pax_global_header00006660000000000000000000000064151131235770014517gustar00rootroot0000000000000052 comment=e8ea1744d81c39f73e181ce9848577db19617659 zsv-1.3.0/000077500000000000000000000000001511312357700123425ustar00rootroot00000000000000zsv-1.3.0/.clang-format000066400000000000000000000002121511312357700147100ustar00rootroot00000000000000BasedOnStyle: Microsoft BreakBeforeBraces: Attach ContinuationIndentWidth: 2 IndentWidth: 2 SortIncludes: false TabWidth: 2 UseTab: Never zsv-1.3.0/.cppcheck000066400000000000000000000017731511312357700141330ustar00rootroot00000000000000 cppcheck-build-dir false true false 2 cppcheck-lib emscripten posix sqlite3 windows missingInclude missingIncludeSystem unmatchedSuppression strdupCalled zsv-1.3.0/.dockerignore000066400000000000000000000002131511312357700150120ustar00rootroot00000000000000/** !/app /app/cli_internal.*.in !/data !/docs/*.json !examples !/include !/scripts !/src !configure !AUTHORS !Makefile !LICENSE !./ci/zsv zsv-1.3.0/.fpm000066400000000000000000000001611511312357700131230ustar00rootroot00000000000000--force --architecture "amd64" --maintainer "Liquidaty" --url "https://github.com/liquidaty/zsv" --license "MIT" zsv-1.3.0/.gitattributes000066400000000000000000000011021511312357700152270ustar00rootroot00000000000000configure text eol=lf *.sh text eol=lf *.csv text eol=lf *.txt text eol=lf app/test/expected/test-2db.out2 text eol=lf app/test/expected/test-2db.out3 text eol=lf app/test/expected/test-sheet-*.out* text eol=lf app/ext_example/test/expected/test-sheet-extension-1-indexed.out text eol=lf app/ext_example/test/expected/test-sheet-extension-1.out text eol=lf data/stack2-2.csv -text data/test/crlf-line-ending.csv -text data/test/embedded_dos.csv -text data/test/mixed-line-endings.csv -text data/test/select-merge.csv -text data/test/crlf.txt -text data/test/crlf-2.csv -textzsv-1.3.0/.github/000077500000000000000000000000001511312357700137025ustar00rootroot00000000000000zsv-1.3.0/.github/dependabot.yml000066400000000000000000000001671511312357700165360ustar00rootroot00000000000000version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" zsv-1.3.0/.github/workflows/000077500000000000000000000000001511312357700157375ustar00rootroot00000000000000zsv-1.3.0/.github/workflows/benchmarks.yml000066400000000000000000000046161511312357700206060ustar00rootroot00000000000000name: benchmarks on: workflow_dispatch: inputs: workflow-run-id: description: 'Workflow Run ID' type: number required: false runs: description: 'No. of runs [min: 5, max: 100]' type: number default: 5 required: false permissions: actions: read env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} WORKFLOW_RUN_ID: ${{ inputs.workflow-run-id }} RUNS: ${{ inputs.runs }} BENCHMARKS_DIR: .benchmarks jobs: amd64-macos-gcc: runs-on: macos-15-intel steps: - name: Checkout uses: actions/checkout@v6 with: sparse-checkout: | scripts/ci-run-benchmarks.sh - name: Download build artifact from workflow run if: ${{ env.WORKFLOW_RUN_ID }} run: | gh run download --repo liquidaty/zsv --pattern *amd64-macosx-gcc.tar.gz "$WORKFLOW_RUN_ID" mkdir -p ./"$BENCHMARKS_DIR" mv zsv-*.tar.gz/*.tar.gz ./"$BENCHMARKS_DIR" rm -rf zsv-*.tar.gz ls -hl ./"$BENCHMARKS_DIR" - name: Set ZSV_TAG env var if: ${{ env.WORKFLOW_RUN_ID }} run: | cd ./"$BENCHMARKS_DIR" ZSV_TAG="$(ls *.tar.gz | sed 's|zsv-\(.*\)-amd64.*|\1|')" echo "ZSV_TAG=$ZSV_TAG" | tee -a "$GITHUB_ENV" - name: Run benchmarks run: ./scripts/ci-run-benchmarks.sh amd64-linux: runs-on: ubuntu-latest strategy: matrix: compiler: [gcc, clang, musl] continue-on-error: true name: amd64-linux-${{ matrix.compiler }} steps: - name: Checkout uses: actions/checkout@v6 with: sparse-checkout: | scripts/ci-run-benchmarks.sh - name: Download build artifact from workflow run if: ${{ env.WORKFLOW_RUN_ID }} env: COMPILER: ${{ matrix.compiler }} run: | gh run download --repo liquidaty/zsv --pattern *amd64-linux-$COMPILER.tar.gz "$WORKFLOW_RUN_ID" mkdir -p ./"$BENCHMARKS_DIR" mv zsv-*.tar.gz/*.tar.gz ./"$BENCHMARKS_DIR" rm -rf zsv-*.tar.gz ls -hl ./"$BENCHMARKS_DIR" - name: Set ZSV_TAG env var if: ${{ env.WORKFLOW_RUN_ID }} run: | cd ./"$BENCHMARKS_DIR" ZSV_TAG="$(ls *.tar.gz | sed 's|zsv-\(.*\)-amd64.*|\1|')" echo "ZSV_TAG=$ZSV_TAG" | tee -a "$GITHUB_ENV" - name: Run benchmarks env: ZSV_LINUX_BUILD_COMPILER: ${{ matrix.compiler }} run: ./scripts/ci-run-benchmarks.sh zsv-1.3.0/.github/workflows/ci.yml000066400000000000000000000674051511312357700170710ustar00rootroot00000000000000name: ci on: push: branches: [main] paths-ignore: - '**.md' - 'setup-action/**' - '.github/workflows/setup-action.yml' - '.github/workflows/codeql.yml' - '.github/workflows/benchmarks.yml' - 'scripts/ci-run-benchmarks.sh' pull_request: branches: [main] paths-ignore: - '**.md' - 'setup-action/**' - '.github/workflows/setup-action.yml' - '.github/workflows/codeql.yml' - '.github/workflows/benchmarks.yml' - 'scripts/ci-run-benchmarks.sh' release: types: [published] workflow_dispatch: inputs: wsl: description: 'Enable WSL job' required: false type: boolean default: false permissions: contents: write id-token: write attestations: write defaults: run: shell: bash env: AMD64_LINUX_GCC: amd64-linux-gcc AMD64_LINUX_CLANG: amd64-linux-clang AMD64_LINUX_MUSL: amd64-linux-musl AMD64_WINDOWS_MINGW: amd64-windows-mingw AMD64_WSL_MINGW: amd64-wsl-mingw AMD64_LINUX_WASM: amd64-linux-wasm AMD64_MACOSX_GCC: amd64-macosx-gcc ARM64_MACOSX_GCC: arm64-macosx-gcc AMD64_FREEBSD_GCC: amd64-freebsd-gcc ARTIFACT_DIR: .artifacts ARTIFACT_RETENTION_DAYS: 5 GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: tag: runs-on: ubuntu-latest outputs: TAG: ${{ steps.tag.outputs.TAG }} steps: - name: Checkout uses: actions/checkout@v6 with: sparse-checkout: | scripts/ci-set-tag-output-parameter.sh - name: Set TAG output parameter id: tag env: TAG: ${{ startsWith(github.ref, 'refs/tags/v') && github.ref_name || '' }} run: ./scripts/ci-set-tag-output-parameter.sh clang-format: runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v6 - name: Run clang-format run: | sudo ln -sf /usr/bin/clang-format-15 /usr/bin/clang-format ./scripts/ci-run-clang-format.sh cppcheck: runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v6 - name: Install cppcheck run: | sudo apt update sudo apt install -y cppcheck cppcheck --version - name: Run cppcheck run: ./scripts/ci-run-cppcheck.sh - name: Upload (${{ env.CPPCHECK_XML_ARTIFACT_NAME }}) uses: actions/upload-artifact@v5 with: name: ${{ env.CPPCHECK_XML_ARTIFACT_NAME }} path: ${{ env.CPPCHECK_XML_ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (${{ env.CPPCHECK_HTML_ARTIFACT_NAME }}) uses: actions/upload-artifact@v5 with: name: ${{ env.CPPCHECK_HTML_ARTIFACT_NAME }} path: ${{ env.CPPCHECK_HTML_ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error shellcheck: runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v6 - name: Run shellcheck run: ./scripts/ci-run-shellcheck.sh ci-linux: needs: [tag, clang-format, cppcheck, shellcheck] runs-on: ubuntu-22.04 timeout-minutes: 15 env: TAG: ${{ needs.tag.outputs.TAG }} outputs: TAG: ${{ needs.tag.outputs.TAG }} steps: - name: Checkout uses: actions/checkout@v6 - name: Set up apt dependencies run: | sudo apt update sudo apt install -y rpm alien tmux sudo apt remove -y jq - name: Build on Linux (${{ env.AMD64_LINUX_GCC }}) env: PREFIX: ${{ env.AMD64_LINUX_GCC }} CC: gcc MAKE: make RUN_TESTS: true run: | ./scripts/ci-build.sh ./scripts/ci-create-debian-package.sh ./scripts/ci-create-rpm-package.sh - name: Build on Linux (${{ env.AMD64_LINUX_CLANG }}) env: PREFIX: ${{ env.AMD64_LINUX_CLANG }} CC: clang MAKE: make RUN_TESTS: true run: | ./scripts/ci-build.sh ./scripts/ci-create-debian-package.sh ./scripts/ci-create-rpm-package.sh - name: Prepare build artifacts for upload run: ./scripts/ci-prepare-artifacts-for-upload.sh - name: Attest build artifacts for release if: ${{ startsWith(github.ref, 'refs/tags/v') }} uses: actions/attest-build-provenance@v3 with: subject-path: ${{ env.ARTIFACT_DIR }}/* - name: Verify attestations of release artifacts if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: ./scripts/ci-verify-attestations.sh - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_GCC }}.zip) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_GCC }}.zip with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_CLANG }}.zip) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_CLANG }}.zip with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_GCC }}.deb) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_GCC }}.deb with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_CLANG }}.deb) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_CLANG }}.deb with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_GCC }}.rpm) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_GCC }}.rpm with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_CLANG }}.rpm) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_CLANG }}.rpm with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_GCC }}.tar.gz) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_GCC }}.tar.gz with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_CLANG }}.tar.gz) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_CLANG }}.tar.gz with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload release artifacts if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: ./scripts/ci-upload-release-artifacts.sh prepare-linux-packages: if: ${{ github.ref_name == 'main' || startsWith(github.ref, 'refs/tags/v') }} needs: [ci-linux] runs-on: ubuntu-latest env: TAG: ${{ needs.ci-linux.outputs.TAG }} AMD64_ZIP: zsv-${{ needs.ci-linux.outputs.TAG }}-amd64-linux-gcc.zip steps: - name: Install dependencies run: | sudo apt update sudo apt install -y rpm dpkg-dev createrepo-c sudo gem install --no-document fpm - name: Checkout uses: actions/checkout@v6 with: sparse-checkout: | .fpm scripts/ci-prepare-deb-rpm-repos.sh - name: Download ${{ env.AMD64_ZIP }} uses: actions/download-artifact@v6 with: name: ${{ env.AMD64_ZIP }} path: ${{ env.ARTIFACT_DIR }} - name: Prepare DEB and RPM package repos run: ./scripts/ci-prepare-deb-rpm-repos.sh - name: Upload packages artifact uses: actions/upload-artifact@v5 with: name: packages path: ${{ env.ARTIFACT_DIR }}/packages ci-macos: needs: [tag, clang-format, cppcheck, shellcheck] strategy: matrix: os: [macos-15-intel, macos-latest] runs-on: ${{ matrix.os }} timeout-minutes: 30 outputs: TAG: ${{ needs.tag.outputs.TAG }} env: TAG: ${{ needs.tag.outputs.TAG }} steps: - name: Checkout uses: actions/checkout@v6 - name: Set up homebrew dependencies run: brew install --quiet coreutils tree tmux sqlite3 - name: Set PREFIX and ZIP env var env: PREFIX: ${{ runner.arch == 'X64' && env.AMD64_MACOSX_GCC || env.ARM64_MACOSX_GCC }} run: | { echo "PREFIX=$PREFIX" echo "ZIP=zsv-$TAG-$PREFIX.zip" echo "TAR=zsv-$TAG-$PREFIX.tar.gz" } | tee -a "$GITHUB_ENV" - name: Build on macOS (${{ env.AMD64_MACOSX_GCC }}) env: CC: gcc-13 MAKE: make RUN_TESTS: true run: ./scripts/ci-build.sh - name: Prepare build artifacts for upload run: ./scripts/ci-prepare-artifacts-for-upload.sh - name: Codesign and notarize (${{ env.ZIP }}) if: ${{ startsWith(github.ref, 'refs/tags/v') }} env: MACOS_CERT_P12: ${{ secrets.MACOS_CERT_P12 }} MACOS_CERT_PASSWORD: ${{ secrets.MACOS_CERT_PASSWORD }} APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }} run: ./scripts/ci-macos-codesign-and-notarize.sh "$PWD/$ARTIFACT_DIR/$ZIP" - name: Attest build artifacts for release if: ${{ startsWith(github.ref, 'refs/tags/v') }} uses: actions/attest-build-provenance@v3 with: subject-path: ${{ env.ARTIFACT_DIR }}/* - name: Verify attestations of release artifacts if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: ./scripts/ci-verify-attestations.sh - name: Upload (${{ env.ZIP }}) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: ${{ env.ZIP }} with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (${{ env.TAR }}) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: ${{ env.TAR }} with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload release artifacts if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: ./scripts/ci-upload-release-artifacts.sh update-homebrew-tap: if: ${{ startsWith(github.ref, 'refs/tags/v') }} needs: ci-macos runs-on: ubuntu-22.04 env: TAG: ${{ needs.ci-macos.outputs.TAG }} steps: - name: Checkout uses: actions/checkout@v6 with: sparse-checkout: | scripts/ci-update-homebrew-tap.sh - name: Update env: HOMEBREW_TAP_DEPLOY_KEY: ${{ secrets.HOMEBREW_TAP_DEPLOY_KEY }} run: ./scripts/ci-update-homebrew-tap.sh update-homebrew-core: if: ${{ startsWith(github.ref, 'refs/tags/v') }} needs: ci-macos runs-on: ubuntu-latest env: TAG: ${{ needs.ci-macos.outputs.TAG }} steps: - name: Update uses: mislav/bump-homebrew-formula-action@v3 env: COMMITTER_TOKEN: ${{ secrets.HOMEBREW_CORE_PR_PAT }} with: formula-name: zsv formula-path: Formula/z/zsv.rb push-to: liquidaty/homebrew-core tag-name: v${{ env.TAG }} ci-bsd: needs: [tag, clang-format, cppcheck, shellcheck] runs-on: ubuntu-22.04 timeout-minutes: 15 env: TAG: ${{ needs.tag.outputs.TAG }} steps: - name: Checkout uses: actions/checkout@v6 - name: Build (${{ env.AMD64_FREEBSD_GCC }}) uses: cross-platform-actions/action@v0.30.0 env: PREFIX: ${{ env.AMD64_FREEBSD_GCC }} CC: gcc MAKE: gmake RUN_TESTS: true with: operating_system: freebsd version: '13.2' environment_variables: 'PREFIX CC MAKE RUN_TESTS ARTIFACT_DIR' shell: sh run: | ./scripts/ci-freebsd-setup.sh ./scripts/ci-build.sh - name: Prepare build artifacts for upload run: ./scripts/ci-prepare-artifacts-for-upload.sh - name: Attest build artifacts for release if: ${{ startsWith(github.ref, 'refs/tags/v') }} uses: actions/attest-build-provenance@v3 with: subject-path: ${{ env.ARTIFACT_DIR }}/* - name: Verify attestations of release artifacts if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: ./scripts/ci-verify-attestations.sh - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_FREEBSD_GCC }}.zip) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_FREEBSD_GCC }}.zip with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_FREEBSD_GCC }}.tar.gz) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_FREEBSD_GCC }}.tar.gz with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload release artifacts if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: ./scripts/ci-upload-release-artifacts.sh mingw-ncurses: runs-on: ubuntu-22.04 steps: - name: Cache uses: actions/cache@v4 id: cache with: key: mingw-ncurses.zip path: ${{ github.workspace }}/mingw-ncurses.zip - name: Install MinGW if: ${{ steps.cache.outputs.cache-hit != 'true' }} run: | sudo apt update sudo apt install -y mingw-w64 - name: Checkout uses: actions/checkout@v6 if: ${{ steps.cache.outputs.cache-hit != 'true' }} with: sparse-checkout: | scripts/ci-build-ncurses-with-mingw.sh - name: Build ncurses with MinGW if: ${{ steps.cache.outputs.cache-hit != 'true' }} run: ./scripts/ci-build-ncurses-with-mingw.sh - name: Upload mingw-ncurses.zip uses: actions/upload-artifact@v5 with: name: mingw-ncurses.zip path: ${{ github.workspace }}/mingw-ncurses.zip retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error ci-linux-mingw: needs: [tag, clang-format, cppcheck, shellcheck, mingw-ncurses] runs-on: ubuntu-22.04 timeout-minutes: 15 env: TAG: ${{ needs.tag.outputs.TAG }} outputs: TAG: ${{ needs.tag.outputs.TAG }} steps: - name: Set up apt dependencies run: | sudo apt update sudo apt install -y mingw-w64 nuget sudo apt remove -y jq - name: Checkout uses: actions/checkout@v6 - name: Download mingw-ncurses.zip uses: actions/download-artifact@v6 with: name: mingw-ncurses.zip path: ${{ github.workspace }}/app/external - name: Unzip mingw-ncurses.zip in app/external run: | cd app/external unzip mingw-ncurses.zip - name: Build (${{ env.AMD64_WINDOWS_MINGW }}) env: PREFIX: ${{ env.AMD64_WINDOWS_MINGW }} CC: x86_64-w64-mingw32-gcc MAKE: make RUN_TESTS: false run: | export CFLAGS="-I$PWD/app/external/mingw-ncurses/include" export LDFLAGS="-L$PWD/app/external/mingw-ncurses/lib" ./scripts/ci-build.sh ./scripts/ci-create-nuget-package.sh - name: Prepare build artifacts for upload run: ./scripts/ci-prepare-artifacts-for-upload.sh - name: Attest build artifacts for release if: ${{ startsWith(github.ref, 'refs/tags/v') }} uses: actions/attest-build-provenance@v3 with: subject-path: ${{ env.ARTIFACT_DIR }}/* - name: Verify attestations of release artifacts if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: ./scripts/ci-verify-attestations.sh - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_WINDOWS_MINGW }}.zip) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_WINDOWS_MINGW }}.zip with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_WINDOWS_MINGW }}.tar.gz) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_WINDOWS_MINGW }}.tar.gz with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_WINDOWS_MINGW }}.nupkg) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_WINDOWS_MINGW }}.nupkg with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload release artifacts if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: ./scripts/ci-upload-release-artifacts.sh ci-wsl-mingw: if: ${{ github.event_name == 'workflow_dispatch' && inputs.wsl == true }} needs: [tag, clang-format, cppcheck, shellcheck, mingw-ncurses] runs-on: windows-2025 timeout-minutes: 30 env: TAG: ${{ needs.tag.outputs.TAG }} defaults: run: shell: bash steps: - name: Set up WSL 2 uses: Vampire/setup-wsl@v6 with: wsl-version: 2 wsl-shell-command: bash --noprofile --norc -eo pipefail {0} set-as-default: true distribution: Ubuntu-22.04 additional-packages: | build-essential mingw-w64 sqlite3 tree zip tar tmux - name: Checkout uses: actions/checkout@v6 - name: Download mingw-ncurses.zip uses: actions/download-artifact@v6 with: name: mingw-ncurses.zip path: ${{ github.workspace }}/app/external - name: Unzip mingw-ncurses.zip in app/external run: | cd app/external unzip mingw-ncurses.zip - name: Build (${{ env.AMD64_WSL_MINGW }}) env: PREFIX: ${{ env.AMD64_WSL_MINGW }} CC: x86_64-w64-mingw32-gcc MAKE: make RUN_TESTS: true SKIP_BUILD: true SKIP_ZIP_ARCHIVE: true SKIP_TAR_ARCHIVE: true WSLENV: ARTIFACT_DIR:TAG:PREFIX:CC:MAKE:RUN_TESTS:SKIP_BUILD:SKIP_ZIP_ARCHIVE:SKIP_TAR_ARCHIVE shell: wsl-bash {0} run: | export CFLAGS="-I$PWD/app/external/mingw-ncurses/include" export LDFLAGS="-L$PWD/app/external/mingw-ncurses/lib" ./scripts/ci-build.sh ci-musl: needs: [tag, clang-format, cppcheck, shellcheck] runs-on: ubuntu-latest container: alpine:latest timeout-minutes: 15 outputs: TAG: ${{ needs.tag.outputs.TAG }} env: TAG: ${{ needs.tag.outputs.TAG }} steps: - name: Set up dependencies shell: sh run: apk add bash gcc make musl-dev ncurses-dev ncurses-static tmux file sqlite curl zip wget tar git - name: Checkout uses: actions/checkout@v6 - name: Configure git in container run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Build (${{ env.AMD64_LINUX_MUSL }}) env: PREFIX: ${{ env.AMD64_LINUX_MUSL }} CC: gcc MAKE: make RUN_TESTS: true STATIC_BUILD: "1" run: ./scripts/ci-build.sh - name: Prepare build artifacts for upload run: ./scripts/ci-prepare-artifacts-for-upload.sh - name: Attest build artifacts for release if: ${{ startsWith(github.ref, 'refs/tags/v') }} uses: actions/attest-build-provenance@v3 with: subject-path: ${{ env.ARTIFACT_DIR }}/* - name: Set up GitHub CLI if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: | wget https://github.com/cli/cli/releases/download/v2.63.2/gh_2.63.2_linux_amd64.tar.gz tar xvf gh_2.63.2_linux_amd64.tar.gz cp gh_2.63.2_linux_amd64/bin/gh /usr/bin rm -rf gh_2.63.2_linux_amd64 - name: Verify attestations of release artifacts if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: ./scripts/ci-verify-attestations.sh - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_MUSL }}.zip) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_MUSL }}.zip with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_MUSL }}.tar.gz) uses: actions/upload-artifact@v5 env: ARTIFACT_NAME: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_MUSL }}.tar.gz with: name: ${{ env.ARTIFACT_NAME }} path: ${{ env.ARTIFACT_DIR }}/${{ env.ARTIFACT_NAME }} retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error - name: Upload release artifacts if: ${{ startsWith(github.ref, 'refs/tags/v') }} run: | git config --global --add safe.directory "$PWD" ./scripts/ci-upload-release-artifacts.sh ghcr: needs: [ci-musl] runs-on: ubuntu-latest permissions: packages: write env: TAG: ${{ needs.ci-musl.outputs.TAG }} steps: - name: Checkout uses: actions/checkout@v6 with: sparse-checkout: | Dockerfile.ci - name: Download (zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_MUSL }}.zip) uses: actions/download-artifact@v6 with: name: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_MUSL }}.zip path: ${{ env.AMD64_LINUX_MUSL }} - name: Unzip env: ZIP: zsv-${{ env.TAG }}-${{ env.AMD64_LINUX_MUSL }}.zip DIR: ${{ env.AMD64_LINUX_MUSL }} run: | cd "$DIR" unzip -o "$ZIP" cd .. mkdir -p ./ci mv ./"$DIR"/bin/zsv ./ci/ rm -rf ./"$DIR" - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to GitHub Container Registry if: ${{ startsWith(github.ref, 'refs/tags/v') }} uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push (on release) uses: docker/build-push-action@v6 env: DOCKER_BUILD_RECORD_UPLOAD: false with: no-cache: true context: . file: Dockerfile.ci platforms: linux/amd64 push: ${{ startsWith(github.ref, 'refs/tags/v') }} tags: | ghcr.io/liquidaty/zsv:${{ env.TAG }} ghcr.io/liquidaty/zsv:latest ci-wasm-playground: needs: [tag, clang-format, cppcheck, shellcheck] runs-on: ubuntu-22.04 timeout-minutes: 15 env: TAG: ${{ needs.tag.outputs.TAG }} steps: - name: Set up emsdk uses: mymindstorm/setup-emsdk@v14 - name: Checkout uses: actions/checkout@v6 - name: Update version in index.html run: sed "s|__VERSION__|$TAG|g" -i playground/index.html - name: Build with SIMD (${{ env.AMD64_LINUX_WASM }}) env: PREFIX: ${{ env.AMD64_LINUX_WASM }} CC: emcc MAKE: make RUN_TESTS: false CONFIGFILE: "config.emcc" CFLAGS: "-msse2 -msimd128" CROSS_COMPILING: "yes" NO_THREADING: "1" STATIC_BUILD: "1" run: | emconfigure ./configure --enable-pic --disable-pie emmake make install NO_STDIN=1 NO_PLAYGROUND=0 cp "$PREFIX"/bin/cli.em.{js,wasm} playground - name: Build without SIMD (${{ env.AMD64_LINUX_WASM }}) env: PREFIX: ${{ env.AMD64_LINUX_WASM }} CC: emcc MAKE: make RUN_TESTS: false CONFIGFILE: "config.emcc" CROSS_COMPILING: "yes" NO_THREADING: "1" STATIC_BUILD: "1" run: | emconfigure ./configure --enable-pic --disable-pie emmake make clean install NO_STDIN=1 NO_PLAYGROUND=0 mkdir -p playground/non-simd cp "$PREFIX"/bin/cli.em.{js,wasm} playground/non-simd - name: Upload playground artifact uses: actions/upload-artifact@v5 with: name: playground path: playground upload-github-pages-artifact: if: ${{ github.ref_name == 'main' || startsWith(github.ref, 'refs/tags/v') }} needs: [prepare-linux-packages, ci-wasm-playground] runs-on: ubuntu-latest steps: - name: Download packages artifact uses: actions/download-artifact@v6 with: name: packages path: ${{ env.ARTIFACT_DIR }}/packages - name: Download playground artifact uses: actions/download-artifact@v6 with: name: playground path: ${{ env.ARTIFACT_DIR }} - name: Upload GitHub Pages artifacts uses: actions/upload-pages-artifact@v4 with: path: ${{ env.ARTIFACT_DIR }} deploy-to-github-pages: if: ${{ github.ref_name == 'main' || startsWith(github.ref, 'refs/tags/v') }} needs: [upload-github-pages-artifact] runs-on: ubuntu-latest permissions: pages: write id-token: write environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 publish-winget-package: if: ${{ github.event_name == 'release' && github.event.action == 'published' }} needs: [ci-linux-mingw] runs-on: windows-latest env: TAG: ${{ needs.ci-linux-mingw.outputs.TAG }} defaults: run: shell: bash steps: - name: Install wingetcreate run: | curl -L https://aka.ms/wingetcreate/latest -o wingetcreate chmod +x wingetcreate ./wingetcreate info - name: Update env: PAT: ${{ secrets.WINGET_PAT }} PKG_ID: "liquidaty.zsv" run: | URL="https://github.com/liquidaty/zsv/releases/download/v$TAG/zsv-$TAG-amd64-windows-mingw.zip" ./wingetcreate update "$PKG_ID" \ --version "$TAG" \ --urls "$URL" \ --out "$GITHUB_WORKSPACE/manifests" \ --token "$PAT" \ --prtitle "New version: $PKG_ID v$TAG" \ --submit - name: Upload manifest uses: actions/upload-artifact@v5 with: name: zsv-${{ env.TAG }}-winget-manifest path: ${{ github.workspace }}/manifests retention-days: ${{ env.ARTIFACT_RETENTION_DAYS }} if-no-files-found: error zsv-1.3.0/.github/workflows/codeql.yml000066400000000000000000000007731511312357700177400ustar00rootroot00000000000000name: codeql on: workflow_dispatch jobs: codeql: runs-on: ubuntu-latest strategy: fail-fast: false matrix: language: [actions, c] permissions: security-events: write steps: - name: Checkout uses: actions/checkout@v6 - name: Initialize CodeQL uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} build-mode: none - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v4 zsv-1.3.0/.github/workflows/setup-action.yml000066400000000000000000000013541511312357700211000ustar00rootroot00000000000000name: zsv/setup-action on: push: branches: [main] paths: ['setup-action/**'] pull_request: branches: [main] paths: ['setup-action/**'] workflow_dispatch: permissions: contents: read jobs: ci: strategy: matrix: os: [ubuntu-latest, macos-15-intel, macos-latest, windows-latest] runs-on: ${{ matrix.os }} defaults: run: shell: bash steps: - name: Checkout uses: actions/checkout@v6 with: sparse-checkout: | setup-action - name: Set up id: setup uses: ./setup-action - name: Check output parameter [install-path] run: echo '${{ steps.setup.outputs.install-path }}' - name: Check version run: zsv version zsv-1.3.0/.gitignore000066400000000000000000000016241511312357700143350ustar00rootroot00000000000000# Prerequisites *.d # Compiled Object files *.slo *.lo *.o *.obj # Precompiled Headers *.gch *.pch # Compiled Dynamic libraries *.so *.dylib *.dll # Fortran module files *.mod *.smod # Compiled Static libraries *.lai *.la *.a *.lib # Executables *.exe *.out *.app # IDE .vscode # Generated Files and Directories *.log *.mk *.mk.log *.emcc *.emcc.log *.wasm *.worker.js package.json package-lock.json node_modules *.c.in *.h.in *.zip *.tar.gz *.deb *.rpm *.nupkg build app/external install.sh .artifacts .benchmarks .rpmbuild amd64-linux-* amd64-windows-* amd64-macosx-* amd64-freebsd-* jq nuget-feed homebrew-zsv cppcheck* tmp include/zsv.h app/test/worldcitiespop_mil.csv app/test/worldcitiespop_mil.tsv data/quoted5.csv data/loans_2.csv data/.zsv/data/loans_2.csv/overwrite.sqlite3 compile_commands.json .cache zsvsheet_filter_* overwrite.sqlite3 playground/* !playground/index.html playground/favicon.ico zsv-1.3.0/.markdownlint.json000066400000000000000000000000271511312357700160230ustar00rootroot00000000000000{ "MD028": false } zsv-1.3.0/.shellcheckrc000066400000000000000000000000171511312357700147730ustar00rootroot00000000000000disable=SC2153 zsv-1.3.0/AUTHORS000066400000000000000000000001241511312357700134070ustar00rootroot00000000000000Matt Wong Tai Chi Minh Ralph Eastwood zsv-1.3.0/BUILD.md000066400000000000000000000013461511312357700135270ustar00rootroot00000000000000# Building and installing the library and/or CLI ## From source GCC is the recommended compiler, but clang is also supported. To build from source, you'll need a basic unix toolchain with `sh` and `make`/`gmake`: ```shell ./configure && sudo ./install.sh ``` or: ```shell ./configure && sudo make install ``` To uninstall: ```shell sudo make uninstall ``` To build the independent executables in a local build folder, use `make install` instead of `make all`. ### Building and installing only the library ```shell ./configure && cd src && sudo make install ``` ## A note on compilers GCC 11+ is the recommended compiler. Compared with clang, gcc in some cases seems to produce faster code for reasons we have not yet determined. zsv-1.3.0/Dockerfile000066400000000000000000000013311511312357700143320ustar00rootroot00000000000000FROM alpine:latest AS build LABEL maintainer="Liquidaty" LABEL url="https://github.com/liquidaty/zsv" LABEL org.opencontainers.image.description="zsv: tabular data swiss-army knife CLI + world's fastest (simd) CSV parser" RUN apk add bash gcc make musl-dev ncurses-dev ncurses-static tmux file sqlite curl zip WORKDIR /zsv COPY . . RUN mkdir /usr/local/etc RUN \ PREFIX=amd64-linux-musl \ CC=gcc \ MAKE=make \ ARTIFACT_DIR=artifacts \ RUN_TESTS=true \ STATIC_BUILD=1 \ SKIP_ZIP_ARCHIVE=true \ SKIP_TAR_ARCHIVE=true \ ./scripts/ci-build.sh FROM scratch WORKDIR /zsv COPY --from=build /zsv/amd64-linux-musl/bin/zsv . COPY --from=build /zsv/AUTHORS /zsv/LICENSE ./ ENTRYPOINT [ "./zsv" ] zsv-1.3.0/Dockerfile.ci000066400000000000000000000004041511312357700147240ustar00rootroot00000000000000FROM scratch LABEL maintainer="Liquidaty" LABEL url="https://github.com/liquidaty/zsv" LABEL org.opencontainers.image.description="zsv: tabular data swiss-army knife CLI + world's fastest (simd) CSV parser" WORKDIR /zsv COPY ci/zsv . ENTRYPOINT [ "./zsv" ] zsv-1.3.0/INSTALL.md000066400000000000000000000075731511312357700140060ustar00rootroot00000000000000# Install Download pre-built binaries and packages for macOS, Windows, Linux and BSD from the [Releases](https://github.com/liquidaty/zsv/releases) page. > [!IMPORTANT] > > For [musl libc](https://www.musl-libc.org/) static build, the dynamic > extensions are not supported! > [!NOTE] > > All package artifacts are properly > [attested](https://github.blog/news-insights/product-news/introducing-artifact-attestations-now-in-public-beta/) > and can be verified using [GitHub CLI](https://cli.github.com/) like this: > > ```shell > gh attestation verify --repo liquidaty/zsv > ``` ## macOS ### macOS: Homebrew ```shell # Update brew update # Install brew install zsv # Uninstall brew uninstall zsv ``` ### macOS: Homebrew Custom Tap ```shell # Tap brew tap liquidaty/zsv # Update brew update # Install brew install zsv # Uninstall brew uninstall zsv ``` ### macOS: MacPorts ```shell sudo port install zsv ``` ## Linux ### Linux: Homebrew ```shell # Update brew update # Install brew install zsv # Uninstall brew uninstall zsv ``` ### Linux: `apt` ```shell # Add repository echo "deb [trusted=yes] https://liquidaty.github.io/zsv/packages/apt/amd64/ ./" | \ sudo tee /etc/apt/sources.list.d/zsv.list # Update sudo apt update # Install CLI sudo apt install zsv # Install library sudo apt install zsv-dev ``` ### Linux: `rpm` ```shell # Add repository sudo tee /etc/yum.repos.d/zsv.repo << EOF [zsv] name=zsv baseurl=https://liquidaty.github.io/zsv/packages/rpm/amd64 enabled=1 gpgcheck=0 EOF # Install CLI sudo yum install zsv # Install library sudo yum install zsv-devel ``` To install the manually downloaded `deb`/`rpm`, follow these instructions: For Linux (Debian/Ubuntu - `*.deb`): ```shell # Install sudo apt install ./zsv-VERSION-amd64-linux-gcc.deb # Uninstall sudo apt remove zsv ``` For Linux (RHEL/CentOS - `*.rpm`): ```shell # Install sudo yum install ./zsv-VERSION-amd64-linux-gcc.rpm # Uninstall sudo yum remove zsv ``` ## Windows ### Windows: `winget` ```powershell # Install with alias winget.exe install zsv # Install with id winget.exe install --id liquidaty.zsv ``` ### Windows: `nuget` Install the downloaded `.nupkg` with `nuget.exe`: ```powershell # Install via nuget custom feed (requires absolute paths) md nuget-feed nuget.exe add zsv path\to\nupkg -source path\to\nuget-feed nuget.exe install zsv -version -source path\to\nuget-feed # Uninstall nuget.exe delete zsv -source path\to\nuget-feed ``` Alternatively, install the downloaded `.nupkg` with `choco.exe`: ```powershell # Install choco.exe install zsv --pre -source path\to\nupkg # Uninstall choco.exe uninstall zsv ``` ## Node The zsv parser library is available for node: ```shell npm install zsv-lib ``` Please note: - This package currently only exposes a small subset of the zsv library capabilities. More to come! - The CLI is not yet available as a Node package - If you'd like to use additional parser features, or use the CLI as a Node package, please feel free to post a request in an issue here. ## GHCR (GitHub Container Registry) `zsv` CLI is also available as a container image from [Packages](https://github.com/liquidaty?tab=packages). The container image is published on every release. In addition to the specific release tag, the image is also tagged as `latest` i.e. `zsv:latest` always points the latest released version. Example: ```shell $ docker pull ghcr.io/liquidaty/zsv # ... $ cat worldcitiespop_mil.csv | docker run -i ghcr.io/liquidaty/zsv count 1000000 ``` For image details, see [Dockerfile](./Dockerfile). You may use this as a baseline for your own use cases as needed. ## GitHub Actions In a GitHub Actions workflow, you can use [`zsv/setup-action`](./setup-action) to set up zsv+zsvlib: ```yml - name: Set up zsv+zsvlib uses: liquidaty/zsv/setup-action@main ``` See [zsv/setup-action/README](./setup-action/README.md) for more details. zsv-1.3.0/LICENSE000066400000000000000000000020741511312357700133520ustar00rootroot00000000000000MIT License Copyright (c) 2021 Guarnerix Inc dba Liquidaty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. zsv-1.3.0/Makefile000066400000000000000000000046421511312357700140100ustar00rootroot00000000000000# Makefile for use with GNU make THIS_MAKEFILE_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) THIS_DIR:=$(shell basename "${THIS_MAKEFILE_DIR}") THIS_MAKEFILE:=$(lastword $(MAKEFILE_LIST)) THIS_MAKE=`basename ${MAKE}` CONFIGFILE ?= config.mk include ${CONFIGFILE} CONFIGFILEPATH=$(shell ls ${CONFIGFILE} >/dev/null 2>/dev/null && realpath ${CONFIGFILE}) ifeq (${CONFIGFILEPATH},) $(error Config file ${CONFIGFILE} not found) endif help: @echo "**** Welcome to zsv+lib ****" @echo @echo "This package has two primary components:" @echo "* zsvlib : a fast CSV parser library" @echo "* zsv : CSV editor and toolkit (that uses zsvlib)" @echo @echo "\`zsv\` also supports dynamic extensions, a sample of which you can" @echo "build and run as described in docs/extension.md" @echo @echo "To build, test and install zsvlib and zsv:" @echo " ./configure && ${THIS_MAKE} test" @echo @echo "To build and install zsvlib and zsv:" @echo " ./configure && ${THIS_MAKE} install" @echo @echo "To build and install only zsvlib:" @echo " ./configure && ${THIS_MAKE} -C src install" @echo @echo "To build and install only zsv (i.e. install both, remove zsvlib):" @echo " ./configure && ${THIS_MAKE} install && ${THIS_MAKE} -C src uninstall" @echo @echo "To save and build from a configuration without losing the current one," @echo "use the configuration option CONFIGFILE e.g.:" @echo " ./configure --config-file=/path/to/config.custom" @echo " ./configure && ${THIS_MAKE} -C src CONFIGFILE=/path/to/config.custom install" @echo @echo "To clean (remove temporary build objects) (after running configure):" @echo " ${THIS_MAKE} clean" @echo @echo "To uninstall libs and apps:" @echo " ${THIS_MAKE} uninstall" @echo @echo "To test:" @echo " ${THIS_MAKE} test" @echo @echo "Additional make options available for the library or the apps by" @echo " running ${THIS_MAKE} from the src or app directory" @echo @echo "For more information, see README.md" check test: @${MAKE} -C app test CONFIGFILE=${CONFIGFILEPATH} @${MAKE} -C examples/lib test CONFIGFILE=${CONFIGFILEPATH} build install uninstall: % : @${MAKE} -C src $* CONFIGFILE=${CONFIGFILEPATH} @${MAKE} -C app $* CONFIGFILE=${CONFIGFILEPATH} clean: @${MAKE} -C src clean CONFIGFILE=${CONFIGFILEPATH} @${MAKE} -C app clean-all CONFIGFILE=${CONFIGFILEPATH} @rm -rf ${THIS_MAKEFILE_DIR}/build .PHONY: help build install uninstall clean check test zsv-1.3.0/README.md000066400000000000000000000373621511312357700136340ustar00rootroot00000000000000# zsv+lib: the world's fastest (simd) CSV parser, with an extensible CLI lib + CLI: [![ci](https://github.com/liquidaty/zsv/actions/workflows/ci.yml/badge.svg)](https://github.com/liquidaty/zsv/actions/workflows/ci.yml) ![GitHub release (latest by date)](https://img.shields.io/github/v/release/liquidaty/zsv?logo=github&style=flat-square) ![GitHub all releases (downloads)](https://img.shields.io/github/downloads/liquidaty/zsv/total?logo=github&style=flat-square) [![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/liquidaty/zsv/blob/master/LICENSE) npm: [![NPM Version][npm-version-image]][npm-url] [![NPM Install Size][npm-install-size-image]][npm-install-size-url] [npm-install-size-image]: https://badgen.net/packagephobia/install/zsv-lib [npm-install-size-url]: https://packagephobia.com/result?p=zsv-lib [npm-url]: https://npmjs.org/package/zsv-lib [npm-version-image]: https://badgen.net/npm/v/zsv-lib Playground (without `sheet` viewer command): https://liquidaty.github.io/zsv zsv+lib is a [fast CSV parser](./app/benchmark/README.md) library and extensible command-line utility. It achieves high performance using SIMD operations, [efficient memory use](docs/memory.md) and other optimization techniques, and can also parse generic-delimited and fixed-width formats, as well as multi-row-span headers. ## CLI The ZSV CLI can be compiled to virtually any target, including [WebAssembly](examples/js), and offers a variety of [commands](#batteries-included) including `select`, `count`, direct CSV `sql`, `flatten`, `serialize`, `2json` conversion, `2db` sqlite3 conversion, `stack`, `pretty`, `2tsv`, `compare`, `paste`, `overwrite`, `check` and more. The ZSV CLI also includes [`sheet`](docs/sheet.md), an in-console interactive grid viewer that includes basic navigation, filtering, and pivot table with drill down, and that supports custom extensions: ## Installation - `brew` (MacOS, Linux): - `brew install zsv` - `winget` (Windows): - `winget.exe install zsv` - `npm` (parser only), `nuget`, `yum`, `apt`, `choco` and more - See [INSTALL.md](INSTALL.md) - Download - Pre-built binaries and packages for macOS, Windows, Linux and BSD can be downloaded from the [Releases](https://github.com/liquidaty/zsv/releases) page. - Build - See [BUILD.md](BUILD.md) to build from source. ## Playground An [online playground](https://liquidaty.github.io/zsv) is available as well (without the `sheet` feature due to browser limitations) If you like zsv+lib, do not forget to give it a star! 🌟 ## Performance Performance results compare favorably vs other CSV utilities (`xsv`, `tsv-utils`, `csvkit`, `mlr` (miller) etc). See [benchmarks](./app/benchmark/README.md) ## Which "CSV" "CSV" is an ambiguous term. This library uses, *by default*, the same definition as Excel (the library and app have various options to change this default behavior); a more accurate description of it would be "UTF8 delimited data parser" insofar as it requires UTF8 input and its options support customization of the delimiter and whether to allow quoting. In addition, zsv provides a *row-level* (as well as cell-level) API and provides "normalized" CSV output (e.g. input of `this"iscell1,"thisis,"cell2` becomes `"this""iscell1","thisis,cell2"`). Each of these three objectives (Excel compatibility, row-level API and normalized output) has a measurable performance impact; conversely, it is possible to achieve-- which a number of other CSV parsers do-- much faster parsing speeds if any of these requirements (especially Excel compatibility) are dropped. ### Examples of input that does not comply with RFC 4180 The following is a comprehensive list of all input patterns that are non-compliant with RFC 4180, and how zsv (by default) parses each: |Input Description|Parser treatment|Example input|How example input is parsed| |--|--|--|--| |Non-ASCII input, UTF8 BOM| BOM at start of the stream is ignored|(0xEF BB BF)|Ignored| |Non-ASCII input, valid UTF8|Parsed as UTF8|你,好|cell1 = 你, cell2 = 好| |Non-ASCII input, invalid UTF8|Parsed as UTF8; any non-compliant bytes are retained, or replaced with specified char|aaa,bXb,ccc where Y is malformed UTF8|cell1 = aaa, cell2 = bXb, cell3 = ccc| |`\n`, `\r`, or `\r\n` newlines|Any non-quote-captured occurrence of `\n`, `\r`, `\r\n` or `\n\r` is parsed as a row end|`1a,1b,1c\n`
`2a,2b,2c\r`
`3a,3b,3c\n\r`
`4a,4b,4c\r\n`
`5a,"5\nb",5c\n`
`6a,"6b\r","6c"\n`
`7a,7b,7c`|Parsed as 7 rows each with 3 cells| |Unquoted quote|Treated like any other non-delmiter|`aaa,b"bb,ccc`|Cell 2 value is `b"bb`, output as CSV `"b""bb"`| |Closing quote followed by character other than delimiter (comma) or row end|Treated like any other non-delmiter|`"aa"a,"bb"bb"b,ccc`|Cell 1 value is `aaa`, cell2 value is `bbbb"b`, output as CSV `aaa` and `"bbbb""b"`| |Missing final CRLF|Ignored; end-of-stream is considered end-of-row if not preceded by explicit row terminator|`aaa,bbb,ccc`|Row with 3 cells, same as if input ended with row terminator preceding `EOF`| |Row and header contain different number of columns (cells)|Number of cells in each row is independent of other rows|`aaa,bbb\n`
`aaa,bbb,ccc`|Row 1 = 2 cells; Row 2 = 3 cells| |Header row contains duplicate cells or embedded newlines|Header rows are parsed the same was as other rows (see NOTE below)|`"a\na","a\na"`|Two cells of `a\na`| The above behavior can be altered with various optional flags: * Header rows can be treated differently if options are used to skip rows and/or use multi-row header span -- see documentation for further detail. * Quote support can be turned off, to treat quotes just like any other non- delimiter character * Cell delimiter can be a character other than comma * Row delimiter can be specfied as CRLF only, in which case a standalone CR or LF is simply part of the cell value, even without quoting ## Built-in and extensible features `zsv` is an extensible CSV utility, which uses zsvlib, for tasks such as slicing and dicing, querying with SQL, combining, serializing, flattening, [converting between CSV/JSON/sqlite3](docs/csv_json_sqlite.md) and more. `zsv` is streamlined for easy development of custom dynamic extensions. zsvlib and `zsv` are written in C, but since zsvlib is a library, and `zsv` extensions are just shared libraries, you can extend `zsv` with your own code in any programming language, so long as it has been compiled into a shared library that implements the expected [interface](./include/zsv/ext/implementation_private.h). ## Key highlights - Available as BOTH a library and an application (coming soon: standalone zsvutil library for common helper functions such as csv writer) - Open-source, permissively licensed - Handles real-world CSV the same way that spreadsheet programs do (*including edge cases*). Gracefully handles (and can "clean") real-world data that may be "dirty". - Runs on macOS (tested on clang/gcc), Linux (gcc), Windows (mingw), BSD (gcc-only) and in-browser (emscripten/wasm) - High performance (fastest vs all alternatives we've benchmarked) [app/benchmark/README.md](app/benchmark/README.md) - Lightweight: low memory usage (regardless of input data size) and binary size for both lib (~30k) and CLI (< 3MB) - Handles general delimited data (e.g. pipe-delimited) and fixed-width input (with specified widths or auto-detected widths), as well as CRLF-only row delims with unquoted embedded LF - Handles multi-row headers - Handles input from any stream, including caller-defined streams accessed via a single caller-defined `fread`-like function - Easy to use as a library in a few lines of code, via either pull or push parsing - Includes the `zsv` CLI with the following built-in commands: - [`sheet`](docs/sheet.md), an in-console interactive and extendable grid viewer - `select`, `count`, `sql` query, `desc`ribe, `flatten`, `serialize`, `2json`, `2db`, `stack`, `pretty`, `2tsv`, `paste`, `check`, `compare`, `overwrite`, `jq` - easily [convert between CSV/JSON/sqlite3](docs/csv_json_sqlite.md) - [compare multiple files](docs/compare.md) - [overwrite cells in files](docs/overwrite.md) - [and more](#batteries-included) - CLI is easy to extend/customize with a few lines of code via modular plug-in framework. Just write a few custom functions and compile into a distributable DLL that any existing zsv installation can use. ## Why another CSV parser/utility? Our objectives, which we were unable to find in a pre-existing project, are: - Reasonably high performance - Runs on any platform, including web assembly - Available as both a library and a standalone executable / command-line interface utility (CLI) - Memory-efficient, configurable resource limits - Handles real-world CSV cases the same way that Excel does, including all edge cases (quote handling, newline handling (either `\n` or `\r`), embedded newlines, abnormal quoting e.g. aaa"aaa,bbb...) - Handles other "dirty" data issues: - Assumes valid UTF8, but does not misbehave if input contains bad UTF8 - Option to specify multi-row headers - Does not assume or stop working in case of inconsistent numbers of columns - Easy to use library or extend/customize CLI There are several excellent tools that achieve high performance. Among those we considered were xsv and tsv-utils. While they met our performance objective, both were designed primarily as a utility and not a library, and were not easy enough, for our needs, to customize and/or to support modular customizations that could be maintained (or licensed) independently of the related project (in addition to the fact that they were written in Rust and D, respectively, which happen to be languages with which we lacked deep experience, especially for web assembly targeting). Others we considered were Miller (`mlr`), `csvkit` and Go (csv module), which did not meet our performance objective. We also considered various other libraries using SIMD for CSV parsing, but none that we tried met the "real-world CSV" objective. Hence, zsv was created as a library and a versatile application, both optimized for speed and ease of development for extending and/or customizing to your needs. ## Batteries included `zsv` comes with several built-in commands: - [`sheet`](docs/sheet.md): an in-console, interactive grid viewer - `echo`: read CSV from stdin and write it back out to stdout. This is mostly useful for demonstrating how to use the API and also how to create a plug-in, and has several uses beyond that including adding/removing BOM, cleaning up bad UTF8, whitespace or blank column trimming, limiting output to a contiguous data block, skipping leading garbage, and even proving substitution values without modifying the underlying source - `check`: scan for anomolies such as rows with a different number of cells than the header row or invalid utf8 - `count`: print the number of rows - `select`: re-shape CSV by skipping leading garbage, combining header rows into a single header, selecting or excluding specified columns, removing duplicate columns, sampling, converting from fixed-width input, searching and more - `desc`: provide a quick description of your table data - `sql`: treat one or more CSV files like database tables and query with SQL - `pretty`: format for console (fixed-width) display, or convert to markdown format - `serialize` (inverse of flatten): convert an NxM table to a single 3x (Nx(M-1)) table with columns: Row, Column Name, Column Value - `flatten` (inverse of serialize): flatten a table by combining rows that share a common value in a specified identifier column - `2json`: convert CSV to JSON. Optionally, output in [database schema](docs/db.schema.json) - `2tsv`: convert to TSV (tab-delimited) format - `stack`: merge CSV files vertically - `paste`: horizontally paste two tables together (given inputs X and Y, output 1...N rows where each row contains the entire corresponding row in X followed by the entire corresponding row in Y) - `compare`: compare two or more tables of data and output the differences - `overwrite`: overwrite a cell value; changes will be reflected in any zsv command when the --apply-overwrites option is specified - `jq`: run a `jq` filter - `2db`: [convert from JSON to sqlite3 db](docs/csv_json_sqlite.md) - `prop`: view or save parsing options associated with a file, such as initial rows to ignore, or header row span. Saved options are be applied by default when processing that file. Most of these can also be built as an independent executable named `zsv_xxx` where `xxx` is the command name. ## Running the CLI After installing, run `zsv help` to see usage details. The typical syntax is `zsv ` e.g.: ```shell zsv sql my_population_data.csv "select * from data where population > 100000" ``` ## Using the API Simple API usage examples include: ### Pull parsing ```c zsv_parser parser = zsv_new(NULL); while (zsv_next_row(parser) == zsv_status_row) { // for each row // ... const size_t cell_count = zsv_cell_count(parser); for (size_t i = 0; i < cell_count; i++) { // for each cell struct zsv_cell cell = zsv_get_cell(parser, i); printf("cell: %.*s\n", cell.len, cell.str); // ... } } ``` ### Push parsing ```c static void my_row_handler(void *ctx) { zsv_parser parser = ctx; const size_t cell_count = zsv_cell_count(parser); for (size_t i = 0; i < cell_count; i++) { // ... } } int main() { zsv_parser parser = zsv_new(NULL); zsv_set_row_handler(parser, my_row_handler); zsv_set_context(parser, parser); while (zsv_parse_more(parser) == zsv_status_ok); return 0; } ``` Full application code examples can be found at [examples/lib/README.md](examples/lib/README.md). An example of using the API, compiled to wasm and called via Javascript, is in [examples/js/README.md](examples/js/README.md). For more sophisticated (but at this time, only sporadically commented/documented) use cases, see the various CLI C source files in the `app` directory such as `app/serialize.c`. ## Creating your own extension You can extend `zsv` by providing a pre-compiled shared or static library that defines the functions specified in `extension_template.h` and which `zsv` loads in one of three ways: - as a static library that is statically linked at compile time - as a dynamic library that is linked at compile time and located in any library search path - as a dynamic library that is located in the same folder as the `zsv` executable and loaded at runtime if/as/when the custom mode is invoked ### Example and template You can build and run a sample extension by running `make test` from `app/ext_example`. The easiest way to implement your own extension is to copy and customize the template files in [app/ext_template](app/ext_template/README.md) ## Possible enhancements and related developments - optimize search; add search with hyperscan or re2 regex matching, possibly parallelize? - optional OpenMP or other multi-threading for row processing - auto-generated documentation, and better documentation in general - Additional benchmarking. Would be great to use as a springboard to benchmarking a number of various tasks - encoding conversion e.g. UTF16 to UTF8 ## Contribute - [Fork](https://github.com/liquidaty/zsv/fork) the project. - Check out the latest [`main`](https://github.com/liquidaty/zsv/tree/main) branch. - Create a feature or bugfix branch from `main`. - Update your required changes. - Make sure to run `clang-format` (version 15 or later) for C source updates. - Commit and push your changes. - Submit the PR. ## License [MIT](https://github.com/liquidaty/zsv/blob/master/LICENSE) The zsv CLI uses some permissively-licensed third-party libraries. See [misc/THIRDPARTY.md](misc/THIRDPARTY.md) for details. zsv-1.3.0/TO-DO.md000066400000000000000000000060671511312357700135170ustar00rootroot00000000000000# v1.0 to do: - sheet - navigate to row: vim N-G, emacs Esc-GG - edit cell - save buffer to file (with or without Row # column) - bug fixes - key bindings: - align key bindings with vim - add cmd to switch to emacs key bindings - save sheet prefs in zsv.ini? - Open file: tab for autocomplete - View edits (cell highlight, status bar) - Edit file? - Pivot and/or frequency table with drill-down - CI/CD: - use code signing to prevent os from quarantining by default - Documentation - Review / update / fix errors (README and all other) - Add intro + tutorial for each command (esp sheet) # Core Parser ### Performance - add zsv_opts option to build index while parsing - add zsv_opts option to use index if available - add start_row and end_row options to `zsv_opts` ### input formats - high priority: single-registration-function support for additional file suffix support. This functionality could come from either a built-in or an extension - for example, `zsv_register_file_reader("bz2", ...)` and `zsvwriter_register_file_writer("bz2", ...)` - should also handle file formats that may contain multiple files e.g. multiple tabs in xlsx # CLI - add index-related parser options to general command-line options - add `--all` option to `help` which will output all help messages for all commands (including extension commands) --- ## Performance Row indexing --- ## Sheet ### Help menu - multi-tab read and write (e.g. XLSX support via plug-in) - column operation plug-in (add, remove, modify column) ### Data editing - needs to support buffer-level handlers - for example: - user opens mydata.csv - user filters to rows that contain "xyz"; results are displayed in a new buffer - user tries to edit cell in the new (filtered data) buffer - either this attempt fails because the buffer is read-only, or - the buffer handles this in a specific manner to trace the edited row back to the correct row in the original data ### Buffers - add buffer type e.g. csv etc - add read-only flag ### Extensions - update temp file management to centralized list with ref count - add options to stop or cancel event handling before it is finished running. Stop = stop running, and display any progress so far in a new buffer; cancel = stop running, don't display anything and return as if the event handler had never started in the first place - add extension_id to each buffer; prevent extension A from modifying (e.g. set/get ext_ctx) buffer owned by extension B - high priority: support extension custom properties - save in ../zsv/extensions/xxx.ini - API should include functions to set/get - Extend the my_extension.c such that when a buffer in the displayed list is selected, pressing Return will load that buffer - cell plug-in: display context menu (e.g. for drill-down menu options) ### Interface - progress tracking - title line? - help --- ## New commands ### ls - list files that have saved zsv settings (i.e. each subdirectory in .zsv/data) ### audit/dump - dump all file-specific saved settings (properties, edits/corrections etc) zsv-1.3.0/app/000077500000000000000000000000001511312357700131225ustar00rootroot00000000000000zsv-1.3.0/app/2db.c000066400000000000000000000572531511312357700137510ustar00rootroot00000000000000/* * Copyright (C) 2021-2022 Liquidaty and zsv contributors. All rights reserved. * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include // unlink #include #include #include #include #define ZSV_COMMAND 2db #include "zsv_command.h" #include #include #include #include #define ZSV_2DB_DEFAULT_TABLE_NAME "mytable" enum zsv_2db_action { zsv_2db_action_create = 1, zsv_2db_action_append, zsv_2db_action_index }; enum zsv_2db_state { zsv_2db_state_header = 1, zsv_2db_state_data, zsv_2db_state_done }; #define LQ_2DB_MAX_INDEXES 32 struct zsv_2db_ix { struct zsv_2db_ix *next; char *name; char *on; char delete; char unique; }; struct zsv_2db_column { struct zsv_2db_column *next; char *name; char *datatype; char *collate; }; struct zsv_2db_options { char *table_name; char *db_fn; char verbose; char overwrite; // overwrite old db if it exists #define ZSV_2DB_DEFAULT_BATCH_SIZE 10000 size_t batch_size; }; typedef struct zsv_2db_data *zsv_2db_handle; struct zsv_2db_data { struct zsv_2db_options opts; char *db_fn_tmp; sqlite3 *db; char transaction_started; char *connection_string; struct { yajl_helper_t yh; yajl_status yajl_stat; enum zsv_2db_state state; unsigned int col_count; struct zsv_2db_column *columns, **last_column; struct zsv_2db_column current_column; struct zsv_2db_ix *indexes, **last_index; sqlite3_int64 index_sequence_num_max; struct zsv_2db_ix current_index; char have_row_data; char **row_values; sqlite3_stmt *insert_stmt; unsigned stmt_colcount; } json_parser; size_t rows_processed; size_t row_insert_attempts; size_t rows_inserted; #define ZSV_2DB_MSG_BATCH_SIZE 10000 // number of rows between each console update (if verbose) int err; }; static void zsv_2db_ix_free(struct zsv_2db_ix *e) { free(e->name); free(e->on); } static void zsv_2db_ixes_delete(struct zsv_2db_ix **p) { if (p && *p) { struct zsv_2db_ix *next; for (struct zsv_2db_ix *e = *p; e; e = next) { next = e->next; zsv_2db_ix_free(e); free(e); } *p = NULL; } } static void zsv_2db_column_free(struct zsv_2db_column *e) { free(e->name); free(e->datatype); free(e->collate); } static void zsv_2db_columns_delete(struct zsv_2db_column **p) { struct zsv_2db_column *next; if (p && *p) { for (struct zsv_2db_column *e = *p; e; e = next) { next = e->next; zsv_2db_column_free(e); free(e); } *p = NULL; } } static void zsv_2db_delete(zsv_2db_handle data) { if (!data) return; free(data->opts.table_name); free(data->db_fn_tmp); if (data->db) sqlite3_close(data->db); zsv_2db_columns_delete(&data->json_parser.columns); zsv_2db_column_free(&data->json_parser.current_column); zsv_2db_ixes_delete(&data->json_parser.indexes); zsv_2db_ix_free(&data->json_parser.current_index); free(data->json_parser.row_values); yajl_helper_delete(data->json_parser.yh); free(data); } /* sqlite3 helper functions */ static int zsv_2db_sqlite3_exec_2db(sqlite3 *db, const char *sql) { char *err_msg = NULL; int rc = sqlite3_exec(db, sql, NULL, NULL, &err_msg); if (err_msg) { fprintf(stderr, "Error executing '%s': %s\n", sql, err_msg); sqlite3_free(err_msg); } else if (rc == SQLITE_DONE || rc == SQLITE_OK) return 0; return 1; } // add_db_indexes: return 0 on success, else error code static int zsv_2db_add_indexes(struct zsv_2db_data *data) { int err = 0; for (struct zsv_2db_ix *ix = data->json_parser.indexes; !err && ix; ix = ix->next) { sqlite3_str *pStr = sqlite3_str_new(data->db); sqlite3_str_appendf(pStr, "create%s index \"%w_%w\" on \"%w\"(%s)", ix->unique ? " unique" : "", data->opts.table_name, ix->name, data->opts.table_name, ix->on); err = zsv_2db_sqlite3_exec_2db(data->db, sqlite3_str_value(pStr)); if (!err) data->json_parser.index_sequence_num_max++; sqlite3_free(sqlite3_str_finish(pStr)); } return err; } static void zsv_2db_start_transaction(struct zsv_2db_data *data) { if (!data->transaction_started) sqlite3_exec(data->db, "BEGIN TRANSACTION", NULL, NULL, NULL); data->transaction_started = 1; } static void zsv_2db_end_transaction(struct zsv_2db_data *data) { if (data->transaction_started) sqlite3_exec(data->db, "COMMIT", NULL, NULL, NULL); data->transaction_started = 0; } static sqlite3_str *build_create_table_statement(sqlite3 *db, const char *tname, const char *const *colnames, const char *const *datatypes, const char *const *collates, unsigned int col_count) { int err = 0; sqlite3_str *pStr = sqlite3_str_new(db); sqlite3_str_appendf(pStr, "CREATE TABLE \"%w\" (\n ", tname ? tname : ZSV_2DB_DEFAULT_TABLE_NAME); for (unsigned int i = 0; i < col_count; i++) { if (i > 0) sqlite3_str_appendf(pStr, ",\n "); sqlite3_str_appendf(pStr, "\"%w\"", colnames[i]); const char *datatype = datatypes ? datatypes[i] : NULL; if (!datatype || !(!strcmp("int", datatype) || !strcmp("integer", datatype) || !strcmp("real", datatype) || !strcmp("text", datatype))) { if (datatype) fprintf(stderr, "Unrecognized datatype %s", datatype), err = 1; else datatype = "text"; } if (!err) { const char *collate = collates ? collates[i] : NULL; if (collate && *collate) { if (collate && !(!strcmp("binary", collate) || !strcmp("rtrim", collate) || !strcmp("nocase", collate))) { fprintf(stderr, "Unrecognized collate: expected binary, rtrim or nocase, got %s", collate); err = 1; } else sqlite3_str_appendf(pStr, " %s%s%s", datatype, collate ? " collate " : "", collate ? collate : ""); } } } if (err) { if (pStr) sqlite3_free(sqlite3_str_finish(pStr)); pStr = NULL; } else sqlite3_str_appendf(pStr, ")\n"); return pStr; } // zsv_2db_finish_header: return 0 on error, 1 on success static int zsv_2db_finish_header(struct zsv_2db_data *data) { if (data->err) return 0; if (!data->json_parser.col_count) { fprintf(stderr, "No columns found!\n"); return 0; } data->json_parser.state = zsv_2db_state_data; if ((data->json_parser.row_values = calloc(data->json_parser.col_count, sizeof(*data->json_parser.row_values)))) return 1; data->err = 1; return 0; } /* json parser functions */ static sqlite3_stmt *create_insert_statement(sqlite3 *db, const char *tname, unsigned int col_count) { sqlite3_stmt *insert_stmt = NULL; sqlite3_str *insert_sql = sqlite3_str_new(db); if (insert_sql) { sqlite3_str_appendf(insert_sql, "insert into \"%w\" values(?", tname); for (unsigned int i = 1; i < col_count; i++) sqlite3_str_appendf(insert_sql, ", ?"); sqlite3_str_appendf(insert_sql, ")"); int status = sqlite3_prepare_v2(db, sqlite3_str_value(insert_sql), -1, &insert_stmt, NULL); if (status != SQLITE_OK) { fprintf(stderr, "Unable to prep (%s): %s\n", sqlite3_str_value(insert_sql), sqlite3_errmsg(db)); } sqlite3_free(sqlite3_str_finish(insert_sql)); } return insert_stmt; } // return error static int zsv_2db_set_insert_stmt(struct zsv_2db_data *data) { int err = 0; if (!data->json_parser.col_count) { fprintf(stderr, "insert statement called with no columns to insert"); err = 1; } else { const char **colnames = calloc(data->json_parser.col_count, sizeof(*colnames)); const char **datatypes = calloc(data->json_parser.col_count, sizeof(*datatypes)); const char **collates = calloc(data->json_parser.col_count, sizeof(*collates)); unsigned int i = 0; for (struct zsv_2db_column *e = data->json_parser.columns; e; e = e->next, i++) { colnames[i] = e->name; datatypes[i] = e->datatype; collates[i] = e->collate; } sqlite3_str *create_sql = build_create_table_statement(data->db, data->opts.table_name, colnames, datatypes, collates, data->json_parser.col_count); if (!create_sql) err = 1; else { if (!(err = zsv_2db_sqlite3_exec_2db(data->db, sqlite3_str_value(create_sql))) && !(data->json_parser.insert_stmt = create_insert_statement(data->db, data->opts.table_name, data->json_parser.col_count))) { err = 1; zsv_2db_start_transaction(data); } else data->json_parser.stmt_colcount = data->json_parser.col_count; sqlite3_free(sqlite3_str_finish(create_sql)); } free(colnames); free(datatypes); free(collates); } return err; } /* add_local_db_row(): return sqlite3 error, or 0 on ok */ static int zsv_2db_insert_row_values(sqlite3_stmt *stmt, unsigned stmt_colcount, char const *const *const values, unsigned int values_count) { if (!stmt) return -1; int status = 0; unsigned int errors_printed = 0; if (values_count > stmt_colcount) values_count = stmt_colcount; for (unsigned int i = 0; i < values_count; i++) { const char *val = values[i]; if (val && *val) sqlite3_bind_text(stmt, (int)i + 1, val, (int)strlen(val), SQLITE_STATIC); else // don't use sqlite3_bind_null, else x = ? will fail if value is ""/null sqlite3_bind_text(stmt, (int)i + 1, "", 0, SQLITE_STATIC); } for (unsigned int i = values_count; i < stmt_colcount; i++) sqlite3_bind_null(stmt, (int)i + 1); status = sqlite3_step(stmt); if (status == SQLITE_DONE) status = 0; else if (errors_printed < 10) { errors_printed++; fprintf(stderr, "Unable to insert: %s\n", sqlite3_errstr(status)); } else if (errors_printed != 100) { errors_printed = 100; fprintf(stderr, "Too many insert errors to print\n"); } sqlite3_reset(stmt); return status; } static int zsv_2db_insert_row(struct zsv_2db_data *data) { if (!data->err) { data->rows_processed++; if (data->json_parser.have_row_data) { if (!data->json_parser.insert_stmt) data->err = zsv_2db_set_insert_stmt(data); if (!data->db) return 0; int rc = zsv_2db_insert_row_values(data->json_parser.insert_stmt, data->json_parser.stmt_colcount, (char const *const *const)data->json_parser.row_values, data->json_parser.col_count); data->row_insert_attempts++; if (!rc) { data->rows_inserted++; if (data->opts.verbose && (data->rows_inserted % ZSV_2DB_MSG_BATCH_SIZE == 0)) fprintf(stderr, "%zu rows inserted\n", data->rows_inserted); if (data->opts.batch_size && (data->rows_inserted % data->opts.batch_size == 0)) { zsv_2db_end_transaction(data); if (data->opts.verbose) fprintf(stderr, "%zu rows committed\n", data->rows_inserted); zsv_2db_start_transaction(data); } } } } return 1; } static int json_start_map(yajl_helper_t yh) { (void)(yh); return 1; } static int json_end_map(yajl_helper_t yh) { struct zsv_2db_data *data = yajl_helper_ctx(yh); if (data->json_parser.state == zsv_2db_state_header && yajl_helper_got_path(yh, 3, "[{columns[")) { // exiting a column header if (!data->json_parser.current_column.name) { fprintf(stderr, "Name missing from column spec!\n"); return 0; } else { struct zsv_2db_column *e = calloc(1, sizeof(*e)); if (!e) { fprintf(stderr, "Out of memory!"); return 0; } *e = data->json_parser.current_column; *data->json_parser.last_column = e; data->json_parser.last_column = &e->next; data->json_parser.col_count++; memset(&data->json_parser.current_column, 0, sizeof(data->json_parser.current_column)); } } else if (data->json_parser.state == zsv_2db_state_header && yajl_helper_got_path(yh, 3, "[{indexes{")) { // exiting an index if (!data->json_parser.current_index.name) { fprintf(stderr, "Name missing from index spec\n"); return 0; } else if (!(data->json_parser.current_index.on || data->json_parser.current_index.delete)) { fprintf(stderr, "'on' or 'delete' missing from index spec\n"); return 0; } else { struct zsv_2db_ix *e = calloc(1, sizeof(*e)); if (!e) { fprintf(stderr, "Out of memory!"); return 0; } *e = data->json_parser.current_index; *data->json_parser.last_index = e; data->json_parser.last_index = &e->next; memset(&data->json_parser.current_index, 0, sizeof(data->json_parser.current_index)); } } return 1; } static int json_map_key(yajl_helper_t yh, const unsigned char *s, size_t len) { struct zsv_2db_data *data = yajl_helper_ctx(yh); if (data->json_parser.state == zsv_2db_state_header && yajl_helper_got_path(yh, 3, "[{indexes{")) { free(data->json_parser.current_index.name); if (len) data->json_parser.current_index.name = zsv_memdup(s, len); else data->json_parser.current_index.name = NULL; } return 1; } static int json_start_array(yajl_helper_t yh) { if (yajl_helper_level(yh) == 2) { struct zsv_2db_data *data = yajl_helper_ctx(yh); if (data->json_parser.state == zsv_2db_state_header && yajl_helper_got_path(yh, 2, "[[") && yajl_helper_array_index_plus_1(yh, 1) == 2) return zsv_2db_finish_header(data); } return 1; } static void reset_row_values(struct zsv_2db_data *data) { if (data->json_parser.row_values) { for (unsigned int i = 0; i < data->json_parser.col_count; i++) { free(data->json_parser.row_values[i]); data->json_parser.row_values[i] = NULL; } } data->json_parser.have_row_data = 0; } static int json_end_array(yajl_helper_t yh) { if (yajl_helper_level(yh) == 2) { struct zsv_2db_data *data = yajl_helper_ctx(yh); if (data->json_parser.state == zsv_2db_state_data && yajl_helper_got_path(yh, 2, "[[")) { // finished a row of data zsv_2db_insert_row(data); reset_row_values(data); } } return 1; } static int json_process_value(yajl_helper_t yh, struct json_value *value) { const unsigned char *jsstr; size_t len; struct zsv_2db_data *data = yajl_helper_ctx(yh); if (data->json_parser.state == zsv_2db_state_data) { if (yajl_helper_got_path(yh, 3, "[[[")) { json_value_default_string(value, &jsstr, &len); if (jsstr && len) { unsigned int j = yajl_helper_array_index_plus_1(yh, 0); if (j && j - 1 < data->json_parser.col_count) { data->json_parser.row_values[j - 1] = zsv_memdup(jsstr, len); data->json_parser.have_row_data = 1; } } } } else if (yajl_helper_got_path(yh, 2, "[{name")) { json_value_default_string(value, &jsstr, &len); if (len) { if (data->opts.table_name) fprintf(stderr, "Table name specified twice; keeping %s, ignoring %.*s\n", data->opts.table_name, (int)len, jsstr); else data->opts.table_name = zsv_memdup(jsstr, len); } } else if (yajl_helper_got_path(yh, 4, "[{columns[{name")) { free(data->json_parser.current_column.name); data->json_parser.current_column.name = NULL; json_value_default_string(value, &jsstr, &len); if (jsstr && len) data->json_parser.current_column.name = zsv_memdup(jsstr, len); } else if (yajl_helper_got_path(yh, 4, "[{columns[{datatype")) { free(data->json_parser.current_column.datatype); data->json_parser.current_column.datatype = NULL; json_value_default_string(value, &jsstr, &len); if (jsstr && len) data->json_parser.current_column.datatype = zsv_memdup(jsstr, len); } else if (yajl_helper_got_path(yh, 4, "[{columns[{collate")) { free(data->json_parser.current_column.collate); data->json_parser.current_column.collate = NULL; json_value_default_string(value, &jsstr, &len); if (jsstr && len) data->json_parser.current_column.collate = zsv_memdup(jsstr, len); } else if (yajl_helper_got_path(yh, 4, "[{indexes{*{delete")) { data->json_parser.current_index.delete = json_value_truthy(value); } else if (yajl_helper_got_path(yh, 4, "[{indexes{*{unique")) { data->json_parser.current_index.unique = json_value_truthy(value); } else if (yajl_helper_got_path(yh, 4, "[{indexes{*{on") || yajl_helper_got_path(yh, 5, "[{indexes{*{on[")) { json_value_default_string(value, &jsstr, &len); if (len) { if (yajl_helper_level(yh) == 4 || !data->json_parser.current_index.on) { free(data->json_parser.current_index.on); data->json_parser.current_index.on = zsv_memdup(jsstr, len); } else { char *defn; asprintf(&defn, "%s,%.*s", data->json_parser.current_index.on, (int)len, jsstr); free(data->json_parser.current_index.on); data->json_parser.current_index.on = defn; } } } return 1; } /* api functions */ // exportable static zsv_2db_handle zsv_2db_new(struct zsv_2db_options *opts) { int err = 0; if (!opts->db_fn) fprintf(stderr, "Please specify an output file\n"), err = 1; struct stat stt = {0}; if (!err && !opts->overwrite && (!stat(opts->db_fn, &stt) || errno != ENOENT)) fprintf(stderr, "File %s already exists\n", opts->db_fn), err = 1; if (err) return NULL; struct zsv_2db_data *data = calloc(1, sizeof(*data)); data->opts = *opts; if (!(data->opts.batch_size)) data->opts.batch_size = ZSV_2DB_DEFAULT_BATCH_SIZE; data->json_parser.last_column = &data->json_parser.columns; data->json_parser.last_index = &data->json_parser.indexes; data->json_parser.state = zsv_2db_state_header; if (opts->table_name) data->opts.table_name = strdup(opts->table_name); asprintf(&data->db_fn_tmp, "%s.tmp", data->opts.db_fn); if (!data->db_fn_tmp) err = 1; else { int flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_FULLMUTEX; #ifndef NDEBUG fprintf(stderr, "Opening: %s\n", data->db_fn_tmp); #endif unlink(data->db_fn_tmp); int rc = sqlite3_open_v2(data->db_fn_tmp, &data->db, flags, NULL); err = 1; if (!data->db) fprintf(stderr, "Unable to open db at %s\n", data->db_fn_tmp); else if (rc != SQLITE_OK) fprintf(stderr, "Unable to open db at %s: %s\n", data->db_fn_tmp, sqlite3_errmsg(data->db)); else { err = 0; // performance tweaks sqlite3_exec(data->db, "PRAGMA synchronous = OFF", NULL, NULL, NULL); sqlite3_exec(data->db, "PRAGMA journal_mode = OFF", NULL, NULL, NULL); // parse the input and create & populate the database table if (!(data->json_parser.yh = yajl_helper_new(32, json_start_map, json_end_map, json_map_key, json_start_array, json_end_array, json_process_value, data))) { fprintf(stderr, "Unable to get yajl parser\n"); err = 1; } } } if (err) { zsv_2db_delete(data); data = NULL; } return data; } // exportable static int zsv_2db_err(zsv_2db_handle h) { return h->err; } // exportable static int zsv_2db_finish(zsv_2db_handle data) { // add indexes int err = zsv_2db_add_indexes(data); if (!err) { if (data->db) { zsv_2db_end_transaction(data); if (data->json_parser.insert_stmt) sqlite3_finalize(data->json_parser.insert_stmt); sqlite3_close(data->db); data->db = NULL; // rename tmp to target unlink(data->opts.db_fn); if (zsv_replace_file(data->db_fn_tmp, data->opts.db_fn)) { fprintf(stderr, "Unable to rename %s to %s\n", data->db_fn_tmp, data->opts.db_fn); zsv_perror(NULL); err = 1; } else fprintf(stderr, "Database %s created\n", data->opts.db_fn); } } return err; } // exportable static yajl_handle zsv_2db_yajl_handle(zsv_2db_handle data) { return yajl_helper_yajl(data->json_parser.yh); } int ZSV_MAIN_FUNC(ZSV_COMMAND)(int argc, const char *argv[], struct zsv_opts *zsv_opts, struct zsv_prop_handler *custom_prop_handler) { (void)(zsv_opts); (void)(custom_prop_handler); FILE *f_in = NULL; int err = 0; struct zsv_2db_options opts = {0}; opts.verbose = zsv_get_default_opts().verbose; const char *usage[] = { APPNAME ": convert JSON to SQLite3 DB", "", "Usage: " APPNAME " -o [-t ] [input.json]\n", "", "Options:", " -h,--help : show usage", " --table : save as specified table name", " --overwrite : overwrite existing database", // TO DO: // --sql to output sql statements // --append: append to existing db "", // TO DO: add output examples and schema descriptions "The input should conform to the schema defined at:", " https://github.com/liquidaty/zsv/blob/main/app/schema/database-table.json", "", "Example:", " [", " {", " \"columns\":[{\"name\":\"column 1\"}],", " \"indexes\":{\"ix1\":{\"on\":\"[column 1]\",\"unique\":true}}", " },", " [", " [\"row 1 cell 1\"],", " [\"row 2 cell 1\"]", " ]", " ]", NULL, }; for (int i = 1; !err && i < argc; i++) { if (!strcmp(argv[i], "--help") || !strcmp(argv[i], "-h")) { for (int j = 0; usage[j]; j++) fprintf(stdout, "%s\n", usage[j]); goto exit_2db; } else if (!strcmp(argv[i], "-o") || !strcmp(argv[i], "--output")) { if (++i >= argc) fprintf(stderr, "%s option requires a filename value\n", argv[i - 1]), err = 1; else if (opts.db_fn) fprintf(stderr, "Output file specified more than once (%s and %s)\n", opts.db_fn, argv[i]), err = 1; else opts.db_fn = (char *)argv[i]; // we won't free this } else if (!strcmp(argv[i], "--overwrite")) { opts.overwrite = 1; } else if (!strcmp(argv[i], "--table")) { if (++i >= argc) fprintf(stderr, "%s option requires a filename value\n", argv[i - 1]), err = 1; else if (opts.table_name) fprintf(stderr, "Table name specified more than once (%s and %s)\n", opts.table_name, argv[i]), err = 1; else opts.table_name = (char *)argv[i]; // we won't free this } else if (f_in) fprintf(stderr, "Input file specified more than once\n"), err = 1; else if (!(f_in = fopen(argv[i], "rb"))) fprintf(stderr, "Unable to open for reading: %s\n", argv[i]), err = 1; else if (!(strlen(argv[i]) > 5 && !zsv_stricmp((const unsigned char *)argv[i] + strlen(argv[i]) - 5, (const unsigned char *)".json"))) fprintf(stderr, "Warning: input filename does not end with .json (%s)\n", argv[i]); } if (!f_in) { #ifdef NO_STDIN fprintf(stderr, "Please specify an input file\n"); err = 1; #else f_in = stdin; #endif } if (!err) { zsv_2db_handle data = zsv_2db_new(&opts); if (!data) err = 1; else { size_t chunk_size = 4096 * 16; unsigned char *buff = malloc(chunk_size); if (!buff) err = 1; else { size_t bytes_read = 0; yajl_handle y = zsv_2db_yajl_handle(data); while (!err && !zsv_2db_err(data)) { bytes_read = fread(buff, 1, chunk_size, f_in); if (bytes_read == 0) break; yajl_status stat = yajl_parse(y, buff, bytes_read); if (stat != yajl_status_ok) err = yajl_helper_print_err(y, buff, bytes_read); } if (!err) { if (yajl_complete_parse(y) != yajl_status_ok) err = yajl_helper_print_err(y, buff, bytes_read); else if (zsv_2db_err(data) || zsv_2db_finish(data)) err = 1; } free(buff); } zsv_2db_delete(data); } } exit_2db: if (f_in && f_in != stdin) fclose(f_in); return err; } zsv-1.3.0/app/2json.c000066400000000000000000000323461511312357700143310ustar00rootroot00000000000000/* * Copyright (C) 2021-2022 Liquidaty and zsv contributors. All rights reserved. * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #include #include #define ZSV_COMMAND 2json #include "zsv_command.h" #include #include #include struct zsv_2json_header { struct zsv_2json_header *next; char *name; }; #define LQ_2JSON_MAX_INDEXES 32 struct zsv_2json_data { zsv_parser parser; jsonwriter_handle jsw; size_t rows_processed; // includes header row struct { const char *clauses[LQ_2JSON_MAX_INDEXES]; char unique[LQ_2JSON_MAX_INDEXES]; unsigned count; } indexes; struct zsv_2json_header *headers, *current_header; struct zsv_2json_header **headers_next; char *db_tablename; #define ZSV_JSON_SCHEMA_OBJECT 1 #define ZSV_JSON_SCHEMA_DATABASE 2 unsigned char schema : 2; unsigned char no_header : 1; unsigned char no_empty : 1; unsigned char err : 1; unsigned char from_db : 1; unsigned char compact : 1; unsigned char _ : 1; }; static void zsv_2json_cleanup(struct zsv_2json_data *data) { for (struct zsv_2json_header *next, *h = data->headers; h; h = next) { next = h->next; if (h->name) free(h->name); free(h); } free(data->db_tablename); } static void write_header_cell(struct zsv_2json_data *data, const unsigned char *utf8_value, size_t len) { if (data->schema == ZSV_JSON_SCHEMA_OBJECT) { struct zsv_2json_header *h; if (!(h = calloc(1, sizeof(*h)))) { fprintf(stderr, "Out of memory!\n"); data->err = 1; } else { *data->headers_next = h; data->headers_next = &h->next; if ((h->name = malloc(len + 1))) { memcpy(h->name, utf8_value, len); h->name[len] = '\0'; } } } else { // to do: add options to set data type, etc jsonwriter_start_object(data->jsw); jsonwriter_object_key(data->jsw, "name"); jsonwriter_strn(data->jsw, utf8_value, len); jsonwriter_end(data->jsw); } } static void write_data_cell(struct zsv_2json_data *data, const unsigned char *utf8_value, size_t len) { if (data->schema == ZSV_JSON_SCHEMA_OBJECT) { if (!data->current_header) return; char *current_header_name = data->current_header->name; data->current_header = data->current_header->next; if (len || !data->no_empty) jsonwriter_object_key(data->jsw, current_header_name); else return; } jsonwriter_strn(data->jsw, utf8_value, len); } static char *zsv_2json_db_first_tname(sqlite3 *db) { char *tname = NULL; sqlite3_stmt *stmt = NULL; const char *sql = "select name from sqlite_master where type = 'table'"; if (sqlite3_prepare_v2(db, sql, -1, &stmt, NULL) != SQLITE_OK) fprintf(stderr, "Unable to prepare %s: %s\n", sql, sqlite3_errmsg(db)); else if (sqlite3_step(stmt) == SQLITE_ROW) { const unsigned char *text = sqlite3_column_text(stmt, 0); if (text) { int len = sqlite3_column_bytes(stmt, 0); tname = zsv_memdup(text, len); } } if (stmt) sqlite3_finalize(stmt); return tname; } static void zsv_2json_row(void *ctx) { struct zsv_2json_data *data = ctx; unsigned int cols = zsv_cell_count(data->parser); if (cols) { char obj = 0; char arr = 0; if (!data->rows_processed) { // header row jsonwriter_start_array(data->jsw); // start array of rows if (data->schema == ZSV_JSON_SCHEMA_DATABASE) { jsonwriter_start_object(data->jsw); // start this row obj = 1; if (data->db_tablename) jsonwriter_object_cstr(data->jsw, "name", data->db_tablename); // to do: check index syntax (as of now, we just take argument value // as-is and assume it will translate into a valid SQLITE3 command) char have_index = 0; for (unsigned i = 0; i < data->indexes.count; i++) { const char *name_start = data->indexes.clauses[i]; const char *on = strstr(name_start, " on "); if (on) { on += 4; while (*on == ' ') on++; } if (!on || !*on) continue; const char *name_end = name_start; while (name_end && *name_end && *name_end != ' ') name_end++; if (name_end > name_start) { if (!have_index) { have_index = 1; jsonwriter_object_object(data->jsw, "indexes"); } char *tmp = zsv_memdup(name_start, name_end - name_start); jsonwriter_object_object(data->jsw, tmp); // this index free(tmp); jsonwriter_object_cstr(data->jsw, "on", on); if (data->indexes.unique[i]) jsonwriter_object_bool(data->jsw, "unique", 1); jsonwriter_end_object(data->jsw); // end this index } } if (have_index) jsonwriter_end_object(data->jsw); // indexes jsonwriter_object_array(data->jsw, "columns"); arr = 1; } else if (data->schema != ZSV_JSON_SCHEMA_OBJECT) { jsonwriter_start_array(data->jsw); // start this row arr = 1; } } else { // processing a data row, not header row if (data->schema == ZSV_JSON_SCHEMA_OBJECT) { jsonwriter_start_object(data->jsw); // start this row obj = 1; } else { if (data->rows_processed == 1 && data->schema == ZSV_JSON_SCHEMA_DATABASE) jsonwriter_start_array(data->jsw); // start the table-data element jsonwriter_start_array(data->jsw); // start this row arr = 1; } } for (unsigned int i = 0; i < cols; i++) { struct zsv_cell cell = zsv_get_cell(data->parser, i); // output this cell if (!data->rows_processed && !data->no_header) // this is header row write_header_cell(data, cell.str, cell.len); else write_data_cell(data, cell.str, cell.len); } // end this row if (arr) jsonwriter_end_array(data->jsw); if (obj) jsonwriter_end_object(data->jsw); data->rows_processed++; } data->current_header = data->headers; } static int zsv_db2json(const char *input_filename, char **tname, jsonwriter_handle jsw) { sqlite3 *db; int rc = sqlite3_open_v2(input_filename, &db, SQLITE_OPEN_READONLY | SQLITE_OPEN_FULLMUTEX | SQLITE_OPEN_SHAREDCACHE, NULL); int err = 0; if (!db) fprintf(stderr, "Unable to open db at %s\n", input_filename), err = 1; else if (rc != SQLITE_OK) fprintf(stderr, "Unable to open db at %s: %s\n", input_filename, sqlite3_errmsg(db)), err = 1; else if (!*tname) *tname = zsv_2json_db_first_tname(db); if (!*tname) fprintf(stderr, "No table name provided, and none found in %s\n", input_filename), err = 1; else err = zsv_dbtable2json(db, *tname, jsw, 0); return err; } int ZSV_MAIN_FUNC(ZSV_COMMAND)(int argc, const char *argv[], struct zsv_opts *optsp, struct zsv_prop_handler *custom_prop_handler) { struct zsv_opts opts = *optsp; struct zsv_2json_data data = {0}; data.headers_next = &data.headers; const char *usage[] = { APPNAME ": streaming CSV to JSON converter, or SQLite3 DB to JSON converter", "", "Usage: " APPNAME " [options] [file.csv]", "", "Options:", " -h,--help : show usage", " -o,--output : filename to write output to", " --compact : output compact JSON", " --from-db : input is sqlite3 database", " --db-table : name of table in input database to convert", " --object : output as array of objects", " --no-empty : omit empty properties (only with --object)", " --database : output in database schema", " --no-header : treat the header row as a data row", " --index : add index to database schema", " --unique-index : add unique index to database schema", NULL, }; FILE *out = NULL; const char *input_path = NULL; enum zsv_status err = zsv_status_ok; int done = 0; for (int i = 1; !err && !done && i < argc; i++) { if (!strcmp(argv[i], "--help") || !strcmp(argv[i], "-h")) { for (int j = 0; usage[j]; j++) fprintf(stdout, "%s\n", usage[j]); done = 1; } else if (!strcmp(argv[i], "-o") || !strcmp(argv[i], "--output")) { if (++i >= argc) fprintf(stderr, "%s option requires a filename value\n", argv[i - 1]), err = zsv_status_error; else if (out && out != stdout) fprintf(stderr, "Output file specified more than once\n"), err = zsv_status_error; else if (!(out = fopen(argv[i], "wb"))) fprintf(stderr, "Unable to open for writing: %s\n", argv[i]), err = zsv_status_error; } else if (!strcmp(argv[i], "--index") || !strcmp(argv[i], "--unique-index")) { if (++i >= argc) fprintf(stderr, "%s option requires a filename value\n", argv[i - 1]), err = zsv_status_error; else if (data.indexes.count > LQ_2JSON_MAX_INDEXES) fprintf(stderr, "Max index count exceeded; ignoring %s\n", argv[i]), err = zsv_status_error; else if (!strstr(argv[i], " on ")) fprintf(stderr, "Index value should be in the form of 'index_name on expr'; got %s\n", argv[i]), err = zsv_status_error; else { if (!strcmp(argv[i - 1], "--unique-index")) data.indexes.unique[data.indexes.count] = 1; data.indexes.clauses[data.indexes.count++] = argv[i]; } } else if (!strcmp(argv[i], "--no-empty")) { data.no_empty = 1; } else if (!strcmp(argv[i], "--db-table")) { if (++i >= argc) fprintf(stderr, "%s option requires a table name value\n", argv[i - 1]), err = zsv_status_error; else if (data.db_tablename) fprintf(stderr, "%s option specified more than once\n", argv[i - 1]), err = zsv_status_error; else data.db_tablename = strdup(argv[i]); } else if (!strcmp(argv[i], "--from-db")) { if (++i >= argc) fprintf(stderr, "%s option requires a filename value\n", argv[i - 1]), err = zsv_status_error; else if (opts.stream) fprintf(stderr, "Input file specified more than once\n"), err = zsv_status_error; else if (!(opts.stream = fopen(argv[i], "rb"))) fprintf(stderr, "Unable to open for reading: %s\n", argv[i]), err = zsv_status_error; else { input_path = argv[i]; data.from_db = 1; } } else if (!strcmp(argv[i], "--database") || !strcmp(argv[i], "--object")) { if (data.schema) fprintf(stderr, "Output schema specified more than once\n"), err = zsv_status_error; else if (!strcmp(argv[i], "--database")) data.schema = ZSV_JSON_SCHEMA_DATABASE; else data.schema = ZSV_JSON_SCHEMA_OBJECT; } else if (!strcmp(argv[i], "--no-header")) data.no_header = 1; else if (!strcmp(argv[i], "--compact")) data.compact = 1; else { if (opts.stream) fprintf(stderr, "Input file specified more than once\n"), err = zsv_status_error; else if (!(opts.stream = fopen(argv[i], "rb"))) fprintf(stderr, "Unable to open for reading: %s\n", argv[i]), err = zsv_status_error; else input_path = argv[i]; } } if (!(err || done)) { if (data.indexes.count && data.schema != ZSV_JSON_SCHEMA_DATABASE) fprintf(stderr, "--index/--unique-index can only be used with --database\n"), err = zsv_status_error; else if (data.no_header && data.schema) fprintf(stderr, "--no-header cannot be used together with --object or --database\n"), err = zsv_status_error; else if (data.no_empty && data.schema != ZSV_JSON_SCHEMA_OBJECT) fprintf(stderr, "--no-empty can only be used with --object\n"), err = zsv_status_error; else if (!opts.stream) { if (data.from_db) fprintf(stderr, "Database input specified, but no input file provided\n"), err = zsv_status_error; else { #ifdef NO_STDIN fprintf(stderr, "Please specify an input file\n"), err = zsv_status_error; #else opts.stream = stdin; #endif } } } if (!(err || done)) { if (!out) out = stdout; if (!(data.jsw = jsonwriter_new(out))) err = zsv_status_error; else { if (data.compact) jsonwriter_set_option(data.jsw, jsonwriter_option_compact); if (data.from_db) { if (opts.stream != stdin) { fclose(opts.stream); opts.stream = NULL; } err = zsv_db2json(input_path, &data.db_tablename, data.jsw); } else { opts.row_handler = zsv_2json_row; opts.ctx = &data; if (zsv_new_with_properties(&opts, custom_prop_handler, input_path, &data.parser) == zsv_status_ok) { zsv_handle_ctrl_c_signal(); while (!data.err && !zsv_signal_interrupted && zsv_parse_more(data.parser) == zsv_status_ok) ; zsv_finish(data.parser); zsv_delete(data.parser); jsonwriter_end_all(data.jsw); } err = data.err; } } jsonwriter_delete(data.jsw); } zsv_2json_cleanup(&data); if (opts.stream && opts.stream != stdin) fclose(opts.stream); if (out && out != stdout) fclose(out); return err; } zsv-1.3.0/app/2tsv.c000066400000000000000000000166531511312357700141770ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #define ZSV_COMMAND 2tsv #include "zsv_command.h" #include enum zsv_2tsv_status { zsv_2tsv_status_ok = 0, zsv_2tsv_status_out_of_memory }; #define ZSV_2TSV_BUFF_SIZE 65536 struct static_buff { char *buff; // will be ZSV_2TSV_BUFF_SIZE size_t used; FILE *stream; }; struct zsv_2tsv_data { zsv_parser parser; struct static_buff out; unsigned char convert_to_space : 1; unsigned char _ : 7; }; __attribute__((always_inline)) static inline void zsv_2tsv_flush(struct static_buff *b) { fwrite(b->buff, b->used, 1, b->stream); b->used = 0; } static inline void zsv_2tsv_write(struct static_buff *b, const unsigned char *s, size_t n) { if (n) { if (VERY_UNLIKELY(n + b->used > ZSV_2TSV_BUFF_SIZE)) { zsv_2tsv_flush(b); if (VERY_UNLIKELY(n > ZSV_2TSV_BUFF_SIZE)) { // n too big, so write directly fwrite(s, n, 1, b->stream); return; } } // n + used < buff size memcpy(b->buff + b->used, s, n); b->used += n; } } // zsv_to_tsv(): convert, if necessary, to text suitable for tab-delimited output. // - return NULL if nothing to convert // - else, return allocated char * of converted tsv (caller must free), and update *lenp // - on error, set *err __attribute__((always_inline)) static inline unsigned char *zsv_to_tsv(const unsigned char *utf8, size_t *len, enum zsv_2tsv_status *err, char convert_to_space) { // replace tab, newline and lf with \t, \n or \r or backslash size_t do_convert = 0; for (size_t i = 0; i < *len; i++) { if (UNLIKELY(utf8[i] == '\t' || utf8[i] == '\n' || utf8[i] == '\r' || utf8[i] == '\\')) do_convert++; } if (LIKELY(do_convert == 0)) return NULL; unsigned char *converted = malloc(*len + do_convert + 1); if (!converted) *err = zsv_2tsv_status_out_of_memory; else { size_t j = 0; for (size_t i = 0; i < *len; i++) { if (UNLIKELY(utf8[i] == '\t' || utf8[i] == '\n' || utf8[i] == '\r' || utf8[i] == '\\')) { if (convert_to_space) converted[j++] = utf8[i] == '\\' ? '\\' : ' '; else { converted[j++] = '\\'; converted[j++] = utf8[i] == '\t' ? 't' : utf8[i] == '\n' ? 'n' : utf8[i] == '\r' ? 'r' : '\\'; } } else converted[j++] = utf8[i]; } converted[j] = '\0'; *len = j; } return converted; } __attribute__((always_inline)) static inline void zsv_2tsv_cell(struct zsv_2tsv_data *data, unsigned char *utf8_value, size_t len, char no_newline_or_slash, char convert_to_space) { // output cell contents (converted if necessary) if (len) { enum zsv_2tsv_status err = zsv_2tsv_status_ok; if (VERY_LIKELY(no_newline_or_slash && !memchr(utf8_value, '\t', len))) { zsv_2tsv_write(&data->out, utf8_value, len); return; } // if we're here, there either definitely an embedded tab, or maybe an embedded \n or \r unsigned char *converted = zsv_to_tsv(utf8_value, &len, &err, convert_to_space); if (converted != NULL) { zsv_2tsv_write(&data->out, converted, len); free(converted); } else if (UNLIKELY(err)) fprintf(stderr, "Out of memory!\n"); else zsv_2tsv_write(&data->out, utf8_value, len); } } static void zsv_2tsv_row(void *ctx) { struct zsv_2tsv_data *data = ctx; unsigned int cols = zsv_cell_count(data->parser); if (cols) { struct zsv_cell cell = zsv_get_cell(data->parser, 0); struct zsv_cell end = zsv_get_cell(data->parser, cols - 1); unsigned char *start = cell.str; size_t row_len = end.str + end.len - start; char no_newline_or_slash = 0; if (LIKELY(!(memchr(start, '\n', row_len) || memchr(start, '\r', row_len) || memchr(start, '\\', row_len)))) no_newline_or_slash = 1; const char convert_to_space = data->convert_to_space; zsv_2tsv_cell(ctx, cell.str, cell.len, no_newline_or_slash, convert_to_space); for (unsigned int i = 1; i < cols; i++) { zsv_2tsv_write(&data->out, (const unsigned char *)"\t", 1); cell = zsv_get_cell(data->parser, i); zsv_2tsv_cell(ctx, cell.str, cell.len, no_newline_or_slash, convert_to_space); } } zsv_2tsv_write(&data->out, (const unsigned char *)"\n", 1); } int zsv_2tsv_usage(int rc) { static const char *zsv_2tsv_usage_msg[] = { APPNAME ": convert CSV to TSV (tab-delimited text) suitable for simple-delimiter", " text processing. By default, embedded tabs or multilines will be escaped", " to \\t, \\n or \\r, respectively", "", "Usage: " APPNAME " [filename] [options]", " e.g. " APPNAME " < file.csv > file.tsv", "", "Options:", " -o : save output to ", " --convert-to-space: convert embedded \\t, \\n or \\r to space", NULL, }; for (size_t i = 0; zsv_2tsv_usage_msg[i]; i++) fprintf(stdout, "%s\n", zsv_2tsv_usage_msg[i]); return rc; } int ZSV_MAIN_FUNC(ZSV_COMMAND)(int argc, const char *argv[], struct zsv_opts *optsp, struct zsv_prop_handler *custom_prop_handler) { struct zsv_opts opts = *optsp; struct zsv_2tsv_data data = {0}; const char *input_path = NULL; int err = 0; for (int i = 1; !err && i < argc; i++) { if (!strcmp(argv[i], "--help") || !strcmp(argv[i], "-h")) return zsv_2tsv_usage(0); if (!strcmp(argv[i], "--convert-to-space")) data.convert_to_space = 1; else if (!strcmp(argv[i], "-o") || !strcmp(argv[i], "--output")) { if (++i >= argc) fprintf(stderr, "%s option requires a filename value\n", argv[i - 1]), err = 1; else if (data.out.stream && data.out.stream != stdout) fprintf(stderr, "Output file specified more than once\n"), err = 1; else if (!(data.out.stream = fopen(argv[i], "wb"))) fprintf(stderr, "Unable to open for writing: %s\n", argv[i]), err = 1; } else { if (opts.stream) fprintf(stderr, "Input file specified more than once\n"), err = 1; else if (!(opts.stream = fopen(argv[i], "rb"))) fprintf(stderr, "Unable to open for reading: %s\n", argv[i]), err = 1; else input_path = argv[i]; } } if (err) { goto exit_2tsv; } if (!opts.stream) { #ifdef NO_STDIN fprintf(stderr, "Please specify an input file\n"); err = 1; goto exit_2tsv; #else opts.stream = stdin; #endif } if (!data.out.stream) data.out.stream = stdout; opts.row_handler = zsv_2tsv_row; opts.ctx = &data; if (zsv_new_with_properties(&opts, custom_prop_handler, input_path, &data.parser) == zsv_status_ok) { char output[ZSV_2TSV_BUFF_SIZE]; data.out.buff = output; zsv_handle_ctrl_c_signal(); enum zsv_status status; while (!zsv_signal_interrupted && (status = zsv_parse_more(data.parser)) == zsv_status_ok) ; zsv_finish(data.parser); zsv_delete(data.parser); zsv_2tsv_flush(&data.out); } exit_2tsv: if (opts.stream && opts.stream != stdin) fclose(opts.stream); if (data.out.stream && data.out.stream != stdout) fclose(data.out.stream); return err; } zsv-1.3.0/app/Makefile000066400000000000000000000474171511312357700145770ustar00rootroot00000000000000# Makefile for use with GNU make THIS_MAKEFILE_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) CONFIGFILE ?= ../config.mk $(info Using config file ${CONFIGFILE}) CONFIGFILEPATH:=$(shell ls ${CONFIGFILE} >/dev/null 2>/dev/null && realpath ${CONFIGFILE}) ifeq ($(CONFIGFILEPATH),) ifeq ($(shell dirname ${CONFIGFILE}),.) CONFIGFILEPATH:=$(shell ls ../${CONFIGFILE} >/dev/null 2>/dev/null && realpath ../${CONFIGFILE}) ifneq ($(CONFIGFILEPATH),) $(info Config file ${CONFIGFILE} not found; using ../${CONFIGFILE}) endif endif endif ifeq ($(CONFIGFILEPATH),) $(error Config file ${CONFIGFILE} not found) else include ${CONFIGFILEPATH} endif CC ?= cc CFLAGS_EXE ?= LIB_SUFFIX= LIBZSV_L=-lzsv${LIB_SUFFIX} LIBZSV_A=libzsv${LIB_SUFFIX}.a LIBZSV=${BUILD_DIR}/lib/${LIBZSV_A} LIBZSV_INSTALL=${LIBDIR}/${LIBZSV_A} # if we are incorporating these commands into another project, we might # want to use different values for ZSV_TEMPFILE_SUFFIX and ZSV_CACHE_PREFIX # to do: set these in the configure script ifneq ($(ZSV_TEMPFILE_SUFFIX),) CFLAGS+= -DZSV_TEMPFILE_SUFFIX='${ZSV_TEMPFILE_SUFFIX}' endif ifneq ($(ZSV_CACHE_PREFIX),) CFLAGS+= -DZSV_CACHE_PREFIX='${ZSV_CACHE_PREFIX}' endif CFLAGS+=-fsigned-char ifneq ($(WIN),) CFLAGS+= -Wno-incompatible-pointer-types LIBS+=-lShlwapi endif ifneq ($(ZSV_IS_PROP_FILE_HANDLER),) CFLAGS+=-DZSV_IS_PROP_FILE_HANDLER=${ZSV_IS_PROP_FILE_HANDLER} endif ifneq ($(ZSV_IS_PROP_FILE_DEPTH),) CFLAGS+=-DZSV_IS_PROP_FILE_DEPTH=${ZSV_IS_PROP_FILE_DEPTH} endif ifeq ($(ZSV_NO_ONLY_CRLF),1) CFLAGS+= -DZSV_NO_ONLY_CRLF endif DEBUG=0 WIN= ifeq ($(WIN),) WIN=0 ifneq ($(findstring w64,$(CC)),) # e.g. mingw64 WIN=1 endif endif MORE_OBJECTS= NO_LTO=0 ifeq ($(DEBUG),1) NO_LTO=1 DBG_SUBDIR+=dbg else DBG_SUBDIR+=rel endif ifeq ($(NO_LTO),1) CFLAGS+= -fno-lto else CFLAGS+=${CFLAGS_LTO} LDFLAGS_OPT+= ${LDFLAGS_OPT_LTO} endif NO_STDIN= ifeq ($(NO_STDIN),1) CFLAGS+= -DNO_STDIN endif CFLAGS+= ${CFLAGS_PIC} CONFIGURE_HOST?= ifeq ($(CONFIGURE_HOST),) ifneq ($(HOST),) CONFIGURE_HOST=$(HOST) endif endif ifeq ($(WIN),0) BUILD_SUBDIR=$(shell uname)/${DBG_SUBDIR} EXE= ifneq ($(findstring emcc,$(CC)),) # emcc NO_THREADING ?= 1 NO_PLAYGROUND ?= 1 EXE=.em.js ifeq ($(NO_PLAYGROUND),0) # wasm playground LDFLAGS += -sEXPORTED_RUNTIME_METHODS="['callMain']" -sINVOKE_RUN=0 -sALLOW_MEMORY_GROWTH=1 else CFLAGS += -DNO_PLAYGROUND LDFLAGS += -sEXPORTED_FUNCTIONS="['_free','_malloc']" LDFLAGS += -sEXPORTED_RUNTIME_METHODS="['setValue','allocateUTF8','stringToUTF8Array','lengthBytesUTF8','writeArrayToMemory']" LDFLAGS += -sRESERVED_FUNCTION_POINTERS=4 -sALLOW_MEMORY_GROWTH=1 endif LDFLAGS += -sFORCE_FILESYSTEM=1 -lidbfs.js -sMAIN_MODULE ifneq ($(NO_THREADING),1) CFLAGS+=-pthread LDFLAGS += -sUSE_PTHREADS=1 -sPTHREAD_POOL_SIZE=2 endif endif else BUILD_SUBDIR=win/${DBG_SUBDIR} EXE=.exe CFLAGS+= -D__USE_MINGW_ANSI_STDIO -D_ISOC99_SOURCE -D_GNU_SOURCE CFLAGS+= -Wl,--strip-all CONFIGURE_HOST=x86_64-w64-mingw32 CFLAGS+=-Dsetenv\(a,b,c\)=_putenv_s\(a,b\) endif JQ_CONFIGURE_HOST= ifneq ($(CONFIGURE_HOST),) JQ_CONFIGURE_HOST=--host=$(CONFIGURE_HOST) endif CFLAGS+=-std=gnu11 CFLAGS+=-Wunused CFLAGS_O ?= ifeq ($(CFLAGS_O),) ifeq ($(DEBUG),0) CFLAGS_O=-O3 else CFLAGS_O=-O0 endif endif CFLAGS+=${CFLAGS_O} CFLAGS+=-Wshadow -Wall -Wextra ifeq ($(DEBUG),0) CFLAGS+=-DNDEBUG -Wno-gnu-statement-expression -Wno-missing-braces -pedantic -DSTDC_HEADERS -D_GNU_SOURCE ${CFLAGS_OPT} #-ftree-vectorize ifeq ($(PGO),1) CFLAGS+= -fprofile-generate -fprofile-dir=/tmp/p4 else ifeq ($(PGO),2) CFLAGS+= -fprofile-use=/tmp/p4 else $(echo "No profiling set. To use PGO, compile with PGO=1, then run with data, then compile again with PGO=2") endif endif else CFLAGS += ${CFLAGS_DEBUG} endif CCBN=$(shell basename ${CC}) CFLAGS+= -I${PREFIX}/include THIS_LIB_BASE:=$(shell cd .. && pwd) INCLUDE_DIR:=${THIS_LIB_BASE}/include BUILD_DIR:=${THIS_LIB_BASE}/build/${BUILD_SUBDIR}/${CCBN} UTILS1=writer file err signal mem clock arg dl string dirs prop cache jq os index chunk ZSV_EXTRAS ?= ifneq ($(findstring emcc,$(CC)),) # emcc ZSV_EXTRAS=1 UTILS1+=emcc/fs_api ifneq ($(NO_THREADING),1) LDFLAGS+=-pthread endif else # not emcc CFLAGS+= ${CFLAGS_AVX} ${CFLAGS_SSE} LDFLAGS+=-lpthread # Linux explicitly requires endif ifeq ($(ZSV_EXTRAS),1) UTILS1+= overwrite overwrite_writer endif UTILS=$(addprefix ${BUILD_DIR}/objs/utils/,$(addsuffix .o,${UTILS1})) ifeq ($(NO_THREADING),1) CFLAGS+= -DNO_THREADING ZSV_NO_PARALLEL=1 endif ifeq ($(ZSV_NO_PARALLEL),1) CFLAGS+=-DZSV_NO_PARALLEL endif ifeq ($(ZSV_EXTRAS),1) CFLAGS+= -DZSV_EXTRAS endif OBJECTS=${UTILS} ifeq ($(NO_MEMMEM),1) OBJECTS+= ${BUILD_DIR}/objs/utils/memmem.o CFLAGS+=-DNO_MEMMEM UTIL_A_OBJ_WIN=memmem endif ZSV=$(BINDIR)/zsv${EXE} SOURCES=echo paste check count count-pull select select-pull 2tsv 2json serialize flatten pretty stack desc sql 2db compare prop rm mv jq ifeq ($(ZSV_EXTRAS),1) SOURCES+=overwrite endif CLI_SOURCES=echo select desc count paste check 2tsv pretty sql flatten 2json serialize stack 2db compare prop rm mv jq ifeq ($(ZSV_EXTRAS),1) CLI_SOURCES+=overwrite endif ifeq ($(ZSVSHEET_BUILD),1) SOURCES+=sheet CLI_SOURCES+=sheet CFLAGS+=-DZSVSHEET_BUILD CFLAGS+=${CFLAGS_NCURSES} LDFLAGS+=${LDFLAGS_NCURSES} endif CFLAGS+= -DUSE_JQ STATIC_LIB_FLAGS= ifeq ($(STATIC_BUILD),1) STATIC_LIB_FLAGS=${LDFLAGS_STATIC} else ifneq ($(STATIC_LIBS),) STATIC_LIB_FLAGS=${LDFLAGS_STATIC} endif endif STANDALONE_PFX=${BUILD_DIR}/bin/zsv_ TARGETS=$(addprefix ${STANDALONE_PFX},$(addsuffix ${EXE},${SOURCES})) ${CLI} BUILDS=$(addprefix build-,${SOURCES}) CLEANS=$(addprefix clean-,${SOURCES}) ## cli VERSION= $(shell (git describe --always --dirty --tags 2>/dev/null || echo "v0.0.0-zsv") | sed 's/^v//') CLI_OBJ_PFX=${BUILD_DIR}/objs/cli_ CLI_APP_OBJECT=${CLI_OBJ_PFX}cli.o CLI=${BUILD_DIR}/bin/cli${EXE} ifneq ($(findstring emcc,$(CC)),) # emcc CLI_ADDITIONAL=${BUILD_DIR}/bin/cli.em.wasm endif CLI_OBJECTS=$(addprefix ${CLI_OBJ_PFX},$(addsuffix .o,${CLI_SOURCES})) CFLAGS+=${CFLAGS_AUTO} ifeq ($(VERBOSE),1) CFLAGS+= ${CFLAGS_VECTORIZE_OPTIMIZED} ${CFLAGS_VECTORIZE_MISSED} ${CFLAGS_VECTORIZE_ALL} endif INIH_SRC=${THIS_MAKEFILE_DIR}/external/inih INIH_INCLUDE=${THIS_MAKEFILE_DIR}/external/inih INIH_OBJECT=${BUILD_DIR}-external/inih/inih.o CLI_INCLUDE+= -I${INIH_INCLUDE} YAJL_SRC_DIR=${THIS_MAKEFILE_DIR}/external/yajl YAJL_OBJ1=yajl yajl_alloc yajl_buf yajl_encode yajl_gen yajl_lex yajl_parser yajl_tree yajl_version YAJL_OBJ=$(addprefix ${BUILD_DIR}-external/yajl/,$(addsuffix .o,${YAJL_OBJ1})) YAJL_INCLUDE=-I${YAJL_SRC_DIR}/build/yajl-2.1.1/include YAJL_HELPER_OBJ=${BUILD_DIR}-external/yajl_helper/yajl_helper.o YAJL_HELPER_INCLUDE=-I${THIS_MAKEFILE_DIR}/external/yajl_helper CFLAGS+=${YAJL_HELPER_INCLUDE} ${YAJL_INCLUDE} # jq JQ_TARBALL=${THIS_MAKEFILE_DIR}/external/jq-1.6.tar.gz JQ_SRC=${BUILD_DIR}-external/jq-src JQ_PREFIX ?= ifeq ($(JQ_PREFIX),) JQ_PREFIX=${BUILD_DIR}-external/jq-build JQ_INCLUDE_DIR=${JQ_PREFIX}/include JQ_BUNDLE_LIB=${JQ_PREFIX}/lib/libjq.a JQ_LIB=${JQ_BUNDLE_LIB} else JQ_INCLUDE_DIR=${JQ_PREFIX}/include JQ_LIB= endif ## json writer JSONWRITER_SRC=${THIS_MAKEFILE_DIR}/external/json_writer-1.01 JSONWRITER_INCLUDE=-I${THIS_MAKEFILE_DIR}/external/json_writer-1.01 JSONWRITER_OBJECT=${BUILD_DIR}-external/json_writer-1.01/jsonwriter.o ## memfile MEMFILE_SRC=${THIS_MAKEFILE_DIR}/external/memfile-1.0/src MEMFILE_INCLUDE=-I${THIS_MAKEFILE_DIR}/external/memfile-1.0/include MEMFILE_OBJECT=${BUILD_DIR}-external/memfile-1.0/memfile.o ## utf8proc UTF8PROC_SRC=${THIS_MAKEFILE_DIR}/external/utf8proc-2.6.1 UTF8PROC_INCLUDE=${THIS_MAKEFILE_DIR}/external/utf8proc-2.6.1 UTF8PROC_OBJECT=${BUILD_DIR}-external/utf8proc-2.6.1/utf8proc.o CFLAGS+= -I${UTF8PROC_INCLUDE} -DUTF8PROC -DUTF8PROC_STATIC # sqlite3 SQLITE_SRC=${THIS_MAKEFILE_DIR}/external/sqlite3/sqlite3*.c SQLITE_EXT=${BUILD_DIR}-external/sqlite3/sqlite3_and_csv_vtab.o SQLITE_EXT_INCLUDE=-I${THIS_MAKEFILE_DIR}/external/sqlite3 SQL_INTERNAL_OBJECT=${BUILD_DIR}/objs/sql_internal.o # everything uses prop, which in turn uses yajl and jq and json and sqlite3 OBJECTS+= ${YAJL_OBJ} ${YAJL_HELPER_OBJ} ${BUILD_DIR}/objs/utils/json.o ${SQLITE_EXT} MORE_SOURCE+= ${YAJL_INCLUDE} ${YAJL_HELPER_INCLUDE} -I${JQ_INCLUDE_DIR} ${SQLITE_EXT_INCLUDE} MORE_LIBS+=${JQ_LIB} ${LDFLAGS_JQ} help: @echo "To build: ${MAKE} [DEBUG=1] [STATIC_BUILD=1] [clean] [clean-all] [BINDIR=${BINDIR}] [JQ_PREFIX=/usr/local] " @echo @echo "If JQ_PREFIX is not defined, libjq will be built in the build dir" @echo "If STATIC_BUILD is set to 1, will build with -static flag, if the compiler supports it" @echo @echo "To build and test individual apps, run:" @echo " ${MAKE} test" @echo "which will build and test all apps, or to build/test a single app:" @echo " ${MAKE} test-xx" @echo "where xx is any of:" @echo " echo count count-pull paste check select select-pull 2tsv 2json serialize flatten pretty stack desc sql 2db prop rm mv overwrite" @echo "" @echo "To run benchmarks:" @echo " ${MAKE} benchmark" @echo "" install: ${ZSV} benchmark: ${STANDALONE_PFX}select${EXE} ${STANDALONE_PFX}count${EXE} ${STANDALONE_PFX}2tsv${EXE} make -C benchmark all uninstall-all: uninstall uninstall-util-lib uninstall: rm -rf ${ZSV} ZSV_UTIL_A=${LIBDIR}/libzsvutil.a ${ZSV_UTIL_A}:SQLITE_EXT= ${ZSV_UTIL_A}:SQLITE_EXT_INCLUDE= ${ZSV_UTIL_A}: ${BUILD_DIR}/objs/utils/util.a @mkdir -p `dirname $@` cp -p $< $@ UTIL_A_OBJ:=writer file dirs-no-jq os ${UTIL_A_OBJ_WIN} UTIL_A_OBJ:=$(addprefix ${BUILD_DIR}/objs/utils/,$(addsuffix .o,${UTIL_A_OBJ})) ${BUILD_DIR}/objs/utils/util.a: ${UTIL_A_OBJ} $(AR) rcv $@ $^ # $? $(RANLIB) $@ $(AR) -t $@ # check it is there @echo Built $@ uninstall-util-lib: @rm -f ${ZSV_UTIL_A} install-util-lib: ${ZSV_UTIL_A} build: ${CLI} all: ${TARGETS} ${LIBZSV_INSTALL}: ${MAKE} -C ../src CONFIGFILE=${CONFIGFILEPATH} install DEBUG=${DEBUG} ${ZSV}: ${CLI} @mkdir -p `dirname "$@"` ifneq ($(findstring emcc,$(CC)),) # emcc cp -p $< `dirname "$@"`/ cp -p ${CLI_ADDITIONAL} `dirname "$@"`/ else cp -p $< $@ endif cli: build-cli build-cli: ${CLI} clean-cli: @rm -f ${CLI_APP_OBJECT} ${CLI_OBJECTS} ${BUILDS}: build-%: ${STANDALONE_PFX}%${EXE} @echo Built ${STANDALONE_PFX}$*${EXE} ${CLEANS}: clean-%: rm -f ${STANDALONE_PFX}$*${EXE} rm -f ${BUILD_DIR}/*/*$*.o .PHONY: all install cli build build-% clean clean-% test test-% lib-% check install-util-lib uninstall-util-lib clean-util-lib .SECONDARY: ${OBJECTS} .POSIX: .SUFFIXES: .SUFFIXES: .o .c .a ${BUILD_DIR}/objs/sql_internal.o ${BUILD_DIR}/objs/utils/index.o ${BUILD_DIR}/objs/utils/chunk.o: ${BUILD_DIR}/objs/%.o: %.c %.h # ${BUILD_DIR}/objs/%.o: %.c %.h @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -I${INCLUDE_DIR} -o $@ -c $< ${BUILD_DIR}/objs/utils/%.o : utils/%.c ${INCLUDE_DIR}/zsv/utils/%.h ${JQ_LIB} @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -I${INCLUDE_DIR} -I${UTF8PROC_INCLUDE} -DINCLUDE_SRC -o $@ -c utils/$*.c ${MORE_SOURCE} ${BUILD_DIR}/objs/utils/dirs-no-jq.o : utils/dirs.c ${INCLUDE_DIR}/zsv/utils/dirs.h @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -I${INCLUDE_DIR} -I${UTF8PROC_INCLUDE} -DINCLUDE_SRC -o $@ -c utils/dirs-no-jq.c ${MORE_SOURCE} ${BUILD_DIR}/objs/zsv_%.o: %.c @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -I${INCLUDE_DIR} -I${UTF8PROC_INCLUDE} -c $< -o $@ ${UTF8PROC_OBJECT}: ${UTF8PROC_SRC}/utf8proc.c @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -I${UTF8PROC_INCLUDE} -c ${UTF8PROC_SRC}/utf8proc.c -o $@ ${INIH_OBJECT}: ${INIH_SRC}/ini.c @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -I${INIH_INCLUDE} -DINI_HANDLER_LINENO=1 -DINI_CALL_HANDLER_ON_NEW_SECTION=1 -c $< -o $@ ${CLI_APP_OBJECT} : cli_ini.c builtin/*.c ${JQ_LIB} ${CLI_APP_OBJECT} ${CLI_OBJECTS}: ${CLI_OBJ_PFX}%.o: %.c ${UTF8PROC_SRC}/utf8proc.c # ${MORE_OBJECTS} @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -DVERSION=\"${VERSION}\" -DZSV_CLI ${CLI_INCLUDE} ${MEMFILE_INCLUDE} -I${THIS_MAKEFILE_DIR}/external/sglib -I${INCLUDE_DIR} -I${UTF8PROC_INCLUDE} -c $< -o $@ ${MORE_SOURCE} ${CLI}: cli_internal.c.in cli_internal.h cli_internal.h.in ${CLI_APP_OBJECT} ${CLI_OBJECTS} ${OBJECTS} ${UTF8PROC_OBJECT} cli_ini.c ${INIH_OBJECT} ${LIBZSV_INSTALL} ${MORE_OBJECTS} ${SQL_INTERNAL_OBJECT} @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} ${CFLAGS_EXE} -I${INCLUDE_DIR} -o $@ ${CLI_APP_OBJECT} ${CLI_OBJECTS} ${OBJECTS} ${UTF8PROC_OBJECT} ${INIH_OBJECT} -L${LIBDIR} ${LIBZSV_L} ${LDFLAGS} ${LDFLAGS_OPT} ${MORE_OBJECTS} ${MORE_SOURCE} ${MORE_LIBS} ${STATIC_LIB_FLAGS} @echo Built $@ cli_internal.h.in: ${THIS_MAKEFILE_DIR}/../include/zsv/ext/implementation_private.h cat $< | awk '/ZSV_EXT_EXPORT/,/;/' | sed 's/ZSV_EXT_EXPORT *//g' | sed $$'s/ *;.*/;\\\n/' | sed 's/(/)(/' | sed 's/zsv_ext_\([a-z]*\))/(*\1)/' | grep -v '^$$' > $@ cli_internal.c.in: cli_internal.h.in cat cli_internal.h.in | sed 's/\(.*(\*\)\([^)]*\)\(.*\);/zsv_ext_func_assign((\1\3), \2);/' > $@ ${SQLITE_EXT}: ${SQLITE_SRC} # ${JQ_INCLUDE_DIR}: ${JQ_LIB} ${JQ_SRC}: ${JQ_TARBALL} @rm -rf $@-tmp @mkdir -p $@-tmp cd $@-tmp && tar xf ${JQ_TARBALL} mv $@-tmp/jq-1.6 $@ rm -rf $@-tmp lib-jq: ${JQ_LIB} @echo "Using jq library ${JQ_LIB}" ${JQ_BUNDLE_LIB}: ${JQ_SRC} # -D_REENTRANT needed for clang to not break @if [ -e ${JQ_SRC}-conf ]; then \ rm -rf ${JQ_SRC}-conf; \ fi # copy the directory because its timestamp gets updated after libjq is built @cp -a ${JQ_SRC} ${JQ_SRC}-conf cd ${JQ_SRC}-conf \ && CC="${CC}" CFLAGS="${CFLAGS} -w -D_REENTRANT" ./configure \ --prefix="${JQ_PREFIX}" \ --disable-maintainer-mode \ --without-oniguruma \ --no-recursion \ --disable-docs \ --disable-shared \ --enable-static \ ${JQ_CONFIGURE_HOST} \ && (${MAKE} install -k) ${JSONWRITER_OBJECT}: ${JSONWRITER_SRC}/jsonwriter.c @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} ${JSONWRITER_INCLUDE} -DINCLUDE_UTILS $< -c -o $@ ${MEMFILE_OBJECT}: ${MEMFILE_SRC}/memfile.c @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} ${MEMFILE_INCLUDE} -DINCLUDE_UTILS $< -c -o $@ # sglib MORE_SOURCE+=-I${THIS_MAKEFILE_DIR}/external/sglib # 2json, desc, compare, flatten use jsonwriter ${CLI} ${STANDALONE_PFX}2json${EXE} ${STANDALONE_PFX}desc${EXE} ${STANDALONE_PFX}compare${EXE} ${STANDALONE_PFX}flatten${EXE}: ${JSONWRITER_OBJECT} ${CLI} ${STANDALONE_PFX}2json${EXE} ${STANDALONE_PFX}desc${EXE} ${STANDALONE_PFX}compare${EXE} ${STANDALONE_PFX}flatten${EXE}: MORE_OBJECTS+= ${JSONWRITER_OBJECT} ${STANDALONE_PFX}2json${EXE} ${CLI_OBJ_PFX}2json.o ${STANDALONE_PFX}desc${EXE} ${CLI_OBJ_PFX}desc.o ${STANDALONE_PFX}compare${EXE} ${CLI_OBJ_PFX}compare.o ${STANDALONE_PFX}flatten${EXE} ${CLI_OBJ_PFX}flatten.o: MORE_SOURCE+=${JSONWRITER_INCLUDE} ${SQLITE_EXT_INCLUDE} ifeq ($(USE_SIMDUTF),1) CFLAGS+=-DUSE_SIMDUTF SIMDUTF_OBJECT=${BUILD_DIR}/check/simdutf_wrapper.o ${SIMDUTF_OBJECT}: check/simdutf_wrapper.cpp @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -std=c++17 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -c check/simdutf_wrapper.cpp -o $@ ${CLI} ${STANDALONE_PFX}check${EXE}: ${SIMDUTF_OBJECT} ${CLI} ${STANDALONE_PFX}check${EXE}: MORE_OBJECTS+=${SIMDUTF_OBJECT} -lstdc++ endif # check if we are on arm64 ifeq ($(ARM64),) ifneq ($(shell uname -a | grep Darwin | grep arm64),) ARM64=1 endif endif # CLI, select and sheet use PCRE2-8 BULITIN_PCRE2_PREFIX=${BUILD_DIR}-external/pcre2 ifeq ($(HAVE_PCRE2_8),1) NO_PCRE2_JIT= # TO DO: make PCRE2_STATIC a configure option / detection PCRE2_STATIC=1 CFLAGS+=-DHAVE_PCRE2_8 # add dependency ${CLI} ${STANDALONE_PFX}select${EXE} ${STANDALONE_PFX}sheet${EXE}: ${BUILD_DIR}/objs/utils/pcre2-8/pcre2-8.o PCRE2_LIB=-lpcre2-8 ifeq ($(PCRE2_STATIC),1) CFLAGS+= -DPCRE2_STATIC ifeq ($(PCRE2_8_PREFIX),builtin) PCRE2_8_PREFIX=${BULITIN_PCRE2_PREFIX} # add dependency ${CLI} ${STANDALONE_PFX}select${EXE} ${STANDALONE_PFX}sheet${EXE}: ${PCRE2_8_PREFIX}/lib/libpcre2-8.a endif PCRE2_LIB=${PCRE2_8_PREFIX}/lib/libpcre2-8.a endif ifeq ($(NO_PCRE2_JIT),) ifeq ($(ARM64),1) # see https://github.com/zherczeg/sljit/issues/99 NO_PCRE2_JIT=1 endif endif ifeq ($(NO_PCRE2_JIT),1) CFLAGS+=-DNO_PCRE2_JIT endif LDFLAGS_PCRE2_8= INCLUDE_PCRE2_8=${PREFIX}/include ifneq ($(PCRE2_8_PREFIX),$(PREFIX)) ifneq ($(PCRE2_STATIC),1) LDFLAGS_PCRE2_8=-L${PCRE2_8_PREFIX}/lib endif INCLUDE_PCRE2_8=${PCRE2_8_PREFIX}/include endif ${CLI} ${STANDALONE_PFX}select${EXE} ${STANDALONE_PFX}sheet${EXE}: MORE_LIBS+=${BUILD_DIR}/objs/utils/pcre2-8/pcre2-8.o ${LDFLAGS_PCRE2_8} ${PCRE2_LIB} endif # pcre2-8.o actually only needs ${PCRE2_8_PREFIX}/include/pcre2.h, but if we are using builtin pcre2, then # that will only exist after the builtin library has been built ifeq ($(PCRE2_8_PREFIX),$(BULITIN_PCRE2_PREFIX)) PCRE2_8_O_DEP=${PCRE2_8_PREFIX}/lib/libpcre2-8.a else PCRE2_8_O_DEP= endif ${BUILD_DIR}/objs/utils/pcre2-8/pcre2-8.o: ${BUILD_DIR}/objs/utils/%.o : utils/%.c utils/%.h ${PCRE2_8_O_DEP} @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -I${INCLUDE_PCRE2_8} -o $@ -c utils/$*.c ${BULITIN_PCRE2_PREFIX}/lib/libpcre2-8.a: ${MAKE} -C external -f ${CONFIGFILEPATH} -f build.mk $@ BUILD_DIR=${BUILD_DIR} CONFIGURE_HOST=${CONFIGURE_HOST} # utils/db uses jsonwriter ${BUILD_DIR}/objs/utils/db.o : MORE_SOURCE+= ${JSONWRITER_INCLUDE} ${SQLITE_EXT_INCLUDE} # flatten uses memfile ${CLI} ${STANDALONE_PFX}flatten${EXE}: ${MEMFILE_OBJECT} ${CLI} ${STANDALONE_PFX}flatten${EXE}: MORE_OBJECTS+= ${MEMFILE_OBJECT} ${JSONWRITER_INCLUDE} ${STANDALONE_PFX}flatten${EXE}: MORE_SOURCE+=${MEMFILE_INCLUDE} ${SQLITE_EXT_INCLUDE} # 2json uses utils/db ${CLI} ${STANDALONE_PFX}2json${EXE}: ${BUILD_DIR}/objs/utils/db.o ${CLI} ${STANDALONE_PFX}2json${EXE}: MORE_OBJECTS+= ${BUILD_DIR}/objs/utils/db.o # pretty uses termcap ${CLI} ${STANDALONE_PFX}pretty${EXE}: MORE_LIBS+=${LDFLAGS_TERMCAP} ${CLI} ${STANDALONE_PFX}sheet${EXE} ${STANDALONE_PFX}sql${EXE}: ${SQL_INTERNAL_OBJECT} ${CLI} ${STANDALONE_PFX}sheet${EXE} ${STANDALONE_PFX}sql${EXE}: MORE_OBJECTS+=${SQL_INTERNAL_OBJECT} ${STANDALONE_PFX}%${EXE}: %.c ${OBJECTS} ${MORE_OBJECTS} ${LIBZSV_INSTALL} ${UTF8PROC_OBJECT} @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -I${INCLUDE_DIR} -o $@ $< ${OBJECTS} ${MORE_OBJECTS} ${MORE_SOURCE} -L${LIBDIR} ${LIBZSV_L} ${UTF8PROC_OBJECT} ${LDFLAGS} ${LDFLAGS_OPT} ${MORE_LIBS} ${STATIC_LIB_FLAGS} ${BUILD_DIR}-external/sqlite3/sqlite3_and_csv_vtab.o: ${BUILD_DIR}-external/%.o : external/%.c @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -w -I${INCLUDE_DIR} ${YAJL_INCLUDE} ${YAJL_HELPER_INCLUDE} -o $@ -c $< ${YAJL_OBJ}: ${BUILD_DIR}-external/yajl/%.o : external/yajl/src/%.c @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -w ${YAJL_INCLUDE} -c external/yajl/src/$*.c -o $@ ${YAJL_HELPER_OBJ}: external/yajl_helper/yajl_helper.c @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} ${YAJL_INCLUDE} ${YAJL_HELPER_INCLUDE} -c $< -o $@ check test: test-standalone test-cli test-shared-lib test-shared-lib: @echo "TO DO: create tests for using shared library" test-standalone: @${MAKE} -C test test QUIET=1 LEAKS=${LEAKS} CONFIGFILE=${CONFIGFILEPATH} DEBUG=${DEBUG} test-cli: ${CLI} @${MAKE} -C test $@ QUIET=1 LEAKS=${LEAKS} CONFIGFILE=${CONFIGFILEPATH} DEBUG=${DEBUG} CLI=${CLI} clean-all: clean clean-external clean-obj clean-lib clean-util-lib clean-external: @rm -rf ${JQ_SRC} clean-util-lib: @rm -f ${BUILD_DIR}/objs/utils/util.a clean-lib: @rm -rf ${BUILD_DIR}-external clean: clean-obj clean-internal rm -rf ${BUILD_DIR} ${MAKE} -C test clean CONFIGFILE=${CONFIGFILEPATH} DEBUG=${DEBUG} clean-obj: rm -rf ${BUILD_DIR}/bin ${INIH_OBJECT} ${JSONWRITER_OBJECT} ${UTF8PROC_OBJECT} ${MEMFILE_OBJECT} rm -rf external/utf8proc-2.6.1 clean-internal: $(RM) cli_internal.c.in cli_internal.h.in ${UTF8PROC_SRC}/utf8proc.c ${UTF8PROC_SRC}/utf8proc.h: ${THIS_MAKEFILE_DIR}/external/utf8proc-2.6.1.tar.gz @cd external && tar xf utf8proc-2.6.1.tar.gz && chown -R `whoami` utf8proc-2.6.1 @touch $@ zsv-1.3.0/app/benchmark/000077500000000000000000000000001511312357700150545ustar00rootroot00000000000000zsv-1.3.0/app/benchmark/Makefile000066400000000000000000000460541511312357700165250ustar00rootroot00000000000000# Makefile for use with GNU make CONFIGFILE ?= ../../config.mk $(info # Using config file ${CONFIGFILE}) include ${CONFIGFILE} PULL= COUNT=count SELECT=select ifeq ($(PULL),1) COUNT=count-pull SELECT=select-pull endif CC ?= cc WIN= ifeq ($(WIN),) WIN=0 ifneq ($(findstring w64,$(CC)),) # e.g. mingw64 WIN=1 endif endif ifeq ($(DEBUG),1) REL=dbg else REL=rel endif ifeq ($(WIN),0) BUILD_SUBDIR=$(shell uname)/${REL} else BUILD_SUBDIR=win/${REL} endif CCBN=$(shell basename ${CC}) ZSVBIN=../../build/${BUILD_SUBDIR}/${CCBN}/bin/zsv_ MAKE_BIN=$(notdir ${MAKE}) TSV_UTILS=~/install/tsv-utils/bin HAVE_DUCKDB=$(shell command -v duckdb >/dev/null && echo 1 || echo 0) HAVE_XSV=$(shell command -v xsv >/dev/null && echo 1 || echo 0) HAVE_C2TSV=$(shell command -v c2tsv >/dev/null && echo 1 || echo 0) HAVE_TSVUTILS=$(shell [ -f $(TSV_UTILS)/tsv-select ] && echo 1 || echo 0) HAVE_POLARS=$(shell [ -f venv/bin/activate ] && echo 1 || echo 0) HAVE_TIME_ALL=$(shell command -v /usr/bin/time >/dev/null && echo 1 || echo 0) ifeq ($(TIME_ALL),) ifeq ($(HAVE_TIME_ALL),1) TIME_ALL=1 endif endif ifeq ($(TIME_ALL),1) ALL_SUFFIX=_all ifeq ($(HAVE_TIME_ALL),1) TIMER=/usr/bin/time -l else $(error /usr/bin/time not found) endif else TIMER=time ALL_SUFFIX= endif AWK_SCRIPT=./benchmark${ALL_SUFFIX}.awk DATA_TARGETS=worldcitiespop_big # select-worldcitiespop_mil help: @echo "========================================================================" @echo "Running benchmarks" @echo "------------------------------------------------------------------------" @echo "Generating graphs requires gnuplot, gawk and zsv" @echo " ${MAKE_BIN} graph : run benchmarks and generate graphs" @echo " ${MAKE_BIN} reset : reset saved e.g. results e.g. csv" @echo "------------------------------------------------------------------------" @echo "If /usr/bin/time is available, it will be used with -l to get full metrics" @echo "To only run timing metrics, set TIME_ALL=0 e.g. \`${MAKE_BIN} graph TIME_ALL=0\`" @echo "" @echo "========================================================================" @echo "Other targets:" @echo "------------------------------------------------------------------------" @echo " ${MAKE_BIN} clean : remove all data, intermediate and result files" @echo " ${MAKE_BIN} all [TIME_ALL=0] [PULL=1] [TSV_UTILS=~/install/tsv-utils/bin]" @echo " ${MAKE_BIN} csv : same as all but saves to benchmark.csv" @echo " ${MAKE_BIN} CLI : use CLI instead of standalone command binaries" @echo "========================================================================" @echo "" @echo "------------------------------------------------------------------------" @echo "Tool-specific targets" @echo "------------------------------------------------------------------------" @echo " ${MAKE_BIN} $(addprefix count-,zsv xsv polars duckdb)" @echo " ${MAKE_BIN} $(addprefix select-,zsv xsv polars duckdb)" @echo "" @echo "make all does not actually run everything; you can also run:" @echo " ${MAKE_BIN} tsv" @echo "" CLI: ZSVBIN="zsv " CLI: ${MAKE} all ZSVBIN=${ZSVBIN} -n | sed 's/[.]*\/.*\/bin\/zsv_/zsv /g' | sh all: count select BENCHMARKS_CSV=benchmarks${ALL_SUFFIX}.csv BENCHMARKS_TXT=benchmarks${ALL_SUFFIX}.txt BENCHMARKS_AGG_CSV=benchmarks_agg${ALL_SUFFIX}.csv BENCHMARKS_AGG_SQL=benchmarks_agg${ALL_SUFFIX}.sql csv: ${BENCHMARKS_CSV} @echo "Results saved at $<. To re-run, first run \`make reset\`" csv_average: benchmarks_average${ALL_SUFFIX}.csv @echo "Results saved at $<. To re-run, first run \`make reset\`" ${BENCHMARKS_AGG_CSV}: ${BENCHMARKS_CSV} ${BENCHMARKS_AGG_SQL} cat $< | grep -v tsv-utils | zsv sql "`cat ${BENCHMARKS_AGG_SQL}`" > $@.tmp mv $@.tmp $@ GRAPH_GP=plot_metrics${ALL_SUFFIX} GRAPH_TIME_GP=plot_metrics_time${ALL_SUFFIX} GRAPH_INPUT=/tmp/graph HAVE_GNUPLOT=$(shell command -v gnuplot > /dev/null && echo 1 || echo 0) graph: graph-select graph-count graph-combined graph-count graph-select: graph-%: ${BENCHMARKS_AGG_CSV} ${GRAPH_GP}.gp.in ${GRAPH_TIME_GP}.gp.in ifneq ($(HAVE_GNUPLOT),1) echo "Please install gnuplot" && exit 1 else cat ${GRAPH_GP}.gp.in | sed 's#INPUT_CSV#${GRAPH_INPUT}-$*.csv#g' \ | sed 's/OPERATION/$*/g' > /tmp/${GRAPH_GP}-$*.gp zsv select --search '$*' $< | zsv select --search '_big' > ${GRAPH_INPUT}-$*.csv gnuplot /tmp/${GRAPH_GP}-$*.gp cat ${GRAPH_TIME_GP}.gp.in | sed 's#INPUT_CSV#${GRAPH_INPUT}-$*.csv#g' \ | sed 's/OPERATION/$*/g' > /tmp/${GRAPH_TIME_GP}-$*.gp gnuplot /tmp/${GRAPH_TIME_GP}-$*.gp echo "Generated benchmark_$*_time.png and benchmark_$*_memory.png" endif GRAPH_GP_COMBINED=plot_combined${ALL_SUFFIX} graph-combined: graph-combined-select graph-combined-count graph-combined-select graph-combined-count: graph-combined-%: ${BENCHMARKS_AGG_CSV} ${GRAPH_GP_COMBINED}.gp.in ifneq ($(HAVE_GNUPLOT),1) echo "Please install gnuplot" && exit 1 else cat ${GRAPH_GP_COMBINED}.gp.in \ | sed 's#INPUT_CSV#${GRAPH_INPUT}-combined-$*.csv#g' \ | sed 's#OPERATION#$*#g' \ > /tmp/${GRAPH_GP_COMBINED}-$*.gp head -n1 $< > ${GRAPH_INPUT}-combined-$*.csv grep '$*,worldcitiespop_big' $< >> ${GRAPH_INPUT}-combined-$*.csv gnuplot /tmp/${GRAPH_GP_COMBINED}-$*.gp endif ${BENCHMARKS_TXT}: worldcitiespop.csv ${MAKE} -e all TIME_ALL=${TIME_ALL} | tee $@.tmp @mv $@.tmp $@ ${BENCHMARKS_CSV}: ${BENCHMARKS_TXT} cat $< | ${AWK_SCRIPT} > $@.tmp @mv $@.tmp $@ worldcitiespop_mil.csv: curl -LO 'https://burntsushi.net/stuff/worldcitiespop_mil.csv' worldcitiespop.csv: curl -LO 'https://burntsushi.net/stuff/worldcitiespop.csv' worldcitiespop_big.csv: worldcitiespop.csv cat worldcitiespop.csv > $@.tmp awk ' NR > 1 { print $0 }' < worldcitiespop.csv >> $@.tmp awk ' NR > 1 { print $0 }' < worldcitiespop.csv >> $@.tmp mv $@.tmp $@ worldcitiespop_big.tsv worldcitiespop_mil.tsv: %.tsv : %.csv zsv 2tsv $< > $@.tmp mv $@.tmp $@ count: $(addprefix count-,$(DATA_TARGETS)) count-worldcitiespop_mil count-worldcitiespop_big: count-% : count-intro-% count-zsv-% count-xsv-% count-polars-% count-duckdb-% ### additional convenience targets count-zsv: $(addprefix count-zsv-,$(DATA_TARGETS)) count-xsv: $(addprefix count-xsv-,$(DATA_TARGETS)) count-polars: $(addprefix count-polars-,$(DATA_TARGETS)) count-duckdb: $(addprefix count-duckdb-,$(DATA_TARGETS)) ### $(addprefix count-intro-,$(DATA_TARGETS)): count-intro-% : @echo "-----------------------------------------------" @echo " Benchmarking count: $*" @echo "-----------------------------------------------" count-zsv-worldcitiespop_mil count-zsv-worldcitiespop_big: count-zsv-%: %.csv %.tsv @echo "${ZSVBIN}"${COUNT} @printf "zsv : " @(${TIMER} ${ZSVBIN}${COUNT} < $< > /tmp/zsv-$@.count) 2>&1 | xargs @printf "zsv : " @(${TIMER} ${ZSVBIN}${COUNT} < $< >> /tmp/zsv-$@.count) 2>&1 | xargs @printf "zsv : " @(${TIMER} ${ZSVBIN}${COUNT} < $< >> /tmp/zsv-$@.count) 2>&1 | xargs @echo "" @printf "zsv --parallel : " @(${TIMER} ${ZSVBIN}${COUNT} --parallel $< >/tmp/zsv-parallel-$@.count) 2>&1 | xargs @printf "zsv --parallel : " @(${TIMER} ${ZSVBIN}${COUNT} --parallel $< >>/tmp/zsv-parallel-$@.count) 2>&1 | xargs @printf "zsv --parallel : " @(${TIMER} ${ZSVBIN}${COUNT} --parallel $< >>/tmp/zsv-parallel-$@.count) 2>&1 | xargs @echo "" count-xsv-worldcitiespop_mil count-xsv-worldcitiespop_big: count-xsv-%: %.csv %.tsv ifneq ($(HAVE_XSV),1) @echo "xsv not found: skipping (run \'brew install xsv\' to install)" else @printf "xsv : " @(${TIMER} xsv count < $< > /tmp/xsv-$@.count) 2>&1 | xargs @printf "xsv : " @(${TIMER} xsv count < $< >> /tmp/xsv-$@.count) 2>&1 | xargs @printf "xsv : " @(${TIMER} xsv count < $< >> /tmp/xsv-$@.count) 2>&1 | xargs @echo "" endif count-polars-worldcitiespop_mil count-polars-worldcitiespop_big: count-polars-%: %.csv %.tsv ifneq ($(HAVE_POLARS),1) @echo "polars not found: skipping (run \`make polars-setup\` to set up)" else @printf "polars : " @. ${VENV_ACTIVATE}; (${TIMER} python3 -c 'import polars as pl; print(pl.scan_csv("$<").select(pl.len()).collect().item())' > /tmp/polars-$@.count) 2>&1 | xargs @printf "polars : " @. ${VENV_ACTIVATE}; (${TIMER} python3 -c 'import polars as pl; print(pl.scan_csv("$<").select(pl.len()).collect().item())' >> /tmp/polars-$@.count) 2>&1 | xargs @printf "polars : " @. ${VENV_ACTIVATE}; (${TIMER} python3 -c 'import polars as pl; print(pl.scan_csv("$<").select(pl.len()).collect().item())' >> /tmp/polars-$@.count) 2>&1 | xargs @echo "" @printf "polars-1thread : " @. ${VENV_ACTIVATE}; (POLARS_MAX_THREADS=1 ${TIMER} python3 -c 'import polars as pl; print(pl.scan_csv("$<").select(pl.len()).collect().item())' > /tmp/polars-$@.count) 2>&1 | xargs @printf "polars-1thread : " @. ${VENV_ACTIVATE}; (POLARS_MAX_THREADS=1 ${TIMER} python3 -c 'import polars as pl; print(pl.scan_csv("$<").select(pl.len()).collect().item())' >> /tmp/polars-$@.count) 2>&1 | xargs @printf "polars-1thread : " @. ${VENV_ACTIVATE}; (POLARS_MAX_THREADS=1 ${TIMER} python3 -c 'import polars as pl; print(pl.scan_csv("$<").select(pl.len()).collect().item())' >> /tmp/polars-$@.count) 2>&1 | xargs @echo "" endif count-duckdb-worldcitiespop_mil count-duckdb-worldcitiespop_big: count-duckdb-%: %.csv %.tsv ifneq ($(HAVE_DUCKDB),1) @echo "duckdb not found: skipping" else @printf "duckdb : " @(${TIMER} duckdb -c "SELECT count(*) FROM '$<'" > /tmp/duckdb-$@.count) 2>&1 | xargs @printf "duckdb : " @(${TIMER} duckdb -c "SELECT count(*) FROM '$<'" >> /tmp/duckdb-$@.count) 2>&1 | xargs @printf "duckdb : " @(${TIMER} duckdb -c "SELECT count(*) FROM '$<'" >> /tmp/duckdb-$@.count) 2>&1 | xargs @echo "" @printf "duckdb (QUOTE='') : " @(${TIMER} duckdb -c "SELECT count(*) FROM read_csv('$<',all_varchar=true,quote='')" > /tmp/duckdb-nq-$@.count) 2>&1 | xargs @printf "duckdb (QUOTE='') : " @(${TIMER} duckdb -c "SELECT count(*) FROM read_csv('$<',all_varchar=true,quote='')" >> /tmp/duckdb-nq-$@.count) 2>&1 | xargs @printf "duckdb (QUOTE='') : " @(${TIMER} duckdb -c "SELECT count(*) FROM read_csv('$<',all_varchar=true,quote='')" >> /tmp/duckdb-nq-$@.count) 2>&1 | xargs @echo "" @printf "duckdb-1thread (QUOTE='') : " @(${TIMER} duckdb -c "SET threads=1; SELECT count(*) FROM read_csv('$<',all_varchar=true,quote='')" > /tmp/duckdb-nq-$@.count) 2>&1 | xargs @printf "duckdb-1thread (QUOTE='') : " @(${TIMER} duckdb -c "SET threads=1; SELECT count(*) FROM read_csv('$<',all_varchar=true,quote='')" >> /tmp/duckdb-nq-$@.count) 2>&1 | xargs @printf "duckdb-1thread (QUOTE='') : " @(${TIMER} duckdb -c "SET threads=1; SELECT count(*) FROM read_csv('$<',all_varchar=true,quote='')" >> /tmp/duckdb-nq-$@.count) 2>&1 | xargs @echo "" endif tsv: worldcitiespop_mil.csv @echo "${ZSVBIN}"2tsv @printf "zsv : " @(${TIMER} ${ZSVBIN}2tsv < $< > /dev/null) 2>&1 | xargs @printf "zsv : " @(${TIMER} ${ZSVBIN}2tsv < $< > /dev/null) 2>&1 | xargs @printf "zsv : " @(${TIMER} ${ZSVBIN}2tsv < $< > /dev/null) 2>&1 | xargs @echo "" @printf "tsv-utils (csv2tsv) : " @(${TIMER} ~/install/tsv-utils/bin/csv2tsv < $< > /dev/null) 2>&1 | xargs @printf "tsv-utils (csv2tsv) : " @(${TIMER} ~/install/tsv-utils/bin/csv2tsv < $< > /dev/null) 2>&1 | xargs @printf "tsv-utils (csv2tsv) : " @(${TIMER} ~/install/tsv-utils/bin/csv2tsv < $< > /dev/null) 2>&1 | xargs @echo "" ifneq ($(HAVE_C2TSV),1) @echo "c2tsv not found-- skipping" else @printf "c-blake/nio/c2tsv : " # from https://github.com/c-blake/nio @(${TIMER} c2tsv < $< > /dev/null) 2>&1 | xargs @printf "c-blake/nio/c2tsv : " @(${TIMER} c2tsv < $< > /dev/null) 2>&1 | xargs @printf "c-blake/nio/c2tsv : " @(${TIMER} c2tsv < $< > /dev/null) 2>&1 | xargs endif @echo "" select: $(addprefix select-,$(DATA_TARGETS)) select-worldcitiespop_big select-select-worldcitiespop_mil: select-% : select-intro-% $(addsuffix -%,select-zsv select-xsv select-polars select-duckdb) ### additional convenience targets select-zsv: $(addprefix select-zsv-,$(DATA_TARGETS)) select-xsv: $(addprefix select-xsv-,$(DATA_TARGETS)) select-polars: $(addprefix select-polars-,$(DATA_TARGETS)) select-duckdb: $(addprefix select-duckdb-,$(DATA_TARGETS)) ### select-intro-worldcitiespop_big select-intro-worldcitiespop_mil: select-intro-% : @echo "-----------------------------------------------" @echo " Benchmarking select: $*" @echo "-----------------------------------------------" select-zsv-worldcitiespop_mil select-zsv-worldcitiespop_big: select-zsv-%: %.csv %.tsv @printf "zsv : " @(${TIMER} ${ZSVBIN}${SELECT} -W -n -- 2 1 3-7 < $< > /dev/null) 2>&1 | xargs @printf "zsv : " @(${TIMER} ${ZSVBIN}${SELECT} -W -n -- 2 1 3-7 < $< > /dev/null) 2>&1 | xargs @printf "zsv : " @(${TIMER} ${ZSVBIN}${SELECT} -W -n -- 2 1 3-7 < $< > /dev/null) 2>&1 | xargs @echo "" @printf "zsv --parallel : " @(${TIMER} ${ZSVBIN}${SELECT} --parallel -W -n $< -- 2 1 3-7 > /dev/null) 2>&1 | xargs @printf "zsv --parallel : " @(${TIMER} ${ZSVBIN}${SELECT} --parallel -W -n $< -- 2 1 3-7 > /dev/null) 2>&1 | xargs @printf "zsv --parallel : " @(${TIMER} ${ZSVBIN}${SELECT} --parallel -W -n $< -- 2 1 3-7 > /dev/null) 2>&1 | xargs @echo "" select-xsv-worldcitiespop_mil select-xsv-worldcitiespop_big: select-xsv-%: %.csv %.tsv ifneq ($(HAVE_XSV),1) @echo "xsv not found: skipping (run \'brew install xsv\' to install)" else @printf "xsv : " @(${TIMER} xsv select 2,1,3-7 < $< > /dev/null) 2>&1 | xargs @printf "xsv : " @(${TIMER} xsv select 2,1,3-7 < $< > /dev/null) 2>&1 | xargs @printf "xsv : " @(${TIMER} xsv select 2,1,3-7 < $< > /dev/null) 2>&1 | xargs @echo "" endif select-polars-worldcitiespop_mil select-polars-worldcitiespop_big: select-polars-%: %.csv %.tsv ifneq ($(HAVE_POLARS),1) @echo "polars not found: skipping (run \`make polars-setup\` to set up)" else @printf "polars : " @. ${VENV_ACTIVATE}; (${TIMER} python3 -c 'import polars as pl; pl.scan_csv("$<", infer_schema=False).select(pl.nth(1, 0, 2, 3, 4, 5, 6)).sink_csv("/dev/null")') 2>&1 | xargs @printf "polars : " @. ${VENV_ACTIVATE}; (${TIMER} python3 -c 'import polars as pl; pl.scan_csv("$<", infer_schema=False).select(pl.nth(1, 0, 2, 3, 4, 5, 6)).sink_csv("/dev/null")') 2>&1 | xargs @printf "polars : " @. ${VENV_ACTIVATE}; (${TIMER} python3 -c 'import polars as pl; pl.scan_csv("$<", infer_schema=False).select(pl.nth(1, 0, 2, 3, 4, 5, 6)).sink_csv("/dev/null")') 2>&1 | xargs @echo "" @printf "polars-1thread : " @. ${VENV_ACTIVATE}; (POLARS_MAX_THREADS=1 ${TIMER} python3 -c 'import polars as pl; pl.scan_csv("$<", infer_schema=False).select(pl.nth(1, 0, 2, 3, 4, 5, 6)).sink_csv("/dev/null")') 2>&1 | xargs @printf "polars-1thread : " @. ${VENV_ACTIVATE}; (POLARS_MAX_THREADS=1 ${TIMER} python3 -c 'import polars as pl; pl.scan_csv("$<", infer_schema=False).select(pl.nth(1, 0, 2, 3, 4, 5, 6)).sink_csv("/dev/null")') 2>&1 | xargs @printf "polars-1thread : " @. ${VENV_ACTIVATE}; (POLARS_MAX_THREADS=1 ${TIMER} python3 -c 'import polars as pl; pl.scan_csv("$<", infer_schema=False).select(pl.nth(1, 0, 2, 3, 4, 5, 6)).sink_csv("/dev/null")') 2>&1 | xargs @echo "" endif select-duckdb-worldcitiespop_mil select-duckdb-worldcitiespop_big: select-duckdb-%: %.csv %.tsv ifneq ($(HAVE_DUCKDB),1) @echo "duckdb not found: skipping" else @printf "duckdb : " @(${TIMER} duckdb -c "COPY (from read_csv('$<', all_varchar=true) select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null'") 2>&1 | xargs @printf "duckdb : " @(${TIMER} duckdb -c "COPY (from read_csv('$<', all_varchar=true) select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null'") 2>&1 | xargs @printf "duckdb : " @(${TIMER} duckdb -c "COPY (from read_csv('$<', all_varchar=true) select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null'") 2>&1 | xargs @echo "" @printf "duckdb (QUOTE='') : " @(${TIMER} duckdb -c "COPY (from read_csv('$<', all_varchar=true, quote='') select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null' (quote '')") 2>&1 | xargs @printf "duckdb (QUOTE='') : " @(${TIMER} duckdb -c "COPY (from read_csv('$<', all_varchar=true, quote='') select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null' (quote '')") 2>&1 | xargs @printf "duckdb (QUOTE='') : " @(${TIMER} duckdb -c "COPY (from read_csv('$<', all_varchar=true, quote='') select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null' (quote '')") 2>&1 | xargs @echo "" @printf "duckdb-1thread (QUOTE='') : " @(${TIMER} duckdb -c "SET threads=1; COPY (from read_csv('$<', all_varchar=true, quote='') select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null' (quote '')") 2>&1 | xargs @printf "duckdb-1thread (QUOTE='') : " @(${TIMER} duckdb -c "SET threads=1; COPY (from read_csv('$<', all_varchar=true, quote='') select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null' (quote '')") 2>&1 | xargs @printf "duckdb-1thread (QUOTE='') : " @(${TIMER} duckdb -c "SET threads=1; COPY (from read_csv('$<', all_varchar=true, quote='') select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null' (quote '')") 2>&1 | xargs endif select-tsvutils-worldcitiespop_mil select-tsvutils-worldcitiespop_big: select-tsvutils-%: %.csv %.tsv ifneq ($(HAVE_TSVUTILS),1) @echo "tsv-utils not found: skipping" else @printf "tsv-utils : " @(${TIMER} ${TSV_UTILS}/tsv-select -d, -f 1-7 < $< > /dev/null) 2>&1 | xargs @printf "tsv-utils : " @(${TIMER} ${TSV_UTILS}/tsv-select -d, -f 1-7 < $< > /dev/null) 2>&1 | xargs @printf "tsv-utils : " @(${TIMER} ${TSV_UTILS}/tsv-select -d, -f 1-7 < $< > /dev/null) 2>&1 | xargs endif @echo "" @printf "tsv-utils (tsv input): " @(${TIMER} ${TSV_UTILS}/tsv-select -f 1-7 < $(word 2,$^) > /dev/null) 2>&1 | xargs @printf "tsv-utils (tsv input): " @(${TIMER} ${TSV_UTILS}/tsv-select -f 1-7 < $(word 2,$^) > /dev/null) 2>&1 | xargs @printf "tsv-utils (tsv input): " @(${TIMER} ${TSV_UTILS}/tsv-select -f 1-7 < $(word 2,$^) > /dev/null) 2>&1 | xargs @echo "" select-csvcut-worldcitiespop_mil select-csvcut-worldcitiespop_big: select-csvcut-%: %.csv %.tsv @printf "csvcut : " @(${TIMER} csvcut -c 2,1,3-7 < $< > /dev/null) 2>&1 | xargs @echo "" select-miller-worldcitiespop_mil select-miller-worldcitiespop_big: select-miller-%: %.csv %.tsv @printf "miller (mlr) : " @(${TIMER} mlr --csv cut -o -f City,Country,AccentCity,Region,Population,Latitude,Longitude $< > /dev/null) 2>&1 | xargs @printf "miller (mlr) : " @(${TIMER} mlr --csv cut -o -f City,Country,AccentCity,Region,Population,Latitude,Longitude $< > /dev/null) 2>&1 | xargs @echo "" reset: rm -f benchmarks*.csv benchmarks*.txt *.tmp *.png clean: reset rm -f worldcitiespop_big.csv worldcitiespop_big.tsv worldcitiespop_mil.csv worldcitiespop_mil.tsv worldcitiespop.csv .PHONY: help all count select select-% clean polars-setup csv% tsv% graph% ##### python / polars ifeq ($(OS),Windows_NT) VENV_ACTIVATE=venv/Scripts/activate else VENV_ACTIVATE=venv/bin/activate endif polars-setup: venv/setup-done venv/setup-done: test -d venv || virtualenv venv . ${VENV_ACTIVATE}; pip install polars touch $@ zsv-1.3.0/app/benchmark/README.md000066400000000000000000000177741511312357700163530ustar00rootroot00000000000000# The world's fastest CSV parser Below are benchmark results measuring time and memory usage. To isolate the raw performance of only the parsing engine, these benchmarks use basic `count` and `select`. These tests are designed to measure the core CSV parser only, and not various other CLI features-- other tools compared here are often are far better than `zsv` for those, but when it comes just to CSV parsing, `zsv` is hard to beat. Note: zsv's `--parallel` feature used in some of these tests is available as of version 1.2.0. Earlier versions should exhibit the same performance when run single-threaded (without `--parallel`) ## Benchmark result summaries ### Count image ### Select image ## Setup - MacOS M3 Pro (note: we also ran on Linux (Intel) and the results were consistent with these. If you experience results on any hardware / OS that are materially inconsistent with these, please open an issue) - `/usr/bin/time -l` used to measure real time, user time, and maximum resident set size - Input data: 433MB, \~9.5 million rows file, generated by downloading [worldcitiespop.csv](https://burntsushi.net/stuff/worldcitiespop.csv) and concatenating it to itself an additional 2 times - Compared both single-threaded and multi-threaded performance ## Takeaways - in real time, `zsv --parallel` was the fastest for both count (>= ~25%) and select (>= ~2x) - limited to single-threaded mode, `zsv` was fastest for select (>= ~40% vs xsv, ~2.1x vs polars). `polars` was fastest (by 3.5x!) for count, but see below - the select results suggest that for count, `polars` is only parsing rows, and not cells - as noted below, polars imposes limitations to the CSV input format that other parsers do not - in memory footprint, `zsv` and `xsv` are *several orders of magnitude* smaller than DuckDB or Polars: - single-threaded: `zsv`'s 1.5MB footprint is 2.7x smaller that `xsv` (4MB), 52x smaller than `duckdb` (76MB) and 324x smaller than `polars` (475MB) - this makes `zsv` and `xsv` potentially useful in situations where memory or other runtime constraints (e.g. embedded devices) make DuckDB or Python/Polars unavailable ## Handicaps In each of these tests, `zsv` and `xsv` retain full compatibility of "real-world" CSV. Polars and DuckDB were given the benefit of some "handicaps", relaxing these compatibility requirements, so that they could run faster (for DuckDB) and produce correct output (for Polars). In particular: - DuckDB run in no-quote mode assumes no embedded newlines - Polars does not "correctly" handle embedded quotes if the cell value does not use opening/closing quotes (e.g. `aaa"aaa`, which is generally treated the same as `"aaa""aaa"`). Now, it is true that there is no "official" definition of how `aaa"aaa` should be parsed, which is why I put "correctly" in quotes. For this purpose, my definition of correct is quite simply: *what Excel does*. Not because I view MSFT as some higher authority, but rather because, objectively, Excel has a larger CSV user base-- and has had so over a span of many more years-- than any other application in the world. ### Why these parsers were chosen for the benchmarking The charts shown here compare zsv with other parsers that were closest in speed: `xsv`, `polars`, and `duckdb`. Others that were evaluated, but not included in the charts shown here, include `tsv-utils`, `csvcut`/`csvstat`, `mlr` (miller), all of which are also included in the benchmark script, as well as others that are not included in the benchmark script. Certainly, it is possible that some other parser should be added to this mix-- if you know of any parsers that your test show to be faster than (or nearly as fast as) `zsv` (whilst, at the least, properly handling quoted values, preferably also handling embedded commas and newlines, and ideally also handling all forms of unusual CSV) # Reproducing these results ## Running the benchmarks To run these benchmark tests yourself, clone this repositor, cd to app/benchmark and run `make graph`, or examine [Makefile](../app/benchmark/Makefile) which contains the commands for each tool. ## The Commands Below are examples of the types of commands that were used to run these tests. The file "worldcitiespop_big.csv" is generated by downloading [worldcitiespop.csv](https://burntsushi.net/stuff/worldcitiespop.csv) and concatenating its non-header data to itself an additional 2 times. #### zsv ```bash # Count zsv count worldcitiespop_big.csv zsv count --parallel worldcitiespop_big.csv # Select zsv select worldcitiespop_big.csv -W -n -- 2 1 3-7 zsv select --parallel worldcitiespop_big.csv -W -n -- 2 1 3-7 ``` #### xsv XSV is single-threaded for these operations. ```bash # Count xsv count worldcitiespop_big.csv # Select xsv select 2,1,3-7 worldcitiespop_big.csv ``` #### DuckDB ```bash # Count duckdb -c "SELECT count(*) FROM 'worldcitiespop_big.csv'" # Count- ignore quotes duckdb -c "SELECT count(*) FROM read_csv('worldcitiespop_big.csv',all_varchar=true,quote='')" # Count- ignore quotes- single-threaded duckdb -c "SET threads=1; SELECT count(*) FROM read_csv('worldcitiespop_big.csv',all_varchar=true,quote='')" # Select duckdb -c "COPY (from read_csv('worldcitiespop_big.csv', all_varchar=true) select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null'") # Select- ignore quotes duckdb -c "COPY (from read_csv('worldcitiespop_big.csv', all_varchar=true, quote='') select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null' (quote '')") # Select- ignore quotes- single-threaded duckdb -c "SET threads=1; COPY (from read_csv('worldcitiespop_big.csv', all_varchar=true, quote='') select #2, #1, #3, #4, #5, #6, #7) TO '/dev/null' (quote '')") ``` #### Polars ```bash # Count python3 -c 'import polars as pl; print(pl.scan_csv("worldcitiespop_big.csv").select(pl.len()).collect().item())' # Count- single-threaded POLARS_MAX_THREADS=1 python3 -c 'import polars as pl; print(pl.scan_csv("worldcitiespop_big.csv").select(pl.len()).collect().item())' # Select python3 -c 'import polars as pl; pl.scan_csv("worldcitiespop_big.csv", infer_schema=False).select(pl.nth(1, 0, 2, 3, 4, 5, 6)).sink_csv("/dev/null")' # Select- single-threaded POLARS_MAX_THREADS=1 python3 -c 'import polars as pl; pl.scan_csv("worldcitiespop_big.csv", infer_schema=False).select(pl.nth(1, 0, 2, 3, 4, 5, 6)).sink_csv("/dev/null")' ``` ----- # Miscellaneous ### DuckDB performance variance DuckDB performance showed significant variance. For example, below are outputs from two sets of identical commands each run 3 times, showing times that vary by approximately 100x in each set (note: these are different from the runs used for the graphs, as these use `time` for better precision vs the others use `/usr/bin/time -l` to also capture memory metrics) ``` duckdb : real 0m41.699s user 0m3.513s sys 4m27.216s duckdb : real 0m0.424s user 0m3.394s sys 0m0.269s duckdb : real 0m13.809s user 0m4.436s sys 1m20.095s duckdb (QUOTE='') : real 0m0.396s user 0m3.420s sys 0m0.244s duckdb (QUOTE='') : real 0m25.438s user 0m4.655s sys 2m45.483s duckdb (QUOTE='') : real 0m36.661s user 0m5.880s sys 3m52.661s ``` This variance seems to be present only in the `select` operation, but affected all of the different invocations of `duckdb` that we used. One possible theory is that the large RAM requirements (consistently > 1GB RAM) might have been causing allocation wait time, but `polars` did not have this issue even when it used > 1.5GB RAM. In any case, in our discussion, we only examine the minimum time results, but the 100x variance is notable nonetheless both for its magnitude and its frequency (more often than not), and can be visualized in the below comparison of minimums and averages: image zsv-1.3.0/app/benchmark/README.md.old000066400000000000000000000126261511312357700171170ustar00rootroot00000000000000# Benchmarks ## Summary - These benchmarks are enough to be suggestive but not enough to be conclusive. They were run on a limited variety of hardware, OS platforms and build options. YMMV depending on OS, processor and compilation flags/options - zsv performed faster than all other utilities tested; on our test system (OSX) by ~1.5x-27x, by similar or smaller margins (in each case we tested, by at least 20%) on other operating systems - Four utilities were tested: `zsv`, `xsv`, `tsv-utils` and `mlr` - The below figures were based on results from runs on OSX (Intel). Similar results were observed on other operating systems, but in some cases the difference was significantly smaller (for example, `zsv`) - On most platforms, `zsv` performed about 2x as fast as xsv, 1.5-2x as fast as `tsv-utils`, and 25x+ faster than `mlr` or the python csv-utils family. ![image](https://user-images.githubusercontent.com/26302468/146497899-48174114-3b18-49b0-97da-35754ab56e48.png) ![image](https://user-images.githubusercontent.com/26302468/146498211-afc77ce6-4229-4599-bf33-81bf00c725a8.png) Apple M1 chip (updated 7/3/2022) `zsv`'s performance advantage when running on the M1 chip is still noticeable, but is narrower: `count` is about 15-20% faster; `select` is about 25-30% faster. Other operations and comparisons were not tested on this platform. The main difference in the instructions generated for M1 is the smaller 128bit vector size (see e.g. ) and the lack of an M1 `movemask` intrinsic. ## Choice of tests and input data Two tests, "count" and "select", were chosen to most closely track raw CSV parsing performance, and to reduce the impact of other processing tasks (for example, "search" was not tested because that would primarily measure the performance of the search algorithm rather than the CSV parser). We used a range of input data for our internal tests, all of which yielded results that were consistent with the benchmark tests. For the benchmark tests, we used the same dataset that xsv uses for its benchmark tests. Another factor we considered was the impact of I/O overhead. Because the "count" and "select" operations are relatively fast (compared to, for example, regular expression matching), it is possible that the entire test may be I/O bound and that the results might primarily just measuring I/O speed which could have enough variability to swamp any performance differences attributable to the particular utility being run. This consideration did not turn out to be an issue, as the results differed for each utility by consistent and statistically significant amounts. ## Limitations These benchmarks are obviously extremely limited. However, we believe they are sufficient to show the relative performance of zsv as compared to other similar utilities. While there were statistically significant differences in relative performance depending on various factors such as the number of columns extracted, the number of columns per row of data, the average size of each data column, the frequency of cells that were quoted and/or require quote escaping, and other various factors. ## Test environment Below are reported from tests run on OSX (Intel). Similar results were achieved on Windows, Linux and FreeBSD. See above note for results on M1. In some cases, especially on Windows, compiler settings had a significant impact. If you observe results that materially differ, in terms of `zsv` vs other utility performance, from what shown below, please let us know. ## Utilities compared The following utilities were compared: - `xsv` (0.13.0): installed via brew - `tsv-utils` (v2.2.1): installed via download of pre-built PGO-optimized binaries - `mlr` (5.10.2): installed via brew (not shown in graph due to very slow performance) - `zsv`: built from source using the default `configure` settings - `csvcut` (1.0.6): (not shown in graph - very slow compared to others) ## Further notes - `tsv-utils` using a comma delimiter does *not* handle quoted data, unlike `xsv` (and `zsv`), and thus its output may be incorrect. For this reason, these tests ran `tsv-utils` both using a custom delimiter, and also on TSV data that had been converted from the original CSV data. The performance in either case was effectively the same - `mlr` and `csvcut` are not shown in the graph since their performance was well over 10x slower than the others. `mlr` was included in the test was to compare with another solution written in the same language (i.e. C) as `zsv`, since `tsv-utils`, `xsv` and `zsv` are all written in different languages, and `csvcut` was included since `csvcut`/`csvkit` seem to be fairly commonly used for CSV processing. - Our test system shown in the above graph was a pre-M1 OSX MBA. We also tested on Linux, BSD and Windows. In each case, zsv was the fastest, but in some cases the margin was smaller (e.g. 20%+ instead of 50% vs xsv on Win). ## Results in above graph (pre-M1 OSX MBA) ### count (5 runs, excluding first run) | tool | results | | :---------: | :-----: | | `zsv` | 0.076 | | `xsv` | 0.151 | | `tsv-utils` | 0.150 | | `mlr` | not run | | `csvcut` | n/a | ### select (5 runs, excluding first run) | tool | results | | :---------: | :-----: | | `zsv` | 0.162 | | `xsv` | 0.327 | | `tsv-utils` | 0.24 | | `mlr` | 4.53 | | `csvcut` | 6.88 | zsv-1.3.0/app/benchmark/benchmark.awk000077500000000000000000000030701511312357700175150ustar00rootroot00000000000000#!/usr/bin/awk -f BEGIN { # Output CSV Header OFS = "," print "operation,dataset,tool,real_sec,user_sec,sys_sec" } # 1. Capture State: Detect which benchmark is running # Matches lines like: " Benchmarking count: worldcitiespop_mil" /Benchmarking/ { # $2 is "count:", $3 is "worldcitiespop_mil" gsub(/:/, "", $2) # Remove colon from operation name op = $2 dataset = $3 } # 2. Capture Data: Process lines with timing info # Matches lines containing ": real" (e.g., "zsv : real 0m0.056s...") /: real/ { # Split line by the first colon to separate Tool from Data split($0, parts, ":") # Clean up the tool name (trim whitespace) tool = parts[1] gsub(/^[ \t]+|[ \t]+$/, "", tool) # The rest of the line (parts[2]) contains: " real 0m0.56s user ..." # We split this substring by space to find the times split(parts[2], tokens, " ") # Iterate through tokens to find 'real', 'user', 'sys' values for (i = 1; i <= length(tokens); i++) { if (tokens[i] == "real") real = parse_time(tokens[i+1]) if (tokens[i] == "user") user = parse_time(tokens[i+1]) if (tokens[i] == "sys") sys_val = parse_time(tokens[i+1]) } # Print the CSV row print op, dataset, tool, real, user, sys_val } # Helper: Convert "XmY.Ys" string to seconds (float) function parse_time(t_str, arr, min, sec) { # Split "0m0.056s" at "m" split(t_str, arr, "m") min = arr[1] # Remove trailing 's' from the seconds part sec = arr[2] gsub(/s/, "", sec) return (min * 60) + sec } zsv-1.3.0/app/benchmark/benchmark_all.awk000077500000000000000000000033031511312357700203440ustar00rootroot00000000000000#!/usr/bin/awk -f BEGIN { # Output CSV Header OFS = "," print "operation,dataset,tool,real_sec,user_sec,sys_sec,max_rss_bytes,instr_retired" } # 1. Capture State /Benchmarking/ { gsub(/:/, "", $2) op = $2 dataset = $3 } # 2. Capture Data /maximum resident set size/ { # Isolate Tool Name split($0, parts, ":") tool = parts[1] gsub(/^[ \t]+|[ \t]+$/, "", tool) data_line = parts[2] # Initialize variables to 0/empty to prevent carry-over real=0; user=0; sys_val=0; rss=0; instr=0 # -- Extraction Helper Logic -- # In standard awk, match() sets RSTART and RLENGTH. # We extract the whole matching phrase (e.g. "0.56 real") then split it. # 1. Real Time if (match(data_line, /[0-9.]+ +real/)) { str = substr(data_line, RSTART, RLENGTH) split(str, arr, " ") real = arr[1] } # 2. User Time if (match(data_line, /[0-9.]+ +user/)) { str = substr(data_line, RSTART, RLENGTH) split(str, arr, " ") user = arr[1] } # 3. Sys Time if (match(data_line, /[0-9.]+ +sys/)) { str = substr(data_line, RSTART, RLENGTH) split(str, arr, " ") sys_val = arr[1] } # 4. Max RSS (Memory) if (match(data_line, /[0-9]+ +maximum resident set size/)) { str = substr(data_line, RSTART, RLENGTH) split(str, arr, " ") rss = arr[1] } # 5. Instructions Retired (Not always present on non-Intel macs or Linux) if (match(data_line, /[0-9]+ +instructions retired/)) { str = substr(data_line, RSTART, RLENGTH) split(str, arr, " ") instr = arr[1] } print op, dataset, tool, real, user, sys_val, rss, instr }zsv-1.3.0/app/benchmark/benchmarks_agg_all.sql000066400000000000000000000007671511312357700213720ustar00rootroot00000000000000select operation,dataset,tool, min(real_sec) as real_sec_min, min(user_sec) as user_sec_min, min(sys_sec) as sys_sec_min, min(max_rss_bytes) as max_rss_bytes_min, avg(real_sec) as real_sec_avg, avg(user_sec) as user_sec_avg, avg(sys_sec) as sys_sec_avg, avg(max_rss_bytes) as max_rss_bytes_avg from data group by operation,dataset,tool order by case when tool = 'zsv' then '0' when tool = 'xsv' then '1' when tool like 'zsv%' then 'a' when tool like 'polars%' then 'b' else tool end , operation,dataset zsv-1.3.0/app/benchmark/plot_combined_all.gp.in000066400000000000000000000026321511312357700214620ustar00rootroot00000000000000# Output Settings set terminal pngcairo size 1000,600 enhanced font 'Verdana,10' set output 'bench_combined-OPERATION.png' # Data Parsing set datafile separator "," # Chart Style: Clustered Histogram set style data histograms set style histogram cluster gap 1 set style fill solid 1.0 border -1 set boxwidth 0.9 # Title set title "Benchmark Comparison (OPERATION): Time vs Memory" # --- Dual Axis Configuration --- # Left Y-Axis (Time) set ylabel "Time (seconds)" set ytics nomirror # Do not show these tics on the right side set yrange [0:*] # Start at 0 # Right Y-Axis (Memory) set y2label "Max RSS (MB)" set y2tics # Enable the right axis set y2range [0:*] # Start at 0 # Add a grid (optional, usually looks best aligned to the primary Y axis) set grid y # X-Axis Labels set xtics rotate by -45 scale 0 set xlabel "Tools" # Key/Legend location (Top Left usually avoids hiding data in this dataset) set key top left # --- The Plot Command --- # 1. Real Time (Blue) -> uses default axes (x1y1) # 2. User Time (Orange) -> uses default axes (x1y1) # 3. Memory (Red) -> uses axes x1y2 (Right Axis) plot 'INPUT_CSV' every ::1 using 4:xtic(3) axes x1y1 title 'Real Time (s) (min)' lc rgb "#4E79A7", \ '' every ::1 using 5 axes x1y1 title 'User Time (s) (min)' lc rgb "#F28E2B", \ '' every ::1 using ($7/1048576) axes x1y2 title 'Max RSS (MB) (min)' lc rgb "#E15759"zsv-1.3.0/app/benchmark/plot_metrics_all.gp.in000066400000000000000000000050321511312357700213450ustar00rootroot00000000000000# ============================================================================= # Gnuplot Script for Benchmark Visualization (Template) # ============================================================================= # Input: INPUT_CSV (Comma-separated values) # Output: benchmark_OPERATION_time.png, benchmark_OPERATION_memory.png # ============================================================================= # ----------------------------------------------------------------------------- # Configuration & Initialization # ----------------------------------------------------------------------------- set terminal pngcairo size 1280,720 enhanced font 'Segoe UI,12' set datafile separator "," # Color Definitions (Hex Integers for compatibility) c_blue = "#4E79A7" c_aqua = "#76B7B2" c_orange = "#F28E2B" c_green = "#59A14F" # Style Settings set key outside right top vertical Right noreverse nobox set style data histogram set style histogram cluster gap 1 set style fill solid 1.0 border -1 set boxwidth 0.9 # Axis formatting set xtics rotate by -45 scale 0 set grid ytics # ----------------------------------------------------------------------------- # Graph 1: Execution Time Analysis # ----------------------------------------------------------------------------- # Order: Min Real, Avg Real, Min User, Avg User set output 'benchmark_OPERATION_time.png' set title "Execution Time (OPERATION): Minimum, Average" font ",16" set ylabel "Time (Seconds)" # Columns in CSV: 4=real_min, 8=real_avg, 5=user_min, 9=user_avg # NOTE: 'every ::1' is used to skip the CSV header row plot 'INPUT_CSV' every ::1 using 4:xtic(3) title "Min Real Time" lc rgb c_blue, \ '' every ::1 using 8 title "Avg Real Time" lc rgb c_orange, \ '' every ::1 using 5 title "Min User Time" lc rgb c_aqua, \ '' every ::1 using 9 title "Avg User Time" lc rgb c_green # ----------------------------------------------------------------------------- # Graph 2: Memory Usage Analysis (RSS) # ----------------------------------------------------------------------------- set output 'benchmark_OPERATION_memory.png' set title "Memory Usage (Max RSS) (OPERATION): Minimum vs Average" font ",16" set ylabel "Memory Size (MB)" # Helper function bytes_to_mb(x) = x / 1024.0 / 1024.0 # Columns in CSV: 7=rss_min, 11=rss_avg plot 'INPUT_CSV' every ::1 using (bytes_to_mb($7)):xtic(3) title "Min Max RSS" lc rgb c_blue, \ '' every ::1 using (bytes_to_mb($11)) title "Avg Max RSS" lc rgb c_orange # Reset output set outputzsv-1.3.0/app/benchmark/plot_metrics_time_all.gp.in000066400000000000000000000014601511312357700223640ustar00rootroot00000000000000# Output Settings (Single Image) set terminal pngcairo size 800,600 enhanced font 'Verdana,10' set output 'bench_time_OPERATION.png' # Input Settings set datafile separator "," set style data histograms set style fill solid 1.0 border -1 set boxwidth 0.9 # Layout: Cluster the bars side-by-side with a small gap between tool groups set style histogram cluster gap 1 # Axis Labels set title "Time (OPERATION): Real vs User" set ylabel "Time (seconds)" set xtics rotate by -45 set grid y # --- Combined Plot --- # We plot Real Time (col 4) and User Time (col 5) from the same file. # The 'xtic(3)' takes the labels from column 3 (Tool name). plot 'INPUT_CSV' every ::1 using 4:xtic(3) title 'Real Time' linecolor rgb "#4E79A7", \ '' every ::1 using 5 title 'User Time' linecolor rgb "#F28E2B"zsv-1.3.0/app/builtin/000077500000000000000000000000001511312357700145705ustar00rootroot00000000000000zsv-1.3.0/app/builtin/help.c000066400000000000000000000124551511312357700156730ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include static int main_help(int argc, const char *argv[]) { (void)(argc); (void)(argv); FILE *f = stdout; static const char *usage[] = { "zsv: streaming csv processor", "", "Usage:", " zsv version: display version info (and if applicable, extension info)", #ifndef __EMSCRIPTEN__ " zsv (un)register [] : (un)register an extension", " Registration info is saved in zsv.ini located in a directory determined as:", " ZSV_CONFIG_DIR environment variable value, if set", #if defined(_WIN32) " LOCALAPPDATA environment variable value, if set", " otherwise, C:\\temp", #else " otherwise, " PREFIX "/etc", #endif #endif " zsv help []", " zsv : run a command on data (see below for details)", #ifndef __EMSCRIPTEN__ " zsv - : invoke command 'cmd' of extension 'id'", " zsv license []", #endif " zsv thirdparty : view third-party licenses & acknowledgements", "", "Options common to all commands except `prop`, `rm` and `jq`:", #ifdef ZSV_EXTRAS " -L,--limit-rows : limit processing to the given number of rows (including any header row(s))", #endif " -c,--max-column-count : set the maximum number of columns parsed per row. defaults to 1024", " -r,--max-row-size : set the minimum supported maximum row size. defaults to 64k", " -B,--buff-size : set internal buffer size. defaults to 256k", " -t,--tab-delim : set column delimiter to tab", " -O,--other-delim : set column delimiter to specified character", " -q,--no-quote : turn off quote handling", " -R,--skip-head : skip specified number of initial rows", " -d,--header-row-span : apply header depth (rowspan) of n", " -u,--malformed-utf8-replacement : replacement string (can be empty) in case of malformed UTF8 input", " (default for \"desc\" command is '?')", " -S,--keep-blank-headers : disable default behavior of ignoring leading blank rows", " -0,--header-row
: insert the provided CSV as the first row (in position 0)", " e.g. --header-row 'col1,col2,\"my col 3\"'", #ifndef ZSV_NO_ONLY_CRLF " --only-crlf : only treat CRLF as row delimiter", " CR or LF alone are treated as normal chars that do not require quotes", #endif #ifdef ZSV_EXTRAS " -1,--apply-overwrites : automatically apply overwrites saved via `overwrite` command", #endif " -v,--verbose : verbose output", "", "Commands that parse CSV or other tabular data:", " echo : write tabular input to stdout with optional cell overwrites", " check : check for anolomolies (column counts, utf8 encoding etc)", " count : print the number of rows", " select : extract rows/columns by name or position and perform other basic and 'cleanup' operations", " desc : describe each column", " sql : run ad-hoc SQL on one or more CSV files", " pretty : pretty print for console display", " serialize: convert into 3-column format (id, column name, cell value)", " flatten : flatten a table consisting of N groups of data, each with 1 or", " more rows in the table, into a table of N rows", " 2json : convert CSV or sqlite3 db table to json", " 2tsv : convert to tab-delimited text", " stack : stack tables vertically, aligning columns with common names", " paste : horizontally paste two tables together: given inputs X, Y, ... of N rows", " compare : compare two or more tables and output differences", " overwrite: save, modify or apply overwrites", "", "Other commands:", " 2db : convert json to sqlite3 db", " prop : save parsing options associated with a file that are subsequently", " applied by default when processing that file", " rm : remove a file and its related cache", " mv : rename (move) a file and/or its related cache", #ifdef USE_JQ " jq : run a jq filter on json input", #endif NULL, }; for (size_t i = 0; usage[i]; i++) fprintf(f, "%s\n", usage[i]); #ifndef __EMSCRIPTEN__ char printed_init = 0; struct cli_config config; if (!config_init(&config, 1, 1, 0)) { for (struct zsv_ext *ext = config.extensions; ext; ext = ext->next) { if (ext->inited == zsv_init_ok) { if (!printed_init) { printed_init = 1; fprintf(f, "\nExtended commands:\n"); } else fprintf(f, "\n"); if (ext->help) fprintf(f, " Extension '%s': %s\n", ext->id, ext->help); for (struct zsv_ext_command *cmd = ext->commands; cmd; cmd = cmd->next) fprintf(f, " %s-%s%s%s\n", ext->id, cmd->id, cmd->help ? ": " : "", cmd->help ? cmd->help : ""); } } config_free(&config); } if (!printed_init) fprintf(f, "\n(No extended commands)\n"); #endif return 0; } zsv-1.3.0/app/builtin/license.c000066400000000000000000000024051511312357700163570ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ static int main_license(int argc, const char *argv[]) { (void)(argc); (void)(argv); fprintf(stderr, "Note: for third-party licenses & acknowledgements, run `zsv thirdparty`\n"); printf("\n====================================================\n"); printf("ZSV/lib license"); printf(" "); printf("\n====================================================\n"); fwrite(zsv_license_text_MIT, 1, strlen(zsv_license_text_MIT), stdout); struct cli_config config; if (!config_init(&config, 0, 1, 0)) { for (struct zsv_ext *ext = config.extensions; ext; ext = ext->next) { printf("\n====================================================\n"); printf("License for extension '%s'", ext->id); printf("\n====================================================\n"); if (ext->license && *ext->license) { size_t len = strlen(ext->license); fwrite(ext->license, 1, len, stdout); if (ext->license[len - 1] != '\n') printf("\n"); } else printf("Unknown\n"); } } config_free(&config); return 0; } zsv-1.3.0/app/builtin/register.c000066400000000000000000000066621511312357700165720ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ /** * Check an extension's implementation for completeness and print any errors or warnings * This function does not yet impose any requirements on any extension * * @param ext the extension to check * @return error */ static int check_extension(struct zsv_ext *ext) { /* to do: * check that each extension command supports `zsv my-cmd --help`; * redirect, examine & restore stdin/out/err */ if (!ext) return 1; ext_init(ext); if (ext->inited != zsv_init_ok) return 1; return 0; } static int register_help(char do_register) { static const char *register_help = "zsv register: register an extension\n\n" "usage: zsv register [-g,--global] "; static const char *unregister_help = "zsv unregister: unregister an extension\n\n" "usage: zsv unregister [-g,--global] "; printf("%s\n", do_register ? register_help : unregister_help); return 0; } static int main_register_aux(int argc, const char *argv[]) { int err = 0; struct cli_config config; char do_register = *argv[0] == 'r'; const char *extension_id = NULL; char global = 0; for (int i = 1; i < argc; i++) { const char *arg = argv[i]; if (!strcmp(arg, "--help") || !strcmp(arg, "-h")) return register_help(do_register); if (!strcmp(arg, "-g") || !strcmp(arg, "--global")) global = 1; else { if (extension_id != NULL) return register_help(do_register); extension_id = arg; } } if (!extension_id) fprintf(stderr, "No extension id provided\n"), err = 1; else if (strlen(extension_id) < ZSV_EXTENSION_ID_MIN_LEN || strlen(extension_id) > ZSV_EXTENSION_ID_MAX_LEN) fprintf(stderr, "Extension id must be 1 to 8 bytes\n"), err = 1; else if (config_init_2(&config, !do_register, 1, 1, global, !global)) config_free(&config); // unable to init config else { struct zsv_ext *found; if ((found = find_extension(&config, extension_id))) { // found this extension registered if (do_register) { fprintf(stderr, "Extension %s already registered\n", extension_id), err = 1; check_extension(found); } // unregister else if (!(err = remove_extension(&config.extensions, found))) if (!(err = config_save(&config))) fprintf(stderr, "Extension %s unregistered\n", extension_id); } else { // this extension has not been registered if (!do_register) fprintf(stderr, "Extension %s was not already registered\n", extension_id), err = 1; // register else { // confirm we can successfully load dll, then register // add_extension() adds this extension to the front of the list if (!(err = add_extension(extension_id, &config.extensions, 1, 1))) { if (!check_extension(config.extensions)) { if (!(err = config_save(&config))) fprintf(stderr, "Extension %s registered\n", extension_id); } } } } config_free(&config); } return err; } static int main_register(int argc, const char *argv[]) { return main_register_aux(argc, argv); } static int main_unregister(int argc, const char *argv[]) { return main_register_aux(argc, argv); } zsv-1.3.0/app/builtin/thirdparty.c000066400000000000000000000022241511312357700171260ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ static void print_str_array(const char *name, const char *name2, const char **ss) { printf("\n\n==========================\n%s%s\n==========================\n", name, name2 ? name2 : "?"); if (!ss) printf("No third-party information\n"); for (int i = 0; ss && ss[i]; i++) { const char *s = ss[i]; fwrite(s, 1, strlen(s), stdout); } } static int main_thirdparty(int argc, const char *argv[]) { (void)(argc); (void)(argv); printf("Third-party licenses and acknowledgements"); print_str_array("ZSV/lib third-party dependencies", "", zsv_thirdparty); #ifndef __EMSCRIPTEN__ struct cli_config config; const char *ss[2]; ss[1] = NULL; if (!config_init(&config, 0, 1, 0)) { for (struct zsv_ext *ext = config.extensions; ext; ext = ext->next) { if (ext->thirdparty) { ss[0] = ext->thirdparty; print_str_array("Extension: ", (const char *)ext->id, ss); } } } #endif printf("\n"); return 0; } zsv-1.3.0/app/builtin/unregister.c000066400000000000000000000000571511312357700171250ustar00rootroot00000000000000/* intentionally left blank. see register.c */ zsv-1.3.0/app/builtin/version.c000066400000000000000000000005711511312357700164240ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ static int main_version(int argc, const char *argv[]) { (void)(argc); (void)(argv); printf("zsv version %s (lib %s)\n", VERSION, zsv_lib_version()); return 0; } zsv-1.3.0/app/check.c000066400000000000000000000125161511312357700143500ustar00rootroot00000000000000/* * Copyright (C) 2025 Liquidaty and zsv contributors. All rights reserved. * * This file is part of zsv/lib, distributed under the MIT license as defined at * https://opensource.org/licenses/MIT */ #include #include #define ZSV_COMMAND check #include "zsv_command.h" #define _GNU_SOURCE 1 #include #include #include #ifdef USE_SIMDUTF #include "check/simdutf_wrapper.h" #define USAGE_APPNAME APPNAME " (simdutf8)" #else #include "check/utf8.c" #define USAGE_APPNAME APPNAME #endif struct zsv_check_data { FILE *in; FILE *out; const char *input_path; zsv_parser parser; size_t row_ix; size_t column_count; int err; unsigned char display_row : 1; unsigned char check_utf8 : 1; unsigned char _ : 6; }; #ifdef USE_SIMDUTF #define UTF8VALIDATOR simdutf_is_valid_utf8 #else #define UTF8VALIDATOR utf8_is_valid #endif static void zsv_check_row(void *ctx) { struct zsv_check_data *data = ctx; size_t column_count = zsv_cell_count(data->parser); unsigned const char *row_start = NULL; size_t row_len; if (column_count != data->column_count) { fprintf(data->out, "Row %zu column count (%zu) differs from header (%zu)", data->row_ix, column_count, data->column_count); data->err = 1; if (data->display_row && column_count > 0) { row_start = zsv_get_cell(data->parser, 0).str; struct zsv_cell last_cell = zsv_get_cell(data->parser, column_count - 1); row_len = (last_cell.str + last_cell.len - row_start); fprintf(data->out, ": %.*s", (int)row_len, row_start); } fprintf(data->out, "\n"); } if (data->check_utf8) { if (!row_start) { row_start = zsv_get_cell(data->parser, 0).str; struct zsv_cell last_cell = zsv_get_cell(data->parser, column_count - 1); row_len = (last_cell.str + last_cell.len - row_start); } if (row_len > 0 && !UTF8VALIDATOR(row_start, row_len)) { data->err = 1; fprintf(data->out, "Row %zu invalid utf8", data->row_ix); if (data->display_row) fprintf(data->out, ": %.*s", (int)row_len, row_start); fprintf(data->out, "\n"); } } data->row_ix++; } static void zsv_check_header(void *ctx) { struct zsv_check_data *data = ctx; data->column_count = zsv_cell_count(data->parser); data->row_ix++; zsv_set_row_handler(data->parser, zsv_check_row); } static int zsv_check_usage(void) { const char *zsv_check_usage_msg[] = { USAGE_APPNAME ": check input for anomalies", "", "Usage: " APPNAME " ", "", "Options:", " -o,--output : output to specified file path", " --display-row : display the row contents with any reported issue", // " --utf8 : check for invalid utf8", // " --all : run all checks", "", "If no check options are provided, all checks are run", NULL, }; for (size_t i = 0; zsv_check_usage_msg[i]; i++) fprintf(stdout, "%s\n", zsv_check_usage_msg[i]); return 1; } static void zsv_check_cleanup(struct zsv_check_data *data) { if (data->in && data->in != stdin) fclose(data->in); if (data->out && data->out != stdout) fclose(data->out); } int ZSV_MAIN_FUNC(ZSV_COMMAND)(int argc, const char *argv[], struct zsv_opts *optsp, struct zsv_prop_handler *custom_prop_handler) { if (argc < 1 || (argc > 1 && (!strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")))) { zsv_check_usage(); return 0; } struct zsv_opts opts = *optsp; struct zsv_check_data data = {0}; int err = 0; for (int arg_i = 1; !err && arg_i < argc; arg_i++) { const char *arg = argv[arg_i]; if (!strcmp(arg, "--display-row")) data.display_row = 1; // else if (!strcmp(arg, "--utf8")) // data.check_utf8 = 1; else if (!strcmp(arg, "-o") || !strcmp(arg, "--output")) { if (data.out) err = zsv_printerr(1, "Output specified more than once"); else { const char *fn = zsv_next_arg(++arg_i, argc, argv, &err); if (!(fn && *fn)) err = zsv_printerr(1, "%s requires a filename value", arg); else if (!(data.out = fopen(fn, "wb"))) { err = errno; perror(fn); } } } else if (!data.in) { #ifndef NO_STDIN if (!strcmp(arg, "-")) data.in = stdin; #endif if (!data.in) { if (!(data.in = fopen(arg, "rb"))) { err = 1; perror(arg); } else data.input_path = arg; } } else { fprintf(stderr, "Unrecognized option: %s\n", arg); err = 1; } } if (!err && !data.in) { #ifndef NO_STDIN data.in = stdin; #else fprintf(stderr, "Please specify an input file\n"); err = 1; #endif } if (err) { zsv_check_cleanup(&data); return 1; } data.check_utf8 = 1; if (!data.out) data.out = stdout; opts.row_handler = zsv_check_header; opts.stream = data.in; opts.ctx = &data; if (zsv_new_with_properties(&opts, custom_prop_handler, data.input_path, &data.parser) != zsv_status_ok) err = 1; else { // process the input data zsv_handle_ctrl_c_signal(); enum zsv_status status; while (!zsv_signal_interrupted && (status = zsv_parse_more(data.parser)) == zsv_status_ok) ; zsv_finish(data.parser); zsv_delete(data.parser); } zsv_check_cleanup(&data); if (!err) err = data.err; return err; } zsv-1.3.0/app/check/000077500000000000000000000000001511312357700141775ustar00rootroot00000000000000zsv-1.3.0/app/check/simdutf_wrapper.cpp000066400000000000000000000005661511312357700201250ustar00rootroot00000000000000// simdutf_wrapper.cpp - C++ wrapper, exposes C ABI #include "../external/simdutf/simdutf.h" #include "../external/simdutf/simdutf.cpp" extern "C" int simdutf_is_valid_utf8(const char *buf, size_t len) { // simdutf::validate_utf8 is part of the public API :contentReference[oaicite:1]{index=1} bool ok = simdutf::validate_utf8(buf, len); return ok ? 1 : 0; } zsv-1.3.0/app/check/simdutf_wrapper.h000066400000000000000000000005411511312357700175630ustar00rootroot00000000000000/* simdutf_wrapper.h - C-callable wrapper around simdutf */ #ifndef SIMDUTF_WRAPPER_H #define SIMDUTF_WRAPPER_H #include /* for size_t */ #ifdef __cplusplus extern "C" { #endif /* Returns 1 if valid UTF-8, 0 otherwise */ int simdutf_is_valid_utf8(const char *buf, size_t len); #ifdef __cplusplus } #endif #endif /* SIMDUTF_WRAPPER_H */ zsv-1.3.0/app/check/utf8.c000066400000000000000000000045771511312357700152460ustar00rootroot00000000000000#include #include #include bool utf8_is_valid(const uint8_t *s, size_t len); ///// static inline bool is_cont(uint8_t b) { // Continuation byte: 10xxxxxx return (b & 0xC0) == 0x80; } bool utf8_is_valid(const uint8_t *s, size_t len) { size_t i = 0; while (i < len) { uint8_t c = s[i]; // ASCII fast path if (c < 0x80) { i++; continue; } // Reject continuation bytes as leading bytes, and C0/C1 overlongs if (c < 0xC2) { return false; } // 2-byte sequence: 110xxxxx 10xxxxxx if (c < 0xE0) { if (i + 1 >= len) return false; uint8_t c1 = s[i + 1]; if (!is_cont(c1)) return false; i += 2; continue; } // 3-byte sequence: 1110xxxx 10xxxxxx 10xxxxxx if (c < 0xF0) { if (i + 2 >= len) return false; uint8_t c1 = s[i + 1]; uint8_t c2 = s[i + 2]; // Special rules to avoid overlongs and surrogates: // E0 A0–BF 80–BF // E1–EC 80–BF 80–BF // ED 80–9F 80–BF (avoid D800–DFFF) // EE–EF 80–BF 80–BF if (!is_cont(c2)) return false; switch (c) { case 0xE0: if (c1 < 0xA0 || c1 > 0xBF) return false; break; case 0xED: if (c1 < 0x80 || c1 > 0x9F) return false; break; default: if (!is_cont(c1)) return false; break; } i += 3; continue; } // 4-byte sequence: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx // Valid range is up to U+10FFFF: // F0 90–BF 80–BF 80–BF // F1–F3 80–BF 80–BF 80–BF // F4 80–8F 80–BF 80–BF if (c < 0xF5) { if (i + 3 >= len) return false; uint8_t c1 = s[i + 1]; uint8_t c2 = s[i + 2]; uint8_t c3 = s[i + 3]; if (!is_cont(c2) || !is_cont(c3)) return false; switch (c) { case 0xF0: // Avoid overlongs: codepoints < 0x10000 if (c1 < 0x90 || c1 > 0xBF) return false; break; case 0xF4: // Avoid values > U+10FFFF if (c1 < 0x80 || c1 > 0x8F) return false; break; default: if (!is_cont(c1)) return false; break; } i += 4; continue; } // 0xF5–0xFF are invalid in UTF-8 return false; } return true; } zsv-1.3.0/app/cli.c000066400000000000000000000575111511312357700140460ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #include #include #include #include #include #include #ifdef ZSV_EXTRAS #include #endif #include #include #include "cli_internal.h" #include "cli_const.h" #include "cli_export.h" #ifdef ZSVSHEET_BUILD #include "sheet/sheet_internal.h" #include "sheet/handlers_internal.h" #include "sheet/transformation.h" #endif #include "sheet/procedure.h" #include "sheet/key-bindings.h" #include "sql_internal.h" struct cli_config { struct zsv_ext *extensions; char err_if_not_found; char filepath[FILENAME_MAX]; char home_filepath[FILENAME_MAX]; const char *current_filepath; // path being currently parsed char verbose; }; static struct zsv_ext *zsv_ext_new(const char *dl_name, const char *id, char verbose); zsvsheet_status zsvsheet_ext_prompt(struct zsvsheet_proc_context *ctx, char *buffer, size_t bufsz, const char *fmt, ...); #include "cli_ini.c" typedef int(cmd_main)(int argc, const char *argv[]); typedef int(zsv_cmd)(int argc, const char *argv[], struct zsv_opts *opts, struct zsv_prop_handler *custom_prop_handler); typedef int (*cmd_reserved)(void); struct builtin_cmd { const char *name; cmd_main *main; zsv_cmd *cmd; }; static int config_init(struct cli_config *c, char err_if_dl_not_found, char do_init, char verbose); static int config_init_2(struct cli_config *c, char err_if_dl_not_found, char do_init, char verbose, char global_only, char home_only); #include "zsv_main.h" #define CLI_BUILTIN_DECL(x) int main_##x(int argc, const char *argv[]) #define CLI_BUILTIN_DECL_STATIC(x) static int main_##x(int argc, const char *argv[]) CLI_BUILTIN_DECL_STATIC(version); CLI_BUILTIN_DECL_STATIC(help); CLI_BUILTIN_DECL_STATIC(thirdparty); #ifndef __EMSCRIPTEN__ CLI_BUILTIN_DECL_STATIC(register); CLI_BUILTIN_DECL_STATIC(unregister); CLI_BUILTIN_DECL_STATIC(license); #endif ZSV_MAIN_DECL(select); ZSV_MAIN_DECL(count); ZSV_MAIN_DECL(paste); ZSV_MAIN_DECL(check); ZSV_MAIN_DECL(2json); ZSV_MAIN_DECL(2tsv); ZSV_MAIN_DECL(serialize); ZSV_MAIN_DECL(flatten); ZSV_MAIN_DECL(pretty); ZSV_MAIN_DECL(stack); ZSV_MAIN_DECL(desc); ZSV_MAIN_DECL(sql); ZSV_MAIN_DECL(2db); ZSV_MAIN_DECL(compare); #ifdef ZSVSHEET_BUILD ZSV_MAIN_DECL(sheet); #endif ZSV_MAIN_DECL(echo); #ifdef ZSV_EXTRAS ZSV_MAIN_DECL(overwrite); #endif ZSV_MAIN_NO_OPTIONS_DECL(prop); ZSV_MAIN_NO_OPTIONS_DECL(rm); ZSV_MAIN_NO_OPTIONS_DECL(mv); #ifdef USE_JQ ZSV_MAIN_NO_OPTIONS_DECL(jq); #endif // clang-format off #define CLI_BUILTIN_CMD(x) {.name = #x, .main = main_##x, .cmd = NULL} #define CLI_BUILTIN_COMMAND(x) {.name = #x, .main = NULL, .cmd = ZSV_MAIN_FUNC(x)} #define CLI_BUILTIN_COMMANDEXT(x) {.name = #x, .main = NULL, .cmd = ZSV_MAINEXT_FUNC(x)} #define CLI_BUILTIN_NO_OPTIONS_COMMAND(x) {.name = #x, .main = ZSV_MAIN_NO_OPTIONS_FUNC(x), .cmd = NULL} #ifdef ZSVSHEET_BUILD ZSV_MAINEXT_FUNC_DEFINE(sheet); #endif struct builtin_cmd builtin_cmds[] = { CLI_BUILTIN_CMD(version), CLI_BUILTIN_CMD(help), CLI_BUILTIN_CMD(thirdparty), #ifndef __EMSCRIPTEN__ CLI_BUILTIN_CMD(register), CLI_BUILTIN_CMD(unregister), CLI_BUILTIN_CMD(license), #endif CLI_BUILTIN_COMMAND(select), CLI_BUILTIN_COMMAND(count), CLI_BUILTIN_COMMAND(paste), CLI_BUILTIN_COMMAND(check), CLI_BUILTIN_COMMAND(2json), CLI_BUILTIN_COMMAND(2tsv), CLI_BUILTIN_COMMAND(serialize), CLI_BUILTIN_COMMAND(flatten), CLI_BUILTIN_COMMAND(pretty), CLI_BUILTIN_COMMAND(stack), CLI_BUILTIN_COMMAND(desc), CLI_BUILTIN_COMMAND(sql), CLI_BUILTIN_COMMAND(2db), CLI_BUILTIN_COMMAND(compare), #ifdef ZSVSHEET_BUILD CLI_BUILTIN_COMMANDEXT(sheet), #endif CLI_BUILTIN_COMMAND(echo), #ifdef ZSV_EXTRAS CLI_BUILTIN_COMMAND(overwrite), #endif CLI_BUILTIN_NO_OPTIONS_COMMAND(prop), CLI_BUILTIN_NO_OPTIONS_COMMAND(rm), CLI_BUILTIN_NO_OPTIONS_COMMAND(mv), #ifdef USE_JQ CLI_BUILTIN_NO_OPTIONS_COMMAND(jq), #endif }; // clang-format on struct zsv_execution_data { struct zsv_ext *ext; zsv_parser parser; int argc; const char **argv; void *custom_context; // user-defined void *state; // program state relevant to the handler, e.g. cursor // position in zsv sheet. }; static struct zsv_opts ext_parser_opts(zsv_execution_context ctx) { (void)(ctx); return zsv_get_default_opts(); } char **custom_cmd_names = NULL; static enum zsv_ext_status ext_init(struct zsv_ext *ext); static int config_init_2(struct cli_config *c, char err_if_dl_not_found, char do_init, char verbose, char global_only, char home_only) { memset(c, 0, sizeof(*c)); if (!global_only) { // find local (home dir) zsv.ini if (!get_ini_file(c->home_filepath, FILENAME_MAX, 0)) *c->home_filepath = '\0'; } if (!home_only) { if (!get_ini_file(c->filepath, FILENAME_MAX, 1)) *c->filepath = '\0'; } if (*c->home_filepath == '\0' && *c->filepath == '\0') { fprintf(stderr, "Unable to get config filepath!\n"); return 1; } int rc = parse_extensions_ini(c, err_if_dl_not_found, verbose); if (rc == 0 && do_init) { for (struct zsv_ext *ext = c->extensions; ext; ext = ext->next) { if (ext_init(ext) != zsv_ext_status_ok) fprintf(stderr, "Error: unable to initialize extension %s\n", ext->id); } } return rc; } static int config_init(struct cli_config *c, char err_if_dl_not_found, char do_init, char verbose) { return config_init_2(c, err_if_dl_not_found, do_init, verbose, 0, 0); } static int config_free(struct cli_config *c) { return zsv_unload_custom_cmds(c->extensions); } static void ext_set_context(zsv_execution_context ctx, void *custom_context) { struct zsv_execution_data *d = ctx; d->custom_context = custom_context; } static void *ext_get_context(zsv_execution_context ctx) { struct zsv_execution_data *d = ctx; return d->custom_context; } static void ext_set_state(zsv_execution_context ctx, void *state) { struct zsv_execution_data *d = ctx; d->state = state; } static void *ext_get_state(zsv_execution_context ctx) { struct zsv_execution_data *d = ctx; return d->state; } static void ext_set_parser(zsv_execution_context ctx, zsv_parser parser) { struct zsv_execution_data *d = ctx; d->parser = parser; } static zsv_parser ext_get_parser(zsv_execution_context ctx) { struct zsv_execution_data *d = ctx; return d->parser; } static void execution_context_free(struct zsv_execution_data *d) { (void)(d); } static enum zsv_ext_status execution_context_init(struct zsv_execution_data *d, int argc, const char *argv[]) { memset(d, 0, sizeof(*d)); d->argv = argv; d->argc = argc; return zsv_ext_status_ok; } static char *zsv_ext_errmsg(enum zsv_ext_status stat, zsv_execution_context ctx) { switch (stat) { case zsv_ext_status_ok: return strdup("No error"); case zsv_ext_status_memory: return strdup("Out of memory"); case zsv_ext_status_unrecognized_cmd: if (!(ctx && ((struct zsv_execution_data *)ctx)->argc > 0)) return strdup("Unrecognized command"); else { char *s; struct zsv_execution_data *d = ctx; asprintf(&s, "Unrecognized command %s", d->argv[1]); return s; } // use zsv_ext_status_other for silent errors. will not attempt to call errcode() or errstr() case zsv_ext_status_not_permitted: return strdup("Not permitted"); case zsv_ext_status_other: // use zsv_ext_status_err for custom errors. will attempt to call errcode() and errstr() // for custom error code and message (if not errcode or errstr not provided, will be silent) case zsv_ext_status_error: return NULL; } return NULL; } // handle_ext_err(): return 1 if handled via ext callbacks, 0 otherwise static int handle_ext_err(struct zsv_ext *ext, zsv_execution_context ctx, enum zsv_ext_status stat) { int rc = stat; char *msg = zsv_ext_errmsg(stat, ctx); if (msg) { fprintf(stderr, "Error in extension %s: %s\n", ext->id, msg); free(msg); } else if (ext->module.errcode) { int ext_err = rc = ext->module.errcode(ctx); char *errstr = ext->module.errstr ? ext->module.errstr(ctx, ext_err) : NULL; if (errstr) { fprintf(stderr, "Error (%s): %s\n", ext->id, errstr); if (ext->module.errfree) ext->module.errfree(errstr); } } return rc; } static void ext_set_help(zsv_execution_context ctx, const char *help) { struct zsv_execution_data *data = ctx; if (data && data->ext) { free(data->ext->help); data->ext->help = help ? strdup(help) : NULL; } } static void ext_set_license(zsv_execution_context ctx, const char *license) { struct zsv_execution_data *data = ctx; if (data && data->ext) { free(data->ext->license); data->ext->license = license ? strdup(license) : NULL; } } static char *dup_str_array(const char *ss[]) { size_t len = 0; for (int i = 0; ss && ss[i]; i++) len += strlen(ss[i]); if (!len) return NULL; char *mem = malloc(len + 2 * sizeof(*mem)); if (mem) { char *tmp = mem; for (int i = 0; ss && ss[i]; i++) { size_t n = strlen(ss[i]); if (n) { memcpy(tmp, ss[i], n); tmp += n; } } mem[len] = mem[len + 1] = '\0'; } return mem; } static void ext_set_thirdparty(zsv_execution_context ctx, const char *thirdparty[]) { struct zsv_execution_data *data = ctx; if (data && data->ext) { free(data->ext->thirdparty); data->ext->thirdparty = dup_str_array(thirdparty); } } static enum zsv_ext_status ext_add_command(zsv_execution_context ctx, const char *id, const char *help, zsv_ext_main extmain) { struct zsv_execution_data *data = ctx; if (data && data->ext && data->ext->commands_next && id && *id && extmain) { struct zsv_ext_command *cmd = ext_command_new(id, help, extmain); if (cmd) { *data->ext->commands_next = cmd; data->ext->commands_next = &cmd->next; return zsv_ext_status_ok; } } return zsv_ext_status_error; } static enum zsv_ext_status ext_parse_all(zsv_execution_context ctx, void *user_context, void (*row_handler)(void *ctx), struct zsv_opts *const custom) { struct zsv_opts opts = custom ? *custom : ext_parser_opts(ctx); if (row_handler) opts.row_handler = row_handler; zsv_parser parser = zsv_new(&opts); if (!parser) return zsv_ext_status_memory; ext_set_parser(ctx, parser); ext_set_context(ctx, user_context); zsv_set_context(parser, ctx); zsv_handle_ctrl_c_signal(); enum zsv_status stat = zsv_status_ok; while (!zsv_signal_interrupted && (stat = zsv_parse_more(parser)) == zsv_status_ok) ; if (stat == zsv_status_no_more_input || (zsv_signal_interrupted && stat == zsv_status_ok)) stat = zsv_finish(parser); zsv_delete(parser); return stat ? zsv_ext_status_error : zsv_ext_status_ok; } static struct zsv_ext_callbacks *zsv_ext_callbacks_init(struct zsv_ext_callbacks *e) { if (e) { memset(e, 0, sizeof(*e)); e->set_row_handler = zsv_set_row_handler; e->set_context = zsv_set_context; e->parse_more = zsv_parse_more; e->abort = zsv_abort; e->cell_count = zsv_cell_count; e->get_cell = zsv_get_cell; e->finish = zsv_finish; e->delete = zsv_delete; e->ext_set_context = ext_set_context; e->ext_get_context = ext_get_context; e->ext_get_parser = ext_get_parser; e->ext_add_command = ext_add_command; e->ext_set_help = ext_set_help; e->ext_set_license = ext_set_license; e->ext_set_thirdparty = ext_set_thirdparty; e->ext_parse_all = ext_parse_all; e->ext_parser_opts = ext_parser_opts; e->ext_sqlite3_add_csv = zsv_sqlite3_add_csv; e->ext_sqlite3_db_delete = zsv_sqlite3_db_delete; e->ext_sqlite3_db_new = zsv_sqlite3_db_new; #ifdef ZSVSHEET_BUILD e->ext_sheet_keypress = zsvsheet_ext_keypress; e->ext_sheet_prompt = zsvsheet_ext_prompt; e->ext_sheet_buffer_set_ctx = zsvsheet_buffer_set_ctx; e->ext_sheet_buffer_get_ctx = zsvsheet_buffer_get_ctx; e->ext_sheet_buffer_set_cell_attrs = zsvsheet_buffer_set_cell_attrs; e->ext_sheet_cell_profile_attrs = zsvsheet_cell_profile_attrs; e->ext_sheet_buffer_get_zsv_opts = zsvsheet_buffer_get_zsv_opts; e->ext_sheet_buffer_on_newline = zsvsheet_buffer_on_newline; e->ext_sheet_buffer_get_selected_cell = zsvsheet_buffer_get_selected_cell; e->ext_sheet_set_status = zsvsheet_set_status; e->ext_sheet_buffer_current = zsvsheet_buffer_current; e->ext_sheet_buffer_prior = zsvsheet_buffer_prior; e->ext_sheet_buffer_info = zsvsheet_buffer_info; e->ext_sheet_buffer_filename = zsvsheet_buffer_filename; e->ext_sheet_buffer_data_filename = zsvsheet_buffer_data_filename; e->ext_sheet_open_file = zsvsheet_open_file; e->ext_sheet_register_proc = zsvsheet_register_proc; e->ext_sheet_register_proc_key_binding = zsvsheet_register_proc_key_binding; e->ext_sheet_push_transformation = zsvsheet_push_transformation; e->ext_sheet_transformation_writer = zsvsheet_transformation_writer; e->ext_sheet_transformation_parser = zsvsheet_transformation_parser; e->ext_sheet_transformation_filename = zsvsheet_transformation_filename; e->ext_sheet_transformation_user_context = zsvsheet_transformation_user_context; #endif } return e; } static enum zsv_ext_status ext_init(struct zsv_ext *ext) { enum zsv_ext_status stat = zsv_ext_status_ok; if (!ext->inited) { if (!ext->ok) return zsv_ext_status_error; ext->inited = zsv_init_started; struct zsv_ext_callbacks cb; zsv_ext_callbacks_init(&cb); ext->commands_next = &ext->commands; struct zsv_execution_data d; memset(&d, 0, sizeof(d)); d.ext = ext; if ((stat = ext->module.init(&cb, &d)) != zsv_ext_status_ok) { handle_ext_err(ext, NULL, stat); return stat; } ext->inited = zsv_init_ok; // init ok } return stat; } static int zsv_unload_custom_cmds(struct zsv_ext *ext) { int err = 0; for (struct zsv_ext *next; ext; ext = next) { next = ext->next; if (zsv_ext_delete(ext)) err = 1; } return err; } struct zsv_ext_command *find_ext_cmd(struct zsv_ext *ext, const char *id) { for (struct zsv_ext_command *cmd = ext->commands; cmd; cmd = cmd->next) if (!strcmp(cmd->id, id)) return cmd; return NULL; } static enum zsv_ext_status run_extension(int argc, const char *argv[], struct zsv_ext *ext) { enum zsv_ext_status stat = zsv_ext_status_error; if (ext) { if ((stat = ext_init(ext)) != zsv_ext_status_ok) return stat; struct zsv_ext_command *cmd = find_ext_cmd(ext, argv[1] + 3); if (!cmd) { fprintf(stderr, "Unrecognized command for extension %s: %s\n", ext->id, argv[1] + 3); return zsv_ext_status_unrecognized_cmd; } struct zsv_execution_data ctx = {0}; if ((stat = execution_context_init(&ctx, argc, argv)) == zsv_ext_status_ok) { struct zsv_opts opts; zsv_args_to_opts(argc, argv, &ctx.argc, ctx.argv, &opts); zsv_set_default_opts(opts); // need a corresponding zsv_set_default_custom_prop_handler? stat = cmd->main(&ctx, ctx.argc - 1, &ctx.argv[1], &opts); } if (stat != zsv_ext_status_ok) stat = handle_ext_err(ext, &ctx, stat); execution_context_free(&ctx); } return stat; } // havearg(): case-insensitive partial arg matching char havearg(const char *arg, const char *form1, size_t min_len1, const char *form2, size_t min_len2) { size_t len = strlen(arg); if (!min_len1) min_len1 = strlen(form1); if (len > min_len1) min_len1 = len; if (!zsv_strincmp_ascii((const unsigned char *)arg, min_len1, (const unsigned char *)form1, min_len1)) return 1; if (form2) { if (!min_len2) min_len2 = strlen(form2); if (len > min_len2) min_len2 = len; if (!zsv_strincmp_ascii((const unsigned char *)arg, min_len2, (const unsigned char *)form2, min_len2)) return 1; } return 0; } static struct builtin_cmd *find_builtin(const char *cmd_name) { int builtin_cmd_count = sizeof(builtin_cmds) / sizeof(*builtin_cmds); if (!strcmp(cmd_name, "-h") || !strcmp(cmd_name, "--help")) cmd_name = "help"; for (int i = 0; i < builtin_cmd_count; i++) if (havearg(cmd_name, builtin_cmds[i].name, 0, 0, 0)) return &builtin_cmds[i]; return NULL; } #include "builtin/license.c" #include "builtin/thirdparty.c" #include "builtin/help.c" #include "builtin/version.c" #include "builtin/register.c" static const char *extension_cmd_from_arg(const char *arg) { const char *dash = strchr(arg, '-'); if (dash && dash < arg + ZSV_EXTENSION_ID_MAX_LEN && dash[1] != '\0') return dash + 1; return NULL; } #ifndef ZSV_CLI_MAIN #define ZSV_CLI_MAIN main #endif ZSV_CLI_EXPORT int ZSV_CLI_MAIN(int argc, const char *argv[]) { const char **alt_argv = NULL; struct builtin_cmd *builtin = find_builtin(argc > 1 ? argv[1] : "help"); if (builtin) { // help is different from other commands: zsv help is treated as // if it was zsv --help if (builtin->main == main_help && argc > 2) { struct builtin_cmd *help_builtin = find_builtin(argv[2]); if (help_builtin) { const char *argv_tmp[2] = {argv[2], "--help"}; if (help_builtin->main) return help_builtin->main(2, argv_tmp); else if (help_builtin->cmd) { struct zsv_opts opts = {0}; return help_builtin->cmd(2, argv_tmp, &opts, NULL); } else return fprintf(stderr, "Unexpected syntax!\n"); } else { const char *ext_cmd = extension_cmd_from_arg(argv[2]); if (ext_cmd) { alt_argv = calloc(3, sizeof(*alt_argv)); alt_argv[0] = argv[0]; alt_argv[1] = argv[2]; alt_argv[2] = "--help"; argc = 3; argv = alt_argv; } else { fprintf(stderr, "Unrecognized command %s\n", argv[2]); free(alt_argv); return 1; } } } else { if (builtin->main) return builtin->main(argc - 1, argc > 1 ? &argv[1] : NULL); struct zsv_opts opts; enum zsv_status stat = zsv_args_to_opts(argc, argv, &argc, argv, &opts); if (stat == zsv_status_ok) return builtin->cmd(argc - 1, argc > 1 ? &argv[1] : NULL, &opts, NULL); return stat; } } int err = 1; if (extension_cmd_from_arg(argv[1]) != NULL) { // this is an extension command struct cli_config config; memset(&config, 0, sizeof(config)); if (!(err = add_extension(argv[1], &config.extensions, 0, 0))) { if (config.extensions) err = run_extension(argc, argv, config.extensions); else { fprintf(stderr, "Unrecognized command or extension %s\n", argv[1]); ; err = 1; } } if (config_free(&config) && !err) err = 1; } else fprintf(stderr, "Unrecognized command %s\n", argv[1]), err = 1; free(alt_argv); return err; } // extensions static enum zsv_ext_status zsv_ext_delete(struct zsv_ext *ext) { enum zsv_ext_status stat = zsv_ext_status_ok; if (ext) { if (ext->dl) { if (ext->module.exit && ext->inited) { stat = ext->module.exit(); if (stat != zsv_ext_status_ok) handle_ext_err(ext, NULL, stat); } dlclose(ext->dl); } for (struct zsv_ext_command *next, *cmd = ext->commands; cmd; cmd = next) { next = cmd->next; ext_command_delete(cmd); } free(ext->id); free(ext->help); free(ext->license); free(ext->thirdparty); free(ext); } return stat; } /** * zsv_ext_init(): return error */ static int zsv_ext_init(void *dl, const char *dl_name, struct zsv_ext *ext) { memset(ext, 0, sizeof(*ext)); if (dl) { #define zsv_ext_func_assign(sig, x) ext->module.x = sig zsv_dlsym(dl, "zsv_ext_" #x) #include "cli_internal.c.in" /* check if required functions are present */ if (ext->module.id) return 0; fprintf(stderr, "Dynamic library %s missing required function zsv_ext_id()\n", dl_name); } return 1; } #ifdef __APPLE__ #include #endif #ifdef _WIN32 char *get_module_name(HMODULE handle) { wchar_t *pth16 = (wchar_t *)malloc(32768); // max long path length DWORD n16 = GetModuleFileNameW(handle, pth16, 32768); if (n16 <= 0) { free(pth16); return NULL; } pth16[n16] = L'\0'; DWORD n8 = WideCharToMultiByte(CP_UTF8, 0, pth16, -1, NULL, 0, NULL, NULL); if (n8 == 0) { free(pth16); return NULL; } char *filepath = (char *)malloc(++n8); if (!WideCharToMultiByte(CP_UTF8, 0, pth16, -1, filepath, n8, NULL, NULL)) { free(pth16); free(filepath); return NULL; } free(pth16); return filepath; } #endif static char *dl_name_from_func(const void *func) { #ifdef _WIN32 HMODULE hModule = NULL; if (GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS | GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT, (LPCTSTR)func, &hModule)) return get_module_name(hModule); #elif defined __APPLE__ Dl_info info; if (dladdr(func, &info)) return strdup(info.dli_fname); #else (void)(func); #endif return NULL; } #ifdef __EMSCRIPTEN__ static void *zsv_dlopen(const char *path, int mode) { fprintf(stderr, "Emscripten dlopen() does not work for shared libs > 4kb!" "fix this when it does." "See https://github.com/emscripten-core/emscripten/issues/15795\n"); return dlopen(path, mode); } #else #define zsv_dlopen dlopen #endif static struct zsv_ext *zsv_ext_new(const char *dl_name, const char *id, char verbose) { struct zsv_ext *dl = NULL; struct zsv_ext tmp; #ifdef __EMSCRIPTEN__ void *h = NULL; #else void *h = zsv_dlopen(dl_name, RTLD_LAZY); #endif if (!h) { // not in system search path. try again in the same path as our executable (or in /ext if in emcc) char exe_path[FILENAME_MAX]; char have_path = 0; #ifdef __EMSCRIPTEN__ size_t n = snprintf(exe_path, sizeof(exe_path), "/tmp/zsvext%s.so", id); if (n > 0 && n < sizeof(exe_path)) { fprintf(stderr, "Opening %s\n", exe_path); h = zsv_dlopen(exe_path, RTLD_LAZY); } else fprintf(stderr, "Opening what???\n"); #else size_t n = zsv_get_executable_path(exe_path, sizeof(exe_path)); if (n > 0 && n < sizeof(exe_path)) { char *end = strrchr(exe_path, FILESLASH); if (end) { end[1] = '\0'; n = strlen(exe_path); size_t n2 = snprintf(exe_path + n, sizeof(exe_path) - n, "%s", dl_name); if (n2 > 0 && n + n2 < sizeof(exe_path)) { have_path = 1; h = zsv_dlopen(exe_path, RTLD_LAZY); } } } #endif if (verbose) { if (have_path) fprintf(stderr, "Library %s not found in path; trying exe dir %s\n", dl_name, exe_path); else fprintf(stderr, "Library %s not found in path; cannot determine exe dir\n", dl_name); } } if (!h) #if defined(WIN32) || defined(_WIN32) fprintf(stderr, "Library %s not found\n", dl_name); #else fprintf(stderr, "Library %s failed to load: %s\n", dl_name, dlerror()); #endif // run zsv_ext_init to add to our extension list, even if it's invalid tmp.ok = !zsv_ext_init(h, dl_name, &tmp); const char *m_id = tmp.ok && tmp.module.id ? tmp.module.id() : NULL; if (h && (!m_id || strcmp(m_id, (const char *)id))) { fprintf(stderr, "Library %s: unexpected result from zsv_ext_id()\n" "(got %s, expected %s)\n", id, m_id ? m_id : "(null)", id); tmp.ok = 0; } else if (h && tmp.ok) { if (verbose) { char *image_name = dl_name_from_func((const void *)tmp.module.id); fprintf(stderr, "Loaded %s from %s\n", dl_name, image_name ? image_name : "unknown location"); free(image_name); } } tmp.dl = h; tmp.id = strdup((const char *)id); if (!(dl = calloc(1, sizeof(*dl)))) fprintf(stderr, "Out of memory\n"); else *dl = tmp; return dl; } zsv-1.3.0/app/cli_const.h000066400000000000000000000030621511312357700152510ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #ifndef CLI_LICENSE_H #define CLI_LICENSE_H // clang-format off const char *zsv_license_text_MIT = "Permission is hereby granted, free of charge, to any person obtaining a copy of\n" "this software and associated documentation files (the \"Software\"), to deal in\n" "the Software without restriction, including without limitation the rights to\n" "use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n" "of the Software, and to permit persons to whom the Software is furnished to do\n" "so, subject to the following conditions:\n" "\n" "The above copyright notice and this permission notice shall be included in all\n" "copies or substantial portions of the Software.\n" "\n" "THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n" "IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n" "FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n" "AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n" "LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n" "OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n" "SOFTWARE.\n" ; // clang-format on const char *zsv_thirdparty[] = { "See https://github.com/liquidaty/zsv/blob/main/misc/THIRDPARTY.md", NULL, }; #endif zsv-1.3.0/app/cli_export.h000066400000000000000000000004171511312357700154450ustar00rootroot00000000000000#ifndef ZSV_CLI_EXPORT_H #define ZSV_CLI_EXPORT_H #ifdef __EMSCRIPTEN__ #include #define ZSV_CLI_EXPORT EMSCRIPTEN_KEEPALIVE #ifndef NO_PLAYGROUND #define ZSV_CLI_MAIN main #else #define ZSV_CLI_MAIN zsv #endif #else #define ZSV_CLI_EXPORT #endif #endif zsv-1.3.0/app/cli_ini.c000066400000000000000000000217071511312357700147030ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and zsv contributors. All rights reserved. * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #include #include #include #define INI_HANDLER_LINENO 1 #define INI_CALL_HANDLER_ON_NEW_SECTION 1 #include /** * PREFIX is compile-time option specifying where init data will reside * on *x operating systems, when building from source, this should be * "/usr/local". For packaged distributions, this should be "" * on Windows, this should be either LOCALAPPDATA or APPDATA */ #ifndef PREFIX #if defined(_WIN32) #define PREFIX "LOCALAPPDATA" #elif defined(__EMSCRIPTEN__) #define PREFIX "/tmp" #else #define PREFIX "/usr/local" #endif #endif static void write_extension_config(struct zsv_ext *ext, FILE *f) { fprintf(f, "[%s]\n\n", ext->id); } // config_save: return error static int config_save(struct cli_config *config) { const char *config_filepath = NULL; if (*config->filepath) config_filepath = config->filepath; if (*config->home_filepath) { if (config_filepath) { fprintf(stderr, "config_save: only home or global config filepath should exist, but got both\n"); return 1; } config_filepath = config->home_filepath; } if (!config_filepath) { fprintf(stderr, "config_save: no home or global filepath found\n"); return 1; } int err = 1; char *tmp = zsv_get_temp_filename("zsv_config_XXXXXXXX"); if (!tmp) fprintf(stderr, "Out of memory!\n"); else { FILE *f = fopen(tmp, "wb"); if (!f) perror(tmp); else { for (struct zsv_ext *ext = config->extensions; ext; ext = ext->next) write_extension_config(ext, f); fclose(f); if ((err = zsv_replace_file(tmp, config_filepath))) perror(config_filepath); else if (config_filepath != config->home_filepath) { // try to change permissions to allow anyone to read mode_t new_permissions = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH; if (chmod(config_filepath, new_permissions) != 0) { ; // maybe handle error here } } } free(tmp); } return err; } static enum zsv_ext_status zsv_ext_delete(struct zsv_ext *ext); static int remove_extension(struct zsv_ext **list, struct zsv_ext *element) { char found = 1; for (; *list; list = &(*list)->next) { if (*list == element) { *list = element->next; found = 1; break; } } if (found) { element->next = NULL; return zsv_ext_delete(element); } return 1; } static struct zsv_ext *find_extension(struct cli_config *config, const char *id) { for (struct zsv_ext *ext = config ? config->extensions : NULL; ext; ext = ext->next) if (!zsv_stricmp((const unsigned char *)ext->id, (const unsigned char *)id)) return ext; return NULL; } static char extension_id_ok(const unsigned char *id) { for (int i = 0; id[i]; i++) if (!((id[i] >= 'a' && id[i] <= 'z') || (id[i] >= '0' && id[i] <= '9'))) return 0; return 1; } // load an extension static struct zsv_ext *load_extension_dl(const unsigned char *extension_id, char verbose) { char *extension_name; struct zsv_ext *ext = NULL; asprintf(&extension_name, "zsvext%s.%s", extension_id, DL_SUFFIX); if (!extension_name) fprintf(stderr, "Out of memory!\n"); else if ((ext = zsv_ext_new(extension_name, (const char *)extension_id, verbose))) { if (verbose && ext->dl) fprintf(stderr, "Loaded extension %s\n", extension_name); free(extension_name); } return ext; } // load an extension and if successful, add to config->extensions head static int add_extension(const char *id, struct zsv_ext **exts, char ignore_err, char verbose) { int err = 0; const char *dash = strchr(id, '-'); unsigned char *extension_id = NULL; size_t len; if (dash) len = dash - id; else len = strlen(id); extension_id = zsv_strtolowercase((const unsigned char *)id, &len); if (extension_id && len) { struct zsv_ext *ext = NULL; if (!extension_id_ok(extension_id)) fprintf(stderr, "Invalid extension id: %s\n", extension_id), err = 1; else if (!(ext = load_extension_dl(extension_id, verbose))) fprintf(stderr, "Unexpected error loading extension %s\n", extension_id); else { if (!ignore_err && !(ext && ext->ok)) { fprintf(stderr, "Invalid extension: %s\n", extension_id), err = 1; zsv_ext_delete(ext); } else { ext->next = *exts; *exts = ext; } } } free(extension_id); return err; } static int config_ini_handler(void *ctx, const char *section, const char *name, const char *value, int lineno) { int err = 0; struct cli_config *config = ctx; if (section) { if (!name && !value) { // initialize section if (zsv_stricmp((const unsigned char *)section, (const unsigned char *)"default")) { if (!(strlen(section) >= ZSV_EXTENSION_ID_MIN_LEN && strlen(section) <= ZSV_EXTENSION_ID_MAX_LEN)) { fprintf(stderr, "Invalid extension id: %s. Length must be between %i and %i\n", section, ZSV_EXTENSION_ID_MIN_LEN, ZSV_EXTENSION_ID_MAX_LEN); err = 1; } else { struct zsv_ext *ext = find_extension(config, section); if (!ext && add_extension(section, &config->extensions, 1, config->verbose)) { if (config->err_if_not_found) { err = 1; fprintf(stderr, "At line %i in %s\n", lineno, config->current_filepath); } } } } } } return err ? 0 : 1; } // get_config_file(): return non-zero on success static size_t get_ini_file(char *buff, size_t buffsize, char global) { size_t len = 0; int n = 0; if (global) { len = zsv_get_config_dir(buff, buffsize, PREFIX); if (len > 0) n = snprintf(buff + len, buffsize - len, "%czsv", FILESLASH); } else { n = zsv_get_home_dir(buff, buffsize); if (n > 0 && (size_t)n < buffsize) { len = (size_t)n; n = snprintf(buff + len, buffsize - len, "%c.config%czsv", FILESLASH, FILESLASH); } } if (len > 0) { if (n > 0 && (size_t)n + len < buffsize) len += (size_t)n; else len = 0; } if (len && buffsize > len) { int dir_exists = zsv_dir_exists(buff); if (!dir_exists) { if (zsv_mkdirs(buff, 0)) // unable to create the config file parent dir perror(buff); else if (global) { dir_exists = 1; // try to make dir read-only for all // Set permissions to rwxr-xr-x (0755) mode_t new_permissions = S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; chmod(buff, new_permissions); // to do: maybe handle error? } } if (dir_exists) { n = snprintf(buff + len, buffsize - len, "%czsv.ini", FILESLASH); if (n > 0 && (size_t)n + len < buffsize) return len + (size_t)n; } } return 0; } static int parse_extensions_ini_file(struct cli_config *config, const char *path, int *opened_count) { int err = 0; if (path && *path) { FILE *f = fopen(path, "r"); if (!f) err = errno; else { (*opened_count)++; config->current_filepath = path; err = ini_parse_file(f, config_ini_handler, config); fclose(f); if (err > 0) fprintf(stderr, "Error parsing %s on line %i\n", config->current_filepath, err); } } return err; } // parse_extensions_ini: return -2 (unexpected), -1 (file open), 0 (success), > 0 (line number) static int parse_extensions_ini(struct cli_config *config, char err_if_not_found, char verbose) { int err = 0; int opened_config_files = 0; char old_err_if_not_found = config->err_if_not_found; char old_verbose = config->verbose; config->err_if_not_found = err_if_not_found; config->verbose = verbose; parse_extensions_ini_file(config, config->home_filepath, &opened_config_files); parse_extensions_ini_file(config, config->filepath, &opened_config_files); if (err_if_not_found && opened_config_files == 0) { err = -1; fprintf(stderr, "No extensions configured%s%s%s%s\n", verbose ? " or file(s) not found:\n " : "", verbose ? config->home_filepath : "", verbose ? "\n " : "", verbose ? config->filepath : ""); } config->err_if_not_found = old_err_if_not_found; config->verbose = old_verbose; return err; } static struct zsv_ext_command *ext_command_new(const char *id, const char *help, enum zsv_ext_status (*extmain)(zsv_execution_context ctx, int argc, const char *argv[], struct zsv_opts *)) { struct zsv_ext_command *cmd = calloc(1, sizeof(*cmd)); cmd->id = strdup(id ? id : ""); cmd->help = help ? strdup(help) : NULL; cmd->main = extmain; return cmd; } static void ext_command_delete(struct zsv_ext_command *cmd) { if (cmd) { free(cmd->id); free(cmd->help); free(cmd); } } zsv-1.3.0/app/cli_internal.h000066400000000000000000000014121511312357700157340ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include struct zsv_ext_command { struct zsv_ext_command *next; char *id; char *help; zsv_ext_main main; }; struct zsv_ext { struct zsv_ext *next; void *dl; char *id; char ok; char *help; char *license; char *thirdparty; struct zsv_ext_command *commands; struct zsv_ext_command **commands_next; #define zsv_init_started 1 #define zsv_init_ok 2 char inited; struct { #include "cli_internal.h.in" } module; }; static int zsv_unload_custom_cmds(struct zsv_ext *ext); static enum zsv_ext_status zsv_ext_delete(struct zsv_ext *ext); zsv-1.3.0/app/compare.c000066400000000000000000001040011511312357700147100ustar00rootroot00000000000000/* * Copyright (C) 2023 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #include #include #include #include extern sqlite3_module CsvModule; #include #include #define ZSV_COMMAND compare #include "zsv_command.h" #include "compare.h" #include "compare_internal.h" #include "compare_unique_colname.c" #include "compare_added_column.c" #include "compare_sort.c" #define ZSV_COMPARE_OUTPUT_TYPE_JSON 'j' static struct zsv_compare_key **zsv_compare_key_add(struct zsv_compare_key **next, const char *s, int *err) { struct zsv_compare_key *k = calloc(1, sizeof(*k)); if (!k) *err = 1; else { k->name = s; *next = k; next = &k->next; } return next; } static void zsv_compare_output_property_name(struct zsv_compare_data *data, int new_row, char skip) { if (new_row) data->writer.cell_ix = 0; else data->writer.cell_ix++; if (!skip) { if (data->writer.cell_ix < data->writer.properties.used) jsonwriter_object_key(data->writer.handle.jsw, data->writer.properties.names[data->writer.cell_ix]); else jsonwriter_object_key(data->writer.handle.jsw, "Error missing key!"); } } static void zsv_compare_output_strn(struct zsv_compare_data *data, const unsigned char *s, size_t len, int new_row, int quoted) { if (data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON) { if (data->writer.object && s == NULL) { zsv_compare_output_property_name(data, new_row, 1); return; } if (data->writer.object) zsv_compare_output_property_name(data, new_row, 0); if (s == NULL) jsonwriter_null(data->writer.handle.jsw); else jsonwriter_strn(data->writer.handle.jsw, s, len); } else { if (s == NULL) zsv_writer_cell_blank(data->writer.handle.csv, ZSV_WRITER_SAME_ROW); else zsv_writer_cell(data->writer.handle.csv, new_row, s, len, quoted); } } static void zsv_compare_output_str(struct zsv_compare_data *data, const unsigned char *s, int new_row, int quoted) { zsv_compare_output_strn(data, s, s ? strlen((const char *)s) : 0, new_row, quoted); } static void zsv_compare_output_zu(struct zsv_compare_data *data, size_t n, int new_row) { if (data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON) { if (data->writer.object) zsv_compare_output_property_name(data, new_row, 0); jsonwriter_int(data->writer.handle.jsw, n); } else zsv_writer_cell_zu(data->writer.handle.csv, ZSV_WRITER_NEW_ROW, data->row_count); } static void zsv_compare_header_str(struct zsv_compare_data *data, const unsigned char *s, int new_row, int quoted) { if (!(data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON && data->writer.object)) zsv_compare_output_str(data, s, new_row, quoted); else { // we will output as JSON objects, so save the property names for later use if (data->writer.properties.used + 1 < data->writer.properties.allocated) data->writer.properties.names[data->writer.properties.used++] = strdup(s ? (const char *)s : ""); else fprintf(stderr, "zsv_compare_header_str: insufficient header names allocation adding %s!\n", s); } } static void zsv_compare_allocate_properties(struct zsv_compare_data *data, unsigned count) { if (data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON && data->writer.object && count > 0) { if ((data->writer.properties.names = malloc(count * sizeof(*data->writer.properties.names)))) data->writer.properties.allocated = count; } } static void zsv_compare_json_row_start(struct zsv_compare_data *data) { if (data->writer.object) jsonwriter_start_object(data->writer.handle.jsw); else jsonwriter_start_array(data->writer.handle.jsw); } static void zsv_compare_json_row_end(struct zsv_compare_data *data) { if (data->writer.object) jsonwriter_end_object(data->writer.handle.jsw); else jsonwriter_end_array(data->writer.handle.jsw); } static void zsv_compare_output_tuple(struct zsv_compare_data *data, struct zsv_compare_input *key_input, const unsigned char *colname, struct zsv_cell *values, // in original input order char is_key) { // print ID | Column | Value 1 | ... | Value N if (data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON) zsv_compare_json_row_start(data); // TO DO: output ID values if (!data->keys) // id is effectively just row number zsv_compare_output_zu(data, data->row_count, ZSV_WRITER_NEW_ROW); else { for (unsigned idx = 0; idx < key_input->key_count; idx++) { struct zsv_cell *c = &key_input->keys[idx].value; zsv_compare_output_strn(data, c->str, c->len, idx == 0 ? ZSV_WRITER_NEW_ROW : ZSV_WRITER_SAME_ROW, c->quoted); } } // output additional columns for (struct zsv_compare_added_column *ac = data->added_columns; ac; ac = ac->next) { if (!ac->input) { if (data->writer.type != ZSV_COMPARE_OUTPUT_TYPE_JSON) zsv_compare_output_str(data, NULL, ZSV_WRITER_SAME_ROW, 0); } else { struct zsv_cell c = data->get_cell(ac->input, ac->col_ix); zsv_compare_output_strn(data, c.str, c.len, ZSV_WRITER_SAME_ROW, c.quoted); } } // output column name of this cell zsv_compare_output_str(data, colname, ZSV_WRITER_SAME_ROW, 1); for (unsigned i = 0; i < data->input_count; i++) { struct zsv_compare_input *input = &data->inputs[i]; if ((input->done || !input->row_loaded) && !is_key) { // no data for this input zsv_compare_output_str(data, NULL, ZSV_WRITER_SAME_ROW, 0); } else { struct zsv_cell *value = &values[i]; zsv_compare_output_strn(data, value->str, value->len, ZSV_WRITER_SAME_ROW, value->quoted); } } if (data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON) zsv_compare_json_row_end(data); } static const unsigned char *zsv_compare_combined_key_names(struct zsv_compare_data *data) { if (!data->combined_key_names) { size_t len = 2; for (unsigned key_ix = 0; key_ix < data->key_count; key_ix++) { struct zsv_compare_key *key = &data->keys[key_ix]; if (key && key->name) len += strlen(key->name) + 1; } if ((data->combined_key_names = calloc(1, len))) { unsigned char *start = NULL; for (unsigned key_ix = 0; key_ix < data->key_count; key_ix++) { struct zsv_compare_key *key = &data->keys[key_ix]; if (key && key->name) { if (start) { *start = (unsigned char)'|'; start++; } else start = data->combined_key_names; strcpy((char *)start, key->name); start += strlen((char *)start); } } } } return data->combined_key_names; } static void zsv_compare_print_row(struct zsv_compare_data *data, const unsigned last_ix // last input ix in inputs_to_sort ) { struct zsv_compare_input *key_input = data->inputs_to_sort[0]; // for now, output format is simple: for each value, // output a single scalar if the values are the same, // and a tuple if they differ struct zsv_cell *values = calloc(data->input_count, sizeof(*values)); if (!values) { data->status = zsv_compare_status_memory; return; } #define ZSV_COMPARE_MISSING "Missing" // if we don't have data from every input, then output "Missing" for missing inputs char got_missing = 0; for (unsigned i = 0; i < data->input_count; i++) { struct zsv_compare_input *input = data->inputs_to_sort[i]; if (i > last_ix) { got_missing = 1; unsigned input_ix = input->index; values[input_ix].str = (unsigned char *)ZSV_COMPARE_MISSING; values[input_ix].len = strlen(ZSV_COMPARE_MISSING); } } if (got_missing) { const unsigned char *key_names = data->print_key_col_names ? zsv_compare_combined_key_names(data) : (const unsigned char *)""; zsv_compare_output_tuple(data, key_input, key_names, values, 1); // reset values memset(values, 0, data->input_count * sizeof(*values)); } // for each output column zsv_compare_unique_colname *output_col = data->output_colnames_first; for (unsigned output_ix = 0; output_ix < data->output_colcount && output_col != NULL; output_ix++, output_col = output_col->next) { if (output_col->is_key) continue; char different = 0; unsigned first_input_ix = 0; for (unsigned i = 0; i <= last_ix; i++) { struct zsv_compare_input *input = data->inputs_to_sort[i]; if (input->done || !input->row_loaded) continue; unsigned input_ix = input->index; if (i == 0) first_input_ix = input_ix; unsigned col_ix_plus_1 = input->out2in[output_ix]; if (col_ix_plus_1 == 0) values[input_ix].len = 0; else { unsigned input_col_ix = col_ix_plus_1 - 1; if (!output_col) output_col = input->output_colnames[input_col_ix]; values[input_ix] = data->get_cell(input, input_col_ix); if (i > 0 && !different && data->cmp(data->cmp_ctx, values[first_input_ix], values[input_ix], data, input_col_ix)) { different = 1; if (data->tolerance.value && values[first_input_ix].len < ZSV_COMPARE_MAX_NUMBER_BUFF_LEN && values[input_ix].len < ZSV_COMPARE_MAX_NUMBER_BUFF_LEN) { // check if both are numbers with a difference less than the given tolerance double d1, d2; memcpy(data->tolerance.str1, values[first_input_ix].str, values[first_input_ix].len); data->tolerance.str1[values[first_input_ix].len] = '\0'; memcpy(data->tolerance.str2, values[input_ix].str, values[input_ix].len); data->tolerance.str2[values[input_ix].len] = '\0'; if (!zsv_strtod_exact(data->tolerance.str1, &d1) && !zsv_strtod_exact(data->tolerance.str2, &d2) && fabs(d1 - d2) < data->tolerance.value) different = 0; } } } } if (different) { zsv_compare_output_tuple(data, key_input, output_col->name, values, 0); if (data->diff_count < INT_MAX) data->diff_count++; } } free(values); } static void zsv_compare_input_free(struct zsv_compare_input *input) { zsv_delete(input->parser); zsv_compare_unique_colnames_delete(&input->colnames); if (input->added) sqlite3_zsv_list_remove(input->path); free(input->out2in); if (input->stream) fclose(input->stream); free(input->output_colnames); free(input->keys); if (input->sort_stmt) { sqlite3_finalize(input->sort_stmt); } } static enum zsv_compare_status zsv_compare_set_inputs(struct zsv_compare_data *data, unsigned input_count) { if (!input_count || !(data->inputs = calloc(input_count, sizeof(*data->inputs))) || !(data->inputs_to_sort = calloc(input_count, sizeof(*data->inputs_to_sort)))) return zsv_compare_status_memory; data->input_count = input_count; for (unsigned i = 0; i < input_count; i++) { struct zsv_compare_input *input = &data->inputs[i]; input->index = i; data->inputs_to_sort[i] = input; if (data->key_count) { if (!(input->keys = calloc(data->key_count, sizeof(*input->keys)))) return zsv_compare_status_memory; input->key_count = data->key_count; unsigned j = 0; for (struct zsv_compare_key *key = data->keys; key; key = key->next) input->keys[j++].key = key; } } return zsv_compare_status_ok; } static int zsv_compare_cell(void *ctx, struct zsv_cell c1, struct zsv_cell c2, void *data, unsigned col_ix); static void zsv_compare_output_begin(struct zsv_compare_data *data) { if (data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON) { if (!(data->writer.handle.jsw = jsonwriter_new(stdout))) // to do: data->out data->status = zsv_compare_status_memory; else { if (data->writer.compact) jsonwriter_set_option(data->writer.handle.jsw, jsonwriter_option_compact); jsonwriter_start_array(data->writer.handle.jsw); } } else { if (!(data->writer.handle.csv = zsv_writer_new(NULL))) data->status = zsv_compare_status_memory; } if (data->status == zsv_compare_status_ok) { unsigned header_col_count = (data->key_count ? data->key_count : 1) + // match keys 2 + // column name and column value data->input_count + // input names data->added_colcount; // added columns zsv_compare_allocate_properties(data, header_col_count); // write header row if (data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON && !data->writer.object) jsonwriter_start_array(data->writer.handle.jsw); // write keys if (!data->keys) // id is effectively just row number zsv_compare_header_str(data, (const unsigned char *)"Row #", ZSV_WRITER_NEW_ROW, 0); else { for (struct zsv_compare_key *key_name = data->keys; key_name; key_name = key_name->next) zsv_compare_header_str(data, (const unsigned char *)key_name->name, key_name == data->keys ? ZSV_WRITER_NEW_ROW : ZSV_WRITER_SAME_ROW, 1); } // write additional column names for (struct zsv_compare_added_column *ac = data->added_columns; ac; ac = ac->next) zsv_compare_header_str(data, ac->colname->name, ZSV_WRITER_SAME_ROW, 1); // write "Column" zsv_compare_header_str(data, (const unsigned char *)"Column", ZSV_WRITER_SAME_ROW, 0); // write input name(s) for (unsigned i = 0; i < data->input_count; i++) { struct zsv_compare_input *input = &data->inputs[i]; zsv_compare_header_str(data, (const unsigned char *)input->path, ZSV_WRITER_SAME_ROW, 1); } if (data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON && !data->writer.object) jsonwriter_end_array(data->writer.handle.jsw); } } static void zsv_compare_output_end(struct zsv_compare_data *data) { if (data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON) { if (data->writer.handle.jsw) jsonwriter_end(data->writer.handle.jsw); } else { zsv_writer_flush(data->writer.handle.csv); } if (data->status == zsv_compare_status_no_more_input) data->status = zsv_compare_status_ok; } static enum zsv_status zsv_compare_next_unsorted_row(struct zsv_compare_input *input) { return zsv_next_row(input->parser); } static struct zsv_cell zsv_compare_get_unsorted_cell(struct zsv_compare_input *input, unsigned ix) { return zsv_get_cell_trimmed(input->parser, ix); } static unsigned zsv_compare_get_unsorted_colcount(struct zsv_compare_input *input) { return zsv_cell_count(input->parser); } static enum zsv_compare_status input_init_unsorted(struct zsv_compare_data *data, struct zsv_compare_input *input, struct zsv_opts *opts, struct zsv_prop_handler *custom_prop_handler) { if (!(input->stream = fopen(input->path, "rb"))) { perror(input->path); return zsv_compare_status_error; } struct zsv_opts these_opts = *opts; these_opts.stream = input->stream; enum zsv_status stat = zsv_new_with_properties(&these_opts, custom_prop_handler, input->path, &input->parser); if (stat != zsv_status_ok) return zsv_compare_status_error; if (data->next_row(input) != zsv_status_row) return zsv_compare_status_error; return zsv_compare_status_ok; } zsv_compare_handle zsv_compare_new(void) { zsv_compare_handle z = calloc(1, sizeof(*z)); #if defined(ZSV_COMPARE_CMP_FUNC) && defined(ZSV_COMPARE_CMP_CTX) zsv_compare_set_comparison(z, ZSV_COMPARE_CMP_FUNC, ZSV_COMPARE_CMP_CTX); #else zsv_compare_set_comparison(z, zsv_compare_cell, NULL); #endif z->output_colnames_next = &z->output_colnames; z->next_row = zsv_compare_next_unsorted_row; z->get_cell = zsv_compare_get_unsorted_cell; z->get_column_name = zsv_compare_get_unsorted_cell; z->get_column_count = zsv_compare_get_unsorted_colcount; z->input_init = input_init_unsorted; return z; } static void zsv_compare_set_sorted_callbacks(struct zsv_compare_data *data) { data->next_row = zsv_compare_next_sorted_row; data->get_cell = zsv_compare_get_sorted_cell; data->get_column_name = zsv_compare_get_sorted_colname; data->get_column_count = zsv_compare_get_sorted_colcount; data->input_init = input_init_sorted; } static enum zsv_compare_status zsv_compare_init_sorted(struct zsv_compare_data *data) { int rc; // to do: use sql_internal.h interface const char *db_url = data->sort_in_memory ? "file::memory:" : ""; if ((rc = sqlite3_open_v2(db_url, &data->sort_db, SQLITE_OPEN_URI | SQLITE_OPEN_READWRITE, NULL)) == SQLITE_OK && data->sort_db && (rc = sqlite3_create_module(data->sort_db, "csv", &CsvModule, 0) == SQLITE_OK)) { zsv_compare_set_sorted_callbacks(data); return zsv_compare_status_ok; } return zsv_compare_status_error; } static void zsv_compare_data_free(struct zsv_compare_data *data) { if (data->writer.type == ZSV_COMPARE_OUTPUT_TYPE_JSON) { if (data->writer.handle.jsw) jsonwriter_delete(data->writer.handle.jsw); } else zsv_writer_delete(data->writer.handle.csv); for (unsigned i = 0; i < data->input_count; i++) zsv_compare_input_free(&data->inputs[i]); free(data->inputs); free(data->combined_key_names); free(data->inputs_to_sort); for (unsigned i = 0; i < data->writer.properties.used; i++) free(data->writer.properties.names[i]); free(data->writer.properties.names); if (data->sort) { if (data->sort_db) sqlite3_close(data->sort_db); } zsv_compare_added_column_delete(data->added_columns); zsv_compare_unique_colnames_delete(&data->output_colnames); zsv_compare_unique_colnames_delete(&data->added_colnames); for (struct zsv_compare_key *next, *key = data->keys; key; key = next) { next = key->next; free(key); } } void zsv_compare_delete(zsv_compare_handle z) { if (z) { zsv_compare_data_free(z); free(z); } } void zsv_compare_set_comparison(struct zsv_compare_data *data, zsv_compare_cell_func cmp, void *cmp_ctx) { data->cmp = cmp; data->cmp_ctx = cmp_ctx; } static int zsv_compare_cell(void *ctx, struct zsv_cell c1, struct zsv_cell c2, void *data, unsigned col_ix) { (void)(ctx); (void)(data); (void)(col_ix); return zsv_strincmp(c1.str, c1.len, c2.str, c2.len); } static enum zsv_compare_status zsv_compare_advance(struct zsv_compare_data *data) { // advance each input (if not row_loaded) to their next row char got = 0; for (unsigned i = 0; i < data->input_count; i++) { struct zsv_compare_input *input = &data->inputs[i]; if (input->done) continue; if (input->row_loaded) { got = 1; continue; } if (data->next_row(input) != zsv_status_row) input->done = 1; else { for (unsigned idx = 0; idx < input->key_count; idx++) input->keys[idx].value = data->get_cell(input, input->keys[idx].col_ix); input->row_loaded = 1; got = 1; } } return got ? zsv_compare_status_ok : zsv_compare_status_no_more_input; } static int zsv_compare_inputp_cmp(const void *inputpx, const void *inputpy) { struct zsv_compare_input *const *xp = inputpx; struct zsv_compare_input *const *yp = inputpy; const struct zsv_compare_input *x = *xp; const struct zsv_compare_input *y = *yp; if (!x->row_loaded && !y->row_loaded) return 0; if (!x->row_loaded) return 1; if (!y->row_loaded) return -1; int cmp = 0; for (unsigned i = 0; !cmp && i < x->key_count && i < y->key_count; i++) // for multibyte input, the input must be also sorted lexicographically // to avoid potential mismatches // see e.g. https://stackoverflow.com/questions/4611302/sorting-utf-8-strings cmp = zsv_strincmp(x->keys[i].value.str, x->keys[i].value.len, y->keys[i].value.str, y->keys[i].value.len); return cmp; } static enum zsv_compare_status zsv_compare_next(struct zsv_compare_data *data) { data->status = zsv_compare_advance(data); if (data->status != zsv_compare_status_ok) return data->status; data->row_count++; // sort the inputs by ID value first, and input position second // for as many inputs have the same smallest ID values, output them as a group // and set input->row_loaded to 0 qsort(data->inputs_to_sort, data->input_count, sizeof(*data->inputs_to_sort), zsv_compare_inputp_cmp); // find the next subset of inputs with identical id values and process those inputs unsigned last = 0; struct zsv_compare_input *min_input = data->inputs_to_sort[0]; for (unsigned tmp_i = 1; tmp_i < data->input_count; tmp_i++) { struct zsv_compare_input *tmp = data->inputs_to_sort[tmp_i]; if (!tmp->row_loaded) continue; if (!zsv_compare_inputp_cmp(&min_input, &tmp)) { // keys are the same last = tmp_i; continue; } // keys are different break; } // print row zsv_compare_print_row(data, last); // reset row_loaded for (unsigned tmp = 0; tmp <= last; tmp++) data->inputs_to_sort[tmp]->row_loaded = 0; return zsv_compare_status_ok; } static int compare_usage(void) { static const char *usage[] = { "Usage: compare [options] ...", "", "Options:", " -h,--help : show usage", " -k,--key : specify a column to match rows on", " can be specified multiple times", " -a,--add : specify an additional column to output", " will use the [first input] source", " --sort : sort on keys before comparing", " --sort-in-memory : for sorting, use in-memory instead of temporary db", " (see https://www.sqlite.org/inmemorydb.html)", " --tolerance : ignore differences where both values are numeric", " strings with values differing by less than the given", " amount e.g. --tolerance 0.01 will ignore differences", " of numeric strings such as 123.45 vs 123.44", " --json : output as JSON", " --json-compact : output as compact JSON", " --json-object : output as an array of objects", " --print-key-colname: when outputting key column diffs,", " print column name instead of ", " -e,--exit-code : return < 0 on error, else the number of differences found", "", "NOTES", "", " If no keys are specified, each row from each input is compared to the", " row in the corresponding position in each other input (all the first rows", " from each input are compared to each other, all the second rows are compared to", " each other, etc).", "", " If one or more key is specified, each input is assumed to already be", " lexicographically sorted in ascending order; this is a necessary condition", " for the output to be correct (unless the --sort option is used). However, it", " is not required for each input to contain the same population of row keys", "", " The --sort option uses sqlite3 (unindexed) sort and is intended to be a", " convenience rather than performance feature. If you need high performance", " sorting, other solutions, such as a multi-threaded parallel sort, are likely", " superior. For handling quoted data, `2tsv` can be used to convert to a delimited", " format without quotes, that can be directly parsed with common UNIX utilities", " (such as `sort`), and `select --unescape` can be used to convert back", NULL, }; for (size_t i = 0; usage[i]; i++) printf("%s\n", usage[i]); return 0; } // TO DO: consolidate w sql.c, move common code to utils/db.c int ZSV_MAIN_FUNC(ZSV_COMMAND)(int argc, const char *argv[], struct zsv_opts *opts, struct zsv_prop_handler *custom_prop_handler) { // See sql.c re passing options to sqlite3 when sorting is used if (argc < 2 || !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")) { compare_usage(); return argc < 2 ? 1 : 0; } // temporarily hold the input file names const char **input_filenames = calloc(argc, sizeof(*input_filenames)); if (!input_filenames) return zsv_compare_status_memory; zsv_compare_handle data = zsv_compare_new(); if (!data) { free(input_filenames); return zsv_compare_status_memory; } int err = 0; // initialization starts here. to do: make this a separate function unsigned input_count = 0; struct zsv_compare_key **next_key = &data->keys; struct zsv_compare_added_column **added_column_next = &data->added_columns; for (int arg_i = 1; data->status == zsv_compare_status_ok && !err && arg_i < argc; arg_i++) { const char *arg = argv[arg_i]; #include if (!strcmp(arg, "-k") || !strcmp(arg, "--key")) { const char *next_arg = zsv_next_arg(++arg_i, argc, argv, &err); if (next_arg) { next_key = zsv_compare_key_add(next_key, next_arg, &err); data->key_count++; } } else if (!strcmp(arg, "-a") || !strcmp(arg, "--add")) { const char *next_arg = zsv_next_arg(++arg_i, argc, argv, &err); if (next_arg) { zsv_compare_unique_colname *colname; if ((data->status = zsv_compare_unique_colname_add(&data->added_colnames, (const unsigned char *)next_arg, strlen(next_arg), &colname)) == zsv_compare_status_ok) { // add to linked list for use after all data->output_colnames are allocated added_column_next = zsv_compare_added_column_add(added_column_next, colname, &data->status); if (data->status == zsv_compare_status_ok) data->added_colcount++; } } } else if (!strcmp(arg, "--tolerance")) { const char *next_arg = zsv_next_arg(++arg_i, argc, argv, &err); if (next_arg) { if (zsv_strtod_exact(next_arg, &data->tolerance.value)) fprintf(stderr, "Invalid numeric value: %s\n", next_arg), err = 1; else if (data->tolerance.value < 0) fprintf(stderr, "Tolerance must be greater than zero (got %s)\n", next_arg), err = 1; else data->tolerance.value = nextafterf(data->tolerance.value, INFINITY); } } else if (!strcmp(arg, "--sort")) { data->sort = 1; } else if (!strcmp(arg, "--exit-code") || !strcmp(arg, "-e")) { data->return_count = 1; } else if (!strcmp(arg, "--json")) { data->writer.type = ZSV_COMPARE_OUTPUT_TYPE_JSON; } else if (!strcmp(arg, "--json-object")) { data->writer.type = ZSV_COMPARE_OUTPUT_TYPE_JSON; data->writer.object = 1; } else if (!strcmp(arg, "--json-compact")) { data->writer.type = ZSV_COMPARE_OUTPUT_TYPE_JSON; data->writer.compact = 1; } else if (!strcmp(arg, "--print-key-colname")) { data->print_key_col_names = 1; } else input_filenames[input_count++] = arg; } struct zsv_opts original_default_opts; struct zsv_prop_handler original_default_custom_prop_handler; if (data->sort) { if (!data->key_count) { fprintf(stderr, "Error: --sort requires one or more keys\n"); data->status = zsv_compare_status_error; } else { original_default_opts = zsv_get_default_opts(); zsv_set_default_opts(*opts); if (custom_prop_handler) { original_default_custom_prop_handler = zsv_get_default_custom_prop_handler(); zsv_set_default_custom_prop_handler(*custom_prop_handler); } if (data->status == zsv_compare_status_ok) data->status = zsv_compare_init_sorted(data); } } if (err && data->status == zsv_compare_status_ok) data->status = zsv_compare_status_error; else if (!input_count) data->status = zsv_compare_status_error; else if (data->status == zsv_compare_status_ok) { if ((data->status = zsv_compare_set_inputs(data, input_count)) == zsv_compare_status_ok) { // initialize parsers for (unsigned ix = 0; data->status == zsv_compare_status_ok && ix < input_count; ix++) { struct zsv_compare_input *input = &data->inputs[ix]; input->path = input_filenames[ix]; data->status = data->input_init(data, input, opts, custom_prop_handler); } } if (data->status == zsv_compare_status_ok) { // find keys for (unsigned i = 0; data->status == zsv_compare_status_ok && i < data->input_count; i++) { struct zsv_compare_input *input = &data->inputs[i]; if ((input->col_count = data->get_column_count(input))) { if (!(input->output_colnames = calloc(input->col_count, sizeof(*input->output_colnames)))) { data->status = zsv_compare_status_memory; break; } } unsigned found_keys = 0; for (unsigned j = 0; j < input->col_count && !input->done && data->status == zsv_compare_status_ok; j++) { struct zsv_cell colname = data->get_column_name(input, j); const unsigned char *colname_s = colname.str; unsigned colname_len = colname.len; zsv_compare_unique_colname *input_col; data->status = zsv_compare_unique_colname_add(&input->colnames, colname_s, colname_len, &input_col); if (data->status != zsv_compare_status_ok) break; if (input_col) { // now that we know this colname+instance_num is unique to this input // check if it is a key for (unsigned key_ix = 0; found_keys < input->key_count && key_ix < input->key_count; key_ix++) { struct zsv_compare_input_key *k = &input->keys[key_ix]; if (!k->found && !zsv_strincmp(colname_s, colname_len, (const unsigned char *)k->key->name, strlen(k->key->name))) { k->found = 1; found_keys++; k->col_ix = j; input_col->is_key = 1; break; } } // add it to the output int added = 0; zsv_compare_unique_colname *output_col = zsv_compare_unique_colname_add_if_not_found( &data->output_colnames, colname_s, colname_len, input_col->instance_num, &added); if (!output_col) // error data->status = zsv_compare_status_error; else { if (added) { if (*data->output_colnames_next) (*data->output_colnames_next)->next = output_col; if (!data->output_colnames_first) data->output_colnames_first = output_col; *data->output_colnames_next = output_col; output_col->is_key = input_col->is_key; data->output_colnames_next = &output_col->next; output_col->output_ix = data->output_colcount++; } input->output_colnames[j] = output_col; } } } if (found_keys != data->key_count) { fprintf(stderr, "Unable to find the following keys in %s: ", input->path); for (unsigned int j = 0; j < input->key_count; j++) { struct zsv_compare_input_key *k = &input->keys[j]; if (!k->found) fprintf(stderr, "\n %s", k->key->name); } fprintf(stderr, "\n"); data->status = zsv_compare_status_error; } } } if (data->status == zsv_compare_status_ok) { if (data->output_colcount == 0) data->status = zsv_compare_status_no_data; } char started = 0; if (data->status == zsv_compare_status_ok) { started = 1; zsv_compare_output_begin(data); // match output colnames to added columns for (struct zsv_compare_added_column *ac = data->added_columns; ac; ac = ac->next) { zsv_compare_unique_colname col = {0}; col.name = ac->colname->name; col.name_len = ac->colname->name_len; col.instance_num = ac->colname->instance_num; ac->output_colname = sglib_zsv_compare_unique_colname_find_member(data->output_colnames, &col); if (!ac->output_colname) fprintf(stderr, "Warning: added column %.*s not found in any input\n", (int)col.name_len, col.name); } // assign out2in mappings for (unsigned i = 0; data->status == zsv_compare_status_ok && i < data->input_count; i++) { struct zsv_compare_input *input = &data->inputs[i]; if (input->done) continue; if (!(input->out2in = calloc(data->output_colcount, sizeof(*input->out2in)))) data->status = zsv_compare_status_memory; else { for (unsigned j = 0; j < input->col_count; j++) { zsv_compare_unique_colname *output_col = input->output_colnames[j]; if (output_col) { input->out2in[output_col->output_ix] = j + 1; // check if this should be the source of any additional columns for (struct zsv_compare_added_column *ac = data->added_columns; ac; ac = ac->next) { if (!ac->input && ac->output_colname) { if (output_col == ac->output_colname) { ac->input = input; ac->col_ix = j; } } } } } } } } // assertions if (data->status == zsv_compare_status_ok) { int ok = 0; for (unsigned i = 0; i < data->input_count; i++) if (!data->inputs[i].done) ok++; if (ok < 2) { fprintf(stderr, "Compare requires at least two non-empty inputs\n"); data->status = zsv_compare_status_error; } } // next, compare each row while (data->status == zsv_compare_status_ok && zsv_compare_next(data) == zsv_compare_status_ok) ; if (started) zsv_compare_output_end(data); } free(input_filenames); err = data->status == zsv_compare_status_ok ? 0 : 1; if (data->sort) { zsv_set_default_opts(original_default_opts); // restore default options if (custom_prop_handler) zsv_set_default_custom_prop_handler(original_default_custom_prop_handler); } if (data->return_count) { if (err) err = -1; else err = data->diff_count; } zsv_compare_delete(data); return err; } zsv-1.3.0/app/compare.h000066400000000000000000000013461511312357700147250ustar00rootroot00000000000000#ifndef ZSV_COMPARE_H #define ZSV_COMPARE_H // public enum zsv_compare_status { zsv_compare_status_ok = 0, zsv_compare_status_memory, zsv_compare_status_no_data, zsv_compare_status_no_more_input = 100, zsv_compare_status_error = 199 }; typedef struct zsv_compare_data *zsv_compare_handle; typedef int (*zsv_compare_cell_func)(void *ctx, struct zsv_cell, struct zsv_cell, void *struct_zsv_compare_data, unsigned input_col_ix); zsv_compare_handle zsv_compare_new(void); void zsv_compare_set_input_parser(zsv_compare_handle cmp, zsv_parser p, unsigned ix); void zsv_compare_delete(zsv_compare_handle); void zsv_compare_set_comparison(zsv_compare_handle, zsv_compare_cell_func, void *); #endif zsv-1.3.0/app/compare_added_column.c000066400000000000000000000013251511312357700174130ustar00rootroot00000000000000static struct zsv_compare_added_column **zsv_compare_added_column_add(struct zsv_compare_added_column **next, struct zsv_compare_unique_colname *added_colname, enum zsv_compare_status *stat) { struct zsv_compare_added_column *e = calloc(1, sizeof(*e)); if (!e) *stat = zsv_compare_status_memory; else { e->colname = added_colname; *next = e; return &e->next; } return next; } static void zsv_compare_added_column_delete(struct zsv_compare_added_column *e) { for (struct zsv_compare_added_column *next; e; e = next) { next = e->next; free(e); } } zsv-1.3.0/app/compare_internal.h000066400000000000000000000102761511312357700166230ustar00rootroot00000000000000#ifndef ZSV_COMPARE_PRIVATE_H #define ZSV_COMPARE_PRIVATE_H #include #include typedef struct zsv_compare_unique_colname { struct zsv_compare_unique_colname *next; // retain order via linked list // name and instance_num must be unique unsigned char *name; size_t name_len; unsigned instance_num; // keep track of how many instances we've seen in total unsigned total_instances; // only applies if instance_num == 0 unsigned output_ix; // only used for output columns struct zsv_compare_unique_colname *left; struct zsv_compare_unique_colname *right; unsigned char color; unsigned char is_key; } zsv_compare_unique_colname; SGLIB_DEFINE_RBTREE_PROTOTYPES(zsv_compare_unique_colname, left, right, color, zsv_compare_unique_colname_cmp); static void zsv_compare_unique_colnames_delete(zsv_compare_unique_colname **tree); struct zsv_compare_input_key { struct zsv_compare_key *key; struct zsv_cell value; unsigned col_ix; unsigned char found; unsigned char is_key; }; struct zsv_compare_input { const char *path; FILE *stream; zsv_parser parser; zsv_compare_unique_colname *colnames; unsigned index; // order in which this input was added unsigned col_count; unsigned *out2in; // out2in[output column ix] = input column ix + 1 (zero for no match) zsv_compare_unique_colname **output_colnames; unsigned key_count; struct zsv_compare_input_key *keys; sqlite3_stmt *sort_stmt; unsigned char row_loaded : 1; unsigned char missing : 1; unsigned char done : 1; unsigned char added : 1; unsigned char _ : 4; }; struct zsv_compare_key { struct zsv_compare_key *next; const char *name; unsigned position_plus_1; // position can be specified in lieu of name }; struct zsv_compare_added_column { struct zsv_compare_added_column *next; struct zsv_compare_unique_colname *colname; struct zsv_compare_unique_colname *output_colname; struct zsv_compare_input *input; unsigned col_ix; // index of column in input from which to extract this value }; struct zsv_compare_data { enum zsv_compare_status status; unsigned input_count; // number of allocated compare_input structs struct zsv_compare_input *inputs; struct zsv_compare_input **inputs_to_sort; unsigned key_count; struct zsv_compare_key *keys; unsigned char *combined_key_names; size_t row_count; // only matters if no ID columns are specified unsigned output_colcount; zsv_compare_unique_colname *output_colnames; // tree zsv_compare_unique_colname **output_colnames_next; zsv_compare_unique_colname *output_colnames_first; // linked list struct zsv_compare_added_column *added_columns; zsv_compare_unique_colname *added_colnames; unsigned added_colcount; int diff_count; // total number of differences; will use this as return code if -e option is specified zsv_compare_cell_func cmp; void *cmp_ctx; enum zsv_status (*next_row)(struct zsv_compare_input *input); struct zsv_cell (*get_cell)(struct zsv_compare_input *input, unsigned ix); struct zsv_cell (*get_column_name)(struct zsv_compare_input *input, unsigned ix); unsigned (*get_column_count)(struct zsv_compare_input *input); enum zsv_compare_status (*input_init)(struct zsv_compare_data *data, struct zsv_compare_input *input, struct zsv_opts *opts, struct zsv_prop_handler *custom_prop_handler); sqlite3 *sort_db; // used when --sort option was specified struct { double value; #define ZSV_COMPARE_MAX_NUMBER_BUFF_LEN 128 char str1[ZSV_COMPARE_MAX_NUMBER_BUFF_LEN]; char str2[ZSV_COMPARE_MAX_NUMBER_BUFF_LEN]; } tolerance; struct { char type; // 'j' for json union { zsv_csv_writer csv; jsonwriter_handle jsw; } handle; struct { unsigned used; unsigned allocated; char **names; } properties; unsigned cell_ix; // only used for json + object output unsigned char compact : 1; // whether to output compact JSON unsigned char object : 1; // whether to output JSON as objects unsigned char _ : 6; } writer; unsigned char sort : 1; unsigned char sort_in_memory : 1; unsigned char print_key_col_names : 1; unsigned char return_count : 1; unsigned char _ : 4; }; #endif zsv-1.3.0/app/compare_sort.c000066400000000000000000000063141511312357700157670ustar00rootroot00000000000000/** * To implement sorting, we will use sqlite, create a table for each CSV file and run "select * order by ..." */ #include "external/sqlite3/sqlite3_csv_vtab-mem.h" static int zsv_compare_sort_prep_table(struct zsv_compare_data *data, const char *fname, char **err_msg, unsigned int table_ix) { #define ZSV_COMPARE_MAX_TABLES 1000 char *sql = NULL; if (table_ix > ZSV_COMPARE_MAX_TABLES) return -1; sql = sqlite3_mprintf("CREATE VIRTUAL TABLE data%i USING csv(filename=%Q)", table_ix, fname); if (!sql) return -1; int rc = sqlite3_exec(data->sort_db, sql, NULL, NULL, err_msg); sqlite3_free(sql); return rc; } static int zsv_compare_sort_stmt_prep(sqlite3 *db, sqlite3_stmt **stmtp, struct zsv_compare_key *keys, unsigned ix) { sqlite3_str *select_clause = sqlite3_str_new(db); if (!select_clause) { fprintf(stderr, "Out of memory!\n"); return -1; } sqlite3_str_appendf(select_clause, "select * from data%i order by ", ix); for (struct zsv_compare_key *key = keys; key; key = key->next) sqlite3_str_appendf(select_clause, "%s\"%w\"", key == keys ? "" : ", ", key->name); int rc = sqlite3_prepare_v2(db, sqlite3_str_value(select_clause), -1, stmtp, NULL); if (rc != SQLITE_OK) fprintf(stderr, "%s: %s\n", sqlite3_errstr(rc), sqlite3_str_value(select_clause)); sqlite3_free(sqlite3_str_finish(select_clause)); return rc; } static enum zsv_compare_status input_init_sorted(struct zsv_compare_data *data, struct zsv_compare_input *input, struct zsv_opts *opts, struct zsv_prop_handler *custom_prop_handler) { char *err_msg = NULL; if (!sqlite3_zsv_list_add(input->path, opts, custom_prop_handler)) input->added = 1; int rc = zsv_compare_sort_prep_table(data, input->path, &err_msg, input->index); if (err_msg) { fprintf(stderr, "%s\n", err_msg); sqlite3_free(err_msg); } if (rc == SQLITE_OK) rc = zsv_compare_sort_stmt_prep(data->sort_db, &input->sort_stmt, data->keys, input->index); return rc == SQLITE_OK ? zsv_compare_status_ok : zsv_compare_status_error; } static enum zsv_status zsv_compare_next_sorted_row(struct zsv_compare_input *input) { if (sqlite3_step(input->sort_stmt) == SQLITE_ROW) return zsv_status_row; // to do: check if error; if so return zsv_status_error return zsv_status_done; } static struct zsv_cell zsv_compare_get_sorted_colname(struct zsv_compare_input *input, unsigned ix) { struct zsv_cell c = { .str = (unsigned char *)sqlite3_column_name(input->sort_stmt, (int)ix), .quoted = 1, }; c.len = c.str ? strlen((const char *)c.str) : 0; return c; } static unsigned zsv_compare_get_sorted_colcount(struct zsv_compare_input *input) { int col_count = sqlite3_column_count(input->sort_stmt); if (col_count >= 0) return (unsigned)col_count; return 0; } static struct zsv_cell zsv_compare_get_sorted_cell(struct zsv_compare_input *input, unsigned ix) { struct zsv_cell c = { .str = (unsigned char *)sqlite3_column_text(input->sort_stmt, (int)ix), .quoted = 1, }; c.len = c.str ? sqlite3_column_bytes(input->sort_stmt, (int)ix) : 0; if (c.len) c.str = (unsigned char *)zsv_strtrim(c.str, &c.len); return c; } zsv-1.3.0/app/compare_unique_colname.c000066400000000000000000000064621511312357700200100ustar00rootroot00000000000000static int zsv_compare_unique_colname_cmp(zsv_compare_unique_colname *x, zsv_compare_unique_colname *y) { return x->instance_num == y->instance_num ? zsv_stricmp(x->name, y->name) : x->instance_num > y->instance_num ? 1 : x->instance_num < y->instance_num ? -1 : 0; } SGLIB_DEFINE_RBTREE_FUNCTIONS(zsv_compare_unique_colname, left, right, color, zsv_compare_unique_colname_cmp); static void zsv_compare_unique_colname_delete(zsv_compare_unique_colname *e) { if (e) free(e->name); free(e); } static void zsv_compare_unique_colnames_delete(zsv_compare_unique_colname **tree) { if (tree && *tree) { struct sglib_zsv_compare_unique_colname_iterator it; struct zsv_compare_unique_colname *e; for (e = sglib_zsv_compare_unique_colname_it_init(&it, *tree); e; e = sglib_zsv_compare_unique_colname_it_next(&it)) zsv_compare_unique_colname_delete(e); *tree = NULL; } } static struct zsv_compare_unique_colname *zsv_compare_unique_colname_new(const unsigned char *name, size_t len, unsigned instance_num) { zsv_compare_unique_colname *col = calloc(1, sizeof(*col)); if (!col || !(col->name = malloc(len + 1))) ; // handle out-of-memory error! else { memcpy(col->name, name, len); col->name[len] = '\0'; col->name_len = len; col->instance_num = instance_num; } return col; } // zsv_desc_column_update_unique(): return 1 if unique, 0 if dupe static zsv_compare_unique_colname *zsv_compare_unique_colname_add_if_not_found(struct zsv_compare_unique_colname **tree, const unsigned char *utf8_value, size_t len, unsigned instance_num, int *added) { *added = 0; zsv_compare_unique_colname *col = zsv_compare_unique_colname_new(utf8_value, len, instance_num); zsv_compare_unique_colname *found = sglib_zsv_compare_unique_colname_find_member(*tree, col); if (found) // not unique zsv_compare_unique_colname_delete(col); else { sglib_zsv_compare_unique_colname_add(tree, col); *added = 1; found = col; } return found; } // add a colname to a list. allow duplicate names, but track instances // separately (i.e. static enum zsv_compare_status zsv_compare_unique_colname_add(zsv_compare_unique_colname **tree, const unsigned char *s, unsigned len, zsv_compare_unique_colname **new_col) { int added = 0; unsigned instance_num = 0; zsv_compare_unique_colname *_new_col = zsv_compare_unique_colname_add_if_not_found(tree, s, len, instance_num, &added); if (!_new_col) return zsv_compare_status_error; if (!added) { // we've seen this column before in this input instance_num = ++_new_col->total_instances; _new_col = zsv_compare_unique_colname_add_if_not_found(tree, s, len, instance_num, &added); if (!added) { // should not happen #ifndef NDEBUG fprintf(stderr, "Unexpected error! %s: %i\n", __FILE__, __LINE__); #endif return zsv_compare_status_error; } } *new_col = _new_col; return zsv_compare_status_ok; } zsv-1.3.0/app/count-pull.c000066400000000000000000000045021511312357700153710ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #define ZSV_COMMAND count_pull #include "zsv_command.h" static int count_usage(void) { static const char *usage = "Usage: count [options]\n" "\n" "Options:\n" " -h,--help : show usage\n" " -i,--input : use specified file input\n"; printf("%s\n", usage); return 0; } int ZSV_MAIN_FUNC(ZSV_COMMAND)(int argc, const char *argv[], struct zsv_opts *opts, struct zsv_prop_handler *custom_prop_handler) { const char *input_path = NULL; int err = 0; for (int i = 1; !err && i < argc; i++) { const char *arg = argv[i]; if (!strcmp(arg, "-h") || !strcmp(arg, "--help")) { count_usage(); goto count_done; } if (!strcmp(arg, "-i") || !strcmp(arg, "--input") || *arg != '-') { err = 1; if ((!strcmp(arg, "-i") || !strcmp(arg, "--input")) && ++i >= argc) fprintf(stderr, "%s option requires a filename\n", arg); else { if (opts->stream) fprintf(stderr, "Input may not be specified more than once\n"); else if (!(opts->stream = fopen(argv[i], "rb"))) fprintf(stderr, "Unable to open for reading: %s\n", argv[i]); else { input_path = argv[i]; err = 0; } } } else { fprintf(stderr, "Unrecognized option: %s\n", arg); err = 1; } } #ifdef NO_STDIN if (!opts->stream || opts->stream == stdin) { fprintf(stderr, "Please specify an input file\n"); err = 1; } #endif if (!err) { zsv_parser parser; if (zsv_new_with_properties(opts, custom_prop_handler, input_path, &parser) != zsv_status_ok) { fprintf(stderr, "Unable to initialize parser\n"); err = 1; } else { size_t count = 0; while (zsv_next_row(parser) == zsv_status_row) count++; zsv_delete(parser); printf("%zu\n", count > 0 ? count - 1 : 0); } } count_done: if (opts->stream && opts->stream != stdin) fclose(opts->stream); return err; } zsv-1.3.0/app/count.c000066400000000000000000000265001511312357700144210ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #include #include // off_t #define ZSV_COMMAND count #include "zsv_command.h" #include #include // zsv_get_number_of_cores #include "utils/chunk.h" #define ZSV_COUNT_PARALLEL_MIN_BYTES (1024 * 1024 * 2) struct zsv_chunk_count_data { unsigned int id; size_t start_offset; size_t end_offset; size_t actual_next_row_start; size_t row_count; int status; const char *input_path; struct zsv_opts *opts_template; int skip; }; struct zsv_count_parallel_data { unsigned int chunk_count; struct zsv_chunk_count_data *chunks; pthread_t *threads; }; struct data { zsv_parser parser; size_t rows; struct zsv_opts *opts; const char *input_path; unsigned int num_chunks; int run_in_parallel; int cancelled; #ifndef ZSV_NO_PARALLEL struct zsv_count_parallel_data *pdata; size_t end_offset_limit; // where this chunk (chunk 0) should stop size_t next_row_start; // where chunk 0 actually ended #endif }; #ifndef ZSV_NO_PARALLEL static void *process_chunk_internal(struct zsv_chunk_count_data *cdata); static struct zsv_count_parallel_data *parallel_data_new(unsigned int count) { struct zsv_count_parallel_data *pd = calloc(1, sizeof(*pd)); if (!pd) return NULL; pd->chunk_count = count; pd->chunks = calloc(count, sizeof(*pd->chunks)); pd->threads = calloc(count, sizeof(*pd->threads)); if (!pd->chunks || !pd->threads) { free(pd->chunks); free(pd->threads); free(pd); return NULL; } return pd; } static void parallel_data_delete(struct zsv_count_parallel_data *pd) { if (pd) { free(pd->chunks); free(pd->threads); free(pd); } } #endif /* serial (non-parallelized) row handlers */ static void row_verbose(void *ctx) { struct data *data = ctx; data->rows++; if (data->rows % 1000000 == 0) fprintf(stderr, "Processed %zu data rows\n", data->rows / 1000000); } static void row_simple(void *ctx) { ((struct data *)ctx)->rows++; } #ifndef ZSV_NO_PARALLEL /* parallelized row handers */ static void row_parallel_done(void *ctx) { struct data *data = ctx; // Find start of the next row data->next_row_start = zsv_cum_scanned_length(data->parser) - zsv_row_length_raw_bytes(data->parser); zsv_abort(data->parser); data->cancelled = 1; } static void row_parallel(void *ctx) { struct data *data = ctx; data->rows++; if (UNLIKELY((off_t)zsv_cum_scanned_length(data->parser) >= data->end_offset_limit)) { // We crossed the boundary. We must finish this row, then stop. // Switch handler to 'done' to catch the exact end of this row. zsv_set_row_handler(data->parser, row_parallel_done); } } struct worker_ctx { struct zsv_chunk_count_data *cdata; zsv_parser parser; size_t limit_len; int cancelled; }; static void worker_row_done(void *ctx) { struct worker_ctx *wctx = ctx; // Calculate absolute offset of the *next* row start size_t scanned = zsv_cum_scanned_length(wctx->parser); wctx->cdata->actual_next_row_start = wctx->cdata->start_offset + scanned - zsv_row_length_raw_bytes(wctx->parser); zsv_abort(wctx->parser); wctx->cancelled = 1; } static void worker_row(void *ctx) { struct worker_ctx *wctx = ctx; wctx->cdata->row_count++; if (UNLIKELY((off_t)zsv_cum_scanned_length(wctx->parser) >= wctx->limit_len)) { zsv_set_row_handler(wctx->parser, worker_row_done); } } static void *process_chunk_thread(void *arg) { struct zsv_chunk_count_data *cdata = arg; return process_chunk_internal(cdata); } static void *process_chunk_internal(struct zsv_chunk_count_data *cdata) { cdata->row_count = 0; cdata->status = 0; if (cdata->start_offset >= cdata->end_offset) { cdata->actual_next_row_start = cdata->start_offset; cdata->skip = 1; return NULL; } struct zsv_opts opts = *cdata->opts_template; struct worker_ctx wctx = {0}; wctx.cdata = cdata; wctx.limit_len = cdata->end_offset - cdata->start_offset; FILE *f = fopen(cdata->input_path, "rb"); if (!f) { cdata->status = zsv_status_error; return NULL; } if (fseeko(f, cdata->start_offset, SEEK_SET) != 0) { fclose(f); cdata->status = zsv_status_error; return NULL; } opts.stream = f; opts.ctx = &wctx; opts.row_handler = worker_row; wctx.parser = zsv_new(&opts); if (wctx.parser == NULL) { fclose(f); cdata->status = zsv_status_error; return NULL; } enum zsv_status status = zsv_status_ok; while (status == zsv_status_ok && !wctx.cancelled) { status = zsv_parse_more(wctx.parser); } // if finished naturally (eof) if (!wctx.cancelled) { cdata->actual_next_row_start = cdata->start_offset + zsv_cum_scanned_length(wctx.parser); } zsv_finish(wctx.parser); zsv_delete(wctx.parser); fclose(f); return NULL; } #endif static void header_handler(void *ctx) { struct data *data = ctx; #ifndef ZSV_NO_PARALLEL if (data->input_path && data->num_chunks > 1) { size_t header_end = zsv_cum_scanned_length(data->parser); struct zsv_chunk_position *offsets = zsv_guess_file_chunks(data->input_path, data->num_chunks, ZSV_COUNT_PARALLEL_MIN_BYTES, header_end #ifndef ZSV_NO_ONLY_CRLF , data->opts->only_crlf_rowend #endif ); if (offsets) { data->pdata = parallel_data_new(data->num_chunks); if (!data->pdata) { fprintf(stderr, "Out of memory!\n"); zsv_free_chunks(offsets); } else { data->run_in_parallel = 1; if (data->opts->verbose) { for (unsigned int i = 0; i < data->num_chunks; i++) { fprintf(stderr, "Chunk %i: %zu - %zu\n", i + 1, offsets[i].start, offsets[i].end); } } /* set up worker chunks (1..n) */ for (unsigned int i = 1; i < data->num_chunks; i++) { struct zsv_chunk_count_data *c = &data->pdata->chunks[i]; c->id = i; c->start_offset = offsets[i].start; c->end_offset = offsets[i].end; c->input_path = data->input_path; c->opts_template = data->opts; if (pthread_create(&data->pdata->threads[i], NULL, process_chunk_thread, c) != 0) { fprintf(stderr, "Error creating thread %d\n", i); data->run_in_parallel = 0; break; } } if (data->run_in_parallel) { data->end_offset_limit = offsets[0].end; zsv_set_row_handler(data->parser, row_parallel); data->run_in_parallel = 1; } } zsv_free_chunks(offsets); } } #endif if (!data->run_in_parallel) { // single-threaded serial run data->run_in_parallel = 0; zsv_set_row_handler(data->parser, data->opts->verbose ? row_verbose : row_simple); } } static int count_usage(void) { static const char *usage = "Usage: count [options]\n" "\n" "Options:\n" " -h,--help : show usage\n" " -i,--input : use specified file input\n" #ifndef ZSV_NO_PARALLEL " -j,--jobs : number of jobs (parallel threads)\n" " --parallel : use all available cores\n" #endif ; printf("%s\n", usage); return 0; } int ZSV_MAIN_FUNC(ZSV_COMMAND)(int argc, const char *argv[], struct zsv_opts *optsp, struct zsv_prop_handler *custom_prop_handler) { struct data data = {0}; struct zsv_opts opts = *optsp; data.opts = &opts; int err = 0; for (int i = 1; !err && i < argc; i++) { const char *arg = argv[i]; if (!strcmp(arg, "-h") || !strcmp(arg, "--help")) { count_usage(); goto count_done; } if (!strcmp(arg, "-i") || !strcmp(arg, "--input") || *arg != '-') { err = 1; if ((!strcmp(arg, "-i") || !strcmp(arg, "--input")) && ++i >= argc) fprintf(stderr, "%s option requires a filename\n", arg); else { if (opts.stream) fprintf(stderr, "Input may not be specified more than once\n"); else if (!(opts.stream = fopen(argv[i], "rb"))) fprintf(stderr, "Unable to open for reading: %s\n", argv[i]); else { data.input_path = argv[i]; err = 0; } } #ifndef ZSV_NO_PARALLEL } else if (!strcmp(arg, "-j") || !strcmp(arg, "--jobs")) { if (++i >= argc) err = 1; else data.num_chunks = atoi(argv[i]); } else if (!strcmp(arg, "--parallel")) { data.num_chunks = zsv_get_number_of_cores(); if (data.num_chunks < 2) { fprintf(stderr, "Warning: --parallel specified but only one core found; using -j 4 instead"); data.num_chunks = 4; } #endif } else { fprintf(stderr, "Unrecognized option: %s\n", arg); err = 1; } } #ifdef NO_STDIN if (!opts.stream || opts.stream == stdin) { fprintf(stderr, "Please specify an input file\n"); err = 1; } #endif #ifndef ZSV_NO_PARALLEL if (data.num_chunks > 1) { enum zsv_chunk_status chstat = zsv_chunkable(data.input_path, &opts); if (chstat != zsv_chunk_status_ok) { fprintf(stderr, "%s\n", zsv_chunk_status_str(chstat)); err = 1; } } #endif if (!err) { opts.row_handler = header_handler; opts.ctx = &data; if (zsv_new_with_properties(&opts, custom_prop_handler, data.input_path, &data.parser) != zsv_status_ok) { fprintf(stderr, "Unable to initialize parser\n"); err = 1; } else { enum zsv_status status; /* Main Parse Loop */ while (!data.cancelled && (status = zsv_parse_more(data.parser)) == zsv_status_ok) ; zsv_finish(data.parser); #ifndef ZSV_NO_PARALLEL if (data.run_in_parallel) { if (!data.next_row_start) // not likely to get here but just in case data.next_row_start = zsv_cum_scanned_length(data.parser); size_t total_rows = data.rows; // aggregate results for (unsigned int i = 1; i < data.num_chunks; i++) { pthread_join(data.pdata->threads[i], NULL); struct zsv_chunk_count_data *prev_chunk = (i == 1) ? NULL : &data.pdata->chunks[i - 1]; struct zsv_chunk_count_data *curr_chunk = &data.pdata->chunks[i]; // determine where the previous chunk actually ended size_t prev_end = (i == 1) ? data.next_row_start : prev_chunk->actual_next_row_start; // check overlap if (prev_end > curr_chunk->start_offset) { if (data.opts->verbose) { fprintf(stderr, "Overlap detected at chunk %u (expected %zu, got %zu). Reprocessing.\n", i, curr_chunk->start_offset, prev_end); } // reprocess synchronously curr_chunk->start_offset = prev_end; process_chunk_internal(curr_chunk); } total_rows += curr_chunk->row_count; } printf("%zu\n", total_rows); parallel_data_delete(data.pdata); } else #endif // result from running serially printf("%zu\n", data.rows); zsv_delete(data.parser); } } count_done: if (opts.stream && opts.stream != stdin) fclose(opts.stream); return err; } zsv-1.3.0/app/desc.c000066400000000000000000000431701511312357700142110ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #include #include #include #include #include // unlink() #define ZSV_COMMAND desc #include "zsv_command.h" #include #include #include #include #define ZSV_DESC_MAX_COLS_DEFAULT 32768 #define ZSV_DESC_MAX_COLS_DEFAULT_S "32768" #define ZSV_DESC_FLAG_MINMAX 1 #define ZSV_DESC_FLAG_MINMAXLEN 2 #define ZSV_DESC_FLAG_UNIQUE 32 #define ZSV_DESC_FLAG_UNIQUE_CI 64 struct zsv_desc_string_list { struct zsv_desc_string_list *next; unsigned char *value; size_t count; }; void zsv_desc_string_list_free(struct zsv_desc_string_list *e) { struct zsv_desc_string_list *n; for (; e; e = n) { n = e->next; if (e->value) free(e->value); free(e); } } typedef struct zsv_desc_unique_key { unsigned char color : 1; unsigned char _ : 7; unsigned char *value; struct zsv_desc_unique_key *left; struct zsv_desc_unique_key *right; } zsv_desc_unique_key; struct zsv_desc_unique_key_container { struct zsv_desc_unique_key *key; size_t max_count; size_t count; unsigned char not_enum : 1; unsigned char dummy : 7; }; static struct zsv_desc_unique_key *zsv_desc_unique_key_new(const unsigned char *value, size_t len) { zsv_desc_unique_key *key = calloc(1, sizeof(*key)); if (!key || !(key->value = malloc(len + 1))) ; // handle out-of-memory error! else { memcpy(key->value, value, len); key->value[len] = '\0'; } return key; } static void zsv_desc_unique_key_delete(zsv_desc_unique_key *e) { if (e) free(e->value); free(e); } static int zsv_desc_unique_key_cmp(zsv_desc_unique_key *x, zsv_desc_unique_key *y) { return strcmp((const char *)x->value, (const char *)y->value); } SGLIB_DEFINE_RBTREE_PROTOTYPES(zsv_desc_unique_key, left, right, color, zsv_desc_unique_key_cmp); SGLIB_DEFINE_RBTREE_FUNCTIONS(zsv_desc_unique_key, left, right, color, zsv_desc_unique_key_cmp); #define ZSV_DESC_MAX_EXAMPLE_COUNT 5 // could make this customizable... struct zsv_desc_column_data { char *name; unsigned int position; unsigned char not_unique : 1; unsigned char not_unique_ci : 1; unsigned char _ : 6; struct zsv_desc_unique_key_container unique_values; struct zsv_desc_unique_key_container unique_values_ci; struct zsv_desc_string_list *examples; struct zsv_desc_string_list **examples_tail; unsigned int examples_count; unsigned int total_count; struct { unsigned int count; } mblank; struct { size_t lo; size_t hi; } lengths; }; static void zsv_desc_column_data_finalize(struct zsv_desc_column_data *col, unsigned int i) { col->position = i; } static void zsv_desc_column_unique_values_delete(zsv_desc_unique_key **tree) { if (tree && *tree) { struct sglib_zsv_desc_unique_key_iterator it; struct zsv_desc_unique_key *e; for (e = sglib_zsv_desc_unique_key_it_init(&it, *tree); e; e = sglib_zsv_desc_unique_key_it_next(&it)) zsv_desc_unique_key_delete(e); *tree = NULL; } } static void zsv_desc_column_data_free(struct zsv_desc_column_data *e) { free(e->name); zsv_desc_column_unique_values_delete(&e->unique_values.key); zsv_desc_column_unique_values_delete(&e->unique_values_ci.key); zsv_desc_string_list_free(e->examples); } struct zsv_desc_column_name { struct zsv_desc_column_name *next; char *name; }; static void zsv_desc_column_names_delete(struct zsv_desc_column_name **p) { if (p && *p) { struct zsv_desc_column_name *next; for (struct zsv_desc_column_name *e = *p; e; e = next) { next = e->next; free(e->name); free(e); } *p = NULL; } } enum zsv_desc_status { zsv_desc_status_ok = 0, zsv_desc_status_error, // generic error zsv_desc_status_memory, zsv_desc_status_file, zsv_desc_status_argument }; struct zsv_desc_data { struct zsv_opts *opts; const char *input_filename; zsv_csv_writer csv_writer; char header_only; char *filename; void (*header_func)(void *ctx, unsigned int col_ix, const char *name); // api use only void *header_func_arg; unsigned int errcount; unsigned int max_cols; unsigned int current_column_ix; struct zsv_desc_column_name *column_names; struct zsv_desc_column_name **column_names_tail; unsigned int col_count; struct zsv_desc_column_data *columns; #define ZSV_DESC_MAX_ENUM_DEFAULT 100 size_t max_enum; size_t row_count; char *err_msg; enum zsv_desc_status err; zsv_parser parser; unsigned char flags; // see ZSV_DESC_FLAG_XXX unsigned char done; size_t max_row_size; char *overflowed; size_t overflow_count; unsigned char quick : 1; unsigned char _ : 7; }; static void zsv_desc_finalize(struct zsv_desc_data *data) { for (unsigned int i = 0; i < data->col_count; i++) zsv_desc_column_data_finalize(&data->columns[i], i); } static void write_headers(struct zsv_desc_data *data) { // TO DO: adjust header for ZSV_DESC_FLAG options const char *headers1[] = {"#", "Column name", "Min Length", "Max Length", NULL}; const char *headers2[] = {"Count", "Blank %", "Example 1", "Example 2", "Example 3", "Example 4", "Example 5", NULL}; for (int i = 0; headers1[i]; i++) zsv_writer_cell(data->csv_writer, i == 0, (const unsigned char *)headers1[i], strlen(headers1[i]), 1); if (data->flags & ZSV_DESC_FLAG_UNIQUE) zsv_writer_cell_s(data->csv_writer, 0, (const unsigned char *)"Unique", 0); if (data->flags & ZSV_DESC_FLAG_UNIQUE_CI) zsv_writer_cell_s(data->csv_writer, 0, (const unsigned char *)"Unique (case-insensitive)", 0); for (int i = 0; headers2[i]; i++) zsv_writer_cell(data->csv_writer, 0, (const unsigned char *)headers2[i], strlen(headers2[i]), 1); } static void zsv_desc_print(struct zsv_desc_data *data) { if (data->header_only) { for (unsigned int i = 0; i < data->col_count; i++) { struct zsv_desc_column_data *c = &data->columns[i]; zsv_writer_cell(data->csv_writer, 1, (const unsigned char *)c->name, c->name ? strlen(c->name) : 0, 1); } } else { write_headers(data); for (unsigned int i = 0; i < data->col_count; i++) { struct zsv_desc_column_data *c = &data->columns[i]; zsv_writer_cell_zu(data->csv_writer, 1, i + 1); zsv_writer_cell_s(data->csv_writer, 0, (unsigned char *)c->name, 1); if (c->lengths.lo) { zsv_writer_cell_zu(data->csv_writer, 0, c->lengths.lo); zsv_writer_cell_zu(data->csv_writer, 0, c->lengths.hi); } else { zsv_writer_cell(data->csv_writer, 0, NULL, 0, 0); zsv_writer_cell(data->csv_writer, 0, NULL, 0, 0); } // unique if (data->flags & ZSV_DESC_FLAG_UNIQUE) { const char *s = c->not_unique ? "FALSE" : "TRUE"; zsv_writer_cell_s(data->csv_writer, 0, (const unsigned char *)s, 0); } // unique_ci if (data->flags & ZSV_DESC_FLAG_UNIQUE_CI) { const char *s = c->not_unique_ci ? "FALSE" : "TRUE"; zsv_writer_cell_s(data->csv_writer, 0, (const unsigned char *)s, 0); } // count, blank % zsv_writer_cell_zu(data->csv_writer, 0, c->total_count); zsv_writer_cell_Lf(data->csv_writer, 0, ".2", ((long double)c->mblank.count) / (long double)(c->total_count) * (long double)100); for (struct zsv_desc_string_list *sl = c->examples; sl; sl = sl->next) { if (sl->count) { char *tmp; asprintf(&tmp, "%s (%zu)", sl->value, sl->count + 1); zsv_writer_cell_s(data->csv_writer, 0, (unsigned char *)tmp, 1); free(tmp); } else zsv_writer_cell_s(data->csv_writer, 0, sl->value, 1); } } } } static void zsv_desc_set_err(struct zsv_desc_data *data, enum zsv_desc_status err, char *msg) { data->err = err; if (msg) { if (data->err_msg) free(msg); else data->err_msg = msg; } } // zsv_desc_column_update_unique(): return 1 if unique, 0 if dupe static int zsv_desc_column_update_unique(struct zsv_desc_unique_key_container *key_container, const unsigned char *utf8_value, size_t len) { zsv_desc_unique_key *key = zsv_desc_unique_key_new(utf8_value, len); if (sglib_zsv_desc_unique_key_find_member(key_container->key, key)) { // not unique if (key_container->count > key_container->max_count) { zsv_desc_column_unique_values_delete(&key_container->key); key_container->not_enum = 1; } zsv_desc_unique_key_delete(key); return 0; } else { sglib_zsv_desc_unique_key_add(&key_container->key, key); key_container->count++; return 1; } } static void zsv_desc_cell(void *ctx, unsigned char *restrict utf8_value, size_t len) { struct zsv_desc_data *data = ctx; if (!data || data->err || data->done) return; // trim the cell values, so we don't count e.g. " abc" as different from "abc" utf8_value = (unsigned char *)zsv_strtrim(utf8_value, &len); if (data->row_count == 0) { if (data->current_column_ix < data->max_cols) { struct zsv_desc_column_name *e = calloc(1, sizeof(*e)); if (!e) { zsv_desc_set_err(data, zsv_desc_status_memory, NULL); return; } if (len) e->name = zsv_memdup(utf8_value, len); *data->column_names_tail = e; data->column_names_tail = &e->next; } } else { if (data->current_column_ix < data->col_count) { struct zsv_desc_column_data *col = &data->columns[data->current_column_ix]; if (col) { col->total_count++; if (!len) col->mblank.count++; else { if (col->lengths.lo == 0 || len < col->lengths.lo) col->lengths.lo = len; if (len > col->lengths.hi) col->lengths.hi = len; if (col->examples_count < ZSV_DESC_MAX_EXAMPLE_COUNT || !data->quick) { char already_have = 0; if (!col->examples_tail) col->examples_tail = &col->examples; for (struct zsv_desc_string_list *sl = col->examples; !already_have && sl; sl = sl->next) { if (sl->value && !zsv_strincmp(utf8_value, len, sl->value, strlen((char *)sl->value))) { already_have = 1; sl->count++; } } if (!already_have && col->examples_count < ZSV_DESC_MAX_EXAMPLE_COUNT) { struct zsv_desc_string_list *sl; if ((sl = *col->examples_tail = calloc(1, sizeof(*sl)))) { col->examples_tail = &sl->next; sl->value = zsv_memdup(utf8_value, len); col->examples_count++; } } } if (data->flags & ZSV_DESC_FLAG_UNIQUE) { if (!col->not_unique) if (!zsv_desc_column_update_unique(&col->unique_values, utf8_value, len)) // dupe col->not_unique = 1; } if (data->flags & ZSV_DESC_FLAG_UNIQUE_CI) { if (!col->not_unique_ci || !col->unique_values_ci.not_enum // ) ) { unsigned char *lc = zsv_strtolowercase(utf8_value, &len); if (lc) { if (!zsv_desc_column_update_unique(&col->unique_values_ci, lc, len)) col->not_unique_ci = 1; free(lc); } } } } } } } data->current_column_ix++; } static void zsv_desc_row(void *ctx) { struct zsv_desc_data *data = ctx; if (!data || data->err) return; if (data->row_count == 0) { if (data->current_column_ix < data->max_cols) data->col_count = data->current_column_ix; else data->current_column_ix = data->max_cols; if (!(data->columns = calloc(data->col_count, sizeof(*data->columns)))) { zsv_desc_set_err(data, zsv_desc_status_memory, NULL); return; } struct zsv_desc_column_name *cn = data->column_names; for (unsigned int i = 0; i < data->col_count && cn; cn = cn->next, i++) { struct zsv_desc_column_data *col = &data->columns[i]; if (cn->name && *cn->name) { col->name = cn->name; cn->name = NULL; } col->unique_values_ci.max_count = data->max_enum; } if (data->header_only) { data->done = 1; zsv_abort(data->parser); } } else { if (data->row_count % 50000 == 0 && data->opts->verbose) fprintf(stderr, "%zu rows read\n", data->row_count); } data->current_column_ix = 0; ++data->row_count; } const char *zsv_desc_usage_msg[] = { APPNAME ": get column-level information about a table's content", "", "Usage: " APPNAME " [options] ", "", "Options:", " -b,--with-bom : output with BOM", " -C : maximum number of columns (default: " ZSV_DESC_MAX_COLS_DEFAULT_S ")", " -H : output header names only", " -q,--quick : minimize example counts", " -a,--all : calculate all metadata (for now, this only adds uniqueness info)", " -o : filename to save output to (default: stdout)", NULL, }; static int zsv_desc_usage(void) { for (size_t i = 0; zsv_desc_usage_msg[i]; i++) fprintf(stdout, "%s\n", zsv_desc_usage_msg[i]); return 0; } static void zsv_desc_cleanup(struct zsv_desc_data *data) { if (data->columns) { for (unsigned int i = 0; i < data->col_count; i++) zsv_desc_column_data_free(&data->columns[i]); free(data->columns); data->columns = NULL; } zsv_desc_column_names_delete(&data->column_names); free(data->err_msg); data->err_msg = NULL; if (data->opts->stream && data->opts->stream != stdin) { fclose(data->opts->stream); data->opts->stream = NULL; } if (data->overflowed) { fprintf(stderr, "Warning: data overflowed %zu times (example: %s)\n", data->overflow_count, data->overflowed); free(data->overflowed); } zsv_writer_delete(data->csv_writer); } #define ZSV_DESC_TMPFN_TEMPLATE "zsv_desc_XXXXXXXXXXXX" static void zsv_desc_execute(struct zsv_desc_data *data, struct zsv_prop_handler *custom_prop_handler, const char *input_path) { data->opts->cell_handler = zsv_desc_cell; data->opts->row_handler = zsv_desc_row; data->opts->ctx = data; if (!data->max_enum) data->max_enum = ZSV_DESC_MAX_ENUM_DEFAULT; if (zsv_new_with_properties(data->opts, custom_prop_handler, input_path, &data->parser) == zsv_status_ok) { FILE *input_temp_file = NULL; enum zsv_status status; if (input_temp_file) zsv_set_scan_filter(data->parser, zsv_filter_write, input_temp_file); while (!zsv_signal_interrupted && (status = zsv_parse_more(data->parser)) == zsv_status_ok) ; if (input_temp_file) fclose(input_temp_file); zsv_finish(data->parser); zsv_delete(data->parser); } } int ZSV_MAIN_FUNC(ZSV_COMMAND)(int argc, const char *argv[], struct zsv_opts *opts, struct zsv_prop_handler *custom_prop_handler) { if (argc < 1) zsv_desc_usage(); else if (argc > 1 && (!strcmp(argv[1], "-h") || !strcmp(argv[1], "--help"))) zsv_desc_usage(); else { struct zsv_desc_data data = {0}; const char *input_path = NULL; int err = 0; if (opts->malformed_utf8_replace != ZSV_MALFORMED_UTF8_DO_NOT_REPLACE) // user specified to be 'none' opts->malformed_utf8_replace = '?'; data.opts = opts; data.max_cols = ZSV_DESC_MAX_COLS_DEFAULT; // default data.column_names_tail = &data.column_names; struct zsv_csv_writer_options writer_opts = zsv_writer_get_default_opts(); for (int arg_i = 1; !err && !data.err && arg_i < argc; arg_i++) { if (!strcmp(argv[arg_i], "-b") || !strcmp(argv[arg_i], "--with-bom")) writer_opts.with_bom = 1; else if (!strcmp(argv[arg_i], "-o") || !strcmp(argv[arg_i], "--output")) writer_opts.output_path = zsv_next_arg(++arg_i, argc, argv, (int *)&data.err); else if (!strcmp(argv[arg_i], "-a") || !strcmp(argv[arg_i], "--all")) data.flags = 0xff; else if (!strcmp(argv[arg_i], "-q") || !strcmp(argv[arg_i], "--quick")) data.quick = 1; else if (!strcmp(argv[arg_i], "-H")) data.header_only = 1; else if (!strcmp(argv[arg_i], "-C")) { arg_i++; if (!(arg_i < argc && atoi(argv[arg_i]) > 9)) data.err = zsv_printerr(zsv_desc_status_error, "-C (max cols) invalid: should be positive integer > 9 (got %s)", argv[arg_i]); else data.max_cols = atoi(argv[arg_i]); } else { if (data.opts->stream) { err = 1; fprintf(stderr, "Input file specified twice, or unrecognized argument: %s\n", argv[arg_i]); } else if (!(data.opts->stream = fopen(argv[arg_i], "rb"))) { err = 1; fprintf(stderr, "Could not open for reading: %s\n", argv[arg_i]); } else input_path = argv[arg_i]; if (data.opts->stream && data.opts->stream != stdin) data.input_filename = argv[arg_i]; if (err) data.err = err; } } zsv_handle_ctrl_c_signal(); if (!data.err && !(data.csv_writer = zsv_writer_new(&writer_opts))) data.err = zsv_printerr(zsv_desc_status_error, "Unable to create csv writer"); if (!data.opts->stream) { #ifdef NO_STDIN data.err = zsv_printerr(zsv_desc_status_error, "Please specify an input file"); #else data.opts->stream = stdin; #endif } if (data.err) { zsv_desc_cleanup(&data); return 1; } zsv_desc_execute(&data, custom_prop_handler, input_path); zsv_desc_finalize(&data); zsv_desc_print(&data); zsv_desc_cleanup(&data); } return 0; } zsv-1.3.0/app/echo.c000066400000000000000000000276101511312357700142120ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and zsv contributors. All rights reserved. * * This file is part of zsv/lib, distributed under the MIT license as defined at * https://opensource.org/licenses/MIT */ #include #include #include #define _GNU_SOURCE 1 #include #include #define ZSV_COMMAND echo #include "zsv_command.h" #include #include #include #include #include #include #include #ifdef ZSV_EXTRAS #include #endif struct zsv_echo_data { FILE *in; const char *input_path; zsv_csv_writer csv_writer; zsv_parser parser; size_t row_ix; size_t start_row, end_row; unsigned char *skip_until_prefix; size_t skip_until_prefix_len; char *tmp_fn; unsigned max_nonempty_cols; unsigned char trim_white : 1; unsigned char trim_columns : 1; unsigned char contiguous : 1; unsigned char _ : 5; }; static void zsv_echo_get_max_nonempty_cols(void *ctx) { struct zsv_echo_data *data = ctx; unsigned row_nonempty_col_count = 0; for (size_t i = 0, j = zsv_cell_count(data->parser); i < j; i++) { struct zsv_cell cell = zsv_get_cell(data->parser, i); if (UNLIKELY(data->trim_white)) cell.str = (unsigned char *)zsv_strtrim(cell.str, &cell.len); if (cell.len) row_nonempty_col_count = i + 1; } if (data->max_nonempty_cols < row_nonempty_col_count) data->max_nonempty_cols = row_nonempty_col_count; } static void zsv_echo_row(void *ctx) { struct zsv_echo_data *data = ctx; if (VERY_UNLIKELY((data->end_row > 0 && data->end_row <= data->row_ix))) { zsv_abort(data->parser); return; } size_t j = zsv_cell_count(data->parser); if (UNLIKELY(data->trim_columns && j > data->max_nonempty_cols)) j = data->max_nonempty_cols; if (VERY_UNLIKELY(data->row_ix == 0)) { // header for (size_t i = 0; i < j; i++) { struct zsv_cell cell = zsv_get_cell(data->parser, i); if (UNLIKELY(data->trim_white)) cell.str = (unsigned char *)zsv_strtrim(cell.str, &cell.len); zsv_writer_cell(data->csv_writer, i == 0, cell.str, cell.len, cell.quoted); } } else if (VERY_UNLIKELY(data->contiguous && zsv_row_is_blank(data->parser))) { zsv_abort(data->parser); } else { for (size_t i = 0; i < j; i++) { struct zsv_cell cell = zsv_get_cell(data->parser, i); if (UNLIKELY(data->trim_white)) cell.str = (unsigned char *)zsv_strtrim(cell.str, &cell.len); zsv_writer_cell(data->csv_writer, i == 0, cell.str, cell.len, cell.quoted); } } data->row_ix++; } static void zsv_echo_row_skip_until(void *ctx) { struct zsv_echo_data *data = ctx; struct zsv_cell cell = zsv_get_cell(data->parser, 0); if (cell.len && cell.str && cell.len >= data->skip_until_prefix_len && (!data->skip_until_prefix_len || !zsv_strincmp(cell.str, data->skip_until_prefix_len, data->skip_until_prefix, data->skip_until_prefix_len))) { zsv_set_row_handler(data->parser, zsv_echo_row); zsv_echo_row(ctx); } } static void zsv_echo_row_start_at(void *ctx) { struct zsv_echo_data *data = ctx; if (data->row_ix >= data->start_row - 1) { void (*row_handler)(void *) = data->skip_until_prefix ? zsv_echo_row_skip_until : zsv_echo_row; zsv_set_row_handler(data->parser, row_handler); row_handler(ctx); } else data->row_ix++; } const char *zsv_echo_usage_msg[] = { #ifdef ZSV_EXTRAS APPNAME ": write tabular input to stdout with optional cell overwrites", #else APPNAME ": write tabular input to stdout", #endif "", "Usage: " APPNAME " [options] ", "", "Options:", " -b : output with BOM", " -o : filename to save output to", " --trim : trim whitespace", " --trim-columns : trim blank columns", " --contiguous : stop output upon scanning an entire row of blank values", " --start-row : only output from row N (starting at 1)", " --end-row : only output up to row N (starting at 1)", " --between-rows : equivalent to --start-row N --end-row M", " --skip-until : skip rows until the row where first column starts with the given value", #ifdef ZSV_EXTRAS " --overwrite : overwrite cells using given source", "", "For --overwrite, the may be:", "- sqlite3://[?sql=]", " e.g. sqlite3://overwrites.db?sql=select row, column, value from overwrites order by row, column", "", "- /path/to/file.csv", " path to CSV file with columns row,col,val (in that order) and rows pre-sorted by row and column", #endif NULL, }; static int zsv_echo_usage(void) { for (size_t i = 0; zsv_echo_usage_msg[i]; i++) fprintf(stdout, "%s\n", zsv_echo_usage_msg[i]); return 1; } static void zsv_echo_cleanup(struct zsv_echo_data *data) { zsv_writer_delete(data->csv_writer); free(data->skip_until_prefix); if (data->in && data->in != stdin) fclose(data->in); if (data->tmp_fn) { zsv_remove(data->tmp_fn); free(data->tmp_fn); } } int ZSV_MAIN_FUNC(ZSV_COMMAND)(int argc, const char *argv[], struct zsv_opts *optsp, struct zsv_prop_handler *custom_prop_handler) { if (argc < 1 || (argc > 1 && (!strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")))) { zsv_echo_usage(); return 0; } struct zsv_opts opts = *optsp; struct zsv_csv_writer_options writer_opts = zsv_writer_get_default_opts(); struct zsv_echo_data data = {0}; #ifdef ZSV_EXTRAS struct zsv_overwrite_opts overwrite_opts = {0}; #endif int err = 0; // temporary structure for --between parameters struct { size_t start_row; size_t end_row; } between = {0}; for (int arg_i = 1; !err && arg_i < argc; arg_i++) { const char *arg = argv[arg_i]; if (!strcmp(arg, "-b")) writer_opts.with_bom = 1; else if (!strcmp(arg, "-o")) writer_opts.output_path = zsv_next_arg(++arg_i, argc, argv, &err); else if (!strcmp(arg, "--contiguous")) data.contiguous = 1; else if (!strcmp(arg, "--trim-columns")) data.trim_columns = 1; else if (!strcmp(arg, "--trim")) data.trim_white = 1; else if (!strcmp(arg, "--skip-until")) { if (++arg_i >= argc) err = zsv_printerr(1, "Option %s requires a value\n", arg); else if (!argv[arg_i][0]) err = zsv_printerr(1, "--skip-until requires a non-empty value\n"); else { free(data.skip_until_prefix); data.skip_until_prefix = (unsigned char *)strdup(argv[arg_i]); data.skip_until_prefix_len = data.skip_until_prefix ? strlen((char *)data.skip_until_prefix) : 0; } #ifdef ZSV_EXTRAS } else if (!strcmp(arg, "--overwrite")) { overwrite_opts.src = zsv_next_arg(++arg_i, argc, argv, &err); #endif } else if (!strcmp(arg, "--end-row") || !strcmp(arg, "--start-row") || !strcmp(arg, "--between-row") || !strcmp(arg, "--between-rows")) { const char *val = zsv_next_arg(++arg_i, argc, argv, &err); if (!val || !*val || !(atol(val) > 0)) { if (!strcmp(arg, "--between-row") || !strcmp(arg, "--between-rows")) err = zsv_printerr(1, "%s requires two integer values 0 < N < M\n", arg); else err = zsv_printerr(1, "%s requires an integer value > 0\n", arg); } else if (!strcmp(arg, "--end-row")) data.end_row = (size_t)atol(val); else if (!strcmp(arg, "--start-row")) data.start_row = (size_t)atol(val); else if (!strcmp(arg, "--between-row") || !strcmp(arg, "--between-rows")) { between.start_row = (size_t)atol(val); val = zsv_next_arg(++arg_i, argc, argv, &err); if (!val || !*val || !(atol(val) > (long)data.start_row)) err = zsv_printerr(1, "%s requires two integer values 0 < N < M\n", arg); else between.end_row = (size_t)atol(val); } } else if (!data.in) { #ifndef NO_STDIN if (!strcmp(arg, "-")) data.in = stdin; #endif if (!data.in) { if (!(data.in = fopen(arg, "rb"))) { err = 1; perror(arg); } else data.input_path = arg; } } else err = zsv_printerr(1, "Unrecognized option: %s\n", arg); } if (!err && !data.in) { #ifndef NO_STDIN data.in = stdin; #else err = zsv_printerr(1, "Please specify an input file\n"); #endif } if (!err && between.start_row) { if (data.start_row || data.end_row) err = zsv_printerr(1, "--between cannot be used together with --start-row or --end-row"); else { data.start_row = between.start_row; data.end_row = between.end_row; } } if (data.end_row > 0 && data.end_row < data.start_row) err = zsv_printerr(1, "--start-row must be less than --end-row"); if (err) { zsv_echo_cleanup(&data); return 1; } unsigned char buff[4096]; if (data.start_row) opts.row_handler = zsv_echo_row_start_at; else if (data.skip_until_prefix) opts.row_handler = zsv_echo_row_skip_until; else { opts.row_handler = zsv_echo_row; if (data.trim_columns) { // trim columns requires two passes, because we may need to read the entire table // to know the maximum number of non-empty columns (e.g. the last row might contain // more non-empty columns than the rest of the table // first, save the file if it is stdin if (data.in == stdin) { if (!(data.tmp_fn = zsv_get_temp_filename("zsv_echo_XXXXXXXX"))) { zsv_echo_cleanup(&data); return 1; } FILE *f = fopen(data.tmp_fn, "wb"); if (!f) { perror(data.tmp_fn); zsv_echo_cleanup(&data); return 1; } else { size_t bytes_read; while ((bytes_read = fread(buff, 1, sizeof(buff), data.in)) > 0) fwrite(buff, 1, bytes_read, f); fclose(f); if (!(data.in = fopen(data.tmp_fn, "rb"))) { perror(data.tmp_fn); zsv_echo_cleanup(&data); return 1; } } } // next, determine the max number of columns from the left that contain data struct zsv_opts tmp_opts = opts; tmp_opts.row_handler = zsv_echo_get_max_nonempty_cols; tmp_opts.stream = data.in; tmp_opts.ctx = &data; if (zsv_new_with_properties(&tmp_opts, custom_prop_handler, data.input_path, &data.parser) != zsv_status_ok) { zsv_echo_cleanup(&data); return 1; } else { // find the max nonempty col count enum zsv_status status; while (!zsv_signal_interrupted && (status = zsv_parse_more(data.parser)) == zsv_status_ok) ; zsv_finish(data.parser); zsv_delete(data.parser); data.parser = NULL; // re-open the input again data.in = fopen(data.tmp_fn ? data.tmp_fn : data.input_path, "rb"); } } } opts.stream = data.in; opts.ctx = &data; data.csv_writer = zsv_writer_new(&writer_opts); #ifdef ZSV_EXTRAS if (overwrite_opts.src) { if (!(opts.overwrite.ctx = zsv_overwrite_context_new(&overwrite_opts))) err = zsv_printerr(1, "Out of memory!\n"); else { opts.overwrite.open = zsv_overwrite_open; opts.overwrite.next = zsv_overwrite_next; opts.overwrite.close = zsv_overwrite_context_delete; } } #endif if (data.csv_writer && !err) { if (zsv_new_with_properties(&opts, custom_prop_handler, data.input_path, &data.parser) != zsv_status_ok) err = 1; else { // create a local csv writer buff for faster performance // unsigned char writer_buff[64]; zsv_writer_set_temp_buff(data.csv_writer, buff, sizeof(buff)); // process the input data zsv_handle_ctrl_c_signal(); enum zsv_status status; while (!zsv_signal_interrupted && (status = zsv_parse_more(data.parser)) == zsv_status_ok) ; zsv_finish(data.parser); zsv_delete(data.parser); } } zsv_echo_cleanup(&data); return err; } zsv-1.3.0/app/ext_example/000077500000000000000000000000001511312357700154355ustar00rootroot00000000000000zsv-1.3.0/app/ext_example/Makefile000066400000000000000000000200261511312357700170750ustar00rootroot00000000000000#Makefile for use with GNU make THIS_MAKEFILE_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) THIS_DIR:=$(shell basename "${THIS_MAKEFILE_DIR}") THIS_MAKEFILE:=$(lastword $(MAKEFILE_LIST)) .POSIX: .SUFFIXES: .SUFFIXES: .o .c .a CONFIGFILE ?= config.mk $(info Using config file ${CONFIGFILE}) include ${CONFIGFILE} CONFIGFILEPATH=$(shell ls ${CONFIGFILE} >/dev/null 2>/dev/null && realpath ${CONFIGFILE}) ifeq ($(CONFIGFILEPATH),) $(error Config file ${CONFIGFILE} not found) endif CC ?= cc WIN= ifeq ($(WIN),) WIN=0 ifneq ($(findstring w64,$(CC)),) # e.g. mingw64 WIN=1 endif endif IS_WSL=$(shell grep -qi microsoft /proc/version 2>/dev/null && echo 1 || echo 0) ifeq ($(WIN),0) EXE= EXT= else EXE=.exe EXT=.win endif export CMP=cmp export TMP_DIR=./../../tmp ifeq ($(DEBUG),1) DBG_SUBDIR+=dbg else DBG_SUBDIR+=rel endif ifeq ($(WIN),0) BUILD_SUBDIR=$(shell uname)/${DBG_SUBDIR} SO=so ifeq ($(BUILD_SUBDIR),Linux) CFLAGS+= -ldl -lpthread endif else BUILD_SUBDIR=win/${DBG_SUBDIR} CFLAGS+= -D__USE_MINGW_ANSI_STDIO -D_ISOC99_SOURCE CFLAGS+= -Wl,--strip-all SO=dll endif CFLAGS+= ${CFLAGS_PIC} ifeq ($(ZSVSHEET_BUILD),1) CFLAGS+=-DZSVSHEET_BUILD endif ifeq ($(ZSV_EXTRAS),1) CFLAGS+= -DZSV_EXTRAS endif DEBUG=0 ifeq ($(DEBUG),0) CFLAGS+= -O3 -DNDEBUG -std=gnu11 -Wno-gnu-statement-expression -Wshadow -Wall -Wextra -Wno-missing-braces -pedantic -DSTDC_HEADERS -D_GNU_SOURCE -lm -ftree-vectorize -flto else CFLAGS += -g endif export THIS_LIB_BASE=$(shell cd ../.. && pwd) CCBN=$(shell basename ${CC}) BUILD_DIR=${THIS_LIB_BASE}/build/${BUILD_SUBDIR}/${CCBN} TARGET=${BUILD_DIR}/bin/zsvextmy.${SO} TARGET_SHEET=${BUILD_DIR}/bin/zsvextmysheet.${SO} COLOR_NONE=\033[0m COLOR_GREEN=\033[1;32m COLOR_RED=\033[1;31m COLOR_BLUE=\033[1;34m COLOR_PINK=\033[1;34m COLOR_YELLOW=\033[1;33m TEST_INIT=printf "${COLOR_PINK}$@: ${COLOR_NONE}\n" TEST_SKIP=printf "${COLOR_BLUE}$@: ${COLOR_YELLOW}Skipped${COLOR_NONE}\n" TEST_PASS=printf "${COLOR_BLUE}$@: ${COLOR_GREEN}Passed${COLOR_NONE}\n" TEST_FAIL=(printf "${COLOR_BLUE}$@: ${COLOR_RED}Failed!${COLOR_NONE}\n" && exit 1) EXPECT=../../scripts/test-expect.sh export EXPECTED_PATH=test/expected CFLAGS_SHARED=-shared ifneq ($(findstring emcc,$(CC)),) # emcc CFLAGS_SHARED=-s SIDE_MODULE=1 -s LINKABLE=1 INSTALLED_EXTENSION=${BINDIR}/zsvextmy.${SO} else INSTALLED_EXTENSION= endif CFLAGS+= -I${THIS_LIB_BASE}/include -I${PREFIX}/include all: ${TARGET} ${TARGET_SHEET} @echo Built ${TARGET} @echo Built ${TARGET_SHEET} ifneq ($(findstring emcc,$(CC)),) # emcc install: ${INSTALLED_EXTENSION} ${INSTALLED_EXTENSION}: ${TARGET} ${TARGET_SHEET} @mkdir -p `dirname "$@"` cp -p $< $@ endif CLI=${BUILD_DIR}/bin/cli${EXE} RUN_CLI=ZSV_CONFIG_DIR=${TMP_DIR} ${CLI} ${BUILD_DIR}/bin/cli: ${MAKE} -C .. build-cli CONFIGFILE=${CONFIGFILEPATH} DEBUG=${DEBUG} ${BUILD_DIR}/objs/utils/%.o: (cd .. && ${MAKE} CONFIGFILE=${CONFIGFILEPATH} CC=${CC} DEBUG=${DEBUG} $@ ) TESTS=test-1 test-2 test-3 test-4 test-5 test-thirdparty ifeq ($(ZSVSHEET_BUILD),1) TESTS+=test-sheet-extension-1 test-sheet-extension-2 endif test: ${TESTS} test-1: test-%: ${CLI} ${TARGET} @${TEST_INIT} @${RUN_CLI} my-echo < ${THIS_LIB_BASE}/data/quoted.csv > ${TMP_DIR}/zsvext-$@.out @${CMP} ${TMP_DIR}/zsvext-$@.out test/expected/zsvext-$@.out && ${TEST_PASS} || ${TEST_FAIL} test-2: test-%: ${CLI} ${TARGET} @${TEST_INIT} @${RUN_CLI} my-echo -t < ${THIS_LIB_BASE}/data/hi.txt > ${TMP_DIR}/zsvext-$@.out @${CMP} ${TMP_DIR}/zsvext-$@.out test/expected/zsvext-$@.out && ${TEST_PASS} || ${TEST_FAIL} test-3: test-%: ${CLI} ${TARGET} @${TEST_INIT} @rm -f ${TMP_DIR}/zsvext-$@.out @${RUN_CLI} unregister my 2>/dev/null 1>/dev/null || [ 1==1 ] @${RUN_CLI} register my 2>&1 | grep -v [.]${SO} >> ${TMP_DIR}/zsvext-$@.out || [ 1==1 ] @${RUN_CLI} unregister my 2>&1 | grep -v [.]${SO} >> ${TMP_DIR}/zsvext-$@.out || [ 1==1 ] @${RUN_CLI} unregister my 2>&1 | grep -v [.]${SO} >> ${TMP_DIR}/zsvext-$@.out || [ 1==1 ] @${RUN_CLI} help 2>&1 | grep -v [.]${SO} >> ${TMP_DIR}/zsvext-$@.out || [ 1==1 ] @${RUN_CLI} register my 2>&1 | grep -v [.]${SO} >> ${TMP_DIR}/zsvext-$@.out || [ 1==1 ] @${RUN_CLI} help 2>&1 | grep -v [.]${SO} >> ${TMP_DIR}/zsvext-$@.out || [ 1==1 ] @${CMP} ${TMP_DIR}/zsvext-$@.out 2>&1 test/expected/zsvext-$@.out${EXT} && ${TEST_PASS} || ${TEST_FAIL} test-4: test-%: ${CLI} ${TARGET} @${TEST_INIT} @${RUN_CLI} unregister my 2>/dev/null 1>/dev/null || [ 1==1 ] @${RUN_CLI} license > ${TMP_DIR}/zsvext-$@.out 2>> ${TMP_DIR}/zsvext-$@.err @${RUN_CLI} register my 2>/dev/null 1>/dev/null @${RUN_CLI} license >> ${TMP_DIR}/zsvext-$@.out 2> ${TMP_DIR}/zsvext-$@.err @${CMP} ${TMP_DIR}/zsvext-$@.out test/expected/zsvext-$@.out && ${TEST_PASS} || ${TEST_FAIL} @${CMP} ${TMP_DIR}/zsvext-$@.err test/expected/zsvext-$@.err && ${TEST_PASS} || ${TEST_FAIL} test-5: test-%:${TARGET} @${TEST_INIT} @${RUN_CLI} my-count newline.csv 2>/dev/null > ${TMP_DIR}/zsvext-$@.out @${RUN_CLI} my-count -q newline.csv 2>/dev/null >> ${TMP_DIR}/zsvext-$@.out @${CMP} ${TMP_DIR}/zsvext-$@.out test/expected/zsvext-$@.out && ${TEST_PASS} || ${TEST_FAIL} test-thirdparty: test-%: ${CLI} ${TARGET} @${TEST_INIT} @${RUN_CLI} unregister my 2>/dev/null 1>/dev/null || [ 1==1 ] @${RUN_CLI} thirdparty > ${TMP_DIR}/zsvext-$@.out @${RUN_CLI} register my 2>/dev/null 1>/dev/null @${RUN_CLI} thirdparty >> ${TMP_DIR}/zsvext-$@.out @${CMP} ${TMP_DIR}/zsvext-$@.out test/expected/zsvext-$@.out && ${TEST_PASS} || ${TEST_FAIL} ../test/worldcitiespop_mil.csv: make -C ../test worldcitiespop_mil.csv DATE_TIME:=$(shell date +%F-%H-%M-%S) export TIMINGS_CSV:=${TMP_DIR}/timings-${DATE_TIME}.csv TMUX_TERM=xterm-256color test-sheet-extension-1: ${CLI} ${TARGET} ../test/worldcitiespop_mil.csv @${TEST_INIT} ifeq ($(IS_WSL),1) @${TEST_SKIP} else @rm -f ${TMP_DIR}/zsvext-$@.out tmux-*.log @tmux kill-session -t $@ || echo 'No tmux session to kill' @echo 'set-option default-terminal "${TMUX_TERM}"' > ~/.tmux.conf @${RUN_CLI} unregister my 2>/dev/null 1>/dev/null || [ 1==1 ] @${RUN_CLI} register my 2>&1 | grep -v [.]${SO} || [ 1==1 ] @(ZSV_CONFIG_DIR=${TMP_DIR} tmux -v new-session -x 80 -y 5 -d -s $@ "$< sheet ../test/worldcitiespop_mil.csv" && \ ${EXPECT} $@ indexed && \ tmux send-keys -t $@ "t" "hello" Enter Up Down && \ ${EXPECT} $@ && ${TEST_PASS} || ${TEST_FAIL}) endif test-sheet-extension-2: ${CLI} ${TARGET} @${TEST_INIT} ifeq ($(IS_WSL),1) @${TEST_SKIP} else @rm -f ${TMP_DIR}/zsvext-$@.out tmux-*.log @tmux kill-session -t $@ || echo 'No tmux session to kill' @echo 'set-option default-terminal "${TMUX_TERM}"' > ~/.tmux.conf @${RUN_CLI} unregister my 2>/dev/null 1>/dev/null || [ 1==1 ] @${RUN_CLI} register my 2>&1 | grep -v [.]${SO} || [ 1==1 ] @(ZSV_CONFIG_DIR=${TMP_DIR} tmux -v new-session -x 120 -y 5 -d -s $@ "$< sheet -d 3 ../../data/test/mixed-line-endings.csv" && \ ${EXPECT} $@ indexed && \ tmux send-keys -t $@ "T" && \ ${EXPECT} $@ transformed && \ tmux send-keys -t $@ "G" && \ ${EXPECT} $@ && ${TEST_PASS} || ${TEST_FAIL}) endif clean: @rm -f ${TARGET} ${TARGET_SHEET} ${TMP_DIR}/zsvext-test*.out ${BUILD_DIR}/objs/%.o : ${THIS_LIB_BASE}/src/%.c ${PARSER_DEPS} ${MAKE} -C ${THIS_LIB_BASE}/src CONFIGFILE=${CONFIGFILEPATH} DEBUG=${DEBUG} WIN=${WIN} $@ LIBZSV=${PREFIX}/lib/libzsv.a ${LIBZSV}: ${MAKE} -C ${THIS_LIB_BASE}/src CONFIGFILE=${CONFIGFILEPATH} DEBUG=${DEBUG} WIN=${WIN} install LIBZSVUTIL=${PREFIX}/lib/libzsvutil.a ${LIBZSVUTIL}: ${MAKE} -C ${THIS_LIB_BASE}/app CONFIGFILE=${CONFIGFILEPATH} DEBUG=${DEBUG} WIN=${WIN} install-util-lib YAJL_SRC_DIR=${THIS_MAKEFILE_DIR}/../external/yajl YAJL_INCLUDE=-I${YAJL_SRC_DIR}/build/yajl-2.1.1/include YAJL_HELPER_INCLUDE=-I${THIS_MAKEFILE_DIR}/../external/yajl_helper ${TARGET_SHEET}: LIBS="../external/sqlite3/sqlite3.c" -lzsvutil -lzsv -L${PREFIX}/lib -ljq -lutf8proc ${TARGET}: LIBS=-lzsvutil -lzsv -L${PREFIX}/lib ${TARGET} ${TARGET_SHEET}: ${BUILD_DIR}/bin/zsvext%.${SO} : %_extension.c ${LIBZSV} ${LIBZSVUTIL} @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} ${CFLAGS_SHARED} $< -o $@ ${LIBS} ${YAJL_INCLUDE} ${YAJL_HELPER_INCLUDE} .PHONY: all test test-% clean install ${PREFIX}/lib/libzsvutil.a zsv-1.3.0/app/ext_example/configure000077500000000000000000000535111511312357700173510ustar00rootroot00000000000000#!/bin/sh # Based on the configure script from musl libc, MIT licensed; vis, ISC licensed usage () { cat </dev/null 2>&1 && { echo "$1" ; return 0 ; } $1 EOF printf %s\\n "$1" | sed -e "s/'/'\\\\''/g" -e "1s/^/'/" -e "\$s/\$/'/" -e "s#^'\([-[:alnum:]_,./:]*\)=\(.*\)\$#\1='\2#" } echo () { printf "%s\n" "$*" ; } fail () { echo "$*" ; exit 1 ; } fnmatch () { eval "case \"\$2\" in $1) return 0 ;; *) return 1 ;; esac" ; } cmdexists () { type "$1" >/dev/null 2>&1 ; } trycc1 () { test -z "$CC" && cmdexists "$1" && ( "$1" --version | grep -i gcc ) >/dev/null 2>/dev/null && CC=$1 ; } trycc2 () { test -z "$CC" && cmdexists "$1" && CC=$1 ; } tryar () { test -z "$AR" && cmdexists "$1" && AR=$1 ; } tryranlib () { test -z "$RANLIB" && cmdexists "$1" && RANLIB=$1 ; } tryawk () { test -z "$AWK" && "$1" 'function works () {return 0} BEGIN{exit works()}' && AWK=$1 ; } trymake() { if test -z "$MAKE" && cmdexists "$1" ; then v=`$1 --version | grep 'GNU Make' | sed -e 's/.*Make //'` if [ "$v" = "" ] ; then printf "Found but not using non-GNU make ($1)... " else MAKE="$1" maj=`echo $v | cut -d. -f 1` min=`echo $v | cut -d. -f 2` if ! test $maj -gt 3 -o '(' $maj -eq 3 -a $min -ge 81 ')' ; then printf "Warning: using make, but version $v < 3.81 has not been tested. " fi fi fi } stripdir () { while eval "fnmatch '*/' \"\${$1}\"" ; do eval "$1=\${$1%/}" ; done } NO_HAVE= trycchdr () { printf "checking whether there is a header called %s... " "$2" dn=`dirname "$2"` if [ "$dn" != "" ]; then dn="/$dn" bn=`basename "$2"` for x in $CCSEARCHPATH ; do fnd=$fnd"$x$dn " done else bn="$2" fnd=$CCSEARCHPATH fi upper2=$(echo "$2" | tr a-z A-Z | tr . _ | tr / _) if find $fnd -name "$bn" 2>/dev/null | grep "/$2$" >/dev/null 2>&1 ; then eval "$1=\"\${$1} -DHAVE_\${upper2}\"" eval "$1=\${$1# }" printf "yes\n" return 0 else printf "no\n" NO_HAVE="$NO_HAVE NO_$upper2 = 1" return 1 fi } tryccfn () { rm -f "$tmpc" if [ "$5" != "" ] ; then printf "checking whether compiler accepts %s from %s with %s... " "$2" "$3" "$5" echo "$5" >> "$tmpc" else printf "checking whether compiler accepts %s from %s..." "$2" "$3" fi if [ "$3" != "" ]; then printf "%s\n" $3 | sed 's/\(.*\)/#include <\1>/' >> "$tmpc" fi cat >> "$tmpc" </dev/null 2>&1 ; then if [ "$4" != "" ] ; then lib=$(echo "$4" | tr a-z A-Z | tr . _) USE_LIBS="$USE_LIBS USE_LIB_$lib = 1" fi eval "vars=\$$1" if ! printf "%s\n" ${vars} | grep "\-DHAVE_${flag}\$" >/dev/null 2>&1; then flag="-DHAVE_${flag}" eval "$1=\"\${vars} \${flag}\"" eval "$1=\${$1# }" fi printf "yes\n" return 0 else printf "no\n" NO_HAVE="$NO_HAVE NO_$flag = 1" echo "------" >> $CONFIGFILE.log echo "Failed: $CC -o $tmpo tmp.c" >> $CONFIGFILE.log cat "$tmpc" >> $CONFIGFILE.log echo "------" >> $CONFIGFILE.log return 1 fi } tryccfn1 () { rm -f "$tmpc" printf "checking whether compiler accepts %s(%s)..." "$2" "$3" cat >> "$tmpc" </dev/null 2>&1 ; then flag="-DHAVE_${flag}" have=1 else flag="-DNO_${flag}" have=0 fi if ! printf "%s\n" ${vars} | grep "\-D${flag}\$" >/dev/null 2>&1; then eval "$1=\"\${vars} \${flag}\"" eval "$1=\${$1# }" fi if [ "$have" = "1" ]; then printf "yes\n" return 0 else printf "no\n" return 1 fi } tryflag () { printf "checking whether compiler accepts %s... " "$2" echo "int main() {return 0;}" > "$tmpc" if $CC $CFLAGS_TRY $2 -c -o "$tmpo" "$tmpc" >/dev/null 2>&1 ; then printf "yes\n" eval "$1=\"\${$1} \$2\"" eval "$1=\${$1# }" return 0 else printf "no\n" return 1 fi } tryldflag () { # var, flag, other_arguments (optional) printf "checking whether linker accepts %s... " "$2" echo "int main(){return 0;}" > "$tmpc" if $CC $LDFLAGS "$2" $3 -o "$tmpo" "$tmpc" >/dev/null 2>&1 ; then printf "yes\n" eval "$1=\"\${$1} \$2\"" eval "$1=\${$1# }" return 0 else printf "no\n" return 1 fi } trysharedldflag () { printf "checking whether linker accepts %s... " "$2" echo "typedef int x;" > "$tmpc" if $CC $LDFLAGS -shared "$2" -o "$tmpo" "$tmpc" >/dev/null 2>&1 ; then printf "yes\n" eval "$1=\"\${$1} \$2\"" eval "$1=\${$1# }" return 0 else printf "no\n" return 1 fi } # Beginning of actual script CFLAGS_AUTO= CFLAGS_TRY= LDFLAGS_AUTO= LDFLAGS_TRY= CONFIGFILE=$CONFIGFILE if [ "$CONFIGFILE" = "" ]; then CONFIGFILE=config.mk fi # check prefixes first, since others may be derived from it unless overridden PREFIX=$PREFIX for arg ; do case "$arg" in --prefix=*) PREFIX=${arg#*=} ;; esac done if [ "$PREFIX" = "" ]; then PREFIX=/usr/local elif [ "$PREFIX" = "${PREFIX#/}" ]; then PREFIX="`pwd`/$PREFIX" fi EXEC_PREFIX=$EXEC_PREFIX for arg ; do case "$arg" in --exec-prefix=*) EXEC_PREFIX=${arg#*=} ;; esac done if [ "$EXEC_PREFIX" = "" ]; then EXEC_PREFIX=$PREFIX elif [ "$EXEC_PREFIX" = "${EXEC_PREFIX#/}" ]; then EXEC_PREFIX="`pwd`/$EXEC_PREFIX" fi DOCDIR='$(PREFIX)/share/doc' MANDIR='$(PREFIX)/share/man' MINIMAL=no TRY_SHEET=auto help=yes usesmalllut=no usedebugstderr=no usepie=auto usepic=auto usetermcap=auto usejq=auto for arg ; do case "$arg" in --help|-h) usage ;; --host=*) host=${arg#*=} ;; --config-file=*) CONFIGFILE=${arg#*=} ;; CONFIGFILE=*) CONFIGFILE=${arg#*=} ;; --prefix=*) ;; # already handled --exec-prefix=*) ;; # already handled EXEC_PREFIX=${arg#*=} ;; --docdir=*) DOCDIR=${arg#*=} ;; --mandir=*) MANDIR=${arg#*=} ;; --minimal|--minimal=yes) MINIMAL=yes;; --try-avx512|--try-avx512=yes) TRY_AVX512=yes;; --enable-small-lut|--enable-small-lut=yes) usesmalllut=yes ;; --disable-small-lut|--enable-small-lut=no) usesmalllut=no ;; --enable-debug-stderr|--enable-debug-stderr=yes) usedebugstderr=yes ;; --disable-debug-stderr|--enable-debug-stderr=no) usedebugstderr=no ;; --enable-pie|--enable-pie=yes) usepie=yes ;; --enable-pie=auto) usepie=auto ;; --disable-pie|--enable-pie=no) usepie=no ;; --enable-pic|enable-pic=yes) usepic=yes ;; --enable-termcap|--enable-termcap=yes) usetermcap=yes ;; --enable-termcap=auto) usetermcap=auto ;; --disable-termcap|--enable-termcap=no) usetermcap=no ;; --enable-jq|--enable-jq=yes) usejq=yes ;; --enable-jq=auto) usejq=auto ;; --disable-jq|--enable-jq=no) usejq=no ;; --enable-pic=auto) usepic=auto ;; --disable-pic|--enable-pic=no) usepic=no ;; --enable-sheet|--enable-sheet=yes) TRY_SHEET=yes;; --enable-sheet=auto) TRY_SHEET=auto;; --disable-sheet|--enable-sheet=no) TRY_SHEET=no;; --enable-*|--disable-*|--with-*|--without-*|--*dir=*|--build=*) ;; -* ) echo "$0: unknown option $arg" ;; CC=*) CC=${arg#*=} ;; CFLAGS=*) CFLAGS=${arg#*=} ;; CPPFLAGS=*) CPPFLAGS=${arg#*=} ;; LDFLAGS=*) LDFLAGS=${arg#*=} ;; *=*) ;; *) ;; esac done echo "config will be saved to $CONFIGFILE" for i in PREFIX EXEC_PREFIX DOCDIR MANDIR ; do stripdir $i done # # Get a temp filename we can use # i=0 set -C while : ; do i=$(($i+1)) tmpc="./conf$$-$PPID-$i.c" tmpo="./conf$$-$PPID-$i.o" 2>|/dev/null > "$tmpc" && break test "$i" -gt 50 && fail "$0: cannot create temporary file $tmpc" done set +C trap 'rm -f "$tmpc" "$tmpo"' EXIT QUIT TERM HUP trap 'rm -f "$tmpc" "$tmpo" && echo && fail "$0: interrupted"' INT # # Find an AWK tool to use # printf "checking for AWK tool... " for a in awk gawk mawk nawk; do tryawk "$a"; done printf "%s\n" "$AWK" test -n "$AWK" || fail "$0: cannot find an AWK tool" # # Find a MAKE tool to use# printf "checking for MAKE tool... " for a in make gmake ; do trymake "$a"; done printf "%s\n" "$MAKE" test -n "$MAKE" || fail "$0: cannot find a MAKE tool" # # Find a C compiler to use # printf "checking for C compiler... " for c in cc gcc gcc-11 gcc-10 gcc-9 clang; do trycc1 "$c"; done for c in cc gcc gcc-11 gcc-10 gcc-8 clang; do trycc2 "$c"; done printf "%s\n" "$CC" test -n "$CC" || fail "$0: cannot find a C compiler" printf "checking whether C compiler works... " echo "typedef int x;" > "$tmpc" if output=$($CC $CPPFLAGS $CFLAGS -c -o "$tmpo" "$tmpc" 2>&1) ; then printf "yes\n" else fail "no; compiler output follows:\n%s\n" "$output" fi # # Get compiler search paths # CCSEARCHPATH=$(echo | ${CC} -E -Wp,-v - 2>&1 | ${AWK} '/ \//{print substr($0,2);}') # # Check if it is clang, and the llvm tools instead compiler=$(${CC} -v 2>&1 | ${AWK} '/ +version +/{for(i=1;i<=NF;i++){if($i=="version"){printf("%s\n",(last=="LLVM")?"clang":last);exit 0;}last=$i;}}') if test "$compiler" = "clang"; then arlist="$CC-llvm-ar $host-llvm-ar $CC-ar $host-ar llvm-ar ar" ranliblist="$CC-llvm-ranlib $host-llvm-ranlib $CC-ranlib $host-ranlib llvm-ranlib ranlib" else arlist="$CC-ar $host-$compiler-ar $host-ar $compiler-ar ar" ranliblist="$CC-ranlib $host-$compiler-ranlib $host-ranlib $compiler-ranlib $compiler-ranlib ranlib" fi # # Find ar and ranlib to use # printf "checking for ar... " for a in $arlist; do tryar "$a"; done printf "%s\n" "$AR" test -n "$AR" || fail "$0: cannot find ar" printf "checking for ranlib... " for r in $ranliblist ; do tryranlib "$r"; done printf "%s\n" "$RANLIB" test -n "$RANLIB" || fail "$0: cannot find ranlib" # # Detect the host system # printf 'checking host system type... ' test -n "$host" || host=$($CC -dumpmachine 2>/dev/null) || fail "could not determine host" printf '%s\n' "$host" # start the log cat >$CONFIGFILE.log <<_ACEOF Config log. Invocation command line was $ $0 $@ _ACEOF # # Figure out options to force errors on unknown flags. # tryflag CFLAGS_TRY -Werror=unknown-warning-option tryflag CFLAGS_TRY -Werror=unused-command-line-argument tryflag CFLAGS_TRY -Werror=ignored-optimization-argument tryldflag LDFLAGS_TRY -Werror=unknown-warning-option tryldflag LDFLAGS_TRY -Werror=unused-command-line-argument tryldflag LDFLAGS_TRY -Werror=ignored-optimization-argument CFLAGS_STD="-std=gnu11 -D_POSIX_C_SOURCE=200809L -U_XOPEN_SOURCE -D_XOPEN_SOURCE=700" # CFLAGS_OPT="-DNDEBUG" MINGW=0 case "$host" in *-*freebsd*) CFLAGS_STD="$CFLAGS_STD -D_BSD_SOURCE -D__BSD_VISIBLE=1" ;; *-*netbsd*) CFLAGS_STD="$CFLAGS_STD -D_NETBSD_SOURCE" ;; *-*bsd*) CFLAGS_STD="$CFLAGS_STD -D_BSD_SOURCE" ;; *-*darwin*) CFLAGS_STD="$CFLAGS_STD -D_DARWIN_C_SOURCE" ;; *-*mingw32|*-*msys*|*-windows-gnu) CFLAGS_STD="$CFLAGS_STD -D__USE_MINGW_ANSI_STDIO" MINGW=1 usepie=no usepic=no ;; esac if test "$usepie" = "auto" ; then usepie=yes fi if test "$usepic" = "auto" ; then usepic=yes fi tryflag CFLAGS_VECTORIZE -fvectorize tryflag CFLAGS_VECTORIZE -ftree-vectorize tryflag CFLAGS_VECTORIZE_OPTIMIZED -fopt-info-vec-optimized tryflag CFLAGS_VECTORIZE_MISSED -fopt-info-vec-missed tryflag CFLAGS_VECTORIZE_ALL -fopt-info-vec-all tryflag CFLAGS_OPENMP -fopenmp if [ "$TRY_SHEET" != "no" ]; then if tryldflag LDFLAGS_NCURSESW -lncursesw -L"$PREFIX"/lib ; then LDFLAGS_NCURSES=-lncursesw NCLIB=ncursesw if [ "$NCURSES_DYNAMIC" = "" ] ; then CFLAGS_NCURSES="-DHAVE_NCURSESW -DNCURSES_STATIC" else CFLAGS_NCURSES="-DHAVE_NCURSESW" fi fi if tryldflag LDFLAGS_NCURSES -lncurses -L"$PREFIX"/lib ; then NCLIB=ncurses if [ "$NCURSES_DYNAMIC" = "" ] ; then CFLAGS_NCURSES="$CFLAGS_NCURSES -DHAVE_NCURSES -DNCURSES_STATIC" else CFLAGS_NCURSES="$CFLAGS_NCURSES -DHAVE_NCURSES" fi fi ZSVSHEET_BUILD=1 if [ "$TRY_SHEET" = "yes" ] ; then echo "Error: could not find either ncurses or ncursesw library; cannot build 'sheet' feature" exit 1 fi if [ "$LDFLAGS_NCURSES" = "" ] ; then echo "Warning: could not find either ncurses or ncursesw library; cannot build 'sheet' feature" ZSVSHEET_BUILD=0 fi fi if test "$usepie" = "yes" ; then tryflag CFLAGS_PIE -fpie || tryflag CFLAGS_PIE -fPIE fi if test "$usepic" = "yes" ; then tryflag CFLAGS_PIC -fpic || tryflag CFLAGS_PIC -fPIC fi test "$usepie" = "yes" && tryldflag LDFLAGS_PIE -pie if test "$usepic" = "yes" ; then trysharedldflag LDFLAGS_PIC -fpic || trysharedldflag LDFLAGS_PIC -fPIC fi test "$usepie" = "no" && tryflag CFLAGS_PIE -fno-pie test "$usepic" = "no" && tryflag CFLAGS_PIC -fno-pic test "$usepie" = "no" && tryldflag LDFLAGS_PIE -no-pie test "$usepic" = "no" && trysharedldflag LDFLAGS_PIC -fno-pic #if test $MINGW -eq 0 ; then #LDFLAGS_STD="-lc" #tryflag CFLAGS_AUTO -fstack-protector-all #case "$CFLAGS_AUTO" in #*-fstack-protector*) CFLAGS_AUTO="-D_FORTIFY_SOURCE=2"; ;; #esac #fi tryflag CFLAGS -pipe # Try flags to optimize speed tryflag CFLAGS -ffunction-sections tryflag CFLAGS -fdata-sections tryflag CFLAGS_AVX2 -mavx2 tryflag CFLAGS_CLMUL -mvpclmulqdq tryflag CFLAGS_LTO -flto tryflag CFLAGS_OPT -fvisibility=hidden tryldflag LDFLAGS_AUTO -Wl,--gc-sections tryldflag LDFLAGS_OPT_LTO -flto tryldflag LDFLAGS_OPT -fwhole-program tryldflag LDFLAGS_OPT -march=native tryldflag LDFLAGS_OPT -ldl # Try hardening flags if test "$usepie" = "yes" ; then case "$LDFLAGS_PIE" in *pie*) tryldflag LDFLAGS_PIE -Wl,-z,now tryldflag LDFLAGS_PIE -Wl,-z,relro ;; esac fi if test "$usepic" = "yes" ; then case "$LDFLAGS_PIC" in *pic*) tryldflag LDFLAGS_PIC -Wl,-z,now tryldflag LDFLAGS_PIC -Wl,-z,relro ;; esac fi # Check function availability if [ "$TRY_AVX512" = "yes" ]; then printf "checking whether avx512 instructions are available..." HAVE_AVX512= tryccfn CFLAGS_AVX_512 "_mm512_movepi8_mask" "immintrin.h" && trycchdr CFLAGS_AVX_512 "immintrin.h" && ( tryccfn CFLAGS_AVX_512 "_blsr_u64" "immintrin.h" || tryccfn CFLAGS_AVX_512 "__blsr_u64" "immintrin.h" ) && tryflag CFLAGS_AVX_512 "-mbmi" && tryflag CFLAGS_AVX_512 "-mavx512bw" && CFLAGS_AVX_512="-mbmi -mavx512bw -DHAVE_AVX512=1" && HAVE_AVX512=1 if [ "$HAVE_AVX512" = "1" ]; then echo "yes" else echo "no" echo "WARNING: --try-avx512 option enabled, but no avx512 instruction set available" fi fi tryccfn CFLAGS_AVX_256 "_mm256_movemask_epi8" "immintrin.h" && trycchdr CFLAGS_AVX_256 "immintrin.h" && ( tryccfn CFLAGS_AVX_256 "_blsr_u32" "immintrin.h" || tryccfn CFLAGS_AVX_256 "__blsr_u32" "immintrin.h" ) && CFLAGS_AVX_256="-DHAVE_AVX256=1" && HAVE_AVX256=1 tryccfn CFLAGS_AUTO "memmem" "string.h" if [ "$usetermcap" = "yes" ] || [ "$usetermcap" = "auto" ] ; then tryccfn TERMCAP_H "tgetent" "termcap.h" && tryldflag LDFLAGS_TERMCAP -ltermcap && tryccfn CFLAGS_AUTO "tgetent" "termcap.h" termcap || \ if test "$usetermcap" = "yes"; then echo "Error: --enable-termcap specified, but not found" exit 1 fi fi if [ "$usejq" = "yes" ] || [ "$usejq" = "auto" ] ; then tryldflag LDFLAGS_JQ -ljq -L${PREFIX}/lib || \ if test "$usejq" = "yes"; then echo "Error: --enable-jq specified, but not found" exit 1 fi if [ "$LDFLAGS_JQ" != "" ] ; then tryldflag LDFLAGS_JQ -lm tryldflag LDFLAGS_JQ -lshlwapi if [ "$NO_THREADING" != "1" ]; then tryldflag LDFLAGS_JQ -pthread fi fi fi tryccfn CFLAGS_AUTO "arc4random_uniform" "stdlib.h" || tryccfn CFLAGS_AUTO "rand_s" "stdlib.h" "" "#define _CRT_RAND_S" tryccfn1 CFLAGS_AUTO "__builtin_expect" "0,0" tryccfn1 CFLAGS_AUTO "__builtin_expect_with_probability" "0,0,0.5" # Optional features if test "$usesmalllut" = "yes" ; then USE_SMALL_LUT=1 else USE_SMALL_LUT=0 fi if test "$usedebugstderr" = "yes" ; then USE_DEBUG_STDERR=1 else USE_DEBUG_STDERR=0 fi ZSV_EXTRAS= if test "$MINIMAL" = "no" ; then ZSV_EXTRAS=1 fi printf "creating $CONFIGFILE... " cmdline=$(quote "$0") for i ; do cmdline="$cmdline $(quote "$i")" ; done exec 3>&1 1> $CONFIGFILE cat << EOF # This version of $CONFIGFILE was generated by: # $cmdline # Any changes made here will be lost if configure is re-run PREFIX = $PREFIX EXEC_PREFIX = $EXEC_PREFIX BINDIR = $EXEC_PREFIX/bin LIBDIR = $EXEC_PREFIX/lib INCLUDEDIR = $EXEC_PREFIX/include DOCPREFIX = $DOCDIR MANPREFIX = $MANDIR CC = $CC AWK = $AWK MAKE = $MAKE AR = $AR RANLIB = $RANLIB CFLAGS = $CFLAGS LDFLAGS = $LDFLAGS CFLAGS_STD = $CFLAGS_STD LDFLAGS_STD = $LDFLAGS_STD CFLAGS_OPT = $CFLAGS_OPT LDFLAGS_OPT = $LDFLAGS_OPT LDFLAGS_TERMCAP = $LDFLAGS_TERMCAP LDFLAGS_JQ = $LDFLAGS_JQ CFLAGS_AUTO = $CFLAGS_AUTO CFLAGS_LTO = $CFLAGS_LTO LDFLAGS_AUTO = $LDFLAGS_AUTO CFLAGS_AVX2 = $CFLAGS_AVX2 HAVE_AVX512=$HAVE_AVX512 CFLAGS_AVX_512=$CFLAGS_AVX_512 HAVE_AVX256=$HAVE_AVX256 CFLAGS_AVX_256=$CFLAGS_AVX_256 CFLAGS_CLMUL = $CFLAGS_CLMUL CFLAGS_DEBUG = -U_FORTIFY_SOURCE -UNDEBUG -O0 -g3 -ggdb -Wall -Wextra -Wno-missing-field-initializers -Wno-unused-parameter LDFLAGS_DEBUG = -U_FORTIFY_SOURCE -UNDEBUG -O0 -g3 -ggdb CFLAGS_PIC = $CFLAGS_PIC LDFLAGS_PIC = $LDFLAGS_PIC CFLAGS_PIE = $CFLAGS_PIE LDFLAGS_PIE = $LDFLAGS_PIE USE_SMALL_LUT = $USE_SMALL_LUT USE_DEBUG_STDERR = $USE_DEBUG_STDERR CFLAGS_VECTORIZE = $CFLAGS_VECTORIZE CFLAGS_VECTORIZE_OPTIMIZED = $CFLAGS_VECTORIZE_OPTIMIZED CFLAGS_VECTORIZE_MISSED = $CFLAGS_VECTORIZE_MISSED CFLAGS_VECTORIZE_ALL = $CFLAGS_VECTORIZE_ALL CFLAGS_OPENMP = $CFLAGS_OPENMP ZSV_EXTRAS = $ZSV_EXTRAS ZSVSHEET_BUILD = $ZSVSHEET_BUILD $NO_HAVE $USE_LIBS EOF exec 1>&3 3>&- printf "done\n" echo "" echo "****************************************************************" echo "* zsv configuration *" echo "****************************************************************" if [ "$LDFLAGS_JQ" = "" ]; then echo "* - libjq (-ljq): no. \`jq\` command will be disabled *" else echo "* - libjq: yes *" fi if [ "$LDFLAGS_TERMCAP" = "" ]; then echo "* - termcap: no. \`pretty\` will use default width assumption *" else echo "* - termcap: yes *" fi if [ "$HAVE_AVX512" = "1" ]; then echo "* - using 512-bit AVX instruction set" elif [ "$HAVE_AVX256" = "1" ]; then echo "* - using 256-bit AVX instruction set" else echo "* - using 128-bit vector size" fi echo "****************************************************************" if ! [ "$MAKE" = "" ]; then echo "" echo "To build and install, run" echo "$MAKE install" > `pwd`/install.sh 2>/dev/null && chmod 755 `pwd`/install.sh 2>/dev/null && printf " ./install.sh\nor\n" echo " $MAKE install" echo "" echo "Other common commands:" echo " $MAKE # print available make commands" echo " (cd src && $MAKE install) # install library" echo " (cd app && $MAKE install) # install library and zsv CLI" echo " $MAKE uninstall # uninstall library and zsv CLI" echo " $MAKE clean # remove build artifacts" echo "" fi if ! "$CC" --version | grep -i gcc >/dev/null && ! "$CC" --version | grep -i clang >/dev/null ; then echo "*********************** WARNING!! ***********************" echo "* Non-gcc/clang compiler untested; use at your own risk *" echo "* consider using gcc or clang instead e.g.: *" echo "* ./configure CC=gcc-11 *" echo "*********************************************************" echo "" fi exit 0 zsv-1.3.0/app/ext_example/my_extension.c000066400000000000000000000317741511312357700203360ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and zsv contributors. All rights reserved. * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #include #include #include #include #include /** * `zsv` can easily be extended by simply creating a shared library * that implements the interface specified in zsv/ext/implementation.h * for any extension id of up to 8 bytes * * Once the library file is created, you can run any commands it implements * by naming the library file zsvext, placing it in any folder that is * in the system lib search path, or in the same folder as zsv, and running: * `zsv xx-command` * * It's as simple as that! * * In this example, we will implement two simple commands: * * `count` will count lines * * `echo` will regurgitate its input to stdout * * We will name our extension "my", so our shared library will be named * zsvextmy.so (non-win) or zsvextmy.dll (win). After the shared lib is built, * place it anywhere in the PATH or in the same folder as the zsv binary. * Our extension commands can then be invoked by running: * `zsv my-count` * `zsv my-echo` * * in addition, a description of our extension is available via: * `zsv help` * * and command-specific help displayed via: * `zsv help my-` * */ /** * *Required*: define our extension id, of up to 8 bytes in length */ const char *zsv_ext_id(void) { return "my"; } /** * When our library is initialized, zsv will pass it the address of the zsvlib * functions we will be using. We can keep track of this any way we want; * in this example, we use a global variable to store the function pointers */ static struct zsv_ext_callbacks zsv_cb; /** * Each command must be implemented as a function with a signature * as defined by `zsv_ext_main`. This is basically the same as a main() function, * but with an additional preceding zsv_execution_context parameter. * Here, we just declare the functions; we fully define them further below */ enum zsv_ext_status count_main(zsv_execution_context ctx, int argc, const char *argv[], struct zsv_opts *opts); static enum zsv_ext_status echo_main(zsv_execution_context ctx, int argc, const char *argv[], struct zsv_opts *opts); #ifdef ZSVSHEET_BUILD /** * Here we define a custom command for the zsv `sheet` feature */ zsvsheet_status my_test_command_handler(zsvsheet_proc_context_t ctx) { char result_buffer[256] = {0}; int ch = zsv_cb.ext_sheet_keypress(ctx); if (ch < 0) return zsvsheet_status_error; zsv_cb.ext_sheet_prompt(ctx, result_buffer, sizeof(result_buffer), "You pressed %c. Now enter something here", (char)ch); if (*result_buffer == '\0') return zsvsheet_status_ok; char *temp_filename = zsv_get_temp_filename("zsvsheet_extension_example.csv"); if (!temp_filename) { fprintf(stderr, "Out of memory!\n"); return zsvsheet_status_error; } FILE *f = fopen(temp_filename, "wb"); if (!f) zsv_cb.ext_sheet_set_status(ctx, "Unable to open for write: %s", temp_filename); else { fprintf(f, "buffer #,file name\n"); // get a count of open buffers int i = 0; for (zsvsheet_buffer_t buff = zsv_cb.ext_sheet_buffer_current(ctx); buff; buff = zsv_cb.ext_sheet_buffer_prior(buff), i++) ; // print a list of open buffers and filenames for (zsvsheet_buffer_t buff = zsv_cb.ext_sheet_buffer_current(ctx); buff; buff = zsv_cb.ext_sheet_buffer_prior(buff), i--) { const char *buff_filename = zsv_cb.ext_sheet_buffer_data_filename(buff); if (buff_filename) fprintf(f, "%i,%s\n", i, buff_filename); // assumes no need for quoting or escaping buff_filename... } fclose(f); return zsv_cb.ext_sheet_open_file(ctx, temp_filename, NULL); } free(temp_filename); return zsvsheet_status_ok; } struct transformation_context { zsvsheet_proc_context_t proc_ctx; size_t col_count; size_t row_count; }; // Similar to a regular ZSV row handler used in ext_parse_all void my_transformation_row_handler(zsvsheet_transformation trn) { struct transformation_context *priv = zsv_cb.ext_sheet_transformation_user_context(trn); zsv_parser parser = zsv_cb.ext_sheet_transformation_parser(trn); zsv_csv_writer writer = zsv_cb.ext_sheet_transformation_writer(trn); size_t j = zsv_cb.cell_count(parser); for (size_t i = 0; i < j; i++) { struct zsv_cell c = zsv_cb.get_cell(parser, i); zsv_writer_cell(writer, i == 0, c.str, c.len, c.quoted); } priv->col_count += j; if (!priv->row_count) zsv_writer_cell_s(writer, 0, (const unsigned char *)"Column count", 0); else zsv_writer_cell_zu(writer, 0, priv->col_count); priv->row_count++; } zsvsheet_status my_transformation_command_handler(zsvsheet_proc_context_t ctx) { struct zsvsheet_buffer_transformation_opts opts = { // Gets freed automatically .user_context = calloc(1, sizeof(struct transformation_context)), .row_handler = my_transformation_row_handler, .on_done = NULL, }; return zsv_cb.ext_sheet_push_transformation(ctx, opts); } #endif /** * *Required*. Initialization is called when our extension is loaded. Our * initialization routine uses `ext_add_command` to register our commands and * `ext_set_help` to set the help text. When we register a command, we provide a * callback-- in our cases, those will be `count_main()` and `echo_main()`-- for * zsv to invoke when our command is run * * @param callbacks pointers to zsvlib functions that we must save for later use * @param ctx context to be passed whenever we execute a zsvlib function from our init * @return status code e.g. zsv_ext_status_ok */ enum zsv_ext_status zsv_ext_init(struct zsv_ext_callbacks *cb, zsv_execution_context ctx) { zsv_cb = *cb; zsv_cb.ext_set_help(ctx, "Sample zsv extension"); zsv_cb.ext_set_license(ctx, "Unlicense. See https://github.com/spdx/license-list-data/blob/master/text/Unlicense.txt"); /** * In the common case where your extension uses third-party software, you can add * the related licenses and acknowledgements here, which `zsv` will display whenever * `zsv thirdparty` is invoked */ const char *third_party_licenses[] = {"If we used any third-party software, we would list each license here", NULL}; zsv_cb.ext_set_thirdparty(ctx, third_party_licenses); zsv_cb.ext_add_command(ctx, "count", "print the number of rows", count_main); zsv_cb.ext_add_command(ctx, "echo", "print the input data back to stdout", echo_main); #ifdef ZSVSHEET_BUILD int proc_id = zsv_cb.ext_sheet_register_proc("my-test-command", "my test command", my_test_command_handler); if (proc_id < 0) return zsv_ext_status_error; zsv_cb.ext_sheet_register_proc_key_binding('t', proc_id); proc_id = zsv_cb.ext_sheet_register_proc("my-transformation", "my transformation", my_transformation_command_handler); if (proc_id < 0) return zsv_ext_status_error; zsv_cb.ext_sheet_register_proc_key_binding('T', proc_id); #endif return zsv_ext_status_ok; } /** * exit: called once by zsv before the library is unloaded, if `zsv_ext_init()` was * previously called */ enum zsv_ext_status zsv_ext_exit(void) { fprintf(stderr, "Exiting extension example!\n"); return zsv_ext_status_ok; } /** * Now we are getting to the "meat" of our program. Each command will be defined by two * functions: * - a main routine, which initializes private data, calls the parser, then performs any final * steps and/or cleanup * - a row handler, which is called by the parser for each parsed row */ /** * structure that our functions will use to store private state data * which our functions can retrieve using the zsvlib callback `ext_get_context()` */ struct my_data { zsv_csv_writer csv_writer; size_t rows; }; /** * Our row handlers retrieve our state data and update and/or operate on it * We can choose, in our main routine, for the ctx pointer it receives to be * anything we want, but in most cases there is no reason to set it to anything * other than the zsv_execution_context passed to main * * @param ctx a context pointer of our choice, typically set in the main() function */ static void count_rowhandler(void *ctx) { /* get our private data */ struct my_data *data = zsv_cb.ext_get_context(ctx); /* increment row counter */ data->rows++; } static void echo_rowhandler(void *ctx) { /* get our private data */ struct my_data *data = zsv_cb.ext_get_context(ctx); /** * In most cases, we will want to do something with the row that was just parsed, * in which case we can use ext_get_parser(), cell_count() and get_cell() * to get a parser handle, the number of cells in our current row, and each * cell's length and string (and other info) */ zsv_parser parser = zsv_cb.ext_get_parser(ctx); unsigned j = zsv_cb.cell_count(parser); for (unsigned i = 0; i < j; i++) { struct zsv_cell c = zsv_cb.get_cell(parser, i); /** * get_cell() returns a zsv_cell structure that holds a pointer to the text, * the length (in bytes) of the data, * and other parser-generated info (e.g. QUOTED flags) */ /* write the cell contents to csv output */ zsv_writer_cell(data->csv_writer, i == 0, c.str, c.len, c.quoted); } } /** * Our main routines are similar to normal main() functions, except that the first * param is a zsvlib-generated zsv_execution_context pointer for use with other * `ext_xxx` functions. All we do here is initialize our data, call the parser, and * perform any final steps after all data has been processed */ static enum zsv_ext_status echo_main(zsv_execution_context ctx, int argc, const char *argv[], struct zsv_opts *optsp) { (void)(argc); (void)(argv); (void)(optsp); /* initialize private data */ struct my_data data; memset(&data, 0, sizeof(data)); /* initialize a csv writer, which we add to our private data structure */ unsigned char writer_buff[128]; /** * the the zsv_writer utility has two special optimizations: first, it * uses its own buffer to short-circuit costly stdio operations, and second, * it accepts a 'quoted' flag that, if zero, tells it to not bother * checking for quote requirements and to just output the contents 'raw' */ if (!(data.csv_writer = zsv_writer_new(NULL))) return zsv_ext_status_memory; zsv_writer_set_temp_buff(data.csv_writer, writer_buff, sizeof(writer_buff)); /** * The following common parser options that are already handled by zsv (so long as we use * either of the provided callbacks `ext_parse_all()` or `new_with_context()`), including: * ``` * -B,--buff-size * -c,--max-column-count * -r,--max-row-size * -t,--tab-delim * -O,--other-delim * -q,--no-quote * -R,--skip-head : skip specified number of initial rows * -d,--header-row-span : apply header depth (rowspan) of n * -S,--keep-blank-headers: disable default behavior of ignoring leading blank rows * -v,--verbose: verbose output * ``` * * If we wanted our command to support parameters for modifying other * `zsv_opts`, we could do so here by processing argc and argv[] and taking * the appropriate actions to change our private data and/or modify our opts * structure * * For this example, we will not implement any additional options, so the only * `zsv_opts` value we need to update is the row handler */ /** * use the `ext_parse_all()` convenience function */ struct zsv_opts opts = zsv_cb.ext_parser_opts(ctx); enum zsv_ext_status stat = zsv_cb.ext_parse_all(ctx, &data, echo_rowhandler, &opts); /** * clean up after we finish parsing */ zsv_writer_delete(data.csv_writer); /** * the return value of the main function will be passed on as the return value * of this process invocation */ return stat; } /** * Our main routine for counting is just like the one for echo, but even simpler * since we need not bother with a csv writer */ static const char *count_help = "count: print the number of rows in a CSV data file\n" "\n" "usage: count [-h,--help] [filename]\n"; enum zsv_ext_status count_main(zsv_execution_context ctx, int argc, const char *argv[], struct zsv_opts *optsp) { (void)(optsp); /* help */ if (argc > 1 && (!strcmp(argv[1], "-h") || !strcmp(argv[1], "--help"))) { printf("%s", count_help); return zsv_ext_status_ok; } /* initialize private data. see above for details */ struct my_data data = {0}; struct zsv_opts opts = zsv_cb.ext_parser_opts(ctx); if (argc > 1 && !(opts.stream = fopen(argv[1], "rb"))) { fprintf(stderr, "Unable to open for reading: %s\n", argv[1]); return 1; } /* parse the input data. see above for details */ enum zsv_ext_status stat = zsv_cb.ext_parse_all(ctx, &data, count_rowhandler, &opts); /* finish up */ if (stat == zsv_ext_status_ok) printf("Rows: %zu\n", data.rows > 0 ? data.rows - 1 : 0); return stat; } zsv-1.3.0/app/ext_example/mysheet_extension.c000066400000000000000000000305661511312357700213650ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and zsv contributors. All rights reserved. * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #include #include #include "../external/sqlite3/sqlite3.h" #include #include #include #include #include // #include "../curses.h" /** * This is an example to demonstrate various extension capabilities * specific to the `sheet` subcommand. For examples of extending the * CLI outside of `sheet`, see my_extension.c * * In this example, we will re-implement the built-in pivot table command * * We will name our extension "mysheet", so our shared library will be named * zsvextmysheet.so (non-win) or zsvextmysheet.dll (win). After the shared lib is * built, place it anywhere in the PATH or in the same folder as the zsv binary. * Our extension can then be invoked by first running `sheet`, and then pressing * 'z' * * in addition, a description of our extension is displayed in the built-in help * command (?) * */ /** * *Required*: define our extension id, of up to 8 bytes in length */ const char *zsv_ext_id(void) { return "mysheet"; } /** * When our library is initialized, zsv will pass it the address of the zsvlib * functions we will be using. We can keep track of this any way we want; * in this example, we use a global variable to store the function pointers */ static struct zsv_ext_callbacks zsv_cb; #include "../sql_internal.h" struct pivot_row { char *value; // to do: this will be the drill-down criteria }; struct pivot_data { char *value_sql; // the sql expression entered by the user e.g. City char *data_filename; struct { struct pivot_row *data; // for each row, the value of the sql expression e.g. New York size_t capacity; size_t used; } rows; }; static void pivot_data_delete(void *h) { struct pivot_data *pd = h; if (pd) { for (size_t i = 0; i < pd->rows.used; i++) free(pd->rows.data[i].value); free(pd->rows.data); free(pd->value_sql); free(pd->data_filename); free(pd); } } static struct pivot_data *pivot_data_new(const char *data_filename, const char *value_sql) { struct pivot_data *pd = calloc(1, sizeof(*pd)); if (pd && (pd->value_sql = strdup(value_sql)) && (pd->data_filename = strdup(data_filename))) return pd; pivot_data_delete(pd); return NULL; } #define ZSV_MYSHEET_EXTENSION_PIVOT_DATA_ROWS_INITIAL 32 static int pivot_data_grow(struct pivot_data *pd) { if (pd->rows.used == pd->rows.capacity) { size_t new_capacity = pd->rows.capacity == 0 ? ZSV_MYSHEET_EXTENSION_PIVOT_DATA_ROWS_INITIAL : pd->rows.capacity * 2; struct pivot_row *new_data = realloc(pd->rows.data, new_capacity * sizeof(*pd->rows.data)); if (!new_data) return ENOMEM; pd->rows.data = new_data; pd->rows.capacity = new_capacity; } return 0; } static int add_pivot_row(struct pivot_data *pd, const char *value, size_t len) { int err = pivot_data_grow(pd); char *value_dup = NULL; if (!err && value && len) { value_dup = malloc(len + 1); if (value_dup) { memcpy(value_dup, value, len); value_dup[len] = '\0'; } } pd->rows.data[pd->rows.used++].value = value_dup; return err; } static struct pivot_row *get_pivot_row_data(struct pivot_data *pd, size_t row_ix) { if (pd && row_ix < pd->rows.used) return &pd->rows.data[row_ix]; return NULL; } // TO DO: return zsvsheet_status static enum zsv_ext_status get_cell_attrs(void *pdh, zsvsheet_cell_attr_t *attrs, size_t start_row, size_t row_count, size_t cols) { struct pivot_data *pd = pdh; size_t end_row = start_row + row_count; if (end_row > pd->rows.used) end_row = pd->rows.used; for (size_t i = start_row; i < end_row; i++) attrs[i * cols] = zsv_cb.ext_sheet_cell_profile_attrs(zsvsheet_cell_attr_profile_link); return zsv_ext_status_ok; } static void pivot_on_header_cell(void *ctx, size_t col_ix, const char *colname) { if (col_ix == 0) { add_pivot_row(ctx, NULL, 0); } } static void pivot_on_data_cell(void *ctx, size_t col_ix, const char *text, size_t len) { if (col_ix == 0) add_pivot_row(ctx, text, len); } static zsvsheet_status zsv_sqlite3_to_csv(zsvsheet_proc_context_t pctx, struct zsv_sqlite3_db *zdb, const char *sql, void *ctx, void (*on_header_cell)(void *, size_t, const char *), void (*on_data_cell)(void *, size_t, const char *, size_t len)) { const char *err_msg = NULL; zsvsheet_status zst = zsvsheet_status_error; sqlite3_stmt *stmt = NULL; if ((zdb->rc = sqlite3_prepare_v2(zdb->db, sql, -1, &stmt, NULL)) == SQLITE_OK) { char *tmp_fn = zsv_get_temp_filename("zsv_mysheet_ext_XXXXXXXX"); struct zsv_csv_writer_options writer_opts = zsv_writer_get_default_opts(); zsv_csv_writer cw = NULL; if (!tmp_fn) zst = zsvsheet_status_memory; else if (!(writer_opts.stream = fopen(tmp_fn, "wb"))) { zst = zsvsheet_status_error; err_msg = strerror(errno); } else if (!(cw = zsv_writer_new(&writer_opts))) zst = zsvsheet_status_memory; else { zst = zsvsheet_status_ok; unsigned char cw_buff[1024]; zsv_writer_set_temp_buff(cw, cw_buff, sizeof(cw_buff)); int col_count = sqlite3_column_count(stmt); // write header row for (int i = 0; i < col_count; i++) { const char *colname = sqlite3_column_name(stmt, i); zsv_writer_cell(cw, !i, (const unsigned char *)colname, colname ? strlen(colname) : 0, 1); if (on_header_cell) on_header_cell(ctx, i, colname); } // write sql results while (sqlite3_step(stmt) == SQLITE_ROW) { for (int i = 0; i < col_count; i++) { const unsigned char *text = sqlite3_column_text(stmt, i); int len = text ? sqlite3_column_bytes(stmt, i) : 0; zsv_writer_cell(cw, !i, text, len, 1); if (on_data_cell) on_data_cell(ctx, i, text, len); } } } if (cw) zsv_writer_delete(cw); if (writer_opts.stream) fclose(writer_opts.stream); if (tmp_fn && zsv_file_exists(tmp_fn)) zst = zsv_cb.ext_sheet_open_file(pctx, tmp_fn, NULL); else { if (zst == zsvsheet_status_ok) { zst = zsvsheet_status_error; // to do: make this more specific if (!err_msg && zdb && zdb->rc != SQLITE_OK) err_msg = sqlite3_errmsg(zdb->db); } } free(tmp_fn); } if (stmt) sqlite3_finalize(stmt); if (err_msg) zsv_cb.ext_sheet_set_status(ctx, "Error: %s", err_msg); return zst; } // zsvsheet_status pivot_drill_down(zsvsheet_proc_context_t ctx) { enum zsvsheet_status zst = zsvsheet_status_ok; char result_buffer[256] = {0}; zsvsheet_buffer_t buff = zsv_cb.ext_sheet_buffer_current(ctx); struct pivot_data *pd; struct zsvsheet_rowcol rc; if (zsv_cb.ext_sheet_buffer_get_ctx(buff, (void **)&pd) != zsv_ext_status_ok || zsv_cb.ext_sheet_buffer_get_selected_cell(buff, &rc) != zsvsheet_status_ok) { return zsvsheet_status_error; } struct pivot_row *pr = get_pivot_row_data(pd, rc.row); if (pd && pd->data_filename && pd->value_sql && pr) { // zsv_cb.ext_sheet_prompt(ctx, result_buffer, sizeof(result_buffer), "You are in pivot_drill_down! row = %zu, value // = %s\n", rc.row, pr->value ? pr->value : "(null)"); struct zsv_sqlite3_dbopts dbopts = {0}; sqlite3_str *sql_str = NULL; struct zsv_sqlite3_db *zdb = zsv_cb.ext_sqlite3_db_new(&dbopts); if (!zdb || !(sql_str = sqlite3_str_new(zdb->db))) zst = zsvsheet_status_memory; else if (zdb->rc == SQLITE_OK && zsv_cb.ext_sqlite3_add_csv(zdb, pd->data_filename, NULL, NULL) == SQLITE_OK) { if (zsv_cb.ext_sheet_buffer_info(buff).has_row_num) sqlite3_str_appendf(sql_str, "select *"); else sqlite3_str_appendf(sql_str, "select rowid as [Row #], *"); sqlite3_str_appendf(sql_str, " from data where %s = %Q", pd->value_sql, pr->value); fprintf(stderr, "SQL: %s\n", sqlite3_str_value(sql_str)); zst = zsv_sqlite3_to_csv(ctx, zdb, sqlite3_str_value(sql_str), NULL, NULL, NULL); } if (sql_str) sqlite3_free(sqlite3_str_finish(sql_str)); if (zdb) { if (zst != zsvsheet_status_ok) { // to do: consolidate this with same code in sql.c if (zdb->err_msg) fprintf(stderr, "Error: %s\n", zdb->err_msg); else if (!zdb->db) fprintf(stderr, "Error (unable to open db, code %i): %s\n", zdb->rc, sqlite3_errstr(zdb->rc)); else if (zdb->rc != SQLITE_OK) fprintf(stderr, "Error (code %i): %s\n", zdb->rc, sqlite3_errstr(zdb->rc)); } zsv_cb.ext_sqlite3_db_delete(zdb); } } return zst; } /** * Here we define a custom command for the zsv `sheet` feature */ zsvsheet_status my_pivot_table_command_handler(zsvsheet_proc_context_t ctx) { char result_buffer[256] = {0}; int ch = zsv_cb.ext_sheet_keypress(ctx); if (ch < 0) return zsvsheet_status_error; zsvsheet_buffer_t buff = zsv_cb.ext_sheet_buffer_current(ctx); const char *data_filename = NULL; if (buff) data_filename = zsv_cb.ext_sheet_buffer_data_filename(buff); if (!data_filename) { // TO DO: check that the underlying data is a tabular file and we know how to parse zsv_cb.ext_sheet_set_status(ctx, "Pivot table only available for tabular data buffers"); return zsvsheet_status_ok; } struct zsv_opts opts = zsv_cb.ext_sheet_buffer_get_zsv_opts(buff); zsv_cb.ext_sheet_prompt(ctx, result_buffer, sizeof(result_buffer), "Pivot table: Enter group-by SQL expr"); if (*result_buffer == '\0') return zsvsheet_status_ok; enum zsvsheet_status zst = zsvsheet_status_ok; struct zsv_sqlite3_dbopts dbopts = {0}; struct zsv_sqlite3_db *zdb = zsv_cb.ext_sqlite3_db_new(&dbopts); sqlite3_str *sql_str = NULL; struct pivot_data *pd = NULL; if (!zdb || !(sql_str = sqlite3_str_new(zdb->db))) zst = zsvsheet_status_memory; else if (zdb->rc == SQLITE_OK && zsv_cb.ext_sqlite3_add_csv(zdb, data_filename, NULL, NULL) == SQLITE_OK) { sqlite3_str_appendf(sql_str, "select %s as value, count(1) as Count from data group by %s", result_buffer, result_buffer); if (!(pd = pivot_data_new(data_filename, result_buffer))) zst = zsvsheet_status_memory; else { zst = zsv_sqlite3_to_csv(ctx, zdb, sqlite3_str_value(sql_str), pd, pivot_on_header_cell, pivot_on_data_cell); if (zst == zsvsheet_status_ok) { zsvsheet_buffer_t buff = zsv_cb.ext_sheet_buffer_current(ctx); zsv_cb.ext_sheet_buffer_set_ctx(buff, pd, pivot_data_delete); zsv_cb.ext_sheet_buffer_set_cell_attrs(buff, get_cell_attrs); zsv_cb.ext_sheet_buffer_on_newline(buff, pivot_drill_down); pd = NULL; // so that it isn't cleaned up below } } // TO DO: add param to ext_sheet_open_file to set filename vs data_filename, and set buffer type or proc owner // TO DO: add way to attach custom context, and custom context destructor, to the new buffer // TO DO: add cell highlighting // TO DO: add drill-down } out: zsv_cb.ext_sqlite3_db_delete(zdb); if (sql_str) sqlite3_free(sqlite3_str_finish(sql_str)); pivot_data_delete(pd); return zst; } /** * *Required*. Initialization is called when our extension is loaded * See my_extension.c for details */ enum zsv_ext_status zsv_ext_init(struct zsv_ext_callbacks *cb, zsv_execution_context ctx) { zsv_cb = *cb; zsv_cb.ext_set_help(ctx, "Sample zsv sheet extension"); zsv_cb.ext_set_license(ctx, "Unlicense. See https://github.com/spdx/license-list-data/blob/master/text/Unlicense.txt"); const char *third_party_licenses[] = {"If we used any third-party software, we would list each license here", NULL}; zsv_cb.ext_set_thirdparty(ctx, third_party_licenses); int proc_id = zsv_cb.ext_sheet_register_proc("my-sheet-pivot", "my sheet pivot", my_pivot_table_command_handler); if (proc_id < 0) return zsv_ext_status_error; zsv_cb.ext_sheet_register_proc_key_binding('v', proc_id); return zsv_ext_status_ok; } /** * exit: called once by zsv before the library is unloaded, if `zsv_ext_init()` was * previously called */ enum zsv_ext_status zsv_ext_exit(void) { fprintf(stderr, "Exiting mysheet extension example!\n"); return zsv_ext_status_ok; } zsv-1.3.0/app/ext_example/newline.csv000066400000000000000000000000121511312357700176040ustar00rootroot00000000000000"hi there"zsv-1.3.0/app/ext_example/test/000077500000000000000000000000001511312357700164145ustar00rootroot00000000000000zsv-1.3.0/app/ext_example/test/expected/000077500000000000000000000000001511312357700202155ustar00rootroot00000000000000zsv-1.3.0/app/ext_example/test/expected/.gitignore000066400000000000000000000000071511312357700222020ustar00rootroot00000000000000!*.out zsv-1.3.0/app/ext_example/test/expected/test-sheet-extension-1-indexed.out000066400000000000000000000005011511312357700266150ustar00rootroot00000000000000Row # Country City AccentCit Region Populatio Latitude Longitude 1 ir sarmaj-e Sarmaj-e 13 34.3578 47.5207 2 ad aixirival Aixirival 06 42.466666 1.5 3 mm mokho-atw Mokho-atw 09 18.033333 96.75 ? for help 1 zsv-1.3.0/app/ext_example/test/expected/test-sheet-extension-1.out000066400000000000000000000002331511312357700252010ustar00rootroot00000000000000Row # buffer # file name 1 2 ../test/worldcitiespop_mi ? for help 1 zsv-1.3.0/app/ext_example/test/expected/test-sheet-extension-2-indexed.out000066400000000000000000000006201511312357700266200ustar00rootroot00000000000000Row # HA1 HA2 HA3 HB1 HB2 HB3 HC1 HC2 HC3 1 A1 B1 C1 2 A2 B2 C2 3 A3 B3 C3 ? for help 1 zsv-1.3.0/app/ext_example/test/expected/test-sheet-extension-2-transformed.out000066400000000000000000000006411511312357700275270ustar00rootroot00000000000000Row # HA1 HA2 HA3 HB1 HB2 HB3 HC1 HC2 HC3 Column count 1 A1 B1 C1 6 2 A2 B2 C2 9 3 A3 B3 C3 12 ? for help 1 zsv-1.3.0/app/ext_example/test/expected/test-sheet-extension-2.out000066400000000000000000000006571511312357700252140ustar00rootroot00000000000000Row # HA1 HA2 HA3 HB1 HB2 HB3 HC1 HC2 HC3 Column count 4094 A4094 B4094 C4094 12285 4095 A4095 B4095 C4095 12288 4096 A4096 B4096 C4096 12291 ? for help 4096 zsv-1.3.0/app/ext_example/test/expected/zsvext-test-1.out000066400000000000000000000000671511312357700234270ustar00rootroot00000000000000aaa,bbb,ccc "a""aa",bbb,ccc "a aa""a a","b""b","cc""c" zsv-1.3.0/app/ext_example/test/expected/zsvext-test-2.out000066400000000000000000000000251511312357700234220ustar00rootroot00000000000000hi,there how,are,you zsv-1.3.0/app/ext_example/test/expected/zsvext-test-3.out000066400000000000000000000162311511312357700234310ustar00rootroot00000000000000Extension my registered Exiting extension example! Exiting extension example! Extension my unregistered Extension my was not already registered zsv: streaming csv processor Usage: zsv version: display version info (and if applicable, extension info) zsv (un)register [] : (un)register an extension Registration info is saved in zsv.ini located in a directory determined as: ZSV_CONFIG_DIR environment variable value, if set otherwise, /usr/local/etc zsv help [] zsv : run a command on data (see below for details) zsv - : invoke command 'cmd' of extension 'id' zsv license [] zsv thirdparty : view third-party licenses & acknowledgements Options common to all commands except `prop`, `rm` and `jq`: -L,--limit-rows : limit processing to the given number of rows (including any header row(s)) -c,--max-column-count : set the maximum number of columns parsed per row. defaults to 1024 -r,--max-row-size : set the minimum supported maximum row size. defaults to 64k -B,--buff-size : set internal buffer size. defaults to 256k -t,--tab-delim : set column delimiter to tab -O,--other-delim : set column delimiter to specified character -q,--no-quote : turn off quote handling -R,--skip-head : skip specified number of initial rows -d,--header-row-span : apply header depth (rowspan) of n -u,--malformed-utf8-replacement : replacement string (can be empty) in case of malformed UTF8 input (default for "desc" command is '?') -S,--keep-blank-headers : disable default behavior of ignoring leading blank rows -0,--header-row
: insert the provided CSV as the first row (in position 0) e.g. --header-row 'col1,col2,"my col 3"' --only-crlf : only treat CRLF as row delimiter CR or LF alone are treated as normal chars that do not require quotes -1,--apply-overwrites : automatically apply overwrites saved via `overwrite` command -v,--verbose : verbose output Commands that parse CSV or other tabular data: echo : write tabular input to stdout with optional cell overwrites check : check for anolomolies (column counts, utf8 encoding etc) count : print the number of rows select : extract rows/columns by name or position and perform other basic and 'cleanup' operations desc : describe each column sql : run ad-hoc SQL on one or more CSV files pretty : pretty print for console display serialize: convert into 3-column format (id, column name, cell value) flatten : flatten a table consisting of N groups of data, each with 1 or more rows in the table, into a table of N rows 2json : convert CSV or sqlite3 db table to json 2tsv : convert to tab-delimited text stack : stack tables vertically, aligning columns with common names paste : horizontally paste two tables together: given inputs X, Y, ... of N rows compare : compare two or more tables and output differences overwrite: save, modify or apply overwrites Other commands: 2db : convert json to sqlite3 db prop : save parsing options associated with a file that are subsequently applied by default when processing that file rm : remove a file and its related cache mv : rename (move) a file and/or its related cache jq : run a jq filter on json input (No extended commands) Extension my registered Exiting extension example! Exiting extension example! zsv: streaming csv processor Usage: zsv version: display version info (and if applicable, extension info) zsv (un)register [] : (un)register an extension Registration info is saved in zsv.ini located in a directory determined as: ZSV_CONFIG_DIR environment variable value, if set otherwise, /usr/local/etc zsv help [] zsv : run a command on data (see below for details) zsv - : invoke command 'cmd' of extension 'id' zsv license [] zsv thirdparty : view third-party licenses & acknowledgements Options common to all commands except `prop`, `rm` and `jq`: -L,--limit-rows : limit processing to the given number of rows (including any header row(s)) -c,--max-column-count : set the maximum number of columns parsed per row. defaults to 1024 -r,--max-row-size : set the minimum supported maximum row size. defaults to 64k -B,--buff-size : set internal buffer size. defaults to 256k -t,--tab-delim : set column delimiter to tab -O,--other-delim : set column delimiter to specified character -q,--no-quote : turn off quote handling -R,--skip-head : skip specified number of initial rows -d,--header-row-span : apply header depth (rowspan) of n -u,--malformed-utf8-replacement : replacement string (can be empty) in case of malformed UTF8 input (default for "desc" command is '?') -S,--keep-blank-headers : disable default behavior of ignoring leading blank rows -0,--header-row
: insert the provided CSV as the first row (in position 0) e.g. --header-row 'col1,col2,"my col 3"' --only-crlf : only treat CRLF as row delimiter CR or LF alone are treated as normal chars that do not require quotes -1,--apply-overwrites : automatically apply overwrites saved via `overwrite` command -v,--verbose : verbose output Commands that parse CSV or other tabular data: echo : write tabular input to stdout with optional cell overwrites check : check for anolomolies (column counts, utf8 encoding etc) count : print the number of rows select : extract rows/columns by name or position and perform other basic and 'cleanup' operations desc : describe each column sql : run ad-hoc SQL on one or more CSV files pretty : pretty print for console display serialize: convert into 3-column format (id, column name, cell value) flatten : flatten a table consisting of N groups of data, each with 1 or more rows in the table, into a table of N rows 2json : convert CSV or sqlite3 db table to json 2tsv : convert to tab-delimited text stack : stack tables vertically, aligning columns with common names paste : horizontally paste two tables together: given inputs X, Y, ... of N rows compare : compare two or more tables and output differences overwrite: save, modify or apply overwrites Other commands: 2db : convert json to sqlite3 db prop : save parsing options associated with a file that are subsequently applied by default when processing that file rm : remove a file and its related cache mv : rename (move) a file and/or its related cache jq : run a jq filter on json input Extended commands: Extension 'my': Sample zsv extension my-count: print the number of rows my-echo: print the input data back to stdout zsv-1.3.0/app/ext_example/test/expected/zsvext-test-3.out.win000066400000000000000000000151171511312357700242270ustar00rootroot00000000000000Extension my registered Exiting extension example! Exiting extension example! Extension my unregistered Extension my was not already registered zsv: streaming csv processor Usage: zsv version: display version info (and if applicable, extension info) zsv (un)register [] : (un)register an extension Registration info is saved in zsv.ini located in a directory determined as: ZSV_CONFIG_DIR environment variable value, if set LOCALAPPDATA environment variable value, if set otherwise, C:\temp zsv help [] zsv : run a command on data (see below for details) zsv - : invoke command 'cmd' of extension 'id' zsv license [] zsv thirdparty : view third-party licenses & acknowledgements Options common to all commands except `prop`, `rm` and `jq`: -L,--limit-rows : limit processing to the given number of rows (including any header row(s)) -c,--max-column-count : set the maximum number of columns parsed per row. defaults to 1024 -r,--max-row-size : set the minimum supported maximum row size. defaults to 64k -B,--buff-size : set internal buffer size. defaults to 256k -t,--tab-delim : set column delimiter to tab -O,--other-delim : set column delimiter to specified character -q,--no-quote : turn off quote handling -R,--skip-head : skip specified number of initial rows -d,--header-row-span : apply header depth (rowspan) of n -u,--malformed-utf8-replacement : replacement string (can be empty) in case of malformed UTF8 input (default for "desc" command is '?') -S,--keep-blank-headers : disable default behavior of ignoring leading blank rows -0,--header-row
: insert the provided CSV as the first row (in position 0) e.g. --header-row 'col1,col2,"my col 3"' -1,--apply-overwrites : automatically apply overwrites saved via `overwrite` command -v,--verbose : verbose output Commands that parse CSV or other tabular data: select : extract rows/columns by name or position and perform other basic and 'cleanup' operations echo : write tabular input to stdout with optional cell overwrites overwrite: save, modify or apply overwrites sql : run ad-hoc SQL count : print the number of rows desc : describe each column pretty : pretty print for console display flatten : flatten a table consisting of N groups of data, each with 1 or more rows in the table, into a table of N rows 2json : convert CSV or sqlite3 db table to json 2tsv : convert to tab-delimited text serialize: convert into 3-column format (id, column name, cell value) stack : stack tables vertically, aligning columns with common names compare : compare two or more tables and output differences Other commands: 2db : convert json to sqlite3 db prop : save parsing options associated with a file that are subsequently applied by default when processing that file rm : remove a file and its related cache mv : rename (move) a file and/or its related cache jq : run a jq filter on json input (No extended commands) Extension my registered Exiting extension example! zsv: streaming csv processor Usage: zsv version: display version info (and if applicable, extension info) zsv (un)register [] : (un)register an extension Registration info is saved in zsv.ini located in a directory determined as: ZSV_CONFIG_DIR environment variable value, if set LOCALAPPDATA environment variable value, if set otherwise, C:\temp zsv help [] zsv : run a command on data (see below for details) zsv - : invoke command 'cmd' of extension 'id' zsv license [] zsv thirdparty : view third-party licenses & acknowledgements Options common to all commands except `prop`, `rm` and `jq`: -L,--limit-rows : limit processing to the given number of rows (including any header row(s)) -c,--max-column-count : set the maximum number of columns parsed per row. defaults to 1024 -r,--max-row-size : set the minimum supported maximum row size. defaults to 64k -B,--buff-size : set internal buffer size. defaults to 256k -t,--tab-delim : set column delimiter to tab -O,--other-delim : set column delimiter to specified character -q,--no-quote : turn off quote handling -R,--skip-head : skip specified number of initial rows -d,--header-row-span : apply header depth (rowspan) of n -u,--malformed-utf8-replacement : replacement string (can be empty) in case of malformed UTF8 input (default for "desc" command is '?') -S,--keep-blank-headers : disable default behavior of ignoring leading blank rows -0,--header-row
: insert the provided CSV as the first row (in position 0) e.g. --header-row 'col1,col2,"my col 3"' -1,--apply-overwrites : automatically apply overwrites saved via `overwrite` command -v,--verbose : verbose output Commands that parse CSV or other tabular data: select : extract rows/columns by name or position and perform other basic and 'cleanup' operations echo : write tabular input to stdout with optional cell overwrites overwrite: save, modify or apply overwrites sql : run ad-hoc SQL count : print the number of rows desc : describe each column pretty : pretty print for console display flatten : flatten a table consisting of N groups of data, each with 1 or more rows in the table, into a table of N rows 2json : convert CSV or sqlite3 db table to json 2tsv : convert to tab-delimited text serialize: convert into 3-column format (id, column name, cell value) stack : stack tables vertically, aligning columns with common names compare : compare two or more tables and output differences Other commands: 2db : convert json to sqlite3 db prop : save parsing options associated with a file that are subsequently applied by default when processing that file rm : remove a file and its related cache mv : rename (move) a file and/or its related cache jq : run a jq filter on json input Extended commands: Extension 'my': Sample zsv extension my-count: print the number of rows my-echo: print the input data back to stdout Exiting extension example! zsv-1.3.0/app/ext_example/test/expected/zsvext-test-4.err000066400000000000000000000001431511312357700234060ustar00rootroot00000000000000Note: for third-party licenses & acknowledgements, run `zsv thirdparty` Exiting extension example! zsv-1.3.0/app/ext_example/test/expected/zsvext-test-4.out000066400000000000000000000047241511312357700234360ustar00rootroot00000000000000 ==================================================== ZSV/lib license ==================================================== Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================== ZSV/lib license ==================================================== Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================== License for extension 'my' ==================================================== Unlicense. See https://github.com/spdx/license-list-data/blob/master/text/Unlicense.txt zsv-1.3.0/app/ext_example/test/expected/zsvext-test-5.out000066400000000000000000000000201511312357700234200ustar00rootroot00000000000000Rows: 0 Rows: 1 zsv-1.3.0/app/ext_example/test/expected/zsvext-test-thirdparty.out000066400000000000000000000010221511312357700254510ustar00rootroot00000000000000Third-party licenses and acknowledgements ========================== ZSV/lib third-party dependencies ========================== See https://github.com/liquidaty/zsv/blob/main/misc/THIRDPARTY.md Third-party licenses and acknowledgements ========================== ZSV/lib third-party dependencies ========================== See https://github.com/liquidaty/zsv/blob/main/misc/THIRDPARTY.md ========================== Extension: my ========================== If we used any third-party software, we would list each license here zsv-1.3.0/app/ext_template/000077500000000000000000000000001511312357700156155ustar00rootroot00000000000000zsv-1.3.0/app/ext_template/Makefile000066400000000000000000000034441511312357700172620ustar00rootroot00000000000000# Copyright (C) zsv contributors. All rights reserved. # # Makefile for use with GNU make THIS_MAKEFILE_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) CONFIGFILE ?= ../../config.mk $(info Using config file ${CONFIGFILE}) include ${CONFIGFILE} CC ?= cc WIN= ifeq ($(WIN),) WIN=0 ifneq ($(findstring w64,$(CC)),) # e.g. mingw64 WIN=1 endif endif ifeq ($(DEBUG),1) DBG_SUBDIR+=dbg else DBG_SUBDIR+=rel endif ifeq ($(WIN),0) BUILD_SUBDIR=$(shell uname)/${DBG_SUBDIR} SO=so ifeq ($(BUILD_SUBDIR),Linux) CFLAGS+= -ldl -lpthread endif CFLAGS+= -fPIC else BUILD_SUBDIR=win/${DBG_SUBDIR} CFLAGS+= -D__USE_MINGW_ANSI_STDIO -D_ISOC99_SOURCE CFLAGS+= -Wl,--strip-all CFLAGS+= -fpie SO=dll endif DEBUG=0 ifeq ($(DEBUG),0) CFLAGS+= -O3 -DNDEBUG -Wshadow -Wall -Wextra -pedantic -DSTDC_HEADERS -flto else CFLAGS += -g endif THIS_LIB_BASE=$(shell cd ../.. && pwd) CCBN=$(shell basename ${CC}) EXTENSION_ID=xx BUILD_DIR=${THIS_MAKEFILE_DIR}/build/${BUILD_SUBDIR}/${CCBN} TARGET=${BUILD_DIR}/bin/zsvext${EXTENSION_ID}.${SO} UTILS1= CFLAGS_SHARED=-shared ifneq ($(findstring emcc,$(CC)),) # emcc CFLAGS_SHARED=-s SIDE_MODULE=1 # add some additional file system support glue UTILS1+= emcc/fs_api endif UTILS1+= # put any zsv utils here UTILS=$(addprefix ${BUILD_DIR}/objs/utils/,$(addsuffix .o,${UTILS1})) CFLAGS+= -I${THIS_LIB_BASE}/include all: ${TARGET} # zsv utils ${BUILD_DIR}/objs/utils/%.o: (cd .. && ${MAKE} CONFIGFILE=${CONFIGFILEPATH} CC=${CC} DEBUG=${DEBUG} $@ ) install: ${TARGET} @echo "To install, copy ${TARGET} to a system path or the same dir" @echo "as the zsv binary" clean: @rm -f ${TARGET} ${TARGET}: YOUR_EXTENSION_zsvext.c ${UTILS} @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} ${CFLAGS_SHARED} $< ${UTILS} -o $@ .PHONY: all test clean test-% zsv-1.3.0/app/ext_template/README.md000066400000000000000000000020261511312357700170740ustar00rootroot00000000000000# Extension template `zsv` can easily be extended by simply creating a shared library that implements the interface specified in `zsv/ext/implementation.h`. This C file is a template you can use to implement your own extension. ## Using the template To use the template: 1. Copy the files in this directory (Makefile, configure, and `YOUR_EXTENSION_zsvext.c`) to the location where your extension source will reside 2. Customize `YOUR_EXTENSION_zsvext.c` as appropriate (see comments in the C code for further details) 3. Optionally, rename `YOUR_EXTENSION_zsvext.c` and update the Makefile accordingly ## Dependencies To build the extension, `zsvlib` and related include files must be installed (Obviously, since this is a zsv extension, you need `zsv` to run it). ## Building To build the shared library file, run: ```shell ./configure && make ``` To install, place the shared library file in any system path, or in the same folder as `zsv`, then run: ```shell zsv register XX ``` where XX is the ID of your extension. zsv-1.3.0/app/ext_template/YOUR_EXTENSION_zsvext.c000066400000000000000000000221171511312357700216410ustar00rootroot00000000000000/* * Copyright (C) 2021 Liquidaty and the zsv/lib contributors * All rights reserved * * This file is part of zsv/lib, distributed under the license defined at * https://opensource.org/licenses/MIT */ #include #include #include #include /** * `zsv` can easily be extended by simply creating a shared library that * implements the interface specified in zsv/ext/implementation.h * * This file is a template you can use to implement your own extension. All you * need to do is customize the sections marked with the word `YOUR` * * e.g. `YOUR_COMMAND` or `... YOUR CODE GOES HERE ...` * * replace any occurrences of "YOUR_COMMAND" with your (first) command, and dupe * any occurrences of "YOUR_COMMAND" for any additional commands */ /** * Define our extension ID. You can make this anything you want, so long as it * is comprised of two ascii characters. In the rest of this file commentary, XX * refers to this extension ID */ #define ZSV_THIS_EXT_ID "xx" /* YOUR EXTENSION ID GOES HERE */ /** * Once the library file is created, you can run any commands it implements * by naming the library file zsvext, placing it in any folder that is * in the system lib search path, or in the same folder as zsv, and running: * `zsv XX-command` * * It's as simple as that! */ /** * Below implements the following command(s): * * `YOUR_COMMAND`: your first command description * * [ ... `zsv XX-YOUR_COMMAND2` ] * * [ ... ] * * * in addition, users will see a brief description of our module if they execute: * `zsv help` or `zsv help XX-` */ /** * *Required*: define our extension id, which must be two characters in length */ const char *zsv_ext_id(void) { return ZSV_THIS_EXT_ID; } /** * When our library is initialized, zsv will pass it the address of the zsvlib * functions we will be using. We can keep track of this any way we want; * in this example, we use a global variable to store the function pointers */ static struct zsv_ext_callbacks zsv_cb; /** * Each command must be implemented as a function with a signature * as defined by `zsv_ext_main`. This is basically the same as a main() function, * but with an additional preceding zsv_execution_context parameter. * Here, we just declare the functions; we fully define them further below */ static enum zsv_ext_status YOUR_COMMAND_main(zsv_execution_context ctx, int argc, const char *argv[]); /* static enum zsv_ext_status YOUR_COMMAND2_main(...); static enum zsv_ext_status YOUR_COMMAND3_main(...); ... */ /** * *Required*. Initialization is called when our extension is loaded. Our * initialization routine uses `ext_add_command` to register our commands and * `ext_set_help` to set the help text. For each registered command, we provide a * `*_main()` callback for zsv to invoke when a user runs our command * * @param callbacks pointers to zsvlib functions that we must save for later use * @param ctx context to be passed whenever we execute a zsvlib function from our init * @return status code e.g. zsv_ext_status_ok */ enum zsv_ext_status zsv_ext_init(struct zsv_ext_callbacks *cb, zsv_execution_context ctx) { zsv_cb = *cb; zsv_cb.ext_set_help(ctx, "YOUR brief help message goes here"); zsv_cb.ext_set_license(ctx, "YOUR license text goes here"); /** * In the common case where your extension uses third-party software, you can add * the related licenses and acknowledgements here, which `zsv` will display whenever * `zsv thirdparty` is invoked */ static const char *third_party_licenses[] = {"YOUR third-party licenses & acknowledgements go here", NULL}; zsv_cb.ext_set_thirdparty(ctx, third_party_licenses); zsv_cb.ext_add_command(ctx, "YOUR_COMMAND", "YOUR command description", YOUR_COMMAND_main); /* YOUR CODE GOES HERE if you will perform any one-time initialization / allocation */ return zsv_ext_status_ok; } /** * If you allocated resources in `zsv_ext_init()` * then you can de-allocate them in `zsv_ext_exit()` */ enum zsv_ext_status zsv_ext_exit(void) { /* YOUR CODE GOES HERE */ return zsv_ext_status_ok; } /** * Now we are getting to the "meat" of our program. Each command will be defined by two * functions: * - a main routine, which initializes private data, calls the parser, then performs any final * steps and/or cleanup * - a row handler, which is called by the parser for each parsed row */ /** * Define a structure for our functions to store private state data * which our functions can retrieve using the zsvlib callback `ext_get_context()` */ struct xx_data { size_t rows; /* Replace this line with YOUR data fields */ }; /** * Callback to initialize our private data */ static void xx_data_init(struct xx_data *data) { /* YOUR CODE GOES HERE */ memset(data, 0, sizeof(*data)); } /** * Callback to clean up our private data */ static void xx_data_free(struct xx_data *data) { /* YOUR CODE GOES HERE */ (void)(data); } /** * Our row handlers retrieve our state data and update and/or operate on it * We can choose, in our main routine, for the ctx pointer it receives to be * anything we want, but in most cases there is no reason to set it to anything * other than the zsv_execution_context passed to main * * @param ctx a context pointer of our choice, typically set in the main() function */ static void YOUR_COMMAND_rowhandler(void *ctx) { /* get our private data */ struct xx_data *data = zsv_cb.ext_get_context(ctx); data->rows++; /* replace this line with YOUR CODE */ /** * In most cases, we will want to do something with the row that was just parsed, * in which case we can use ext_get_parser(), column_count() and get_cell() * to get a parser handle, the number of cells in our current row, and each * cell's length and string (and other info) */ zsv_parser parser = zsv_cb.ext_get_parser(ctx); unsigned cell_count = zsv_cb.column_count(parser); for (unsigned i = 0; i < cell_count; i++) { /** * get_cell() returns a zsv_cell structure that holds a pointer to the text, * the length (in bytes) of the data, * and other parser-generated info (e.g. QUOTED flags) */ struct zsv_cell c = zsv_cb.get_cell(parser, i); /* YOUR CODE HERE to process each cell e.g. `fwrite(c.str, 1, c.len, stdout)` */ } } /** * Our main routines are similar to normal main() functions, except that the first * param is a zsvlib-generated zsv_execution_context pointer for use with other * `ext_xxx` functions. All we do here is initialize our data, call the parser, and * perform any final steps after all data has been processed */ static enum zsv_ext_status YOUR_COMMAND_main(zsv_execution_context ctx, int argc, const char *argv[]) { /* initialize private data */ struct xx_data data; xx_data_init(&data); /** * The following common parser options that are already handled by zsv (so long as we use * either of the provided callbacks `ext_parse_all()` or `new_with_context()`), including: * ``` * -B,--buff-size * -c,--max-column-count * -r,--max-row-size * -t,--tab-delim * -O,--other-delim * -q,--no-quote * -v,--verbose * ``` * * If we wanted our command to support parameters for modifying other * `zsv_opts`, we could do so here by processing argc and argv[] and taking * the appropriate actions to change our private data and/or modify our opts * structure */ /** * If your process needs only to read a single input table sequentially from * a FILE pointer, you can simplify your code by using `ext_parse_all()`, * a convenience function that: * 1. binds our custom context (in this case, a pointer to our `xx_data` * structure) to the execution context, so that our row handler can * retrieve it using `ext_get_context()` * 2. parses the specified input (in our case, the default which is stdin) and * binds the parser to the execution context, so that our row handler can * retrieve it (and the current row's data) using `ext_get_parser()` * 3. cleans up / deallocates the parser and related resources */ enum zsv_ext_status stat = zsv_cb.ext_parse_all(ctx, &data, YOUR_COMMAND_rowhandler, NULL); /** * Alternatively, for more granular control we could use the following: * ``` * struct zsv_opts opts = zsv_cb.ext_parser_opts(ctx); * zsv_parser parser = new_with_context(ctx, &opts); * if(!parser) * stat = zsv_ext_status_memory; * else { * opts.row = YOUR_COMMAND_rowhandler; * // ... set other options here ... * zsv_parser p = new_with_context(ctx, &opts); * while((stat = zsv_parse_more(parser)) == zsv_status_ok) ; * if(stat == zsv_status_ok) * stat = zsv_finish(p); * zsv_delete(p); * } * ``` */ /* done parsing */ if (stat == zsv_ext_status_ok) { /* Successful run. Replace the below line with YOUR CODE */ printf("Rows: %zu\n", data.rows > 0 ? data.rows - 1 : 0); } /* clean up */ xx_data_free(&data); /** * the return value of the main function will be passed on as the return value * of this process invocation */ return stat; } #undef ZSV_THIS_EXT_ID zsv-1.3.0/app/ext_template/configure000077500000000000000000000305041511312357700175260ustar00rootroot00000000000000#!/bin/sh # Based on the configure script from musl libc, MIT licensed; vis, ISC licensed usage () { cat </dev/null 2>&1 && { echo "$1" ; return 0 ; } $1 EOF printf %s\\n "$1" | sed -e "s/'/'\\\\''/g" -e "1s/^/'/" -e "\$s/\$/'/" -e "s#^'\([-[:alnum:]_,./:]*\)=\(.*\)\$#\1='\2#" } echo () { printf "%s\n" "$*" ; } fail () { echo "$*" ; exit 1 ; } fnmatch () { eval "case \"\$2\" in $1) return 0 ;; *) return 1 ;; esac" ; } cmdexists () { type "$1" >/dev/null 2>&1 ; } trycc () { test -z "$CC" && cmdexists "$1" && CC=$1 ; } tryar () { test -z "$AR" && cmdexists "$1" && AR=$1 ; } tryranlib () { test -z "$RANLIB" && cmdexists "$1" && RANLIB=$1 ; } tryawk () { test -z "$AWK" && "$1" 'function works () {return 0} BEGIN{exit works()}' && AWK=$1 ; } tryllvmprofdata () { test -z "$LLVM_PROFDATA" && cmdexists "$1" && LLVM_PROFDATA=$1 ; } stripdir () { while eval "fnmatch '*/' \"\${$1}\"" ; do eval "$1=\${$1%/}" ; done } trycchdr () { printf "checking whether there is a header called %s... " "$2" if find $CCSEARCHPATH -name "$2" | grep "/$2$" >/dev/null 2>&1 ; then upper2=$(echo "$2" | tr a-z A-Z | tr . _) eval "$1=\"\${$1} -DHAVE_\${upper2}\"" eval "$1=\${$1# }" printf "yes\n" return 0 else printf "no\n" return 1 fi } tryccfn () { printf "checking whether compiler accepts %s from %s... " "$2" "$3" printf "%s\n" $3 | sed 's/\(.*\)/#include <\1>/' > "$tmpc" cat >> "$tmpc" </dev/null 2>&1 ; then flag=$(echo "$2" | cut -d'(' -f1 | tr a-z A-Z) eval "vars=\$$1" if ! printf "%s\n" ${vars} | grep "\-DHAVE_${flag}\$" >/dev/null 2>&1; then flag="-DHAVE_${flag}" eval "$1=\"\${vars} \${flag}\"" eval "$1=\${$1# }" fi printf "yes\n" return 0 else printf "no\n" return 1 fi } tryflag () { printf "checking whether compiler accepts %s... " "$2" echo "int main() {return 0;}" > "$tmpc" if $CC $CFLAGS_TRY $2 -c -o "$tmpo" "$tmpc" >/dev/null 2>&1 ; then printf "yes\n" eval "$1=\"\${$1} \$2\"" eval "$1=\${$1# }" return 0 else printf "no\n" return 1 fi } tryldflag () { printf "checking whether linker accepts %s... " "$2" echo "int main(){return 0;}" > "$tmpc" if $CC $LDFLAGS_TRY "$2" -o "$tmpo" "$tmpc" >/dev/null 2>&1 ; then printf "yes\n" eval "$1=\"\${$1} \$2\"" eval "$1=\${$1# }" return 0 else printf "no\n" return 1 fi } trysharedldflag () { printf "checking whether linker accepts %s... " "$2" echo "typedef int x;" > "$tmpc" if $CC $LDFLAGS_TRY -shared "$2" -o "$tmpo" "$tmpc" >/dev/null 2>&1 ; then printf "yes\n" eval "$1=\"\${$1} \$2\"" eval "$1=\${$1# }" return 0 else printf "no\n" return 1 fi } # Beginning of actual script CFLAGS_AUTO= CFLAGS_TRY= LDFLAGS_AUTO= LDFLAGS_TRY= CONFIGFILE=config.mk PREFIX=$PREFIX if [ "$PREFIX" == "" ]; then PREFIX=/usr/local fi EXEC_PREFIX='$(PREFIX)' BINDIR='$(EXEC_PREFIX)/bin' SHAREDIR='$(PREFIX)/share' DOCDIR='$(PREFIX)/share/doc' MANDIR='$(PREFIX)/share/man' help=yes usesmalllut=no usedebugstderr=no useclock=no usepie=auto usepic=auto for arg ; do case "$arg" in --help|-h) usage ;; --host=*) host=${arg#*=} ;; --config-file=*) CONFIGFILE=${arg#*=} ;; --prefix=*) PREFIX=${arg#*=} ;; --exec-prefix=*) EXEC_PREFIX=${arg#*=} ;; --bindir=*) BINDIR=${arg#*=} ;; --sharedir=*) SHAREDIR=${arg#*=} ;; --docdir=*) DOCDIR=${arg#*=} ;; --mandir=*) MANDIR=${arg#*=} ;; --enable-small-lut|--enable-small-lut=yes) usesmalllut=yes ;; --disable-small-lut|--enable-small-lut=no) usesmalllut=no ;; --enable-debug-stderr|--enable-debug-stderr=yes) usedebugstderr=yes ;; --disable-debug-stderr|--enable-debug-stderr=no) usedebugstderr=no ;; --enable-clock|--enable-clock=yes) useclock=yes ;; --disable-clock|--enable-clock=no) useclock=no ;; --enable-pie|--enable-pie=yes) usepie=yes ;; --enable-pie=auto) usepie=auto ;; --disable-pie|--enable-pie=no) usepie=no ;; --enable-pic|enable-pic=yes) usepic=yes ;; --enable-pic=auto) usepic=auto ;; --disable-pic|--enable-pic=no) usepic=no ;; --enable-*|--disable-*|--with-*|--without-*|--*dir=*|--build=*) ;; -* ) echo "$0: unknown option $arg" ;; CC=*) CC=${arg#*=} ;; CFLAGS=*) CFLAGS=${arg#*=} ;; CPPFLAGS=*) CPPFLAGS=${arg#*=} ;; LDFLAGS=*) LDFLAGS=${arg#*=} ;; *=*) ;; *) ;; esac done for i in PREFIX EXEC_PREFIX BINDIR SHAREDIR DOCDIR MANDIR ; do stripdir $i done # # Get a temp filename we can use # i=0 set -C while : ; do i=$(($i+1)) tmpc="./conf$$-$PPID-$i.c" tmpo="./conf$$-$PPID-$i.o" 2>|/dev/null > "$tmpc" && break test "$i" -gt 50 && fail "$0: cannot create temporary file $tmpc" done set +C trap 'rm -f "$tmpc" "$tmpo"' EXIT QUIT TERM HUP trap 'rm -f "$tmpc" "$tmpo" && echo && fail "$0: interrupted"' INT # # Find an AWK tool to use # printf "checking for AWK tool... " for a in awk gawk mawk nawk; do tryawk "$a"; done printf "%s\n" "$AWK" test -n "$AWK" || fail "$0: cannot find an AWK tool" # # Find a C compiler to use # printf "checking for C compiler... " for c in cc gcc clang; do trycc "$c"; done printf "%s\n" "$CC" test -n "$CC" || fail "$0: cannot find a C compiler" printf "checking whether C compiler works... " echo "typedef int x;" > "$tmpc" if output=$($CC $CPPFLAGS $CFLAGS -c -o "$tmpo" "$tmpc" 2>&1) ; then printf "yes\n" else fail "no; compiler output follows:\n%s\n" "$output" fi # # Get compiler search paths # CCSEARCHPATH=$(echo | ${CC} -E -Wp,-v - 2>&1 | ${AWK} '/ \//{print substr($0,2);}') # # Check if it is clang, and the llvm tools instead # TODO: PROFDATA triggers specific pgo behaviour # in the Makefile for clang or gcc... # This isn't the most elegant solution right # now... # compiler=$(${CC} -v 2>&1 | ${AWK} '/ +version +/{for(i=1;i<=NF;i++){if($i=="version"){printf("%s\n",(last=="LLVM")?"clang":last);exit 0;}last=$i;}}') if test "$compiler" = "clang"; then arlist="$CC-llvm-ar $host-llvm-ar $CC-ar $host-ar llvm-ar ar" ranliblist="$CC-llvm-ranlib $host-llvm-ranlib $CC-ranlib $host-ranlib llvm-ranlib ranlib" PROFDATA=zsv.profdata #printf "checking for llvm-profdata... " #tryllvmprofdata llvm-profdata #printf "%s\n" "$LLVM_PROFDATA" #test -n "$LLVM_PROFDATA" || fail "$0: cannot find llvm-profdata" else arlist="$CC-ar $host-$compiler-ar $host-ar $compiler-ar ar" ranliblist="$CC-ranlib $host-$compiler-ranlib $host-ranlib $compiler-ranlib $compiler-ranlib ranlib" PROFDATA=zsv.profile fi # # Find ar and ranlib to use # printf "checking for ar... " for a in $arlist; do tryar "$a"; done printf "%s\n" "$AR" test -n "$AR" || fail "$0: cannot find ar" printf "checking for ranlib... " for r in $ranliblist ; do tryranlib "$r"; done printf "%s\n" "$RANLIB" test -n "$RANLIB" || fail "$0: cannot find ranlib" # # Detect the host system # printf 'checking host system type... ' test -n "$host" || host=$($CC -dumpmachine 2>/dev/null) || fail "could not determine host" printf '%s\n' "$host" # # Figure out options to force errors on unknown flags. # tryflag CFLAGS_TRY -Werror=unknown-warning-option tryflag CFLAGS_TRY -Werror=unused-command-line-argument tryflag CFLAGS_TRY -Werror=ignored-optimization-argument tryldflag LDFLAGS_TRY -Werror=unknown-warning-option tryldflag LDFLAGS_TRY -Werror=unused-command-line-argument tryldflag LDFLAGS_TRY -Werror=ignored-optimization-argument CFLAGS_STD="-std=gnu11 -D_POSIX_C_SOURCE=200809L -U_XOPEN_SOURCE -D_XOPEN_SOURCE=700" CFLAGS_OPT="-DNDEBUG" MINGW=0 case "$host" in *-*freebsd*) CFLAGS_STD="$CFLAGS_STD -D_BSD_SOURCE -D__BSD_VISIBLE=1" ;; *-*netbsd*) CFLAGS_STD="$CFLAGS_STD -D_NETBSD_SOURCE" ;; *-*bsd*) CFLAGS_STD="$CFLAGS_STD -D_BSD_SOURCE" ;; *-*darwin*) CFLAGS_STD="$CFLAGS_STD -D_DARWIN_C_SOURCE" ;; *-*mingw32|*-*msys*|*-windows-gnu) CFLAGS_STD="$CFLAGS_STD -D__USE_MINGW_ANSI_STDIO" #LDFLAGS_AUTO="-Wl,--export-all-symbols" MINGW=1 usepie=no usepic=no ;; esac if test "$usepie" = "auto" ; then usepie=yes fi if test "$usepic" = "auto" ; then usepic=yes fi if test "$usepie" = "yes" ; then tryflag CFLAGS_PIE -fpie || tryflag CFLAGS_PIE -fPIE fi if test "$usepic" = "yes" ; then tryflag CFLAGS_PIC -fpic || tryflag CFLAGS_PIC -fPIC fi test "$usepie" = "yes" && tryldflag LDFLAGS_PIE -pie if test "$usepic" = "yes" ; then trysharedldflag LDFLAGS_PIC -fpic || trysharedldflag LDFLAGS_PIC -fPIC fi test "$usepie" = "no" && tryflag CFLAGS_PIE -fno-pie test "$usepic" = "no" && tryflag CFLAGS_PIC -fno-pic test "$usepie" = "no" && tryldflag LDFLAGS_PIE -no-pie test "$usepic" = "no" && trysharedldflag LDFLAGS_PIC -fno-pic if test $MINGW -eq 0 ; then LDFLAGS_STD="-lc" tryflag CFLAGS_AUTO -fstack-protector-all case "$CFLAGS_AUTO" in *-fstack-protector*) CFLAGS_AUTO="-D_FORTIFY_SOURCE=2"; ;; esac fi tryflag CFLAGS -pipe # Try flags to optimize speed tryflag CFLAGS -ffunction-sections tryflag CFLAGS -fdata-sections tryflag CFLAGS_OPT -O3 tryflag CFLAGS_OPT -march=native tryflag CFLAGS_AVX2 -mavx2 tryflag CFLAGS_CLMUL -mvpclmulqdq tryflag CFLAGS_OPT -flto tryflag CFLAGS_OPT -fwhole-program tryflag CFLAGS_OPT -fvisibility=hidden tryldflag LDFLAGS_AUTO -Wl,--gc-sections tryldflag LDFLAGS_OPT -flto tryldflag LDFLAGS_OPT -fwhole-program tryldflag LDFLAGS_OPT -O3 tryldflag LDFLAGS_OPT -march=native # Try hardening flags if test "$usepie" = "yes" ; then case "$LDFLAGS_PIE" in *pie*) tryldflag LDFLAGS_PIE -Wl,-z,now tryldflag LDFLAGS_PIE -Wl,-z,relro ;; esac fi if test "$usepic" = "yes" ; then case "$LDFLAGS_PIC" in *pic*) tryldflag LDFLAGS_PIC -Wl,-z,now tryldflag LDFLAGS_PIC -Wl,-z,relro ;; esac fi # Check function availability tryccfn CFLAGS_AUTO "_alloca(4)" "malloc.h" trycchdr CFLAGS_AUTO "alloca.h" tryccfn CFLAGS_AUTO "alloca(4)" "stdlib.h" tryccfn CFLAGS_AUTO "alloca(4)" "alloca.h" # Optional features if test "$usesmalllut" = "yes" ; then USE_SMALL_LUT=1 else USE_SMALL_LUT=0 fi if test "$usedebugstderr" = "yes" ; then USE_DEBUG_STDERR=1 else USE_DEBUG_STDERR=0 fi if test "$useclock" = "yes" ; then USE_CLOCK=1 else USE_CLOCK=0 fi printf "creating $CONFIGFILE... " cmdline=$(quote "$0") for i ; do cmdline="$cmdline $(quote "$i")" ; done exec 3>&1 1> $CONFIGFILE cat << EOF # This version of $CONFIGFILE was generated by: # $cmdline # Any changes made here will be lost if configure is re-run PREFIX = $PREFIX EXEC_PREFIX = $EXEC_PREFIX BINDIR = $BINDIR DOCPREFIX = $DOCDIR MANPREFIX = $MANDIR SHAREPREFIX = $SHAREDIR CC = $CC AWK = $AWK AR = $AR RANLIB = $RANLIB LLVM_PROFDATA = $LLVM_PROFDATA PROFDATA = $PROFDATA CFLAGS = $CFLAGS LDFLAGS = $LDFLAGS CFLAGS_STD = $CFLAGS_STD LDFLAGS_STD = $LDFLAGS_STD CFLAGS_OPT = $CFLAGS_OPT LDFLAGS_OPT = $LDFLAGS_OPT CFLAGS_AUTO = $CFLAGS_AUTO LDFLAGS_AUTO = $LDFLAGS_AUTO CFLAGS_AVX2 = $CFLAGS_AVX2 CFLAGS_CLMUL = $CFLAGS_CLMUL CFLAGS_DEBUG = -U_FORTIFY_SOURCE -UNDEBUG -O0 -g3 -ggdb -Wall -Wextra -Wno-missing-field-initializers -Wno-unused-parameter LDFLAGS_DEBUG = -U_FORTIFY_SOURCE -UNDEBUG -O0 -g3 -ggdb CFLAGS_PIC = $CFLAGS_PIC LDFLAGS_PIC = $LDFLAGS_PIC CFLAGS_PIE = $CFLAGS_PIE LDFLAGS_PIE = $LDFLAGS_PIE USE_SMALL_LUT = $USE_SMALL_LUT USE_DEBUG_STDERR = $USE_DEBUG_STDERR USE_CLOCK = $USE_CLOCK EOF exec 1>&3 3>&- printf "done\n" exit 0 zsv-1.3.0/app/external/000077500000000000000000000000001511312357700147445ustar00rootroot00000000000000zsv-1.3.0/app/external/build.mk000066400000000000000000000014721511312357700164000ustar00rootroot00000000000000# Makefile snippet to be included into standlone Makefile with BUILD_DIR already defined THIS_MAKEFILE_DIR_TMP:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) ifeq ($(DEBUG),1) PCRE2_CFLAGS=-g else PCRE2_CFLAGS=-O3 endif PCRE2_CFLAGS+=-fPIC help: @echo 'make targets:' @echo ' ${BUILD_DIR}-external/pcre2/lib/libpcre2-8.a' PCRE2_CONFIG_OPTIIONS= ifneq ($(CONFIGURE_HOST),) PCRE2_CONFIG_OPTIIONS+=--host=${CONFIGURE_HOST} endif ${BUILD_DIR}-external/pcre2/lib/libpcre2-8.a: @mkdir -p ${BUILD_DIR}-external/pcre2 @cd ${BUILD_DIR}-external/pcre2 && \ tar xf ${THIS_MAKEFILE_DIR_TMP}/pcre2-pcre2-10.47.tar.gz && \ cd pcre2-pcre2-10.47 && \ CFLAGS="${PCRE2_CFLAGS}" ./configure ${PCRE2_CONFIG_OPTIIONS} --prefix=${BUILD_DIR}-external/pcre2 --enable-static=yes --enable-shared=no && \ ${MAKE} install zsv-1.3.0/app/external/inih/000077500000000000000000000000001511312357700156735ustar00rootroot00000000000000zsv-1.3.0/app/external/inih/LICENSE.txt000066400000000000000000000027461511312357700175270ustar00rootroot00000000000000 The "inih" library is distributed under the New BSD license: Copyright (c) 2009, Ben Hoyt All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Ben Hoyt nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. zsv-1.3.0/app/external/inih/ini.c000066400000000000000000000177021511312357700166250ustar00rootroot00000000000000/* inih -- simple .INI file parser SPDX-License-Identifier: BSD-3-Clause Copyright (C) 2009-2020, Ben Hoyt inih is released under the New BSD license (see LICENSE.txt). Go to the project home page for more info: https://github.com/benhoyt/inih */ #if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) #define _CRT_SECURE_NO_WARNINGS #endif #include #include #include #include "ini.h" #if !INI_USE_STACK #if INI_CUSTOM_ALLOCATOR #include void* ini_malloc(size_t size); void ini_free(void* ptr); void* ini_realloc(void* ptr, size_t size); #else #include #define ini_malloc malloc #define ini_free free #define ini_realloc realloc #endif #endif #define MAX_SECTION 50 #define MAX_NAME 50 /* Used by ini_parse_string() to keep track of string parsing state. */ typedef struct { const char* ptr; size_t num_left; } ini_parse_string_ctx; /* Strip whitespace chars off end of given string, in place. Return s. */ static char* rstrip(char* s) { char* p = s + strlen(s); while (p > s && isspace((unsigned char)(*--p))) *p = '\0'; return s; } /* Return pointer to first non-whitespace char in given string. */ static char* lskip(const char* s) { while (*s && isspace((unsigned char)(*s))) s++; return (char*)s; } /* Return pointer to first char (of chars) or inline comment in given string, or pointer to NUL at end of string if neither found. Inline comment must be prefixed by a whitespace character to register as a comment. */ static char* find_chars_or_comment(const char* s, const char* chars) { #if INI_ALLOW_INLINE_COMMENTS int was_space = 0; while (*s && (!chars || !strchr(chars, *s)) && !(was_space && strchr(INI_INLINE_COMMENT_PREFIXES, *s))) { was_space = isspace((unsigned char)(*s)); s++; } #else while (*s && (!chars || !strchr(chars, *s))) { s++; } #endif return (char*)s; } /* Similar to strncpy, but ensures dest (size bytes) is NUL-terminated, and doesn't pad with NULs. */ static char* strncpy0(char* dest, const char* src, size_t size) { /* Could use strncpy internally, but it causes gcc warnings (see issue #91) */ size_t i; for (i = 0; i < size - 1 && src[i]; i++) dest[i] = src[i]; dest[i] = '\0'; return dest; } /* See documentation in header file. */ int ini_parse_stream(ini_reader reader, void* stream, ini_handler handler, void* user) { /* Uses a fair bit of stack (use heap instead if you need to) */ #if INI_USE_STACK char line[INI_MAX_LINE]; int max_line = INI_MAX_LINE; #else char* line; size_t max_line = INI_INITIAL_ALLOC; #endif #if INI_ALLOW_REALLOC && !INI_USE_STACK char* new_line; size_t offset; #endif char section[MAX_SECTION] = ""; char prev_name[MAX_NAME] = ""; char* start; char* end; char* name; char* value; int lineno = 0; int error = 0; #if !INI_USE_STACK line = (char*)ini_malloc(INI_INITIAL_ALLOC); if (!line) { return -2; } #endif #if INI_HANDLER_LINENO #define HANDLER(u, s, n, v) handler(u, s, n, v, lineno) #else #define HANDLER(u, s, n, v) handler(u, s, n, v) #endif /* Scan through stream line by line */ while (reader(line, (int)max_line, stream) != NULL) { #if INI_ALLOW_REALLOC && !INI_USE_STACK offset = strlen(line); while (offset == max_line - 1 && line[offset - 1] != '\n') { max_line *= 2; if (max_line > INI_MAX_LINE) max_line = INI_MAX_LINE; new_line = ini_realloc(line, max_line); if (!new_line) { ini_free(line); return -2; } line = new_line; if (reader(line + offset, (int)(max_line - offset), stream) == NULL) break; if (max_line >= INI_MAX_LINE) break; offset += strlen(line + offset); } #endif lineno++; start = line; #if INI_ALLOW_BOM if (lineno == 1 && (unsigned char)start[0] == 0xEF && (unsigned char)start[1] == 0xBB && (unsigned char)start[2] == 0xBF) { start += 3; } #endif start = lskip(rstrip(start)); if (strchr(INI_START_COMMENT_PREFIXES, *start)) { /* Start-of-line comment */ } #if INI_ALLOW_MULTILINE else if (*prev_name && *start && start > line) { /* Non-blank line with leading whitespace, treat as continuation of previous name's value (as per Python configparser). */ if (!HANDLER(user, section, prev_name, start) && !error) error = lineno; } #endif else if (*start == '[') { /* A "[section]" line */ end = find_chars_or_comment(start + 1, "]"); if (*end == ']') { *end = '\0'; strncpy0(section, start + 1, sizeof(section)); *prev_name = '\0'; #if INI_CALL_HANDLER_ON_NEW_SECTION if (!HANDLER(user, section, NULL, NULL) && !error) error = lineno; #endif } else if (!error) { /* No ']' found on section line */ error = lineno; } } else if (*start) { /* Not a comment, must be a name[=:]value pair */ end = find_chars_or_comment(start, "=:"); if (*end == '=' || *end == ':') { *end = '\0'; name = rstrip(start); value = end + 1; #if INI_ALLOW_INLINE_COMMENTS end = find_chars_or_comment(value, NULL); if (*end) *end = '\0'; #endif value = lskip(value); rstrip(value); /* Valid name[=:]value pair found, call handler */ strncpy0(prev_name, name, sizeof(prev_name)); if (!HANDLER(user, section, name, value) && !error) error = lineno; } else if (!error) { /* No '=' or ':' found on name[=:]value line */ #if INI_ALLOW_NO_VALUE *end = '\0'; name = rstrip(start); if (!HANDLER(user, section, name, NULL) && !error) error = lineno; #else error = lineno; #endif } } #if INI_STOP_ON_FIRST_ERROR if (error) break; #endif } #if !INI_USE_STACK ini_free(line); #endif return error; } /* See documentation in header file. */ int ini_parse_file(FILE* file, ini_handler handler, void* user) { return ini_parse_stream((ini_reader)fgets, file, handler, user); } /* See documentation in header file. */ int ini_parse(const char* filename, ini_handler handler, void* user) { FILE* file; int error; file = fopen(filename, "r"); if (!file) return -1; error = ini_parse_file(file, handler, user); fclose(file); return error; } /* An ini_reader function to read the next line from a string buffer. This is the fgets() equivalent used by ini_parse_string(). */ static char* ini_reader_string(char* str, int num, void* stream) { ini_parse_string_ctx* ctx = (ini_parse_string_ctx*)stream; const char* ctx_ptr = ctx->ptr; size_t ctx_num_left = ctx->num_left; char* strp = str; char c; if (ctx_num_left == 0 || num < 2) return NULL; while (num > 1 && ctx_num_left != 0) { c = *ctx_ptr++; ctx_num_left--; *strp++ = c; if (c == '\n') break; num--; } *strp = '\0'; ctx->ptr = ctx_ptr; ctx->num_left = ctx_num_left; return str; } /* See documentation in header file. */ int ini_parse_string(const char* string, ini_handler handler, void* user) { ini_parse_string_ctx ctx; ctx.ptr = string; ctx.num_left = strlen(string); return ini_parse_stream((ini_reader)ini_reader_string, &ctx, handler, user); } zsv-1.3.0/app/external/inih/ini.h000066400000000000000000000123371511312357700166310ustar00rootroot00000000000000/* inih -- simple .INI file parser SPDX-License-Identifier: BSD-3-Clause Copyright (C) 2009-2020, Ben Hoyt inih is released under the New BSD license (see LICENSE.txt). Go to the project home page for more info: https://github.com/benhoyt/inih */ #ifndef INI_H #define INI_H /* Make this header file easier to include in C++ code */ #ifdef __cplusplus extern "C" { #endif #include /* Nonzero if ini_handler callback should accept lineno parameter. */ #ifndef INI_HANDLER_LINENO #define INI_HANDLER_LINENO 0 #endif /* Typedef for prototype of handler function. */ #if INI_HANDLER_LINENO typedef int (*ini_handler)(void* user, const char* section, const char* name, const char* value, int lineno); #else typedef int (*ini_handler)(void* user, const char* section, const char* name, const char* value); #endif /* Typedef for prototype of fgets-style reader function. */ typedef char* (*ini_reader)(char* str, int num, void* stream); /* Parse given INI-style file. May have [section]s, name=value pairs (whitespace stripped), and comments starting with ';' (semicolon). Section is "" if name=value pair parsed before any section heading. name:value pairs are also supported as a concession to Python's configparser. For each name=value pair parsed, call handler function with given user pointer as well as section, name, and value (data only valid for duration of handler call). Handler should return nonzero on success, zero on error. Returns 0 on success, line number of first error on parse error (doesn't stop on first error), -1 on file open error, or -2 on memory allocation error (only when INI_USE_STACK is zero). */ int ini_parse(const char* filename, ini_handler handler, void* user); /* Same as ini_parse(), but takes a FILE* instead of filename. This doesn't close the file when it's finished -- the caller must do that. */ int ini_parse_file(FILE* file, ini_handler handler, void* user); /* Same as ini_parse(), but takes an ini_reader function pointer instead of filename. Used for implementing custom or string-based I/O (see also ini_parse_string). */ int ini_parse_stream(ini_reader reader, void* stream, ini_handler handler, void* user); /* Same as ini_parse(), but takes a zero-terminated string with the INI data instead of a file. Useful for parsing INI data from a network socket or already in memory. */ int ini_parse_string(const char* string, ini_handler handler, void* user); /* Nonzero to allow multi-line value parsing, in the style of Python's configparser. If allowed, ini_parse() will call the handler with the same name for each subsequent line parsed. */ #ifndef INI_ALLOW_MULTILINE #define INI_ALLOW_MULTILINE 1 #endif /* Nonzero to allow a UTF-8 BOM sequence (0xEF 0xBB 0xBF) at the start of the file. See https://github.com/benhoyt/inih/issues/21 */ #ifndef INI_ALLOW_BOM #define INI_ALLOW_BOM 1 #endif /* Chars that begin a start-of-line comment. Per Python configparser, allow both ; and # comments at the start of a line by default. */ #ifndef INI_START_COMMENT_PREFIXES #define INI_START_COMMENT_PREFIXES ";#" #endif /* Nonzero to allow inline comments (with valid inline comment characters specified by INI_INLINE_COMMENT_PREFIXES). Set to 0 to turn off and match Python 3.2+ configparser behaviour. */ #ifndef INI_ALLOW_INLINE_COMMENTS #define INI_ALLOW_INLINE_COMMENTS 1 #endif #ifndef INI_INLINE_COMMENT_PREFIXES #define INI_INLINE_COMMENT_PREFIXES ";" #endif /* Nonzero to use stack for line buffer, zero to use heap (malloc/free). */ #ifndef INI_USE_STACK #define INI_USE_STACK 1 #endif /* Maximum line length for any line in INI file (stack or heap). Note that this must be 3 more than the longest line (due to '\r', '\n', and '\0'). */ #ifndef INI_MAX_LINE #define INI_MAX_LINE 200 #endif /* Nonzero to allow heap line buffer to grow via realloc(), zero for a fixed-size buffer of INI_MAX_LINE bytes. Only applies if INI_USE_STACK is zero. */ #ifndef INI_ALLOW_REALLOC #define INI_ALLOW_REALLOC 0 #endif /* Initial size in bytes for heap line buffer. Only applies if INI_USE_STACK is zero. */ #ifndef INI_INITIAL_ALLOC #define INI_INITIAL_ALLOC 200 #endif /* Stop parsing on first error (default is to keep parsing). */ #ifndef INI_STOP_ON_FIRST_ERROR #define INI_STOP_ON_FIRST_ERROR 0 #endif /* Nonzero to call the handler at the start of each new section (with name and value NULL). Default is to only call the handler on each name=value pair. */ #ifndef INI_CALL_HANDLER_ON_NEW_SECTION #define INI_CALL_HANDLER_ON_NEW_SECTION 0 #endif /* Nonzero to allow a name without a value (no '=' or ':' on the line) and call the handler with value NULL in this case. Default is to treat no-value lines as an error. */ #ifndef INI_ALLOW_NO_VALUE #define INI_ALLOW_NO_VALUE 0 #endif /* Nonzero to use custom ini_malloc, ini_free, and ini_realloc memory allocation functions (INI_USE_STACK must also be 0). These functions must have the same signatures as malloc/free/realloc and behave in a similar way. ini_realloc is only needed if INI_ALLOW_REALLOC is set. */ #ifndef INI_CUSTOM_ALLOCATOR #define INI_CUSTOM_ALLOCATOR 0 #endif #ifdef __cplusplus } #endif #endif /* INI_H */ zsv-1.3.0/app/external/jq-1.6.tar.gz000066400000000000000000065330701511312357700170250ustar00rootroot00000000000000‹\ô[ì}ëzG¶èü5OQƒ´xhºÚ²•–d[ݶ$ÇΖ5Ð@m5ݸ/’Hâó>û9ö‹u©ª®†FNfÎÙ_Âd,è®Zu[µjÝëÓg«QÛ¬ÿå_ùYYYÙÚØôw“ÿ®¬®ó_ùµµÍ­•͵(¸ÒXk¬­üElüK{%?IÛ!tåγýA?{sÊA±~ÿ8rúïÿ’Ï'^ÿÚÀ‡Iç_ƒ ¬£±º뿾¾¹ùçúÿ;>Æú‚^â9ÑïßÌÇæúúüõo¬oÑúon­n®o4`ý7Öë+¿Wf?ðõ¿Š’/¼(J¨¾;HÂdd¯ OÆv<;bæ]áIzðbÇãh»^gRë£úÍM`DÔ*ü¿柟9µÿãоu£Údäýþm<¼ÿa³¯¯MïÿÕ?÷ÿ¿å%½`[ôm/r œ‚Ä8Û¢[(À€N´]ð±àÿ¾=‚±Å…©gÄõzô ?Kb?ðK±Ÿß‚$`nÅ8ñ<:Ÿ€‰8‘}ëˆØ9Âö{ð& ’°ëD5 ÍíC›“±#þºCµ[²v¡Pøtd÷\¿ë%=gÛèÃ+jùˆ’t» :SÃ/Þu?NÒvp4ßá[+¡7ú~hrìæó Úžë'÷™§@Ç®ç„ÛØr!óÊîõ?ÚÎ<£çãxö!~Æv÷&]†¼%nmoº~ï"7 üÞÛIŒì'ÛÛŽkæ´\Æïy³]°D‚ ¬(çUx;²&Ì|gdæymÍol4æ”N"GP¡¼÷#…Ýú/žsï„Õ±FNø¥öK·:ü’S:rzÂrkûF”êÿl·O/[Íw—§ÇÍʯ¬÷~`ƒ0¶;®çÆÑøXk¬¼®,×£zc½ÞhÔK³G^½ø}üîÔì©…}`Žzpºª¹°¬3ê~ìô‚nTÃ?rêÝ œ˜NW8\ûñ¸Ös:®íׂpPç¯õqxõ‘íúõNV˜ÿm­ÕVj«µ^?X«-{ÔÛ\ÇÊ9Mذ#ÅCuDÏŽíÈÚýÏâW_Äý?r¹}q%,_—÷N<8o¾9(Šë":¾»ccð°È¡èŽÇV7¸uBx½}7ï¢nèæí‹%qØÐn$à¿Ó ñAÜ9%ŽóEƒý0‰NèÜU…„mú}DªÝ4êÄÇ}Hdw —Ð{z¥9ÝØ üZÎ<œ5/ßîÔ“(¬{A×öêÁ8Ö+ão/Ÿ½ß§—üÊæ€pºÃ@\¼=8:ÚY¦?óÊP[ó Ü ÝîpÎh%9€Å€ˆÜÜHBñ6R?§@-Ý 鬥÷É’ýfí§æÞÞNq¹lô¦"¬IQh4É.üü˜”D®? ¥0–yŸö,±ðX18Sb)Ú î†N8»Á–°hȦpáD <â'{"üÀ·BרlÜnÐsàÕIç­øo] ¤ºâÕáÅéIëì‡7ûÍËæþáùŽÆ”hh‡£@¦|µ®øõW®j>Ìã1–é¹Qü×Ù—óŠ»1ÌKÅ4A¶ëñŒÓyêØ¡7©Ê ŠsŽG"²9ÀÔ¹”7m#Õ¯œz|tã‰Mбu,)ÊØNÄp%𯹧\9÷)‘³Û¾¸Í¨Õå–hÑü,¾û.·j·—[k^ññ]oÞ«ìF‚"ÒYjˆ¿eoÍkñ÷D¹Û°>­?ø¾;tº7T @Ça2»Iñ3»Ê¹(òö ¹?Ñ ‰y¯t¦µ~ì„-Ä~X—¼S¨µmE‰;5/ç-†b8ƒΰg#QúhyãR.îYŒíÄu²[SÈ/ºmõâÀüè‡yÙÝÓ‹<$ˆ²òă“"Vøýwä›D2†1+¥·ŠêÃÄÌ=Ù~_˜f 9êðO1á÷a½"J9X›âç4æ~3A‚†šÞØõq„⵸]«m‰2 Åí!Ƀ ®Ô `Àœ|.«À8#1J"IA7o‡ÙTð7ˆø©¢däúîÈöPdZ!m u nØ"‰ƒ%¥m í;i²ÁU„‹?&å+º,¿[ü_0(²Þås-8`*æˆF1O!`åŠøEÈŽ×aÀN(Á + ðîâà¼w‹/Ä—Go<\èS~…Õaä³lÜ<ß{;Û;3%b‘­Ž TLéSè IQÌOBÆ ´ M+¬žs[ZHú‘Í%A©œÃn"™_‡4C¾e6*gƒ åà„€Äk‡Üe± ‚±7ÁM…6½Y§7¾oz÷£€feBxùÁÀÁ¹q•É_Ï{ÁDõÁ€¼}œ7nü6éˆs.MQ ^Òr‘Ò¼ù´$«ÅqJˆD;÷Ï6[›ë¿ÛÚ¥ ËâYÎÅÓ½×GÍ7;%ëêp98<às’Øûðá×ߊQ Ãi©SäÓgaý˜ó™4ÏŠ\F¼7KâÀpnHöWBk,€è&,Ë»`¡ß &æI©²% YƒÐ ëõ(ÍTÌß¾Œ{y‹ 2×Ióe —/Ï›?^´.›o,¢.î< 8ºé¹¡X–µ‘ n±oêI=§ ¸V÷ç¾.¤¤Ú‡*y^ÝØD=]ëûé'5.›€y#‡Á-l`8农¥8öØmÝ89uñÁ*‚,†ë|yºº-ÆÀù;~7œŒcØùr#ÇÁ ì|ÔøÌj@‘L"•.°0(̀ơ°Ãî¤Ìn I5Ø¿CV'´€u„3J<;«–Ô¼Ù\*–¡G…oªhcßLJ¶Påp4ì[Õñ¸»¹ q¡à±Û‡IÂO·3Á][µþ_›Øþ¿þHû¯Ý%…um´þ/hãAûocmµ±¶iø­£ÿÏÖÖÆŸößÇg $k¤A$¡ÌµªÓ­3+@(olë©%šŠ……Â’Ø Æ“Ð cQÞ«ˆÆóç›Ö*¬žx:ޏúñ*i^ ÛÒþ¬ŠC$2¨y‰ö:_ñ/dq’]çB€ª÷© ï¹ÀêA·Ç(:D¨E†® ]Bi²ÔÕÆ¡ÛIbTjW¡*q›ðBi’t¦´£*ìHx²“Û—´t©‡c ¼Nx‹l‚ê<œgƒÐáÛ´ž2 ƒ±dD\T£Ö‚$Ó~âaG ¬xxùöôÝ¥hžü$Þ7ÏÏ›'—?UÉ€õ{”èxl1Â…åð컪ëùu¤aj4ö\ä¥í0´ýx"‚¾8>* ›¯/ÂA¿>¼<9¸¸¯OÏEêŸ5Ï/÷Þ5ÏÅÙ»ó³Ó‹Üh½åöýžÓ/_5÷Z{§'¯ß´Ž›{ç§­ýÃó‹ëª¸‚"ð>ñËW­æq~‘ëJZh˜ÜÊååÝÊ5üoª¨“Á²­Î/OO®«@ç±#¸ÚeürÖÜû¡ùæ - rëèžï1ô2÷ÑÏo¡Vk›Ï¯«Õ6“ëù[¾Š5æÞž¤»k-îaÍZá§ Côp°}>È¥H­ qˆhOÄ]ÞT 3õÄ ±q=Ù¬U+€À3Qù€ŸÎâ#¬­¬_¡£ºdØm¢I;#8>c˜¯I­p”zƒ*)ݰ @ì:=dŸA HF(]ÒÑ;öB¨¢'†¤¥T -ÕhÅfÈÁ*PùG‘ƒ¥ÿíô0Yi þ”åß ¼¶ø`m¥,øPû Õ!]G67²»a€cpX®Ii@‚ŠCÃO1P±¡Ne5PeûäÍv`ÒEY’1÷‘…‹`_û€^áR\˜½5æ×*Ø2û¯ßÀæ™Rî`O8ÄG°˜‚Jh¥Öò$tßõ\4àBSÐÇ œ@Ï/‡ZAŒ*»dwDV„Š}EÍY€é¾s<¯¢XqÇe+G' <\;ècè 5ãÖÁEì9cÇ'3/¬ø0¸38´ç%>õ……X·8F|ð”y´¹~×A¦*&3e”éÈgôÝÌJ"¶‚„“tÔA$ÚVÚ¼8 NIçy¹ Ц#Öð¡e3Gjq¦ÁÑ̪‘ ¬Cx2˜»÷  åxô¾å¥4z['¤´Dòz´xJJ§Õ²Í&'H~Íñ’ù“›GØ0ª–DŸ¯´3 G-Vu¡î€T)~D?i©—"Ïá%ãèL§ÇhOm·s¿$©Ú1C!4SL‡ED?H uéÀ†CLÓ„u\ky7Nº¾%ך»©‚ ’(Aå€ÚáÈÖ­kã¹£J•po"БIíoÜðfC"SlÃq—@|:Ãüt/¨®Ñ\éé…õ¹¤Î$Ĥ¯,k•$ :–Ù2OS騴ÁÔ(hñŒÊ´Ã`nÕÙ»M‹–|;%8-Óv+õRÛ¹‡Ì[É2E± ¿eÇêO?–kO?VŠíBöhæ¤rbùøðââðä P jPþÜ)~\þ…b#¾óô•#,ªã&Ý”¡W ¥ŽÕÄVMWªjYRâÃtMòSÌQ’Î@V²Q5ŒèºþAÕ·ÁQV¢‚„yR ,i/zϬØÛSJ*Æ:- ½Â‰âÕO +‚u¸0¢"¡t1³t„9M©€&¬¢“™@(U%zwö$°nS»†^bO4R"ÊÊ Úw»{£·º(R9"Ë·hΰÍñ ì8’ø€íésšËXJÚ´§õ9‘…ÑTœ>š±fóÝ‘”L—ÄÁœ!f{]+øÝîö¦ù»ïЫ¿òYÐæþáåáéIóèÑLÖ£ø¬Æóç[ >+;‹eô4©r,”¥ŸUyjèdö™ŒÜ#%¥íM)4Œö$*•¯Vk«Œ1"£.¾<wM-ñò r ·¶çöÒ¦¶ª…S>_VÝa_*DQ]©8$w¿ÜhQû³®VúÑ‹ÖÉé¥ÒPõòߦ¹8G-£ß´x Ërb-XÕÒ²lc‡¿¸ÒR© Åcõ% §;vïôø¶ô®B¹p¥dtëgØ}¿H_hóeŸ¬/EÝ—¬4ue¬?ThÉtÇl/ðïîRÕ$=b[ )ϱ|à£îÛ¿ nœž‰QÞ¤v T ïæ›Á`û>ÿ#l_æÑäAg‹¾s‡œ20ãC8Qò€uG:{ž{À§ãAQRzÁ½½”Á΄hðöé4¾$¬â7eƒ0|k«ÌM…’uIc<"ŠDåpþ‘ƒÌ·x gÞÓªb7äùÉ%¥>m n\BncX×1úþ# ‡dž¦‘E(µí+L_سdš*6ÈôÞžpânMÉ_‡«[åfíè†-[¾H§OæZ'wßþÁÙÁÉþÁÉÞáÁ‘ÄùYDÇ! [S~èä à I7’”ãw'ì³ ÝDV…| ‘ØÛ+VáßðÏé«ì©¿üäÝ>€.ßÀ+¬ùM)¹à±Óú.èÓ,3_bS$!i[P`L%L©£ù Fý÷JO”žår!`Ù8`И'íLIàŽØDF^6†ónƽ½Ê‹”Ûd-’èºa7&Z‹œ8KŒ.¸·üÔ¯”")$ üH7Òöžø†¥ñ%:”i&äÙ¬ûnBÓ›agØÄE€•ÉU›Ÿ¾»<{w™ùI“ÑÜâd‰:<Ù;z·[¡mîýÀo³ÖÒ½=<üÄLQ·»S\„aQ@a[Ëò²“SeµèÐÔÕŸQ 1ÿªj„‘³ÕJƒnw £-Jy¨é l| €õ™Îã.xDçßìý#S ~çUËi7ûÑðäÊk·2kÅ0öyOXɺLpf‘& 8Fu-׉ÒF0ÿbeæ4n3š¼;0Žã¾ u(¶•Óã˜v7DHm«›æ9æ‡H2ØSürçRØ>iˆ¤$c‚ t‚AIÚ”ZÇŒÚVˆ ð:(]è×AH`(¸‰úfÙ¨AB{ÁN}{f½û@}ÃØ$ä {¶+¶è%£Ñ„Ïl ªë‰Ò~ è³Ö ”¬cxÀÇDqœ0ÂWÙ±_De²ŒtÔ:TXé÷=õy !ç™È+Ϫj40'ñަFƺ³J¾DñKJZKÕ.©‚ÞwÇÙõœîF·7Û±÷òH•+Miµ äbUPF9¤Dnš“DSo)‹jµiöxìS‚š:»Ñû9âµÕëJ0HËs&›ë¥HȳýôX‡eAð¼ÙÎÙ¨ªcU?ºV÷ûØ /Tɳ¡†áÑhÕºN‘€Ð!–À!p:\àh` Ô¿ ˆ‘âxêBfQ!`êÐqú;wÇȋڰwM¢ØÅ¢iõš!1mŠ•ôÅU)ªÿsééÇò•mýÜ´þkÅz~ýôc¥²\ÿبK×⥨Õ%º´ Ò¾…F–ÄG{jd{;ì•MöäçÌs…¿".¯(©|ùX’üO? m³Ío•©Э #T­# 0ÿª6*¸ÈÌHòÈ33ýÈÕAF-NƸXÑÈqP¨O6WR+¢ØÏIÁŠ$ Ò£˜ pÙØ …Rv/ùâÙ §P+ÄÕH ¨L½¾ºÃ @&[Ó ³ßhOƒíNš£ Jm°$A½w 7Ä.pæì„ð˜Vãô8Àú"VYž0ØÔ‘=‘€ÐÉÆD7+|GÌðc]$Z,´t"Œ ¡¸/Üà0êªS,L Ñ| ¤;FÄ©³yø¸|Õ:WÚßãÖªk²ÆaTØqW´!VÅšXbS¯¥¡‘K2 •(Rí(.-»¥Ú°XßçÅ.²;V1Ól/»PMðJ¹ÓxÛ¨ Í”¨†µ‡¡6V¦–©GÃZ¦cõ§òzZ/Í6DE{Œ´  S#ºËñ|üósrÏ—Ì@ÎóU€ã«‘Œé „à 4é%«["2\²‚Í).C„lTé{v4Eq¨rQÂqþ•C ŽI ”œøEâŸx¾÷·¿¥hÔ fÍÙ¡ÅSH5´)ÂÎcí3co¤‘ç a5 zUƾC?v< CúÙ!Zõ´ýš1‘Ïmô‘Xˆ³”|'3mË¿zðáÒ ¾èB#×O"*Z´¢øƒ'û)a¡‡À™T4 \²/ Š‘ÚKNIÈžB0žUY==R ‡gQjŒÑÅøbèžrrtÏðxäÓ1íIó9°Ûƒ*0>]˜x7E¤ ÏÒ ¬W­*ϼ’çi(„óì1ßãmrœþnìMT¹4fOm÷Ë™‡“:ú!«†#ºŸ8‘<çžL Š´TO:°çn¦}3äxGÑmwKüÊGÑ$âï.êºã±|ƒ/¦ÖE/3bƒ0¸Á½ÀXˆl„MÈFÚ&Ä‚€G3´# § ¥Ë‰³â=rÔró¼zHk?HCÅ@ €M =±3h?²oôöAKô{$#RÆù×í®1É “çbñ4Oc‹ïTͯzDž rýä`v4–ë8t> ³¨+¹£µOÒâPŸÒ&LÑ)ƹ¯.á®Ì·RF1°XË™ÁMÑs3jþ{¨|[÷1Óáê÷ºˆ†F. '"éÓþ^˜€¾k¾[™šmw®q4¯X D÷sný©l$|£¢ô0¿¤2À¼ë©ú^™Ï£<þ(&ÇÖƒö¯ú LÙa°¤Àæþ…”q§péè‹ Xh ÕQ-u·?…>îZcˆ âÚ]røS“À@`¹œ¸Cõl”ì>'Ç&‘ˆœ#„o)íÔ’ò±Vâ«C]"»ž’¥qc'.X||ú±ô´B ïî)}XZ¨È,:ò}½•ì{4tû±Ô}útÄ*ù—¿f¹C*ÏSý Rð§q³”ÕßiK%Ĩ_ÄtQ¨y±=ªoמ.×륶¿Çš…¡CžMÊGm©Êé5 T†WÉÔ) Ñ{)a¶Žì¸;äIVŠ”B_Õ®¹>Kl²:©ÆN0ö™¢ñ žêuÑpÀàÀ½>©° N¨|]Ìà”J*µ-§^%þLYIªÛδ6¢Ø¢ÝH)I±fô”ÆîÁÿ…ïÜ1DÚ˜cœt*M¡,ì€gAnwî†çhò@QÉAГ.»Û¤C#F]áljDë&&`K«+ëÏ”˜‹ØÖ+¡û/[jÈò Å QqßK•të+++5%JÝs)ªþs©ö4]TÌP —ºö´ú¡:.i¤¡>}Èg0%WgÐØã6œ”À ¼LÕ+Œ`šQHnÝÈ踕z‰CfV£* %«›´®L‚ÐÖ?µ\â“L^ÂÑ•x*¬ÖÅ£*žÏV¯Ãè_òø¹ÿ©©Ž ‘™.3£{ Æó¯@6J惧ÁΧ§¹ —Äk4S!¦¡Ô­Ñž¬r'ROÙrOnV­]ËesEêBܶ2*öÞ;Ê+€6þ+JÉÎŽ÷P^íorœ€ÁÚcØk¤¸XÊ"gYÝz ‘«'@P¨&*i¸Ú›èqéìiÉ]ƒ¹ôÙ ‚x:{œµ{NXÍŽ«D‰Ó³²ÒÃüÕ¬ IP´»uÈ#aß}ÖÿYûb5Õ_eâHZy' )•O2ÂJQŠÃx· ':)Ü#5¿1ŧO}~Çü9ÿËÙöÌ~`¢ øLf›8N,éI‘7’Ö#ÖpÒsH40d$¡JMµ»N³Ú u†ãGa cHWÒpî?[tÜ ,:S2‰sGÞe詘ɇdø’É2­½Öi&ëAZ0ÍŒ²WO+…«©ú©ÿx6§„ ó¯ —BîÉ©;éðä€bÑg³Pœž¡\|ñp¤ú$Šó}ðËæ‰iщ´lǤènŸ‰‡^›Tµ<Ó”§Öjmc¥RMmÇô‰cà9§¦éàfd ˆÎÔ ìwH!Çv$Yt˜H²¼*ˆ#ƒ’™+º2¥çl¾bô•ßù…PYê{¤ ‘@ÌàŒŽ9™±$`ƒµP!³~è¤D¯ÈªÌ¤P#5_¨rµUʆjû’p"cÎlºÊ‘b”;•|gÂ`¬çœ;ÏÙ"°™Ï8´oÊœˆóº÷w¶Ïw1¡rÈC•À1Ù%ÃòFï©:õÅw"‡ÊÄN»aLÞ˜~‹ —¯0±öUÓú¯ë¿QrÑå\—ÓhÌV;êðäâ²yt¤ÑY „±*IFiÐQlÓWÃ)íÌ®u¸\VñÓTŠÀ’fSHcæ­‘–£DpYàe]牬WŽ19ŠÌÓNJgÉÌ£ƒïU§‚àø•BG%ÈAy»Ü\W¶sK}ÅB¤n¶á{U¥ÝéÛ1Î’ê’<™ÒÔXÔGÅƒà ¨ oz žÁ’ÑË&ÉH¥‡æ´4Ûý’jTχ¯s±*±‰¸‡Ö»“ÿ|wzy°ŸéHqYþ <)'R5'G†;9¯¾Ñ±â²üAõ”³à'£lw’ìëówg¥g+…C×f‡&ÌýOìÙœ{ É„óæ±|Ü’qžô îaˆ—¸’"Œe_Øü6UQæG¢šòÈœWŽÏ\.‡ÃY  ¼½æà\U­u¼²ØÄáÉëSÊÃM¸~_š4Ì 3Ç–a±˜_æòüðlþ9+t?‰®¶@ÓÐÏC?AÀ Äë@^]¾'EKŠêT\I·z•ñŽ{Œ²@'Y”"Cµ¢tãa\B„(¶P8 F¿”·á‘ccmà'tžÌÕSÆ#¯®¦¾bÔªµ²UEÊ2[Ã×ßÿ& u $Ý™ä‹ÛÓÎ\.Ëi“¼:CÚw7šÅ,’|¸$yM;¨aF%;!àìè:…™_E1hϺ*çææpœ«_R^vJêÇFÚ"4›„v8)ÈdµÄc»¬ó(ÀÒ‘ê¤ò€wTF Û0MÉHÅE—пŸðö +°jÛš‚%F˜¬1àFTó¸~ë:wµñpüw··³±¾ú}¡pÆZ(ºUŠY Ÿv%ï$)ic™U©JËœ²!“A¬ô¹ Ý“ÊÖPÀ=Î6©y i铌ÊP|rÛT¤ qcÃSÐE9Ä zå^ט®¼ôk…¬·¡A»ÁÞÞÁfª|}p~xzÞ:?V¢9ˆ'Nd†B±QiÏÌF"ÃµÐøîÐ îì‰L4•&è¦ì]C§„xgšßzš‘ p€z1U—hÅÅ4N7q;ªÏdOÒO j¤’Æ~Rne©¡—* ¢5Ú¬ î|/°ùªMu%Ö›“w”í$1æ|˜ÈÊBaÚI:Ôœ | /b³éxŒïîî4 ®Ìu »þ=tEf=W”˜\k™Ü[oÔÈÄ`Þ¢ e~,åð%f,°_˜öÁ'“zj8‚sqs‡˜÷ɰ:lG“d1Êå\©ê ¹‘|J®pžg¥WwrŒê ŸÙêN ŧ2^Ï´gò^W æ(Ÿ3’ EÈß<£¹Õ®MèuÃê‚*² ”æ/ïäàªØ­¡ô¯2­†p¹=Äå(¬QFßL6P.ó®qëÌEͨœóåCzæ^‰öÜ~ß¡X6,Í+µŸ`ÚAœ¡ôJVˆ´Þžžþ Êw|›%jQ.À ‚1ßî=59ʤCà¾GU鄆TMõ@СetžƒÐ3^sz…šM4àŽÆ”¦­Q©ì9÷÷ÉÝiɶk…% ì,7è+µØê‰ï4 ¨À§\:§>zÄ“—{óeÊ¥Y–ðůúëöS}qr&æ&}<ÝÎØ¶<õXüM4Ú†¿ùM°;z˹ BÝpQ|?åð¡^\WÚu‰W×Óí̹@â’`tVg—kÃMíËò0na¬çl†nC÷7ë'Ÿ—eÛ`~IAÿ ¸˜/ì^ß4W¤s ë|ìR Èõ+üyò”Q,…c&ì+™ûd+–´Ëéuó«nfì6)„¹·“¬ý1kÚOVz\zt)Ê’F)`òH‰N«NØ:Cd/ˆ§’-ˆã kÿôBÉw9¦ÐQ†ÜÔbÀ7ÃlWàÄ3µm°Gï̸3„c§fÄíd^´1ÂQ.ð¬]Ö¨¥¦Ù3®/ÙÀ½Ø˜ Š/Ý“"­£âÿæûû,š#ñw$މƒaTd ÊDtxr ÿ‡#Ã¥0F‡5Z<õ8?šAžäåôòHñ¼+¡)`ïÄ’ê CÚÏ\‰ cÈ}»ŠÓ‚‚D‰—½D}g/àžéêìIMÚA¢ ðÉ1zv”$Œ’b3e™í}J¤ð¡RH‘ÛŒoê8­HÑ^ò ùê:zGDð²;M÷§æòšo­¢ Ó™ÇÅ•„Ä6OV³s+éý^ÄÔ¦H'µEIe2Õì†êÙ£ÈÆÌú¯¤ àòV®òU4ÂdKH|KGM’KÐîwñîô©‹)©‘ƒ¥®4± TÄÅ£q‹úÇ’E†X°¸¦P.E–¹¸Æ^#f4ÙD•Ëd*Òëʲ®sfðjšzé¹Ï+ÌÊÁ0ñœœÜ=2ål?QñúdÇ¢dÄÈÊ$!@Þ*êò%@CôŒ–g²ê•¿zwq0½,;2ŒëÖö*uÍæÿœÞWMlöüw‚ S)h¡üüàè l‡È´‚Óêè™í%uÒyÄŽ˜HD 7;ËSÈÙ4ãD¤Ù PIOméçƒý8sæÚè‚ÇîáQíÉb>¦(žÚÌtWÎ=Nò&š5üSÓ=…yù¨çø£œ|EÌáÊ¿3´¥À‚´6Œ²^ʱ$NH½6¯.ösGŸÉÉ•FÒì˜ÙT ͪãZ&½ÎR)&!¥²Ê€ùãÙ¡×Ò± søÅE~aÌŒ–Ÿ±ÎaV63 gâq5ÜôLÖ„:…/ÓÛrpkÉ9`†ýµrÄ¥ Çgå¶¶‹‘Qe\ý3÷4ñ48·T1Ÿ¢–¤}„zý™ów'°ŒËÌêlq ¾Lëß ÿËòjñKŠ0Ë %¥Í@ùŠþDßЗ—ìnu„}›sSÒ¾ÔW±!Ãú2³Æ˜ÞTÕ5BF/q‘8œ¬š&b$ë fá§ÈÜÜùQð8•M3ïb4Ù‹Y¥Žlã·itrî_øX̹ˆBF›óÈ{ 5# vϦedÃeÎ~ªŽ#£E}C„e¹‘åáN½sðߢ©'0Öf'­R4f‰”K|ß<‡*É—%y‹Œ¹â£·ššr™:þÖñðÊ,•[‰C ¤²@…Gå ýÉÀ¥4¨EŒÖÉ›£ååõpöëé`þL]ÜTâO?[(=tÆÀâ%(BüüÕ?uNËÖ59¦)%Д{ôCÝ §‹X-6–Ä06ø“%˜õ&2!,[ð(kß³ÒQCüÆ|ñEvHi'¤|/EæÙ©"'k¼Ü6 eù÷!Z¯d)¾O6Û]ÇŠœ±Íñ×èB‰‡«vì”™œæ÷úBv­ûvwغ“i¨žô(ŸuGO‹TÌѤÞüðþµÕ|99½´È¹q±h¨Æu;]Df††g×—rQ3zJާǬ;'Gìö¡êë„.ÿ½ñÿÐw,M‡×Í.<9´§©Ã%–ã*–ºŠ]e¾wÒ» u-´fN‡øq¥5Í®¦ÑÒo9e¦%]"{_¨ºÌÔHãŽqJµŒWèT æ¤ÃÑ›+É :™72¼­n·ÕmÙëIÑ’yy@ÙoT˜«+_É;Í8pLÉ`²5Šš£5Æ~{þàyÑíÊ‹!ô(Èæéçå!q•Ãì(~)wª#ª¯Ü‚õÉ-0rÁb.ð{Ž«µ@è| 0|Ç#û‡q‚rÒ‘9hA­TB/cfv&”‹…ÐeÔR ^uH<ì|X]àÈðrQØ©0p«›½‰#­@?[5®'½®˜Yéy…3™)Ðwm:Ålß}·Ÿ¦:K3œ¥ŠJã86ø'¾äW]3¡Óò xâÓl™§÷(ˆØiν¡éE¡_½)/B¿ÓU¡ßxW(¬éô]¡^º·‡\læ®39xaèÞ^…Äa,er¸ªÞ– Eá™\e\E~@…¦G­Ó“=#€CÑ$1}–vFÿÃÖÕþ•®Ésøxz’›,¨Ø"Õ±~%è¤î f÷//@‡Q ,ËlÓçŒùzö8VË)޾Ä^.²GìÆU«d…Aù’òM©lÌvÔ9ÛËG‡''§hµ(æÝ}Œˆ‡"qÞ;L“[AggùïZ×4ÓâÇå¿‹a^”<¯}š®´`å…ørÕgŒ$#Òë™ï 0ñÕ²}¶¦þ™8!ƒÏf4\{”µ¾›‘s̸äºæ®ñÏçœoÎLF\æ=ÂS}•d²ŒpÒWè!Û@ʧ à OÚAÉUÅ &µvGÝ®E@ø>º€Ïëï” %©ÑÅøm©š¸ºúøñcñãÒÇåß},}$½§×¿¾–‡¬ï¥ìøü¾QÏ®+JqËêu£çí}Ÿ<ܦB.ÐÛéU¾i[Ê)R‚ó¥¤/Å`ŸCvXã±ëŽôÞPwIP)º«J›Âä'RãnÉ\bx‘(sm®Ž*°)Âlä¹þÍ Ž)co™~îÎqá0ÂTÒQzÄò Ê Ç±¬‹Ý(;Ú=¨íÎÖ>]œ8®Rb¿w›à‚qËE…㤡FW7 E‘#9É­Å|Ÿ¬É¯‰)¿4 âXo›”MŒ2.GÑTø¢íc}§•êI+f+eUê "e§®ž^“ÿƒRC=YÂõè¹=\LD¿Zá‰Ñâ#”m¨¤äSmazƒbFD³B¥Ù`ŠÙ¡ÍvEއqؾ¼°™"9œ^U³Jò"-ºëÖ^¤S ¡Ï>ÝÀÜ~•/TDU!½+9ù6¹EGCv9Gì…¦(»ÖÕ …í¹v”&P3H—j•RÒI4ǺÜòY½Hð²UYÙ5ӞàÑ1W‹H‹°RÙÍ †ÀìœGðbÜyfö¬PçËSóõÙõÙ9Ýè²rjÈYÝU¤ìýú+¿^–ûÀr>‹ÕŒaæ?V@—Ä?’”Èl^°%œ±hh»NºÛX6Ò7C<Ð|])¤rÂé ßVúÕ)ʈÞì)šõôIPZM` |ãð”©ÝþZ`îÁˆ1AŠØ½a¥ë”©ˆmïÚHÊ{ŽÆYå[Q2T±u2‚Ȉ/ú1݉ù.ó4ï`êçŒýìÆ”—èNXÔPkìövˆqlI†ü 4µóò–ÕºˆŠøŽ%×îò_º3“Eýì)OŒV^ÿ©Û<éz³3.j¯;Ÿ¥CÝ|æž %ñ–d?™¥]†…ÙÏ÷Uθ;ÛelÕ`2^xI§Vq$˜ÔÞ—"ÝÁæ¢'›Š&Õ®s_Ñw¢z“šÈë„÷&ß`öÜ}^¤Ç¼òW¢X¦@Èð §™ÐÉTE?(âðœÑ8žÈòeeÚ5ÔŒ†Í¡jlQ§“4;[_å Qz ”a-ƒm™½æÇF±òµŒÙ³Ðx¥˜Æ3S)3T3¸;XEÞýí]Q.c£0µÎ>NÓi>^^¿³Âöt?˜ó¾¡|üç¼ÏÜã8áY]¹f#bGuz(ºÏSúeƒºðæ…Ú V'édO/è°>qîã‹ØW€LU®²nùtaK`¥{"Η3;ôüùê3Ëa««k[D^gÝl¦T¦©¾TyBh·æ©>Èœ‚RaŠE[²h‹K¶¦K¢Bð¢u°÷ö´|uU¢ôËåWÍóåò•J¾¬ÈÛÍàkƒî+re<~–ËX­2ãØSº¾®`ø†vßQwîñðˆÓñ¹ÈàáâÀ[÷M•àò#*‰¬†—‘ï³*-ÿXÒ á8-ᕘ'‰ÄáùáÒÔØÏîÇ~Ï¿4ÚâÓ<4®è¥©îr^™iPù…2>)L'™I¯ß™å5ÄêM—É­¯z¤ádság*=&]ýt¡?¼p6ÙͼSmž¾£nŸÁÜ:@ÒCQ’Ϋ%yïÌ›“wöÚ³)ø…œf`÷`Nç¢B=U’ñˆ2¢w\¶àÕ"IµÏ~@ÁȪ‡AY¬?ÆG†ÐUeð›V¡DM-pœó‡#*åÝgD˜\^w‚ÏqâoH*WÃ&”aà£À-hÖp5ý”!uØaï¯Ñ!Ÿ—´º«ÒÃégØ77Kq« ýŒõSØš÷à$ÊRa@ïÓ³£Œ Ig¢ýè§‹œÔF³F»ÜI 4Håžž b”y9< aìôdq‰~—ÒHéÖŸ¦ÆËŽVümpG—Òªª#Ú‘Rø¤| ø€¬“§=‰²ˆÀñÎYTˆõæÊ_X2WòÐd”òCž¥© YÞOye>;¶ËàÑ@Ñ~ÔVŠ—tTÍLÚ<00“ºe¦RíTmRCW†à‘އyëòôô¨|%—P\Ñ”Á—mû2+¬¬˜dIc¿*h±³¢¢ACs«Íµ“üAôʳÇÈÍóCdÄ¿â?oÏB$ˆF†TRÊ0CL¶Z dW}ßEœ6n+˜½“W§ÙÌ/Lù•˜ÖŽ€ß2 EÒñÜ®ˆÐi”ÒnÌ´0-¾dZW^+™Æ—w+¦ñËq=Ù(m£»mǦȠùŸG9„­ÿqTg{}z~ܼ|À ëÁ9GìÄ)pv3 :雑äMÍȾÞn•ª¢D9Íà 2cû¾Ä3zdnœtML—1.¥å+:fÞV)bpBB—su KУÛÊeë–ê`ªgYÜ0£,Cø]ÆÿÚIß}g¶ÿ½`·éüúj?í³¼N ä§îy=w˜ –79tž·.~2^f[Íq§Eäú&s*÷1¼ 3fnnÁŸº,¸<à»*, #)’ضÊä÷#×’c$dÍñ…¯2%*žVµZ-ÃgSï0«ßò/ðWåKI&cpJÐ&åÀó’è"ÞA/šÆ7!“ ÂÞîR‘O §  ˜;¥Ÿ`ÑŒˆ®sëÑe‚”POâ‰îØ è>ÍR¡©p»¥]€píwÌÞ㽋(S—%úKB¯W¶ä=”+¤‡å¥·ts0–ìkö®8s8§j<öLíµ½ÜH{Wè»÷NÏŠ€ñƒ¯Ž×Ó×J ­6·;”¨}µ|ˆî|›ŒJ£øîp_¹hˆ7‡ûx;0lgÀÕª†EìîR©d0ç !ðêBó¿`éNê#C9¥}x¶¶¾¦ai-ÄÚÆ³gã>Ô‘}ßJÜÞÎêÊó­ÆFŠ®þzl)}º*3@­mZÞ°XVƒYÆž¤²µº,%oƒÛ6.ØF'˜t¼ì\Eë`q¾qÌ“ß+7*j`š0Û’ÎùQrñFFL¾¡ÁPB7™0˜rË HUrâ9Î#¹ÝH…Na謆S–TˆûmàöÔUœ¡#£“ßœGœÃ6”²4mO^ÚN T¡Á¼Bs­Û8Å”w Á£e[§Rö‚ðU¢«Ž.5õ ¶ê9ÂX¬±eFq­Âÿð“¹Ërº ]H§_¦ôÀW÷q×ÏÞ5¼Á7 o05¼Á·ï¡ÑÍœ¤3” ”éKJydöåwò¢XsH‹s¦dú¸_n˜˜+-‰7€Ä˜A…Ó´±ãÙP9ü°ä©žÛhâd'Ò^€è¯Dœ;vYTûQ&üâêé¥%I‹åÅçšâ–Ò­Ž! yQ¾xP°µÜ°–õë/鯨ž †~­Mái¦Yˆžò!£–Dƒ±)é þ‘§Ðþ1.Y7HUG'b‡c XóÆÕ^ºÂê,*õx³úh™ vDî½Ê-ÂÛά’qjeá¶~3à¸|&€ñDT× I%»:“ÓKŠÈó"ºqÇ_¯¶eü¾^)ÃuGÕ[rñ œÕÐxÛ*–‹-îŠd–3Ó?snÎELš#Àšrìó§4SjîüP)â¦fƾ¯L7‹l‹u‰;Òº{°ñÙ²ó»@eé 4ÓbÓf…5aýįÌMYðß[jïh¶C²êB5eÿ¸ˆ«Šô¦zJ—¢Oõ”-S}˜~ÈàͧæêF¡Ã¾AÐ0å+38ÄÑj$•ÉE c~=#_—lXRW×Q«HéSñ,ÍúRLi‚„/ê Áæ;ºR¡†u‚Ô-™AT¥Ó”œ2BÈ»ªŸsÞ˜™ÇÄ!à]†ÇŽéñƒŽ-ÚëǤkRŒ2 â(ÎlY-„Hot'~üÁŽiz$ÌZ™Ã5CYÓ9~™ÓL¶0F—Ï J—$¿9ø™Ryôb¾ùôȤ~ŽLn?ÊL½Ùµ§4öÓwôit—‡añÙØ`ž‹ì³„£õ¬†€e#Ž2ÆÐ to¨Öë”qXäxha€^m´./Ę-ŠŸ Y~`yn'Z¨ðê£J?T à„=X$VAWŠ’>\Dž&ú?ê’‡ŠÜHë/~þ?ÿ|úl5j›u{<¾u&AX›Œ¼ß½•••Íõu·67èïÊ*ÿÆÏúúêšh¬­mnn­n®ƒ½ÒØØX[ù‹XùÝ{’ó!> ºrçÙþزޜrP¬ßEè¿ÿK>†)hÈ2ÅнÇo–8¾øéâòàx[ƒhõ~sNLÞ¼-ö¶?Ž¢I´¹þ1‰Âב>Á”ÓwðW>}„.¸‹>^ÛÞÚªñìÅ ´ÿÈilmu‘ÆÖVh¬Ðõàlkq””ÜM-¯+Š—\­}GXŸÁî„¶ßî,7ÏÎ~<ø Óœ¶^7OöÞ Lam×ëPg˜tjÀ°Ô—É–Äðß/5š‚xõîðh¿õúôhÿà¼8Õ<^\–[Ohêž]tSøç¾ÈíÖ £¤3 zhô“ic- õ>ðx³$ÄlõÅBAZÔ¶Iä•G“h²JÍͬÐÇ´c» Œ€“W7Â2f¸È[\L¿·F.©¦Š À3Á|c=}Y¡¡ýs£À}ϹÿV˜0«0cdŸƒfνÓ+/S. ¶‡ {ËA6 wz‰†V3Ä- µ²VàãÏddï`¿Ar†ëÛÐ# "zźÝô7›·ñÙoî»>}zö›!wüés­!è.ð ó†âDݾÄK|@"€×ø›Úú„8 Õn?ƒOõe)ü ø­Ýßõðz{6·L ¹†^@6ÛÀ¾7/ª3“g{$O¨ô$Q=²EÞ&»‚P¤Žü¤>vIæ<(BÚådJ1]‰ÕÐ¥éEA•M®‚Ö~§µ\À¬ïž_ìˆÆ_ìp×G(pF±È§ÏÆDFã'ôÁÙ\Çï%&€¿šén™½ÊÌ3ßÍÎöaâüÞž7÷ZÜt#Ó¹¦3ã§`‡±‹†ŽˆI Þh¸=…·¬X°GŽù‚fªH„3ŠªF1ì‰E÷ÒÔ¼``‡_l4(¿%‰û¤Sw ëð£P–PL§8K¢aSŽl¶ úEC!R pßõ•œ³„'væ¾7Vh†½ùåLÝKh‘üóÝåÛÓó‹Móÿ•üÈòÿë«+kòÿÿŽÏž Ãy5Ù. ó6:²í0B~^Ž’]߉£ [‹»½šë|_(«Üih`Ú.œ¸]¨Áñãy.&Y£z><Ý톓q »µ|È"_…Ä‘œn.¬fw0Â`**Y ¼¾èGBNçØRÓYEœ9PGO÷ÐóƒÝŸ1GitÃÕ›=lNÄŽtYŒ™ vmž×ÜJ£'ö†6ÞW€} žîâ?Ýô @­%7PÃï…Î8-½ ]GMÓË ƒ¿j6½4F¡¶€6u#vÓT ΃ž‡g¹×ízèØ 0A^Œb€è$²ŸGá& ÅÔ Üü\» €,†nN¦ ÄÃÀŸˆ‹aƪžÖ"õtwä˜0,ŽGñ 3T6£Èî‹7°’oôŸèa^G_ü£²a^…°v6º„uG€!Œ/GŽ× ’Ðwjè„V¼,4c@UA„ßs;x‘»§üŸzíÓçB·çwì®Ñ;íÞ8»$ê$=Æ@‚ ïǘÐP‡‹uùimÄOMüÜ  çâ¿uÌæÍðéî'Ûg à¾=ra@oÂItãêôèéª‚·nO¼æ«5‚ðt·OO3¡çÒî±dÚw¤Úf8oíA,z"a½y»€4ÁÇ6Á‘åÎk8뇷ª·× Gv¯¢›Z¹,1„ËÀóí‰Ñã˜ä®/AáxèF£h7êõgq“ºŸž)kûµ>5Áþ8+ ÖvxãDiÑOðtÌçu ½®íŒ>oâíe. /’±ÕÓ]OÞCäÙˆAZp’uoœöÄ?PSqJÿ$ ? 桪"ÆÁóEg|½e±pã§ÏAC`vÖäÓÌ<Dqì9Ÿ‚¡>1>Ààê§»~pãÚYR›¢@ð€q CÛl 3ùþ7Ã.@óÆX@6™ Á­:aö žÖò)p×?ÛÙ‘›Mþàøt:˜¸#^ÞàS8÷gÛ B{fñPÆ–Ü‘Øw𮃠wTëÁŸGÔÆÚ—Á(2ßqížîvÆÞÀ :¶‡·Ö}_8ÚÛë[Ù¥/½noe}Ë\Š#Ç—Ã`4ŽÌÓ x»AXógnŸ´ž(Š“~¿Š§ pAaW4á¸wnü³„5‚§»øeëWÜ6•&hÄ×h€E;án4@$™è’7I„,垦ßð´å©gÐÕ{{îÜÛ÷Ñüʵ]cëèi­ƒOçñ8÷Ç@!mÀ¸}äñ"]›ŸîŽzô8o–z=}ãfO0YÛkÏÁTúP{‰(_ÕúòùnX— ;h®DaªxÜݳ;ÆðrÔíƒ]éÐ3{Z¨ÂŠ2ð£JšSó¨gA‚ìóÄ£ÂÓÚX=šÉå q¹f$Gb)‡çê 2›éd“ƒVÉ;(H¢Â™ƒ¼À-ìæ}÷Óš…1>ÝÝB×ÈšïÍžM&*œ éAv¶»·„¡;´»ü6ä,S‘Bßã1Ôs3¤ }:ïx“cR¥ˆN»æ ?¼‰™¬µy`Ûïz˜Ü+šZckæšGy^Î'ú?4/OSxá$hËó…Ozþ?ÿ=šˆ£ÿùoÔ'} ÑÈ<7TD“Z7¡ ­pÛÔµìaôa‰nÿÁOkž|:ƒnŸèø}'==#&20ê 1íNáÂéØQŒ<åëÐIüA/ûü}w`[t§ç4f¨Ý}1´<`›cŒð)ñp.·Bz8ª?ÞM þd%— §8 xáŽ`y¼¨ÂA¬KâÓ]¯Ûݶð[¹">'®c buk‘ö¦Oe¢š¨´SP/ß¡¿ˆnWÞ*-Tñm{ܵ1í©ÌQè‡ê1G˜É¹Y__«dûúõ tƒ[˽„RÁº!½  >°‹1 BWx‚B`êY“^JÞ4T}k{ƒ}£_Ḃ-Ùü½C•ÆÔ²¹ÈBÐüý² Rú—¶h×0üZýâ 5r5*²x„×¢‘àÀ1…˜CZÝ2f7[ެäß]Øú˜«bdô¾aÆ ÒÖÔWäÜÆ0Wæ{L5þè .úÈž¬­rÂzíFvOô8Öq4ž?fU°¢Ã‘•ˆ&Ž»ëâ"¤³”íÛÞäg'Ì‚~ü ^SßmJ²ÇÁG®ï\ÍppûƆ3Öºë _–Í!<{ì(%z÷%Àù,ø)!yïǪÐþbU 9z=áäÖ4Û~ümÈÕ5Ýž*Ó¡¼»|m=S ÓhL*µ嘅$Za°j׆éé¹íÕIöº^Œ–ù¶îâ’´9F6j@E`pH2—)S˜m˜ÀÄöH}”¶ØŽv#cËgñÔõûß \¢àú¶m7Âä0§·ÖJ•”_šÆ}¼‹0‚¿µ¡ çsB÷¶¾EN¸ÍÙ#‘É8¿ÀV‘a‹“±Ä‹ÍgÂó¨Ù'ýM´šeÌ‘ðÆšyn,vêó­Ñ˜Öš®èpñêÔXøê‚vÃZ]” À¸-+ò’pŒ¬Nö r<’«âfõ[xòŠF¥W¦„ÍLõ˜`=ÙXt€Y7ÒgÐoýƒ3ƒ­y8NÀÃI®Õ3Q‡ÎÖó”X¯Ñ¡3¥ËS~ÉÞß…öxL7/áIãÙ£±LÈláG+ò\daü:!qÖÙ!×ÉÀŸQ|`Ðï;>Ý™.;[<İÙùxÚÈ8jåÔ­ëuó`¤—‡aŸ>«o¤H¹H—Îâ¾UÛÔD0Õ!=­«•tõ;¨479ˆ’N}-³øâIrýO’“†”tø‹ñ¹r (y‰.ÞâFwó°·Ìa¯,Ädœ4÷ñ¢“–Øc 'jé.N Ã0±Žôœoí}‚˜ǘÜìÚ§HÔ><æd+jý¶•om©<†ÆÑ$6nCsÅ„¹¾LrL"ˆ RI‚ÁÔ=}òîHÃßÌôy!dyyEÚ?j+kS#S‰úž“k¨ÜÁ±O÷Mu ï Š9¥ ÷iŒŽ¶pˆÊ¾áØŸHÊ*̺˜¬œqsOPjl9è½æD9e¶Ì¡®>v‡ÎÀ¹OéœÃŽ”¹9š½@äžá[-í[¨ŒT¹f4×À{è³ls|לH2&*4nEÊä2Ž&Ý¡yå±yËÉa¦‘&:Q×cJ˜˜_Ζ‚Eº1k™~PSöi[ìyvˆJ™B¥d¤£ƒú^Ü.rÈ1§]¤;-"cš ½ÛêzÊÝ8ºÀôŠ­‚<}kmC”/ß¼>;Àcž"¼”JM¤XYèdÐÊrÎR6}|!íñD€Iµº¤ÛWæùÚPaäj£ò-ÈBÓA»Ö|ëgthÂÉɰ/ʃb ]f`²Ók›)‹¹Êh8m•ž5H¼½ Å•³åPPŽÊs!ªà†Ò"me1}T&r£¶Ò«­-¼··,GµŠíÀ å¸äøH´ÒR¿¡dó‚AÊë¯á\TNšÓïÂÈS9FK ñ ¤u©l+"çY9¦k *U>zRá¡ Mæ+¦Tj× %úDr ÓÁÌ›e•yO‹Ñ‰QÊÂÊ }w\ÙÂ\š.t Þ«û´\_V"r][xúì¨ëº­dŒ=”†&~„Á£üð÷ árÂH%†éÝ`¥à„ÝͳC3of,Óí.t˜J“uÇ"|qHÑdžSäÕ/´•ëЉ0¦ °¤QõuòóÏâ§'²€Ñ«…¨%NÅLceËb bå[ۤܣ{æ½¬Ž´MÇO[¶ýêètï‡Ö3à‹(¡¸¶×ðÅóm%pk3Ú?¥ä9ÙŠH¿@ñNÒïËÛ.?ݶx,-Xº¼(›CYˆ#Å^¢"€IåÒ&rOŽ%•¦m§¨4mò›êa€_ •ÿÄÒÚú3<ÕåÝœRB™ÿÂ@ª4ŒÎ-t¦£ƒG«eÇ2w«¿XÙ_iß¿ÙÛSÈ׿œ—mÑ·É[*«•,öÌLÌ‹•À†3õ6)˜§¤‡7íyÈ ßfɲB”mda-Á>çnìqKDBDÓEã ¶]¿ÍÔêÕ’x`»*ƒôè]ˆ2 ¥oíL“+ߦêPÀ»2Ëx:+0†L<\nœD*çÞÆËž ƒ¤|Á6¬Cå“·—ÇG–TeRÇåLý<Àª‡‹1r¸q(•vp ÷BøÎ}\Q»hí¹+ípð)Âx ¹¿ž©‹›Ýð>ún­ 8²a‚\ˆmº¸<=?ø±~tÚÜÿñ©}8Ͱ9Ò <‘×µÑcmÁÃÀ:ÌK˜c›“~“8ºÇ‘¼$´»Ä3ÁmVŒ~]ȉd ceÛ^(/8§ €`FX`N, 1s©ª DÎÃ; €oñ%õˆ±³-ºý¼ÜJ•€Ö£aƒ Ðøp$8uiªgþésm Ïɂˬ=<åJ ðÓç)aÂ\r=ä…wbŠ¥†Y›ÈÖ…Nöõ5â_—6@\ˆƒ@2Û 6öE¿¼lƒ¬ y¡}0é&ÃØÂ"&— •í)gÍU­ YÙ²Ö¢ˆÒ²ÌÑ…@××V¡ÀÓóDj·Hþ­"ᬵ4&g! Nz$Ib4W½ôø:{ñ9 bÓë™±‡ÐÁç‘{¨©®·gG E¨-´'Ô ¨kš£æxq¹wÊž˜vÁ©7ØùMýÄ;¸ï€?L]Ú¹´¹g³ÑdÓÐ(‡f‘‰Ås<ÜŒ©óHŒÓÅEÇœÇtkí1Jù/´¶Ñ3ñì ×À8ðäÈèRÝÀ7hûnÅ ì´ýxˆ j¬,Ò5Ó¬d¨…¦°+&®#KöHì hœ\h>É2À¹3­ØH"­{,Ê‘¦òÏH=+-›¤Ë:bÂõÿl¾:ožÿÔÂ|¤Æj¢ËôT¼ìT¤,êò?‹Fmé>¬¸ “MA¬IÛH20›^@2·Ò©Cá©ØÑr‹=nײ3I$2“?dZÀ#P=Çkψzp*|:tªN>fjÍHM–_Ç ÔbÖ¦!Ï ³Ý_˜8é]ÒF^¡\i—"1îœðËhí_wÚãY£„Zo”ëÑ^”O/_ˆwgûÍ˃ Èès¡}7$_ô¶:Þ³JrìòâáJ!F……ÇMLm}úÜBÛ‚#ž¦œ žšD}Ë÷Ð ƒßkÇëÕaáb¼€h …êõÍM¬Dw0éx†é®Ë¡ÁÉZ_•Ö+Xüîôûn׏ä3µŽÆ»¶¸ÚìÓmKb†ö†Cõ*ûyÇN vm!3 €E¥iêa ©º³çF˜Fc$k‰¾uÁkxâÔÁÎ[&™'÷t½HúL! ^#×ÁË5 ÉSoKFTü§•RôŠ©…Fļ*·T¼Þiðeµ,c@§ÕõN:o‡XZ]ÛL÷ƒô6 (ÂðÝ;P\ÕêW¦Ç ã´Þúÿ Ÿàû½8ÁÍ_†“vµ¢ >•©í'+1Š}X€c˜c}gÀ.upD£5…Ö®®õžXý-Ce_:O´ÿÞÈíÛqðv¢hÇpæ ‚=ÀĨý­ÝKqЍD½aBZXQ'Ékê8QGE1ku½ŽÄ—1šâEp^t&F±-­ÚÖûæÒ…½,ƒXYn«Â‡s‡BfŽ©Ç3è#Ù“É1Ì{£9xEšÙäÍ¥ZÉo¢\;²ïÿš‚AŸú…“Ùûƒ9Ë0ùyá™|Tؤ}zQ3šzþ˜#ûȉÅnº¨F—XlÀkº‡j¬AÏ麕Òs˜´¦fÂ_ˆþ¿vŠ—€í§>Ú¶Š˜Ö8F©˜ƒátÐ_Êk.0v‰Ù”YᄱOîÏ<]eV€p´e‚^Là&”´´J—;$ïDZIG×Ö7×ðJ³4§hô ï¼dÄ\jl®3¿xtQÛúÔuøc¡W‰Å^›mÙÿ*2¬.Jh޳Âvv ë/eì°ë‡ÿö2A y!âFv³Õg+ÛY_'Xˆ«k2Ùž!e~ùò­-ÈAE*šUÜÕELn7èØT%†Kþ†ãmiuu%ÛзZ€ú°¹cÇ—ç¡üEœ^š ëG„ë¯óü“ƒ÷¬ó2`.fÍjÜRŽ‚} \4¼:¤¢`S£™…ÃI@º¹Ñf- HŽH‘={ÔéÙ·ɂ8dª"ØÇÏ¿¥ÃœyPgÄ#7v @ÖfÒÎf4$±‘@!çf N-‹ÖÉ,¨e[¹Rž|RJž'¾=ŽÝ -C“¹{"ª„€9ié¸&¿pŒ›éãÂu2ñÄ =Ð7bãMT­W‡oNö›'¢ïÐZ¤Íæ‹óró¼cym(Öé³H¤ÃÎu¤N¿;êQ*r©´B†OR$íì·##WhâÝÇ]QÚþÜ íùzÅùÝ“fD`PïØ]!bÅ…ÓŠG /øè)Êy€ÿ¨.5cÛóŠÓÅÈOš ¿IkE%ĺaŽ/df‹Rz‘5«F>oCÉO—£J['„£§Î=?k‡ú’Qºj6r /Té§IVtr"oIØÛÇóq¼§ÛF%&HØøa¦)I CùC)/RëJèéé’Ø81 Wm6$ÈpË”SÎ ký,³Ö[¹TýÁ¤p)]Çã6¥áY¨‹`Ð{Î=Uðô¨C¿$6]Òd ÿ¢ûg–ÓÄ-C“ƒbè@ƒÄ“݉ÙY{=Ò=ðŽÝq0Öמ…ZxbÜ]Dlëé…ø@kðÞõ×VëÀŽß©ÁA‡…Ö'#7ƒBbÏÐYcù£Ô¶Ã¡¡Òû6_¹‚jIÔ Â ¥·“¿V Ûœ sÚJrzU¾z–½ì OÈf Èp¼¨¼ÑÍX†\ò<ÈzMž`êŽãzÌÑE€1R‘xF3öMÈ•`(}'†aàÝÔ°a:j1qEð®ôšR¬XáÉmä«Dùž=÷„%Ï<²Øy y+Œ¶ŒFÈWß9|¹uáÉXÙºô•ÅzÔs=a¾¶cÔ¶tzR ™õˆÁÖ|ëýã¶b Õµ¶)-Ùq[‰±?eá¼WÜ‹õ9Ü÷üE¥Sw)L1ö¢ô`ìHî1žý2Ë#á&.€ñï9î‘7"^÷‰]ãÍ%ò:pzÿèˆî-œáõ¿öµ]¯ÛõNÛ *ŒCéC€P¢™ÔŽðbôÿ\-<¹ºLÕ€…s u'Ú†ö15n­ökÍþ{­ówÂ'£à§Óm30¯2Ú—åÈšLx4-¾ðæ¯IHæ@ÅСHŸäMQaiàÈ!ì”@a H)Ó`UpçÉ­1ôgÉqÈÚeœÉ ©³b‰çл­‚14Û†n¸tG=¾"PF1]mOëõ(I&$¢Ëèbò<‹[;æ³" •žöm:,¾¡œÜ ŸØ¢ôkÉÀ–9Z³ÇžŸž§ Oþd*æn"7„02–ÏÉSSÇ=XÌÝÎâ1)U40bà›DmYP½¬Ò`+¡Å±Ô%Ü;;ôñÜÞ.<)"‹‚@äUÑR?Š:M öìÙéÅ!ˆF¼ Cv‰’º/»y^BŒ(™J„’(*‚7„cÉñ™Á¢«@Q.ÆÌëÄÑX«5VjÈy“Ì÷É#ªs >É43•~Kýq*nÔÒIÏ7ö<Ìh-AåÒdIËÄvCÄ#¼ðRNŸaÞ¢PÑÌ%óïçí„ã‘äªËmâxáAؤ§âܱ´ýxp~qrê)âR¤f½ÇÖÞZ%[ØANHxÔÆG(¨ÁÕ’µ§5l¦U4ìãPE¶Ü''Fææñ¼Jü^Šr*¤–iÎm5ùwÕÀ@eŽOZH•–>ŽD kPŠ ‹˜ÉŠŸŽ¡h´U»ÊÍ&Cg@ÄmÀ”ÆÒ ‡„ä˜4l|¶)ͪ¹"LÒœoLÝ~‰ 4´5«pH'g¯“;&ï@–Æ\åY%#1¦œÐo‡EúÜÛVß—¹ú´Ç9¨71q¶x}xt«žñL ¯Ÿ½Å‡â¸œ ˜¡ˆ¨,ÞQŸne057@1™ÍEšKÄ c¦?l•ÊÊúÿ—½7ßkãÈG¿ÿºŸ¢"4©…ð’"Ï`À3ø"œåkÑH-P,©eµÄ2¶Ÿû÷î³ÜG¹OrÏV[w‹%v2Ëw˜‰Õ]]uêÔvêÔ©³@ï¥Q/&´D÷` µØÆ|µÆR‰_Må@ìwz"2i6Q0Õ€_/€Üáì8É0m„<^׈'‚¶^#VÆ ?Ãx¡Nh,Œgƒb¾’; k·G\bÿïÆ™£;z$ÅÞËn¦A¨FÁÖ°6oh‰ò"†æÄH¤Lç̰¡ÕÅ]mH`‰îÐ-íUHn‚kv'´ æ°>~¡žq* hÚïî¤Ü™Ë™i£·a‘‰¤ƒ<5œn€E6‚šÌñF\óžæ~…ÅÜõˆél"Ë [~2\BW@èv’tUÐYË1"N ˆeÑ"IZL“êÕá°”x>`l[¨`Y²V¥fùÀH ŽÈ~jà^ãÙÑ@ N&hbQ¸D¹å"’Øø”#¶v ;–¸_Å.—V}í×sß)8Œ‡ðXÛÖéÃz¨”ç¤8¼ OMf!c<ž*r½À¬~ªuú¤¡øà9ÊÇ/ûoûcØK"䊭¿Zœ`ê„!ÈKÔȳ…ȘAÆ»»w³ÿïÿú¿‰ Ëš¯’óqËHÞ=H׃őrÌ€ÆÉÅõ€€ã–…ŸÒY‡MLàì¥*¾D„)Ï(íÓ„Lán4Š¡Ú™’õ4V>¦¬[2X’5”HXf¯À‡0†w«š½O“ÞxÚ˜9ó^ª,²çä3s[ðÀ;ƒhMº–@5’`Ì3š‚‰“Fôp ”ï4–BŸzÜ…âYa 6 ƒ9S3‰fs3 |a£È—™xH OrÍÇÏ<¯RÒ'í÷Ð#xÂ~BÒŒ“[œ7âË ;ðØðÔxL&Ý©x8v\œ¢'jõar!¥ +°]pÏ3ɦ6ÞÁfÕP‘áZßSSsô¤çk–·˜ºŒWp7Hga„΀¼MeöBFŒU¨»’86\7D,¢‹¤ßMéÈÐãX¾¼óÎ`·`_æx†=¥ÑŒb³mHöŽÃ’ º¥‹ÑIŒø5MòIÁ¡‹Ž<ßÑzB[2㪠¬¾¨v„jå6ØþXùö>ý쪫R‚·NZèk`š  1éÍ:õ|sŸzŽH*~!Þ8ñÊ0aî\4¥kÉF[=Aº99Ò“&¹ÇàGÝ ž|äî²Û(8™Vˆ†o—ŽŒk]³tTÞhmˆ)2›ó#g?"¯VýšŒTéˆ<À¥Æ×yñ]h ï5FÛ+b½&ñ1§LÓ†]R=Ê`¨®4©æíO.`»b7±µ·µýìՋ𷌡gƒ„"Ú¥MEÖëiì Þ–omJÒW•À O‰Æã‰©k®7'1糃lMæÙ }Ï£ Ÿ!PV#_ì:TM6EÁ«cÈa܆s}÷¼¶ßLFú|+v—¤j¿Ø{Õní¿:ÜÜæóµ*ì¸öÔ½®‡Ç=I’}Ó5ÎBL…ä.ú®}SPÚ'ŒW2 (ªü^TàLU-½©pR)ªžvªÐŒêÙyÿ×êÛÁp””øÓëFõQõ›jãá)m.EØÙ‡T¦bGï?¼ÞÒRuè«S4·G’6éáé‚8 žQl¯7:€k™)ñ¬!0JQð×#MÑlÔZ xæ¦Æ¶/zÃ)¶9ÂàþrGÊ "òøRôÑÕþã«Í[sYñG¬êèàÎÍäÚ{–º¶$¤QnŸü›»;¢ÇàiÍ%dÁJœpP gþyô„»¹´©…LÝ»xû…§\¹I@N>Ýö_.Îí_ WpÖõ"l%M•0ùÄÜrÑUÖ ßi®¸þî:¼Jµ¯5‰ÆL–,&èx°®m¸Ù¢öúµdúâTÛÆš\ȶVàT\Ç]½L¢î¸ë‡ö°÷lìlä:ƒ%ñpµ­yÌ.œ^Ðk/ÚéNG“nÛ|^\2+BãÌÁG^ʹBÉš‰«øôÿýôÊöúñVsÖGumDÔÕÄ`±GÜ>êB8áÃt)[ks·z)„iu;Í_„–ôA‰a€¹Vq{`m£äÖ¨g!£Ÿ·,Åz aÊèÁDt؈Áj&õŠkr=L‰Þ91ñÆ”šFèqêïQwac0Ää„ q´Qw2éò9Pߎ+}7Þxò­áž­…ø÷ư¿Fs l5Âø3Cý|oðy¢³xÉÖvW¾ŒÁ{7ØL)m3VWž8p¿V*8˜XHtOcõùx £-‹»H¡‘wÅy­ò <Œ„¼¤‡Š…f´ßв, ¼âJCû´ÙÔä‹Òs¤aäµu£Ðý-ÉÕ«E`+ߘ:VèzÏð[Ú—ÉwºFwˬÊ:Ö¾j5ò³AB½5ièuÌ™~[´ôÀ:‰QIÆ)¶^ù–Œ´ÝPês"¨g®äk}¥“çÞœSHø#¼p÷cu†év¶ ¥åÀ¿ ?¯{Ç\ëwã‹~äôÖóP.öo«DwˆS´q?1|¸oG`Xü™­ƒ8š¼% ¿Âë˜ßüQaìlkÆ2qߣŖ,<«¤¼3™*È3þÛÙ„4TÞþ=|›Àál’¹ÛÄÏÆË6Zø¶7^í¿ÜøºØ¦ûÐÁµv™/êv´Ë¥T­6é꾡‰qï;Gs[ÆRŒ‰œð\¿PtYyÜývåqãëÓ•U]ãòôt·s#éz,h1ë<ÿzžë¦KQ…µìo(»¼\EWRcެÒëái‚Ææ¸5 ¶0¼¨+Œ"‰aDñjèxˆUŸÅ£ölÚû¦MZI©£§«sèëîá#õ댕ô䆃¹¹˜$.$Àþ·7t{ÚVjK‚šÍ€ÂóÐéºÕ»uÝ3ÇŽ4’pbTµûü·HGÙ×+³Ðd½þë;¹ƒ¢%° |‚úî¢9éw—n<ìÒæâÅé$¯ •S²Jé´;gWêNÃÌðîÚ îañ/ZÁÁ‰z€qøÆd€5ë(ïôçùháµKFp@3†œ}Pf ü³ÅV ‡ÉÀMMl(¿zþüùß\pÝ9Ÿ$£>yÿ#7d¤óÅ‚e*™CNßõ˜›@1µ$Éä$D'îÐàÇÝ¡¾§xÏœ¦QOðË1' dÒÕ´>érð™4žÂ󒣤d†Ðõh mS`~½×3òóߎ‘åacŽZSÓá¯%üfÝIp‹‹¢c ™ú£ µÉ>÷…K¥5·¸t1IÆNÿQ»YÔd„¦ûÔöÜœ“? f…YQV¤=q’¨Ûî‘7§þ»ò"äŽhŒ­ ßwªçÙQûéõ4¶iÀôt€>9ì'’£eð âI‘g@–íÂa×jq6=²TˆUŸÕâ`zצ‰s }Š–a9,Ú‘Ž K ÝäöèB+P¸ÊTi‚—ñ`PÓRV–i0rÇrÉðP·0GÅnòA3ÿè&‡p¢…9Œ‡úÝ~Ÿa—†GNß=tÜ©‹”¢ªR\r*zrljLz¾¤ßŽÊ$Èù,4€a¢Í Ѻ,ë#èüa›½qLŒðÅKõ&Ø=eyÒRô„˜ GÅãèçØ{ªð²ëô×&æ1‹`e47=£Œ%™2Oø,`Cü&<ˆ`P`$YŠ&àùÁ(™•ú`/Ž»,ǽΑ°×ÉaãΫ;ž7Qƒ ºƒ„£/°+L–¡æ9Å©_NÂó(Ç[‰;°#†§Ú;òJ†:x•ýÑ­%L>fÊBu‘Þ' «?²²©~Í< zGR­OÚ!)“¸þÂ"º©$ÙyÞÖÝ£†S ޥܥn ·x«hI«`ïˆó¥ç0LµÍœp¹‹^8ÁÍ%wL{ƒøŠô¡Ss" ÐãK’™«@¥±H…Q®„QZт䵥ª*!tNbRÅ›Kqß<"OJoaOÚ…õz èšõMÚƒ+  áf:tþ•=¸¼ž»tt>Ðwù(Mà»#ÄŽ¯ñY"DnIû‰îºhÞç6–´êµf {™56äb•õÄ2>ÚÌnLP°—É©C$&m^’ÒàÃ˸RWÀZ›XdžìO=UÃ9&¦\:0ZlÕ8L¡5Ö#_ 6 dh·Ó¯¿ Ý£Ja4T‹†7Æ8¨¼AÛØD}:&rdhücòôlÃýÆv†(%¢Î§Él2ŠCJ¡>­:lM“±VÏE¡@ˆmZ•›5e´çåã«à+å« >wZ^ïf([‰\ØÄ[¼ØÜ4ŠÈìêI@Ëñ‹c;á8ñˆGjà,š ÉýÁœA”Ú¤4z <OŸ¯ÜNðú-Ýÿlv†z¥$ÒæZ{½Úéu Õœ}£ÑAÒ¢_ÎQÞi_¾2ÏàAGO&s&í ” ŠÏƒßãsʵbçÜ¡æ]Ø ÍîHÌÈÿ©‡v~LîP~Û¢–PjxFdU:TF¼”U$ ë¹êuö=ÙŒsmâ2ˆfކÕ¢ö4‚^{˜s%­¤¸7ˆçWèñD[ :ÎA8û FE+’…ÇýÃTȬ¤‡póµ_Ü9OTå})*­5ªªÔ)­=þXQOU÷4¤[#/|®| ÓµE¾§êpPªGªRî½õåáãLÁè®™‚§w-ˆvæ6Ò—»Ìƒ i‹Ód­¨K2ºñ©“bŒ©øûB "€hSÂTûa#ø¯ÿüýïý# Oêr·_ë'i˜žæ:VVV¾~üXÑïþ]*G¿ð÷xõÑתñðá“'_¯>yô¸¡V¿^}ô_jå3ãQø7ÃN@E;TêÎÉÙz½àp[”ùýù[ø¢~ÚÕ ÃYtõµ{ÃýÝ­öæóÝ­f™)iwKÒä!Ø?ÜyÑ>øq«y2¾ìž ´<ÇÛéÁ ôÓ! ßÞÆÁÞ_÷Ÿµš¥Ú¯'éuÚ™0Bïùe8êŒgêæš8ë tóe “¡ªMzª ÕÔ‰«ÃDµßkÃoÃ'(m%—#¡RY"¥<á‚ 8šÂÁ3Fn–Ï$5‰ÃW«¡AA³Œ½ /ã %¯šf†[ T§Àh.G¯ ¶?óÀBc)è[¬V”R&PÏÙñk™i»ÛlîdX÷›dÑHDV’3Q¬@g:i#„„dkCC'A…gåå¹¼÷×gû-­8þÛBÀnmÃ-è¹sAQOKk~Ÿá¿×è£A)l"5Óúßw¢HÇä{·tç‡Mø3øýé ½}Ð'Æ©KÅG.¹'Qr„^tĿҋ¦¶\#(5Þã”våPÔ÷pØÆÁ £Â¯ïq§¨òÖP¥ÝˆÿM«D’?bq â^µÂùëÓêDØad|­­rº³ÎT:†zŽVò µC½ވ/Øq *Õ¼‘’«ðθGD±.’úrx^˜É0f¿¡‘ðkºMlÂR«ôŸ3êïõgΤ<ñûÔqËùÎKxþûzåÉÃȸÒxôðëÇÿ¥ÿ>èøÿËÏÞøUø=ê¸iüWW¿~òu#;þW?ùÏùÿø[øB‘Žÿ ¨ü˜¦Ú0™4Õ)ŠIÍĨ³ ¼Åð6¨/[`3Áƒ»Ö£:½V/ö^Y_­«á“o%€¶‚9™!û!ˬI‰¶´ï æhÛ‹òO ïGÂåô)•…Ò›°1²)Åâæ’j|ûíj þyRÅÇoj«+UõígZÚDò9”E¬ôº3êh8âóË?¢“',­ ,×i+À ÊÔQèqm½ÚØÝÜhm7뢗§t’Z`o‚k)˜h»†ÚµœWßÿOëû¶86ù*§KêË/ÕbLçdtï°”¬³#ˆµ@)› ^ö^íîn¾Üjâ‡u0‰kÂUÏYÎÿ¤¨’ŒÊÆ]eL$ðF«ü¾ñU©ü—ÒGQ\&<€SºV!Ë9ôÅprÚb~ŸObzB!èÈègªb Všü­ÀWh]“`o¿ýbwÿY»õêYë( s·âГET‹©%KÐNÓf z³°y–Ñ4ûjy‰šNà ¯¢Dµ¾.yôWH â4êtŠÒöhЬ•@F†ì&¹|‹iä‰ iTÃÌÓ>=¿VõY:¡uÍÆ†!‚Dv«Y9þcþ*¦Æ²<Üö{ï¦ Mt2©·0gØu†­‚Ú‹dóq5'迆{DAã|’n« ÔËІɗ[u÷PÛ]”¡âúDý==íºø;¬‹gv]”5RRÇ4¾¸H(wé§¾{¯¡PIé6œè'ýZòæ/!œ°z›ÞÙ/#úK¿âžúSúIÕ"€ãQQµø¥¢—ˆî¨w‘fã¬sZ'Ž ü_×靯Çù\2XØúN“îu³cÜäR¹Q¦ÕBkØÃ1›3²…°1vN£¤Öà÷øx1\>>^ÊvŠb49k–ëòF´cõÊ€Ë%Asy)x k‚L~]’gìS›'Ù|á2g0¨¬ëZ‘˜˜çyàK(φIÔU*Á ´¤Çig¶Oa=Ô:f°$“΀p€žå@ 3­2@|HÈñ,eïrÑàÝÓ¾o—!ìMP­ÝÚ>Ø8Ü8Ú?”íé‹&’^3‹ü<´û,bL —ëøOe]=§¤2þ»®½µÜΆ‹ú=uˆaí^>|!Ê UYǾûÈ»Á‚ÚyÞ‚”‹…t¡Rù4:%ý±7I2Ž;ý4ˆ‰?kc(õßU±Ÿ6[FïtB=Uq]ˆˆž?é ˆ7 qE„õÕ :dïwzª½Ñ¢àuí7vÿÆöÏö;Aº¡€-ð@ÐéìŃì‘DäF›9@±Û9ùãàG,‡ú!d DLh¸@b³¤J¥z‚âýi®Â¾ÄëÜáw“ä­qcŒî$aV\šñäÖÚÈFŒå$mŠÃkôHÜ x•®ð¥­ùõñqýͲZR6|§¶L‰it·¿2ü³®èÉG¾ûHÛP9I6(â_7”ÙIv3áÄYñc3¤iÂ9&&G½¼¢3iÍL§ cP’o¹}¾ƒ¦W·Ï‘àH8Aÿƒ t82LØÛûv»›w¼ïþéf÷æþË—{[Ó‰5õ(›='äwÆÞ¾ôP9+øªlZ‚ûÀ•»™À5¡K|÷-%§”)¡‰‰ûuÚÖtÈaV¡¦Oh_ŽÍÑ.¡¢Ó4 ‹n<•ÔÓ/W‰”ÁœnUz…³Ü9Ñš#ÛÖ#UDs•;d–Šºöbž…Ð aía¸¢^ý¸³‡ìËLçg¨êÂ0œB¨úˆ Èj¸Â\µ*á­)!TÂEe½‹bˆÛR+>3š†Š‚Ð”Œ¢PSeq±Â:‘0I=#6JñÇ]䧇«aãQ¨'ó;V#Žg{ï…ÿ½ÜØÙ¥d†+Ú@iŒ®ŽËïË\Œ(2,öòEÈ©E¢Jò,)Ó¦B‚ëeƼk,W>h5š•2l]­Õfå)=´<ÌâÁr¡ˆ•5W2¸ÁNú^™¯(ÄæçáuæqƃмÂ:Aß°¸97!àæË!á6ø&DÜ|>2(#¡Y 0_áµÙ¯`âDlÀB[2KIϽ\µäš‘}&#åÆä Ë8”BF¼â´Ò|’†€¤`ÅòAüu]9üÍÄ}ï¢|ÎHøŽçÀQÒn4KëÞײûVÞÝÙÛÞÛ¿!GÉ…5¥DàÖ±úëXõê Þ±B>.A·8¸Tè 8u È”d¾¯zß¿üRŸª0 Oæ@S_©ÆñÉqIÝ ²â Š9±Í#Æå÷®PPhÀ" íÍï÷ÿ0iìôW±-;.ãϼïšÏÉMò”: ž;/†õÄ4þbËÇ¥ŸŽ±§Õý“¼—Ôñ±ìå0<™‚"¨[t)»PË‹‹ª3J--AæUÕ"±¡N ”ÞJŠ$¯´Ad‰ížs§šâä¾’€Ãë—³Y´æ vQ£áTx¡’Päµ›prb¾ Åc™ú®"“üiÒƒÄZ`D° Øá¨ú2;püNŨ ø:eóMÂcÒIeçH ꈜb´2çA§rŸŠèÁ>rA‘½{ì#‡‹"îXÄ h¤Fùö^š$ Ê^2óÑKÆ Z%ظÂ=xÀì§/ðÈ1%¶Á©‰Z3r«C˜ÅÓÐeU›¦@ñì$”¨EwBÊÙî‹ ¸Ô*NzTvS,ê22p‚»s'$É Ê:‘ÌKîõ>¥y]¯YÿOé{®é®Ïg°Â^ïõ‘•ÉKù¤/æ;ìÑžLLÝ<Î1ç?§ùÿœæÿyNóæÒXw’ï{(¦2óܯ–ô?DëÃljä&™(†À—“O¼ˆÜ–r HËÒ™Ž;"ê†)~g_V¥ KÞöœãµtÔ¶ùÕd<êüv)÷¾™Ý¡£´˜<Ë3¸R˜ÓXÍÆg“¨ËÚ¼æQø0|„·Û(˜¢ævÔ/|0ˆqOùšý¬¦ÝÑüål4Ã(Xw€ï¤Ì#·LØITˆ;ª*V·ìGöZlÑáH•öñBoÙw7;µÇ²"ÞF?õñH+9£ƒ)=¡Mh¨K΀P`:føxp ö .SF ðCQ4 .Ô?r¹©oøÿBªß»óµ&:Vµ`™ «¾A f¯x‰ãîIœ ãp#c q5©% k›»;›û»û‡íçû‡›ÛMõâpû ½p3¢Õ Díåñ²ó´ˆ<å£uÅs¨íí#.'‡i®þ‡Ã — 2ǼV&[¸å—¼d}ÏÇÂrÃHÖÊõ è½é LÝ)äÙ#­h¢ÏA˜pi!Ø?cÏsæªÙŒ›ƒ©¨QsÀ ~"e)7‚*_¹EˆfË|T msjÂ#¯Ñ¡ ÁäŽ{èX­”p2—H‚—HÞ_MCWÎ)øa–¯„‡÷(Ë$öÇ‹öð-p­íqe¼a@ˇ³e·¾nu×1…8™’7ôQŒ²rwìUÀè³ìJÕøâ•xüº|¤ýN=fÖº2xô¢yƒÛ›T ŸÖc€”´I/—çxÕ·Fü¾§¸á£@ºÇFäbrâ³\­B襴^©›#~¥R?C µP1€,·5ëê¢Yª”%wE£•–¼<Œ 7W ^?^Â\7ç¸ Àñ} ]¶× ‰éù bÚ®ªÔqÐ=®;Ãs¹þž¹òªoÔùùþ|Ĩ0bäÃå;g¿#à¥Û@¦uÈÖ×ջʉŒ\~Î:7÷rwoóÙoj'w‰f¶7'>Ú³Kf9Èê¦íh]IØfQåµjº œ ,QÐdÀ!gȢᶠc–ÝH_ÉO5¬~ n†,ýHY/™Å® à )³G²FÉÈfóÅw€Ù¢_ñ » ü·ûj>ºÈúr^ŽbrEnª©Œ>0PPºžXáЕ¬Ž¹G±­9ÿ!ð"hû t/"øDq]ˆ¥aúŽŽQ†rÖ1"×^Ñ}eþ=&ב1ôËÙ$¹„½WbŽÍÅÞ¨«®ë6ÂùzŒ~&[º2l¨$³ÛíQÔ¿@ÜÈ?QHI'CäCÝ´£P›Ÿ¾j®®››}NB¦µ±:W„Åò\¯ÿa$•aÙÖ¿j—Q¿âcÅ6ÝTò—RØ.å°¡på\m¾@;á¢ÑF„Ã6+Ê;Œ±¯°–™8Çee‘VÅ«ºŽªÆA‚DÀÉ©ì6Pž‡ÞøÌ‰•ƒ°ˆ°ˆ´ÜŒËl7ÄJ§6>³Š:à€Uyqq‰ƒ"=wG«Xy·¡¡Žr:šÑD`e8P.Μ2¢©gHC‡€ÖÔâwªq’° ù”·$…H“˜!nîª×|7 v÷_´Ÿo½™OcŠwŸ ¥”·ÑÆX^91º@TAÉi1Œ¡T‡ÌU¢éê޼E!D i€Âù«ìm;‘kS'‡’XØ;TØáó†Çá±Ç›GŒ‰H Y­jHµD)qp¨k*}lÒ¨¯WD&*ÙÎѳT~”Ѭåû8·˜çZ©ü°ôѹ¦!§oÍì{9“=0"篹påªç£„ò*èËô‘*WÚϸjæ³­¦‰.õç¨wÐ^šŠòÇ‹²yM ÷×ÒOóÔ!:ïH‰Dt&í¹îK›•è´\ †¿¡è7ãw“t:»¸¼ºþ{E²înm¶š•g›[ÛÏ_|¿ó׿í¾ÜÛ?øïÃÖÑ«~üéçÿ1YjÙ«¤ìÁ‘¬ÝþY õ¯4V>züäëo¾Õ@¢Áh6Ô v=\ˆ„Õ‘s‹]քؽ.¾ŒÎg]u³:wʬfjî€õí.I½o«Î7{—\ºbQ÷\^°sUôésA=àbØcµª——Ñ9 ëbãÛ‡ZãÛo¾]b™xÜÅp¼äÚ3Tj­¶ðŒ­DMLÿÖ_—ßpcëxœ­¨ï¬@×çrèHm~˜k_Öêú0¢ey=•ß5/uϤ&É8Q¥ì y¥ G­ã¬(´:Xª¯7ŽW*]0µã`ÄT3ý¹~…Î9zÎþêJoò±¤•é³÷1ÎöáŸu¼â¾°â€ér ;κ»á°* ŽáNo9ÄÛÏ kô TÁ@a¤ÝIùQ”HP¢ Ô½¦³žNOóz ¢“ãZFg¨×NÞm­zhN9fŒ„oOM%ú“'c$!ýé^ÝU§“êÚr1¢{ rοc`P_¯¼©’î2ÉoÑ n®~%Æ{J`Ù÷oHð‹¹Q²8f籠YSC²ô$µmd B2Ê6Ä—c h³±8Åн&¼O¢^Ø~P!çB¼˜÷Ó%lw¨J,K²3‰ “N˜©¾0ìr²"WÎâÝ2áY35Ú›MRlhïÉï‘Øœh ¥+QD£{ŸÚhyIK»8Gåêú¸SÁù§ŸüÓzú§×¿´]âÍŸÚ:«”1ªpÑIÏ3Ø|õ§ñø¦:o¾Î k¿õ×­C–ÊâŽøõw_®¨ïìÐSâr£· ö"ëáÝM¡h y'§Í|šªÅÖ‡ÃÕ*yg|±÷ª¾ÛÍ®–äÎ ôirÛTl·,´e†ípFðй4G™Nè‡N[×Ô95mÁ4¡z‹ÁH½8Ó2Æ=õ…†â¢†4T§S™—Û/÷ÎÔÆ„½Ú\Tp´æu¡íkt;§ÈÎÞQÁøôGÓ‡çh Êe«éB©9^íí@¿ÀlÔ‡2¶ÐAö‘×f?îm—'Ì>X¡°±ÁEÁðÝÞþi{û§£öóÝÖvà$¾Úvd±ëE<{µ·µ»}¿;»[íý½¯_½ÜòÙT‚îØ´I~µB,vØdÍñq<=ÇóOry oãë¶8JÅd ó<Œ“^7º¦¢b˜ä¿µ'œ}h>ñ£¤ããÙaŒ{&¼ŒÍK»ŸF0–ô,»»û›ÁöÞÆ³Ým4J¤¥¶³)]‘O§Îd’eìùëö&ªuøe²Ý‚[û›-?7¥¸Y^lîÿàg¡7Ë«g­L¥œäfÚÈåÙÈfùac÷¬•-?›I¥¬§3Œ Ñî »Á;{W%/?Sâˆòìnÿ<ÛiA³…ÆÃ$$B]¸«œt÷ö÷wŸ<â_•ƒý`ïåöÖÎQ°Õúùå«£]Øyövžo·`&c–Ã=ìîµ[“¶¶i{ëÕ˃g;{þÝÝ žãNlÓ¿ôOk{+À·¤ü{Ë,™ðsg<£‡€üßa~<ü‚™8 `@ÈÀJÂ*ƒ­Ý]zßh?ó’øycs3¾ °ÒÀÿÂÛ‡í—û[ÛÒuÙTêD\ºþ¶77ålÓ(ÛææÖö–¢#Œ l¼„´g°ãµv7Zßó«@àgSÁ»Y‹Ÿ„þðX)l€i‡ô.·„Û¥—¿¬|øÄy6üÿ˶[}{kûùÆ+v˜Ïö[;G?{‰øò!1M£ =áïÆK`è ˜¿¶»ÉÆï¨LH°ñãß})þòo€tû ØÙƒµI+ôpç }p¸ÿâpãe@o¨¤JLÌÎÞóý£Hò&耒ô€g°±‰a7ÐóVxˆ`óçì‚;.tL½[G‰M¨öȼjl i@éÚdpdzŽyrñ3L¬Ë4ŽøgO$0>Ï[J?ààM1¦§>RÞ`œÒ¿Ýþt/úøs>ð·?ê%”œtðøYrþh (²ôÆ~ZíëuŠ$Á‰¦‘þE7²ڔØtü•qùÇ€h”â…o›î/˜g%þ\øW—SËó{Î0Ë>fyL 2¶tœ¨Ø-”™ä ¥ ¿Vá­ÌÙ}ur ¥FÓöd†QI$Mûlë\c{½ìEˆt&mTŒ4P¨›Í9à P’ÙÃ$ãÊokï±ô1ê_µÓ„z’ÞÏF³6%zïϺ°®Ä]ô­NÓtZ¿Gi4ÒÏÐ%ö嬓\˜Æ%ÓP’íJݰi8¸Ê¸ ’¢wüé eì¬y-ht0¡p3î‚pÖ‰·~&ù‰–Ž¡SHz‰ =.Ø{ô@ÖQ‡£ÒÅá´ééL`N_3Ð*¢‚†R˱ŒÎýiû<Œ›æMLzE*€“l„®ÚÏF¨h“-—šÆ€]ðØêX,„ZŠxfÄÑOQŒ)‚+OBÁ.;'cÙ0I¾IÖây…£yßôÏÊú,¹·¿·ŒaÒšøÈ͸›I¯ï¢´tÖË¥ùt ™V¯à/¦&übm@Xñ€@Ç&)$\™£»js0Ÿ¾N Q¢õ‘õÊkƆ:3e‰à î¡Êq|5z“~JÚ!%r³¬õ˜Ý^©cÌ7Ô™À˜ò¢yŸqD‘¡ëxœ¤Üë§zŸ“‘ ½ž]›#&„äðAƒk³P|X@3;ä”Ùè‘Fg ÙMIz^EŸ‡ƒªŠ§•$0ݘD Còtt.‘i{ ª9¥vqT™Dè9r“ƒÎ·$2u. %oVÊï|$ŸKšÚç>¦ôÕn ¹ ò©ân#˜É@ÂXÑ› ~q2~¬8’[ º ’ÙºÜÏdXñ÷9÷+ eÅÙÝO’ZñwOqof>ò›ÅµÉut”åíP+zcÎåÇôŠÞ¾é+Á…¼³{I¼çûIi6…¹„¢1¨X^"‡©Ó‘û É@™z_C¢ƒÿ5Ùþ°#['ÛÒÅûÓŽ/(ò¬„'㌨–%ZXU´oêŸÈA§UŸ!yŸTçêш®±àq\¶õÚÝå‚õÅmKÌ¢h«ñ¬KÈPóϨ$L‰¾ 8´^ÿÒ|³ÜäûÕʉØ5—¸N)ªì5“ŠÆ V…šúfìXÔ DÕ³ÑTm^þîúH5Tž-½ZuûÑÙ(IIõ0ÁX~N£ôxdX£mÂÈ ™à„_yI«/ûhžôƒü.y}-¥¨‰¢¹ìÀs_œgûhžšË YÊ•M\)reöžôƒüfð³ü…FSt­™gûhž ZPn´ËÖ讋Í{õÞÈE““à<ÛGó¤ä—ü¶Ú­^šjÑæÌOȼÃk;/ƒûâ<ÛGó¤t7:ìH¾k<ýmË7s…$2çb²qPEùgûè÷–ÎÉ]¥7ŸeŠ÷æ¾èÖè|ù¦8äÓ+~÷_½73’à<ÛÇ|«t=¶ezÓ]Îâ’KÉ&8A§ùY¼7÷Åí#][A?I¬)¨ßL£Wƒš0_eóUmY—ÑÔYnZc ŸÉœ³á×Póo¯X;Ü»ÃCNMR»8}ýKí«Ð¿Å*)ïÖ^´z6:«¸â¡ÊÖ”[A¦¹mÔ»h:rÝáêà8xòeR%­¿TßÔÛõ3é³Q˜S/ïø·\ Jr†óp*Áff fx›Ìg¸þlr.9vxË™––‚9àx*ªTUE0ö:ì:6‡ms”˜)E¬ϧ̣~’ßÌÒá̲j˜¿[vÀ¸/öÙ<™ùΙ ¦:qtœ;óhžôƒüfäR‚ ó‡Ë<÷Åy¶æÉàÊåò¸JÄί_î±(¥êª5ßügYþs/K¬ßcUL-8–HÔ'ž]ö˜bÞ³ßùÝìD&É{s_œgûè•×òë¯4'^nV²Š\iÁró\гšÄL&ÿÕ{s_2ì'ó¤W·‹a~΀#Æüö—–d¥î£Öx¯£¼DGá‚̼Y ¼°s˜@QÁpäÎM'[ɹÙç.¦÷ɲà<ÛGy:Ÿ,¹ÕEìBLˆöÙ>ÊÓyZ1=G½JÝ>T  B΃üúóÇJ25&òlÙ¶æIš-Z0f"(à"¹gûhžôƒüf°‚¢!–]èÞ›ûâ<ÛGgjžOMƒR¾5VºBEæ½zoî‹©Œßí£yÒ~»Š¸éŽ˜g9ƒJ6!óî¿:íç÷³ólu'9õ ¤LöÙ>š'ým6Õmf‰Ô² Ö{s_œgûh‘çÂyÌYEù³æÉGR²1Ž"ËZv¸/γFE2b"âI]¦ðÕ{s_ÌÀò»}4O¹vè L[´|t9ƒB6!óî¿:sŒSÜÏγÓ#ºš‚^ÑA.Vøæ¾8ϙ暢ÒZ#i\öAgÞýWïÍ4Àƒ¿–ïÚ²sS² ¶+Mšÿê½¹/ÎsAOœÞ0bèå<¢iù$wäMj6[æÝõÞ¼þ5ˆäû˜EÂT0ûhžôƒüòß/R–;DÄÌËT÷Åy¶æI?èHù<æ£s!ö÷&Þ&™Mk½±ÃÝôÆÎ¡r”è ”©ðÍ}qžÍ¨Ñ«y‡#doßn ò˜{8]hnBæÝ­’“¼7÷Åy¶æÉàg¯½*ssJ6Á iÓüWïÍ}qž} æI?È/ÿøSÒG–g¦鳜oTAZ>ÉYª65›-óî¿zoYpÎGûhžôƒ^>úùe✵²æI?È/ÿø½é—¼SPþÅy¶æI?èÌ=ÂÈE³öÍI¹Ó³NbæÝͶڽ7­w‘0íº-Ñf7=Ÿ5—’M°=çÝØÏïA¾¾÷€ÌKÊ¥ä†ÄÌ»ÿZ܃RŸßƒ¢V°\€YQbAbz>k.%›íA©s~e‡«û;À2Ÿ²zŸç~¹©ØœôùE Sçe/H+ΚKñ³aR&‹ÿZš'ýÀ8ˆ–ÃË¥ÎýþÙ>š'ý ¿~7¥ž^@êé½¹/γ3iÓS›I÷d:WWÀ× âb·$ÙšœÔlBæÝÍAp_œgûhžÜ¢ò›éP{éW_ûi¹ E‰n¯:éù¬¹”lB$?‹÷æ¾8Ï>óÁ ²ßž‚±îëqq2½‡_¤Ïú¶]Þ£©S j™iQöÑ<éùÍà0q¤A¢ö¸ìÀs_œgûhž ¦“9b«0Ç%æ¼zoî‹z·æI?Èo¦¥¶>i­Uà[Î`”Mȼû¯îL¡÷³ólÍ“é3[s¾ßXë˜JdÍ“~_þñÛï*/Kp’`“qží£yÒº .ü‚V\`nѧ¥‚ùgûhž´VÃu6QiÖ3ÏöÑ<áÃþ]ŠV‹^Ó@é2‰›Å÷¸[¦ÿ7Ëb)ûÏx³L"®ß÷^™ê“o•³ˆÝ)kùQôvÏI…eþ´ˆþ3©p >ÿ¼²ÂÞÚÕ—àWŽøÊ%•Wú" ì¼WïÍ}1»Û•½½¤Gó¤ü ÇÚLÈvck–½c~BæÝu6Ü+÷æòŠï.ͳ}Ô{”cÆ‘_®W5cÓ!åæ½û¯2œâ¾8ÏöÑ<é‡lÇÙŠuÏYs“å,r¹”l‚×_œægñÞÜçÙ>Úδ(ä{“½\{¤Â]¢I¾¦ŽO,Ù«kRV«FTÄéÁ$¦ëÜÉŒk˜¢p=ËMKOãÑ:­GNÍæÜü „ÔЮÔó^©@W½^©}ûûlùõ>]]VK·ÐR¯BÝE\Q¥¤ é†ÍáîDšæ£ºˆƒ¬t&'Ïw~z¹½&q#Ð`h“ v¦£<¨‡á ·<ïgíÇý½k-A 0a"õôªbõ’ªa2µ;Oo?²CÅÛÑv£ÑIj1è;aM¹Õh Ö0†|=dú¨ÊïóŠ/ò¡ˆÝÅOîä¤!"_ÞÁÍ6$¦x³VcG]:ÝõÚõšìxÙi3ì§ìqMÌWÐìËiªvêÕŸÛ×,2<µ‹mOõÆ:JÌÚ‹¦ÑàN‹=¾ WµÅf*7 ê½ Â;V.¼{B¶s]c¡gœ/µÙžR ¡Îu¨Íˆx…?pðäG$JZ²ä(X¸:ïÇÁƒZ³ß9‡fÄ'þ%½s ˆÅýkAÑ ÖÊ3ZgJtqE\ÉRA,,ú+VB̸É.Šè5r€îµ¹¹“G¤j:‰È+JdÔýÃÂ2)–ë–²u\Ð?IÆlärØZðÕ°ºq3” Üè ꨋþrŸ¸.~™9¡]ò™nsÇ/¦),ýü÷‹ñâÁµ×K¦¾Àè²zŠÕ™yé¿›±-¡KcJžçÊ‚©È1`ïYЗx±JNS0úT– Öª¬}rÖËk/U‹™ú—pËÔë ±†ÏÃô¬YÒ":íé,Uò¥zŒtIR*–àú/!ØAíâY “:,=œ°×_¿;ŠÂã”§Rð¨ÏÒ ”qåÒæÀ\0{)®’=Lv¯*û(±ÓDÕt¿)}`x­ÙÈÉÊñ]ª7I†R 7ã­d†‡Dýµ/¾bù4 oÉ)nÙl|:;;cÜ{Qƒæ©ÙX½¬]©³î)æßFòÍì\ ´\_Ò¸~Nwm1?—ýŠüœvìqÔú˜c}¯H$.͓µ]~Ïù?bü2àß› ž877ÅEŽV§89;÷+‡.\%íRHèÅìD‡(„ÏÞ$164EÐìÄε?D×žÈ QL@ôxqEú§Ï?ìõ-;f!'[´âO)zíQ¸ äÙ:IY¹°‹ãKµ/aoê¯~‚#Ž(Ì6OÕwßµ76·÷Ÿ°µ?€Šu *v•‰£n4ž2Z£k;t7¥(8ìÙ4 ‚Wˆ0´+ê5#|ƒN“_ÿ°qؤ`KøÀŠèúþ$ ½À®j1ϪÚÜ„ÿÈÇ”ZªÊ–N[òj¨T+Ž¡¹h ça7æ™zL¬V`Š{³F6ØbòÈÇDÇç û\ÑŒv!úLy£“Î`S:ˆØôþ\;¯êYáýuû)Дkfè3‡úéOå(¤­…Èø'SHc"Xt´³s-–÷AX‹$¯^tå‚°©r W%fŒb¬C®§öCÕ¹yË·BqÄvn{jï°8)“T•ÑA3U¢ëƒ&š;ÀÈVôôMMcÇ\Llòy}q”&"„ôñµØùvß`ý›X­gØÏçVº%µ³¾ká~£j#`5®Mû¹’*±‚ˆÿ4X -ÝÚ9Ô…z>¿J8ãç×Öñ†l»Ç'Ðo‚ Ð×P?&÷âFµõàpV5uÒ9ïO¡À­AÍâ2LÐĺ¹` æþ½&çž÷_êUÏØpÛÔ_XsA½Û·WÌ9 žïEUè×cR…Ý™JeëZ§úØ“/¡ª*ü„Njص‘ú9™‘Ï!1AdÂÍòHˆ A×ï5¸bEâ=á“”*í‹ £*Û/°Ã|¿ÿr»”ä9ä8%÷Ùt¾˜$ƒ*‰Y]JD´ óö1¨ÄŒN BÐú7NÑYr&%þá%”ã/>U¯eˆ°¿xÄÓÂ’Lêa#€ã_1€Ô@pl ¢ÜW\XŠVyÂ)NßjÉ#@PÀ„07çØ+(‡ÓóÝ5 _ŸG “.PSÂ6oÕxð:ÉPåÙ¯h¼x7a›Žéš‚Q¾®“tq¿×7EnçpiG¿Þ°)¥eAè:%3—ô•óuáLIœ±£dT;ëtÔk×Ãp=lØêí°`‡†ùž$#) .ß>¸ÆÝcîïAqÝ9lèÃ#;ÅnÒ™™°ˆ^QòŒå p¶oEÂZ»¡vqjÅ@ÄH(3¾h²tðYº$É.üóKrwºÅÑدï‚¶‚õA‰nýMÓuâŸ![ïEÿ¦B¢ðš)„ ·7J ʨq:¯Œp¨†c=Ö BMèl¤7IÏò!³Y*2ð !ª|¡ÈÜDB‘ráyàD%¿õêyœÄ´”w„–QG®8ñg#’›è”d4^ÐbbLþÃ…Ú“¬–\ln–ÏÀEm޹”ó¼>›ï%¬ÛŠ¿ß:’–‘(´Æ¢Pó',Á‚Î'ˆ.@£B¯ ¦¬¢Û){,ÊÜJ¹ßŒ’s­”ek—8æMÉc¾q#ä3ÊZ‰¥ú"šÏÌ•}ÚKá¬õœ=pHŸi71¼ÕÖ kªà€‚ÔÞÕ”v_Qgå ½?{€žoo½:Ü6Ë–G­Œ¡?.’“DàIC ùÒ‘ÝX6ùusãðÅ•ƒó’Q`ùÆ-Ãlw<È"ñÂc£VËã1vq6ê&kâ˜ò‡f£´äµÄ‡s+%yë¶¶fÜÖª¹ÒU¾¼Oñ4gÀ €·ñ{û~Uƒ‡ÚÑ38âúnçæx ­GÝyÔ½c.ÁÇtî&< œú"Ï’Cç"|¼ ¹£Õ¢×-ñ’K:<1,“Yd˜ßxâ 7ñ8¯›{Ñz#¾ãäÒå#t,‰Ül!¿ºÙâ”x—âèC¸&x Ú˜p€d&HXÔç_óµèAoø?¿UhŸq©.ÊUÆÙF<öЀ’ú3Zû'ö'SÁØìÊVý ;­DGÆN38øà.¯Qð±Ñ½a!ǹ"XÇ¥ÐWvÅ¥ÑAr¾BJ%±ƒ‘£Q能⯈¤“:S”‚»ñ ’£e§ŒÖ¬³åùÃÆåqn='ÚÇbU·´í­Á@¦•ÆÐUH¢©Xnf!›çÏε通±-ý–’G>*ù!¦‹B8£0Ä’ø‘h0‰'=:q“ª )‚”$fȨÖúÓ_½Ùâs¨¸[‡¡á”8výI¤=j²¸;›ud¸áWÎÎr›¥7 ïeq®Eý«{ïnÂã‡ôbòèf¹‰è¸tÂÈwhUEo#Ují£SÙÒKÌH åhSY¢ÐUm37¡Eôl4« ºNÁ(Mñ#R·©„å˜`¥ä<òP£Äi±ø$Ì$õo+ƃˆ5·n')Ì"Kûnhƃ‚vR=x×ã]/.92νµu2 4JëH8N‡ªTÜ1†-ônÁÅ×CüK{ƒ†L"—XâT\››Ó½õ3œ5—¡7ˆÎbˆ'túŒ‹Yª*ÕªÚîw¨ý<ýSì T# Ûí¨q–iô†é {Ãja­;ÏZ:·+g ³EoŒŒŽFdðô–×.Û±üâ>-,`"—Ôf}ó«¯è0IðN&É´fç;ÍeI‹2˜›öéNغyíqA1NÎH¸8ÀGt+¯?¢g퓟ã©Ú±ØiSŠ~¨àUÀ ¶Ç%¦)a[#Ý–ëõ'éÔ%zÉlDÌÌÀ5urÚò¡jו*<_GN¥šwB©XÉÏΜ1~ÀQ¼lÔ®8æ9 íP‹%“†ëÕÙ°ÉYŒìÕ:—Ö¤FiH<O¯õýÞNOfº,Ýë z'µnEÁD!.t5@ìœãýŽŽƒ³¯ ¦ŒúU ¢Þ͉`~RSÒ” Ñ8šžÓÍ·Ôóëž(ÜÄ'H0‰Ç;Oú(%¬BÜÜûŽGÇ£ O=G²e»*pk63ÚgÝùHƺV’Àë ¹Ê:ßÝ)èÙÓ0€]ü»lL=ßÝ÷ ²ËÙ ¯¢%ºýŸ½ƒaÁe™9í¹7fìá[ÂnJd…ªÖ/¨t§¯Hø2„îÖùN’ï;+Z9aðNÒ(q>Ò-ZÛeÇ£· ÏX2ÙL˜Ë÷*{'ÕÙÑ÷Áö¾Ú´®>ZX^¸.¾KæÛ[[?œ‘Ã%iœvÀZGcS Û Õº©Z!Ié ¯>„zÆFƒ›*šª~9IîÃÒ…XPª†%êæF[²'WÀ´(ÂäÐËW(œzë¯!õ½õ0üp¶ ‚‘dÁ²¡TZºg—°ªjÑ×¢ZêV UékpQp³6EC@˦ûíXV ì%.]Ü‹aÕžöýéõZAÃÇKÇ€È]õ+“ìG^@9}‡PÏ8£» ïÚÑyÉö€Î¦›ìdEõ.êQ½ôµ0aîhÝHŽçé×/¨û=³^„ÿÎÃõ‚…‘Å|W¾ÚÆq‚Õåy,·ÑÈ,Ï:8kQí‹KÁû€Cc¯:Jšå÷æ¹V*7Jí7œG·Íì{9“¸QÛ ’(½¸B=˜…ïyfZÉ) '³Húƒðµ$±QŽKdUu|Â?Çl¾‰ÍÀ5É6ð¦i¹ûÍ~" ªu»Ì÷ÒqéX–´Ûò2ÊGf uîãR)ð™ý…˜µ§_>©¯]gÙtpõÌð¸kßP¶T¹zv-šÔW~QË_U¼\ÊÞ`JMÝ, ÁM©á…72ø)ƒ¬ƒzWÜ9Çå?WlILIê¡¶Ødȳ‚4 5j­Ê5öQû’»á9›˜çF£5ÍâF-·œÍ1î4µÆ½ kÍRV´*mž’÷¢¾{ƒv¥kܱÂú¥þAÕ+¹%GY‚¶ŠF@]'æ+þšXWNrÒÚWkt¡6©ùhýZHÕ}W65ÁGUHCr¤e<¾¬X’b Ÿª@Å¿E)¢PYã?RÔÈÿЦ'Om]ý9ÄEfw8‡‘˜ßHsþP¢"§‚ ]³4….jnãU,U¡ìŸLOÊÌ¢˜4F:žËµ rÿvô†õúò»ó+vryµ”Ê#Cm–cë©]ÏÐÊ3? j+&C<¶ílÔwöÕâš2¨ä2ºpJ¨Q4¸Nûi}Ÿïüé µäžœ «TÓ™á¼Ø±÷O‹¥v}Ó6&ÉÆr„žºD·ˆl)z($&ù7a+„JÑU×:‡1í2þ‘#±¤»Š>þQ×ÓøEì€ÖÆx<ˆ+©A+T(HëŠ&þiÜC5!ÖgeËÀc®ê{¤Agvw[?¿TsÛõïØ7î&@ÚOm¾×Ê^G5W?lª½ÍÝW[Û­´7þá&B*z‡èpJÇTÜBP!û4Ö½ÞåjÇpÁª~/ŒÈrË [·ˆzÔé$~®í6TØìßgKzW2fÑPHW^å«Ë¶Gª”É€–6˜é ÊŽ€tÓ4BÓ§‡8O(D´C7\@‹ÔMÝ%.®Éˆ¦Öݸ—†çªf …Ê.„"¨/+Ô´ÙCô” z¬¾+¯>ÕÂÀ®HLQ’Æ—ÿaP>•Aä-ÒßôH…/öFIg†QäE᱊—{Dƾ£((üA„ÆÑÐ,œïhÃ_E¨UUßÔ^ý¤~a‰3óaœôÐ a±Ð58˜ÚÛåÕÑ1КâÑ…ò¶a¼f§jáQ’öæódŒJæƒkÕ‹/qåN² a®Ëó~çœXjìƒA¿#J¼t/.­k#CÌ~0‰á$åâJB¨Á5™â _»Ý:ÚÚl·ñ:O” ªhýÖáëT§¨ðô1ª\%#ºû#Í$œúL•rW¿ˆd€ †Ù·ƒšÎ'ƒ|¸=€CzÖJzq_«Y¡Ýú‹ÍMkwoúÉÑ ±j3õêmQÆ5vÑ€™ÕÍá Ûác¦°Eà° ,ŒÊÓ>HÓÄîãÑF;a²UÓh4꺡šžº/:ãÁ,Åÿ˜Ë€·*m–tKÄ–¢"^Ýn=4›Ô*¢"í`«Ržpˆ6Š„lÍŒ]1¸Œ®SÚx¢ÀšoýÜBS{Tÿ²0ð²N»³gjU°…Ù2œ““‹i4!"G``¾Ho¨Šìó§Ÿ’¿,´Ò6m׳Jæ:¬¼.Ï$¶q¡™x«alF)@+&‘2<ÒIJá’¶²|œs*!6ø9’¢ü•ý›žUpòÌ: “ÑÙ$ü„UÔ %‹ /H?ª‡«Ãz¾òetÎÉK# ¢4ÓoÞâ©nHè.ùÝNI7ïÄÿü Á?bYȺ_P;)­ìÐ7›×‰ÿ2Èç‹#&äRͺ¹Ê~e/WŸ$ÅùMÜÁ£hÈ ²POÙ`Ø@ã¨séN|ó ë\Ÿ{Ìï4àãñ-ƒ-·°Åc­?úC]4ÊýÏ;¸Rñ cëäÐCÛJþ¬Ôä7úm#Äwfÿs`´Ž3sc-smÎý4»•F¿ÒÐYk£dM¬Þ¹¡F1±¼º†;H­Ÿ‰õ4ÊÀÚå4Ô:‰ßÍúÊHÌœþ|'|ï ïÓOc¾„4 ›žÿˆ;á{;ˆOïß”-dÕqé@FóŒæ&æ³X[tuKwîâûü—\Š‹²7hÝÞô' »Æo9ÈSw²uºE×÷–ZÙ[¼Z#–JLs=‚u«/®%Úÿ wöÔ{\Ä+ýCøòOW£š»&±üÙ•¤8rb=úù`ûΫ¹3*ÁÓ×â=Ô±@·d¼#îûòwß4Xé®7ß„ÿÿrq²'Áù\×ß¾ °\Lûø-¯.-Áb°r¨»Ê¥n:yýÞHÖK¼†?'æ¹1 ÑÚg¸Ùÿf­í<ÅÆÃS %B³6^¼8T/·_>û<¢6Ò%[}²Sî÷Äô<tu=BÒú"7GªBà˜²±„mq»3i“†þs·°üðvúV~8—Ä=úÇ©ô<ÎqçR^%dz³É:Q yF,Ÿ—Æ xä‰ßÿÀ– -üƒh?“ÊÓg&Œþ #S’Ÿ=7ÀƒäÌúÃ&ãÅžâ¡?°”®µ·b<Ìtg€˜kL¼SÄÁd6ñõ¦Ø>VéR­ßu¶÷ÓHtAðñÀ<…Ç0v¦ÌÂQýõâEkͪÜÞAž[ 7azïŒ.t€ Q„E-¯˜ #å@Ýå¿z²R ’ÇO^å }…·^¡C ïl$g¥ƒA4EÝÞœ$F¢wAºëkª“Eóòá EÃ-ùÁ%èàÔxwÈ÷!Ô/™ÌØx6z;J.G¦ÌÄ-3¹[™Ô-“Þ­Ì…[æâ–2ùT=íêR`L¥s©·€qó²CJ‚â¦úð¯,@žJ¼? ?åᘿØ8Ü8Ú?äÀ©vÂB_9>ev`h86ÂHÛÆŸ =6³Q КÒ±–Ï X‹Éü—-yÏ‚ ÑÚÄ-‘¼˜{!³åÕßâx DOš.Åh­é¤?&K®_yÌAïâ(sJn®¯|Üyfã,q©¯ÕQ.cñðwɾÙÐYj‚îŦ¢ëžNQé6E@hüðn–LY&šœ¥zs#U ‹9Œ§Q ÕJ¢Îs ÜK CqÉž·˜¯:Úìƒcà°»3öŸ׌†K:£ø[Gl¹ÙîÚXs3Ÿ´RÖ ´á,¶ßBw·Ñ¦£I¼¯Ž9BîÀ`n5Ô*Ï,Iç@™ÝDŒäÖc™Š‡Yg<>ÈèP4T |ë|ž,ÛXp:¸aí~¥”ÍÒòË?¢ñÏ2šìÀšGó¤t ¾,ËÇ•e'>FuÏxÕ¤’•DVê•cù«Têg¥“\äQÓWÒ³”ØÐ± Åáq~ðà°Q‘êl8ÓU?(ê¼Â ¯°ÑhåÜú5ÌäôC&JEX¾‰¸þª’Kœ¹¬w¤Žý ;;PZêyÆS‚I@Â&þ£}mrû†´0I\Yòg÷å,â Ãg<ÑzcžZ=[4;–óó„’.èŸxrj‹æâÜëÄ‚håõWd9Ö¹T~H¹7ð¯ C£´ìŒ›*-+<0óŠž8¥†¹òC†J9Ì<»¿ÛgOÑäñ'5môÏû‚™Û\׆ܧõE%óK4Öé ™K‘šádF¨¤!ÚŸVºUÕÄÑh6†É='¤¤'‘ìÈì)Ae¼)Šo-ÿÍ&gDwò¯§7 å—é…ˆ{*á~&„• 9#j˜‰Ã‘$É[5#‰É‚½“@}Ç ÐÞJôå#êæ)JkšXì|c¯üo^¤ôgr(òXK7>‘Å—¸5VaÃ`¥Kòüò¬µ¥…+è. ¨L{ËS°‡½.B§&N×è@JÖŸ°Ž¦ø·§.\öïyby 2Ûh}ßÞ8|ñ|¦çÖþ«ÃÍí%?®W„:Ëû¬©¼g,"vJ¹óÃKÄñ%téøÖ&-wüg]™'ECmJ+3ê2í`BÎ ü‡x ø¥„³u¤øË1ÌÊLÈtœÙ´c˜¤Ç^îx©~|Üh2ÄU6¶äÝà—Á¥Tÿå.Õ4]X¦÷tèÊd2 –îC'4¡Øg¿ø·RŠR‘¡—ÎNa‹Äøy”¡«]/Ï_®Å¡‰I„îcS*Šàìsˆ¦Ùrˆî8úcY:)ZY`3Œ%Á„,u®ßµÙ@ÜpÚ}o·©Ho?G¾™€ô§36Åž¡oïëíXÌ 7è ȃâ±x†Ÿu˜GzpÇ~Ï÷¼;ëú™!HÑøú^zÖ¨œ úØÛ`†?N8Óþٻ鋦ZqœþåÈ>0;¸ùsvå” Šó³=‡ßÀŒÚúÏ‘”/‡"0ŸÄ¡Š/kL8cÍÊЗMÛø©\^&dˆýãy¤Ëæ0*jEŸo¥|ÂU‡ªñX6nf”L–fŶ¨9ó̺Qqºù`[j%ÜÑc3˜Tí·|a1œ@΀ƒc3f²¶¶a×C£¢ø õzÂà†>€ñuvèºûA-£Œ—sM´­‡çªÛÜHB§ #ÝÑ6Uâ‘¿+p÷µd$9ws …IR~ °¶[;û{0Iù-ÀZG‡Àé8°8á·€zöêÅáöÁþá‘ͤý€¯wPðVr…h»1ŸH7î[Òx€`È"ˆì´¦šI¦Ïl•/”D…'¶6ÊÅn¼C ùBÙÊ`1VÊa×ËV£«/eVK,dt‡›oä>;(ãA\w¥°ÑÌ€õÃYûŸœ]øÎ‡¨A‘ž%­*q¼š©°øÌt§‚OD¡Ô7϶H›˜‡¹/Dzw“ÿÛ;·‰Ì2×pŒ8üæø²[Y›×޹™Q·4Ê{wô~ÍŸßö ë@É(}¨°š3²ÝÎ’ƒ´d/õÕc¾¹†‰ÆA¤ ùÀ!&Š–à6¯ǽ¼ø4JÏ9 cŠMÖ™L‹äûXÍ›.“LŒ›œà-Û¶v:DÓP©­¿¾88Pñp6ˆHf„÷å@®&ñ¤p4ÈpþäuзS·7§]¿aâ2Á÷ª¹yÂЕ‰¬ýfOFEþÉÃL3ô‘‡ègÁ_Hèó%䈄úLØî®0„×÷ꆛKp?1¶h£Œ>®€¿@‘º K8B¥f³Èœ^`ýs(ŽUèbG)ªŠH÷¡¸ö e>Nìê"b(ä£ùu ‰wó–øÝ,BÏ%Iõ!EN<ÁëxÛÙÞ%­×ÔE5£)Фý”¿`d Ô›¸¤ã¬¸ã²èqgT]︟ °¤·&`?¥jŒ¥Z¤m}¦½z¶ÄŸQÍ·FcägùÂfP »c="Õ/ïw6ïå=#-ÄÉœìOÐS´hNs ÊÄ ­Ûís¬äÁu•7ŒwÔ/#§S±è¨é!û¬)û‰…¡Ó“…ùZ)Ðõ™4ò¬ÐöñŠécT„’X®|Ã$Š´éy2ÁÚ¤°îý¯÷ïU8~·—©u/‰3óKW´WPQq~*A _¬<â¾Å¥‰JmUQ¬•Û´Tùt‹Ö l¸Užˆ¨·u‰ÛôÜBDÚt©Ö³Û£éRÉ“ò y[cÿnròûdj\Al)Öh…D6‚%kXÝ6»9LÍz)"Ú¯†Çá×oª¯Sø‡Þ¾y³tK|v*ÀlÇW,âÞ­îøÝ½ê>»µnê•;W¾:·Âú¤˜h \ˆ ia;š³zn«xE*þMÕÒRBŠÙUÌË‘LÓ²ÇM“TÔ4v{pX£IiuÈeË‹¡ŽHâdwL‘| £é=ìoð’õbüöS#nÄI©!¬„Hýû)zgÚ JovU³;:¶X)tí,%O*‘@§|ð¦WŽ»Ë, 'Ò‹ƒþ[¾Mì EÄ î1ëþ[“è<îa÷IP)³{чc:92Trø¨M. R÷¨ÝïÊ#Ç›"qÜS»-ÓàhïLÓsޫЙåÖû=‡xŠ'xêæ.Ò±p½Ï„,‡= :ÎhëËÁ¡×Gek™&ÌuÇîÎæö^k[ºÆ‰ØÁx€+ߨ#hþQ‚ž4ÔwSúýK }9›ôø;{ê$G{£®Ü‡CI“J¬îªÌø`¿³Î2Gõ“ÍU¤Ü¸éO§,¢f½n64¥&Éu4€I$¡é»B£5ê0ê0LLèˆIc~Іn³ûÉz7·ö€¸jH‚Ø´ÖO«¦2¨Ÿ\4™D£)0LÁ”GF¬Ñø]û—Ô)xË §;J¹/§NžÛЋƒ?ž×?8ÜÑ~¶Ó~ÞÐ1y–eïïÌÝ¿$f%Lx8ª9Z£ÀÊI=òÓ‡½V`|1Æ4’Gf`ÇÓÌ9ï¿0» ömöq/Å‘‚˜ÒnInï¼ )&ŠÊÛ‡»ÂÏóÎŒƒè€¹ÿËìÂÎ&¼É½‰Õí.QÔÁÕw…æåæwÉ=QuìÅiÊg§7I|@=z̘?4]‘ì:º{…¢ Íö°´½æžºaýÌ?•½>²…uðzk<áA5GÜFÞ‰>~«žUšÝIT+\Ä´õôÕw©}ù ´d’†|Ç ­?‹ÃQ<ýßM9WúC±à슌õe¢Xòn¥LvQó+ÅlDa Ü¥S8ûÔÒs÷’Ú©A2êdÉßNÏ9„dsà¨Z‡õ )€oPÊØ)~¦ŠÃ;Wœžã†üi•2 %Ÿs;Z/œ–·ugÅâØŽ}…˜­*ÛÈ*NgS½ðc=âÇzÈs²Ç€ 0Hꉆ­çèl¤½½á„„Êg#!eqc˜„ùÐŽgÔe sÊ™î$º±\EŒ,Ñý$FHÆŸGhÐIâWâ¸qB£ÉØá [–Å’4Ñì˜"¦UÚ Q…¶<ÄY¢—wv›mìf£YЧT×lÓÈÖÛâ;…‘äèØî€ÊMe(Ñ­¡.6¥³T˜Qè5œo‚Ÿï :îP¶ûfH@†ív4îkî¥YiÀѧ‚ÿçS¤Î’ÄL+Ò‚ ªÆ¢7¨6M¨‹Ål_ñd ‡?EÜ [ §†z2#:©t¼ÇÚ5´3N’·èç~Âþé­OŸœÖºNP¤&hUw§h‘-I˜m6Úoñ'/:Å9ÜùIeso`Z&iØ?‹Ħ­Hœ¾ók GÛdz:H:oSòÍ?HÆãkÜZ:©€|¤ŒÝ¹:M»L7‰S²>N&o-)Wµ3…nNÂsi@ÔK/SŠáÚ=Ao£¼”LÎ&gˆAë‡CA`Ö9Íj'C3¹ÕpœM’ÙX• @¯WHû­ú*.1¨tNšOÚônpm®è‘.v5fæ Ù(†…'i믃ø&dËmA dHÉwjvNZ±1Cýq8Lû€+w…¿Á¿0í•êYk«æLG‹¢yŲž‰,¹ßÙkmìîjZlí{¾æçzgùmþ‹þ` w:ÉlÄöôã8Á¡:¬ÐÊg:‰(€£J0ýD±IÛ7–p a`l®ªYÍÞ°®>À?øoýugóM5ÐP+’V:¾X‚`ÞÌ'?Ù.- DTÙ’t•~¥Ó³šnû-þ,Cf>zÉ¡:œ„a’þØo=oÐÎØÚÜWû[GÈßó1†:=}w'Ž6¡'ŒÞ2$Ü^#V4úSKžÒé¬×Cz;:%0N)¨jö†®Ý®"ìà3½r€ÍÆG lÝÚOI <¼Ñ”ª°…„Y†â‘l*‰Ê3Ú¢Âä›™S/ e°£FãÚ²¦M³Â¿ü’­£)šj7Ó³[À*ÇUšëÙjhÂÕÖݳ~ÊÔmäoG¨/Š.`¦Ò†Ê¯‘Éà®øŽ/10É'á+ä¯f¤Vvi㥳 ú÷R[­f8iÖîɘÂ]ܼ ÈÒ¼ ÓËFêHP1ßS¯˜óË=õÀðÇá[$5yˆýÞm½RëÜ€béd|Ù=©»pK¦ëU.Ö,(ˆAK°n(¦™-ÆÝòšöÛ¡dµ+ŸÒ7oì:BHY:E(q±ˆjJü¯q V­Îƒö˜Ìuþr¿‰ÀÎc­2OÑÆ•ÆÓyÕ!¡úFß-ÈÄ”µ‰|lSô猪á]Rô§Â’#}?+Ô’un#@Òv¢`R©¶ÇôñÁœªFÔOŒ 34 ¥¾&V£Î[rhf¬räµÊÙ ¹ýTʳ'‚.ÊĹ#ãÕg òPØpsdO—|f„ÿßßkœæ3²J1NºöæªIz£×B¬õ#èo—ÿ´‰—ßÃá¢MúˆìÚù޽ME@>XŨºLŠÉ\ÓÓ0ÈqG$—;ÜxIìF&­Y)¿—¤pŠÉ—ei§W”“n-¹µq´á•÷zY{òè¾?—©ýÓiÖS? ¡QÖHßc5o-ëñ›††ÓzÔóî™pèX"€3‡$:M“ÁlÓërÏÓ4?rx¨ËÎ:—$ËŠNõÕ _ˆñ­5½f%¨0[GZ"Z÷t\:^8.y\A1ÌúF˜¦¬¼CŸaæ[’­c~RÚxCÕÇêøÁ-Õ ѬÐJaµ(gOT¨^…Å8ÙX%Ö ,ŠÓÓ˜;^«^R® žåôMª ¾Äë·)4´¶+ JGÙ³7OHKtd±ã×CTÌZg|KÕx]ýIW×iä´C8©c¨=Ò+㲈Æb|f\ް§Î4—2©¸.²‚;FK!ùņ?Ç}gÓ¨I!'™Å¢³O1ܵì'¯*¬ èàp\UT}™9`J.¯AöTÑ?©àŒk»S#ðtÅ%^!ඬÝÎ ƒ°ûÛ2nd¥ŸÍtn¿«OôÀ\9õÝ¡:©AoÙ^M¨cþ“ÊAð eØÍÅ8ÅüFåÑ`ðFô(BîRtƼŒµ2‹Èh8I6ÍŠ.¨’Šú½ª=ºÀ¤ª´…$‰©0æ;Úd!¡ £ TEý°¬ÍÁìøh“ÑÇÔµ[.Ë2(0‡í©ƒ¾rDXÑ¡‹gú%]¡—ˆ¬¢u@fóp!¸h’jC‚/ÆôMNÌ+Œo½mt¡*oPp· ü0,Ë$–dX`ˆdqbCÛ—·Ø6ÞJâörá÷ä‰ËÆÈ#/íØ1δê@‘`Ø‘—xê>.IÔ éA4“ÛóõÔ&cEáß7éw¯0,ïÀ8²_b`\¿-;FµÆÙr¾W¶ Tw‚t×Êá ƒs`š(·†ÝîµH‡´‰z0l­–_ñ¾&/!LJ!‹%ïc´ê m»h>f»q‰ášàXfìX 5UBD1]RyÂ=6`$pÿO\çÌ¢ù'4LRýã,¤©þ ­¨‰©t ¤ÒS’KÛÒ:¦ :«ûV L)ë㸛ùdÇsãèáö:ç&“ÈL‰e"ÚÍ.c¾û¼¬&#"j¤Vc>åômX摌\—‰6´àƒñÈ‚3‡éj‹Ó³ -‰³I 8È:!Þ—2±)̈æ6h3Q´Ÿ eŠ •:FNL…93´ŽÉ1blœ¦þéË|ªo[@t/D’|ïdË¡5ËÛË ™¡Ó*“‚o†Ëý‰F6i•²MlÛÙÕ0–FÒȆ@|a›D‘ªßTÃö%š¥Ü­*ÓÆÍ9ýa£ŒÙL9"Mßô¦¨ÉÔ!ÝÔÂ0yzëÏßîAŽ(©ò3<¯ñÛ¹¼œ-/3–m=Q»•w3—=ë·_ºD‰e+Ÿ}æÓ¶H )‚/þ84æì'ù‡[¿í–Qyƒ{D(@¤ÃGÅ),N²+Ç–0ò”«XaJJb— «ê¾Ã«ßWûUà­2^C„tMz‚Sϼ„øÈ%\²A%G%QNØK%1Rh>¥Ò&¡…Oñ)¯éD äsY[‡Ý½­ßNÐõÙÑñþÉ_µeŽ„Öó3Þ¯D±ß2ßã r­+»ï•ð"à  ö³›†O’"NuqÑ“µ\©¡+Í,cidØèæ ¼ðÙÖ«|áb1–e4[ø¸B)ËrÔVÈ­å{d¤ùV+æ*/=zñ׆PïlØôP1KB¦1ă#“—hIL,Þós³ŠûS€U MW'¦Û˜¦R‚ ¤ö?j6ÎŽ1Úǧik J¼QÝ|Z™$¨ôB(¯6žmmÿv|°uü+æ^‰n©-4WPvšÒP­ÙÈjÔ¼©ÄÛÿò~¾À…‹lyJ—½Ñ3¨XYâ¡˜Ü pd‡˜´? iÉÕ÷;²E¢óPàöÙpÉ*ïW,É<=Y³Ím‚ 8….AeÏj¦®#«ÌV.æP7Å“öC¦È0¨J–Sؤ‹íº>X·¤Í“ÖhLÛ99 ÅX”Å_óúµq-Úö_Ïé„ógLVe#ÅM1¾LõgcTÍÖÕ/mS•Ùmd‡Ñˆ‡seà™ Îf½7¸V¨RG'&™;£fÿç=À•a ÐÓuHnúLBgá02pL®%*IP"Ö³šWÙ­ægÙÚ>8ÚÞ:€ÝF~*[ĺ #”­ãœN™^˜Ž¼7Ö ônë÷“#4¿Dòcé{­«HéD}̨‚×ð¯»[;»¯$þ’éˆØ ¨"¶·ÿbïHî±ø1¥6I -rQ؃åq梑9¥)½t‚–èa°<´%ßs©&ÑŒŒ0ÄJåi劌“]b t¾FWe¨·§ dôŠíµ–p•£#ò2XLÇÄÇ*\Œ ƒq`ª OÕÕå•ÕòòÕnx¾ ?+&æ§;YY“@H:l`Ï‚Ô"ɃûO¦%ÔÑpU°ìÀ ÎA¤. µTßÌžu8æÉÖKÑ 0­u‘Lm]²'KL YlÁ‹(dKò¾Ì[/S$S`4Iù[‡'[¯¨åÌiù wÂîJ;KôV#ßoêË%:4l” än^Ð!¨Íné2o2eîô¡AŒ5ŒÑ±¼œrÔ4 $ÿþ–a°èÓA(±¡•Žï÷I¡ƒ‰˜忯ÄÍ~‹#Ë,Óˆ$!gB ¹tÈÇ »a´ ´×Õ[³aÖ°(°œ+Ñì{>¹RÛì\?À¼bF?@ ôQ|±òyøŠê›v€Ÿ,yålŽÞ] ûæk6 ëXð¥¦íMEj±èÌeɘ¾v ÈÑ~wôÛ&Ù`—WɯQ/(­Œd$-“Z„ÃnŸòõšå¢4Y¢Jµéõ1Kð1Á¹T…s~NY«?pÂT׌§I†À—uËOF»*èÂ2ˆÀRöäkB½l¹Ðçw]¡–¦@]\Y~²ú„HÈ‘ 'p¡ËKùƒ‡äî. ¥hv5Ò"Ëz…êLÎô›UÚc;èÚZ Rvé'ãyB—{Շ͚ÌÁxkX¤PDU,½¡Z¤(mþðü‚NS|j&¥?|Ô§ ­„ršFSmñÝ*l@öî‹;wä÷Ãor¹¿°±®÷êbÐ 5Ù(0¨èdfL!,Ñ+KG=Ëù*:c”Òl Žîè ìêìrÛ†ª*v£Ì~«Ìõ=vÁ|½9sòÌùÂÃîa<¼Ò„Áio~ì É,q”úRžZ:ý@sDK}è>áå>-XVš¯ÂcbŒg´b< êϽ¬ô/ú?{­ÚãµÕŸr9#c€WP¬¬èéÉ9i—¾$#Ë©ûNj#¡2¤áå(@{,Ái6Ë’'ŒŸl9`†¢;w%¶räRÙw‡€9 =ýÁUk]SzØ0óm–WV~k{{÷åIvÏÝWûG¯¯#§¹¸Žg†äóÚ¶¤}6]$FC‰ã(º æH^’.æQä*VÛHw ìÖc¦ŒÔ‹D]þb\ßÇiz —£¾ñ‰õWæ¸[2¬ô±Ÿ’¨8°’ ‰TheÐ"lû§ÄEN@GÄ®&î–P˜V’‡‘.—RÓ9“†ÔL =\>ëˆScÉiØÕŸ +ûD6š«PÙÔ_Dk2æfËQ÷Ôlëñe"éTsÒìyÊ©éáŸedš9j’=¢Œ²–ðøו̳Ç\פëÏuMs]Ó\×ô¹uM;»/á¬TãÃ¥©¿Ó1E!»T0Ji.ˆ‡εÌá´FW-íbÌ={MØËof&)rŒ )(‘çµ|)j#4J X;­‘ÍŸŒz:â-«‰€].‰ÿ ? vù¿”¬à{Ë5"R8¸îІªSaFÔº™pÕ?±~Œ‘æ Ö¬E‹¾S®”ÂxÔzŽ~L Ð[2ºn£Ö$„JŽ«Z–ó¢\†»˜™`ŸœÒøtèáCOô] päžj“:Q_Èi¶ª ¯n;îG,­˜J0u=u9Ït¹fWþ•Oå …0† £ÌEÑ<Å ÿ’FÚi£7ÒíDí/ó¢!2[­($Y Kv„&mÅ5ý qãË·ˆ½]˜Ã·ê–̆m`FËÏxÕîB3°Ñê·Œ¿"ÚŒn6qqKÔdË3À,0b¯y]F«Þ^lj5Q…†ª0µt“Rw3æ f])Ê~a†ï Š¡pl)ZÄŒ­Æ-O]˜M¿fÃ_›ÅÌÖß Í^£xÀ5{ÑØ-t!|/ÇDá|Åp>ƒ‡×y³y/þ]çY“mo߃1Ùövª-ÙövÞÍ-ɲ-ÉGiäö`ŒÊ ‡ùX‡s™sû­©#±Åð£Î{+IÌœ#èÕ$¦1#xx,A úÞ¼µ2؃F®QnÎ*&9i!¾ˆÖHJ_Ó<³îÆ1"RIõÉúÜ#Å! ›{cá<Í=±Ò<±©}˜>XšDœ8&¬³áŶ¹<øg*‰ï¶2ß=‰|޽Ï%¾(ñ=$†þU |ê¢%“—Œe³ñ‚ùÒ³ô…òíjŽ6Šžÿïa†rÜ"® KÇR"Œï|#”ìHÚP¾¦ôMÆKL×Ã`:ÉPáz8‰2çâ>8âÌ?gƒ6t\,éxjtó}‰–_hßÄ™ q¢ãŽ}wƒW^{`Ðy~õnË1ÑáOŒës7ÝAé¢@б!æÂpUÈzK ¼(dã@å <yy‡´Ëuå˜TÎ(jL5.cœÒ]Žc{oÉéRƒjJP›Ú1•’¼-KäΩF9ºl“Súqå{[Ø7ù_"?ϯxk·+L%Y&U› ,"ø)ÄÎ8лú«¦€šïAsñsdÁ§ÝØ ¾b>ƒ˜ˆ!rb•èljªÈtžó¯tˆŸë+&§‰ãëa1˜ŸÒ2'ÒÆ”ô£Ÿ«6ïYµ)£G™ù4$Ú?N?Éd]º ó3ÀZºlÙYcÌ,LýOF(÷M—‚mã@C«0Bƒú©ôÓëøç6±ò&h¹Çë„ñÄœ;å%ç~eGŒ×ÙŠ—­É¥E=µXÊûˆÑciÎháÄl¬FïMÛܶ$sôµgGc¨üA”ÿå÷ò»ä‹8]8ûÁµ2‚“íæ#0вÅvPV¡çÒ–ŠlqìàSþS/%8s­.‹Ë±wÑ+"4x@¿·êV},ÊòFi´Š3 õÜä¨5zÌ8‹b5ŠÅ{%{pÖò?›;«‘ Œ„b]¬,;õnðÆdƒS6f- Á[äÔ¤þ+ËïíPaöeE2¥YdET!‰h ø61–)‰±‹¨F¨á‘«-Ik4dH|Ò&ÜH&«z&&ËÚeÒ…´~ÉUK˜È(^ò¨ær^oë:@·à§È·‘n8 4•»Q.–8ƒèÛ MÚ™EEe$yG„S¡¼œø»Ò:þë>Â,Îð’? ®M¯±žˆDíWSöY]BŸÜÀ=G_8†È’8 ´ôøhyÎy$Q> Eƒ![ã£'2NüŒéu‡d˜€|ØÄh»Ne«†lÉ`,äî6…qxZµ¸'F5¤U,ö‹|gD€A”•=¼ù[¼-U«ö©ÌH¬|i\mЉ3µMÈIäI‹¨ú*Ê•"çÏi úõLFeKlût”╜¿¢GdÍ„CŒQÆJ×ïiñ•´ù0»ÊUÓo·éÓ Òßýî·Îø=~8;“Îéo×éÓ_Ø9¸–*çóï³ÿ¨ô’Т ¦©:M•_tï¬(p>­DfFIÒF&9½9g_{ y:HpòÏ SÚ¢Î~]^­¬<’k¤s•ñžû=iÇ0w Xi×€Sl¨# móW?‰ªjJ¶ûÿðñ‡„eÈ42¹¸”ô¢…Îr>œUÕ1!ŒÙm<DzΒŠ•̩8V]9„˜@8“"‰ų̀I=W¢¦\±¥£²`•ƒ,¡Þ4Öø ˆÉsBâ˜@g‹Y½©˜i±ô®hj’UZ¤¢8M–û*e¸PvÛo‹3³Ä©yذ餦Ù”¡èTÆD°EáÒít@<;ñèÎ\ä&ÅŒˆƒ‘hT2EÖÌm_Ÿ_z½%J,µ@¡’iƒÑNè¢àUÜ ¦/k»”#,½Hñ%;5å’|)®Â¢8 ºöˆØ•~˜ŠŽMRSôÐe1a I3ˆ3RÝnœ»Ò6nÍÝ€–Sm[Àœ17\*çØF)¯Ã™|qeͲµQPISÅ”ÎWgÛ A(å6Á|Éq´Ê.¥YâÃOb0ö ~ʪEåDùc8hy~åâ§„újoÿ`W”ÚÀ\Ú°lá¡¥\¬%a]ZE /©ßjóÌÚE\XmÎ¥ßÈhgjeب¢+ÖªvaÔg9½¹wi 1×·A?(Pã9/ö`Ô˜FÖA›SÉbd9³>F„ ÍÅbÇŠ¦PÕÀBFkÂI§—ª¼J¯˜šE"=ÅZ<2í|×ýêcÒ©kÔÚ•j*W±å |eøÆ!|a!çÆ¸«HÐ<çéÖ7 cÖF ÏÙg®Ê’„£l6Y¿ð¶KŒx£O4úVT°ž®«¢õ˜Ü‹“cÔOËe¼?!j†íS›¬ÎddXIy?n¯Ì8™ÛÅ9øæ6¥®êÓ‘Y)ËŽË\Ý!Zü—ºÍJLo|<ûOÚyOåW·ù¨qýS§¾¬“Q|Fn{6ÚüGÑqH…x1¤ž…àT©äAHÞE9ü|mÚÀ±g)“Ï$S÷r†ªäÍù=ÐÌ2Ê™qžŠ^ÛÑPî.„•AࣅÑÎâ~9Ï··M4áWia‰µ饖ÿÈèî _’E¦zÉïÝo{[²…¢<Íy7^a¬}q³Ù8Ÿ1¢f³qI ´Ñî8ç<Á擜¼UŒ•’ç‚D?øØ!$Þ¬2›Ô~Iì–‹Éì»A%j2ŽÕùòGfptbs ±yYx˜ƒJŸ–»r²º~Ú Ê˜¥;pS³ F{ŸÐ™Åùa2!¥b„qÆcÂF &µóœíµã±'#ºå£Õ˜ívœ•DÁ¦…˜îög÷¸ßpgik:PÊbÿøHl?y:ÉedLÕIl¾ùäéÌŒ>†|™Õ\²ÏÎ}+Òà5é)Êõp AdzÛ&‚:ôÙ°–ÜüNÇ¿$¹ IN ~†J>¬¯¶Åãʘ h’~±ÊÖ%س!³Ñ:ä Ï„Ry/ ¥ ¢ö¾( FÉÒ’0ºƒ_¡fq3‡ß¼&̺ˆ’+ }x!C ò³RŸeÔ’· ÌOó½þï-²¾ L¾B 'çEõE¶·¤.¡!q‘ ñ£›ùà40ý„ø ¿ä` –úxí ð|N}„w€w|ƒ`‹²8ÎUáCÑ`Í!öqt¼'Ö*Ëbó>¼Í&*ÿÉ3ÉRXÍÚ4•·^ï1öñ¬i ía¯©‚_üÁur¡Íp§/6’ÂÖ]¿úõW[\¸W46§‰¶D0…xu:É|úä U¸TŒªî¿cƒ]:Þ Ñ@0ì9·s½Dw®h)G$Bq 1C™~´ˆá†Â¾²9G†AW^ïFØ%™9¢ ôI©f[-69¨®F&² ñw1"+0‘aàùÚƒ!-/ÛßÔ !@åÖ€­Mf)Á˜ÆK¬Š ¦äs ]ý¯‹fLОÑhc˜f î°¡òeàÁÉ•A×jË*¸9å$¼€! ,¼ôz؄̨„Ï8^ H•~Ø^ÃõÎí¾a€¢VËâg±"6Dyè©`ÿÙ!œ¿Ö©¯[û¯ ©ÓΓéa¦á~ÇA4vfà‹>L'ôÎ ˆ`fÈ«b€y™Ò&œy†ÌE²wtT¸*âŒQ߯:ÍuÝ÷7øÒ)b×Ñfç±,íZ‡K@;C4¿¼¢5Ì {E|Ä—…R»ÈÅœâæMôzÕ|-«s |Üw¼ cBªªê’`¾R('³ú­8 u 8onæ$(øòa3!H©›DQÀô P`I,Óý!~~³üV Z*öz%zˆÉĤf ¹;Ü•ßwœÞyçC§œ¶ãóÈ뢞[(o¸VÞrDy§ñëËß_7Ž~µ½kÁÃ×M|ØØ}}²û(7Û}*ï:¹Ñ˜M[¼Ï&âö%áÜR.S >é;ÉÙË®ÐV.îs–q=-]©äÀè¼(¶¶Û[Û¿î6þØ:*ÝÔ¦HmxÅûÉ ~=Îä¶’r^âʬ>„qÍØÚ°§3¾$[K¼ŠZ“Á‚¥»{R6D ÌÖ—4TŽte Õ3R€&G‰@dzÅ#úÆ9_q0Ú¯zpwÓ× {-ØÏB»ŒaàŸS‘)u8ãdecÐ$ÙðŠš3{GA»CÙ†,Õ‚w!ÛÜ‘TBº¬žôZ )7 šª¸§å2à˜Ü˜ic»q´Äa󵟺\b†e‹Ž²Õ Í—r/ƒ°„ž,C‘¯—Gù…DÅg+W”ü%ªÎ¹œ°•kvñ’¦Ã2@ÎÈlHµm¢Ý†‡[èŠXÝT¡Tè†/NoLcÖ `„¨e±jlUÚw¼pËŠE¬¨nÝ’×n}˺fñâÊ3/ÚŠÈHëJÃ-´s‚±Aš}‰…ƒÂ\X‘%?Å/ëÕµUtÓ.æS6û<†]`Fî’˜ÃèGFŽD‰¤ e´LÂðÃ1øìÚ-é–|´ëÑ&yI4¯Oa¡pì¿>ÜÝÀóº>Ž}è<Óøö¶,öl¨B0ñù‰Ø|ó¬eXK ·xÖS<<œ’„²%:Ѐ”AVï ¼;c§$NGY¥t†+Ê(×m `G¡®0‡=K Éa¿êCä1ÅåkV=_øý†LÒZUâ<ÞÞ.’|À²cWG±WEò2îæ×¼sår³¿)ÃñBQïQP»EÞ½/Eü£ôyjgÌf–])kó®+ynuw ‚‚N2QúËd@D+*ÓA<*ç„ý錒þ]; ùx¬?ÒÎxÒV·ÅaŸ Ä‡OckL²»Ô«”8l¥Ã£ènœÎ”mÄ Œ¶—NypŒædŠÌï‰__–M};o6e¾_Ü—F»âȨ7Úu£%ì8Εõ&i—ášA…ÂêËxfVåžØ±*’«Æ°O9§}âá¢Øöû¨ ¥j„+ÔpÖ&9–NBÊÖ˘CN®RÊÄšx,Öõ\ª$L‹±$Lƒp`ç=»r©˜Rb'ögÅšñƒjò ²^×x»Rá•rìÃÜÃPW–EõÌëUËJ¬cp²ã=¢TµG¢¢R®Ö'ƒF‚§ÞÒ9«ÓMl /}ó•‘š+"Î)LH·ËMö·²Ë¾­3]‡¸+Ëk«å„ÝpÐ"φ!•í öâ‘S%œ•¾ÇÃÞËÀÛßoø4ú®Š“ÄÞUÐ4Ý¡íD9{I¥UV+Ù§¨½ŠÑ“4þôNä*Û¸º³C6dl€z¯ÛÇ›dEÉ™Tœ¤ã$µô\é‚§éxd0r05MåZ½Àd|5¥pRSë$*.³<Ö|J ºýÔW'ðNWÎÿº{pÉJ<À#clp ~n*Cb9HcWß}§JƒÀŸdéÉiù(™é˜êë3Tט»EE3[f<‰`²RLåâ4àP¥\gƒH¿§ƒˆ°DH¡§I¥€ÑœØáåaÄè4å f±ÀyÍI÷'Ýá9Ã=*;C¡‹o^¯Uîn ŠVAˆwµŽêÆ8HK ›Â¥ /7*ºæŸÈ8nEùðå ï‡Ê2í(?TVhÁwZ†x=¼¡+ ,º·ìZZQCÜàv)`÷6*{CH¨€Äø@oìÅUQ¨Ï£=§†Ô£'•åñ-3"7Œö^Úñ!Güµ@µ}LD7ûô)Z<v \¼x1=]¯Žb¢MsÄPlCWJaä‘‘OŽ•¬3o, ðG“©ŽP·²ÜñÙƒÚ¬[#žÿÑË/vFê*"W&U¯ì¾åIãæVˆýƒ‰ßò‹£ƒ£çG¢|ôûɆF-Êgðüµaú¸NÅ6 Lˆ!<µ´ÔêBZ;¯?$,´qFbë wOî{_/Ç»ƒËœ« U²‡²‘4FJ üàx“;.Ìc‘Î;‡nâ~{€S›a4çxD¢Kqô؉lè&™Ðm½âR÷`A7›p—¤Ý8û9¸#Ë89ðz¾Û¿…=2}…И¤ëuê_FU<“2ÆårC¬;ÉÐú–¯Lƒ.ª’óÔu=¹FŒ ÇwIvà ÖC ´EƘڀڰï6½¶×¨^¦kY˜}ª\·‡¦XÈñ÷Ìr™A– lDá„|iP1ŒE?JíjT¸…ÍØßÆVÏ…õ×òéõ6Åïǻíý'ðo÷Uƒ´¿y]O ni¥¤ƒõLÇžx#\ £ŒB¤v!N)—ðëM¼Õêâäó…qjEV§×•¡—µ|ZõÜ×í;1•ºüvëÏï)eýùuÕ•ÉKÆ2‡ÙxÁ|éYúBY‹4í¢a£ÀÈ^ÿ†`ÜCŒ[Ä5aU‡aP6Ϫ@„ño*â=J1Wyᘮ‡ÁtÌ8|±á$4hFNC½Y9¹4RUß\ÐòìêXä$ƒ÷ʨ§öH•72¸¼ºðÚƒÎó‹œðÄÈ/Hú™yí¶K®‰QRoŒð†}a7[„ëýê_bG–Ì~!²Œ3{äïÀÎ$rLì*S3;b?Žc{õÀdtN5%¨M¡²¶Ñ@9JF`Ô(G—mrJ?®|o û&ÿ‹¥ùæW¼5ŒÛf1½mv0Unnnûà÷ Ín3²à¸¹íWÉg±1L4·£ŠLç9ÿbÛ¹¾ò¡qš8¾ƒù÷)-s£&¶1”ib;WmÞEµ)ír¹WG´?ˆœ3=È›,JŒ,˼ú³¡ÒÌäÅËÀÿ@ñt1(‡A» F†2CiTF‡r»ÌÒ2ÎJú3¯yÝÉ<9ÑÇ·-É¥)Œ³\–Dùƒ(ÿ!ÊïåwÉ3ò_ñ%Á@Ë_k>¬‘q®â¹CNÍEØݢÁH(5ÓʲSÏá¸L]ú@ë C°ü\t}UÎÌð³²ü>áÇköeE2¥YdET! »K|›Ë”ÄxK+Tf²óFóF“ìvÓÐ>O`4O`4O`ô F0O`4O`4O`4O`4£Ÿ'0š'0ÊÍÍÍÍÍ€œ'0š'0š'0úº7O`4O`4O`4O`4O`4O`ôÿ×Î5O`4O`4O`4O`4O`4O`4O`4O`4O`4O`4O`4O`4O`4O`4O`4O`t2O`4O`4O`t‹FBISñK?(ÚÔGÀž_¼r7ƒOÑ`j3ÕŒ ö4®\RuïÛ¤ìéì&eO'›”=½“²§ÿ”IÙ™ïwFv¼³ø³K´µÈ0GËU«2í'@wS¶i µ¼å^9xgÅòÖö@i‹èë••åÊ£ÊãŠ6di¹gÃóZq‰vXæ g¸!-‰Fã­ÆÖ«çÇFQWéëì\ΰÃ-¦–dmaÑT¸@Ÿ‹âgU¿nÕ° ¦¨ Ò>ø^‹\ÁrÀ °(à6>#X«+«Ö6å÷køþxý‡'øF) Ö^Ç9·Šæ“×PêÛV½g-‘ŽÐã…å ¢¿ 3ÝZ’—^€ B·V¤‘éÉ W?]/#Bý÷-˜¯ù3Â^×E¶bSÓ‡ü‹LТ)y¶ÿ|}M¬Ä\œ>’E[54!HKØA°9B)펛L[=€'¬Þ.ÈžJ«')†phh^è—ß_Ì-|Ì-``‡öÎ[-æ~l+“Z£f¯ Ÿ RêÜTZ IÞqßÒ!±Ià€6 ÁáÛö8¼*â`¤¹æ†ùŒë7¹È$X‰ KìߤX€h ¢]4žÁó›È“”æh3VT-„ ß‹Ð:&|ÃÁ—SÇ*J¦IÓ¥á¢Òá\×î¹—@¥x‰°Å—Ørö¬x$%W¤lQ¶ ‡“¶¨ÀŽbɺKbýñ’x´V­“ºUãM´;î•G̉Œm».ε˜Á.E «JºN§ã7AJ¦é·µyz²FQ|•‘“.Jbe™í¼=§ü“b½¸q/o*bð Oü+h° õø÷Êz¹B›¿9L¾gD®í9¨¢ÁÒ{دºŠ¦ÝGkKò F÷¨‰ë„ï7µ­°% HòÆÚ£Ê£5øßÜPgz^òñzDÛÎ5€õ”Ű.D¶°ï@"]y˨a"‡9$Çóa´:Ï¡“|µð"ÑOŸôF ˆ>8ÀCãÉ1Á¢/Û2ãú„Çcû÷ uémj£^8kÐ8H¨ô±‰è×J­åÆñÉÎv>×ÀOŸ~FËݧ÷o¹ûôËYî>ý×[î>½/ËÝä™vÔr÷ém,wŸŽZî&iúµÑz·Žu2÷›û±49÷›ûÍýÀæ~`s?°¹ØÜìëö›Jš|ò4]΢ÂŽÿÁÚîYê0iKBq¡€Ça‡Eþ ʃÀiyÈœN(ÞT;ÞY?Remoë`WBoÃ'-º¥ ½A5…Ò‘‚ ºìɘĿ“…óœ0º$Šd Ä¢:IÎçÍ&Ù%rÉ!©¦Ï12ÕçˆÄpuà ÜY6lü‚w!;5¾ Ü6<ù±ãu=o/~BŒüè„¡ ð›‡ÑâH×d¾‰’o Úõ” Q•CA6O>ž~]—üIM/2ÙîÓà ÷õÉá·@—ÊØº]U™Ö×pz©ºÆ‘x@“1ý¹,Ìññuoà\ñIÉÂN£Ï «éàŠöý"çûÐ ´9¦c)‡Î*R} 1#¯FWÃêBtaÈÆì|V@ª~L„­EñŒnZ7`Éx²­ÿàt<Ô„÷‡ƒJN›”rhšêÊ Ü^ìqì§3ÀÛ0¾è‘`øQ%¼Àì‡fºEd­¨‰“Û[8<«ä¤kŸeBˆÞ[P··–tHb‡¦ä. Е;¦šÓØ@g ÔÂ,ÂkàºbÔ(Æ´GÊfqn*8³ÙÕn€脵¼ñ%gÜ¡Éç–•OÇÌÇùäët ˜é3Cõ%F›h5/ºxX ûnÓk_cà£øôÈÛ7š×DNÓéd,q$aŒ†÷1š¹Cp‚q! ßq˜÷0Œ4`F¥2üWĵ‹‘/#S§ø=$9ï÷¼¦#£®ÄEG¹ü·f;Úä(¾YÛe›dŸ«X§rœ2”QÖ샷"¿À»åS"*²)“‹.ŠW.Ûß.òXdx݆ÖðˆLæxDæˆùÒTv¯è6Œ}ûqi]· 7d›>In|Ñ $*Uä…% ¢+ÊyP`WàÌ3aUTËÕsûtsSF™éòI|*~‘,šÅ.°ÜÝd°lCáÙ-à‰“]u(ážÊèlœ`ë T§7¾¢ŸýîÜ(D›vÌEn‹¦ÝA&`+x¼ß#k^Æk½ø5ÚEàI²ºhFJ7â0 l-deËBãefúô€ÎÒŒ-`û·Þ°¹fr¯ŽžF†môlæ&€6R‘ÏMû¹Û·³—.Å­b?³©Ú>‰Î´~`§ã&EP¦°X´S@ÈTD:ƒ‹ÆñîÎìv,Ú¤„ƒíÖª3ù§z6é§Êà¥n0Ø?>ásô?¥ÂUú}DÝ9üÒ“4›ŠWÙ*I\ÕbÊ]l+¦hUR•Â+‘mQ9žB1}¦Q}.Ü/¥°«…ަã‹èx]³©›L´%¦Eõi-KP“´•ñõXKÔ%™ :ÎÈŠðdP[ޝÙe :&žŠŸ¬èª®‡ˆbïîœ6 ÃÝ*V(ñÍ€0èJ{²î*’ÍpÚ °½NBÕnS¤ÇÑI$Hh?Æ«˜]Å0ˆñUýɈlÔòÚm‘(œ5¢Ï4ª3¡XޱùÕ$ˆïÅ ­5)8:r&GˆJ—ÏÌŠõäv«òòM"þ×3¬ÅÁÆKc´s î èLóÎuûëÀØÎÜ «O\£+ {QÓ½äÌA ÅÊr©°ú÷Êr‘¡k—n³a©`຅­¨'£éQ­”Q¯,Gêþ‘¸ôš^„I_˜aN›Þy ù‘Å¢›L3 ±—0 Ç`ì&iln¤Ð¦ ýžÈÄW˜iùó…ÛÇ](ÑJ7r6^³±º&óíè$ᦘ‹otˆn¬¯^ï=eW¬„Õ¿_W«ÖÝ¥& F"Ç% eÀ `ËùAƩ濾0VjzþjwFóßa!˜QÑŸ>$Ù Q¤: ƒêUÿ| æÞŸÜ@SrŽ¿ïQr@TÞƒè@ó4•ì€%g°öˆôÀO)>¨Çê¦ÖW(Aàè&J™.ÏÛô±\·_]4ô+–í¯H® 9ÿì‚EÙ¥,ůD¶ˆÖÑý ñí`’tA sT¼˜È²§’ B*š-ÛçÓYÑN2R "èdÓ5KU¥¥©abä´›.Sìþ;… ÷žå‰Ý{(v§—(vï&Rì¦Ê»·*vì}7.Vì~ÝrÅîT‚…Ä —ÎMÄî—!Ò‰,mý}%RÄîç#vo'G¸ŸUàiåmI¹bµgÍ1˜ã‰b7.RìŽÊ»w*ÚSí‰BÅÞÝ… Û9+5íH²ØSO¦,öb‚ÅÞ8Áb/]°Øûw í{,öîI°Ø›^°Ø»›`±—*XìÝJ°ØKðü½¸`±÷u {S '<[_T±÷e¤Št K[|_‰T±÷¹¤Š½ÛIíÏ*Uð´òžtRÅÞ$©b/.UìJ{JªHhùq2¨4â%—ò£­ò-—Ѳ§|Þ–…èIYs »¬üG,þwNëûÐÜ ü5Ä,K²–7Šnr}˜¯‘%hÏ0 ‘ëžD¼ùXa’ûS­ÓÒý ð¹é–¤F…0k™¬tÊXµŒ>{PŸ†…fWˆ>ÜqfÇJ®˜Oú5Èeñ‰8M‘ ¬ô,*—Ê]¨y)‹i$×ánÇ맬†\æPqK2óã°3 ‚S\QwÊyÉG1R¤Üã Ð  Uc×—WÛ§±x`S•d¨,m-…9š-Ž]圅~g8pid¾7õzõ-ºUý¼ÁUv¶ÀE1Åí jvõÍßÕ·ø¯T­Wꕪ­ùø¶2¦Æ0("dòÔy¯Ó2˜0 EZ¤i_<hñæÐ¿E“Ìo«ßžÛ§²ïçÉ Z¶òºVJz-­*²M+ü6-[ªáÈ‚È`’|ëy°SS`dB¾e)²Ù'ኊ—x…öT\N¥è.Fê䜾ÏeFra,3 °‡ç…:°„º˜wU'‰d«qrMÈw²¹¦e6±¨ "˜ÈîR­l£Î އ±ˆ¢dÒÇfd™r¡Øò¼S¬a ÇòT Gcs€¨üÇÎ@³ûƒ­çb»ìaS°i3öÚá˜s>r˜'}¬  \œ^¹š%E·èˆ£ûÔÖ…ªÆâú”ý6r3e"1DÕ’µ"FA[&Âæ¤!Ä+¤g7·œ —ÝC»#Z0ëCÆ’†D!û}\L–¢ï’õ<&®Ã 8Ì«ŒÙWþ%§{FÒ½å“Х̳ õªQ•·¼OÞª¾: ÅF g¡,PÿY*+æ ‹OEè·j“ï³½Ö÷‚Ú ¿I.»H€\P ”…®€ëtª:{d”×-…j$©&&ñ`g¢?¹Š!Ã;:Ëe9¬÷f6×Àíe¸ƒQÓ–ƒ™™Æ´~Ì#[Àx‘g¬Ð홚\+úæ¡Ý(F f T_%§ ÝÐ¥°9Ï[Ì\Àig)uõrŸÂ‘%Ë‹ ©1c}¥¯,MÎÑ`HÒBéFß÷|~M«f¦#ÆÌjM-A3`nÔ£ÅîjJõìx§ŒÙ:)ʈH©$¤a˜t¤Ž^·8a»œH&]!;xqxÑ0^šI1/bœíÅa ª,¯×m ü ³FZ tâÇ'mïê¦×M6/…š”îªäšBg sƒL4CT`<½®•“<šN-ƒÆ Û‡´ãÇËê½Zù!U‚to6CÊ…îvÚ±üeØ<£Té†3UÞ˜F₉zŒò}L&á7 Q„ŽJ ér`¹žÝp™b†«©`¥­…ò6žWÞ۸ϠÜeœÖ»ï‡Þ€N­Àº~}Yþýµ:ìaJÜ „" ¡Dš^a=³T†\,s ××0b}Wg½•Ž‘Ñ‰Å£èúÊO•37ST7pxüïÚ†¾E•`Ä/~?X‡^ïùŸžBù‡øUWn·?¸–y²L‡ëÜ‚<æ"9­e|ŽP]( ðÂ…D©¨q|IœrAÉCjÚÊψjU©fdRÀ2qí…’Y„ù÷¾=U¢•X@×k–’ Yµ Z:{—XÅÜsü4Ò¹~2ws²g#L•`Ù ÷-~o4ͳ´6Z5Á 5(ë8é<££Y©ÑnÉ”¦Ÿ³”+Ùy 8 BÛëµH¡Êi›9„sˆÔOdšÝã©Ñ4ò:”ªP}þMYòòÝF’±Ãþy“›U9ƒ”µkFoÕÞ“Ÿã¥4ÿE¬Ç^ErÊŽ×ÂÃ8á Ó_#¦Òw¶%ÒEsÂa·|±’Üv~?|ùlÿ…nºíI_ÄÛiôpT²7ÂB!O”ñ«ÝL ·e4¡€3FßJõÀ‚qɺ $>בÎÚh¥•šæÊÌa+ƒã—iÿ`¨.ÕÓühïsã‰ãöìPSN‚Ï?{ä.‘2¤‘{­d,õÔ…1г¬ÞOÉÇþ•!c»^ƒ—ʱâs”¬1ç^ÙÜ+s‹i%–_V×sÓPÌlW®!¥Ü·ÆÞ~Á`„‰¶ãQ $SÞEÍàLBè©ß°LIŽÏ\U[P°¡·8 œJÉas×n¸Qœžéèhƒ|D ÉxëÈÄïèjsx˜wbøÂYR|ÝØPÇf$í‰ðÇbNÝâGÈ:U[ƒ(‡×Ý3ì@Y†„žp`#ÕøöÑÞž¾µ‘ÀFa*Ó©*©º/ÇÃ=V´±ÁÇŽ‘uÂGŽäP#f†G 8<1ugVꑎÃԼآ ìém§9Î/rBÍ,õ]¯ÛÐefÛ•FáÔ,ºãλ$·ÙÕä6<òZïÉ‹¬{A–Ôu®¼î°+:nï|@¦Â°<»h¶Š £ð>ì¢nvF^9-ø ŒsZ0Y\4¼ѱÑì¶cÖ<YÅ"}p8°ÚÖ³í(aœ©ì¢¶ü°õŸó~_›”õÄÎÿ<ùr‰ãb¡ÑÉ©ã_ŠaŸ V×âÌiu®a­º~̇Eߥh2‹‚* âL†–Sç„.é×W———ÅÙ5´ (YHQÈÚmu*ó¤–JPâŸEìŠ!v1[ˆ¼¦ÇD$p D¦@N„ì…L1¡,;Ð)7`³M^ȃ=%f¥¶²ºúäÉ&ƒ[Yý´ógÈãïü‚mF7)Éüyo¨qú{3±à=æ¯Ã ebÖca*pß½ÍÑdh¶%Ñïù‚‚ ²éÚv) £Œ4ÝófÓ$£?½ÞÓ«êá®9^¤¢ɨ\&”cn ·òÅïÀyçª3R#ø!Rˆ´ÂˆèZœ èäòÞÀs:k5ì?ý te¢A} @“Rl-ãí‡÷Áúíx'ÄE¼$+c´c´È‚NJ#«øÿu{)€‡¤ò¥<5ƒ rn R¨v9¯ Ñvtk4ÄÎéÁŠ‚„ èåy‹¦sõñú»¢Æ>çd^‚÷˜ž˜òÕô‡=LÐÈ$‚ØažP$Àå쌰²*aîeBp»Qô;ÎŽÈÝpCÞ”hÔRÿ†”?ÉÄ­1CØŸÛô÷Ìr=ÇÒr¹fZsòLç¿`ª£³°…{î@~ÂÜêøQò‡sá`ž@tß H1ÀôýèÉ:ˆÊKfìïRw{ I˜v]‰jˆw»Ðñæ “b¬•Ñ©YÏÈï@䫯BlÙ "t¼"¾m ‰:­è¨sé`Ö?~´¾°óGÇ™e›5A°KÌ]´Qÿ^î´ZAÏi»°«ýW]neôc•*a2ñRÔ«bítæÊ%ñèÔ âÕÞ•žÿ?]÷È´ˆ9TñêúêÊÚç?r‚%éñ´Ý•1Qè9àè‹ãöµ§ëëËOŒøáªA}®¹–Ìõ lãè¸:qEÄ·5à "~…ý\ì¾{çâ0ÄËŽ‹é­$ ñÞ™½Cäàv€Ïö¼&r™šˆó—)¶+å‘hñ_¢èDʲ–GT‰®¼íA™ì?]ÂWľÚÕžë5eê/äfó!*”;hÒÍñmiGFw·3·Ã©¨°þ©£)6 ŒÆ ýžI•ceŒõGOÖJöÒ¥‘ÇÖ+K%Dù=ŠgÍ $vˆB”VøJ?u÷¦ƒRÍ=ª¬~x\KdË«kËËF¥ëj Ö¦é?þ°NŸàÑZeux©¨ï³€Ú)y“l½zÞ8Üz-ªî IáÇ«Ív¥U Þ‹Gêõ$ 4óÔÑ¥ŠGU#Šp])½Yo«U{J†ôhõ‡õ'#¨‹¢ÓÂ9 ¦†ŠfübܸRáX:/þPaØ18Ÿy%ž¬6r¦b‚wdƒ±T¹”žÄýÜǰ˜Î¼s”àÏܶϹKZ>ÞÖcñsf…Þ ²íuÄÊo2Hr$ìÇWg8p]7ŽÑУâ‰|Ôz±·ÿ¼Á_Éî*¼¸¹ÑÝÞoÇÎ Ž #N›Ëz™¸6|ÇCŒáZ ¯,¬º4¨Ä•ŒA¨8«©¨‰y+ž½.(¬rçôJ7éªøÝwª.5½ò¹‡WT+ÕUqøÌ˜qÃEO˜Sé)âôЯñô.SŒriGf‹cÉ›ÉNÉ‘ÃA¨îÉpç¨L±dbø°Ä†°*%‹ks#ýÔÝØbñÆ;ïym&l Dƒ¶ƒI²£¼ÓßåÙ”¢{ á Ú CŒÐïtÑ›‘léAv’§££§ZŒ},Ϊ‘®<¶jPluŒæüdíëJ‡JyžÂùÂcµ’ãHÞ™CÙ0T¾F¿k~*sâzÊo’æo÷ÙöÎþ6šnoïïKûpõëOƒ@¼v}eyE^ mqu`AqæàþÎé\¤ðVï)v«µ&É3ÀÜò°°Ï®áäØq(ôDÅVwòøåꋃš mÖ—×–á×ʪÍo^¬¿”oVã *‚ÿ°Rf ;&Ç’èYôÊ2€î óøÿI ñhå3g%†¦R‹ÈÖ˜x_DÉêÙ_u Éàéi ¦•¥.ø”O…ŒD‘RgÓ—f{z –Ò ­©á²c”B¹¢)5<]˜)½k¤w³FÁøåèù)ÖÂr—VuåȳšRʶâíasÕlèÔµ—ªÌ€i¥žwuûÆ RFKúÈÀðȘ¾ –¹á{Gtvñ/„ßô$PL {Û¶E÷ó!*ä[¸ÀºêX°Ü(ãa=4Ï$·®f.ÈŒG*æÓÎ|—”±¦㋼ÏÇþPÏÞ¼p00Ì}°À$¸1lŒ,îÆ%]úAËë9Áµií±„;ªI+•\zÓYdò%x줎Œá±æÂ‰‘rf>½­»r P6)» )“­áÁŽòGJ ÜŽïÄKÆÝtNU?‹X;­—¦ÔÐw1‰CªÙåÀ¾‹a@\ÆTŒ¢ñ™ýH-)€ñ©ÜÂ`–°tf:Ž+niÒ”š ÓZÁ‰-8Ôc˜“ÐIè–K½¾ëÃÒH^ã™ÞÿߌöÀ³C*öWüœ%o=FN„<ÙÞø›“”—{0†VÇ;ù˦†Ê0­êH4ÒâÈËÏS9cŒ·MNºB£d×<‹­r¬f»|ôìÐîí¬–%¤T{eù®•šÛ(gÛ(GØÊ¢Gªñ¬•UWó£ÝϧŽÛï štÛ€ñü3Û#'}'Ft£ÐøQH™ÀîÀp&‰¡áÞ|#Æñš8â“5æ|g’o„ÆÜƒc6‰%•Õó4׈{`? :Juøb¬(ÅßA·÷wÐÓI oîóæó#©ˆŽÌ‡q~’`ú|4Õë[Ï,pUO.¦»ªz·éŸ÷0l[Ëí»=Lß‹¦xcχÓTÏ:BQ(r8 èêàŸQŸÁðøäïœ{M:ÁÛùíçûÛíÃ;7R±Ê rÙ½©Ù2žƒ[/\θJ6ÔÑdËVí¡€ùdñjVÛÅÜï].0^®5¦šˆ"xiãU–’æ"DmÇGåTŸ°h(³^c]•ôº)oæT\`‡¨IhȬˆ à…&ˆ%0ØëX«øV~Ïgrá^âäÕ!ÕåKϳkÑuØ8Ú¥Ä$VPëâÍ›À=w¯Þ¾×4£»’FAZžÐWï|p4ÀÇú~¯*ÃØ||Ε9ÅÍ´£µ`Ô&¥Ñm“¹çF—¥nÙ¨ìBc\ÌMÝôX W0dmßmiL¢åÑ¢¶Þ7PH·%N\"ƒþ%jI_Ò_âU,Ù)ÁDUr£‡tÇ»z³V~úÖˆH”J‘ªM¾èɹÒ6òU–÷fíñÄ–ÌyÛ=Øo–¡{ô«T>òÍáÁÛãg¢^8hÊÌ ¡O­k$¡À+Ú™K“®ÐÐò´ åƒÔ’Ñ­†¯Š¶æ•PÆfÊI¥F‘D_RÂ×G«Àëμß(³å„Îõ¬ b¸]ÇëU‹éqð÷Õ“uqQ3êuqA~¢g;éý§‘&;&oèrqE â†x©r™¿ˆèƒ’$%Õ*3ðð$eû›‚„øøIögc×KОl´éÒÐc˽Ä^"hÃÚæ!!Ï ny‰C¸_9Ý>ÚãHkŽfÉûgYïø2.FUÝU‘}ý{osp›YÐâÊ¢øÃ­x®=œ(­íu¯É –•¨OªÜ¦÷„Öï‹BßõJeïÑ“õB¥D#Àò³!ðañçO}·ìÝò%Zýâfy}­8n˜JBå¶“ -Z*ZÉ·¨mÉÇ“@E»®ÔV¦_#æeÿ+%6Þ&¼,þœ½pcÁaDÕÁ…ÓýÖõ-YŸa{ÙdsQf…F8]£qe1Êî®(ë³êUºs›ÁÏ›ý¡ºÖðJ@šêv$¹‡èDŠ!zà1ýv`ôƒ$oKJMßõB´Â¬ÚÈ9@ÆÅ;óÙJ¬n†½×a2FsüŽK|y˜°6š8‡…=Àôâ“ìͧBÕ^çºXõÞ<þƒ*Ppœæ@n¹ÄŠúÎ9Ú.ðf ÷n;Örb†c{@VÁh`˪dì•’²†Š_ïèÅ=qè•ráx¤ª‹þðje¹²ºŒtE_V FF8ž³¾³ŒÎÛÉ`<•i²ðÃö#r© Ûkòïã["7hÝúP­Öñ-k1ìNsŽö¼«KØ(ð3 c¿¿Ø­fJÊgævÍ­i§›G×%ùãƒÛk¡ yŠû?€1Ýjó›MK :âzºí;](,i×:!zÍ`â 4)O%÷ýÐí Šéí³ C-~ûÎ("éf Š„<ôq×zÞýtËš®[F?¬‰rJ\K£zì¹]Øéf˜†~s†J†H4è·o·D”äÔ´Ù¬¦Himd$eeû0cB0rB-‡*ÇFÏÇNz¾I$3FuŠõШªJêu ΠŸ8/uÔÒXEÉ~]Ë † Or,¼Ì­³gÍíÖŽ»ÛÞ;~ñ«·ÿŸÿy÷[ç {Ø{áõ_¾ÿ?Á«ðxp2üý×^½¾þë¿ÿWÈü.eWXaµ^¨TêÅjX¯¾©¯¼U¿Ï7«çV†Ç§ÂŽ-±|ÚÂË¥Òʘ‰3®uÒçõ»ïD*L•º%ýç3Ø*µ:üz/¶JÖ³%Ø9889::¸h° )=,¿«E¥æ6c¢ÁjleÑ#Õx檫ùÑîçÆSÇ á`é$ÃÁFÏÿ9[¥Têè©TœÄîÀp&‰¡áþ⸎á5qÄ'kÌùÎÄ8® sŽÙ$–TVÏSøÞý$è(=Œë—bEi±YUۉجj:ç¶JÙñYM’ŠèÈ´UŠó“ÓOØ*陀®êÉÅtg¿T8ùMϸF‡™¢pá·°YšJfð>:ªC±F;ð»Øãwøef‡¬IP C¤QÓ‘©¼;ÅàÒ§¤Ð.&ÛJ˜„©¶›T¯å6qoàt7”S„­ô¥qÓé;g°nh8¸±Ï«€¾ü@”ËÐj?ÊŽ:ú²‡Öb^ûºŒ± šƒØ}ËŒ°Ó×õ9޹”Õ€£áuñÄáîXf³sæ4ߥi”õ‰,²¡>%l±,t«ÓL3å&½'ÍBv3YáÆV %0®ë“€Ìa\KÀ/&"è6‡ÝDv'ÈÍs¢¤J©[¯îA4Ýz•*n½ªÑ»¹ä™-yŽ2ˆîÁˆŸÐÉ|¬Ï¹Ìé¿=ßBIp&~ôE3œ`““’›$É|€³OSùÍ¿8wɽðjÌIW­.7ç2“η _‹¹D+)¥Ãi'Ú»±›ˆ^Rϱ_ˆõ¤ŒiŠ$$X*~ÆÅ)o3·Šªˆ”tÒ boœàF~lëy­ oÌk•Ùø©4TÄ/{û»Ê‹cwM¯”uu‚†Ã—¯w9xFP8õ±N§Â°r!ÊâÇ[Û»G{â§‘ìÕ… ŒŠW0o&Ù£åð ) @WHÄxt ÜÁ0è‰åÍÜMŽ!âhð6˜ÀàZ¹–'ÛM@JŽ 3#F'TA al00€Y³akFñ‚g—bÖ«âŽøÅ¬Šs£¬V?Âi 4êVÆä×é$ÅmÖ-\häáˆ^bOz#Î`Öò?ç¦fÂõüϰøóº²b¹Ä"¢Ç”0E¨À’Š…,‹²ûž¹¬¥ÏÝí‘y2…„TdØv¼†p‡ƒþ™P£À5•ÜB<[‡9%1$ç¾d.xì¹ixúgdqý¢_Ê‹fãC“¥‘]©"èja&{ICÿÈ2½‹*!B†ê ^€ Œ¤¬µ´‚‘4'I­iˆaßmÖ{Jy5HÇü,·ß¨”ºŸ8éIéÇ'¯öïÃ{žà¤Êçô¦¦JÌ%ólÉ\a*ŒÎÝÌ';žG·ç;’\ÌF?ýçî¸S(} §Ž»7‰ÃÌÌP"ÿ0†oýl^b";^zÎW&ø%Ö3‰-Ÿô>§ûïÌ^b´“zúÿB¬&åh/[ŽŸîåôÍs‹¦î RTcÞ[›#ÆÆwÖó°€¹ÆÆç+§‡Õ÷!W2¨¶1¼Úzq°ÿìö”ºð«š.3ß²7« B|0;‚ìh~¤ï¹±dqû-@M‚cEÿ93æj e'qœÙ̃ä'& îMÒÃ[b(O”Ÿó™I¦ÂÛCc.ñ…”Ñí4óîì&NA©"ç—b=)2§j:.tªiœK©R§IGšxL¹3Æ>â¼=!y*üÃr–•”ì¹(vÜt1+¥ŒúCѯš@ûWøV9\s*«×TSàèðª!¿©`ȱ[<€Õ‰82Vè¼Àêtd¥æE×o‰õµ5U!*8ìÅŠæÆoÑ)žeQ²ÌxÌÔžXù´Çÿ[— ‰ò@Ôó4_ÜOf;¦àL`³`J2Á2Ã3eÂBHÁJ,„vÇo¾k˜]Þó{+‚ŒÌÇ”íù£­ÇÿP¸4¨¶­EQHTÂ{m/S"©íJãv×òñOÙÊooc6 ”Ú€;äÌÍI D‘ˆï_ }D€ônu0/õö6.lyFeEVM× S4¢mŠ8‡›¤Š p þíÝs)Âëî™ßapm[£øZ0ùME¯[™A(2Úì;Îû‹CÁÑÈl^㊀ÇHN·†5.9:Y:°Ñ÷ú3Ý&S 7äX`¡ÓÓÉ/U(B?xG!eæZ˜½¶{‰+HÆÛ£ƒoÆ5ÏåqüÞqUâÏ º”–IÝ –ÊåÍ%~þæ±Y|˳ì ÙÃûfÇ Ñ¶9lÞ¢ ăUÓ‰áQPü½îâ§šýæÙöÎîóWÇ'omõ CöËš@Ö’RBu³éR´DX8]u|› öAÍ®Þ4¶Êÿ×)ÿ÷­ú@~Öõ¢Ím¯%Êrm4uXI$ä”p´ècý>y+c­LeUÅ”ñÏ÷OþTõ/TLÅÐ1"‘vÆ@E¦ø¤…dÀx/£á^R1.°Ûi%þQÄ ·`Ûy•0”FE"%2f™&$C›‰Fà÷^Ÿü® 0C&fyébœI–U0w|¯»Äk9¤‡¹q°à1inœt¥=PvùÈ´¾ (¶ˆMLñÙÞŽ:ë¯hÚ£®D.âÌzÝj;M—üÅñœØ‡Õd꾞cz\¼¤ÅÃgË8ÑJñe ¾(ŒÜ(Ëø .T³p!üPv1ëßû¢RõB–J¾Z_©öm+Çy)‡7rmÊ›XÕ°íõB‚ÕB¼öe/º±®¸G-·Ùi\øþ»š•Ú.ž—‚žh4° .ÏB«ÓapEàî&gÛ”]Cx Ü=Æ©¾nÕWêpÊFâHÿ•2Ò‰íW{¨Œ"y„á‚Òåü>Œ=¨åŒ¤`RÄaÑ÷,Y攜„}Uÿ¸¼´R¿±a{âJؘ\Ó>ÅÔ{œ¦ªIº4 ûÜï³'Á5Í)HÊÄ8hR1Uv¢]•Üqu*i©NC9.h_!PËVÃ"½ñȈ¨$Š–K}Kj ɚĩŒ¾uô±¢Â[óU;賯¯°åW®×Wü³¸Á?oàêã BÙ҅΃QTLõÎmöpÊa‰·=JÅ© ð(œkqºÅÞ5Êqe©mС…%€]HîÇ:4:‚Ù×oGöâŠ°Õ }Ž7ŒбR£Ñ†³B#”+MâõáñPD5ÌÞ‰”ΛgïŒìý³ž7ý ƒ~Iþ&˜êÉêŽ ƒFèò±YþÝêA=/ÝlêÒÕ¿·ööÄñ_‡ÏŽÄÉÖ³ƒÝêGe‰_ÀÄaWê¸0eøå÷Ö¬|Ì@UšèJi“R5ÃJ©Ð÷à  ¨*V?RE³Wok+±.ˆÒ±Á²J¢ú1ìw¼A:»¼ö–êÖFÝ* ¼Z8< A!ì½Y}»´ZLÀ9¹î$äêÇ~@»uë;ô–TUo‰û[@â,fÀ½5±?-ìò7ÿ[Ý¥ ¨TÿTýØnm6#–¿¿¿ØÙÝê<ãpÔúûÓÛz±T(ŽÔûèµ „L…Ç¢H–h×êÖN݀ؑÿ­Ö õb…ú€oNðMTØ@²³T­úTªˆezì ‚Cshᛕ·ÿ[ýûÍ/?¿Uˆi/áCúµ™ì 'æ!¢¢˜Ì_h2„A`ÄÒç8j5<[à“Úßg‰éuǯ’¸X^)½Yoë…‘ý¡^Äø¯d´“g–˜gFž¯æ%«“/',Òq¯ñ„ݳ«À,Î{ÃFgàW[¶ä—¬ò¡¼ .Û)ê2VC…DeyFfÏô-ásI³ÜRŽm㱯E ùƒ“´/zh}iö;Ãÿå¤`fm[âcnÑ툙#) X3…O>¸™£T=AÖJ{j1óÅÇ›´¶nTHh€_(~4š©Ù޽ƒUÜd«üÂrqó&§FÁûÈ,fÛ¨ífÝSšÝvôö‹nÇö¹$Sù'7Þ1zx”­é9îqžðñ'ó4 íú'1ž¬-QÿIä©+iˆ¼°_tðrƒoB€KíÇMæY: A0@îýÞ÷~赯)­á'ý¦ŠgÓ…50Vϼ‡Å©žœ(×JZ=ÖŸ$$âÒ—A’ïøÆŒûwˆò‘t‘àÜ*aÏ9Ǹç(žT„¯07ƒÑUºj›+>oG}ÿ)w!¥.×ñ•˜=i^”¨Ð_'ÊwÀÑ¡e²ƒ3wp麔y%ôJwmIƒÀ¿ >IW.X²E˜!»úÒñ#î¿x´*>}Šž4¶ÿzO1 í§D¹ÆŸÛ»Ø¡­“-)Jñnçàs¥×t0wÍù=„ Z«Ä2rb™$'‡ƒY ºò.ˆå¸m•‰÷wZv¨³ãPA„ßÝaË/K¹‹‡#;)‡; Ú5¶^Ÿ[혅cJ»ÑÀÞSÜg™2¦åËœ=Mw ²Aò¨Ù=À7ƒd¤‰m†nÖ[†¢Øý´ûŽæð Š²VCž*Ô5‡‡B9!f“ÍQ”žÃ²ÅæJdÒ- Hü4J‡v.…ZSÈ•ìœ~ù€"Rã”Ú 9‡ Dl4lBbž6ßVÆû3Ú_ù§$Oêè cn¼|uôüÕÖaºøOî˜3ÖmÉчoÞŠZî#ÝÒ[¿È¢¿ÄÎæâfÉD8£´î Ë°n‰æÉõqX†—c*…ÜÍfNÓ6 JN@¶¤oƒ#[éXæŠ ušHf€T¸÷jw^4þŒ®bf—cѨ›œ¨å1çwòf:»¡ÏhÒ$*zz'Ó2ÿ]0?ѦexaŽúB—Ý„•÷úl׊Pˆ¢,GΟö/vޤ0ºîTÑÄ¢`Ó2µýæ—·è=oJÈYP#'Òñ?³™ÂÂT¾?Éõ_–ŠYjh£•3ª\Fy²,Ë’I¥;4qü‹4d‘ïa_½AÃ_Ú‹g¯åͲ›Š4̇¨ !ôð€I}½Y YÙb!‡K—Ì‘’Kùùövì¼g@;¥äeÒhé‘óJÁ¹™)nnR#U6y2aÈ91»dIÍFÿÎÇÆû¡?p¤,ãˆß\ÏÿdÛEヿ½™g¼õ„]bòåºôΗ¶·A€ÖÐ? ë„ÄpÆ‚J'ãô„sú!ˆé˜³bEÄc嘡Û#Dn”{þÍH×Ó 0}Þ!<±}üÖšd#nÍ´¬4 ›;;³ˆõµÅòÊꣵÇë?žÜA?¿Ðè6å-¼ÐÇrÎÑè4)5ŠÏ/¶wËûÇ¨Óø­ÒUL¬VkS…à›Í^bxªÅlÕ±˜Å¸ª’jãn±PE3ÂôÐÅiyÖPÓ2¨­ˆY6oWS¶žf·oʲ&Å`´×@Ô%ȹ6Ò‰4ÙÈi¹3Ÿò^Ǩ”i.Ÿe5O(”OöËäæ9ÓðydLä´‹$â\D(XM c¶€#L³µOœl怴È›¨@ñ…Rƒ7EÚÔjYvšªp ?87ÚÅš^= l”қў`GÖ–Ÿ®«®Xf„•ÉÄ™”ôÍÖ¬ÌNÈT$kï­»„c‰·•%Y$Ú«I¢t:Ía)¯Ùl`_< V„8~çõ)Cxϰùœ~ß XÇÆ~Ùl¢’㨹Žô¤Øz3Á|áþQ²,ƒuKý^>ªQ4[|S¯WßFß›DÑÑ þZTY?‰£<ßlê"úkxíký\~U­—K±ïðx¥~¤}>$¿"9öÏ‘2R±Ôð,•Æ ¿­”ªß~»)Âoÿf;Z§ã9aùÛoAMô0ìRe©Ž/£y†¼Ï%²dKfˆý\’ÿ”J›‘_Š Û“Rˆ6É”ç¤zQfwlìw ÒTôœsgÀPt‰ Ô¥?Dº9÷}´±’£#dd$ƒV|åRY[*/Š=T­ ¸Ä»™­gû”õÒE~ m·†M6äî¥…Ž B¶ßbñŠí‡(½®´ *ß ÓÒ²ñ>ÕÛ´ÓîT¾Ú»R6.ާkOQŒžF«¸„™g)OÔ¯/ÝÀ³Ã£]`û¹½¢¨%M[_ÓÅä²KÕ6±]W h€ó‰Þ™˜'“Á"Y Ú¹6lëÐ%ï|¸Ö¿‹6’|ÞyH9MV­øõîmHi¡Ä‰^‘<„8@øãÁN¹Óºå®Ûi?Z= »Èd¨`¡ô‚).£,í=ZJs ج ëkg {”ýÙûŽÙ¯ŒQLÙ÷õ5U*ÑkZ?cQ†ÂZ,—8Sí|)}é¥äv‡Þ¬<7"/‚„ü½!º‰XnD:±RD7qŽ;S'ŸÀ>„‰µT:H)ÖI»K7ä"ŠÁÐÀK_䱬5a­\=Yo èñ®¸®JçüI=åô©ï_ºA¿©WÔ'8š„ž.Gä7ÌPù)ì;Aó‹­>!^øÃõà 1t¾û@¾u,…Þ`( .1!8š½{øÝé(±M7°Ù €+„Ãæ…p¨»µ|ì\Ñé*æH»(Žzâxûˆ|_Ý÷‰ÇKÊÚQ”Ï ]²ª…m¨=ìtÊm fµ&§Ç>—Ç[ì&­`F ]îÆ·WË* 2u#ö1”p³•³“+g©h›Í•j`¡Ùt´¼ÁÔšª¦ß¯Ùùí—/þ"¤Ø¹hÀwÛ¢Ü aºTªÕUÅMQÖ‹©G&5) ò;0ɾICÖæH° UhøSiFû†–'ŸÏ´¸ò)ÓGʬXüøk¾¿MDî:ï°£HO/ÄWN wP~Ǧ!Cû=RFÞ´›‹ojÅcžd$ ÿ£É£s²ñy³)V+O*ËKÂ=o†b¥²ŒúËž ÛÂ&ÊÄQ¤%VA`«3ø^. LÖ gðEÞsÙ6S¶Ä!tµQÝV$ 1éÂf”#óbÃû¤QØKå<ëãbÙœyõ3NމJ×J"˜Z$¤‚Óçc^‹Æ»ZY]A7VE hl•|8Öü;›úu)žÜÎwÚ³“€;¥êÈÊV‹á6\Âb$•ŒBÕ¥ ú•¾ô6†€BQ¬±õ5oLF·Z1òˆø­§+ØÐ°tTŦ[Ÿ,U±‘² º5 S/b>KÐÙîà^Îvÿ½¯hGþ™üº½M ´·KÝ£@»ÜñõÝÝ»¦›:‰_;'¶û;’,Û²“ݲ÷Ðçž%¶¥‘4F£ù¸gÁ!÷7v_윜¶î(¿vž5òcøw&(æóÙÉÒ|e’¬(±vϘIbùØûl“oÍ^´c•ÿ VcmvɇöÈB£A@ŠjL±Ñä 6þÅǧkw':>]»gÌŸpøtí®ÄGÀU®ùtm#.õÀì'‘„­´Ü^/¼lØA}<@W+—½º~ÞxÙû„Ÿ ËQUÅTT—¦‚Ö¦¸(Œ6ª„=»€\á“# ƒ¤o…H¯ËBÔ‚ŸÜ=#’µ™ÏÒ»™ÿtp¾·Ž}#éÄ.ÜŠÏËu6Ž•E„ôÚÇ®)HÔ$&³[·JU1;Aiž“öÇÁ¹'KâYë§ÍãÝÍç{;‚øó¢>ù”Òµüˆ¯e³X¡„iA@öÓ¢5Б7p‡t¸§FÃ3€Øõ:£Ãìˤ{Ô7ŠÍçü`,%¢´Àйš¸¼ð;Ød4¢Êb^\¸ï±wʾ;Z‡WåíÝã×ëðŸ7ëexä\¿ üVf½eúópRâDj\g]š ª]l` Ô9z³¾þþn®¿ÁÿZÔ£IÝãÚ ü«oRõÍéz•›®êBË=W†ï6F\²Ò‘N¦I|üª²ª6Û«8¼³dRKëñ+·½²Ñ,ËT”PQ¦ ¬Fõ†hœWߊf¥²Ò,§á\­/ÙaaQ- hi=R3 ªî!4j5Uù”…]02YeÝYÊÈ«µ3 ’¸ÀÍòãqqóàdWl‰ Î_pRô{…)ƒsjä]—r™V4êvnv´¼Íȼtzã®'þÝNë\|Ÿ|Mú.Àä»3àç#|uSE‹J"kÓµdeªW²gרdp¥ï+ð°™Aë†qÑÉ8iq DQ…Ñ =¾ªêzæ´ê{ý¥qö!¦¦„TâÜý ª™1°Ì¡ýù"k0ÈŒµÌ‘þÅG$¸:~•¡»‹aÙ~ä‚)™÷*Ü]˜Í€ÒÝ“-±ê,;«BÑd¥˜›èA©Z·C)v÷ë!”r)t:x7²;ô¯êkŽà¤Ñ ±¬Îèz”êâu«À¶"y[wƒÈwÌ èô-rÙl‘ÖìúaQÔÇ ‡Ò\ ff¡*ªâ¯bùjùÅ‹E±±¿V—Qî¢sÐÖÞáÏ;Ç E±Pu«âŠà©ú{Õ(~zøêèH7ªþ ª›UñÚƒ‡º@‹ ÃT¥ÛÚk–æ0ÉÓBN»~U(ï.Tÿk+6Ì‹rF1Í0hKkËÆ‚®¢³¬üËáñ¬µ3¨»°àQ+Y8[\¤Öÿ"ßà‹Å÷‚S˜”ØÐeÁç|¾ø»X}›¡ÿè‘й­@‰¨‡©»àÇbM¡à Â1f9ÇxÚƒâï¼ékåèT›ÎpX6œv–%Gn0Cωo¹Äy? (bj»M,ºzTânEmÏíg7&\÷7½=ËŒÇjÑ’)‘ˆ˜:×Àñœœnoµ~ÜÙÜÞ9>+ðûxy3£te»Ç»¿ˆ'Î㚈®£.sÎeDÎ%‡Äº=¿ƒ7ûNIOII ˆNW…Òø“ÌàOµ‰è 6¸px­ß`y^RFsP žàÇ8A¿ ½í†,ŽDh|ô#µºñ6q5Ý1Ê-…F€¯‹·%E$3ªÒé‡'C  ÖmÊ’F-©l*•q–hg¢©j–¯š•TÍ&™ •aÂLùŠÔãÆ´h­9€1Ê1=’ut°¾+j©ÑÔ’mW);QÝÞY'00:%Ndµr ×ôºuQˆÓp*[’ܾ&£„ð°½÷bë õ£}Ô%$ío¤’<ÁÓP箫×9§L=ºp1ûœûï½À‰{\ù óÎp™G‘7ú„ý…¿Fw¹ L½NSÃÅŸ‰ÁFåÃÑæÖ¿6_îÔ%BL ±®¨Ž­€†E‘€¡Ì§ðk¦?a樖. •£{aøNÈ|¶pª“"öÒçá6úŸÉ]ãïLL>£0wï˜MjIåõÜšxæöì'EGö´3+²eQm§’Ψé|6óóΘ$ÓQ"ëL‚Ÿ¤˜þ—@ÑŒuÜÜM†uÏ6ˆÃçÿÜ~µta|’=ŒÛˆK=la|4¶òèñÞì ª«•l÷KÅÔqƒ0>ŠtÒa|â÷_1ŒúGz*U''q [0œûÉ_h¸»0>¼&‰øt¾31ŒÂܽc6©%•×skŸÛ³ŸÙÃøüQ¬ÈÆGµ 㣦óAÍåc’TLG‰P> ~’búrJH#‰=*ža™ožl¸ߨÇßô‰ (ùVúÒEõÜBQÕ¹<ÍxA†D·¼- òÌ?YõA®å~n r>ð3™|¨rÏÐ.b‚Á‡¬d˜{|D£¨þpÞ†.6Ò%”5Ö}1ëÀ1KËÙ÷)ì:¸’4íÀúCô ;2X3"N!òr ‚ÎÜhT÷ƒh„x+4 Â’-Yrjã ³ÒíL„LH9†B‰"ùVf©b÷†¼îÜj(²;²Ê€MPÛ£µÜaç( 8z¿f¿¯³a˜Õ’F‡8á´âF»!׿zý¤þÝ›¥Îÿ,;ª–XÙý‘Ü,ô¡”½Bç|rýŽÚì+Dqû=H…ðà%Då<ž ƒ­G! úù¬Jµ¸ÔT:.þÌÎŒ¡ÀÇèýpíc;],&g\/)hR­Ê¢ü*x„—A¼6`¨™Q” ãÛ'R’«6ÕTO3]7N*²J·ˆ­’n~êÑ™žY«Èâ³Ë–)89Èò]iPdÙu:]ÔçÅ ˜7dU›»¿m]#ÙR: Úò5":, ‰Y.YÁKVi» 8lû£K¿ bÆE«Üåv}´SFp-ªÑÅÐ «?¶ž®ÁSM‚A»|*à÷‰"ø\C܃Aë½ë1Cln·Žçâ…ßó g–.¡@¼‘xqðì9GñÐ Þ·µEœ v:&K<•ð5˜øF ªïÉ^å¶¹Äöô=¡öf?CVaª§°ÄÑ-:Ê$LTÔ†\2ÞnTÒådô®ûñè0ð†•„V$%#pºuðS~ å"쪅Å42zº¿ùrw«µµÏãÐOG.B ¿|FzIh°"±H«ïžûI…r%þÐêô»(wWãvª¡ßPùž¾óÁö&iâmuò6Š:¢;|Óˆˆ: ñõºÙl,½…øa¿!´ÙšÜ0*NÒÆ«í!8†D£§6 ¥ÜÃvJ{OÊoº<Ù(7ÆÑýÛSe蕦R7¯4ýª¢ÔÁç™KF«ü;†Êßm§ 5ìíh•õ³×†@VMˆA-ãË–ÙÒ\ñú˜+Ç•E™cpà†Þ¹wµñ8ûÚ±)‹uaÂh.8KÍÅò[d Ê6T,¢¼TSëQ4­ƒ1BÄQ>–Èï]EU¨¤û!huéX‡‚ñæT4@ÖQPàbåû¿®–JKKKâgŽ ½®ÕBxÖQâ3:…lêz#ؾ“jß‹j!5ªîÇÝqjÊÏ$Q)°ñ¡Ô5ô:áyàÿÛ2Â8½ð¤„QŸúpö;sý‹÷²V¦+ähÜÁ t6à€êggž¼¿¤°ÓpÞC‘@AרQ‚Ò¥8LxhÌŒ—NeR†‰x‡–š|lW%(1`êžÎ ûçî°Kq&BÜ|-/A—<`(ÐMü\øyGé²¶bè‘èaˆ<øö-Ñu4‚G˜<÷xÌaO¡!ÁhÏë²kÿ€ÍÝ ‡ç%í“–…§Ó #F$Ý{Å'5©w³0ä*Hò;C2£ɤ“Xõñ®x‹ë0ckMÉÔ‰/_øFÞ<×ý®EîäàãQNe!tÓ{Š}úa[þo˳î›îæû°é>lºÿ{›®¡ŽQ°^R9,š›WÀÔ¶´_©ÌUn¦eŸ/=G¡?•Jj¤ƒ,‰F2 6ª•­£#ÿ!åE•޳ʿmaúŠŠ†®Je""ဩ*®Y/´\Ê‚Ò!Ö30µÏO4d¥AU²]J¾åH/°:1u¡M½s[RÍF"'ƪLÚÿEÞ`©%èfªküQá¿t+‰Ic8¨,Ý`L$¿?èéì1*¢©¡÷jÌú1çÌe%B]dKG¶Å¨]åbø”(# _«q¬}™ìhayñÙ'}Y@Ù‚Plé» ºFÅ+ÿÌÇK*¼•ØÚrJ¬û€ê¤Gûd­M‰˜Ä%¦J¡™'@R…öAýD€¬cû$Uá%4*‡cÏIw¨07ªi¢x$ X©•£²øD~ÐÁ@à†µË¡?©+1¬âår £ŠÃ00üUÛ£[iÀ(·Iä¡§›/Ú<^ˆA¿~³Èù“â>µ¶w^l¾Ú;U}ÃÅ©Ò Evˆe-”Ä<­2Ü}×C¢…½”´¶–¸e¥X+ŸGXeKÀ?#Ž"/S\D3N¢ ñÚøµÒè>_ÅÒ£F·*’ù 0´§1”·éØÿoK•ã}3”â¬Kuñ¨°ìm†ÄZïiTšc*ÍÃZÝüigóTììؽŽoNUb-X%^Ðq°m0G2–\ü,D‚G2ãP5Øqéf¨sáçÂÁb:ÐþCzá=ØH¦¸ýi¾$KF¥2˜$¿Ge>ð9·3ê]#¨K³ðRw7ÄèlŽ“Ü~Õ´ªÝù iæõ|!]Œü …+~#>Yª€ì/EèÍ[Oªn2¤ÞË7t<(n¡*ê¿h.S?ƒÝX~–ég€“­Ì[ïM³x(ÕÝÂhû «EÜÄp4òù_‹ rÁ™wFH¹GãÄè±f+®t‹BÀÒlÂÂ:«K1ÓÊa”HÕ:Íd¹Ëž)^)ft ©›.ŠÖoã`·€ Ü(òÏ•Mv³ð,js9•ÙpaeŽh×@R— t¾Ä‚L|ÈÂê"lg!ݘ‘¯‚¥¾¬GV¦ô† •Éœ>†pýãÓÁ¦aÛ‚þŸÅׯªh»wtéB†o¤›ãˆ!éûã^Ï¢‚ÁŠºr× €Er Öq^¢‹pÜëò©¥1h~ïZvê4FŠw‚gÀØ ÙþÞwž\`Ïv1¹"Í!› G,žA8vÇ–àj’<šrmQ¤òu‡‘ü©ùa¹¶Òü$ÖÿZISXR®š•Äë_Å›%…ç¦#oµÍJÍTªXJ­WßbŽ<ÌýÅ@í’-0+HTk–iy/ÆµÊÆ×r*AТ\0x‡:Ždv ¼´9I–¤ÚnV~^[Ñ@´»LÆ”†ñ·E¢ÉkI^© 5 ϳfC”ëoQfáà l(d,ÿL$Žö]é α°óù*Ã$n9Jüáí é<ʳ1`Œ•Ò”ƒÎsÆ"›¨QNîë‰íüj aX÷ý$ާÕRBõ—T’¦U ÀÛõÏ̤EWƒd‰ïÓŠ‘Ѐ²QF‰Ïâüß”ôt ÃŽÂÆsì=&ÖaûL{B–âÊ~&îÛ±°HÁ®[ÒgðuÏWÙÛf ^ö6²òÎÀïXÞÊ(€%ÓÅÄ*ÿØ›©bF±ªý³]•'«lYiÍ1Eæ¨Úê”-8Ð.†Ò™¯>ÚÝRvÕª“¾+ îTg06rcÕ'…F-„ìnBq蜅#Øææò{û\u7¥Q²"´Z?ƒ¾©² ˆÑ/·ïŸ»a¤dŒ:šì8[>òX¡‰V:nCAo"ÀÓ5áÀ^'Ç”¨4Eç´®ý§ß¾K7úb÷—ýu2 E‹IÔcz($<ývyu™'ϲdhU/¦àÉ”ÇÈ«õ>AaëKƒöLƒ¡÷ž2ÖLJL\ãâ\`ÖR{þ;km¹êL3~nŽ9^äw¡±Ç«¢ÞwÉVß`¨»k *E5©mf¸µ?ô¯ž¨OñGësÆWøFgåß5ù÷‰AÙ0!¬(Ž÷RMaþ0Oû¨fulÍ8䦊°Fô'²ÉM ùD*Jþ²FF¾†® ·Å‘×ëictŸؤ*Ј5Qÿ(Q 8®¡p¼è‹z¥ÏÙ¢G#Î1½íÇxNä€47Bµ3!)šÉ\²×.rÝó4°…z½ëGä¿âŽGaÝ'CáEC¯^HÛÛ{{­_ŽO«ÙEj2&Dòb¿Àœ[ŠcÌÑLD¦3ê’\£¢Ä4Òe·ØïD![Û_²fmÿÇÖö¿1¯%å™À»`‹a/–4»pýwãÉdû#s ÊóDYb£Ì‹D¸h$ニá;ônÈé–ÚRÁ¥5±/O×êm â£MñãQýÕ/Ü$"?>^Å1YÈE÷Yɼ=–W~‡Æ¤¡D¨‚3KžîtÀꑜÉ8HJ=:99YBK샻ôt ©m^<ú Ù ,+1šÜ¾ý«õú1:×Ä(Ýå×â±sEK²~PÅ!ç^àaV29‡´%8„hä¹]ò*z½°ƒ%Óûî*Ãq€–®6uèûßóÁÀèÖ?ÇšSvŒpëÀ$&Fì{ÀÅÐØuÜî2>fQÌ\°)h´fð¶IÞÓu)¹¢ÜMIõ”K—KSí3–¶\ k)… ù·À$áÿwð _Q¢ ÃÖ£GµØU.-É´Xx—‡”QÖb}™…iÝ‘ab6 ôÍCL# rzÑvÞ¯-í鎶át1x#j|ý_(ã¯Â§´ü¤Q²8¹‡FÏ4!ÒcF §ôpÈÇ]Y$Ÿþ¶‡þ{ø³ê¬æ5JBì/2§s5=ð@X„vègÒ0 g,eCÝg‡bÁ‘±pµÄ 6ªýé?F¦%R’¸Qdf¤FÚê]VÞ®ª6| Ü”¿'ú¼ ÎÆùÅÛˆ9õöî:z’4`ÐØ)ùdFŠÿSíÆ¹ÔôîžC7ŒDwóâ`ó%zŒ†n g<Ÿ@Õœâÿתń\­'ÎSÏ[±@ý¿"ÙÞ¥ïqøceYÿZ™~içŠW±D”¶bQK×W"—–±¦{>"7¹±ðóè?9¸Ñ$Rª;åÙ—ƒi¦'öÔ®7íqÐ¥ûô­òphΓˇ¥‡Iz‡-:;Î8E ÔÃú¿à÷bj¾&‰×Õ:´Ú²Ë°•ð9öÝR;ê.Õσ1>`p‰(ì@©wðß”‚ÃʨæñðFfÈâêÛ§­§k*=-öäX¦ñ¨þ{´ø³#$OþK“UR>ȿʲÁÚPoç/·¶ ¹ÄÑ•e-‘ºò¢ >ŽC-ëdš{@Ãè†;»ÅÀöÜ ïZïß:+šNξ{rÃþhI² KÞ¥w¯¹œm+¿/r¿ÊëÐ$ü<ÏvfÄd6/^¸í¡ÛÈs÷ãV^Ä©¹¥…Ê/;qq¿çL/ƒó³¿ýMþønYýx"0æ‚À¼ë!“~ ’àÀp‘^Xæ¼D¬âȃcظO§=m‚Hàu‰™Ò#m¼Ò…“ nhttCºÐØn"9t ` î¨ÕǽÁ…kS ÏÆŽ\õåísõ÷ ÿx&òÙ}¾/~ÙBùÖYn(Š^YvVjbeÅYAòèh‹vÏç½±÷ÎÓ7Âåo“pùÿÂSA5µy£~Kön?±…ÉG¼ÛO~{KöÆK'ã )¶`·ŒšjUÒùÞ/©ç¦x½RÿÛÇòá[çõrýñ¶T¦,·ÃyL§TÀüŒƒøºM\Biˆ§PÌݧDm¥ÅôGyÄ/2cYü¨ÿ?y®‡Ý1Õ™-}[â‰óÝ—î Ó›Aë@-´eã\o½x³¤x_Z@Š9à4E Š‘5™“ݦñAÞø­XÒVÅ…âvà]Faôt‚>ã_ÆÙijþ÷§Ô^}L!Ö"Û>G3¡ì&ÁȧPD ò Ǭˆ”„]H[·ÒÜ|¯º‹ï’E$ûv ãÿ’‡QÀôTÒ‚,ÇBÂÃþý°?ìßû÷Ãþý°?ìßÊýûÂvI•ƒj¸Ç…Ó‡ ë¼³?ÁQkÊQö4:kõÂŽ©˜WV *>¯,à'c ×Q‰Ò€__ëøÃ7/.ÙùËÔ hÅM-–( *&„! Ô1§ ¸Äû°ÿl›â01PobÖ¸j1¨¿>ÁÅ›†qÓ¶g§ÆB†“ŸRYË$qen†[§‡ÅÀÕXP60U«´©Wén þß*¤Å”Aäže3®¥3ÏÞ4æ Å!Å„¾ûCÉÌ0k|“77­•§. X:–é…ÊÞöb,*§Ý£ SÞl2ó¡@·oŠ– ‚"^ü‹dk°©jWFàÃ÷›£Å^w-éuÇTªR uúÝhÃx†²PN¿ÖÜŠrö4Ð1„„¯6çò“êLé”.[’­w¯·/¯döJýMöŒ[­VöCûmh,BLï½ÀÇKzÜåÏ)‹‘¬ÑøOïýÍj5j8K¢ÑÀŸh‡4FÆz¿DPI6V•üåý½è“Z•º¬ßói}ÙrÛQؼÔWè8H3ýQç7M|ìûÁ8jí¥àEPIO6, åÝ…Œ ‚òG­!~—\ ïk€Z2~9Ô äMð ä…q/žqù˜špÌ«¤h-N`â/ó?råH]€`ÑmáÂMbàò"„¶t]óÓ<;vUW"ub gÊ‹±PnÇ«KÄÁÒP.¤ìT³Ä”¾d‚몘È\” Îq¤îÌáÿ¥xÀŒ¢¬¨+qÓ²^É4ý†z—Cw0à]¸*ªœ¬q±ÂŒ. <ÑGMˆ6*:]ÉPžÜ <ŽÑÉÏb‡]dºÛÎR×YªrcÊ8(g¥d‹í¥‹œÇ€è—èÃëFtƒ%B‡AyàƒZ] ”ÂÄF•Òømîµ_¼8ÙÁ8·Ï÷vZÕÛÖ‹×»ÛoZПR"(µÇùÅWó'¶(„o ˆ³p:,þÍV™ n{U Ûq@vd¸*j*Œˆ¯8hDÑ*ØX§þ¬¤rRÊ– mSÏïøpü4 ¿'W™þ¹<ǧ/q*8¨ <Ö%4îµ?ªrèv¨w-ÈMˆ"ÀîŠÎ¸ã<(Œäáv5ñ jŽBÍÃsñT\8àƒÐÝó'Á»Mè5ß~\YvhõÃôuH Õœïïøu%ƒOÎwegµ)&·ü›óX8Ž“² @V¦…²ûïß:«`ª÷l‹‹¯ô4cš Wql,ä Ò¤$äü³yþ¾æfcÃÁFÛ[ãèh«ï<¬€½:u-#ÂɉàP±F‡ŠÅ ¬¹©<Å­ÖâØ¤ãgÂ'Þìjl#/Ï›Eæ ”<”öIø•{`†Ý…4^ÝiH;iMç©øx’ ìÓ•5“En¯R!©M)¥Î쵘ËÀL˜DÊk<™É-À¬:«ËxYæ¶©Òµˆý³kN¤„ŒSÇDr1®L=9Sg˜U‡õohŽc#•Ú1Ê{¿dªžÇìrâäK<ÕwÃ?>ðmB+ĉ|$zc…ŒT,Ä:¬Ç ¸J!§-†Dþ¬‡TµjmÆÔ=T§Š¬›êàñ¾¨°©½Jî®úWrvºîÈý,ïŽT†qÌŽM=ÂÞá=ïŒõ÷vŸoÿ»µ»-V úÌõÚ9>Ù=<•¾ûßpxÇ;?í2ˆ¡÷ÞG6”ÍcÿßRö¿~[ÏéçÊñæ†Uß:Ý0JðÃõÇ«‹É -/ê{ ™"SCi½ óÑɃ _à\‘aÝ„$Më°åy½3›ð0gÕ¡šê6ëÿFÞàB<÷:À Û.l”ÿï°ýøm¼€åð=X”|”Ä}8@Ò©@ Aº•£® Rãð½'ëú “D#X«È/03=žÄ¡‹ÙÕ„ÌeîhyÊЀ憒Û¦Ô" 2Ò#åÒIMp¶$å``¸ÚÖ4 W…ãô9‘‡¡,š´lïíéxϳätb.t«n¨Ž‰M"U,W OÍOÖ£Çkã.æ(k6«ÕƯ¯Ÿom¿<>yóZ¼i þ6Èj¢¹Øh®ˆíÍÓÍÆ³¨ñ+}jµ‚~«¥ Àúlüº‹ºðãõæîéÏî šykJùºõæ‘Ui|h½~Á IzyÚè×›õÿ¸õßAä…7­n¯÷1ó™°äi°˜­ñ±ó!·ÛIqQ&¹y%^¹@¨Û=÷êóBè°«õ:TÆ."×oy™ÏÑÁ™ls˜¬u(F´r{¨¾¿f=­dM¯9[›BD„õýèYø³|ržLŽÍx‚²ùœu¤J³íxÎËT¾$1‘½žCjbJ1¾4~m.<Ãt«Khá‘úáWÙƒæG¹G7H˜¬­6fÅßèGŠøÞ–EÚóAtéR9óƒ(‹cþ˜ÞBšêÈ>få+¶ýI·Ýì­•ÏüÏúw‚þrë~]ÒœuJUÿâ’kæb-fÊqÄžUÝŸY6 YhÊ-&ºzW#¼Óe£È,RXŽ”«CT>ð@¿©È­ |»»§»'§›[;âtçx_=Xde%F#í|.ÍIøÛ;'[Ç»G§(¢¢»—![¸i!À6"ö_íîí툃Ó7w¶§ Ù¤â^ÿ ïô4…ȱQna´ÙÝÀzÃ~¹Ñ¢e¤¸ÿ`¼Ûú:ÃýÈ_+“IrR¿a ) -*\MQB‚#?Dº8g³gô”‘ÊðR©`½u­ü–Ý=âÔÛIXÆî=+Ýò³Ò²è¹ÂrÍ2mm¸…U­æJãðö™µ<é}¨×¬ýg'YÓØàE¡jKÁù }B©Îq§ig&ù»0óƒÕl$ñ!iÌ‘ý^ ¯ÍtjÙ‰ãÀýèvÞ­SbŽ8-EMé±É7›‚ãݺÊgVWe¦€Ãœ%1…õ^C^o£Ê,´ÿ Úÿ–¯V–ùŸh_k`ò®e‘.WUš‹®4¾&­YÏïŒTtc’J#ÌLjҾׇ10(ûœø¨+Άî9*¾ðYéÛਭ‚zàÍ.á`àwÞÔ!Ô ûñIsõÉSñ/ÿ9úüó»¥í.ñê{ùê‰6¸|õôÅ‹-~‘° Q‚!öÃ÷Ø›ñ€#¹(q{Q¨.{0±ˆÚÃwhñOF/Îd g ¼Ò§“u€–L¡-Ôjoª@ûp¼y°}¸_¯T>‰oÄÚòwOEC¬Šæ’X}ºº²¶&‰•Çk«+ûÛê·ËoÓ’’u¯A£Œrôñ×­å¬D›#“2„Ïw8Ö¡‡Ö.êÔS§ãMaã_EŠ`ÔoàÛ:Løhp69Z¸b7è¿ßõ=ƒÏ¨ŠàÕñ´Ù‰sJ„ÚBtÎ/v-¬Dw2:0¿gÏææÓ@ùR”£$ ¹#m/ü?ãࢼNÉîöƒõÎL ;Ñ„~vÓ8:ÕY•„LjoÝnWfùÕ”Så/LPü1¼ÁKÍ¢p—Ѥçà_&@tœûñ™wQȺ¥Ä%ã[Î8¼G«SÓ,7aÞº!OÌÍ2}o’9í‹qiŒ±‘zU“¥Hà=gã Ãªx-’-ß,¿eºÏÞƒÎ1ÝÙÑÊ&SFØž³bª2ÿn9µý ‘¢¾„}W梞øý5Êæ€ÑîõÃâܼÌÞ¶áÇ,ðº¯$ ôÌJ!ôÓ`ÓQä§Ž iÖŠ{QúiÆíà-`Ó°8²>“M&ü~(؉%¯Ö¼¦YEÒ9ÿ(¾þ‹ÃcñÄylhi2°1²¾~îª÷º³õFe\¡Ó|qòœB&gñ¢ÇÆF¾‰[¥»Ó l!öËÏ»mŒVoV“AERÔbŠÙö©œ ê„þ>uíýüŶXm:ßZmgf´@Dm³ê| ‡|ioØØIf© B‘á Cå¤%»š´µ!Á˜ÖâðgOŒ‡çŽB1œÝ.õÀ([¤ÉäwÈì‡(Ÿ‘×ÁfÀ©qÀa ¯If†$65$1PÅSHX š‰^ Ž€ ÷@ÎÌd(í3Ö…€Ç;4–zXIÓ_Të¬öLf.‰LÖ»OˆâÍíºáù ¥"ŠÅää{™(Ž3êŸù¬¡¾—±Ïšä¥uèyÇPûÝ––‡¯Iµr$CrOTk¸ÿá0}«êGŸáà{ä©Ìæ°×«°E¦Ù^–,².FþÕë5Ó†%áofu7#6Ì_^3ò‹rlX…dí »8•FúâÒCutu„@.Ü÷äAÖ 1&oþ4è:ý"`i‚#áÑÎ$†ôÕ’JãçLrÀù‚°å£áµs²zf·wöuÇEôk,‚©nI‡1T¹sÊR ƒµë[ä‘€~}Ý°ç †¢_ ŠY]Ùƒ>ÁøÙÇØ ~OÁ'×3í·^®??pe1B9šL¯/=÷ÌGG@éùï<éøÈJ±t ”¦<wZô]LËNžÅn$Ê?—¹‹ÈƱUlª*Þy×lã PL?Te‡°.^}8 oÈ:|¤Jìöu 7 ,Ì«ÜPªâ †5F¡Ÿ) !˜>è¡c| #Œ¦rý¨L5nq>Ø7®näþ cÍ‘þrÝ(êÏ澘ô¥p/ß‘µùŠ£¸°Ð¬ˆU±‹ä´¼ˆ×2ñ‹íô‹çé?—)òâB4nG£!~x\[©­,’“§ƒ_¹³¼‚ÓÐ(–e¢‡²øDDžüö ÿÏt¶¨mŽsJ¼³"ämòÖñ“t‰ÏÑäù2OAaÊUSÃÂ,¸p\º}’”–C™ò‰ÓÃ-Š:sÇβp»À`ûp&òaS©Â̈†³õË/„ÇÆ£Ëù£G 4 ‡.0ïV™7Ò’/ïH‘!¬p¢ý+ª!GYãÆiŠÚþ9·­&Ñ)¥ÎµÉSèƒÒA-EzéàÕõ)œÃP3ÒÂØƒ†nñL'\f.4å M„˪©˜'£¡ÛõQqë5á”+Æ“(ëx) ¨Câ@3^@¹3;¢º=cüðÖ³ŠL”ºkRDŒ ãÁ©MFd ™NËñ¥Ü«‘àuÞði‚Õªì3;Çóº1*äz&¾ÌOȶô7!/ùˆÔê$bKÆØ.R^q$ÉMØ·=ª‰ŸØnF/lGÝqÇ‹=ùäBwr‚ÝTpl?9/¶=ÀdŸâÚ^èØˆŠKópœŠÀ ]r4ØÀB iW'ÊŒO+Þˆð)S !eàÓ§øªÇø²QÉV±àìDÆ×ÖÍ©lž0øÈ¹€‰ûûß[›[h6§ØT)‚K¹9.ÙR£Tá „n ba±ô ÊCCo4bùYéS‰!bÖ€t´:-ðÇ' ùSµ¤r”˜o¼íŽÑ÷GKb×D®¥; ÈØ²’Cóë¨DÄÈ]ñt­Þ†U͇"©ø’!%iCRWNɳ~×7ÌÌ Ã‚Qü[Ç Ø#üoØG¹¸T"ÅL‚v8Éç²5nI¹{»Á6ÆÑ°Oëøîk‰Ùyñ k•b¦?Ñ‚¢-+­K©j½Ê››|]Öpò¯¬g¹Œ¼ìU+‰“x5sýVc-ÀÖÂÕ*Kj¾Ëx³Sœ´½ëÏ…o¹¦š`½™VòŠª)Ô%Ä™ÉÒËD” …ëÄ ³e·ç—~‚™UÙ´þ6g¢ÜÄ©0{]®Î43U€øKÌM9;9y8Võ ñZÖòÔ­6­9ëv5÷°Q=lTÕŸo£š»õÅš’i„v‘•Úk\ýäuL:#® >\ áÈ„R{‹×åd¡)õÇZwR¬¡¶µë˜#Œ.p9±½¥~ÿÈÄ5q¾7b|Ì—f†5„ÌÜ2“6 øY˜V¬Ó n*&õÑè‘qx6µÌ-Î<ÕQú%»0ÃiìÒ[&†2æp4Ÿ+ûÿÚÞ=.(QUÄ„÷FîÙ¥;›?èiMÄZ³¨¦ˆNŸ©)-cd§õ ïN"ZLÏQ¿MKA©»l˜”£o¨kMàÐ5ñ¦Ù\ü†»Ðl®|s^~› =T(p0ëÔ :E€§2Gä÷}Ì5Šjèð’t4†* (/JºäFg ÏkW k=û¶\¥x# 1 {h•yâé)–Lõ•¨VrÐÍü(cBg‰Ò6tvg¯Š´v·„AÊöÛ nCÓ1y’n‡W$„Ɉå fßë·Ñ¦¨þAè>9=Þ=B2¿i??/¤óQÎ{ …5ÝzÝ\ [òl_%ç3"Š:®d>=^-ã æ™ÕArÑâc9å¸ýþ`­ªUsãù¿qÇ2{ %ŽB+Ðno0ô0êëGfv­PýþOb*Æ‘(bÙm¦jlÒF“Ràò‡€óòçCÀù‡€ó™€óQ×½ö$6‘νíÐRfˆ•~»ŒiÅ9ÓØn$o¹Ñ×ͨëÌ„èëÖ˜ òS/íØ5ó¨ÆÙÙÕiBóç_ÞÌ¥í/þQe;J<ŒH×—“˜ZÆA¥äÔœD ä&z ¾ÀivÏ y•1|¦Y9 uíLtÞ9\O]s£üŽˆŠ„ p§@óžuÞ9Vס)pi~©)ÝZÂ|Õê»ûG° ×Ëtºl%àÅ¡2{=ÄLù³îãFž›ÑŸ7Ä7ù.§•Šð&7XvùY¢ºL0lÁ£Q¸Dh91<\¤ì®mÔI•PgŒ¬3.ÿž¬˜îʙ͙ÁÂe¸p °ÜÑLAdå G{S24ú™ H6a’aR¶Ð¹WeöωETyØ´¥ªN}€îѲ‘³"7#nM,nTGÃ1ž¦ ";—M¯zð CMïã,¶T¤äÃãÙW”duîk$€¨Q^i¿žª™Hð€§Lñ8Þ&‹P2\wb­ˆêH›Ò^HŽ®sÑ»pzYZîuù:K‘Ñé$Õ ËÝ(ÿãðÕéÑ«Ó$‰eÔ2ÈK<=<ÜkÙJó–€kzÞã¿% cïã’³óË΢D޾%¥HjÝh8 ád‹§;[ɾ³TLô¥sPê¹Îçúý̓Ý;'@é€ÇíŒ5µF;}Îà[6Ü0‹QWeHºÇ’¨ó[´m;Þº­8M{WþH¬$ñ‹‚x~'Œ­šJO9/6Y†BÙC¦jÞ ò?"Tô>×é Ô´FPr{­ äÝIÔ{JC9ñF]ü<_ÛyµÆ •Uçç+W¬9F §íÉ=0ž¡tÿ¼VƇÊ:X2ÌY¼b]²!üƒX¿Êðw†­ èÌÑu‡òÄ0¼pQؽÊ¥[›æyŠœõq‚{>öäøÁ§ÒËgó²vÞcJV²·lá]‡Érµè_.X$éâÞÜ ê!ÅüÓÂVîª%©.ɱô¶²‡J 0SÙJ}-8RêG‰TÁ踤©DnO{ 4¦6rJg§2[ÇœI)½÷†í0òZj£ÝHà“5Fæ aK•—KÓ~£|¦YáïŠÓ4µàØÌäœQâá©Y¡È¦E›Œ}F÷ÇB+¢ãk ~ra›x;î%ú<©Ÿõ6|éySõ×Ò Uƒ‡ÚÆ*GDGÉ=mÑBS3%»7•0¬Â.¨é÷ïð*– 5r.2˜¡D¸w‡œ»Ÿà‘Å<%ë"6ŸÒ¬þ||U$奨_¤c*NåFIˆ&DFítèyÏO¶1j0ûa¨Ü㈳­rä Î£GÃѲ*%úÖ£G”¤¶e ¾ Åaœ^ŒÑF’LéëÐÊÅ`|õ]&vˆÍ£kâ=ŠdqyÉ>.{ÚtÍ£6%Êm2}¦Î–¯ìõËÒ9×oÓ!´ÿ¾¨¤_ÊôcEúo Ùm†e®/0(}MXlL%ç'‡Äzi'ªõ"Ì^WÈu¼Ž¡€Tpé3&/"0âOœÀ‡v‰(iŠé…d4&yÜc몉,cÊTKæ¢XY¶­ å‘ £fµ»š*D ú"Ž+mÌÄ<¬ä+i4BrÈuÆmæƒ1ƒ{ÙP2ÑeJ›ô–ñ[¥cx¡ðÜÄ©Ÿ»‘ÎÍFŸs¤™ÍЉķr#âËÞöÏ] îf±„7‰3M’3Pžô¢ää#š)^dÇŽ¨äг÷á–íßv æâ¾É¼´¿ø”XZ¸«9`CÇÌԉ‹beÅYŽ)ñ“]G(¦AÇ®½ƒXøñè»Õµ'ëË+bÓÁª+Îê²rí® ãósüü‹óøÉÊßžÔñ¿O—GT’ðAÛߣßHÔê{ë•ð==ƒ°.-ß?­³g9¹ßžÑ-ZÜ3 ‡öúOJ¦)qyÇqØÆÿ™øT2œ’ÑåZí›9 ØaI!/‰¾¥Bd¨øÁ6£MGy‰€a‚_©6BîÓBæ…—ŸópŠ™â½w{ß‘ªxõ{Ó}1¾—ˆ,&çæ…DB£Œ†À2,À0`óWŠ`ÆVÛ2Àï™à㎄¿«0yóâz÷š¢)È‚diqɆàQ)Á[~a‡“W$óbs@ù±á$ÊßtHæ'Æ vzá¹öˆT>Úú~ F~”f9¤j»j;ÄY )o¬‚GŠnÕD7ìbH\ä™hü*–aÙD›&úWU=l×?;KÀ4«­fCù õ/‡Ð µ™·Þ“jqþ¯4{SýY2 µb’2yL½š9ʺ¨Øû’\ÎZAn+F+¸dW¨gÊø›žóÞv÷Ѩÿ’â;e¤·¹¯#n¬ãÍÏí¤è„œ&¬"ç„°3…Yi¤ØÉÜì’ç¬g£‚@y“¨Säý+ u?(Ò}€Ú¿p`è;gÐÜiã·±¨VbÓ•SÖï³y#•¡†@Ä8eÖxÐöÛzç~„&çÙ,EQØR6ƒkÃvÅeì>ÄzÝ“Þ,RÍAŸT,PÀ”?ÒÚMŠqßÕö€²>¹{±&”BØÈ€³°R”Î>kO{×*ØW)Îùný.øÆ´ÍÝ‹säí†7Õnp>vÏñf:B!L ¼aÓ¨!`-øÒyrvÙéò£Îb£:ÜÖÝNÇŒ¢ ® D«›€Ë“¼–[©²7“¾ìÖœ]Â2b ¤i¤òá²÷é, óhQïÊäÌv^¢Ö\ÀTÊS;ˆŠDÕ&oÃ*±™„¤j- ÷ :/êvaⲄm09òD^Q¢ÍL„¡‚:ÓåªûŸá´ñj‘±0ÕÞ¿&抚ˆ‰tr®iqD€9úìЧÚaî ™Ä×Kr§Lneµ’©Ó\¨ÙSØ«e•Ù~?jã€SP‰Kœ<éycµ —© çÅ ·=ô;žxîõzÐ3áá.^Ä©GÍ-äÕÌ·@¢Ûß;2ýq™á¦=ƒPHn’Î[âdz¸øo^@ïg¸7ùwrw…ÑÓ/mRß¿»^TÓ|)…åò· ^Hê#ºóɛض¬è‰ÝƒÝÓ݃“Ó̓­qºs¼¯Š’¶Bï>—æ$|åü€Î‡Í²*Ó,fVMBØ<Ýû¯öNwövÄÁáÁÉ›Ç;ÛSG“‹{ý+Ôˆjú‘ÊØF¹µþ?:õ†ýr£;EËH¡ÿAÓïú:Ãý¸¹•Ãä~ûNFÑ~ájŠ’¬â RÅCXgWÊ[h¡ü9fü Šv‘[ù-ë¥óû$,ã Í$WºågÈc2m¦Ê5ËäBçP®ŽVs¥qxû̹ ³9‘µÿì$kÚò¿H: ÀRp>H@ŸZèz–¡aigJÓÿ4«?{û–œŸ(yÀ™(‰o¢f3(g/‚ÊÍŠÏ" 4E¾ÛÒÃ)®KËõ îU6Šf» ‘“î0V5étÏŸ¡ìÌÔL= R »[äSØÕÛ*%ÊzávÈî£su[ é`uLÚ|<ï]®µ ’kàÆL5Ÿ;FœÄ^K¶ õßñÖVëcŠ"çÄÅ…\´ú’fmžn”(/>ߨˆÌºøbãƒÌT¸N‚¿¢ÓAT˜k°ðÚh®vV߃œ…V×Þþh¿¬!£M_ÆdãÁL3»ùDz;û\ÜmjwvfLƒ–„—Ý|óf 69cû¼ã½ü’c±ë“Üäï'ïŸÑG‘·Žaÿ·6OÉ0YêPQ{鉾~1‚°ÌX‚ÑÙþ4$çCAqðYJÅ\ =bÔx)ö2Eæ‡a%²ÊrhO´AŽõ‰5 ýÎÅ)x3ãxÃA¨óSKŠ÷^ Ý*)_ïšÓâ^zÕ¡gD\åÌ8"9øQl :/PÜ>¿PÍ“…5¼à'‰m[K'­#Aܹ~Ë}]¿,xq—à½Ä­3ÓŠ·*]¹gò¹Þ0)ÓP-OËh¹¦J“[lΑÚkøÖÿ¾5'¯?AtÝW‹‘ãÈú$ ǸœS$׌†‚Å)h¬9«†‚⢒@P51aiQ2røSh5æ¤9AÇ­˜º+$d-ÛÍ/dÈn:~_ÿúWôälQÐ?Ý 0Z2|Ã6LG±Rêß| "?T¾Ü+íûBn8?@9Brùªbc›eÄûÕÇ+LŸ]"§Nv»ÍÍp’q»ÌßsÓÔ’ùwªU¶æôóä›0,U?WÝ[†9Ä]Ž'’'„ Ž1´S²˜:èÇí˜ÕOï>ræi•›`O±»¦Vr^DˆÉHoøR§²:CCŠy}LNÓÃ:.¹ÂvhëôÎÐyê:¸+ãg·§Ýîµ ’!ÂOñ6 Û<] Kiá¡M óÍË¢7÷=JÎlŠf(³ÐG“äùÙHèf~F¨Týbç2^Úr6'8j“ðü¹j3f¹É8m–s°Ú,c}ÙB³ TýI°Csìò-¿.âý~W¨BG•ŒN˜¿fåXJ]¹,Û¡µ¿†2襔r17²oÓF²¡>â+`égÜ[6,®EøYI6|m@A{“þ½—”²]ÝêZ¶±ñWªkïV6´*[GG2Ô–ü«ýÛyyð%Œê|!¯Íl¶œsÚ'ÕÚ«Ü$9÷a@YÇä™Áà tmQšŒ¦ô+ô\Ž}€¡KÕ%ýhˆEËšu‰zðŽÜ? ðÀ»ô†–Ï•ÔàŸÙ—g™h¹ñL”‘5•NüK½\Ê@Ë{ßå˜Ü¸ÏP $b®#ê…d·ô JŠzWÒ«¬˜îBRcQ@ œçÁþQ¶À{v/‘Ľ°ÖŽ“N¡Yš»‹.–c ÚcænñrÏZ–ûAµô|çåîøpLÎ!À¼Ä úÕøØ ÊÏ>‰ÜÆ_€·”ê¥pL–ËÏä /ÀKT*¼x&èç÷(~â¯z}‘€pä­ }Äl l©²*fÜÀ/槸õG”æè'™Œ‹`ý¸“ÐK³¾9Øè¸~çñÈ€ŒÛ­×b%ó/þ÷SI7mÐ@1d>½ß^óû7ÐùDQãvx«;P=ƒÒŸªÌ‘6þ—J·À~1ÌWà…㨇I½q£*ˆ*°Yn­7ºaÔ ­ˆªãlÉÂèPl‰4'™NŠ™mciJüÈ=ëcÃ"õ¼Mp $tàœ7ØÂàýÁÞêÉÑ[ð$T]nµï­üæhøXƳ†¼Ó¡@ô‘Üfä±Vj2á©P[>ÂËB gÆ(,e’ Ñ›q|‡v5ÑEò™ÏÔþ2¯2ôNÞMlŒƒw°%%iäÜ]<8Õ“PŠX®7ÊqLô8.—¢º½ ¨*—øTeÙ[K7ªÕÕ˜»¥ÔÐ¥y‰qŽ1S4iDµö/ðjlca v#ܼ°3¶Û‚³°ØóÎbs4fǘ4*™-èÎÁ¿ …»þÛ8$ÐE1`È;;Š$Œüº;ª$ìšµýsþÎ\\ÞB3Uå³¥2#Þ‰dƒ>>$ íÙå¢ö?9å{»ÏÉx€Wþî/â1©1A€•Ç.IsŠŒ„↠((§0N}Ç–JJõ4EG J•O¬ˆ·×kõïÞÜ-îÒdEW‰¹Lf—‰©Œ/ôÔAÔâ›Î`lnÏŒ¿' [‘ØÝ|ºÆ2ÌŒSÇxmr¯|Ç“šçí–J¼Jóm„&œ?£`‰Bàx€h]u¾{â\ÕÓ½`zU]rSÀxÌUà÷Éå-ù$dú]ÚÈ`QŸõAf¤F ØÓ˜„ÀQÚ@`­ÎÿE8UªèG‰ûu,rîËÿê^|¤3%Pû¨¤¯:ÕšºgÇîÀë|]CƒvQD¾"µµñÞë…Jøîe# ÕŠÈý2¤”íeǸÉȘÚ ãEþ!;ó·cš}`åbu~·Z/^maœ±Š¡Ìô دWQ–‘/öw±Ü†øîo‹dø%ÁÆÂ|1øðϪ¨Z´ÄaÀÒß‹LTåá,ú³wUüݼڤòê~ íDq1îò¤¿ {OÀµT_ N[ Ç6:> ذ"žŒ’•ÙR” `̘®É`Fù ®ð§–¡#~¾ˆ©sSÅŽCjm£? ¨ð„¤8½tk%=eÙ £d4`…Ÿ÷D*Ý"•¢îŒ;ºÆ[e’ä$˜TßQ‡0+,c/ ¶Š1_•†Ï†% í}4ŽT·iHº~UùF®ë¨YJfÅHÃÀ;7X·ÀB1Þ*1`i«= «Väsƒ#9Ö´(} !Œ²ð:b³…5eŠ…$9~è,Žœî·q†0hÉx„]Ž8ð­]ës°Çz{8R3#{d·'@u'#Ÿ^¯†'Ûz±[‡¥(»6¢÷Ã5­Pr²¾™ÚÏ'?½·°ÌuoÚ˜&†ãüD¤hê§€!JÀÖe€¡”±fj¸¡†ûo­1¢Tßd|K Chý±¸Š‹)‰!¹k°©õzrߌA´ýѥߪZx¼Šx{º¶ÈÍ–ŠààõPgÄfPpTxïw3P0C1VSžÚ(TL'1Œ®›=1{­ú¨^zxç]ÃJîÆ¸3Éã*/Z{‡›Û‡{ÿfò¡¯ÆÞd{ìbÔ¿¸MXðm&ÙÃÕ¥2é!u)*Ù$>!hµ`þ>o$ó¨Äú:Úé ë|ŌӪ±€Àjª~H÷  ÜhiH\Ü (Qÿ>A^%c'"³ ïÓw­‚¿¡_Ê[_óS`Ys^z˜›­Xô‹“v³Âå°È¤Ä2ÅáBã‹ìÔ:vÄÑ0lÃ/TsÙÖâ=]‰ Ô¾r¤üòõÎãe>ÖiPX]à­5i¸l0†õp‘È`üññ=Ù <¢yn×CüÝ%SYn8€Öñ€ÁË…Ô.Ûöi c)jמ±ç.SȨiéS‹8 A˜žì/2Þ‚i@Ä» Œ~ç§Åx~öp޼!02@l¼YâZJãA«„*̆ƒÌ‹&‰7ÒK]ØÜl< >1¼FâÔ…ÿf?xĽª¶„x<ë^½uÙ1XVDÜ-(Øê‘Ù?uÄ Ë7¤“‰@S%3¨¼¤®PJZS<¤å-¢À;‡1ñi$žMøgI-xŠjeY. êöXª¥ ò ¢ ÆÇ{¿§Ä8Ô’(®ï’ÌI§*4ÂÅ=\VÎf›6TË2[-¥JRå îXôþ3E û8bßå²(£ǬûYÇJ—=GU!&ÎÅ2Éú-¾)wp¬ÐÙ2¥×FS”ü¬£ÉUFTHv:~Mo{2í“~š¾…ª¯”ºŒB|`Î-eënÉWè`£ -C)Û»Cé« ‚ HÕʰÏ^rehs†Á|…Ǭ=±Þ€ãOXnÆ*ª} .u‡ÜwÒbd ?èÚ$5:Ì´J‘²»=½F­KW—1¹ó‹/œ@ùlCs +õ»Iž±ÐéÆK“/föZ'¢RÄNâQ¸X´T­h+\I]Åêô"7VujÅO\ä®\ã7X»ÀR;¼V Ø5´±YO Õ¹rXlÎĈ󃎲”8!ãÕŽAì^]^þ›ØÄê‡' ?€”×ñ餕–ònŠÀVP@b>¥f¥ú[¬‚ ‹{{ðs/B‹Âõ8/ Yþ¡vϹ‘>ôN$RÂrÿé·ï'öÁñ¯L‚0ùȼØâÓ™NM—¾ç#’9°Ñu„·*u¦qïRå3_›âèô"‰¥±d´lZ !*»ÇLÎz^ÍF¾úo~u–ð*ìׯ›¥æb3Zù¦¹ò e±Fv´º‹ ûp Tt'2¬_]6^¾ìœ`­Y~&f®ƒk×»‚ø /9cÞäÚ@âo{’ò ©(9û“n¨,kÎT•S³Q×½öäK\L$î ¾ÂÚ˜}g4/«ˆ$L;Ž×Q-É{]NeÆšt!QpŸJUS7ª¿¬¬Ä¨Oúm~ѳ\ºÆà­·¶µç“éel¢p{¨Q&]™Î`~¬­º|ü”^/¨gÔeºRý¥ÙAU㈕’%©YDõFÕKt/¬ e‹¼¸$Õv®ÏÑ2¸ƒ¾n\>^5®ÝÓÔ Å»áeT²ÎÍ’«åfMoJä’ ùŽŽ"Úˆº0™S¸JÅ~·÷öÈâÅÖ½V˜ÊŽÓúCµ]ZÄ*Ùå.ìÅâßx«»Ù¬à‹·*PL·GÂïÛÊÉ;Ð8†5õqZ‡¥1üÙ¬hPøè?ã;˜¦8ˆéÆÑ’I‹\oá?²anKTö>ø­¥0Åí;JP5PïTQ-+f…DYR‹v²Fç¢v…ûè*¯€a—„ݯHÇ9ìÌo0 øJËAæì‰Bé ¢bþÍÊÊæÌ¯êiKK~ ×Ë›œ…â  )%,Q_z=÷E5é›Tû‘(ÿ.P.¿Ø÷h‹^ ÓMލB‰ª ‡›Ð£ˆõäÂáÕÕÚ@·8Œéï¡Å&šØ6`£úV–’<ܰąb¯7:švÆ{GbCP­æ²ãJÞ§8ã;ðwà«3›pÓ?+û~ðòç)¦¢ð Tt»Í€$öw é\Nœ-+›4iƒË[Ιý ‘V«þì0ؼ@x×ÂU ñžfÉöO~ÚR¬ÙÄ7%}±y˜¸¦Ç—Ói³²ÅID¬&Kú‘øgÑFe÷ʼn| ¿6ªÏ´/[˜jëRŒ<#ùHÙ«T púü؃M|ûðDçÃ;1—õÕlƒÇ—W¨œùÖy,¢Ñuï µ-î,ïDiÊÖŸÆA¼Kû w7¶D»ý …ê\ ëG8Büƒfç›Ï‘/Í®oºÐuëW*Dð>ŒhE—;@\ÿ>áq:“&JÛåå•(›Ëécþ±?‹&œƒÜúï›õÿ¼i6×?ŠF“!øû¯°ïTß&×O–kÇ=ÇP'Hýû Cj™oÚnç]¢¤öþxy· X§z!¥)û_Q/§î{b¢†ïbLöüwž@NOQÙÆÑñáËãÍÏ+ëü’mÚ‹Ñ 9£q]þ¡Æ0¥ÙsM3ÔÆÑÍQÊîýf}+"ÃÕ$ßË V\NdÆ*G7Ö)ˆ­jªÏ^wê¿o¹¡/OnÙy±KÖ/}ô¨[QWüÌâ7Í:PŽÄ™¼R§Z$'6};’Ijï¨ ³ m‡´“7œ(»dÛ†¡éá#]""L)— ^Øi@èŽXðœsG”¤3©»Ëxk^V«¤¼˜$†8€ÁÃñâöÇ‹?…ÈNíÒ¨Š´&è£OOK6 ôÓ,Åó´%qÁ*É—œõeõdæ9q­’ÿœŒ#ñ(½à=€AYŸ­Æ|å$òUvÆ›ì‹J„ÃZÔýxôꗺߵö·w’>ô×Ìêö) %¥_ûÛr ªe ¥À²8«\¦ìÏÓ5[ž®ÍÚé’(50Ä’/w)`{·$ØÞ Äøcx©§ô#èÂ9èäG(õ•¤§ ‹»ºÜR„ÑéDæËriUäžM™ €"n0í3Ì'Æ®(<ÉÐûmìe¬KvÊHúÓÌiR9óãQýÕ/(rDb‰‘–DÔ /á´7fBθ2 ‡BM>žt€b¥ã§ø#h¤Çzr7Š$gZ0îU2Ùu8xÅ„ä¶:rõÜ‘ ø—‡ÄX‰E7%yÍ>×AfKä«eõÌ''œºŽ]Ù`Ê¢Ÿ™-€áa*– 6Bsúkœ íÃ@9£BÉèÒu.Hü{ÛLõÇ«—Êð_Qþ¸Tïãixµõý¾5EÙÐQ¤;†ïúî¹ßÙx¼Zoû#Evõ€¡IðN~H¼È6ïâFè@¶º‘§k 6\ÕÄÓµ¶1~ʇ 1pxаŸ®™cX,p€!ÿë}ŒÎŸ¶ó˜F­Rù ~šùd˜/ƒT$L‘|HHªêõD+Ì"˜åIœ ³=¦ö%E3ˆ=â!a¯‹Q–QÝHáðìÌ)Y¢o¸:øËÄOXÐv«A8¶e¥ ; ýnvCÄ(9x{ÄßI•‹žUc·îžixÿe¶ÂY¶²´©ï-w'i+7Ïá7(Ø6é´A0>%e3ÔAàv:Þ€]‡©â †ÈzÄ8O›ðY84\÷ €TQÆÒ&ë é5lDCÈ¡+Ë®¦ŸY²Ú¦¨Ýè¬ÔMfa IdãÐá±yfúáS?Ñ‹^qø~&vÂaÕø0–søÚi€¡ÈH÷ÝÞ)Ôa Ňpà*«|ÿ}Ýnoá^f2r/f¹1•C#ãÊë½.IýdüLçêjû“„H Fœõø7 ·>¬R0“½—Œ»±¡"aÆ_EU¼¡apY~hPºËÞF³l‹1Þ¡±YšS=60· òQÉ]9ÍrYŠ/š’Ó\ˆºøûß[›[;‡/Ä÷™Èð%Œ¶iw`onЙ§ÔwÑšn±ô' 7Ý¡7 Sø©Ä1|0@: ZÖ¨œ4e˸l ʉ…Êáón¿Ú?B‹ Õîˆ}YLØöÁŠz ^Èyw–$.Ë+#‚?yâÇùø¿a]ñ:È"ñ²-1áÇÜËv6cËi‚0ÉC‰DuPî ‹¤2q\¶=f^ìvéôÏlIFQ#‡¡X%´U,A±%½»ÀÀxl5/Í:0< »—±,Qá%å‹¢®¡Jl„ãÂËd| h|3B=Ýq„‰y¥ãýöÞ½¯ûÿó÷ÂB¼5Pl‡4ͶP·K€¤ìÈH›Ý8|`ÛãxìMø>öß¹HÍÕcã4f×Ù-¶¥££û[GÒÑ9|Ü"øªºTøpåcÃíð@é…ƒ’•l<å×¢üQÝ?ª%4Ђ²;Ïœ¶7hÛ²ŽJ |òx½ =]õ¤Ÿ*i1JW³A†XÊxcƒF½Èª¹âÕÄ-èÅOQš7ĈßgbŒç;øVµÊÄ ^wÁRݵц€2ÍŠ28¬B7å ›:ÃV5`d1ÃíÐj2hÔÎÈjõÉXTÅ'é5dÅgW÷+ô¶˜mJýÍ7ç¼µ.êÅG««[Â;‹¾Œ»hÖó­J âzñ¡¦A³ü%ñS´„aÍ£åÊZµºUýãÍ’x»vyÕjôñ[µ½åWßl®/½Eu=ø^{óGííZHù; eUá£úG±Ú.ëá@”ê½’€ÿ;yŒØÇ, fØ5|ËN^Ô°+°ÑqPÓ §:;Ák»>ÆNʼ1‘Oa×n/ÞËÍ@/xõê´ãé•ù â‚NÔÂ&äa¼HÁNš’k¼÷hFӵЩöxáó@fUO.O™ª¦w¢Í¤œ…†ÉÙŠO-i†Lç°}»rY6ôÌEZÈÜ`XªÓõÈÁY9ãÚHÃèH«r{D,ä“Þ¶%A RQW(¡´ç QäŒÉ”^¨Áà&U'ÛÖ¶“Lש¨DõÚÈ—éª È…]S.Œ7â¡3|z² ¸S½æjÐ’újèÞœj§Ô µ;ç6׊î›îºysÐs®|Ï2gVW'ܹ߬•°1֠ȶú‡^‚zþ—mؾܱytxwÚÐzìáÖZªïX3p/Ò0Ç%mZ·hÑãOaåÄÇ3óæ;Þ¯i´µh¾~A$Gg39<ÿ‘2!ô¶mƢɣÅIõ-Û$w z‘hÐc6A*P»_¾z8?j|2%Rl̤òY`¡ªÅÁ8²­"kU Eð‘ñÇZq…ßqèþ :¤¸r[TÊ«LÝ ¨;úébk¹6E¹¸²ò ¹â§å·««œ¸"l™T&ë?žE¦vâ  ìAà?i×(éÚ1Ðwr5ØK™Ö@ûÔ׿S¼ÿ˜öõ·oÂK‰œ?r?ý˜ô]ù˜Wå3yS>í‹r~O>åÓ”ŒOy™}–ÂÈsNÎLáó±üü>¾^@hþåyN/+'j²oš ûRÏ%xkÞêö;ÂÓf´¨BžÌâ“{oЖ¶gÒ.‚Ôûâ\ý ˆic¶Ë°.´iÓÝ![,R‡¦Rž ž6%â5£×·×Zq†:¥·ÇéRÝדpˆ;ÃÖ”¶vÆ6sT‹ÃpI“*£c“„Ç¡’3äæyî|dÌÁ0t7Øw¶RÃñ{®~¶<þ>&ãQˆénÞð6/c•ÁYù«ã˜)ãt ßXúä,¹*”ºH”:¹N„lchü­½xIÐð Fi{è/Lñ™ ÏÜ6Ë*ÙQ™î'Æ Ÿ£mv°ãÜmyßUéïß$E2|¤9à÷#Ø¿:Ü­]¸¯¡?÷8‚¶R·LÑúv/V¶œXœ1="òþäQ›"T 5uôÁæQ<´R¤èñ£ÀbÊ·¬$Ð-%¼ÿ¦5X݇ýsùæäôå36ÇFÇ÷åacpá Ù?„/µXŽÅJAgè£ðØ3’ÿR‰ï‹j§Ž†IrÖÿ¼D@ç¹Ûú“û¯s‹ù¬ŽG“dB¢¹7Œ‘ ù¡‡AeùÈ'«@mûÜØrGQ³èH1Ô¢hH(V¶Cæ,ÖÅôHôèdï½ÞÛ±_ï=Û-vŽ^¼Ü?Ø;æ)fÇ>]T¾ÁB(}›púènƒR¦›™Éf“'ë8È¥dž´áÇŠ °Œ×ˆdõ%FøÈœ<º$¤R7êJ¬Uú­Û¢?—:Û.ð†e4plzmblÂJS ‡¹dIÉJ;ø§öÉ¿OŠº£Þ‚Ÿûé,I]@ È.’:œù¬IÏÕxâyYX(ö{D×Õ _› M*ÙÇFg„¯ÑÞÌÈ%I¤U¤[V…`Ü6 ,çÓU;š –FJÉF©¬©Røa[¥~Û'àrâ®WXp¹,„|ì¦ê‹¡ùð‚>ERˆÌH…EAF£¡Gž·Õ¼+H<ô×åïy½²s à gˆ¡%j*—ôØ­kÀšé]Y\"'4¸àÑ]‚¶ë@êIèÌHe'Ý~… u•ˆ »ÖFå"rId8C¿rDßñ»Yé%Í0Š$»A1RþSä¾fàGÞnÜ8ÃòÐ+7rÀC[Œ[^×Û†1~ºýü·íãÝ‘:¬‘Üd] |û ìžñ@yGcÍ EìK t€cK1m‡F‡·Z!ìH‘»[·¶:C)aĆ,:åNÎÍív¶ËÆ’ež*Ç'¦FïfxIÙ¡µw§¾zÒd*SbŠÑÜG=­)ƒ Âä¢F„aLÖHˆ§y¬ç­\µkI´ ÓÒíÁPv‡6©c£`YO@É—]¬ˆ°íV¿3òñ¿ÔÊ-¬«À¾` T8Ù+«[­vY2#þÎjî cf£ÑÃÑhÀŠ/¦“Îã'y\M·´%Ô ¶¼¥Ð¨Ã.¢®“Éjâú]ÑDûCÈ’€*8/¸‘àè¦Óž?¥r¾Â*un<²6úÍÉÃN  jìÎõôå3´X&}ºÃ©çKýsÉGÍšÈIœR¤Õ±À½|§úïžIÁiBÜWUÞ6„,?ª‘΃·ÁXHd0¾r²Çïápü˜VtjÆL‡ïŠ‹íöˆÑg£|[Wç‹}{ô“!½îÆT¬QÌíƒ1‘øÅýÅü¶1“3`?L–…ü퉡!þÛF›gÀ—ZhLð’a)Ð5ÉÒt7ØZˆ¥ÿC`µKÿ—ÄÒY@‚ÿq¬ %Ï‚ŒÿòÀ€¹, á>@ƒ1’ÁÁ$¸¯ð`Ô! "Té"œ$Ë]a¢Í]œsã·áQ žù ÙPaPÌxãx§ox4Å}… ³c6<&Yö†' ‡²ïÒ6bKmC…  ¡ {ÄÉðînäÓÐ l1çç²à¢spj#@.cŸÙ#ФJwàX»°‚•d ¶æ¸ è~¢]¹üY!¹…¯Ø<ŒRkÀñéÁ®ýüàèéöAaY ª – µ{À¡KK!j elkL½{`¤MN"Q©“I Y•–ØßÑ4ùÖ®0lÿçßöѱ}xô;ÊÒ9:NÔœÐD¬žAî°<ÖrÒRÈ$‹¦Î»ŽèwCôwQ‘ëc«Í$¨8µ ÆÄkcÐ˶StAíuë,2˜„è&¡²ÈÒesŠRš¼ŒB…x¥s‹R†¹¥§{h$áÎŽýÐ_ã£gpùü£ë»M˜ÕÛڥÛn;t¿úbë¦9R̸Dc"ŽƒÂôzƒUÂ&ð;7$³’…š›nÓëøÒD‘—deÚ 3=?|µcÛ¸X¬¬¬èŸµšøn•eЋýC¨¯-~ƈU|<ÿŒA(N‰óž7À³bàÛ¢—ëÑб핕 ~+–T³VWAÂRMJüI‰\¬¢$©å4!Hø\C”XT[»‡ëæäûí%æ$ AÚ–\ïW+/¾Ÿ j‰•vÚ‘#×-*&”^öy„¡FUå¥8ä>ïSaÉà¸"˜£°Œr yK3až¢?B»DíÉàÐ6PÅ¥[I#«Ýiu< ã*maÇcÌ­)ž$°ä]. ½Ô©èŸà´öó:Œ+?-Åu+e1®“|‚rYݲÐ@®·B¬…¶Ì(~«5çc¡³à׋¿`›éÄ–Ì„ÖÏ Xš? žû¼ …%æ;JCÐ[©Tñ=Þ«˜I®n Í:Haﺨ÷בQ³š|»ªžQ ‚‘7‰êŸÑLsÒ½fÄ—±MyóÊBk¡p'á‚8¸5¬Æ{•5³'ß\Ä2‰í+)XALÎà‹Ó&yèùøäoŒš5žêÊùÂ]äVf…öߨöRûŽ’ìürȶ²¦_EÄUze Iw!é.$Ý…¤»t’îBҽϒ®ZÑ'x³Rfʽ*álÄ߀ۗ—‚e^ã…aƒ$9!Ô´·‹¡³f>’MµÍÌg·Á†…NÎã‡ÛT ÐGŸ{ÞjÒ3‚„$Êûdú£ƒ\YËFWÕé ÒËyç`K¿½0þ)ÓTµ‚‡*]ú×ô{âÑ'ÆÚ¦ ¬­J‡6Çî` ‡è~ xwrz¼ÿ’.ø«(ÿÆV²”ÅA Mäû¸9r^hº°h61 µŽ¥Ø—)¨Üvš£ +Ä ”85á¨Çb‚5ɲš‹0|¢³NQËHiŠ|«‹2¾ÌpC–UÑë<£Õmù¢…¼=°ƒ/qáymZhͺøô%ô$¡¾ cÕ¿V[Òäf=™xÇš³M"âÁÄì{^”;‡˜€¦QH¶Îì3IѸF³}ò+ô2ªÞ⥵/ µ†#êâ¦Ã×Ý“Œ<=SùÉ?šæiq/p=OòÐ,Ÿ¢‹Ñ'þ±*‰@ÖLøÆ™NÒcÓFüŽ×'ô€O{ì8ê‰íý×ë þúzmy c¢òmhЈ"¦è7Zκ6òvÊèxG[乿SIÆ‹†{ýœ¡ƒ–ðKC³è†A˜ãm´ž†|ï‚@&È ÇŒŸÿ¯.S€ÌÚ \¡Æ­ª)2eTÍœÍ\…7•'Á HèDW>ë•ÎuÃ%ãÆÕsMãC›­p¬ñ;4¸-=;«‡ÉZj…öZšõ´ú¿µµ´´´¬ºõ.ZC|Ð宸ž@CôŠÖHë<^_›T¶›f"LqÔVcìܱkhnÀÿÊ‘’ºáÌÄJ8ù,  ÈÅÎr~G&ÌDó;’62¿—Å‹Æ{˜y#4èRÒPMèÉ´Ù(Ýð£è¬é…¦FCÈš Ó·z²è‹åVç-\ÖZø¥Õïôi_hµ…ó6Æí …ÓâŽ<áÖÊ#±ƒP(%%­%Nç%i!ÅYéóóOÒùМõ©úEoT“ª.áÐBag‡DvÞÄìÄ TH°ÂdxC˜‹´‰”1Bt‘‘?•¸4d–q©Éˆüù©a¡_U¨5ô9ÐW×6ñÐ&­¬ï¬ v:¥Ï¼ £ 5–.D¸|gTØa(—ó´ªgYj3Ĭ#1ï•?Þüñ—»jµ$Cd@BΦh¡ÇÐ#˵]zºrthÿ¶w|²tX “âï+é‹ÅíµÝVc"Ì`ä°[a:ì÷N ¯<Õ´™é]øÒ–ŽdÐf#/ ì²n5Ø79bÂ'¢>:yrdj™ k€.R„åöA(ÇäFUŽœ&qBö]JÙˆÊÆ£Ê÷åÁ“¿kP-.µôG#)‰ÁÇ7àÿàóû‡2ÞïI«CWÞ  [A§Ñº½-ýPŠ?'ú¶ô)uî¶ÂqáâÎq¨-¿I”~\*…Äæµ·kgjœD¦•…Ñ3! ´úÊiõÕêêÿ©^”BÃÔøÇôÿ‘ ê«ÿ©þçá$)î’l´<{ª@wVHiŸ§º}þ×'qvÊÆ¹.& ­BbðSÕvh‚° ~㙃-¿z h•Àï¶ŠÈ¥’ žÞV -ª[¬³è’b%Wb ™ZB_ZÂ4›2-»‡æ³…Ï{6ßÖ¿½›Ö­ â»ÊCĹ‹°7 ³:¸… `WsÞq®üWh³·Œ=ôÖâ%âÜøt#ÜFŒ&q“Yä¿Þ*W{ /ù&`ÃSƒ ÜÑl^{ÔíÞ•v óF޵â£)Îc±ðEÉaŒ¡ÈÒ“VÉÁÞëéô+Bbp ¤Ì0÷Ç¢ ,‡:6¡ê-ˆòVaÆ 6—hï?;©áÏ– ohkÎ>Ù{¹}¼}zt\ .ôÑ8ö År÷±Á#tzË)è<‚¿ÖØlƒhžvÀ²Tr{!-¶c„ÓñBw[:Å‘ƒ7 êë\ªªõ‹gSµ’[›sXÀê +3Kyƒ%Ì÷âOƒ6[@£X›IÇœX¬b¸˜…ô^Ÿ\`¤auÏú¤•ÐPD*#‚š‡Û…ˆ"(ñ±Ñ¹Y­ý¿‰ªöx¦6¸0Ù%â†IP‹Ð/$I"í6w*_1¥à…cer´ ¡ìD#ÿBü g"ãÑZ˜dÎk-pN'Ò)†¸)8FîÀðwúîCe¬x—‡ŠzØõ¶•F¶i5Q“Ô­ëz1’°NMB—ÀF£ .¨}åö¾{TÛØ’3ÍhØ šRoèÙóûþáwìÓãW{5ýëÙöÁÉ^­´\R0`ah˜Ž3[;Øúb \æ3ó²ž)è÷Âýèô*Æñî'y²®¨Ø‚6>Ú1ÕŠ‘[c²oø €df¹³EâqYŽšcó$’Ü™õ¸\/ZÞÇìL‘"wžH<.˶×ò³³DŠÜY"ñ¸,i³\v{x-‡{ãÌ܉ØÖĹ I7vˆu:eyi•=Ð:¥ÕŸ{¸é$²Æ”6Zï<®a© ÷GÄø&7çSˆçºÏH„˜% ðAt-D»ÞÓ…÷P›Íèn”®˜XèÂØñ1Å’1r¢J¡¨¿P`73Žˆë…IñÐ>5oDÛé;½¶Ókeë$ÒÇgþ»ØI ÁªïO7ç#LPµ P 7€ØlÞ›|þlÜ <Í®Q³ÎZ0>?ùƒ ÐÛ*-v‘¥Zššàg ×·SíwŠX„±›MeR ¸ú Eèµ»þ+¬‰xÿñµ0ª‘`¿û“±EjX/œÑqzW ,ÄÊqMb{5”r]ê¦K¼Ë4$$}÷a|– Âv½~ãÂat»H×éxÅÇ _¤3æ±'hÉ~@9áÕ¦Pe8q,§_=ÞÛÞ}±Wé¶©Òq†* ò!1)4^‘Ã[’_SèÑÑŠ*rŒ^“CO„Wlà$Äë |cbÄÈHJ 6.\|CŽ‘Êqté†70±ŸxÀ£ín?=سÛ>x~¼¸«w4ÑðØÞ&1!ïr’Ó¦ ·áÝjÀbûdû0Z$ K+N T#MZ1h³VŽWO Âi%1’„Šb¦J+ n"ÒŠò|çè·hI(,­ A‚P9Œ4iÅÐ"r€Ù=Ú9‰ƒÂÒŠ$ÃH“VŒÈ¶"­aöŽŽíýÃîíœîÅz+VÎD6¡"'sJÞz+’:Èì“ÓíÓýØPbR|$qxØGÓ³d>†!;f¦up÷OÇê3'Œ¶uXêÙKø$*”(r%ï•ÇŸFqz1Ñù¢ÇŠ5æ‘l,Q_æUg8p¯ÅãÊ#Ñuû~`¹­ƒþ#É…©åÀÚÉA9–Á7»>0ÁÕŠ}Ôjo°Ö :*y0å6 ù³÷ÎuŒt%OÛ–I:›éìËéd´Xç ^‚«"ÿ1`GîÖú0Vøëªê••GbúD†HD(—äûÌþªaànF7x£ø’ïî`Ó.ZΛvId¡gR)t!QƒmèˆpåhgÛþUlX¡9ÌórºéÂ3IäHK™tþ-+B³û+Î iÿ‘_iÊÈæ“ãß¶%LÉâjc2Ý‹“Ôo$#j–u‰”l1ˆ(;ÅE?œg>¡Î¢çð sÖ´& ³ßÞ]ËýAã¢ÛšwØêY5ùC+ôcå»v@Ú__ŠVK|{Ôq›hÙÃÇ6á§ã Üñ:˲ê½~ô¹~äÙ~n€Ù`DY’{Î/*±ñG•8ÉœÂJ¬ )¸’Hv}–F9´ÄE;Ã5ÿä·ãïP'þåï´ù„Ÿñç¨ÕMOºôÄA£ï†øVT`yP~Ä5ŸÔjÙ*ìpàð))ìLq+•Ç`ãéÑîÕù]®øÉÁå ËAH7Z1[ ³ÃØhó&û ¥ ØØÊ7T®Â°u`a z âÈCe9+=~Dô]Ú; :`ÖVh]«R(pƒÕêÅOûOžþswÿøVFc(©¹wRÛúO~ëgªh%éítg€Wr-eÚä ®S2àúSÀ磇«P© ¡ ݹ¥Ëlñ®ßã`œ ¼‘ØÖ*Rp8=(ÖÄE–´ ÖlÒG‚Ć¢\’ˆ§ÃšÚ½KëîÀ±*¥@q"ÍÙñEðdƒðÁ‡b©YkÄ ,L·_týÆpx3f¿ÈDYûE´èÎTÓ`Æ{K~Ý~™oŽPÉö„\¿–€&09nIƒâKrQƒášfY¢EKØÒ=—–œš>_Z²,| _è8GÕ …¡)”OÝÞÈárgMÒ¯ÔåŽæIQôôzi‰K%ÍC5ÛpRŵ¨<3<<õ\ØŽqã­<\½ûn{ȸjVf±šuk‹¨’ÆCMÒl±å¥DZ\Î]kK¯½_fc·DëùW$±$õäA]îy·Ðer …;R]4[Àš9‚> uczèáªd0¦Ë§×¨æ®›,iZ*Å´Jû'Û§§ÿNÔÏtñØ… ¯D@̶Fiù±“€ˆ8„j7[ÀüâÒ}÷¾Óíyý8úxu}ó§Ø~º³»÷ìù¯ûÿü×Á‹Ã£—ÿw|rúê·ß_ÿû?gVˆ?Î@bÁ9¹BOüÊ~¨vçL!s\C>Šž Xð7 ÂI| ãÝR±GßÅ ]~XšµaŸ%„2ÀôJô¼”:ÌV „ ²–³1Ú½ÈY°$S§èG‹4Îdª©›;wB„þ;vÓ:iX©ŠÄº,­[-§EÞ éžR—àKÁê)c”k%YL'Xع$ ;ŸhñÅd‹…p‘G¸`ÅaÁÂþŠ’EÑbŽd‹TábfÒEnñžD¾°“Œ1ÆEŒq2†CȰÿ ¤Œ»ˆirÆ=4R$¯ j,d)e ac¦Ò†?ôÑÎÛqC‘“7ÝìÅy!qdJÔI1™C5žgâÿ¿‚衊){h¢9>tYbÒ‡Š¹»ø¡gßXùCQæ@‚Ym%L¡4$H5­ rrzüòtÿÅ^ª¢«‘%…(¢{-†„Æû¤rˆ9BK¸Ž¸'’ˆ.oD1ëñWÉ"‰ºFr#¤=Yg%ŽœçGÎsŠ#ç_L9_ˆ#Ó‹#ç¦8òÕ$’ó<ÉùI$ç©ÉùÌ$’óÜÉùDÉy¢Dr>F"9¿³DòlœDržG"9ÿoHÎï"‘œ§I$ç÷L"9O‘Hο‚DoÔ…D’O"9ÏHÎg'‘ §‹îy„‰ÆI#L5{Y„ù.$‘)$nº¯rÃYg ’dDY’˜àÁáw;ä,+t0]>‘CÍ\+6UÒÄ •bZaçÉV¸PÔ…Ï4˜ä^‹ƸžTÈÆ{hi–Á÷DÀ¥ˆAþ*á"¡1¢EÑB‚@‚`!'çLÄŠ‹.r³c E6N´Pt³.ç…x1…x¡oå+q¨ü3¥ M4r†.KLÒP1w—5ôÔ+m(Ê|òF0¥­„ù“&s©¦•:ž¿@¹Ã>N•;t5²$Et¯eÐxŸTú0çAhíÖ÷DÑåÈ f=þ*)$±QrH9DC‚$¢'ë e‘\’H>9äKI! djä«qpÖ9„ù=ÒY‰y…ŽIDŽ$#[ܸ«°1FÔÈ!hüˆw2RDŒû%`$‹½p±-¦-Ò‹Ùˆøò¾“ë”à'`¤³—2 æ Qc QÃh¿¯uâa!Sî0éæ@ø0‹“@ŒÈ»‹!æ¬+‹Äù’М·’§VšhJ;­|‚…Æœ‡˜µÊ’T º{-®DçĤ2Kd®„}3îžH/f‘#"L¤6•“ÖÀ a&‡0cÂF‚DcNâÙŠ5y…šÜ"ÍhâÌ]Ä™¯rx¢sÏ'ÇÌ•“!ÃÌP‚™@~™PzI‘]ÆJ.3[ÆK-ùd–ÿ‰ånòJº´rïd•TIå«È) )ej)%SF™Ñ}Ž3DfÞy;jõ2~«c޽Û1h¿À Á}!­LsÏc4àWÓ71Ê}ícÎä*Oü ȈÁE9=Ç_Ô9/…BÓßJ™c©D¡ÔS_í¢0sôlw;Ý"I¨j™WFá½–kbócâë£È¼ _À˜‘÷DÀ •9z¡©Ï_v­”ÖÈ I'Ïå’ IWLæd6ä0¨unÓD^ŽÐï)jô»xSåŸk|cz›‰lˆ7IâKgúeqˆº Z(¬ÿÿÿÿüÅ©}ôìY²s’IjiÛ9êiÏ ¦ötuµÇÖ6Ýùnx ‹}»<ìŒqE, m Ìí~×H³¥¬+Ç£¤©yÃqDœ&ì3bj‰\q|ïÜØ-ø6wxO0N:§˜½ŒÏczI]òú_×eUã"{¼=W_¬ üûÄ÷xy2…øò9åJèã4wëæøXá>ž&ŸˆŸ„'VæDM÷“8M+ô¿<ýªÚÿÚû·½ßNÓ3*žµˆ“ßëm@Ê<›t3<ÿB"tÉ=Ù$”<²=H®Û_µIÓø‹­BŽ­Bø$l&ÿLŽI_¯×Ê+Ž!i^A i¿œ†ÜÂ×,„/lÉù»°$¹."œ#Q‹Ê“*daììÄ+š­¹+¤žL¤b4HBzÎ9[ŒâÔw ŽwÆ‹NTµºêuàd}å:máÝNG4úýÎvš6 åÎÈÇÿ PO(·°v,å G·²º‘«d¹tìE«èˆ{H7âÂNÒg+!ñ ILwñ?Åýo˜ äŒ]‹0&MTQ+˜)w`_ÝI &œr½»µ¦ée~$½Ì ¥— ,/,½ÌÓË/ƒ¦—YpzyÏñôr, ^æAÔËé õr©sŠ©>ºÅΩåD Πú¡ixªbg §À5M1îƒ)?K%A&”ÍÄHŠ}µÒ¹Ҽ©A:JÂéœai–pª£gަéÂ)EÞo<#œ*Šqˆ:pJ=¶ÀÔùÄÔa£÷('¦¤c0)˜:G˜J]—Ž©:z¶˜ŠlS1•"ï1¦bù³1UQdb*MŒ©Ôc L[LÍ©¹u¨ó¨Ùxúeà4 Mï9˜ŽÅÒÔëßøîEÎ#Óõ@•Ä P#PU˜¬&ÅlÁUrNXAVV!h ¢L°Õt®êÃèÎ)èæ|0•÷½Ôâ¹Ôœ¡lÆk©/òX*ã­Ôý~*5î¥TއRS½“Z<“šgôÌy/•û‘ÔâÔÜhÆ¥Ô—y!•õ@êž¿û<*Ïë¨éG-ÞFÍ/¶N7”Ù@Š„  ¥ŽKR;S E®i@Jq÷H±ø™@ª²€”i&Rê«Î%:ƒó|8fÃ(Ð-Pt~P»-DUäL1˜¦A(FÝ_…Òg¨ŒÏÂO"™>±—è9¯èÙÊ Ÿ­¼øÙZè\h+A[_B[Úºß Ú‡¢­0Úš G[ S ½îo<̉¤é(EʖΖR×¥ƒ©Žž-š"ÛT8¥È{Œ§Xþl@U™ˆÊDC*õØSçSs¾Ð7(Ç"êâ}þ|jÆó|;k8M}œOq÷L³Ÿæ+‚1P:ÅÃ|ê«Î+æÆÑ¼0º@ѹBÑLý"š¡÷AÇhüœ >è9·èÙÝÈŸšt,‚v7:W ]—…¢2zÖ8ÚÝÈ@Rˆ¼×XÚ݇¦L1O‘h D…[`ê\bêy£™S ß ÌFT$\êü*u\*žêØ™Â)rMCSŠ»¿`ŠÅÏÄRE¥L3)’R_-€t>´íæÔ#5(Ç).€tŽ€;.HUìl¸¦)ÆÝc …âg©$ÈR¢™H±¯@:Ÿ@Úñào>$5HÇ@)R.°tް”º.LuôlÑÙ¦Â)EÞc<Åògª¢ÈDT&šR©Ç˜:Ÿ˜ÚmäDTM8O»šÎšB·¥c©Œœ-’v©8 Q÷E»l åøLE’‰ñzižóŠž×¹áó:/~^/t®ô:A¯¿„^g`èõýÑëq(zF¯§ÂÑëÎ+æõCjPŽÒ…ÒùÒ,?¤:vÆ@šî‡”âî3ŽñCª²t?¤ÔW S õÚyTSŽR¯½ÒyRè¸ •±3R¯¤wŸÔkR&ÈR¤™H¡¯@:Ÿ@:È­’o’ŽÒÁB-¾°t©˜DÏMÊùyñt0NA_Sd"ê`*%}Î%¦^4ºy¯›LÒlL%ʦΦr×¥bj=SL%¶i˜Ê‘÷S©ü™˜ª)²0UMŠ©Üc LKL½¼é{9晤٘J” LLå®KÅÔ z¦˜JlÓ0•#ï/¦Rù31USdaª$šS¹Ç˜:—˜ú.§™¨wùlD½[ˆš#(}—aêÝ0 õ.Õ.Ô»ûlê]¶E¨wcÍA½›ÂÔ»…!¨y…ÌœÏïßå{{ÿnñð~ž 3ãÕý»/ðäþ]ê{ûw÷ù±ý»ì—öïÆ>³7Åûw‹öó ™95žÞåÓwz·Ðvš'ÈÌÐuz÷4Þ¥ê9½»ÏZNï²uœÞÕpz7…~Ó»…vÓœBf§ûRÞ$ÍN¢\`çü`'w]*|Ñ3EPb›¢yq”ÊŸ ¥š" M%Ѥ€Ê=¶ÀÔùÄÔ nå;ù¯å;‹{ùyƒÕ1ó/t3ßɼšïÜ÷»ùÎøËùN®ÛùΔ×óÅýü<ëw‘×ëˆI:\‘r­s„­ÔuéЪ£g‹¬È6X)òã*–?VE&ª2ÑÄ J=¶ÀÔ¹ÅÔ¼ÇéxL]̦fèè™cjú1EÞoLs  (Æaê4ÇÔc LWLÍéÉÉ ‹¨ ON󨞜tì¬á4Õ“ÅÝk0Íö䤯@éžœ¨¯@:¯@šGóÂèEç E3Aô‹`h„Þo 9ðs*ø\ çÜ¢g37|6óâgs s ÍLm~mf`hó~ƒhsŠ6sÀhs*m.€t>´ëµÏó©A™ ¤H¸ÒùRê¸T Õ±3R䚤w‹Ÿ ¤Š H™fR ¥¾Zé\)«WØ9D¨óèHÙ ÷#sªºÇèIÙ_À ‰âœ­+eßgW$ª 9ô¥ì±Iºét¦ì…[’9ÝžÓ4o r¡n”<v5õwçwƒ.LÞ0ÉL‘W³NƒÞ€àþb¯®C&ø†¨²Ð× œ~ƒž\àïœâïõ°™ç”z£äãðWR/ðwžðWuaþš$3Æ_É:Á}Æ_Y‡1økPeã¯&œUO.ðwnñwè]59ùÇèÇ#0“/ x¾ Xvb&43aæ…Â’â~Ã0Wb,dã€XQNƒÄ²?P<—PÜ÷®ò>à2I³˜(Ø;?ØË]— »AôL—ئ-GÞ_œ¥ògB¬¦ÈBWI4)°r}]LËâФh¸F³ÃÔ^Š ¨WKÀ|ò]¯'~®‰G•G_Ào:üæ߼л޹ÞLØý" ›¹÷pÇÁm° jÂë|¢çÀÁ9ÕÎ{Ž%ÏFRM½ÀÓùÁÓ  SQ5L2SlÕ¬Ó6 ¸¿8«ë‰¶!ª,Ì5'EÞ 'ø;Ÿø›[…aW{a°P\˜/ÀÍÔY|u…A†¦Âà~+) Æé' r¨& ¦ÒJ,æH½Q/ç]˜I:J‘r¥s„¥Ôué`ª£g‹¦È6N)òã)–?PE&¢2ÑÄJ=¶ÀÔ¹ÄT¿Õèä|lk’fc*Q.0u~0•».Sƒè™b*±MÃT޼¿˜JåÏÄTM‘…©’hRLå[`êübj'§g—0q\í,|¼Ì²v2½˜³G×NªË}϶“íüÅ ‹²)ÜÀ¨Þ[ í|"­{ÑsÏÝV#ï¹@<ÁÄ è¨;G¨ktc:òFˆf‹¾óT6Hî1 µÈFâ0]&›¤#²Ñ« TžSTÎ+ûº9å^w!óÎúfÉ»î—uÝt9×½×2®;F¾uÇ˶î4r­»iç=/sÃçe^ü¼\è\èe&‚^~½ÌÀÐËû ¢—ãPô2Œ^N…£— S ý0È©wePŽR \é)v\:ªØÙ)pMRŒ»Ç@ ÅÏRI ¤D31b_-€t.tØÈ¹Ÿ³aè(:?(ŠÝ– ¢*r¦ LÓ £î/‚Bé3TÆgá'‘L ŸØK ôœWô̹Ÿ7(Çâçb??_š±Ÿ×±³†ÐÔý<ÅÝkÍÞÏ+‚10:Å~žúj¤ó ¤ìã<”š´cÀ”Hp:GpÊ—¨Aül!•ø¦‚*ÇÞcX¥ d«&É„VI51¸r¿-àu>áu€­•] Ò1àŠ” l#l¥®K‡V=[dE¶©ÀJ‘÷W±üÙ°ª(2Q•‰&U걦Î%¦Þä4x“ÏbàÍÂ\àAéM†­À›/`(ð&ÕJàÍ}6x“mðf¬qÀ›),Þ|m³€ ÈLƒÌœ¹‘279G¹‘™_27R!sã>CæF6dnŒ…Ì) sc™s ™9¯çoòÝÎß,.çç 23îæo¾ÀÕüMêÍüÍ}¾˜¿É¾—¿{-3Å­üÍ׿”¿Ä&´íáåÀiÐ3´))}¹ãµ ¶þÐ4.œq‡„ IBÀ3 ð‡¡Ûª‚4…¯M!§ €ê5ôÜÆ£ï¶Ô¹Æì'$á–Ä9òŦ‚‚ÅPžP =ú Æ@V〞mŸþz¼·½+P0†Maº)*@lÅb©_ S,cW—T  øf8;h; u}Ñt/ £j5¡Ñ6>qڂײ5Éôk^ˆMmÔ{ßó®zÔ×ËâÄeå\\9%!m§Ñ¡ò¢ø†õ\4³C‰=ãï8/`yéñú²ýòåÁž½³cÛ…%ÁÿzhŽÞ̽Ñ'Ãôª’P.Bü×2dˆóª=êvo¶Òæä’0… KËbûLšjÂJéBþåÆÛóNã‡Òï±ç°ŒA G½Žãû˜û–züo(:N&ÉðÊ3YpëBÉÏJ ð:ÞÝ;†õ¤5ð*2áL&i¯ÕäúfŽ3 ¢~V³/)Kös!"Â<Ä ¸mö›o„Ýnïîîo´ÄìèƒýÓS€Ia.)©C©ônz#_ȧöòÃh’[VM‡ì4‰¶‡k!t¨ð¡Õàu½@è7ÊŽþѼ!ÀÀ—ì¹¥ü½f4òƒšQPlb?¸²‘í /1qߌœ\â5â,&¶ÄŠéç÷O· [4è =½íðȇbfÅ©\TÖʼn×i \õ‹Ì{]¦1ó:RRXtLPây„ö—Ÿ…YíÈrÐb‚}± ¶#Û¢Á)ûïa¯–h¬"ŽC_¶HÁ–¹‘#êtpƒ#æ6ÞoÄÅÀé÷Qbf!Nœ¼.žá`EZC(sÇ™ÑXò/=z’±ßr]»Û}óVÔh½û$^?~ôøÇuüüû“ïñóÉÞãÇôùã“ þýýwøù÷éSÜ‚¼´åéº!žO~|¼ƒi¾ü=óúþÉŽäÍyü(óØ£<˜'rùŽMÅ Ù‹‡.1•ÃVWÀ}+¾ ²vßbúÛP¹œf«í¶¢ûáÇ]ªÌÞw{ôùÃ÷?ÒçßïPÁ~øqç1ÿþa#¡²’i¤wíP îüý‡ï%³ÇÌŒ˜Àï½Gø¹ý}†kË,“«dGõ ªTXž¬aêsÏÛŠ‚„dd4+P­ŠZ-”7†å?jË Å‹¾ÓÛ…©urs’8Q®¶ÕÞ¨Ó1„h‘†0K¦Ì®ò8pOO;Îe3&Î$˜¸±ì¬,-%ÛRh÷± ¥ƒ(˜ÎM¶hþ·é>îö`ç¾w:4ù/ý¾Ó[ÍÑO`6þ/‰9¨­öRx¿ŸwED‰Ö3Œ–ë”oCDcÔFÆŸ,?0؆Â^9¢ã‡<É0©_„x†è÷kcÐt}¯÷ÍÉÐqþ(f[9O5Æ'½uëxxC¿³¥Ãè`¹õÆwÿt¼s±¢HVß*’[1R_G•žž©Ÿj²T’Cm¼ÅyÔ¹gÊ`Ô˹ŒÂ€J]EãÇqkÙ÷§¢;kM\t½^ѱÕlÒGÂqžÓeŽ’¦Óè&®Â…`øM{Zšf‰Ö :Ò "‹6Œ±å,4ÐjÒ¡áþÞÞžýbçÉïc'†[[2mÏKOúÃÃþK)tR}¼°Êò0ž§;QüEX2¸Ä¸ò£xæú}XQœ¶Œñ=·pÀ~-•-!CÀ3Ä3ø,þ©3)%¼–Ëx€TözîÅh0ê6ÄUÃPÊ^%¸(~B"[}ë;Ã[„Eø4Æ0èR+†©·Ô8«A\(`ÍçP5þ! j¼wji`RÌ+‹0K 7—×=/teA·*’»%»,¡r²Ô±EÉ!v+’™Èë³h"Ú¾Djˆ­Â f™-d•÷£ýq[•˜kEÓèê•â‰:nÓ⋇:DJE•ˆ´+‹Ã-}Âyt¸ÿüÕñ«ÛèÍAcp³.—7H=QùDø+:Ð8@¾…Ñ®øDºG ë:źJ’™'g ïN]n™áâ’ÂmK×­riYâ3á×p`û—g…×|3'‚ˆÑ1&–áAÀ§s¶Á¢‹¡…£—.Ѩ©ëÖu½IX§Ö¶` ˜ ÄtYÔ@Êï*݆cȘ«¬äDY·è”ÂLö¯Ô1›Å­úd·ê¡M½_QÍð¦=6B’¯Ýãd÷õ>V“Œ ùDÚôÛùòÈ¢”çîO¡¦ˆÛÆE:à¬9Ñä,Þò›ˆ1Q–vͯ‡iô–_6£– a²dSÚ³´†Ýøö×ÇO_íìÚZʱO_íÕŸmœìÕJË%…n‰ 1>--îé«Ã݃½c(ys„ÍnuÛØB¬]‡ýmã ¶h$D¼h¼wð `$­·u…âôÒõéL$¿t`ôú­ÛB•q]Å$¾\Àhzãâ¥Ç°À¦óniaÁ"?ÿĺ®ð=Lv,z°0ïÆfBÓ^9N/Ä‚3ôi ÔáÈÒ_§CvV‚ÜûC\™Êe,S+…eóÝwÎG,ŽG¢'—‡.ÚÏñ RaÙóun¼ÞÇ–†À檫.,óï§¿N1ÝÆ :õ>Òñ„Óîrb.C5rFP´^ç¦ü TdHýØ ÔÜŒ²¡Ï‰+n¯€Oî÷¡:‡ATÖoˆNN±QƒiM9ž1”:½ö¹ç•ÄÇÆÀEM_¬À> ­æ WaŸ= Íî±TÓ†&¿Â1¼,:^ƒN¤†ªï×e;­QÒ5•ñWl>¡vHDç^§ã]ÇÔ­AƒÊ1® ù`È\ Ü!çªZ£ëú¼|@¯9WºŸa„®:sè4 9ô<ïì[‹F'6·ÛÇ*àÎbF‘s~î¶\è'Þ:ñÁªí%G–Ieį:Ã{ £÷µTjþ^m”5hˆ6`¨`£Àxv¡ß`#øKçË4˜gÍ%ˆ¢é’­½ÈH`,·®,PF( nö¥®`ò³êÙG?ƒjÉ>äZ_ý£¾ò¦Qþs»üû­üò°ü£ýv­¾Z«¬UëÕ~éŒ49„ißAL;µz±È쥎Ț“×êneŠMHP’ÍUÜß îÞ—âo`,,Æ} ŽZ%Ún )[i ²«0 ãÒÖñÌĽXß|PEãÂÕ0¡æÛ8gµ¼Ã§]¡Ü]GÒ¢êŒQW{V ÍÛ“1àŽ _Õ©9PPó?±ýš6‡G‡{¨wÆAtF!mYãÀÁ3¦÷Žp®û$ø\;-[Ñ<Àc#¼V*~âo·%’ážâG×£2=ªÀ¬rúxÄ͵ÙÝ?†áû;Žð&a=üÑÐCÐø¹¶QÙxP !ô¦×z9!xã näíl+©–ä“z:dS éj’”Ú"èa‰zñ“Îí–ê `œÛZI©‡Yé­0èx¥I²X„•2U¡pp êˆ)ÑT¿pzΠPÃg-XyØT8ø¨alÙ3®X&âºu1äú]Ûï8Nßî»í³,~ÅÛŒ«Æ GJ'&^þ/÷w•HzÕpq·a°1K E½ÈN|Ž=]8UW%T‘½×{{¯Oƒ*@‰lÓÇlFPì„-J·k±t®zsðiûÅîÞKJ.ÌòX¥¼5J¹z‡Žj»¸RÀ6®nQšºÅÃÎGèM©Z)¼òG7|ôÒu`y£ÉÅ«ÒÓ’Ûûè½wè(L±íÜTÂJP‹p%°¢ç <¥èïì$W&L2Y¥BiÿòʽØÞ?<…ÿöŽíG»{ÉÕ‹MVÁHêEÿͲr¿ï~÷(¹R5Ye(Í_^‰½Ãí§{öoÛÏ÷w“«%š¬b‘Ô_«ŠÛ'Û‡™Õ#‚©ª†)¿Vµ^=W/¦˜ªb”ôkÕìùÎÑo™#‚©ê…)¿VµvvN2«ESU S~­jíÛû‡ÿÜÛ9Ý?Ê‘QÚ©*aòÕ`åàÀ>9Ý>ÝOYßâdÓAŒNÿ—W4é–7VÍÄûÞÜ•Œ¤þ ªXØÄRï>ÛN ûê¤V©†®>o-Ü\ÓeHn§ön¨;3_G“J kÙy‰ˆb(Sk‚íl»éÐ)Â!å/ƒÏì€*T5ºO“’fÍ ªœ}¦›!ƒ~£°ü@O~Ý;8(,‹çzË×¼œ?…zÁ},_þR¡øl¡5лnµ!l ùTL½CØÙõG¤-Öµ˜¹Þ=®« q<îh;ÍÑÅÔUß^…KW¯²O;ÞîÌ`Wè\»>ža(Y”ù¨×|[ÞW‡Â|(Ko(ƒ TåZ=:ø»Ì-q[p®ñÆVp»pÛqÃÆ[¶žÑ´Ë¢œðO,/cÔ‹Çþ¥Øï¹øäÞý“[MF¥¥‚fy uÌžz£AM@ÒfÇ)ì¾Ú>زÔ6¶„,¿ ËÔ¼/þu"üËBh_ûé?'¿Ú¿íŸôÊk„§;ê`û—«i7x¦­©àÇ᫃ƒ»5~9örà”W ©HEŠÿ ·éž¼-ü>>ªÀaíõDñÓÆ·VñÖíº ÓQâàò-8êé☃úÂPA“%Bìº>dó „‘HNà£|!Jšc©VÂÏ]C ½þPÙÏŽžÚ' K|‡¯°EÙ[5‚kȵ¾ç»×k«Tub‡F©(P_èX¼  ›Rã¡ËËZ©PR#‹è”ÙíQ+4ø]¿Á9ßðQ³E>v'õäjÓíUû˜â¼R8Q£‹Æ¿à_Iç¨ jÜçÄ tB>çža¿G]:¼Wª¨¨3B®×Z[D½sÄñ$›M«i¸ÃK<]‚µe(5ˆåÙ{šÕRþô/+áÕ’nÈå¼(sÄ’Ê›8Iøöõ@”ñ©‚^ÎÈäÂkõÓ )s5åN4X”‚p»Äô(ŠŒ;„3>óï”-2¨÷’²Å}„¥o)_Ÿ­ÐhµšUZªHàÿ*ÏðìáòÑæ) Ê¯éµoj%R4ˆq¶Š¬(`•Bi ŒQÚ’yÍ–ÀæÞgà 5¼V×ìQÆFy×\ÔŠJÑA*/ .ÂÚ%–,&Þªœ€(œ—¤Ù*,!ϳ(]e tÑÎBêú{{‹Í[•ÛB•†Rpè1êmS˜h¡/L¤Ju™f%éaaf€ÈjX°òHµ¯s…ziÔI½éy¹}ú«}²÷rûxûôèX.OŒG=i˜†VŸ ƒáp¹…J[âñï–àâmÆV6œÔŸ¨A ›qøüYvQ¤X¥-l»[^ –QIþþŽêxWˆ-ëbØhÒíLϹ(4®ãøêƒ(ãúôåɘ¬€ÿ7ò†lS© lðÀ‰Æ\PC5@o Ÿg£ˆÐ‘ºd|ÊNù•!;”ÒVöψ06ø÷탉+äÖ¢!¾‘A•"RûYG±‹UýÛr &«6ËÆrÂPÒWL¥rºýá kÎUV X×)Kj€Bêg.Tß–^‘)!¨ßÞbJ¥4Ô×e›MJO µí‚;ßA»C|î€"ë ´Öy­À³ô!ÏQZšßÔëÕ·kbUTOlIËW„?[‚¾…û‘/å|2'óD[ Õ5"6x@a8ˆRdÅ_k|»ÁMQ->TDª€:ÃÙÔ«Šå–;hxµÝ6«cƒ^¾õn„uâ\àµ=m¿Õ‚ý³B1cäTZY)Á4)ŠÀzAbäGhÒFyêûÊ£ÊÆãŠÌR‹$ž½Ãßþ÷b{ÿ€þÈn<»†MS‘“"cÇb«¡\„R‘XQ*‚D³*t7DŒ´›|Yúòd£V*ÂÒõòäQ­ô3}y\+}+HäðàDôF€A½ªkìàÁJmG‰×ü»p°}øüÕöó=#B†Ð3Ó]¬\¥ ËË?3ÊÈ„ßæ)ˆÜ Ò1–xû|qpôÜ~¶û¶¼—Kú¤G¼O¶Î`T88F¿Îô § ¬@Û·‚J'2;“œ%ÎN„ÞG·í´×aqõ=µ'U*4paúuA’¶Ók!b3» ®Î=î4Ö¨–J÷4›¸¾¸oÇ$Ò4èxH¬›†žnÑlç“¢”9&ÊÎñP¢ž$Û0ÅÍâãˆÈÈ*5ópÅ*~gÝqÈvÿÑßÅH1Ìyh#;¡øq£øX Bñãšá£àÄìÚ5k]¸¡QdŒ*jªi¸©ÓªãäùûSõ‹Úíà.zHõˆÁVv‹|5WÜ0 PËž^Û“#EîÔBÃ%„—†°`/ß°ÂÁȰh÷ÌŠ”CØÉéqƒœdùä[G· Qâ†îPá1$(6OÚß¶ã…Æ &käßM¦ŠÀ² Jýy#Ð|ÞØº-бý®‰tÖR=˜Â¯öR{"¶™[›ŠÒ(ÝŒôX»ŒNPé,T BN›éaÊ6ÞãLm´?6 ꂟqªÁ]‚7ºò”I.k |!]h÷O`„Cøbà]A÷á.Ø¡ºr•üuÒBÛ§²LÛ¾‹öd?Œí™~• påBY¥µ†ûËF!ô æ“ °"ÍõüãÑ•\Yj¶ôr#×Xg6%íhù, ù”Bí¿‚Ò,ÐË^ü¶V/✼ 3²à#„ ™dîá`°ÄuÞ>~^©T{‡œ3 E¢í:ØV˜Ëˆ×s%(`áK]ó!žóo›¤ŒŒ.: ¸uäšÙá®wR©†îdYM}1ò×qá2ÈÈüÑœYë] Ô2^F3sÉ¡&?¬UL3­’¬3hVÍÂlž‹²½ K ¢¯¢Ògõ-þ‡zžkÅ’¨Æ—âµ"z]_©Vë«)1ØÉ^1ǧΠWo™›|¹€Ïª@O‡3®CÎUiÇǯâË%þþ?nñOõטþòä¥]…f’úU ¨T·Ä‡ÒBÎ6Íæ6iR’jwÀcç6Á­!HûÇÞ Å z«Ñ͸3ðk¥t›ç%Iz°wzºw|R+¥Û@פ’k1”I1ÄG’¶Ý wù?ÜxôÝãïŸüý‡zF¢X„Xp¢Baoç×#{§&èóP~žÊÝý™:#¼–‡ôø¯PîÑ˃¢t}So•·ú-ØìK6¥¥ÒÖÖÒ²üÉözx±Ðh’ÍjPÜ«_߬ ! SfêÔÀ sà|`oõôՂþØÞ-žT6ÎÄÏ"¤®ˆÿÌì òho«@Å–-•{%µ“7Ôñ‹EùQq®õ·´Ááu[ÃÜÓ“Ôä€U3©œ®Qê¾ÇƒŽ (¤zÉÛöªùÏ¿ä#g íôDÙ7 ­ª”DÏ’>H}µ¥ã#ÌeÚ¦MÞÊH»ÓhnúÂBwù›’všG=ñâäß ’i³3Λ2…z”hUÃÀ ïì*2ý£U±ûÏç/_ŠŸpoþX\Ò+záß ü{Kò+ñÝ,nÏÅÕE‚ÔóÇeT1Ûïqp@úôÖ­´£x'ßKà׳V_”ûÇ%N”ÖRÑ>ÐhýÀè:úR7¢äO'äÜwD§9_r†@82ô¨$qGFehpºã0Âh¸Úý¨ü…[}¾®NâØgú¥Z4‚ƒ`Úoàm¶¶ç´ðtep£¶2i%ÎxÆ(Ïé2 Ì‡‰tÊW•‘zšëcÁ¶Q< ù(:•„iY‡ÌÐ~¶²©ŸË¦î#ê%.ÈZåÃUΖÕôõkEõb/ÄrÉxª¸˜µQwÁ@cë ¥¢¤.©bùVˆ†ËbHfC@Ì«xe ×aXÿ«kzQŽÈá( U6EƒñrƒQvSv0Š‹Â@Pà|2„” 0Å8ÙÀ ÏÉx2qƒ{.>fÓhyÐGÞ~0¸-^LÌ1q<ŒL‡FTˈx¥ÖIpô¯ÒÇ `sžå~¸ CÇÐL\+iR]½ QE¬T!*Îp„¿Â<)×8;QËÌégûéGS§˜ éb¬g¬'° ¼u`ÌVvøË3 ..ž£oÚ]×ô;tZ$EnHf_×J’œïû šZB2:€âý! ¥4 ÑmôÑZk2xø*¯·? ²¢k0œõTúဆY4:hÞÜüm-,OþíeX¢üÛ–ÿ·7„_!ÿÍþÛEÉš´$ú¾Yÿ2RšoÿÖïgåYÀÆO`;”¦µù§Tð‹nEa¯Ñ(â£Ö,M žREI­jH°{£ÃÕÖe×k‹o¯£Ùádk…Õ–24v”¦S$ 4~C>5Cý,y)±®L•à=ix(£ÊtÈù¨ÃCšèF¹5‘}<®–F¦¡dQp^œgتDŽ¡\<«’äsܱ¥Ÿm@ñ1hˆ²Õ¬B`V¬éi\›µÒÞ}Zob£òDê"!QáÂTŒ{~øJl†Ê# >ùm·ô>z­†<šëv±ZxžF‰aJ†Êÿjº(( øuo{ºI!ƒšƒýÃE¸PP@!oïN „gÖØÅ UKq¶réùCZ‰¡[G¼$÷Và ͇g+0¤Ø75íúÀ°^³ ˆ xTz#À›s÷|¸%¢&‚Škz·“:þ²†ß3W_×…ÍÞ`wm¼§„\¶Y"KÅË. “¨ÀP#L:QX‘ôØjV½P?ãñVâG˜è~·òÁžü’í›j%ÎÚºÝ:x»O{V˰í/C1SˆWlÙe(-½ø…=eäù‚;*¿ï´ÜsO}}qºM’h×oà˜Å¤¹ ·0•BáÖi‡Ö›£—¨Èý·jo 9~ÁIP¾\<»t:}¹ fÕ&RâÃPùÖ™Nñú7¤V¶þ4µ n:ƒQ&n©|à‡¹á?e•ÉÈ;”4’ÿÌÿÃÈEµ‡r™µGÕÞü'ïu™!)¡aëJD{på62 %U•ŸbK«MØ)9rg¨²*“KðÞð; ššhðIœt@øäØÇ¹«µ¥Fȶ†0ófótïÅ˃íÓ½·Iõ0º–‡O¨Y /I€)ìÄ"`ã]4'R”FM€L… Ç üt!÷§Ëá°ïoV«îðrÔ¬aí°zF¯úîCÕõ}ùŸ+ÀêK¯‹*8ìt2E[‘é]Rý\ &íÄàÂS–Ë]³"¯µ–²Ý\øjO…fD$h¿ú¦^·¬úY½ˆÉé9yéÌ’<•I«^Çê„ V ‚æÎ Ù×EöB´^`ÆzõƒÌëE³€Ó¿!e+±²Pÿpã‘x6pqâ¯p–?C9'ö{­ /™áòÉ+a\J1­/Ó²C»cóò]kÑw]WËk-(Ø:ªÄÖDm œÞ ·¸ç7hÕÌ¢óý«v­Tä/¥üƒþR*ìBŸ@ˆüV*¼ø×îþ±ý‚ä·Raû÷ÁOø[*h]è:þ¦íÆ6®ÞßçYÁMðtPQí¢òu¹Ô}Ó‹qoèÂNŠ÷-µM”M ¿¶YàÍ?Ëx˨÷Ux)ÞàãÍry­ö‹4 „×i Іjo«LáÈ-“†t%)J‹91-ã5>o£ãÌ÷¹¦òU…î~ͤt9g$¦¿* £YÒ†µÖ²øUʇê>SÎ<‡ÓüÙ€ãà{ðUS_ä'è ï6U£©åì³þ|ÕßÔùÉø÷7±Óa0‘ÅÚâ[r™™\þ>«¯ú›ú"?ù#7s‰°æÕí³ü¦¾ÈOþÀ¿mÉ”_lèV Åå3‘Ÿü¡Ë ;—~™=ÉZ¸,¼‚.9‡fz)#V¥Òjì‚@ UÇɱ޼<µ"æÎ"·É!¡ß¥ %K‰ðg{ÔÜ&rXá˜RRÓgþ‚Ÿ—i½C¢e¸s>`dˆCø›ú"?ùƒt¹à =ýª¿©/ò“?Ì1/ßÝPgÓ”£ÅDžn(+ÕòÐ4â3國i'ð¼Ü 1o” è—¾=”-SbC: ¨xÇ΢®%³Ô¼³R ÁÎ@[ˆ–À³‘Þ)’“ìh‹lÝ.$ÀfrÐ Q F—¬E³ ô±“<50¯…Ò¸D„Œ Fw‰ENÓ 7PF% HlÒ¥ÄÜkù6 ïÃ’ˆ <2qrùz^YØÑwà?"TÒ (D=¿ƒQT”Í÷X5™{½¸ÆVØE8ºÄñt«Áú}f´jiXØÿ‘§•2–sâó=›…ã7htÒFUä¡ïå–_­TËÕ øüv<Õåeöràk±*–—«[ý­kü¯ÄÏñž½ÆžcYmùÚNæ`dtrC¦x|‡§în2Uu¸ZÖÇË…ÀÀŒ¶à‡EÎKG×tdÏŽNù‡UPúû¿¾,¿zM/tPN#ó‚RÝHíìð&g˜qdËú‹Þµ¥`ô±R%]½:ÃÉu1¡ém2ïd“Á-”Ã!hz­=F¨â@èt7¶: H‚Kz­ª%øÒY/n¡£Báäµádo™ _/›ÙZgŠ×Àùè&2S9¹9=.'Y46˜…Â'äEN½xQxN^Û'ƒí“œ©vNŽŒ¤2$gz´ÆôêÅK#½ É™¾®Ì¼¶c0PA“µ!Ú7±¥©­xKš±9ùrG’aØTxàˆ; ƒ}:QÎ\$Ðj†ô;gZLb$Åœ)£¯g4pDNnxÄiÓÛPƒS8—HúIò÷b™{ysf»ïÑ ¡“ð‰r˜¨ ^¼¹kæ8ÚÛ͙1ü™3åóã=sâãϼ#7’to‚´Ï"iŸMöÀl¢ƒ¼-tøÂHuø"o^‡¶‰Èø3÷zu¶þm?C‹•ÍÉGÖ3¸Æör¢+9N1•r¦î ¥w^åçpòòÑáA˜åçpxðèäe˜åçÐúh=›`·¨Øa~ “rz^'“{ˆ '÷ƒÿíóNãÂ`i„NÆ2öã|04'Ÿ¶Óï¸M_úÛé:ÃKϬkRtNÎÔ0ÝÆHáö GLÎ ÕÁ“ÙaLN~èYÂîyx¶á‰™H:A§:xMEþ—ðG¸æéDyeJS6ØÎ+lÛìsÅLËAy‘‹å©'»Q™+™w…<=Þ7a€~çL{¼}x°ÿÔHÌ9S{°÷=´Ž@ht%EOÈyÔÃ;L0w%Û&ð5£ò¢óÚLKGt9jB^:UÎ|vv v;;ySEÇíÎ$£Vú@éUP^‰*Tìç¹ËÍK„ãÛüv¾v›°Xôݾ[I’Éî˜,O­¶ÓêäÈM‘Þ=G¯v‡ù²dÚÔÒF%»Ñnã=tÎê†Ò̺ äZMrŸ¼8Fò‰JÖëÚä#ñœ\‹Dò5#sr…$´´&A~,.I¡ž$2p2 m0êµÞt{qé̈̋­Íwt³ *äLýbûùþŽö :,½PŸBùn€bK+@Qqé´9öCÇ^IÑÓr¾êd1¾š}Â)cgu)­0Ø¢ÅXŒ"ï¬Â»\NM¨ s¶Ãýg{'§vä¬0ž÷Äñäß/^ePîýøÞîþihOŽy÷åû/ÍS3ü™÷¬3Rû£IÎI‘öÉãhê'óŽ·Þ‡s@î݈£"œšû4€Ä0|Aˉe˜=™ÄOIø‚°“ 󇢧9¯·É6ÏP0{èvP Æçn)7ìö ,µ12º¨¥‘äÝQ^zG ÈI¤PL(ÍRsû6ûzHmCñSì+hkÚs®²6!šióH´™tSŒÞ”Q;!'.DC#6ï™"ùZò3B'ã“\¼xdÞ±Œí¢7²CççFhÞÖC› ö¨'máF¥˜¤è¼ë¨—Î6—÷Þ¢1h·¼6еè7q§ÒL™‡6æ•‘‡¦™4¾…NâÌ1Óñ³•q©tÆšdÒºnoäÛIœeÔ¤ýKhE´ÓE7ø†&åÎÎ{Âh<2'W·wé Ü¡M› †¡ðÜòIï½§Kò7$©„£rÏe´ZhËU’w¯!,LŠŸlu–‰âbL,67_|æª0Ì3“»‡ÒøEbòÞ¶êH…Í༜<˜ÈÊ Ÿä¬=iÛ?Õž_[—#Ë}ÈÞÀæúœÓ‰&ÚW%¼Db&áWw1ƒóÖŸ©íáMèìÏ Î{ç3ê%™š{÷‘ ‰Ó aFú¶†.”%Jä£Ê¿ß¢C²Èˆ4ƒósÂç'tææ'ð‹Dæm/©xFhn„áKÕNQeœÄø 0"åVbÊÛŽÌ›Ž©o9Ðê—eg„NÆŸ¸Æù`褫=ºÜ´#«i<2á£^ßÁ]„M³#:|RHr*î”ívÇàÚ8¦“M—ŸèÚj2eç—@<±½¯ŠÄLv2Ñîxý¦G(|^6™~Mah³¹Ø)¹¦ê*Æi&اãƒ$” #Ûrœw„ǹLÈ¡ppŠ7pEü(áyXT_ÍK¾àdwïÙö«ƒS²œº-ÎG½{9Çç²®/}oâÛG¶ªã’µÖáÕV÷ByÀôö9`X³ÑzÏ ÊÒòzC­äŸ~²N±Ž6ê)׋ãw©p‹%ù?¬¥AØôHßg£´Ò"íö‰¨+Pø&7á›Ô 'Cø+b<4dÔ¿H~>“Ÿwø¿Ú˜ƒÒ×ᯤx_ ø•¤÷ÁaÕp^kAHD}BÒµ rû˜þ°6|+`ýP1>ù޾ììà•Fõ;W(õF5#Z]f“ð•å6¡»¼Ih U'3¯í 0ví¦ Íû.̼J"é»­¤à«NR(#ŠÎ>v‚…Õ—ð#t1£\Þ0ÐÐÄËžû/qt©áÏçñ4€ô¹8üJ;¦Å±—|Àj ‘Ðá(¦Ž´pð%œGaM¢çI–z”§Ïo¨ô¡}"„DvŽjR™}œ¾;Â0D`þ‘`±=“$Q†¤|µd¿LÀGò«¶ÅDÏÒêgLÿãñ›eq@÷uôݪŸéwkoä+´3 ª·òÍ£ÄS †%¬1™Å¤š½¥9ÃwXFð' ÇDÞCé©\byYÈ.`o>ú\÷.ݦ ¨åàkjN­Þ“Ëo㋨ŠÄù„SÓ3*~>µ,vé)F™rü.£œ±(*}²S¢²º·e„yêM#0~)¡ ï'ÅEÒFrH8‡Pãl;ø&I8èPó4š'òw¤Ö‰Maìp8§ˆÖ„éòp<:A|Û)RvTdü=RññYd&&‰-üBhÞæ™ñ˜«d<æ*±á$Gú×h°z‘âŸþ¥´Eì Í×Ѧio4 omlÏbÞèâR[!'+Ptï\Ô¡<­Fßñé Z%䇬žàˆ,0A˜è¹‹ìla-_nïü ü—ŠòÛŠ”¼ X~ãàãrü‚xd£T¤ÏÚž¹Ã›ÿBø5¹6±,-D’ÿØKTóEB *´Â(Û«Yü©YQ{?B«AaÁÔDMí\©­Nü¢ñÞA~Ajzß$åçΚ,ú7xÞëöØ—j'zÛ­s)äð1xÐσ_3𿤷t°14\Ó£Cib# ÓºhØ›"»<ìÞ0ÉÐdÊ3ë¡Ç®Œ`8(ƒB˜¶+Ó ”§ƒJAšn¸$3 œ($™:‹xÞU&ƒ.KáÕ>´V¨užM) jlKûµ Ov¯E©þpãûÒºÇé‰ÖÍL˜uv›„ÓMÔ©°ogg!ó:çÈD+£¿5À  #&sÞ÷Pr9Ç*²…5鸄ëŽÅnÎ`Þ±û²*C×:, ëhË’AT$×ï²eau:ö……|Ã~°Hªãjƒ Wª×u²•ÌWï©AÐ.‘(=Ý{¾“Ïå¬F}дÄmIüd¾‘†¯áGÏäFÎ4‹[ƒÛ¦áDÀÌK8a0c¸íl[]«$~Vó¼ŠðF ùQ-Pi‹ 8æ‡Êd8Ò"©6[`ñ¼ ì8Òµi^«²VýæAñŒéÛíVKf2É ­%¹À!»Ø±H=“°‹«OÔÍrdÚQv6®?K+ãÅÀé£ÀÒ0nU’ZéoìË¢¤¤Á>ùòìf#i•½çŠP€ªÏjÄý++U;ÃæÅŠ-¬·^¬¾®ö-é± ¢¯Ñœ“oÅ€ÚŸ4›Ì0*®Œ“5ò¢ÑaÃãÓVË4T®:ÀÒey ¿ ;| p5ƒ‘MÂ¥i®\6÷–)9a‹L ØKàfçv0Kdû— —¿úGõäEVäÀx·ÞÖª…~á#ÞüñàíÚƒjµ° =Ð)à6 >üj)¨£U*BüPÐÂf¯C,ë+•ú§Ç?Ôoë«ô¬±4h9gbßÀ†íÔ}S½À\ÿ¨rîEêAfß+49³Í±‰d ,°Ê”JEÙäRe—èQ&sdÝäRd¦”‚KðÕ1ldËz[EÔ:D#/ÕzÞB’ØHèøØðA{rÙ£(C‚–ä•÷aÊɪ8±]ýf½ ·0ÑtÚ3´ kýVª‚u#3µ0OIƒÕÚéÀ.¾Æ=WØ )® ëžFÖAÕ(š‚ªáß‹áå ¾Ùx»ªŠâ¢_ -ኟkøñí·«Ò¶=–´Æì߸oUPˆ%üæ#ô5ªb"Øð/$9¡p(ëE¥ÈŠl¬#ÛUaY2 | `Öߪ2|+¾S§/ôS—‰Ò®B|¨Úß~ë¾UôA±µºÛŽ4³ S ¯”MR, ^ɾŸÚf4˜´tÆkvµ £%ðEbú% {ô ¥ìç‰Ä²yîü„£,igZ™m¦"ó×°Y‘;XözÍæa•ö8º&ï}Ê›1Éتî”ý!,)ëÄJ”qmÔAƒt¡}¶ ›ò%ÃYá± ¹ ·† ÷l¼wÊHåW<`À»*¡CWn³P¸Lˆ£DåeÓ } BΜÙ6¦:>O¯úª#¡³ çQ‹ çj?™â'ìÝ&d>ÒKʲç¹4êÉ'Óø †„3,ù° ¸dÏAGt¸é‹3}kV’!ð+nÅ©¬³¡pÉk$ýütÕuÑw¼>9_—gþhƒÏG:°³j+OX𯺦a`ø<7 H‡k r­Ê×túFªX+‰håƒ]íRÈ:áZ°3ÿ ½ kÅçÏ[þçMù}]|¾(–ÎJA¦À½RR‚;úäN¡Kƒ°2•`¼LšŠ]ŒDª[°OyûêÃà hf1îÜ7‘ðÉÖ-ã‰+ýÐÁ‚ßqÿ”¦ôa)ÑÎä|¾T Ñ@}à³WÜS5Zä5¸öFs¤††§§µú7ùkõÏüQ_J %DtÚt£"›ÍœÑVÊi˜:d¡[×o>–ËÑ1”Ìv5{”¥y iTÆ\¿€Ófy“о 0K yfITÄ™â¢<@ :Æ@‰˜ÞehÜ1'»¥R¬¢~©Tx~ÇT቞©â$™,rù¦Ò(ènýïrN%]Šñ±ˆ´[PÔ»´ô’?6é·D“㬬Ê`û£s|*AŽ××Éðt¯V …ªWB¹m s¨FVÃÝ"d½‚‹éÛÏŸ© ¨’iU*ÉìpÂÿÅë ç+^Eâ‰!# Øqð8ŒqÂl Þ€ó8ˆÍ4R ÚjE-Hâï~×o=ªª[ÝÂÎdæÜÇx&v«»ÞµjÕz/]ÛÙÏ¢£dH‹ù¾¦×е¬É}«S¬»x‘VƒA†”*V, ¥Ž¯x‰ÓýÓ€äw®†&šJ'7ŠÚ´¼®´­fø­jö…òž»²¤–ÓÂF/ô¼*}»vªú¶¶|ßÿLJ µÕ°”E>ý«ãâ Ø õãiŒÐ7´5MõfÕ=[V¼ÜûñÕî–© {ïˆ4òW¤(}(Þ’›è.‰'–l½ýx“i힣ö3ÎA¾Í“dôlI‰ûðìáÒjPh•eޏV~^ú°´ú7|‚0cuŒYÏ=# ½û1Ìz0g´Ÿ0Žà燖Ƙm»Tô¯[ÂAtެQ¦£Á¦q_#“Íœ›Ï]’ãŠrýâ·/lœx´aâÙ¿t|¹}4ýÃöÑÁÞÁ·[åáÒ d7—#Ëjßj£µ´Mu„÷Óò:Qê¿7tzT^_†"°0ùçny? OŸ_êYkzÏöÚÖýóúdü&|þÀ=ÛGÝ“Ïȃ¾† à¯ÁÀ>È ô×ç—JôrÒ€CA#{üÃ’èDÏ¢´âг^¼'ø0`Ý誾æ Bæ°-]cÁ)í«|Ud•ñh*éS‘=pʯÑëÔÔ7¿+#Žw+¤ .—Ø@~¿Ð|kJô4ný²Ýúßçgö°Öúêì‹¿­þéb)ÿío%ço¿ÙqõŒÐoOi¾K´cáEÿ·Ï«®þÏçŠ*î-×·®¸JQ¹<»OþÚ“Ïþw¡³°ˆÿ]h¥\¬øÎ-ÎÐ~Z* ßÌu8_4|ëŠëµ(¥ô‡û¨÷–|ÔòñAÅ)^j,¹´Ÿúehê6<#hȾZP¹™Øl^±ñµ½Æ•ö»ÙÖ¥¥ Ÿîü°Ëï€ðÕzâW΃~ßÊ«%$A·<•lüãi —Új°UÝžè‚&ù÷ÖÏвqìÕ=üRÙÃï½cL¢ »:#ɦ„–Ñåyíþ#*‚Aææ.¢!œGK;Š^\ÌleÏ&‰ í´ÀGßQÿGF†;ŽÖSôÏ%IJHãò%e˜ˆ] {%iŽ Mðv)Í|¨…­ÛûRþ³çïîÕú-<lL ª|gå F2‡R;g®^·•÷Ta‰_ C*¯k‘‡-¶1r“v†¹V ðl4,ëûgÑá°OÔ«Kî'®–)ËÛ5³È€PW“í?±~|‘›!ïg̦Âs žj‘/,‰tšHñ»(’l-›ÅcV ¡©qnHüúÉ~bø‚!±y«Í½  ㉋èÝ©ÒnËz6/*0P¡á1…çy‚ÆFõ5D¡°ºõÕKUéBÄ>‹ÂÃdižæv“Ìz¨v=pÖ[×N ÐJ ôÜjC±¨ êˆéã¬o´ªl&8õ©«¶9˜ CŸ’ÑŒÞá,ËæàÒ„˜„÷…šÒáVóqM¿ÊCìG­v;=äýÔꬶV?a̶šO1aË‚ m0ÔOba9äC@b£øv’Œ¢¥4S¢kŒŽÌìòj«Ð܆ZãIÖKò\[aùT0Rš¸ÖkD¬·È¹ÇXt.̓>à,«ލ¾#Ép.³¬%)}+ÚÞûQLͮظ’ $¤N#‰žÖ×6ŸÈ!€Q5­6A¶Ùy^AM$:†¥EF›kkkmÓAØÅ–7ÿç³ö…<›±nuû‹æM¾7hxL?–“Ô„ÒÇñdZ!\¾ÌÉ•ñê£Eʾp•4¹øµ®âÇÈyœÿ_G¡]Ž)Þ‹Êœ]q4ÿtÄ.€9ÂÞDX6£øúü\VÅÕ/ck’¨™ê;á¼£Ô×ê!Àë¡À¢4ë)­|õäqe« ®þ*Ð#ã÷•⫸0“`x…Fƒ÷÷´”¬nž';׸xtV5|ÝX'‚6º‘~}Ô»‹hALÛ+Ù›ï4å4÷ÜWl‰¥ÓF,ËœWT—NÌ>{ùÒÝöê½Ï@%óÞ¤Dx™:\H&*o~%˜l<&d”…T´Wñè’ × „ Hã*)êÅ€L:6äqUÎ6ö Bt (•9ÃZ…5Z¢pY£nÁpº¬Kä\õ_`ÑI Å4 „#í¯®®+ A²ÞÎÛ7|&>6L<M’[¤©mk9¯×W¶úÀ‘z ‰V«Ï*ugŸ¨8»Ok¶PeöÉú²ÿ+Ëø¸ŠÂ,ØTzš×š)@‹µ¾Sz!A‹‰ÀgQv}}÷ý*ʱY„þcÄsà‹Ht±MüÓÞ¨ÒÌ'y¤:*À³À‹üQ£—T½8DÕ=¸Ó¥_Ù¹ôƒ|e§Æƒ£WQ·ñ@‹t-]k§!þN¸( ¹2 ÓŸkh„Q‰¾þ:,ðÙŸ"ÉζôY`åáb.²$YÄ%‹ü²9Ë®DæKõöe;¢›8÷Â>p2EÿXÆ?|‰S™ÉQ­ŸœÎÏÿ€£ÚÁáÉîÑЄKÙ|³¯ì/ÄrR ¯ùtË‘°Ã)$…íüª YåëIöÎ=B’ 9¬z—·œ.Ÿ9 , ׳{Þ“tJ0gJÏ&y„ù¦¿¤—lF¯¾zŒæç’¡oÞ— Ýg°-e>'¦=4éïÆñØ}ŽÄ÷0.q<8¤Æ¨î$Mïž þüÕ|µ{´óÝöÁÉöó½ý½“ŸÀS¼Ü;9Ø=>Ž^EÛÑëí£“½7ûÛGÑë7G¯wy¹Þ¶q~ˆwÙŒ}–hW}–u=:)«œB¹Ö‘™s*³*l&×¹1Qh_Àk½ž] Óu×KFp‚"noò+¦›Å¡¶v5Ÿ*}Yìut¡½h“Mš6›½N1ò‰žøΓ’«ÜæÔ¦ÛìW©&7Ém/‘Tß*q©yGŸ: &‚eñ`Љ>c']x€^Nâklˆ‚¡ ¤Ä!e–`«…=v¢É »d»ð}ã~‰EºNÂ1ðàyñ¹´ÆŒ '@V¼`ôQ‡% Q?©¾™^ecuI¥­¶cHf"LÀùÙ;ùîðÍI´}ðd[GŒ?=uh”•©‰zJ!_P8¦Qåß¾ã~ÐSŸ-3—빟Lãt˜Ë”¢ÅQ 3|DÕ$©(qï_øÕ²Ë¶ÊhÝlM#¨.ét6ùˆÿõj:o­®ÞÜÜ´/G³v6¹\Jùê×m——iQëw_^&}‡Tc¹¹m ›É]Šûf{)~OSãpT3öð¡à*‡’Íë›WÂwCs\ÏF‼uüJwÆñOÇçû{϶~:‡ÖçÙGÅžãX]Ÿ}öY$ž~Ô$Q ¾ýÀËI"¢Iš¯^êíëM¾H üø¦”0·˜'·œ·”øV: ŒˆVX2ʵLKOb Ä/êƒD',†Í_ØœÄqšk.“&ƒ¦¸ TËóäúá¶ÜÜ>~†´ÛÇßfß»i»"–×åô…%ÑRã°AËb‹Òú,³€ÀçnÌ«.1œr7—¶Ï]ëRÖVOXõº@æXb¶YæP1’F}©º¶*c-» ËFh¬›H2ÍÂ+–EVMc†˜fÀÛÒÖÝ&Wbo{ïÇö¢· 2Û.9½%Í øòFÌ­‰dR?©›t[ÜrÒF&ž°£#!j Ó~òú¤(ÆÔ ÕF€®Œ;ø¬QõA® ]+„ÝåÓ„¶´”âm_YkLyY­ •mÁVrÓò —lÖrÌZ3ÅÞÔ²a&YÍ+¯|ÒW—ëU"b÷ ‹ã,9,îš2ómÎúÊ‹»ûBÕûRƒ6a ÔÅï3éõˆÆM™J¥»Š%l`y–;+ŽÔ¦ï@r¶%+lÃ…ñéCýãêjCÆÇ‚¹Â¯˜…ÆÈDÚ;ÎÓŠ±áA÷}÷hW„´É¤­Y`yw]ª<åËCŒt}á—®ðK_øùñ‹Ú«ã–  U&ÍRyªwðŠ+¼ Ï&1?ì  õA Ã~GÃæ¼­¨‚‡D¢AùM¯g×ê™&‹rBßò¶†éZÄɘDEË£lrÍÒÈ+í%ÍÕʪ;~D½]Ö”°¾ ¦.ªj–VMΊz^¢žè‰ôÚˆÛùñÝ–S©¢ÛÒ»Ò Æyžõàùaû‚÷Î0 DdTå”qµŸí°P¢m¤Meú„C"0r4ÉÈJ¶}¦T).? JÄê. Bc…N¦Á—¬·Šd©hnþµ^.íNÜ(ÇhÐQA’•o<‹˜; ›R$˜Ñlâ åç£YRÑ„Å÷ªuÙLÃòÅO!R×£GÊTÕq“Ï Ú^˜„tQîQYÀÈ¢{¶%^0†·³ƒøé¾FˆÑ™·}a.ç¶øbb³‰\áR®2iCú³ÏD÷œ¾MâÝ:qoÝQYüREÆOŶµ‘i¹{b&sŽž57¨1È;âÔÆ%Uk’~.êÐ ÝÛ)*Ïolª¬Ô‰O.BS‚ø©†f½gRêcf/«YXÝqœNª&_Ìzß*JÿÎQžDˆT Ý ….a‰¤ïøÂtŸ4Ô bÈ{+‰å£¸µ— 9A}ák¦R5VœcXÔGlý’ŠÏp÷ÁÁ«vErP´>÷Ö†k6R„™vn­â¾nâ4IYˆÀü=îíŸã`ƒŒ¢A"ÑÒ}ã¨ô8ºHG`¾pê¸r!‹¨_¡ðuaU¼áµHLn;Ã'ÍJr‹Í¥ÙE5©(š|£<¹¯aFà'êlZ‚PÛÉ%ÚgY _¿tñúœ£>Õ(G³|*&À»‘‰hèñÇ7a:JÞ@÷“Û‰Gé27–n”’N¢xá /f,("ÏØè]±v?zñÃöÑK‰gwžŒÕ½èð8"Øe£dAþ›fEeÉÁ 6vø©Ð˜&¦~5cК8Ú2æRkœ¨’z@KÃ~ΧÉp Œšl8øŸ¸wÕ:`KËíºõ;´u«oéñ&µ2]Ô`ÔYko¶]BK×îãMæs‚+wžW‰Á¬h*KÍ`È6LR1_¯3‡¦±šÌý¶CãÕR™]ùbhu«‚@¾gØp vD¡Q1•Y.Ñ_Õ‹añ²ai“'¢»‡ÑN·Sz3³óÄE““08g<”©§¶e4¨ê?KøgÇíbœ Aï‘ô"0rþÍ\F£r"£Rc±Ó+ ²k~SÌdTH`´$°²4 ¶v1mQ![Q„h2NñÏ·ù· ‹ÂLk@ÈãS;+è¶|w‹‚Ó‹|r"‡SÅ*Š…›(Yˆ€™œê¯½d©‰äͳbÆ¢ŠÚtPT&’×´„ôJ‰ªÛU2ŒûѺ¥YªÏ®T8`r$,–ߨB^%“ Ø‹¥Â÷Öp¯bq;æ"J ÚÞ¥Ãþ‹@V¥â-ÉÁëÌ˼©Nð‡+¿—‚¤á·Z¼#ª–A•SP¸¹‡/U×@¤ý,¾Ô0"ƒ´HvT®c/”˜ ‰)òÓwÛ‹o4½Köí[턲 f !)Ï—øÉ²EÑ •’æ{¸0³ODãn#JAö$.úfÃcØÌ ¥ÇšÎ¦º£±À˜îî8ÎÕ6ü›~…kÒ^ºV7w3¬\"bÞ…kzêœrCs¯×ÒŸ…P‘¹éçéõl8GI6ˇwÎ|©Õc~«•™Â럩§wž ù\†¡jÕ.Ló[Ã^q¡ïÓ™[zûʬöÕýôÓ\ ð|ÛÊd)ÌoXõÀKÒÖäB¡ž¾2Ÿý³Èy_¹s2¢A‡É-¨JAQy»6a’²PÕ+»pÁ³‹ê¥%h_…Sî¹]—I4Õß äðp÷²±ZC3ì‹¶bníêLOÔQøÂótŠ€9ôUÇ’ÖfË™Ãn…¯ao¬h¾[¦lˆá4‡—JZqaZžê”9å:L>××/`?…BÁû…½º«J¸à ÆÂ5¬—æ¤âîƒß ‡Â"¥4h!𠃮­9=)İýoS7»ù6’FÓc(i¿®§íÊÌd²ÂŠÝ&#B†=¶W˜ï¥=ŸÜLå·¾ÍÌÓãÝ’áÌ”*\UÓ]j@zÍbÉlòNlého]}gOÁ6ùõÉÕxlµ_«, ÒhiútFf¼æ±­$>+K»>{[eçî«¥% …hÜ!ý ÍO”ª/öŽV©4¸î®™ñ$·ÓÒ2¹UEÌ}x¿ðš*Û?²ÚIÖ7¢ ½€Í‘ÿ¾±Xd×àƒ‘5§ çhXÇF3m³eFhüBœåTªËñá8|EÔ- }4Ñd¥ÆÒæNÕŸ[’sëlnmÜ—úEâ˜û˜7ÃJÝÚ`e¨Ù§ët4ËÏ÷ƒÁè›úAG¬}¿}ô ƒùÆQ«U¿¯“ÀqÙŒ­hp_;(W\ý ?é*Š–ô1q6¹²g@õšè& ϧë9˜ˆ{Lâ&0#•‰BÌ òJ6Y­ÐCÁŒ&+J6!¤†¸‰LJL‘ðÄ…Ÿ! 2 ã=¾Í½1µMK'«à°d*ÓÜø¨dôÅ7U{U­ ŠÜ ÿ}\%7ñ]~^̵G´oÕë*)>KêË}´«r÷…føžm·®(•óhTWõßVÃí±ðžÅ® 3µ›Â»¹.xdŽ,›º5&¿”~Sņs9’e”À=8Öì;vaÙvÖmãŠXk(ðyABC‘î/t&‚²X·íbVD'2,´ú‘ZÞöR…fw^­«|¨£æƒôeÂ`œêö\Úîr¶n³¿Þ=x1g}­®@¡wÐC}÷°ä´Zq¿|s°s²wxpLxuûh÷ûk«oŽvQ˜Ó<Æ<‘Ã9áÞ½íçû»lãJ…Z÷ÿþÉj¥¹˜»øÁªŸ³QÞy@†¨¹ÅÒgN>›&F òØÔrÞ¹»3öÂàšW7WSMjCó‚Åjb¥áåÓ-úël«±ôY¤Î]bÛÉ߀¸ÏÎE‚@“1“é6/´³åú¨v$–ð|3Tê57óúlkë”þÝÞ:Ãß•¾æV_ß7X·P·.x­K¹å_q,‰g݆fP§Šš8¡V#8»©ô Óm”Û¹Ýú¢ª!Ž´6ßÐ[õ-uç›ßÜ6ÕZ]}hA&æÚ^03­²Õþb¾š¹VŽï“&Éq7>°Àu'öÄ. ×;7ƒ~8ë¼KÇaa䥪7Ò¥7!жej@†ƒ ì(×;ç¤lˆxúE£ñ´Ýw#ÕN:˜Cúß½^Ü» >ÈÏ•ÈE Ø%ª×sEÜÏ1•t'Ø{ýY¨Úm}QøM¿8›Ñ|,ruz¢òÜÏ…&}¦[Ò°é5lkùŸi»ÿüç§Qþçÿ ,ý[þsãº/v'܋˃KBS]d1ãôvCáE.n)ÇáðùŒÃ²!úx+ß²ápH¸z=ðŸz /¥Œ½Û$WcS}|Í—wçpwçäœØ1òo¦“L2dÚEÑTòGz¤†ÞǬÜkÀÙ€}óëì]âs] õ?=“\–Aû%ÞÂ7äj¨øy&l!Ý9Ñð?â°*AF%¯îªóaåè@./¨Dûv2,,¸…%àœvÙ(zñ÷o_¿Ž –½ÅX$”,(®¯Ó[z»s´ºÿ’OÚþË•#x:š)"M¡&Œ$9¤<ï5R^ÜNY©Ü„ãŸQïÌ,=—€þ¹qvV…c#ƦK/#³)$#ÄœŽ„_¹¹ºcº•øL®j+V3d‘dÏú?#ŽŠ¬R£i=ì·ß¢e 4eßÌSZ¼Å¯ß¿Òc梠 W?ó± Æ•‚xWög¢wEkýåÖ\ZÒŒ¶. mô™e’@:‹¥¥ åš"¤œ¾SR¬J=ÿ›íb4ØÛƒBDB$YªNZÇe"”ÆÒ»è/Jõ¶ô™wêÆ¢ µØÖLÃì²é“Ó€…u95I€kÃR<²¨ ,î¸O$ÏdS‰‰¹ÐÄÈ঳Aæð®ÉPx¬>±pélFÎU„ˆñzvV‹~VÈ%À}Š»Aò&jT¦"KÆQ<žbÄÔ„š´¢yI.K÷@¨oÉô+¥ˆR?æ¨ëÝ‘&( 0Ù÷ NÐ0ËÕÓÛ­$"4MÙßšI3=kË“dS;póÕU‘•áÞ‹ìš%|ë–“'~¤jé<¯Íh›Fë\H…»2=eç¢åÈc[L™Ïz`´8]KìR2ˈÎãÉ%gPѶr°OS$‚`ƒùÕU’T”s f<á¼ ¼Ü|<z%Q J Õ4%1=ƒ)pºßð×~‘½ÉË É8ëóÏ›¬8b4`N læ;¸¯pËÑé{†LbÌ^p’†ƒ—ÞŸ/>¾,¤“XS3MúŸÌÔÒ?ІÇc<'9”—\ðéã7ωª“¹wu‚¼¸À¶¥åqI²©V‹é!פ_ÍSÎ}«MÁLK-öta¦É‚Î-IP2 ÐÓÏxå˜îš5:}>»Ì" \§{’¼çûU[ báF)ÞnÕÉ¥ùVÓ¡­ƒs] ¡8ØÉÅ룦¨ Ö…è°VíÏÂ/½­‚WÁ³tOö ÿÊ?+¥s‰;¨Te0˜g_”FW~QúM?çÆX(þžý£{*6õ̱6Ȗ줟òN¹„FiÿÍÁtOö ÿ–'ŒFïZÔ!Îÿžý£{šŸ‚šžâsùÑ=Ùƒþ+ÿ”‡©µ‹íjÇó?‚gÿèžì¡bÅkÎk©œ«W÷‘O’Do˹$èÕ¢DIÑ<Û3Ÿ/i#XÚ$z~Ø(åg±JÄqˆ€R¥~K`<=âV^C‘{›S!QGªRŠAIa¦ ·äßB„T·Bÿôê9ÑæQcí÷:_¢!kñ.³|Ý.y4XºÃü¹ÕýYµÝY£Šõ¯»`à…F‘ <ž@˜‡$‹àB¸¯´–-É™(â8þS«¥Gå"âËVÍ`ê/–Fý˜¬&Îh6æ°eã›þ?üE#ÊÛh+z … "ÌàÝ×¼‰[…8hsê…܆D cä)Ï3ö¿6š@íB1wÿ’鈄˜$m‘fr1pÒ€ âXuÁ -°§ÏO¤YãA%Q‚ÒæôÏž=sÝkö­-órX+"úÈ0»¤} ©[®ç>=^RüÐ_œ¶ç?‰{þ“¸ç?‰{âÿ$X‘¸‡NBßXÃÆºÀt9KX…êîÓ(ƒJú&ÍWníÜ]Žf1Ü ®Pž+žõ¥¨êûQ¸wžÕU¢gx_¿£õl¹,¦aãjšä=ÃteJkR3 ~–‡áBì~z”ÿQV$ß"$LòŽŸóÑÞ–ÿÓšZ׬ŽS5>rÉVŒ£ ߆à«[Q²ÜNyå_™ìF¸'r„F=Á½ó9¼jC"$Šy­„ô}À?:¿ Ù\ñgæYÏjÔñUÔ­ÂUíù„Ÿ ÔÄAå嬡÷Šœòƒ¹Q{¦Ñ:Pú7á±A2›ps‹¾¤€!¡ÈWº:LKiŽKSJUŒµËAd #pƒ¦ܰ­ÿê6$‹pYb=¿Z‘!®3 ØÁ+¤{Ž™!x!ÛÆ%Òçò›èHd—# ='ž gá¾²JjK.¬Â¹± ,,eî<~:š ;5¦EHâŠá܃§>±- *¬ÒÒÿúÞþÜê´—BÜû½MÕþY[[{¼¹áß/?â×Öå7žÖ;ý÷øËµÇëë_nDkG›ëkÿ+ZûÃGRñg–Oã åþ6ýšrTl0XÐŽL&rÿþ¿äÏõæ¹X6/Ÿ¾ýÙ|¡ÏšÑ)AÅÙÊÒÒöÎùÞÁÞ ¾âm± baæ[««—Ä­Ï.ÚD­¯‚ÔÊh)Wßþ¼šæ9Ñ^gMELúG[²ºV¡­¤UEÏ425=[>½Þ\EÄ2p„ª,ìëõ&•›/ÆÞ1iNg¼Pr©?ªÃ„Fæì*ÿXTHéuBUÿÖŸfL£ã6£õLJßwÖ±¯vvÿ{ùt½ý­ÒÏo¿ùñüÅÞÑò©&|{Å‹G_N_mÿ×î2­j§Ó^×Ë»e0x“a ˆŠ£’ôrµ~ ·ÒÌñÞþîÁÉùÑ›ýÝãåÓ;ZU~ýúèð[Dr¢ÇWÛ{'ôßîÑù«ÃÔ•`;!—ÛÙ ÏO^¿_¿>ÿa÷èèðȽúi[Ê>ÿûî'xÚýqOû' jâ¦Q3oÒÑÆz«o¶n¨%YyNó­ôÝVb÷GhûR‰"ˆ¯æ u…Š!a ®n(aÄÁBóv»­0ÙÏ›9Ç~/,{s¼[^¨²äÌFû|94¤½Ö]H´Ñ(^Ó¿ÛÝù/ÂÜ˧…NÏVÂBG»ÇoöiÅØ¦Åø³#·” =ß;><°°ã˧îäœú'm‘÷jùqoYûWè<Úh¯Á#ã’a}‚8ʼè^ZfÉø’I æí³‘Ü·€hÌŠu¼L[ÔŒàGÑ+|ÛðAr Ñ—“tÔ_*U´÷°¹lºR+~;n„E°ÛF4¿Æ¸—O­¬˜ˆ/ÃhëíÏ4ŒÍ†1ÇË×É5ýeîõ;x¿É‡ïv·_ì-7ò«áMR Ã®¯ûÆÃar˜HGoEÿm.ÜË6LÉí¿À½¸ýÂ.“•òH¹¥–kéž+šw_ЃtixnF»²Þkâ\†åá°%_îƒè `tÊîo–Q”ƒXsÂ1ËöñùÞËe‡«ÌyŸ_n¹ÛQÖ8kžjÇ!&¿˜!€®àqy,Û¦‚Rxù·C‰óàH“\ÉÆÞûó }‚¯†# Ëï9c±£Kãõƒ°›â·ß\®É(úStÁ ޳øàWáF?¬bvOé.+ ¤­ø‡MÛõÞ;ÐîÙJø]L%aÛõÅ?ûgé‹h~ÉŠÛ´³4™§Qs8€mˆgÐÂOšÙA줸f3ˆ†Ù—œÙTõíÏb©'á‚Gc n ¹Õçd’°£¥XŽg>Ä¡o-Ih¿­""´€ðýXîÕ#ºI_í¶¯…¹¿× Ç‹n çÛF ÿôJšq¦þ)ÃÖHmŠ™ÖY äs[¥²zàCŠé‚£­ÁÁLR‰.ó|þýöþ·tp_„‚¶a·¨$eÄ…6‚;°¢ÜiLc8^ ªò›çÕµùbº¿ú·;‡ßWÔÆ•rå‡;Ç•¾Y8k¦o‰Ïøû.[7W´ÃØöÜaÛûdz½¿Ïæc{;UË9j\ ! gЋ¨z¸³-¿i?ùåò)ÝhÓéc,ü™e÷øël”æÓ~ûêk¼^,¨w^[1Íj+åÓ õ'µ8bÖkFøUíÁG×®j¥.¯ï©>WëòšÃâLîﶦê§vÈáwŸ®ö'Ïnº×I6èÇUÛZٯܯ¯v_='®ãT¬£éu{z}Nsϧr/v©#¢ ¾Ûþ~÷üäþÿí«“ó×/Ïšæé &(a;J®YX%˜è3ÖæÏÖe&Cö%tÝ2,‰g„ÝŒN+Æ¿xàçç÷ ýüÓoþAÃ/\ãé"M¶¦Ã91Ï šúZTkn0JýÍ$;ŠVô ×9Í@—WLætþ",mèœÆðŒ©c«Ì—˜3*‚¯•|—Ü©e0VPßAY_*4¼ÙßoFøÛË;*ÚÍF½?¨EÚm:­m‹°.ѽASg^^A®‘°áª}åÃð çrî$îeùJ݇«ê/y:ªýPSeÖk¿Ô~¨n¬w¡<Î܇$VÈÆwyzYÝQÝÔΟøéëÊÉdP÷¾WýávÜY«ûR½^ô¡îýu§òË ¾¨žà ŸVÏc0̲Iõ—ë¸îým͇X\gýꓺ)^Æ×5Ý_ݳjx[½¼o«—êmõX‡ýº! ëÇ4Ì.kö_jšË.«w>Ô½¿¨ü@«[ ‹2âóêí%ñäâ.U¯å(¹r4ËÚ¯Ó vL•ŸÇÙ -GôYt@¼”w×`&þ’°Uωs¿~­·×¿¬i¤²q:q a\õ׺ ±X§òKNUõÂò—a5œÅ t]\×jÍY¨E›ùÏ5˜®iÖâÌi= r¼óÊ/wÕð{W}xîF*:©¸í—XVLô ?YÖ(Hê(¦4 5¹¯ý½ƒÿ:ß{¹»Ld ~o|{~|øæh‡~/©ÈZGäè6zº„ÑòJô+½yuÖ7žÃÏ‘ÿnŸF–@…Dűíà¥ö ßÊ”E™ê#’ï;Èî!÷TN—»;a~ >)ö¬²ûóç{ßî³·}°\êoww÷üÕÎã'ïhB"®ãÞ•&½¿H/áÎVšUÕž¬=ùr¾Ö0N‡I¹¢WÇÌFâ-%’<¯,“ò±FŽJ+&ñ`-ÔæÊ’BÍáùÙulT+\{—O3{-´áéöq™L i¹bê‹àUHÓ‰¦d³gê|ÔâÌK0¸41šÚ«àǵeñ,H¤{Žðå;SÎ/4È3ù±ÿBi61W_”ô›tÂÚ ôIkºñ@îƒuÓx Oüé#:¸I¥.Ò=¨¼Æ¹ êàOyrÔª~- ¨ÑÚ{ðk±‹«–s½\ÇM°µ?_ ñÓ­?¦Ÿåï9Ija<¿¾øó™ I!‡ð$ójÛ‡¸ÖÜ­„GVg9G‚”P˱±¥µSÚ¦èA0m7³¹-Óbá*+PTÕ¹@Y¬“+¸¿÷\ÎËY“ÿq¶ ++~¦’N',®ù¹ë²¸pðV{ω¹µ°É@døÑ yäppx²ÌíÎ<'Ï ½?@ê &’ýàãÞ»ø’s3Û xõ'n<ü6[±‰:±¹ÆÝ_uE B0ÏAr}#ô¥Q¨Væ…õ¢ÖæD­k>øUâÍ}(€FÁGrùt®¿BåKŠÀ@~Ï¥×ÀÃT°ÎÎäăó°b§Æ’ˆR8qør°€å·Z¾BÄüüÍÞþ‹sw6C‘fÍ.‡]Rõƒû»G¨VPލŒDóÕöÎÑahÓ²z]4yy¹Çö(0^…¡†|;|sòúÍÉï7IûÏŸãµÿÛ9|ýQÿš>Ûÿ­=zôå&Ûÿ=þrýñæ£N´ÖÙ\_Ûøýß¿ãÏÛŸAÙB4I/¯¦ÑòÎJ´¾ÖYާÉ–$/`œ·´d¥P#÷‹»è9¿üƒÍ#¤ÉœÖÄ‘~t!ëé5Æ×R˜Ž†–ž!ZÄ~IÝ)&`Ë0ÿjX*ùÆ wÒGV ç²Ì› 2„LRG!Øc°ÏÃô:uFD»`ú¹æ¨hò8›ˆ•’ðoÂÓÒ÷Í%ŸS½ [¾¡e’§y¬Â¨)M©…Ô§·Ñi„liŒêq¿7WlÀÍ4:1fÔ¥˜:õ3Z2î‘ ¨d{«á'$Øz¾µ´ÄY/àóïw—Š´—hä8÷»ªŸò«˜#zY(@–·ÇÁt&­’øΗ –…û”¦Ù¦þ¿ÛŽ_žü°}´íG¯¿ß{ðFÛÇô»Ñt9æ-¿|tø’óÍ÷û¢¹´ûãë#dŒ?<Šö^½ÞßÛ}ÑŒövöß¼ D=§zD4Eû{¯öN¨Ñ“ÃjS{»TïåR)}óÞ,ôÔý‹¥ºU^‚™Ú}µ{pÒ¦^©«h÷{ú(KûûÜÕöýØóhïÛïN¢ï÷‰4=Žžï.íK„4îŠ&µ³¿½÷ª½Ø~µýí.×:¤VŽ"ÓÑýðÝ.¿¢þ¶éÿ¬ù\¢5¡Ëöäˆ~6i–G'®ê{Ç»Íhûhï òòèšÇrRCn„êˆþt‰£Bv„Šà÷›ã]?–»ÛûÔÖ1*‡…‘Ö~éíÏóÒÉ\†çêÝ”£02ª`¦ä_-x©À…é)ïÒº"l5Ÿž°2[éÂÝÁ^;;ÑóŸ`׸äΚDøÓø*Ò;¢úyÚÚ,Œ{ÚXOÚjg“ËUm%_½¸[¥VWå¸gw“\äã?½N‰L“ -Èó,#TÙ‘+%Ùsê(N›Ñ~úó,íûx—|ôÔ*›åↆÐ0lÜŒ†Yö+tÍÆšp*^2Üâ×MÁð² b§£ùñ{êîU;ú6¾ÃvM³¸-i.Ï×ÓvÏÖí"‰y©—<ö Ô!Õ¶…Ì]NæQvZìŒF³ã/‘ÞJÔùê«N“®’µ5þ»ƒà6û³|½O’ÞÕ(f—×5¼Zª±/†ï1ni,ÄÝ-g´¹Çþƒ$©º©hµiЖˆœ›Bê_jH¦¿Ä¾`Õ¨oÀ—šëÙ…˜d«¯Œ,Iî2}Zz£ùo®yñëb9nªÒ5Ȩ—zÌCKˆ5D²Ïw êQ-0Ñ»®(ô|ƒÆÑ㋵Í'ýÍGIgóIï«~¼ñ$|?é¾|Üߌ7=I.6ú›ý‹¯:ƒøË'›t~“GÎàÑúãøñÆ£ÍÍõ'›ƒõÎúÅZÿÑ㋸qÑߨètÖ{O.6=‰ ƒµõ‹½Ž×:ëIol~ù䢷¹ñ8‰ù•,+úåöý`Ñ„–{À[ÊøÜH†Ûæ`÷‡ãh‡Shìg—ÅØpxÑÒ–·Òâ§0 ‹ õƪ(_ …9Üßü¿ÿí’%ÇòZ䬓âŒpÔØL¯¥„UX™/ù;§SvÞ‰*< >rÖ­·O*ÞŠö¤~Eæ¿pÐe„AV>a‹¹ªËýV5@dÕeò‡"€ò‘/"„Å`þÄÛ8eï$&ãÿŒ8´“Aý"è÷Uâ!¡í#˜˜®"¨z¾ú…y‰ÉKDÛýôúpÈžÓ†ßÓÕ‹Þ¹³¥W/¢Ó³ÿG!ÿùóèÒ,­ùWõºïÑ£Zúé%õÿ§»ãKÈÿ×=þ_Ñ£Õ€Â?ÿ?§ÿtÿ‰Bë´ÇêøóG÷±þßX{uC‰þß|ôåèÿÇŸv·á2Yö…?ÊF£Õ÷kí/ÛKø ò´HNWêî]¶:AQrWµøRû仨ñ÷ÿnDý÷"é%×Dò¬¯u¾¤ßø? S!Öo,uÏßþÜEÝ–eúé¶j%úû1±åãI†ÈÈÙÄjÿtpøúxï8¨yÚìi¤úÙmãg½$vvšL¬«‘|4øÚ79òtrD…’¾Ó‘“Ô"fS²!¹ñ4MuÏæÇIÒŸõص“H+\Œ&s9Äkn΄#y·Í˜†õ’¦c“¦>¹TÄ‹º¯ãñr—NfÚKVˆlûýîCŒ—½ð¦ †hàñd³\š;²¨ˆ«À™Œ„Yc?Ø\«ì&D nº!¾4´Še‰{œàœ“hƒ´"Ép(®„ì»8ˆgÃi3rõ„‰‹á©‘Ä×nh À¦-;}\4šBr¿v°³£¥æ+›ͧT”÷.úኾrª –d!ñøMQYî ß  h¼n]Õo“™´8>85zHðÆ0¢–P¡¼ƒvA30'ìTéyâçËÛ¡¦–œ8*†f¾âˆ¬»Ö„I\¦¨­q–’Ó8çÎËK‚j£è_°› …ÉÝ©«î8‹1—nX¢?ÑÉXª0éSÞé€9»J©b\ª&Áw ^[$]ܨÓñÐ$v8Iü黽À ’g¿+êÅ›HØ–#„‚ ô½NÇ‚Òâiqp€ã i6/ý­…\8UmÞ¤ÌÖî·|W ‘8‚¥NšÑîÆBrR¾Æ†Y6¬¢˜šƒþŠQX—|€o‘kBò>œ±>Slš]&fíHg]×toŠÅAÚÎ TᜑÆ+ĉf¡µIÁ›-iÙ»Èÿj(O"Ý4®»f løæ:ÐFCÄÇß0¿4 4[´fÙ_[[t]ŽuAtõ^£éMf=5e$±foo*‘€´–N7aí˧!CÙQß·æÒoâÊ;Κö]Ì%†UŽJá—#%¼Šäå«Ñ0]N¯”>@ÇvOÐ&=kXD©‰ Öšæd¥¾±â·ì €Ú¬ñ~ú>…zÇvû9{ÌǼ痚’5¾Ò4>ÙlBTÁû“ÜZ‰ö.ªRãBpÖ$–rž‘d²eX2Àð ¨rm—5ÎÜõÙ§±¢s·ìbÀC¨ô˜ï\N%Úcƒœw[v[>±7ö>Îp™o3-çœúj’Í.¯,á’(ŸtÁpD¼9‚O¥ŽD j™nk=ª¶¸Ð8é%ƒ«ÙgÆxII>i¸2wÙƒlšðõ‘–Îàuª»ãa,VâÆ 4âmt©°Ì/©”»€ñ$'Žçc„jI´,ûÇ9“»-y'ºah›VìâÔëóÖL3äaÝå p¡"„c4h:Uå m˜g2`úH“lùªJ*&·1Gé+ºA³¬á¨Î5BЊ z3Jo¥­Üå–©‰úܹ•S Ë2jËì¸\pÖѸ5Då©°DY^€CÙUF»ìÃñÿ@û€ôÞFÍÊì–{×D%·0û(,:ï‹€9×3@“€¸A7—)0¦šmõ <Ãr^K}·5°ê]Žh‰…êkÅÅÂi÷ºÉy@Y×f+î½Ë‡È‡EôZã2]‹MÝD¸i02T«03g‘ ¼TÀÔrZ$–4‘´oÕÉ\N\Š&#Эb¹#$ à— —Ù½»Ñ4¾Â’)º°7˜oL$j%aéú Î&cjl•çÁNïy<JÊDx O0”¨ŒšF1HÌEFé¥ôeÄB£ÅBò‡½0Õ þµvü“ø¦Ûâ–Ý$Ž‚I¼ Ø~8Õ…9›.ϲ)“”:PAFîè¬@µäŽûCÏËñ6–V£íÍ­ÃâÖ™ž þH_{ªYD§*¯Àh~x3@tèp*õ?ùé#HºìYúj”»æ~ ÿø#pãïxP.2Wä ä$±û‚I†:Ñáh7‰ä=Bààu毽i·¥È—µ*‹Þ ¦ý<9ñM4ù]·ÅH¼ÀÁ>ŸÐÇlæ$» À 'L®EŽ6šA7+èy‹þt QÝE<ñ\ }{ Â>FÁ.â2v®C+€(ƒ3N-5DÔá«H@è½MÍË-¿BhÑ”ÖYßðµR9Å6¸)—nP‘FHjÐRöƒœ7NtêgR¹zhyûèÛãn›Ñš¬Ú1ȶd×ëƒY¼oë¤$‘YŸ7èÝH‘_³?`3¥¡ÅR¾Ü[¼"7H¸*ìTõ`QîÇ‚-Þ@nöçë mÁŠŒPC¡K)¬Ìå0»ˆ‡½xróý“'Áñ†úNñÉ©¹òq6rl~a¾.‡C· `è}ä’kžÑ.¼É½Ì϶§P¥å“â7t4H±¢HÄoL¨ÁC¨¬Ff褱»›L¼wSÖBoW6F©ê±Û^©_’¼@¬\‹y Œ³œU” kRø.*•Î~4šð žž-Ú2ÌO£;ÿ®aÒÁèjb™S§³p̦ˆ—2 ¼rÚÌÀ#ˆŠëªS‚BàKê2%¢,ºÊ@Šhd©ž¨qÍ&ThBpkf& ¤"œySÆúCíDxUø•zÁC pÇ€*í ±JëÆ:9)É:Û©J ±äÉ-1ºÌÍ¡â’þ¾"ý8ƒÈÜ0hà;L}¨»íxYYÆ@ÿ‹äùx8Øj©ñç?¿ÜÞÛoèiš/¢"–©1¥S[œÎžd ¸Nò\ÒÞÛ‰œñÞG½>›cÝmEÝvCãhþS æÓ@< °m³ÆßK ‹ ”†Šª4gž’B—"CïŒN]5UF¯¢NÍ;aÕ’3šAújœ=oÞV–3š¥um“°Ï{Š`´©0š±  bô¦Y¡¨’Ù,"•â;VUôf“aáTãDÓãhÀNß݇´FáÐø¶"M¤öÿÔXzöõÜ+ª6HË»Eûr(ÙžAJLzkoÔOn±Ot=6åŸn´o›Û­î`OæSØÖÉÅj:aÅùÉrü.&–Ž©çŠ6¶¹Zq‹0®ô;êi—xj’ Ñ3½ÞÄ1]NU2ry²m;·ƒ %`Èæ†Û–ËSDIB‡r‰ß¬ˆ·âƒo¬¨hø4#£˜ É"5´dYùº…À¥i·fSä/¢ëdJÙû¬ ˆ‡c‚_º&i/´#ˆ-ÀBN”‡F­½&â) ~z™ºùï ÜÊ)ÊÈE‚ïA$u¬ég4›ˆÞ4ÇE½æäJó-Y&ìȃ†q‰LðûSùp¬^ ê ÊlmÐÎBI²|äXfÌÙ*Z5|³Ë¦é«‡›+Êeß*5HÖò¢ƒ†Vø¬ýÊõ¶¢ÍõfÄ5·¢Æ! D¸œiHüp7׫š J+°B¥vÀøwÌwse€µ«n.Âz©=àc%:î9éß4–þŽ»ÜQ…m3 5è.qSÊí®·ÍÔ‚³Õ6ÄÓoqyÏó¬ñ7À"Ï£ØÏ©t¤{qÚi®ŸáûéYí.°É"dÛ[øÓ¿ ½úõYc© 5Câ¸n ÍVD0ß/Ú‚e †þYëU6$¯ï,BÔ»_ö—ñ+€ÊKÆ—«8sÙæ]õSX§±ÿ`ÜH·ŠªSµxœ&—0]•Aþ•¿}}f–åRAl`›%Æ@‡l¤""W'>@ob[Sv¥Y¯R¢J•#sæaÉ¥D¡öÓ^b¢&›Ê!¶:Ô΀@XuBކնhÈ­õù"lœAÏÅ¢’(' eAó ~ºf0CàI4xc«K‘.±Æe–õ[ÕÍÈ}ýñÕ¾ÿ(0Ë ¶¨ºïmýê­xDhQÈonp‘zÄ;ºz,lÙ1¢Ø0ÔtÖ¶:Îj ÿܽ ì¼¾/6ì¾ÃpÆq˜!–á TÜ ÛC; þ‰Ùk ”;5éÕ#ÑèQ³LŠ;¶Ÿåáº5õdÈ ÜV$Ï¿-'·öF¾1_Õ«`d`º\t*HÁÍГ#½½tïÐ$z…oÛì:eõÇ|K ÁN†"nßr3 !w}kÓv¶6 ú¯Gÿõ鿤!ø/"zsVU­_ôˆŠ¾¼J…@íõ¾ØÖÆýÇhüõ·î¯ÜG=üZ ¦ŠŸ¿güµ7~€á•@U¥L3oGïy;¨U|ЏnŠa ÖMÏ¥ÀLDt,vº¡E½7âwÙ¥O…W•N +&9Ž˜C;pçaœ‰H}ÎMÆÿ‡úžÐH¥àH0§ÚŽq:UÄF/úyšDPÅySú^šàô߀/WŸ œ{û+Þ‚…øÑ¿L/ ˆP-¼¡*Ñ\ûþú>sÔÖ(Â*÷HIÈ.bq*¬p%Ñ:»ÑmEMÚÀ¤Ÿ¯AoUMhP•zS`ÒoÝØ%4ðç‹×·Û}XÔ$‰˜?|”¨Ç÷  hš‰ K'9\ô к;"ßËÉ` ! ²v²fÙÙíDeí4çr§Ü Ñº`uMBìøNq+ &˜¶2j }3]ê^äþ<é î¡t­·Zz×{ €bÔÿ¢Ä¬R£Í¹R®:™ ¸ÚX΃)¾¤[Êm4l…¨õÓÆÛŸñê&}—ˆXjœq_…â¥þ(l6×ïCÄDðwí±xމ>øMè‚ßœHÆLðò0_ÜüAæ¼ Pq†a2çK ˆkÈz¢k¸†6óxöFö\’FÝ @fÎî/.óßåA9X›wǪ;RPv8ó1ž EgQjÚ¡1¨×ŽÓ…—n QKg¶f. FQ·°U´þ ~h5.ç—z§ fÈÌ\ Ñ3–ÒnØdì-‚7pÏ–ÚRÚ0ŒÏÞ±U Œ:XaA*\ ?ù¡nÉŸ‡~ÏÂ8’ÐïM¯#V¥H^þH§r,ƒÞJ'2S²Òe¾€so øÀ¹À\v/X|bÕjÌ#PYIž§¿ÿwôz’^˽‚sÏßÿ(´z‘*î…ºõ/¯;aôƒvâÖU ²õq³1ÀØŠ‚Ù|¸§¤MµnL¯Õ+D'ê^n*qQ n —³c…H©¸¦LÀù²Â­Y5Ñeß¿‚uc58ª\.7{\•u»-×aí¾ÕÞÄH,JýÈ=kÞSÔoš¸bþé±~Ô‚ÕGIo6ú&z‘䈑Á~É}Þqئf¬Æù›ø¹-va ioÊT&‰¦ÓlÅ+$¡­yÁ?Ì5íê¨o ²œn´¡Ü1?¾ŽÅ vu5¤OËÆÛ˜OZN0Kÿ4š™éF·ý›–p Z´ghCÌ7xPý\ªôZr`Ü=¯Ðk…‰¢!LN ¯%›GƒÛn¸µ-ØÞH̽͆wfbUåzMõáž¾¼ûãëVKÀ ·¢¡Gö7ÅõZ`|¥³:ó”)¹Î‡3¦4kÿ°{³·²w¾Þ=Ú>AöÈ*,Aè« ~Ž¥äÖ4Ä¿0ÃÖÏnA#!I¤n10!=Â2¸PoÞ$uÙØ'ìH¦½n°õ]v¸egÌ‹ª8R¦¹À„¢I ›•«õ¦ò&œV4CÄ À½+ h–rt‘é¼±"Ë92½69€ÆÚŠþ"ba·0º*e(D."×u!8GØjÙÙïç6ׂ=±õ’â.zCÈçáòâ¾Ï†ï“~U”ŽYß®Fy£Ö„Ò±k ½#ø¼NŠ+­wÅb®²ø¼•´*Þá~ hK-Š&¾®Iø®Í5¶ÀC]ø¥ùÖ-‹ý>œ­°…YST@'¿Ûa§Õpófeñ„)u~ø¦îÜÊ«¾ÞùÒHþdÝuê¯è‹bu-æ/Â3\/Ce4q×ç À_qÅÊÜmxÖÔWt dÇ£,ŠÂx€¬‰•)8KÖE¨(ŽþuBMä—|ÿ=)€¤:(ÂvKÊvžn47•Õfáý*Tå9„ŠNQpVö_øD<'¦¯¿^lEëüÐÛŠ6ø!–‡k±‰ ߨvxµE¨P{IÏ.$Þ0D·ÅòAD¦Œ8yjéŒÁFÄJcÿò3Ñ}« Ì -P²‘I%Ðç=€\¯GÐ1WhK‡"áìä §Q4aÛS(>ˇ´¼­›,h¥Ë×/üFiÝQâ´q{=EsÓ¿N¾„Ð$ÏFf ¡Ïu+úJØ õÓt¡ÐšâæHìîÍhU öÏŒ’Y¤ÌÉ¢uåà )¬tîMëƒÈMÀÕºö4‰Úh¡h§¹ÈÅ宽¹þ±w'¸ÿD·: È©¢tèwê}-7k¹5þAÁ¢ØãOgO½[r<—:Ëe ÛFôE´¨kòÀ7ÒFùô熠>‡9­¬*" |È,ƒ›Ü‡9Ê«fÆ\•b(—WDgÕxçEÔ‹ÚQZ¢ª¡2r_ƒÁeOm…AÖ `¢{ù0:µ+X¿Ñ@[ÿ À³†•ÍèqгV5³éà Öñ>è)–ã+NMeŠ–=1Ešì™GbÔ¨ ©?Â¥Žä¤ZdÅv¢â¿Ïg# HQ?!~Ñ ï”ÀÍh)ÀŸÅ¸(‡Ä= ë£Án `3Ðàxß³2ø[œ Ç„«5¿¶{Ih¡€T“ÆâïM.j&“…²í'(Žtªt¹;Uš:®t­h¶e='Ée<é³ñ< [‘üƒKL™Ð¥øAí÷-¦MÉ-)¯YSÌH=* _³­–›"V‚fKe˜lö­4ÏL P´:Å8ØÏ {ÎÞD¶Ó©zš‘»Ûv½¿j$ÕN°Éûˈ [taûÜtʼb!z:dÃÜtd K6*ÇE)=Êh´‹žÞ30wÕËâ%‹÷7T•õ’½–¸¤;›kétTøÆ#¡ØÖšìcPwt®â|™ª®ÔŸ*šÍÓ©Q[Og %+g~â²ý|éga1ѪC´Y©=ŽÔaƒ× †<ÆöƒCÿÖ<Ãi"a2égâH-:.x¸ùš}FU•ôe[nN­ä§íÌã|ºh#hãe}ÌÊŠ³°qêBÐb6s*>%lHsVª½îjbß½‡Öp":åŠM6æ«ßÖtT¿¡ n?á —Mƒý‚d;-9ô±ÏƒóÃvÊÞ›=W¹íq¡3NØÎÞeU2iHÂü«‰ÛŒ{­›ÒÑr°â¶”êë'¾ZXÂ`‚õ§Ê¼èn èø­}Â’£Ûbtâñ¹P¹ô³ÁÎj@º^é~ÛÕx’RÃA™Ä7ôÏëb™Ç)dÿ f¬L‹’·ÞÚ]·ý—ŽïÑ…œë'ÔÝ;fKæqz²ÐÔæàgûÑSQ,\2ôöê«ðNöáÜà×®ÊëòTâVíuöà_Ý›zç]ØâÑâ·£{&–º²Î€}<‹n‚¦_õ²ßËiAXô/ñ^¤áä&îØÐo›õâcã¯s¯"=T˜1ܨ¾¯q!3»œ^ŽÓ(âSï»Wç­>S.¾«™£-‚{œ¯²®Ø§‰XÙ(g»òºØ§†Üÿ¹ðÊ{²ÅîŽg1½7/$äøœÒ¤ò-¨i-´=Aá5BNBcˆbrâ mVÄŸ-³²1"¥¹R§ÍÐ+5† ”Yrëìy ¹óòFVúnTí©•RÜL‹à—>›É-ǯòÛ̦ʡ…mÀ¸ˆ·fç¦ÿÁÖ&#^¨šËê©;‹¶£†¾ÌÜ ç­+æ/€Å¡É/̨Jƒ’fX°‰â©±fGÌ%–`Ïž5ÔþDAÀ<™ [FÌî\Ì$…%C8;6Ôæ:õGÃc°}±RJ0A±ÆáŠÍöÉ |%tH!Úå‚uRBzžž5QUþFÀã ¡ú;±Ÿ +NaB¥…2€´Hñ £åpe3qh¹û„1 ¶]\©ušøjm­ã%Ôi÷׺oa«l$vVEkhœ²ƒmíB]&SÞ†×Û'ß/X"-WfÃçF• ±^í ëò™»XxeÙ`Œø<+ÁPàÓy:WÖhV¢W ðÄà´&—TçÃåM¢Nýšäáš<“ìK“û¥ÉMÎL·°8B%p‹ W"/ÏîiÔY©Ò:üª¾[ƇчŸïØ)>F÷B•ü˜µZÒ}± >!ÁÈm5Õi"¿b¸® õ…'X¦rêVôln=;š[<ßAæ×ö×Òûºõšfç„ô'œ¨¨Åÿ‚”Ä~™ÖÂ0·4P´ Ó›¤@¹ª ›ó¼TjHZOßµ^«ÿ;L±dÂÒ`[·¢÷ì‰2‚î¼_Ýó‘QU0>•½£Óȃ¡ç÷¡¥• çïl<¸Õ1GŽ µø.bF¸LËŒn ÷1¢|÷&242ŠÓc©ßfgµŸ¹D™¥ ’¤+CÇú‘Hp1D3’¼t¹H*þ Áê¼ðßê.D ŠCo,ÒÀz v°Šrÿ G–W^ü‘ué;lí$ï/‚÷ëì†.ŒÜ ŸÖC3Á€¤ñžuÛ¸r‰§iü×îOç VüVs"zºPÌÞãY¿Õ£t¦Œ”Ö™§ ŠøœËšÌ×jšÔû¥‰°qâ4Qñ4´ÛpMÌÂÐg],fè €Ïg`à|É[›€B°˜ íëgÑúŠ'oÁ;±|UœÉ"†q®)ã˸ÖüRh üøò¬(q5Ó~ôìVzÁ†H¥,6X}¨0Â×@G>i ÷ÍOÝçÚÝ.ù;iÎË‹aRðŠrzt¡³{Ó²Ý>T¸ór=”x/‰A ;ŸŒÜ,•™XÖ\>FRíp̢ɻCÃоvˆþ·Œ´ÂéK¼°8ü3˜²‘‹½ –d-ÂCïºXÄõ›Ý“*#òA©ÊÈ ÚÅL5L²W8$67¶Õˆ~j¢HŸ±Q¥]Ï‚%¬\&9Šx—·@Òˆ‡å „7“ltÙMFß‚Åe©­ß‚ççìw~^„ÛÐÛB2¥& ÇDÓ öm‚Ç£ÅôŒ,8»ét…|‡:Eûb¦Kâ)à¿€ "¢TÆÞè&ËÖÈJc%bè,¡ØÆ¯Ý„‡LÿlÑ%ê¶8¡É×ô³Iÿñö0¥Sïo¬Ì‡p #Ú±s¹¹ ¡#¹‹Íò†É¢ò2'íä1syJ¡Ös¤Âó «q:ߌ+i”ÏœÊ*Îb©U$ÃÁJI(FôòJýXÌÜOô¥b4‚ÇL&j#®ö’®M½/´<äÛŒŒ…Êãòëåe˜ñ0sÕÊHz£§QU­î`¯5`Ÿ«®†çs¡XØãòs€¬ëø-›NRKùÿn\åÞWïC1‚PUçïêà?–XušòÜaŽº ÿòÓ¸¿=W¿–îé«ù×ùhRQõiö‘GC5ŽO‘›`©ÊÏØ™‚:ƒc ©Ëö¨°6Fšîk¨« †¾l1ÍV•ÆÞ®rŸ¡WrÈJFL¦\  4ó/³ˆõæè>Q5û»„ªe…|ñ­,¡Q)e ¤ B8Ýy9¨ˆÄ.€ }®Tèïùxî«gV»ñ#ÞÊ»eÈ©æˆÄoõ“Ì&O#ÿiFFw `„ml 2âÔ€©žH4}@é@#ª·UAIмVþ”Ý•vÄò>”¬4ŠK"ÒÉÉuhh¯7­+ä<Ÿë±¢ÊeþØî áž,(¾\Ë €VC¥ àW}ó\!Õ)ûR¡>Ú >ÕBX ú«uôûã Nt78Ôa >êl3 ³ùLÝ ý+æãÎÓpX:O…Õ©:³­Ÿº8•J‰!C 2]ÿ¥âChÞˆzÖBëãéÕhé×{Àk”äaÈ„âMÈ=8¦e›—% ;ñüi_® l’^"­›34zæ(…fÍ>ù—„÷J'ŽêqŽÏ¼ÊÕ§aùo‰ tÇÆÄin“PvÀfÈRu•ÖMj<¥_ á/3Þ}6fˆ¾É¬“~’ŒëáÀZr÷Ø)ŒCOO7ΔtqW[¡ür`–PS¿+;9=³ÈµU_MÅÆš°Í‹_FP•K• Õàb¿åÙxš­ ø ~@Hú”ß”_<½0ó6xGâ[ÁP06þX0yqU–7ŸvÖŠ‚ÈÇŠÈÍr0O„÷,„ñ<¹ ¢)N¼ûvu8ËÎq àLµWì§ã RŒ„(Ž7ÃŒÏ,ZCîá ,=æ’oÊ!²I– ÑÂì/Åfÿ#zPé»×¼a[ºˆrqÙä¾^>­ú~q·­ÊН?Ý,éÜp„ŒmðeÊ’'–;JÍ—a³Ì¹rk´ÇO7* o47¿ª*ÜmuæŠÏ•ë¶UdúoþÛ ÿ6ëOÜ`˜ewŠøWá…¾ü ~Ù¸K/QÀÐ"o£Ûîlv}…!nÔ«~žLÝxð£v8ùÏ3¶I–M?qPÜ,éžÁL3D7 {QÄ4’;È<‘;ï"1‰d®ØÔ‰lñ›£nËg(4A—Ùtâ¦âmàXÐñ>À4Ãl¤Ž‚¬‰pγ™FÀœJlá…K¡ê7/wk4: sR©—6O3uSðëãFL¬"…õq±˜Ma<Ñ5Nÿ£î¸n.“QÁ…ä#¦§½…ӣ˫#÷ÿ¿èU½ ¼´Ÿ*ý¨…Ms±NÙdN‘\!ù™ÆˆË-vˆh”&o:lmÅ+ú֩™Ð»kJ<ÒlÏ`«l:ŒUffÅ¢`- š55UσéOœÎ{§,2T ´¯ˆ‘–ûi®¯‚¬Q?÷À5Ó©ƒEb~ÇQ(µ¥4Ѩ«ìj¡ Öˆ–âƒOýéfùþ»Aü„yŠ\ìärOλjAS4üOl%ŽhTA ÆkV¨÷‰ë;ÁÕkú/w¢«ZU”U¨óƒ,¨Áæëú÷údJv~EšÖëŒ]Z«öSEPå·zúeòÙE·¥ÚCËeÂ]j(ä{ý²[Á/ ðŽþ­é©Àýuj¬Æ ° ì“^”iûóbDí}–M¦Mv29¿¸«1šÃM—oºœ«HÓ0FÙ0‡6ü{ÕiÉRÍqò+^c®là œõUÖVñÅd>ŸÌË_ôb*¿vÊS¯ÎTêµ\éOÅ ?—ΘÉÑo}#årª§+m‡ÒϨ é}PœSgM§R`S‹½áœÍè–‡ÞI)¸è\¯Ð÷PÏ05ò,¨æ07=¼çrl¯‚ ;| ˜Å/Ôè–š›¹Ø À׌6tP`ÉfÊëbY`³ÐŠÉÇÀ"-3"íô ÑÉ|k=–늟A:?9 c€¡5¨q¡›f ÚYó¬è†¼uv£F6xO ag ÌB·ÀÔ¾êl)¸l^‘]Åï þ]ŸºG€ch8δZDã}¹³øób2‚Bd‘¦AºFXK+C£8—k>ž*м ÖÑ¢+GÌ´È® ¿Î8FâÐ^9¼’×U(š¬@¿¢ÆX`J[Ú¢Àu>à:e€[ØFXÚ‹^ -/P_]§×€tô;7ÝÞ4–^¦êÙO…Óëç_¦Rüxüo½ÕÊ™–ýpnç>ùËÓòHü /Ÿ«Âf¾H‰)G‚žS;J4Ê`þ( 8Á,Kµ:òRK»çó°ZIl§&{ÔÜ$¾ÿKM|c¤øíý ²Y}6Ì4«üºvoéýdŒü[ÚJÝ ùV€ò:ñm”rñЧ¦âfùŠSS¦Ñ8sS—@£b¤…¡1Ëü.IÆ"7—d`çŒeÅ\ è€FU#ñã%ZÔÑ;aÈ$íç;Í)3Ê’Wa?CY¶ñ‰/Dp6L½P⤋î}Ä`܇ÿ:æ-&Áu*ÔÁMä'ZäªþíFðÖÝEÑ£âuVÓJ±|y8âªí"zW³Ñ»;q†èeÌ/¾ãäœÍ¶¾Ï6¬qŽKær–§éJûÂ2µ’á„Hæ-à¹ùuYRZ)û“¢¡»¼ô0¨Mz\o.pY°ÀË s*Wà¢Â_K™­ \DB\N¡³Ð:%´óFôp‹°ð\jYQvÕOÛhõ¹b‡‰®¶Ñ€ÁvEöiÛ4z¡1Ìs%; îB¯_m^Ñç|ûúa»¤/ôÎ,]xŠ”Â0Í+ÕÅ(O¢óÃö3Ïg×.$q¡EI‚!20À§´ë¡Äm$Ÿ…vœÎvZT­¹²§¬×0WäÐgHý…øIJÐÝ5n”•tÅ–ðç“[ XלD"î Âs<Ù¢óOÿŒñâÃÙ‡’ÏTÇ]3|6ØGjL÷¿¦xÜP§±ª×õôèŸêi±‚\=J—óÐÙÕ`»”¦ÍâR„ÞBÎ.÷&p£E%8ƒźF§>Þh½Ëw‹¼]t³ Ý0Ÿ¡Áø=ÀÇ#4e P2µäBlæ0^ˆTÿÉv (µŒ.µ±OÄOµX d–TD[=ôEo> mr¶Ç±L$CpØŠl)Y6qW:ÃS×u`ÁÑ~ º“ *gþFÓ}ÓÑ'¿¥òî¢1­Ãé4 Ö1uFpÖ™.qýç&뺚›jqNóSZD|"Ä©ˆÍ›Qøk¹æUŒþãB3­¼€}ô–AåÉÇžS–tZps/w¦å`‹“LÓÂæ$Õ¤—oÏlQ$ÝXѦ·^ÙÀ«^59šË†þëbnÖh=Єu,vR´†:üFÚZÓ0C…k‚‡yJ tÆ“ñ/‚” nj$†ðh¥÷‚•ëúSOPìa 7`.«åę݊Ô2^Ÿ8ë|6¨Ÿµ?a÷Ïyò{ç ŒpΦ+cEjÆíx˜á"Þ•½OWåãÞ…ÉŽL0¢:æ<ÐcÜë­}Í3§5¢Â:þï«'ͯˆhë,°ä@,į̂½ÍY|¡ÔßÞ×ÁN?jFÓB»5¶Ÿï,Pn!p©BƱ1-¯”š¡»è¥J¥Õ")å{Ò۪О´ËõKƒÖ:Ê¿g©ªèÝÖ9©¨Ï)Ü|ÖP…ïfb´”b8·à 41Â…[‘‹u=ñézu~ ÖÑo_[1‚èêภËhšÛ<æ {þ‹SÓšUȨï<ËHÞœ»§ª%Ò°ßíèÀû2Šéÿ$±4bÌê‹Z6öÀn®Hð5½Þ"ã ™¸ßæùp­lÑu +ëÑMÑmoˆ£$뇼Él#Ž:¾ Á,äB=PÇy/MÏûÙÍ\|¢ð{6ƯÆÒ.Ò8#ÝÐø®x»éF)vËUgÔ»Š`Z‚!u[¿ðêmw[ÿ{¥¸!|P$A%½è9/ŒŠã±ñôÓh6îÓöxÉnÅ·¢2ÒôÜÄ鸟±»C—âÈJ-5²tFÜÁPY€¾ò¸¢6ˆ “FÔ AÓQLFà3Â8[qBG*òZ»÷¸™ëb}8&@†4[³kÄ8FÜãë ab.ˆ‘¬;‰V lv#Œ¹“'›ðí¦‰ý÷È­€}§½<ôǬ¼³dºí¿vÖÖž5ùź]Y'æÝl>iv77ˆ5^€Èyáu)á7JðK_>e—™,D6BBØÁö‚w(‘cd ÌÈ!(«Õ¬ õT+8BrL¶0\:ÚÂ'Á¤¹-›P¿~ …„&PV¹(ŒI+ŸeºŽÿzë¶›³ßdˆD#­E:O£Syî¶8¢tû´sÆö.ôîlå7þ-€¸ÉÊ©Í2vÎ0³<€,FžÝÃò t¥p¯Mz#l×ÀÀÌ“x¢-­ZØ$I™7›¨U#-+Цì®â#9«Æ‡¢Ýz¬&n›œ£1¨É£÷ÏÌ%5b’ßåÓäº:甤Ä«¢™H‡ýI ‚–¢(øJ\EEr‘Õa^.uö¡YU0¿š/(Eƒ‚WÙur_¯(³JÓ_%Õ#¬-½*©ËcÀÿ*'òFnwYoIãÆÊWÙ®@äoNÈœ8;UÜO%€‘”¤š¤Ã)Œ5†f·m#²¼¡Õ_*K±ñ§îýLŽz ì†M®¸ÌÊ5KÁQ’BTÄ–™UÈÅfp(º5!-}¿§gßxgp6»)ž'à9Îõ³§bånœèOÏØ@ÍiÙCÜk£ƒÛhÂÖ‚>{tHÙÕ§ªï² «›œ”ÊÃ/’KÐÕÈIô‘¹Dkr€¿:A»íßMþÛÿ+Oøvn˜Aæb8µƒF"x ËQŸ®A†6wùdÎÀ9tYüé&4œ%Ÿ$‘m½”+_÷ÚA2·ç/„iqÍ…{„.‡Ée܃Rœ³€ÆWbäÈ‘œ¸07‡ö´FÖ^—rŒ80²´Læ,õD× "lÂþlÑÈOJ7¢Ü†…qÝ{"¼+ç†2ö¹ Ñ¥í©¹ëu·¶ Ä&ž…¡N« ,[~©È,0§¾4« ûFê K‡Uâ Š[tûúˆeþU©#àÃî2·ø9òíÍ'ú¯ÑúšNv]ýT6©ÆãÚ+ü&¾#tá9ù]¼ŽÕýqPð gCœ7:eóž„óGs¬ <£´Ǧ@6©Q° ’ÊÆ‡TÁéwl¶Ã ÊñhC>áiEŒàh¿”I®ÜƒÏ …ãŽT?Hš6˜žå3!}1ö,Øî[t)zg’¯¤Â¼VÑŽie|– ï*½¼âŒÔ‚²$”ÎHÃïÓq›  æuxI…¶É ÿ²°R¸€f'iclù0ø7‰¶¤sv òøy‹Tã‘§€r*Ä[whö Âz"f•øÈΰ…*'žÁ»‹¾É™-¾„8öI3z„ œ"~ÜŒ¾²x Ð2R‘ShŸÐ¿âFuv…=«ƒt]ˆŒ¹Ðhùìb9jüÏù_Oi.+ÑJ8¼ÈÆý582þ•°hÑúŸÙ×XÌÂõ Ì?ì|ߤfß³¹'~y²Â}!ºCÆè}:ÉFÌ;!¹‹¸by”ÖF© *K˜ ±µ©‰0`HMgåFT§Ó°[g²)Çä:/ZÖcs@cƒ2›XB‰êq× /Fûõö·»G%“{$¬0f² PݺÓñå [ ?Ú£8\äé¡€·ñ%bh\Ç·Ñòü„³çŽ{yJ¬‰>„@f \³g¾³opláî…¤ÃxAœ78§ûµÆ†z: jû¼ÀÌóB,RRšõ˜‚n„½2bجÛZuPAµ¬v~L[ZªŸ[`t$ ¾öÀm?õùš¦Àv÷‰KÈQ #¿ÜmuÀã¦èA€îVÏŒOË!B÷|Æ ¦Æƒ–†9d %Žl*ƒ©ËyáR{ h= µ½õKàÇ¢M`Í”y@Lišôgò"„ÁÑ+s m=0XÓk}ƒÁZ]9¥Š…6W€(Ðzý†ÕÆÃ_áÌ9^Ú§ÝÖrç/ôrå,zm†ho>¶½³›«¿c§ I&ãl(Á<‘´.aïÆÒž¸ö{O8Ëp£¨…0ô\”S4çºW¾qï]>Œó+MÇÉ$gIºå²`èvûáX&Ë@aS» o tƒÜ ÎVJ®{œG‡£Äu…KXÑld›L±•š@dêšê›õˆKõPDϬ²ìÞÏ%’÷¦Õ(b¯%çQv=vô‘¤à"’çvÊÁÙƒ5|ÇKdAŠ ™¾>—Èê–Ì0óÉ¡äfe%†z|ÎF×YŸ…Ý'_Û¿N_ÐìÔ‹U‡Ö¡ùd C×­ÚÁNCc,6N£,Ëèï3@]Ûˆ>¦%×ÄG´÷›íÑ= [H÷²B^²'q!ør’÷âqèœû75j×Ôö©Oë%~Ⱦ–<€Ö f*¶cL½9Ú§"ý¬7sl±Ë_%á0¾;yµûñÕ¾Ì 4XÌómL¡¬"V‰Ž{62ù³?Ö»:q³ã»˜:'Läüm*ÒX•ñ,í0;[tMnr„EIdb\"NèN*xisz¬¹ãëô—$ïKMiÖ»š^ƒzÛÊta9Vi-Üø9ŸØ5ñ2FèÊ"jç¯_NxH ˆÓ˜pb$‰ ~>œ>5Ùç—Á3qÁZ?ÿ Ÿ:q†|6I+Æ=N&Èv®.×åqÇ|ûÑ yÛ£½pœ­—þó?2ðѸa“Wè³—¿ú 0KÎŽê>ÇwêIÎ'.;Çß«ÛARèPdÔÔ÷ãlÄïU šþ“:¡-Oã‹n˼¬,‚5HÈ]'ò0â¤S<ÅET"±+£—ðDQ'O×$»øi9ê ž‡½4åÈž·k_Á ’™^æãüŽp‹­d°… „J×[Æ”Òùí¶Œò õ¥Puo¢}¶û¹PàQ¯ÆÒ´ æ¹C8 ’‚GƒçðãÄ?Nýc7[£rŒ]ÝÀüªrÿR¿ùù,‚a(™i&>H?®i݇ÌdV7z}x¼÷#ñÐ ÇÊ­ø¤ 0uA£Ü4iw†ŽÀøã˜À>ˆÂm¦ã¾ˆóäñfÝØ Úb)Ê, Ó@½Ü‰6o>©h¶?×nh´àûnúSµ¯‘lª{AðàdË–ÅÊ ³äˆlÜ‘@òläÒ4™( €ÜONò ¾ù€çUä%ïœÞO7̹˜Ô_D4‚€ìª™fïT à])†·y¨Ô ˜›Ðd®XH6·;ØC X‰ÁUÿ.»=ÊÚŠ£„×Q?ñ‘­|ZáB»…Ö _F^Bh ›4uÔ¸šNÇùÖêêÍÍM·}™e„ ºmZ¶U!ÿ¿ùù“¦òk¥šÊ|½4—c(ð÷ÒZúÝÿ›½/}hãZò¯Ö¿ð¾t:ø"9ZÆN Á‘ ²Ã á,9JKjAÇÚ¢–Œ‰aþöWë9§[-a;É7oâè>}öµªNÕ¯ÐáçéoûWÂéüúÛ7þ­f‰Ú~@E1›û›Q ¿~ýíþÃçËj›tùCÛ ’ª°‡Ä4%†ÁôMÑ g]DfeΈ£"]\”KØCâè§³ì1_NqòAÏjJgÖ·r„Lä×Þµ/L@òÖøM²€­Ò»—cá0Ôñqký[Ø*PS°Gc‰¶Ÿh \×(úFQbЬeM;õï‰SÍy~ÿârÒ½~†?—/ªƒîãËm¾ÚMe"ÜàŠè¦©É2–ѬûhèçXfõ6"‚@ ¸¨ë‘B º– K¥Ó€öš)Ì1EFéªÀ 3ÔñøJ_•÷aÁ/©¬1nqèpF!y<¯Áµh4FC:^í¥,‘tÇÊEñø«ÇU_C€ð+yשwÐ<ö0®ÚDY»,­ñ$—µ÷jùr£U‚‚àçlcc›þÿ—âŽe»¤:ƹ‡lôK²¢Žâ—EõH%%ûLQ÷ŠmSÓYˆo@Ïñšßˆxi8¡~aV4Ó QôͧZÂ=à¶ÃE56®I’Ý”ÊcÇÉÀ…UVa(Öˆ ^W ˜f{h'"Ìp: ú¹™gáÃÒ)J⨥Žñ3Ÿ$Ë¢GN) '&QI xï§ßÉ™¯8|ã¾] Í›ˆ ܤÓGYʘõ(.I‡Åà´°þùV†/0œŸ ”X96“uª®;µ7$ÄL°x‹…xÇL#œ]L©9ƒðëoEÇ õœø,jXô»ÔÐÝ3X¥(J½tˤYR¬…’®ÂðMQ¯äÜXa¯Uj•XcÄÔ¨BvN­"bBÛ'zèl1k#±Õ#}”ÐáÀS–w€£Ë ÚK}Wa~WŸll ‹÷aÖQ~«ÞæÆ“'©Ùâ®3aø`'iÇlɤâÍÏ*S>4à¿£P.KÒè o–NÍ;çÓ®8¡„xƒõáâ:œ˜u˜(]¿äûCÖ³K®Ö«ã¿QzQ)® ¾©‹u?|÷Z‘&÷2h›é®Å†ô3"g ,Yê¨ü‹—g…´9DZgmz—µglLþ¥>v˜S›¦U«7LÚ"“(&×Ò ÚóôHIlÑz-í–EE-ÖìùÓ¿ÿS«t?½³ûßnß¹}¿ù/ßéZ8ÑpÁ9ŠÞâ¿kjÕ¿"&#’»oziÊ¥¼ÙÆ‹:îÏÆßÿ•DG€NúÉ í‚ö¹G¼@÷¸¹¢Ri&o77ª€Ôz?Î6n?ªno}ù/6ÝÜÚ|ôèÉ“G_ª¥‚–ŸÝa…»³<Çod1»ù°ø¨ZÜú²¸U|lðCï*àF&ýÇT}éÍͶJÍÙ5´Ç쟢ί^y/¦xêÀÊ0Žö?¢­E wøæÏÅ7²Ò˜fCÉpuB†ÏËè€ ¶ãWÞ½õq4B|¾”p-ú n¦Âÿ<>8ʯE½w;ž©uë¼C¦ô˜]ñ_1‰zñÈ** ÃËöÉjeŽÏëqvCX&KZüA-µX.ƒnÁRI= —úci…IÇ,pYØ©Š©,*ÈRŸéuÓÕMÁk‚u¾rЕ#Ãvâ.d¹dôŒ@ÃxMuyñCÃÍCÆÒé8ƱÀ‘§î²Î£8 Lå OÑšÊÇÙMg›²j% Ò@c™ÃÖE‡¼rì:[i_R<|Ý:ÿcªa¼Û˜™F¹˜ —¬œÐ’W;Òw>ÞÏ LôУÚMiǨ¦D9‘õƒ™VA˜JFöšDäÛI4òª„ç¼õ'i#Øg4¥ šÉJýT6”'ת˒aÀ&i\’ÆB 7DiݱÒßzþÞñÑþÁÙÁñQý°éÕö½½ã—'õS8Ýš¾öÓînÑûl—/];õU¤:­õ$¶*¤ p‘ªgX,¿€¥ünaÞX¹)ÒŠ!â\…gºÂ5—…|YÇ/èºëª1M˜[M<ÝéºßédN;àîä‹NA‰Ø¡[óàm€+l2+Š–4\aûíGþ°‹J ZŒÙ c)Ždªu%N Ì!µ3XÏW!Š6ð9Áqeê3*›Ðk)O_fŒÇg<. °qÏj`õìÀ-#l¢TísµUÞP¨ãN0‚ÿ,´BÊ´þì•~«„ú#­RHÆtˆSÑ÷ê¬SòŒuHöH…Du‡Ñ4ÀôoëÏì†UOê k3gÆUéKJÆË£Å÷H 5K9ýÜ» »o”æMd$àId–4EÊQØsº!QŒËÇC\oà ´só9¹ž]Ž…Ã‹ØK“x§¼‰Hð²<' ‘8 s£.Z’:>Àê‹D+¶UEÖ$«©ÂÌÃ6œ»À¹oaƒMæAxTØ„‡¦ÎCóL†¦hêH&TQbã¨vêÏòÈK&7žà€yOUƒ(•%]X„¹Ò‘‹!Û¬…Ñ¢Ï=TS•«!Ñ(3Ú„Ó=]Ñάjã²)©š®¥Ô<‘Mu©´æ/±Xd,wQê‹t¼ú¶“Ã3ù­ŠÅ ›kœ€µÉ}¸ä’ÃGŽïQî½ÊeøctøGÝî£ÇŸ•µ¼MEð¢ õiÑ{ ;ÿ×øÃ›¿`´¢ž¡ß±OõHzº«O_Û§–ñ`£³O%mÙn ¤¡/Èx˜—m1ñ†¬ÛuÑQ}r‚ ÌÇ|à¦äýÌ‘w/} .3m }SˆŸŒ^m¨+eó³xÖ'éá?r´ðWúÐ WO+0‰w2rq¬àk?ÇK¶÷m"¦Ó' Þö‚)‹Úpg"ô¾sŽÇx\ñ,fÇëäK'Aøü™Ï19m`¦ðz§¹D›¡OFÒìcÚYÃZ_–÷ h=Klm;V/ië/ŽuÕ“G «9Ë(„n±å¾•¥G}25[t{˜3ÃécD§= ±×rµŒ`Þ±,–:Ã,÷I„ŠnŽ|ï„rG^äl Ð]ýñ˜·œr'˜ÂfÉUvæh¬®Oˆ‚p¯[…¾ î÷Ùž ÕÚŽ';²ªXáhŽš É9Ť¦[qÞ‚‡Cè¡“p:¨ð¡U9£õ" ŽðÔ£:´q¹´‡Áu»¶i"‘j¹Fõ ueÌþæÔ$:§œËa8&¹pv…Þš)ZšèÖK6dR"²g„*hÁöV©øvÞÜa »µÉý¦Ç¡ŸÔw@˜ò©CbB…¦£'áó–Lbê5‘ÍÒÔÅŒ¬\¿^¨> Ãgr ½´íAŸåêFƒ®o¸b/à+îùk¶£šAçAÀš }}¶ 4žCž9¬™ž¹Æ£w<3ÊÞUƒNbíð½²3÷Y.EVÁ<;Ù{;¯B(£jhO=ö…E¯ Ý‰Õ ‘ÜMB²×³X—F<@hˆÅˆ!+4¨tì2'Š:O1ªy™yyf7L\»ÆVoNµÕÐ5LÆz.¬:¡¤Å[›)˜°'d{V}²4"}ßZI7›^·JäØ×Ïeú®î8´&ºnüx"Ž€á©e¹Õ$Êêv£'å°;Ÿ©›Fê£&9ŽTÀ‰l™qvv#ZÉ ½©Bí$“YQ$¥k£xÆ^=v'7[Hží`O¤n¹¹d\‡«k³öšñ¼®NÀɧ0f#Zí\¹U¤q·²ÖˆFeO£½ ‰½¬(I…cÎRÑ ï=d¬¤¸ãL-W_;õ'Ï$­7MXpól*’Š·tF=‚ðhaO£²Õt<°Æÿ1n^¤é6ŠpÎYCÍøG'êX(Ìgy&†yÒö¥cñöh }UH‘„Í8²cNœ¥Ìô¹wJ)“Ljfêŧjú|­ ‰Ä½:Mðx6žN‡"ǰMv«„©å—øVùÜ{Æ>8íä—5(@Ë¢Ì5—¡¶p@¹¨&™û;Fp "ÚCôtl‡ˆ…‘ß)Ð]0W5YŽwö¤µh^FK97Æû 9¼'t2_üs=.Yû6f½ôtÐE¼‘ÛsÎZÔÚ R«¤¿zâ'Fˆ“y$i"£Y8ôò¸™ì0¨âî.“84»œ##_4ÿ\1¤VѱntDE2i¾fUØ–º¤Nȳ¨neBtéléN+q¦s GtJU¼ã‰ØÂ*ìcxñ{æ‘|ãã&³b4Ò"-eT{¾Üeð’‡ ¾ð͇nñ™;ó·žÚxñê°~Šež6šÍƒã£¦—?Ù;mˆ•‹îœw<Š.æÓù962jtW—\@WÔ{“Ë bŸu à,|7{ †HsÞàe3†’fQM'™I—ÃU2i±öÇÝ9šKáKànB ¡*á;¡yc¹!g$ ÊšE¯v&L·$XÙ j¢MGqÖ£Aqnþ6â@ùÜáè¾ÉúÖݦ„Í'Ó‘Áþ?"¡þa×h•I¼õ©¥Þ0Yj²_Rû):‹ñt_ý°¦ Ü·[»T!ç'º0N LaÏÿha‰~üjyb,juM©Vùo¾†ŠU7>…?…o¨;v¨òE?wöXµšn…éèOXVWüH®®ŸžRä“ÂäðÕBî(Ÿ\òÚônzqY½Xå‚åDô[eYs¯¦‚]}þjgïR/9bõ-uÈîÁ6M·nK=)è¤ä¤îU¬Z70:%Ї߄×Ö>B%ãwBa”2WøQšE÷uðô§_Qh•àuôô|£Uz¯fr½»þý÷kèû-žQJ $”ÆßࣷÜ÷ PÃ#î&è6ûbûL ³EïO¶ñÑxÔ*!Öù@0Œ³”×ڜՒrØÕ]è•ZÆÚn¦UÜÏg+Éö ñlì· få\t5aU‡¯Æv°(MIÈä-µ³Q©"ߩ¹tNÂï5‘·Ö-å¹ÓSúj©fƇOu"Š£QrzL{ìä¸ñNÄæ- 9ïÅŒÃ?¶Žâ˜y ¸ëRÅÄväœW[,_Y‹xæ=ëh¸5¸>Ôà«¿ ¶ã/êA.ÂS§yGk xÏ ä ÔÔrh ×$hƒ «Rt¾€^¢o§‘h.€{+…Ââ„„Çщ•‹ /í¡õHE“Ö¨˜&÷¹ÆJm,Á”ÍÃ~Ÿ¶!=U‰ÁÙrÈ÷4ÊEèÄXÍX KA®@“h(cšR-¶NUâÌ€¶I¥‡eÍTtj®–a—È·Êï ¾Ë‹…qƒY¶˜``ð³Ê¸…9”šF²öëêËl<ÀÈ„ñ<°Æf\²ÆTe¡õýïëG{}ïy£~öê´Ñôsß[Ô½)#€tâñ5¼ÙT­[ÈLå,¦&ÝSÅѵ0SâˆÂzÌŒB™oàÀûa€}ﳕ£Q‘¼üÞ&ªD7˜È³ "¢KŒLIuÁ³­G7 ~í,TuKžªiÝ䔯”;ÒÀDÔ$Gc6æ¥P+Åû'VÁèsRCYkÀµµ—ÞJgŒF4Ì…e»Naìtݪ¡âõ0œá寬Œ!Ùõ‘ÌñJPà žqè‡ö äOš¤ÐÔOÒë䇿¸*”²H(•£Aj00WG¬¯±Ù ¨˜µt¢ rÍY劲²È‹F×KM¹òCuËn 3¢'dù'ŽÎòôj¥JRˆe<#{ÈÄèËÉ ]à°Ö«jq)ææAˆ°“ñU8E¥ ZƒP}˜Ó¨û†œr^C3‰é.NQVQê9°üE§Ïè¢XÔ8:³”ÙMwÆ@­Í:¦ó6Ï T˜6u^VhcÍ~©X•Ö TÇ^þ×J€ÍȤOÔxy"šå„õMªÛ UÕçW#lRøÆ  S–¡5¥ôä1âTŽu\¾ÆdCg q´iŸnZ­`³#ÆŸ6±h…© v ÔÖ·A4ÌÍÔ ºì–¾Vú&@Ùì|Vt.‰ ·Ù£uOó*^ózØ¢®‡ž±l{“%÷ttÁGäh„gîgÒOæþÀ\Àíe|±ª¡ñ #Ù5B…ÏÉ`Žè.(F¾¯ ÀÙ:¨«PƯ;B¸¹½d€kg¡·Z«ÉšŠ¢Â H_þQ‘K`FˆÍ1)ªõèZ¡‹v„WÇ2¯CgÍutÁuP˜ŽY†=K)Q¾jsb·&enÅ¶ÍÆiINëe÷5;çUÔ ]Õ cöq¥t ç§¿f,²íÉ›GScÓg«¥O’€)^:)> ¸‰‚|3å2˜ð}!Œí©à( Æã‰‡lä³&R­ª Ëuƒ^fcB%÷ãð%u•©Ó&S—¤ërÜ]âùвW I×Gf$ ÍJ/Zý1Þp$pB½-À«€&1oCC@å¬àÕlþ6®×D”Ò¢£NFW—=\5Dr“ã…¬× ™ Â{ØMÖ¨URw %a%›cšt´êäÊ¡ôb6äðÇûVZ ä6JÆ Ö‚/Ò§½Çy`ДŠiÀfJo¨ni| ÀŠd‚l·'T7–ÃpePl5Eã¹I<¦Û"©0J÷€êöʼn§.ELª:Y;µJJlõÖ LfÛD<UýÛ×u¦*#š6gÁßë!žï{cäuýD‰øÏd±OèÑ{Ù=¹¤'ÿv™×’BCÕºZ×ÔV€ }KCâºl‹¾wv‡ÞÙ‹ Í»Í}l/.¶yy“õáI]ô֨Ë–hgVIÂÈ­Teâ*$…‰©ÂÂDx. ×D¦o8»°sæ‹s2«wZÿh•mQ¸Øù éºK{OQ”·%Òy«ÌK½Òœ]¦Ý[Á•òÎP*¸éo´mO)sJ.$& a:IÅ–‰&!]|[UT ‰Pí`] – ätÿ¤ûj¼@˜IçŠþ9ë[Ó}“;öXDðˆò"¤ºÿüu˜@ì·-uÑ‚šD×t AZ¥'%’t™ƒ×><µF5†RjíawOcé…ÝA05º6¬Ò4×éõε£Ñ˜Kw+ÿSEqÕñLÊ óÊq½!˜t‰ô¶ÄE1ra٤ĸïÍÌÜ6‹„&%lŽkÂf¬±6òë[3¡VÌEs˜r†KäÓA¼<ËŵVe¡<ÛtðÔJ7Ó¥/ñ{zï§´Þt’é9Z’¡Lp>)Sy¸âP^«ÇI‰xKÕ[ (&®Þb çZÍ`æH¸_’”¸;Fóš±Âw»KÌU½fã-¤jhü‡8c?j{ÉÔþ²Tå qê‡øÍŒ äïÜÞ `»#ÇàrY2&ì 1=±ÖD (û‡éRìS “ò#Ñ*Ù&cÓaVp¥%a9!„n¶Œ Ç”‰·,Éa‡}+‘ ñ¼Â¨Ñ¤12Œì™±gȸ‚ME2…n#©× G\+°ÁÙ&Ëžx'…„ÍÙµ›¨n¨wõÍ ²Ø¬nXk@âƒoÎóèäñƼðyk‘ha>¾ÅG¯)Ï׈Õ)zï»0øÝ[œ“kÈ‘®uðWWtDЭ5Þ®uåf®±"çWùÄæH“;€<Ña*üéܪ#‰„¯ëMò¯²ÁøâŽS"º®-º!U}Ý”×¥7@ûÊÄ<×ÃËÏ)+²UÖÐ.à›0> `îû¢¾›µ7ÃgØ‚ºSÚi¶y¤ªË4ÒŸËÖ‡3Œv%“R¶¦yLÛ±köGú|$gÎ0$Ì‹ü¬hDyhîC²8Ù¤ ‚¤£mŠB¤ºÍA’“w^Ë ”}¾_Ø&gŽ8”ý×ËZZ×¬Ä IlÔ‰Dú‚-Χà+Fc[‡vÂ×BJ¶ËS×Ad4«Æ¶rŽ›Ëž5ídÖ”a· ÅŽ ¤/½tÔ¢d`Á;.~Yüªø„OG> —Vžxƒ<¡Z½A`Ÿa;‘6Mm£œØÎµM–”8«w˃Gܼ\€S¹Kdùø‚ ¨ïT(»_éÖ~fdð.˜³ œ˜mêÊòn¤LÜB¶¹?dxIXÀ ìäʳvVÕC³#º”W•jgáI)mg"v´z¬¹Ã§( CW:FnÜ*W6w<*³¢º!Sà ŠVNÎX†=5à©¡þ¤AF9‡\„[hÔ¬þ°±í¯Ê0³'Mç¼¾9_hñ£ì1¾8±½dP gxÎ64ˆg¿beÈÞ¦>g½lÑ´´LºÙF°W9“©nzïHjQð1AÆGHäÀI€š´Ë ôþ1Vä ßËœíx¯NöëgøtvZß;cD\ï0S´2ñðœËÑ€Q÷U3$kT¸ÅHaûõ´äi"¨˜Æ[(ÎÈ‚²²3¢`e{¹*‰ë4.Âç3ÿ—±“Ø dsƒ”79Xí)ªõâòZ£àš+…l·¬(£á¤ò3ËÒ FVI•à si§Ó–fØÈ­çN/tò&L²/Œ?‰Ù£z IÊD1…ï¬gJ;öÙåç AÌŒ LA¾}a·áĈ®À:× ™"ÎÏã{ýz‡ÍbÐî.CÒÑ4ÂÏÄ#¾fˆsæ‘s¥Ø¯ ˜a!–åñ«’XKF½‚u¥Éç*øÒkzq¸Ota[<—+XÏSf—Ϧ¾Ð\ä1ÂD¦@ÂTS€=WuS2ÆYÏ E“paƒ¢’‡ YßÙ2Ø;bVa—’Ìì ¢ÉUXp7Fäøèw´†>Ëò’ëpP–yPþ4Jëþ“9"ä:'}Ôô7öô£KÅyäêtûqUŽC×Ù"2à@=H%È ‘ø‚ÞQRRôò(ž”c|ÆS ™¾iNçNL“GÉêP‚è) °  ?µéÛ6ÑÙ¡õt‚Bîrãh…Ô„ÝdüeGkiðyLÆ%À‡¢†Pb}\6{_XXvSiPýIOæe‚2í‚H UZãÒW±4t¼ð~m³CR°¦ÑSj"1hE–â,…²§“Fn¦ò¼#MqÕn½„ÔÂáÓ$R«©O¤NÉIi€i·ž_y³:L×9‘#ÀU7 Éüù ƒ~ÇÒgƒ¹Á `©†ê’¯É\`ÛVÔG6 žÆ3·Zº1jX½Þ¨$9Äíɋ߯±xìIeœ‘ïxd%:‰ŒST¡?s62Œkš– †bQMàÆn‡ ¹à]ž³oŒ-¨Y7$9ŒÍÚÖWk…š åyÙ‚YMSÒÙi‰i¶Ú É'?–\ÛMÚq°àŽºu(šÜó1êxça€Ÿ†žÇ½ Àñ0â‘LvªñÙïG݈}îŒÏó¬ ˜)¥6ÍqêD«¸êqK—1ÒLaó¾Âó[r4cÅ2O¢n¼Í‰cÑVÙ%Ÿ‹ŠQÓ*¥$“Ëß¼"Q–Žûòl¼Íý[²{rÚöT–#!ùbT‚üÄ/_Û/Oå‹Ý¿Ñ;dyù³Ê&Þ 8{XAÑ…'IƒQíó±U)(‡H»ÎŽ÷0%äØ ÇE£°ì´rϪO8§ô”òÎ9óVùëê ˆl>LÜ•oáõU±ú¸øp³øxk9ÖÔËúÙ·„*Õ5ni½ MÊA£ÑøòÑ–8sn•pG´†ò·Z¥N4+xýÁ˜·F‚%ÐaÝué?› ¹RD/ —¨RÝuÎ=Ç”æ âYHÄ ËkBjÛÆöbïa÷£lµÇ_ŒÑŠب|f’€JZõÒ[A­50ˆ‘/ÒÃjæµdŸn&•»¯­./L’E&UÏ&ã«eeBÒ%Erþ‚´cYú•õ ="]“Å2IœþQ¥ÊnϹDìkª¿tðz@:¡??9Ô‚T²Ù‚Ñu*}4b‰i÷ˆ´„&Ä«‘m]*#ݶU´ÕQïÑ ÞˆBxÁäÛit“ÇÝ—îe¿ ºãXÔðñRŸaN9&zÇyÔàng:ÓÇ0è£ÉÙÉ8œöíSWY¼ËOÕ û¼i‡UyîÍ5ãã¢%h€”?ÿªYüª‰îçÁøÂ>™âðybŸ7ícGÙ±s´­°Lê© &ÛIyŽaÚ!ú\à„Œì“öJü›é@ÛÃNÏÜêà 8Òž»Öò¯Jq®tÈZÛ×O®±–òÚ›òUön/2Ãày4 èÇÚªþÔŽáåõd¬­ùUãz6$ë›.}7#»Zç}FŠî¶µ[C¼-1P"÷y e]ܾàaEoô©g}l7´R­ûR±=ë+£4Lˆ\K‡Ë N¬ƒÊ±Ÿ«Ï˜Û%1¡Ts?•“c½ÊqQ¥<Ž»!ª–ô^Eo†±šÈ&8 ?—°[í²$WfÌYƒ!ŠEÙm2wžœ%g´[b¾öÀbŸä)y ij͆"*úའ™|væ} uß ¸K£Í%‘‰LÆ|ÌhÅ™¢cËNÔÈVËÇ@õz„'qè Þ*¸3²‚ΰý¡`Úï"èÞÀ#¹ ì…ùEËñ¬­ƒ½”¨üiØeÆ!|dQª-ç(,«™\×.x4fÂì¦#„3gÈÐV¹ <ŒÖÀúï Fb%4aË$$§K i©QhÔ%T c±"ò5«éRuU3Ψ÷žW?9`Ó\±*ÄoðÁ¦KŒR¢'\xYÖ‘ ‚+÷#s¼[7ª„=ê‡îï…pP 2$93Bö6P°BëK%¦S<¡3)Ê4(‡DÍ vc¾KtµÂ‰Iqê(ñ 6±¨—A%b^HŽÿ?“JV‚Õ$D¸)ßI …®õn®/1‰Ÿ;–. ƒçL¬ØFÃÙÄ{Cfòm&&î\“wÛ” x2…ÙKÞH{GKûCàNKmŠÖ€¦—ŸÛ Hðxô®€èûһƟŠ1P±:¤KÌ—«i0‰ªìýÜßo<{õbÛ/z_s§”(ÂÓ׺M¦„Æ‹‹¬íd:VM¾"c˜ ؽd°yÂM¸BIýÜ ç¿0Yâ³MNÜOž¹f¤Û¸#‘½Ð¾L"“a 1ñ—ZÅ{ÃC¬@IÝno#éH1î¤çJ¾ÃÄ2›¶«êa,.ù—]¨)Ö¾ÍQ²²4VÙÍŽïòZêé×<;mÔ_½ðYQ4Ñ}³¸™Ä›qÖZB®.?ÁjWM;e4200TJ_2ç¿ð‹Õû”E¯AÒÀ)Lgï†r†¢×óK&ân®™‚†³Ðz‡“}XÙ1“§§Î¤ª/ž‘«÷è÷°èTÚ¸¬§K@Ñ‘*V†¹{ùmuߨ[ñoÇW(ƒOäÅÎa_³0IöÉÁ»¦2©Ê¸¿ž@[ŸÂòƒc³ŸX}y^nhÓÍÂT$;âÛ,Úíé"´Ì$7dë€lÉaq7²Ï&_9P,Ò%£;K ˜NÊ…ØùFñ¼úš¡ŒÆ†£‰üw3ð§ªOô÷õk—š³“Û…æƒyïÎNAy°q]¾E¼Fì%¼é•»M–tˆ);¸ôn„¿B=Hþ‹’„m”4Â\$=)V“µšH Þi&鎚\FR …¿á;î‹JyØÝ‹;À_œû >Õ”ÏÅ‘³ ÕÅÆ˜—†ÖŠ|4¨Í5'¾®÷^„?äî#:±X¾)Yd¡–Ù}ûÑÚ°ªÔX+9"¯®çÒ¤2âŠËÉêMºE4ÏÌì"½Twž%eY™¢@„ªPý¦ÔÐ’É.9¶c924è ¨SðÇ·4%I<_¡pDHQ§QžÐ€,ò1så›cz¥5¼>îg7N»è]‹+Ü 7 2TÐ$A¸‡¿{óöõëÕÚ_ˆìÔl¼8zÙ8:Ã;]d•I„§.»ŽÍP ]-Z˜S¸†•øNЈgôˆDäbÅ—æZ(‰ýÅäÊ$5f£ˆÀñ(F,^Fá®"ØÜl@ ~Há˜^ŠÆƒnqýù”âYŸ–|´û†g1ä—Ca’Ý)çoŒHpÉA-p‚¸†r'† º‘¡áaÄðÈDß¿#×Ýä,á€É:€Ô¤–:ºg  „Þ/É ³8{}ku:ØÂФ÷v=Í9éVQÜÑ„¶wޤc¡þ=ÑëgÑ;%_®+ÙpÖ…l©Æj©‚zÃSßñ&"“ƒlšH~†‡2!cHHKÒɰ/€ZŸ”v¦æI}#œ’еv$M:siÛc\Å ÈjÄÞ <8çƒB‚)q®ðÙv¦ì]®u˜¯Ñ”M@íu*´+¯ç9™·OêO+N´àðc@&ÍX0â“§IÍ44<„ ñºœzâþÙèUXlžÂG" éBú IÚЃ`A*b‘ÛVÈr¡|k<íô·#“˜¹6ºï³€[Azo3œƒúåø)¾§¨:R”̹Ào¿æægéÕ:´1š’^¦–»Ì¸¦–u͇…Á+Fí- NFºfF?¹A/$P)÷’ÕË&ißû`û}gû}Û[Vî`Õßì>Ä{û²£CJ[ˆÐQ˜O:6ÞÞ:»• 'ë[Ì–NºÐšD‘& ]UÚq*:­ŒCYµB(MÝfÓMvd$¡!uuQø8…˜fMá¢K Þì;Fãöûpu¹#Ýuˆj—å9ˆ¤lÖ2¡ãKì2™—sñ£P¤GֻⅬיµ Ô|ÚŸw#‹ºƒ•²cÆAéHjY¸v<±­$Hµí–¢S±ã±cGaÂì’äÝø0çG<ÈŒB(¼æ%iÓÆÁ„`–¤~E7«­’íÌmï†|°óÞ‡ýíóõ«ãå²µã·ÎJ32Ë®†»ßj$­ru#="T/BNS7Ø ¾ß2ëY온~¼X9U $Ä´^äF—S‹lèRà^Œm‹ìµí…§/ªrÑEgˆ%'Œ¦'Þ‹%£³G{Gþ>ÀüªZƒW2Ò_•оs*—gMïåêÞytmŽÇÔ|Û!¤xáùÂÒՓΙµãp~ÂÚ¡žC5öÿ®”¨@¶[ï…™¨œÀȸ{ÍG­r( ªÕS(Z–t—Q=íµ(Šmz¤ÀªÜ2„å1’; wUgh!j°RâFÄêÀz„”Ida~ïøåIýìàÙÁáÁÙOÞÑñYc[_˜J˜F ¦}†H®è&17 QÙ‘Ya (€9'ˆ +`?”G›³ÑACGôÓÇ.Aý­)v NXe… vN¼ùaŸ,çŠôÆaìVø@ù+j­Š r»È(.åëV‹bž±½}± ]‚_à§?÷ñoe×·>I8eΔÿ´ãÉ®À3:Ü:qJFOÌi)*OÐñÄcO±‚òÑ‘ÇSÖuöEA„0“€w?Ãøèáigý]>W©¤„ËÕ­Í[FÖׇËa3Nh.ìv^êh˜¤"¸Zc¯Fb9&¶RâbÛÂX&WC«äÐ¥ îÑSéìŠÔdHë.ø“N`)é*jσ1›1Êø ÊO­³€<ß]ÚæfAŸ25ÒZÇ-tѽ¸dR³‘(!®ŒG§ƒ!º—ôÒ|i—êH©ÄW’ ßœý;­ˆj©VâÚ$µQÝ”Ðd¨•Û×ËB A]ÑÓÁ¡œÁR@ÒÜ'ô2~¸ÿ÷Ø.3Áà9*{¨oÝÎä»;º¡Tp‡ÝCÇ×6gs"w¯<]ZëTS¨e¯ºq‹°9ð´ íY·Zš,З¦) ޼ãÜ8!g²„ÓäØAYrÖ'Œ…ÈúZtq<Ñ"#Û@M*s/áê£JÖ¯LrÈKQJņ «& ®Tuh$ÿáݤçÚÃ4³m=9ÙÈ7[r–­‹ {ÝüÙ¤`RúË*ìfIi¤N»P¤¥Š÷è2æË-ú¹Ãñ,V­²ÛwЖ­WB˜BnØ®‡„”ΕÌ!>(^ø P åC(P¨Ù ‹W8absðLYâ£z&˜Wñ|:™F±ñbÖ¦¦jîx‘· xŽaÁ6^·Ê «Âÿç"€ñ<d;P>ÉýÀpxèN`(hF¦2Š0ËTܦaJcc¡»¨Ø ™FŠ@΂úˆë§„·„Þ¸Kªy«ÛMS—{†š<÷Pé1 ülR·`fÖK €Y$™n6f5j¾b¥Sk”lCÞ"ˆ™ ÛoÈì¨T{måâ¼Ò7sr¦Þ§ë˜#Û9Êž ÖqìàCoÑx-ÍóñŒò‰ó±Èh@X; ,üä ð•|bèTèAÄt$Õ•"\nÉbžÊ-iRz† (gfÆTp¢æñêÕ:bQ5JSÈ,‰åh&Muî„]H;\Nob#Yj¡‡”ˆ Rö¢­ÉÐ+¸-bÚÙÃÛS™ADÅ;¾)0¿ùzû…‡¯v:j‡!fÓþ*ÆÑ\¥{yV^<ò¿êaÏòi»"ê•FЬ4$¾­ƒÏå[Û2kž&ŒÉkÓ5~×Ý]§« ®xÈÌ}±JæL‹^¶‚)r*µö([ ôÁx&¬Î:]å$êê¥î¿Rë|·±Ð<«Éùo1±¾ÆI(lYdx¥Ûî$h]²g‘bûñþ«CtbØQ®0¿à÷^Ò»Ùƒƒša#CöQ@毿9œ®&cD3î{‹…Oð5äkVTIç¢öÄÎ÷¶´)ͨ4·*†q¦ EBº`'ÙX4eKÿر€–ZLÙ.z¦ð+X‚Vø„W·(Z'ê@µµn‰‡LrÑT4›/ÀÓð¬3€Œ©ý_Ÿyâù|‰'#×vŒúN†Ò)þùwf»v|zðâàH3§úÊ4N)×eä/‰ï.¥U®Ð j"ÄðŒry0DA'»`H'¼Èl%ØóAÏH&!aŠ‘IÝGƒ¸Þøj4=‘ÃãÃf6ŒØ.ÄpR‘2 (ŠÙ;><>mB’9Xè}ºR 9áþC¯z`°þùŸmNŠcŽÞFÓñH®Å§ Ióh»× ‘ Ñ‚#v_¢ÀZ¼0î\ÏÝ ­g[¿ºó°êÓÍ_$ˆ£ä—ÅȰZùÎåXTOÕÃo++ãÐåþ]‘P`eñ¸<‚l\Ë#°Rðòï¢áœ)aT9ÇŽï†é›k4ÅJóͨíB·nloì<|’üµ¹]Å'üå·1ÙXiƱ þþ¬º±Q©5dñÉXñ$¬„µ’bÈ)Î~d÷Á JæjN«Æ8DµF€‡Ã¨U¢YUtݬ"¶#j© ó¤êå;tç_HÙôò½h¸¼ååÙBw< ¾>‚ìÑè͇/½ü{!^Ló•—¿Œ€85å¥à®Æ<ÜÀâƒîbñ«X~o1Zy1 ²Í—‡èe‹Ÿ¶°˜ùbK>BÏ»°îƒÅo½|÷:È(èK‚”š…éæã~ôìÕ‹&Ú.†ñ|ÛÚ=ž†Dj’p DqwÎ.I‡^y·v9›MâíJå6öy‡„Õ•_W~ý­;â<Œ—[?¼:ûöøÔÏ5gá7Þ}L‡ëçëá¼6 gñ¸Û*Ϻ½V9 Ÿâîðÿû_øï×ßJÕòc˜OeÜÓþš2666omyø÷ËÇèïÆ&¿ÓããG½êǹùxëQÕÛ¨nm=¬þ‡·ñ×T'ùoŽrz¨ÊêÀiÐ[¢õû+òá¶xæïÿŸá0Ž?3´(OD˜|bõï@N€4øþùŸ¬ÜNGÙq“lŸ¦ãrîsï'ÄÞ8&%®îåá"‰ EM«ŇhŸÓ“—¶´r®9ƒéõ¶·Ç"}–è-Âôñ4w„À6Pê¹ïYè¼íÝ?¼†£é6wÊJ™ Îíý÷ß`µnsM’”n`º’F/Ãp—/~Ͻ:=ÜötÕ}µÌ›m9ÊÈB#F˜ñ³æ~®>ŸOÃßP/jz ÷ù3Ôp†=§mtò6FÒ³ˆ—€³ñx@~߯hZ ´î |lDã‰?!#£\îÅt<Ÿl{u‹Wštc}y*N›·sð²ÅŒ Áfÿ8)Éf‰¸i Ì&ñÙ*taªûƒq¨›v8¤mJÙ–”pFè÷døý÷£hpk·Çq[ð6éTH¨ÓÞ4½!¸t¾_Rn,w_€òÚT™kÈû©yïêËòà÷^4Îa 6¨ÂèâÌ]os2‡>wrŸäî“/9x#Õò\“ NZ|fk®m¯å¯å'W½BË÷s÷K÷ᅦÉKÑo}ºÿ½c?W®X&¡Tb^{÷þû6?ÝB÷Z‰f~î>Þ)Ý•bzQ?‡U”^“JðkÛ`5ï¿§JMÇãÙ-V–,°•ÕÙo4ÏöNwÝH%y›ÎM‡^iÚ÷Rß誅º>˜Í¦ùR?ЯBêHN,¦·8¥Wt D„¹‹×Æ–&jÏÂx¶ì3~C~O;¢á+Åé»&“#Í¥ß÷ŽO~:8z±ô;_*Ýñ¹<ì%bÀ”Ÿ*oUü¢’QîòåBØ[“Q¥ÛB_)ÙÁƒ%áñxY8W$ûKy£¼…CMZ9ƒñO}ü «ï¯!Ðäüÿ®ñSó/ÉÿÝqþÃÇG©óÿáã­¿ÏÿǿɼãyÞÖÆ“ǧ•/«6nmlz›ÕG¥êF©Z—Üß…¨ÿ“rJ€/Þ®·õ|ÿK¨ýÇÞóú“gÞÃýÍ}ïù£úžç=yøhß«?¯>ñ6¶6ö<ÌÔÃ\só¨ç-üƒ@Îo¯‰k°Gba_ÿú[mñP~šËq}77¶¾:­ìW=þjkÿ™­ï¦w¾›Ðɉ_r#^/mÅ—ÏC Ÿí?„ºBâúóýGÞW{Õºç=‚¹ê5žm>öê[Ï¿ò°(ËÊnÅQü|{?Å¡ ìë„ÔºÓëÉ x_”û#ÿö4;Õ²÷dooÿqýîêÿ…ã/ë¸UùëÊÀuÿèÑòõë×ÿ—«ÕMœV·¶ÿ‡÷诫’ý÷¿|ýËø¿ „¨ñ`øç—±zÿ¯n=ÞÜHíÿª_ný½ÿÿ;þå>ÿ¨yÑ)íD¾„¢» vXŠ<^ÔAݳr.wx€r󃣽&l ñ´[‘KŽò%¿]ÏÂî¸Ê+ò8¯.öÌVNŸ0–mèãîIt'ÁÖLõýmu{ºöµ7”o2'ø2ÇÝ×Tfý¯ÚŒ¬'À’AÖ~Ž:C®`2'‰šò¡è>7߯, W"•½ÎlÝ| €²”¾kžî¥º®›ìºn¢ëº¦ƒ`àm±ÅL¢KD a»É³¯ówœ~Ù(h¯š}[x£6:¯xŠš —ŽB×íÌn¢3»¶wºYuZ{ogò4WÙ´˜/1ã\®þ²½÷ü°þ§cérÑ‘“*ý0—俍DÚý%rÈ ¢ßQœ±¬'(Ý|„ê%ÝCTwuCUJß;<Þ«¶ë/Mä U®ò ‹ïÏêòïN ­•hÎ ?ýiàÏÔßbL&"Sð†Aw:N ŽB–*($ˆug¹]†b8’0‡ÜA¢–^<ö®Bôí‡Wpãq,¾‰a¦ðeýàè ~§í—ÇûܳW‡gíæñ«Ó½†.t^3îúéºS?±ºÞ½VîÞ=w’£E1DmÖƒ“Ѷ»*s÷Öò0¬ß·?H|â•Æ‰bK%n#i [ûÚÉöÒͶ›#N>«eË«X¾†º™úüTßÛ+xÌÕŸñT7ÔêÏü\yঠd$*A|æ›aÔÎ Kðò$+*¤f€h WËÁâ8ãý¹ú(•®‚)RÔñ.®Bc˓鸃÷¢·0bÛÑæ$A7ôâËhk‘aÁT(yºuÆ‹õÎm}Ñ<¤K—θ,2K"Y“R×1¾¹üižÁB?­ŸÐÞšÚƒÀ.Ý`½µß!¬¾¿E †Nè¾Ö`-?EPðϪY ¬Ò4¼€I¶þó¯ç¿½}Ý^÷JÒ%„ öªÛ[Û9\&?=Ü\(ö ,7¾\“HÇSÄ íoõýÆ©N40ÈžçäØ8ª?;l´_=kÖœ½ ³ìÇnW¿‡»xwG¨áf¶@÷*xCHö"x½ç} .`Wî¹Y×Wåôz(ºË·¿¯¾8=8Â^¬òR±yè·d<޵”ªèTt:»sŠRFš2ðêÖñÅÞñ÷©:–LŠR vÞh„²A7ÛàE£_Å›2é/„ÅåfÝ8==>…䟽³ƒã£…éöÍ7ΦMÀz±L½DXrâ&“t3S8ó²7ÈŽaæh‰µ(Ü&ñ¦#°P5Gâa Váf³JìQŸ5(H[_X;mæ쓹 ™z¹òÉ·ÇG?m{åçÇжÿÙΩ{˜6šmíb»þ/ïaAË{Ñ´Pan¬[¥wsÃÛÜúZþ{˜ïÐÓ…uoÇ»%Kœž·WÊ*­ÏE< Xby-ÿ-¿²þ ìœSj”Y{—¦V÷jP²[%T¡‚¡öüw¿taOLìÙÞæÓJ/|[Aý‰_|´µ|·¶_}¬ãlŒ&ã %å9lgDÐ ýE㨰XÞᥘ§ÞZ2Ä‹=Úì‘’K8Û‰#vÄDQØy¥û¯Õ‚ÿáןøðîÛן!@Ÿ×ÖàÛß×~¶õÑ2ÆÛéS/—ƒ©Õ>9=~qZ‰“ª[\rÂssR­XÎFWyQ·$— ø7æ¼ tc§mÚî§&FæFj7²ÃÃvó¬~v°ç–ŠiàT‘¢ÝÕsFcžJ÷2DƒÜY£y†5¥M³¢šp4—8hˆ&‚æí×ßœšVH î·^¼:}õ²žu¬‹=JÅ$¬àì/ã¼F¶ƒñ°h¾z¶@‡üB­Eâpr„ \ú…£Ã‹.Ž€ÛƒQÚ¶:må ›»'»éÏPÕ·z [«ûêÛ=˜¶€ Qy^åî ßÊ#öPN.JæêÐÃÁväöíËúw Üô  ø(4”¦Å)‘ËÁ l??8¤ÍÂxü2™wQ—Ÿgáp2 ìØD;Ø0úú"Òqæ¾”}|Ã!§"·’7½J唜,9rúÙÞ?hžehjŽMÔ%†Ï´rõ¡}xü¢PA¸Và‰2ÅŸäòO†MÊàü”=Ö’§„—ýÏÉ)u@ë†Vv7;™­YùÙœ’qŒœ êT:‹ÝJW²]–S·Ò[L†—w¤ ¿ºuÉDlÕW +áb†ò­Ÿl㲜ØK0‘gîóò_š¾ÑÕk›t=Wäð‘9mÜÕæTýÓrÚ´ýN{"Ê"îȉâ¹Ç)^ïËó x3Øï*¤ ½AÓáÞ½… äðv3qô{÷0Í={>—<ÙVVíD\>¼Ýlíqî%bþú[©_"Ù[|™  r9"ÒÍ~9@nÑÈ{A7Zȇ“Zl‘å1ñlÞï³ÛÊ¢×@6VþJ0³ŽZtä멇Ø+À†hmNÊx¤Àñω ôµ÷'õ½ïê/·9,¦ aíýúYbÚÚËå¼'—øò%—;m6ê͆÷ ²}ÓÉp›ªªûPíL›“!\P˜€*@årÙ‡óè Ö«4ñ }EéM|¦ÓÙ>ŸÑ$åÍ“=÷งa°'ž(ø¸ùUr÷à冥YJaCüöl<Áò¡~Ø¿­@,ßýÊ×ô^eOÝpÒ$òœC6ñm ?é›[?Q‘¬šæîøƒ¶­â•ÈÀPæêÉÇöû[¯\ñZ;ÐÖÏ9µ)‡”ÈIÄ6ê}â 'µ#¼D–«KÁqPá!¢-S.0Aa²òÐÓ 1{1GÁçF§ÉŒ ÉýÃEèD_2Úu/ì}IÖ™üƬ×Mi öç·bt× ð3YŒðaí´¬„güvšè•Ö])¤–› ¦Kð}P¾èŽÆæ±˜G”H¸é¥ËöÒ»ùÚsz‘w4LöÝ9þ»ïÒ÷ÑèÏ/cåýßæFu^äþ÷áÆ£G|ÿ÷øïû¿Ç¿Ï=gè“Þ†Íb¯–«©Ç¹&FAsÍp&m:©k¤8ž\³ëàü^Á«>y²U‚1Þòž£?Èæ¸?»ÂMâ9MŠKžƒQ·LpÜÜêD¢3NµC;ƲŒ ‡ Bª˜ÔTg‚¦9ÆY2A°ÃæTa|{¦!)£ã©Öwq˜cB%%BQd#Tq%÷N!Æõl£…,ðÌÝ©žÌ—ã‰À‰E3"±?`EÐÜì‡8h_yõ£Ÿ¼ê§§õ£³ŸŠj ¾#¾ŠÚ6“±W;ZuÈ#TÏÓˆ{†ð…Wh 3bHà—Ó½o!Ǻ žB£Ÿœ5šMïùñ©W‡ô'õÓ³ƒ½W‡õSïäÕéÉq³«5gÄÿÕrk ÿ¾?©Ÿ} tEyøZ.¶ÛQܾÍÛ4ÏvÿG"-œ‘Ô*ý޲,ñ°ñ}ã°°¾Ã6dLŠ|_ÂI2Ò$ío›g©$hµ"…•[þãîǽW§ÀÝ¯È 1GÒuêGø÷–‰­k ÖrG©-”v)jµŸÖÖÞÏÐéÑL¾•n MBhÞo ÞÎŽy{ WJ«2ßf{d˜†, ¾R°ïâüÏç’Õ­Óúb]ÖÕä)„äOÿ±¹ã澃‰\•ú…qÐå§Ë Æô»£1¿Ç@\Pmûƒà"Þ][3²„öµ|jN}¾˜ƒ“ÜéP“¿Û“Z­ó–׺÷:Ѷ¡ï¶Zn£REýBwÝ}oý~Ü:Æw2Ov'K»}”Àvbü9Ç_þ‚"+• ÿ3¶«x²@©o¢I]iÚNCïölDèK/Ï•~¯ómp‘Q5õÝŠTËÖÖ*(™’ÝJ™hš7 ?kkÉæî ¨¨Ls\ð]+Sö;,÷©Ú¢¼'ᢸÝIŽƒ”bF`÷ÁM©ÝoR¸_zpPH·zýÖž- *à$ß<ÈL’Ìöx1ÎñÊl³²=Ng;XŒ3X™í +Û›mé¼×ؾ.,ÏäüŸgK?ÛYµtÖÖËê£k3ò:Ó0x“‘_o<’ÍMf…¤â9awºÞô}^ízùD1»£Yà˶¬BÁfò& 'cdòyóùLÞ\ŸK2>y.TjÂîÖ0†Uý¦Hö5ou4?.~Åx#¯n<¬p·ööñ Ü……úþ_ÍoõÔù¢|»–ÇífŽßúÙñ)ð•°Îº=•Ò¶ãKåͱ²VðJ]¯4ô€ÆvcÊeNFd7Vsïôàä,+ÒÁQó o\ø›bhV¢#7ž„æß„æi›Ð6r±…ÜÑñéËúa[’BÔíÜÉi#ù'u"@Ò¼:J§J…`ºdñøm\\À`"­AµÜå8ž¹Áø^ËÕèú©}vúªQÃáa”²vÕs¯¡jî ýBÜMoÉEýÝWô5ç~~!߇^æ5ýÊûôšs™¾á–·ôNýÎÛôZöUúB¼ì»ô…»Åµ|ãÇFãdz²!xœ9öp!Á—^ò0óÒ§–ºñYÈ嫬œì+Ÿx.{BÙ耽ܢ•0OÚzMt‰·/·hýËk{¸ÕF……èFq¬B÷•%tzMÊfl¼÷–ÅFÅÃQÅš~lüÍMpG<¹ø½+ÖL´÷îŒÏ/‚é±TörW¼ÿwâ1Jžîˆ z޳¹ÑÞoœ4ŽöG{x“Ee؉YÈáuÞ_½<>¢ü´l‡¥ÏœŒ(-¤Ìë…å'„Æ{ˆªÞSÁ&vjÀç<×Â÷° êý!SÆ¥<õ­tÉÖ^¬Ûq¸‘ÆÉ”˜¾‘£ š/u½œT$Q‰d ñ®æVþ-Bð´ƒÞ¯m¾¸  ,O™Ý_D!D»Ù7j07eøïbý—d.Øj&Ö&–T³£$Zßdº6±äýÍÏ@œÛ‚+77ƒA© ºËšQ±L~òþ¥ùbÉ7VÝäæçòÈM+ª=6 Þ¡õÏŽÆx1"¹i7×òA]Q9]>‡ú·Zn^“nË?*Ð3 YK¦LÄì ê]“b{d‡ÈSÛèš…žqs&]X‹ )ìÜ]¦—(—ÚÍcâ¥Jönvüu¯â•´*•Ïb|€Ÿ p ÅVC •óŸ+¯./¶ªÅuÉ Öïß¼õgGÀn‘˜åÜ/û¯Q§É÷nMØÚÚ&†9/>üŒŸN`­ó_|1’ˆÚjgL –~ÏN½!ùfÑÉrÇÓäÞÆN²\ªË­d{Ö ú-ó+qÜ‚ä aš+<¾ön×iPÜ!ÑŽ\_[ûìhgõ¯¸ÒU<ÔºYÎD¤âæ#m;U¥ÂMYï-ƒSú¸iŒ¡L>é¨ÐÇÏ`ãÀÏÊ7ò¢Ïð6 #pª;¦Ÿ('žJ¬z³N1HöD· 8€,Yó ~BÞ"{q¯à%—>œÄðà·îâ•í–¢Ø ?ã'CÙb¸€­¾—ø€Ö´ñùv1#¾ÃRù¹¤’/•íjb2õ#ÝcM¶Þª™ªÕ‘¥Ÿ‰IiMÉYùƒ0@=+8Âfýx'½›Uãg °2ƒ{‹•Œ3Ûnó¤Ê®ˆRÈ‘þÓÀnioá¥]ÃП¶°øy¿ñ¼þêð,mƒ˜…8BL6ù¢%Z®GßQÎ0–gÇLJ¢+„õóµ4 .v÷ö„$yÙ–H¢Ed©f6ªÁ†»h.‚äÍÞá~Á¤Ü3iìÓ ZIh•¾Ç¨óô)ƒ;%p>è~¸k€Í²¢¾sg0ö¡Õ3KÎm™dô‚’~ p–§E#âØMŒ]õ!˜SnÔÍ”©ƒD66Gò®FGÞs $‚éë[û$æF6©˜Ùd\d_E™+i^”HÎ&F6ŠÚIˆé›XÙȲ^¹M¯Q'šQH­2Ûc…ܲ8éð‚«;ø!k!c!ð\½s-,Y”:mø@«+9û6œ¶y×SŸ@jÛR£ò»–Ç@äÖß©'l}MÍh£ï›9µI‹÷¿±»¬qFGQ%Nœýò$µ›ž´>.î¥'´•Òµ ©’¤JõULà-U†dDX,¿`I¢qãy˜3]í .­‰öp*;pÏŠ }V‰³"XvV|VÔì+ Žö_í7Ø,®\ãËi·–öw*¢ùmãÆ=ƒ—x|v‡¦Ö†Áuo 5€…ÆoQvóˆ œhiRæh¯…Éó¦üMÔ«@BMûŒsåäÄ#ö5{&Qã÷çÍbÙˆSM øÕ · KÏQž{{Îïí¥f,~^œð!1!Ó…‰qhšàÕQÊýwî˜çêÀTU[p¸¿Ð?”%«àSª— û…^‚XÔOµ”ufûyý°É‚K¼BûÈ]aYú¬IŸ;lü˜˜—h†Èí´Í4389c>qî®*Wí#>ƒ·T¯bHF„Å>Å/‰.ÅœÓ]Š‘¨G:üá´~²Lþz=¸š“»ºý:èvú?â‡vw FFÄ•nwm­ryY‘·É_'}÷ßß½«`¯ÞÃ+> þâ þâ †o•ÚˆºãÅV©ÔË?™^þÉŒn:úŸ8¼+K6³Îøákj„)(+ÊâÓ§Ä Sö©A¦X4ÊŽÕh&Ÿ 6žC:™0%Œ!É/Ý,?„MSfN‘nÞ§½W§Íƒïí³úé‹ÑWx›1Ú{„1]8ïqw< QdâBY]Ø(c'¨÷6rÞ.gC7S´nM&W£¼0MD”àDnN|ä2â§Ês¤ŠÖàI¯ŸgÄ^I÷’Í™{çC²œDæ¨ÝìC#.²a,¦Fxý¬ò²N¨ôÀ,~u²_?ÃûÎçÇ0!N­pwt3ßDiÈ‘ÙæÝ>‚E'WÏÚ5z›OÿájÜäD0Có‘ôèÂrG§ÇÏŸCðh:î÷sb=æØ¹äÌrR”Ÿ³†Ë‹B}g¾²|ÜÎZôÇ9¸f½Vg¶&ßI—ËKÇ3ГÓRêu¸yk³F@,ݽ–_X@……‰šêgÌ•0#ó¦,karª…øÛ¶²»ï õŽöè7®JZ­¼ˆÑ$ýÅÀ1#¥yÒãF~êüN-†™xöXLIE›{ œí^‚åX#¦ÃƒæIŒ„ƒù¥cPêQx…7"% H-¸ÞÖ #ì÷‚iO|ê¢Ê7yÕEÑmÂAßxÔGI¨,Ù›3Še—=ï€ìÉ,Ä‹PküÁh<{àêIŠö·yÔ¿fÍQj‹»q\Tä=Ø oE÷)š…C>o ð¹ºãƪj,C£Ü[¿T,±‰ä¡Béˆä¥˜p=Ç ±¬%OhÒy¬ëHH©TõZjÅC„ª ¦è³Ìã;.,_”‹ÄÜÑ•ô†¤‹~¾.t¹ QµÔœ-Š>}×']UãŸU€ø+ìj0‚þÖ•¨OÓ3;Û°»ÎÓÖýŒ*ø´û yKÝv˜ ¥süµµÈµ<¹8‚þ#í;~5—VôAUÛä–„+‘üÂ/¹Æ‡¸óæöä­Ëoͽã$]xñ²˜]·Ô¿Ý›‡×ÒÐáÅh–Wo×»˜ÂÓ_;ƒ9üš^16ëíreø.’“,+ÞS¹š‹é´Tq£±ÈVè?2s¨ôm¶D»óQ-ÎQ_\,5­Œº,£`p\Ç+3#Í­…ÜÖΧ/}ï3È*Þa½=É/ÇXþÃò×ÕRÖÖRQ=RKd†C²þÎ7vV‡ëzÒáqঠÄ!ƒÀj"‡·làðB“?rbÂ8cL‚ƒ!àªåÊ>Üž"ûôó¹wïõƒm Û¦7ŠÅh¸Ô´6ûON$àÏdVâÏNZÔ8‡9®y Ɖ´øù’äŸ%íç^]!qIS¼(~…‚Œ=\7( v)Ê~!—Ôv.ÛîIdb$.uxÔŒKJV䞆% m ù²óIA[:Ç/Ë5 õ÷¡Ž¼îâ¼zô¤£ØÓp>?EÎ)§&þÒ¯¯½zêú"ô l¼N^ ¸“âËvhÎDÖRBÆåAˆÆ”ng‡%#Ÿ{ûâ`Šl[¨-âZ–Þ4BùŠp8Gmks|æ,Jä±iZb:Ç_ z}‰%®€¯ë•X"¨‘Å~Y¡ICÈ%œ¯Èuj| mK¨¶…D˜E#`£Éì/ì…IÕCuªúæBÕAÿïÑ ËÉi½Pª·7\úʰæž×„¯!yqGÕ"†ÐDÚì²Ö'wfk³xf äÌSò†¬@`ª þDJžèÊó@ðp÷³˜”‡ £kžq2!¿…ˆX}{ÈFô‹M+Qž?!ŸõÁŒŒ=ì,SoEKñòœZeŒ»Ñ".ô ú„f—‚žlmA&`“iHS†·d;Q ;÷:BäÜIõQUó0Á'®å>M&Ìbï^{Çc@CѼܡH´0üµú¿' =ï*“’žæ Ú™å F3:ªªŽHúŸ;÷ŒdÒ$+Ãê’I«ôžæ/¨l<…Ǥœ¶ë½óË ¾FŒgOg8¦ÜoP2ðò»ýƒÓöI!ùåtZ[ûfKpEPíµ¾ #¨^nºcßI‹D¤©8ž¢ønuS+> ,¤)ñl—ôë ùÎåÝõµÚúŽ €$íG÷š¤ômýtŸ•‚šj/ʽž½ÀÖæž¥%ñ‰±æ8ÈÉš<ÔЇ?>¯ŠèÀÓ§ag«Gh‹˜?Âh›0ndÊ.rqb;3“cÁ©ofthö5‘™ø$åXX¾s)H\C|‰à¨†w^…ò±q’‘Õ¥L†1°mÀ‘tÌD§-ŠåÌù2 ‡ã·0ßóQ9,=<·Þ¨ñ†ˆ™yã$ˆYêI[@è­ãѾ¾˜i¤ƒÈ1 „¾Á[kÎÍQ9¢d¬¡l¼®BÅËñØ¢ÈC)ZíLÙ¿*T‡1ì°#˜ª‰;_ЃŠã憮£Gè¤ ‘~JŽbHÓÁ>Å-úíxðƒXFé[„«æ66hZd³¢QW,ÕYbI²MBû—º§áÕ4Â-žœE’ãðX1B4Ãý󮓤æô¾—h¿+Iòr|¹NÍâ8@L• W¢.†Ë¹ÎdÚPwÉÙLÏ(ß4­PÁ&qåšbÕ¸IDé(Ž#Ì"ö’Të¿$2‘øôö ^€|ÛØûŽJ#žÑ–Mˆí櫃³Èq)žG¤EwÁß?ž5ŽÐð“רªæèPÏ›ýÓƒïÅìn•‚ eÍôJÎ9¦ø¢7XÆW¼d/âÍ‹éÜŽ{…Û½¯¢sCéaùþ`ݵ+•8]ü°“äp(üA­­¯ènæpp¿p®ÄôC"o"ïè€Dn×fÕ Es{3.$¿ošÛ›d[;Ÿf>'2ƒ¹s»,úéÈŸ2did¹ÄTJž woèSrK½0Hšâx™Æ@¸V²êLÑ\Ì[f;e52?’ma ­È xæ• aKÓëÕi|™~0#•Æøriêjø®±[šk°,ÏÚ#ÀÝC ?Ð¥ ÃhyÉ®Mõä’¾[ì­Tÿ,v‡Meû Õäd\øBѧ5¨….L!M95Ý"RȘyé«{SÙøïÂéÙ1rzŠYˆÍtÁÁÊÊaG»qä¹ ’|-ë§{ßÂÉÝLì+ Î÷â_'È  s©ƒÔ¥±Ú ¤¸qñ{4¡-̨ ±4o1ô&žöš²l0}Ø^P¦(VI+r¥–E`âȰî?·Ê•„c@äÂBåI­‹)l=¥·È¨¢JVÄò­çŒ·ÖWlŠ‘h•ÇZ®~ˆDO¨3 Dø@:´F¯qú츉ÀSôy1bsRLGÔq½ O¯ÎŽÑ$—Þå™C @E;ñÄèÑp®ªÿðüð]-÷ì y|d`è!4ßôš¾ðc-GÊŒµ½=|Úoœ V(È „+zŸ ää„^ONèÙ~—gýéÙÿ@ÁúRC5zЉñíÈèŸ äðµ3)ˆ!¬ùÓËWg(Ïúêåɳj¥<ÖrÀÁ·©=ü$!G&D㜙3yqÚ öмñìð0¹çã9ÇÐW~³h5y4a nRsßíW hRKÙ8Τ– qbœÁ{V^‰µ©{×÷ñÉ ™<Ör¬¶\ƒ?5têtüìŸü)LøMÇI) !‚é-ÕœWþÌHê%Ÿø¿\„3 Œû½À$uÃ$Ö$úÞÜ/íiò[{Ê_“UrkDØn¦& õÝfíqœÉì/cÚoÂk¹{Õ¨‹_’)Pá,Ã8V<›öݪé»ù:I}دøt1Ôoü†_NŽ9ìäÞŽÚ<žð·Æ†¬fÌÏ쨥ûS³Í­?µï.#¸–#ÝrüJøþ] câg =:xŽžÎŸD|g‘)}áÇZõÑK|jìœñ>ÕrPO\ÿ$&+˜Ÿ DK;æRèÏã-òx«–à đ<´Ÿ½Âµ~|zæ|µ6ÞQý¥›½Û¯¸ ^¸ß9ÄÆ€£%…Ù8¯NÝïðj¿9{*ã¸PLÅ ©åNëG0¤ø…Ÿj¹fƒ6 øƒÏ –È œHr ÂxÇM‡Þñ¡–sjdj"*ô5ü of3úIö"ôØ@0GÌÔÜwþÊ ª~3ð‹ðŒ\U:­fc%ó°!£ÛîÎÚ|f볆rÍõYCÓ( ¬lL_í+s̵õ»Äq~›g&5½ÔD•vª¡ðX-T'”^j96~Ç@~ª1ª”gѤe*DAlBùU¿u'sû^4|ì$›ØoÃQo<µ_ø]¾j]̈tæ£Þ lw‡R%}«å,âYM9 =;áòZûQþ6ÒvÐS-G~#¦íBì+ƒ~yì‹ À̘Ù7ù"#¦Ï:¶‘ÇÓŽ–ó ßfÃTNk¹À\;á¢Ã9˜k,ë[-gèjüD!r®fßà ž¹Z¤y‘pÆI|Ó€ZŽ­ð?AB³·'ĵÜÝÒ¸JÀwëׄ¾ÚWùæPSî{-7éõ%K~‚3¬:¢Ù s#ë ¤ˆ5Ó˜òŒíêŽuy³¶Û5ÉZÎn~ºé1üÍy„°ë%hÓ¼Õr‚_hfŸû^Ë™ ×™Èé0'–äŸÜ¦“[´»=¿¼9Ý0Ü÷ÚßÞ\㿽¹þ7ysÍtçúéÞ\[¹{î¸ÕK jl:(eŠ¿˜ÞØÂ÷„Ó¦;<¿.1ý8ï£ÿ3ÜÇ.4•PPþ²ÙYßåWö±7ÕåÎT“óùQáÓœ«&sÉ€§ù‹œ¯~ˆ;Õ */·ZÊ©§]–~HJšyÉ„®ËrÎ úx£]ÒéÇ'_ðNúßáôOòD™œ«_–y¦LÆ{\XêMòÿ}g’K}I¦]IfCã®Ò#øÛáßßÿRîüþvø÷·Ã¿å9ýîðï£Ýçñö1îV“ð¹róÕóç?6šÛΣû °ÁyG–neø;îüÊj…üÛ@¯³Q\ù: KqÆ—ÛÆýRî^m;—©¶íeåYjdÁР•&‘£!{²l\÷Ñú¸g4 ³‰²!Ùl>X[ƒ°ƆÓ"ƒœkEPÙºQn¿-&¢‹i H:‹¦zw:LulðjnÃÉÄqsϺ̸§Š÷ÜÊ9*cË Ò.䚺uL%§Wç‘Ó‡í¬12ª~*L*µ2Bц¡’1ùÆÀƒD; ÒN£YNæeû}Y íÂ…,M×™jrçegƒhLÜiIÔ¸‚­ÁŸ”!W˜¡µs+;r;S¥-~Æœ¼j&¡Üqô—Ô ×-C…ä–d½b±f®Ê•‹+YÈ%`åïÈ? X¿ªÎ´`U²RÈeg¶mÝWÑï0½Û^¶ð½ÒÆ®/ SdŒtt´Ý0Ši$xJAcŽO›ð˜…NsÌ1AAvÕ¶¢Ùlj}N²)Hâ¼y Àäâ@RSŸõ 9 Ãa9&4ë ÏëZDÂÔ& Zmnª;©ü“Øa„ä«AÆ}LÁ>ŠÒ&(xÚwTýßQ…Ì^¡Üær *5íÜ9fÜÒüÑY¶tv‰™"ùþøH™† ˜xÖ@ ÁÕŒt)Y}-f]2ý[Ötw—ìšXè[êFEÏÚ VŒ ®mà.Ùn$ýŸ–³Áý@ðÔv®|³ã¹¦tø+ñ˜ôbHÞ}³žÈ´¥ù/ ëj³°Üðý=~½•ɼÅÛ+±ï ÂyçªÙ |ÞS/#®¤g¥³ÂÝ9Ù¸‰<—¤Ïe¡¡ogÕC•ЗgµN^ÛK°ÿµxÉç¤7UU¿;¦ ‰2`ha <ùÁÑw"8] 6¾¬^wT›Å}²öšÜ¹ñ;»[ï$üS³°¸âŸšƒÅ!ÿÔ,tù'çðö%6é$ TÿûÈ¡ÿÇÒAzÿ#Y2üÈ‚Éj&þ“30õŸšƒ@ÜrÄsÀ§¦WÑåvBÈ ¿¿Ÿ16®P¿Ö_ºFÝqM^–%[&Yš‘óáÓÚ–Ó 9?’pÿnØÒ“"ësÆñ`ÝÔ¿„¡ƒî*;½Ý+a ƒâúcý“8ÿ«9¡DÜ$j¼Â$TÇ^Xßeuî`M$Ï;Y·l‡5&é£Ü4Ý“k'# #ëSþÄ6I„3ñ&UÊ(ÉÆQ5 –U¹ê.&¢¸¤Jäo{—;lIyÇZ6€l é• _]ÞÑnȦ“6¬4Ú¸ËØ—;!»×í-Ù˜Ó>È”kOuúÝÝ»ªÊ¦RܵðAË$¼Àô\pÆLz)/UçCÇ,óàøåÃë—3º Æ¥Î'Ñ&Ž]<Þ<ü–M’,|€ÑàÚ¹ySЏè)dCº–øÈ¹ÐßÂËxà¸Ò0læòðÁ8gͳ2œ 5sµúKhË®@²G•%>Œ]+OÉIYã?ž•²È<'e•ÿxNIiÊÏOYð?!§·J&Â’ÿ9Ykþ§dD,úŸ’SÿÏ™P†eÿs²"ÖýOÉJYø?ž3ÂB>,ø2ÑÀωNœ“?š‹°Ó¼:$±He“+wËãíõƒxÖ '{{Æ›¢HEÅ ÅbªY«w²ÛRþq³ß´Êc±k-Ë[4¼€}y†Y–^îÃÏ ü<÷HÇK,ŸMÆ^©Ë¡¼µ¯ØYš!†ßR‰íÛÉx±Ól.¬|ê´™ýÅôõºÇž †ÎÅÆÝÑØãìžÕ÷¾kÖ›ßf ÊBþÜK»¦»ð ZmØÉ­7ÃÈ2ò^]_ú<‚%9©Üε}ÇcÝùõ/íίÁxÿ©Ô(Å_¯ÿò÷øÔ Ñ™4#Éòܹþÿ¾ã0øsgÀ5°gÿïN·ƒÝ] [q¤<(w·—™}H èTNn¿Ùû]Ásרµ[Ljüϵ_¼:kŸŸÊ]áÒŠ-­ÌõÝ•!h¶6èûmYu®™cÁðã¥çLeÎC}Ç~8ãù }ã¬=Ð'ª¸ãÏ-ÅtÉ„py$d¢2?Nû^™”âQTÛ@<«ù>ñG‡ [(BÄò©<˜!4ºŸÚv5¬WHž«»ëëŽRͺ“j=ÍÉ[ä$ Q7ëøQA)KQæøEâeÊ–‰¥µ ‘x-“JÛª$ÅÒ,ht\éT"…HD ;^¶}3!AOeµ™™•J†iä­WZåêyPú7ÆÊdÝ—£í…+é¾Ce©gd˜‹P¹®v¸E±w¦¨{dD×Ä3‡çVe_ˆ5V}}¾Qz"/V‹;ïþ/{ïÖÜÆ±5Š}¯ž_ÑA›€4`p!EP”-K´·üÙ’?IÞ7¦À À@@$E2•SuþC*U§N%UÉCRyËcòðÇó+òp*où Y—îžžÁ€ µ)Ú{›c‹˜éËêÕ«o«»×%{ìåì»f'}Þýh»Nö¤Û<ç>Õg?;&%H³çhR__&‹Íö?¥-L£ZŠ`Éæ“'`êÌÕY.¹YƒnG‰7òû_…KÉ=xåüòàØÎï˜2Þ)iV¾,ÏùÓR/SÓRôeKKçä™ãñ+ps¥rO¢3c2¹ÇÅ˃”ˆpnT?%ÕEóÖšãáôyðr UóDxi6X1`—\šû̬+†¾y˜¼bàŸ'öÑ6ÔÐû|DñÆ#¿w„v&°D-ºh Y6½†(¡zl^\K2> /¾ÊL'N7›¸Þ»L sí]¦Yöåî2³s³œ[?mvNf䫎嫌Öeb\b¨.QFMWÙ›œT¿X{•sõްî.ÇÔãê ¯ph·‘ÛýE.ßûåYŠÔyÅþ¿äˆóâMž®zb·ãzÇwíXÈâð=˜Î+FD>YVe]O¥Uc#ÓkÖŽŽOí$ŸcŒ˜4Z?NPÍ­å÷•!ôCÖXè32¢C;Þ"а# àÏDÅýž?=ô NÐ º5•NT”+åßt±þì,Z ɳV®qÙ1K¬;“Ší´`¿ŠöçÙ"¶;Dèw *@äh§è‘·ùȠC0G o¤•i‚‘ (ø¡ÛöÙÓ ÛíG º0íåOés÷†ÑƒtIPÚAœj%vtÆÃ¾€È|S‡èÁHÕ—:É:+W èQɵVxÌ%áa´¤ gyx ÞÁ”è^Jm† 5ÀÞÝ l'T)Jm€g’Ô¾§¡£ª`"=o~ÁhdÏ“âJ¢gW©pG5]©p9É–=i,ù-¾WÒ^WM‹ì¨úžh8©ÙH­?ÆîÈöSÎÈÓÏÒó\kà 9“šeŒí‹Œi£ÈÄäiêHWŸ¬§B*7’P¶*¤ìSê*&V)õü[4”€$B¬”/äGòïn)ÙÍCÇÃé’<½™1Erdµ¨Î“(UéUE¦*š³,™›(Þ¶¬gO["ÇÁ®RxZå úöø]sãàÙS¨ ;âµÐímK¤[è—-J¨a‘äù9{ៃN!ÇT´“˜ÿ‚$¯Šä€%rȯZC.r>nQ­ ¬Œ»›¢: :atŽwÝÌ]ʾ*£9–—ÆÎޏx´ä%¨ÕJïÕ T™¸B.‰ÏRêëk›RU(È•TæÌ0Ð]umÁ3ŒÃp0Osf¤ôB­vðø%4]¡pOõ;¯R?'Sam¤ççBA93e wDyHZs®ÐF¾h/K(&´cº)Lrf’¿~²â$C«ÇC«—[ìqZ†s¢+¯Ë´¢ÑpŎSí¡&6]R/fåÓOr*¯gë;ª”ðYâ”Ú+Îú8u•¶±Š"}D9„èï lîõ¶Å~º[Ò_·ËÒ`_¨1§ÂÍJ“Ÿo˜ƒº¢ü^Ö–‚’ꚟP~ Šflä¡·DEŸV§P2?[#ƒLG2[ÉkË6;Ê&§\ì‚]ñj»’°íýý ùêúªÅ¯%† wÍ´GAqµjtZÇ6‡±Xöô¾´© 3,‚Ü9%ð)ÅÒèU,ÄÆLcŠ>?z”퇕Tãw4fuÒD «%u=ñÝKþyõ×á/Y\¦1œipdâåk81¿¦‘ù%‹F=ô¹ÅNCûÁ(@y-&lÐ&p‡71ìF}LâÅ,PÎm.yEhƒa‡l¤Ñz•~µÅ¥¥WNf›cè!¸mN@ÎÅÈ#–̾AÇÍÄkC §lNõ-¼uɯXŒ¾É"ሀ±Îº¤74vã]žØ®…°bK‹(>xµù ¼²»#~`c»bF &Ѭ¿û¶<…jJ‰gæõÉΜ˜DsòÁ6•nÜhÙ À¤@”<$£Kä—Œ1NÌ-±Û³Ý r& ¦ß-±äÆ ëWRº|/P~²K ƒ”}‹L^XˆvßEù ç^¸›¦Ë¾´+2žá©œƒè(¢Ø»1<;¹§šq€:†-Ttp‘£2½ª©G—C‹ŒxèTšþPf·ÈÃYÀ7iv‚ƒ•Ô¸§`ô}•B0Iœr§Æ}>)AfgGx—ƒUJCHo û³A¥|ÎM‰ÛjœM¹d“%wÍ$ä†w¯ìã› æ‡e/w£iÇ!mèa»> çjÅgŽH®'°‹îÃdƒV˜mt.YåœvZBc I X½«ÒP2õ¾©a9«òý%`6ÇÃÝõ$H\2ód§†•ÂdÈ© uWƒIiZÒý’Z‚5•H’p÷ÔðËBDZ“ŽAk¡£‹ç<èšÏŠ¡FÀÁ{Q]ÚW&s‹á5V±†XqÁ tïn »ñ 9·£®»Âb7;àR=°2½¦÷<åF»o»˜±)Žâ{-ò’ÆÉ[¶1ïhxxÿÜå—‡'Jc% ùéñ«WöJt´ºF] ¥7Ö‚xõ¯Ï~Z â˜Ñ¸Ä_U ˜k@01V€ aíu ÈäJjºy+õLž±ˆûðBèÑ•ò†{²9 Å‹^/€*ÌgrûeL2jàC9étg»»Ëôaˆ:3ÿFÄb2ÇÅve.öÓêXǼî¢ûár™Œõ°ï O+Åñè ?©ã¯dæMA›D—%ÏR²Hiùk<þà€QÛ0«´!±? ä„B“DCC2´Ç’sZÖƒ¸äòÁ€·ÚN–&…BC¨.jÂ+˜¢9;~!ØÛy ü®Ëï`‚Šñ¼¿¢¦f.#K^mÔ¬zjä9¿C‚sqOᦣʹ´ÉÂ[(ZQØ;ºZ…µ §zGªß ©ì×/^?þ¡…#UÐèh¢;ª…i9=½)"ÒPÀôÃÙduzœ18=N0 ´Xž¦‡fº^Ÿ’|J.Ùƒ àSl=–×¥§‰‚ÒÓˆÇôc…þô í×9¹\+¦}¶ìJ3Œ,/_èƒbcâùÁ<œéðœcWµp2wRhìä æºBÚ)[-ÑêÓùaKÔì‹r^¸xòÂ©Ó }(±Ž¢®?B>K;oÿâ\<¨ ¥Üó<šæÂ0¤m.Ç1å *ûö¤ò`HhSSæ i³8CŽU*;>ƒR <+gg;sãÒR§IW§r–ìÀl†-îRØ%*÷J¦–€¢‰‘Öf¿Àâ‰4•ýJåËþàp–4”;Êê²£´9“´¯œ' “()p…^$%Õ&ûš†RýÀÕúºSÊæëWRyÕ9~8S]¢¢´ûLõ-£rê†<×è­­Š˜>Ë„“Üt¢ÌfîPPkàÞ|«ZE‡mAOôÇQ_,îÏŽŽÅ鹨ßÑegøfõ´ò…$YrËÐGÓ€u2 S óôå2áŒñ·Ä(àg¬›ÆK·Û%0Z+e“çKÈ©Óã3*fº¢œäyB ¤’œ‘¥%ЯSPvYV ic„¤k  š)ÓúAkgšâ½]•’ìK¢g… ;i´gÁÈŸ‡ÂAIÇL‚#µ*ìâ øˆ@^\Nvzy¸dFžår”}>tQr y4Z¼-2q:|ßΩΙÒëãnK(û£`2œ2ßa†£%GÒn‰eZ¬ø×mºªfÆqÖºJIWÖ–ÜÊ©ˆ¼ ¦âŒJ.—WZÝGSòlç/Af«?;‹åM_Í&¡·4…9ÃèþLNdhqƒpør@£Ñe4X /5ú÷g—È™=/— ‹¤L¨ì¥<œ³i±ÁP˜ »ü’âR|¾•‡éîq¤ÑðºM´<3D¡Bßw{öÄã›,EXü£$“ iÝáGÅ,N#:&NsŒ\|2×®Tþ7Pp †ü)½”ËÛç‚€ä¡ÐýX»£«’`$k Hü€dxñÓkÂ#[üè28þx¥²ÿò7,ëÏoårp.Ž?æÕþø2ÅC¿|MóØŸ¿|þìùw-a¿2¼c¢YØ];cÖ;„í ÊŽa÷#w…§ÁÈA+D€Þ«a5.üÞYÒw¶‚¤;iªŽe”°@eȾèž(iPB:¤(›îÏXq–$üù®°O÷±Ê÷ÕÿñË'|ö'ÜÒÊ=â=9-+×p+º@¿'–fr}ãG4@m æXPÎÃË ÍF£Ñ F!p¬³ã4¸œùø¢ÌSysZÈÎ + Èñq%‚Ê<uÇhXJX4Á%=,h”P2ÜqC3ë%½|”=Š…I‡òŒÁÏóÉÂrH8ËT(2 j¶¬d—š…›¶áÒï(>…Ï™ÚQ颤"Uj¯þKû—êí°öŽS-; Òè~ YÕÓ×?¢¶re>žžWü1н\€§’ع¢‚ú¬¼©CóJ(¢Ò¹nÅu ¯ƒzŸÓŽ8–£`O„?¿Ü;Hóà<*/NS.ó†}—Š‚OèÈ-ã)NšŒ¶ý¬ÿñýáÚ4Æø©”ùùK¦»ÐÄËÙÚŠ@“éÔ|œ+{D>Í’=G:—.(5¼."}ñÔ€ˆ›Mn6ˆYŒýø¨nmá‡:-$ýÕ6·fÔMvØMgNSüadü‰P2Ì…m¡3-§2NŸÎYC@ZÓKçÜÑ»Âó¤ƒç¦¼T¯É‚È.œ—B*v™ÔW:/0Ùd¬çyr_|]TGÙšWÓ#ZP9YâÄ#”ÔKV%«ÿÎjëYZº§”9ºöéo\q+»•!½Oéï1MË…ÂtC¾oXËÍÙÒbK!Í-÷ àK2ù6XVø©2‘%Â׬ɿOXÛÍ0ª…¬†®´„y–pnÞ®õKŸ‚^ÏŸ/ÓŸÿ‘Là§ ÁÊ9ÁR~l*édEéH½®¿¡H#ã Q0˜ 0‡Í€†Ø²EJ‰--©ÌÇ,r›[Eîã2­ˆy—cœQá3ÓåäƨX*±Û´gI­V2Ö 'Wú„{XŲR™¤Lf ¢ášh2:¡þE*ªŠy§U_‹1‰z‘j²4¼uMuaKÁ°d¶©¯ŒðÈÆÓedï¢ÒÍtir²)ªW£‰#¼zûd›Z’ö—w²Î™Ýn.,q‹ŽW憳PøÔ>Lh–}Îû7¶pVÔVºrýrå{‘ÕNñ:M'Â-3Ðã,yœŸïÑ7ßgË ;‰ù6ÙVZ¤Ê5ö¨.CRû} OG¡jt_¡Ñ–hA‡Š Qñ+'QߟûI"ü2%ÓM2ó˜zþ*Èì…_¯C”ñÇé2!§•ZpRÌeÞt±ÚJ™ÿ@Û'躘D×Z´ÉxVÂk‹´dårIóDÉéìe2-{SÞ-:™XF!ì7‰¬ãØj—RbÀnBv;U+˜_MSÌdV+ìeœ'zä˲ÏR½<7¹!ØžŸÑHâ’"×VuÃC~u¤×ú'?ì=~~Àò©râ—LèBgb`ZÙÖ‚7S¥ ­ö£”N•޳–,z%$àM›ÎÖ”³%æh]®Oüj’L­-`ߥ3ºÆ&%b¹ÒiÚØ‡õoΡé î¦fÑåYó§—{Ož½øùUr²c­ðócðÙ-ƒé]ÂG‘@Z†2`ˆrù0ðûÐJXènsˆÖÖ¡pØJñýKÉÙÓ ·Ei7Mä·Hžê=ñšñðØZm ¾´WÂÏ÷Ñ”†OÈ/qèÖ;wÄ7*… Þ¾Ð%üÙ ›à#!2…Í6hFL;)¬=`ÓytŠ˜t›«gOÅ!Z”#“Ü}½”¹ß¾€ÝŒÅ?-Ë%[Y2p[>Ô)¾ø–=eûâKR™Ü>~ƒ–° ”j‰aÜ7dcø¸P€XÞÒF‹Þ¡X*ÉJAhå$PTünïyi%OÅþö½K΢[ ã?®HK•º Ãvá*ü㞌G9 R!ßÖ…S¿KN÷œ@îà±Ù7??úÃÞËÒ† uf†Ý Oýa J„r‡ìò×;BZ,:_¸;åýù¼%ðsn½)Òé²¥ð°ÊÒ'Ul^†ÜyÌýä÷ÞùCt°çD2Ç!°ÿ'¸ÙÒÂ.ÊiHõ“_Þ¾?ý ºê½ŠùiŠ‚©øÙ‹ç%jþ¯‰|î$8bÛ%ôJs¾òFŸrè‹ÍeY/÷`[ójO|µ+MfŽE»î6·º»Y/¡×ïžÿÌfXòxq“|(²vÚ³zÁx¡|D¨àI<Æb޼E<}uÿIÀâ‰öhæ%:í‚ǽ €6s-÷ù‹½¿ 5š–õ/·Ï=05xîfeõÐŒ•ÏRFµZEUúÝäßj­Á¿ò^½¾¹UÝô¼Ú–¨zæÖ濈ægÁ&ó,ÐÌ r4n:jE:H6\GÖCÿþƒ<²ýŸïýùÕg+è±Ùh¬lÿF£Éí¿¹UÛl4=hÿúf}ë_Dõ³ad<¿óö·^l! –eÞ°,q&¹ÏmŠ#…·(î¶Ä+˜Æ/†ÂkŠZÕk.åh,åøþ}¿˜ˆmÌÐXÊP_.ÿK„G9êK9jK9^.ÄS`YjUÌQ[Êáå–ñ¢75/?Gumë90·ƒÀŸsCšÌH­68R¡´,£‡¥Åȟ᪉ÒÙ´ÀI ìÅYíÅØ/QB]éÎ`ó+'c¹†R°+'¨6(ä&*†P”·}ØÎCàÛt‡u˜ C_OÇÓ2i$¢h~:6žÏ¼+Šh‹ÝÁÕ¾âá~û¤â•T!á$û#ñ¬òÂHÿ&œLóø#Þô¾áê!öñÉdî÷€¿ÓDs¤ó`Ó[ºN°Õž-zÌ{ñ‹Ü{»0À»YGâv)ýŽ8CVþÂetƒ½yïØFÚ,ÂP7_½Ñ÷ÎÑŒO F~7UºhC_fEýøÀï¾QÕZ@M¦x·nj2àƒ|1XLz¤è@í׃`ûS1YŒ»xÑ ,wðgÃÅmLRÕå1jÚ©(*®\~…ŠŒ°áoéþxæ vú¬“Aη1ªà@-Êåx´˜MéàJÅÏý®Œ ÉÉ™Žà¦EþE¢~ÿêÅsyÐSJ’ïEñå·O¶› N1ŽsÞ/èÒIÂÙbB×ÈÐåÇÓYô!HªŠö¿ÆáGÒ‰u‹ÎýpTF¦>¯»eÑcEÙÀeŠQ4Âng„®|HC”îêæ»†wõÖ%ˆÊ&.´«5ƒž”b1é.¨‘ûFh€­TFñ4 ,º\Ês–W“]5cpÆ%#û+ÊŽ¦Êï‚È<‰Ž0"©4ÆÅÒÓ» 4ÝÙ± KúÐ=©†4šŽUPÞþL!À§W*H“¿ü„s@Q_ÝÀñqróG hטºóØŸ½SÝõ¿Bb$u2ûªf ×D‘-‹†,ïá„c¦M±¿ÌQíÆâþl„}{· éd"¿"wõ(Ešþ"z Ðg }=òÐaKJ <è£3;3`qÄ¡ž¡3%#V÷Q„&Ö/<æ‰ Ú°L:+Lq4ÝÉÏ"i‹³™¿Ü2ðCŸ†Aä<üƒŸnáæŠhFpd³á‰ÿdáì+›Âxâ„› OG¡¼85ˆ"ýõ'ŒNEž,ChÞ T ‘£Gð5† GÌ䛞ò}èhÃÁ¤Oo2 Šì¥áø"ƒQÖç (ˆ¿ŠF0ßxù‹Ò…=YKZˆT+èá7E8Çïg0£÷ºøvæHiQd'äOðèПoÄÂÿóO”u…erÌMo4LOÄ㟞‘Îlàó<ñö=ä¥yl†J‰1´>÷!9Õ .0•Mä‘TòŒ¹'ŸB;ô|‰÷¯Í§}®Gòÿ/÷?ýqï3•qÙý_Âÿ7k›Í5ÆÊ¯âɯãùóÿ©öÿL”^³ÿkn5š™öo4j·û¿yÞ¾·vw- æ¿0¦-Èðp~à_ž&GÀÖàÌ›b§˜}œEhç9š?Öþ²ýýeá‘ê+b:ÅÃù|·*r¤ëiì†QíPÇØ×ô# wåíûJ×ï7þ0ü 6?“ÞáîØ‡èÙ€5ý«Èî¥E·´ÇšÓ`JŽõó$<¿&ÌåÏEûíûéÈ?ÁVI°JÂJîýÞ;ä5ƒ *ð=Ý]‰ðÎtÃ9ËøÎ&P¶…wx~Œè`j†¶ X/~á·+¾!&χbfèÝŒG•oŇЋG@˜ÇP ƒòGá»E?qIElRsÈ`"Ý5Ï‹ª‚æè6§Eï€ }œf?Œ{ :o ½kÿtdº=™†=ÚvËŠ8–<ápT aÞ*# {-fÈQù³.ÉxMäéÝž.æÄ˜I15MÝÝ-èf+e-è¶Å×a‚«¦òÑm޳®ÞªÕ†³ ‘+`õ£ÑIÒ•ð #žcI¥Ü¡z<§9V7Ľt±îVpÌ“à' !%]ºð`*àíÞ‹ª[H¼¬xÑÕŸ¨(]2UõL*iiY*}؃¥õFhm:.^KZ(²/ºòÔ‚`'DÀ¼xBÝöA®»Å9{dþ–÷áJn<ƒ”>>hFL*Y^¹ÕH¼˜âa@ø¼ÓÄ%šbò9WH>HÞȲT¥ô®­ùaãÞR¼)£@vÒ²!"…æ–Þöún™ˆ„“3ý’H—ÁR¬,òŠO鸻Ř š4pƽ1‡gTêaë˲ÄcÚ®Ðé öÐJ4“R5%ƒ$>­6|•Š^Øß¡§vy¶ x¾×=ˆúÃSºnß-³Œf¶¬Ç¤ËÇ.,¡c渖Æ9 ~¹„¼qa¾¾fNÑêÞ{û"NŽùâE?b°29¨™DJ*(Ǻ8;c>œ6uçò-}V«æªb²u”óÎQÐEq‡’Ã:S4}Fxû+¬…*•o’ý`À$ÀŽ>!]‰'…L>ôB/1Øÿ\j…Þ,Šc-d‡‡/^‰¿PfÉÀþ7 ÞK)„¶¡8…¹¿³¨àÞ,œ7@à$4&±žÏüTY¼¸“á,šàäX1 !Á¼ò#PéˆP13¨3‰`ÿd œœ_CdA£hö.žÂF›é(õ5§p]wir³#*é|‰z,õŽœZ‹‡( PŽe"Ñ#ñPƒ)³Ûø‘eýó¹|Åó]y *]Ò§³ÌCgAÐoz0[ÈŽ®[˜ñk5.¡ŽÒ\ oÜê§n\Ít² û†ƒÝFŽê;ð…}\1/#œõÜQ¯‚Lɦ†ÊÝZVÂvçoe˜ÐŒtnÈ?wUjwÌ+Àó\ÈÿÓþOü³ì1®pÿ[Ûò6qÿ·Y«ÝÞÿÞÄ£Ú?~ž¶Ççê÷ÿõ-¯zÛþ7ñ¨öŸõ~í_«ÖêÜþÞmûßÄ#ÛŸ½|¦2®>þµ­Ûñ#OªýÙ‹y/¸Î2Öœÿzu/{þ¿YkÞžÿÞȃ²Ÿx‚€ÇYÃY´˜Æ|ê¤ ‘„–ºÃ3£éoꎧäŸ\É'ÜßíÞqr–± 7º^ÄÝÝRÞ¡"Âá$ÂÛtëkîk–ýðÑ6öíý¹mÙ?=mŒ¿?yö=ª†ˆ>ìh[LHªW–¦¼Pã wŒË(£`%¸3ùÛ/¥'¯x ¥ +uàÞçN£¾™ 4ˆþýÿìú³ý dýÛ¸ò4®}ØF»¶F»Ÿ0ó@Ê Þ¹ó 6P°q€]{Ÿ*Uü3ÒD~9|ʉÖþi´ÿiïg?÷“3ÿ_÷ô¿vý‡å~iþ¯nÞÎÿ7ñÜù²Ò '•5„]8­Þ­Ü;¯ÄÁ|1E‹O_ÃØ.üéñß½|öü©(ü›(|ÿo¢üÄŒ£~l§„Á ê5Û‡2‰Û‘ù›~Rã>Ô˜n|xe¬ÿ››ÙñßhÖoÇÿM<Éø¿Ã\Èe>é:Yf×ÐŒ7^°¶U¤õ|P±ŠXTÔ '  )»}‹ÈPšî |ñ|1°ºXÌÞ&t‘ÍÚý}ØwïÏ÷»ûƒýEµÞíÙܳ€Áا¿ü¾MÐßžJ 5Î…ry6ÉÓìíi4²Å}aÓí¡]R˜P4Äq°e}Mä|M²ÔŶ縨ÏRüºpÄ×óøC©ä|vmœ¯³Ðù:>täNÙQG~Ýa‡½Ïûð ³!ÄsöU[íÏeåùÃh¾ó‡!üóÇSø3â?¼_Dóн[r·¾w·¶¹q·V»[݆  .cƒ ÝHãÜôÁ  j­Zï»ß<Áp2d?ì>Ú/º¥‡•î#Äï<úÇåý'w! 8 ñPIB€ÕvÛ3–ƒ?S‚ñ‹u á9¢mûübwá·æˆSŠkÙ€¯}ÞÑi=‡Rz¦«9ÙT4W> IÈŸ ³¥å‚”L‰§~K$‘o·p:õ®Stû¥–ë;AËížË8Bª8Ù=»U‡Ÿ>”سs£ñ+€/„‡ˆvÛ/ì½û^)?Âó 5»ÕXŽVáÖÝ»ß>~öƒuZ¬–Õ·ï[¬)ÒOØ@9Ê”ÈÙÒ C¢ƒbvçÑ´)ÓÎtÀ‰ 1J*ë\&¥u)v)c­zЫrp`ñ_A7‡^ë¨~]w8mãÜ9=WÍsHVw°ó:ÍŽ™ñK`´0:ï©‚‡!eƒÀ—3BNÈ'°'¶½¦IBu £‚°œZáÀÇÓ8µ;Œ ¡ èb³Þé`^Àþp^„Ô¡qn¤áJ›ñ²×ª›À‘³qˆ›ñÖíõƒ­3Ó\#RbPsêNGïX °a¤MÕ’sÉsR¦B‚ô‰”º±U'¢ˆdo—½ŽØ0$ÔÁ,¯c/€£þ°‹‡®±ÔÊ2Çv JíÓ¡¸‡¦Õ®:X-þÅÞáJÀ©¨&þRý~T œRûÎa%.Ò9ÄÚ&#Q€!¬Yu`¹9DXŒù½M-i>S uõ8Lpª§ußV­vÑu¼’S„ˆ„(·TâhlD¥^ÕJ@ïò…ñ0í&Ô! ¤ .ûàäÈ–á£ýåÆ Î8ÇŠ¦* 5×튫;^µ¤ܪ£û–³él9œíN’Òñv *“X¨<‚¾Bôº‘¥p·3ñe¯dpØ:¦Ü4cªNÙsÊ5§\wÊ4R€íÖ=[‹ª‰^ƒ>C¬«×~ Ä£Ãp݇^µº#Ü{ÐcŠ5€Þ¦S¯9›Tv‘´ŠE˜u uÙ¹p ÜGË2ÍñdÿÜE»L²‡á—v'ÝÅeØõ€­áÜ¿ ¨\I©ºÀk‘„‚ —±BîQéeL#o~ØÚPõÂHY:|çl1™‡£¢Û®vÄCtãЦ×2²C0ÓuÄ=Î{º7Ó$Æï›N ¢VE:H2 „ï™VFj`B44S„Ń´0;;D YlŠJ˜ˆ$QL(si¶CXá¸ô t@pd ÛC¿‡Ž=ÛˆD¬"Üñš%è/ô¶<ÌŒ²íB˜¼íP66…èTx[¢Yh œd·ho¢OWÉ $` þyÇßeÁH~9P^6…Ô™-kà†ä „"î)Ö‘*W$ jé™$n %êýô÷d~ˆøeBš©\@0´ìÁj AXE‚n;8çÛÔÄ—ž”Ü»^QäÒ†ýþŽxÂF*Qtž±–’LÒ"¾·¢‡ä`EM°ÔºÅ™<‡ÆG‘xRIŸ+ÜI—€*åÑ"Nì"k°™\­ŒLJ¸GŸEÓYèϯ¾#Ü=÷ül“B4u5‹úÀîç¤vq=K•Ë—¨Z(£K›,ê"\Å'º“/U;7-EèíRÎäŸZˆ–¯ðêOj°hà9° H;4“kp ^Ÿ³Y)q¥nÌßN fð:üÅ•2A¦æTå^¥ÿ<šµÕ5þou ž*†N¦Šæà\ÊMìš¾˜é7Ù«d‘‹°R;ö™]R©t@I§ÖAˆMÙYÏé;ÁÙÙÀ:‡Îü:omÚ0˜¼m\Òš0:^ïSƒÚ#\‡ÎïÖ»ÝÉCÆ=üár+vIslÑØï1" Û^¿Ò­ô*}µ­åœ¾Ms”hÛôÇI~ñ¹~GȾoçá2ùóy€èÈ7h¨S ©/Ú4»Û ?ÌDëž§ß0œßi@É,y†8R¼+à]oA4LYåf«A/­² ¨µè·6°ÙôîU[FYªocm3̘µi ÞÄú×ùÔâ$#?< í„vdã­(kYýWÏBÆåÊa¨¥%žŒ–ƒ†d‹19ðÅEÂRs’Âlù|’þRYòC± éÝ dß Eí»Ä[ã¦;žW}P¢{-E]Žf!v¾t:"kp=·ãr˜>d@¼9Tê@ȇÃI8{>hÆ£èˆÜ„á‘$LpC}<{»í4$ M.añ瀧˜)&ðJ¾‡)ãb*H¾ßGÕ>>h}‹j;¸Àb;E=×’6KÓÍf³QÝ¿õMœð˜ À6ÀÕ³bÉ…ùJÒRsmÑ0h‹þ> ¿ÛA“™?)ózØ¿=| PÞNà­]8v 'NáXõ˜ßS|½d‘0S»­Ú 2uTzä¶°×c+6j:±«ÿÝ:9¿=†WϪÃWÃjÔMt ü_‡˜øx qÚC†£ì³=>…ºŽè¶ ½sdn1  =µ°Öå ¾Ë Ú }w|K<Çó†Ùµ(Ú}ß>†S»ÁñôœÔœÃ:xC.OçÇóˆ·ú9! uJ Ž…n‡€!Z>àRiÕf[ ›]£É\‡D@fð¨n!Œ¡ŽU•ñ24I+ãñŸäÒųx¹'~|õ̃9ˆ£.±Ð—ƒAßÏlt6Ôm 2… T6ÙhóÏé†(¢n´ˆÑú#žñb*°ñW¥u'lK¸ž_ ·óO-þðïN‘÷B°·uÏWï‰iÔ|#•ò«#8zîËkŸ¿ÛGs?îl«æBƒÔÊÉQ­ |§äë°Ÿ÷«÷«nµêuË~†Z_8Û±lœ»Ø™ùWª॒{¿ayMËÛFÈîýä@¶Q;O^¨€ûòDDvqÿ¾ÛMRàa›Ç0öð$"ãuuÆ%9{H Y{zÃ3ØsXl †\˼CZÀRÐ}ÅÛw£|qÕ?ËŽ£q MÉØœ¡ù¯xB·#Uü[«ò»Í0s"T Hâô‡M³Rrz0xV²Môp/ Îp`ÜѮū¶˜$4WÁB¢ªð«£Ô0'2Œ—wƒžVz›ÐÀ@Áü~O¾—á½l¼ÕøÂ¡˯5Å]±%oóí-˜:ïŠÆ–*i«ÆhÌ#yæ|¦.hs¦ƒJu¹eÃsX—O¤‘ás!<¤ÃAyÊg#¯CyD`ÌËbwWÐÀ8µ ÕJÀÂpÐ+ sÃÜG…?\È¥:þtè¡]{þ\hŸœ-˜Ëå_ æJùsÀ|J~ŒGŸÐéFÁd8?”|ôé9-”È½Žæø•÷tÄYŠ*-§0C5x ]Ìð¾™áñô£.ö6uixPN™œd1h6UU•m>pN­ÄN”Y-âú~~ýmù_±3hàzååPñôü²9TˆÃeó¨ ©fó²9¤á1Q$à WÍDô¸\.Üvýi­Ò•ðЛZ60t%/¸¼ðކ®h‰DàÂóy,ø=ÁEJí³(§W!Þ¯Ãç üûhw7KΓaîçßFz5Äéñòûý’„-OÄÓ›Üeâ]_–lÒ¶sÕáØyÂÛmb·ETE[íÓGhë„°…·¢{ß+%§ºêÙ“Ÿã`VV'©"^ŠaÔ§#ˆƒ-ÄÞ»ŠaKýP žH` ñ@tšßKŽZuà:¼ê&ým""a!OÕÕ°Z‚¬–W«7ðð)da¸LZôwº;½þN°3fºíß÷ø”À œìit¨»ƒÇ¥;òÍüS¢Ú/\S§3¶1»¨é,è}²ä ĸ!>Äbãlƒ ÷[‚Î.Ï„ÏÍ[Åœ?¢AbÂq ËáÎáN¸ó±}ë„Ρ3t€m°î:þÎ5üSÇ? üÓÄ?›øg ÿ<À?Û9Ûd¾ýhoÃ/lÙ ŒN© 2ì<‘OîUJngøº’T ¤Èõ,¾ê³lä#[ñ Ì<›F¢ó2 G§¶.Зþ!nežCõm%Ø£ÑmjÌŽCøϼY½qð] ª˜kùP"™K¹%´òw¼®×ðšÛÈýÕ;r¦%ÈUT—aµj ꥳ^¯—Ì’Uw{{sÛÛ—[›àËV­¾¹/M˜,6ñ¥V°…!¶†¨ã‹S«× Lë57u,¡ºõ Ñ¤»ÀËT;'ë«]Õ`Í‚tф̦‰žÂWW@W‰*¹eV›ÑT¤IÑJO“3!°&¹nj\Xyb;†i Ù÷cœ¶`×çÐŒßnÔÌY¥-ß:,Ë@+]£¦?ð=¹S«Q”êÉÚ¼±a5œ‡Rts$Võ2t?Y„üÆ¡¸ ÉÙ¸Ô‚Íë}/úŠÃ³Aš–£íÎêuؼx ½Q“å^’ ŽÑH@Ï|(BƒðÂ>R€Ë’ÞÏhò$GOOŸþß)I$‰‚ž‘qP¤ã©ûÇbï%ËÖ‡´aÅc*\á[5^”¹ì‚_RWpŒ‹”åSI>Þ¤Ò[—²ð®Ë(@Î&MÓl!a´Xwlí~ß‘)`&‡%©s¯–t^B$r]¿÷o¯Þ±Ðå,Z ›«rÖå¶/fÄjÐÁå…ß{Á‡ptï±îœ+:i¢3÷€ÌCI=ÊþЦƒÁ ôÒŽ¼uÄlCè¼xÉ »ÐA§@ñºÃ¶z°«âÖV«:’OÝ3ß2¾–‰×ß^ÓoªøÌ·Œ¯eâù;i[i!Yõw½ÈÐAõ®º@öÔå:ÌD¸FzX¿Wâ‹c¹€ŽÁŽêKì¤ ²#”AÙ$t¢,eSÒí"­C±0ì$:B11÷ß‘ÊˆÏ YhÞ%µYj/¨€\«ÑœÈõpe=îCsœ ûÞ´áÉZþ@zÏRGÜÉ‚¾U>–Ýj¶•MGwÙ§o[…·çË÷Ùt}j¿En›oTè£~ÎWÛôÑ@®»©Áò|æQóѱ4\RRæÒü¡ÔIàÏʧdR–µ(€9%O2¢Šg,Ÿ‚Mïúq¡¥âSñi_qXv=л4"‰6ÿvK$S˅ɲΠQs‹ÒÅR+Bj?Ôè eŒP²¶ø—ßIä‡ÎàG?8X“ÝH.U›xΘâ–0˜’…i -ŸªÜäC@?lØÏO©JE²m-©MEªT(}„KHÆ®½:1^iWMÒÐ-‚Bµ]ëà)7¯Ú*8AeØp·«RrL %×’§%rñåm£¦’¥Þ:Ëp:ò†Ã(±ê0GËåJm¬Û±ÚaÉË&:͸¦¶¢ TëŸ%A ­eõ«ISÈ<–Q©r­J]8u€^—óŸNg¨”œB' I˜Í+wn€ÃAˆ‚ê±v›cK‘:Æ¿H·HòfmðÏGº¤0Б)xZÇ£8HÄ/˜??Ê ÷¸¤µ¡R‚ƒ²ÓQjò¬M§“x©HÏèÆô!å=–;ܤ)„XoÉ[ á©ï6“-E×Uè¶¼¢z£œÎðéŽabBëí»ÂFQ¿{à“¡¨ Æ—çé@•ô\ª¼í*•7VÖªé*&:r$Ãúq»x¼h¨Ñ%A=:b–îïb¥ðíž~+ë·Š~»»[Óóí:ÞTÐ]È&ž%ػǒ¦.ÐÀÃ?5—u<­õ…b˜vË)o:å¦SnÚI UPòd)ץƒEª'ÔÁÔ4ˆB•„^å#-Níh;hE6‚#»E·‹çz›Í×–jÛ-{*qí\'àÃÕIO1ïòÑ.†@-]¿”)'x‡•øk‹¾èâj©´õTÚ:-tª;^½ùÀQSKÅS1$¦N²ë Ú‡“2™žqº®ÒZVBô›É4À³‹\ó¸xõ‹1JéŽF—“¬Þ¹Š9=ïèW–BÝTùÝQL¬³ˆWFŠÙƒOô¤ÉÚ“,~Ù&y&y´Áè©zUë(iM>Êh'¥ùR\N5¬F4T B¥êÎè袜48¥¶ëX0 {tãÏÈK7„^“<ï#” ¤_O½Ôøå¡P¿žzAmÑS%ËjâÅG ?ÚUÐw5ø] _E>Ô‘wÓE,•cÙhôß‚Ñá¤Bö_C_hæÆj#¸] øËÔ›ç¨Xo©>É+mܘâ˜Vu õ‚–Â0ð[À¦Óq˜XA=E1%ŒŽWÔZºN†}™†é”°œ™ŽÃÖ¦wç'ùrŒˆ/S"³4À50s1yïˆÅptB“<’#0¼û3g'ÍïÀô"éØ1Q^™ÆùT ÛFšlk´Æç‡´Ónu­6k¬Â–ѱRaEýxCà«c—¢09*wêòÓµxûª\rÓ´%½r§NDÚœëï¢~bŸ@À'ÞÔDÁ¶Al¥¶FWŽï‚ÀŽØ:6 *u'9¼k„Ó•#jwixdÿ×$ûŸTv G§¯dš6ÉÀ]î9Gô ua— ¬ú¢CnÞ«âUaTtÑÐëPõ_÷þz@F J˵>¥Xˆï2‚›C_–è“!yT}®Ù “ 5–ácZsS™ÞCTµ¥%´îÔ›}Û«M¶Ð–)°Ž%W×®¶\Ü1¡u7- “¯£M›(~0ý“hqJ‰º³!2ö;e`À ß9ÚúKÅU9Aœg‚3ñ+`êãËk ï¢bŒÔÞº"Ói×ï]®\åå‹O²ÈyÊï¹LLRõŒ J\4"IÒZ:)‚óóóË%Óå”ib9uóéC›fË6Ûµ5R%Û¥£Õ6–;Ì•`h˪gt£Šö> '÷ü‘?»˜$áRÃdÅïO¹"¡-5õ¯| F\ „¬4Ûv¡½65±$ɋՋ-¼åGèܵ5¹¹<2 ·œu½:ùFuµt>OÞßÕä!¬‚PöR×êùÅÛ25lü§óC–:Ãóän  O’ 4Ø4‚MœUI]SÝ!2[@Øûq/ ÓžiíE ’1:¸G˜¨úõïÿ›mÙ?¿ÚûöçÄ7?¿Ï_¼ß¾xIáV7üYï°ØH$æÊ y<%½ˆ¹öïN´cBvÍeA¢&*ÚwÿZ¾;.ßí¿¾ûÇÖÝ[w_ý -Öª^“ø¶0j°Ûßnhа1¢\­—«Í×µz«éµ[³Sð;âî7ân~þ  ¼F½¹¹µÕlÔܵZ½éYök.}ÿÄß/&¨“Ù¯ P†c„YjÍæöv³ºµ¨è8ê/FˆOây0¶Â1Y…Ù Ï —ïÔ¥ `«¤Òjù-ÚöüÑÆOÞð¶ÔoבÑêÒ:uFDÖì^R\›óȼ½DÙö{ãà°ë“pÒ-úæ„,zUBi¯WÖ’$¿vDÕ´±õ#Gƒ¹Þµ$Y¿÷'óµ¶ò5.@´Ï^šÅ»t4ÁÊÜÅ¥Áï ;\‰Ä°{²OH™ÞÑh1žˆùÉ„òÑá YIC(kÍŸ…ýÒR±Ü-HçòÔâ6FBXÐ-`‰F#c(óò!xN8I¶ ­ØÉˬ0> œRØÖž±ˆ,ñØxÁó|ºì´1³Ìdë¯ÌV»Z>×­ŒÂnåí{ ¸0°6ÿàÂüÊ¿\AM0ðÄP‰[6d§†3+yóF v° Â¥ÌÚí¤Lîð&r™»Êa4*èæ¦r„>¸¤3.î qÅÀÅ|wÑ!Û6ùî¶ZGþürHß½:Òù=XÑkpÐ 'ýrD4$]v©Òó"þ˜œp.»‰Xèö'eTm.kt‰KØ$’ÓöøBW-Àš±U¶oÑî­‡Vô þ¦î6:è '¨UÌm%<£…h–>8 Úô¿ƒÿœ\X¸€¤²ó1‚íS_Ê'ê /‚U°aü%‚«,à [$IL(ƒ•B_¹xå®­U±Ü¡Ô9ÍÌï÷‰`kJfÃG•…)CWœ,¯€ÓpЪ:¶å9Ðø‡Á¤UwðÒ¾ÕpðJ¿Õt óµ6?nmá]cëÚ٭mG;oyUh¶“–ç9„dË«9d ¾åÕî€-¯áÈù¹|¤–·©Åïà ñNØn—OŒøÐ,bdJ6KÊv€)7yÚâ ”nfÜl@Ζء==€4;±A›0´E›p´I›±´M[âi#¢6cjª,úéUܤ1ª–¶ æ1Õ ß5 Áûá‡h)‹ºh3Ãb4g‹Á,R’°ÞÝO_œc/Œg¥5EÉ%Ó«¤ɧ˜åS»'”ð«‹l~~ãÇaOâÃ&â–@¯ZCøvÄ ³ëº£HYú.7k;ð¿W’Š-œõÖùöDðR¬í¸¥³Q4¬‘Ä’Œ3§&n{»RÛ¡? d4 ‡_–Á‘1´ùp&Š”äŒì¦¡³Š£ã¶ ï:¥r‘2ȯÒI¹<Ú~Ã=Qö )—3­=èâ NSjæ,ç—Z ž=ÿÓãž==xòÇÇ/?y½÷òšÖ…¢‹»xró•DñÙó§{)*ß è4‚îçÐA—M–“«J‡òÔ®’à>FWÑ1ŠGQøéágl àg ?ëðY§Ï:~6à³AŸ ÒïúþųçE ’.¢5D¼úIâ Oà¡…nܘósFólñ”ˆ3|Sêdá|É·”ŽÄ•¯,ñjS§á¥ m$Ua¨‘ÍÑØáŽQ µœAeø>JF§Íûc©”;^-7'_ÚÉ«;#Í.)³þÙÔIºf~2eªæežû7¯ÞزðK[ž&UÖêóßÛ•ÂÑ™0øw~äÍÙMTlç'°@ Hi •f8:¼íÊ5 µ7Ϧ+QBV+Ñ…ì5ÎȪ5½¡²Èyæ˜p c’K“Úf&=TŒôI¡©ŠÍu6!Ó\ÝŒÿ×Ïáþu½ÿçzÖÿ3ZE¿õÿzÏçñÿ. ßúyþÍ?©ñ?ö'ŸÉÿó…ã¿^ÝÊŽÿ­ê­ÿçy.1þÉ[„ˆŸ·÷Òdõɺ¦/d·¡u÷M0ùð† iB¢˜ü {}œ¾yüj'‡~Ô‹ÅþŒÂ»@åaµ<ËÙEk]â’sÏíDó©OzüË#§k.cÝøÇñ‚㫺éyµ-ÿ ÿÍkÆ#÷ùÿTûG“p袵ë-è±Ùh\0ÿ7³óÿ¦×ônçÿ›xN­/°ÕÅ "Ï‚ÞIo„N_üŒù¤ö‡Àg}ẮõÅ`1iaâ¼+ Æ0ÌgAÀѰý‘°”Ëv¼Ñá$&q8? ö›·2­9W…W»Ó{2ë=ò×&÷oîYÿ×Ï®ÿÍj½¾4þëÍÛñÏiW]ú©´ÚôY´‹¢tÏÞöUH÷éÔf·nxv.lé‚ÞåMË&cJþtŽæ•Þ»Êä}J¦Ú¥3‘4fù‰½ïSdH‘ÿå?üûÿüïÿÓ¿ÿ/©m»Øõg%eIñìE³sƒ$äªð"‰)…ë&¤‘»R>xdö›NQÞôü^/ZL˜ÑîEc`ÜÉQ(LpÓ(Dw¢xˆEö½Ëä´ƒüwèZ“Æ&’ã¿þG¬4›Hü|6etëW©±DœJFW¤XT.ÆÊ /V vcRßp¦Œ'Øÿ×ÿ(ñüžÂÎì'Dd;L}AwqﵿßÕ´™Eå„Ù?¼‚tqæ ²“âÄ…‘:Š(~õhæÕê°›}%¤ú^8Lõ8 ¦¿º|ÏK!`來~h3¢öyz,§èý`©ü‹ /›S0‡µ²Ô»\8ö'¶v®f*üZ1ֵܧù/ÿAu›åâ F"ù¿zè?jûåû¥2|Lµ«åmø@uÂã“OÊ^CžFó7Ù€w=G'¤–Pì.}±€¾Ì–ô GMx´¤ãKÜE÷"¢Ê¸ ÷õXÊhmÀ7º«—[äé9öú Ÿ¥©åý«[ÝhÎn1¿O3ÀÜ•› ©¬g]R!zµòugÅ åYLØ2ul[9©,‚ÿ Pqyä¢\ŒýGxÝÝ/ºT¯·]©N‹,Çû!úÃõø^ˆn«ßJUŸ-D”!¢ýGûû}³8öK;„›×­¡Ë»–·ÓmÕvl•Ö ¼+°P­Ñ÷!E-ì¢{@Á?4ÂW’šú=re­ej’õ”g»-iƒ‚hæˆöp9H¡r>;WÑ¡†”­TJRKlIê¶øÛÉA‘ï´òºƒ¡ „ƒàL9p¸º¥ ß_®ðýå ßÿ„ §z¾TÃÔ+AVµÄ…õLõÃlV­Ÿ³`c½%Í#s"Ú5à5éÂÇ0ÐÚ¿øšïC/>.•±ï=f=[˾ÿ¸|ß/ÓIÞb>ŽÀ̉™(Ï—˜çÿùïÿG›þ~ißî•~ÏÒþï3\¬½ÿkT³û¿j³q»ÿ»‰çóÜÿ郄ÛIä7þ¤Ç¿©p}e¬9ÿñ<óéñ¿U­ÕoÇÿM~²w€Â+[tvH$¼P’¬|l BË¢×`aYzæØ- °˜](öÞwÁkÕ.Ù(.6=ê—,-E¶kÌ6® Ệ„ÙÛ÷ “8§=q ¦°ò9 ƒÐŽC¨Ë4D›‡â‘¨ôƒä– TU®][',—I"»‡s<õßõ høïÊ$„°;@»×û”;ç)—QºFy8ØÍî˜1Òæ’¿;Øû˳×ÕÝ¥òªÿo»å÷ê¤ñLç•)‰Ô8]›åIQ/Ëê¡e]Jïïò—nþ”2¿ 4ÈBrz½ÃHؼwOÚ'ñ>£Ðÿ’k@Ze_è§{>³±(ÏGa€#š%ó§‚QÀB…"pÅX@H?‡É_èggd¥d4s¦Fð¯Ñb&^¼ý(`6IŒ*Š õœÊÑ{ô‡ç2 )ökÌzÒóÿᯠÿ_kl-ÿ5›ÍÛùÿ&žKð?=~ýGcvm0ÀèU§åq‚n|hΧj*ÆÁžäqGa7Fýîp‚Ê84ËÅn™£øŽx±õ8£Ër¶ÅY”ºOŒ M¾,v|lÌq~’dC(Ï*/8k ûþÙ 2N\ˆ)Â?Âîe°ƒ (Ì܇ßžüôrîtJâ]£ò°[ÀJƒ'³À_—S§ÃEŠf£Z:O.„¦¡à$/D‰„),góØð÷«ÝýIo¿ÚߟÐp…~…î¡søþ—pÃeÕ¨ýösÊJo˜ÝÞ¸0÷r·ùŽ›Ãk($* áØdu¨c€²îH»SÚ„Â õ±q1—ƒghvT4¾’À^1 c’*ÓY4œùã vªÇÁ¸;’®.Žð–}‚€ÆÑ€1RWç$k@¸wC¸´™rG¼â ø,6¢GMF¨î5 °‚-SbŒ@?è.†åþb<-Nc±AZ^âLõDyT¢žkçÙ²èÌ‘Æâ$˜CiW)Ê»ïÑ-@Rh¡b³’>QŽe2x<È‚HàþdcN^ìÌ’z5 Ë¿u k÷ê¿q ·+¿y wwó(~ùÛGñáoÅG¿ŠzåøþÕ‹ç°ó|¿ a ¹ @)°9¯xZþáýßZápÑO’îJmþõl1a7 dëM[ªikBÍOÎYûô¬ ÏBœÕ‚îíWë›5Qߟ ©Hü@‡+\üÑÎ1Ù i`ðé9ÙûCëvkÓÆ ’›ÛŸlœ-·k6P°} ÞK€ddéüm(+ãË “5¢qKy¶rüjRýº!ê:ëõ´ƒlŒAâý=mAö®ÚÀtDäµ*H’‡oßÃÈ¡í³Pô™õ@#u0ÒX„7^ôzAЕ~ Àa‰šÝ f|Åöþ™ÒŇèѵ Œ}4AW<Á1ÙÒ‚lyv½RmœÎ>’z3W(bYþà]DɆ±Gd¤eWèžpùx5JõìþªeºÙ§×k¦ÚRp´sñ0žÃ”û¨å•®€m2žª„-Ì÷ɸ˜(OTGNm °ÓæôY½D(X{„¥F;$ôVœÿá‹zdã‰Ü –)yävV‡ÕíkQb»é%ÊGˆÆf *¸çDrýø¢ËUøÂ?ƒüN6 õO”â7Dx;é,ðÒúü_ö¯]w‹ø¡êZ1æ”ü¯:–¼fÓuú_ÕûŸ[[ûŸ7ñ¤Ú1<(«Ëm÷íûk*ãbýo¯ºlÿo«Þ¸Õÿ»‘‡<á…£Q‹mÝ>·ÏísûÜ>·ÏísûÜ>·ÏísûÜ>·ÏíóOòØ;nûƒ–ýßþ‡ÿõ¿ý§ÿãÿýßÿ3±oÄ$ä÷bá÷ý,ÿý ö_ëµ%ÿUïöüïFžKظ@¼c`ýÊž³x‡M oZÂã ï Ï‚œT¨{á˜o–ã©?aë“F‘ß?@Ó2‚,"È h”ˆCcЫø†ÜÇ%¯—ÿÞçÿõÚíøÿ•ždü{¼Xã²L¿6f·ÏM<—ÿµ_cüßÊÿÜÈ“ ùšÿ5úøµ1»}nâY{þc¼ê4°vüW³ü½¶u;þoä9òç·Cýwü¬<ÿûþÚ®®|þëmyµÛóßy.jÿë2ô í_oÜÚÿ¹‘ç¢ö\“àÚõ>2÷ÿ[ÕÛûÿy´„/:Ã@wO·¿«çâùÿzŒ€­ÿÕ%ýŸÚíýß<8þ»þ!IõÞŽýßݳBþ³wkÆ¿WÛô²òÿ[[ùÿy”üÿÑ¡?Gg\-T_Š®­ˆ(:0s»®\qÌt.xm:”UµÙK›Ö[¨J¹ƒ–E® ýV«ß®vPùe[¦¤#J9¶”Œã9K°Õy‚-dAè£úJÐ'Ç[äo _kµÆÁ!‚íó›™Yæ›…½@ô£ ÖNj5T¼jù¤% u03˘Uþ46ü¦aȸµ0‚V æ~‚k@ †Œ[ cÐj BÂG¦ëƒñCAQ®õ}a÷lø++p_ax+rýÏŠù¿ƒóÿ2ÿ‡óÿ­þç<8O kñüq;¼~oÏ ý¯îŽÿúòø¯ßÞÿÜÈ£4=»R£»ÛÂÅ÷vø½2Cç}Ø.…L æ|ü§½ƒÇ?üðâÉãƒ?B‰:¥?E=ŸRÒ^æKÆ¥/8“¸ê@'Tw….§€9vtÞI@?¾zrð§½—˜S;¦´Tì¼4QEhAé½éhã?+8ž³‰°ŸØ˜€©÷! ûâž]ŒÃÁÁ¼´ƒÀ™¸Y³·Ý45{ó“i†è£pÎãtØØŸfIþóo^<ö‘*š„ÃÅl1–4Ï6ñ|N†i¸KMn«ÉêÐ6{ÑxŽ‚tàÛ÷ì½7Œ¶ÇÐá_:tNÞeSÝËP?,&á2—íj[–“Æ<쉷ÒO:³ƒ¯®ßwD/š »õCvOŒãaI .&yÚ‚tÝÅ í5;;éÑ!ò.ZD 'üQØ?@gå €0ÁãyѾ‹âݸ$îÆ¤Ây…½C‰¿‰?ê0˜S@p-•® }¬*ÔÈ(íEÓèÈ::ûc4(òç• Bº•˜HƒYpüžóÅŒŽv¬óü†¨É–ðÁ/µõmâa£8ü^û{}ù~žÆò®½µ<Ý\^¦½>©¬•˜×®ó𯼖Áüêeåu5/P» ó…“ÎñÐ[ >3À¯în+ºr^çÂQÌë®ÖMó/–ÅìÇoö^¢cú‹ Ä4ªÈ„°“Ÿ`oo@çVLÜÏï¤Ù”]îš—BôÕë—Ïžw1¢œfQ9Ð`šìùó"´d÷òå>~ùòñ_/.–’,—êÏfþɧúâ›ï÷ž¼þÿÙ{ׯ&ޤaôùzü+A@²eù$±0{ â Ø¬1›ì‚2’Fö€¤É—žß~êÖ·™ž‘d“d÷}£Ý`i¦»º»ºººªººª¼U.“o6iÀ”jƒh|åšu Û› ¬ƒ,‡ ¦LBD»®‹kE‰× ½j={VEVX Þ;k(¸};`é]GÐWJ0—»¼¼å¡8*ïépUf…é |šÆcê0UùBÿ2Gá-NˆUqp‡¹5©›YÜôL:ð÷—,6Z‡Œž®…¨ Ã)앇ˆJhñŠB´†³PêaMs4–4ÙþZ³Öê>“™Õ0ó»=ß —Mñç˜þíüž3­žtþ̹Ÿ§3©!Û‰Î5;Q¶ :¿/IæŸuæ&Ó,g‘­E·¶¾Ø8%ëˆ]6û,ÿÈSèYöAæ÷’£Z??Úûùµ³T`D—£âMc±-cá ƒv84qLðpv“i»]˜`éšwèw᥈ŸBÐL•jמð*Öp$V#CZs‰3©L s¯Ÿ=w7Hº½?o‚¬x¸¯EˆŒk3°¢ªp4ÌTá±Ö¸V+@ÚË»¯^í¶ŽÄõOÃÁ lÿlä!Ñ¥ñépòL‹ˆPnˆCa¡ÑAÙ0:<ýA3r(7k¡ÌÃ{W ºy–™3F´ªORTóãtÀòýXt•ÏŸ³â{®LÍÆƒ¥ý²8®U—jÅêYMÑQð[ž‚´ÂF’ ûÑ1$ªü>í—ÒÔkSCh*´çªÐ®YÌ®¹$x ºv¸QPYÑ 3Y&$g/tžá^ˆÕI±Y×Èàž`0•*5HÆwç…W©:ºv€YS þ9Ѻ_3¦ÙØü‚å 8³§0ž-Øödd±}1Ú‘:×!M?Ôà#†ñù3[„†h`+Rd•IOÝÜÊÓEyÂ1DuMºéÃÐ2±¾õ 8b†ÅÐÌnW¿ DÍ!¤ã£·{Y»sL?Hñʵe|µ<ßÿùÕ^°?¹×E–ÚŽ&Ø&IžaZÌ[’N{½ø2À~ÑïdŸÆÃ°Ïð‚ÕUDÉN." ªi¿ [|˜"…è%ÇGcB/£´A•Ö„ÇðÓRJÑÃ!I‚HjÝW‘-fÅ@/5ΠPÙ7€Ô4¸Y›Hš£ñØ=+$‹5C¨9&!—BÂà ³òÜx+((½m:Äk°éâSíó\Š«Z8 Ï`}Wîïa&]½‘EtQË$Œ>™ $1°jæƒÅÂ^2ŽÂÎnJq=¸Tyù*íqìhªp+âVV®LEWØÊ¾¦—Ë–²‹üõ¦õ¸ ?š_–Ü¿^jÖt!w˜JÚM˜TjÖ(ˆ.åÉ—¬å k7°ç7f»¨y5¶'ã°3ql¬=Oû“xÔ¿Z„¤‘‚ð#Ý¢š¦õº}Ý.àp´5ô/‚¶çù"„¿<ág7öãJrPŸ9û.Ò™µFXD Õ¬ÐMøÝæßEH1¤ÌÕÛŠ¸¸vhS.¦!?XHä‚w†ƒ s‡g$G,Á :´Õ"Á,ü@N³Ñ †ÁcX[ÁpuU-•ìÁ+¥Õžö@7Lóò:v¡NÝ­I³Šn°ƒ"”çÖ NT!¬ÞÔM2é÷«ÎÚËl†&\Ô›S’¶çyùÉHku¦ã4>¿É‰¬Ñ¸pwãó¸;§•ÿÙ•^fé‘öÕX¯¹SS:tŠ“pš² ‰ÏR Ã8 ~ÆIÅ唥 aíF;áW8Laó§tó“‚ࣈ™'Ýÿ0"ð“AxÙšÔ Èá:ÄLcBëѸv-Â(î ù› ¬Ï7š5»ã3(ò˵çÐŒµ$}#Åå½ _¹Å[¾&#Üž@Ñn%#‚òôÕëÖáëÖ˽7oêæç‹£½Ýã½£º[`ïù"{ÿXúÒ´GB‘ØZlò{ÙHF… vL±[U@­ÒÌ«H×ê#®Š1ïEYù€d„\…½H•ùêèqsµÇ‹U“JP'Oý(_Q¨ƶ”c‚·Æ—oçäëITª¬.Þ”ŒÏ?ªèÓ××Þ? Göµ›ÓSžo±“ 'ÀF<ó6˦¸“•Éó•⺵Žå{gá9±åx¬A4œp¼ëbIf:(?¡3µ|Û×ó¸ÂD-ìâzÃ#}Õs  ûWbGMÑV…ÜŸZ—Ûæz~mkÉ|¦’ÅÍJ“D‰O‹£k–²æ gÃpe)ècÒÂ^Þ,÷£8m‘k^•ëײ†tõ¸DÝòÙ’ô°¸¾Ñ,¾,•‘ˆ d8!^·f¤W|¬ g÷†³Qà:fe¶`H[ äâ| EÊiBÔ¢´Q$[›6Üè£võôZÍͰ7ôÂvZìâµXCyOKÑÒ4½>;Öôvô5LÆIÛ$ÂHoFfÞ 2‹ÞÓßb>îé%æPG.wý%q3~N;š•œÝFéljdþ¬ Ñòu|úÃîÑ›ÖîË×?ìÍ•Ý'OŸí=ñÃþß|ùêàðõ?ŽÞ¿ýçO?ÿëßa»uNÏâûƒa2ú4N'Óó‹Ë«_1(Ðý¿ýîûŠFÉM‡xà|†Îæžì¾Ù{x¿µwðôðÙ^ëx÷É˽wï+ÁÆ ðÕlOVÖ*Í9 íüs÷åþ3€z|ô/´¬^>>O½g{V/6<À.àìaýúÿÍÿnÖƒµ5rqö¾Þ¢×xèõJ>€ŸîÃ࿇ðß·ðßwðß÷õàá:ü·AÅ×W¿/€÷ý÷T`§à5€Ð´ƒÍÄzm@Pq_Ãû (°%6 È”Ù€BPjŠm@¹M(·‰p Ü&”Û„r›¨áÝÕÏ7ñPjÀnØM» `·ì€ÝÂþØ-»`· Ü”Û‚r[Pî>”»åîC¹û8(wÊ݇r÷¡Ü}(wÊ=€r ö+\ýõ/‚üëß¿þõüKFk‡ŽÒN;¨%´þkߣ2¸›â> +‹ïSÎ'Wà>kÃê'ÉÇéèÝÆæw´q¬ÉÁcÝ ¾”ëX¾òþýz^œÅý(¨.”à"¥ÐX[aÙÑŠFŽVVäK°BÇ"°¹WG5çå—%¥èMìSj¥’Aìñ’1’Ÿƒ·!ê=1lÔó)~ÙúrQV®Ž:þ”±W¹##±ZÃèrR­r lï‰ »õà.ú[ÆÝNðXþwh^”uNŒÊ”¾:ôAr4UDs²ÅÃÂê|f„DEÝ«JVå»u¶cìû=ò²²e/ÂI™ §7(ò¤x%ËÙ½%oŒ:åEÕ0 H] ¸OÆ%ÑžO¨ÐJ=ÔƒQÆü[ðÍKTÀ£-¤RËvLÕ˜O&7:Mú¨f莲Q ZJ@wÒó ií¹6ñ…jÒö@û4M&x²¸œF#ø×anÉAzjY | ’†²È8ŒïWy–&,ÒH•®(w„ØME?„Nᓺ~ ûÇéëïºÈõa2³ÂcýÈËw4ÛÍ÷“‚~NÞÃÿ×ßßÃÿ×ßßÃÿ×ßóGw¾€fëgl²p -yïXŠyˆ®wz8®ÇƒDªgÜOÐÉ£–cs.|WGÄh¼¡ UçÌÍ¥E3&ÏÖô·µQom9ÀCi ±%(Œ&JãdŸ6þd½Gðãø¬8í ‡Ö¶ïÅóÝ—oöLrC•k„<Ì #¸¬ó ÂìæÙrbšñ_Òl矺Þ:€¢ƒð .(*CE™Åsã1™côÌÿ·­FgS¯>«¡ò^º’ÖeÝ«Ê`ÌnÖ•l7ê…Óþd;GŒ®5ÔràÖãüê½4›ouñv=à¦Á8¹¨Ôܸ<ijbs3v³É ?ÇæäâÕ»U°»wÃÁ¨ù~ýÑÝþþ<¾{ŠîÝ GI _ÞWî"^á[eÖÆ6Çe½b§Ø¢=SÊ qe‹?ºa8/g-<«­Æ­ÿ]¾W­ ö„a ªˆÂ++'ì—7›ãÚíúä{ɧˆ|ÿvÖ›AühN 7ˆWV ·° LÐ\Uý¬UËSm9UÄEì™a­ávÎNjs,_”EeC¨†j³ZU9ÝÆlãã-øÇÞ†üèÑNð]Ó}öFÌ~`Íæ€(z¯|8 ¶Mg³%ýCMÝ?)jÿ~®},ÿwIßAK•zòøqPÝø½ò—MÜ Ö/·z'ÙÖ•+ an!Ì{;÷š™×›üz3ózö–eÇ—¢àR_ocazïÞàÿhZ§» ­ÛbÕ­`9 [akÀÚÐé4 ñv2"*ÁpñWÁ}y’ôxhKš®–AØÎÆýDƒV‡"£U­¦ôôà"=‚¢¸³rmÚUíÎ-ûªèU7ŽÍšã«Ð%~ Øowg=SÁ]¦žŽr¯!ŠèJeH¾Ã>©D©í}‡ˆö’âë94àRÖ®ÎlÅ‚i‘:i³vµÄ·xØ´Ÿ|ÞñžPªN®åâ…3[6ɼƱ޷Æcz7ŽY®ÖÜaã!s_·þ<íþW Ìœ¼ØîçYîµ.œ—‹¨‚†õ[tE ¢ª¥¹Köd˵::½,¸Eañ“[þ›kkÁ~y-† R¬-‰½.꜂y1Þ¾'ð–R943Y«ã<[µvÈÖêcÓðXvA`1ø­5Œ.ªwI¬r¤µœµ“{¤æÅ-›»'%»ÊLoB.gÂÁ =×™šÉ¸ ‹­õöøùwòìÍ¿Žwn½Þ;zÙ:x±+qgÖ>ijp·dAó{µ«çŒ¥Î-Úôö@Ú;::±ÐÚ“®~Utf¶‹káÓËåÝŽÎsæ´°ÑÓ3Ñ>ƒ¦ìÚ¦;¥TÊìöØJˆ¤€¹‘ /AwŸ‹¿Ç¥ü}A‰Äˆny&»L8>1më÷סÇëÒÃh¯MÒ³Xzœeé7§ÐyèÓ&OEˆ¤\ˆY‘󲡊‘;H©ßÕg‹ny¶8–² (æ×ëüˆæ_Wµµ-¥£³î=ØÚËŽèð¯öß¼Ú=~úƒY[–f¢vT›È\oT¥E´ýyõ}[Ý·•ûŒ‡Áê×ÓðËuü,ZÈ´%ÞöbS¾{W&8ÌU+š>ÞÒº2¾”‰…ÖŒ‘¤°:·<–#™¬…$o1Áƒèèæ g­Åù½e<â<ÿLóØfª•Ÿ‚‹0 $çi—Žc¸^ìØÛ£·¯v¹µ ·ÃñUƒ—%z_K§mJ@9Žú˜"èM‡6⪳×ðýý;b ‹ ƒxˆQÛWx4G&ˆTŸtóñjœbxiÿ©7W(ò¿÷(«r'ÊÈ®h`É9Ê7Ƨæ¿gSÞu£ºVvê>gW(b vM°–y{±cgÔ*—®éPòûÃÍf³‰äϯªºdË…jQyjP•¶Ü27äöLé¸M\€“h0£!åŠFWDzKò ¶ñ ;h<õÞÃUÅj °ZeBgO»|Œ-©m˜µ É3vÇ-o&‚cw7Ë6Mã°ô’wæsóîéyIjzž ^:ÜÍðŠK;–8ß2ÊÜ_^œ'`”-öÏaö|U üª¨‹7ƒ)ýtcVÁ²/õ¹³Ñ+ó¢»vÜ®ühaÏ -NAàˆ‡ñŒ”EÒpŠnÚÀUò±8‡‘ïèÂ0+‰•+˦;¿±ç†ICªÂ>ô7ctæ3ÝL ÃÐCÓÿµãÇÑ,8~t-rhû¯Dh!,̹ ‹Ž¹ð|ÿ`ÿø_ùæ ²YÀvòp%Ýt±hšKík¡8ôÚš¤ÆysF mÂé$å¢ÇÁPiŸœÅé-ôߣ„†?ílm.E— ? Åð½ Ïã1z3ù²¦ÁË1ƒñz†ç¶~š?\<Çuü·¯å Õ—5îO¿n‰DF´€ÊXJ[“ÏÉk¯ Ö†f[¼/bÉT€©[¥™’ Ïlýšñ¨üZWÅ^¬RÛ‚ýƒcÔ1ç.v B‚@@ãšÛzcçÙǸ|‘|xž£²³°_èA]4IŸT­ºEabîÑ¿2t¨Ž =ÍϦô°0vðL¾”É4îõ2W]XÛØ ³Ú£íKa3Ljýå³ÙV?NŶÿ‰à€jØêÆc¼ºàoh4NN[œÀêF ¹pümAѯВ %ߎ¢yJQð¥«s¢Çe™ ±[roÕó4… \S`^0t•æ0•Üb´Ö³~Á?|íl˜CÀüC/V5t†$MÉ Ô0Œ£Pñ8T'ÃÂa`–ËhVˆð`U­E(Ç_E¾k E’–²Ò—9Š1¤úèÃP4…%é_J“mA•:L–˜ù‹Úž¡0.,|­Œ³2ÂRÿÕšÙe]Ú g†ò-¨pñŒh†¤“&-2“œ ëQË—‡ Lg¢¾d¶•yá`I "›·dÚÑ$ü#–iMÑ= Wý9Va? »Òã–tæÂ'ìÅ÷{¶ÕwÚA§Oø*Þ<•÷ˆU†š¾Û*¸‹%´µAj>›)Y§+Ú5…#iÂþÁ ¨~®b©+¸0Ç ,^2¶ºó"³·;ÙQ{Z©Þ°H$0åH¼e#Jâ{ï%57ÔuŽkv gQ†ûèeœæê×U¦¾’f&ƒÍç˜ùjÚ™À`y2pˆ'Ùód°úx2h]¼„2ì÷ëëÞ„¹ ƒd8gÁnx5_IP‹ÆsÂŒçl<:󼘻—WXR4ºå¥`9|œÄÔ‹ñúdw£Õ¨×U"% %^]„Wt9 § °0FºBoã~Ò ûþš`D4š¿=~Ú‚Ÿ¢à"Ä‹4ðît€âþÅYÜ9Of˜tô:ì6 :B8N‚Aøsm ø\$ã é¾M¢~? ®’) 'Ô¸jk‡]Ì«J©9âÃBL¨,gïH£¼õä °Ù÷GO÷ð1, RYB/Ž@§Mz¡¾d¤ 6½J'Ñ Õ=…ènöû¤ÝGŽ e_¾Ùÿ¹Ž :@i¤ÊNÇÁÅ·øb Áàª%=Î-PûÆÞñþ«½¯Ìš•:4Ië36«$Ÿ¤²J>ù•6&¿âé/ý S„VÊñ¿+|¤‚¬,øÎRw:‚2hÎ±Ï ¡–ÃðRt·Š q%cBê e2¨Ícò«‚¡Ø´ŽÎneFö%DiÏÃåÊ;E‡jB7Üã¦;¯ðÿ/^·Ÿ?·: R˜Àé`’ôz4!±©Ô*­Öj¹)[´”1„Ö¤h‡@Nét4¢kŸˆ±öÏ ž&`ý‘(@ˆb_ÅÑV¯Zòʇ,•®ùl2¥ÛkkѰqŒGQ7Éøt ­=ƒ©» ñð³•ôZÀ9ZQ}½ˆ¢·_„Ó4ml~›¶Âþ)è–“³ »“6¦˜©Ÿ$N¸ö¿a?E¿®&k)W{á§µ!Èéßn50DÕeÇQ:‘ƒ[”?0¬Ê8Ð6µº¾ÿþ3N¦§gÁæ†z¬ó˜˜Ð @ÁîN;‘}ÍƱšôVáÁ*ŽCÙ"Kpcñ¡`•q8<¬– þ¾¹Šèq.°žÕÇ÷œ›:x;Ä¡‰ÿQŒÖaaN8`‡o‚Ÿ Ì20YJu=ÀdÄœðº›t¦ÈUwâLºë¼›Žñ|¬Š½2„Šû:†¨®4¥,mõ¿ÑqÅèžB Ñ‚Áb««M‹~Ž7P&ˆ Ëjk#Šì¥í{ì'8îô,îᤦ eøf(¯È•ÞnÔƒÝÑ8îã÷ÍzÐhÔƒ¿‡ÃiƒÃ·ŒêçQ{¬Ÿmº¸/„ÕùUöHÆ!ñXdñãtWÞT˜¡>ïÐ;[zÁ¤ðxQ°Ô;®V7q×'ÀëÍ^ ñÉ*FOÖ‚ûõšûBM•¼[ 6qƒâ‡8ߪ¾Ro©äˆô zû-±ª`f xá¦3@Ò@l„í6l„„ûå!itÐOÖíŸðö»š6(î;j…–u<¬å!Ù7½ü窀ÿ8‰AûÝw³’Ó8`Ίï1£¦‹ØÀD ßaÒÌ.±‰y6¿Å$ë˜åaëþ—fÁägˆ>Oóª@? G-²o<6L¼€*Ïî7Á}r@—y«·>ÊËèRðÜD ²šâ(š0‘Oð‰œù;•N˜°5ñ®âÝ VÕå5tÓ"îo˜¸ ¸Éî;xuB—m¤Dì²Z„~®\ú¹réG½Ýzø-Köcj°™ HJúkÜÞ³&¥í×ÿyGéÙÚ†2Q§êŽ)`"äO‰=³#¸¢ù y,HЮ»“Eì’]°u ³è¾£€bi„ޱQ_¿¼¶³ïs—Á<·ÀÂÜÉNoà+×ΕS—´d’ÄOî’„%sCåDÄDú§Šìýú=\$·â4…ˆ^ä¢fOÇDÅ-9x_ù&}_ý0â •ì_ɱ‡äe¥˜ò³ððÌîÅ›1í¾þÜAOJÒÈ º†¥h/ÆfÍÆuõG½iÿ–%´€âÖMPGû8„o¢ô-é¤PO—âŸ'ýsN‡ÏB®lƒÔ˜P6Ö* ×âEÄK@ÊyÓL’¨KQ‚6$Ô }ÊoâGŠj˜Ù¤¼gÔyÏ¥Ñ1(ua7Á‹ðœ†ãvx© Wv«µûúõ˽VËBìîhÔH%„h»(•”úƒê4Fmó<‚¡£[¨}ؘR:u †ÖŽài Áœ!]M¤#Äö$™)¦Q56ãŠÔYDh8É8©4.LÊ+ò`8L/Èß0ä¾…S H@à ?ãcñ%\Åê Œ•rÕAÖ¬ÀæÈz/LTÅAÕQä‰aYa€1ïÂ>ZH•…dhÆÏ¸?í°gQ)ùP°' “Ö7SzøÍôLd Ó¡Q¤¦‘lµà®èGöV}×hšzlز®d~DûÅ-ÙånB¹'vô¾äkÞ4bm(_¥gD"ß cÉh+³»`³+Q}>×öþ@|Ìv¢&‹¬™ ȤÔdÝqð ÂþEç©þ…~¡ $ Ô„ј·û_Â_î©ýÅ(‡cí^{MÓ=˜u¹à|6XkDÞ‡‡*ÒSqŠQ?œ s\aMn»ãCÔŒŸïï½|VÅftÁ˛ڂà=ao÷úÞ× Iùý}¨Õ1F4ÌŒ]#+L IP¨fN·ñðBÕ0Øû °fõÊŠ´3ç8¾Ì;p]câqîzûgpÅ£ð—Ê×Ðê zÚ¤>œoNU¦7€/òŽ+î,+yÇ! #ŽÓÖº#L⦵ʢ{AÅ^´ÆŠE ‘…èÍ¢h|¦[…0biå~Q‰4êp‰E%.T?"A•ø6ËWHSXÃ- YÈÛã§^öö7¼=Mp&=ª:Àdÿ¤’Z^‚µõìÍqƒA½Á:îbЊÓnŠ[(°ÔwË!†±¥ÍŒ§QjH'¹4iJüÊ"ŒÐb4aC “ÆtL–dI„ÝnŒû\ØÇ€ragÿ)b`gÉ(’ÉG`ýÜ5¡40¨_)™ôýaOWubw@–Á©=ŒûxX |"Œá¬¥LÉëÊš“ÌùäÇn;ÿy·WÜÍLR3FÛàHH¬lˆzQæ¸Ëzäu¦$1 ÚrJa5šUg$¯2²€õ€EŽjÚ¶ëjûïÝ9m»3:"ïdÅ@¥&€²ÑÊ·ÛÄæ5Æ:tŒºÞÓãª8©åTè¯Pn¹ŽƒP§lvóÐŒ´S3SÆ´%PK÷„ÑlX¼U{ÀFSϦÚ´ e¨l–OâÖ׸«­qõ.–Rºª7G×9Œàå5àbÀz‰wŠÍ¾"xÜų!´òF£µ‘D“´ &Ô¢'t!3å&`HÙU dqá•sÐãã™#«ŒÃÕ€MŽô«VS²Y°`Öµ êO$§ÿbbRú‹Š<êÈ Šqq:ž„8U:ìð§‡Ow_z¸%¼ÿ1nšúoà™º·_›mþ÷Óû\óÏ «ÿ&¢újìó¿Ÿš2Üs6å\‡"¹}s|ôÜwbÓ»Þ‰ÍNÑ œkawÊÂÐ ¸ûuzÙcR¤ 7?]ÊuC‡¨Ô Ô Æ‚˜á7ûÒügF’(‡rØDrd„©±)7òŠr-`8íi PѰ*5l C®ÎDFѤsð”?Öa722 Ý^)ÿ€ˆa"î9Ï—‚]S‘ÒfpÅã®9på£<Ê“UÕÉ8•Aõv0âqÐP H£9µOªbȈB³ï<+齃}üÜ£ŒãÝŒ…Øw.¢û`%Þ¾|5~2¹,ŽŒ¿XË X‹…î¯Ë_æ]›_‡ÉØTsNóbïÍáóg»ÿr/ 'sJUjE@_ðNçä\- ÛºRóy…V —™6e¹CüQ±ËÞyc‚wŠ:è€Cß§øƒ|õðÓX/˜¡ùÇSÞ§/ÞKÄéÏÝ[½ÖW8§@º¤U¡ôt÷åv r7@ï5’qF|±IjœÇUùâí:æ¿ZC…½Xb…•óÌ—ûO^µž=«R::%û­ÚQG÷­Ñd\뵂۷%—Jp›ÿn|©g!´Hö¼ÀöVvð¡ß÷@·Á;¾|²ˆ4PíÓ@·qÙÉî°ÓŸ÷¬ôãö qVq–ò󣽟_{»Sw9ªWèOEPÊDl×uøì¹·ú éöêx÷«W\ùå‹ÝW¯v[G^ýÓp0[ãzE}sùêŒúS CD+(ã6@8ÈiàOI)1Š’ƒ¨¥5†á Ãßòrµ‡‹ÒײÒV/f÷{PÞ>²@\VðgF) Œ­õ»dÌL#Öƒ’Šä¼SËvÕ“`Á¿å;¯Ý¼õ³¬qùŒ*™Ÿe+}äšø·¤«õ¸o²~_¶“œÓ&r^2> ¹"1Zf”Ò4?Ê&ÎÉÂ\Ó~RÒZ&<ŠÔµžÌ¨«žHMý»”(BoEBüÊ\Ý/†$˜þQºî8))HÔi߀¿¥û ߯ð—ò“Ü9©,-ßÅ{¦toŽÒZ—*úwÙ ù(øKÙ„¤$))i÷ÃîC!sK.¹%%e²º,±MTÕƒ9ê¢F©ëá–#Á~i*O4[ÓÊ>Ë?òz–}ùŠéj¸±qþøö4< ƒß,ËçmmÀâGJ Þ ¾è0&ü´s`Òª¼eÕ[~È;º<´'#:ƶÎÂ.É_X½T´HöRý­aRÀÂKF­”,HÕ'»O<>‚j_êº(È@RO ÛãpØ9«ÊÏ”Îñ$²7€õqêH>Ëš$2kÒŠ•¦ÓnÄ;˜Ùô‘µÚƒ©­yRTn;Hk`#îÉËç?ªò)G‘› &>i0¡\ÏXî“…‡Ó¢B¬©©óÏ]k#ŸfæOÄg•;‰¯wh=Ù{±PÔošˆ°ß¯VpÅhYL {ÏjŠL›>o y _e”šÊ§b”¬#è&Ó¯ûQL @€šÁwS.èúL€× Äzô ]£þ †Á‡O«D&ÚBD˜KP9Ž(Ó?Ðü“žUßíý•V)T‘®XUUü•©˜§ºž—Vž½}]‚?C‰ vZ„éÈ< £aw^À‹öÊR2³êËÃÝg€"Ó±’Š0áGÞTÒ3† ‡\ÓåF8€–àí+2bTÊQ‘çëçÑîÁ‹½º®¥(rÞÆ$PYlA²E%$T·ræâ{.ÐÑd«M'„zízpøºµÿ¦õt÷åËÖë7{oŸ²…:c‹å훿ƒØkƒq$öÅ«—¡~MWû”6wÖäMV–ìºöU3Œå`]`F—‚ä3š˜»‹ Õ…vsŒ{A… ÕAe;x_¡üÛæÙÚ:*õè†50%K—ÎxÞW>“ÞÒ¬ÛÎ3 TÃf»æmeó­”6ÓìøÚš§!Ÿy}˜³¯S£dK·Z¢ßÒf´¥Mèìžà£µÝ?oݲÐS Êoµ¢-ÞRs锿]!ˆÚm)r©+0ë€æøÎs3‘Y¾$—Z cÃÍ ¤^¬­»çÃåÜR=w¶Ÿº%cÓ57VÞSõˆ‹µ’ÜÙõ{9hcLE‡k©l"VB1T³–àHtZ;î°s!>m¡íŠ>*¤ÁÇ•:©+g#µ0b Kt ½¤|„IgüuޝªÐP=¸K¥õÉ¥.nå‡Xn·¡ºÅ±©JŸû6sz5:–„¶ì‘f²(MûÓñûW„JñqÆ¥]$–ƒ3¼šj¢CýpøjÏdæÀ—5¾‚‰QP³ô¯ƒÊ}ÜÁò4bJQ>§²Î ya¿ëÔ¤)u Î%3ñlÑé0þ4¶M•F :‡…œÔR-èù¢’¡‹¶3|ešåƒr)f%Ë »ÝmŽ(Ö¢-Lƒ;— ÑNûý& i~IÉnÔ'h:.ý;Š~ß«©Žµ@"•¥Jo›lŠ„òl’D¸ç0iŠªRÁ½ÕF3PáþPZu±Ey)¯ÜéÛkÛå úa;êw0Ùç j>Õß¹ ¾5êœ(”*kÆygd°ŽXuI Dh;A÷ èO£(S9ù.ƒßÛ¿ÚC Ôšèjë”j¢ÞÍ—Ò¥—ÞªÛtåo5ç]«›\ uè"¾›$-P.1¨3¬LJN&ÿ#´ó¼Ø†¯už<ç'_d=¡» ‚ôô[µ¹Awmü(IAÅ/¨ÃmSD5ÌDP!ˆ•š¬B&ZŠòwê,P&ÎÊÚÚÎo_¸arg—† ³f0²Lh½ØýSÁðeqv' ‹ðY€«ëM~X;‘Š7[õNÌ<]‹ÐîPáüä^~Æç5ûêÝød “!yªJ ,’/#®’øê U·î°‹K’w‰Ú5¼Œôx="D*f‡#øíàøðÙáv _htŒ0»r¶îêÆö ðÖ¥E³ÍËR'Ý=…Á|nظHÆÿæLPš(€]æ\«}–• ³÷˜"éÖªËí“hŒ«’¹›L>Ó[U—>Ó‹ |¶k W^Uå%óâ¤à9µm}ÀðÎá0’ª:Е¨­8Q¥Ãî¦çœpÔ`6Äôq'†t¸ žË´ó”—Ìnv5Ü•;U Ú)ý†¹°‡¯ Ê[õ ßÿ½Ð…ã,Üg 9'Æ „ÿ2”¨3жnï  ~ûÑÖïË[y§ìÿ·m8€8¦00^ŠÐ.ôJÁÁÕ+LÈ:Ãa¤/)O)µÖ¤ ˜*¸ÝGFÎ`ëª&¿o'I? ‡8òFâŽ{ÊɈT1r4Ŕ伿ÑÚ¯ù‰¼f.èiD%Q}é÷½=é÷UÞÃu™ÞÄ÷ª¡NØÇöû~¯y­?õƒi cQfçÑ~ævRšh%ãØïÒ>«vv,®+4ÛEjcºÞÙYW¢Ìn¯e1ó´*]–÷’xXé0'>Æ">:ë ·€ÆÎ‹W¥"ìkäM\\ÁŠ[Ö°ìŽÐYEoVÿÕÀ™!ÊEº¶† »5 ´†âH¥"2e¯N&Qápý*>âÛý¡ÏSøÄŠt×»Š9–…A¯jkVtn·Ží\bœi†Æ:MEŠ€D8v3PqpÛQ@—Uâs¢¾=³ýËÃmózuCɇ$õðÈEÒR> O(ÇiòÝÃõm·òÍ¿V¿¬~Ó=þæ‡ío^móæß•ÚgvlŠl™­Ù+®é6·m؆¸íBV’8æµGÍ€’Ô“2¤Gõã&/—ÚgdÈVµ;°þQ(Å¿"e‘‚2a’Ã/9©ËÔl2«@ÊâÝFŠ;Ò!^gT»E¢™g E_6N„µî…eu*„ŒÞJP!ÚÑ“q¿åÍÂÐ °ÝÉlt"+ªY®ƒH]ñ&xÔ@nŽFÔꡯ GxQa,­m»„šÖŒ\ R<%¹úÄ(|¬>©= 5²€Ÿaò˜†´ÿ%…7ŒËƒ’Äú:þ¬¹½¹Î,Ùuo2Q6œ›ÏUÚͦ v´!L É©fž*°IÃÏ|¸§'é³¥|È®B}zç™G5G'R7g˜Á8›K·—nû=Ɉ‡ñ‰%Éb]6ƒA,CˆÂÅÛ™v@KýÃ×6Ëlø\ú6 ª0N¼õS«dʪlÛý+uUE¨ï‚Ë´³&eÈQ¨ùhžqBî}øn}ûÎð$¨ëjïî ·O¨®Á¨¼#xò½AEx¨t…-]Û0ÉaÔàšü^Æ^,Š8ÃK;ì|¼À(£h‡¯C¹+ëÞÁiƒ}î4Õê_ ­‚*w0Abê°;8¶ øª š=†Q:GiÆß)¦*tdÄ`ÑŠÔHz½4šÔù/ŠBO¸ú:æy€eøîŽ"~!¨Ødºº“¾C|»ë 8 š™¡Àìq‰\ªÑGDa(¥G®‹¡w¼'šS46Uë 0Ǥ']vè¦Lž*À²$Ü(æh²O{0msK)-4žÊôÓø®1¦âž­bqk\X›9ÖyU}Hcži鯥­H¯*Ò­m)¯ï1ÖþjÜW˘.,ÍB÷q팅lDR,õÃøÆãÞæÑ9ìá÷›MШ¼9‘›£V#ë[¤Ë5Q”ño(«V‚”“¬ƒ€J9Q¦œË¬¼S˜†Aru›ÁijÕ&ÃÕ!¦!ê €3rY>5ۨ ¬%v’ç®à…23X”Řg­f¨[;ÑoÊÈÌ!5"¯_' H6yF€Åá».=af‰SÿúôYD£bóŠT­š@´Î¯*Ñ/ uûÄÁ'îÕHt§©H©8C–©Ê´È$Žß¸ ¯òì&nÆ<’ÓTÖ“)ÑÃ§Ü ®Ý U‚R‡ÈçÑT!všeMΪ¨ †‚6ýQDŽÔð.Ä“)Ù“4)UND1 ´[d'¡«V`Zã£"ÏbË/@”W´mà´¸[TféöWúàQ\ÛªËz ~i_ýÀò£”‘ u¦[sD› àq:š$ð§}e­Ç1t”ÐTÑE—*ÖÈ6¯éWÕ+V«ëAµÚXAøŸl-gñD h_¹kwH,F_¥&Ñš^@‹÷ˆˆ¬•è8a£åš6_òñÆì'S 9¤b<bèµA vËš±r¨h-wBIÕø¥:5œÄ}i¿öèea{ ¼Šµ>sÑšÝ=;È ? ›HÔ"}h,.GêÂkä…÷Ì—1Jj¬n4ùw­Ôôü9–\ÇøºXg)=¯žÂò T_Õª4}š@˧È$6ôyÞ)ÌÖµ•q Öuú{š=”ñ‡RXô©5>&¥Êöˆg 0ÄS1ì s†Ì/¤"Z‰+¿6騳eÚ¡¶Õ`Ô-lyp$Û|ž£;»Mg4'v訄wQ “A[L¦ÛjåvC9…Ñ„¨bk#@¹øÝí6\æ¿WNÁww.Qö‘§Fg¶ªUÕ™>Ã1{93Ÿ!nxøÂìå6\§(™Ž0™T¨Í^ÂÓS¾21Ž/ëÁ§iÜùØ¿"Ÿ\¤¤ ŒÂnWå¾$2gLÄ€¯)¨œB—2aÎYèÍô*ÖCt“²>ÈT ØLê#:[ô¥£x%6àùå%# ¾Ð{™(àë’%&(Ãçz!d¼$£c¦ì[F‰­r,ŠÆ'ïî|@}$¼ÚÒÿcíÒê@±ziô«KèË%nÂxª«Í‡ ¡ÆÝÈ[NI°vaPzAM”ÄÚ|R‹ûmUq½©Ðc‹™aL"õXñ,õKƒN·a^®Ì–$þîP36GK¶s¥k«¡yâ; <öÛÀ?§í«{˜©ãbØ ¡Ì*çE÷î°3Á”W»(`ÿ›ÕJÊTuùÀ&íÄqKUÄQˆx-§ÖØ™‡ 6ÔŽ´|o—·6G´±äo·sÓQA×BJàQÔ5®æïØ÷ßf:¶±¹©z¶ZÖ3èÚÒìQÅX_ñ$ŽRY-S@Å$j±ê_å?–r8Ä/<*ø¬LŸõÚMÅlEN1Ÿ‰HÙ+”³2E.œ mù-UÙ ¥#1õAm\±Å鉯ÞaŸêdR®›¯'Æ=ž Û½²Ø©U·ñnóþÙ:U¯¯ëÚ7”@æ£`ÓrAnhjN‚Ï?eÇÏn?Û6;“Êþ& ¬Ÿž »(úׯ‰¹‡fcõ;pl9]7[Dníþ~6;Øi!†•KÁfÖ§ >Ϥñ«l]ªªÌà ÓÎo¬{mÓpùtŠ¿Ëá•zÑïÓ·/ÂÛCŽa“ÒÄè~¡a ¼#×üz™OŽì„ÞÔÕÆ¨wîÛ˜¾ú×—ÔÇÀ dÕá- QŠêÌ/è ôKÃTÁ[Ä”8M®÷”ùT²üñ¯±:-暎?{Á¡7úŽ‚ ~^­Þæ ¬¸ä Œ¢ *~¢>:}Vï`”ïð‰y­Æ¿ f©À®Ñ‘¯¢G™4"ÚÏ; k¥¡èõ¶>»$-~BÙ"áøc$Êô»w4„“-—"ÃÛMÓ)ñ;¬Æ¬J² ¥Š\Öæ,°•’Þ/ݖ☄V²2JBÃØý•ª\Ïè&‘:%]D#Úª«èÛ_Ö@©£\Uñ%ÖåŠxiõ:Jƒ'—ÆÉdvÎV î2÷·Á(ÓhÌi­2£áœ‹*syD$BrT<ƒÎuB[,E‰éYêUyhJ­È ¡«ÊIÊZÝ+B1rà™k¨Úº8Vñ«GÖ@ ­åÕMYÈY¹ gŸÙ¤²°mïø®8± ÉYy"EÁ|÷'"¢ä´ŒGî£1®'.m*”h–VC,ïÖë2¸UPY9(ó&«wÜùÇ‹3N+(Å k[±J%)Njà~nq#j°†ãr$}ùTñk…ú€YÍ7ò°Ãûb_p TûÖ$|Ãk} ͺ¶J!sãwäåÀ“¥Ç°‰c@ 5ž>øÈ;íÐLŽˆ »´Â}˜¸­‚ô@Q½y¤:£  pØ( 3¨„Õj¾ú¨NK{\rµ ä0ƒ0$e*VºcO¨þÜ–üî‘o-;š>N#å$; üUšNKš¦Î#×ȾÐ}{è¦>ÐâÅCŒï6åž½B×ê„zìr‚&— ‰|ÂA½Å°˜¸ X8¡‹Í&aÿ#zsfOlÇHñT±eÑm¼.¬±Ueîü ¦Þ G#›.eÿökd1ÚV Çë¹IR±Ô°Š£_™…Ž7ÿx¹§gA2bóP —ئáî<Ûû¹ªÎ¼âî%ÆkÓðeH"ñÒÑFrAöZáÞáïϪŠÚíTWoåÎÙ)¨3fòÈoá‰ÃÝ2Ý‘äȦŸrѿ™î‹Ûý»F=À·ïÔËåVkUôŽ_‹ú3!4É!i>`ðTVï¦ÆÄSe ‘í•Öp¶ÉýA|ÙÅ““µ}`‡ð(㙩] k¦‘q‡ºª%xð™¿Ø?ûªÆïò±ïÿ¨»\¯ÜFùýŸÍõûÙû?ÞÿëþÏñÑ—ö¥“nœ4Î/¹†“ܳ~ÜÆg3¯bŒýO÷×ÖøðE `úžáÁáÁ¦iÚÐOž¼9Þ=8Æ[È?ì¾i©ßõ`S—ùçîÑþî“—{AU éŸUµ'ÀV1ÍD=ØÒÕ^¼<|²ûRWÒ-éJ…`øAæRt=¸oîKí<ýA×¢_vŸ>{ðÔ´L¿JûúÖ©ðÖ[af¯ží=ß?Ø?Þ?< HnI_ûë¦Ã/ß¼=Úkí=oí¿z5gýMýðu•£³Å<|Ö¼íÃaÙìöû/uÄõd„ÖêFigøh0÷(Í`—2xɶ÷y¡«ÄžWÝ UˆÊíýƒî¾ÜV¡TcòjfiFËî³vTåßðØä†©Âú«%#^ý~¼}Õ:|ýôðÙÞ›L"•»>¼$£+=‹[¾x¤:#/Ñ5^Yå-–µ(ççÂ뇭 Ç5Áˆ:B‡Ò%s£]VEWsáA½@Q€ˆíïÿÀT"öããÝý—-y§F/ ­ì¨> ~°lfX¨¶LÈ‘ó æÞŠˆa² 'õlÈ¿å Ý1#uTØÉ A‰ÕÇXÚQ= 8éU+ß,ct»¢¢„PÓ¥Õv§®€(=êH1åýPU„ö`´Å³’‡ò%;ìôjÐNú-rÊ’-:þÛ¿Ž÷Иd€³yLÂŽ¡—L¼x4F£†ÓáÊÍ€í¿ÐR'Á„_/}ù¿¹´$ÛúìÌjiec®fløYûðN°Y7µ‘x'¸o= ðNðõ ½;Á– à­<|¨ªgìªèùgQÖ^¼´Iu0ÁáñÞ6æ#ÂÎdJ^G#tH(jjN««è•›FÓn² ?QPà‹‰£¨‡}ß³pØíÓÕÍ^ð 9-‡´m·~ÚùìéîÑ3DÄúýï(‘K±é1¨™Fͳҭ,‰ÆH² ý‚žˆ†ƒ‡«íx‚‘º&©cGÔa9v>¶pŠù¹ãÞÀêJ~EBJ¯væ©CÓy £7€zMá´ýW—Ý$8Æ6—Qá zð'7#JØR³ÅÙ!£5ÜeóÕD|v€gÉÖ P~|iIArh£Û6ù±ÆÃí%¢è2êL'Q£ «Ó^Ž@Œ‰ÆüV{¤·òC^™ExeŒ"ðZãÙU9ƒõKÌœKÝC£v jœbkÕ„1d¡Ó A™Þ$¯–¨šHrsx >XIϼ38ví "¬¬¼Ç¶«Ü4¸=õe¢áþii‰ç¨Ð4걉Šy Kÿ¢6þæ¼bð_á=ÿc?–ü§ò×n£TþÛÀøŸ¹ø¿›ÿÿ!%ÿµ^¼m½9|{ôtOófëòJ iÐŽLÞ %r€t×S3¦d}P±/ò'0Ï`߇ÇÎ3;¦ð,¿I9PìŒ`'~ŒÆì ° ø˜|ýз6êÆè˜:Žðv&ðç³}>| 8€]J·”(¬BôiŠ—®a1>bˈWÓ¾°ƒßé)“˜ÏdD½†_vOÉ _=7+NUdа(š°ë)º°Ÿ©³ùLÞ–ÕÇ2ç¾WÌ÷àÍÛƒ:h½<|º‹:µ¼^©z#gÒqÎ?‡0i+‚¼WŠ!gD1ùaÔ<ÏeÚ$n:Æq'‰‘õÒœ/»6šžÚ̃!e%‡â°—4Ô¤,œaÕlœðZ#¤ÐתƒÉ´ƒ~jq=þb!¶m÷â´…×­ú‘›ËV•ns6:ž©¯;;ðoc¹I›ˆ÷ÄIøQ€-+hä£ÈPÖkª¦@½T!k(Ô‚ K~º+! hU¢iW#«Ž‚ÃÒ¥³Äh’˜©=½ª7wøRÏKõÀÁ©Þè±2B›ž~gÇÊÃçåÓ|ŸùU$oîÞÕ']¦ÞuñU¡ËÃúôÖZ¢ÐÛ¦ylV¦¢~ŽVí;‡aÒ2hb6¥Çõúú z¤z>j¬Z4¸Î4É3¶C'£Nã&1h†óJ&§¼P»!ò¥V›¹«Lø¹d‚³ÚTù’µ YÚ"f!ý±„E¸+C7ÌÕ„yÚLƒ{ûrïÕÞñ®™b[ßÎinÙÌDq*¤á˱]âV~PYHɈbO×gÌêÍgÒêÁNð¿YG—ÿÀ¹¾æ¼®­O¡bhsîþ½4Љ„kìôÑ—ûONbs‘!¡jK „®,‰…ÐWE[{9ñß5ü¶žÚ>°®¬@Ç*hvD€«ÁFÿ–ÅD[ëÊ (ÂZãlW^ïí¾¶†­¬dÌ=â~ã ®ƒ–{ ´¸cÃè „‰õ´a‹Y„Ò‹ƒéɺ’‡Ý¨Nû“m5\²‹TÞ?“‹¡6‰SЊJ­ÉÑhä| ƒ×¹ó³AØò_Õ%9æ#îQJÂQÞ5à±òËÞ’ Í‘茮ª\ÝîTþõŠêðÉímu#W¨MÇŒ¹ÖÑ4,_‡æyÝ ,ƒ€(ndX¾rò2ï'¾9³ëÔ46dR4¾&|•J£ÍóÖ¤“$Zbœ{ YBŠƒyéÓOæÓÁѬsaÓ#r*LÅŸ¾OO1T&ìTCìæzßu“@rÙà ]áf¬iÓÜæÎ4Ñ1MßÏDã ’¹S¢Ø 4@.j?EA7Á„J妸‹A;ê„dúB½¾i«ÇÔ )l(q Ç(Åà^Ìö'±8?òNO^Tô £e†á]5ë"*â¡*‰nÀÚ%³‹pªÝÓ8ôÉ ÷RþU£xð¬TäY ñçolÜ$ô¨›srãWÓ¡÷¥æ®c˜PæÖÇhDG~õ@}kÍ@qÌÆÙ ªŠ—/«»Zm6‚œ9zÉÒ {³ÏmaþÝK– +E#Û”=PMÏ%Ý<äÖÉ¥‹ÈÀû â¡qŠü\­Ê 83ØôZ3ê4 ™á”” VT`BTÚÖdÖøh¨ÓþàÔXC6ôˆžu®Ï?m_,áÛç©Þ1 ¹™1™ÙÔš–F¸~X@u_–G.U ‹H½’HwLgwù…hã4…Þp•`[øx¯˜6Çäá*¦m tä]Ø›ZÖZ~|øz‘UAf•<âPÙοb$°;ãÁ+¡©RŠÌÒ¡ÃùNväȲ´Ü¶d­9º³‹;¤au-CljnhÂníÈÆVN¸Y9¾*8•î)ݲEfPLÞYJª5ñÓ¦»D,(+j#ÔVç”xk~zÅÕ-ªÒ£F¼È3«挆ìƒùx`W3¢v½µÍ÷Nmsn›C‰:$•7uíËC0\ï${Úw5ÔÃÆÆ'æ¬aYˆÃbAaÁú²ƒ6åCÁqçÕßžO¤Õìvž â ;Î¥Sû) âv* º’rvJ€A·Ô¢ ü7€aÆJ—a‰äìoÛ1ñ‰èücÿÍÐCß¹NuáËÖS7ÞiÏÒnª·²ÃÖPÑõžÖ½šÍor8Aç :ÞKí I½Ác£­}c0#U~h‹ÕÁhøÕš‡çX“Š^mv8xn2ëQ2HºSí[>ˆ&a7œ„Ù+Ú-Ç9ýõ90ÚnmšZï¶w\Ö¡1§ÜúŸü}ïé1ï»ù&\∨f–å‰!”’Kvblzá'JKr]ÁñWaK6}mä÷¬¦§zf%=š%ÊKѼÝÉ­Á¦ÐG°Lôa5íÇ‹Áó ŸFU/?¸ÞФ¶3¸UÇç²çBÂ5}gÔ9¢ww×PÄE{LY§käæ^ ñ¸4´Žö^¼}¹{ä\í ©Æ)¦˜ºìå8Ltb79Ç¡³ƒ}˜`Ä=Æ­>LË å–X›Af·M·ÖÍ3–Ë=7ûhÖmG¯[Ä‘±Ö×Ñ£nþžx&’›¨ ”¿2GHŽUÆWÒ;»âêékäúÀý@ûá Ý sŸO¯ÊÿË…+uÇÝ4«Tjâ*ZOè’½1”í8Fê.9· ô³±´`NÄÝSÚ´¶WÅ×h¡–³\Škè³·¯A9ËS™†ž; æö¹8ÚL,”õdq+õÈí„}»¤£û‘ós5Ý}óöÉÞϯ[Oö^ìÀÔ„YOWy¿w𬖲v29+uÔü0ŒÌLÙîóûêµ¥þÃjü˜-X}~xôc`X%;Z Å:Ô_,¡Tá¬<¿ëäÝB-£-I„ ~Lùk´O‘ÚÏ å N’¼dO?òS%'ѳóì3Kã@6ŽMÍuá/=Fósi—9ßGP‚Ì%Hëx[{YÚ´`;?è “"^æ_)êZOþýL6‹èÌ®e¦a]oV–?™k.Éà„ÏÂŒý¯£+¿0%\—ÏÇùMç£OÿÇMÒùן$Óyƒ1qÖŸ»“œ­9~ttÅ7ÇGxd1× ©ã•µ6Ç?‚<ûP»Ê-ÕböÊx"5Õï™ßçöNâ^½µ÷Åœ­Xr9û ïMI-Ý0V¶Èeù*ÅÔ –1Ä >¤Ð„ý¾¾ˆdB'iÐO’)§WÆr+•ºëëë߸IÀ·ÍoÕ³ ýlK?ÛRÏ6¾×ÏÈ:ØÐO¾ p[šæÙ÷RjS=ÙÜÐ¥èg[RJ·¸ù@—Ò-n~+¥î[ƒ8> '÷Òíà`ua!ª4êðª¥q$dÀíhrq¾e<£_q©‡*Ò€" /ãaŸz½Kçrç1Ÿs"ÈzÀ€ð€.äðCvÔ»†Õá0Õ&zîhg8:øQl@€×$P;º ñšÓ§Ž\î0 “S5UC4IØ#¢O…$ïê8>=j˜ÜÁ5Ù°’Ü›Ãr-_†!;¸›]=ÌØoºYãp ‹àû¾µïÃ9¼Ë¼P|Œ°bû$ó®„âSÌEÔÇîùƒ­æO‡òx½4Ú;ž#©:Ñ2¤½U¸·xggJ” ;¬î®î­$G¶äeoVæ÷:ùxg 3x›Ðœ›¤ ʘµŸqT¨@M¼~˜Á·®V6å;;ŠÌWL2 ÷pñP¶—%³U„™;{þ 6Ãï÷}B´Hîf;QßÞ t×èðʼp ›ŽíÒ*e)b䜇c£O˜Ë˜ì`XÇ qÔÕŠW³Èësu'Žƒâ¨.©ÖjV&aÜÏc%u÷õk—ìj™%Ü.<Ù}úãñüSãfu®“áS£°OùÆ빇X´&iòŸö0<"YMÈ#%R×/åWÞ,†÷Â!î>t¡Ær¾3U¨°rV¡è]â{š.YѶrn@Ü’ÔٔɓÒFÃj‘2£…ý³è1® …5E/`hcØÖ8y2FW½M/å¬vtö~a6 ñÕ²«~t@6ƒ[–7±vXÀ´f;By\ ™œ\„óýVô×’±w#Þ”9r.3ŠÌ>äŒíbex™éå5oGèn¤d_\çÆÕœK´<*”½Å¼ƒD¦‘ÿ3xÇxMí)FaY¥m)^jù-Î× ÄƒÈìU ‚þ×bê†ÚìÎâá4ʪsFæ¶{cª¾ðû—œÌ2°ãy9Þ±–Ë͈¨P¨#ý¨(¯7æÈ¯hOá5{„YðjÏ0ŽÊûèŒ|$—tÚé»ëMûl瀻¤ó+Ú’l.ÏyTψÈëAfšNdùp¶iàÜVsf™¦cÝOR)&íù?'(²H;Û«L³u«‘šóÃôô'ÂUÛ¹ˆ'gæfQºëõã븪ýdªv¯{˜j‚ŠP$\â5f„4sì¤ê Öв§Ñ¾,t0J9@2Šª ×gÑ’£ 8¬K/; ‘>v–=ÑíaÚQn9þOû ¸²;œ-Úø@$Ÿ©€qK¶þÕOèPº@;(ZîÒKÿËâ-\ Ç_Ïùxô8¥ÉHÈHÂøÜ¥FîT£³8 Oy,= ôò_šèìCéÂ\š'Îk,>OÉÔÃÍ:aÈF´ ±NGÝp¢ ŠJgSo2Œ¦“`žcK ¡=“Ô¥£_ÖY Ñ ƒhÃft. Ô‰Ú<ì@çÛ×X+Ü .7CWU îjJ‘AHªd=¸Âƒ-¹”Œ4*(úU–)æ JB–]¿4;v¼ñYŸ’…®gz¥N³Åô…êº gnB«‹´˜¢°Œ(pZ¤)ãÙŠ7Wºgæ–ÒJº4Œ.¼—÷]s”å^ÞæVñìT^¨A€Ò…𒆓ˆÆ±ýç3BgS3qÖ§ñÚtº :3ÑaÉe,¶± ±˜‹Ê9ÔŸFÑHÇö»Eп¶¶HÕýa'ÆÄÚ˜ö¬®'EO´é-Ô×°ók0ÓF5ɘ-” ážRl  ,ø£x9Jî\Œ›LHímÔæ®ÅX³£ïÉvTfí.ïôG/Îâ"ó úã•ôGÖÚDN!17Jð‹ ñ—{iå£à ]D”¹ˆÑòLÊ^úŠ’ÈÕU¡ÝLÌÂW& MLÅ„_*¶e›¸ºšM¾ï0?ŠiœÌZ§ ÞçH8É*‰ˆa# Äl EÎÞ’Œ ¾ u”ƒzd ÜÞ ÈÚ¢9±]Ì”0±†EªHnóŸÊ(ÿëºiN+í°téaÝšˆàÙ×EœF*‘]ÐÖMëb¦Ç¹‰1õøÌgÔp% »ëå•,-½õÜUQ5ÃÌæÑ^vº­q:_áiH©Jd¾z­a2a(C××´‚¶æz0'¨¢¼?íOl˜ àâüÊ%±iÏ(ž“9fN‰ZäÌÍsbçå¢>Îhá3ßv8„" …@j'o|/T»ÞÓÁš'ã ÔQ;õÕ0;à^’OF:ÔA“Î[;ù#•Ž} O7a «õ||pô<Vu2?ü¥lÃN£Ž—S·=‡Z{LÏê±%Õ:vÔ·.¥¤vT½B=7Ë«V×Í+™î†: ‰‡ƒ‡œÓMV½€² aþzð„¾RçɳBÆd¾ÏaX( X ¾ª%œ(óiÏW,Óæ‚ b&\w+š «pÌE³Z¶#‡UÁN3‡%ûûΦ—)_QÿÅÄ‘›L˃ö÷ 1ÇSò2Èçoɲ}â[pIÏ=ü#éÔÜÄ‘Yl«ì–š}ňŸ¢ú‹”ž·4[þKÒªT»àˆc¡{/Ÿ°#‹ë¬ÒzÚhH—âÍ…€a7ºT¾Jîݬ$h¨”r ³Üža]þ‚Å~e!•q¨L‹ Â¨»3u><'·×1‡[AÑβ⧂'qÇÉ4UYΨ#TI"°õÌ®ÜYñ±}ûÔísMê,C¢3eª•ºÉcõl¯›xAŸ4AÛ7Xš³êØ5MΜ¢þxÜÌeZ7‚ŠÙR ²I?üI»–ì™?M¢ÔVÄ”Ÿ[Tiª©™X|waJ1’=eBõÃÎ\û­u£)s|Š­R >Æ›tÿlïçÇqª~r;ܼtV½jÍêY¤Ï²\½½ÉvY"vñR›µÌòÝEV'vDËz/u»xžN´NÒ5k-9‡ƒ& F^An ˆ‚ôÁ‘È„6‘HV&5ý+'3€' u’'@3ŽØ}²‡ÍO­‰’øÖ*XÌæPT)§ éÒ*Ù*Z>}tö1AêkÂL¾Ä{Ù}!M98Tð y£¡è"îw;!pZÙ6ÌÁAîb½éÆU¼|ö3Ë!²ts+‘M¼^€|i59§àTµ o×(6…jÎÌ!æòm `ï¤û¹Ó\R¦Òˆ®-€k,‹‘Éø TÞa·¯¹üÒäÓx‚#ôw£Œ “$8‹»QðáÓ= Š4ÜW^oKYìn÷ ªu5Švv*Ìb+¤ž5Z­Ÿ<ƒRÚ¾L[iEŸ¦a¿2—ÄjÐ ×{-C,~Ì!®g:f•ãå râíbb¾ÎX·ç*›Ýqümà$‘EóøKÁ¤ðdP‘Š{i¾$±Õvž½Ü;BñÀXQ\ž4û½Zœ.uÊ=ž×bnK“AD)‘é’߯ èêJëðõqð6>6ϰQc#Ç|ËÄú)^¾­§ö2]pÞ%X Í°õóýŸ_íåWÇÄ5WqMËóÅÇ3ìúîBE÷,aŸv” ŒßI>ڲǀdLii€æ‘ªÙ¶Í¶n\D‘yWv¼Ró]>äõ`Ë{ø1;Hîà…N.몄SkæjŒûv ìRà€ÄøòÉÛý—Çû>з¦P Öð8 CCÀ} ­=q'ž°Ó?¹PŒOY; –ךþþ•¯2m'ÁOfƒÌÖ/J[í4zË¡V+!¬w…¨¿K gçÞqºÅä¬Âå`^6Y³´¶“óhɀΠ$šÃz%¬´ŒÛ”µ,L€yÓÙ0üæÑEÞŠŒ·ô{ó«wø„Ó3èŸ|»6²VÜÕNXhzâjUö í5cåd—¹¡ÞÎFí×”}¥×>‡Ç) ,gÒ.;þ–ýØ"bʈÊ3ÊO Í\',È'ݵôV.3§Ìhõ—ÕNà¡ä&¾jÊ{ø7¿ÁH·TR=C‹ü/ÎçÊN`wL–™ÐOK'ä°ßj+Úd3Ír¡[;¶“M”Ý䌩f~½_¹W8YY3ºôÎŽåUÀæ*6,ÖKWJê1/g©Â_–üó] ]x™¥F³x¹eç¦n-oßÎ’2_ÈC“=6|ÚOÚ àA:¹ö·hᵨè5NfY(òM±F…é0—-›¾,A=Ô0¨V¡cqá<Ö/ŸÃG!OÖ’(kxJë[üÚxÏä=ÚOµù|I(ÑÖÓ‘i¿=øñà𧃰ÇÝãýߊVÞô*°ßtiKHMx6ÕNH£Ì˜–þEx9.GÎE*\v£öô4öòÁv·NZ3”Ĭ㤗%_í)×aÙÏÚM$©fG²jrzåìÆ‡þg9˜<Êëo ó¯ã ÈíÄJ‚us‚z{o«KY¼ËR RkFb¦Ÿš¼ÝEš+Åç$ÂË3ï†*³sàD•·ÅTP”¹'½2‡ùvvR’ó»:¬I¤rE;$½lê2ô×§ˆ Û“÷³T1·´Í%é‘+ös!‡edÑë*sRÃÚfsQ7Šƒò Ã-â/óÏg¶€3©Ü$N+ËöøÔJTÍ'ÓÎ?£ùT&«Wó³RcÙ^²–±®8šb¬ËêÜÔËLT)a"ÂkM‹%"½Ñ‰i`KŘTB,è :Ñù­K¼œÞù’/é®n(öw‹U»orN¿)jÄÇà¤üŠWF,MFJTåµñ9&R„ò¾²r¢{Ã$o* ªnä¤cQYgH*3Ëy4Cwt†²¬×_Þ§©Úå¿ør*ÀãË…V.¯ä2´›Öu@u3sÞ³(’3”ùÆþ·`÷èEë`ï'ylëìÎ_KR¦|çöA(šÞÌ0!ÚÇ åt ÖË´ic0ƒ‘ Ã4ôG‹=£Wé\ß”ÑS@+^C Ù’|ëÅËÃ'»/·Íµ)–:ðî|#“½òRCQ¼m‡™Ö,RòóXµ :ïM óü1g­€:ç&jíçÂ=»xŠ™@¶E¨Ÿã¥“óÛ$"Ë{oTvïÿD´ó¦ƒàË]3õœ“óäh÷àé ÜŽsï˜Wn¡ ÝžfÔyÌJ®;r¬.w×jø¾†ŽZ¤Æjn!ÄUVYÑÛDu…ä·ˆMüûÀ=ïB° ¯Ñá,™ìÐIÊU&‹d„!»@.Q'åJwfùJRbeQ ¶/².IÞ4E+Á¦9YØÈœCç£(пFãäoKN€Ç¶íìe™TMœ%°f§Z¡[F7€R›*#Çc’]D 4®lŽ…5«˜Y^9tÖZtͱ¦eÒ¡rIÌû¸Õ2à+§yÛš2C[×AÐf ùÆü£ª.x#%ÔʵË~n $²›A¶…k²èP†B£ºÜ5>oC”¬ª€vE,BéŽ \sªy+Ûˆ^¼LÎYFËÉTÓ‰£É Öñm'A‹ø­¨ð Õvo”)cQJÝ×e'=ûM©Öb‹UœËRd”1]äi{#EÿŸÿ3?>­n4®¥ãΚVãìk·±¾¾þðþýÿ~ûðý]ßäßøùvóÛûÁÆÖÖÇßn>¼ÿ`#Xßxð`ëÛÿ Ö¿vG|Ÿ)0÷1tå¢Ošºå X¯W‡Çè¿ÿ%åœûôðÕëý—{­–n³“ýDº>J']`F³ÇæYåÃyã¬býV|Á}*»>\²–ks R°ÖCy³”}ÇÜ€q¥›LÁô“òæ.}ábMç¾Ú­1Q©ú’Û4刲æTS¶'ô=T|©ißׇƒlâȦá\°ýÿÙ{ûþ6n\Qøü{ý)ﯩF‘I~I%éu§õnâäØNOÏÓæêŒ¤±-[Ö¨ɱ7Íýìð|™‘”¤íîóT»¥AAÀkF¡ßvIóBü®±¨+¯{!‚k1 _ÊÕ䔀Ôíp)Zkcª™qÒ’–tWǨÓÝÕç¼Ê ß+­¯!±âAÆZ¯JPA!‚9_üÂ6ÒÜ -ð<ªîÐ,Ìbß©NÚÎZ"{º¨ûÙÓCKdùæ•>)}5° wqP´ºH˜OØáÿª¼ÀAi/ƒ/ÏVNµ0¬[&ÈqÅ_Fug„¾dl뎣4Œ£G‰e‚šñ*ÑÀbΤZÐ&8™¤C]êR—ºvçܧ^pð\&Ôƒ÷RáM\"/Ža>ŒÂlôÆÀ– !?Èèƒç?Õº­F·Ýèn5ºÛîN£»Ûè>ht6÷^í7677ßÜŠ5|þËšàpº?îu÷޾?îvsýåþ²«¿ìè/ÛúË–þÒÖ_Z *‘×—Eÿì½óÿ>ÌþaDºý ›€Øv·[-Ïþ³Ûn5ÿ²ÿümÿÙÿiÿY÷ødOÎ7krr+,àXb–!x&ÿ˜À}  qQôdEÌ )CÈÂJÇ7e-WqÛnñ€E­´Å¦Ø‡œZ‡•UØ:w×ÕSã˜B†óá¤õºÊ®rsNAO· vo“ésÚ¦x•cÈ82Öe!³,f3ç^é=V¢—­©ôè~²kWÌ|f‰7to„z‹ÙÒUÄ™6Êßoè`N,ø?Íë5Ô=FÊbJî ‰[ÎÒÙðÓeg*x•Ÿž½}š¨ÈLv NT$xbS÷ à`bVšiv&õùM6œëhÓYW1NÕC…‰¬oz ˆ ”YÔ¤—Eɺ©b$M¹1ËÆ³ÑmذËJ룡ÔõJÛö¶p©!Fdd0½êÎPBr¼Y¹8‰G0èr|0 @£AUƒý<ÞŠÒp¦rÓj6¡hóæÅC!îm°Ï=õ¼)ÄoÀoô|?( ± ÝÉlÚ_0 þ¡*Ý4§#ª½ç%í=/iïÙÃ’çÍJ<Ú²E$Âg[µþÝCƒÃò;õvïaŒl=•M@VØQöš˜ýUÛŸpýñJÊ9)}†gc¼á ÆeÜÛ¢Cõ| nÌÈ,׃|Ü7èàéÿîvw&æ»Û¡bDÿì`Zãº=éˆbÞYûØYËÆó+ñaïåÁ÷‡¯öOÀ'”=„Œ ÒóDÖÕlT øº‹©x»óIÍ´ëÄc¬ÕŠBÐZÛâp÷…y’Hr˜xð¦-íÐS3C*âuMœºæIuüŸm@£ ÉÿJ øOïT™ŽóÇ¡5ņü¯‰Ñ7UT b5Žžœœêœpã)›3z¢ÙuŸknkòûL¬)G³’vÔ)ª"¡ ïỾ "^Ør6°Dåšg8oˆšØ0ßc£†ç°—45KF¢Gâ_ËR4–[iˆAG[Q¯7 6‡•ЇL÷Ï'†êÖØÒ0kX7©±ßoSÕi¢ `ùvîÊy`à$ª Y4ùy£õ®tÌ5ÿFšsçFt007°6jzø>~väuèè»à(Þ/:¼w[ñ„AÍCãž@1ÐÞÙ…ÙÞf|§!éÖ•„êuÍA®áµ‹`äÏ«ü:«¹€î‰š‡£ß/—S½á—íø3ÙoÍmÌ›æ!.|ExM“ Ö,e¤_W’=(åq‚6v’I<5íz1…å'r]ù´aꙫ›Lº¡óX=œL 1MàNsEšVRåV'ŽÛ×(ãjâàlEò²îß{âÐô£××ÿ¼ýÿ|–mö¿t•ûÿVs»õ`7ðÿØÞúkÿÿG|ìΜÔw·žM§ã<ØÔ§Ó³pó‹ìý#6‚Ûâ>xÊLÜUæ\RbA`Oíª(˜e®(å^,¿º¿c€ 7ül8vÎgÑ×Þp|IUµ:-£|­ ÜPñ¨ÕÇ9¬VúÜ µ$QG¡H_÷è!Љ»v¢Æ [¸*κý¸–Ê?ý6Àéüï°–£í³Kw‚ý0ÝSvŸË‚Ý]½±åLRO×ÔU:Z£åWŒ_ÜMg]ý õT<Ñï‚ÿµ~„~•]8܆ðe°ñèW ìÓQ—DÖ0Ón­«‚Ô¹aM¡ÓJ£=C>îðÍpÖÕw§4¤²PéY¦Ng³)^U”¤Äø@LýÅ’S?±5”'üyaýDþh7XÊ™¶Ì]·ƒ.~5ZgãëŽVª¨ ‹é ðÁ|£‡íbetaÆ4Ïã[s \1²Á#‘ Ñò”ä  Õ²Yh‹L·×å¾uzË» +ª¿ŠÜÚ"a§q…¦‚?*c{ÍÂ^O©åtª 58˵–0Ë]&›áðUA‘•çã÷àdIBÇâhÛ«Sð×L=Õ°‚f œÊðï0+~~‡»fëŒ-õbW¾m†@•A1‹…èp¶N®‹4VýJ_MôqýEÍu ¿Çä=}Û­+(ÊÐVó¤c]~s<u%¸FÈ7tw¥óTJ¡†€/VL%J¨é‘S&¤Pÿ¬ ÝŸ­Û°Œ‚G+vx=Ï ŸêKõ¾ï\]¦·< êÒªC`SÐK˜ì^ßœ­Íŵf?äRp8*ï:öÝs9¹7—v”àpg|¼ø£G„={,ë{ðédðN‹SŽMC áÝ&¸þ<Ôc„ªq2Xá5é—DX®Oút]Ǽ¡æ9çzUN›Îj$–àÌlÐw½ ˆ,Æf©çk“NóD’óŠO‡”­ ±Q™¡UR £'CZ^cà0u ÿzv.Øõoz“ª~˜í,Þ*Wq‹ãÿ»3©­Œ¦4cˆHh‰`å•Ð?è Nñ]El$ìG­Ãtá‚D5Ž:‚Âý* 0?G%q;®ôi@Cˆ0¹Aé*(°”Äœè+jê™6ÁF+=)§3|þ¨ï6™ºòqÁÒæ¢ø|ñÕ‘ÅQdì4“»¬Avª\ãøe.»œ½w‚_¬²eM‹$T±M©D¦œi¢bcH ó/žÓ€÷RE,¦·JZ«áëPg,E¤®µ"ñÄmÆVlÈYqTaI.ÃvŽl„¡¥‘‘Òuh,«¦¢ ]ã·eè`$y¼a-­#Á"­¸#Ë;ÞUÓÅ\³z¯W^Ïè­89Ÿ”+`j\"ÚQd…v•: BËåØYD©êÅ-ö¶%¬ìœ‚´æû£!¯½W÷W}\äR„xAÒú6Ð¥æa¬rF°C”ÆP$hoìRœÅº‡wtšíR2¾Ó^lhõýâZß6¬‹BÅ‚)Õ¥Uå„ÌÇ:Z¥%Ø‚8¡¬ Ÿzú¹º,qI3¢‡š è›â@5>Y• gݪFM5M!™Ð’Iå$$"Ú·DåÀÂüŸ¤rÀîPß…Ý$óçàƒ0þ—Í.ó?iŒ!Ÿ^¢³†·Šéu6@ƒ Ù;‘·î¶ãP¦³s8Zjø†«˜}ËÙ÷KܺjcïX€4!Šø5"8EÁÐ7P­å¯Z馚U€ñøàÝ•ky‹‰/Ð-O F¬Õäƒâ m3\,ÔtɆo«Ðƒì*3úi¿VÎ 9QêÂ¥|ç€ÚË2³'/ç¬Ñ=ï%\§'öOÖÔÒã„—ð  ¼Æìÿ±ûÈÚ¹wt´÷ßâÛÒà¦R¡gl;+2¡åw¼»–¡uO]§b.+‹'ƦNñÉfl’…Ë«.ç°¶cÄBºÉ/i®6Î&f‰ùÕëŠòÎXŽÖZŠÙt'´q‘:^ oT24¾hÕƒ°T€[þ&'vS]vqwxGñj’ÑGÈ6_º÷¨{µ*‚ºX¾£^éß‘@.úUÃv@UÂVÚ+´¢w mÜ"´XÈMè8~þœÄu|è<¤õó°ÍûuñBj¥§@mx#îú}¹Z¯uñP*^«â¿“U÷ ®‰¿â;¾01åïx«(çd×^ç'.3‡”Ôêƒ3®+'ßæ²mðnO",]ÊŸý|ÜOgŒ?©E“ªd)žÖÊSûy©“ò"mìjÒÀ§ÔÕõ€d*]ÙªšYãx°éÕ5<Û_¾ˆÄaú¤}Ÿ`ûRµ‡ô¦¦øãlÜØ$± K¤¤†AdüZB åÀ>5²F†+c\¿ˆ.ŽqÃWGMAý ™‹å¾ .ª 2[l6£a?c“¡Ù0•DXŒù)DõŠÍ˜ˆžcèì(2r£‹…ZgÉfdI¥SûiuÈ[Ûå¼%ŸÒp³¦f°?ÏaJ £2+Œá!ïÄ äzï%g*ýÚ4˜Ù£°@žá!¹J…êìîÔ:i&)ƒ Ýã°õ|Rͳl!;8üqïåÁó$XúޱÜj÷¡«ó™[=à®¦Ý ác¸ìVÔÆ3Ï»ùe x¹ßc!ä‹WU^£›ˆá¬P±½0¥ˆ Y—AiÒP-…^®Ù2¸I,޲~>à-T­/žžÂÉöp¶¹‹ HJ©®½>ìš­5H_Q “{‡o_u_¿yöúùþq‚æ%‰ÏÆÌtœ<3~~µ÷S÷Ù‹·‡Ï 9Þ|§Ü8ºŽÛ bé<¡™úÖ?ó3/#ØÄdskÒOŒ³ d/ŽÏ´p6y¿á˜é‰Ô·d‹Q–è =“¬ÉÙDs.É1“dÇŠ“_åí u#ŠÃóˆ¿Í7™Ê®œÖÖ™=¦úOÛsl›äÚ«)Þ§9T‘YðHP©uD+êåÚ"tlú°ùÕ¤kBøÕ“3Ø\bÒ7Zü-ÖK,†Ÿ" ZL¿ æûª¢|›På¨þrp²ýá[@üÒ£Ž-h´¨!®˜rPYÅIÿçÖ;[Z#áY)”VåËMc®µ\·:ÄÝ…Ÿ2JSSü&x¢AÞx•—E¢ü£×ì*¦é’,coö†uùÍuï÷›I05Þž@¬Üg¯ßª«úsÿ¾îÎã¯O×z5ÍNûcbÝØÃjbcÃ#Ãýû>žfYj°ÐÀ¼ßl/ÿg÷ùþwo¿ï‚ÐÜ—ßOö^º£¢¦{mùHʇ5×ßðaÊ0O¿wÄŸDO-v&Y’)Ê"zŸFy+’3¹=ñmf¶•\ÎÚ]Mžô€À¯:uŸjF!ÏÚ§¤)O²¸ž(8˜Fíäõ›Gz’ا˜\õÛ¦‰k®¯ólªQÉÉ ÊAD÷ CŽ˜éÝNŒª¡`V]½Ó²éÃò¶Ç¿{ãm§ñË,›”õý‹Òúd´ß~·ÿÓ›îwûßTÐî ‘ÎÓþYš¡JäöŸ?ò-þFâ)[¼wŒìiÅô–ìrZö¢·ˆÚoÞÿðîÛÃçûG’×í%{y]ú¢½°›¯P%ØJ ì½yãŒzC–{Ó9o¯=—:[WaÈc® Pƒ;Õ¹ô5›‰:,BºFÝx¤8Ð:zF.œŸ‡ÇûG'!¤¢à]–- •*Þ彋Ҫ‘~Cq§ß´ ˜*¾%âÒ)||räd~ k@Ì»k®KzUˆ2VÁñu"¼Ÿ.UŒÞüôçÖÓûù¾¾Á6c]ð"€[ v•ìž^ÍjëÏÒ1ÜL†Ô‘_¢öUiá+òíú'd=z \6Û£_òYPqç§:!u¢qßH™K)Fˆ,ÆBG?“$áä¶SÙ¡sxÌÁŸ]Fž!ëØÇgù,ƒ¼kF«¢Òß’Éá(ŸG{‡ßï'ì[|`gβbbEá 9…®Ò›²i„×RIýMÊ»íÏ’0w¸¥âÕwûGnæ^Ab)ïL¶U9þ(Ÿe  ÛZ/RK̦Ãþz”K‰eÆØw½³‹¦/»c‚þ'`L/+m9›²ûäx<¤\Á3´vÈGýþÒø|`ýÑ1Ð|l׬„×Z³‡%¶2Ùøs`2*ßû¤\Ü9÷K)§0åˆ ±Õ@ðnû0'Edù¼,UÃ(O×÷Ѧwy9æ&¼šƒµSb&I~XAþu·X?þáÓr)Û˜Ý ÿøâ×ùÙÈðºV c¨}5Hä~Ú7‰'ûd^iïçNŠrõGêyžxõ, ÿœòŽ£0>ú*úÊ 0Ò{£tø×0UÓ¸jœ!ÁE„> ‰m| !“$åœn5BY¡3 ÆÈÝ&# à—`00®6¾ŽIÒÞØÀ±$DËè"jü’?øå}˜¯t ¬âJ“&L÷LJ™ï³ÅSÛRŸ~¿­-£ÅäxFàP¸ýû‹® Î~³wòÃçˆì±²S`)aVº2û$3õ”/š%nmÕæ,ÝÙÐsÃN¢¨3]-†ë­RûÞÿɦÌ"Íâ9ßÀV.®˜à`|ñ°,m$‘ø@°4ÌB–qÄâógE˜Àá=î6Sñ›Ô®³i‘%Œ»ï¸N¤±’’möVógo!wDF¶·p6µë%ø¡’"ÌG3¹çö6ØÑííuù®v•­¿üWX¸Ye›a$û°èC~7d’å|CÛ0tpÍDqò)¾„ªÈY.»ÀÉdâo<|…Ò¶¦ùY±v'du¯m3]Vܵ”Ì/î•Z.œ-‹É™Åáôñ(ä/å!6¡ƒ±YE°ò“['Â"r.'¡ÙÔñÊ©¢JþtŠR(=ò~w_¿q팳²ªÌˆ«È%b¤°ÙL—’3³ˆœ¹Ìns¾È{_V3 5Í !ÞÔí÷1T,eH;`~º¤dºl(¼d¢Ÿ¾…/Z"¾aßLeúù»‹5}LZÜÌŽÊeâê@îÑW}ïm´æFN*""¦™ÐÆH‰.éxú ±vˆê†+_ÆoÙ…ý†J;ÃþþöÕ›Èf€â™úЧ÷t¬Ó‚àv_, ¹zVSr+üG3™gÎSk\|±÷ò²X ÿúSññôKÎóYbs‚¢Y ö29ù¦ÕÙß{öÃ#÷g Ø õC:gÓ/,Ä~~·”3ÍÿZ“/´È [¤i>?;_R^”ÿÊ7U–+j°ÑJø¨ž¦£‘êùšm \mJkÍSl±F¯0<^\¤-Ä ((ŠÝ³\ŽDÒ›aŒm¶5@7ƒÛ†öµÌÇg¯%W©Ûº®få&tæ´û»­zÚt%§°ñ8îÑå,Û ò¯¿(Ïo­çƒ­f;®€>Ê)_5ÄÀvŸ`Nà ª ×aKÍ1Øë úƒô,3\X|­è9c-7êÔô3Fž”Âì®…ÓÃ!·4ù·±ùíöȯ&-ñ¥U—¢?‡'–CsÆÄÃbž•×+õSÖ¤¥è\¦\ ˜p:VzÂì‰EGäêÏòçÎZŠçríÑП|ä\zàÌ&ægÀ.?væi™ãçq¶lÚå‚/¿¬ŒUsèú¡ŒAcªŸºà?ͰeÎ7•ÐrÎ)ï‹÷™¬7þUgö¦ˆÔºORª„¥°TlX˜5qžU)ÚNwƒóù–1ŒK—n˜Ç N5­‰à÷è©¢ÉG™) FC°zAùåæ:&{wŠu¾©l8*){¿jd ¨‹^E;ÅJ/&0ʸþ½fí-QÍ_¼>úêâöÑóýã“£·ÏNÞíw÷^ò7PØw^]úøKy Ãä*.‡½ÂMÄlx•Uãé({éRmÐëW ½Íp|(%Žÿa)÷z#677ÿÇRU ƒólš‰Ú8ׯÃÿÁTÿ#åe‘ƒÜ°"2ß"®|.¡pHe7ýl¢ÂŒJå3ÈÈ—¶¸G =+@¦½OÇt6D̨nª9±XJZ@¯(eÍXÊ©zŽÛ•÷áì}z AWåŸMFgµ&ßyR=8IÄvà · ò9…¤ƒKR¢J/×À‚¸ZÛ!¦À³PØvÿëB LÆ^D/…ñ¡©œØŸkX(Ÿ_/öaúr6Žg{/_v¿{{ðò„Ÿ@™àn1G•{d]àÍv ÎÖn¾“¯Ø­{çœüóX„¡ÏTåỲVíF¶,“«¬y·äD”R›C`5‚{lÔKƒFv½VÇ~µ’š Ñ`¾vaɶ[²ºðVP¸ºüv¬|u•’*¼–¾¢é±ñ”…ù3|Óz¤¡VS4±åO'³iR£ ¥rÐåluîKaý¶W¿]^ÿ´â`¶<0[ ÁàŸvÚ¶m{Yhøg+tǺ³"Pü³À¶žbi"æãÌÜ敜|âžØ…à^‰(ÎQîÓÆÌ‚èerÉ)2å`€9e§º,ì…β±6iAâ#ze0Wƒe&²Áª­¿ÐsòâäÊñ½ Êëüh½d•wã<„†ÍÐ?YCP˜aÂcBŒ=`¹ë¦ëˆ»¼W£¤ì³ X4V™ cõ|?Óã·bã©U5°JO9 !„‰¨ê RS–×7J$?\Õë¢øÿû2ýK?±.(uÝT]|§CËŽÒÛ\²¨PÆŠ•ÓPØ“Ç&JæSÿÔ†›ÙfCУÃCÐuà FQ+uÓÄÚ{ÌÏ—}­‚œòM¨ƒÍ×R#šÎÎu4zƒ ¹Ð°ð±÷0ݱά—Äzý½Ø­8QãñÚ“§‘J˜Ò„c•Ëϰ˜áa×ì}Îüg@E-ä\ëè³n¨Ðµ·n´`Ùn/ÓñõÁ’A±‚Ó1ùGlF0ìäŃÉ-M^Eo@>¤]”ˆ£ƒ#„ÒµPÜÔ‡ù8ë@ò´§ú™P¡([ðl2Í®‡ù¼Ð%†P!êËðTN…É ú¥ÃóÄКE¶€òiIq¼( Ùï Kl q 31Â9Iƒw8µñt!’ ~‚vÐ ¹k¸ÈBÁA¥Ýb*‹!Ç!L©+]@Ð 0µ£Òqæ…ÏNPßÂ$žÃ1€CŸ[U{oKmÖŽE7‚l@ï¯/yTRц<ºV½í0Ø$ñKâ%1€½×Nˆé F.»zïZ¹4äë‹*,¶œ)­ð—ÖÙ8è‰$d¥6qÌ‚:£¥gÔPôl?€´ËØ¢ãµí–Qôzƒæ/Ò±ÎNÂFM#…<³Èõöhß=,ÔfçÊ[Qn\™rÂZ_iôpçE<‚·„›WH¡€â£Ñd‡6HÞ܆¸f£Èq¤ Ór¾ÀeÚË®lóãñÍ W……o‰­¯ä†Äqu´+H| ²×§*Wê‚£ÿý¨Âˉ9­ÐáQ/‹WÇïôÀ ïtÝÞª,ªÂýÀÅø;š&Ëaäà)᪜O‹Ù ƒ@Žë¿>"…û‘U 0c:hHÀ*Þ<”í½S×9YÄIBã|äÐd7Ju ¾9#9¶È,ˆÀòù2Í:‘Ì©»oæ!’,9FNüGH¬û‡¯_í¿Ðò‡>ÓGÏGì½ÔFN‡7ô€S½™HÐ'ÔfÉàÉ£ àHÀ^Ó±œ:èw©É„ ‹u¡1ìüÑVŒ“K|„Cþ†±`Á&¤ªKš>¹³V7ÆV‰ŽýÓO?‰#¹íϤJ„®Â©€ iÃK8…ŠÞµ¥°\’¹Ïá €‘;çí¦¤¼É\å(¿¸Åé›:½ÃI½’¨”ÅrÓ „¥vÖ]?K%éÂÐY\†©11ýš•'µ/÷E=¡úë_Ú¯=>T®`AÊ¢\Q6_ÀGÅ»bï°ò¯Âäm¥Ü–óñÙ<Ê}pM=Öµ±œ<úå‚y Là6LÖ@AÛœpB‡fÒ‘‚†~”8'¦¡Àâê™gNHCóté`r<ˆœ#ÓlX6'”\PÆ‚mO<è8¯»J££uÂÔżpüß¶]*®2–œ™XN9c¡¸nN”6“`®ßk˳v½…®©ÑÖ«`u§«ºíÇÃåÊkkø#ïÔÙ2ªÛ^±nÕ±=ÛÀ®³Œ“ÕУ£Ž·[™|1¤î…PÎ &g´ã ª¨øüw´K=p½4ý€¤Ç>ÍÔþ‘RÄœŽRm;°\%ìà*žÒnˆM x²¶Ñ¸ðî¦Q–)ÛTaͦ¾d òMT3|£v\EvDžªM(Ònªìœµ,æÖ¢h{kdfy°¾–óL åü=OÍ`ƒšGà˜"]‰wÜ1«g¡ØFÞÇâL~«!£ZØ1JÅ*À˜Š^ڟ‹ԩߠœKtE`ö:ñ³KÌäê(W¢÷EÍØ-êÚ+úS‡MÜؘ:KP«cßß»‡ŠÞÛWoœ"M&&y;¸3¯ã¿-æhÛWC8Û•Jópš‡}ŠÇ½&êâež_¢qf–GhdS*µ”åóÉlx%—ÏÁ#^‚îçÀ) 1ÊNÕ™næšÜ6×6ö_h…‰‹Š‰:¸ï¹†ÝGª03äÂfÃUâvØZ² ¡ÉÖ­æ˜Xu)–DSÔ³ >U˜ì™y>,,v”›ìµÌbIS¼ŸÏ!O—܈Éys=LCšH-_ë¦Ñ€¨`1sbê&M›ZDÆ,Zâw$GÈ+U#+E5´XˆÑÖ*ÙÒ˜Jl‡˜™M¶—C(’ŽùŠ5mlÌ J„,†õ”ÕÛè%’!¤~ʬšHõ 5L*÷ï`CœKY¤¯lÊ™Ìq_O3Q€ÙºPµ›J$nÿ™Eæ2Ò¨i¤ h05´EPN9ˆ¿ÏuÆ1Ûš:.7*¢Ã+{üTN<„Íl_|ßEÕ0Œ°»}QØ‘` >lâ&Îç&A6×Í“ ›™Du=cQ%ô›ŠzÏOUˆäÜÂf÷ž£ûÚÕe².²¹ †[[QV.͸©è¢uëÖ#Ê9íQ„"<ÂqgfSÕO"ùÍï¦kªãhZ.ðxhSȹ;ɲÉy>²¢lJ~(Ê©ÜDM‡äúBisºؑȹÁ,#æö§ö|V¸² ›ãm‰Á*'?8iåÐqXR¢ë‚i%òÚGØe\y†Ð58oK5¿F1—¥œÙ´èÔ>t†æ<ŽÞkÑTAuyK6;ì5®Åå%¿IQ[¯×uýòÚ{‰ûýV¹‚KJÃj€cú³k…®ã› *Å”±âä×RA¾¼Lü××Ö¥»ÇÅò—n|ñëK¾¢˜éÀR­Qgå]á鿾|•!7¢)¬Åg*ÁK¸å.à LGV èë˜ ›ØZ¾4?䨴ن¾®?6FZˆP‹Ý•ÿÈ™“‰¨QXÅdšŸÉu2TäíÝþžM®ŽÈôCß$€b|•pÿF(¦ƒ®j Q4ø7Ä]õÜ´jª±XÂTo>ÍäRÝí •Ã« „ãÜ*v©©ú’Þ¦0ô”¿•™Ü8d‰}YòŸƒ*:¥ˆî}Œùî«vû ž‚a¾Èå¶%¾ëôk]“»¢AI9Yìô´õE˜¿ÿ&“”§ûýáÛîñë·GÏö1ì¨Ü‰¼|Þ=ÜÿélVS6-ñ˜¤ÝæùSöl0:íÝG’ƹû¨˜ †Á#ÐÜgóñP–„gz+NG«§épÔ uÁI"öüýt8Ëb/ÐG°Ãí×ê™[VÔêôHî•'Ù8©Y%XÔ¹J,ê‰Ë~t}l/ÑÄ Ó…™ 0®s~áþ(K§²BXœóaKÁ]ÈŽ¨. A½ñ+ÂñqwæWës±†*cÿ.‡C“q!(ØßïCú½—µâö*eŸ_@…ËŇÒ‘òÚ2)‘û›ðõ<,k¼´Œäßš™( ñ7À²cË+ÕÀ©†u:1ø—EËÔvÉfbÉ5èã“§ 9ЃvC §ŠòÀ÷¢åV®%+Ò’0·Í®£¯:äY¦t·‹w5ºË•^¿ƒNYËÒDMy˜¾ÎìÕyhí“+“ŠÅ°Ízôð€³ 'ÂÈýqÒ?pŽks‰j½µ©Q«W:·ŒözØ?x­wøRö¯&ªàºio=q¬1tØ9½4ö!!¶ëfôùCb§‘û÷Åa>S6¿Bè¿q!ÀªPàÒ@]§ŒÙÈ]Ä m¬'Ò;,ÕÍÆy1éë^ª‰cÈsøúøÍ³%ú‡à÷FúÇqÕCW+–ZW«Ÿó ­JTŸúìF‹DGÚè`†-µScâHK¬«ø¢šM Žû¯_xXËöoµŽàÊ¡Œp ¢hôW€IuxwA^¿sèGÐ=&ÔÔ*ƒk“ZšLðù¼ø§ù:–;úRLqiCë,æ¨"húφóÙø’(ãËà§ M«i ÞÔD5âŠ-–Á™—Ì›%ØØ[¾>óR5·m‡mQOÔ[]‡+[%<‰DÓªO FF3¢î0]© —O™Bzò+;ù¿Ù¦–íÿ.~Ý<ÿ]ÚX°ÿÛÞiúû?ùoë¯ýßñùÛðt W—ÿþŸÝŒˆ?*÷më×›çëkkÙx~…sÇu’{W#xªÒÊ—íÈ˽—ðƃó[Dcí£Ü!èk×êXÍØ ô—Ž)¡ÜüŒéÐneð>v™ïmg‘?&³FjK$«Tâïè˜0Ók¬ÌiѸ,^Š@ù]ŒÎ¢ÜÄŠ¥§@ÎPPÐ?žuJ+ÐKØåQ­à„ð¼mŠb]2š%˜AˆùßÁ€ë÷žÁp)ØYM£eÆT·@‰•4aì‹Q˜? ‡ÛçŽÈ1€sPÂŒ‹ª¹ì¸Èþ¿˜ù«+U´æƒ©1qÏŠ2¢ÇNñSB§Hä Ïï花Néñ–7÷•fÞR6¸ªÆ‘K†8Å=ì¶Æxèèæ1ÀPzÊI.ƒãˆçû5žw2uµUâÛ€qÿ3Ü@ÀYåíÉ‹‡ óZH1µ¸ºHA÷ MŠ$ Ko qnŒ¿Æ8™M„•ƒo³\L²)^¥…Ð  fN£É.”àp9Dñ£æþ³˜\Ç2¾p÷ltk1øu÷¡ò¸àð"ÌÍ¡?¥Ó‚¤tO€©@(àXquHPÒp:з²v½Þ+ÆJ’¥?^ݰ1{…wB*š¬®ãËoÕbu”‹6údÚ0*e%•£iWÏ‹åkŒ¤®ã”Ö4‚1íç# ŽÏBËÆ¹u¸_w@K&þ³U¸Ïú8ú¿âÓ/½ X ÿ7·ÚMÿü§¹³û—þÿG|˜þÿfïèxÿÈÝØgFóWÞE þÛ‡JÄ=šDÈK5ßå­ÈçÓ¾TßÐ] ¢1ï1"¯‹ï4Þ•™—__MÌïÉø'|Üù?ËŠÙ—<ù¥OõüoïÈ™ïÍÿùùkþÿŸêcÝ%le19ecöûWü4S*FÀp5ïs:w/JåäÚ?§4 ÌÁÐ)WyÙ>¨ëd˜–Jf//h“nžý†ò]”߯~GÖ>@ìÇáX¹Ìi¼ÈN 07·2²Jt´ƒp!¬ØúTÇ À¨º uXÐÆ{ëé²j-îƒ fKNÓAÓ9œYl›þÅ,ˆŠzwá„ Ät1K–0tÕÁ}ž¼³è×ò¿ý&؃_f_'bB×M ƒìÕß‚²cï‰$7ì–aÜ?Ïú—H%¸ME[UU‡4hæ^ÿê«{/áxÛŠBóí'C„ÎDÞ‹ƒï_í‹WÇßûãâ7S‘W>èàÈvó›Ýw´bqÖ‡!-¹®Ž'}¨uóÍ^ºõï'dNp cd%‘ Ÿõ¹›«=Kx vgŸÑ5[ŒÕyüÆS/l¶}šà]úÈMúÌzFðœO}hÀªÁzeÜÚüš{ËfÎM˜XÚBà‰W¬$vØÁè Ç=ä„pdá „ËPÓÛ…©ÚP±¨è»Ú æð|\ Ï xžÏÉyG+M ¶ó]uÈaâÔèRuÏÞîÝ[¦÷ÈÎ- v¿€ñ¦PI0ýZø é\Kµ uÀ¡»ªJˆµø=µ;tä`x ~$L†&üþNÇÙBÓbë%|8Ö‘zðÒ½0ªˆ–øœæ&¸4§¹+ð°¶.Zž\F4Ä]Å%¦†‹ØGƒrŸº1‚Ml´Œ˜NDü­>áÒÙOdË`úú«âk¸Ð ÑA뾚c¸ ¢1ÑO/„°ÆHF±ÝGV6Ô¤ÝÀØËŸ ^¢.ÁA7 1-}c4&£ a#pYC†±Á=¥ ô6ñ„‰Ãäò…]å–CÖØ;è¹Fõ<–[³^¯ ¹¾ÒcÉ„^,x(ÚÜô€|5‡(18„¯¡¢n !O²Ç–¶¤Ãd6N•™åî]g½Tœº‰kîçÛç}9’ã ¢ÎxïáL…z/Kœ™0Ü7"Ö}Öb)-‚ÞÄHÚ²‘yÝŒÍëfÙœ´‚)þÒÁWÝŸåæѲtQ”Ÿ@ê¤1ð¾z©è23ÅÈŸvf4]Ðy4ý8SŒØ)ÃóW8Qx?–ÐR7¦ÖßÏíIÓ£_˜Æ?‰jˆ¶)¡!ØZ¶¹Ï“$.½XHm*F`lÁCóR´‹8Ç œ¡}‹I¾â]1"‹–²ëñŽAGsPfh®=Š2BY™Õ«²ZYžê„Ë‘*)?Oà¯öÆãnwi4¶_áöWµ]U;Õš|p•Žà<8SùÞUÜf,ÖPbÒl"U5©$âûÄšÇ &VÔ„ˆ½º/5›¿¿>ê¼ušé ’Hù —Ük¾R¬øe=ýúÑ/ë­ö/ëõE®Ú^GãlRñk ³yíBS*±?× ˜Âº‘n°v 1{Ùì}–õy¼æïŽæWcñ D`‡z‚»3§/_'ÚWY+<ìGE´=Ø|^‘¸Ë!UìÐã×K‚XðÂÑÔ‰0ŠË—¦â ;4+å)¸¶ÛÉJ[Ai'æE,›bŠ VßnkÌ€tív––‹ÐtgÊÊdaé6/Þ^\~Åâí(6FÔ*¬@‚Ö7^«¡ÎPe¤ü2hF8zšöÇ3ÅÓ†#JYMƒMŽÔ ¼ØþR¼èGÖi5½Ü?àú3ï!4ÞKpË,  ” ‚…Ý6º¯ÖÃ%ƒ»ä™BfS¾ö Tø|¾@ÿYÿÔŒtKSCö­Ãåð8œ©4hFÿÛŸÎûX;÷OÑRðMu?ÿ¥Ç:`uÒS¤âT—Š„€‚cOÙßÍùæd6]‰ÚͦwbɇðTwt{O¨ '‡‘èlÙÜŠ¯| ([3J%êhëSDêV%Sùí•h}†~õÛŒ%ElË,b@»í˜º¶[º¶B&Ë—mÛuT¤;Lš¤ÛËÙŠ7XŒ†ý ‹6c‚6>¶Ûi·¾½,Ûl—I£xñ·¸£mÿÁNDóø½U•ÙÖåZŒð·•™$b15½UÛ5µá8ƽÝeD´L}äwšç뎂Œø¼!g³G¿N¿¦Šð„•sNXé2ƒ3§;D ¡®2õ¬c­¡G‹ËbúÀsx:¬ ŠªÙùQ Æ×æÌ1¿ä­0¨ðžbÀµ¼åøJXÁXW–*£[¹Y0ý(£-o%!RKkçKDDÕ ¹ÍTȼ¤«ÂÉ%”Ñm#`òö"J5ÿ=Hµ:Àv†¾…1_¬ç.Ñ„ƒ³±ù…*HÞ^¨ƒäm5ÕþÍ®hÿ®îÿ}ýå]¿ñSéÿÝj¶všþýíæö_þßÄÇõõ‡þ߃ìÔ}Vâ'î;€¯à;žN½g£áÕpV¸Ï®ÒÙ9†ã.æ”üÈs4÷ϯ»óñc¹;ÏáRº¤ÓmÌH )À\ à,E*2< ©ß¯›_+Ë®ñ¤Æjµö•uï%¯c[çï?âé,:ÙœÈ5æCËw¾¸ž¨Ò]‰tÍÔ­ ¿£ÏË&Á½ÀõvfUYUÕ ‰ÊûY?Œ:P3óq!•8:0öà*Yo =U§:‘(Q ÿxùºô!WM8kˆÓtµ*)¡Ð“ÐÎöjïø¢ys A)ÑÔ5¦9©Ü8®Ý7›ð¼«“ºå†ù„+h]ºK¨@_*ïkÝ_ýÄÈþÞa IÓ½þX>Å­’S<ÁÚ¤ËB'Ãb/ö^ï?bÅzy>ÊÒqXòäèí¾°´äáÛWßí=âMâ$?qVfoX žK´#„å((1HËÿº>ˆT¼Ó·°uíjÔ_ç,´þx>¾çïÇ@ÖÁü‚Ö0§¤œQœÚ”rÿÿ¡ùñc'VO'˜dUÕ£ejã`ñºø`™š0x¼"üêáUÖë.LšÃØ € Ï*µ˜8A!D‡•¢d^!œÊá¾Ì›Kàï¥ð~äÂÖÂT9JÑn¦A^›«³¬PÈå¾—®Ðš•–Zš’wÆtŠ~ñQ&)F1ÒÇïÐ¢Ê 5âÙHñEU¦KËÔ¸i¯.†ÂMÁ§ï±Bê†$°Ân<ñľzK¢H*á’$q5Þ5P?~d³ã† žÉ{ç±é_Ò¸, Gâui¼q|Wâ¨w¥e9:`ÁÒn„—ÿ΄ڿafä§b=1€M,Õ)ö€O@Z³"Ybm×(6JÜkCÃÄpVT¤4%)Mš0׬“ÏÂ_Ùuƒtï߬Vrß”ˆ|£H Õ 9½¥_½òáz¾‰Ñ×Íü¥‹è=”šê‡Ú_&±–,¸äsÈZcˆ}á eX‡8Ko*Ǧ'âÆáé ¤Ÿ‚î"ÅE)å.¼É -ò‘¹]"hË]È–M : ðð.8LÖ MÍ÷w5ˆµ€vÒ7RcϽW{?ÑÏÇôóà0 ž‹dm¾arXùõÀsRn•BëéS¸‚wþŸýîÑë·²GoßÔÆ‰L2Nê[Éýv⨂ëôW…”î>õ¬pMŸöÌ-¿TOo“He…Å|KB]Tº.Ì¥¥e×{ð b3RöSú¥×‡Qv•gÅÏïô I‡%öQêökw2ÃáN˳,”œòªÎÕ,Ô$Õ矫ۤuÃÜÙ‚DOS:­XfÔáó=až%Àf©^"6•ÒMpäc¢—6•ÊœŒ‚Œœ¬o©ÛÖƒqö>Ž? ͵œåË'Ö.iqñ©²)á¹ú¨‘&àˆÊ4•vŒCgí2é[¯±„&ràf£Ê`ë*7•ñµg‚׺g|ŒìɼC¼Ogàt“F½¬‰üô”Œ¨ŸÓqÙ‰Ï ¸ M¨Ÿ4®CñT-†C)?"¥«°B`(§Z@‰Écá ¹ª¤:}7ê8< q\t]Y_F2Šõ Ï¢D#b$µ%º[OÉÀŠWörðŽâZO ©¡”é½#D\UĘ ¤¬qge÷_º\H˜“´Ÿ¹“ ´of]ˆÇOQùÏ1ŸàïHóÖzšžd4è,¬kУ{à_R‰=L]v¨JÒÓÃ.‡C,{TƒÛ¶©Ò”šÅw”oë}×ÅOµpu=µgKf˜¡z8Ô$q£‹¾iNCÊ31w‹P>Š‚7¦}o4ÔkaOkýB%|çJIĈ±˜/‰BŒ!XYCtØ¥. çzj¨ŽE/®K×= @Ö_ô„¨§ªÕ‹k—¡b=¾«^ô©­  =¾ Ä""{{IØ­O‚’N²ù3ÙØÝ»fÙ ¥¦SA=öZC}Å_^#˜;‹lü²QÝ[d@X&IÃp¢ý”ÕèaÄËuj}‹rD]éR¸Ì®Mpå ½*j&‚6|©Oðjþ‘6Õ¤z'™¼™è‚’Ed]ÌŒ¿;¦¬¬ªKÂW[Nþ"á^²ÙñÞ?˜ÚÔiÔmÊ”0ù¨¨Ê¶ŒA¹D§$0«0Ê]VÖˆÎ"ÂÛ©Y#ãƒcsW5~Zîp#åã'„]sFb>üà7v‰Aë©Í1{•Þö2íè ÜœZ­CJ'L¯‡…(®ä+ -ŸŸ¯éP8O,)|'+žz‰ù~Ôc¯•0Ø6Ð Ë}xüXè….{‰g?ìu¿;8a*“6‡¨ÁB/)èð tb¡ÕAm ¸'«žEG=Ê÷FÎ,n§§Ákû«QÕJÎpw ¥ž¡Cï¥'r?Or6›žJ-%á¦N\¿½4v|ßÌñÑ©XóJ;àZ» ·Røzÿ²V¥&Æ…c_»à:<Îpm5HâB韃r[V. ¾£|æ C›T{ûët¤å ×\yM×fµàÆW#˜BÆ0ªEw´£Ø”×ÑÂ福 qéëÊàE0-[ƒ›øPȉ*ßu¼:ÞÜ¿ð¦Åµ¹çh¹)b7~¯ç3¸¹×Ëçó|œQ‚wR1E»ÊDJWÆú>´µ$ØÆ…|”޲¢Ÿ ÊÆ“v*wUZ”±ºª¥Ú1ò‘0>á0| ãL/ÔFdN©ÌuI⥮ÔûùXŠí@»ZamŠí•1Œ]Dú:æïiZÌ ú®EI§uîaNgP5£”Ü]Â"þ<è9›öp|ÙÚ±4>Z®z6t³´2û‚®Ù§Ãqê¾Ê ßê”Э' ×ã”ÃCîWèçЖ[@Y)å•ÌY“A_3wS,íÜÆFLˆ hŒÎ$ï™ÑSZïtháM»úë%wçƒ:3Ñúi0ô( ²ªx¯<Œä¤¤¤|¾§wŒtK ²Í¯óa6“+˜Šˆ2ïÓéüÊE*ÙŒÀªh×`[˜Ù`ssSôn-Œ9^šÎبÕzCŠø&U¹ˆÓ0¢Èß~c› €ñ4"®Õ¤°«ï #Pm@NGø˜À [,…üjéïsõ:ò”•t‡Ï¨bYÁ]Ank~cè,ËN*‹vú ;¥§KžÌeõ­v¢ çJžœÏÎÅVK’t&yaš™ã‚Qþ‚r ð¡ò’­‡ZVrÂûóLêàS„ÿHÖQ6ŸIîá *Ga( iVÙÿTž!ȉ=“ …×=” guö}Õc ܽƗLDÚUGºCîÑ„._TœM¨  êpŒVˆU?“(AêTK<“³CŽÝÛ“U¬ú„´¥}´ÊýR/Œnå²._1Ée r@x{ïÅ‹ϹÜ}§ê3L¼.ÁʺŠ*’1zc¯Ü€X1Úâb¿{‚1+26T#ÞW{ÎHW顈úR[@Íðíû| ÕÓ"{¤».Ðo].‹RrB΀¤bkž+ D‡ÑzÓr¢¸.r R$ÇÊDš¯7ZgÖL ŸÚPÁ›ÏNRZ_@ÆIÉuß.~7L .#ßî  ‹]Ucw´ÿæåÞ³ýWû‡'¸9Ý{v²ÄD x5OlPë7àk͇¢uo$IÝ8Cz(ºÁ;®¾þL%Ì¥ƒB•P°£&÷×jtOÆhÂ:GcEÅ1˜œ{E1‡1%œe »Ì%yx!?0Ò,î% (Rõ…¤EFʉ>\¥ Ú5:.àU?“fQÒdW“™:¾üÈhËîÂÖÂt·éôõ3;Xõ u"zQ,ì.-EÙi¨mûŽ˜CÉ"84tdM˜­C ¸ëÓîéSׂƒ:Í®¤Fwôà˜(^[ñ–•§O"ؤҘ–¦$㜊Ñz˱šÝªêõªzN.5p,&’© y-¬A'D6hs,§<³éhÎ5Û—]úé‹.ªQ`¼y¯“Èœ¢ú5Ãç°0Âæ." ¤ìU¨3™ dµ ºo¸¨²K^‘ÉWsÊ&F(ñ(ϨzUžÅõ†gg†è=• 2¨XÐUóŠFÚ¬‹¶Ý–ébÅV;a•¶ÚzCi‡ZJ¤¨¼QµU Ô*Wô¦jDbóEUJJJV Ž-U:>¾hrby-!© ÷„Ì1õ>Àft~Ø;þ¡{¼¿ÿ‰í­öÞ7··:¡h™æ³ÑV[Ø•àáU„UíH*çÇoðUJªš¬µ!$‹$–º‘)¥òl™Þê–¢'™•¯ pí÷]ÑJ<¦ÞxJ[ ØÓÔʼnœt§¹d›÷¸Á•™‚jåcñj>½šOe·(q/"÷Ц÷…uïVìÍá\^ìM&£¬wÛÀ™ ¡’< Ú:õÆ9ŠMÜ 6&’œ$íSÇ "Ï•JcèÏ‘eŠ2Í오P§]÷Ŷ«EŸÃuGÃ/-d’~ÿ›¬=Øiu"%ÚX¢Õ{ø`kç›­°D]$j^ÝzRSSI!ZW7Oó©9$ÙPï:bèg(—€#•s_¡éh¦ãqV÷¥Nx6†£aº''«ÔŸÈÎuô¯'ŠÙk—­Fk'éðRmu¹NRëÿ<‘;ú—©t.+éðøü¼Uß¹×¼Évw¶w{»Û4!ÃQŸQ”\ÔKˆâv˜¶tñ´.Éø[ìöÅÖ#(&ñ…6~n¿C¡·ÛѯÛÎë¾~hÞ¶œ·ú22} ébd³$s¨…}§xLb~ÉA±A¼Î±jóæáNÖë§»½Ž_j‹—ê·{í4ÛÚ Jí]BÁð›ÞRk€ãÔa¾¢ç­˜——VŒ£«µYYO ¦¡Lcåza¹ž£ÈÃz7¯àþ|$ù1¬„W¬kÖLYX/i…%€ð¬\J<î½9pN h\1”/Lšm®3›e÷·&%—ÿÜÃâßú‹/ìt°¾~ä¿L¦,3ó­S-‚Y|â÷Ô?øt¨¢»A3ð=7÷Ç/í/}ÊxѺú—ï_hiNÊG§å¸!‚¬QŸˆ oDºð \¥ÈEN|•á T—Œ=§¡V`ž&b×:ÆY…"W»ÌÄè ïruºDÊ^.¦¡¨_øá!âdõáà&^ô2(:Ñd¼Ð;±eé.YªÊ¥æ¾ .§| É| [|Øàd.‘Mþ¿6iT.)poˆ žÈ’ÀA,(¢ZnªíÑÀöÈjvB… ˜ášDàz\–6j0 g–?ŠlòE8á|A¹ ¹¦)»Ô°óúŸxS€hÀe YA3Ž,°ã  ÖY´w"ª1–¿… ºf9C5.,.Á.¬ÀPÚV9k9+?¹ß„Þè'¡³ú™Ù ¹ñ1¶ÜÁ¾Ôkn.‚YrAžAòMC×Ñj"ÒHaMœ¶µlÿh•ƒv 9órÇ%p5ÕV•Y.Ù8Ÿe”äDpûºtp»'ìx](ç4õ䎹’· Ž@hæz[>›5·–Ïçìf2ŒٿãÈ]›V›ˆ|ÍT¢Ë›.j¸4#î_r•\Nšö+TŒMáúüŠ4û•ºÀ(BIIä”rQ@ŸšHÍäHîãà Ôåû\p æ8ð3ò ôü#þ‹ôl\vÏO9Ñ«ÈÜÎå;=a¢ÈOaoß|!?zR`­U \ÚB«hˆ±Žº]6´tÊi.TA¤6ÒX‘VŸ6Î!¹«ãÔrv#›R$ÁvŸ„U¸m õZÛ‚U@;]¬äx´„0‘Ëé&j„+væÈ r™Q÷½wäºx™ç—8 ñ XùÄöó©Db’je!@v«;U¶šB¶;;…µ_¯Ä“@øá²v<Ý¥´“nbVÎàrÜ…Yƒ!‰ô…Õ‹QÉùq°*OH»óÝ«57Xü–¦g†j‚ëñ¤#2­hëëjÆAZu$ (š•Q4 )š)mG-eðñ\Áþxê!ùàw]¾>Ù$à+ÞŸøA.γi&×Ô”ßf¡ùŸÈ×$ã)fY: @p²Dg7è‚7©”ºæìLV¹#Äùûì:“Šœ|â1:kƒ@̲éÕpœbúe³—Š+ Õ›ÌÜrÞî½9cã@Žó÷î=¸b ©>æÓ[1^Â9Ò`:_Jé1N¯ou2¯«lº)À@?;.àa/íÉþKî] ¾Ôü$%È—m8C[=2ñÕòÈ Èrã„rÀr„j™«w Ñ[IHö¢—h4-0¥ôWÑ)õûD¹gss“únÆ{z†¦ù›ÒÝÁJã·ã‰_dKjY4Q•q¤õoOÓÑ€ŠõZê[ã«= #4ƒ"ÐAJ »¼BÇ"•khì \œúùHöi(ûL£øÊ§õE:å¥^! # "X‡9èm}µ×ö#9¬c‰ÌõPRâŽOÑ)7Óò®N6Co7Õ6è¹oî‚ì)Hn¤ph4Ñ‘p”öÔ%á©7ï_f³bSÝ»@î‚|Ÿpé"©FLÊì}nr,¤\¾é‡þ»¡c¨«°Å¹(U8ÑR©DÜ+]aÍGÕ ©¯C‚¬ŽÝe-;«‡%̸ó®A]w¹‹5ÙåMäZ0²lh• ˆÒÞ¼{ÚA1µŸm–¼F~v|Ô]1\«ë!!Tï<êIí® :H7Ñc]¯·Î3€¼šûÌ»þ/!O;¿Ðòá.£{•w£å)6'”ûx^º7ν1!¸+ÀIº;Þ.ªÑ«´¸üÌVóMÃ{Ä#áyµfqYîóËcO*ªácÍh<{xÏÆ,þ]RÕÀéõ hÁ§t–ÝG¬VFHðÁ¢AЯî€ë  C &<äè¡°5·0µÄû{Àå˜ñje<FOa™Xw'Ã=™çÁ¤š>K%”w+tåßÇXÛçpP ùƒdÍ*äF†ðq!vÐ~uµJ&‹ |TÑʬXûà窖õ¦®ÚÔZÖq~¸,M5(ã:þËÚQå ¡×áWòHÑ=§âôŠÝžÓf :ÚRcùgi⧃2ÚGï,ænç[ZMé=@îÒí©œ-Bš÷OJçŠ3/býQpŒ'kÖx†å«ô\BS¯ÔWñ„ƒqê”3câ”3‹½|Ã$³z ¥:¤ãEÅ$fÌ- »­ðþÐëÒŒËfÝŒî@™tˆ@pÈŽ¬Ä¦zÍ ™GÔÒJzx @7¨.|š¹ {qÑbñXM¼˜gËQÉò¦=ë #¶r~ ‚pòË´ã1¯ØaÅøk¤¬yë]¹5ÛÖ`µWÖ›à€aR}r£×ã²QQ¯ãCc*„îûTQ“6jK]"BÔŽ¢ ©}‘'¹ß»»ê…ZþªÃ¬µfÁ.i?H¯—Gg/teÑ ¶ÝÕK³Ã6UPdö–Õm°–µ©»D$wC‚˜Õf)ðš zª*>Ó?—&vƒäžlšûÝMÓqæ¦lÐÀ}·Ló ÚºÁþ4K{£l­z¨EÉÝf“_6/û~öÄ(»ÔâΊ5¦&óÃÂ)P¶þvœ¥©`Á$îæ²LSuÖþER•A_8ëä°E­tæ-Ï«çU ¦ÎêÔ5 ñ¹­ß.!É-S%AŸ·P:A=Â*\Ô›s)#PÆZÊ7\Fk°Ó³¤»5~ÇF—hðFž¦‚êmߢ¤RÝØÆ*V ˆ¯ &°ƒ=SÀê±I¥'}ݧâ"É]ÿ\勈j_ì&[:Íò€ ”UÖbZ…ÆEÄU4b­ ™¿4N;»AŒ¸=Jv¥ƒpª‹ÕI¾`ŒöF ™O ‚cT`p*±V2¥ö£A6Ê*xxµMÄïÌñXk2Í®»T_Ø­ØÛÿOÞû4>}óo@»½ïgV€’ÝéÖ¿Î(BEðtd-¾p€èBü¡or¶{*åîx J½W`øÜu*3Hx]îp4ÅÙÞ©þÐQ¶† Ü;#cÀ>[|ZQŽ"z½kô6ZIIëê–¡×ùâóÖ$€ Ò冷6¹²:)Ë*î&€{Z~°ëî+=ªÇ )Ꭰ:MÊ¢ò|]~R2+šÃÖ @#ìªïü@¥pýÀa”s§|Í´½×ø”t§Xx%ImŒ" =mæY9š˜%ÐÕf3å_Ñ5‚«tœž¡G NpÂDÕw®ü]h䦟N»èfÔ2%ÕÒfJV´®“ª‚U‡¥*tr0ñ,ÇN–A/¸:ç¶Aî–î>o§ã[ªj0ŠGnUZ»Ô§öËÒ™ $7©¤=–VÂ’]ì¶ÔÓ9݆Xˆ7ϯÿT¥ ö«d¿kL–©¡U) QHf§é|4sJµ Ò4 ~žgÓQvD>QëŸÊ7©úU’唃N„?t,®`h*š¨Ù%Cz¯š²ºÞ5SçÆ}ÚóG9åÙ©e…ž“­Új¤·©ÔPŒƒ&íjOÇô³(¶3BŒl–´8Ø»¹†Ìmø°»f%LÃÁ8ߥàp.³p“b‡÷a¼b+GKW,9H‰=ì/bKgÜï¸ã®ùí7›ÂKÐwþ™àŽf‡2Vþœ±.½Ãrâ¢!UùÉ ˆénj²µ6ÄÝûaòÖèG& Ó=êËeøýä‘»¶LÃ-Üæô’ªu'–¹Ám#HºðyM¸‹-dMéz™{ùP5à]HDz†¬¯põÂùGP\aäÿãßüsñëFks÷~1íß¿¸Þ<ÿ]Úh6›»ÛÛþ>ØÝÁ¿Í6ý†o[ÛˆÖÖÖîîƒöîöNK4[Û;[­ÿÍßï3‡K^•÷£t|všO%åd±ÓÓ 8Ôaþþ›|þ6<Ã-/9ó~0§1øcíoRÍ™x\Ìéôlóü©ûL µðYÌå12GÈ9ã§²g`ÛÉ¿Ø{y¼Ïœ½Ýw+`êpöDŽeO(ó"{@¢¯Ÿ¡Äé˜ûuúV[‡â«Ã¥oJÄv:ÌFZ~A:6*>s“éð:ex³òo¯oŠç9ÞKœŒÒ[ºŒ'A\aÔÈU:ãïëÚE¿¼›¤ƒ®ó´8Ç«¡”ICP–&z¢núiÿOª #µü{}® ³&«Lå:!:Ï9Ý×ë˜h’6²j]œÎÇ}ÔÃñª/\¤¯ ²¾™È–'ze<€‹íƒy?[½Êç3ùíßô³ÉL ^ÆÝv‚-Ò <‚ħW°Ä²ˆs¨l ¶r†\dl;n ß8GÖŠ-;ÂlöÕ[ÂövI'¾ŸbÏõ +‹|Q Ý7lÝT/úXPO‡<üBð03¯tûêÝyZØwº¥ñ|4r›‘Œ’¹ONS¹–ºzy>B?µŽ„Œˆ™äcÅUþÈA¬è‚5ó ˆ'sšóÒëY^Ø"¯wÑFヲoåù[¹=ò΄Mˆ¼ÓqjܰYõPÕÖ’÷"’ iØ&þeçB¾†¾v»1›RH[6|ÒDíæ‹¶:¨çþ¢7‹ô¢c 4±Ò‡ Q^`9Ó:«Õ!á‡rv«þ}û9„é.‰(E¹$¢•à‘ñ"œ a%_)yr«&7[µ]t\½F–$a­v-k5²v¤&ÜJ L¤úUod[Ut#P,dÛidÛUpXkP2j‡ƒjd;UÐÜf¡pà®°‘íVÁ Ú‡ò°B°ìAä"P%üax#{X¿#¨i⛲&Ù7U­”£# <ÿ©Öm5ºíFw«ÑÝntwÝÝF÷A£û°Ñý¦q¸÷j¿Qà[P½†¯~!Í‹ìþ¸'~Üí6XŸØ÷‡ìûö}—}ßaß·Ù÷-ö½Í¾·b0¿ººMxû0“‡§ u»ß¾}ÖíòN¼‘šäÉ‹î˃ìCLIÔ3X¹(¶|£Îu»éLn:{óY&ÅTM—bð*u»5ùŽv@Wã \²ÿXÒæg´ÔÄ& 0üéZyäe³*9q>XwírBpé8;ê@Ìeï`ȲЂ˜w¡è…Ÿó‘ŒÄö;[LÎ+_îKâÒ˜˜4I0¼-¿nPçLj’Û~ÅÅñ€â–ˆ¯XÞǧl±×g!Ô¹+çëèhƒ•Ž~¥ÚפZ‰uõÕË gHö™ÖX’¸!Ñ-Ë…ÔZqWP ©LÑ^R “Ûî•¡ýËZ„5!¼€ÃŸ‹;ý»ñå—ÙGý‹òå¿-79û?å§Þª]¶H÷vã²Þ€÷ m^ñÔ>“Ê\/¦& E!l„Æe;›±@$¼ö"´¶ ÐÆõjpk×í8Ȳq¹UuÛBe@å×­Exïz4®?µš¬mâAØDãr»¢•ÝX+¬ùu{Q¿Fm\~»5 #Úä7eM6.w5…JÛ~XÝ6kZ~ÝYÔûV³—Æõ—G§&aÆ1iUcÒ¸Ü]ˆŒìÍ’Ø0dä×Ý…dj/D®qý»âW“àã¨m-ƒZãòÁbìÚ«cÇ“_,¤ãö’È6®ÿ |k²¡8ª¾T­@µqùp1¶Q‘¸,¶ YùõáB:G¤uòë?ÿšl2Žz|¨@½qùÍbìˆìe±gÈ˯ß,‡ÒÕ¥¢3ë?±?5Ùx´+ ¬—R¶Éÿäû–,Ð’%Z²HK–iÉB-Yªõ°ÂÂIm8&NÞ,·qºZ/|8¹'9¿v_; m;¥·œ_mçWk¤&/ý ÿá`û áéÏ$§;ü‡ƒìVÃ×ÄHn|#nù1,zÈhUÎuÊ ­jòßý““ÿ–mÉ=Yƒ¿Ø;~vp ðEÛyñìõË×Gô‚za¿=‡¼ôñ룓ýçXú¡óB{CCûΛ£ýÏ^¿=<Øys²÷æ‰Øu›98Þ3Ýh» ¿Ù{¶ß¤Žì솯Zøj§Õ_µ `³-ûØ lã²Ï÷åŸ/÷¾?†Ô+JÀ×Ç¢‰Qå×§âÜ`:ø-€GBåniʲMõRt†es?˜_MNÑÎôâà徨+Ã%3;®‡bÚ¼,Îó÷ÁK2iA=m+÷K¨T_N!8(ÇõkHLòùÌïÎÀ¶ªâНq˜7{GÇûÝãýÿtÙŸ±$89Úß{Žù¦@;R »tôúèX³(†p¦MÒi‘ù éJ9+Ï@‰á§”Y˜2×g$e ˆ1Î!0Ôy:Œä¾ù4A+­¨3r;%ja•†0UN£<tO‡#ޏ0ç¾GîÄÔ~ƒÎ©¯uûT‰f¸©rÝR¦q]˱s;GùJ&3:«ëÒÖØ_Ùk¯yå\ (ÚwŸ:˜GÎc²pû%')žƒÒgÎ+ËýÙÀ><~_‡8ɧävT¿ï”h'J¬¼°vzQÓ“ã4ÍçÁCÇŒÞöTë~]òÁtžÝG¿”û Þ<’34ë_¢?ÕÚ9œ<‚Éé~6RŽ lm– åv²¶†ØÉÚàŒC±†§CkxŠ´6Ÿ d•5õß|+Û§¥?Û}ï³?Žÿ' ßìá6ªý?›ìn{þŸ;»üåÿùG|çÍѰWâÐÉÁ¢à<[7œs¾n¼* o®(ù‚_¨oäH‹€ÊýÕÁczq‡ÔA퇽÷»oN~‹Ýóî?öÿ»ûL~;ÙO@á $^ôõá³òBÀO' :~žLoÅìMl@΀‘\\òiz–}‹Þ‰ÚeàÕñ³îûGPáÇa1—Şݻ÷HÜfKLÐ…À©£b’õk1Q²8¿¬ªõV®ê'/¥¨“‚M·Œøv»Ô+hþûgÏÐÍòt:„ !Ôô'¶ B|Kf1d‹y¥iAô1'£ngYAóIƒñ]p nêî=±Œå…É¥ìLÝìæ<•S_ò½CEZ£¯¼ ˆ¦ |•Þö2làýp4Bdž ¹æ%˜f-=ÍfRN–~ £÷yNUž9벩ìêºü7Ÿ>‚éðÑP³ú ßÿÇì?_úðûO«ÝlöŸ¿ì?ȇÝÿÝ{ùòõ3÷°~äš„ä{ßþƒ–oêe7¡L,3µM×Ígƒ%Õ­EØ!‘ô¸‚8wZð‚pðšÕ“åŠBGÀLPA°Æ‰¨_Ý»'þÏ“øÔù?ÕøE5µ(“þ‚Ï/å,jº[ñB,V|Ñz/R"ÿÙá„+æ“@T‚ГPæ’HRÆóÑLI̸ägÇdÑ_Ÿ?þãÉÿùÍ·þ/’ÿÛ»»[;¾üßn¶ÿ’ÿħҰ= hz•æ.¾:Yf7­à>üT™ô&öÖ•ü÷®Lâ^Œi€e‹5•¨Xí^¸ø^,ÌÂÔֱκN×»bF¬ž,¸n­LUŒ`òqS¤ÓYécMØ1ºãÇj‹G7Ô8Å jY‡œR*ÂDbÅyÀuq Ó¦ú~ï‰æ)U@Qø¼!˜(ZìýS¼#hK *¤¯Q ÊœœP™ŽyI]!<˜o‘ë©òfÒRì” ,»‘bî¾ ©wˆlólS´$–­ÍQäâþ=Ï磤ç~ÔÆ(,Z íõy€²EõºÅBó2T;‡$T{¡ß³.©À¢MñX=Æ$·DÄ'X\þFO„æWÈW¢iÄ@Õ'Ý ‡ÈÝA„ºjhb¢^ÇG,²-eWaQÖ+ÄA((ñb”¥$’0±V®YJ=/4XäƒJ?– ©Y$€i%âîl¢ +r™$5ŒÓŠÙW‘ãüiui0Æ`½² LõH`Í{åA7L¶#ÓayV9•eu!ýbŒÒÐ$©Œ‡û¶¹zô“Ë?jDÜPt삵áp<¿qMD¼zW•¿ 3×’Æ¡+UÄ4ͶîÊ"‚\;‰3x0~3{ý§*³Ãü”Ý}„lØ*ìâ ® obOGO*Ö“UIª‚ïþ™4u.Æ/AÔ/@B•r©š†áð}IFu*‡»t #õ–j”™ "k­¼}?ê2“•Ân•Šq|mfæ©1Z8¢ÁxŸº88—b(i“Læ,›“iÞK{£[q:ͯd‰‹_ÅæižËÅ|2ÍŠ"’åS ¨^ G)æ5cMÿœb‚N泄`+U¼&$›‰+9ù ø=¼Ð€ærAÞâD%Ñ,¶šˆá´7œMÓéí¦*yßL—…#CÜoaFÈeb«̨ESãû £‰¯ §¨øËúWÅ/ëë o«?^x4Æ£ÉÊœ²Ÿ%¢]ýªø3û‡ebfÑla×,V|áèiBº”,ü‹æ¥mÇn‡LSáÆ %RL?,ávEÆÅªäo¿©ÖŒ~ꑘqíQkÎC$ÒŒ§š‰Ëרô«”°±E`)lUà.Y)NâZ¢4®Ôƒ01ÌïÕƒ/§"ø=º._CuÃFC®ˆRÇæÕ¶S«½…>©F¡èßdéBÃ14´µkŽegÓ 3¼×”:µB¹æœMó÷Rü±·ˆàùð†Šá°a±î°Ò6¡`ý•¥[ùè)íÅ5>8œãÛ¡¸GM7Ü] ý!ï±–~øÍrµ%ÂÓ¥ˆPœË%ಜ ÞƒWJê²C'“c56>>H­"7ÎÈ |ÂðrR:,éB¬ʦñ £¸ö;`[w“Þ"Û!Å7¡³å–û=¥ÓóR_~ËÇR%”:¾œëï+•ZÁy¦î‡0•Å}­EqI¿àÆN/Þ"Sp—U†èB …é Ô"Ò$+«F¢Z§ùrÀfVAZ¤°ø£c“QÎ`¦7ñô‚*L—cß²ù{ŒÎ¤ÖÈ›KcìŸRjäÅ»µÔ/^ „»ü–°dÁ_ÖW–»ŽYã j—Ó3¾ùæjn¥=ô²Èû–s†¼c +Q¥¾H>¸0–œtyìýy†IÎFHÿžÂp þWÞ©,½GÁIÉuîÃä™_eØ·Bíâñæ‰?}Œg®òy)kT¥G/"ÊaÉt©ìzKØT¤ú[¦«a›t‘Xóìà8†ñY¶§3ÙÍlšö•RY4ÀÐpkrˆÁðô4›fãÙèV3ü8;ÃËÞæã²÷ô,þõ·*ª÷qh^r"JˆfÙ·,WáYÔS?g|¥)Pº‚K%;)øC¨;B/윓ΞµÔk]óšØl%Qµ”0 ç4ã±áï­PÑç,ŸåP¼›Ïg¥ƒj­±¬ˆ¿Z(¦'È|XSä´Æ. rº² e‘,à\”÷߈m‡…c4Qê±=wþ§s-}b i^Ï—Ü”Òc†¢ƒ2ÝÙ1F¢ –pIûÛ©¦—¶¤'m’ø3NB$¬Õ{q]!º 2 š$þ>~ó໳’zÑ ÙN×{­ÆòF¹•Tû:û§}¥écG§‚DV´UPiú0x Æ • !¡Ì®¹¯aã|Z«üý¸Œd$De‡°˜»µ—'–‚Ô@@`ä"·îž& ^"ioIÂê¿h9–¥Æa¡¦`WõNMX /èhþL­)aóÈÑ% Û¸*&g(÷¢ž§©âJ+(ëë7WlW¦ðT¨;Žç»ùŠ!ª‘ý”U…6ûrM¡ÜÊ‹Ê2»Žó%{æÌAÍU®I^…´f[Ë/aèPÝWù”ðDð‹Ú7*LžÉ­°Ä†„š"¦yN[xÀGóÎB‡“¼Ô³Ê¢"‰ógÐŒ÷™­°Ê^TNîÚúYÁ(Wê–!læ £€­ÛôvÁ!b,Æ4D jr°eRkº{´ÐEô©`c‡G¤?ŸN}Ë‚ÓdBèØòÓ¬ˆØqil[̬E³ qIØCcò³ÃLvØ?›yPƒ€¤=цⵤã¸EYósò_…ùÊ™âwá´Ð®:sÙÅe0ƉoÅÁ¨M¡Çì^ fÐÑAžº6TK`€¯XN ãd(«EÞÙF©^†€e‡¹Ó…Ñ€Xë_;> wˆ§ M»½!Dã;œjXOž˜c––1¸x°TÝ*@ %¥î_ThùŠ4žnyá'+…}axúSŽÉ…Á$ÑJã…Ö²áêâ)h¯pª6›Þvhâ«ßÊH޲a¢.zã‘„ë;Ý~”iî¦AÞgb¿ž‰>xò¦½sÞŠ+¸3i#*`}LëŸÓ´V«Þp+gàèô%C¥Ã±(æ½ öFçrÔ"‹Ú¼§•i7 CI•¯ÃJjܳk*dRÔ™ÓÝÖë§&%ˆ~ap1ÐÊT¸¸~l‘(;éXŒ”…á5Æ€¶ÎiçËó®á Ç`Ê0^½×ò¶¢…y“Þ*Þ£ B3Rs°¼@é¶•3 ¨º£o„#é+ÜA—Lg¼ Ô¼/|Õ•hÖ±‹`hÍGÍ÷C5…‚Ù jàü¥Z•4QŒÂbëF¹"R,ÖD‚…Ý]E)–ÖFhá¤q„8 jùó­µÈÞR¯”®I,¸ð‚ïÊú^Êž±þ¯¶ùªPÊÈ.[³OÙ‡UìÄèp.ôÜuLjÕ¶Ì÷³³gyKèyÑc)áÁk´ý†/´û,â*;ù+._k›!&Ùu6½]™(7X¾g>¹v†úrWOJÅŸMRùÅ<ÕìJßV‘Lr/õ»‡[Bztq]ðd’vœg=xÖCyD¦å4v‰Ìõ˜­§êvÕè-Q£gk\ ÇdÁÆÆ„oé×#ü¥KNé8ÅuZë±Üñ²•†o$ìT ëT7¸ašà™àË‚ ÞÄE¢›X±¼ÁÆ «7z«‘Ž‹÷™³1¡½ÖxãÍ›ÄÈ-/×Z§˜1CDà+‹^p•+´ðꆯTÙ#P5]*o<Œ­bXÚkd]ØÂÞmû®œÙ-ü¥sV²$å¶óó%Z›ßÉê"πܘBòîW\nH›ÓŽ™¢öè·Œx/9Üá[ÏÉl™Á.~¾s0¾`"öÞWZé‘/ÕSoÊßq¤#¸› ZÔÐvTùו÷Ô7Ýí!?A5Þt+ûõo_›p<±®ø\ÊÊâJùUFëÀ8¢s‰ÒÎÆ¹ñ|+ÑpXl9'p2äa”ÿöâ³(EéŸôNÛ);3â•6§=o”SïwÏÅÜXZu38• ©£ôÏ} £AvšÎGê°Á¡¢¾í±Â)g¹¢Q ï‰ð-Î#ÿዽ—ÇûÁÓ“£·ûô: #’}]sb>F¯E˜í´[Ìd5œ½´;Zñ ôõ ð–xäÝúM#—xa ô"/z‰º¢*±SÑÓCPÝfçùüì®ÄH&„SôÑÈîÌSõAJk•a¥4pÎô4k›™)ñ€Ê½°2ÕH5Ì"âW†eX×Ýh…oŸXÐMövjO¼Ìæçc@P:‘ÑâÍY£¿Ü•á®f (_Yåìev3„¸tùtá…k)Ó³dh±U6œ©£â)?÷îxæ 9e—)«)³ÈJ½¥*õ\Sƒjé·ßTu¾ýª(  %ˆX̃L²uCŒò³aßÁªœ–Y>)c:Û‡ÜôÊŠöœ¢ŒnäXÝôlŸ´-êã¢Á#=à‘Ù/âòÔU¸*£³.Ô‹2tuYÝø’uSr⑵µnp~°¤ª¡{•CÙHàŠ´Ì¾äÐ9R±—øîNåÄV}HbCïnÀ‚¥Æ]ÜeÀQˆu(pÐsºdSü@ª¬ÝjÑ(iu½Ÿ)ö7߬@ý%¶*ÂîU‚–íK¤ˆ»“‰ðFºñÔ˜`ièö¢²æW“…IïV¹rK¢߈«ô2£ˆo]–LåºÀh&w0S„ ¡ª¢§¾&<Àdqü>œeWÌ&S,vÕTzk®æÛ•dº)¬]VH9¹è¨òQ2ðP»)†Y©îÔ€­@ô0ý¡ÀJÅx“Û×B¨ñ³‚U(XD+O¨Ó¾ÝÒMñÙh´sÚd(0²~\e‡z¢ñ©¬ªòãqJÈñ›9lƦ !Œº°ðàÌå5csÇjÛþF>"[¤Ï£|ƒnöoª”#µ3nåÕÉXþçÏg ê,žòãhç¹]zÀš8ÀF{ÁˆìÐ-ì¯ê #@‹.œù÷ÌÔžÑ=aÔh±5Îã¿èÉV”G+üuM3V;‰dÈazEä{$ƒæÏ˜–ÐàðyÙ,òU%¯K!¸üLü⿹ñÿ³<ýò+ãÿµwvÚ‚ü?;[;Åÿû#>k÷ëŸùY𠹑ÎgçRðè3ö"?½‡cùýyz=ˆW›âûbp`•gRºL‡gç3Që'¢õÍ7­†hKâá¿-P¡_Îûà’õÏÇ9l`³BW~“M¯†Gd–CÜØLä>÷* Oå_¸‰0*Z©‡ÈÇt| €&óé$—B NÑÀ;á4C„Á$$18›¦ãY6h@<ÙƒlÀ<+?‡q>ƒ\aÔîobHD¸áܧ¡¾qkÛ§ '²¼ÄCUÏÌ?&ɧØa?a¤Ÿ¢é8Òn-擉\¡ðÂu] òþî0èt1—íj0š–'?‹ã×/Nþkïh_ÈïßíC(ˆ7G¯¯Þ¼<Ø þ –ðÓÿÞâàP¼Ù;:9xööåÞQCîËÊûG²±}±÷VÂ9‡ò¿—oŸížˆW{ÿØ?¸äh@ËÇ{'¯¡ V¼~ƒ¶ žAŠ™£C@€¾Ú?zöƒ,´÷ÝÁ˃$K»}dOŽÅ‹ƒ“CÀý…ü à,žâÍÛ£7¯÷i>ïs!¼e`Ê(àZLo~&…;ŒPlËg…¨ ®ÎàpÚ¿’IóÎÐ tÀY‡7ëê>^^ÿßëÈëXؾ’`×7דÍÿ¥š-ÙDî=ûçÓaìïïÃÝ6‰P6ؘL³þçÑ4;“ó%›Â‘6ÆÇY?+ŠRcåê ùV™4YÍÚÎÖFo8K„\䯨ÿšw¤—…‚÷ä—îi6åàr\pæÕXÊÙ\ˆ<‘ÊÉð:•ÊÚ §Åi"ät‰‡Í›‡„ÜjÏί29ýÐq cíËrÿKê-òoôðAíͳîÎVC¼zö_Ý7Ï`‰…IÛð¡rmº‚‰ ÷áÿËÞ»wµq-yÃÏ¿âS´™õØ ¬_“…m’0cðIÎd|´ZRcBRÔ’'œÏþÖ¯ªö­»%°OfÞ÷¬w¼ »÷µvíºíªÚš: ægÿä"L'$B­+Tˆ±OFãIÑÛ½tÌY#ÉPdZjñvã6r×£É%CI‹:i².•êÙ`”L×Ï—ýž³[Z–«ºô‚xž&½t‚VpEæ:_EˆµVÀ¢g,r}-úëî/u¡…û¯ßÕÀ ¬™žFÕÓHB+F¯Ÿ¨(L=PäOÝî“,ªŸ%Ù´~ܺ^³\TJF!² ÈÚ0MØGÒ¬¯˜”1oÉé4žÁg¯Û¿J°|&Rä*¥’N&ÃJï øq¯†5²xà!uÅ87]¦C }pQFÎzú™^Of¶(zð^÷iwšª®7ÒOpæ`±ºšôzÑy28cˆvÏGãš¡¡ûÃlLÜ  FÄMäà–F9ô“«èízôf@õÓ c%cšûòOrÛÉ1núk®$û‰V£C Ž‹v»$a– n—£_&£îz´ûæ]t²ÿãÑÁîaôä1Ëñx=zÑ¬Çø£Ì;yd/åe%^~NåŒc‚}5°¬3Ö€n„+…­ŠªðahjICG•&÷A ¦ÏÛëLçVç ²f0±•ˆÇ)”"pve½Ž`ìat>™ÈΚ±[_¦7þ.ƒcVeW¼;%ßcÔãõä’7C 2Æ>¸Úá ™|âž £fSHÎUrÓ¿š]Ùš—¼˜asÅë”Y'œÆf¤‘\9MºÓÔ¦ëT7y„MCýq-|JD~åk2ƒjZ¿¬ œ.à§ë=#ÛèìŒá¹±'Jà»D9­'ô_}Ú¿¢z¨f¢1úNH$…»”„ì&sÚy2é1´y„Das+“_hÂÍ^:…5L¹¯/´>Î3¹MÃj jõ‡r“Ç­ë‘(ÈSfOÕáz àâVñ„ë›ã\²\éï—¶çºÄf³fi+¶•¹øß~Þ d)m eîNvÂHzÂ;G@·Ó”3 p š‘è ²ã­z{÷fûùåC»»}{o#x+¡†^ÓÀÐ&x<¾e¼½¶7ù·JåüúŒ”~ãjä³Ir•Ö³éí t9Z%:Št_½¨ú¶m>Ö‚FGíAz6 ƒPvt…ÑÒ›º¼â1à+xYÉnµ¸Š*§"8@ðfüÄkë¥MËúb_™òm|Bˆ²û5Ó¢M.º!"9ð’™`ÆŸFÃѤýÃÁiûøý‡Ã·'0ØxO BâüÏíË 55L-n st œ˜U!ŒSÓ$3‰!9³Kê.MypKóú0¤‘E§Ú*^§h AƒldFÊÐQÆ)·bî#r÷Û,À¿PäžÔqML™·µ“2:$Øø“á{LýF“‰ï²¨\üÍ‹ŒÖS*âREµ°$ÞOx ÊâÊnáBDªMÛ œ³³´«ë ;¬±r$›æÁòUúÃÙMMe1H¢jà(í¨Ç ±Ì©@½þçFu¢¶è)˜_?cx4m@XH¼”õ@ÓëKÃn¼A¦’7Šè% Ò¬rÐßñáÛ6©ƒoÿãÃûSÕ·£É°×&1XÐ ¿Í¨z–Û+$þ¤©NA=x'ލT¢vôõº%È*hÛ°<% D|·ÒtÓ§¥Í”s™ ÇŠé´_ïïžêj)&ýq…ËæP#/Ö ŠbÇËß1¤k Ûêþ·cNoçvÖVBûÛÆ‹zG/v,å`¥0ãÉà–Ñe.Ńz„ê³an"†<l?ƒO .ñ&‡žQ$q^£v*6tMBu]Žž ÞJ(h™o¯ Iÿ0Q‰µý¶{I9Ün)[dl¼¾mÈ­·ðë5i’ÕÀþóíFHóß·ÞþÈ?Æ ªö<ù Ácœ‹Ù×2S9•÷¦·cÚíD v^‹ƒd“Aãx?Û‰iq-ºͰÑP×^™âo³®<…ÊK£"¿òOf° íÞHdþÊ9ñ£`CÈH<æ˜ÓJ‰Þ¥=Vb‰÷2*Œ±·3âëæ-µ~=Ì+§F3Ò±(bh@œ“‰n~Ná¸*:¹Ç•}Nú¦S¶6X+Äçà6rÒªà5'_ðK!Ó¦‘5C“ˆŠ-φšŽK.‹ºn鬸ðÛ24ZI%|†&¸†ëêß>„1Þeã‘ ¯mK Ñ_ŽÛ¢bgŒl£AOÅ7ÑÙlȤJuðe¿Nz"Œ´Ï1£¼“ÀÚ½„.¬ú=þÎ`0ócŽ"Í0ÃZCŒ•ñíëƒöÛý×øw»¿´ãF{ï—#÷ŒTgb¾ûvÿ—5ˆö¯EƒÑ¾ãë½x”m¹VnM…HïUuHÌ»rпL#ûŽwÌ™¹Ï®€#«Xóôz`ÓôÒôŠWÜYQßt@ýŒé ÊÒ¥•2؈$ÃpFè‰L™ãÑïÁurˬ„vl7el>‘ Óp„’…A×Ép•¢.Kl¼pO2¹H¯fD ŽUc¨ÿÛîÀÜ×Ipbµº'î2‡Ž?“ÖlqÕy©â– p[Z"||“]å*„[‹¡aéDû‚‹?[ÆáÊÆÊ–¡’¬^³Ôdž«äl ’"oô˜Iš€xF¢(fð¯,aŠAoÿhŒ)n\d+Î{§ÛG“þgûw+e³h k ôß“á:¬ûÏk¼™®’K%{jrë)³M>–fI­ñÐ’L5Ç£,ëwÄêUùopý˜ƒz¯£ãý¿îž’ö´÷Ž Œ©ÑË(jn46åÍšpR~裫”¸Ü^šMÜ0XuYÕ·LgggœðˆªÂü1és’Åh¬@†{LÒñ”€;ÓfvŤb.Ifì`P\E—W¢¬dŽ… ¡Êj(â'«e’ŸÓç4³Ù †vá3 Å|¶ Ð*Qýh|®Ï ·1ØžiƒŒÏ ƒ"„1¼¡ Ϥ+¯:Â/¡d¤u¹˜À›Þ¤Ý™,8cÝó:Æ ²0˜,ÐþÒ'~¶I½á<5™èÎfx·¤Í4ÇMÛâ·ÈNNvØ?üáp÷°ýæ§½7Q:a„"fçr=1 ~9ÿ÷p6º‚—[@hÅØT¦:ƒ'Eè^yÆê°çÌÓµöœ›—IÄ‘E™îÁ3¸Ê†4ä”%¦6íN·Fja³‡ÓZªBøõOGæKͳNçLÓ<4¼Ÿß¿mäH·Ð_µåÂòùfbÚ=A["´/h¬¼q«42êý$e·ŠgÆS “®êom¯7ÏÎÎ6ùX2@ÆtH¶þ<° \FíŸÒ›6À“ÓmdÇ©r Õ–„MÚšY)}œÇ!Ȳ6›Voj†eÞhì½Ù’$Ü$º™½mB¢[Ò…;•ðOö<·”Âõ¢ô\&š&—éР†´Õ$Ê™ˆ\Âò¦Udy´GƒmE¶CèÌÓkfa|Ô8IýIRǶCžp’q¿¦;È«Q³Á]­‰º”;ÏqÖÉÀ4†S[…$S€¥†ìYÞ§¤¦(3¸>ïOSŽ^©Ûk‰&pfôiÌ…éÉP}ôeê ˆ`ö"Ìâ\*Ñh÷Kv{Õ jèâ4PF_Ä "0VO‰l…’Ó‡ƒÓý£ƒ½¶\¿}¢5²Þ\ƒÕ°ôj,Xe´{³H.WX•1«ü|K0Ä5ˆ‰„‡#7õØYCf} n=ŠSÃ2p‰4¬9ñƒ(öî›ÿø°¼×~{ú~—´¡7a9V A¼K`¹à'Õ€ÔC9uK‹nÖx«dªÀöÁޝ·0xÌd³ Xlòå6Jas°¶3‹Ý8àf# rmì¶[-\ôFûZh§y¤¦ÆÐ¯êb'éôXUªd\WD±ÞHm'‹rÖÎÉx½Ð¿03ÑR D\¬š±ÌDz—³eÊCÌÌwÅ.ÈM%8…ÅÇä8‰îñ%+·³€ÁÜ{B $e¼œ½!¢œÄÁ´Ã’Ô³š3^*3G( ¼¡E~žœ±:È %Œ‹4(ø9¨~oÕ*[”éò¾0½òñŒü£dcÒÉ|õž÷bh¸Ð<‚|ƒYvžã9~I'£hÂÇj{¡!_%ý"ÖôÓ$ÁÑ€«¦Û÷6X>3š8ᨇöjvNNö€ï»{ƒŪál"‚ÞS}b±¶Ì‚?hædï”ä…½_vßœbû—œ› b"Âi1‘M6oXv×qè$›tª'W|¦Äç«Ö:#J‡œëd¶+?|g/U–sôKΪ£Ö\þV 9âüeÆõ Û( \?÷'£á›UÇéä<gÎ/†è‰;Å–¶–Y é¶/6Îë d°Éšd”1£X G9‚t[gÂóù}¥Â3%µ+™”|eñŠ÷k×üÓèÑ1Nö³Pn!f³Ž0ÙdÒ| Š öX“³é’º´† 1Ø C$)Ju"4îònd‰<ìÈ||°È/ ögy —|Êd©}Ç„j=]_+ö ?ô‡·Ff7#ç3N*©“Ƕ%Ù¬«PR3ƳZï+3­åI×Þññá{@T‰’"7¨Œäû×£üWz’Ï=ùA‡g&–I_–q³ÒäS‚áï§½_Ú?Y”tóÑ'\â-,È—¦Š†Pµ[U'ßöÉéñé{Øy|óþÝqãaáNiáuÌGG×Ìd<*.T—qè´‘æ5UqÏ©uâ¡™¶ ÃRýÓT£Åî²%ÃMøÂrê|:¡­”˜Ó Yd×¢ÒNZ%'滸¬ñ‰D!«1š‚ˆ¼’¡q¼ÃKÚðÝX k³ë2DePÖ±3=’Á°Ðɤ^aûvÿǃýwFTf@Tž½Ù0±yl[* €{cÅûÊn.…w3µ’ìËn4ÎÙË.¼ Þ—ãŽçÕ»´´d/¦G¯áüFn@7¥>p1˜"ñ䬠(Ïßì5ô¨‚2rß½s6íõGþ€_Ï>!Èú÷3¢Ã)b>híÅÍbÃåµè¦Ö¢ÕìO«q­uçµî5È×?/ïäšèe; ÇO½bÂF¹j8èü±“áäÑ]9}Fœ‡/œVˆ…-ʲ,ád iÁVä]Õ^7ÿoœè&·Wº„¦96:Êqû.öµy³‹60aúuçò¶a¿®]][ Šeõ‹Â&gš°C Þ™†ƒ—b<ýµ 4®˜xû+ï™»KG¯m«ý:Š·‚WÎ’m4ž>á}Ühnº-f¬ÛQS=]qÝ1uÐ1¼~Wì|{^çÏŠÃÂëí’ž‹­DÏ֛ϭ­gÏ66šÍífœ®¢ÉpQÿºûËW ic8šÏÊ¡‘R¼þ¬oÆñóÍíÆæö‹æFºŠ&Ý„.á¤ì70ó"jÆ›Ï6Ÿolo>s•8’ãéJ¤•ý£}ÑÑ­Q¾¬@›:;ý©ýS»íÕ‡Sa Ýh·»cÒð¿ÙêËo–£ß ³zóþðäÔN‰Ÿ$âÓ/©’g¯j7f-Z _òÎößÒ…^¿ã$ ñÒžø~™Ì¶É5D°'&{ÙÁ+Æ“úhç8ìï6}@K˜@tðkóc+º‹>´–æXÝ ýô}çà×øcð)ö>5>æˆc¾nc~]4«FKôH²znQoK‡œ³Q`pü¡-|N]³‘0Ô&QaпÊ÷àc¾cmÿ©Ä+œˆ\KV&3UV<ÁÙ-!$KžD éåÝþщÈ]Y6Òã¿Ý¡=¾Á-å¬}\±QF‡)N^Fj‰µ'ÒâIlA¡]V“µÎZ—¸’¬®"¤?úî;œ"ÿu£ÇQãæŒþÕ–dÇ݃ÅÀ×¥¹íW«VÄË[WjIV‰AÂ/µÎZô_Kååe廤/­®ÖrëòÀ”¶¸`¥#v#°ëm†q¤Tòð”i0ÈÛã«áµD§F“êÑ É¯Õfí)~mÕjZîõ Eê,°° 8ÓŒ¾ËQñZô+'5ÿcÖï^¶ý.ªGõ¸ÆÝXR.ÝÅ äa‰MŸûÃi»8´upâ½›q[nÞ‹šâÛ8ÿö*»Œ×Ö¸‰9¬©ð1žû1É.ñéÙÙYøñ(ÚrŒõ͵ދ×ý$×woö0÷Ü›þ0ªÖé]³ô£Ã|‡ü%.ý½DZ㩓¤kGŽvVü>Yäi:N¬ˆиwÃÞävNóî[±ýƒ“בã áyf†ÆÍs‰5s=Œ>5¼²§¤ç7¢Fð{ßRÆNÌ2ø†Wžøi­€¶à±øØøÚoSó¯*„¿½´3ûô‰•Ü1XÐ.‘Dófº(MªOUf;ñÔ³B¶Pð5 A^™8ìŒÄ÷ÑÛDEuE†žwÀsGáC0‚cã;åÏiŽˆå6°³bûò~Þ@= ”yUwƒ\…ž@=+¬Eª%D…HÍfñmœ«¤Æ“RR3ç£%5<©ñÐZI¹™Ôloyd[xó¹÷‚éLs»QBf6ËFÂd¦ø…{~Ž½ÞŒIHDõýLOÃpRñœÍr°‚±Ø ¦ÉaÔiöxíç¨Eê,OŽ4JiV@ŸÒ{ Ô·S¨Í€"5ŠD•{^L¨¶ÜÎã¸Û+‹q5.ÅÕ2\}V†ª<¿9ñù"4}pÃí{P4n¾È1ÃævG©LŽ6J†!8Úx^ÀÏr${v’5ÏÊ8áfõæ¡Y¡"¢ŸjŠ.óî>vè¯ÚDÛ*G4£ÓrДA7÷6 Ù–•ˆb¾ã°áBlº[Ö/o´ÌZæ{rÛzjÞo« .Dô'L2>Þô&êÔ åknXoµ‚*mªÄÚÖäyMß×Ö\µÜ—¼r7g +¤(Ý;¸§\È@Ãn±O¨ê¡õv'¯T=ÛË*ö" ì5¿¦#…gž´r” m8„·Ï9 _ÓŒ¼~ÓžôWkI_/éëßåBƒqƒ@2ŽñcéÔµ(m¬™£¾µhØÃÿôÆøg¯E¶µhv6èž_¶"äÕ²;YÿySøp`±Ä÷£6('Þ´¦„º:›f’´øàKŸãê¤ǵÐ3šõi>@tY3¤R¤ýŒéŸ OÄÏ®›}Ü~‘%Ÿ¦4š Œ+êÍøèB½,L¤pÚ>Bå¦4Â,ÅiÍtħélþËìMNÖ£è§tØ•CâžžG𬮛·z¶ðdÌ,ž.ùÆWpçNíœeE‘sÜ 8'p¥ËO ‚Sõt}§ nèµäð­ÿ ˜öûRÅॼX!ôš¶–ø<öÞ¸7×=ÎT ü£?铦nH§àX”GqiJ~Ñ÷%6Ò_|óÉ GkS'mX`L^*ÿÃJôF³œ"¡Kœ$I“8a©Éëõ¦¾ƒÓ—A?›ÖžßýÚøˆká¼48þÇþG“ï)ZèËx+“7w 'ξfÀ²½ÖŒb¥–ûS.kK¿ èn4¦êä3Á ¢6¨Ëh'ú ¸ {žY¯ s,:ñ4ˆVÒº¡²„'éé½b3Ÿ!ΆpÕFPJ"Ë3r'GÕÉgš”?ïKÊR¥¾-ÿ\ßÑÕ×4>• ì1lR—ô¶ÂMUͼjÞ© Á]^Ã"U½©C_3¶ Ѫ×w.‘.Ù<vÑ€«r·Ä/ùàXF#iA*&QÎg œ[ ÖÒk>€‹æ®ŒïgYÐçOŽÿÄdIjVÛ<ÞÛ£Ïü®²¯ÁJí³åMô=ă¼ñ*n…eôè »&„>¿¥’ŸùË€ânî¾ÑËöïÎá¨YLµÍp¬Dã-}j™½!;`¼eËsÇñ–ÍgÄòòò[6ä¥Ûnˆ>~ÚRf°E6ù hüÙ|Ä‹i/¤—¤–­eë’D|í¶Æ‰ãéïj÷<™v?¾\\‹ì›[óæ¿–n; ’3Žæ7Í À¤VBEÀ£’^ïØÚ’r%¿’h€r8N6p%n@=DGÓÆWºÓW"mÎj…m(É^¹aêÍw“ Üæn-Vð_¯ÜÈ'iÅ0{Cù©“/­œ¼i©]'µ“Ûa Q§7ò€þ5Én…{¢¿ú»7ÂÁN8ä >®Ü […¼ª]€¹¶‰©~íì?Æ«•6¡ßF­´Ó Em;‘ÊMŸ[oi?Uz¶ævê2èê‹ Žâmóµz«Ïþ`¾È;o0Õ/bЯIÛ‡#&všó§´è),“ÞPÕÕU¤€»æ»7™ÎqƒŽìa}vxM„Ë—J'¦”Ñ."Ý)_ÏCŸd£tbÈùòÂÐ}F6U,¾’0,÷¯Ô²dÈ·ëª.ˆÁD_h{'$ívËdÍ΂í"É]eƒê-f,ËkzŠvûbMkÜô€Íbѵe7Ø’ 8#¿`m•6ÙjôÆýô_,Œz¸•T{7Ä=n[ôô1]‚Ó¶âÖé€Åe›!>ÿ¸}!™Ø"G®’,…_ÍÃW¿Ê%b-¡Xû}ÔŒ^JÓ¢–ðF|¡Øñù{ Á‚,Z•/Ø—‚-^ëµ(¦¹¯Ð²FõèI㉬½th§eša€ë:+»÷XSMYØamI°é¾~Ëþ>çýôx£¤Ì l—B–ª7²0=Ô0(#{ñFV{[gÖ˜­C³}îêÚ÷W‡§BÍ~¤Npþü0ÅÚàwßB ¼R_šü»o³¹½öÏnµû·˜™…¿Å¬ ü-,P¡˜¶Y¢ƒ=%ÃWúÆT’/+z´R¯Dõúuò~¥k›®cf]afEnfÂèn¸ ù+i+ã-þ+gGÕ~D+ÂËqcë× ðÛß#*ݤÿãæŸ ™„pI ܨ•Kݨ߯ÇåZA#o\Š Âu<¾-=Ã’ÒÞ§+TÊYì`¦¬x… 4;èo»¹Åke PUî[å.Yâñ´V ÛŒyëAª?•Xd^½ý¤bg{æ0ÃH·^×´¦k*N{äIË‚=@ñðiô×bˆQfc¾ýaˆ¾|ÓL ï‰nRM 1ÒO~¢ŠM¯pάL’'µÑ$M“‘á‹YDC±LW+7lþ}BF0ºtˆæS#!F¼õVx^_óVW‡Š loXþ¨âíÊÆoŸ^~t²îléî–ünEñÈ7†…ÊHË^g”7¦Ùq« Yv¯Æß"óy¾áäùFËn‹–Ú@¬Œ|á‰ÈAÈ ƒ£O(3å‡Ë4 AÌÍ2 Ó¤iáXw.!íÖa‡¡…Z6†¸ ÛëB‹ÚáB;f dXõWÑ…G‡û,b7|y›¹1XØ‹Ø _ÞfqÛ|ËYð8¾ct|’ÀJ ñéû¨‹eIó§OÔ_HP¹kÌ!wH¾òg(x}£àµòˆPPìæ)rÑd‚¨ã¼uÜ_®Ê•hr%®ÆÀv8&.Ùwêœ#wb8ëúZ1žTcæÍî FýlÜ«öMƒÎgMñÁ  ?ÖD Ñ£8 T¨N.ÒçBUs±vg•»Š€V”[¥ol§WMŒ“ ,tââ,®Íó5íèÁA=‚äÉ©ñ6§˜9˹r}“¨i‡aºÿº-Wðü)c«9ù¾ŽàEÉ(ô¨ý¦jNjV%q:„4ç?—µö¥´µ¼ªr[ûzHf÷ÏM柼îwo€ksF诺SQþ4TûÊ^sšŽt(j HõuR¯jLRPc Ég­¥Ù`sþ@Cgú,aL ÆÑ <÷C·QG­³$##I¬–u)ñ=/÷(g‚x`î^ §ì97Wh¼rÞ¡L[‘Ñ=žÕh¨-}ë‹Æ· ËP]^W@ ~€N­Ï©áž´þö¥êþhÔŒº<°üÈT¢s~Aeþ~‰!è8häç‚1ñufë%7 ·ØÆ ¨d®¥G05RŠ,æC½ÑdVÒr1¬—µw†õ,¿@Ì¥ÖÁ `Ïž£Ùhµ†F»=î9¿¾^¬qnüÒpíy”值7!•ÉŠnkŒ½Ì‰'nÕ³ÛÝ`¨ÕC*ð\¦>+©§u”k)߉÷® FCïß?„ïTÅ··.vÚʵðåû÷2\ZSQb&´ºÕêF³®Í®RMj캤±O£éY5Ú=%b_æ·.ƒšÍ­Ñ›¸'™4ws{ߘ¿˜ª·ùªþ {s•KT,…)´U5.˜Yé4êÚ‚NÇ5gTµE ñÐ k{¦§ë|×ê)@åìº}í²-¦[M½)Ī„.Ú%ºÖ1ÉXÌ”'z4r«^gºcd/ƒ½n73Uî5´¯?ð'û\´–*vg£DìJĦD)ßkØ¿ârâÖË7§¼,<#^Ø3”MóÆ(sDè¥kÞé(;☳£y,Ol!—+!†²d´^Íþ0@“Å`ÈåŠÅ^±9¤µŒ²z„u±[D\›ãúÐôH§³í2S×] ‚L“Í&ÏÔϹû#góa7V¸î®é\×&ùœ:æ–¸Â,nn‚fŽC»ua±â‹/UÄž2héMuAcl šÈ¯jÀØìÞ3ǾülEOã¶Çz}#ìðê2b¶§O8+_Øzˆ~¥EØ-ÒIN|…´uDQ/”/žûIH¦óã•Ãív!Ò/è–{áórsÌíÁ_aæÙ‘ ÃÌåŸö+ æNÌŒÙÂk×v¡@ÓWPÃõÜ­qNxs}–örk7§z™•Èë¯ðmÃ}[5+ΆŽMù`±è+í3WÐõ¦]Wwb„•ˆTbˆd©ê?!U¾39‰š_´šƒTÅuhVq¶9“.Ì%.›‹3©ègt­›_ûlë«×燾ÊsÿåªM/õõ_¡aéÔ¥.qdªL1š,رnÈüU´¹r¯6Æ—º/ˆZfà‘TÏY‘;)ö‘kýHEØû&‚¹MÇÒ|Á…Óô¶Ñ\釓Pë¬7l-Zí¯6k+¼OÂâ}ü¹Ëó~9 )òZΡ'ßd±Žzô®g„€K’èù’ÝhTôH Ä!–Äèñe¼Öïc;µ"ÈØ÷>ÁâÀGp3.&uãbbA·Ë‹°P7™1G†NÛÚ=ý¾âŽ96x»¹®øyžQ¿lyÍw¾¶ùN¡ù@#Àø £¿ôÛ½w0Aé"F¹i>ì˜BÑR2Ù(^MÓaö+ŸâRk1ÂÀâ4Æ&~làÇ&~àx7ÝÆgøñ?^¬qX*q­˜«Å\/æŠ1׌¹jÌuc®kí&×nJŸÍ@Ȭð;n q vµæÌ¥˜®¢Óÿä&h‡±ÁƒÜ–á5y4Í­m]—´Ê9ƒFêÒJ]š©K;u4dF·ÞT*/gñ‹Í­Íg› ú½¾Rx“ÖiK|¤M\ûïqcW»ñ[‰Š#oh˜$4Iw*—æ6ÿ¾µÁ×™¡o~ŒÎÓÁ8‹fY.¿g˜R…p¢ÐÙÐdõëóµNûHRŸð-6Hž;ÒÛnz BÚÉ,‰‹IGg6Å oÎ Ú¯9´ÖËdh[^¡h+´WcÏ/^¼o_.Ô,`C0¯×o诼£æRî G‰þašög°×·¡‘a‚5“C£˜0¨Zžù"×ºÉÆ‘Ït¸°¡\;ÑÓ•ßi‰(6b=æÏ¹Ä¯„©[¹ ªó)‡ç…åWÎ×r-Ÿûþ°ë{˜ÃD=¨¯âhw«#ƒVÞ؟ÿzñQåªß*FvÉø$PS¾R6òäM”5ªã–šk\j¹776·¶Ÿ=±¼Æ˜ R[V0ét©u-¾7·äîë7o÷~È—4t±—wÁ"øyz|tq«lS“ÛU6oD•}.1ðy„1 Ì Õ8Ì]KûGêWÉ7[>( b%‡/¦v‘»k°¼V4ßš L¢Ù˜ÃXà­öðfj]0YEÅ™ßÊêjVƒ,þd÷ ŽÂ»82~òŸO˜GwÁ?Ÿ$Oàç¿ûÄ0ñ.Ž¡{Wp¸0gc`—z›x¾ßwKe»1`C\é´Èr3ù<.@Å3Ow!@6?æa¡‚\—8&®`Ì™õnˆÞ¨Ý]MźŸ4ž°nà£<û¾ˆþ¡ æ¬Íá¥$±×h\U»àR°¡\k.žd`ÒÆN!9]ƒó˜å⥩Ê4‚µR«f«04صŠx­hÕÚ›ý*þ 4 :ÍX¤ç›'ÑDöñ—'¬_gÆ›ýþž*>úÀ8¥0ëJ +a ½£¬¢µŒú&X£ƒe¯N4D£Ñî| ÕŒ dcO/^ô‡³T•<ÝÎ?r´îáûÃöÑÞÛÝÃÓý7mÚ‚²»½‘<]©®<%àµ'Å„Xì9NÁn6hõ‡$7ö9ÅîÕK½,UîÇÚû²ˆSf­ÇeqD…øC1Þ•w‘¿n¼B…A[ÑÇá«óñ·,®øï«ÚN77‹XóJWù7‰ó›8¾»”çjOŠ?Zs”)ä{PHuñµ’ƒhÂY”öÕ¢55ys6”h|4¢l¾›ßìÀ 0ˆŸ‰Ç#ò9%>°ë½¹¨¹¬%—<¨8g˜Õš^îQ­¹™«9L£GšÂ¡jÅŠy›O?US1£82ìN8±ÿý^ŒÁ™{&¶òa¥‹üú v‹ïZôqÀp /ãVW%òÓ×ï5PèÆºZ$wžl¦uµÜ|cüäW„OJGAYî4jQéÎÏ?㲣˪„LoÂðu^¥e^£·Êã†fenb·<ÖWôÒ3rÃ\4Kq©!b Ã@w¿÷†ð0ò=3ÕEB=ùM°hJÔŒ‹bÆÛªøGÁμl(BàŠí Éó6oYˆ­ Ÿ¯ÕH#ú7.’†ìXàM,†•›;ùÕ X¿/O2–ÄáÉð¶=VçºÃ÷×O×!Kñƒ–蓮ÛLÃ\¼ö¼ÕÛáF1<”Ð,ÃêrK¼•ÓµðnšL"‡L"obwîp³/°u¾¦çG(îK|f 0§f`pÅ€|'¾`œóµCÄt8»Š~3µWœÊÅ/íõÍÞ}¹”$-Ÿê#ؼâl Ñ¿æÅ <´iùnNÂ[I—âïÅO¸7æfî^Œ|™’¥q#b]âÎ’KRSáD±D¤ŠVziwïJÅ䢙Né°Zuûf¥–5øÁ…R›çc¥Vìb-ÊWg?gŠ–üßá 8X ¬QØyŸÎç$f*î·T9"’P#i}ÕÓ¤²Æ¯ZÛ¨c5'‚3ó¡æˆhêU3öÁUÐ>±iõÏ4rÑÑ:î•ìc¾U«ch͸é}›«_û[ÑêjßSÓ`-b•?,&‹ÍN-c¾"Ñ‚ß ŸU˾;ûaV¡©'ëb`ÈÕ6Y™µZ‹¿N:ß|E8ÌЕÌEÕç*{ Í«D¼Â&†´VæVˈˆÌúi¢ xZPõø ên`ôüpÊ^6oÎ;‘oõ ãè¥Z•Ü;Õ¬.ôÀ³µ¤#}I+x; òT½Úyo]÷§Ýs*,’ÜZOÆO^º‡#<Ø‚l¸Â$Ìç:®˜FE€'‰b8ŠX–h7SzUJë´‹H ÝÐY50w–¡oAäjÜÄ/ éÂLJ zUg{¤CΠ]»`± CXF¼–1ŠTM(š)BV½ãðTz‰+)ÎdýÞ¬bžŠbÊÖY˜ ¥"ìà?yÊbbPúk,HŒ=d©’+ÐШ!”Â.B ãÖöÅ|èKŠE™PÁ@”µ4Ò“@—ÈÈo¼N²'ÌŒKˆõ«ÃÉB«Ð$>×Ä£‡·áNÜ$[%±_újŸ\’ð7oyû,´fÈê ?‡FË·U¹NuÍKa@²ñK;›Ñç³AÜÊ—Qpç@VpÐê0ßšïpÅîmânÉ<£v¤ -Xw/ x CÞ•„¥Umš ïà*5WE™ª7kœ¼Ÿ?í˜ðG‰~Œ É|%M×ë ¢d<~0—½®ÆJê"¨¼€H̬áí•€_« Zd J’b¸†ö¾y ©Ï‚M+† »²Ï¢Œ­ŒeTl2â~`qvùFAvçwÜ#þÈ”¬qÆì€×ih“­€¹6­>dSD݇¶Œceú‹`]†êRÂIœéÙèIQ!ÕjÎnNC€l¨5%ׇ¨óµ¡‘R½y/•ÂËëÈ¿^îìRa¾Šdô—¯v-©›™us'°]_Ö”Dy4`O:NiÊP4”£Ÿã–Î?í35k>„ѨTÿB+D6Zȱ,™u»Hà [ £ q¡rërÙǤæ²EŸ§=¼…/.lÂñB9N-ðŸpåÁ'¿ŠŠøÀƒ¡5& K¹0¿ŠqæóvÆm6H­l£Ú-`‰ü"Þn3­Ý·ƒþÐM¬›I7‹¿-ÍF„ó¶5£›¨«ïçá0x½ „ÎrÜó{A~.^F  ÷2ÖšÆGÉYÅËσÉɵe˜'åÀi s·hÆLa'oÏÆº‡.}«§P%wbáŒó>1R-»[÷mÔpO–Yùp†?7¿ÊGkUu‹­;Õ_ðŠO_"V(¦æÒâÁ­Ü2ìrN[m‘ÏœQD—¼´÷E»‚6 {þáLÒ÷м„eGçºåJ¦éÉO|uÕRgoCƒç8È]™Pî4O‘íD’f2>Žþa.‘Ð5‚ªÕ’âŒ}DªWå† ú½Õ‘Í<ÍWü\OGvkI%yŠõ4v{Âzû.䪦ü6½p^ÉF’ú:½Ä'Àga¿šþ>¸Çh."õ¡¬^Ô}TéºàmÏòW€ÝÒŸy]Êþ´¾à6Ï]xMÍ2noÁ¸·!k¸ùÐ5dïzäqš\I=èóEm’]'c¸É F×uö¡Ã`uj:/íÜNqõ­ææ^€uÏsX7_ç¶d¼µ–ßFaÔâ´^Þ¼F@—öòŒß›j’Ž6¦ªA[×yc*ØD¿ÁÁ¥Ç£ÙcÇ;ÿÌNG½¯:r7í1g÷¨R˜;kS¥¯qÓ°[ªC|q ̱ià ÅkRŒü6£Õ¾zX–óç‰;fkÙ¶NØ:8ý G*7ü#½/Å„ÉÃLÿes²M䊔&žÈú’-,+ZœAõOJÓš<]á˺Vž†$Á~’ˆ ÜÒÌÖQ«²|&’ŽIWÈ$Å;iËnd7ü7“ G¾õ:€×ñXk‡?vðŸ~ƒÝïžÂ˜xÃx]cß—t˜Íh‹þ­Z™»?¼0.s[²9_É]w››üo4ïæ Ct±;ŒÌ¤{ÔQ?‹Æ£,ëóö¸ðB`q>~NØr6]áh wk3½Ð} [¹·Hñ\‹ÒõOëkDqúzÍD†›‰q» °ÀdÀgWÜG!íäoÙ ºy‹Õs`™»h¿ —ñ³oäÒ´•ææ®ÜŠY˜ñ· m›May™oeMÞq›yÉ0Âä ÷¥Ó¨PÏõ]Éúf°-;vâ}A¦¾pì_L›jï7NàyI¿]ZºÌ ’¤?  ™kY’‹{³9hš‹Î—±ãËZ+ÏzáÒ^€ZiÚ {­A°¨‹Ó›«¿˜ß6A-ç%6÷ÓTñø$Äeªz*awC£wO–^é)Ô;M¢¯â/Ô£?{½WÈWÀ>Fâ[„xﺳq“3mFÙ8íB/åI=~Å2õÔÜ3ìé‹aŸö áTœ|·Þ¥æàÆ4jXÄâ↢ŸÔ®×Ä µá\^ê­žìfc·êÓQÝÇÄ„)â$ÍÎGƒ^tdæ6;Äo¹rl–’©¢háFç;<ñ&vVȹnF—dïhUL^2 óì(±–‹ý#šàì©p ­úÇD­GÝ+>árILÌ‹êõ±ð¶žw:¯F$ ·û>Eeštz àc ÈcFm>$‚uÁÞÖ-O˜Ö‹·£OM@€ã;ÆœGÀ¦ª*Ûóå¼|’‘Üyéõ&®H"¡;zÎc’H²Õtý¤ÉšwP)óž-]¤#Aè‡!B¬Û€A±%LB~Šcžû =zÎ~ÎüWÄêy”õ{)ΩýÄ1©Úz½á¥M56q8¾›ý3Á0®”â&êºL®g\Ë/ÅiˆQ$¸ PøFYSl!_4 „D @€óÍf H>Ç2qÌÈ‹Áê`Yã×>"ø6ú ×ç%ÇN¿*GZ‹øc›£Ånl›Àt(±}n;ôÖ°”îôN•gsa„ƒqÌá§rÙPÉœ.þ5æÄ´Ž>˜%Uxç%ŒûèºËùè˼ñÖ>õj xú=t™º°ùgKÙ¿ù&ë•ú õí,ýéå/¡áî1-ÙÑ;¢¡”a§Ä[£Él r™;º3Šú›«¹A‚óD#‡KìQK_/ìú±Ê¶û¸æ¤¢ÇQµÁA.Ä™‚#Ò^¯ õý‘™ŠÕ~}£iÜ6‚ÊÁnðûŒÅW¦×{ù$+lG÷\ÊÀûÄÉ<ÖkÂ÷Û((–ÌaŒîŽ»M%ÅC¯øku4á0©=†éˆ¹…)ý€"Ùéñ£h–ŒÞt×$¾e-š¦Ù´­‚?7úªæ¥§mÏèÿ/ø_â5ãMD{Û`𨙒¤Gmá§®‘,¸xE£áÏPX&Ÿ½»¥$½©ªÍ©Z¹Ř~!þ®Ó“‡ÿÌø¡—yÕ˜/ôkPOFL†~’Ëì¶÷÷~Ù}s*@!TÉT!™SÉ ×¥¿µÍˆª~y RƒŽ~=àŽñðëï$ZÑFÖHU¾ÿ˜ðÊ+3I“ÀUàÙ#Þßîº#ýуi›®Íéš Ë±ò/ðgé§tÊŸª5ß/ü‡½öéûŸwßþçÞñû—¹ú$!™sWüÊç‹6ËŠ¾}ÿóaYáÖRè ÅQE§Äq3@Nw½MQ´kÂfþÉ^ã_X6Z—+ùO¹@^y“ä'RÅŒò”D4Z­ —þ„nô•À3~±c|àÏ~¢ð°wÔ‰‹6Ôm¼ô)—ÚáÑæM¹Q}úŸý‡3ÿaâ=D2(ß§µ'÷Á».Ýðî–ôáeýÐx¢z}i\®õùÈl¬¹‰¸áÞÍÓ/O^.°¹T4ŠÉîˆ=Qñ°HH–o«.){¥òþç­¥œ7ž¶ ñÂj( ­µ3#gúnÉżÈÅN‚jÀ,6Û ÏdKI‚ÍÒðr…¼xÒ"úŒ[Ï2É%ÃÎWj^po|9kc×IuEœoù,’KÆÛ˜#E¿EÅ\È–CÞ ³G8–„]½ÍNè’H=©1DçëLmEèduuø¥<$Š«/…ãs(òÉbwÍÓu›p7RGÖT¸V‚Û<\Á&ßçaËKcšö¢$Õƒ,¡×¡4çÖð=½ü@72ýºjé¤|w[ÔÑûAѧ/ªÎˆ)wFü½ÑÐ…šé”a¼Ëóû’m‘©QnšuKzŠCó¢ÁXIýbó1UÌ6býø…¾¢½„dyE‚=ô*zûú ývÿGöÍÐò_üò% ú{S ÝÛ¦¿G= kx0¼³P}Æ/ ’¤œ’FþÞ{âé@Ô;ε¨iùe$ý€»HØKî¼Nfȹ¿N•?Ì…Š 0Ø6¦ª ‚s¹®¶qÖ#œÂ£+gÏ%lʵ#Ës ËsR[õ1Ävm|¨ãj†øýÓš0„r¦;"~g³ VOv¤IoÆ´|Ãi&Å`úEƒdò B`BòztÕÿt>e·ë¦ÜSÅRŒýð)[–œ‰¡5Þ†=~_™)jx¢ÔáÄÌnô©g+à€Ã4§¬-™/aòØ%C'Æþ-yð¬,;˜È2&Cv-Úž!XX­|æ„r]o7 "†N¤Oú‚gæqÿ‰óå¼`*,Ï–­Ço…¸YËQ‡GAAƲQh+íl:LYÏžŠÞר~Õ—mÌp“‚ê“a8‡Ã9sˆ–“¡7‰`<6µZÙpl5wþ祳pP¯úÇÒ5ƒwÉ(Æcàè,¨Ê'F:äs1åy™C¨JpL†Vrò¡C Åa˜Us潯SæÐqÅM˦Ʉ³MÒþ‚6{6Bê°´un£„T2‰X2 Àûˆ¾Ç«—þ«œFsÛrY__øgp¾2lKh;ŒîN;¦fH¢nëSÕ_q¿+Î?‰|Ë/>–ö˪¹–¢Òé5 %ù1zâ̘Ðý†vªx%îp,OÄN HãðtŠUdNˆoÉÞ+§RSûñ«èT4Ȧ!¶rÜÀn—E¶O·s ËwôÓ‡÷ÚÝ=ðu=JI·Jû°ÌæP)¹ñˆ:]'“^Ô04\?nøëýP·ÈIÎ&)B^h6y*E(Š|‹i®)?Ô:ß\ÃÔ¿³FûüÄux šÌ·hñ¥¤©R©W(K=îåQ;6èÐ`¹tÃè6Þ{Â÷^”ÇÚ€.s9æ Kl§/œ$JË¡ÝÙ¿ ñó^õН²’RÂ;>uª9_€½ I‡I%-à¦5b^ˆ1˜7TÜŠ.`öÕBj 2{ÐŒ‚Íj’Å_ð~Õ¨¿AB[žýñ ßÚÐe ËÚt©J ::;Õ|Æ¿˜ïg½†é£Ù/œ žªý„f­z™sA­údH«E_–nè1_<©„‡ùº€Ö'ÁÏt9~ZFŽƒrÔXÃUm’¸D5ݹî’Ãì –AÚ\9*EÙÆ7 ¬½¯ÀC%ÛBk/¢2ôRÙ²Rɹ¢;m‘möÀI˜6~¬-½0í"R²—ù‚ÿßÚ´”EßE[›¦G¨sÉ»kkkC+F¶±‡rNúö vÁ¾zåårՠ䦣KaMo4…ŠNlÔò Ê/è½TȺŒ20Ûv‘•¡Î#[¬™o˜h®¯ø|jñØ=Ú]lY–üe~þ6±†¡÷†QØFÉÎ Ð)¥Œá½ÓÏÚ û Àû7ê¤Àâëþ`Àh=4"+Ì¡x8;ÝРKsçlh0bCf“ Õëðè  ‘“6MT£M|ÝȧG³©1qõ‡8Gî½”@V‰ NÒcõïjò¢­/ç¢PÌQâ­™€?¯µè4 Œö ‘úÓóDÜtyTùŠz»š]>7:³†KcVĹ¯Ô¬Ÿ›;b<—^I°Ïâw”@¼‚Í¥küÇ´œûà¹á7pMWƒdåœÎ?& ŽaQº^¿@l9[|Œ\ ;æ„Q(Ç…;qôÓ=Á;•³3Ú£'jË•rzþ`M~LjÓ7CÅBíÏTÏzê G¿C!€)…6QW½–B`#K½„á;ÏCóùà)üÑ;rþ¸ëâŽ+θóê:\Oj0›R,¦™¸ÖÃh-N[=—·G"-õi6ËÐH¼4í½F}Gòñh–öž“u;^x‰˜ôÙÅìqG#L¬M ®DÍ¿ÓW Úá»ýœÓ¿‘M¼0Rj¼É5·,P;ìßéá;ö|G½zåW ³1b,;Æ´#>ôôÎW½Q¹nßv2i½yˆÏzèÌmeMNTºØæP9ÈÒƒ“×-y°g¸ŒTÎúwžn·Uuåã˜FŸ:ìäÈÀ–˜†:&âÆ:bïIV.ön5:jLŠl•l  g—4µ7Ôq#G¹|µb+Šl¹"˜”TM[Ú/hªNÉÍkÁ¥´ABjÉIJÊ×:Ö£ D 2øÐ«qÂg ,]NUÍ÷nA®hó % £d)˜pš¸(Eç°|hö[šv°×陿çâªqøD¡±ïàmŠÔDÜpKûLvDÍ Y' >ù$À¢œîF}ȼ·¥·üÊ 1A\NÆ~°z¥£Zø)ù„¹}‚¯ŸðlN)àEÜ äFbnÔÎ°åŠæ‹„œny…›aa¯].êµ›yE³°¨¸õJ¤Œ Óý³3;<1i€ ¨A˜KÕwL:0ïÑP ¬“†üóWµ‚̶¬ŸÒD–hĤøŠËçžo·¦ð,vF[L}fÑoÍÈû•ЙV…[Ϻ¶ ”n‘ö\Áú^ÐÆœ®æùv…!t´ºìø·}Ú&È™*i]%—©€R³œLÌôrî„‹=„Χ0D¨Ê'̓4ËDB¤ÿfƒ±¯Æ>R 0‘<úÈYlâˆ%ZÇ8´é£y{çwaùÓ£Bƒ¦½ºmË9}J^²wJhXpw»ÑÝÎ3p™a9gûÈÜ%>OÕËæ±Û°û[Ú[ÍgDÊyVð$\u7À(2äÁ‹äÝ}0úÔ<26*ÇÞRùíïÂiØ5Ö·\Å;»nU^Ι¨ËëYbÖ™ L3€ï^…0Ð¥2•¨_¹ — ­ÆÎvB¬ó6wÆ^e\YxPI€0Pð`Á¼ÐÖWñÍô™Á¸¢>΄Ð*¶Urk1Ý£D_' Ü™˜?(k\)z"É ƒ |çsžc($¥Ìw´se¡r;Ù+¢NRø—ztŒ¾¢ Cõ¾ºiPåU~©qêxh²üá[–ÎÜ‚Vò»€Ì<ªúhg‡Vòï‘%ÝnÕ­Ô ý6ÇîCò¯@ñ¨¹ÿÌ^Œ×Q¡£³@cÅf É£p@Èç¡ZËê|‰zPbñn`^€(g·üæ ‘Ÿ–ÝeŒ©oÃÔÄ'§Xcß2'‡åÞ ó@"ÌK8o_œ(9ß[*Š åR ¨P¯G]ã{‰Q˜á†¥«d8ígY%xÅØ4½­Kñ§yÐyÀÑ'‹’¯‡½É-#åÜtÐó™'g¦™áù}ãÌÛ÷Tô*äî7Rš3×kîaRÖ½òSžð~…èf%·Iš‘2²@€ûŠþ M” F‘QÏÿÉhÌùXE ®ó\õ—ÍDÊ2ÑÌß¡Õ9ËÞtÏ\°Ìmßêœûg(û÷ˆkµ/ƒ'O_ëÕÛïìŠäΗ¡ÔEÞùMÍ“Ù;`mHŽÁ{•ö²ÍbÈ|1ì+)Yž”…§‹ãV½=å›qðïû aÈ›á\眥-¨=õ÷^­$Œ@~4sø`O[àƒ‹ÍÖµ¥ÿ^š‡4ßÀån“ð‚9F~÷ÑøÈ!Z ”Hë¼òÄ”ï‹RÆK×dÍ‘NWÙïp®ùÉùm¼~gp/Ôü`@:A­âcZé×_9# \ïtõ0[O¹Aïn1k „8;¸Ëb§tPÆzÜô¤ÈNî ×*[Ö/Cø_½Ú±NI"w»é˜s»×lŒi¾`ÕU˜÷rÀ‡­Ðaï4ñ…¶Há<Ö[/dY*[8ÄòsýáSv'E:ªáÝ{šÛCž\e÷μ£Æ€6áIØFž‘¾Ñe~æ÷¸aÀ„¤ !ÈŸT‘cÝ9â{ujµpŒžkb¾ðÉë|áœ_}(ý/ØWœ9¡çK]?b7,Hç¹Èü{tô AÔ<ˆúâA”ÚÊþ;(_ÃæÌÜã&ÀTlÃ…-JgÕDUó¢ö/ÒÎz™éWtG©É™!œ- —¾ãýÀ*Ÿ ìPxa ˺ÿ“‹ 36æF3sk¼óϹTЬvÅjÝîÛý_pŠoÎZ«€é™¤õuÍ©¥sã|G«òÔÖWaÇæ¾äõr.²'–­Ük}µÑ§nùj¦–E»ïH´ÐvS9Þ/gΟïáËjz.¼Y´Zðá•®ëÞüU,¸gÎG¸à!œ•¸Kó«^ów! #‘µ¥b-ËâòÓw—Í-°4/å"%­Ç®ÓýoÑõ"ŸI³8Z-´Ä ™Ìk¥`C™cíXd™ÚQ‹ëbÑ2{L£\iÜc‘ù:gÏ‚é©ò5¾Ÿ÷r¦¼éð¶ Fz3—î™QÏâÆ~¸ }{þ°)%øÒò‘zÁvõèŸ,-'ö© ªŸæÚ/ýýÆ|kã|ÌškHÃÌ%>†³Ô.¸!OÄÓ/ÑPœ ðÐÒcÃÒŠ~ÿç¦u·ôçÛ{ìúÙ‚¿r%ŠëÜáFþpsÊçÃæ(þÞzæÈ;WÊתÁD¨»ý·iNó|>ç:}æiQ©Ëï|#úŸšóœfLÚMxÔ˜d#Ég÷Eö6´G=HX—±Ï*ªÑ\lœèĤٮrý!…†9ð25AGûgšÿÛ$Ó«ù~Þ|MHµ¿ž®¯iy&²Õ£º¯¯¯™ÐJuqBˆ#hÎ.‘2 n”zÊ4ã ŸØ×ÒvÆ>¶-­ ùÎ_’ìÕLëgQÞl^2¾±½ïàPͬ–RΪxrÖ8‹ƒp„UHޡ̣ܩL ÊùÈð-Üü›½’¸Ë¹‘"^"òBTºz˳¶ˆ™š¹‹ Çsc2’Ñgi~“ ±àÙt4ކ£ëïuEØXÁ÷GXþÇ ®›ËYÕñz:¤“dØ%ôÇkä˜E¿tò™à³ÉÃøm'#Ež­o¾à|Ã¥àÆú§›°§ óì¹òÚA¨÷YfÆt&¼|Tü¨òñTù`ª’¨©»¥|+¹Frm䃱 M.JÑqÀ¹úgX“t@“Fp® É(ïÜ’ØÛÇš‹s¡ÛG(oÓw kÚ", úBJ/Üyæ…b¢BA"=¼ñ2¸°X“,Çgvî…gÂ= ›i¸xOBXµÊl>ˆÉï–>qÍWä ­e£®Rpk©t¼AG‡X уv7¹µÙQgö‰O3S i šð¼ñüY4I?õ3¤ñP…ÒXÕR»œE'ÂÏ]J]¾ô27’ÐÏ ’÷E˜sêbN‰·“± K@ ÌqÑ ¹XкƒÎõi‰$ffN±Â×"T%yc ~Ìz‡*!u·°/AÕ»ØN*/M>·ÅÉ}^jU¾õÄfQ•Ô§+¨ÓЄp‰ØèLï j-y·š/EÞ?á¶ZX²•ÖøŠV¯¶{ÆWä‰$ÓJ-wú ¾\ZP §êd5.Âð^( fmzÙÉçT4dÉ[PÁ•)„sb>\°Í¿ÑK¬5oÖ J¬ =a-šò´D“E¦ßôyÚò.i‘Ñãþ ¢èd5«‰ÔÕIåÂWÚŸøf"U²HêJâÔXBÚ \O÷îÃÁéþÑÁ^ûô§ã½Ý·'ùþMoÖY¢ýi”s˜™iš„Èd æ¶l Í "Hï&Ȱá‡Ý[IOm€œ$|Ë}äøꛀÅwÜÆò’Á± 2È gIR³(‰„ÀnúóÖKV*¼Q(cjÕªüÎÌÕ«úÎUr#—I.ez\^<Ë1Þš] tÎpÈÅ‘¬yõ©öR®n˜LM ­ÐîÉ›ý}“õŸæ8ì³q"ë´übÇFÑÑcüÁ\+pÄ× rÈRíjfÁí2ÕA?În£ƒõèdš¦BÌŸ¬s*° ñúçó>i¿MFÝõh÷Í»èdÿÇ£ƒÝÃèÉ \™3^â¸Y›ÛÍÞˆúhÈaö’ÞTâõè8áK ؆œðÐXú‡—rB{˜o(Î®Ò ÁV6°‡+)Z bÀâ>Õ¼B¾^Ø^¦7ª½ZïçTbN {éçd8Õª¿ÍàL3ífÏ2°œ÷r èïÄØ{ܘÆLf˜U¥¹ý@+ÅÊÐÕ¨—" ~“()§l<½Š˜v?Oxgô‡(7½Ñð‰‡rÂOé°¹¨°¢¬~ñõˆbD:l&¢iÒC;Ú‚‰™âýr–ÂrÍ úOFãäÚåð@¾¬ïÝå¡MðÎ±Ê ŠÒf1lˆRDŠ-dCÆþ›"M{®ÌpØX˜ùqµ$ËfW¼%EÓ”K)8’ö¾±™#µ;­äšöè/ž¤h&#–ÖÜ †ä·¿/Ö_„ÿÒfs]Û8åÞ2/äu”Ò `7†ÆJÊاFÝf2]jWëº|ó8µ…*,#þDÚƒ\™™Ð—]É¡ Ð`5]•ÈΈ¿ë…*\Ùï[o¾àÅÕÊ„º:RžËæ:Pv’^ºci¯¤ZM˜öñÉÿÕÝw.Zsk[جéÐ #7MŒæ{¥Åi¼mÖF7c®’G™ü"ø¸·=uç¤õñ$íö9å¢é‘¸­$ÁGXŽ$ J‘e<[6kܵ¹Ðdjq—7Ï´N6À¼‘¶PYFHu êÍž?GÎ NÛæ[hHÜDkš%¤ztf•\÷Dyº³ûâ® ÔÐ Üì3 "ãÙwŒ6ˆË%rœóºÚÕZy6쯸ÕF€é¤O\”™+í¹5nž€ÙI:}Ù™Öãœ^ç@ÜÞ‚¸ßêeÉdxÆöb!Å ñÅ‘JnÜ” 3UÙìT䂹ÌTW¯'Âv¾Š=f…™•öÒîxªK®|'&“Ü]Ù|šÁ¿'suµ‹®0é¨Ob%€öM@[„H Á‡€ Ð2©6#I`¦÷ì’ôÅÞ*üØvöÏX°ÎȱŸ%?˜$¿àÕ§Š="l†¨ü%ÚÜFÕVë6Ë&gÞ<\ã^‡ ¯eнu’:ì©BòՄ鋌N–ò¶ŸHé)y'®AeC zîê7¥|°‡ÅÜãECâ´yS‰@JŠp~KÒ@+å>¦Q¤Çý GéBÄ"H²2¾îD.5Á-'¸ä$Õ 3ûô_:Éæ¤øÙ_1Жôû‹W…–‰_’óp%Z–fiµ¨Í+Ü®I¿³-Ô¶¡®˜íßf}¤ë´š,¸#shîZæî‘g±ñ¯å+MÔfåj0ÂÏsšÌÊ jòµ <-ïÒVÜçQño_ ²õÚ •§> ±8ïå3ï5­Í¹ eQÐ"ª«oOüþ¤[NŽ]V¼ùWœx…¾þ~“c?ïÞ‚ËM¼r÷Ülâ•|Àµ&„ë3>á;ŽÊãSRñ…T’6ô­a˦çeœ;ýxî‡l–Ö ñ™Â¡Ô?0«çŒíð ÎðnO3#‹FK¾ÃáLm¸vÚ¼â¥Ch˜Äæ®Ä2Ò`I!µµ(g%Èßù ›v—„é5Wì¡¥·ÜŸ 2k{1Óš§"ØÛ>”—üÛtÏpÜ“oÓ-¡õj±­yâgC^¬ªÁa/¢#®9SÞÿDCr…n˜y»×t·Ëñ¶¹ hŽsßþг–8çªA²¿ NaÎû °ò›õäÝÁ>=U룻W¶è`ô©zS«üãÕ?øÏx} £zSÇ_OéÇŸ˜‹ Ò´NôTj°G©ƒAOõ“×Þ¯èëšßjãVúu8•Õ¸DÓ¯¯…šRG*²TŸ‘(Æâ¦½ô¨(LªuÉÙM7[¯Kî•`)ý6Ö7q£I4ik{{ãÅóXfEã¨sž•i>±Õ|±½µ¹ÝhÆÛÏù?~¶Ýx7·^4¶¶¶ŸÇ/¶éåç4º†Br©N£Ó‘¹MÂ7–à-‡ ¬›ù¥œójƒ•˜à&Ù´N+M5N“ÛŒéË`¾RL|f“è,ù<š¬Á׃TyöŸŽÙX-ÃlŠÑ‘¬DŠ‹Ôfg–«q:Ì ¡‚§%ÃÛp4¹´q£3©é  L -bcÈçõ‡)öGÌ5ž=[“úàx¤?¥òç5ªo5#àÖ38kÄ›¦pÉHL¯6\Ê3ÌÀ^Š®ŒEcñL¡ª?qZ±ëÔø”«R{áº>ת՟SÍ’;S"}˜dԴȘ?.Ù¢´ÓѲ5U³©Xb4Kmßé9ܬ †‹Û(|£<à+Içb2ÈÜë/¢°£¸Á-–½‚S޹{|5â<>U ¿ácN7*7T Ie6šqG9qб½‰äFDÑ"Çˉ¢2šhj#œâ½ô>£5U׋µ}Rz“£“uÜx鎢#‰YÇzúA^ ÊâàÍÝõ8qÀŽ*|`Sµx(À›~‘˜´ä–æ/=s';BF©:G‘fà‘ì¬pY¯³ä§dÜcô2Éf¤ªSägåÞÑãëËüõÂ5¬ÐòÞñQN<©#ôg4èq¹kçûšN¸K æîÒæÄ]yÌâïõ [À¿ŒæÒoÇæ˶ô„VõÏ\“u}-IÈ.m5¿uV‰¿“Û‰ùï¹ÿ‰ÿ¶¢rÁ©i® ¼/oùRËtï—ÈkwpÉr½Ø¤ß:0ÍÚ-¶M<ì·fæeµJ³ìHJøJôëÈæÀQËŸâ4•`À$µå%X$ÊæâL†E—^qùS·Õ&N´lR-ŠÏ”jpbîÁ˜Ýˆü—\¢Ë·{qrBkv²éåŒC“† à?­†qä*¹jqÓ^ÒhZužÔ®ÍW‚#Ò"%ÃØøªalÙ9šNWiË­æ:¶Ò½ŸG±ï»ïHŽ^¯“;Ñ\,¯+±g¢/j³CCnRVèãqhNK&ü@ãúà\wÐK‹„Xla§æpòç+ëñRŠ2ñeÃlz6éÂñs:ÎD±‡ìùð¹œn—^>2&×BÝ“z( hAÈ.9šÙ.Á\ú)Ჩ?ž ÌÓe[·)‡/ ©Kq»N|êònÛÌÎõXºæñ›&ìù'×ë]´uùD×Üåwf`ÎÇÙ¯¹y)¾ûÚ¦ðÓs··Y¯°ªø˜^†!&3w•ÀE, µ´j2d^Hø7Ž×ë£|Ô&–Íðp@Ǥâu‹—áõ>²«Übg=XÛg ‘²^´<> +Ö´ÀÞ¸ï,šÒ;à)¾­8…ŸäOOá2õ¼pkÉ ÔO¢€«D®ÎínpC¡¶\Fûz'r#ñ¦JDºÍ”§Xã;ã•«2µ=êW °»rû¥t`Ÿ“îB­Ü!G|®s" v+ÆDIÉ¥dö}­€7Ö·ž ²øh#Ñ–sßË-E‚E æ÷Hh˹Ö7Ï bÂÞªyqÚÜÚfr‚ñ ÈD!Ýf˜ÞLqà úÃÔ·êqÍl‡JÑrhà“)Y¾É\þÚ5NçK{´NC«-ÚrÞž“ç|?ù†òô‘“@ ´¢¼|¥/ rŽŽ.¹®½Áõ GµCÖK ápÉ=«…Û iK×ý-žÇU½Ôxv5nÏÆ®Ú½5p¼+¾ºÚÇú}Šîתy ”*b*ƒ{|~4î9¼ËÍy3ŸÐžõoðÇ»É0ÜÞÞ"èÝò¡·ø2Ôµ(7 ÄÞÅ-¨ b@ˆ$‹ˆs¾ôm"ì"A¢Í Sr~JÎ1oùPÝßÎ^ö6¹Á¹^·78k3ÇQò‹m£uÊR‰Ì¡fžã«G!Ò‰øåÄ”™“R4!(dñˆS”»¨pÎiÕߎìņI´Ì¦œeã=ò½»ëG³"[]m8m[Ušù[š)ÞxòŒ½\ ¿¡à6ÉXF¤Ê[ b:+½l1—y¹ø¨Z‚©ÑS’MüàÅÓ•ž³o”Å?å "ÿB.×¢qÉše3>›" žÓC*½øùì.RQ °ã«ØÁy{¥`ØŸ—~ê+2J[oÑeK¾Ì/‹§ZÙq.2Ûݽ”Û7ú¡©‚mëÅŠ²´_‡—Oõ#€i>\Зm2Nüå6Ê£˜¿åcÍ0ÍUN!½°W‹#;Þe.½¬ñë–¸9ÕÝ\™¸ººâ(OyFÿÚÓØ+Î`ÛÜl¤Ë~¼Œ"w»fN¤¢ *¨êû9V8¾«Ú¥¦ £;ó©¹]fnkØ+ÉËÍÕŽL%ƒußÙhøO™£—oÞ™b8…2VV“)› GWH_áàè É«%Aµ—úÊýéå¢ÖfýDÔe2*wí'«Ö!ú™¡ù”ÿÊÄçéªù“¹¨*ôÌFQ,mœÛÂr«8ÜÕ–ÉÐ’ë°C²^-ÐÏ–ÊKim*u’+#¸Ív}’«z·‰šÞ´ëòé,ØÏ†-¾IäY|mŠ‹¦*îÖóÂC[cXkbó:/¢X¾]¿ðñ⥜ôzÑw‹6‰‰Ý1Õì9ýýÒXd§Îà¬%’°Áuάǫ–åŸ=ù·J1øw'rI¨†1|N‡ì—#UæÐ$2@f/ù¢a>Moß-§7½þç~FmÁmt“Š$âUÀ¾ÝëK|ØD ¥“ódœq¥ÄX°9Üø„›jÍçâN#8!6ßÕ’á‰Ãâ¬ì-ž° 0ɲxJttDòhÔ“ôŠ•úS® ϲÞHJˆŸ”õi¦þæì¹ŸL©ôòú©ßöl:Cà0K\ŽÒ\Ù¿Éa"`Ó³çòÃÃ;Éî–¦¿[Å~<#„CHÍŸØY;ñ…cFè(©Hz=í/&=®!÷qè;#bÉ©øT]:W/'˜x{ÇÑ&¯E¦?Ú&×É4î)´2 §A7)ÀÖöM[573_t³ »?YÛZkÔj¾d)æP£éÀ1ʦ·ž”“™?_²9šoÎ ”îS'[¢ŠµbfËÊ®swŠ—±MË_ŒE·ÂBß›5› EQ¬ØÏ®lý%½›é>"¹dÏ鄳SgFF·dAA'ãrÁdôln|Ñ+_d¤ƒ‘¼+‡—߯—Äa PË^N²;-ú®ZqÇ*)·é4ržÆWظ¨ŠC&*H°¬-ÇÆpÍü^¾éů¹9äïD8áiÈ7É3âÝð}„‡®ïVǹÆyñ“m#±âḋÜñe/›IØ>ÃÚÉ1,‘‘#? œAîË ‚¶|ï‹ÀqáR°b¡ø²šrÍÁËžï’Ìv Ykç)º›¨–Sï¼[.ÃTq†@€ÉCo.¸REÈzÀ rÍ›Ê|ýiîüôοض³\|#E‰â=LsÊ÷“ÓŸ.Ótìô¼ ç\«˜ê‰¦Eöe ‰²WÜÎ8Y Ù†±ˆOWjì‹f3˜ƒ€³Øn¯…‹J—|&V)zóÕN/„…HÜ·zìBÍÁ‚Üå€ÞΔ;ÅÔ·+Ül*ð&£Ú¥áF/Œ’èæ‘Y>›ÈìOÈ%’³Ž¬oëël¼#Šùüì¨bIe»Ýfþ_rÎÁúïéÊ?ùOCСó'³éùH®M`oÒÑÙôÑ5ô÷Ûäs¿½[~LnMÔú’ÕÅŸ¢Ú­Eñ‹ñ~nÃì|0ëB½?M»çÃÑ`ôI#n—D'¿êgLŠÄ2ˆeÔÏÁIý³[ŽÒò"6scQïK44žMˆ‡Id7®>=Ky¨pê¡|âØÓÞ| iì¬~&êqHCëS[ÃÑ´ßE”²ø‡"4Á˾0÷%èΞ¶Ú'ÝsŽôž˜*Њ04Do¯¼`þ",1¹B&ØÈ†G½Q—Ã7¥ÖÊfÔ¯iÆÀòô§ý“èäý§?ïïEô÷ë½ýã£ã÷Ý»÷6ZÞ=¡·ËkÑÏû§?½ÿpíþ-Úûåèxïä$zí¿;:Ø'·ÜÝããÝÃÓ¿!ìò0:Ú=>Ýóá`÷x-:Ü£Ê{ÇÔÙ^´ûÚ9ŽéÿƒoöO£w»Ù;A»häxMÓëÝÓý÷‡èÁ4½ÿ;ÿËþáÛèÍûÃ7{LJ*}·wüæ'*´ûzÿ`ÿ”¢ÒáÜ0ØÓ“è‡ýÓCŒýzFsnœÑчã£÷'{ šîßSÎ7ñ©}v5­vfgk75DuNÒLøBB„[&¤«Óà˜.üHa;èÀ'©ãœ~$dØk#N©}Bê¡'x+sjÔâ'CråÖÑ0òo¨§uû2S%½Yƒ[Ò]éKÐóã,µV-Ç0ÝÕŸè%»ZS‹ 8¸±CR;i¢i@RÅõ*¥U’±ê›|ŒÈ;²#G8Dˆ·‚ÙÖ,¡#F¼Ó¡® O·ýÛÞEÔò\qL”kp^f¤-9«Òš/ÿßÕõfoYƒ¼ÅÙ¹…Õë:b«d€‚}B¸“”+ØäMéU.m<¢škìŒ7Z¸!˜Oo¥ºÜÈ~)‡ 5SÅÝ»iÁè©8º™öû9¹–/g¶®MNêÔ9R…ÿwçAËàšÏÆíÊ5ÊñÓ_qO³Ó?Õý$¬8{|gÝâ 8Ìû e„É=’Î!Ë]nt;vtõzÉè|P.“(d÷á ›k.•”·=ù×K+štD4ù?ÿûïŸþwñ[=^ß~šMºO/>3µ[?ÿ³ûh4Û››~?ÛÞâߦ3£¬ÞƒÏgð¸ÓaÕU{ß>~ûþðào,‰B>ãDÄõXŠL²Aø9ô{mÚWÙ§*½“)2ñ\~ÃÞ'EÑÿÍ^ÒÿËkA²Ô{ÿÙ‘}]5Wyk5žÎ™à@ƒþÚ©Éô Dž´÷OÞîW³Îz6msT™™5Û¨Š èÿ@XÞŸ"ÅGÔë#…Ûhr»ìàðÃþÁž  áÀYO°€ ²§Ê„ÍÕö!ÎV=1ßjƒé™Ç)­/E*²X—Ü´gÓ³çíî)D [Y+ÛfãÅöª_‚eaVÍDHŠ,˜„Óü3Y~aÀÌÉm’¸:›—¢)•é±V÷;Xc„ÐÀødXºå7ðb×ÔÚ‚õúÃYÚ²ß!rs¤{9Ðt³ZÖqà1µÊƒFëâajÑï!ÓŠhF«Þ”V‡<©üøïÜ =”,"e[Ö¦M-UñMG94Íø¸yؘ¥S®#¦Öš?k¥ ÀI»Ì³."¶yÖæ}^­Jþ¸ßo¦Ú<²”X åvŒN@ÏÍØŽeI,19O2CKØ{I {å ²*„Ö<+‹öÌ"2Y›äánÉü4¤à_7¯Ó2¶“ôxsѲz+nY«RIF‹G¯äS«˜±—ŒûáÄT.ôž¨‹%çìûvbêÈ¡@ˆÿ¿´!*”ÿyñþt`±ü¿Ý¤·yùÿY¼ù¿òÿÿÄ¿?E„O2ÚòÓ{Ex±.Ηëƒ÷ìš9·‰¥éí8…ÝÊýÇ’˜×Ë$ãÆÑîñÉþáí·{G§Î–UøUëiO¶M¹Óã¿!©Roý®ÍGDfÚmDSÝÔZLÅøEÍ~j{[{£æŽÐ<üð¦Ý¶mÏfÃ.½N¦zÌÜnW«Hï@@Aþ¶tHT\»6·œõÝ7y:œ]±— 12âà ¢ÿþ×öÁîÉiûðýáÇ·zïÞí¶q>ú7Øê}Røöþõ¿ï½9ÅÇ߃oÞ¼?Äë—¹×ïÞíâõZðú¯»Ð÷“¿Òk˜øòâ5Ô_Íîl2iËù%só yæÓô¼ðz ?œÜ;bÂÔú´Ÿ Ì'báøs6„Q ù÷GWÌ0ƨߗۨŒr8H>eütñyšc÷²UÂH”h5.ˆÁ<¨ M¦¬`g4=ª¸9áÊ\’õ¡ËhâÇq2=‡”ŇòHžÀÞ=o_“w½ŒÅ¾¤W–°¤â•oþöµÒ5‡­"3ë;ü¡KpX¤­ªýðØÎ3ÜÛ}GÓ°Â"• T·@` ©f5<ÛÍ«èÕ\O¸bèýñ‰¥¨0o„H¯‘1Ï¢¡˜'B ¯€CÚWmÓÏ‚ª%C£oœG ô‹AE¯ƒ}2ƒ›¦À|îý‡ õ<|d)Π&éå…Su0D¹¼¡WòJ ¤ Ú'¹7Ž8zéaîWý`Gp%#áíi¾—Ÿã<¦rx[ƒ]†îÄÖÒR|<ý „6„â¬ÃÒR4Ï£`ÃÃÔEˆçõ"X»½@Ë{Pd„o±é¿j3øÎÛâ±›Ÿ+ýµÿ±æo«p#åQz> –¯‘¶V\¢`!Çù)Û¥(½½J¯ÂÉ”}0Û¶VŠj\ªÕDxbµ·œ¨ŠjÿÕÈfs£þ›Å…fbЫP82ú´Š‘Ë{7HôŽÛ R‡èuÒé5ªÊuOËÎ8ãc쎳âÌÁXîN*[âs/zÔÞ$k_9ú»{wÁgÝ´ÙFgÙùüõ“Eõ¤êoï^ù»ÜÚ#‚]q|¯„=ái%jÂëªÒÙÈ@X–ÜF]ÛÇZ®¶Úî.>;3CÙÀ ã¶;Ý+¶ºú°+â;çÍ{¦jl¤”,\‘Fãàê9yfwÒ^CÛyUÔª|„è¦)®ºHÇDt$×Êub蛤$™ÿ ÄŠ1 qWꮦ-;ßÿÕ¦3ê\¤ð÷ž3Ÿ—Þ|•v>—ÐÈ­—é­±nSc%TFwÇÿÃÞ·÷µq$‹žͧ˜ho‚„–ÄÛ2ÞƒA$ìbðòØ$×öÑoFfb¡Ñj$ÇËw¿õêçÌHÛ9»÷„]+ÒLwuwuuuuu=HY `€ëñ [ΣÄåú{Òì;A«[9Mú]€vèÆ#Äì£1<rm4m+Î"½úh¤³vXá»: ߬U‹±†–¥D÷ÅèËŸ«ƒNÒ rA•…uAIÁÓQ,Îc:.t {žÃG%>ãLÈ ²osJ‚žˆ6 ?ù娇.š\¼ê÷Ë@¶BeÉc€ˆûŠ¢ $Q%ú\ KÕ tYºÏ]k²Î$S$Ò%,¾çLéÃ0©uwŸ»–Þ0äDz&c¯£ƒë@{3¹õÿìP­Kÿ¸>äé Ÿ"DðµŠ}4knßÖ«êjõ½®aYဳßPG ‹:‰”²·Eù²=dÝëåe«ßïóyìýº˜2½÷óOïܼ¦pÏyìJøƒG=v5|ô1\t ‚£‡-¸Ù«aقÿƲq.*kÙ“«lç> À+Ärð‘Ù¤¶dýëÌ3ƒġp¦ œQÛX,ߌ< ´¹åɤ—OÕÎ;äšKŒ#ò¸‘wlxĹ~æP¡ão ãJ¢CÎ!© 9cƒJS|$7èâu„£~¿üñê™CÏsøuŸ”ÙÇu?ችÄHI䞔ѭÈáwǯ_µNy¤ÈÖ§éjPòèÔ·:Àdˆð»DˆØ‘`T½„rñ†߬±<" ¿ÂU({“—7a_ëhõ 1>䈥èòKŽXYÀBÈ|¤ÌuEO¤‰aUL7?æÐ»ÙQ'ܽeÌøÚ¬×(îv6EþqÕÕбÄüA8{ùôUÛÚ#ÈÆ°r!ÆT´å‡|"}ýz7s‚ü8íxøoŠس#Å¿ÑÂéNüÒY¼@ƒ%KÐ|(Ò¼£³G€GGz3ŠÕ{Sò:üˆNæœðâ*t1òKÞ±’ .ñçój°²²¢@(ÁÈZ_vöÌ8Ïq´ˆ]8§Ê@òM“ár?úõ‹˜õŽ7ÅÔƒ×4¨F¼©¸Óš¯ªŽñø™‡r‹Ç}7kOwÑ«²^Å]$£b•áôóüVµ³ê¦Á*Ú¸¬™yX§\[Ø<öÑ;‘a µj°¼lÓ¯ü’¡Èš3Hžºù6óGåœóaëôq­ëáøŽWç[îG!&±ž¹n Ø¡ºóšç~̺L›Ga1ç¸ÿ†œÃå…ó²÷Øü¯Ã; ë˜ypñ›Ç:”(÷]ÑÇo¡ú]x’¥èUáii·}ûþÞ_1­ÁAÀŒ€%ÉÇÔlâÏï3hxávàlÄC† È%ÅÐxn»µj¶åù4/eU!­‚vüƒ *ý¦nWc=ÜÃ6 ©ñ…ûÏ·ØZÜqÍ¿·˜ ֽͥX­Gæ¤ÎÃ@xS4z¾Q„6zaÌÜ<£]äåŽùm”1Ú4"Ç`~-¡a&ùqбñZÖ8B½¬f:s_ÐíLA Ê[«$[Etl¤áÙy2¸Šn×Êl _Åä½G•]”o{µ¦c$∭Qj+m¹ô›- SV~;¸¶;øb`"¢:€DŠ‘¢H‚ˇ~ùž]>\´lML¥]¿Ò]i7SIèh¹ÎÏF”ÆtMýøçÀ¢¸QV‘Ü£XâXh ÆØmʳ_~“LÆE¯ÐŸÏy£°f•¸ø]üX>;3±VSR(qŠ/øîÝ¢»ŸCu p¬_¼‰Di'F9ì`„p¬<šïzíZªrÓ* ŠÐ‘ç΃’÷ûÙâó` PDu:M‡˜R—v©Åw—‹Í¼R=·T/¿ÔØ-5Î/5pK òKÜR#SÊ)6у(kìÕUUr_sRcÀ¾Ê Êɬ= Ö‚—îÄ™©;ä}#x÷nò üÉ êi⥠+Wùé ?ˆ–ÛÑE^Ø÷;Ùv4iP¾çÂVµx?±}`8]#pXçUEµkwý$×ÜîÕn÷·j5ZÿòýNÝî¿:8°õZ„ê›+LÔŒ¹¦Çäg[ß@%Í(ù€òI: n0Ki|H’nw£ðÏö,Xó°Áó€ôx€á`¿ã…&êü`²h#°pªîÜÎdQé#Ó”·fói£Òôzü"m‘fê`^ýƒ‘vHûÊ=æ9ܰÙ4P»­“¦…)›ËO3¥d®×Ü>åþý³lúBµa¼ ÷™–^Rpä…]„—û$#]<ůyñhw¯õC2îý´{º»wÞ:Õµ‘Å?å¨zäH ši²Š%¬ž¹<¢õÂIlX„?ŽïóŽ;Ìû%ùMòm­VïeÙ½Ê,ý9ùC’¾½¶É™ôâ)ÍÒøj„«‡~Öô% w©«ûd±p-<ã?t2c=[ø‰+Z„v]‘q¸lï…â£?ÌÚr_ýR–…v?†a„ýéö\2$1`\-Ÿ ¶˜G’ç{IãÕhËgµ÷ö½1n;P ¶¥&Á áŸXd䯵٘­ÍªÝ aîMõu]^äÔ¸õñ‚4¯u¾8mº"9a‹ëÚ¦à6ó ɔا2™ ¡“Œ¡?ùˆi .¢0&¦*£Á!9» 9d§ÌŽí+ûàð—×­çx?²Žö_+”±ß«ùw¥7y¤‚_;v¸-eŸ_ Zÿ÷s#³ ¹:^Âßå¨ÑÔ@)­ ü”›«¥®èbÖBR~§Ú³ìèx»“ýü|?{Ÿ^ì_œÒ¿]œœÓ—Ãc8Óî/Üz:päK›zqʃ€>ãÞ]Ù>®y²#Ók@“ÈcûÇÈþ1ÁJbºi(¿ä¡îš·o-hUëû{ëûgëûsëû½ Yc¡;<] >y>î'³åƒ{òW\ ržŽ’î¤C|Ö>×±­;3;ŒYä&@‡‡å¹&‡l‚U¨ \ÒGò{T‹£P'ã¬gV›¡3º5±Öyô`´ÝÅ|ƒ)ÖÌŸ3έªxüxÞ3E&ŽºôË a¤X`S»ú¦Ômx;ÏŠœª$íŠÇœõ°\£)€ÏåÑµÇ ½KGºÜ´¶ï¬Š+Û=Òv5lu¬íæ©ÇøUÁp¹ª#¡¤*ó:›'Ô@éã$èMF¤Ü„Å@ƒ…r^g·óºÅ‚ÞùêâÇ“¬½ü€VŒ¼XÜXÅ.•7f˜ñBÄ [öš•lŽÖ*×p˜­o²7_Aä,¾y†¢å¼› {ñ¨áÚ+Tú™s‘y l´•yx°{t–}*×õy³+qœ qœ=/|qŒ ô1­{ŒlîÖUÌ‹ƒ¿L*Á;$d8c +SÝû‚?çð`¨T Ê ð£çÙÝF¿¬˜ÖÙÚ’4±h™k3\`Zõ_TüñZD;|ô- PÕ³÷Öê‚5Íiܪî4ë=¯øö­pº]«·[•Û2ëëè¤xÅjÂÁ¢¥âFWg¥Òú®Î÷^ÍÚêÆ"*XvÏöƒÓ³fF þŽÂÞx9ŽÆ½åßÒd°¬¢Œ-×6ƒ¥göV˜3{®ÆÒ=Ê +zm8HÏÞ$cÌ?A±$<E“ûf-?“´¬Ï¯ªö¹®a¿¿×2¶ß+Kв‡qÖŘNäîâœdì„OþÚT¶^Dë×+²mý3½È»›^"@2cY—ds÷´dôf«Ï—j¸#t`‰4¤7‘¾0ÈnSVЀBµµ: `=ë<`!’ÞíX¼íd7]wëÁÉIÄlCMSæÍ&5grÌ ÕÄ0 èÃJ?ÕCÂÀ4ªt8ú²Š¢jÌÒ S-3Äç%è¸òÜŒßóaç›ù"ðúDòÜ„ͨ ;&g¹ç.fõÀÎú˜•wka)¥E¹ö)È7jÄQ8W3CÇ@ 0ÒÄæەD &ÔæˆïæíñDJ4­èsû0›Üpv2k<4TüMã7'R¥m%g1÷š|«)®Ý~IQÝYÑ]o YxH&Œ‹ôvH• àNø½YÁø’=HÁ‘Ñø¬­uê´a^œlµ_¼~‹žÏµÛÖAµvûê~`ÄÄŠé ÇÑœz#(œÐ2ÑêûTaÉ~|ÒƒÚñM*yXQÑóEKI:'‰ùMH§c¤8·æ™ŽË‰Ã¶â†[a°–2ÖA vOq2I%>)ÙšG·Wá$…Ý•cªÊÕ¦ Zt×ÃÜH-/T5YιºìLheIú®'6æ{瘭ÌKÂ*§øã¤g.;¹¿ŽgWº*ž£¦ÏáNÖ™qPgÈî&NuÒ*›äµñQUÈOhÜý^2º†‘cSe˜µ^|K[„÷#LÄtÍN•™ ×n{½|^äP•änÊ¡!xgb e¨.È ôc‡D3+þ·Od›Ý晵b¯”`‰L²+Ä_¯ž´ÿÚ*7ªÁj¥9/DwõK½ë±€EÄ Û˜*"‡Mþ…AÇåù㵊HPU¹-ù„? LÈü ª¡Ë“üšÂE…¥r8VƒE¤.ÎÚ?M D17âPåvÜ×Y ˆÒé„/ƒÒÅ¥5½Å…I3Ñreö²0kieÚã»B]Œ'—ç!à7úµ½|JZç}zZl¬\ƒÆVXÝ ~¦L4 xÅ›9Íqý qsm”ê»w976-¡Æ©œ ߌ˜A;ËòEÞ^ ÅýÀÙ*Þz•Ÿ>}?õåâÍ? úgXA½}Ž•GîY¶H¶²OɆ…eϽ#œ*nê`ÓÄÎ%:7`ønÐá(z&„žjŽOg|’5õÔÙ§p*„ª¹_Ϩ¥–†²~¸0;ಠî;}¨­cþⰷ̳ñǃ–,¤+—qÌÿ¡[ìtˆÉÖR4=¢ÈkßwUHDø” …§g‹•R1VUó^5óhÎy'ã,ÊÔ<°S3;Ûü d£ùçh‘“iª<ÀôþrvrP@H¥aiÒMý K "r…7”MTBëŸ#íÆý`®Ãìôý;Jì¹b&ÐÃç=¶wd$74'EŠRR6¨b/^J犽 Ò}{¸Ú÷Ì>„˜¶³‡W±ìtu5‹®óå…:cM9‡äªU/D_ʘZï,…–¥ Ò:9P[‡5Å#úS´ZgóI—Â=B¾  ) »—á7ˆ.Ów¿Ì )Ütê»bÍOá²ú#NÆíGáRŸ—±Úx™1gI3ÇÇŒcÚ€ÉÀ¾Ê¨æ'ì ¹òÏê°ˆ‹åBS‘Úl¤YD!¼ntý¯Ghå/÷Ęö8&¶!6+`#HÎÈX1×Ât°iÃ[¤[Q@@:ÄûbÎöÁë~EÁfÎ’ÉŠ sšrèš™ÏÙ“1ÝùGÍÇ<žÀØõè¶ 13ˆ ÖL™ß€Í/~Š0Ó%ö’¼cAÚyK.ÔÆû¼ã±jÝ19ÐŽ…òSãÕ_®Ú·lŒìiÎèy츈Ç>èâÑtí\a›-Ò;œ‰±“áø¬­ÊWøÉºñuy?¨ü!5¥mó4Rº€jH)žTûˆcŸ °slx&r€Ñ¢l`È¡DˆGí¨Á¼;C8àŸá(%”L'ÀäÝP–s´U˜Jê©ã!Ÿ=Æå!/ ’²À¿B»#úDé™™äFáÑ9Ó‰$ÒÔòUôâPƒiiêèÔ@¬%™±Ó1rˇ~$Œ¬²…¡û…yÇõÉÍù’ G-öûjÄãÁ ¯^j°( Å«9§L»L˜aZé·l}´¡F¥ßÈ’´bÊó µO$‰XU‹a•…SÉ€„RæC¾Ç¿O+M&ck¬ÈOž…Á|·l„¤Ðëò;—×åp9ÇØÂ㉊=Áû+JÚþ·N|óÇýyù0—ûïœÿ§±YÛØÌäÿYÝü#ÿÏïñ75‰O^N ^? 3¥TJ •êæçÃãÕ†Uâ„Çä&u«e o ‡1=TYx¾~:!77Þ_äe2Ï òµÎö‚Ò»ÚêjI?Ú;9Bóì2½z[ :AéºT±_Ÿ¶ÎZçª@ _.À¶»—ôAêc.•à,Š‚«ñx˜>ö,¬ÜÄãaÔÕdôáþz¶{|vØfÏ’6õOT?EH¨&½BõVÌ=IR<ÁanŽ×UÖ‰¬G_S¼ÔþÿÙ6¬kXXuŒ«Þ€¶07‚)B‡$ó“³ï›Æò5ëԌӷr5gu°ò,û ]GÞ¿­o¼oºãã % n˜¾ÝÊ+²„æçm*¦ÇSXª7Wk¥ Ÿ¦´Tk®nËïœ'öƒëwíR÷«ðÀ¢ƒÃÖÑ>…V8å«kÍz©²78ªÍø~á·ÐƒŸ•ŒTp“·ÑQH²IÆZú"ïX²µN¤¢Ëm7®£kÔ˜)${fgÊð) ,ìßBjÑ 6wÖb%x–}ˆ³myÁØÓ¿w:¿¿¬5—:¢ì_¤F«äÍ9×é(7ëë\Ê*:=pXBƒ¸€n(;ÁS%:uì“8£½RF·¼Z´gÐ…®<ðr -‘g¼ ®:Úºçjåpc×Dßˬ_ò^SÔâÅ·âw^F«‰ ösÐiú·lã=Œ¿pOÍ t:ä.ÕêÕµõÍ­íf©‚ÈgdŠú‰¹#Áð‚&êôõb3Ÿœj¦Ÿá‚2•é‰áû«{›¤-pÖÝn='åŸßí…”j5A• K½dBÁYàÝxDßÅžd<¾3÷½üN{_ðOçZÛJbª!¥¤+p•ëÎÎK^½¸•LÆqåŠ}uÉG×j?n°ó°ô—nRÆ–°‚›¾Až\/×êØN„nдà5* ^Ý£óäç¸íðòÞ›6ZX0?\®¼»ÔTÕÔ˜KuØ^ª à0ÖŸf!ÐAÛˆô;øéÐÍ#:qƒú nFõãíMßr_ûy£=˜ã¤ý\.ÿ´{¼ÔªÐ)2I{¼ŽÓ†'hh7®TP5B+NÏnRkÊøñ 6RN­<·lƒú')2¥É#®Û…&OœWq«ªD×BtâÓôx.ÆaBÒ?t¨!.«ÊWr—¼v’j)5çÉÊœ b^æÁ˜ÌïVγ¹šEª±õž$ßï¾Ò+oïËËÚŒV¡=ëòzèéOÁÒpuÕHY·B–«µàŸû¤žyÒ@¿¦—Á–¢Ç)] Šzäã"M®‡J)ü¾1j´ÇmTà)0þÎÔÉœ­yùšŽt±Ä®}ŽJµ”)Ç.¢1¬ESšu¡mÌôj%VÎÔîÐ)éB1õ£ZÀ:Ûöjƒ¶ƒ¼ Fz¦&ˆ.ÇåœNZÒ2ÃÆÎ‘B7«Á£d̤°¬ØG”¡CˆH醥p˜†FÍ ÒR»Ýl¹ÚH<…Sjrò&nI‰¢)äÄ0q¨ö7Lü»÷)©ã—±Tìߍ鯠£NGÙ­!ã/ŠÃ\Z‘>fôØ.p™û>'àˆøÂ>¸ñÜ Œ×Àhîk`0w½Ç5ЛÝ@&RCf9Ô jÆl0¬Ê&öb¸Y»%%³Ñ‚þ†Ò¤|Ï_$æö×mÆ3¯âÜëÃ9üK´†{e2*!mõ@4~÷nò}mí¶TÕ²tN;Á²ŽÒ|X =£Q–ø0ÿN¼‡:ÝÁ@"°åÔk9h òÏ@Š×j«0È\V‚¢uÉã% NÌ.›Oqãœmõ:m6ig÷[ öx§â"Jòöw±Ïönð—¿¿iì¶^Ÿ·QÕsÔ:öö‡À#qó¦œóÇ®ÓâEÁ^•MɹS•"X•iãFíîÚx¡_8rØËo9ˆ$$ùº‰Á5 ξJj)Ù»$p Ce„©ÓÖÁÞÉÅñ9z 3w‹‡Øzð\ÂŒåŠb¤öP+ˆNî&I.GÁ˜_'äÄfËÆÝ¿%ÑÅ®¿·×®·£Lpi^©éËŒåðl÷üü×"îèZ|sÜ$œ²à¥¯yÔN‡ÒjéEú1†Ó`÷y0N`³Ñðeiž^wQû±‹ nÅâÙ´?(ÉÎqqÊ9)a[_½)AîÖu-³{D†˜S‚µÛøðÏç‚ê+“UW³äqlæª{4ß|ärų̈+oÛ¦KÞ"Ú%M.a {¼8¶ø¹K} g¾.åÃ$%²”Cô| TÔE{@)jЗÀdösÁ¥´ÆM°pk)%( Mבéâ»›D)»©~Š‚ãð¸Êæ|K„&?a*ᆼ]õ!XÏ 1º†yGyž,ÅÆq”âå@š\Gl%f¦$V y’±K°–gxÓþ«#Ü)*„ùÑtʼ–BË^©©›e·2çÝY»÷g޹Óƒ¿Ôos€?`¡çr?½ëYƒ”mo¯jä’GS"]œ(Bœå–•Ï–s”&¡·ïçæ$ÖNuﮩ·sÂÈÅÒ›Ó–pº&ç s`™Õ7GD;æSÒU‰hnâÑÄt0aç é"®R6/èw;ޝÙ\CsV}7xÀÖô5†˜ÃÜ= ?J·’o¡t1V5²§é/6à:ÿ¢¼TyŒøtÿ{Õ#êËFhºý~Î^ÿ^Œ(Ã\ùÚÖãFùÙñ¦°£Ï÷_ÆŽYŸ¿YÿRüˆpdhhâ4àflÔ† Qcî¯h설W¢»¬;â7®ÚfØX8;9=oíg8vÅågvãø=OŒ§ê¶L.Šm37òhŒ¡—‹v7îm´) ‰îUä­ÝçÈe7…©Ù òRàe(Ë@P(Ý®r[1Ž¡PÝÒŽøc/@mì€F -S¡0SƒuÕ·n¿]ä~çÕ`ÃJªRñq¥1dW€‡~ YÌ(Ð(Ûeïí dße°0m‰þ/ØVs¶e*4¨ÀPü£Ö,jÙ—ÌÛY_‚&Æò%2´³f§‰ÆÀ—mÂf*‹7‹?¥çA)€óë¾ÆÈ|±‹Ør×ד»îÿä.¥TëãV{wÈ]]àüT$—¶Z¹WfÕ±ªX:dÇÁÅV8{ÍáÖSqtÙS.†N€Áßê9­Á7ãÖâÁ`€½JÓïfÙSpëØŠ<†[¼üîÒå·Š™ž-çè–Pà¹`w"Ò'OH t£Ëɇ¾{é™n,½Jnò3Sn™À¨ <ÞŠ°õ‡lÅg=ñ¹ÿ98Úýñ¬Ü°ñÕs„ Q4åh$•šközýIzUæ²˺߻éÏŽç±3¤öU~¹TšcÆáÿ?¤³¦\›Y¥4 6¦rGÂáïd<\&]߀µÇ¨AÂoŽGð!¼„´/£ñ`@A¹{ô€òFš$#œL)'4è҄ܧÇWáXÂcˆ'8ÕEƒ1•ƒOüR°úa>xÌÐCé…¢qTuzÆ×<Ø-‰ëEÓàS"¼%yÊj+4€9r( &‰ëšZ”—Yû¼sÉcs L`SE]¶Å>q?(ÆF×k‰dÌGÞ§:+ öž–E¶çéGæ.ö#À$Ën+Žáß5&ÕÚáÚZ(Ň;ê¡]^©MÄxNÛYA$ÇéºDÅóÛÂÅÐ:ºfÌØ¾õãØQå÷Ënïäøüðøb÷üðä¸ýê×sm\GUD:ì…1—­™Ú”p~æg>T«Ì2é…Ñw .pFí&<,{s»ã³¥#6qD )o¾IäX^ª¾…%Íó’!~8¥ŒyæiV97$¡ÓÎŽNÍ ÷.—VF 6ðpãF*Õ„7k”ªéÓHÎlSý÷ªK¬C#{¤­š«bÉÿ–÷2%¢D‘Ÿ­%M•ÝM‚ÁT [öÓ<¬N¼ »ÊË›ú² Másf S-'½åa?ìD*‹zTHº_ØOJº¥cCZs…(¦Àiñº‹z¯£!ñ¿´Æ]dÛ:/'E™žNžÉ L‰=y—ñ8µ¦ÎIjSGs `èšêX$’K1Ƈìò²ÄÒ¹¢T8sdTw€eábd™¸k/é÷“›ç‰6ƒQŒ™ÑÌ–™¦ÔΆ–]ü§1›g9¦A¢­üm/‚ Ùã]ÑXíå¨Ctažš‚¶~ü–û`õ\ N>E#J›æ¢B(o<¦É9ÓÎØiç6uR2]2ES„ENœE©Áº¸‘S§æìKnö2g¨“qƒ´rÁLÀ96fB·ŒMVBþ’ÃO ÷¶Ö(ñp•+¼[‡9˜Á¿MVR§ m¼>ÈX¯#±YW5*N@Xk¸¤ÝÈðwÇ ÃØ£ðÄNÛqw½˜+3WëaàÀvˆÊ}7"ÓZ¹î!8võ »Êéö\Ưû§–žškív;€í…'šKzZávÏiP žz½6«òªÜ2•W¥r½fW–—k¦{E\¹Î•} áÅ päP€ÑRyë õm¿McÔï—;°00¥ /%=Ü7ìZ–®%»ŸÓݪIöêˆÖº•ô^ë²”I=cdY ø„Ù`€IÝdݳÎýtœxU‘T(£Åä°èPo'¶Êo啯­8iÖâ^>ž3­·ò Ô”ývcÞöÚa¿Ç™žäU«ïÕtß¶æÇÍÃÇS{Ĉ¬1äÄŠBV™$•šAFêªÅTÝ;ÝX¾þçê«¶1CÿSÛhldõ?è~? ã/o_îì·Ú&†óð©š_ïH °'Z5 •ø…§mÏ͇í‰Ú­÷÷›oýÛ¼¯ÖÆŒõïüø?›µÆñ~—?µÔ t\~ÒˆÆúzeZ–œ39…Vù o½|³Ï…àÛÁþ£…?Zø-ôÐ$â[}þÑÂÜ-ÔjUóÙøÊŸÜÂ׆šmaµúí>¹…µê´ÏÚ—|Þ7çÝRH­¬6”MšÆoôIƒþ£…?Zø÷ia•~}£Ï?Z˜»›¹Õ{_ù“ZøêP3-Ôè×7úä6«Ó>¿ê†B1yò®ÃôÙξ%Ÿ<x˜pÿÓÇ´oögÿûÑm4úêÁÿcÆù¿Qƒsÿšÿ÷ýßïô÷'J¦ÐJ`\z¼–y,Ú‚à×_Ûäúqtøãqk³%h™ñ5a5âNا]ƒh|ˆà“²;\Þ=x‹&òéQë—öÙÞîñqëT?„èùëÝ¿œœ¶ÿÞ:=;<9Ù÷‡ÇÖûÌû³‹Wn‘†J,~ý Ø{Õ:ßÕáÑÈyå>èF0D2È †ýpŒ)î–ÓaÔ‰{ÀyŒh{=ŒûÑÈ<ŒÓt‚æb8zEæo¨ZtÃQ7Ø ®¢°¸ÀTË<rÙ<‹F£A¦X·_Rdægg­ 1|Mós}ÀôwC G &Ê&ÊbÄ NÿO¦ø BÚÛÞÒ»t]§öà€Eˆz%8NËv‘ëðÑ…ÿ$ãÕ74Sn·ÏÎ÷÷ÔµÛ¡Õˆw‡õíííZýÈt"¼£€ÒK©rtøúãÞìžœ)ÃFšË ¶ã•+ئ–ðzð.™P‚ 6 Œ¯ãqP¾oŸ]ǃ ô¹3JR²nÁM†Ç,ðü1²rÕhËëP=ýÚFß~A¸ðl«=¦Ykó÷¦~7±_Nü·ð»¾aUÅn]óz’yVVmüáÖ6¯'ú=´T¥±¼h†RÐIû×A¸B@-䵓­ C4ÈŒ ©ì "E«Z9#àB ÀÊØBF¥ç]=ðÌÊËõÆ–Ž5nÕ†>yÕù‰_}µ±¹±‰~*YÐe?ñA4êk›k[«kp¶0¦‡7Ý_üÔ›Eãpkó¯6 £hn}~âÕ7cÈ¹È á" åÆúúEnuoù£(o¬¯¯@ð†q‘?ŽòZc{m„¢m Œü™¾#GÌÒz¦9±b£Ìƒ:Ãþ$Åâ"%’KÀï’Qø!ZîôÃ4]¾NR‘e]ž1!›Mõ⬅÷gç ¼¦ŸP«Vj;Á΢LâQ”*F×Ff|iΦA]­” »oW ÆñbËÙ:M¿ÏöL0âT­ÜÝÉÍ ~ ËòÞÙ’À©²Óž “î®hȉ}œ‘awê¼%×  †Á0IÓø²›^ô+Ÿ0w•zdó0@Y8ÐŒˆv%Ù¤•c JG;9„ÞjƒtÚŽ«¦ ˆ0¼±%P ¶â°`v²±$[Ë—±§«‚Ü€–\h—0$8R'LÇ+ Þ°ÏöÚç'í‹CÊŠP¶9iÅ7î :A2 ÿ1‰: ØióQ€yþë›Ö~ë MàIblŸÛmæ¾WÌþ–`&Q,åMÉHu$¯ >Eƒ‡WåÌ °FiP&â!…8Mü°‡±ô¢~rCNhõ/²€8Œ¢h0!zEvˆâîŠÝÝ}X~‰ßÚ#ëZ“È›I­WœùJ^Òç5^¸©·øÝyI¾~ò’œðœšðŸA”k{§§èªøêâàwô÷Ý£‹Vj_¦m.Wq¥`›YSR²Y5Û´›’C¦ê—õº‡ÓÒBÀ´Yd˜Ô%q蛼< å€jJ!—LÐJSíb½Ó4…×Ô'bÇÌ‚(³'HÝ8AÝ8ý‡?ù:£Io|G¹aIu(•,,eþ[®,÷£4%r×1nù¯Z?»dOôx”™Z=x g¬%æ½@iŸÜú6&5En.‰Z ”EqÉK€òsÁ]—辂ØÀÐãÌ ·§SªLȰ„«âì|÷¼7ÉÙ !àÂeÜÇwÙ|¾{zK×ÎrPÇÔ ŠU”[PUx)wMb5mbú¾Ñ¤/6¢€ ìqû\“`¶¡R™^WˆÈZ‡æ@hŒ2+ Æ0Š;5z†'-ÁBnü: É»¨$ytGI'J%;ð º Y—2ܺõs›\£ûGûîv/Ê=O+¶Ê¼´îæät«½÷Óî©ðû3t®Lz*À"Ìíp2–¤¹>oƒÚí³ÃÿÛ2»vn¬µÛçdî.o¬U™qêbòÜ„ ­o|¬’áúÖGœÃà5œh’O˜ZЂŠKðà´µ»o=evÅ'ô>ü!ûñh § _«®p@ °ÓIFxXêgiFF!nËÛDí÷õÕ­5KtÑMè \‹*<ɘYeMh&Žkiþ*éSþA):ŒF–õ± ñ“' æs(hM÷ „¯²ÝWX½ X¨ˆ»¼ÆQ÷•Je¡`b Ð[”SDŸ}ØIù&u– –¼òM뜘»=BÇ‹÷F~iÎcä팣oÍl¾£“Wíݽse"Ò¢ÝÕR•¨÷²hýÔ3ovÏðœ{¾÷SÐàøV÷ŽZggp>nŸ”•Ì[zÄû3E}<)Ç’Öˆb˜µ½±I/ J0ñãÎUdÙ£gGODᕼ$91«·I#Û‡¾ïžÀÆŸO>Ó'´x1€'ÌO‡i4¦½d2”ÍAAa%Íãù‘¶i×j£Ç Ò´Jyhð+TšØúÌSØ_Fê§`Mê­ñ³ó“ÓNõküïÉÁ¦žÂ·ªR‡Ók®}9ZÏts9Ppv÷ÿ¢ÛØ?i¿jÐÓ=´jâ*Æ@Q’°œððäÉ=~Š¿BP³èg¥Ä»;þŠi+lYæ:¨.ó5Dv~zÄ5eÉ”È_i O>/<áØð†¨£øŸpüDØÖi)Ø<éÇ”’æ\Lmõð€%ˆx©ºðÄÚ3œ—±x1£7êªQ’\Ëîújá néšÊWð7tG/k)ýjr[ÇÆ©É¬ŽH Ñ#õ›-n ½= ‚L¥™Ÿ¯"NÏ çÎäÖ¤µ‹-ñJ´BÕƒä†b’â1 ã*µ‚ް(‘¤—tÊâ’àÃÊC!*^%Ø(l ÊÝÝ{á×Ã8m'“‘L½×O•aÚ,Ñ9ŠOQI1 ¨Ø‰š¨LjZ‚Ÿ7Ñ"&©Ò$&¢bœ=°O]xvûa<\]a0=œ‚r¥ªÓB§“f‹ÆÓú0èA ßʽ¡„µãY¢`ƒrzv´Ö@2Ó‚½ÆnÜE¿b9¦‡ã¬—vhàxÆÄá/þ×"Éuip#Žn¥hò¥FV@L¸$ØÞM 2@u¯ÛÍpܾLúüHžéƒr˜¥$ÐýùN¯(ÿ-SšVi9¥¸åÝ ‡½`t‡ÿéá̾ Dz#SG!CéðKøÐleH aX„¥zf˜Ì†+![ÑÓÚS­ç'§¯w`C•.0A2^DÇN”¢ñC6¾Q´ˆZ8 Œó#†q‰ðKýV„xŽ>ÚKÎ(ÌÂþ6rJáGʇÏ"7@¡œ` {¨)Ëç®b„%˜Òœ¢²έò6ïaúõ~*°ç’âŽwá5©ß†£èSœLD#Q¥µÒ›ô5ç ½MSÁ!tƒ: ‚HS˜v3ˆ( DÐ'eÀ ©©ˆà¬FkasËÕÄ<*—µ‚2KEF$Rb-´pÖ´ª¶9뀔&‚²O¯°Ô»p~ †ÌB‚+ÑÌ WUŠ2BÔìî±pPØ·Ë9@P4®/04õå¬÷Yà’¡-¿†›qkÛ…%ï.«‚Ê™ºí~vçj7[UjŬš™-¼{ëqö“âÙÊj*-­,ê|Z£FUY¼¿vY5¢õ4z›“/òUv:IÒ0€™½OidÍX£ ú\7ãfÄ êSƒØ 2 ÓƒÕU3²µMóY'0-ƒâUpù†7 «[¦“üÄîv°ö S‘X_› ±V5X¡®®Õ­ï›Öp¶«  ê ~®ùc¨¯f:¸•Û…úúÃf³¾íaq-Ó’Sœæ´^%Õ3€¦Q› QÏËâ`Ý0Ý0*^gt Qp˜© ¹à3ÙÚ‘gD·õ~Q¯>ì³!ôš `íÀ݃ ƒ?AΦ¡*&~@Ýà€'_aÕ¬¦<Æ}ÝZ¿úSØÊy™ÿ¹mȤa† Ô³j›f)ùŸ›ò](*8ëóë`ÖÆ«ÝÞ,œ¯Ò0…9Ò0‘ík~am žùs~Â{ŽpŸ†¬!m[˜“¥ÅØÚº ư^3yï[§6ÖWgZþÀÿ €.üo0Ϧu÷ëksìZ 듟/×9gïcöŽ27€M듟lù¶3çût%ƒ/0ßœ8¾ tˆ Óèm}³ö ã]¥r•§uêÿ:¢­±½ižªŒhloè—üÙØ^§Ï5ú´dVþ$®ßØn\©¦+qü\öéåªî+n\zۦü›Ðçß ›4îM¬ÚØR´ƒDßܶžXoýO€FloëâõÚµdpS¯çÑ80“ÓØ"ômqoh ›Øá}4õƒÔê$HÕI„ª×¹ø}Ç>Õibë$ÕyŽõ†ž…:ICu’†ìq7ÖÍÜ7Ö×­ç4½kæ"eH°!ÔI¶j¬rG6è“:H¢G½¡åº:É( ú¬“tR'‰½NtS'B¨“@Q'¨sÌ1®¾A-‘dÙ tש÷õu®„5¢èÛ 2‹—覾Aý zjÔ Qz}“†Y£¦jTfsÍ ‚›ü’戽IUi–ås‹ªÉÔ· €mêMr@„l2ýJj¼Çet7Ö5-ó5¨óÍUú¤qo­Ú²ÖZc{k:+²8Q7ê2¢úºbÙýÔ6­ Û˜ãsK¾;=˜õ¹ó¼€&éŸzögô>¥‘†GòxµpÄó Axm.„ºìqË“o…ƒ©4‚ü¡­ûCƒï Sæñ÷sͯ‚„œÏ­/°ýe„³ÏMŠó}Î/ nÇoW7×óE¢m?±u ®b €>[gÖIU”Öù[Þš¬ZºÆÜC¸þdM÷¯aŽÖŽ:×:•gÏã¢L]•ïygóUK£'ß-=1ËWºO®ŠDŽï,vÕÍ'Éê´ÎŸkò©…²5ó˜i†m@‹Y>Œ<Ù' ¿äOÊ6¬'RuÓzBà× YZ”‚\d;¿ê–õ}{Ãë=Í ¿òÉ•[ÖÁ–6Ý`‹¸•©ÅBß×¢Þ³¸·mKf}µ ƒ§­í|ümó§¡–L·Í`Yبժîó:É2õØôXxª×,<9¨Ïư̂ǩŸõ÷˜[ÝlŠ´†Y|–‚¼¶å; AD[ Œ%76¬â,'Ó÷FþX¶SõxÛ*bøß£pP_mdžÈÕz€:ËÊkµü³lMk¸Nœ¦¾Ê²Q÷±pÍ¢´Ôáš7Qâíkü¹eÊÁ²¾Æ»°Õo>ЬmçwªQ÷ưÎMqÁ\0ë†'±¾ðÁŸfK’“íÆ¼Ÿr€\õæqÃf,üÝžÍìw ÀjU}Ê‚ã'|îÝæePóžÛÖz^3Uååú\ŸÞQ•?Í0ﻈsP$:h¬Z/™ä¬UƧ79ÃÑgÍ’ÏÖÌséȦ?’zQÄÝQmi,2Åð¦ÀŒŒhvƒ'œÕ¬7`•4„À×P¾@¸ùß`î³dçêc±÷¯¬Lý7`_¼ñVâ\ŭ˧^$,;g…^þÎWOæ;¿µôrr½eÚãªö}?We‰–™[uuÝT1xÕªºaäÕn]Q1°$8ÞHY‘ÅJë¹ê«%ÁÉ­W]7[±Ò¤×,\>ìÀ²/ Žü}Í’æXdäïÜY-©j¶½iŠÈ÷†é͆~@³ÛÖ'ŠˆjÉà"¢Z 'B·ÌXNeuì6 ¤Ì£Yzdy­&­JÌÞ2*NÒ“ÜËt«Ò’jD$ÌmÕcÅj¤5«ÃëºU¥õd–Dk«G·t{,Ê@X5+`²Á•‘~H.c©MD,nOĪºîŸô†Å*³T—ƒTkë¦m‘\7M?V­m“ǰj)Cíî¬YB¤Àß”VÜ1pƒë53|î½èTù w“÷i½œE¬ÈœüQÁ#aÙǰ*MåêøæÿÜò„Q„Íó¹-Ÿ@Í<®7ÌwÖxÕìï®&,O/Rk˜ï¢:æåQóŸø:>9‹9úæYŸžrÉ(©Eß0B”Òýñzޖœub|*Uú1>lêïêS4)ŠŠ?Yþ_ÕßÕëп–1:SXÖ“Ø*æø¬á-Šu7«ÿââÏÿŒ'Ð}€®âA—­5­È*”TŽÂ-ö1"Ÿsµ@NÀwhàIÞö§­¿´öÎ1û]çŠbVLˆk¿J©Qô[Ô·Ñ8´}9·É¸ÝÆð,êZ–ÑèÃV®È—¥-x×a3ßñ^âiÖíxšýÒBNðÍ~ivþeò±p³/K¨IJ»,–¬¯MApšV,Á<¨P’2"þhGæ¤ðF+ŽÉ:ÇÉ:U¦ÃÅh²ßMHèž÷­üïîp8Ë/U¬2’GCo pä8äÔBÜÆS‰…Ôt"À©XC¨f‘J÷*¿"f{ä?™³uoÒ(»°²TÐÂÒü$Ãh@y«ãD¹Qa <;w§>šÍG·ñ˜3õ“t.¶õIûðøÍÅ9†à þnԜ۱\Ïw,2>›VLoE(ôOøaÁ˜uA?Ê+‰~žª$!„KRÂ;ÜiY9‡Ñ’Õ@—³YeËñ¶ÌAÞ ûA¾Û¶UÍD¡æÐ“CHG㫤K¡Í+Ø«sŠåÈ1Š9n”ÊåJ)ÁŠÉ"‘Óã.ð¿QrW8‹º0J2ä°¨¨ñMMY¬Ï¤$[èVæ"Ëælp&Ú g¦­ꚯE(¨Üõø1ÍÕÙoƒcÎ×–4­àv2­Ã|uSäWÔó]–b¬ÌE *Òæ\cP…ýhK4Å¢a8MIЛ9ÛR<©-þGŸ)„§¥òŽ9FE3Ì–+…MŠ\®9±iXüÔójiî…^'¨Z†±OíŽóš#ª(oN`ÕœaãÁ„I„Ã.Fæ¹cùÑŽ§P´4ìxÁ‰°ïùþæ„qŠC¯ÑÒ^)Ð³Ž®Å…>±ˆQjÍYƒWg£ ’ÔÇ F‡_À¸•fœg‘sÂ2t†w*ŒBÕU@±;ò]­vT?Z­}Œ‚sÔ:övZÕ†:ð¢!̆n “NQ¹a´ö8šÏTÌ[åg”¶ã|3Õ{h¤x!âMËc!ðïü±éEàJ†ÓýºýŠ‚Ýñ\õpc¾Æˆ[,XƒŠ;nÚŸŒ†è­L&Ц…Á£üX¨NÒ/ ˆê9C»ÁOU R/F©[h«¾Ý˜§t/𾹤|o”i9Þ­òè6Áy9‹eÎÐ[{?hçfrg–Plƒ eSŒ ‡ÎÌ|fhA„¢jQ,* ¹x|q´˜V%È7BÁ±w3ŠÇQ¹â*ɰEÖÜ`ˆ)#‹¸*g‘*^öqhêJ%ø|o+Fl$üˆžè”Ž$b˜–”ŽìL°³TZ THàlÌA %ñÒ©óq*qùY‚Sç¤?.©Óµ¦^¦Ö Òƒ2Æ-ä*U8îÑ_ѱ,7£bÅþ$6ŽíKì×þD‡ÿBѱ 0}þó"P-cü,ð„¶¢2‚ ØÄ>­ßíP„d(ÖÁï‹ïÐÀÓ§iý Œæíà=úåKÈtnÓÁ¤õXÃ)üôé´âÒX‚¨n¨úHg÷|÷¨Ý:==9-cD9A¶U­õ^TÐ-Õƒ‘ m 2(®. ”¦f§ÆT8в®É‘)â$МB^•ºW©ììÔ¬>ó3î0‡á•jÐyx|~*ïUGŽ 0 û¨~Üó±<éô#8cŒ¤_òKÞ¿[x·`¯”cà„Ñu¼ ’lÿ,G0©79ÌC£„ˆÁÚ¡e”pYŽ®ãAˆë¸Y –e‰wŒÄG.à,Ò/6­p%†^ÒÇH擆~“4‚ñUÖ"jô‘¡„—¸ø'Šˆ ÂY#u G§Ô]ŽV°#ºÛ*T¹,t+š3à‘,Ž(;+ùIͰ¬#ÀKä4 šú{Å ÇϽ¿#ØsrJùï‚Æº›Òaˆ a€â|Df>x‹zœ¸SQ]§*^´2±ƒØ:ŒõœwÈb‡ýø¿C&*&˜C9êp”ŒJ0£ÂüíK`qÖ·…*4½É¸¥zF%½M'‚áEMãþ]v»&n~šá³û­½#'´ünžµO.N1qQF¼Ä• ¥W ÷Wç—Ľˆ_Ø‹G¶™ÕëH£y*v/ü"5«’$Ý–]Ô™ Êó⦲¤Ò@U¥ ‘<èÊ&‹Ó`©¡)rf¬Ë˜‚;W(Éé–-ÕÊ„¡ñç¯NBÅþþÒ3æ„yšl ÝÒ>k_¼‘èKv¿ C¬;¦@ìšÏN|âeÞMÒ%ëM2úÈP´÷™£;êE'ŽPÓŽÑ<¬ræaÓÄ—íˆv4£­Ã¯ôÆ}±TÑ gPÑ’í8”dÞá©rÇ¡& Ká³T Ò‹UpK´rÓàÞô’Ôœ¶ñІcféŸýOTh.7KBrçç¡hbYŽŒngœ ÈÓ \=FA†2¢5$ rüJeà‹]('RX€Ã}2W0‘A b„Ñüà°`¸c â–# —ý,÷g«[Þ}ŸºÜ®Õü‹5-Ô¸½‚ Eï'É$ûÁ8îÛ)ƒXÔ é˜€„…2Ü8ïú€CПM†´[%ê̽ÂU§Ä‡—šéT©:•ØaÉuØo+B+5Õ9|°_5š Vèé3îð¥Ù‰‡àÄùÚqé´‰ª7:=‡ÒÝ„D95ùâGÎë c ØI…x”•÷A“å>Š «‚+ù;gjeÐzYä]LHï=žR\ ¯*̈I6ÄOEb–ª|®³ýzJEÞ£¸šÁ•Ûç "Ë”IIœ(3¹3 /n]L•¸¾)ðŸ“Ǿ—©‰ºg,wFÉ{jÚ >}jPw¿à ®`jµQWj[Øzºm…öœé ~pŸŠh¡¹`ÓËÏB5ÆÅgÜÛiÆS7ò¤É);³so¬ŠÐSLnªÎ\fö•—zaa¡›(,mí_ìåb»€®× éYìîÞOy° ({}e·öó‘U@àë…~~úkœF…oRøæ”ʃT@â…$~´ûªu”©€Æ7 iœ*çA* ðB ?:Ù˃S@ᅥ޾ɣ©F™o’9Â:ºÈÛ ¤¾QHêPêõáq>°bß($vvq”·µ4 ˆ}£Ø¡Ôþáßó@PúF!¥c·Nò8Ãj±o;öjÊ*\- ùÍbšoå‹D¿YHô?BåóÖi>´Âß,$üÓVá¯þf±Ìr}:Þå,eYxÄ¿YHü|Ü~[{ßÌ+ þÍ Á. Û k U­¨¶ÕÅÍ…l[‹c+3Ó¦-m[üˆæ ÖÏVO JK¶ü²)±äNðÛ'Év@7:]éæîT׌”Z´iíZ¯wÏóúQ°ø¶2‹o!(èÁ;ýP}0íÑìåt`­`Éng™a]Ø—-ShÛz‚Ôkž·ui¾`oçŽß%2 ´Õ¼çS@s\(àõZ†%(cPmePömü£è”Û(08TÑ]:oÐȆTFA”ôE;œÓ¡Ìv£L+‡!œ#è ^£ˆöë74“d×e»ûÛ']È&ÞÞõ¸\zWú~e)}W*UY £®É™–*MKQ<…ò PJïS–æ*U«9„;¾âÄX¡“ ïtÁŠ´Ï)ízžÞóÖ/çùø]³ð»6'~ëyÄ>ÿº7ëí}-`ÖõzƒÕ€ÿ¾{t¸O:ÅÝ= }¸@/àÞõFvš2Ò²¢Ýü~ëø<»Y¬0ðz#»•Ínî©Í<[Gû9 nY3½5çL72+) ·€%×…²UvFrÔ Œ¶¾ê G™[}ç2ÿ·ðúš/ó­ôÌ:l³S⦵P‹Låyî;ö–)z)~3Ó^·Š^*_šâ÷¼\àý×4s•J 'wÂs¹ZpŒ³Æ:AcÔõò|rʼWd©#× ê&ª·“^[j²¬RK[9#œTÜäÕ=ÄÅ|zÁ9î5¦d½ÕwRE÷I^4̸³ãee¬è‹ J­‡é2‰¸Ü\âÊõ)™W‚àp¼˜’Õ•°P²ÀÅip‡jÅUßËK“B0ênA[S£öûQWU‘Kðr[ç *ߣRmÃ8ERÒ~¦ãhйƒnŒoðö9{y‡í@‹RGY×ÁOèš³ïψlІýÝ£`n±qšÔT™UMŠfÑ(—ɼ 'ê ÷™kÉM¨YÉw/AÏŒT YŒRêH@×S)”ѨQÍ·\í¸Ùf^ì?L¾ï|ëÑÊ{ë^ˆîTn”³mâðWÌõk•@iŠäbÁ&B;ý›ƒçi1WU ònÞ²YšÊžá<3­“á]U2ý¢E¨¢61åIâ)U+UOçmí¨„¯HR&¿ý ú,…W˜ËÙðx,x'©fwñ˜,>*åǼ™À9ÃRAO:ó„¸/žz¸¥SæarbØq9dJhö¡2Sr$dÌK† ^%xŽ-÷cXÔ$Çã4ê÷*´2RJŒ.%;ÊÖJ —Ó(Ó5ë‹®"]øW1Í–È œ¾´Ð¸p@û·_–×à@r¯¨"Ï”õÁlƘYÖ¹#+= ýé«qyÈdlèXͬgGUH4B¸ÓƒhHD§!ã§ØÇ™¦RÝ;9>?<¾€ÍÞîñó…\8˜™ƒø’bú:ž“måðÌøvÏÎÛ¯ñ¾fÚàµYÿ bÁg|H!š>:ºl¿û|!c™ŽÅKl‡ìfuþg²+^^$J„îiÈ)÷^y%ç›lدõ9óRòu*c‘ˆ –1ÙÛE´í­XÄf90 LxAÙ’ó†£Ø.[Ý á!ˆ]dBœ±2¨£oúKO²ôDÖðOr×´MÓNÒ: £-Ö®d (ï/p¼…¦¦¬ˆJêQ¦§bÖŠ~dz0¼:t9(fȶɶ´â½B–÷˜¦û:ù‡“YàÚ¨œÔ&¬þj}ù(±•þ,Zgi~’—©Ts蟯áÙ'}˜À¾š%múEþ>yQ‘b1÷¸”èÃkˆ'˜ƒ•)çŒÞžXL®ûJ“ùfàX©ÏVU¥ˆÁnhù­,¾@òwh@ÌÒàõ`‘0Ù©Ži Å,Uæˆ'Ä%e\WšÌI-5c¢´‚Š=¹bö䊃ÞA߬˜¦p©Œ«òéÓ ¦@-órƒ_óQã½Leû ̆ͩ°J€ý|DiÆ.s ‹qòÓ“£D| Ü3¥VŒ6 †Ej#|®ÏÌó(D¬]ѵ™ÉO?…ËAŽw¡8Ýz(׳œ£•¥>U^Zì³b/•"™âbž°Â?z#Fw¤’FñRаO=º Á&)n•§ Ï‚­¦'GûÍìèvìÑ(—Ä`©¢OT‡(IÍÎ@C+žS}²}b§™/KºøŠƒ¬ªßsTõLûER×=dztˆ+K¤j|ê0’T<ÖðR³fæ;§‚Ç™NípœDzÙÚäP})SŠÑzýä¦TŠôG?\º;¬G`" ;«p&+’%(œ‚…È»“ŽýeÖuº’Û§Œº 8™Ðeÿ„@væ ÊsInŸßWª6ò„oU~3‚Ç•ïȺ´.,t9[ÓŽ#q@¤®`§pã–u@ y½¾«KÎÞžëmÉÙ©yg7+gw—d›väsµWzìЈ‹.æ*Ll³I™]Ž€¼Z·cò±¼Š8B:–®×¾¯ÌoØ÷”4¤ßDQ׺ò²Øé¬î¡¿ƒ_æåK´m™Ehä3¼9€Tu‡}îWä •Ó‘ÊB–‡%tù¡«{»%œ€®#X´wâ7”QwÉyta!s{Š'R-̃¬Ž~'sÍI·ÊÇg“B µÌœ7 5bÈ"–écÕ½}XvÕ(¯Dcå~¿IT¹Œz‰„ÝSÛ£º”PÎcvĎ̽DN;GÕyZ~‰SåNbJ÷Ô3)ö"£Å ÄÛHså_]/3q* þ<Íßì¹,äù\Î>ÛûÏCÎæõ7󜦾ÐÛLÉðð5›ÃÕìnNO3SÁ-Å#ýÌîÍÚËb[/Bç>Çè«èr,´.Äð 3{ÿɬôn Ó8EEÒŒû"ÿͳ²`ñºýãƒmñ -ðbÿ¬¡áñº'?véê[ÑOÀ®qS‚É€¼ÍºÑý“‚É0QQQEŽ·ØF¾s«·*ëÍ…ù›íMý€¥6çJ»_øzëìs>Ï^e³Ùœkì¾€í>v…ir…‹;¸A’6É0@DšöŠ”º‰ùyþ Í‹?65jWNЮL(«ÂP\‰ åÕàòE¸/²¾:_´%.^‹¹ÞÜDÙÂ⋦½gÎe"›ØÎàš©™ÀÉJ¥Ä†hYDªÇ¤S•K,—,9‚ ‡vªª›öÅ”ìy 2ˆ> Ç'kâæ k%¼J½Š@Fƒ3ËÆãKL—/<¹©wîè-uE‡tøz‹S§p âlwB1ÆÛZ¾ŒùRb‘®E yÖ¢ûÌѧHÌ=¨|†³c'r¾ ­ƒ;"ã af7?¹…6†Ï1,LàgÂ3Ðþ3€š0Ë‘ÞÒR¼Mº¦p÷ÿÉ!,ëÆ]ºj¨_~9Chç–Ir‰97¸Ü퉵è`?æ/-F´dLˆà ºùŸ`EËÆ&ˆ«,&æ×êr‘èû[rq\›Ï:ÜÔ¼±mŠö)I]ç€{Xˆ$b®FAµ¥R¦½ª+À\ÑqΦP”Ú² ¥ BJ˜ã¹c²›-:‹¨|RPìjœ¨(¢µsQc·ÿ È·Ï“ýÊH‘^¡­$Åí”@ã£HÌ¢qHN½.“îÝ‚2vÄ/²[ ç”38?æ-z•9¯ÍÅ«†¸Ëœ4™U‰¢¤…·Ê‚bÜÅ·›¶y›ÂÆ9…™VyŠ Ì%âǺµSâãQÛ2<_¦â/^²‚æ]? rÏÎwL 'OHâ$Ø›«ˆ,áñ *–ìHº»t÷!RÁø-e³ÝW*êžrÅ`ˆXdªô%¾ÂC9Œjct˜¤, «@Ö8|Èndø@Â{ö¢‘ˆß°Þ¥d­HΦ6Åö²NŒÄJ\€¼‚×—˜Ó<Ú) «þÍî<4J (¾ÚœNÍA!CéœwñÊ‘‡SDqÇ1¬$]ý;W„a›ùÎÞóéZáÜ9':˜1äù8á÷g:ùá~?¹„C'`S·v¯‡IÆ&5etÝÌ0òs·äl¥FpÀs‚%@¡â,sù/±®Ÿ €¿ãÈå _Ý Ü¤W6ÔêxÅ¿¥QWÊyVRSn`ò$†Š\"{ãŽa þGØ’>)S¾#?ݰC5÷“Áå©C’Bû¢3›øúHäi1F‘» ÏÏÃÀTL£ÀNÀFäìëý¢Ûø¯‰E׃£6æÈ]—Õ¬„¥¥øK½T÷%›ˆ­ê0ëâ¤+…1êR—½"r{ù%BT7êGfud¨Ëo(V_æÉ—¢ÉÊ’[”iPƒt£E.™È[jeº]Sîj­™v ŒlMäikzââBny¯ß=jöœ¢á(Š­¡Mî9 Eƒä:Â^í׬{¢Å™ '–\UPŽ.1e¤kŠ È°¾Y¤€6ýD{ŽÙšÐ»•°Æ"õ<û²X ¶€x”¾4á°Ý;¾û‹”§Ü¹^ßÈåK ^f]ød“½ÌZ‰Òò–è‡=˜Cq`t ÄD‰™E êÛ ž]Âvz×Vù™dºÈ 9‹üñÕˆìØ²ú½àpÀ*5ÔŽT½(àtäPGkÉ#CI0±ËŠ>àâ/ñ¦"³X¬ƒ­pÝTå¤!”d^J²‹Â÷ ^/®>ã<øsPŽÓp<¾+ÓïARÆÿ`,ú—A­|™gðɇûy“¿IŠ7wÊÀ%~¨$¤$ 87ªrñã*ÕÓuCnýßB±ñ ÇJþËÊokÓ,Dœ’Ó ?.½#æ^+¦Lk5éËÕ¥®VäùÛúy憷0gÔbYo>SíÍ´› LþLrxî¼É 6¼µÖ&Sàn;´f”n`Re¼Ð‰ð Žîh LQÿ˜£Çü+Ŭ’Œ$»R¾¥Ê‡fÌjf=ÞÜåS¤|)»»‘º{¹”~¤³w2ŒÍ!£áb ç• †Òþ»Å‰G:Ã|ŸÑmœŽ‘ãÎä&ÆPëÚ’¡ARvs³nþí™ÁìFOŸN±ó>Ô­y§k¾Ðãs«Np­ŸFh:Çé!X€OåmhEïî|¬"ÆÄ›Š—ܹÚ¡Ö5çã& ù"ðÑ‹ÓÓ]~} Îêw¹Óê-?÷\“¥O>eÞq}KËE¤C" ôay¹¨„böÙ®“±êœÑéç£X6|ÀPÊ ÔÒƒøßÓU ­$žï•+ /†¸”z|èGxç…~‚¸Wl783óST͹&†Ž·m*_$üYäáÑ+,‘ãŽ0Jä¥|cPIÁË!U2´dMêÙ˜ ØAM mˆj@H Õû3Es˜ñ £º&†òM‡„¯P"uÄê–.K_uj£å‰’銹"Vm£‹¦&»¤Åent û«:#dõ,´\‡VïPp[YYQQû³ÈrðìâÒRÅhcäZøÉ“²Ó¡¥@Ô] *ºž!!s!ítéÆÈ…[¯˜$Ë+ž@-@Oµjð°Ñ ô¢ æ:¼ v<‚/Þ‹Xæ6LMûs ‚—Ð0y·UÔB8Ä .¡„1Õu°ƒb Zõ&l­yèAÖ-zÌ(}âa8ºŒA®‡9 gözFÑ"ç©Z„™Ùô)+ÉPhîäê×ÿvôË3øßÑ(‘[%S÷‡h–¦P5Y(棟ÞLë|Ô>?¡ßëËc è!u;{AΣc*4‰V!y¢/§Ã¨÷bûŒŸ§6U„íò/2´[Ý[(¹iJÅÝUÀ´ 9Yî…ª¨‰ëŸò¼l¼ZT¶S‚HR<ük]³XóR|É"N­ ²þ)ÁŽÖ…&å-àÓh-½…9By÷!ˆåfÑD­™«Õ4ÍùÊí¤ ÑÕΙº9 WCjŠÎÔtäʾf<çžd.–JJÔsÀá(7‰c‰§˜Ëb«!…—úO‚âéðÆ#¶ ]Ö‘»*ýª4þ-9„±¥:ìwÉD+zi̸HîCK|+l@Áe•®¤z´í‹˜Œ)ÀlE ª+³Ø‘ŒÛO®ÌXš¦kÑÓšiœêV9k3ÿ¨¸G³‡P¾–;I¾Šþ2b` Îô*ŒGôÒŸd3¯K \b _±Ú´8×°bȸkô&Z÷_µâ—šã+ȤqY{ ^U8=~ŠëOŠ/ŸEûÇ#¯˜í¥'H&ì„ÝAtUÎñ{’¢é-ü íÛ°„ÿìé 57¼Ìîo—èQêiJ¦ož—¡¦¶iãÅcZ%Cr¶¢SC4î¬ðÉUM©„ù“k^¼»¡à}x§Y´šHtC8¬{¹·õÎîâßoÞeÓ¬;yÖ¿Íõ‹ãõ(B4Ú½ÜÉ}Õ†ã+ÛŸÈ‹ü øŠ*>UÁÓœŒ¸(Íçø:g«ëƒÎTÜ‘™J9 )ÍIx -ßyÙr¶˜TÆm:§N‘›ôƒ)Zì²È£ÛaÈ.pi^îâ’É2™ÓÂÛRà”ÞjÚ°›¯Z?— mV éYÅáÿÖt„*£òôé÷…BÈ`,3˜.Ή~ÁC|–Þg ãoˆíö0w7QóÞwnkýrxX:<º8mÙ¹uíçAC{›y“leœv÷ë%'ÿtfG~Üm_>þô† Žé“Œ»ô}únPªRóHñ”|$3 m séœáý(E‰”ÌO)Ì$‰JiÄw«!ŽCùüi"©Ç±Š•uœ (|7±rЫÐãVØñ4Ù]50ÉT­DÒL@°}vFI;~8Ñ»*ÃÂd:í£ÃãÖñIÙ¯Pi¾#ŽL™W8ÿÁûÜK¶àÝB¾S‹¤Lñ»¦š‡RÉ"CÉXv Z¡ŒöÊ×5Ý/PVI :à~㫤›åÑøêœÕ­qZá]DOÀ#/# ìCBýb«B žÀ.ÅZ:1Ý=̰‚íüt·Mi¾i[@{@ã(üúL+j>@mèS‹ ºX§ì|x؈t¦s‡˜ã|“ÚÇ+•ó ÇWŨit] îe!*Älè‹‘!pþÅ‘Á½Ì £Èk6ØÆNc!þF°Üú2Éç+õ>)ô¯þZݧ<å^ÿ9ËŽÖû ]’êÃFc„p³D‘™~Û!a…«ë£X࣯í:ßvÅØhxò71D¢}!FÓ³O¤r™Pè›Ë;;’µ=b„ÓVppЀùBض:±±ª~üVc®ÀS½Ã”ÝýÇíÉW?EbEÙw ¨ÓV·3ö!ÚYÚ¢ª²Ê|Fd¯’ô ÿ뛕+F ¢‰4‹± ðžŒc÷ý`”%‘XcNáõÃì3‡ÀbèKÔ5H¤9:ÚèÍAm‘¨²S8iÚŽ×Ì?jc{övúó%pd¾ üo:[ÒèÿÀlIËsÍ–6t6hÉÌ•³¡ ßR¶6]1X¶ætA90ç\eÂžŽ ÷/uÄN£¨À:-göAŒPîQºýoÄ°È NµAxt»‚2é üú–ÁÆvL+ÔGÊìF—“o½¡·1ü5·”ƒî¬ËKþõ°au±"©Ãº>õ©Cç&ÂDu¤°…¯dNů¿žÑ¸d FXì F*Èž·aËeÓ%)Ùæ…ôPÙçø—vSÔµ_=ânÄ Ò¾1bÈãžyš‡l½¬{HéoŒedšÒÝCm ‚Ÿb¶CÚ}s¨² ¨;yÝz=£“@¯î´^„ýÚíînU&"IñÂõC*QKÉ[K'µ;"ƒ˜ñÚm­FaÁ#ÒÄš8›RVNz¸‚ý\Ý~ УŒ"ŠBÕ‰žÓAœ9]‰Zhz)4ry§¨È¬*š¬eTËlÊBTHtH«— àÒ*ƒrI—yƒ³_(H_}¡)<½I†žO3ú7H³Èù0ˆ¸òa)ºèËñU2®Jó{W3bŸ)ÿª‚èWŽí‘øÚ‘3Ä«‰D{ËÝŽâ/ä®dך©`± Ù ½öœˆuâóci¤²íÛkÊEŒª“¿úÜ^œj×~½‹_“Ñ8¤0l˜`-ô8••˜CbìŸþÝøO±ËŸI@¢°¯z¬ÞFaE ­ä£Ù†"å²éªü*ªÆ^`‡4µ<.ÚÌ…¨œ»@$Ød̉dGÀZ€•©Ã•2Ã0á2ö¸N¡ãƒÎðŽYõRÖ«g™68œÐÈ/¶¸à°˜¨-›©ÊØ ¦u6Ld!xo‡LVA#[­}`Ú§G­co÷W£EÓHßú3^| ûÅñ ‚ôíà=vk@ݲ ðN¯´ÁËùî«£ÖYûx÷u+(Á„ (ž– ]FÔWkA)užAA èà dÊÃhtI€Hí0|HÊÊá H¡(ŽJÁgE#ç§­&ȃ¥P¯ýâ`÷èŒß &ý¾õ‚È ž»y1>;Ù·Ph&â]¹¨ £69—¹lÀ’v¿ª(¿lØÅåÑ«åð¸ýf8ès]sD!…+‹Í@B›š¢¯Nw÷þÚ:Ï~_T¸•)zoŠZeÿö·ÃãóÖé›ç,âJì„Z€ðóoÒ:<þ±ÍeÑè”_x:&qŠgdÀŽZòKqL܇lÒ„ö¡ñ§È^ßt$9Ü'óÕÝ=h¡£h¦ !ËÔ-bxvNîF'ñ.mçl1V2÷%+þ¬úypøËkÀ•Ù æ¨þ9ø}'Bèõ=‡¸ßÊwvŽŽ»"8&\Ùä„·3HJS¢(EF‹„Ë‹Ïu)EO>=,¾u %eŠ}Îkù…|: F§š"'«¦5ʸ‘gLÛæ–d¨™³ãä’zsÉw´¥ÿ]åWt¨bÜ(ß„Om8±µ¥øÓÉÈ£ KùѰ:7@Uq’¨jÉ bŽ BC>©ýÇWøûíËõ•g†“^} ¨î_­VÛX[ ð¿›ëôßZƒã·úF£ü|ucc³±±¶^jõõF}ý?‚Ú×ïJöo‚rtå¦>À†Õ-(Åz½)px0þï¿ÉŸ’xˆjíîƒ8þ“Þ…§AÝ}+–_Á Ù•7ì=ùJoÖ[™Ç‡£0·þxÜÚç,ŒÈ¿øv xæm [·–[?Dð©ô†=•mXA;8jýBAÁ[§¶å,=½û—“Óöß[§g‡'Çh?ë¿?<¶ÞodÞŸ]¼r‹ÔP‚*~ý Ø{Õ:ßÕbŽ BÀa»€)ð}s0ì‡c Ò¢\\;´ëz‡°‘y§é$ÒÆ“°Õ| qΚx©¼`dVuÂüS,¹_à!»Ž¹â‘”ã€ÇÈ.Á Y9j´åu¨nIúj-ô-à„ ϶`ïê±Ú¿7õ»‰ýrâ¿…ßõ «*þpëš×“Ì{x°Ú°jã·¶y=ÑïY[¤JÙQús JA'í7^à A¶×Nv´vÒLHeGHdˆN+gAˆÀ"X[Ȩô¼«ûW^®7¶tB«6ôÉ«ÎOüê«ÍÍåz貂Ÿø õµÍµ­Õµ8ÐïÝ_¼ìþâ¤ÞØ,‡[›ŸxµiEƒpëó¯¾CÈEfùc(7Ö×/r«{ƒ¸ÈEyc}}µ‚7Œ‹üq”×ÛkÛ \m[`俨—ùŽX1Kë™æÄŠú©>Ø‘?(‘V ü.…¢åNöå뤋FeëÇœIÓÚT/ÎZ˜É㌒8Áš~B­Z ¨í;7Šþ1‰GQª][l7gÓ ®VJ†Ý·+ … « Ù:M¿Ïǫ̈O @ãx"šü–å½³%]Ìþc‰ïïÈYôÐÞî·Ú”ŽÄ›ö¹=¤Ü÷ŠóðIB›ŽBÂÞǨ1¯ŠÚä (ëĨ—qš øaXáeÔOnH5Ž*tÙ¸ä*5{?cÏ:é÷E½Ú#ëjøå ^Ù¯øÆK^Òç5YWË[üî¼$»å;+`»SSÌQ§G³SO+Î ²a䬚\ήi›S)E¯yÝÃi9CoĤ§Ô"®U G*ŽºY¡q¸±Ön/P¬¼àpwyc­êèü)Ð ¬—UR²l}¤;ò× ½$t©oç‚¥LZg™m–Æût¼'ûñÖ¥º°S]áãØéÀá £þ+[-úÕ€‘aoy Æ~_ßXÝZ³Ø”nB/Ö…‚uc»›,§ˆ òãˆ,yå›3šÇÞ¯Y~i„R&hO‚\Øgç§{çÓFVP"@ èAÌ÷kwnÎ;]#…!i’ûœc‹ë$u”à%\LÙ+þ#‰™ªt£hÞy©âñ0¡ÑZ‡Ši¼"ðl yã‡á:¡¶Žuü+¨ýˆóýê‘úÍ·&êr®’#äš<¥äfP²Wár¯D+tú㜑í«ìÕNÁn*"^ÉŒµ<õ`Q=’VH Pe¾“³²q˜ŒŸÆÞë§6â%+ LI2CÅND ûÒ„ZçL"=ñºg{5:cšÔl:¯ŸV‚Fy¢q³É‘ų6xëáàռʸJÑÝÑçïÔ{‘dsãÞP‚@W–å"6^ÿf´Ö@2Ó‚½V‰á$àYq°ÎŽÔ²Àëa cìþâ-£IDm/ÄAsìÀ}¤l®‰ MJðhêv“cë({~¦÷ ì·ô‚$-Ò¥t’‰\ͺ¥Å«Ì”VæìNyw•àCùdªHHN-Mvc„oÎʘ!-+º›òƒáóû¦-fò)b ÙT_bM^ekÁñZpZj¨©Q‚óÁÍ“MDúF¹DHo˜Ò½I.ç1=ZøIy&¸9b¿’åçìpgb CÁÎ OŸ†ÚÇ,¢»öÎ;¤p±JW‡Ö²áJÕ]´iEã4mÔ®·S±kÅÜ\‚Ë’®ôÎbr 벫k ‹Ä!í€Be(übi•Ñ¡JÛ-òºÖ"ªa¼Ì¹µ·­\IŸ1ˆ ,ƒuËH¤ÀpÖw ,0›µå¹¥ Ø$†2¸ žÓ1—¯0 åW¥ò-µhö¬ƒòJÖÔW™nqº¢¢¢…¾>|FÄn…kvj´ƒùœ‰öÂÆ³~èóµHëâÞ¥=Íæk#ÉÏÞÓû•«V´YAÝ"7òü¥ç"¥„˜k ¶­ë?;OSS¢#ä´e;Ú¾Ÿ…„—ïÞ5çÀ<,׫„¨7 ܧ &!XiF§û=¹nOSÀÇyÍj0N£H)RåÑ.äóð×.E$´Üä^ŒÝ 4÷ Ò¼Ý3G àä¶W ô¬ãæ\„V²H­9k°ÚÛøb+GRŠ--‘ œƒÛŠ£ôø";µ™ÐýÜÉ ŽnöÏO h )E°éOFCŒD»$ðäêkæ•Ù—¨ç½b–~Ç‚»Ò~Õ:89maÂx8(Ø\Äžh»JñcÃ, MOùÍêÆºgé"€\{ ù® àë÷¶ÿÉØõ¿~Óí¿êð}=cÿÕhüaÿõ{ü}ÿÙ:ر¥¥cúSúí[A5ë§b’DÆ\r£@ä£<·­¢ð$¥Å@N?Ú\t³¸â(ø>õTÖmPü‡|±›Ÿ§É«¢|Í—_*Ï)ë„d›ÿæUAÕçŽà©ÜA6ýVR ª®îØ©:»$¤^ ·„ïïá_ª•ò]´Ö¯–|WúŠ…ïomEÅÂ÷h:škNœ £¥ Ÿn£Þtë»îý$ †u Óˆ”9Á •̓$–ÿÊ}§S”U\øM©»ð;ê¯t1}^×OíËxŸ¶ƒ7%ý‚nùÄðr¯½¬r¥ºì|½øv‡غ$ó«ÿþû……ÒŸJoÿëÝèÝàýP E­¹¦”A3[únÇöhý\vì‡ò,L­g»gôŒ]x¬ç‡¯QûÅïxYÙ/÷Ž.öÙIá:éNúöË×'ûGü°k½Øo0<ûá!?Ã+Û9â'4 ‡ç‘ëÑR®Qß‚ÏÛ*tíñïÓÓdd=<9e NÉ–”EÝIÇnô´µ±'¾ ɶ·ìø»{?ÑÛgÏÜÑ·ö¥) bÇ÷ãWzÚÁËëùÞꇗ‘íûq´ûªEÎ%²S·Þ¼‚öÿJoÚm”ÀÚv­“=zóO› ÎZçoßðxžú/@8¢ËދׇÇòfÉsqÄdòÌ{±øwzþ½_ád_°åWp0öÂ~‹N…z_ÚÏ„Á’W++άñØÿìÌÊî?ÞEFÏUJÿ,ýþíÀ¿&ü«Â¿çðÿ÷þ-ÿ%ø÷ þ}ÿÞýøxÿ^Z@%¸jí}×á[xûþ•K¶1>sA]²ªÏ&®x•ïá_Å Ùà\0þ³ô6\þïÝåÿ[[Þn¿ÿì½ýC7Òü{þŠ ×66± kÀ@hÚ—€“rÃÓ–'äõ-önŒ×ñÚIxÚ¼û;_ÒJ»ZA?îžp½¬W+F3£ÑHž 6ÝËßõº#ò¡xþ¼?A+O‚ŽõJ§Ëhõ ¯nÚ1„ýh·I5¼À+oŸÞ„µ·ož–ß~ oŸ¿ç£*κhX¶ªRÕ$Uƒð¼?¶âbiI07O_ƒMÎ }îC"V¬oRß!Ì¥‹ áPŠGÎC#y´æã"ÑÙŽöèä\‚(\\¼ùÇ…·¿_\ŒÖ½ýmµ´þ¹øTÿY†ée{!€„±ºÀöWt–b›GŸcü 3™l¾ºÙ¯W–c@¹DKmEfAIÄXŸoœÂÀ(E¶(HuÅ’Q‡¸”àûŒ—[èŒ*ؤ“/Jw“ªYû¥©hãàÅÅÒÛ§šä³Éu"lSkX±#ÿØÔ£‚0«õVý@¶-?^\vñ@oLÀ¸ ¸ ëÞ¯Õ› X.Vîï©Ù‹j‡û¨ªÞxý‹ÐÑû ÞVÌñ=Ý^´0À ùrÜñËqÇ/Ç¿wtwÌžuôæ?ì˜=éèÍ/ç¬cê cJö¤ã_½Hò_üg®ÿu/oÿˆãŸSÖÿV7×*ÕôúßêÚê—õ¿?ãOÖÅØý ×ÊO¼˜Sº>ή¯Ó³¦I¾¡›rÃ<¢5ŽÏêûIéhÜO·Š«ôì¾·{ø2¡PÜziàa]}pC8¬§`ôœÝÐøä¦/Ž:¯övëû©Œã  œÍM}ÍÚ³z2Œ†ã¾kÐéÙ.³oL Ót²sî6sºðWϪÿsþ¬õŸþ»p¸Ò~ð:&¯ÿ¬U662þ_ðòeýçÏø›èüå E‘‹âéQ¤œÁ¦T);[?Uk|?ÃeîtÅ—×aŸbP‰‚ Ee–»é} ]ë`RâÇö¾¥=ÑŒä^Ô¾G6Óç-õþÞ~wˆ²¹>rnw:í9×½lõ¢ C{¤´? wÊ–—ûÁmãÿ%”zç-CÃéÃU×[#¯×æí˜›(«@‡Áð®í–¿¾Çí`ªmŒnx¥·ð.<~Kiwcýg:ÕqIáƒ'ièg~ÉÜf.c’Úè0[€øáéíaØ Ðµ·xd7Ç@ÃÞOç­ïyT›¢¶1÷ >ˆv·“äI.üø…÷äÙ}N Ù˜.Cd îì„ÃçøÉ_Ñ ñµ²â•¹ ù!p8v9}Žîh€¼’ *>Qz¹ˆ1Ò.ÇÝÞò÷ºñHhŒÉ$:-F¬EˆfeH¾²Á;dˆ†Ýën_K¿2ËdG (ˆž–ïºýNÁPÄíÉþÔúñ ¾ßÚm4vωÂè4A¨‡ær0w…ô·VØ©¤ásâÞµÊÈÅZâ+V°ï–†!Þ…”hz¢6¯8¤ Q›m¥œÊǵËͰ&Á“‹‹'ZHàPy¼ w[ˆZë6¾.¤öˆü–c¾Í ƒðé„@ª•cZÆgã°>¯ðu\Äõi6£=Z+a ¨ªQŸœ¶-'µA¯;ÒýŽ€^t…%è÷j LÁ„N¯‹%°¡ð*åOWÇ…â^·ÙKèí©¿²Ëž jÑ=¼™€`tûdmeHóò ˆÞºÅìÀöI,*e8È$X%Ÿfg}##Ç·JÄ-j4„N7~ËÃIuºÃ°=ŠèbšÿN HË€9:v1V/®€@¹ð=tXMðOÅÒ üíÒ8ð‘‰EFº’ŒÔµ…ºr؉“ºž{³ ÓÕ>‘x!Ê«Î#àÍv0•²‰vïC±Î(õ3x(JEïÆñIFêCaP¸ ¥;†¦X}3.¨$ÍŒºùh¨5æ³'Z>Mm…Å•¢qy#½ÁäæÊô„Ú;¾ÅöêÚª5éwF˯À„ÁÉ@Öþ‡²‰ñÏcdÉ¦Çøêªûi†¹AÚbb`–ÙÍs“43(æüJ.8êbEžÆ@µÍeú/†„]»Ç9–ä>H™#}áË!öy]`xð] *ž—m<]+÷ÔG·áGŒ ƒ¸­/ògq%Í+ƒ)Ë'™HeŸ°§$†¯®Òʬ*Yåâ¼’ºÙ‹T_bšÞ*·sÊFãYûõý3ºNO˜äÍãØô\z&-IÃçCßæìܼýüÇr8á+p[é<‹ÝÿçØœ†rÉ“«¿’ç•Ìóx;M·7ýA†Ãtò¥eÿº•½:I(hšæˆZŽÌd£ñh0i3Ò\JÄÖ¨6êa]™-8ơՒ4™!Í7óˆðjéq¿ƒS ™ŒÍ;¯x ]ï€Dí/f³Ü·ØÄì\F±Ã)}ÉËJÈ–’‹äˆ ‹>Ó0kÚz‰mnI+&'‚:!®EñŒ¼ƒëUqp·ƒèi‰j…¶@èrËÇM‡_-‘fÀÖb¶e¨—܌٠.Z-Ë‘Ô.Q÷ÆÐ¤„¦ikNZ7qv¡kJ°’/” fTh âb‘NîÓ…ç¸ È }£àïõ€õ~I÷¬ââž­_YY±6»††+l)b¶»x@3Í—¼i”Þˆ‹‡mÙˆ›iÃMŽÚ qrI%[ˆs‹ÃÄ °˜l?^¾£í1õEMWútì+V°ì­B ´gÜ`š±ð²ïᇶI…ð;ºü5l¬‰ µÖé¤ðR±hÍ è裮a|L®=FáçºfE—ІhIY¦Ê¢ÒúT¡o+ôZÁ{² y ´³áÅÙ—Œ#½x=ÆÌí bÝ,Ù·³T@aæc1“2›9”qçâhQI+Ë NÚ¢§œEVJ5šfµŒ3&„aýÅX?RõΆ”AM? ÇqøHeS !ð•ºt/¢ˆp£¡,ê·“ƒ·ø ;¸fhõ>І±œRRŒNfäJØ¿÷–Vð ù’÷½_*éý7cK§³÷¤Y¨š‡ÛèC(×rÄ„°©¨”ZZÑ|²ø¬ð¶–5½ÆG· ¡ók«-YT$-Ò Š?æÈúëûç|^‡Ô‹~vß«s¬.Rr:1ˆ3I¨W2‰ööù%µbŒ¾iiÇ Ò£­nǸÍ.¼Ý1¾|ëi[þ®=ÂûoõÇ„²Æ­‘Ötßèìo3ä1xD¶¬¶Iœ‹¹H1„Í3ï7Ã7ÅUÈ÷²ËØ'&*ð c×ÃàV­«¼ÓƒÊ¥È=¹£5£'‹Ù<(SòŽO0ÛÞîáaëä´v¶\µÚ[DLêÊ$[»Ž\€ÈÐmÁ*>"€þI 5É@80 -c€ëuˆñM£A²›®µ§/Ò5%Ý­K‰ :Ï®%ï |É3]4%µnÐëϤ„ ¡Ðãª5U™ƒ ùŒH!8 íVÒäDÞî[ -Ô©:>;fBÒ¹M+9gÃÖ½»«5Z[gº*SîØ[Ä F‰)LÍÀ’6õ·!üObŽÄƒr'^Qæ—5Ýÿjv³Ïa²©²ì·ì‰g\¦Îu‰hÉ*1¢§æœjðB7b@–%#±Ý¨á73KWÖÛ¤â‹5wi^Ö¡P£8'Ä$¸©%d5–A7T@¶(¯ó¡ôØGùX|5úf~e€Œûx×KŸÇ¼%eÒÌ1NzÂV†M×_|«Á3c5ÔI’–1" OŸòëu„¾c3„Ùé“Éϼ¥«(ZBó«Ë`È DPD«’à¶8þºM[Ô/Ùɹ´†Ìb)RJaâS›­éSã⸄ò"ÕÝm/ 6Œ^·ææÞ›¨.Þ ìŒ³{º®á(gƨ§ÂZ â\xÖ¥ŠDPeqÚ²-g…¢HáòÜVÖgQì¦9eÙ',˜iÈ»–g"£dƒÁèÚìfjR¦oÊ*™3䂿ùrfÚ’›•íùÆ’÷ÂÔÆÉ `§“Ù7l³S†— uç{žR3 MZ¹¹‡NŠ ãŒžÐô§ßå»$Èÿ@ßaxÂRa\ 7Öƒ ôq¼9Âý-—t¯<Â^Ž挂ì Õ|™;€þge¸6Em‘w,ð”.Í`9ܡ۷h7º‰Æ×8_ñý†k-zÚ(HMç2³uçUIÏî\}ÉϾEç0–ȉ¹r¥Re„Fe=bYe¨tŽ£ó Ïžø“·mçÜSw 5ÙÈ5¥Ð]óÀLÙ}i­O.ñÚE2IÁ€×ÍZÖ@Û½b+xºmÖþ‡Ch&Šß¤Ñ¢´Í=UA ‚¤´É+àRÝÕ!!Y£6×^͈\®ñ«•(ýmµÿûŒù³ráClߥ-@ó Ë*ë³Ò“!ô{ å6CZœ™¯Òƒ^™è•àaÌôWxõ¡«Z3”¿òÕ}›Ó Ȳg éÆlÑ…ip‚²J¨EÎÿk ÃcÐÔ%2V³!…îÜ(.Ü™ Ùrn>æ»FÄQ9sg Zãþ0¼ ‡x P§iŸÑÝœæ_}ØËñ—=ÿ÷ð ¦Ä‚ß~æü߯—óÊŸºãð þ#ÞA ±ë„‡Ñã;3p²‹ùå(ïŸògö9 ùà€§ôÿõêjæüï†ÿåþ‡?åoîó¿ñ¨ ³g}{3E3Ç„3Gku^7aœÒMNÍ*…“šT˜Åœé_¡b1“–½d…•çleà'ËIHM˜ëÛùdÆ^þî×÷dSÊÛUâù*û•vÓ€ÏÉ\,/¸`Hlä†îÎZ.JþýcäÂ`Ãô†3,ú!©}<ÿ« gHã¥=Rïd3ÒZó 4¿•¢^÷éSskã ÍÀ'ý'Å0/Ì| å6$i[Ä %¯ õÏLìXe߬¾5ƒÓáÕ{âª&oF%øÄzºO}¼F|Án‘âW>\/}mÐöCµ>ú9Óæ7ºUo54ðÝ!ózˆT“uqÌq 3dBŸíÌgn’b%ãd¤«ö Ï ÉU.$ÛCYOøD€4™5i¾ã£-°®ÒbËëi"#¬nDÌ"ÍÝtÅÖ‘bxÇ9Ž’ÿ¢KtäZ•Œ|û‚Á o™[@ ‚ÕBQà]DŠðC8„%}+æãÔ¨¼-&ˆ!вϸ±h˜Sdþº“Š}¬ˆ@;Êѯ:`‹Ôà¼Úì–?õßzål‡(+-Ó²Ñm—ÄUâ 'Èáu)Nþ¨‹Tð‡­f¯nG%ôG`Œ?-tÃTHèL$­ ’VÂæ†Îp„Hª„èê*–ó(Å8Z0«£¯’a]ÌXwÒòÅør1åûHP1sB ã-‹«¬«ù¶ nÒP}÷’Ý­ŸLíùШQ¸– œR®v_˜mÌ4ÙÏâ[µ¥8öcó±Mùæ ‡©¸Ž'aúšfýÀƒ¯;Ï/úxÕÁ×˱»ºü†Ì"¡ÒJ%ƒÉxOF.W×ꥒŒŸŠ L&¼(«¼xÄÃ\Råñ¹btÏ¿x]Àaÿ?øÀûß÷W+ûuý‹ýÿgüéùÿñÞÍh.蔌¹þ¯ÖÂR2 üfjê’wj­^’Ð.<(èâ¬þcýøçz j¢K€p¶ì—@¿}ÞI[FÊ]õJ‹LÛñzè×0¼-{¢ÉÕW©vû¼zÚ*–}Õîzv’lÐ…ý),nÂ^OEŽKjA}—JBzÄv€¹«$r&E¬<8Ým6Ï)¤¦•®>¨;»q0Ýéá–_½–J6à;Áÿþ{xxvª2;¢áåĦ›öν6— |‡Ê#vÀÐAÖ‚ÜgÇÙâqwDa”+Ïg!÷e‡üS(œ@ÒÈ¿?¼Á?Û„à¸Áæ^rå-{¯ðê!¶ú×0%ž¼[`wp&8m×—© ?ƒ!Æ•A 0^ß•`F²o/Årá9ç—»Äcã²û1VÂ×EiÆ»0´º£V|ž°¡=å-_‘ûO:’žÂb)Ç[rž¶Epjz5Àè´W…+ž‡`"ÁÞhôÏS0£DÌo„ 0{{Ñ_âBý3D÷ùÅæho¤Mo½oŒü@—ï¼74XY1 Ù™ËeœèÚeäˆúäbx´![Ѧ;ßN¹´.™ºxâbE=Z”¶¡$µ•îŽ) ƒÞòʽ¦P| Šjh]à$•¢›¹(ʨq[ç‚OðóxÜÃ,R,Jî÷;Á°#‡ìV œ›èãÔ½ôðÔ… X)áRTûø5À¸5¿¾3¸Þ‚¨1( gÜ¿ ÛvÃŽW?µÃÁˆ(ÿ¿ ȹä]Ò½¹#‘ÔƒZ­¶¹±Ž•˜w4 ,Õß^0…F…ý[àt{zÃKr6ª§N¯á?Ø@µh¶ûØ-zÕnƒK¡„|Úä×÷¿èH°ç.–à'$^,5 Ý3€s3 âçϞţ°Áø»r 8Œ/WºÑ3ÈŸÔYû 9ŸcÒÅè+/lßDÞ“ß.Ð?ôbé¹·úù‰÷;Tá­‚÷æ…ÿéLøþ™ rïùç¿Z?Õ§0ñ(iUâú¥—s=ÚKwI¡P@‡)€ã•R%R>ÐÊeÔM+Éw«*Ë–îÉ*:j9nC>Óª <ÑÀÏ ›ç•Û©õ ÔýAåèt :eª$T2½cƒé§À`cþŽeÿÆþAŽ}Ð^˜9°LóYID˜ëmXï$ÿÏqL ÔÃóÌÒ‰Mœ5Ä–âÞx8(’KïæÓNñe‡ÕD¢ Û¥àSpå¤0žÛýÆ»ZÄ) b³ßË0« »ÿËš=•÷(•÷6êGí›! FÃÇY¥‹©â§in Ëõ»ð.&™%³yà¤y\š…Q )&Õ¥3Á<ùOÝãƒ)‚a—Žë|…zžÇûöÃwŽ¢t¹ªw%ªæ–'á ¹m#¬«¼’$@Â!f!Qýö*X›ÀtCÖ“í’hŽÓ ý CÂÁ»6 ”¦(á ‹Ã‡1ß7€&ð:‘E ±JKW2üN†HŸ^J„ WÝvûäVJ#öN¢Ò¡xbüÙõ½èõ!èöˆ~x¨`·ñú”<¼:oÞ–x3Ç2ˆâ.ŠYÐKCÊIò¾y»bÀ¸èŸÊȥƬ+5Æ)ƒrkç3ºð”H|Ë~q‰ñæ}ïU¼ç”P4wwÈFìtÃJ™³Xò–ÎÌqj§4"‹uW&óN$tÞÃ420H2 «–•0öoD‹`^'jƒÀ(?eæ–S«+ܪGÖ¶U7F¬â›‚išÓµ¹ÖÙ|M6íÌ–Ÿ Ù ”äë$˜ÐÀܧ7¸ Ô—b1½EÆuEýL]<_ðhd†,öþN(Qî®\¦l-HŠ“½P…àc[æFQ½U)\T^U1¼8þ'â!,4Ëù&UT”Fº'¸RR¸‹ÖYT}*'…c¦buŒÐ–ºwsA°ø¬2ˆê™`¬ŸLé$Ûc>!¦L¡‚IXÜRjÑŒÑFkï(¬¡‚ÃWib¬V¨ò³ú˳W¯j »€¾ºNµ×~9h⥴ͳS«üúêv5õ½UûewO•ßò·©þÓÚ¿2¬ ú«k[LÖ3œÒ6OSÖ*›UÂàÙ²× /Ç××4 öÁ.£XfûgG'­ýƒÓÝÓ#«\ucc 0³CÝ+Ë—úbvúë»î öð2è_[I×W¬ 6ÿñx©¤óà‹Ä¨~¬çæ"š{Â[–³\ØM%ö>ÑžÇØ=Iô@«ô±»¢žøÇ“,@HŸv4§zA€¬×‹Uy/KE$—*’ãâUgK*?ç§ús‚Ìð2ÉU/¸–U Îøv`(e½êá¯ïðqo>f£§å .aJQþާõ¢ÞÆŽÔ¡¬…jP‡_¸¬á’ z0æxÚï[xE…’1ý‹ JÞ¾1´FQbÇ$Œ+Ð…uâ?e*ó˜7Eš\ Ä’, •ì ÞeÔ¢’ÉÑi;ð6X‡¼Þ– €ª`ÓÎÓHÖ¢ª;uL[…àZUÉF䀱ŽÇÂ+q3C/ºˆ>hÄ‘Ï>J#ââ+dŒsDm€6KÀ€)­`Ò-]¬®U—ˆRŠøJL¡˜æƒ,¾TÀ\šoZ²Ís84æ¦$Š4º>Ga#ÒŸ »…™ñ@UruÕÇèi¤Ù«'½oÝ0SîP?HNç‚=©Nøvû¢w`Æÿ3þ­KúÅþÿ¦ …ß_dÇå`B=¸Å†´:£“°ö¤Evx3•G“Ìâ²3&RƤ£—µ† …Îá²™ G¢KfŽ­p Ûa&ŸC«FÖZ•NÚj&ÛíµP7³MÔ/™éÀ×.¯žÝYg¯Û³ òñHO^ú‘¬8 ›1êL,Ì{/lZq§R~´JCÙÅU"8ÊçZBøB#d¸ÒÊ=-x”ËdÀ”GÀϽâŒ+P¹Ù½+‰²gz3ê5–þ¦Ä%P:Ùè’gýv0¾¾Á}׊y’ÁîYyA{Òµ˜ÒâY ÝIDq‹§ÅitbM&Òù‚ŠzæÏ$ÄA¼ÆŠ*ªVÊZ±Z¬Óˆ:ŒRð ç¤ bÊ$Nž Š`E#½ºóÐ+3+«V)ÿ<‰ŠdžØ4†a|”]š@)nµ/i±Ù[f·x%‰5¦GœÞ2mv-•ç¶T\aúök/Ï^?Ç3ª °ä)¢cØÿWУØI£†£˜{]ƒ$ÄoW¯ 9{†ì1dXžF<“ĶÔÞæ²#Ú1Óøž¯fzŸÖÂ̔ˠCôX™¸ÞdDÅ.)¤³s±Šæ.ÌCæc–“ÉÊG¦–D³ '÷M6H>µtwø$Í_S—É™ÝxÂBˆ—Óç;³HTÞò2'W,’:/\1î•ëÌp4+À¬lbuŠmé,%w°{…ÎÓJ1GrºÞwlðÒ¬É匵X>Ôq˜AZ AЖç^!\¹¦ë3Ÿ1BÏ(¤hÁò¡™RT›_ê¶ð&ŠÙƒÓá)nƒYHt]²˜¾ûQ†HÅb½o¦ÕÍ“ø ‡¶ÄaFü±qcRÔX»¡Í[p›ûhÙú'V?Äê‡ÁÇ2¯̆C²æúpˆ´q‰™ŽL2ayaÎXš»/Áv[ ›ÅâÃa»ÇØö¢á\„3·¡™#D&q:™ £ÔÞØÃ! RAÜîvçÂÇ\‚0dÀf^÷/ÇW2¦3"™uÚ ]|"%N©‡C}etê™±—›{’Ç”†êí4ÜÎÞÙiC÷áÐè#h÷΃‡¹wüp¨\!*èSTFûb6LôŽðáñ+¢ŒÔàõô¶Åƒv›Qp9«ÎS»;Ùì¿ÓÄ”ÎæE§E;¢Ì^o°ž×xÁØ®å2ƒ3í}mÈd½€tƒS†ÊÃ_8Kd„ £¨k˜)6ÿ%×·xž]{øõ;osþFÊ{Y.²Eèµ½yüž·bÀU›­1 ®ùÅ"ßϨ{kÿºW=#0"o'Te­fJów§5\¯íÔ_ß¿ú2;[‹V­Ñ8nœ.<è…¨Ðpã­Ìþij‘ÞØ˜\@‹©0¨Ïé ¹m.›×5&—?£7Þ‡€¯~Ãs mÜ©A/Å©äÅiò„¶LXhòwòs™KM‹2^¹”.†Ýêtìüû`/shäÊLÊ }˜Y3>F‰:ŽÕ¼’2(6ó%B h*µÙ-±?o‚Ä)#³WPÌ®»ðÄѨhâ…ÍäpCu¤V¬å—.ƨ®Ð²(º_‘Ô£; ‘K¿S銔?€±$sÓ˜K™ƒÉÕõ¯â¯½Æ¥/02WÆ9ÖúAæV¯˜òÈæ±q€Jb#¢„*ùtÈP¤ŃJç7¹ÿ¡t˜òæ5±žç.)G(©4Lê úž«yj·t®vr¤l);ob˜êˆÏ½H²&`õJŸ¾J"UD¡lqåL´sOÝðuµÈ}û…R&šuògíBª?s72Ë·ÄkþvP¶kA/ªˆÊ©&˜ký|ÕÆ‹Ô5…âhÊËÉÆÈ|ŽEüb p›äŽnöñXµšú€:8EÆ?I £êñ–Ø' 'zåN7âIs"c`ø/jpšõ“OØ‹ ×›P»ÞÄÅyпZä'Ój6v÷j­Ý\lÊ µJ OÉnpJ†š&TËœ«¶DÞwqë'¬XNÀOš‘²2Zúõ}YtMr2ØÀ&å?œUÓM„á¸_¦(“†ksµA NÀÐÊöÎ’â1÷bÔ =3 ÑèfˆYX€ô…ã8¼óizD†"Xm´b5d¶«œŠWþ c£;Q°Š‚–¬oR‚5ùn¤»¬Ñ½§^·8‰É”œ§ÝØJïN[YYAÑeˆŠ˜t×G`“2¸É;žz§·I Lj§öBžsp;³PÈŽiÙgË&HîDû¬=¾ŒøJæ0rHá´¹|Ö¤uâú±-÷ºßy¤‚€)'²gËÞ>@ÃÓ“´×ä]Þ©ë6Ñög¿â]Ž»½EGÆVöÀTÂ[€ÑI¸ªxÐ îðX;aDQ~r£í¡åldøe|÷Í=‹¢çÙÉ”µO^8‹R–lIs÷*§¤´ ]2µõUÌYÍ–ÒRÆì°ÿ¡°]‡>œ.éãwtl{ˆÞæÀ®Ø•[ßù|ß#¹/¼¯tÞý~´ˆ#B☼/b“¾ÿ™¾;vË]þ£ÿß3¼)g†+¨Œ2_7^ÔŸ­¬<ƒZž-\ /Wt3•¡Ÿ¥.j#R¼lì6Î['»ÍÐÛ5C'¢&ϤÒ÷‰Óœv‘Sßm7¹ ïjÖT !¿ o£á]âµ@ç¢ü±ç/YÓu˜ºŒÝÅÐNÖWx=²Nˆš15è@ªujlR FŒ†‚1óAd5Ó[˜D&]YŽË·äÖ:˜"Sç¢_6mË0 x9šX9nÑ1çÇN½ŒC¢ñå ®6“*ñ%ZZYÚI¹\æ8†e4Þ0Tò#GÅ’HË`ö&¤tN[óÜ6ÓâÆ œ3óÔ—ÝøF½“æ›3Î4ÃpfÜ<5tN SÓAÛù¹Ë¹UŸQ†\Ë—Œ‹¥³ë Ró=g‰KˆY¾+؆>EÞhC€èhæu³n†˜·þØWfømyx=W¡/#•]ßÙ ½Ž¢Î÷ÿwÙªUÀ$Õ¹ÄÇ ^‘Ã=rëʺ‰_åNK4_é-Äáíeïx^Õ”áùaäQæ40žÅ»¿‰Û»Ù’ÚÍ¥¨ÇHÓ[DÛS•ÝÏMÐ=øÞóôUº³TÛÃV?üX0›Qœ\Ó#2ôÑy04‰™Ã˜óƒ+m_ª›Ñ Ôp!H—ÓBúþ3g5xÉ„÷oZÚø7ÍG`:K¾t%í¹^ƒ]݆oÂa˜`¡Ç§ùü’ŒÑŽïãt§·oe/—ãð=…$à»ó0O‚¥—jÖº±õ6V š¹÷;§ÍÁKä¿KèˆïÒ+T™êº×ýˆbHÍ]o¶ÖÏ¦Šœ.…Vd 6¬Ô½´êP¾dCÓ8ÖFgÚ½ïmäÔÇ/VQU©œ9“š2a <ÂÞ®h¬ÛŒÞ,T#…»UÍ5L?¹ ‚OcÝŽ‘Àv¥eüÆÖq¯½ÃNô±_øFÎ×ÒVTýFw¡9E"ƒ†çŠ},(C~'€Çn|(߆Cì³£uÌâ/÷gÄÿŽ«€.gyØ; ¦ÜÿP©¬WSñ¿«ë«_âÿ)Ç'…ÃãÝýKÞÞq´@½IAFüâ#ø²vRò0ŽU½V"m_*êK½”÷¥b}·5úrrvúí³ú~­‘ªKžgk[¥/ˆáO%ï§ÝÆÁîËÚ!}©;?6µt©ÕäSëõáñË]°¢ÕsU}FwÐ_JvüäKëø¤éüZÛÝû!M”ä s}}uÜú{/»u`‚_¤œãë?a.“ÿ¥õª”|ÑM¹»÷#îºü¨Z ËìžœÔêû½ü„§µ†ÙäuÅ2€ÿº–¥>Ñøìeí—“ÖËLˆÝ’"9¨R/%1‚+© O¤?IYþTÑuïí¶^ž6±àÞ«³úŸj6¿ÿó_%ïŒ?iN4jM£"Nkî¶Ü%ÖáñéHLòvJÞ~íÕAý I+ˆš´*O£ö ÐI^ZGGŽl{Ún³6gjí¹²ÚØ›R,¶p^Ÿî6rêÙ¯œšÝT8:Þ?;¬Õš»ÎϯkõÃÝ—µC£r¡Ô~í´Ù8Ûk"»‡PF‰çªÕ/3ݾýÕZò¿÷ÏÿyÊÿÜ2qü_÷×׫™û_×W¿Üÿú§ü=[öv½—ÝX®Aa6x`î;ïuýL¾¬­¬®¬¯xo p"E¸¿Õ¡äq£ýfL °¾ÜÁ ±z17û˜*ç)hio¶Ãƒ÷)ÜMg (/E&dÔ®p™¦D¼¾Å€ÈÏŸ=ûøñãÊu¼ ¯ŸõHü커ì’ÇÈ lw¡2t«DòwÜyíaˆî8pqˆ’|Œ†r ¨‚nŸü%tñìbÖK#ÌîèÅïÂ^8ŠxUÓh„ ˆˆ±a’£öMHC“"_j%ò|·„rÜ–çkkÛžb›t“Úm0ºYä6´¼›ºŒ›¸t;`’z¼g]&o|}Õ¨ÕÌ;¸IÛ67­ÆµÝóÄEðüœö®Nš Hó’ËɼV«=ècü?®0WðZ×µC¼eÛø‚e<‘‚äáf×`4į´iéεJßÉæòD~ÖúÐíP!È%b¤QÂj*6²§Îù9/E9~ 6 À÷ÝéºzëHÑ?à 4jè{5¡¤¡—q¨rIF‚°Í:^Ì´a8è*#ez'aùÝÊ(¸~ëö(vÀ§=Þdn´~hÔ÷Ïökû&Žù™ÐÕw?=r ÓÐÉMׄD È aD7É~ÂQžÎÝÝÑ–ªö[‚Z–¾¦ð¾Ãðý¸ C,¨+Ïwv/›ÔÍ66RÝlIßW¼¤ïT ?…ÃÎAï,ôaóü¤¦¯35?@ií×^íž6 ‡xoyòÔ‹žùwÌèDÞoÞÌÚ“©^œ­Ü…ì§!EuÕ7`Øøáp,Z¾|Øq”@OÛtþ:%ï¤êP[Ç…ÕªUËt¬Vs°šýï‚6ÀeŸ—»D|*ë4™’HjFïpzƒW[¦Ä½yüc­ŽÂbŠ|’ˆêg| Ò=B’x—ñ þÓîáÁ~ ¦Eݽ& Íx‘ƒÄŒ<Àð”°Í ¯j‡û˜P•ø0‹ª5v)Iî1‡‰ÔÑ.•ªV8¥QÛ£×5~=­5ŽÊ:§ÔþEoüV—×*¿Ò*_mÿ˜0«nrâî)½mé,ô*XòJ¦l šG'Ç ÂiS°EBI‚æÙ,›?Ôêô®pÄÀîø¾‘¼·¤HUµsÿl3mjZà:% ®µ:5}SpÝå×-A”[¹%H6çô*îí6Ö–àH –” H¾„ê~¤ÁÇU|­jÒŸœŠ[›IÒá‘sk+aÐA]Ò¶“4P6˜´½ª“ö~¢?I1¹µ-ˆÂ›™º-˜¿¦Uà†$ ö»‡TWWjW¶¥ ÿú‡aÆÍ^fâv5õ…‚¹â‡ÍÔ‡ƒ:€<1Jn¹3W¶·SŸ9}mUšŒ‹è,lk«Òæúqýø¤I)xá³9vP‡M™uÙÝ-ùJ=ú›Ná..¹à\úô¸$w:èr: {ô9ý.Ý:NòC¯Ó¯uz¯ê÷„—Ðït*t=èxf&ìyú]:t½¤QÜû ïTàî/I{…½O¿R„î—`‹=úŸ•ТRU£ÕÔ¡š´¡N]0) |…>˜4 ß·”±Í[ ºØ¡êwî‰Ð¦PW„ލS¸/BO4o¦Ç®hr„z#ôE+ »#tF‹sÔ¡7Z‰Ø!¡;šiØ#¡?ZI ·“&HŸ„©“’N ]2!Ñ+¡OêôT·„N™ýDýzeö‹Õ1¡[ææ Nmog¿ãè˜ ›¥oBÏL$š;'vMì?‘c˜5€zõLf}do¡ŸI:±up öÖÞá.È×£Gã>š¾òéÑo2ޝÍbJ`Û®¶ ‡ Y“ðï»eTÖ6¦› fa;pø·°QÏÓÐMÊýt°‹“J×WÕ@{2p(æçººèv˜¡›BX¬^UNž;ìôGh P aœï¶6;VJ;êoû*­¤2Q‚ÊóÙ¢G5› ‡r =8|ûÝû›ˆ{Ë^Ð?â|[º’j¥XûËÚŒ7>%fÿ²ùÒ‚9%Ó J‘û'L…’2µ@s³/ži… e|¦¤v+3yA4ÝS²(ïîâvÐoÉ&¼ê »‡…NVèš…yþæŸÉäñ4¼ŒÙð²3­˜ ÈÝ{Ù}Ó+iæ+¾|Nñ”¾£€<[–Iøò³9‘ИX³ ºAa&RLbWò&Èé# èý„¶d݈Éͽ°Ìù|°œ¹‚ÿ 1E™ ? ÂöýÑñ1u+€0 qi*aÁÀh™Ú–\p^^Aòlßv¼ø&ìõ¼÷ãˆ\&»q<ãï‹è'YÜ‘‘Å*9ëw?Mƒ®ÎÚÑvç«I€¡ßæg¥{€èÑÚËøú!)Ôü†„9X~O%åèòØ«ì\åïD°^†9(ûfsKTÞ”W»(÷ móâõ–œbÙE>Kjød3X¨š‡Zíï<˵2™²É¯y.‹!}·¬Ú5û-/v¹¥‰_$Ø,îÊ.7f•’nÄŽ(.+5Q߸ÃÈLוÀhР”XÝ׫.êò®[0tÛ=õþ ¯naÉ…œ±Ç­ þ#oY.hÆûšWph‘ë\€-tî]ÛÏ<¸zï’û)YLõÞ×9‘R˜-ïÈ7ÛÍRLÐ .ÇWoü·Ú;œ:m¹ô{¹ú¼€÷æ@ì s $ÖÜ¢ƒo|ŠVVãîžt±~[ËQ”J ¦ú^G~-Ó¬JD¹P4ïÈa^‡ýƆü$…&ˆvÀfX—ݾ„Ê,/A10C‰K`jˆ“û;'Õ†1¼Fô)Ì«5ƭͼ–Ò zÍ U×°×í ¦Œ“FºE1üɬ1n·)æÎÎ+§:K³§œ²™BoÇ’Ì„ä›ó'¦(P×É^Ⴣ·J©´®¢^G8(V^–ä:ÕDK<Öj0FZNiÀT–)ré,riŸ0Àô£hÜ è:„§ú:„Dk !˜p g&nÜÅú.MÅï„|9äË4äÀ<“5¨UG•¹4y¤..µFÛBr¼l*eèjC$ã.u?Pc–qÁ¡©8õ1hUàrJKU þصo‹z¸À/`çó¤ ¦h<Ð`Ì•8{Ù½œ“}Ù}9'û3wögîìµ=÷$;æâ9¾Ç¢0òàµîÏÉ^Àü(åë )ÿxÞòO¾}b–ÿvÞâßYÅ¿›³8/qYÌÛ½$fá1 ?óÜLûœÌ ,­á4g‚ 6¦1' ˜ï©îPò<‡¸[6§S¡}v…P-|d5{’Ȩ´Œ&2Ê1ŽX‹{¿ìöðäA€q´ “Ûöø…pð×:;Qò„3³•§qãB®+°Ýäê0¾Ê*¥?íaä\j¡?Á’!#‰Ö°²Ývû®|Ë™|èô5èÝe³>Kgít?t;a6ãטQ'“ »€•)|?†ÙH:[=“Ý€œYI9XY{0³Èfû.횇™œª¿g`†ï3yŽí‚m—À+Wù©Ì,Û¦ä0‰R_K†ýØ n/;uDãõ²˜gÇ^EÃ[Õ‰=¾Ï&$«9(%/q©%«Ž¤C!€Ü eÉ6¶ Ýë~b=ƒ«úŒ›fïÝ‚ÒR&܇`ˆÝ9¾Ñg—–àûRÖø³M¾ý³“¬-IkP:ó!ij‹0—Dfœgˆ˜d5È¥iQH´ØB—:ª–_¢Ë£:­,óÙ2tp(‡JåášúŸÆ˜tÚ_Ç'ŽGyü¹/\a沬º¯¯mMÚãÑ«î´J!û´Ë—¼É~„ö£-‹³ƒzsKo³˜‰èûÉ­1HÍ–ZúL6°Û‡^IçtUäªÇ¬ÆU‹£ŽIU Ú~ÕÕ¿jâèWs›ÃQyÑ4•?§QÙ ­úœÕejÉV"^:§ÿSk5É'Z-NÀjZè#˜ìÈQz&CØ3üùâLW1ý…ò[[™ Ïôæ„ï+7ß¡š®ºi?]Ú2šX;@¦3hnY´ÿ£¦ûh÷—ƒ£³#¯PPÅ‹^OánƒD>£Mµ:¸kÕOÑ|6ßÅÑÓNHZÞë‚õfoºá–X8Н»¢×ØBÊ–.Ñ9²<÷GÝ[ TË9²®Ÿ¦GªE/ ”YR%Åv›0 xyÖ¬1- ‰+ëëúÙ^«5§ŽR®o ¡s4 £Ÿê0ú+˜e»Ê¾±”|tP?n´ZEB >§gõ“Æqk ®~ÚðýU.¬ÒmèvNa»ù0f®hµ8Í%h™rÀÎð/óm:[è¶m¹ÚŸ Ufˆg«5ClødÀgu¥ýÐü1 z †ØI÷k²Ö#¼…ä­Ï zsOy¼33iß’Ÿ³_)Ú½©utJ¹¢_YefIšAòV ÷•ñä^*ω%2U¥¸¹)f¡—þx0 &ö˜*euOvõé.–Ë;o‰Îü,y5—{BU³%•,Ñ&W€…ZÂ=TxÖˆö)‡iÉdI—ÁŸL/"®¯n½¥å-{>PõiªûXí èÜGšõ:ÝàºÅh—x ‡÷o¼Ë7bÆ}¼Ò¹ô@w¤é†¤¼®c¸€£Ýó—(ltT&ëÿSÛç£é">­“ap}€ {½·gÖ8Ç7KÅi¹(4ûb©ü³…ÐÅÒRq޲·ÁÝeXÎ@˜µEè 4­=Ñ`ÉÁÖ–€iý´{xV+P‘]… oqÕ·§u.ÌÑ8*&ÞÓ[BVð\ÏõŠ)º©Þrw}‡Wx¶ úLú|95&‡Üºý]tF·Ñã¹'¨¹£pá(ùê¨ZIŽfˆ]ÔÜÝû±…ÑHé È® ÜîÚxҽؙ¹Ÿ'iµ$°) («eCµT° Tk·>g{ †˜Š¡²sX v »¿LD15CíØÜÊñ™™±Qõ ‹ìúäÈŠ7#§g‰ˆ0£õƒíñÅñ˜Îööj§liÙV&˜[3¢ÍÖd<Ãe'*ÓüØõQQâÉ8W)?Æ•:ˆÕN æª|TÖ™õSÿJßIË.Qäc}´ñô(Ÿ'±÷„‡ŠîUù2êÜ=Q£–Æ7Ey<ëT8AÇ òv2†šË×ç^bE(ZÜ‹¨«ŸÊÁëq€G¡ÃЋú½;º‘“ÐOìäƒ/y»ŒF£èVèGAûžãAÓ€s£ÕOgÕ/é`yŒb‰?ÖWÁ<¼¼ÑœÓ/“kó>z\…½;ЇJºJld‰ÈtZ2ƒ(E˜‚&å)0Æ÷ÀдæÉu63ƒÌ²K Îæ´ÇyŽÓ?œÃ:|’•g/-dR³òëp·@¤SQ éä8yMk¨Á0„CÐe`àÒ¢)­¾ÒJ·!j6VKìÕ}wÇâÆ~vÉò:ÝÅ<˜ãb®rþ¾»û`¥JjO§¢ã¸Œ ¤ÄEÓߟº·ã[ï:èÛj#2d)ðS¡0”jf¾ÁšèõîI²ŒÃ~K^ÁjK‘nÎ`ƒ ÝòÄQ'P­‡}¼ ÝD½š 4ð™€"ŒnQ0np@—8§—çÍÚ)2Â×þ^NÐ3 [„Ù™JªÚIDÒb¢ãžz€åh>.[%˜ìŸœ·êµÚ>9›³WN•”˜Ã£ØÃ¶j'eh<ü#²ƒË*…HâˆÊ' *ô~ÝýÀF8/5@r)1G¾P¤S1XxÈ@xzAÄ Ë B ,£ó!è·C)†ÃrVÜuqºÄG$Éâb_£†æ&®î`&ä’G/“¼È/Ä dB–ÿ«ïç~nBò’õÑ»; +™Ls9›P¶¼Â7wwäl›¥:×¢5$(³÷Âs@š ·RÒ(•S·Å޾¬{Ò²0ð©«ïìX°¼}Íú,CŸÝ-³±šç¤î$Hæù]ÇòÝÕip0ô9½ã³zS¶õbîü§=ì6û§Mîç^‡Ð¡(€]xÅ}§C8ШÆ± T¿ÑöV˜ s¬JùÆ"¯m6`ÁÂ~<Á‚ôìEãþ(QuÉ„ª64ÂÈZ¼ƒ ðA »ltwMNÆÍÞ…¡™µ«š#½Ñ%»ùòd–@-£G—<@°VA¯OŸS%<¢Yñ ||‹ÞDH"zÙq×1«ÐªÖ1× ³eTŽÑxP{¦\FEã’'tœ1%ö9­„K{•Mv¸{ÚDX‡AŒ»cð1ççMÜI—¥ÌžçooV—:^?EõuCWº¼ÊíU·¥x½™*ÛúùÅ1··¶*eg‡µTéá¸f‹qFϯV¤$†£N%beËJVoÍ_“&7»õÓCH}s~þË[â-˜)FТp<ˆ€Å(‚"¿à¤›Ðuè :VQâ`DÑxTŽpía܇i5yØ'«ÉÂv}¿ö (̳¢²ürF‰||2ù ñkè—ùÎq‰¤ æ®`Ñc@ß¾0jýÍÝaÐ1”ä¹j1C3’€rýìhÊéÌH3ƒ„)úÑõTH(>ìfî›[ÈCG¤ƒí¯êP± > Å!ü倪üبºU™FUŸs­óƒs­oñÛg‘oÛ´*CWA/àc´¾Í邨Ö±gTµHXMsæ?¹i)Þn2+ùQÌÃÿ¬¦}ôÐÿ%@¾õÆ:Û[×€D£‰*ãþîIgEî³Z÷Ï€|äk@>òÏ€|ä3  ª0  ª0 ŠTa@Ta@Ta@k h­1 5´¦­1 5´Æ€ÖÐZ—‹­3 u´®­3 u´±I«ƒfh4ÚE:?oÔÑ*­³mÅÓRrd¤Û©È:V¶ä¢ÀŸ2ñœl(ÑBæ!9¬$Œºc>ÖøAí\c¦­1­×˜´kL¾µ5 2¿83·›»ÆÃøÛkD¾56:Öx\«r–M h“mñç-þ¼Í¶ ÂúªÏ ~P–u–¦u_â'8#¼Îl_g¯3'×™iëŒí:c»Î6κ ²¿$?o2„M†°ÅÛuÆv±]ߦ–l¨ðE`ÍpËãÆ™TL± ¦Ñ›:lnmðº±ÉYT¨+°‡ø³zl™í ~Ð[•IU]%@Uî†U_Â=Á/ÎŤª2bUæm•IUeU™FU¶ «l˜U7”|W™·Uæm•ͺ*7U&\• WÝä·­ ?¬Š‡³J†¼½Î»Ér¹Ér¹¹ZåÚde²ÉºcÓW€6¹M›•u~0 ¦ù& ë&“~“íÞÍ †ÇMØÔìßdz“¥`“í˜MnÌ& ë&KÁæ#ÆR°ÉMØTq°¼-æÅ£¿Åèoùëü ü¶¸“m±Ìn±ÆÚbµ¥µÒKï³d‹y±Å­ØbFlq+¶˜[̈-fÄ–ŠÂ¿·b‹[±ÅRµµÅ€¶‹ôÖ6Ú&@Û« Ð6wÅm–¯mîŠÛÜ´m_¾Q%ÛÌ–mfË6³e{M{›î6ëÖíuÒ“æÚŸ /éØÊ‚$_¦ª¸aöæôüèåña2Oå#õtüDmºóÔ5ÉH{_aÈ›’¹Ó‹éµ_âÃÍ&%k!%ÇŠ‡¥†9H‡VɈ‚VÂK_áà’·D#ðÇWä}Žß2AÌ(c—á YFçã—$n¥Rˆ2üu±´²r±Ä¿¾~¡~½Ð¿ë_Ïžá/t±Ä*Q?o£Œ=ê­‹›ü#ýÆ›Éúõ*…tSé¸6™üîjÐð3në/WÑ7@ õ-H~FCõk4¼S?ÛÁˆKâK/¸ { :c¤¾µ0*H«¥^×txª•õ¯å ”gÅôÏoõ¯ïô¯ï™¢Þ’½‹áX!5¬Lf´.ׇZ}?‚R€é” >ùý =JüxÁoùñ?ž>a0OÊü¾ÌgüøšÓ‹¾çô~øQäÇW Ôs~_áÇ~¼åÇoüøL¯‚6FÀÆŸÍhp~{ ∄ŒDœ,¦–ûíýðŠ~×> ’¯É¯ŸoðDBà÷WÃèÖ(Š?O0HJ¬áV øëÿñéߊ&­þR™}uî¤r"uú:>w‡×±<ñÑ'Á#ÜÆ 'yÓ¿9û0¸ƒwJ?¾üÕþ‰¿~ ï>FÃŽÐäÝ~·MÉüë$袞0Â,›:R»K€p4EÿÊíÒ„……áÅcf¥4wíN¶ñþsÉ[‹}uÜyæù·cÐm—²ýŽ{Ì º8ƒQ žÃ*­ð²U…‡´ ›F¦+<ÀUxéªÂct…‡;ì”Òƒ±9Uá!¼Â£!.¥bS«ÂûŽHJ±HéÁ€Øø«ð¸Ya‹‹Òƒ±}ƒñC顱ÁSaS¡Âƒl…M· r+l adOz0 m ˆí¼ È6”*lõUx|Öæ<òyÈÅ9 >´}£홋ÌW$Q&>lÀ¯rbfíΞ ÉœIÖîdâÃmò¸1~E4.sRå¼Vý þÊ+û[É ×q€—ѨÐZBò¶¦FÒ˜êV‚.J À¯®›¢é¯)Œ|¶Ì}šøè–¯™QëÔ­}¿²šª„é¢Ò!#zz¾Ê²ÍvYV0¨{dÝëq/@šÛZ[ð¬Æc}ã±ò}S ¦=,®Ýçq/@ù2óW¹…åMCÚÖXCû›~)‡TTÜÄ(õyÔ¢ªÄ£Q,-ž¼t–4mƒ‡… ?ª¼?ã“ä$E×çe¿Z¤ñʦ¸ó›ïo¬§…ýVf†àoñX·Æ#)?ü-^)X§aÀç¹ åbS™I4<°¾e²s%ëƒôðyÑÇzèι¥Ù¬fÕÌ~^òYCú¢øiªSÈü;Ùçp;­Ê*&ý*<@{fM…òV <Äû¬µü´ÎÉTb¼qÓʾ_J³·ÒY}ãÍg®©·ª (Uk™- CHµn§ÂË>k÷²¿ac¤QÙÌ ¯UcÕðÍu©kÓTñ72ESýÉ7ûšC 8Ôˆ’¶ª5 áôÃê€ZŽ8Ý÷EcTÌ"ce»õþÖFR%Pö”Ï‚¿jvt'ßýMZ±ó7 [Däx=5e˜šçËvd9]å5â3ëŽAß~h¹(Ë9Xoµ:¹ÙVᙉŸw´Å…·vdl®}¶=Zs +K&3]q¶1¬,æÃI8ÄxÅÝM˜Øj(䨋t×Õ]óD‡¾8ÞÌŸ:jÿ#t}öB9ö9Vèt7,”2ê<±·V­ë ^’ó¶Äâû›osMH9KLTs¾ÍhÛÚV{K@[FcR6eK¹2±.µ©´eݰÃô[s3À_ÕCß–‹Ø[kV™tc0‘)毩‹íËdLajMV kb{ÊXÄxbå¯k@2F‰jäáH L^¥ÏePÛpÓHëK ïÉäu{v9úƒÉÆ ·¡ÙoÙà“ŠŠ§‹j¶0¶’H‘^“bbÿê7ß®Eš¶iõWÅÖæýÆ-Ý4ž@ù¼Mç¯:ù¾+‘WP2ù«Ãûšjc•ñSû®zèS»©Ò­d×TvnùÍÞµ÷dõ$ÓØ?%²W+»³²'kmÆn¦õÄbû²³¼åð­í@²Ûk~– £ tQJ¬¦ù.&Ùäü”’²U–ŸâÚ†%+¢y5Ëß0‹²í¤MÚ ¥Ø|_¦øå5ÃWq&Iö¦ˆ§Eœ-KáÈ4g#Ý4ß^hr()oÃ¥”õþfZ9؈Mh“ïî"ºÉ.:ØdME†_Ѷ…ð–¬DHc6s1Ê ¤˜j¼ŠéWeM¼5ysÀÓ“!5[õ¥ò:£½B§…ÎEúÌ("=|[ã ‘ÂA:´ÌœüJªi¾E#Í4êN^7ßà^ÈÙt3,…]G£È0›Ü6eEVIÅ¥œèC™2¦Öy¼²á“¶ŽY—«l‹‚,ëi€ÒwÖ¼Åg@ëŽ5‚rE¬w¶ŽW ”Ý;7‘À¸L‘Ihà¥Ü~ÖD¼ÍÖÙ^4Š„‰„±Åç‹ñ)G¬–Š<¼ŒÍêµ"ã) ö6KÂ|¶i}Öß¾,±³èWXš+2¢ˆõ+š~Ë’$2ãßdfi–€ûIlÁ»æx4c4ˆâ.ÞY\òâ›î•Dc§¹1:¼ø;ïqòõÁèÃóñ&RW"¨ Ï ¢ €¹D •ÜõGÁ§i½±‚KÒö"°vݢǿ-ïmW§5=ÐËÔ¶°Ò²{Ø4ªˆ¨ñž÷'|yhÁ—ÁˆU€¨Ð ˘ìûˆ•«Ì3»¥õ´¬TDå­)íæñF§u±RÉžo‚åÄŠïk£Z¶IXղͦ‘Y,í Ûe•Ui/XÕq›*ʆŒÄxa4elTnq2Ÿ#@¯lY£—4Ô7=àlTÄzª¬ “ªÚ<“‡@`Ôª'Ïd |UHÏ[Ñ\«q¤MbW˜Ë@¾ZÖcC²p õ–‘šU­5¨ª¬OÉzâáΗºª²\a¯•Èú¬,Iàº?Oý|ÙÂå±®w%x–'Ût"¾ÚŸÛÊNv,ümQF‰Ò3­ÕTkPìd‡ým‘#-Bl æSE&{"Gªçqë™Í²û‡óK%Â~ѱò&摨«"\kªËÉ’«‰5-õTo•o,2j#dÛè´¨<Ô¼S Sa— Glk1ªí“ Um*cH65¹w)ÓÈòÔ¸–?'¨Øs ×£¬÷’¼ÌÚ%ú*—™XIA° Ù¢üÐÄ®I€²çA—7qHÎLΜEgxL™›ÏŽæÍд F“rÙŠïÂ6™a¤ø>³x&úW©Ú´ ¦Ç<úW©Ú´ ¦G¾þÍé"e>ʳ¬Wºøëoå¬Ì`%çÍÍSé.}´)S=yÛ.Ù-Qi˜ ¢Jÿ&ÓcëMTÖ†…QŠF>÷O½Äí0ýqVõŒôZáõóõ›^$“_VT¶R€X!ûòÙ¶’eeI´±s±hÆs,34m{"„Ój#Æjv†ÍN@8-;²„kðWy¶Lgñ„.’/Ù3?6Ïhʸ«FZ1?7LN¯;[‘Ó¡S ü3qz\‹î¹œvdI¯§fúôì‰9a!úìŸÒ¡Ý’=«…¥<&’‚{(k7FùÆã4Æ*öOæ­ù–ÃØûöµô–Ãéì”õÆÚ¥x»nváÿÊN;“”ÎÒig’Rw_s5ÆflFJ¬ÆÌ5-¢·t§KÙ‰4šUJ¯Ö…Co𣠣ŭ‡IM[Dzh@÷˜ñM¢Ñ$ß{&±µùà¤.»Ü²nhmW*.áÚÖ€Ô6¬lÊŠ{¸ø^3 çLb.Ɇܶø‘°NÌÌ$ÔbæÉâdbWÖWÖfW”³{@ÿˆíöÖïíÙõ…س[Ž™}!öŸBlÛmå ±g%öšåžµ¦œ&µåŸaÂìTž½i³qÀ H|ŽæâÀ$ŒòdÏÉEìœ%¸Ù8àéÒr†!1¯ÙJ ç‘=g³F9-Ÿ½ÙŠF9-Oš]™bu«¦-Àp' En7[5m†ÍÞši…}¶f+-Àp»Ù Ð ·›­hähùÚê; )4W4šY«N²·„æVÓÍ£¹hþ0Ë>i‹í>4_Ôb›Ò´?Æb“0#3Òü¡×Ø™¡Ù4WÄ^Ðz˜Ò´Eh®ˆ=i†V™…æó»"ŽÙëi#,e/N󇱨¦4í²ØˆØêÀËlMûˉý70gík“‡0g³§s­â<-úGÍûÿÔE õ7"öŒúïEìÊö<qbÿ V´«¥ÙÿÁ+Z3vÚ‡]ÑÒî°6ÃÓ³¢5“>²Só3Lü¦74Fó˹–l†Å«Etöý-7§ï#ÙtvrÒyCº±ÅŽO".33¸=‰Û‡åýá'Ú4)WóàŒ<²£Æq/8ñøÖaVîÅ–‡¸Uˆå&ž!I¬89¥gŽWEå!ù6,èúô¡r«TÄ­Þ_9×RµÎdªÈTò¦WE6¬ÃÊMC\1žŠ˜²a%n¨o #ñâ°<k¥ÎÊù#—«»/?ñ…ªšgSe6äQµ$Dª”ݦՔ@J"Ù]$ÛÓœNàU¶tÉIZuÞ¶j ƒŸêŸôIÎ/Vì."áL•X¨.â›r®TŒ)üúDÈfªiÖáDÝ»6Mül—²äF %"¡·Dt„y$׸”‚âž.‡4 I—RÈ1A–l¥¤ÌxtòZÉQ]‘ì SÙ¤zžv™é¼¡"¶U«:š)çÕùçŠ"£"öªÉ ªUkÕBSe±ɹŒª+—œß­Xm²#…$Ð-}TQ:Û7I/zYãdjòá;9ÎVYOÎö2„²otm.Áz¤–W$QGúL¦Õ?…Teë UÙÅʲŸÒÙ.f|F“³¹1a‡8?[B§-Ü“cT_³m‚5b® ÈFç´Ç~#gÿTß,߈„Øò9si =Фc@ë.ŒÖ]í¤ŒQˆºiê¢4éVÒ \C¬ÀS]$QÕªu’¯§Ò¿¦d6Å÷™Åóot)PNñìËŒ&5ÆÉ_/-Gξᴒó0J‘Ð%@¢T„p¢T¹T4²hWv±¸b±Ò&\‚‘Šh´ \®ç4mqŦ+pè4ý,þVÓM›Ý:O* 9§hæô5õy+Åbã[†ÍN@“8Ç_Åþé,žÔEò0šý±1¹iÎÇ”qW±N31RlV쟇ӓhäOäìÐ6Û4ÊôéÙ“ˆÇé¹åqzv@³[Xj”KÓheíÄ(·ôm2c•ΞÌ[ó-‡±÷ìkë(ƒÑ Êz cmŒòxkdù¯ê´³Ié v6)u"®ÆØŒÍH©²3×´ˆÞÒ4šKÙI4š]J“»Ri œé¼á\âé¶!Ï”@NW=÷ïkSÄsѾ–ÏúÚlUì·¬‡EÄó/ ½tc(qÝÝ×™ñÑ#‰Ü¼øŒÐ=f|s[E¢Ò‹ô†¦‡£{<ܪ֚áNHyè˜ä -bÌM£¼E zˆ°VRcÿ 3‰)Ä®ºä¿ZÍGsbÏèÿ±¨|!öb!öbÄÞ°0ªêQÓ¹Äê»Æ®Eˆí|Lá€Ð"Kÿ“0Ê“='f‰5cU§“*¯ÙJ ç‘=g³ûsZ>{³rZ>{³UÓßë±-Âp»Ùªi 0Ünö ]d¶f+-Àp»Ùj[l†ÛͶPæb¸ÝlÕ´Åu¬4{’b›KÎg_aŸÒì?E±Í5´<ŒbKY&IÛC"S“I€æ¢¹È Ò6ÍU_[¼“ Í×¶§öð‡&vÍÿÅ6…æb»Í﹑Ð|v@Sh®ˆ=³VÒ´{XBóÔÎñâ4˜eŸŒÅvš/j±MiÚd±ÍEó‡^c[d†fÓ\{AëaJÓ¡¹"öôÚšÏ?@Z+·yM»ÍÆb›Ò´?Èb{0bûó4í/'ößÁ<žýy<›ËߨÇò"Ë$ÿÊ¿†Ø³u迱ýyšöw ößaEk‘±ZšýŸ¼¢5[§ýSV´Ü}íYÑšM=ØÄo6/à”y¼àÄ/‘lÛyr‘‡»÷ßÛòw>î%Ùæ]§ÍãÓÔEîÍ›Ð+tû£pØzêÅè ïP,zA»Æq·Ͱã»Û˨‡_³W9N¹u=E±}¦QøÎ ²¯›ÁßÊpl!¶ÄIÁòNP7¬Y'iŒóz¶ 2CPa•å C°¹gN5©ÀÌÒ4ËÀ>Q$ •JÔ¡»uÊGùÈäŠYT¾©7éŽÉEÀ6]7ÍÆ(°U¼ä ¨"vÎy.zÌäZ¢†–œó\ô˜àZ’áš´ÂyÜpÒà™YyYT‘?ØR`fÝuÓêÎ㟛+å-‰®1d‘K™‘nÚ²'Îß¶ì.’°ÛDE]/k¥“‡œ*U·\iQ³õ¯òߪ*Juô°ÞlÉ®¦ýªÃ‡[ަMyØÄ¾ÇcQ@ŠÅXÕ4‘e9Ê.r^qõÝ5GN:í¦yUÇ¥÷M>Ùç åP¶•Lšfk…‘…Š|SÂ:ßœœ±–ÌÒ[¥S¤Ž[Û-ê›îå кI¶ØR^ö™m¥.¤\:ž€ôm)M±Ë¢¹qʲbv¤uË»Ï&ý†KQ&·¨)¼WÍÊUo­šhÚÇqUŸJw‘L2ËXmÚ¶†–ªÖN:¨þnÒEÖ­V(¦Vªï@ÌàšuþÕÉ.h|Kø#Ör¹4ä¦%jr\>a¥¢‘Õ ª¾i}5ü7ççu²ºNÙ’JÌ-1­èâkºØrzpØýÆÓ­«¡ï²­RGX&VêÖ@y¬©Ç_®ÿ¾€6ÔCq³2oYmó!=f+ Ègi(‚·,5zlX$(Õ¯«rö‡´@Ñÿ0@[ÖCǹ0Ö0—¨'[s¨v( =ÊLz(@vzuþ‡=”Ýã‘´9á±5ñ¡¥Ò-¥XÑJ±žÒ†±õqê »×7#ï&èw¼¸Û 1‡Ò‘3èÆŠK7z2§Z³«®·JêM²‚À¨©†µˆcEÖÑíCÚ˜€ÑLÈN_žÐ ?UeªivË}‹8[VâZ*gŠkë/6\|²×2M³qð'T¾æ›ÈÎlCpJAHª®Ç†õÈA:Å5'ú6¶ëV–µ´@®¹š6Ã[†ý3M“×~¤ähm&?R !‹?R€V]m𩧤©’n|ôNxÕ퇠¾Âá0zç©¿% ºÇÞ oµhäl÷Â`Øí'9Û7Á2Ÿ×ŽNšçIVIH€–+ÖÇãW^ò·úÈø´»·W;iªO×Ñ(‚zq‘p0ê—fÆ—Ç Og¼Œ†©|µF㸑·Mb>³êFmïø§Zã þºP”?6(Q43¾ÜÝûñì¤ÐŒÞ…ý’÷SЇEoêßÅ£N4=×dž×½Jèž~ž÷Û=qÀ?Í{&Cqg½A!0ç‡p~~r|rÚn Mzs`‘àÀËÌ/¼eøæÇAê2h¿ÏQ\Cø$/MÚU'“ÀIË“›©‹àd³{*N#‰2ÿ(Àî•e–ŒäE¯€¿Šo~|[dE]ë—P¶^ޝ¯»ýkÔ*Ãðý8ŒGa‡5#(F€³_{yö{ZM¾:+³ù ’¼n¿ÝwBïÛxÔéF+7ßášÅAýš¡µSï¸îÖ^}÷¨æžìîÕ®—¨Vå] À2]Á7Õ$Ï>ç)ì¯ã\µGöé\rœØ£D„™l`ü7AšÌñ‹GŸ &ÉÙ¾ì6Žë-‚ƒƒä ¶ž/=®ÉÒN<†Á-Íoƒö0ò>±‡öÅmÐï€Øñ¢a¸ôzwÏá¢~ïø1ôÞõ£~~ŒúOÀ. `˜Ä0Þ·£Nø ©>Ð)Á0´0‰„Ìx™jɈ]qØlžŸÔZ§­fãৃÝCï›o©Dnÿ2|=Þ;Á¦ŸŸCuüšWÂá›; ¡Iðµ;нðSDµßW+Àf· _ž5k­³:ˆÝ¾Zõ÷ãî5 ôèÕ"yky…W‡54Ÿ£’ÂMVÉ–õj”i}LADhv¹ƒ"ˆƒÌ¢À$ïñ )RþÎÔ)ß;SËžï=8 Š«Þ·IéD}ÙÎåu?}aˆa°_úº³TrÞ1ÌGŒIQk¦<ð+øR–køìj„Ö×v¸ß¥Qõ¾Í+g–„dÙB2²c”Õ8 ׊–zŸÜ|U$÷ÙŽÓ Qâ]ƒ†f*ŸÜ$»b¬tŽÆÃ>ƒ´Ï,­šê˜…W JÞaÔ6”*3g‡ ¼ß07®PËf…^(|ˆº"­»ˆ&W#“©Ñ[§çG/¥|³;BÍ»A(ëÐrjåùu}þßü£ÀdX÷7¦LXæhS€1f—ØÓcD‚È6ÓšA2Ëmñ”ˆ™@\/óÏɹy¦ÐÖì8ÛÞ‹þÒë+1O6a¥GðòŒ+~×ãzWMFŸÄÞ¤“ŒqgÍ“³& t¿?ú÷¬`q°“ ûÚ£„©X±VkãÑ` ³ULäŸù9º:0˜8!Ë%ü~·¬Y З5ŸÁd·GÈî+ Û²Éwõ)aÿrFh¤Õè{8–p#P÷ŸÃÈNª±h½jÔÌdÆÎLaÍœ•˜OQXm³ Þ!»‡-"¶ƒ”FAjƒª??¯7¬ÕO‹b?²ÙWH˜Y£wýñí.ó¶„M—šv´&5š‹¹àËç™Ò)ˆó `¾àýwˆœ=òJP×Â…¥’­÷²Ì o‰Ò–À¢[Bá[2EFýà6TŒ-Ò¾nv `Ô¸œf^P}Íéþ–lZ[TGIç"S\baœ]9N–VlÔ(h¿“ÖX$^ò¦Ï¼Žˆ“—ÇÍæñ‘7à"!&üPšÇ'è¹M3TZí›ûoµ<_¿1W°n·î_F£Qt«—¤¢AFPõyJô€IKÅ®eïx [ä Izú4e‘Sg…o¼›À™v& Êž˜ÚÓ°Js‡ïGŸS n|ˆøRZÜ„N‹ïk÷ÝßÚcÛ"ÍCiB±„JƒâDkeq‹Âì"p Gì‡Ýâü¼qêôûu„Ë9Ð.C¡:ã6­ç, ÊÁexy’ǃDÓãšõ¾³ ¡{ʯÒõ|½á ÕÜë³M1ĉáÆä­šÈßÝõ‡71¯d?vwrD¼tA²³^º¼cÿ›¯;`K ÀÝŸC?ÈŒ"”­Œ{Ü„õ¤gËtèDùø\†8á$°E:8 D«ˆÍyzK÷ngö¼¯Áuã®÷Ôóõ¼6o¦à0þ%?_!x#À YŒÑÛ·¹å¾)”¼)( PKßóJ•¨\/·\n±9»<ʱBïŸÓj­QÛ?Û«‰^ks­÷¬êkv5¥ÕQºgR_”.(=¯A}nÎY™¥«@2ëQÿÃaä݆Èãê Dz£a€‹qÞÁµP/¼Aÿëö»£nÐëþ/tÂ8"u…ߎ{£îÀRÑaŒû¥`óÑš‹8w8j>XÀ´ºµ?–õh^Fv¯/¸Ð0Óè4…ײؑÆTÖ}êÍýÚIó4h„0^ ¤‘ãdB ˜"’‰õ*¼,·êò& ÐÊêª^l¡úŽvÑÕÝŸº·ã[®NÌ(¨‚è~=Œ>âxQ¯®Âö¨û׎‘O]FìrÜíÊݾ¨·ðÓ(Í 3ˆÛptußãm,´n½ýH֦߅<ãàï(м^0¼wØg1ŒAbZn÷Õª1Msh AìÒÎ+´ãàè숌mNyÞ¬z…¤‰¤*B¬‡VÃ?vG7@á+$rX Ãv—ÐÅc|×áê„ €{·YÓVMkBú««‘eƒ„¶È[?Õ/OkÆF êÄa/ìÓ>I².Þj½>ì_Ck£+¢NÃò÷„”ƒÿ©µš4¨O¬Èûe™R•MÉ9=òDÙIF,$c d~C ow8›eæ¨Û‡;ɲ¤€ùLHó:`²³chÐÜÍE +ñuý¬uz|ÖØ«¥é†p½¼¢Û^ÉÐÖÆ 9+¸ñ"ˆ›p<„ñ( :… u¢1ä.#lÚÂŒÍZáwù(»hrH±º}ÄÄ |ˆ78,—ÛÛ äAÍA¯Aé!VFL×ÊúÎ+™ ˆT€Ž44+"®K ¯K*ýq¯§7´Ú@ݨx%ˆ©nýQ™ø¬1i/÷:ÞMšú2 ûy}^ؘâ)ž£ÐÞàwtÍ{²ô$mAjÑW[_$fGVmîî,¨£!IþñLt'±åbPÎm ìòÓ§ß´ñÌ žvþ“‹'OžgKVšø°u¢гE2ØbYÓ(ð.Re©Ñ„wž‹'i£3º™ :Ê« ‡Ç“†ÑøúFYéêzU¬ËÖM,IWI‰ iûo¹oìºàÃÓ§vmç:Ú»ähîô*Q‡Øðµúè›é¼õå ÍsOYÇjÝÔ3jÕÀÔÄBhë)¥BEf9 Í(hÃës¢¶”Ž‚±=Âä£Ó×%q ë’Ž"“‡?°A60›¿`¿€ª¸&í\Fcîgã~øi†Œ0ìw~NK|$Ëé%¨7Ú¾Ñ@º7ô“Ó¶ƒd^Epý´o)hÀè;ï#X"#êÁ’Û7r‹Â=Av´… µñMýQ‘ šé³NDÎC { Xã´…ÙvåD‡®]˜3'ì.ïFt”N©ˆñ÷ˆXæÎM:O™uäÝ7Іÿ?{oÚž8®- ŸÏü WN×NÈPÌSÒÕû2%!!„{×Ã5`‚°‰Í˜îzû«¥Á’lCSÕ}î½ÍÓÕ[ÃÒ’Ö¨¥%MbGhZ@"âàÈ6 ²tx ZÜ#û±­’KÂ’È3¯Åèël .fÃëÖc`Þ£˜9|)íµëjµÞjHžY¨þº7¥ê„›A;ðRC£Gö›Kãkç'MGGýª¤”ïÔˆ¯¤`]P - š""¾!³cZö¨´5dÛLGL¬ ‰ £Éø}ßh‹ü8‘…Il½ÛHìš³Ú·8=l!ñˆÞŒ5‹LÏ–ó"L!!Ò5§Æ„H ÇŸa‘È’‘j,$wm½£‘ „~‡ @G&6åY 9ÉŽ¦7ôE%e îcBŸbU_eVQ»dï‚GÙ‚Aà`PKpƒý©Ñ%Á£ˆuc†Fjîȱft›ó òÆCu=\ƒï'Çècèq !èíh]ujc;ŒbÅ@hý†ݒá…2`¦u 2×Ígu€´sµ;ºAãÙÃd |ÜAp‡õ­©í`O›€QȔ㎠17°hTèhÚïë]Z‰©½YãÀ-ÆÂÀ \VÀ帨²&9ŠYCÓOS{B‹ @l}Î){ËÁg ÏŠjÛˆ~ð#a¸A>1朮ß@èdDOåQ-·ã(놻Éý• %r@;bí°ÅŽð‡C¹l Q0]ò‚à=ÒÇÓ!¶‹É2qsÙG½M-À'¬–ç`ˆ @CCh5ìbhl,}Ð8N,d^Oĵ`ÞDcЩîèÉÆ)¸ Tï‚¥' ?#æE_Cj#¶.„¾°ªM…|lˆ»Ì 5§ ë­a}°uN±ŒÄ£“ÇGQvpËÕ|µØ­”«0n”Mµ``:žH(”cuwjε¸Þ°~ØÕmÀ.ð¦¡wÕ¡‚º…igÍÓÕpŠõxëHÛD¶ú?µh`¬”z`Þq |Aãëš@ÜÃî7;S VŠE …pu²ÿ$˜‚Få $‹Ì1jðw"£¿q—2È%*öö¾qÉìˆ`1Ríi…îjêv›aܼaÿ¨0$hšq„ûû;¡àr Æ íQÅn-3leð':²x ÈB; (ÅÓrñœ°bÎM«ËåYãÄ]¤•.4‰r3#˜þó|™kØn›àsÑÑвĸ‚¨±¨òoå¾r Œ|‰ *ŽTYLmHMC°c²‘ ˜Û¥>½ábC}„õj¾Ù">|ð°yACsjÉ»á‹Cþ§Ép¡n§n™Œ¼M ¼¿])`¯-d †+Cýý…÷bËàFHÞ‚¬\r¢Å£]¢"hÅaç_rT]¥Ï…†ÃnûéOƒ"¢}]«4úísx„׬bG+ xÕV‹Þß=ÏÖRíâ›·?À]ZuÌ£ó í|ñ-ì*1+wh;¿²c«öŒ² Hÿ¿~õw1{æ•|¨U÷ƒÃ…qŸyq#•ÿþέd桘f¬UpBóhÙìÔö•æŠí A‡MÿÚáJ<È¥E0:š«ö­Yi¼r)ês¼¹ŠÅ|Ší‹ZàgÛ§VüíZûTꂈ÷m#ñÑ6@äû¶” ÖÒÊöR›´'´úßd…µË—¡ÆõôÇÝ0dP(W؇èH¦?Zq|D¢/3{("«R‘¯J\Ù¥Å$ÅA„Y¬!“!…ÜãÛ,ÁÕ½oñ#yà1Á6lrÖ)ÇÔ4fphŽ~<%Û€ÀáÀd—نĒÁß2ëhè6Ô M#5a‘ mØC•Û¯cËÄ c÷±+ ìÜ‚èîÚÙB«ÊQGî™{b¬0œÒEBÂ"¸CXØ› e颒7'œ)cgóçm²ªHY8 Omú”Ä6|Q\d]!t^%èɾ#»t$·$âp°QY&AVîÔè–´þχ6±™V[^Œ: Éh,“ÖÀχu3ÚJ °Þ‚Rý³áMmF_Þcð5ÿtx7#±¬Hb?Øôf–ÃÀÖAûùÜ ³‘e£ÖŸêF4–%ò«IÌÇŸ kv#úÊ&™~ðA»ue §-#ó`ö–?ÚÜFä•M3VúÉÆ£Ñ͈‹pÙ–fýlÚBnF[„¿BûO‡4¶eå¤?Ј*G8kC×Õ Dâü|ÌÆ7¢«\ŒŠ‚¿ÚÄF´•‹‹Ðþ|`7"¯\‚.ZK]"ˆ>n“ÑXŽH¯ËÎÓ_ìft–€ýé°¦6#1"ºÎµ%ìæÿl‡A<šÞŒÄˆøºx.éÝŸÙôf–`­«ºõÓáÍ!1úÀ-l‰Ó±Z®•pêÙuO®chÜwð¥“@XrTnçç:¾éR&ål8ëÀwD¦á³¦,rŒ&'éÓ `~  *%ºBJÃÑ/·áö£Á_ðl¬võþTpsØÓ,å¤XÄQͦ…#ÚÐO8x1F#µèžàž »}“¯^—áà%;Ù€÷ðš`ñ@GáŽSòzë•«€ï¼²,ÓZO¨N´«ÿ˜ª¬'³Ëš ˜ö Rþé i? ‘ÍF©GJwR¯¸…léš¾jñ œ ¡ieò‡&y[£ªÑ=ÐûK'ÍÛZˆ‹é¹»qÒNs8[üÄ!!!DëvÖÚ nC¸Øö!äxc[X$âð‹Pbæ.!­[©èÐUÔ!£/N¸QCëÃáS<IOp –¤&š26ñåˆú z MÇ ÑœiVH’êÁÇ«âa¨‚šá]Ä9ÄÒ#†2&ØùŽ;)¾p¡þ.œîüvä-„ìV=»/¸«o²|»•Îôû´éúÜYÆ8dÅ!9º\bÉ ¤T27º ä:3h¶ù(iYºh<†ÿ”/X8Ìq¬Êãüq–ÕAÉë%†C¼4õ¶6¡kÃLCDU3´9äšÚ8È^›³8|çY‚iÝ`–LEüÀ@y÷‡!zZˆ+Óö>Y8Ksª[‚»L:íZY]k¶ªÖl]­áªZÃuµª Ó.ÈŠ˜¸ ‰#=uäóô;ÏËb˜"ÁðçéÂI”d£ŒSÞ•i]v“ ÃîPí±\³¤Þa˜hÄZ KÓœ"y<‡c{‘²tüúUäCD®SøúrIÔ’„3ùÂÔî¸J„åXT|ÀVÌ“"-B²“ÙØkÀ[_ƒ&Å3„ó³¼ð=¼¾ðL(<{«ðP(<´q ³é컬¸0Š‘DÜHmÇÆª7ÊtžóŠÛß<\Ó³®ùzáêÙ£Ç~,CÒÓü  ›\ÀnþÊ¢\V7º„€b>úy8õ¦c‹Å•-¬¸„°Øß%Ç tø +!¾ÙÞ2ˆšm ÑJ¦=оi¿D¹Ä°+µ|•%K%Wjá‚òmE.%ètäGEC3ÇÞR¿„¬ùñØ2Ç–ŽÍ|Ë„Sùê£>#Éðí„é} °ð¨¼ºL>’ißÐà<«At4"øÕ!è·K¢œÁ9_æ€x |†lb-É™Ù.\ÞHò}@Ò ¢ Y ,pThT)quÌu6áìEç·#½o¦£È]Là2'8÷?jû7¬‹ª~{ pž.s¤h:>MÇîX3ñ×Ëcø¢‚~«÷VøàVÝ&©–¾‹¦è¾bH*dº£F Ø_ r‚b_ pTX V|´ Q†Tè˜Ùý¸ÔѺ‘ÔRñ} ~éÆx:ùB-4Ò³½Î;âí·ùZ³J¹+>2λsE!oծŦØÞÚgí̈(‡ † Mf†HKsŽ–‚¡¢i$1¥˜R' f´‚¯¢"ðS»Î Õ}œZ‡h{Î)kgÙï9Hä뜖üóOv§G„ßü˜ ñÈš>Â8Y±#€Æ7©|Å ˆmzTvÅABñä*¿ÌORD »!Ó -FP$cºˆR_-vÔb# øîñˆƶB!¸Ì~Ÿ¼$Í^&0áÚ@’óàà€ñ…&v Ës‰y×®Aïë—åκÝU-ªûÑ‘¹ØË¹ »((ß 31y=t¼aomÑŠŽ—̼? ”âÕ#ØÇ>8ÁàÍRál`¸eÖf¾ ,8…Ý2FðÈWÎÀš£5ñîZËo"† r‡ƒ,³ùÑûw ƒOêS7 @¨Ÿwð©$]+çD x”fð”°Æ·#Îès!LÌ i1‘¡ ™(FMVÝ“6ʨkƒLÝøØþåÔö/±m¶-q âq®³¤ ÄôƉ·=Áƒz½ÉWÚGÕê@öRÖÎi0œ ­gvqÒê /è6;6Åi7©CÒ¹[g:Æ·ë ¡çmÐi&aÜ!­g&:ªYm1©ƒªtt´úFè-HMš»wRiÀ®ß\e)÷Ô ÑH]bÓtZ)u(Ÿ rç&I; ÙÏ Èfš³"éNBrôgŸØÄW—oîÓ¿”öÅäž„sà ~”ÆpŸ£Á»àñC¶å®ÙóN'ÓŽù -쬀 =ß¡Yqâßð¶÷¾ÂÄØƒGÍh›ã6I|²Óº¬óBÑot¯<äì•'Òë"O‚'ñSdzöµA«k`Orس€œÃ` øφiŽw$²ë‚PÖ€”r@r~Y6ÔI\R&ðá»Ãaºó•êYâ­[ô°ÉH›¨Ø;7"Îa’,J5&,‘ñêQãa1®~ñ^rûÑ+Zaük H]{Òj RÓRãñ;Ïɵ1k@ÊpRA’Iç”’Œ\–YÜÄG¸Ö{0¸öÒr¤0$²l;ºÑ{ ûÊe‚3Šù*RX›åëÒ¥4Œµ¡’k†‹òqgB|mǰù’[,æ )¹½±óÄS‹3‡¤[B¸E†ßº_{thÝP¸¸N§S QQdÜ£H¹$VHBi\kc׋‹mWhçGÇQ?jwà ,çû4MĸOç~# >°}Jƒ\{PhÝ ¹ÚZIùö Außyþ5¤– Ê5¸”NDƸԙ:N †ŠÁòr#[a[ïo{l¢ÒȃwqqDÙlÀq!ŸþóˆD°ÅG¤;Uã'?u²s|Ù8o_Ö[ûÊ/ñ0üýKúŒjM¬¥W­¦/Údu!ëkÇ5‘Ò¸sA™&×Òa.·lßòÅóVý/ü66¢"2V4á`!MÄWP2a<ï[Ïh8t*¨çºJæ#ºÊÓL™!ˆžfm’X¦ÝMv¶v‡jG|Ï1…ý âºu¢æWL,³å9Î÷;.Ýì¸{˜y¹îÀ‰Ü÷@|?“0¸Hâ\UÊn¦_ˆÔ¾Â°b'’açºQv3¢«‡;[m;”Ðjà`¨Ž:=ÕÍÆÂlbÅ—Î,Jƒs) ïWr›© ¦µÒ¹á#>S©h@€¹ž“ÛLP à]qGiIF?âëð3pÏ1J³i÷f4ëÀM—þ‡ÀÏ%Û ÿ‡íÈìéýå%ÛlP²uTdlS¯À“©lFrAI7ÇÞŒt!—ëÇ@H» GHÆ7£ÝŽn 3è ˜÷•í½mðtP­,ã€oF¼Óqi_‡<nqypº•\†’"L©ç=Ö¶$U‚?4ŽDMnà°ûÈ’9ŸHž‰$|3ò|÷’qC”J¹„Mþ5Tº+ž J¥\Änèv{7Ê]§‚R)—®:ÖÞ‹òȶ“IPÞjëFGh—–¸ìË’>#7ßu–ø@Ê¿·$<¤ƒâ âÔf3ø^<|Þ  m¤Bªwk"‚ª[ .ÜÓ›Ñà»—rD^ÊAu©$—ñr_mùgò  U’ ù9 /¾ò• w@~ä"þC.£Àp×dÀ3Aµª$—í™ 5ØwRû¯ÒJÉUª’\¶gÿ ù› xPm*ÉEû†Ž£w^-7›®ÕT¡Jr龡ãè°Ÿ4ÊùV¹á?(•r¿kH†Q„+¨Ò”ä"7|'ÙåC ª%˜ú£çbP se|$ê…«$Dyö 7ÀÙÏÏnÚç•Z©}Y8+[šj(fçIëþµc[ѣ㴕m€òÍØ.wœO&¨®•r4–T,Àþ„0Gî-P b$¢ÜÝÝ)gÎÇHâÎñml¸'>³ ')`–lS™k¤OÑ?1•>>Äj¢iÄÇ+§ý>>xëËîH‡¾[+6P¢ÂîžBN2ùL¬8J×Hô=û™ [¤)GSKÅ?¢8¬™1qÿxFW¡0¾! ³Ñ€Ò4å((ŒÅ ÜͳEQ É(X›ð{ õÓ½ßXÀD×Ëšñx¬N-¤s;[[«™mô}¼Ö­FHŒ4»6Ûà:„:jqjÓ z¦g½¬G /.¥ü¥„{w6!‘xÐ=ÍTŠ|³à7ž–Ξz¢ÛÖ>½bôkS ®½£˜§Òa%ïÔl³© ôáp7/ךûìŽd×&Ä^¯£‰§2›@’ƒƒ–ö8ªÖª¥uI¬•?|xé B›ëóZûxx?zXAO¤¹ö˜}÷êgƒbˆa.;[m‧$Ì®ÍY½¸XàÞ6îÞŠwá€ç:*Ò\=ɾ›£ú`U=ñÔå–Nïâ5ôAš‹èÜf ­„C4Z,Íeéþ¯›GŠnr+m‚Hum¼®¿îdÝ8©˜Þ0NEGB¹%Ì;F4-]sÌC»’"SôŽ1è)„t†ño Î=vv¤n:üÊjÿ×úûGÖ–ã€'Õ`A)¹ '2QtpêÝ8Ü 4î?ãÌô*+uÙõwz¬ƒ+ÎáÚŒÒ0¨&ËåõþÁu¶»zòxÀ­¬—Ú¹ÍT${¨w5×’I»—Ìê´ •Z©|‡gDV" ñæ¸$Ïm¦@ù kõ~ÉSjL‘^9¶d@úÎq9¿á¾µcóÊ;ç- ä} ó¡ÄW›Î›GÙÄÃ’†” ÈrI>¤ÍÔ2¿!­&¨5KQWÐØý\Šk3Õmí¸Ö/Ã5ó• Ê:Ò|\ž|\¥î‹`fƒrGÊgbÁ¥ü*Ï%‚+(g9\›¹?èf‡¿Jï‹Ë\PÍq˜BLl" HcHt Ûðe×µ®74V3dbÑs3qëº WlîÈðÅÒJ,çð}DdbL1EØÚ$|Ö7Ú"ÅLdº@.îO_q 9E$Ó„²Nze¿­Ì§m1Þ‘Bûû²@YE¬_ÖeäU¥bQ.“?:¸jrÏnh貸› Wn ;™Žüà·>Ø}+üØô#4€Ò†H^ÖzbûQ›´á-o›äîDÖè|ÑW.z‘1ñ Þ°X”‹ý 2¶½+uÉÛû~.§¸õãAÓMÄ¢\IøPÌ%^)ôB/[Ú“Y9 F€¨\w4ÞA¸Ù꫈ȶÂB&á5 Þ!í8ùBckú욦@yoSTåYÃ2ÞµFðfíÞ@}÷X{§ëÚÀµ© =Ùxï‹õãÍoàŒ4"ãM¨ò°ÒD̦“ASNÄxÞÃì†×§‘´~×ÄÃoÀ?¥MYã‰ÝôÀ¥Óûr`%eG¥ëú‡q"§£õË˱49FŒçgÌÆ7s/}KkÖzÐT1ž1›ØLãûqƒIæ49>˜ Õy0a;A“pÄxÊÆì‡ÒØ=Í”‘ýˆÇ—â1Пµ¥è-‘åˆzt(Gïí ª+ÎP»i —$˜¹²ý}<+PèÞ÷õCa`—O™ýP°;ƒ‡º$·€¢Êšo·ÙUÖdX B¯¢-Æp»¶nkÒ{ûHÒLÐõÍ3LºOê¾k}ûTí- ºlàõË þFèzZ_/hLYŒg‰Ì ’õÜ‹$A˜ <ãÙ ³Ab`ý!$Ù \•<íc6Hœë îpÚs!1h8XŒçwÌ k]¢¼SAC¾b<ëb6H⻇˜š!ÃxÑ'CÌ9·‚Dø‚Æ_ÅxÊÃl&€†º >÷ü¡ŠñĆ٠n@øÈÍD2„AC¢b<…a6ˆ‹ÏBzóŽ bÐè¦OV˜ r”~Å$=¼ AJ1ž’0›ýa‚Duƒ48)Æfs?LŠ˜– ºÀÂ%HÜ|+ µ”Á 㩳¹&=º K¦G%ñ‚ÙÜ ø¨ž `àx$žK0ýaw"8 ‰ç Ë¹ÂÀ6li·Û.ƒ Oº– zPþ«ï‰Œt"(að$f¹÷ßÛ°Þ"⻬頗ÀÄxb±Üûžž>rj_„8ðÜ&9Äï^~ïFd`çÏ«•Û ïüéÝÉXÕx€„q¤/G¾ä6ŒÚÜ`Â@2ÙT†d3_–3·½XäWx–C¾Ù! 7äN~ ?qý²îÙÒ*]×ãëÃÅ·Šë! qwc(h’„ÏÏåÎóã©´µà‹ŸàèÂT`}Œ§üÊ%6¼ÊÉ‹)Wêi«QöÑóÅ2*2Ñ &<Á˜;Ïÿ‘îaWZíÑ Ê•xš3wš ¿ß5,0þQ¦âÔ|wj)Eéi}u:œ²FàLªpê*¶6R‰ÞUTœ"ÓVls¤MôŒuˆ¶²\B€ð>ͤ¬NœÄ¤üh¹œ˜Ïš™WÉý=e®O8ó²¡Í•‰¥ö3›/Šr«‘<Íè-iC-SíàL²SÔxTôÑHëé¨9Èç¬çAÑfšµT¦hšQYÚíÒÊ%B Ù@µgš¢ÛRcÉYQû0$Òˆkä” t¦2&fenN‡=ÝH·m48D:04W ŠnÌ<1÷÷ùÂe£µ_ŠÅ2Ü—jZèG¹Ñ¸lHC#@aÐP‚pT˜´ƒúÒ'¬iTn޼®#4V ^ó´?Ò ëQ5h#F×´,X²,Z é,™8ÒCO„Ìé„4Â{"cÀ=pö{Ú±ÑÂ@„¢Ué,(ÒÍPS{tŘÝ"ˆ>†fÑütL2úu¡àì9 Z’¶úHa¡Ë04ÍguGÚ…×z_(Üß·›÷…Ëj»Þ¨ÔZÊÎÖÁo \n»µPmÅ~_.oûÊ¿0Ùâ¿@ÿ˜Üß#M£ÙB#ÄG40þ†H;zD[‡¬ñåÒ¶¡]Û“6v÷ö0 @pGìÙ>C½á‚ˆ kæ\Ù¶z²G†ˆ ‘.¦ ü«7íR*iäZM™ÃZÅ—Ï ôøh¢¥21÷•Ž ËÕ$+—Ræš26Çcô¸£vŸÉléÖtH!g:HPpI‰o`¨)ÞŽÈ3Ò2<?š^)7µÖåy¹Öü¦ì)»'LîD•_¿:õþõ/ç+zz_Í7[ä!–c¿Ó—ß ”Ÿ4CâùÅ~'jg¨9%¥8~±↾âqÀ 6Ç€áFvÞõùúÕDët¨v”ƒÂlÚ{hžº˜ýà5ŒÐøg迯I„oÖâ!Y8Ù½=µðâœõ°Ðí‰@2£mj {·#n>!s;õåúb>X¢u€ˆýgh] 7kÉȈ±ø¯Œ?}…©*_Ô[÷Ê¿o‡è[«‘¯5«ùV¨ІÙú®ôÜ N‡DQo‰–Wלž×·ÌpŒ¥}ô†dó`â08K8F LÑÔ;Â>@V¼; ý7*ù‰qªöM¹Q¸l–i1\wh‘°I{®¡~ñs[ÒŒ‡ÚB³hîßñÄvÞÞÙNÑùßx¹ý·B®E…šhmåïÚ„S¢%ˆ+´yÇH]j«¤wòk_ùÏÖ ÿ`"Øgs¦õþpêã "§{vqãÀj|?rjÀý2”m‚a^Ä÷5nW«Ðd³C¿:ΑÖ2á-8§zV6›ùC©úð'ÚpgÚ»PŒ`ÇÜû¸Q.ÓâRØ@‘#ǤÂN•|Y¦´™IWMºV¡IW¯x&šõÂà<ò/AúAålýUà Ðêâþ“wý.ýv˜æz`?¶¤!øL³ï¢ۄVIáw®É¸8OTh‹:µ‘:Ø0kið 2´¾kĈ =½OUì|1åGí÷Ø7"ï™À'°8¬ HÈüŒ°Ì'¸Ó™_Hƒ¤î«ú}EÐYèÁóÇ šj“ eª=ÝîªÒ’&Ž4ç(Á«Kßòå1ǃ8ùš†6™ZÄªŠ” ÍÀÉ„tc<|,Wã_=Çj­|†ØÔK+Q„8Q‘*W†¡²¡!I²µÊDy%QðMïƒ+J¢p6.&üÜcøN¥^¸Ø\Gš-äbzcÞ°ö2 SšÁСØek+±è)þJ‹ÉÔBk–ªƒÖˆ Û¡ÞÕ'`|-™(ýˆã«Î˜D¡!¨©«]½¿eŒµe+C©8'Å"ÒE4¢´bu¥köÀDÊ‚ÛÆ"ò•i°$¥0¦ (bØR µ‘¥©!뵂¦v j]T0"»ÅËZ³…þWÚ8’Š#7}´šÀ‘½;ÀVVDÑ8K&V|Â3TõQÆq²RÛQîá©ùŒjL"Š|DÐ3« t!> Ô´ÙÐ>•c® ÿ åå³Ð =Xg ”¢!âiÍîÊ–=˜ÑM—œwñAÿ‡lÞ¹•8r\¼H;R¢Ääˆh¡§u-èÑ0àwŽŽd¶Íl¤1šIÉ$añyG¼ià€£N˜#ìÏ}¡Ñ=à5-t *ƒØMÆ*CÊøFø0iDfÅnAφÁL+ã›[dÓŽ¡¤[ÅQD“ÌÞHq^7ÇÄ‘1µÀÏFÍÔŽÖUMꥫ@=´&†gŒ2OdðàU ƒ„/*GÎÈ6€H¹»˜tœ^1vó*ólÚÎt͈Ž>„?dŒHݱ0‡ËK°¤ôzB§8GÅ*'µËF¹}‘¿/”Û×µJ­Òªä«•‡r©](ŸTjn§Åz-ÖW-×J^ŽUêsᆖ&(Ïà¯ÑFcwûØñFülH¬¢ÊÔ·CЄØ$cƒ‚äü@цÔRJ`¥¢"æôqÀy$tÕ.•ó×ÕME±/ùT¿u~™&pU Ïë_jRŽLtU®öxN õpA«v»ÚxB¥9s»Õlì“ø/Å<ÓipMꢲ…ka¥ðèR8;Ⱦç`bÇe( Œ´-ˆ1?±[€Øè=ôÜý¡9WþüÓã+ ó¨œLßH™ìàÇ:–{æÃ3n±ŸÃÐqkÈ j=z'š€Õ8¥ãcðÔN'5jü„¶C’úÿÉÑ“=6ÎñkÁ' o‹ðUæßò÷`ùH…âPSéX4?8È+„Ä3B¾ÿhÕÒ³}°^Í|KàÌH¥gòø“(ÿX‹ÌwY"ù~–Œý\›÷œA„¸rÁÆ¢’Á¸=HhGŒ€Ûx]kSþî(Ç­@Ë!Gí•[{F$%‚¡xùž^Ú¸ÔE=MÜ´+¢ GJíR„’=aVš#R±A1Ó,º ×ÇÇå¬ D7Ô'…ú‚³hë†>ik DÆ;Q´èiÍ/¸5ŒvTÂì |Þ¶;KÄÄUpu«0§¿¡…ø8ì+ÞÆ`˜d0QµK†âJ_¬`%pÁ–ο|Öƒ6ìŒéëCm¢µÐ}ÍÚAü pW¹¹Üñ- èoÈФ”!\@Iá¦+sÕ(¾óµAZƒ•!Mv{¨w,Äñ>8é‘6™‚*¡†‰±Ù 2 j·Gªn8ƒbãe©ÃpËR×µóÚåm­4¸|«rYÛW¶ž^É :&d¤aµ_û‹Å»ï‘xãuÚÞzPÏž½ƒ¾C§j#:šCëpiTO³ì6²DèÝ«6;rYoWšíb¾Š4ÁfùºtI„'m9 sò_ÿ÷|ž^b_Òé ~xÑh4L*ð2ëÀßhœüFŸX,MÁY´t:O' ŒÆR‰Lâ¿”è‡Äç3…lv”ù™HÅè­(‡ŠõûkÚ!ƒQœ¿ÿ‡||É+ÝFTFæ‘VOWáIíš¾I|‰~IRg ª@"¦‚„ªÚ%®Ÿ{$¤°Û4ƒ}sEl¦ÍñÒÂÁ;ŰËe“ûðÿÜA,—CR$ŽÐuGs®ýÝM³?™«H‰<†ÌAö•ŠÑý‚ÛjŽ3¶ÌG\è+½ê›T9T–æÜ °ã­C¨2F±ëzBL$€—Ðz® kV°ï¨Y0êÍ€P0¥>í ‘ZÕ»šjêžØ¼™¢vìj°5—hƒû48dBoÌ©¥˜c¨Fà.±îìTõ<c° -̱Fbб³ºƒ}¯ýé+b`ßVZ§—×-%_»Wnó ¤$·îp ‰Þj3ê±…8Jج˜Cf c²¤¶ûE¹Q @Yƒà>ž#„Äž6Qõ¡M†}&•Ê,ެé3ØFQ ð퉃FÔ¡‰ÔzÍÄÑ¡1x7I~⯃Éd|‰Ìçó/Æô‹i=F†¤;ò§€<\—dµ®Ž:Ó`\ã ‡õ7R—J×ÒÀW*YHCWæ¦õL¦¥khhv|#J™þp´ „H‰Šý ú ú ^TaAㆠIh„.c¶„ñ:êL4’©àa«6¯ƒޱ ËÃÖ†}E¥p@wy¿3µÙÖ…€IèÖ[ÑØ/OÖ… (qŽ–ç‘\Ãå>¨G˜¡Q‘RA¹‡O`åØõЋ…ìÝ™†'Úð™dÅt„ ˆ?Rœ9ƒõq4vh…L"‰1¢ Pll|5²jÉ‚è Ä»ö ¶¬iá…çN mÏ;D|­½æ7k™ bÐ ›˜ø—8¬<ºl™5„t|°ùÅ6¢Ô&RõOÛ•Z±z]*—ÄÀ‡Õ…ÀZÕ:ÓG°æ‘NÝNë¥ráúDl ?P¢²5EJ!S­µÐƒF3 õ²õï,°@Å-¢Ú²±Å[o0åØÐÉee‹ê¨_[!¯%Ž%êjë¾^vôjñ…à‡Ü©‚Íß µ´–L\é™Ê^ãwÕ‡„€žšzW=hPЬ¼ØïÑ8m"w0X1úâȧìøºË×ðã#WßI ǃ**õò6TÑP½ÿ5¾3gF4Ìbp]91þë=ka¯Òd9ÖÜ뇞Áb×<¨(š11—4b®“Jí&_­”ÚHž6òÅV¹޹T–xL*%Ô~#Ž+åj ¤£ä¿åF¾ŠÅh™ËÆE×JÇÉ“F¹ˆ&ÈÏf¹uqIZI’'å+ü+E~ÕèÏ4ù‰–y¥V.]bÈÒò0ßÄ¿²Nü“B‰Z¿®–áI†‚Y¹¨ƒC žP()'Á(˜ÜH†BÙ:-×ðocµIJ§øï6­’fã,]I¡Œƒ ¸ù?¢°–kxè kžüÌR@É(³ÈVãÿ¤"Õ´•¥0Vó…2Æ}–Y@ÝãJØÑ€ŸiõõJƒ˜ÍðGÕkŒÎl–OP¥FŸåø3Øôø w[;J•ü$ÆŸˆ³•£€W‘fF&5G!?A€¢•CRèóUô¨†­sü˜ŽáêªÙjTj'à"“˜K»Þ´ÊwäEÆõ¢RCMÖ…šYÿtVr9×kò<¥C>¾®ÉbKDé˜k—µËz ?‰}‹Â,“”.½‡È¿Å‡èÍyBHœó„Ñ¢8^Š"9çP¢9ç7%;DtÎ#„~DuÎÏþv~ó¹Dtç9>J“ˆ"Gœ(IrÔT‰hÒyî"KD”ÞW˜.UzßH„‰Ère ^ÿïò‡÷±Þÿ›JÄ’ ·ÿ7þãÿý+>ŸÿàÖñ¯d·äËà7áÙH ä'ö¤§›îGpüCz¶E£AÁÔæá®"Ø(ÇO’¿ AøèåH‘Â[¼‹Jß¿7ôù{Hö (ücâÿcâ»Müï¡Ðg‡í‡>cÉp@$†>ÓÉVÇú—ñÔBˆ ÿc’- ÇÿpMÿò äôP~¥Õ~sv‚YIÔÞo¨5ÌsÈ>ü’<ûîz)H7÷«•²nUÁ5’UAOVA$¼’á^¬ƒÆ§ØZX†H8Çrc/”óÍûÛpÞÇÔó)­9ö ¹­/_¶ØojÈm}þêêŠäEhƆ£sìÚVü,ËBDìL8E¨_5h#8ê`N=ă FñÔUXu‚sFz¦Å“4Œ4üLC8^4Å$Ú3žuòÜÚŒ§=þ´jR0cBTЙö¥¾I±·|‚ú£ÉÎV‘œú•þ³†1pè…¨&ô܆+Œw|à KE{Óјõ„HÌè:ëN¨ŠkQH÷iº…ò3vO_Ê$+C*A Ï$G/ºîÝì° °óPÓjÄÆ'÷ÀOéHË]Ò9}ÚwF¦¢Î‹z”à¡þíu<ÀÃÒ<œH¨G`„^ü…|G7PÃë…yÒBƒíY~@%þÏæLÃLªÉL<#^ûvó•òsóÎ=„’[íñpjo k„s ©ØH7üÊízÊAä÷x¸ô¸‹öô™ÞÓ¼?{Ú4{žR@R!íeЬw±š§Ò¢ý‹bæ "ËÂ[ì7w±G|JÁò”dôîiS{ñ”Û¯m¹†p"&k[\¹*2¢Ø[1o8½ \¥é›éÏNx•Û7­#bXãH†"ƒÄGkV÷yÇ[¤Ö–Ô'(h`e‡4øÆ´ÚhŒú£Áµg¤ã2›ÁEœº&£±â\á Ô€¿²ÍE¹MD=Þ ƒjW}’y*rZ«›Hšw†KejdÝ8/þ¶Þß&)Î } ¡7ÜÙ/ql¢’ÆÉ橳 "('šÀAÑÉÎñeãœs˜>(gIòÆ¡0jv‡±0ô½Mò©Y;¨•ÓóÇ{“#d…o5Ðÿ«aXQZ„¡àFußÂ0‰Q¶Ù¦‡7DbCúÞL²ê°;z×9À;Bî­ÄÃåa²] §°¥C„(jgÇÝÄ,ŒWI‚ÃÒÏ[¼l3þfcob–TþêÃZ¨Î@TP?á—˜¬AèÅV!&ÇÛ,Ò䣒ŠB8·¬Êø°\8ñ)ËEß_×Uaz¶OÍ?ý*¾©N½…/®"ó±½ï3="Ó¯ìž_Y¬œ1ùîPqˆ{~C¤Ê®OdËÅ©(Ž‹ÖOÛÐQý-‰×Jpº[ñó@†óà=pÊu Xæ­^vå^vßÓ‹\ÂqÞê%²í88d½¬­}æ »4³’>Óñ ìÎRyÕ,óß[R—ŸßîòóG»lh Ž¢ûö¹åKDnÔD$ÔШ7k}–'á«_OòðÊWROoרÉU êê-þ*Ïóoo×øMȯoƒEœ$R­ßÞ®å¸K$Ñ©ðK숫ه!!†‰™¼˜£eã÷¯óy&™¾Û¨ˆ¸Å|Y8+[ï‡R5¨9ÿãÀtY@$̶ =s›E2…÷‡!+Dš—k&‚F"z‘i‹‘ˆrwwG2(òŽÉõJ8É|à$ªŸätئ2×H=R{à$)“åÆAøê"5í÷q®Êg€¾ZŒG9J…á¨ËñLáwT”¯ª³?ïÁM `“a8Qð°ÉÀÒ jÚÍA„]Ä·aš…=†h\äJÂŽù65¿Çêdð6Q{6±·Â+iÇK'¿Ä’ v5¢eg*ùá¶Äœ¸•G³»y°õ »Í‘ÝÖçš(â9À€Ø²*i,'”»ÅÖaƧ»Pˆ4~Hþzy1ëûˆ‚áëóHM†dîà@H¾,íq:T-?0W`cUSÞ&b®&b,ºÔC®ãÅ(¿8Ѭ¿(ò=ÞÚZ,nW>$ÌÑ”ztÚcÐÓCôoôŒýŽ®’þ]Qä‡Xu“?5ˆÞnñëÒž·…׼ÍHç±aÑúÃ^Ó Ýéý‚…@ñQGüw4xæADŠwlä=ÁÇFH ø"LAœyÛJ‡øÿÌtƱÊv¢&FÉC@ï¶T|u*üÑÜ?=ŒpÚÇÇb´´îÔ²]}‘ä䉯˜ÿ¨ãû¹‘‚",ð;<¾ÞuÉãóÆ•°³u1K ä®)ßÙåòzpù9~ð¾ ?Ä©Ò{? Ë~31·dñ*Ξd’ ÃãDásJdìæ­Š¢üˆIk %æ7`à«û]U$é÷Ž˜x­éÙoo û­Úû{ ñCÀGàp°õý\Êóå÷ÿlõumØûÏÖ7¤#;g•¾à‡ø4ÍÔ˜ÚS´ž— ì/£gðÆ^³Î ?BÛ¼WIöþ@@¦öÊÝEùÅSînCè/™Žß©¾ómûÝkÑSñCéÔötéâì²+N :á§îfüx³=O[x@‡k0"¹ò ˜}…GÇ®hñÝ­Iº‰ ¯iÿCÐú· ²ùMøßžêµ¨Y‡–5¹?ëpóþNÞ@턈ðщZŒÊ˜¤òSU6/ˆ.&±.ÖŽ³ñ%nx±Ý ‘]À ‡$Í9 %µ²µ.ýdûmv oûû¶ß`ŠõX6åg8˜î NóþÿÊ >Š8G~\{Koyûl1Õ/ë°H‚S»>;»¡î!Q3‡£6[a®ôyRù>Ž-Zu 4‰khC4”.‚€=x+ž/ú_¿”aeO‰…Eà},°u[Ho«e ¹ý­=Þ•tTLÒ;kM*zÞñ1d¹îðô.%'3$Üá)´A›o4Aâ:W¶dùF ”r½‹î-ìb­ÕvÛn«×A%'õnGã†|°Je¡/81 Húà×3ôI´ Ü©Gö+ŒÜi¡o+ 9¼ÒS’˜Ì„Зßý› …`ü‡ð/¯#¨9Â8ZçÚ@¯±Åç¢g ŽÓŠ?ÈYwç„­O7dÿÏ žh«Ã ݶ%>WEßâ1æ„ £ÿxÊPC“>_éÞ¨žE“½ÛÇ3ÌÏKB@6’ýù+Zì¬2“ïª ÓJ;=ôG2–:ílòk–¿ôàÞßöbØÛЏ¬(؇ô‹w}:ãÚgc\·JI‰ÕSDωÃ\9˜DlUÆwèë»\]ø`°#Uæy‡Æa{Ð =Ù¾q;Ì ~g3²=)(UîœCªž3‘‚¦#žvŇIÝÞô•'N¿ $ÊŽ®„9.8Î(vA+ìx©È2Ôa8Vá*Åfƒ{Ä‚NNz®?q­h…Ó©9 á}›‚Ò£Úl›˜¸ÑýÊÀ Vˆ,ú•£ïÜÛ=~Eé;Ïf‹oYúÒ)¼LCI<™~…ðÙséW ¿áÅVu‰ß°b,`ϯ }ÇŠ:q~eÙK§{É©ê>fH ©« ©B!ˆéñ+Cnç±Z¾ˆC/X!ÆåWŒ¼bih–_AòŠ$I{| ’W¬ Kåã[”½$ìX<.ÿþW·SELQ"*K¡?Å7 P¨…¾ú¸­qJÓriBŠ´x’6Æ\žý*5F¥|y%îHdº­¸íšú“•*­.ë'¢ê—‚ˆâb+þf8¸_×CzrÚp…(÷ÃǪþ½æ€ô>pœ-›Ø:ü[žYŽ—jéÌéwû5Œå f݈àýOï~N¾âá8:I{Næ— Â~a-œ'ž7[å‹:V,GÏöDwÈ €¯pK§´ †øîyĠЗ§ÓÏßÒì¯)ö³O’a žqÃag2CUl…UVæ î@Túp%fH¶ú(¡Ï=›MU8ÛÙ¸="fLY˜H ‘T XD4¾Wo²ø9­Èž±$ŠŠ²Ì#ÌÀ–Æ© aÁ6ñX@ÒÛE8ú ü‰¾•ïŠUü¥Qºm )KGÉ q²pB_Ñ B"Œ²ƒl*³¨ã3†l[¤Ý‚‚ !ÏÈŠÅ¡Ïdb(FÄì+ä¥7 ´/ÒøßgGW'û3*Oš–&¶5ꘙ+‡Ñpð蠇ߣßpâšÿoÛy#O"ÛBºÅ‰Ù ¾²ó n«Þ…yº*Ÿ+ñ³8D÷¸pÕ}`/N[ç6=~Iºò,òW悪 À°Rp3&K)% Ķ ð2­Êgû θµäõChØáZã åDÎ f$úƒmH4 Žeæ;Á/ññ¹@Blgëôò¢¼åX„Ÿð˜•?\¢“Ò¢c´&ç½]ÉPÒÊx>ES‡¾À1O&*öŸIxuðÛxÞîéÌRò°¾Ó"–qún<(Ôš·,¿à¸gžÛÕ5äëf¹Qo\‚ÀÜàuÆNÀ Øê¹pUjTnœj¬"b'¸àÖ{îƒåz¾uê®(õøã†NZs­õ•ô4èíKËý»µ¸§Q¤«ÉnWVñY»°xŸ^Ú–¦½¬düjÔ_ÌÄ ÂâˆiCí:\uÔ:m_äïBŠS‡r:HÚî ˆÀ½ì‹…å#4ÀÞ ™}ñBg%—ó ×Â8åèø]yŽ©`ƹ[Úýé໪üáU„ö°b#}«CQ×HpE*|é@HŽ.\Tp»0¡!zN¶„YTà.Æ~H-¡Ù'‹(öm´ ÞÐ;âãºDæY÷yŸi,ì’V+Ýòb ™ 5§:ù‰* i§EcÒR€b7LãÀˆP(¬ Þ¶0;‚| ±ŠnÙ j©ĵ³ŽzÒã¨eÝÉž(ô ‰õX—¸R|Åc”èxÁ(8 wg c§+jµ!5y 4‰•4TfoÏYPÙÀ•1d0 ý'‚¿÷öð{^“ÿ;zø 'üÝп… |4'&ð·6ÜÏÀØ‹þ¿ ê7„Vè0DgÙ«SÍÅ^(wàW¢ SŒoÄ ±DöhÕ†¸ïx:iãü D„Ò爷»ðf¢?Ð YUä7>ÑH4«6½|—ü…‡ lv•îÔ‚íÒçb»øŠn¦YÒ/¨Ò†'ŽâTé©E i£cÈLGƒ´ÆÉh.ýMX:èѰ@­£õ(Ð4BqöŠÜ‰ÒÄTx¸ý1¢id‘ïÁ/¿Çà$SMÊöwvˆq&…E—0f tã»Ê‘ÂiÏÿ ˜Q7±HJ{ìw¡q=Hñ¯ôÙ…ë”k)¿)ümÈo&wå‡àgÞñÙ}ï¼òԲ䡛K²§vŽ„Çä¬+XV=ôÀa›~ Úœ~uÉjÉòDÌ£¶6Ùqžb#rEYççÁo¸|){Þ2¨]«[(ÇPï°á´Òý‹{é}_ì]Ô§Y¼d}ÞQJ¨÷È<ÀfñÔ–hdEÏ"½¬ïF$!ÒçGN1¼ŠñRs­¤ÀÜîø.:Ó>CòÁa4H棔_FV˜ÚØò|2¶åè7‰!CôAÍ/òùñChÏ®¯E£¿Y••åä<ç>øÃj†/æêÂS— ˜ÃžC»t’úMXª8ÊœãÌÉ$;¸sJ9è•¢Ò9$@{J‡)ÍA V(Iå…¢™«lBüþw$aÌýRŠØ^²U²âµ›&X9vÛ!/»r®Ô^|[»ÔWˆ#¡=ƒÞ‹Y¦ðv_Ù‘°…ոЉ°J QÑoU‡Rí½½o¼;´Ø{ÓñNŸ"€ïã £!›¼k†(¥öd;‚ž§†”´DmAPÿf»$rÝÅ@U¤1Iú¡ßКhô‚þNH‚Cè<š^{dZïƒó“¯A m_˜(ée˜¼Åúï{1»o눣½§>ö56—àG=BêF…T'‘ pÏñ@êŠ:ú¢T&Ê\qö‚¡i#æµÓцæ<ü…·Õº,]BRiœð@Ÿ|QŠ*$Á€û&¶%Y¼Þ†›'t|¡šüÞ\\€äñÖÈgô¨mÔè§"gˆ”Ö+ÓȈ.²¿Uá#p”.¯¶Å=«p(«öþJÖ€tCtxt‡š í7Ø‘>Ö¬:¶•9œ Þµ§¨ªŽl ÕXΑ}²ïHÂ>F.­¾Êïáò[vx8T¿J¡Ls·u\Ч©5šƒOi¦9("ö%>ˆDÆ—e3ÐwäŒ41Ÿè–>Ò¶ÂâT¬8ÆìѪRò˜˜ÜÇ×ì¿qg—gFVtFv78‹W~_§}¡üJ>"Ž×i–’˜WùEæ‡Ð¨âæËä2+yõ¬XE\ d…°Aë«“®ÓGߢ>²2¨qèX¼EÑ<àOÃdGEa[ŸvHRùþ£6±¥ÚÞªû¾S†kyD‡Ì:ö ìsàåJ­Õ`„,p‡•” (Áທ»/ròXÇîÝëÎ=á®Õ,íº ŽÖ»KÂÛöŒíuˆ§z¶¬®XG…TIÔË}5MaÑGvù¬ì*-È©$ܸˆ¦U°a¿ò¬yYS CŠä¢Mç·XßÖ^¦]B!§•‰ ¥À^ÜÒs ¾eÞ5÷â¦{Žf\œÃ3ÒÕÚ€ÄÓˆCCw0æÆd®ºÅrÉ’gÜ+ôo„䌂·¾ ÙžiX}ê‰M8ÕAl#ŠÁG.Ã]žL0Žq,(x9pî/ˆ C9[lH7h~,4Š/ L‰CCÓ‘8_¢…f—-5S§H?„^ÅF€f»¨{¤ôê0jêßvJµn8ê°[« H±4~õ§.ÅY·¾¬ù1êP†„ñãT³m‚;ÈØE8GãÍ!`›fŒ§ž“‰`ßxi…8Ø!¹Ž‰Ûÿ‰n‡EÞ£@7ÿ’Êy÷Ê¥9V„W`7¬[š>Õ³Ö=#C=¸}³•®°˜ eÜ*½à@qpOM"‡cÿœíNÊ6V`ÈW$‚Ñ;ÇUÇœpÜûÆn:[ÑÀŽ¿y}ŽŽÃ°A/¶C´åÖ&E&ë…vUǦ­“ü[ Ž7 CÁž5¦0’Qpw{Ž*@“ÂØ÷•ïñ_ÌåxÄ=8Äá¸uÎ.*ùi}IÑÎ{c§‘];(5§äëÄuƒ [þV¬Qÿ qœ‰!l¶8ü“Œ•ÜèQõðÝ‚4c­xÛ µ³Il°9\1Hd•ä9œŸ65‚°|“¦Dª©ïél©M¾„¼ߨ>º¾Ï=ƒ.;JñÔCÔâЪTKŸíÃÏéOž%¿Î÷•©i„‘pšÆcØ–UqŸmæO€08w»ÎòÞUü—÷WßÅýõcKû‡¯Ök‚_j”³ÁlºHʼnÂA0~ñ18X,zÑ)܃æ0ù­“\o»µHÆÓ¡jOCT+8^°Òg€èËí…õG>°ÿ&(A²£^r[5Ô¹S×ràYå¬= nUKTEœ½eøˆ[°¬ÚºÝÑ4‰(Mêæ·\À®Ûe`žÉ%Dþ WO6c}²&l»ÄQài ‹J¦0qò懯¢ê×ÿ›C–¢¬ä"¼Ì&Rذ^Ÿ¿§=nôúÉ$†: üÇ1v C䊴ööz‚£”}¿·^׉ ËóK—(݆±pBr˜@y†¬sqQ|€HG¬·Õ×Q“âÏœ÷lØ2D-É@ï+o¡v_ùD!òøA…žiÀñ\X FæÓ…TØ„Ycůgj¶“ZU&–ª¡5˜÷Åv@¡Ó´0推 ƒsmÇ'J®9¥‡ÚdÛ&'IÅÖ±5lΡvy‹XmGïðˆ¹-+0ï·¼|8‰Ÿ[Ò»7ÚVÇcÍpcwŸŒUòT®_6‚á*ˆ{<"át ZØË@ð,–jæ„ õ$¾íêH4XŒïè^_äÝ{m]Ç}Ɉ GA‘i  7Y¾µLöäפG¿É‘P,˜ÜÐNþ¤ûüßà'ô±þü_4&=çÿ’™Îÿý£~ݪTáø=pFÊñµ⮼µô‰v f࡚sðI¾qäK7ú0ñ|;Ùõ¡c©Ô”úI]©_ª•¢r^¾' ýðëPÑA Ë!2w”Y"JS/¤#T¢‹üq,MF‹™X*žHFã¡ÐèªR+ß«Kõ¹PΗªéŽ>íå7±HDK<ön/jéaçuo”2Óêl›Iq:Œ\,.ã÷½PS»+©Ç›ÄÞñÞ¢gå‘‹Á,×½½{}-µÆÑRü:“ÎcFò²›·Žgç£Hã&µ¼v#óYg8Ýöo{‘2D½Óqã¶W|6ã…åÝ"w7,4ŒdÚ8Y.ŠÇÍnµ{ÚÑ»õ§—øseü1Õ^<÷h'CÖà):IÝ5“Ùã勾89]FÍx3j\ÝÕ*ËBì®U%GóÓZ^»¼8VïŸÒÆ “î¤fÓ½Æ`x²—ºÕ:¹ÎŒî{±ÄñEj™«=XEÿÜ8yMuzçõÇNò©¡'îG…Öyãux›¬< Í“ËÄs]Ï©¡ùY#9«ïuû1­œ¿­INO–*‘á¸>>¤:M3cœß&sõÞåS¿zûZ¨NŠöÍଡç2!»Y¿×FýtÃêîŒú°\˜ï©×ÉùI£3çsù“›¸unÏëxþ¥ÔÌ%êFº&ïj5ãé4Ô:Yhñzî±Y>Ý[Ô¦ååq·Ô™Dïêé––˜5Ëóâ¤RܽĎϧwËÇòj±§ÆKæl¡ï½„î[³Îäõ$U¿I ¯^4maÖ.®O_OonõN¤V™dÎZÏ…þðl’HXBþò¡—*5Ë©×e$i¤z¡êinlݟݾܜ^lg¡“««‹îM%š7Oç¥HÒŽUcÑK]5ËÕyë!±ØëLFç=õ¸Ð^ž ½ÈI©œ¨ÇÆ7{éD)¾ªªã‡êUbyi‡×¥Ó“ÂI4~ºÈD†÷ñûrÊjÜÔ.–ìñK)§^X—ó«rbZn<=ϯ2Wéœj¦Ÿ«úåâú¶tW»ŠÎï´‡HME¡§ó•ˆY¼¿5J•ËÄpúXº6ï&§ªqÿr+ÌÎìByv;ÖB×…Xö¦û²(\M//ê%´˜^oJÍc#†š8?/<Ï’wgµêiã¥WÏGù›nµô|Þ:½-/÷âñDñ!”|«ƒ«óyn^ï]Õç»zf¶7¯,^OîÔ“çèòìÒ¾¿©/Ÿ¯’ùgóâqöò²X.â‰^zðdt13”H¦Õ¼^Ý{)W"Öâz9éMÕóØåÜÊvkgõ×F¾ÜÑšÞ<>x¸_–ÓÇZ½˜P'×µè¼òz¼Ö#'§…ûÊu.Zìé·O'³§3ítMfZËd3W/ßך1;ÛíU4óµ|<‰ [/Çã½\Sõã¥ÛëóÓñëUbÞ¿žöZ¥äøµ¹ŒgïÎ2éèùK*ÙuûñâíË8•É,¬E£ß=?7—Óþqv<é‡ì¼aFµôÅx¡ŸG_næ‘èU'^èç+qk¼XtsÙ—Á´l åìíSý)s‘Khêií¢5)¾+'¡Óg-ý|ñt?ŸL³µóÈe´ùròbŸšw‹Ee6|¨õÔÜE±~fæÃL¦7L­Ë—H)ÒËYýeäú9”*em»v]\$ì´}5Œgª1uf4›±øõ´Ñ;i^ͯ‰»N~Z;É,£jäµaÜí¼”“ÏÅÓüÕU­ë|áñºx3°ÎÇsXߥÔtp•ös“G3ž.E¢·ÇÇσÑõSó&wyɾ6›gƒéUÿÕDäj„â¥þ}¡–û¼svš‹Ü÷cFåøUćÆìõ9ò¼ÈÞvªÍÒE'jŸé‡ë‡t÷Æ,̬¢ù¨Byý8w‘½ë'Ï"fáþô%ûpÿT?½¼5N;åúÔ¬½Ö-íår0iV “zª×–+éRµß»=ŠÇCåÑiT86ÏrÑZüâêöªz“Ë–òÇ}{ÑÌ^º¹E³Ø$£)À¹IZÉz´ Vzgñ§ÛHî9”?öèÌ视•LÏÈÊ÷‰Y÷$Ù[ª·µþžfVÝ3ãeï>“£püdö““X§z?C³Ž~–[ÜÎ’Ó¢Öº¶æúÍÙñsózQxÙ˳ß혧ǙH4}:¹¹+O"úà¡|i¾ÔêçõR²J¥oâ“è <^—/};Zéf­=ûäöqV*6_ò7Öú7¢×Õ³½Æó¸QHkÏÝÇËûÌiïþü.vºÖûêrrÕ\<]îúfî4_Œ¬xy2ÈÙ©×B×°*Öíéb~54 žåŠÏ…ŒŽÔŽï çóÐU<³hïžN³Œ$h>¾h./îæ¹ó4ñb¾j‘˜n©çÑ׿ñIþn<ª¦2ˆòŒK«ú”1_ö.C“B¤[íåÌäÞÝñÙÓÝéIÞ¾3/K©n1_z~¼h^tÍé¬~|¾löϣ篩f÷ö¦iwSdz“dò)R µb·³§ÂcÅBâûê,®õë÷7£ÇT?’¯>?=ç˽á³Ú/<'/çw“Û‡b«¿—›u/3ÇWñBº¶ʼ\Õ—£EólQh–¿~ }Íë˓֙àÊÆÕ Õß­õñ ÿÏb_‘ŸÑèý©ÔûéËÔþÅâ¤ÿ'™Ì)©ŸŒûóÿ¸þ/ÏòÊü'£Ñæÿ¯øÈóŸúŸ3ÿ±æÿ¯ø¸æßêÆ~üøøü§PÉæÿ¯øxæ?þ?cþcÿðÿ¿ä#Ïúÿÿ3ÿÅÇ=ÿè÷P7¦‹Dü‹jÿ dðÑõþ v—ÿ?Åÿñÿÿ—ÿ¿Y9©å[×2±SÁsùZÈç Å|¾w¬—Ë­\·›½têÍDÌ:«õ¬Ås¹tzܬå+Çùá¬órœÏŸ¯ØózqUkäóVëf:OžÍ›Åùk1y¿§wb7êkª—5&Wó‘ÞˆÎRà:í] ^JÙØù0i¯£¡h¥TÐÕLÁ˜MÏÑÈéÞõÃéÓuï¹X»ÍZÓÎc6ózv9ÉNRwwW£Êy6Ö­?ž/ƒz>}VÏgCÚ¨pb§ó‹ew”]$ï¢å‹Ë›–}ó’ï¿dk÷êóeú¢;i gÉé$1¼ëßj{c«rQ_=X™a¨ø2Aõ8š«V åÂ^£õ4(i·™r4Þ½?>«Üæ:îl\.ŽŒ»Hÿ¬õt2¯¥÷ Cõ%94BÆÙü²TzHÇZ'ÅøCþ¾›7_ºùlçù:;²£‹L£8~°û“äé™=iÞ_dêâz1›ÜÆ_tSeŽÇ3ëÎ(é‹[+1ri³Ñ*?Ÿ_ÙÁÂ\˜™×éHÕÏŸÕüÉùÓ²–é/r¯ÙÜ•un.¬ËP1ÿzÒ;}š¤ï›£»Ót4o\ßžŸ4ôár¶Ðµó^ï®”è_œ¥š¯‘éÞòô¸Q+U¦—W“½óõ²_ ]gçwWêH[<ßÎõò0õP_t§ç{'‘ZõXׇÕêéͬW]¤ )3iå’Ën¿Z½y-õÎ24‹–KÖãeޝ/®ŸÏÎ.žš#ݼ3õ×óÜùC¤?LõŸöâ#ý´üÐܳ÷îç)Õ¬ë©ÊÌ:¾è!ûþ51/ŸŸŽêýk«>¨OóÂuNUoÍ–¥öšÅzriÞ /ï&C­šhÞßuOfƒîíUÒœ?ŒS¡‹ZzÒŠ kÓ´ý”¦fÑûäÉbÒ/=fï/ÕqÜÎ]ôÔZí9ÿ8I\&ÎrÙGµ—×½ÙU"©=ŸßZ¡W»¹zzPóVö²y²¼-Þg ­næú¬c·*¯Ç¯ÍúìþD«Ôãz±Ð7ö^º©HçÑ*ï]%‡ñV>4Ù§gDZë3wñ<(J‘xc1gO/óÊÍy>z–ºŸ•_­øÓíS3;îfRËlÔ2g/·‘ÙS9:9-œ™æÄ|}´®çZ¤ ÷•½ö–ýã«“liš}5Œ«qìv–˜Žu]+žëUýú¹ñ —­Y¡2» Y§ƒÇB#“˜õËR.®-¦£äC.3xÎ_ŸnÏ÷æ`yþºWŠNîûýÓÔð$Yº‰[f£|ñb_B¹{+¡ _¥Hú)òZ±û¯ç‹c­É[{³Ñƒ¥N´\çº>¿ËÜÞÿÿì½G³ëÊrï©1>…æ=x×gïáHL^À{OâÓ7lëèF«ßÕÖ¾Š>;#9Xk« à¯þ™••ÈÏ3}dÃEÝ*Y«Û- cZØ ™ÁXn7çHöá±l .–ƒÁ_þ·NŠ–æX-o¹ãe>¬‹¾PIÆ&2ªÚÒ§ŽDõèóZK¯v4èÔ*oKqß«à£Î4Lª…Ûð{T7ÿõº)Fp)ði&e8Ž±Ç·¸×ŠfÜÞ~mùì`#Ã'p£Ûlää-ÍHŠï¸Ë¶¶†#¥¶.=a.QÝ.“͘¥Ø›L µŸÖÅ,ÉÛ×` ‡@G¿½”ºGíÊ{:?!*«¸4eŸÇrZº9h ‡E‚pnŽvU®mZ8‡nÒxN‘4‡bVúÀŒ8]œ*»wîFˆt!AóJƒüoOT»ùM5·F­]p2 ¢3x®ëY[ñr70Ùrp·÷ƒ¼oÐË}ÖÔ.ûƒi¶ézMHmÙM:&¯ê`c/“å;€o…œ•Êàú(†/Ó‡ƒé· ‰¥ŒÛrÍAã-ƒhøÝÅ«å˜âÉðx ?€O'ž^çyO'Õï<Ìó׳J‘z¾G&¬Å—v<-->uz`®‚^ãsžîn| €{Ùª¡fôCÂ%L?\ß R§íÇ‘Š„¡Æ­”…ƒùq%j§}z—œÉ5ÚBäMs\Q´vƒÕOrVš¬!ÚJ±ºý@ÊE\"”Ó.—¹f-Àüiadªð—ÿ6^2þŸÍˆ¡ÿ«¸Š_üÿØ/þÿãõô¿´¹TFÑ}Rs¤¾Ñ>¾Îwh³KtÀ‡/±^†—u`FdWØcþÀy¸óÑ]ÌÑWDÄ'ÓxÕ)ÁœšÈÇ'ÝГұHқڌȣÛBØŸ6ßM@y.¹Í   pœÈ‹á25€ÍJÔ…·ñÔÏŠ<—ˆ¼ÙŽT*UÇÿJaª8jûjú;ôMg“ÚâÀíç`ñ!<™0<¬Œ´>0Ð|£ñÜË)˜Ãôë#ô3„Ëð-²y£©„Ì€Ê(´lÌÓu˜‘OœÒx‘`|T|vR‚»µw®óÂi²EçÍwúŒ¦j?—¾9¡uB¯¸ ‘’hø½Y1 ¹ØNÒƒ`S·;oEÅE˜Ë‚ñÈZÇûñ /ˆH%PxÑ8­ ‹„hk4?Æ3ásƶîWÛEoÓwi>OÕ£°%qAå+2jÏòò yÅÏàH8CÄ3Œâ~wÚkMï÷Ú£ƒ0äuýél¢š¯-)¨ÙðÀlÑŠ›‹J¢‰J_\˜ƒ¿IxwOQÉÕ„{¬r<û[©ÔŒ¸î²}ÁUÃÁCºïÇ{Îs}¨··!Oº•”ŸöO|²Äk€1ã>ÎZî1§?õWŽ.|q"%&ž¾kHlXtYðჃŒ¦$¡dÉ3j2¿"5óŸíG£”a‚íî 1*s»/ÿõryýùøÿÕþkþ¿øÿ3ì‡óûüG½ mxTΰBhB<õÉ~œå»LH‡^ã^—À½®Á\³Ã'Иvwý"Ô˜ÔÜ â”èëÑ™iãþVúHÀJ«ãÒùeT—°Ê‚G‰{ûÌfºW‘h=Ck¡rzSÀÌ‹-$T´Æýíáºóëe.†f/.®ÎrŸ÷D«WÊÕÇôèÐðMª³e0Òø„–³‹w*?w}#OVÌ¥¼¹·—j¼FÐî$Ÿ=î1¤¿íF<ŽÜnUVÇPžZ4Â]Qo ‘ ÎOE N\«ù#‘Ëêað‹M‹$7//6íëx¤F 1Ôëe}‚ƒ‰ð†­Þ¶-ÒTÀB‡9VVÇ·¿Á¥*¿«®iöXÅSm\ ‡„$šÐy±š÷Ñö44µúº½ ^w‹ï)#7…OÃ’4Xlº¾-½°BE§€b4?ý+:|ÓŠ¾>Âü&©Æ<#›y¤aEßßö6FçrÞgËÎ’v@`ôùgÜ#{ Š‚£—‡êµmÏ,[C}¬p=`Ã{VÊjØtXx!~>SNÜŸ|˜\-«.uwƒc<¾¥›2³ÎÒíH>€m®l¥ðÉ«oè1A—º|½ªÏªâoçz ®&–¯ì{ GÿDl†ËÍÇ“ì ˆ°wï éis"ÿÏ)R,AòœI¾èðŒ1–#£#g²Ñ6…Ùüòÿút*ý¿Õ JÛ>ü¯÷õþAŸñŸð&aê翨_û¿?Ç0„IJA±$ɲ¡ð’"éIh¦L šÌq )hI¡Ê‚@è’FŠ&’’@Š'ÒaPŠÀþ¥¹RZ;Šü…ü¯¹ÿpÑä‘€ÿ™þÃIìú‚鿟bÿïú/ü§’ÿ×ßËãîÈ ÿ¨³ß![±ò?že»û€e'MÔé˜c¯+h]žL2—Ub†Èw y¾…bðâ `ùw¾£fË-ù`“™ÏåìÌ’#†IÇÄz³h¹Ù%4ªêc{ÖÒq ãùq½N[5—àÄÒ÷Ž}º6I•riƒ ·•´S‡ {KF‚ =ÿ~DWë(3+NÒ&6õ×sÌ/º‹nÐKçB¶‘*ß6qRÖÃfÀtÓ¥¬ ÍGÃ|‡ —^XéAè"#¾šÀlÅ î"R8XUmŠ2¼ Ôª¤£N—ú,îÜínž%[‡„Ê/óf÷ «÷²ògõðÞ“G¶À°"ц”`‹˜8çŸËž á|›êe”1Œ‚uÖ~« ×íøDÁ¶Èz¾ ¡q^£•€HÖ)­¼W;ƒªÇC±d<ì*¤.­¦üÒ-~⽨4™ôA¿2yé ò£dFžlot‡ÐãÆ\ªˆ°Ž«¤‘½R‚÷Ž*Ýî·êK÷`÷¡Ms ¶ÐÇ–y•]õ•òá‚/ LÁÚ¬h×`†Ãí(êN0EáLbkÜÌÎt• ±¶öAñ"çÖÆ’›~£â†dÎÀ¹Q´õv+¹cÔÜÝÄ‹‰“nÎ#yœ…JÝ:W ƒ2xx>`ŠŸŸOÑôGQåÌ–úš%—J%­q¼g×7ô«6¾8 £€Ô޹^PÞ*xÄš»=‹î–ªXö¸ìî=£$ mA¤[%©‚üj$Ï4]9ø­g¹ìÿÏŠïßÛÂÿÿý#vÿùÂ(BþâÿϰÁÿèüVÓ¶´;=”))®Ø/©âWiÍh ¡»7eÆŠÌÅP'õÊ®¿^`“…dsÜæ]øy!æ ÂMz«…ó¶BZ`ψ ¤rÏ+yÒ½®–¼_ ¶wÔW_Kno/e¡ÆÇ5^ÞPã¦4 ËÓðèõÁ(Y¸µIIÀ·âñ‘ÂÒj²p^Ÿö¨Ÿ+‰c3vÌ 1}E\›`ü¬àPÈŸ¬$…Šˆ­zùBj€§kØ-ÕCpVÏ“05Å-÷èÞRΫBÊÌzGà)â‹L·kf$/Àˆ:‚W±wò-9ÂóÑÓ©Ã÷ZÁæX40V è;lø’lMöÍ#\5_Æ •ªkÀóÙÇ+OfI”\6þ:ÔOlÐù`}ê>gt~dEE·ï×óÒZR¹®|6$‹²À›DoéB]]„{~ vƤW§¿%EÚ…K'_à|áUË]A³dãþõñ—‡kt€ÉÇ¡ÿ@ål«Ä¸ÛÖý<‹'s7·õ½8ýR2öˆDxö•ki÷3‡Yˆe£„&x× ¼U}$urƒ‘;¤'*]$«)}¾p°ùìPi›³—›eªÑý³x¾$ôîßÏ­X€ o™ÂÙ”ö&>07©ñ(]`ë­1_¹ê#˜hﺇ(T¹tœŒô¥mp¹¶=»}exÏ|E6nÐEš4;Aø-¸®øÏÎÿßݦEÿ¿Jÿ“Ô¯ý¿Ÿb?‚ÿÏ?ò{„bƒe%àsË|5Rt§ùJÓÉ_­ä§CÜcdCg%«*ôh³KCO ÙqÆt3µßÈÒ_؇CVaºÁdæ0~BØÏ—}àô0 %àE4$l•s6íc*&–Uež†VZgܼç÷Ojcšþ!S^$@¨x ²~A5àŽ_rhÆziù1yNÓÓ§Õ©U}þ^5€x0Ô"yÊ÷xZØp®ùù‡(׿%ß&%¼ ZŸñï ½Ý¨Å}˜ZJÂCíj·‹–ÕÇO‘¦ñè]CXz T[#ü›Ñ¥•¬Ê VÔö2SôõzóbÓwºÇ+2­JÅ¿ˆlfM!^ÄÐmcÔÌ»ieH÷ ÆÞu+nY¬sy¼t-5šM¨Wæ8‰õsŽ4Ä}ùÍ ÕÝÇ™¯}9 †òlŒ¡$b5ØsÆáCßÅbæèàx9©°F·qA!šX†ƒ´S¬+0ðÁ‘gC“ÐËðÚ‹‚еl0ðJ§r‹Ó×nGÕ¨¶­ìâC  ñS3µËTê6À¸C&4¢íºùØÎån§Þ“<­#hìÆeQQwÝp“Z߃zÜ,z!^‚ÞW<]úÀqŸ$i¦Ý¡A̓6çåӉȥo'3z8OECA€yÎwKÔ3­E¢CƒÒ¦†ÐQHèlѤg#ŸM¥oßÀBŽþìüÿ±)  ÿñ_ñŸŸbÿ-ü?=×°ú!"ñ¼}kæRSjüz¡e¸l Â!R—:‹0vŸ) wÒ_àôˆ–Të“›éb;]Ý”à™f®•4I*ž&óàÆ^eɺk¦á*’ab” Bš¨ö„ÛSú¾¿ßz¶¢c‹{UIÚ+mÈö2ÈyMMä¢)0_A¾¨*,ÍÑÇÒ9VëÈW…¡†gô&ˆ©ß)×¶†zhåÓÊ^97€ 7;^Oé¥à‚U™Ž$8æCŸpú$[x5¹Ïá›»JÅ=Æ —°]Ø+‘c#3eX‹Þí¯¼_CûæèhR–ÝEÙv)TÉ?Djl9Îö÷áµ#%ÓJO×±oئc½H¼Ÿï$ö!n—8Ë„»7%hºê ;ñ¬$Þ0xqÎÒ7~ØïŽ×!91ö5}úhæ$‰2:°+à£ß5v&rÃõahhlf³è›Ôã5’˜àëUoöØË2µ?Y8õYspDw]:hµOcÆOÍT'E«í¿± ÓþâÿLùkøOüÚÿû)ö#øÿúñÿôwþG·j@z5ƒŠÝM e‰^ ÚÉRjJLÄIUÅ4C…ÍÇ‹7â±/qØolA• îêIïÆ†žK,9ž%’2 ` ¬›f=^P^õÇ–ƒNûÔo¦¿yéã¼ùJ,$òñÀ©¢Ä>y-¤á•E8 ^RQ4Ò£þ ò0<ôñ;nÈŠD'3ô‘Ä“a©Š©`2zûâ 'Vö¤€A¡'=‹š²Ä&>)Ê:”Ðu×.q-(4ðÓkÕʸS=ñöÅ,pÊÉWÛ¥@£Ø I'xXºMjvÝ=i–ÛœÓy‚—ÐÑ1lŸ=3^<<_Ÿ8˜m²ûU¤8åÀ~“$; ñ :°çsc$ÌŠ´Åx”{K%;™ò(oCôÉ*ì†4#À˜*ëi¿µÞC'ÐuuÈ‘c§²l«´/Ö*ð@Kj}Q‰wÅí%cýS’ñ1…ÌÃÕpƲ9†}jÀ[g¤…x¾'8\Ú¹Ïu¹BEVÊ4„ç*°%‰—PöB”íÐêýj>¶Î éˆ.€E7ÇØÑh1õ{Ýò׿PGæ3¹™Pã«çTÄÑ jÄJZ‰;QigH²Œ¡½XD¬¼¼‹RŽÏÞàwØ ü&¿Ä÷ŸXÿ!ÿCâ¿¿žÿðSìGðŸøüi—UûÇ8êÆ’cfeÏÚ\è1 †‹}ÆWç)o®”p7·÷Ë9%kHW÷Õà»Æ"¸WÃ&UZ£–­¶£‡¾"‹w^;/V¸•¿ÞÙ9=gºˆ©YhÅòÛë’¶¸ç‰WÖDt»Lª$œ÷ü½¹°ðú÷ ¸W¨uæHò&ÓYÚ ‘ ž}CJ{W±Rú§PÓ˜1Û7ü’•×v©…U;oÁªÂ{çÞ¿dz=Ò‡¾†z[@(ÌñCðõï?ò©±pa,=•µœÁ¨?¿Š”Û# ºu—ÓAº¹?Tg?ËÛläÇÝ,ÍÒú£7»C ­àe?Æ=Nz-ËÌDsË8\ŸYèÛÍ6êåHQ°×|²Äø8ë†n¬5¦†—è„ýÊ Ûí±ÒÍiW>™2RUtûëæ5 ØèN½f5>ëQ۷ؕңÉÂG 6’v:îѪ©½ä1!øU„óZl/—ºÊEÉ7ÈNÉÞ–=A]dØ]?çŸ*Öá¢Ü²ªßaU€–U…VPB£—oÚŒä_û²«ÀŽv¦kìAûô°Bì¡gÉ \ÌÇÆyZZÌPÁëé#‚îäÛdÓ{X~+(Ç5„®W³É¦<‡#dW¡l-;ÐÆ¸Kñ‘Ÿ¸®$­× ØÊO§­8yÛ/²à}ª G#JŠ,ú zµßp·Nñÿoÿýåÿÿûü'ÿÈôm:PÛ¼[â#v5îP2«ƒ¥q±—Žóˆj»Ê¹Ã ‰î“moh Ð8SÞ%‚¢œ1ª¦hœPÆŸY³Ô­,ŸÅ·˜š8¬ý¬EýUVfjŒ¡ cúd¾ó6†:ÇÓF:ÐA«Ås`”*5Òqfêùí-2²2Pç–Oöù’~b¸¥ðþE d˜ÏŽÎȃX…ðÊbÓÖ­ÂO­þ‰·»¨ƒÜ—43RùäEO¾`œž*ÓG^cøñÆšt…ÖF­ûÝQRÝpSq!£ÎËú•A€ïì3Ķ¢iîêG|K4EƶX¶½°éûREö•Ó½@á̳àÊað …ß6ïìuÓ{äÀóI«R³å³Ÿjì(ÌfÊÔÕWƒô[ÌV²‡øh½íÓ¢EÉÐGå’L—u°â% „þ8hYE>¨Hå”+¯Òg¬VCìé…vÌû}™ËÙsQa+{QâUd”Zùе<Šž—çú{ô´àÅ“Qû°oââÐ^Ëi%ÞY *Fþ­‰gËTøÑág´q)X~ `ãNÒ Œ ­óJk%žü·£gª½ûæÃøXÇôqCîÐÆe`ú\®w]¸g‚|ôùx}’ýŠêQKyñ"•î)žó‘2îÏ-§š³¨{Ê*qc îh˜ëñî4µÇ‘ç~²hØ*ýf×§}€ßŒ1àþÔüÿéñ_Œü ñß_ñŸŸby™¦_žÂr4/™¢€Ó"Ãñ”„ÓœF ÁRЦ‘¥Ê £s ÿ¾$EÁy‘£)Eÿ!`ûÏáB Í0 .P4AŒ&2%ÒaH‚"á2I”Â’Ër8)H&…18/p˜AÊŒúÞ"¢ˆ³’eJ–“Ó8•—•âô?ž¿Ã!¿ÿgYI” •adA`ß¶áŒÁ K &3¦¤ÿÖqÖÿ©öÇç?üÛiΧ˜Æ¦Ú×}HþK:ð¯ˆÿâØ¯ó?Å~Äþÿûú/UT—5lh¹£Añ'Á—~÷±ÁN`»®m÷íF¡ã¶ù€„åP ò2úÜ£1ì;^àóæEZxåw·Të}Ú•^‹˜'ßÒÒJXO ð=û=´Ç[#ÓÐ9‹Š+p _§HBM ¸JÃìÇ%¡)-Ÿ5½GàÉt¨ªj¬Ï_õ£d›]hYÇ®Zå¾Qî9¹šžRÉôGŒÆÃ™Œk4‘ò¯äG˜ÉŸqµ¢%»ÜËòµs;ý<:Oœ(su¨PÄ.ôÓ­}>÷Y×=nP|èžðÏß § Â]ëóAª @©8`É^Œ~‡[ÄÍ„*掆*ªî;¤µ¡{"ï¸Î%fóÞéÁÓÚØ=A&ßü¸y¨>´¸Ü•à*ÝDZí®ÄKÐéðoR ’f*‚ŽDo(ÈûiÕ —­¥k>ÍŽ°Ð,tƒ8„((XÎ)O DSÆÍ“ž"}äOciÕoCgLÕ'Pv—„Q…é”_¶S/ýèÞa°?õî zÚ¶UI^y&a ïžô¡Úe=‘Ögb­ÂªrHH[»õ…i¾bÒKÈSøËXÜ:±+i¸;»Áû+E1ÓÏ[RZ†G# þ<ôÒ¢êãÛÝÏT9EY-´óJjâq„Ï´‰4(Ðop £D“Z¼“îÊa÷‹Àî(rËzþÍ>hw+à·’Ù?­þû›Ôÿÿ þ?Œþ:ÿñSì¿Ì=1¶?òÿ —UE§©«îƶӬ/7Ü^}ݶœÞ\sŸI]r°–µYÎð^Ÿ†4×ë¢r+G)ò“_^ÅAäêð½ódç¹ÛzÐå§PÞK\û@2õ};žsY ;µ´aw^š‚_o½—éøŽºÙÙ„»W=#[… ä]iÀ«,Ü}D •f—…Óá‘ï½ói<¥¬½†ûAéÂù$D§àÜÜDö/tä·8Ò[œçDµØ{ÎrKÒEξ4Öš8ö•‡š1Uî —æCXbƒ!¼ˆgƒ{«µ‘“\úàkµKÿ»$4)´/ý§~f›-ùfÅE×ó;ß®µ&N&‹?5ûå׬Šo‚ùx”—f2üFŠùSkÛ‡ÜzØÚ=Ö^v|½ù!·_«‡3eèvªkP¤ÝÏ€u;JËwú9„Ü]-}”øaŠç±!wJòÌë`ê…å·öy›Ø±½³}7ò(/óUµ {:R([}á ¾òú(âk4èFB§ü¦Ô|æÁއްä_̘+æ•XCîÆ>Õ»~—†ÖÜ´¬š*ïÅ•»ò }õ_Ÿ`¼-á|My«ËÈÛ§Ú¡£ß­†}¢™–¾{!ª‘ bö<Gsp4 FûÛs–iµÛäÇ.%7òù³¤rØ0Bú#bëõ¶-lô>„ºÌÚ÷ácwTÀRtGs%nظAzàÜ—ÿ¨¹þâÿϬÿÿùÿëüÇO±¡ÿ¯?ò_Z¾úß@µ¼‰­™‘ãôt!,Â?o`hU’,õ¨‘¬óʆÏ_§wWðN±’'òУ…‰nOßu~ËŽ6ujQêzÎû öÀFm¥À4ñì×NâÉæNÒûåy ÝN{î Âè¨ Çûˆœfïè+™¶Ì"ÆuÁß##,ºÍª¢oÆ-­’Ñ!½@™ñ•v2J—\¨²u\Ñ&—l܆Ž]Pxj¾ôr<2 ˆw Åß±ÞfX)|̸O9gÎ<§z°&N >ILýYT˜{Û™|YŒ&Q‘Q!Y\ÚB‰5¿Õ$¾gÄ(¦¯ªf9¡õl_,Š›üœj¶9ãPª-[3tDÓ¡ M)Ìó0|Rä©*ÈòÞÔÞÇ“v÷lz—àUÇžØ,=aM¼e†’2wÞê1ë@*®³«¿Iâimyå:®7m"uŠ?kÈ{é}êiûñ:šÂ~¸Ì ÂÓ2¼|G}7Û–뺱xˆãí:ÉsôF ÊtøJ™WÛR¨ñ1{ÝÀ±a”Òü²¨›»ÀŠ\÷¼dêRv¬—æ=$‡HãøšÖ(#Ó}k¶GCˆÌöp¨“{?ÒU[C¤I ª¦6 ´—ñ…%2  ½„ËeŠáÖ¿Ýø‡Õp/€X6Übòàî­<Æ=µ]>Ã0äñ½W<‹ÛB];@ã¦å%bÅî¡rž4 ü–‚àö§æÿO¯ÿÿøþŠÿüûüÿü‘ÿaº¬ÎÍŸ¤%÷Œ"½ß¸&¸ƒXË}¿th!†ò½Øúôœ“§ÜA¶Ôä£Zé°Ì«Œ“À±sÂ&‹¥#´®b3[Ð¥jŽwG´ÓÂ4äña×ÉÂ%ä’…>ö+Ýa¤j¹×;uYèºvwßõ4Ï‘¸ §zQÉ"þÛ¿ÇX`9OD$Ž.2ùDêÀB©¾¼pó¡”Þ!mž‡¿Ôã*N£;Ëp÷'fô9DÆiyî# Ý*eÚH³‡TìÏ©RïÂêñ(Ù‡uh²dƒâNj‚WàI§ˆlà6àçØ*¦Ä»ÑCŒ¯U„ „R êPîs®y4SCJ§úýYѯ0åÙ{ùÁdzXH0 ¦Ó­–°w¤TÌg‘;ßÌL†ÇRM-=mݬô"Ý™ª›¬ÏN]UÅúÐXö |d“‘–¾Éùòë>%Îsìu¥r¬Ø›}1,²-'s°§M1uƶMè›Ûšcž€Î\øü|!„áé;=Í’†8/µ*TÊ}÷Ú^°8B5 t˜ •­†K¾þƒ{ÐóÁñ ÐÀ﬈ëä}¿ 士W|º×mã4Gc½—¯×ÈEž>±6+¬ [?)iÃÎiUbžR¸^fò¢“a¾Ý˜:N„Xl9d_›zU¬ü:Fcn?+‰ñ–ðÈÓœÜäUBó½ËüÌ £$btwà7°E‚?5ÿzýÿ_üÿÛÙ ÿ§¹rYUU)b::ÖxM©ÑWÙ—Ñâ0”î×v”•‹þú Þƒnˆæj{!x06~By(ËðV¿Oä]}9½¹ì~Ð4Ð|¢Ã “#ÕŒþ£ˆÞWYâ&¾³³Òtcf ½¤ ¿»‘vrýŽŽ8¾µ|ò yýÌeÒ¸µïFhrËE­%Ʋ;bôù¶M ò¼YÄrÈŸpT_Ã3Š‘«ÀçSo¬$xןdÍæ¯{ñ¹×…DæšGŠb›B»oÐŽ_Õ¥,.XÊW#þúvw79$ó\ _f{¤>Îï®zÏÉ1ëô°0Þà‰c¥:x;/ÿµÂöê<0¬EU¶«žêj pàûÎ2Nš rßA ê©ø•¹`C²“K‹=rŽ&B è¼v ídØB||c30¹9A¿cÒ>]¿¨Þo¨š“ã~_K´’IR©`ð¹2Ôûz‘, 2%®ÿ$›—4 ¿¤µÐIGÔö,{V_ͺYü >yÕʽs|=ò i/æmJÂ×½š´¬îœo áƒòhÎv|[÷¤×lzON€.“µæ<4èc“e–7ã VêÛ5¢¤kg>bhš9°Í4‘5̤qɱü ßÌ€° Û„‘vÆZ ÊŽ Kçt6æñÃC­4W?l–èA€‡0~•ZQÌÖÁ“:¯ð›®nýÿÓëÿÿ%þãØ/þÿ ûkøŸþÿ÷ù!¬Ã´tû‰3_’nŽ]ŒôZGÂhÓ ç*¬ûûx.™@zã¼ÑÛ‡ó‚]j˜þðq ?Tw_ ‰&Gû©ïC¦#"ÒªYì¸ð æ4þ9Fm¢~ÕîÛ~&ï2eœ©óÅÁD‰ZVípÁáiçÃ{`™£œâÝ€Ç ¨¦„E[‚Œå£ÏRˆ| äjBmË´9©iä8J=/,‡~˳; ò„T-va¨Ñù$,}¾cü±ñžøbæ$¬ðª³'©ÀÍnù=ÛÎãLl{ø ×ÎÂ'c„ÃøÂ*‹Woìm6>{¦UŠóRèç>rzÞ’ÐÒ¾OUö‚Ðæ½óÚÔN¢ÅqÄŽ¹t¹ôzU ÄÁ=ØsòdaHLBx¦CÛ3kóöfÂýÇã?š“ {;Aì‰_v˜ 7<%S ? "ç|'Fü‘¢º³f£gÕg›HzèÌÕ¡ ÙE¨ü~†uòæœþ÷B}¨]À¬Ì$“GÐgöç§„ƒvÎT… œð܆§ó$Œçýfk]É5‰È0™oS4§’4£eWug¼H 3 Ë;u¥ï>ØUÔ—­&kNIsR U‘SHue÷^¥¿ ï=”`/[ÑÓ‰} ¼—4H–]qÂŽ <\½>Ž.?ËG-½^K!ig®ËωHD…¨ 74½g5(úÒ …7Ëý^ñ?ÊÔÏŸ—ÿÿcêÿÿÊÿþ)öq¡Q”Î`:IKdÝ~£ã?ïùoüÇÿÿ»¿îüü+þûSìGðÿ?øÿ~xº¬>ù)›çŸ2kâ»J./Z2øu%3¶íá(wð^O¢ܪîg^(-…èÝhTW„‡ó(®%‚é}8™Ü!k'? e6šˆXã ×\’òøJ*K¼­Eç!5 DŒÇµ¢Ó1ñ·\$XG"-%ƒrÞc–±+ ccÉB͈!—Ûâz²#+ÐhŒëòΤi´BçÚn—fÙœv¼ëœHeyÂ+èPlˆR»( OÌ_UcZïpì&׌/O ƦÃÝ7'ß;蚃௫‘@ØMÔê²°Ên—(õ£‚J…¬ŒŠ“µ‚*ÆE¨R‹ô¼¯R%gâ‘JÇFL hBgˆ¹ŒêR0« PöÄÓ›Ñòøâ\5#Tºû««i½f‹ç=`sj°‹nô°!l­—­ï1A2û5¹a¾–òî¶ÊŸõfÌJ=ˆz·z“;Fzæ7‰Â…øXö§wQ`îÇ>¡á"m`/ÇX7…²¾âçÒ;ë^“¥{éGL6µ¢œLÔ;÷bCàÁ[4LùVŸªÕÙÎÓXø,¾ªJÓ%µ3 ¤åU{ùÙÜ îubáç³è/µíN†%½XzÕgægL?k~zrlµ~ùh9÷”¡ñ´Òï¼­ft~Š-m–#jxÕ%î»Bõ»-Ä[Žã“fa åk«@cgBJjä÷ü ü6É¥ú§æÿ?Ëú[æÿ‘Nýâÿϰÿþºë²jÑ@ÇvëÞóEUŸf5iDhñnG;^¶¨ž0 ©ŒÖô^n¾ûz; ‡0<ÝÉÆ#‹ÕiìŸñµ¸CúrƒF­E@xôüÕ¸q#6ÙøÁE ÖZQ%¦kövÉé!i>7êO êÉ¢æƒ+~ÓÓ(³ôåo™—§õHÙg§ ¡3ßR} ×…-ÁaÎ*œK“G¼‹ïßËSõ8pÉTœ}ªR¬=µGýuè}T:æ©äB¿Îù!¦ÄsÞ„í7Æé }h[Ÿú/œNÀQ¥칕nÍ>Õ7[j¤ø ’Ë ÝÂ!Ý]Š®‹Æo° ”e|÷ÞŸ¼xuZƒ™*Ó àÒË#UÆøt&^\‚ŠJ³ÔZ\ÿ¸iP欱‰÷g× ü¥TæÏ§~z±®!_ÊÇKbË7Æy¼§Óz K ‹xÿͱÎüÂñDÀ¾>R§dî×cìªL5‡PpÄLƺb÷h„ꆩOœC!ÎtÒ¤§Á%Æm™ûö±+#U‚ІgìŸÀ×›qMŸÿøkõI­½ xDW ùpÕ (&g /8ŒíyÞÅPã~º¤ÚH=²Jˆã¸< Qií+n@ÂZG ÎC»И Gá§PKSÊš¼Y­9#žVçÓÖ†”‹†ÐçJÝ~:´FZ6‚™D'ü–ߟ?mýüÇ?üåïþºøùëüÏO±Áøü/ü—µoº~|KKeR·‹›¤Àè-ÁJ„Ï›†9ƒ<¼õh.s*ËyÒ~‹q%õ¯X~Šë³Õ©Ço/'*-Ôà‘¦Nƒ·ÓʨÀד™'ëj]+k!)¢L[Ÿj ¤Ovx ­`{›ß!dˆuO¸x2Û*¿kG %!n}޾9øÚ™6E½ÇýÞ]xãhì^Bbî\^í ®$C-bO­`ÙoQV¦€1ÑkAö>«ÅÜò¡T½rR²?¥ }/9êPÀîEæFàÊ÷Rœp²ð „Öwc ~þÄ©-u,$z:ø3(زHø!*@õ°ÙRnqÂ!«{šº¿ûìRfó£&wœ>ÜxDV€ËµÂ^:÷0<%¤P¶ å` rR&ê«F9y°‰Û¼Ô9°¼~¥=œ,= |èìÊÖÜü.©æ9BÚAÍOÈ•%Áµöþ|(„1ôÇsf>íûBì(¾ÐÄu—¨".Z€À'µZÖ·['ÙiË‚¥d”Ah•ÍãÌ)œ”A™VÏÉŠ“‹².˜¹˜AhP8ÚУšÇTaŠô6#¾£ï~à7Gÿ“ëÿmꓵÙä~Ð!п‚ÿñ+ÿã§Øà?òGþSNà@˜†ïÖßó‰{ýÈŸßa.#w¨–ÔvEŸÑCJM–oM¶õMyh˜ãÕî£-¶¼a¢ü8zi"ufªXÚ¾¥G§€Kªo¤¢ðŽÄ¢ðý)-¥4ü¢F‹ÝÝŒ C-1Rr6ª¿bgÓÖÀ;1ÉDù`'¤Iìƒ5ÞĵTð¤I‡QçhKB¡¿DlÄôÑ{ÏÉ Î7Fk¢Ñ¾›1–‚Cܪÿ›½ïîsÛFýÛüšZ´¢Îd›¤Ñ©F£E™ì>Û[ d×Ê›åj±¾¬õŒv^ìuž¸lëFËY}ÕíÒL{XæèétÜÞ«}Fœ´WJ§†Åª^[¨Ì¬1Ü×´¦©u“³Lƒ­LÆi—²O“ãڀܭë©’\Š3sšÕÕõ¨ MW‹Ž›”&šE²«•µ‹ŽƒÜ2‰ +$ËsfâÌR1®ÄŠTª½s꽄Çlß^èV3µMð"Ÿ´¥}½Ô^7S³q—.N…ö*“ÏÛ‹ÉxR¨X:;‘±hiN6’ã¹Äç7ÃÈ*Ÿ‰I27MÏDOn0]J’w“½4ÐêSE4æ;—#ÊQ‚îå»ZBèarÉa÷¢3ïw†ÅÒª-ZÓö(º£úéÿÿ]üŸùaÿŸÏEÿOÒðü¿^å3ÉMŸÓ‹Âb>F›Zå2lMûc®Ö^.¨î”/ï•\w" ½ Q¬fZƒæ²êS‹ZœL“Z•R9ÅEÙN¯ Ì_Æš*ÆVD.§»&/;>Ñ´ig$ëî²ZXÌ(j9óZU(³T”í/ù’И¸b1›)KkÑR3Ók¡³Öõ¥ÖUº©Uk¾®¤¥â¸'ïImmªÉ^¶Óæ«í¬4r7n9ª­RTe¯í§m3¥ellÖ÷ô€aòzf˜­:»ÆlPLÚÓ¡”•r-©ÑÚ“DÆ© ¤Z!mjmµèL6Äjåfk™Å8ÛÆ–µüL™,ÅQ’¶óVºo© ]'¶?OS½m8~°H»zµ:Û¹eqJê·–÷‹Í|1s±œÍUt£Øã&<­¥6é\½Å¹º×©~!g+‰M¡>N“Œºé–ÆQµMƒ¬Å2‰mv¸íË:¶wVt^šU¶µ¼içé––‘½Ie•#'CzÄóŽ6Ú;T´]Ý쇌 ”ü¶Ä[î ×³if5ÈË&FhÓþ0IZòf@6 Ý5$aFF›­ÌPâ;ûÑ–*$e·½,Í RoÄ;¥µK®W½‰«ë,Qª9˜±i5g™è²–P­ù$j»ÕYY‘¬U–Zš=mÛ3WTwÑ.+3ð5=¯­–álìþB¯Ì+‡í¶ 9×O´&ùÞxÜf#½ÄwLm¤,ÆÝYÑ„Yƒ÷v\v´ÈE‡½Êˆå5²™\¥rÅ&Æ­´q·]æJT†ì´ÖŒ7gëØc”ýeÿ1ùç9ÿó#ÿç»|þýÿü÷vÓN¦ªŽ*„:™ç¦²&ÍÝM“ꊵv3ê–`RÙºTX”;Å¥˜›Œjý.az]fëYf^¬ù™·LM c…ã²3$ëvMà õ*™Ã˜B§´/8Û®ÂÌ{ìØ‘AUóy¡2Ñòu¢Ï–]~Eõ Nk¶*ϱN…(tÓmô[µñª¦bfaÛí×+‹ü@ײÂRû-1­2»Ès™á:©A§Oddzž›y£XªOÖ‹ä(§ÕÓ›1ÖªÌWËLÂ\äËž—OFõ©²Õ2Ùítÿý/˜ÉN¦ÞËååÔ0ÅO8w7hòË–S©/5,Õ’ºrAÞÐÃfÁªŒf㊙hŽH^–ÝY›îË™iW$Ý.­-³ÉþfÐQ·yÊÔ§•©Yí 9ÖfæF7[©¥¹™›Ôڣ⢸ÜÓûV.[æË kÔÛóƼDx¹´´ïQ­aCö™¨h¯„F…5óXÕV íJ,«]yMÔq®gΙz]cµ}²=ð‹”åäÕ0±-ºd}eì(fŽ…ŠUbòX1Ô¾¸6–ûr+¿Km­}ÛèN³®k™¬Xq:¶6(Ûެ w³NµUSÔ¹¬zY¶É%£us‹íô)XNÆLU«ØÅovJ[Ѥ‹zѹ‰^ç \ÉkòÊ"³ËÑÞ¼]™ºÙ¥Pn{‰ œ–ã7Ѧ'´³½‹Úü¢:µ^l£®ó3I¡ÖÅôR¹ƒö ÐIØ,55½\ßÌvšê’Ul e¢53Ý­ðy}g•;Ùþ<]†™>L¦IZµ…0˜N¶Ø`$2ª®—ó­-f&Þ6ö\¡UÄjD•âèä²YkN†=“f›‚¦³{sXH` .Eµ¼É®K£¦˜±8«(wí9/d[ÑúBß°f ÙvÙÎg²š¢KýŠ0Ñ<Š^©Õ¾5ó aÍÈ)ÝKQ£J”›Èe»¿[nl.dœtc9MiÑlg6r«=—uÍÙ˜œmQ3°Îä”ÙØ5WÛáœË ízÎÙêeªf;ãö¤J²œRÕ‘ Z@ÍZ«QmÂÔµÙFR§²Õ³»Ô_ö÷“ÿ‹ó?$ôåEþ›ú‘ÿù]>¤¬(IQ¦’UÙt8^*¢EŠ¥ÒRšLÑ’BR´˜¦$ZHQ EÈ„B1ª$s -«IFºøýG1-²´ $EZ’8ýš¢$p\RQU‘MË,«¤QN‘©$“Ò ERr: êTZI3Œúü÷YA$¾¬ DRmd)M³2Ǥ“*™fhJ‘Sœ(±ªL0‚¤&%•!X%Å¥Ód’&õô÷1šf„tZ`9EL ¤")L1 2Z% ZR™¥R2M’¬È JZHR–)V¦éÔåIRIs”Ȫ¤*P)•Ó€}4M²\RVH%) L*%[˜4-¥Òj¼T.-rŒ èt¿ “FI "Å¥ÒE©4ˈ©àª Š’*J©Ò„æDÀS4L^ÓÎÉ`ÆRм Ú¨œ$P´,±tJá$BUHÐ$•ISBšfS A³*#Ò€s$X–:¤EBâ8üÇ^|"¥4à5Ë€ÿÁl†¢!Pœ”R€œ¤ ð5•£‘S$ýø Ï¹þ§ÿ<ç¿~üþÛwùüöÿ¬ziÿsÛF'Ó˜òz”ÆBBJÔ½q-?tF¹…•HÖά¢¦íI‰Š]Øj+i³ê­k\#µÕ3Û¾Ëm73&ÝÅz+ÈEwÄ­';’/¬2E)Ç`Î&U¶œeäj‘ÓsºBÌ2lÕk)‰h·´Ù¤UÒ7b9¨T½Þp¥ûVººêµœ…2ÚaÌšo2D†XGû¼Ç²d¿h“knÅDEn8«ØÕ™×š¸B[°hºä¥EžU÷iz]&ë,CXmžßÉb³oî2Ly”ì zÓb«É™Ê ª¬ÝÕ€^؆ÓORKée‰Þ¬—Þí6ÒŠ+çÄYJ^™Xa¦î2½ÖrAw'*ÝuøL«Ää&i©87U6Á¯%.'Zd²Ñ45N-×åŪXè&†]×Yc}lí‹êš«nÖQ©âöø,#qÄB»ª½Ú¨ls:¦ÍÞvÒ¦Kt…©Îs½ñ,' õ}‹ØLH¬“ÉTóÙÌš)5³IÛH×G%yN×!7#½:æè¬åYÉzW¢º^Õ«–S•~e¡v‡É\f`veÌb7Ì097eÛî-fꢹåWZªèÖšUò”M,Œözæ ·»¾4²K³âJ¨,ËË}gXqF –Yk…ZÔèô%oÖ«™ºÓL¤SÍö¢;î÷Ò¹deД+Ü’ŒœŒ·)™2¿îÚýM¶Ò2}œIab}2¡hÞKp=¦iØ^;ª–; M5=Œ–êå¦A—£`Mí3Spdª¼KvÙ!Ëd7C¯‚íÆåâ–k±¢Æ,”•ÝåúìÑöRÙý_úÏsþëGüÿ»|þýÿìþ_‘*´Wü”;¿f*š›*Åá¶q9†ªPLpS¡”bx¯Iwúƒ¬7Ü˹é,±tzE{’˜/†vÔgìæ~ÓÌÌ+œîq˜QH|µL/Ö›m§3u~ºH«…µ¶P'ƒÚfÜ“ˆErFβ‚+˜I4•×Rƒq»¿”ë=9¡Í0Yªªy…Ý·¥ñR²ªNLõ6Uª y¯^¡×ÛŒ&}ž'»}†ÚG=GJ¨óÑp)T7í•b1^æý==b'Zqc-ԙŎzÒjÑ™5&r²Ä§¥¹ÑÎÈ]+].Ö+)žêW“Ýæ<1îTÊö¬SǘšI×äQa¨ðë<·‘ln MX¶©.w9Ý!d­Ðöúk²’,ëûA§´M'’ o0´Ô­½Kç1®Q/” Õ^/ßc†ôl”LM©tµ[¬î×\»¿ó¦ k4ïØoE%A¯»Û‰Òi¶Òö¼·M»ô›É‹ae.nzSŽ/•‰Q-Úoª]°*ÒÝÖÛykÈT=ªb¦-¯Ö6“»p‹[BXËr€å/Qœ¼mjQÍ5ËF1%¤ÆUrì$[|»¿7Ëôžfö³Ý@F5m”ªUj妰 íì†ÖÆÖØŒµrmö;Ú #ö&ëau2*e삱Y%öì<3ïvš5³7¥9®zÆ8‘ŸHչѭxÛt¨o£'¤*¢5œ,‡“aG5DnïñæÈ˜ |yRq+J¡—“5‚ÞέÂh˜²Jíz{oìòf¶£ä0r86ÖZãc*©ðËåVÈ` ½ìý¥õÿŸãü×øÏwùüú?z©ÿw"ŒÿÛÎj’è,*”4WÛØdf•MbKW´ôm‹çœM.›œ2¬[ŠVž­ iÌä––(¥•^5ÑIïÓõúfE¯³ kGxn¦c%´LÓæ±WJh>Qw[û ÓàÅEIÙyù¡—ç*©¼·íMÊÑn’VµL‚Ÿ•ûe5e·kSÍÌ{֘ةž•íÎ=—™¹â¢i÷kæx^K§fÊl=&xzFš«Ï{e>YX¦·õš3NÁ SÑ:=ÅLfÌ,ʆ©{ôªLö\jÐØG§n+im›Ñ‰ÝlÚcJ%fc²˜q~/PeÂk™VÖîiIl”NoÓÕ½\6y{Çw7<9ÉKÑÑ8?µSÕVz•_6g$gŒªú.7,îóeaÞá£É²A´˜}ƒÀÚå¡à rœ»ÜöˆÑh¢—ÈEÛr‹)‘-ÎÈæ¨9Ïõ…T×KÊjk! “½]­ÔhE4w[†ÅV©F~ÝÊ÷eºÊ“Ûe½šjùq7×ntµ\ô;œÇ êŽj ]jHÒ ®U)Ó)NnHEÓ‡X)KI¥ä™WI3ú¦éô¤£ÔZLZlˆ™ê¼ªôV«¼ÖÔ)›YölMb³Õ¦°à[bYl—ÛÏZê8+JWY´yͶUÎX§ó)y˜dvõ‚62ÒÛˆÖ¦3¹ž¬åê¹,'ï$¶%è•Þ ˆIÉטmsßîªÅÁ¾·jÈK-!­|¨ñÍ”nÑùY»CÔíî$?ªæl&Y+eÜ™5¨/»6V)Ï©™^ÒíälUõûä¦À`ºý—½ÿ—þÓœÿb~œÿý.Ÿ?@ÿk¹Ký¿(ILÃÚš5V(ïóe0·˜E'Ùh=Lnˆí|¤·-Oî«ýV·¶R£½^o«½õJÏÛýYcÅÊ,O4)=Ɉªµ,—Ä A¹ëN*šÄfëÝ.QÕl_ªOº•Í„T”yÂ.öG2¥.·í9'R¼ÕkMçµb”“½þž×·Ùi´¦8©”5Ç&^£E×ú­9BËŠ.+äF¼Q«÷ê¹GPýuß²´f¢Ôk”aº.ùn†Ì’»¢¶ÄfÂH*òÎQ÷²½U‘–°ÇIkõ—Íÿ¤ÿ<ùŸ?âÿßåóGèÿò¥þ/±R;Ñmväô4ÚS¢êÔ*®b~–ì†XÌ{*°Ée²´·»E£´É6Vs/¹(ª„褒ÅÙÚ´®5›ˆÆxºu]l3ÚUV•¥ž ]*,æý ;r¥^\¶µm*J©¥¤YëåÍ´@ÍDæ‹ú¬×™ŽÇ›r4«`{vc²MUO·¶»E¡\"g:‘If´r–­9çy.µ›t[Tƒ´-Ê(W=²çÍW‹ùfX¹6FlY~êz®:îf×V»4sëbÒXíÊ0ª‡ét†ú&Y³Í]V–ìB­WMŽÝÕ|\­/ø&ÆrJr:Y•—]¶A™äŒ#Å>Åê3»I×űÖÚd=6ÕdÚßê¸Ô¾Ø®±yAJvv¥ÔzïbV—ÚÎ\¢³ÙØÂ¶¥Tì†]sÒëY¿U[¦»y«)åé=¹¢ ¶£Ì£F›ËPûecÝßÓÑWLc•^ßÍ Š+,Zqèh¹|ÒòOŸðåð(,Â@1[ îÒŠ`§~‰$Ÿ=®úÿ¥%rõO€(,à7ÈÍž/ð½|¥ûˆðOÀœÕu¤¶èP ÿ¨j†ŒÇñ˜»³\Åßßà1Ôcð:f¾CŠ¿¿Åc–­îÇ·¸lb8øH¬pÁãqL†Ò š ¾½­Åþ2/ôÿT1ž Ù…ÞßD»]M‚ê(¡¿;à¿wðÇþwüëö¡À™­Á‰mƒ!Tnˆ{]1nÜÛ{’ hèâ77ü7 .U€ðøˆ¸¢C-Šã‘[‘{<Ÿ›šq!¶'¨mäïªÌ€•¹ï´-J²^À¼‰Ü•Dq’ÅÆýµ}~-÷Ù¹¨ªy#mX@ ¶ñ€ÛŠëÙNÞãµ7©Û¾Æ~„  ÛlñK1LÍž@çN¡s䚸lj(ê*B3 ÈœP,œR,aé6y[<…-&°É–>…MžÂÏ[Š!¹9Š˜ö€¿;áà;íé( À™½ý–U_ª~,× ï÷ŠÜS®ÕìUšýL¯Òj>eǽÏž°„]š ö-àåmä6Àd6rEMÉ”eðÆy ÖI ΘãüíÈÀ¾q¨ä%*øz@P5Ûq!šb™~ù;ÈŸ-ú‡ þEH¨>ܾº"]èÏ’ÁôŽmÑÑÜ?ÊøŠý ŸÙÿÌüïïóyÕþG6¬odÒ€«¶¹ôílSrNŒmS ÌéÐäÁÜæ·¬,É´ ¯ŒFs ½Ng1K€wyýÀÆCƒÚóÿšøØúòPKÂF`~ó@åçv·o0ÞF ­ÛÚe¾©ÙÐ^ôísßl€6î`Ë ¥‰ÿ!ñ«›åÂU–4ec.´ƒÄG‡Ï-LÁ˜Ø‘ðé'î@#|ø6>Õ\0áMd®†å'Uà€NP¤ s,õé0õ8†ÌÏ°à„¾ß]î—gmì°Rdáóý\®Àó'Úàbþ¯ý€ÿ+c_›ÿDÿK,•Ë%A²ýÃþû.ŸãüZß2ùÈ‹ùñùw?Áü_š² ù„i@ßÚ[ ‰?°Ž¯Îÿþ°è“©$I£û0ÿ™?° ¯~þâóÿÕñ‡+ËTÇ×ö çãŸÆàýÿ=>`”yð€ñ5ðx…g2ñcAøÿïóÅùï[–ÿq_›ÿtòBÿSÃþÈÿÿ.Ÿð‡TMW0ÁsÍeø7’ü¦»KA3âÐ0t…¥›‘Ø!ô|‹Ã ç„Oº9 ¿Î_âšA¡Šù˜®‰®iê˜ é¦$èñe ›Aïâ&ü_œƒøUGÿàKÂîþœ— üqÇ•ü=ôÇ‚͗e2q‰ÿ¯ùûgÿ¼:ÿ3ý^¹Õåÿˆ:¾ºþ_Î2àÌÿïñùy±0aaÿœ‚ù®Ç%sù ~S‹×Péëqßÿ?>¯ÎÿÜ ÆÏëæô?¯ã«óÿÒÿ£€Ið#þó]>¯Ž¿wÖÿ˜(Àï÷ÿS,ûÃÿÿ.Ÿ×ç?4Ëêšã:ÿq&èWæ? €‹ùOþ˜ÿß郡yþ´Ô mé-Ÿleåi¶"ß ]¾ÒjâTœ»Å~ÂÃr´½ªl-Óv_ñ—qñSä8 ·1͹"¹7áÂs·h¿ç¦ÉÕ2¥ßÜž–<…$"lœŒÓ‘¾Ïžr­F¶Òôwm £v½ážråB®†·G°n³þ”áŸê•fá©Wè6 N«‚„ô¯~»¨ñ3¨JSoü w¥‹¦-)p¯FÐ7ÂÎÁÃ<¸æÎðaƒûÖ7¹F¦êžŠõL‰Ç™hGÃwD,ù!âïp;®­Ó›n¡TáÝB»žÉŽ0ð[2‚_ÒŠ\ývQô‘ƒÉ7]Уo@Ã!}„jÈ Ñ·$ql}«Ñ®Ô ݧ ÿTjöspƒëÛIdž‚®G¾B2wAñ½gÔ‚†‚11$Ý“•]’bŠ£¯·‡79¸}–ãMŒWÎ$çâmÅ(¾ðªèÌ>,l¡Î»xÉï–¢©¿øª·³^ÛŸ´£üЬ6-€¦ h:ÚÖ{RúO ¢rú`¼œž2õz+—¹ :OÐ'áâ³Sȧ²/Ĩ¨ÝmõZ½qHù2 Ç•øâPR ßËgº¥ÌWñ4Ã=Ç«4{°öWÀs~^¯d_‡sÁAðx·Ò,ñ_†?#á_ß9 W[*NÈ:~Ì?õ*Âë°Š3Œ/"€á?¯òó5 Ïc/Ÿô¡ß¬.Á!¹'ˆÓ ÌVâ+“B«øxþü½nÓ Þj–žC83 ¥C8ó½— îm((oC^¿UuSÁA+sOåB&´$”é0„hÜæo¿Û- á[ýn®ð”¯t?'[J¢AhÊÆ5¿Ä€*½;ö1BèßWÏau‰[Ò·ÕsŠÿ³Õ¬OÍS˜ß }Êí7!œ44XÊžønŽÇ!sleêO³àÁlG9>*†<•7ÃŶmÚqééð¨lÝã\±N_)€?:SÃ;yê:<8;öÇg×Öǧ S ¤äœÔg™Ž¶={ ž!Ïüinˆ¦Ìc ^ ޤiÁw˜étüJ²O¢rö¨+®JSg¯Á£>*žô4àÌ5'øª9&Ç1é'2$PôÅsò♹$À^¤.ž¹‹çô%’¸l#yYpÙ(2ùŒs žpÄÝœ<,Âáµé¡7S‘ä:lÉÂÔ¸§L²HŠ9ðÍgð0óN¹<Ÿò“g¨¦.?-”ÝåXNú/ž•S¯”Ó~9œµ‚,?%Ï ;L|4Ã9ç'‚Ÿ½?)ž)‚¬Ø7¡túavV_šÏpÂÌNÐeSºÿ'2í üÏôµ[þ„@ÝçZy´f· Ý^®¼:‚+ÜQW<×jÁ↗ÁòÐꎭ˜É7 ÇZoŠÀ¬â¿Y»« æÆf3‘°S_¹þˆñý•?¯Çþ¸C`_Žÿ,•d.ãdêÇù¯ïòùéox˜ö>´ËRl?‡ÚÛ ÎRÉ&: ä@W^2~“ð˜y S7Qö``<‚Ñ£b$+I¾t¿—ƒ¹‰9ÓÚÙÚtæâ7¹[œL§Ó1JãE[QpÞTÝ`+ÀÝUÐSºÇ»GÍÒ\W1pq‡÷Ì%޳ͥ²ÃvÑßJ; ‘´q€/O/€¯*¤ïôßâ;ÓÃ%ÁÀm:‘¶&z®óSA— ß`&hêт΢„UWA'ÜücfÀ“ÅKè$„Ž·=Q×$¼®IŠá(¸j†%ÎL‘A{ƒ¼Ø×zøW4th.`L´M¸\ØJ;8ã/‚±ÃuÁ=‚¾ÜÕcdtDÔ=3-Êsa‡Âqž£¨ž~’k]|X‹N¿‡gšc|˜év3ÍÞø-ŠoÀdTe­ø”´¥¥k€0è„-n÷Û(tse€‘ÉVê•Þ¶¿Xé5 <[]<ƒ·3`¡Ëõë™.ÞîwÛ-¾Çq^‚G÷¾ÀL à˜¬¸‚¦;~ŸÇ`ü€kãé2>Ö GIÑÖ ]‚ŸUûÕA‚ìDÞŠà¸', «¨PÌïq4ðç™ëZ‰Äf³‰ÃUß´§ ݧá$~Aù¶TëXФj”­¤  Óœ_oÃ=<ìÆ8‘BÔèè 9€÷:#bp€Ô‹Òˆ}÷IS˜¹Òˆg<ׄP÷Hî—ÂÜ•ƒ|2êÀLêC[P'Ì£J!®Œ¶Çõ ^†Ì;d£€¿0¶ÕFØè•Ýã–®À³‹¶ÈH§dÙÏàKLÀþpü(QŽô%¸À}…ð|h Šð †þx]Ãö ÜP@ýŽ%H :Z²Ò eŒ ƒÚ†ÏQôß°(6„ŽgºÀ ñ9d£ ^Ãw˜ÄàøñPSê ›Xá”ÓUP•€kÂT‰c•"ÿÁ#‘7W†Á0È¡'0,ëGØHz:ùÙéèLùýiNL{ ¢ð+?½­¹‚‡SqtdvËqál§c㋲:®Ÿ“zgàdzPðj†lnRpâPîQf¿G ™„*…ºöž”C 4[ [nP¿¹\ùW€¬B»Åë™ÉøÌ l¤t ˜y%v\ôøæû ˜¨°àñŠßÐÙÖ+_Ž áLàŸðÄ»¿%>ÜÝ‚ES‡3‚ÜûCjBþô›9TÈ“ f…ø'iõE޾؛Ÿ ƒ5À•C·;6Á1aŸã¢/Îöµé£‡NÄœ°aop¼¬ôáÝ-üêwÀVtLØ/|ûþÍKÃJó9 X½6>¥ò9 PŽ茭ß=U ¾ù…0÷WÔ=jàÝý±ôÞ§ i æ%ügÄõÒRƉ\pØg}ðü‹)øµ“ˆ¼¿‰ß½¿¥wW‰÷dâúcHÍïÃ9¹ÝÆcË€X>!9`ÃÞáÂyó5d¿÷'AeèùóafIзrfu8ãá1c¸hAY”t\7ÍRj¾kˆNªx½Ò¬ ;Ç…ô\tÑQí AÄž‚ãÒHÎ`òǫ@;Gz Ðü™©BãåÑ€'¡°ú>AÅvþÏðëõÛkÌ? ÏsC5ö ¿mï‚CÔ/¤žþ»rfÜ@úÇ?nÂ,€PR‰Ëº³¿N¹¶g&¨ÿŒz‰¼mEX`'ç0jgõüÎ:~}‹p„o¬àÿr èôù%/O¤ÌH9‚ÿíÔÏÅññ¤õ€Ú™èlGLŽC+<#Ïá…áöRý:ìxððÒQrBì@v •äxKx‰€$Xè'0Ášp"ûPœÐØ?>\| N Gá9ðÕ]T÷œ› à}=L±PA’H'ÆL¤lŽÖ“‚/‘[Œé uÕöŒCG)v}è4ôx@{Ðÿq ø>oüúHøÅ¯„ÂC}~7½‹¿3[Þ‰ÙïæÕrAP‘ð<‰³E×à±¢¨¼ÃKtûÛƒºókúÝd•¯“Ej4PÒ±ÊíYW_¨?¬y§UNê9ÔáS tþ%¥ßÈŸb•Ï¿›œþBZ,dà )¤m_¢sÒ¬|Ø*ýó·©¿Þ˜ú¡1>äóêêAuõÏG0ÿ8ü­_š'ª¥;|?ÔƒÕÌ“G„ J>#p¨4®@;€™‚Ôôý5ªL,U¦HQLtÅÅ›P=G®BÜ@J^_‡® …TÒ›  †Ž|´sþ|ð «üžqŸ|Îû»8˜¤pÖårè´Ýú£‘?¥Ü‡hôeÑ#/Ç7Ö³^8@Ù§oY>ývýþ‚ÕÎÿ<·²Uô×ç¥ðZ+^”ýWò-l¹0”‚õɇ8¬#gjõdÎ혓¡‚7u-Î C“n2ù­9}^ ;lÀjƒÔ4v¢˜qüúÚOgm=âošáJ\²0\®¯x)¢[×Ç<ÿo/‘àä/ÿ :þm5ØÑ6ŒÍ÷þ_“¾Ÿ~Ð:¸ (TõïüJ>À/'óow[¥n¦¿ËtKü û7f]ei®Q Ö0*Xß|/R-5AW£º}÷Ãà?ØlœñƒuATÁ_BçFM]`‰Œ¨Î|o ¿®4ù^¦^‡Á.rñ¿âàÇ1ÈþÃp]ýŠGkFkŒ–/á]…#/S ˜mïïß@_%]ës,CÁ="ö ’_ôƳâ×np´ˆ‚*ü+Läº`’ÿ -d¯|ÉZ l•ƒ¥r6à+©òΛøFAYH’>ÐÆk?. Ð=[t€hèsÃ&4kT`vø½¿¢^rcOµ©ybœ¯öÍASÝÁ]½7RxóL½èG„Û¯Úé'ÿ Ò{Ø™ïfüÍcjÆqÔ~òƒ„×Aˆ]’ã(~ Ô€<ö‡ (EX®ksóçà<`øºŠm€„Ùd(À´w+@1CA+Ð:¨ôPìÖÁ§‹æ¨O€ZOÆß¢œŒºéÀyª%óž¡+a˜‘¸²áOÜg}€:òM˜ì;¤øaNȱAÀñI˜‹ø©ÊLJ¿Ð„jÉTÚJ “ŽíAËÁ{Ùâ˜ä ÐÇ@íKÁ àõóé_ñ»wïß'>|úôOï„Ø>›|x@ω÷qé*7a<†»É€ÒâxKtaš¦ 4< d^ÃÙÿ}¸ÆÃÈžb8p~!þÆÂ¢£Áes!d‡x†EÁÄ@™p<xs‹B€ŽT´é‡ÑCÝ ¯­CóÌç  '…áz¸€¿K$&Ž¿À{ØlA×Ý×áq ö݆2Ï<å Ý| ;ûééÓôúc\ÆÀ ˆ¶§·š9^ÁŒà¿$de0<]Ç©_þAžh­Ð õ§’®(XÒÑdú /VFÂ/ï€ZKÖT"&ƒJ?m|¡éº¦…»Òæ×‹\I wãüØKXz¶æ:¼y¬î8…“ ë®Ü4è‹TCÒ4ô#X°3ç;àÊ¡{2ëñlæ/×'¯Â˜¢ŸQüÍø,ΟQ=yõåÓ×êpÎø}>Žæ¯f C°·ux^¶†îÜzEKSòŒœé˜¿‚BgÓ€Ía¸H<à¼Óp-èø ˱ y]olÍUb°jTÖ ˜ùCGýà~Óñ)†VúK©cé-î‡8ÐÛÓ·‡Ÿ7xÒ‹@UqˆýD/BF4>@¬–¿õmø3ð¾×Ï ÿ 2åñã‡.0'R)Øœãý¯‘+!!Mý‹_#·§õ|<æ«þ…«‘c‰–¼Å?ãŸ>¡º ÀNÏ·>4hÀ±š««Xð¾»lì-$z{Jô ?vuõeDÈn4¥‡‚ w•A€ùŽÀL“P$T9•4¿O*<Ñ`jÀÇŸ5@ì“ê(gp‡Ùo^H(ÔL8Ù[.w°m ôŽ|0Ö‘+T—ðà‹~±=ø øl%žÎ§û«`ŽÜƒb´ÐÜßßu(4)¶oA{ðC o±7‡ Ä% Ÿ‚ÿ%.Ké4nŽƒÙvs%áh/ïY‹¤Û˰)&"­{Ú:Ð1)rXüü7øjbø7ÔÅÛÈY§`Lq{BõŒ¤a>…jñ åþ iþÈýýÝíe cл;ôòü]À½p› ‡vÉ…Àß½w¸u¨(²¯ÁÐolxaà[ÀÛ;à_-Ýâ·p³Ã@gàáfù<ÕàòŒb 7Ó™°×þi˜RÜöÜ)(Ž+²­ªdŒàbTò.T7a06\1Pu¯Ì”{¼Bùr! ’Cd9Âb´jõ›™Fá©‘É•+ÍT ~ÆçòbÎú„ŸCzÆÂ07F€ß-Ô þß~ ?„<ÇçÇ|¯Ð8¢;èGüò=¸Ìàˆ¿~­ú2ÄWæ·SêŸÑ/ÌÔáïr}v2ü¥lþæ  ¯.H 5 d00ÑQ☥I |ªk¢„¶"‡ÐR„!€Ã“ ÔÄL@Ùר›z%›{–:†½ÁküêRòà®$Ü»ZÅ“ H‡îñÏ*ÐG@‘9ñÙ/°ø°JÞ<=õs°‚§§Û &O‚ P(Ê„“5Å…oŽa ‚…8‡–‚x[öngû­þxun뎚æd4€É9µ`*ý Òº>l|݃;…i¶‡mæp å¨ÃùMyQ@•Å|ŸŸ©ºâ =*ä lO0Ãâ—ˆï燋?<òy,/ʈ„¦ûÝCSqÁ~¸{ð…ÂÄo Ñ‘oqŠŠë„!Ÿ«S°,´X$·p‹KšÁíN;{ó“ï^žªëYp·¿‹ÝÅ Å]½»?yLϽ»‡x'0’©ªwÈ<Þ‡©ãAƒQ ƒO0=â;Àt“f¾þ*Ô‹§•ÜáÔzGÑá–J·€Bx¾‰ç;DaHöZ>4.¾šìïæ/3ª‰š®¹;ÔHýÒ L®¹Ë“`hÎùZ~AŠÅ+‚bÄw$÷å cF¡4ÉÓÌ1 „Hvøˆ²Ïr¨ßøÝ“4¸õî­k(2 4EÔ ¦½äêÿ/4jf›øXÃ`ú<ÁãöæLÌž2À=j%ë||ÂßûëdÂêü* û üÝšo€Ck}ÐæÛA2Ã¥ø£vù{©ˆP0QWÑc, rȺ¥wg0Ï œ­èGg¦¿"ž‚¼Áœat媇i2oÞ@¶¤;yRú—òþb¾#béïoãwW÷ïIczóFA÷—| %Ã'¿{£ˆïo ÑÛ|õlÕç«ß|¢ŸÃæc +~„~¡²³ûÙ"ÐìPð `oÃð!_ÿÂp¦ I‚¶ÌÉpÒðçúAà7`Ρ({`œ¨\DnÑ4Íd+ño” Iè é<ôÖIáëOͱŸ–,·ød84µø„áî“f¬ôi-l!ök‹´ÑÈ<=Ö?=±x¶ÖÄÎf˜oÞ+MlâBß8zãG2Z0¬ \SÜs¡v‚'" ç üÑB®U,~Ô¯·0–$Ä¡2¹9ªâÛøX×ÿéÿuÚß {",§Œ ^„B‘?æÃ”ýÔùÝclBûñÚIüK9LŽDLD-ñÖI(âU"q gš¨}ÛD‹\A‚ðÔÊ›gÒËÉCAb¿é"˜0~ž´x0'§D•ª*èGV`*…îG( _g0Pæ€öÀDÛÖÀ Ö¤²¹QÖI¶ ³!4Ä](¶œ©0zvÚ»ÇN›@ €ôÀ#\rŽ‚VMO " Âô>œ5Ž»ÓýX/ú1Ws½„3;ñßï>€)×õúrè÷çÜ-•³cKïbOâw`À`òŸ=ò8ðÈ{êr4x´£k÷Ñ>±F¦Ù/frðgŸ»±Z¡Û,ÔcðÒ†L^:äIAjž¿cÅ¡%vÆ>Ä xŸ'ºDH/WsI?üN˜‰ç»Û¿òð9võ›é…p|ÒÆO#”wY Œÿ40Ì^Z‰¡^>œ <ž@‡»^—ìPÇDÉÿËF mÍï·"€ÿöf˜诵£®‰Šíî~OSÀ¢Àß{St¿Žoh²X˜Ç¦¼DúHÂ~IÞÔ5ù[i:ø«D¼Y–ôÐÐì ºP'¶%È-5ûZøœÎ«íû6‚<´[·ßØazN@Э™ðÐâ‹d@Â"Õé¤LÆ ¨y.¼û£ ¯Ü²ý„ea³À¯󷬮èÏס¦¹câwÿä‘F¨­2’œÀ Þv'¬îOLb˱¡BÆÊ?Ö‚¦#-m¢ƒ¯ Ë Ù4=Ûc“|Ù“¬d:ÍÀtÑc‚¯òàBÜ4àÖ‡ˆ¶g~sdaz@0Ž KñH h=´PíüÛô¦3?‡ž‰Všâç#û!|ß„gÁJ°q¨ÂL½]Î<…ô”a¯}Ó4Xþ…¶ÊüáÆƒƒ¬ÁFiÇý­\"­9z çõW«HaÄo(’`“ðWßœ«“G¿®pÙ‚ÀqæÛÁë¹L@œMÀ¹oªU@~¡eÍœÁÇÙ#ó%öeœvîU$K.±R߆•:ÅB5Q_ìÏY-¬_ õåþ°çuĹ\6Àz½i‹»ÀÊÔ¬ìïÁʬüïÀJg¤xJ±oéSLÄ ú‹ü;ãE*ž0¾TG*}æ„eð¶7޶£ãÿZ4 ¤rÜà\`¾\ö^T5E—ñÓdŽgt‰Th0ëÚÖàv%ð§`^¶Œa¡’q ZYüÕ3*‚Ü”0fmMPÌtÔo°?ÿõ®=è>ø¨kŸ$—/KåJµVo4[íN—ïõÃÑx‚ ¢$+êt¦ÍúÒ0­•í¸Þz³Ýí?Âvv„)Œ*=”) ôº ãdp9 Öamjð® ÏÖLžã1b`A1ý­tËž¿ú¡íº+àù;´×8¬Š‡Í·p}ÌÀÖÙຈ§f/ òz@aÃå¸×^1€•«mqàŸý8á„àmh@a£¨Xˆ†™\*¨ µå°è¿£ˆÄ7lÍoæ¹)€4óI?â¾=C…£¾Ñ Ã¥ãÌ9rf©M…»‡~³2zòÃOƒ`2ÍèåM‘³N^š2ï2ÂHæ]ËüðŽw>|“Q#@ ÓyF«±ü`ÚÖìwÑZBŒç´Z|‚N§4:EÄ4q‰ oÅÏF¹ÄÚ'SÐ@8ûõÒTž×‘$ˆ—ÌKT‹^^ØmÀêVøÜÝGÔ€ú Úš#{ðXzA{€ÍdÄ|/–0€h™ÎC@úUØâ.ˆ†Üó¡ÏÉð]êW‚|(WbýQ¢ÑnC\ ø.G€îž‡$g–%q26N5põÀ_o»´¬sºÁfäÛö. Ú¨ðÏŸùFû)Ÿ‹…Åhâ EùçÆ’5‡ ãKPŸ Æ—šŽßXˆÅ8žY(·È³ sQ5d-6+õBü¸7ùx“ðwÞüÝ»ó]&¸U)¸îa.Z¿ñ±ð/œ 4†~^AA:el êÕƒ ¿=HÎ%ùµ}1Õò]þWhõÍRö(¦0øÓ$=flÙWÐüYç7u÷‚¼>¼ÒÍ ËCoâãáÖè÷ǃ ‰ª»ÅŸU:¦½ñ·^ý6ÀY´}à=ã\ŸMi8m€ƒ'¡¤^^¤>„Hþÿpx¸'ýu<#YêžËÃf‚þ‡TqwZ\#Ù2uåîõšÖ\³Æ±À­Íx¶i ýÑ¡rP¼UŒ‹ò£ÚãX¸|è­÷â×pÞ·€üEÏ^ ñòý¦“€õ÷Zý|¿Ó=V˜–äǶ‘Ëœõ®li‚H¸w‰Ž U¼‡2àn‘ðFlŸžêm6ùôä˜$®k %C@°¸»u!°1í…ƒêBÛ\‡cо–x‡_f/ü힥ðá4Kîí#†_ÿ¤©À"Í–2›„‡À`q…Fw¥‡¸”]û›¯×·8Úøys“˵Ú=þ1ùJ\ôaÇ  ø‡Þüä›|°Dß9khã ï÷Ù7‘düµILÿŒ9 ßDŽEób‹G¯Wà5OwŸøäK±˜0[â2ÜR,Áö7^&ªËžÆ!0ž›ì3ácþxE¬ ÏÂ?ë»g˜ÎW;K<½Ôkúîù€ Ìå/ë&×M°P¡hÜ!zÌZM WxBq¥ÄÒtå‹4á]û抹'ïéÛÏ×çë>p,qðLCú¹KÿøÇEê }¸pÐNF ö÷6´ ¾ÖËÃ>”ÖÛ_AóûÌ ôœ™õœÕ>9ðÒR¶ßÂn«ÇÑ\ÏϵDiÙZ³ç+r]s]ÝOÖGljý´îpçÇ?uìS ö`Öš (ÁLt¸¡³h›“ïþþMjDpáTs#pÏ.|P"À<á‡ìžÈޱ±ýÈx`àÜ;9 œ=àµw!F`·@kx}Ì}GÏ‘àLM{4Þᜉ,LEÐÎk&£GXUÑϸñ/*ŽôZ|—ÐKâñßzԘϦ#`sÝ,p"Ãîž3YþÕŠ€6 Hú¹Èˆ9 ˜›k¢´%]YúùÚ?ß)ÀÑ‚tü´öé…âÞ “½A„¯8)îîywÿ•ÚîTA2z^ß±ð¤ÆcáRpH„‹Ú¢Ӻ²—ªBᄀª™ ƒ%ᬪ°è´ª°ì¥ªÐ»oáâ9ûÎ+x™ôqCä«,àPo¸ÀÈ|ÆwËÒ•XðöËtçû%R¡_þ;¨ù~z€žµI³P4ž€ƒ—ŒÓ/áõë½neô"¦§÷ô+Vø 3 iÜY Ûo¦Añ«û­ãD%éãsHPÒ5xiŒ[šÚ‚5‹¢¯P†]Al¿QióHƒØyÓù‚wnP¾‘ÅŸÆQä! ò`8K––)ð?vÌ‹„'NÌøìOÜ¡µ­éê ÚqM´ßr—æ;ÌEà]¯ð›`O¥{£³ñ;ð}ýîÃ-þ$AA}0p‹‡hoÏÐÞ"4?Uò$+¿WÑ>A üôC1dM!{{ wÈÇm”®8@WÍøÀo"H>Ð?~HæïŒ0¼7"~³Þ‘nïú†¸}{LÛ|™ü ›ü*ùµü7Éó+IßÂlµ0çôäÍ×ê“æª þ'snb$|ûݹôæÂ5 ÓØYªÿøºÔ >Á›åƒ‰Ï̺ÃvÉ÷7(a榓ùûj:~VÃÄ}üxV áÇÃ'ðÁÙ«·øçS-pÂŽ/O´kxm¨¿™ÑÓ¹¢ ÕÚ2€‹¡‚¥°}… ´é‡v‹=#$´èMx<ð© Li4ËOZÂ;¨ŽÝ×Úø­ 2ð¦F_£ã`Љ+In”èR§ª—CK”¶Þ6õ` P_Ésœ__ˆ|XÀ§éÒ_ÀºX2Mk5ä©îþÿ„çK ÁÁ]NáߪËL%x-·„RÂC‡§Ýmå <ßê>¾¥ W À‡YJGþÎÜ×!H½9 l¼ƒÇ2ÝRáðc-•f¯Ð-fr…Ï[ˆú û¤èêÖ'ÿ>¼•ó«¸[XÛI âÈHyƒDŸÏ}x=…¥&UëP‚Û'ƒüZáØ×k¹ŒÜ68îî!oêðV‡£õ8èÒg’ ûï^D ÉN(Šî 8À ‚05RýVñå}²(ôß”…k›`š —„ûàõà…V»!ÖK5œ$4%úçy^05ˆ—ªÃoüâhß+CÑòs£³riÿ ÍéLµ˜ÌŸo CL/㿟‡LeôëÃ;’ú'¨[ä#"œŠSqº›þ €+Õí%Ú9X†D€Ûh¡xµºë{Xá‘|ª­´“Ëá3àj£I˜¢;ˆŸN›Á2r}¼´ý:¼†mºöã´w »p¾ÁÄ9hÓETW`“'ÐhFǶøAy˜ÚXS÷°éQÉ6O'&úxØôA.S#ã¯Ì¥Wcþ´8jÏ<Øl íi‚f£x§h:4Åø­ÌÃD`¾rý×2’éË&雓“9ð—}¡–Ô)<žƒrÅ5ãFlÞüÿAà¿==¡õéÉ’nnÑ+Ô£d¼ycy®s9Ý)ݧÔ1þ÷Àât¿ÁêyÉTùxÌ•~ó‚rÌ^äÚ;BgÍ Ò˜Ñ£#ÿ“¿“ÿ/Ožï =x®…ï9~—dؼ‹Ê LsªäO“ªt´åà‰ÇCXñ')e¾õG®AÂ྆+G™k »§ô× @Š~;Vùùp o·†…îõ« €8(þî÷ñl¡ò@"ü?›¡º£[Ö—ç§«¯$8BqÛUൾþ . ¼€NÆŠ'¥AG68 ßü½J‰ÿt†‡]úÆÉ}¢ÁÎÇÿB‡‰KÛl?… ø!ŒŸ«eäš'_¢p÷"þ¹6R}­ÚQ²ú³ž¥Ð@\`bûiæ¾þdÿhékªÿr!ð_æáPªF|†e[üK¼ÅÀ¨_ð,ß%¨_ â!oÅùø³è B{a•Oš‰wtòX'AÝ «düyf=_³gXùƒ„â/Т^¡õlÄB\6ÅAôr;Ö{_n÷Gþø¦m˜ø;"nƼ|”ðºGµÒ䝸™T”Ûþ<õCʇü³“îÀŸ/.@a_ŽÔ­¯ÜÏ'ûTqÑ%‡ýEo@z’,ï)¼üåã3p>‡´ÒáwÌÏö6Bþ™‰'Qs—Iø§€­Þã_"2ï¼5÷›Ÿ¡èÛ üÔÈ0Ü?AÐÎ<Á8ùDœ p—ä ÿ—½7mlÛH†÷«ù+z)ÍRâð¦DItœŒ,Ñ6w¬ã%Ç~,GIPD êH”ÿþÖÑÝh$¥Ø3³û¼£Ì˜@£»ú®®ª®£h6b“cî £Hƒêxa´Ùè¾j3€DhfõJM¶ðck+õñN,Ry¯ Z­¢^«4¨J!‚»À·6l$/œ—pè¾)ŸOÌþB†æu9ƒT KjÄíì'nd8åïc©*ô3Ñ:‘¸ Wíï”Ñ0;ޝMÙ4òx†Ã B‹GXe©¬8(Jâ‚å%¢B‚JëJ©Þ“]œØ€%Fs_nm´—ØÈË% ôû1x™] ž(P_^[{õ˜ÄZŒãÂ"µ™A©nÖ‹Ë-^1gk6’Ù¦‰lÐ kî†Él‰\D/$%ùê.ê‰X¹K êÉÌlCjèÿPk<jÊÓ«E¤©à¤µ9 rAF~²e†¼™[I»ÓP–bµIaejd—,ب9i]¨ á‘7žÍï‹dí`)•iÒ¦¬«¥¯ éZ½3I0Íe'õXA@@ ¤v®— RÁ‰ «HèX ‹¼;%¿=‘ßԛ؀ÈIA[‚QÐÖã®8Q‰¹dUù^}Ÿ‡z½Òh.€“@=ܧ°b4 OK°¤Õ©Tz\²¤Òš6JφìOBLb•<b*óãµµ¤TÓ1…‰›¤r²ñ߈b‰1` kmÖ¶kEVûT䟺ÝɹIÝ2,ÍŸpÍPñe€v¿!émd(ÙÏÊ.~Œ—;¨Ûrõž/'Ðrœ^£TÌ]ý×Ëü==ÉÕ zðÐ+ÍCÀ&Œ#`1-×ò¯¬Á€‰"ƒÐ+±ÚpKò—ø‡äh4·V·óDýjn-îXs÷ ÐvcÐvC{BÓb-[Ò°³ýOÅOå£ÓvlÆ&³òÀ·`É8·Å1“­Ë ñëÕÊGôó‚þ£°EÌüeµ]æ^˜"Tôž"_nR|Õèær=TŽUŽUc@žÐ·ó^¼[á^í›Ûy³®ìKÍ&7_UGïC=^Gp[ÿ Û®ƒ“^u2‹iýäém¬ý³?[Å›fís­þ%aDÆ»áÍŽ¶;1>@+Þ\ü70“t÷¬Õ—'_gj¨`ÂQ«Aξd|ªL5«J`”žâÆC(Eh©€böûòhþ ðÿór”mÿ#zIßÛµÔˆnUâcú¯ïÿ7©1>t¬»ü'Œû×½Ãj~¥9‹JÒX»ØÞötx):“¾ûê K¥Ùq¸³B_]4ªŠkbkw$+eÁXHU<ê8'ЬP*a¿'òþùC[­ºÎF&ºM¨ íZÍ¥–7ØíÍÏZh^Ô0Ó•-ü´ê¼':Ç<_>ù*zÂO†Uom­(Ka2[)CZŽÉþ„¢ÍFª(lƒU%DKuõŽÍ†› ¥„¢1±äÔ‘‡Ây6dFrB: íË3›õœ®ê×,£SÒ*Û°I–ÔkV›^%¤ÓYKgMhEZ¶s$RCgëïríéÜ™ÚX\vŽZ[ç‹õkèîû‚.Ï`ZQ~nnmÔ¥Œ½÷¶ y¥’w3“Q{[+Šd®›ÄÙmÅ-Ëuq9Yeœ„Í=4ä‡w>ùGãwC ëGÆ(®3eع™o—ñ>F=y#±þ_çâ6x%2áGÏ7ßÇÔ¸Qvú‰…——‹ÕXežÂ)„U#”DÊÃo&&&F­¯,$5Ë@pRó òϘ]Ò·g™æ­éâ_k:Xl¿=¾Ðú‘*6 O¸¬4Óƒºô¹\ý‚Ž!K…Ÿu»ÖGWµ¬jV©* f´ªZÔíòh*OB´â°™¤s’såênÕoŽtd¹ÓýéóOÕ/C…I«üçöuöÛ_òøLvIðüó3?5¤Ò‘3]ᘊ¡”K*TT…UIÞ–ŸD§°‹½Ì–H`W};/áÖEgúššÈ“–Y ¿+½ðêO(‡&Uò«Ö–~˜¤ë¥ïDµ‹ª  ÊD¾óa¯§—º2‚<­ÍEy” Óƒ}̵ÂWæÚY™«ó¡µ°QFžEÒˆ Ón1³:íˆ)+¯ÿËpŽÑÊ3ß¹µB»ŒŽªP³FFo‘gOwX ¼JÝpÒ°þ^„פN(Õ¸¿Ð;úb•§̻?ˆfÀüÝÿF‹nÄ -¸-‰n¥öÏŽ®:û¯»OtˆŠµ˜.Q£â±{Ègu@‹,ã­:=è]}xsú4?­É6ÉÂiíî§µ =—¦u½Ÿ^vž÷ÊMòûÙ;?9]¹‚Лe@Añ6»é\ ³fÀ\2e[µ£U¾,>êaŠz* åêÏHk¢7Ò/éô-H9)¥¡7V4Ë ¹úðNV~C)·éh¸8bqPô+8TzÊ•9©?HÂ*Iг ü¼læ´‹B:äØþ6>O&yo bëM§¾÷  ‹7òÀ‹Oçê}ß̰†&º‚zoàÌÆC‘c­‡^;vŸO¿ìïôð¿ßžžªy…Ù  ©™ ˆòÇG÷Ôœ¶¡Vñ.f®õ kdcèe+æ à s¥Ýµ¶É'jÄ+÷žúè¢wŽîè´ =äµ3òJd`ÔdÌ™§c /ÐÝR ý3 éÛÃבïXö÷ ”°3Œ¢~(Ç¢–ø^”I4¥I:yg»èœÁËh—€5“ÞŒ€%,g‰ Igì^ÖÙmÕè^Ø•:¿1œÕY†^4(3lÑaÔ 1À(¬ï¸ÉýCP[C÷´Ý½¡µµ `2ñ$Ń—Õ|p‚з̖Ð`¯‰ýáPR”ú›ŒÆpˆqÁ†GDvS s˜}"´Ì†,Ã×hÌs!ƒæ Hn¼‚,¶λñà/nË >‘«*ŸÓæÅµzoýkÕû°º #ŸC|Llð]ŸÄL”—B8‚Z~¨µËc»ÒL˜7«_¦.MZÒ Ì‡ÏÛtvS1>r|ü¡µkˆå ìÐtSÐÂ8m®Cš?ü@kª©ÁyÞd åý¬ÄR1+µOÝbO÷FÂîv<¡÷÷ý­DÊa¯Ox÷6‘°³]«AïOzt` Æ@ ;W ›í ÷ÂxÈLã¸ýü“øRü¯ôå¥ÃCF—µ$8âb*nYÒÒØQÇ7oÑdà9Wž|ÉÓ4×çVýaˆG—ÕÀv×X¿î|éi•9´äšthgžÇq(gGp\Á¾²¦!*Sp‚iæaÁ^÷YE’¥€—Xô‹9EšG‘›“¿Ðßf‹ :ÂÝêi¢ä´s|Þ½8bL[dÿpÀ‰CfñóðZþ©ŽÅ»£S¼8¨µIæª`€Ð ‘±X¢ |wæ ûÑaå¨òÚòtüÛ`pd9nåÀžó òöäÃ÷&;§z²Ç1±­Ší7ç™^zƒî¯ßÚ¾åÅ;ûΆzÇøó7¼Ñ›XþV€­ø¾¢Ô59 ·¶wØt¼o‡w¯ÉÆpĽþ ÊÃ_”Þžºc’9³Û‹ÿÅ›ØÖtô·àn8¨È’جŠI_/Hlý-n’0O­¹[yëC»ÿ–3½&$üÛt¬¡g‚NŽA "¢Ãb{¿\G<¯ ã1µï‚bû¸óc¯…_0vœ7}(c/H„‹9Cr‘_Q­¥vz¶Ùž|ê)Ÿ³¢[FoÔÏ0çÌ­LíáÉ$j¤/Â7¦gG̺Œ]HoÂ×ökï¾ýÚŽ\4â³vCG"n+’ÆO¬!±¯¯í’8== Ž•ŽíÛð¿ä½¶'\Z|G&®7]RÏhVp,«‚˜SP#ðI¾vÔw–s3W`éå™pÇX&ó†)ËÔIÎ(ÙûXÞj÷.N;gåø‚î·x™Ìg¶¿jÅ”íP¶Ÿ¥µJëYPv@Ùy”ÝPvŸålÿYpö: Yû鈺2blÍoøu3Ï{—9VY3eAJ+Í= ä¡åß9Ê…|Ê>*Šˆõø(’_åJÏ-Óû” ®‰¢¨î*KǬΓ5$=4åä:Ö/íâZZqJÛ§²k‹zM$¢=7èÑ‹ŒˆGìå9!°òg‡=ÂB+B)§—˜Õ ¹;fç_(ËÛL 1c-ºxxñBŽw:—VáŒX•á× _µãÌÅ3Ž ˆMŚاˆ˜ö½=˜y5 ^ìOîÄöJ‚®‰E0†ÓQ†´Ò Ŧ\žîeÉá^y ò딄ӈr^˜Q}S^†ª¢CT0¢ðK¡ç¹AEˆýéCÒ•/žjª5;p̩®…áâ7xóˆ:Gj¦ÄMÁúö¯sÇ'oˆ*b ûR壨ƩˑÁ½Ð=‹Œ”¹v¤°@Wë÷>nt @gŠta s,kK© X)¥rÃØ1Èj\…?°'ÓÐS´S±ýŽ?¶1¸cÝ–îî}Y…YV  ho‚׉€pൠ¤ÐŢΥð%´¾üët*ç~¡ïô¤hŠÆ³wNÊ?´OŽñÒ\º3öÔöÊ!¬{Rž)kú¬^¸Â%°û°Î–·+ðŸ ÚäM{¡7KDÅ5õkyêMQ#`žž×½ÒdÝãû~(Ž=Æ/Cô|Ø«&9¼eç`â>´¼ªG§®5ÝÓÜM^Ý(åÕæ@0(Ó4¤›!t¼´>܃á8¤¥\EÈP€è¶oÈH€Pß\I ƒÆg|ÉpÏÅ1Ÿ)UXÌPžª2ÜÍhWD›\ßÏQ#"C‡ø×Î2gÕŠŠá $G ÖO¯\ǃÎê‘°¦=¨×RÅ:ÇK ÙS;±VþÞƒZ¨¶FM"˜¿¿O%a<Ž-3-ưADƒ>þý}¹žj{1¨û7TqqsHÒźç½ÅEœ0®¶Ó%‰ü^|Œ³¹¶ƒÿ_E¹G—voÜå$¤jÁr܇g˜Ü¥DŽz1òrµ¬j•ÛÚ}¥˜…}¾ˆɊ¹º*™"/ÈôAeR‡yL³äbûc‡£uþù<îíÔ­«.Ý<¬Ð~Â;pÌô7•âzF°T¬Ç®®ódÝ?[­ dùÉ¢’þpÄnŸ´ ì¤ßf6ûíŽëM/ÅÉÔ~kI‚§ö¦öÈh‘ ¹BßÿWC|÷Ú ¬×Ú(<•šs1Suˆôr9¢·‚ïÌB±¡¬õЙ’µ&³Íé&Ž,`uûöÀ»ž:¿Ñ5~.‰¡Åƒ7§+`°;Â_UUyî°D÷î|'´s¦KG¢#]>(ŸE(_«vbì¾vl†³vµzí„•Àºµ¦Sk\¹žÎ+ž‰wv¿úÃ앪à _Z¯ú®×¿4îL_Ž^™µçÐb÷›D]†ô~½Æn>]ÎÃÑGaé|6„ 1.t;8ò\×»Ãa„/{ìœ>äP•ߟpFXTϸ w=QƆïíuLÕòŒµ1ÿ&›ŒþÇ$½eň-¤³-u!#ØD–O‡°Fx²¤³‡øäè%çm´>r9­jòJh6ÙŒßN=2R‘ëögUÆ7ËøO+˜e‚§•¹5ËÜ®(“K9A¡Ò©Ô–Ž+há•2S%r¨ÑBÖñ?,§>eWÂÁËã%–Ä5Ï%ã˚ş²*¤O©&êO‹*S±E2*“Ÿ²J²£´ªá[N—L}Jh Ëâ2MšVÅŽ#ƒ&LY$Ñœ‹éßµV!âÜ!äz.‡6<È}ßZ¾ƒ(8hCJ‡ÚbÃËc´ð)",ÁRB ¸»ÊŒ~¡@ôFŠžõ½½°'õ–@‡X¢çBºzƒ‚N‚QÝéŽ@c§aþrm¯\Û.àÖ& w-R5è‡ ¸`ó’kŒ~ìÛCÔ¨súóÐFÁ²Uàzaù:#8‚ÃjjmVt m(q:yK.º]q:ï»Î@¼wö4 ­É¦c Èú9ÖÓ\Ô Þâ©m×TUHx¨S 06€l¤ÓŸ5•7‘‘r=YQuHŠkßšPùÖ4|€¦Cá£ÎÙÁ;(±ÿºû¾{þ ¯ÛÞtÏ;½žxsr&öÅéþÙy÷àâýþ™8½8;=éu*IÝV# 0ŒíˆfUíHÞ€ûü ¦Ó 8 4° -»UŸ=¬ž3€a‘skIÒFCøðSe(оï$õyww§‰N—AÕï¹1û;zf¨Æ¾Ø3EÃ-oC k‚Æ¢ õ*Æe§ vÆÒJõ\ 4©Ê­i¥[¹Ó˜®—Îäi=Šýyèa®mƒ‰õ œŠár å.—,éë¶P'h P¥Xv.g3ûÈÐ@[¸€d)¾7ô £Ç ­àtuðF¨ä‰ÐÒç½Øʹ`VÎ\ÉØ7ù·§ïo›ùMÀ Pö””虈—d7ÎÂwÙ”¸œ½8Î2Uè) ÆFh€>àtêY-+1ìȺ!NëÍg3÷WÄ7K:+Î-Š=Ÿ»€%5qˆs¦Tm‰T»):äDé>YÏY×6^A!ŒœO #â†Ö1Å·«#´Ä0w—ƒÒâÖ0<Üè/˜6j ˆxH¼ Æg+bW™ \û¦,[¯0À^Àœ¯©¹®¢tâ™Yƒ¦79ô'b1–@ûmìxP2Yofwaìa9y‡ÁF‹^¶¶äa.&.²#,‰ÞqÈ;å²j¾c f(LEN[Çá¤ÈZÌÓ,Ç×Ö sIæ–(Ñ¥Îú!í)BؾÂzýÈø÷+@;t[$@|ø$ËCbFe4[ðIöÎEŽ;M*<ü¶¸ö`ŨÉVSL¬™T¤©½yÀ´u¨¼¼Y0q p&lÍ¡öÅ€ ÓCôI-H}“¼¸« Ý/\¡ü³|´|ñfÿàüâ¬sV>9íœíŸwßJ–qˆEobÓ}cP’œöŒßNÔ2¡Õå`ùú! z—véïñ­ËùàhfA9ï§Q¼'0Ž[?®Åî‚Kò(ÌÒ÷ö«üeîÚ(©ø|rz\Ì\±å£7Ø[hÅÄ|ßÝïårË›ÌæNX$ è= X!Êã’(—Ƕ;Ó¤ÂÐ7L—fœˆ[0ˆù#†Eç'ìÝu-À DEÉ.'Êßby…5ŒúTÛÕš…rg´_€<¹æùŒžÏåTP.GÜ¡†ôjâÁÈý ÚS]…&ˆË@2¬­2š=Ð}±7ås/àM̆ÇÇ'9E@½¤Nô–û3”tgìU>wî?ˆËŸ×Q¶A“[ˆÈ'Cº„à°´Pb1ð&º†™¼„(üúš(_‡äòkèåÔ½}%Ü8y±µð(_ñ~¢ŠÍœ\Qr¹ëAÏrk¢fÿ%BÉròcº-[¬tL5ŽS%i#å“ÅdL84®ñf’¨V÷ÜÎGÂÆÎ(”Q0ta±©ì®Ã! ¼ôŸÎæpnËBñÜÅT‹&°å¹®j^¯¯cGò:'‰(Ëò]T5 5ñÆñabfJþÆ@¤\™# †B®tŽUbµ¯×cUè ¢F­'‰õЃÅã)_£)¯mš=!ê ÍÒ$ùÂAw.ê ‚«oÔb¬tèá¹1}ÐŃEåY|f£- ²M ÕQx”?ˆNŽN‘y!ÃZB‘ …÷ÄÚPã&ÓïpM4A#û4iÀs… ì-Ÿg•ÐÎ}ûÊ ”s=²\þ‰½–/7>ÿTþR,Ó¿—›ëÕËÞ‡ðhªò¼äÅ>®bvÎx,zŽøž3Œ†ŽrQ™'¼IGÈ4è–™°¾ãSvЬôFzn.ª„y3µC3mÁ+úxÓEP_YºÕ®7b¦XÖ ”TŒ-/ 7ClçOÎTÂÉMyêÝZrÀˆ—õàQJß œÁ•\öÏšŽ:N‚ /G™½cD•ŦàT¨nˆ¢ŠeÏVe8|§†ù9öY¬*‡A‘/ìîÐÌZ)–«e†¬!9o”m’Ûm YÑÿo´9ð”@òë ÿá©Õ·IO5©ç A y·Â—–ãmžÅC{gîªr³^«‰;Ï¿òG›ÜSñ¨z¢äeÌGé±û«Z -c r/êÂE†@Êh2™LVä.åýù¢̧EXš›FOœúxH‡ÆÍÐÀ¥àVDFÓm éq#N/Ð9× ¼½¥ /ÄéAz0¡g{:€cšgƒífƒ3\;üë!ÃA we+ä;ÍZšêaˆqë¹i—È…çÓÏæÖ€ÂLLè“Óçß©}ÒQJçªp­Ö »JOnÈ[ËGÖ—\vàKw5‡›Þl©æÕåƒ ªÏås½Ñ¤6ÉH,ª­”â –7*›ûvÿÂÜùQ¡£š3BÊ¡ÜCÏÁj㺮Ç|×/×Ä1!Øþ„ZJ¹'p¢"VÒUþÞ3´›é<sc¬ž¶ïõ]ë7›Vlø7¾}×ëj®ûîÜFŒÊZLoÔ·À¡f Ð&—zyãàÏ= gÚ¢quPznª·;?PUÝÞãn –ÔàϹ´©u2aeØ—„%…0€–®DGÓÒío©Oð¼}ÛJJ 1V1Øm•e"R4Ðж hÍJãvû+ám%àm}%<Œ²þy C{KÀ²¸ÄÊËœò÷–a|e½·Q½kâ¼;€BE‚;JüD=Eò‰øåÊ×ÎÉmë_Pk11s¯7Þ¼? ö¹j<6*_Õ Úî3šÉ艜]Þ“–±Qû×5M‹õ]Õ6q„„X†íøçíØÇø7õifõdyËä‘i4OF΀Óhé®ÒÙð)`f"ÂYµo‚ BüÓ,›3ZÙÂJŠ¢ùÂà^mËJ¹"Klå÷1¾%Îh0!'óò@vfªû0ùÉ3õ… ©¸%½¦…4J5¼‰â½É"T€NrA7)êCJ5eô¢¾³]ów{·ÆáǬÆÞ|bÿïâÑp/¿ þ›xTº í~‰^·[ÑsëóNô }¥ní|1€0x~J„¾Å€µ¶à&Íæ£à7O]r:®&”0ùÜw¿Øühvû_øñösCVÏMx6¾í|†U5·¾xdïÖœÐ·ä¯ )ø]â„,zlÝ#³´[Û®ÓD{š? ëµ[H6ùÇÅŒÃ`VoÝßs»qIöÌ.ÃÄSÚÈ"…1ò›5úÁ¢£P5h¼ ”£ÀßmþÍ,ùS'hùÒ¨Ô¢§ÏÓ;•®Ú/]Jó‹ÓÜÁÜhŠ?{ü£ó:3j¦ó+ªRszmæ'—GÆÕ#ãNT[áç ý2Ë¢ÖÐ¥µ÷!þìîÊ59±îÅ„>þ£)·Ø Q‡$»ñמѿ¡u- Eÿômù`÷Õƒ+\;Ê]oEÏ´\ùÁvÍdoÚ$ñ2_Y|ÇÌoñ þöw:z‹g ¥§“Ÿ¶êFa~MeiƳ4ÓY¶k±,øšÊ²Ï’h¦X4Ýú9õÑ}ö32´bZ‰ zè9õÑoé ­X†4ø _ñ×t§~#’ f6sœRƒÞ7÷Dô¨?Mëµ—‚§¦ÚJïÞQ 2”¿Á ¦Ÿ§Ã€Fœ~iÿГBÖS‡ÎLüi¨_Zñü$«žÂ:Ç‘>'¡ÄgW°Ÿhù3ÒƒÚ¾¤7.ø‡lö ý#AJã-ñùò5Ÿ©¥Ú?¯,òà[öPò¨Üñ í„W&»;Ø*_"È€v:?"cŒ‘Ýú­/VôDÝÆç&ô´õE¦ÊŸ>qm–|iÚ®®‰ú‚?:iÆgŽôr=õ£Ç[õ¸ÛºW®êG'4Ý{ÑS?z¼U™çüZc[:|âÀï¶~Ø–-ù»‹ú ÁÏû(>P{ g‡à[ýÖÕCC=:å¶)Ë9ú_¡ç;[¯¤û]Ür÷ƒ:U~O‡:¥‘¿[Îõáúßvkiz,N2i©StØÉtî|*ëö‚¬Û©¬­ìœ­dF0ý#þdÃÞ—töŽï, ÇíøÔS½¡SôSPoàÈMoÑ/l˜+€3{Æ@!;õ¢šw¡fyÂÖh‘·¾È׿²Ú&ò“mÆH·Dܵ¶iŽn”„bÔ3Èç0>F¹®´k&ÂÂñœÎï{Œdl§KC®Äß_[aFƧv–+²û™UÙýd[ev7;»›Ì¾†âM¤¶ž ±¨j?Ëœ̤hòú&‰P ¾÷z/ñ\—¼º•…´ZMbî<(T\õ¼€3 ”&:BìÛ×›âý ÙnyÑÃ&Zœ,84]$Q1TzÒÿÅ„ÈÁÓý"õF2ÆyP‹ šbþÛTž$ºÓ,m„ËŸ×ë—…¶¾É‚÷Xå—’øj©ðPÔñÂHFèS§§ðGIæ8šr1âiô3ó2e J¤ùý•,{è›ÁÛ˜ Û-óX’Xa:ÆÓÄ“Lš¯‰Q¬™/ž(E‡UÒEaã¥N¨Kôäê'ÊÉ,MQ—¹õ99•Ø·ô“M©Ì×èDàl8‘M'er$û4kôýóà—ðË?Ѥ3"'ĉR¾AÏ3™†¾n²H”ŠL?¸°G”d»÷£G1™>Œvj\?2MüàËÖãÄ¿÷ÑJ!æ‰R‰}ÒÉZA…`.J¿b„ã9)ý™ä¦Ô+îPÊEžuèaO=¥¯âÄ_Í‘FÞJ=»j†\c†ÃRÏÈcQd¯ôƒ«—<3[å¢: jò4P)ÍVôøCC=êýÄ' 'ïîrk‘Kã$Îø Y0]F3küÍàÝ¢,³ ¬¢áômý(×0skúÑè qlæ›ÜŠk‹bFÍÈ 8·D6äÖÌ\̽Å3•od’T<“Ün—üŒŒ[, sr©lÍd¶fV¶íZ"st©l{Él©¦/¦óHÎ.•ÁOdñ33µ™Z©LƤI./•!^széL­D¦¬ª€Á‹ç"Ž/ Y¼DFæú̬ñ±ÌHdøôwæþô牣1ÐPê‰x=õF¼•—ü^ôcÈÚq:òxÑ“Ü=’óÓ¹a-súŒ‚˜AùÔlè­N ¡~ÁèAÑ‹á6¶&ÆÒÄòÓ/ò‡÷ìŒ7qº˜tM£?PšØ›ìlÔEe¶Q½JÆ‘òJÖQæ‘ÓXàö7Hzðƒ1%(þO½ i>Ëᔥz&–R¾è‡hn·ŒAׯÈ_ÊGÙsf0uÉ™:ö%?i>÷Í—ÛèXÍè˜Í0ä8c ·»QæÛ=ó¹o¾Hø·<¹Á½^Ä‚êGÄ‘ª§mãq[?¶ôStSýâGKLq«ê¹P*NìhôTƒè±a<Þ65 KO?³±êYõr/Ïmi!LÈ×òºЭ×|.ãÈ.êã-?Å÷RŽß°ã›Ï x“72p˵ëõ9ZPÁ²Úg²ÔÉÚ•°¢â±¶˜^µT~Bɻ޶n.çÔm%mt(T!d%I ½ï@s›»­~0L·ÖŒ€!<È'[Û$yÝK7ñµ)¦ òL äC` /ð0Ÿ:÷³AæÕO!hè£Çk"Ê„ÆØe°ŒÈzX“¡lô|è¨}k02 Pzb>¬¡8sÝéæ¶¥ Ñíè\·Ë%W¢’ÊM'ÚWfÒEBÒo³ÖÚ]t=†ßU™ tsAç%#Ÿ2²¿OÐÏÍlåŒñ—å¥`üB-ÒÝb•­jt+ð¬qc¼"ScH^`dçš.»ð7«-¦3^³ "> ½Œ‰NÃZe1.S“!ŽÊ!s2ÒôY<ô9£Ã²XæFL—4&ÕÏê§tT¡ºèGý &¿dmLNŽç|QïIÁGÁFŸ?”¿o¹Öt!2’fùºY> .èZƒ`oÓ%‰é5i& f-*úœ¥šn¨Åa+ªÉéOrI•$>iŠFŸ»yø´^(>}6¸Ö"h­?l/¹A"©y)Ü‹rjñ ìëAöËi81£*D*måA†ÈsP— o©]¡ 52 5Vjf•j®.–[!qe± T‰ ‹± Ý/Ycÿ˲±'IOFU,J›ÌtAº4ÀŸ¬¥Céñٳݑ.KʇóéB\Œ9tf MuÑhvè[÷£ ³fÎ…Z†Y>*¼ h¼\ªƒÄ…Z¤€? O'ü¨²k],”Ð×BibÝËæµ&ŽÌ(3È"’½œÛ£"Rí“¢(¼ÂCSβdÇ”¯8Œ†‚Ñx*ŒFà ñünÊÛoÜ#ùÎù.Ù?“´Î-Õt‚‘VŸÍÊw³NàÝxfu7UA\ø‡iË«YñØæ-m–C™Äf#}²§35³Žøé8{M1‡c²‹ƒûh‚ÇŸ·¶¿d—K±™f9XO{­¬%¼§â4«)À¬ÒzZ!Ψ*SáÌ7G…PÕE±!¸ð,C”Z0d\®'ZÎÈÈ«¿©Ì:2FÖ n'3ûK2ûñÌÞl»Æj3Þ¬Ud¡?Å9x7ê슱¨¿ƒÛC°*í” (hß‘8O¼`+k¤/Ÿ(£,D)¶'"™Ô øBY”,ºöŽÝ,S6Y85)5ùsB a|üË\ˆ+7C¾!ã>‰øÆÅ$+[4•_E¯ÎúÜ“ãaèèLJñ4¶Fô[A*Ûx²ˆ0¥ÏºÈ^†È;:ÍUž,h”ë¹×3øZ‰ö 7ôO‹¢{  ‘s¬As™xÜ›!aù›®XáØ¥ ~¸Êjw+’ƒš&ò¹=:fzV«²`eêÎNF>¾¶Ù¦ŸùÃ*H<¬ü„Ñ9üÛ~øaܸr®®¥t¥xÐ2kkýùÚ‡+“£k¾8ñoÙýŠª3URh2ž 0Í̦±ã‡ìfæ5„<3¶³› úvfÖñ. ða‘ou"Ç,ûœ0Ì2ò‰t8SíJhy€%-„¢À÷fƒ‹Â~˜™¡~±(ûŸªÝ#x[>J¤šÑªøH)0KÆŠŠ<»½Á¢{cýeK¶S¼Ç,’ `T$Øáç)R?âþðqõåY€8Þg²Ãþä3ÚA,’ÞÈ€a*sH;2¯QQÝ8® ¹GʈͽÌÛJç¾—Ù3uføƒQÀjì5²¾P1èg™ñ™ òñåGòËK$-å^Ã,Ž6-€Ï¹¤nC`gI$eä)™›âOéü¤Øµ`eDj_”7C®Œ^¸ãí¬Crjo¢ÖvVÎj‰t°ï|òkâLOù|Ê ÜTÖ\Ò# v¬ðÄõ{C—˜gpý˜šlgØXÌ=Ƙq{í,¿æÒ mÊJàh!šµÐ1ÃsÑW0Ÿf  ÉwÀG#`•9©Ý¨CÔŒ˘îìb[Q±æ¢Ún–ÔÕ\TWªQÓVfMÌ ,®j+³ªÌRf]ÙW0©bñ›ìÎ!ü,ÞǦjEËL"Þù)nß³†b5KØÅ"*}›Ñàa‘R[ð0™Ø¡Ÿ¡À=I•Ó°™%—Ʀ « ³”îÂ%JwdK‘.²Ô†Z{U0î›{Ùø˜ŒšâHƒM›gO!ÌNƠ눹 å®éÄDgÑ,) ©)˜eÜÑšç'U1SœOÑþ‰Ròe˜±ÛXþa®qßDÙ6ßîÖYd:À§ $¤Hîýֺϸ;• $«²gi™Äsßêãîv6+>ÞÞÃÿ²6ä¨Y«—Gó_œ0PkCF‹%x‹Î-ù¶PM}E¹ÅÓ³¨à]k;Ë¢£µ]¾fŒòÝ./%IÏŽ¹ Û}æ}Ȳ{²{òNÄvD$1Û¡qw¶«n Øa[±ïtrõÌû<;¹tNÙèø|˜dh¢õÒ"DCæLDG§Ëý–¶Wp&º\mI¹ÚÂr8UB)´i4„Ñ„΢e0>´pR>dM´èßðé&½p *ÀÁèQ4‚âM݇ˆ†, AIúDÄ|}~{³9œ‚^bOY`Z ¼JôË[µÉxFäMVr,“l4X%—ª ©‹f@c5ÒÞm–~c„Œˆ§DÄ™(ŠÏ~îÈÅøÀ…ÙdwÀ‡(ÙBã.t‡.8C4§f7u£dé•.`Oq;ùй"ãÑ, ~A<Ù=Ðj‰-¤³±ÿü–·ZNhâ›uY€ÊãÚ1¯™¹^ÛÎ-=>$KÀw¼L›Ýá¿Ö  O ÎeñCsÈÅf K()–Y¨¨F•×Ö‘ucÈ¡UÈl’bøp Ѳh³T ÿ)P”×I…¹bQ‹Ž2}QÆüj/v4³K<,*#ðR¼¼E‘ >¤1"ÄÂlF2×¢ži‰æ2¾Ü+Ó`L§õ%Û8£¬¬3Êq댄 îz]FîdÊ¿ÝN<[} ½ú‰PŸL«yR¼:é°‚\‰,WÖ f c=r4ëŸË!#F>xá,™Jö*ÕØýôÄF’…W/xº¨Á­t§£¥É äèà—E1§_£˜ghíÜ6"ëð·6Y¾Ì}ßž†îݜݔQÅ|”â ÛñØÁ>£(Õl÷Îz(¥Ää TÀ·¡†¢ PDãcâ¬[¡ À^ð1±Ãñ|Cÿ!¢4ò± ÀyæÏ7¨Àäñ@ÈoÊ µ"¨ [F“$B½` P(æ3¼´ÐÁ~J…™6«N€¡’¬´4ª"ÌÀÞV¦ïÝb4û;ª œk °®ã…CC9&ÝêðŠ‚ê ¯Ò° ojßbœMŒýí±hiÃVr Å„ûqU;ÈPЙͳ’‹p®xþTãqb ë…ª-Rd³’Q`~ ì‰KÚŸ™áFPù6JhmIçÂé6i¼éOÊ)a8å¤0ûS+ûK ·öí{Ó¶Eï,ÿ¡"ï8"±»mé=SiÑ•$Ã. ÕwméAž´v‹ÒS—Æ|ÄËïJáA$ñ«ÔLRƒ%–¥i§hwó4±gYM1ã…’3J‘ABÖ8QMcøÒH÷õ8ó= 1âÀ*Ð=Ç÷Öø9vXFî5‹ãR¯Ôu­}}Ìô#ª¨È¤·úB/ú“ÓŸèQÒa‘¯Îô!'IqýõÎÖDsìZ¹˜ˆ&˜üêÝ8 ¾Œgºy‘LÑ4—Pæj‘(÷ÔEéS±ˆºü.ýM9EÃ3ƒ¼+b°F=1ow°¦¯õ:½6'ã?f‘7ì¶iÀZlL0ª!O˜ëŽ™O- UÛl™¤¤þjèÒ(†QsÐK”ÞrS£ùS|m;dÑ1·A¬É4õWÒÏA}s–&¯‹Ò7LÖ—àZÏ/JŠ£tVcÍ"‹:šfz|•u©"¤§uùªè~54ñY]ÿ—D$ •(˜è ŠÝΜÁ q½k‡cxYrL#½R÷º‹ïåŒ;ʸñà %i%¡Æ Î[J Á†äjãyøÞWç@¡ÿ#]Ärñ½ÎÕ·“`ÈѨþNw±ïä·Bgá’ Ú]Oô]«àêLéÎHom:]<Är ¯ÍïtCû®ìõu–k%¾ŠòLcu\?M.¶ˆé_”CÅIŒ¦G«ê<Šy\#ûBB c%YJ—´’£¥nÈ£y™+§%’' ’ó“‚÷<®/‚#-ñ£>§–µÖ*ŽKõž|õœªr·U×f5ÿ³8rEQŠˆ\¢”÷îsd—P´!É&©-6¬á°<ö¼Q¸óQw{ä¸6%¢€ÞËÀD vvA¿á¿~ØyrŒ)¯ ùxކ‹Á,i?”ÿRkLðŸa"trPÑ<æþã9¿üZ®WZÕ‰7œCªÞÓùĪ*&Õ®XƒgALÿqÙÚÚø»ÓÚ¦ßZƒßñok»Þõfsg»VßÙª7E­Q¯í4þCÔ¾²Þ'ýÍq )w®5½†ñ.ÈÙF£%p¸/Bÿþ/ùN]qê{;˜CÄ•Ël·5=\È<y9œlòí-×…¾3frÿàª{Ü=ßÀµS-  ››9L=89~Ó}{u´pvruØ=Ûø<Ùú‚ŸŽ¨ÀÕþÅùÉÑþß;ŸË?N½2ßÕ;®> Â1kä]gÿ°s¶ø¹2+@NçrØ|%ç`qjƒôÎ÷Ï»½óîA/=¾ÊçÞþÙÛ«»çï6Èf¼]Pʽø,D¹Œ½.GÉ,V!ª ‘8xqgÂÊØ`xëKI £®òáÉ1´ú°óúâíU”.¸O½‹×½ó(y“;2Û@R`NŽ^wáóÉñUçãéû“<©ÖwŽ÷_¿ïlgËöýÌõPÜY&ªCöñTyINèg2ã× ‰›ôáá÷+üpEi¯Ö¹ :ôÉE(Lä×Oäû#/^‰;xIR–œЉÃΛîqgã¢×¹ÊìèÕÁ»ÎÁßKõÒçC{D„Òhió6‰âKŒàÙñû«ýÞÕ{¨éê¼sv„µœœ%ÇПºe+@©„]m‚Ux~rü²sEcwpö×ã÷ æQ8(}eWøí*ú¶x³ó¯ÈìþÆqUsy i$p$Y· öþµo¡*Tyzvòöêà÷0=¾ï¾>?9yŸ{þ¡s†“÷*¿Õ®µkùhëOŒ¨X÷Vÿû÷úÑÀU¯sžªÜuú>œ·(”L~ÛÖÐö aqÛGÀv;< Ì«H&ö`»VCø°‘õC€OA76<Χ°±‡FZ@ˆ&Q5r€vP35ôçDòK™(hKÑò°}F&•¨E½îÿ휼Ùâ¨$¶6SéÁð`I4Ò_\oz­‹ bìÝ>ïu ߃ͧšJ¼¹8†mðþýÉÁ¾~=ê2ÞÞ‡j¹ê ¹BôªJâjp{…bÒ+#ãg(v~ö ÷ói6Ög$Gž‡½÷›âwáÛ0JSQ{)þtùY¾b–zmó%î” Ð¯|æ—©·Û7yï˜wû:¸ðÎOÎ?vz)TCSè‹`>ÃC)0F@QRd¡píé5ŸQŽƒ-–!¿eŽ\nÍ™ÜùÐß©2ßçbÃY•JÆ•«Mxô½¤¢(7n­Œ9§@yz‡‚‰\ ¢˜Hzsè&êùÊý‘KMXIäó%Ñ„C:š:n¬1c2!k¢øÓŠù}Œ¨zÕ4E³ÄPÓ“…³urq~zq¾ñ•€‰ÄAJB¿`Ó¢·¨j׎ޑ°)3Õ#1µ,þzKß|Ùý?æoýø±?íaõ+ë@º{{!ýOôr‚þ¯7¶þCl“®øûÿ9ý¿pþNN?uß~‹:VðVm'>ÿõÖÖ¿ù¿Ê߉špñ¾{Ð9îuråä_.W-–s¢(¼ÙƒOjïƒMÑ€™+7jõm!þ^ù»X7žßÝÜÐSío×Ëq+€¤¿Ç¢û®+¨h ¤’ưéøéÌ:£$éñ¬$í驼¹?à˜RHû#ãù“@ªÊË;f¼Š(°€Ñ(€„Í® }E·É¡ºÀáeÙòs€æX‰'@(dxd‡m|®WM H‰„ÛÄf xç" TºË…Or”üM= ÿìs×tZ£µ™®VKž£6A¥×ÚÓÇ1tC BcDTC“þi‹à^JHCo0Ç;qKMZæƒoõ'¨îîXnÖ5¾Ù µÎßu{¢wòæüÇý³Ž€g8ñ?t;‡âõ'øØûçïNÎÄþñ!0ÆÇçgÝ×ÀÚôÄÏ?ï÷ ¡€Ÿh•ÀEžuz=ºG§ï»àžíŸw‚Ýãƒ÷‡€ØJ ˆã“sXøGÝsÈv~RÂêPº¤8y#Ž:gïàuÿu÷}÷ü5èM÷ü«{ƒ §ûgÀÏ_¼ß?§g§'=‚†Ý:ìöÞï‰~ˆv…ÇP±è|蟋Þ; ÄÍnÂÿb½|Ý"·Š ¨èåa÷¬spŽÝ‰ž`Ì qïK¢wÚ9èâCçcz²ö©$Áö:ÿç2ÁG„v¸´ÿú¶±bT`B.Î:GØ^bëºççñöää°‡ |¯söpHï¥6ž ÓTr¾OÕ-ø ϯ/z]·î10«g§çÄ w'?ÂÀ@c÷¡ô!ñÉ1õÆèäìÂÅñ )(‰ßu ý ‡”FmÇ¢£wpŽÐŒœP+Œç¹ÑYqÜyû¾û¶s|ÐÁ¯'èÇn¯³ 3Öía†.×üãþ'êãuç ÚÆÆÒ-ÑŒŠî±ø¡‹—™aôºrÍœ¼AH½‹ƒwrôqTÿuÄãÂóhÏÂþu,§ÿ¶[µz+AÿAÊοÏÿÆßÚŠ*%Õ`œ[rÎEY1WÂRÒaɤ2d³§C{:p·¾ p|ÙìAär,–ê—¯`*›åÚv¹Y«Ôv^Š5qq~€W)-q°)ê{{{HK4Åß¶EÏ‘â³xãͧCy¦w§Òþ"Õ*Xc‰@–xIz\k Ç¡>kÈKQD'<Hš£7\ÖäZ!PÚ~o/Ä[ê­+Nvâ=œšS J ³3L Æp¨õHûË^Øæ—ÂvèDTº¨R-@„@+á¸$?¼B[g²SY3{uh(c1öfJ.d²¾äÓhÞa£°1#2:Ï>½ÔaE)('Br€çuð¨¶|ßš†0 yäAóWxp¾õl[^›/K2^E%ž!RPn@]þ³'IÏ·¶Ä"]<ÌVO&ÊÉ sJ9‚xîŽ*‰Ú÷Ý8 gíjõîî®r=W<ÿºê2Œ ú=5f-5Éܪљ¬K·¬ %©—ˆ;*ZƒÑí ®"Ë'Ú+Ú_R'sŠÔ$Ô eãj¢¼­Ô6¤å'öå M‰VýÄzJt¤V·\¡5‰Ó^rÅS¥Xv.'3û6Ó…ôQ ŽÇ lX :1´Þr†°r°®}H¶8q[K|çáÏ߆ƒAÍó¬É¬Ò÷¿×:‡uTn¢P€Ó%èxãš_¯µÅ±‡Xg `¦Î´-¬×D¹<¶ÝY!Z,ΔïDqäY+–À^ìKz~‰?å1^5—ÇE®ñÝw—8~/ëÚnk\÷™«ø‚ró}ARåíÙþ‘ø¼ö¶÷%—;›OUZO`.‚G⬖aÈ\CÂHt¦·ŽïMI§Ô¸MXn‚œþ*"ô­Á ÂÅ@0(.„þzüL+ MÙqN ±Æ°ˆ×ÿjç"'üÌ­yˆ*¹Ù…;§@_r¡¡›1ô`bXƒF¬ìXg+Ü ‚œè ÚÆzƒ ‹šþS¥X}|,Ȩ—•Ï?U '¤õOí¥#'Z·ryßN@M1Â¥ص¡“’š’k;Ó[O 4PA¯ñ€WJê\ &i8ŸLÔ®#3;ëÖs†¬ChÞ;Ç0¨þ¼:'Ô°UN]/gÌØF¸®ì•Ú r(xÖè[^|ã!3ä¹»o,\jd ÀsÐÓ̃„¨¢ŠjÒv‚&If ZœÙ¿Îaɲн5ÇH&ˆÒS¡v3Ì^%g9÷WXß•¬/Ùš“Ø@뙀ÃΆa\á!1w%av–â"uÃQÁ¨DmËëë ,GîèÚÕÑô&‰p #Ï«xm£¶Ê˜P0–:ŠãÚdÞÁ¡hâ/¤u>¶…¨­e!ÖßÇʯ¸$ŒÉ¾‰bua³L[¦rÜwôs`ÛC#^fljâÚ0ey%;Ã04ö„›ÿ»Ú-ù »¶Èº‹¶­_Ší’je)/¾‹šD ‹~^­¾øR,AQÚ{¥õR»TÈóG|¡bŒxržpu£1 ~NoH9¼Æ÷T=w™,‹°cR_^(™]ß§î«B¿¨4áãÜÒ•¬_9ny€S‚T+¥ 5Ïli˜m3•B;$_*¹9šó¾Ú}pØyóö]÷¿ÿþþèøäôÿœõÎ/>üøñÓÿÍÑȽ²ú({=v~¹q'Soö«„óÛ»û‡ßräè%xUC—Eۭݽ9'|µþ;Áþcýwc —úo<®H–Z|4R™BI$òlG;"v€¶Å}–qé’"ZpÁ*ÒHYÀ^×ôŸ´Šb½ßC“;Eº1˜÷«}˯xÂ|éÿ"®=¼õ(­ðúrêUrrÒ¡ëò©¬Ð¿ì‚xÌ ièõøù§ËK:¾ ë¿3ÁT&hªÿõø2x¼¬\nбp¹¹þX9½¬câ)Z‡áÄû#­B¨1zÑ•ª%—™0«•óËzáä²–5®GÚ¨dœ?Òm:À‘Á—£•Üõ`0r­ëWbhã ="€âr~8N<ÿ†QëÜØJ䋟XeÉ6`±© 1B@úÒã-Llÿf“)—àc¤Ñl †ÕHþ¶ï\31Ñ·añá9H¶]7Šê¬L¶„mòñq%vŒ‚S³8°¦Àõ©eA0²zéª%âÍPt@ÎÝ$+Fˆ2nV1.³õâ%Æ3½®×Ä»Óèx™£“¢ò­b ì{ çÞëCN5Þ壈ú…qÈq-gVƒóq„C@F…Š2‹f†fó)r.š¨~Î}ÆT—ïÍf¨9ƒ‡k¤§®æ¯òòQ”ç¸ÞÊùì¦N‚ÛºÄXÚLÈäpüf3Z wU m$x¨iÀˆ¶BÅÿ› ­ÐðD¹þÜ@Ž`\¶ƒÅ„ L±>à¦×.±h·G@̯¨Ç7zˆÒ®º›ÜlAéþJÕÒuÁ£Õ‹§ û¿ó”ìüïêú`gq§ïÝÑÝîë#qP=øë_ÅÜæ¨Þ»¼Õ˜û„_æE[&§oî”_qûC>Ü&¥òÑ›ŒCûÕh°!𩹙[[C8¢IÒ.ÚÌY¥æ³ w =)ûŽjx@ ¿CâöŸ¬‡ÿdTÓæcq$ÐäPŠ­W¶ Zkbÿ‚Cf«å£Cøÿ©ôÅ&Ù8«Ð!À4ÀÜ@ ï&@BA‰ ‰p>üã>”HÜøºw(»{Ò –©I¶²CÀý³‡Å%­‹’&=Õæ‡ó¨µ—è]ÑÊ‹?‚ ü±ý€å-8ý-ºþcÈ ÓL6°# ç¡w7E š ÃRq{h¬ÊÚÃm„7‘üy³ß;‡Óó/‚ôß@ýVÆ©ÇÑ…6ãD{Ršƒì%êúH³<ØD‚@Œ¦Ð%˜ù¿Qxtn×j¸qxcÇ#¼‘&’d;éLŠg N”(Ó±3 a…SÎXʺjë©F„´œ¯H vÍ:&¡Ô‰Ó,B6aª$ X„)Q QoS=1J@sqÍÓ’O ä‚dþ¤Î(–éô‰P»Ü¬Ü‹·ú h"޲\X-!Ne<8uÆeÝ£×z{«»d8 #@g#°¥=–ºyF£ç­ŸiYøu¹Ýù{“Škß Ê`ýÎz \†FŸÆ6–H…(€ƒ; JÚ¿ãÜÃÒx F÷ˆ‚îæ|û?ö†mÌZ¾ Ç ÷»Há:RDÃ]r·™2ÈNÈ /D Ñ8ºlD*sè åu+mÕ}YãFj$±ºv*\nãG[r6ªDÌ`Þ5¡ÁéôÐ8+¿I:,š¯MîšñîêvŽºžÔƒ3‰¾ˆ¥Æí‚œ§ñ쮣£™Â³ÄÙ ¨¬ÈÀÐh©¾ ]Û‡ÕAîo¹áX¦/ȆFrŽD‹%ƒÉÔ0tÐŒ‚BìîÌÉ ,ÒB†Ý†SR §wƒ©ï@Št¿4k ›Û`Êã%6c|;r(rÙ™L{D¢–ÔÞc ó㬤K$6ì·ßî*§É®š,‰h‹ËË|’ÓeG; ùdû¶w@—QlˆÃ“^9\)BÆ)…FCß¹µ p÷!a‰¾0C8qQÕ‚¸” »úTX'æ±ð¥}Y5ó%øsñ}¬Ák’@"£Ý™có±FNŒXÚÀR¡¼”7˜*àùHê°&}?ò;»bF^…É–YF®9>àÞ¦•SúD'u ¥ø‡sÌ"ªž8Ø…C–ZÄL žrÝ„3´¥ ”¿Ü²¾ÝŸ;.#GnÌ&[”*y Ô {Ždòë° øâ|-ùÛ2zƒòYÏ*pH{X¡y83‰p¸Ô<ÐÛ‡FŠX;)´&‘–%'h]?ˆ¹4(´Q¾|¬: ò¶"¨oJ$‡B4™)!¾EúB”÷gK[Œ–m×Ðã™æóé brò¨h):‚`œ{)%üpºþŽZ"AÓŽÀñÀùX|[ÁU`ªÃH®o#²F‚O¯‹¢^«4j´òf-Ð¥Xd0‰iÈÀóåà ñ¨A"'©º…x]Þª"»ƒE¦Úòñâ˜îE|Q€ÿòëS7%“Í uûÓå% œé­úÓzuX`‘Ùc¥(qÃúã#Kɪmúœ†±^mñ}}d£'¤-ÐÁ€ægˆ”(2úêê3yô!P ! د:±â:¡Ï£q’Ë(ÄÝOã°¥•™0j¢{nömÒ·û³L6@¯ZÒ÷:AïˆtD¢‰‰¸d&¡çüº¤Ù“JéÙçÛÃ0Ÿ b*-JÒSfKaòÂÙ°Rã…šú¼mIÚF‘g &QÏD›µËzà:3˜;Þ<$¢Ä»sæµÄ†‰ECÄzLaIŸ=}[¸4¹HÁ†u iàìÓ©DÛ0D ïÑ»gÝ”rG€øL“Pבe&ŒÁÐÝ·@´14Ü‚im 6¶j{-ÅS¬1ðV¥”Än}¯XC¦n+¤ØÈ·'¬n9¡~RÍ/%ì3•Aº ñ™Ì%IæÂZø£‚B]4ú#V´¤âÆ¡ã’$L~†Hà”ž{m…&‚êZ¥CbX0 |†µ$‘‚\ éä±—ú‚'Ð×Tì«%óøúöL!¹¶A©$Û¿Rø¿ Óó¿ZèÃMÍáe܇E{%ÅäC3Hñ=Tž©¨¹"Iº€JÜa¤Ù”LM—X8èÌ@ë#`ÏbÑݵæ-°Jl—¦ó©!u‘¤ü´ñ„RËÆV·n/Õ½˜¦Žè65º"OÖÄ©ºÕâˆßÚ£6àIŽ Âıq®¥òCt¯l~yÂ-·ú+¼ä§ËêÊ<ñ­ñ*;½Ie*v€‘Cò0(C3Wÿ“+[ø­™ú&Oů?ëùØk#þÚÌ>¥ÉÐ6y{&T)xÊÃïJ=Å;ßšÉ#zCmFØx(ºSš<äÂËg‰à¦¼Äàqó-ÇE Y¸,àLñžzMVKwéH£¨f` þ:æ×X›˜í1³~¤Ç¼‚k|¶K{4¼|ZĪÎA>EK•ˆäŸñÖ8 åO¢P£g&`ÉÖš{[k´CpòL’Ðp„a!äI^¡HÌ´,óŸ%wj St'@zC‹p 8‡$ËÁA/ð2øÑŽYX…ׂA1à$EÞeq­,NûQÓ¤iŠ!%ÙŸ#êƒÚ-k”d VYb·QÜ:çÁj~»@@ ùCé©ÚÔð©R¢x¹äË&ü^®?^ÖÛ³U’eDˆ”{T_Ó ¬d¬ØÝ„CKd_'äwÑyE’ª,ä1:Á$;'(yý U4 +ÂîÕ÷¶Ôƒ×ºJ]Yžúx–  ê! Ñ[A5ñNù•øÏóHVˆ ˜³–’B u'5ì)Gô!b(q—B’L”«Â/×8hv­ï)ôÛ…ï…ÀPÈ7àæÉõŠÝ–䊔\à?­NêP™|mÂ' “ ¾ç…ÂPKca(l2væÊ¥ž;aؽR¡•@S‚, "M«y†2'UE÷V'‹n^¨!¦j\Ûª(î5BžZ­ ¤1¥×& Æ¡êiœSšD6G|ÍÛx(Ú^ªR©D(9œH‡·e„Õš¸c¥3"}¶Éq¡­9´ÙÉ…-/N¹âùD£®€r졼ìãq¡Î ñÆÃSÍ0É8©å’3ÉI† s|0³ÿ„_è ŒÎÓHøGZÙæj`™5‰Š¢«zî“weX–Zgʹ܆<âø©È ‹ré%ˆ÷­$¡äig¬DK 3\×v¹m¨¯qAº®Çסäx˾~ˆÐìNX²xòÔñèñy£–@¨¢ ¯Wl‚ýÉ^kØÈ«23.ÿx*.‹vû9¡ŒVÆ–)À¬뀭á§AtÙ6ýŒïMNÞ2Ƚgi°®‰ŸSê«Ø„ ÅÕŸïmM¢º(_:•4q˜V1M‡_@‹opÀj~ª‚ÉÄõÒe½ôR ü_’¬ÿ¥鯾&ø"þF$ÊgyDEÓß,i[®É Òdæìà@lüõ¯›4SïNá@u¬Ö–M¾ñ­ب“xÍ*à32`ÇQõü€ä[¶JI½ñI#-C¤V{@‹÷¯È®_’ê©ëx+"˜9%þdXP­q‰à£{ÇØ%’´í!Òî–9:>‹Çxk8 XnÍ‹üh®(bÖñ‚5ê C{ 8æÖQà/ÉMËéÂ0Eåü£åGÃL‘Ž)'ÆåD<È«eEÙ€S 5¸gÉ„ž"âŒ_/z¾Üç 6OR†_Чˆ‰%pÞ•¨¸B£´þ»>6ÕiZýI«Õt²¸¼DÉyúÊÍ“©³xÂ…\럓®§'„Äg¸‘"ÔtÎû*!¨>dÅ ¾H™,[d’G Ø,N(j’«xR€Ddg¦ ›q9‹8‰ðößW’àe÷Qù¡zf‘âoUê%ïY¿Š@‘Z•Fy»¶…X`BDq\‰:’‚Gࢭ¡â|#7‡,¡cæίˆA¤~úÄ@Î Áþ9üò4³&ÞK…ÇèÂoͯ& ´iÃðê'Ø A‚ÁÓÑ`†MV;6.ILƒ„GŽ„"3èO|Q‰›Ôà‘ì^òTRyCBð"¹PªIÈFõÉšy \Ú,£V‚íK ±6O¬vj#hŽÄ¤HlœJâˆð®/pLLG…©k`Ÿ<ŸÅ‘Š3C¢åªÔF®Í"s`‚È2fkPY‚Ö±­úoÍPqÝ^yÈ¢¸Lnl ~’¬'}G1Tõdì›ø±ÄœÒWŸIÙ÷æHõðAòÿþ  d瓆{ìj8IæUÝ*Ëä7¤<þD½ ØSw]¶S ^ÑL›)æœÇs&rE {ëæ:U ϯEkßÂO¬ßÍæ’8˜·- ©²ÿÔüXh°Ç+r*@V3lq2ǘ¡ä‡D:ÛðÍ­i?@AµÙ@ÒâR@n‚7ïå$¯±¬‰P”φ֖5Ì'h:‡µ»®vW@Hؼ{(‰˜£“Y¤­Ç1ÛDX× =TzêNoÜ ß©k¥­ó/9{\°”&$ _øP®T«:&ùª2ʹê‚e¡äùUTWP­^Ö«ôpyYESŠ*"åYˆ¥G±®-KCÞò\ñkXàv(# g¨…<=æ —uXÕ|¨Èû„_"í]n]V])êìØ„·ªâ]–Rå@Ù^þI¹:LŽo]Ómº¦³§CeQ¤—ÌRNRÂü/בX›zH62ÅhöEêý0c¬  M:ÐAÅ Gq‚Ïtò`£HÄ &ÒH/ ir‚Yeq ºê™q¶«ÐÛEi‡Ó¨LXi*¢”‹xƒR$ òfƒ˜g–/knGÄq¥¿¬oy¯-•‡IHRöôµäã£vycY%éEñÍÞyŠR45¯—œ†À0ÿmïÿó•(|,—ÉÜGv¤` Ƀžµ8P%ñ9ªÛT({J„è÷î›Þ«<ɤŸ`nâm¦êÊBD]’£¨¿eYš˜åbö%) ¤4K¡N無Юûè7LýŽä`°$SßJ¹iÄ©8[¶å³ÿ{œ‚¼•w}!âM¾c0\Dƒ”™ÔÄuÌéôá{¡˜y}€ò`Î ƒ6^¡5n€È[A`–¦øUVWXGQÑ“|Äë’…®>þ¤ìÅ?ÿÔæ'”¬±tM}zÔBÇÇ|uq2“W™P1.$Ì}+Áâ7Ñ-þ†zĦ9kòt cAY‹|*¹À­áÆ  †§Õ¢0 䨗@5"kÊU ÏšôÝ4Ò—æ†6FaK£9£ /Å#¶ûW`8lÎG59}E^(öWh‚ tîÔ[ŒêdV…‰°òù—1¤¦àB·RFrš*F¥ûdÏEÔ‚ãMCg:ÝáHCN2ÀS¸÷°øXî.G¡²ª9°ÑM MÔ5 Ú/&ò…²ìèöÏ«aˆ„a"Kî1Á°‘åìrŽäLÑý.s½eD¥›ÆWÖHHexÒ‘‘è¯yã§+ö–ó*åÄ@¹ Qdµ‚^kExˆ‡“›uýwŒÑÀ¶då¨ËÀaHe@!’"¼¿-@ŸkÉ@¢Ã–fƒdÓy)0¯É‰Ãˆ›z´cœ“°Íµ}/ £Õ‰\"nAsd\¨3À‰7Az&ºABÏ>—Šë*¶/7/ë+D³ÛKͲÔ5R½Ô&ų sÇŽƒ&ú¿Uú${@t;˜ÍþEtí¿©XáüO bYìÖ‰¯³©\Œk‚bÈÉøryt‡’Gw(yà|EÐn â’Û³Há_þÉâtïý<]®Ã7H_o· O#Ÿ Àɤ$y²Ä¼+ñNXT«/égžMˆ-þ½ÿVí¿UÛ,A²|ÝFË—ßNòù*ý[~ëÐ3þ[þ¿]|†7õoÆ(Ù›|Kîçå;úI°âˆÚdžb”öŸ„²®»‘öâe÷á±Ù·Ú… ~t¶ýEüåòRüåZ†R%ƒÌa;3¥lœéIÛú)•^Ö/ÛYu-Ãý? …Ãh¿›”hÔ*ÇtZÀ<ÒåSG®`âà ¯œ”R‹¢|~0£|bÙ6«D—¹[9Ô.;týNôW[4¾Q8иí'E­À?ï9éñ7+È|q~4T:äþs¡Cÿý÷ÿÀßbÿÿ€*h÷õu¬ˆÿSkn¥üÿo5¶ÿíÿÿŸñW.—?+³å™üýÜ:D—|RyÐ.rݯD—H>§ŒÌ "¾æs¹!°Ûø…"ŽXñ9jÁE®G–°’ÏYóp ˜Š© BùœtÃŽ‰¯{‡ùÜÜwñ¶íjõÚ Çó>†ªb´¡hÍæshš†^ûìÄõ(ÿÏý[¼ÿ½Áׯ}SÏŽÿVßiníü;þÛ?ãoáü¿ëöÎOÎ>}‹:–âÿf£ÙÜNÍkgëßøÿŸñ÷ÎA'þ¹ÆÜ©ÖÕz½½#f9÷mÑ{,{ÏÆÛi%•Xb>4Oú†bƒŸÈ›< ë¦Xkn+Xõjm'^MC}ªUÛmTñè£0³$Ÿík‡CÄÑ+ÊŠá™rß;(ôTPê{mò:Dq¸O(¾”Œ¦ûaÿ}÷°{þéêäÍFŠ:~+oŒÂ-ê)»Œ%ûŠ23%%'©Æ™&ö¸¶u£¬ñ ;Nbè”,XÛ«6íH…ìñÀu‚+`œáÕ¤?¸âØÄ´@•ª5â#VWŸv«Mž`%¯9zõÇÊ¿ïîîþýsy_«UÅÆGUàÍûÍö7S`¨¹0•$'GyµëÁ8@Ÿ ¹c;ޤþò;0£?lþ!Öͨ)½x+kƧ]ž3²¨nE1OÀ¢—kzƒ2ùéÔëoÆÊK¿::¤´ `Ó±,ÇÅþi·MáYíéàjÁÀê2;ܬÌl8¹}ÒAÆ ›Îtà¡ÆÏùÃÌŽÃÀ‘C_»0•´dÒ2ò´ž–¾T,ÅcWÝcZ¬W'‡«,ߣޑyë ›mtÐW=ëàŠó=Š»¨?6¸ç8PWÁÀšBÙøJÀÆsbUýùu[œ¤ê#Ù  ýÁìÀ¬Õw¢Âu£0pèm§¼±7¤5‹n©ik_ûÞ|VIOw“\ˆÂd…ÞÚ)Sµ-]®¾«»îSÐ`2¶ˆàâOö~C.žÍX.ß6w+ì ÔDË/ו—/¬.GVyžÇ;š=ÅDÏäS}X3 Ž`4a4 –á Håüî•h6àhdåå‡Ð&ël¨ÚC( ;Õúöoš8œfxõÿñö¦íi$Y›ðçé_‘­î§6;Ú¬)Ûƒ’)K ä¥$U^ ¤$Êhl©\žßþÆYbËŒl÷¼¾ªl 3öˆg½ÏC0óaº˜±aóQpêr%ÞVd‚‡¤ñxþ‡F$y’àåÐÿ˜#ÍÝïîâ¶Œ‘Nµ‡ i—÷¡/:?gÒY8_ˆ¥«(ApØ`,ñ@ 8^ê¡hoEàRÐEP´§ û7UGÉ"V%M¬Ä£]Ú5Ù´o0L©.©„'¾ \;ÀfÔ‹•CÿÄ¥.Þ¼˜BŽoH_¡N‡ECߢ`ƒÎÁö¾l5‘:\tÚ¤ª”ïí¨;:ö®ÃF§ãŸÔšg~¯-(L²A6kŘPc¨Æ—Ñdo§X­úÁÂ~…Ï4Oê =*p;û,:^‚‡}ÿí$Δœ#Ü2·ÓñÁHÔÛeÙ'Á˜È\.á AïM§Q;öÅóiÁz Iý JS({Õw´ÞzT™¬\Þ*Þ2ÜB)ȪÄDàÐ úMÑ ½§Í×<ùÇõ{ÕC KH ó°0š/‚Ö» ÜSy?q~ j—ÏFwŠ-•¥·TÕ.ƒ¤¼0s´uÃ;ÈÙ¼ÅnáEaU¡)¸Ú®`­nµ„KU°^ò4d²ÆÄEˆ?ðšÓÅ4»ª_|ÀzÀ¨ƒ•¤WÃõ”ð60{ºk?â&Øð/Ä&3€Êû0&3b‰ÐC£0ÈÚEÅ^¾ñT2d.Šhó¾”kú%ò÷vô×&Áb:=yGá8úô”µè<ýŸiª²ý@]!‡£‹7”…Nê4 %Uav?+LÂEqogïEÁ5.ÞuË :˜J²Gƒ;Œ‰ÊÁnß±§jÇ~t5 ?ßx²J™¶'-snÂ.*¤½(0f,;ÂþÀ„Ï>Ýåiûº¦GMåéh9M½‹`0¢ÎWpÐ{vç«úQYŸuµÀ[`Ü;ô^ Ri‘$‰HŠ#`Œó E}œþæêËŸ~ þ >²VkpÔfs¸B 4Zõ³¶àÎHª¨7Fw9þðZï­ø0W2©T,•­ëÆT1íÊ HrÇⶼב­öFp9 ªÅ'ãØXÁ6!H«Q%šÐCúbNtñ_9µŒ|i)¿4š ŸLwä0”pò°Ï—þ”ø£9D8‚å xEqøuGöÌÎË6êâJ87Ây0cè@@`ì¶ó»/ò»¯ô8¼õò¯àß+ªà½w5 ¿ˆŠÄå»[¤çºÅ”AÔóûÓáÓÚ7ÅwŸiúÈ &JÖÏᯠу÷¸#Ñ`÷-çš¾DéïZvŒZpã!ƒÙªûÀd~€?ÆËUõ²æJ%Cj‰ºíf«ŠšËF¬8Ms3TÃàe‚;d—·€nŒÖ›!'Lè–s';Zß­×ßÔ:ÎÆi#<>>šä—&ˆ@ç¡Õ&®ÖÖ´„½‘TOw¿àªJp˜^ñêúñëþ-ýùvS¤@¼n½Ù„uœJ:Oj›ƒØâ›ópÉ…üøó);Ò^»¸8kŠ.4[]ØL­† óMqØëõ³Z·kÔ³£&úï]œÕz'íιÙ›ñ´%*yßîûµz½a•¬*fæä͓ڿ ’šб™%㑞JMPúá[R,Š[ âüÿ,ƒÉbt; çz5öä9´ïmAHBœvÒ=SÝÛm¶NÏgÍVãÐÛþç6° Û׿m‹KC0*á|œµ›¡nÔ ÏmPà̬Yk÷‰Ukµ{~ëòìL šޱ!Žè 0 攓×ÝÛË£6 I÷âpöÖ÷¼!hiWHø:wžh§·KåoOv¯†zNI ÈetsõM ËD@F‘ù^‚xÃP‰™Ñê¿–yaì¡èopºD´ˆ½ÅÇÍÒŽÔTë®H9l‹™ë?³ÏŠ®6x°ª£û¥m_øÝFOnµ‹ËîÜÖÏ$I¡ÊÐæ’–´8 Ú¹ÇÏÑY[ë%Ø”‹å$¼aÞüòþ3É¿˜Ð%}LOŬs D…``˜ÀúþgHꣾU‚d¤Žõ^Lz<ÐÇšËòÑ-ÐEOŽøl5 Í,ìªEG)ÉšÅí|^¬€èG~0ŸŒóA”·Àø½Fç¼ÙªõÚJè8PJ‚ÁX8½N»hó°xïµË©Ñ x¼ŠDG[÷XK­ç7ZÇÚjå¿õ7Î/z±•”>sú7î¶)GY–”ºàØ3µ vðÒ›`_o‚º¦õåD‹‰ý=¯õêoüN­uÚ€[ªÞ>¿8kù)ØÈÝx‹yƒ1Âabõº­¢ÚSB?âUF Ç´w ™VSX×”ÆmŠÔí˜DF£˓1’D8I“‰§¹ôxPB0Áı°¥Çñ°à]Í—ý§ü@õÃréà z£;kŸ«½BIõ‡é<ÈoFÃp ´=@ÕeÖ(Zµ¦\HŸ0T¢¶™×Û@¼¶³9ïú}ŸîèSÁ®b¥.‰_­Ò•¨Où6à>bš‚Û儌½»¨)GÉŒá.©nô#ƒ!ø‡ŒÿÿåÅâÂý+²m ÕŠ“õÍ4'ô4ÇÖM$ãJº5YU!«›­Æ @räU…ô3|Wd¾¿¼uœuG_ ¿ž\ÿV,àŽÍlêÏõd+Ö¼Aðœy¯ŸžáW@ÑÆæЉB/ØQ^Mm\ƒ´K$ýȾÇà,6>Ú#x<ÿ¬ý¾Ñ!ö±Þn½ó{µ£3uYÿDWMŽÃÁÂD·‹N€HÆ>Älh€ö†Êý Óg§ Là¼v¯J$#à¦jõW ú.†¤„ÄC•AVJmþqãèò”qGtùŠ=Aeû‘=Aµãcÿ¢v fî›v§ç}ì5˜¸&‡T€½sš,bœ1ÍX´Le.¨Ôx1Â;zÀÊRÌ9f&cUwWlP´û‹&P#${Ô¥QFu;~lKÆ£Ýø5 ýYNÀV“/£¸ÊXð çgÁ«ÎÕ-iBÆ´»pá{JFÉ:òûO°â)“‘mu·€¡ßжHýW*ïßfí+u2­J3¡e¨Þeçm³ûƯýÖè4€Tì,¹4²¥-x Ei2Ñ ÃèÍŽÚ1-‰®ðDˆr±B.F§'!PÐnKA U`WÓ'¯L¬¤bQ‹½¢¬A£5[L"’}:¿<ë5qw‘%ÞLEÇþð µmc˨àj“àÊÝ›g£ÞÆÚ´æÑ½œ›•MôU¹R½é¡‡ªeÅ{êòÜ‹™»$¾ét:.Ê-;(Ìûù†JÇ *›Åã¨d'Á½‚qþÖLøÓ«?n¼_ÄŸ>ݤ,NüÈ³Ùø TÑi;Ç"£UkçT,Æ" }!ôÞ/Æû-–oP8@’ÝèÖkbúQíUoŸ5јK(,pÎ'ƒ=¦êʉ <˜Ïƒ'ÌE±- 1ƒéx<Âá ™"nÕj¡dŒ7£ypL‚âÛ`!8±Ià±™_ÿu!îÉÿµÙÕAƒ~ Þñeé«b!Q[Ö¸¬ç½ÐÅÊz¯H‡²x÷Atïô´dº"s¶œuàN•N ”V]ÖÂÇ Vø{ÆžÁnü¤€’£syô‘¦»vî×OÎj§]c‹Ùj£Š¹ÅÊ;ñê$àß4bßwƒ]p—¥ÒúZ2,=Vv@_éÃßÕþ=Ä¿Q±¿‹ï•àï}|ºïõÕzu8ƒ?¼Ñí•´ýHêpŽª»æ^á°(•®W¿(WvËFµ UÍ¿/kgÍ“f£×¢øÒêá7cæK–PW6gÕt¸yæÁ®*hU?@úq \èÈÄߗ⇂]Mëªk]Î#omw#wÞŽºÛ®Lú ̺8óùE.±–™stQ7…^¥!@Uî"Î&áÓ+ï²pyý\¹­8ªÊ¬º«²®¹Ûh‹|;1¨Â~ìW½o0$ÃZ*(tóm»y7î´’V§J¿#CazÒl IAˆéÝÝN þà ~Ý)óÞ‡Ró„RM*ó ×®Y½ßmÔ:uÁ?FC먛&¯ž×žB‚AÐaDn+S,Hµº¬áJ&·…>_‚§öÛ­žʪ¼ÖIyHg‘ÆP/{%u?v{sô¼ÂMoÿÜhÇZ±·ÄûéøVPç;¯ ƒh”?ž ÆÐmªU²îí-hI‰!ôp$Ð'Öl‘+ö¾ gpn–35¥çGÆ´²`&dŒ|y/‡ÿ¦Iðd¤"‡/àc³®ÖÔœNç“p4·ÆÎصŽÌq³ ç938K²‡ë˧¤ô’é=À׋R/˜zú ®:ÔzpN£áˆËK‘Zj;hdnJü!|ËáG8‚âãÕa?ÞàÇh0Ëâ¨ØYö‘¬Ákh¨D‘GÜ3ábIz¬.~‡Å¶ÏÕ!ÄsÞxínóƒ×(ÄpñãÃc|/*ü¦.} _×Õiâm-#ÚÐÏÄ…ܪÞyU;åöf/´ÝL.=\6zùA@íâ¡n]ž¼e¹Z°+qisÃ{—X;öÍQöËØKd“&5…Xóóp€ …ËÝc¿dx@Q@2Âl a]Å!³eÞœ'¿ÎãhuOz$ÖZÍÁ)äµÏ1r„ÝSÉ<Ýp9˜U‚5Q?¯‡Ò­yq{·§P!öÅþ(>4Nš|-$ºfh,öɪ‰`ÀÃò šå©<¥4㎮5“œ÷ÂI‘ªò=Ž&ÕJQÕcWb+-`¹‰áFaú]ýùséù+g¹%©Y«ÝjàÆIÒ¹fË9i1ܘ`×ï‚ýøþÖÞâàT@¡-ç`ã-0à+T[“Ôúr+çåÛr!ÞºI±´)OSŤÝò¿O¿h(€YQž'ÿ•¤Tb0Ú*ŒÃÑ‚pKêr…£(~Ë£» âƒÎC< A”&}[žipƸY§“{ ê'Á–…²ß¬K“<þÐ?#צ(óÞ§K œUÉÁßU)ØýœbÍQŽ©”×t—”+Wâ&ŽÿX½ºqöZy>~¡§üù2ºOsVŸå@ a }6‹Äû2ƒ#_z±5£÷…8Wèƒ?IŒ…ÜØ‚®‘ªacÊÈ:oAü ü i³Q:iåG‘•ýÑŸµhèȘ¶Œôž˜CÁ³[˜,kÊöA'š‡™\¶º£oV¹eß‚àDPàãö^N—™æWmµ‡þÄQ*Ö¢uA9Úàˆ¤§®°FGUÚ…ÓˆºŸ*EW:ôM\³Œ¾d©œÓçKÝý@Kw?ÜR¬ý ^ͪÒ•`øŽUrU9X…”5Y,¹©Ëb)ýä­Šî*z„þ|4ŒÄi.æÄmÄ|H›¯ËŒN’Ž—S¹oðÁj_¶Ž7nÁ¥%µ”²*Ô¥`Îýóò~ ჸ h§J™Ð*Iþ!]éè6²·ŸƒñÝ|„–²ÙìÉh7ÑUe& J5lËÔ{/H¼X‘‘µkO®É[¯~T«¿b¸ã5Þ5Δq‰}Q¬Ò¶¤6¯=¼ ‚ùÐM†Ñu9›…O>1#T “¬Ì)c&Yœ·Ù-п“4"]ð ë0šÉ‡ŸÃqƘmT‹O8ljȿàà•ÿj …”€×‰ ŸH÷ñ`)6¥ å›ÚgHvÏ­Ù ¥43‘l•Ô†ÏØ‹˜ž,c‰ÒÎ5«Mžr^-¢ØÁ¿‹ÿ9ïLü÷ ~Ÿý‘øz*n¬O–ªÌžXi#qÈI—Ñxa‡k¸“°&îp£œ¾M < à‚MÆŸÿ,!ãZ0æ³’ºNGÍžY¶?Z—¸kæ(ÌË¥|K¥˦k­µ.ÏõЫ¢ÙÖ4¼þ® Íu—}‰L–)ª…J6V.f²i¬×¼^¸ˆ–Œœ«k†O‰E鵡K]4£€Ÿ© Ôë<xí®ç$ã‚:|À½U)ìd u÷è¾³JÃì]ÍîgùaøÙ+WË•›øF)k¬Íi f·!9J@7ûÒßWô~Ns²šy¿x‘&†¿„ÕÑ{¾>ôL™,b]çÛÍh“侄Ê眀9)º–!•Ú§ ùöM&kUÇÕ¨w‘¾É’®¤³#P“¢à| (öËÇ›‚]ÇwèÚ¿c›©&vWãjÞŠ’40 ïÃü9´F¥Ñ 2óú—¿‹ÿ_Ùþ_ƒì°(çÌF,‚é,Û~n:¹;²¨Žþ r-ïÒFìÐñÚØ˜WÆÆ<uË»öÀJö£Ÿ˜eôM¦n²|°TK* ÇÍŒnÁC £&Ú‚+nÕСñáâ¬ÝU°]FÚ¬Q+Š΋)j)ž!²ÑT‚ÄL ˆV I¿r×^ bV7¸?WIˆ 2øÛZë#R ñ› Æ[¿4n¸ ŸŸÅʯéó®Õ‚±Êæ.©ZÛ¿¼Ù.ÙÏWRwI9Îmv’Áƒ§©#„¸ÍáŠÝÞ[!%uß‚ëó»vóØc>môì[Òj Œ±óEQ-W7bªÑ.ãf­–€TÎjà: íggíºnÝ7 ,u='Qœë™×‡Á³ì×I̯ðå9}ñ^¾ÒÏ&æ³É77›GÕ•YU©jœÇ-º5ŠdÈÌPÃ|°¼ØÁAÁ'Ÿ b×#r‹÷Ê+QÔW Q½ ´¤é€WxJû²¼oïË’ýèg÷eÌçq3Bâ¼^hZŠ™Âóì³bâ £g·Ó©ø[|—[Ô,`0'8‡b:ÀóŸh§x$ŒR¬0]%|–´‰‹œ{ÀÐUFCM´;MŒ‘k^RP„Nã¢!$Ùf«®ÒÄ"°C¶63q%-' ïÕKbòtÚR¨™ù äý釯1Ôµ(S…ãˆÔ£ŸÞ õäpº!@™I1'ö–ÁØŒIN)Ùò¯M/ß¿eÑ–u1”1Á_%:“)Á®‰[¥ƒ'¸Ò4éðФb4™f)ä]FÈA±÷é‚¥y qm`¦·nʨÒé×XÃRÕ^Êýèg×°”ô TŒ§å§‘÷1x<ʵƒÃ;• Ö£ÀyâB@qñ2ä‰ÂX€Üš#3i˜˜“ëSu@\nÑäUá.Ãlaî‹b•£Ìu-ç]ÿ)þÿ-˺¥ëÎ<ŒD÷Vq¶¿>Íת0´~°å4Æ›ó»ô™ÔŽ Ö’–ÍàצóÑÝØÙa.³äñ$íc¯¹âeûÑÏ­8×k $‡ÑÃrxç`]:ÇméíÓå’}D'ùš¥êêÏwta'pì s»fúºA`·gwï;D ‰{A)ÆÄEHC>°×fs²Ç^S­Cc5Ëöj–ìG›¬f5_*§­&Öa{Ň«Ø00Û(Jx¨ÄtžšëO¿€.àùäUN~ÎO^é>%8Vò5ÀñˆÈÎÓ) |4sI©Ôc|QŒÅe7Æ‘1Ù6±,kb¹¿1±\5Ù¥¤cÞ÷L6Êà¡[!qc´b«þ¦Ýñ§Í–Ä”À.Jwër†hjúüí‘ÂÅÞà‚¤ýé–£tÁ=÷Áü&²Šü™³˜rB`°Ry3ÇšÂïüh[°E.¦3Hðïîb~uƒ».uúA­þ®sµ#ñõ£Ÿ[ý]SDµ˜Œ7f’£áŦ ñ€¬ƒ±ÂÀöê%âjlzתuOó>.ÝT¢Þ"è ËQÖ1[¦m‰nE¤5Ó{ÃåÃ,E‰ðë~uÉ\ý~¹ÎÞ<þ×õý˜}öü:›•7äv&d³ÛY=Ãå]{òKö£Ÿ|#@Š0w³7} ˜Â‚!·†«]@ÈMqbˆ„þ[=ÝUuXÆÁåÙ&çÔþI˜Ý®¥çexN­–Éæb¿øÃp¼| Ó]æ¡ñòêÃß: 0v6Ï>#X'V@aË¥øcÇ®x:‹ÁIë'¾D›*kœe[t)ô¦~ôÓÛ)Ét|\ >àm n'70 çñt q– |Ñ~ËnÁÚèÉQžê5[]Ò"ÚîÆªèUãt¨¢×›=ºNÖ^á^ÓŠ¦³Ó¿_/ ÏþYä>ì8ü¦Í™o•Ç&ùV•zã–ÊbGÐNúWk)P`sr+Æ£Ÿ¾ªñ ¡?%LC“¥Á¨zí¢wÙiÐÙJGfY0 H½ŽÕªv,q Sk @­‡iŸpå]gÿ û§ÊTaH—\ÛëÐÂ’ƒÕqö Ïp{ ŠË}ÐZ$Àc/´6¡!ÞgüvpÚ<ýèshÖP*ÆDPU©¦Ñ˜ ªÍ–¡|%s•kI†ÏŠ‘×æÛ²§5v‚þLf¤v§qÚøà÷ÌXíȳ=‘K§Î *„Øò#A  4Fw1šTN‡ÑG%•†kQáèöVFôfU³†Ç77[o_|„tOâŒ{p£A ,¼®NUÅŠ~Ý1øÑÚSµ›/—SåÓŠÄßÝÌÉê¨*¿XÈüƒ‡ùsdêrQA$Б5l ýaÊ/¶bÕØ€'ēۦ‡3¨Ñõäü,E߉sk(8Ô“þ”r6Ä5§_Ò´VŽæzEÑ Àc˜~šû0¡öHþ'¼5NcÙñKa×Tf² à%äû²J-×­G¸ æ*Ù¾g UÅ<Ý}Mn ?\Ir–Í«&+çöw´ òJËÝùÝ 3%£AÐêy##î¬ìªfçP;8¬ÍÐO2Á×Gý]×Yd§“¹†éÐÈÔqðÈIÄ¢Ð;m]zœ ¸,£-ŽÆª­lêɨ‡f““³e…Þ8êÃ;à²'¶v×3Bkì1¡ç)³HF,aöQ¼óeïË}8¡×nƒÑ8*xv5¶ö«y~Ù©yo§£Á½[ü’zĈ’6Ê\1Z©™è Z}Úi\8‡e8-°·¢°ˆkÚõ¶ ¹fprˆR£±ÑE­e#Èë™´¸ 'AsÿÒý ÂÊcÐ{]·›Ëåsq× sü{° ÿVJ•þ÷E–#@uz?3òü% taô¯²‹¡@,¡ kس†‹™ßM{ÏMÆ€x•‰íÆq~ª O[=ú R²«`hÖ×Q:È—^¤Ö±‰ÔCý(¹èân fsq`¹¸ÍØ@äˆJÖ…‚Â!™þÍMdEbH˜ ï?ááAØu“Š¤Ð ©'{a üÒ3h4Œ?ïŽû §»â—mà[ùæSp7grß²g“Þ·…ö£Ÿ"²àæè²R¾¤ Hh£8ÃK)½cÿ/:FŽ;³1æ'BƉ¸FÊÈd?q×aº'×z5¿Ñê ©¨çœ Ýo N!îíà¨n]FŒx–I!÷5{¦uÎõx$Äù4Ìð?ÛŽŒ4”Ü ­âàšNëu9ìP_ä6 ƒX9û|ùɑ5…Ñi‡áçÃÊÞÁNÉÏ ´øÀ+=ž4`èä„ šÀR)¿Ð¹„.'\<@Ê圢>pðbó¯»ÏŠÞËÿëm]?Þ†[ß;RæÃŸ%«Q׸TÖoìöÒ {·ïÛ~v·cßK}yO#ÑaL§æÀyñ^²ãÍÆq·»*&LŸ†£¹÷OrÐÎɯàá³Ó6Ä:™`™PMÚ¾ “¶g?ÚdÒöó•=÷¤í›€ŠÌ›ÒÁhb¼¹—°) 'ù_—^]ÈUé'Xé¤Bü Ã󒼿¾~íždõÀMŒ;˜“]ûÑfsRÞI›“L XGiuIRa‰ÝÒn è±pŠ6À^,^®‹xůëyñ9•#žäÐG6½;÷鎵ipm,vã“÷[ðé~,.XPç‚®;ãû¸óÍ¥Ù±m8­)f´=îÚ Ž½4¹KÖ¡çé‘W>(UK¤H YÕ]‰ð08¬µ ò̆,£UÜëdNº>GFÊ^eYŸ}b„!é—[BL ûÓ#ìN¬YêsÀ)¯d¼ˆ¨d¥îؤ̖8³³û­œ·…¶~·W”)t=ô+Ÿ•sÊ„árðÇÌ% êÅRƇAu&:©Ê^D±¥kÀ'ú;ñ|pª¹Ê½Ï«ö£ŸÝ£›’öÝ|5õ¬T’¸‡?r§·Ç$üŒûmH¸K½s‡Œ§_Ä«%ÃÓég G¸Õ % •“<·ð™Gƒ1ت12ee4J?¿ºú=“½y–¹Î\ßá÷ë,ý’}–-ªé)ÛHkÃÑç`439o6]ºôOͦL©<‘;{k0óò38¹hœá P§ø7[¦eEÕ]ÁE—8 Ò{IôTJ€³FÙ‡"Ïèˆû‚À=,!Q°¨‚ÊþÈ ’®1è„ <2rXr¼†?ËÉÚ.*^oHÎ]xî´gÍs€ìâráÈ8ÎfòÀY‹‘±ÖkŸ7ëÒdcÙÄ5¨hâ •Mˆq‰¡LA§VZÅ‚ý>mDxß¼1…&G¢éw­˜ŸÁ\B¹9tH¼¾M†wŸª/ª^­ç …mWY â”Þ½^&»[Hms‚bŒ¤‹Zç^c ¤sëòuKÝ7µNƒÝ™iÎS•ø2ÐÄM”ÞÛ¿µj´¦áÍTðbÁ†LÆkç=‘à ¨£»ªÑSšÿ²Ú‚ Õ¸£ñ~ö2Z¦„{62‹ÚVîû)ñZ²;`gE[zÛmÛ/ÇV[ßmCi§ubFô–ƒûFM ú_¯C‡áÌ%R€¸ÚBç|ÔÂ9–&®B Ž}ÞFEnJ-õ¯ÕHɳ¾àªÎ‚®“5ÞØï!\ÜO‡+²FÄ+¢ü;‰[›cYŒXX%`Í?+8Ý{hM˜øÅšÒTÆ¢fÊÀ¦YzÂÇ×(_‰St $S—>ýŽ÷“(àÉÕLšΛkç—oÛÞÛ`-¨Ï Z†€¼H’d,ì°7ùËÞQ¡\.TªÞ(ØÛY…O ŒZZ8  YT“ÉŸS<+•$!^í½¥ô9ífË›C…÷ÜD†À±)Zé­hL„ ˆ‘•0U>÷ŠW×''yøë¦¸üÙnÇá] Ï ºCï̹tšÃôEÞKoKtª^¹~¬•DÇêÕëÇ£ÆÍ– þÌ2ˆK1+€ÏZ”ó&£qÎÛZ‚žD¨‚­¬ÜA’ènÆUpÕ`åï†HË:*ë!²QìéÕMÁèKÒk5U<¤ð@i¶ wà¨Y ®+ŠÁ¦»$Ë£%¸Âm‹Ôø:-þÔ-›L Ÿ*Ö}´ ɇÌGOìM‚|ï ë)¢š@.`ò®Nòqõ/cˆ‰ÆR;’FJÓøwTœ¢®¥l¶ŠlדTp´Èéó‚ñ—àÉGÊ Âdz´=™.¶“â6f´ØNU-Q ȶ¨/_Jïmþ†üš³j?§qHh÷7s‘8«Sï@î[Œo¶Ò€Bgάg¨ª1*Ò¦B¨È|Å1l y/qü»và˜£ŒÉØ] ð#Ú{'-;ØRI3Ÿ&p+À¶ÖN›½Ú*k>ÇÙZxàŒ”Xöñ\§Ö§TÍEdäí4ÎjÇÇKT[üT;êꟜômÄ^¶ÀÅY­'XõsÁÚÕΚ§­Æ1eJ«Õën7›‚ˆÃpÆëT˜´xú$˜'Ï.æ3RùX=ɼo¶ª•òhe-(+(¬¶Ì~ãyÕ–K%q‘f¢éí»šA`•¡¼:ú2>$¼Ã«Ãh ÂC˜³¾+¨°ô¢PÀ‡79lá`תc8VÕ½2|é¨ÌT9kôÎ`ØáÅÃa‹Y¸4æ/é<¼Î@«’ŽQ‘„K—\€B:\E”Sðêð6¼Õ°šÔÑdV8ÆÚj´@vïõ`9Ã5Ó„êM 7RÌpÈÔímã©"d“š”{ù½ï Î éB>& dÐÁ°™ü+Ähµ{ôã¶tŠ!K³¥s+%TlhïŽVð–6Õå”^¸zuÚã>| .éAðmÃÑ݈€H%ór}Ÿó®ß¸•Õs˜ÌEóÆÿpÜÔ×nÑ&¢§Ë'ï8L—)`Ããå@PY„.F@wƇ_mlúý*Èÿyóµ’ûöúŸ Æ:‚uæ< ÀÞo¦aØ«•­p¨ª6×”6Ã3^³DÀ‚æCX䑨I‘ûÞáì(Þ?FâÃRPà_¢§¨HÄ÷þÄÛýct ùŸ=ß?jwÎj­ãºïÇ™ÑÖ6Ê>¾¬Zû<šŽ‰ y-²Ã×À!%…:¥%ÅP¿®¹ HeÒ8o"9ºQb2V¨<ß²ß1]®`Q½ZÁ{?ÝaÕˆS-a®ÙöŒ¾¢Ò&%6WôÆ8èD0q‰·ó¯ Ó©àu½ç^™ÅD†EÝI;EÙúNB®_Æâ†$”—ggp*¸Ûà|i™Ñì†uË%›Ê”ìG?Oe64ìæ+û+¨Ìê®lFelX9‚ñ7„é]ïÓÙ“/ƒ¸¬S /댶*ÎËL(¦b@ÂE€JÁú@õ¹*Þ )Ž˜œó0Ž ek¡÷(Â×μ+îËŒhQ¬΄ؔéw0õÙÏd–W‘T#š6±­®ÕíùÝæùÅYC’IØåðcðøc5 §ah“&-«Â/mqŒÑ¢(³ùNÄÖrAm‰Å?oœ·;‰MȽ*F¸uW,&¶¬×î:&v£Û÷Çj‰Ñ5•ØG4…‹[Û‘ 讋'×-ÀZ[íS0²oêÝ=7‚/6šŸ/ç#//d÷íËNóð°vÔõÅïåÿMõÊ2ÿlÝ/³ÃbQÜ®°; Óù]±6ÎÉ7«öbkÛétIAºóOîXØ$”ø}ÀN„HV!$¨ôѾ`®ÜÚ0Ô2Zv¾î)圊ÿÄï±I$&ˆ‡zÖ7€A)T+þY#»¾ôQZé#³´f­OzÒ”÷ dNà£ß—N9ôu¬}zì:˜¬&<ä[`„ ùÂÿ,!#j¤]Â/*íÞÊ`ýd–>çº%N.M/ è Á™…s°Çˆ¡DBBQêT•õAbœù’©X›€\]KˆM eÙNDé%Q ݹ¼€Áºz‹2–­¹¥„[.#Iã4–ÙÏ*êP•˜ÒïšéM”U¥´>8ëôXŽ–A(òg„Ž‚öÜêØ( %*$¤”¥”›`õ%=©º£AÉ»¢ó“¸†uÒbæëxÿ ,#áŠp^a›Ê] ªƒÛ0=Á#okð˳—ØÃÔãkö *ɼ>¼ú}ëÕÍó¿¶Ä¿7϶²Ï_©” ¿lŸô./ŽÎèóKï:DnÁÈ×'®¾¼ÜZ„‹"$iùß(.‹»ðå(šæÁh“/o½Úþ/L)Ÿ¹Ï£ùb îºÒÑ•¥Ü®wð-^y^TÁÿ\‹R}@qüGo[öíM¼ÙÁEª?ºóöI¦Kva²z"sbc¸-ØÞt°@Çæ€Ì¬\:̸}Ûp¬ýëêþþþõ@çTç¶ŒUÔiï˜USÌ/¢ x[¬9jlaÛòûYÃé ñfRçlïìVÍà‚è¡O5”1ö…N™ d9ñꌀ ÐÔDb ‭²BQ“â)S÷,æË´=»1Èô’É*®„Lß”ÉÛw4·—ÏvDó¬ŽÙÊÉ‹†Ä£a^¥.N©½À(™Q£u—˜ÔTØ”SÏ— '}ôúm#AìÆ´v\,Ãæ9â-Þ4;ínuÁ§QV%Zðy‰Íž–âûÀÑľS(G†Ê%• ™ZËô;¦Wz2t‘]I öÛ?C‰÷6 ÄûAHžG‡cq¸9Ïò$ï¥M€[-!&@«%Tšè”,>-äû‚å02iÈ÷ÑLB½«>xâúŸpTi¬ˆXÕñ“âᨠ9ž]ûÑϪûÖÔb0q•4WmY‡ÞâÎÂù≱…¦LAl»[¼H¤,xÞ‹Nû¢Ñé}ÄTä±öÌ[‚3*m7£mœÔëÙ×B¡ð mg±Ô é¾³”Óu:+ØÞüvG.:“æ¿Ù5zcÇ ³ô?süž½g ¨ ä(Q5sÁï0„œw}AŸ¾»ã† “ÌÖ›úåùÉYãƒUl÷Ég‰UaÍÀŠpwËfa£á’M åòf…ÊÑŽh±1D·UÌŠÄaÜ ¦Jò6\Qÿn ñ°¸Qìçál BéèžñýúÇÓ÷Í–ï#)×?Ÿ¶.ëâÇX+6AÇV,Ýsy¿âÔ=Ki& g€wêð@Žmû½?€¿€joï' î¸ËªméK£®ZÃZ*©2]~©–YÅÆY+j8Ö:ºM‡ˆ™¨m T]ÝŽMfwìG±-²YòÌ™f^âó쳿à7gJ_ø#uH™ŒÊÅ[Y{j¾/†¶Ä¡x§ƒCm[â€ñ‘'Ú9žTÜhe8ó ú” õk_v 5w×ß©]\4ŽÕŠV¬Œ~Ó÷ªbfãì€÷¡vR‡ÇèSÁUR ’,Pç9=kÕÎTŠ’Œ„ØBl‘4£$ù¡bv2»n1Æ”íG¼1៨0»0‚Åá?*{{ûûzMúá½ ×n÷¹G 8•`ÁÖ à!,­øÝ4Ä„®³¬ÏÕ®=ª’ýègy¬ÊÆ.Öéìù{BNýë¯Ä¾Ÿâ‡$ü¶ö@Ó8âY™æÄäÕÎ÷v¼×Æ|•]s…ëÝ ã3kÊÎz›<§°@oÍsúóÁ \‰£á¸ºË¦c"Ì.,PÛ/-IÖ¥l }Ú¢­ì-ðO°˜Î£D}nû)Mù¤˜v’_kïjäœ0žÈŽ>id‚)_s“oEp%KðYLx¹`5™~ë[1kWc­1&‡˜>Ì*B*åŒlŽ’œ‚ æ˜àEŸ'l5}ŒI Øtó 1ùùˆlq–7¥ê*#|à÷`1êÆ£ÅSvE›Ãé`Ia¢XÎ3Ñ“c [n&lñê4N}@è…ʱš¸N'¯ VZù¾øœƒ3„?H…Ñf> 7»ÿÕo ðÙ°ŸéÇU9?µ™¸{yqÑîôü³Æ»Æ™ß=Bp‹ëRz)£¿;ñþ:QSZX -èlEo·‹Ú.ÊŠ?0U»øÉ¨-á3ƒ#ˆÜ^gô¤Ùéö2berÄ8·¬XÎifPC•¾‹œMdPŽ(ß ï ¢ËÛÄÕ#€"¦³?Z@|UC™õÐ_Þb=ULý∠̧¤Õ?KÿQü!#C5§áT)X»Éíx4XdR•ùe´d"Õ#>1&ºãÆ "¼½ÕyÖd¶Ê»’nÁxÜ+G(*×¶ì¦Ò¯2_åíî&u¬½z~¸KZU '§Pà‚%=¥Úóå}·ßÒŠRAéR4`ú!4"möbÀé²v7bN0…s@.¦Y€l~SÔŒôDÎ]c Ú—Lyz™Jæ){iÛ\X´l'Bp9²¡ç"þ.Þ@%ºªtè›;vÕ:xZJrµ‰µbýâ™Xr”Ôr)Z}¸(Ð0Ú|ŠuÕÀg5F…° Áiܳ˜k\ó+.ÄÏÁ|„q‡ì)9VÄ8ÁMd|‹+Õ x *$®øñì>è º$vjÔ"sù¼T:>Ér¥[Ý.»€GÑ–Ñ}Ó[[Œ büI]¨„kÂŒqQSM‰„5YÄ^·9Ñ#HŽèe`5zÔ<ÝÕû>P­¬ßn¹ú®"Óu= È#]F¢Z•±²+>ìq$䆣¸xäšÐÂëGÂ;§˜S¬ïnzoÎ&ØÁ“À>þÀî ̦À׊Râ“/¶}V§ Æ:ž8ëÒ¡j¦¶÷xSßbÊL ÍÆ†Ø`¤±/|4Œ¸tÊ¡ˆ²MÐ2|K‰7… ãuOÁX°(ó ‡2Í2%XN™d`!ÎÎ-¿Wÿ\ÝÄ^¶œ‰T~MfW©Ãào €\&¤ajÆhz=1MBÖÑKÖU’äGäB€Yµ%b£#“ ÓÞJ‚ñæJÊ*ñù;N÷èüÈGó”7±Ù‡>0悃ƒ¬ÉˆÂõsFÖô¢ïëÍÆ6Ûž3ô¶‘É+„¨Od1ÆÝ€ËÜpúµ$8Ä|éõ¢åp%Ö·;%´ÅhÙgÀÅÿbÕ÷ê#<0ß©Ô21¦¯K¡ãìâÚRw³=[4  ­Ñôâkî‰+’û終WL9ÎÓÉ ˆCN‘k_öoº†ù%|ûÑOjMÖV¢Ô7eñŸ[}ÃuèKÎ6ïEi¶é¥ù®áCp<ºÅåííHÀ–w„&¦[ú‰  }ó±¬,‘ƒŠPVñ©ÏøŒÍ¸ ™bAÅQy4Ï T“ó d$­ŒË¡[×K톓¡ì½ÀðÐ!-ºšhˆ³¨Ó,„D?*/6Úµ3!õPjÖ éAgï&†SR ”£;Fp/ÄdŠª 0&V‡ØX*Ò ;TÖÀábóŽnŸ)B•Ÿ¦F%ÓÓȆB4}+Ë;)Q.â ÍCLܵ„VŒøC0C›ƒVö¦8~ó}‚ºLÞ7ËŠ4Δ.%óøú)[„„{O[¤…öøŠ‰å°€ÛgÇ~dåàËèv4Ð¥©ÿâ N·>XK# áà›¾Ì^äËû« ßä7`¤xùÊ˼ÉÿéŸvûùÒã^)çùA¶8Z We±è}þÏxùœWË×õì%}mVä=ÃÉçü+¶Æ¼|)í2*e£X£fµ*ˬ(ÀðIœªÑ@YzÖ#bgbN‘™×£læu~”e¯H†Ç¦ñVÒÈ,IJ3+(fHçKEŽÛ—p‹Ú%WÞlD‰Uêw•rÊz£ ;¯‘¥%[Œº6ð‹»¢-âwîiërËøµVýM»£k+½H¿â©ä¹èQÙƒï¼ÞuÁu7<”Ò,Ä&c“ʺ—GŽºÎ.jF‹ŸoR“ž3GmµßŒç›Ôf¯Â†óiÚ¤™z»Õë´ÏsM¨ñ¸»I}¨ÜIÖCZŸM+04:ëÆ¦ Ú¼)T8%{lê£6ªì øéw/juׯìšÏ7©s‰9*:¦'몰éD›bsß6zë( Æ?sºÍF¬}ó‰øº²Ø7à¸~ܸ/§ya¸ßg¯wQlÃF(‚\Û¸µxÁTN*…МòŽKÐʃâP­õÑqÜŽËÍOÖ­n©ÙŠ«ckBHè4»oýß6Äl²Éõ ­úÞºÊÉz.Î.»~»ÕØ´+Ž*0¨ü;ªqŒ†$;†¨ä'¦äû*’‰|g°¡nÒ›”Š>}WeÎ[î»n¸ÚYœ½ƒ;[ü¼É@’¥á×Mkh 9‡"9×W?Þl ÕÀJÝÁZJyÑîvÝ.èx¾ ÉÉù¶Á›{Uk;Àã© Æ2N«‘0_X[‚Ç4ñÊhnÎzæ;i!ñN¼åB¶¡h$êá–“ðElA(‡Ë¤#‡Ø-ÿ?Ë`,D«u¡P$¤Ò @–2ì/Ål2Í#ɽ›O—h6ŸLQÀ§ 8oe®œLð<û,óú(ó ¬ôE»ËŒÎ¦òM.†£)äša¢ÎÍÎAâ#Ë1'•ì iýŸv u§èªbâ©ï» ípº-!d¶%°i€®–A¿½· òA­O£•"g;4Êž™ÐÈ™«ö#ÎÇ;ç– ç\ãMÓì¹ xª(TsnŒ‹ÚŽÁlǪ°Ìi½Ì¯Á,+ÌÚ/ÇõOÔNJ¥«’ï¦J>µŽf·i4kлì4Öñ FI.á¿5´;v5aiX\õjl‚æ98ÌÆ,Ú*$e²¾5b£(GÊÛ¨Cš.³%ªÃÄ~_0pܰ±x±ú¬”ˆTß8| ‡Þ?3Ñ|0ÍQKjeŽŽÕAÛ=î~ÒýµÙ½¹*=žçÅ_'7F|C¹àªÀîÄC°ú~ôÇ(º‚ ³|i}yçIÃ0­"j"óè7 ™…ñ4XÞŠ.»Œ£:½¿ *ì² N8xébì%¡·”¡9¯½÷> IÙpÿ³'3’ :-ºáÂÂdΟx¯^z¥Ún‹_>j»Pu»¼µŽN5®‚° ªpÐS¨ï‹Q#Ôƒt¯ÓóÀTeÈ9Ì£I &ùWH+”‡ý*þ‘à‡ªžÒM«*ö£ÍKS„v‚Òܽ]³ƒ /{¢ ‚k£ª`·fаyœí>K/ò°ƒ<ôÞl,ÀÛy‘KÿZC .î#±8ì>¿×ø·yö×õáôuO)$ÅTq8¯¸U›e…­u š¤.l§p >¹SÂ(çSðŒÝ‚Ö¿þ?piçàƒ¾Ãu;v"â8t·Ñ!}妀ßðY‡Ÿ-®ŒðK0†^>„í2gÈ~ƒö ‹ã*MqØ&„ü‹€Û–à—dO÷ÍPGÛ­C»fäŒ_UHòzgºøU¸oâà­[&ÞÈ…aÖ%¼=îŸòôËëCü ²ÍˆEJn-ršëÙ„ÀrÈáq­¨.¯U31Wc0N¿'Æ©L+¾â^ç’ÇíVOç&Wô5Ö^¬I ì$Ïî’î*î!Õqû`¢|ß$ûö ´æMØ>–0 Tš™ú•Àúk¶Ö·8¿`kÐÎÈðpŽh¯H´Aéž#dr'}Üö·=i.„;:Ïбtm*k‰ ²_ڻѽÒvà‡ÑsqwCÒ.˶g $Ÿy×c+¦‹¯”އ€•2û‰—B¢²éí­uÑs:mÛXU¾;ì±y¸;Ébþ$#4«±ˆxÈÓŸ(RÊØŽš‡·á çAÜÊ^ßýRyUt¦CpîDqñvZÖP,;&‹ú íÛšÔi¢'Ç ¢!5=[×?þ(¤Y犔k“é*f3"1Ш ~ŽM†‚ÏŽÀ­œM[™×#¤™«@jF‡ ¹¾‚© Øš˜˜É+XSKœ™ÎÐPÌž“BToùͺLÃ?‘ýXüîæHóÈ}eÿ8ƒÑ¦'”@*‘¹¢Ñd Æ[kÚ!ºS¬õÏÏröWÅë¤ÝeÉ7{þE£ñÖo5>ôb­ºä…4ñÖÊJþ±–7©úM3\±ÁJ1ªû@!0ªeû‘qßopgÔ¨ ­F/k×d*ALŸ9h@ƒ­’eÁ[„A€ª·§5t|ª×Wú£ÙX<Íô´¤ú°€?Škç©¥Xïk]âaQ°¡L2lÒ—´]·~b qÁRõ©¿ SÍuF]p4ü–²íz¯vVéèðÉÿMãCÅé—x×è|ª½¥'ËN(a¹Ö·lèn7«¬r˜Ì\o<¶}JaÙFwT3\ˆÊGLÜnó?¢cÂm©è¤Ã¹meíÖÖ»ç7ONÀgBQ;ÿ¶Ûoý£Æ›fKm·=ËéƒãŽ„—ØBºU.¦³ªOÙ¯ÕÜî·¬†íà ¤n}å©oiêoí@ì§Ø·zB¶ ðVlšëœ,|ôŽÒŒž™{ÌU„“‚Cá(æšd ¤ ȼVsjtÎ¥ùÂëô72—˵áœv…W'¨­41 ø5cîˆõ<6v £Š0ånìXëØçÂY_KÈž 8(Á­3¯g‡i4.Ó“þ´’;ÅlÍÆäis‹Xîœ ’¤£H!Ã8W V €>ûµ”+—¾]—¯+ß²E?'µæ™Û}î‹ç­/Ž0x³a‰mií½Hn°z˜û”Ó~ë)7ñ­>OCøg8WÇê °¸y1‹íð§sŠ™ì³"v[|zTö¹úAÞR®.˜Ö>Ê0p7xù÷@>¼Lþ®ããÆÑå)¢ñ7»½f½‹’M֮Ͳ$C#Ÿˆ!ÔÙÙBóy ¡y0µÊ8DRA‹¨]ÎÃXi)üJ{AÝW7¦ÛˆÃf•h™ºi¤"Ô/Zf‹ƒÂžýHb‰mî+—Œô¦Q0RvV]öŒAƒ'+Ók=tÅhŸˆYïpÛZ—y!ÒÚ¹ŽbñzòOÚÂׯ'׿©ïVn®R¹²{cweýnp½O)€/Üë`·Z÷›Fí¸ÑéZk\ýÎÆª1â¿!Ê*¥E8NX…mü²WîÉ›Dõ4E˜Œ{ö2ÛWÛ9`½Ä_7Ûî!òÒjR ú«b$0ŠÕa§2‘ xˆ·ÅlwQȉø]ˆ‰E£´62ð¤-ÇbÔ‚/˜«)v£Diõ2dÈÆ 3[ÿüg¶%lAÂhv’~<®é³v`µtCÛÖ¢mV'›$ºÝ.Èñ¯»ìËCÉÿz¥B¥\(ñ•W×UgµóÛ=P@ ü(U §‰EÁs›±¬ ‚~_\H#¼pëˆk[s®å!GƧ‚®Ðí\€-Ú‘ð´uIu$/œX¶/^ca,ü¢Ý¤Ä~"ig“”³ËŽ·­æ|®\LöŒÓí&ϬÕ{™™Pºï€WZ­‹”‘¼j¾ÖÛç€þ©W$Ä«Ž9FÓÚ(/sð‚3¹½/.ùØ{|ň¥ >…™{!å¬`x®s­ÆÝ“¸+ßX.lÀX1烻€Ì¿–OK!&ÕëžTìñc?b.²A€~·„ÿ h’äð0aYÓy&œ™›ØkÈZ(u  áR‹ †7o á%¡ÅôS(7”ñ‹/:0$šµÎ¹á1ôV`ˆJA;ç–‹zןÈá2‡EÄ÷;únÑ1CyReP¸‰AˆI¢»Üߤ«W«¦;°à‹Ý¸Ï£¬t‚Çt:„ ¢¬<{xKˆö–@­]™ûàêߎ Ä;ÿibÒ8OÇø*Òƒ7*}É’ªÜ²ôõ¾`Wf©‘D‹hÃð+GWTŽ9®ÙÕÄmñpÀÑ}Õ±b¦Ú†_¯u1w!èe» qòµHpNÒÊ3mžíîåQªGŒÞOškuMJ$µ6O]õo® ¶'Ðò™¨ {)wkf4 +ÒµÒBÆ2—JL û)dí¶ãòLL3zj+Xxd¢PþæCógÓ¡D§–QÚfíKŽÎh¸÷Ì •ÂÕPHIJ:Eð óôIÎvë´Ñíy¶Z\@&r@›Êh=¯˜`v4_•R.æ/ÝnòÎ)‘ œ“A`ëW‘ŠÕa][ÖuÅÞ¤[ú¼Mž`´Æžõí ƒþ”vmúS±Ûo}‚©uQÀ(wÅÿ”[Úv~”X5Ž6 Ïv­ÈP(·WqX—“f£¶lGËD[l"Ê 9ã‘> Šw ·$Õk g;Ũ:51b’ôPò¤‡’Ô«¾”%Ȫ J®ÓaªøIR¯ŒônÂèÞÙȶÀäúJíKzc]ü,¸#KÝcM…á© )3.;—ç5”{Z]Æxuâù¶Ô!·yæi¬Y­ï˜Í§÷£þ¼ÂnRsM¤ÏT^{Êåkòê/$×nü>ÔA¬›gGbþ« jÛ‘TÒ!¸uy~Ôè89¬éÊ’ºA-Ê“Þ=ÀÁü•-2 §`°ÕT¸YüÑ£Ø6†©6 ;6dàèœÜh¢'4­ )ŒÂ;}áe²Ê]kæá0 ({{‚«Ÿ}Ð(Û$¨l?²µìDà Ÿçíô˜ùwÅ 욬ûOa¯!?ÁŒµ’Šc‹U ©¡ƒÃ™“@þ•¼mM¢kú¤¢›ßEÚnkÚ¡NÇQßÓE÷”ñÊv*¦M†¨ÐßèÊ'ÿ;TO –2bxÄîÅ*÷ƹ…M%ÏB_û j)˜œÿ(ó*0sLõEEîT4Y×èÚK1ƒ9Þ·ïã‹‹ŠB{u7¨aÈ.×»ì¸ABIf¡˜Ò©7røJÓgŪ¨ÆmWH锿 ²‚ž9»&6&Û!ÖHb>Š™ë2Z½¯ËÀ °ï«O¢)as䌨ïNð `…½÷¯Z“.½²g›%ÄRæ3ÖÊXÖîñG€…fU¢³"¢«\+S— óP01z¶²ÀKb¼ürÛ$Q¬"½oò_øÒ$£DÑW¦kqAù1Hã*CÄ´§5Ní*ÎÖŠt1Z2£¹¨ÿ™ ƒÉB¥nÙ8Îóþö¿Œê‰ÿYi†B¿‰CõKÑÕ8~ËŽFMÈ^8âºåoH f­”Q »2ÅBA4Œ±˜’ÄEñèþÑÂ:–:]S‰ò˜WYÉ~Ä´‘ôNDDr†Jóºq%cñÈp虸9¬&Oª)VEÙÐÔ]ôø²A0ñû¡ÍÆ£…5w6b¯íám¿eÝMèmiàpFOýé8*¸ŠÀÑ×™s”ÿ¹™D™Êî.¦\Ò|Ä1W†¤cÆír>NÞOÇ·ÆéO¤h³~D£ØÑÒPÖÌQ§Ú[ƒp´ž‘6‚Öqã˜OFðóI×i8›aÛÇVÁîkaÌJý0ŠÇñúuP±‹ÆöëÚvš*/Âà klM„E‡|U¸˜Â•sJ”$OpË0~¸òsl‹¥ž LÀ©¿¨³kPAGaØ8TRœ†¥,½âËÓÁTêsíz&®E‡ò|U†9£> –ìGI)t™@ÀŠË ô·b«Ý—NIVÀ µ]˜ÎGw4¶X¿|üîžk[œµÛ¤±ËhT)ãã"š¡gì{œ×é¦R}€®®wò×{;7ÅQl€nC û›!&\q(Ùøaã‘ðÄì@ŽÂD7óîGB˜PHH¤Sž“ø¤[N3Em±—5!‹ÎpÆ’M+3^†Êˆ=Í2rU&u¾Šò‰­/;ãÄË–µ|Ç1k¦ Œ`’5¤‘ «~×Yõñi’0¾NAd2àÅ‚VB§hcOz Ö$~¯øàg·'Q*-7z{õ÷|Þ‚•† ¤ø°5Ȥ¬·‚èß»PZ0uC€Tò¥½¬AªKû6©.ÿ-¶6† Bé)ñbE.¹&È9 ÀêÓÂ;ëjé–fÓÀQ&¤Ô«)ÎGÒ²ã0råä—îþ±—4ï`$IC4=jº˜9ÿì’xøjïþE§ÝkC®Ó}ïöŽkSýsWôÖ­µ—.>” ž(Ü4ÎLÅT˜¯Jùè Ð0´3À'a C~è(+ªÚ¶¥3G*¯ а#0A8ØùE­×a¦^J cžÜõhš\|Ž8F†ÌžúE˽jß~À R ®H§ñ”xHofmö7o&7 m†—‘«”µËé¿ RÜ$ÞQÄŸÔ;>c¿ß‹ýGš^FREÏJoÓ¤…ã¼ù[ƒ“Žó‰ö•’U'IŒX®½NbÉèoãéDr$èëTA®‰6TÚïÄ)0&µ1õöe«—¢…6Qb =Ø­˜ºÈ7â`Ÿ–ù·Á$«ò„O QQ°e€ÿk³›®ïZ/–lW2 “oçÌ£™©Óx·Šw¤Åp4¿Š•Œuçgë`7…Á\Rÿ:­">È ˆEV1sÙËjC¸¢0v¶8ohÅЕNg ”;kS·Ô¢9u,žôn.«FGÿ).QÊ(©8`ài5ć‚œ‚Œ&ÆP3«‹v);bÖÏ/¬~ˆím¡à·|¬[1!Nú ?€—˜¶‰[PI‰Gn6AªÇzZ«›ì“³i¾ zX†4ß½6§4 h?QÏåmøÐÿC­ÅV¸”¡Û:ÆSsy„ˆ¶& ¢k4ê]Tˆ“yÝðŠD®ƒ“f“ZÚÍ‚B¸û`ŸàêÝ ½<Í‚8cÜ<¬@ ~åd4=­A u³sp›Á=e qÒs*9É¥“aV0ñ)VDß8Í–ÎÎò8)öDWœv„¾—Óî— Í¯œ¯ì«K .턊(Òç%VÊ.c^£Ý#Úrbk€‡ 9-ÓtéJŒÒɤ”àú˜i ÄBÖÒ„?ˆUT§%G9Ì j¼©U&1$pHÁc„’ Áæv¥6€é“^¤VT«3ÌÄ051ù…“ë@Ÿ0ójºùÿ8¡GbŒ:²²â)Mðâ eB7bç, ôR?6MìX‹a^õw]±" Â.z—ïTë¨Ê¨½Ó Ùžý€÷áy0ðÚ]ïƒW.Ê){°”Õ%mRÁ±ê(:±W5Ë|Ùhµ½·Á"ZÞæS]‘3’žCÄDKN×þQ¥~7ÈCÙ‰™Ë$ßÓ‡G (r¡9`$îáh+G[Ó0EÀ’ƽÎ"ç¦`÷žCüR,q#s.ptõgfÓþ9 ¸‚ë᪚ŒZÔ Lï–/s°W»Îƒðþ+¸ ³=Ö8]ÊËgK)ÚíÒ&ÈÂxÔŸbË"7N:ø 6 Ňø²ˆøjTdË!Ò`ƒ¸úK²[ %(î6èS½9ü^àß3ø{;œ«Ç²no±«ä?çv-S´E¢y C€.À£d£Žµ¸Ö½B)gxêZ®dí-m“q-ö.G_˱’‘Π®ð] ‘ =Gï&Kö!%wÒ¬]^.lU¬DCLçOL¸ˆ7}Nõ0'Õ¨¥dZC@Å‹”¾ã±²ieŒ±Æê µc˜ç„‡Ý†ˆ5¼º¡‘‰Ê…à“è—–‰ÊÉ&€›YñàÉÀ™þÍH JëÊnÿWdžüóò~‹•MUŽS:åJ!LUW²B$víêȱ3>l›xPç/ïíA¿Ë{9¯¼_ÁÏÍ/iW-•jk‹ó@v]ŒÆxrÆ`äçØ”[ JL?a+–à”;*Ë”ón°*’W3zè )â–¶<(ÔªOÏøŽýÀئx¬eºL­Ìðýˆ»„wz¬³F8Î ›d䯶¸­¨£²©g–ÎØh0ͪqjŒ2¦´@"ÐC8'}²6ïQ´T0†Üœâa,?j&kTW±'Éë öT—a¯¦ëÇÛPE1×­¬6 %:•ªúÛš_¶uyÔ©]ž˜>DLiŶdD{*‚™©ÇÑ5éû˜Öè~:úè¯(­?©•JkÝÊLËýSŽÿ)ƒÆÿÜJ‡'ÆS«5Ρpm~Gô“$X£Z‚}FYî‰ûªmép8n“Û?SÅ-¾Oš™¢eu>샊~Äz-#%øÕ#GÂ*Q,¢®Kf„&˜~CŸ W~QÚ©ÜÄŒ­®¹Cæ,#–Q'Àup¼‚¡S½õ¶þÚ*ðÒô‹²w–do´}ðbooƒ¶µy(s-Ä٫߯£Õ …©!örÞNmYPÍÈÊãq<΀yBšŸMÀØ?)Feì-¾ÚH­"ãÍi;À½ÊI±ú²vÔ±rÈ F®*”èJ€TŽã)Ö±”à7€f÷¥vRiÇ„îNóÕ’!g|1»Š¸`Š}ײéaÌŸþ¨}Vÿ4Úgé‡×U#‚ͼ Óµ¶ò‚ô2‚R!°0ŒŠ30&ÄŒ$®êÉbçÄ#’ˆŽhÓ}¢†ö5ˆm•Œðx Í.yK±–¬ú°áóo ñ‚ŸªQ[<[Ô¼CEN jÈë×ÛFI“tÅ|²(ƒŒ‰2¯sÏrÏs¯Å?¯sÏ_§c)ÖÒ³ìë~xý:ûŒ³Ýv:¸K‹eŸ¿.EvâEÈgívô™ àÀ¼=höq|$6ÕŽöÁ_ý,àEÝYƒT¿Ò!Äpϳ¯‹Ø—"OŠ”#l’ê²ô!Uû!«ÔÛ…L '§j‚£bëëVrUø9dž*3»¹œ®æÜõKŸ-ä%´AÝ©NB!Ìÿ*þ¸`½>ùÕxìëǯ÷‚‚ 2Á8ÿE"„ªÿfÊ!5T´öÄ0Z²£™Ä3޹,Äzk×¥/h¶hÕzíóf]“.6”Éhi¸ªô·p2T¼Ô¨M¤£[}?â¼\Üæ…8Dg@Ð¥>D©É8Ì©ƒŒh yÔœ*ºÕYnÛ9Še„d21pÎÜ™°×I>ø4Qñh÷‚ûÇ£A8‰,§L™{ulµcNp@u%0ÛÀª ÜZDþ-ƹB‘ÓøûƒÀbÐ[.@9Æì(G0† JW1 D«œPû¤;Y}E§×¯èû|­äª¦ó´n“cÏÃù(ŒÐ1ǰÒ!É"±ÓŸ$ˆBJ°iYW‹ jÀèhŸ+¬`¥TÐ}5P¾Lç@ßGw¼öpLkÄbzç¨ ^Ô.ú-X\ÏvZt|õ/Õx–—Nª-ÈÚi2¢² 38ħ¬YW74v ±À!NÊKU£urb•™[ÆMns°£5ÜbDhnžòžqu A°R[ÑètÚ î…¬¡ªÐ¥µ¦­úàjåDÄÓo³Ô|uýÅ Ÿ· }·ëYQÉwÔƒ^äxLâ±¾°®ž…àkùÛ³¢»ŽïèOÐÿZù&ø jPD¼*?¸wÅÿðFx‘UòÉÚf ³µ? $™øñz‚¿žsâo1±Ê\õ芪&ƒS±8siĵPì/GâÈOеñøˆ>öÄ«Qì·ìÏÚ­¨ãÍ翵ñÉ6®Ô1(±DЧ£`ðI°^Ã. & IîJÈÊã<ÞOÒèPßÇõ”hX™ Ãùx4 …4$„†óÊ02idJ8PÆHá#¢“”Ér<Î#ÃKŒ^1äh·£ƒ‘;ªÆ]“}k“C±PSq<€Vºœ³?rÄ2±êK¸Ý’–7Dvl{¥ÃštÙÿœKe!yo(æË.ͼþ$îCd¬èêÁ+ n%Á»]¿õ2æ­¿ê%7´Ý¨nû2e¥cÓ:’¦ñö+ñ $šûœ —]탠”S?rJnñ›k¨†rE¡"˜— bóßz[×µ­ ÂjæûËÛl\T²Ëk¶WrD2n ½”›'±Ä1›”4%^gqíº«¢~¹ï2Ï)Å‚ma5§Í¢Ã;’Ý£K1ËÀ#ÂpÍ9ôǪ8±CÀ¥6ʼn"·N„¼#·ÌâÑœ¨˜™øèÆ@XÄeïR:#+ãî¿c¬R¶ý»p²R«~þ?öÞý9Žë<ͯì*ÿûËñÒð<0ƒI 8@rL@€¡HET†™м4ÝC¸e‘››d½·¼÷î&©Ýd³‘ ÚŽŸŠmÙ–e=¼Q,Y±åÍÖÝ$÷ÖÝÍæB’í8÷QNî£Rµ[÷{œsútO0 iÚ‰9¶ˆ™îs¾óúÎw¾×ù¾ÄPÈÇYßÇÈG8×[T­'÷Á¯IüÄÞ£Ù«“öJeè™ÜÈl¸)“·–bâ5ùqÔYÍÌž)\œ+E­*Ñ+Ÿ×6mZވױEàÄÒL$uƒWFFF(Ñ+ò_!ãºÝjƒ+!Ð&D–yr¿Î`˜ËMTN±CweÕþ¢÷Z˜!ÏÍ#èL³½× Ôk%®26]¿< µ=é2r%l;‘é…ãaŽ×á«ÜØðfÞ0V/`Þõ!› ƒ I úX4¢+Òá[ Ø’šë­«íÏþä{6×]Ø*Ô¢f<0}zðïT2~å°A&sì´ö~7Rš•¤÷{ÜiŽÔl„ÝX2£OöJÎ…_Dä¼sz¡TZ¸ÀƒÀß…9“$æC5LOAÐ-Êh#t³WßL‰‚ÑÊ-ƒ ˜øêÄõ‡ # H_= –+W.N§ô/Ì“Ö+æ˜é©rŠã+Ü{xXu5¹T¸d¶ ?{vy¡U¢öÐÒ@)›e„P`/8E × Ù§ìÁ"é¡Í(­¶aq¯,êW®ØáëJãéÄP¸YÞvŧìE’FÉäEê—Ñã@Û…;…‚a#\7/âëPÅÃòæ EcÀ#v¥&£êÀ‚‹õÜ‘ó#K ¸)N ¢r¼t ýy3Zv¨0œÄÃP^ßzƒPšš8¾—<óf(ežÈa$m °>Aªì¡3 3|€P ›1ÈnÚNÍ¡°´V:ma“BÀ¿¨}~ÂÂ,‘ð;ˆš˜…ÕÉrDhx ?à-n„U86u€g8âÉHL® /qN'£¡›ô[t>žøoÈ ëÁN†|c¤ÿ A€¨ƒ› {#`|G"t®M¢gØ5§ÖlaàºõMR&Â'pNÈ>¾½vÒò®!Ul±ËÔd6›]oÖìFÓ³7šYx ôË“Ëèj‘õÛÆFÿ¥í5/;žõH×E¢03#J…³“‚%,ëê;ª¬‚{ Ü?Àß–ƒï“²lúŒy[$#‡QÇ Ø0Ü:1ýèò$bÞ¦`_ž5ï¤ÕÄ:L$¦eL—T!âïqBðu¾‰Ä£³KhP+_Æÿ%‚¬=uÈ…Žßô›Íš7)VšM–Æn´†›¡5Oi×[JÌ~f¬“®Ï|«¹+õ{µ˜B¬°$e¤€S-ÆP]xÉ?†þ¦ñ² š¹6_ïðÛá úÓgæ g—§é…<ÔM¨ÁÈ'…  Z·öañI ¨œ 1%*6^ÜÄà¦XrŠa õ\°.dO=y/u¤â4 ëZÑ]\÷8ÒŸ‚aT†–ØÙÑ,­¯qcüo·Ùñ‚ºa‰sXAÙIޏT¥‹7˜obj [²²ÙÙùë|b?O>•Îe&²õfµ;6«7FÖÅ)³î×kwÝpèccÿ™§¿#yþ ŸÜ‘‰Ñ‘=2ßÇr£b$?212ñ bäŒoßOµHЕÍ`Ø“Õå Øêêpx0Bÿý{ò9+|Ò:÷QOÂ;A³Ï•J‹éÙ_¼X|t*1Í·–ÓÈ‹$fÍ›/M%|纟ÅÊÇQ;°<[šºžöžt½Añ]`SO.(l:‘åÖ‰,7tb¥YݧÏN/Ì-,M%¯Ò'!+Ο‡ßGGŽŽŒ$Diö2´uxâþ@CGs&Xø%OØb½í¬N%gËOÚ„¶‰“¶Av<çDÖ> „àPôÁÊ8Ÿ9O‡\J†y(]~$7Áþ=ÐɶTÅyYmb„ºf­ÙžJ4IÚƒ^œ¨ú'O¬œ¼´nûITÝmžÈ®àذ0üí`Åš{2p3(w(F¦š9‘…rFá\è2Î÷,îzúrgxä7ëoµ’ÙpÜfÆ®džleÿ1¶›­fA)b*?22’+H)gÏM º;EM\°=9 ±ŒÅOךk{´¸¶e?í=Õ±ÛtêfñgÝvkÁF‡†àÙÌÒÏ‚ÌñjfÅ]«5W˜Â*ì?Ïw² 4ûdÊ*á)¿ÄµÑƒÍ“Ýöëv#Ÿ£™(Îøå~;˜©¬»>poØ·Úºý´ìË|=ø²…v%ŸÓð³u§º’q¸xrKÖ™Ó¨ßlØMˆgâäø3Ð{øPz­Ùôh] %ùë`³=m»Ô *³u"u-9‹ò×èIe½ã­Ûpâ©ÍeçøEÿ¼f£ézvfÍõ×;+L×ÚÎlKb"ËåÎ6ÖÐxøPþ˜ìï”8û5LºY6qøg³ÙÞà<µHoûŸ³ (…‡¡ÉXÕn¹ÙMwëâ¡ÀÈP<Ò¢CÂK7ƒÃ)ûÒgõ¸<Ÿt²24NV“_Tþн1§‰fn8ž šèª.2*´»·l¯³ÕÙÀþ÷¥þÐ@4ü4œ¼OÕªצžlÍÊÇ{ïVLm˜q4=Y¬º¸È †·~¦ "C³MÝÞXÙÈzN5Äa!Txvp*äîi§-OæªCà7y+$N6=1ÛF XfI£Ðg·l@ÕV¨¿üèÎΠ홵6o5ª#Ï-Š‹pÒgÑ“† á£ñ̈¨¯”Dз0ÂBmª¼f‹ÕŽ ­Ðß;:i;54•4[ØÛGžÊWÖ'ñß2Ãf*P’6Ã?ùaËζ´Ó€­æ¤ >6æá p{õœsÞøDæzÛaöÝö€ t nyiy¹´Õ‚aP}í¿÷~s…WÂ/šR2lÚ‡ògèÝk7©FÜÓþ›}ªL¹wd,È å4ΠÇÞ¬#ÚÐ6j6Ðæ­§n¸'mÆÀe|#æàŠ˜ÕN¥‹ì÷ "šèù¾ç­ç¡¡’ӶῺ¹izn’£™f¥¡¸y¼dKnµZÛº˰ج"Dówÿ<È–ÝÀÃÄ£E­³Ç[ºÈä¡BzH(Aµ3|­Æ \+ ïék.Þ+ F ›±Ï{÷±×D®¶›kkN^¾0'(;W{ï‘n576l¾‰“áo”eïPÖrÓëM¹&§bBXXø¥ýHw·¼¤Bg÷% Ó~BúMDäI(í†Ü‹xÜUêÕ©k®³y¦šyèô8þ¿0ýÐô±‡NÏÇŒ’ ¹YöÒÒõì_‡õ‹’õVÚÆsÇ|qOEüùΓhê –b è”q0>C5Ó\Ú†ÓC·ß„MÃ}ªÓC,07fZ'-ÔÇ“uve\íÔPÍ[ØÀ¼¼®¸pqù\!£Ìë´ùô‚¿,Ç™aÜþ¶á È,>M{Ítà‰Ã8yš^ÑVê=ÿv…Ÿ›+'NØ©¥¹*Î9ö–XnáÞl'÷À €Ìª·JÝ1OwöƃÀƒ§—f÷ÂÚ|Eį½ b¯túa’p&½¥ôÒ^ý©Ù¶»Ë@Åý6jHJ{õÉ»†Ô¡ê¬Û–@ŸD ™}Îä*á¢Ï5{þ$ÏYw_?Ì:³ýêÓYjWlÙ>’¤µF‡W ¼±Í?HÆAh{‘<½ogã+ëN°¤a®ûÃ\ ²ö„»o¨Ív3Û haiáà2žëcOf£Â\0PÓ„šE‹8ÈÉ ¿ìÿ{û([úݵ±ŸÿÇ‘ñ¨ÿG.?1úÀÿã~|î¡ÿ]†6Ý?~øÙoüàåzo}?LøçÑñþï|äû/Þ|ÿ·¿üþo¾pG>\õý[¿òÞïýÁA½:vo}šþÿÝ›/õãØ±GùXߎ½Êǹwô,ßÃÃ#¦|¬“¯Áî³_xÿsÿÁ'>öƒç>õý½º{ë÷woîìÞúMüPžýäî³7wo~t÷#7‰!Ù}ö_ì>ûù®RŸÿþ¯¿ôÞ«_`»yv÷Ù³{óŸí>û»ôïçCào~kÝüÚîÍOîÞüÂî­_Û}ö_î>û©Ýg?óýßxa÷ÙOCSïÿ毾÷¹ßÚ½ù©Ý[_Ú½ù%È­_ݽùqúùÂîÍÿÑzÿŸýê{Ÿÿ×Ô·ÿû†}ú”êá 9ß±çÇ{_xõ½×~g÷ÙßÚ}ö»Ïþ“}ûóÀä§ä ¸òúxÿ…½ÿ±þî«¿rÿà‚èç¼ßßáC¢øÍ—i™_¢e>½<yÆÝ[¿Eââõ­ßؽùû„,¿ï ¢´€ÑïýóÏìÞüȺƒä3×a›½ûÚ¿yïó¿öþGå½Wþ¹O/Ø{ï~}çýß~þUú÷ߪÝD°?³ûìîÜø½W¾ø‘ÿÅçÔNùØî³¿·ûìo`1Y5ä4{x‹ÀðyQ¯(l¸‹|ÿÅòƒW¡Á׺¨Î§¸ñ÷>úï¾[ö_1¢P™ï½ôå÷:þIžhN”w¿þß u;ŸìÞúõÝ›ŸÛ½u{÷Ös¸¬·~íμPLB×ûÉû¿uûýßùì>ý»ýûŸ0Íî×÷¤G1ZšÝ›/ÒÈ?Cÿ~I-Nóïõö{/|ìÝW^ûþ¿üÔ»¯~t_”÷>ö…÷v~Èëû_¼ùÿÄ5¸ùÓÜ÷ÿßþàÖ+àAýOpPˆ/¿öÎýD/l¬ÊN N_xà~²û‰9?1דýÙËí$â Ý탲?ø=ýQö«ü³ä‹²__ïÌ¥èÏ¥H?ïþ'ýÌÑ}ò=9жŒúìWy/Ÿ“}ëÞ3“~f»_“}iE/?“ÝgAÊ„SýWv?B‚ÕÍ[ýÜÏÝäÞ8˜ô3I÷Ú¹d¿6^Kúšû;s*ÙôÏCI?³`:“pùÅs‹»·>Ajž¯¼ûïM²èƒy’ìmO/’}wûϬÉ~=ÿ xì×äÁvó¹õƒ/ýêû¿ù¯î³¯IÌ¿±{ó¹Ý[ŸeÅÞî­ßݽõQÔ Ý|~÷Ög@¨8Œüv ›J]žï3ötAd0ÿð·ÿ‡÷ÿéGöÞ6÷À7äÝ—³ÛœóÀCä‡È‘Ÿ‡ˆÜƒ r&ƒò­ßfCšZnÞÜ}¶ãGeÍþüIzúÈü”÷ÂÇ`oÿщ‰\Äÿ#wdb,÷Àÿã~|ŠFl*Q”Ipð¼´†{},k¨mÛ][®ozHäŽKÃ?)üz,A¼Rš~ ¾Âr¢µC HáAÎhT©¹”Ul`¢2!¤l¡p…c©Xœ÷¢íÁþÀ¿xõ°VîJYø¤ºëûœ.Ånl T[têºF»¹e×ü- C… F(Z4«ÑôÝ '­ fÕo„ Œ„Ó¾æT3B”T—(Áö*g³µ½´ë¥,Õ ¶m7|:•°#Ô:m{nE˜³nMu}hNN·]gµ¶•¢.zëN­Æéè oW3Ù 4ÔÃsœDõWFKZ2J›.™Á¹šâäà*'EÚVhdÏ ãϢƢŽiŽ«Žo»œ€&Àš’5§ìVå¸ð`±—W9O@Ræll¶­Phr€†Û]FNK™xÔêP!몤D* †¨6)ÒwfŽòDñutÝÍÓéܪµâÀ€äè0·¯‰Ì`×T±æ‚4¬ú" ¬†ƒ±©át­ma4ÊÎ@»€áÊ(ã4Ã(ÍñÞ{Ðc‘GVía:Ä0€ "Šæ7 9ª;)aMR»ê Åགƒ¸ª5)QC¦oCƼÞâ˜Æk X«¢CË$¸(xccky[À/×a]ªâ4ª«ü†„Ø12UËÀÖ¢HÑ}= °ÜsTŒ ÍèlqUuR^:plùÕ"©…·Š>eƒ·kž†Ðl8¸Ç÷Ñד2–…–pØ¡h¿­ 8©=<ãšâÆq} CÑ„¦IÎ_£Jv¼$Å—±¶šZ­v§='dê^PÖi †Œ<¦V í+Û¢US ÔškI³ë2–f³ µ“a.‘ï®Ã{@-\ª赆…Uâµ/rš.ŒöBblwÐßjaŒL€…ÿÂ"ªžTIÇï48£‘Ó«é4½Jcý©Pa\2ÒoA©éä‡áñìk´üˆû^§Æé>0ëF-$T0r«`D_ ó6g•‚]­ÓZ­l©´VXã¾áÌÊ0—÷Ñ®T\\h¥ -‹Ä˱¨›2A%ÏϪÀUl8ͤŠáÙ9…‡ Ë æ2œi€‡:~‰ßÞ² ˆJù „ñÍÝVašJ)u6×òç–àkqÍdF+ò„Œþ¨I Q>#¢\*iD6M==*„+ØÒ…胉¨ðŒAê‚EÎu 3£‡4¹ãQÚ.DRœ‰”¾åŘ ŒPØééåDPœÅjÓæl_ŽÓJás 7« îÚd`sý€.™¸áíJR BÁ«fÄÄ$ÅC& £é†eÎñ ÒXS¢± ‹˜„ñ>¦Ö8Ò”»J›Xu[Æ0†>RU:®p ›mñ|QÌsXIé·c† êá±ÇЇ³F¥à0ƒ±Mb…\Ú©&ÕŠ$Р &³wiˆÑ1Íó>)ñK5@vl¡— $÷[ˆ¥N£!'¢NÜ›ü‚¡™kˆF—ð/’¿ÇÇm##/ÕñÄcÍjJ‘(¬³>t9…m|»ŠQa¡z>#Ð}X\E%ÙcRÉÑŒXx]‹R]$ÐÈRyNm5-©R¦JS¦…â‡68/>ÒÅ`‡< ¼š²Z™ R$8?ð¾ õgÌì¹æ­BY…±{‡wt C˃K'R ‰:I/­ÓÞ'(D1¿">œf×Es³ÁÔ±Ýlú)žXKW–,±¯¶Â¦¼ÌUêÐ6±1Ø€m&@“(Px­u¤‰˜cb^)ÆÞp}Àk0À59Qã=NÂ3Öóæ„—¹S_-†|ÃèÏÁZ©E‘ÄÒmÃìâ©,†`¥™e ģ˴²Õ¦ã1Ç(× š¦!ìß(“¥æš‰€ s%+¼T;:smç©lx¹ð8gÆt¥Ì`ð9/X>3D°Ðù¨¸ºäàj[4Ï"Ĩ0!60˜&ZWyÇhH‘W¡¨ÚÌ­ H`›Oæ+µåà€i Á-5™çZd0 šF:$Ûœ™`ª(®*fûCpl#¸ J”<*Þaf™P: º§¯£÷õЖåê:ÒYš‹Ëµ%4ã»]–öó_–Žy¦Ì23ÁaK¹Y|:‰…]·¯£m¨î»I.N0˜&1 šL7ÛUfŒƒÉ˜ÎŠ]—sLÛŽ@0&T8[nÒ“LS`Ì–&krßi|ÑÛÆ\G{ ÷`„¦Ù® è›¢mƒCÑ ”ÓÕßÌÔ¤Ba2H˜›Â¸Œ¸q›µuyH¨=BX§ E§i¹·¬d!ëÑLXFŒlF–Fhæpa 2ÌrJ‹’4’# 1JÉã‹d´-fIˆUËM§7å§FÈ$eâBJ2%ÓÇci„”]r 1vs‚oÁ9…'f*hHp*¦¥Á[œI®£CPjš5fôœk®˜…Ïó/Ó¶aT W&"n?$s²¥éêFÃr“k QÔ°†"Ù«•´°Ö&x˜Œ %:°˜ ÜþNãšÛnrÆ9-2+£èrÍ¡îðg× 7,š!®À~bâY+xèø>-w%®ô+hbÖ]‚ášc¹”PF›”Œ–9æéé©Ê±c*HwzMÌOÃߥ´§òÃó¨˜!Ñ:ó¨êÌädŠF@°œ.½îXò &zÄÖ ‘XµýP+$E»–ÐüV:t…ô›¤ÈÖÀ®¦qIMi%Êj=r#ÄÛ2al¤†’1u6'ȣ̆spæX¸EzОÄZ¥"pGNȯ×N”'ÆäV«|›Kˆ+݉P¦/_Púнµ¸({5›@¸üAÏ&¤€ûÏ“µŽÊs©Æi‘%{£#IêÎpï R„/ÐN(>ŒvK¨Î‰0e/ï©þ°™ãjÍm5‘Ê4kÈí+´×Ê)@ÈùdÈa fu¾Ös¥¢Ì‚üâE¸Nyyœ$ɺšíxí,%šÈB§q»Ë¨ÀLÛ¨”0KÉ÷PsCÑ·p_H<Å,Ä´)É“•ZHü h¤–“í&#˨z5fS‹K³gŠ—‰¿B‚Ì?aSx”žÓnXöŠ×¬u$ËKY¡ÂG¼ê¢Ì©èÄuTj³ÍåMkC@ïCïѬ´Ý¬7T ½Õ¬¶áÑ ­ˆ QË~*DùH1.k{jßâœi`»BúMŸ2ÖŒ©"`ŽÃP'x¾[c5(#-˧܌T‚6P¿è²NÚ ¤«4{ئÉ^ üÍ9¤õù¡€!ÆÛÐÜÆMšX- ÆDª›†¡Áa]¯<_MÍ4&`½‰k}­Y»¦Ç–g²q»CÕWŒ«ÅS&1ƒB>\J’nIš‘µkè'ô+ð7’ØRYÇÛ‚dvYFwD­f…”Ɔ8.Åb²e`2²o¨™ ö–Q[çCPF?“ÆYȤ°ú¬Ç!ÊN,>w9ULãÑÓ¢3W©VРَ¬/žÙHÐh¤™&¨k„€a0ueÕ ¤–Ì1‚9Ó¥ÂÊbóãô Ò0^u¤ù ©9 [c“Ô.žSû„M*2n¿Ô‹0·Xsë®o +óÔ ¸Lpayë6ö&`Mi)HÎoÉÎbßBMãaÚÐ*Q›#švYàq7‚m¬U#8ò9Ne6pÿT÷ØÄÍÌ.—èP3Ë›ÀŠßBßk W ƒÞ&¶ ‹DRC¨‚ü‚ƒ AÄeDÛÔ,­ÔP‚A°Ä4‰´ÎÕ6¥zuÐ{²Ð0(>¯jÊr¥~d… ã‰×Zº—Õõ¼Ž#±õf›hªF™EKNˆfØÐåñ¥Ž`óöØ VDðĽ‹¯ôõâŒ4ßtó®Êªjr9:3ƒR’¬Eɪ5_Û9Ð2²5&~;0q€ÌÖY¥oJ©O+pš"ÂiZ&§IMEÙ3ÔÅ/üÔòÅ3ø2(Ă㠽|Ÿ=,èL¶ìãé3³…ÒÅ¥YSv³B¬3·²˜@&©ÂΆU÷f—×C ­»Úï!® ”ím±0}¾p6è€f§ù9ª 5È’!™µµF'm{< À˜ *‚{BT››b™„Û!Þ$ÃÖªÛ¨ÊJÜ xæ-Åæ›:Öð»è“@°‘ôS–©GŠªyÔp`€×Ó*o;s»Hè±&Ô]\0ã­fNâpŒ<ÄØî¿âÖ\+lÂE W+¬Áv¤†Bz¿I‹)QËIp%¨ÂÛÊÂkh,½|ÌQÃO·ÑÁ3‰|4K&†×eþ@u0 Ö!­8l¹à8g‡"òNå€gÜ4-ÆÑ楋GíËÑ÷ÙðnäE}æ)½O/ÁHó¹ÅôÅË©P«Ó+ŽR3ZÄŽôRå Î¤âÒLùòÂâì|yyáâÒôìÔø&Ý$–e•7—Äv:DRú)ÜÚ8xuƄĦ†‘–¾*„ãÔhž6rðʰr¥ùEOœz ¶ ¹¹$‰ÒYëÌí©E˜ä`˜áAei†Ž¸u·Õ‚sB™ÂªJÚí ÚØ k`‰s$¹Ä‹!Õ°%SèjeáÂò™lNØ™Œ¥vgbLrnÒ×ÃÓBg7f"¢ó]Œ"§«'61«MfýdR`03§Mý”¬ˆ>œͪ¿‘T®dV‚ù±iaì6zjÜ{à2ÌX†þIè¦Ô Wöĉ½* îvBMÜr6êàÙ5n¬êTV’Àk“ ¼Á'WQC­Õ×]¾.°ŽÈ2£âaËS)Åñp”ìÂq­Ú#βAr¤%©œV• 'xÍ®Iò¶ÜT…‘©Öu°gîªîdŠF\¶Q™]6Áhza»Dé³è¹¥dÆÖ8±ÖdÛÑÕ,&ÍâÁ\¥Ð8¤:c·ÉP‹8R •kfc–µ¨%Ÿ§ä³²‡5H1þm‡ØLˆ‡[B»ñDNcOàgÅ·8çÄõUÑÊVG1^2ÚdædðëJÕ*O.‹N5´q’?ÌE>òS¨/èÔ#þQ8{LŤœHµè¼,#1*‡ô|^7C¡ý¥`S4;¾É%H/'[y7u£ùt}5xv¥ÅîèaÀ°Rl‰t™ BEꜧJ-jž ·ü¤8.I¨e… q»Z&æcÌbÀšîyÆà,©ÈH³AЩ¢"ɞġv]¡ÍôâÅôôÂ…ÅÂücéåÇ–K³,‹YGþEÝ!ZNZUÉP£`,,óßó³Kó³siøIŒôô9¹z•dà5Ñô<<=•R “\òIÉžªçy’lK0†7ÚáGФYÊË“ŒÏѵ ùƒâ.ÓâÀ²–úNŸÙ\܆n§+ÊÆÊr 3Å–Ú¥ìÁ‡¢\häêÖLtWF$äôÍ-eÄ ›šò‹ST‹eh«Œ+ÝÑýL1Öª³ÑÓ0„m)áÔÐÆ*OiQ%Ì1™Ü«•Xoz~B—ƒnÆÉÈ6Ië€h†ð‚ÃYe¹ìÒÞ•;sH»#hž'ï2¸¯fø¤íæØâ¦õ¾êh6ôÌÝvZv=F½JÀîk§täFÂ.à÷h,”ó좃sL›Ú…­éé$Òt£-“Ã;ËðW¥Z8²“ÔšMi(¾Ê²j–úš µÏôȹî’C¢¾¥J;~¥wYÔ@´açŒHÒôÂü™âÙòr±ˆçY¡Ì‹Zõ(™!ž/¶[¼Ì‚þ¤öŠ›~¡T懪[Ý>½xu]€"·~y•'v9•«ãKí¿e޵ÐLŒ¾¢ûFX}§d4rlî4¬à¼%o(¥ÕÛ)%/á%ŽAv«©#Bjˆ"O×^l%Ó„–H$ ÛÃÔ!¯›ºvù Úò”T^}´°4EýH†UÓ=¤Š€;É#ï“]«T,Kê< ´Né*¼JÊSW²²TÂà“;ì¤jÈmÊ ºvxábpÅï Îo9¹F|{ÖÂѶQÈ|n/U;ˆ¼ŠQÒQÛP»"7Ñð]vÎ  Ê* l_5äYB†tƒ9×ǨÑà͆C Ïdl+´ó‹ «Tz]õÒ¨oÖô(=„IÖøíf´®o¡»ž 0±W•¿ÕÕôz’G²ˆn¢`_Ã1íTÔ~‹½eÈ¿_œ"¾%©BG; E]sz·c6Ðáµ\ÿJJÿÍø¶å…'nXÉd-ô¸žrd$W ‰u~³%jèÊ—’z ÚGA—㾤tå¯á««„ öyT$ƒgEJ‘8%†&Sa@a4’ª{Úé3²»¥.m“èuÎçfeÙÙSruçcRêªtUÇômPëÁ>ó0,„’’ÞŒm›mÆtŽ‡ïˆ E’êfLÁ¸–ÙF‡}Kµg%u¥Â÷|d§ RZÞ?‹D\¸Psmy ö¾‚Ä žê¸cë’ðëSÌ ß$>¸ž 9x©Ob'-äWòÎÉÍädwZd;£=ÑÈP…µ–f‰Ëz‘HrbÖ“XÃvz<Ÿ`‡6†x ^»¢,é\gN™a׈Y PCÍ@RêÚ6DÐ LfMWuCb÷GJ”AP™¿ñº€æù c·ëËädà@mz/*O¢`$©ÈóXOû´³kÁ Žx0w¿ÑL3‡‡ÑHêë.¼4‘æõg‰ÏCª íJT—¿[rÁ wèL˜Š³wy¥â «Ã®«8vÞt«]-ÁË|)5¤´Ç›¶PØÉS^z$¡ALˆÁëJ0b@m|‡ê¥¯ûKKR£½f¬ÃP¨;°¸Œ7°ñ‡Û©S™E¤®†…Z4W’»"°• š\¥×QG"NÝi`ŠXQWÿlê€S´²‘|Ö<¯YqIÔÝ“ZñA¤o R!7dš =ó£ã-èÈÞ©H¯0MÕkƒIæù¢ið¤–2E½MqÀüëÐàZLÙš ®¦êjEÎ)±/Y8£†Ã´\-&éJ‰ª)c7È©¢–7×¥&CÆELXí€4 ℺ãë5©Uòó–ò¬¹Ú æk¼IZ>òXÁ{0DÃ>´‚%–¯@VçÓÜPT0Û³Wð?]E@ ¹i]P#`<+›Ë gJ— K³¢¸,—-ÎÌΈDa~'RâR±tnábI@‰¥Â|é1±pFæç‹ó3)1{yqivyY,,°â…Źâ,<-ÎOÏ]œ)Ο§¡æüBIÌ/€è?#J Ô¤Vœ]Fpf—¦ÏÁÏÂéâ\±ôX @)–æî™…%Q‹…¥Rqúâ\aI,^\Z\Xž….Ìàùâü™%hgöÂì| åÚyx(f…_bù\an[p—Q>Z^(/ˆÓ³ÐÂi`# :Œez®P¼3… …³Ø¥%±õ–¨wI\:7KŠó®0/ Ó¥âÂ<öÑ,ÁÏ n©¤+_*.ϦDa©¸ŒópfiÀy„ ëÍÏN§qÎsx9 þ¾¸<ôhf¶0ð–€Y˜Wsö:rÈ3I{‡¡ÇdüaÛ#im%>˜dEbššk)…Žê5¼Cò=úÔ#¿±ézŽô‰®7}eŒ«I{UŠHAšHúš§ûÒEøîâf#¦4?!Ë}ZR¥ET=EpØ[3âÊòé§çi‰ŽÔ¶¾ÜÁ¢{ï×I+]`™è±&'à5©C0ÿ"úê &Aô‚¶KºÙæ>í”Í70ÿ´Z‰àiB|pJ$Iˆímñ É10トQéÕ!‘?©%W½°ø1 Ò¹º‘W,ØÁ qðVö’>E¸èxä\WGÃSÚKø| …¹Šb“— ¿ èÅã•¢·õkôŠg&%xBaD žG*jX=eU= MÏe`¼è±ð˜/7e¦US«6ްÑ,³§¬åc(ÚAù}*qźˆ_&ÅÀˆx|aω'2™Œx<]zB,/M“.df¹„qbší®¢²Ô2~<™†Cê±eÓ~PĬثxU/r9«ÈÔ6ç‘—{¹5ÝS ²³U2ßàØ£íª,ŒäKµM5Tt1°4¨˜P~„ž”þYÆUú V Õ׉S†§>K–U*2]V=À˜ž¦ú W„ñt× AW‡ðÍ´ùFQcÖ®–±AÄ‹õÂ6Ìݬ0㈑W ­š@åÀMïiéibà;Ý^cÝÔ_g—..rýM½"›ƒO*H•êh×¬Ð•äÆˆ«„©N™•¥ Ž$vqu° ÕñÌÁ hš­CeMüÔ³KÑ* ,r%fÛA˜|>QE† !±ORÛ𤷬ٸ;¿?¾é£.E!²éC@hŠ/4y’š ¦ßBÓkÁôê3Qš[ 4““¦‰ëÀa‘n8bä8œYP2þ„º•!qü8[ Ò ,FÈŒßî8úuuH(Âz¾Õ9L2OX‡<ÌÛ¦‹Ò¦b† 1@„ NhÜbà]ª>D$xj oâþÖY…hb8)’Ãbþ’­ä0<ÇoÃòÉ#òïãÉá!¬#T‹#“ès'ùI†œ'ÎËrØ•ôäãÙ•h÷›8RIڊƌԚ´ˆ©_û0—’¶ã(cNôú\†´¥¡š“´lI\ʤq• up¦"jË)’àä,¥qŸº2xeèƒOme²ª\¯!–†DÜ©ZpEîôBŽÀÞ3u(1kš↬C+@ƒ6ôóá¡CÝkÚGXœ\½,TixH– G!C¯â­`Í*ÜǨ‚_ÈH¬f"`s0 ™2²SŠ”¶SWêŽöZ‡/¡tºƒ¢B@e 8~‡7¿ç£îHê\ìT¨n6J®º ä£T@ÞU»Ò΄„ÚYˆáJŸ‰Sˆ,Øí5bqÅSÐÀ)ˆ?‡¡ªòâÃð{[“ä;¤œßlà¼ìÍÔ”'±ú«p‚Uè©„Y½ÇUÈT&`¿‚ÜGìõàn¶uÑ]Áêgc!`¬"|B¡ÀD)ç)$§ræÂ"£–9¯v7ð~ºí‘8,;ãx@},9I‡EÑOzbáNÒ¡–%µ&ɸ@)'š 7~TÕfËN%y›·Hmù6Ú¸È× ø1•Ë; ÁU4<ãåèˆù2~9– Õ¼ ½·hôË€‘ºímà•G›±9ìˆq%Õm¦f3MæK "‰Ç€ÇÓ§]+’D¶u$OЭAÜ´|É¥þhKñd„ÑG¬:²—‘¹D/ Á|Ý›uxbl ΕV™z 32*Qp$ ãE>¯éßã#é#O IŒ-•:sÔZê”[µŽWnoNÉâ$“a[iuR»SÍ^Å+y"9˜GŽi9°‡DíÉ¡¤а®ªŽß£®¥:joöìu$h<8 ‘B€§±ä”I»d»¾Š<Á~(äí‚–Tºõ)]Yq‘üŽ ðë­„bI%,ެÇס"çÜŠ£"ciËùúÀs‡ˆ»ÐÙ Lµ4ÈŠiØl²Í¡àlÎ-:¥>Â1âL»’Ї÷yFðYèÜ (,µ£}nȩ̠®}%| ‹O÷:CÜ<Ãã(x´ ½Ò´Z«âj;È)A„»*-ÇêÈ@äEsåÌoµÙAmž̺CÌ y£²hžX…Tá1†5†ÿÓ{Ö˜k9¢IQ u>ıE7oσÉÇÙ«+°ÕH½Ì«|5TKáýHTÃÛu­Ø¬ÍšËU2uP˜dr¼C«†ë£6„é6{-³Ù:Ô¹«Ö¡Aõž§*¤wÛÛ8: ‰—ù­˜ÉËW3Ãÿrö‰+CÙ,}Áÿ†³ÃIqe[\aá"R#›½2„Åö)²'ˆ+Cô6ÓÝC\(Ux›+£B>™ýe£³W²WŒîÂ÷ì3Ö!,ìAÓ¹, ÿÜÀ¨2Vâžg†û.Þ'à¡ý@zY(‘ÉÊsF\•~n=ˆf,Ù”(ÉD ‰j^ ’¬ DçåªÔ¯d| •”#Æâ3ÂÐ' g29„òÝ4ó”Û“’бÆ“Žt¨¢{íI=N@°é¸Ë \†4à*ý®b “X·¹ŠöÞ#éÜH:êÈ3œþ\U¢¢:‰3Ì(±ÈØ“IA¡ûñüèÄ‘'ø_Îy¢ø¦?(N ‘y|$ÿþGd&ú=\‘ù™C;C8j–`ÖCvòC"Ÿ×»ù~LŒü;6%ô³üH¢X2TK]åþÇ -µÖLojq—âV¥«ZHV1gÓpRÒv¼a“¼Pq™i% )¯>70ÛFÓPf/þáš'R“¤ëÄ A‰ ½³!Ž25ÝŒÚL~<—ÇeÆõ0(ìÂ2†¾!ÔN·øúcçC›×Å ^(k;kv»Jγ€€fî*Xœ±tÚlsHä:òáœì©\ÜnÆD®?[Eˆ$I¡ðÝÈíñê,¹Wžåt=£jðÝÈ\.“%n·¸Õ&2ãjaëzm)ËUC¥ÈªÄ§Qæ!G·×ç )¤‘…®k Ö€ý¿ Ñm«ÅžÈ些SbÙzUª_óʵjY.ùÕš'Òµj°pW¹£´Y”0›'´ú|Ò´ÓÃC.7É‘‘D­P¹t\¹ññ ¼¦¤ž u`L€Àî ƒ‰`ñ·Ï(¨fç˹ž#Õ†3³|BLEž”s .CžŸò ÄE2I¤zÄB~Ûc›HM©$6¼¿¥ÊæÐ,pB9«$kï½c ôFÅED‘g£Êx¡¼ Cm‚,elL¦ þI››“+¨Îòþ†]ªˆ´©Â‘̯<ŒCG4Ìû ðü?³á5Çò‚íÈ]ºKÙ}SgÙ£ò‡V°YÕÍmJ= 8±ŠmZ‡hÇ"GŽûô2bŠ¿n£ãàÍs0ÀªÆù»ŸÇК>õQÎ6Ðû¸qš *IÉyˆÅô!ì;éßÕéÎNˆtlmʰò £:´ X&A×íCšŽ™cÄ#N ‡L*#Yl޹âêcrøJpè)9W¥|ªa‘̓𲀉Wä'™Ì®%$ÃG‚겞zÇö‘Ðâ*Ð0°ä€¬–$ŠˆÔÿ ƒÊjhh*âì8½¶w<›½8¹ƒ®ë|Å\h݃!cä(sIâ„%4…%}CºÚOöŒÁæ(ãµHýú™V[ÜÀQu×dd¸&?ëY313Ý sŠzœ¦Ù0»„ægRW4ÌcXsw3XT€çª±oSo…¼Ž¤#Z/H™ÌáiÓ´¥ŒØ’(ÓËv=ô®]§7²Ýžœ¨Ç8¶³K W­“Ñ'ptˆ2Ò¬£S Dtk¡/@¼37†^ÉÁ­kR¯H7Wj£gÔ ¦±¥±8D¤¤úRju,©¶èÚÃÉä5´ Z¶©ùM ‹vÜ*É2܅ÚŽ@è»å°)SxÚ+è€ß\orîÊÃ6uëW)èHÇҳϚâ@ŒÆëÈ`X˜™ƒªIfe_ûþ&Âí¡Ð5t°½†Pîx»íQYŒÊêY-÷·ß ÁZ¦§U¶É~C| ySÊ,*p£BV­A»G¨þ!R«N]›.ææ¦¦ríÕÚœÜù‡ ÎõªQ§álöªƒ½ïª¦êíÉð»ã%>¸, ß¸½°û“ùɱÉñɉ߀‚Øç»Y%³ÓŠàÖª,¦ P_¥ÿ¢œ2ƒ¬Deh®#T¨[7¼ÄeMx$Íiã-ÓŽ®>F)òÛ‹Ò7êYDÑâìÛŽÖ*£uhõºÝÂØylH©_C³lÒWå‚°g¡ãÞ÷1¥ I1@èž…–©8 HÆ@Ñî`jpÏ {1¼~üŠÅ6ÌÌÅD©V•îÏ~È@¤¥Aý¥“6&`O@rð¤ïn».‡ØÁäØr *OVVIÔt³j™MO+xSÝÛâ0ì¸W±.,šÇ7Ҋҹ”\\´hÓI!Š3¥†a°ñ]^O§ÛÚï¹C¶ÜÕ],<ôŒæ…>¨!!Y$‰%äÏi¼Œ*á‘tÅ"”qZšuOþLLÝÅ‹Éã,ÔßЭöóE®…“%¤ãæµÃ[ðsÊ|OL7Àd©±¥Ï-t(4ØèÖ‘HxCrˆ7dpÈ0ëÈóa1‡·ûºIx„pR ÚÕjzož&ÉO÷néðæèþ˜¦ ^Cäð¯~á¿mD‚ЯD¸ÊÝ6–zhr+ýÐH¾ŽÿT3ðϹHIúú4t _,MGÞ:*<—wÈðÝ,^Ëÿi_–ûøéyÿ³>–½Wmì}ÿ“ïKFò?çòù_ã÷ª{}~Îïö^àªË›nc4ŸY±ý»jcïüß##¹‘\äþ/,ÿƒüß÷åS©¢Îè–„¼2ŸYÏк런$cÁiª¯GmRøVïhòßïϾûbì§³ÿÜÿ¿/ŸžûbìÁþÿ9øôÜÿz¥íúݶ±ÏþÏçÆó]ñ?Fìÿûò9|X+MJƒ…–U˜ž[˜.Ì• (¡˜風YÖòÅÓ3Å%|€šS’õ= 7gY³—KK…òLq¹o5>eZ•ŒÛçà1^#ã¸ó™'mõ ¤Þ+Ö!LÏt=³î×Q·_ËOÚü ÞMc?ç(Ú¡ݧº$j£‚” [¢/Y*E_ô5«iœ. /ªÍJ¶°Xò/ö ¿.ÍÊ?êÁ™Â/ª¿øHÖ¼8_œ^˜™-/.-,Î.QxÙX”\ŠP˜ËŠ> µe…,N-ŒŠÃ½Q„j¶æ®¬vž~Úi§qè™J«eY+n£¼<½T\,-Ëi—·,Ëø1i¾±[VµY&O\I'tãqïÊð–vDÒK=~ê ¼HYuÛð-50( ¥Ö’ýÕÄÉ¡ÚòABWM™¡üèìÒrqažkG„®šlºã ü=¶¯1m¢%¥lV7ìÝ[X6=DþÞo›*航üF¼ÂjLŠA36”î>…ŽÖ!˜d¹ðCâÄ5N»SC–ÕÚXc¤A_È¢‡Õ¯‚Bå™B©Ùý…ŸÉOoþߥ,^÷¢½õ?¹ñÑÑ‘èùŸ}pþßÏአØ4{/o¶ñE[Æò]u6E«Iéiè~ŠD J^ â@gbBJWêܨ ¬+ÀÖD‹’cŸæ Faµ9TU±QÉ@ņPñjV¶ šÝHUš®'1·EUœhÑßSn»™éÔñÌtìZ¦bŸLQcŽLö-B²K…ß:®ÃbäGÕ ­DËJ†ÀÂÐ:¾L¹É†x™uÉ—¹¥Îr¢ ±Èpæ8":É Yœ‹ì0Uè5úã*f¼ Š'ÃÖ ísÌ6Уž-P Mi0 ªrŒXo¶m“YfTCŒFÔñu(* Ù¤ÂQ×7(ebw‡ãð`CC3=ˆ™Âîïd*£ÃÌCý=æ2&IöaJ *mTc¦íT÷F-f{õ¾KDQ½š22šŽÏŒ3ÈN ¦ŸVÉ'Ö}¿5™ÍnnnfÖL³½–•ϼìIêLï÷È›]¡(QFJßÞ}P©,0¦[€ƒF„%Oç•Òúxƒ;ÇP7œ4P†1 ‚¸ÃþQQi92«VI–vK ¥|/º/4GgDS FUS 5Çmûzòö¸L¦·Üɇó"Qjo‰äÀHw L·Á¦%¼#oé»bè(eÄe°ðº¼ë¥kHa6üwHú0\ôxĸml‹·nc }N8‰á›ë;7¬›©F$Á“€‚hPè2Ñn§Ñ쬭³¡XÞƯ|å4Æpø²êi»²‘fOóàžCEÆ ]“Ù·:ª¯5$/¶uCúR.–²õí4ÿçÐ?µm*‚ûCFÍ+V$„ »X*\–Î^ÄnOPŒœšŒ}—ÄË~§-CJo*»z cãmê t) Ýi1I$CîÊS£IYpháÀ1éõ”9fÐ1XøZÊ £B›¡c$®µ¬e6êÃÔªžqØvlÝ®P(t¥qƒ¾É?ü£>›P/‡ ¿#l ꯸uDˆ-»"ÃԬ֜뚥¾ãXòuõQÙ]NRÇWDU×l™0”E]'1Á¬þå(ÙVrM¦DâK‹òÒºò?Vqç0ý^Œ\é¬ÉÐ,ÔÞ øVC:%ÉØÉL"ÀfyëKbÛ5@/úÏ¡Úü¯'ÿ¸êos;ua ¢B‚pÌ 1ˆ”° ;1Ô³íaS ´Öwœs39SIWÑrýR•ÐTl•Ý©ë˜Â˜¢ÄDm;u§¾‚1ê|«ò%·Œ…1Ž ¼¡ùÖ/’—¹I8UºþËaòÐTŸ±˜*¢Ÿ’Eí8BG†¦Ÿ˜åÄ%'¹À…}Ã÷Ù”Ae¹†!¦™ â’Ëੜ á¸Ì+£òR´=Γ@†ñv\mK¥ñ©ø&AD '¡B£ëœ•I‡óÈXèæ·uÜšëì«vü¸Ps:{bdÀY31*êŽ ‡–BÀ“:EÊ“Yá3rTPOÇì£+bx>©ûÕ2­šrï1¢¯ÛœÄî³²#M:<–”¯Sø'}\É…™ÕVÝ[›Jà]x{…¦‹èYÂrjÑ:¹ü#FÊ¢œ? (·BFAÓôQ†ÃcgŸ„ж®Lk-Iæ DŒâ›»ˆ0kg1/Q§¥CS@謪]+_\š›2x|FÌ‹…Ë|‹¿3Š¶Éš“i8~Ö"QVÜr–âƒÔ{Ë’8S–<š²08]$˜’¤¿ÛŠ©0L6ÐAŒ¶·‰€F^M“|¨ ꓉ˆÑngU['Ã%‹>‡úÖÈ¡ 3Ÿ„¿êc4÷‹0qˆí:¥õý5‹ Nî[²>–í*¤P¿7?ÔmuPmÇ×M&‚šL¬íqìlÞÕüõ?+DhnXí²äU$ú¡w†ùÇ+»j”_uE]ÄÝÓPŪeYNߔȩK|ÚËþ2žÍÙ,lxãAø7ýJÒ½kJX°*’yW€J'hI`)€dèvŽŽ{§åM%’úAÆ®P†W˜Gö5×A‰i Kè½Ö=½ùäÚ ‡Ť(’¥Ûr}ÇSßµ7˜ ¯M¯^º~FŒRˆ¤êO²Å¡ï´£ÀšI=;N_¸£áéÞ»wܘþ!=¹ÓÞf˜»ì' wŽ ìÏœ\¼L}ìn:ǽ÷MQ¬˜¾±/*Éñº/”zÊQ å¶ mhœçáÎ!MKª6ª§²ÍSNÁ}¦+†§“øýámdöïpJm‘Ìl%ÙI>Ñ=p|T4åd«ˆói’5ú¦ÌÔÕlô¼€“}xÏ÷»è~íÀÝ?ƒ×Gæ€#AY«Ð°k[O;ížCQìH´ïJ‚ºã®W)é¼Ó¨l%´­…> b4ôií ërNv«ÿ¥QQ«#ǧäÊ»Xæ˜W'Õµ[ÉY¸zâ„1m9^Šˆöê*|QR£Š+Í@7;v-nJhÆMJ :öÙ¾çÃç Ñó½DéÈ:m—ÂÉÉá°nÜ8q+ŽÊúâpÐ¥¾¹ÄCl”×¶TøðÁBñrJÌ\LÑþ!Ì ÓPù¹¥†/±5¯þÍÒQ”>íc‚§Ô¯P@gJ%­L„úé —«6-ú:°^2»ƒ*MŽ…@TR%ƒg¼q#Cf!̧pâ”Ts¥©ï PÎüLmaq£49Èþ]P;‹“n9ÎÞ¡@4ÅY¥´®×8‡.N­QGçÕzPjJ W&ß› -A¯h°xh‰Í—½TXš/ΟÙd˜t˜,O `yý ÊãÍ‹9 .*úI¥Ù¦ôR†öo´8ðŸR EJ[Œì;@¡”¼(¦P|½åÃPjäÝö¨d=”±´`øàªÀÏñ§§ýw~öÒò=jc?ÿÏÿÿüÄ‘ößûñé¹þaG¡»jc?ÿ¿ñÑ#Qÿßѱ‘ë?>fþ¯°q>«&ÄùÌù¦go4-ka¾xV9UMŠxY²,ÌsX¦ÀäZÇç‹'fΨt Jisj: R,óSÔ“QH&(|3>!ORyƒXƳà ôFÙÐIÌY!ù•A}i¨„g¸q™@ a Fy*XY­Ùk^LëFž\*B¥kîJ¸¬* /Ú˜9Õ°LX¡< Ñ zǪ3Þ ¥`ˆ×ö4Ë• L©7ö0ÐKËZdÔqŠÿž²Œ©˜:eü8e¹^Ùs8ú€*ÐhvÙ_óÃAö‰ñ"åTzxjxít1Z7/ûxºl§Ÿ.¤i$}ì‰á©l6)ã^K'+ 㑊Ž å¯ò`j6\…"ò‰ž›î!‰)ŒoŠ *Lô0Áèxž’ñWM‡øÿV¡’*=íÑNÌÄo9ÞÃ#w¨ãy4Nñ©À%ñž£ôÒÊ— 25„MAù©tѬ(îP¤N´S¸B#HÏbÿÄS"]Ã-­²NªVL×C@3¶‚Q &’>ð¡ó3?ûlèžç—Wõµ±ÿ76>9ÿóùñçÿýø(²=}¡p~¶\œ_.ææÊ‹K³gŠ—Ã”}àþrÃâŒ×7Ð+Ý2vµ.®È€e¸uo½u´J‡ñ®ç&ž 9kÆa¡’²\,9kš©î)3…[àóS9WLŠnNeIÚ¢&­9 “@+žá!ÝPÄbšˆ¼*<ŒéÆÏþv>ð§¿ýwÀ¾û?Ýÿ¹ñ±üƒý?>ýórr׫sÕÜë¡óÛÜæ§Œ§ô&?%¿œúYÛÞÿ÷÷~ŸžûŸ•Á÷¤½÷ntäÚŒ“"ùŒÈduA|2š!Ã"~ã¯Ê¬F†E§aþfóqäápä*¹8Éâ¦RNI÷qoPÄŽ{nj Âo íL¥œÂü¤¸$ïÂNŒeGó]Í¡|Ôõ:vM,ûªÛ䑎"ˆGA®O::Š#‡×h±ý²—®¢ 1Í­ â¥Ø†pÑLµV›ÄÕ­†]–E+7i«gõ¶TºXnŸ ÃâÑ“L押¾{E]ßUqä`5{ÆR,íÙðKëÄxšº¨Kìo!ÝÂéUÌÒl@MÞ¤‘W™ÑY8¸ÎŒtñÃvËn8ž3„¸NJZ¬R”j›@X²4««0ƒ1/,‡Œ–ðuè9  ×EöTP¶óªëÑýŠ‹Ó@a…¿ÕrÄàÔ ®ç®5$áÂÄŸ¯‘›è-ô*Å/Az›ÙåéÂâlùâô¹ÂRyzan®¸LªdŽ–×T½kd{u  çzÙç®ýˆöÄôciöììår)®'½º1{®Ð+— VÃy“E¼ä;"˜ñ”R¬1‚©fZ„T*I©‚ãk Hx7‰JE^Ô¤LÏeP|WìqÌ” kŭ vÜvèîHì‡]U¹(Ez†§årivi~ʹîã¥èÅû¬e»ts&ÜåŽf=Wö—¨AhŠ”Óv76ʺ˜«Fëâ«*§k gÌx” jÒaßÝ*ùhFÀ(_&¥b·¨B¤%xì#ÙÞEÅ–•(ð§ì§¢ÀÝ#Ș§j•ü8[ÙìEÝñí€WÑ©™"ŸÁå_œKSœ–íÓJ;ŒÅ˜4ô«/³7‰¿… mâ;‰îUÄ?rà×e-«„S/b0‚­†oË‘¢ßo hÏ5›¶Da¹¸,ø=‘[cÜ•vCΓ4Ó6^òj8i¼…†AñZOk™üÕÅô’¡E“Ÿ²yLJ(1캈7d‰H¤ªsŠNNÏ1‡v2RŽF%hQˆ86R¬BE¯O„:Áõ݆ªOù(õ¤&D—lÙmàVÖ÷,ÉyTÙ M<üĘ©0þntX‘NïÇŽd´ÑN£bt‡jææÞs¨rx–Ù¨ÅI¢a³â)¤e¯û!øHCèqDGê ,^Õ©u®;ÚÙE’‚à„ºè9èVD#üŽHM“úàoÊæ ãr&Zs9ÞTuqj‰\MÓ®~k,ç·ík¡%áã=aÊXŽ%a”NWÔõ%”N]¦-F/ü¬ÛÞºà,5AÏ ÌäZ•>j©‡÷AŒVП‹VcÏ%°žÙN¸bW3LFuC%Ý£ ¨8´Â•âÑ0£«¸Æbí«`a)šŽÐJê-AÌO—¼ŠË7 l¯âºáÉ%¶Sï!ºÌÓ©”Ÿ íR)Nv•ò7»J•.u•Úhw• DÑPiïI׋,½æ‡CW@bD!–¿™×VHò3ËJa0Rp£é@D9¸",‡GÄs´`¥…Âd¨ Ë—Ñ‚®×DYµl” äW£¨œÃÁéÜQ)S)S)oV©4SiÔ¬4Si,¦Ò˜Yi<¦Òx¨ÒôVÛ­É£jMÄÔšÕ*´í•p#1uŽ„êœ¶aV9Såh¨Ê9g¥ílšuŽÅÔ93 ãÈ2—:í ×[7ëç\4ôÝõ'°þ|³] 2—‹©ž3«—Öm7Tc4¦ÆhwƒG°ÁÓv ¹ï%·1b¬ÄQª>S}¼»ú1¬~ Y»Ùòzvƒ/°ã¯¼‰x¡-óQ›g[þÍ_OÏÚ¤ñÍuüÕ(E 5\tûB¹ÜDyŤÄJOS®Ö]n®«Üh¾êøbÊuÁC `¸óÏ®‹HbVmä·‹Tƒz¤øÐÁŨžþŒ‰abðÑé}hHWwŸd3ò‡.Ž2X©9ÓDø°‡Ì*Å´¯Ùk“â<0vÃ'Ò'Å9·m¯Á EQ$<öÝ*Ï/”N/,gáÏìÂ2`ЕBJ\yþû%èË#ˆ+—IÌ¿²xáJëÂ0?ÓyÍo´â c;jòòcó GÏ—@†,çgfË…ùés K˪ ÌPÃ#o¼Mï71x 4Ì $„ÒÂ"ç!~¯lûƒC S*¿$yL76V;5”K j7Û®¸pqù\EÓ  ¿P­¢Zer5øO[àÏ>öŸÌ“öÝ·±Ÿýg"ßÿqdüÿï}ùC& ¿ü?½ÇÖ¹ó½×_|ñ³ß~åk¯ÜþáíÛ ÿþÕΛ;Ïïüè¹[;_ÚyÇxüηþð—v¾÷Üó;¯ìüõΫðß;ºò§¡Ì×nòön¿µóå·vþØzûk/ÿÝíOÝþ›Û_zî·ß¼ýqøöÂÎ_þó7þçv~ÀßÒ-Y·_¼ýŸ Ü[;_ÝùÖÎÎÎâj?0òÜ{#Ï‹ööúê¿ûÎËùÆß|å9Ó¬ƒvùôî¬9„A/þ„ëwzyÆ|`ÁWørû-XæÁûÛ_^úø°]gç-V¤~ù¯|no{Ž2Ш/Üþ«Û˜ôÙ·“Þ\{}çîИsûyè]¸‡ø‰±è¼ôÊëŸÿÒ;o~ò¾qäŒ}1ÆŒ±ÞèY4,7¸ÿ`–¾gØoÄοñï^úŸt>ÊþL8}™oİøÖ _ÿ?n çóþ[q"1Úˆ7±s¸ˆd¿Q´ kj+ P°/¾ú¼}ù­ïþÉÛÿõŸÃ·ø}ç¥Úýï·_ôþ/;o>÷¼¡çÜù1!ÑnÿÖêÛX4¬ßyçÕ¿~éûC@#ºÐ?Þy–ç[HuƒP¸Ü $›!mêΛoüÕ‹ßÜy3ÑЯ¾öWÉ”ÓmÄÙùñw^üÚßô¯î¼¶³ƒ(ø ÍìaºÙù1뙉Hfç‡=GˆÀ^bÿÜÇñ¡mà©;;ßÓýü:´@øñ[ÐéO|çÕo¾°óxgç/v>  ¾û9êêÛ|Rì;di$ê"§x/«ÐÝRu k˜Kø¢´ÕrRBÿäQ¬èÀ££Fz˜erøê{;oÞþôäO ??zîy xÐ+ì ówvŸûd`zÚùl`TâNâFëËìÄz>x‚·VëÏå Çãxûo¿uû?Þþ}˜“ÿ²óÙ¯|⻟3x†›;ÎØLÇ¿îyÅ|Àv>AãüCL›àõ?ú£OPÞŠ@}gçÛ;ßÜù¡ì.Âg$kßqW>÷<’°—ÿÛ½¼‘ö½þoü¾47Õ7>óög‰¾¼ó?ï|ë‹ß€ÅÚÁÙ† $‚Á4¿tû5 W‡A~§9è†ikƒ†AáZ°NÔOB‘x €Ðe_ø»×þvçßøöÿ0@1ItÞÙ ÈL›Ü×ß|õóïìögƒC´ûöÜùD¬þ3b¸~tûß〹¹x Ü—ÿ˜ÄÏì¼ǨEë™–¸·ÿòKßýîß½óãŸ{ó•w¢%cÍoÑB¦ñí‹o¼ý'·ÿòökØ Ée «Ìçkг¿ÙÚvû}(ðÜyR¶§ þ\vÝC`TèÐ2æ¾§)í¹çÑ”öÜóhG{ûk€oïpÝ;4£ÉÊЃW𤇭ö¢HS2õ0g·ÿðu1øµÿïKŸéa;3£ÂÖþ~þ5îÙ†³¸%ÿÞ[ß|kç/¸ÕxsÙ·þ·oÿíë?úÚëñ&²Àijó–6}Á>mç/AîUšÅLJøõ7ÿè³_|åËþÚ߯Âzw=Þe%ÿ†õ2üýš9bûÒ[o܆y7 „-\_{îëÿïsÏ¿úÖKßÊD­ZZœ’HûÅ¿þ½ tÔ¶-¸†¥Ÿ{þ›o½ôßvþ#VÇ›²ÔFüÎÿòÊ»_ü› •¨½ê­7_ý¿ÞVïclT·¿“óÕÛïÝþôáOoÿKÊÅŠ±MÅ•îÇ6ÅçýLR&Ü^ƨ˜ñ6(,ÛzÚ TbŒO„†¯Êþ™š‡×¿öúçC´¥§õ)о{¡zŽ·Eõ(¼·I*¦Òž–©˜ò½ T1E÷0QÅ”îe§êQ4ÞRS¸·µ*¦ð>«Ø©`:€Mê–¨ƒØŸú·:õmkêߤíJ;ÿNïÀ¶¤-J²fßV¥~mIÚ‚$8IÛŽdå¾íGÚj$+Þ±åh?{‘„·6£˜}´—é¨gñx R|ñž†¤žÅãíIqÅ»ÍJŠÕŒjHßùÊ'ÞøÎ+?øîíaV"¹ä»˜—Ñ`´‡aIUPQµñò_ý?`V¢’=-J(¥ôgTB†ä»öÍ7÷±!í¼ó÷Íÿ›j ÓôÂwþðO_ø_¿õÂï¾üð×_~ù?ˆÁÀf„"º6(íüøí?Ýy©_3Òíçoûö_ß~égË„´Ÿý§ÞËr€Ï>öŸ#G€PEí?GÜÿ»/Ÿ Ù×”ú<¸ËóÀÌóÓ»ËcYóΦXulò|4QŒ™\&¿‡q{`×jÍM Hð88Gý€ŠU^~ךÍô tªH2,æg/I—õÉÐé3}nvú|ùÑÂ\q¦Xz¬¼phÿRqþì^ݧ›n½ÕnbRVôËÆAˆ›”ö@âÁ¡=Ù§‹­*˜SÎ#G3#v5PY¼†“Æ3wT´eÉ:”Y)]é®°Gú²”n¬ç)]âðáîOݵåMÏâOìÕ=6½õ¸:õ“·ºÝ£ËS±[‹¯9=Îûö‰Aþ;„óù¸6Ú©Çðu(tÍ*¸e¥¡=¸kõà®ÕOÿ®UšoŸQ`è³m„gè~.jmOÆO=ǵ¶cÌM¼¿k`²1f¨±×ÁôXbLR‘‹a1ócžŠéGô²X,Œˆx»ëîØ^ë¢æ˜ CE°ºäÅ©H4+’éðŌ¥çå4FÄ>¶Ý÷e3€½o‹¸ýbm<Êö‹¯Æ¤†“íý.»uM©i¬ÛîëÒ› ‰_|Û;`/ßËiŠ›·»âvÏ;zúOÏÞÅ·û¹¹×\ŒIr»ïË|±à¢¶ÊíØ{ý-EŒq3Ü^Cà¢Ïí~.î=w¦ÚuŸ¹Ûo°Q“évü­~ç.jWÝŽ¿[{µ0\Ø »Ýû¢a?½‹l·»ï!î?Ð\Ô¢»}§×\ÔÄ»}ëŠÝ½‹Z‚·c¯.ö7ØÃñö~·÷µ,ǃë¯w1ÖçížW#÷§w1Æéí&ûí]ý{£rŸž½‹š¹·÷ºk¹OïbLàÛ1÷0÷¨c-ßÞû®æžàbÌèÛá[œ}uL‹±´oGî{\Ä¿¹zPpkýv¤ý€‹±ãow_1í»w1fþí}ƒ‹qØî¾®Ú7¸_íîK­ñ'Øî¾úÚ7¸ƒíî ²}ƒ‹ñIØ6œ´OÂÁåãÀå¿…‚7ø6ÜX¸±Àÿá€àÆãÀ>7nB»QôÓ9Ü‘8pG”¯E_ÐLpGãÀÕw,ܱØëÀý€3|9¶c9‚ëÁ}ËÅS.}5n4Üh¯»Äû‚‹7w¯¸¯ÞÇïëžq¸‰8p‡Hóàb|C¶».ïÉõÙîºw|Ppµpsw.ê{²Ýu‹ù àº{ºì|pݾ+Ûû݉Þ\í]eE2•mU]ÚÀXBé¯w12Û=o^÷ .ä?³Ý}3»Ÿ¾!¸;²ÿ÷ôÿê¨{ác€~ããÈÿƒ©GFAŒß‹Æ÷ûüœûô^ÿvåž,þ/ÜÁú玌büßëÿ“ÿô\Ô,ß#¸ƒõŸx°þ÷å³çú§«m÷šÓ¾Û6ö^ÿÜHþHWþ/(ùÀÿï~|P ÀŒ5i±b{ $à3¯ãúŽ/Øj”±¬pvÇüHn4=rDL>/³1Z1IÅr¹4gP9¼,3£Š3èÄC6…úDd¬ÃPµDiBƒ4õ«XE%S=N6sôök;Uד~d˜×nT³¨XĬ©[pTç­cÒ©vÝ3sÝŸ%Å^M,’.SHÿ&aCËøÄ['œL`Ü£ÓÇ…ãRþQ¥³ÎcÞ]1hûìÊÁæyÌ’‰iMÑØ¤‹Æ5¹ªaÛëMTF¢$ h„~tsìxÎj§–PV\*–Î-\,‰ÂücâRai©0_zì¸Në\sÓ1, ¢m7ü-˜paviúÔ(œ.ÎKaÿÏKó³ËËâÌÂ’(ˆÅÂR©8}q®°$/.-.,ÏfØ`Bý=&s•–£Ž”W›Çl$4&‡¶SqÜk”Á˜\ö]$œÎZ8x’}c 3äTÑhú)áAO Cëd6»¹¹™AUy³~ÃËžÌ šЋ•œF¡çzÅaèßܧ)™@XH}!¡ñÈnSåH‚V¢Ö†ºaû¤tp“:göa*tü&–JqJb{K»¶(ü–8 Œ»ô…A8ObÝŽ\,ÜFY›&ÚöõäY !9A´¤['d,Èó)z¤µt¯%\ópÊNÀ—´ÊDJÎøIÄ(}/[h äíM¨sB•KËǺ<õã»ãÁÈ«d{¢ÕiÙ vù]¥‘³€Î^ {Œm €8 €‚ ïpkMGÐjã^àL×[­fºíÔxš;Ò×s|‘îXeù*³•B¦4”IèF&ÅÀp‚úʼzœL>¡Œzy̨g¾ gEœŸ‘YáQˆì¦éz£LÍ.Ì¢ë`sÒîN-Jç°@Û ~GnÈ<Ž~ƒ˜<8ù;mgê™-ÇÛn4o<ï*ÍZ³M-xÁ‹ìt°n·«i¿­Rš].¥—§—Š‹%ñ¸ñ#]X:{ñÂì|iù rO£K¦ð§[’LŽÉ`pII3=̉ÙÇ«6ÇNÆ™ƒ™E8eš%90h×Ëeßß*4o(ÉÑ«SÉôøÈñÑ\= Жðâ‰kí†|œ§Çh¡hµ5z‘S/æˆC^S¯WjùzŒ^Ÿ®u(.x}MÁ§ç`ìp2sóºÌ×ñ (ô@ø{cb¥³úx~dä‰ã²âðE‹¾<ž‚Â;˜ ywaðaø’ :»4ËâægfgÄöÿÏÞ»?Çu‚ùÕ¨Êÿp QT7€nö Š"4 ¯±ºWÛXŽ¡û8¥ò¼e²³ãïóº‰ÿ|Þ{´±Pï&„—–Xoï\ù2=yº«e¿@À2@Ì‹î’[µª!e¯×K÷±œ÷y)Ey<ëNáÉ ¹#œ¼Z˜¾òsÏUï"¬âúÁŸ¥pÔÚ‘×DO>›ˆŸ÷Î>Ú8ë=öhã1¢(Yd!®ŠG‘Ðå.ýÁ-5€=ž‡D䎛¢Î\TòƒFÏ‘-ÓÌÉÚjr‹É­õRcÛ›„:@5ÂÖp{CÑ´z4M£ %M5ÃMï=ZM*ý²™ï>+·õʤ‘~™uËÜM½kyª™ ƒ|Jâ[|a ¬ ûc¤Ð0ë~…71¹êúÈô´ž^¡€ …(jƆVÏ?2]œ}$Ž1›˜y„<¢§~„«•ez€–ùµŒ—^&PúkØ/6ôHýáâzýÅ]údžvãžwÙ‹mx“±¡Än|c2î­xãýòÆäÆäÊx H¢¤]hu–Ú­`%2naHÍd°°p¦«¨ œäÙŸÁ€2¨b@Îf>BÓUTb•=hEâíÑÒÓØ_"4„aHÆÈð%ÁN4ï—í|Ô% Ò­"'öHâ¶…½ä/Ò2Q°YçuÍ/Ȣ͆Ü……¥Å^œšZZJ[µy¾œ2 B6UÚ³àO×à•qÚjfV%°~€…ÔtV# rHVGo,Úõ¯®@|}ÆQšbäëW2Y‚5¢ùó;8$âyZR—lãöÌŸß­®®¬nŸ_ì%8½p._{ê©Äã½=è!¯µu7ñkK˜e¶ÏËIu™ZT« 0…œ‡*C*—Kàë­¯©\ÂÚí÷øZ¡X»ý@•Ã#JcåGV¾XÖB*v ðÒ|*ñx!1ºØë¥z½¹ 4óÆ¥ß=Ð?ê‰ ®™âðl:WÀ+¢äëkäõ°â.ûR úkz¥­rÉßÜ\»­—ø<9©5J:Cglî$\­Ã*¬ 1-€»­ö’¶?o$ 6gΔ+Žz­UnÀìÄ qûÌ™Jb—€oÝ€¤jµäŸ9ã#¼G43Q|ƒ‘PA¾%™_ª$Vhî¯Cœ¸Z¾–Ê/A¨ÖÓ;Ѭ‘ÄZÖ­xæLÂ:X2v,, 0ºø¬æ(£à-ê“t{øWqP'Ë|¯ÌÔÎ)àd9I¡~™ƒ÷ù·ÊˆC’!•ˈIÅòP§‰÷ööèhHotN>’ÄåhZ`Ãg…"Øå'.9|Î%ÿ´€4@u¢öÃKÄ’$y»8YŒk GÁ÷–A0òÒÂÐÈXp‹XïrO™‹ãûž‡ž˜§sN›b¸g…ÝÛÄüôG×¥1B'ÔIë3JÈÍ¿ì2O+&R/HyOé;ü=6wBøZbÁJDi{Z"•‡ÌJìIæHF½ØºM³`ƒbw™ÏZ2+óYKŠüØÐŽøèßPÒìbC§öâ@}­« =`õ¼‡­-aVèê*¨lš/$ž[ 6¿œX§ð+!p«kÕÁ5[p…BF@BÜ-/ÆUÆø&ÏS‰ò¬¬€Û3.ŸMÜ]ŒÃC®¿Â†há ¬*Fá=´zô.O¯3¯¬ŸOÆ»a} õ98cЖ9˜Í_•æœìaãDµZõËÕêBÿâ”s5k0ÂÈqÛçcŸÎÒ’‰£æ*­Îz‘€¨¶J§2öb4¹ìHVz`6=Aèà”åÌžOæHªî½»o²½|è³'ÍÆE§õá6M¶h:¯*l'šLÆ&k¼NöÚ’^mܪmqIy¥Ö${â¨÷¦+e¿¼\öm§Ã@ª`¼n2ñPÆÆÃÊ,ÇÑ ^{äÕ|_ñ=#K?ŽÌ®y³ì(G °û¦Ú•+fŒ5µ>[­ˆå&_/²ËÃx“R`{±¡óNøîq U{Á½7À·+71V¥éïÅašåµI{¶žeªÍÚòJózsõã7škëõæFsófs«±½óü­Ý&u86on™]ZTÒuµ×ó›KÔgðU(h*-Õ× 4Yê -’ܤeæÚ LèΦZ„ÈOi‚‹fu»Õm¸²8ùQœø(ÈmþÌi×ü³œ¨.6ç—jb†eBçýæ|%±¼o–‰ÆU»«°‘Ê@ ,WšØ{BîS’´á½½e»¶¤S‰6é”±þzqÏG¾àGý«=½»'Ó ßDÃk;åjE|Q jÒh5¬!gß1¤u) VŒ°&Ž@=¢®Ød=j×¢D fSqˆ‰²PŽS²Ža 9ÆP…«CvÚ€iÊg ÷l=b¨ãªø^Qæ¥9÷}öЩa”÷*°~™cø\Í~h®:Ø÷9JÎhå8ûqŒŠK3.nh¶|¨4d\&r^G&8w2wЮßIõøuôgÛZ0I÷9Ùಋ¤÷¶;åïîîúieB—D"2wð™gžñSp(*T‚éÄÿN¦Ow;|»%²¼Nœ84¨ÃG†%ëÝ}T®C8>^ ј,QKõˆ%•2˜óÚ<D,ÛË*¸'[¥ýÐ0л"uIðl±‡Hë:P[îÅËVC,×öˆ¡=TÝKX²ÁÒÁ¦Ð^U»Ì…!­À”ެŒeWâ÷RXÙ·{o c<9S͉יj„½:ÓŒs3Å•j(Î3jiKÀ Cñ pÜ­©²ñ3 „2o× †¨—g=ÈA‚•~ÔbÑs'eâX|îdû$Ž(ÙsZÔ±º-™¾œÂì-,K–9¡Z9¼ÃÕ¢7Æ`‚Q*¨°„©*ô?HÃgpÿ¾z~—N,p—g‹¬öÆc´íìñ)úžÅÚ^Tä"–x!×”Åcž¶b$kCœ^1³ Pg Á5zûSØ&”®¬Re(•*¨ˆƒrº2qd¥r%V­-ÇW®£éGFó!ö˜%CBVÍ€IwQ©E¶®Òrj²²ž‹Ž°b¨Ù@]‹Þ±ztp³†nÀ„×"—KLîáAÔ!á ™8V¬ÄõaËd‚zÂzƒvoï5C‘æÖ"&ÃqÉR/B¢Ëfåa )ÃÔ¢+‹i^U —†õ΄2Ãë…Œ™¿Pw‰¼èïÅYmÚ+C¦$“°$ž6u“Iq™5œ5ä Íš1¤L\Ϥ"éM2€ðööhw#”×5ó{bIQYp”£ÇiTŒ!ÅV¡TJâ2ZÚ¢Vá¬úI“S-…À2sËb3L6®º³WV¼DÒðBÉ—œÄ•J¬\>MU¬<£@ÝÂ(w«ZÑš¢î¦y‡®ìÓÄüX9Ž‘2bv¤2:þCÍ=ÜiÅ{Ù—¾&ïÀ2Õã‹¢Û;~ü4r»é2m·ÄódkQ]i.êÓ`]°àª‚ú4µ²’u!èã 2®D*‹yT¿ CïÚ™ P7Ÿùrg5‚°%*ÇÓV[é˜Ùg£feaa€TDVΩ]F$ cµ•5@±:Dÿ,ë"Ä2±ê¡‰[u‘[˜qea¡º°ÐàHËýúOãTwâ©õâÖõ&WY¼“½Ë‘PúÏR+™L‚è(*Åã!Ü+¨eCÎßRP­–À²ÞbO+DJ2^ˆt4„ÔÝgœyKêæê.ÿ$éÁQAòñ@:³ÆXžŒá‹Õ¤DNg²9ü?3•á(âáo/Îeö ºZ‡pôžaèÂE_9™ÖçñX.›DͲ€XË=^aÖûf]ÀáQŽÐl2¯®ycm½¾×ÅéÆòÖžMƒ‹|åBzÐÕi ]8ŲSòzJ ’y±—û]·­ÖÅŸîHº·ª B)3è—‰òì‰%öÀ²ƒÉ½çq5¹ÁŸi§ÿ|ÿ¯wAÌœ˜½_Œ7 {ʼn%¢çgn?G§N·ñB|Ö,¦ú`Ó'Š ROÌîê ÎÂBŒb-,ð! ùé1âKénE#TÉ8›è>c¹"ˆ©ê2Åö9<ÉÐö¤W¥$²7FGØqR1J º±ˆ'*&êlgIŸ2Xé8ž×2}±]n0Éùò2ШûrawpÙD• ßtÔŠN=_€P úVÆÇu_*œÒô¬.ÔÓ¨ž5Ùr§Þj÷úƒñd>ZÏv%ipb’f%ÓeÚÄæíuü?«FêLý—Ä»x]. ±B¢™4>¹¡z¡¼ÄEàwYq—wýâ./îÄÝ9q÷¸¸K§ä­”’–bÒRNZ JKIéü ê#Äg,Í£i+b–76}Þ!ãÜ%;‡'6sZÅZPJ9ô’B*ˆù€Õ¿—ý­AÖ×"†ø‰¤9ÍçôT-7‘óœ0ÉùÏ8«6¥Â ûQ)pWYL–)íny÷vùv7_9JãÉyÌ`sƒ›~³òðŸýf…ãàÕrSnV9z5NË­RE®lÕÞÀà£l×íAˆMÁãXŒì‹cÄ ^úí¿Ëì‚§òÀÆ_(‰””ÖGüM«†TŠÅæ—HùÇ{{™i ÞÓ+«‚Ï‹_•ïaî(8@ 'l*¦#Ñ^ A}‚¦Ôl½rïÆÐØïÁƒkwj7½›ÙÍRä$¾@ÄÎ#Püô3Jñ¸­ úVÍÒúsDþÛU)ÊŒ:ð[A—Q’ÿ…ÝZuaw9c ¾غgI$I }ÜÖ>KWPÛ­6I¤¿zjÝkí30¿Ó§`­×âpTœp³²M±O~3zî̼e´¼!ëWPcÜ-Ÿ£E€è½^IÀÔtîK¯´^µÌÊ ´^6ˇ¤Õ H¼úÓjŸ¶¦Qì°Ö›–xù¯2“ùä°û¯Ö_wÛÎ8y«õ¥Ö›Î—»ZmÏšAð÷¾HÕӥͷ¾Üú ÍÚWLKÌ·þ²õ5 {[5F«h½LÓï[4K­×(è5ã#šúW»¨õè©Ö×úÊSësÐ;O­ï[ÆVßajý} Øó<‚‘=%=¯ôÉ™¿KàäFÒ~rÕ úäŒGnôN¶u/ÙÚOŠ:Žk¹hÃjwŽß\hµÉ« ­·¨iqoà¡Ë[$Aù3üÙt=½õ=®j€uxM(ð¹×¶)“¬OÚG婨DÚj!¼(­g ìÝ(ä=2ƶ޳Aü†Ö×@n§­Ï!_§«¯ò™åßxMùŸÈ<÷[/3tÒ…ÐÈ`òÝœ¥ÖËüõ…Ö˨ÐI YSkUÜBZÿèÍïŒø½Ö[?ac}°qH^ؘ>8qž“8À‘Õ……Ë­¶¾Mp诶ԄÁ÷Ù`‚ !ǯ¶þ‚½Ð€oÀß¶~Ä^jÀ·*çþG€Ž¦[_Š·¾D{#³…bh›¾^€*–Ju ¥·^¡Ù³©Nµ¾gõê«ÆyùÖ½¸£¾èw[ÿ™ÂÑi‚°OÁmãÔzëï©ãÙú{nhóDyëÇáoê­Ó>WkÝð‰çO¿KÒ?ñ¦ òéw­Œ|æmø KÿÌÛÅ‹7 äÅ›øŸUOþ]B?÷ïêôŸÆæÅió€Ü'¾NR>ñu[ÔÈ‹@ÿi1Äý^Öi‘n rcÚ½¬7i ŒŒÑÑFfã$'­w[ßn}¯õK8=ãÝúG›®—uk¸)¼Â‹XUû^S¸c&±„í°Ö~Su]ììjûAÞG>)nåMÜÐi-{_º*y'&ëËß§#'$Ükµ›èò>k9­÷%›XË6oº-ïŒ!´î7QÁ >×Ärë ÍÖ­?n}©Ùz³‰»Åfë?´þõ+Èch¶Þ&Ã|7ÅвS?4OÌQSp©õO¬éÞ%¿ÏÌeñ'gðyk:|·^{ñ»ŸÄîZN³½ŠÂŠPfY­“P1¸‡ 3xñ»¬Ógôz&t„zà†°&`Ï!@9ÊmxËJOm‹QWòsÛ­ö‹x¾µŸàþbÛm"Ÿò•DëõEGCÑ^±ÑÏâúi.MâØ¾ºÇíö}6„¾ 80î>ØÀpÓǼ±ÛGþÊ_Óº†þýµÝÎ9ö)'ÛØ˜)ªÔí^“>¼OXu^_˜ºHÚ‡¹Ï×&w9mrh£aÁ÷ãÊí¾1‚ÒT„ibÙ½ÒPPW;dôµ)€zSÎ6g‚{ºåÜ"ïÑûpµÆø¨ÆŸ9ïû–£Ðº×Ë‘½Š‚:ch2 Ž¡†Î)Žuæ7=R0f`ÃF9 ¤÷€ ÄèX×F• —µš{Ì¿oÕ|DÎéÞ·ÅšãÞ³½5I†keJC=}¿x¥ä-æMš}…ù=i±@\hÝBb¹cÈçÌ.¡Š§ßA0H+·Âv÷•Ð$#UÉA–6;CŠÌΉFÇçÇó#Qà™RιRVwb²Y¡qðkÑcLÍ÷ÅBT:c.êQÉI½æóò7§×ò@CÍÓ.„≑öžŸ~2^@µ£ñ4‹ôt¼º¦˜±qzLÅ x@…‘ÔÃò §WÁÑúö…!YìÞsŸ`ˆ¡ ê~P½ cÁö%BÆDPD!Z1õZB ½–œ‰"Õ°O=-N×êi+/Ÿ¯‡~ÿóü„ýïÿƒü—OFœ²ÿôgð?ˆÑïý” ý¯ÿ;Fû½ŸâäÞÒ™tbAîñš™@ÀôˆAå'ïMT€+?Z/Qéÿ¬1¨ LÐ ðäg톙ˆè°ÙP0`›;R}qj@/²p$î³U4åjäoå|⤳ÿÄ7XuÑD}â¿÷Û þ{¿Íê¶qêÅ?øïÒÍ&|§×rúîÓŸA<â´ÊLÎï¾ÿ©ÿAqðÀ 98ÿ™·_¼é::a’ºyEjmŒ8"Ê0qTÌ›#ß!ÐÓcgÁcxù­õJ\YÔtâ+Òót´1Î×;øÄÃ)†OöÄ^Ø~áJü…OýVñ…»±>‹¿ðô ¿ýÂRü…á>…Ya0…¾ð) btŠîÕ«u~ɱG­oÆ8\ú<Æ1~'–ÎjHq>À:Ùú[æÖü-þÇFå«gú[ÿù7ÿ]ýÇÇp÷;hØÿ>“÷òïû|ŸÁ”I<„!ž½}mбkš‡Yðő Ù#1ˆÖ†ö¼ÆÒŒˆMv€Zo/ÎÓZ¶Øä‹ìX@:ê{ñdö^Rb.Ô9f¿‰‰æ®­ŸÅElýLÌh4L>N² ,Áþ}`«ÏÏÑ3Wqî¦H)qÂ4@ˆHÕ<çiC^T”¸¯‘|£êõIÂÉÝgN®Ñ{Õ!ÜŸ l­]Få·έõ­ŒáæDàGÖ¸rªíëNL„«t:¿ÿ~nö÷¿ðû_ÐÆ–ºþôï©„ŸüPÿ䇟üÐòÊ0€’ÒPzTúOž³ÁhúPÙºÃÓ†+çÝÖ<ÒÆ´}9Tkâ‹ÓP¦S⎦`J“Lj“Ó:˜‚<­«ªzô¯õC4û”[ßfÇî[?$ÿ~Ðú6½3<¥ìA¨õ/FÆZ_G ýÿýü~ëë­o¢.ü›è÷;€_7ßz¯' ÃŽwrÆË‡úýÖ½~ÿ¯U ð0?ÃT+êÿ6ñ[WšhΕ@3%åÌ=NÆÿ[Þ`2™tÑ´îù­{:¡ö™$Y›mžÊ‰¬>î¿.0Å&sNíÞð·Þk½§œêoÝ;­Tâ{¤µ¯œÚ'U\¯¢´Û<ò4Q¬•zœ¿õ_ä¿Éãüô™^¹‰B^hÝÓßP{ñŒñžoýû¸Ô=‘‹Ý´cC>ù~ë•ÁO¿ËOî‘GýèÞ§ßÕÎíigWøi¸ÿy¿”¦Çá>±XÊópÿËØg¾DÄØï¼Û|ññ|*ŽÜþþ^Lð;‡o_|…^÷Gü_Y?¢.Ìã¶´ÈOpXëxx{UµÖ+к<ý¬eëÞ"_ÛWæ­dºè áò¨§ræ ù¡ Ø– `½Ò M_BI´~† û‰Öûè§hý3ÅúgKÖR®ª8ÂCÐ{X&& (û ¹l¼{&+&’ÎÈ÷;±àW˜á^ÙÓì[¥@v(¡pîã`ˆÜȯEpæL‚íéw^"ŸßSXѣȌáÍÄ-H”+ŒÒþžYD°™.£~kâByð…ßšáÚ ÿÓ Ÿj½óBé…"š¾ý.J¹~aaál™Æ¢8x'CíQ¯'‘¿î…útqfn|ÝÏÌ ãx }žGƒ…[ЦJ båÛ$B‰µç=ŠÔz·dG“ôÑÈ},\M±À¢ÈÆH¨W 5 B‚õ°‚¢auêU+L …‹ÑÐzYÜ4P=ƽ!”vÞKVwõ£aÖÿÇ|<{Õ¿QÃñ5’þú!dÇÿL¥Ó¹¼ÿ3Ÿ8‰ÿù þÁAäE!{ȲÝv­­–K¸Fx½dòlc«r¥à„äšßÕU¸Z/\žÁ1*ã§c›[ˆÑncaè0^$÷SSìÉKŒQfèætŒÅЬ®nÅ»ºpûÆ$Þ(¹nÒû®.+»45=yyºpÕ…„ÏCý«=/;¥ÂÔXŸW˜;[œN<9å‹Ý9IÃÞⲯlÕ6=ÚùI.¤;ŠÀaÓÉÁÐcnv4‘ÎÛìô$‡•ÒÌäÜôpQX!Yaéã#…‘”z:Æ‹.NI6$› … ‹‘Ý/Ó`Çà·ÃUØþ¼kùÉŸë/¸ÿ?‚àÏ¿ÖÿçRÙœÙÿ§òé“þÿAüíé,ü3Žþ Žû9Bèg欟»ì¨^ލÏ4z—#æ3|ã=svP´gÉÍê¹ËèÙçÙæ¹Ëä¹ p"< }2¼s×.Ü*$=²s—عË×¹«ëÀQ»dœÓ.3<úqW¤›$øq—c³K ±‰î*Šw͹+B0çŸSnQœ»ôК]Ú¥G­$w»d¼Jëð(¡œ3‹1)8ãÿÞṈÔ%ÍÈÇ!¢6ótçÁA¥fe®Ÿ¡ááƒ<^³TT5#W”žª¹‹õÒFœæ.8L3o¡G¤¹“Íh’Pzr*$J³ÙyEˆ%Lð: Ñ­ƒhDî윹³ØÌ!¡™»Ü‘™Ü˜GkDgDæ“^ö½ì"0ÿB÷±Qb/Gëa°ËÜw¼ÛuˆËÄW ¸lÉ8X´å0a<Ö²). Ð2Ì2¥ZÂÌ"ÆXFÌïý–é¸âÝ%Ûa,‹9]Ùéà‡†V¦:öb v…VVTÀÝêYU–¶%ž†Í Ê"¹'?'ïZ8$ñ” §, ÁhÊ LY1•oêcœ9¬HÊß 'Ò­8Ê!>rga”9kùÁ;Mó;x<ÙŠ¡Ü%à‡Pv"(K›”¹¦añ“…&„Of4I« ”àÉÇŒ,”6B'w™‘“¢F¤q“Eº6™3Q“"1…4Y(1“€|C ™l@äG5t€0™ìxÉ]V¸djEK%s\;V2‡˜QY9)™cÂ’9ÔŠ“lÀŽ’ÜeI–ÈVŒd 2C$ >2B²D6$ dY"›á‘rÃ2±Y ÏÙB#Ëì«‘‘9‰+02‡ÄEv¢Øa‘¨ZTä.GPdCW3&²Ì}@Hd‰YArDöã!w[8d©œ YB€fG f,daQ;² 2#!óR!ó–=¯§ @dÎÆŒ‚ ¥]“3²è¤ÀÈB!wd™7;²BÿXò ,:ÐÀèÇAXæXæŒ},„>æÃ€ù˜dFàc>ÐÃq9{Ìéà¨Çr$v=ó¸Ë yÌ…::3à±H> §ÛᎻìhÇ 2ìXƒ:c+XIw¨céßD‰t,ý~§Å9f@8̱ tQÚAŽåÄÄŠqÌ+ž⸠ˆp,Ó fšßXˆÂs#ÛÑ9 n¬;•¥n½&(¡…·kG6î t;®1GWÃ+^½ù©h T€@fLc.D i¬ CU0Л]¥ÎXjE3VÈô`Æ À7¡ŒA°5óq2Áw 0ÆXÛQŒ•i b,ÐÆ a¬RŒy?ÀXe¿X†¾XOW¢óÎBÿF•–Z†“íé{È£'šÒa‹»ô¨Å³ælÇ,6 jÈb ¤G,慚ƌW¬%+áŠE ƒL€`ÅdÄ*Ö“ÍPż~E*†qôÄ'8N±ƒSh˜bnk3Ò¨žnµq3F1o…(æ|€Å&¨\1AîøÄœ6 <±dïŠN,óh'VAÆ&îê<4±fE&6 {@Aq‰- LhG%¶€!“؆dÎìÙ‰¥oaÇ#.¹ŽX!0¢+;1Ÿ8c‹~> ±§l×¶ @ÄŽ#±âK…„!æ …X0q!㊫g°B{б+3þ° òí eE6j\[¦Åæc™ =ÌíDVAfàafÅ@gØaC: !hA‡à˜Ã‚Ý"«5ÝpXÁ 7 áºÂ +¸цlØbáˆ5Üå5ÜiXƒ™†]@¥ómG˜aˆ2¬eÎd˜÷ ŽÃ’Epˆá ¼²µ„–þ¾_؆ó6;º°œø¨Á…yÆVVha„# wÁ…EGhÄe 8¬°èóÜdvPaÄ*D¯g…îdvDaääèˆ'¬Bíp­S%g0a^æíR% BõH HXCqÆ–ÍÌ #¬3pDB2ˆ®Â:&BXÅŒ ,s¤ÀøÁ)<|0Ç ŠŒqÁƒŠ,¦X@è`NèˆV©7XQÝ6Ø"¾ÑÃQ:,”ï$f0·¥2X1˜Ãƒ0^°€‚á‚ (kÍ:È,Xb8c«(ŽPÁ²ŒàHÁ* ¬Â¡°¾&˜ãDˆ, ? H°tGcKV!‚%’3B0C ¬wbp|`.+<<0éŒ,œÁ Gl`†˜k¸ËX´¯0b;,0# ˆ Üå ,1ùä] ÜX §Î€À²ØÃâ‹JëÌU1¢K2;lª QC  (°‚‘€ØXéÎ\q€¹ëç  "h½5Ó <°… Æ£lÔÀúà-°Rº¡€…óáˆÿ«¸áEwDÿå|"ÿe¨Éȱƒx¡•‘ÙY…ÍÀ¿¼fëqyªöWV0ê/Ï3è//ñИ¿1JÈ_Qó"þvü½ ï—wNz¸_•ˆö«ƒ`¿ ‚}Ʊ“P¿jDú•@¿"“Zœ_• ó«Q~%)äW‡‡Çø5ð#†øU¬ØA„_E–+À¯†ß—ÕçÐð¾Œm‡Ñ}U¤à¾†ê‡‰íkòaBûò5²/!°¯ì×WõBÂÃúØDõUü¡HA}5Iýx¶PL_áóÿr˜ ³¾Â8•ˆ¾²ã‰Ð7²#ž¯´ÛÃù*ýy‡Ñ|Êà`¾ÊÐr°X¾êèql¡|!ªãH¾ê -od )'­ ì ãËØQ|•^ÚÄWvcO`_'4‚¯¡\h_?$~¯¨á{†µ÷Mq$E¤ ¿µÝfÉñ~›D[d¿Z%jï·Û Êï´Tû Gñð?*N)¸W·B›üf´¬™˨ ‰Ú˧o¶‰éœ•¤¿ÚþœiOvH£ýY£TØQµXÄ{(íû2`¯`C^=jÙ”Ì_üs@&$o´/µØm¹ÖäÕ¡ö›í/»^+jß—¡zuˆ×n›’æÛ_iÿ9ÍÒŸùŸo¿Ýþ+ zG1Aû~¢ýYšü²I±Ô¦qÒÚ¯ë/»Ðį›èü=—ö÷€WtÚïÚèôµ›ökÀ{7í˜æUߤiÿCÔó<‚å= =¾óÆßú>“AùÆQ- 7¾è½õ}³ëlï'Ûí¤¨È¸*‹VªtÑøx}û>9_ßþSjNÜÚ=tùS’  â~Î^¶MOo^+Ɐ 鯷_W'<ø”*ëoÚí—•ƒ÷¤þ£VÀÛl KP·E?!£eû'„³oÿÂͰýRí tT>³|ë'ù‘ûˆ¬òrû³ ›ô4°“|@XÍu[[ºHÚO¹£vŸÜåÔý¼¡AŒ…¥¾WfM/ëƒá MDˆ&’Õï t£CF?š`6¤Gpä1’¢ô˜(Òx€„q”Sß ¥WAQ;í…!YêVߨ&bôºTKC0x[Â3\á/$¨%ÓkIÐ9ôZrüÃû/½{éÃXü¥?~éï^úJü¥öK8@c7SèKRƒ(ñoyñ.Á‹`Ô@ñfŒƒ¥ó¢Iw"iŒ†?ª…í÷˜òþÇ:|ã/ÝçÓÛÿÈü”TÿñYGýÃÀ„}üû_¾7’Ñ~ˆg¬­&VEB&k\5ù,{h…°zC°ÞÀ+ÍhÈd/¥ýÎâ<­V‹MÞ‡Èþ"£n@–=÷“q¡Îû D4»lU®ý¡˜‚¨ˆm6ÍM¶é“ HXÏ©£ó“áÌ‘D|»ÕÀ´oB´Å#<¤f8ÇyÚb ^Ö(”H·ÜÄ?E=pPÛÌAÕ»¨:„ú¡@V[`DnK¡¼ÚÿÔþ§n:ôd~d )§˜¼îDD¨²cyç ~Rô7ÞyC6êôkï+dô/âÔ÷ýËý‹é[aø€‘R1zT8ý§ ¸Ù`,mükïÇðt‚¡J¿ÛœîÙˆ–C†ªIœ#±Ó ÊÔGÜ1ºHhRIUrj/‚/ÛŠažüµ„fNCÇÙöwÙaòöÈ¿¿i—Þé>Oö ÄÚÿbíw‘¶ßFÿO?”Þ~·ýmÔAý~ÏvÏæÛŸÃ zÂâ¯ñ~L%N?xÞÞï÷ðÿj}O¨3D¥fþ_¯ýá+M4CJ ™r”'ãÿM—.™LºHÚû~{_§S?›ã¢ºOÛ«2ÛÔÆq3ZîÌæ”Æÿþiû'íŸÈ³êíýÓJ­ÝWí¶rTi­NjÀnãD@ÒÄ0—?è!õöC€¿—‡Ôé3½rÓŸkoïƒqlEÅ&ãØóí?‰K]ѹX86tá>h¿:øö·ø5ò¨ŸX{û[f[F-ÏýŸmÄöõ?eAl¿üÙo¼IŽ‚Ø¿Õ|ëUëU|ŒÜþÉ›oÿ¿oþ‚ ~`Ãðí[¯ÒëŸü˜ßá+ë1”YúÅhCV²Ñö FLuíÉ·±ÔW™Á>1 &i›¶'‹-‹¸öIíã4nÜWuËŸ9“`{&ö‡viX…=iËØñˆµºô„vÀÚÎèVTºzd²Œòƒ åÁ—¾ù‡o½ôï_ú¿_ú°ý—þì¥ûh²õO(åkzTY'–U–wšGÍür>í«6ï\YÝòWüºOW¾kT……) #®~tÞˆËÐÅ¢%M\Î-Z \0ÀWpÜ.-þ­’­Î‚ßvÝ=‰ÚøKðÿqçxã?fÒÙTÚŠÿ8ÐÿñAü*þã±Eg|˜b&BáXŠÃOXÁwpÄÇÍ8é}kõ ŽU*ßÞ®¡äR}gm-†¨Ô(cq=ìÌ61 =CƒÔÐ{Ò±‘±Wq7¿So¬®ÔQ‘°VœDîzn’H07ql^í ‡uŽ­³x«ÞÌ ßô^D£"… 1c«1¿ÊbbáxJ6LÜa£˜›¨7ÍÈ8á/µ›IyÍ&"DLv–鿏Û_Q25 SƒÆ7ÑH½°ðh*‹ß„®ÄŸ7q>rüÙkIåòhÅäÅ@2X„¨¡+É.p¤1™Ð¥ç&­Ûf„¤#ŒáÉ*Q±šÏ¡®l1C|èýÑ…øLÑŸ´ÖKµÑ]kI<ÆÞd‡Ø—Ü4î$ZèG:Z(­•#bñ=®vQdý|ℚc;)í¡Š:Œz TëI”ÐÊ*O…"‡Y…:R/ÕuˆP¤ºÐP¤ÄùŽ<ÊíSYMÖwÖKË%们×êÛ ¤aÿÂäá`o(•8B$yÑ+4œ§¥7n×·ý]ªØEH†·±¹ãÁ©xz^ÅoÔJËkÕÒòš¿ÂP‘¸Òpa¦X‘†qKÕÚÚÎnÍecQ©¼HÖ–Øg*«šù„û(ã¸>Tá[e5޾ÕÄþ¹…oý‰ÚúK<Ú{¼Ö‡j¬;‰Õú‹«õYçfGÓùÒ¥âQ…fírÆdµ—ˆ#ÄW=h,Wž-Åe@0>j[hB[ GóHü?^yWîµ³8m)*â騈 élÿ^î” Ð)Ásìud•Žs\Á JëÔz_øRXd¢°¨¨âWc¤¥YŒnâË|(ËE“ïM˜yN×R!ðuDÝž– ý ¹R»ø’-9/éŽØúnMü \úQˆ ù û% ‡ûE–ÀP­fh¥Z…N’I*nºŠN¬W•¾ áË*¾œÇ—Gðe_Šø2+Ò⦒:†/ø2#Òœ,uZ?`F ¬¹¥ô O&moÀTGÖÍÙyÓ&œ—mÎÙ@ξn=’¹$p1{¾'Kü€•EŠßlÎáË„]dž©Å€(ÌQY„ AžÈš&Y>H‹Z[x$»dÊIºŠÛø"›œû3cy) £n ²-ÁÙ¥ Ñ6Å]I•Å£/tÙ\në¥V_éùª^ý;pš5ú3 ]xWMLàìBlàž ñ²:xcîæYó‡ùÎèCórF\Êz[æÝóì`ÊiðKˆÆ Ø¥©Ë2!“Ôc’ë(h)W2•ÇH ˜…G+ü£’Z#˜“˜Žøm¤ß\Ô¬¤Wž¥ÕõmðU ªíK€jFÃqÊ•J†ÉuuÇ)=híóØ…Ë5ù F²O@´ki¡_-æFWÕXL½˜F¥ö\p`SS]^¹ù‚¥×^¸I›t3”êA\ÓúJ§¶óqKiÊ'CJYF^LÑðúlÃRaO¿X°çF²s(m"­f3³Ô= x#T’Ùæ Ø:•‚tÛ,¹é̶a“X‡Âé4óG£¯G&w,äØ”Ò’=ÀÒÀ~zOh¤ “Ñ8+´-ÜØaÌÓe C»r8Oµ¶X‡b’º­•‚TÕ/S¦qa–Ê/×¾J˜7H-+«tƒ5‘ç]á>*®§%t€å%Dê÷œ<# ûöüaÈ®›ðÔ Æ.wN8Dû¢Ô"ëda@€9½ÄÀŒË".|HmuúaCs”…ž;˜Ä©°xÀ¡¬_$à}‹M˜¥2ð¢cä: c«!™HÌιšÂØÎÕÉ2†eTp¦„$+=·„è-8ói`x’™Rz3õ\¿uú^–~YÀeZà’ö¡%V\ 0ô¼µJ‹$7#Á.Öa„:¿Ðâ·º ® î> ƒè2’=‡ú Ël l«¸*n] ïÚ49C¢R¶±%]ØœÒõNT6`ïC²úË06¢³Ùù!]Úù@ÖVF÷\B€"íHHØîSøv–d ®è%(Wb,™à‚¦£Î5AÕ«fªuÚÙɦ*å*ýŠH».îˆ?÷q|¹!ÒÈY#âÝÖEÚ†¸ÛÄ—›â‘tã¤k'' ÈñÅçñ…ôô»^—̶ kÕ?¹”RHª£—@ZنטÞÉ! ì|¡ÝˆÙ »ƒ(/¡X1˜]'Š•UvÖÎH'¥S‡êª2EàäRG[ß×ìí½5èøCÓJÙ„(ò¨Iùhg‘gÉ~Ë<Ë‘¹´|Á@²&M¸&PÂ_.èÈAKò—g•䙦¸^æVYWÍÔ ÓJ pcä íÖ[6I¡‡*Nb38 qÊ<Õ™LدµdByòþ> Q°,×uO`jd­ êrÕ¬wL"9Î*A2$‘á@G—árù†ôÚhñ’Ä@¿@lô’®%+˜8®'Dcp9ˆCÀRS'Š,=±7„M aÄeýbÖëŽx¯Le,·Õàa-.&h%Y\Ô•€êôÉ›H% ¬@¼–ÝMÓѤGï»YK¸QáË9J‚¦ŒÁk‡–"Ç9KJ¤RL„wRˆ3+Ñ¥„û•‡ãê»3 òE¤¤(° KÆ`uŒNéNd¸ZwB.ÿ်A=Øuƒ–w£Ê#»½d­ð.Øœ>÷uà"9†W¾àü¤…à#É™:ôìF³6¡»Eî%¼øBE‚n‰H”Âä<£_|=ˆœ¡‡X˜S¢}BZU >ÿ 9{Àácçw<œ2*.¸hë.FßcÎïSÍÅÁ£hŒû¡”óz!:[{[Ô² 5ÕýhùXiתt„À5¬3 <¶#9ÀÛ-GɫЯó‚W¼Cå™…ñ“ ÚëJF…Yì*·+¯N†a;Ë’!ð5ç^ѹj‡‚™¸ÂA/H ¹íu~ºï\Ø”M^Fóv™L:j‡×fSv±É„² È”3×¹è9s©³qæ øò¡ÁæP9ƒÆ"ò(çïag”€ÉÄÐàzx†r vÐBqÄa™¯ÉQY[…yÏ^Y0éDõè\9¯¼;X&z„¸ÔAÅu’;"‰|µ žY9Å9»È´c%ú¨¤x§9”îsîÙT2ÞžŽTr$SR›¤s•:©êw¢<ŒäXƒDI‡Mv‘šs%ü1jÅ 3Lh Gú•r.o-Ü@3Õ@‹WEn¥¸`O >#c…Þ Á‡|ÀiÛÆIìWÇ&/k®Ÿ†¾‡¤F×IËnz£¥åÔ Ä‚ Ä©“ÕÒì‘ðówv»ã»@Šß%Š R¡U†¤ÉSWœ%RX©ÄÿX’q]X\g!{4y€Œ Sdd©×8;¦q-€Ež.çdµï¨dÍŽµöA–t-‘²RÅ%éš@šÊËrN3®Z¶t$Œ]ÊLÜs&wCˆ´ë#9å;å$ISnÒHÛ;ÐErO4vh{.yé0ó†¸|"ˆH¥ï}™-@mƒg+m‘yFZ ài|,¢y\ræa‹9tǦ äMCr¬ VHÃ.9ðÙÉ’­½”Ö¥.:¤].óEЀœ²fCßâèШã“°ùÖ€a5Sò»OêPØÇؤ°s`áÏ ¥Fy„ŸbFÛ†F½pV"Cã¸ÚBUÆ*I9ÐHãF7ÔyÎ9ÊÅÅyèìÕÃà¿£q¯„)/ÏøJ¯j1²½*.¹j®ˆPxt²·;¥w ow–u}ÍV.¥~(!{’Ûq©yjKXL':í.犎Éà9¥—©ó²®6TœðbÑhèa˾[¬¯ç'îPE}ù1Òé¶€œÊ~ÚxÔä6EÑCS0éU|(Íȶc°xJ„¯çùº9,Gp5ÀùœUÈq¡hÓâk±”]ªÁ< µìã"Q•Ô:ŒFväé:ÅÙÓ »°Š4Ó<wk¹Ñè¢J))úçe˜u>Èìá"Ô>.Àr2ON€¢Wx}R,º. ¥]ï·¯ˆJ5äà¼TTu­À~ºs¥è 8Ù»ÎÈ)íÑËú£âëje ÕÈ,¨¢TLVÆ;VÆDé7:÷@÷^ŒþÍPõÝÃ`Yd哞ð€G+{u<ò ’i"Œ,ÒÊ7— 3Ë5¹~7\ƒ³ñè,hãӲǬ¤Q#ë xAǧdEWÒxtZ\J?œ×•[` »P§;V æSVY<×IÁK¦Ž‘®S®,Á ù˜<ï2 Ø5¤ÈzbwØa+W!G à5ú¤~§}‡½*R¢*“pÒXr®4E-x͹ +gHÁæ/dy'¥ž³jå Õ1ðE®†J‡" Ú+•ÈšåFâÍ—CU3^” cêz,˜u%„ÅYßz8œ·¥;åß—¬ì²_'!ƒÒ&¾ß$‰›Õ¹[€ÔÔ€÷ñ´z¼"2Djô h—ðɬ´Ë©*hdH•ã:2@¬¢×;p¦I]HüÕƒŠ Ê‚Œ2¶.*—,¸€u9Sûø—ð%£ ‘Ý]‘"ð€ šm»NKÊ IIaÛçÅ£¦÷N¸YzKÎeWšÌ‹ó€¥ìPlkJ£ ÝIÕÒ¢ÿ™$6Œ·çB nä ÙrU<%œò!]o]ðW^j«‰Ìüž|à dH— ÊaaË«1éq]Ic‡5H´3²vÙ~F—›1ý§PɆ‹(‡ªåpåžÕëŠq øœP8R&$3™€€NÍd®BkYS–œëCG‘–E;ª‹R›u«ú95ÕôkZ)Úº&Ç#Çö ¤aØ £Ë¶æ;¡žs,#*'*f/yòV[eÙûBpï–¨d]Æ›‘žœ'ä:×» Dˤ o6 ,GûAд'«× ÝQʪšUhO‹zÛàD-©ksée¨dO¨nøázÁo#wä4i³]ãðD0ŒÅã–ž7mŠP í®#˜H*`5Öeq‘– ü„…‘ß]5d‰bÌq‚ W©ÚJ_Ãp*­³Ê†HƒŸñÈób)2l“úaÏÁì ¨Hí•u\öζf â0d‡¦=GÈå¨Y ¿ãczÌœû&ãÁ ’Ò‚ææR ü­2#&kfdÊJ¾Ù»îJcÔŽWaN:²“Žì°üN:²‡AÆ/XG¶ \ W,ê{[ÆŽÂÑpaºžÃóUyìÇê:#Ìs ),D‘é˜"Û1E®cŠþŽ)òS tLq®cŠÇ;¦ %˜:Yç¥/—g:'뼤VÒ«i½Z«Eq1ªJßr [¥#½Ã†¸ë‰!Ëí±½ðn)*Õ Ü¬zÀªÅ/ÐÚ–¹Ô%³åz¿çáËWG9„òšµÎúÚJËÅã-¡tèš·a5ˆŽ¡8}ð{Rð0,sh/ ÚZ–©¤—õ”Y |m̱î[°ê…áàêBkÀ’oRäÎ஀˗BËâŽaæµ—¢‚wŒ´÷-dvÉÄ´“:œgÕ@unË@{37ÙÄ+*ÚB/:‘ËBB5@‚¡–\‡‡éM'¡OñçÄ£íï5…VáûUG¸k¾E—r°Û5”ÝlS˜2H YøÆ§¯ˆ/rT´ìÒVd莞?ÄŠô‚Ô"ÉðQ³ª姆À±˜h.¿Hišjo†P£GGÀ}Éñy+)Ãy¨Q2ß—1æØñ ®wN,yðšœÆÌ–›rú–)sìØÕ™Ô9É»]“qJ¤¦Å]FÜ©ïTd¬cß •vX…¡u‚Ïu¦'I{Æ,— ||>BáæÑ®8Ú;+ýŠ‚GRQ»‡S¸¨5x®¨žI,dôöa§Y$ŽK_臌¢A,hUê.(ÆRm÷ªpŸÂY£øæk…ŽsäxdÒyZ)zûÄ¥Š/i|Ñæ Úì ƒؑ‚Q¹hÇÏp$âç\ÄîG%¿œºK£[ ú³ùN±¤»¢Qéõ@L!®³ó§œJ£¹®N¿‰´Óˆ¸N§—±†ä¢³gˆéðg£'ž×-âxùë"íM㢠ú‘0¹§iê)½8#É=E7íãFv=L(]? TÚ‚Rpçg1xž.Éë,ž×ÖéÁWÓU#6‡Ñ0ýé' Å oo#(þ€Ù\ç åg“¤)Û<“3pÊØƒúJ©+ ÇÂg³´…ºíL¾3‘ –\&“F^iÑ­: $i~Ê"™ŸÂÿt¥?ÊdÓ ™þ )›'­–#¸~,àŠ†zòælHüÕµ…L>ká‰T(Ë—,üåKôŸN"—Íh‡©‘ >“ø`«&£6Ñ“”Ä\1€\B­zÐ 8W«–Û¤ÿfjù_ÄOÚê¡6×*H'!ÃÇSpK=g´©¦s]Ê£¸Ñ)¬ -Ï8ËÇId¹ì jA½Û9Ï—]š|7;²LÆ^™ÉwÈÒp¶ Sâ$º-βg²¾Ds×D7\²1‚ˆtØlJÑ4 Ë]1k¶›Ž¶©&j"¯“ôù½©9z{-õ,À›ì³Á|i¢™ª¦–‘–š©5m2ß-)M“׸*ª"¦9ðÏHÒºÇó|À ¤N¨«n€Olµý¬ËÐU,ž*æÌ”3úÿ¨]ü"hXpÍ÷ˇPf NøAýTLpÇÆ¡š¾êy~G¨Z êµ£²Ü;âÜÂü\ª)„·¬²mhU\áv3yÔ¬evÊ´÷3øB&ßÀ2ø™ †ó´gJ@+£J}–è(€–' æ N´µB¶rc- VÊ”1žI…øºòUÁ”îõ¡Ýê)GQîÈ…XIŽ}5c¾ÈÒä|4©í.tc-ÅX–t0>Γ:›jÊáFex ÌÁÕ<]Èhf¥ þú†ÓùlÜ\jÕRrŠ; ³äœ.ñõÉ8°åw%|Š;(94™B>óËW´ö@ãÜóqÓSô€š™º™ž‹J¥ÏYFLÒ =†TçÜ€´Y|ñ•¾ÆÉ‰!’uû€™Ní âá΄“ ’i.J¸‰A•Íz¨²#ÛbJn³™›“æ ùÚqQÑ\µ2FReraôæìÕª9y“ƒœ&\rpe[=£æîå97¯+ñÊÙŸ›Œ¢geL&ÌÓdÑXѱÌà™<”þ=-.F„‹=—((”ºìõ/9Ëø…šjÛFgp0¤¬\ ^ÎSZv%ª,)“‰Õ)²`4­Î‰3ú[yRMc·«-dsý½$Pcô€ƒØ³ƒ?ô$OÔ¯æ"m©JÖM`¼%¨ •1m‘LTTpÍ.—ƒ± JÏWñ™'Ãç&é&W8°+ÐsФïÝPè;ãÊ*“Zt3¦OéL§ì/ÒÓvÔ§û/¶¶ÉT¶ÐnRÙ¾6#â&`’ã9£¨‡Æ[íŠ^ôŸápY!¶Í…ŸùÙy5Ø¥4°cõhÍ~Àb„œ_q1æ›/àÛ+ã#ÆÊ¸îØ€á¼ÝÌh×Úõ!ëÔ `¬9n,ÎÇôáÀþ“D# ÷0×%èþÆÍS’ôõ›§(†b;Ípáô7–¢÷öDíwÓïíííAò!.³JA¬BÂñî‰?£ßÑkå¡xi3GÚ’cÖ>%ÄPnéè ÓæáèìtFà±e—3˜-ô¹eGPÜ2Á îB]rlóä ¿êÈ$äi— xúî ]Ö`›Fì?óÂ^–c:é°ï’{©mzg代ÈÃD%;°0}Óœ•Ör¿ã(¨Êé“·Ôr°·ÐïŽ.ŒLHª§FZ̤éíGÄ`Z?i¸^õÌÌ‘Æ vH&`#£¼ÄˆçÃx"%U€;½Dí)w£‡µ5™B¤€×„äåx¤¤ø„^GšZaËE·Qö¶´½ß.BÌ„°³Þ­ÿŠ·Ñøð·•Sú«ë3šíÓ!œÔI®AÎ:dõ%‚ˆãžsð‰ÌLyrD÷=W×.;¨.6kŽE£ùµ»Lk…dO¥1éÕj{|±|iöäg—8/eÿ¼bæ°D¸Qpó¡'º}Ôx3t™sP¼öõ\•H…KÒ© ñZŒ´¾’_6^‰ð ÓL&O`%a;×'L'È2zÊŠÄ©#óî¥ ^ÛàO—B3(·ìuÙ&y-ší‘GP@ÁŽ¢ ük1.$‹ÈT4 ²e憨diè¹0Q¹žŽt¤W¨²«Ó<óØWÂ7‹â"Ú…á=gÕñ’Ä“l°¢U:›5êa"ëí×û>ö1$*?"¥~ª#Éî¼ë …äU©3Z’à6 q«ÙSzÖÊÆõ-*î‚ðU#ÆcD¤f”ÔQ‘š¶%ðÔ Œ/“8 ¼qŒ,|5Aê¢óçÊ®Ê| A•6ØZòã(Š0…ŒN6Q]ðÕN²väÒΘÝVµs‡¶M‰N^G‹îg憇Ï{Vû£'ÑåõxÛ··VW®o{±JÜCO&‘I¥óž÷Tò©†cÃó.4êÕ•Ùdz^aÖ»].{#“³hl%?ßÄ\ kkáÒ@cq£¶õ|­šDé4]«®6¶·VË;Û8~½êí4jÞjÝklìlUj$¥¼ZG™óPMZoôy·V·¯{hàÆ¿ÈMÁ\PS[]^­øÛÄð·jê5×W··kUoskãùÕ*ºÙ¾îo£K ñY[Û¸…úbuÐÕULÔÀ\0Ýzmû<¾O' ÕÞÆ2× ÷ÑÞ:ªåص𑮘«_Þxƒ˜Á0ìíll¯Vj}cµJ ‘ 6R,Éž®ZYóW×k[ØF^ÆV T,ÂAù¬î åŽGæ’qªnTvÖkõmŸÚYT¾å­ûÛµ­U­! O 3V³Á+À앱ofrtöZaºè¡{4Ä==6Rñ.=‹€E¯07{erÚ+LŒxÓ³Óc—æf'§g¼ßøÂ Âì1 "µlâY¯øÌrUg]œ˜õf®ÆÇÕl¢ÿ´\^*" —Æ +"årdlº8<‹³#Írã}ÞÌTqx ߟ)¢œ¦ŸíclgŠ¿>‡s)\-\Fy‹…XÈðÜtñ*ÖÙafîÒÌìØìÜlÑ»<992ƒY!ö3Åé§Ç†‹3Oxã“3Ä`s3Å>$d¶@Ä#.ÈZŒî/ÍÍŒ»MÌ¢©ÃÜÔìØäD3º2y )[@Ô#ÄÆ“$ÏÈF“ÓÏb¾Ø¤ú¼kWŠ(}›”X­€m1ƒ¬7<‹¹)˜H*²ç¬’Yo¢xy|ìrqb¸ˆ¡“˜Ñµ±™b•ØØ F£’¯ž%yœ#ÙÇe…t£·JÕí#%êz…‘§Ç°ò Õƒ™1Vg&G1'4‡ºÂ¬[ÁY<שWÖvP§ÒúöZ½’¼ÞÝÕÕÀÍ«‚ÞvJ«ñ+Û·7k1< £Ç© „Aº¤>o§Þ@s ÔäHF‹wÝAãÈê2ê¿q§uÁKgÎÅÉTŒÍŠ&'ˆ Jc3¥ÂÌðØX‰ø™Ã³ÏNc”)僧WµµFM¥-ŒÏñ„© +S¬#|ÔkÌ"tOM |½‹Þ6CC,5PúZ­T¾½]+­—+%œ¶V«ãYb÷ÜL‚ ©©w¶Ç«ûë5l%ÏK÷yòAÖý]sðå êc`$Ü]šH\ dR,½^»µ¶Z¯•R»)¿/@Ëí R.R:¡²¼„`©(´Œ±” š-© ö77×n—üµµ ¤•Ú¶q $¹„ú^Ùeu}g½„ºi4Xnß.a;“âòîãÞ‡^ëTh8)5v677¶¶©HŒ@q·ßç´ÒZmy»äW?ކ­R庿Uº^óõ\¬Ýòo7JÛ[;5,ÝÇ£Q­Š¦ýx}„¿]¹Žñ'æÆQ/‡Šåd›–«Lj”p*ˆV÷P{Ð Ýàÿ<©ÃãÑ©¾Òu÷‰ÃÍ”ýÿòêJÿáÝÿÿ?Í dLÿ?;9ñÿÄßÑùÿ´²œ¸ÿ'îÿ‰ûâþŸ¸ÿ¿„î?j ¨¥b¹ÓãµzéÒØåþùEæN#g·“ÿN(>™þC d(ÒØW'ÑØ™Rçš1Ú´æ†Ñ¤ÇÛ¤3e6³UÛZÏæ"™ã*¬€YƒÁ­ÏÓžkõ*åëúêZÍ‹m¢™8N#˜ÎÏ{pZj÷\Š'zÞfoïäö.¹âé·Šê§%ª>#wÓ,/ì©›ÞàEªÀMÓ1‡t @D(5¼Åª(€w`‰b`G–ï*{½³ÓsEµÐ´ÅYØ|>bÙ1Þb]®kLðJJ '“xx!U§óÂäfý! (ëàbïõ”w–â3: @E Dˆ¿ù·IMÝÇ$’ü>‚*XÊÊ5[óñ×ÑÓÎÆNÑñ®}Œr7€3¶(W¹þDq~tÐü€ €@Ý1˜9k_þ»k¸$xéÆÃˆ¥áÂDéR±„ü¯±ñÒ,öVç3ýyú:úï¡¥xhèÿ}TòñQ¡Hå‘jmyµ^£milæê¥ÒèØôÌl /–¢±8¦ú"8m °é8@F 'sµL _™öb´WfõÁ¯ìm=`ƒö1JøñˆŒ;!äh=ÑŶ Þ…‹”ƒëcŒG¼ /à5º™³žÍ8w^„5Èùq§ž²lÙ“HPââcå­šƒ»Ô³¸ëuÑ[¤±‡!¼†êd3„ºL½iaçh“æ¨÷"µg!ò²J±ôÎx¿™ŽÃã´kÜ({`BsÙË¥¹ <™¶Ë¨‚rÙC­Í53-^Á㈃å'>U<|·ó`]¿éq“ÝK(±»ïÎÈÍŒ²oÃöv™sk‡íì˜(!;¦ç§mˆèÓ×tÕ4.ËNítºQãnÿ*ÿ#ÛŠ9Žm—‡æ/pÿ‡Ÿ LVÖýµäjý`2ÂÎõgÍó_™þTêdÿçAü¡:?BÇæí Ôkxý7pË+çëó~ãrqö½cix!ßÞòo'2džÜ>{u KÛíÚz#éÍâeûåz…,º¯â½”›;«[¨EaêßÀM³â'+y¬©#ÉÞöõ 4ýç,0;Ôú!5yÃÓ…gK3³…á§fŠx éêÒÔOãqnoß*"’6›Ra||r¸QßÞØñ®ûÏ×8”q¿áù2/xÛ ²µa³½RxºÈ8{Þé;ÊãÝ@I˜ª×‰=Q—Ô¸¾±³VõÊ5¼¿Tõb¨OÄš[C}Ïn4"­tÅ_º¢)°Š7RÖ7‘O²µÅíOv@¶7p_Û€yOMOÎNâƒ3‚»Lrñ—ìÛUk%TÊÌìöa$بx çŠÜlX<6 uðAgGÁ!þc³ŠíxB49k«åÈrÆÇ.érHB$9xìiD4¼ÀMK‰,ªI– hrn7În¯®×¢fêÙ™ÒìØÕ¢–-™ÖÀÎäâ¢KÃÕ½q¸r›òhZ;õUT£I››C•OŨœ ìí¢Ñ`Ó¯ÜðWj)Ô.15»5õñ×d0#²—˸Ù*1¥§‹Ó3c“ [žDÙÏ"¦ 䜑 5oÚCãgo¡—oèÆ²-afì¹âäh µjÌ\>|×6ê+3Ÿœ¸¬pÆkÔ¹ou®ô̼#(™“çðúP˜˜ó†ÕºÐDÌŽ —® #ÈÌD„ò ôìx?Ÿ …µÝ͵ R¸•ëµÊ ‹/šÉ•†'¯^›(àMÓRñ™©ñI\¥á+Åá§°¨Sz­Ž_ A~@ïÄ86àÉ8>>TB#3¨ÁôÄx©0S›(–f‹ÓW±¬Éi!SÉO³Ê[ßY/#û4¥ÖŠÚúóví"ýEóÿo­Ö³™Ëñÿ³yëý¯þÿÿAü=ué_+vÖ¸ÁO> ¸¯c˜Ç`®¯NN? FÇ'A“££¥Y5UéäsV*íE3V:é¹mtœLa) VÂ"ò9*ÙÜžž™ÒIÖ€ô‘ɹKãEU€éˆ+Ùž|ª8Qš*ÌÌc»}·ãÞî#ܶ‹Ãp®1öæêÄätqvnz‚¤x¥«3ÃxØÅ«·é”’{ŽÛ{¥RµVYklÖ*1üŠ(^•Cr.Þ÷„Iï)¿ªŠ#ÅáqR£&ŠÓÓZ±VÏŽë93ÕæÑá‰ÙqG-Ÿcž`”J»³Z-‘“02iÅNâJÎ ÏÒ643[š)> dÄJGóËÓ“sS¨eêL‘µgÆ.ãöžßX­œØÕ027•26|u J¾:ùtÑNjdl*ƒáÂLb„@0ò¢6Å ºâ£ÿ äÙÉ8yNž³ÓQÛEŽŒ™úôÌĪx³£6þØÄج­úèU@•Ñiä Y©WžšœµM?9b »V›³_Á=Œ•LæPVji¦8û$P>³Åñq°¸‹E°\} ,´áÉ ±M؉³ ±øLq¨‰³ÏMa#…gÇÇ._ÑÇ‹âìÔåé)Ò;«é«uâ\–JôFéÎŠÅ‘ÒØ$ÉhéRqöZu¼Ó×TÚé™+c£³´Ž¡nop0†Zhüv\¢ŒŽãÌÏ¡aªTQ[/L£Žn UÚÒæö–G sã³¥§ð[/¹–&&'Š Æxñ™Y¯;ÙØè63(µº¶†’ñ?²ÿ—ÏØÇ8ˆÿ‡ÄøàïÄÿ{°þŸâÿø'þ߉ÿwâÿø›ÿ·™Îô§ýh°ÿ—Iõ§òæûŸ¹þì‰ÿ÷ þŽîýO^Y¢7@óì ÐKø•zòw¼]ü­uüu5üÞçºO~·vÙƒðßÉ[¤'o‘ž¼EzòéÉ[¤Çö)÷Xð'^†§ðhRšDðkÅéž'à^½X¯pÐÆ8~{¿ 3‹·…ç+‹‡±ÎDù@ }AÄ[@ãU,&y ãdÆ¡-zg¤E}Hç>Òv`õ!ÍêCšÕ‡4«iQ2¬mfXaýƒ|αß~ö›g¿‚ë2¬Ȱ¶™aýC†•E†•E†•E&kéÀú‡ ë2¬Ȱþ!Ãú‡ ë2¢Ȱþ!“5tÈFÖÕ‡ «â—Y0ÃêC&ÏŸQ2¬,2¬>dXYdX}Ȱúaõ!ÃêCF–«V2¬È_®ãÀêC&oé0`èÀêƒÈÍ@Þøå²ÌYÖ.²ÌYÖ.²ÌYÖ.²ÌYa‡,kYf‡,kYf‡,³C–Ù!Ëìí"ËìevȲv‘evÈ2;d™²ÌYa‡,³C–Ù!ËìevÈ2;dY»È2;dOì ì ~"€zâZr¦ÐÝõåÖÝ\*u®ï ¿:‡Ì¹ ýM=Î~Ï¿n‡×áà2çr$%í§:þ¥B©q8W&)ú9<?ÓÑoÎÏ0rJJ§¿ÇÌ!Ìý¶ÎÕ2ý¦j\‡”’Òéï1s­¢]d™åøoŠad'þ þxíS£49´_ªCYa:öÎu19ògð—rȜӵåŽÜØ:DÂ~¥@¤u°—nÉ0;@œÁúÐÑïG‰CP‰T£~Ñ9˜ß'¢‹ýQ>Ê¢¼Öm|%ü[%*-ð‘ýK8ø ñÍMòŠxAB Ε¤ú^<úÝŒÓö°×ÊÓæKí,§Gò=cäŒiß3v.SEúޱæ b¦üÕ-n¬]ÃãOWýMñ¶;¨HˤƒôÏywûºXRô •Nb)i’’VRH}¨d””,IÉ*)ijªä””~’Ò¯¤äIJ^I )J Q±rNI!žfåq%Å')¾’R&)e%…ø©•Š’R%)U%¥FRjJÊ2IYV ´L TU ´L TU ´L TU ´L TU ´L TU ´L TU ´L TU ´L TU ´L TU ´L TU ´L TU ´L TU ´L TU ´L TU ´L TU ´L TErt À7Ü/b_/"µ¸€ kkqt§^ñ4|˜oY­€_ Ä•ð6LiÝߌéý}Õ*¦´øY–¶¢xŸÚŽúè—i”?úM¤å>¢›£ûp<ÁeÙCbós_Jù”Ê+=¶][÷Vñ›Ôó‹ ½Ü )fûØQÙëcŠ¡6Ù·¯ˆv¾ÑA{Ç>ÉN Øg;>ÊéÓþzǃü,;4+éŽÏ{„VÍξë ”~Ùã—òì?׿Àó?µJéã›Ç|þ'=Îõ›ç¿Sé“ï¿?¿£;ÿÃ+ËCtþçä ð'gwNÎÝ99»slgwÈv”³;høø&r“ÖÈ×ã¸ýÅèG½x '$<úåA2­äîOÈ熟œ:ù†ü/YÙïóVûøWrõ}úñà€Oò¢6VzrŠ”£; ñ–Ql Âè¢'ãPþø бUD›~Â[E&Īx«½½jû’ÖW>L¾¡+ Y÷.\¸è{ßõ^ô*Ôvž"ËXÈÔ¦€¹Û¡„i$/)‘‰dc#WöY”êJ7HÎ €§Ïì¤-G΂ÈC73Ю Qizº46ñta|l„ê55‰¿ð‡X-±>Á¯ä¹´¼ºÕØvg= ñAhW–h!\\þkpÐKçã ™„Ã8!|Îlˆ‘š† Œ2g¿éßiþim¤J µ ®—8ÂS Ÿ²vÕ7iÊÅÄTÔŠ?AkBš lÉ8¿X8jq ò`Ç+ ¬uÔÒž' 12›_§;­‘ãA„챊Ϣl·mþê¥aÖäå7ÐÅŽ,ÇSâ·‚;³ÚÞ¬§õF­Æ®=:è{•n4w£\gROzŒñ‡è¦|-](H¸œíáj,Wº|ñ|m ¯ó€ÛÔÒt¹ù®RâìC÷‡ûÆ=Rc¬N×Ojl/…æl½œØÞÂï¿aõ^u£Ö¨?¶í­¯îÒÕºúN¡øk³D½#ýb>ó Oi³Åüaù3žòüÍDâ‰NFÔó™ûãýÂ=;0€mI"!ç¨ÂJõaYëi¨§tZÀ>. »ðáéÒ•Õ-ůûÊL» w¯~ÎO“³¹å,š`àJ¥`“õ€`ÆOùÛþ •q–1îgŒû—ó,Å÷ɶ7ú]æ)eŠãW«R8ç"¼Ç›b{Uã«m!^Ѿ>r~æü Þꊩ{“¸Rö)n£é0¢éÒNe[(‚?©JÎæ"äŠÒ„Hí®â:GúY\nÎg3‹¢iaœ |#ö&^Dá´v×kë•ÍÛ±›dg5†qJhxG¬£»9îqî[H=F“6qe£ëõ¥µ;›ú¾f&VUaï>iN÷f%1HŒb:ÞÖÀw¥0?<2Uœž}¶„_ÎÕaÎ×àGÜdøðrµð þ,=S£zÆfdñÅׯÊ—¾.†ˆ¯MN”.O¦®”ÈG Ä»cwº>Æ{×&n$þÔŠ7D²wž¶Û¸ôÃûh¾åø«eõei¥)6šÄ4[Æc¬b©íElñk(µCvCEMòiî2‰•ã%²¹ªìôÆDw«1'ê-ÒPNq³FYÇžp¥¶‘iÝ!9¥[Ðf¯Ð(—6v¶EÈ,°ç œÄщè5L±Iib²437559=‹ªÒÄèØeÀwé¡Êx¤GO1Ó´PeÆãh¤òì¡&Aše¦¹@©'¸3|®ƒݬW6Ïp `âÉ)r†C;À‘}WŒcö‘ ãøÅñGWqŸº°Ž[¸ŽV8Qœ„Jùeþ‹pþƒø‡9rþ#“O§Ìø/©ÜÉùòw¶‡|$>1LÏ °}yòIúÔå,‹øg“©dÎ#‡-¼áõu¿^Mà^ó<ÃKln{‰Y/1Îù%&‚\L/‘@ßæÎv•ÞÓjšöD¹KÁô‹ù› z༗¸ñXº/ûÛš\öNÅbyáYR6C&”±ÇNÑÇ,{ì¦9öø}ì§ŸÀ$ùQš<À°ÎÐÇsìqá1úü8{Ž‘GlVc§Éi†ÕC¹^½ô‘ëÕGsMîgXIú˜ggé#W3EÏ<Ò4™k›!ý)ö˜¥\Ë}Ì<úi2×6O¹è#×ò}Ì<§É\Ûóô‘õ úȵ¼@ó¦Mÿö¾½=m\Ûûïáyæ;x§»HIŠm —N;‡&´e7!9„L;§íñËŤì&ÀÒiÏLÏgµ–$[’ec¡´•gc]–––nKÒoI©3çö ýä2ý~r.+ôS-ܧԙ ñ~r¶Žè'g«J?÷ÏÐy— ñ9ýäl½ Ÿœ­ýtÿ¢Î\ˆ/é'â1ýä\žÐÏ]…F:snOé'â~îq.ÿ“~Ú uæÜžÓO.Ä&ýä\^ÐOU¦¿SgÎí+úÉeúš~r.ÿ ŸªLÿ ÷9·oè'—éÛ·ô›³ùŽ~ªBýoêÌÙõè'j‹~r¾ÚôSm0êÌ¥ØÅO»ÀóÙ7ç¬Ç¾Õ6sÉܹ$ß³oÎ[Ÿ}sæþ;Õvó¹s®¯Ø7ç5ûæüè·­¶!sç|Ø7—èÿ°oÎï˜}«}Ò„¹s¾§ì›þ ûæü~dߪ˜ÿdîœïOôÛárþ̾9¿ÿ˾U9ÿÅÜ9ß³o.ç/ì›óûì»L¦?ì†PŠ[)ÜZåOáÎ2¸v«Ý‚¸ÈðW;?Ý.Ë;ôê-<Ž­ :6-Þ·`Tš‚É5,¨ÂrêŸÃñŽ&ƒ%ØO~‡Â¥„v¬³+Ÿ$˜80ânYí›KXþ•¼·/7Û˜È_;Ãñå“`wæžPh[‘árCé„W9%ºÓøŸéÔÛ‚á'ouoFW”Äygðp\­ç=¯“ù£—á4ÒSgCïÎèêfÿ2?J½Ø"‚¸’yßš¼G¼*™Ø’ÂnŽÞ‚i˜øH«'°NÆÖúd’³5™ aJt« Öc¬²|Ù¨TΧù÷dž[­aâo“·SRC»B ít´íRèÊC¸!BZ¾JšÐŒGäWŸK«¦*½e¿‰Ò1¡¿§Ðt¡Y؃‡R7–•z¸éß8ïÞÍTx÷Ž£,bzp2y££D—ûâ±ßµ:^ÎåÁî—âOþÞ„PkJÛ> œÍz4qÏ#½:è÷f¬­LÒ¼õÖDlºDaè^±­*i økcãK>ú—)Ž«ÕxÔW„*³…³ ’í$Fª\Þ·x¬/ù(<ír"¾Ñ¶]¦L†(ÎàcpsMù°Ý$>vÉð>࣬磔Ìì1>Ša¤d!¾>ê_ö§ËÖ QâÀN–Äá`:¾b%’$ ;¹6<½j >02ŽVö~"3¸—؋ϔLr/™$ÑO9ÉÝ”$½ÚË£^ŒÈ7+¯BZ’…D’ç£VÇg\î§ÍxrµÄs"ÉrZ’É-îù¸5zÏH–Ò’L®ûa-¶¬â>@d„éÇ‘‰™c!ã±:yÈI[ÐaB? Êÿc‹*áØÒhƒ,1a AÒ'Âöt˜‚”ŠÔa“´‚—Ä·½{O:v˜)’ð$¯Îõùƒm¸¼5Áݸœ+9‘È? ‚„›¹á†Ù×»,2õú?ÖŠÅÒ˜qÿO¡¸[T×ÿw]sÿûJžû¥^*¸›ï1Ê Â™°eÑvd…0G¬¹?ƒZS*28±(ƒ£Ü2Øá°þ&ƒëÏ2Øa²þ2ƒÃ528,±Q)ƒ]5ë©38°‘ ó: mÛÐŒ¸b”AMƒ)îÙhŸ ÐB¤£ÌpM‰ïb[sfûÿ0¾kûo·PRï0öß«z–kÿ •ÅØûocÿmì¿ý÷`ÿÍ·‘Ì·_6Œùöc½ ¥×3FÄ|›èSÆÞÜFܤµ­¥÷¯ì܇píGµòÕÇéÝ…sÅ¿s#ã°ç35VŽë»n$"Q+¨— ~´^Ä`‰ò0¯g„G&¡å€’z&R˜1æS-*'0²'j½#Em.Âg<#~˜!MSoELsΰæ­ë6™ o&ñ‡a2Ú³¥›ÇhZñÙäyÈÅþÜ/hž£©F ±„ŠÄMn¾HÌ ?Ò3ä¶sø ºbQIcßÚ®²2™)E—Î3ûJVi"–_ϼ2”Õ¢æ•Ø±¬Ð¼2¨p«3²ÌY3J¡™Glf¶¼l072Šæ-/Qógæ-‘!I:çSîæÑD¦s·Æ/é ÕôUóž@šÐAH)ÜµÉ ÀâΡ^`—¡©^þ§Ž?¢KD¼þ̬•‡õ™µò°nj¥©•ÆëGyfîÿLÿ¼ëý{w×ìÿ¸E³ÿ³Šg¹û?PYÌþÙÿ1û?fÿÇìÿ˜ý\‘n¾2û?ß|ŒâmÒX¯–õŒ¡Ûÿ™þ9ÿþimßÄþOô¸ÜŸ0öOI;;?ÅÛ.D‚.H-Ü"R×ýîŠ"•ÇöÆ]'ÍöÔ÷º;ÆêøïŽ5_%íŽn½;Vœ±;$îŽ1A¬÷îäâV»c‘Z‹ÜRPöBö敆’s5W3d¥äBìoxftR›‘ŸâA(»¯šÖñ=šý“ƒ°oÉþ,~‹Qù“^Då7}YÍ®{RnEby‹ôÂß8¬¬ PqCÜÎ%e_Ó°ï@È›£fUúüúuY*ï9ʘµ «ËÈIºÓõªbÀ»×€¥ÙU^)sµtR·qÆ ñïzHgŽ &ʬ>Z‘Ãò²¿¼ÖÍkÉIBE™ÙÔ5}WEì¦)â0oéË86ÎÌBV„°ìªžª¬U±è²83kºqKmÈwЖ—AuJ´À`¥Éè×ÊkrïOÒ”i´Ñ®[#“ÖùËS›Éu«¶sv=‘²,r=ºÈ”)Mtxòµµ*yñ@næöœ(éè5»™a`Ñ:9ÌÊßÑ„t#S°|‘fHRMæ­þr½X–RUx M:V0Úê+Ÿ™BÉòj ¿@³ù·Üß³ªÀRTè³øsµBcÅf*’ÔLµå+ÄJ›«¢TÓÖZ)n\Ç©ò'%5;RTJSi£ªBšL©£múLI ¦ÈT¤{ObO„bfjÔÞ lf¬ÎðÚ·ÞûcÇÊú“N .YkýÁe”q»ÜK2 c¼I#Ï„š¬ß>b¤5ùbT²SƒÖB«/ê+™}i /³ ¿4•Tu0þÒ!æ5ÿJÜ»VR¹{°dû/¸ó‰ íƒÿ™äcðqgôyn#°û*•bï*˪ý—»[6ç­ä¹÷‡7“ñÃvðpôyú~8Èܳ¶·¶-ÚéX7ÓÞö¸d2ýk¼¡zòyÂŽýL¦Q}îáœÏϪg¤{"½-éwGý+?»I/˜Ûy@¯”ÛÌah¼»íÙEýP W¿½l½ nØ|;y€},¼I¿-òš-y ¡8ìˆü$=9ùKºc)ž7^¥©$Gȼ}“}Û}{ûŽ…kT›º×ü㬪þoÎÒ'|°ÏNàÒl%øÍ ñeo»9h>KÌÏWµÞl¨I¿ýkcgë· “Ýþ ³Gˆa1jÏà">%J¿‡¼‘?Tn¿>&”+ýv0 Ï«M,A…Fö·ëÜoä[`=÷ežŠÈ…ͲŒÙz$¤qxz¤‚š†V‚Œ>¿|ï-ܾ÷öÝ[z½£´½ÃÕ×1’€‚B‘,Ðüåòîÿt®G;‚"`UæÕ±B‰Žý„¹_NÉ ÚxV‚eàžÜQ :~hGY¢s@7 ÷"Òé)\b8ÙC>ÊæèJÁ˜œÜ´³rÓÌ[››y€>A¨~ü‰¨ec]ì ©’ÈPbÐßäÍ»ÜÜtiƒ$Da¼ ä©ïµ¦YüÊ[oßÚóÓ0!NXœ›oÐ$ºØˆ 7І—•l¸$ Bv CözV¶€¨æùà­˜JI¸{“ŠŸ´ÄE(B»bûƒ®ÿI½cs~ªaK@q1ÿ4¸ûžji¥¼&A™]вíä~×z@ùË[÷»9&Aë>^0ŠštÐÌÙM¨€¯ˆ&Æ›2¦4ÎyÿÚ¶gPÉSljØ{ô k驽ZËYDcl‚,"Ó£ Ìkˆ¶ ¦ÄíÏ–^|; eЯikx3ÝL‘ÊÑ97(78þ?¶z;c¢Üb'FÙ§Fàp”+ôfBoB–ƒP”ëIð­K!C”˜ëVi/?Bùy²?áÎçÛø&!}âHÈ¢ãû].#È "O¦D˜ùÚZÛòžúÿÍà–3€ú¿»ë8Šþ_tÛèÿ«xŒþ/èÿõú|ØV¨Í? Úü÷[Yò;÷–ü t{TóÉ#Pð«'gÍ?âH‰³‚HL35XâÔ ¢º]O7lr‚Æ63 û‹kÛMþ¸_æ§¶- Æ„ôÁ¼#åù‰Þ±:ÿ ŠìVê¼\—xŒ¢Øï€ã­´{šJû1Md†fh»ó+¹Q=gUjî‚Ú­NIW7MÔÿú“áÞ^iß³owXòù_ŽíDô?Û.˜õß•<Ë;ÿK¨,Öúœf®€0çw™ó»Ìù]æü®»?¿‹ÌE8ôjçäÿSÞ!,È£r—§¶üÖÛ ®\tÄPàÕlµ¯ü7ôõ‹…½æ©÷´ÖÌÒ¨9Ð 9å¬ààÉ{X˜ˆ%ì”Êüp,8¥°—_ô-Sp öÞgï=í;žÂíyXœ‚³WD»U˜ûM),S¢°»×F—…ÞZ ‹çb·Óræz[ã¡(¸Ìû¾c ³äPŠÊaÏwæz|ÎCAp™÷}ÇfÖ‡ ]XKYèý=Q`ýCI¨P˜ãÍx}\VŠº´lå¡,R”(Ø1<¨í—µ¤…Þ_™B(É…yZ—ÜBï¯LAÃ-xˆžÁ ÓݳV|Ø¢G9Á‚ÙÄâ_'­Qp(ç_„Fk–_°¾ä¹‹.¶à‚©ùŽà⢋+¸`»ô‹‚K ]J‚K]Ê‚Ë.ºì .Øâý=Áõ_pi¡KKpi£K[pA-Èï.]té .>ºø‚K]zàœº( ž  . ¨'¨‹ê ꢀz‚€º( ž  . ¨'¨‹ê ê¢8z‚8º(Žž Ž.Š£'ˆ£‹âè âè¢8z‚8º(Žž Ž.Š£GÄ¡žÈ¨¶ÆŸ³\ð¬@¤ÊÕôìfбˆ|?û]X1¸ÔÈ¥IʃY°wÝe%àŤÿ¿þ°—*vî!sÓ6\^lìJ°ð¡çõòÈYäȸXØ®^› f S=tOpÃãähx‘.ð_›ú×VŸüM“àüKPàb­ Nà¼B8Z°Ô ‡Ä…w;¸CBáö#Ù 7:â½È›ø(Û98ÔðIÊ)0;cñ Ã’ Üý ÜbÙ™ŸÈwv+;z`ç‚ p¢à²ë’Õ_&ÓÛÀ^‰²bKp©žÑ,(žúL:ßãÁÃã:á+îf)›Âý…à ŸÊšØ]M lÇ•ÀîìØ”@)(Éä›*N!ZÞêÛ@‹] ‹ÝE¡èºÂQ¬ ¬ë™w´žzö7'›úÐvlè„*¡/õÄúÃÖù¦>´ž­s•-'‰-'‰-g.i9ó±å&±å&±åÎ%-7m!ЧëN þVÆÝ[TF½gʶ$·&np*µ)_Ó¦üÕ4ûí”;§a±ç+Í%Ý[¥¤·gK:TÍ ª6´ØÁ¹™Ÿhb ÆjyÍ¡¹òAÅs\ö™ à,ª^¿ÐµñzåØƒ³\a ø°r^¥xê“‹ãfÍ;|Qi°Õ[&ó-LñÁB?hèÔüÜHŠ£?Y°P`,Æc‹',,ý6O½ãÓWÕ2÷ÓA,\XºC{ÓÖ›ú¬^¨ ­LÂ:ÉñèPxB@ÊÆ/ÉÃQì„•§µ&]Î÷.ÎΪ ëo+tAIç‚{ü²5¾wDç<¨…Ó©6NÎÚ-ÜڤŊ¦¡Wþtêá`é)q€«~c‡kLLj€'´Ä†ßnåä'úUt$ápãÒȵb²wZòâ§$˜_-§T–޼OÜS H24ß}‚!]¶HÁ'†ô"IŠôRmMI¤mˆ´mƒ¹©dm*š’Z© N­EmNã8ÕØŸŠA¢v¨3BAˆ-jŒõé²ìMoegªËO¬Íi°põgëóÄ›Žoü¥ÚŸÆÐ½–Ð<+zÒá¿nwä,ü×n¡Á•KÿµŠçð_ëu¤€˜€˜€­ÆgeNºei’Iü‡Ç0Õƒ‰5ƒ½‹“Ò¡É ·‚“ÑÓ†f±)€É6ß’A3o›½övÙ»ÈÞ%ö.³÷îfžR°›Q°›Q°›Q°; à0 £à0 £à0 £à0 N@Áe\FÁe\FÁe\FÁeÜ€B‘Q(2 EF¡È(…"£PdŠ…£PbJŒB‰Q(1 %F¡Ä(” eF¡Ì(”…2£PfÊŒB™Q(v…]Fa—QØev…]Fa—QØålVl&›ÉÁfr°™l&›ÉÁä`39ØL6“ƒÍä`39ØL6“ƒÈÁfr°™l&›ÉÁfr°™l&;ƒÍä`39ØL6«6«6«6«vPìâw-VlVlVlVì >8¬>8¬pXÿà°þÁaýƒÃú‡õNÐ?8¬pXÿà°þÁaýƒÃú‡õ뜠pXÿà°þÁaýƒÃú‡õëÖ?8Aÿà°þÁaýƒÃú‡Õ‡Õ‡Õ‡Õ'¨«+ ‡•…ÃÊÂaeá°²pXY8A}pXY8¬,V+ ‡•…ÃêƒÃÊ ˢ¼ å¹yØãÁerpY»pY»pY»pY»pY»pY»p9¸¬]¸¬]¸¬]¸¬]¸¬]¸L.knÐ.\&—ÉÁerp™\&—ÉÁerp9¸L.“ƒËäà29¸L.“ƒËäàºFô½»“%¡Ù ÎnàìsåÂÀÙ œ}m äë@õw¡æÐò(Œ[…«§†/‡`ôyb¨îsåbáìK °`ôu¡ "Ó@MtÀ=ðá{„š$/qÝÎäû™îeò!; sC;3DãƒU´©Q:`ŸÐvB4©h»¡Žíbè@1;¥Ðí)ÚåÐàö^耳Šö~è@Ñ?­Ðm)ÚíÐ'$íNè€vm?t@Q›Y‘D¬l"F6›ˆ‰MÄÂ&b`±¯‰˜×D¬k"Æ5ÛšˆiMIJ&bX±«‰šÕD¬j"F5›šˆIMÄ¢&bP±§AH/ˆd_1¯‰X×DŒk"¶5ÓšoвfÙ¦5˵­¡´S›Ó¤0¤QÏ ¯Ÿ–%¨Ÿ d¹ËÍ–+,„–ƒÛ ZΠåÖ-—ÿu»À’ñ_¶í”w#ø¯]ƒÿZÉsø/s˜Áü—Áü×ÿ–4RžvwG€™3À̦é|¹0›¦fÓtm6,×ß4-ðí³9Þlƒj˜†ÂJ)ÀÔ5éýmäby’ä¡.*¯fwèÎ ³üýaLå e×éRZ³ìižÅŸtë¿îÚÿ– ntý×Üÿµ’çÖ]³þkÖÍú¯Yÿ5ë¿?òú/ŸX¸3ìÝùìÝtkÉî²í5lû_cÿkìÙÛØÿÒ·±ÿ¥ï™ö¿¬>8¬>8¬>8¬>8¬>8ÅXûß’b{ËêƒSRìKÆþ—¾—f÷êû_ú^½ý¯k¶²ÍVö\¹0[Ùf+{m¶‘ׂ“ò:«ØË¨$‹`ñ{ÆuVQûߨ묫ÝèuVÜgÞ묾û_s•¯ÊaQ ¤¾ûßÛÙÿªK\Æþwû_w…§Ì·K Ÿ,¢j—¾Ç³äÝZ›\k=lr î7i‚k,p%Ôš»jÍýQPkÆ×`Ñ’Ÿtø¯âÝÞÿ°k«ø/§`ð_+yîÿU4ø/ƒÿ2ø/ƒÿ2ø/ƒÿ"ÃÁ üWq>üW1þ«¸lü—†Mƒÿ2ø/ƒÿboƒÿ¢oƒÿ¢ïÙø/GysüWI~sTWzü—zÿC)ÄÚpüÇ}ñ·«¼KÊ›£·ì™ø¯]™‡÷õ]á¿ÌýË’ÃÜø¯¢Áü×\¹0ø/ƒÿZìÕ:Pp”ûŒ•ê9š#ÿ#î[C!×3‹òwÿ2÷?,“‚ÁÝÿ¥.q%à¿`¿‘}À'ß8¦ëÚ€;"ZltZÓ!ƒ)m=¼ f Ðß%l¬h®ˆ_]ɵ-á–P[ê-áþ„Å; "W>Dnx@¬TOÀJQMX¸®¢]˜p;E›ÞN2ÒFà—pÕD›Þ,Ñ ´D/’05k0jæÞˆï´fPk2j­¸j­hPkµ¶lÔZ:üWénñ_n)Šÿr þkÏà¿Jÿeð_ÿeð_ÿeð_d8˜ÿ*͇ÿ*¥Ã•–ÿÒ°ið_ÿeð_ìmð_ômð_ô½´ó¿J<|@¡¤à¿J)Ïÿ*…ø¯çqt×-Îÿ*Io7À…}¸'sþ{¯ÿU2ø/ƒÿš+ÿeð_kƒ½Z NÊó¿ÔÓ½"g-bÎÞš}‚جó¿âð_éÏÿJĤ}mì•9ÿkInþ—ÁÝÿ¥.qü×Ýã¿J+:6Ìò§ÛÖjYÿm…‡ˆI_­ïñH±Ò*Ñhk¶'àÄ( ,Ä µ)¶,Äø´)ÆGÀ8Зµ /ƒñ2¯ïãUZãU2/ƒñZåÉdéð_å»Åéî,ü×*ž;À• þËà¿ þËà¿ þËà¿Èp0ÿUžÿUN‡ÿ*/ÿ¥aÓà¿ þËà¿ØÛà¿èÛà¿è{îó¿8ö*rþ×LüWäþGŽ÷J}ÿ#Gqü{›ó¿V$‡¹ñ_eƒÿ2ø¯¹rað_ÿµ6Ø«u àèÏÿROõR‘T ø/弯ȷ˜‚ÿ•ö±(þKwŸ_Esþ×÷„ÿ2ç­þK]âZ#ü×÷ þ*›Ã¿âEW~ø¢~„C¸D@VÒY_­~DÏúj‹g}aï$Üe@]Ö7 ê2'y”×÷ˆò*/„ò*”—Ay­Çý“©ð_έà_3ñ_åbÿe þkÏòñ_Žø—ø—ø—ç$£¿œ¹À_N*ì—³dè—†Gƒü2È/ƒüboƒü¢oƒü¢ï™È/ŽºŠ ¿uE~Å¢®”“¿"·.Î<ù«ÃÃÈ/~ócß4âÉœüÅÞ+G~9øe€_så¿ ðkm@Wë@A~iø¾£À¯¸‘*+üŠ=BLùŽôBCuÿÚ +sð×’(Üþà/ `€_·~©‹[÷u·¸/盀}-Œ©.6ŒbªcÓVoXl‡›jì`*Šº¢W —2F®\DÀL; —e UÖz@ª ‚*Š Z2€Êà§ÆO­ëÌ€M‡ðrx9ßeð]ëïšõ¤Â¹wŒÿ"ÿõužåã¿\ƒÿ2ø/ƒÿ2ø/ƒÿ2ø/ÏMƹsá¿ÜTø/wÉø/ ÿeð_ÿÅÞÿEßÿEßsã¿ân~¼=þköÉ_ë„ÿ*¬÷äü×7†ÿr þËà¿æÊ…Áü×Ú`¯ÖB þ+ú.Äü5/þK¢¤Eo©?Æâ¿ì3ð=¶ÊÃLü—šï»Ä¥JKËãÝã¿$‰Å½—„ÿJ•––ǯ…ÿŠ"‹tˆ°ÿ¥.n%à¿ –KÁr¹+¹¿‘a (xªu»[Û¥ïð¦Fwå'‡‰(·;Á°-²ö]!Ô¾_@ÚÚ#Ò¾3½~HZ:À—»àË5€/øú6_Ê“ ÿU¼[ü×na7ŠÿÚ5ø¯U<ËÇ þËà¿ þËà¿ þË࿼b2þ«8þ«˜ ÿU\2þKãÁü—Á±·ÁÑ·ÁÑ÷žÿUúø¯]™sþ}ü{ωÿ*ü—ÁÍ• ƒÿ2ø¯µÁ^­'ÝÅË?ÿ+þô®»;ÿ+’Ksþ×ÒÑ[æü¯úü/uqËœÿu·˜±â]cÆÄ¬¶œïîUüªp¯¯¨™9ÃÌ2g˜Ę9Ål™±â"±¢ŒÈØ×‡Œ¥Â•îÿ唢ø/§`ð_«x–ÿ*ü—Áü—Áü—Áy¥düWi.üW)þ«´dü—†Gƒÿ2ø/ƒÿboƒÿ¢oƒÿ¢ïYø¯»ÇÚpü—ˆµaø¹WL.“ƒËäà29¸L®Á=19¸L.“ƒËäà29¸L®»–¸'#‡o ÿU2ø/ƒÿš+ÿeð_kƒ½Z *þëÎPKñ÷?~ËØ«¥Rø†±WË=ÿ+%šïÖ<èRZÿ%‚ºî ¦Ç]©‹JëîVª©´8ªi}F¥•°JK«´T°JK«´T°JK«´½Ó Ñ;-½ÒRÑ+-½ÒRÑ+-½Ò À*ÜÁ:=¬CÕÂnÖicþ»aþÛ˜ÿn˜ÿ6æ¿æ¿ùï†ù§G¤uÃü·1ÿÝ0ÿmÌ7Ìóß ó߯üwÃü·1ÿÝ0ÿmÌ7Ìóß óßFôN7Dï´Q ÝP mH×\I…sýø¦ÂÝâ›~BQ¤F8±ðëŒs*, çTZçT28'ƒsúú8'óèŸTø¯ò]â¿lÛ)¢ç9ÿµŠgùø¯²Áü—Áü—ÁýÈø¯p)¨œ µU¾j+aß´löM;é\¹0û¦fßtmö,×ë`b£·bÜ Á™q1Ù›ßUdk(¥£ôN¦ KSõ—(¸~’Äo¶W·@ÌQH/Éï#·©QêBûJ¶ÔÊso©¥[Ö-/²¬[þQ–uƒÅÉI§ß÷"‹¼²wÌ’¯È,›àµyR­ÿîÞ­ý¯íÚÑõ_Û¬ÿ®âYþúï®Yÿ5ë¿fý׬ÿšõßyý—M.v“íwç²ÿÝMµ’¼»dû_ Æþרÿû_ö6ö¿ômìé{æýEåþ‡¢rÿ«N1öþVVVœ’rÿCé¶÷?p+Öðþ­=«ÞÿØ öž‚Ý'¥PXC»Wgév¯ÆþWª·¶ÿÝ5ûØf{®\˜}l³½6{Èë@ïcGv›ãv€ÿŒ¥ºˆ!UJêž²GÁVÞª¿dQœI²½UmŽmÝ]Ébt,ˆƒ½õåñðMØÿ~Í$¢ûØßˆý¯º¨tGö¿`·àÝU^lÐ)Xÿmñ/¿ð^s°»Bëcf(ÛQíb»ª]¬¯ÚÅö3XÁ ˜Z½ ‡ØS«×žx‰Ájäúµï,PÍÀou‰±Ø]ÎßÇ…³ uSBºvtíþ(.c©k€Zæ¡O*ü×ÞW°ÿ-ü×*žåã¿ö þËà¿ þËà¿ þëGÆ…‹1{©P[{weÿ»göM;é\¹0û¦fßtmö,ׂ£Úÿê÷*µï˜}Ó˜ØÈŽì¼û¦êi·Ñ×ÈN«­§h‹{¼\’1ûÄ«°9ýêÂè5¶ÿ]ñW±ÿÝ»#ûß½E‹÷~”Åbcÿk–•¿ã'ÕúïþÝÚÿ–Š¥èý¿fýw%Ïò×÷Íú¯Yÿ5ë¿fý׬ÿþÈë¿lr±Ÿlÿ»?—ýï~ª•äý%Ûÿjx4ö¿Æþרÿ²·±ÿ¥ocÿKßß“ý¯ÃêChÿë°úà°úà°úÀíÅþ×aõÁÙý.ì^¹í^]ÅîÕØÿ²÷œö¿ûfÛìcÏ• ³mö±×fy(8Šýï­÷±ƒÝ毸­ò»=Ó‚ø[¸A8”äÂ<¬íí2¬wÃÝøÅyXÀþwF¿¢±j·gýò‹•EËã_èú[½rìÖq% ×”¼g§ÇGÞÉÅq³æ¾¨(–¯Ô‚øÁBs²ùHp#?7Á<7ØIwSW½²º¸µþ÷/U´:‘IÂI&Ïûwmòüp‹æÑŸvvv,Ü,¡…ܺò§Sœ·Ú7Sâ0ØœÆà£?žîÐ-é@TO@T­ˆŠ|ý _íÖwh2½¿"“éè½Qkæ¨9sÔž9jеhŽš4Gmš£FÍQ«æ¨YsÔ®9jصlŽš6kl›£ÆÍQëæ¨ysÔ¾9jàµpŽš8GMš£6ÍQ£fŪ9pÍÚ© Š£'ˆ£\xýcØBÛy™Þòm¡¿ch{I·ï/oÛÿQàmÆúÇ­%â¿> û·4ýÅgþËq첂ÿ*Íý¿«y–‡ÿ¢•Å@¿ ôË@¿ ôË@¿~Tè×ËÓÚžôE=fý0\Ћú/â¥çÈ€» ¸Ë€»ØÛ€»èÛ€»èÛ€»è;ÜÅ/w`õÁeõÁeõÁeõÁeõÁeõÁ êƒËêƒËêƒËêƒËêƒËêƒËêƒËêƒÔ—Õ×Q.w`õÁeõÁeõÁu"à.V\V\V\7õå?¼Ò€»TUÆÀº ¬ËÀº ¬+é½^ªu à¨Ç“|C‡j,‘· gZ*…oÞ¶ ¨zˆûȰ6ï-r¹ÃŠnvЬÍ‹¥Â,jUøŠ ©Â­p1_ò¹˜q;]«Â’8œ*Š¢ªœÖjøMW¥¬_~áH¸vî<=¤!³£\Îúûo$ný´ž@úq´ƒ›!3ÆÀYª:а,®£5ꈨ(ªHâ%{g(uÁñŽ/ŒÀOæ&‡ïä&î Þä!!ždÀw W{ñQ P > ¤ „ŽyP > ¤ ÄGtBø(N(Ò â£@:¡@|H'ˆé„ñQ P > ¤ ÄGtBø(N(Ò â£@:‚@z(n( ¤ ¤‡é†é¡@º¡@z(n( ¤ ¤Gor ÒCtCôP ÝP =zµK(½Ú%HÒ ÒC÷Åô0ÿÂõ0=Ì?\£Bâ°+œ ÷Ó·Š›ë†” ›}OH"4Æ»9@q|#Àµý ¸¨º¸ÆÀãfTI1ÝÙ¹¨Â#Æ7@9ó,ÿóÆ·FÎÀÿÙÛQñ»æü·Õ<ËÅÿAe1@ƒ4@ƒ4À؈Ç6R£3q€%"5|, Á, {, }, }“XÀ¢ÁÒ·Á®N©±€ ƒ4hÀ¹raЀ ˜xÅÖí/éúšlŸþØ4é µD"ª}9H‡˜Ý1kÄ[ ß8–ïö´ ‚ñÜp@iw•¸@u%i!dàX ¼ÓÃÖ4ÇŸE•¼ùŽ>[èü°Pw ¡k¬ò±â{Ú®ph–9Ul½Oñv_ñœ±À%ÀÝÅôs­–÷û„[ àêv€+¯1'äj»€®~ÌÕ8u¥m‹‚ïR‘Wcƒ½2Ïò$â¿®[|ïfÐÇ Mkgò~4÷U*Åá¿ ¶³k+ø/×- þkϽ¶*õóqÞÌdv¢Å붦­Ñgë‰uîd2˜ŽõÏ¿‚T¾XÛÏòÛv¾`m׃(7ŒôÁÿ¬qÚ¡4ž*„ó/„ tBxp¤30ñ+ #p#ÐI`GdÂÛ/K+Fl+!™98q"œ8sqâÄqâÌˉáÄ‹7Ž—s2¾¶¶{œNÆÿDF¾‚®–óÌ×ÿóf=_Éý¿½ë–]¥ÿ/ ¦ÿ_ÉCúÿ›ÉÇ€Ñçéûá sÏÚÞÚ¶èÄåÀº™ö¶÷À%“é_ƒÞkM>OøÏ±ÏA éL2™óÓ‹ÆaÕ{V;®Âå |EHíL?M7Ù¨rQGËÕ—Õ?‚qý;"E8‡›ÞlÆôðëÓ1ª^BOµù.“É‘ê]‡™áç§4,daBºjýðÑxÀ0†¸×êU¯Q·±¿Ó^úW~v#û¦°½_Ù~öî/;_þ’{dewàìšýí@uÊý¦u|D\ßN¶î‘¹ìÎVn#—ù½Ú8¯Ö1m%ñ{;[ÛÙ·Ý·;ô_î-ŸD âÔH8õáÀÏd@´ç09ý’i^4^ÖÎ_x‚Óñéaå¸Ê\¨S†–ŸGrd±¸‹×¹jM&Vu0>Àծ߳<œµx^vâ_õò€çíæ‚å pÜ7B^²­-¨ ï¢Q`:M¼Èß,R•Cô]ÿñÞ¶ew"E@ âyÌ ÜMW°ÌpÕºnw[VÿÀÚ¸_(Ú°î[}–qásó`sçßÃþ ;¡^ŒöøÚ.g?åq•‚G¬ôck£ð‰Òë÷¬Odx„åª^T©_ñÓeÅCâÜ·>±!>P´¶QÊ !^„” c¨Ïä¿-ôz`M2"Ó“M&³“ì'Æä§‰øÉúÙ¢.6¬szòd/gIîs·Ë9Ñ%±ñö-É‹óI~³Ÿœ<¡Jþ˜¸:ïýΦÅýá€TÞdòsy5l·®,±’ó°p±ÑÏPt˜ äŠ× dL_PÚ¶”Ý`U±{3:°hWnÝŸ¼`¯Ç©Ò"Êå2èÞP/Y~ÍÐøÆû›h=Öß@çÞû­.öD”äŸïI(ô•GpÙ¥ÁQ6”¡Ô®:ÒÈN®†á#Õ,žµ)ÚM)ÕhWÔ³9¹@¹gDÞbsÑTxÈ,sÚÜ0Y!JmówäªÂúæ `mËT»þ­×o€Z¨zÈ-@®Jdl~ôƒª$ j­ÊÌìÚ¨£Qްz(ÞLŒR 3¤øÓRÞLG7S¬†ä3¨PPI666Þf˜G¸u|5\ZÒæò£ ‰±‚–@ô<¦Vtû`v‹õ\cËrë ?¯ÔÔ R±§þ˜«\Ùy¢3ù‚¾÷ö>®X'U'Œà¦Šà&ÈÓ„ÌünöФL¤ÿXŠùt„€NR@WèÆäX€ $;’$jN*6ÖÕeAÞ¼ îü9&2ÍnÀ–Áý‰µõzœ‰¦ùÞÀ†x¢Ç’<øq‚B{þ·°%÷B£ ”ëŽØ¬h¾7 j¨¿Âî9v¨‹æ(ˆ$7±’mn ížeœhº¹ˆãÆÃ­ûÅîÖC „ÑÇç±Õ‡ìáöN¶@ä‘“ùâš7QáiyÓ—·ö”!8úýIžË›{Þ –þXéu¢,ZÖý.FÆ27Àc9–Ûù8Ó–4°´…ô¥¼¤¬_-·$‡á,äÎ/Ò£F¿)¸î;2oÙÜÙÊ]3ˆÖˆ 2ê†RéX“l> ¹|@E-³MCÁvÒºöƒÖr¢íE¬š2çþä~—â[P`Ô˜òKœ Á/mÕµÑh’ÜÄûùû]¯~Ú8©{Õú™»U_[PÅhúyÞ $ÐglÃÃÆöAúdö®b/=__mHŬU†%£é½H· Ç¡­‡ 6,@Ø+|ZƒY‹©#,’³g„ô^ dÊ=ru 2.ó5›Œ(âëVg<œp:º .§’ÉösAÛÌÞŸ@ #N9(Z 2ƒ†££áÌGÃÕÑpU33Ãt%¯~q‚´H^Þìw©ó%á '- WCÂEsH$,ò×I_4:N@ÇM_<:n@§8GÕ«¯›´û ´²,Kä_XZéóCÎÈ9©É¹qäŠ9W éÜèáÐüf 3¤Çn 0´þlM¬Kà[pØDû³»Ã³têR ±ýÞŒëp4Ënq“ã@:ðÅ¥~ê4aL¦£7íìxóÍÛíw°Œï‘?"ùœB’1q/Ò]ñ5þØŽò^dÎ#öŸÒÐÂi)]§XZê¦t0…ŸEÝÿ+Ãˉn›²³;æ,4Àü%ô+…öì¼¢µØ¿ÿ%CÜt¦ÖÓÏÈÝK2/€ZŒ§›Âê›…z}øÉG¿G º?˜èqÍ òH¥Ççð7#«Ÿ•§¤¹`¾§¬° ‘0ÒL‡²áÜ,ϧ9¾dNP&WºŸ lêà)ºCô2 Èeãí`ÓºQ;³Â"ø‡\IÓôàg"—‹vN›÷ïojªEX)0_{]j@?‹ôŠ/îÉsôTh–Ya\ƼXKuBWv6Ù&‹¼1#]?Ç‹+f±*AêÖ2½Æ…ǰ^¥-[ÖCÓò¤Çˆž¨Ý%DþÜÌY¤({AvâûdAלåS™¸U³N\UnäÍÕ7ýmûŽ£Wbõí“t3÷î‘êG½w/¦!ì ªc‰ª´V™ÉHk†™Œ8ù|LW85c [V%>j7¬-ƒŸôøŽš8 ÿg‹*þõw þc€ÿ«WNªÕÒÆÁCÞ±gÖöÂéY#Ц ‡WˆÔ@··û—ƒáØß¨ö¦„0l¦Œ£b %6)ÞðŸAF¾PTÇÌðÛ£á¤ÿ)Œæá7‹¬ÅÀ…è·«áðÃÍH†“†i¯³£3¶ÉóL"À=2ª²Fu ‘ %-‡ãôe´ºÝ`°óÖØ$1†È±# jõçqaõêdHôH]¢žÙà¡«‘pvBôm¨ AH:D34Îx.8Ç£€²‡q°žMÞô߉Å0q°šRÀ ùø•ÈT©¬, ŹU 0^+&%º‰¨teQ‹®€¬ù–,wó¯(¿rf}Æy„YéÓ‘¥¤u™59£>Ϥ\U p㪠+R(© ,±ÄFÇØqÅÖ~=Þñ?MñdF¥%ŠƒGºhèÃõÜ| =yl?Ž•œìcfŽ:®z ,hºðTtùd®væ Xã›)œžÕoMXceeß`Š»Ú†‡ ¡2»!©g¯5•9¶9‡5øIjz­7!…w–dÆ*HK[ ¸æóm–ÅïK/ŒNkjE „ùóÉÑØž®ÆL8ð,ŠžÅ“˜,éÎ'}NR&zö'WßÙ´Þ|r Ø?¹Ú¸Eœ?“W2‰¢†„¾ƒKËԜ٠i”‰!'¾ ãf„Teåœú‡CõZVbaojIu8íØ“vœD1"ŠRÚÿ «z:£Æ§´°øpƒ_ÁxÃÁf}è=…O6uÀy Œ›òÒ¦~$—‰&ÎhD•N,œ€’ÙîuÚÿÈ'Ú\)eECìf…¹m¾Ó­k1„ƒÏ$¬…Eó&Ë—[óÁ.1›ˆÒ°¸©üNÞ»RX¾ þN Ûâa -1ìá`S#A%?χ›ïøL=ˆ/{ë2Ïý‚Õ$,ݽv%šÇWœ¦â>q¿‘x8Ža¢+­ea©rˆ•h¸~Ô‚ü7üäéAţȂ¶?íwxºÑ0u›eݳê]è(ŽüNŸpãÕo®ÛþXJ&ZSÀC’T aaî³¢Üg‰ÞRêÿ5a©ÿ×RGø‚wî“δ5Ž%š‘äÑCJþÏáX(+øš!ŽHd‡ðs윴ÆôáêÝXg–¥³Ð8~‡dÆCÆ ^±)rɸKÙºð[—åUóÍ2}Ìæ«÷ý)‘Â?gšhèÄbvÒäetHËèf<^¶¦~ª¸1íƒ`’,FŽˆ€‘d0v}¸¸1TNv kU-B}$·î j@¯õØŠT•0Õ„¡ðQ—B ŠÐ á·ˆvÂ@gð›T’ZO0Eñ„ †¾¯¹7oz.ëqÝ}2z¢KѦ.Å2w)3—r9÷N” ƒ0!lß¡«\ R• ƒQÃúPXSHàP.“è¸- ô Ø'Œ†%.HñOè÷Ž'>2}ÒƒO~C‹`¡ã:ÛÕ 1" êXOôQBí'3€ÃÏΛÞáéÜŒJ\läÒ‡“,óÔrHfUŒî1ù㼞^4Ï.šk-=dà ÍUˆC·`yüâìYÞÚ¸ïvù"xVL\ÄÍÀ#eëä LÛ†{™Öø¶GaÑ~Âw‡I¾swZ?þƒ¸Óƒ˜H0Ü“`º||cÓÅ%ŠEf$zÀ‹(ƒÇ¨¨†H²¡Ê½Éή5<{/¢KëzPËbWºù¨Në67“Ô± â¨à(8‰oëp§`Eò–PpA¶EŸ ) ›ÂÚãæ‘?&Lt‡cÿ,pæyfžóùLt×p‡}9w£ù`Œ+)É©ŸwÈôd¤G?çNu¦‹Á‡ÁðO­.§MÏâ²}L$ÎÙ{Jïâ^XøÅ÷€ábêä pId2•ãZå¼z®ò.Hmrv*Ô™ÍeZÑòâIïwp–#‡ÙbÉ“ºÎÅõôøôðeÈ›×n>¥³5~(–Œª®/¸Rr»¹IÍôžÇÚâ©j0±Íx*fM20¦Ð«Ð*D˜Š ÖI߆¬7oîO޽㘣¢¡õ>›Ù F¸E¤ åö@¸RI²Å‹›y4áÈéK4œvå›;! Lˆ7Ю$¦»yÒú7áîôr8þ¼©¬–p šE€-«Xº— òöfFLŠ€î~d‘ÒY4‘)­n*. Ä&ê@‰Î¥-M§ÙBñÍÄÅm½PWpi`_ÁNÉÌ®ZÖ†Ekù®¶@}‰¥¥ÆÓÊD‘5.°/,–y³Ók¼J í–;x—Œä@6¸ÂˆÛ&CK M™µ'”—¬YP–ˆ¾¨ H7.ê5 b¢zP­z¾AÚÛŸ^’ÖÊ=ÐCØÐÌóA:j wÜ-îñ;Ýeψ€r£D±‡GšÆ8 „ZÑÕ–ÛÚ²ý$ì™7ç$-%³H=’˜d-5™U.“™ «m0–mVÇ.Áœ8û!ÿ1wÕ¥ÂÌÂ?’‹Ê79• Sr¸K5ËẨ€d¸(œÁǘ,~”úä–LQ)”*”&áÉ“ñ÷Ùò?}b‚èãÇO¸:ìJÔ¢`V;¾>j†T;œÜ›Á%j<ÈjzNcëÚMEÓÔŸÁ¹ö@a"Ü_ÓᥨáâÄ),|f>g‰0ƒC‘$[À~=ffög <˜.xbG¨žÄ¦çµÿª'Aég¥,»S)aïݨԟWñ¨œ Ü%V–?ìt®†4Iº-|†ä‰ö'D}…)àNëú6i …r±kÿí:®jÿgcÿ½’çÞ=K(eì±NyÈ\õÛ¬»!¿ jì\µÈtîÄ;|v\ycØö«ÖÕºœnµf§¤×!5¨Ûçð›1ß ¦à‡÷¢Z9"ý(Z<É÷øûrpÃ~Q³â÷ÀŠwÜ<®=mT5>ÿ™e슌=ïªåÑÓ& ÀØ¿$Ý¡C~àDþÄN¬ x¼Íüãñp¼Ó ƒáOÿÓ”þ‹3îäwè/à¯Ã£˜ãäó`ÚúDOÇ­ôƒúÉ4ˆÃ,ª-ú“0@}ØLQúnªÝ…kcTgGïì†Î­I§ß'?o¦½=pÚ³Ë^Û§Žäç•x¸NàA~rÿ¦ãýDCàPC}&ÿîO Ãä%¸ö'ý½Ò¾gËŸù´ø‡+ûE¿’ìWýve¿=Ño_I¾@¾ƒ…Û=‹ŠgIô,‡R˜þɤð ²Ý¿d¬^¶í½‚ éÑ‹åÈÎÈvJ,Q¬²pùØÖ Uøø(hJ¬ölPŒÔøã&@I¯¾n6*Þ]ú„èõ‡)\*-zvñ’¥_‹‚K^ÜöènK8mH!œ’¼.‚’Óß{ÃSÈÿöîNá¡®ÄùGK$ˆ;ƒDTŠRxaǯ ,ß_Õ½º:ÈüôÏìáëפ¿‰0œíðê*AT¡<ïÄa‘~{ôé$²µµ3„”H «=%3‘Ÿs!†€pœa·:S¼ ëÉ6V6~;„j8ΰZx TGÞï"“‡¹è1äÃHß…~µîO:ýïO¢#ÿœ,˜F²þgíbAÑÿœ’ãýoϽPÝ AÔ_Ñ"ÿ9ó3™N‘ÚÑ™zL êø zùÆ­SÇÚ ¯†—Cëá+÷çL0¤‘Ÿ§•#ÒËTñ£Ò ?©~É>¼€ÎGÇÇÊ¿b¿Õ Ööñ ޵úKô!Ý é±~Îôª?ø`‘q´3öát°ÖÕÁ€DuÛä=ð!+µúy³‚)õ¤´I¯¸Ý ÒÉ"Œ>“ïCÆÊQõ>zQù½êžÖŸÕž{/Èwý´é5.žþA~V_Ÿ6š?gàó¨[¤;;™“no‚Bû†þvkBoDáþ(Þ×sÁ?çMvPN$sßÌ3ùC,Õãýœêp€Ñ*,Eíž©-“zCþXTÏÎTyÒbàù’ÎqV†íOX¦T+PÉÙå†ûµœýDÅ~¿ý9ÃoßæZ:=~2íœ}¡~Ë•uð™Ð„B%|1p¾[.Ïy¥Ú<…Ñ“gE³œãâÁўŠL£¦l€.ô¸æ‰!‡ú­á¬PŸæùú)Ôª¥Åhˆ’¢ ±+‡Ø‹†Ø—C=;Ħ¼ Úv4HQRÒ)Süœûˆ¨4è„‚â”&ˆÃ§T¡Ÿç°°t¦#zÓÙó¦óÀûŸYVTP†bä¨?› @x6€Ÿ8#hðYAàÀ&(=t`“„ €8Áâu"üó)ê…˜ƒˆ"‰êÀj—»þtN0˜Ô¡S¥oÂÚÀSh:m–›ß¬t0ó†©4k‹œ¡-Jójl‡·a×Äœx×Ä?ÎŒoÚŸ…Ü©Þ$Y@ Ã89±ø¡4;vyoÝÙçžM?I‡ÜŸLy`ºQ­T­ÃÓ³?à"ÁdúvÚøƒ–H nõ°&݃ÎYøØy/yð )ô±aN±‹ ød•sê¹Û¼qâ4&ƒ~ðÑÇÔºŽd×ä&n­ñåsÂF[®<Þ$Ê=ûÛ´CÇÀé?s›@lçüâÙ³ÚëêùøÛÂzH ‘Œ;;£‰µÓýØ·vp¼3õ?ÁŒŒ=;‰ÉfA*–Àù ÃtÎzXÛäϳá?ÿÃzرþù+P¹gíïÒŸ=‡ÌŠZ7WSØç¸Â1ÚŸÞŒý³¸ß-ØuÞòÂJ%…Kìû9Cè«Vä'Ès¨„>,ïfX'—ÃtPGWAY‚éÓÍô€ä+&çi%'ÚUNÀÚ~æc ‚ †¤ÅúÀ»yÐäÅ´‰p0?Fnè/¬¸x…Ü4 ë%£p=EaQb®C*EÇ’t$ª‰”D)3Ùê¯>d %Ð|u86ô•ú*>t b±Ð|96ô•:Žv¨8Ó<kÔ1a©®†Å•ܘ°ÆrØc}X®±s)³ÕpMHIƒ?5úÄàŽÜIî*ÁÝäàE%x19xI ^J^V‚—“ƒï*Áw“ƒï)Ácj·4c9w ’Š©@ÃK; Iám%üŒrµ]%üŒ’²‹JøEe—”ð3ÊÊ.+ác ‹Ï x…g›V\XOhHÁƈ&l8 ¢aƒ½MX>Åâ<°M- ƒ‡Û4±=J0Û:°”í.…¶{1œ%m€…áôSµK·´Ÿ0<ÈsºÍToflGÛIÛÕÇvãcƒ¾}k}cÀ ƒrL ^ ”¢® zèÎÛðbPd«o$ƉñFLã¥4BÒ¨p;˜7kˆÃ  µ}tZ¯=÷ª¯›ÕFý1ߌqdxJ#5%º§IèˆášÕóf˜ê(›H€{òÀR'q78‹»÷L[­í—¾ä„~býó?D©Ü„ÌÞ¤–ËM²`TB¤l¯üÖ¦Pp½èÎë¶`)’üõ?È_Øzâù'N~(郭;&Öº‘ù,›£Ef~Ûd–Gøô!i~ú-ý¤*¿Z(‘¸ô8ø .W=SÅ…|O¸ø™6.XEtZ#—}j+R4¿ÿsE –ßÿ¹Ú¡3úqéÞA\ú™RVt6¦Ë'bܯ½¿ažä'ùüw¾{»4’÷ÿv Ų­â¿ìrÑìÿ­ây¸µ”'c ûöË!ù0ópk;cmY‡ÃÑçqÿòýÔÊ’±Ù!ugÛ)ØeËz¹ór8i}ZÖ¯“A÷òƒ»ïZ•¦õ¹Ý¶ŽN›ÖÀÇ׿GO€J… 5HeB4“‰?þèwwˆ;x5|X¤÷Û7`–Ц…7z»…6€K›NÁ5R“<;ÚbŒïáͨ&Ôïõ;hÚš·Zcß"ÓñëþLˆ†v­éûÖ”ü-Ö««áŸýÁ%¨GÝ>DšˆwíÑ­[–½£°6c…OØm_“Ú '&€]"Pmµ‡}ܨĬ t˜ö;~ž„èOp 2a²˜=™'’hçªÕ¿öÇ #ˉ2B$¡;ÅþñbÑ\2JÝaçwry¡=„³?‰ÿغnŤߺš„‚ÇÂb6xh¾¨[ç§Ïš¯*ªE~Ÿ5N¯U¬§ϪU¹h¾8mX•ú‘uxZo6jO/š§sëÿý¿Ê9 ¿¹ ^XËêXÕ×gêù¹E"ÔNÎŽk„ ¡Û¨ÔÁt$oÕê‡ÇGµúó¼E¨XuREk'µ& Ö<ÍCr@(Ó:}fT‡/Ègåií¸ÖüzVkÖ!¹gÀ uVi4k‡Ç•†uvÑ š&RƒlÕÎ+µ“êÑŽE˜ [Õß«õ¦uþv½…l’ÿ¥\>­+O‘&CryTkT›ð×!‘aî8oŸUkð£úºJrRiü‘gdÏ«ÿyAO vT9©<'yËÎ )ËFõø%r8¿xzÞ¬5/šUëùééÑ9"äÏ«ßk‡ÕóGÖñé9 ì⼚'‰4+˜<¡B¤E¼Éï§ç5”[ ¬|gM„ÕB/N_Áf+$öÊø´Žy&2‚ÍBäE·^½¨÷ˆ¥VYœé6š’¤JäÙ2kÕ«ÏkÏ«õÃ*øž¡WµójŽ”XíÔhʯ*`/0ûPV„7úS¨ºy,Q«ö̪ý^æY`RÎk¬Îœ>Jç‡/˜ô¡<ÌHWv‰ò&] ný¡ìDïi7âØªÌó[^íüôp?Ãá÷²£OšzOL ´•èE„•Z9Ã~$‡+‹áv¥p$à„èc÷È@Žï.Ú¸W’Ó~pšF³SøÔRø’<Û¥$Ϙ˜˜§NAÈS·œ²»'„ì%…ìI!{jÈöØo}@‘Éyv¢y¶­¿ÿ¶ø‡›ÇVI ™Ä\k_`®ÕI é‹!#Ù%,òÙNâ³-òÙNâ³-òÙNâ³-òÙŽásE…í§-lWSØIå{ë"}œ¢WWpç+«Ž“²(†L¢Ùµ*?)u_LÝOJ½gßq*Dj†˜ä*;J&ÂùJûŒo¤'(%—Z§G?þ>Ý$N Ò°#DëÄ8ÎÊÎ:RJW}‰™HŠKr7Ò-&¸(ò¸qþñrFÇ´Þ$U*I:mAæÝ¤¤ÛY¨ÞìEE£i $"ª¸TìÂŒN%±«ØKßUˆÝORËm‹©ÏQ9R—z…Ͷ“e“Ø@º=1Ívê45ŠÃ^’`“E²:¨S'¥™¨p·{kÓóÚÅwL«¥žE1d’¬Ze1dŒàhíi¥ÖÍE)&¶ûöîbu»ôÏÀR(Ö³[V»¸pûHTŠc†x꙾n—çœ`$ÖõDÍqa &÷M k–ɽZR>“ÕИò^’"²Há/4—êÆÑŒJ³z ºJ­hn¢jÿpËê)æÖC‘NT×,¤d…[y 3ä³mç Ððe± 2_”u4<øw‘u4<&X^Gìö óíHšbfÉëcNÔÉ:£N¥¨S9ê´uÚ‹Y¤Ó©‹:5I§Æè†cÝ0¤ëÚ´‡V¿ˆŽž®Úî'(Å‹Ö1]Ói#Â_qG›®§­Œ·®xñóÏôÚ¾«!De§öÒ2¡8io‹QèÈØ³o_ôìrp|¯:4A8Á7pe¬IÌ€FÛ•ægñ£+²Ý?zü¬Å”kDN×öÈ%?1¤¸ý«Ã™œÔ5êÖ«<•ãÛ=©I–›n?öS‹"Iûº££Ÿ@ç¢ <CÌ®Ôz„¶Ø&Úb02f͇ÌûÎ^ZUõ d¾¿³œÒTV¦î‹c°Ê cn ~Qä©Ðµ-(Lo `æykq–“9ti™Ë‡æÐ¥e˜ì'åâ9‘©èÎqIA²QŠO¦îÿyÕøéB‘ZéhíÒÙgµã*è(\-°eùpÇ9å·ÔOáÒH’Ì[[Wy`çs£(q½”Fß~‚7@òÄ©‡Æ1½,¤³ÁXè “©u3˜ô/~ך¼ާVuй?ñáš„&ÜæôÆ)•ñ–ƒ·ƒ<®øÃÓÛþøºçØúÕ uémºÎÙŽQ8D ‹Ð$?<àƒ,É zU(”:® wr9èïÇÖÓZÓ;lþqVõêÕWǵzUŒ…‡Ý[B$+F«Ÿ½¨X[¢Kýâ$'ÒÁþttÂHO+õ—b<¼)9Îa½Ù8ãàªþ ~jÏkÍüâ™9Éi?oTÎ^ˆqðà‡ä8ǧ¯ª 1Úf%Ç9kÔêM) ðgŨJqÔ—çü¬r(•=¢«’ã\œÉùaÛ*Iq^£üÅH°ca%'ôê´q$ÕK誒£à¶ޗܧͺ”P¥ùf:ÉnXÖFžüÎq-RßüÀ‡j”‘~ ðé~¡øi;¡:i›°0isJ%-?ùùØ '´[³›…d ÈEÓ€^(Lm´¢ráArD™ˆHäË#’@r_&uæìTh×­þÇˆÖøR$è•2Äùã›w‚6hßMôáo“iwx3¥[Eþ”^·”=>$À1aörJ†c'^1KÐQZÆxÏŸî°Ëí»¾÷´š6poì=k¨ù@ЧAŸH–ËNúÿë{Y¸R'÷}ðÑ0G"÷አÇM(¯_ðžþ»hååÕ“—.‘¤?ΞUjÇ”@îÀºßÅú4ꬦ¢F”¯}aã’ŸÄû?áËëúÓÛÝš|ÿgÁ-–wÕû?KNÙÜÿ¹Šgy÷ •ÅÚ¶¬S^“H£ô/o®ZcÒîFc2ëÙ]Þ¹Ìr’½+Ô\j® 5ׄškBÍ5¡K¿&t#ÐðžN¢ #(W]ÒÊ}ÒÍ‘FÕƒ) ´>?T™3aðÃ~×;ˆ WÈб£ 7ÑCÃ&³¦IpÓ"ñ«×ž{D§ ï¢ùl´4Q7è’¦M”I˜v‘®˜é•ð(™HºðŽè˜™{l2C£'jå#~{éw¤ÎÔÿ.7;ïo—Æ ý¯\*–TýÏq£ÿ­âá7÷B³z^¿ð^‹Ž¡ËruD¬PDC\/“/”Œ–h´D£%-Ñh‰w«%’á†Þß]ÝLà×77ˆ†\Ï¡FÕ;y*¬›O]êÅa¸=%Üþ.9ÿÉbð8º  S†A\TmÉ@hÁ¥ôŸ¬áˆö-$—|ì$qëêós‘:Xʃº+øÚ¡Ëê)Ö¯ö¼~JZA…Š3â­‰[}ݬ֡³±´q©·&ÞÉÅq³ûiúx·&*T­ãªWŒzkâŸÖI‹mF„ļŸ‘‡ÑÄÆUn)á¬&GëXÍiÈaj¤³ðH/Cê¶–™À[Ÿ´¿J³*ÉCŒñÖ8"Þ;¬œ5Iÿä=oœ^œI$¢ÞrôH6äè™ P‘zѨg`"Fê¹wÝîÀäÇ:ó²°F$1îZø^gx=ê_ùÞ¨5Å& ¡é®2îyàþ8™xMÇ7 ÏÂyí›^Ϻ5âÇà“™DÞi2<˽±/'K0†ÑV÷ßDoñ`:1 'É4òV4üO ý‰ßwÞ/NVéʈæâ'q™!JÏñ§€H¦€6P‹6±¬Ú ›3óÖ"Ê`']Q ÜäjuAï£#[dûöåø†Áì "}íI^Â3sþOªrÿÓíV’çÿ¶Kfý‘ýŸò®™ÿ¯âçÿ8œ*+Üm¹k¬R™U³ `VÌ*€Yø.W‚E€_'Ó.éÊwÞ?I¿ûIÂT;˜å<÷jÒÌØÊÚ¿þZÈI!4T a+!N›OS+„p"!ªJW¡Lµ!D1ºÑIŸÀ(RóZ“~‡Žr0¶UñMÉUý”Ô@9W¥Š‡`˜¾Îºèˆ@ê§'•&‘}ðØ’÷ÓÊÑYEœb;r6OÉÄ4ðvoXbeïê9™P þ%Ù›dмCï²ìý”Ôí—ñ]Ù›t=¤ò…Ï^4¶ÈÚ¾šï§ Á×.ȱI'ø\ˆmÛ çgqÛQ‰7ΡÚtªò‡„âªâœûˆz…Ô0»¨ñ&ô_ÑÅ,»¤÷®4P¬vÒ†h¾hT+X7í]œ¸P0©juHcƒMUÜ]XYåÕ gbÜ9›Ë©\SE0Øx Wã IÁª‡Þ¿Î¢uR ®Ê9IÁ•9wF0»ì‘!F©«Ú`ÇU¨³™ @Þ¡c¢“ÄËa¯çô’;³)â_¸EL}ɯko2|¤:ùÄé 8á$©­×I8"\ e˜ß‚"*ò£°nÁt2P“ ˜°“éúÞ`rÓæPRx`ÝÄc}(ãbÂí±\ë?ópÏʨ›õ¼óæÑ¡çá!*ã«Z݅Α¹ÀŒ¹5¾œäÓ:açQÏlŽwåÁäX˜jð)¹”:MàÀÿ9"“hàH IÔ!2è変 £hYN<¯ëw®&#¿“í^]‘IÅp<ÍqvÓGì_óˆbfó”@\ñ¢qqR!s,^#› ^’…DœbY6I(Z¥&Ÿ‰ªú)¦.ID†£GQ''âÖöß·>ö‡H–äcñ#V™Ñs¾`Œsd‰±( @ö>Ï`*ˆ£ä£9"TY?›2NõºÕ™¤ ûœÌ9ÒÜ4 Q¥ þ¯ÖÇVÚLúã«”A7íÏ´>Õ‚µV5ÈØ“ø>´|ê°Ó‘úu¤þѯ_³Îñiå¼ì¡dÑS.!º¤E¢óBÓS¨žT•‘¡>æóFõÌŠ ±~á‘¡ú:&"+^}äU~¯$¤ …#ªjã8!"½>bãâé ¡"ä2Bã ûµ£ê³Êű´õ‚µêˆÆ¦4“ñ–&¼Òê±C,hŒ/ñ+¯*Eê¥,Üâ¸HÉÀÜ?)þt˜pÙ¯UŠÂ"3%üÑ£VDŽ6+B° !EQV€YÏŽúWT0¨7À($‚üÖñ­Q‹®¬óNXå-$– 3ˆ‘!"ϵ†j(yAWÙ²ð‡?ILË„•øH‚jp–A­˜í*¡vÌ™SFVÛ7½€Ux¡€E%»rVÑFXSÕÙ E8iM'<ˆvŒÞtè]އ7#opsÝæ{ :aã&e"'xNº(Ñ-ò}s­/A`‚(ã~‹DÒ¤æw[€§Ìeu‰éYÈî $žçÔò¨iæòLã$[¼XPÞ°‡šÅVåØçMX¬O  Ò ÷ÃüI§5ò­“VÇ:=·^?|¶³S|xÙéXÅÂŽ ½SûÊ¿fðTae·rvv\…¥Ý_~\Ùê*8ò8-§x'Y`rÿ¸«„¾ÞòöÙïž.§RŽ8µßÓú}…ké¢H`ÉûÖØa×…Œ]š}/Þ= „qÓ#}X¥áÁ–híQÚ,¡‹C€9‚¶Š¿Ô:Må-ìx=£;üs[ÞÐ<$ ùlH¾EC!¾2LYB 3Å•÷„Çþà‘ÜáÂ1µ:=2œ7+0nXÿGWÖH`+WÈÅ°Ž ¶&þ³áUWüaŠ‚M«kõ®ZTÌê ¢G\AäîÏHDºÐ#² ‚ÀÆ¿÷ìôøÈ{QkTžWêï%ˆ_’|—ßB%?!&@Jì¨I÷ÌéN*Gk^4^ÖÎ_x•ÿª6B+Œ)€ø¦®%€ptj‹ç‚`ã$cM#ÍBÁ:oŒ¨3Q.N*¯I89¨à•ÇÁf¼‰ó¼ÚT‚Ÿ#úÅ b»P0dzÿø‰u1èÃØuPød÷z`{†³1™†ûÚ²pÏhf1\Ž–=G]Àœ7)ê³Æ)‹›ï“Ø4!Û"5àe¿KŠÜ<¢F#;ï´ûŸ³öyê{W¤íQ4ñøçÙ!™Ç)ÏU.좲¤¿‡Ð }I&¸ËËWKCtYŽÎtº> %õ$èþ&E‰¾{Äöîx¥µ©­ßý–!*É£ˆckð¹ƒ=•ÆcJf]QÿõÇCo8ö†ßÓ‡àz8Ž ÁRõ‚Dh®NÈTúM<ÎŽnLZ–´ÛŸÝ‚p•Ñèê3™ÑMYå$`'!/'K·Às:„Ò—T£ Û—ófPC o]·;°h „øoÐñoYôÜ+q1ßÂÕeqÓŸ>×­OœŽÆ³?Ðxf·ú°ûðôè=]ú|yYp#c[.Z4'D"P ç¤ðƒžÐ ¤PÑê^8&fm!È#Uò0vy0v±èâ8£Y”i’“˜¬äÅïéPN¬u ìR$W7­ž\Õò—̦ cL¼ögÔÁÔ‹+¡¼¶§°ZpDƒÌ™ˆŒüñôs°¯Ò¶Ëƶ„-zÌCRý õ‹œŽ+qÔ‰,(*&p¦d耒U¢Dšû¤í o¦¢tO¤ÁE!ðžÝºò{Sn"„ÝÔ{¿ÕÕ´ 4Ò•G$ï`Æò§ßõÆ>ì]2“EÛX{åè.¦šNx F7&ÄGâÛžÖÁ—ºlÅ2ñ%R„nSõÚ’\41°äÀÎWL><¦y‘HÎ"‘ÜE"‰TZ$Ry‘H»‹DÚ[$ÒþB…[X(ÖBuÂ^¨|í… Ø^¨„íyа˜óGLæÜQŽçŒâ:s§B¢Ì• µÎ¡ùjÎ/sF8¬Ï·s‡#¾ç îÍÃÿá™í”æiVOkÏç©ãÏŸÚ{· .}hą̀J9Ôu0/l;‘x¡×ÌÈN|dgfd7>²;3r1>rqfäR|äÒÌÈåøÈ噑wã#ïÎŒ¼yofäýøÈû³+I!¾’fǶãcÏ®c¶{v=±‹ñ±gW»{vM}ù¸Ø±UE:ÄCŽ ^ јé€.z%G=Žzœ‡-}TôJŽ—*zÅE m3"Q©WRÄæ«ØˆÍWI_6b#¾l$E<¬ÇF<¬ÇE”Ž{‘#‚W\4¿b¢WR4OŸ?ê‘ÚˆÔ+." ƒ1Œ‚W\46ê¢1¯\ÜHyQ?ª>ÃhY1Ý'€UÜ?‡ã׌]ÄmžÂY;°&.(ïF‚Ba©;lïá:òÞUÎ^·>mÃbiÎÚ²Ü,¬ylãÞ̰'¹¨ÙÌ+'Z¾Ä+%,ѨIAo@6bBàʼn ×@`ˆè*ºxç<Řx†(Å„ÀË0D9&^Õ#|áb ±"4’Û —. Àâdúšg׎“)ܧ@…'S¼C¸t…o=M¼b#¶Ä½ÏŽJÖÌÏ›G3€ÔD¶N†¤-ðUU¼èa”‡õ Þ4ÅJ oR—i(ÍPíœ62z/tغé÷ãǺÝó TèICOÿhVCRY‘Ú¨º¶– |Q­1~£TäüÀ•ñ„PlÙ‘-+»E¿%¥»§ˆ‰«¾@èW|DHê²6¡ò6#'óEº)ð"ç4{eõÊIU))ñ¡¥ÆnÉÑì´‰¦„ë±#¬=yX¥F†i‘:‹!#Km[VNˆ­“Jåú†#¯$’4GDD¹§éÆ­6fi„H"ÇÕgM¯rô¯‹ó&îN†õ‡.oN4ihH³l9t¢ÍÈï•ãÚŠ°Qõç³ò ®SƱP™?@LJÑ„kê(ú^VÞ£)iV÷³Ú¨©öPŸþ¹Ó¥OK¬¢B ñ;*'!‘7çÍê™÷´røR,¹ü@Ì1ôzÐéM¦þÈk·:huÏÓrƒ7ù7ÈÅT|¥ãšMXáy§:Šr¨öaú¦'l†%‘@øƒJ'&%=™Z}'áÎ[lÅtÈVca“.K¤’ÏÒ®IÇ’Ø…É’(a¶O—DLÐÛx‰I]1%&ïØÑî9‰T@‡öt1¤²Aˆ­³Æ)Ñ.š`/Œ¹…ÁYÌ®Ð{êw¤„ÀÚ¡Ù É"/t3I,“p#*+„ˆ'(–2dبf$®UYãÇMÔoŸ’‰OuÉÛ§‚dtÐònŸ ½@-!¢ã/#B&>ÔÏoŸ ’‰OµïÛ§‚dâSÁÍíSA2 u f#K¨c@&>œÑÜ>$Ÿ ÎoŸ ’‰O'V·OÉħòzIɼž‘N ¤ß* ¢é˜Qõ¢µ0À{Qˆ˜´aÓŸnïkT>” «‰)Ÿ¶*ì…G©Àº9X`ññöÀ´xfÀ;@óLs:Q£Ù XQ‚s_5VÐA@ ÙªÇÀ¼ &ás‘ü9µË8jº|Pf# a~ôÔIÙ¢—Ž)¥0%4TŠÌk<°òFd2µ„rÖ€’á”üAЯ[s“2UídoU‰ë‹dé©KU}:& qÚ$â;3ð7WW©S™Aσ…Õ¥ÕLÁSK=^$è¯1! °Åƒ^ÿÒµÆDùÇSƒÕc1عìVì£,`RL-;L;@9ëì–w£`>ݨ>ÓD ô šÕ³j¥© o£¡q4…êÅ΃¸ƒ ƒTãÁ4* Pm4NÞIõü¼ò\Ä|ã³_ˆ5d cñ@9§H"Ï1="z×OëÕ¸Õp‘R*\hÃjÎÔ'ч¥§Ø(t³3¨ýú«ºì™p´¾BN“`<9Íqû 9M‚ñäÄ#öõä4 Î 'Ÿ¡¯Ó$ONs¤¾Žœœ`<9Íñú 9M‚ñä4'í+ä4 RrBíβ“ݵ=ž)¨ëÒ•š¤t©ÄPª&SbiÅ“ gx(ý¥J¢šHâðEõð%]Á­5ÿðNŸ±5\•”TB«¼~Zk*™J—)‰«þ5Ý$ÒÒ>­gYQÁù)ä'_©âÎ9¼²ùéù;}öLKD ñËcëÿbˆ‰M”úÎ)D,ö;—›óˆ8KwHœ¥=&ÎJyPœöœ8Ko•'´¨6†êõ£…”«œëmæì¹»8{‚zõç«=© Xí¾~‘Ë?éŒ:sÄÝq½úó¤ˆÄûÇãéÏÇ‹¯¾ÿŸ½¯mkãH½_ï˜äÞe%,0`;Ù5ƾd[' XI8ñÚ>s„4ØJ@R$aÃÚÜß~«ªßªßfF€³ÙsVO‚¥™îêêêêêªêêjåO;Ç;Ÿ=H 6ˆÊÚÚⓃJ –€ó@¢‚€ÞFç&ñ÷ßÓãç0Õv_¶=8%œz-yûwøÿy @kovëûé‹ttÜ–†)@=’ „@Œ€Ùkì6„t-(ô½3º8ƒ¡TìèßM¼óƒóèó.—Î?™ˆ­˜¿Hl>m~Ê®î‹.A’´Q6²óW æÉZòöiîœ0m[ȳu æ°ÙÉÓIz‰Yœ¼ðŒâã€éäÙcÑ}>6’—ßÌ^tJ€Yê3#Yù?kÉÿ‰¸T‡Ä°ÁHN~óø>ßÅ Ñ×óÔ”ÆÞkäãgÏj+Ïj÷žÕ>jç×¹â”òîÓâ×ñài†®½ÖÞÎko{ 0e.<1ØQÉÙoû—¹|}¸ SõA„¯7_æù9}Ùøy3DqõåË—ù@„¤Pñ€]¯Š.þ_è0Øÿ}rù´¨›júÀZCɃ¤ Ñ¢·»ÌÄíÁ8 ¨ø3œ6Œƒ¯ÒWÝ:»DÆšŒIo–P±Š’ÖmÊÁ€ý9ŠÒ“)’TE|1Õ¡L>/^¨#úR^³½{|ð|¿ñ3º+Ž#àý§‚÷Ÿž“UÈLAŽ|i<‡UµÙ1ÊN./Mô»Oç¿ \>q:ƒ.@Ò¥ˆsVpŠÚSV¨rá…ñC{ ï5ŽäøyËðÁÚx×Ñð|r–aJqKf<¹§uxÔ±àÉ•æY ¯½WÒ¯œˆvòGä‡ÿ†ïGã©w*…àQHtzÜ¢PhW»û‡³øÚƒB/¦l8 «ˆ&לÏÏž…5 DTƯ´¾³Ón¼â@äBó¹6ºÆ„JŸ×ñKšH)ýß/7÷+o7ª÷k÷ßnTª÷¡£!x{M`7°¢º¸3ˆv x/›¤^óeÖ‰íÞ—“°+O‹àÃÖþëÀ‚c­8èŒû÷ÛaDŒö½Žp>ï5(¥íD`kÁ¤.ŸVÅß 0˜¿ 3xè|j-!ê¬:½Ï£ëgÛ•gñKõY|’ G"‘[ÿ¬7›I*Ô8îdɘN@AlGáÔVVŸÓoþ3 ºªÁK•×`qÃN-B9xû eó~._Ó›L…eÃSÆK¬æÞá1º³DUPaMmm¯ "ë«]í½ÛÆßÂ)u}b~êMG2‰Ÿ×àOõ6ÇVhWº¿çö\,aoj«µ0ýJ»±&c½…#Òé6ö˜¶§Íb¨Ç½•ê=5ö¸‘ÁŽœaŽÃáé#*:…ÑFz³Ã¹hKìÁ+§Ÿ+ÏÅÇÝò×¥ƒž¿œÒÝæ|3VZøµÚäZÓÕÄJc) !8l³Ò ð¶1zä%)4Ëœ®Ê‰²¤E}ß½tMí¡Õ»èá•L°WÔ×'ÛÉêÆú:&ÍTžÒ“uÚ¯…Õã¼w†¹±/¦#~ë°}àúðò?î@6;Î5~ŸÕ X±Ž0k'®Ï›/ lÕ†#Ìš =äsÏʵQ=P:r)ÄyD´êq!J Â÷„£z»Óh—…±êž%n—À’H¬ºg µNÜ£ð ͇ð 4 `ãr VÝS‰8È#²/”Î:=|Õðý@‚?DIX"º/KAðÇBîtð³ú$lÁ í6<¿ßêf`,0™÷ó&ÁœFA Œ ¸tñ(ÇOͽ†œå«›þX<¯7÷±­ó ný=,6)ûäûl”Mó8]©nõö‹cÊ žûY}°ž°* µÑÚÓ§ÞÇãÜ»+Á¨®<¾çN@ð).o‘Ý}ùÛX÷)¦ 0jlˆÍáó\`Áç~§ÁåCð¹ß ÍäŸûa¯ ƒàs¿X~è¬müQò/íÜ, üÕ‡ I1-Ç "§çZS‚àž½Ž@©s/ øeÌ%¡×©9Ý&õÎá €às4‡q÷Ø 2àízT’&JFh>GÅ!È™ìÐÁç(KµÓÕ£c§®ÙH›LÝ— ?LA@ð9ŠóäOMˤ ü ¡Ù²í¨>OšµMøp…ç4ÁçI%;­}…Ô¹=Ø@¬ ³(U¯‚|Žr‚1c ­ {g 1 ñ]áÂÜO vå{sd¥ 0îïÿݗõ–8 †ƒï>¥\c.waþÜS «Î$ü8A‘Pqzü¹‡t8µßYãÐ+Bç%ª¼ „Ž$ô!øsO ÌŽ*@ðçžâ¹Ðþk‚?÷D›ÆOŽÆzºI Êãú‚?÷4%¥S%wy…,Ì“•kô.±.Ä Ä8JHòºààóƒ¢d)ÁçðW‚0 øü`ä )†Ñ@oWXUC>?¸’4@ðùÁqdI\âtðù!ê svP$„MŸZ˜×ÔÍÛÝcº6%ŠC@šKÚ ‡& ºÐÆ‹€—æ¶‹=:š›¾ŒÒèéaLŒ®~Õ B™i† $LY>%I¦½e1ì4[ug9”4UPi‹¼+,B@ÓRæÍpÅ—‡;ÿÖ¬'mBXÚ“„)I ÁŸÝûMÐ*Ú¯•¹iL¿@¬I²úhy…ðŠ¶³nOÌÇÉüÃO|®ŠhKNí¾l7ê¨|ÀJ&läÝÃcßD[mCÜ?¼±ì$Kfç½³3Ì6õ¡7Jvš¤Ww;À]q§b…S¯$M"~¸HN­Õ=p?xî5T´2­%C™¡2$ÿVlô|M1 ޢƼ¾«³Ùïö&ó‹iÖfYk<È:öµt—ª §ïêÞ}«ÁIö^¥“ÎFõ³Íôq´Ô¨–ö? Ï3|RÔþ æü…¯C¥D2¥°Á›û0tš½ÇuJü ÈɦYŠ/ft`Lgê÷°#ô0tY>XaÝZQýâךëlÄV’ÐØxz•NÇ㹸é¡/Ѝ7ɯÜÅ×tëºèŠ*CïæÓåèñxªÛ®‹Œ?¸ ª6ßóf›Îál”( ŠMÍew»/ë6þ¥¨I7ï’<‚BŒ {Bz\j¡ z›;~¿?ŒèdrŸ˜{-Ì“”†Xf2GiÓŽÃà‘](úRñaªÊíl’õæm<,ΪÓieqKÅO½éˆn¦`'“ûæü©¼]ÉÜ—g7SÜ. —·ýÇÇ qâÆ‡¤¥ ÀZǺ¤Ü¾·ÍG߇h?éͧôäâô&þg1úãós˜n癸ey|šìì\œVðÈélU­ŠYâܦLÒD|˜Éð oí8Uˆ¾3˜§¬ þNf“^¯)š&“@šß[¦Šžïn=&œ '³$q„×0wEˆ*FaöÇ´WŽ7Š$F A‚LàAÃû“ÕÖù}ý ƒå‡ƒUoj¢±ëÈú¿nù€h´Å®0¹}îct%°MÐù$Í.'41xi'îgc:tKÅ@Å…¬«lf'#Á¢a‘B.•‚p+Ñq:@Tºmª²±ú`ÃåZepËí<¥³Û[ºÝ Þb®˜€­º¯*\g8C9Vk@+ý_ÓÉx’že³35ÑŰŠÜ©`±¥Äõ+V±­%W чI%vð g¬<{%_Ú§fòè‚ZxØ ‰ ˈ«EøGdMg³Ä$ÆæÎ‡ÿƒ?‘—Tä©nq¢QÜã¾zޛЬ½Qÿƒ:õàÞI£`eŒEL ™CaöAUnö1W#%2\€NT6«ò%œ³”˜ÍÀ 8ºÓE„ï?¯É¯°êÔ’J§qÐL«èzƒWfMÇ[Ó¤tp>1ÆqêˆBt,|Í¢0`܃át &Vêtí¾Le°*ë#²Ëí1ÞvëÊE ^X¡[‘ç©Ttœ›ë֛ВñnKKÇÞ,Ù9Hf¿'ظfš@OVàg ï"²VAÑA®HžÂÚô(e\En°…¦J(ÖrFг¼\ÕãrΧ3‡d;©w™ ILÌ)éJAÑŽ~EråÂ[•WD!!Qå-£ri]ÅÄ gþÐ6•ö”©™ü¢ý|%1¿·Â×,Ò‘´´Ë.ZL’ ¬DufKߣS«øWœñiš‰ 4-¹U$`Ò”¿†¹ÉBØ[.NmaÊ¥°Áa1ëÉYiRK¥ñ¾¸äF\ŠÞáú1S9{Šrñ³iЗٛw,!ÐýS³R}œ ²É4Î)(—tur<Ë\ø•êZ,uPɼAd‹§*¹ ÝrZñAA*V£x»PúLƒÚiŠxëî+-99ͯ fÒÉBÕu?FÙ']œxu%” EpXüMªoÔòP×ùo´Ù‹!g•ì‘YY,¾˜‡ºT–·\=1ÐQYSÞ׸Œ“ sÉ…› {}fs`D`ÍÈc!çÐCJ.€hþ4Ý:Îåiv*Û¿›æ y’•‚Á+ ëõ?:¡Æ… :¥kcÝ}j(½°ó53‰mñ…R+J"j¸ˆM`(JÔ”î”[U–¾˜a(Aw7ÙÊÀy|2GÑâuSíý.Áý•½Fˆq“ƒbý¿À¨Œ‰±Ä,QHaîü>)ñ¥(dåµL¥b§ÆÌ­Ïŵ‚ M•"¦è±áá_9H\µÒ€dtMyžãÉ9Êa3,–Q²çÕWBž? zË7èô ½n6ï ”:6±¼#iäl~Zdf%©U³½°c/±ddÙ<˜›¥€–  YŸT)‡s5#ŠX|Å´Ž˜”GûÓ¥îÚ×lçϪxî^5©ôƒÐŒŠ ËÉëŸ\'ƒ›Ï7 ¸rÌÙr“‹”ðT¸ú)}\ªu¶BÜrêZáÓrØLzx'Ë ›Ì?ˆå W³š —Q £!ùrÄÎ`z1í@]³àí8 eÌb/ucvÜ_4D»ÂaSa\÷Q“+]Ù—²[UÐa‰îÅ4íOÎ.føÿÒµö>Ši @·ê)Îý_ÿ’Ÿ_~[ÝXûþþùxpq–Íî#YÈóx6í߇uÝÀkýÛµ±¾¾þýÇ þûÃ÷èßõMñ{}ýá£õdãÁƒ­oüðpãA²¾¹±ñÃÿ•¬ßMó?h¯*ŸÎ€AÇDÊA±ÓÓ8Ô™õDÿû/ò¹¿r'Ÿ%òÓ fIVæÁ®r2Ÿ O¦½éUuénÇ0®Õ¥d%ÙÕó¹Ò¯&›Àe<ý}’ü¸öãxÖûuœ$Of£Áû_üõARï&W''ÉÞa7eôÏ/“§¥~v–Œ‰ö1¬Ás|ÕÎpóe:<¹ =OÜÕ™‡‡{gã‹i?£'¸>½Â]£óY-A'nÐHW'BÉ6<ö{ÂÁÕ›f L¾èéùqˆ!BsXŒáFàÕ[¸z‚ü iåG(XùÇø}cÍAB*$N(¡ElÚtÀ¡öNÆñ•$Ám“ñ|Ø!=».¡ 0cš¥îÙ8A£ý³Þð<›"’MhQD!ý\r_—DôRBŒû¸ ÔSƒvÀ{Ü6›gÓaïlfO†€y7t_6;Içðy÷§z»‘À÷£öá«&¦ƒÜy /Iý¸‹©.ê­½„Nù4wŽ»˜:á¿þ«Þòþ3¾".k½N?µNšGûxÔà¶ë­n³Ñ©%ÍÖîþ1FzÖ€’`’ ŠE„bÝÃ6‡€üšÉáóä ÑÞ} ?ë;Íýf÷5!ô¼ÙmasÏAʘÞÜ=Þ¯·“£ãöÑa‡ a·öšÝýzó ±·–ÐpÒx…‡á:/1x˜uþ³z¹Ó q‡AQ3Ð˽f»±ÛÅî˜o»@3@n¿–Ð)üÒø¹=©·_×$ØNãoÇP^"´½úAT ¨²{ÜnÐá= Cçx§Ómv»äÅáá^AøN£ýª¹Ûèl%û‡"Øq§QƒFºuj µà5|ß9î4‰n” }L1³Uôòð'Œ’NvëP{h|Ø¢>0¸à"=hjÉO/ð¼$%ªÕ‘"?Bc%¡U g—u6i5^ìÓU% |{ˆ€~jvU±&f«F¨ØòOõ×ÔÇcê>Žà&¾2֭ш&ÍçI}ïU‘—…1'QSòÌás„Ô9Þ})©³ÓH Gý³ *ßl'ríÃwK¾"ö„®ž?G%\„¡Ò•,æ~×f 4/¿æBZ*0 „ê¶ô™V!:iz 9Õè˜KæB¡©°¤"ÃÝôÃj$z너Þ¶ïÂl9H[ud ¬¦”uõ]`ÑÎÒ %W߉«8ê v.N߈rX 9^VheUÖ.G jM“ŠÙie7),éèÄl¨£â½šÌ(ÔÔÝŠˆ£X¯Òn{¢*N¡¤W½<§m<*z/Ù¨nQIbFÑfíF÷¸ÝªLå›Ëóì¼?¹Â(e@ïÄϧoàû; 9©®Ëç‚v9y ÿgg³L=DøDSÙcdˆ¥Ù§Þ$áÍvÂÙØ«%âˉè-þHh{¿­­ô¶àür_Npøtï[t£PnIE*wÛŠùTÀœ!ÕZxUcOö+ÎF«Oû½I+jâq:cIkø6Û’èü+ œ\œòX~[¹‡pÄËk¢‹…ñI9ŒOþ©›QÙ´Ÿ–T„KÚ *òa2بé0™Á¦äW@x°¡ïÄm¶è¬Kƒ®r¬£¨Ä€7ã﫜±ÂE¶§}Ö$‚ŸD[\EäH(y~‹Þr~·•Ks1ÃÉÙ•!ŠðgŸrœË3’FÑ)yÃù>`” ’ª:^†De”ª'Ã9ÊÔá,ÍÎ'ó«ÊÎpÞÉæmt'3#g†Ø†VU†Àë[ÉD|RŃ !Ìàñ½{UFü“Ù›á;¼dØê£à%ù{ƒ’V<¡¼×Ø9~@·)/ÎcÖ’QoDø°·DÈC‡!deGê]@ÏbT“ѽ{¶£-æ]pצ˜H"Lã£Ar]œÖŒoH:ùž° K…w‚õVŸNp¾“ dô³ýÞ“æÔxô@TD…ªƒŠ9©Bª[JQ9Þ±MXm©‡ù§0ôÖEºcƒ‹ŽX<‹a†—8 ¦)Ú‚FÇø°ÏöáÆâ+—^º“#Š¢Ûæ©Õõñ©yU]I45¼e {¨Lèµhzõ©È¸+;©ºäPÏ/P~Âó‰G¾ª¹=Î wܰ‡œ‘¥é`Þ¼aÝ|·&ˆEÅ—­œ¢"0ŠŽè$“ÅkB¸pÖ1îJg6‰Skl˜aXÓñ„.¶{Ä^I_à¥tÜÛÛ¨ÐkùÊãY6‰ù©ChL.}%‹‹þÌÄ1Í>*ðTàÑÁ¢»X²uqNÚ9 êŠÿ¸ Uˆ»æñåX_ µéx^#Uã}àuÅѦªÓìŒfEG|,lggÈ[„ÇµË RÅ‚!Ô¦=‰[»±OÛ>ydz'³bdê'3þ¤™úN§2"æ>€ ]|˜ìS jö ñ`¿«¤úXœI$D¢BðÐFdçç°ßE,¢ Ä).“1%×r‘zXŽD)jx2'›Š?ŠŽËC¼:ÙÜ(±qX&êÓžê²A“GmгÃ%šW¢Æ'‹(áò*™¡^#Alád \2¦UË:T5x£5›¡; ¡K'Ð$¥JD¯>¶ $K(S6,BuòõPþLÒ^è•eiuNù¸‹a0í×ìœaP'¤¡¨žŠQ"j ï Ô,ªbÎ2¢fÔhì¡}LùL1½úÏõÝne<‘×üVè+Zò»Ò}~°³Ù‚çân`ÿåƒV¸R+¬•6w«Öxⳬ?§‹9åáw‚d’*.¼Ò?D²[òg™O´’Åß+êÓK+ŽzŒE’Çx²!1n‚[É èU¿ GzÐÛÅZn±kßöP튾8Í*'B·(vV›²Ô¦[j3Tê[êA¨ÔC·ÔÃP©Gn©GN©ÑœR×ò_ùp‰õèfäAV-G",YŽLXÒ%U¸{Xr+)ÙŪ‹ˆ­­@Õ`¸Ž[…ó£F8Cl9ÊeŠðgí4*_d8-•¤}.G¥¹Óû˜ Rûˆ.` •I‹çwÕ|5ð¤ïCŒpH(÷2Þ‘ÑS˜j!Tªt^! Ó(iî‰Se1¸>åûkƒ%®5!ëI>œWèóü›Ê "ž2Uåà“¬ÑÚ«2—]à¨.ÔVètn¦ÝؽA3éÑq5æ™ ĦQ.`“hêÚ܉˜Z„[Ù…?Ñ%»„*r(àçé"!G66¶ý¦&ô.‘Yð9zðŽ;ØLµ&‰úPÂ=nᆪômTœœQàÝõ`µ"¹!$ôãxš–BÁhX QQlH»“Mi‰… ­E¨*JßÛææ¬b—<}TLüPÝ%ýX`š¬(Tѯ¢Ñ`{ƒ‹ÐÞ_ÿ"úçMț̎j} AÛ Q“=1Õr ÍV¼PËEŸÃ-Ò3Ù©Á Ò¢h ´+j;Ë"AZNr‚±Ð\ÑJ¤Ÿ’ùZÃZ?ÊQ¡¿½ó“!í`[ñ¼Ù¨¯ôyPZlÙ®Ljð?€ÀGlÑÈoöGÜxTû„OäF¡µ#%¶± YY¦®ì4_(@KÂõ‹ «íF„®úBÛÚ}øR¡ãŸÂ;Ái£Jàƒ™(¹A”ßפ܂ OÔžæV¢X%Ýlžo›VŒzŽm ¥H©ÀÌ.2«EXb"8 „« UUêîT ‡©z 4Ùbh¨.«÷’`Ö^­¤–|v½t'ZØ©u$ ¬ÂÌ=í} θ,Èáå8Lþˆw‰*Ö’ ÊŸqªOÍÝ—\÷öQ€e§åÝNHøG¦é¸»iiv÷%èßyžÚsóŸ6/ËOÈu£ç¥71‹gfxjÆX¹ ž¹œû{͹ÛL62f0Z‚Ô´O÷îÈMôsÚEwñ•öJA,VhÝW»Ù|qv–rQhâ”þßR9ó|Ò¤jQå€Ö¶H}oÿÇQ2F’{žHÅt4ØQ}â*\+Tá>ÌJ ¦ è½QÕ2AÁ’6¸ÓW™fµÈVŠB¢,Q¨,N ÁÄ–$¥4Ý"cš³ˆÑ>oYTcÁ;¹u ä›?ßûæÏ>ú‘ êU7í8Ÿ{Þ6q6šc‚^–§1°µ:”‘™”ëU|¥L¯¤iÈÍGë’ Ló¿‹·¤-’Bš};b9?•¤­KáO 7¬Í)€ÑO>Bec¡<´ŒÅ8М5õòº êäp %::Ec#eýêÜ‹4'˜Šó æ9 Í'NèÑW¥ë( Á&!ÂhÁ¢DÊéo½Ñœ®6µ&­±ýYG–—“€ô0,äxˆƒ+†Ô –Ýzëµå< Ÿˆ{@A†žÊ– ,ðE½µ'ïrË™»:vl¥t‹F¥ÿ«8èT:€5ÇÂ3 ɶ¨WÃÂ霾õeÛS€›ú óCÞq=È%¬*Ïw–CÝÔ’L}ÖrÀ²ÔèÓì4›féã¢+àŸ==][«~^¿¾¯â{· a-Ùʳ¼5þy¨l¨ñµG1@0‹˜r*Á3‡Œ\H²ÌÙT¹fö+G+DÝKó8Å¿µåF¸×Vÿê~öìÏŠØAä FFÀÑ*lF_Ðâ"ÄËÜY&O¨Ÿ"ÚÝì›Ø"Í™4l,´}QìÆºÉR95 å¿WH’žq ÍQgƒÁCy¦Øçû,¾º+(]U·ßl5tn3³¶…£½Ôw°ï¬a/S”ˆˆGÉFn3L¨È4Ô(Ükíì î"Ñîlˆ¾b›¬Ðs#u œLZéÊ÷z8rØŸüº#Z­Fä÷×ÃuADÃXóÌ"c3Äô¿¹Ê]ǯ!—À¨ȱB*Âck­.09óg¿#`Üv‹Û¹ AóETØÅfš?رòÀsÜô7vÀ]œ‘V+¬;"-ï”W^ºçåËí˜B\²czTÊ0ø×ˆ[ͼÙâ¦Æü‰¯ 9ìíIpÖ-8çrÚåbí¶–áçÛ°Z,XRÔi{¢°z_Ûâ\]ÿ¹bÞ"ö­dzR›k³±^8†wl2‡FjÑq*X< Ǩ ¾MÞÀò˜f˜?BAXqsmáÙ…R~”}»Óß÷ûÍr{³=>Çþ Y‘…‹~høïhä„òìu[&ÝÈÙ< $_qÿà_ÍòñÛßÞYNú?´¥'ûT± > òöàEÞ>\5º“ì'pOó!„ƒÿò}óŒ`šš­.™'°› t?yL½hS­’åy6Ôló¹Å®%ÍW~/d)Cz¯#{ùŠÜºÒÐQsw/l]ÄõfhQÂUWµÄŽT%kQɸé`}ÊΖ<þ•Ô®8CFk:”fدšª_C/ neü³·0¾â†Ä°Ú“øWY|ÿÐ;ÿ-¶ ~_¯¾«w#B‚Âê¬î¿õ•ô•˜†±€ŽQÖ ËQB˜›áÚÆàêˆÓü­ßÖçaC,.ï7“‘ùþ•›j¥ z~)x.rþçø°bò0& ƒä]ÔG]§Vrà`§ è—u§`˜q[K,Ÿ{ÿ”aÍ]æþ`c{³ÁµÄÛï³·VÐå? 9oEW—”7p™F¶Äþ`;’w¹µssùŸá"þ§ߥÕ><<" 3ÏˆÞ ïÜÂ>¢§ù9šJòÓÒ7ß|ƒäÂC¤Žâ,z NA¯„µ©Ûm×åèLwìo¸ñ†É³w?ÂN~óýaZ ,£þÙx–'0Q®'ɬLþÁMV™ Âùj6Œò“6 Vä?)IƒÀ‘ŠW».ÁÂÁœz‹1îb¤¾+ByÛœqI‘ &[ã˜ÓÔš‰’@È€ ù­]Y:9Ÿ9òŠ'.´ÁÊíDA«…åK®$qfêœîP9{Mç”öVõQ\§ò8ï£äUŸ7öD¦¥ØÎ˜€*|l|w@K #wèªÏioüòxh™/ó;¨/uëÝãÞzC<|2§ˆ°©i 1 ¿·eÅûÑnì·qe]ñ4¸gno0Û)Y_P“…Ø9oÃ.λj?Ö´ïÃuFÍi­ôÀm-YP*Ý"£Öo@^ÌMëíÿ±³¶ŸK± n;Ìs¥9¼Á ×qY݈|¤U笘!LkkîwºPe§¾û#ÞùããÐdEÐB98Úo¨£Ë ñ«³ wŸ·m٧ȶÐ~’̸eÈïºÙ—¾Iï(›kÆ%%Úù;Š6A°êex¬,â²Kê~+ŒBIwŽ_lñ:E›Š nßѦÚY‰; (ËÁмE"´ÆÞlq‰o¾¦æ,¦¿ëRV”üY ¬?L@–\²Íó¬ØEÞx‰“ð(@,ùBé)?[ú¼ùscÏuöØ)Ÿ…?ÇA¨ÿÅu? ´öÛËyõßëy‰õ¼¤ëE8 }×|¡¼ù™Þ˜KdœꂚeŒ%;ÕGqIž¦mÕ¾­,¹9‡Ïž-ÀnïEÙ>Àñåî ¡.U3 ¼ÜE<±h ¯%¥n Rßí ‡Gn¡`’ }k²ÞF ¿=nH€»íüF±¾Ó`€Be OWwUu®©—sŸéè_w× ÊC€ÈÝü&Y­ø»mâÚj#îÐߪäg» ·(í½yÉv “0®þ-LD‡;¶Šü†½QÿÃXF\ÖéûÂ^Cí`ûý\|E&P½µûò°tQRßÔ Ø¬`~„íUxáP5CEò€ã{¿ti´°xøcºÓxÙl‘g¯­L*E°rñuÊEðvJmåñ«ÕˆI#\Ҋ׼z&eÖwVÙi¼h¶`.=œ;_u±ê–($8®ÉT˜,¦@E€‰&1Üôq1fXL‹bf@åbÆ@E€uMÞר0VŒæt&E"ó»©ŠU·\•CB£tÏ;‡Ç0{òúiŠå ÃÁ8À0»˜AÙLâ5uÄ_–À‹åáL¥ªûùÀºû˜ºþ*Wžæ-¬0B_Ç-XLM»aƈJîEW§ ^ç#‰ ”Kƒ«Ü©…áw'Óp˜vÞš¤m“8Ú«\&mtÔI® ´jN´tñz´À+¤£quJj¶^Õ÷›{ÖÒvTïvf«-˜1`¤7›"žjÆ.}Xü8~lhƒÖVÞj©›x7Kq·ƒ‚Š„*V&þ[sÆïÁ‹Ú9ƒð;"ùWHÛ§­Q…S×)Š ™ÅV_¤¤T>GÙkuA­éXr]à<XÈíÖåUMŠ[kµ`î»N>} vˆ9Düw÷$peÉ"®^ÏúQßOí%ÀSÓ=«ƒûÞb}€êz¦Eû![sGZÆ;’Éû8B¼§:Ýé¶÷ˆ]vÕ®ÿ$¡{—’¹y‹wÕñÐç\ðÇ·äÂØŠKŒ®”s¼âÁÇ'9ý1Po½6ÄŒ-Va§ÝxnóÎN;;sïa´°„¾;Œé¯èÃWéOÍ.HùÆ«Æ>›0ê}«ÑéŠ÷•“©wb"pxÔŽÏS÷¸èZø±ÞHv‡LD{õéIO$ŒÆÿÛ9È]^%˜ ­RùºÔ|Ñ:±ÞqNûa|¬!ÄÚ›õwÕ¼éøúŸY~¬gï¿èH©£ Ú7 Š=âÛ:†Çö÷=£§“9fTDmt¸G~C·`H¯q°µaß’¥Ë:T.wD´DÙ<¨_kÉ,¹Vê•’ÍÉ/oÓκ›¯›‘¥2gýÐ †9!Qjé(±ê *\JuËÖlÃkŸ\“£«ß¥·ôÑbƒÈ]Vñ(âÌeE,cC(€ÁÌìà"z©ÈpÉ–O8,o³Bµ€r·¼÷ÎðýeÅ’G:¼èjï„ãccuý&[Î9*­³êI`Sª4›ÅA•R|UÞ…#IÅ}ñx„â/¦`Ý©²t+-énÔ£ÛêE¶J<žhX ·Ö®z` Y‡§®£‚ä${ìHa4žË#^âÂmæ 4cK+y죪ÙU,î°Ö"YÞzâUç©&];p<)à$£a–Ë€P˜ ¢t8Œ¬ô¶*òP{€;×iŽXÄM–i¨Õ! £––H¤ö: v8ÊfxYÑÇì,Š~ó~<‹cƽþ4;Ũ€ÙhÛ(s}]Úß1UÏ=+0g<é d@'=B©gÞ郱Ö|^M6ðœìSq^vu5Lo‹7&o†ïÊÍC›5ne·j £wv†:¤ÔªBŠEYKöîMØ;·]oj´JâÒª³×Õ‚ žN@Ç›ŸVfóA6Ö’ï¸bþ8¹‰ ¾d +óOƒ·£ïjÜÔ¬nqÆÍ1~Ù·ê½ôEûðøÈ2ŠGãQï¥{g82²/mJF Dù33¹`#ƒ˜»TŠy”l'Ž‹—æ>Ê>ÖÒ>l6ÊHçôTíy¦xˆï„(@8šþF¤ˆq—ÑdHry¬A Š`­ "gd9ã4.9‘Kê¿‚âa9}Ùj%g$Ÿã¨†“—þ-ùfA‘áÀ¬µ‘g­ }›pk æGŠeNFUëД2ƒ[Ç;6Ì!Uã°MJ‰I¼ø'<(´”(”P•UfkÉ8‹P¦êwƒ+‡¡º|›ðçUѰ¶æ¯ŒA­›#5éß“™F¥x¾¤ Îq‚z“žá[šÄšzº‰’ø]²möûá·:k ï¼ð|m†ðnÖ qreÚ¬`ÜÎw¶‚z¨0— ¶}'KfLûó÷—JŽ…ÍSþ<€Ö²’s)ä ± ZsW U”…%”‡z¨B¸Íˆ$ÑV†ùýOe^(Ä_•áB-…í«²[¨é¨rVÌl!pA~+Ájq Íd¹q ÞDXßÕJèu°Îp©Z®åêýE#X()ëd:ÏÝsÈ~oÔ}DÝò£ʬÖR¦®í çhñbFybÎÆ´úøB˜ºÿ↶ó¶zIØ÷*³á?²ñ©ýšb2 qE"ØîɽD¦MT×ÿÂ@‰£a¨×ÂxVÔ׫¹ž ÆgàXK.kC®±ê[edOÕ£ˆ.$ˆHzÏ2W|DLŽpÊ[~ÌÄZÑPòëšn©E»°Ë飵Pwvë0õ^!IÝí É«j厼j×hhE‡M$F’ãÒÃÙ|<½"®1GÐv÷ ¾BÃHŽ€ƒúÏ0E`ÔéKœxŒŒÌ¯Ûöa7À ¸˜4ìõa JÈ“_A|jŸT.[lÊFÙe ô™÷yÌL–†¤Z:‘ÝæÈlò27â7½³Ùh 6â”bâáb4Ëæ´M˜žAÓÓáeåŸÕáÑ>SÊ$ðSSº‹],z rÁÔ¬lU%T¸^«<|l¸[‡õV³¾+3_KNï¤"`¿ÑQùäùpWà  V(]˜#î«i'j!¼JXûþ˜7,5W}Qƒú„úb€­U›äç-­ÚÜØa+Í0ÒÌÑbæµå)*ĸ¶þ–vëmÌ.LypÔ}5·p¢Î‡£«ä#AJÔœMÈ"Š©ÖÃêBžÛX!=Åj¹L6Æo·æbÉîìù|]Š…•¿ËÙJw³‘è^D‡ Jv4ÈzÅNèãЫÐãR¤Ë|ÒíöÙctVj³¡ìÔîN¼¯—ÔRí¥kGKÛÒÿÞýŒöò÷­ôU½ ÿ$泺.ˆ£ÌTXÝ\ZT`ýË j¡É¤7n$|ïãÑÙ¶Ëdm(¶£DfŸšŒÇn/S¦-“©P«VX YiQíYŽœí&X¸D~Q{7^(£Ûú2üH¬@ž÷Fý ×ÍÊŠŒ7qF_1æN‘ns‹=øØ›ò³ÀwÑ÷E;PâH¬éM·m‹ò–[MþV$ÙrÂ}56â>æ0hZyEmWä«#g€¡ž°šÄÎæÌ3ËÉn_ø¨ëÖ±ú¬îŠÉ3VNúéx4müÌå:8£ÕEGš)pÇ»x/Ý Z3Ë3‡/f ÃâshœV3 ÅÄMÔl$¢à{-™±‘¥ÉÂöPòѾÍ®“'›K‡J1©—ê<8?ÂÒÁ—ç°. 'gWľб·÷åŒ[iud3äéue䇫‡IBydrÔ»h¢ ‹+\±fv^D£9WT÷÷ÔÁ"ãõ›Â idÌ9Ì ({A&›>ØöÜêû&oÈ2—¥­‘úÆŠ”ã‘7ƒ›•¢5.Kƒ^éÚÆ”poùzéøÏàun¨OÞ¤»ªþi–Ü;P‚û Üš7ͪH —&—®. µN~Ô /“á,ÁÛ!Ì…‹è‰WÀ$O“d#y Z­1lxžª¢·ËšŒW¸Êñ§œ™¤é»PøhŒÏ1¦ ŸÊ•h¢”Å+œdHbèÔô é{e§¸²Sˆg—ŽºˆWV®sØ®¡D© D¾Rq̱+ÛSÏìëVéšÐ™SžY—M‰acÚŒ{i”ö©8|ëbϽ±«½‰é ×tÄPÍÏ'\oŸ@ÜË-:éqµ…<à¡ØTòÆI«$âëÉm&(ï½êíî.ºKí“2+¢Ý/=Á^Ž#œ÷+?º½D|»ÇXÈ$¾lï“_öWŸžŸ\œÒ±8<6'»‚ú:¼¬ºu}od§Ùz±ßHw^wtÿ‡sã†ÝìN³‹+@½K ŸÌl×rI<-—vv¨«L+'åú–Wûz)ÿ·?5üR!輄%ãVÑ´ázCRU,Nœ0ùK °*«@Ù0­B4Ð÷êk4z]<̱a¶I0;zú©Œ8µE¨åÆ—4W\Ò\UR7ä$ô3‡è½åquå#Y¶Qñå‹7P…[ÿN Ÿëld®"È¢sA'!¬ãóX˜¿®#|Bh•ª†ºîU^]Óÿú˜ÿq–Ó¸/ár¦| —–9®ÀÊ‹ç8m›ÙFìþ}œ"+•ËÙêÓÙ?)V%ðÜÕή+¥ Iñ:B‚Ãj/æùþ Qã[G°æ#©¾®,㢫Ÿ#ºú¨ˆ…”êÒÒæ+¸x*›Ü³ ÔFþQ«ÕÀ|©Ð2X"}±«öû ƒ>:ý~Uˆžgðÿcë.Æ…æ'”´Q~ã(éYq¥gÅ•…³0¬í¹±åðß]°ËË\èñk^y5Ù¡ÓúÁNóN¼/_ïñ•'È#;v©Ѫ¬ˆK4"ļù Í ü*<:Y k”Á?¿Åô¦• ŽßÊoÕJ ÊIí7·…Å>Vø&ñYðtèÇÞÙ…:c xº/ Yʲ ž½TbgÄÝ÷’; ¶“¬¤Ñ?7²Â!ÉBAùØ7ÇšQ¹šBžÍÐîÎH:}<:²CÃè¶Êîp¶ŒI‡7ÆãO<¶†™ÎJ‡1ä·¡ÃàR¡)>B9¢gSñë;ÕŸú›'%ïïV—Iš×QßFl¨¹Þê?Ân»íË´ ç†9sãÙÔ½dN}¦öÍhn°¨¹i­ˆn±°æ íjÔÔûܵ2xPÊ­C?Ëö{lCñ«Ò™ç¦­TŒ¥p8ú:G¯#~^^ŒžMEßL›Ãøæ¼7ûU.(òD£y"$â¶/²ºé-äp†²èÙ&Øy2QͲi’«öfm^*“Ú¦(Üë6ø¬ËVwstMN¹ö|…~AÄCÇîÿW8EgŽÑ-[h¹œ5Ô±~óùënhXJLaŬþ,ÞÒS¼"ûÁ[°ºát¢TX»7¶A 2p.Ðçbù¿Mt†îÀsÑ€ Ï>ÞJ/C±îêýÞ«#°VéX?/ˆ•B€v¦ô!4üÈ |5‹F^«Ây9F ëâyqUÕ2mKêÍ\©“báC÷ŠÎs­¿­‡Ç:W½*_©µÅ… uó‚ú®–Јð.ò xkUs­Dž{Ðà>¼1îùØû幇N¤‡ìô”x­ªxK1ž™ô¿KôjŽ<ŒœzG‡šÖf½ê«ìŠ>I?.Ôœèkæ†b,:Gƒ&rcáX zý ! ^Üã#ô•sÊ%+—µdEo%^9Öh-²¶ÕmߊÛÙË›±)nv‹èñ“²‹˜ ù9Ÿ^WŠXWåóŠ® *Óu•GsE÷KYÔ¨~³¨›‚º‹Ù¡Œ1£†¨;îÜTŒ¿Á%Ðö#¸ÄÒ‹àú#Åw—“Nqù¤™û³ âÐêí7kR(1=ù°Æô/¦³áÇ _xD¿*cÜÍÂ#JeéLUI¸€§„Ó÷ hËWù7­' zÊu=†ÆðPÄq/ô ‡¶{*hï2Gí]æ« ½Ë Ú»¼›pp›½"R‘%-è„„ýM5±þ׋þ¾‹^ „ÿ¬êŒ"÷]"~ƒeŠp¹ù2EÕýí¢t8AœkÄ=£›-c·ƒý7‡>»ÌMGM›­çÍV³Û >‚4h䊑"3Ê mø=í9MBv‹;WJØ-yÓçNì–Eã³™X v™ÁQb¬ïèT£·ÅÕñÞXŠ[l˜,¡>µAÔg¨t7 Ά½+Ü™â‡(˜jÜMîmâ—œEy™õþ9Ê£ާÍtÑ5R“Ä@Yñç 鉹Dº½º(ù( óѪ‹¢!RQ”Rau‘Êßµ‚˜OUü«*ˆ1A¨O+jy—6~N8mÞ+ŽÁ÷›–ê9»8É.'xœ4ÕÆ‡—©ÆÖ=Ŧn娻!¾zó¬ýŽsC‘X)¼ÌS@-êcö‰—\ß¾I†ŽéçõyWæÔ§~R! ž€ýòEÛPÙ$âà9ã¦É—mû £&줄£çyB¤–6ŠAËÎb§«£ÌCuTU–çÝH.÷@žÿ(—‡N_Níd‹ÛÞb TøÂW«ek¬î&Ž½Í•׹Ў—ÛK-azÚ7™[ ô¿õ*¿n©ÌŽ‘‚É/4íÜ=$w!í…Òð‘—æZ8»€w¿_ô5‡PHûÞ(NrF&>mâ‰èy:ß|föUQ·ñ]' Klúº„ž], M;e‹U«zEˆè®ECsµ§ÍÜ"Me³ÊeGcÑÞ –Ðc6#SùÎ8Êé|Úû]f¿ÖâZä*)Ä×–¼_9 ›ˆ¨Œ{ˆþ 5A*G²ÝL¦Ýоb+“2Æ`w²—²_Êõ݃BY°áÙÅO™â¤³ý5^5èj =Ôˆšš%!NÓrÔ‡éîQ\ÍÿŠ )¿è~Ç9W’Ü¥ü(¡aýÏ•qèõž:¥Ø KãÛcþéD”½KvÕ¸§œ¶ó{ª8Å¢¥X¿QžŠçx= tc\öØöÆÒï£ÿDLÕ¸=º€Z¤ùYØŸ^?…æ=6•5'Jc6d¯~Eëô&:—gv ¶}ŒA[¯>Itß- æÂÅ”¸&Bâ¬áúGÖ﬛Q ÏMÞBãï_"±"˜+0ƒ¹òüÅ&Ú˜ÙäÕÒýÔZECÖó¨Ç¸åKT°Ü…2 Ï'©Ä]ÜPô;Û±¾áê£ô•MÕ¨ ý»câo¿ýRfrD D@Æý-ñ¨­*rí(Á9ý‘LTZ¡âõ’›ûlfôaÖˆ$æxM„»Ï‰Ü' nEïoâ²ÂNÆŒ–£›°F°óºÕ­ÿœî¼ÅgW£9îÑæ¼Ó)©[û¯yKUÖ·b¿¯£îQ$9úQ2ªYw,* ’·§p³LöBZ8×¶!ˆ‚n¬o’ÎÏ@¤P&Å ÒÙt:žÊ[W±Á³ E[çÍ–¢ æèŒ[»Rß|Kñ,ùV¼¿Q`¼“ù£iŸçó©w‘]Ÿß$',Þòo‡¤ nªU¿ñÔýwA;–¿¨Wë>[Á(Û­E¬A7³º`ð“9]À Ît^³ç)«‹Ïìä‰Ì—î<6ÊOî(.r\­“Ÿ/¤«Ê¡q½¥\§¹“l:= ì`ar—<Ò/>ËØ¾cMŒð@íú –Ñö †ƒoܺK ºÉòh¿ñsJ¨4IB6È€7éT>Äh×xìu 7OgÖͱ* —5!å‘IŸ»4þUl O¹•å³P*jJò7~‚f?Ñ¥D͘0éa2hP‘?‚¦2%gãñ¯«'Ù‡áh°Ð*Ïžl׿ìT)! ý¨~Ávªâå·üå·õ*þ…wvÎ@ÑvŠ S:åÍzÞ\@Û_µde4?CŒÓyªb$Šíby6•Šºb "¦Ãv¯ØôQ|¬.Õ¬ ¬ª€L)º‹`†›MÔ!½q‡¹yø]íú…Q­¡>¥‡²TНÍↂ¯( uðŠl•íI•2žèÄú¦C;½À÷oú§+ŠR’ £·Ï0P²¨Â™¿á— R?ÕµTê¼p”8%ª³íȼÒW¶qrXÖ ®èÒ2›Ô”õUÝ¢¾KVŸ&´êª; JS`NüalKÆ?9Y;£wÉ£%d^ˆ‡=€…/c,Ë«jÉ%‘YeÒGõn·Ñn@´Ópó»qJX4{Íç´Èw ‚aX!¸EŒMç¸_É.æ_È–]ÎS\‹§äw|é3™ëÀ`yTã‡þuzSûú×¢¼!*è÷=°ÏàJ:rÂq,ShZzÔh€ÀiüÜåös4ëó†¦ÅŸß®ÿù1Å¢wŸ¯n|¿ÓH²ymmÍd8r3™Œ(5‹8®Ò‹ŽÃäGH\¹Ã.PÓ&­IÂî~tLN6óñ9 ãd<›eÃ=´€“Þʉ\1ŸöVª'6^æÔÛ“m[·¤Á´/p ëÜ^#¥„gòÖ'ªê˜l2R‘ÃÄÏe„î<^{ÝÏ%âeÕôrN]h°úŠFÌÍE ù‡Y ™Ø^å1ýJ8ÊÖÁ#gmÔ×B˜OÀ´ÄÌËhRŠVÔ•\r¶x\ý!ÐFØ£E¥]4?_–Q3¯¹ÄeA¶£([.<}Xò–f©œø×»)‡†Ö2l]ü5ôæ™4·Ä(£’žžŽÏ{ÜoÔN•‚¦¼ÉÉÅé~S6¥Ï÷÷äÉ 2‚Ô Pë‰f:µ¸Xnc‘o`Áw¹™¨ðl”>%Ez¤ª +ìäÞ ¸© à;¯<§{+º"G”w±•ÈwcŒmLä,8IØRš$OvS„Ð ‚dÙú蛡ôô¬‡*Çy] ä$÷p‘J#gïÎŽO·©Ö}.uÀ`ÒäaƒÔd¬˜\ü$H2Þº¿lšçQZ«)¿7Ý»‘Õ½„ú^¾©%Ï€ëQQÒBöοrQPæ’®øf}1ú‡©¾`Òö@#2ƒxÞû5K§ä #§‡ô†OZjÆèoä]úÓ§„5BÈLVa …¬h®2#ÎÑ]V^KäúGH é[+‹dG-±Ô%›œñ«Ó=ºªäp”B—Ò3êÒüÕÞ!ˆ]TwH‘:4ÅV¦’Ê*=6²s ¾’Q0œÃ0.ÎŹÝ](öJazþ&¼¡×³7ïdr."±òŒäš3Š¢Ç¾œ(»W®þ"…£¸•Ç tOðÊ :–»é”Ʋ¤kñGéB2R1Úb°Ýõ¢”Nu8ó ÕîËv£ómXcÍ¢çóùa;mü|Toa´X’üE…±‚–6’*ˆ)rbŒ^±Ó-¬equ“)óñ$7¾Ë‹ßµî6™fµ×?GåTKy{5¦¸ tèduëøà]¡Ln¯ÌòÀv„[´hc'¶ Næ%•C åžBMT}ǽRñî³b=[íLe•rHæ$¶·­ù*"ÑÎkLÎR`f“Í…úº²¶‰ôlÕqVÑ)÷v’Ð"@NVuus3äDíÓ  ~P­«M0§'{‹ä¬ºñfš¸Žô‡!_ö8!—¦nÞu,:s9 %&4mGœþâ—jYŒ˜á¶]j w ˜Ù²•º¸+kYš8´ÉUˤΜ«’1†Å¿Ö"¡fáÊ62é=väŠ6&åÛ§åD¨›€ô†||\\ÀÃ¥88¶èÆ'Ïã0’2†‹¥¢ÏÏkY ßW¡¶_o»Û$ùÝeµÖ"—÷¼@˜R³âï!)dGH½ñÚ ò!»ìª»¿OÇSý~‚ÙL¥Í§+Î:*Ô•™@ô œ3#fâ™01-á9¯¤A`n/rg„+¨mu¿ÄØ…ÆíšCNóÖJ§íЀl.·y¶P~çò0—Øßǽ­Œ¹˜3l,¬TÏ«É3Sæ±3îfž®´åÛÖ;®g23‚‡¿]ØÆÁóö삆ܪwEF„£ýCÊ„@Û &Ïnc7¥%uð4j¹y©'ì£M«°ÎüåÍ´^¿üáT|–œÒ¦‚\Ùxòd½êôЉ‚vÁ]t£{xbÁÍj „§?>?I)JÏK(D>o̯Wö°¾Ã¬B+ÄR¾Äsþé€C·3ìDÇÔ ;T u='̉§‹œø¸i¾Ð!Æ¢ÞÈa±{äf/2ÉæwÓ?IÝi ­ Þƒ™5˜× ±ôKΨørñVïïÿæí•Ó”½©<"Ÿ•Hç(O&ŸÜ âðózm㺖|Þ€’Þ4Kp'õS6°ïã€1ÍWëúLc zöJõó¨vMTz÷Ä×ceÄó‘y>º¶›Ô]0û#žº`4~ôZ]/‚&æ`>9Á8ŽUqD¹ÌCŽGeÙÆ>š{"§yC!ÆP|¨‚˜2¿éX¯mÁ‡âW³Ä¤TÄeÓÄ7É$™_áÁ¤É,¯ ü}+¥w˜—j c¶¹&}7Éðýh<ÍVi쇣O)$}¼åà>XÃöÑ’O¯h4.fÉÉpžà¦Èl-ò$ç¯ÿ|(jØ7ZRlÛÉÅ샼ûï,¡éxšþrq>7Ô{hûÑZ”üF{gÃA2éÍñAàäÕ÷º/Ól’Ç á}‚wöé*CÌœ#' ›®w™ wa³Õ»ûú !Ÿ¹ÓÜä-ªvšËÖ§ \+c/” ¡Ð6fgÓEª$_¤øJÙø=¿9WAÈñˆ]r‹/ǵ·c[Üšµ ÈèßR¬/z¸Á‚Í‘_æÒ‡‰e¿ßÝ…¸K|G÷0LnuCä0<·Âk 6±àzY…“ÊüðS³û2Ýo¼jì»b@•h5:]Q c ܶɡï ëå’ˆäÜ™½™ˆK'(‹ «Ä†¥XôÊf•;|p'n"f¥j3F/ýU/ì «j û¤Ëšî0¹&)æ³fŽ%gÏνâH©J˃`^²à­ƒ€¼* D¶´[ocà&$:8ê¾¶øìà°uxPo5ë»Âù­Ò”tÖÞ~££úê,.¿]ôFóáé0›ÎR¡`'<¶[‰frz¸ˆÄJói›{±^9Ûf’i¡_ɺƒ&¿- Nk~âåvˆÂäºK*Õq¢­ú –£ê=ù#±=t¶'hcËzeŸ}#Ï#s…J ¥ÄvÁÂâ{¡x«æº8|¿òìqõÞ}Âùþ}åëMÝ—fGRMoªØýû–9GŒÍÆk•ÛX«–`Ñ ¨FöLYÒƒ%µJ± bo•¶N± {©\›1Èj¿ÑzÑ}™$ëë h º“×9"„ŸÜˆÜhÉqŸXLaW{²EÚñ§ˆ|2B KB©Ð| „“éRμ@x+7AF* 5 â ¸Åðc¶ïúãÑGÌÖ‚Á.ló£¶ú-Çuê*îi)õ ‡ÔˆF(®¦‚à‚¾m_ãç:Ò™Sø4ù“¾ÙK¢='ƒ® &½Ò£ãÎKÌõÇGiãçún×™…æ¨r%,Mi-tY:Äù¾KÞ,Ñs¶FG„¿µ‹l˜^ …ch§†MRç¥4¿òjw®¥èdðFÌŒ*•æwñ³Ù—ìØ~6T¹ÉZé¢ñ+ \^™éȟ{˜©7VÇž‹ä¤‹Û¼^›V¥î¢ Ý'ªõŠô&}Qž£/Ž#è‹òýT}ͱœ‚ÏÜ–¼o ò3h‚f-£t [\:xÑóyÙ&í×Έ”›ô=Aúº¶ì¹äkÛTJ¯=¹i£ŒÃ¦qfÉa€Ø…R| sÂ?¡@¬ ——§ HÔ¨!2g–ý¹eÁÛ±I¤ô”Ë„dobM‘´¡–ôVîyy%4°¾ÿf¹Îæ[Ä¡„ ¿‰„ f¹“£L^üÍÌ^ö{eìò˜ÍËWS¼P˜õ«¸îsC)›u”rHH¯ {êz{¹.Y FØû;Iò VH¢J+4+ -€Jh~wûáç[BQ=¬·^3`Dó[2™y€ÓŽAD¿~uÉC]ñ¦Äž>gÑ(öZœTóáÈÍ »’ß¶TÑôÛ¥J ‡4-î4^`Áf«ažuï<¥vŽŸ»Ž;”PÏ<ÿé°½—î`úbó µ»Ðsñ 9σUyψE½sÒfý‹tÛŸ ¬{‰çÔ—é§arùóÕŸRE¹,ƒX EÌ›ÃÏüÛ¯C÷¶d‡º•ä³£’Cx°<}™vµ—Ýí-• ñ+ \T^„GL( Q+ZJ¾þòÇ7M³.vu“Ù¯ÃIrÞ›ÿag|•MWÆãi/{SXî½­Ëô쨤’³¨´ +"¶­1°þƃúI½ý"=n¿W[b))Ä›w´Ï¹²‚ ¨ÙÞÊäzKæeÑ¡-O}dœRÃQr¹n}g5±¿ëH@ס*+},„Ìð:r¬Ž ®âÝ+XC©DX.®U±ü?·ls¿¢»kt(ý cîhÊäþ#ŸâCLì2÷!†Z‰¦5Pü³±à›ÐŒWÏ!•E­­˜W…¼C2M€Û|¸´„ÒI³ùô¢?'’ò;\É À{IñT¼J£J6€.Õ»”¥z—n©ëä`8:è]îS/Mé×j’žŸÓî5ð³A=gþŠ„;ø[zkŸÅ":@}Tîb Tpø-„§ð©žÎeQ;0|ÿÁ<#`4G§ãÂîbG‘j䀛Œgù¾ŽÈ@Á¬®[êt2Žk¯ÿ!UGt鑈ý ½cóPž’Ââ;òïToÑÇUÙ›àJþ²-Ae¨ú)CRa@ÏE]ÈÏ7¡£°<èMJ4Ñs‰á”¬«»Ivy²%ñ:_Œ½é•î /u®Jƒ³,Xf2Ýe&Ó¬#4«y,åªÌ=jº€ìÝ›lù _“ã ÊŽòUj¤Šä Yq— ð2ò_Víä€ ørNow`b¾êu{'gÙRv>ª%èÃÌûc]üÏËïFAý‚ÿ ÆÆ&|ÿÿ ÿ ýÿ(ú¿ÀãûZ¹ÿó`< ”ÿ¡$ÜïÄCáòýþÿ.%:¯®G"­®ZP9?Uï¾Ygާ jk•gÉ;h¶pw ¸¸Jû r¡“+Ø&»íÍ~#°±éâ”ê°Ä ?”s®Ûû5K†ó$ëͮȓe§š áǨŸÉi¦e Ìÿs1¹ÆÆúúzrŸîê^…o+Ñùi!"ÓK!Ø›{ ©MxøˆþÒˇ›ô1HÐÛìxðþ>ÐPñÔꪴùWö—l€ÍïÙßGÀ&A”°¿›ìïû»®þ*ô`ã¯Þß¿x°ÿJ„Ràï£È߇ê¯ð°þû è¯@½,ø»ú«_ê¿ë±¿z’³Ð9åÏÏWŸ¢F·-Î]š{ÍNL̆““xª:«âÛp¤ ŽÊÕ†–!zRhb¦ Iê]×H ™·ƒw Ìo|OóP´„SpÓlXR‚×Û ˆ‡ 7çL|>IãÒ`Tå?7ÅüqCþ»)-1<æ±)/‘M‰ã.ôfÃ~ƒXÀ+x¼²8mDvx·iÒ¿@§Á‚iðàoV7t¥Á¦ àè} TWežzeD‡b ‡³4ûí¢w–žŸŸq ö,žz©1뉶€ñNÄ7X2zšOè[Už¥²Sâ~df;ÍÁÏ·jjÜxCÙl"ùV<ÁFÉÄa=£fúg`ãòÁ8ë>”ñäÊ2[Ô9Žåê3+˜øLO0zLðåã¶xîcñf4«á±sù¸f¯Ú­û¥1½Æ©*¬Q ÐrQÍ=„ž%ÌrR 5•¥)QÎ*°ð9Ã}Ûéû¬4Á(wôXÍCžØ€éò€áF R#IV/Z­a²JbÉﯕ9Ê­àƒû"¼„‚"öŒÙ„[Y}¾¬>e–o¢ŽñÒ nÿÆù;ÚŠD[ÿ.‰úxÔïÍËCEìí'„6f„ÂEÀ0t’Ò´¨'¢wšù$›…ðÅãDÚ&hÖ3ã{ÍXá…n}<É{®UkåeiÛ!}©ª^‹Œ/ g†ã‹ U¬ø5“åàžcU@ôV ÖÍŠ¼ÍÆÌ-øÁnHÁÝÚ©ù’Ø/:ƒ&{+U#¿²Øúqkk4cUí~pýag³ó” è.I¹ìêu¹ârÄ2½·Ýâ¼]QÅ]G-—ÕàʰnÎpá»jŒ‹¥÷Ek\!î¡2VÓì|ü1ûZˆ-o'ÿ¯3]È%˜^JK  ±Y¿,aºLG2½iB†Ê9G—ÑN/ÎÎÄâ€*˜öWa@¬­le—ØøƒÔ=q”gŒ$,lǨIËØÔù¹ˆ¬ ÈRzcFÃr‰ÑRÒÛ™èE3'|f|Èü1]o¢ã%'9+j¬3jy5O^©€ íoY›;¿Ôl¯ºÅaËv~εG–òb Sqâ¡Z<ÅžqàUâ É¢Fë—×Ka'¥—3ñÀË0vZ±pc†€è|“"箌Oõþ‡lx+‘é«¶û’™qQ'[TE>±ÈzÅÀ(öoÜÝUèÊ1×$qEn¢ê#ÄžqãƒépÄG™»•*b.ð*ß”ý…d™t'‰;kïÞ/V‹ðÓjóZã'!Yo‡¡~ߺÒŒw[ý–T±”{&ŽÖ•[\dÙöV¢CDå ˆ©%ÊdÔµë¿9Ëúþ¢éíyÙs`4þäM‹³¹™ èœû¸©\lx•È'½ò|ÜÄåél.—Ÿc²hg„ƧN@™ Ü›‹Ûžl'›”•…܆› (¬µÖNÇå;˜nÉÉð½ÜM]ÅKÇŸ’ÉtØÏ” ”zØ=$âQ÷ÉË*p"šÄ idaÍÊ€âôÔö}d„ª"§|½©_kÞ&–Â@dÐMÅG'PjS–’ÅBÛejAJ!C_#T)Ʃ̈EU_¤–Ïrƒc &mX¶ŒõGê £ÝÏëµd³ŒÉ×Åö0ëµ…þûw­×úw­ÿé5Yì€]žgçýÉUf0È 3Mk‰Ü›2“¸R™¥ J©²éßå¬GôÌгyÒFÝHÕêÖ¸—×› 3yò¦ÿÎZ¬¬çêÔ1=ëʽøšÐzò4ʽó“2h¯$ÛpH¢Ÿ€ï%º·.”¼sËœt:Spô¨ëXJk4Búx‰Ab¯Ù¡((v#^mOR§“ØnÉûĸ9—N¼ÛØ]RS/V²Ï؆n1 \`´n]`”C#$·¡’ƒ›«39Ni‡úÖ ó&ÿÀ9ðäÉÆ#Šu{°ùÃ÷yœÌÆçÙüòœQ·„ÇÃÑ*µ²"ÊlsG­&+*$ü½£3jÜó4F¥Áþ#¹Ÿ€ZÅÇÕò]èG!ìûæF•O­ÑàÞA{4Îù¥-»‡xŒó‰tÝ¡H u>ž›ðEHo{ Þ' 4)ÔÑ•¤’Ù ¥ðrŠ«0?žûáE™@ÔsFRÙ\ª™¢é¹¢(að¼[V•¡TÈÒ‰.%Úµ,… ¡®L/m—k§YÊ ÍácªkÞ+7@[{š ømƒºv¿îjÔê·÷`CXË Ï”u»@ ¶ñh=Ê€Ã\7â‰X-Ÿ‚][ÏY!‡UnuKjéñYȤö¤Ý<¥ðQ‘gPeDº‚ÑÖv5MxäUÈÁrʬ>Í.OÖðeb’«[Á"“©,+T°¡í¦||½‚¬öôC[T@¹‚Ž¥eÕÇâ"çÅE&S§ŒfåeE…ˆn˜ÓsœÒÖƒ…6hçȆîKüö,¤JÉmƒ‰üÎÅר¾Â¢.lé~Z£ åÃZ±!å<Õ\!ã E•2àÎêZI„ˆ?Ñk[ †F™¹<”¼YÒ q«†’­Ûì½~‰~5gãU¹ÛBñzˆ¥OQ¶Žè×ÎyÞ…¸9ßïA ITÎÅÐhrh\Ù‰éà®Ú²l—¥Ñíõ‡×Re­{Ú%§ Q²õóÛ·Žÿ‡] ™fY»!‘¥r‘*çf&‰w Þ´·ØJͨ)B-­‰²ôUfÛšFV‚6].Äæe:w¢¿MLj@5^–@ 5 š!$}z…¼ˆ𡼄,.Ä -ËRÍЪNO^'§ø–õ&زޕÍÑ,YvÂÛHaE%I˜pvÜÿÑ},3Vö,ùXªÚ9«v^¾šMýX==f/È …7¾vmÑ3íbuµyŠYw[”‚ø‘eC6Ãóá?äСø¶Ýú:^pã/œà6¤„¡Þ%HX©¤6–‰,Zï¾}¢\t2¢£wâëôu2çÏ¡÷ƒDÝÿ®1 „\FHöÑ_/Ûnˆ²”]µÖå‘èè(1 POG,¿&l„°Æ/äcËE@K3œ&[V#!>:TAN[¤‹Èh;Xü.šEi~#š–£(ùG(颸#, 5é$…3ûĤŸ©;#®i­1¼ µu–`ÕÍøõ­’˜¶Z¬”2 ÚV·´ª`ÐcT…ÉîÇ ;WáÄîƒ5„ÇzhËÉMW”P‚(€[-Q,ï°ÃÌYKå0ƒÚΪ%+Â+ ×ûWç´5Y#"×Ì}ó¼¼{ûœ++2•“éÝ^ŠNW%Û} (ê&t@ÉkÇääñàÖ‘9ò8Ó9 ·B½÷2Ü}¥O$_ƒŽi ß‹sD@˜„°‰ï.0®¸ ê’Tz8ÄU¾£ÝFU%©ðRB^/yã7“¡^(wKÓÉ<¬I)£vˆ5<ý–›Zù‚Š';×¾p'þC¡°»‹ ñÕZŽØ¹z ,ëÙôKy£rjM^i0ñ!ÕªŽ!ôÓDöû0®¸c€NF|!šÅðΚgì€;cÔ!S3Ù9 2³l+wàèŠ=n’³ìIèú*; KöéÎënÀO)>¸7±Óìb6´z—ˆr2S.FΓ•PÎù¡€~•oÿ¡V4ç­;Ý …¯È`’T‡‘ Jµ ™j4% ³Ü{Lªè®GgÑÑ{¤—Þíº‚“¸R:nk×è¾ *ì”ng½%F)}0ïÓcg´l(£ñ<[òFì¢øV#WÀ  ‚h°…gèüŒ¾=îî/þÝ[ŸnÕß?zo¥âzÉþ×!FyA¦ ¥èìÒWFhmaqº°0½-Ò%:;Ì¢gÂFWt?Üøµ²UÚz29ÇØ:~ËAW×z>hÛ0sF rc‘Ót™fe/à!ŒˆÔBÀ¼{™œ )çgóáä쪢6¨ÖH|ù×G®`Ò˜¦´Ú1ˆ"B yYFä±WQÙš N𖲏ˆLJý›´[W‚ (höb† ƒ÷¬Ö~mFÀÆÊY)m.-q³JTWQ Q;i|1šóۺźÃ^'ål™W=RÚ+2{)&‚5ïŒoÂgRW"³+QèrûŸå¥*0"-Û¼ªÐ^• ªBqåUË8•ÝÝ÷š¶Ä‘W‹1†·ä„Ò—­ÇõÎOBc7å¨kr”jîÝ¢ÉnÌñï %)ƒ–-§Ã~º\"s³Ù·HFr9»ˆs÷;Ç/¨àéd êie6dÓi-ùÎGâqr1(ìVŽäOƒ·£ïdRqÇQÝâì4Un¼v[䥇f·–,ÌýÜèNÆsÓìÛší£&ˆeª£Ô2~FÝʺ#ßrXЭQê/•p]çÏL`q’ˆ{/龿v£{Ün¡LƒNW YR3/jx²`VK,€æµ\®2÷dQVRÑHI&\;šoÈdÍ]Ai;':f¿ÁËVÒiö1›ÎT†Õm¼ánp1©hgºù…»^²OTÖB,Ù^ú†9æÕ5íÆ«F›äcw÷¥l§.'­Ý&?~œéä$hgËü¦ÔÎuË<¼1õ›Â]Ùó^ùÛLÊŽN7×<3ób‰Õd£]± …Ι• >ς̰sºTøíšYýXÖÏ‘öpL]9µ¡Æ@®wúLÇ–y#–3m4êIi*~Ï ÊfêüÃ4›}ÀívcêßK*ï­&wcbH»M=!dGÒ–ÿÒ"‡K–8ˆC$çêû–¦§ÄƒƒúÑ–Evñ`BÄwߥ!¹|”]œ¨Œ[Iý|‚ÓT‘ù¿Ü¬XþVËVNÝpÞ9µ§¢ÒN:«'ëFB‹¨abçÍýÆJrJb@wÊ,ÑeŽÂiðÀ†¼ïÅnÚäÑwhß$Ȭ|¶SIú”EØ$EM.‘ׄ°Ï¶[[²€ÒííÌQ‡…¼3¨TÈ¿@Ë*| ˜¹@ÁÎõ%¢"…ÄŽ(G‚(Ëc`ªOŸº’“pÑCÐ.t<,'ÿ&'­fÜèÄ•ÄðÓô`ßÇöKL8}%»àÝUvbA~U"ï8¦£ £æÑè‹!’35*ö6¥ÁÁθd÷ÔÍàÈÅËb «–¼uS¹º0çÄV  ­3Ì' Å¾Œ‰â®3ÔÜ=<Ùpø€Ñ>–µ³jÙlã©%ÝÛšCÚ79§^h¨#Ø®½÷ãùXX}½I|Õ–JKD•6H[[ê¶\6…ÖzÚçoð÷ ‰ Üh­¦¬“[K¹XÈ3Kú€$ëm@Ƈ§Tp…0Ãd¨âÚOvÑ¢®]N¤%U1+IŠç…a± «ÀkÒo…Ð*£ì6km TvúÃZ Ì"Ë”Œ€žÑ:dkªZwUÑuçM*5‘àÒAøFaçÑàÄm•©»šƒjȺZx\ SÕlº¤ ·sì–P‹×aí  ÈÀÝáè½Ò &~Î ™ú.Idæ™ÈŒ/ë734RÊ~GX᫐ Õ'÷¿3r6ïº sÆÑ—‚„2_À{4F¢oÂøEö<ú*ÃÝe;~Èm ÌÕr÷Bªdú<Êa™;T̯õË¿X[VáíŸÖ^&ßÕäy±>…KN.æýŠ)_ƒ'~hìÏb‡RüYBî3ïöÌí6o ÇŒµ3SKmY»ÿvôK0ŽömO{£÷™Q,•ë²g¾ž°¤Ç97/,)dg•ï@5EF íX׸j•?]T¡DO0”¬µ*ëÈÆN“-äR i søÂ3csý¦ãb8ä7lF„Ô/Ôõu¬âIö~8Z=¹8ýNæo‰NMš?? ù[Õ ÿ¹ðBížÁrð]µ¸5¥–Þ¾ÅÉx–ß ÒÅnÑÌCÑX;–âw‹ÆfÙùpµT‹j½¾m׊ÍÚ/¾Ek½Ñ†ž®â%ñå[Äï2ÆZZ=?S9³ì]TŠ•±ŽýÌw}ZmÇ#qíQòªˆ ¹šô—tç€W~¬ïŠNo|§ü£Xû ~ôÌåÅ{¤ð~œüi†.oDÆÒD D^%‘"é12±×ik?Úbul!{¢‰fÖ—2i\î¹ ÄQË7ÈT·B¢ç⤸sF ð‘hQði>&B “hغ‰5á°ØãäfZt¶M,ÿ²Hõk«ðŒ$ˆ¥a«äR×^KïË«)Îhÿ#ß³hÛ'…“eßwWeÞy 8¯%#å¹ ‘ÑRfžIF¨†xCÛ,m‹=D¹öE"/ËÜìóíPA²?¿ù³¡Ù òèÐ œb Qà¢t ’T¦aBo ”_Š"ׯ:…møA-î!€£v³Õe&~ÅÖŒ«Cg{QÐeè"ç…ñøÓà;û8Ž9dñ¡šCJ›TÑàñ)c„Щ¨¥ìrž)H’Ϧhå¤'ãÁUÀð XIÖ|ž…÷Û:fFñ,ÙQã+\•[`ÁêzÏ$X]½-â®ñ§ÞYùÌÛHÓl’õæBK|$ëmXê†#›z¼x ;ª³U?hì¥/Ú‡ÇGKºÊ¨wžÍtEî s5È rƒÏJj‡“5«Ìc™Ç ÝxÑø9í¶ë­ÎóF»2×(S »äÁÄì^øXí™b ¬ 3jJŒ«²5Lá·>Š k¦ßá9ŒÆì4c;\ÿ0 ”|”ÅK™ ¡Ä®z÷‘AŠW§}ò^ã•Gi%¢™ñòà§GuÜòì¶@S¸a`Ã5» ª"e‹@jHíæXI&½9Ö ?MEÎ~)=Ñ£1ާr;Õ=7= —¢•H«å蓦Û-ºá<ÅV[+I2iûBnyðk—£ACÇ£Y6¯Ó}¤vr1Cªó]ó ¬«{c½©ïû FTx®栓ˇ&%£^•#f|ãi`§tRÄAtX}Ð;ä/<Ƚi¤Œ© òrÞHHž2@µŸ §«®Åä— }'´ÌûäÜ ]¸˜eæ˜ =]œcxsÜŇ¯…ÄŒ¾a ©8ì¾æ²6•䋼ÖÀi9oÓ›6¾ÐÌX HµÓlÕÑÀNÇö16>¥ØŽL¤“4»œHì¨iÆpò ì4C×÷¯™Øã[FV 3FMÌÅeëüOþé4oU  ¨/a `4\Éûéøbš<†ô¬òG:…£jqHN%žòpn˜.×­nýçtç•)<»Í1Þ’&¼‡ÙxÔ=n7ÒÃÖþkŽVÕ@úV8Ž:2äŠ=¤MÍhɇžÂu“ÂßšýÅ5ÉwÚ—/‚F1~:cñ”ö{“ùÅTJ€üöu˜âäâü$›‚ˆŸf§bè+X™‡›øÃ…³EñFTˆyýêSs•›¿@I‡÷NieIq¶V–…À«%^õèXáºæ†¦–•Um‹cø`ð×ôŠ ›K±Pk)Ág°”iÖ¿˜Î†3AJ\«?æB¹†  ‚ _r_#ÝôˆlûdËCVÓ ,¥ã½õ2³_£–«1$LO0 “àT†ŠØ¹§Y~€ÑO¯øNýšóNK×L›sž¢ƒh.e«®ÃßE+|Ù6Îèçx¸p÷°µG¾NKLH#Œˆ‚´¨+åZ6¥6Ü Có:„µ\Ýü²9_/•_?¬Yn±ÒâŸýå‹Ï{²ë5û×ÈdöB%ÙÍá´œV-„?ôfjfGŽéncX±Ù±æ([mèªó<¥˜^'¡ ?eåœ0ä¬ëà :#ì0ãðØ ½ðT”ê²øäžæ·#è‚Àrš²Î¦…÷|ÅŒ¸ÀLDÊeDR42)º>æ ([Ëå*·î N.:‹™®`]ö Úœ‚Îúå@mOž f¸²¯Ò r:ÇzdÝæ“lËcahÑ -ùð=¶ ̜Ђ^ÒO‡—fE7¶vâòª‚n0©½È_³¡à>h¦‹ÄàXWîÑ;*bŽ'x'ãIz–}Ìpyƒé³ûczDÙo¼jì£(6Ê“•Ô_ Œ«{ðd7nntU¿-‡[I ÏaäžµèPj—nîh ϵ‘xÂqƒîSÅ€Õà‚.Ͷ¸º/l ZéÉ ÉõO„+-¡¥÷x‰˜,™és„ç)Í=Γ:¢^KeÙ+”¾Š‚dBU†@²Bèp ac~1án3z„–íáA_L8ÊÆK G+.ˆ…  DÐpÐæºë$>–…¤kEʘå ʹbÅvy—³tȘÄz+‰0,ݳ辩(MY:W¤MRÒêœâây!ˆ&êœÊ~s§]o¿N%ùÑ Ò¬ïÃ’¸‡³@+óÊ–G°ÃÞ´[Á‘ªécŠlÔ‚Òjèy½¹Q1¦eZø°Ñ£DÄ©˜Ó¯7o€€êMGð»×ã °„£?Ïš”n·ª hgÃþp~võíKfœªýÃ!š6[¯ ý½´Þ~q|Ðhu½Ð$€pÜÚk<§îAÀËúñ>½<Ü“¹q|:n‡fÉÄÏ¢º,`+¯é6–ëàKŽSA’s{û6@ìkÿ\Jpƒàð¹ÑÙâT5]á­´/ê”Ç sZ‰X®ƒÊ:`˜ˆ ãdTP ·“ÿÇhžÕšÞÓé©?Iµe 81ä‰ è'Peß"9pLLb¢ ŠÒ³@x{²¨Üß±ŠR¢™HA½-H»3NãZV*Ÿ±.=IœOUáÇ´ŠòN“‹5þš\[sôs™†pÏ €“ÄEý~딌»HŒ²Oé§áüÃøb.ܯeö˜EÝ]ˆ¬3øI,¼„Ô¢;|aÑ2˜/{5Ó¬JÍWW7eIùT«—\­´íàHPÐÙÎKÌÿ+Ðóïå5­o¾S–Ê1Ú*EäÅÚžê\¥·µç¬1biwŪ8B¹•[s±†n¥ÔØIPH©¿òÝÝcÒIÊë´`ÜÙBíŽ}™½y'¢$GÖ¡4÷€,W‘øùvRV%&šVõ#£5n”¹æÍÁQ¬Óá;ã¶½dn* é( vßpk/ô<,vÇ“-kËXà‚Ö> ªprÓãÊÊé C?ªæ¶À l¼ÅNï”›NÁ’îLXÁfˆúö¥Z,ÈzÀ€óލWˆ*¼Â¨‚)OvNØ^v™õu…MH=ÍïèdšÑY.ŸBԬܔg­síE"iÞ ¼Åp+`j[[ò:ëtŒCBâð¬obÜy…ö§én€¡ ¶9sVÈá Š 3[ÄíÙò¸»gQêç iV½yoË{s†—ë}¾ÿPKÄINºÑ‘â˜1Ži¤"Û±ºâD]øo¢^ÊP1šÐx;ô6ZX·¼¶èÂè'ôÛ\žNI]ðÅ=zQMž>UQ«&ÆŸ€¿¹¤kñî%ú>4ÑÆ¥:,j9pd³—îÌ®Tt¡»:B@ðñ9´ð®*/è[¯ÆÆƒ¥Oyàè+JáEÍÉcmdê)^}a2 È›«É{¦ÐróÐz> +_5 MDÐ!w¹W¢a1 ´Îšà(šuŒ0 ®sÎAÃõSG 0ÛÌ:€Ù0Áª?NŽh¾¤|+éeíÑù¢h¨B×.0\ü¢öçcÄA¢Í-ŸDâMàöR FRÊYË#¬÷ÿÙ{÷·¶neaøý5ü«œ¯©M Áv.=PØ“ø ¯mÚô´yücï€íØ&%§›ÿýÓ\¤5º¬‹¤í>øiƒ½–4F£Ñh4ƒ\Gˆ÷û‰>FKOW¢ÞôÝÕå`4ŸQ4Ž•§Æ¿Fí±»íãú®Úñ#o¬–­WÍ£f¬!¯[¯ZõƒÚÞ^‹^Ùµj;íøUÅz¥úùªóšV­WJ+kžò«gÖ+Úxò«ç6òØàâÙX½XZ"”IÔIãŸä®ˆú˜ÞáÚIûu)Ÿes8{¿,jÜ”t½zsϪõ”¤_¶êëxÙn÷Ÿe·==NÝJ n%gÝj n5gÝgºÏrÖ}¨û¤ò3ß’ƒ¤ï‰Aòe¤¾stxPrëÁ¢RV=8Î+ÙõVl>NjÏTí­ˆ>&·×=®×ì6ëo:ñ¥§•ÕÉ`ðav F*tÛ!0€CHtÀ]’¢åßÇSgQòûq¯ö²b‹U»¶_juwŽN¬ÅÛ\ŤnÉc¥Û´j›6ãÚImÂíE¿M¸‰˜Ü&Ötnªi-Ý~MsÓÓâåøŠg)±&_ƲÆ\dL›ñuÐ’×&ÞLì§¾XòÚ”õB5åÝÉxîY7!KiØêë¤% [¦:<žšÜщØg¦lónrõJ°z%oõf°ú(P]k§>{!Ó äR%IJAqŠK Nšµ[ 4*6ˆ•t?7:¯É±Á‚ ? .RM•\*ºÇ'¤[/_.ñ è|ur%Të0A%ˆ˜ _œ%‚VÖ80àc ‡œ ¸yɱ:H‚¦S˜A8¼•"`w$F D›ÒÄÁ‰ Ål0_%ã¶E¹Ë ‰AX} ƒ€cey:ï /\BD¡yú_'‡Ç~õ^]Nªëmi "î¼áðBˆ# bB"Р䣣vÆìƒÕñt:³:(Ë‘ð§‚hìK=;±:<·´„DhÙAx™¼·¼~¤è6_•|«£wþ MÑhî–|ÃQßc)Ÿ±cÂÂ$D;b¶ˆæ+ ÅÆ"†q0)$f,ô–áÂÊ*ºeZr/D]èS1)qò€€íNɱ ž3ZÍ‚æ]Ž–=\XzU)ù°ôÒ’H[Ë+Vh¾H›k7{Knáæì̃§·êKùì{ÔUXw%£,AB°ZO*àƒç:䮞U˜—‡oר<†¥²Ž±)JE¹Ú Öq}ò¬"€s"°¼ì¿Vx÷¦ïº`ßÿ+á®qrðé$7FgƒÑÜÚ4ÄgŽO‚ë;@…{Š6q´ 7ÆŒZ­¤OyJúhu¦¦aðˆ ;‚O¤UÑÕUvHÖÁ@fOž`)?n-8¼&08žR`˘üù´ÀÞÀY)œ­p/òÌÆ·g€¦ŽµÍˆ^g éÝuOróŽñfÜN'úëJªç$+|Ž{'F³'Ô’UZƒ ¸ŒÄ/oxfÓ ž.›WèI]‚Kä~Oð›#¬ìW6fn;~åcG`½p‡~BF{­Ô誉C(ys*‘^rÅN%œ‚"\À§@Ï’•S‰òë­ô†õ,lœ—ñŒïºïf}8ÇœÑØö¦7Äæh6T­B\Ëä©$×®†jW­ÚÕäÚÏBµŸYµŸ%×~ªýܪý<¹v3电–¿óR¤Sq{L$ÒÓˆ6ý†ñ|÷NDÇSÞ;‘ÏzC^X^¤C¸ +a Æ=|¡$ŒïÒt5±éjvÓ«>ººyå §$K,ftÁדHUÒ°äa5[ÑÒoX¥ò5?Z§¢¢‰ÂVk:S &kÑß¡}ÎYcÏTÑÚ—›¬V»t€¬…žçxAx©[ …á¼=˜·çI« y‘%/"Þh_¦þÓp8ÜÙ?–Øe ô<Äw°jý£Öa÷¤Y;h¼jÖ÷蘳¶»[o·¹¾TÝVãÕëNácqÓ¾æï8{’/ÙÇäöçѲ ­ÔÅ‚]o¼ “„\îoÄþ¦TeæºmÁe×°±gc´Òï‹Äk€,âY'•¾ßwd§?äÔ™(^'„=Ê¡}Ú©_IK5oNP7’ßn˜FÐ,`‡”ÌÚ¸8Ö `7˜€ îÐba#¬Á L¥¸ú$ŵôâDÊþçq œsç·mmÑ? .>ãÓHèš¾_“¶Lû{˜‘U+™P°TQ ¿V˜™À:DÂ-Ý^BëûcøÇ„§Þ\ ØOÉB§%¿(6áÜ¥i=æÒ8ƒa©Šš ‰ùÏU€æ&}o‰bÌbÆ×[­£ÖF^ˆÆ7ß|Sop=œCˆ^ÓU¶Å‹Œ²ðJÛ c«ºNÅ}Ðh£PÓ¿k,ã7Æ’‹ë•HþŒ­Ým €'•ƒk•ï]xű˜?0»µ¡¡É§8^QšÛ`Ž•ñ^FÄÐÍÝ=®X´yTöì›­ÈN#¤?tð©Â:ÂLUÑp¦ÐVÃ×Á×ô¼²ùjh0H…uo±¾MW“2ª·;|"a™Øog@i-è MU–ã´j?3 þ-¯N{¿/GÑòrÑA“*RñÕíeü”@è• å$ª@äÓh*­_¿<—RÁÍÈ?$2(@£ \/X™8M¢´»Xä!ï}"Žìqàú7¼¤ÅyYœ‹ŠVI¾Šhú²³su®ºz†Ìé•LÚâåCï¡h{Fo9H–Zjó:bJƒœDÎѦ0²i¨%Ns7ž«Û}ïXÏ\üÃôÖ`ZØÓÔª îgIÁa€–ƒþyêââÝ8_DÙ2Aèб5kU““>‘ªµæ/¢²ç†Ï™>Êt„IFRF†ªjâú®Nj§ ‹†èÏ ÏýóÀq†eÃÐ`,×ÿñ€  áËŸE Àº B^ ؈AÀ­€Hö&³#úvÀ†Ýq=@€ð`Ä·Eì1¾Žäm“<ì['ÞT2p œ.¾zôHÀ^‡0ä»)Y0uFÝôц10¸YóV%(“?54—'ÓA_錽39{Ãk³3czÓwƒyp™N씕É5XZ¾F´Ä\ #r)üÊØ$QH`ô¥h´°øçÄSÞ"àœä‡øN«¾Omµ ¢HL4ˆÖàœö §°ÙnBù‚ç”N’-•íîqá4Þ:[ ß]ñ•€º1]݆âݤð¾‹\3ĸ—ñJyp`“ â’p\‚jS5½‹ v\C}—f¨þˆÃ}QFý3~ZÎEœ`ÆõÿvöC+òÇ«Þh><pUþãÛ³Ò·g7œ ÷—¤ 7¡ºæÖ‹ñïƒiÉ~v5™¨gZ›—oÞ)–?û Ê<*òÿXÖ»ðÄUS¦…ϳJa;8j‡ÔA8²ÏRB®œ¨wð{ÇUÈÍ(7‘Ïç˜Ç]1£Óe¢ðËÁåxú9 œ^g'7s5#;­Zì=deTdó<‚Ç“!a;Jxˆ]bçe«}{mrš"wÜh}HÜ ›ž˜ 'Ú-- °EjîàØ8ï…xÁý,&èüüâjö¾@ž¯‰É¾òæ ZyB¹‚Ð:2$­ 4–þÏÃçïüùçÇÕòÚ‹§—㳫‹Áì)Ø)¯¦W—½§³iÿ)XxGýµþÛX__ñìY_¾xŽ×+ô^=ù¬•«Õ—Ï×Ëêk5Z¯”×ËÏÿO´~/=Ìø\Á,…Êï½Ñ;¥Jœ%”SÅÎÏSàPg"ó÷oòyºr/Ÿ% ±ŽÌ¢TËêéA{ªÆc¬ÞO£ËÞ|0ö.f1áqÀ°ì†f€ÎëF;jíw~®µê‘ú~Ü:ú©±Wß‹v~Q/ëQí¤£vkj?¸í5;­ÆÎIç¨ÕŽþßÿ«µUùテWÈeÍ_"µQhÕÛíHUh4·Ukvõv)j(­à‚]—"%RÊè qØè¨b£4€üšÑÑ~tXoí¾V?k;ƒFçDh¿ÑiBsû€`¤TƒNc÷ä ÖŠŽOZÇJý@´T·öí݃Zã°¾·)$TÃQý§z³µ_«MŠì¦úÏêåN]ay^6£z¹×hÕw;ÐøÛ®¢™Bî ñuŠ’"F]õ¤Öú¥Ä`Ûõÿ{¢ ©—m¯vX{¥úVÈ ŠÝ“Vܹ€j;Öî4:'zôêèh¯  øv½õSc·ÞÞŒ”Þ…S{·’j¤SÃæE-õZ}ß9i7nèSÕ:Až€^ý¬£­©Ú{Hã£&öYÑH)èèCPŠ~~]WÏ[@R¤Z hÇ»€&JªV=;¢³J~u€¶æ:¼=@?7”ʨF¬‘*´üsíìã vÆJáF_ë–pD£Æ~TÛû©ÈsaÅíóÌÑ>@jŸì¾fêÃ,@5Sm“®”PYž‚-l¾ö~™Â´™Ë@ücTq8H4¯(XžˆãÙ9¯ŸvÀœcq¦‡× DŒM¸¦aG}ð=$»<(ëüh&(Îa®"çBTDSƒ’«ô´Œ¬ÄÇtRíkº¼s‰1÷:L×50 en˜"©ƒÆñÜCý¡ƒb«'(Ç»½³*aß…³€îûAï,³ÑŠ~Š—ãÝg„›>Œ±êûjµ÷_'í%˜~]¯í‘·5š™Sj8·›éñCŸéœ=áógӽɭº‡‘Ï»VÖïèÒ#õ‰¢ýµS@Ý;Ò D| £¤kG¢-²/…Xâ˜3Ƴ†k{! ÃÿPU70ä|1q™OAÜelFÚC+±[qÏ>ÚÎ[yz¦†‘Ü»DGéÝÁL™31¹Ùƒ™Ýƒ²œz+Ð ¾ûmý»ø$BSA›P™}nñˆ·3@Ä’[ 8î*½²NâÚò‚»ŒhlPûº¡æä#ü¨Ýåàƒ÷ã] 4Lnâå#cú‰‘K-ô•[pȤ(õF*aÿ¼d4Q⇄ô_f@0Ë?À8®b„´¦Y›õ‡ÃÎø‰ KX²Ô˜¨Îª ëëß•ðo™ÿVøo•ÿ>ã¿Ïùï þûò»A(3„2C(3„2C(3„2C(3„²Pa†Pa†Pa†Pa¡Êª ¡Êª ¡Êª ¡ÊªÂ3†ðŒ!®·(çWíÓÉêÈ ø§ÄêˆbõäA#¡¿‰ óC™ù¡ÌüPf~(3?”™ʆÊÌeæ‡2óC™ù¡ÌüPf~(3?” ?”™ÊÌeæ‡2óC™ù¡ÌüPf~(~(3?”™ÊÕ[k$ÿžtxÐHøïƒFB4úû ‘Ðßœ‰6“òq5š ßïáìýx:·´]ð ôôõëgëëß—nû׆PYïóßÿä¿ßÿ&C¸;·‡Pùþ>)÷ÖþKnSÓ‚ðòûS|r«¿A·ïÅË~¯²Ðßgê/áðL¾Tú»>Ð8¬‹'‹þýÂ2ùÁÌ ð<,Ýöï„þM! A$`ôh´ºßÿü?»å®wó`úx0}<Æð߇Ãúû`ú ¿¦ú›húø;où+wÞò?˜>øïËïnsc©%'2jÉÉ ý}8‘Á¿j ÿ}PKèïÉ ýÍ}"ów¦Ã‹;ÓÁ=‘q³f¹W§ @†RS>uç ‚Ø—[ð&Ý9iÂ=@ò>~ ±æïÁCo»¨ßãÓÙøb0œ­Á£Ô /ƒó{½?µøUº @° ÝãÞu°ýñÅäÝšáS<­B³Ñaob\wÿˆÀ8 ¦§e©mðIE<©â“ªx‚Ç:/ž‰'ÏñÉsñä>y!ž¼Ä'/Å<0zñ½x‚Ç\/þS<éᓞxrŠONÅ<${ÑOÎðÉ™x2À'ñ䟜ÇOžÓñĺx‚ôy)èóœŒþ‚>Ï‘>/}ž#}^ ú/xl[|*Þxl."¡ŠHRqØŸ÷kó1_…»+çE¿E(u>_–¢Ç” ¢ŒÉòDÎ)EŠJ3›€yži6å«Ï ¹ `dãY÷ô3ÜßÈÃQ,lÜûDâ\X²«IÐ0dùà2ªf¿¾oýD‚ O+Éu yÜ\óÀ ëo×0*3]äà+æÅÀN|¥þåmF-Âå‘'„µ/ —­{”„⋊/¿Š«Y(Êën²ÒÙìÖb€'×’€Ûµ;1›ÑòƒS‹MëÌ·çë×g þl†É·h.$0¸ß;ºï{Ù› |Q» GJyYÛáö{›61že«w&ÏŸyé÷Ïyî!È5]œ¹­"¯í‰¸ÒƒåHÏË[ÏKoxž;Ã3›ý†Gäì< ·§Jîqúnö]¨l9±ìRa-tÊÉè¤õ»öw¡²atÚ6:•dt*ÉèT NetªÉèT“Ñ©.@j¾Ábî{ŠùarÐç\úå<‹4¼~”À£É£w •⑜4ñ¬ò&©rÏ8î‘€ÅMpORFãywv5™Œ§sR À+˜ñL{£w6 #НBû"=¨J¸vÇWóÄ-—(‰ÀAvmZŠÔmuÛ'ÇÇG-HØÜo¼JRf†3 ñ1üqê»ë×ë½BΨ´FD‚‚o½Wô¤£ES%Ñ1gÃÑ»‹A£éH(è÷±€ï›7b7–O]«î*ÆG¦Î®àw= ÖÞm4(ídç¨{pô3šVV8>‰¢D‘®ô2À*Æ?°¿”8‰#ç}L!Ä Ø£ù˜gKdbt"aïòtøîj|5 Ó:Äê.IÇØæHÇ5™èÎ9½Ó„i´%mð¹v¸ÓxU@ºxY¬HÈ ”xIÄqø1‰ïËn/3g˜)ÁSÃ'5P’c´ˆ¶QH¨Æ:n‹½Ll_B–›òúzô¨má[)î§ÚAcO¤Bíª'õE1  Ã3"Z|34(Ë çPG¼+¼Î)T{hLÜ<¢ù°AÝ7Ÿ{6ÊGnÐ.›\v£Ðºø½÷YéfÓ«L£«œu§5•„¹ìÍûï<Ôô `áLª4®é´Nêøœ÷ÔRxg„rc´_;hg¡¤Iô©w1<ÃÙÃ¡í³‘¹¨TÌ1è¢êö(g$ŽÚâ¬g‰áÕÌò÷ÍÁÚÓ7Ë¥u/WRcÑÅ}ñ2 ˆÿBé¹ø,©„u²ÅæåéÈ—w‰3¥ K:˜-idL0Ÿè£ðVT)°ÚìŠu$ _åpYÈmH+ì>®w:*Ï(úAí°¿ß„oŠ+úŽN“ÌJÏÖXlòå3ð„?ÙK¹;!£€~#³I¯¹æ¡S;áJ_˜˜}új’Ž.%4‰„í´¿¡Iâ‘<ƒ Å'O¬Á½‰Q±’…3>%‡îfÔ6Tâ8Œbzt½QX{ËÁiLq*^Žá]>=…¨¡¸?–îÒ”¢7^žV²UªxÓ"••õõ¢mS®hÉTaìVŸåmÕl¯í¦áã4ÿÌ4*¾C·*ž6àÆ ýPˆÌ<˜Jz–œ”F¥¤²ÛÛQô}Qª–0Wݲ¶ú‰ó­¼d¢ÎÂt‰ªMŒ–?Šç¦(Ò"˜ŒJ`rrÈ—$¥äŽ rVžyäLæ5°É¢–#2M&B.¿Èùpÿ¶ã? /¯.»“éx¢ˆÏ]LÿZ؃ì+P®”æCÕãñlx½3íõ? æõÑ|úWƒã¶qîç³íY®]Œ®.!_Ÿ ³vÐ<9TOÙ-Å­3yß Õ9~]Kª³sÑ}ðëìÔš?&ÕÙUø_øuv›ÖAR½á»áܯ³×xÕè$Õy5íMÞûu^µjǯ“ê G†_õ—¤:Ǒǯs¬îDÜŽ¯FýP“ænbö¤×øuÚǵÝzRôÑ÷ë ¯R7šØv7LìAÞ?À;ð8©ŸuÂT?[+<}¨ÁpKÑ*øh‘Á¥bxr¬LNõÙ:ªuf‹áÏ%ÕCo‰tfâSUPM¯ÍHqžœê„mÑäÔÞHðJÀW“M*2Íá1ÙíTË£þåD6]Š4ð’R´2kÉsÊùn] OˆÿàqëH tç—n³v˜¸……_颸`% ¨ÀzE; -ŸcÚ5£o±Íª\ùÞ·¾¢ˆ‰½h%$8Fs‰©L¢*bOœÉ4Ï T%Öö¡NóïD”6k ¢žÁZ£à=Ú ­SDR•N5–À’ÿ@Ä;10En«;m{dR°)ØßÑ—•§Vœoøz]‚ ÿRRloÛ„`æ]!ð:¾pßD3—ay1¨žŠ¢kØ‘1†«du ö®MC×:*<–ÒÛ±ì< áäÏ¢ióiï×·.ëžÂ#‡R೑oqéý:|‹ú$ï´ùlµì µ4LÑ~Ü›ö^3^o.ð ®õ‚pê¡È ß«‚ª½yô”vZ§ˆ$>ù–ž°O5†ÞZ>mFƒ-* *£¥Ì mö&+?_žüoïï˜cl=5ÿ[åÅúóªŸÿ­úÿík|ÔN’`F­:ÊŠ×KÿA)1ã÷ž!îýC†¸‡ qâ2Ä=dˆû·ÍG‹Êqm÷Gõe¯ntL9ü¥Ê­{åâ3:´^ò ºÝWÍ“ÝnWµñCQ4ŠºJõ%!7èv¾W#µž]8}UÒM ¸„ÉU…&ŽbhÛT`‚ñ hKídè'Ç…bŒ%$Ê7‰Pv_×wD ÝV½sÒjZ°ôñ”@Ù숬± ÓnaRúÔ»(¦Ã*@‘˜JbG%±Iʱ2)¢£œöúj©Â´â3µ ÎéŒ&CÞitØôÕ¬ÿ| $–¢Tù‡³¿+ª¡… ìWÃw¡Jh¢M¨„ïB•ÐF›P ß…*¡Ý0¡¾ UB³DB%|ª„fÚ„Jø.T M •ð]°j“*Á»P%´Ô&TÂw¡JhªM¨„ïB•Þhš*½I¤9؃¢„¦à]˜÷š'‡‰¼§Þ+Å*©¼óŽžvŽºª:¨¨ž¶V9%“íZÑopð¬lmz§S‰ˆ%ÿõ/“\ŠY&¸jÑ©•ú¬€¡W#Ø2¥ºvؘ­oÂæíM¸ç‡€ù©©@’×1žîãÙ¡l†“¹Lšhùg·Õ˜½V,@v!ä4㎬]£Ùç^‹ºœ\ â͘îÓ¬ª]ôF!ÛDÚfÞ׋޻…ïܜ׋›­&ßNKküž.¥a—rE1³®Ìå¸.·ÀõÌ»Ó6Ç¿/Þ‰/?FYWbН5”Â7$jË iX®$`ÙN†`c‡y|9˜¿ŸÍ¯dO]Ëa/{ÞÄw )C-g»”n'x¿ºîB±÷;Îî¹I™OÛÿ)&”íµ8°H–sŒ•‘Ïí]îÓ! %M¤åp4³¹sy„ßW+INÞw†Ÿå¾m|A‡çâ¦7ã/¯.æÃô ž0Ž›s”œ:ž/pB_^Øø.“·˜¼´ÎäžÆüTÿ©„æ‚>T)\‘Jùeñ|+ UÀ+ µ%×+õVûìˬë%q¯äHÚ©Qºêwÿ9é^ŒÇ®&öˆ#ÓÁ»á ¬44±hó¤À•"óÆj¼sr7>û§êò}7ýô©lœê&£ yý¾±<Á˜=å&ÖúiJ–Æ#Ìw›Wóóò‹nµr[Võ÷® ¬î^°uÓ‰{h Ç^o…åKî,4Æ÷·ú¥-<6_j‡Û#N:ûŠínû¤Õ:zUëÔ»ûV»çÛd ï³;HŸ£^œ}_L«Ý®ï5÷¨z¨vŸ Îp¢§{¤ú<˜öðr1n=…A¬3í2i ÃØž`c ôrVŽžDª@Ñ®XÉ®X V¬fW¬+–»'MüÒmžb}Õ_Õó'å·®™5+X³âÖ¬f׬bͪ[Ó`kzšDXõo% áäÊS¹š„sr媩üÌC»©&M·ÑÜ«¿¡úFQýŸ›Ü 0ª‰„O€ñ,# k{{­îÎÉ…Ó«¥¨wv6-Fgãèßôõ¼¸ºrÔÜ#D /æ¨~ÞÀQ-ò)ûͺŒãë¤Ã«, ¯š¯šϪµ®ßh¯Æõbø"h`Ìßnæ+YÉ]² %µ1{çóÉúúãàsàœ—|ô´ÕÜòè‹"M¢MÓRŒðX%ºÂG݃Ï!]yS8š*P¡œPC­†‰u*·¨SM«#+ÝÁ‡s3N²‡¥p°„Eϲ“Wrœ'ÀºýÙ§S^ûÓ²õßf@ó¤Au’(¨K¾âœ;õÒÛÍ…j;Ÿ;šIŠëó-Í®í$ÑÇ9hF‹ƒ4Ì·ÇÀ4‰p+GÃëA odÍÁïLo®¯¯ië X‘xQí†#W™vqos=ÛéˆþµG¤Ž~—<ÄNFòü¼‘žÊø÷?ø÷?ø÷?ø÷?ø÷ß—¿v ‡S›Ñ]õõ³fó³áxíývÄoŸf£ „.8/õíðW|]û©ÞmwöÀq\Q»szhÛ†Ó›¾S€Œòü©§¶hÃy„A¡W:-ÂôªÀ_Ú'Ý@øÔS«Ì»Y^E7Ø«vqm3‡– Ézó‚…‡N³âàF(w·e”`` Í”¨é¿XçGjBöa­³ûzƒ/ÛnEË—Ã:c,oÆQÄâ ^DVQs4ŽØíŠ£¨tÉâjŠ21nùÖ Hç½á„¡º\Ž•Dg‘~è…èÚî]œ§Ý#5ed· O«j ú”˜WË`¤Vƒi"<%¶Ôfi¯~Üy†7éMUñ³ÁD‰ñðÈýD’ ¯’ 1Oñ §WïŠéø´Ú‹3Bd”îÜ“ˆHdÃ!ªä©}ÒÜ«ï+1µ×Ýù¥S‡Ý^°C`kC¾Ì‚¦–&%ª“À)]nПç‡Ç>²Âs–np´ëՆͷÈÉ€¯Å´J%ˆÀqp–LEXNöÕz·µ«–A˜ŠM:°;ÿ¹[á×5É4ýÞè»¹Ž´ þ»ÒVqF+•a¦z«46Õ_¯DLökhœ„ÕÖøïz`0RêÇð‰pt¤ %(O`U³Ø ýœàXœDõæžbÔ~ºµ%ÛQëD "ùMzs”|=8z?Ÿ+h fQ¨?Ö;9à~¤à{xÜù…b‹(M¤Ý–à.'óÏ(kW•²7›%OL¥Ô:J@<öÃàÔžD  «é#‚†™ Ùé7]7Kîñ`ÖïMrSñ°Þ©%ÃR //$Ô1Ž’)vŸOÇ)Ò¿S#ÃQû¥¬½ pೊ`öY)Ø×‰°™ pŒQ>ˆf8)|´Òƒ_ɉÇT-÷Wn´õ.Ô†’ÓJŽäl…¢ g¶sÒÄeRI-j¤Ìþ0ß^pÝT"‰¬ÕZDáÖ'«N¼ªS7êÇuÕ-¸l÷!H.k)*ZT=y7 ¾ &Õ7pîéÍÕʤ%³–’·h”…\Þæ˜_Rê:¬]N+R#Ì`ùr@çŸ]µ_¨Ã¢¯$ñëz»“þÅXÕV‹¿Êï³a>YòsCé4qSáF䯭jÜê¢í)ÞzÕ::9N€®éÝt|5É¡s EgØõ¤èœª*ê•NíAoôJ‚ Z@T`!½ ¢– ÷àèH)XõטÀ¢ûàǶz:x?%³šμFó7:sMÚ?жtÇ7ɳæN^wÈŽ¥éÎÇãètø.]]ž¦i¸Vý®Ú–[È&ÄÝ›Ä7™ðìEmXÔßÎëZ“v‡%4…}†©¬ö4pqõ}oÄÑmñ/G³¤%Å“ä$© Dn–ŒQºdÔ;/ZªêÍWjVx\Ü~èMY¬’½Ã÷ZÂ8£;0N‡j ß=Tªroj®í ÑeoôÙmÜúÐ(˜C«–Ú¯a«(š¢ÐÝNSt,è´E.õ™ü¶£æo«¾ŸÌ·§jîNçYü«gÃÛиØçXüøs͆ÿ¼PãFþÄOO©#‹shN{Á®Õ nÝ#8‚<8ÀETýU“@®it`ZyÚW¼¯—O¾x±À¤Œñÿ²YEiž â9Di Ø¦èrTþða>¹³°òZºòy¿ûmý;'ŸíG¸*óÝ·øøÑGŽýH<Ásp„øîÛÑw¤»ª‰û(–#ŠÍu'H‚3[бèº-”®Õ„è« cá²¼=]6(iž§tO Òbs "/p>˜éf°Äžƒ±·¥¸ûŽ×õÚžVëâ‚i™÷\@23þ!&£¤ él +3'/Ÿ”yZêi¿5¼ý´Z¡<{àeè%¹%–щúº𙣥ët“¢¿(‰n#ñNg.Lï5³2Ú§ Z$’D jöqbîï~ûÖB‹ÖÂãú(×%µôÔj(¦%3‹€È¦ƒF¼osrèAçˆh®LŠeG'¶öŠb@MSºå ?ºó@›AN¡ëi!Ü!“Eô†ŠÞ+ÂóF²ñÆ«æMvº‰‡Ï_ì“yÿïQÞ­Ôû?ÕõJ¹üÒ½ÿS~ñÿã«|î÷þ2Ë_ìúÏCz‡ë?×®ÿ<\ÿù’׬Þä>E~Y‡'íNwü³Úàr´/<ô±Ä’tnHº>û?(NiJ¸áÄ[úIÇ[\ö‰U8´Â85@Î~€å “'V2†"Ö/ºIImûÄÜ:Ãäóðî|:tÏÕ?ý OË;êwSÉç%îÈà,ª.YU&½iJ]'Cìkdš ,£÷Ç^ú<õru{tuÙí«ÃÙÌIi‚µºME!½žÜvûÝuK‡¬†a„øvÑàÌÁÇ›¿ ]Šë›¢ ·“ñy)½9¼ãÃÑn«þ éG5d0Êd•!'‰-“fð&eP3øÇ4À#m½6öÏMCÓñx7ÔRSv† 1e½D¾‚ž}{œ¦BÊ®™z°`êŸéPéf­–;›ö2àõ9”æÕí}þ¥À'éV42§=TŸ¡ü¶)JǯÉzf¥–Í#ãX¾G™+¯òA­ ˆ’úKªbøDáìIÓ!‡å‹qU½6ѳ¿¡ÑÈx³vn‚ aÅANi*1?ø«”î ½7‰¦³Y$Að1q©a×{_ÊTÂáÇã6 ­‹o° {qÆ¿4Ø ›Ù«+4Çj (¢¨®3.¨`ÓJ(”¡fcMÒN ¨ún§~©˜„¦£~ Ð¤áÅê&MŽG#ÖeWã—ÈßÌýœ@b:jå–v{EÁ¸ýÀ—ì q:çéÞðSS\Ãâe+Næ-HQ®n±TŒ”e WZ«Š‰˜§Š™'VS È;eÁÂØdÖܰoþ3¬@‡´¼Ç(~)5÷Ó{­#ñ¶-BžIÿ¹Iýa¶Lœ…^âsôÑØÚSÂfo]‹–_ì*»‹hÏýùoæ‘5ô1iBÍóD„Á7Ha á ì™ÍN£7‡À€E—²î w3‘Tùí-ŸÖRÙË ‡‚ð$*‹¥cja0ÕL¼d‹®ÞD¯tR„Ñ ^èBÙã=1 Þ)ÂÝ‘:ðá€Ïbþ;± ˆâY±î`U$÷ŽíÆŠß˲zëïÑL·i«¡áëÇ!%™ÞÑÄ÷H9•¼:M%½¿é%ž„犋/ÎcΜž‚’èÛ±ä6oÙ‹¼÷æ_›v´4™Ò©zjË £s¤.Á°(îäPÃq¿tÛE³ËNÔÆ“Ïæã’5né]îÛZj±Ó»´¨ ÄlDecf.z©ù,B䯒ÖKê™l Ô ®¥1¦†úóqÂ"šPV•C¬+Zk ]é—"Œ´²^ÇøM)òòQ—upÝ ÖIïÂMHÃsŠIýŽñ#UŽÊÑO Iùš~j9 „Šå"´¨8ƒÖN‚´dŽÀ ì=XM5êæÒÓÌéÕÿ­gl½˜Q8Œ-¯Z]-£O7ǨB”¤cŸ~fËÕã£céØÝîüØ­Y©%Ígýz}}½l•”×ÛáXD–¬X%•Ò-KX%«€ÖûÞèì" 3¥Q0 Jy}Ý+Yoîùí}_qJòmñFs×…YuJª–;uλ|XkýhJªÆ×¡=uY}Àm/‘]Y¿®®;퉒²+ë×Ïá¼_;ñ;8Ï„«½ŠA/Óá™Óš¡„Qέ!çüþò/¯By§15kŽ»;¡A~Á .{ÓˆõráÛàºì á¡ñÒAo=ï·j‡u·ä÷Þƒ‘!ó?’?5<ž¡’=Aòó¡"t/:½è>à†×žg˜NuuöÁZ}Ü¥Tçüúù¹_²s„qÍk¡’z˜áÆ4\Ÿb”õ\P˜[ì BãôÛ‡Y W©ëm“Ukí¾Æìµ:ü‡màl fËÂ嬇ɔÐÍ´KW é»Q‰Õw Kg¨€ZÅ5$Zw‚Z¢ÎK¿¿æëŠø:†]%¨…È”Ð{ «‰)f"愇(p:˜Í)…O™Ì§]µb ÕBQ¯0â‰|v9¸D[©IA(8Hà¿%õîLÿdSÜm­¿9>8‚ Ç$—ãÇ¢xçd¿{HÆóÎëV½ýÒ£ºX~‘R'¦?x>âÅžñù¹ÚkÂ¥¿@LjæLRñB©„p¨ËuaÛ([ Ø¡ƒz³H£Ù7Iñ®Ö–ç¤ m!ä"î'ídãO¢—E¸^WÝ$ˆ„8Þÿ¢¯N«0ô[å.påè] Pù ){º#ÖVÎQ¡Csú.ƒd©˜Ióôêü\0´Ü«7uET~B*©.g€eÁøÊ€ŠO4M‹¥h½$ææõ…<"ÄjdŠ7Má0è.>^T ¢7ô‡eÒk{?»¡uÙÊIÈà ån&O#7ÖLÈ¿ýV½Ž€ì¼ER¶ém¥ýpÓ+@c~ü#ŠçE ¸xØoýµ…þídO*ÍòËÈX ‰Pëw0š …4U½¾nÉJÜJ($  kœT#«Û¦ef ÎæÛïE‚×ðI÷.ómE²¿ŸÍ?Ð[s¤Ý†÷LðX,ÄÕ݉§>O"iÆÁz Èžâ›âªXŒÓu·LË6^ÅïTçѦ=q %ôB¸$ïÒÂ(`¥Jî^€2 o·j‹ÐºÀcZü»ŒÀy3(»,Ê–S)+VƒÛPößž°±“YxH&´k?Õ•@¢ËyÁ@ù¹lš¯“òàð…RƉN±föÕ[}ÓÆÃ›¸Îà2Ò/ô¥MY´$X©Å¥=6tàǵ¨øfxQ<9ÞÃDšG:(s«ŽbDSšê.Œ¯ä"¤b#§…?iê‰ àØ~H½½h€¨ÑìOm9@ŸD¬Óû ®®nê2&²ãˆ¤˜¿³¬6p(eT$ãÃ-K[>„xxØÁ¿Ý&~Ò! ýxàäc£-ÔT|TŽ1öº4’ÔÕ qÔÀ¶7Cgód˜Þv€÷JßiM:ñ#ègã«SE04†ë¹W¢;¡˜Óµ+Ø™¯šÙ²i…÷r•1™t/e]ìRmú§&õÒê<hb¦ÀÙ¼„„?Gƒß»ú u1Ì3(e?·0„4ÐÜ;úŠ€ohൖŽ›dˆŠ¡üÖȼ%!kÅ;>Á3":~EîƒaÊ}Î-“e!’v­l‘+—&á}AJy”ˆö04JÀÝÆ®+ünâÅÈñ´qÏÎáÕ%Öm˜!Á.Xâ¡Ðt„~†YmÿCÓÕ>Æswøþp£¯xŽYóÜ^Sh’˜È{8 Q´å¯œ8RúàGÒê« Û7ýYviœ=ÎÌqf­½ë÷¹4µ˜^&Zq§½VÀ´¨“’"TnäI}[3«7Û'­zaT|$·i“AH Q1ÞŒ°7ƒ½dÄËÅc9ÜciùØHKøV m>øR^L<ÉñÉzt¹º|¼IJR‘Òl T°Ö) ixøSê/½Š÷Ú.\œ¤AYÊÓŒ_Ä\u›9>i¿ÆÐѬQSG=Ö•‰( ýlã‘ÁV$+mÆÍÝ•QÍ5û|€,¢ ÷qÒa‚Ι×ò2dµ ³Ò M”­²0# MqY÷Ëñåiwp=!c »@åW£² ¹„úSí ð‰¡ÚŒìX¥T@ØXÜ|m%¡¨-WŸŠÄñ°_¯Ÿ~ù4 å~(\û}ÑÕî©Úº3¦õE¿Æ¾wDHcbç½óµç\‘!jm¢^ЬG¢ñÞ0ÔåmÉ>?RŸßHêú¼-8´Y]'ÓÁ§;°¸Ý ¼5J"‘„ЍŽj)ªX-\  HaÄÎ/$aÄKÖd3œú·çP#¦Â¢=Nìíñ¬©†÷¼SãæL±¬ÁcÇ€¿Ì¸RÂ?"–2ðnAºIrÍn#‡B”ôiéÎyYÌ¢[L²tzH!'»ë/Ž(Š´ûv²Ì§óá<îßLZüE„AŽû}Îñ³CÁ‘˜cpàx¦[£‚Ãkk #G•)¡Ë „í;΂.B6n><(“‰[ÐÅUÓ„ËJˆãÝd#+½ŠN-ÕP3äñRž•"‹wòHdª+¹‰Lxkx&OÞ·gÅÀ{ž?ÉÃúã+HT‹…'v¨R»$Ò»ï’^VÝᨿ6ÒŒ&Ø‹bg\È —ŠFJmZ ;S]"w9¸ÔGÔ.(Œ8ò¤¼Ž–1õW€õÖ-m<¬·¤%U” ÀPeC[×ÖË…tÀ¯ð6Ô®7÷nOkU9ÒtN£ò"4N£°M²ú.N1Z\/VÑdõá,ªåC zåΚB' ¸ŸFV| c ~ç°`¢maäbE Lÿ±m ðÁß³:nm´i5¢÷ñãÈî›îœpOAÌž<áv¤o´ùÁÞ‡Åî¥y@SLhì85(€§Õ°é v·È¦2ºÚ>”"ž2À¤$=…â†Ê?D¸áü#&ë½v±À~h[‘5Ý6oMmpKÌ=Œ†š>b¦`„1¯“1Œœaº±PýÀ¸§ŽNS׋·Ð¿„s¡È øH»_Óv}WÞ‰2Î^a‰c»S#·í…#®Sû°Š±«oaa)®+1_éîù´w9PªÅ®ÛNó(ßa}½‹Óq JjCÚ0‡>©{õ“WNÛ;µ¶ÙÕí3RIQ’NŠ$lq{®UÌÏÓi)ZîÍ£og¿–±6Ï ÓLŒ‹LÓÁ÷f !{sÚDRöQ³ní‰VEß°&GËVµeô¡K‚£ãØ/IGNŸŒ']Üy $ƒ=¨ÿT?@Wª ê5Ëϲ$1–±ŽŸŒé²ðôÓF>9Óžßl|ueQêÛ–©qÅ`׌”¿¯þE•{é¡Y Ä„pÖ%K–Ûjš­Ê¼%-ÃRí6íªZ?s+FvU8™uÖƒ[†0~_T¯þo£z2ªñ¶ÐÂÕœð„ö‰Ew?+hŸ£IVPþ*´¹G¦k2Šo:ƒør––£çJ¾Í”ÚdÌ¿A s)[w^Œ]o= ·W¥ÍǦ·dÒÌÆ|ýS¨‘͘¹¸Ð»LxÜè€ÎàJ§ôwþïæÎ6n‹„Å#`ß(ŒgJ¾D 6úúäØÞA@±|ÛlÕV(¶Òm¯`Ã9îà5a÷º»ÓI4òUh¥O¾½âMra8ƒ}qixVæÇñèî´‹´IçtÙ5A8ÖŸÐ6~‹Nl« u /^2M m"¾|•fˆÉIHÈG&¦o!û‚ä4¾‰Sl^·¢¿;BÕäâZÝnrM"Û”n‹Í;Òj-iwäX—àbéט<Ôô×ßàÐ}CC—8àë ª…©Es²™½l½H°4;}ÈÞc:]Ö.[ÁS§@M‡^¯½¾Ç î4ð”¦sÒ¥ï>œÎ»¬b”,[t±è· ´",Òš$þÅ›sLþDx&ámp(ñ÷[&«¼uö †ŒšÜåÌlG|øYìÕ2ÞÁ|æÅiMÆ3J>Ýß½ƒ°¢O½ëÒº½nc·gˆÝóñÅY÷ü¢÷®¤0˜¸(…o:½ëö/'ÝaR”`Îm§r¤jGP³Ýòˆ¶1fΉn|{5²Ûð’ÑR&o»Å¥G™lßeˆv…€ò—n²(2}Ÿ^—•I[v÷! ÈaíNÛmÊVò–]™”!'£jvE­-ð}Æß+›f ÊHš ¥ú®DxÕKá % L£28å$²PVäCf U“Ì›<¤?ÚŠ‚SÎHw¼Í] Kœô¸²(œ © œŠ¸ˆ8}ƒù¥+Eqƒ ÞO[h—Vè'gˆ¿§9'½¢72þÄ €ã”’“Šþn®Å‘¨âR]Ù¹Tg¦ˆRíNêñÄ, g]`c1;èë•oÂÆrÌ@)o.`]´ÑLÏÌïa^[xÃ#žIR&J~v·~xÜùbfÅ‹%âí`<ç8”êîÔ_5špÛŒ‹Â×­-¼yæãý,vP×E j|ùm± Rº Hßž>´œ•uˆZ©åºSÐ‹É £"UxW3£¶2ëQxèªÛVÍXÚ:Î;i([¤ÎjRùdÑ9O¢&/3,4x½!GJ,ˆ‰pÙû00¹dìÕä¼~8ƒ“´”%Ž6ÞWóñĤEÇ+z˜°²;Ç€ÜE™4|šZc%NúжV>Lp±w¸Ð¬ dœ²µå·¤Ò^edé 3ÅE¬½qIÜ}Õ::9†dÅ1;T‡ð1Þ 7)‡0„>‰™]âÜXœk佉#!GÅx Š›Nº¾טF[I™9ˆMÜÆ“áÓGšèEŒxÝJ2“b%`À˜¯4Ce¶l^–qˆ‡xÎ †LŸ–áÔk¯Ó®{¯È4%y@&<Ë56DÌ‚ŒŽ 1þ@:€Ì–@›úòF„Q™1ȣѻ5.7¡è”;j£ÒªïÓÍJt¶“Ú+bÔŠ7IfRàGœXüƒYÀ['±Îáà²yu‰§—Á$(01e\lv‡cpÕFG¨±Ú7·4%Møó¨¬Ã[$‰N•™Î9XMo®¦ál>8#‡Ê‚”aK"WLFÈœaH"¢ÅðÝh<f‡h¾JoÊAË%CY—‚±ª?+AžÖÙÜH[“‚óÙ søŸêW&ÄgârZ¬¢«~†D.K¼f{„ê0~U»C)‹·ã [)ÒØÚÏÊý"AËšmzoU•º®¨jvÈ@To~f,†£${Ëi]ŠGÙPVU 8]¼qòE L¼Cò5&6QlUÃÜÆÁV¿WfbóZÍT4Fƒk4‘n¤–À0r.Ù´^Ì PüÊLÈNݶ`\o ‹KÙ 5®¡-SŠ6!É[+ž,­Þ‹Vú˜ø³!n¬_V:8ýa¾ž(A4AÎ- wdzk3Iµ."76ýW`Tf3{¨¤Pó¡èoúoîUë®üNÂ%Ûm¬xu¢ ïåò±dõ±´àø®ª`JIkì¶íD¹Æaýh¯ö‹µªÅOùáëÚOõnû—6¾é¾Žðþ0û<{:^ÖÞoëõQÖ9iªV÷¬W#¥Ëœ‰ò¼Ö(š\õçûÔ»ˆæŠÇçƒM‡/ÌÍVâÝ`…Ççg½Ï…ÇêE §šò?ã&‰w$P¯±¿_˜JóEqQß‹kóOÝ«ÙòÆÔsý¢*‡ÎÌ'®mW†º+@}Š&ôk€’í )gÉ´¹œå  ö~†Iï;"9ë^Aƒ¿~ßßÊÀÑd¼þÓ_+Ï_¼Ý´_OŸ‚¯M «‹ñè*ØQàCv¯¦ ùCðùFûu~§7}‡­¡P­q`9ì]ã½7˜ÌßÓ¢ÇÌUÍÂo:Û1_¶ß²Ú(:="ôÞ²åÖ K•õ3.KuY3Dx+.·œt V¦‡`’1 Ñ“-k<#°—l©4S„šQ£8n¡Q9] S ¥aÆÝ£4zuð‘ªÈ˜òOV-ãJ„’¦…ýÆA}%:wñä‹Kç¥hY¡Å7ÓQÎBð1 ~-Ýžw4iŒÎÇ É5úmêtÜWÙÆ·ßŸmDôOyýþà-) c(‰RòhRŠéQrZõ.ãÐr²¹ßF—½kºsÁTƒgx-Ë"c1ò ’–ˆkUÌ~ì+bUat: ‹åœ;Nv-—wwÀtÖl‡Œð7Qí¸‹,Ó G1VÙàÝøü¼«´5ó˜%Å㤷êÛew6Þt Ô£<·½†L´½X‹è¬7ïh£‰:F 5½…é\kœHG‘yÆz-Z£9¤F@úìAm P“Åâ–-жUÖNÊÝ¿ÀæÞzÇû·7W>² ;aI†Sdƪ§þ‰ƒ’Bxrïh¯µ¯ÄÍìý®ø_A&üK÷è†2'Á¼.Ù‹CÈ–"ƒ£™›{0|ƒÑ»ù{ÜÏñíœNìÝò V­ÁEíìlŠð`OlþÔvï#Æœ*3FMŒ904ZY Xh24\t²i2æôfQoô9š\M+ ÖHëµF³á¦ÿp%ÒzkyÓ—è7;Éoæ ëF¤˜õ?aE½j÷™ ½4:¸±õ\4ïm+-l¿‰äôÑ™.<Ñ}=Â|%HQJ]¢Kpb]NR ½ãŠ­ª³Á¾Úv!,{¦KÛO‘OŸ>ɘœ&æ‰Îh¢Ê¶Õ5è ­ÅͺʖÞhYÚè0¸Œêir«%Æ?”ë]Wò-œY.qöí \°å½ | ùAÛ‹X.îk ·r 3<¤/ˆ™¢×:X\i‡‹²¾¢O?eyÄ¿(XS¨qÌ)šâ¬ ~3sZ4{kçô4NvhFÈ ù¤Ã$ WÜÄ@Ö§ãù\-´¢ãlOÌ1ÂSºNÍŒ5B¸P¤Ð>2ÛNžF çN'xûëóõ·Æ”OGÏú§GµoŸmG¿-/Ǥˆ©@UN't2k@«}ÕtÈ—Îá#%î{D]W3R}1ŒìGþI©Bÿɰ¿|ŒpõŽ41uD_èðòÚÚvà™…¬R™ŸmÚýq*b-õ)›Šå¸â ö{=&ÜÕ|fòÅ(r› ‹>]X©^‡–‚² Ô+2MN¿ð]ôW_(ÆJdNuκ§ŸAà*¢™SxƒnQb™WLX­‹D‚ø‹ÖB7úÍ7çÁ€c¥ƒæ¨Vïzso#Ò:ý6 "àËŒF'GÛ†ï¥uÄOL»¹P2 ‡¯ÉòNqec42¸x…0Bá(_ÚgFökH˜œ°ú#mXVfø  $®nJZ…DnUø„±a5™×bM@ÙWÎâË +êÔ]¥SëDèGÇ 8dRô¤‚Tˆ2 ðr[tIæjÒj8/1•ÿ¢¨ñ´mw—ó_×ß®¡¶Ž¦½Xún&`Az(˜k´»ì,ß$¹òÍÉ\ ‹¾m–ú3Œ;nœaݺèŸ~mzà< ¶a¶ S9ù­u¾9ÙÃÈrC†:mþa÷:«Ï™`6sàÄ»q~­ÞBàŠÌªyÔQs'½™›9óÕ2ö&LY×j.“ˆ¯¿MŸG"­8¥çã™$: ì—™Kn+a¦³šKžKbØÝgӽͧ¯1£\bzY|Veå2×^=—”¤³<°9¹m'z yc-3"„ß{+ª$“0zD;Û4÷ýIt“IM1LÊÄQ™µ‡“ÝzЛ&µí<Ž!Rë¶_ƒóN”*ç¤+Iä‰9§(k"‘-ËyeEHuó?h‰µJß¹‡>äâóCˆY-…qJ×U ‚W„Fï¨U»cãæ5k~91‡í†IŽÑ4o7à3Wß,",[ ÆÒR¯5]Á7r›±pFc€"µñ »q¶W–‘[ŽÝ£æ^:ÚtÈ‚!Ý[uAL°Š6cަ(G2ÍR`úÑ›às%ÄÄßQq¶I€ˆï jã³@[f6«‚Kuç}ïÓp<ÝЇÚçÃél¾*Œþ3Ul-`Jò„^²·¤oj»²½+ÅGEÜLFë\Wú¤Æþvä©@~ ò¿V[àÍhÖ‹d-û¢E ±õ¢„æòSVǺÝ@ßÔSUðšmÚ‘– ‹ñï`ʸ½`*†‰…wÒ®€1Ç—uŠ öíÚÎA]¶yrÐitÁ³ÇñQ/–B*ôYÔ‡>ghÔ] Y„-*? 8õ;Ûg掮pö8>RÆ"Ç {—ï¹’—u*>ßTŠ!­,>rŸq@ýYR}§'ýñh>] 2{Võ{V ö¬ú…zöW!Ä3ŸÏ‚„xö× Ä_…nÏ}º=Òíùß’n27}27 AÁiY­:¯:¯Ñi™Nu'ÁQ€wæËÞyPøÚއÁ¥ùÆí5$ ºsOƒËtsáe.N^­3Hi®åO¢'xn.ª gN¾`/Ö"1Ü)[»’[)üùR:Âí´„4=!YSë YÚ‚«/5„^ön½##îTšeUå!C¥v  ùàã?uiô&ÓW¥×B Яðq~/þ-–È¿Ñè„ç¶ë*¸­,²¶&vÑïä-ª„çÊ݉V ­z¢Uÿ:D»':WïNç ™3¨ dÆõÿòt• w‰¥+%Sš.ÖDV ,i­çB½rÇ.Èí•{¹M%"· ëîîA­Ý¶ˆJ‚œi[µv¶¢`­S(v†óö`ÞœGÅ èN3}kßTàôŽf]ªoä#SAß5j–`¢¢òâ%ÞT­ãˆéæõCöŠ”:z稻{´WœQ£Úz~|Pëìµ»'ÍÚAãU³¾×ýù¨µ×­íîÖÛmkº|C.KtO  ‘c1äA×$k,þÃ:aÍYÜGÆ–ëÍN·ÕxõºSøèÜmNjéc¸%aº½‘Œž2=Óø²ñ&Ș79¦e·ÆÜ–4ÙˆhØØ•?α]^Y öîŒIÇ&s÷é‘: ‰ÍüôouBô‡øìw‹ßÜ‹X¼…¨Kê½ÉѱlAøGˆü·?æ@Å}ÝÑxÞ]õûƒXôÝ8‚Ê|=a–¡Žøð#š°@µ7çÉÆËW—}ÿS–E2ëü/ Ê¿– ¿G1Î<çxcñ¹Øx“8éÕŸ"æ¡SwõßüÝDý^=,ë÷ê Ê p`ŠVFÖ3©¡égB¶d*m@ã£F³So!A( ÌdAµ.×tO2:. $›èy‡“&_šc!H³¯„®3‰;…³ÖüŒ¸Ö@ò³Œ©”J9;ÊTÊìkÖ>h4A(‹fè(H¿ˆJÈÝè„z§ßo#òb /Ü]qº7ˆ¸ƒ9Ä‘¦ñUœ}KêÝbÚ—N-l’-ιj“©Çï¾>õm†r²Î2²u–ÐyŽMy¨àùÿ…ëßÑWA2a÷¸^ÿQö›N"ŸÆE#8›s¶Èœ#{åÄã ÇÍ߆³s4rY B"³ÿFáo0=²Ç)÷åÝx8ev«DÑŸTȲÕÊB&¸\Òž,,ì œŸj…YÿÆÊqK=ö­u>oPÈSJOî_}¦æ˜ž¡¡Òë‘€’<®ñõ¿jlÿó?<úŽ‹uò´G'gÉ*°›·¦9<¸íêyœnºáãí`àía¯.¾ßþêø£eçè¤éÓŸ;ØZ¡‹%ƒ&m5o1LÉäE?³"#»+uF{4'kÓn GwäÃ4Ý#F·8‘Ó,kûUÞñ†×8Ìå±þ‹ô7ÊH m‹F ˜ëð*0×á±5ö·\„v¼óý+ú&/¬uÊ!Fˆ þRå‘6Q º1ôC{Åq{“E“pg<¶Î¦Ê§ˆŒ­  CŒ´s²oQÆ<õcG\ø Öm|4š{ü,ܾ÷Ò:õ4è àñ"³§};GnX‚€*î­‹m@N¦+þ1+×~“(Vs·œknÁPyäÓCÄ‹Rbm¤å÷¦[ÃTº!ŒÒF¼®éÜ ðÞ%wœ•!0ÁR(T4wÙÅÜŠ‡°žk3&è]ºw>VÊÍ ¾4É1êrSßjtjˆt§Þ:Uÿ¨•Ôº+²Û¹°]?l…ˆ|ñÀˆ*#Ú ð#!zâorþrÌk¢]caS îÛ\#€¤€»fÁ•ñYC \m†|`íÓ¯¬™3X‡Ø›ÎÓ¶®·X‹뇲»£éÅBË{kÙežÛ\$,9&l<•IÜI/Šl"ž9Q´Cs¨_tɦ»¸¼aò'‘X¿»Ÿï¼®Ò?^€´:0ÈýVöÉNýÍ1¦KH£7äÈM£9¼_ˆî\ÆâëùpGoä÷ã«‹³èt þ;OÑäjöh²ªh"î´gaEÙ`«#ç¨á{áÍ2å§Ð-?ƒ°2ÖBfP 0 Çbrq*ZNL‹Ê HÆÖ‰Q÷Ç»{XkýX†ì|ãÜURû¾–~(ƒ7ÉU‹»¤.\§^q€Wn ¼ÞÌÅt܈>ûÄەVºqA!E>¯¢ß{ªªÂ:¸Dçã‹‹ñïxÉ`8Rz…T¬ 8Ïy o;E“ÞTu®7R(Z#Æ!_“796V´­chµL7‚ò_”˜Z:‚ËÃÙ, N:‘Ü%!ö`Q gÂpâmHYñµ¤t^ã¤Q‘´sWSNŠœåaíUÌŠ”…œ“++{Kü*éx*p¸$2ÅjæžAFµ¸„N ŠuŸàÔÀ™°!eœ$ WÚŠìû ¹iÓÞ½--žç\qæûÃ|§Šÿç{ ³«Èõ·t¹?$èMòL/éL²éSüO?¼3ݗ݈ÍèÉ쇹LM¢È‚sÚ·9,<©cŒ…gõæu ræ­çöÝf÷æ÷â3ô²P›EJc ÓÙe#“ë9Äghg£™?¼‹ÔH”|? €w hE+tWQmXlš’üÀ 6ÝæHl7„‰bît”)±TóòAn=È­¹•&·Ò•—Yvï²,=g1Bp$]ü:‡}ÅIÐ3ìǯDÖ&Î}cÉ4 ‹²hØÇÄR¨9R”ÒJÄñ$ÄUJŸM™‰K†7Îô4ìf›úx©\9m £K?Xb—tX)çê+2¨JÍõfuC[ÄEOäÌŽÖ#Üy çëàlÂýîýÒ¬6v™ tÑLOŠøÐÙ°‰wŠâ¼³,‚µèD7á %éòM|ÒjHŽ~H(ƒ”Éc‚a&ô)wno@ÆÈàä»íŸ¯¹/³,3 ±ú¹®..´¥ä,xüáB¿‡£,Ò=β_%èhàíȨPG3z©û7Z Ð¥Èé¤^ÑàeVv'úxY}ÜNÏ> ' ìÙæ½Úà\W‘÷á\ð€'Ò*nº€gw;_Î6ˆÛ}9™Ž.ÆãI„¯Ð"4iE)!#¤¨±‚õ…ò ñ ó@þ×ÉáñFà9J[E3Ó´U?¨ííµ6­×Ì%>¤Vý¸^ëÀ¨†Ú‰ßv›¯2 ´³ (ÕÇ.#±&îÊ@š#hÛ0P@_)JOý9'†Â˼é=brZìÅÏcšG‡µf£¶ËlÈ1áÛ]r=¨·ÛL”Ù ”h'ÊSà«Ï\jÖ™¿n@þ{žÄš÷9•%’°Ð®–œðá#wæûÃb #T¬sü-¬™ŸÎ!¶*pßlr¾Oæ.8hOà0;¶†WݯèüaNVÆþÒ¸¡Ö?Ø # ߎÉ%7ãR&yXš/\È€­Vjv¸Pè¶DŒ?Ñ:9†õ††ÖRœ<ÍÚS§Ó ÜÜ¥"žR½øâr›;¯þ>Áy¹è×Ì+Ž)#^àú£GM»éÛì<rtZ>›&Z”v9úŸ“¶ñ<öfE½£»Òö×ÄD3Idýš\((! 0» /Ýþvêñ‘Ícê·;ƒfýÌ-y5”&ð>7¯ÊàÙ s&òâo~¹€™…ì;‚%ÜE$ bý„ðÞÛ[Qì+ÓæN±–Im³ˆ@Šekˆ©5öäf#™|q÷ã„ð)îÅ • —Àñ žQ0p Ɔà×.Æ¿¦ *A£Ê¼[î5ý]¹?6êéÃðd Op\+ê}Y£¥gZÓGh6Ä4„¡5DNågÎÑfCMI®0õ7DY8V£7k}µ˜Û‘ÝC%¢mÌ«Éd0•ƲÑY4>çÖ×¢æxŽYÏÔJ}6>cÞ½Ÿ›FFX8ДK*Ñà£èa~Žñè»yt¥ðBâöÎçŠåpúXðŽLdt>]Í›È8vA.¼§ýmÎ óªzsGv½Ýå ·œÐ‘£SÝÔQ·‹Y8g¯Âò’ÞüÉ“°;zwÇyøCîixóÉÜO›päÅ0_‡ep˜©CÓÔÜŽKåY7²fYNd\ÉŸ.жòKÁ̶ÖšûŸåd“Oœ͹®fJ¦|ÔöUwõ0doP ·5ÑX ãÿmwkg5ë1ÁQ›îcÊþFœ7æâÙ¼78Ž:æDß+Ó…7÷°y×Ôñ¢Ë·1qÕ{0‘Itá Úý0°ÁîÐÀÄâ´¬›¬l>7‘YøE¨ÛüêŽ,l9~î4ÌOÉîÐîÁÑÑÝúë†sœ,ž[|â¤gÅ ×7¢Û:9ÝÄ^sâŠØoÄÚLëâÁûézf˜f ȯÜ}7˜ãÜèöÕóîûAïÌiïζAð¬q äž=Týx¯TýXt”öùx ×>¦sêíê¶öÝZ‹×kÑÓÂ?~øæÍ›7ÅÞÓ5ô$*,÷–-眆}ÓDÑ_-òL.z}÷ê‰u…$°5Sˆ‰\ÌYº·˜ˆÎ ¤ïÖa?úb÷Ìu‘Œâ,ÉBdŸS*Sæ8³„v˜rõÀâáÚN;Ï õºû­Úa½ OXÇÒãu'ËVç¤ÕtTxä`C A$éÝbH„ÎÆöÍF|¬›‘îF&!–?d#ï]\¸®cÀø<S>¨WµBêϳ` ¡œÕ$¨™,r²ev+1$ü—Î<9OI<˱à-a¿õ£u 7Ž7eI‘_ÌBåx¥ÐÍ_Ç ßÝóûþðHzÞ Ñ£T–E¯ÈB¹HçÄÐ/ðµŸðœ€“ÉŸfsδäq/©>÷ú©D¸z´Z¬Ž«j‚ií~e‚8Qº¼bîú^wç—Nbñ)urÀSRßíXo–––€#†}Þ‘.ÍÔÒ zSµSnÄ0,*J—ô¶uÞ›*‰íüDoô¥G<ä³¹y;¸ž—üGä¼.ද¸üÈwð:Üe ¤¶È ì¯W j“_­n t yþÐéya:Àóm«E@™ÀÆO±­™Û>Õž¶”îVO <¦˜á1µϬ ¡1×çá>#&žêTrp÷ÂtÁ |=Çlràö&tÇ9kî§Ë€º¸Ñ Myföo¦*NT½c†.oHŠ2ó’Ò–@b¡á£‹¾Í¤Úø…96òd×µÈc(ä½G~ɉSû $Eôñïì…gOÎ6Y—(‚™–ÃØ÷ö~< % vëÀÔ€•i8ƒSVT¼ñˆ‡h]óÕZ]‡XŽdYŽž/ ºÃ~Ρ{Ä£•SPÜ£¬ø»Èˆà¼r…&žE5æqÕ[Ý+s})žÅwžÀ€Û¿÷¦g·[330Ö½³^©%ß$Ö!fðs«Ðò(Í3`ˆB€#ŠšfšD -œ¹ødüífB Ô÷•¿÷_'íf#7éœJV·už1Ã@ÛÄqÿ¾ËLîí`€PwgçDÛ£GyýÑ‚Lî—ÏÏàÿnŒ[6†U×¾àÌ'0¿+ž^jFç <œÉ®»ó•ïÙƒÏÝ <4Ò5÷*,,—Sñ’U¸¸fD)s–UhÎö˜4àÌ[ båÐ.ªÛ®×Zè)ìy»Ù@Ì6"ð ÖØ‹_ˆ1üFoáGÚ=˜º§Á¿©§Ò–èGŽF€Â{oT=u´aë±Öð„«mÇìæê<™FÄwFq¦D´×(ÔÕD˜«bX³`é?à%€Ëe ¶I1ö©š»¢_ˆï¢ÇÎâ äD)“Ñ\k”"u5øs³±I!þ«b ·âl,mB[ÁªBeAèí¦ÄÆ+ŒÐÐãÇ‘&…Tm- æßŠd<ÞÙn!Àî&¹Ñÿ[Ù+0“áâlh½LØ$ÌîÍT±¢§{ž¶n/ ¾'Orp2ð£˜úoC“﯑fõ·Ú–÷×îQ<3^%Naªm4;ÝÃ)ý\kíY¦Åj>•f¨63j&ÎWUj­WÝ“¦jaÏì˜È•œæEýÈX<†%sÃ[ò× –Ö¤[ay˦êÎõeïâbÜ/̆ÿ3ŸÃÃb´B‹:ê{ÚÎA½ WY–„ ;ÖHŠj´&}Y¦´Œ$Ô'Á¹™_‡à$©;h`P8…2@ÚF€««vµ™ª5‡›B®§ªmf;|GÅí6›âÛìÂòÑÒ?X ¥nb°q Sÿ6û„xÑZd³ B¼Éµ¬dööÖ;_@€w¼‰½1¼›° ,ìÜÉU[BæˆEÅ‘±2kUÖfUÀ#ÝŽ¡ì%K\®U8q¹• ¬á¢’Øä± *JK®Nc®r+'qß3ÍV†¹.ªf3O26Ã9è´Ýj›šBGUn ^Àª„Ùi ž"ãðxÞµ°»T›ÓÂÕ¼ŽG¢O ؉üB‘)býTXçµkT9ÄjÓwàéÁÞ|j9l4ÈÃP"tu¬ nUaSÜ̈Êã¡0ŸŸ«…ZѼ¦bsb+IwNö÷E󼞅¨r‰ÄÄñì/O»ƒë ÅòÀÄ›RvÓWKT!Ìÿ›ní¸ÑmÕ_–Òƒåä‘QË.¢MN랬æ²)3P—ZR`‰ïª‰×›4¹ ƃT_Òºœ³nT ûNÝy8þˆÁªD«:?6—Ò{Î/q®‹¢}Êa¥“£H`pÀBeå¨îFÉ™j)Ü' ªýsc¯NbKÅ !FâKÁ7¼JДߑÅÁ©7g- Ñ¡ƒt´ ¹d]G¾nÕš¯ÔwX2v@™lÖ@£ãúnc¿Qߣ “·ú “®%>VLiV“EâˆgÍ~«^/è,¦î¡žR©HC%ኲýÒÁè¶Z?åO¿^3«øÇûá»÷Ö+¤³e…íÞÄm ™¢B½Ü€¾ýÉ¢fô'Á…}§¯ÂeÈ|C”Qj̳ˡuÐç$Bi+–?¨Ãi¾a²¢Ü4é €‘:ŽåÜ¥O>!‚›šßN³DMÔzþ±H@={ÃÄ1"(ö™~öÒaZ°(ÌúK%`Eò°Ñà™àUÊXÁ®q[ôíº×ŸËï¤ëcTM[€dÎ,’„`Œ¡6ádÀi6§ú–(¦á¸sãh™^nMôÖ0e«þS Ua±¾çÆÕþ8nOè¯Î(¨7<8Ê7zBp­§€NÔ¢O/ØÆèõضû®7h‡$-MŒ ÿ»½‚£g„i‹Ï®N»½QÿýX\jО äÞEϬ‰ª„ä«5w_µdZ<ËôaçGœ8ã¸kyV®$F~ D´0ñPpí˜{½`:*A×`‚NIe­p|±Ez™ÙÔ29ð,Z‰üN“;§»~°•'7¾ö3dÞêNðçVQ0ùo 5NÜš;%˜ø€Æë¶€™ÁàÝ@1üñ2¿†ØÊ:÷¾ Nì³ËÞµswvE­%Rv@Y£·¸çíPvێʸ¢ 眥`+”ÃîDc\Üâì˜ÉŠšt;K³ÉÈy{•š Þ½jwµ×P»¬æn]RMS7æ½ëÍ0M-±Çõ$¦Jµœwy«l(ÑU"ø=RÇ"ñdYA¶ õ_% ¸ÔŒbkc>5¥í¹øå34œj0¡á|7 -vÿ ¼˜€¾dÌ8Âè .Y[D+´ÿÀ?ÑpW˜Ï¢ÞŒ´ ï5]|ÖGTÐâÏaб8Þ‡x;|Üè+$°¢]´Gß %ý­w-7&zkBSc•i¢Ÿ!Æú¡Á¹O/;Þ–qôÂßXVtr­¢k=øÿ‡êÿp4ˆ”’©C˜ú’Nçu«Þ~}t°§Z)¯¯[;ÐøäN[P½ñŒ·¢vk' <@œj-ª½!¥ó:Yt6c¼Û»ûf‰4îËÁüýø,¼‘‘gÙ»(ãcÈ40'm~’‘´±’¾W·Ûa™OZ?2ëÞµ´)˵‹J; „Ö’{ ­¤ŒÌ¢b鄳}â²òL+'¨d vоsÉ´_n‰ý8©“RWšÓ÷TZ/ìͨäíôí¨;Üi8Nˆc'H%„ámöµ‰ó7¸wN’·ºrwû7Þf’¬¾ãFÑjœH.¯tÓÇݦÓÇhûWÙG梞Ï*1ZZ¶pü÷`LÌ” Ñ÷O鋽£9ãþÆ)iBôô¸U>æêýhµ ïÓPÑLÚ¦%èÈöËìZ´Xݘ¥R»£å ’еÖ«Ñ é²êB.´a´КBU6ž¨»ÀÙN~I 6ôÐ)ˆéYBzvàtx‘ƒaðgI>vŽáÇSègåá£ø[Ÿ·…`ÓäÙŠØ7Ø [c$i, úƒ×¡šòÑd ÞWÁ³(èHè<*ŠÙSœHÌÙt̨Dç!uÆåÞ¥¿ü µQ!Å•ðîhÜeŽ0ºuzÏêÿõ¯È¸6ÍuÕËáŒNiuå¥{=Õ¾ã™ö'ÚaB˜C»ÛÏQqâ!©§ªï> ªÅeyóÏçΘ p0Y ÷¤]†~[J=$¬ÒdýçÜXô:uØhc»Š|¿Å,¾7ëæ‘5²3ñ¦\M÷¢(ÍtE7õÃúÂP£‘‘ ð~:\ÚVBѼá}Æß€:^oꤌú›Å+*ŸÈr 6rÐÎ!Ö¿'}U2|m–‘5’d$b ueÚGÚ ·¡™ÙÕå âå˜VETÕŒJÌU ¨^¯˜Om7vV”Š«õË!%V”:l~n:gJ ñ±½‡Õs;™EÝé/\¾V'ãÙSæHÕÃctõ« Á¢Ô™íHÜÄ¥…ÕZÅRë\É*å9™dteçd?Ü‹i¸!|½ÐŒ€í7[i+¸ûTö/!RÜô ]îþb…ÒÊ›#šH:4q7w èzgg‰´Ó‚EYÉr8ݯåOsFs úÖ=½:—L‚þ³ƒ‘R ­ú¤êø™„JöqÅ¥G‰úS®‘”-ʬêâÛN›½ëð8µÝJî\«€ÖÕe o¡)…¯B„C NZ£}—‹A[ÝÕ¬æÀp+IN7Ö»ïÛÚg&}ú¨ Û8×TÙÒ[9,ÁÙ)çöêÍ”k’”;¼QÕž-Ù1€Óù‚±Îâ C¨¼|‘w¸˜/³Êðeú@mªä½Bƒëœ¹w?¢§]?løò'¶<³Èñƒìù›œnä´KYqŸòX/iÝu ˜ŽˆärN´­ Óâý3xÈpïÚþwÔ1¶Z Íðø±%‡2Œ–I]LîdÌ ´OV¥m\+Q»A!iO"»5í?Ý5l$&LpÅÐ@‡!y4̤µæ/8g ed÷ð@‰âYŠ’Ü#[aŒÑÏ:ç1Táz‰MFÇÖÎ ’3¥Jκçj–c.×]^^ÐQÀ²mX¸Ø†?[¿œ¿W¨¼‡ÃV¼g9/i‰Cã€ÝMÄ]@ÁJà”M/sßÜÐm¡x œ zŸÁ®û.ºRN Gâ@e)!cm{!”fï%êò?ÊÕ‡£¸þ‹ÁÐzä7ìi·&èÖÏîÆÂ¸7˜ÿHþ†4ß„7Ç ŠN d“ˆ%^ÇðÌvÛñu]°"ž_SšóÂLuœ›H` i¯;¼™W辞XŒ{¹´–ôºçç ó`uÄÍŽãhQ I7ÕȺ«k$ÝÉ;Ïs†úa‚4tVý{8û)Ö÷"è¥zûaqŽVóà`9tµ CŠìx7(±kR•7M—‚-L´(é+Bdð¥Ù½c·ž€uÆ=öb Á\-`‡n®O 䮣•êY0õ• úfó-¨7ÜÌmu'xip F!Rç@÷®ÓXLmæ·ï³e‹9[­dÕúƒ»Q¹¼3ᫎçC>Ãyœ4šêÞ8Sž¦”†­8ׇe§µ…¦–Š9ÀT)!VºÓþTt]˜îÍÁ9 ÝÂ>ÊíÃY÷ À,ü)¾œ— Eæðòâ¤?IFgÓ±¬ÑŸ×}åѼ°äý`:“ S*?M)Iýªš¼êz³õÓŠ‰ J3Ít÷¢oj,¿ö!$Ï[Íã# ÄÉdÜ^ 3’vŽÛ±WQœãùQŠï¼35ÕĽv¸Rß¾³9ÕrfI‚žhÒ?Z>uÂýÍF^äÔ³Éè‚(^ Ù®(À ¤ôÿûú÷Ïúûå·õÒÆã£ÓËóþô°Âåäò¢û`:é=À¹0Ûè}b›››=ðï·¿Á7·è·ü+m}óícQzøðÛo6Kß>*=›[¥ÍGÿŸØ¼•Îù»„E¢òû¹ÜÉ™{šRN;;Ë€CæßÈ߃­ü¡”!f‘Ë>J d#T.ϻѿƒ÷l’Î'“îäc~åvÚ~°ò °¾" ¢"EzŠ\//¶$“­Ëÿ|'Ä?Œ¦Ý_GB<™Oßýúðû‡¢ÜONÄ~³#†}üç—ñS€R>?e {ÂþäC¼ï ð©Õ?€ÏÆÉ%úÖÂþ,àr§7]Nz}|s2ÊÎÁ"p1-’E\®ðïèrPä\œ z]R)»“¾÷'ƒÙ¬*w磃Sù0{ßáÆÒæ%• ö):ÕL Ô»èCî¿‚(mx¨M1Ñá„9Ò/ຢ\ºÚ®vOFà“"Ud4ôúEYBîcÏ%<c›Åî¹8ÉF{çÝÁE4[!"²AFˆìçé¥Dîóà"¨— Òé¨wyÑκzЀkºüÑkå*8èžO-áqÀ0ï†f€Ž\¸E»yÐyUnU…|>j5_ÊľØûI~¬ŠòqçE³%Ê}Qi6ä~`ïX.ômñ_ÿUnËòkk𠹬ñ“¨¾>jUÛm!+Ôê5 FÂm•Zµ]µF¥~¼/wE!¡ˆ†dÑzí°Ö‘Å:Í"4€Âš¢y «-¹©itÊ{µºÜ BµNš;ÅQ¹Õ©UŽëå–8:n5Û ºµ_kWêåÚauCH$Àm§ú²Úèˆö‹r½Î»)ÿçôr¯*1„ã ›‘½Ü¯µª•tÇ>U$Í$rõ¢Àsx¨¾®Êž”[?ØvõÇcYH~hûåÃòsٷܪȩH ëð•thïµ;µÎq§*ž7›ûm%Á·«­—µJµ½#êÍ6LêwEÙH§ŒÍK(’Zò³|Þ;n×nµFGîq÷—@/š¯$a$²e 4n6°Ï’FR½¸@‚¢xõ¢*ß·€¤Hµ2ÐöŒ•@c%e«’žÖYѨ>¯ã¾· _›èU­]ÍË«A K€ -¿*ÿ„}<ÆîÃXIÜ葱nGTÔDyÿe W…%´kŠgš©}\y¡¨³à‡†½óK)TîÁ>m8ÛxÏĘA}RÎÒ‰\ 6Oú·r®] #ž)T#­2žÈ îß—úæÚÏ›k;7|W˜jUù:ëóÏ„µnùSz’ŽõIÿKQz ~iúÅq™þÞ?‚D¯ÓÏÏôÍ÷>>Ó7[‘w¥È»MÚþþ®x”݇­Ï؇¹¸mù¸Á6š†:º[„½ ·_„ ä\ä½Cí!-_”T@›#½ÜÊâÛRµï–2³ "49î”'{U¾ÕdÃ’åv¥VƒûÌñϵv3ùî»o¾OJÖ˜„äãg:íà'#cb#³!¸ýèãšC¹ZµZ9„`ŠtOñö}À⓪,„.7©g‹÷ŽÈT7d,=Þ^ Ÿ·ÑG•PÖôޱÿ¢=t<ÍÓ¡þ¿‘Îoö˜› ž¿?¸äΠôí¿hÊ=ºEJ?ŠM9©%Ü&­%¡ÜI÷p믜tnÒ9=ü_Ä çŸ¢ÓîáVüBjÁ‘rûøèHîªû"»7‡÷ONûç—W6dìLrÜA½øÛxÌ@äMæ*QŽE8”dú†Ùd²eä‘h’Áp0C@DF}¸ Ï~oÌ:iÐ@ŸüômuÙêŽÓ`ØO·‡”×d**æc@ cI^p6éSm5LŠvÄY*ˆìê¶f2#ÉYŠìyq…àužçGC¿€¿Úú;ßþÿnxù™íÿ›ß~ûða`ÿøÕþÿEþnÕþÌòÕþÿÕþÿÕþÿÕþÿÕþÿÉþ¯ãô‚:ø¼qœ¼`Å@©€¥A–Ó·d¸ûɤ:ú£NåëiÎñq¤­Áƒ‚ØÜ–Sy¸6PZLûçgä¡ÅYQךÅfÞßéÈVTœt!¦QÿËžv¿”$hÄJñÄŸª6}d9=wšüYÇx²pQ<,¿®W6Õ(‰% *=Á¶¼€W*ÿ‰¾:ì^•ÆÐ÷ ~/YÝ´e.~„ݹÁw¼†ØM1»åÀ½p4®R!¬­WÒn'”‡­éw0Öé™7ͳáÅ'Ô•;ðå²k”eH¬?u|ÌÜôžnŸØ¯94â¸êÝ‹ÿQ¶K#¦®ƒ)^‹tÍ){ry6žÃ¾iœ‹Î¾KtX5M-ÃètLq&ïx´€Bj¡BàJuáÅ©¦ö‰Ú—å8½ÌæÝÌã:¥ýö Ž-ƒv“ñí§Ë$¦AÛYõÊÐL¬z{SãÐÞh¶ËunGsì!€¤v Ä0”>+AŸÖ´Ád6‚Ð#9{ÉGÖAç`Öæµ¿WÊlMÍÐÓîiëJc°7„O6R¤$M÷xÚ³Hp^Ú¯”뛷Ĉ¸JîÃ4ëû±2tôµß?ë^žÏ€Äú Ì+¤J´µ%#¤ñTyæÎº'æL•xßXJƒL‡Â§+¡‹jš‘¦j±¦.NzH`í‹äïg~¦¤ç*ó.iÓ¬´ª°Úu~:ª’!—,)`n‹ÚyIð»Y&ˆêq%€ü˜üûÑí¯µÓAÀ×9Ž;ߥ€¯5Û|1óŠàäBîšË ˆdèÜ&©-Ák…µag%eȽR —æÙP¿ûDC¶ýçñãÍo¿ ì?ßl}µÿ|‰?­·Ã­±FÔvúÖ¼¸U ²ÓßÌB$9î«…è«…è«…è«…è«…èV,D£M*B'—ÍQþÖË ‹¿'ùK*ÑVµš^¦Ò<<ªÕ3 Ð5ôôïxç/úYØ„cáXƒßÃ:ŠDôw›J!Ó=§ÝYw#N¹S“|Ti+Ù™ B§¹hóàß)¡®(Êä=R„zœ@lƒmÞ1Ü©Ôaÿ´ÝŽ%c1p“dðð»Ç>ô*IÜ—‡Iíµ*H˜ålùñ¸ÅWWŒòÑQ½*ßFú’$WþãG^«ôRµë׸è=þnskS~5”Ò¤#…ÐarÜ(˹Өî'¯š­ý¤\‘3¿mzûýÏš—§ã~oƒ½Òà0GYYJEº×ç¼—bF s¹o¬×÷Þ¶U=H^Õ:iðeµ®½dC?ÿúdؽèß>-êçõáS¿ÉÃf£yXnÔÊu'YÝ2l'µD®Ë¾$­êQU*4õAîÙv.ÿg.Ÿ/ü¼õ èÀbIÖ4Š~þë±û?âÞÏÃ{>,)HPµUÝ?nìËÅFBoƒk a#§_µ…1€% »wïJ½ç(6#´¾ {ïaÆ 6ã2âë),5L¹­•36>>Í£äè¸ý"i¶’?><¢\“N‰;­ä¨ZýA"ûÚýÔîÈV÷Zr ²yX!‚‹ŠE%§•¤~äIì¯ôxÓÔRV§".R‘ê›@Ëáù@j€ýSÞ! …äÊ~õx øM?Úüþ±?kŸ7äö&ƒž$7p¥IÒ‘rÓO‘Ë]!Äx>¯dD*ñùB¥?íu!jRÓÓYÿB²±2e(À¨^ú¨€ O X`‡j[²´Ü‰£1¹Ò¬×kÇtå_.‡s‹hʦ8ePΦ۽ŸŸÜ+Êÿ> Ù¿ùË¿½”ë+h4ÉaµSF{wÛùžºƒ—™YÅŸéq]aƨþä^òZT]e@Ãôh?Múæ›z´ßz¶ZÏû„‡1ô¶-’EF%a¤âetl¡é d¦ § y™xMJ6Žá†SkÚ2ŒáåE †.“ZÙÃ!Z9¹•˜‹ƒ.“Z9 ‡° sÚ?ïÏ"#ÀÁP™°V2íž…UÝZXÆÅ[îœgÙ R^ë|4úõrœ]‹ÊðZR­ëw{ï3k©2¼Z÷ô49Lú½šºš-ã4¶ñ9ÜÓºÿ=BjøZ×ÃG…—úX~m>£ú¨¸Õ¹nñ$/5Ø\7ÿ4w’Ï?“ÿÙ–?,ÇËz¬Ð·UôMná˜|•U)~æÞÕò›y€INqÜ./8`üüÇêä ~§CÐ×P ÷üÔÀB(¨oEé¡7óf çì·Ã}ùó*è•܇îyq\Î̋ӦƓ¯À¾ƒ·p¤ŽÙñ #÷w…: Æ ò½Št˜CTpB-Õ”ð¹UøMò ¶ –úJ×"NûG˜–/…D  Ø'íÂr3[‹; lË•÷±|òŒÇÝÓ„¤ ™$Í«Ýh;6“¢ú[Ç}ßtðN 6A©*v^ü[¬¾ÍpÈ[Š6•w‘Ù´„4FzoijµjÏ_tTë¦CôS=ë¤ýÚaåÖw—T_gFÌfcmˆ˜Îº½_Åx4çýýs>Ê´ß?j‘Å£Å#µ”œív÷¥ÔR`€×[ˆˆ B W*¦0$µ§¥”D£‰S²$pÇÙ†Þm­;½v²whkoQí½ÑG©ûޤ&¾0©­êK!* Wj:3 Ä9¸ËDG­ü¬UTEÓ wÖz.ÊÔ•Ÿê@—t¤@kð::éƒÇÅåùlG¶z)¯µ—„5T(ÜSôrÙàËv:Îb“K¹6Z÷­Ç'⌆þœ{]UwÖ»*þÍàR[LBR Ž u@¦3FX/qô½R95ÒCÔ»½y­s€‹Q×)“½Ÿt;ßYå%~Ò{Z]œZyX­‘´šM­0ed :HFͪ{ú• Zà4°ð¾2®Zn5ÕARƒ"¨¬™"hSÐeà%[3AÝéÏÞ°¼ÝqÊü²­þSå FBµu1¦¿õg®æmÂv2µšÆ¡EUÄ‹=kõœŽ6+À›Á[*z}'MYi#­eá"xé³~ðÊw‡å-¯+?äüzÂp|’»/gPÃîJÅM¶.09¯UÞZÈVòÿðÑリƒ%º$Àà,Dj—Õ–‹å?]DpÞB0¸éqÖŸðÝ‚º»‘ìí]ž¡¶ŽÊ~Ä¿Ãñmðv;rä¡>ß^ì«ÜŽÚdŒ$CCý‰|Eó9¨wàÊA‘fº3~Ù +i÷ž”Uk­?¥“EØÄÃÇöeìôPg’9ý±è°ÆmÀÒåŒ+çÚ±Âý=Ǻúú¨,"Àæ(œa¾¹ˆ @–M¥á|“ îÚÔߦ‡6œh£ÅȲ꧃6„¡í:!B ¼-tZ±…$œ-¤¨f Fœjrµ7óz#´ ÁlÅ»Z†^¬-Ýe?_gÑôU Va &\³Â9Kû9#¤aBpžß‡MÚN”ÑûÂáMšuø~‡[) ©îS3ÀF€ <è +k1JiŽÙ% 2·û%§ÿY/ÝZ×u—ß è·È§ÐøgìkyŸ¤ƒdµÀ[6 $Ø¢†ZÉ€³«§j 8Ú„÷÷áÿà9ŒåQ)d\aaD*7`¡’û]×!-G¹è xjqM@6_V•µúƒÁg#nÕÀñðDDn6Êß²ˆ§®Ð‹ ;”¥©cùV.Ê2EÁ_`ÈzÌÇ"ÆŸC4ež¦R®Æ¦æ&¹AóèW©r,nŠ#˺zëLHú²«"]­K´²×¤Z£-µ£˜µ¬ƒ·«wÝñQ‹D† Ö²[ßZfÇ*C©ÉDt1çõU;½\,#w3W˜}°×AäI5ô³à©¼©äÆ&k[ÅúÉfquŠ¿M*VJ)&ÜûS±­ ø…²&©ØÃ X»zXsÊB±GQh 3*öM>è*¹í5Ë”{€ÓŒSŠ}³N€ ÚwñbÌK‹}3éky±R8Nš[S.ž#× G‚•#ˆXîaH<ž-Ø|â7 ÷ì1\æâ#"9¬+ߤƒÈ¡mfý\ÂÈë3Ѹ?¡[6èa/ßö‡—¢9†ãPÜÀ4ÀÄVk¿€iQÓSVÅ3¸Å3žŒzýéTÌàNÔ°;ƒïp$.àl¦{ŽÞ¿³Ájá©ñÛ%O_¸FD8¬éeácÀ\À›€ÀQIÙâ@¦!9™a¢Eš°­B[8­Â–[ááÜ Ý æVxäVøfn…oÜ Œ nÉý­†Cã‹“õóþðÝì=v4B¨±•]c+¬ñ0»ÆÃ°FQ¤ÖðÊ>L/À唿F?gUÜcœ¤Vqà†ŒSì|ÑÌÚêÏ«MÕ+•z¹Ý.òÉáž÷»öÚ}!%‰_#ò®ö:|ÙhîW‹Íñ½ñA©TλÓiæÚPÍ|ª©ÄŠÃcºþ½{ÂPBËŸÃz1^Њ› È,Ÿ‹Qb…À½²ºààöÂ@1 §°²¨²zÉ*Ú/´zyß—vã/ªð~Õ h¤ ûe5ö™ýä‹·SEk¦ºÀR*:?·ÜŸ ï'ð³ó†¬à±waQ{U¦¨Fèç_Ÿ\]]ék2òQÝ’¡z´»'׉bø ïƒÃ^NßcÚñõÙDþ—X—9ô¨«ª@]ñ†U¥" gõ²U‹,ã qÑøPÔÊZ®ù³‡æéX•Ä#pXÕ Ã%Õ$vW=6ùK÷2 ,pPs¦rÂ÷¯º½%J䊤ÿry1Þ0­ ”Ú›% ³9P†£aßB¡Hÿþ/®½b Ü{ÊÄP¼›ôû§ó~¥ZCs£}Á!I(¶v¤rÒvʪÄö@õw”2Öv§S7£bwôÔÓžÒ0 ª—ççâ|$GÓeÃ%L¯©œÇúT„ ³"¥"0k»SL¯˜Ã+Õ*Ç:È‹¢o€©¹'!Fª"Yp"`#ëЄ™ÈjRˆ¹l·ežínllä…Gƒ#ü;\sLy·ë>.Žnù»1ø0%Sð¹› ¿ÝyèÚ†PÜ)ïÂg[ ¿üê0Á•{(ù õd©×“Ë„ƒ¥·;)*(w‡ ™å –Já(×IFkÁ;¼'ù”Í!ptÕË÷ÿ·ò[Õí. îOúWãó£ Tò†§4\’–‚E–~þW±þÔ—z"!d/›À>Ú¢£Ù¤ÖúŒÊs­Æl;rögÆ›¶-ã`É„rg¦ÿ-A&ýž\1&ú}Áéƒ K^﬘³,0µúçåÓÓ y»ñå“iüCÕíð}«?îwgË ÷Óôýh2Çý‹Œ¯àÁÖ¯À…(9òé¶ž_žv5À׈ gÉýÞªÖÁ*P1¶!j©Ñw¡eJaŒçVBAE>M‡˜û¹Ò]pjô±Êx¦©‚ƒo 9‡18,oz8Ý÷VB‹ÌŠ> w̸™^“Êm0Oaœœ0yцzï¸8|; Э‘:…áö„;0aÞíºßà>XÆæDÍ?bl.@Ü¿ï]y “EÓ¸/º“w8ŸWxšÞ¡Rý1šYÇnÈwU áû¢È\¦EøçUä²:„«â'ÃhÆÐÈîtdÃ5§Ý8 ‚-×\üãpìe.HŒd»œ›ÐZ÷Ò”Tšú'Œ`¬ÙÌvµÆ¿L˜2•‚kS…Jáðî2 óeù•›ZnÈµæÆ ´éå°àÖ››ƒ¸ñ\qí>7Ÿ+jK¸ð\±»È…GÞ7;ÜUwë£ÞGié HcJ!XpÔ6GTfBŒmw瑳ÂovewD©‘1I {áì ¬jçÄ å‹UxæáçéFYåí­‡5Wb§mÛo¸£Ñ,F/XÍaÂÚ䦇¾ÿ,¾[zÑŸu)r;Æ‘ØèO{¼²ÂÀR¹;ü¿<Úauq³ÁEŸøj« nB¨& )À÷'£d4IFÃ~âC~‹@ ô¸x˦J¢;ç\àÁñA›Tk°Ô%´‡íî:£¸ªîœÜ…KD?5:å×’'¶røQ…ž–¯áÔ†ªÕJ§ö²ª‚åùΊÑÝ 9G1ª€Îq É~³£»«ïW¨/Tu¯U®üP….ˆ•SµZ©–ëúÐ%VDÕN*x¹-7Qµö4üµF´6CׂØg"l£ÓjÖ)¦’È»‡$­êóêkÕó…»î M.ÝŒÖç ™Êk{/}^&•»'Iòýê‘ªßæM»Lä»vˆ„-)9§¶ï–5¥ îÈ+S†1š ˜´]/ËNÅF“´s§*AÚoÃý&Œ3t b\Ö4ÔéþA½ü¼ëõœµ~¯?Å«åùh ØxÈBEº UBxpk¿§€ /H^½ð`€ç7ÓlX¹ …ºr†¶—8.§ á5¬Ã'‰ë‚ç”l¿€ø¹¼$¿QkJIñ$aæÀ þrBêBƒtxóT€æƒÁÒ! ºûb1ŠŒM6Fl x¿b´0 Þ³…©Îùwgt>ZòéŒBݪw•‚ö¯f;t¬™Ï0²=~»Px¯;íïD[Ð_Å 18+ú‚˜8¡x½F\œ\žíòFB/´¼¡‹Ýh‚aXëbÃP8 ߡͳ çõáiÿ*D01ðÊþ>zš4—C8¶QŠmßàOg+µg‡^©kKÚz9Øã!^CRéÑÇ/«x2žô?ìç‚|Œ.§t_ÏÔ (H±%ÚÍP#N¯á0¹Ÿà9œ¹…®éËNŒ t³°7ºÎX§àRžëCî‡Kɤk‚®NÐ@‘S1SjÞÂ"t†—„EåÅàT¼V¯¢]r™GL;Î_@yë´`%È’B#%bí¾ÔÖ?‡ù,ÒÌÀypÈ%òó ÷SdrAǹƒ)œ<Á¡ãÅÊÀØðé°z¸N6 Éï64jynC¹¸bÀhYw„¸—ƒ³êÂ=‘Oix¦Kº -AOô´ Cd;Й$ Èy@Ì °‰3Ž ¤Ú˜ô1<âd'•ƒ=>uz±|¢‚ã–&g“îEŸÍâkq ×¹ÜtÚ‹ì’à­J•^ u({¢¤ïÆë/: ü£¡…1–¢ º¼"ܔښט£7@È.??ß®O^ÞxsÃÊÊŸô!pfhʬ´H\…-Vµ·¤–·†°ZÈ&p½Õ¡°óÃE™fhìÁ7¬Ûêh$w­jØŒq¦‹ êŽý‰!õ…‡£—‰ŠÎÊß¼¥´wò‘2ßùd4$ÇÔéö™¨3Á% LTÀÂe±Á¹ìÞGÄI·Å›N:é^´–b¬Ëæhñ¡„z±·„©“ª¯ 2¿ÇÆU.ÁÃ)ܳwÚœXR@uÕ-Dw0¥Q “^„ätNÜ­î;Îù AVPщc1À›núÓû.ù³qÏ&|©"fÓ ×?1T-â)•¬ÓÑï+TC8†"9ê´ dÍÐPâq6p–u¦Œ‡Q!ˆk 2Э‰á,7P´€‚–ð¹è/ψdì½ð­ÛQøÐ=¿LÀ\f Ž\®`–:È`pÔ‚d ˜ÜAê Çò=ÄŒ5ë ¨3ƒçüÅÙ˾þ}êß¼üãîdÚßè}R™ùÿ>þöᣠÿßÃoK_óÿ}‰¿[Íåï–ßïñ×ü~_óû}Íï÷5¿ß×ü~·’ßωÕO26é·ÓÞO»n¸Œq®Ý$ ^e¼ap­£n}ó˜å2‘kmÌ'y"‡H†J$Êè1AG>+++háÃÛÆA?[—'Å.?r¹Ð£àÏȹy£) É.ìÿ$þ$[¤¾Ü¬H–~9x~¼¨¾ÞJ«öZy È2ßÅŽÛ?ˆ¦˜Àäï«â9H‡²E×ubKõsØ%ä„¢uË)Ë`ëxï§xTïð¬xnÿ¶³TãWŸsÓsz1í…~>zg#(_kUŽêU¼Ú/>0I¤@NS‰õ¢eÙ9¬ÏR[Ž#E%Ùôe4€©xêâ‡XòÅ€¾L^J©ŸåEBq–Íà. ¿®v: gƒ~”÷ö îzÐÌ~M²L Âè׫P±ã¸`Åujµf£þ“Ë'qðRø Ñ~#›b\Y/¬pP{]µ .höb[aq”:• úB|_ôšˆ`ŒåRR*šº1z`h‡Kzú€Ä½t!òk?ÿ¼&â”EOŸfƒªØ÷3Yè ªò^kkâ`€ç›X+Üxö ù¥سµ›Â†{!X÷o KÓG÷Á\ã­Dwá(ÐŽf¿Ö½<ŸÑ{¹zhžG>ƒ1#=ž¡­×5ô²Ä‰ñš­—”ÔÙ 1˜-ÍÌ=Dâ•„up9ìY+2%s¾ä£@´n,í?£†-Ÿ½E±üПœÌA57_5 éÐÆßŸa‘NJ\\Îò+0E9-ÎvV®S€˜Öç@âXàV2ŽÄ*Ç£7̓ƒÜ‡âYqا"‹Án=“À>hD•‘äƒrjä÷è`šî15Ûp®¬O¥ÝUËœRË*Éa­!5)*üTbùL@ŽŠÍ«ïxA ”-‡‡bæàM<âdzk1ÆPžÐã1Ò¤;|‡§‰òSnŒqQüŠÒÅCÏɇÑFS[¾À–yÇ»üŒB¼cÔC<±Õ‘¡²»´šCÐ<ÐV,ÚbŒ[%´†ÀÛý‹ñìc, :~»*ZíÂáÕYþgxÿsBÕ€N&ý×1ÄÁƒüQ\âæLLyÅÑ›¢z’ãÞÈŠ€ÁÇÊ`P¬®boü€ûº3ˆY$”úÀŠ%H¸™†(¸'p4ÓRDE«?™R¬zÊ/4ÜÁ–õ:iz0”Kïl™–Ó£åÛöñI5žÞªœY¬aû;}\æ"2iDh6*Ýá)C³`Š[¡€4¤ÈCr¤£0š|^ þœ‹˜•?/. b3› {ãœ{‚[òt·hÆ-6W¸NëëëëRøoêÉ›Âtëþ}±.ÿ-Ý¿¿cäÍ•‘‚W4;½E2P>!Iª$‘B„èãâ6é…GÍOpEØÅø<ëPT¯öðšc¬Ös‚ e ¥è %åÏ·&¾»œà\¶h—2f ÐcM(É_“ÓË19€vq¼ÐÝ)F»1E šà2ƒveÄ¡˜:=EíE•V[ÁÈŠ'NØz­dA½ûD\Ï’kW†&EÀ~JÅ#¼ª‹ÒJúF54ðˆkùb²Ãä(x‡ôºCõ¢?{?:uÒÁíã—åú1gYªœ£ƒ*äw‡ø¶?ÙLgýYï=ºl;Œ…#7–ˆMŸ TlXŒ£ã‚Ärû? ̆Àô °€²rPk‡^B– >Lð¯'©"å¡_vÝnÁ¢m ç¸Ô2ñ *"gíÜ*Ng“¶×ÙOêWÒÎõò7êØû!'"£?¯YÉ–óò.8©Ëáåøîn R÷¬e%d¬îuÇ]Wø±“[LÊ7Xnåõ ½¯$T’-ª‰Ú·Ngy£å†é,”–0↳WJV4C†pY?­ŽîŸfˆ’’ʪ7|w…$”“€„"dW¢ ‚!•® è(ä"Ù˦ñÊ;w$s}çÑgAò–½Û! ãBßIêµ½V¹õSÔWwyÇ>ß{8$ÊÙkÇ1è n¸å âª(üWEAβÂoÚýºg¸5wµþ”ú(¦”™ú£~õ^)^¦ž–°"Èj(à~“ÏÕ³’0ç ¬Ö0· ÎÓÂ"ìÓãoV«é¹¶ÂO6$5ñ©?×lI#U'Bð iãBRLÃÒê÷(µTþ[ßÿ-ðˆêSˆ!”’ß៧OÅ7y®›ùN€ZOËrx´ÎŽ+äŽ]W,%«L8…'< ݵW¹4ÛPÞ\sm!tQ̯° UÇUÝ6eÐÎÇ-žgær>‘R"Ëxg*’q®4»ü»ùÞ˜`Qmí¨¯0ØW;5 ÍÜ~åþÀ‡„ŠÈçVe)AŸ4º8þ¢Ÿ“.©d)Õq´*ö§—ç3M% _Ø7)ºßɸ(äÄÊ¢0‰›‰…ÂAÅhŒÕV&#¬mö(hoļ“îè5÷ƒuÅ8†&MÛªØË)àk _ôYw5+*ówY‹¾…¡/KÉŸúÊŽ¾^ecÏÛ›=xO‰.V᪋ˆÕy†&ý³iXZe…s_Ê¢%õ®ÀÞMaMjHTªÃÙäãÎkq¬ÀJxÜáÕX½ì¸/ñF a^Úx,À³Dêªýép ޤ¶Íèì>µ$´ÎAÙzý””ÀÅ$vU†- ußÉÞ‡ÎjnD¶2$sª¨î6u'ï<Û‚º‚iÌè9ßÅÛKr+GW5rgr¾÷oÓmqOj½ëO¡9íò·Nvîq6¾œMs÷Öe…³±QcJºoê”2ƒl!Фð÷˜ ¦c$´çwšÿSûü9m“eì jªÎý<´½Ss²ÝA‡‰Z㸗v¸¦úVΘ]á48†¥ü„qa¿ó² 1­QŠøÎÌî8}ƒZ$%îªSZDI’ö»½÷9¸°•”YœûEþLEhá[w¬t²\ŒSÂádsK22?®F²‘¬ô9”†¬9àr^î¬ø2WòÆy¿Z¯vª¾J‡C›ôÎûÝIîsktÔ<%ÓgYÛ WÒØËgsRÇ‘7û¯¿v ã'j`”šÛÝxoM?¡kXR¾¦pêxâ‹<Ô NáÔYF‘J¤Ø=ͺÂ…"¯c¤ãœéi‘îëB ˆÁ~þлú¨dBVãçMYˆ¢ª)”[íçó>kô‘N)q(ôNN —.EY þ_(jr±5=X†ÂðÛÌ`«´áåSß< ëx ¨3¥û´ŽÀ )jÅ“¾Ä00¼õwæ…œ|·þ;˜×£ȷîŸ*!7Jê M³™åõÚ„w¤ÃS.ĶXÍ9‹_žê!šÈ£ø=ñO±‰CTA`ÀÉßÃëNóÈùy‹–’1Hpw²|:wj‰*ÉÈÄËN)¨·A½ßÌžIXP‡³ÇKBÕº¿âWõ–ùRá¥^J6U%aGÐÛÁ òïG—ç§Y[¬ûŠ«7´WXT€#KkíêP54ÝKH–!}šÆk¡ùñ|2º7./Zý‹î²š1¢éI¶Í/­‹yZ•¬"[zã½}»ÉmåŽÈÕ¹ÒÕGžÏ˜rÉËmó¸ß!§Z‚Ü#zŸyµw ˜°ˆ.þáêOPFgJ¢~µ…K¡9¸€Ž2èO]S²ã9ƒcž²« 6¯î¦5e×ê/×j3‰“™‚^°7&9ÛFöc7ÕñqrÅ/;¼>âà>A„æžswÁá‚ðç±ü¾š“Ÿúvo4³¨wcÁ†ÑÀmµ ÀvçÉ€èF2€ÉjCÿ¡þÿâ ³_8tw~™³¹œ‹ÓôÍ/oYékÁÈK\xïµÄŘnŸ%ÓŒ%x,²CþâÃnD¥·Ñ߮К¶óÎ…VÌ'Ãm)Ÿt^vöéf;O,ªƒtÁ¶–è¿¥%ÑE¨%|©kÇHÉ Õò¶Qõ9e§ø‰;DgoÝ*цÐÏ:“ÈËC·-Ö9ö“'BÞuf…\Pß!ê¿Þ/¡ã 3ŸÝYjc<ÙõþÕ{5l“¿­ø£ý*uØ>¾u·"ø»É&4„¢w£ïÄ\ªƒáO).š¥ƒjÛ%* EÔ[Y!þÕòBÅ9¢c¢h÷ºÃêðC] Oš³Û`JOZ€³í¦CtyiµÈ YݸÛØ«¹è›«+®{Èøñ¾z¹“„Dÿ"GÌßØÙ‘jœñU.0¹yÇæS^AN½hÐÏ«=wEàñ§íQ:y” ”cy‡RnðnÅcgLB笤ð¹ >»¬p·–~·Î]ˆR´§ÍÉ‘A¾ê£®^e²†Ûî0ÖræJ„ðSÞðVúeW©ÂW-gêÆ ×•¢%Œ'‡©¿(kB¨ s% ‡« GÒs%•ìÖƒ¡nDP|¢Íô§w£ÙH ^çL9½qÓæ®ÍNꌱ‰£Á¡ ¶v²(¥=ÕàcQÌ'Xúˆzš²Gü€=ÜÖ;4½ ›•œVuªà®ë„¼\Ó72ö"¼HlC¢¿§íJœï‘­‰ó=:Ó8X©©ê¦ÖJè—vö¾mI˜Á§\úDd «µ_îJ•guUuô®°¹/ö^Â%¬õ§S¼O[\øª·g¬“ ¹Dç^5¡H‰ €m\hÕ}•%‹Í_”ˆ>¹¢à”„Æo ûªRYôF‘™Q"@¶2äsÄéDó_|ìÉDùr‰ÉÝpûk‘#ìKÍ&­9%¢¥Jo]9bЈ»À¢î ÁE†ÆËÅ“ ÄTRi¡È?á¥Ü²´›C½ë}x·×EœZ¡ãdÌüwßù]í¦ssñ$MÄtQ/ ?Ò4<Þ]@ó¨¾ÞŒèשŒfJ{êÒz«ƒ_¡‡¤‹é?Þ|…¼QÓäô£„1ÀK.ŠÛšYBu0ðöÎ1i¶.hârñ@E*¹ó';ƒ¥Õèâ$é_)ç‚Ûóí¢{%Õ—wì슾_N&ü›OŠ÷Ý©ü$KaøWF*—ž,ŒKQï2ævˆfA\n¬)\/µ~_.Ö´KC0&]¦ÁGÖ¸/JFQÏOiŠJA¢ç7&ìŒh'fS–kü¤ ¶­1!íÆÇ—LJñ8ëÉ.âèºYµ7ÊgùØŽfžT±»Œ1çSß,¯c[}E/kF84Ühûã„ v7®Ù¯¹Ds6lnÌ>-Jºb€–ÛQFêÎmœ7v53³æÂ‰ÎlVÕp"«n§ ”ñŽ_"²94»<Ž Ù!ô¦ƒ}Hn``Ñ88³­¨“…Ê™9)Œnàô_NØl!^lȱ»m ʪ4Pa¨‘øÇEñ@v€Eç炸Žm{»IüÊCk¥Ä2µî&ÓÙ©\’ŠâžÛÚ¶ø·1úŒ Ķôë hÂìëÍ´«ekÛÈ„†üE…p©îⱨ(wøV†—š¢[’ó*ñšÇ=ÿp!pƒŠÚ©2!SÀ6û]®waŸà•²‚©ê&mz=, |_ÙWE ã^ê½R…MEÇ NÉ“2§°œÛ.nž DKyØh&qrB^ Ë+¶`¯''$ÆÓÓÛF 3ß²Qý±sÀ¹~êáQÉÞlŸæ‘’;)mT©TY3êÍb-Å §5¶×ªØ–æ…O†5ÁbV3—ESË¥µIIYYÿèÅbÝ‹– Œ7+£2'`©8ìÿÎbãY9Dz1µO±e—¦ÜÈÁR+E1¶U›Î’% ±$` È+YФ²¶DÔƒ§Åƒî¹l?¡D©9/á vUÏÑY\å°Mu_ð—§ LIZ0ºmÃûN½€cÏpÒˆ¬Q‰ÑZ-+8)ñìŒÇ<¬F>­ì ;VÐwGfð;L†x)ø‚û,^àžáÝh\LG³[Ç3º \±«Ž\Pft\§ùt¿JDž8f‹÷HVý¿“3ê”âÇ›M0€q‚ÙË%?&rë9UÆäàÐÔ„„õIÿªÛ3÷þ|¾á¥Ñ¾ãTÉ*=€†³þNjçX½Z‡°õ*¤²’´{?y¯ÚZæÅç¥$æ´$8ù›£Â@f×Ñ´ÿÙô6e»!®ó 9Zs㪛W†‹Å ^ {”V‚ŽQ³Jøb&V³¼C¶y£$FÚIz£ËáÌ´³„þ³¥Ka‰ùà Ãhò1M OÂFr5ž>f ¼iUõW9nf³ƒ Ö£ ³YL¢Ñy­æ–¶“Æ)¿“º´¥ñ®êZ†q)N/ª§Ó2”¡3úy”™‹}*ç0 ‰Ä0ëugìÀÁÍ–UYò²nX šúÀnë ÌÂ5ïSEÇ¢¿cúƒðœøóOºŽv_˜V”ŽYT ­uQbJ˜ók ß*8'î^¤ûÒ¡\)j ǦŽ5ž¸øcˆOvÔÇãoºç÷^Úªð´ªFʉ¡ßù)8ŽùÇ"¦4¦…4uà}ê/ä[,ÿo ùÊ=õ±WymûP ¤Ì“K]È%JÞqü«køÇ%|Äw¹T»ÇÑ»"RÓ°™oâIqgÕÓ¬èËOOoŠ£Ç‘<â£#¨ÓC/–+™ å”£EI{“#+9J÷k{ªâ঑Êß<¨ /<`nƒMž‰èrdH„²!‚ AøÇÿ¤xgÓ¯8Λ”~)µcJ¥öÍŽ–í”=¤N=b%Þ½sÖ´SVäÙEH£¨yû$‹¯¼’d¹Å&Åí)¥1&ú²äàN†©Sعƒ‚Å|+„gƒˆY2TÎÅIï«¡P3"g¡M&ÝßsúBCêB'zÖÏ1/L«ü*„óv8°‹ 3†9­͡¼þôŒH̱–˜ãPbD!¾½•NƒZ2&Óñù`–œw§Jb·g¢ØtX «&lüTœiEãÀçp:$}*àiªn¬Î]$TJÀ6é@ p³L!ó±ýã^ûƒ´3dEB-ìІµ%ýaûUˆpx‰3‘!ðAží)ô2î°‰UIt7™ç˜[0½ó/¨7­ZÝar¢Fd‘qÈ ®™t” #g^<1¸®ëWµ¢鸢!aø騼i Ú/À½S,Aʨ€F±K§+ÆÅŠøçC÷œ³·\o]­’ò‘Ne†Ž<%¼‘‚—ÐY_wεà…×Ë0Ãkà P~AŽx|sŽÈá±Òñ(/y"Þø—cQo¶“4—”ß}:C<ÌV!aÓ9Âr÷ªUƒ%HrÔ”}´©ÅñhZ„t—”üR°¢ô]@±šÃ2EÑà-Œ<%½éκ°n]tÕuNñføö æ!-½}3Áñ×þÚz+666½â«á[ª—ƒÓ*çb0uLRÚ&ÓA…ŽG:Y§Nò:V©fëB~’LuQ(çõHŠîoò+,d˜Ëáh?± m‘gáxzLÿÞ.彚¸®À ¬F ¿ÃÝ* ;ÒãÈbâ4=l¾”£R{þBËQÝ“¢BϤpJYÜ-”zõÜ—ö+ÕX Ò:“`¨r¨^c#ÕF®äAq»ªË‚a}V)eµ@¤0wú%Ã6 CXs›^¤í‚ëÓ ”»2¹·°–X§bˉZ*‹ÎC1ëh•®5’JÅxãòÛÎŽœ‰F½³^”[ :Л9§*d%-§N"Õý#•¯5”°v‘UÏV½²ky‘VS—ãI_7ŽKv‘„Åó•%?Ó¬Å'v)V9²·¹°\ ¡»!ÓBëf¸üB5gI5±9p Bש5MUö]>FÓśՌÛx Õ#¨eS‚½½_bš{BŠJf#b¡,Þ0c„Õø®'=n¦Y3RWn¶K!Bв«•³äÄk[Õ+ sYŒÃð,”\RïÚ¯ÊG Ê›F“DL îôÌJ¤nmá-›é8Tf ¥á ƒ²Ïà²þ„'4Ï`×ÿ¨» [ôs ݃lqâ{lv‡þQ?·èçWÅrÜ£io²ÌÄ-™û2¥Ø»-¸e n¥MöpšÃä/©)^ ?ké³Ô¬/á>¿ÙÊsŒTF%ãÏ?‰ÆÜ–¾œ|ðcOðiìãµ¥$ø‚,Ä`¢¾E{Âæì’è§„óB²ø!íl¼eÙ; ûj6QçôüOñ 1GAÁ²(©ž3̸£ƒÑm—&%²Xª/¥Éñ ò’‘ä%µ;rȇ¸)šaF=ÑlvøÀˆ¤ Ê9‰A¢à-„Ÿcð%¦–›¡XŽ-'¥´õ¤_PJΊ2Oô2…"kµŽz¸Â6äàKól ¥PI+™dÒžÄ!s”’da(íøôe+NÈ€Ž[±…y+}e¦:O¨n„ ¨g>ôFÃÙ`xinjû™  .¤[vñ#bMBáh‹Îk‹eIk[® ±(G”蟭u«Gdq‡+iæô0 ‡ìƒ`ئÒC×Ðб†¯ÊÐǧD'ÞœCF·é5nkŽX“[°¦ß þ -âÃ-½«·ÒtÞË¢?‘_èã˺Zýµ;‘Ö =«)³þTXámŽäYáÜŸML#ªdDÛ)¥)_fýÃK-¶µÐ2éÜ¢[îªÚZ|9-7öíz:gÙ²³Ö_¹hþǯ0kÎp+H–Ã%ùÖ›_`Wœã7šËt_^øb6E°›åø°ü:Çåfž£€Ö9œ\ ûºäòœ%~\™9G±ó4˜Ï4‚ØCOCð«âGY î[C¯W_؆ñNûpÁÛØê2CÆš»¸ÿ[Ñ›GšÕšÏÆà¿7˜µû³VÿLœL'0ß§“-û^þÄw[*ø ‡`‘U@\zØ{Ä”¿!v¾¢%½ºPMÒôôÁôz|¤ð „~qÁOY‚MËÉ`fÁðDûŸrºC&ê+á'_ð¥Õ Õ 8[H g áli8ªŠ¿œ¥¢9ÃvïZÂx õFã9ý «zs‚^/Ô{Ο Ò]ÁŽ¥ÛµÆóz¶thJ]úÐÔwÿ´e@&Ûć-|XÍÞ%†Ó 9KY\hz®9’þ®·Ùd†Gx¥íyhНÎx3î¤æ:©4v+ˆL=3µšÒX8º~^«èæK°)çð¦¾m)T æ*0Æ_ÅÑ?V&ÿg¤QªYReJµ¯Òè‹H£xÚ)%–œÝÄ ^ƒÛýS)ŒÞC.Û˾g‰ïESH9'hÍ£”´æQRmW0n«YÇ“¯¶aMÐä%À8fkõmøÚÏõöiÆ?ÍœOþiâ|:ãŸÎœO]þisó[çã‰ó±´é|ì;>t>~XÛfÍé´•J¨-¤ÔËäe§¼—ϯÜ1À?¬iֱ߼¸ûQ2 dsž‚TéžNY€„î†æFoä1çl”gÛh¾qôw¡.¯žJ¶í_ô‡³©Þ–<(hˆÙ(§æÓ`Ò: <b#uwNK6ÀcÞ± H‚Ç8©%6¨QÞ°›i„2&=ü–Æ®tì,>“ÅR8d‘õl[.…m)ÝïoK±þìÙöCùûÙö#ùâÙö7ž¿ßx4¾<ïNx'†—¹ggêÀoVÊü¦c4ðí7öÁ=QŸ(ä%šqIí‰ZÕ£j¹“Ô˜t§jª†ô[qªòÖ=ÛìBP·Ü‰êålXºooÖ·GŸ¥oßD…кŠüéÅE«zÙëãÕvßú1)·kmòm©0‡Qœ¼òÓ~µö…~:•"bÖãîDÊ S¤\êO™ÄZa ~˜Ï?½ÏÏÖØçýÏÏœÏG¦€ú|?Ìg À©}ÿYž>_ï©ë÷Ú>bF¸7ßÊÿÉN5þ >YÏôƒAÖtJ‘x#^ ÷Áôˆ?È/Â(pnó´š ã~²ƒzÊA}Ñ4ÎîKô‹é ‡a1–T,:} h 0÷í`wm'8Œ DÚês¬ѱºèI8p¯§P+csÓ°gÞõÌ»1¹¢§HT2÷2ËôÌÆa=¡ãøžzæÁ¡µ:ó ¿}3Æ RV; JªÌ@cµÜztQÒYQtñ2³?=ý¼£?™x?›;ø[IDáÉ&úè†÷‰5ùãçks3¥Í?©ÍÒ‚­ÅÛ±ä_¾«EzY”è…ÔwbG‡KÊÜÂ¥ODxs„A¦d"¯Žû÷žÖÊ{ò®Yë™nVÏÎè×þ°ýñbŠ­óCRmvhÂÅÜEÉõH%(˵ʯÐÿWSzû1õH×Võ{ëçI/ÊŸXYt`„ ú­Bìé¯åzÝTƒÍú!÷‚Dsõ[B¯¶^–ënðo§vX%Þþ±.Öþm ”‘‚é‰T5ÖާyTm¸opG ªð?7;Uþ[=jÉ7­ÎOEµ”ÿ<þcccC®$?áµ-? †6]c"A{-¡súyÔl×^'{-IžjÇi²"»¹oÔ­?¬®:€ m§Ä½Aä%¸p;M.{3d;t(+ å9íueyýâP«àŠRÓ¢;dÛ⻢(=¹Ë)Þùod·7Þª3"uç xCér‘‚H9Ô÷ê‰ËÑ­N¨t ž!ÁÌ *D±Zù›éå‰F[ð®é&›~abºé4ù›ñh:íO§ƒ:e¼œ•ã~w–ÚˆP«²ùÍs2â ¬Mk§J¨ ¡;sÃ~š,ö§‰Þ(üõ @½?|Š‘Îu()è‚“ÚÐ다¸¾Ò1-Ñ)Ê ÜCØÊôìàí  +Ž'#äŒkq)…Ž<òâΊc|8ëKýAÙè˜Æ”zÑÀíú×´dæxçèníbZßÁ¾8LÔ•Í÷Æ!0rÝÑ·¾ ðT>î¬,véÑ4N¶ðżËk )kûFZoC~ïñkðžï‚º¥xæë÷ĶhþpWÛ>2|ÒûÉQ¹#•˜tèêHªª °”¨ 2ë³ÅHðdÏŽªÕv Ö=Ýkù5Ô)ñ9Çžÿd×7F8N£BôN¿%¿:Vñ¡ôpu—.Omù4áÚÎd©Ã؈ÉA³¥÷½(Üyuv-Hɺ ” Tëà@`1²bMrn¿{*ÔTMÙ%XŒX+å½½Võ%»Zmìp‡×°ùþcŒ'›Cðg§U`Q%Ð^™©v8ÃCûŸ«¿–cІ3ôÔ›ô?ër|ƒA'ø²ê GÝÔÏö <zè¦kvÑwãŒød4D õZ9 ‹×R2ÈÃ3ÈçÐ7#œb…Šµê¶‰/ݛ͈\õSB›Ót(fƒ‹¾1í‚$Çz⿳Á•Ô9\é² ³,~²ÃŠY.Y{ÐËà ã0òaû×+ ÀÚõš_AKʈåìrŒÎñ$DàÇ1©q,¥i+iʉ,ÿí¼(7`ËÇZ#àN$\$UDÓ]®cïèO—¤ýl(#Ÿ¾˜é~Ô{¤Kœm‘«é“·Ím)&Ýs`¬ ©,om«±üƒ$ÈŠ&…Î;¬Š/kÀï»wïŠýH½Ó‘˜½—ê9Ü÷€×š{œ…¯ùƒfô Zz•å4Ó«‹6aÿ|¸.Õý üG*!r¹û®·»†kR_”:­NËRu—Œ+kÕ4·¤”8s'{=•¼^>"飙¶bjïXŽN´לdF ŸgÉFj¹ôJ}¸•V;å¼+ÝÁªiç!ëLáµõµÔ¥ý,á¼ó9ÚÞMº£BÀÒc¾PÅjÏ;£þà,UôG}òŒ9 dû«bóêì,/þ”ÿ~·ÐsñmÎz£„çÊ'ŽsÇY÷Þ`¨UÍ›Ž¶9h{nœ“Q¨#…@†*½ªÌ9õè šßþLD½éÙg;`ÍÒ·ßúŒ »߈39™{QH>–Ø^}æcën“Î!Ffï'£K¸Uþ 8­$¤Í`j’A¢>=DÝ™:®Áޝ‚ 5Ã#ëù®_ŠJh‚Ëù»Ø…–ŒüNŠÏÄÂÓ[yòyÃ{Ïmƒò;‡øôŠIõ'kÛ6œwÿríéÚŽgò\ûyÍz=ååGV!íèx%µÁ ÏRœmXyP€f¬½¤¨Ÿ×‡Oõ—Ë ü ží‡uýE=×آ—„|OV›µq0ÒGwåŽºê¤ Ll¶ GW0ÉÚäåô™`ûŽw l~ŠCJy¶%QÍ3ƒ[Gæi¢ÀI:Ð#d‡˜~ü]–Ť0aIzÈL3U¿xrõ z©÷¦)®ûè¾ÉwisÄŽZLJŒ?ŽóÙ âÙ`¢—ú‘;‘Sõ~€‰ÖHT+”²§”cÙT_0vž¡bÜVŠõµH“MX{ÝX>9ÅÇQ°w}ì^5[û!r@`_/G¼ÜÓ¸ädVžXlA6vãÈæ,Bpkxâ©ûìÙ! yÜ aváºÄê>ÊÞrµâAº8u,8¦á¨¦ßð]MpÓøÇÕõøD½ÎÌg‡ž9P˜À3¥«ˆÉ†ÙÅ3ÉÌbã#ú×+ѱ¡µDfE׃à1_ÄE76¼mb1üPqZ.dërÛ¦ªóm]ºNa¢SU ]wErÉ!£™˜wîD$Þ¥f¤´Ý“‰r%\€…CÙ 0äã¶ÃXœ¢“ÐY…²è¬%`‘¥©ò‰Î€-Ny3Õ8*66 ²Gˆla¥´#i F÷¼‡+°V ãƒúÌ‹ðËÄŠ%‹ÎŽG"Wj 9Ôú¥"R@G·uOÖAnA‰«s¨Î£J7éŸmÓQôC§ØÊ¢ˆ ×*ã|3öÑT¢Ç51gâjàméhl3ýµ4QrSƒž–«üç]ÝãzÁ+¦lÙF51ª(þïÒT¼”½ŽNÓJ³-61ÝÔìp-T¸wš¯ùj]—ÔFcœÊ­9ÞH‹ˆ^nl‹sAÄ«†üe»’a3[ßnÒkÏ™lŠèÈ‹ö5¼ó÷(gõhyIâëÛןI±Š…ŠýŒ#6éí3l0…¸Ö}»ZLÇÿ…ÊUD{ZLßúdóØÍ”­(çFì]1,MóºEÕëÿ„yì“4ù¶¯…Èé*LN,b§Xé,Ó¸só}~D!»¥•ê†ëÔüUj±5Ê]¡®ýž™Åé––¥Ï$üùŸäàÞ^- x“¦‚'ŽÉ«r«‘s…¹’,“bø{W6´«Æwxy~ŽoÜk* ºÇA£äf·"É%b?ïä›Ìíz¹ýBU×!‚¹óæ,ÂÆöŽLº"MñáXÒwvFgKãî nQ^"^ź²Áñ>«²ê‹ú•Dóqš„S÷ V·'K ŒK!Þw§bíߦkš]j_ñ{0ë Ë\ÁÐ=ŸËõŽ hxí'& Õ>ï`Ôiw2‡¸ neˆa|ò‹òg …"õË ’û;Q‚v`&ýwp;Kô¯ÆðW osl¨™•³”¿yk<šL®a¦Š½y«BÏ™Á¡8TêÇlD‡“jn uyVä’A¨G]1íç7OÂò•]ôÆé'ÐëÔá^ÒŒÁZ¥"=°hY¿à÷Ïm6fâý Ø 2вW:VIÁ‚5ë7lÞ‹†5ß"Q»®`íƒt_A¤±ß ~:Gó· ~+îÌ ÙÁÐ߬;×¹åP8[h‰èo¶15<« ýw¬‹²k»x1éø£XJ:²Sêwœ’?oÆPn¥“n$}½iãô†›‡p?wƒ†€ÀM8a@e­éF¹Ç‹ñ£'^èè ¨æ»ˆ:¸0?gst*O/ÇÕKòõ<ÎÎämn)âüí޻Ϥgªef ª2ÊI¦ £0­îŠùGçåíØ;ز çÆäK‹Å… ²×»¡»™ ê:OÅ¥g€z³HoWií\tCK.ùügÖ^Öß.zŽÊÕfÇÑ$Íg£î;Û¯6H(ón·é ©Üš{B{ká åºf6ÕvÓ÷v-?}ÑÏQŸc›Å°sÐöë9ìd…Ì]Wñ”ŸP8ÝÃð”튗tv’ÍJì-vWßöK‰çó» †5¼FºÃ¿_nÀU²ž*§'r ¢}5VâY .…™,",^}A,J©XœÞ"¸A¿1ö¿$éÔ˜Þ"í#s5lYj´¿$éÔxïâ2ܯ]! Ý®_¨Œ™yoõýô޼þözñë‰?&¬+cÕúu´ºnó:²dW Õâ‚Á”×þXÓ±AŽÔ%çzzž\ljÊÎÊitAý™õÔøB­1OrÒ1Ù9—¬֪Ô«¯aB¨ÙÅâ%ÞqºÿŸkªH8 ˜CÎ{fC‹çX?ï¨C>„a=¥îøGuá8^Í9÷~¡*™ÔÚ99tyŸ<u8¯q^T_çÒ é_d£œ›ó×øv}祩;zs¬“¯jûŠ^–ëÇU·²w g^]83Oï–rbSo62Ð1gpúäS o·ƒ7#å feãs½–÷\]zsA"Ô|aYâ¼b¨B¢dx|“*¿øþë,l@æ9¸{©W²ú{P²å>MÝ•S)Xí \äN±kÔm·g\PIáQÉ[½–åÇ­›ð£{ª^zM¡Í†K } …O.grß?[›BY~KÝOVêX(;nµuà£Îwl„Ó%Íå$Í"r÷†íÑ' Û£ì°eLÚô)»ð„MÎMG(­m«§-óôÐ<=2Oߘ§ÇæéÛÔ  ñYÚ¬tÊõ‡îâ9‡¼g 'Y¸a†‡ÿXfX`w£)ìEUõéMh/rÿÍÍfà•G˜93ªÊšlÀ]îmí,33R®ÏEÌoÖ¸ù!›5 FyoÞv–aÏ,éóÆwǶ׊áË·kâÚQÛ1ür;ð z;¹PJô!޲›a¾üãÍó4{õT¯gjU&å/‚j‘lÔÜ”áÙ0"Ô[f8ãékL…¡¥Ñ ‹¥G#WÁ½øeõņ¨šÓ~Ä‹ÓÃz½¹Í10èj*ƒÎï‚=ÎQÕqÕáYÎ7a‡Ë}>‘ÌmƒHˆfÁLµ÷~ª¥D½ Øp²/oèEï#}ã“ ¾LÂíÚu®™×±óZñ؋׽•N¼Éz#C©ß,2m×–qì¤q{jŠõ´aK‰ë å¶ÄµÖþ!ùj« Gæ˜TL\>ÏDâ ÙŒN §¸Â¤e#Á›nj¹¿tOêÇí¤Ù¨Þ^'KŸ»“Ï–îä‡å–KÙÕ/2–Š ¼GÖZˆZú Í#¾i+ìu¦Ño±juÿ'W»õ/Ðùø©èœðçxj»¥lÀ?ÜðÖ&[Ôíej?ï¯9Ë üåæ.GȦråoWÛí$›Ç ñÁ¼ëDïÉ ñçŸnÙ¥µ°2šÝu›õ-*áødŽP)½œ3F‹]¸…†2œûÙúÇÒ35ˆ0åÌÔ‰Ù9ÑÍæu†Bû8>qòƒP„Ww›Ä}!S¥‘Ñ©&ê&É:JÛn~UnWj¯«6X!Øi"KÙTÿɱ"þÛ±–¾T4õ@ú¼ƒ$L˜©úmWCw‹D&€p"Ñ©53Ô†ÿºÁŒ|Þ8Îà Š³©:½e7ø9šVcÞðWo¡¼…æù!9nÙ5(Ó7Èur}ƒnÍ5è«ûÏW÷Ÿ¯î?ÿgÜæ:ü°²)N?êé;óô½aÿtßgù7ÙSBÿ±D~ðÈòUèpk°‚q®‹Ó_ãÄI-äÅ Ê–-ûÕJíPê*ª ÇŒ)uÄ 7ð/úAùúû¼2Hw äÿtÜïmàíŸà©÷)~yŠ(›à¦¿µý0ÿÚ·ê¦Ç<‚î"uÒÔe_˜§D·ÃýëZôt{‘5ù2&b"Ç¥–ãŸ0Ž—ÛW4¥¤kCác×{o…ÂŽØ8.8Õh+üú7ÍD1ì÷O7Tñ®×z d{Øé‡M÷Wa©¼Æ_5ÑXéšöG®–6ÚÓª'§(NºC'}øYÊg 5çD9OýÍ…n:—¹HWƒn@€bO¢Æ‚W¼ï&DŒ×/(ð$ü.‹£¤U­Ãíéò^;gñãçÓqèN¢*C‰×Hø»^ pÿ´Å>À1Xõ#7Gа|e`ùÎò_óôS&eEÏ(‡:„ÇÛq%b—I“8¢Á¶ÖQV‘¹g£ä\\Çj}›R©ÉÑvÇ^BîŸz\e–¹7/­(Uˆèa9nìWj )¿AŠKn?¨¶ªJÕG0`w?KW œ¬q¾%žÖ1VøŸ‰ù°©b>Èa c=X4øooš M €›ËM ŸdžTø¤™RŠóšò6 %>²fDåÈb†ÈlJkÕ›“ñv§ºÝôFí³k«bEüÝ©§XéãZ¦XhG‘r½Îô«w7ׯžs·¤]aš`ŒÆÕ¡ì;oY_L©Q+ý;³Ê3œæ,ïþI–¤FÌ2)w4:Dz`1 ‹EÃÆ…EßÙͧK·OåË"?¦î¸Ò8CŒüH ½³.*ØŒßóí=Y÷½#¦å?|ÐO»Ùmèçìhcǘöž·7bó®{sŽÓr„Ä'ÞgLsµsô?×|AéAðʽnëúº‰8¼D“åþéݳ8zw,¶5ÃnrUlîe1ܵƒ®3éþ¾í›ÃÒo‘…,´Àù¿læg ¨h…ÇìN„{Fc?äÓ¯ìëW^¨Ø¹—(6ÝîËr«VÞ«WUúG9cÚ+šNd@@ž–:ÛÁAµÒiSÒ™ÑÙÆŸ°™r¥Smµ½ ÿ:ÖO¹ñ”¡x?¦ 4½v‡àÛ5a©ƒ8A²n§vXM© ÉuS«ÒÝÞ”HƒñßýÉ(‘êóh(÷,`DÂ:l¶Ò ëb4™LÄí\º ÷Šïx­^Î\ù~í,4)÷k6–:’ßov4ödy¾ÓûíîìãýK?—^î2PÆE ÅP†±ËÆøŸyw(~ohšøŒ}+Äù›Ý9J»o´y|!ò%x§t‚,wµã뵎ÖµŽÏp¥#õ›¥Ë<µ™¦Eû&¥#CãOiô_G–˜Š­b—vŒ…n¸ê8î®á ÚŽ«Ûøq ÝRÊ}(ÎÆ»oð‚×Ç`\ûüŠ—’cêl¸Q]‚Ñþâ[<·ƒç?—k_jϷ∂©Öx^¯H2Æ:¿rçÎgóª”Î+¨–OïÖ¿þ½»Å]mÏàÅœ~½Yzƒ œ>ÓMº2‡Mß:íb胧N ú¼@1ÿàíÆÆÆ͉÷àà­HsÅ{"ÞÞË Ä¿øÖ£ê뎤ŸCr.—âyxP¤Ù,|GÇFõ•ÕHê*OšœB•ˆ´†·"uÀ󷈓c½$7%´Ó x«Ñ RŸì¨êÒq+Ø"ñjƒ„Ù+þ­ûÿ´Çcpœ–´I ‘+Y‰+ëì½Íå²-ð ·÷Êñ7/e{†¸¸/’ŒE#€ëÊ5l—Šñ‰lPŠŒÁ7ŽOÖŸ‚ f~GŒOìzÁQÂû38€ݰw1æèÉz’Øç½¨fÆÐv´µùsQ,[m¿•Lµ•'Íîðãžß.]):‹¿?fUXKo6gO¬>*®p¸ÃÏ“ìfJ¶[é`XQUÕ{·~àG gõ …€÷Ö¶)4]b³éæ8JЇû÷R˜· åùjËI·×H/à'~îWɹs¯›Äx7INA›ÛJÛp2“+ EÖ"\4„›fè 'F±ðÙà2€[h2ûˆ¼ ‘[6~ö§‰"4Ìðè¤èI&»«‡¯Ê4'tlêØ”ëf †Šë5ׄ¤…·v &áI/íö@ሗ?Ý©‚N(n€‚” á$$÷â³çÖxvyûü{þ3†·ŸGÞé„wå0ÓRÙÊM¿³ÕQ‡©r¨ˆÄpL™g; „iÇÜÈ"=X{O8wU]Ú6©ØLþƵó°1oQUîN¤Z,ÀÀ—C01û¿K ç°*ɼäÙªvŽ[ ¸Ê#G$'ë`°Aƒ¢é›—iRYIäMµ˜}’9+Çn*Õ`‘ûåú(áÒ¹—cÆ\郇t¥Òî”;Uä(ùLqcŠêîâôJóð¨^í˜ß²^«³J‹$«ÂLQ ^Ê eQ=Y?ióðÃÊŒ{ Ñr¿% !yýŒ#b âÈÄÛ–|Ôþá½+à!¾Vô!<”ƒifºŸmÖpŽ‘`Ѿ±Ÿ4tšÒ(@, +JAG§6´àêJA‘&*ê#eÓ™CCE®ðaª…ŒPqÙAÈ2»6sœþ 3€H¼{¹î¶í5(è,¦×;>SƹAîݳypt_}(R~;¡n{˜&ƒé¤û;™â?¨¦ŒÇIJ ÎÃþr+-ÎdÚ8MbÖiC¨íT6˜wþ2Âõ_ÏEËL,ÛQ¢5 V°6ûð£OE¥S°õ\ÁùA=scMŠže  94÷Cxü<ÌM¨\—ûì¤zx$`:Ür“ ÓŸÊ@3UgVÞͱàöïmèA7)vlz2˜ÁÒNW^èl†ó )=~¬{žáâ<ò!8ŒðHÔ¶û/²øf*س¢ÔaïÖÿÿáÑÌÑ™©œÏäÔØ¦©Á†e¡Áômâ‹ .CÎJiÛŸÃZû° º:/í˸ʪU•ì5*VŒÜ$Oœ•G«,ŽE• "]`›¿DÅ&…ÔK1éº6Û‚^qd}µÜìÐkEùš-‹ø‚8=kYÄ¡b¸¼Ñ±Š4}r7oè>õn·.Ô/Ô”âëÕ`…";ù´èÞŽR"Ê= @ú[|gûŒ³ÝAæ8Udë‚(z¦`7~_w#Ž÷òváŒÀì¤#Ÿ•/6 ù¼m˜ù'\g Û‘F{ÃÍPzÚ*qÞi¿#GTt‡§‰qCôU"©ñ7<“J5TÃjÕ,Q5 wç*Cûöûhòk¢v\Î>'ÌÎJ OI.ÑŽ‰æqÄI~0z™ž%fÃ…»*ˆŠ@ Ñ7HzÚÏÞ“Û šÿl>ðk~ÔƒYTÇ3—d¿zñ{ÐÔ|IÑžT¯ÁÜÇO´ÛêÝK@Féár8Žñ½åD%…É,mobâ^óÊ\ÅdvG9È–å–jÙsÿ"@›FB¥¬Ê¾òvçô®„P,“Ÿ³Þy…«uv¦«ý%Â]/­ÑU’/ŽX.#1žñwžè+µîp²¡¡_µx~Öoé\ðÚÝó/½õj©ãìýÕÛa')³o™… äBaÄ)q9Q9üqQÓßÊD½Ó˜8÷4U·i¹Ò·)%i¿d)J|ï,~´ªx4÷:‚ê>uã~¨¹.|Å-ªcj^T%9ùÚª{x¸–yŠ*¸XŸÐmQç—ƒR{χÆCŸ›uwMo‡fa7×ê+f}8´1΋: åÆœÁm,7°àHM CÚA8[‡tÃ½ÍæUÓy9@4C”7Åå4%ù/u¼7‘¡†ø–r¸Y¤5dy ›üGÜñˆªÔO»˜7Š…þPžÜ*zA”íÁ¹Í·ú##>s,‘ë¤FÅ¢`鉨“!AyL´À">ûÙÏw@}°uFþõ³í´õÂàW³øe, Í N/Ðs@žZÃ!OH±ýï˜[‡Í©ÿBj0 Hš˜àZzXgŽ&·}lô“‘1p"DaøJŒò  ŒËáûœr)ê&,Æ8æÑ¡ £,Å„M¤€JR|%S©»Ÿ÷S‰åCæŒç"þÓUüOß8sV€”ܶéEä±í Ë<8GÎ3îÞ}^L†Ûžè&?°ù¨”éx;¦%ÝÁj{Ó•ÒÒÁà-âgŠNríñ̃Ö[mhÎ3ÒÂŽaÍðo¨Ùí_}ÖÖú;bUOÓ¡ý®ÄÆ$Ì ÍQ¹Jõz)2CÞóà—ÿ5vþê\Ñ[(q³öeg©)WJ|–ö<-` Q©Ídxõ…Ó4v€dƒq_-ãj`1Ká9RÅ ×Yžº~rNRÃ8FƹŸi- >¦,™GºÐœcÃLJÏ»‹• ©—)iÂŒùÔ@xäå ©å–ÆLÝ+ª@¥l`ÙVïjý-Ÿ¡ÆˆRÌ®!ñ©·¶¾æ­p‘y—6ó¢ õì_¥Íë÷òAƒNObò¦²ªºE VÎ8âžÔ‹(þfýªû–ÝK潉Ìú¢<‚ø¯_½…=Ö›îê*<Ê®@f7BH4PîíÞõК?f JçøHЩ4‰E9Ä %iJ¶7w×U׃Qt52(ÌmæÎüùË&u„éÙ4ﮟ¸ý‹N¹;î Ÿ4í7á¦75ôiÓí¡¨¸sýûuwþv§øögxIÏ·dÇ <¯©î+LÛGÕJí Vm¥`¥i£)늊Ÿ°¸Zt,ÈHÝ2eÛõê*µÅ=°Ç¯buZ(“Uµ åŽò™B{àÙ¤ßÏu•YïŽ9LäŠ?L°«w,ñºŽ-°;ä„Þh¢­‹°¤w{ÚDJy LÑ”öé#k};Ú…%‡AÎ8j Ç`þzŸ½OØt÷ ò§Ýˆ¬¿9ªÞ¼Ns¦ ~8˜ ºçƒÿî‹óQ¯{.±˜ º'çý)ŸÜhËSÄtëO|ë¤Lç » Wƒ¯ …Ç‹vMޥ܇sx·oÜž»|{ìÑëqxøjÕú„,-ž1«6;\·7'3­ª”.Ç­ªv« JŠ^° °wÍ&޲¸µÕ’”g Yt€˜Ë.ˆ©Ë¡q©Êži7cw´'Sæ|Jc7ƒX‹/ÁÜélÊÐÈ™ìŒÒ g]V/‹zD2‡ý½R¯–[¼„îú®¾Ø˜e ¬êHŠsKc£ú¼Œ‘RÙ¢ŽæðiÒ¿Ï>ª ¢ Š€„¤5}÷b÷¢9P—çʨòƒÐ5ptfEta½ª8ôÑ£¾á¥q“Þ¼Úìòø^é1}´åŠCpD¯žj÷rj“á…‰¦g8§’•XžÎ\ß&èÿgïÛûÛ¸u´÷ßøSL³¿&’#;š]ã8]ÙVŸ:¶ëK/›zõʶœ¨•%G’sÙ6ûÙ_ 9ç&)·¦=ö9=3$H‚ € ðÖ©ëô?•^Y¡·‘¯À’§7iÖüù*z ó(?Ã[K8“ëÓÞÛ+ãm0¥¸Páio|Éæ·ùüý×R|ȸ?šôòlK9.‚Êl7‰Ý,ŸÚ_ô¬wÃÇaâKR’É|Xä.Bvr#ª?àsîî•Âx£®ƒ‹9¥Õn'íÖÖ/17ÃMfÆätB‘tÍá鎞¶·å¼[FiºÙ½ÄåVtƒ*¦s©Á£ÀŠ Æ?”Ún<°ŒÂî>ðX+|÷`uuUí”÷„ÓzïŒ$Æ/qk‡}v¾6nùŠ4½nˆŠ’í¢ð2.~ø¬™r÷ó¢t®Û¨cB;‘´OÞÝáÙËѸ £Û)1i“‰-Õ-÷ !Uµk~Ô^yÖãEÀ ËlGhŒƒÔg6øˆgÑþðt>âéœ(FÄ'mÓ±sÜ»[aXŠÚ8¶Ýá…Ýkm~D–ýDüº™yÉbé[ ;GÕÙ¼Ä\Ú½ìK‚ßÝòÝ£\7²ÜööS²G'<<4Kd0ýîö^ö‡ç ¿× Á%úëFµã,ðQGÀ$úEw–ÖáJÛl"ÚÙÛû¾³Ñ~º½ÑlìÔ7 PÓeA$TžOJÖ¯Žˆb-ýu"-J2å܇TS åÌÐ>[S̈ U¬¢3÷|²<,œ†¥œ¢žf§aŽt댤°ËÞ¥A ij|n.}Š˜`'š;w$iëºv†Vâ!éçGLJ$)rêV’X¢²0%$;v+zÛlí³^út[ñ¥ƒ_œq±FèQ#‚4]r¥8Â[jú·YaòÒ™$ám$H3²@<'ÎÌëiægW3\þÀ]—yšÙ."Ó{»t7êp›lÆÒK]­óRÁP]gt8ý°É³˜‚16`Žåb!öŠN˜i0~Õa˜ïÝkÉ}ý¿>hj1׉Q³\>÷ÉYÛŒ44¹©¢|*æìßIƒ5þë!½|äîh.!¤g¥‰ÝY`í #›så,ÀÍ^–B¾9i¡lÝ\~–·&æägÉæçb ¾æ³.-¶úäwŠPÈn¬¶KX’”¥ HE^®ØÀ}û×¥ýkbÿz{7Ý%À:YÛ·é‘äJüXU(ñ®è¼ób·ÍÝXŸñ¤#¡í=Å+Ù{ü¸`HŸ9‚àHG:–% T1N?Îö“Ý=¥6´Û¥|8“Øàá^º­ýöÁNJÜüìα+!QFIÒ©™Œ¦¼à–“7e—Á裘ê%±–:IÁf§ø€>oüò÷˜¡Yü'ï*6ys çϬ‰HÒU£÷±3ްk9ÚÍ‹‰ <¶…Êèô c=ž[àLZJœQˆ Í]h2]þŽiÝY uÇ‚æSô…Ÿ×Á¸Ûú!8Ãft,QwÄØ9Û•ìv2o¥Ó?ŒÑ5vš, Êq6LÆX¿xÿ¨"&oHèÀÍ~¡yTÎ%õJâ’"/qõ™½Ûœ–ÐI‹æ{»®øŠ|eko÷ÈŠwZ¤×ýÐÙ…”¨­ûùò:§dœ«áÏ>yVgve¾…š±ÂÙ]]ºã§c‡òöw·KÞíeúçýó<ó¿÷¾»ÁkÔAïüú¬çB¢*˜@h÷èdÜÓ'·ãaqAM|›^‰ß’<zä”Ì´ªÓ‚ü0½›º¼ê_ѱûÃÑãƒÂ+ëBDˆ}5\y¤ÓÆÑÍ€;wý£›åj ‡ '»¤"D?¾‘ÞF$¥°&]œpßTaw7ˆ±,$"¡SE`Wƒþ´0‚?îÿú‚3Ñœ©È5:ƒ.ß_íŽÝº®ºŽ® ñ´\„»šÙÀŠ0»Djh…š ÁÏQðÚ±"©á¹"ï|t}ªTI»/ZPªèëÞøT±lv`å´ïŠßyŠå­®®êPpSý ¿XHSϳ”G?+¸“髎$³VëK–P(}R4äÔ0R+§5„²7ù7*éXqõ-µW¶vÉ‘âðˆ\%›#¹æ·Žö€8¾Qöñ**¾ˆ¿h‹õˆƒùeŸfæ¢Ëôí fõÎ!–èÆ%WÙ8~L‘O@ì”ÅSþARê9 =Ì<·¨?AØL<?tZ‡Û‡¨ĵMSn«½ƒÅLtÊ‘P‡iäsær=ð›¸<-aã†1öBbZê{ܾ†ƒ„Èÿ1ý,íï„§ÜŸBä -B\ï\/.dt§£ñí˜àYXvñP,„©]:W faŠŠÓxG›2 ¬Dï1‹¦ãáO¬+?ÝÁ´3¦ö½þp5íöª{ÞvëêjðnSIGƒóÖø…«wô;]úÞ!±¡s¡JÄÜ$À”ûn:z~"^ÅòÔáØD¯GýóeO‘µQ¢Ýe¯ß¥Ö]Àônô§‡½éÂÍéDHOUe'Ù$Ô¢†ª€©TvB|væÙWøtÂnïD›–¤eŽÒ£]uûCã—¢˜"ÅÅ;r[ô0ih‰v‘õjˆ· m‡†oÒÙŸZ¤‹¯ëâ^Jq7¼b^pf™Šµ/«]Am2ñ´È?gGœŽøŸY§~1w^råMÖÂS{íº¬qôY—ÅÜÒiÆ¥O†¡|Vë`Q8TãÛz²îìø@Þ–4kŠo¿/X >øOt”&ˆf©c¾Uú!‹ôVúŠŒÖÄô@Ò?á/‰"™!œLÏû'é±TÖ¡AëH§6—‚‰Ú¡d4ÌX@?™VÕIÇÊü°­¢;^á%àõÞ^)¡_‰ù—JÞé¯p^z:Àq5³ÑåUwÜ]@gÃ¥m†."N½Ë.™’¦ýËÞª+øíJØ&ÐÖ³í'¶?餸i!ìAgÝ©ˆ"˜¤à"aÍ5?1«n¼+ÜfÊQOšÌ¨ÿX.È®ÄÛt1éý8°ýµÄnÌ6„;@#ñ(zI¼ »›[…xaŒ&œ› Q߈.äÞ ó¤Eó èX‡âC­ïÛG6M+æˆ}•á€aàÖ)t RX¸ƒ‡ï.'^‘úiHèÎìèBŽ œÎ Ø7)™ùN”t/ºÞ†P,%[èÞMïu8wËbfÂ(}â$:£0ÞÓÖ‡=–¶>-L`ÎÉ$F;1h×Þ[î]j£ð¥ž×¢™ÚÐÞüG²î©fìtÀ=—M=èIðbÒN|Ò¡fŸÀ¦²¼C¡4Þa¸ÅŒ#só<š2ŒÏ12A#ýÜ7×#rí¹Ï³¢9ÆKÇ/ºÀjÕQ1õ­ÀéïŠøtúnŠW/ͧèuÊyë ±é‚ÚÖnX¯»,iŒâñHŒ9X-SéRi®_ Ðè — ;'C‹ç ÉÚñ–5{H[n³z£’ ; ¼ì®K´Çñ}€m‚ù´‡1a~gÍä#±DFAFæ()$—uKM›6âÒ „–QÏTZO ƒÇÇ[²~'TíþýÉËÑõàœj¤4¡·sR_„zèÇÈK¢ (<§x\HÚm;£Y’Êg&aC. í1óõDN™• 1åP-ãKŒcoПNÕ|‘ÔÝêØj5aÁ=¹Z[$GKAÖôèV9Îɽ¤·;‡Z›Ò‰Ó]zùdâ­¸¡Úè§@v¯hêË^÷¼sÕ=/XJ)dìÃ+–cÓh:{O:0͹ù\´’K-®]<áˆØæŠë#óÍÂõÇ{Gmq ®]ƒ#KÖWÏ‹]}×ê•I'öŠ9Ò2G¸‰’kq|Ùøe§”Àïkn5?­Úݶ öÊ 1·‚ù¥ªL\³ÏADƈ½åhÉ Jžé´¾hE]N±%y$Tgs%ÕŽn–çûì94í2´…öMíd£±›»tÜø¦ÇŽ:…Q£Aå&BN‘Ù›†pñ›®l•—­=ã»MÊžñýg§€çðç”\gY€å Ž0#Y™ù™3Þc9ýzÛÉÊLµ÷¸Oœ¤ÏȦ p.±º‘cá£lz;«gg«Õinj)mn¦0»ŒIOe•Û“Ga™³®™MtAΓ8ч:Ñ.¬Wé(†ÖÍ|¤Cýà ñ7sšåÅ’B@±cqõ;§R1¦™UGöÝ_8w¹5û¬¯.éÓ/6òÏíDá%NÏG§>%Ä’xlö„Q >’¨`Rœ~ïGß5ŠÛ Ð…wJ57²x•Ý ÜFB®œ{<ɤ@ìrš®Ž¶GM&¿¾[»¿Dibܳ;|ÇBåünΙðé÷Ñö³ö'j‡6m}ðèPü6æ1‡›¶õÐ3. hGZ6*¼túÕ0k¤—á ýXF(Z´fódX÷.V­'wlüú;),i«Ê¤“ð¾‹TÿM¼j‰'ßûÅb¬XÁÓw|µ¸„º¡‡„BØiÿØÞá°Ô‰º’ôdÐ{Ý”ÒKèoZ –"^€œ wÆ2§8îêÑÝ.ØXt £=tƒÕ<ÀÑ_¤\BÕõ "Ú;¤’´6 /R.¬GPb·¿3²íi°3„Qêm{.Wçãoäý ¼D:—|co–$£ó9<"Џ-eò³ÇœBwQž2ùÂÞ¾vWÂ3¥M¶–"“ë×Í=UëgZð[íýÈö0v¼¿$™)„•%^µžPˆõÇqG\ÞoL$Ð-‹wûHMä•4ëæúUÍ]·+iõ[. ŒÏ?·­+ËÊ æÏPFBÏZb 7óÒC, &98¼îúèÈבŽt@¬«™.=é–9dn1š¾µç9;ÁÙu©_²ïÜL©iòÊéì-ËÙ´Ä›/byº;òtb)^ K&˜ØUÉÜ›È8!Ê<±y…çĦrGûѽSêÿ¤7™ô_'“óˆ4†ÆÁž3+sÆGr³^üîBÞ8fÊa)±zŽüð zÿJ‚•¥"eœpVXŽ–ã«a|»pýùæ%½²9¯ä« Ì‹x÷»§g÷Ž8wy ôÐÎ Å·(DÄD(Ϙˆhµ~ŽéP=eEnë j(ÑO"üœ*Ÿ©soäiÐ:–âÓ¤Œ0$zÜó #ïü阶ßy£rc‹: P„&Äcy™ŒôÚӀ›E®p$O'Èg:ëüxÖ•Að-I½0h8k{/ÚR¨-Ü_Z;6Š¿î¯‰ŸóÊ⯠҉OtGxø‘ïÕ2SËXG½ºsÇãGî•yp{õ!ˆ3]mNÇÜ­\-·Ö¸¨¾p¹³}èä›ñǬÐÏ:uƼØR®Þ”rßÚÂÙ~ta” ñò¶ F`TÈ^tÔ_â%É$+©Ï^MÈD·d¯‚3 {íĹ%Vò#¿8 €KšçÅÔ­Êu~"÷u6Ië,öK’n.mXAë%'vçªäŒ-¢eF ™Õ.ÙíÅZÙ.Å•ÆYÖš¦ÉÓEˆÚ‰¡xÕhÜ×’¥ =NÎÞ:x¢‘¢Â-¶Àêàåt½È2õ7Mˆ²à‹ kÜG·‚ôûŽ–ëZÔÏÿ¸ùIÿùíÕŠ¿Z»9:¿ô&÷i ¯Ç×—ÝûŠÅÝW„À„³úò£Ú(—˵JÅ£ßõZ•—y¦¿êÕŠïùaX¯–ýzŽrà‡µð?¼ò'cîÏ5ùJ¨®¼t‡/.FãóŒrªØÅEŒgÿM~ÌÝÓƒöƒŸÚ<ðêþò'ùÞ¢IÊ[‘Í›ÉÍ£}†îƒÓ]“1ÒÔ>2è+Ápü®¸ôiZ¿¯†±²ä-{›£«wãþ‹—SÖ(\QÿÔ=ïûÕïG“îï#Ï{8ž¿ø=l†^ëÈ{wzêm)mIá„~ývõˆ ´¡Ð5øIoüºw¾ªÞÓ§ƒÞyŸ˜Þé5ï‡tažœûCo2ºŸõøÍi¨GþŽ—“’\šQ~®§E­ÉþEÿ¬+ašèfÍ•’öúSº–5½îÓÍšéË®R¼^öè¦Í`ô†îÜ(áœ]‘&…ê]öÈ\½ìù«±®qTÝ'æÅ—j9ƒïª¾Ôî)Å:3# êg8R¢Iê#ˆ”U5ËÃsû¤=tû—½1áÈ ’Q FLGÔ8éÖûgê‹'£ÔÎGg×—½á´k&í¾š‘ú>¦ËK½q¿;˜Dˆç #À8 CGO·½Ã½ÇG?)±ÚSïìý¨¶ì-oãõ±íµŽžîx­Ý-Îk¶7Žö½ÿ÷ÿZ‡ªüÝ»ô‰©l÷O‰õíÃCOU ¬Û Œ‚{@1OÚ‡%o{wsçxKI%OAñv‰²«Š함9”¬éí=öžµ”±{ÔÚØÞÙ>ú…;ôxûh—š{Lô 8ÚÞ<ÞixûÇûJ¹àn©ammnî´¶•à¸ê©N¨†½öJ‰ðŸ¶vvp˜êÿÎ(7Úª‡­ÅͨQnm´7h8Ñ_› gªs;J¢¥3(ú£ýs[¤uðKIƒ=lÿp¬ ©m«õ¬õD­0+jB6ÚϨ¿ Jy:<Ú>:>j{Oöö¶ ”¯ôœ·7Û‡kžÒªaÇtãf«uÔâæ…-õYý½q|¸ÍxッcÚV$@O÷~RˆQm‘Ã8ÞÛå1+íüBp <%ï§§mõþ€PÊXk.HVÜ<"hPRµªðyƒõvÛOvXÔlÓ×=ôÓ6%VllÓX‚J-ÿÔú…ÇxÌç¹R}“?tK<£Þöc¯µõã6u^Vtp¸­ifï1A:<Þ|ª±O«à>©óÁµb*·oWâÞêËÛl…bókÇäÎm’q()+P—ñƒ¾kÊ?¾ó,|ºFà| !êŸ?l´›ü@ÇOæC?èóþPÃr,5êø¬ŒTé±cß{M·»j½èñ•c8:íO]<©!t‘Wœ*ù§à?|(ÏÅ%[’8»XêÊûb¼, Ú)+ï“Å#ô»Åé!Y:š·´zŸ( óä¦÷‰Â0wNazŸ( óéÖïåašò&x_¬8L¾SœMÏ ØA¸°w’eFbèÛÙYg£5yŸ³ûª„ìJùUI_…Bœ~îx ”?c”ð§;Õþ ÇDÎÎñŸ8‰Å¢Î'àR°6ËãOAމ빶{“Úš%ohÈ?¥éÁòZ¥‹n£…;ФÚËQkÆs*8¥Å#ש•[A¯N[žpãöÇ):î]`q>Ï.þjzátßâF5œâúÄkèð“YÖ~08`µóæôˆ UNñÅÛË.Þ yñqblº I2úÖŒÒçªôR^çš1n}”å³ó¬uø½WHù¢:µüN1ì«Ç”tÃý:l?Û6oaÜnlN\ŠÅ—‹‰r6VÎO–s} t¹NLC­Õ÷ƒ'ÛD¿–,BC¤˜ºˆRåùà½ÿ¿½ÑÄ¢;Qú¥Úý‹Ëg#`Ú‰ì¡ÕÜ5K—–âÌFpAmž¾ãüSÕ$å—^_ž*i›!|K& ÐÄÅ8¾.ûÕì³ãå^ –ô}*ºú•ËÁ;Y%#ÔŠç¾›°ˆ³Ñͬ<·[Jÿ\·(I@‰nx¹‹, åκ÷™`¢ ³À˜ÎȤ48 |j˜¼eLTK§ a)+¤ ÖbŒJÊN”.mÈ9à¸x1\îÈsà&ê%6O»bö §c Ï©é­Üv/ûg”[4ùÖ{€/ål†cuÚ Ç8™mpN7Êx)§–ž#¤'Êkc®‘WFéT&dY˜zw=á c±¥M·0;·VzI’?¸[?gt¹­£š¸¾÷㜉 †É‚AjÁJ¬`û™áˆÐ:¬º…™›Œ,Æé ÖÜ‚ LJî!ë±Q«Ý9†]°álmm¤£§é„¥8ÂËÉ’PË dln¶wÍX%ÞéÒ±”èOLŒP²ºM•¯Æ‰‡‚»Škx\l mPÙdÃnXb²Ò òj´ùR\/ŒtÆV%´â‚^á"j^øz6¤,8Äå *ŠÌ6yøÁ` âñ§kUØB.»xQD0ÓàE効ð,ÙBÓàÙrÅüþñRu‡› ËE…rás æg¸ØŒñÚr3Çûó|ðL¹ð"ž˜?¿Q¹üùMå_ ZôË4Ø©uâ[0´üÇv: .&H³}vV1­ IGÅsô—h;ĉ½‹Á:‹­À³< O •îéÂJfŠ&%!Ì\±ðN‡( ~0Ëa#p©Àl¹”…àÞvààßìU˜-”†³ÌHâÀl¡b‚6ý¬Å¨‘ª2’üÃóVüÔhŸ¤mвR€ÆþÖ×ÃIÿÅw®©gœ!úÅÝ;ë^u×èй«hntÖ¥=ŽÔ,¥k(æ5{å|ÚDÑ NÄ÷YîÐó›„wB‘CuœþµùºN}a$у.Ø/÷($'Ú¦k毘‡È™?Š&/WG:ýáÅ( ˜cgôÞvϦÉot[½ãÐQ=ǽ‹Þ¸wÎ#”‹4-WÒUõU‘ôýËþf¾÷º7$·?ÊïcG6÷”à¿ÛÒÕö£¡¿øzƒnóltyJn®ŽôOÁ“׸a¿”ÂÕÕÕ’ äÑ, G:!7#6ïmäþ™ F¦Ž %ÁO^èëz™©Õ]T¶N'­óó1gÊ (ã O¡Åiáp€WÁ§'Èžõ„è¨Å…I…U Ѝ*©¿éRá‹éK¥~¼›öб¢Ý·QÑîÛ´¢Œdº#ÍåÌW¨&_©ÿºVT^ ¶s6ºN× ¼íí¹ÇßHN$¬\ª¥$nwƒÞÅT²œ¼÷Ú"\éyɸɗ6_zÝêŸÑÅŤ—BÁëï½ã¡*Ðb4ϧ'Þ0?`~b€,+Nà@ÝéO¦ ý8ÄE?|³¦£›×¬Ë3)’ñÙ“I'1žÀ«RIcÖ/á]ØõebŽŠS²—4 nSÛLŒvS›{|îàXF¼‚vüNxYt8Êxô³– ¼È|0alA­ž’Z˜—F›RÏÐÕ£SfzŸ¢ÝAºY¬µƒÙµ7~”ʧ¯cmŸö^v_÷Å*ô1²§§ÓL†ÄEWB^wyBÂÏîõåAï²K>ô‘O?5¬µÈ9“ZgJéj¼ýN¡àºè;€HÜå‹$F€I«ú4<»¼bPÎ5€‰»0 ĽzHÁA ]½c@º†¢Éø•¾â¿n0Ëç›ÛÈðûFçî„£wÔŽƒjÇPhGŸöEÃÈètJî“ôadeØá&„\é[A"™ë})°XƒP=yM‘µLž:$pXGë¾É.ÃÐUÝÉʪT˜jª>fb¬tI)Šk>êÞ²Òò×2òî¬:"r-TE6eÑäŽ.;—F#$õÐP;¤æÕ§º´­aýþÄÖ;s؃y›NL ÝÕÉž‡@øîMdZ5bט¢f¼Ê”w‡)½eêeg¢¨å*Â>°[BD±ië e«½qü$‹ûC 20JÈ&)<ÞÞi/G]ŒXµáØQþŒÈož£¿ÚÁÆÏÌûjŽÇ«gÓFþýr=ô«ñûÕêÍý/òóiovhbñVnnvÜÜ츹Ùqs³ãæfÇ?ûf‡ZŽýt³#zG2EÃ~Ë>´¬õ´õ£ OW íIÜCQW_>ÒÉŸ&òMKYJÄõÿ¼Ðé<Ù=ÞìtŠªŽgqí]bÏët”¨Éë·×éx…ÂõP±jºWmJVJoç§íÝ0dÓ)mk oM_Åo&:•ï¾’ö~õ®Àš6©©tdKÆ ý¡3ÑŸÔkþÞ9:8ÞÝlµmÓÒ&Úñ"ÈvL&¹= Üm™ ›ÓžLºëíöE·OG£Ó‘dìº]ò²~DÔíìîq zÃvÀÛÛÙÎKîûq`ÂFkk_;u O1ûÁ@õ™”öA8œÚ , ¡½¹·³£p•„`O%“_p€Xö2‹@8ížG¾Å+’°Æ›ô^]SEg Bûp³% Ü>8³E*Å«Ôo€pyÚUb)Q>çíî$k: „ íÞ¡Àг p t0„÷óô1Ù·ôÀ©¤9_¢xÌeÓÆvµ‹A ª9õAm„O°{×,=\ö.GãwsAàÐïá;Å ïq*EÍ  §ï¼Js°$`ää¼­ÔLΦǖ²‰#)ŸÝ¼Íë¢é!+´¼%í¶vb˜zÓ'/òúPÏ×i8s ¨Nþ´™Äwwü‚å¦ÛóõEAQ¬T ¼_ƒmBqòóþˆø¸µlŸëL—HŸ¦ñ²1‡7Ž6ŠyM(Bs1JV±tKã_"â,ò­a$PÎßça•Íòºð@ç£øа÷È+/ÉØ¿Ç=îd± ï4´M†¦ûžûæyù$ÊÊJIhÍ{€v’ä„Ma EpûvJ| »¦œ³Cwb*)Ho_õ^%%J@áÛsbЖ^4ÄÈÑGB?«-„òÍLŠŠô}vË mG¿-z§½³.¿ wÛîä¬ß·ÉzV5½ÓÐ(›È7…ÊÎJ¢Ú½Q†Q왤o4wæmWw-ß5øÐ±Häük·µ|?sØ” ÷QæŸYñ?ª¡ú³ÿTÊÕûÏ—øùÔö"–¯ÌüÓ¸1ÿܘnÌ?7æŸóÏ'2ÿhcƒÎ={|Ωq?þ“ÅQ/Y$f,ÒYØä؃´€ l`YÉàüi彆[æûn½X5ªwÇ­H× áªt®÷R@¾Ii ïŽÄÅa¸J–]ï|¤Tæ_µœš<ò¬hâžk9}:½¼š`4?Õäš.¡ã².s 5OÞ»g è¤-ôy%Â{þWô§¡DõˆÏ‹ÉášÒ•¯Qá¼—ÞÊéN{ö U8oÌ^¥{Á¾ZPkNpPªØR£q‡¶¯‚89kõÎX²XE Þ(¸²Æ,O IáÙö!§ò~øAsÖûÚÝëïïSbKµto?ɇ˜¢Ÿ;ð¢¸êóõ -I@Ô_º¸ù=„/N¬yýıú(¸‚#u²êÐqº*yïž90¶À××ÙìÓ?Y5f¦XâýŒNnf¬ähäZúéõ´ä]ŽÞ ñüœœ<.ãÞ‹³ÑåUìn—¦ÎÜû‘õK'DÄ,%9ÁNÞHÕÉMÖùÖ$F=´—TSƒ:Lìœæ¼;2ÜŸÔz =ë6ÓoÔŠN"K—ê´×:ÜÞdˆ̺.î$vÉln›±GAb¨5nDÄÌÎÞnA—/9ï£üôÅ\ð»íŸvŸ):I7c x©-ì¶Ÿ´HPëf§Í0Ö’•?Nï^¬–&)Êb£ˆ¡aÊé2c1f-Ö7ÓôÌ’‰ÕÜSƒl0dL6‰\äŽNïMmÝ¥DÞxS0¹oî1 “ Í´ätB§¶•¤Ç´"¶‡#Þ&È’ H߬ƒéÁ³(ë­YŽ©¶Ýq ‡ã^g8¹>5丩MöÉ 4‰¬J¼ {g9«q2—ŒÐK”Eðÿ©Þ]ñÏOf-×¾]±nìž”ZùÙW&±…´%ëN·zȧý½£=1ÉûÓ…&…fÁiϧ½e4Ü1 ¡l”…$ñØJ„uWçå* ¢Š&³Ÿç¸4·1)Ù&t‡©´A^J9ͼ½ä{Ýf§‰¾a¾óÔŸe9¿Im²E_q.6^î>ÙïS¹¸§Bxv!ÄÙ6Îç1LȆ1Hº#8뙎õjwØÆ¤×Ÿ½,¤3È×ð’¯8ɯüƒÞ 5»Äg.K†TŠ–*Æz»×‹^¶xµ>ã9Óix5¢¾1cf?»Kã ¥ô{«L^aRJ±ÃKëã3§¦FH2Ž'$:‡AØ?8ñ‘úé‰4!BˆîžæJº_v&#;…úMod–µ¬dZ@je§L¿™ž\Æ8i è-ç ¼ºÔwÙ‘1€Lõ‘Ybä_§y³ÃsÍÒ~¸îùÞwjy?À˜ .3˜‚È]qîŽ2÷´·6‘‹ Aî’ë}ˆgáò´Ưt3 NÞô©£S’1Lá@xž…±Za¹u¸¹½-™)Éœž-÷³v@4Iæ³@µ7;ÿÚφ%ßçvø¯íÃlPôuN@ÇGÙ€èëü€üZg£ ŒK,pg&Ààߨ åJ±Fy½0¡õ‡ýi¿;P<£P.)¾´–üQƯ™ª|®èO7/•:t¨‡QÇÆÆ:í'®²äiIĆØ‘„ª–²?u˜'S”©eº: Å¨2Úv¸¼´c@<ŽŒcûÂòŵj!­[é-©jôßrÉŒºDKyÙd´ˆ gþ"yûÞ{ýΛ1ÇÒ/ywÕ»·öWðÊâÈ#‘•#r½˜°ÌêúÄÈm7´lÇ.{oÔâ„æ¹È°^X¦+E ܪ.¼ Ç?.èüIí¤ÑŽÚrz]µ™ˆ8É|â¹PSÇÌ=ä!Ò«Ô%Q½–0IüŽ3^®› äW„&“~1F“ΘR´3[òî¼ÉB‰ 2ºÐ·ï“;‰³b¥ã{Ë_ícû5ÿÌòÿýïsÞÿj~-yÿ¿~sÿÿ‹ü|RÿoC,_[jÇÚøøøøøgLíèž]ÀQFëPµkQ:úG,Dw Søœ‹ôƒ¤¾X¤T}ÆB¥"¹‹ÕYŠ©Õêü´w°•Òôèlì+%2ƒC=9Ò¥ÚOÔ"lïÆÅ™E†¬±¤çyï*úÈîRDVv›¾Yúÿà¥?¼> #½ü‰h‡8h?iS¬~ *÷ÓÆ7¤ñ'u_wÍ®PHPFªB£H óä ÝÞúŨù2JŠ cJdØÛ¶‹ÚÏÆ^À <¼º{’Bm•v¡u›v©#MŸä€3œwGÛÏòzh˜øÜ ÅfÀöý°iëŒÆµùtk„€«6žíÌl„€«6hg[°ïùÄO¹ÈJ»UC-¦ÅcKܶq7©( ^ÆÚøäÄûwú™åÿ?w_dø÷YùÿªÕr"þ{àßøÿ‘ŸOêÿ/ÄòµyÿWn¼ÿo¼ÿo¼ÿo¼ÿo¼ÿ?£÷?hD±¸XÎÅÞ³î•%St‡ö‹ÞxÒ#Ž|9Râ)Ò•º“¡©¯…å³î`@IÖ:rOV_~uþ³×_³ xƒÞëÞ y%X‡{‰Ÿè¸Sé].–‹(C—£PLŠ™ß)^Í»¢™C eFæNŠÜúxûàðÈ“BºRblÔüÊ#6¶—ÏŒì´þú ¡>Ì=¨l-,¶y ÇÙëÒ„|óï¼¹àbt×Zÿ°cKï¤tlå‘’¦£ñ»Ž$ŸMFq:*TK¾MGN&°‘PþÞ÷Ëgé„b’>Fœ¡ÿUüZ×ÿêAåFÿû?ŸTÿ³Äòµ©€7)ÀnTÀðF¼Q¿HxÈû•’X‹ž–SDP½{H,tó<ÑÁÑ乜°>%¾Øˆ€Jyûíù*ÿÿ¶+ù‘üv|pü¬Õ! ›¯¶þµw0³ÐöîìBGíöî/E8©wgC´ .sÕFî îÜŽ¶X3tïvôkvü˱óW‹<7?ð“+ÿO~ëO>öðç?fÆ*׫ñøOåª_»‘ÿ¿Äϧ“ÿ…X¾2Éß¿ ýt#ùßHþ7’ÿäÿ9œ„¬d nÏvzCŽVl³²ú¥…þSãó×ø¿ª±Hq©ñÕŽ|Á‹|βº vAwV냴~(=kg£M'D”i•ìó Z3«ª\Zèÿ_m¯sÞªñOÇß¿†¦+^U&O;¯¥íÃgrÎ] çEÏ+àVEïN¼G”!Y ©–µ2åû‰ãópyzFä;”;Þ‰]~åø™cG–¯NØ„!Ñ'×ÝAÿ¼CàH8¾ˆA‹EFï µ…I§Œ¿òò;È¢µLïÊoå(íÆÕ½{Q& È£¡‹vý¨¨~MI`Þv9ŒyR)­ëqkçPÇñè:¥% á>¥†f+ü#õpq†mÕ/fµ•>’Þüƒ¾8O)ú׌@‰—F€£ƒãvœxH ¤Švˆ ³îØÌj=µÅ ¥ qJN*wBðcÉnüµŒÞ&súH[„ƒ õË`ñ<×ôxŠH¼3R^‰ œ]e¾µÃøÁ|O.ê†l¬UŸ<¢Á-¹ 8ù:Jj¡³'?]¹ÒsJ8¸>¡ë"͇n¢<_ .O‡d+)¨ã†.2Ǭë"–>8æg”&•8—ѸXb÷ðƒ†³Ð€Ì8ssA€ œµ!)ˆ\ˆ*ò5ú'­ý§ýµF R%¢ “ž%¶ÙI*¨GœÎŠöFïì›Nư¥øžaHãFfliл˜vºç¿]O¦rÏêe¯{în&t¢0Mô$±`ý®-ÙbWí„öC†`wƒ(!U eåøŒ‹§ËÑ·bß#·oñòÊŠT¾Å ël(f‰½÷ôbŸsÇ“ŠSÑQ/’#º’E‹6^€«VVHаàë|a.ÅRb¿7½óθÇ>ÎX›•\îšœÞD'ا8®ÏŠŠ¢˜\IeéLfŽï. ÍƒÎÓþ¸û¢;ì‚]Œæ· yQâßd †¥Ùö–øûî´û;®àr¹[+Éï óæÔ—7ççºñ°RæÆÃzϼiè7ÍZ)êidF–½ýñèJ±Õw;ýÉÔöT’GOîàä^éú6½UÄ0ï[ $¸8OÕ9­LOv Í)߸½:ƒ¥Ç„|NÆBÍý«ç¡v60âÙCsÿªÈ‰ðôZ2I _•¨Y´hR/z ’ú›†÷×ò]yuE”Õ»>ëüvÕŒF¿__uœÁ°/¡3HŸÉ"g+)q !'²M§¬ áùôHlËpùg­Ÿ;‡G[ÂßY›awø ýÁÙ!æß#n}Øö`Y_RÌ‘q¯¬G¢–3pÎM¢”VÒzÁÁ¥M| ¦x?å%'ÂNÛšjÿÆñ-Gav,5·ý¡Lï¸;|Ñ+XÞêçî”DŒS”Ý‘hè6=×BàL;|ÙW2Žú~›ò¿ß—{"nFxõí²ûÖ‘¨¹˜Ÿ,Ö&‹iWKºÃÞ›AØë¨‰·ÐÖ%{"®ÛØSÞja%€ßœõûîÕÕàI y…˜¨ÍgnzÒ9}Gö6*›¾)чƒÒ‹´ÕQbÉ)E~ÔR¥úFAeJ„FÊ\)¸‹^M Ÿå¹|L±Ò›âÿ1Óÿ‡÷¦Ï™ÿͪa-‘ÿ­zãÿÿE~î“3ÂáöʦxŠhÏŒsµV½ŠÔ/<í•é…«åÕŠÇî6Þæèò²;<_¡Õú@—[¹šz+GÞÊŽ·²Ë.A©"Ž·²¢ïÕõtå‚t 3ø[àFMªâä#3šˆÈoå÷»~)¼«¥/¼o …»Þ]²¤…A‘2$î~#¡~¼-ýøŸòX-z¿j&̯¿•×u]êŽ<6ôã¯w幩Ÿ üX)Ç€嵯K-Ë£é×=y4ý*Éc%cE^Wu©Uy¬éÇûòhºY–ÇF †/¯Mo~¬–õc(¦—y b0ªòÚô¶&‹uy4½lÈc-£)¯MoÈ£Aêš<š^>äÇZ§ëòÚôö‘<œ~'¦—-yŒO6HÜ”GÓ­-y4ÝjËc3ã1¿®$>‘GÓ­§òhºµ-a Æ¿äµAâ÷òh¸#¦—Ï䱃±+¯Mo÷äÑ qŸ¦—?È£ƒq ¯MoåÑ ñHM/å1ŽÓåµéíOòhpú³<š^þ"qœþ7¿nšÞ>—GƒS ˜GϦ›'òGêÿÈkÓÝŽ<¤våÑôëTã æL^,žó£_6ëégÓ³ ý_3/ô{ƒÉ—úÙô­¯ŸMç~ÓÏñuó»~oz=ÐÏ—úÙôw(Ï~|íŒô{Óï+ýl0úJ?›þŽõsœ'Mô{Óï©~6“­ŸM_ëç8šßè÷¦ßoå90x~§ŸMÿW?Çñü‡~oúý§~6x~¯ŸMÿO?×”à­ö•£—=Vù»gÓÞØ›ô¦Jv"ïCïT çJ8ô¶÷Vj•Ú*ïDÿÙGcï¶ìMJnì»´+q°¥‰w>ÞzoFãß'¡‚Ö{Û;—Q§¡UoУØNãÞÕh<õºÞéõ 2??T¿W^ ¯W¸‘ÿR­ŽÆ/­ÞŽl¶´ñ*…õvl³¼½ä\¸ ±n\8.[JÔ•ûúú|ûhBŽ~ßþ…TçCϯÙ/϶wEŸÞiï>9zêU¢/J#Â/ §ÎÓÖáS9?‰UÕê’èýËëKï÷Þ;Qú<Ú|JÞùõÕ€\dYß)›ý®w(¼çf§³ÔQB/aA_ÖµŸÏ®×úoÉ~gœé_Z}u"нìN^²§²R¨ÔÔ€ûÍ2‰ýžýâèíd¡ÁûNn¯;™ŒH¿&=Ö[g‚5‹j­4Ïÿö¥É…à KŠ·•¼ /–¥–Êi°ýjôÖ”ËÐFyÞ~¤”ÒºÜßôQzÕ¨Uç·ÛÿÅìÜ”þ'•'vÍûžÃÆ ‡+*Öø<89™]¨|r‚!3S8¸RÝd—87_¶6;Û»œ|¨C®2±ïãÙ|V€ºSñÕï©Â…B§£¶L ¼ÓQÛ|| H?ð–—²õÕÞ2[UÂÂù@Ÿ‘8ÛÄ·o¿/%ÿÕ›¦ìþ¦âO æm1Áù­â9UZƒ«—]Sç})ÙÓn-ˆ9Û¹M¬ÒbªWrû0¼¾”>øa^ê9@Ìõ¡–Þ‡j^èôA÷¡UÉCÝÏ[ýý)×ñSQç´îça`s8ô,äaÀÏ›ýAwø»¤bÀoæTß¿žMuõFöp\€<€tU¬Ï 0HnMÅã+õ¬ç¨H¢ýº'"6³K9ÙÔE©1*¡AµEÁ±gÔ‚ÓŠÃU[–¡ªú'«Ä½ms¦IbܤªòªoÔÓÙå÷OÂHMø”§µì¾xÇùÛD‡„‡é¯¶îÎþ™ÓþÏÔó¡m̈ÿS®Ôãñ_ƒJxÿõ‹ü|ûÇÜ&ƒoùø7CŒaï^ƒ²â¼ÈQ`};¾ýv‰e -b,ñ.¥7©%Þ÷ô¶·Ä¬Is¦%f|šï-1[Õ\u‰·½«,ñ¦¥÷¬%fçš›/ñf¡÷Š¥Ÿ-lß_")ÉIK,{hÑc‰…-,Y‡ÅP—ŒtAÂÅß`uÏþÉ_ÿÓOpûæýÿj½ìÇïÿûõòÍúÿ?líOÈêÙõ®®OJW9]ÒMq±nÔÛñÕhÒ“Mœ žZ`¿w_(åeL×édßÛïÑfülDiZþË;ÞÜXe»Ýýe­Ý"îpkrv6音?Øíÿ*ügÑ#󪫾×hÞ÷ƒûJ:ÞT¦¯¹½æÞ7"È8¯ýÓø;ÃĬÊùÓön@‘K:h?ãjÖ 6'vÍí‰Ür%fFð4œL%Æ~§§¸×»Øãšå•±b"Ã8º"!V$ Uö\q˜ËMñWãÞ™"Oû.{o§kîu§#ÊXÔ:Þ9b–­öî!]ë­¦ ¼Fr©s¸ýßmbŽÜÊýe‘o–½4PŠdø¦¼$`ßmztÇ/zJ"{ÓóØŸAîâ ŠØHt£xí©¢–хןö.'âx§½ ¢…øq¯;!?‚hK0ªèDÿï`|(Œ:°¸¿glÏ׃wn3÷ÑŠ€(¹±0 _(¹Vý«[÷3ÍlÁýQ}ìðæÉn"º¸öÉñ4ô’ù›¾•Lê5È/"Âk¥à’#yA¿T î—[hfÿt5Û?i¸dþŽú§Q„#E³Ü”!WnÈR £»ÀzÿZ.¾•¥Y°v¤¢v›7>[uSŠ KU•,ßžéªÃb©0QemáöÇ­w ô¶ôNÕ(¼-®¯Ô_þ©´þ²òˆšXyt6º¼êŽ{E*SREŠ|G  3¤·”¸fÑõè+–¥­¢IÅ=Vüf%,SEŸ€6ÂF£Vn˜^×êõzÀ£–¾„Õj¥Âƒyôu¿¬ÊÛÚ~X |U£õªQ «•ª¥ê~£^n2Z|é[=TRƒ±Ó e\pt–5ì½éÐä³ ¢(°¼äÕÓÚ’s9Ç^ 2·nÖÃ5¯ÿ0ôí…›[|‹Ëø°Oî± Ð^úQ/ñê~½âGÁs¥!Õi¢3½’ùâ­J\[ºÅw~ ŽW¬Ð–õžÔ¤F~“\þÞ½Ýró)‚;o¾Äz¯ôOpŠ«t‡ùƒÒ2 Þ G—Fçš‹ÆxëÖ-k^Ž®ŠÃuûJ6ê½=ëqz(9$ÖÂv½'È…ÏFƒAŸ=«è¶~¡½Gq[yÜ”ÿ=îñöNÛ[¾P…/”J6,ܾ?½¼º¯ÊÜ.y·ßܶ·0.„™Qð„ïBš»(Q4?ݫ޷ç¿o—¢~2(Sål $ÂÂEѽ'#L~™þâAˆˆB'áB”â‘fÚ^³l<Ú“”í"ÓÓÁZ»Æ¼c¨ƒwߊ0ªô–Úàßö§ƒL{ ÈŒƒ›Òt—ÓMûxtMŸ®è¤™%3Wªªú¦jÊ^dz Ãü§Â8«²a¨Úø-±}ôúr ûBÝ bLÙ/úm!.).õÞIå£Ð‚N©å¢Ûa ‚¡«Å<îõè£õ“Gÿcí>n_ò„½Ï¤ÙÞgÑ„ãåOcåbFs aÒb´„ÒAî T6 t ›óÎè¹Ó ^&Í*$-4 -ŸÍ÷éFaB…æ` Þ.³Îk#¾¶éWÔ˜¶òÆÉøŠlÉZíÁ]Mo3x‰T‹wf©DûÛYÍgúÄ[Â-son:¶áÿù²5¦Ê«÷ 7|Ë®õ²¨Ÿª.™…Í‚‰ZÓ 'z-x2ÚþÑ¥Øí ôêñ°ya¼îJ¤%’;TÛçÞ²“w‘…uºùlг´û€Ó –ØüN¿ÀÊ#Q‹IÎjÅî½m ím ÷îœx™H¹Ö_oïnuÚ»G¿d Ga¥s5R"ýùÈûC¼¼ô+}†@Å’ÒðšÄÛ¯<¡ºú‰.Bül^¼© ·ìhCY„,ÒáDŒèG½~ÿ«!C|Í4óëÒ{s…“Ô’îÔ"ÓiÓ(+ |ôž±Šâk(Ûº°Ì`̺KØ'œ J¯M½MM5¾½FÀÌM&_ˆ“ó›2Þë*£4§où°ÈÓKYÓàÛ˜T ßÀ€uØÚÚêHìº$ÖÓºùëRD½q̈i(¢E`Mz¿_ˆ±+’½Óm9BXZÃÖ5®‘i Çû6Á -©Ñ/ùWz`d>”Ô|&jeÍù(ÇDnÎkÁ»ú"Dç|ÓlÙrl§}âKœr“ˆ½wo-}E)(½ñ4kE%ˆü–Ößve-Júkù‹–œúÔ¥gD…îùy缯jdNOê¬|ºÉ˜Õs­6.¹8Nß»J ³àgÐèÜB”úµLÊNÔO¨JÝ‚%#6$V¾;îSqªQ‰¥Q½ÂVî™û•¦?I-&Rbà<ÊLÓÑe¬V,$˜&Eb?µ ‰n߯pkDË!ÍXž›ê'k¦•øüjlÎuËî¤C-èYRÝ 8¿<Û©¢¿ýÔø ¤»ÄS(YŸ¼ùB§-p\‘–Ф™½ e ük¡áˆœ–²ôsEÙJæŒÛÀç¡ðdGcZû-ž^û5Y§Ñ}’æc (Š£„^ €çÙ "_Ú2á‰Ë™ª±±XràWÑ(oÉ0ùײiz9Z®’'¬¯4í¥ úî23q·"Š~o…‘óÞ 7í}2adùÃýô56½¼úñ„:–g’7K—Jâ2½éËY$ÍìPY“~ðiméVjbÓ˜+WVÖrzä*Ë" ›f×ô’Ô¶ƒ¸dãpýox]ÆèËb%]!åÆdÌE»ðÔd¦lD¸½@}(‘ƒåT,¨¶ ¼øüA0í?—WfáG±ëP9¹p:“îEÊê!1å5ÅLûä‹È}˭̱²þv È’á ,Ú¦r‚s2H%é2"³)+¹préÍ]u–®ˆUBôŒÍOnpÖ÷ æVCqI".8šˆ¿¨p=¼ž¨Ý½XŠ«'&@`Œ²ŠÚÒæ4‘AåNËnÕ0ŠË£1gçL™í;í£¶`äCªmïêH›F[;ôºÃë+g º=ÊSÕœµ£Ý'àÐ#IšºÉ¢<÷ºg/M›ˆÓƒ„$Av@F %TR„r®ÒÌÁP¯ Ë’÷´Ÿª—j]áuÐfwÙÞò§…uâòëÃÝ^/qª’ª¸D+Ü®JÝúºX´|a%™Ì©\eò¦?=ã•S¶:kHU…içi{óût”vö²wö;Ñë;ý‰Î¢Xæù5ùp‘sиkNUuÌL³uÑ@˜ç¤ŒZdD¯ âc%DÓ?ë¼ Y6&@¹ 3 Xõ–‘o½×-C{•mФÄX¦¹ý+w…%• Îf’ªwAõ¦/Ç£ë/íP-¾ôZ{ ÊêI‰5a8V¯L_ÀáÑÞþƒ}1qØ”’…NXÑÀ`XZµ²7¬¤HüuzAÃ2F.N’‚…)š2²¤.=)¢u‚U—'ñ ŒÉ±]ª@ÂpÂö±çöÎcúít7}ñtx¡WªÖ X¢µùĆcÜR‚ª÷ð¡WñŠÞ=j”§À{A¦%ûX{Í{Em<ðþg]}~ôÈ *kâκ÷/R¼3^²sF_w¿}°“¤¬õòü=¦ TØüI› À§3X~ù?ú¥êb­ˆ‹ÕõÇXß7ê­W‹Ú©Ñëäã‡Ã¦Éåf³.øOJQûIãÆß=qÄ9ðmÉ{'ôÆ®Rô;H}Kx§Xã<8„ÊÃXÍá'¸b2Ëÿûå'ð1žqÿƒœ¶âþßAùÆÿû‹ü|ÿoãçýÒõóÖQ†ÄPÉq—’µ·fxéºr{Ö—ûMx>z3!gnãŸ}¼³·û¤³t‰_†C˜"–OóÂrŠÉ]ap’nµ:|·½K=Éð·8žß‘Ë "ZÓ" Žâ&Z\Ó>}.tës;ËaÊµËÆéµG ]Ö&[ðÐ¥ã±Iç²GNZf—ƒøA4Ƀ ì,é|-&Àþ²LÉÈ%¥Hô(YáðýZD5׺3‚2•lGÿÚyÒÅZ»¿´ža$ü§²9Ë•bÞêêªz-n ‰¯ô/Œ/E¾ãô¢:TH"{S§Ö‰e2k—؉8„ñ6¢ºìù“[Êm+¨qþÉšt âU®m020Su[÷!Q‘ÇykÃ’³ÜLé•„’ç©ätZ+ˆñz²–‹MLÅX›ìïmÎÛ[S3òŸrkbTÅ3á'&šg’0‘î?Û|¶‹'žGY,’o¼[‚ÄK·ÈJPtxŠÈF·,ÀØ7Z ·"XKz!’†{m õîù÷ÿÉ•ÿ®‡}Š ¹R_-ßÿˆ6Hî«V³ïÿ’¼‹ÿþxÕO6ÊœŸsùožùÿØK ùò%¬Öâ÷¿}¿^¿‘ÿ¿ÄϧËÿl‰å&ôM è›Ð7) oR@ÿ;¥€6"¤¦¡Þ8å7ô;‡¢~Ö ú]éºx³èïÏ aªI<4zÁB¿Ë=Ó‡2¼Yô÷g†0“ìº(ë•2ó·^ÝÎûÅ ¤ýþz hþPÖ*—ø­ûà~ õ\¤@lÌÁýN@6ïý8?£qˆ~B¨WÒýþ‹!D˜üà>Ø•e0÷A¿ÿb€‡èÃÒûÈM@ ^VÒé×”tâ“V™£X³d˜]=»mƒšç¤ë!ý·R<Åhâ eª'æ+ÊGwÉvŸyJSNkqæ­(‚›—ž£kmé½w¬Tä-qƒ3aá~çH jRj÷úÒÆ=Ȳ”òá@ÒƒåŽéâÙèëimé»(žÎçL3øôu”Ž?¶¸‡¸9’+‘ãLp£“#g lÙ³Aòúæ¡ùCçÂÔ^'žn+Jú™ŽL –™‹”dFVÊ3¶·§¾ïþÒqªîmüKij‡ÝZÑeË£Û :¨“ZPÒ¥mÿw;³59uÓª²|BFjÃIjß6¨o3¤A~Ö~¦4.†44Af¥&G Â)Ý8!9Ý•>ãð£”ÌÞ^zËŽIæfÌBÁDš!¿õ¿;w<ù{þîÜÚœ<ç’g¦Í!¦=¦ÿtÉ0™M"GÎí]HRÂáŸâ0‰«þìá£Eu2תšÃ¬õ¯jê,– sʃ֮Òó™1ͨfSâfäA·é Pw<6.âÇM[œ”oTç†9õù@WÎÙ$' Ÿ­ªŠ=}Y'}d2µŽ[Œ7Qª:Þ>.mçŒmJ’ŸyQl”"‹K‚Ï€Ò?ý‘X¦ó˜ Ñç{CÌ6ËbŒ@ŠàUÑž÷ÞÒ2‘üñ¢Ñú–‚3& –qFÍì݉[9YÊ„¬šr6{D)Ýì›3:As®[%ñ¤dÄ9ä“HÞi‰¤´XbÎ/33Qx»ðçÄV„š§#j7ò¹Víô¯u óQ‰S³8Žû3ÇôaöÓryÍ%·\2ÑÔbÎ,&µh"g©â¹œA,ÂìéIžÇò~Vúgöø=½¾xž.¿Èõ™+-"¬YAˆQes«?ä.y‚¸°ÊM²T½x„W%. ²U0BÆâ"… ä ó¸â>¢TAWºwïÄÈ]^ÑàÏ€C¾[°Ç²îøg}×ä;Ó×;±Î»¹"Í7ù" ÊÛ"¨¤Ò¥Š”WUJYB'™)KÜ"_÷˜˜ ’Ô;%

 ¸5ÐÀÏù™3DéÁàÜ’­Ý<ÙÆá¼|ïâvl?YÎ>˰±LMݻNjNTJÈLÂàÜÛ&’Ý2Ÿ5‹ñèRüY§#G[T¬5î󘮺)Ö/»_Ž4²šâ¿•<5'ÄÖœ>\}Yq´æ™.»gT­»ÔÓ7qaÔýþxWhA©ö3·ó›àæ7 `¡~áܺ É:H@TОÿvb)n, ‹NïÝ‘Z%Ê#¥-àÂLÞZ„©{gH¿ËÐ~WCûMýÊ#[i*HÝï@Éɾ隉îå1)ÈÆU>$çv?ÀnûgòÞjÿ¬ç÷òĵ¿Y5Y/{HlAYŸœ¬ƒYdmæHþ ¾Iw’ >Ž$ï‹$à ’ ?9I†‹‘døåH2ü»“d8Iæè B¢ÝÁ ¦‰$tÖ_o„.@²2W„…„àQ.YV¿wð¬µÓiïnÉPJÌà&ƒ¾Œ* ½e.쌊ü®&TŒÙÎtfOeQUNBd ~ˆ‰N–S:Yû˜NÖR;Y^ "Q¯–ùá !•*2IBH'’¬¦¢T¡bØtWõ&I:ÏŽwŽ¶Ù’PLžW–³h?°´|e´oŽ óg)(dv^øB³”Ò·Ðâ6ü ÜÎÏ<Ù¶oše£ù¤súŽŒ‡‹XsðüEi®RÞYC¡m{Ú»”ÔJö°†ü J‰F^ÐjeÚ±!÷ûyx’0¦§Ú„†ÖLûѦ¿Æ˜ãX\må“ÕÓwÓžX{¹šFö îAQŒÉo^±8eTíÃ3aú e%È3@d_¦Û,R¨"I— ²˜×ˆ‘Ei¬ÒPû×´?¼Žeþ«hÄEÇ…l ùä4C¿ã±SMÓÅð„štMIˆUÀé¬vÂÀ#)Ÿ9Ô ­G¥TzäPRÔ­Ët–Ÿ÷yçÖ¿çŸ$ùAêŒGëM£[@¨Ú—ä9ˆE± x}ÄëùÙÓ…a‘Ï&¼˜ÃHETAÿ$fÑHœM„édäÑ„ÈÝKàÊ-é›’þ ›`| Ù"îâlN48>).š¬iôc %üü\"ü§s‰ðùDxÃ% ºÿF\"nΤ¢ÁI¦©1>KI§Ú0·P.[Y„±Ä˦lpâX[5Â]6äNOSÒ(vÄò•8y÷ÎE"ëOèf¹÷²×=ç ©C¹®‹@%ËÀ¢h{¦)°\ñ€ÀÉ1måD¾ŸYËeî…2{‰Ì¤€+mÖg/1˜§÷€¦¥Oc3jW¼è˜œ]‡\ç;líH#ò³X4˜F^ns›+¸ôlÏÕòÈõ.O»“.1ËWÅŽªPS#£Éò–c Eé‡ÁO’^;šÉ zÍû¿Z ¤Uþu¡ÈŒ=Fb zxÎG2‹™ü`6Ù¸2ZZ} ž\òI# t $”'#d†"~.Q-~$˜&]ä˜,ü„![?éÏ<ñŸ¢ÍìÃ"A͈ÿT ñŸBõxÿéKü˜ø¯äÏþ¦;!EèuoL¡ˆNßy/®z㋎áZú¶zõÎð÷ñèRJPÖì«ë)á°¯÷)¾Íáöʦ0Lì'é©&8T¸Z^ uÍÑåewx¾2è{¼û;$êþVïuo@NË÷uõýh4Lî_OÆ÷OûÃûseè©W޼•3oeê­üæ{+;¦+K+êy7) %߬ ¼¨[jlši4‘ÐC¼•ßïú+á]ކÂÎÁŒC©¦£.Y„J]ÐËîï½NÒ-øêã8üP‚SSL['ÖŠbÊεޣ½#%L}ßþå§½ƒ­CÏ÷›5ûíÙön‡^wvÚ»OŽžzaô¥õsÖU‡ƒƒÿØÚ9n{5§ |ðÃr…F}Ù}Û¿¼¾ää|„8jÐl–¼óë«E¸’„Õ&Ö¯Df•LKNHSm/;'·Úïõþ2…Õ$?gT;Öà-·%›<Ô²'ayQbº“ɨÃÉ0Tqo v™z‰þ­Ò¿Íÿ®ð¿>ýë×Ô¿ zïûµ€ÿVïýr£j/í4(Œ6Ê\«A×kT¾LÂ0à¿ék4©.¡Rý„„:µØ¬Pë:•lú܇Fk\‹zúuþ›JVëM¸8po¹oU®ëS™f•úß,óWò7ðêu‚S£^ya%êCÍçQÐq¿ú›{6x\õ¤QåQð×*",G}h‡„T¨Lƒpåµ^©Tùï2×¢º ŠŸáU„Õ jû ÆEýdŒ þ·ÎcüT¸‡*ÕmL™ûY®Ø>TÏ ®Y¡º5ÆaƒáTCþ›ÛåQ~ƒþ.×,„€qU ©ç>C7~ƒúæS]ϯ2=ÔëÑ\×"ô7T-†ÃjZô}¦¢°ÂsÍc yF“>×j2ýø<ÒEäPuéïfÈ£¨U¸]þ[Ê”£Ù”9ò+n—ûÌÔ[­qÏÿA)àxÓa£Lؘ¶«53kT·Ê=ip[LW φüj1ÏÔËc©Ðlª÷4ö°LtU¦¹6¼úåXš¤ÞÊW…±¨¤ÕRkú„B-eýÞö{6ŸÍ²¡ ¯ÎëÝoTϼFWA™ ùu ê€!pOÊ~ÝÌ©EÙRBg¤AkD•:‰(ªÎ3X«2–ÊL“Lùu¦mg°Îó[«œ:Ó^Õ/GsÁsTa~RçvžÁ:÷¼ð<2]ÕN1ÙlF³Yçõ[çÙ¬rÉfCZa U0—¨óz xÔšÀa¸õÏ£’ K†BªÂ£¸?Õ@8¡ð½&ÿõãî(úç•+_¹ç>ãÄgþéñ¼4)¦ ˜Þ‡ˆOÖysÿ3*™ù š²‚˜ë<.†\­0½•#Šª2Æ*LÏU¦a_úÏø‘¤"û¯ÙC#Ú°£¨ÈŽÃ}f<{Âí}þ›9³pKáꪇ¢u¬Eni6£$[¸Š|Á͸¨(­©;Í­äÅ{á‰wïÃ*ûÅ®Z.žØLIKÚ¼›:}}£$y ™ØÆWÔ$¦üg”Úø›yhR—ìê¤ufêõ||¨FД"ƒ¥¢÷~ÔHCM¾-S«Bù>@G)̵ÍÔ–‚N‘d`‚~)Cy‹µêу¨/D¿Qí:t¸ZCœ"Xµ4íC½º_ȪX …ÐL½ÓÕÄ8C"Tb•F_ªMø’+ÀT8“]CT:“DK>Â8L~PáKàC;ef 0بF*Ðeµ·Gøk8TŒýÂÖ8° s =ʰ&‰Fk*+@»a¥Ík¨­ #¬Cw+å*vé Ä^ù¸ Â:"¨ ZñÛ ù/jæ—e?hðXƒÖ@8 jFqõrô Öc¾T€T+°ˆyC²ÍGTaګ娲3Ó5U£€Ô¨¢ŽTË0Ü@!-VÊH¥0¡Ã¤‚2vGXÔ5`ÍW€¯„¤ÆÙDŠ)) Úo`“UdŸÑ6jÐNùj¦Ë n_°  fg‰6`â‡PX ¬ÙÆÔAT€dJ¤äD`qÍ„Àí+Ðw$ú¡@6³ä¡$Xx¨À ªõè!là>‰ÀC¨M ü9ôñï¨óÐì ͦ³ÿ!ç€å–kP¿Äˆa éhF­ Ü–[SȺ”í%¬W%#²qaâ\Ua3mÀ" ‘'„â+5§“@h!lå!¹þÛU"mÏo6šˆã; [NàÃèaÇS:nŸ°âÂjˆù‚ïÃú HƒŠ† äLMܳœ½¼\Fq[€ +E©o0-! #U`,Í:Î$vŸÄ÷ˆ- DᧆLÉGÞÙ¬ WBv…ˆ•2l¸‚Õ@pVah‚ ª‚;+r¯²3d!r”ðp­à–[cÕ‘³8ì« ä×à¡’ŸßD×A9„I©6ù€/\jU”ØŒhiàbƒe‹R~ˆíÁ¨¢˜íÈìÀfB¿l<ÄeÒN€¢yXE½¤‰ò,î”>r :È85Ü4C˜S¿ èRƒ÷±•¨3uØ·Bì$J5¤¡223X¦ ¬¶‰;(Ìu V@­éãÐßȣ˸‡Öù `’Xjñ#E8Âqp+0þƒº8 `(¼ø5˜Æ®ÙF¥V”Êš8@µ ØŒ0ˆ[ÀKP,+°Ã4q WêѲ(ÕEXM™-(ŠáÁØ9ªMGTÃÍå‚j•f”qmÀ¢ ë(| 'j4p Q¬A>\öq{ÁáWPåa”nou@¥;²â—0dä ·›¨Lȉk(„£Ê€g€Úž8|‡Þ(†£HÝA6,7P‘ÄÖ¨!GƒíR@ãŠÃÐ` j0‚bÓq— q5°g( 4Pù­#GÉòC`|A ×µêN3t( XIˆÖàC±‰z ¬äŠCó(G5f鈚¨ˆàöÛp6Æ:ʺU”ãPò,¸±7Q£j€|"Z}B°h(X RVq•#]Õûà®À^Ütp2`IøUèà•&ÚõBƒ:ÔGKGà7p];RM͈q];¢&J—~wä…ˆã*ˆ‘!ZúPBR2JÊ¨Ž Ù QÅBÝ­ZC¥ ùgÕšÃÑBê2kM\…8wM¢²ØPB«‘+Ý"³ÑÎV… kÂZ¯Uƒ´þ¢ràJst[4$„AiðÛ@­ªA{A€Ò ÿÍ) ^M©ì£œ¨ÄDè†Ê7î+(쇤ިx%­ŸM”XaÕQBTñÐŽ¬ÄqdaÈ3+Ñ%ÎòK4¶âþ¥„Þjm‡edÞh„š@„Ž• –iµÂG*>‚´ ÔÜË8#!*øÈëuÏãbÅQиˆ:®*É+0hPƒð‘›Ñ‘mêH±h@)WQƒ¨|%eżP"u¬lx|²‹c˜Gû”Z8h3GÀUà9¸ U&áhnHú#”Áèqë œT:ü2„Îjõ!2Ðbj-ª>ØpÌhÀt¶8lÑÑc5ý¨i .ZŠD»‚AWìÏ>ji#¬×À°„2`ÅAQe+ÇPC ÓG[àHá¨gá2 p‡M+0¾Cáh«iÜ¥$ç”­üŽ`ßpÎqBp=…ët^´M¢! î hÜ *Àlš€w¿î0‘½£€ˆóŒšTˆ&¡ûÛDµ¹îl^(#ù¨£¨\F‘>HßÍ«h=­;Ç8\1¨ß)M•dXeç ×j…*˜´  | }÷C”ÒËÈ8Ñ&Öp+rÛ@ko%}ïrˆ Y˜sŒ$‹úoOzü¥ôÔÅ¢6b¤2˜ÕÒ ZœÓ<ì@“•GÛJbMmÝsLë+h6œ6€9J:ht ñtÒG+yµð&}ƒ E´ÌøhgõQ´ ÀRœ#6´æ:„äPã7äNªhbsdo‡„N/ñ ü³nþ(9!¸óhOq„»:*1è“PA©Ï!ÛŠŸ¶à*‘» Â÷ÅÎ9³Á„GçœW¤ $À³|UÔ0ÌŠkþD†ë(ÀÀjxæˆjdÕ¡kÑ!ÊKŽº•&M†Uôh‚Oaƒ¦srSOãÕ>–6j•g¥òÑ\PÓñ!&Ñ€ùBBÃÔH˜a-ßÎŽ´|ÓÑèQŸñ›(ä ßP½™Fƒª2‚E…÷1ß9àÂãý:ô—¥dU?­eÙ<´R £Ù ÍáUÐêУ Js(±ãeËq >Qm×1;¢Å^ÁBR@RBª;{²¿‚óŒ3Zê û(Ò@¢D:A»©xìŽ"ÌÙ%pÞÅŒÁ&ž$WÐúà¡rí@U<‹©¡ä‰U¿‰L¹+ú%…©àÞ¢ƒ˜Â¦)S­H@k¡[ÊÌx`ˆ§³at‘»úŽÛ[³œ.9Ó††p”ÐÔúA¡ÕñC»¾ã'×@ShÐü44 1¢ÉGÃiÝ91C\9Î!Žˆ"£w³ÊΞ*d—Qýr6ç ¥mµèC…ɰì4ÁìØÊš'½Pi °%£sTÍÑœs"\(žâaš}gGEÕ.Mö!:^¢†sxÐ(£¦†§ñ «Ž:‰#•…©Öª°ìl+¨8—AYöÑì;Öld¶¡ã1„ö˜:à†ì;n_ÍÔåÇ~É×M45ÑýËGÓ@àÝ¡œ'|ŽÎ…¾ÃSʸS[Üþœc<çpËQÈ:å ÅÙºcpBë¹ï87¢&Å,?0ßñ+Ãש–et…O=ßÑi‘;V3vÂÐù‚€³7Ç—·T6Ž%:à~VÑý|P× ÐË }/ÃJª~T‘¾‰&`«;’’Ë#Z@·† ÄCw#XõØ ÇºÛúx©älðö­àDŽºà'—¡‹8ÜMñ0Ñ“(šZƒÓÎAlñÄ…ûÀÙ’`Ÿ¬bçÑ«Ñoâ’Bw4!ã$„ŽZ‡ Æ1`•Qs„ÝBi8xòT‡Êôw@«ŒÌÛi‹åÌÏgÑË,Aè¬â–qV„ÔÄ穉"!Óúh„ Š©:žã@deçdë£áãÙ”ïxËáD×ÑøàB|ôtΜuÜÊ›xjYÅ­m}´ZùÎ 4^]Àí,¬âÖSC/”°ý¦#ü8J,ž|àuß9w®¤ ±AÕ<*A_Ž2úŠ6Ñ>^aõ»&ºtWÓ’÷F5Ý@€Æ`tÜÀ΢!ÅÙÌšè¦Å6 D ^‘« )9rBg÷D&íx¨áD£Ââµ÷*Ô>T—ñ(Ïà}”PÔFŽƒrÏÎñ”Íû*_¨•)£gåѺ#2ãñ5lÏH(> /J¡‚LJ ¾¹c¯àÔa¢Xˆ’Tˆ.κ7Ñ™xˆ®Ûzõ6ñˆªîøñ(ï9~xÔ‚·Š'[G”s6=¼Œâ\Ýqn µÊñ£vîµ8gÞx ‹‚¶c AŸÈÍëJ7FŠJÎ¥jÙKKþŽOŸãèSFý«‘jirý\PrP™ ðèÆw”Ú²c!AuÅT}ÇBSu> $$¼¹„x¬¹ª#buZ¼ƒ…ØFãN5•Ï…(Yx…Édz ßq}BE9pD2¼Yç7g±fºYÕÏ$ κ#¢ý ôÇñ”+£6‡½È¶ÑЄmý…Ü낚¸O ëT€r‡ãIÀBVè,ÐDÛZ+Ñ  :ƒNײhÄH€³¦ê<Øž3¡³fm.ÎQšã ÝÄM̹¿…6Jþ!ú(’5S]‹B”ûCô ÐHʦ،¡øÎ¦äö ¼V:5zf£F‘~¨ŒçA!𒼡å˜öjårÖÒa3zưœÍ$ÕI*@Ëyˆ[Iˆæ«=_ØO,9 ¾s$’G8MÅ‘Ð$–zvVsì2Î\˜è3ïˆxíŒ^¢GÆ\×Áeââvêר~-§~T*>ci¥”Êg—óuÆ;R­œ*ý6+5þó½M}[†˜ˆ3’ï¬{ñÆÄ\3_U-úúp=¼'JÛ›@V³WçUý7®ÉBÕÁUþ³Ë+sŸSTÈõ}ÊH1ñ½{‚ÀPÌU‹`EPÓßW|IiþWÇÌú'ýÌÿ-ø\ñßÊ5?ôñß‚à&þÛ—øù·Žÿ$â¿sÇ Kµ¯-þ[µ™ý­–ý­–ý­œý­ÚÈŠýVý;F~ã`Ïyß(˜…—¢à=J5ð(ü…¹ªR`(zW.G99"<úwÚQ@·¬±ÿb¥)|,¢ð@JGõ(HK¢°FQ¤y`þÇõ$1²`‘Ò‹Á^¬4_¢ÐH²+ ëDÁ¤8„’Ân“PU2[^‹BEEf-ž]zã»#ôühŽ£³LUÜ6òpâûŸb”]é@4€ÑÁ˜R`žùwjÔ°´ç'¾DÏÕ4Ø^-ÙW„ÿ5cðcJýàãÂ|U?ÜðŒá'4€ž Pƒ‚ŒvpÀ€ãþ4­﨡çK!RïÿYºbéŠá®øwþ™[ÿ1õÓëAÝWŠ_Bÿ«ßè_ä'¡ÿͧ¬¬:ÚJšfB©=9³çíƒÃí½]µQwʲZí.OøŠ+'V¦z¦øæò}fŸoÉM@y¢¬&ªÄNëh{Wµµ¿­ô ïÿ³÷îý‘äØu ÿžOA[»iwj&â1¶¼›Ef‘ÙÅb²ÉdUWIÚùÅs¦¥™®q?,k½ÞϾ‘‰ƒÀ¹dä,ydÙkóŸHD¯ƒî àv³ßo.Ödz[ñ3ŠoE|{:þë?§ø™ˆŸŽ™âW߉øîtü«)¾±ß‹øþtüMŠï)~.âç§ã¿IñKŠ_ˆøÅéø×S|k(~)â—§ãߤøŽâ×"~}:þW)~AñïBü&ü²Æ*Ho'¤ŒKÒŠœ´§ãߦø\’NÄïNÇ—âsIz¿?ÿnŠï¸' "þp:þ.ŧžt<›iŠ0ŸŠŸâSO*DOöJOþ:ŧžTˆžì•žü0Å÷Ô“Žg$ML8žXuøe ¥&—Dôi¯ôé}ŠÏ%}Ú+}úiŠŸsIDŸöJŸ~Ÿâ“&¢O{¥OHñI ѧ½Ò§¿™âÔ“g¶Qüêtü)>õ¤Bh‚Wzò§ŸzR/˜Ü*L^_|Øîo.®Ö–Ô©zAêVžŽPë˧=AQÿê¿[…߀ºÜ>\>ýò— Œ(Ú‹a«U†-€í··W”/bk/ØÞ*lÔÕv½y |UDÝÞs'lý$ÇÍ"ìÃöîú‚a¹¸¢G´JX§BV\HÑ%Z¥K\¢ò7WÛÛ”³âBŠþÑ*ýc3Ã/³¢®Ú‹®Ò*]e3Ã/³¢^Û‹^Ó*½f3Ë/c¨ ÷SZo3K c¨?÷bdm•‘u;W_†»¶d[eÝÎÕ—å®-ÆÛVo·óõe¹s‹Á·U†œí|}Ybû ô«Sôk³¿ID÷AÈV§ÈÖÝŒ<˜ŒÈ>ÙêÙÚÍ5^Fd„huŠhíæ/#²B´:E´vóçˆìƒ¯;e¼ÞÍÕ–#ªB¨:E¨vó¡é¡yškFO\„ÐtŠÐ<Í5#Ï´!3"3OóÍÈÓ®AÈL§ÈÌÓ|ÝólBÓ)Bóq®<„ÐtŠÐìovw ƒùÎúr81a);ÏËFó³p.ñ¶Zž½[_>ìRÆh®vød’±–g5¯6Ä+𶙕PË‘Ýõîn3½Ìš·ìd,¥^Î5ÍÛ̪PJÕ_Îs”æmfÕ0¥ïìj·¿X3XE`Ss¶æf¤y›Y ~­Ž^ÍB%º#Øev]ͪVU–`—Qص™cª]ë —Qèµ™aª]é`—Qص™mE»"ÚÁ/³<›”´·†ho½Ìs@nFkˆöFË(亞¥½5D{#èez]ÏÕ½!Ò[A/«Ðëz¾î-ÑÞ ~Y…_±òµÀZ"¾³ ÁnækÌó­ ˜U(v3׋,­l+f†mgæ7–¹Žïq¥l;Û!iÁËXÁ0»üZ IAk_Æ ~Ùå¹ü³>Dë`álè +›åÄöz½zØ\l¿JD÷L0!S˜ðÕ<h]Ìd‚ ™Â„·ó¥E2“ÕL™ÞÎŒ‹ÖݳV@)s·Ûù"ºg½S¦[·s•ÛÝJ@)¯b€z·½ºâ|åÄwÇo?F3OÜÎvÜøîœÀR^îæê¾ ¾»\@)o,wóu_á])À”µ‘»¹º/ˆøNȃ¶š¿¹»NÄv'DA[…ßÍ LIdwB´õÝœÀ”Dv/Fmq<¾×íž^s…—Dv/f~¥;*Ì.å§"’{¡0Úõ×*¢¸ú¢­6?Ìs©"Ž{1ÔhKÇ3\ÊVÄq/¸¤­?Î1[ý •WHõ8«ÇÙŠ8ªÇÙúÊVDwaþY“ù"¶ ãaÍ%()¡Yß0–B¯§™™LF†G“ zåË«Rh22Baú3ùòʃš,#Ö +žÉv=Í.›gñ^˜äL¡°ëiVµ²Œx_~ ¿žææXYF´²Ã—>'±>ÌwHGÄæ.S(ûxŒˆ/lO‡ï‘N‚}šSGÄ/Ä©P&HŸfßT2OÌ/Ä©P&HŸæ:¤'æ—öý‡]‚!V×b°ª•Áj?—!ât#Þ´jåMëée-;²¨šF¼5Š$}|™'GUÓˆ7£Fy3ú4'nŽ,ª¦½¤ÑVæ>ñæà·™Ü¼ÙSM#*½Ñ*ýÐvo¶izàÈ”j1=4׎w©®É„jÖóÉDoö~üRêêjnPq<3k+ZL¿”Z»ý*AQ ÄUO¿¾#(bh+FMÍ\¼ž+ ÙAM'È~†…÷°cfÝÍBE;Ñq4“êÓYAM'zŽf7Ÿ9²ƒšNhU§ðô1¶s²3l—ÏÁÈj:1¨Ÿar|F’܉n]*³õIR¿&C¨éD¿Öl„óN8Ž ¡F8-™~Ù¾÷lâéÈj„§‘é5Ù`Œ˜ß‹Á°WÃëYu&“¨.=¦WæA×sÔgƒ¨ðÂ1ýòtè_8Θ^y­Üͽ%96ˆ gÓ/¯…±¨êÙ"*g4«³Â)ÀjNó+džæuV¸XÍ-àéDΨ·«¹Ä•áÝ»w4ˆ{šÛYá`5¿€ý 0êÂ3Àjžw×7 ‚x/ü¬æp33àzšÏYa·š ÷”ˆéÂlo5³ý§—ïžž&qVØì­f³ŸŸwyšÄYa´·šÑ>ºrÈå|O“8+ÌöV3ÛÏ»%zšÄYa··šÝžÝ%Œh.,÷V³ÜïæëŒæq6:“c¥{F4~vÞ@¬IH§™œ¶r«ÙÊ/çæ½ž&r6£³m±lzü°~¼¡BÒDβ±|SÞj?#þ c¹ÕŒå×·»ý!ø¸ßÝ'(b¿]Iû¬m3[aäÛvر”žôÕ<q_¸­fà~|·¾½½øúˆHõEÞmVغ­fë~˜ËXNÞmVغ­fëþ8EÌ÷‚¹BŠýÓÃÝøN»N0Dz¶™0ÚâËíýM ‡¶ÃÆþÌO¥GǬH(¢º´º— ;_¿Ôùœ¼Ù¬‹.¥æä}¿¹KŸÛåäÇf½Xn)•Eõ›‡íåú.}@š“ ›•æûRaäÕL±hÝÍJÛ}©}6wyó!U2¹­Yi´¯4>TMâù«YOjYµ¢–Ӫʈ–:YNk6ëv•²Bv=S?ä¯fÙV?fKó"¸|ØÞïÓ³9ùªYi§¯´Þõ8 KÄe6Ï×E©t-t‹›CDæ‡Ç)ܹ™©rR³â3`S)ë}ÛYù!5+ü•Ò½¶»}ªòM³lÜ¥G»ç}ÀròM³¹¤ã&®ÍíôahN®iV÷+Í ší]‚!JRX­7Ólä’f i•TŠn›7{ZæÈÉ)ÍJ£~¥~€<[éä”f‹N”qÙÁi¿ÞÞ&$"y)­TL§8">¤ˆÄiiÛ®µoóSÿ"4[ÌœFrÐÞ‰6ä|f¥E»Ö> ÁbÔfì]T±ä|v8g—' ê/Ùjsò>³¥X×Êõtÿ¸½M“âœÏl)ÆŠFé¤ïghL^gVê­æ‰zž¾›.ÈãÌJ}£ˆØa‰tB ÖVhp¥HÑñ÷a÷ø˜Zª G3Ëñlyîó6Á$g (Ãêúa³yûBä7IN r-Ë„ëOןYˆõÃåÍz{yñ¸~w¿MXž° •ŸÆº1n>ÞnSª"ò-Ë ¦P6t3`Óáöén½?¸\™03ᯓaiU‚ï‹{Å‹$¹—e¬_#Ø å,¡2XâwV‹œ•J…éoD#³LØÿ³²< ¶A畯0y˜eu/À*lóµãb’‡YV¬> vøÆ`DûFÐ7JE ò,Ëx2sdÕô«S:ÑkîD4ÙÊщ0…ó¾Âq¡œÀp§1®Æ9HÂð\(/ å'Žúe&Lx\®\äI!ç'®ÏÅš€ÙãIE„œ u"³ ¡œZ*uA¥²öBùh‚”]@&\7UÖÑjüe†&èÄåîÝëíÝÁRøx¿»Þ\?Œ-¹¹KBXp–kÑõ”Q…\o×÷÷)£·‚Pª9q»~wEÜ ìx±jRaÃDõÝv­¢—x@KI™pqɪ9-ŽsɧÀEZRÍé/¾I5Zrþ…~Tsš' Ç²¤rÐrQvØ/$µËÁw TÒ†ª”!2üe‡ýB*qQQ£‡›i½ ¤ÉIÖfkâd«ŒÆÇ*¡ÑðÔ !©µ¾±~JÔ3Z/ñx6, —*¥Ê§ÊVðîo¶ ‹Ë$T¤VTä’¸L¥@P†Æ±H‚åòT¢

FóoE6ˆÂ¹(ƒsÑ<ÆÍî0ˆ‡Â«(ƒWÑ<Æõúîz›„gŸ(ƒ?Ñ©JÝ#Èu<~DYß+ WT#ä3ž‰-e²aö¥Þ°žw/òÏùfªôö»}B –ŠMV²A5id&¦Lø eƒ¢Òë4 ’ã’Ëx‰ÊÁ?âòãÃöööe­¦f!‡%'LŸÎâõ&aä„a†U1ÞFE™ÀÈTŒë› ¤"¿$—9âT+Âð„á†W1¶„QF.0rㆼœø~Û™B! G¥À(õÂ$ˆ‚ *Q©#Õöd™¬µªU ·ë„ÁlmF£bln³µ­Žñ.a0[;ÑéSç­2&k/0zc— ˜«ƒ€TˆûDòrâ³wgu ÙL뺹 9'DÄê"²yLDUáà¬."Éɱ"÷ 焈X]D¦×“ŠÜ‚œøØÞY]B6o±Ô ±º„¤%¤ŠVGœøRßY]Bö©>h}Ä oˆÃáõÈ%é-‘8ñ™¿³º†¦f¢ç…¦¬tMÙÆÍ.Ó»TE«3Nl¡àVº¸l“PÒÚŒóB\Vº¸\}•j—|xœpq«…) ƒƒ…ˆ[éúòôöa½½Û®Ó·Y‘óŽ»9¸•.4WÓa! ‡·Ò•æõÇÍíîá‰lO#‘Xx•¸•®8·­í8/g¥ ÎW©Pä´ã„OŠ[ézsË Lc¡6+]mî„é+tf¥ëÌþñ&¡X&°Ð™•®3o)+– ,f¥+Ì´¥*µ´e" ­YéZæ…OPÆ$‚³ÒçêU¹ë8±!†ËuÉᕳ†ø+œl\® ÅÇõ~!O'6Áp¹ÞÇ·»ýöÍ–>ð±ˆÈb —ë½óv»ßßnFeLXÄgá ãò…·˜/j2)9±†ËõÎñz{-rEv%'6Áp¹Ní¹\‘ž2.×Yùö1 9î8aùv…Î¥{!Ÿ'l߮Йôf»O|$—'|c\±@¥O7Ûý#±…ùÜ:"ЪeòØqb£vWèDzz›0ˆØÂï ?»§»«C·å ³…ÕÜ:‡¦õ[#f‚CÅ‹Y’òàq¥ P©Sˆ—BG¢³puq¥^Iñå›[\}Šfqs·.-ŽHÄþZp¬Ö9v¿¼¦l‘µÎÕ‚cµÎ±õë·7ëGñ²bÈZçjÁ±ZçØæñe…‘µÎ g$WëÛϰŸ¬uNø¹za*»ßÉ®oh6kÈnç„ûktŠMX”12à9áúãc73Ý’ z®k–86VZZV»$Q_¸Ý¸FçØåŒŽ‘µÏ‰ÍR\£slŒØ/¼Y\³4^Þ¤®M@'ó*Ææò&—ÅÑëóœù”2BFS/ÌÂ>+ôŒ¤|­Ô‹½|Vêû„A´&esNaì§—“Œ,¥^åî³Z¯b~ÎdÝ;%ÙNŸÖ LÖV€´*ÈíöCbkÁl][›ŸBù†§`¶ö¤WA.I f«Pœht ã-õ=²†zq¼»w+ä&µ0YC½0¨{§+ÉW©0d õbË ït!¹¾Y_%â«°Ê{§+ɨ²©qÈøéÅAïÞéRòŽ*–Œž^˜ö½Óµ$¹JedëôâÄwït)¹ÛÅcÛ#§®ÞéZ’”š>Üîq²úPjúp›ÚÂ'¡¥¦·©-,q²úPjúð.µ…eN }(5}x—ÚÂ2'…>”š>¼Km‘1'…>”š>¼Km‘1'…>”š>¼Km‘1'…>”š>Ü¥štÌI¡¥ª A¤l…@Tš@Ü­o±² Qi q—ÚÓ+[¡•¦i¶7aÏ•„ )Ä]jOO¬l…BTšBÜ¥öôÄÊV(D¥)Ä]ê[9±² Qi ñõSjÏœhÙ ‰¨4‰øú)µFN¼l…FTšF|ý”š£ b¶B$*M$¾~JíQ01…JTšJ|ý”¤`b ™¨4™øú)µHÉÌ:Qi:‘> }»Ø2eDÐtâ101…LTšL$ïAÚ¢Ûd­‰J“‰ôimÌm²N¨D­©ÄcjΊxÙ ‘¨5‘xL­Y-;!µ&ScÒÎÛ#‚‰Z‰´MûmB$jM$ö„@œì„HÔšH$ 6m´m²NˆD­‰Äžˆ’ЈZÓˆ«mB NvB"jM"ö„@œì„BÔšB\MŒ¢í´MÖ ¨5¸zJÌI¡µ¦W‰Q–9)ä¡Öäá*ÍLi m#vý!4}Ø3³R(D­)Ä>ÍniÇl#v!4‰Ø§é-í–mŽÛ%ˆFÓˆ}šßÒfÙFìC4Bh"±O\Ú(Û7 "M%öi†K;d±£Ñ¡É}ûEc›ãF¡êDmÚÛˆ=‘FM(öIµi;ls܉ T¥H²Mû`±­Ò¡IÅ>é6ímŽû(„ª$Ü9±³bÑhb‘|>iÇks܈‰4±H´Íµ;šX|HÍQ05…X4šX|H­Q03…V4šV|HQ21…T4šT|HmQ2/…R4šR|LmQ- “ !>¦¶¨ˆ•ìuhâ¶T'R[TDJÞØÊÄ N ¤¶¨ˆ“ì¬hŽ;KF˜Ú‚6±6Ç}N AãÃÇ÷ 8É>Ž&nª|â”';6Õ…vXùöîñévý0•`hëêGn¯œÝp?sª€¡=¬MϾ~chù¬;y¢Ÿ¡M¬Çè™[>ö\4dhë1º`ÊŽìFÞì´‰õ½`Êá »ÝŽ¯Ï æ¬`ÊÉ9—sgPÚÄzŒÞ°åƒJž×Y²Ñ;¦œ¤p5_gÉ„4F˜²¿þÕ|%K’éà™vÖÝÕ|%ƒÒ]ðL;ë.‚m.ŸÌQ0‚gÚYwtëŽÁ¨Á3í¬»S`ÔŒà™vÖÝf¾˜duêà™vÖÝfîx²Œz€<Óκ›=…m£`Ï´SïÞÌ÷²LõVðÌ*<»ž9žlÄ¢`Í´3ônNdŒ:€4ÓÎÓ»™ïšd»ê­ ™v¤^×Úq{Œ.h¦©w3ߘdÑê­ ™v¤ÞMüÄjóžiFÆ­Þ šiGêmç9Kv®Þ šiGêmçëŒL^}&h¦©‡£‘ùèÚŠèŸ –iê½'™ÁúL°,SXöv^³É"Ög‚e™Â²Û9#þg‚e™Â²S`ÄÿL°,SXv;[Ì’Lf}&X–),»•Ù’¬g}&X–-B$ˆQ’­w‚cNáØ»Yù)É¢Ö;Á2§°ìÝlõÓ–âctÁ2í°œ»9#þ;Á2íLûùœ‘É­w‚eÚ¡†wóÄ ë[ïË´S ïæ‰A†¸Þ –i§Î:‚ÿ`™v¬á 02Ïõ^ðÌ/úlÎR’¥®÷‚g^;wöõ/xæžÝÏu&²Þõ^°Ì+,»Ÿ§,Ùñz/Xæ–=œ#þ{Á2¯°ìažÿdÜë½`™_>;óñß –y…eó‰L~ýÑÝÞF°|ÁR¤Ôú¼öx¾— ¾iGÚ=Θ'|¹à›vºÚ#ñÁ¸À‚q¹Â¸xRõá0g£Ÿ ÆåËÇ^?/&OørÁ¸|ùØëç À¾\0.×ï;‘3êð¹`œv„ß~žq<á+„®©‡¤ÎË7Oø Á³BáÙôá­˜=–<å+ÏŠåãÕŸË7Où Á³bùxõçÅä)_!xV(<;•3ê…àY¡ðìi~,à)_!xV(<{O9‹POø Á2í¨è÷³”­xÂW –• Ë>Ä-'×ï)_ÄþRp¬T8öaf¸«xºW †• Ã>ÌÒµâé^)¦ìûaV/*žî•‚a¥Â°ó•ÏÓ½R0L;å÷›ùœñt¯ +†}3_g<Ý+ÇÊ僧_䌸_ ŽiÇšíâO÷*Á²JaÙ§ùàé^%x¦ÚûiV°+žîÕ¢˜õòZôóœñ„¯Ŭ•bÆOëÇh2õ€Z³VйžožðÕ¢;ÕJw:ƾZt§ZéN§À¨Ô¢;iŸ£P‹î¤ } Œz@-º“vÖë´sXV¢-ßMßži'ˆž£Ðžig›ž£Ðž5Ë<{F~a}#xÖ,óìõ€Fð¬Y^‹~Þ7ÉW¬oÏšåµèç}“¼ÆúFð¬Y^‹–rëÁ²FaÙü‚;íoúV°¬UXv Œøß –µ ËN€‘ƒYß –µË`ÄÿV°¬]¶x¼#þ·‚e­Â²í1,m?F,k–mç(kiù1º`Y»¼|óŒøß žµËË7Ï‹I.j}'xÖ-/ßȰ´±ü]ð¬[^¾yF= <랣Рžu ÏN€‘;[ß žu ÏNQèÏ:…gSk>Üqk’“[ß žuË<{Fîn}'xÖóg`ÔzÁ³~™g/À¨ô‚gý2Ïžƒ‘3\ß žõ˯ÓÏû&¹Åõ½àY¿ü:ý¼o’ƒ\ß žõ˯Ó/ŠI= <ë—_§Ÿƒ‘Ó\ß žõ ÏNQèÏz…g§À¨£~PxvŒ\êzá8Ô Ï>¾|;·´WýY°lPXöqžeädׂeƒÂ²ó,#»~,–}|9²´mýYplP8ön{uu»yõasûxÃù"ö‚cƒÂ±S`ÄþAplX~¡¾Ýíî'$rËVì7¬”ãl騸{Êyè ÂjX)'½Øƒ•f˜rd≜‘ßÞ œ±œÌò%9#¾aå˜r°í©œæ˜r$ö|Îh û1z.À”SrçsF[ØÑ ¦œ›y*g‰þƒ<3 Ï6sç÷ZÚÂ~Œ.xfž#§¿Áž…g§À¨g¬Á(<;F=Àž…g'ÀÈéož]ƒQxv Œz€­iµÖŒgN  F=@x) VkÍéëõ#‘Óß`EkZ­5çsFNƒðy¬Öš'rF=ÀŠÖ´ZkžÈõá@5X­5çsFNƒªaÕ8‘3rú„7Ö`Õ8•3ê™àY¦ð,n~Ï`äô77¥!SxF'¥¯Œz@&x–uìºÌõáõ4d ÏN䌌ÀC&x–)<;‘32Â…jÈžÊõ€Lð,Sxv*gÔ„?Ö)<;‘32NðÌ)<›=ªÞÒŽöctÁ3§ðìõ'xæž##ð üž§ðìõ'x枣 œ¨§ðìáÃ3x¥žæ‡:2‡gðJ£ |x¯óõáÅ3x¥̃Ñ÷fÈEÈÕ€#µÄÌ‘ö¹£‹ÈÕ0]1õ€\ô€\í³9#Sð gÔ„»Í«=`6gd r¡´¹¢´'rF¦àAøî ¹Â³S9£Pž5ç½Õ½g0ê©ehÎ{«Û™‚‡Bð¬ýâ7Úê~uó~Ú6×ÒõcäBD.f"oŽgêM‘sŠ\ŠÈåLä»mj`Ú‚~Œ[‰¸Õ\+Qž-ÓªQë¹<ߊ[fV#b7³ÌÚÜR;Y&W+b·³müfÿqŠœ1¹:¹;Ñnžî®GMÌ1Ñ1íœáØ æÚ 0†ÙØßìž×w ÃéJÁõr®ŸL'kÌ•)™@­c…·ÓˆÛ‡ËÛ1 ¢ ''#pŠeœ× §"+pÊeœË 'Ù<­8´Íº¸³…†“ê'™;­ã‰ìt £†“¸›,Vœûf]ÜåBÙdv˜·Ž7)²ÓŽÎuÂq„Sœnç&á„S œ~g;á$»¦GÐYw¿Ðp¾J8ÌgÖ§éì@ çmÂa>7Ç,ãÜ&æs+pì2λ §d>w'[ÆI \2Ÿ{ã–qv ‡ù<¿Œ3hiÿyëz¡?íúóuÂ!>÷BÚ3ô'Í#*âs/ô§=Câær–v¢·â\?;Õ©áìñ¹úÓž¡?O ‡øÜ ýiÏП÷ ‡øÜ ýiÏПŽ!>÷BÚ3ô盄C|î…þ´gèÏÇ„C|î…þ´gèϧ 'Ù!mË&Ûb•ëÛõõîv»Ÿ9éSj®daŒ€1 0¯ŸÞ¦b%ããˆcŽ]Ày¿I¾"´Mýˆ“ œlOTFPN@¹¨«Ýë‡]Ê È ¿ôqó¸O•¬#P.€ò O7ã$oŸê)ÙG¨B@K…û´¹M…Kvƨ@åRž6ïn§ÓF,ía?"U©Z@Ú¦ci,me?âÔ§^¹ï®ÓÖ–¶µÁÖ,%&w+@Ú¥Êþjóð>!åLo±ËRôR9‰ôvý6µZÎÜîN¿€sûÕÓÕö«TÝ9³{PÃÔ»ã}‚"~;¡IfI“îÖ7©š b·ªd–Tiw—ú[AÜvB”Ì’(ÝïÞî¾¢ ·%³$KÛ´£Ÿ¥ñG !JfI”owïJ"¶¢d–Diÿþa{EHÄn'TÉ,©ÒÓÛTÙQÛ E2KŠôf¬#"n;¡HfI‘nç«N8Dl'ôÈ,éÑŽ³Ã¤rd–äè~ê´…þˆ"tÈ,éÐãÍ´û¬¥ôG!EfIŠˆ†´›þ#tÈ,éÐåÍÃ6)íª?" %2KJ”ÎB²´µþ#TÈ,©ÐGjtÚ`ß¶^H]’ 'Ë›½P »¤@×{Â!2{!AvI‚ï·W›‡i0£}÷G0¡BvI…>¦*²Dh/$È.JÐqBÎRF¼öB†ì’ Í€¹½P"»¤DӾޖvåQ„Ù%!:Øö²³Òý#˜#»$F¯·×cµ?&(¢¸zdçG/óÅ<ªd—TéÍ–ôÄ3Ï….Ù%]'mÛ´e®¥üG(!MvIšw¿½LPLt!OvIž;Q>íÉ‚C»ú`B¡ìâ\éð¶ÞXN|Ï….äʇÓŽSO¯oŒø.ŽÆ´ÚŽSñpmÞsÓÒžÿ#V.°–w¹¸ÚŽ5@+ˆõ¹`= 'ëØæñrÃ`Äû\PFmû°`Äû\ ûê‡æÏÀJ"¿°µÚþ胉 ‰¸/Ì3-Žžš¯°õí›´ÄIçضÜŠGýìîç^çoߤNHv¼¶EŠGõÌb¼ß^% ²èµ¥ÐôxÔÎ,ÆõúÝ;!n—B…ãY9³ Wë[Î ‘º’»™Ùl§~AGŒ‘„Àųjf!wO ‚\ 5ŠGÍÌB|Z'¥SÆXb~ЙŏY§×+:7À¶•àG¥ñc³Ùß Qµ ©4†l×O©aèø€1š H¥Qäíúž0ˆª•`H¥1ävýt›@ÈLØV‚!•Æé !KgŒqA* w„@,­?*oÓ|œÎ# zT=v €8Z nÔ7î) ÄÐZð¢Öx‘ÖÉèü€1Ž E­‘âq›dƒc RÔ)öëÔ]ÉBØÖ‚µF‰'Ê1³”¨5J¼I•IVÁ¶”¨UJÜñ²”¨5JÜ«ÈØ6‚FŠi™ÛF°¢ÑX1N(n7—ûW÷´åŒ¥ƒÆè‚ FÝíU|Â`Ä×F0¥Ñ˜rùðñ~¿»~+#«`ÛÎ4gR1ß2q¸ôi4ú$0Ò2¶ R£éD)‰× T£ªÌlý“¡°m¹Z\ëw$:d%l[A¯V£×åÃîñàhðx³!,b{+ØÕ~9»È\ض‚]­Æ®`ÄûV°«Õص~{ónûn¼ÿö†Áˆ÷­`W{»ŒN0£ zµ½f‹I‡ŒÑ½Ú/¦k`[áçÑv½n_=Þ¬ïGj¤µ%:Ú`Œ,HÖi$›ÏÙ[á_Ñv_Ì2:Û`Œ.XÖ}1Ëèlƒ1º`Y§±lŒÍ‹Â-¡í4–#þ Ÿ‚¶[bÙÝÓëÃÑÉ Füm·Ä²—`lnÖü¶WGÈy0â¿0Å·ýÏfÀˆÿ½xÑ…KòÁ†Ç^,ô݃±éqÅ´b¾Þݬ·ÏÔŒÎ6°øn~…yëõf÷p=szöú.a”„a†Q1^Y;ñ™ü ÓßS × â$ ™ rµ#‚@œq*Hò¤ F /0¼Šñ~K ä$WA>qNr)H¡‚ì©^ɰحJRª T²)v―Ϋ;…ñ–2R0]kR« ·ëÇÂ|mH£‚¼£œ”Ì×V€´*ÈÝú!0_;Ò© D×’éÚ Œ^Ÿ§ŒTÌ×A€ :Õn…+6GX5º˜<¬7 „+6EX5ºš1VlÁ±juQá&_'¶ÞXµº¦Üì('ÄX±KƪÕÅàcj_2éuâ@ U«v½!‰¯uÎKc/¶··óNtÓÑŠ#NI8™À±*Žðê+“oŒèŒSa¦o8Ò½L¼1z!ÀrìøIÝ„RJ%PJ½dº &ÙìÆˆ€©U˜w»»Ã«Ì=½}”Él7FïX«‚½~Ø­¯ŸY2XN`ƒëU°»ÍÓþðýÌG«˜|ò:ŸŽÞ0òKÁ2ôÆè‚T^'ÕØ€Û7[É†Š˜îµü—S«"º{A-¿H­³‰`ÕŠ8ïÁ¼N°ËÛÝ![·´ýNµ"Î{A3¯ÓìõíæîjDûÈ`D}/hæušÍÔe¨xA3¯Ó,I^eˆ÷¹`W®³k¦ +C¼Ï»r]»7ût.úDœÏ³rYG Í4©,ñ=¬ÊuV w ˆ¸ž Jå:¥bsy8a•êÉ×sA©|RÛ—`‘=”ÊuJ}P6cŒÈ^ :”:®Ò¤ Êˆä¥ A¹4rŠ#v—‚¥ÎO7ŒBü.J——7„BÄ.Eë— #Ö§O„B¬.E³—z³ï7/¾“¯<1»Í^ê;§ÚñÄêR(H©+Èþ‘QˆÎ• M¥“fÿø˜Prâq%XSé¬ÙsKåDàJ°¦ÒYäɉÀ• Mµ ŒR+Ašj4¡cĩtâDëA%&<éCÚNïׇåßÛÝõö’¬¸U²"ŽÑ½ÓvzŸKVÄ1z!À´CG7w× Â„8[;jtÿ)”Ðí誇ÍãXý©’“ÉpŒØ egÚ˧õþAâ8ÂŽâÉ—p>ð<&Y ë"-¯ºŽ³ªl•,„cÑÚÚáŸë]È@´°vàçäÏ1y3ѾÚ!Ÿë÷ €›‰öUÝ,ßO»?§ ÍV†›‰VÖö\LD×L4¯æ¨9M¼./>pnˆºâµ³ÐŽó|;ãAš­,ñW¼zÚižoçØÞ=Þ–/R]TÄ`ÞÐg 5Ë8o‘·%ÒyÄÖYG8j㊈,Þº íG€M£šY‰Å{w¡ðËöpˆ¿âÍ»ÐNwŒ8 ‡¨+Þ½ í`Lj3ÑÏâo)Ú¬TÚìq}»§ÙôC,¯©…vÌáÝÜ##1Z¼­Ú1‡—ìõ:U¶%b‹wÍ¢Òf4³£±ÄnñÊYTŠX¼™›K /E¥¨ÆûÝíúþéíÅš€ˆÝ•PJ;Z@»”¿+Ñç*môÐÁkÁí$Èkl£øúvû5ÕyF,¯´“ ß΃9¢z-ºžväÝ 0"|-¨¥ùpŒ_ ji'A>΃y"}#Š©Døz3‘F¢z# §?¶Ãœ0Å9)…[Å|'ž\óG„‰ÛƒØ™|ðqð›§ÛÛÛ«Ãä\ÛÍ,3Éö8ˆmɇ 3 H¯’'¤L eç ]&¤’œ@rç MîIVÈAìF> ø8x)õÝd‚‘r”Ÿƒô&!„T¤â¤ë )Y"‡÷)âá H7 )#¤J Uç %f&ä0ðfC<¶cé«„ÄoRsÒÛ ©bŽ·©=)Mu*æx'ºsÞ%$æx/ús¦)ª]1Ç4œƒ´KHÄqÞº`8Ù±ŒtŸˆã^èSv–>}=!â¸ú”¥O ‰8î…>egéÓcB"Ž{¡OÙYú´OHÄq/ô);KŸ¦5Jk‰ã^èSv–>½OHÄq/ô);KŸ>$$â¸ú”¥OßLHqÜ }ÊÎÒ§ ‰9.ô);KŸ>%¤#ÇWÿqeV΢t!„ýÏÆ¹ûæa|}®&‡¥·I0m°7¦0ff“`2‚©Œ]„Y'˜œ`“-ÃÜ$œŠpZãq’"k#`:ã—aÇN/pr çñf÷°§Æ &Gà §XÆI­ŒŽ!fÜ;8å2Nj®`vŽ8Õ8©½r"sÜ=@õ2Pªè‚Ø­=ÀiÎÀ! âsÜ;@­”ì¶ .Gà : b—¬ ÇýòÑk’0—Dáh}Ä A|Ü$º”DßLHQ¥&µoIÄÍ„ÊUeî)“VHŒQ%æ5c0a…¾U_öŒÁ\ÚbTm¹JÙŠy*„ŨÂryà ÌQ¡*FU•¯ƒI*ŨŠò6=[KP£ªÉ5a¢©JbT%Ù¼IÄR'4ĨòžªÃOУêÇf?q=³ÄS'¤Ã¨Ò±ç¶µDT'Äèâ±yLÄS'Äèâñ‰²‘OP£ªÇæ1ÕGF4uB=¬ªŸ¸>2â©bUÙ<$¦©Ð«êÇäW—eŽY*äêò1yÔÌR¡VUÉÕz„`’ ñ°ªx$Ÿ‘,óLR¡VÕŽÝ6A0E…tXU:6D¢èñ£ù "nøsø4ôæéîzý0ç~>áä+Â1ÇœC@Yd—6¯PN@™ÊÎÈÑ;BªÉ $wF–¦e­¬°ä?èŽÕçÌš§[WÑ{¡Oõ9ú´O@Dô^èS}Ž>ݱ¼úTŸ£Oû¤%Q¼UŸ#P—ið-™âB¡ê3ê)á0Ã…>ÕgèÓ1Á…@ÕgÔ3]©˜äB¤ê3Dê™®TLr!Rõ9S§÷ ˆI.ª>gæ4qܯˆãƒÐ§æ}úô˜ˆäƒ¨æºÛ¿JåWÄóAhTs†F=¥\™‰æ¦äVSB?¬Öãköåv¿}Á„ëô¢éMF@F™% BÉ Å »„òa›`*‚ÉL¶3í«žyk Æ ·“ e=Áxãav ¦$˜\ÀäK0iêí3C0…€)–`’ˆøÌL)`Ê%˜MB)¥(ÕJªÇ$®J½È½´†äs¸8ÍNrGòŽIÜ ˜v æ-•ŠIÜ ˜n±†Ó¼Ö{fq/púåÎðUÂagX$Îe‚!wBqšEÅÙÜMŸ;!8Í¢àì®®¹’Ó,JÎ~Ÿ¨œ•;¡9Í¢æÜ= bs'T§YTäãï "s'T§YTõ>Á™;¡:Í¢ê¬ß%"s'T§YT×IuJâr'T§YT{‚!*wBvšEٹْ&—Lf¡<Í¢òÜì’S³¯˜ÍBzšEé_ÓYˆO³(>i3—‡é,Ô§YTŸÇÇ4Pä+¦³ŸfQ~Ó¸•¯˜ÏB~šEùy6û³®¾ý®¿x3NÍoîvïÖ·¿ÙÜ]ýf{wµùæââbL'?¤wñêðwq»»\ßn˜r2¹+­Vü)Çjå´of2ð,åêgÿùßüìg»ï¾ýíå箿ÿüíw?^BOß}ÛŽ7Þ|þ}÷ƒý«¿¹øË‹ÿô³”N8uešJuŽ>O#xØNÚrÈ%e=fÛ6¼S_Õ¿x‰¾½^ïŸ6oÞ$,GXù/ø°†fµÒ°¶ «œÅª–Ѱn'¬ô=§Àj–ÁŠ6þð ÞáÔë×›ÛÉyaŒÍí^8ã3ÇÊËO€/×Ó÷0–¤Ž˜¼ýßÊ s• Ö÷“'ÝGmr<ÿ"ý²1tìãÜ»©2JQÁÅIÜ‘ûש׻éøï˜èu<.=׸< üñ$°#®CŸ®Nß]Ü?l.7‡Ýe^¼XßïßnÜß~¢œ=è7ˆÒ3=ð¯6›·ÏÔàöþаûf»>š…>Þï®7Ç`7w©&OþUVÇ„2Þ8Ý ãôãTBþ³’q”L?ŸL{:*Ïýæaûx¿“è©™³&ÖOÆ^øc!òsÐçsŸ|ûÿ˜{;ágÓ¯v¹ºæJ‘v­±‹ùR´§K1aÏ—!yð3º,C;•¡=]†ãV`' ‘ö§øL!ºÓ…x¸Á§Ð÷ÛÛ„ZKÛ©ÄNšCš>O´ÝÝ,2³õóÈ~u&òL}”徬þt}„ï]N¢WDÌöDmg¡Ï“¦Êçð%i†‰4ÃiÒPJºR˜ñ´=¡šzýpˆº~1„Va?n?Ü%ÐÉ{åóØ ¾¤zC…:Þ¥åÝ3 ‹~´<|<4f!£Ì->¹Ö ÌF`úeÌo6)ŸéKGÙ Ì3Ê~—fD&m0Á˜…˜Ž}HÅ|¿ù 1©ŠþæY"zøiŠ¥ Í8ÅZͳº\M¿ÊsÒ¼Z?ª´NSœ1ÍCH9¼©HÙ|YÙôÄqÑ݉ÄÝôë´„Í}!qÏ%÷'÷Ó¯îËJÎ#‚’®€üDòéWÿep^r®‡“²˜~ gL úxN¥¶'úx5õñêtŸR\êá•ÑžèáÕÔëÓ=|¦ŒK=¬àÒžèßUúuºÏ”v)í’Ë}¢wWSï®N÷î™r/t¯’‹}¢oWS߮Θ—ŸÝ³+.õ‰ž]M=»:ݳgJ}^Ÿª¸ð'úu5õëêt¿ž)üY9 ÏÍñ“ÛÙL½º:Ý«y–«÷k»¢Rç'úu=õëút¿¦4z¶5TÎüDÏ®§ž]ŸîÙ³å\è_ôiã˜ú‰¾]§_§ûöl‰—R·\ö½»žzw}ºwÏ–]ïd–'jù‰þ]Oý»>ëõãÜnyÆ–ŸèáõÔÃëÓ=|¶äçõ0ž·å'úx=õñútŸ­€óòÀ³·üD/¯§^^Ÿîå4XbOÚ ÙËÓ‚Ž]V´¥tÒ&c:n>öt:T«‹)”Ò‰u¶aLI ìœ¥ÂæF7Tœ2Cààê½\Ê´ißV,¼sÆü¬L¶z‘3™%†#;eÁH62 ðú¸42¤œ¦eýL5]$Á…_€•Ö‚/^‘<½jh ëÙ幋/[CTÒõ”n±”n{:Ý´îw8€ðã~û–G»­ÿ­&«‰8lèN÷­SÉíww;²{ø…äL’©U–&ü]öÅ Ï­¿eFOþÙºçéÊëˆZýf¼"ç—ê·?]¿JвŠYHQTq3UqºŠ•´çjÙzž­¦žYËÏg`“1ÁÎ¥f²ùögÖð³9Ï”ØlÑ(1#û¢%îSÕ™/PV§ÿâÅéÓZÄŽgËÕsÃañlÐÉæ†ÃÂ*£á³èÏ↬qâïoÿý+óËüWøÜýôûþ‡_}DzŸ¾ÿéõ¯~ø¾ýÕOaTûÍ¿ÿüÇþûÿá7]ýcýËöÖ©¿Õ8Þ8wq¸¹?^W6„W&÷ÆùâÂ>R[™Â™ìb|h\ö/.V_šÐ?æï§~¬¿³ò÷¿¯¿ûíðùûîÄÿÿ6 Îêøw1]ÿ;ù;,\ß=n_]^Zúbléî§¶ï.š¸øíØæÃÅè¿ÿáÛÏß]d¿\ý2;pmŒqùù¨¿ë^ý~äܯ/~uûmó}ýý?üêªÿýïLùþáv|¾ÿüù÷?üê§¾ÿUóíw¿ ˜¯öc‚¯Ú‹W?^¼ú[sñê6fâÕ«oûÝçïûWmýCñêî"Rð÷Ÿ?ÿÝOLLü®þÃøüÕçŸ~üãO?¾¾ý}òûËÿðÇ‹yÞ†´SƈcAÿøù‡o øÃ¯/^ýÝÏÍ«ìþUþ caò_ü/??ü÷ÏþìÛáâ_þùŸÿüâçù—™ý‹‹ý¯/þüçÿ23ÿU:ÿ,ý_\üõÏ.ŽÇÛÿk¸]à¿þu–þõÏC¸BøÏA·zòá¶Áýo!óõ¿‡`Ì×/BÐ=Ãxn{ü×/C0GðW!³¹ Áò† ·cní1èWf!séBÐ>ÃðávÌm‚±‹Œ¹,C0†Q…Û1·¿ÁX©ÿ&c.ÿí1˜?¯Ó¿ ·cnÿ]Æ:ý?B0ær‚Ï÷u¸+ñ2c¶®B0fk‚Õ3Œ7ÇÛE¬ÄëŒÙº Á˜­mfÏ0¾ ·c%¾ ÁX‰·!sù.‹gwávÌí.c%ÞƒeÌå×!hža<„Û1·!+q‚1—O!ø¼N߇Û1·B0Öé7!sù1Ÿ×é§ãí*æö¯B0Öé_ÿuÇlþM>¯Ôÿ+ÜŽÙýMÆJ­C0æ« Áç¦ ·c-vÇ YÅŒõÇœ ?ï3¿ÅýX“¿C8æí[„cæþáçýæïp?æú÷ÇêüÂ1¿ß…°yÞw>ã~Ì÷Ž5úïŽùýáçšôîÇ|ÿˆplüŸŽùý?¯æ¿Çý˜ïÿÂ6Öó? óû#ü¼žÿîÇ|ÿ?ÇzþÏÇüþ¿çñ‡1fÿ»þ¢ý]ý}ÝþØñCÿãÅ·?\|÷ùÇ‹fܺ‹qPÝ>î^å.ÿåqTú³þûï?ñ¯Â8õÛþ»þûú0BýX7ãÔì¢ûüÝϼøûÏßÿÝÅßûãï.~ü݈ÖÿǾýé0|É„~yqÿûþ0‚~ßÿñó÷?^ÔÍO¿½øñóÅ¿¯¯~ûÝO¯Ž‰üŸã¯_~þþ·ÿî—ÿjLý»îÛágãßa<%>ÎþPÿ]ÿ›ù!õÿpüdççþa7ÎŽ÷}ñó»Í‡ƒ{áÏ}q¿{Ü~sñWõkÜúõßüÍ!Â8™úñÛvœr|÷CX?™VS~vùðüoXFçÉ?;¬X|Îp'´‡©ðaëðÏÃEŠpÌŠÌÉú÷ü]Íù8Þ8+ÇÿDòƒãÀ!uœrW¾ááṬ>¸¢ãÂxÞàùᓤÃõà*t¼–!< <„°mC-ØÃw1‡k‡pâÛƒSÐñÚ"Ü"Ü#ÜÙ ù9\á"ÄÏ ‡pŽppp‡ð€ðÂ%þ¿Ì.®nnùÉêÿì°¤~¸ÈÏø.t»2ä/ïK„;„õ“øÿa@8-Ú§EjÑŸZôŸý§Eý¶è?-ô±Eý¶¨ßõÛ¢~[Œw-æ?Ç;p=†ÑŸZô§ã‡åÇkh¿ý©Cýw¨ÿõß¡þ;Ô‡úï²P?ê»C}w¨ïõÝ¡¾;Ôw‡ñèp=†}àC‡þÒ¡t¨ïó§ó¥ý£Cýw¨ÿ® åï*ü?Æç®ÉnF~1Ÿé0ìZÄo‘~‡òt(ê·Ãü²ëŸùB~zÔgúé1ž÷.G¸C8¤ßƒO}iv;„ „K„k„_zÞWˆ_W‡üö5Ò«‘ßÚ#ìFz5⃯}Ý ŒôÀ×¾iFú¨ÏüíÁßõÛ·ˆßâÿ1~÷¨Ïzp¸è¿Ã¾ý!Ê3äOôsÀ|wÀüy@ù”ÿø­Åá|÷€?¾ùç!Æçã5„„‡öøÿ܆pîÆÿ‡ùçøÆ¼2†ûú;^»®ÆÇpf=®!Ü!Œÿïðÿaþ8^ž ýk¼Ö‡ÿ·È¯ z6^K„ñÿÿïñÿ9þ¿ÄóÏK<¯ð<ŒÿãÕ"ì~Êk[ü‹ÿoñÿ(¯mñÿòú“É‚¾ŒW‹°Gσ×áÐ>YÒËJ„Q¿x¯ˆ?„ò¸Ð?Mø3^^ôÅä%ž‡ñÓäÀË{„Ãû É‡P_øT½¯áya²¶xž!ìö£þ ä§ŸŠ"ÔGQX„ñÿ(oÑ æ×¦h‘Ÿ0¾¯!Ü"ðKä§ ï§¦^Æûð‰ýáŠú«P¾Ê„ö­¿²Mg£ÿTà_•‡ú® „Ãû±©^U#>Ò«ÂüÐÔH¯6áyô0¿5ux?55ðê WÇë!Ü >æsó9Ó8„] üùiê~S·>4a½Á4}¨¦é5á}Â`þbÚ, ¿ è/ƒ é ¨¿Áá¹ÃsèÅ€öÂøk†ð~q¼†pƒpƒp‡pŒúÏ€ò ¨Ï!¼¯¿¦ áááОôahñÿ-þ¿ÅÿCÿ†ð~ü$,„‘ŸÏQŸÃ<ÔÏᣦ>>·«0^¯!< <„pÐ;» óekVG¼ã5„ „ „ëý}¼z„=ÂÂ][ÂÖ!œ#œ#\"\" |ã‡üš0߯-Â!ÿÆ!}‡ça¾u¼ÃAo¬ zo]hëÂz‚ŸGÙÿßf{„¿ ëeö¸ÏÔñŠç¡þ-ølÁ_ÛÙP-.îåë^—ãyÐçãõ.ñ<Ì÷lW#\Çp‰pÈO×àyƒç ž7xÞây‹ç-ž·xÞáy‡çžwxÞãyX/²=Ú§ëmÙ*̧ÇkÂÖ„°­B8C8èG†ùÈxmCØáy(ov˜G„0ðk<óƒ óƒñž¤þdé™0?ÉL¨¿Ì„õÔÌ #¾ íçº0Þ;èM5tÇpùTíÂûOí:„Ãx[{<ÏÃøXc}o¼!ø=^›vxž÷!\¸.ð<ô×ëwuaŽ|¯[ÂßáàÀãÙe!?EàÃñ$±c8¬—Öåê¨ã5CØ#Ÿ×·!ø[c½®.Ãø\c<­›Já?ŒWüÿÐ Ü Ü!òW=©+ÒÃøZWÞ†pŽpêãiõ¶ñêõQ…÷™ãõîñÿ¡ÿŽ×a<þêãqõ¬ºFyë0~Ô5òSxÞ׎×îC¸^‹ÿóÃñjù¯»P?u|ä·FþjÔgæ'5ÖƒêãnÇk…pH¯1xnð<Œ‡ã5†K„ñÿ¨ï&Ì7k¬ßÔMŽô <óÁzÙá}ª¿º"èÉxmB8´÷€ùÔP‡ùÑ€õº¡îŽz0`þ2 <֯‡—ÇkÂa|°ž54þ?èÇxmîîCØß„ÞßÇk žwáùá=ÿîÂ|aèÂ|{èÂúÆÐ…÷—¡ðåíQ¾>ÌׯkÀïÃxNÏÃY@?‹gëᤠc8ÿù€ùÂ0 ½!¬‡Œ×Ÿƒ£è1Üáy‡çÝôþ‡ªÕª‰wðʵ²x‡[Y¼®2¼u­²6Þéâw\¼_W>Þ)ãøöf0ý?øi…;6þ­C_mX33Á“ðøÃà­4Ëâä,¦žñNDÎâ»g|9K“áN_ÛˆÜÜéð†êbê.âøxÇ[¼µú˜Ÿ9ÿSÄ7íøê³:œäîäñNœ2Æ‚þ~”ñNïÔ¸“ÅÿÉŠx'þOl¯2kã´WS/cêeßÝc•ÞÞË>Þðþ_Ïápâ+Òª2ñŽwÂ,mü‘«%­0^A©+øØ&L4N~äñÊU›ø?&þ)â w²ø?±¤uÚ¨c~êÈ:³9®ØãNÄéÁÕøru\%wb›6±V›˜VS Æâ+Öª 6}M\•ÅáÇ bµ1?X©4ÓÒÍHD;a1ÐÒÀ.þO;&Æ2pŒwŠx'ˆRøî”ñÐ:ÆCçá‡Ã -áî´ñN¨Uccêã îAdÀ±`ïñG¸S·XU:.Ï\ĸSÇ;]¼3àNïTñNc59ÖOÔ–ñGïøx§w€WiLK‘Ùˆc‘Ÿ,‹ÿ“Ùx'"gýbüÑáŽCmd®ˆw"r0±~ÄüÄÌ|LËÇXxDd(’q±V]‹¶pÁX}øáã"ÞޱH}¨€3TXå‰ån4Q£š6¯q§ˆw ¢MT­¦E¯lÚ*ÞA­6m0¸…‡;]¬±Îy‡;Áh8þ€?úxë>®¶¸SÛxÇÇ;y¼SÅ;§Ž8a½þð£‰wšx§ÃÌ ºCw8Þñ…ÇE¼SÇ;ˆå JáMï´ñR÷èïã&ÞAmx´òø#⸈F?jÜA 6ò9ÌËÿø+Ïãø?Ðç.‡>wùï`9½+b)ŠXŠ"‹w²xÇ!ÏÕy¼SÄ;`Âøy.êx§ŽwZ´`ý9¾%îô±ïô%F™>.ð?²xÇãfƒ}&ч6ÞqñNÄ /áîT¸“ÅXYŒ•Åÿɦÿ©â&ÞAž{gqÇEÓrÇEq\ÄqNïÄrùX.‘}Ì¡åò1-Óò1-Óò1-Óò1-ÌÕÇC¼SÏcêyL=©ç1õ<¦•´¸SÄXEŒUÄ1‡P’ñGïô¸SÆv/c)ÊXŠ*–¢Ž9¬#7êÈ:ƪc,ô÷Á`®>`ð°vïäñNï„Ôm|o²ã‹kX «16Ù=eüáp§Äjgsƒmûà¯f0Üõážû!]g¼_ÿ¾þîïØ ñxã,/Äã 1ØPWaàx=†ácv¸Ãð¹:\1¢…á¢\ź8a´Ð®°æ·²XCöû¸ÖÔ×%>fo¦Ä—ßýøýï¹ÄÇg•øøŸ(±E‰Q¢ +¬z¯Ž«ˆÏstŒ>“£«oû휣ã³rtüOäŽL« Y‚ãFG‹µ‚­z8Âôa¡gÃÌj°xEŒoR.¾2Æ7Æ.ð&Z„…zS†…ÔñÂFÍ âYa†Uu0¬Ä5ä¤~'*Ѐ¢ÙàMŽ?ã[O·È_‹ÿoÃÿ×pÔ¯!\b!¸ é×xK¯ãyŸ‡ö®k…?à7xÞ„çÃÊ?^cýÅÅ é3«¯u«ÓàÕ_üÉâ«__ôâ+¤AÍcÙËÅÿqñòøJ’ûx'N¹ó6Nݳ8™¯?qyÁÀsœçqb )ÎcÃä±eÆÙ¦UÅ0Ó}}m¦û^_ÿñwÜ}7Îê¾Çÿœ¹!¢6:n÷Í~éøƒcÊ—:6/;.ãùsÇåÏ‘ž‡£Œ/ñÿUt\^rLŽ,x£[åŽÂan»*VÁ‘¥€ãaáàüÂQúõÜ8fV%ô° crŽ7%=K8zžr þ¯çÈ ÇÛEGÞ¤ãnÔó°ü߀ãn‹0WÏvä…£í—:òÆñëŸÍ‘å]täEúK޼qüŽØÿ쎽pŒ]t쎻_èØçÐÃÿÿ8ö¢¼ ޽Ó| z÷ÏçèòûÅŽ¾ÏçþãÙ?½#phßeG`”ïKŸÍgÿùƒÏtŽómèaÞ¡ÿ+:#~‹ò}©£ð³÷ƒä8 GÙçŽÃÁ^µÂ’Åÿ€ŽÂ%ÂÑQX¾?t^ržw ^Á1mdzñŠpMÀÑõeŽ»ÿã:ê†úȰÄ59êâ}sÙQ¯=/sá¸sqÃR]rÄ åù“9âÂäóüý¼ÀKcwƸ²[Ç”ïïÿt޹£¼ÌO¬OÿXGÝ´¾P#êkrÜÅÚrÜÅzøP‡%¨“ë5Ú·Ž[¦Fúp$JŽ¾Ñ‘7®_DãL´ÍÀ±¶ÁJ‹¥íëØÓzFtÜߢý¹EÿnQÞè˜Û‚¯-ÚwrÔEûtHï¿yÇÜ玷§m;à‡ñKq´ Ž‘÷š‹ã¢hpä\Á‘uÇR¬ÿÙKWp,]…¥u‹ÅrÔ Ž³ø°â…£.mí ŽÐ_{XòùÙÑQ7„MÙ„0âga~­ŸÖÁ×a-Û9<ϧÕîc¸ >óóñC1Ÿ¯Á±óg‹ù³mÂ‡ç£ Ç]¬7žïx ÇÚ6¼?ý—;Ö}³¡ÿ[s¬…QÉÂbû ö`9†QC´+·%; ‡õƒlµŠŽ¶X”áX[…𹎳?Éq¶E8̯'GZô9³áÐ?²ì™c-êë´cm…p¨ÏÉÑö…ã,M1.;¾">ÖŸÆ+Öo'ÇV8®NŽ­Áq´ ó£i}K™äÈŠõÜ0¾ŽW8¢>w\mñÿÑQ5®‡ñä|GÔgëÅ57_8–ÑQôŸÈqô…£hÈß³õë/uíW*ÇÑ?µ£hûÜQŽ¡g;ІòÀÎ=ôa>4ôá`ú`ùú<ä¿ÏK„Ïs4íƒOÌñz+8šþiK|ˆ2Ïè9^K„ôz¼FçÐ^GÔ˜:>l9üÀ ‰nƒ&ºUšN‚&¥ LÐ+­.ÆÒU´Ÿ¬L,©=ÃÅÕFGK;99½Úè¬úsz…ÜœÓëi×Ö¤³œ^=¾&<þ8ÞùïÀ ÖÇX“Ókïà#¸³Ü`ñeÃÁ -X¤•Ü`³éçcã³Ñ%¹ ]ïŸÂ16~ý[ÇþUÇÖ.ÆŠ«ñfNî´UtÝœgû˜ŸµñfÖyÎ5ä<‹Erž-âè<‹…`W~Çu¼Ûëå`;þ¨ãàô±¤Ñ-…páê¸òÑ w²²âÕn‚£åK·ÜKlrÔ¶“m€ìºûÂQë.l¿Ý>ºîÑåVsËÜiãÿüÉœp£=99áÂ…ó¥…ùŸÛ-ŽÌç¹å¢¤ÿ8·Ü,Zé³<–«ˆ8X‹`×]༴ÀkŽº/Ýr'—Û—vûä„‹´f,ùš[nƒ;ÉÚÝr'GÝèÒþ'sÔ-âÔØ?¥ëî …Ke9|mæÜ{ë!ÞÁxA¿.Þyîé0þhp'7¸ó§rF?ý¯ãŒoÊ[¸éu1­nW‹¢úuøøðμšÙEÕê,j¬‹*ÑeXEî²<Þ ë&ÿÓÝwþ©Ü£ënòÊ©KÜ©+¤ç ] ‡ÍñœL_:ü–0,ô%VÞÿ§ ðêºÇ;à¾"2¶±¢" +Œ_Ã*º “uÜ©ã›7¬ƒ;øLjXµñNïtñÎW§=+0“Œ‰w06‘“rÝ–'—dlÍ2˜KÎï°ƒ8óùÁºxó–!ÞÆ({TÑÁqm½ˆ‹ë¨ÕñG¨Õ!ÇëÇ'ò¸õ\V?+Άh5¢Ùh(:¬›G ¤e,E‰¾3”1Ïe\ý/eÿ§Šw`1ªˆS”=¾m?zÕÆ;íäÜ|¼ó'vô+XG&„áNˆÕ¯°ýF×%Æa]|ˆùÄÊ ^K½çGwÅÈÛÏßÏÇgy@ÿ3z@fØÊö¿tëZx¼=ߪ+ÐcU|jk¼fg{„=  ÂÂÂÂHß }ƒôáq…­NVØêd…­NÆ+ÒÇÖ¦Øúäx a¤o¾Aúé¤'uÓÃ5„‘¾Eúé[¤o‘¾Eúé[¤o‘¾EúéÃ[«¯Ç0<€LŽôs¤Ÿ#ýéçH_FŽ \CéçH?Gúðð2ð1ØŠs|qCéHH¦@úðð3ðx6ÐS ½ ´wö.Ѿ%ðá±dà±t¸†0Ú=Ó<e‡k#>< <\°V;^‘~¾ÁÃÇÀãÚÀcÐÀãÇÀãÇÀãÇÀƒÐÀƒÍ@ï <~ <~LüaëhSÓ€¿ðX6ð(6 øÛ ¿ÐG,|‚½2ð2ð2-þ©¦EýÀƒÇÀƒÇÀ CÇk£þ:Ô_‡üÁ£ËÀ£ËÀ£ËÀ£ëp a”¿C~á‘dàÑl ïX‡Zaêx aÔ7<òLúîQß=øÕƒ_=Ê‹­ŸM~÷¨lmmz¤ß#ý嶪4ÒÃVÕ¹¹f><°ÍüøCÄ峯,Æ+‹ñÊb¼²¯,Æ+‹ñÊb¼²¯,Æ+‹ñÊb¼²¯,Æ+‹ñÊb¼²¯°¦·Â’ÞñÂHã•Åxe1^YŒWã•Åxe1^YŒWã•Åxe1^YŒWã•Åxe1^YŒWã•Åxe1^YŒWã•Åxe1^YŒWã•Åxe1^YŒWã•Åxeá1k1þXŒ?†ãÅxc1ÞXxD[xÔYxÔYŒ/ã‹Åøb1¾ÀÃm¼¿Bù¡O6lÖ°‚ZÚšÿÙVü/·Ú_˜à ès}ΠÇ'·Þäãõ®ñ ô!ƒ>d8 ƒGm欫®nnîFzèÿú†þŸ¡ÿgèÿú†þŸ¡ÿgèÿú†þŸ¡ÿgèÿú†þŸ¡ÿgèÿú{†þžŽ ÀQa¥q¼[á;|‘â0>;ŒÏã³Ãøì0>;ŒÏã³Ãøì0>;ŒÏã³Ãøì0>;ŒÏã³Ãøì0>;´¿Cû;´¿Cû;ŒÏã³øàà1ì ¤_ ýéH|qøHÒÁÃØÁ7­€ø%âÃÃÖa|vø"Ãá‹#‡/޾ÐpøBá8ô‡ñÛUÈ?<°<°<àÞ—Þ—\ƒô¤ùÖWXZ\aeq……Åã5„‘>æ.Xø×v;„s„s„K„K„k„k„[„Ñ_0ßp-ÒëP^è‰ëP^Uá /®Cyñ…ƒÞ8è ,ãå…Þ8èƒÞ8èƒÞ8èƒÞ8èƒÞ8èƒÞ8èƒÞ8è ¶†¯Hzã 7zã 7î_8|ñã0ÿpÐ#=rÐ#.>æ#ó}r˜8ÌG°ÕàxEú˜xÌG<æ#óùˆÇ|«Î+,:¯!Œ/1ñ˜xÌG°$}¼†0ŽFÁ|Äc>â1ñ˜xÌG<æ#óùˆÇ|Äc>â1ñ˜xÌG<æ#óùˆÇ|Äc>â1ñ6~Q‰ô1ñ˜xÌGàß0^‘>æ#óùˆÇ|Äc>â1™¾Ø”_d¾ðð~¾µ-¾€8^C8C+›qÑV‚F‚~…5Õ–TWX÷\aÙëj=Lý ë½0Ÿö+¤o>lÂ=Œ©=< z8ôðèí Ò‡A÷x0W¤ˆ&ÂÀ=Ü#¦5ü¸„o‘¾Eúðé-Ò·H?.çÇÕü¸˜/Ê{‹ô±¢Û[¤o‘¾Eúégÿ{wÒc;’d zŸ¿ÂZÔªªr®]! h™ ÐèÞrP&¢éQˆÌ2ÿ}óR?¹öÜöÌßó)îÆ”Bãåᤣ9¿…ßÂç'.ÜÄ¡ ›Ü=á(?A¸ ÂK@ë©ð°‹p¹ÊËîàwð;ø<˜…tsáýº»ÂÆð/„{!¼ á\à¯.üð5„«Áºpéá‹(=|l»Û!¼átŸC¸Âã‡ð7„»!¼ álàë,\…§¼ž/üp<` •>¿là[A/|Œÿ‚¬TxmËŸç°Œð­]—þ„>piXE/ÑËŸ£¶`¤4‘2†/ þ‚?ÁŸàOð§p”ÁŸà‡·$œ%SˆëÀÇÕ(\À…߸Ìð1m •¨ÂÿQfø˜±CÄTº»b¿_ü><3á˜áCA•DP¥Âz÷Û„ÛF†ˆª«¬6üð%rÆ”þ ŸT|YáãG”>žCYáóÝŠØJw¯Ç­®³„í7×OÁú)|~ÞÂÍ[D•ptâtzƒË¢lðCI„•ˆ°³„ÏÓT8šÊ‡/¢¡ìð±þ ©üB*¿ìð1JÊ_DQ°IÊoa¸âàø%Áp †ßîî¶c‡Ã2ü•ᮄÀçÓ+|Þ¨BZ¾ðÕþÿ€ƒTú Ff9àë¿1jÓ¡ÿ=îN<~¾ˆpÑ?áÒÓ_áš‹˜ç/áâÒ¾á|Ѱp€ÍìpWª_ÚÕKiúøÿ{¥éÿ¦4½ÿߥéÙoF̈ùbizÒðdˆRC꽎g2Í“4}HÇ“)J-)z^½Ô’ª!-Oz¾#Uÿ–´|}?géü“óW_cFÙz’šáRï«ýßYöì=±'öÂ^Ø»>ŸÍóÜ<Ï­öggIº^Ô YD÷UVÛñ“ˆ›ÉõÔþç,GöÈžÙîo"/âh«ýÏUVû`‹šáÏðgø3ü¾ˆ£m†?ßá‹ÙDÈl3üþ †?Ã_àóàn üþ¿À_à/ðø üþ¿À_à¯ðWø+üþ …¿Â_á¯ðE`m+ü¾ˆ¬m…¿Â_áoð7øü þƒ¿Áßàoð7øü þƒ¿ÁßàïðEˆm;üþ_„Ó¶Ãßáïðwø;üþ‡¿Ãßáø~Oõ ~õ«¦.ù$õƒã?–úaêøÿ*«Ý²[vÏîÙ#{dÏlŠTuü•ÕÞÙ'•@ÿ/C¿‡ßÃÁ4ôð{ø=ü~?±zø=ü~_D”T¦Ë0Ààðø|FÀ?Ààðøüþo‚7Á›àMð&x¼ Þo‚'ÕÂ0Á›àMç~'÷;ßáÏðgø3üþ †?ßáÏðgouþ|•ÕîÙ=[ê©Æ:¾ÊjK!Bn¬ßëUV»ÞÏXçËËØÂkáµðZx-¼^ OÄÝØÂkáµðZxmàÕç7ª/£ú2ª/£ú2ª/£ú2ª/£ú2ª/£ú2ª/£úBÁê*« _}Õ—Q}Õõ˨¾ˆs9Køê˨¾Œê˨¾Œê˨¾Œê˨¾Œê˨¾Œê˨¾Œê˨¾Œê˨¾ˆ²9Køê˨¾Œê˨¾ŒêË8À¥‘êb”êb¬þþ«¬vïzÕ·Q}Õ·Q}Õ·Q}Õ·Q}'ç:V…™«¼lõiTŸFõiTFõgTFõgTFõgœÝÿìþ£>Íîgv? ¼Þoq?‹ûYà/ðø üþêøÕñ«ãï«5â’‚ÚûSuÔþý³’ÏRO¤¦‹è»®‹¸š¢ôSðõC|{ïöp׿¹ VôK¶¹ÍÞMÁ·žï<é8æC\j^ˆs£›Ù:ê§ðð÷<ü=MŽ'†e=ÿ€Ñ7Ô%€³¬Ïc A1Рæ@sb¨1y“f ©6`høìŸ›4?xl_20Ÿ1.çÚUœee@ð ^åÍ6$¾Ê›½×%•'†M*}aS<ß`xM=þl4«Â®¿?|oGÑ6†ËA³OLèY:ž†ËÁ`Ô£<x¬ÐÅP³­1Žwü­¼ÙbxÎÒ˜Ûpèî¡·D2˜#ˆAyòÀ×÷q–aOlï»Çœ‡9<ÖFÇw³1Ò“Çx`O슿bP¬C½þð¯æfw°ùܦÃ~Û#\§*×ÔæøÉãYå:ÿ¯10¹éy¿ËÓøÝ'GÃÚ\x<‹ça ù”­ŽzÏrªv]³9ËŽÍ£W•ÕÞÙÕƒgør•—]¿çÖ÷¼tõzš<ËЈ kØ£˜¯QÌW}ÿWyÙÕã}÷ÀMuÐ÷äA Y-“‘IŒÈTŸçUÞì9ó€ÕþãɃ&¦h®C­'ZxÌêº×“Ìñ‹ÿ/ñ) Ûe­õñ*ÿáòäTPxtJý~Ÿ<4-û…‡¦z„h‚4A>ñØLì…]ñî™ú¾Ï²g/ìÍ#“x`’ß×åæãÆœ¸ìZ_íßYú¿ûÁ80$ ‰CâÀ8&¯øLž| ±܆÷£ ÏÆKŸÀÓŠ{kÞ÷•òkÞ/VÊ_Y‡c­zŒcŽ8æ¾ê|_cŽó¼X?>x«tOkºfíçFCpàiM—ð§«³f9‰êìmQÖÊbŠ•³„ööéz-¬„I’ÒÇÄ nncåõ¾:kíáiU•$Zݸöôæ"©ßc%lOâšÇXéÛ·ÖÒ^[ß"OñÉjß˹±Ú£;xLoë@õ}­Û}=€,L]3x1޽ :_Çþ¯ÿ³låÓqìµã]ãØëÈÇvF5†9÷@ìÿ† aCîhFïë¥ÃtŸ@Ôn‰ÔæYÎlR¤ s³aîQã6ŒxþH®ëå‘ü?ÿçÿüP.ýÚñ®Gry—KwÏ¡4²wc¨Ú ë6Ⱥ ²´–á*«M®·!×k¨v+«M®·!×ÛëmÈõ6äz m“¡­ sC>ã*/;Á÷Nru24L††ÉÐ0%ø ~‚Ÿà'ø ~‚/˜)J§ß7“|3)ÃÏð3ü ?ÃÏð3|äý„¼ŸL¥’©Ô­¬6ü ßP[s¶ßÏž‡`D5‘GE²8K÷»¸žÅõÞI‹ó™ú'r¨‰j"'œÏWpO"šÈŸ&Á&I°I"wšÈ&òÈIðIZCÎÜõ ë'Á`Iðd‘G4gé~É“&ò¤‰´Ò#´–²Zã³VúƒVúƒVúƒV0P»ÃWÿ[õ¿Uÿ[õ¿Uÿ[õ¿UÿÛWÿ[õ¿Uÿ[õ¿Uÿ[õ¿Uÿ[õ¿Uÿ[õ¿Uß[õ½µôØ’nÃ"¯7mÈ [jFV¿Êj““Ö?wúçNÿÜéŸ;ýs§îôÏþ¹Ó?wúçNÿÜéŸs¨«¬6|ßO§6Å:Kø¾§NÿÜð‰tÒ•tÒ•tÒ•t–¦;KÓØWYm¿÷ýu¾?äê³ôûÉïÉïw‚1;Á˜ô%`¸NÿÝé¿;ÁƒÝìúõç`ÂN0n§ç€oøß¯ò²Í±:ý=o|Öðõ÷þžkþ,á íÛu‚y;ý?Ç}Ão•—-J'ø»üÝ îï¤Géˆ Ðÿ¸ÊjÃ7>褓ê¤KéŒ:ã…Žk ãèÌ·:é:®”cà*«MŽÛø¢“n¥|Þ >ï6rÜÆÝräð'wÚ“Nº•Žk Ó¾t‚7;óÁN{Óio:íM§½é´7ö¦ÓÞtÚ›N{Óio:íM§½é´7ö¦ÓÞtÚ›N{Óioè¨\eµáko:íM§½é¸":®ˆN°i'¸·ÓuÚ£Îø£“¬“ž¡3éŒG:íSg<ÒEºã‘Îx·ö*«Ù™Ý±;6×ñHo<ÒôÆ#è#g¹±76W”ñHo<ÒôÆ#½ñHo<‚|Òàž\eµáôÆ#½ñHo<‚ªÒ`ª\åeôÆ#½ñHo<ÒôÆ#½ñHo<ÒôÆ#½ñHo<ÒôÆ#½ñHo<òL,%…§ÿ½Á«Ïƒ3 Òà‡X8- >DƒDQßçUV{bOì…bí[Š`Î"xÒRõUV~‚Ÿà#\¢’à Æ+ç…NRIð|Ô£ÂÕT[ ^¸ÊjÃrNps‚š“á#¼ÿ‚ÆY°8K†Ÿágø>ú„¥ù«¬6ü ùËÕ¶`Ú®·b½µ –>ZE±jZÐÊK ß"j±6\“ÞùAA²6Z,¬‚‚U;¤ÂYÿK¿ƒOµªS*ÖÊ WÁߺ“ˆ‚C"Œ¸âû/xØÅR;×ëUV~¿‡$¼é•XøA# Qˆp`·$®’ÄU’¸JÒb #”Ùb…ºpµ †¹ÊjÃBRð‘,q –¹ÊjÃáð…Y”~—‚»Ô¥`.Mð)†#HÄ1‚³„j]0­‰$â‰8Á$dž?ÁŸàã”þ †?ßáã?!E{V¬qlÈ‚ Y¿_ü~qý\Ë…k¹,®ŸJW¬]×8Yð& bUÁ/‚ó‹àü‚¼_Vø‚u‹`ݲÂÇ|.+|zhe…/Æ¢pïÞ"xšØÂUV>‘±Bc¬i‘ï…C"Æp•Õ†¿Áßàoðq'ËŸ­p¢ e‡P¨Š`ä”IT²Ãßᣃ¸ÊjÃ߃zwg\²ƒßx§7²ï$@vP6á£îºv¥E0‚Aþ îüàçðSÄñ"ú¦h(‚« ·_|^ȋȎ"ü« 6Ž;KøGû›K7ò28-Ç¡¿àZ}%XýƒÁ鈘‡öðà€;|ßBãá{;¶FgGpº÷qUÏóœùk2M —¥§ÍÒÑfég3Kæ_ÉÒËfée³t²YºØÌÿ‘ù?2ÿGæÿÈü™ÿ#ódÁÇ™# ÍËÒ±fþ‡Ì¿ù²õù,]h–¾3Kß™Í×rrÎσÏ#ؼö_g™Ùä•r΂ɷõc 瑇žPU¦ÀsÿĈ1ebLWYmø3ü¾àùÀ†:³Íðgø3|âÛ †/ø~[à/ðø üþ_°þ&XŸxT&u•Õ†¿À_à îß÷o+üþ …¿Â÷=mÄ6bÛ …¿Â_á¯ðWøÄP©®²Úð7øü þ•i#6@ü*¿ºÊjÃßàoð‰ó¸ÊjÃßáïðwø;|”Ù UjÛáïðwø;üþŸøñ­«¬6ü¿¨_Eý*êW *–ãkñ$PÇãg‰ªÔÅÿ;vÇØ{bOì…½°7öÆFêP£ç=ü~¿‡ßÃïá÷ð{ø=ü>9ÝÕièá÷ð{øüþ€?Ààðøüþ€?Àà7À‰8Kx¼ Þo‚7Á›àMð&x<òÊÃxî—¼ò@,b˜áÏðgø3üþ †?ßáÏðgòÑu>{•ÕîØ{`lrÈ™u&Gã|ä¢3¹hÔ·‘¸ÂØÂkáµðZx-<âc ¯…×ÂkáµðZx-¼žú2ª/£ú2ª/£ú2ª/£ú2ª/£ú2ª/£úBìõ,á«/£úB x¡|•Õ†¯¾Œê˨¾Œê˨¾Œê˨¾Œê˨¾Œê˨¾Œê˨¾ˆH¿ÊjÃW_FõeT_FõeT_PM¯²ÚðÕ—Q}!¦µÓºÊËÉmä¶Grß#¹ï‘Ü7ê¥¨Š«¬¶ëUßFõmTßFõmTßFéFéFéÆ)äÄ_}Õ§Q}ÕŸQýÕŸQýÕŸ1êÏìþg÷?»ÿÙý,ðx ¼Þâ~÷³À_à/ðø üb0~¿úýJ¼"£bFXü“@Bˆ¼(ÿ$¼u Â{èaŠp@ O{gf°s5ÝTÅ#`Q¸ä7 OÆaÄ»D?·@CWøSƒM‰¾A0¢ÅŸ½Ÿâ —8O„]ö{Ürý>˜ÒíC™ò6„ËCp|Áqi2> s¬ìC‰PHsÉ}L!wÞ†Üy˜ªÏ熙Ýy —¼ —G8×=äK€àáþGbÏ=ìv…ÏÙ•ïvàÿ÷?þüÏþAäOÝó.~`=AP¤÷}ƒ.v§ r¿7´Åof/.²žï•«üÿú·ýÓk¼ÙïºÂÛA`Døzó ƒÐø<¶(®˜ƒµá0l8  ¨áÐkÖÏ$9ˆ¢{þt±=y=Ÿzæ°ÊV™Ã*‡ƒ¼ ‚ùð\M~g%‚ÂsBÂ=?9ä=ßö{Õèå«}®FjóÔO{±X½X,Ôæ³ä B¸ê9D{ÑÏ«Õ×ß`‡ÕÀ!%?O3pðWÂÕÀ¡9Pc8 ÈÃoïxïx„÷yõûz?#‡â›jøÏÕïßR»§<#<ÌÔšgj¯¿?5|êé5üjÿÖÕð©Aÿݨ᫟«ú¹VU‹¿_uüP_ÿ­«ã?Ôð«ýs«á{þ»ñÑo_ ŸÚüs5|ã„€! ¡òPǯ:>BàYÖã©SŸ%[ÿp´bËk8\#òYŠ-oãxjùŸSß÷>ãõ7ÕøÝï±…rf¬WÜÕ«úŽ_Hp »»~&êß½Z?í]­Ÿ×çÕúk ¦ó4’D²Ê÷™,8?©ùs æ_®îÏþjêþlùÙG‘¦#‚Á[êÿSu(Ÿeýÿô³«ýךŸ®îOþ]ÝþÇÕýëó\äC·º?‚ÁZЉZû µÿv»«ýû^ªý×çsW÷G@áüý©ý#½?¿¼ãßÌ/ ÿ¿0ÞÊ@Í¿Ü *î©ÿ÷²|aþù—Ù>Gø@Àˆ|ôßšàùî_ä³Nðx#Ÿ}>îÈ_ÿÞì÷üÙÌËýv¶!´@~ÙvZ%Åû(9‚Òk6€¦~-í§¶‰ÿËÐÔñÏYÒ*©ëog¨ý[ÛÌ´Jfç[øm?ÞŸ€ÖÉ=;lÉï»gÙ¶ßÎ> Û@GÝaèÄ~ž`äp¦…2ÔögähŒIþܪñä`æ¿;è>›Í€ÖÊ={AÕjy‘½Àý¼Ì^à÷Uæ*«½³Ÿe7_[ÿú”í€õe¶ƒêÐ{‘íþ‡³À[FÇË÷ü"ûÁî÷ð¬'- íšožásù‹ÿÿÿ:ÙŽùkeO¨í÷a½ìëgSXŸgS¨×ûþl ²!D6Z9÷l ™ÝÒæieK¨ãƒÖØg³)´€ÌŸ;Œ_jíü0_õÙÝ×ó}¥ì ¿x6…Ðô'8P“|מüEY?É‚Ê@Ì‚X¯dAý–Rç×Ï‹ðȂ蓈&¦\ŸäExG„˜ˆ5sŠ=9öܳ ¼’ó ÄžPrŠóü¬9îZS÷ ækÍ×¼Ä×û”ó ÖL–-°" Â+9â½?å<¬§œuÏyð¡|Ÿæ* Õ„Öü+¹ „Füä\¡öþI®‚»>VóJö‚8ZĹAyë“|KìÙbc~4Ÿí«h¾b>ƒøÕ#ŸÁÇóPJÁüá ÖùR¿ÿHÎÇ`ûþÜYóD+±çkeAø9süX†ºqOôzC´~Ãê _Ëyð›Ìp°Ç„¯óKºöìAÝ:7æˆ4Ý6âÈ*Ý6âW¡¡ŸDΈlY,é¹ù ¾e†ƒ'êßÇè‰öa a‡#È€qcÜÅ=°=]Ð}½ŸƒŠhà¶„Á;…0¾QXâ¹ÑÅžçYÆ#4ãk1·¾mDž-ö¾ŒÞþÈM Ñ™!«Íî‘ìÿñÈîP÷|åì Ò6ßT÷ÿ‡šþÏù°7öê+lØÿþ—ïÿý_>¥Ã^;ÞŇ½Ž B,ÂÄg ±¿5,EÉ–¢ä“bׯ•Š$$ÄR$úÅ ±6ƒë}7A¶æ û„ [ Ÿ%ÈR}“ ëúG =Ÿ%ÌÖ…³¬ÿŸ(Â<hëõ½E 5ho&Ï‹Cù,ëõÍåfŠr3…Òaì×CÀu½Ÿ%àÂßÜÏï†û^nlkÜú~?OÀuý¿9n½¿Ïpá?¸ìç\x¿®óÿê ¸îç³\x¿Y®óéï~;„ÜŸ‹€‹€jüRÈ„\¿ÿ(!÷9×óþ<¡¶~/‡ñý„Ú'm8ìÂkN5«/¶¦Òõ¿†‚YƒPÙLá^ ›s-2ËÏá$‹,àÂnµ*a÷`ÿÚ »µwÂ.ûkvW6ÂãH¡ìm¯ó?'ðþl„Ýz}??a·¾ÏÅùÃÿû^Âî ëý¿¦p|¬]ØoxÃë`™k¥˜·–úüÖRñV LŸ½õÿŸ%ô–ºB·!¤n¾Ï-Â2üÁ÷Nè mø{(°Ýsš>¾—ý9‚ïx„]öç»Åÿï P߈À;ùÿožÀ;Wû‹ ¼¿SÂ.ž'®ÿaaô«v«+ú,[vÏŽÿ/lÉ?Kðe?'ø"¸~9Á·â?|+¡öM‚ïêÿU!oAèz›ð[ëïb}ð뀫?ã,%\sOŽ}…°ú §>話ç÷GO}NF½¨£¯±Qÿ×þçÿüõ¶ã}lÔۑبÕ÷êVšk­ûÅÜ¿®àù%|ÿŸçü_ïüþ?_ƒ;ÍÇñà÷ÿùÚ ÿë¿þùŸ¿/û;!¤ÛÔþàF_’Pƒt*Íé’L?O"õÿç$Ri¹{x=Ò@/íì]uõ³$ÑêÔ7¢kiýiýƪês–•dñy•Ó7TM‘–'i_¨œ"ÝMHwoªžþîTMëýÿò$ʇªiµ¢ªibqRåϤjª=üý(¿PÅT{÷›W1•¦zª¦Õþ…TMµ‡{×þTM‘Ÿ“*ëJxcñwHšü ŠéçH‘o©Šjÿ`Î’½‡»)Vº¿Œ”ø÷KB¤jÚy'!Z¾ú< ÑÚš…«;Éð‹U@ëõ=Ð×U>Gkí㪟՞¤©þùH„¡úɶÜ<[mþé¤Â…]Ÿ×ThEîã* l±ÿïV%ÓgªŸ«õ·»ê§µ¤—$Áºž¬M}¾«€þÞT?Ÿ“þÞ"ùíÎ_¤a}“äWIY±fÓHÊë÷ 骧´›/T;‘Ê$±—*žÕ¦‘“ß·u|~ˆÜ!õuÖ‡ºÎÿ‡û Òe¯Õ/˜¯Ï²’ÌŒ‡Ï²’䌳ño^ko¦Z— ½ŸÄ‡¤·ÕùÏO'éI³úkUÙ´P›­1æRë{.UR!Ï㈵ºJqÈÇÁ®óÿð!µM‹„÷–Êæ{Ixõûy"ámì:>¾“òrmoÛœÙõ{oÛg$=Ïëm’ž´r]}žwÒÞ RÒšþí*˜HmHTS‹w'Í!Á=WŬã›WT1Ÿ‘âBå²Gj{¡réøç¤·Ú?|œä†ö‚¤ö­U+_ξŠ*å>}-ÒÙ×&™mÏIfHeï&™Õû¹«P"‘ÝU(«;åàM9JMy–û}$µR½ÓWy³)íëФö³”±¦?Kç¯íõY‘ì—%­:’ümÄ$¡(á*MèC)"¯·N“‚6–Ķ ¾|TÍòpæ'‚\bÛÇrˆ.¯ä¾6®étm\{~¹>~u§Ã-±‡6Ñ»rXÒ7‚œ78'XO¹ö¾Ç™_£ÌE4_ÐçZõ~f}Ë.~ߨbfý ÑnRßVj–Kñ4ô7¯Òê8¬?¡Õ™ÄB«cOÐê,ä¦X¹½©QÆžx_¢ÞKìqžw®ÞOéy¨JMd¼—:™Aú©:™]¨b>Ñó^ªbºžO¨wAÏ+AÏ;‚V÷cÔ»;e.ŽùjD;wúÐÀü”h÷…˜"Ú½¢oùsªYúŸ(sAvýj”¹1öxb?/‰ÎÒ×¹êö£Š—õí|B´ëbÏKZE‹a’=¿IÅKñ¨êËX{«?Ñúí‚ o(sI›¹G«µgOlVbo­ïí{ÆH‘ý õ}KRßK‚Üz¤T}äx¨>6Z=_™VWÊgD‹t4ú¯£ êÝ9X·g‰=‹@ðfMö…8š-öl±g=G¬lßãßdŽ”b¾éâßTÀ;ÍoŽ$ðÅr6‡=rœ'Ϲ‹=Æ-G8ÎÎ ÷­èѱV>Æb¹§znÔ§z f¬ÇQìC„±GìáC8bœp„è7Ð1îÖÁ£8&ëÇw1©;Ç×<Åj~„5ÓÇ̱‡ä˜ã˜˜Šf!ùÚ[´ãe{¿Ô·ÏÒù½ß“jñ~ïwY‚¹èþ½ßeu>LÙe &¤ûÅþïúxÞŸ%®fB.Òÿ½¿U{µjWõÓŠØYb Θ†³ãgø³ç3û=æóª=]1“VL¤uñ{í÷ê}¯˜G놉ٺªÏ+f뺓Òû^ÕïUý&Otà!Yïó~7ïwÃ߼߭®]5›÷»å`6Ó“ÐûÛÈ?oÞ&ÃYbúõðô'&ÝV‡Îgéú¼¿Íû3)>KÇëß6õqó>7ïsÓÞnÞçæ}nÞç¦>nK0ý^ýÛÖ`>Ö÷»i_7ïcó>6ïcÛ‚Éè÷˜¦ÛÌǃíþÔÇÍûÙ0ù·Ãý˜êãî}íÞ×î}íÞ×î}íÞ×^§Ogr˜†ÞÏîýìÞÏÞa bžîê×®>íÞÇ>³1˜Ž˜’ÞÇ®~íÞÇî}ì3æä O¼cî;¦ÛŽéFÞªÙ1»wÏ{ÇìæéovÌÒ}w}žÿŽéËÓ–þïyï˜Þ»ñFñ¼M?Ï2òµcòùÞÊÔ²119 ¹ò"²Ã¬ª1©:Ë]ï¯Ì~?cj_Šö£,ðLHLé²`".ð0§ÍÇÎÒõ.ð|Ï…<|ñ|‹ç[|ßÅ÷]<ï"ò¤ø¾‹ö¦ìÎgüP<_žÏsè*/»&[iŽ‘\ärþÙzhÿr”fåQ=ëÍ^Ì &ò«‡»›Ýg“ûl.”{Ç›µçÉÿÍš3ùÈl}0›´æÚ¿ŸåÀvþ*•—mJKŽ?‘ã?KÇ“ÌäÛZ߯²ÚÛÿ-E´=fãLGòŠ•iœZ«F-¦T{øýQØÖ;%ÔæXÿ¬÷O>–ÎD¥‘cŒS¹ cz´À2zž£d<#æßX™°WYmÇ»þ³oä¹ÉÎ_6&¹ù¤æåÔ°«ÜüY²¹À&çŸ,g„wrò|b =ÜŽ³ßϹ.Ç̙͹>ȹ2βÎÑgËÙäæÓ,ÁË &/8ߥa å\ëC™”–:?JæÁÉøõ*/Ûû_¬û,œJ‹ïuñ=Ä*âb‘5Ößëâþo2Þß]%ÛùW׿rÝ®<í'èfÍDäC"b‰{[ƒéèx÷»U&ÑUVÛï#‹Ž÷CN趤sÙ‡úpX¶=¼¯Ã‚ì«ÚƒÃýœ¤ìéL^è,1)Õ¯Cûpð`ÚÏãX-íð–£LæCþv̬tˆÕù¡#–}b-äë]œ<ÚÇÜÔùØY²É6˜ ¦jn*“ø,+Ó­™ÈNþ_ë¶þ›Õÿ7öA>~šÈú}[ÇŸY{’;LŽʘOYäÇU^öîÿ»ÿïþ_ÛÏ\êü9r—¥¶WyÙž‡þ=câfÌÛ|Ôõìûk›ºxw•—]ï÷,¯çÙZ‚;Ë®Úõùµ©®7µ©~­ï§MÕÅÓ’ÃiS?·VðÚ\Û㫼ìƒ]¯§ÛkÿÛy^³ëŸ]ïÒÕùÂY²ëó<Ëjµ}_†–]™Ö‹þok{y–ìê^FLÀ)‡\`ýÿTçO‹õ¥Eÿ³è–©¶gY™}ÓîøÝÿÌHøsOÞ¯¶?Ë\ÛãE²H²ˆt]fçÓœÍ>f¤óYYd`]¬Ÿœ%»'çWçßËRç«Ë²“÷Ãü´žp–aOìŠ'RrYÉ7®ä×Ì&¯¸fÇ{~"é –µÊå.˜ÎËZû‡E}ßÇ:~Þ½Ÿ}¬ï÷,—j×ï÷ð<îæƒ·ùX0ñô‡û9¬œ%¦c ¦£ÿ·˜‘m0#wöÁv¾êܺÊj÷ì¾Ú˜ƒ·víf»üØûÌ®óÛúÉuìõ{9È‘¥Ž¾½£ôòoW&íÁát•ÕÞØŽ¯ã•«¼ì*Wyƒ?ŽU¾mÌÍÃõù¾Ý‚ûîÿ»ÿïñç«ßûqTy㫬¶ó“<Üß}~ÐW«iBÀgòÚ¨{B3¾iƒٖ؃§Öt±§‹3÷±gŒ=ÁJk=UõÐÛ†ùIâólRpôÒ¹§øUḩà|%ž·&O-˜Ÿ7aO64orü*‡_ÞcÀ&Ƕ<·çFìá)=7bÏ{«åÿ6êž-Î1f­ &æMxþ›ðü71˜ó¡ÚÓ µëéyAÏ Xý\ÈøUL+"-Õð=fÍ88sÌš©qÌÔܹsìÁ"œÚ8&Þ×Lº)¾–‰TXè!ÜxŽñ«>~ÌÐi‰=kðãíL‡¯eâÓkbºqnà Î)‹)´žáèNÕÄ,¢™±“ÂOpã9Æ1;®Ÿ¥ükù·1öøÕ’â˜Ǥ`5¦`,ÆnÍ>5‘ÇòÒ!¨{ºøU|c$R3•&‚¬šå.gXâzJ0(Øït÷µ/uw!þÆsôœƒ×ì)ÖuS,ä¦+½î‰÷µÞ×,&Dœuº¤ëž¸æ-ÞiÄb5ŒÕ„ç¿)8Œ÷U­Íù‰«1xj͉ÛrmÔ=[°#·85ùs#ö˜0¥h£n4¹º'ኦbo©‹cFܺ4Æ +)Z¤”Jp! F^:âÌ•b^u–6E;–ò2„Ó]†pŽ=ÁjœâWÒt¤<Çž9ö,Á—\âÌx²çF쉧íá9îtïmlÄ&X„¢#ï‹.W\i݃ÛrmÔ=mÓ¦ØgÎiÛÞù’x|²'Þ6†ØgÆC?7Jì‰kî«_™¶Þ×}ÎÞ&Ї>öÜÙ‘q‹©‹wÑ™~§.Þr·»æ>Žé-iÞWoQ&Eûœ†¸¯!®y0‘¾'ê¸qêì ©Ë!rÎÇêR-לîk´àrnÄ1!^È'{#Þ#‘ÍÞ ÊÞã½ï]¬Fü½›ƒŸˆÁ½G,ȹœÊ¥=Á©3qnL±'ÎÙÈ»¯°[—سŞ`P†ð^·?± ~büÄ&XÍù Ê ÊtçKBïÛ`5¶Á©ëpmÔ=]œ'¦}LÌ.8•Z¶kãÚ3,®pÐ场…x!Vþ¾Lö,Ø[{Œ%®ºGo^ž$-Ÿ“Åö²Ç1¥ n]sç9»-7±§=Á’ËÁ’ËÁ²4ʽ6êž6~ÕÆ¯Ú8¦½³Äž`ÿµÁþ«‘s·8OX]œ§‹ótqž.ÎÓÝÏ Á>î«ûêãÌ}\a÷ÕVX}`õÕVXý+؈}°‡@}ô!Ї@}îáÜÃ1~5ƯƸÂ1®p næÜÌ1¸™c¼÷)îbŠ»˜ã.–¸Â%¾%¾%~µÄ¯ÖøU‰3 U/ÑFí܈=³Ea«®7R¤eÞ†‚ÆÑ·®ÙbOdÆi‚E­ß­ß‘ŒmÎØ£·º6êž!Ć؃k|$IŽlž{n8&óŸ±ÇHæ_Û‘1hE~Œåõ1Ö×=ÕkãÚ3Çs0o:ä,¾mÄn‡#FG8ŽŽðãné8¤uσCúàÖ=¿Wéƒ1ú`ŒÚó`Œ>£Íß=c´¾‹/dŒ>ø¡~èµçÁ}ðCíyðCüкç7Ä­+.·lOýU‰¬/9¤%®çøtáĬ$v½I4ýþ5žâ_?ÆSü+žb÷p]LDr@Ûó}íêþõcW÷¯Ÿæ> ;ûëOå__ÁýãÔDÿ³ÇŒ‘‡ªiä‘mä!oF¶¼˜¼» æaƒØðô7<ý•¦Á j0ƒšƒ]Wºžç†çùZTºlžý\:öÆÞØ…]™ÄúZýg9°Ÿçq5Ôƒ}T{r<&E‹Iú¥yÞålÚºtÐt˜)<¦ŸÏ_™/òÀ¿™×½2Y†ŒíŒ¹6ԕ泬xƒ¼¡CÍ“w–ÔS1W†Â®™CÎÒï1aL½áÀž®+ûö¥«ÈïUVóÕýÞóÈË»:b">啯çÝßX›á³t<üyçëH²áY¿ÊË® WYí‰]™OyéÙÏòÐϘOrÆœ%&-æç\9WYmÌÖsÖóž1w¾}{ׇÉÂ3óIÞú·òÔ»^ßÓyÍî¼ôŸË#?:ßÌ×o73wý\^ø·òÀë¼ï˜Ÿmäm+;&©ïqƒ‰ ÿךÇýY^ö¯–g½<êoåMÇÔüêyÐá¯ÁÌ ææó¼æð_ä1ÿ`Þr÷»cÂ>å)¼ä˜ˆúǧ<ä_7ïøS^ð`:f6&¢öØÜó7œ'Üýi_Šï¡¬ñÿwæ +/8¦èáy½™'Üøåˆœy1žÍ‘¡.ÒÑ…,œ^r€™¬Üs÷IAÑÈ€ƒé“3賬‘wº±˜ÙLŽ·È.onŠ$_š‡üž9«ñï6/yä!7sü|òúþÙ­Ëϱb>LþoÝëž§œ/l8üÿ³yË1'ïyËÙ÷¼åìÏå-<嫼åÔFLÔSmÄT{;y½Þɂʻó’û~>šg\žØ´Ôl iq}‹l1‹…ØÅZ¤ñBÒß'L§<ᵿN«5#ýeŠ\{˜kIäEФQ›•Ä{žp«›ï³rµY¨ÞdÙ,þo˜÷[ä¿ç ·É~õyí`«…õUÞÕ—yÅ1»X{+Ïx¤a‰,,oæ—'sï)¯8æ#¦Üó¼â©.»dyR³4©WYíʬK5ó,{vÏžÙ5SJªó£«¬öÀØ{b;Žß×ëMu|u–˜™V—R¿óÿ:þ¸ÊË®ßóYVüwç/ޝî×¼ÿ¯Ïûž—Ü÷ùÓó’S?iò«ÉK^<ÿRç×m#OxÓÈ#.OxSýð-RÛÔÈœWòŽïlç[ü¿ö·­þöýyÉLÌÈK.9?XÛ=Ë;®ýx;ï¸<ã¼ÞÒà.Cí–!±1ý†ú½¾ÌK^Y>ËPëÛ2TïÙ¢¿[†Ú~.#æ H‚sú™«]ÇgYóx6¯yÊ>˖ݳãÿ ;˜œ5OøSÞóš·|š*þ´²¶<ëÒÞ^eµwväAÇ̬õáœ×óÏu¼½Ìûžó³®7<åEÇ\åYŸk}<Ëíÿ˜’/ò¦×ö䓼éò¢WW÷Yb~ºže”g}Ä 1AGÌQÌX‘­‹ÈÖÅ|þ,ý~Ùò´oÎ_ÇgW~öïšWò´c²šï/¸A‹HÖ³¬÷ÿÍò¸×ñÞb~ÿJ^÷z½_˜Çý˜¿V÷„yš0Oëû=¬g|ý<ïëó<ïÿýyÞß—§ýÈò²×ùôÙ³{ve ­¼í¿töüŽÜèO™ÐE³|š =Ž‘±iùá?Ín¦÷JnôÀz%7z0R_æFO&ôß@Þó@ŸÆ`nÆóyÊ„þ޼ç1iæ{rì¹ç=%Ëy‰=žsL\Bs!]K¾uÏå4¿g'Çñ¹D êžøÆžò•ǬÙâ<ô•|åñŸò•ÖS¾òÀºç+ÿP.ò[uºöÜ>_{¦ØLÀ—YŃ—"‹î§Ã9‘Uü)‡xüjc¶È¾E.ò`Ì¥}‰=[ìÁbû±¬â‘:êûWÌ*¿ºgßƒáø³f bäO-ø«èù<åõŽwü¦ÔY¯IBw>Éýý”é[ÒÔï÷LßžóS¦ï`Á‡}Êý}Ïômm╼ÞO9»#›üsv»|Ü/rm?eÖÎw¶`ìþ“óh{§Ã1;Ï·Ï£ýÈd]7¾U&ëÁŠé¹ÇhëÎ ì¼áˆ=G0øâ.Ƹ Ybo±§sÍ£ïg‡Ø3ÆïýÜpÍc0%Ç%ölÞà,ÈȾýJíGÖìkã‘5û+eÍþV™‘Ÿ3þøÑè"8ý1R§úyžlôœ\ôN2‘Ŧ³ÜØÕy–j=='7Õ—çz~ÁŸ‡BÆî9yˆlݯ•<ôC²Ð;×>ç<º/ö>îØ²ûDjýçÑÃàÿïtüz÷ý¾uþŸ{±¬MÞV[×oµøÿÉâ0{b׆úiñWX8™˜eœ,öÆbp]ü^ÆÙbð›‹Ãu1™íåbŸÅÏ‹}µ=ûìâÜg¯>]L‰É÷L†_LBCáæ1¶çC჉×dƒÿø—&þ¢³¨DŸ= :>-pe5 5)Õ‰bDÕ_eµ{vÏÙ#{fÏ약²wöÎ>Øð‰è%"z 5Pkßhí­ýYÂ'|¬õ¿ÊjÃOð‰ÖêÎ~‚Ÿágø~†Ÿágø~†O¤1iL~†Ÿágø¾Ñ ×áUV>j˜˜âFHñY¯‹g¹°þZ£?"„©º®ò²Q§R]´>ËÌÎìŽÝ±öÀ6Ú$b˜ˆþ¦Îý¢:§Îý9ݤÞýöî·w¿½ûíÝ/ÑÑD´2­L¨² U<±LDIQÙ„ šPý‘ˤ¾$Ô¿4Ààð‰.¦þ€?Ààð‰î¥þ=¡¢&TTšÖWYmø#ü¾ÑxBU$}–Þ÷è}Þ7êµÑÇUVÛù'ç7ZO¨„D¦.åŒËFõLDu“ÙCB…M¨„‰(kB}M³ï µ0í'£ý„j˜P ªaBM¨¥ Õ0¡&TÃDÄ5­¾gÔÃDT4¡²'Tñ´ú~W×{Ÿ-9ß}¶äxTÄDt4ÁL›ç³yÞ¨æ Õ<¡î&ÔÝ´{~»ç·»>¢¥i‡gv—ÌîneµÝÿîzQ#*{Ò¾'TÉTuÆñ*å%Žöòf÷ƽñEo|Ñ_ôÆVT *WYm¡¬Æt@®²Ú;{gløÆ½ñEo|Ñ_Piˆˆœ%|ã‹Þø¢7¾è/zã š# É‘³„o|Ñ_ôƽñEo|Ñ_ôƽñÒYÂ7¾è/zã‹Þø¢7¾è/î«ûÏVóúj¡p…`!£Z„ÆÞóB5´HP¨…Žo‘4€ÈñUV;š"‰À3ozxÏõOÖóÑFRgÞõçÞtlÙCûvpø¼ð–«ÿÜ1³¹õëXßò®Çÿßë]wü›Þuÿ¿{×ÙozןyÏ«¿ï,y§%räoyò®‡÷›è>MåwxÃyÏ;Þö7½áÎÞðÞïHŠ o’*l5Ôú,'öÄ^Ø {cWvÁ&Ôpj¸Õþç,áW¶Ë“·}rüäxÞû­ö™4ÂUV{dì™=³yë§8ÿÎÞÙ’$Hê iV–4ë,áÏðgø3|I6I¶þ †?×tb›áÏð%MØøˆRÛ¿À_àK²°I² ÉW–äë,á/ðø |I6I¶þ …¿Â_á¯ð%qØ$qØVø+ü>)ŠLŠ"o’>ÎÛƒ¿Áßàoð7ø’Dl’DHR–%);Køü þ_R IWò¶Ãßáïðwø;ü>­³MŠm‡¿Ãßáïðwø;|I+$IË[_àøwö‰úUÔ¯ì”`£8þÃl”Ê.êxý,[vËîÙ={dì™=³Wv„BîìÀ ) ÃÐÃïá÷ð{ø=ü~¿‡ßÃïá÷ð%uzø=ü~€?ÀàðøØ1À?Ààðøü;ÛÞo‚7Á›àMð&xØ?Ão‚‡ 4Lð$¦Às¿’‚ 3üþ †?ßáÏðgø3üþ ÿÎ^ªçë|÷,{¶PWI1FI1Æ:ß½Êjc7å8ßÎÆn’DƒÔÃYÂkáµðZx’€Œ-¼^ ¯…×ÂkáµðÚÀÃÆR_FõeT_FõeT_FõeT_FõeT_FõEß«¬6|õeT_FõeT_H[œ%|õeT_œ%|õeT_FõeT_FõeT_FõeT_¤XFõeT_FõeT_FõeT_FõE¸ÛYÂW_FõeT_$I[$I»Xpß5¯°áF¡ÑBuG¡ºcõÏ_eµý^™q 6ëWÿFõoTÿFõoTÿžØwÎ/T|œ$͹³ñœ_ýÕ¯Q}Õ§Q}Õ§Q}Õ§1êÓìyg÷3»ŸÞo·¸ŸÅý,ðø üþ_(ó¸:~uüÏÅ&|ÁŒ0Ô'öàK®àö‚+˜BVº n^Œ¾—ìAs“½›‚+8ß9~q̇x€!>¿w%˜xÖA?åøA¿sózk={?£/ØŒ}Èe÷{œ‡vÊ>˜ÁíCþ^k¶q§Ï`Ù=ñ„õWBÔúGXÖG”õrâ?Æú³Žó㬿9öÄbô«<À¿¼Æü—ñÿ%$L«ÛIàáWT­n®'EÑP¥ÀùL±‰ø*/û™¢æg-¿PÁò®0É­[ÐÔî j?T»+f5Å¥gŠJ“eáɲðs…¢üu(í9¾Å%>˜ø^ªMê9rÉ}©âÍ6fZž)²¼­€Š'o) ¬Õ¾+žTÅ’'…“Úm4Õ-q•7»“›-HŠw’PcXçÿÑM~ûzµoèÓÒX˜ÈÀüVôj9}Z³Ï/ӧ͂Ʋ ±—úž¿.=ÏK·ó»èwš¾©×y°ßÒëôÿŸY¯³©ËPgYg§/õ;ë¢å“~''Éçô;k}{Òï|®×É©b±ê®¿9±HJó÷¢ÇùBsdeýM‹ü‹Eþ_^³>·õ8ëñ_]Óõ}3½Íß»žfèe±ÚÄ©PWǤ¢‡žfÝó3èiÆyzšÿñÐÓ¬{~’žæC+³yheÆž_T+󷨌ùut0¿êåCÙ°n<” ûʆ¯ånýã¿}Ì/ùo!mHûa£õ°Ñz ›Ä¦[r ­Ú"Ç=#p}ÕÇÌŽôͤ¡ï!+ô]ÉNFó»R§ÿ¥4÷âAüÛkâß?ö þ=T™DE¾Ðx|KÃÑ‚²À›,ðÒÄkhâ%Õ†jHC5¤¡ÒxÒ'ÝP á°K ÕQWyÙ¬)Þ$­¬6ü?ÁOðü#¡sœã6ü?Áç`N~†O3“¦_CÓ¯¡é×654ýš~ M¿«¬6ü ?ÃÏð©$‰Ä!‘Zø-ü~ ŸSTD#*â,}é­/F”D“¨bÐl’ï%uT[:**•NÍâIT3@êÜ/‡|êÜoç~9|Da4F™WYm÷Û»ßÞýJœz÷‹n”8̇yêáûÞdâÀM¸‰7q°¥þ€?Ààðøüþ€?ÀçI i€Oó4ð9” ºÏ>³1xc~–ð©B$ª‰*D¢ ‘¨B$¬Ä% ¦s–Î/áqš|OT"ÒªJ¾í„À‘f¿Ÿ=Ø4‡Š“ïmq¿‹û]\Ïâz8dÓâ|\‰ŠC¢â¨ ¤Åóå°MTFâðJ ‰JC¢ÒV×{׬ U%×Ã!–6Ço®¡#QUH›ç½¹ßÍýRUHT:\¢ªT‚JBPITU…DU!QUHTU…Ä›¢=çÀ½•Õö¼‹ç]Ü:^*ž7ºÜ9Ðd{>Åý"°$ô½„¾—jú^â0N ý.ðxT\NBÇK‡ó#ä¤Ãùë‚jcæx•զꣿÊú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿Êú«¬¿ÊT³þ'ë2À¬¿Éú›¬¿É蓙ʇlÃ!{•Õv}ú—¬ÉÝó„ôT“´¯­öõIcšfô×Ò”¦šÓRÍy¡1ÍAßj,6-•¶–*[k|ÖRak©°µTØZúv‡¯þ·ê«þ·ê«þ·ê«þ·ê«þ·ê«þ·ê«þ·ê«þ·ê«þ·AßUß[õ=4µ[*)-‚R«¾·¡Š’Cµ©^§îôÏþ¹Ó?wúçNÿÜéŸ;ýs§îôÏþ¹Ó?wúçNÿÜéŸ;ßOçûé|?ï§Ó?wúçÎ÷Ôùž:ýs7ÂGhéЗ;ª‰ÕÄŽjb7Ÿà#ì…yçûë||gé÷“ßS ë„:¡ŽŠb‡€Òé¿;ýw‡`ÓÍ®_Þ!ÜtVþÎpCfø*/±ÓßnhŸ%|ý}§¿§@|–ðš:—A«ÓÿÓ'nÈ_åe££w0L‡°ØQiì,…5\eµát®‚kg¼Ð/t+ü¾ùV‡ßmT„`D4íkv%»³¤"Dõ±3síÌ\;ãn %xjö¤£úØQ}ì´/ÕÇÎ|°ÓÞtÚ›N{Óio:íM§½é´7ö¦ÓÞtÚ›N{Óio:íM§½é´7ö¦ÓÞtÚá!WYmøÚ›N{Óio:„ÑŽ dgfß!¬uÚ£N{ÔtT‰Ñ˯²ÚðµOñH*sÆ#ñïÍUV;³3»c#<ôÆ#½ñHo<ÒPÉ>˽± ¾ñHo<ÒôÆ#½ñí†ÄöUV¾ñHo<ÒôÆ#¹Á:WyÙÆ#½ñHo<ÒôÆ#½ñHo<ÒôÆ#½ñHŸ#ç|ã‘Þx¤7éGžådøÉ9î««ÜF¥±–ÙX¼k¬Ý5üêû¼ÊjO쉽°CÊj GCAˆ*e>^ªÂíP¸J‚Ÿà‹;*ÂŽ QAð* ¾ð¯’à'øÖ‹à«‚ÐTxÛJ†/„ê¾ëȱŒœás#¾ÝÂIRøH `¾R2ü ßbáûDÐLšé¾$+Ò´Õ‹ «Â1ZZø¥…ÏÕ\ø2 WfiáS“G½ÊjÃ¥l¾‘ ü' ÿ9KøÜs¡°tð;ø|ÁxEŒXá[(\ E(Ü}Á;Ö»c¹[@[ñýÅ‚ Xº Â_éá÷ð{øÜ&…² ðø±ä+Þ±à=ÀGÈ,üþ?–Ãc5¡¯ ô:ø WYmø±xkçvWYmøÂ¡Ê„?Â…öXgeöXeŸà „DNÀ ø,ásR+ÉÁ !8!ßü8løªAµð•þ †?ßáKóP8Ù‹ö¬ IŠœeñûÅï×/D±Ò]8KŒ¯²Ú®_~ˆ‚pX8 ß*rB@¾ÊjçZS„•–>lYá#0–¾•÷bå½ðü„Y„櫬6|±“…×´„; N„댲Áßàoð­ô+ýeƒ¿Áçu,è&e‡¿Ãßáïð©ìÞÂ?[vø¼é…3Aû*« 7ÑÝ;È_ÜÝǾ;¬Øð |D"\·”pg…7+Uá§‚À?àS *<-ã£P *TƒÊŸêbá2.|ŸÂ³‚àt–ð*Gú߃ âËHl.àCq ¤¿Ì‰ôÁHœ†‡ö+¾ïCÌôá{;¨‚ÞÿSN#ö=§»ÀÞ‘ÃheSIªã‹Ì¿òís!Ë*‘e…x%‡ü{Î"ª3ÏsEŽ¢Ú?¥D•˜* Âñ6P¥¨Ò Tiª4UšÑùFç«ýÍYR½©ÞDN¤Éñ“ã'ÇS™ÚBej¢ò4Q‘š¨HMT¤&*R©Iøí$w <÷/\WPt•Õ†?ßá#\o3üþ †?Ãpàþ a{[à/ðø üþÁ{Cð°”,]eµá/ðøáBø¶Â_á¯ðWø+ü>ù†@¾­ðWø+üþ …pNrá*« ƒ¿ÁßàoðÔ7õmƒ¿Áßàoð7ø|„ö ¡}Ûáïðwø;üþŸkC€ßvø;üþ‡¿Ãßá—ðúÃ/ð ü{Ž0õ«¨_…êÓ=gX%ôÞs€ÕñöYfvü¿cwì=°'öÄF`¯ãí³Þ ïÚ;„ö~¿‡ßÃïá÷ð{ø=ü~¿‡Odî=ôð{ø=|„ïa€?Ààðøüþ€?Ààðø‘cm‚‡P?LðÞ‡ Þo‚'\~.O>ã*« o <÷Kf£m˜áÏðgø3üþ †?ßáÏðgª7‘3NÁXû¯«¬öÀØÂýôGcŽóQ¹ÉTn2•õ±…×ÂkáµðZx-¼^ ¯…×ÂkáµðZx-<õeT_FõeT_FõeT_FõeT_FõeT_FõeT_FõeT_Fõ…†ÉBÂä*« _}Õ—Q}Õ—Q}Õ—Q}Õ—Q}Õ—Q}Õ—Q}Ár¾ÊjGŽ@øê˨¾Œê˨¾Œê˨¾Œê˨¾Œê‹€³EÀÙ"OÛ2ŽT‚F*A#•¢‘JÑH¥ht¼ú6N!7ázÕ·Q}Õ·Q}Õ·§‡ÎOÕlœBÉùÕ§Q}Õ§QýÕŸQýÕŸQý£þÏg÷?»ÿÙýx ¼Þâ~÷³À_à/ðø ü9ý~õûÚ?ϱøiNŠϿȩøIÅ5TˆîS¨YXÚ;#ÿ+é&†Dõ‡óãÛfY¤ daÿ&˜™-=þ䜊¦<ß §¢Å½Ÿâ —8O¨Fõ{ÜZî>4‘w1‡ºR7¡“4„Nµ¿W³5–ÐmŠÜŒc •¦{&ÆÐzÊ»hÁå“,‹Û]oiy…½÷ﯰ÷þñ¿þ·ïþqùßýÛP÷þs/cr‰KiÚÈC¡›ä3àYî…n÷ò…ôò…ô›ÿËÒc²ôvïcw?{Rõü»ûÙÝÏî~v÷³Ë§¹{þ»ûÙÝÏîùïîgw};¦ÝŽ9³ódïÚ#¡ÝÐî³$¼k?äiäix’ž¡FŒBÃÓÈ?ÐÈ?ÐX¹nähäh¬D7VŽzþ•dz¬Ç¤sùTùTéÇŸ%)6Ž/lR¤sÌÍS‰^üYVf½ø³t>×Gïý*oý\#ŸJ£Ïot•Άg¨á jx‚žŸF¤CCú€ÐÜ-4±Ú<'ЬfŠ˜A!z³ÈCZóÔZ9%µ•BaÑL+E_næ‘车‘§h”ßcäi÷†ØÙo’Og’?g2(›JDÜá, M¨øYV{‘/g¡÷¸È§H9ƒ‹ü )…§dá¹Xï1D¤ Hµoi•ÿdu¨½J«ØU>ÕÊþ*_ÂÆs» å±’”¬%+Gi³òoå&Y¹IVnβc&”_CÚyÒ÷È< Z¹jŽX9¢ÿ]™¢y'LHú'ïVšü¾mêÌü,Ùõûn›9V:BÐJÂh%a$h&3Ћ+GHhHTÏþUV;¤ H Ðw6ÞXÄ»ž¥óÕïo¸µˆ~]&x³•ˆ™žóLy¦_,Êu1žXæ*u´ÌBõç*ty•7{¡MÚlYè1/ô˜3{ýý²˜¹.žïq!M¶&;ËŽ=²I¬¤VÒéô@q~ÒËAŠàê_Ç_gI/·F,Š/´¾2ÌŒC~«Sáˆ|O‘À5E×Ú£uãÚƒþ™BN4Å0*Å8*…æÜmãÎ)ÙbO„›Cqž‰^BÚh)q¾µ»Ò-Þç9§¯qŒfâj?ëžW%²x Þµ'Åy$?7ÚÃ#TW{‘Rq¦8sZãs¨„Þ~ÛˆP]„”#¼8ïPË'˜"¤þܸ‡½úUÛF@-¢Åy®°xnD@­ÀsãÇæKí!¶C`¡ œ5Æõè‹RÏ0”‰S/ÝPê͸ϧÑGàr¯ÏHƒN Y¯¾EĺæA0úÙa Þ¥Ü~rD(ª¶s }ÛÒzô¡œ„‰0:Ìáàû_¥Ð¸m˜½J~Û˜c€ãÞ…ˆœSì™âWrIí)4†e·N»t¹· sç©ßµ0· g^<ùÝ$¡nÔ=×FÝ µK¬™,º®}‰ÜOS¸Ñ§:º+¨V®¼Ï/fåÿøÚ¤|ûPHÝ?n[(ÄinžOMÔPÜŸ&Š42i¢Í(ês÷l"9…&gLcbè÷oN ïÙÄpq}OÁ˜øÑˆ´ð4Q‹‰™ÿ£œ¾œ˜…f¤‰Ñ}"fb„ÒOÈà*«ýÖDÌùLhYÈX-d|~âå|/&^&F1ñrpŸxyþO'%^.¾O&N#ûùÄ©¾ÿç§Ýóz9Q¢‘øæD‰¦âó‰Ò‹‰QL„h ~fâór"QˆÞ'(yœ¯²Ú!bB¤‰ƒãï °Ÿ›(‘h¦˜(„àH¨‹¼5Q ‡2dIø,i¡|Ž(Ÿ# Ï,ñ䌢8 s9°OlÇ»ßYP(Ÿú=ÛDÀý/ÂÄÚ ‘ÅóX´Ð‹zµ®û4ðÍ·žmàoâAs5ÑJ4†ž& &^/'ŽGùZ)Œ¯Ú~¨çÄ¡ÞÏ*Ñ×ZBCŽnÊÏŠò³š¼˜hx¾[tËÑýdbqýþà_çþ'mi‰S>?ð6pæ¢zXHßÖ¡ñEl¥áU): MãûÀ{‘x…Æð²H¼²pù-—¼hÓøâ"º¼ïeÿ/Ö/ÎIÜÎÅ)’{_gIsëÅÀÚðè“ah{rì‰Aç{^†Þ÷Œ±'Teb°(ܹŽ5¿‹ºç>èŒW’yñiú4èD N9”Ur(«äPVɾ«ÃýsV÷õÉÀ4†¡†éçX“‚ÍW˜> :ã‰É ^7ìYc;íBQGɆª±ç>TE#;7Jìqž§¡*êtڪƠ|ˆ§1´ñ+üÎkÞ8&”g ðµqí Ïs#Åž!ö¼5Àýtð:ÄžO¯/yÛk£¼ò±Q^‰4WŸØ óãlIÆH±8“ÉË´—í¥Q9KêâËë.¯]÷÷»îïÃm4|Îm$-öÃmtÙ_ßmDÿî6ZØÜ>áF2úœöfæ.üßëV¢ÿÜ­äý=¹•œ?ÜHoº¸…ž»\ï·w9ÿs·‘ûyé6‚ïþ>ï6¢0ÿÂmD‘Þhxu¿On$Šö/ÜFµ¾}Ömdö°š]­®7ÜDOn! îw·û«¹…(¸¿p ìzÿOn!çÛ×û¦ÈìÃó{rQ`·Ïs7Ïs·Ž€Å·Ü:¿9·M¸iôJëûÝ6V9ÛXÒ ©J³/]wmÍ6Ž7ÙÜ[nž7Ý8¡Ù ë¡óèüáæ±FõÍÝ:FÒ²eÅtP„M#)ÆŸîÊì‘mvéúg£¬Ùóé&ŠÙäÊ·Q½ÞE×âý¼p#y?‹aæ" k1ˆŠ%¸ÅºïçÝNÜDw··R¸Ú˜š-úž´§I{zÎ:ÍþÈ½í¦ŠÙ§ã¥[“ã,g¶ß?wcYD_D¬hQ+7·ÁYÖû]C¡ÜTb3oØÜÏçÝ`õykÿ~Ä-æøŸêC¸n¤Ám¤Ámªá+¸Íªù›n3ŠÓßÞmVg³î´}ÔMæÿw7…îp“­1»÷ûU>¯Ú.ÆOo»Ñ|—–[ ÁW¡w¸Ù(fKé>~7›ó—È7Vï÷ÉÍV¯W€Eý¹Êànûî÷îv3£uÎw»Å1±NÑÄ,·‰Ùû»q¡c›tØïtÍAO1ÇN1ŸÍ5ޏ6Tt5Þ׆=Cìyᾓ"4åÚ»¯8ôœù‡^Ç„+ì}Ž8X]¬Qبö¸Â.Öƒ:QœŸ¸ïÄ•~ê¾ gž-õqžu蹞Áunì±ç~Œó¼âô[BEw‰_-ñ«Xýâ ‡X/{ÅUH¹5‰_¸mô±gŒ=_âN|—ó}øÉyø÷à*üþ•Õ˜ú÷ŸÂOhe¢±2ј 4¤gRtš«¬öÆ®3¡@êžö,«=šYJúṲ́f+?2S6rQ43é“ÙïÇË-qµ—íøÕÿWÿ_IÑFnŒÄš•´ÊæøÍñ2•6Û¹ÄüßùwÇïVvÿßýŸôAC¥·J}–fV¤FŽÐfõÐèÇänh'·5ôól{ê'÷ãMÑù²GÝÔh$9ªV2žMqµ­¥ž7Í>¼YhvÃ/±†èz׳’vXͼV „\sis?›ûÙ¿Õãs3) UmêHí,ý_n¦âgR›Y]ΪrNþOj+KñœIïäÎÈt¬v¾%îþ‡kÄ)”ï0’¬ÑWyÙY.œšÀ¾Õɶf¢mª¡)gY3Ã’²;Ëz<é·³¬#×\W–Î’=9~rüêÿkä®12­ç[~¹>—I®™ ÇYÊÕ27lÿŸãÿF¾êÓ²…Z$_ý­ÿ?ŽúýVÎ’p&ÅœâNä*šD/"8oƒ(#¥|ØÓFF„6Gž‰.\¶]ølg\uÏÇì¤qºÐÊé̽®4¤ßÕ £©‰2õ¹{–p×.±çàå÷ftrn¸fÃî™AÓEw¨{"7ÆL+ál±b,Ïgé"³}öfáEh–Xpˆ>¢áPKѲÝR,¸¯5îkcOÜ×jâßDî¬f£=pnØê(MȅܲvÔÞ¹"×Â~2íHJ1KásJ‘¬ç¹Q"Â#·8OŽóDHйaÏ™†>ö„æþ ÃXÃ4Z‘H‘‡#EŽáP™ Þ9´bŒal0Dó5Dûun¬öðtï­_ííhÏH㜞FÍ=n„Dôã‰~Þ_ÿÓkÝõþ†ó俜ɟ¿/×ïöÛßÿñçþó¿½øù_>ä{ù§¿DŸ_ëP2máWÜé# æóìÍE÷*þ³×ýâ¿–-þŸ>–@úŸ"4¹æ/=ü“#ÝÇ$ÏÆ ;oDŒ9òb1†x>Fx>˜É¯èã?Þ÷ä.¦ù«öÁߺO}Ög¾Ú‡EÊ͟؇=úžŸÐ÷“âE/"¾ü­ÿòÃÖÿ=íø—·Ú¯e{øÓ«³¬OÚì?]þýûíE“ý§‘9ÿdNÙ¤nTGYÆrөνê\£×RWjs‡Œ$‡„$ÇQ•/ÁŸ^£+üé­žë3÷±G×SÛ=^ ÆªnÓ“‰íÉÄ¢ƒ4Á¹§ÐÁø±J›¬Òæ†,PC¨T¯ÅUV{a×v¬^–ó%“ÍËdóÚ&É£YƒŽ[sã–ת%Óx•õA':W»VšƒŒÝQ/¢z£Æ9_åË¿¿öà?ÆùSðDèÿ6èúì+ÝwÊ˦¿ßÐß?…dáƒöaqiR>ÐÛiê$3[˜<;–¢ƒAD¡$¡qnk‚Å«¬öÊ®/FŽª«¼:zH#=¤‘ÒHi¤‡4V²æYìèª{b¬ CëZfæž;Ëž]?$î¸Ì—ÇJ÷¸Êj»žâzèÇŒôcFú1#ý˜‘ûc¬Ík– ó*«=°öÄžØ {aoì]ØõùÎô–fzK3½¥™ÞÒLoi¦·4Ó[šé-Íô–fzKsÕóÏ&•g¹²ëýÎ:ø¹vð¹TòãUV»g«¨YEÍ*jý>¯òªh wOöÊ^Ù;;&õØ6ÜGɵ.rµMÕ k5giL›Œi¼/ÁKðrg]ð<£¯òªèIÅO*~;ô=úž}ÏCCt ô=úž}Ï£Äù%èÔPô=úž}σ¾çAÏó çyÐÓ<èiô4zš=̓žæÙ@Í*‹­†KÂOúqý¸ã,TwïY¶ìö•†î5bÙŸŽ5tÇS*5xMd‰" çÅž%F¡¸F`ò’KãÃm|¸·ñá6z&ŽßÙ>|ç/)*Bòa§WÄñÚƒøóÇÄŸïëºõA,Äbrã{ekÁ“1EŠ1†W—…3EáLQ8SÎ…ÏR nâø½y0lxrWùòÁüùµó±¹ÜŸb.—ú„È5…J× Ò59þ¿°å¢¢å,РAôn½ŸPÓè+Σ³³õ{¹}$ß¾Êjlø´Ý›5lçC}jiï·&‹í$WAP'åêQ{¹qúPä° Ï½t–-»eÓºF­êÿ§E>Ô7}–¨”´¾‡ZšUq¨mçY6ª¥ÜÃàxZï*•,ng‰J)ƒÉmcrw–õþ'¹’&¹’f¹æ:½h$·¿Ê›Íu•7{7YßÝßm”üò²=OI÷šƒ6úA«üHaU õj2yç8Üß!7α‡9“ú&æ†&1«iiØÆC,z™»¡žžS¦:³¤»ãåaO승#Ý®äæIró4ÓŽž;#´·οÅzìÿÏÞû-IŽi¾÷ýiv^A‚¼Ô´ÖŽtV3«=­ÕhtS’`UNWe–eUIê·_ýç`ɨÌÈúÓÕÝq‘:“¤“ ’Ü?ÿ¾OP —s¨JÒ3Eȱ „áªÌ-6³ÞaPè‹ä>F9Äã}¹3|YxŸƒxG!£È-shÏå–ã T#Ϧ€²Ô6ÿ¯¶Ôp NpuNpNp !˜3·òeäË'Ij»ƒ{=·=6“áZwp¥;ƹåKË—Ám>Ámž[9¿ÉÀMft’Zc#–nK—ïAnì;a]°lo9>âô“clÈXwb¬;5øç|'ù~ç¶ï4~ \%I€ÏTÀªF Ì©`zݰMÝhЭÖ0œ–üu–m:Uï˜Ó`ŽJŸG¸éb‚µK9,êÏÚëqúN×tZФ;*o–Õ˜^·Ñ£e5M·hð8ÀglЀÚ@‘‘Õt ‚o² kF|Y•T¶£nS 6 8r *q„üæ…y¹:/Ìkj-ªG#+5zÎA90DZ‡„ÑaxH„d¿!õ@ŽÔ¬–ØôȾ7ZfØôtWM),xZæ…Ú1R»™úÑçnðÝóFŸï4ƒÐ)Â!áS3LgpaF4A/ùØ6è &M§Ã|æ3D¼˜¸Î­tnt^Wøq~¸h.ÚUÂr7·b˜aþS1q¯œfd{ˆ*D•¢JQ¥ƒ¨ÒATé ¶sÎ2ÐY‚£ž[±=¶L;Â@àf p“Ü$ Üp>‰ó!Sç“8ŸÄù$Î'HØ›ªËÜÖØ5vÀØJÈ”t-’–@ ÷·ãþvxšÛÙ–º§¹ÿdRºÿþ;üwø‡(¹5pCàˆLP78štÆ´Î1­ƒ8¡‡PŠC(Å!”âJq"ˆ·ø÷üß#G"!©¹m®¤‚³¤{*äS*‚¯½tåH¯Éû¡HçéÕ=þ½çÿÈi@âì Ì£4Ò_¤Â £0M1 ›H?µšnÒô‘ŽRt¢é#¹?T_åVîÏ(§'æ4·2Š‚[ÇÁ­ãzá–qpG¸žtÛ@5ÒÀ¨¹,—:B !ùþ¸‰ëz”?³Ø“¦Ÿ••8FÊÂ(Æ1Š©µT¤›*F=骎ŠL +~Ï ùò ¹òÊÊû^ÙÿKuk…¼t…Ür…MT¯å–Q£äá&äá&äàr˨«!ýeIÈï[FQFC„4¨>‚»hng›ôÝDún"ý6‘~›H¿Mš~KlŸ OŒêÿçz&­]²UÁ7)èNQH`¶ ƒ®±È*ôÜv`ެbk¾Ï XAÚükÒ0Š"§â õMpåY=µ'ói´³éËÏd¾'°Ü£â# ‡5£r¾ŒFë54"åtX€–ÞÂT”´ÖC«6Ðg:,è6ÜÑF­"Q2{DäíèԲ߇…Z×p>Zs4VTÂŽ áyAÖÐÏ ²fÒ5ùÇ`9r°Yãøó‚¬‘n@dM£k]Ór7‚RÎ¥íz¥aànê’FÍŒ:"c¥!*ŒF%€cÐ:êãF8Ú Z£Â‚EY-QÙ:éo:1ºÏ •®‘Yn^ˆº&ª@š@ü Œ!Ì ktÔaF]ÃÓ2¡–`䙬ú² ÞmÐ5R[š(ÞÇÉéqwcr^×À¶3ñ‘=,p¥úlLuP¶ :l‘+­‘Y˜—SÎ9/0ú¢¤æ°À^A¬õåŠy‰¾IÓ‰Ö¼ WÑ‚ œZ=çV…âÚF×´ºM§kHèL§£:|êÔ;€–¼0èša'ÁûÃÞDòyX¹†5Æl5—,s=˜aZ˜dÊ\çtn³‹Àcxn.‚4<õë¹Åz,¾«æW‡¾hÈÒW Oë‹J_Aø<ÕKß±¹ï{à¾~|ÞÿQgñŠ){dR^&ÙL’#yíHý‘IõWž4éIÏzÐwñ i3Z z„$0:‰OHE§4ÍüͣóãÞ£óæyÎÅ·>1Þóh;0ŸDŽÏ"Çg‘ã³ÈñYH8^ >·2ߪóM®¿b>UI½„«˜ïU°CÔRR<·³-]ùÜζ¤ts+þ`{pÂ9‘3|lþIõŽ£Fîâùhd •)%W¬ƒv3ÿxl~ñèüáÑùQZa Ì-p=F ¿Ä1èj¤¸ùü¼Ùûü<öC„횀\•x0péæ{ùÞôtm°·§ýìñRJ¼ó|<îa¶j|ô×ýÄøçgŒ'üâñDFìû©ñD·ø˜%Hü)÷#–þ„þù\9ÿÈùGüEü ذYâuvä~é²#þ‰Ç1‘ÚÆ7­öGŽþhï ”å® ®Û­“Wðb~j|´F®¢SÄÒÕÈíÖ2Þp Ûásf½×ñU™ë:¦r®Õþ»wØdõ{Ê/`üÍÆSéñÓóñP p’…>ãœ7GñÎ)1gL:gÔx"Yâœÿ_üöã‹_,V÷[ŒÌñÅÏœk¬î\¬n÷÷g >þΨ›ð¼8|Ó –¡¶Ò"ùm‘üv<œ$‘Iç(itÆQÀBŸHѬ£h¶bÿ¹Ý\ãß÷.ñyt /t «ÓlwÜîqüýíóü¾]ùí–Û³ñûvÏïóŽ/ÇÏô³~ÊϸPú÷øþU¾²ß§‡Û¤ñæÏ÷oÓÃû§–çõžVúÐ^LúÒ+jK* ÜÌ\7´³M­KE°º¢Öål «ÔRPÇ[èª|1.•çÆj+þ_eZ¬2%¬çøÑŠï4Ôݦ–*5âÞ‡¹›‰Že¢a™hP@¾꘨‡´À!-oó2cbät{&:›Š‰ µ'¶Ò‰ûŸ üEÎ72ñÓÀ]Ïÿ{Žß3±$f{ŽÏÄH÷ÜÎvâz”m{î«uØO ôÉñ*{çÃóé@åå÷Ah;·þT–À ×SƒÔeCëŸÛˆÝcËý¯™HÖLìjõÇõ×2Î-Hà¿›À#åŸ ý†çJÅÜ:l9>dx¹­°GìUàr˜|~ 8i.œÖz<TXÕb¬sŸˆ\ëk¢^µÌ¿¤=Cn•)™XÃÀX)9óGþT}zÊâ¾€>}­ ñQuåUE> ºÝVQfvXÐ+Tµ‰Ê°¼ ¥°‡§k¼®ñº&èš k:ÖTºW¥{UºMU¶étM¯kzÖ@À™Ô—×ãx=Ž×ãx=Ž/Çu^W­×Uë‘k=ÃZ¯«V_µúªÕW­¾jõU«¯Z} àú°0éõÞ¨÷F½7ê½Qïz'ä˜ÖÝ+è^AÏ0èÌL‰bɤô:‰XÌaA¯¢Õ«èô*¢žaÔg#ê³u¯¨{õº×Gô‡ÑÒÎèëw¯ß¾Š}Êì3c°#eÛb­÷§û¦‡!¾K­lZŒõÁþÏÛ·O=XÙ´ëƒ}Ÿÿ9>kœ9ïYš üЧ05Eè vÀŽGìž"öž:£žÿ÷üŸ¢oƒ>…A}Ï04ÒñËö $Œ¥èÜ¢¯ã$[’í%9/ÇwÒQ+™vn%Py¦ž)‹JæÄJµ[¶2P4„4‹ŠŒE…EÕ¢'„R“P%á—¹›¢yŠî+ɘæ°”e`íÑñÊLD‘žG~IÍïQ·Ê²E 5?ñ”¡hÙ0”ßUlÿܶذk¿ILE¿æ“ÕøI‹Í<b²‰¸Ñäù?¥…“øØM|ë&%Ôì þÀw‚KÈ!d!¶zb£ÿaÉèÌílC…= lOÕ K‘|n‰‘ŒüŸl夳 ¾7Á6MlO]z s+6ÓHô`Ýu€/>ÃÄúÙ‰u2 ËD‚‰EÚÛ‰ûCÇa)Ú. ж-€ebA†È3qP’Ç &&y&šÑ@ïÇ d˜¦ƒ½s¼ôÀDlHZ/÷uDÇóìF2\#®‘ ×(Ì`sûÝ¡ø[FJ’ˆHØ 6¢Ï!AÞ¿ÜöØ‚ª DÔCd{ô BÏöŠÆxǾVp êƒ ú(¥¡ö:‘É­ ¼{Éæ–¢iGQ3?u_S­¤ZÔì•öahõ‚îžJºØôàéoùlØvÔ¡òu€ý%Ø üyA·6cl`å›IרHŠªA¯Bu‚ÆPéÏ9>Í#5°y!èš–LA€›r Q×(Ÿ}øÃàuÆÏKDÁódµPîü£{»(œ‡&;£ºÃú|ywÿû×ç†Oz–C0ü©<ÃGœ«pò(çq³Â¹Ãðæbì!|wþ»G±ˆœw€¨|aˆ«)–° _t8²*È[qö,ò‡pô ßWC*ÿ¹åk†§\O#¯èV.ÑÂñc‘CD<›8ÈrŠÊù£rŠgä…ÏmngûÙrŠr= ŸûE^ñ[‘KD~­C~ð*Ÿx•Oû*Ÿ(öZ>Q¶¾|"ûsýW9Å/+§h@ßž¼"ÛÃXs^nQî_‹x} ŸÍ¯^~ó(y©#9Fñ÷›—c„} <òÅåÎ=˜zM0=Pª}ùÆ/_Ї|¼Gì£ Ö oLx„ñþÂÙG8„ñ¾c<¿ä‘òÔäÕ. ÷”<³ÊS’×ä÷ÛÊUR€0âïùJ—ß 7Xÿ°x-oYÁ±WñÿŠÚ  €d‘¿¤vh‚FGîw„ß8Âo=á ?>ÀìÜζÊgJ®a+ŸôÿP„ïû¬œf©]ÒZ%Â%Ð8ÅÐn¡vi ¿€ñ/Ç9À)'á"Ï‰Üæg—ç”óÜß/.×)ïÿÜÎöF¾“ó8þZγԪÉñ?UÞs]ë¶‘û$—,´J§òŸ3wâ9æP„ö©†öi‚¶i‚I"VGœˆÊyH¼pî{¬ö.`ìŽí;üÖæMÓD^]…H~Ëò¥†Îk^˜×\Mÿu4eÍ·%hÚ{]ÃLáXâ”â£Äi?æÏ Ñ÷DO äü+zº®9>¨ŸòÝY#ï¼ØæãR©§‘å½èõ«x÷2½{ñŸ¯ÒÝxfò~ÿXE?Œxó:.OA 8·b;l‡í±=vƒÝ`“·ÀôåÜŠMz_ƃ¹MØø'þk‘U°ÿpžSàf(p3¸Í­Øø·ø§@ÐO¶Ä“-ñd âæv¶A[PÄÖáßá’Ò«†ôª!½jH¯Ò«†ôêÜŠ8ý)¨3#2's+6þ+ü¢/1h%έØv‡Ýc÷Ø#öˆ=a·ày±Rb¬Œ œ¿†tïÜŠ°6×K|œÀ¹›ë%~F^hnÅæzk®·æzk®—ø¨%ikî7‚yÎ|ËónÑ@°h Xò5–| éé¹ÿ þáô§'·øoðßà¿Á?¶Áƒÿÿ þü¿Ö‚`‹`ŸE? ŠeU0Ì-þþð³ТH=·bó{g±ÄkùvK~ˆt|n9>ñAøTš.·œÇóÑñ|tìß±Çýè¸þÿÏ[äz!I¡ ÓPÐ9·bs<4*À%Š›rËñÁ±Sëd,ù4K|Ö" h+YàJ–üš%¿¶À8ù,K~À’°ä”å–ûCü‚Sc®—b;r>#÷oäþœ8z ŽÞ‚÷àð-¡È´ ¸ëÜrýú=e÷›øºMÜïÄõ—¢ÎinÅæù"_fÉ—ÙÄó¸_‰û•ðŸðiEpÜ·Ap/·ø£`Ü’/³äËìÄñ'Ž?q| Ô©d›[±áf¡¿rôWŽþÊÑ_9ú+Gåè¯ý•£¿rôWŽþÊÑ_9ú+ªÀæVlüÓ_9ú+%œuôWŽþÊÑ_9ú+Gåè¯ý•£¿rôWŒ,çVlüÓ_9ú+Gåè¯ý•£¿rôW Î­Øø§¿rôWŽþÊÑ_9ú+Gåè¯ùKGÿãèu+Žþ†BÄÜVØœŸçüÈO9úGÿâè_ý‹£qô/ ÜÏ`;lêV ü8ßç‚ûAòT‘?ßÀÿdÞ`*¾߇ŠñX%¹%Ÿ?âoÄ߈?Þ÷Š÷½â}¯xß)07Ô=ä<€Â#yß+Þ÷Š÷½â}¯xß+Þ÷Š÷½â}¯xß+Þ÷¥Î‡ão¬ áM‡Íñ œðÀx[±!¸ ?öôÇžþØÓ{úcOìé=ý±§?öôÇžþØÓ#äl˜[±ñÏóâéÑ È-þy~<ý±øáÁcxê²ÆK~pnÅî±{lÞÆhœÏ­Ø\/uy+O¾Û“ïöÌÿ<ßÏ÷Æó½ñ|o<ßÏ÷Æó½ñ|o<ßÏ÷Æó½ñ|o<ßÏ÷Æó½ñ|o<ßÏ÷Aç¹ÿ|o<ßÏ÷ÆSgèÑÔòèyÆžï‘ç{äox%$~îxÆžï“güá 14·޹Ûaƒ‡büQ3þ¨ÔŒ?jÆ5ãšñÅÜØ6BµŒ?jÆ5ãšñGÍø£fü¼Ñ€nœ[±ñÏø£füQ3þ¨†4`!çv¶ÔŒ?jÆ5ãšñGÍø£füQ3þ¨ÔŒ?j§ðwü3þ¨ÔŒ?jÆ+xü'ÃáKñ¿¨ZÔ-êƒõA‹†ÖÜŠÝb·Ø›j‚ܨZ4¶æv¶©šOÿà’Å¿Å?x…Î'‹F—EÔ"Dl"¶¨!ZÔ-š]s;Ûà’Ã?áÈR§¥eZZ¥åði2™‹ØÜЇ‡ÈФ²hRÙ^¡T|iÁñmôN-z§½S‹Þ©EïÔ‚ß±hŽYôN-z§½S‹Þ©EïÔ–R1­Cä½S È¢™eÑ?µèŸæÿÿÿÿÿ€rÑØš[±ñ¯õdZN¦Õdà1Ï?BÐ!h‹† EÕ¢¿jÑ_µè¯ZôW­ª¦'ðÊÙRQ¦eZOFÈŸ:PK¨¥Ô¢ùeKµ™›áMH-% ȉ„A øoSjÓ´4|B"Õ”þÁ#$ð)àŸLT ø×:6-cÓ*6-bkñþ(ëN„ŸÑçÔâ_i‡[ü Nà§S‹ØYT5©Å‹x4R‡ÿÿþ;üwøaŸˆà'¾g Öƒ^%·O‘ý#ûGÎð}Ï’€{'ù)rþ‘óšŸ@æ'HYIÔãŸ4M¢´|ÜÜŠ²n©Ç?Ù¡Dr(‘J$yÀÓåÿdÉ• ‰ŒO"q”«'°ê‰r ðx<ž7·bãÀÿ€rp‰ò×C;Ûšh€¨%ø“Àã$XåF‰¼DB#3A0—FüþO$°ÒˆåÒ¨U˜ø'›’–º–JWìRŠ­´Ùø”þ“V‹j±¨Öj(þµTsÂ?åR‰B’¾(‘¹J”O%ôëx£4áÂ?¥ ÝOÏ-þ!(àýüøðÁñ0à¼ßÉá1øL>snÅÆÿˆdõdõdõdõxMxk†ÿ#þ“–Kâ^’^’¥|’÷+ñ~%ðˆ¥œ¼ž–GÊø8ÂCá!É-x>ç¶Án°[ì;bGlð~àÍF¯ŒcSã¿Æÿÿ5þkü×ø¯ñ_ã¿ÆÊ/Ê/›ÿ5þkü7ZŠÿÿ þü7øoðßà¿Áƒÿÿ þü7ø×òÓ-þÀ 6-þZüµøkñþ±iñ×âÞŸÀûxïOàý úþ€ªåÐqý×µ‘ë‰\OÄÄÄÄÄÿ¦¼ýÁ+‡ÂùÓrôãòs§¹uùùQ±y¿‡²Ú>=·*D*ŸnµKå$(_ݰ¥¬ÙQ(?]³Ÿ¤A,ånð}ø¾çVlàøƒ-ÂÀa<à7´b@cÆà xå®–rWK¹«¥ÜÕ¿û„}ÂÀ>a¬Å?|ì°QÌ­Øø·ø·ø·ø·ø‡¿Ý:ü;ü;ü;ü;ü;üS® _¹2×@“g,´‰Lo X\Û…íbng›p²²á@£7·bãŸr<è‰çVlà ” –1·b_ ýÇÜŠ <ƒrXëKPîh)?´¤Ç-éqêì ´~Z?c)„ÝÀ¿nà_7–rZK9­­¹Þšë¥üÓÖ\oÍõRNl)_¶”‹[TÅ-å̶Æÿÿ”k[Þ—C+6þ)ß´ þü7øoðßà¿Áƒÿÿ þü7ø§|ÞR.i)ÛjfK91÷¹Å?lA–ô®å}·¤w-é]Kz×’Îeúl˜>³s+6¿'ðMÈœ•ÙÚXÒ¹–t.|ùs+6÷ƒt­í®Åó¹^àè·ô[ŒÍ*K:֒޵Ðë5ÐBέØ<¯¤WA±Ï­Øœå±¶çx½ß§°?q>”ËZÊe-éQKzH¼A_fng›ô¨%=ŠÞŒAoÆ 7cЛÉ-çKzÔ’µ¤G-éQKzÔ’…æ2·œ?ÒP6q¿÷›ò~øßE: ZÌÜò|%ž/ô9,úz‹Ô”EjÊB_`‘š²¤C-éPô r‹?è ,p ‹†˜EsÌ¢9Fµ‡{äV/×çè¯ý•£¿rôWŽþÊÑ_9ú+Gåè¯ý•£¿rôWŽþÊÑ_9ú+Gåè¯ý•£¿rôWŽþÊÑ_9ú+Gåè¯ý•£¿rôWŽþÊÑ_9ú+GåèŸý“£rôOŽþÉÑ?9ú'GÿäèŸý“£rôOTxÌílÓ?Qð‘[üÓ?9úGã€÷:úPøs+6ç|×yÎþÄÑŸ8úGâèOý‰žë€ç:úGÿàèýƒŽ‹žAn¹¾ÿŽï¿ãûï€÷8à=Žï½ã{ï=çÃ÷Ýñ}wÀwßsÇ÷ÜuÀcðÇ÷Úñ½v|¯ô)Žï±ã{ìø»Žãñ½Ý²Ï£¿©èo6:àR…®Ç†xO¼§Sñ½[h™9~¡eVÚfàWÀG+à£è‘ävÄÆß³ŠïYÅ÷ =­Ürþ|Ï*¾gß³ŠïYÅ÷¬â{Vñ=«øžU|Ï*¾gß³ŠïYÅ÷«âûµ°çW¾AUÇÜl<Ñ× /“ó÷Q_œ(/NH€âså=çýNH3¥€Þ÷¤ï;¼)há1þ)ëOÈu%´°•Ó éçÔâŸïMBдPª+£:…Ö ú«ýU¢Æ;/Iþ;üwøGU+uøW‚våglÙ^éÚ•­ú£=S‚ž)AGUÈÜ•Ë=êñ9_ÊÂSä|µPI/èÔr‹ÿÿ=þ)©OTÔ' êœ ЯYè×l¡’‡Á!A`HÊv€X‚Ž(!›T+JÙ¼8/NÀ‹ô^iÀÿ€˜QðcèÞr‹èŽreiÄÿˆèÂÒˆÿÿЇ%èÃÒˆÿÿˆï&àA :¥ýA‚ "*! üüø‡"%¥ëW¶~ü'UP¡Õ P2ÿÂå­**b øŸðýUšð¦Yšð¯pí ÿþ'üCW•¨òOЗ$ØKý7t+z;q8ØÌ•ÝœþhRb[ú‡I%ß”ý|Ív®Bi|Ï&%½}”Íœí;^ÎnÎþÀg;gûÂvŽ}–í\ÿÏñ^¶fÿF_taÿ†\Ù¿Çöï Û·Ðk ÒäxW<¦Ói€Ç4Àcà1 ðùþÏ­ØÀm‚½ð×â¸ÛÜmhñß/k¯µÀ×Zàk-×Ó¯Aßvh×´ÀkZè¾Zàsþ;üwøïð>êÐá¿Ã?úâz¨2Iúí0~Ì­ØøG_w@_w@i@ß:Üâ½Ý½Ý٨٨!â?â?â?â}Þ}Þ!â¿Ç?2SCô܇ÿÈ> È> È6 =þÑ—zü÷øGovèñßã½Û=øÙ§aÀÿ€ÿÿþÑ…üøðLÔ0à=âÙ¨Aá“#þÑ¿Ð'•Ð'гFü£'?Œøñ?âY®Y®Y®aÄÿˆdÏdφ„ÿ„ôxd«†ܬ°ï³ý³Ù÷…þ«‘ñrn+ì »Æ®±vÀî°;ì»Ç±Õtsz¹ÿг55þkü×ø¯ñ_ã¿ÆÿÿÐ55þkü×ø¯ñ=YÓà¿Áƒÿÿ þQhü7øoðßà¿ÁƒÿÿEÝ-þZüµøkñ×â¯ÅêM‹¿À_à/ ð—¦U\o«ô~øïðßá¿Ã‡ÿÿþ;üwøïðßá¿~#ó͹»Æ®±6ê Ðå\Èçqz<àrVŒÿW1JìoLŒ’t0Óñ«8åUœû*N)öUœò†Vì_™8åŽõ­‹Ur>À=ŠxåÞ…ÿ_¼˜%þ[,â– ÷Nv·Ä¾Š[ÞЊ}·¼¡øÑUÜû*nyC+öUÜò†v¶OÅ-gØ×Yà_‹]®àbW±Ë«Øå ­ØW±ËZ±¯b—7´bÿÜb—_áaWñKì«øål_Å/gûÛ¿Tø6ïÇ Ø*v¹†‹ñÿ'‹_®áaìÃû*†‰}Ãû*†yC+6ï×U û*†yC+öU ó†Vì«æ ­ØW1ÌZ±9þoS ór¸ØÏ\€[O‹½‰oß~.¸˜ ¸˜²{màb±™ƒ­ØÍv,…‹®/pe+R¸Æ ¾QØ‚Ôþ8[Ð&Ý]ØPH_ÙI°c'Ñt¸²‘húû ÉçJ‡¯Óßëôö&ýKz\Ó½…ÍBÃýTo¯Ãù«jî‹ÃùlÏù<£\Ão§•ê³M8aUm¶ ¬ªÏžNx”,ýRrôÇÈÐ5œ Õfç ZmöÌpº:Mà a^ :Mà Z¶/lªÕ°7á­6ÓðÓ+ ”êi5Nž[M£Ó­¾Ðá´V3èðW«tx¤èv†/}®Ã‹õpBÑæÚ}¯»çÏ„æ>ížwÐÝ¥».èîuw½‡÷.ø£xï¥+ÝéÀÿøû?¼ïŸÕcëÎtÑ5ŒvÑ L<Óeƒ80 žÚ…;BÇ'Ù‘¡wdàuGFÝ‘QwŠè)]Š?ӥįӥ¬º'w j†«.ÄÔ &j5‚Ä@CF›ƒi@5 † ˆÏ†.¯ñÙ@pÓ€ph¸¿ 5 ƒDALL £Èè2ú¼ò†CÁ† dGDkàúˆÀý ø Z -„0-€@K¿%ƒß’±oÉØ·¤¶ ºy7M ¦Ñpï@v Ú;åˆò„xÇ®ã~w ¡:9;žŸ«ÄS¢¹AÔñ¾u ‚:Aˆ PǶƒÐ©cÛA°ÔAØÖˆé @ê @ê <êxž:qŸ¢#BØù}#=‘ûA@D™Dfdˆ!¸TD‰8äVÎ?òüG†Ä}AA´EÞïÈýŒˆEîg!¹Ÿ‘û¹Ÿ‘û¹Ÿ„vä{¹Ÿ‘û¹Ÿ‘÷/‚XŠ|Ÿ"÷/‚Œ0õÜ¿LÏýë¹t9¦çþõÜ¿žû×sÿzî_Ïýë¹_=ÏcÏóØSÐ×jãç±çyì!„ëÒ÷ é{îgÏ÷®çûÖó|ö ñ{×zÖz¦X=S¬„]ßéþòþ÷|{t=ˆ¹žþ¤×sÿ{îwÏý¸Ÿ÷sQ4p?¾7÷sà~ܯû5p¿Þ×þŽ!•ÀP€oÈx2† ‡!ÃaÈ2†rC¹¡@ÜPn(7D° lCÛP ò{1x0#×?rý#×?rý#×?B=r½#×;‚PA(<#×;Ò?Žô‡#×?‚°ATŽ|¯GéFåF®oäúFúÿ‚8ª ˆ"Æ@d@¬(BbÁ€X0  6„‚¡`@(k „5ÄAnv‡-× !€Æ@@c  1Ðh áŒpÆ€0  „2B!Œ!£oÈØ2ö&éýâ{ aŠ™èï&{‚ä6`ËõL„&Æ/ £#VL)C†Ø0¥347†)ãÁ¹»Æn°eŠf@¼ „D„ˆ!r锨0¥3dÌ sú„¾…0Ö:®Ç(r Šˆ"Çõ9®Œu ^ˆá‘Ñâ@€82Ü‚ ÂÃ1EuŒþˆ Ç”Õq½D†!áÈxW æ*sSôŠ)zŤb¾Âÿч ŽŒ‹m °j ¢@ß’±° Çk@H0´ †Àó@€¸@!@ˆF†ÀRÀm‰˜["Ú–ˆ¶ #DÇ¢c¡ÁxÈ1Ê-ÿA1‚ ADŒ "FVF¾¹ bKˆ*·Ø¶€ä¶ÅÄöü_®'·=ö$väÿÒ¿Vô¯21'‚&••þ¼²r*+ñŸÊNØìOÄÌÒ_z¾Ý$ñ‡Èø$R!©‰ÖF*bcÈà[l Á òÆ)†$ÉðCÑ@8Aÿ‰oÄ`!„àx%d ¢ „$Ï„ƒÄ{b+¬¹­°klýÄ–Œf "€xDl%„[2²m=aKEZn{ì{Ä–óëä{;h:yÞcGƽ#cÝA Ò‘ñ%¾;©œÛÙNl/ïcnlþ?áO‹‘þ/ˆ‘ë‹ "ˆ€Lä|¢„¬s±#¶d|£ôw1JühnÅ®±Ù_º"ó÷Ž/ã±Ü:lÎG*šsËö\oLøçþGùžÇ^ÆS‘rn;l¹þÞòËÿ!h§v‹Íöü>=ˆæóùrä÷+!lA4E¾Ÿ#„(#Ïãäû’Û^ly>&Æ7S”ñ̶Tt?ï…€wnŞĖßw"~1õûË÷'·vÂNb{üInnñ'‘Ü6b÷ü_*Ö'æ³ù³!û2þF™O£Ì¦qâÿ\?ˆü Äýâ~qûXÈ?wß²=ã…‰ñÂÁan#¶œÏ4òÿ‘ÿü,ó1&4Šå¼À”ÇP…’ ‘1Š0~ä…Q×0‘3^×èT®ÌÝŒ&'Êì }(«ŒVs¾y¡ã NѨoSé9WÐ.›ªÒ5^ç•꽂êÖèTÅT磓•|5k˜͕Dz†Ò99;¯Y’.zœZ×ÔŠš¨õ|jˆM£Û€uÊ zíAçº:1Ð5Y /j]ÓêšV×0En+ÝVç¼ ÛèïÕR©“ø½ZõÞª÷–꣓Ӓ°Í³f]C2)/x]Ãqt c:«kœ®VÚè´%wÿ\iÇ@8/pçuê2/È«k óÎ µ®Ñ7 ÞñÍ z]‘*Õ{Ôg,j’,ê¼?z°ü¦×óéõ>÷ú öz{õÕSaczõÕCIltJdbOJÚ˜Ô4kZ]ÃÜ«'¬¡¾ÀZÝ‹ñt^཰p®]£Ûè‘­b~,<Á¡ª¼@é„Eê°0蹫zмÀlÜ¢W” 4·ú¾ç…F×´º¦Õ5Q׌ºfbM§k:]u¯^Lõ†­˜Üæ…A×°—Æ;ògXQs—ð^Uº ety¡Ò5zdžð¼0êÎP¿Hókt¢YÖëÝðú›¢xqX¨uMÐ5< µîUS'dkÂ8yû¬ßÛP›aË‚¬Ñã4D'JxÅñWÉãyNáya^£o“Diœö2®"¶<ÝÓ5p"h*ƒ,¾Ò½*O=£×½<çÃ) Š|ë†xy*¼†¤I^€†¹Ñw¹é¹¾ËM÷¦‡»½é‰åä…‘5D»šI3q Ì ²ò¼@ŒD¯+/ÈïÞë7¡‡È7/]ÃW«×¯DOuD^èt wuÔû3zâ;y¡a ߺÒÃÂÄÊØFx µ®itM§kô8QÓ«wØÇGä] ‚¨à?,pd$< A×D]Ã^Ô]]3è¼×¼qy¡×5‰5ü¦yAãõ8G´(Š¥f¹-—ªå¢bQd,ŠŽE©4.¥ÆEj¢hM±‰¢6Qä&JÁp©.ŠE2¢hFш¢Qd#ŠnDŠ(J¥¸—jà¢Qä!Š>Dˆ( E"¢hD‘ˆ¢Qd"ŠND©.¥À¥¸hC”jßRî[êwKop( ¥&·å–ªÜR–[dŠÎBêe„"…P´ŠØAQ;@nÀélÂåéÄ"=ˆëyæó‚gMK °'hîdÜijê¦xØf QRìÐ>&éûû»÷·wÒsaIº¿rM"kàz2dr7H%2™éµË‘K;`ÿÌH&2}ŸŽdú\È%¸`@"}2’ .ªšLh غl]ü.ªðu ÷L ÷L=<2©TR€§ RjƒŒéR¦ë¥IODBÄ*ȧ‚tâÿ!›ŠZJ’i^#•Z¤Ê:ÀâÜRȯ‰Äÿ¿8 ¤™íŽß«ƒ»°ƒhA&ñ¸Ï#•8¸x¤’\_Dªì«#—BH¡F¤¸‰tæ6`ã©Óˆ´iD*;ò½{ ÅïïG‘ß÷Ë#£¸^ÞÇÈïá~Šü¾qx 9Åñù=#HÃ-’ ä¿ï—GVdB½ç÷ëùýz~¿Þ+ÒJο§Øã< ü~=ïç™Åù}«È,¸Ãz¾Ï=ý]Ïû݃äìùý×H®ž÷½ç}ïùý{~¦d¹Iõ¹_üžR÷DrËö^‘aø£?;ãüø=~O¤] R._I&¿'µÜ†ZnCí¶¡vÛ ýaò0ÔZy†?~A Mì‘ßçÙÈ4~‘ßcä÷ù=¤š›I‚üi®Ü‚¼«t{yþÏ"óøÞOüãu¤¸rËöp5‚D™Ûl/H>fÝ%Ý£Y‘+²Nìç"ë#TÄ *¤!‘Rÿ†‘w¿XwØy’î1ä\eéÊ‚ÄCâÉõRUi¾)Ù騖dRKdû Xüî g$:·ß=)È÷<·ØH­¤ÖŒTz9#\fWd¡" ¿’ßëAº®¤dÞyd!ÿ¿YØaÿ‘…$!HÃPI¨È ©ªÏ…$D*n‹ Ä–ïSl¹žVÆ»¨ÈHAÙ¾£˜» )žÞ"±AÒ¤ þ Rp„khA‚´ƒ»'"Ív ø(Rd`Aê)2ïçBêñÿÄÿ%û‰ÿKÿùó!ù~)È=®' ÷å·sn±E q‚Ky"å8‘q|ù'ïûÄüo‹”þy‚Kó·‡ ´hYÏ ó÷¬ SÄšKÏCêš/†ôzËLš5W<á—Á*2Ð(z¾ù¼Àu]†0„æ6/D]3éõþ©(DÎðçF!Êšü°‚Ö3P–çE!2Ñ´d®÷p‰fÒ5ÌÞ¬Õ#£õwXP\"÷ð»în»¨Û¤â HEfNy† Û<»¨L÷°‹D_¬Ó;æôŽéw,/( ñ«â¹c•¢+9yA '/|©{1Ï>FEªw}ƪF¯+èq莓çq’^w?r r’(_^Pä$q½c,%W±`)Ñ5ØÃRê•"}Œ®äeÅI6Äxvð–Ár7‚"fC¥Ûèo±`2“®ùö1™®üÃJ3Nº†˜Ån“^o·©LL}2’ÜT3ñæ~$g^u 8@K©{^èt 8IÅrbæ…V×´ºW &Ó*VÐFhÜ(»¼ ¨Ñ+ŽôŠ#•5ki^àŽ¾-£Ž¬FæÖ‡îaä‹=FˆFð"yñyAÖtº—>QâH½ÝеUQˆVU®¸Ö+®U×|˸Vó¯¤äy!íñÁQwÀ®û$¾¿­)ø‰üõSð}%V×+ö•‚o¶¯|ØW ¾Ù¾Rða_)ønÌ•‚!õ¯˜‚ó¿Rða_)øÄ¾RðÍö•‚o¶¯|üÿ·¼»RðÍö•‚ïç¢à±á@¹+ö•‚Oì+ßw¿b ¾Aúûi Ã3€}r½Iúß¹ Ÿ¼Ó!qC+v‡­û÷ØJñðOƹ•ûs1ÅŸ|Ÿ¦I¾O¿^`Ÿ»Rþ]!zóš+åß¿®”¬¹Rþ])ÿÌ•ò5WÊ¿+TKÖ\)ÿ®Ð(ÖüŠ¡Qk Ôß>Âù÷·O%ýûÛëŸ$¯¬ÏO]Yÿö•õïÊú7ÛWÖ?±¯¬ØWÖ¿Ù¾²þa_Yÿľ²þ‰}eý›í+ëŸØWÖ?±í`¾+ëö•õo¶¯¬b_Yÿľ²þaÿÊÀŒWÖ?±?ëàÅ_ ¸ñÊ(ö•ûÊøÝ·üdVÀ¯ >¼² ~Œxe¼BYse¼² Êš+Ëà•ep^seüוePÖ\Y¯,ƒ¬¹BW¯,ƒæ ¥Õ5W(í7¥}œeðo§ü}šâ‡×ï_üñåÝýCì_§ôì‹>û,¼íÇþÖ‡%=o"pSÜÔÃEg%½Þð¡µ<+‡°üÁ½üÂ×’LÜr ¿C:ƒt€!|o×3í¨¬Ä·¯Ò›ôâüë}ºŸõû­ŽÁO怸1˜ $÷3Cp7[ rM­|‡ü_R̦³…Ø $¢I{¹•£ ¾B ¤ˆxÜF9~Ò$Å“'¬rZéW )èÜÊÿ[Çÿ]°;l ¹@4 $W!¸HldÈN¤°"Úaï€ q áƒ5AL=Ûo qr¿×· „íRÈšBÒd€e€Ll!j”pL@Ÿ YsDô+ Í;lŸŒ¤Kr¡Òí 13µΉù6ÊoGô]S-Ço5جüw æø„êHQÝî±âü ÄŠ`X­!T«1PèPñ @LHñåVîǹ±P­!U̵[¶ $ÊalótœÇä¦ãþ+d*Z I¶Åî±ù?1‚0òûl Pü>QÞ·¹»ÆVˆ” ¸6) r $JŽ_ QLûzæf=¿GÏ,¹çyâ{nùžÛžYYϤì,„ ¾ÄžxGψ|n â0è ´iŸ[±Ùž°Ý!õ{C+¶\o¯ünNÎw ,;p=Âu¢Eê‹ïgn[l ^ø&…ty줋âÒd$Õ¢cäù[ G@й_ݲ´ È˜œœBH"ÉØÈ´q ¹UndRWFkàk2ð;™»Áa€DÈø/·ü_Æ¿ Ä¢@*äøƒI!ò}]Íÿ"ÑÂç$ó¹›ý{ Ò¿FÆs±ÈÖÜìèàS‚+ø—* üKb!þ¢„Ns;`ËñïÝ ílA¡$(R”[°á“êáƒê\ œÏ¾3ãæ’ÁõÁ—y_æö; 7 dbê-€> ˜äù˜4œ»—bÞ¦I9-©a†ÁOL,M>%i˜ô8IÓmø²p¶à®ŽSr%×ê6½²“ôºPo%é–œQžº‡C:J׌X’tAÙIJJ®$àÔ»í5IÇwz'%眦À*M·ññžXÓèMÀº—ò_¸¤I:Mœ¥É8ò’ºª4$GY5^÷òçUOIKi"ÏcÏ •®iuMÔ5Q׌ºfÔ5\©×´”'tl5$nëÈ6µò•Ô`æÓ[ƒ®uîµ$¼t›’ðª8ç†g5/Œº¦l£ž’£û›X£{EÝKïO£gØ0ZÒdK Œà­+wX¨uMÐ5âk/yT­“GG zü¦]j]tMIÄÿ쉘¯Z_Ò N®‚M iý[|÷<€“#Î Ò]CEŽazB…Knl*è©À^äG´b>bk…¼L¯.­÷Lן^Ïÿ×ð-ÿÇÍtªnÙžp@M8 &À‹›Û »Ân°ñ¶"žðš!üf4„K¸N†÷¹¥"¾È—¾ÛÈ— W2j½œïV¾¤Ã¦âƃ`4œGøîÙr%ì¿‘+ùLò$„[ ¹*´[*´·ò%„‹| ð2ÝZäL×tTŒu^Ã…„óÎÉ›4È£yÂw_­â%wB8DðG8ŸKåQ €Ü¿Èýýù´âŸýŸZÁÏû´•Sáü¾ZE¿†GÙ~àü7ý\Ïcò+Zѯ ›Š~Ÿ_­¢%ÏÂûÛó{¯ðç|“sÑŠ~ú›o^Î…÷³'\Û>¼¢ÿëŠ~­àç{;®ýìü*C¸·Tô?&³®Ðl´bÿ_¬b_åf¨¸§¿` èÏ—Šþ€½®è—ïÝ£r5VðÎþÔ ~•³©ó>¯èçøÉßhE?éŸQ _¯¢Ÿç{„Ái©Øç|ÏVìS¡~V^‡ yîW‘×!¥ã\Á¿–ÛáxËíðÿÇ*ø(LŒç¦ŠtEEúþz¢¿ž¥h&Ò³ç+ôå÷˜xÞ&ž¯C+ö‰œ¡‚ÔL¤'Þ_*FsËÿG­ÐXxðJ‹ÀlkÄHQøÌbð5~TkÕÀy ³ò?¶¦Kö¯…Ôc¼”Qà7Ë ÀùV¤3 c˜ÏLj_pÿ #Àså~ukÉ'Ëÿç %ûx>ÂÀù’žPy 5C@ ‚&e »ßÙ>™1à™òBNÞ‡Žj§ðß–QÀb³=ïgÇýdþ–[¹ÞÏÅ8ÐI¿ÈQ˜-Œ@[#u!‘fäûùD#0éR//޵´`åFâ£1VÀ *àÉIIÿwžá¡VøÛ¶ÿÒòR  øÂüàK1Dl!¯âþ3‰}Ÿô÷ßCÄZnês3D § # Og„€q†…ÃBª°¥Rf¢PfJ"—›Û[Ø>Pb ýïÂà``dø2òP R¹m°[lŽ/ãÏÜ*«ÂÏËà ÞPb Ê Z9o•YÀjŒNë°À9[åG°Èª­ß6vRÞ‡'1AþpG^˜ œ28]£¼$‘¬f0]£¿Å³¸!òBÔ5'é•j…Þ÷ùðbM‘ÒRýÚÞÖމVר(–QØQX•¡Š8/ º˜—÷$fŠl—S¶§Œ…«Â+ nGÚËëšÂUÁUX?YcYe°ƒB³W(/FRA°I¡rûâ·pÊòà”åÁ)˃ãË Êg¡0/÷ù9/¸Ò­D˜‚/ó÷pC¹*~Œ°˜Âà*e-©<¿Î'3e¬y1vÊz|y}/¼=µºÞju}^tMÒ5Üy¯s^ß”#é³'°ié3ýMëÞêeÓ ¶ßÖê½VïµzßL£4!/(¸PAœ‚8q6zçŸÄÊ¡2kMt9ê‘õ>7 imPû$.§kœÕ5®á8GìøZØ=”…ç³±{]Cúëò}NhÀ»ì3€Ô¬a °'ǘ¤é½n³e!Ù€ÍøŒœ _OP./ ºF÷â+:/ÖŒê}4Z¤¡ãðQû¯¼ÅÒ‡…F×è6‚SÉVŒ*D™t¯–ú«\–þtÔžhtDõóB­k8C‡™¿QSe£²k_IdáK1’lÙ=ºÂîÁû5j¡Â¨‰¡dÚaï`Ó JnÏJÞµ$ó‚òG\™;®Ì¬ùÌyaÒ#SD7ér2äé&ïy¡#³¤b “a$3FVyì’tÍ kF]3iF­¤Ø‹NÖêúÓɪwÛp>6è¸ÿ'Kåà䈥LNãx+'çu £ÊIyk×/íTÍÑMÒqWó‚ÜÕ©!r25J]Þ(w9•t‡öÒÑΤŭ“¦0’Ó/ÀDA]^Ыhyw¦VϹÕ,¢òHNm«Ûtº†LóÔéq:JS'õç¼wƒ®`Tÿ:‰'% +’øÓíÝŸV$q8ELôšBbEñ@ ~¡`XQ"l( V”ä°Êþ¯%ü›’ûUI}s¥%ð˜¶I1H«ðC©õ9.¹ÆÖ’k9aÔ’bùѵ七AŒùÆà4§¿.QÝ–ˆ®J@¹š›ãœ 9eÁÞ–8ž”0îÎu}7º kJ_Ðm–r>hÉÖRª§s«…^;óý¤3÷R>çuÖ©3Ó£Â3æ#K Y¯ó£R V1*µntáü[sx¦wÞšïïß¼¹¿Ë¯ËÃÃíÛ÷¿$²ƒ’)å `Y0FúNƒ€1ˆjé`r‹ „—“¡S0‡A4ÓHÊ2÷8)¤^Ñ8Jb%0E´”,Q’TD?)A¢ä©‚XA¬€€V›’"Jl€ô6†KߥäGmx,%>@ä©ñ3@.ævþ¼hÉIDT!­0¤L0zL#Eè’oˆ{Â賨Q±m[†‡-£C bfÈÌDD‰ÀDdÂ4ˆpȼÉ©\ !H9 2AÉ­³Q §¢ÒÕðV;+/cnåód¨Xù½?bµŸë–þîðóBNÖŠ³ ã±l Ñ gÄ. D+*D$R¡Š‘ D#LdÿI!òÿ¡@¤b ¡( ¹ÿ•“/sådHXU‘¯*¹Ÿ ¡ð0,‡(„ÄRch$¬ "@ ¹¤ðÅ_$Î1·ßÍ©RI¹jÊô“S k5My:XÔd¾4M»Æ–ïÁ4‘Bÿ?­ÀBŠSHöKŠó²$£¦„v’ŒÛ”â:]¸Ãwa°eZAà™¡•kØä ›()ê/{šiõ*|׉§ùlÏoä|WeAÖHG’ÂN¥½Œ]wFÁÊ#ÞKÁóöŒ!!eh UrT‰äÁ¦ªÇP5hz웪陡*ÊLØRÅ`œäe׺÷ **‡‘äêXób7úöéËÇ[M|‰*0 ʳ š“’]¨“VtÇC¨ ´ ´ÇtÆ%ËŒqÑu•øD]'>$Ñ%µBimtcŽubÖÖü<ìÆ$Rúñ‚çjÞ^Ÿ+ùݶÈG!oܲ/@ KuÕ–©dsUËñ©¶º”­¡¢²‚ý Ò87©¸Ñi§CŸCÆhÔ ±Ï‘IïX>Ôú5ým¢éWz~3ªñfA7+ú¬×Ùuœ-ª÷bù)Û‹üôpûúõípI4€]”Rd~$,Ï#ç™MCè‘ÏŠOÓ^_‡òê¯øËÀs§üS2Úù§6ßxÎhçú~÷ð&ÝÝÆK>ôº ×ÈÅ„$šì’œB××£g°s=HýCúçW#;p-+®b¸†!7YÀªŸœêw~K9ßÝ_2ö=§²W^+O A³æm§Å”QÚeåm±ð°À›ClΓXx] ©Ýòº(-3Ç#H…Ô€ |¹×<'Jƒ Za"=¿ƒë½TéM•Ô˜Äîãrwph×<£¹æuÍ—È3n?†‡×xçƒðCþêÇK>²ƒµäýã{Px“àI)´çÊ“´÷©’ãíœÙ_^Åx/83ÙAìâÂà™‘iíY¶ßU5øGþÇËøp{÷e'M€Íg@óˆ# N#¥L‡S¢ÓüN¡ðÜÉä->vÎúßÒÝËøú’Sf½cœ0·ìë‘4AªT8àÏ‘2) ÓŠþ,)çLÊ´¾¡Ü½ ȇ‡7~|uÉíÔ]JŠgö¿pÔÿ\$P+NüB õLNü§’H…½4·h÷†ÿw|È·÷¢.»œ>À )ÿ×b©âoHþ×,Uø?ËRÅñ?ÆRµ½¡r vnèÿz¸ýé’Ïç¼ýé­\ô¾!„RE¿àÖ=ƒ³„Xø;&ÄZßÊùú÷ú¡øæöõ%ÝÐaûÓoÀ¢«ð­oa?J´¥:òÈ¢­•îà ñÖ¦Û=ÜŸ½ûœ^xùá’=ï wZ)½äÌ>;Å—Rz]ªXq–ŒóûØæÎͼsëþg¼»‹ã%/;{œ¾î‹œÆ—âSy åSù5ŸØù³übøû¿Øúfrvîæ¿Ç×ñ§ü÷æ‚ûYöÑ; CWùDF³" rŽÁLËV‚"…Á ÿc0[ß¡rM{Ó†Û»Wù_—ÌdÓ×õ‹3¦P9+˜¢Œj0¨}œQm]ù´™ÛÈ5ïOn.é6W-­ùD*7Un‘ Ÿ§Â;½ŸâýE™›{ýí”Ýí—Ê·¯y"ûÛJÜæ£lpÛ<ÇýÞSpÛ§÷…UÙã$j\hçÎÒÆ¡¢sN§ÐÄ­iá ­Ù~ÜëÍå„ö>£?Å»7ñá’¨ìq[X8éÐè˜NéPcÜý‚É÷féþáåemÝ…ÓÓbZNïB ºR¤e”*ŽdäÓ(l6“Îp/âï^~¸d+;œŒ…†"2?(EeÍÿB2eáwi°à!~;å¹”?â³òlBèó Ø¹•ÿãý«Ûû·Ñu}²%„¨¹¦ß,¡ªYíÓ~kôKŸ—~eý¸é#²—]|•îLé’ì"»œ|J¡w\è_ú½ì GÜ;¿˜Òù³óâwýýÃíËÛ»xɇfgïã‘ÎB: Ôü„4qs–ÛƒíEF^¾ºhp?oW.E»3æ&pØ|ÇíÿÿáƼýɽ(„›€ã,ÎõiÌ»ïM_½I—ôÊóöÇ1í…wy–Çx3é³m·'R;~oøp÷òþõe]tÙç8ë|DÛi±=¶Çn°å»×>™Ösg,¦¼ó“ÌGÜ »Þ¾é/IsÍÛ+OÆÓžxì /<ö9ø½oáìn÷¶Þ¾øÓ%sPÙáä©îˆhìÐooáaÿÝx—âË»èÊ.ÇqÓŸ“žr{Óåüv®öÿà>ï/ê~u—“{ÿQÚÈnçAУìe^Å\63cU§¬wÉïoÙeo\ôîM¼» Û {œÞåš:Lj¹#ÉAvñßonï/¤°ÇÉ<õ«PbV»Èïùdö>áñöõëKÞzö8þ¡Ž¼Û½ù?;ìö/ókñî"ïìròC«„iQ‰WY »w:a·âÿíeï¡ìp2)¬d–[(ï™­)쇽[%ÇÛ9³ÿHÿ”Ïå‡KnÖÑ^'áçÊ€t{‰¯#'{3‹×ñ-¹ì¶.;ÿÌWØÌ7Ê1vÓrÓí]|ùꢼœìrüc?®/pÌí±M¬Éw1»¯ïßß¾øøò"„êñnÇïgäýžù->wÙëÌõÏéáÝeÝÁÑ^«NJ¿Àg˜Œ÷æ­h7Ôîß½zŒsÙiéãÔž¤²~iïG”Ø÷i|·AT=ç½ïhžÖ_úe—“G™7r8a'®GØûŽ~¸K·ÓýÃ%!ø²ÏÉ—ê³Ln¾²êjçÔÿüê>ÝÝ—=ìËN§Ïºã÷ؤ÷º¦å8»g_¾{ñçKEºËé·àXSb{²Ç^ôã%³Ì¼õ)N_•’÷Çyã½à‡»1^øX—}NŸke¾¤òDió9ÔCìMLÒÛáÕ%¿€ìp2ëTªÎZ³šM»s·ùx»_éß¿ºýñ’Ï îr2dxåwቺǎÿ¿^„vúk<ퟠ¥—µ×¿îb›~ˆbþ >\Q+;rYdYŽeU6ÏG9Æn2å§ø*Oö.J¦È.'g´· ¤‚J·WשGØËH¦ÿŽw—„ªd‡Ós¡<|#Sì¿÷êütáGUv8Oº†ÍËñÓ™Oç÷yž{‘oÙaåûDîa›—~Ø÷ý§ŸÆK¯{Üv$N;’}‚íÏ܉Ëòâß/iqwT §B§ð<"°³÷¬|¿ŸE?L&þrÙyê.'A´ÈMS‚èBÔ%Âq÷$±Á½ØÕ_Οÿ_o/Êhè.'ïbˆ[ñ ½Y˜aç|~÷ôî2 "{œ>ƒ“‡Ø{9ȾêåOyšï^üá6=Ü¿|ýÓÛWï.ÁZíì~òª®Å7@œýw;˜7‡ðØeA0ÝçÊËìË´ò17PnåvçìÊ!vã¢ï.‹+¿ûpÒͪ\šß‹=¶Þ[¼ùpÉ«8oò‘µ ôS2÷í¼"`çDþ¿øKGƒºËñø+üX4ʸ)²½×L¸gIé}º}ñïñ§‹xMŽw;9OªÆOx>áñ<ÕæÚ€TŽŽº—ô|ó6åþêõ¡jøM¼(6³Þõô#Ñ*ÇŽ2Ï^°>Ú™øÃ÷Þ¿’ç‹£'ûžvé‹NÎþhwµónöøÝ|*·÷wù"þòý¢3Ü?ÀêË«7uG†g÷¦îó gÿêuüÇ%C×ÝýWç®·xG0hï¦ïòÌSñ—?^ŒœNŸƒS5¢½ç@öÚðß^|šw8ño5u$ªAÛáýí¹°ÏûxɧfÞþtbÌDx­/ÜïÆñ»ï§^½¹¨*}ÞádR|$ÛôI¦Râ4C>êÞ‡9æ ýEÏ {œvâÔß´BE‘Û„½Ó‰s€ýøo.™²Ê'¿ÚÓ_˜—OÔ¡vÚù»}ÖÃý!DþâûïnÿqIߺÞõ´¦£ÓÉÒSÑvQ£ëãììŸ7ŽÜÛýô»°èºí¥O÷öß;ËÛ‹ª°›ŸÜ˧iÄ ~%1›3½Ý-NúáU|¸¬¨”=VO£~½Îè‡í¤}öë2¸ˆ¹ËÍc‚‹bÇ»žÚcâk›S;:ÒîÌîÇ‹ò1óö§g´ˆAñb¬d¶óºw³2ßÇC|7á_÷ñBê®íΧöcšÛàÇúx»½Õ»wñÅ_ã%I·²Ï $¿£â¤köŠÊavNë÷Þ¾¾ÿé¢Û§»œD¾„Óß{Óê|ïß]t!ìqúÑ;•ÝLže—½LïC¼{Qpœ=Ô= cý¹äöfûd)=Ý z«q½ ¾Ç¼ ×ô8{x)î×^n(¾Šÿ|õâoî/úpïvò0i }NųM¶éÈÿnr÷þ¿/ÊhȧÜéTV;=9ÆyPÚï.¥ýîtlt¹šî0Ùïv»¯âçOðE£]ÙåtNr¤.ºƒf×}ö‡Û·Ã«˜.«ë);öDGºµš€?Ñ­ÝxsœÝñâݘ^üÏÛã.ºAÇûœßGÇÆ½ó;>ÔÞ)ÞYÞ|5¾(2–û‚”Ûj¦q÷<.³>¬†¬—‹3nÎëaoÄz˜ŠÿÇýócA'û®bA:Ö{Ýîfç½yìó ù²ç¾ì³ £éÉœ‘³Þ$Ðõ0»}Ãë7?=¤»K&weŸÓ{¤tå¦Ý›€—vOâËïoï^ü!^À>Úëôãt*Fº=‘²Ûy<Ó›‹#G²ÓªæeÑnßÁ5,{íÝ’wñõûôðŒ°ÛjÏÓÞE±O×ãÞܾÓÃïÍÓnÇñ²{œ~«1_§^¤{Ç®™ƒìŽ>ŒñŸñ¢ogÙg5^(ѪOuª½/p˜½ùâíëï/ªS=NOiaÞFÞ çƒìœÐæ™÷ÝËür\ÄÂw´×é‰=¦¼>±£íå)_Ý_òH6?!îÈ![ÆÜ‰•øñ&g™¹wfwñý\òûÌHÓîþ'’•äñæ¼ö°s¢ˆï.,=ìpúiµæJÕ¼àufuTUk÷w–£î +>¼~áàTö8™|!…øÍD\ŸéBþðáî奰’“ýNoºFÌ€¬ºQš›ÉBÔ5g†(åà»í—wÿy¨÷¸,¶¶ìur£Ž|‹úî;êð¢ŠüDxŽóÂ^p9ôÞ§êÕíûô⇷q8 \þíö.>üt"XùÿŒiÊó ù»²l;ø°° ?ÝŽ·/¾¿¿{ÿpÿzÿ€„¢Žö?áÿ=Ùݘ"h·¸ª&Qû0 Ö‹ [³óÌ{ÙËç³ù”‹8Þÿ¤€ã¤´s“ô>Úk/‚ß½zÎÉöÓþ¡á>2nÕ౪)ˆ-M#Q—…çm=áyÈ­p-¡fžÛÙ–Êѹím;'ü6s{°“®¦$HïÜFlѶCjÔA±îàl›Ûï…°­8‹6\Ñ’ãÿ§ZqSº¥ ¢÷)Õh¥ ?Д$Þ2·ßÍZi¢@0íýŠ‡Û½×eä®$Ý=ç÷“=õ12»¿ ’ÍÄÝ_ô#¿˜Ý»ãGêyýãwU¸U‡ÛtSóìÜ“ÿýáþpå÷w/þ=>üøœ{sz„SJD#r=s+6 ž”‘PhíPžRaYÊ-a9ê¼þªxXñnW|òÓ1‡¥ ùž„îÄd Ñ=®Ül%æàÿÍNªñôÂ÷ÆÄ‡ùМÛÿp7¼ÿ0oûœ;¼wîs§Ï"2Såë2`Ø [¨5 BÁðZhѧAÙqGõãJ¨õ T–µº|D Qµª”÷ÏíÁ^Hø!ÝçxT›€ ¤<§0³uÆÚì(©ÖÐ)’ឤ4qnÅ–wy²Z^Ép„j‘ Ý…ª‘!XÓû¥Nã1åÕAÕŽØú­PeֻŦj­=ƒÿDB/ªð2lj(WÚž€|pDâ£á8 í0¨ŒWEYA ‰Ü³"ÏÓÜJo0Ð ¼—–÷Òò^«"ïYô“ϼjûÈýÎ-ö$ÂÏàèbŠØŠZG©ó3>ÞDö‹*¿åú› ®ôFñ¥3ðLh‚ìÊŸ‰o/"*eO%ðQåN¡(Êí€=`£Ìi ÷³õYÈÿä}˜[ùîp¼†ãÉó;·óóxZíȆªáƒÊÓ–[‡݈tvуS}8ôç&†§–™DN]@ ’a8‰”¸CGq‘Š–dÛ‘44¶JC+_ËÈL%±b Rá¹Åb8L)³5èt RÒ20È-º†2ÐÉmô´E: '+bGs+v‹½’¦vº=RÔk©j)‹Ï­JYs¾ÿ| m‡Ý©ÍöÛËt5·\_äü"ç¹ÞÈõF®'r~ÐSÚžóëÑ«ëÙ¾ÇßÀöüéj;r=#÷oä|Gt"E/ong;q~Iί’1·²}ÕËÿ«žÿ÷[·çÕñqt”®ÏíÁ®¡ã¬!تETÀÕÐoÖ\O-ô¡¹m°vÄî±å÷«¹¾µúãzjÑíÌmÀ–çiy×0Y@üÎ!ï¾|º\ƒNf#“Ç€Ä1 qA¾´öY„ <·òfÐ<´(ÄyþlË4¤e ržçR¶’ZˆÞä}8*ñ—ë‹\_!4‚9BÛl+Ä00Çö “zΧ`ñ#œãÒÙ~‚-…Áó@Iü€‚=dovd{Ô¤œ'"àk9wæ¶[&w*ïýÔÍÜòUâ’ny^c;Pëì$Dܹ(¶'\Cí¡µÐ-Û³×–þïˆîAüGO²‡ÞAézBÆÒßF”5s }„D rÛb'l´~1Ǥ!èZl‰åÍÄ/ج©·HªÃ“jªÀ 2ãñ tqO$õ2ZjXÊ–i€Õ^(/ϼ k;fzP(K¥žÇ2»:(°¦ÔOéqlBÝöÞuaVü9©ó‚¬Í¢ÅN;¥ã§•7hY¶˜¡ÑR -fðzí^CÛuä|và}$ðmÍ<[‡…FZ ß¹ƒÒç^AÑ‹ )øUdß êI?k r«]LIG‡Æ ¦'SГâ—ï‚dšçedjlÆEÔ ™ª!“È0Ž>|Ýnhge¾ª•ÿ{‰\æ–Ô4ó°º&5Ý1Ï“_ ·¤ª/ž2O+ó>ùÃ8¯©™·!ÙÝ$æ}’iÈ-Ìø(i4‰T¶ÎãT_~5 ÒO˜ ýBžÇÉï Ë2O›Hu#;ÜU:“ûÛ1î[˜÷™W1Žë˜Ç sÆ}ã¾NŸ×Ü¿Hl«‚4ûGöWÅè"‹Ìþ=ûd¶Wy^8âQZÕ]åøÛ«ÎêèUeTU4OU3 Ãå–q-óÔÄó¹(#" Èý&Øb&dž'å6`3î­÷Vº=„ÌÓ'ÆýÊ’SÛ`³?ó–iÐqrÐn›Ü«Òk¶šå…÷¹Uvd­='{K|, #ãTÉ´ý£Žã+ß:óÚ-•V‹rãFÂ¥=½·f>Kⳑ­gœÜî. – g C@ÙA•!ž«üà4ÜM´[ÃÍÔêdseBúÄž'×;É÷ÃNŒ&2ØèôÙÿËÞ›wÉqù¢÷o}Šû<ÛòhÉ}±¯ç=‰äH=¦(]‘ÞÆãÛ¹u—º:«§Qíy¾Ÿý¿ÈJd™È"%ËóØçYÌö@ "Р~_7à·©ƒ~Ó ÒoM'Ge³0œÖßSÈ7Oîož€¡]¨†njIȹ{vpJrlBõ)’ïS¼Ïñ>Ç{˜F$0Hi_"Ò0™# èøLsLsº@ƒ«aÀAÄúÉ@/§}¡|âE2\<…à+€(§ ‘ÓüÚ=,RÈÕ)Ëé0õàÐb íúXC1L=`RÔT~ÄË݃›<`ª¡Ÿd5Må,IpMI¢Içø>>Íßݳ¯g÷€x¢f)žÊð¢KQn-”‚âaœŒ”SÒÞÜ‚¥oœÉ‚SØ”‚Ý„ƒíÍk6®`/‘“ã0`„;üönÂ3¿$>C²æ36‹±²Ö`ùÁÿº”‚õ)¬@ ÕBïú0ô‘ç8ZÔÏ|» ¬¸*?åÛU.¸oE¹C²§¤É/²ÄL~íß”×äîqÙÎg½8FË ®"“OZî±ãð°áè‚Ö®ð¤åG|q°v‘°Ï!ü3f´mîžÝòg>!8,Oï ¦wX¢‘àü†.\Ãê…€ûëáêÑtGÓ‡G†vЖˆ–ˆ"/a)Æ–c5Ô5¶ý¸7R¤ØÖW°«0À2 k<¼‡¾ï8Dóa+ ~ÀZ°Àá`R˜BØpCZ­{žo_×»Rì-Þ.Ç(= î-,ìÃ.TôÀ4ÍôÂ|ÀÂ=B´øñÜ%Ÿ$ÜŒeFÂüùbŒÅ¾Jq<Ì~ìS˜ñ¤0ãAÐyís˜ýÐb`ÿ*ŸôÎd½Rª¤Å0(y1-~8Á¸&çlq+óÓ›lTÓÖæüÝÃÛ6gObè<ø0 ñ”žUr,š¼-@Ÿ½ÉUxÛ–* N©ü,ë×ï—”ÕBJ»É½ÁÅ· n¹ošë-ËoHð9%à”€SBN 9%┈SbN‰9%ᔄSRNI9%㔌SrNÉ9EpŠà”‚S N)9¥ä”ŠS*N©9¥æ”fXØôÕáQÚ™»µ¹Î­ù3¥½¨ïkÌb—wé!ž§hÓÝØôŽÿúÃ1؃ؤ÷‡_|¸ü³Ã«‡APŒ‹úà Ð?;ìá܇5î`žÒ¯—_>>‡ÊLVž+*OjI܉í³S÷ƒÖ¢^Q)z1ˆš$æ”z ™Gü¨uLš¿§/¯©é¯¿” /Û‹¤í¢”¦> Û¥†¶òi0ì0³pþj÷vXÓÑ<Ñ:B‘Oƒ`Â60ûµ¨Ö¥¸ÈC¨Ú-/‹.T= ˆN \þ®]7ëº:é7/á÷Œˆæk4«â°ÁÇÁG#È ¢{Ž7€ñ=¬lD€ï|à{:íhDðUÆg÷˜ëÀ:?­qÜ®¯nÚíN›ú ßyªÜ°øŽˆ~˜ÂbÞÈáÆÁ.0°ØõXdÓ4údVÖ=»)Q@Іà ¾|vë~ÍÕM? …š°æ‹ë䬑®j®=ãê7_h“š¾~ØÕ¥ {V—ëé{lvñêªÓ'[A’š—Ðî¾{*¸I¡†L¡FL¡†Lq9©½åô \u!†tü„t¨¤*Ïçêô‘BÂ6ý0\;Ë|£6‡ë§ÛÃ…u2@çÙ ~n •Ò£ýƒ³ùîÙíGPkj- ³äîÙÁ´›ôà&/÷5ö78Œ Ý^÷T0l’»'Á`ìW¶®…º ‡•l£]e£€-Ûç¶`‰kbëvŠ0+ïünÑx?æÎHlÆÜ›UCn¨"6Ê²Þø¹7fCë†éðq°A2Lg«8î ’A'ÎØÔÊèŠýrª˜Íªã†é fº¬;Á•: l?*×É9WtnX;ýÅÝl{£–©ë/wr“-˜²~¸Ô3ÓBjx3§Ïh>§^=s0ZyA‡ÍiÏÝ=ßë˜0 ( ¡(`¨PÀ·­€Â³0Ýbfкj\=½~y»7X!˜‚&Vøðãõ}¸¯ÀРÅÉáëlºëD§;źrÜ_·Ç7ØHˆh‘Æj´‘C¬ÒDä‡40»ëWxÚ ÄY™fLåïuÑ\©Ù¼ÌŸy½uïß±w¯»·.Íš)ÝûØ{玼o Þ´4˜q,Ÿ)`ö®…Ë ÆÞ´™#L?”—ìÊ{oYØJœyËÒ¬ú–½eCÈ)ïXÒQž¼cauæN_ê-KZ-«·ì¬w,yÉŸ¼cÀ6ïØ±7ì¤÷«ÁKuèoÊÑŽÓœS Nqñ@åÃKص׳Ñwæ÷‘*a¥ø ÕC˜ö5¬r§¥îÙMg1u#0¨_ ™O”ôåc{ß½I!‰+`²Ñêƒ Ž-%/FL›QŠ÷ˆ5á Ð#(àÓÇ Al ÕLg ›=ÒzwO‚µ#ò‰Õ@tt^˜f×SÜ–0.Æ…árïSä[*àãŒ"¢Ù5@ê %ƒ§ ÍIƒU@=¾Ô)üûX !`˜ºˆ¬£GÚi «”OŽBqbj“wÞÐFMÎ]»}½$0X$aõôÈg fa0‡ɯ«{ 312s‘ wO ˜iÁŒ*¦RËJ‡û̲bôº½.¦É¯{\¦^çøVb˜ÅÐèÆ0ËŠkÀ4)Ë'd$î;>ÜwhXwφY 3¤;Ͻ0mØì‹à 2[†Q†KÐétõ¤“(ùÄÅ[1Þçx_Àݧ†ft9ÌrÔožA£³¹<Ç÷…9Fa÷¼`³±p îAey ÷Zy½¼=˜eá\ÖË¡a‡²dWUuÏ®Áü˜‘òG>#À`¸× þ¡ý“O¸ÿÀý Ú;OÀB@Ó àN!AÀìKÀìK`Öp‡!ÌÞB˜Åѹ¸|&€‘ÌþÌÐD þc¸ÿ ÿB&ëžS} D´$óu±};í+о"}´¯ÈAí+оí+оí+`æ óvùDyѾví+`v'о¢d÷'ê¢}¸³´§@{ ¸·ˆå‡]Bö-оpwO˜ ¢} ´oö-оÚ·@ûh_˜­y0[ã 'òIå+p’] ý ´_ö+Ð~¸·Š¯­ò°§ð°§èžŒ=QöÃUQ^wšíW ý ÌOæ¿ã¡oåîY9ܳr|Ÿ#hº hº R§Ê'êG |Xu ¬²p‘‹%ê£`3MêÏÜÙ ŒçîlEÉîcÔ¾Ú»Àø.0¾ ´wù«žW¢}K´o‰ö-!F•hßëI‰ö-Ѿ%Ú{6¯Dû•°D(Ñ~¸ŠX>á>³ØëG‰½RL ÷ÎíW¢ýp†|â{¬g%Æc‰ö,Ñž%æÛíY¢=K´g‰ñXb<–%Æ_‰ö(1þJ̯%Ú£D{”híQbÏ^BÊ)+äÊã±Äx,Ñ>%Ü?Õ“`jÿ ã±B{Uh¯ íU¡½*´W…öªh %Ÿp—CûThŸ íS¡}*'TмV_ÆS…ö¨ÐæCX’xÚ£ÂøªÐÚ£Êq‚›#?¬Ç4ÁÌŽ+˜W8A†eŠWÁ³B}Wpç¬Jð‡ä r*Ô)îQò‰÷¨ï t`–êÕ¨oDO˜-cý¯Ñßj˜Å×§jl3ê v\ÐñÀ‘Þƒ½|Â,ëE?‡Y4æ—óG-Ÿ€û €–fìµ@~p#€ ¾|‚_Hñ5ús K£õ[£~kôïý»F}×pϮѿkÌ7uzjÔoù¥‰`Ö ÷Í&û"ܵ”·AyaöëÁì׃™o÷ì`º±Öë +`ôå±w wGZzˆiáÁ'>N*䳌÷8î  Ï!€{dUUá=%PÅÐÄ´¾wO‚À KÌ'A‰ï¡] P¾qºƒ üA·úˆ‡«HBD }¼Gô‰0¦úq{J³òfëß,Ä1AˆS‚f+!ê;Éß'¤ƒ”O¸s"2Kê!"Ÿ"Â…¤P¡ÀÞOS#ewP؆¦ ðá^šBá›"žE þS¨‘Rh‘Òþ`ö ;KŸCšd¸æ'ƒ[^æÃ®üe°ŒË@?ƒ_X;Ž õ“‡zãHo9,í óóá&âç(oUT]YµS­S7€ùçpÍ‘Kb¾ò.§ñ ŸT_‚âÁúÂŒã`è}öpX8”è¯ý. ÄðÈfÞ¾@ù‹î¬?|;Oþ ¸  »ÀMnpG÷áŽîsÐêã¡Äx.QÞ’´Ý“`àƒŸŠ¹_ƒñÐ`<4ˆ ¨ß ÞOƒ`1 æƒåip-jƒ“Ç:lõ$¸\>܇è°ÔGƒS¨n† T¥ âç5ˆX k ùý ôaq ;ù>t” ¢å³ÑÝè¸?ðR€K¡5É`Ù™±e'¼!€´6æÏÀk u}?C2à‡$_˜/‚ˆ¬5‚Ô"Ú÷Z™"…ZÈ×òIZÈÃòI–¦È¿AA7>Б¸Â¸×ê”pë(À1`ä7– ¤ýOPÑqk÷$8\®~•à=€U89®0òŽ|â{|«ð­"C±îÙÁ¨V! Z…úgË\È?Ý“`¼Gû@Þ ï°ˆ Ø"®¦ý1k¹‚:G|é‘~Q5mRx„n4Aƒel‰‚¡Çñ¨©¼òÙÕg²|FÃÏG|jŸú_ˆþú¤5 á¦" ]èSþa@óm÷ìà0 H+Z_#ÔWþs6úŒh? Ÿ€Á¶º" `™òÙ`})͇ò ¸`Ke:5΀ý‘Èh$ ?X_Ö‘Ñø—O²„Î*|ˆ©lT±Þˆ<†;} 7šoÖ ‘ã */ñô°>ˆg^9èA¿"Ÿ€#¸ÏG€i¾“O  JØåW85Ç™ôòÉp˜ò+|¼‡[SAí'Š0Â83+Pù·È'àšø+àÎ_Ðü/0Þ«”äã íS¥Ô¾ò)¦þÛ >û48õiÕWƒõ­Ayè7ä3Löp$Ô= ®Ã­‰ô‡ bº6pIèžÇ€Éz®(ñž~ÊåfÖÔM•¦ý«\ˆ6î`y 7ºñ䛚#sÇ sAâ_= .ãûZlšŸå4@嫜)âĨñ`.VàŒ±Ä$økJÄЂÙxSá}…÷¿G´uêÿMS#Rx3Îô<™{^ðp³#C÷9ºïõ1P—[ý¨9a¼ˆS"¦Ì‘Qà!ð•%çîãˆ\þÀ~ćŸ¦çs@Ÿ¦ õƒ±8FŠÏQ†7Tþà«}¶8wU©œR+¨8!½€9 _Dþà”ˆ#ÂpIÔS8¯a º”R2’f+”Áyq IIz‘`“þ&°a‹™ŸîäQßÖú«{Ѧ¼ðR>»æ„—& Ì²¿ÇWÈ)§äœ‚ð7YÈßp{eì œqoÉŠSø.5Î=‹‹#Gg‚S`7îeÜ:YƒÞ’5|QNÃt$ÒË}ŽŸÃIrŽsî9_öÈ»/GX >Páwø›ŠOû=Ô3t÷êGÊ)ÀRFº+þ”ŒSHpì:-x| æPDŒÅ}L`cíñÎÄ|Á·(8¥f~j½Òp ·iÁíÅgòËg/ù.š_"ê°kc=®ÏŠ[åéÉ)Ü^E¯k€òÀ+¹žK„Uñx¿Â ;õ=ªâË99¸£W÷»×bø<ÛÈ.« Ý8q^« .88LÉXì2ŠpÊê j8šòŒ¤ü(ÅG@!߇͂üÁߤ@&å”’­38/¿f§ÖšZ¦ÌyárúA)ìOÁ³–dd&ã 3Ûtdl÷‘1V†²9§äœ"ø2&Á”k¶áÚ¸6xö“R'Êz¬Æc?B=> R‘?P íÒJ ù›Ðç¦ÌŽÁaØßŒ›Âধ~$œÂ”#vúåžÐt‡1ç36¥½VG®-œ{Âw'ýÝÀLª?ⶈ°¹öÙSÍ`OçÇüMÌnÀ1»Çl¹Ã³±Ÿp¹æ9Á6ÙO˜NÂz@”°S4ëŽüÊùåJ9HQð7º'cŸžE}„æðýœƒñLâ ¨©x_¬lŒ(/Þ©úA„ É»”‚ ¸Æ‚c‡÷?²•H`õ#¦%°™JxÝIVR¶ºÄnÒ<û%‚ ÅÕ¾€ÛöûÐÚÈ=ÙÞ<äðÛÐý ”ˆéDL'â Ý‡ßÆ<ÖýèRx­Ëm‡Ä†`%2¤ˆ¹³œÐý ¬Ôu¸Ûjõ#A ç5©kC#{}˜jÐ©ÉÆGý9…ƒä8H8%ãxÔ!c…Œò7aÿàÞrðfºÍEý`:ç1ˆéDL'b:QO‡<Ç\®˜Ë3å˜9Œ¹\1çs^1çs^1çs^qŸ“Ž9˜t¹'œ{¹'œ{¹'œ{¡£82VÊX)s˜2‡)‡ÖN9´vÊ¡µSn÷ŒK‘q)r.…`÷ Á}C0–`¬‚±j¦ ïºw‚ÆQê§äPðBÃ*ÀW´ñàOÚx Òý ”ŠS*NÁ\×ð\×ødäNÁÚÔøœ»á |Õå¸þ7¸òÁoìaå|Ãv¸ò§@niøÜ¬ §³áY´‰SV•§¬+G­v?º”;Ö&á°= ÇíI8pO‚#„†å„†>jÒ jpžš z€†Ozš cGþàVæg1§düMÆ)8ir¦“û(;ï¶šÁJ¹”?pŒ×;¿ËU³¬ITΉ¤š/°‡UΉ¤\.p¥œẚ²>VÐ7—¹ßÙ¼Ïa;hrÒm¯?ûuyý\ÖïÎf[Þâ“ëõË ´º®ýë—LJ‡M}_“$“œñó5¡}¹ÜTì3G_º¹ÄôâƒTן\Àã YãêpÏ7¹öøûôMøûTç5Ø ëyþ>5ówõÕ'ôÍ~-ÙXÄŽªñ ¢a`ºùõ ÕÌ™2Ý^·7×_l+åà»»~^+CÜe<ÚˆèÜrK_´1óýd{_¬[õ}ÖHlºû—±>AGãa^½nóhà~‚޹ŸíêúîZ´•D}@hMg®ÇÈ:«° -=F¶Tðãn½Ù,ä‹‘4~àONSÕišKgH¾Æ¬àIÛ:ÁÝìùÉN¾£»ªÝ¹c$%6)ÏÌ,1’™ÏëbW¿^Ä¡è<°º¥ÑÅV¢XØqEã AÃ$Å2«ÉFË8 ƒÞ½Ð2÷ÊT\Úiϰu¾0ï§–5ó ÛÌâ«[!Z±ˆ/BÑ™ÁÙù˜!3/~»]”½ü^ÏÍ©¥‹Èï-ýCÜ 9G/¬=–Æ+“C„©—0–™•/äD,ŽàèlÀÛ;3E;áLöÖ ¼3l1lf“ãxVÄ{Z+ûѬÊE¼Ð4¦ ¥ó!S'4Ë noÄf+ÀÑùÀèÉ-•‹qÜÝïn—qÁHÕ!,ÕÁH6>¾;™íB>IçÕ!l¢ Ì||¹[?.›Ï: Üfá–šè0,ó©¸_o–M§ CÏPX* Ã°d_oŽ7Çeùw(ýí9–òŠ™ƒßжÕ²ŽÎ»0X*8¶ùt#å¿û…3*°4FpPéU–Êè±,«Ìº½•o—­1„£³Á.¶áXWùeS!hÙô;¤µ¬ð–ù\,[ßå÷zÎÙÀvÞ¸ù¶¬ï¯ÖE½tuŽÆŒyÌ1šN8–žø(Z¹ô/뇄3d¢¿'¥Óšz!áXææz»»Yº+a$ ¶F°ÍÍ@²ìJD{sÜ\ÿ›¸_Ö%x7ý¥/¶ýÉ ÏÌгÃízû°Pðb$•¬„–ñÁHÓ|\ºU0àkÜÁ¿™ü&¸›Ý.<¹­wÛ»º^¶û’Îz’MAÁHf>8Ý) U²¿]Rlwë›îŠò—›’&—逜(j%àKƒK“;Q´17· ×®Cc/A›'–6ï0ÌÙ}lމCÏíkÛ¹w6JŠ»Û›…RT‡£±€­;yÙå¨Ç:WÛíâyJáèLàô4µì cÙao×Õ²ý…ÂЀiHjÙvÖ†(Dûz¡zH:8í´i+É"SÞÞ×Ë–ÐCçÃÁ¦&è0,kø¶½Ùn–®Ÿ=–Æä9eZÇë æ½~ýö'Àž´^(XØv÷ËH[ÄÈõ}±lcÓah|²Tn;ÇQ¶¡°¾~¾lÙ#˜Ø4„bѓկéýq< ˆ¼²èÍNx£R¶ß}±Ý,[k5L)ØSÚT!¦mΔ«Þ/«$FÒ˜BÄ–õƒ‘ì=æÕÒeœ‘t>°„ËœÁH‹É.›(\êüó%M6QÏ í~sA[I㱿ÀÔ22ɲÉ?¶•XÌH¥sÂW¥Zté=–­Jâna}H XÚØP†eš®ÊÛe¡h @å—¶‰ºC±ÈιwXßiúÝ*ƒ¿è¢aâ÷T£^º+3Ћ‰zîÜx§šzv_öûºbõùrë‚1²Î#ßxfé cd3_Ýn[uIç¥,ð5.Ù›À¦¤3à;3zióO“ÒÙǘ¯,c~šÔòyÿÒct'’zÉÐÅmjK7’nIUµVaÅ2ý»•ŠVè?}»ÒBeÊðã¢åWGÕ˜„¦Ò·i*uT›®°­w² ¾:¶åá(86õµá¾víßKàYlh ø¶5÷¡Þí»0€ûÎå屸p–¶ÒÑÇmN6 ìË=îvu[>^$B‘uVXµ¬+cäåH³½Lòw¤©—×fÙtÎŽ4mòв/Û¬ïê‹ÊsŽ®±uà[å˜1ºeïw¼/ä¾ç_·»ûeü uÎbpf1/"ÚÌvÛ×˸!Ä#µ©ð ÅvÊw¸­ïµ7ßR³Œ#3 Chö›É¢™„…ãõ¾¬7)ÓmûëWuyÛòý9î,›ih<ÃP1°)×-4ló@{Øm匼–ò®^:àudMhÐ) ŠqdëÈÿêþISØ×u¹½i׋׮IJ:çÑ Œ®I¹>EÉrÔ–›í^ÉêJûöx_ï–ža˜IèŒãV>›¦™„e«¹ýîúéN¼–Sï² ç OãcǶ=ø ÏÂbáúɌ˪NGÕÙ­T±eá×Q­'°÷õa§NØnÅÃÂ14FÖ¹ÃZo³Ñ#»LL—¬„F §°å l'BF ;0Ù ±°‰IcŠ/ŲY.2’Kµi+ø_hEçBPç¿ÿ¦HôŽ­ò5v_ò[Z†ÆHAçq©l‡2F –±¿ëͦæâ{»úgü¥JFšc5,s-1RЪçíXÀHá⹌{‚za0]ÚTø.zä[þèi%|¥žKo½\,äZP{È „ì9bZ‘ ¾pÉœ< fYí6Bb.vhéÑ4¡ ¦àt¦®GsR=yíÐ3S6;É1²M¾^ìúsîðÀ^2°éi§Ü|ØjëR½ _ã ÚY 8a56ï­°–󸸹]hÓGH:K¸7æ0f¤{­‹4xgØ:ghÈÊr.{†méUì²t¡=¿_g³›3]³6ýÚ¬y©ÖÑFDcY»ËdnþžÕ?>ù·ßò³—+ÔÍ4t®ùR\[E›iXÎìE{óݺÿ~©•öW¿L¸¿™×j­=Ä53×_++{ÍÓšt§ê¥~½Ðiv–Üè>dÁRÏóäìýd¸p^ÚÅ'è ËBÁz6¥ŠŽÅn½7KÄIgâZvÒŒdë»q·”FÒùàÃê[@H6µÇÃö~Û,3 d$> ¬e]d$«…¢²n~²½™k)=^l[}NEç×:ÙÔÅV*Öi¨8.ëþ„¢3•ƒ)Kw"”éF¼l?ÃÖùB÷ò-:…3쉉㠌 ª\Ox:[%ز¨ xÓðOó§é,7`yf ºŸï÷úMUZè¦Á/¶íáöBu«™–Vœ"„¶S„Zö¢ ¹ÅýDÃÖÆBhµÏcÛY<»6~j¦¥Ré,9­8`ˆlvóäÌ¥úÓúuÞøyý(÷)L-4†üG°žˆlB¶…Æ’¦x Õ¯± !;·‰Qf¶j†yðfá8Dr' Q sc…ž­<]$=ÿÉ,9‹(G–³ú?ÍIÍÏ×û£]Ù©ÞªŸêi²[èø{Ý-PàȆÛ¬Ãl^çÛÃejI¾ÆX1‹l`À·ÙSÞ—Ùðv:3ÌXí)%†E5Èp^É¾®¿ mEç};·œÊä^ZíX/U˜šIè&àÐÒÉÍ$Ìÿ›øv¹Ç#é\¡»Ûɲ@‘ãù¥ëø9ºÎººõ0ñ Ý2Ç.uÄy2rÂ8üÂÒ»žXpÎx\hp†®ó…>e‹ÚrŽn9Zëë߯ëeúkFÒ9B–þÄH–ÚªëC½¾þB<²©òrý‚…†Î%z–í0×BÃñ_ßÜÊ®°ÛmoÄai…ê¸Ø4T6oÃîs_íÖßÊO®×9‰]Ψ™ŽÆ4+[ c™Œ¶¯/åYGÕØä¾jS@騖}Í Ÿìê…û›ò» ¨Æ&»‘¿o¢Ð³òÝ@Ào¬>¼„Ìeè Œ‹NiÿÕNŠ—í¡;ƒ¼`ë;II+ÖѦ°øcLR²ƒ"ž~YüD½ä¸ÑØTÂtÌø½Ü'Òg/ëM].¶¢3àk C!,Ÿ6á¾…ÑzGÖtË{ˆŽª³çƒ=‹òKGµjpàô¹Ø4o€úD@ç2—¶Å®SǺ&3 ã[†š…†E¿s/6ÔÔ]–Z÷ðuf1¨j‹ðjÀ_:,“s&è茧`|ñl`“xd÷y½®·Ýáã¿7‚–w’IJZ!úÛ2-Ó“”,æ¡.×KhIg®sÖˆõ„d;œik¹ùþ¢±Ø-;¢=GD8>ÏfzF`†O¬Ú Ûú}ÄgÆ|Ú„²3–ñUßÔ‚½J ªÎô|‹^\G¶ðÖ–k9Èàe}‹& #NùRK›%Ž‘Æ4ל^pGLæÌ¤åPs„m=\XïÛýõÓõ~™y´†9b/ü´™”h¸–ÁòX. F(:+ŠÀrFIH–e¼[†–­ÚʈŽçX”u„d{:“›Q.êï&#þjæoÒ¬]'aæöËMu}uKo³8¡éœ…,‚!Ùëä«zwAÚˆ—˜y±ÎîÍüüNZ-u†`¤/<ºl1Om²föKÙoÄ´Ð2Ò˜¶cÅ}½Óôº­>P~š$£[ñí¨P:|  ü4UÏþ^´K㬎^-7SdQ-Ë¢wßb¿°…€£³óh¶Ý,Ûd|,ž l(?[|ÿË9úˆ9â±íÞ¡3“RÞ›»€¤ó”p…Ù"z2šÍüça·Þ.‹Ï°uÞ8Ʀõ6Ž3|3“W÷µ\ý”Ë¥¸_z=ÇyÄ"‹q¶›:ÆèIlîwu[Û‡sÿ‰‚{ÀcDÖÄAÔ ûn5*k[œÓ϶ =ìrB(#6X|°©[ É&nëv½XÔ;¡é¼pðQ/·hšNˆ6±³Z.vVç|̇et’íØk·U‹æõçkùëfó8R8ë}ÏôµzeJŸÊìÉQ.‹ß.3u#*Wc«aÁÝb@s+vÛýíaáõ+'4+8êÙŒ Nˆv©ååöx¸%ÅÏÔ2ö©J?K´äñb»sÍCû”óБ}ä@¸]<ÐFõZr½Zcø0¢e§üm½_z•ptN8̨WØ „eYÚÞíLy( Y‰Kg3‰“¼8¶ÅÉHÄçÛ”)߈åŽÂˆã„9¶H#F–i/6*`Ï%¬ŽpGLòšXXÖĶ}ˆ¿:îî.زšÎGZõl¡VOˆv~>?¶7Ëõæˆ+®*›7»†kfìëãýZiºh‚—¨¸Lt6ùoë­8&fn?݉Ûû…W‰u(Gý51¾M!LH–ÕL¬¯dʈ‡Œy°hÿÉ¢¸ßî„üOJ¿ B‡ˆ#~*æÇ¦Â ÚÌ’ÄÝý²Ý.¡èœô÷ÕØâ’Eô·â¹N-\ iÄGÌ|Xï´"4K)ç…W|gÄ÷ßfiMX6èÆ+)FÈ¥»7W_xäc¦1b³f6§ïÞS±ÉŒÛoî–Ê‹ EgŠ/òm—R’¥/7‡Å]‰pF\p Ú®Ÿ–­*Ž•x-ª¥µ¬+³b½;x}¬Ü†.ŽÎk†­wAËÌÆ«õîöxXxå áèl°fÍlv¸„e\UµÔf8:1³a P,KGÝ.ì Ag€5U~b»ukë¯ÄÝB7¡c”?W@bY;˾ãv»¬ ‚ž=_‚d½€H¡˜sÿƒœ|Û›ë'ë…·zðt^p ¬o½(f€iSxå[¥·YvÌOg‰·†ÖË)˜ÙàØÖëf»[è_ÀX;Û·Fníñf˜á5èÍBŽÌQÓ™ç Ñ‚È2ñÍÒ³hùÅnóxýô±{ÒÈ\Rá6"£"`°±eUµ‘±p~ó(÷œ¢µ©Ëæ¹6Ð8æp/~ÙN. $löâÐÝ=u1»F ¿w’Èvmž‘†eÓ¤üf/u#kl&|†Ë´9F·¬_»eÑXä÷:"b>,g?ÃV9û½¸þ½X,­Ç±Q1VfàÙæí[ñúöúóûíÂmÝQg‰UiIa±„¢ZZg½ðnZ… sÁW.$íbÖµí~ÚߪÀ%vÞ®ÆSÁSBao¤a[Ž››íãB#é ±’©(-•Äh¶ý¦Rw¶r¦Ž ¾p«g£2âU0¯–•Že>þUJûë¶–[¡ý0Êé²ai£¢1_qËW¶–·Ò±í/gy’QÖ„T¶-µ{º­£¼Ø–‹:Ó¤tæyë]Ù¶ÞÓÄl{õõrÕû7eÅ}I…)èœóÖ´ -{!# ›õ×Qõ¤›ë¯·ë8—š(ŒN˜a›Hi¢aS  "òÃÛ_Ö½ç¨éa±Çê–6KÏ27å:±¾iÿ Ì™–jMÏÐu¶Y ªlwž°·U}ýÛõ¸;.ÜÑ15îjæ®¶EjÐp-sYÈŸW?¹]dëDR/J¿ÔŒ%ÿ Q«êø)]¿Z/õ Õ05Ž^kϲñÐp-2Æö~Ýn/àkˆ8b+d¶l²ÆÕ"¬nÄ£šRžˆ]µðšº!æˆ/Á|Ù C\ËvÒt9ÇÅwÆÏÓÙç»±-ØsäfJ4Œ®ú¦2ÓÒËÃkx3ÏLͶ¡°…KWWØ\â éDQ//òMãêDÓÒ^÷[ÉïÒx =–Î(kf›Ä¦la<ËÑó®ˆÖ|Ñ… üƒ13h³g>§`‘îv¢Ý?ÈÅt—Ix6*#¶3fÛÒ¬t,K䦔kÎÅst]ÖP76SÒs–œÑU7Þ¯h£2âš+Ù&ÐY騹ó;>–]U`¤ 3Í“ÕýÜHÃá·1Õ¹Ô‹Ã&•ÍŠÏ…¤ew3ta¸ÂYrÃ’ìØˆÄæ—3KðÂr-ësóä´rq¨Á °Fͼ°\ËBΓÓÊU¤¸®È,ƽó/,ײ>óäôred,”µeÿ7OÐ^.[¼ˆ7¹MÁ¦VBžƒFL´œU›Vçf©çF›äjž j«¯B1çn­piÝN“Ò9ö™c[¤ñib³ËÍîñ,LÊå7“‰iàÜÝ|†ÜE%ºø’1#±3¿qX.^Z&ËòòbK×!.ó!xŒŤ—‘êÏËÔ>^²Ê6¡eÑÐÈÅ4]ÔUÞÒyAŠ”Ý?ºÓtõ#*ØÝŒS┫8…%;/唌±:=“ú‘³‰tÎy ö(R Æ*˜NÉþ‘%cñ½õ^#¥ÎN-Ã&¶ÖãrùaoÚÃ)›¨Åœ’$lvÒ§°d”±jù>ױϕϥðù˜Íg~‚üœFйD\ÏoA®ÃD¤|‚X"¥€—xRó7 êP0å‚Õ×aQ¢VKþ¦âú©Náú©˜ŸJ«f~jv ª+N᣼š)7ìÑ EŠc5ËeH)ëÝ”åBBkfÅX5‡?¨)üA73RT‰Ú:üxLtÃÌ>‚~ù%ª„¯E{ÃÚ°÷VŠÎ‹gx~õâÙuŠüþTîþïðûI{Ømðûéúf}ÀïÏÔ‡ßÏ·¯ë~˹ åo:Û ü~ù Ê¿÷ðÐÿÇ!Ñ?lwUÏO{¼çß/Ÿ\]ñïö‘í÷ë›¶f„'ü,ùGÓlùÇž9ç'c?ç²>¿ï Ç?˜ËçGüø‚Ÿœå\Â/8Ëüd6_p/˜îWüd*_ñ·_1¹¯¸(_­ùGÍEyÉO&ó’›ð%å%#ý;?™™àLN©’‡]£S$Û»{­=ðù³ü¾¾ºi·;ûo»Þxý‡Ûº=Q«Lo{ÚÆ·¯Ö)"ØÞª¼›í¦²¿½’<¿½zzýR®g‡¨o×í‘Ùþãè‹?žò´nÄqs8•øZ ¾ën8GŽ\;±å§~zªÇ>íùú4»ÜÜrä·ýÇuÝ„øõÜ€;¹R¯ùy]ìê×ý;urÀDâ ^Ý ÑŠ¾\5šçˆº½†>;îîw·'𱓼ür·~dB¯Äýš{Ý«zs¼áÁô[Ѷ¢âϾñ(ÿõ]—Œ¨O¬­û*àNýj-ûh_HD¶e†p‡ ×@å‡Gíûùìû¯äªsž.¶;9Uµ‚ñ¾¼¹íÙûúØö~{{ßÏn_lÛ›Î\‰3ÆV}™é†®S\ýsâ¿þÔ×d6‚ ÖÅoè©óëçþÛÊ’¬}÷–;±ÙÞœˆÛ-gõéñv=ø®íkfêùú¾8ö¯Ö×ÏëþEåáI¸Á(:óM~ú}÷ì<¬9oº]·çDÖq}šJºÈo^>¶ñ]_wíöõiÎU³œî†ÒèÇt÷º¢ñ»S‰ü JýWíHðïxÖeÿ«v$þS=¬‡fP ú>àªm®ÚñnàJ û~Jm )Ʀmd O†=¢ ­ËAn(®ZmOAŠüøN<$xÕV!ž†r¼ªéÁÎDÕËhsâÊqßy 0Ø$\µú>AõÒ3Á¹ás×a)´ ¨½Òªfb@˜‰óúZ—Ë»NòŸ*ÐPRWm£ ëCÆÎðûºÒî=½1\F:ùÒÜ×&*Àe¾­ª5ÉÈãùï¼ö>“ØÎ(1Ð9€œi;‘›ŽÎ_ €f;)Æ•çm=U ¹á:G ©}³¾«Ïß /$ÎwÊLa8¹ L$y¡¾×ÌŸ^Õåm;Xü¯zé«38îêáø} ªýßr§VnoÚµ^gF[¸áØJ k'^ŸDC•¨Ô½RœïÚu¸jìHl9«-¶H²!hõÄÆŸh-f 2xM=ËûiÄOqñ©…ز¦|Œ;É™Zá|=ö]^àåż€ë Š+Ãõ<9ô\ke7ŽNu8Í׃™‘KïÍw§+D²Öìuöz.–+ã‹•®øºjǺ¯«v¬þ:-Ëç‡kE(Ží9Smž®°>gcz^ž¹€YÏCcW5}ðé[ËÕ½sĆN÷íh©çm=PÜ\µ5”±ÿ ÆÞPËse¹Ô:|ž¥ß3ÝÕÄ]“ÃÅ’n} À#ÍÙ•ñ¾Ãaëkšµ«VW®]Y.´ÔH¿u7uöDcÎo_Ó…žZîÊzçØÄD2±¯z6äéìV+s¦g•bèaæû“†ó€vwÑè…ù~ A!´Ûy=ad€01£eòf—¡,a½=e8€ÎÌW†bá𾓠tº¡cª#tà .\Ûeê…AF¸Ï`8{Œï0¼ëãö¸ÒbæÒMêÏ_ŸMˆZdö CõøU«kÈûµ[>”úGÇ-W­~ârÕž+!¯ÚñYÈUk8u¸jÏÎkF‡&WíèÜäª)t¯LÑ}ÏêÐ9ÏbÛ–|³þª=SÄ^µgºÚ«VW€^µç§$W­~$qejx««×¯Úó›+CÈJý•Iã|Õž«±¯ÚÑÈ•-¢¡ýýPù|u¹OçK;‘¸jÊâ+s¬8MÚ>X\µúÉÆUk:]¸jõ³Œ«v¬á¿jGgWÖXVÖœ \µ#MøU{¦~¿jGÇWíH%ÕŽ4ø6†kåÝPthì¯ZƒFÿª5œ%\µgç|Ã$[L’ÁÈ´Äþ|a?L»²D¶I[æ%z7Ô΃®ZÓ9ÏU;<‰º:óùLQúyÒÕ„‡û€ ›ù°_X^L{GëòÑ™/òp^7xþ»úŒ?í ¼g>¬ÃêüÌëÊÕSx'_ÈAÝ|Í9ôt®;×fßµaqðÐe¬Ádvî5hA›ŸÑP.ûö f ›Ͱé þ*–׳ś÷©Xðí“ß>]ðí3ý[ËôሺJª“VØÆJ4Z7;9¨>6oT¶ïõQ£_}ùê“ç׿}ö§?|ùõÓ—«Ô÷ûW_\½¸V©×ÏŸ½øìÕç«Á›Oþ¨½‰" éóO^~~ýûOžÿîÙgð"ö“@Ù2ß‹ïÖr^ÝÕ+µ¤Ô«ßtï>XUr’\—Ý…¡¿YyQæO×ì‹Í곯ž}ý¯×O¿üË'Ÿ¼|Ög¡'˼aÄylɦq¥Î7W7R"k®«íëV~þ9ˆ“¿¬~#kIpª?ïùŸ¯þ Ô¡ú/RÿÅê¿Dý—ªÿ2õ_.ÿS·®|…á+ _aøÑDÎWX¾Âò–¯°|…¥,VW V °•O 0…(Œ@a9È)«ßU¨°B…*¬Pa… +TX¡Â V¨òQöÆ«HaD #Rs)¬HaE +RX‘ÂRö½²Ô +VX±Ê'V±ÂˆF¬0bæNÙ?¯…¥p•(¬DaåêÛ\}›Kê…±ïùê¿@ýªÿ"õ_¬þKˆœï¥ ÊÔ KÕ³¯êÙWõì«zö}…¥êØWuì«:öUûªŽ}UǾ¬c"×Õs®¸Ë»_Š»¼ãN•)Oœùwàõùwà•øôUðUðUðUðUðUð•ê ¾ê ¾ê ¾ê ~ÈÜ©þà«þà«þà«þà«þÐ]fæ«þà«þà«þàG*Õ|Õ|Õ|Õüˆ¹SýÁWýÁWýÁWýÁWýÁWýÁWýÁWýÁWýÁU>ª/øª/tƒÙW}ÁO˜»Da% +QX‰ÂJ–²X÷S…•*¬Ta¥*ŸTa¤ #U©ÂH™;eëíg +SX™ÂÊV¦°2…•)¬Lae*e﫾૾૾àçÌê¾ê¾ê¾ê¾ê·C úC úC úC úm úB úB úB úBà»@õ‡@õ‡@õ‡@õ‡@õ‡@õ‡@õ‡@õ‡@õ‡@õÛ@õ…@õ…@õ…@õ… wêêêêêêêêêšÕÕÕÕ‚¹Sý!Pý!Pý!Pý!Pý!Pý!Pý!Pý!Pý!PsCgû¨¾¨¾¨¾ÄÌ]˧\`~*¥†u3ž²Õ¼|ýòÕ×/ž|ñÕhÚ¾:MÝÊc…&l5Y_ï»¶¼XýbW߬÷rûýnbÿå^òd~ ^ô«¤½jßOÍûrK±úůWíê_VÞ¯ßïJÂ˾x”¾\ŒF+È/´OÞ—lüó?ÿå×fôÀ= ¯›Õ/džÿ¤VÀŸý¬Ëþ7’Êûx}bSýµ~øëXÂfå”ö7üÚÕ‡ã®]ýBÖÀû’䇸Зê+|áýú½¿ ›Rµäõõg/~÷äúú½ëëu«Î€å›}}z]>lŽ{õï½þ}Gñ¢¬šøVìomzØÙoS£ù4gþ“½ÚS­äÖm{ý­ØÉOCkÛ¸›–.úÿ…” X~·CöŠ3’ϲúþÝ-K^ÒÉN9}Ù}Ó-2i—Þ-+ˆp¬¤~O!õóSz'בˆµê–$¯´“~:1«“Ý|µÂÆïVö³1…S¹––èÄ—ki‰z }¹”è«G½£ðŽÂ‘-Á¿îÖ`Ó¢w+×2)DȵOîâåÒ÷z}(åÚ©’uÁ¥"£Ù_õcºÃüçßh+âHø‹íŸýø/½øññ/ÿõ“çÏ_}þõ—¿ûìs¹§T%¶H)ÿWé`¨ƒÁr6|76|=#Os Ê4(Õ d1ƒnÕ/¦9ÑÕ«;\œKà”ËÍæÖj‹éz'º«U±«ÅÝ™°J”æÉ#ÞŽÍ¿½W^™~,«¯v[)š_ˆûúÉáñ¡^ýò=e.ªlÍ7ÛíÝñáúŸ\+ìÛ’X­Ù¿Þîª$s&¸þ×O~ò·Þëö'¬æÿÂèo˜ñÿê„û:þùÿŠòo–¨ÜŽqCœÒ 'ðìœh­]h%žÆ³[Í{¶š/ðýt®æÇt×í}kÍ" õ²HŒYvü,Öpœ úZ™püÌVgÿ)„Ÿ~´´Î$ÝyÎü s£{Þ"²5æºK˜†îcìž¼¦Iú‰‘ß•½SŽr[kìZ3šíÁƒþ!Úý|;x f#±/×]ÆØc†-¸gW;­ Žm5%{_Ûñ£8Ñj×i~ˆ=g™ ä Ê´ùÚ)£ØqLµ¨õ XBÝ2&j§ùh6'­Õ:£Éµ²™l;{Õ‚z‰Âd¶ï²™b/Òçɵ²ß˜ë¶y|/›Ö¢îÍYÑ¢Z[Öbóp²é0&f;­îÈ|aO§ÉFö"/°»Cçß5Y“AÚðËÆi½²ÎƒqOýg/'îqÍDñÄ 9è߇Úa"‹'xÙÃØp‚J˜;Ê3™™L¶Z:!™9å1´¦¸˜† WÕèaàÔÍ6N a Mµ›õL·R~¦‰¬§3° ëëvÓ™_NR‰¼ÅâÏfnˆteo´a&ÖßE«Œìm¥Á¨ÉZ»†™‰‰ƒ0´Å\Å0šgÔ:œÕ®l?з]Ù3ò[Êv`[9ÞïŃ©N¢,±ñ)sÜÌ®fþxk£oàò9!®$É[êÃahnû0-n%Y¸=ÀãËÄcèÇoqzà)AJÍÕå¹Ëì@GYb79D"?uÊÿád %ÉE™q~ôX²é ù[ŸdŸûv]f¶±1§9˜ç§¸`¼Á»œë88¨Òx„³žGÒq¤ä¿qØxŽ…8å¨=$ÖÙJ-£±ïd¿‹&f‘ûyžWÙÅ›ÚRÍ”.ÍG#¿3ÞY¿¬Û(¹¹qim«ú@â;ˆPºšGqì°ÌF3†êc¼²™+) ­ë©Ã&ŽËy¾žN®Séx&†CÚävÑÚÃFå4OSA䦂›ï\Ïg´F«õÜÚLõùáø™_„ÏWáó¶T¶Ëst²*YL“\Z'¤P“jÿê„3^´MF{cfÃeíù{q?Ù»?ß®h¹¯wмñÖã|­/Öìae’Js£Ü •bNYÄ¥8µ°Ã©ºî¬¢Š\L¦×ŒYU£UªêÜï•÷¢Mi¦oE®Üï×-ü l;ŠÐ¸Yô†µØ:ô†`bN3Ïáx1çÿW)½½™ºZS…Ünç6/‘]•¡”Ðä—:5×§Úlp;;!+þ½™Ñpët¸à$…-yêMËÜѨweÐÕu®‡Ö>:À¬^ó þΔvjÇFÎbT¢H멪†Ö§õ¤ÃaÑÙÑË6ZÙ½Zgy—qñ»š³ÖQ1—ç3\pSv®~sÒJ2êÓ»¹ qR:ì,Víù×phŸœfú‹Ü»·ûʤ‚7ÔJ¾'7Ü™½¥›®î›­œÉfu8Þh7^ÃGK CČ֭åG­â¶þÎaŒf)]fî# …ž†ã `]£ÿçs×NùÍ݆âL(µU‰ƒó cmWäRpeï>Ý—9VÊ[CŸ¯n¿qл:­©Jk<ŸÿXÚSÙ8ÉÌA<*ùüܽʬrömç>w@4Pj«—Ùµˆëø|väÊŒóDYuÛZVÖAkµ8¯¹×âTÉÕ éÐ#s‡Ù¥÷ΣCžlÁ¡õ=õKòÓ73D»˜ë“ûiu 1ÔöTMºíňj:9ÅŸ­ï æöl8 ŸÁçˆ5u´e7‚êŒä”V©8¬6Á¼ä8¨Áy~ÔAÅ¢œ–E­u­Üè+xÑ›­¢ØQ¨É眭ï^»Sh¶~Íð/Þ N—ïíÔÍfë`1Œ ¸\kèÀ7)ЊjÉÉa?Š„ñ€@cZ~ò¦’ò[ÅìPTÜÒy)õâ#ç³Uq='$©ÚòÞ‚~b¿uÉI?½T³º΂uB™ûœŽ³,¡?¡­»E¹©ysÞøÃÌ];_ZE~|nF±*Hƒ?rÓ¾¬Ûön–…ÀlØ4Üï8Iwº™ã­uÀŸþ|oFç+ëb¾ÃDËÆþ°\Ê´iŽ¼ÞƒË×¥ƒ¥D2qr«kkfµsÑ­™¹²‹ tFߟ·øØ’hÝI éõ²wê#víÌÂafð5ÝÜa½sÐ-N™óhóÀü~" FzÒ­\ü×w“ârk ¦âÙjÂT9™iër±*Ùü}¼SÒÊy3»/ ¦f¤sŠŠÇ4­£Ÿ°M0ôÙílÝDö;–#Jý/ÑMöE[9œ¥:ÎÔÍn[­6Ðn•!ç/ƒ>³A§ë¼úSe&s'Hk—Ú͵ië×JQ4‡vÙݘ;¹«uànlßd‘ê×êÈö8É·o¶ÔÑϽF«é¢hÁÄH!"·Þ(8pØí)nØsçZÝÁÐùrƒÝóëbWíjá¥ÉLóídc½vq¶UgmX¡yÝYÏ9$ü/ù";±áîÏI®s\?«.´Ø”Ð*e†Q­mæ'ó<áP:‡ƒOg„〤ãÜó•“£wlÑs&‹¾v9üž°”ªöó‚@㜦‰9¬±i÷Y=w!<ˆ.4º•˜Ùjn²ý¦”§"-ÒøÛf2•›ùTJÛ‰ÎÏšQòÖe]ÍÚÙm¨œdÈH·¤QZ®ÙÆíÜ÷tËÎ=¢|ãÜEË$йØv›‘9¿ÙnV›«(JîôɺUgðàæö·hÞ2ÔÔ›àžVåI….ÿÙÏ©×í¢ Wk«³[äi­ÔO’ð1±jÏ'7Û×û>·/ÌìVOŠ%k„ã°çt³”SÒº:kšž«ôs¢ûzöÐSñ˜ÏêP_w!kËõÁ>ö£enÓ=v0ZœÜߢ lÝÍe}pr‚‹.>w®Ù.Ǟɛžp Z±ìަuóî}SyT|iÎä>Ôl'0h'§±eZÕ7Ÿ!{Kuƒ ÷æ}ä–nÔš9Ó5Ÿi-+å Cã0tÚmΫIVj%_l â Q³©6ëo]4A˜FA­âëØWjE²Zl?_7?Y‰÷û°Ñ¡öOýLüAfŽ%º²9jŠ·›jÝÝ0q^|¶¢vŽM²äÎþV¼ž¯›±Ì=hOs’`,YÍ÷-±Oq¶”îÖE‰LQOf$bQ·G«êy $еުUçÛ(Òúï]`;޾¯­ösҌ±{nÕí¡s[«`jµÒ¤P¾0b¢ÿš>ªªËõ}ç.YLl#§Æß|ÿiÆ%*P΃º“õl^ùþ¹Ф·ÒëRôáÞ-uéëÖôÝvj¦ø«©5ãL6ûùó–À›‘E¿sÚnOi}ŒYõ§Û cÞÌNúç uÔÝ%3«û2ýÜì:pè®÷˜æ>­Íòsþê~æ”ðµºØwN Ìz/[éXpضµI°RÖºWÝÑ=d3çTuYâ†RÑ_Pj åzÅ¥¤l‡<%Ï¥úzŽËtÝ¥c.¥‰~i¸wr°j÷ukT]Ša˜\Iž®fÕf«þ¥väfÝ:Ô|4§%Åj8=õOJgmµ›ØË÷õîj1¨ý—u<Šd-Ud@0A~l!`“µf÷Á‹ƒU-í!Æòmø²y o¯ïnÛy#rßìãuÞOúë±ì:žeúrm×Å·‚ \ vžIäB1uvþ¾}ˤjdJO:$e?t ©ã`Sw¶5‘7£ëóL§ú¨îî09NøÁÖÊRNc¿œWS}̰zÁÚ{`o=näÈn¹¯F¯Ã ³ÀžDÖš±sþR+Gó¡ÉTïÒeòùùY<„ïöG—ñî¤ÇQÒÒìÉc0Ö˜OSD¨©uQµ¸&‹óˆtÿy‡óiµÙé˺k;[º;ϸ¢Ží4ÍJwôc{Öê ̵8äB­È‡zÒŒÃ{.ÝÐÅrÓvK#Ÿ³\<c,¼\ª—kß_X;Á¤?öBYÚ;,Š·ÈµÃÝÈÎÁ’f*4ä¨gíÕ“=kÔ>-ß<9¥[éO›ñ‡Á%¨Zl¼P?mê¶J³å®g0ÃyHɳg¢AÑnê¶Ó.Lì£Co´²éʰó-Ó¾»”\ ƒÔ:ãêîÁÙcIsX8­æcKn2åÃíÆEžçÆö™´Úƒóa&›ÞJŸéˆ‡ùR$+§Ãù¡5L'ÌélI_;Ô_ªÞU¼f[W‚Q= -ŠñÌûT÷rœü£ô #)íæø`ShÁü‰œ&ëÐõ¸Ó¶ñÙ,tË®ÚÎÌÃш²E×ü…º4á`¸:×pžð]ì@|_[»7ëýq~”Ä3kïãÚ%"­?+ÀA£½Ý̼ÄÜϼžV‡ù®ñº†3ÜÞ!ïx†œ¢(»ƒÜœd­‚oNµG¤ŒÆÚÖd¬äüy «U'whÚ‰×?›•æõ?N»â½Ë ælkç¶õôëgiëÊÅ~Ù::¤nm#¾ÃéßÙ9¯§g2ÍN˜Y{‹nÊeÍG3Ÿs#%Òí¼ÕÚàp1©OùkÏêï#Ýë_îøæ¿©¨Šg#Li;gINµ=¬¥ :ÝO‚e¡f½xÖ²³ãή“Ÿ§têcia&°mñØvÁÔ¹‘ó C³C±ëGØoš„zP¹ðKáf?mœy¦¦Òk%5L+7#}I>Ô]re´›õ½CÝØ7TæûEHn-s!\ïp$bBçšJêa­ä0qÐ]rX§o¾ç“'óü‰póÓÂ…åÕøuÀÕ¦ÜyõD8å´¡o~Èø|JJД0ï ”-˜¾‹ZÊù³Xr3¸¤»×ÕmÛ:«ô7!è[¦Ýýñn2èG`>VÔ±õM»•ÒÃDÄÈùÃÉÁ¬ôèp#?¾YcX®ÇµŠÅ}['º(†¦z¡=XÜýæÑÁÑ7¿0ˆCsCé¦(:lSz¶ivžÓïŽgg)E:¬(öI­»«õ¬‚w<¶Ý T¯ÕšjÚ‰Dé„rE…8Øoïjû&ÒUÛAÇW¶^s¢¢„p‡Ý*úËú» óëZ´Ã¾íQíovÛŠ#Pž©zÝT²»o\6€ú.ê`cgÊ´D+ Lg'Ž!ƒù‘f¦¾½q zhWîFJ¢É¥.ú^ù7²xW#fj8tu»;ѽ½wi5s¨¡Ô2ëÎNý§œçJÓý™$Ì\¼v±_hܤ½3ïøB³¹ÆÊ·óSc88ìéÄÇ+Ã`4>:$^åN2›÷j6G8.’ÀÅŽ€«I9v°Â·Ž\!0Ú€Ö`¬Ï»«•tA¨6‡pç«ó–rä*z5±£òÜJ,e‘»üYë ‰›ØvÇÖ%àÌ%.Øó¡;#ýèâf+»Ê¬yÒr3x‡Àâ+´×iಉ\ÙˆþêD )pªãÃfû8Yi‘]þøÖÅe,0«÷õÃúº¾m5a.D#½‚CÛEs&νºx:ð™«ëÇ|±`¹™ßÍÎå¢ÝØágÖæ±íq Ã\{«†ã#íóî”ü6ºª¤¥Šß¬ïjë\¡?:(¹©·÷õAE9º–+yì}#¾u¹@j´2›myWS©lN¯vÍÛ¬U™°”ÛûB™³ÝÜŠM#—;ƒ9Êø2'u˜% 8uN¹†·Xº[å)êdp v& àXæHîóÁÕ­¡ÃÇ´Ä·Áü±®aŠâ\$ÎîÏ\ø¼¦TßœÙÇóA÷æ¹–;-XݬÝáfH§º{ó¾e«=‡k¡Âñü³Ý©+²%ꦒ­†ÁÊ‹o]úÐéÐ¡Õ 3ÒØ1Á4ª.q𲵯0o5!½^WÃè¸Ùt¿u‹ˆpjŸáÞ¦r®ßÝÌÜ›N¤cÒ³0yAØiʼnæO÷''¹­=Î(û§`ê4ª3[VñÌ÷ÇÀ‰hè-²üuðg¦6 T&š³-‘‚Âù8ÑÓ<:ÂEæÈÍñ¨ž9òìþƱG6 óv÷\:«Eæ{Glõ¢B×÷“·’Fº¶Ú²:ÍÙc´ÏÇVµF£(c¶¢+×í”­v8âøDȳÈî;&ÇÚ½ØlÔdõmgöeçÂ|±u§²¯vP~h¢¬Ú”;('Ô¿'Q[ll–{¡nF{³Ê}úäÚ7‡’Ö5ÿ›¹;Ç,šÿ7‘N[)ê®oÚi› ÝÕxÓλÍS—Òöë'sh'·éÛºp˜Äô l¡> í)..Ø[A*œ-ÑvçMûÍÃipõSÛÓÿ™SÛËúæô´ÕÍ6j…QÚ†òܪv¥¦·tÌ*Érßb¯Y¶ÌšŒdÎ`*t欈"EŒoÄýÖê\šÍ¡t žƒML0êr¦¬‹I;A»TY¬«yS©àm„nߺ(‚q[:·@µŸ?Ó . Ü7ÝïÏôC‘~Jä2¯«uÑeš×Tw 8Ú±tzʉ ×J‰éVÑãA‚¼ ’D$Cøþ¡^ô¦“"vU-;`Y?˜$ã…×M\6ƒÚZ¢<îvu[>ZdÕŽi8y3l`vpqçw(¨ÑEg]!ÛY¸P9Ÿ1íá$×íhÛ™€[Hü;‡ËŒ¤ô¡»ÌÞŠ›ýÃܺl>…Z0Ý9œäë×Ù9ÅV”-à.+í·Í¡Ú¦½-æê†Þ<E_ty <ÛhràÐ6¡ëe ·ë›Û“{´1Vd8eқ̃-é|8EkXƳÑ7wåöþA.sÅZn­ ÎAáØ®Ö°vsþZÁÔèsÑ;}´rc‰[ŸÖsWŠE®ÁR‡úÒ»ù[Éý±u—+õ‡ÛÍü¹ç(`– _ß­ïÄÝÑÎØYHøAžJ[ä°¹™nïNñTÕ8n½Eæ86…÷ÓÚHÖçÜ%8†ŽèúÊ|¹ôàU.Áç/ˆ8«c'—¹ñq£Ñ ÔöÎå\ÖÔÜùð|øf§Ò ×YKE¾ŒÉ^.Ë(×äêÈl/>ýõØœŒÝY.™»ž.y›¸2w9ý“÷9<­y×i¥Œ-&‡³tHÃÎLð÷¹LNW’ζnø}i@´Þ: ‡jØp†—÷±¥µ5иmŽ.šÀvðrDîg¯9vÑŸú÷~•jW;ü¢‘¥í`¦Ã÷ŒO$Gû1‰­¶ÈÖõP.Y»ºs²ðèüòÛzוm‘:œ²Úwª3Iü´C —ÂTõ·²Z”——}¢ßF©™bo×3«X`½3D’þÌþÛgð¼—»êì3ªªÐùEùÒ;(e'¼»íþvJ–G;V­è «…ãÎYM†é zaIú•#kׯm8e79aCeÒiESõíx?gè¸]x]ª…ºÞ¿¾­[%6Ü )@œ§ùK÷¾•ÖW·O™Ý Ef»m®ïÍ£¹VåëpRõw©Ik{7rÒ2µ·U2vؽ*½Ð÷b£´'Çïo1Ì¡¦»·âõíí”3Nd¯·î4cþ7•hµ9bûÍô]Œ«èí]3¡9ØköÙaÂijôßþ>eCÿ½Ò³›A'ÔÚ+å+«å|t‰NèÁ\<ÑUF3{2—+èß`Ì ø]ß³,Oø¾Ï)Zèo*ø‚6â6âQ®¡¥ØYÃÒGv¯?ЮØÕÓûÀUgbæ‘|LŸ™õSt¢(»VÊ>x6TQ8ŸV,áXÕZ°×O‹]mCóÉöP¬.çbêòmÆ™÷OÌ;e£¹kng8Z¸fχšU’Å  Ñ6;s×Õœ¤í ‹Iuÿe£]·Šçq3Ýs× Zš‰Ç¹„ÌéÌ[Y}ûy3sÁq}Û•Ív²Š‚Öž¦|”#x;ÌÜ5øõÜü4»öfK¦s›ÚhÙˆ™mû‡’üKÇsoÔá”_FäJË!8[-ð«X·¢¾©Ek»7ˆ¸»t ~:G™ùFÚ²Zqd|]&äMû¤îDÇq¸@…¯=”| “Ý:xûn6ŽwwIÊ2¿Ñ%ÔJ¢˜Ïc™“¡7™Ã¥ GS8aÇb…±{Ô îÿ‘ÝØÿÌÊho2_§'ŠíË•Ša>Âq1ÿ»\y¶›VMG®÷ æÑ›ÃX_O:Pζ¦ÉòŒ€vRJ¡Øgç‚·`ýusüÆÁšx™ÝæäZ|Úùöµ†ï‚`®wíÜ­7êOß+ ·Ã‰N8ª©¹ ´ÖšH[‡`þ”5Úy¿w°QˆÌrµ6z$g÷ÛfŠ»Ð5À¸C«Í+ð «…fS6g¶B«¿ ¿Üa9¶ßÌ·çøè懙m¸ÃÑH1D¦wèS’“&ûc¡˜eÏÀÕ2m ûÛYŸ«3ëŽ3*LJy/V?}CÛ®Çõ¤œú ã7ŠEèà㸚rasˆÄ‘›ŒøÛÎ6cnÇi¶Ïø{õ÷qÄÍ­ÃÎèûÕDh2ø¼»¿Eî§=èoÊÃȵêÖÔVmá[ôÖù¾qŽN‡n,fóÌ·ÙEU¤ª9ñOE‘°ÓÝ‹·àb…SùÚå,`¸d xÍ+³Wp^sàëív˶Ív…F8»’;—šJrîC˜E§®ýÍŽŠD[™ š—ç‘yÞœ~j¡“Ñ9øÍ6;V/pìO»¬9¨B [GWê½±ü´VùGØúvhfÓá´ú{õ§KFø)PÅT辩[ï~ÛÞ„—h ´<Ö7·Fï¬aš¾l~ÏNH?¾.ôvºßö¡nôÚuˆÈæt½Ð¿ÎF ‡ƒJô‡ ÏýfÏGÓø²›;ÑÇiL8å7þÒjoŽ;ªµ›ï¦ãH†n Ÿý”ÇÝ~ý­Q‰æbËOÆ”ç?KÄ—ÑF‹ e“ðB{lV MkÄíËܧÚöQÌܽ&ÙÙ<0_Õ~¿€88XXMÝBr^ uY× Ñà’Øu£Þ¢ùè² ÇW1}­=¨Éã­C´"±{E}óèàëzYê÷ݳ‡mÔn»˜®SÌÇËìK~Ìs´K¯Umy[Ø©Àj?œ¯Þ? îP_?åJË?„5ä;Üw¸Ã¹ÿÆå–žÿ;?®Ñj¦“ V3NÖãêêGÒ~LÝùCÇfvë™ó‘ÿa{æie8î\n~ü=ðL–BSѤ¿¯óßÁáʼEýêü†Ì˜þ0[þÿPÞÿ5³¨2S_ ³Ï?yùùõï?yþ»gï¿ÇÜý×{'NwõÍz¨w«rÛî«òVìV¿ÜKú¯·»j#_ýYûËG­¸¯û,8ù×3¦ßÿ¥dgõ¿Wg©ï¯~¶ú?aðþê7¿YyªÌÿtóPïškåòy-qÚòþeÙSqÔGû?Ë_Q8?ÿïçï2WlŽ»võ3Ë_÷Ÿ ößë?ô~ýÞßÞ“?­êfÝÖ«¯¾þò«g_¿úÓõïŸ}ýòêËrºö®=Ã/>ùâÙµªÉ—WÿþlµŠóþ“'_>}výõ'/>{öòúÅï¾èy‹=ÿ½ÿñßíï›ÿüÐÿ(ùø~[7õþãm»V>÷âãý®üXî+Õ}b×»­l×Ããu%÷î×Ûýú»J÷<<ÏK¢h¥žiwO/ XþÕ%+? Sù+üp%ÓÂ8ø+ïû+öéï¸?ˆdåµÜ´Þ4²ÛY¾“Ÿ5Í®0Þªþƒü}üËÕ'/^^}ød¥Zz%[º:–r„«n,¯¾­wJ‘° ?ò> W¿üø=‰ñd{/ÚêC9YÖ¿Z}ü|]ìÄîñã§õ·õFõ”ñÁsùþÕv»Ù|Üï>.ÖíÇDóÃW+™á‡åêÃÃêÃoüՇϙ‰?ìn²«?TSÈêÃ+î‚›íöîøpê‰jâ’_o‡‡ãáÃf½©‰ßrÊ™ê·ÄÁ© ]W½ëî.ùÕêûŸû„?W_¼÷S9þÓ/~ñóÕÏÕt¥f:9ýâçÿD`ð'FJ`üþê?0quÉÿ%§øêgfÿãçç€Ñ‘7"ò>%ûøê—2_ÿL óõшƇ”ã«L~L ³é˜hø”ÌÜ{C™ËˆÀ`D#¦dæ6!k1%¹ÌLF4rJfnE Wê¯ d.ÿg&ã:ý %3·ÿB ×éÿM sù ãÆý”’¹ŸÈl=%ÙzF`>¢ñ¯]rÊ•øÌÖç2[W†#ÿFÉ\‰¿%+ñ9Ìå¦#/(™¹ý’@®Ä¯:0c.ÿþˆÆ×”Ìܾ$+ñÌåï×éï)™¹ý\§$¹üã:ý÷.9gnÿL ×éüÁÌæ_Wêÿ¦df÷š@®TA óU80%%s-Vè{ÌX ˜9kÇÌ Ò¹&o3okÀÌÜ7€ÇãæéÌõ0Wç=`æ·%Ø-Ò™ïÀ\£ÿ ˜ùÝÏI{¤3ßÀÜøGÀÌï·€ÇÕüéÌ÷w\Ï€™ß¿×ó!ùþs=ÿ 0óû'￯֕W·u'#‹R‰àûú°ZïWíö°RT+¹œ^½üòÃ$J>êV¢ŸÖ»Ýv·ú ­M7u[ï„Z•Ýí«jÛþü ÷»Õëõávu¸•Ôêïêò¨–,=£V_mjµvîê‡íî°«âx³:lWÿS>?¼iv™ü?ò×GÛÝÍ¿|ô™{[­%EKÎ?ë3—À½¸«¯‹éGu+¤Âa™úW«Ÿ¿xö‡çW/žýüW«¯¾|yõÇÕŸÿü+$ýê/Q{¢Ä®äK)m>‘´¿RÖ¾÷äëk|ûg¹;Xý×Êÿà=ï;)L‰Vx¾÷·_¯d†Ï^<]m›Õ ¡cEçä“ÍíòÑ%8qÑ} ?%."Ÿ¸ˆÁ à°—p,Ÿã}÷¥Gp•\e7€‚ƒ’j!(‚+À5áu¸\®×FÄzvpJøaN§€à p¸!8Ã÷Y8,—€KÀÄO(ˆÿP„7à§I;8Êè}”Qþq@ùÅ!ÕwS~qœÎ F{ÄñT¾¸¨7€A¯Ä÷e8Nƒ^z5•/n7„Ÿø'>½OÀ1á'à7‰)ÿ$¡úHªà*Lõ•ÔÄ_Rg€+ÀÀo¨~’ß7 `zŸ‚Ÿ4~ZPý¦%á§(OÚPùS´G úê©àÌ#zÆCæÓû, ü³ïcâ7€ ê_YMíÕÔ^ê/‹ÎCâ/ˆ^Qýä±GpLõ“'T_yJõ“g€3¼GË3ª<~Nùç‚øË1^óï‹p8œ%•'GÿÈKÐ+ ÀÈ¿ÿ%¿¼Â÷U ¸\¿5ÊÃõÓP{ Ê+¼p X&|áSy„Oåñ'*¯ñ> ƒ^za8œ¦òˆˆêGD)`Ð ÀT~ƒßü£ÿ‹˜ßƒ^Lõ#0‰”úŸÈ€öh_‘U€QÞôѾí+оí+о¢=ÌÏí+оã_ }E‰÷h_ö˜Ô³ƒ1 ´ŸhPÞ†ð ´_ö+Ð~…W¦òh¿íW ý ´_ö+Ð~Ú¯@ûh¯㩈¨¿h¯íU ½ ´WS/0_q ¸ þ0þ Œ?õìà ü ½ ´Wõ Àü_`<9¾ÏcÀ9`|Ÿ#ÿüåŒOóYõ£(ŸÈ_à{´oQÆ|_`=-0~ ̇Ú·@ûhßã·Àø-1–hÏíY¢=Kò+Ñž¥Oå-Ñž%Ú³D{•h¯íUF `|á{´W‰ù°ÄzXÆ`*™€?´W‰ñTf óe‰ö)Ñ>%Ú§Äx*1žJŒŸã§Dý–?%æÇõ[¢~KÔo‰ú-±Þ•Ê ùW4”O%ÆSÙ€¬·ÆS…ú¯Pÿê¿BýW¨ÿ õ_…T?ê»B}W¨ï õ]¡¾+Ôw…õH=;8¦þPa¼T껂üTA^ª0>*Ô…ú¯r*•ã{¬ÏU.ƒ_È3äǪ~‰ü+”§ByP¿ä˪? øiˆŸõY£~j¬çu”®Sþ5úS€#ÀàpXý ô0Ÿ×9ðóp˜ø­òàWÄ€cÀÈOýµ`ä‡þZ`äú¬Ñkôßõ[—À/ñ=ÖïõÙ`>PÏFý5Q ˜ÊÓ$ÔŸÌŸ äÝòsƒò7(StßûÑ—;ÿ„`ZŸ»'Áà†àß'ÁI ß“ü)wü —1\Ló¯|V УõQ>SÀ)à 0¾¯ð=ÉòIô_ò)Ó÷ø h>“Ï 0¾ñ}Œï|Ÿá}†÷ÞçxOë¿|€cÀ _Pyƒß—ø¾Ä÷(oPâû üÑxòCš_ä3Æ{šå³Líf”_˜Fýb?$ŸÀo¨<O?¡þ#ŸD/¡ùÅO2¼§õÓO@/©Ó~ÐOª¯ý)¥ùR>é}ê‡xŽÇ€Qÿ)øIÑŸÒ”ê#MÀøåM À$_ûi ~h}íž—€‰~~2ÚŸúèe´ÞûYõ—£|¹Oí›? ‚CÀ?9ú_žP}ç)`Úû9òËð‘_Nò¡/Ÿðé½@~o}AûS_€ž ùª{*¸>ä9òœ_D€#†‰~~ Aù¢Lý¡ }ƒ_ÔTEMù´Ÿð!¿øeHïKšßå“ðKŒ·’öÿ~Yç“~A>©½KZ?ä3Lã£ýŠöÛ~…ü«†Ê_ã}ƒñÒ`¼4>å× þšï#¼Ç|Ñ ½Zå3œ.€+ÀŒOã§AùÔgCûUùL—€kÀÔž 懦Ä÷%¾/ñ=濆ö÷ò‰÷ø©ñõÙ4 ‡úi|OûûÀ£õ¢{Ün¦ù.ðH^|¯£×= N§€Á4Þå3ÎWÁA8œÎg€A?`|â×'yW>KÀÄ¿!ÿïIÞêžLóMàÓ|DÔ>ADú„ýYNÛô}Ž¿$}™|€ñžê?@Ѓ* ú¨‚p ¸Lå«_•à=ÍÏݳƒ3¼'y/¨`Áp˜ø© ¼/ð¾ÀûïK¼/ñ¾Äûï+¼¯ð¾Âû ïk¼'}QP£}jÒ·…ÉÓò™ø9Á!`š?BÈ#òYá=•7TrÁ /ðžäƒò|Ò{ù£ÿ„>òóI> }ª¿Ð'}jè7€QûE­÷曼©:X@žíDT¦õVÄxŸÐú( ß“φ`êßòYá}RœF§xOãU@'R¿ëOò 8¦þ-ŸÁ‚øI©?ÈgJ0éKEæuó|†€cÀü^. ¦þ+ ¯­Ïë©ÈJÀ4äß7àp˜øËi>y@ùa}yœN©>±ž èÛä3Lõ‘Ó~¦{vpïiüÊgïäßPýc=Ðg ò Z?„?"Å{Ú¯uO‚k‚ Ð+ñ=ɇò&þEEõ#*пü Ô§ ùD@$Ÿ à0åWøxïã=­‡òÉpߣ¾ ’7ô7¢H_Š÷$ Ì—r›Úµw…þU¥4ŸÈgA0µwyª$5Ð×5¢êæƒòKƒò4Ð_Ég ¸"˜Ö‡ú¬¦ñ=ÍòY®×G ù€AŸöïò™\à}EïÕ>_ÁÉ MEòvS‘~£©hÿÒT Þ£¼5ÊW“¼&ŸD¿¦õX.×]û4 í—å² 8œÐ÷È ò™€‰Ÿ¦Âû ï+¼¯úý6TžWp ¶\^€=œ`Sè…ØuyaÉ)§4H‰8…·Š^Ì)§ðî͇ø¯,´(%ào‚¼E Hg&÷¢ý¦ÕÇ®4 9%åsSNaÊ!ï=ys$K"¥äíoÉ”+)v¨ç1˜Sâ»Ö˜ù‰PNø›”wÚ¼õñÒ”yó#€NÆX˜ÕŒS2NH ù›0åþ†Û+ KNA{eœ{ƹg)ïݹƲ»÷¬æ”ûÿŒxÔÐá-’—ûœp IiòSÎ ”4‡ ìa¦Vš|ƒ³ Ÿ'Ô„SP.áó7>ã§œ’#%äo¸¤"EmæGp¯ÃÄìw{¤0}•7W–œR¸M ®Õ‚ó*RÔo±¼‚Î|Vúú¬••?ø›²VÉü@Sé÷ªÙc¤2ÐWy ¥âoj¤øŒå‡ ãÇœ’r MJôƒR2þ­ãûtЩ~DH¡©…~ ¥äªU?àÜå)4¡Ë!èè½ÝJáÜh•:õÌŠ EpJÅ) RrNÉ9E0VÁ”¹~xn‘?BN‰9¥äÐa-üR„Ó ÀOò7aÀ)L9dÊòG…”µF)§0e:bQ?˜nÁ0æ¼bÆÂ>Vþ`ʘ‘üˆk5*ÑV«1§¤œ:1cÅÐxɧÔH©8¥BÍóìç'!¾`K?q Êžp^ çÅê%?õQc©r¥zŽˆå }5kÐ^Yƒݾ€Þ*àÑ„9Qxž¢º<®± †ö$d¬0"yÉ+JHí A)‰Àlœ@h”? ÅIpì'ÔTc Ï- $ùƒ±Xw“¨C3JöJþ¨ý_Ò0µš°Š#iRäÞä ÓäÐòp¹äêÏQE™¤¤œ‚Y´àYKþÈ’s jUþ¨9…r¯¸Æª(ŽB‡†òfcù£æè}" EœsJÂ)9§0ÁtH_¯~œRpJ…H•]JŒUXþH9Ep °b¥ˆý„SJNAî1Æ»üQp j#F+ËL'b:èQò‡@ Æ»üÚH8Lhã/@ó,ð7˜Ÿ«ós•4œuz•r)R.ErJÈ)xNÑ£ª4á””SÐäðœ NœR¢SÌ?Ý.A¥Ôù#ä”ÿ½wïŽãFòçß«O‘Ó}¶ÛtK^ù·½‡–h›gdÉ+Jý¸½^Þ¬L¤ÄnŠäåÃéýì‹üU,D©Š-Kíⱕ…D&@ˆ@Ä/%î@ô> Ñôä;.ÝIåDÅKü;-îØô–MoÙôŒžiÓYºƒ:{gpÇ¥r\¢åR9.•ãR9.•ã¦r†t'µ«Lí*SÉeªa™ÚU&Ze¢U&Ze¢U&Ze¢U&ZÕÃ1ÝIÔ«D½JÔ«D½JÔ«D«DøÑãNÞªÓ[uªajˆ•$üðéŽÇ&}÷&µ¢I­hS+ºTÃ...½Õ¥·0ßG Y}„ŽtÇéN•îÔéN¤nҾɄkÔ„uàMf†™~8Üi íœÁÜ`zñjfÄ7cGÏ,ã2( ¿ P‹(D¾± ‘Ÿ 1ÚPUÔð•ÓÀ˜Ñ•ÓÀ\Ñ-²‹F¥¾à&¨¸Ÿ2Ð!—H—IujtÍZÌÕZüàäòüx±Å|c£ó“h±A‹Ñ¢¸b(h½k—kį 5zxôâèr±F|c£ñ“¨€LÊ¢JnTZTÒnUþÔ0,×µ€eQ1¬ ÈRPd…=OLwÈïERا¸‚üògÈï‘ß#¿G~üùPL«ùò}œS ‹òÂø¨èQ0Ì„+¶ˆi'åÒ–1ícºÆN´ŽŠzÝDEj¸Æt ®Ùbñl!aµ kÄ–“åwIPÁ0â9ÃNÀŸ°ë‰éõëñ|ŸïÔ ×˜n n"ý»äpEùmÊ‘Žß»ëJ(þPþ ù³˜?ޱýášú/)7–>­*lëT1Xi{8âmÓÖϦ^ÚBjôœ6é-“Þré—ž©Ò–¤*Ó$rW}ÝmæÓö'©4àœA®’`Œ¥¸J¦J_&H «êQ˜¾<ׄéûyæ.N_¾±Ñôå'' 7Q“€Û‹fLçÀçtŽÀ”››×—‘¿ \nz%€2eƒçÛ\^LŽ@ìèT¥޲­ªU²ÔÖ@à (Œõk 3ªÁzØDÁx7 €ž €ž«€ÁïÈ àíZ ïwÓzÉïp·GÀÕ¼ÚÞÈ›ø×/äE{×yA7ñßÄþŽƮö&àî ½I¾Àzø¯ìE{×{'y ëÝ/ôõ½1ÐwYþ«ñ<øÙÏŽßw=í»)xIžýå€Á“¼õpˆ{èw Æû=ÚwS ðÒþ`Pv8íU *‹_!P¸A:…¯ïŸV‡×…e`°0Mx®HÉœìQ7îþzº±?,T\PûÍõ@]l{2`.€» ˜»ˆUus nlÏ­qaòYÞŸ×Ø4ÖØ3&Ín)Ùþýçæ"ö¶0?µ°>½)Pw®_èŽý5w¡ûŸw¡oÀxè¢ j¥>¢Ã÷í"pKw  Ñ蛀¼I‘Œ3É6`í šþªízìIŸ‘€»oÉþÜc~÷hoæö¯=¾ïÔÅ÷@ï½æ.oWm”ù×k€¶Iðš‚•¢È©dU–Bÿg€¥ ÀRUëÊ› nα"êBik€X ©|î0P7¦ÃDŠi¼o£|š¬ŸÆˆë ËvùÕ¤íæô,b äópÀPÈÓá­Ÿ äg3‹ŽçaŽÀ]è7ÞXÛÇýÓÛkãúf¡ß7`-ŒJöããú`ÈÂiôǘì ¶dÆé¨?°J% -”ò°¶éM³qü̳=ÒQ¾ž€´&®ÏÖ¤ãü°v X‹þZ ¬m‘Žý9m3à,€¦à‡ë¯xú§p…þv¶¸:[#p´‰òѤ߅*sÈ }nä¯á ê2pµÇó ¨šôÁ‘ŸlD]ÒwnfÀÒ1E&àhõ[Ò_ß8êÕmGo(Ú/E Ý(Û;÷è£<4zƒt4ýްü޾Šõ÷Uƒôf@S11|¥ô¨4½`éG”p­nFùq½×ýe¨‰:[è64:Áu‚Uê AŒR&h¥“ÕEÃXª’ýDéÔR³ÄÕ$ ¥QòôjXõÍ@¯ÁI ×Õ×Ìš´资7!ÿà; ¶LoM ×.ÝÜF0Xx6 _°Õ 5‡ÁÚéJ–€±Éc6A’Û8õ~`lòþíÒüêR ;—ÞJc¬ÃÎ|NÛ&èîžõ©>½~#‚g®YÏB °ž­Óž…"X'ÍoøÑ¥;é{½À6üèÒ”ãSK,e„ ¨£*w²²bk Ð2‡å –Ø9P7l'Û,€‹ÐÝ ¨ ½Ë¢ý6Yt}‚îŽ rû:Xî§MÏÜ7Ù“ç \@8s ó/ Ëy3X.Zúf°\›¬ô¶JíªS9ÐE,BwQNnP7‡åNÛÜn?á‚–`É,w†;sk‚åN@Ýi¿5 nî Ç~Nèn†Pè *«€µ‘à½Ý˜î€_,~]º³Œt?f¸Siܹ-0æé»Ã§¼LoH´•´EiõàL?æÕX3‡´j =6¤Ub°Ð"¶Jw¢Þd 7ÆŸ nœ »sTN×àNׂz’†€Íð ÓðÛÀ°àhÞ·`µ…§;·ö~L%#ŒÅ˜V¤Q*Á„ƒ°Ž;]ºÓ!xƒšiܛԨút§Ow†tgLšð)f$™Qët¼i¤\%ØòIFh–Q{¨œ ö°£IåÈó£qéä–1Þ´=­¢cY'Ýz”ëèÕð#öêXaÇ:V)òD•BO²J?ðV’Æd5“Ùh¬èÍÓ ~ ¥MjEƒ¹36©ÎMÒþ'çűiÒ3mº‹ÉئrZ¶§ÝVøêmŸîô¸™ïÜ2Ð;j°x$ÄñN|Ë+„ßðI/~D½ø˜ê3^Óœ`[ï-# ®( þàÏ|c#$?™¡lß6t-oË¡j¡]Ë×±·ÂÕ"m‘.‘.‘®‘®‘n‘n‘ž!=Cz@z@zDô5èkÐâ ¡NB(„: WÐGhS„>ákLƒ¾} úô5褮0¥kLƒ¾}úô èÐ7 o@߀¾}ú@`"´ _9 Ä)]cô(Ó@”i úô£ì®ÒÒ=Ò=Ò鈀o8_cÚ mvH;¤+¤+¤¤Ñ^ Ø´C{HÕ@Di‡ö:´E „¢.ÑÞí‚J—h/;ˆ D£â]— ‹.Aˆ9 „‚Wc>é ô+ÐHW _~úèW â®1 úèW „—BD#gظ! ú5è¤kÐÂOñ¬±èß»Æ÷®ñ½|ß層X¢kLã{Ñ£˜Ö@ðh ÊèÓxˆA „ tµá ú-Æ>ˆk Ä âGñ£øÑ@j Ø4Ö; ÄâGw¨BGk Nõ ãˆe D±žaüÎP_¬ˆ,¸`+ „BH÷xˆTÝ£€àÑ@ðh ¡âkL£ÿô߀úÑ¥èÒ@ti ºèÓhÿ€ú‘¤hÖXß¡‡RPCñ5¦Ñß@äiþöèoñå1¾<Ú‹ÐÏÚc|{ô?B[kúôG´w=„ªÔ#è!Tµ"W‘«G”¶QþˆòÇT~lŸ¿2àWüÊ€_ð+~eÀ¯ ø•¿2àWüÊ€_ð+~eÀ¯ ø•¿‚NOA¥Çט}ð+~eÀ¯ ø•¿2àWüÊ€_ð+~eÀ¯ ø•¿2àWüÊ€_ð+~eÀ¯ ø•¿2àWüÊ€_ð+~eÀ¯ ø•¿2àWˆYþcÀ †üÆ€ßðD´¢ÎQgÀ_ ø‹1à/@¸…+ÊoÑ~¬O&kP@ ÍCó/…âÏCí'xˆ`}¶XŸ-Öã•¡÷£€ÌWNwð@Áú`±>X `¨µ@4Û¡EºEz†ô éiÐÃü·˜ÿóßbþ[Ì‹ùo1ÿ-æ¿Åü·˜ÿóßbþ[Ì‹ùo1ÿ-æ¿Åü·˜ïó}~TŽˆšÆpEy…ïà‘âÀŸø³vàÏüÙ?;ðgþìÀŸø³vàÏüÙ?;ðgþìÀŸ¾¿Ã÷wøþßß?;ðg‡ñà0îýôkЯAãÅÁIÒaì€À­€÷¼„­vðÈpð8rð8rðÐpðÐp˜óûõbÕŸ»õoAüݵ ß‚~ ú@ô:ð{~ïÀïø=||iÐÂê¾d WÐÿwàÿüßu ßþ ôÀv@`; àöKû%7ýèC>€nQAµ¨ YTP,ò5¦Aòƒ‹~¾Æ´CÚ!]!]!Ý Ý Ý!Ý!Ý#ùyÃõ 7 ½XOÜ€ö⨠‡õÅ h/<(Ö‡õŽpE{±Þ8¬7ëÃzã°Þ8¬7ëÃzã°Þ8¬7ëÃzã°Þ8¬7 ® õÆa½qXoÖ„»ƒGƒÇƒüá°9¬Gë‘KG—Œ yÄAqXŸäy¡Ãô!”GJÈ#%ä‘òH yZg¥3_c„GJÈ#%䨤ùÓ8òH y¤„ìÄfbü‚Üd²$CA²$3A² Ö“‡….|å´}úôaÁôÝìaýšL ÉÂ É¾Ì ÉºŒ °W{úÉÖL Ð ûôá!àKÐZc2;$«C2:$›C29$‹C28${C27$kC26ÀÖéaêô°”{„ž÷è'ÃPC¾}Øe}úРû ôø÷+yXm} ú°úô¡»ö5è× _ƒ~²i$“´èJt_ƒ> µˆt˜ˆ¯“- ôÐo@¿ýôÐo’¡ ôÐOÖ’d,iRpÐVÃÃìa7ö-èiã%ÊÃþá[Ð²ÃØ)=™b:¼ßáýd™I†ØáA¥áA¥=Ì©“Ý&™mà*¾Æ4è'["Œ1~ú3ÐG¨x?}à#ü ôsð3Їí[z²Áp ®pý´~Ãôãúñ=èÃÎëaæõð0òÉÐ L‡G¼A”…ïA?G‚‡<ÂÂôaiò04ùôЇGƒ@¨?Pù¡òýú@”øôáááá&ñèÉZ˜Lq ïAß'Ë\2̾O†ÃdL&Ád·›ÌvH'ƒe²W&s%è ›žAÖ(Ðòv8?‚þú#èƒäèó@dúôÁ¿¨Õ#øï8ñ`çK.àOc2é_ŒÉ4—<`–=^’‰ ëÛ˜ €Ë-É– `-ÒÉ\‰ù5v•‡¦Où›†¦Çó+CÓ# MôJxÈÜ84=BÃ# ‘Võå{Í<4} 0EÚ"=¬zÚ"T}Z¡çBÕ¯ -¿O¸¢üåG[£dkj>óp‰íï#ÿ ×é ééééééØ?=ú³Gö‘Ÿ…+B×ÃG3xtó5¦ñ|›õ‰ü'\k¤k¤[¤Ñ¾¡ñáqÔGþÃט‘†P ú-è· ß‚~ úð8ê[ÐoA¿}xÈôðé[ÐoA¿ýô[Ðï@ܾýô;Ðï@¿ýô;Ðï@¿ýô;Ðï@¿ýôg ?ýèÏ@ú3Пþ ôg ¬~ú3ЇGV?ýèÏ@¿ýô{ÐïA¿ýô{ÐïA¿ýô{ÐïA¿ýô{ÐïA}xˆõè ?€><œúôÐ@ýôÐ@ýôÐ÷ ïA߃þtÔæ—ÇüŠG—,ý€çßì臮Šò?_cÚ"m‘.‘.‘®‘®‘n‘FDª(ÿó5¦¤=%åÿ®*A¿ýôáÁT• _‚~ ú%è— Ÿ"b• _‚~ ú%èÃ# G™vUúèW _~úð0ª*Я@¿ý ô+Я@¿ý ôÐk@¯½ôÐk@¯½ôÐk@G-T è5 ×$zhoƒö¶ ß‚~ ú-è· ß‚~ ú-è· ß‚~ ú-<Þâþ™¯1]"]"£#p”C÷Ï|i¹:ŽW¾ÆtlO÷Ë]mAÏ‚ž= zô,èYЃÇ]mAÏ‚ž= z6Ñ‹ýWc¾Ô˜/5æKùRc¾Ô˜/5æKùRc¾Ô˜/5æKù‚V|iÐÇ|©1_jÌ—óõ]ù?—p}Ì—ó¥Æ|©1_jÌ—ó¥Æ|©1_jÌ—ó¥Æ|©1_jÌ—ó¥Æ|©1_àe® ùRc¾Ô˜/5æKùRW _ãhuQ㨋:ÚûùÓéyÔó­Æ|«1ßjÌ·ó­Æ|«1ßjÌ·ºAùð­c„¾ró©Æ|ª1ŸjÌŸó§Æü©1jÌŸó§nÑþíOó©E{Z´§½ô:ÐëОíé@¿ýô;Ðï@†çgx~†ç'Õèq‰j›ÕùûZÉ¥£'´rÉûιäW“¥o^?ßœzØÙ„ov #°±·\“ðÖí„“Nϼ–VˆðÃ'43ô¨‹8iPŸðÍ%tECÙ$TtÂ.—³TÎÊÁÙeC…àP™„“†Îo¨RK+h™†*Fžc©_¨{é×jÖ ýš@ÍÐÙ½6P3ô@¯Ô<Å`œ¥;³ÈpAøíùÑɵª|c#"?9Å`¢0®b0‚½ÁÓÛŒHoc0rzƒ1¦·1‘ÞÆ`Œém FNoc0Æô6cLoc0"½ÁÈé_k ÆmÌENoc.Æô6æâûsâ嘋ۘŠ1½©ÈéÛ‹©ÈémLÅmLENoc*nc*Û˜ŠÛ˜ŠôcSñÇmLEÜÙÆTÜÆTTÛ˜Š¸³©¸©ïlc*nc*âÎ6¦â6¦búïlc*nc*Æ;Û˜ŠÛ˜Št猩ÈðC ÑxuÒ_G4ÒÍô$)æÛtª4b(Ä( KFL÷HG‹³BŒ=Wͤ¸Q 1bÐAk®ÈbQ!ŒB …0 1`Ò©Ö ˆH‹»‚Å]!Š‚Å]¡§³DÁâ®f)ô“Ä"&œ‚ÓA`‚2Z çËeD%,æeÔ¸©ý2޼p‚³GÌXøKXøKÄä˜#,cù}UT„kì 1(*Ä HÌ 1'ªè“§àc¢*ÄT«€ÐÀ°Ÿ#6óÛ¹„¸l#«׈€€•¯”†HÌWJQ¥2Gx &x¡òèß„ðU|>,š1­S:¾?b¼qG«F \FÄìƒOh¸âyÄp™ ƒTB”'4tIÔ´ÑÇq²ÀÓ•Òðá WÈ܇& =T$öðA™[àã÷×”n†Å{²˜Ãœ,ÖŽ' 3d¤¹Å¸BºA:ÒŸA1«bý“Ex†½ÙdÆ~®Ã^mŽ[•ä§âr<·x¦Såò£ŒQ%,žÑGe~ê\œïj£à£™,¢6ªÃ5Z8mîŒë‘©á“ZGD”©á#‹ƒ©#; ×h‘láSÚ¶Ñ‚ÙÂB×ÂG¯ý®ðуE²ás7Âç.ö[‹‹#ÄZãañôèÈóSТÔ®MLGM¸:¤aÑ‹ïó5¦¤£â _9dzÅxî\¬o‡˜<]¥à¦®áóUÃç+~¾r:Z¼' \…¾¹-YÌ¢dÔ5ðià#ÒÄþä+¥[ Xäs |ŠÚ(jÍ-hÉbõ^s žïߥ|X¤€°ífq>òõ[r¢E(Yt|¿s E:³ÐD‹b‚Œˆ ²`±iîŽô&‹LüÞáZ"Ý!Ý# ‹Œ†Fãý¨n 9Áé8_G¬áŠ|´‰‰‰‰‰qD Áf2·-$M°MÖ›,¹M`®q/“Î{Ò”ë¤óÎ4傺Nºê:=3¦g&­ó¤cNådúã°ÀCK7×éb×~¤gp`®ÓEàEí,v9QgI) Í¢Nš3 ØÛ¢¾´4$Z除Á56i^'í,ts­*B¢Å|§Ä^D—CÒä!l®Rë¤é¬í*]š¤ßBxŠml/áÇ wÀŽ*XLI¿×¬Ÿô u™KB§ Çœu½_”cùÆFr,?™äXˆ£ÄœÉQÇ bƒ‚Øw°ŒNúÒª™6‘-!Ôl˜áÚ"Pí1×@Ì5HŒXÐ%ÏÏή‡Kçu ?9…KG›Di€½DU°®XW,•¯1p½ áz!ªÑ5¦®W!\¯B¸^…p½ áz!Újˆ¶Ø0+„Ïà+§5èã›j€«5DC ÑPC4Ôô5èkÐ× ¯A_ƒ¾}83iˆÒZƒ>ƌƘÑô èÐ7 o@߀¾}€÷5Àû[)­]cô èC×ø~ÎÚ‚¾} úôἃp" áDÂᄱUÓ§#¼H¸"œp\Tƒ$‚pÉá’Â;„/FxXð°Î#àc p»†3XXÃF{Ú ð;ì`|i´·D{K´·D{ጢáÌ áÌ Kô7¶ã]ÃYEÃÙHck£±µÑp~ÐèW _>¶>º}€ñuúèW ­˜®@¿}€±uúèc+¥±•Ò5è× _ƒ~ ú5è× ç ðª[k­µÆÖZck­¦×Ó#\ŒB¸˜pEùØ kl}6TºIáÌ1>àlö*Hãýýgð¨áQ²W´·C}:ÔÎ;ºCyØúk„CÕ‡ªNXwè_8÷h„?Õªál¢ál¢îT#Ü©Fxd ç=KáÌQ€õ5œÁ4œ'5œ#4œ# (áŠö"<©FxRð¤áI5“j8³h„'Õp.Òp.ÒØÚj8@æP9ÂíOë9œ_èÓèoþöhÂ?CÉ×˜ÆøòèöÂYT{ô—GyÐ÷ ç ç7 Õ Øá z‡¬G”ç)=¢|„GÖ#Ê`:K_cá´Á¯ ø•¿2àWüÊ€_ð+~eÀ¯ ø•¿2àWü zZ¾Æ4èƒ_ð+~eÀ¯ ø•¿2àWüÊ€_ð+~eÀ¯ÆTcò5¦AüÊ€_ð+~eÀ¯ ø•¿2àWüÊ€_ð+~eÀ¯ ø•¿2àWüÊ@ucÀ øªÉ€ßð~cp¼†ÁñPz+8“ð5¦Q?ðþbÀ_`çkL¤ ÒÒÒß=9o#¿A>އXëÌ gk gëeçn Õ¥Åú`±>X`¡Ê²Ï,Ž?°8þÀâø g ;€>æ¿Åü·˜ÿóßbþ[Ì‹ùoSøwÌ‹ùo1ÿ-æ¿Åü·˜ÿóßbþ[Ì‹ùo1ß-æ»…êÑ"ܰ…3,ÀëʦðÂP5¬ÎטF8iðgþìÀŸø³vàÏüÙ?;ðgþìÀŸø3 {(¾Æ4ècü8ðgl±Âô1žø³«AÁŽ+q8®Äá¸Õ´ƒjè¾Æ4ÞÇøsW‡+Þoð>Âï;8c:8c:_âà çÀ¿ø·ƒó kQðsgBg\þ¼‚ý¯œÆËßï`ŒWпwà÷0͇+èÃyÔÁÙÎÁ™×ÿÃp¯`·ç+§qŠƒó·ƒó·ƒs¿Ãñ(Áÿƒ¯1 úŽ“r8.ÅA^pL¦‡ý–Ãq ¦@|i„ã†|ápÜŠƒó¹ƒó¹ëŽò†ëS8rЃs²ÃzâpÜŠƒiÀa}qpÞtØ:¬7ëÃzã°Þ8¬7ëÃzã°Þ8¬7ëÃzã°Þ8¬7ëÃzã°Þ8¬7ë â¨ð5¦AëÃzã°Þ8˜"LΦνë‘Ãzä 8æp<ƒƒ<â 8¬OòˆKÇ5@qG€­åkL¤ Òi‡4LCGJÈ#%ä‘òà#áÚ#Ý# Sä‘òH y¤„ä‘òH y¤„<¨ŠR…¯œ†€Úz m=LoúV · X…‡ÖÔVî-èC‰ê¡öp&ðA ݨ‡jÔƒåÁòpvômx˜"=€ÿÞ¾}D­ò¦ä¡+÷pyà·&QÂ%qã߇í¡j‡é•¯1 ú%è— dÂM{˜}ú F”PD D ,œ[4L%¦ S‰ž F aȬ‡†ÚÃÔ g¾Æ4è'@RÂ#AÅ g¾Æ4è× _ƒ>Ü,| ú ¼”°K º”K è#b‚h#ÐF® ¨µÒÁ 4‚h' Ҡ߀~úÀÂøô[ÐoA¿ýôôpðXÏa{A0` |iÐïA¿ýôô=èÊæaDóðñèà¢òpFö 2 ¨€@}@ ‚¯1 úC‚ÞMˆK¤¾q‚7"=‘NMÐt×#®÷ "˜‚ ü—° Ÿðy#èÙÚ8îá}ãáÐàá\íaöóp>÷‘{xvx¸y@à® ?&`œÍqÜH4ŽãÁ/`ZœÕßÐ9@Ìëá܈ñ=Ð8b¼}rFG:9§ã{Œ ª‡þs°½ÆÀ^cà gp<­Áq´ÇÏØ[ ì+ÇË/kpœ¬Áq±öû‡ýÃÀþa`ÿ0°Ø? œ ì®yDZØ ì öý¼Áq¡Çwßi°_3.…s^v>OÎæ‘…«Aá•+„s†3y_úQ!œs…pÎÂ9Wç èG_£¼ÈÂá¢M´Æô°)ö žoð<µ÷×Þ7Þ üzƒðë ¯7¿Þ üzƒðÐ  *M¢‡ö#8‚1câkLƒ~ ú-èÃy¾G0€Й¾ýô[ÐGð‚¾ýôá|ßw ß~úèw ß>œõ{8ë#x”Að(¾Æ4èw ß>œû{8÷÷3Пþ ôg ?}Œ§Ázèg ?ýèÏ@ú3ÐGð@©øӠ߃~ú=è÷ (S`~eüН1 ú=è÷ àæÁטýôÐ@}@f{@¥úôÐ@ýôÐGðßâkLƒ¾}ùå1¿<æ—OP,<ùÅ<8@”ÇÃP%—òÒé é ééééééi@£ QpίJÐ/A¿ýôKÐ/A¿ýôKÐ/Aát+@ªôKÐ/A¿ý ô+Я@¿ý ô+Я@¿ý ô+Я@¿ý ôܘˆp½ôÐk@¯½ôÐk@¯½ô^¹j=´á•+‹¨ZÐoA¿ýô[ÐoA¿ýô[ÐoA¿Eøè¸ŸåkL;¤ÒÒÒ‡lŽÚ µIå!\´A¸h@ßjW¨-èYг gAÏ‚‚CÔô,èYг gAÏ‚ž= z˜/5æKùRc¾Ô˜/5æKùRc¾Ô˜/5æKù‚`¯á ú˜/5æ ‚wˆÌט}Ì—ó¥Æ|©1_jÌ—ó¥Æ|©1_jÌ—ó¥Æ|©1_jÌx¤ó5¦Aó¥Æ|©1_jÌ—óPS¾Æ4èc¾Ô˜/¦Õ!˜_9]#ÜvpÛ5Â}×÷]#Ü7 —ðªàkL£¾˜o5æ[ùVc¾Õ˜o5ލq@ãê&…Gù˜O5æSùTcþÔ˜?5æOùScþÔiþ´h‹ö·h‹öt ×^zèuhO‡öt ß~úèw ŸƒÁû3¼?Cð (fr‹ŸHHÁ2‡ò÷ÖYr"œ\ur„âipØ 05QTñä°wÉŸÕ=n|ÉxÀA?ähˆ¾­3"¶D?ƒ3"”?CÙ¤v©œävY©×¶tCeR˜r›—§€ãU 8Žc2Ü+h†Ê'WHì%‡Z§pç6…;O¦˜Ïá2F$¹KNË“;×äòÁ1¹ûºJw&'0ªá2:¡|:ð/^]óü‰w6ÂÆG„§Ì÷ p± .ó»BlqŠa–U2–'ÔòϧçÃb)½Q éÁ`àke  qÙ·(ÕVƒ¡‚ÁP¤R0è©Ù€$ D ¢éütøö˜A>OÝÀ`e`°20X™d W  ùHXŽ&? }K…e@Ât>9 ÓyÛ›F£ÇyµËÑèS´yD?-á‹UÂ Ðæp…€«ÑÑõÑêãû ` V R8ŸGU0ðW\U\U0hVˆÆ^ÁYÁYÁàWá¼ã ç× ·>ú}lO ƒâÊhøËÑïWE»Gtà€‡Ñš[D{ý׋†èéÛhø1ý¡GÃG4è_M4|ÌÏæç,FµøõFÇOÑ×?ôèøÛhø1ý®£á£ÿÈG~4|D›_ކy€@€B;Ï~à±â<ûøàax¤óë7=]`:?æ7;{õiUŠò~ž60 V‰Ç÷ð&9¥ÇÓT±Ÿ¬Jù8@Eù'\«$ê;VŸ6ù›U-b•´(¯Ãó#òãú±ùéˆu2N€Ó4ÞwK§°½úôœ6àÝ€ý®R0@k¤—O#¨apF,”*®?]…ó†+Ä©5ÎÏñ/æfÀ'ÝÚÓ ke:½ ÆjÉN/@{òÓ ð~Œ Ãט^:Ýçkƒ¿ÎO;€5?í ô²Ó@ÿO;½®Æó8ï9;ý`Àû }R×!vÍÏ~:ºó=ò=òoçô„±½­Óâú=B_vû§)Ì–OSˆõÝü4œ†NS@¬œé4ƒ´El‹Ó¢¼3"ÖØÚÓFÄÂ~pÙ`œÇÚ¹~^u`÷±¼[:}á?M!ÅôGÀxøA‘~ðs£S<^8!EzÃS-á„gß"Rçퟋ𜂨7pPi˵p.§ ¤˜juºcÒéáÌŸî¤HN©œwzæÁkj:áû5Õ¥:wiôÎÏÝÁ3¯=ϱ¯Òús‹ç¤·¶ç¼ùyˆ”æ7>áz>]¯9óÏíû®OAÀ3s˜˜Ownë„wyæÁëN8@ܸù àzUZýªj(yðAžp0¤;|…‘Äw†Ý ?šC&ú@Â*ÑôVŠ¡¯á9~ÈfàK~¤ó ¶'üœ'Ì¡}zœh¨†!L`ÀjL`ÀÔŠ:µb´éŽKð@ŒÞÀ`‚"B@?`p‚¦±QÃ-1üpéÎò© õ˜b.¦Ñ‚½5ýHç4`Åºß ø Ј’;¸¬¾ééɳq{ºÃÛÓâ[>Ýá €´êgû=¦ÿ2–Ыv÷øäêÕ"–ol„‡å' €‰µ€Ø ‹ˆ’%ç»ÞW@lŠHò†€XD$úűØT¨ïÆÙxÝ@6:Ödat%@õ¯¡g-`6*Â5æ7ˆ3ÐÆú­ÐBhW ú åpõkQ®ED¹J[ÆÞ.껀 ú=Úó/ÈÝ€›¶7~ßõ\ÔÿƒàÆö­à‚þ€‹ô2ô>.Êï¸hÏZ.è}°\”~÷árßTÈ/ò- ï¿) w€‹þ^¨ãe„|¿P;Ð&ƒ]²%£´À[iýŸB3@¥j’y-¥a\K'Ë·ÉH–Nßvcúm»#Òï;`€Ú °‹ômvgHðX#BÙj/Ê_ð¾3Àn¬ß»ìÆïÙ¡üdÿݰ;tñý ¿êdø˜¹”^àMV¨¹fˆ˜7ó±ÿf>Ò›áÓ9 7æ¯ôú¨¡ëHí1>ûÆ ? à;zSlÐR¶éLÓ-À—Óë¾7ðn»H¯ìzäO ~&oƒüÀÛÆô¼ÿ¢€]Dà™v‘Ÿ»ŒÞ`7š¢ÃÕ"]"ò;¤q8âZ€/ÒË_\oðôçߨ] ð!?FÈëèZ øó·ƒ~ðöÀÑž®8üq†ò{<@r×|cÀ0¼¿4`x ŽéMÂo ðýµzÍðÝ-X÷Ç-Xwn ¬û¶@\ŒÞ÷ˆ à¢ÄEˆx¢Š;7â‚Ök¸é™×qgé­txìšû¶@\”c0æß147Ýyï ¹ @»47Õç ¹ °[|ÀØíq±Ÿ~-P=]¥#”ßš ê7„æbôþz ¹¿0·E9ïˆëÓ)·àØ-8wÖƒcÀꞺ…§¦;ÿzðÔe0*CG%4êÁƒýýkhTº±•ž5Ú^Ñźî¬ô8×à5å~|'Þ¤O»“þ"¸SP÷þühÿñÞݘÚ=>{Ùá÷ÇÝÉ?ðûÁÉåù1~sHZüþê¼;{‰ßNðçøýíy œ~_ôé÷ÁYG:Úb À‹ßY,”@¾S}B§ßÔXêƒ;w~;øñèÄÏž<Û}tøŸ{ýó“§ ]N9ßì?>¤›‡öõìëÂÍsvÿr-§¾öÎ×»_þi÷Ñó½¢¼öÊB†n郿ê~ùóã»{Sñ×o:}Ë«“‹£'~(ú—Ýyñ"ôÖx8œþpÒwþo¦¬ÂW =Cß‘þÂ0)˜ ÿúÇÒ?Žþ)韊þ©éŸ†þ Sº ¥MAš¶‚ÌÁ‰è±.ZR¿)Hw[ª  gAs¤ %¼ %naè-Z¿ Coa¤ Å» mKAúr.ŽfqAZ삤ü‚Ê Z¿ ñ âbmt R|´Œ4; Ò´b¤á*\ªÙK âÅ-Þ™Ç Z´ Z Zˆ âÂEIoÑ*\ª Y¦ %¸ ƒ}Q¦Ú‘TXÐZPèú‚D¹‚VÏ¢¥g)<{AˆÞ?jÒ]²I“ZSpÖ×kÚ¼sב@¢IŸ¡I¯ÉÇÿhêg:¨ ›Sø‡Þ¢>ÖÔÇšúXS³åISkмÍÅq?Sˆß¢å_T»–kGm¢`òÖµC]ߺž¨êë©i<°¹LÓx`C™¦ñÀ&2MLœWt¶hÐ6¼ SŠ öŒåâh<ð®\ÓxÐ4ÈjV°ŽMÓxÐ44Mû¶i 𯂦±À¼"Žbz‹Æƒ¦ñ i 4ÿ8àï~Çä? ¥ì {^Mú;¹wïÓ…dèË£“+?¿÷Oü:÷—Wç'ÅG¡vB‘÷ðËÄ'é)<¡>½óÏÅOI_òðð«ÇÏÞ9<<:90˜ÓÈË^õÿBRÙvžûš¥§õõ'VÔH(ûýû:Û§ÿ•žŽ+ð§ó%8,rÅ®-cK #,3aO¼ö!õÝw´œcî\õ—Å·ç§]þô¸{å\þtæ‹ï\õa{x|zú«³Ã3Y|ç˜4/ë_ªßyAš›õïlôIÃN|ñi‘Ö¿cþ™V;Qz¤õãŸeÚš LRÎçŸ-kxVH¿4“ICóYe5žð4µ?MU$bôˆÍõ<²°*/#¡üi…}÷ ­9‰D&ü- Í—çÅÿSdwwŠßÿŸ5;$5³ýïÒf‚Ûr›C]ü-üúŽÞùýÿ­~¿³@|Z•w­–Ëö²}g®iKêÍÃ?í==Øò8¬*‡êP <Þýfïzò`ÿî‘úhzäÁ“‡{‡Owµwpøøù7SÝtyçß¶ïéßßÿ÷=ýIuÿÕépuì/½¸:¿zÕÝ¿8ïï'Ž{u2ž‡aL}Ò¿ ¥Tå\A׺*ùªLL+¥5•#=Q]ÂJÛBë´ù·BÝzk…¿«ÀÿÏCU~ Ù‹°áV<Ç×”ÃQÅtý@þî\<{ytQŒGÇAÈé.hÝû>ˆ>a±šýÀüóRî'g?aaÏO_ÅgŠÓ«Ë³«K.æRЇrwìß{PÐ*‚°6\õ …ÈÅÑéIa?QŸX¼ñàôÕ«îd¸GRÂ÷ÍλóŸî?ôßûcÈîãG!ÿÙééñÅý«‹óû³£“û±Ì{'E xïYq¯/î]÷þ®‹{R=î}y÷ž¾«Š{‹|\ ·>‰eΫÚpvzqt*~ñŽü^ß³¿š;©'ãk§W罟wë âÏ;të«îD)RdzCwÙ…~¥¢~{tÒ_…>ûc`G'/>yùùüÞoò'ý'/³ÚJb^i'±+í$v•D땆’Ò¹Õ¦ÒñÉÆ’ÛP×Üÿx÷éWÏöÎn™îæ£k†2‰ûîuÊ™‹—§ç—¯ÕÎ0±D“ ëX!^Àm4¬â.Yw=ÿ÷Nâ‡K÷‹h§ïWR EÉÊëìùôë¢åÜku(`V*ìü]ØIX1_G‹PT×S«+ò˜@ ¶fMë¢ íCµbýÍ=@Æ)m+¶Ë°æÝ–ü á¸R l¿i¢9 ¿[ ø-ÖŒ~³= IeÒS l_bØjÑ6\¶]±G\Ѱ)Ã6¬EaË…%taK=/ö·…V Öݘ6þŽÖ,®)Ó£š?Ô„KÐóØjPX6ÅXVï³¶º(¹÷Ø×V…ÃŽAúöiD±ÁDÛ+ø•Š¿ù-6˜*¾Å6hn³ó:¶°JŸqƒd(b˜âž‰-âþoøkš†mhzÚõkåâóüõÙLV³Õ‰O—.øŒã"~ñºfK ™* >Ó`•Q—1—MLLѱeƒ-?ZÁ_-„9^(Ëçr⻵bÓõjQ±=Œ-;¡E\[ùœô43ù-öW)ê˜Ë¦MŽ TXn5ƒÃha»gÅ–µz>³¢ Èð·ã¸Gšm'ÑŽÚËÔ£Žï×lªsõ¼l=ÕÑy½0õ¼'Ï·áw¼bð³qTðLox‹½dÛjÞL˱µSµl æ¯ÓÄõŠGQYó3Ü·lË"œú¼–¿B´i³ITñJRÅõAGS/Ǩ;æ~#û4¢x>6L%ŽÃ&¶š Š¿u|·‰ßºŒ÷íÒjßÄïŦRUÎy„Š_¿1À¦WöKuplyÆ1i¢cãºÊ½Ç£+Î¥Ûy <yÖ‡±Ämäu²‰³>Ž”Ìâ·vs~AÃ.ÓC¾F¹H{™Cæù‡³Ÿ.ýawù§îfç¶\£š\ý¶Þùƒ~ã—ÕŽ íüâ§ç,vþg æzι(*È1«u—‹…­ÖZ’{Mü»[Ü#ä©,oÿæûCîÎ<Ücº»¹37ºžå)G×&ˉï„]e9ìoíù× )Ãð‚q=Çôœ—ԥˆ]V, ,Æ|”-çËQ¸[ÎP,ùÔÌf—2¨_j†q\ËèfL£4Ù+Ý,ÑY…Éë#¼d£è“e•”ÅëïR?óãm^G bDöŠbì„eÇr0P¤]îÓS†)[¡,BoÛ¼ûõ8†¶ÓÊc–Ûϰ•}Ê®æjEÜMÖ|ʲUö1;Fk×dì«9§VùhòÄÌ%±40YÔÐùŠ…[ç5ÛmYî1Ê0•É{ÌRN]e]ÅÌü¹‘L¥¬„>ãŠé|œ…>ã,g²>S%O3Sç“v$^ì=ë3Fó}Æ Wåsƒ6U>üBŸ1ôFê3*_˜²Š‰0”³ÓUÜͼKÉúŒ¹ªÐÏ5åØÈÊú¬â>Ë»sôÜ3eV·$À0Â<ë3"Ñ _ ²Q Zîµw˽¦V4Ž–5G±`G‚†]î4êç6_´»)]¾ Õ”c#Î-ë4Êrù¼Ušâ¿¸¼4Mª s´K=ÖñÐpÓà-°M9U-0Ž!QBqFå„õœrš¼+C—QW¶e>g\1¡û»ºãq&4_q ¬«óeÓw¼œç/…`ñ7g6¡hul…õœ2"xl¹÷€0f(§QB¹ÓêJàh\±*'ô¯èNâuœå¤•¦ãYc³®Žž·:â*—{€† À8ÇŽ­îRð¬±yo²Ÿp³ºÐÔiu)L®˜ÀCð´±Oã,WækŸ1f1ïå8'n0–z€rª|AÑãŒaBpFUI‚CàœuÞÍ1^˜©sòÝŒ+V¹|…®)§ÎùCôm ¢ƒdGŠK¤Û|½WŽst¾Ø†!Ðßå g>úU“€2¥Êˆ©x—âN«[Aáš +w!§²y3×ÀF½ÎrtÜùå8G ¨†»@ã.÷ÉÈZꎗáRN“¯5äMÐd£¦›qʼn§c¯)alèð2t€0:Få–ù å8'¢£¯ç’kJ-ˆ5]³j`)-¯Z耆8ðѸÏê\ì8zjàÂèXJËÙšæÐŸÄ ¤IÀ«@¾x*ö#Œ ¤lДʅáÐfÕàU@ºa&U ²ˆân«%qœ«V¶Ò,0¼ ¥q¬e«e+açH-Œœ‘‚ˆQW/Ë3æ+ùü«jTÝå3'ôã>¸¯ùÎ',¬ÌZrYAYÊq¹Ø3Rðü~XUYævyEÚÛ(¦nYÿœIc-IcÂà¸/…1—m)—Šbq›|¯¬Þù 9—ïòACxQ•VÏ«€ AsŽÎGF˜!§j„½eÈò ç–¿¢›È£*a‡Ï–'JT5A´è8Þ³”4<ÍV‡ +RòG9Êió]¡â¸j&¯€9CX; ‡N6¥0: .UJë7w\¯7ƒ²Š$0¡6Wå„í9× ;Lfx*ûÒãH«–e‡‰l³Ä}&m–˜ã寄ÍRÈ© G›¤öK{L"SÖÒv©ã=¦4A9Ë "!‡× ’¯ð¥9'ú+-}jÊVˆÐì #uËþ‚úÍRNKÔÄ¥JiH·ÑKHÚšó‡®EÕ ÿwudþ³&ß›iφÁZ ½C9­¤œŠ¯ä2~ g*a°çË÷™Ô ¼Wòµù¨êX"[í|*z8& ì¨V–¬ †mjÆ óÈù»öº”SçLϰWW˜ ‡©”ÂâÎû%«¥/Ê5;_ôbüV[æœ2FÞ4:—³µo˜%ä3K9ÎQ­¤ 9ÒNkäWJIáÉ,!ïéxFK“‹ßáSþÔ‚d©;ZE<'çn:FŠ·Vh?Ç(5:ßèÄhš’¾¢²i‹ìJSŽ“ÖÏžµ]ÂÆ=ÌÏßLØ5©h_Ï'¨Š5È{¦ânnÎË¡Ècßì3³ù gðá3Ó>CÕF~Eâü ³AX¢#z A©gzR›™2WÝt3¦R k¾g“F+*Ïè%+ˆìŠí Â2ZS­´kéæF9‚-&°PRš\åZÃTò:wuÃz­\ƒO­©ØL!,„ÜÓ­°Õ,ùë;Aúö3V4Âà›0”¦i±¡½lÿÍÔ ¬ô‡`Âè\,í*îè6gRAbg-€PšŸñ†V`FŽs¢»írcBŽ:zœ±Wh.ú…æðŽ6WˆñŸ&{¾vs´ašì‚$Ë5«×Aµ­¨4Ë¡¢Ç­°Ÿå‹ÅaxZžÂÊMï”™ '´Ÿu»¹n{dÙ×JÖEÅ}&löC°rWPûr¨s«žÄrž‚”ïymöÍñIᥣ'°Ä:é|‚~Fç»iaošÙs3¥1Ë®øùÆ(4³¡í§ v³ÏºÖ`ÎL¦çœ2 }{Å –7E 5M.qu Š3­ =DÆmë#G(»4ŸÇ¢‰:Ãë\U®9ŠSX–r$•'÷Ø´ÏÝl´÷üN)™yŠÚüûtŒ²JÐüQ•ù<èþöy‚¨>rÁÂàFݦ¦I!̱ï -aË+>g™ÐPš¡VP`†æð†6_ÀbÌnÓHë¤#ÑÒZAéYèŒcñÉœ§cèaûEã°ÉßðE¹ò ¯¢ŽÖ `M'8IÝz€µ»¹¤£Ž‡*(¨´Z°±øoÊr:·³ž.ï™q¦à佌¡7êœÖÎ{²| 9©$9I˜ÓÑA4"Y©79Åe ¬–ubV€Ê×ôFh£`èà®o„‹rš%4qyÍŠQÁžÁïH¦[­£þ3‘k¤LÏ9“Vnõ°\»–TÜaM¾8S#Ù:—³íÐHF˜~GüŽd¸Ôš?²0÷cF>^C#ù[JpÓƒ=©%:ZÁ· äIé„Ö„J7¼$îû:ßÖÆw£¦âÏe$”B šK{¡¡1ü¨´IX!á8ª´µã©é„Ö(GGâZi™ñŠ-°–ßÑJ´Š`„¼¥ŠM¹4nø {#nàé #°è ˆöw“Ÿè²ÀEæN õL¹û•*yrZ àïè0%k’W<£…­2¿ºFÂÞ$Á*ënf>>C×PŽ©ÓcEƒÀä[¸À¹‡»…„Ó(y‚ £Ã°J2ˆi"ú¨awFaQcùHpõ‹ïh%,Ñqo/©}bá\@]Àó@ø»ž½ÿQò 5‚º`ìØiod8`Ť±‚ÂNq$ÿ<§Ùä) ü=ëQ—øŽ v*öh7‚ö¡äÙ&`~ÃòA¯^€T5Ú-A3ãyé’ üN›‹ŠýŸŒ°â83#“Ÿæ7\nÕ£axA¾Þ˜žs&ù~£Ï:‡×‘‹Ñ‚k¤žæ¥XØ}Æwè|?aTSŽ@Ç’ó t`aTóçÉUaÿoX(‘0‡3ö,mo"wªèWj$¡S<x£çV /ñ6ŸY*†³—<(cpqA§ÄÄäDÜÊ~º¡s˜ûç³*ì'Ù‰XÐL”1`¼€ý ³·dçÆ|¡Š˜Fñ§ùàÝHàcÎQ’òªŠ|DXÅÙ'—+XA$°òì@R÷Ñš"Œ¶A:2É+¦$ÿj>ÐÉJ¦y>ª' a• œVؘi¼"|P6×Ç“©&bã̰CRŽ€öÒc=Ëc°«ø´’æˆ^iòoªÌ0ÿ|nt³Ž§»z­)GÐOÊ}Æþ>ÕÍæ4)ü”!9GpdUšØäæÐk¼7ÏÃ(îN èaéÉT«™äʉ½ ¥ ž5“­ ¥—¬3†dœR@iŽ1àŽ¤M`œ…°¢qŒAÄÓì ¨¾nÆTJÉ‘šûRBÓ+®µ‰!nú5I,h9.S‚î'++;ÒC [±ãƒŸ*Kt%¥‘dÓi%ãjÇbxlCÒ`ݧP³˜€AªX!s8GIº»ŠCv:ÚŠ­[ê&óÌðbo$Œ…âÞ”p.šNÙ ÂÍŠc©\áq޼ÙÚ é:ÆŠ˜ITÜ¨ÏÆ‘=ß… rX %+ì4ù³ˆh\®šÊW'Í›…† ZÎQ‚û7áRúް¥æ8’"†^©nd*YöµÓîp£—BK·TÀìðWh¯>~¥¼Ñˆ î3vøv3<Ðwì8Gå„bã†äæ5‚]4ô(ùrçâzÇ€ÓJìc`¨•°¬¸E3Ï«‡¼1–¶l­1=ßÔäÔg-{ ºX®€dË$ÉF „Ã2ªµ¹¬¬=/µô(GŠÀ>$„;Gç ½).Yç.0cÏ”É3s”À%¦.¨Öïq…H8a0ýê&«Šá3@Í1#†W|#Àú:V­º‰<6Îân¡Ì¥0j‚úddF®[Rnä`4‚§»¦I%8raÓUã…-“{”¥W!JPÅ]ÝæÇðšo$˜žÕä|+(rg³.÷ï­X χzøÒ¼Õða|•dàš1Á–9Îx›5^{®M.'^î  TŒà7R< Êà•c‰AÄŸ’¥Â˜A¸ŸJZžþÔ@#‰UÈ*ÁQ`ÆS)÷ùf¶ØäcHÅð‘J²CqN#Ñ|L©@ņ—x#hàTŒ&&ÀªGÊ(3ƒx7cêNbrüEˆâ² oÎè_ÇÆ«¥>54Lb¤Œ2ûî†õ’ñpêeò¼æKÞÁ¬5DS>ØLp«aíˆUî&||䪅M0’¦½IY]Í5kEŸLÅß^’Ò¸×NPG4– å ŸŒùKÎ-»*~ÉË•„’Ã;e4ùvF×qžSwŒâ”¼z¨(!`’vŒ.8KÉœ%W®†NzA#ÚÕ\/%ÌVEdÙ¢ä))(»šßPV›>íÚ7úþá+Ϙ… ÌçiqÂòwÉM *zOJº@K»ÑÐt¼Èwî]?Ž ¡*q¢¤¨/gT® ¾óš d¹y&¾#¹2kÍf°|iÒÍŒEEÓó;“\¸Y'TÜoÒŽm åMö'A\ ÅŽdkáù)¹‡‡N0lh â¼ <~§ÉÍw*ƒ…µ¾ä)*( C¿ñâ)) dX»),žùµàçßir¤ŠŠçŸÞhù ucõf¾Õ0qÉ7Ò$‰'”J6¥1Ú—…MÀÈz/É…†rœ¼á¤W€nË÷¼=Ö#çÙ§!ß8(M9NÒSQõÿò^‹‰ˆAG)§¦aÉT àÆ8 Š_7°MMpþÓ;Íßdk6ˆDpB·”Óp Å­#Ç:4¹¹1Í- Í‚>làm† po3$žj Û`ÞgäJäÐNòêzK9`îT\›-Cå<}ÖPž‚ÝÝ <n¤‘ -åI÷hh)åH¶1K9`=UCa…J³aWð°s{·7Ñ…J“S{qUæH…Ö–ßD(5D,¯rÏjù´oöÙ4½$,Ñzì¹›%•çñûÆÑ2[‘öU\7ÁJízÁ.í4åÈ5ã(æùªçÅ^!çHúuEeÝèS†æsÈ,Á‹cšn” EÀöÍÔ_ÂÚvídKÀ…Ž”‘G‚jËãXØ>q¥”ÀM¸í¦É ³aÛNS_ˆµ×Õ”c%—ù±ãx/‚IŠûKØÑ+K¯4‰lÔûݬc÷5D£gšl¬¢%ÉÂ6YQsL“w´‰ÑkE[’j„0¡×4÷š°%äª [ÕSŽ-ŦŒ=­n"ú+Ý‘g™‰¥ÌE›ÆÇl BC¯QÐÁ·2|vÚ–Ü»aÕðà:;A~týÀÓV˜”#„‹`¨¡ä/L9Btª[̤¥6V@ ¬8rHfN²ŒIë:»`èÞì XzGðR ô9Ö`Þ3¡xꪛìH¨ ,Ïi„2¤QŒÔ©E´q¬â©…öÈ>¹ŠO£ü¿Cs¨!p@q È]jæuX²æÑº*Äu)#?­˜—Mar6ûjjˆ'ïä º­£i63Úó|’4\ô†°ë‘2X'ƒÑDïÔR'§ÞG ɵH‚W|GˆNØn¦[hÔlç7„”#Ø´gm…à\£¢âQrÙg ‡pða+O½”<¶ëèô!˜m)GÕP¿Ír-N¸nNÄ•3ÜBrdc6UJzÍð»\J ýÆ:yARð¼ål¤à&œ£„˜ŸºŽ¶,©ß˜Oå}úMQè'©ÛHè‘PÚ¼2ˆ!l¸fNÒö±Ù§‘Qð=%éû*vÁ•T‡¬ÐàÑž.y,2“*;'Ÿ?d•¹‘ÃHƒ°ùDEª›h³d„¡$’9Ö _3âBXoç&.ímŒFy#k7%6°É-» äó «*6Ú†¾WÎ (Ð <}%)Ë6àbT[j¨í×üÈàÙÜ@©ÜÈ/ ­E9®wäWˆ%çFHžVRÄCzGÀŠhï’.`gT­¤Ú¤)nóÈ… ›vC¨Z²hé Æ³Qw*mI^’\9C —ˆ‡³’ŠÒ³âD°É8ÏŠÁ& )GB%\˜¹‘ê(t)N0‚÷¬êDçYÕ!ùQŽt¼ÂÈ…#•bÆ‚/˜–,`H !V ÞÈ¥idA× q싊•ìF·úP]5RÆ7÷tºßÍ@ª3zG—7z‰¶÷¬¯“ì–-©Ø¤‘I‚£‘2¼=Ô –^©¥ÃVJÞÔH`™Šº*ˆ q |ê–u’5¥ÝÑ“†Õ’ÆI.ûDG2cY9¾§Ž죖^©¥=›G@öŒ©ø¼Ð–ö.Ÿÿ›é^[F׈A¢Ø:*X´GÞÖ‚çAÏæYAÊ 7„ÐAb`¹ý“‰L‘«7šl€‘v@Ô޹­±â§ ㌡7Â>Ý1j yÏ1~snZCDÊT©5¬”•ÔDH ëfH'—€0Îw#z£a•œàîØsŽŒK73KÑëéžpöeèg-Ž*ŒÑØR6zg‚¢lÔk¡«Ya,,Uü:¹á†zšÆ’oCk´¤’kØÒq³5ºáàV7Ùjv3¦s³`³ä¸Äk´äÜЧ6ˆcÃ"çÄU!FM(¬^èkÍá5JÐô×\1!ð>µ†Õ¬¹µ%ÇêiÃâzÍ”$Æp­­ä…RsˆÉLÍ9Sà­ÍºGQòí»é©°IÓ¼º¬õƒƒk% …ººæÍ¨þ”yŠ–r8Y\ØrSŽ•¢Þó=!·æ¶qù¤Âăö<3„£•B;ò ¹gYöÖ¤;ª™¤ÞduC­éxçf•#†Ù£Jv´2(Ä(b””’Ø'æ;…ÞÜl$•<ÎUæÆèðwN½¹Qiá%æù¶«XHhD@9;WKq¼˜«J¶P]ÆxDÂWcÿrapެ¥† YK%Æq£®Ü7GÊhs¬D«•ëcBǰ*]Ú)¬Zl&näݽäÌß¹Á‚ú’!ŽRø¨Q‰G>)> ‹U«ËÑSxn ܲkµô†…gÁ«´ä¹9…W[Ýš ËB¸ç¦°¦%Û²AOBSÇ @´÷,( ±AœgAU3¬)Gð^Ã{‹›±{*l G°Ñ;¡w˜ŽäA9¸„:‡­·‚¶$‚%„S¬£<{CCõ]éÀù0ÎX”Áœ1EÍÞ´š9— ©¯Gé¬j¦æ1 ñSzEØ÷YÊL #K½VKÇFÕì!såà—¥¢]A2±À+a·¼œJÍ1—!õÈÁo \øwLXÏf\1'x ²õ$ô¥ÀQi´Á@îX(ª Ë&/¨7ÒV*6EHäi%k{P™1Ð1lŽv׊¨ ‹ƒAJÇÀs†pê‹a…¤±¹zÇ8VŠYaưƒŸ”a¼æcܱRL8æW1 J8€Ùp4'#6}Ü!„FÏ9B, ÃÉÐP aX – 8™Ú þ;ñ%ñ´Lz¥½Ñ^9T›ÔµBÐ…ÃñÌ•@´¥Ká|KžœrÐ-ÃŒÈÝh¨óKÒAñÑmÛÞ(vshC•reë8²Ð9Ó°YåâÖrÅwåWp¸(ifiÁ7¾#<²Ük¥ÓJ^…‰šª¹©‚âÎÀ ®ê”ÅÃQø°ü’·$¾ÒJ'qñ1Äž¦ç!œ]ÈáÐ8÷ BØïÐ;Ž‘ÓÂv•c ZQ{éˆ[Áó5¾$Æ{¥Wš"ž©0ãr©4äÐXœ ›çXµ(‡vT#;ÿÜlzÑKZp ½Ê¾DºvTŒ;È÷&¦ça¯Iµ#©aЉºiíhI—Ü<Øí@ a8Ò+F:T³ç¡Såf\9‰×SARÀ0šÄ’‹ƒ¡~Ž 5›qÍç€7ªMU§SmãÆ—´$‚GµpJB¨MIá´ÅP;ž¬Òy¼©Ïebw.+mSC–æ,A‰B/IU~¥½‘­%Tާ—t2£‰]Íî€Z°¶†¥y¤ÜH =ž'‚÷oXIFæ7¨óKÒ©Á†$I'§ø€D+¸y‡Õ‡*'š‰ïH®ôQ1MÅÑ[”ûÇÏŠovÿrøõîÁׇÚ}ô|oÌ ¢¿''G/„¾=¥b_PY¡àNχ㣋˿…’¾û„nNå'ñÉÏâ+; ™Eqî/¯ÎOŠß]+åÓé´ñÎô úôÎ?ïܹóoÛ¿[ûûûÿ¾§?©î¿:®ŽýÅýÓð•¯Î¯^u÷/ÎûûW—£®gþ“þ­h(¥*ç ºÖUÉ×°‹WE'+YÍQJ2’i[(òotÿV¨[jãkÿ®..»óP•Ž»“cˆ+ž ãkʉ)¦ëòwÿã[ù st>XŠ{q¹àT|tî_\wç…ÿñìÜ_\žÇG³óîü§;·Cýþûß»S|\<8=ûéüèÅË˰ìì4ÖÜ#ÄyQüç'ÿyzÑýã´(þxq2¼ø‡mm±û¬øi6+>yVœx¾üýìs*e÷ø¸àR.ÂÂsáÏ¿÷Ã'á>e=õCX§ÎfW—ÔŽîd(®.|Xi‹‹Ó«óÞóÙÑIh\Ó«‹»ÅG—/‹Ós¾ž^]R)a¶G}GeÜ-ºs_œùóWG——~(ÎÎO¿?ÂË—ÝeøÇ‡rŽO8:yQô§'ýtA¥Ð{¯üåÐoýÉRÕ.ŠÓ1Õ‰WàWa Ó:Ú…ºR©Ýìô{ÊB‡Q!áïäôòˆtò—/. Z’©˜9YnÞõ:¢ýqwôÊŸS&¯H ¸Ð#©"¡ÃU¨ÜÏS—"¶% §ýÕ+rÙ¥v?|Ó^¼ê.ýùQw|1ïxþ`Tðb3ÒxöõþAqðäËgÞ}ºW„ßß>}ò§ý‡{‹/þ2÷ŠÝçϾ~ò´Ø}ü°xðäñ³§û_<öäéAñ¿þ×îAxþ÷¿§,eÿZìýåÛ§{Exaÿ›oí‡bB¹Ow?Ûß;¸[ì?~ðèùÃýÇ_Ý-B)Åã0Dí³ÿ,<öìÉ]"GåoO¾,¾Ù{úàëÜýbÿÑþ³¿r…¾Üö˜È}I,¾Ý}úlÿÁóG»O‹oŸ?ýöÉ—FÍz¸ðàÑîþ7{?)B%ábïO{Ÿ_ï>z´ØÌðßµV~±j¸ûÅ#.ŠÉ„V>ܺ÷à5gþëAè³P¹Gw‹ƒo÷ìÓ½¿ì…–ì>ýë]{°÷=…L*íáî7»_…¶}´¦WÂyðüéÞ7TßÐÏ¿8x¶ÿìù³½â«'OPQ¡øƒ½§Ú°wðiñèÉwØóƒ½»È³]&J ½²Ãï/žìs¿í?~¶÷ôéóoŸí?y¼C}ýäÏ¡cBewÃÛ¹Ÿ<æ6‡>zòô¯T.õ‚»ÅŸ¿Þ ÷ŸR—r¯íR_„Þ{ðŒJ[x2P ýùl¡±Å㽯íµ÷øÁå>¡‚þ¼°·¾Øþ=°)ÿy÷¯ÜÆçÜ|úV¡nñçÂнË_´Øÿ²Ø}ø§}ª<ãà`cæÉ—TÒÁó_£÷iÜ¿sç·G'ýñUXT~ÖvÒòò7wî\Ðôêi‚†™J2âÞIÿÈŸ>ö¥®þö]Iœ$ Þ þÛ¾±}ã¿áþ{·µºCÛ9L£0î°D5ó‡¯fýa˜e‡Çþä£8½ž?xÙ\œíÜù¯ùîèÚ|ûøì;Þ,-wtqø}w|4pyÄÙN^\/.+×Òþd¸F€6¨Ç‹Ë—‡ýKßÿãP*õÉãý¯ÃJõ„®X¡Ã/Â’P™ËKí EQ!'þ‡ã£¿ÔÔUu£-æYñ‡B䛨´Òí?:ûƒÞáñª+~÷»âã3¤TÚˆ¢iúÓ°¨ƒi±<|þx?Ô}ï00»ÃGaé? Ëþ7ûw‰ÅM¥Doœ¤W<}üèp÷`ùñùv÷Ze†â¿ÿûÎoCuFù‰¦ÜYWßy3ñQôʵV›6ºV°iv„¦§šd{m|¥k›ÿkãòòôÄ˵+p©0›Œßíº>aÒPƒâ€Ù?8ü¨žEÇ6ËSò¨oCÓ¬Ï;ëÚÄŒ:–Ï‹¨S*þÏÂÿZ°AáBÉwãW+>ž]‘Júª¡MáÞô™®MßåêäâèÅI¢©¸³°§å½ B=Æ+ß¡ï_þœ>Eè`•>Ÿýᔟ ¹üèÃÆ|*hzùwLYÅÛ\/%Ð#Êò‡ã¯ÿÀå^žï§§™bŸÿ„b—ì,RFøN©ôô²T壘¬¥c"ùÃÒ„ì» ¶DCü´!õeH<ûé,l”Ž»wïüÿ‡ïâ W˜³wÓo*.…ëÓ<Ôøã³³i@вV}š¹»ö÷iÅz´¸œ¥±Ú,.»vCâË'>{þô?÷¾>ÜýŸ{O÷ç+/5$ôN¢·âùâ߈]_+]»³ Ýü˜È€°XŸ^¿Ï ¬ ÷C1gaœ|¿ÆµÕtº“”—X[ï,ÑùôÎu©-óŽ;|öäðQØ_<åöÑÚ—†ÊÙéëÃ"¿ÅŒÄ³¯NŽxÚ/ ‘Œ:”ðÇ#ƒ^SÂ7+Ôk8x÷jvôâêôêbÅÜ`ì­nÓÈ…ž;×¾ô$Ðêv·ø>­C4ô–Å02ÅèâÍÞãÝG‡ù0ûæù£gá#}½ûtyŒ¡×Ÿ=}¾÷)@d \÷xëû…ϦJõûO›¦lõáûÏ<ûë·{õô>šÒ‡Ï¿ý6ìÿ»˜ßá!²³³ |ô½ðÀR=ïÚÛuwÿ³’ÿíXŸt|úƒ?/h€ÇþòÒŸß K~è¹îä÷ÄN¾÷ç—ŸÐp>¥úâóϸ0ê¼žÌ TÚÎòÄør÷ÑÁ^šÓ(]Ñg ·Ck¨ê©Ñ¯qA;q¼ßY.~>ß0:ãØ™è±/»áïW—A~íÎ_únX’‚/»óË¥y1—5/¨…üÌÎTE<µs1¾ðؽôÔÿQ_:õþŽ{SíWˆ;{ž<~øÑǼl^.Ëe±Ë(îñ° ,TBæ/üå|ê³pq8û‰döU¬bÎ&èeánᯋ…H±é_G់¿}'î#ÒšôºŠÉ T\š˜‘Å%­QL..RT°:œaGÂmZ¼‘J‚VBØiQë»§«/ö~s7Ι“î•£ßÝ-þBÖ«îÇböÓ%ÍÚŧLö)C—Ÿ’÷?w—êI{ñöu)qEÎr9SOSÆò§èÎÎŽ:쎯?¶~I…Ÿž…õâ§Cê6®ÿeøÒ“¡å|Í`£‚5‘2åÆÏ»“׺BœØ‹%uÇ?t?]Ž]Xzˆ^GJc?žû°¦…[¯ºËþ%½ðøù£Gwé[]Æ4¿uqHw†÷ÿ 2.g `ÚÈÿÒ† ÿ6°ÿÿÜö¿Zçö¿ªÚÚÿÞÅßmÛÿŽ·ö¿­ýokÿÛÚÿ¶ö¿­ýokÿÛ¾ñÁ½ñžÙÿŽNcÀñY¥{sãfz¾pW‡Õ‚ŒF÷`èúáåѱ';Ûø&M +B¥†œí\Ó°œ‘ ‰‰I ©e•iTDɽuë&ʳkæÉEá/`¢<{­yòìºirM]çM\´>ÂDyvÍÚu*¾ßãTTÊÒ×÷Gç—WÝ1/Yg¬8 ‚ו¿ ¥#Ìi–ÂÂ6 JøQÌV?ŽqÙ%5U/Uã‰/÷Â:0·éW<ôåâCãôÐÂ#ÿ?{oß'7n‰î¿Ñ§¨$÷fFñh†x#H'öÞRw©»¦K]íêjiZ‰W?¾í‰g$­¤YÛ7Éýì$‰çT“`Éžx¬û7£*°ˆ‡xyÎÁÎ!Ð1­½É7Ñ\²¿¹õù]7gôË‘ŸÃ’âãaG—¿îÇ“ÇÇ9Šþ.žóg}ÎØ†kÙ°ßZ{dï'ü÷—ÉqRŽ?Åmê‹OúÏOÈGÿ3ð_Úý×Öãx¿µOÞ -ûƒŽYšö :þö‹ví`dÓ3ôþ5S4í©8|őֺº‹Í©¶9ÚO~‹íï?F,:mûù·.ø‡Å·îÙmqߺ<òŽËŸÑnjõà‰ÅŠ×i³Ö³òxä^ÿ´°^‹uc[°ýŽÖˆ“õ1ºOu™žê(eª¹'w‡{èäÌ ¾UÉÇí’ÅÝO’Äý0,¸¢ß2À´øòŸƒÑZdý[SÕœÙ|äÄÍØ [—ËJ&2ûÂæX¸‡Å;zÍ‚ó âeýïj¯ŠÄëx“7/q#²ÒIJ¿)á»Çt+%»Ì~Uߟ+2"X.é÷bq“›vƒ57 þ¹h7ûaœœW¡=~ÈìKÀ £?îÙC¸f ÆZÐð~»}ýt}ñúåº k¹\îzýëQ¶©?¦›Þ9ó£S@ÇïS£Ævsôþ££ž?¥ðŸÏýÁ¢náN¼žŒ¯2—ǯ2‹ðö ý¤(ö˜[­±O t{ûµú6äP/Zwíâã[ŠéæGCÖÊ”Å)$Ú=ˆSú“Å'ÍpmªQGƒ÷<­–Ïdö]rÔ†C4”kÁÎ(i®wGâœ*¬lí'¿u·õ#N!)Š'KŽ']DO¯Ö“ßåÎÜù×–?¼{×÷7¿ýgìv;؇l]Z$Äý:såØ-@Éh.–}±€†“ÅúìŸej?û1 ÆëÚ†”±Ù´—à?&Æl¶8ã ,¢¡PDÆ‚1¼˜´>Šãhý÷Ê×oø8„µ†¢á§*Z¤!\ˆ²,<­ æéX<( •ÀÃùp £p®?.Œ ®uzNŠæZtâÿ×îþúh®%æ»~wÕÇ‹w~EàëÝñlç¿DhWö£„ueä× åÊþÆÇc±H®c´¦¹ÄñMcq\ã·Žâ¶ÆkÅiý¡ñY²¸¬©0¬Sï>¾ÿá/ÑWÿ©þâñ_ž'Oì—Iÿ½£ xý›ÃïO ‹Çi‘{ÿe’ô/û¿þIþœÜíÛ›¦¯~[|ýüýâWN‘4^ë¸Ýþöå»ß“eѼû½¿cá†ñwn$oAºàï¯Ú—Ûõ“3Dñ>rѪ…6G}™|©(ÇÙÛï¿/ÞÔOZíúÓÅW'öÕ¹Ó!ßµí+ºaã~ß¿}û݇¯~øðþ«òÛ7_yÌ'oîOö‹'ÕâÉÇÅ“‹'›¾Ož}ñÄ¥¯xüðÊ—/ËÕ­ÎzûÁGýtñä7Ÿ‰'ê³. âÑ£¾ }6 ¼ÔéÇÃû‚ôûâ7‡×øÀ×uñ±pmÚ/ô¡ÿè5Ý—¿þùx¸E¿¹ßî¹xµº¹Ýß.DbÌðÛóõõëöòëÍêúb¹Pá—å7S¿¸<—K7gíæü‹”e„ÈÓG~,ýöû¾_´­Ø­×Pän4­x÷]ävøÐšw8ÒM®_¿¾¸¾;{ýúÑk§íÛ®v&h»<ü\½ûî‡íÿ†ß;•>¾úûåîâ¶ ¹q d#á¹0~]|øõÈšð`ʰ°‰!ç‡_¿}ÿqQ|øðöµ:i#(:¢ƒ¥m;3Átÿæí¿Æ_éÌÑn¾žfí¿6ËÚï6í¾Ëáµ4móʼÏ2ÿ]tßÛ+²Ë•ÙYZÓ}W-‚ÃLÞ]iŸ¢º;­îÊÓý+»ë™m1eÚ>=ëž(\9C-ºMâEWÑýšw¥ÍmWæMvWºu÷”ÔÝÙ#èßtOÔi[Bc¼•´¥JÚ+©i¿Ù>E›ö_“èP í[Û멲Ýw_fÙ~÷È-‚ûÞ–Vëî»UB–êöŠêZ)mŸ•é¼û×t×»¾ðÿÊÙt82d‡œví »;3ÕÖWv÷g²Ýs»v*ヌÞÒvw¶y…èž+:>ä]D×&Y{%ïZI&m9sÊà:²Ík;ü<ÚP‹¡+OštŒêZRtø© -隦k½®×ºvPª{®/›h9 Ò®µ“îY¦½’çÂ#$m.´OT]™UîïìZ/k‘­¯EDZ<¡%;>Û´mÕµžéÚDwŒ2]KšÓt%ÔÏójÑIþÎŽ3Vw ïž.<Ç<+|½:Ž¥Àê´Ë¥; ÷ººäm«:•ÔõBË7ún;ÎúÂæ*üÚ–¶Ï•¥ÃwÑ•\w-¬lÖ#(‘R,Ò«k7ú¾~>’u’kÚVm[¾{nÇdz®ï—®ÖV{)ëz§ã°p½3Èfײ«]Þ2ÖIhûo.}Ÿv ”¾;í¡ºû¡%s™tòÒ•¼Ë%»{l׳*i¿çeê¿wü‘A6óÄ3¡{nÒq¯“2ÑÕÎ÷cÖ•JzéË“H@èîñœé$×÷¸Dt-l:´´+ƒQi×/¡7Ruwª®Å:^©î~Ù•Auuôò®„çy`µêô‰ìj¡º–ºãa×>¢«‘éJ%Ó®7;Ö9á Œê4áB{íÚ–Pv}—vm¸ðÒ‘xýÜÕ×÷µ í°èêµèd?ë4ªèî_tõ>±]9&×*ñ«=°ª€CÚçÃp×Nâ·Æþ0›üèfŸ»uü_,ä㟨_.~ò‡eÿଠ*Ù½×vl–<¨·¿þÖYòmÜøƒaü‰ëè‘ÿ=ê•™MBB:áïŽÅ*$Œy„6˜È@Áž"àžV·÷ ãÆ÷á{+ýw @­¢Ò` þÈW* 5nK³Ñ ‘‰P€vPYÌð]ç¡Qdfá&“bQ,%ÑШ q¡Æ®¡b:Ü¥„vÄÊCA wR Ý&5<;K ˆ oS ”*g5ICB¦&Ãj ¬$Ln &Ð@Û ’P XÀ”, @)4\;Þ†*B*,†Ì ±rÖi‚•’XõȱèÐ Jaÿ@þÚ.ÅŠ„z§ ,°T9Ohè½µ£¡P@‰ÌL€&úgÀP+ eQ”RL7¤¬T%HLžCû %nÎP/Ü‚ Kìx¡%>ªŸ‚²’¨#rTiuRg‘…Ç£8|<öŠÄ§ƒÌ¡üÀå®sb ‰Í’K ªš´s’ 0ØÝnËQ¥™™@~W0¬#²ôèG" -ˆ¨ã3总¤Í•[äPBä­„Ö¶Ðv©‰Ô²b…G #€+h›c™î¼\ØÙ8.j”„„G¢TP®+‚Ý¢’œ¡ÚIQý«õ/jó4Á6Á*¥ ¶˜¶–‰ G8j¥_Q‹¡ TPzW.¤|‚#™FQT,»ŠSæLó¡,$(—J£:WÐ`9@XÐ7®`áù †¦‡rh|ɺÅ'X2xd"Pdá…Žå—9Òi›c‰-(L´$4eŽRcp¬8 X¢søÇ0 ºKZ0›œ*®KPö¬½ÑÂâPY\%ñù0Lk¦?R°'s¦ÖÐÌ…"3kÇ@B±ÁY+´ƒ$rx¾ÅŽ€Ú0ET‚ZFJPãhŒü U$Œz(ª®³°SR W‚r'!³ Å8hHIh/ÉZ‡:÷üŸj´'N3 eUâc á Ä[Zƒ¤L0ŠíŠDÀZŠŸš?+‹Ùÿ¨Ãì6¯I ÎQ°Æ¨Í± )™CvÔÓÌxKP5§¬!a„r£ ]LOBéaí…ŠÜX¡w-*?ü…#ØÐœ &M¡C,hU%@æÚu Ðʨ PBqqò«AwI4W„Ýç¦-Ø"#=v¤:ÅyN¥-”Æ¢‘ƒÓjåGûŸ®RTãLsã(˜ Õ›‚d£ê” ? …,ƒ§CáH!Pª$Žm®$htÀ€¦N@Ád·Pu ¶iŽÍŽ^²hNf8+U8€aWçhVãøÁÈÚɼ8Å1ƒõg–±æ… -8C2¤¨tQ!XÎàðt ÏÓ0¬YÔÌ5›óLX`“«¤°ö£¡±,[}Ái‹@Ü›N!ô®2øthËV=À¨O¡«.3È »—›}p—¡Õ…3#±Mq„CÑ.°0òƒÍ¦l^”U\šH‘Ùh~+j@A÷*ÐTÀw7×€E P²¬x'oÊâxŠU¤8&(o¸è¦°uÁQ¸ ™­ŒC£À‘çó¨ó2 ©‚A^kÖ›Øk0˜²‰6.]ªD£ ÕÍqR²E3œª¤ÌH€¦ Í^аXY• ÷ÑNÏQ!°µ±8£q&¨YGB«ÓjT€¸0 `’’ã"&JˆÌq )qmpЉ“ T†R±±Ê…‹³•Áy!±½NPIÉfÑhS¡0YpÃæ Õ¯pöOl9W"¥BáÄ@àš¹Â•'¡Ø‚<>C®if§ÃJ3N¼'z 'Úé ~¶0’áò õõ¹° êpÔ2hΤHj âÌ Æ…NÇ>0Op  N‰•ÉpjÀ&è,N–,[Ü„éªb6Zó3håÍ!,0p,•¸ôm3\@¬1 ºÅBoåhdáH+†¦qB"£-ZýG0N ›b7ûqîea*“âX‚ aKÊ8UÕPS7ð³»P±¡g+Ïqýøˆ3:©¡\nÌCóµ,sM þ)ZB0…ã.` yŸ1c•<®>)œö³U£šÍp…ÕY–â(ÆŒ-Á´1>—ŒùŠhpæŒÁy·B—š3z¡3˜Rà„ÌâZ êvƉ3Ca²®Q¾p]3‰Î°™ Î3Ð!2ô§PÓh\ÀáH ´ò4Îâ˜vÄ<)qfƒ37ëNWà„mÓ†0ÑWô '¸àhQAÈÐi¥è‰Ú)×vä –›I¸–Ä €s¶<ˆ,vÄAÅÈì/1R‘£‚Æw¶0›`ßâd }GÂà2ZŽÞ €“eœÅt±žŒ¾U!qa‹¨}2tZ¶à0Ê[CQ‹H¦Åp"‡ŽY‘± á*%sÔà\ •˜D[¾dõ(Ë:OGj¥Ù’šQ¸Vã¼…Y_8SY£—ƒ…d Æ•È–6¬uD/f {53?±r(ù(ˆB  Y\«Õ¦"Ðڲ̹ŽÎ¶’Ĥ5šKnr‹+Q0^* ;ÑX„Ynl­Gb+p aŠìÄåTÁVïR&ÃLŽÑošà4“[nIÑRG¹È qôNZ4>1C¥€¼gnq6gÁ•TתsÉ•„z@™˜2U½Á9 'Jb= @W'Åb°à“ ÔÍ9Œ&6K'úÌMô LÌÉ¡k, <[žÆµFÉýÊ8¡LQÃá2ÎK›²)ŠmÊθòÈBºp Ù(RÛ2¶(Ä\RÉ”¤¸L“?±¹.a‹—ZR‚£pÊš ×zX¹i°²RfÁ`˜(Ž‹¦ØEÜÖCc„•)~òj¨tYc@_Ž®¡'08&q,\xÆÁ g cèš$p}6ÁEœ3_*†<ªÙ†³cfªb°3[Ðå‹’‚ƒ^%§ˆ0h,#Ön¸®S-tĺã”ЮÇ1úN…Áéó½Yœ«2Ç{Âf׸t¥˜ElÚ…:M6ƒÊǬK^ZŒ2`‚ËAlî…ãóæ  †ÜLwôŽã:jgŸ?¨ƒËŠuFM'¹<>‰ïúëá43z -t‰À•'ÉV q^,,ÆbZX>Q]ÌçÃbø—dÑJd”dû g”èÓÁÈ0gæ`ù1¨ƒš„…D›Œ«‰}kÂ&h½âü=ŽeÙÔ‘‹dò§„•E¡b#àmŠ™´ ŠÎTC‹ç:èJs6Z>¸ºÄȈKEJ°Xhtf´"ÁQ$ÅXý<á´- aO˜«û'q¸6ˆÑ×¶zÊ$NªªgUqY¦‹2zPØ.¾ëÁUsŒ),Þ}NW×ÐÐ,$Eg<‹ ÃHx…Ó?œ1fDcŒXÄÅ=×{¸ 1{ MHЃl=pW $q’9d, ’gðlt:1§:DXä0.jc=΢ٺ4:ÇqV#`ÃY‰.Èœ…Û€µ‹QZÎæCvƒ†ö½hßízÈ8 wrÆ–†\ÖP fÆî@oÆB;ë_"1EϦdí‰ ãæ$´‚JÐX Ã¥4ÁðMl÷,Çå7Npý=ÇÉ}Ž«©,€ å(G.á@†ŽVH1ºú$º"—™ºƒÇé±®X$§‘”8&ó2.ñbœ®³ qY ,¶LÚYl¬à|~ cH–ˆ‘[ù퉜¸…›ùñ$öÁ­?ʯÐòÇãôøÛY8{ëÖp§[&—'U5šªþ¿Õa'Åã½mŽI?qÛ¨kä”ÈÈ.¾~ü'#§ŠnaÊŠ-¬)Ñ}ý÷aÓ¥Ž7Æ}ÊÚ=~¶è^öïÞì÷6ó¹Ú_ÿñgGû„¬q÷¬n×õ7õáwnxkÐåÿåØƒú»~NÇIÂ[ŒÕ÷ïú7»­•ü›‹ínJÄâ'½}/’Ôìÿè-Íî–ãÍ»à¸á'Âïrõ£ïÿñíÿ"Ìý_’T(ñ`ÿó—ó¿þ$ÿGïÿ"ìÿ"OÞÿE}‘þ¹íÿbòÉÝ_ÒÉÝ_Ò©Ý_’©Ý_L6µ÷K»9ɺ_ºýIc¿8kºÛè¥Ý:£}Q¿ÝF ˜íkÝví‹ùaœm_ÄoÛAÒçØÿ‹a„œºãèÿ£»ÛWþÛmÚ $œÅÚmþÒnãÑnP å§`KñÇ•äAÍä§ÜýiØŸvw»ÕB»UC»uC° »Ífº­¾è6Wè6s°¾·Úm.ÚíÔЂ]ï¶W¯áB„>ã´WZì¡m³X›ñcÔòßÝ’j*¡vP§ì¶»Ïr¤x÷B<ø%¤Íö"}XVÄÿsnÁ?æîÞHþã¶ù0øNrb§ùcìÔ–+pžV®péwl=J‚ŸV;ñ…OX÷A¸“ê°v‡+¼¸XËé`‰"|…«ìu½á;¬¢.èÝÄHt“ãP-ÜÆçøá\³Ç𸌯oá ›¸ÒÅ\c0«ÃÂI$,—àJ&®©Àuæ3Áx\žÅdžj³],à;‹¾ïø®.÷0Ù­™ª 3Uùç8SýËßÄß4ÿW?êüßÈÄ<œÿë¿ÌÿÿÿGÏÿÕƒù¿ú”ùÿùŸÛ €Ð“+ùä @þÉ+BMîþªÿ+®t›È+?»û¿;Mtˆ0™º‹åH>åîOÃþß{w;ûúó(Iüî–Ù|q|ý϶Üæw'±»´BBòò‰Ø‹Qìv+Õ?ó6ù¹ûÇYÈþð€ÿ€Åõ#.À ž½&ÔÛóæpL›Ó±Y%F·c,v@ÓûÿZsEæŠê/sÅÿÌÐüÏ›¬?ÎüOêÔêçõ—ùߟäïÁüï´ÉÊ—l¶263i/ëÎ.{±ÚÝ®·×‹…}¼Nù#ž‚~0ѪòV•¹’9½ù÷_uêówm˜€7|Ê©ìöŽÍr¿¾vϺY»yÐb³ÚïW»Å²;;¨Ë¯ ¿dùåtþ§! ù˯¦óŸ…ü9ä×,¿žÎ>äò–ßLç_…üò§,:ÿYÈŸA~ËòÛéüC~) ÆògÓù/C~ ù –¿˜ÎÿuÈo!IÎ;Ÿ¿ôߤ¤«IaM*V’j:ÿ&äÇšÔ,=ÿyÈ59°ü‡éü×C~’Ô°üÍtþmÈ’dÌߺ¿§òß„ü I–I²‰Hò/B~$Ë$ÙD$y7ä7 IÝ©*Œ¢oÂFZâ6 aM˜L›ˆLïC~¬ “i‘é»!Š5a2m"2ý"ä`™L›ˆL¿ ùA'X&Ó&"Óß ù-HRwEÈŸOç¿ùA’,Ó &"ɯB~¤craòrñr½¿\\ì–/‚zÍ@¨ŒÔUtxê –gw{€ù:0~W~ÔÙzwv÷å— (z`ÃV¶l¿ÞœC¹€­Æö*Âv‚:_/W;(WÔ=ÂÊ ê¸œ…Ý­¯/‹ÕeQE$b*™c%™HT‘8£Æ_¯7¡4"ÁJ2ù¨"ò±á—H@TLTªˆ¨¬Fø%Ú“š*"5«Q~ "|(X¤÷V£¤äùÀFÖ*2²®ÇÚK h³A¶Š ²ë±ö’(Úl¼­"ãíz¼½$ 7|«È³o/ lo˜þª#úkµ¿ @÷†©­:¢¶®GÔƒP@ö†©­:¢¶¶c§€ì SZuDimÇ:OÙ¦´êˆÒÚŽwž²7l¼®#ãõv¬µ4P½aŠªŽ(ªí84½az¦Žè»Ýï¶W¡`ØÞ0ESGÍÝX7àzÃMQ4wc݈–VÃÔLQ3wã݈fWÃÔLQ3wãm6XÃMQ4÷c•Ds¬aЦŽ(šýåvw0ï¨_º£åfŠs\7°ÏD‚Ú¡;ojfh~¾<ÛmCÁÀV‰bXóVÍÓÝ xf›?+@Í"Û‹íõj˜Ì °ÛDbVDÏÆºì6‘ä *Òôgã»M$%‹Èo÷‹%‚åV3°áû’-±Án ãWáèù(T »Œ]"®óQ­•g€ÅØ%"ìZ1U&ÀzÁè%"ôZ0U&@zÁØ%"ìZö¢L€ö‚ñKÌ[“œöRí£—8ÁÄn”h/¹D„\£´—h/½D„^cm/€ô’ÑKFèu1Þöh/¿d„_}%ù´@J ¾d“‚]Ž·˜æKF1¡Øå˜IXÙ’1LF¶±o$,ruó8€Šl=*°à%$c˜œŸpRÀÚ—Œ_rÞ–?’!XŠqBrb}±ÜßíV‹õ×è®T„ _3ÖÅ„bLP&\sÉ„*XÄ ÜŒŒ‹ÒÝUÅ "¶Ûf¢\@wu``sk3¦¸R`»NTd*FPÏ×ççX®ø®qö#bî‰Í¨¦Àw­Vdús=Ööø®S™±\·½ÂëŒEÖF®ÇÚÞñ5S±ÕüÕõE@¶k¦b«ðÛQ“Ù5Ó ±õ혂ɀì†:±Åñ~^·½{Š žÙ Ó0ã+ݽ†Ù†òä@rÃ4Ll‰z7Æ¥(n˜~‰­6ïÆ¹”Ç jbKÇ».©8n—b«À·#UT 0Ü0R™©nGõ±J€ã†±ÊDXu;Ú^*º3÷g»Æ,k/ð$ æÉlwoœžfŽ— ÜŠ‚¹%Û×_fÁx¹€íÌÃØ =ÅU¨o£H½Ò½îF,ŽG‘2z¥ó«\Ñ(pB æúéüÊS4Jë™O¤vÝ.›+¼g.9a#ìºÕZJï-ã—ðënÌÆR hÏ“X/ÇRñ™»KØÁî'À€øÌ÷Ô¾4 öjLëh ¾e’H¯Fg*Êó-3lÄ@z5&˜Ÿ¡$cvÈÓQ4ÀüŒ‘"‹†_xÜÞ<]\•õ3FŠ,¦s±·ëo >cæL6ïê¹ÜnKS`|Æ:0‹tàùxå€ñ93$óˆ!ùl¤Tèž³fjb3×Ëu(–çLæ=z5V yŽò"O0ܱ2 xŽ—±y=Y¡›-W|P¼`Н˜7×páUe@ð‚¼ˆ¹?Ö@¬.XwVߌ4uÄ.±‹±;ùØ¿Ü`uÁ«"2XíÇ œ.ÙL«ˆÌ´î¶²ª(ÙÔ¨Œ¨¤û‡eÒàP%›•‘™Ñ«1å¦Á£*J&%eleWmLÜjóÒàO%kô2Öèmß=[ó@ƒ+U”Ì•\3±Î"Öú ‚\ƒ#TÔL®c>Âñ  ŽPÁ‚–ÄaÞ¿wdxjp„ i$1ø` ˜`ƒá!2^Œjgp‰ Ò#;èbŒúèeQ8â0oAñYàŒ8D¦•Û±Y’F‡( v‡ùµ° š=¢,BE" k³¾–¼o0ÖR4a@ŠÐãüU€‚J6Üœ§›pi4µXŒƒh"Ýx=ã ÑÖb ¢‰tãxôšF‹‹Åˆ&Ò˱(/6hæ×4; 3`vI O8Z0`yI OˆX_¿@fÀô’,@ÆbVã%ãK²` X— ,0ÉÂd,`=Q2 `%›w§— Ú$ ±p€ñ5jm’ÈX@Àv¢dA$ ±€ÝDÉrc<‹ÅìÆKVdA20¾BfÀ®“,,@ÆÂî&JÀÂd,, _Þ>ƒ¸ÛN²¸‹ ØO€°È‹ ¸ß^\à=‹±x€Ë‘×€='™ _Æ\øÛ»Lgn{sÛ¿z8÷4`ÄIæ³—1Ÿý¸ÝeÀˆ“Ìi/cNû>”ƒ/ç0â$sÛ˘Û~<,Ñ€'™ß^Æüö.‰`@sæ¹—1Ïýv¼ÍÀŽ“ŠéuŠ—î hÎâäx[“à–œd¾ró•ŸÙ½ 9© ÅdeçýO·/—·—PI0ä$:ËXdVûj øÏœå2æ,¿Øl÷mòv¿½ PÀ~ÍD)öZÛj´Á ¶­Ý ±"’ôõ8pŸ9¸eÌÁ}û|¹Ù,~Ñ!B{At›d¾nóuïÆ –Bt›d¾nóußcó #E!Åþnwíæ´Ë¤GŸ¹ƒ‰-¾ln.´µ§ ?#Ý…CÕ¹×=‹°óéC=ŸB4›4lÑ%‹y߬®Ãëv)ıµÇX HdQcùl·>[^‡HSa“Ü}ŸEy>R-Xw“ÜwŸÅ^›;»|ÂÖ$wÚç1 Ü6MàÄ«IÚ²°ED[«*-Y k2eëvyd…ìb¤} ^M¢¯Þ+Ep¶[ßìó)ĪIî§ÏcÞ¥3ÂpÝó…Í"¢Ebq`€Èøò°«Q„;—#mAj’½,òÈzßzTý@ŒšäNþ<"^ëí>´ĦItî;Õ»ÇcÀRˆM“)§ã .®Õfx14…Ð4ÉûyÌ à»íy€J[®X#ºþùH·AHš´Ü+©Zït[=ÛÃ2G Ai’;õóè È£AiÒÖ¬ŽóNûåz€ä÷R!úq2§¹o»ˆ½›wä Ðdf‘9edÈ¡þ´à3É=ÚEìZŒZ9邆…à3™qk(:ã_m Ñg2c ò±zÝÝÜ®7Á(N!ðLfl¬(#Búb„Æu&™£^ÆÂ!©‡÷¦-DœIî£/#J¬]"€µèÄv>o®\˜@YÅâvY=»Õêê^^ h!°L±hEÑ:£ËÝÙår}¶¸]>¿\Ø"Ë °Q`3Šuã0.ï7ëÖZ ü³Y¦,öºjê°aTßÜ]/÷m¤Ç‚eV1°Ã˜›âí®kXpa*T9¬‰•, "X ·*XɲH›y‹Õë0³ÆJ–eÓ`+’7>ë°a¦ŠË#`û¾\[¬&D˜©¢a`Å4X7V‚íKF{Š‘‰´Ù€¼oÕÈà™Pùð­ŽÑS"0³TÉ„ˆlÇQfªY•Ò COcœ;³0°R†UÊ 5óLèñ Ö+eeŠó6Áj1@ß$‹¬T;ª©!z*ˆ`¤±öLóu¤º¨WÕÅ<¹o¢)½ž8Û>º¾ný6þ ÷7Û‹ÕÅÎõäê:(‹\°~(†‚FÈuµ¼¹ µØ Læå4Æfùü0°0V")Ce½mù|}¶Û¶J/ð–’‹JQù˜.îÍ¿»€U`º$Ó¿ðMhÑ ËÏôG>¦s{›±« Ôú¥Ýâ#ôKîETŠ U¡@àøSí¸ÑF»ËmÀµ])†5p²ŠŒÆÝÕ£e°Â£*¦HŠ˜l,ïHFeBDy™mY‚µJY­Ò¡±#x7—CkgëÄ´HÑ"gˆ€uÊBdhtU XŸœÕ‡´„ìß¹› ãê"ôUÁÊsÒ€x¾b†FDÅ4DÑw£ã~†FDÅ-’j^ÔŽÀЈ¨¸Eü‰’¡Qq‹$ªÚv?¶•24"jF©j ìj¹^ÜÞ?ºÝÐ&5ÎT”:2™¯¶ Û3ˆIW5빺xˆq»g’1èŠE©ºz˜ù|Í Ž ÂÎ %Rõáan^lˆ2W,rH’‘bã,!ƒ°rÅ… moö®¡Ž•Üå 0€£,>HQ|Ð8Æ3€€(rÅ‚…C\a1 „\±x Eñ@ã—Û`Y ¢@ qŒ‹åõÅ:tZ,HQÐT£®1®Xè:" çÐ"0®Ø.0ª4À ëX¼ b\5|f‘öûí°’A¨¸bû¢¨&2j܆‘9ƒøpÅÂ{TÑÒ·Ë0 BØ’V¸ª¤)¤áì~·Þl¶jèWÒÌ[©…ˆB<] ’aÈ(Æ ÀHC1 Ÿ¸@4ÑQðJVáHš½6­…‰b¬ÃFÊ0Ò(Æ«KÉÄ2 `Úh•1Œ,^™¡"gyÂQ}·G $kÁ€Š(ÐÕÀÖ\"[K†QF1V›€l­FÇx0­5èã×Éz`‡(Æ Ar…\mD…¸ x!ÍÞT×2®CV»€TÕL‰È¸Y û]椙ß^˸ q‰9iÍ”ˆŒ+‘»,eïÇkW!«a;Û¢´f*DÆUHXBÊauD³—뵌«ýmhXÑ,€A˸ 9=K$𽙝e\‡ÜBu öG³ð-ç´È Y™‘qr¹Ü³e‡oÅ ^,ͼæÚÆ94¬ß"0Û2Ù™‰YP¶£3F¡,N!\  Äîh¢³x#õ“oì5ˆàÑk¤lÆV]=_wö*‚½3ÖHY¼‘V»ãår‘@(ÎYkåñÖj:4¦çLðò¸à‚ÓÙ>:Ëߘ€Ð3Ìç—…€åÙî:Ëà«þ5ÊçŒgùìÚÌC0à~Îx–ÏØ*öÀ ìGçŒgùŒB'°[ `;rè"γ§ËÛË«5,E9,¶'‡.â4[]?l2pØi¶?‡.¦hÖïÇæà¨CöŒcEœc7ýËÒX,`Á8VÄ9¶|zu¹¼ÅÉŠà­ÓãXçØêöaƒ·N³`$]Ä9¶a?xë4‹ÒÅŒ)»ws²‹K°føí4 Òeœb xš…þè2α˱‡ž.ÇÊ9޹F ËJ ¨ÏÂntçØÙˆoŸfû›è2αQ0`?‹fÑåÜxyD€šE¤è2N®1Úƒ+P³à]ÆÉ5 ´¯Ø:F_ AÀ9¨Y,‡®âë½j½D0à}ÅVªøRÄjóÀà+Ô,žBWñU„^·bÉÀk¨Y0„®âK=+PŸÅ/è*>›w}yµ¼uÝ `àBÔ,ä@W3+~Ï– ¼‰ºb<«ŽO¯ð—›íÙ%ŒhèM¬™êªç¼‰´‡ ýŠ5S]u\u= Aq`@ûš©®zNu-ƒ_ÎáãYX†®g&AýìX(`<‹ÐÐõ̺8¼¬$$úY†®gTVæ.,hC×qÍ5¢$: Y ‡®ãškÄ”è‰dAú0C®‡jP¢O’EyèCœ\Ãà´gáú03Å~ÈT‰Jø¡q†mÇÀ€ö,Dâ {ºÜíÚwПÅèÃÌbM„Åâ³p}˜q ŽÔ]˜,,Dâ$»éJôe²‡t'ÙÝXÉ€þ,DD7q’ 3z7Ù3º‰“lÄÊ‘èælÉš8ÉF&¥žl¿ÝÄIÖùÁXèùd!-º‰ól¬dèe;Öè&γˇö‰DW(Û²F7qž]>œGJp‰¶e™ño]mŸ¯C°‰à5l»3ã—ò@_’$Ãâë^!RH–!ÅÙåË„Pà5l›3ãÉé 6ˆ¤©dH3 -Ò5"Y@ªÒÌêD‹t Hà)5lw3ãéöˆ˜nØÖ4f&ŽkxýÈ þRö¦13ÑX½%ŽbŽSö¦13U›0Ÿ’à85lK3µC 8ÛŠÆÌ„2Ý/CCƒÃÔ°-hÌL Ò/†‚(ð—¶óŒ™‰z¹ @g¶õŒ™‰ýYnVw{X†Rà,5ì$3¾³y°Þ£ÀkjØ66f&§Ÿ*10 5ÛÒÆÌDÒÜ<4xQ ÛÕÆÌ„Ãt{>J)p¦¶«™‰h髹0pª¶«™ I9þKîTÃö³13$çgˆüfÙ˜™ž ØæàR5Ì¥j”_lXîÚ“–÷‡¸@€éìhtCØL<BåœyeRQ‹õó<©†’nè<œ)ó màA5̳k”‰b¬Î.p™–nè,)WP 0s eã å_©aÛ%•Å1öhË\ʆŽò™ÂØo–¾nTo`~ŠdebH›M¬‡Wë’µb Ud³~Øš"[™(ÓnäS(ß@çXdë¢ g$ÙÊ´B4…q²ÞPÃNd7:‰‚\†o¨au£ãšäëPp…¶K„ÑqErq¹<(ÀWæ•7:®Iœ– ÎOÃÎf7:®JžCÂÓÓ0×¾Ñq]B¥ø: ;¤Ýè¸*¹Þ¾ ÀW`t\—„O¡Á·iØqíFǕɋmÀ¾²°£ãÊä ‚|eÚDǵÉMè` a™6Ñqmò5ÐD ¤,S':®Nv¡: Ë”‰Ž+“[,ò•)W&/VMpsuÃÂ"ŒŽk“=(G þIÃ6B1&®NvPðK]aL\Ÿœ²;ÒdLŸ˜¸>¹Çê€Ò°íYŒ‰ë“›õË]@ÎfLŸ˜¸>¹‚FÏ£a'—×'Û€G“1}bâúä$8Eb\ØØ)1ëëÛ»Ír7ìQåp2Àá»ïD6ͺÙÎIèàe\±q©ùM†ùVÊL˜b`óçÍð˜0ÃÀ"[áø$tp6ºì–Ev­"°Íúz…Õ ÎF—=g`'œ9Ì6ÿt`)€• l~‡¸ã6 ÎF—½f`‘-¬ÎÇÛ,8]ö†ÍŸ:|ÜfÁÙ(‚ñì„s‡Û,8]vƳØ&Ã=;SJè $@0žpòp·“(‚ƳÎ~ ÏN8{ø¸š9H€`<;áða¾/¬€ Ø]vƳØ&ãÛß Ø€Ýeg<‹m7ül\rÉxvÂÄl_X°»ÜŒf±Í‹/G °»ìŒf'œ?|$š°»ËÎhvÂùÃ|Ç`°»ìŒf±½Œ/G;6`wÙÍb{_öŽòÕ‹‚HF³Î >â,lÀî²3šp ñq›IÅhÛ˘ΤÀ3l¿î23–Åv2¾'†ú+ƲØÙÆW£:¶_wÙËbgoÆK¦€ÿбLÅšþ+Æ2aÙf¼šø¯ËT„e›Q5 Û¯»ìŒej~÷GN ì׌c:±çãêÇû5c™Ž°ìùxó`¿f,‹íRx=Q2à¿f,‹m&}=Q2à¿f,‹í&}=NŒø¯ËbÛI_#þkƲŽN>Öe)ð_3–pvò1˜þƳNO>²Y`_v—ñlüôä8H€a<‹£|3&Lðß0–ÅÎQ¾§lü7Œe'œ£ü øoËb')ïÆùŸÿ cYì,å °øoËbg)ïÆ…)þwNÙƒ¥IÿvV‹m‘Üzh樓o±½„oG+œ¢Á—2¾Å¶µÅC­ +Ì;YF0ø”1.v´òD5ÑàKãb‡+ïG; Eƒ/eŒ‹®¼Ÿ(|ÊÛ;y?ʸ >ËôZtwúQõ¢ÁgÏN8_ùÈzLÑ䳌g±–ïFÕwŠ&Ÿe<‹°|7^M4ù,ã™=ño °ŒgöÄC¼ $À2žÙÏ^@É(4ø,cY쌎ã”Eƒ/c,Ë",{Ù¿8Ž5sPÀþŒq,v\óË‘á.Es/c ‹Öürœ®hîeŒa±^Žë 4÷2ư,°—ãæ^Æ;^á›ñ’¡¹—1†e†}3ÞfhîeŒc±³'ï'JÜÏÇbç6¼q4÷rƲ<²Wã€æ^Îx;.áÕ¸ÂFs¯`ÕŒ ½/|«fìhè>@²Ý¿Á@ VÍØ1ÑËñ@ƒ¯`âTDÄi $ `âTDÄi ¾‚‰Sìĉ)0€‚‰Sì@Ž)0€‚‰Sl“ýáý ¶¬d€’ñ,¶üH@ÉxÛ' $ d<+çyv &@JƳržgÀ@JƳèiÛ£²iH@ÉxVίEɦ %ãYìðîÕˆa`%ð¿d,+c§°ŽRÖJàÅXVEX6ü¯˪Ë&Àð¿b,«æ=À€ÿcY5ïñxü¯Ëb§“¯Ç‰¡ÿcY5|ç1e5ð¿b,«N9¾ó ø_1žUóË7ª ü¯Ïêùå›ã0 5ãY=¿|ó $ f<«#<› ¨ÏêØ±^ã`)H@ÍxVGx6P3žÕóÇ7^nwר›)H@ÍxVÏóì̂Ԍg±s˧À@Œg±s˧À@Œg±s˧À@Œg±sËïÆe3 80žÅ.¿—Í $àÀx;ºün¼šHÀñ,vxùXp`<‹^>p`<‹^>Ð0ž5žƒe H@Ãx;ý~dvž%Àÿ†±,vúý(˲øß0–5–ݲ,K€ÿ cYìdõû (Àþ†q,v²zw<ØêÉËÕNu`Àþ†q,v²ú°¿a‹­N•Ül‡ÓK š"í\*r(þsÅ a{.»``‘ózìÁ,€IÙøz¢d!ŽÏeW ¬üä’…p>—]3°ÈñS%KÌ0°ÈÁ&S%Ë,e`‘³&JÂü\vËÀ"»ŸO” ÂýÁx&>õ\(ç¸ìŒg"v.Ô8ý5‚ñLDx6À‚±áÙH€`<žM€AÐ_Ã"»áÙH€d½)c½ÙŸâ@ $€E)5ò”S¾Î—· YoÊXoŽ— ‚þóÔÈXoŽ— ‚þÉzSÆzs¢d ,€ª‘±Þ/ý5’i Ñ%ƒ ¿†Ec52¢5¦J ÏT„gሚƒ ¿†…)5*Â38ïf‰` ŠñLtx/H‹zjT„gS% PŒg*³ñ’Á9.;㙊ðl¼dpàËÎx¦"<›*H‹ÇjT„g%'p£Ït„g£ 8 Áeg<ÓžMhÆ3áÙ8÷ÔèϦÀ@4ã™þÔCš•à²3žéϦÀ@X Oc"0zâ“€Ó\vÖf&ÒfS` ,†§1‘jN°(žÆD$` ÜÀMÊ$ JÀp°Õ ‚¤¬Ò¨ `ç2 H£0Z2p7,B¦I£0Z2p7)“€4*ã% `á6M•€ñ’¤LÓ¦M;Q2p7,v§IO;ó K®àÆ2ž•§Íê^ H jiÊÓfuS‡480Ƴê“g(pLƒc<«>y†680Ƴê›öÅ|ñprƒc<«N±i·ß G~ 8ÁÁa1šÕ'A/p OpÃBwšú$#hû ‚à‹¦¢i>}@OpÂñÅâ`(‚"m6¡µs€’}êà$áˆV±jž¦h_  @ÍÀNS´[(¹Ò8m‘ Kžà¦äJã´EªçP³’Õ'MP^ì $€9¯šú¤ ìr&á,GV²C¤dÔ_pÃÜÍáS-* gB¸ìL"Ãf{Z탢„s!¤ÀÃl¤ FèÄúíÙ38~¥À‘H : b·}¾¼^\ß=_í\Æíõ*dÕU°¬b$ëþå6dµU²¬r,ë¥k‹!spâºÌŠeV#™Ÿmïv!¯‚¼šåÕcy×/à¹)ä5,¯É{»þ&dÍ!kʲ¦cYW/†Í$œÓà2[–ÙŽd^u;#™ dÎXæl$óõ:Ø«P㻼ùX/A™S¤UÁ²ceÞ°§È¬’å.G™µÚ@?¥H®Šå®FûøÙþ~Èl‘\5Ë\OÈÃåÝõy»ñãcÂHfçÇ` ׆ÑLc¹½»]^.c\ÏÆädØm¬NÁ*5jx9lc½Þm\†‰¢ÇŽ`8vçiÀÉG2œlçlÀ >Oɶޕš†Á(NhŸàî”Ý>»€SÌãîO§d»÷JM¶|gPëp|‚ìöëœjç"à(À± §žÇ¹ 8)àd ç0³89àä §™ÇùzÀÈgÔOÃÐ1œ«€ƒ|.Ž˜ÇÙäsÅpä<ÎóG"Ÿk†£æq®òùÀpô<Î6à Ÿ†cæqn|>0ýS ~p€Ï¦ªôÏ.àŸLÿT'èŸÛ€|>0ýS †aN?ÝVÌ€s‚þ¹ 8ÀçÓ?Õ úçEÀ>˜þ©NÐ?/|>0ýS ¾ 8ÀçÓ?Õ úç>àŸLÿT'èŸWNðCÊ ]:²¢=V.6Ë‹íf=rÊ÷òUè®àt0‚Áˆ˜§wW¡ZÁùèp$Ñ38/VC¬ˆ„“ Žb8j‡~ ‚×ÑAi¥g Î·OwA£2 ÈÌݯn÷¡±ƒ·Ñ¥ (zu錼}h§àktP–AٹʽZmB傟Ñe (›+ÓêùfØ3N‰)gHù Ò:l.(á0‡S0œbçÚ]]†­#$fàÀJVÎ$wÅ@ª¹Æþzµ{HHo¶ËR¥2‰tµ¼z Î1p8†s˜ÁÙ|}w¾¶C–pŠƒjT3õüþÖ](à·f:IÌé¤ëåíåÐLp~bZIÌi¥íõ]€nk¦”ÄœRºÙ^m¿†·5SKbN-íÖûÛ$Üš)%1§”n7Ûˆ­™RsJiÿb·>$`·fZIÌi¥»«Ðب­™Fsé™k£¤€Ûši$1§‘.ÃiÑÎ'p8L‰9}´Åâ ©™:sêè&ˆ†FF3=$æôÐíåpD¥„ÓSEbN! 5ò™é!1§‡Î.wë Ñà‡Ä4‘˜ÓDaGK Ç8¦…ÄœºÇN7@fÃTœSAªl6LÉ9 tï ·'2¦‚äœ º½YŸ¯v÷a0ƒcÓBrN ݇&JІ© 9«‚ž/7›É¯ SCrN €¹ ÓDrNÝ}fÛ†)"9§ˆZÀ~uEÊ€Þ†)#9§ŒøÑ»ÎpPLÉYûèa¹çL+É9­GÞJ8rÀá0½$çô?ôVÂÁŠ©&9§šZw³> PHt¦žäœzjw¢¼ÛƒŽ!p`LCÉY[©ƒ-ÙOÎ#UÊôBy‘`ØqêîéÁ€ïlƒsÛqª?"÷Ü”p4ÃJÖü.çk×P0¬OëÉa0±XçÁV·g+Þ§Œªäˆmö xŸ2’ÑÂ~ôEóc0 ?óU±ý7^ =’î3÷LeM¤Á–›ga‰N%UƸÕc¼½›Îož-=cU¢íÆ1^¬ÏxôªŒétÚçaãbùü9€·3¦…i‡qóåK¤Î˜Ê¤}ÆAVë àë«2¦àúCG!n·wœ1mÔå< ñjô,Càr1û¦?Áyãr¹‡ª]sÆ<Æýåj¦×pËǒDz^ÞAÇ€S°ÊEòE®–7€TÍCòC6Ë»M7a•3†ä1†<_ jÎ’Çr ÀÒœñ#ñã*ØãpËÄè‘Çè± ÀÑ‚q£ˆq㊠-/Š/vPàgÁHQÄHq»µnª`¤(b¤Ø/ƒ¸‚‡°*%Š%î ÀÌ‚Q¢ˆQâYhLð V£D¥Ä%@/ F‰"F‰`ø«’‘¢Œ‘btœ4à21V”1V8ƒb³:Û?¹-g$9à²3‚”1‚l7çý/|-SÊSÎv÷7ûíÅÎ VÔ-gÊgB5¯ \ƒUÉèSÆèÀ‚n \nF¤2F¤ñZ‚°*¥Ê¨–mpV#W#×íòyP:p@ËÆèUÅèu¶ÛÞ¶·—+À¶WŒ]Õ§³ Ü…UÅØUÅØ5¼¯»ª»–W—Ï×ÏÝõ«KÞWŒ]Õiìb`ÀûŠÑ«ŠÑk¼šàB¬*F¯êÓé~ÄŠÅyTuŒ^›'·—ËG°¶G¸ÌŒduŒdãåbÅâ+ªúÓYNÅŠGTõ§³ <‹‹l¨êËÆÁнȪ:Ʋ 0à?‹)¨ê9–]ß=mÀ@0à? ¨ê9–€ÿ™7¿:DGÈQ0t82W|u˜ãÙðÿÀ&º’ü)жr¨? ] «f«æÓíår½;Öfà~¬Ù{ó Ù­«íîbìØ»ë€aC0 Åx àu¬Ùkò ™¿S ¢D19ßH šè(È 0rÀ0 ÃD1^¬8ªÀ¤ $‚¼ZˆË@ld¿ @2’EA 6àS¬Ù+I‘G1®  éZ0" ²YÞäkÉ@Ê(Ès(‰D¾V ¤Š‚\/wùZ3: ²…‚ ] ãŸÁ‚ _ÒÄ©v (à9¬ÙæIW&»áÔZ g 8¦Mʸ6¹…Þ§aÍ6CHʸ6ÙCuÀgX³M’2®MîBAÀ_X³½’2®Ln°aÁ]X³M’2®N®\…µ`ú¤Œë“‹KhZðÖì4œ¤Œ+”_`Q€´‚)”2®Pn/A¥€“°fgé$e\¥œ!JЬe:¥Œë”3h•YËtJ×)_¯7YËtJ×)gb‘µL§”qr†\±È[¦UʸVùÅ"m™V)ãZåk$¸k¶IGRŵÊ%hpþÕlsޤŠk•KÀÒ²=9’*®T.לe{q$U\©¼ àé«ÙIW*ØÃàã«ÙÖI×)—[( 0–í’‘Tqep?ôo .½š”TqÂ.W2ðµH1bÉ¥â'ƒ·At÷Ë€cG1œø¡à,ª/ <—Ñ0˜øqàϸw` À,‹Þ½R7 ¤€’3”ø9à]]€É¦d0ñÀŸo¯Û©Ì Ì>Òà¶sÙk?üén»4Àû”±+³ëvûl¿±ß©ΧŒYiœYÐj0AÒøž2V¥qVy ç¸ž2J¥qJµÊæ¬=aÚ)®§ŒRé ¥ÖÁ,=e”Jã”êbPV®€dϲ8΃QZ yÆhÍ\ˆìβ8^]Jüβ8ÎÎ.ˆ±ÞÏfF¬W¯X±nÏâݾ_=xO>ÍÙëö,Þí{hX1 ’Å5ÈþQ€Î9#M'Íþöv@± ð8g¬Éã¬ÙCOÙœ3ÖäqÖilÎiò­ÁP€À9#M>C/˜ƒ g8gÄÉãÄé½c˜lÑèw©ØNïíòïf{±>/® ^D—Ý0°ØNïã`Á‹è²[;ttu} 4@°°cGî_ %ˆ]µ[ݺæ\†.cÍ`";ÓžÝ-÷;Ž£§a8‘H¾€óì¼……U¬çc.— ÖÛ±Ã?—¡:Á+è²°Žøâ9¬ò*Ö¿±C>—/V±þ†Y¾vÆ5@XÅz9v°çò>]ëÞX æ`x-^bi€ºlÚicÇy^EÚøË¦ž6všçÕh©MÄljc§ybÁ HÌ& 6všçÓ¶v×ái›•Ù ÔÆÎñ¤ØÝËõÅ%X½Ö­Ù<ÔÆÎñÜö[Gã÷ (Îæ¡ö„s÷[ÎPܸÜû[¢ŽAl_ q¿ÍAb/ïî6ÑÄ î‡]¶ÐW1U#¢ªæ2 qÓ2"ªen IËTŒˆª˜§ˆ„eúEDõË1«L·ˆ¨n9 …à ‹ ç0/ _8 iÜ0œf–8gh\3SÎjœÕõuÀ×Lᔳ g{~>àh rÍTN9«röû@e T®™Î)guÎõ°P›k¦uÊY­sXh€Ì5Ó:å¬ÖYî ¹fZ§œÕ:ËçÈ\3­SÎj§AëàrÍ´N9«unL T®™Ú)gÕÎåtrŠdfš§œÕ<—Û !›™ê)gU›96–°Hg¦|ÊYå^)s8Hg¦}ÊYís{ …E:3õSΪŸ[·2ä3S?å¬úyA}ö·õ¡ùöÍañl»9¿¯¯·»çËÍëÕõùëõõùê›ÅbឣÚç-ž´‹Íöl¹YQb(É°Žœ$P’$:I1R€£'§þý=Ú¾ùöWgoëÃÍÛoß|\´©»7ßVî³·ßÕä?ýrñ³Å¿> Ïñ{¿¦Tç.ÜuÇNu{"îÖƒniK Eï‹-K|)ô_4«ë €!B(QEÿ …Û·‰Æ™Sâg±F£á1‡ñÇTÓúܬvëÛ›-Gݬʾ}?¢¼LOA/}Bü®ôrÀW÷j¾¹ÆjÞmsØv¼Õt-ìñ:„ Dçu¨†:TÓug|ŽU"¼ÁFà#•¨§+1œ¬Ù×P3`i5tÛÏ£9LÓÿM±`Ð8+gu– ß²Sžy¾¼Ò:˜8î™CH6<;ihõ|±ÜÅŸŽ5–OߊO«ñÜÓ5Ö]M<}Ð"YùiuŸÑ'«®'®‡oÓ*l´ê37Xs3ñp3|«?­æ8"DÊ€ N”!¾>­N+CŠí0a|dvøÖœ`@ÍÈx µ–2ž2žOËøðÄ9 ·PG9!áù áù´„ÔqNÂ,ÖvB¾óðmZ¾Gj;÷ì ë=!Ýù Ýù´tÔ{F¼2¬ö„lçƒlç'Øå'Kv޵žì|ì|Z²Gj}šLåXù ¹Î¹Î§åz¤ò'•@&ØRROK5Z¹q¹– Ô:ëbëbZ®á™3’ Gà¹gNHv1Hv1-Ù£õœ‘/)°Æ²]„oÓ²=Zã¹§K¬û„tƒtÓÒ=Z÷¸I4ÔÒ ù.ù.Nš~œ*á-¶tB‹A‹i ­ùi†v[:!ãÅ ãÅ´Œ6Àie@ë-òbòbZÊÁ~˜cm–KyXБómî9áÅ6÷=þœjú9Ъ³O²ð¤‰u¶Æ=‰9 䘧B¦"rCÐñY{¾”)C„5-¼w%Ãm†¡’%ãE2'x0Ô”#øÀ1€ëãÜÉJ–õUÔu| 3˽Ÿ¼"9½*` ëhrŒÜöÓÖ#Ï5ð\;÷Üjú¹aݯ=á~¿¾ÂdįëÉà5aû“7õ´lM=n¿½Þ‚ßÃÌ©0žøË†îúÒ'SJ~å“}1ŸÌŽ0„¿Ü—VvI“PRùd_Jí“òÃøË}iSŸì[Ñúd_ÊÌ'Ó#ŒÜ_îKûSŸìõ|²/å?vÉô¸Mæ/÷¥ý¹Oömúß}²/åÒ';÷©¿Ü7â™OöÅ:÷ɾX+ŸÌ0žu—m߈>ÙëÒ'ûb­}Ra|í/÷xå“}#n|²/åsŸ´G×þr_Ú­OöxÓ%³¾”¿ðIq„±ó—ûÒÞúd߈{ŸìKyç“ÇmúÂ_îKûÒ'û6ýÆ'ûRÞûäq›¾ê.ç}iÿÉ'û6ýçö龘¿ôÉãFýþr_Ü×>Ù7já“}¹JŸ<˜Ê_î[±î’"é v t_²†ÒÇ2ó+ºÞ·ä¯)Ý—í[J÷…ûJËÍoèz_êï(Ý7ç÷”îËûƧű켥ë}¹ßQºoÑÿIé¾¼ï)}¬“>Ðõ¾Ü)Ýwþ”îËû¿(}ÜÌ¿¥ë}¹çÓ²oçßSº/ïÿKéãvþWºÞ—ûß(Ý·ó¿Sº/ïÿGéôñãvŒÙÿú°¨~]¼/ª‡÷‹‡‹o?,Þ¼ý¸(ÝàV/Ü@¹¾Ý>Iuúe7*ýíáýû·ïãÇ©_ÞÞíõ±(¹µ¨ß¾ùìãâ·oßÿfñÛo?þzññ×íð»CõC;|ñ}¹¸ùîÐŽ ïïÞ¾ÿ¸(å¿Z||»øG÷ùäWo~xÒ=äÿqß¾|ûþW?ÿòoÜÓßÔß6Ü_kÙwcû÷Åo¯Ç‡Ôw¿ï¶aéòÜì¶ÎäÝßÿtñÙõêe3øÙO7ÛÛõ7‹ú§ŸÒ¥Ÿþò—mg }ü¶rfÄ›~QdX"yt¶{M÷úµgü>j—!Ú@2útVjkß¶»’½m!CW^’åwï~]`9º '•¢»“ʶÁ›íÓµ´MLáÓ)¥-¥ *eAé6¾œ>}š~/é÷ö=£ö³ÿé>3Ÿn(Ýø´¬|+Èöe—ö³¦ôÁç—m¤O÷YQº¢ôÒ‡.­´/OûÙ¥­Ï¯¬¦tJiKé‚Ò5¥J7>ÑýYJéŒÒ¥+JW”öåQ…/¿j×ÉÛφÊã&8mZgþwùçéŸg”oocüóL»ÿ}viê.r¥ý,}ýLYSº¡4áUt»¢Ù}jJJ[J^Mx_?ÓPºñùSáÓ©ð¿§’ÒÆçO©¼íû]:õí‘¶‹/ݧ¡´o¯ôàË—2J×”¦üoŸ´¡û›†ÒþwKåiw„íÒÚç·¥o_[ùü–êc_Kýa ¿ýlÓYâñ2áë“ ÿ{&ýó3M¿_Þî͹ö³ôí“<~vðý•QûåªìÒ¹òå˵Ç˵oŸÜxùËoŸ<õí•[ß>yFéŒ~'¾å™o<§ü¹ç[^øòå$¯yI¿·ï¹Ð§O§”Î)M嫼¼äļ"¼öU©î“ž_Qù+/yM÷×–Ò¥kJSyTŸ¾}ß_Eâë[$ŠÒ†Ò¥}þBøúÂ×·¾|…ôõ-ý®$¥ OžJ)Q:§´¯O¡}ûÚRšðuIi_ÿÂPy •Ÿø_˜þwÂ3¾} ÒG…õü+2ÊOý[PÿYMiªoNøÔ¿õoAý[PÿÔ¿EIx¤Ÿ êß‚ú· ù/¨‹Š~§þ-¨ Òíg—&}\Pÿ•Ô_eÒ§ ¥+Jûò—Ô_%õWIýUR•Ô_%õWIýUR•Ô?%ÉO©=?K꟒ú§¤þ)©Jãù]’~*MEéšÒT>’·’ä­ýìÒ•‡ú§¤þ)Iÿ—¤ïK’¿2§ûsCéœÒtNÏÏ©|yŸß믒Ƌ² ú¥)A÷S–%¥I¿—4~–$¯%é¿’ú³¤þ,©?K’×’äµ"ýWQVÔŸõg•øçUÔŸ•ðõ­¨?+êÏŠú«¢þª¨¿*Ršî×t?õWEú¯¢ñ¯2¥ /¥òQU$?UÖ§)?éÇŠú§¢þ©¨*’ŸŠä§"y©H^*jߊä¥"}XQûVÔ¾µoEí[ÑøV‘½Ó­KŸ]šä§"ù©*?¯5ÉSMí_Sû×Ôþ5µMí_Sû×Êó£¦ö®©½kjïšÚ»¦ö®©½kÚÏ.m<j’—šÚ»¦ö®É^ªÉ>ªI>jjÿšÚ¿Î}ýëœî§ñ¸.¥KJSyÉ~©É^¬+Ê_yù¬kªOMõ¡ö­Éž¬k*OCåi|yÔžjŸßRº¦´þøtÈ$¥5¥5¥-¥3J”&üŒðHrÊŸ[Jç”öå=ô¼‚Ê[JJÓó ÊO|=%¥éyÄ×CYRšžOíy þˆ¿jßCEù+ºŸÆëµgCú ¡ùACí×îeèÓ¾>MêùÔþlȾmÈ^n¨þ Õ¿{a¢=*Îã»™~êÓ~<î>}º¤tãÓ†îO¥O§†Òt¿·7Ý Ÿð²>}ði¯ÝgíÓáùñÐGŸ>]Sšî¯é~o/ºO'½|¹Ï‚Òþ~Iå•^Ÿ¹ÏŒÒt¿¡û ÝŸÒýýžÑïýžÓï~¼wŸ’Ò†Ò„_úúÊŠî¯èþŠî§úʊ|^ž„òúÅ}JJJÓï~~è>JûþQ™žÊ(Mí«šŽB{y©ç‹ûôùS¯ODšÑï~¼)åO”öó=‘6¾},ñÇzýè>ýïV(Ÿ–ô»¢´¦´¡4µ·¥òXâµ¾þÖJJÓýT?[RÚÛÏÂVT?žvŸ>]QÚãgTžÌÏ?EFx™ßý{ñí§ŸŸˆœê— ߟ9åÏeéÓŠÒ$/9ñ-O=_rKi?ÿ9=//(?=/÷öŸ(èy…ð¿ô<²_Eá矢 ¼Âë§î³M—”Ÿì7Aö›(5¥uŸöø%•§,üóË¢¢´çCé×DyðíQüóJ?_d¯ˆJùß+¯ÏݧÏ_‘|U~~/ªCîÓ~ý@TħÊîÓPÚËCMøµŸO‹šž_Ÿô{CòÑ|4Â?¯¡ök4ý®éwÒ õWãÇ[ÑøùC÷éÓ%¥KJ×”îó{ùi¨~ µg÷þ^â_óéŠÒJûþlH4Ý_ÑýÝOú®ñó÷î=.Ÿ¦òèwjϦ! ²Ÿ íç;…®)ÝtÏ+ ýžúñ± õ;÷Ùø´ç·û,}ZÓïéÁ§­öiK¿{y-Ro?¹OJûõºÂŠŽ_î“ÒRú´ç»?ƒ ûôøÖË{a gKJûùBaýzi‘%>%ŠÒ†Òýï¥+Ÿöü.h½®Èüø]Ðx[´;Eui//î“îoJJûúæ^¿¹ôø4Þ¹‘>RÚúö¥ñµ õ5÷©)íÛ#÷ó™î³Kè~/Ïî3¥4ýÞÐóß^4>´~UT¿Â'EAå),ýîçkݧO|º$¼Šî÷ö¡û””öå/jßEMøTÞ‚ÊWPûÞ^)h=¨è¶è>sJûç•‚~ô»ÝgŸÎ(M÷S{—ÞÞ,hý¦(½½Y”©oß2¥çS}Jo/¤OkëçW5ñ«¶^߸ÏÒ§}7do5…·ŸZ¯kŠºÓ Ù7 Õ¯¡õ,ÿ6e÷Yû´?ZßjJE÷{ýâ>+J(}ðiMøZPšðý|Þ}¦>]Òïµÿ½÷·éÚÛMííï¦öëMíç3MÝÐïTßÕïàí9÷éñ~¼ö' Ð~Éúóh7å.úûÉžhÈžhz^ã×Gܧ/OýÙ¥kú½¦ßëa>H¬$)û+4K$ÍéI“ÄDÑ,,QU¥î¯4tE÷Wú©cbú+Y¥ŸÍ š´±WþŠìï‘9•PöSFé×Єì¾š¥*Õ_Ñ„¬ú§+Û_é‘U?í'K®6Š®Týt¸ê‘kAWjš±êþéºÇ1ý#ikúò˜”ÓþÛϼû©QÒ毤ý•”p²>éßöKÖ_Éú+]Qý=ÊöWú{úþÊTÕ_¡þÊú§gýÓ3ÛÏåûËò~6ß—''û;é'HIî-4÷¥Ï•—T‹œŒà„´r» @÷ßAôއöKÚ_¡2¢¿Gô÷Û_ÉéŠêïékQXªiÑ—§èEJXt«ñt¥Ç9û‰U·"î¯ôýUö-VöÏ*-­ŽôÓ«¤ôþÑ/ðŠ~V K0Ž@†®øE=Ñæ§+uÏ®ˆ>—P’®˜þŠí¯xeâ¿ø+Yµ¼ÞAÙ~ÑtÅ«ÿ¥»"ûg93ž®xµë¾(Ê%‰cÝ¥ìsõeV´øà¾¨þŠé¯Tý•†®Ð ˆPý³”ìq$•P©þ%û+=²ê‘‰‡îKMW4•YiÛ_鑽û¢ýÒ—Çô÷Ð Ñ}éqH–…î[UWÔ>Ú»yÛ/¦¿bû+„cú\†ÖŽÜ—¬¿âåKôZB¤ª¿¢û+:é¯èþ Õ+í‘әܤ~7/¥¡vκÒK(hmGöÌ”*ïW×ú+ÚÛ§Bõ÷(í-†öá´dT¶IÉHr_h#%·–ûrð:3íå+¥‘Ú}ésõkië$òWhõÆ}©é ­w¥MÓPk¤ý?m,=½É §Éi•£¯…ûâ{°ìå´¬Ò‚®Øþ i’²êO*Z-,«¼¿’çý•CÅ?½îÛ°ÖFÓï$s_H#¹/‡þ ­{èBÒ•BöWL%í¯äý•§èqüútû¥ì¯”ý•š®Ð¨W·¤í®eÜÛ_)ú+”˪…i¥ê¯ÐÓÿöî¥Çv$Éó¼EÜ‘ºÓùê™T¸¸@5 àB¦Ü¤³UWÕYêj¨ûß‹AÿlGd<òÄ9yN¾*&áÛ¸wpñåš-[6èƒç‡[lq5wùüû)±Ÿ2Æ–Õ–¥øàjŒ«#Û‹ïù§õü¿1Ží#gà>±…ûxŸâ,¦8‹©-}l)ŽyòDíÓ[¦ØâI8?8æi-klÙÜÁÉ(q­‚¶Ôè;u6×ppúØ2ØbµSk[$>|ȱ¥Ä–ØOs<´¶,¶ôñ_}üW¿éï¿YbË-¶8æZ²-%öS«Ä~Jì§Ä~Jì§Ü÷³Ç–8¯!Îkˆ=q„Cœ×XC` 5ÖXC` e-z~8bK >úèc n”8?l¶Lñ_Sü×G8ÅIÎ5¶T[æ¸ïsœÅg±ÄY¬q„k<k<kü×ÿ¥¿©—©{qÄÊáHcl™bKCÏñ^ϳæ Z¹þóMO9?[fÞ¾ÃóœõaËsVÝE€{…S÷¿ÿyýþÿ}Ê©»6¼‹Swý§®E»ö|µ—1õÐ^6ÑCkþj“ÃÜÅ™_§Ðµ‘/w<\]æ1ØCx¼šé¡}qÆ×á½rÆøþoýóÓ3¾6¼ëŒ¯_:ãìŒQ:>Þîò™=?¢ëß_9¢ÿú§þÓßžѵá]GtýÒ¡Uu½CBK…µÇ‘†tÎÈ—= ›Nh1ˈ&ÕÜ 7MÇMs®ò›½ú~õ=7ɹ2GËðýÍ÷7ßo¾ß|¿ù~óýî{nØn÷ýîûÚzPgÈé*šGmn‹N¢;²—¢xw(ñ’ïHÍž¸õ§æ–Nssžm³säb¨\¬§–]ÉC¼œ+K¦éx¥³^=ë•Îúßþºþëÿó´³^ÞÕY¯_ÞIÈHÄ9HÇÕÙì—¤Ý é6’Åç’r?MºõýsÒíì{xÒÇ0ûý¤ÛO‘j)Ã[V7&$×¶ní¦®‘2&$º© ±¾ ¹­ž“X[С›~s[ô>!±6ÉŒ¤8#)¾EjýùH¨H£Ÿ$¡~!é4FïæýN76Òå»I¨H¢ŸKBÙê#¡:ßO’Pá‚„zŸm‘ˆ~R*Rç'I©A:ýLRj¬Œ¿Rªóý)õ¾Z2¾ýr$Õv¼ŸMR}¾º›üÞüõíI¬íþ~šÄêü>—ÄúlµúË‘ZßIbÕ´ñooïÃ?#©ÕÿoÎïsI®ÏVÿ¤W$Ïç¤×[é¸þI®3;H®?|;z“ôú)’ëë¤ÖɪCÒ8[öáʈÁ|éôï—dÚ®GÏ]u'™z›|I2õZó‚TŠt¤ÒO’HÛþI¤íø¿‰´­O_¼mO^'o€á•‰âÅÛø·#•²ï"䳈ø|)ÉôÑ[°²Ûõº“NùíI§¼îÿÚJozV÷wm¤¢´ÂGzy$© 5¼X‰¸ Rè—~ã–Þø ïÞ‰ zÞ6ýaÓŸ7ç¤Ò­%½ž­·îˆÈ¸?;¼_=©ô9iô-’ènÿm¾ú’h#õ=P?¾»\œ„Ø!avH‘¼y¹CŠì"»æÏ\1OH¦ô) àÉ” 6wm>ÉÆÛüàÀù‡‹dÚìpF'ÿß·õhD%sA"-üÐ¥ø~¼{ª/ûÖââÙzül©Ñúùl)Óz9[/ç[KŠ~?I ôá9ûîk@Ûx–w¤Ý_ T(‹]äÚÆƒü°¸l×㈨@£Ðäã`7@ßuA åRA]šý^’g{^Iž»­Ÿï¤ÏÜÆã>gvë}ÿŒêz½MEª,ízÞI¡/HžÏIœHæÃÏ'iÚ?ÓÙòÎÞI˜H–wf#=Îm}t÷Þr]>!aòÖ¶ùöl‘(Ÿ“.Ûzé‘dÞÞ6¿¼ŸDù̼"¾ EArüV¤ÇO‘Ûñ>óV.é±v_‹ôøµIŽÛs’#Rã»IŽí|İÚÖKGÍììûžÝ¼‡(ïQÇv>uœÙï#MÖÆm¹Úûè&¿Iòtq\Ed®vfÛïÏ6ˆŽ¿,©2Ð%q<|ð“‚&—‚"˜f¤¸!©$ÜÜ¥ˆ¹$¡Ò.¢']Š3Íï kÒ9?öüHàÌA¼ü2çâú¼Bà|›®ù"–ô.ç sîúpmù P:‡ø¯ pÎkl‘ðõ”Òéî,É~)ý}Kü×/KòŒ¬Õ5úÎG¸–ø¯x~VoåO¨¡KáZãxªüWsÍ«DP$™'DP€'DÐ)¶”8…×÷ü°Æ–¸/È¢]c¢ÈSúènËôÑ{$Ô Û¹#Å—„ÒW¢¥Ó †Þã§(yOI§/(¦[PU¹S®mËcÔÅ4Õ ¡A(ý1Ò©ý<¡˜UõEôö—&n¶¼‹tê¼ÞC:í#ÞÝq܉ØÒˆ©öó2–ýc4Ôˆe?ÒPïÓ—ðGÒ)¬Wbâwê¢ü•h¨¹L±Å¹)1õEŒ~åLqK^#¯®GláAxBg-±åy¬ÿüp³eL¶|-‚ë,«ûg!¸ÊÞÐöÀÚ»ð§ÄH²Kó|ø€ªšøàöèï{vÅöXì=¿êÞ±¥y>È´¶|+2mSŸñRºW©ª37zù™?È«Ýy5¶|òj­Gì™Á£ÍÑñž]\Ïå©-klY¥Ýw·d‹ÕéÑm±e‹-{l9Â|W°r8RŠ-f™'ôÚ1·w2-Q#U×ììȱŸl{ä[¬Ž3œ{ŒGŸO¼7}øŽã-éè7GØïÅ–ƒ:FÑ£~o@ÇàýëÚáÅžÂížÚšvº|h› ?ÃÏð3ü ?ÃÏð3ü ?ÃÏð±Ii\íeca>´Í†ïþ'¬«ÔÃïá·Õôٮ약±7ve7–ˆ\ß«mvfgvaöÈÙ3Ûùby¥â|±4ÖP*η8_¬½„µ—ç;8_,£48_¬–„Õ’°üÖQàcy¤>VYÂ*KX­IJ#ü>–LáðGø#ü>ýÃ|ó¶ÙðGø#|,¨„E‘H-¦ þ‚¥“&øXp 8Òä~Oî÷ä~ÏîïlÿX= «ç¡m¶û‰õ’°ˆ–Kºzh›íÿ±êåÙÂ_ÎGÍð3üpú‡Ï?\þr¨k†Ïï[3ü ?ÃÏð{ø=ü¾èm¼­âúÅâOˆpBD"˜±úBUtZÖÇÕ^v_àøbé•«´ŠÝ‡ˆ0DD!"1ˆAˆ"×?"à=®|,ú:ÀÇb¸'"6¡‰ˆLD`"â–ˆ¨D%"&! ÑÎ*ØYE´+)ñ:Âð¦Lá‹ÌÖ>?{ácÅW*n['øb‡u‚ÏÇ\'øü ~D>"ðÁÿ]¹¿ë_¨¶ò¼W¤‹:EÄ þ †?ßáÏðç§ÁŸáGL%B*sˆÇÀ—ER«Èq]àc T*HU”¤.ðñ¢*2•,¢tجþõÿ¿‰ð(¢¬¢$«(UÕ{t'‚;²d]m³ácÃT!›zƒƒO ¼Þàã1Ô||„zƒ/z+‹)ÝcKB·²šÎ~ŒßD‡¦nðEz«@o•uS#Š{QiÊUlˆºÁñ4YRg _ä¤ GÕþë¿îð1Ý*)ôJ ½îð1?ê_–@•%PEäë˜bìàWø5âw¾ƒ_#¼‘ÃFtïÜcGX3¢šÔ„Àù«|Q£J:¼ŠÖÕ¾(W=àcÕ>b=à‹»`‘¦Ãü{ÜC}¢‘b~:CoÍŽ^d‰<Ï ‰P”ñí˜î!®fGÈ+"U¨ZØÔÔ¿d¨—Òãñý{¥ÇýþMéqßߥÇÙof•È"ùléqÒß„wRGÊ»­g²øÌ£ôxHƒæI=©q1»Ô“"!NZ¼"K:¼ÝŸ³µÿÙþ[ÖfF­z”‘ÒÎe‘´ù.oå|¶3{f¯ì•½±ÛõÙ\ÏÍõÜÚ|v¶¤Ée¹Þϲœ¯¶Ù~?ËR™O›ÎvbOì…íüfÒçmþ9Ûx»]¯m¿À_à/ðø²r¶þ/«d“U²-ðø üþ…¿Â_á¯ðWø+üþ …¿Â_á¯ðWøâÈÛ …ƒƒƒƒƒƒƒƒƒ/Ki»Á¿Á—µ´É¢Únðoð7øü þƒ¿Áßàoð7øü þƒ¿Áßàoðwø‘EµÃßáïðem;üþ‡¿Ãßáïðwø;ü~…_áWøw)ý«ê_­4Åi¿ÿ2iÿulëÿ«mvÏîÙ{`O쉽°i0µõÿÕ6{gž¬¢¶þ_Çþ€/«gàðøü~h@ ðøü¾,!¥(×q„?ÂáðGø²lÆþ„?ÂáðGø#üÞ o†7ÛáÍðfx3¼Þ tþ8ÛáÍç|gç»À_à/ðø üþ¿À_à/ðeMíýùj›=°¶R¤ø§öþ|µÍV @ÖØÔž×«mv;Ÿ©—eÖÃëáõðzx=¼^OÚÔÃëáõðzx}àµë7é/“þ2é/“þ2é/“þ2é/“þ2é/“þ2é/“þBÅéj› _™ô—I™ôYç뤿Èí8[øúˤ¿Lúˤ¿Lúˤ¿Lúˤ¿Lúˤ¿Lúˤ¿Lúˤ¿Lúˤ¿È,9[øúˤ¿Lúˤ¿LúË4Ÿ”ŠPº`Rº`jñý«mvüÞñêo“þ6éo“þ6éo“þ6éo“þ6Íö/‹rjª+O² í_šô§Iÿ™ôŸIÿ™ôŸIÿ™ôŸiqþ‹óþ$ sZœÏ o…·Â[Ïê|Vø+üþ …ßâO+•°Ï-­ðÉ,Àg¥RW"£¬ð¥9¸õ!½—„ \úà+—`9¿dT{SÙËüéåÎ{Žß|7Z áüPƒÌ+ú”÷ ýÎWx~öa–s0¼‡[ìgý¨4µÞçö1ï™oãLG>£} ßGnôÈ {3þQYáŒê‘æûQYa^—¾« ÞbËí%ð"û½Âü?þú§ï zmxðúå]U,i¯ÞUÅŸ?T›ý¡*ÈþP¼ìUÁf¨ ²?T/ûCUý¡*xÙª‚ÍþPlö‡ª`³¯ª‚*‚—ý¡"ØìÁ_«Š xîsÁ•Àf¨6û‹U/ûC%ðC%ý¡øÝ‡Jà‡Jà‡Jà|¨¶-**[>T»•@[>T?TÛ–•À•@[>T?TÛ‡•À•ÀëÇJàïJ%ð¢ä½Æòû÷ï·²ü6¼å÷ðK,¿PI»×–ußɺðþ7{c·¨lG5®kcm8/ºŽJOGUç¢Sn½Sný¼F¾§jÒQ5騚DíâK°•îD¥;ª¨t‡µÖQáèD¥»[|ŸÊFOå¬ÇjìEÙû`¶(í#ëð9ËPTyh^§nõZÔõl±7*¢àƒ(ø@eâ‘uØö?b¹íUùlÛõ©*ŒT‚•8RQ[ÖY'‹¢©„X òG# QΗ¬Äg,ÄeÄ:¤š#êxµ¶EòÕþöÃwÝ•%3hW]ß`A]ûý9Ô6;…Ýþÿð¼íí°;°@*t²ÏÖï©’Ü£üF¼“EÚñRÅâ³oY|÷¨õCû`ËR9[«ðÅò>¢Ú\ £·YQkÃò´‡=³E‰ïQfQÙˆòZ/ߣ²VVQÖ‘=³þ Ëà6¶ã(êÍ ïEåãÙLóoGQÛËKd}um8~ŒFm±âû65än%lYµÇZÏXŹ“…Qľ¹Éζe‰õmI˜û6åIÖåÔXCy’Ç Ÿ§6 ŸmË"[dM.í-3/¢\‹,´¥]Ÿ³•…&ª·²ÊYeíú]ѺïžDí,†s5äõލÙcm¬¶V>Û¹ÙÍÿq¶…-*Öþÿj›½³[Ì¢çj/»=Ͻçy-íxW*3ëØÉzêØ“¬¦IVS»ÿW{Ù-J|ZÍm©øeЍR›ù×Y–Ä,KbÉ¢Bm¾xŒ*‰º,mAöUŠ(Rcý84ùû~Ä×™ù¦½–ä¹Ú‡kËàÝã‰Ç¤L’CúЇë5Ï¡„'~(q‚óÃÍÓÆ(Ú÷àÁi×ùúðruù°|euù?þuÝêÓÕåµá]«Ëë—±º´´¸é,>î)%Ù÷&óÎd)&·»÷ql’´¢kg»°I°øÌŸ„‡Éýù%¹Žÿ•Kòþë¿þP–ûÚð®Krý2ÒjÈV¡=œ b l ÈÍ´C3íÐ|õß«m6YXi:Éê¡m6YØŽ,lG¶# Û‘…µàLœ^~;² W{Ù ¾{šÐ‚“[²`Kl)ÁOðü?ÁOð|i7É7%øž™ä™I~†Ÿágø~†Ÿá£'´óä'yÁI~†Ÿá[ 'iIBêá÷ð{ø=|i&d,:2gK¶Ö TB«&kq¶dkÛÐw®Èò²¼…Ln!“K†4‘!MÒÚlBËNÒ–Îñ‰í|‹óEÛû¹Úf;ßÁùÎwp¾Ò(~BÃOƒëmÁŸ<ïIšE’“¼p$/ M<ðGø#|/$i„FžFø#ü¾¤4Âᣧþß Nò‚“&øü þ‚?Á—VÈx&/¼É oò›¼ð&4ð„N¦¤#Sr¶öï5y!Md=Ó²ÙžiAçÛÿ/®‡4“D†3‘áþ?[ç»:žÕñH;I«ýy!Od7ÙÍD¶6­®¯´”Df3‘ÙLÒ$’4‰DV3‘ÕLdx“´‰t Ùlǃfž¤-%i~ ­?¡õ›»;S÷Ù:_2˜‰ f"ƒ™È`&2˜IF"ƒ™¤Å$i1É gBcOd0Ì$m#Åx.mã¡m¶ë]]oi~‰Ì0¯âÕ6ÛóU]Ÿê|¥5¦êzU׫¯ð¥…$iZÉ »íÙÂ#»›û—ö“û'ÛûoNÆNÄçj›M¶Ù|•ÍWÙ|•ÍWÙ|•ÍWÙ|•ÍWÙ|•ÍWÙ|•ÍWÙ|ÅçzµÍ†o¾Êæ«l¾Êæ«l¾Êæ«l¾Êæ«l¾Êæ«l¾Êæ+4ÃÍðj› ß|•ÍWÙ|•ÍWÙ|•ÍWÙ|•ÍWÙ|•ÍWÙ|•ÍWÙ|•ÍWÙ|•ÍWÙ|•9T²ù'›2P6ßdóM6ßde²2Ø4ˆ«m¶ã3¿dóK6¿ˆg_m³3;³GöÈ&}O3öýì{e>™v,-¸—ü< ¹çPì½ñ¡'Ãßs0õÖg=™ýžÌ~Of¿—ÆÒïðõÿ^ÿïõÿ^ÿïõÿ^ÿïõÿ>dÆõÿ^ÿïõÿ^ÿïõÿ^ÿïõÿ^ÿïõÿ^ÿïõwi]Ï!(lp¶d¼õ÷>dl9€Ñ®¯¶Ùd‹ÍÏÅü\ÌÏÅü\ÌÏÅü\ÌÏÅü\ÌÏÅü\ÌÏÅüŒÐycºÚfÃ÷ü󳪳…ïy*æç2Á—Æ^”Å(Êbe1 ‡qá0ƾ¸ÚfûÏ_ñü¡ Ÿ­ÿŸý?™÷"°H#,Êdi\Åü]ÌßEÚ[Y¿ù¼Hƒ+ÒH‹ù] ¼'¿ÚËöŽUÌ÷¢æ ùÙÂ7ßó½úÙ—öX¤‰i¨Åü/ÀÞ‰¯_íe+»Q¤)iÊEzQ†£(ÃA©âj› ßú ([T”å(Ö Åz¡pØûâ}«õ/öBûÈþÕ6›ì³õEQÖ£H“.Ò¤ËFöÙz£l!{ OZm1že= ‡}1¾i‡Åû`1ÞãM1ÞãM1ÞãM1ÞãM1ÞãM1ÞãM1ÞãM1ÞãM1Þã Å«m6|ãM1ÞãM (Ešd‘–ZŒGÅxT¬?вSE€b=R¬GŠñ©X”( `="è¬Ï«mvfgva¶€õÈ`=2X Ö#hg»±7¶‘õÈ`=2X Ö#ƒõÈ`=‚$Òáˆ\m³á[ Ö#ƒõÈ`=‚RÒa”\íe[ Ö#ƒõÈ`=2X Ö#ƒõÈ`=2X Ö#ƒõÈ`=2X Ö#ƒõÈ`=òLÖ#EÔþ½i—w¶‰€Líp;¸3k‡ËÐ!@´ûwµÍžÙ3{e£Gà¦VÁÿ* ±Jûã@¾ÚfÃOð|$ŸŠãS|id5Á§àSü%¨ øTi‚hõWÛløA¬ ^MÐj2|¤¬Š^Q+ÆcÍð3|dƒšá£>p˜_m³áE':褛´ €UžÒŠžW{ø(—²"8×>úSå±­Ò ïÜž öð|VŽÏŠUQ£ª4½ŠpQ+ D-ð |zJ•ÌOåÁ®ˆU¯êN þOÐ0Õªç½b WpЫm6üþy1¸ÁU@¯Žðƒ   aJ³HI# `¤;=(ØA§•ÿ¹ xJ˸ÚfÃ2Qp‰8°¥m\m³áOð'øÿu‚Ä£àí(XG3|ZVÒæ“´ù$mþláÏðgøÈŽÒè“4ú‚þ †IRø üþ—X‘ñ«ñ®òiW,ÅŠ¤XWÿ¿úÿÕñ ðVÞº:~úQUšq]?BcÅg¬HQ›ºJ#¯ÒÈë þ ¾4Ó*Í´Þàã ×|J]õÿ_Ð¥Š¹Ti¿d®¶ÙðÉ_UêW5‡â(dÙ€«m6ü þƒÓX£È \m³áïðè+ R•F[ƒî(`_wø;||²WÛlø{ÐæîlIvpïÔDöÀǺ%|”þJq­Ö ÷»/ˆ{ÁÛƒܺ¾4àŠ¬]ø(úUZpŒ«Ò¦+âv=àKDªÒ´Î~ÎÌ¿ ¯¤U³•}8Ìž¯¤YaZõT5û^;<ß2âáy;¶H£fGZµûqÑÍõ‘æšÅg²øL–•••=ÍÊœfeM³øJOÉÊ–feK³2¥YÒ,Þ‘Å;²xGïÈâY¼#‹wdi´Y<#KËÊ|fñ†,žÅ2|V†2+ ™•…ÌÞÏr ÙàçiÔ‘6Ýæ¯³Íl2¾#Ù`iÑÛˆ€1’ ÉdƒG²ÁÛdm>:[²Ä".yCÜf¿Ÿýž,øF|›ÉpÏd¾g2ß3™ï™Ì÷Læ{&C<#ŒÌçü¥µ“ Êdƒ®¶Ùðø |ià›4ö e[à/ðøÒî·þ_ù¶Â_á¯ðWø+ü¾´óMÚ9™£Læèj› …¿Â—¦¾ISßnðoðoðoðoð=O›´öMZûvƒƒƒƒƒƒ/ ¡éj› ƒ¿ÁßàoðŠ6iódš2™¦«m6ü þ_š=Š«m6üþ‡¿ÃGSÝ–¶þ‡¿Ãßáïð¥ñ“‰ºÚfïð«þUõ¯ªÕ Dù}›/ÓÜÛz| ÂP‰ï »°GöÈžÙ3{e¯ì½±” ‚’4òq€?Ààðøüþ€?À'ë:" üþ„?Âáð¥•#üþ„?ÂáðGø#|iø8g o†7ÛáÍðfx3¼Þ o†GÆwœÏù’)ÉŒ üþ¿À_à/ðø üþB¦¸½Ï^m³ »°GöÈ&Ë›Ég²Ç9öG–8“%FH›ÈL=¼^¯‡×Ã#c0õðzx=¼^¯‡×Ãëáé/“þ2é/“þ2é/“þ2é/“þ2é/“þ2é/dHϾþ2é/djW*µWÛløúˤ¿Lúˤ¿Lúˤ¿Lúˤ¿Lúˤ¿Lúˤ¿Lú‹Üè«m6|ýeÒ_&ýeÒ_&ýáój› _™ô2P+¨«½ì‰¬óDÖy"+=‘•žÈJ#@ÊI¸Úf;^ýmÒß&ýmÒß&ým";?‘ŸÈÎOsÈVÛ¿þ4éO“þ4é?“þ3é?“þ3é?SôŸÅù/Îqþ‹óYá­ðVx+¼Õù¬Îg…¿Â_á¯ðWø¯Ë–GFˆŒ¤íÇÔ|i^OFo‘ºwOøK‘„Ç­´ëþ]àèAÍ:Ò%)~Ó¤@És‘b»+óÞçj  žoȵ³sáû‰dÇa³@`ßG/lû˜C»ÁìºCèZ±…'É…£÷ü}¬‘€èMqŸRÈl÷!³izëù»e÷¼=$)Þ³#Ñꞌ%uõ#±åžžõp„Ϲ~1ï®ßÿý_ÿôÏúAvMÛò.¶_û)ºŸlÁøùëNþLïhZ?hk½8ȶ¿WŽòÿúË_÷§Çø`¿ë~x§#.?~„AO|ž¿G,\Ú ÿuÂ:O‡ÎÓ Ïu·OÐ…{:áž{Õmù3y½ w~ÊÂOYø)G¸» ºp÷^ð\Å|g%ºÁszÁ½ªµpâ½Jó{UÐU9}®‚*çT8ùNƒ|'$ä³îAŸ„7áÍO«¤·ÿ…³Fá§QxI•—n®ѧFô©Qxr¤> 'ŽÂ‰£ðݨJî¨JîïÓªëí|&áÁ7UØŸ«®¿¥²N¥vA_X¨/TG*ìTÅ?TØ›ý[Wa§Jü»Ua×oúãm¢:ÿ÷ªÊªß¿uUööfÿÜ*ì®ÿn=ôÛWa§rþ\…Ýü/¼ß ïw”9>TÙ߫ʎN%œw¶í÷T’Ï–m~8zùÚ-u­Su÷låk÷ñ{*íŸR}w?ëó7Uàï±…"cx#ÍÝÀϤ'…äÚ]—Q8ôï^%^¸õ®Oéê¥J|K‰äîN£ÄÓQv¨ª‰»øQE^ø{îþ|UyöWS•g«â=©º<¡¼¥:?·pðÙ¶ïçŸ]e¾y`~ºª<xøwUyø_®*ß®çªjö»UåÑn-|œ¨„¿P™Á´»Ê¼çá¥Ê|»>wUyôá»ßŸÊ<:Ïû«ûý›Uȃ>áû;}â-Uz*ò½Þ"x :?P¥ÿÌ*å/Uè?E×@ŸˆªåßšžUÑ_T=NÏx£êyÐ5ÐîôŒ¨rþ^•û{•eáá/«¢ü¶êýz¿NÕûÞGu?jŽò¦Jߵ磧ŸÔwñ=•ú®­wΖÞGóg¼­zßæ·¾[è},ö·úýáû6~¼_%Ÿ^È]%Ÿ*~òÿå™ >ºõÛ*øTïKÓKYÑë×±>Nìçªø“p1=‘q¢’¯*íKÕ|*øI•Ö¦1ñ.Î~ ·}®ª>=“»Š~ÓCy¡¢ï|_ªèûÿ¦¿òRU_Ufóí£Ê¾pèK•ýž{¡²ï‹Uöá­“ß«üBu÷ÿðøÖ•Ì·WåoáÌOTÕ}¢Òï÷Õᅫjÿ±|-Õþ6¾üg__Åÿö\Å¿ïûUü©î‡Š?}š—*þôpzªüm=tÐóú¤jÿAÇûáóððK}›VE>—m_IåÿWííxòMdÿ»øpmÉŸ¥¶VüDm?Ôx¾Pm?°^QÛßîzAÉ–¯­¿ÿPÛôY‚C¯dúûOÔöýW¼†=QÛÿÕjëßµ›îJúÞÕº5Žy'óQ[?ü#ëX¡¶ÿж~ÜÓGmýÀzÔÖ¬»¶þ Ýü§*ù4—ºÐOE%_ÂÂOVÉw}žªäßµ¤â7¯èæÇ~^¨äÿ¨&>Ê̇&þ»5ñ©xÉÛýr•|çþD%?¶È8ûzºù5¶|Ýü¯§’ÿcšøôÊ5ñØcôîñFåì5•üߤ&þ[•Îû}mÙƒvt~@ø"ôð™‹ÀÏÇø¯™{’Óu~Ý|YŽç‡PÀÿÐÄÿ–šø´µ-~c|ÞÇ=èoAd ²ÅYLqÔ¶>¶” ¶yzŸÝ‚FçmöáCÝîô·x6& sç‡[>GÇ?òà>tüÿãCÇ¿mùÊ:þ_@Ìì¾¢2ûUן³)¸¯p)ÿ·?ÿïÿò”Lymx›òúeÐ)Ñc>I§ü­Ñ'© öÔÕ›~­tÊP§øB:%uš_œN‰®1:ÞwÓ+[Å­'ôÊFø$½’Úä›ôJÇ?Qkù$ݲ½zžmû~¦òH¿lÇ÷ýÒ’¸›]/áʳmÇ·P[¨‹-Ô*ô£_}Óñ~’¾ _‘úßó½ôÍ gþÖè›íþ~š¾éøõôÍv>Ÿ¦oÂÿ o²ŸÓ7áýfè›öÿ«§o:ŸOÒ7áýfé›ög~ûíÐ9.ú&ú¢õJE?þ súÿ/¥s>§oºÞŸ¦c¶çå°žƒŽùH¿ŒðNÄ!"Ãð‚žéE¹ãqë¨YuèyÝÁ˜°ï¡˜f/v-ù {²*Ýó`ÿÚèžè˜wº'ûkÑ=olt¹‰:ÕÛôOûNÿüÙèžíø~~ºg»Ÿ«ýGñ½tÏ;½Óý³^MZ¸•°ß †_ŸÓêF-íVÛõ»Õ†wSxò‘Ú¾ÿ$´6ۆθy>· —ªÝôÐ;42ßáu¯EùA½ìOÑC?“þùA÷dŠîY}WÿùFôÏÙ÷¿yúçÒìϦþNéžÔWéž¾‹î‰nøÍèž-|¶={`Ç÷+»Ñ ?Me?§‡¢K~šÚð顎ù&=ôæû¦–¶¢½MmýyåüúôÑ¿8[åùnöž¹¢³®úègÓMÑ=mtÓzi³ßK/ý©ôп7:h~ùóƒêùT϶å=TÏŸJãôdþ,4N4¼Whœd¿öhËçÑ8³-?FãŒßüóÿÅ=¿”Øé¿²'óUª§óúõQ=ƒ¢ù.ªgÏ;¨žOhœ®XAvúzÄNoªOˆ}l‰â°_Jõ„õû zþÂÄÎÅ~~bg-ˆyd˲¥-_D¶ü V~P+cËoZùœHyÑ_cRþ?ü÷ÿþ&åÆ÷1)~¥ÃŽ!¼»ü¸/Žàáç×(Ÿy×›ü$Á±¨­²ºQy²Qy²IIø éÓúŽoè9"ÜÎÊ—¾ÐwD›ÆÞÔ{üÝé9¶óÿå €zŽÍþ‰zŽ¿[=Gãßï‡ø™úÆ·ß¼~£òºÛô¡çØì_HÏÑø··Uëï@Ïáí9!°ym;/ ‡„¿/Ôoü¡ï-=E㟀ñÙ²÷„w÷óu¿:z‰^*ï:Ω—:ž2n¨;Aî³õÛñ~=ýÃ×õ '¾ëé½ÃfÏÊëþ|¸Ð;dsñ.<¼?·²Ûõºâø×¾\ÿ-3üÝú‡á}¦wxãM»ëò ½$¸5‡Šòigë÷¡ø{Ó;|NX{‹ ¶ÛU>òM‚Z#…¦SîPdë až¡r/ô ¢º6¼¢_Øìpù$ÿß·õdD rAH+¼=¥ø~¼ûƒ.ûÖb_ÙzúlAÊú÷lÁËz7[ïæ[K0}?á ¡ìá¹ùîkÊ”ƒüµê r³fÂ\[ÿÎnÁËv=Žð½µp{>v{ŸxOßõcoé ¾—0Öž—GÂØÆnëß;,·ñµÏ™Ýžï¾F(s½Þ&”!l•v=ï³²z€Pe~û½¿¶þ¢³Eغ¼¶žëÿµõÍ+úÏ]¡ï7 d½Ð÷£øœ°Õæ‹/'h!0½ X}s½¾O¦¾Šß>-ÂÔ×&HmÏ RQï&HÑ× ý=¨—ú{ìL9ÄRåÝåÝÏö}„«ÚâÎWû`‚Õ×!TÜg;²g¶ý·ñþlƒõ˰!üზš䡤D|—"«( êt)(PI™÷.è _ªëwØó#Ù+IëËÈ^‹ëó ÙëkS»Y=ׇkËo€ì5ĵk^cËê,ž½Ü%ÙÏ#Ù«¿o‰ÿúÕ*ý•ø¯x~VoÕOHcKá"º~k•«g®y•"&ý„"æþ ElŠ-AãÄMáµ}Ðî‹-q/^ÐȺÇáØ§Ä2zsÝ4²—ú€A9ú©ú€%Ô‰e/Õí9q‡\Ú–4²TƒjviìLjeöó¡øïU ü2}À =ê~%5À ñ+QÄr™b‹sÿz¤1Ρój×*¶kø„XVbËK™×úñ6&[~“в 7T=°ö.ü#1’ìRÆ> ˆ¥=Ôã7ÙÛcU°÷ü¢{?Æ–)Êã~ؾ%‰íóÔ÷¸Á?Ô÷ºŠ˜-_™"Vë{–Ì|Ähst¼áG4²syjË[V)¼Ý-Ùbuzt[lÙbË[ŽðëÞ3—­Ž”b‹Yæ ‰m ZÛ²¶DqçÊš½‘9ö“­`\b‹uÂa¢óƒsòè³ã‰÷¦£_p¼%ýæ{å|ŽþàoŽQô(‡ßÄÐ1xÿ:†G'ux¥§pK»ƒç‡vQo:?Ä–¸ªcd?‘þ<±…ÿþˆÏ˜#B0Ç´óAÇøsÌÞ©³³ž{ÌqÌsxÒ#Ýå˜çøÍ[VÞç¯¥ÕØµ•gûж4ÇGí¤n?×sìþãôãÞ‹þ¶ísëîúÞþË?~÷OëÿüË_¿ûÃú·úÏùë~šÄ÷‡;{¯E{ï4Å6bw^&:é¼]'ºÛ­!‡Hî°='ñš~¶=ûƾ±w¶ÿo“óÕ>Ø^½¯ö²±òzvÀC{ÙäYÑïÞ€1,~1ˆ.ö_õ{Ñùá ?Øæï‹åwÙí>wãN~p¶_°ÿBn°ío"w4aWMä§Ã÷ä çŒÍ‡Ýè5þj/ÛhÆ6š±f÷cÆf˜ƒ-7ûÏõ^fì;lÇeÁæk Ÿ«½ì›ï±%û_Èw.·`’/ܰ Eï—Íþ°%x‡»;bÁŽXvÿ­²`«,Á^¬ðì3ìÒµ+ìÂÆ>ë°åv\ÂÆËØu9Ø{¾ï±ãzûëíO5ÇU5ÇC³±±[ÖÛ­`בoZ±Vìϵ›ÏñØvžçu°¿!ØØ{#¶9Ò‡ ·ËvW÷wÅ6ZÝßÛhuW÷w]ƒÍçüÝßõf7û»;Ðùbg¬îïŠ ³º¿+¶Äª?­»ýcg¬îçê~J‡¾+ÿpµ…­Ö‘ës?yóÏ;Íý¼å`óùÞý¼¹Ÿ7÷óÖ;°y•îæ~Ýܯ›ûus¿xw¹ÓݰqnC|ïøFxî×Ow›CþÏ÷î×Íøt3þÝôGž¢³Åž[°ï¿_à/®Ïâÿ±oÆÏ¶Î ;ç¶úãõÍý½aãÜ6lAìΛþ{Ãî¼mÁÄ.toúóM&?s.°à!ÿ×Îs7÷wÖÞÜß­ù}ºÍýÝr°ý‚ý‡]çþmä{7÷O´ÿl±ßxæ »lì[|sÿ6÷ÏkñÙú½ùlÓÿ6÷ss?7ãëæ~nîçæ~núß¶»ÏÿëoÛ-Ø€íþnÆÓÍýØÜÍýض`÷ùìËm6àÁv~úßæþlØìÛá|l8ýqw¿v÷kw¿v÷kw¿v÷ko/Ygò~ØwîÏîþìîÏ^°ç°1wýkw?v÷cƒíì?ìA÷c׿v÷cw?ö›pgþݱ×wìÊûkÇþ"_ÔíØÍ»ë½c7‹Žw;¶å¾;>×Ç~?[ß»Þ;¶ón}Q]o/©gÕ›±Ûµç­÷¼ô©qz²'}jëãžG®Ïmü½ÚË>ØíxÊÞæ×âz-Ö‹ã]K{8[v»žgÛì±çëØ³[¸êj/»±Wóß:µã¿ÚËnãçÙ²oää°ãæroíû¹½?­üI«ùh5­s/ζ±ÛæÝïwßöçx–\[֥ϫùeUîa•í¹.ög>9§lAûãoYÕh\ùKΖ=gkïßëÚÞW×u'׆ ÉŸp¶aÏì†'{p½‘㻑ã»e6y¼[ö{×þÏ*»o•Ý·ÞÈÕÝš<êJî~½µùc5>ìS[Oïî×>µçál×f·ë{¸¾‡ô!þ|¬ØhæÇÃùü!g‹ý—‚ýçû[°¶àÎ>Øö×BbWÛì=4{îaÜ{°wlÂ]µÜ}a·÷Ý›øítìG;ò“Gmë£CD𨭿ä(:¨ÎÛØ§‡°ÕÕ6{cû}[ß\íe·â³ùï㸩ƋÝx8¾c#϶sÀï¾ß}¿Ç÷ö×úÃq4yÛ«m¶ý“‡;œïýý¡ ŽS×…@›øæõ¡m ð®Æ`_c îVWbK‰=±eŠ-Gì'ÐSS‡|øàý%‰œv)xkiŽz½süWhЧàJ%ñ».…ŒZ: ç@Ï–òç‡ØRky-’'ºGØ‹ÿžb‹xëù!¶L±%°zQþëCÛ²Å~"/«—èÐÅ»FÜ€.¸]!r^T[†`fq<ƒXêùÖ0?0þ+^C¢ìÐ z¼‰tÓhÏñîÐÍßÌݸÄ컹ßÄýšƒ6ÇÓ2“¯ Í€î_ü×ÿlÉy-·à"Æñ,)´äSˆÁõ®Ï{Žt£.Þ(ºƒè* Ô¶³n‰=sÛ§ðÛ?|˜b‹³XSü&ÅoR0ýR°øâéåŸO—cÞG¸–ø¯x~¤Ø§.ÞZºHBêÖ;_±ÆñÔ`±%Îâ÷â<Ì[\gÙáÜ?=.X=‘Ч›Â‰›®Üì¶%îÅíîwàHè"ÊßU¼¾»o"Řp>ˆÁô VXwg â¨$ù6´À` n±šßç‡Øâ5(ÅHò@Jk[&dJ!%–JüfÂdKSl!ºw~ØbK-ñ¯œ)©üÒXž%^Ú#dÊkü{óü[â,ú.X|žÃëƒ-Áµ“¿wwy\™Žm þÉõ¡méã7}Š-±çàOöýCx³¥c0ª;÷%ö,ò~~p^Áƒ:?̱%¸c`Cl¹3{ïÅ?•¸Å«o*qåËî‡øÍÀ}t~Àë¶øMÜ‹ˆòŸb‹—Ø{у›-!/8Æ~D.H€X—3Â=õ1E¯L+wP¼>Ð9ÄbTÏ7ûúж8÷x‹x Þ«2´-ãj£:ø®1F‰qW[ÆàþMÁýÛâ7Q¿àï-p´%°¤X<|ˆ-®ØH¶÷ ˜mÁáƒEÄ~J`•ØO‰ý”ØO‰ý”û~‚57Äy q^Cìyˆ#⼆Àk¬!°†Àk¸cCo†Þèc >úèc Áǃ7ÅMñ_SáG8_q ¾â|Å)îûg1ÇY,qkáÏÆÏÆÿµÆÝâ¿jìYòrñçè8Ðϱeáås| rrv4UiÛ‡¶%ê|t{l‰ÄèÙŽd-q~ˆ-æëCÛ2Fúø[̺¤„Ë‘½µü&[åžb‹•Ñ¥#cö1B}v<ñnuôá>Ž7©£ßaùá½ø#FÑ£„8Þ’Ž¡ðîמ‘=…'Û¼>\[F½éˆÌ‚cŒ«:zC<Ôw}ø[¸üˆ ´9"jsL;·uŒ?‡ºbK$âÏqÌs8ßç!¶Ìñ›9¶XÄýQ°¹@ÃG÷@l5MnÞþˆ‚ÍÇó@¼¶Ôx7¯Dä·$úþðÃoû/ÿøÝ«ß׿®þÉïÙëñ§ïëõÛõ÷û¿ýõÏ/þýxãß?Áò,OâƒgùÁ³löÏò²?x–ìže³?x–ßu<ËžåϲÙ<Ëﺞåo—gÙ®ïÏòƒgyÙ¿wžesÇ^í?|ð(?x”<Êfð(›ýÁ£löy”¡XòÁ£üJ<ÊzP9 ¡‚ŸWÙÊð*?x•m˯òƒWÙ¶ü²¼Ê勲mù`Q~°(¯-_EÙžÌÏdQ~p&?8“¶|p&?8“ÝgÒ–Îäo3ÙVž²-ÍïQ£ÂK^e ôã©óÀš?6½I¾üþ5îÞ_¾Œ»÷ܽ>Îá:˜Èøý È?üåµ£û·/;º{Z7:&¥ýõ«òo¯àþñ T'ÿsÀþRó§ëÚÝuj8w[ÁN ÓNÍÌ[® ïDà E]‡=ÓaÏt»u×Nt¶½+—-úkaoì]ÙM@Œ½£Å~¶#ûy ìPÍ<ØG³g¿Ç6è±+?·FvߢI]ß^±»‚½QÔ„üt íÆ6xQCûÍšØí1f `ì®±y_϶áj0Žm¼<[*›Øce·J gëÿ±CÇö z¶ÅmpíŒ&ÝÔÄ`¯¶ÙØ Î÷^ƒ[ Ë ;ï±&wÛÿäü¦6|ž­ßÃQ³»­-;Ñ諽ìæ|»ÚfÏìÆŽx¬éÍ~VÃ{ÁRƒãl±K±!—¶4ºÚfc{ŽØ¤®÷‚Ýòík€;>lÑ‹'5¿ßªñíx=O öÎÏ^ÓûS5¸'û›‚ ú­knc«Þ>US;jhëšÙØ}Ô¼~«¶ãñüݦ`gÂÿµÖÀ~VÓú«Õ¨î£õ[5§±¿z iø·`+›ñyMhø/j@aÍgç»c‡Þk<ßk:cç™k8ÝšÍ5•ƒý—ÙØyÆ_o¨¿áËÎÏxR=õß¿³æò[5•±'×ëÍËÖ+GÔ‹õkŽê]Qª+b?èQCÉKŽ®™‚Z)Ø0©óžÝa_ujøv\•Ýì÷Ø{j¦( ð¹5œïUÕ„×þnk:G gox/k8·û5ªN4ŽwGq³gß«‰p¯ñ,&4¾ÿdÍglÂ{Ígö½æ3ûS5Ÿ£ÆóMÍgn¶ sÂÞš°·Þ®áÜŽwæfywMgÏË»k4c“.ž×(®¶¶—iu|«Z#+×ëÊûh}Ìï ;á±Ær›ŸÓ'Éü˜¢66W’}¢œÐÆ¿x¯±ÌK€ýŸ6þ¬MhlSbãîß°á6¡ª¨Á|¯¹,‚¥e~õ5—ù¬Õ”OjP&5(_ÖdÏ;Â¥óVæ(£U4ެѬÆ2vÛcMflAl²ç5™Ss«d5#³’‘WÛllÁV§ïlöÀ^Ø­>Fjï?WÛì‘=²gö̶ÿÿߎ7õj@7'óÙ¶ãO~ñ}[o\íe·çùlþ»k8W¿oAмUß·ë}¯ñìùüé5ž©dʶøÕÔx®®?6Qß©¹Üuj2«¹Üµ(vhÓw-;å•Î;ÛþVß·ùµ7¿¾¿ÆóŠ­5žÕtùê˳ÎÆ·k8«Ù\šnUgÛü³Ž‰í6¶çõeçûpRã9j>¯¾oãç:aÏaן¯—؇m=p¶7ögÖ„n™ÉgÛ³v|¿²ƒÝØj,?ÖŒnì¼ynÇ3ߨ[Íê¹¢žÔŒÆNlýá|ýmû[Úúz]°ÿkHc?6Âc iìÎEMê¥õdzÙ¾Ç|Qcº'OjL«!ÝHg‹ýèxÖIMê ;r†œ°'±Ces®²9Wïëgëÿo [Mk5£×¶»jY×½RÓ›ÓûüŠ#³ÊÞ<Ûvþß®æuÃó>ÿŽØíø?³æõ±|­š× û2a_¶û}ðg|ýšØ·ç5±þûkb¿¯†õ‘Õ¬nïÓç´ÎØ-ûµjZÿÒ5ªó;êF?V‰–ññ´JtüF=¿®‰Z7Ú›Þ+u£땺ÑÁÂ|Y7ú=U¢5¡}ž‚­×ç^%úIMhÿµäØr¯ ýy Ý¯5ŖϪ÷|¯ÜŒÁs%é·-ñü<ÖrŽ7úu‹ýT¬ÇWj9ÇÝy¬åXµœë^ËùEæ‡npmyxìl™cKðê^Ö`qŠ:©Oë+ãÌ¥)j0?V\ŽÿºÅo¶¨¦¼Eåæ`¤Ý+.ÿX}e•ŸÔWÞƒÃ÷³ÖNî]Ô{~RÙ1?V8ޫܠTx:’D‘'Uk«ù¤Âq¾³ñìç±æñ½Â±wú'õŒ÷;÷î êi­âuˆ«ç;C.¶ÈRüÉ5†1oÆc±Ÿo_cø£Êoûð­ªüŽ|„ç‡øQâü€£6±åÖZœÅg¡:æÃ‡ØRóäùÙ§1¶L±Å}??8æ)ØÓ[6wp æ_T&~¥ñGÕáëÃGÕá¯TuøëT„}ΜùãkÄ™?|açQ²5…Û§È3ÏÉ2ï$Çp®œíÆnÁ¡Ôzå¹xoÁ¦¼´ýK!xB†!Eö‚ Cšì×J†ù!ù峃Gwçµ…ÕŽºOA6 †|8·?ϹýëuVûÿÞþnçõÔ°­•ßÊ™ýÄÙÉžÙmØ}tfŽœ›-±N­?}s³9ç¯^:¯~è¬ú¤3éΖ§/ÿ‘šóbéÿ±Hí>©¶ü`‘úbâMÆõþ²™ÿÏ!š‡÷ÍôhvÏgva–.¡É¤ö YÍWÛì=°'öÄ^Ø ûƾ±wöÎ>Øð‰œ%"g MÍÈݹ;#w—|+#ùÕ6~‚ODÔH¶ð·O~†Ÿágø¾ë-çêj› Ÿˆ^Êð3ü ?ÃÏð­<„µ®¶ÙðÑ”d‹v’EÏ~sœíʶRë­ÔˆÄ¥æö¾ÚËFãIÍz¶™Ù…]Ø#{d[™KDXSq¾h¶©8_"tR[»48ßÁùÎwp¾ƒó% ™ˆ &¢‚ M3¡Ñ¥>ÑÈDä3¡%&´ÄDô.é/ -ðGø#|¢xi„?ÂáðGø#|¢hi„?ÂGƒNh‘ -’ÆðÕ6þ‚oåœÐæHŸ­û=¹ß“ûök%qµÍ¶ÿÙþ­¬Z[²²Nhl í09MVú -3¡µ%¢™ 3-ž74·dež¬ÌÚ[B{Kho M3¡9&´·„ö–ÐÞ‘Ító<£Á%¢‰ècBSN7ÏïÍñÞßlìïþfã÷hqò®¯¶Ù®Ïæz£9'4ç„FšÐHÓîúí®ßîøˆJ¦ž7±äMì¡m¶óß/š^B£NÆ÷„¶—ªëÖ™ªëM´8¡ÙKš:[ÏWõ|Uç[/‘懶ٮW…_á¹LD.Ócò&–û?쟈i:ìÿ°ÿÃþØ;¿l¾Êæ+9_WÛlo¢æ«l¾Êæ«l¾Êæ«l¾Êæ«l¾Êæ«l¾’RÖeó'zLJ~µÍ†o¾Êæ«l¾Êæ«l¾Êæ«l¾Êæ«l¾"¢ÔQê²ù*›¯²ù*›¯²ù*›¯²ù*›¯²ù*›¯²ùJàlᛯ²ù*›¯²ù*›¯²ù*£=góO6ÿd"ÛÙ|“Í7Ù|“‹ãC+•Ÿ×u<[Çg~Éæ´Ë.›_ÞöD´ãí·½ñöÑ31±ßðL1ïѰ{"œ½þÞëï½´¡^ZKO¤´ß6‘v¢—=‘Íž0~¯?÷ús¯?÷ús¯?÷ús¯?÷ús¯?÷ús¯?÷ús¯?÷ús¯?÷ús¯?÷ús¯ÿ‘|âIá‰iÁŽhÜÙ¶û]ˆÈ‰ëŠù¶˜o‹ù¶˜o‹ù¶˜o‹ù¶˜o‹ù¶˜o‹ù¶˜o‹ù¶˜oit$ ºâþ÷¿¸ÿÅý§ppµÍ†ïy(|"ûÅóQ&ø|ÏKáÉ"qyœ¾ëžzžü?Q~"gWÛlÿ?û"ÇEZI‘VR<ïÅó^ÌÇ…(oA;/æçB¤·¹.ækyýä¾ä{¾Ó^¶ù[’'Çÿj› ßü-ãÿj› Ÿˆm!’]Ìçô:r]Yáë¿EšV‘P¤4÷â}§xß)7ø7øæ{ïÍ׿Î[sç¥ùj› ßz ´—Ï«mvaöÈÙ3{f¯ì•½±õëR"]!ú]Œ'ew¾ÒæŠñ¥H›+D‘‹ñ¦oŠñ¦oŠñ¦oŠñ¦oŠñ¦oŠñ¦oŠñ¦oŠñ¦oŠñ¦oŠñ¦oŠñ¦oŠñ¦oŠ4¿" ¥H+ÖÅxTŒGÅxT³{À·¾(ÖÅøT¬/Šõš_'G;DªºÁúb°¾¬/ë‹Áú‚G¥ãP¹ÚfK£´¾ JqµÍÞÙ;û`÷¾¬/ë‹Áú‚¦EGÒâlá[_ ÖƒõÅ`}1X_PÀè`œ-|ë‹Áúb°¾¬/ë‹Áúb°¾¬/PbξõÅ`}1X_ ÖƒõÅ`}q÷Ä?ó¼¾']¼GHºbXÜCƒä«b•LX¥V‰„Uª"Iªr—U"É¢J—¯4*’EŨè.Û¥òô×ù¥â¾Ô?ÁOð)˜T‘JÄøèŒ8g†: !* ~Ä<#äOM5Ãwý+m„šáSj@>_3àK˸+Š„ ÖGEÀ©8L÷pjDS#˜±Ô¥âˆT‘ŠßT¥U"Íw)’P"A‡¨ÒªHÊ=a؈ÂF6b°‚¬ÈK-ð# ñXi(w½’+ µt£{l6B³™ÀlÄe#,QÙÊFL6B²‘E˜¹+–„`I蕼ºGgQÑê„j&!fB«J[©Ò|ˆHž¯‘ð‰~ßµOBúDš‘ÉT)Ý¿÷àÓ'¬üÐI ™”PI ‘iFUQÿDÔ?õ¿ÚfÃ7ÞùO÷rD”ç À—¦Ugø¨4u*V±f8[øH…•v ´ÀtWUª4•îáëˆ^ó—KLÒS:¸·#¶-HÚàÕ6>:U%r_‰Ü×|iR•v•†Voð‘ë ¾8E¦ZOÒ“´ÄT‰’×HóÁd«Dóë_L£†>’H¬¢IQƒ³…¿Áßà}D¤¶ŠÔV:.Š ¤JW³îðwø"—•bJ%ò]ïêLðwø;|š|Š*œ-|¢ïu‡¿¥"ø !¥tWdbßÕŽØÁ®âDð&‚Üpç6°ƒÕ¤ŽàtÀ—†W¥eUÚrõ€/M«Jk«”+Q÷Jg®ðé¦V¢îDe¯¶Ù¡!"ïÏ"áù6?·G¢ïÏ"ãÏ#áØœ‡ñíàyéÖÿ\´ca ûú×q{+2ß¿72î÷oFÆ}Œ³ßŒŒ?‹|·øÞÙŠ,+¤'¾òÈ5‘t¶ïˆd‹|‘ò7#Ùö‘ì‘ë–¦& >oDï·–æ{¶3{f¯ì•½±3`“ö¶I{ÛÚüs¶ðå1R>ûýì÷"ï[›/²´ü«möÄžØ {a‹´Ï±ÿ½³‰ÚÝWÄ(+bt¶ðø ü>‘úÈþ¶À_à/ðøŠl ü>‘ûm…¿Â_á¯ðWø+|¢øQ|E—²¢Kg …¿Â_áÑ߈èo7ø7ø7ø7ø7ø7øD÷7¢ûÛ þ þ >*„L!oDú©ÈÛƒ¿Áßàoð7øDý7¢þŠFeE£Îþƒ¿ÁW@QŒ¼íðwø;üþ‡OEkS4`Ûáïðwø;üþ_‘E«òVáWøþ9¢Uý«³$˜$~ÿÅL’Æ Ûz}¥uvµÍØ{bOì…½°oìHËÛÙ'-(þ8Ààðøüþ€?Ààð‰ìüþ_šÕ8Âáð‰ä#|iXã„?ÂáðGø#ü;SÞ o†7ÛáÍðfx˜;ã o†‡É3ÎðmçÀs¾Š.Œ üþ¿À_à/ðø üþÿÎýå”N½}~žÒi–â•¥t½TŠüu)C^ ßý@ ÒÛè›Êû-åGßÿÌÊ]sCm{;}©Ù\”JBŸR‚Õ¡%ÈçÊ”'ûŸBIñ·ªÜøB©qbe¥F.ø• þ—Wnl×ãmåÆöû¯®Üø­•ïJ‹¡¤8†7Iˆ y¿”Ÿ¥Å¶ågPZŒý|(-~(-Úò¡´øw®´økÓUü:*ŠßN3ñC¯}øÐÅû­éâ½VÉòû²ØÛßBÁF}`£> ;3ÉÎL›ÐÛêÔÚÒ=÷º¦íÆ ;Jà+: ‘‡Êºw4Ÿï:hÛ—ŽÙ‹ ñ·×.Ŀمø÷»NPsʾP|K“;qj&NMŠkŵ³¥cÑѱèèXtt,:Wºs¥;:‚R©£cÁIާ~µ—-ˆ˜âNrš?´Í†Ÿà'ø ~‚Ÿà£,$”…sþfÃOð|AÔ”ágø®'ŸŽb\G1®³¼è(Æuã:ŠqWÛlø~†ŸáË£Oœð‰>õð{ø=ü¾ Þ~‡·¶žôÞ“.è€Çß%: êºäyI…ŽH¡ëQèz=K ÑqHœÞ©8_AçTœoq¾‚ò:«±«m¶óœïà|ç;8_”š$H”…ÓßóžÝ’ e¤L‚”I%ðGø#üþ„?ÂáðGø#ü¾ @„O#|Š™i‚/hjqz¶ðQ­U;KÕ³…O§ Ñ)Ht ‚D§ Ú$Ay<³µå_Óìy¢[æÐùñ|Ú&$…´øÿÅõtLKè yÞVç»:ßÕñ¬ŽG2­ö'¨“è $º‰.GZ]_AÊDG !$Až$è—è$ºéæx¡óãxÒæ÷›ãAZHòüÓæzoÎws¾òü“<ÿ„ò•äù'$Œ„„‘0’<ÿ$Ï?ÉóOòü“<ÿ$Ï? Z¦Ï-Úf»ÞÕõ®Îå,U×%ì\V²]Ÿê|‘4ŠZBQKH# E- ’&$…„b–x<º" É$¡œ¥Ãþ‘NÒaÿÍ©ØyçºÚfÓ™1_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_eóU6_e:uÙü“Í?™.]6ßdóM6ßdÁLwN²„¼Úf;>óK6¿äò¼<7ãko|}T(¦8üµ‰é¸ôt\^( J÷ÆN±®§ÖÓ ë­Ïzº`=]°ž.X/(Ýïðõÿ^ÿïõÿ^ÿïõÿ^ÿïõÿ^ÿïõÿ^ÿïõÿ^ÿïõÿ^ÿïõÿ^ÿïõÿ>(ªú» é]‘¹§ÛÑÓíèõ÷>t:rèµã/æçb~.æçb~.æçb~.æçb~.æçb~.æçb~.æçb~.æçâù)žŸâù)žŸb~.æçây*ž§b~.|$Ž‚¢[èø:~…Ž_™àÏð‘ÒBÁºxþŠçOëlýÿìÿéX¤˜‚Sèú¤‹bþ.æï‚TRÇo>/H&©¨˜ß)ßv„o¯ö²‘ôŠùž nG÷lá›ï‹ùž&îÙÂGâ)H)©˜ÿ)ævs¯ö²Q® ÒGAú(Hy…n`¡ˆºµÍ†o}P8 g±^(Ö åÿßûVAù.]$O¤ÿŽk­ãYë8ÖΖ® Ââ͵xs-Öe ]xHYÅxRè:„ÅøRèïƒÅxSŒ7ÅxSŒ7ÅxSŒ7ÅxSŒ7ÅxSŒ7ÅxSŒ7ÅxSŒ7ÅxSŒ7ÅxSŒ7R ®¶Ùð7ÅxSŒ7)²Ð%,Þì ’V1ãQ±þ(trQ¨¯¶ÙðOÅz¤„î™õH±Á¸Úfgvf6R¯õÈ`=2X Ö#ƒõÝæ³ÝØ»²á[ Ö#ƒõÈ`=2XP}îˆ>_m³á[ Ö#ƒõÈ`=B#º“rµ—m=2X Ö#ƒõÈ`=2X Ö#ƒõÈ`=2X 9ûá[ Ö#ƒõÈ`=òLÑÿ³üï¾Sá”ÚñTv\sÏ\Ç×îßÕ6{fÏì•:E|}œýɧvœx¢7•ë¿")Õ?Á—KS¥ÒT¤˜ŠÄT|)M5ÁOði|W EI§ŠBÕ _ZÐÝM^âpgøÂ+U<³ TTqŠŠäV¥dÔ ?Ã縯â}Hˆ 1ÝÎáo¦î]%UÁÀÚÃçö¯=|áÕ*~W…ïjŸž9’ãÕ6~8ªÅ0*W¿”–$¥ålá [U¤¹Zàø¾³*琢Tƒ*½ëîÎov8³%iUÏ{E«HxI©"µÕþ€/(RÅæê„íðg‡;{„tXGø#ü~8»ÃפV‘Ô*%vAü«m6üp‡giLÿj› _ŠOàOð'øáF/z8ÑÇ>×܇äš\’ëÙŸáó#½&¤×„ôú¥aÃG¬H˜U|§.ðø üþ_¡*°\wÉ­*;PU¨«ÿ_ýÿêøÕ ¨<Ûɉöj›íøU(¨HtUدŠo"Ù&$Û«m6|:*Uªd½ÁGò¬7øHyõŸ§½ò´WñŠŠ´{µÍ†/°ŠeÖ–Ñe‰´Š¥P7øü >Ï~åÙ¯ü ¾˜bE±¨;üþ‡O÷¥"©V$ÕºÃe®‚ÌHÈWÛlø{î±?vDÚî6ö=ņ_á  W)¨µF°*bU†Š(üþŸnMY©|$ÚJǦ*ÿ^ø‚½õ€ÖRERzÎþAwÇü{Ðå{YQ‡-À{˜/¤ë—v¾°¢ŽàaRô†½Ýàßàßàßàßàßà#QoHÔÛƒ¿Áßàoð7øH×Òõ¶Áßàoð7øü >’ö†¤½íðwø;üþ‡/p¿!uo;üþ‡¿Ãßáïð+ü ¿Â¯ðï§ô¯ªU:D÷ TÄz¯(ÕÖÛg›Ùñ}aöÈÙ3{f#e·õöÙJq.R  ’vAÒàðøüþ€?Ààðøt+F)Ìã€?ÀGrGø#ü>Ý‹q„?ÂáðGø#üþ„»fxHãã É{œáÍðfxRÀG)à$!®¶ÙðæÀs¾tJF¿Æþ¿À_à/ðø üþ¡ÃÈä§6]m³GöÈ–ÂŽ”>!õO9öGw%Ó]ÉtW²§^¯‡×Ãëáõðzx=¼^¯‡×Ãëáõðô—I™ô—I™ô—I™ô—I™ô—I™ô—I™ô—I™ôº+YŽ«m6|ýeÒ_&ýeÒ_&ýeÒ_&ýeÒ_&ýeÒ_&ýeÒ_&ý³÷j›çàë/“þ2é/“þ2é/“þ2é/“þ2é/’¨VIT«Jaë4Ñ­™èÖLts&º9ÝœÉïõ·i Ç«¿MúÛ¤¿MúÛ¤¿=V̳:[Óº<ö¯?MúÓ¤?MúϤÿLúϤÿLúÏý‡$Ä´8ÿÅù/ÎGRË´Â[á­ðVç³:Ÿþ …¿Â_á¿^ðyž§úŸTè»…nνB_ ýn£½X×ïCò=tj„2¾m?Z6Üô?QYcñ'×ìóBó jöqÝìÃG¸Æ~BçhØã,Pj÷±‹º~9ô€úPe eŸ1”}¨Ë½Z °†ÒPÔþ›Rè Ý+ý…bÑc]?î”'Uü¶»BÐú ïß_áâýÓùÇïþiýŸùëgñþ /êíÈ´èú¨O"¹¿ÌôòʼnÉǃzƒzÃæ{õ(¼”AÜh7Ä$«-ñõtèv.ùÕ^¶8Ð(®3›ÅiFõFq™Q\fTÏaR¿@²j7á˜W:ã@7‰ÃMêCLê;Ìâ³ú³ú³ú³ú³z³z³z31ŠY=¸YœiQ¿aÁCXÔ'ZÔÇ[Ô§[Ô§[Ô›[Ä™õj¼©…Ã"î·ˆûÉÌè<¡ÅýX0Nq»e 1ßãõ,âd‹z«düµ 1ކ·:þÕñKž;Û‰M<Ãý^ÕKZߪþžä¯nÂ&¦¡Îê|×9Ä6à;ßÕù®ž¿Õù®â”«ó]ïêüVç'9îlC<ƒ8…ó“LÖI;Û‰MŒÃùÝJˆi´ççæþÝÜ¿Ûâl¼·›ã¿éO7RT7÷ë†×usü7÷ëæ~ñKœ-1 Ç»9ÞÔ•ô•³%>QBÜ‚ø#?ÆÙÚŸëO¸ó^Úy/í¼—vÞ3;ï™÷ÊÎ{eG¶£'Ûyì¼·u›û±»»óÙû£hûßÏî|vç³;Ÿ]½ÆÝõßÏî|v×w>»ãÛñæv<˜]\z7IFî$#Ÿ-ñ qÝÝø¡þD§þD'NÔ‰ûtò :q–ŽÞ}Gï¾ã—îè×wôë;~æŽ_¸£ßñ+žmûýAüåP¯óP¯“^ùÙƒèã÷•ML‚øË‡yàÑ'?Ûç§O~¶öçøè‹_íÃ<שßÑ™ó;ScÇÙ‰ûtâ<8O'®ÓÉRè$ë“F{H¶k¶¸HG¼¡›# NbÚ"—Nj_äõü¢Ä¡RhzJ1—{¯HôEÓ$4©'1‰#L{ˆìì†7«ß2«×2[”Í’"Ûn‘˜%ùùlÙâ‹õÇÂO»P\ÕoY)®ê{DrQäÓE:ݪ^ÅJbµÿUÜâvÏ"f`ÁjüK7õ8nÎ?2æŒgé&¯ã¦¾Ã_ÿF¿·Ý¤éð#%~£ÿŸ½7Z’GÒ5ïû)Òl_A‚¼œé>¶Ó»Ý½e[sz{ú¦ $)OI)YJê9õö‹ NF EF*U¥ªŠ t&I'àpÿýw‹ßÈøýñÛXü6¿Mi=2T{ðýC.`GÈF%}ÌPçá·2YýFðQ .ÔPíAnãFüLœ_Y——Y¾ÿÊtêçPj;ü?B€ þÒþÒ&ã‡Èš|O²¼!¹^âúS+²&ëË:¬…o{$’áYZ®'ßg$)+¶$‹·èëðCtð wðõvðé’û±7b'd>‘ï1vBÝ8µ9Âg YWŒðGø#ëzìY·FÞßc„l+B¶UZIÞïI¶ïI¶H¶H¶O\2€˜I¾Ï$· ßxiáwMPý%M>'™\p \F¦ÞR§µ‘µZAÔ*›¦lL{{Z%È´jfYµ³¬²¨6fÉ {4é–5VÙÐëhpTòž˜ô:DÖf¾ŸCÒ7{¸NYÌê1 Óø*{4aÚÀCJ+{¬^‡âÔe£ÒäÔ  ¬ŒÖjª¥Õ+Û^aŒ³€}ˆ¦Ø:Ê”XGüÏV¼±²1§™rVUi+ Šr;ÜOEz_ÙÐV’ùÊÆœŠªÇ–g«FSZÕÜ l¨.ÖŽTk½¾1eÖµ5ÅnlÍú»lðæk}ö¦ÒTT¯{Hƒ;¤|N{š˜5a”Q°¦ø°!¿`“keõQÐd¦Æ&Ãï)ÎpØ`JùéÃF§{XëkšòHjGÙhuO«gQ¥h´ÊKd;Rxõ°¡ˆ Q·b[%MúJSUßÍšø¯{KâáYéi4Ot¡Ž2{Ë2epñe™§"œZpïί–q­r8ê2M—eœvYÆõV˲Èý-Ë0]vÁ)È2~Y&鲈¿ßÜ.‹”seɼ bY<žäù©ùÜ2ˆëa†ÏË ]æàFèq#\^öp½Í²‡e‰.{€ïÏËÞÿ²la™–ðÙѲ% ¯—-òû¯—-#ïk»Lcïì2N¾õ2e³,Ñez–[3^ÎϘy³Ü Æß©YI1à—¨ÔlçøÙl®xÉL‡¸À´j¦+…²Uœ3Óá Ž€ãà5ød>€Çt”ì€ÿu$ˆoÍj‹Ìñ<ïe3[®/.fvŒÎû‰$`GØ "éû‘÷U#ƒj×u1»•C¬FÆìfY§§…ÓÆÂi³˜é,‹¶f9Ç·êa¬î¯áØ,f»)'ŒÀmzà6=fùÆÌçý•šýpšQf Ë#³~:¿˜×ÓõÕÌ>2s1c)£qÙìÅl%<´˜µ˜±³Y«œRpPõpFõpT 'ãlöFÊpÀY#e8"á¶H‹­™ §á™ÙìÍTþž0k7f«Üßb¶ÂP Ã5¿WiáxÚ˜µ˜+GF Ñ=N÷¨É×êž#pÞt2¨ñFj±Xzwº!{f“O !K¾=#H®uÊ,â”YÄ)³ˆã»²jl— tUú\G†¢š…ÉÅöScò¥ ÅÅÔ7FEhÙ`O¯{xR¯,/¤kœ˜Žºg6p•¤{”ûd6&-Û¦RcRäFßFSéY`+§ öè1ÊÅÒ0@O‡=[ƒóؘltϱ1¹1ð†= /=ÏÂKZò`š=ér„9,ö‘º=œ¡L•Nb€“úa YÖoî;íÝ÷ÃóîûA65ïÏl(x| ØLòËl`KŸ6™€‹p°<;,½vùÎ+ÛûS:°©¯:ü~K@‡ëkçlÀ†€Ì:`Ãý~ý€ ×_lxžmÀý<ßå€ ì䛀 læXÂ=Ï»p`CßlIJ¿°aåг²ê¹_ Ð,Ø¿ç€ ò‹d`ÿÞd2²<ÿázÇëýž À°òàý-Ø»5ರ¬*$þ ¨üê& !1–®/0ÁX©³PiYyAk5ó4Vz¼XXÉ °œ  À×*;·rr} °à3úê,À(ØH”€]Ô¨ÿ¾<ã2+Cî¿Ã‚êxÿ Y0-r¬¹ßHbTä÷Ùhø}"&d$Ñ)bDÅF8¬$/tÀÌ6Щt¥ÉJï‰ñÔ2ž–%+;Ï΀teÉñ”æ¢zCi;dÎ_ˆpO÷$ô’z@8äK+ÏÛ+›5Ë„5ÁÀó\0ÉûfüûLÀ‰ã¿4àÙPðÔPðÔˆþRÂV}6 {ñ×HÉJµØÚÏ @ñ÷9Û³ z]¹s~Oí'™#öÓùÀÙX08Kµ™'°`_¦à"ýñ+°¸~ÒÚTò¼KKî¶øHÿ™Ú?Ⱥû­´X-+§åçZzŒú L¯ÇèÊüI!.eRµLØO z¡ÝêúÙêZÝ9 qUÊÚÊP=m°§Ñ=›ÀÅ#­KÊõº*ãÊ;¡2¯á+ ;=-Ä….¯Þx)dƒ=Ü¡WÏŽ'ò(0Fvæq`lÐ=£îQÈ*C{Ã×R6FÝ3êÎÚ §Qßá@Àª{ô,õÚ4z?ú¹® Â=)ä¼v ¹ýR¶‡?Æßž:ýÛÌ‚)6µaMo°¡ ä'24:ÞÔŠ< ‹MrŠ¡È´aŽ*­È5¥5ËÚš gøL¨ÿg¨`:È7:ÎÃÿ4²L2Ç÷ü½çï=ä;pñlÓCî1püÀñÔƒ4CÐ Nüë?²†ùûÈßIÆ7°Â’{KËš²‹¬,ÚJu­Lé  \½•$#–~,=› {áI ð,ð©S_± b"ãs±¨m¢Ÿ¶ãÃëHV ï¨Þ7î'r?=d=k–žîG…/;ð<Ï3p<¹œ ØX$O±qJËß©`bD¿ƒìÑÑ¿ÝËYþÙ“£®ƒüÅylº Ó É¡™ä²Œ &ˆù©dGÅaWLOk¸ÊJ²Di¥þ&dj í ò±ÒŠÍçÄ'SZä–ã[Žïù{¯B°é(2Þ- ¢bl©¸ß|dà(-63:ƒÌß;ý;6#ý)F’s"E¶{þÞËßs–ï'³/¦)Æêlõ¶( ƒR@Ìl —ÙS)w}å”íßk Ók¤“„‚iCöŒzÌ9‹W¶Ϫe*öx'Ø!-LÈeC÷D rFj’Q6¸Ceÿžün²oñ››¨KìØÍ6áXF¤‰=÷ÓëýôA÷èýô,uV2ʪa”fâPá@æ5Ó(w}Ö½ÝZµ:¬ÆK¬òÛCÿX6’òÒgµUô:N¯£É&eƒ=rà7µîQ–õ†È«m5¢Ó’ºï4­ÆAŽV¦àFçbæÐF‡”FÇ”²Ñ³‡˜ìXqÖXöXÊb &í–@sÙÐD~´ç‰:x=‡þmo Ï„þ2Àß?¤é¼ñðÿŸî_ÝÜœþæY‘„¿½ÑYØí òÆÙA°}Î ¶TNº°ÿ‚θú¹7/|¯NößžW:÷oZ:Òßk픵]±±°[f;aeŒøÖÕÈNé¼¾ž·×órIóîóçÅR„¶{ÑyñkÏs«ylw^Ñâƒ_8¯üæÌoFö0È<"?el½~$Ýãåÿnw5r4Ž~7ý÷éaØ £ß=*øBá©§X®¡‹PÉO«éb’wœ“¬Q3œƒÎAˆæ¨Åá \Çkøp 3ˆÑãGd>|®Ÿ¬vˇmw^DÞ{÷Ï{÷ú"¢`"/"ê‹hyð¹Gf·ØVm ^œ¸O\°.X¬ƒ ¶´ô`£ÇÈ/}„|¦vûbî÷^ÌóÖWßéúÊ&bMYZX€µŒS#%"S5Ö]`옰&lø„Œa®Ä:3XgeŽå|ª°P xjEÈ臅Ûô*s=À5,é ¸ŠRó•‚ó¨Sž«©bR+ÛŽkB¥­+dX‰ïÔ™¿ÃÝÈ/]ZÀz°27ÒL®‘±³´ 0,ôMÃñ°r7€u¨®UZÀz°æ³à4,¸J+ÏßRÕ¦¥ªM+~'‹ C©í©=ÈÄP¦ö , Gžï`%ßÑN2ï“bh&Ãba•ÎVeãîiYPã8Ï<_¦ŠI•Õ…µ Žl“Yg±ÔUM«lžµQGë2À6€OÖ¡aÔla•[dJ—cdkqPJ/[J/ÛÖßΓvkr¤œ^Äoဉ€/¢‚-`áí›ô€zÜ]èàG,ƒ¥EÆ;7 ®Ü àG)kÇ\î # ýÙaÄ;ÒLi&ð’£JXi¹ž€Êj °D]!ó÷ðD +\†e1×aÃAƒejeddä“À¨ƒEÛÁš]Ú™Eаd;X®¶FiiÉ“åx«ÇgFZ¦,X$a™vIGöŠ‘VÊÄûHÛÉ`KÒ$*l¯ Û+c+QZVøˆƒ&62E–VÁ nh(ÝÝPºº5ª¡”t£¥»´Yü¥‘%}lSZñ v°”u¤qt²zžÚIì˜5v#Ç€!`áŠù{Ô¿Xˆ€IzÒ(úD)f ü^9‰ ’ù½2ï?Ãò]l´ZdÏñžã½Úf_ë"[OÀ½™JŒ9‰$ÃBa¡Î°P—Vî/X¥Œ.JkdJ9J9Kÿ/í€< 'd¼ –ã-×§tvv؂ضÛ67èç~³Œ×¥hêÃQl•:£ªQcZιn8¦nÔV«+LÈ:Ë1–|îêÑÍP-Ìa7Šv3 wÓ)ä°¬¤W„d¯×é;ÝÓiú‹¦wh)kk4 ÃôzŒ¦SMÂP¶¥ ÝáDÃu— ¤¤Pãñ°¡¸ý­SxŠS˜‚Õ8mL{jM©5Òh’JƒvGQ˜Ã„yC(û€N¨Ù@­é)&Ýh2YÓ3­4súØÀ¯ì Œß?Aõ½f©/…r5†r5äsOí$3êaHPÿÃØTd”Ñ“ã)÷…“Øà$.#‘OÊ_Ê_Ê]Ê]™¨ iÎ'+Õa(ge(_E–¨1äóòù KC96'ÁÒʬàÈ"åXÖý²°s‰r~‰r~d•9qò—u¡.ÇWÌ2åF+†å—*-¿DÖ'ë§&‹£¦œ^C¹¤†òHa¡mXhS C»,¨‘)OÕ$îImrý†òMû ÜOG¾GÖ[G9¨N })o‰!lzÚ= íÇAOù¨~vågû)ßJ¯4IùÈ ÂP- l¹Þ¡™…6Ñ% Q“q4d²z2å‚3å‚3å‚)0µ“Lô)óûg²Ä(d]Zý;ׇŸ!S®ÂÀ˜j0R+gˆ³ Nó©ýô ±J”…ˆíX÷äó÷”é±ûz"ñ¹§ühÕ X5c:flÀ¬±O²T2¨ÝLÖA&ž›]ç¬V aE1ÐaÚ©ä€Up!¤€oÁ-s¦§ _ËÂ×âk¥|¶£|viAXÊ/XÊ/°Ð§¼µ£|µ³,AKØôÔŠ ²«ˆòÓŽòÓÎâ ¦\´Ãò.-ú=÷<8Цv’ ºT”Ÿ¨pVÌÊ•#È%ýA1&Î3‹{ôyÏß)GM®£¼Z±ÊBÄ ƒZ]¤ÂêÊZ úhG­µ:4ˆ#ïƒ,›ÒÊûî±jz‚B $K+Vü)þ× ˆÈ2°ê(/äR‡ã¡Ãq!ã‹Ë<_NF‘³}°:ŒZ+Bù°RVJ…URä©°j*‚DŽ Y Uü~å+Ê9WVúseþ.Y‹åw+ÊÑV”­œX •«ù»W®AŠ,áøž¿s}'ý¯" »ªd<ðdýx²p"å-#Ë·ˆã4«ôîÈB>C }7tõ-ôï­#‹ºö¶QÈîÀÅÔ9÷ÒŸ¦v’¹”{2YI¥ÅꊡœV¦œV¦|Vi±ª‚NÇ€üÞ¥ÅJ2êhÀ±@V |4S;ÉÍ2A³LÐ+ôʽ²½ÇË*%S~¦´üçÉš“b«é£ð3Åã€^:l º«ÀhÛDZŠü¤0xÙP÷¥Ÿuf(†(š·Â¢¿Ñ4ºFemÍB¼ÇyÛSãD6{Feåf“©f¤ÐÍaZoJÁ64€L‘ê5‡ =†g)X~ØëhGÍ P]A>lÔº‡û©ô˜Š|ƱÁQ1mÈ&×iCöd݃#} –+Ë•ÕW>mÈÔeCö4º§Ñ=-o#(ewPÚó OÞF ß$ÍÕ¡Y„Yß|Æ¢.•î‘•eÙˆº'j‘' 6˜·Í {t¦7£îá7ÍÔ>*0›d«ºlƒvtäñ• %3%ň^Ç‘ÿ’×=°–d¾ÃOª¿`®àgÉ•j¯ÖKÕêʉåŠÈE¦`²Í Ê^K^Õº§Ì™kÕ^-[´nUä­Ö×gJ­6t¾Ã pÙàžI9lp Ú5“8}Š@‘³¬ñ•L¶bÙÐwØ‚¿Ë­Þs«¥¶ÚF÷´zL§{âzèû½EàóÐgßkÔÖj8¯Ó`óhaÿ˜×)§ë’í:Þ¹sëÊbƒÜ_¯ ÖvôÚÎ,óó`‹ež6ÏÌóêT/óÂæ½ïÁå¾ÿñy/þG]«ò‚z^ s|$R‰L_XÿÌ Þ¯½`YtWDgeÐ\40¨—´ƒzùþǽåíó>”·Š}¢gæ¢çeåYïbö¬\ðœ¬=+Oů$-!Ïyå·Y™Qèϳrc%f·Y ½aq9 .‡½UZV¢‘•$…Û,…Û0[¦v’)LfV~"³"³"³"³1pt´»´²Rª+Ež¿beTI€«X©Uäï×’:µ“,ÀÔN²„DK+úÈÇwÂ!)äviåHFŠ#ëê•dä|’T¡“§ƒ¹s³’¸´R¸¸¸héãO¾¶Òwc¦ÿ Ø—›áçíÞðó4só¡±çË}h{³>IñOìcÜ20¥0:>GC¡¥,±¥,±ã“v sè4Gòž3ŽT f3ÒCé¡çOíæÿ¹÷ˆÏKöÿçœì¿ºÍvGí^Æü?ß?Oïû•Þny=½ï÷ô>5øÏ5øB?ë—üŒ{ Ÿ¿Æ¯Ë“ý)=Þÿ+wß=¾{Ÿ?>…ºœ¨ï´ÒöJ°Ï×v1‘EQ‰‹ebj¸£d²:*œÈYg]RsÖ«.© &ìœc}É…ÕEÐð÷Ù¥¥°êÒRòo®‰¢Ȥ!ÃÔAjÉÇ#í`˜Z‘YÂX––%©Ò‹K%C ÄÐÒ›—%K§Ç³D©X’T,IȲ°•.™8ÿœ‹.r¿‘%šºØzþÞsýž% ./Ûs}–$2ủb©ò<¸´6.¸B«ÇOuÉÉõ*\p÷Ã÷éÀ£¹ìä÷¡\piqÑáRœ]x<ÏìÂ#ŠôÒFäYÞͰfIV«>ž¿“¶´¸ Ôn\„$:6,ɾ(ì\¤”ÉÞAVÚ yD^¹W.Äç»hÎ`Ó,‡Ëà€UÂÚ—ÿ¥.Ã¥îvÑëµ"ó׬©9­å¦ öPö@ ËWþÒ*Û$€}…*ÛµÖ¹ŽZ[ka‡A¬º$ªê …ö3‘U6$éó°át×=^÷ÝtOÇžJϪô¬J©æc:ÝÓëžž=Ð$&Ù‡ Õåõ:^¯ãõ:^¯ãç댺GŸ«ÖçªõʵÞa­ÏU«®ZuÕª«V]µêªUW­ºÄ|ØÈºGµ7ª½QíjoT{£Úq–=AÏ zVÐ; z‡€S"-0)mL«rØÐ§hõ):}ЍwõÛˆúmD=+êY½žõYWúÁZÚ±¾þíÍû×±OÅÌ:cƒ1Æ,ÇÎÒúry÷ßéqˆÒå«Í‡ÎÂúbÿóýû§^l>tÖûcùãø,;s:sfÃЃëßÔ¤[7È9’^‘{Òµ{b=ïù;éÍ®C3ƒ!hdâ3–ã1$Œ%½ÚR«Ä‰÷ ´Áç ¹\ßÉD­ÄÄ¥_}å1L=†)±…JV·J[\Z [1 køÒfd‚êpûWB RÚ9"È2éᤗWÛ,†°ÊbX{j9xåà!½¦6BM-ˆšß£n•+ ‡UÑ K†ô\Cßx6꼈§EGëlÕ«Ò"ãÃpêžàïž¿“4—×r‡¬ž uTà)`ƒªÂ’[qp.ˆ¬Î†_$ÉÔJ°ÄV¦v’!ÎÇ“EG¬Å’î]Z¼#'n˜Õ%¢ªe˜®ræxr¨0µ"³L„›žUèáâgâøú—…†?éÆÛ…çC,aI?ž ¤[|óËÂXga ‚t ßluˆWvò#¯z»ãä›ÌŠ‹ì°ÿ‡?¿zx÷û7çLŸËËr L—ªÒ´a|T3sŒ2Ãàóš™a0M®ÆóÁÊai»ˆïã~ÔTf¡eܪ€OLñy³é¡¦Ä*AmÅ,³”ƒI†2f5á/]®Æ‡·0ÏÈó4P¼oÊÆY˜h,eá( Œ㊲rÊL£eåΔ‘Ö±©äg—•“ç ÀLÊ—2sßJÙ8ÊPu”a»•‘»•‘ùVFNäu99þùeä8Ÿç¿••ûºeå –‘jñí•™ãx‰‘}¦ìœ¼¿–Ý-Ü-¿ù2tp_G Œ/eé(þ{/K;÷€ëã«—©sºö`éÔ™Ïòšœ3eì¾~‚;Lk°Æqd*Ђ˜/®ìý…YWö¾Ãž_bÀ 1fbb׺ræ±–é#&Éï·-ÛÌDß…2~.ášIN°äXr×eþ*˜à*þ^‘oSSœË’“¡•‘÷aá°ðFëÂg\#SÚIÖ2‚'Ø– úwqmÀJ=»V.•œóƒ4ˆ‚ÛÐÅÐâZ!?hqµ¬ðW_¦p€&½¥l!e_¼l¡Üoäý~õ2†2Lí$oÊr¿™ë¯ËÎù`¸Î¾°ìá:ŸlS×[²Ð–EœïÌ1 ´H5´HZ£ mx°Ž˜ý”¹˜öÌ܇kïR~[@ÈÇwè;Λà±Äȵ¤Å﹬£a2³F‹ Þ =Þ =êžçzì½îÁ¾?.ýHbΦôc?àœ/¸¾÷ŠAÎî.Iÿ’ Ù#ƒ\ÙYüRÁÈSìž×÷u|x•>üðÿ½NKhü™ëýkiÅ&ü¤›ö¹4éj<àÔŠì²GöÈ rƒL"0BzS+2!m±£J›ÑßÔBôf-úa´&ýÊ~eH¿šZ‘ÑoÑOúšÅkñÃZü°¤kMí$ƒœµ g­C¿C?„„ !GCÈÑr4„ !Ç©ý0¶“îe€í"S+2ú+ôãÇaÌ5Ô¢›Z‘;ä¹Gî‘Gä9#1à{±’è`¬ØM†WCtjEÈ™çůLzÚÔŠÌóâw"ž2µ"ó¼”³5Ï[ó¼ø-~<[ó¾kÞ7Œè–ïÝÂpoa¸·Ä9,qB¶S+2úôÃØNJIiÑß ¿Aƒ~ämƒþý úô7èÇïkñó[J¤Yªã@¨«5ãJ‹þ€~J¦YÒ;©•;µ"ó{á°ø9=%®Bˆº´\¿%Ï´Xi¹ÿŽï£ãûè8¿ãüŽ÷Ññüú;¾·ÈóBØAú¡!ýpjEæzT ‹kHÖ)-×»Mġ,~MKÉ: DÇѱĥ,q©rÃõˆYüê¿:lÆ¥å÷x?ø­I4vàyIoµ#÷3òþFÞßÈý·`Ç-Øs öÜÂÐO¡IcG~ïý¤[ÏÙÄûÆ/mï›8"DFÐÔŠÌ÷EœÉg²‰ï;ñ¾ï+¡?¡K‰?°Î†âi¥EéÌ–8“%Îd3×Ï\?s}Ò§ÉÌšZ‘á a¾rÌWŽùÊ1_9æ+Ç|嘯ó•c¾rÌWŽùÊ1_9æ+ò¥Œ“:æ+Ç|嘯ó•c¾rÌWŽùÊ1_9æ+Ç|嘯ó•c¾"ÝÑP2pjEF?ó•c¾rÌWŽùÊ1_9æ+Ç|EúäÔŠŒ~æ+Ç|嘯ó•c¾rÌWŽùÊ÷sÌ?ŽùÇ‘«á˜oH¬+m…Ìýyc~qÌ/ŽùÅ1¿8æÇü²@Ü ²C&Wc†¼a{)ˆ„Cqç äMlpS1>TŒöX%éï¥%>¢oD߈>ú{E¯èïýthÖ¿´ÄÑH¯èïý½¢¿Wô÷Šþ^Ñß+ú{E¯èïKn ×ÒWÍt,2׃Áñ£¤æÔŠ ýó±g>öÌÇžùØ3{æcÏ|ì™=ó±g>öÌÇžù˜Ò¹ ù©ý|/žù†ùÒ¢ŸïÇ3û€~p ƒ'É“‹äÉEòĹ'èPÆ•Zr–Zr–Zr–Zr–ŠHS+r‹Ü"Gd2JpþRkÎR1ij'™\ñdÑO?Q¥PÝ| ºùÜýë@uóêætnÕÍèaèî`Ærc¹¡C‡~¸èc‡ˆ~èýèý†ˆ~èdèd‡ˆþˆþˆþˆþˆþˆ~¸"¸1¸1†ý=ú{ôC×7ôèç{ Û Ûzô÷èïѸìÒ¢¿G?Üt}t}ÀþýÐË‚ãvà¸K‹~èó¸-†ýúôC·; è7Àµ1@¿ ŽÑcœZ‘Ñ?¢ŸrlåØʱ ”càîàfFôèOš2ˆ~¸7¸7–BúW¢%p{sJ!¸6Mû8µáÚ(-¸7±KÛ 7È-r‹‘#2¸8pX§âªØÇ±©Ñ_£¿Fþý5úkô×è¯Ñ_£¿F?)ˆ )ˆMþý5úM‘Dƒþý¤,6 úô7èoÐß ¿Aƒþý ú5³E_‹>ptM‹¾}-úZô lZôµè'Ø´èkUÏKJgÓi (ú;ôwèïÐß¡¿C‡þýú;ôwà5¥TÖ—¥õȹAV^tp²¾,mDÖë ÈðªSa7€ ?µ"£¯BôŒT¤.-ú*ôUè«ÐW¡¯B_…¾ }ô—@ ô—@ ô—@ ô—@ ô—@ ôò´J‹~úK ¿ É…œZ‘ÑO ô—@ ô—@ ô—@ ô—@ ô—@ ô—@ ô—@ ô—@ ô—@ ô—@¡h¤h¤h¤h¤h¤h¤h$õ3†o>…B eYâᥑ9žþZÅÕjÊ3÷K ô·@ ô·%%šë·\¿%%ZS¤éOþèOþè?þè?þ´ÿ€#ZG ãù;ž'jJ6ú"ú"ú"Ïyžˆþˆþˆþˆþˆþýïu öqÊ5L5G)×ýfjÆt <5S¼xj¹–‚§:¸Á×|k~’0×ü†¢–¤/¸¥ ÜÒS+2Á~’FáC0ð!˜çô­Èû©^b `Ø€¤OKÒ§%éÓ’ôiáú†_ÁÀ¯`àW0Ö¢îoø¦Vdô[ô[ô[ô[ôÃnúúúúúúIZVþ] DoÆBüÇâÅ€@5ð9ø¦v’qCg ‚›Z‘ÑORT¹S+2`’æàƒ˜Z‘#̦öÃÔŠ Ø‚¤Pë?ôgI³»-Án²Í Ätb:cI„ëÛÀõmàú6–¤RKR©­yÞšç% ÒÖ3÷CÒ¨%iÔì´;í à+žwày vZ‚Ô61Ô61Ô61Ô6)-÷K°Óì´;-ÁNK°Ó섨±´Ü?E‡lâ}'Þwâ}“äk)J±ciù¾ßµ ,µ ,Iö–"F–"F–$~K#KpÓÜ„K¿´è#Iß®°T§²T³²T³"ÇASJ«×§¨ó•c¾rÌWŽùÊ1_9æ+Ç|嘯ó•c¾rÌWŽùÊ1_9æ+Ç|嘯ó•c¾rÌWŽùÊ1_9æ+Ç|嘯ó•c¾rÌWŽùÊ1_9æ+Ç|嘯ó“c~rÌOŽùÉ1?9æ'Çü䘟ó“c~rÌOŽù‰L‡©dæ'J‹~æ'Ç|ã˜o`]Çüª}jEæþã:Ïý1Ÿ8æÇ|â˜Oó‰c>q€m`[Çüà˜óƒc~p€káÖ/-ÏÃøïÿ㿬ãë8Æ{Çxï½÷Ãøîß`ÇxîÏ`WØÕ¦qŒ×ŽñÚ1^;HDã±c<àmÏ÷ìù^<àD8Ñæ^øò8°¶‡Á·œO5D8ÑNô€¹=`n¿ ÇñØ#¾ãþ!YðØ'žõ’ïÐß¡¿C?àoø-ã±_<ö‹Ç~ñØ/PjM­Èè ÁÖÔŠŒ~À•ûÆcßxHŠ<àp8ÜCzAV×ÔŠŒ~Ö{°¸ïÑý›—ÌËÀåe òšZ‘Ñ=D>ØÔŠ X RiµEJ X ð¹|î!ñxì'ýD°ÆxÀçžñÄ>÷€Ï=ã‹|îŸ{ÆÏxão<ãg¼ñŒ7~TpÏËxão<ãg¼ñŒ7žñÆ3ÞxÆÏxãoàÏ+-úo<ãg¼ñŒ7>¡0º‡ˆÝSKË3yÆ#Ïxä•ðªÇ¾òØWžñÉëø¤`Vì+}屯jì«ûªÆ¾ª±¯jì+xÞ 4oS+2¤VØW5öU} ÜÔŠ ÉöU}Uc_ÕØW5öU}Uc_ÕØW5öU}Uc_ÕØW5öU}Uc_ÕØW5öU? ÆPcoÕØ[5öV½UcoÕØ[5öV½UcoÕØ[5öV½UcoÍü¡+¾Pj£Yj£•½ à0zIMò{Ù™ÌY¹œáåKÐò%U°)Ø@ç J¢RH‚´/Õ‹1ÁìdÑoÑoÑoÑOQ¿_i‚ô$Yô[ô[ôC‚’ AIýË“E¿RS+3µC¿C¿C¿C¿C¿²T+IµrT;ô;ô“BœÈ &‰ÜBú`!}°YHŒJ‹~HD%  ¥Žflå¿Vúke¿Vòk²fI³TóµZÍ7yôSõ'AZ“HjM•IðÁÎÌÙJœ­¼ÙJ›­¬ÙJš­œÙ€g meЦÎNªÑ‰Iö–${;³i+™¶ri+•¶2i+‘¶òh+¶²h+‰¶rh7èoÐß œÔ _ù´ô7è'y7AJ“¨H”ô7è§Üd<‘ QJýäþ&ÒËS@@?å§fªneê¦' ¥€~ú{ÒþNö|‚´'µè'y=Q<*µè'ó8QD8µèg|IËœIÀ•œDåéS‚ô)‘#‹¤ýú;ôS=*uèWJqe9^ Æ•_ÒŸ)Q‚”(AÂ4Ó+ûxÔës¿¤U§Èý^DÌB"VZô÷èïÑOry"·<‘Zž`&€tÌB:fgòsx ©ñ‰Ìø¤üÍÊJð$ ‘&­C ‘jœ'ÀÁ R«4 @?|  ðpRðð€~H~e¹Òˆþýd¥ý#ú!ÍJf¥ý#ú)ìšû$H„¤Z „4*é½2Ê£F„””`^ùåÑŸ”ÿ^©í•Ù^éçgöydåÝWÚ}eÝGF?¤O)£ŸzZ)£R¥”ÑOý¯”ÑIS¢Œm‚¤#ÁÑ‘ è€TÄB"bó\ ~nåëf>ÊKQ2‘µ´™òy¯ù»µHãYVª×‹üÜxñz¾nÎ|x™¿›ãgþnä³üÝúw®¯`±5Ÿ5µ,>kø¶•ϰËÌg½á¯R©¡¡ödX«ìÒvi»4€]À. `—°‹ŒÿS+2à™ à-ôµè¼6^Zô·€ÅZÀh-`´0ZËó´€eZÀ2-`™°L ÉU ®C‡þýú©Å:P»sèÐß¡ŸÚÕµ8 û Ô‡1cjEF?µ\j¹ò¨FiÑOm×Ú®…Ž  ýýýýÔ‚¨;Dô÷è§0ÒУŸZáC~  *(44ôè§–éУ¿G?µM‡ý=ú©­:Pk| PÑ0 @ÿ€þýÔ(d4 èÐ? ŸÂFÀ~jß: 9¢_k­R w Ò@-ÜZªÃˆ~j•#úGôè§Ô@!©BRÈþýê’ÖzEB¢?QhiH€Çf>yŽ6Ÿ¼\5b/—¶B®kä9 ä¹Cî‘{äYõA¢æ!Q«Ñ YS£¿Fþý5úkô×è¯ÑÉVS£¿Fþýp5 úô7èoÐß ¿Aƒþý úô7èoÐß æëG_‹¾}-úZôµèkÑŸÓ¢¯E`–0K˜¥iUÏÛ*©ú;ôwèïÐß¡¿C‡þýú;ôwèïÓÈzsjE®‘kä€L}Há‚üãç8½à§õ 2²Ç¦ÙGõ8‡—Àa Lë8ì?ï?¾I/[®8¬!Ó÷»ÃîhE¾ÃîhE¾ÃîhE¾ÃîhE^ƒÃ”i‹ëü´0cX˜1,ÁNK°ó[ƒÅÐGpó»Å&ùC¾ÅD¾ÅîhE¾ÅîhE¾Åîh'ùC¾ÅD¾ÅîÌ ,v‹ÝÀb“|‹‰|‹!ßÀbw´"ßÀbw´“|‹‰ü{‹Ñß3ÌT,µš„Æ—÷9ð>Þ×Àûx_ýs`|Åü1$¾Ï ±C,Á;0Ä ¾xƒ/Þ8mHœ6$F¡ ‰Ðß°Á7lð Í_¯yþ‘çyþ‘çyþ"ä‘çyÞ¬ïÖwäyGžwd>™ÿFž«8‚MŸGˆ×FˆÓFžoäùFæû"4ˆ™ XÖÄ@ dÀ‚°"À€0` Ä-†Ø¿!öoˆýˆZ D-†X~ir‡,Ï ‹xÅ@¼b ^1¯ˆW ±yÑŠhÅ{7ÄÞ D*"Š!Vnˆ…bá&éûb|†(Ädæ· ö "ŒÒdyžÌrùEÉPJVXM %¦.#Ã`Ë”|‰QZdæ‡,W“Åim(±TZd•/ßÿY¤ã}æ÷ÈØç”T*-ÇÃâÒbj‹¼ ÓXSÏá õòßb"?)†“ Â#PQâØß’Lô-H2äI2ì’ «@ÉÁY6^B–Éï@öJªµ”m)ùÙ0i)Ñy‰öDäçwøü‰Ü—Gâ“‘ièë(‰×Ñ:ü‡ RMŽ_jr?ÚÑÈN¤Äbăù¾#žà5²-¢ŸH¼UøŒl£¿õøµzJLöü^Üé)A7#Ûðæ |ãÅŒtSdÏ «‡…ÕcF² ° ”¬›‘mü>#ãÅ ÙöDd[’MXœçæÔþáÈ7ÆïÒ"S"ËP"ËHf’3ÂruCÊ)Rîk!ãø½¾dœaÑAšGÊñ÷«‘rò¯)·AÆœ °Äqk¤%ˆš ²ík!å(¶E¾!Ëø[ž·û7¶ µÎ#áäï‰Ä3ŽY[$2H± ‡¾ ·FºÁJ³ Ý@’Áò)±uév‰òmF¢)òì[A¢q|âx‰xÇ>ów™_9¤Ú¯™ÆóPB>à œ)±ž)¡žaáÍ3ñÅËÈ62ëÁ-ÒMæï ãïùf©QMnq~}ÌaO5õÈ5KrÙètˆ>Å뎔ý+­îiõ¬ô UT›Ða9ð`eCñ7Äã ñ({ֈDzÁ Œ;ÈVéé[囿¡"o¨HÝóí "ÍÿNZê¸l¤j²#0ãTò_ÄGö5!ü¿}B²Ÿ‰òFH†|#$›ä!òl’o„dÈ7B²IþÝ’3ûÍ’qÿ7B2ä!™È7B²I¾’‰|#$Cþ¶n„d“|#$û¥ÉFä_9ÌêFH†|#$ùFHö‡ß!Ù óäý<&Ï›d>žZ‘}IÿˇÃ­È²žß#+á0±ŒLÆŸë Ïd¼ÊYÆ«ß. ÌÝÐ~_€®ÚÍ\‚TÝÐnhæF€ÆžèF€v§ì¹A}~½PŸ5°çŸa@ûÇ—R ýc‡`òí¹` ÚA¾q Ý8Ð&ùÆ&ò ùÆ&òm’oh"ß8Ðoh"ß8ÐîÌí7 N»q ‰|ã@›äÚm’ohÈ¿pÞMäã@Œ÷[ëÝ8ÑD¾q¢‰|ãDù[Ç}1GÚÏ ®»q®}lwã\»AôØsã\»q®ÉžçÚsmÚsã\»q®ÉžÈò²dÏsíÄ”=¿A æeε|žtíO)ÇOo>þðçWïcÿ&ýpÀ^þ0/Ÿ…ÖüÜAoZÀ”{M¬è+z˜¹¬k†:Ë—qpúäÐËï0G–`Sâ‹sלå8› Îaƒ3ã·²òUMíöœYë,ž5³M˜ rÆù³NŠQ'E>‹ÑŠÿà°åÇ3úãå¼óã}îeîü˜ÿçc|ÿ:½M?üÿý1=ŒÏúýV×à'sÒ‰*‹  ó…œ€&€«¦Vö7þ.LÓ°Ø4%ÀÞ¤€¼lŠÉf‚…½ÍÈ`<6£\?ˆ @(Ë&<´2³œ¥•¿·Ž¿»9 wÈ:øÍ€Np•€K µ€aº@Ó0í¼²»ñw4]`S¢­BaOSÀ&VÝS;Éüž  }ƒ4W΄>øÍM‘kÀ$ÏólÀ$ßG *XÜ$¹¾yÞÈómèçyg@#ϧư O…<ÓÒÀãyÀ!ìhç†ü~3 p ÈS€¿ç©™ëϽS@ÞÀ ÆýùZ÷;æf€la hãýŒãÇ0p>ãÇxãúƒâÎÞø}à¶Ø|ñ|càŒßc¨)` Ø`Kiça¯‘ãÏÄ@ÀªR˜E5ÂX) 6Ê -õ¿XÉû^¨6€¨kP psÊßžHÈΞ €røƒ+uì:dlØÍ³kºÒãq>X2µº]ñ*6Êþ…ïVÐ-×gyjZeS÷&×ÐDtd­E°‰.îð°›øX‹˜ÁO ] 9=%,•ô:Iƒ>øP—¯ÕsšÃ@­Ó+D¯ÇQÑQ¨h es`z8„dt‹%T”b Ía Õn{ 1N[ç¸CWiˆ¡zÚ`O£{404êYÊzà’4TtâÊK°¦ÒŠ˜‰²!{¼Y4ð±¬yJhFCWtÙ¨tO«{¢î‰ºgÔ=£îáI½†f<®Z«.h[GŽ©•¢o}âtϨ{ô¬9èSq‡ ßaÙuϨ{Ôy3†˜Ú¦ öèYQÏÒ·Ñèý48s¨h/ÈR­ƒ,Gæåφ'jÝtϰÀuüÒ‹Ãù’[oå¦ùœ3èßã‡ç%^Ÿ\GP€vÞa0ìÉ4(í€Læ2™¯KÍTŽÈš™, “k3“= ݧgó÷uæqËßÑ_³©[Žg!]³®YHÓ J[!WÈ 2úÏf"ã˜28®Œ:?qt‰a\Z2‘ç28¾6e({0jæ²Üï¶ B‡L¦3™æÁ¨# Ç׳Ëpþ¦ìÁ •9À1ײPß”= 3¶%3v[Læ¹ ™Ç²PYÊ"àèèÈÜé¼:Úp„+“ÐปË$àøúÙ2­Wep¤€ÌüLæ5÷sm™…9óZÞ_äýþr™×šiÍùOÍœ¦?mË2p?[&µ:9~àþ7™Ô<Ï…2s&uÖ²8 ¶LêU™úkÏïs>³šû¹TB3©™_¾ù²ôÇÇf£ùr&5ú×™Ôš9Íø:àØ|ñÌi-;ctΤ¾T†b8>h¦4ú¿Z¦´–­ Ó™ùi€™e`þ^2©ò:“ZÆ·‹e/.fNãøýÒÌi-‹Qá(¦?Ϥæú—Êhh&5’QBå?_&5ß÷SÎ’)ÍýžÍ”&3øl™2“y_s™‚Ï ~Å™Óë²\ïê²üýRæ4ÁüŒý–+ûŽzæçÌüœQg2Ìó™Ñò{d¾·Ì÷uhE>) bÈä3™@]¦ÿ’ùSZþ>*F]½2`s+iƒŸUߊ¢ÛÅ:«§¥Vtö™2#gˈTÈXPxµb©ÞŒ XíÚLîßmæ6÷[áøŸ3µÁ'n3µñð¾çLìç– ò«Èü/.#‚,à~ Àßï+ð=„ûÅq¯eFÖ™Ù¯IÈš©-r ö°}r¦ö3Ë”8ùþ;²H:@pÛLn‹ÌñôÇŽ÷Éú¬´ò¼/•éÝÉü¾”A!) Z2Á]F0ùo_d<ˆôÿÝkÂA¬E ¯G’& œÏGÖ@ÑÀ”ª´ $Æ«žÀö·%Ë’‰µÍ,WÔ/`¹^1¿­ª4pE JËÀðûcï.e^(ëÒ ðfjEÖ²/\?éñâÈœÖLöž@ÑÀ÷1àíxÞçÝf¶‹k{σºäù¡ƒdJ[ì·Ï”•áøßJY™u¦û¹ÌvÅYì­Ïd¶+øŽÀŒ'ÎXd2©#“½&ðøûœéN&|ËõÖ™îdR›žÌsôÙ–Lqޝd=¤°çÉD÷+½çïÍ ½œä^b4Žõ`i%“šõ[i%œõ™c}æz±W¯ÈDß/ s˜Þ½D&ºÌ'ßZYGÿp`•0[—d¼slí$ó>²Â^Å¿é[–vú>5‰ã¨¬ rEàw“©Þ‹üÔÌsùž–ÌóY€Ds&º“ù­rYúCU­2Óyç3ÓÉüöò~çLõóeb$ÛùÝPvä\Ù˜†Lè†Ìo웟¡L n§™ëÆÉœn+2ÓçLv2ÓçLv2ÛÅž_2Ùç²2ëÌuÊÈ89~.##Àš%“½&S}Îd×@ºÖµÌ ×ë)Ó£Oƃðq›ù>¢]†æ\Ù#þÏ+íòKeidþ;ŸI_k`žãÇí25 }‰À~&0ÿÕ2ñ/eÞS‡ßû$ö ý2ÿ;™øë²5/‰?œfâdš?=óžÌv2Ù™ì©B– ’LINRv³´-²fÊs|Œ/óñ’)oÈ|ÿ:ef2L>¥m[d®/öhi5{ý—Í”Wí ½0Pù” Íb¶šÁmÕÇÀ¤vØàž­æ¡[Ê5ÍÀ56k~ý“2îq¸Ì•—Œ{§™òÏ+Ói½×mÆýKç××:yÈþ5dÜ×z–æ×·Q÷ó8θç×é,×Y2î«yžõs–ÉÑ·½£ßFÄCu”q¯à«%¿^ËäÄ„Û@Øn~½b„—üzE/ùõA÷h~="«¡ J÷è{Þäà›¤÷¬ùeGYù¼±Ã0Áž¹æ†ë˜pøjÙ3gî·ºGKé…ÊòRËÆ {2™A^OÊ÷ßûW:mÈž™À+¬k§ ×=3Oaðcnd-54(„ _çK€MZF(+ìsEƒT¦™ûN3÷fî;¾–²Ñê´oK )ä¯lð¤{üÊðËðl )@«RƆÊ+î:Ž‚5#ÁN¡£ž+{ýV½‚ 5‡ÚjuÙtOÒ=¼g¯Å¢¼~½G%”žÀc %”jýëÞêe6 ƒÛÖª½Víµj¯•£`a?þ^6ä¦ÐÁF¡ƒB}ÏObHÐNMt^9ê•õ=7 ›l´ù9^…Ì=¿¯‚óA÷àƒ}9¦œå h}î…š=x ÷ J1Ã6½×c¶Ü 8Ú/ÈÆðó*ƒîѳ°£¦ÃžQµFÁùjUŽ:Η ØH’=l4ºGiîˆ/~Ô2oeCÏjÁýÛ¨ÐJeQ°£‚$U»Ãg]6jÝêU9VıF üŒÊÑ{ã‚0_• â:^ÂTeC³ûo¼ 7^ö¼¯BÙÈze’ž²ŽlÙ=ʸ‡ËFG¼C©Ò³Á*È+¥ló0ƒîtϨ{²ÆyæÀV\¶V÷0ëe«ÚmÃýØ {`Ï–L¯ìXÑg§×qx²óº{,kX¿lðì:Bæ Ë<ëº;WÒUv®î°"|œ«LüIGÑì3Çè :׬ßs½­4J4LÅ/X6äÌ ½©lè}«Ò(7Ê£LÞÕaƒëh@>k*dÖy#1)2éWeCßaKÏÍ­Þs«‘5å¬Ëm«Çtº'’–ö5ЍÀí?èÿËýÃ_è?\@ÿŒo^¬ùñ'/‰ö«Ä÷M¢ú*±œxì’Îß5Q{“X½JœNà…4Ñ9ƒÇÊŠŸY%újïÌqb-²&ÖŽ$ÒŽš8*?±&–öà ðÅ·‰—ŸÆ§×‰ˆÛDÀU¢ß!îpwÀ­Ì¹ÛD¶“DµT¯){ëN7dÏœÆô˜%iK×òš¼³$d©µo5ÁggLøþ(mÊëºOW‚G G¬,–Ô¡^W(sZPµ»f9ÛG_ðNùã»·oß=”Îñýðxÿþãå.!'(1MCÙ?Àmв#ó«!+ÜÊì™HÙÁˆ Ø?‹aâ0V«‚¡Œž‘ÁµÌJ~#+Í8’5ÉsYÀ9™†d™¹ É1$ãT€å*Àr`Åj“ìBòàÓÆñæ«JcÎïnÁû×™ÑOk¬ÓqÄ©Þó=”¯lÏçðÓãý›7÷Ã5^NQRé“`3žOγj‡Ò¢ÜC“SëBÍ VÜW Dx]ŒªÛ›¸£çû·Ç·éá>^3è)<WSr@é±OÉq ‘\?ÞÁÎóüGêÓ_ñ4rϲ⹅§ö½Çß|i¸¦ßù-å~wÉØ_õÊ ]ó¢§N;ûR­à…I¯”äêÚjgI±¸¿Ï‘bmÞÜôÀ;¯îÿŽq¼¦³sÆiw_J1|-.-Í  [ZºaͰu¦tÃYÆ-ô}Žqký2y;oó¯ñMü©ü{{ÅûœÏÑ7 gÕ\\â 9¾æâç8½àÄÚ£74£ø§×ú ÍÏ´·L¸x]þtÍ:AÎ8í®_Cì\ñ³Å6”c N±ÏsŒ­³Œ6kyæýÅÌ5–Íáp­Ã4ÝÈBn¦U?äÁ§¥ïÎÂfÏ@øK|wUdçþvÊwökåG[>y"Úª0ÊgùѶqŽw{_Á}Ÿ>^åV匯ñLÄv–H ,ç*ªÌÄik¢4ˆÜFŽ÷fs¹¡½aô§øð6>^3ˆÊǾ„…¥ò ëá™5AF¸wG0¹àÞê"½{|uG[Oáö4•Û»’”mNÛ†ÔG°òi¤/›Åw¸çñޝ>]cÅÊ 'öÁÂî?—Ö˜>”¹´Æš1…`ÊÂˆÒ @Jüvʸq-£Â‹füo\èÓ Øy•ÿããëûwï¯r¢ë)úe‹ËPcM¿[‚>­„´OÐ÷­½,AÉúsÓOd/ºø:=¾û1¥k¢‹œrìü<%<ÜDÿ8cO,†rV~ø·þÝãý«û‡xÍ@²sö±%³Ð.P?¡ ÜÜåöb{žW¯¯2Þ§ãO^•&ÛN\GÁáðµÿ劉«F…éø“w1SN©‡’_((×·1¾·|ý6]3ëNÇû¨æI…—˜#™“m·WÀtºüžyðîáÕ»7×MÁó9ÇQå#âJ‹ì‘=rƒ,ãZûdbË{g¾…½Iöþ1¾º.F¡§¿ÿ¦²yΖUÇœ%œu.™6¶sZv]ã×ݳžrlU&rÏbØ”–{Vv5ØÑÔvp#¶À);ZE©œœe¥ZZæîpÂös’)½óÄz{q‘wïß½}—¯Yûè)'Q.`J+ô ò‰/nhàŠû¦ÚuvšŽ\b1^I£W޻ܶ1*dòŽv¦ÕY/áʯhíˆd+­Ý%Ú«¯“H÷»ýó¿®Yrÿ×É‚ûóì|kõÿµë3þðçñ:˜ÐrÒÉü´âRÚÌPóY{KŸwÅÔ¸æä„•þæ¦ÍBd:c7’ú!=¦W…Q§3Nµ/ìN{dNÙQÿç‡båÜLã70Ÿ3×Ážzÿ¶ ¶x#<èÀ¥L5˜™U™ê¥ 3Ù‡«2”ßxÆ£²Š#sÔIYÅKeóžT&o¯üÖ3Šm]*¤5ÿ»ÁŸWñÍ»WW…¦3NìºóÔá;–8ØŸ>=¼»fâ⌓޳ð”ï(焽ióÓëûkúÍtü©â™}gÈšßÿúøðßWá>8åÄt‘mý¸¬îÎO2]qωzÿ¶¿&h5¯p:±ž7¼èÈtäs¼ç{cá¤n÷µÞÿð—kV”rÂÉWÝáŸØ%\ß¾ÂÃù»/ð!ÅÇþýªw(§{AIúÅíK—ûÛyÚÿyë|¼júÕSNÞýgi÷нz•½XÎëø¯ëÖaœ±š”õ-ù=W,§ìÙEÞÆ‡ë rÆé QޱsŒI.²‹æ~ÿxÿî#…3NV¥? åcµ‹ãžnfoŒ÷oÞ\Óë9ãø‡vjy·{«}NØ?^•nñá*íœròC+¿ä\/\Ë0ؽÛá »<ï¯ë‡rÂɰ#¬´b4Áõ¡pö^•\oçÎþ–þ[†ËO×¼¬£³Nœ9Ï-{Ñí…±Ž”ì­,Þăoäº×ºœtü3ž=³Þ˜¯±dË÷ñÕë«¢lrÊñ}™_ÿ˜ÿc&“+î"nß¼ûxÿÃßâ««ð¥Ç§÷ÏHÿ^õ-ºv9ëÌõ»ôøáºéàè¬Õ$¥#ð¦Þ½u+ÚulÆÇw^¼ „¹œ´ŽÛqkOª·}qígjrïSÙn]¦zÏ{ãhYÖ_;ŽrÊÉ£\ˆ›ò/aÇå­WØG?=¤ûüîñ‡û|Ή‰þ JÉ͘ªÞ¹Ñï^¿K÷ÃuŸörÒé—ý9þ佉h¹ÎîÅW~øîHO9íùǶw gìM8?^³¦,GŸbêµÎïž)\Þò>=ŒñÊx>çô+VæK’ OŠül?½ÄÞ2$½^_ó È '°RuäÕœ­H´»R›®·;&ÿðÇ×÷?^3èé)'ú@ß…ê;úÿ~Réïñt6" _ª–¬µþ}—ô}üôËð÷x¼l>éÄm» ¡èÈqÑÍ÷1_c7PòS|]–vWJ䔓;ZÊ’P&„2‡v'Œ!WØ‹6¦ÿ®qLÉ §÷Bª÷¦J½s/rþ^×ùéÊAUN8]=º“’›ÎñÓ™¡óeU{•n9a¥û¤xÁ6æü¸¯û/?×>÷¸HœN$û´ûÛ71žy׿ÿ¸„¼)'£åg*Ê»Ìåe.”ÙûVþ¸!?,þóºûÔSN\f‘—¦Ñ3uH’ëÝ“Jéíyªþóüýÿýþªø…žrÒï(õ·-³·æÒ+ìÜÏ¿ý+}¸?ȧßàç "ì}ƒ\dõê§²¨?üÇ}z|÷êÍOï_¸'µsú)„å”?|¢Ù9w‚y{p†]çòÒsN`¸¬µL+ƒ¹–«´;w7_b× úá:/ò‡O'Ó¬ó{ž†ÃÑ»+‰·Ÿ®éŠÓñ'ßñ\R ž™ûvQ.°s#ÿWü×µÖ žrlE\K.^ʦ×^7Ó+îAURú˜îøküé*N’ãÓNî“ ¯…Ùs®D%÷}Rij@9ºê^ˆóíûTæ«7‡ ß·ñ*OÌúÔÓA¢UöŒ:3{SÀújg¼ ß¿ûôñµ¤#_ís89÷tJ_*Ãì[»«“wcŦ[¹÷Pâ»øX–ãWÝáþV#¯¾ÔÂ3»/u÷šO¸û×oâ¿®1]wÏ_Ý»¾â9{/}÷’g¾ŠÿüôøãÕ8 9éô;8­¿³÷ÈY»ÿý•®¦é„ýVER]gkÞߟsò|Œ× 5Óñ§ cÂëê¹ý®×þpú~ÀàõÛ«2ȧNÅGå>Sºè„¦x'¨P®º70Dz ¿ê;áŒÓIœÜ™Vh#J›w&q.°o€ÿøöš%«œpò«-û…‹ù¤ŠÒŽ¡]®±;g=¾;8Äøã§Ç÷ÿºfn]ŸºZ°èbéL °í|uzµÏÝë󬯽ÓOG¥nÙ^htïü½»¼¿*_êpøIGxZEIF§"ÌæNïwÓˆ¾¯KÿäŒÓŽju¬zr­ ïã~Nå÷ïc™r‹Mp•Ïâø´ÓŽr©HÙæÖŽ®´»²ûñªèËtüé-šè«RKÛuÝ»1˜?ÆOCü0ÜßôñJÚ­íɧ½÷R…íóc}½ÝÙêÇøÃßã5!¶ùœ~§Š“îÙK˜/³s[úôþÍ»Ÿ®z}zʉ·ák”`Úƒ-¢{oY]Þý‡«„3N‡ÁÓ‚—›Å³œ²×}Œ¯rŽsÆ*}¬2ZNî—)xG¹´ÿŸ½wï’Û¸îEÏßü{]Kr$o4¬8÷R$#MDQŠHÉvŸ^…×tszГ~ˆœ$>ŸýV¡~*T…Ê‘s8k‘è°7v½wíçÌdvôOÒÛ…ˆÌÈP-0>üФ¥Bë˜4AlÍÞ¬W_Þîf-“}0eèö2ž½ËüfÝRïûFÅíîõ,ý…P—×±ì¡AŒ'qØ ÎÏ78{¬z¦ÎÏk1{ldm×ì5_pgñ¶D=ôrn,Õ ÆÌ\oŠ5«æyèt@ê¾ÓËËJÊu%/«Í#¿Ø”Õê«Í »9Íj >œBßhž²ÒD_•‰Ä]9‹2þºÆMt‰$Í)!‡~I¥‘Žý,žu¯±¬óS1èÚ›8Vqð~±Û_,ùQ`5ÉñúÌ´É€Mêp–óóð¼qßÁhB3"Æ’Šy .'4ƽa{{¿¯š9G¹Fm# !î-MÇíÈHÄiõdÓ¬¾dsÄÕ=(uqRÓŠ éÀì¶J·³åDHóg9ç7œkÎP¦&9°í±Ú_ dÓ ÕÝ…,ÜóMšOEo:•mÊrž:êZuN§K)›ÏÉsM' 1r §’½a³ÖÎF㺜̔ŸJÍÀ<䀯t:Üì×§ã, ¡’tNƒlNM<4l‘ú=?g7×|r̊׃R ›Ê¬ÖCd"n½9V«—w¬KÕ盆íï•u¿,«šs>-¦ó»íÈ?ÇËM¹Y=Ù5ÇýnkF8qÔìÁ+±8E2«…×%µ:'mòà…HýlP»$N‰¡³ú_1é¸85©D^1ÇVµJ­”é„ÌëKˆp4‚¤˜'ã’xpFîFŒJM†}RÞŸ}´‘OKúhó«ôjõd˜ÔöÚ–¥X{mËK”¥XÈØíU”+_ÆQ©¤Ý&¿2”e>+$ î8@<¥öúH¸µùÈå#?T—O ÏÕ|Qu%C¡Ôº\W1ò%ÉØu%OXíõQ›/IF¯M½(šÛÐ{_Þß­«æ’þ“4ŒÅ&´5h‘)zà³Ã˜¬¿´½ƒÝØ‚ìÇZÃ20‘ÖAy…ìÖ^$4d÷£à”½O†á×åedçóxËG -¹ä|h¯rݾøäøm¯òø¥ø.¶?(PZ(cÌ*æ&¤xTLîÛ3?rØñäiQ“8 îlÛ0øsÊú78XùI†Ï:k(9¥"¿•§Eú1"2Öñ ÝÑh¼Cø|+¦$¹qA§§"£;]'ô-ÊJ¦ùA å04& úÑÞÉá]˜ â² G¸CiŽ ô…YKaZ¼M‡ó㚟<¿fÇ‹øË3t·ÿÊ…ÔÃBèa!Ä(á×eäx*‘ö¶Ë±D9—Ó©[郣÷ÁÄ —‡À#Ø@¤»ìœÖUŠÅ{i\Q¦4®5¡Ä £|æ]¦ùåW|¿ ‡BßCn0¹Á<¤}•:¿"—˜dPø5Fib}¤yEØ_& i¯²¼DYK#ÐûH«§••ΩüJigAo„ïG”VåŒÊx?Ãû2j¿¢~ ô1ÐÏP_†ú2ÔYØ}„|ósЗ#TŽ÷s|¯Àûèifýõ)Ñ~%è-‘›Mæ  Z3ð+ÐWIúB¹‘ñ«|?Ìåó0Çó± Éǯ Ê)Ê åeÙ1êã{1}õ‰e®<~MQ–ãi¡ƒL>JHó$`X±,Hû̯!Ê%Êr>¤r… Ñ1He|]~•ã!“ùNƒL:€BðeèLZ1ñ+2í`c©°±è‡ŠsšZyìªCldHºT#éRM‰@ß§EýIÓ¢&%ÉÐ;`ˤDš¤¦;’&¥Z¤T †?èNš‘ü‰ÿHèNJw š/SDÆ,SFw(fLŠLõüGDwl©\ßgmòÞgm¢;ÏÚ4Ð:t\IøS½]=Ý\oŽÉXÉΙ–ç!÷A—¸5ÂsJÜŠà5r†×ÈÞ%þ ðœFjG‚É­åå“««ÕD {Bdí}qëí/3Wúx{·æG!¦àBÞôŒƒ8T™‚‘3Žà@åQÖ‹%‡Â¯£É¬íµ-”F0@9BðÈCiÙèçÜz]œ1ˆI5Ï9“œ/=×\Y†úwaGœ)ÀüB´. â;æ`£rЛ3ØÐ2Ä–û•Ÿ×ˆr満+k¬ÑÉä—x\‚ƒ¨BÐy=…²dù5—å~ å6ÊŽíbÿ:X"&‡ÏlYÀGQf©æW™]=‹ Úá’O>ŒK¼ø,‡hWî=7mù}Á·0‚[6¹m#Û;²×1d¯ãW¸}K ¿.Q®PF~ ˆŽYE¢e™U"Eþšü~.­,êÜGcD3ô¨µ¬ñÚ°:˜N¡wøAs†jÈ Eîzº“Дî,MQü4nÜä YV»ë=»[_Æï÷À•Ü^¡'à²eDôŸe ì^íLö!VP¸ÊùF"ÜyHŽS—á{ÈQ†Õó¬ÐCV9A™Ë$ÇáCðrèr(áå ÷`øÅO`Ð 8fŠû}/L 3H¡Ç,Ö©®my­Â¥|I%¿ByÜ%±×ÃK.¿B™<ûˆYw“ÏptIŒÜ&NxR§À¯ˆD8õIe3Ø(³vbKåŠï¥r…ç'6ÙH—ÐËže4’vf!¸dûfàðΑ®q‚Ç–áÄÒ%ü‡—ÃË(?ªž°ø»„´”oð ð”_µK* øð]Q¼OÉ-¥éœÒ‘²÷)KaQŽ>ÊA§æœƒÀ_ÁÁâDZa|žóŠ!ýÚb¯F’ÔZr4üš¢ 7‡ÒûHß…y ¿F^¶z™  xœPê‚8â”6l”¡¥pvKÒÃ"Îê’¢‘BšA¿ IX mfZ‚#•:•.»Hüß'Øa0$ˆ9GJÁhŽ}˜4šB3‘›UŽ8‡¨7‡qArµ ^ìEŠHê‰ýÒHë ¶!×&Árí´´çHìÞCÊ\CP£¾µ\?ü»z 3²\ù5Ú·.Q½u…2ð×5"kVRGTÔ0܂ί (ËEzG¹‹ôS¸FJµÌŒ$àâ %GšÈödIŠçÈpždxžá9Œ/¤ò„ÁÒå¥L£i>ƒñ ƒñLêkÑùÕeP—ð™<ò+²IÓÂs¬åeDçÀ ˆer}m¯¢ÌRpÈ)qÜ0Æ à>µäø»h1Œ1`¼‘W²þˆþ¡sÐzä|]gU×İ’;«kð uŠr†÷3cH޽½¶óuwßcñãðÖ¦íaj.ï@Ü÷TOéNÚDtÅàrË À'rÖ˜;;í³£™H„¹Üuny.w’íGLº3[¯0¬ NÁ¶ÚòÌoß•ü¶/mÏœ©6T¥ŸR¦‚ r÷#òL2ù!uL–ÉkôíQx)í/aÞ–¬|¡èX-¹u ‰¿ú`U lŽÀJÔ ¬m…H©QJM%ŦOá°—Pd.åá¶½¶K?œg£‹´t'Xºa&ëÃÜ6HPè…(w‰•*m)“Kƒ'Í)¬ììù’;-²Ûªp¸¯p8OqøNqø.a·Ub©€]–>uû¾¦P…ùÐø‹°ÕË¡âKrS€êH«ÎóÝ›j_°ƒÅVßEÒ¡ ÑBŒ<¬2‘u\, \õõ€w äÆFë¿JÆEW­hŒúp£ÅF^¦Pòf˜9¬Sã¤0ÆAg¬3ïÈ.ÀI”_ås8ot¢£BntAA¶±AÍrb°q!{=3FþÑZÚÚßßÝ=´;;}WâÀ‡i‡Ÿ ö$8#¶ã]æ»Ï›\óvM!bL¯I¾ji¿¤®TJŽã)!kä®ë{)ñf¸áÓ€ît'¤;!݉èNDwbºÓ„î$t'¥;)ÝYÒ%ÝÉèNFwÝat'§;9Ý)èNAwJºSÒŠîTt§î78ÿ®9êç ‡s¦9¿¶»|E+àN€;²Ã*JùÄ`GôÒ´òŒ{Ýt¥M÷ên_Lf(œ/qï ÑžR èKû>|™—Èsz{å:…@1…@0…@1Eº_)ÀæW½'p‹'J•dJ•¦h<ŸšÓÇ€ÏpàL·1rX}\=Ý/l“8­Mð)Kd-=yZð`êÞ^ÛÓZ-@«Ò”¸½¶eyvl¯ò4à4µ‚<ÛµWQ†q{•å%Ê8$d á@ËÖ †¶ bCÓW²©… kÀj «¶…0×O;~ÓÿH?½yr@FÍ™w¦Ðàʈ i£eg°Ü5“qtMxHdD s×2Ž;#bà‰—dž ±rI~2eL¦ÐqMx˜·£Fžö% âøŒ:3씽ñbŠ´»›Òê›=?Rsv¥¨î.õ‚´ êŸ¹eZ…ÖEk¡$“_òúÖ=muÏZÕ“V÷”u÷|•«b*3¢už®š'«Á3UNV(kù5E™¤çi*%ŽgOSyºzš†(§(_êy*eTVÏÓIOSéq~ö4MP¶yšêž¥£ž¤Ͼï&E}÷¾›ÝÉéÎЛ“”ÓÞœs}7;Éï<ßÍvþ”D†“Öóÿeµ­Š O¨C,J@£¥—cæÁuKM=•¤yˆÝŠïÛûf5f*\Õ²-{XG¡2X°à¹À½%Î'ƒ¸2„ †Ôôå}sdoRI‰Ä KmW€É ÅW€^Ç‹×Âf“â9â-x øÅÉ@2xštq3ßab€‡¦Àƒ‘°'eÏíU–•8üŠ] &6$r$r^²\ϱK”‘êFÀ obÈUc>ÅÊr æWð6>\a|¸ÂÈiÝ^Û2 µRú¤8¦…iM†U²¼¯µÄ,CZ_™ÕW\¥>ˆ_‘\&Æó Ï¥¡‚·¬Èu¼ }2´o¶„\†iY¹7fa†Y˜Á?ËÉ0+D9F®6˜eYW¹czY|0|‚vÔË ç†3¯g^éXÚk[†a +<8û¶©:µ×åe¸ª ý!ƒãW¸ÒÀ•24Á5AÀàšÀ\€Á°ŠÁ°ŠaÕcp-b! ËBžIí4¿&(ã{0¬c0ôb1èáJƒñ ^ª½Ê²l/†¨.LòjmD˶Œþeè_¶~ô/Ë€ýËп ýËп ýË`H Sp~E}Ñ¿ Úy†þe0lcè_V+‘¬~¸†0ô'C2¸ŠäèÏý W~…!ú3GæèÏý™£?sôgŽþ„!˜C0 ôÁ¯²>9ôÇ9ú+Gåè¯ý…\,”ŠÅïï÷o¯mg—ý…ô'^W”ý•£¿r¬G9Ö»óù®MXOó ïgø>$N9$N¹kò+Ú‡¡~Øesìªp•à›#Ú#'ÃG9~s¸‚嘿9\Áò‚\¯dæèßó9Ç|ÎÑ¿9Ö7ìr^þ-пú·ÛT  ˆ} ôoþ-Ð8[yú¯€þ¿@ÿ!½&¿Âõ †¦ö‹z´Q’ ¸Fè¿ý‡ îüŠ÷±˜ú³@X_ ôgþ,Пæ_ùW`¾˜oú£À|+°žèýQ ? ôG³u®¦(ñ}è Ì¿ó¯@ÿpWY–ý_b>–è¯ýU¢¿JôW‰þ*Ñ_¥<üð+\ÍÐ?%ú§Dÿ”èŸbýÐó«D”èýQbýƒý†W¢?J̯ýQ¢?Ê zÓ ßÃþ[B"[·„!o ½-ìA¼®%Ú»„+dY@/ ½m‰à2%Ú¿W ×!~Ås´w‰à30ôô*´7¼õù†ÀØï+Œ· †æø§ ÇŠ QÒ*Èbà„îÁ_ahŒý¡ÊŸÁÐëK…õ£bøƒëƒ´†áÃ÷`˜÷u~½àÚ+Œç ö=Ú·BûV߯w…ö®àÚ\a|WXoªøÀ/Thß ëKÁP®u×?¸:רoúÂÖƒ!­ÃÙöÚ–eF¯3g€©•G†Ñ”»¼€+!âAx°€ÆÀ‡Æ€_+”ñJö’б¸--KóQ†²?Ÿ¡¿¼”A ã“¡ÿú—!Þ Ã÷a(í3Ô?àÚ‰ùB9'rПÃÐ>¯Ép†öpL€ë¶×mŸR²]np¼úR Ð^eð §$õ¾Wcü×ÿ5"è@6é׈S#°Jù_£>5RûÕÐøÕ-‹«,((®´5dË5Ú£–ÚŸöÚ–!¬G®FTƺ¤2ð—À»fX»ð+à!q¬šLÛ45{ॖ–B*²„ýä’ì' Á¾ † °^^ © ðûK3|(ùÉëEI›ˆ B°±Hž·;©KžBÊ© øi~•Rð¿ü*í9Áïàwƒ¼”õ!)MGˆ"@9F߃ãGPH3‚ ”jÍö*ËK” ”+”%|™à9‚c•ÐЖ&~†_ñ>‚¡•†VJó«öÚ–l¬D°±2ÇsØ»‚¿i¯²Œçèð3ø™vfÙ™Uò¼KR« Ê39CôZ´GE¦2t@Ç“ Fð.2ŒDp½Ð£˲¾üÚ¶g0¿F² »61—}9ÞBŒ—ЗRÀ.º!‚µ…¾ü~Èõµ½¶åe˜e–rÿŒÐ^øƒŒL)#Éïó+ÊˆÊ X–°÷ QΠ›‘Öå,½/ö7–JúÛk[–ë#¿¢ WíŽ#Kà‡¼ˆ-åùˆA^İß0ì7l)×~•öÇËï#Jè²>ГÅp5á#×_†ýƒeÐežö ¾ÌCw|§ð+Ê\Ë#”åúǯҵž°†—!Áø6!á!/àW*/Q–ßË}<‡£P.û—åÊpÍÏ¡ÛÊÑ~H`Êz„_¥n,‡«}^Izs¸¾çr`XÊTòË%ú«LåxàW&˲}k´o %O OÍdûÕØÿjÔ¯†¼ƒ_—(K›3(€Ú«,—(ÃqHÊkÄ5­áÐ^e9F9–åÏeðL¾]ÀØYöO]f(Ëó,ß6$=d ]ÂþŽj5bª×E§–óµ†#Y]ÅÎSp>Yq•åe¼ŸBª-×s¾ŒÈúV5tƒÐ Õ̺rè èAo] >Œ¹ëÏK4ƒQØé¼çRÓ¶?äÔμQ¸âÒJ›0¬™ øN‘¼ïК0iÂ,~PšÙ”œ| z§"›œŠî@ Ð*‘ä8ò'$³HÈ`¬ý!ï$äŸ ¶Š"ñ£ÀäŠM*Â\£/’$uJNÇKJ•Qkä0ã'!ºSPôƒ"¡;$V)H®R@ÐÈЈnøؽŒ¢tÄ#ñ­$%R*}dj-ý’¼è€WP’ïQI!ÏÊ1ÌJ eS8e$Ö,£Œ##pZ¡5øŸî„t‡‚9ØÿXÒÂÃON6Ípuç? ºC¶ÑÃ!*(0²G¶ÈFö(œ²×…\¦ÐÍ>…nö»@Íøz’%tHÁœá¢Þþw"žˆB@GÌá—Úí„ÂÞÓü B–aáVvi0»Ç8DŠ î@L\Q€Šªò(ˆ®×4žJZ°ˆ!Ý¡p¸…à º³¤;°i¯B‚ *¤wÂîFw(ÌoHa~e¾ñƒðDô­ˆðD„'"<á‰:< 8¦zÅT¯˜0ÇDaLõŠé[1}+¦oÅô­˜¾Ó·âî[v8¦°Ã }=¡¯'ôõ„¾žÐ×úzBA† MœTJP)Q˜…)aN)sJA˜Sê÷%ÕbIµÈ¨Œ(d46 FPŒ r‚ª3|ªÎÑ)€Äº“A¼ ù"ÿÄÚƒÏbí;mÈ;%Ý)éÖ±šÖ±ÚçÀÐì2µO_÷Jº†?4ÿ÷òÉü:À‰ŒÿÀ;d/ÊÐð 5i‰êkZ!ë®5›êDÁtJªÃ†³S‡ˆCSÓ*ZG$Ð¥PãüÅД„Ò)I¥ÑƒíöN‚ÙTSnÚ:¡VM(èLBQg ;“@|_“~§&LM˜:-!‚¦õ§^âL]“–¥^bæòt‡é˘î,é%Ýaš£6ßù¥¸“äq‘N ¸sœì„#œ¹S’i2yç2W1›_4ìéLî£Hq¿)VÏÙqÓú™lwÅÿZ}©‹ˆmÀÕ¾°òW/OwwÛê¶’þ|„rÂÕÞwA¥zËj\PMàæË÷¹¢l3uÏ¥ñ ¬P‘²ç›ÜÐ ÀNô}þú>WéC ¶‹Á4}Ÿ›é»úö±|ç°ádÌ¢NUh G/0嚀š)æÌ›æºÍV]oD@‹J§Î£Ñ†D¥–‚‹XÆ¢ ‰™î'»Û|Óˆ÷»€;lÛæÉ›Gú…úã44¥ÔÇc®ÀûªºY±¦ä wèèLµ¬’ «©ÐÒÐ:°¥ï÷›ív&]¤ÐÏm)å35€Æé¸t…4À+ÔÁ2\JG¨›\#ïù3™8Ý:RI"3륙$2Óñe•ï«7³¨ * dšmé4 bk –Ï8D¡ AÇ$ $ˆeUãÆæQ A :W9ËÚ/AÆÚàÒA;€V麟ZöÌ´™ÄWkÆ6‹. ¢ƒ ²µ©7#A̼øj7ëóü}õÛð¾M-C„¿oì–ñ5zædí "pB—N¦QBPfR¾æ 1›9[£’Ïä¥)VÕft´^Èà  UÂ`ÔhÌ[n‚6“ø´ú‘£kÞ”³h;ƒ)DAü)õ(¢Î`–#@Õ\³íª…±®U§f7{0*й¦–“!`,'ŒÓzSÎ;_•˜‹¥–3a a툜5ofФ©MZA@žr}[ÍÛB[•L›˜ …°ìá»æz·»vP ¤Ê_ZÄõÔÖ½îýîÀµZ)ØÎÙN÷óP[ØÈÍm>ï`ÓB(t’½SfÓãÛTجžÏÛö$ˆJ l b‘“UoäóÓ<2zp*-˜Yi‘›áFf%ï¿Û|··×**QHza…(¶5“¬ê0¯‘H!ŸYö²˜Ws·qRéÀÂ,kÍV’]¶P¸ Té§Ô@6VÏ¡M ¿½ ¯¤ÐØ%À´ÌL²òOMÉfÒA©”PªM‹,½ƒ²5É‘ÝÌl¡’û›ª…°,ÓÕ]±žÇ0H… ü¶P· ÞyËÏ›EÞ¡ZeÐmdGüëÔKOe&j5ÑέëëXWOžË~¨JŸÏ·.ÐU)Ï–e,èÀfú¾]ï‘òR ð •Òù6!Þ™ÐK»•J>æ|i™óã¨æ¯û—ªÑPª5÷‰-ÝPº$•åF„"dóäïV,J=*2Á5¢2`3ü¸hûUA"!©ôm’JÔ&+lª=ï‚oOMq<1Š£¥fŒ’½¹ŒÖËÙBjq†¼€ÉžB¦T)§lusÖä2Ën·eB‰9Û¡¥Sh„0Xx3íp˜“˜èÉC¤COTÊÀLÙì$u`=ÛõgèðÀ^2°ÉiÇÜ|ÈjëR¹ ^¡ ÒYboÄjlÚ[aÃ×qv½žiÓ'T’KÂ&0&  {­‹$xh•2tdiÑË -£Š\–.´ç7À«dV s¡kÒ¦_Y5/•:Ú($+ù=¦ÖïIùã“þв¡^.P7ãP©¦t­¶†6ã°èìYsývÓ½?×J»«¦¹írÆZ­µû°f⺨|Ô<­¤ìT¤êÑ3f'Ñi™zQK;O£³“þÆyéÁÓ¯G{èÙ„*v<K¸Íž]Ïu# •4 -j9ImìÙÍ\:H¥ƒ«o²‰=îv·»zži )tt¡T-û"Y-…uó“Ýíÿx¾á,ÐýŶÕC,*¥Hud[±X—¡ü4oøK•¨ DY†“ïÄËvð´J†—o‘)  GŽ£0‚ž)r=éd Ë"*èÁOÀkóÇ©$× yb¢ºë÷;ù¦¨-‚ ´Ëà׻渾PÜjÆ¥ÔZ„ЦE˜Àe!Ê”›=Nh…`¨B«}¾m'qâüp\é$:¥ç|ñöJŒ£3×ê›×Bßøeõ–qÛ‹¦}ú#XOD6&Û‚cNW¼ƒæWH“ÙØ(3 [3Ã{5°q<|ø¼Ù”Çu«Óû§Óv+KóÉ(&¥]"F‹¾w“eÀÜUÅf®æƒ€Tâjg /l:¦âgÚÏÁ³ý<Íç\µ‡(wžÍ°s€`‚NìÚ3ûz®Ñ¹$:mLÙe~U×#§¿™\‚ªÒGñù<ß"nV-´5ņO28/_D¢ ƒF)åT´¸qŒ|‰RXƒÕˆÌˆH‹®Pƒ¶Êì7‡ãî°zº9̳:V 5ÒJ"ÍÆ€÷a-“徘cK‚¨¤4)‹êOY¶ñvš·k·  &3°ÈÀ$í¹k-YîXq¼h¼›hôUDߨµ¸ŠÂLí7Ûruuds“DœÁTÊBZ2B Kv4ÓóÅëwЂht„D‡…Ñ’@ö6ù¶Úß^Ð&L£%&Zlñ¨;@3=ß ]Ð\Òh¡Ùe %J`£-s˜;Ézp=4ÓBËLëAÚ´u‡j¯Ê½U ¼ JøiâŒÖìG­R*¼ JøijžÃ-kæ†/—0j³DÔM‘E´(‹8{›³ÃÌŒJFL³Ù–XP¶ÅøT°C/¿6;­Ê\#ަxlKç3@0ÊåÍLˆ •¦„Ì(“ÀlV5wûÍîx![<€Vi£Ð•Ö$x3‘W·wßý„'#»›õBÖH$6ΖC·°Hl{{¿¯šÊ>»WD¹+˜Bwð–8²jæØí ´úÑ´¶…íàl¼ß®j6³Ù¬3˜JÅÓô2‹”ç hcùÊù,_9¤# :,#SÙTNûذV_nø¯ëí½&ìUûÝô¶xdº?ö±''¾%ý8O{¯k@;¡UW®[lBÖl¿;¬33ŠœÁTª(†¦gÓ›ŸíÃËÝ鸖B—±-vðª¸?¸iùÆ‹ÝÞõÊ«ô å¦1X ŸëÙ ÁLkׂÚÕ–†-§Ô«ÃÜì€Q)¡È™^n;äK(ËfÐtžTÂéŽñFœ»"˜QhDÒÆÛ6#7š×[ÎÏ=ˆäƒFqB[8#˲`[ƒæR5XHÚrË~¤AÛ§ø«Óþæ‚ã’S‰¢à¡ž-zèÐbŽvºÝˆCo‡î)Ž J#匶æS1¡0Sûùž­og&¡jAŠº#¾Mæ),›ÛÌÞ0Z†%Ñ`pI ‹lz·gü?ÎàÍ4%ìjô”DMJݵžÝÜÎ;ÐI•’.Ó‰-’œ²p8lÍ^óí`æÆ#4:b¢Ãš I‚YúHøÊÎL)¾ÍFWBYȹ’ønÍwÈÎÐy¦VÃŒC#³"2dz6éXl¬ÙîõÍ\¶L€¨DQªß–ÎXÙh8•ì +ç’(’œ(±†{œEÖ·gÍqf´iÀ¨„ÔÑš¾Pf2^möëÓqf– £’AR?²™NJ(Û¨.˹f®€QɈ‰ [L1@YV›ÝÌÁ!TH â'¶<–;ÛxÅnfzv´Ú÷©Ë>Ô˜ ø=_wšëÕ“ÍÌTˆ=8•¤Îô­Ù5z6qƉ? ßy 4zp*Itø°FôïAZ¶ÅSSmêÝ~¦Q6A)äPHaß› †–߇Åi˜Â¦OY¤‚ȲôLâ³Èp¯ïùÙ€56±Æ´@×€@!"Møad“îPX˜XáwiX¡2!±eÂ,çSܲ¬íçÅUàï«t°ˆè°ˆ›9„­q¶úÍ {ÔAid”D†Õp¶ÅdÍÞ¬W_Þîf²Ù}@•$’ $¹EùÞµôÎff–I RAÁÓ“Ú–bqcË4ù•ApáàÕ`šrša¹=R‰mÑpî¶»û™RR ¢³u^X‰Àlü¿’µæF|AcGŠð;“õ¶aÑheD«E8aÅc™†÷ÿÁ™ÀMS­¾>úñ çMK…ø’z¾´õ¼e‚<€äQBédZÚŽ8N䩿5òbwœ¿ÿŽ£R‰§£Pi; #³± ›ÕN|×ûga8zIƒ1¨”Ó‰¥ -,²‡Íàä$FÒõê»]I2§¹' Á lãsL8l^lÍ~ êˆ÷6µ"İY=a&ñÙôPMY­¾Úܰ›ÓÌTR!¶"æ§²ù2+°–¹)]‡Õ’ý™¹9¡T«Òe`™0Ê@j‘½æÌ?`ÏuðR ŠkZÃkÏÂ+°–½{w»ivÐÕÔÈ ‰,ÛÞµ0[v/¦ê¶/g&rêCjt1¢ËvªìÃZN=¦ðõgUž@¦’OamÛ§ÐMÔ¨ð¡2ãRëC{c=²ÊŒÍƨÛ ‹$—øZ9aT«F›gmp9á´ô×íŽÓ;×c¹ƒR %AXXø“΢YÛ7 ñL/ ™o€×Œ‰@›i⃅kÚ³æpÇrõŒÝ]Æ9Ù°hd/‰l˰â±l‘Û‚ï93ØCp•\Jd]۬†,s-Ä…ÈlX4ª©‘mŒ’åðhˆ‚?/˜·ƒJ41LVOR# _=]nfÈ«ItýªäŰÄf„>‰ðÂzÍë•itJ½(\UÛRªO#¼°^óÂYM£Sê•#Q{/-ÖtÓíõ²9?$rµN¥†4¹‚Ú–QÙ«íÜ}=÷˜}­,´M™Êêø%@Ì_7øÛ^Ú¶ã¨TŠ}¢ØÕuÙäJ»¿øÎ_žƈLq ¤¨íŽè.ªÑÅ ]ŒÈ΄°õ¹´N–eøÅN¦žšgX ÐÈ—N¤·”Âo)N„œT$“ð‹¼–3Áþ[WRL%EPùÜ÷è°à)î„äbÔ*åÄ('Ÿº§dOwˆgðRº³$¨%ÝÉÈ–/£o12}eDONP9AäDSŸS-Ïý{²n î„Fßò#2éˆéN’¶¸»CvCÔž>YJûDa—pܧ¯¤ýèNᤞPk$,%íM;9œ“ŠÞ©ÑŒðät4Í©5òíSÐ;%Õ½ èÕ½¤,;iÑS!_•t‡Ô(a¦~;œ!©ˆ3Á|`€3ß"ä’ *òv­¤·k»æI'âÊ:±h´·È>7~ýHÞ7¾cÍ5IL-žÏ~ÿüêųe©=¼ã÷çü„xƒßOšã~‹ßO7×›#~!6/ü~¾{Síñ›Ïò†Þi•¹øýòŽ~w×½ÿ‡>ÒßïöeGOsº¥ß/Ÿ\]Ñïæž~›ë¦"€'t-èGÝU~ìèÇ(§+A?§º>¿í*G?ˆÊç'üøš®ôɯ©†_Ó'_ЕÈ|AxAx¿¥+aù–Þý–Ð}KUùvC?:hªÊKºš—Ô…/©*/ è_éJÄüëý tBÜØ­°±ßß;(ýÙ+?á?ËÞïÕÕu³Û‹POtsÝŽÆÕï×UsÆVšžv¸O_mŽ|ó·=ß®wÛÒþô–qôôôêéê%ß©Žç¢Pœmš‘ýí? _yZÕì´=žk¼“oÕNÇþÌá»"Ž…úÝÏÏíØÝ{¾9ÏÇ6’)uŸùM÷rUu/! 0uàžïÁFo~YåûêM÷LH—i€p8F…WkÆÖÕ‹boÒQ5×lK¥/NûÛÓÍú\|Íöœ6¿Ùoî Ñ+v»¡Q÷ªÚž®i2}Åš†•ôÚ×lËîù¿nèJƒÂ3i›® hP¿Úð1ÚUñ‰ db¢hƒz¡@Aæº1R‰\ç±Ì©j}åòÝž/U #¸o®×yßšÁWëÛnuûz׈^ç#HWgçŸÚ ÎTâ×»–켄©b­»n×I­'߆×dsì†7çñÙvw}F~jvô©ÏOëM|5oˆ¨ç›ÛüÔ=Ú¬žWÝ„8ÈR‡IgP¢[ºevóu¨£oË…%¼«óRÒ:lÓ’Y½‘$tÓíœ#­u›ßªÐç(Ž&„ãl×aäªC4ðîÓ@–J´ävÞ_Ý Ä÷[ªÞ‹jÖ—§¦d=LÏ«»¢Ûe¿it77ôѺ!}ŽÃÛ e–[ð•PÞ÷‘î÷Ý“²÷ä;|¶Ä0!W˜eqBÿj×ãm•­‰DW9ã65ý€÷=«°ß¢™T¼½£0á­Òò̇·Bß3+.Š}n\Ú`öò–f•'¿j4¶\¶Ã¦?hz­ òçWÆ¢_5:—~¥Dß=ßÔöÞc×h =¿CK…·G‡MÑ}FÿªQx}):ï±Õ’æg-úªÇ\K€>-Zºwbí¢\)îO¯zÌûU£òïb”j¢†ô­ýZ(Œ9°½RšfdBˆÓØìV`¬òËíKg¾LT¨ÏA‹¾Q™è>ã`ø¡*•ljç'†Tk£Ícm¤\ÖÛ²ÜHÞU_ÿ†­÷çŒöFŽAJÞùJÛ²ÂÒ¾ãå)G±GìiÏÙ«â~Ø×cÕà¡!€\Ú·››jø¬Ÿn¥¿Þ sq1åï=WLW^UźémþW÷ÕZ²œöUþÞI¬]FS~‚*v×ÍFm3£Sì8‡µgo6Mo²·bXÎf·ýÚßµ4­EÖ$6cbùÇJÏôø½Ç8lÿpü|Ÿ[ÍëÚa2ö^«êÇýázÒ*¿`HÇÝßÁÁ•!ù€Ï0m×¶tË=psjceëí§îñZ“ÉzÕ¯Xâö6+U uÕè2©«FK]¤EUªŸš!SkžtÉ_—'ÒKªßPÈU'K<¿kIL8…¬àœö@¹;ìëž@åªé‰‡Œã¯7÷úÒ—+K–3ëôyÚç~²³«‘LZýÍRæ´ê3ÀšDëʘͩßûŠÄëªQ…^W¶œBççšÜéÌnÛì‰ÂÆ s˨LOO\veͨ2²Œœ«ž™ñêmDæLý©®d‰Ð˜31ôèTò ô:[ÓêL9ã„¡ßg¬qêûsd`Òçüú‘ÙM¼Î9úX%4pC¬oªûý2¯º÷!DŽî/z´fó.Br*%:qï¾)ððñ`ÍSbàöHèK¦¯U8ÝmÏj,Ö>c¯i:®UÙqÕ åW®†¸j ÿ«f *ÑôW¦²¸j4Yê•)Žâ ý{ƒsE°·«›%àWÍ@zÕ Ä¤WÍP!qÕ¨Òÿ+s€7ÃSU’}Õ •#W†€dê#“p÷ªJŒ¯MÛpe‹WeÞ—ó^ â2©t)Âÿ+s,"…S>+®U[pÕ˜$öWª¸jt©ùU£Éý¯¬±Rú]ГÊ_5 öU£Iö¯Mª}ÕhBpðýmí¦¿ËÅàWAÕ ”cý[6ÏþÞœ²ë—®†ì=â÷}ùЦ¹jLº«¦¯}¹ø÷ÖU‡r5âQÛ#Âæ·Úû¼íÁ¸7¦Ê{ |û ªÁÓ°?'ü÷úËÁP—såꉦ þ³X¯}{~X½.ë{A8|‹w‘áM³ßN8xÁôð’/Jo5zôzÉæcÑgzt¿†ÞT¶yô†£ÉVê Ò·Ÿñî¼OÕw,žûcûºÏ¬Z÷[Âh5ëüf¯IȸNXÞ=êÂd¾úæÕã端žýñ÷ß|÷ôå"ɼîÑ×W/Vâîêù³_¼úr៟<þƒò$Š /¿ürõÃãçß?Ó`zâ0΄ì-{»Ù´oªû…X›«ÅïÚg/J¾\mŠ6;Ùï^køËMÍGL½øâÛgßýÓêé7¿ñäñËgÝ'ÔÛüÛ0!<5Ò¢n!´x‹kΔԫr÷¦*¾?qòçÅïx+ óAñç}ÌÿóÅø/ÿEâ¿Xü—ˆÿRñßRüÇé\ˆÔI _@øÂ~ô±Dç (_@ùÊP¾€ö’‹@@*PøN ˆ@@Ð ÓE( B ¨P@…*P¡€ T(¾#¬o‘€ˆD$ "¢.P‘€ŠT$ "%¬K±€ŠT, bñX@Ä"±€ˆ‰:aY»HT" •¨L¼›‰w3޽µoõ=_üˆÿBñ_$þ‹Å‰Dç{©(-ÅJ´³/ÚÙíì‹vö}%ÚØmì‹6öEû¢}ÑÆ>oc‰®mçLP—µ¿uYK¨S–8Ó ê@ëƒéu UÒé‹ñà‹ñà‹ñà‹ñà‹ñà‹ñàâ;b,øb,øb,øb,ø!Q'ƃ/ƃ/ƃ/ƃ/ÆC›9ÅãÁãÁãÁÄwÄXðÅXðÅXðÅXð#¢NŒ_Œ_Œ_Œ_Œ_Œ_Œ_Œ_Œ_Ì^_Œ_Œ_Œ_Œ?!ꕨD@%*PÂ^ÚOT* R•Šï¤"©€HDJÔ Kc) –j) –j) –j) –j)¾#¬°}1|1|1üŒ¨ãÁãÁãÁãÁ㡵šÄxÄxÄxĸ ÄXÄXÄXÄXz$Ö}ÎÕ/>ülÑ,þqá}öQ[ÚÔÍ£ðùf¤í *¯|ÄÉøû¿ÿógfðÀ<èoêŇü›'vÀ_ýªýüï8–ðøL¦øk>ùä³^±€eÆùÞ_ðk_Oûfñ!o8ÊOð+oŠ·ð†÷Ù£¿ô»RôäjõŋVV«M#4ü…í¡:?.î¶§ƒø÷¨{Þ"ÀEß”E¯ÙamëÔãÞÖyÛ Ý§¸ t¯ÄéfÁQ»Õl{’^J߯m”“‹þᯊ V&–a0Uá²åÅ"ÿãn|·;Š×Þ“öiËÃɽ5õZ¬å§ÀÖµ¼žØPC·ø’-kË÷%æöiØr’Í [Æ*åKàyÞ%nuÔˆ0œë5·Fg¨^skÔÑÐÕkFþ¶FÔ{ ï1ü1È-ø³vƦ'öº5ßÂ8ïÀ·<~xç;ޛͱà[¦¸­ò+¥´ým·´ÿ;e#Ôx¾ÇþÉÿÜq¿ùõ?=~þüÕ—ß}óý_òƒ·¼+¸¾PýV)Fj1T‹Á|2|72|õCžRÌ”ÒR)¥J)™M [3ųñFNxÕæg%púÊÝæÖk³ñzg¼‹E¾¯ØÍ€G•˜¦ñ‰ÃùÜ–Ì¿Œ±²œá–Ç’’ž¾|õôÉêê…ð)]­ÿõ_úsþ_÷˜#bÇã~“ŸŽùÃW«ëæä«ÕGi¼°äX9}§â¸øv¿ã'ƒãý v[=9ÞßU‹_?6™Â {»ÛÝœîVwxe%ä´ïŠa¶~þÍn_n9šßüŸ¿øÅ_>~Ôš_|¼˜þ £¿|܇ïÿÆuë„, U\=x7Z<;-fºþà oì»Ô±pªcàÙê¸in;£SJ»pˆÉ¯úËX¡sb!„~nm9hQþ7‰?ý>Ì¿3æP ?²µ\áÔ‹~ê4R©ôœ†g”¹|#œR¦ð…Ijk Þ–Ó5à‡‹©Þíµ®S‹øKëÜ•ÎãHüd©|óMáЦIì^‹Ms ¿;â@ï£^;±(QjÁši0ßó­ßtjùÈ8®ÏXØ¡Ø8L¯H™ÅNÕk¿Í¼XF°Q0§ R×ÛQF‘ºÞ9Õ%˜¤ÂJQkc¸&†MkA ¨S¿Æ“óͲUN«Q`Aag1ÕùA2ϤÍËŠ(çÔn¼57w¬ê¬Í_ ÂÄNïæ¸aÛ»³õ† E*|NõFðqS íií"­ R!n³‘õIë#Ö°Q‚v–÷yiw1öý(žXø*[;¬²³üöX9,/q¦µù‘m8W?è#;æÄZóÃôav!‡Ó[ƒä|?ð NqQ42Fj,sêŒeëÄs#TÜö Kn{V2Sb@†cLÓX#ñ5> ÅŸ¿T&¢8ÙLÖ*¬¬ŸHÂêmœ{ –êí0„îPÙPE°ŸéÊY3¼é¥Év[SK…*CÄëF†:|´Ý²;ÓÄRåp°ZTZ2c_ýζ5„… ³‰…Eeà}92Äõ#Fr'Æ'˜X˜Š7G4ÉÄD3ursðodr™éПd_]#Ó—ÇÝZÉO†Ó´Æ»³¹G%ÆÅYeŒZ³Ã;¸¸™Ú0ô&°¤¹éDûg#Ì›2¶[;çQl‘?²-(£âÇM51¾üØÊXÝnØnzn¦³˜R½Æo‹uòv³ÿ|§êZrto¤±³™Raøùl‚°…øj_ÜNÃ,–Úzº“ó£cÁ›µûñ5‡c¹UÄÁÇ.ŸÎG‹U˜Î:f¸—¶'Çv+Á”]Våæõ? â±1=¹NKeä‡S—1mlpxÆ7ñÔ±:½™`7é}Óðå©c5Q>ä:F¹£DÍ^ˆª'Z5 U˜¢u™à Ú¦¯øzlsÒŠÓê Q©ua+ºˆ­'\q¢\ß;Ìô¿™ØÎ$ý™6ä>˜oÈÛÊÄf6zZ¿[áßg; ‡©Æ½i3 ~&· ´ÕÃ¸ÃØôqð03Y¹Í»ò›±Óažó*‚§¸žiQ¥"å܃™)kÔçŸ]jb_²Öc ÅR3éq4º/ë{M_`¶w§N<ž¶'™×íPçÑÔÕóvÓÀµÅ"¨‰¦Eñ³yö#Å›P…Þ…BÈM³9û¨”g?þ.z–¨UxÉþïÂ{TäÐ2"ðëO×Z¾ÞñudRú  ëm-V ŒÏØŠd¦Zák§¸ô…Î×"òô¬UÖ\±‹0†~W¼0ç½eŒ“níÏNˆÐ|ëíÿÓç'f’ƒWs7“H}ïQyã.$NOYy>s÷“ߌ¢L›pcýØ/Ú^ìŒTÛÞåÄ×LâU×¥Ésnd?%KÕÊU©ãÊÓÛ_jÛåSNœý´â ‡ é¨~ç  ì§ÉÒÉà]¬ª|ì&¿EVbÓü8mƺQDép.sÜ Ïx(¼i¨Á¸œ/B‡ùݹJC’ª=:} î*#ëдš>ÐgÄèÛ¸ôB¦Hã7–ƒ¿ú§?˜¿‹ …Œ`ÆëÌ R¯o¶2(÷a{º+š\‡úÔ¹´Žª«Ø‰€ˆÓüÀ„lþˆà­£”ÑÝ^ãÖœ8°Ežñ nÁXºhë«Zë°s9§Š±Ã.Ÿ ÆøtuÔ9|_Ó¹ô…õ–¿pºm}td›·'ÖˆXPÖSHì¨jUúžbŽ©1/Vá–­ßýQ¸ÝÛðGÓ@Ó_Úºq=v­cy˜–ºyÔ°¾Ûi…@`ÖUYF"Åå•!èó¼/½wi˜,Ò`€² ½Ý‘Òdȕւ0Pøpö£C/øñC UœaÏ”ñ£ËÎl”ö);#üþÆÙÍ7ýH4wT££òuC ëXmÃõŒV+ò­k´ƒIÑD_)넌4¾MHº„ÁHþùáç°Ç+Hý,©­±SúÀ0QNq¯Ù.Úye”Ù.£üj ÿ:°*Gè5u¼Jd¥+"7YìôÁc!öu+Oìpr<š7ºi^#Ä߯PßÏz:ƒM³vЋFZ[¶AѪzÞõ¤ð]|gJk¿v2K÷”ù°saþÝ itt`ÅDô Æ[Nîæ»m¹iãÁH-=ÝfÑ·F¾é.ƒ1ïÂ@vÉ„ƒñy7B;éMÍQAÏM;B[ƒ#F!ÁvàÒìJ)1ŠDK3žVøA-”Y:¬n{zIÞGgƒYö­­ÏÇ6ÀâÈú¤ZÍDlK}ÑYßõ©Í4é1¡Ç]S™хصO¾}ÞqÒ6–¬AGñª-2maºtäF +“1&ae­~( ­{˜˜)ct–dÂ}®¼›yöFäЇ’±ÝÃ×ëÐ;c §Ÿuõ¶I–l(Oå}Øúµïó@;¯#B×ñÁêÙ¾<ìN=º½õðË?R˜¾Eé` §Ìßö3Å4÷ð6."¥ÓD“é2T3®É½ ÏãeUln[CúÜ*áËœÂÉŒ‰ƒº¿Kœ‘Îßx뤂0Û>_ò=~Rr8oøŠàÞE{çÛyÙ·NBv—èßE§å{S³o°%FKE.~礥Ôug»ëÉ].˜¶«Vy…B$íå8̧›žµÂ´¶gñ>J—{{:qèÒ¹³t/Ó>*QÖ­I#×ÉéØli_‡Ê¦•ÊXõ¦Dó¬s~ùÅÆÝm][Ó‡_#Ï/gwÖmÇÈd3™5“ýyé G_˜ù:—6ê{F*ögUj”ø:E³…(:'GoÝNƽ|ìD„ѱ3úCØ7:̲5 U›að?ÑÏÊ2hû˜š82;0¿_´f‰ãZx»Cíq³wÐëž“=®lô¨Ö!˜ltrÊqÝézs•œ>`ØùGž·)rwÈ®f\w|Íáý(sDŒ®Êº]}oß›8Jão¶ÄíöÞÁ;³s8NþÇc!2z¸ØqˆdÑF‹Ô䊰lêÙxëŒy4&Wì½{‡ÐB¾ÈàKÇŒÈ9#¼¯·¿mîW"»QÜ´œ”Ör?"GÓ0ÞÇf©p8»v™ 7˜Ò®9xhS;°XFñ´·öb8ŠÇWÓm›ûta`Ÿ. %jyÙ~x'ïØvà6Û©Œá]ËdºSg'É˦¹oÓ÷­‘½Ïhºª³I5_°ŠýT›ËæŽÒ6ȧ¤k¢·æþ¬ä`ïijϴoLi¦%<½±Ê»hZ·8ÏûFÿçßîdV°1y°Y;<ì«6›ê¸èÍâ99 kÚ‹Úà׬c©' RÅŸyÔÛèvâä¯k[ÿ óq$ŒU;\qK`ÿáÀgRˆ¶3ÿ2mÉ!ú_Ó>Ýu©Ö¬@‘¯œõoï|!Ù„WmÉÓ¼pà9q5âü%×¾QÖÏ)¸žÃÉž¤=\ ŸOÓgø0Ô$Ÿ¶wQ˜ö©è.ÞÒÆÓžá‹é^wðܶϡ>´þ#þS eÛ½”ÖÍE¢¶Éƒ–9xÖàûH†Èd.D3V-ÀáÞÁGu±¼”·qñæ“«àØ7MΛb<´G ®C­£èä¹D†Óÿ¦ƒ'q {_(cÄ—¯÷^îߨôì”×õÂÖ³½ÜøËÓßÀVW9ÓÉ䟣 ¦§ù1Þo í·!Ã1ÿeõšžÑ”—×À!xfªð¿X•ÇÛÀÖº·ݹhšç­»½yOÛD‰F"c5(«C˜é1¼Äôôí&'¢Æxʼn€’GÚcF*Ç$¸—éšëa,Ztzí§íáíqrÇ5§ç@?/ÉÕè®—&¹]Yú_h¶zQ$—ÓþAz±ž¹×F=G}tün·1Ø Å"ë­LN¾2c+ñq“W¶ÿA©«a›üð4nGh3àZ¦˜—.cuùA-cÁÓd@eUfHª<„‹ÌòüÚ3Î[Vw¬=ž™ã¥ùÚ÷§‚8æK¨6oP㊠ýYÕœvpNØ'¾¸å î”Ð{së€Em:>ÁÁUé5”£‰ŽÐÍÔ&g[‡mßl"Ðë!Ì>J«ñ˧ù„ðf*\ÅôÔ^L·¨C|gÑ N-z`§=?‰GÂ~¤½Ù÷Z¤7Æ× ¹1¡‰byº®švñi÷pZ6±¤Âö²½ƒ—ðÀMXS•LZŒ;Äþîµ£E¦N¹Šã†4`³"P]8óëÀ8ªF#’Wk Ü&,ó¸j®§§ò´‰_of±k¾¹¼¯•ïkcRÔè8®`äT¸œÍàü“L¶<´ù‘¬«ŒP¨®Ïm»OJw¦ÃŒ®k³M,áp€¢1Ô£KatØõÔñ%Z:§ÀŒ[kj½íæpš®³Ê¤ëæÚaÿQwŽIÁ\[ÑN[óݰ ö(ÚÕÇrwøA  ¯O¯År76iƒ8ŒÜ)¯ !ð¦93¶œ}0ÏíÐõÐÇ{6?!¦d¸éîB:~Æqà¨tçþ^/î]2ºL;óYÆÈž­'Coúvghq€sØ!gg˜¸šgêƒAG¶u˜Ùzäü¾ŠÐe–{ÊX?8†d¸²;,»Êªuïâpkõ+ç“©` œOú|ÆvWÜTR\bSæûá †SZ4K²–k‡K³ªDm9“íðXžî¶»ûQ¸ÈÌçMS¨È«=wŽ+‡ñ¿¸<ìH±; aÐõ~WRäFýs‘&Οt®ÓŽU4^P›·wN¯RiÜÁ8üãQ Úz¨6×ÍŽ/«#Ñíáþ9ï(¶«q¥häY÷Ò‹‡a`7ùÂ"‡ÝNíu~¶tX«´³åõi{ºuO Æfœb1myï0(§iN°ÝÜTÖd4¡™hUÕGž¢Dr%ltì Í™î45z#d‚#–ÒÁX®ŸËZº7>ùV3m0àkÊrSUë¨Dø¬Ãîö®²3 ‘z 0kë ÿq½½¿[ú_¼rhE2XM²Éàøx½®v·ÕQXp¯Ù%-ŃÏÅ=XU,]U7¬)GL@spè;Øi¿¯šâ~$5T¨óã£} H ¦LäéhÒýã¡é,°½Ú”‡iÎ50'9ê76åôž¼{ùžÉðdD©Œ™×)’¹NË1PbÒPuÅÛ¿v95¨Ù ¶ ñï¶Õv{‘R—Wp[òÉ—3k­M}\ûê5›h…p*™ÐÝÚEÆ?…EuJ!+zÝ4ôòä%ÙÓáž7¡•Ÿæç݇ñ¤çÜk¯£yH‚Køleõ›6 Ž.•[\ï]‚Á™ÇãË©a™ýyT!ú ™i»Kî¯'2wÚÃpÞmd®„†°Îãó_h=ç`)ND3Lçï\4â UÕ̓ǀ EÃÏe.WʹÌÁÂ(ûŒë?œ*:/Àb¯Ü£ÍÈÁ,«&ŽâíŸë¾£Ê4·SÙ{Feš½à0ƒÅF ­úÓ¼vtiÂÆë-æ(ãgpßu¥¿d·ž¥µæ4óôP=¹x §i9t«à¼ý þÚ¡c4#‘)ÙwtiÞT¾Ûó~¢œwû‡×þL™“o$¯¹ûºÝžP¦äF#2#a0)ÔH€âpÌ,ýámÕÓWN[ äQ,ñeˆýÈÆš 2ë^U‰ém. Ö¯×l[ß²ý)¬ŽU_WVü R°)}Ý%A¤NB<ÖZÑ‹`í‡SŽÂùC¡k ¶‡ŒåžLüÖå5Ïð{ð©3Jû§'$¬ëfZ|ïÀ'9Ð[åûj2ðß»0„lGÎÎlk;A…A`Þ]è9¬Œò |hÜ=—ïñóùY¤êÒðK>¶Ý]·Õß—?™ÕÉpiFäòïµr”éàˆêŽ\Žû)oñ@·}‘'ÅAè†VæqnÄh:žºKݰ¦™ð{ ÆâëŸqÝ8el6ìû&“BÜA„‘q§Hœ‚©ÔÏ»qÐgÚCråÖl¡îÄî !¦×ú)±‰˜h~â!‘l2diäj?ö¥–¿)«š¶ÇN7§Û‚_Ó.2vU·“j»ÅË9ÀÀÈìŸJûõöprÙ™¬|¹H[.ENŠû»ýf7êaÁ6Äò²™ hÍ—ÀÙÍtæS_KÎܯoø:ÁÏ ›|Ë÷—ªp9Â3ßmÙ=Ÿ[Û[CÐEIb^Æ$ßcë‰Ns7Ï„®¶>:ö“K\é@OÃxëO…MRûÅâs³¹a7'{§ié‚ÄIÑa%v _ïÚ H“9ð|A4)çýÊYƒÝýøÅÏ_N.ÆíZ9m3ÿéÒÍ4‰6šæã5+æéЇV[¢1Zz©GŠXw±Î;e&GjîØÉ!ÄX0ù>;å¢m™Âöð~5ΧëÓvT‚Nóªtp²—‘ÝY9É„Tƒ*œNcĹìëÃÝ(ƒê#eøåÁˆÆÖ–9­¾­ßlJ™_ä´Ý¶¿ÕM,œg;6:‡Û>žªÍŠàd§Ç¬Ùyv|¬½f·;«î,4Iž©ÆJuKoí˜ÄF¡…´É)€‰CØÁ‰àÜÆœj£é¡&ÙüHºÁÈ5Lòô÷Bö8„½šòv”®!vÞ;Ç(ÓÛÞò@q”F¬†îhY‚i ‹Ójç§õfB¤–6|^­Ù~wX"=Dï4u;eu k¨nÖ·Õ~ÄðHÀŒy>õu哼d“éP¯¹csP§©^r:/ÃÇŒ“Â'©;÷át’ qx‡>`§ÊHçÉ{'–i}Ä äƒèŸÝëñèÜü|¬Z&q*¬&}Ïûª[0v¾šÿwk¾Sæ£9‡Æ,(úã ˜^ûü±³Òö©ðèVìýu\T…úþ•|hGÄ¡Šòø(@rÎ V¦Á¸ö?ÐÔ!NR8å,pLS:kin·YÖ‘cÕ Í¹Üþm7ààÝ-õ7ÍTà-ñg„2•*FÒë¥êÄŸŒGnp¶”ƒp+²G;ÊwQIü‡E_ä½É¿r»«Ç¾ªF^ë{¾~OSL«ñz5UèП™½RtLSÚªÅp¤Ìh©Óõ´Ã¾"VvˆÕlBôPˆÝ¸:¼á.ü‘nÙÝAwdϰÙ-ø£'³ ½‡åƒwÚÂ>šâÉÖäÉ4a(?¦O86Oåpf×.!Y8+#ch\¾ÁªëŠ5¶ Ðí_8/šžK¸P&ÂÞLŒ¶àc’‰™Uóuß4³&F„Œ3>9¿FS”H­æÑŒeÐé¯8Ûi)ƒsüg—^UTËÓ¦–¡«Ñ…±—ºê†^úIGjO16íÐ)T£Š­‹c¯°¾|È|v˜3*Êò mýaÛÝ覸 Œ}é?îï,Æç© Zî~\©ÁÝV¨É0$áOëÝç{&ÕèBââgš¼çœ»+ô|Uq8^Ì× ÇûëñÞ ô\ƽã=;¬'5¬£þ—µX‚ÓÝtØ:LçÚV7.ùGGGÚ»‡íqt×[‡ñåG’„[r3·auuŽÕõæz}¯s8í÷»kþ»Ï¾…ã Åþ6Ý®j —~êµÞ´kÖÂÝÁå¡ëª¢¾Ýß«Qˆ3\³_2³ÅùÑaåsÑ_ïÇ®òÏÕqmØVwlÍÞ¬×cQx¢¿^¨‡ÃjszšIy‡«žÉ¤j$TCh6)šWË—Ýÿ2pÙ¾NÝ=›ðü 5¢âÄo*?¹ýõ鵃’Ýäo×J&ÕˆŠ-²ƒBSÌçåH¾Y;ä¹ð§Ã§Œ<ð‡Q¬µîTعÅXëÞ8ÖGKu0"„àÔ)\Xúüí¬Aï ¶7Ë+aX8„Ð5àƒ"›:/:óPÒRªÚYSš™ëp*\°CP ì0«¦B);=2ß=Wðna5©èÛŒeöú9Ôg.loÕ züø“ögO–x}ï ¿›ºî¯Ù=¬ëµƒœüÝËûu:Î)Mo ¡6'‘1RhòÓ›Yû3õw EÛ4bÜ9½cô®<•Í€Õ"åÿ{vTÍ3?ŸÃw/y÷sÆÁ ˉwûïªÉß lߊãè`@4–æ`8Eæ– ¤Á<-ôϹ-ž°ýþhvmܱ‰¦ƒÖÿuwlŸ¡kè#mm¼~;ž+Ô3&õ¤êrù§KÇÇ(ÚÝUƒ¼ü¿Ñu¥ïN0ìƒyî}ÃöS!¾0ªhuÿ±Qí€9úk¸x=V;ýÑpµ±_áåŽÄ6šë¯Ãî4eýe4ÿðVÑŒôGgIÛï@¯sjnšÝ› ±{ðÓòyêh‚—ýYŸÞ-l™”°‚¬ôxÓÚ!tݼ0[?—¶qÆ Öùo§nz ¯÷c>ªô—jn+¤Ï 91»üçÖ*ÿ·Áø±ÑÄ—XÙ¨Tí &’*\hgÐ_£®]Ò«ü•×(Õ)çT²7l,ŸG4/|Tß’gR›öWuë~;wu°ÿo½?ì¹Îÿ~B Á1ñjð^fõ#lÿ„ц.í"e˜mœ/ íüs«y_š;¹Sˆÿ;Ô€è–bFû°ó_x‰ö¥Ù3öd,OÙL;ïëÃãÐY¹H;«pLOëŒKÚlGfû¸),ZÝÂi båä5åO'/³DP·>#±T´|çVïF‹ Ží4XýL4ݽÉ%"‚eGê[°ì]Òq]( <8œå¬­ƒq°S^ÌMöó\CßÃ^Û?ILb³ÆÛüÛ­ÿ{ØŸ3ìPÓ¢êÑ&ÂK¼üž5ûö=¬õWþ½ÿþWð>{ûö=ì_VÕ]½-÷ìÍfDÝN‡‹üÛªÿ{Ø÷°ïaßþ‡ýŸ«zMEüù{½‡}ûö=ìÿ&ÞÀǾ|üòËÕŸÿL|K<àßò>zD”þç£3ÕÝWŠ]s8.Š5Û/~}àßz³Û—[þèOþÏŸ6ì¶ê>GŸä§æ°¹nª²üèל´Åÿ^ î~´øÕâÿ„ÁG‹ßq:Mw}Wíë•p|[q˜¦¸½C½²jâ¥ÃŸø¯? ˜þÍûà£ÞÇÙÇÓ¾YüJ¡ò³îôÄ£îEï³GyÄÿ~YVõ¦©ß~÷ͷϾ{õÇÕϾ{yõÍ Þ}+oå^xñøëg+Ѫ/¯þõÙbgÝ+O¾yúlõÝã_<{¹zñý×mÑ2~ô¿~ª¿×ÿþ‰ÿiò›Û]yÚV‡ßìšð§»e¿9ì‹ßœšH‚ùIú©G¿WwûoëãýªdG¶ºÛ6o?-Æ¿áy^E qM“¸½z,‹Qê' ? ÓØóÓÈ^†¾÷¿ÞOVëÞßépd{NÊ›-k®kÞý–÷øku=‚§­Œ·è®#¿ùõâñ‹—WŸy± ¡´ÝínNwç%þöît¼;?©7ÛJâþôÈ§óØø“œ‰ã༠♈wpøíâ“›üÃÄ~É—š¿ûðÈ¥@¬"|møðƒ¿“ÅÅ_Èb„â/e1þhñoXÚÛÿ¼â­_ÉâÅû@–3”?l‹‘§!ùHÞöñÖ¯e‘èú{Y$º>–ÅHÃñ‰¼ã­Oe1Añ7²Hdz²¸Ôpøò6Q´ÅØC1”E¢2’Å@ÃËÛDm"‹ÔŠ©,•KYL4™¼MÔþV©Q?“E¢òÚb¢·éïäm¢öe‘Úôÿ•E¢ò±,êû¹¼MøD‰¬§²Hd=“ÅLÃñOíí”ñ Y$²¾”E"ëJC Ç?ËÛÔˆ_É"5âsY$*¿–ÅTÃñBÞ&j¿‘EjÄoÛâ’¨üYô5ßÉÛDíKY¤F|%‹Då÷²¨·éò6Qû{Y¤6ýƒ,•”E½Mÿµ½µ’EjÓû7Y&2ÿ,‹z£þoy›È]É"5*“E¢+—E}Âò6µbÙ}«P&Êj”õ9sûÔ’k”‰¶ ÊDÜk”õysƒûDõejÎ[”‰ÞF–}}îìpŸè¾C™ZôßQ&z÷(ëkÒ÷‰î#ÊÔù'”‰ÞQÖ›ù îÝoe9 v¾G™èý”õvþOÜ'ºÿ ejç¿ Lôþ”“>ûÊ«uÕòŸ¬ìí¡:.6‡E³;.DºžrÁ·È«—ß|’DɧíNôËj¿ßí¿{ÓuÕT{&v¥£H-~X”»æƒ£`Šoo6Çõâ¸æØª·Uq[–ú¡Oßn+±wî«»Ýþ¸`‹üt½8îÿÀ¯Ÿ\7§OÚüü×§»ýõ?~ú þõ¦ÜÔ‚Cå”Ñ}œïê·ì¦Z7ÓOïî?mwHCüêo¼xöûçW/ž}ðÛÅ·ß¼¼úÃâOú-nýöÏW¨Çÿ ç ŸpÜߊÌéž|·Â»âœ÷â?þǼ·œAb/p}ô—ÏüƒÏ^<]ìêÅ %E¥äñönÍút´7œ¨hß ‰çI*"_R3YNPNQf ’¡œÇ²Ì¯²Œç9žž,—‰,—KY®Q®e9(d+E"Ë%Ê•„ªååå åª-‡‘¤G\Ûr*áÃ4B9A9E™¡\¢\£\Ëòï/”—(3” ” ”%=!“ô‡,”åôÔi[Ž–òy´”ßù½8”íÇò{qœ¡œÉ2ú#^Júã\Ö/ÎK”k”¯ÀûE€r„rŒrŠ2ð•ÀWÉúÅ5ʵ„O|YN|ù< PŽ%|z“X~?Id{$e(ËeŒ²l¯¤’ô%ÕåeÀײ}’ï×5Êòy zÒåH§¹lß´ð)ê“Ö²þ)ú#~qå¥'ñ-}YŸ¥/Ÿ/ùýe„籤wÉPÎeû,+‰YÉþZ¢ý²0oËY(éË"‰/‹dûd±œY,Û'Kd{e©lŸl‰òÏ1Þ²¥l,|&Ç[Æ$}æk–ã9§s«,'(g(ƒ¾BΗ ã#+€¯ÈQÆ÷ Ð_Èù—•x¿LQ.P.Q½êCíSËþbž¬/óB”c”Êžù²>Ì—õe¤²¾,Äó0@øBà ”—(g(Ëú°H¶‹R”?ÊQ–õg1èA?Æ?‹é9ðŲ}Ö#–ÊñÇ–€Gÿ2ô/[–(£¾ð£ú—¡ú—¡Y|XŸú—¡æ?Cÿ²ÏÑ¿ ý˰ˆk[ÆzÌÐ9ú+÷¨£\ ,éÏÑ_9ú+Gåè¯ý•£¿rôWŽþÊÑ?9æOÉñ™£rôOŽþÉÑ?y,ÇwŽõ) ”K”Aæ[Žù&®my zÐ?9ú'ÇúŸc½Ï1ÿò ïg1ÊÊx?Ã÷3З¼\¿rì9CýØeÀ3¼þÌs”±¾çØ?sÌ×ë_ŽþÌÑŸ9ú3Ç|Í1_ ¬ú³@èÏ“ß+П…/ë[ ? ôgþ*Ð_ú«ˆ”ñ~„÷Ñ_Ö¿û_/Q¾ô¡¿ ÌŸbIeÀc},Ð?ú§@ÿ˜?æOùR`¾hßó¥ÀzX } ´oö-оö·üNQâû¥œÿæOùSÔ ûk‰ùT¢ýK´‰ö/Ñþ%Ú¿Dû—¡%Ú»D{—hïí]¢½K´w‰ýG\Ûr,ÇC‰ùR¢½K´w ~©Tb~”hÿí_f²þe†÷±—yˆrŽ2èÿR‚_, Àr~–%êS¢>hßüdY‚žôÔ’ž íY¡}*ìßU” \¢,¿_aöë íYc=¨q>¨Ñ~u”¢,ëS'r<ÕX?kð·5øåõ¯Qÿ:oß÷=‰ŸŸôY–ûq{•ååZ–c¼Ÿ²œÄ(ã}Éoò>ð-©\ɲ\ùµ”e|r?ä×ååe¼_â}É/ò«ÄÈùů eù~z¹žñëe¼ãýï'x‰çK<_ây†çr¿ç×åeàÏe}ÿö޾Ɏ۸ÿÍ¿—¯b¢TRæ€Á›1Óߌñ<6Yž`7!÷Ç&dz›|^°ð+vªsþ”×óæ÷'æ×”Ï÷v CŽgùA ó÷žò~Æxž3åÏùËz»d~QB‰³,ÏO|úsY(þYžÏçwgòþ aŽ/Ä—Ïë›3™?vÖHyæxG¼#>æxžï1lˆ7ÄâsŽ;ŸãÎo‰·Ä{â=qÊwåý\_›ùÛNÄsý­‡¾'?óWJ<¯7ÎæõÝùü}œÏòÇxŽËt~~ª‰7ÄyÊò°nˆ“Ÿûß1žã×Í.÷Çì:âñ™xnß ½¹%?¯ÏJ¼'?ówn‰%ÞÏõ™7äoÈß¿!""""&&&&?ŸåA.ð}B–§Õ&óÏ1ìrÜÙwCŽ×ÄóúQÃÄpÊqO~noø†§ü‘üÌÔð1ÌùúŒŸÚBÏf~¤¶¹ÿj›å¥µ]ˆó¾ÏßÏÏy÷¬7ós„}>ïŒ~&¾½±!¿Íûãˆü.†KŽçñÃMŽ{òÛãÏñŽü<_Ç6óO1$žåucge|Ÿs9žÇ{ 7Äsù]žïc7æòº ñ|^»,/{“㽩‰7ÄKþH|Êñ<¾GäucŸ÷ï‘ývì'ây¾Äç— ñÜÞ!¯/ãàrùì·ãиo‰w¹Ù_Gäk1ôÄs ù<#¡ÄÏçùÖ8ù ô—Ü_ìÏ#ò«q¤}cÞOÆ‘úŒùù¼&aއßPÞÄó™?Œ¡#žë?ι?Æ™ò©ïHýFúoÌüʈ<(†-ñx¦·±ä[òóþÃï‰ó<ý½ÉüæˆüfÜd~sÜ´¹7-ôiÏ&ó‹#ëi<¶Ê÷ž_s—×›nr<ï~k3ÿ´ ¯[ÆYÖ‹þf¡} ò¬vÄçÏûÇ‚|kÙÔ<Ÿ×—NÄñãžò½%Nùù<Ã6Ç7äÏ9?ûS|ÎüÄ2gþ{™³¼c™óyf™òio }!ós1Ì凼_Çí\¾×²äósÜÖ‰7ÄÛü<üÄ?ÃŽøH<×g™ÉŸÉŸÉŸ·çAXÆlJ G0ã8ÓÇ!ÑÔœÂL=•”¹¤,¤ø’RŽŽ¦))}I)§9Ëñ ¡®rŠ+ϸºrdtY†ϦÛC¬å”Z×%ÅSr]¨×]I)%×å,ZK±55)S9O¥äÙ’2sbõ…º/å4%¥qœb›RŸ¦¥ä¶<Ó•“w9™®¡är8Š?(§/o±þ¦}IéKÊHJ]ž©»’Rž)ß«¯§’Â÷ê õ¾Pï»r–/=Öå4_ê3À›r@2CæÐâòÖ°¡L°aUNRžAï`‹â!ýhK umyÆ–glWRRêòLiÅØÑÒ±Ôg,#ŠEØŠ4ž”RN`–ƒ•HÄsJù^›Òc›BkÓ!)Ç+³Éú[¼¶H`íVPCJêÙô>)sy&bË[¶v¤4%¥+)y1É?rJ_ž¡ç­Í ÊôÓ’—„üCR\¡ÙxRò²Ô¼åcò#§lÊ[¥Î5‡ø£.)MI™JÊB øZµ+å8jX×å™Ú•”Rr]JfÆ3)ž:×¾+)¥ä¬¾H?J}šò 'Äø£”Ã\¶¾ôªŸèŸÕ¼éGSRº’B9My«Avô%%Ï/[V ÛÖ%Å—oJŠ/)´«-%·¥dÔ¤ñÇÌwïú¹_H)³ÀŽÈv\™®Št­¤øÌŸÆÏEJí3Lj#2YmZ˜¤ø)F‹Z+þyÍlËüjÙ©ãòV‘]´II”SÞÄ3)Ȼڥ”³Ðm9â·Kõe œe@ÊQZä/¸)ót3µ#)]Ia%ÙLEx2!-ÜLCI†’JJ¦>—>œ}ãIÉJ²øƒ)þ%¹‡)£+)MIiKÊPRJ9c)'˧ÓMIÙ””™v½9 ZIiØe⮤Œ%…·K+Û–”©¤@½aÆ›’Bo4|åø£”ãK9¾-)#)YKŸ~ÐíH Û|ð?´ÆåÖ±¹E8·KIA|–›oØ–£hüAJù mù‘€eêe²ÊÌR&믓õæþd•„MVyr BDì è8°Dæø´[@ºdq[Pîõ [òA·=ùÐk}4=Ït{¨6ƒ28e™ÖrÍ|«éLet€è:ˆureµ:±f¥ƒéYýúÌôîX3ˆ¤¤ØR¼ ÔúíP^ Býš Ó²zg!è÷t:tyc* ÑÛ‚PËnõPiïµ Tè_BÝî¶€ˆ¿}P* ÎkA©tzKPjáXÿ~< TÚ{ (uË-±¾}w Õ\ß[ƒT¹»ŽçÙ¿¾ykþ¾×ƒXißmA¬Üêwj½!ˆµpÓ¬s>‹ VÞŸhßmA®Üÿô Èóôšu+ñÃÿBkO¼€\/ŸŽ®½^rÕA­•¤CâsQWÌí@§ÿ{A¦¹?jÄU[)§É5È”cÍ T è´€J¯‘æòv Ò\ÿw"Íüéê´Ýqì8©lŸA«Óø7*%N{T>Ÿ¯ 2ÝI F⹿¶ Säö;Ð)Ò¾ÿ˜JWJF¾ï˜AEv„> —Hµ€P‹4¢(VŠ^Pè)ý„XzB½•NÐ)ãmb>LÌç‰öPé”^cÈ©»hdø>3ô¾÷ ÒCÐèU Ñ™òó~õhõ%èG%"Î B4€0  H¤yΊ4€"M‹;D1{ Ó úÄ`2EëLÞOë­Kœ{2Íñ"Œ¶¼_g~´h%Dê‘C{O~»•TK|“õâ~<†Ôÿà ʄ_vðËn“¢ošÆYõ.@ y=s3 ÝïCwáB^\RXHœþXŠV ChܲÏò€Ú˜ E¤¾9~Sg/;çD<óÏ[ЧËëqíñ<êúJ] TésnA¡+ç!ˆ$ûáíAš”¼)†Hg· L@–[f=ö™?ÚJo]î0‘Öæý6†€(A—™_Ú,‹´7ï/7QHƒG@‡+PäR@Žßèñ:c®ï´ú¶ Ç`Þèñ]ƒ§C# Æƒs{Ða/!óKKpÄù5ñ¬æ]Ðò.¡Íí mOüf É±-¦øbM¾ä‚ÑE [â=qÊÏë} Ðñ»Uêq¤xlÉÙ´= 8[TRu³±EçbQ•š¢=1¶´ÔÝ®‰O‘øc¡ä€Óàå×pô༮¹Ò%ÝÀÙ`9'?$åélÊ[ÀÙ%ƒ¯}H'_g°”³ƒtÖÛ”òÖw ò,V«c™;c©áèË[eüŒœÊ÷ ¡C©áJ}ö¯ì5*ÌÀ´+)ŠØ©oü1–”ò-V`QJ Pd>:“ÒøèVÊ-@q (U´¥;ˆi†nõ§@òöA§+ˆéT ªˆSäGNÙi]˜ÚP`¨K”¾ tJ9{ÓU]io¿kÐéDÊ@§´ë& Óºè»ë¶´1€ÅÙÒ%`*å¬uÙoƒ¡]ö†º…˜®5à;Ð)´ø†ºQ~G0Tç»’BÛ¿.0u¥£&µ`K4ð긔${pV_Ruýñdž”Ö’ò®®=VÝß À‹á Ú\hͦÈSÊJ2cæ™~UµÈàæ2ßgGÍ…+˜käªsÝ–”,Y¸Ó’òMi 0õ—bT¨j=ôÈ™ïÀ«æ¼ZRÞ x5„¥”Œ‚¥¬6‹Az¾˜pì))cI1»7K Üéb¦’2•”¹¤,E¼õ6ç°X[RØeöàµmÜnÁ´8ÕXl@àê8‘-®”ãà`çK |ÂRÔLñm/+äR;êSÎMK]dÇå”´Ô5¬gOÊ‚|º¬¢‹_x¦œ€–†ó×Òì„ÚEŠÝ16_0þÈ_pi™MñGI)½ÚmqYø3ý œ¢ZŠÆf)*›¥›‘Y—õ'þ Ÿ‹Zf陹K_êÜÉ{1j[ú¾<3””éó»€:g©ŽŒŸü#§dÁG0¸[åldÙüR¨/—¤0ý9í(>øÉéŸÂÙ>*Pn„ ”' *ÔÍ_ìŠØ¡ëQ¤¸±+rù6÷V kâ5ñ†xC¼#ÞˆÄ7Ä7Ägâ3ñ…8ô-ô-ôA%áÚÂàÚÂàÚ"†ÐÇU%®.$Ìqè[è[è[è[èÓ¶ .S˜ãÐwÐwÐwÐwÐwÐwÐwÐwÐwÐwЕˆ+ % 3…9}¾¿uekè×ÐÏÜt Gâ#ñ‰øD<Ï(l}%ÌqGÜ÷Ä=ñ–xK¼'N{AyYO{AiZPCÖÓ^O{AíYP{¶¡½ íedÚ ªÅ‚j± ü,¨#Û@”‡m ªÌ‚*³ Z-óɶÐo¡JƶÐo¡ßB¿…~ }0ôi¿©sú-ô[胂² (,®mýúôAéØú à,(`Ëz`;¾wÇ÷îøÞ=ß·§|P=TO sœï êÅ‚"¶ \,¨«æ8³ @WÆúã Œ…lAÕYP1TŒcAÙYP^–õÎ‚Š± bìHýplAaÚ ãwÃøek7Œß õe}´ –0Í5Ec'ž¥i'ú”‹åbAå"d‘0Çé¿™þ›©¨' êÉ‚z² žR˜ã´¦¾ v8ÁÅñБބ9NƒZ³þôw`|ÆW ½¸òµñè\Ûýý…ö.Ðá] ‡ëa»P>6'v¡|PÉI¦]æx)?·Ï±_9ö+Ç~娝û•c¿rìWŽýʱ_9ö+Ç~娝û•c¿rìWŽýʱ_!3ˆÇ$Ìqè³_9ö+Ç~娝û•c¿rìWŽýʱ_9ö+Ç~娝û•c¿rìWŽýʱ_9ö+Ç~娝û•c¿rìWŽýʱ_9ö+Ç~娝û•c¿r Jûcÿq ðûc¿qì7Ô°uæ@9öÇþâØ_û (°Rþ@ûYŸ\6â7 ´v®Ö\«¯]§« ¬&XŸkÖçšõøJWê™±•Pâ#V¬5ëC«÷Ôi ê·žâñ ñ ñ™8ô˜ÿ5ó¿fþ×Ìÿšù_3ÿkæÍü¯™ÿ5ó¿fþ×Ìÿšù_3ÿkæÍü¯™ÿ5ó½f¾ï\¿ã:>ËcHy¸6÷XixögÏþìÙŸ=û³göìÏžýÙ³?{ögÏþìÙŸ=û³göìÏžýÙ³?{ögÏ÷÷|Ï÷÷|ÏþìÙŸ=ãÁ3<¨ZßA¿ƒ~ýúŒ™ …ëA©î\åó~Ïû P=û³ÇJÁc…ã±ÂñX-x¬<óÃ3?<û·¨?¨NÏ~îê?@ŸýÝР?@Ô«g¿÷ì÷žýÞ³ß#ò“0Ç¡ `Ñ Æúìÿžýß³ÿûú#ô7Ð¥ìA){Pâžó’ç¼ä7Ðß@þi£AØh5Dæ8ôá|ÖrK˜ãž¸'Þo‰÷Ä{â#ñ‘øDœù¿á'èÍ´—õÄÏ´—«<닟i/VžõƳޠ™ˆ!íe½ñ¬7žõƳÞxÖÏzãYo<ëg½ñ¬7žõƳÞxÖÏzƒ+ÀBŸõƳÞxÖÏzãA{P÷+ÿáY<ë‘g=òå*Šúð#~ij>yø?‚k¹B~¤iàGø‘~¤AmCK˜ãXÕÁ4ð# üBj sœ«.àGø‘~¤iàGø‘~¤iàGø‘~¤iàGø‘~¤iàGø‘~¤qÅÊúð# üH?‚Ž?†Ð‡iàGø‘~¤iàG¶VŒ—­W®K± 0ÇkâÈ?‹h=A@M ’WƒàÕ 5G‘”Á F© ô-ôѧTœM{@Ñ@½ }ôîµ;(žBœ@°Ð%€ l%ýEÐï ï æ#8è;è¡‘ù‘?6ÔÁA¹opÐwÐwÐwЯ¡_C¿†>ÚÛ€ò6 ×@,¶ú„¢N(Ú„¢L(ºü ´ÓX}H(q}}}téQi@ÿµUD=DQC-DQBDQA EúE#QHC}Pô¡>(†­r¢è&Šj¢h&Šb¢è%ŠZ¢h%ŠR¢è$ŠJmg@ÙÐh\‰‡úE=R&´ÐG3Zè#g-ôAÅ:½mè î0tÐGÆ:èwÐï _4Eñü; þôQÕ$ïÐEèŠÆ ú=ô{è÷Ðï¡ßC¿/ê4è÷Ð/:•¢Ré‹óècEP4Ça€>”€¤€–$ ÐSaEd· ›‘÷GÞ/ú›¢¾A‹ˆU‘ŪȪ[íNQî`¥€•‘„9}Ð0•MØ@}\‡ ôÁ1„ ôÁ#„ ôÑÞbÅd·º%T·X5ÅúeýFAÀЄ úhzŠÞ€ÕM(êP°Ÿr4D˜ _œÿ“ÁJ*†ÐGsPG…ú3ôAý‡ú ݮЮÐà }a†>V+€F>ÌП‹N±(ì  Šþ®¨ï Šz±h‹â°h÷¶Ê=âE­Y´šE© ýúhþÂ}´F×ám]X –+,ÐèƒB ôÑ»€"µ ûï²Uõ¡ ,V ìOËNõ–ãEW¬D­BŠ*Šõmé¶*®/*¯¢©*ŠªxQj2¿ÀPk×ã%ÿ¦®ÇyþJ×ãäo]¿Òª+’[»Çõ7Žw¬Á•wægú™ëñâÇ<¶ÆÕ8:;[ãŠ|å:×âWäW¹Ïß'†”ßS~¶Út@«v®ÄWV!¹ýS‹IÞïÜ”QÎ1ì‰÷ÄGâ#ñ‰xþœèÏ)ïg1Ä59V.¸ÞwX9K˜ã<ßc¥ÒSŸ¼ÿİ#ÞˆÓ¾×çyÿ‰áL¼Ð[ˆçþšèР?@€>V9Óýúô±*™°*™èР?@€þýú#ôGèС?B„þýú#ôGèÐG<С¿þúèo ¿þúèo ¿>VJÓúècµ4aE5m ¿þý úô'èOП ?A‚þý úô'èOП ?A‚þ ýbE5C†þ }¬‚¦ú3ôgèÏП¡?C†þ ýú3ôôôô·®ü™_ù•¯¦ØsíÏó_ϵÿØfþ_¯‰×Äâ ñŽxG| ަÌÿK˜ã3ñB«¢Ìÿmýú ô±êiè7Ðo ß@¿~ñÕ@¿~ýúX q娶Ðo¡ßB¿…~ }¬lÚú-ô[è·Ðo¡ßB¿…~ ýz=ôzèõÐë¡×C¯‡^½z=ôpßöÐë¡×z´·§½ôèР?@€þýúôèÐÇj¬Ëçg s¼!Þç*\ñwùü,aŽsVc]¯æxnOWceVC¯†^ ½z5ôjèÕÐà ­«¡WC¯†^ ½ºÐËý×1_:æKÇ|é˜/ó¥c¾tÌ—ŽùÒ1_:æKÇ|é˜/xq’0Ç¡Ï|é˜/ó¥c¾`u>vÌl;b}æKÇ|é˜/ó¥c¾tÌ—ŽùÒ1_:æKÇ|é˜/ó¥c¾tÌ—ŽùÒ1_°,‰!ô™/ó¥c¾tÌ—ŽùÒµÐï¸*‚« :®.è²~_Â/ÏS_æ[Ç|ë˜oó­c¾uÌ·ŽùÖ1ߺžò±¢ì²×•=+HÊg>u̧ŽùÓ1:æOÇüé˜?ó§hÿ@ûË| ³hϽz#ôFÚ3Òžú#ôGèСŸõO#^Ân{µÂµV€WXã‹E™Gdû‚­/n goAûºà•}A9¯ÕœTfßüô°Å=—g¾6Bü :©è>îê[¼rƒägnú‚r.ïfSÊ™K9Ü45·œçæÖÜ3¼¹--m‘Ímqã»ÃF¿Å­0'ã·º¶Qý·ÂHàÞêV©ÎÛÝ o½ nJÊf°Ÿ‚üç³ã“K.@%áFøAyrëU·¤ÅñêÖ« úç;¯‚9~çUøWA‰ßyÌñ;¯‚Äï¼ JüΫ ñ;¯‚¿ó*˜ãw^süΫ`ŽÿX½ Þy”øÁ¿ó"ø}õ"ˆ>÷Ћà—À¿ó˜ã_ÛK Äï¼Þy $~ç%°ºóxç%ðÎKà—w^sÊ—À;/)åÎK ¹óHÊ—À;/9åÎKà—@Rî¼Þy Ì?î¼Þy ”w^T^’§¡üÞœL—Q~)áf(¿ô$(¿â%m{w0V÷«û$ýÏñ‰xÖʼƙ¼Öá…1xé1xUCra¸nÝpÝzì#òñjbðjbðjRî.6  ZiƒVÚàÕà•6 Ö ^8 Zi³)ùÐÇËF—³Tc–½.¨Â¬¥Ý¡Q†h•›,u2 Zï&k]cªq‹Zð-xƒ—‰ê0—ß‚rkóQ9†¹?Z¼*´xU(¨Ä/ m¶:3XQ˜/a-(ùň ´œkTâ qhAâ5­£„)“,á=ЕÙCAàe‰Ôú·  “ŸKmŽÛÏï/Œ·%ŸÍ dÁ V1äy¼’lµü0F†Ü`EjRæ³ÎV|[­u S+•Â…°÷E«(¡åÔ€•ÅNkͲÜÍ%ÞGK¼Õ2£•-Z^øå­VÎj§em‰÷Ä3ý (ƒM›ë_´¨8¼­ÏÄ6µ5^ŠÕ—ÉËñNKXîóäç­Á™-a¶ÂØÝ=–ç»Uì VˆE‹Xg1Y ³•XYBWçõÈuX]v5ä:¬à».oÂ1ÌVdV“C>eº-×€Úû'†X¡¡Õ›¬Ê¬Êrÿ‰¶®ÚÓÚÁ »€Ö©wÑšíîÆÊ¼r ûÏòzâhÅòûæøLÏô¶Zˆü}c؉OÄÑBX´–÷³vIè‰çù¹°ÞÅ|ÚŠ`E°€"X@, –¯Šž`'O/ÒºHüë"Í_ËÁwRæ¦È‚·d[äÅ+ ²"ŸíŠ ·+Ï,å™­4v+{-å¬äªqAGš¶“rn?Ê3H«wRœØîË:9 Yü¦&&ò¾·È:²éÔ÷\ù‡¤4œ=ö$n¸”±Ø*.M2…£„=9z‚øcC ÛF‹¶/Ipr?Ë5w™XA…»|þzœÂ>w) 7â.åÉÂ] Âܘ­I‰#ŸÍܰ™·­ô±Í.iw\  ]‹á@¸€ùt0Ÿ;BÚÜ»Dê¯tÉo_¿¾ì–[nÔ%òd1«Ám°‡ÈÃ`Ã@`¦˜©æËü•0Çq ‹™Ž…JaŽãÖàÖàÖàÖà†ÓÂprø5¸mPâú|S ,ØÂ°Y6 Ãf-ô-ô-ô-ô-ô-ô-ô1»±0¸ÖBŸ1c3ÖAßAßAßAßAßAßAعvn9àX8ÖAßAßAÙb†`1C°5ôkè×Я¡™ n, n,bˆÛZPX5n-bˆÛÚ¼ôEþ·¼·¼7¹7¹¸!µ¸!µ˜=X`³X¶Ål)®OÄi¯§½À¶ÑýH˜ã´·¡½ ímh/f¾†oú†ß2Þ-f³ËÃrà°ÀÄm ýú-ô9ØúÀÈm ýú-ô9 Ùú-ôÛú-ô9àX8¶ƒ~ýúô;èwÐǬÀâÆÓràµx-^Ë×·ÀÀqSbpSCÊç€j9ZÜzÚ¾¸Íf|`OÄy ?03±¸á´¸áDýCÚ;RŸ‘ú`vbGÊã@nq»iq»iq[kGú³‹›M‹›M‹™„ÅLÂâVÓâVÓâ†×b6a7Åm6õfn1[²˜ùY`ýX?{·aëŽ!íÅ ¦Å ¦Å ¦Å ¦Å ¦Å ÃâÓbc1‹±8-0v‹L‹L‹Ù†-ë9f)Ìqú;ÐߘùYÜ #U”0Ç_þ ´³Fè¯@èècb1Ó²ØQÑÆz¸Ýµ åcöcÊÇ ¯](?   s·ÍìWŽýʱ_9ö+Ç~娝û•c¿rìWŽýʱ_9ö+Ç~…ÌU‡>û•c¿rìWŽýʱ_9ö+Ç~娝û•c¿rìWŽý ˜¡f(aŽCŸýʱ_9ö+Ç~娝û•c¿rìWŽýʱ_9ö+Ç~娝û•c¿rìWŽýÊ!Pqì?ŽýÇ!rì7ŽýƱß8®qp\ã€Û`!aŽS?öÇþâØ_ÐgK˜ãޏ#Þo‰ã&zkfL~O>×\kvŒYpYð¡r@±f}¨YjÜðטjø³7û5nökÜìט±Ô3ô™ÿ5ó¿fþ×Ìÿšù_3ÿkæ]ÜŒ3ÿkæÍü¯™ÿ5ó¿fþ×Ìÿšù_3ÿkæÍ|ÇLÃÔQÄ7ÞÌ÷º¸±E ìZÂÇm1û³göìÏžýÙ³?{ögÏþìÙŸ=û³göìÏžýP€áÄ$aŽCŸñãÙŸ9PÅúŒ'Ïþì;ècÆî¹Ãs-†çZ ÀØ#0}!aŽó>ãÏ3þ€ Ç÷{ÞÇͻnjÐcFè¹&ÃcÆåÙ¿=û·ÇìÍÔŸýÜcç1#õìï(Ê zr %Î˳ߣ57(Íc}ö{Ï~ =†ÐÇìÑc&æ1Cõìÿ(Ø úu %ε3e™²Ç Ýs ‡çëg½ñ¬7GAà1“ô˜¥zÖ#Ïzäá?<×Ny®ðð#~ij>yø_®€AéYPŸæ¸#îˆ{âž8 ø‘~¤iàG€yÄp">GA?ÒÀ4ð# üH?ÒÀ1`D$ÌqèÃ4ð# üH?¤Ä€(‘Pâð# üH?ÒÀ4ð# üH?ÒÀ4ð# üH?ÒÀ4ð# üH?ÒÀ¸õ°EkS³Ë-Ú…L0`;g–Á€ÈßOÂï‰÷ÄGâÀ#À¦”ÿ3Ä€Ùd súúú€|Ÿ`¡Y°ÐǃO°Ð·ÐPøÌÕK˜ãÐ/Àš‚«)°}@Yzò@<}}ÀÁAès sú¢S:ÀIhÒ€, ) ÀóB } ,eàjè Hlf[lOö ù >ب4*`¦\‚DðÐ÷ÐÇŸRÀÍO@‚VpU[PÁÿøHµÀx †p æ8ôè7мX°Á…^h¡_ @T@ H1³°(0, ‹ÃnáAà4 (<1Ë0Ç¡_ÀDK„³ súô;èøô ð¨àŽ ì¨ ŽzèãË ³y‹Ù¼Ål>†Ðï¡ßC°#fô3úp#ýú=ôA’„úôèР.1Ƭw™v¥)†‘÷GÞ©? Þ€‚7ŒÔÿQ3ã0R |ÜH˜ãП ln‹–$^°‰[h"ñ-€x[BHÀãZÞWÐ}¸Wp{Ð/غú˜ÀÚa>ý€Yp@0›·Ã} ‘Ì´bý:cÿEª˜UçÚ‡…ý…§bfý5ͪ›U£<Ôk ã{Œ¸0Þ–©˜Q/fÕ|¥ÝèÌ\ú‡~Æa•å¸öÔqÍ©ãZS‡~Å¡Oq\[긶ÔqM©ãR‡¾Ã¡ïpè;ú‡¾Ã¡ïpè;f´}†ÃHÌqͧCßàÐ'8ô y¼ãJǵŽk!ç3ç‹ÛàC3êb6÷¯:â¸ñmqŒYôÔÀhqÜâ6¸Åmp‹Û`SGyy?Š!n‰ˆpq:Ä©çùžçq >á|êqÃÝãæ»ÇÍw›ï7ß=n¾{Ü÷FúBöcÖŽÛ ‡Û súôèc>aÆ>`™èРÙý4@€>fäÓýú#ôGèСÙù„Ù9nŽnŽ$ÌqèС™ú„™ú´þúèo ¿>ãi¬}¬}Ú@ý ô7Ðß@}Ìà4I˜ãП ?A‚þ}Efó¸ir¸i’0Ç¡?A‚>fö¸¡0Ç¡?C†þ ýúÀT'KÓ ýú3ôgèÏП¡?n¢$ÌqèèæW`~æW(€(žÏûÅÎÌ=óãcë ù’ï‰{â-ñ–xO¼'>‰OÄ'â”<%ÌÈÛú ôè7Ðo ß@¿~ýú ôqëÚ@jè7Ðo ßB¿…~ ýú˜•·-ô[è·Ðo¡ßB¿…~ ýú-ô1ÃCèõÐë¡×C¯‡^½z=ôzèõÐÃoÛz´7-n ÚúôèР?@€þýúôÜçó¬„9î‰{â-ñ–8nynn])·Ä·ÄÒ:Üt5ôjèÕЫ¡WC7] ½z5ôjèÕЫ¡WC¯†ó¥c¾tÌ—ŽùÒ1_:æKÇ|é˜/ó¥c¾tÌÜÆúÌ—Žù‚›Ú/µæ8ô™/ó¥c¾tÌ—ŽùÒ1_:æKÇ|é˜/ó¥c¾tÌ—Žù‚m´„9}æKÇ|é˜/ó¥c¾ø”0Ç¡Ï|é˜/¸q%¡Ä;Ü:w¸uîp+ÝáVºÃ­4Hl$ÌqêË|ë˜oó­c¾uÌ··ónç;ÜÎw}q[Mù̧ŽùÔ1Ÿ:æOÇüé˜?ó§cþteþ ´ ýíhϽz#ôFè´g¤=#ôGèС?B_w[²,@d1ÚÞ™æcæµg0º)¦{[ƒ?[Œð+;Fq”¼Y3AŒ¿Q£@ŒçЉíÌu1ɼþ¥&€x¾@D;sÓ—Ž¥œbìØÌ¥Øç–Ûܺâ».³‹£ë¶8ºæ²…=ã–sþ܆b€ÈIqîlq³]7ÛŬ“Ù n™oÉHqë0»Zm±0Ý[ŠÁúbÛ’²5ÏJ5<Äú 0OÁúýÛ/__²®É)7BûåGûaMƒ2ÞþÚ‚ÿP¦|Z'ßZ«Jæò”ZþëéÙ¼_Ç¿Q Óƒ[8âðöxâ¡ýN©1êRƒúÏ þ3Ày pƒzÎl®;¢î1¨{¶·nc?ãfýn‡úÉ¡~r¨Ÿ\Qw›7@ݽ…z1Ÿ‰¿#¸Á!¼`{«5êÄí-Í7õ‚Î-§‡^Ћ—s¼p6Ø;5Ø;BŽ!êàS êÍõæõ^Òóû-ê¬õS‹z‰[^L‹º¾>ÕŸjQO¶xoQ'¶¨[Ôw-·ä¶Ü’ÛAïz¯ë¹=êÁ+½°z]¿ÊË:^jà ^ƒ¼Žþø¼°ãUüÎ {Žÿн°ã•øGë…ù¸a>n:¼ÎÿoõÊ^¼~ÿн²ßyaÏñoÛ ;ý?Ãýð½°ãåüÐ ;û?ê}ƒzßà™ãÎ+ûM½²§BÃü<^’cHœýa©±×Φk†[wcˆ½v]žÇKûu^ßù üù•^àiï2ŒE±õ ˜ãÅoà-áIÅåÚÖ/#êÐÿõ^âQ·n½Äãéjí%>›D"î¶-†§-Ö¡Ü iï¼È£þnQwßÞ«<ñwæUž8·xwܸܺÊë|ŸÕÁ1Ìùý·îe>K`þr¯òx‡þÖ«<ô¿¾WùÜŸ#·fߨ«<ð€MV[¼„¯¼Ì‡i[/󌇵—ùÜ?[¯òÀGPßýø¼Ìç¹ù-ä<å-ä>Aþ>q•Wz¼ÈטðzL€¼Î7x¥¿å-åk/ô×Á5€O”[Ë¿ixF¹}uëù!<ãŠ[Ï \¸ÂžQn9¿©—ûí-˨‡¿Þ-ÊW{½o‹?ï§×ûï\1!Ï^éM5þ“jSòñRo2¿Cü}dyÆÕ^ïóþV›å<¿Ÿ×›{ÉÇ_ÈÖK>^ñ-ïû/øÀ­¯ö‚×{Ÿý¥ŒÀëÇÖ >¶Ä½âw¨‹ñ'ÒvxÉçVÚµ×|¼à[niÍ>&vêbÔÙ;uÛm½êãÏdëE?ûCYyѧ½k/ú¼Ÿý¯¬½ês+3ûíÎË>êе—ý¬ž[yÙ‡Þ×ö²½±ãyn ^yÝŸyzÈÆ0ß¼Wþ¬Î¼æVÝ=/ý<xþÝxí_†wåµ?¯ï ò³wïÅsèÅ?×÷æ^üñº_¼øãŸfíÅ85^ù3?´àÏëZ¯ý þw8ª‡×þm.ߊÙ\Þ;òòÿ{í/¾ãqìW凤¸[yÛV¼çm¿xãùšÞö -ÅÛþ´õdIy×þ÷Þö õSŽd;ÿû{Þöy«Ãö¼ío}ëo}7m=ésV3c©óXFæÎ·~‘ŒS¡U¼í+¾õË7ÝùÖ/´v¾õ ­­oý•ßü}/ùø\2źâ%ƒ…¿ØK>ý³ï%ëKª<£øÍ/嬼ä¿Õ'>™;Ÿø7ö‰/ìv¿¾—|Ú¾ç%¿¤`qöîü懒ònüæ¿;/ùo󉿲O|Vì¶Ìîvƒ—3ÍKþÒ'þ\R+Åï-)sžp”~æÂÁOúQÞêñÃn±éŠ?Šß|¬ãâÿÎ'þ7é[›Ê3¬Ïs;ø[²µK²•Vt¥;h[]R|¶1z÷ÀnFÇi6ý(`·-ü­Œƒ¹øÃ—”Ûøñ/vpw~ü¿¼óãŸSÞ±ÿ¯Ì4ïÐ3ûe¯ë‡hÊ„}T°”¾‰wÁï‚;ïMßW8eñNñ5á”x§ùÎá”À5Zê{cxe¾qk^™á×Â+ñ6y%¼’úwxk¹n™ž1Ìù=ÞAvðË\¿«à—°Ä¦§¿PWÆ0×oÀ»Ø€w±o•ð£ï|“ú^ ß„>—Ôÿxàœ7…oxæ ¾™¿ïõðMêÿ½‡oæö\ß„þ|“ø!|z?ø&åïá›´çZø&ô~°ðMÊcûáÀ9¿-ø&ðEø•üøÎÉû_Îyߤ¿¯‡cæñ²ÀÏ_ÇÜÁ/‹z§è!Š À žÉAÙ q3x³2ÀóL_”1%¾UÅäøPÔ.hKîàžÄÿR¸çBüû÷޹…{WpÏ qàrÞ©®†Rþ!üó[ƒ{æú}ûpÏü=GÊ/Ä›Â=·ðN¾üª-ª…/ñ+àŸE®Ðjƒ·´MÈý· ™Þ†‹'wpМ-4dyÛœqb|N^ÊÝ-º…ƒËwèÏÅûÖö.Ê;x¨Ä¯ƒ‡Þþy÷$~Ü3¿õþó Á?{òððÏ!Ço ÿü‘Â=ñ¾²ƒ{’ܸá7÷ÌÊàÖÄâ%$žá„×ÃC‰ÂCK^ÍôvðРǼº!?{K] ÍóyDøîá£YC®çÛP>ðÌ8ë8½5ܸç÷ nz/Íñ›ÂKÿRxèÿ68¨»øóêùåÔ3§Üêù—Â8™ß ŒžãÄíw*‘”ÛÁ8)oƒq–gÞãÜ”·Êåž_ØÉ[Ž‘©B=i×÷êY š7‚z–úÜê¹ã¤Ç<`§wì䤺ì¬KJ¹öëB=¡õã€z~ÇÀÎr¾`g()óîÀ–w`KR¾ØòZy­,)?thå!R`’òùG| I™n†¤LO–«ÃSJÅÈqW5HK ÞRîû÷rbJølÿôó?9ú§§ÿþ¯Ÿ~öËç•m¶9¿ùøÙQJ<úäé³_þ•ßå|øo—rºKïüã‡Ïÿñè_>üä·O«æÒ+{vHüÕøåñ«øýÿ¾ªÎR·Æ>M‡ùÍë—ÇÓxÎc‚‘ó7ÇËI,ªúu!¿:úå§ÿú죟?Ý9¹²å[¾99?~qæjúb<«^ÄÞZŽæÓ?LãyøkÚøcϤï˜þâ0©â˜‰ÿ¹ô_þóé¿&ýצÿºô_Ÿþ‹8]MÿKo$Õf•Xâ*m,RZjI•v—*É!«¤|©ÒªJgº*-ØUHV.½•VëÊ¥7’пJKu•$U’KqiÎVIB[%®ºJ¦´UZ­«ÄRWiϪû_%¡M•í*ÍÅ*É<ª´>WI:SùR»¤ ¨ÒÎ[¥¥ºJªŸ*-ÑUZ ª´ìViÏ­šôVZs«„æ©çR¥·JÊçª)µK<`•–Ë*¹ä®ãV¥µ²Ò³Éít•´÷r†²éÀ!Ê›$¨ré¼È¢åšyéºÄ~Èeó6ÉèäZ›úY.ŒOú”J®ŠŠ\oSËõð¢U‘‹Þmò9,ÅI?'ç¦Õ ¿Rí©]jSr’}ÃzR;êúדÚQ×\O›Æƒ¨‚l¢²i<ˆúǦ-[Öo‘ÖËòéö•Jl ¥¸4ädjÓx°i<Ƚñ"’àmr÷»MgÑ Ù4ä¾w›Æ‚ì y§·ÒxËÛmrm»MãA.l·i<ÈUí6m¼¢F²i,Èuë6¹`]ŠK˜ ¹fݦS.XO{N%ûM8¹$=™AVr=ºMw°È)Úvét˜Ü‡.Å¥=Rn=OQ•Ü'#—ž‹]”\wžî:¯’J«’ÛÎmâØÓýæñ¿ôF r½¹—ƃ\rnÓxHלÇÿâ[rúvi<ÈÔ.¹|Ú¥± ×N»4äÂig¨\Îë•\-v¹2Ú¥ñ —E»4äšh—Æ­\øìÒX«ž] r¹³—ƃ\ñìÒxË]rM³KãA.hvi<$¡@ü/½‘Æ‚ˆ\ ®.µKãAnh1¹›9YˆÅÿÒ[i<¸4ä’f—Ö ¸4\ .×”Ú5M ãÖò7ád>^—ì´.=ÿü³gý柖íý¬ÝÒ¶ó¼`§Åúèüâìdzõºº^Ÿ_„3öiYØß?uÒ3Ü^Æv7ˆeW'î¥u9=«îPT¿¨Ì¤%e;¸¼yL6nF;ÈýK<ˆÕøéOÿðþº»Áënïõ㥺iþuÚò!ÿóXʲwÕL'}°=pq|ò&ìÒþ̯³pñæì¤º{àA,ò¿\~2=Åæƒ{Þÿ”éKýúÙo?::ºwtt|ò2~ÀøÀËó°Ëž^¿|sžþÝÛæK‡›rúÄ_Œç_\õQ/ήúx/ŸïÏv¹ÇÇóóÓ£ÿ_¾ÉÜÚ¥O+Óìúÿ럮dCz˜9 úði[žÚc ´ûOW{¹ÂC °£±.ûª{5*e׻ܷԨô:Üß{X]ó×]z'ð¯§ßgL’†ëß±—ß9yóêÚwl½ÿΗs’,\÷’½Dç$ü)}ûë^2ûï¼IÒŒëëvéñ|:>¾þ¿ÿΔ$1×÷Û¥>8OR—ëßößIãèŸÇí¿ó2I€®©ÝçE’ ]ÿN³ÿÎ>iU]ê·M’f]ÿŽûsYÉîe.6­cÿó•Ô(2µ)ç??”4]æÂ·S:Íä$)úy•yF™ðijPª˜ˆ¥' ¶'oŠ´RF¤etZ_R"­íbßÿÃã´þlÉ’ñï‘¿8«þOµJ}Pý¤úÿj÷ qòÂÔÿµvÀ‘v禥‡Îý!½ów¿7÷`øv§øÉ¥Zrý‡\ý½ô¯ˆ\þåégÏ?þôY\•ŽÌ‘Qxöáož¥^}þñÿó4‰´¶|ôé/Ÿ}öá³_?}~ôì·¿ÙÖÍ6÷þêÖÿñŸìãöÉ«ÓùÍËpþäôäøÅ›³7¯Æ'çgÓv…GÝcS~½9YN_ÎG±Ý§Ò0Æ´ÞW)ìÚFBãrÜئK2•®IH[W&t½û«Êܾ9·ÿ{÷¨³X•?ÅÉö"Nç+ž‹-Ë[ʑƘjþ@þž¼_}þÅñyµ¿ŒñxžæãÅí9N¢ÍWœŸwŸü(å>~ý~9;}•Ÿ©Nß\¼~s!Å=©êÇæq;z5žÌÒNö³êÉ'Ç›³ñì«'¿ ÿ^&¦á |ó??=}yþäÍùÙ“ÍñÉ“\棓*|ôyõhª]Tþ#¸?)õxô«‡ìCS=zV­Ç²’ô8—¹«Zl_lÀëÓóã‹XñóŸUþøwöQýwY™q¯ôd~íüôÍÙvÝú"œ„³‘n}5þ1QÊ…Þ<^Œ±_SQs|2½|ûìïãÂt|òâñ¿Ø¥½×Íp2=þ⽫5 ¶7Wêê+u õU:…öJBÓ¹«µ IÚ¨ëÞ…dãÉû~öëç¿}þô—;ýÔJÌqÿ’NIâùïþð69Æù§god ¥GE‘Ur¤­ZÑRduF%Z©îþ¿W–éƒtþ¯¼ˆ¹EèZÕ"-/ ‘mw{p‘ÝŠP³ª½ÂSJU‹CäÖUeÞ¢¨M–‰Û:›ëŸÛ’sEÕ"’û¤SI*#:–¬É¢õ]œ‡EÐ]9‘/‹X¼’+f«¬Û‘›­ˆÕóo…ðéOdÄ6×D„ãb+'%Ñÿˆîehs ³-ˆŠÄŠØ½ðyÂÿ=DJ] ½( DùЈúg¾­Š5UJjhDUÑ‹ _°j Î(å Ò{¢H}XyѵÃökV^Ô4>ÉÀ«^´Ju/_3k>¤u­ìÅ}L–äVC½yˆp»Œ<) #š$A4Y#­VúV ̪ÖfÅÐî[4¢óÒ:K‹:¡ÊRü\Ck¤'©'¿ã)%Ƚ‘y¤Ur+]üYé$ 0ù.™ºHæ…zê“]+QTˆÈ¾̉åIQ ˆ> ~Çf;Ú‡¬ÓØ›¢ˆu%(6òì°ù ŠN-k–¼hßDÝÇÞ¶é–R«‰VŸ5„RщgÅB%WÀƱ-_S4I‰±¢KGÕHŸôFÊ-›ÌИ.µêdä‹zG”øe<ˆ6D”0•ëEÕ'_܉†Éˆò0Ï\Q¸·9•l³·Fù¯´2DÕg¤½Ôs§³)¢”¾ªs˜U4UŸÛådDɨÈk¯`Œ÷Gu%F±qµ”zv~;þû.—–jØ·¢ƒÎs\Fš¸h*ˤŒ—{Ïïö‹AÌ¢ª,*oI饜ªs»~0Yù,냬Bµ(Æ›¼ÚËš ŠJ´ÞY1ž@éõ}Ù[ä^éèp${ìÑæ«‹p4^Ü—ØÃÊ=ø©õ×HÍ®~ÛÆ·¿öËæAÄ]’@ýÃW¿.ïŸ"ò}í8?…o¸Zœµ_ØÕ‚¬dµÿV„(I±Þ}â[ÈÝÛåÅuÒÆŒÚÈbw›·lzK‹Û¼åÒ[¢oë[ßr‡ü¥%_nc“ÚX_۟߇6ÔÜË×é~5ÿÞ’»Ü¥VAñí·ñRMÒÊÙׯ7õöŠrSZ0œ쥜¼” ‹9|EPÖ*¯Ä´~0Ê+‚ÁÏá+.½²"oƒ|ׯ^É a•á¦ä&Ç xH%åä“Ç!q­_»üB#4\¿~a‘¢xðŠ S2S|ØxA›8­‹cÎ`V]ö"ÒkÌ\²ü´Ê‰ÑÉé•©iSŽ”9“2Rúå¦$ÿéü±^~âµöFì|Ùåå0‘r²kÕù2ý¥Â)§Ö*Ýì t¾¨<ŽÅÈWz%v~$Ò®9–ØH±JX/>F¬œ­]o±‘b;¢p 6åԽ «Œ°^:Ù+#¼—5®WF¸ä´ëÍ'6SÖ8…Í]ä¯T`”S¯ìñ£ñ×ÓÒŠ7WÛ®—ÒìgÔyuŽWôÀ(,Óº±¢QXóù±b›³>€ŽbÙÜzm˜õê7ušâëH#§LmÃJ9õša;!Ò+¯¤‹1ªõÜ·ANÄùÜt@¤.–/‡DYH•©dd*ig™:ÍŒ^‘ 4Xi­j6vB¿S¸2±äi”ÆØ>õevÞ¶b¿Ó”UI69Ùw±‡,eXE–›)=³ÞHãâ[Ø)ûU#…Õíê+ÇÅ/6¬y±™ñz-.KÍ”ûZ2â¦Vl™¾Tœuëëòw6ëóOœ³Å nµ–§ È?lðrfSÎ?ÖË‘IÙÈ+ƒ"L3)G9Ë嚌¡‘²üz»L~}24.å4šð1Ýéáy%~Fj³^hÝ4ÈjÒ*›–Èæ’‡SÿPlSV‘ˆÖë*G†©˜~oS—™f}–û?gÖÀ‰ªÙ™FZÊr²^èc3…3^O“w?»^œb3…Wš™Øï5ùØL±6\73ö¿Œ eÌÈÅ6½²dÇ®‘EÓ+§yiL¯´³å¦ÆK7r\3yuš½"g2éõQÖ.AŒpÖǯÔL@­×“¸Ë)[Yiê49úõÔtâÅi ¼’™5£?™ð²Ê\lE[mÑȯ(ìTrÁ›NìõêÃôrü^w¿¸cŽßy-Ê)ã7S¾Lr}èׇFñ}›´ Êæ(9Š0V — (]ãewVNàÖËþ¨°òÊ ´Œ¼²^Nã9'ÈN¯ˆí¤0¿V€Ä¥Nèw뚉×ôFaŽý"¸)Mž"9½R›r”M0òób¬l5“V{-êÍë–²Ø`3ߨ|g)LNÈ+}£À’‹¤z½8¦~–us½8›FJ«×¬KÐñi¿O—ÞhÖ»D>î§Š8ÇŠb-5È«–2dbÇÈ÷W˜+…­Y€Ø1¢ƒÐÛ/"um=K{@§Hí)M‘u­œ)ZåàæÒ;ÍZ8§l’­ ÍAÀXëšY¹#¶Ê6­ƒÉ;\œÄþ]aÂÓЭW“øeD:»ÖåekÐV9²ù5s`ä0çV_ÜÛ^É‘¯²­pá­rpklv† ð`R˜².¤7EÏÇ…lsëOéä†çq¢¬YÖ(’Ö 9^Y™¬ä(ºE2úõæ`D•ˆì'¡…вÈ4R–"i¼¾WÎ .½Ó( Süþ¢±W´#”V¯¥fñL#•FŽKN½.]I”®Š„ÀÈ }-„-«¦¢S´’£iNs†"SY‘ƒh§mÙ~Ü œ)έ%c+œx«ˆ›]zG9=Æ.ÈgwEEbD@©ìAr|«lMVÅ*] ŠòÔ¤ëßÜê ÓÓŠ®ð¥hNSŸyá×߯¥—}ר Þ­7a7mRgzE@ç7"#[ï‚6HN·6Ʀ¯,iéñ^s(2£Ö«£ ’Ó ÊâœrüzÆVŠŠVtÄ>“CòZ‡†øY |òÒe&X‘¿Ö…™ì¯FCOäŒ5[×á^ÖaåÄß­EA&Ÿ\ÝZ€¸l²3œzÕÑâ¶î3—.tL¦ Ê$ùø” ¬Vu›d*¯%±&9宼r:M÷UÊrm&*Õ‘º¦¶—µÑD“ÌMÕˆè^QNË=Ù9×aÅjUáå…¼¢ŸÅŸ§ëËÈŒUqdˆœGYËüF”]ë…!Ž §jªî.w¼62DФM7âºlÍc¹Ñ(›Ï¬* æ4äFª€ëöOî¯jV"íH_¾³\õQwz…•”œNµÙ”Ó®yÌH>khÖ¬GZå•ENÜÝ'?mÊ*¿¹©"ñÁ(‚Ë 9&4ÊnôÖ:ql°‹•9W&¥—a ᄘ×)bãT/m]“=«jâ05œ²É˜<—Ö)7r˜U˜qÂ/8ì2ÉiǦœVÑC/YkÒmD^á–—”Ñ®dÐnêE¡àvÌX 7¤á­&N9ízÂÆ KÀ±k´Öœ¦412aµaù ‹¼"—æôë5Sî·ÉŽ6׿´Ž)Pg³É ¦†Íä‚"N{ÚÈø+k™ä´ë}Ɉ=œ[Ÿbâ„‘Ù¿þÈ&½¡œeº*@ï8ÆÅèz 4¥_O~#úïZ[•…TÖ S§iÑ)òÊøÁD™ ÈR3wIÅv_ë-fF\Ã[eŽräŒ3Vk¬ÊʉDf’‚pr‘´«•S¬ïEÌ·nÄ™!SYS§¯yE™SŸõʆыèg½dY¹\X.ŽXÓOè EÕ¶È+ë¥Ä†ìÅUÃÚ4"ûR™”‘Œ½€)éëq!Z.í#ÔýzS;¡Þi„A€™:ÍŒµ¾"ÑÔ„f1´ˆKY}‚äô 'cSŽ¢°‰‹ï(üêzSŒ5HÝe׊“ö >ÉMé ÙV3 je`* å 9­†(O9µ5Zä „íšËŒ'ÙHAÁç;9±9Åji” q]¿žË"Žj‡òA÷2Þ²:ÔiÐ@ؾ™ñzxXñÍ;Ga³RN­äÅ ÄÈ‚]¯õI£*»–»MsÆtmpêE "\x«¦:Ù3zÅ|K>¶Sлq{ÍÐ9ŸÏZJ­•eHA|Éi5”~Ê©•ÃÎ"¯lqí7ê'W÷8òlÒ-&I@  71GSdíò±ÑvâTZÚºWG§˜®p^øCÀ;KD³ëIûL-šùPÊ©¼ó"¯(ˆ÷¸à6IݽþÊi³Qà¾ñyñö½þþ±¿ £¶ÈÁÍ)ÌŽ“¯ìŒªÓn³µ«¹Ùh…o‘œÜœ²ÆóQÂïkÊ»´l¶¬¹Í®/”Ó¶ä´šù@Ê©×*¹42îÊé6M¯ØâÉGvFQ›ôŠøå0¿ŒÒËi¿éײìØútlÔtͲ;+-$§QlEûS+ˆ3±4pJó­L·åîþþ7X…q]O7Í"iÐ$p³ìé ®1HŽr:vò‰6aå¢G«ôŒ‘œævƒ\ñn}Ê(;†ar‚ ’£á]D2Y›ÛìAN>´Ó¦†IãÜ)JˆQ€ÀN± å@ízMƒ·…IšÓZRF³:ÖÆ0¥+¬û$VX#Äýú|>ŠÒÚu ¶Üx'½©g!MÕ'§ ErÇ­È'1°ŸÅâE3,—œn=¡³Ú)c#Ö@´3ʆn¤´rà½á¸n\Á÷Ûo†Ð@*rO€r|ZRF£ÜÃêvl Ü ?§"ºê”ùV íŒÞdÌRã˜Ñ+ÒÞ”®,Æ[µ)j£,éPÁ£ørÝš«Žgq9úzÎkØ*ª»&ß‹¢Y$HYŠÝ«‘»34©¦Ù,">W°hiKéqP²©–’iØ(Žò²¥) ‚°Åšã¹Æi€›&Ë/^§‘¡¾^P[aÛ5£m2f‹ºÙ(õzvÄy#s@ÓS‘’kúÞ ZB à/9b¯dSŽ×‹)#MµúÆ‘»G­¢‰‹ì´c¿Mïxí€ …­€bqsJ&tJUmk¡G^¶ƒ0¬, FËJašòFn—Qx-9´9Ų3ÎK+ ýÃá"ÄkÍè_Ešù¨Kï(J5#^ò™þ²ÉØŒf­lÞ°]›Ľ\4ך~|Ü¢Ô ’Ó)kŒEvØÞfR)MkÇÅ4¹ÕÚ":nTœÜ_­-G1…sʉ"Ž%Y}”ó¬¬X½ÂNQ´)ˆ“ïÐÒP²Á+(E#ÖsâGîPã6@§ÀÃâpM¸²É„qŠ©Œ´±">Ž=–8Ð5D:UkËbܨóãh­ºRc?‹V]sT#9Ýú?™tŒfu"tHaM²Ëi6\‚Á*çÆ«Ûsƒ& ïz„ ÷ÝjP‹Y4º ¢ÄÏ¢ÑUìô‚ätšõΔ]Ô*<^z§[[ï˜9‹¨•eW`£ çk$ÇÜFݱÈ-Ék³N{K¿n¼›&9ÿÖ·Y.l˜ä¬(lÊñ ¤y‘WÇ.±•Y?±zÂz·ëCI¬´ ñ5×É‰Í©ææ“ ñõÑ#Ö¹¿jCÎOáðä(î«ä:n§ØûÄ:‹Å­²]ùIÔãÚCr:w›༰…VAÕ˜TœŠ4–Sæõd®ÝGê´ôkl„›6r\U4ê~#ÇUE$§Ó Þm6¸Ô[ËãÿFý[/œÒšõpr·SðéFîÚ¶Vñ‘äÅEƒûjÍ㌔¥Xï­Â_ÉX©¨Á"¯¬ñc'Õê5 Ó †í {nOŠÔKd‰Šé€Mï´ë}$¶²àéW+¶ >M—¶‘­EÃÍ>f'­é5K­Øu®×¬øiDA¯à£dÂ8E©¿(èÆP.‘¬´Ó"¯h(Œt%s½æþ⛇š]qì™VµQŽFd%þ6 C|IÐI¢Ff­b"âä{§¸|2±®ØÏZ¹Œ:ö™¦ÙÈnª™V “¥tZzEßh²õâzÖ˜LE9ùIczͪL¾Š2hlÈ÷jþ“ZѯG ÖœâÈ«fM+}¥9<ÊiÊ8 žÁ)†­ñX”ÀÉ·&yÅçĨɍìQ¦X-jòB¿ Yó¸$9½²9Ø”£XˆÙE^1+~=²øYš®œ˜1^UŽ‹¼£¹â\äµÄ.ƒ™¢ŽŸRkžqìj±7]ïZ‘ÍðÆúd¹V±[QúÙÏb8¤ Æ%§SVô:ívbÙˆsÓ‘ÂÖÊÁÈÏHÍÖ:ÀEºÓ x0LR3EÒ×@QŽ)ðÕ%½¤ªSe{Zó:íšäÅé2M.!9‚ƒ·)ÇkŽZ‚èµ0ˆâh}Ê‹d„oV&‡M9^1ƒZäŤ ’ëÍXr:ÅÚ̦¯AÄC>Ì)Pì òŒµ<’‘Ó‘¦·L9^µÎH>\Ö|µA3ß Ù Sç‰0]S5HqšçM—Pº ¼‘ V®eLœNáÎoôeLvÅ®ÛɱÍ)g€±Kd”skäsæ‡\űZ³6iÍRSzů—¬±•]©U&†ÉT”%Ë Ü_éI“r4¡É$B "e)•qÁ”ea]Zd[“Ï夷¤WZl›Ò5ƒÞIÌÿ4³]¹m\íÇFµÀˆMOiŠz3½ ù–ç˜û(§øG4vRûcâQ–$M^“ºJkà˜Ô׫’2œ¿ÝØN›K¯œ<ÌF$˜ ÕÈÚßÞ”N:É­™˜Q|³9`Ǫ°ñŠ‹,“rÛãZöÈÑHQŠ™‘•™â¶êÅ›6&m/ëÞØ O¨~#ë++˜¦B“Y_“WêÃó²|âVó\•ö­×Š5&®”ÒÍÊyÙ K¨¸arrZsšÄFæŒSXl7urÆÖø Q^űXœV“Ö§œZ1Ž02Ÿ4‡¿uÚD4Äâ$ìH­ÁUdF)}‘‹ôjOӣ׋}v6± %ñ’ö9}¾Çk­,‰#iÍvÊ©¹èädç[‹ ŒO9ʈCCü-)þQ‚œ®]œœ—ÖúÈxÆÃp…[ˆ<¸/×Ý m4¦Lj)O±ªˆÇ,ѤkE1šÉƒ°N9ÍÙMò]£9ãLkKÿ¸rÊú¨aÔ…ºb!0Šï>×­ÙµEúÓ ëi³HºAQM4òù•ç ;÷r–SlÚœ•Ñ¡àBÒÜPÀ„q«éÕŽ+,:AMÊ!¬‚r„Éž“› »I»ùzfF*rQ‰b…jÒ+Ú©°òŠåÄ(<ŒS40ñw¥Lô±Þã1/ Y›T„¼lêŠ$îrúRÔFaÉ–öJ礜Z›ƒ)cXÙØi‚—Sú¹N›êŒ}1·v­ÊÒD¾P4Ö Ülçy+©eäϲj\á’ÆZQr.ã²Ç!]ʘÕ1kÄ? Ö-©s7#q±NmP¬†ã™ YG+»œ‘§k£¨ŒÌ%_“ÖLY(—H뺯yùÑå¯"›ùZ"Yq„¨ÈDW¢y& ˆ‘”ýÇ6âQLã4ki½æ²Ë§••ƒÄd›§;—A*¼zcìšìlS;Ý û£8ˆœº Ñ®!èÄžFqh$§Õ ÷>!¼É»Ì"Í7V“Þ°šº2 Y”7”^ÎqŠ‹à±ëD1Töò«ÇËåÚ òL¤™J ÂÂÉ™ÍÙëæ¥/:§u^é·:M^ò˜YLÔÞ©E¨¨ä“M`)9­¶5¥œº¬7lMš~ ˆgA¨"{ù¢ j¼N³C;74R˜¢iM+\é¦;jmdR@N\«+Š{Y¸ýB˜ZݦwÒ’:hFtµ¬ê8°ª#áÈof}£2DeîÔF9öÆnŠ+"‡FÊSnØŠ\‚¬!ë•b-ˆS,²ã *×/iǾZøGMI!¬µæMÚÛYP«ºEþ1}¼a­BíÙH{´‰2Jÿ(&“.½¤NviÚíX9¹5E‘lf]¨†,ŽK¹M-ÕMàhŠ'…˜%¢EEºÕHyŠÓÄT»Aj§û´’iÞ}ÊQð:‘J‹ö qÞéKwÊTYRYVññ‡ˆ¿4£$9E*À3#rÂa½þ/Ò£nho'eOy+ó¤œsoVžñF®è´·YbkY©JÊÖËÅ"êõ #SeÍ¡D:·+7YÍeߨçfÏ#ýš³H§Æ¶<‹ °A3öH+–SœîäµLñEcÄ‹r‰GÜRO«œÝœ§Ü èsLzÇj۽찆ÈĆJikè¾›¬Ì,;! ÙV>}ÓMß­×ÔºVæ–fÚåÒš—2›Ê`³rVt ©,«˜ÏÅš¥¾é5’VÖòæ6Ó'ÖM¦½bF-‹˜Æ>ØayX)v‘!^T†8ÖLæ¼" ðrâSïÄ•ØMs;g ’¦ÒIdÔ©»Èªl¦ÂªooŒ¸iŸÉ¤VÄþ²‚)»©›Œ\ ª;dù²Ê±ŸÓáNuÊ!¥Ÿ¥,ÅD#Ò—ƒ‡bT!k—U 1öR@¯‘~ýPÃ/Dú274ª7Â3¬•Ô±j¢­P%Y¸®È cÕ3±– Ī¥o¼¾Ì(VM†àZ†éËBA|ËÒ¥8ý‹¯ˆ4BÃO¤Íɹ“ÈO,³ˆ)Ý©Ü4/iúi¥”‘mEßHŠ"Ånf‘UD;ó¦¯Q+×Õ-ò™Ö4ÜÔ¦Z™Û¬=¦‘ÂLs å’]Zñ“¦8}­Óv¢¹ÊÎwHh6õArZMt›sÑ™phŠYy,L€•šF9åÔš– M3\…¢nD±¡,$âÛ{ÁÝM;M SlES£ùë—Ù¥1(¶^f«†‡-ߦoT·8‹dÓPE¨©8íú¯:m4]í¢}ýJ.«’¦:—õÊšëô7‘x¹féÍW„÷TƒqÙ"›Û|ˆØ©é¶ÃëMrÞ]ÛŒhœ·À­ï¬¸*í®·VøFêñíôt/··Y5â;Cê•oz@|˽rGîŽÜ¹;rwäîÈÝ‘»#wGîŽÜ¹;rwäîÈÝ‘»#wGîŽÜ¹;r?lr{ô6¢+ÔÀ¾Ùßor—¾J†ÅÜBõ_‰ibå,‰þ e/Õ}Sýüç•y ©ÿÍ Ç'ÕÃWÕÏ«/Æó/îÿd:ÃJqé­”û÷?¯~óá¿ýã‡Ïÿñè_>üä·OðÀ® ô÷éÉñ‹bÿ|šŠ}‘ÊŠÿéôl~y|~ñ»XÒ§Ämù…F~òçù•{™Uu.ÞœT?¹TÊÛGhã½íƒæƒ{¾wïÞ_}WÿñŸìãöÉ«ÓùÍËpþä4vÉ›³7¯Æ'çã«×/ÓÇ/Ž/Ž_œœž…¯OÃÓz_¥°k Ëqù³µœ&©”m]%·“¾ù«Ê¼»f^ý÷æüb<‹UùÓËñäÅ¿ÚÏÅÇ–å-åä¦TÛðò÷d:;yyïI8ICùÞ“4d§ñõ½''ã«p~ïÉëÓóã/ï=9?Nƒ!†ÿŸ=ÿêäbŒ‰oÎÃÙÑë³Ó×áìâ«{O6o^-éá—§/ÞÿîôÝß­þ®›ÿ|ÕÇÓ_@ãšùߺ˜xyþÛ¶­ïæÿ·ñ÷äý{ÕûÕö+ÇÈ“{s|2½|·¸¿?¿˜Oñ‹]Ò{Ûòø‹÷îÝ‹½rq<åt<¿:}9þÕëP}ô«¸“~úìã_?}öÑÑG>zô«O?ùåÑo>~öÁö¥¸éÞ;ãÙôÅý³ð"|ytñ~Ü_<¬ÞœœÇ-'ÌÕôÅxö~u~q¶J 'óƒ{i/O;÷YÚ_/=P½Ÿ¾êÅÃêý³øUCÊOUü,¼8>=‰‰ʶžÆÊ¦våØÑIøÓýÌUH117Ö!"¥Åh$/ÑòÞ®suã+ê /=„ÒCé•£Oÿùó?}vôìÓgO|¿sVý"ñ;°(©aÇpËë³]îÇÏÎbéï½/¦/ªñ¢úÛ¹ªîÿíùƒßŸ¼)<¼ÄŠ”îöáožÞ—j¾G²ÒŸ¼H•}ðàAfMⸯîÇÖ˜ªãêï©ë£_œ¼y•úä<¦þô§¶ÌÓª>;ÿ,Vc~ô·s®ÉñÃm›ðâwÇØÅcÏÄ8t#”þ…—ç>øy7q¨<ÿ͇Ÿô…êŠfîój_n»àëµ[ƒÿ®žÄ¡uv{#NƒT† ¦óßåE–òégŸ}úÙÑož>þᯟ}òô¼/o¥ôèâô(Žƒûç±Ý¥‹ë/Eý¬úÛsé±ó«Ûû¾·ø p—lnß½êÒø^ÎB¸_Æ£M¶?KiÕyx™t“#ÓéÉE8¹8¯¾ü*vˆ}‰mÝ›ÈáË0Íáå›/Ãý4ÕžR«êõxqÎNR5V—rbIêåŸøôõE¬™¬#§ò3vcžö#¥m㱌·¯e¦î-0e5øèôÕëã—áã“å´šŽKêÓô%-ÇÿSòo?bÐŽ³ä>)J}öžŠ5’†ì?%«GùÇ'‘£_ÿ¿áþOJT6/7Óñã4åN—£ð2¼’ÎÿyÕ|söz2¦îÅÈ« ã¡Ê+Ö^^æÙ*j&Ãùù¿?û<Žè_>ýÕ‡¿ýäsžËý]ž£÷É›â´Äþhy9¾Hùý*¯¡eŒëf?‘µ°|®KŸx÷Wzô§òz¬mš4G›¯.bëã*üæåËû—†‘W•÷“).÷å´ƒ%lŸ+üø×ñƒ?M\óáSïÝÿ¿ÿþ翯Mó{gíƒ1~›÷~_[÷{×ù“ñ½¤VþþÍ'ãé?•üt›éÏ'cª&õ¼º‚{Li,øþïïÄÿìƒDf,Å'~ëñmŠûÕÇÏ~yôɧÏ~ýôùçÛö¼7¾ŸK­Æü/ÿ7VPÉ ®ul­ýOÿ]š~D×ÿ?úÍøÇðÉñùÅùã‹//¾kÎÿÖº•ü¯µwò¿oåïÞô*~à£WqS|%‡½ÿ|s|æûÿòô³çqöVîqÿàÞë³ÓÿÓÅýíè8Ê££úèÁ½{ã<¥…àÍŸyî'yb•þ{<=¸Kúòøäñ¿ÍÙxvÎó#©¬õÛYYåàêxL/fExu)åA½‘€VòÿÕEä‡ôDvZÉÿWÒ ÈR×*WÁcW”ñŸ/«øï-oÿçUß‚3CÞR@~Œ2¾ëñ|÷w»¿ëÖÿ<“ÿ2×É;ëå¿¶»“ÿ~+Yþ›¿r•.RæImªêŸÿÓéùøÇÓ˜Ÿùë¿þëêßOßTç_œ¾y9Ç:­ÕoŸ?=úè³gŸ}øü蓟==úüég¿ùøÙ‡ŸúÙãôJz3ý{ËsIδ¿¨.ÂùEwšgã«Ç×Ê¡cR<³¼¸l: NDJ˜Ä›Ûäÿ:=ž#Syþæå…œNNÊ£ËÙé«üëâ4žÞÒñ-E—¯ãæ£]þ6éâ41ÖbÑzþYùܓݡ.½ždœ—Ê«~ò“HíRr,ó*Áçó7ÓÎÓÑì@z©?þ«ØôŸm ÞÊiÒøK‚Û|Z=hë^Ò=§Eé.=ûÓŸæŠ\%|¹í×iÿø~w‘‡;ѾDïݼ“o$ðx[ ƒ¦@¢P½¿•n¼_äŠ$b¯uˆâ`%… ±×Éöd ñxоºD" öX[ùÁ哨‡Ï?úøã¤á=MDT[QÄA¿Ù÷¯Ì©þ窫U¬>i†ìkK̶$ůž’—×€·ëPö f,ÎMËýhF¾1•ÆZèt•pt¹ñŠ–×*ÊùRzüÒÃeá“ð( ÿ|;qÖ—÷«øæ{±ŠDå÷gÒ]ü™øËHcâ“.>ùx›§æýŸ·•²¥×$¹ÔïOþöÞ¼?ªãJþ;ý)ndÕ R«w …e„$@FHŠ$¼Ñ¸s»ûJº¦Õ­é$ïw_å™$x‚± `60›Hf’Ìd6OœÕËLæÁ™<Ï›w&¿÷œSË­»uK 0vÔ?Pß¾UuêÔ©ª³UÕ)ž™rNɬ€¶–93<§NÉ”SwäLŠœÝóÙUÕÞ9'eÖ¶IGV»µs‹'§nçRh)žcµž¯ó¬®Ú²ESaŒòۦˬð¨#L˜WüÁ¨ÀÍîœ6a’ a0’‘;'ý'È)µiÿœ/Ñ HÔÒ"g†5âG#üHˆÁ‚ÚtçG”ó¼ç@¨¼¬ {K?&:¡-ï¨*®V…½õì±¼~Þ¦cTaà©6ýÙczžÀ2âIÀ N–•ºë˜M•¦($xÿË«1$§" Â+@…rc?†wlÓŸˆùH÷©0ÆÉñÉ-Fkä¯crÔîDјŠhwó,cö,ÕèªÚž‰PuËýuOnn Ç ½š¶`(ßü ¸¢ÖP†æíq-piÌôÿíöî Ìèû$ ËgF?l šÞÚôiÌ,“ZZ.DghçE}Ƭ9ÍŸ&lµ]œâ­ìá‰{³¹ýŸH¦âÝnû?µaÿ?™³ÿE/?äö¯\;¹Vo…lìäzêwr­~_5ÿ3Ù¢9?kß âð•Ý¢}qÛBjKò3@Û˜êyVÏÉoa´ÂÙµ0…5?ø˜S»"7vEnìŠü*ìŠ\‹;NN4ÀC£ZOOzKgœu¤€p¦àœ‡€Üƒ€ðQ-6÷]Çæñ®òØü”ñ¾Aø£¿ ü vÅñoãÃ@4à,Àöl¶þÁ?›Ûmpœh>{¹&žšðÙF‹Dm¯‚5>wtYÕ§õ²~¼ð,ó$b´­Ðiypîù±5ÃN¥v¦ìþ±xï—ÚQG5è; SëË÷7‡™ÃÎ̵‚¨Ð; Y°b_?¨hmbBÓÚä |4Ø8Ö™KÙ |Ð- #Ò6·`àÅg¢¦¤¬ª-­jCÄýërá±.µe³}ÙìsǶÕjëD±záàf„˜Ïçõ>½¿µƒ(ùP€[ÃM=&¸éÇ7ó˜àv?&¸= î–Ç×+àV¬ê¡?®©\s#Þbr¸Ví;4÷rtË ZÌ’×°wt¨'7î»é[—”ÐõB¡Ð”(Ä'_ô“ߤoÞQX#¬½ëƒRÿˆ/˜µ`³sh7.‡­›GðŠ¢N’ÁOL<²Þ ‚pøú‚Í#ÌZ­ÀÔ3xÎOLàW¡¸® ØÆ:Ç©ªu¦YC¨¦G=ð?Ñ¡î«Q=Ä3¹žZð(òÉÙ–Åbyü£;ÿäüÿ¨h?*š~(êW¦$Ü£`ú¤ô-;¿ºÂ«n¤g@®yÜ båŒ1šžü8BœÓuÅ­õY%íœt[ü’‰u¥ø¯Ðp]q]_ZŠÿn\›àÝœ;x=â€üÓ+'j ÿ”ñOÿÌÊÔƒòÏf@ Ÿ?‰l<“_ÉÆâ‰l¬»›gøwZm¹bó1=YÄÕ/‘EëÕÌšV®Ô5½TnÌ2‡Èi(93,§Ìõˆ„Éfño±Uc“ø'žMbÛ Åôä¿“‰ÕuÔîñžX²•ÕîÓ³Ùb„T¨z_ºOÇÕÿ'Ä¢8q¾†þ¥lvÌv/¡¯éUù+ìp=mŽ<ÛÆ ec™X6ŽÄ€ïD*ÆÇùw‚½OdØ÷¹\s1¸6±åsB0‹ƒöxh9ñ`Y{J°|ÕF' |wÒ I2@x?«L2Yðii€«»Ý)“%œ¦“«À¹H_¶˜Á¶ïƒy|à Æâñ)rŠ˜û[õ©‹ì`<Ç¥·Â_ò¡³¢y£iÑ„,ÊkJº³³ÕŽG¤*KiJI‡{ÀáˆGž$b%q¨œ.*Sf™m±Û?25*+¶“ûÇ÷MìÉõ½28>¤n¦ÇÒ]K·ž%_€UóUâo9¼‡Lf‰ÇRÙD&ο¿À©6„LÏE‰çßëiÌ=ŽþØtøâÏwzµèþ}C#Q¬ÖËE¿êŸedVû?å!êG¨#Öüüg:™‰{âÿmìÿ|2¶ÿSö2?ì Ï0' mÞWª ZxÇ_F£ÑˆÆÅ:ŸÎ •qAA/•òzá-³OW+9v0«øt7bâCÉ8l”Ø#JÜ­C‹ñöJ¼)7~ëu¹Ñar¼ƒ $ÞÙ׿7×7™Û54>1qí@pìd²É,2_Êwo±$|€h ¶·’ïzhÔ áv­w àÆÆšZn·ä §F³] Á›Œùð*ö×l6ÁM=´ýwmâ§üŸôËУŸ„ô#ÍD²–~wÄx –³y£ªU¦Ä„­”"Aa$¥tÜ8%ÒÙÖÒo¬ Ÿý¦ UCþðs²ˆ¨(ôe=º¹ÖÝÛlßöS° ;ð̈Tú‰T¢ÇêUÿè‡jÍÞJÜ‚cm5s|l´ƨ#1çNí‡ß+î=ÿ7}Q§Onš“»#Ëg PæÚ{2ãê†Ì¶p8‰À¿¶oxòr†'Z¨e²Ùé­sÛA?€¿ÙlÖà!9;ŽokÖË2E6÷mþ¨$47h0˜Ù¿`|Nüwüå<üÏf‹›#‘Íõ$=õÄâ‰dpIwшë«È±‰·Ö˜¤5î ð‘CÌsàÞú*ÊÏ‚Ÿ•)ù"Òåzq v±Wòì@šdÛ¦´Ñ`s½2·cr/ü|ûn5·G#P,w®2—à%ÄŒ—§\9"Ú1 Øjxž¾ñ½À;ÆÀÞÌ횘Y5#q÷f\Jyx"8ßp¤'dzÂ7=)Ó“2=°­óÏÓÂkþieÿaø·)t~}ö¡ëhaÿÅÓ÷ù¿D<Û°ÿžÄç™rÅ,×ê¹±ñÑÝã}û&H©¢àj": qÆâ”‰ˆdTŒí§ë#B%3ŸÃ¡¥£Ñ®ZµÐoðE´¤‡†úå>ù"¡Pß¾ÜðÀ®á¾Ý˜Ô9ülx® #m>‚E1µlŒ%Cêƒ φ¹=Y4«erpbrÍ8;.®±ïC¡ÂŒQ8ôЄÊ`ä&F÷÷RSåYKW¦mSÌpªË.i<]ˆêw¤ðs!†“Z•ˆ<•"”„1áBœ‡«Ex´·£= ŽŽ÷·Tj}Û”ËBŒ‰@WáÀ…p;|ïzõkφ%舸¼ÄùRÜdâ|Ë®5q¾cwœ8ßñ O\/ÿªä~îBq¾tÞ‹âL ø¢§½ü´âÿ|Ø=R-ø²;™qûÿ’© ÿßù0ÿïe­³Ô*Ú³2ÅœQ”¦ 3nÝ]ÜvýT« ý“:4Ï+Ôê¤Û‡Âñšè‹ Ÿà&Mþ®É|ÎSé~ÃmºŒFõëbÆ‚¿× íû-dã1½ÜF¿˜ÃÜŸF6Ž`¼ sJºÂ°`ƒ"Qà5÷³0·#‹¤÷p+Æ… Ð6¬g‡Ö¶©MëÕÚ£IüE ý ¥Ž O—ƒòr‡„ðS©‰é²Ë#A/jÒ<—&-Û÷ÒK¦°Yn8šö¨Õ“ðNúš„.‹pëT¥²]߯àÖ¼^Ýž§'|WØägJ£ŸK ëz>…ÂkGn„¤[Gw,ñÓ _,%~eü£Í}¢¯¨D8¥¡fˆ6Wóñ*ÌmÃaè0 >ÃÚZþ·Òÿ¸qñH:F ý/•†ný¯;³¡ÿ=‰Óÿ„ ¹ªð?,3*rõ…9£Ú†S3Aç¸çM›oH "ô;4Shg` NHÄb¹ˆ'¦“«ksô)¥L£Šã3 ß$N×¹½jäʵFX+º"©xÃ'åP ôÒÓø $WPÍiba±Q“rž#«“3˜3ˆsH–çS½7ÞoßÐp¯Öõµ.­ý/jí\ÒWÈ‹VAƒG÷¶áQxA©ÁnЍd]ÍB©•b™‹w y0ZÍÕ*®†Ú"ÜУØ÷M8P…¾èTý„À&¹Œ×ƒÝ26:1ô’KÕa˜;L½Qª §FXÕ€Æ÷ï|9ÂäŸ~ùª¾94ÑÑ}ü@¡sêàŽg5¶oØc»P™ãêšç@ â5øÒäàÈÀà€=¢ýîscäbì>—"éQ{‹m’HDAm§^ž1>¨…UìÅúÚœQ0§L£]=ÉÖB±ØSG&Þ”"kÆã Ö¦|6‹ud³Ç³Ù0Ñ,›<ûå%Z>ƒk8D¹âHf/á\æ3T¬’©”Ïlu­bÔE¾r35©éÛø|ôašªc"mðEŒ ùÔ5<[ÎË­‰”îçÖCë~z>­ôÿZA/?æû?’é”Çÿ߸ÿùÉ|˜þÏzy5¾ÝbÉ̯6"(unë,wE^u  38p#§2¹+:ÚôYzWÊž­•,“ÿÞ¬5íÌòÀ|¸}YžP½n*­GÔÔ‡‹Šj{†8ª_(ÈÔ¡9º¶CÙ?<ÜÚ=ÄHX¯Ôõv»ãOéšÇç–!½¼†ãé¹yàK| kŽ~219•JµmŠ7zua7WëÞf *OMLNϨý‚omõpe«Õªïl]‹¾úÛJ¹{ã}íÖ7g³5v»¨ÆïÅ`-mbB8…¢²æ5}94–úßBò(u´Ðÿ>÷¿¥‰ ýïI|¸þ'6 ­Ãêþ—x-WG7EòÇ`ÀoXºuɯ¶×á#ƒ}òk¸_®5Ü/÷Úë—îlÊ—m÷‹6Öw­×ïÓRþÿÕ#_ÿÚrý7™qßÿ%ãòÿI|¸ü§ÝÀOXø+ú•³Jßf¿ØÞ§KAÈfs‘…O.÷úë«ÙÚ•Óóö/››£2_¤zà=ÝÃx|ø9IõõOî…¾ñ¡¾ÃƒÀ<'ûrý{úÆûú'Ç'‚Î y¡Å|³æý°Y©®"+7Ç}päòq¨Crù@Ÿ5êz‹· lLnp¢¿ol°ƒmèì0V¡%lŒ•þàúF^Æox¹‡79´OÆRaÉÐÐ]»û'‡^Pzå!€¿28>š±8Š7—=¶Z:ÊÞÑñÇY §»‡`žnø‹öõÑ“¹`õ겊ü†–¼¡%ohÉ_*-ù«ûi©ÿóó`RGËõߌgÿg:“ÞÐÿŸÄ‡ëÿâÔßúšrËieôî[­¿ò¿ŽëXñl6ÔŠ µâ«©V<ênã/ziÀ^ã[LJåMIsG_0§ÍúqŒŽ,玾ª¼~UyÏÛ8€üôLRokRÙó}/ô5­ oÐzî¹|çôAºccÚÿv ­obhÂËZÏp£5ŒÇÍÚôŽb±ðª‡>¨…ŽMvtŸ9œÍïèÕ ¯7L­V‹d³/f³Gžm[OXÁ:èS‚¤•þç:îÿPu´ôÿv»×“ñt÷†þ÷$>LÿsuXW50ôT.;]C3z¹¨j€À˜á¡ßO&¦î@¹aŸî$tjBàÅæ“±nŠ;q³yŸ#1Õ!¿1qÈ‘ØÝ!¿1q¿#Qïߘ8èH,òÄ"ßàίڕÝÇBÝ‹–˘÷GÓÇ#,&¾' /ÒCÒvu­¦xN…NÑ÷EŠ&SÚÄ^ý6 P h-†vémŽ;4œíÙd*™MÄâ,²²|N)ÏÝöswByNëkuÌã֠ǰlß(›¤ ±ø×9Ç´ ·yúƒ"¢ÃÇ;zu›¯àÙÅCn{êðª|O‹š÷6;(;ÀZîuX%ƽZ­Q(µZôñQ¸•¡fã²a²m˜l_I“mÃÜü¨ÿϦº¢Gfôºqب>b-ôÒ—ú¬;¹qþÿ‰|û¿X)tõ ­GÍû?•N$“ÎþwwÇ7öÿ>‘Ϩèp :[Ó^0ª5ð™h<Ó4P3]±ž®D"¤Š¡·= $WÝz°Ÿ.M?@¡fÇÀP€Ê—”C²¸V2óU½ºÅ×x1ÌŒ~ØÐê D¦™¸´0W2 f½Ä²l²ëGðüsј«`_EJk³1‹âžãNtz¥×G¯Võ4ðdæ,â3úV§ãV”(€H8‘·AØF¢LŒ:I䕟܂„n¥•“*ËÓ¡á½ Ø‚ÝFKíYPuP™¸ Žt›Òê3Ðè©F¹€("sÔ]¤ŠAW±Rn¯3*R} Ôax4¤Ê,H…°Ë"H¬ŒœåJuV/qqÚë‹—ªßt}ÆK|ÞN›fôñÙ¦Œj4¤~@ÎÿUìBSѸêÕ‚u˜u› «³vV9E¥dMxy @–*Í AØâ’$(¨Wka¶;I/Ezzï€"iÈFs´÷·Ñ« ñxš0/¯]ðƒ*¤nŸ€nÇö‡fÔ úœÁ(ʳŠ~wgñtVÏè&ÇÙ:O ‡ð%µ+¼‰0ç*?G<Ç»5âÓ~Ð.ò«"f¬€úÚš0`Ä"‡1jÀàÅœz=šÑz½R}|M““»[x©ø¡NG C{ÉÓç-‹p¨ŽO߃Nw…eík´dY}62Û¬/p¾³¨ NÎ(f2‚D™õ)ºkhd 7<:²{pb’2ËE­TAWiÕTndt27¸olòeJ6§a¬š1;'°õë‹ÁÝ}“ƒ C¼Pû7¨3ŽÌ˜@g,l~Ѧ…R#ôÇξ‰¡þŸÆ¢#.°yÞäFv;_âҘߙ”ôwîcæ.†Ë+òø¬<ì1êSÞY” Y*ªCß”+þpPù‰œÄ¶4Zs‚¸Ö,Ň~ùæ³osÅ4ø¥á¯ÎxóÌ GæDóÌIGædóÌ)GæTóÌiGætóÌGæLóÌÝŽÌÝÍ3÷82÷4ϼőyK‹N‰9:%Ö"wÜ‘»EÆ“ŽÜ-ú%žränÑ1ñ´#w‹ž‰g¹ý»†üüò¿-n8´óÅ3;›dvdÌJ7ˆÛY“‰`¨t·š5êàþþÜóc¢Mð«óù±ÀŒ“/ª'_ ̸w\͸w<0cÿˆš±Ä7ãÄóC6Ý'fÌ©z^ùæÝ;:Ô““µã¯NÿÚûÇâ‰t\dd¿|3îÚ¶kßiNû%~é5ÏÆ Ʀ€^^pèh¤¼õº.u¶èBf®õWÍp­q_¯v#‚ÈQYSªÀ=e„æøÌ•tP÷ë Ò}²+’ŽgwF ,"C9É"J-ŸRƒûúúˆ Îê…šOÎÝãƒcŽŒ ¨Œ9¿Œ#ûs・_’á S$}r£¬u‚}^?¬ká‰FY{ ž¢ºYŠRéˆ_«A~;‹ÕR@Fô®Œ ‘*B×§†tÂoä|2ò•(%£ˆ2ÆH‘PH ßô-â3•cZ-‡q·´,ze>tGp{@ΊÕì¶ó÷ƒµG>ŠÃz©z~MKV‹^÷„סB†¶ËËqó6§—J•‚+àŽ¯mæÔ(¿vYOüÊÐE$@j4:ÃÐàw¸ŠZwBò›×Ѽu¶¹ŸÙc¬Õ³ÃCˆÖT˜t;ÃÎèC ï¦Ã³µ.æ­Â¦ÝÈ|ömÁTü[û–Í3¶êg²5ÌÊTÎ(Ô¼^ÕÉß‘7É„* jç'b¯–ŽH86êÜhp¶Ï×€eë@]L•#Í^¬¦¨*(é³:i)Š;ÜR±T;·¼R:7UÒqؘ‘•JÈB óhy³®a>âyÁ|8ÀlŸÅ‚¦Lž+¬U&Œs¶1œŸËŠ^ÿü-?ᤓi…á+]±6ž¯=*Û×´ƘÕ;t°‡ó8­8_@¾x„ùÉ¡$zÁ¡QðJô%[]æ=áä|ó½mM„ì¡ËDz}ºPùé‰4zñ*º¶(ØÅx¨Ãƒ];Šü ¢T%uxbÅ’¹”‰Ô£»p}Ö˜ÅËi9ä»Ç1èÃ]y<5åò•âÂCT§…ç Æ\I¹²ûØâȪRÌÞY¤Ð~ÇÚ|âʃ;Qüæ#ß©boF´úª ÜáMû78 Dg ŸB|cÌ,Tô0AòÕOš1—†m¯3é7sY ›Q# ÃGë¤í:´O†Êãª4PI%ö›há­˜)P"ª4'É€{íaÈÛCÂÎàøÊ9wö#6¨ Âà¢&%ÒŒîv‰UÕƒ;„Ñãð‚Z˜U¶uƒkM¬_¶²J"¢$CT‹†ÙÖ&¿’ÛX"dﱞóU“™kŽu ƒÆÖ0â¢ÂÀ"¤p y&šlK1Æ)œÎìÉ£ÒáhÍz/ÕÄÕ>Z&„l \^6œ4Iw’ngÀA@ÜÆHq¾153.ÁªƒrÛ™Ðòª úà Ba¶gߨk²S¦GëzΔ¯mï£^óÎᇙ¼L»ƒÁ¨NSJò¦Ú5Oõ:Ço¦k:A×eÔg~Ô¯÷ _ß1ßjÈ×i´{Ÿ¸²«öq¶ê!ï-Ѝ„79BÅFðíppHDû7â…Áb‹â9 Œò€ª3Kd`+c«˜U¶#3ãÀÁiBŠ¥­]Û{BÔ$øÝv®LQX i{†¿¾í š‰ë3½Òͦù*Õîíõ£€Ë9ÄD•Ú£Ð*iÈá>§×Pä;~0+ ou8º· ãXñøXÿ;TPu›©ßðÆqKj*ê—Í4S1¶<]+¬JÞ+ì u¯„Û«ˆ÷ÒO$7îje?ÔZ̲àùFÝè%ú7ïøv4§^qjSÕÊ,#äT¶ÏN7¥N¦œ_+*³0"*jÁïý‘Â…X"3!i£g%0Bi’Ë¡Æoz”÷AWª5cÛMoÅtsOï/Ȥ£L9¼—ƒ˜¿üÂOÆ1±HÀ*ÐT!×u­‘7æç˜_MÎíðŽ­˜k{7¬ùÑOá¹TcI*t÷'lÌGµ.<P#â»KÓ¶mÛ¤%5/'UL–ÎxS×7‡xª}Ý)óÇ ºöð\gþ”¤ª- UºFý€÷ªÏÇ4¼§âšŽ‚B¥ í«”É}ìXtXQã(káì!Öõ±ñHW fq«ÂîkÞõʸ©§SSÐ%æa£ƒûa¦‰‡×êà…&)A•|]Ç1ç7Ä\tÍÆAð0XÕ(°Ù?“˜]\Î2¥_•Hr ¸¯C´{>°?™nÅ7¤)CÁ90˜¦…s¾C€íÒ´ÄG¹…{³Ž{æ [œÓÎQìLüf×ûtDÌ«G!„öšCejÖEÞ’{ô<:†‹wÐFB÷5¹[ÝÜg;¼SÇ à†Óu»eh"I¾áL4§¨2­X1Ø:‹8_ÒcG,RûkõÊÜÛ¦“Ô˜Ú£ÙÍ'š"07ð^êôš)×uÿ¨äÎfYÝà‹샱hâ-϶[¼Æ<«|N¾à¨uf´ÀëÕ÷•PÓäŠ~¨-ÓêiΆ<ã6*”"|Ožo‰~½f쪔ŠÌ%\îi¿‚êê›]¯}Y·U}$èj|¡þôñé^¾ýjµ=̳söãîáõÁ%7¢R5׌+·8ClO?˜`ƒªë)K C™ÈõMîëß+·³íš˜ 2åfíãsÖ"b…ÝéλøšØfZÉ1GÈN‚º>fá&uÜ1ºÕýM 7᪕ ªõE×v¸ÀŽ€ˆ\“ö‚îí/KÊ*ì ÌT<ñçwâAH%Å4Fyä*þðGÇ¥¾`]Z÷õ~CŠL\ø8þsñã3“¼*§- M‰ÒZè8DŪ¤“ÝBf“š„•2$¼[6\áT*¾¦Éñ¾Ç'a¸ïìëß Ã7·kh|bRµÍj­ÎÅ„ ´]SÅ‚ ´``Ã}Ë[ÎUTÕ ØÎÑÉ=½Ú*1[†‰R úQ¯k%½V·ëÓ ¸¡’«æ­D¬ÄP•°.(]Q'Àâ—lüæQªÓaTð¡d6JÍ7~œ ’ãCÀj¨;Kž11°ÙÚ‚EîÌÜå#2£ï0(+¡ÞK'سF+9‹}Sw>"ÿ´Òk.…c׃Ó†¤È2|z†˜s¹:ý ÊœÑ-Ò*¤2ëZp7³–ÓÉÖ”j¬˜s_´FeÌ:[ fé8¹ÅïØêÅ mÖ’V{¾éÜ7­³s»¬ƒ°5!ù謜g—ÎI¾BÊVQÍèÈð˹‘¾}ƒž©œš^ wíòE‘ãKñ :ˆÛ­ØGxùÊιªq˜ýæÈ!ïÝ3å³øêz§v!‚3+š² áÚO<ýÄ7 x7 p¿,-@ Ÿ3ƒB¬ŒŸþãžÅ2äÎØ€ö–Œ©zN/¾Ö¨Õ›5{uü–}ÖF!D “!E%"¯Û„øâiU5§gÖ›Xk¤¡ð4’Kð:~‰Üh5w¼ë>_@ì"°VÐŒÓ6D[kBï[Ý|vÞ<öp"ˆ¦uù^óë»Sž9tš >+6 ­r—¶ÃEŽû <„ï^}çôߢÄ|öEÐÄ>'ÇY;‡ëÞf†€™Œ½% 6­Fá¤UË’‰‡-*o .ï^ŠôTÎ\ýì>ŽÚª¹.Œç"Á ‚Úí‘Ò‚.H"wœš‘#è‚It»zι+”»@ZÎ þ@c¯2‡·+&:$¢ò²Å^Û±Âkð-Òyä`b²ÈΙâ8²¶NsÅÁSì+ VÕKT¥‰¤b[ E\:\w–ìÝOUÖ©Èî—§ìtpY˜¸šÆ·Ì‘˶ÌwÛ%;ØVK'¸š¸9ž<`n´½ŽTª‡:\ΙÀ;BD!éÚ8ùuÔhá 0+;MÁ-ãb€£Ûà·–µ81ôÄš¸=‘ôä™g̓êØaP5i¡ÁaEú^œÎï£hš/ªÎà¾#8§û†–XÉÊIÅ`Á\¨T›ÜÏUa~Î×f{„w+BÕÞ+éMdµ §fgºGx{êÁ1âÞÌíÌÔD² 8 ²åJæ¬ ¼×›åÞŽ7«Ïã.kEG¡b´ Œ33Ì1«í§F™àá¾ /‹ñ¯Õ"¾‘_Uý´¾ ·¨u·8¢`Ö4Z!ÓÙ Ê’¥ƒ³ñ±µÕ8À‚âù~T“ÑHSÏdõ™*já5}ÊðÛ,Wô$¶²fg”i_·2äÛ5A#×N\ˆC/FYà†m¯Ma¶,ÑÉÓÃäGâŒpvrÒHè¬Lu²·Z¼VgÏÜ*±_§*Q.ªéÑhT;È mÒ(¼ J´j…ñZ¬”ÅyA±K[ÛKè_ãA  )1§Wk8æê3lp6 ”)ÊP ÷$t Ä9%ø‰…ÜX:Ç&÷䆇ö Mª‹ è Ua&ªõ³Ã)¥-Û’‰úL!/–ŽÖP‚ïôi…0¦Ò$¢‚ÇÓjü0^ÓDÃøu’¦“×L*<è”DzÀÔ¨Íø¯»DæP]=v„mµB°ª—JÈÇ-ÆQ€¸X­DÕ£±Ä˜·:ã)?)äâ·ÒøF¶t4M¶AÆ®.mpd`#@ß“ø´Šÿ}Mä:ZÆKgÜñÿ’ñØFü·'ñ9ûÎ¥Ÿ.Z‹Ÿ/^=qiñ'‹ÿ þ^pG{Òaà?Œ~ ?±V.üΟ¹ /ß]ºü±uçüMëï.ÿкpëÔ½¿·NY'­OO¼Eœñ߬ûK?ºø!¾?ýÇ«¿5 ùvqùÞ¬ Ö§·Ï_üãâ_Þ,-¾O§­•¥Zù<Ô$Ú›)¨q]"¾äîϯ/^„ïóÖƒK¿½ùbËÚl½m­¼óWo=8qÒ>Îj­œûôÌ]ëεZ笛‚^W>»ðëŽuß™“ûªHÖ¬ñç‹-~ræÁíÿÆZ¬ßZŸX½ZRý¬uÛzËúÌú!| ÿ-†Ç{g¯üîòwW.Þý¹õÉõ{½¼‘J+Ÿ[+‹?„n]¾qÁÑ/þÑà¼MûöÒ%Djeåôo›¸yÃ40n/ž…ªÞ}Øpp¼vìÔ[¡àxo*%EއˆðvîgþóÆÝë¼+/B›—íNÆÔÇãMö„\’Å*|~ŒAÝ®üó»?kÞv‘c aݼ­@ÖÚ¢/},·÷Ξ=uëòùË‹ß^z~ñ-~q™5$b=x÷?Þû›ÐîìÒ%Q«êÉwqØÁU¿š¬·j]X<¹xkñ³Å !Ï1xYæG$y>gL"ä9ïŸäÂw¯_Ð×íMÂ{˜õ€K|zñO€÷ß/ž[üÍâçÂçÓ"ì›]¸à9Ÿ2#ö›uêÌŸ.üغ³ø¯0KÞÇÎó)êúíŸÞ¸ókVñþܧOÜ7Aî·—o,ž{ÿÒiŸR>!ßÞ]ºqU”ßêíÿÅóàîÙ‹~Íiæí‹ŠÔf-9 €äÿÉâw?…A¿tïÍó´nû`pß_üdñ¤=ïÜÍõYú¿{åýÓ·~b½yûçoß»túòyã+Ö‡øË§¼O¸7,÷¬uN)ÿ•¹ƒ¼ù)3$7¢¼mDyÛˆò¶åÍθåÍúWë*ZU‹¿¦ùëÔOξv×UUCõmq Ò¯‚ $¢;ЛWѹs¡9XðFl·§<¶›W\û”~Ò!ÞZÇxk6ŒmÄo«aÞ˜Ý|å?oδ€ùs%·N>A|¬•‹§—z÷Ÿ­rK,£Cxi¾êaÝVk²Ñ^Rk}!Öƒ›Ýú½µôö/­O>øƒu3Ø-óe‰ê¶z"H˜Ë­ÚëÇ`V|ñÂòÒŸƒë÷f¶8Ù÷ õV0­•{ÿþÒÕßkáó—ßýÐZY^²–¬ûÍ»¹ÑôµDiOh·k?¼ò/«*é‰ì(E O0·–¾(ç ëæoN/~„Þ@ ÏJ0ÇÅÙÖöŸñÉâß¡G ÌÃm[ªu8·w—®üMpfW,75sËO«½~ÜÖÄÕµ‡fì0 ÿ ˜W€'þýeëC0]g]ÄÉ~úö™KÖ ÷iƒ9|ö4O¥Uýg©Í—A­0w¾õ@8ôyœÌίäêC¶­¶^,yé{W—…̺üß–eÝŒ¬/Wô6Ñk‰óºçO¼û¬s'Nâ7-Ï,3Á¨³*`)…r¾{ý§Zب a]zwéÇ‚DjóÈ6_«¡g°Í¨Cjìg’SH…Ô8mîŒøû½ßÞ<…MQ ØaÚü %\4íýÓ·ÿçúÙwÿ˜ 3ÀŠ;#³ÿ•,!²yKøFd³{ ù¿”0¢±P9ÖG‚ï8ï!ê^§rpð5Ñd¤¢²\øñÍSÖò;K?ü-ºY~½°;(ôB¸ó‡¦ü¬±…@QÊZQ#N«eœú©®&šŒRLjµÄúŠÄ´´à“kŸihóˆeÊÀXk®™F;âÚ“oâDªßôqγµèÌŸãˆþJ‡Mó ¦Å ‹o.þbñsTÆÀü·§æÎo­;¤…} SÌ)¶H+v8§‘Xg>Gs"væsë£wþôDHLƒÄª®¬s¥i×}} Ê»k:õÆéÓ·ßÝMQš¼0=Aq|óÄIë²µ‚ïx)“çÉÏÀ‡˜Xéà‰åRÍM˜Oü4ñî|pŸÕwë'g®#A®ß[}ü4ÿ¦81¢Z@Kd â7AAü´µ+L>'Õ}Î#^ ¢ëí7Þ»ìÓ9€Ë­0ªîßú1(KöÙ Þ$z¾¨ðr®ößýGëÁå_žùÜ-`8aZ!‰#œ£þĘ¿½xl“íí—­‚ÊI*±#2Ä.þ­èjlv ˜[N‚tå^"¥‚À(¶Üñ;qòÝ¥ó¿‚!÷‘õíÓŸ}ð3Gu!Gð¸Ö"¸…\¤F­R:ácŠ(çJáåT Ï…”cìíï]¼Þpw&Œ'3‰ew&BnñZ4 dþlñS-múã rŽ®<%O ÃUư›Ÿ`X9[cq‘[…R³Æèq¤´Ü¶Î‰}ÚÈvl!„dƉÂpñ}/…»{Ÿbk‘ Žs+Í÷‘[§FG(Ö£ÊIëa}Ãz“cý€Dgþ±od€ä#“'N¶Œ‡UñrAø¹Q£Èq*vW~uöM6oQüP’êqÇŽC'/jš·O¡öÉ\¾´¸ä§Àð]-ÛXdX/u-D±Þdp/–޶1Íɧ.ZâDZ§…1¢ÇÜ©†ò·­;ïž¿o¼óÞiZ<ã-üâ)öEÆŒkE³·¾ýÐìé§îS•òu ç+~›Ò¼Çe_ŠMm~ÅÖ+8\Jo/þøÄ¥¦k Žõ…€pžÈiááüm(âÌ•å.çauÏ$ðûøNŒV‘ã¨Ê¾¾ùˆã|7>Üìyò!â¾x•$ϱŒÄÚÿ…<,ƒ tÇÁ›ìÃÍâ¸Y§|»šuD‹ äÚuRo[–í-2^X| ­†ÛòG^„·­%‰¡Àù>"]ùs‘„ß_¾ð'ëC X™uŸUÇÓÛ.ú 5A1ìØZ>V"œÀ‚ -EªÁ÷Uþ&û`Å9^ø©Ç N•£2úÛ)í t±ŽaášÖ(¶cʼn}Ý,Žï·¹Ö2W 5i¶F¦xo5-lãÍcÅÝ=ûÞwÎ_{Ô@qÍ«§)*…+NÖÝêˆÉc‰Ç–ïy8°.ÿ˜ÒÍÅ7¬äì•èÚGC yŸAónQ ‘Ÿ 'Aîáܪ'—èl€w¯ðHqlNà.óo|p…гîãÙu±ÿÜ,ΆçœZË÷Oßwò÷09ǘü¼Éè£~ âì 1çoZŸ[ïÿõ 2ÛoѵtçÌ16 ™—WÓÏkŽ ÷îͳ'„±†.ÿöÞÿ°1wõ1`Ћ°išâÔ'Epœ¸oС–ûîQâÁãêœ!J$8?t¯ÚíAAüÞ‡¢ìÚf’#œ(‰Ü6œ.ËÂQ ™d=x÷æ?“Ë«7­ð”.ÄÒ¦¯sþg Pø?‹'8X`r)‹«Š ·øC ðƒ>"±'‘¯Ó¯üb#$Üãÿ4ÿ¶«ï›ëQGóøo1 öæŒÿïÎt'7â¿=‰t1 †tQW<ÞO…Bñ¨6\™¦›dH ÑÁïëÒŒy£Ð¨Z©‚ƒç`wû¢% F^Œá¨ìÚ A&¢Ú>Ý,aiÜû@µMÎUƒ¨„ìDMÏcøªQ1J£œá?­æÿãÿ‹¥“IwüÇÄÆü29ÿ1Âcª+–¡ù¯rÂ騮Æ|Ègž;ØJåà3ë‡6Hæ 'æ~ÿ¸¶YÞEõ ŒNX+å*Ü?ŽÍÇ JÃGª¾òÚÛL%Æ¥·r!:Ã6Š¡·~û”õ€; ÔuÛ®MÚ3ÌôÐöãºáøÈp®o"‡A™r“ƒãû†Fú&GǵM]€R2 1¨$Ÿ ï‡íî$((÷ÒÖCWë¾½]+íêúÒ°¤¦ó|p]êh>ÿ“±L·WþÇ2óÿI|¤(ÕÆéFI¯jƒósxÑ:W•@°1 +#ÁÆ{B!áRó„6Q¼ÑêfÂÜòêœMYnõòë(ÂF™nµ¨TÅmž® Ь>ÆËè%™ãœe›•’{Ç™™<õt“<(—6ŠÎïÙ#óÌózÑ(˜³NEvïaŸãÚ³hø”+£Äuu (ÌÛ‚%[¯V<¨·Ñß9ÿ¨ ö) hZháùc±ùžXd lDØÌò ÒDH o±§×”Aê¹¼¥Å/-^±aUN<­¾0gÐì‹ Üõò‚R4l°ûjø¬!qŸ=³ölçulÊ©ÔÅÕ½ê{äs3z¹1kTÍB‡Ö–k£ gñl1Ïye¨?œÝFÙ¨ê¥\¿^7¦ñ2ÚÎN-7³–BH¥ÒND#ªzé—OÌý¢9mÖ½äôñmÜ+›c}L`”j9èN'èì Ï¢r; $ˆunÑ;§ú:w‘ƒ6»G …TplÏ¢1î;^ÝìÜQáNïDgöqûý«Î|.Ó:ÎÚˆÈ6vÔ›KÍFùYz9í6Ó¥P8Ùñ" yÙ–¼ ¥¯S¯¾`vh;AÉ:Ô¡õó)uhؼm7‚m¸rĨÊq6V¥ÓÎ4…:X·whûçæðʪ—xÁa uðø£lXüÃOTAm ãN/6{õº~ž¼…1 $Ã㿈Ò†¡¡j¼d¨t`076>:68>948A7„§¢Ú7z¹Ž·Kј®‚Èåý´ƒÃˆ£¢Óêæ,¿4fOˆaÂ,^°a§mV ¹ÒŽ–;f±¯ðªeïZ.kùFœ&”øž6ëÌO]«äW;ÊÎĘϯ…Æ w„eÃEÀ ¡yVj€œg÷öB»wµ{G“v«…üڽçÝõ& ßѬá;ü^÷kù¶m5~ÍŠ¹J­†Ê2HÀ0ëj’.ò¶j”–õ*ÞºT) æ-ãÓiÇæ ªlnB•ÍþT¡Ä0Ñes5—¾Žo¦«Œ,+sQ”Õž ‰\X#¼Œ¥Kß´¹KÛí ïØ®oŠ iœŽj}åhÊTß«|`æq±ã§‹;QnCú³<÷;S„K"0_Á¨îU ˜ÝÉÞKñ¨¦õùÔÆ¯A…ÔWu±÷H#~aPÂuv·äÃR¯û”Â÷<°ãòBÒÅzìz!~ÌNÃ8N³su† ÚUÅáPWÞ°=œr½(Œ÷íÀ03«`cžï\ JYˆº»{ïäYPŒššQwèiΫy!¸hô¹ç°và¢xÊ‚]œ…5+ÕvP¯k3æô jf8Ì_UÆÀ½óÈsÏxµÐ9}ðõƒtb7ŒïÒÞÞ0KÐFǵ×#J= çg !lÒ†¦´…JC;‚ûùÕBö Ð1x3¨“º¸§ÈVë°~o£:\m¦Ò(…É]3KwhíÙö(ÉHê#S‰u w?½;X/ÚÞWù+ÞTE­Òpl Ï@t±^yGö©É"$ª¹ÄûZÁ4ñ“Ý ò^ëÔâ‰îƒ‡{_@ÉŸYÈdDgR›™Ø],(zaÛJ­°‰ì;yQ{õ9”±få2–&h Êò5PzóçyÑ*hT‡*ÈñÎ]!…/H’¶PÝ…=Oe›÷#SÖµcªëðåRê\ýéÈíîTòñtÂW÷.wWºTT€:¶Ú±øÐÏ °cÚ.ÿuxØ_†aÎV ¡þs†kn?Ì›cÚðŸ _÷˜ðm‚`°Sïô<¨=÷œöª¨Ÿ•êð§» (D| =0Œ"îÁ•P…XÇ1ü%jT‡ o²×0ÂnÐk3®Wý¥ Ôçxç¶ v™eh·³Ø»wÈõvØDµ9°Ñ9£¬æploŸ:­ì0¯9ã­G}ìk'ûêg_ôÕ“V' k|ðv=‰0>5ŽÆ$ƒžŠÓ¯T†~eدLÆMØ1ù"îÙ×|º`/ùu(jÁÝQ;P4;èŒs1¼ãŸBe}‚,Õœï„ÿv¶fBª«25lš½ü®FÚ™œo¶—±ŽNæŽ+ß:z©VaŠêlÂíe¾„#oúÔTÔ{k¼1?q¡N—ï²$ÖR;ÿ ÆÃ¡f#|™aw6ô:3¸mî|¥JåP§Žç(ýëžê„BâÊ¸Õ ‰ÒóÆŒYæÜ œxNâMPI”/J^è‘êQÚ”9o;˜ÅúLÔ¿üÎ*stLÍö†^Ã…é<݈ˆ$W5· µl­~,_ˆ kt/¡ëÐ;ùc…b$âº1Ь¡²/:Ü]àðjN-`w/³;`ÍI“„TG‚dq@8ÔxÑŽ/Úù ˆ|] 3›ÕÔñ&IûŽafЬbè.Ÿ¸!ÕóAtW@ºéâ‚U¤“l%ó‚•ôôGhupÁ¢}ãxu5VGuâUŸG*ÒcDª9{)ÔÕv²¸/`J€ÊMŒðÅ£¬AX Z[^MTÙqÒ6¼„ZGžZ‚VÎzඪÑÉö[LÆüçì«(ï×fS o˜Ñù Õhy˜ÊðÿÐÖòvjZöP{¹õNãŠÆ#šê!P¯ùf7¹Ò¹GÑˬ“A` Úª€À¶«ö}°ø½Z¬1sˆÕ Ðhb€Mk*¢Z±aÂQ«i¾¤eöQ‰ß^¤þ”£–Š(?gDNu|ÕUïHæw8½ÉàEw‚«Z0 ÃÀF!‚÷Ó­ê2Î$ÝÍkµÑÇP5SCø0¤ƒøÂ3óHÎ&±3:eÖ˜câ0±ç §¼YƒQ@g¼2•1]Ü^«“ hvág˜`¥2[ÌIÂ\^žËNs¿/ìp½º™Þn§~eÏí2­SIëäi!e8¨eåÏv5G§3‡ÈXéä4àĨˆñïhz»ûç—ÿzÇhTÕZ\r™®l0\}û±è1àîð˜ßd§á `–߉d_øª0ï £-²ª‚›cž¢Õ6ÉFy†bM Ìaˆö‹s7’zϬÛ-IÈ–Tµm¸xŒb¤À¢ü‡·nmϱk;Ær¹ö(zVæ:x¦Þ^q­ˆhÔχ¡¦·Öêú4=à"¾Ü„? z9;n—b9·b2›üÙÚ&͉¥Ð;_ïë|%×{p³+]Ô¢xuësÆÊ:ÇøÛÈ&W)†ÎÖ.9ÒâÛµíJcDnN«ŠnÚ:U©lŸÚš×«ÛóùüÖ.|˜ÚÚ…oÛ"Q€fÕ–¨P¤0dM ·Mêeý®õ2«:ãiz‰õ¸CÎ`öÖâElïsHbf.92-eÈ´G†PUnÏJA1íÞR>¸¤@€¸ 'qI90M&d]-ÅÁ&0¦ê³`â|>68ÝÑ­êÕ¹bIuêÇDíyÒжm×(*¾l1/r",ãè^V?Õõ0H Hµ©H2 OD`ex[97†`¶ÖQŠMÉÞRëÐKGôeEY¡hWxG§Ù+hs«WÒ.‚sNr»¾6Ús‹j<`NѶ“vò£ƒˆªQVɶ‘€â‰»Zí11UAÊá .Q¤QE6E‘°Ý @‘é­tN(èì.>C¼E5°P/W‚[kb_ 䩳»×™¯ÔeDe5 ^ÍtójÚ§ÛWUO€ ‚yí:“T§J2šé®}M ô©˜Ûpl´‚ȵŠ.šÇ>6á–òÁmwní»WG•5"¦"EK ”º·Å•”kwoð$#[ {•?w6åõêtƒŽ°hÕF~¡³hÖö ã¤u6û„ú:åN-(4‡þ :ŠL‰*›=½8­vÌFzµfÞŸâtÓâï^ˆ0k­`*u¿*õ)4-y–íY™à\jôu”­šÓèFdšÒÔ€û:EƒËÎthÙ=,£: <%̪bNÓýÞJa>nÜ……EòÖl¡ï­G°Æ|"\:aTn§fÂ,ÝgÖhsþŒeT#Ðí6§#s$F7‡W—¥£=Ño|vä¨ÜD¿JÙFGv¸#»à¿ÿûYBxÇQt¶ˆŸîßaÉ4# F­sN¯+Wð‹M3Pë¾ ´ÈòS«“3f͹§¨R^ݘ‰RCaʘSÂÎfM{^ŸÓËæëÐRyk\˜Ÿ@ÒbÑx"‚ÂïQ>ÝÃ[¯„Üôj¡½Çâx‡ºeB4 67a6n”ÜN÷0ÛOX'¿1†ÏÖ¯û¥ØÀ”EÞ¿’[¢ÚŽÍÚ&ø¿y³•]™M<ûÐÕìО{ŽcÔ~ ]úgزㆠAk ±“Ί‚™:GÈ`µÇr”åb»A6«ôãúIÍø«ÜËg³d†¡®.áâOF¨Û¸V¶¤û†Tÿ8[Óhv^ÃÿPDâ6™.ÁÜÍY“¶•#˜|¸³€CsCŸ§gZ(¯ùS¡‹öw-ßÑ%óÙ[ŽTæ'‹Q^¶™¥Evp0f*4™ Öl_•âžC䪺 ¬• C4§^Ñ#Ù‡õŠQ­0îÌOÅÁü–e–§ðŒ-­ÌT㌹‰p$ð…r÷ óCZHdÂpÆÉ­'Ôñ$j5gÛ&7œ–‘cáHdS6èQ?·ÙiÙ¸N‰,Ao#ñ™Žj»„~À7á“)neS‘ËH ĺ ´f]•H϶îrŒè¿Ä-,6]×Ûøî‘­±Î8DŽw&ð+Ñ™ÜέÃ&·Ô\ÉèÂc€P}´ M™%ƒ‰þLwDƳBâý*#ãÄR”HsUðc—?³ß›$òÑ2£ÀÅ_€ÄÑ®QdD²M…jW ˜i d˜ì‘ͼ‡²óSÉì|Qh[÷óŽ-Îÿ¬Çñ¿–çbîó¿xÊdãüßùà±6w)è¼Oº+–…DH¿?ïü7>¹~øyç?ïü3²POú\û·å—­+ÒÂv` ˆñéì›~m­àѽ.Œi­¼÷óêTúyÿ»×\üÛ}Þ‡E«D¦#cä‡ìrJ€ÒÃÑéû‹/^ˆ°3@øÂsúçê¯ncÈÒŸÊþç~®~tãŠ'›÷Äž`ÔÔÿYŸ[ÿ}ö¤'›÷”Ïù_]û·ü×ÒG6ïùž3º½äæ=Ùså#Módóžé‘Ý¥dó9ͳ|êêí«¿§¡#õË ¿>s™Ü»~/l­œþìÖï=Gy._¾ÑY²I9åÏÛË7eÝ!®B®c;8ްËíšüJ¨§tVWB=”sãî#9þ%ìj ÄfgEžPää_ÃHÀXZb8ßü/ µ>ä±P“l4_úã<Í’uú'§&Œão}ßyŒæú[ç?»pù½¿SA~øö9;òªë°È[?ºúû‹d;ñ¬ïZ¿µþN»ÆïËCX®8Éš/¤u¡Ã2)æ>PÉ8ñirTÆ{BÆYÔÿŒ †äÇdVîbø$éPâÞ‡7­Oœ‡dNvæs€nåßyÐúM< _œ¾}åW!†Š_¾cÊìÝ,~¹$’¨ßÊjv~ôE.³üþÇ\ÎÐõ—wÏÞûÐyºÅá~+ùïDx‡Â;üvžNùÁ÷ï}¨…u1jùïYŸÐ-ŠwÞû›óÿ/Fu:ÿ+ë>ÞÙh=8ÿ®õ±uâßF•ãÝ›ÿÅ‹jà:³â×ÖÍ~mÝìj+½õ=§‚rÎíØeÒ[aÝf£…ã±ò‹à#*·>PO§à½£!û0 ^"ª(X(9~ðæÛßÙ‡O˜8/ù©š ƒ+‡ìÃ&ìå?,ÿß'1ì7,Œ…µrãÊû§Yœ4±3„ìc&W–/üFî§³$BÞ«‡H–ÿåÆ'ʼn»ñ‹{‹ïýöƒŸ½õñÅ‹HûìÆÃ<ó´pZR•b¡0ÛÚ„xRŒ¼÷#„«…_µV.°î°ª¬S7~aY¢B6DZ‚ˆ€©TýŽˆ€vci?Øn=p*:7î^ù Kyú'wßàWCâ JQ†‰õ¶õ Þh´=Ûn- ý•F/ÝÈßËÀdüœÅN{ Ã>:NŠ©=çD|ôÎìä¦É·ü Á[?²ßÉóìý¨Ç@T%ìýwnýž.µü7žË÷ÄGÓOæpG eÒAô ‚oœèØ8ѱq¢Ãþ<Îh{3¯‹ÿaŽëÿ~éç!¿sço­|ÇÊçcöj×~ƒóþ ™q(rÎöjxÛä…¤Ï÷ªçÞ¿tZE§÷Òi†Ñ¥Ó΋ÌÃ"A~ì  @¯+ÃòçJʱ͕…[Ö‡”ôuwa-JòVWQŒÔi'º cY™Á·õ"d÷iëþù¥Ÿ 1o\°/&SÄ ºnó^ÁtåW§ïZ+Ìïf½…ïŸþ'Šô}•ƒ<%®´…ú}Ⱥögnøœ²ÀûÄ0É¿Aj“1v/»WM\dË1ÀHµ§„2àð¹O ÔFWïœÿÁÅ¿ý໲⦅K§ßçÚŠõàÆÝ3?·o#¿tšÅEÃKUmÍ™_+…WÕ‡ì½ P£½~ø÷£çÖÞl¨Ywè ŸoÿÒúäƒ?€•ùiXCŽôM˜JÜW'~C$àøÆ!±Ä®XU(¼|ó­{÷¬;táêG¡› ÌJtOýà.~(#ûb,ùÿºöS-Œ›ùì 4v¹€?ÕÀXÀ[ba0‚\\fä·–Ÿ%ë#,«^qìý°‹lao¾eg°î]µþZĸ壈Í£·™Êbßœ'PbJ¬¸|¬¯K—ÙmzcãÚ]:}þ&…æuFØí‰j”8Þá&,¦±Nç»mCêVùÄæÞ–ð:À÷?¹öCG^'¼N°y>±o—6‘'¤ïp%…œ¿ÑÞÅ»‰î§ݺ$ï•Ýè0)h´¬\û ÐÙâEÀž"Kè»Ön3¾0jxN½¥˜A¸ò7O@8e—‹póGm½µ®»ºO 4¥­ó=ëFðÖ@¨EÜò칕—“ °š[ˆžz ⤎2yU\¬Om$:4Ü9A ê ×qžØðI”Ç;ü;ý%\û°‡úªÓñÊç ˆ÷Їœ™tSv<TèøÛê4TÉ#ïÛ¸ÉF»D—³3m‚âé#P%*åÊ/:W{¤Ù¡³qcb´79ŠÑî8Šg1Ô1¡…Û>¸qý×|†Æ?‚~ù‹ÅOY'Ù§lÅŠ„Ôƒ ¾‰^>Í+s1ài/£ÈèÏ©E }yµ;'ãeï.½{ž& {Œ˜/¤•Êol¿QÀ ω 3òˆ„ÂEEOž*) Aõ^Lq5¤m‚ –ƒwg"ò×¾íIYæZ·¸ŽQ'S…êSŽ]9©ÜÒ+)ßü(èã¸'L³î  Fnbq‹³‘S¹©ž®U¾/"ñ^ypîwÖ·þd·n^ýÁ­ÿ øGg.Ûw%øôÐ}Êa;›}NOø•ºõcT©NœT®š¼msîãw™ ËȪOŸÝPZ>g(VWž¨`üß[¥Ãôª4è…_õ«kiÓj ‚®é’w>p;LÁ-èÅjpà A„yHül쮟$î¸.‡)5ìÅeÀX¡-ੜ °–ÎÞ¸ÿ›mÜ.^gßÌG͸ƒJkÝ=k£_n¾uñO Bò+3nzÿí÷Þ³å$j wïZ÷¯|Ÿ,ðæß-\ YÖ·ïýϽ·Q¹p¬´¦®ZA19½[î¸ý˳oâ\ÂÝ;§ï];ït€´8Ùqù»?¼õKÜ Æ)NëË‚9í°–›žìhS©üU§®Ü¸‚—Bcb#'ŸURðž‘Ä æÂl¾¹|é{è Âk½8¢l¡Ï8QìÅeõH‡wx;eQÐi)½¹)d˜ó ‡CcP>Ág8¨9À'Æä9 kyù×oÿN;î¸ÒÈ/æüNJ÷8°–}–ôîóí+Ô.à1âüØï7ÿûÎ?ŸÿìÌå ãªå¿`@ýbÛ×8ûÔsÔÝN—Tÿ=/¤žÍ'ºîf`ïÙJ¤XEe+’,¨%ÏYDl䘰ÇõlíLd¦%93þ\鸬ö9Œy ™PýäËß™÷ .Ñ2.®jhö PÆÔCšJ’'ÕÓâb3_,ï#fx¥õ¥Ótã9 ¥›ß9ós0j•RbUŽ_ti¸š}çÄâ_/~|âôöm†"ð¯¿súýwìY ˆƒû¾=^W>g#e¶ÚƒT…÷ôÎÞ¾ë^™µO]¨SÑ›K¸Ps1O»µ"7>g³Là ‹«¿«}I{vE"§^å^®Pémï„¡:|Ž[ŒpóÕ±„N÷¿ Í+Wn¯œ ÇÎ|±N1w%x¼B–\ÆÛÉ T5Žê&?ñF˜¢à³„À;ì³q&Å…˜ÍÎOÐfÝÛÒgò`ñýÅÿ…— "‘øØ¹#Õ~Í÷Ø€¸&û‡ÏÖ¬³+ÿ޶¤´BîË<®ÿúú´è¢ê2E+cJ”zÁúí{Ö-ëÛðweù2Px™¹h&¸‚Ïd.ñYI6ÌÉ ÷VÎó«Fé×~¦‚ ¸tT»tíýÿRX'à̶Kû]kªˆqDîÞWØn7yÂÔ+¿|@?Ä ÚÛý?wN s´°T Üø’fмï(bÿ÷ƒŸÝ}`ÝYùŽu¨~ÌÖ7­O¸gôªõsÒT‰(™¨v÷—×>ùà=ÞT÷¶8±Ø:õÁ©÷ÎZ·Ï¼o÷¥b÷iåº}!¬¤B¯ë‡};·~Œ@ù›§?ãf€uAøNqöÇ /žœßŒ/(xñ-SÒ³wd3‡ä8Ç!FígÀ¯ÞÑÊ×ørÀ}± pýgÖ÷éâxÐöí%ÙV•×2Ävp1ôð6=qÓ.90Vnž~÷?€³ÿË•´o«Qôɗ㲚Ϻšžÿñnà|¨:šŸÿItw'Ü÷%â©îó?Oâ#"ærÉÄçmM$ð#A½Zž "IïÕúÊ—:ÑË£ãx~=Ù«¡e™‚¯|§á£vfà·ßtÃw¾{ànoéÕ†CZ<_P,@‡Kð 0‡gá  Cö8€®Ã7€nÀ7€Û_mÔhû øhû –€/€68%Ú@M´€–hcðÀÆ t€a6€6Pm pN´13¤%ÚK¸1À9 à&à  M@ñ$@›8ßnpN¸ Ìà^/€ö Tžh¯Ì…´@{ ¤Ú>½>OH@6Ú€)j4ßœ?¾Ü(?‘¢ð§2ì1GÇ€ñ¬&¼C³¤9Œü”“°@+QÂÅÄ-®ÄI³^2xb:æJÄzñökJŒû$Îê¡uC¹ ¼ƒ~%éîW3Ë À7 ­{IIO³ŸJhä¿ì[¶3‡÷BçèbhÈM¦ ñƬ‘cgáeòr'Q.½Ey5l–¡Ï2جÊì,î ËàØÓëè*“Àœ†9p€_É^û‚¶ÙY™«ÌV¦  [Ò„<&/Cã¶£¥bn¨®SÇmÁáP„ñ™º¡fTz(ƒÚ‡Ê€»Y‡Ñ!- ÂRe~$j£\©À¨~gcÆÄLÔÓy½|D‡_È“ÌÙ|3˜`æ† xîî¥Í„z5·~Aýû±×q†Çc€ÁÆ¡”ãÈûFk³zº7Ž °a®jV7ä‚;«:Œ=€§ú’€9üBþŠÇî2ÅãHŽjn`" ±»¤#Y†nìà)è„éø…Ãa¡T©›¹}ÆaÙ&k ™<¢” .Ñ«•Ú ~V;õ¯Ùi£l˜ø8Ž\ul¦s¢À #wѧk¹1h2Ù‘C@?ä²x‘‚ä1æ 3˜ÇE)×?cÂÊ›`€Æ‘ïNèªXT!òß½0¨g`òÂ/ÀbÜx Æ#<#Ç\`Õ#;îBÓ3vÍB‘=Ó…±GÆŒ´šd¿zدLÈ¥û5œ qdÕƒÓ @eÈ{LßÓ¥…¹™¤ÄµYìOʈâʬÁ@Þ½SŸm`äÛÏë‡y{‘mï3Œºaæöé ÀYâȽ‡fÿâÎV`³:öUŠ܉J£>“#ŽB5ôà0­ª&µÄ­BßPÚoÚL FW(Žl¡M6ª‡zšHhR§"cÞ‰ó “4Ðffñu ™ôåOÑÍù‘ïà˜Êõ³0xð¶[yë rà}&0˜xš ÷*2§8²Ü àâÐBh<ö^†æÜ!‰Èxûõâ%˜bÔÄ ‘µVÓs/è0„‘ 4æJ•JD^Ykô#CL¾\Ç…Œh¡™ÉíuõàÈ®¼† Ù1Ÿ¡}¡82ã}F¤u“t†!=£ùñ> ‡•ÛkÒ50K™UŸdUh(rd$÷H¥ªv2ç=´f°«ÒìBÕ(‘=é\¿ ƒL‡1ÔmOÇYìdÔc5 um÷,2í ³X¤1ŒL{ïL£¨ÑdÛ“fu¦Q ×~QÇ€PCSɾ™ C™UÖëÄn‡<|ŽáZà;Ä/¦‡#·§Qžæ³ ø¨/"wC"#¯àÊÑþjxCÍ,š9¾OފσøVÞ`ŸÂT‡'d怆°Åo6*uÚ‚œ£ûqäí“H×FqHAFB»ÂI³Š#§ßcÌçèð[(¼žŽ¾åÔ—qQFÑÁÈú‡ŠF…v~Ó @x$:ãà <¸}~¥ [oK 0`/mí-Ra¤R–á"TE&“è»Õ™JŒ¡‰ÜNhtu!7J¡›*P5JL˜¬zR aã0 z(J@—ÇÈF9Ù.x56U±(n ¼3C^ÀoÔu+SõÜ@¥Î^dPgÆÊr£U `Ž7øa·$Pþ°Z¤¢—ˆ÷(虜—@Q4J z‡uý„Q¢-éðÕp(§Ž²Ê%‘ÀbØÁ»$¶ûP¹rð@ÉÔ7=“‡'œ0à‰ëmðÔMº O=ô„%HÔ_F(á)ÎX<<%W‚'âOõCð”b:<¥Å ‡ç ÓVà©›±ZxêaÒž¶0ÑJ Ä%Ц/<O,C-(\P´ÁSŠâà@‚Ì‚zBA7ߨ†¹Ï[ÀëRyó&3g3*Aª¿ï¦ÿ)þ|Ž&HÑ­ž©9ìH”ýt1RaÈ>›§Œˆß‹ý»à)MOûà ñzq±'áQyq?¥˜ãžÒäŸÁ²¦ØÃ™ôÜ?'†f*ν ðõí'†B~eŸ …ßñ^ïÁÃ2.°ºMx^˜€on8À ð"S²RȬ^Â9˜BfõÎÁ2«—æ¨.¨ö¥Zc>”B.õ²‰ðK½‚”B.õÊÂÂžŽ©ñe¼ÈKIbädjXM0|)øaµrnáÜo‰ÕY-ÂGÉqFŸ}f­`À`.•F 8Oa¦L~“t<α% 87fعŸtœÑgtŽ”Ñ¦rãF¡2]fW¤ãŒR̶DÂ+W™".ü*󹪎7LÀ;ÎKK•ôëGÌš¬iÖ¨W‘ËÌès„H·O $‰âŒ”t|±Å'»ƒ:¼,°út"&:š(òT#a)•ц¯Pä¸ëêH$‹í„Ôäj1ÀÌ)/¨ ¾L¤ƒ)AãSŒ‰§¥½D’NøªýÐÃÀË·Å!!s-Éå–XiI']‚Áž]I§~ Ê×t2ém²cúq•©ÿù½9îßsÎy®>Àœž7exÏš­¸5AˆËe{cÖnY…J@'Œ2r.ÍU*¹F—æ*”\¦Ks}‰‹Ó~¼ næMèƒ&\Ó\qÜó ¨ƒ«M‚BÁ”M„‰:ÊVÀ:•v àËgÓ\›’S!p¥Ú"°>ƒùl8…”™âq©Ö캰/¹ ö²ùrº=Æ<y³öôä:™?(HŽóâ\Ô–°•\S{YíÚ´ºµü`¤Á5´4×̼ æ×ÒØrUš«hRžÚIm8Íõ5×ü€®G« ŠéŒÔgCe”ƒN.Í•:¶N8c…kuÊz_š«u¶¢©t?Wñär`š«y|E0Í5=EqsÌ1®øÉå¹4×ü¸&è ×ií0Í•?O>€ÉÕ@¹–˜æºŸºêç‰\ô°–ò£÷ $¤ ¥câsб̘¶ÕB¤„2ޏ~èK"h6W÷˜Ó39iC1®7Ò{Å{àÌÃH1\9â|Í¢–ê«ÐÓ\iôÌ5Çd຤½J€ ïÊ|mˆ,®br»Å›‰ËUNïâ–ïæº[•ÉVˆ¡µìÑKSÜ L UÔƒ>/̵ωY½Ä²ªI®sE4_è ®šb•XžøÔ®F©Ä~‰Z¸Ü`w¿á >†ø&Þ÷zXW_e§3áÖ¦1mèB·Â׌.}å‚ ruÑNíq¤JþƵU˜æ"¾zH­Ê¥”­Øg¸Êí3\ód77z]V”ᪧ²µ#Ã5M¾»#ÃõKe5ÃUH¹ÿ"ÃGuÏC†ëbcH†+Žb›F†kŠb§F†k†bá9ÃBŸÕëL<©R»^páÅ6z(“áÚŸg_@†ëöºq†+~öÂr&.f4­Ûfâ‚øroF&!(_d?¹Õç·~ŸI$œ‰bÉ?Ã8eƒH&‘’un\È$ìîp®Šg¸¦¬²g¸&6`d¸ò°ñ!Õ1ÿ½®Ž¹WÎ3\+S¶Ed¸:æ\×ÎpEl¼1kâ$;HŒìŒð[±]©sÑÞŠ Wµû2B©bû)2\’{2I9âh§D†«OÜ­„2IA (pmŠogÈpÕI¬ÔgR¢›Ä¾€ ×™Äöˆ ×—ÄV WĶ‚LÊV à‡0Àq£F†+6´ õu—A†«.êÆ† ×\ì½C®·È7¢qm3ÕšA½ZZÈ ,”õ“6(Ößý:®êøovÈpÕ‡!U f¸Öƒ{;2\ѱw¡d¸–ãØ`’አm|Éd¤6«;à ÍFlaÉpufb§qwZOv'àÈõ› ¯ã½& šíkÔTc rðùäyïǹE®¾µ²Ù–—@¡çQÊÙ@„Û]Ç™¯Åœ€T¡©†™jêÚpº…ߥ^G¹«ìÉHuIÝe“évø!½50MÀ†Ÿ“ê5èÚ¨êd¸Ò4P™5Ëù’sÔ’¾€-êÇËEá-£–¯ÅîèC®>ÉŒªYåÈçgp;Œ*T®äd¸v58 ÚtµÄ ×¥F«ẋŒAiÌg¸B5I·*ÁÐaŒ>gÓƒkV}¥ÐÍ9.¸>åö(ØJv¦G8¹¼v|?¤f¼©Áí²­©¦6ÓNȺJó Qزº¬¡Ì–f––’u²Æ[j£ŽæêÙ$˜2ð#¤[:ËxüÕbŒªÂOøe²q½m¤Â\Gk;ÊxþcñTÍ|£n»Jf~ªñúëFµÓ£…¹¹5ÕÑüüG,ÞwŸÿH¦¸qþãI|º6i²w5°Õêì½)¼'WŒ…¶IÓA·«Ti‹I¹¢í¼þƒÂ¡(Y€Écôjýý±®¹F~kÅ ¨­åPhMŸ6zC›4ˆÊÇ®f¬!ó™Á«™ÐµúZGÜf1ܶv‡6<Àúw ÷ížØÖÖ9*7ˆ×ÎBå0¡ic›Qœ64;a›^,‚1UkÓ²¡¯}mxà!JÖýk›8µz#Oa­Kfù¦OC+Zx-´²ÑÔÐyŽü.*Õ{C_£lÞ¬yg‘V«º¢ð¾ÖeP kW)jÓš-kÔùÝYâ=ºõ±hV‰;-hmf¹ ›<Þ(c7¸*ľe¤†w€ÙÄ(V tm´6Õ¨âF­hÔuïņæÏàmˆ­@×d9‰1S¯Ïõvu•J‡g£•ê4ž2«u Ë3õÙR†[WèÄkFâÖZ½h–ëÑ™íŽwx ¯ó_ø:„7ºVËZ[Þb¨ ¿°Õ1 c|´l •çu p}Ø€=¹:Œò0¨:´~NÀW$t4ô5 DéððÐ×Ì)-Œ•åÊÆ‘Ð×èXîsÒÁKã_m3•îpF§ÜÕ·x’¿éÙ£›GÌ™=†Çwá/ô¢!O–´S‰ŒÅ[Ñàc1ÛÆ@eÛ\db•I§9ä%I˜…ðéÛ7¥ý2‰P”ï…Áñ ¦YùÔaY‡‡úG&‚ 2–åìÛÿÿ³÷%M[Ã,®¸wѺT¯A…I;Ê&‹"„ä! ¹ ‹ˆÂëkÕj]ZjEé³Ö­­k¥µ*.ií«VŸÖ¥¨¨­UÜŠú´¢âòÏrïÍÍ.µöû¿ÏÛJî2sæÌ™9Ëœ™9“ ªj=!´g8P‘tâ˜(  £bÃ[Ê ×*qÊä„è’q*ÅiÂÂCA"#íy,9ü º!áC Ï2M 6ýl-)M 6)ýl-)&›?ZKh$›ØøÊZ@6%¸·–’ƒM`¢–¹EFj@'£ž[èâÃcà .Ã0Ç$A ÄÄÇÅBk !96) ÑD ´&`ÏÄúMÀ·ÑôoË&D¡™Æ° çÔ)_sã]ÈPy›Lõ#,0òÖ L%Iò±²ÄÈÒfC .—Ñ-•¦áD‡ ¨Â`òš9"¸Î)+Wb\ ù‹ÎJ°Ö§3‘ªŽüœ4"4ˆMLŠŠ I¹¤2C„m¦ýÌ$¹™ïŠÓ¥i¿8r5¡»–;³q fµ+Óùy¸e%Äpå0)%R’²èÞ&%“…@‘ÿù”~BH„Ö:x<I­Jœˆ6š²-uw¢Iwç%âiRØË¹%uT$ ‡0räwg k¥ïCSŽŸ€¢ý_a³RÏ–¬`‚nÐ@ ¦°ä&3! ¡‘Qc[Bà F4§ÉZãÈ,R S•õ‚ÈzôÆ«õÛüCÙÏ”+Jli cEx,Z”â¸ìáJ%©#Ó˜ìð»Ñ}Êð4àÒh8¦3|«‘›Ž)—0Ënê.·RÂó±¥0#+ø×$cËîxŽHÞ0 æE\9’›Õ`ôŽ%©\1GHnb4ng\´›×B¢±e-Ì‚¡S Üñ!,‹TѨpë r‹«ƒ¬aô€£É<#Ž®ŒDd†¥e— ,pY SŽ3_Ø‚¼‹  OxR‰Ž-‹Oœ¥±@g}zij]6Ò´ƒ]Ä|°†ûÁƒÔFh"¹’Ó:×8[¸¨krB¦Ò7JÃC“‼iÕ5È;+¡"Ñ‚•ÎÖå$ŒˆÆ VÔRD…¦¾ûZ2›¹ánÄkdTtxâ_€S+v}Ë<œ¬OÁñIpZ]ÁZ7F „ÙÞ”Õ,¸.Í!b_·Œ6a¬%SäJ2I±P¬%tëŽnrè™z1ì ý¢­27À¶enƹ-y9D£Q*¤ØóŒ(Ñ2÷"ǬUöE„úßϼ `q°û 9-ÑúËyùéQz*VæNŠ<3'›Î‚ÐçoZ°¤Z §¬ÕRü#ÔÈäVØ¥Q¨dd!ZŇYݽF MŽ7!x©]+Ë­q+¬k ï1<Ì…Ù3ǵ Š!õþ÷³rK|÷ä:Ϥõ^ ?3jϤ•™yÅ'dçÖ533Óhé&c aRˆ˜»K¾6¦¦`Ðö?!„CÏŠÓŸÑé9ÙÖX<œ®WËÜÍ1ãk“/¹È"ZBBQj©yo£«i¨-ùå0áþϲ9C'å'º)þz&VÄž‰ÅÑ\þ3«k<£ú&„ƒ ¸aq ’xýgxhrR8W$šs2]rn¾C}™ÊSZ²<ƒ")oÒ ñ „^áŸSæOÈâýÖø.áo…¹qvKÄïÉY²Îψ(ÿg™ÑåIþ¯gã§Gé™X®V?;ÿ²üÁ¬v*P€ëU´S§ûI꤬¢bƒÑj:¸{ –•êL5gÔ ÷º¼îKŠlÝ!–¬¢`¤ ¸˜ [ffš%7£øª€tFX4õZáæ‘qqÖ™Rîÿ,/Cª<)ß`ªÿå¼üô(= /;¡ˆÿÙjèU¼Dšc|Åíá±á !Ip-üĨxó¾ WÉħájÑ3øÜÏðOHD¸F0Ĥd&‚x–«º­' ƒ¨Ñ{PZd¥D¸PŽ¡afYh'"r?˜Ž`3‡¡/³ªÖ™&ÿå™ÿ .fÿŸ§HRˆD˜˜|ôò`a®çs)£õýbOo/w¸ÿÏÛÛÇÝÛÓKL¸‰}¼Åî/÷ÿ½ˆË‘|~°.ÀEïñ-((fªôh›/¥–ë @ÏÁM p’O—ú*òIk½m~ÎxÁ5Èbãâ£ÑA„ŒG¢1$¸ÎôoZˆ+ïÊLä§p%RBB¡†D@Ÿjò-Lå#¸\C—ƒ @¬|节a\š]‚—ÇRB"LO2Û™ilЉC¨å a¢0ùð7Ίa²HWÆqAÈáF-ô—€@` \ ׈¨Ô:üN§€ †ÐÞ:ä 7­+ÞV þ )…;[´ eÀç+€Õ—ÁEâ„„`š™Àñ™„\*ÀUÕÐñÌà¥HÌH 7žÒä# JQHdÀ0áøKò% ÕÔ›" H8'MÒ,Ršƒ¶¿äé%(r#„¤TäÂ“Þ šBJjá–.#…ͨ«„S« 5nt ¸=B·S -žE´ùÔˆ&n Ø80þ‰€©åþ4X€A0–„3P†À­Þ#øø³Š„Ÿa™&hL¢DIÀXuW˜¦ 0¦ÍDi3Ñ®|m Ƀ8 u¦ YˆF€: €,”3ë’T¹¢® ª é¢âÒ(K’Z”i‰\‡¶Ä¢Í›°é˜Î‚]ˆSéÍa+¶é@an,õ†Ã”¤*ôuz0£/‘lf†ún&ÔªÌd^¬Y©±p–Yÿb еRõô(¶lD•'.ܽEp¸àW*{n?&Q«€Ø¦…ÜÔQ Üó¸‚Ý肟©XÄJÜ:`ÆÅ¸cѸ0|†”¦D©'YìbÕ:ÒuJöT5ZRøð¼yß\c%™-C!˜eÉ\®ˆÙ¬Ù ²6\{:%ÁM¥?øHBDÿ0£ˆUv®¬vd#Ù~¤&&¤ˆ„†ŽÒ'†s¸Z†Þ”Œ©ˆü-P]Iá1fJâ%B¯øÃH¤"h¸…J"ËWHÁO†Zo”’¹žið˜žÁ3M!(«ŒËáÆj«eÔ8Ì@€ _¥fô=Ú_„6Ü6ˆI„Ý/\ÕL]2E,(@8Ö‘¤Àâ FËV‰Å ˆôþdš4œ˜R3—HÕOR«ÕNèÐo0 h©×*„¤LÄÉRÁ$d7T„+6| ÝÁ/ "Üz+EoP S*}xê2rTED.)SèsÙ\Zu‘D :‘ÌÑ2šA]#»aHØHÃöj:- ¬æ“2ÚZb‚X¨årî#“PåÊÊÇ 'ѨŽE0Z…B‡b±ƒƒL¥$Ÿ×å ½UÉ€÷-å4†€ MƒK£ÂA¢Pxd|DZȸѩhKŒ#‘LaÓKCB#΄ò.„‚ΨÉ@bK=ˆa@¡jx«3ŠS;–‘Á˜“ŒPBàm®H8 ((2YR§31ß;± µÜ‡‚)hÙ"a5=Dg¤eb ±Pì.ôh½Å> µà®gT?ˆ5¦“€#`ð?èÓn^n (8JEï ,ÃQÐäÈyH‹H€Å°«F"“ahrµ^‹ Éà±–¶9UpUzÆÚ›ÌUÞÛ)1mlHBZ|rb$hRÐV@‚[R<-$:ÑBÓIi–šà óˆ©lCÐô”h’sJŠ›À/5uè$¾hâ$ñDQ¦1Éúgœc"›e¢h¢ÛÓåùóYŸBJÊd”CR¦;X¡Üë”(7‚¥œÇKÊ!a»5ˆ©ÊÝLðOIZ3uxtÀ02ì·Ú¼U0«€Xp:Æ –+´œœP!q©§ ;Fƒ>u«Æ²…™ –Óxä*°H¦`BR.rR¡Ð?ð Ržp‡`Ñ×üêÔ0ðÖy;ß|Á¶&"™áFw”ÂA!…ƒF0½Ðq21T$r‚ÏpÄ@KáQ¢ÂAÅ!%"$EÃÐ㈬“h˜8—JJEåf>‡rŸºP%ùÜ Å¥0eÒ(˜Öô9jIáÖËÅåÁ.”¨Q*°JbG´(0êÏú FGIa]Ø58Ú»ý%('iì9 5`Ðq\q×UscJ‚B>„é\R¢Bþñ#S! $Œå ˜Ìh|sÌh`á„ ¶Ád³"ê@qiF ;è|©XxXçŒÑá—8¥·Ã(,G´ƒÅ?‘„>´ã©¦%±ïa„Å!n‘ „MÀÔÉ yºí'9 'j ×I%“øÂ¡¢Ib©–þO&ÄL*ÝÜHÚºXksO‹Yë#óÙ'0J=§ÓQ©ªQ¹{Bœ&›õ§¨ïÓÃb*-äTXtœgVˤÀƒ†2m †ŒƒñraOö'¹§òix)Øâ„t‹—È™€.Ñ!KtqÖmŠ‘xˆÇíVÚK—«Ý×zУŠÜ ’Ãq…F€4#è4!-¤pZ*‚Ç  ˜h‹ãÁÄbØ'®Bd…ˆ¹ò1¡½ >#P³‚&-r¦AÉÈ#á/hÐ!C¬ÉP( MšLEZ…2ð‰ÁXion3[m^øƒ˜±Æââi3–±åûø=«êñž[ÒÜ1&2wzAªBÃUÌJ‹!rÁÊðˆaÈaZ´Sy‚¢?þ j¦ß¡M’ƒ;:\áÊGˆZ³þ¢ÙV“ù?0pÍLˀßç:ø˜øÏ>^¦óînî/ã¾ëùÏÿÑçHÉ„Þ<í„ ê†ÀŽR¾ø)Aä¶•ktw²~‹YÀ'žŒAs^”^KÇÍÀ~2fá×KÉ8HdB"J޽$Ø–#•Jf»é¡‰féÞÇûÿéìÐÑÈæææÄõmÉÏ«Pú ŠOˆ¦§ý°:‘»96ä…¹³žã«§@BBCÎdköº ¡‘K…B‚ýås'PQqh^Ϩ¹YjB¬0E‹Ôz<Ä’|†Yu\—2 d½Èh=g‚˜S¸IAÔfžO„é8(®JOO÷1ãPL6€ ý£EcJ½J…á <„ÊÇÓ,ƒLhdÌÌ8” X䵄¨À±®îòçTò‰Ü¨~ÄH­D ©šH”(áé;ÀèV”ñ!ÔDK q.PûLR¨"uÿ·¬î¦.QË^͘7ÖÜ¢‰áa´=cíkDBx/¯í?d/AûÏÇÍ[,v÷!ÜÄ^^n6„×óFÄÚõÜþã¶™ eâs/ã1ö¿›ØÇÌþ{yx{¼´ÿ_ÄEGÖäAFºVŸQ”IæRÐJzÜ<-Œƒ‰o3Ô*J¢ r%Z}Žž~ЪU*æ=¤)0x®/@,tãAo½š±ÉXà.t{¹€øï¿¬ð¿Fd}že<†ÿÝ=ÄÞfüïí!¿äÿqE„ǃÎnÁµ4Ö¤€|‡+:(l²H¤0ì+ÃËΞBw¡»ËCì«"œ§nBæ]64á;±ÐÇ®/¿Æ¯¹0Z-ÚoRx ÅÌ{]––”ÈÒ(‰œ¤z ÌàWèÉ&š‚ŽfÀÀé¬ô¹G8 @Mè‹ßcÁE8‹…žB?€Y]|82d«ƒŽ-Ñ…èn¦õDèxß*%z•4«ˆþàa¬¤R‘§WÈÐ{w@.w¶òH~Òé½€´i}KI(ÆOÁ}eZ J.6&Ö)”:ú‹xœM¢ár’éèÆ„RkLªèaD, P¥À¾tvú ½é}I¨Æ Yh¸YÅ ]*[{w@a“æíÄv†&®t 9`)4*ÆîáJ¢‹fÔ LéçÇ40$DÈ›éð…ŒáÐX‘õ2"ÆÒ*7ðÍ `MªãX<áê"fáý†qca°„B„öå4,‹!úâÃiZ#lÔd^ xØÐžB1M¶½a—õæâM÷xOî;“šš~æöW"€ ñ7a1Ø_½è÷(9PÏ K1l&æö]K¥SÓ}ÓñL»úä¿9ÄG‡$ŒKˆI„H|àAxlhT8|‰™Öé\Ê0LзÏKƒâ©/®þÇ'ø=÷áß³Œÿ<<<_Žÿ^ÄÅmÿÀIÅð1öhzóñŸ—ÇËý_/äbÂ9ËZ" Íp ƒ=;§¡M­ii|-Ý1Òr%*¸CNƒÐªd(¤¼3z‘­V¨œ9ÁøéSBœ•Çç@+ 3(¸‚êYÀÑy!<t˜}èž¡Pià‰#ìÚø£Çºôê!„Ê!ü™<25V¾E” e;;r+!r±، %L9h{1ƒE¨Z Oý%²ó½ ® BGªJà”ÂS¢ƒc}<%>(“ BF²0ä¶ŽÅLÂ'*—X‚­H“R¡£€‡™‚Ÿ|YÀT“A˜)ÌY j©D™¥¦tþ^€qDÙy"ä­:LP“¿›µþ¿¸¬ÉšWŸ[ÿ{ù˜ïÿ*à¥ü—–ã0-I8AûÙÉ}¼¦}óªH’«t‚ .G§)Òb0焘høËmµ†T9ó˜Ùº;‰ð°(iÄ¢Vdo]0‚}ŒèîÚ™*ŸJi-dŠAÈ…½Ž¢¿§8ÑyÓ*Ví”j-I†ZVDa^QxE9¥ ÑÂ{X0ýn*3KDCá9:)DLqÒ)t€`©B½ ü’I*žir6!§T#,&±3›Œ„'°“bêT"%•oÄ~)šÊNúÑø ,64Ø„t 4,¨Ð ™@qÖ0ÁŸŒ¸áÀ{ F8QŠ\Ù¡•䬜x-ä'ƒÓ ’·”:0ˆ›Z­×¡äØr€îg¾•œì ØÍïL‰À¼o¡c‘…R©'Ù¾%Uª)¼¼ ¥O<åïτժÈg Ø7|!½!Äð\îÄfRú gQÀ$Ñpx8lȕǣ£˜˜q Ç,àtÿÇtÛgêWÏÒú¸{Y47®tEÐ&ßBzºµ dѰƪMÅy)NÛapfMŠ:þÝâöÜeUÿÓæÔó*ãqúßÇË|üçãîörü÷B.V»ãÁGÝC/ç;l9/°Oøœ>|P5Ðÿpû\n Ì$G¦.P)äEΈ·1ãÇ œHâ·B: -ñcØfÆÇ¦)dܬè––é"WÂɉo– ɸVr¥L–¦„&º üÒR­@@B¯µüDºµl*5<æWÄ&«…¬Nš '”“y1/L@AÂ[‚$‚LR‚fžžä¦ V³Èü’ÚO¸b#ð¬‚p(®b‰Fíêïí.¥DG µd¦ µ´0@øqæ¶+lg€Ï‹ôlI¾-üI}‚’¢eÝR%tc@]Éß?¼>ƒgpë(ޤ]Ái )ÉŠkœGÔ)ÁCÑ µ^%—#L.¸Ö ~Ç{…á’2JW”S `ñ¬H|ËQ-]”V­fÜa ­PS c¿Q"Ÿ(•5 ‹3.e¨aZxˆ)Šm§U+]Báä7 ²Ž^—e4¹%Ò'ÓW´Óßì-ò©›½£ç[œ¸¥[©&ú?<$,&\˜Û’ |Öëqþ_ÚÿÏ]ÿãùRÿ¿Ë$柃éy¸ŒàhsЕqxâ º”:—u^Òq‰\2uF»”{l/^Úl<«8K­”ÁMø)˜-RiîÓ)TE:-I áÄ#ß-Ÿ‰mE;`pä| —òªˆts§CºÔB”x©´IŒCgð*”„ K*Í8w]á¢r'¥ÒÆhå “%ÀUL@é5t\ ¥€¾Þ Š‘‘Iê`Ä'z÷0þÒ!al ªÊ,ú =pJíõ$)Š„ š]‰àµù¹BóÀ XY„€‚gà uΚ"8!ô¶e Z tÉžEAGp5ÐùA¦kè!R(:‹H¢EŽÃÀ(B‘N{©EÆÅ„‹ *"¬z)¸Ow…88â-„*À„D"Iì¢T ´¯ mÊDÓÊ  ™âTRÁ¡–Ô³‡Oíњw <úZ%…Áw!Èì<'ÐÕLš7;¨ w¥½Ñÿ¥^º±?Òm¡‡:„m3n‰~ zbî)Ûfȸ1WºPĆ6Iw Cž€Ž…”£‘è>?ÇÐ#0v™?½ñÀa+³Þ)üÓZ®ü‡LÝsÏC®p¯Ç­ÿôô[Ìÿy½\ÿùB.ü ‡,±•÷+´6¼AÿSª Lãì¡Ýt_fÍÀ¼Ð˜3.ÃŒÈ#Ì©õ€ëåÀDÃf"5ä2Åp” ¶óyª¦—ü[‰ßc—‘2z·}gÐ4 Ao Ò©58,͆B‰Ô!;Y­ïOðÄBO» Sì%õ”øÈ€+uEÀJ‡,êO8¤þ·{Œ¸üÏ6ès^òôë?¼Ý¼^®ÿx!—õög†OØéógËx¼ýïc¾ÿ×çåþßs ‹ MšŽÎê r@GvAZòH/È¡x0ŽGeÁ˜Z"xp$\Í¥8‰D(d¼âbJ©Ï,)±žG%ÉÏh™\ ŸL‘ÝEh¦P”‚dÅclîW­º€}¾d‰ƒŠ‹!P””ˆÀ ö+(š‚ ¸Rh)„Û`nðxˆ™}êÈBéGð¹˜óm*0äÐYÌ@ 5†Ù æäJuHÄqr%feáxôL-P 7äZ`1X¼xø {,* $¸ñð#Œ¹]%%¸&¹ .uzxÞƒD) 'U84µL,‘J'€ú ¥ål‘¤×hIÐÜŠÀæ€o-Óâ:uf¦’„-®TJ4É#²´¤<çX\ÌÔv Ä,`wà"‰¢"€©Uìq7ä@²¬êlñ­× j¡RV°°xÅí¦ï`/e_ròÑ·Ö8HŒsL+ØU„Ùö™ùߺüÇçø=éÿXùïéíåm.ÿ=ÅÞ/åÿ‹¸þ¿“ÿœ/ÙÀØWë´j• ·œ×²\¥€Êx[ŠBEn&Ai¥Hš¶+)Cx”+P@µŠRä1&Qê>yèÌž…P!À°I¦Ë äyº¹‘GÂÝê™êisf0¼Á æ̨–]Š+¹Ž yŒ  ­Kq:2a¬Wž-Á‚©­Øñ8!·ZÖZŽKÓfæ·xY·ÿ饺ÏiðûßÇÓÃÂþ÷zÿáÅ\ý­4JSÈ£¤ÀüS2v@$°{ÁXÈ<}®Šþ –Ë)øAìæöâ 5…X3ñ1‘OYžAôñ”P¦yšÉ.ÈL€ð ïàÕRƳ*ÝèjPÀ1+vŸTÈIŒÎ:«­ñF‘F™eopüeöÊ?+N”ghà@£+ïCÔDŸ‘«í˜©Nƒ«Ì0Îüa0¥õZõ?Ì|̃צÁ#”°Ú²6|â'Å˪¬%CÞº,džòÑúAkÉpÌA|Zg ô>k‰`ÇÀK3Ô…¦Cñ°ò–*KQzI‚YßjÍ‹‰üY Í·æ`,&,U—…ò {]›ór«=̼3o¥Óqíc&Ñè\w´ “ƒ¹^¾nÉ6•@YÙ*0+;­TWÂú9l‡Kì©& ?-ªÀVDA/,Áp—P¹¥2ˆÏ|Aæ þbÅ}ÈÁWdažU [KÏÁŽYêo½Dܵ[3p¼Ö4ÖmmtXñXsŠzœË˜.¤¸˜-­…†¥á))’©,ÒdÁã öN Í"óµà„ÃþGŠÖ –"NUa¬* û²Ïà6cËUmÉ‘À‘%VkËÔ Ƴߚ{›SÄ[tÀ]OÖh¬Ðú£–¡ã4Ú ] %ü£“±N»¦^t·Át@½Æ„2ω,˜Á@AJµZ#DsðXDñãÁã"žŽ¨°þ0 ÷r°- os¨°»Ò44ë§Ï©}-ì:+€Zgê'€Ó‚ǧÕO­Ñ (B¬Ï-숖p±šÃjê?;4‡ÆZÉÀÈ—°vV\7ÈYGÿ¤fØSš<æ– »eÜÃÍ"%%„¿E"Æ bÓ¸>ŽT\»í1Eµl6²éLK£åÃì@G@)âÚ’P²‚_É0ºÝ¸ÍA·ù$ãÙ`ô…Ùrñ³ÿzËÿ´Ëºÿ‡îðÏ©Œ§_ÿåãáîþrý׋¸Zmÿ4,ñþ¬ðq뿼ÝÌÏpww{ÿñ…\HXâf¶æ?³ô®Á%2A8&?ÊΗѧ‡›Ìãч>˜lçàáÍpЃfÎÌsd’º €¥#j8ý3Ð0:$.ž¾fQœÜBYÑ~9N^ô 3 á–KnEÀ­H–’*¯_¯’ÑG¿ÅD%1¯ g¸%ŸÏî>±(S ÏeRä“p<<ͤóR¢Œ"‘‡ÐMÄ Œ˜ ÷¨æ,lÈy|.^&¶Ó2–J)\’-)fªÕ`,Ñ((4a ß 2(Q6sk‹Db¡X,ô Ÿ„¹ •…ækz®¤P*ƒÞºà,}*çg_)ã+><{“ÌÔ*tМ%q÷ò$æx¨r¼s£“bâFº…ÇibuT”¶È…‡R’¼1¡bíØè¤"·"i òx‰Ý£ÅyÙc\b¥#Ý“&ĉÈ(ï|ßpE섉ò?/Í}®<_:V›©+36,ÂE™­…'©Üõ#\Ä£ò &äðˆŽÊ—åú)³½¹‰"͘À@0zÖªaDBE¦BÈ“€QUQ®ZÿdtÑ(ÐéÁÆîÐ)=Puã,µ$¼˜óï#1#ÿßÈÿ­Ë„òŸžzŒü²ÞlÿŸ»ØËçåüÏ ¹ ß4rµ ”9; •0&4ÚS%„›báhœg¹ÉƒÇ‡‡~Y䀑IÕRµ †b¤p‹É™Ô<«~.©“  ÑÔ‘^'øÒ:* >Ìüëø'+ qȃ¡ÉàN\A»éyx©–Œ„gj Ѓ+Ãе³``®$Å<. ˆ£îÊÎä$‡BáIap©ÉÏïæ":/@,‡r.5¢G 3®Íâb½VYRR\ ÏC‘ „SéHýðÚL'èý3eª’Z•ÛHÒ‚^ª”d˜‰o)ä7Âθ½Þš@Ïö Ó©d>³ÉÂpE|l%ÍPkFªü\B)· ¤h…f45.$>rbT +ÐFfÉÞñ¾SÆÅ„ŒÒ†G$»„Ægë ã³<´¢ääyc\Djïq£ã£ÆNÌ“GÆ)4j]¤»"+!9Z?Æ·€Š¡-öJJœ˜'ùŒ0®HUК@7§8·N Éé!"¨¸(ˆnLã¬üÀ(¤ÞPꈨpÂ/•UÜÖ@HH7¤?VzQYŠ|@~¡»ñ¹¥üdPñJD™F vgžZRóS¿%U À#^Ìþ·zyý=WëúO¼ÿÅã?wOóõÐx©ÿ_Äe>àÃ-Nཌy”+ I\AÆ,ëï™Hm[]}auôhQÚcBš.*ÈÐëtj-€ñÏ,ždg»d¼–& -VŸZ˜!3YGFiðP]^P.ÇXWkËÉL²¢)E´NúE% a™¼“˜,C †°ÎÙÌ@Z]Ï` ‰¡Ÿqª‘YHc´–ëe ðc}‘ »%¹Õ52Ü­TFS ئƇÁ%Æ-@:´RŸ3ßÐʆ:ô A ^^ƒÞAòÏ-­yº•Ï ŠÒ“@G¡_ë+Ÿ/(±•%ËVqW| ZI=\€‡ ÒÆ±EMs%0þ”(6|\"^RjYÂS-´ü»¥ìÿÜËJüa–N"……žWóÿzxXÄÿ{¾ÜÿûB®0&IšfÇÿP,>Ê7ƒÎráM:“jÝTN>U­“óñ`娈”h$P9 É¢:1Š\R»åZµ3·•òá –ÈAÇQgdèúB€›¾¤!øcúV ß‚?/ÿã.+òº@žkO?ÿë-vÿã…\VÚou}Že´®ÿÝÁ?óø¿àçåþïrÍŠèâÐ Ê.Q‘a 66¶óÁý©íÀßÉ MjðÓ†•Ô\S;Èf‚çŽšÈ À8lÓÿÙÚ§™^öÖ…×%ªåº‰–´Ó¾`¸„²ÁÃ’Æ€>66J£ÂB’ +¯/:Õ ­{tã¸x÷{‹zlêòãârÁ¡OÒ&ø;ŽqŒúã±!‡êG†¯œŸ4êÁk#ê7:Z{"áÝÆ×Uý3$I6€:5½òL…üýIû›šý‚ö7ß-œÔmÛµŠƒÍ…‹¶®?W<-¨¡Á÷@}÷<ªfV6f—ñ wÃnC a‡!×PdøwãÃè请]ÕŽ— –o×Êv™s[õµq’}5§ÏL›ù 'ÚlÙ>ï£JÛû|}¦æ Øpr¢Ü»‡oç7nuÓ·ïªmuõ˜Û%Ì&’ÿq[åðÒÑqíçÚßÞï7Ü»ôÊ7s+v¼z'è­¢¯IïUð¨Îf½àÍåíx+ÊÙ=ló³Te³ù ß™ ÜcnUÙFüçŒÇ¾ƒ«”Çwlw¼¼ëOBWÛ;mÞÊío“c¿zuù­U›SâwvÙèçv:÷ðt›Íº&Ÿ/Š"‡_Z²õ\Â(»k_8«ì/ß8üó2]ä(…4½ªôⵆÊ _obÛƒ¯Ÿ8}<{ùß_-#‹Óv§>RDe7Ë®6v›·ãD6È5úûËRÿë_—žò[T÷©a,Œ—¿=V8Ç=âʨ³Çåï¹U-k²;9Fu·ëÛþü:ÿäå{ù¢ºär¹v[õ¼+ºƒ§^òï=Ît>;wÙÜÀc¾Ms#ù;ÚÜñ8º«ã´„Ú¢ãïz4¤ËË~*ë5òØÇ]«+ßš–¨¨Ï϶U¯ì|ª^ãçi]}Ä}»õ;ºßz^µ»<èè×4ÍœêGš ¾<Ú­PÖ5yŽré’ÄØŸ;IåÃlv8 Íïk{üVŸ@¸QòüÎç·~ŸwduQðñ£j„^Uëšf¸škø£|ù‚æ£6=íVÙ9-ª› ÷îý•Ý¥–v0ün˜žÜ¯$¶¶¨ú]LqÕಾ³ŠÎí쨲=Vдgy§Yérû¥Ÿ®õý¢22°ÿ8ûöÛš©!þ‹ê¦”§”'O]ºôbãµC+úÞ^~ï‚íõKkêJºzÍ+šðÖ¢Ym–Õ(Ûz ë¹¥÷Ïo]ðìæÜð]¥T¾gIÝÚ̾;~ÿÎiL}ÓÝõòÍ÷‰ÜÿÇÈÍ×zt/)ª½{ÜvkÕIžï®Ž¼üóooÌPï«2Ô+Æž[t²¸¬orÍéGÓzoŒý·×Õµ©ãÿ¦ÛÑyÊgΨD×-Ýܼ¬¢â›û“7W¬kÛ¯Óö¡ÛMìá{¦fg§S}æïú¼OälPÌtOâÞAC(¥8èĪ W>àw‹\:G(ë>å›ü .ý"krO ½úzyõ¦ßžø½äû{_׆S—ã¾J˜¾£—Í£ö‘‡¾þêÃ>‘£ÛÎUîê{'/xý^WùíQg;URüÉ­î;vœn·öØÛïV”NêaS£u?Ð.¶ËмDÅó_ù®f®ÍÜe;ËÿfãDç•·¦¤ï(ÍzOùQw¹Üp¨ñ§°‘Ë}6ßßs±aœïÛ¯öì¹x ÓÝ#ÅîNo±ýR˜Mæ'L Ú˜|KMÕ~Ôö·Q%íÇó·uà >!ž¬úxiIÖ"éþEuÃJ ÂŽ|´¬Ýa åÛ³z×=ìµoÝ?·Mé^8h[‡KÝh³~æúÐ6ø¬úÍ7}Öʼn²Øl¢KOßMÔ†yvÚˆ+5íú|ºy@›)§Û+½Î¤ þð'çäÅ.³ƒU‰ …?r?6íæYÿ˵Ÿvzcn…ÀaªxÛÜ…v[ºo鸥ۢcÍ ¯–/ÏL +º3üfÎëû>¯xoU»ÃÊÒÑCBGn®®^RW\šf—3ò¸£tÓðSu=v–ju7ãÊ:z0kÁÃNçný¼üÇÃlD½#ß¶—7êÓvì‹O•bÛÐ>lÀûT3QPS£ìqv´!¢tÖ·çâ5N®ö8t@Yt¶gú¡‹/h‡_o{v|ÁÒÓó:-®[hXõóê‰ežÇìÝ—~Ræx²xiç&ª·JÇÙõµ;8{]vWûk³„Ÿ¾ÓuÙäçÄûþóŸÝõÎ<ؾ±:­Í$™|Ã'Sçå>x¥Û»c‰.å ':lq'î]¬¼9Ã^›r Æ»½°«ë²|—îÅ|Màu©gWÇõÕͯˆiÓõ“µÚì’M©52µ}ê„É'æÝ»?Õ¿ãϫ޽`{¶ñà¶æqÎ.ç«×ìí·fÛ}Û;¬,Ÿ]tqì×?ik Úü6jÏ¢ºCõ§W.Þ}¿úÚ寝ùëš®”(öEm¾×ü ~6 _矴ﻥ]ûÛš¦ƒïôüåá¸Q¯nlšûËgež‘jYózÛC ç+7tÚûáÜKoŽ©ŽÓ½iXÖ8yöï—§õº>rß…AïXX2«è³UGg$”÷ºÆKu8’½f[õ£·µMËÆ îÃ[ù•ïÆqÁ·®ik?j÷Û(Ÿß߬|d³±ªzxßI{¨-Íß”Q˯,‚†Ê’Uµ¸B`¿Ýã?{†Õ?Øiès!StöÒEž<Á^QjXð»Ož3“$í3¦)Ù]/ê\³TT°kɦu[z ^üËÃ&Û­_÷¯®»yÁpuuÙnû›çÖ”Mðõš¿¸S¿ºiÝ4Úàõ€¼‚®ÊÞã¿ûÑk—Þkvõ;`dµþ6¥ô¨v‰û¦Ô’aéß~¢\í·f^Å´WRmÀÇ#{o?0ߥþkiúíƒõ~0ÜÿrËÌ>ýÚ¬j— å¯v2¿áÜûíŽ_vùµnO•¡‡íÖù f8yíû.æP[3~”¢KÆíï—.¤æ€Z¥$ÙWØNêY^ß­ !èÖÛcì?wíëVõïRý?~}t±ñ‘þþßœ.ºZ0òØ'í<ø+ÏCŽŸ]IÝYßõRåe³Bêbv–x%^ô˜MüQ%Ú¼~ì€W$G W½=çŸtÜ}48{FÖü:0=í´ác;îÓ/~p_º*‚¾\&ÕéZ”~ðe§®5vkK6ýôÁ‚_@í$Lœ¹4mfÛßÞµYÛ¯üä;@­ß쟾µtÀ1rŒËüÍžóWC8ÙÄJϲE7çzmJýnQÝ?¾ÿxúé…í>}}æõžé”žÚÐP™C¬ÒÕ¾öë´v’:›xÅ}óoKA×ù~ñk‹ê¾>S%ÑOÅ·ÝÐaæÃØÚ»‡J'-¨èÙ©F5Ú(Âs€‘âìÎtØûzÅÇ}öÞQ´=œÌ_9ΆOÜ»SyÓÞv+¯*ÅÓ-å`ð½à.ƒŽÜ<ú£ðõÁ'´Íc»¬˜0jMb~Zòï·*©‹÷û-ø×Þv¯ˆoHºë:­Yî¹)u›ð¿=½RV÷`Åë‘ÇW”/\¾½hò×7©Úãí~{÷HLJŸ™c‰7W,øw½0==¥¾Ÿ°8ºfïmª¶WûßÞíÑEvÿ_³:³ÿüôdï¶['–DÖV6çÌw„¯_~Oy˜arPÒe§MeÃݪ—öD©­7ü×vëŒó•™m~{· Î5mß«ñšÿn {ùò‰q²iG‚ˆë²Âñtçµ=æ—ƒjÅÛë1mÛ«½gím·)*=×ge_UŽÜ<»óµ¹†«](3Ò§ ¯’Á¸#c俥 ¨€ßW¼qÄlÛœöšB¿/&«>+ë|Ì6ø{§~ï ¬ÚÂ÷Ýué`ȱy ®½ç—Þôýå.¢aj Pîã'½Yyæçvòvk{Mx«ÏÞ³WG×|Rµ¡ìÝ9³ªÙÏ xÓ«¬îÜ×}Üø›€ýk{qqï‹Ê›á ¥ÏõØê0áhÍâa#Ôie}ö~r5ªfoþº ³v¯Ü•©y8~GÀ6-h4ÿA¯ë_–^L)õ°×†ÿಭlû¿k:¬—¸‚Š/Ô›‘#«ö¶­jսϫW7Tž›· höN_T7«¼øþ¡õm½µM—½m³¨® aŸvܽº((,Ž¿£û–~w¼äôß\=ù£„{šz‡;ž ¿×pç¢Ý”cíwöNý^9÷Sùû _Úª·«Y9¼Íí}~Ç}õ?Y€Ù—õ›™øÇ‘úJJõªGoÛuÁ—û|zß{_ÕLß}õŽ#_=!`?wÎZ‰ïîÀûÓ†‘[=/^°%ÿiÌ_y±ù_Òc_¯PoŸúiàÀmsë®æÈg„¿½¤®ú³7ŽT€Ê~^>ܧ¾ñæÛŸ~ä^ãFMJõÁÌ¢¾·ºù5tò ­ùAdj¿tyÚZÿ#5A+ÃÞ;s|Éò§=æ-}åæçS">ùïðy?°è£¢[WC'¨¿f;o½T¸T\%­Q~Ò¾¢îò|Wsü•nG©‚͉oœìY?í®nÿ×’wÇtšÓåú.À4Éͼ/_2cS¯ëN'åñ¶rï×·8ü\ßûçš²å§Û)ûŒßveGýäÌkC䯬¢ÃiKs—#7weØ*ÏßT±ã“´^^Uƒk®fí[\߬¯Y†úgÞ X”Ú÷gÁ¶™¿ÉµtdÝ—C¿>#~WòÞèkv*ï*õ’º!Ò3+ÖåÊÏØ?l7u~Ÿá×ÞØW“Q°:èä›®±üä»Ý§{æÛë¼÷(0ˆ_+ØÕÕ×eÛÜ¢ñÿØ´à‚Ö£ú@MWïª÷j”—~™öV…@)OY\7P~{ØÙ)û& Š9õ¶Îꣵ˒Žk Ê×}¯Uìy£”ë—¨òŠbý®u;†’÷”ÙÈo¿F&çù\ï¼Ñóü×3W–µ}+ûjuG JKÅ¢oÛeí¹hwaa‰~…dð-±_ÃtÀÚÿÔ£K~\Ü®“íš1AvÍý¯¼ùµ‰G>9õ݉M9]prÙ;×ÞžêNÜäï{Ã~Ázÿ[|¶u(ZßѰæÓÙoüðZö­ICV~´Q|k©çÙ5‡xÐËv¼xÛÌ¢Ïs{ ’ÛÌZäÈ»ÕK&uOQ£°Û8B×ãfüìSOžéÓýÁ•7 õ_u;ÿ}âç½æ/¸ë À½²¯^½r»Ë@/q™öÞØÔ·ë[÷pgéÅNTí8€ü‘…Õæ»§Çg§Ûiâ ¼'‚ì\_™¿æèŒ½ÿ¹½¬Ònè·G‚/ \ùÕbÇ“jý®”-ÛÛýÔƒ3†“ü”Sƒç÷Ù»ý÷¨Þãâ½Ö…]ø¶~ÃÊšš5WÖ®]dsè¶™’SS;‡Êš{ã&õ½û¯6ymÆ?Ûܯì°¶ÿwßÞ­î^Õéj`%¼ëuûÚ’êá%CfÔþ³òæ[† Ë;õ1ÞþÒ{ñ³Þ¨›6Tçè’þ©†Â-Í«KÏ»÷Ó ±×ýºµÑVØ©æLÿ¨àÆ1~ N`ØU-ßR쨖 »ýí"o›\nï×uKà¦ù[§ ú¥2²~u4ˆm·¾"Ò&-7Àcks•a½ArèkÝmJ+oþdXýVNÅ¥8CÇ1¿ðW(ýÜöЙŸöÞ®]Üoуèôü´¢g ŠëÔÇC*Jæ4+ Žy»æÂ«oN* h;5wYrÃpuìÚ`yCã™6§ËN¿Ú{Ë„.ƒ®–DõŸé2c7UÛ0òíÕåÇì'è^’P{wgé¤Ïgì}=òJŸ¥ÕK»*G5Ÿ¿ËöÎÔ¤;ýÚGýqºúç²Eµ%=ÅKf6Í*Äis†¯¬n>jhg¸qèëÎ¥ö`À2}ÎÐ_ýœz\¨œÞiûŒì3]¶Úý<ø¿f”Zþúø£µ5~ßÓ¼³º÷Ï?Öä5X»â\ÂÆ¯á¤sÌoUåM¯Ý;ŸþSåÍe%Û/•6ÑÝ­úU—ùu[›Ï—¯»W j´NLÄœ­ÍFöòðé{iôgü•+KÚ‹oØ|Üfé~K}~8s¦`Ç‚ß Æ<8RŸ£­í›TÉ÷’É›ì÷·ù÷ôïëw½^þfmMO›üO·Û”§ñ«ª~åÎ+×oÞqp«z³CŸ_"§KjïLßU~8³l]é›e¿/jZí´ÚõõƒŸ¸îÌë÷u×}ý³dÅ.‹êxå»>Ø?Æ»ì~ßÕM µ‚ŠºÙ3súÿgYÊøÐ¼¦Kå ¼Õ‹ê’F9ÖuïöIeïòjÛŠkíûÜp9óWv4l*Wÿ|~Ê£‡oœ÷<»³òæ®æø†àå=WÌÑLøò׋'K½ÞJ[¤ì⑲hÓʼ^é‡'=ºV]¶ak³ÏP‘²MÒéì-Ã+“oÔ÷[Õ燚ž«·w»=2½o»âÙ7®îD¥7ëKŽTÿÚçK»Þ£Ô'/ñl º\ýÙ΢àÞuë/j¿C}{©í†Þ>ÚÞÝw_ÍêæG“½3–´m8Ó»2mØŽGVÛ­^\¶/´©ÍÚ“Í{oO~8áìгÛOOn<ýó—.粉 \úßøõìƒ6µ÷²?8ýà å|æìMjcŃúú›Æ=:i7zËñú+»û%]»Ý°aÑïg=–´YÛeûkãßÝÔ¥X{méìÄɵ•#ï¦殟>}cí7Ikªº´)|uãØàF¯M;Ô;kö.Þ±¤.¦qÚ¡Oú¬<Þ£ùþ¹oÊêÞ;ß8/ááIýÃ]g¾¹±yÒ÷?—G”]kóÛæ¹¹®ßwÆÛö³ýÇòJ Ú7åºuü†º¸®ÎçÚí+î—©¸¾¬ó?*Ý”]£Û.¼²{p¦Ï˜±?~´¥ùƒªM R³k”¶û ˃"ö—F•̽ë³R2©ýýwVÎ]ô¡÷û—ÄU¯—~]úÑ­‡wyû†’î+·ÖÜ/X}õvŸËWºŽÚ½¥ë5WúFO¼úÈ&Ýö3"çÎý¶pê?*<6lýˆôümk^^ÿemýÏßþ“——ÛËõ_/â²ÒþZu†ZG u…ºçTÆcÖƒoóõßžâ—翾 -<–À…ÇþÄP‡¥R]àO|=HHJ¤YΜ0y®ÆÒr\‰|¦XdŽi~2N±HÄ|6À]ºP£§²œsø8^D­Ý3Ÿ)µVçÌ'q%2"AeÁÙ)<ÚW©Ve‚[nu%B%©ÊÔe"ƒ¾Æ@§¡ËæPâ`AÖ4i† e] )]º4ÃÙ$%¨ŸaI››gEá|ÀëAÎNŽl¬j'¾0_¢t¦ƒ'˜Áf1+fD) ¡éTL  7ÓÆfZ'Ðè)n¨±±AàùÔ„“£áÂ…˜‚Ó§š[#Bf­8)cPâ0ÈØ~|˜É< hÇA,ÎR@ņ»YŠÌ,% ðëOè´zxž¹BêìOˆé0ˆÅ@þÞ­Dñ\é£]ü-ÚÓ•P*r˜7¤ _prbË÷§H%HOÊœ8= ÷"3õ5“Îö'óZáÃpMÒÃ>þž+‘É^‚^Å#˜MÓj‚,$¥z‰žîÍ9ÆÅ„Œš1AÁB³`Â(*¨ŸS 㮸¼`¶éðéÁ°+â÷è-ìÂÙð%z'”ƒœ€DZ•.K ÍR(eÎî|B'ó—+´”¶Y¨s¦ÙæÍ3Ï+d£³©…ô!΢ÉÙy„È•prâ¾srºðÁ÷ƒÄNØðœuÐU-÷¶‚Ûáy°“*ø+9! n}S«@w€²ÇÅiHvKŸ³õCY¦é´Vª¿0¨0É„x|»³SÈaŒ” PdèT<I™ÙM ‡è»Nìžxó£³à=•Ë ýïžEQ‘™pÌ"1Ù$@3÷“Ûá¿¿[E½¼þ«…ý_(%}>{€cÿy»{˜ïÿñññ|¹ÿç…\Át-‚¡5Ì€¥º¨…*Ÿåë¦)„v‰ƒ ëA'Ë•â@Yþ„Ÿ“J4”àž"J }òKäààˆÏ+´‚†'*½æX†»>”b PÓb¡™k4 BÈžœÆÉ€OÃàhкpp4F§…øÄFÚ'æ¯EÐçk9˜£á®Ñá—PKpJÎ}ŒÔúnìbÏfáS°Š[ŽN¸â@g’ÁWþ„B”ràV1=ÛûÉÛ´ŠÐüa¦Ô”šþ0¼ …9ÌÁHdA†˜%¹kcÓiI‹¶`“¹›þ•pR ’dPj%°pŒDD½ƒÍ‹ŒWÜj&ïè¾ñÒ¾ÜORµR ÚÅÑ]f­S@w µRfüdÚ;L 2m-ÎÜþ%)‡y " ÃÐeL'SPPÿƒ"}cÒ¡ÍŽ3¶FMPmcßæ‹©dí5ÂH •Èzª¥$ˆ¢æiPÇ Î%e @Ü42–½…Û”lõài¦=Ôäô±§ ‡2C%+‚ÃÝ“–LY\–4cGN³¹3¢ ×Í™+æü@Ãñ1ãqVœÚZÄëQÜ$‚þ&ÉPç“tÕØXeË®Íð1P‘ cJTºa-ñŠ·›‰üb0)XLAçc¬tG“‰ZEvB-o aš¸¸#»ûšb"4ž‰ÅRSNfø° ‡AJ¬É ¶!¬ŽMLÚ75‡«Â½à´Ô–q(ÈRèH è9HP •hÌØW.ÉU(AQ«$Rµ+Cª”à'T­Ð%”+Á cCP„±d)æªUj‘[Ì8j1×X–R…ΓÅIÉU6ˆ-¤™@k.ZâI«Õ„-z-sÌHo%7’SV;-#!áÁ[-Á7Žvž3,/¬F+¹äÎÂt!‰4Ú *™€Ñ#½àøÒ÷GF^pOÕ4š&Lv?tµn3X³J|0•d= OcI1jG+aà"i!vsŒùK§C[ûÜär¹u8¸3²•ÃR©´¥oÚÌ ‰³›+Aÿ/t§‡È€K2r:ÍáŒöáênA®zJkß Ž„°øn„_(]Ig@Üh@~bЂÿ±(‹|š,4O”…n JŸ =‘*ÍŸð™ÜÙ7Ä? ¨-§+IõZ ¶F­0ö5nßd[®…–õôô&ý2¸<:b„ár zfxÖz>§×ÿÝC£ÿwüO+y‘˜µÜžÏDàÓÏÿûxy¼<ÿã…\ÖÚß]Èž~þ\Êx†ö÷ôñyÙþ/â²Öþ´±÷7žÿ#†þ¿—íÿ×_ÖÚùížã§ooo—üÿB®–Û{o‹r•ºŒÇøÿ=Åb±ùùïž>/×¼‹9#ßÈÎsp@žob* þŒF’hÆ;*P”N¹’,„‡[À—@OÈ0;1*1.†¸„A ÕZ¡šF›€R*rH""eé(È3ʧà Q¤ÖR‰ŠÐS$¡@K0(x@.…Pàä»è ½VÛ‹¾M™É+4óÝ~ª²ò`Býèo`ËÛçÔÿ›Ó„$âÁ4¡ãÆ Gí)ݳÙMÇ’îŸÂ9ÝBáAù"ú>a5yä˜ÁGÿ×Z÷æŸú¿:b¯°Qþ?úôð³ÃÃrüwÿ³ÿÛÿõäO·ÛýÈ×èԳ÷=Iߤ³|q ¯/‰.BN?úè"+Ð,@9ÁÝÇÄÖ 0OqT¤,A^$¯7¸£q›É—÷Ê_Þ#!H¿;.wŒË„†“¯Ê_uzwEÔÕ¹b1FeE¦%šDë„ÅãäuJB‚_¬Ul¥§'ë1Œ±¸ A/zq‘.IÁÑ,g§øhMHô€…ôl¿&„nºµ“ Ú,WÙx=#Á}𥳠^£ÑäÊgQNaL^ˆæk¾Xاë‚€,÷M²Ìò5ÝåÄ¿—h»0Ÿ$Kº§“âµÜ¤uëG¬”‘ A»AÓ3ï’œ[xJÖ"[ˆè/+¤™a(º_d9"÷'sQ>Ó ÏÒ¾ åÄ(hú¢H8<¹çùej±¤è8ÆjÁÝ8Š<–ž?`æcžÙ2Ý+¬ÖdÚ™Íxx"9&4 ÚÌB6QÇ~Ì"Œ“ÆRšb¸sÈkkX}’ßu弤_øªdA÷Ðߦót‰;]ˆiBF¹Ê״Äý &ͪºÙªÒ+Èxº‘`6kºs &¬_ ò»£›è|¶æÖеU~žò+"¸«OV„ë Ñ,iºB@˜NÊz™® º¨!s‘}â~ô†”ØOq¦zë"Íòvüø§g¦Ò2nøè:à™Ùb«™*èˆ&a†|ºP|f{•f£ÕUnÆŠe.pvâÑ8:7˜¦i:qÈVùGQïÜGÄÀ»°4FRrÛÀ*'o0¨•°•œÊ¡ Îh¶CDÕïG’1¤¥cX£ãyä&£ª¢Œ—†Ul†Jøù}ª y°“ìMÊ›ü`-ú8m5€° vÝMækR fo`I8éDߥxטªå:&O¨Ú¢^Ÿ|ôñJHy¯è$,sQì~ùµÝïDÝ.z»4™r豯¶øƒ)ÿùÏÑóÿúáéÏŸ<ǯÃ_~Fƒ/Uùº×ëE_ ¾¦Ï¹/jÆÞ8ËÏ£ÄÆbœI­`eI—°ËeJÄLj‚r…Cs•©;ð±XœòñšyG/zì±~=Ÿ›½Pãæí]&‹vo±ÌÆi'z¢Ü¦Á‹ä(()0#åA„Í $wð4KˆIw}©¼%[F-†Ü’{B˜ºÅºªh‹ ×g³˜!CÃ9cy6’‚/ Q"1 ψVL'‰øMÛÓfùÒ)º,'èpçL¤XÑ£Ã^ô„Kqlrætçt"psÚºî‡jG)ÖÄEiª}µÛªz¹\«Q9½(z K–Øl"¥Ú¯ðÒb‘Ž3 +àqÀÁC!å¥ò°MHývVy!Ú0:W•/бÝÐ ³3Ò·ÇËl$w$«EO~øûÓÿxò÷Ñßþó̤ùÜgfƒ[^¬hµtOŒÓ¥ÏHõÛh°'ƒwfBáüЍɰ~±~é"‹è"¿b6bÉß2a(Œ'C¼==nŸ|÷âѳçîp§‹l–Ÿ¯S9ßôăŸ¾åÃø#á%)ªt‹=Kqu`€KšãuQÈïÉêÄèx[õ£Ó‰œþôâ¯OŸñ•¿JàmÁsÑðËËõ¿ÏÓU‘{«ñ¤—¥_m”¦š ¸5óIôdþ& ²dZÆiî!:§Ðh“2Ô){`n±Ö~d¬MKˆ©¸i“]§6èÝ+KÚ]CÈÈy;…Pž-Ðö ,|™¯Ï/ŒµóM†Ó ,w9ÝÄIKÏIߢiÓ S®¹®1*ãDA/gáôM©9Øø³Ýô?ä+Y²Ãe¦×T‹Ÿn’_×9_7Ëõ 7LtêÆÕ[˜¿"XôðHS&UÀ»)Z€ãb‹v—?Ò÷‘l@B2mbÇÑc,o•çàÖ7Þsz£á˜$3…r™&§yY2Ÿ¹Ì?BOî®{Ÿæÿ˜¥s[d.©PZÓ ^–LE-xyz :š>ŸŠTEC¿+]‘ÏùÁèû'ß?’fxŘØoÊ*ˆcàäŸgH…è{ÕU÷p×]át¨^Bè;}þðÉ æÙs$ß"yÀ ’/;î´,9Z[“Nq)³:$ÉùÜÂÑ«OÔ #úîqÔfüBRîø 8µQ´’šó^†·>ÑÛpbˆš™góÏÎç9œ|í‘Ý`¸¢–Ðu“#ÄMFL“E@4)\„QÙ Þ8Q ç4”‡‹;ä03á‹’®Kd€]Ï•*t·Ýš˜°JäÀW”O?ò’œAûé þS: ¬ïÈ ¼È–¬é.’Õ…ÜÏÒdj.©6-}–¨4—^.V7öÍ¥þ®Ri§g„¬±•?$6•£ Àp08‹é“³¡ˆnæ÷xеÎÎܪ½ÎâÁ^ Ÿûå·û1}w‡=‡ Æ:ýŸ¸Öt=cêWÍKÿ"7 ®ÀÍå@á-GŽ$›ý¢®9–r©U€÷Š•ƒT¾C6öP2Î[“‹‘£Â´d}ܼ´¿³õr1Üv Ÿ8®é+e3ƒ§+(‡´Ô,e}ž¬—†dTîQ›†LÕ¹•hD· 7* Ć X&W]†ŠE<óñ—|¾·Òèi½O»gÖËRfÆ'ÍšJaY)„š¹ÎÔ­xó,Vcó*ÀbšÁ‹?¥,2Xÿ|=›9Ì«à-€P¢ë‡±cö'·|oàÌȦc·‘r 1ÌeƒÉ^™ø¯ÜݱÆI]F‹§ûp“â Žb6á‹ïЋ¦`=ˆ48Ã¥¢+ñù®ð–a´OŽý?ðÔI¾ªÓÕê¦Ël¼PbU¶ý“Š(ÐjÜ’?ª–q‡l.šl8éèÆhhýÊL4^vz,DÎ×½$ W´JFåË6AV;bˆbš¯Ä/:ƒI;ò%š+’!9!Xy)š×]ä"1©½–`ÈûQ{žËZ9ŽáóŽÚ4íàå˜åË`*gêv‘D4&Õâ2 ø~ÃFÉs…„âé?›²Œ¤‚²£%"ÔK8 ] MulânŒAáΞ‡€Üý#vdz(õT V",Ÿ.ãD„IOö÷>óˆo<Ëõ|šs áþí?_=|úÝÓgχtôßdË|6l!À4ă´ár¥³üªb:)ÆY 2ñIÈ[kÒ ç$›‰DCŠ' â/N£`ƒÎO/w?5Ž[O=i ªQ"ܦVk+ (½v,¢õr}p4·:5çÊ-e—hÂÞ.-]ŒLZÏ£P ÁnANÐÓÕ Í1#‘ô_švˆØõ|´&Ñœ¶kèÐùx¶..|¡IE¿Êeç„ör¿lj¡ j¶ØñéøÓ¶ o“R,rñGÂi#OA$.‹§é¬H¯àM(Ñêu_§7…Äó¡_ìq8ã<º¥M`á ±LÄN\T½Z}Ê[úýCàxùð u—¥ÜƒÙ*d¶#g9˜p7o"æ’ K¢ áÂÄYR_¹P –±ðF逼ZÑáô¾ÒÓê6 æ2Qóó]$³×˜ (P»#vJàJ‰çþB,ÀÖ/>¶¾ãØA «™ÃE8áÔÆq9,€xä¦7•?Æ”Ê÷È]\•¬Æº/¼1Ÿá–0"›åÁ•üMb5tLCœŽS^½¦Ý¤ÑU?pª- èë(˜K ¬ÉÄæiæßML›v™ùw‘ûÀW-–e ½ÇU4’rB4±b¥Qr5ï<™2–´•KÔQA—›ñyú€ô‚$Ÿ‹˜¼3ž¯ÀØ/cò£ÒA»P^f6l¤Ö°Ç¶VãÜ”?CY¡3!’Va®:ü$ëͪx$Ï;dÂR«3$, [ôH˨~ \Ìå¹x¸œiÔ-¢{n–wNŸ}û¼‡-™ +[«•lórhz·n?)…²&÷Ï#s³ÛìÏÉ`+öí‘ÛËö€jT|æûfB]ÆBÝá#Am•²ZðØŻŀ1ì®GvΩ(3ç…ï–PDŠBr>ËGÉ̡̙"jQçÖÔtÒ<›D-òìT¯Øùfc3Æù’Øáñ2UOñÐÀ³\ 1‘Š õÁ¨ß€g¶›&-¼2F›Piføû9‰ó‘vz8Æ:EÂ\QÞͤC²%ÿAm…]Íl> §ªüiû(· þKâ¸2ÖžV [”8æ¼®UlÌ<‰•,b–áÃà ´£ÒI`#»×)ã¡¥»Ë$›‹Õç—¦ m½î†ýž­Ä©Ø£kvµ–±)KuPg¥  û€ÉY~RŸ›øÿï‘{…Q‹h`¨æ,˜«‰¥’‡”(…+¿µÕEÔò¥ÖvŸ Ô¯&’˜”À`[Bž²Ã,ºÈ!¿§Ò=1戜’àªXP]²¬@1•¬YD/bµ‰ë/4ˆ/h1vø+:Ö¨‰ ‡È SªÀ1ŸðÇîJy2w¬Ñ~e×$Ÿº.,`7âï;±ô«IF,a˜–Ä&/XJ Ɖ ®‘õÒ Û ûIÄ«ÕÙÌ \£õñÇOŸ|×ÒcVy:`Il[dѱd„­¾F‡“…¾è2- °šw×rô8^!žØ³c¥Æ…çÞS‡YA’º§ì%¤Ç&E7›3d”h»ÑpuxÙØ(ž Ÿ¶z™¥c€?öÉÖ“ ‡©ÜœDÃÞ°å°œ"td © ¶XyÆ^z?ê9'† … E¿HcMCO¥ iÌà–’…Nü09‚Ê|0öé@lkÒU¾Röãõü™?Ïæb,rB%s.ÎŒ \ÂÖçc÷‚ªü‰5T 'v/¾m˜bÒE‚t¶ñz9óEUS˜öÄ{²kF<‰öz{Þê¡[EpbŒÔ¶ÙäO­ð!™ÀI4¨ëéG@<–ì‰ñ‘l¿5´W«úiÝfK‚kÑ¿r—CLoÖŸã· ô$:>Œ#†K'’Î £HŽ$®“oë}Ã?><û€Qi¡2°oA;¶Ÿ±}§i¼=œ¢½Æ1K·­vÓjª,j¡²Þf^õÍfõ7ø}E4WΙÜJTÆV.¢–^å,±ÓíE~܉âK—ϰ#I|ó¿CÃþ«‰âÖõ/¨Üýøð¬iƃ³ºÛˆ‹J3ä5øR” ¯Ï6Y`Òžåùëh½ð(–RLP–\ ™­™)¤Œ_€E™@¬\ìÖLξnØùZº`d!…ó¹ÕŸ2E»EÞ²Ú…–kdèÕ›ižÅ*=G pÇ_ê$éÏz@$:ñ•¦ƒÛ ádâ$k OEÇUɺȖþÕ¢Ö–àŠø!=—¢4d6NÕ˜Xn¢nŸ Né°«{ب^UÈqÔ=¬>‹ø)î”uÍ>É!Šy”Ïwaƒƒ&2¦“IÊfë¤!‰D™ÖyžOZ'8¥ïãÈ~ûó÷ß¹/å¸6Rÿ&î\TçX>OÿÊ9*OiœK·q2tîã£F¸‡uŸ‰oÿ¹X:ž£èŸ€þÁIÿÞ-§’¯{ÔœiçœH8•´OA0žµá$óò9`#Áz¤N+3ñA¬„ñ3‹Uñk˜)ë:½¯½LîÅe ך'5ÃÁ!G¹  Ÿ Ÿß‹Úéµù¼=—|y™øóátè$X~ÞBƒÄƒ[•Öyá¸óL"Õóµ4ÄeÆ>Ú*L>ÖŠÉ"­Ï— Ú¸Óù<<9n"8ĶFôߘþ›ÐiYò.<ÑSgZã`­d4&Uöü"kVûÆ“Ö&à'åÃñ I°þo^M÷ðäq‚ÁÒVíÝ-GXoî¿ó]ôd%6>Ë·cµj¯M roÀTmO´È‹ >wåù×Gä!#2[™à/>òw鯹kÈÎOجžþŒˆ|ByºÎ§(ö’¡26=à^’¡È&3áž\¦©KJ²i¦¾ÛÞ‹¬Ì¦Q°Y›ØS޷ɼZõÇ_|2›•N²:m»Ë̓ÿ©(ø “Ø|inx¼fȽæ³Ò´¾¦S±áØ5ªa ‰Û}>»èøÔtÜú{qDÕ5ç-ê–Dª€ŒåàÌsÑ© w;‰Æ•M£^Y« Ùv‰HÜ48]“Îv|ëÉöRjY tB£µbý.þIð’kͼ§œ1G·ŒM´eÔ°æ_àˆÆ¯ì0€\:šÄœ'‚œh)Ím b±LNKó1Ñy&óg¡uêÓkX³ Ž¢²Éµ;áꥌPc cµÙ·höÄÍgM¸’LPX{1j&Âj¬ýÀ7ÙYî¤3ÚQ…ŽyÛëÑ6%˜K|}%¿©ÆÛxŽqÊï6Þw­ÞÅŠ¢}‰ƒ³VÃñ 1“Nˆù˜—hRƒÖ/¿â£«ìu†’Y­³Æ):­5ªéïaÈLß¾ßÂP¡¼”žÅ Q(2Ì­™¼öƒQAáRIù~Õcl¶´ˆ SËgï‡ qÂöZ%g]ËÙ$L´„òe¨ ›ê¨4hr‚G'<\ý K5xøÜá>]瀾°B×o|Ú;ï;mZÎ'´’Îɽ/Þ—#]Lèwqxg£ÌP0àü‚OJiœˆç¸2ËÜMWìTJ¬°™FŠG ÏlžvL™‘ótå+l\bÂeC¿}ïMÄŒh›Zqbhñ#æäp†°bœ X –Ž?oH·Å{ÿ«²6szŽï!V)QQæ1wí lÆPƒÆoôÓÑ{N¦¶1u½àF ò™"I^aæZ®Ê:§OÂ<ά¹–Ÿ(\…¦Ãg?d0ѳ|¨qÛ¾!ȃ2`™Ë¨ yÏ€2×W8© /Æ…ÿ)èñ¿Á<ð × ‹ƒ2/!½˜00uª‘²ê.µ,°ßzUqî Ñûg«Y÷?ó]ÀMŒï¦žx{²WTðQåï‚HbîƒÖßþ3úq™]ÊV}ôì¿ý'qø6_hµ8/!›nœ •»ÞÉ6[O¬ÜMøýNsúQ“ë}¦¢Å€LT›yeÎ~’‚™ÙÔ$Ÿü~z&y5¨Áˆç¯WVÜfjíXÔ“´áŒ•õÚ…â–¾u'oÓc›6±É†údµµ;eK ¨õ­lE{MH¨lÅ¿zùs±ÍNÖ 6ÏRt„#ý/iž™ðgÞ³mß™Ýp¥?îì1ìY{=kÒœÏ×¶¾]ãQÇå˜4 ”’ÁéÐf7úÕžoq“¶ùÄDtýjóŸLD´¿ï4^T“>ˆ(ØÁlÔ,B÷ù®£/Þá+£w£øŒò³Ä³0¶0Ãè*õÞû†3 §H,4‰jÎQ©¤4 ÉBÆØ¤L™¥´| ¸®Æs©s÷ÎnL$9Á©Ôî¢ÌQûÑÏ?vüðö”x³xv…}¾Ö…ÀßjäÕ7X,¿öߟ5ÊãêtéJ f&bÿ±ý êl]\Å;¬ 8 ¼OÃOHóžäž>'%‡õui(ÃBºì7W³EE]ÞPÛ¨¥%cYº÷ˆ\ÿš_á8p‘9Û]™È2–8aZX©U]Hzh eµää`TËuU r/à>.†·ªfŠ8Éhž«ˆp«ÝH+Ÿ?·úT,néa5eE†EbÖÒ—pã…RcxÃi¶ÎdR6S !þÁ‘mI«Ö–^²²a…¿]à oòÙ›tˆ ÝèîÝd³îÞ•à½ÉD4˜9'ÓgtR.S:O½ò‹MX~ >”ý®®zÔ²Æ[`Ö *pJ%– QQ+€è8çÔgSaZ+LQô „‚wD„–®è[‹$[jø;`®j*}—c;ðÇšR×:h9xYƒÅl²ùTú•À0MÐLb/–#ð¥Ùr‰ŸÀ.‚CÓ~ìUÊ?K{» ©‹À¹ëq´À<¦U¤Œ¦9Ñ+¬˜§šdyn L‚¬Ê&íÂ0“蓨¿)°â³F àóæi@í6åhf5$ Žâã 6Ñ›‡ãøÊ n Ù¸ ;ïm‚yÌ·£“èŸDGüCR2nƪ®Í—ãÌ!‡¯hèõ|=’~Ìj»·ÚåQ“âR…A!¬Ó@Â1·z׿ãÿÛ‹!ÍçÆ2/uîÎô1ž¥”SªxÀµ¬?¿Hšnó)™M5©0½ÛÎÀ1ýÖK6ÐÎÑî[Ý£_­ëËÄᛄþ=«…>d‘Ï7… ê÷5{û½hÞZ4¶uçc©Õ’Ÿ€‘²oŠ7~|ëMËž©iví @£T,I…ËõJÎâVRðýÑ©àrzIVˆŠE‡^4¼Ž>Žn†l[Ã0x­³ŽÂëKy£%¤D2á '­Ýæ™Íýˆ$I-è)Y¹úKô3§ü¢®3±õaëºÝ†ÜÝ»8„wï³Áº&•©h•‚öBžB—®°²oã+\åÖ¢qÁl€Ð+5{¹aXÌY:éD¢99σ´^oÆÎפ»" ®zîÛ2|ÈS”‚dåÓÌ^à̸ç»×þA´Ïf÷£Ú#{¯þè|ÚÈã ^Sxrâq ³qc€²á1 *j¼Z¯‰7‡‹‡ïßÓbüobeátøpÊwÂû YMðf´ûÀm§IƒêÇq·¿A}Š£½.+QîdºeÜ*Ü—k ¹>ç¦r”f°›“›Hx <½ŠEqã -‰â/0 o9À$Êj´‹«©ƒE{Å9ü_³HÛ^¡p¯¤¸µA J¹òœ¨(;½ ˜Ó øÞ«[@+®„á:% }#(Ã+%(¥½m|€jRãUr” kÅBì‡ï%T£‰8é |ãÌÔRçz5ý¨ÿp*-A°1©}³ o´‰sBp÷抔; .œ@;Óš”MHª Žæ’Š$7àßWë¹Fü ) O\ð¢íU½ñ-l„L̆±£#C>ÆL Gø87ÿ˜q«šlnìù¼TôöÓˆ*Åh¬÷?’Ÿô‚~ÌÎÓfUcÀOÈ;-ój³¤Ñ<þàêôѽf%ã æTã:fp‘mÝùóOﺬWâš¶c˜y =(¦„›P(K¹ÿ‚Ä›h­2¬+±²y[ÚÞV,å¯ÅŽ$ÍÅ¥5}4¾Hǯ¥r—LvˆçKéóI¤MÚü€3?©Ñ±`LxPl*FB¹ ‘¡ƒ–Áž÷N§1"Ö:æé²lsH¢<Ã6–ó°q<Ð]Ð~¸}³É}ÀÃÅœ²POrÙüCˆÞªÐЦä+‚à+ÍLq« Íx]=vù¡®^¡vq¥¿€¿xÔ« qOÄJ\1Òrƒ2`‡wÍ6ýûi*ä²³ •ÍÛÞÆ7í•–“‘" M{„½hÏ[µ‘0hPÞýFÚ8„öá´€1®;Fè§W¢{âƒòXïTw­ïãEeúk‹-µrð€4'øæY/‡CäÔ0ö!½÷Iߌo;QTúTú5ò¬aÅø<»ÌØ÷VAÉæ•Ùì~_"]¯* öfe©Íýj›4„<Õ`µZRh Ty8Ý'(w66ª2î’~{…éžÔÛ´ÂÌ>&i á«èz—³b6âƒRïÖ.Ý ÝÌ·y’5ÀÙo7|½÷HŸ?®µ÷Š×½r·—§J¾æ"Ó’RÚÜSé_¸û6þâØc¬þ: ÑÆc£Å‚†Ô·=‡tÇ?+óÉ>—¹’h{qxI4T‡ ç¡íW >ÒZ9‰J“ìxæ„Î0ùÅt†n-¥u'‘ÒòUí/Ñ•Ãg× êµ g¥û§Ò»ÌË*…æ »Ã.Ï –âOxwp¦):FÞ{òªBÕX¾r¤u¸ñ®`m0ÛJ"sµ‡‚p=ñ¹DjÐcšà¤/)6´±ðYƕ엕‰o¢Q@‚INGWhC(ßû³mÈðªAä gzbýG|&6ì;z0jŽ,¸×{'ÑmPáW_µ4ù…Ähk ³5…±ú+¦ÍÆ@¨dð»à¾(cæ~Ô$–Ýîs«'šÃÃyøoFüÎãp·¾[¤ —kb–|yüŽÓg@4î±/™™oP]Z2œbÄPbÍröN§+b*Ô5Éœ»1[YùÀnkÓv›Ú·®ñó \›7øméÙ:ô¯òWLe‡ÿ;,Æö÷-œü6¢QCáÕUh|š2âõD7Ê®!„_ùô:úyÿ•ßÔ!rŠéðõIôfÈ¡‚7Ɔ¢zN¹®ìªän¢_åÛ͇ÎÇkbc<+úùM)Ç!D˜H® |ÁÓýÈȰˆxâ¶;wX.eˆ¥xëçžÝæôM¼DªpiÓ¼^™“ܶ¸•À ÎÛõ¥;~âú˜O¼Ð^';”—(ç ±¢þýåCÆfÌ]FbSpÀ¤sC¯Æ8;·ð­ÔÝæKF7RÊréNö9…_>yŸ¾o(}D4ZHwj#{ö–Ö4¥€†zß}µþãѽj!pn;CÁ&HæYül§S{c³–¡úÂn²¯]39^t“ŸæŠ¡nœ¡)Ê!þ¦¥ :IV~t®878>C‡m÷*+Òàˆ£ê‰¦\ïXô¸Bqf5îÐIÄ¡Ôô¢¯¿Š;Šyvå ’m¾›©¾ÑÜt/>"å³fy|¶!’­lf´l}E„%áF­fÿ@'T‹£””ÒYÀÀ¯‚ýnã!hz¥žþÄ „[Kýø1C¥»ÑLn3Sö?ëuÍ?²~-÷_6GÛpü¨w»<;“¯…Aò·ÒMy›;Ѥ†&ËÕfmì —‡…(ÿ¢Yƒ‰ÕwÅ¿T;ò*LhìdÅb`¿‘ºßmI ©NN|\^VZ¾³ðµ \í¨³âX±ÝÜ ïtMŽŸ³˜d—~, O]JêQj ˜ú’lÜ0có>é3–}Ølƒ½ºæ©6õåÆ]b¨»S#Ÿ€™kqQùz6ÑNC&B¬Î6ϤœÜÅ í4)`¤BŸéD›¬¥¤€-oöÇ0ÞwÉG5ù¸ùÝf<_å ½<<‘ãt½Ç£Vƒ‹¤Ã­íö‚+†mŠ®ßð`Ø4mÆû­ùÚx÷â[nÙ¯§ûâÂ/è›SÛꕯÿÕ„æÁÉÛËäÊéí¬—ö\íŽááXâ BÇÎfBÈRc™çæÛ¦ •€¡¡EÄ0jk‹M^Þv¬«‹‹”6APßÔ–ðÝb‚:d.µ{®`ì½Zæóó—óÖ;o;úÚí»óêÕ,¿zµý™ò³Ó\ѳ´e-Šô—û©¾&ÄÖtvŠLS‰&ª²›ÄÝsu²Ur'ÙŸT6A@ëeÛï´:Ÿµ¨¡ûË&>Õzû’ý²uò²õ%o—Û}ý²¿äÅ¿„¤^[’k(Æ…X êE{NDñJÄ@ö Óí;}%Ïl¾fÔHáÛÁÝZàm.‚†ŒÔëA™iRÀ|?‰9%üºv­*8N½ 0ßBpÓÙ´SõŽÚišŸI"’2 ž:œJM7º›Cç—fk„Éeß§YÚ´l¢™(À´1Ê̲„5VJå²Îð~ùiÎÝ 0Ãõ2îJÏSmíc-à*ö—É/9JÝ´b—Âhì~(šK±³#§‚Zð7ôñ{ú±üÜgsÜ-¾‡?fÞ¨5Ò÷d‹PN8‡Mé0×õÊ‚°ŠZÀG|B¯+ÏesÞLÊ¥ô‘CÊo:;«X_^¢†Kóȹ§œfP›>L¥Z¸ºPÖ•„?înœ,]·o~)Ô¦œè2~‘ ¾ÌF°w¡tB¥RS9xQN¿¢Q°ldÚŠÄz ýÒËõ4ãc52[„6g#ä[Š5%^4Âk$új‰x~†Nÿ´¡sr‚KÇ|¢¥‚òåýÈûr{šŸß4Ò<¨'ô³úú_p†`¶C× *çÚWè±t…ëÁmÍ v¤¥¹§i§ëj(n qÒ ÌK¢VÙÊ>Rnm:OõÃÕïJÃÈ€`æò5×S›bGØáðÌoêI2Œl N<Ój¢õ&Àð¶2»3è[ÁÕœ#î~ŽÊçˆ>ù½çÿ¢sä^ü°s$d.û_~ qú¯>ÛðÙÌãe„ÝvŒJ)þ;£Íľ²Ä~Èùl‚{´êšÎ[4g«¤üHâÀbu±ÃQ1 6—yZxµ)›NKVd"çTüÁ¨E2›ÙDDœ|™góÀühìßÀB’ÎýSh)³Ä•ÚÏ–Fò·%Ûàò &f«—pþ[ÊTß T{îB»+Ì UsW„”\xŠÝCqÀ‰ÁÉav£ó\$AT¦Yðq½òh:Ö$MÛ·ŽÐ( ›65Êå-+15‘£YZ¿ó ƒgn¨~”ÁÐÑÄ!qäÏ{šš÷Áo­MšLùÍÒ‹µªÍþ¦öz±Êù“_á ¼/ŸU>º?Ú&¯EÞò–¼ÓÆ_ù¡ÚfŒãûýƒÀ§d_úÔ3ò#üë¸Ü© ½«üU/l>apº–®¸ž—MîQHë÷73Ž¡á >:ñ¤r^ën.¶¬›“ÌW•©ÆYØ`]—Vw}ÉSÚ³ŽÓLø;¡®š*&©ä[ È>o‰ Â~†>¼í†âZ»· ¶ë8ÃÑÍ.þBÙ£ÃûǴý=Žš ö‡8 Ôe°ö‡A攳- åÞ?úÀ!ŽâOã/¶¢Ûÿ 1¶Þ½÷¡À‘{wãîQÜ=®çyÓYžoÑÙZŸs<ÌÏøäï@¶°cš>ÌRŽu{f õk<êõû÷¾hZæQ}\á¯Ë[1¼.~¬~Yůk0Éež¯~ïâ0JýÚv\Õ*–²ÅÊì£ÞÅ“,‹°}aë  Õ,`K$ó™Ø.BF~BW{½Ó•a|4±³ee×%ôÄ$:A(´ft'ˆÃ$lE¸\û5­¤«ânX–P³îFShÔê7Z´úˆS­Å»¬w+¼ë£þ…¯u|¼{ï™—ÏM˜áRûàØ ­9gQ㊨x`ü€6™ÅF´‘Öoºèny¢ÿУõn˜X·A$«?š¦ÆaÆ9Bz÷Ö"Õ”Èæf}*i!B­±-Ìã·÷_Û.~SlŠŸ9P–Ðy†[•ÑB#¥J÷p?¶]fËAðšÝÄnL?ÈDñ[>]É‹¦S>v#*ÏsX\u® ÑB ™K“ÛJpù¯=ältCD—9T«ÛxýQ|-nï}c­³ÐþÑëQW¶Pý¤ÁÐ.Š;ó·¶Å÷ݨ׉¾Œg—ï€ß—ÙlÆ¢ƒMèzÇüê\ÙJÿÌMÍϵ²N¾\Å\°âÕèæ2’ÀÐ ê.¸ó’%ÃD](}ÙæÓÓfN~eu®Nstç]çöŽþàwÕ]~$^‡ð³òI¼[£ÒÞuQnȤöêºhy–v]i9Ž Ò#0³ôÚAÒ¸£Š¶‹±Ü©‹Þ“ó7ËV´aÒÅæ¥Èáèf/¸Çñá‘-eò³Ö~É–’ø Õ\¸—޵ËùWŸlÏD»Ue¦ °­CÒY2sõOÞ¸f\f_S7ÐlèŸÐ¦&„ƒv^¯o|(%öÊ}*m½Š xaa õq×%µoVG•Kà°NPÊùZkzoåÚø%’©^vû.2}Þ$Ó>'Å‘oôO›¯rþúåçÍ* Yë†L=cè:6‰zýgí:rzŸÚœ¾þ†ÊÕgoêO !û=ëvgPìyc<?X ñ3Dq‘¼±Õá4”þŽS•D¸9ˆšÀn3’[÷QaÓÓ“"ìm­uË|26gSûÍJö„©ìÍ( úS9~67îCiù§+@¾FA,Ë?‹S`ë;—x± b6–5—Û6Ú¨_nQº1$la—”Æ`O7“v{ÒîoCÚáúœ½9­!0æ2›K™©’Í}R× $×ág›‹dZ0“@e—ëKZI®ùÇ-òÝ^™‰Ôr­LÆ»þÜØ„2{¾—:¾ÎuTI¾[qxl “ü³¬“Ñ“Œ~šGåE-2 ’ÜGä³R.]>·*`Ù¼¦îÅÇñá†t‰Ã Õj®w&Øã®{´)¢üh-¥‘óëšu1ùi¢bŠÐ÷Ýémrú\/`†Î­hù…á~,4ùH%Ît²Ö&V…‰Ã«mÝÂÜ|Ù8õ:M⪃b_­¦dó•ÇŽPpSž9Cüüb?à ²ùk1+ø«Eˆ×"•èºÁ¼å#ohÓfQšŠ0ƒó¹¯×h\n´] ü‚Ž %gäƒÿú›ŠÏHYô{Íò†ÃúTY2=›ûôÈûÔJѽۅŽÈ!ŒÛ× •k Œ/Öó×7RO`œ³!å5·fÅOc"Ð '÷%„‚óu±É,c!8 þ{µÎÆ”+xÝv\ÑÏYÀø•¢ÎÓv«‹HÞÝTµ…‰šVxL_Æ )ü¦˜m[O‘ öÕQ¥ÂŒÚ0FaH¯(O+è»Z+ÚOüíE§¦,êƒòëæ®µ¥b š•»é§t–O ’9ô|)¨(A2šð"?¼ûAÉN[zõÆrúUFÔëðAy ŠæäT^ìjQ

Ï鯩›;¬¥ >ó §œ_o´Ö4q ;€ƒLM»MEH´ ÿ$o´¸¥ÞvããÏ¿d›-UvÒÁ±Æ™É’Þ{Kÿ,ðÁû³¦Z€–][… W€YôÃÏ2üx´¡ðÎvHjšß½ùü ë è\Z¬]l[ Ͱ ]•AŽ)T¢¹6AÅOI· ¬TÓó ñšx­qR0ïšô‰²êÌ>fh ŽtuȬ.ñÙY¨ b²RmLžÏyȹA ȸéˆ'ñ(ŽÆ(§?=£‹ì—×ÍeõâÏâþa³p`Æk,ß'Q}–¤6\‡ýÍr”† oŠb¿}º)‘»/¦¢Z2L¯A„Z²¿lE‘Jéµ¹?Ä&Ù˜Òò{–ð'Ký¨L”Ü{E·>(¿±Фÿ *hfYþ¡ãôv’Û‹@ò|³äÇÝn)šêÆÇ7¬ Ë;h¸íng˜ço®¦&Ä~ð5­ð7Þ}÷¥±ÿ¯Œ\ëvEëv¼Í¶¾aärÙÿ4ýOÌñÞ]ÕÅ*Y® œ6‰÷[rGÍ CØ‹@9³\UkCØ!mÕ¼YIEî¦>úVIO‰IrT)Ÿ6h©^­dP*à]ÅZþ¬q§Ã?gvF·b,DÍv˜iÒpÑ/PÜØ¸eýßÛ[—Çåˆ*÷bSj¡õè•ô5ßÊ‹„ ¯ƒéH tfò„«#úW÷O#(?]eÁtêÉ·«kn˜¦bÒ†…„´èxCävŸSc‰9:–Ÿíg‡üY³¶àíËá†ð›f?¾=±ä9Éý©Á 2#²¾$ÚÞᤸøŒÒY,S4QÓ“¢VÒXB:<8>OÊv>Hv¿—õ$›Oh!™Tß•:žæµZãØˆËb=Ý—ŽSíŽÉå…É[8¸ÉVlß3¯ÕòïëÅ,¿M}(qž…Ä¡‡¶©ô*Íý' £&˜b÷êˆ:Ã3ð ú¤®õûüߟÇ_þ×ouF+ã[Q!ê5‹ÆlÌ—Éí"_nXÎàÓ{qôé§ô_³ž×:}ð°!Ìý·8Ï¥`y35Áݶ üX¦°Y²íï*=òšàU×oš o±ä¿å™††ZRµ×ªÞ“6–ÉvU ¬".ˆÔ"Hµ(½-MÈ> O"Ӭ؃³\ÏÙª£{%ü zÇ=’õ·a”£»6ì¾þöø@4Œ¯H¸‘’{&ŒÔ3±Ôó‰- è߯þ‹£­9Õ  Ø"`R»`™r…Ä3p‚§y':Õ@Wq)4…ã">¡X/ìÜÀQÍôUíœØtŒ‚>ŒMƒ ·y4[zGR—Œƒv6'k%Q?¢DѺþ8'Å8Ë^Mò«9ìuœ5ÍŸ¬üûFzt™!ôcœ/nB¹MϺ^d…/ôß•ÖÝßx'O»ÿô :µ0³`—?ªqk«¢4m£¿’F¡%Ôv b»öÿýÆ^ë§çÿô]ôà§ÑO_DŸ>“§«hå>œ—}?Z/&DÍÛøÄëÞòÂ[Q˜8Í8$3?Nœ}Êà¹ò6çzõ†Ñz¾ÊflX™°-–é¡!â¶~®Œæ0âøíK’€e˜â›Ói÷¢è™ýÝí c ’‘†å]ØNÛ÷5AÓØË¥u§È^켂èw‡ˆß|î³Sµ&[¼zå¢çÈ•›¼Iæc&±E6.J¥Ô¶¸K½/û÷£ÞÝÃ&y«¿AÅ8ŒãÏãþ§ñÑaüiƒ¼À[§» AÛ…V”ßù"ZHO#@Pì.ÍD ´%FüœÏ9q‘ þã õq§R‘2n©ãuÚöÀ6’›‘[ðäKš‚[SÛÃë4u Jþ%$-ãt>€¨¿ÿ«$Ý‹ûgïd½ÁÁYôeÔ¿ øÇ.¢!zƒþâÖ郳Î;üVOòÇaMÇõµTÉ)ÊÁy ¿y?¶§A¡ ÷ß[Ûä>»šNB‘&Kv!q'Å {m=&±H³ÆhÇp— iÞ?q¦D;b Yû½è9Ä‘‚kòjn™«œÆ•ˆ­7Å*½ bÔñçm Eñ>¾/QÙl²Lç0L–ž žeó[/¿°?+Êo­¸¨¾V÷¢÷ÚEN?ì4?¼±OZ\¤Û¬¬ñÝý_~­›-þr‘+"e×¢«DJA˜Ý÷âLáB_(Õ½•\Š•ù.Šh¿A´-žI÷Ì<gú™$ø¶ò ¤ªä‘Öe>:É™§z0À¢*4eN†šöŸåî«`uêßÉM„žh,Þ±­4Qó—a‡œ}Ó)·÷)xó>#$=à¢ñ8A/úÓWœª¦A¤rkx8êØL×RN_å|Öø,Óñçò& 3ëÚpDŽ­H£ÞíQzeoä_œ)ÉÃRþÐô™Ÿóg¢¡1]ïÝ4Æ_öþ¡×C¶D4ËL›{ÂŶ†0,‘2E²B\j¾Ôiö‚ë4¼=M%[rÇ4¼qË Ò ý ?tœñm^:c”´®–H[r;ø ]¸ÉKÛˆiÌÒódŒZ+I‘£RtÈ®¥aGzÚ’Š•€ÌX}µ$e)NÉ­ÐZ{ò²„'Áõ³ ‡?¤ð¢Ü ËÒu«Þ›öë­^ð½êÑQp\ͲrÛ'̳´|Ñ— ð;ÅÜ醑Þ?hîøÁÎ.ûn•>TæX{¹—¸J··¼»ñKÊ-06c¦ # z ¡g :Û¯zÃ[üÄAÍgIŠ?íß6ñvÒâ—ÑáAýÎn1o?¬ùì¸æ³þ§uÊn2{ ¶½…‚«OzR˜Ö ›ešp½"‚9àB— âKå|\«›žÞPÖJÜ|ÈF_³Œ6‰i (À`âÕø“¶¶:˼¶äìzRÑö~Msц‘JÊ•Žiر1|¹Q½lZÙ“ 2G6†¿TϺX‹:–J_–nšQV²ÙlM‚lR›i¸IÏ„‡Oú¡ã";¿˜¡Ð©\CbE™kw"Td™¸² #©†OŨ7J‰Ý¥å×}”묤Gƒ¿Á2A4³¹â¶¬·œh˜O]µ9¯9}ƒoÓÔ]·WŠt·Gœ ûôvà½LÁ– ¥…$ÉË6s‚"é©x¨ÛRÇP¾>ƒÓòó8º‡âúâ¿ü4޾hpaÖð˜B¼Êa^ŸÓ¿RV欑Ëðä#öšÙ/ÓšÁD¦L±µ£Ö¿ú¤u?jµ:QÇ[aÔ´ÄèmÔâÆ/øWº¾Dïé[¯Í5¬:|ÿþ¬Îwçч”ÎßÜ’èÇOjuA=ØAik&éù›l™ÏÙ"ñ&YfÒ/#8eEªÍ‡ñ¼W´ž½¥åþØ•ó—×Ë¥ß%ÒmåO ÌÑp™K½:Žœä«®YÎé» ÒƒâÁ° Úдާß>zö æ·ðŒÓeØ4Ë? ´_þc™Ì èt·ÜZæ1ä›åÄ•FÄjIÎQµù2!⿎ھkRXYÇwn<OâBgR/Z É „~/1˜Ú+pBÔ¹IæçHmÛ©Œ½Îµ1ôŒåª6¤%rx„æ7äŽÄVrks÷ë)ë18Ar°Ú[@Ž×ã¦|Aôªu?5±‹•?Œ®+­Ù¼áýÞàr-"ØTGåQî»~LqØëÉ»ƒÌÈq¹ßx»Û'eIŽÜu%â™æ˜.¥»¨‹5[›´9¯ À½CˆC¨š"ƒùø˜®Ò¥¢Â@#š»†ú];DÙé²ÿK¦|;bØSËŠ¡ñ)‚¶F (kò`5bñÚ:ͨ ‚*‡"7ÒåA£ïìV°›{¡wû·B>î@U½C{ú·!~øEÁÜ{ƒn»ÿ }Ô9‹¾ŠŽ½ËîƒfãR jÎÝs ‘.ùLÚëu£áË—R†`ãY|"S[aèÆ”;CŽgé×⪨hk õÑNƯ‹YR\ôHæ&)òÒ¤ÂøŽUá.Ï>Õ|w̱1µ\ÂmÎËv¯Sª±Î:žãËOúVƒ­ú°ñî‡@↎j¯g!q~ŸíÁ(ŒµMá®_Š|®éÑxO~Õ뻈&ëË…Õ J¢ÿuàG4Ьyß ®MŸ­ •––äq}.¡ƒ´×R•¦>—ðN0¯Ü†4i¸€xê}sÜü2Ÿ°ûÖ´—±")f_±Ë±[“Ç?™©4·Ÿ0QOÚyCˆS¿¥ÝÀZƒ—øáeëlSïo‹ú£×QwŸÀ;C3ÀLLK4û` •?æZ|AoÚ´' üº•ØÿóꋺÃùÆ4µ[¤ÀŸ–Úš:{½v‰ Zî£ñÓ³ïˆÎ'ùxm Q ƒdªäÜçG\ù¯/¾ÿ‡æç￳¶ô)Ú¢öÌ=ÏdÙC¨ùÜx@¥á« ‹©ÅË€åºCÿŽÃ9,Y岉ѕð‹¹Ù7k6á~«)‰>³°i `2Ç(Á|žÂešý–ž(¥®àbu9+8U; pµOˆ²ëŠ‘L~™,F9r€á—_ÿÛ^kèJ5ŠåÆóКÿm¶º5íßÎñoøþ¿/B®ü„æ[÷‡•¬—YÓüérLcI…Âòô–†H´‚uø§gO^ä Œ7ÑðãŸFè_×È=ªÌa\¼)ÏÁËš+µƒÖòH,tѵ+fÚž‡Ïÿ@`Ý!h<& ©8(ú¹œI衈¼XëÊŒWÄŒ_”fÜ^%£®©icšþvzÑ#ë¾6¯J½¦?[’µŒsµè1jqh¡/ œ«=ÉcÁ»4T©gY4<¸>øbHã?[ÛSÀíNáŸóM† Ç4ÙŒXH×HþîÙ =[3T©©eää'ïÁ{c¯É›é]Xæ§4V:P/¹ÔËKî©÷rÅ¿6µÉ”-..šw8s4S¬³LL\ë"ö9Î//i1]`*€Áö±èǧϟü¨Ù«kÕ d³²=J”-‹§ L¹ý4ž/’qêOU0U’"ýôxãÊ‚˜2yž£,mdÑγÇ£ãO?o€?©ÀEdšyÄnX4œhióú¡|€ˆWyybpgÞ5—¨s?½xÜý<öÌrÖs `)¹® ³ÊõjÍšHN0fˆ¢N§Àfûò›\¯WPÅwY Æ`‚r?®ò×j´*FpÉÂv:“bOÐØýD‚>#tp—Vz7T”4{Ñ_ó+¨13ë`â(‘2I#Û"©‰j †¥,ü–ôæ !4qÙKŽ %j]¬V‹âdÿêêªwžçÄez„Í}Q¿ùõ+R4äçNËæS†µ—¯Îþ1|Û€­“Ö•ªä¿üúMë}™£Û'‡÷?><È úë—_?>zÌÑEJñ–€;AO ¶S0I\&Ë×q”®Æ=c5!«TP‚›] :cu^WOÙðµ\Õo÷2>K% QœLçWùòu úùMcÐwåaÈxž„Û?o:j}Iühþõé<Ÿß\æk‰Œ>aÝóË}þŠÆüsíü¾D ³Åêks–«öËÖ,ŸEÉõËVç>½*ß•_vm+êÇÅ´åUKYä!….¿tîãÁ}÷¤™k£½•.‰¨•Ž/r^Z½ÞLúÉÓ½¿[Þ+¢S´¹lÕc›žcH{O÷^ÒŸ=yG~ä7÷èÕæ™Cݴ雡u›·üïß^,Æ7ðßÅ“oû³ñÑÿ<üé« VgÃôo†¸‘ìÂéÖ¨SAEªŠ“øÞd¬9£¾1M4Gî{A×3‡N=Dþ•öXå‡=8páIWRi³š_éoÆÔÀžGÉÞK Ñ €3I¤ :k¯Ùæ>e—,7üôâaµ²”TÌ8+òÏ?=è»âÁZ߀Í%xòüi„'}ÅK”D–ŵ?,dö •Ýþ4Ï®£t‘QíþŸtúôÿ'üÿvzÖS;9nZvòýß¼ÂÆ¥¹œW·Øçý—Ó4†Âb¢HšUœšÓ5­Åuó/Œ6±•ÁÂepvÁtQ]¤àÉ-Ñï’ŠK­„È*€y~åÞöÛµGf&ÅÜü}-™çÝ#|gIšÎ K ÓÁ6jt|H‚ìh _/ß+<,>™¹9qÄv‡„¦^€¼M?OýŸgù8™ÉþV^¾6_êOlÞssDñ†Ô\"C/ò jÀ­–ØÐ½ÂÚ6kÙ"0Ç”B©QöÍÎ_æ`—Ð)àÄV•ô™y g|²Ìê,D=ðJ[ô˯±W“y^c^köÏ6 NQUéCñeID#¬ŠÍGÞƒâHCr†Œ5j–,³"$  åÜ­‰zV<8ß.Ót.§ïI?™d‰¼e¢Ølƒ3͇ò]·>Ûáã 2WEfdG7$£Åê·çl£Ðy÷Ϥ#ŸOx‰êõáœÔVÿÙ [£p]fóõÊ”xõ/z8Ö„< Ѽ(ÏûƒóWiú:6*ï,&êv%*ÖLÔ6—[7-‡Øm®„±Ì&k‘!nYKß{r„Ñ€ËøÚ±†’|Ï>Æ~±Šú_pgñbü…¨š!õ£Ãƒ/¾¨Rž;›–øDfd‹áª†8™ÿz“±ˆ1,&—ßà9P÷{M‘Ô× Ô^%VïÕlE¯eªrÁ¥/Ã/  :óU{z‰ ‰ÒÍåçvRr©šÃ8¤W‡^9K©F®M/íu¾Ã‚ &••x TÌÕ®hZ³"½Ñˆ0ªÚß~ÿ¢cS¶=’µ)O÷<u¡€«ÖÉÌ;_:­[Ò@‰ó%Úı™G7•G¾YpìôÃÈ\rÁ}Ñ«#éÂÊ´}ÃÖÇÿÕýø²ûñäÅÇ=ùøû“Ÿÿ³¢îZW/õRŽ+ÇPi¤|&bPÈý£<¬ïŽ8¬uÞÍ"liøñZòñ/Ck]Y2Î|z,Ñt%-4bõvüôù.m¢T6kPú÷ºG݃{/NîõOŽ?ûgs§ãÃ{÷¾øâÞÁgÍʈ]Cú›r wšÅOs°Ã£ø^?>þ,>Ž?=:ûÐ9½“ù¯BçÿÏïºÏW7$Œ<ÕFæÛ«OI4M¯"@(‚i…JºÑÝèÉyô3ÀÓäò¾Dø¥ãËÖVõ,ó´1Þ6®ëŠëÔÙ6¿dª÷ÊGHÀŠça÷ÂH½òÂ⣽­³®à ;¼²¿=}òCûN6¹¾ÙåMdq÷9_œܼÂ_lÚ»ú¥Í4‚‘«}‡íÔxu¶ª ýLâmv‚’É€|4Õ£§„‘Ði©Î„­OªÆ+¬D éHV,ƒðû(*¨G„—Õ,“ò‡€Œá—!ßö°²qϵªþpãÆ÷JIá À¨BäÎÍË4Û=ÝšôMÞinHÃÃ0·)Í)Û@¬¥z}*m"9òíbó.á*MaZ´’€­ Sî!EŠî؆½bIuÍîu6$ªSÚ­]g…!3$Gª4{U vš±(¨¢Í¡IÏl©YV¬L°¶•Ô¬ZncÕYf"Cm-žÐ¤ÔA{ÎJ {+,*Œ—XD“¨Î(^jï¯eZŸFdrX Òi|ÿ@{Ìï÷B_‡Ç—&˲%ñ a¦ñscM6ÚMàCéS˜ªYn}REõW_a2úêö ï$í%ëí…. ©±gŠ>Ú¦5´?\äÃ7Ø>mS…ÄV[¶B¼Ÿ Èá=6(£ìÕÂyŽÌ*rŸ2Çg^”>ÏÄ—ºs×ÏøÉf•=¹NXÖ刬äM"†ñX« Ú“Ûƒãžâ'¾"´›QIï<Á›êLØ·ö ï*&Cލ't•Â"çõ;‘.lþ–ý‰§ÄMéxˆ–mÝŸxëü†„ù‚ûºy ]Ìo/Ú¢O½ÒoŽê÷´ ck”Ìé·µŒ£R¿2¯qY™³iq•]ÄQn"ä!‘Ù©„`> Ë‡ºÔ\àmŒuºΜæÙ³Ñ§Ì¦Ài  w‘v[ˆ¾6ºÖƒ#°«7MBo¹úÝÝZ‰`™\Dv¬q»K¼¹Ð­ 4”„áÚ9ßD¦Tƒ2RZÍÕfB2ã+äá–à‚wƒe|ÔˆËF}þ’w EÔ[Šÿtæ"…·½ü®ŠRj“XÇA9_ VÍVécž¿Õox+Ÿ§Õ—Š´úà%É9•'K¡7›’"á£cµ9_ÇÑ×_ÅÑ—øïö;vlïm§SFïqEÍõ—ò÷ÐÄÞëá O¬æè¿kË‚aœse,aSqðh¡zÆ^œ²y”ÀYÚæ k‰|>;˜o´öCŠ:“•m5XjÜ%ý;­”-¦,4ìŠwnÔ… ×{Ûç·º:Áå¤#¶Ÿ/÷éðÝb#°î6¬H:€F¤¾™·¥Ƕ4_øˆ+™$K±¯ƒ±s%¸©'Œ4I9Ó`|GTúuI§%Šä¡Q®pFf£|½´¸ø?Õ*3:³ 1ùkSbñü¸åUx_`¤u\о¢iš¡<™ÖWªZÜç„B­ÈÃ~fPR"Á^ÐÞ.øž¶"׈D­T‘hE••xÖÄÃh²¼q‘-.ë"nsXi÷…?ÆRÂOÚ×1â{£dIäã `)åCR€*–i*¢ ¤â#ïUKKµ¶¸$ÓÚ ö2/âù<¯IJ(§h)²–€©ÈiçP>Béér¶/ÒÃþ³õè†TûŒäâPá¾Âi~u™Ü¼¥¯˜:9yšÐƶŒ|mK£¬y½A6Ô6ÐX+GÑE&‚Ñ(]]¥–¯Lr‚¿Þëz!r®»¡Mdtµö÷[Ž w-}t|(˜7±k É"›R 7&o{®¹›È¿6ˆ'>7Ä+…ÃaeÁ' QJ2p} R“kb˜ …ÔÍä÷a ¢Z4&Hx£’˜HG´!=bÓØ·Vè>q91n¬mhñ$îïo–NmÁÔZ8¢aíïG#O­Ñ>l(IÉ•oú×½b¾÷T›j_c;¹r/zº²I͆•yD9yJÌí\KøEq¢ì“à÷+•ÒŒèËv¾þP ËtÓ˜µ;©×«ªÃÑž@W'õ*CsH„’Ã|9”N£i{RÕŸ|‰‡­ü‚»Ú —`bîÇè5®œ×—Ô-îì"ä(JÊ)i•†_4uèÑDÿ·Âny|X¥óÕò¦;†÷wQ?âé6ê8YC¸Yå`D~þ1b8øièWœðÉÁKL$½è:¯9WÛIgТ²Y!jŒg³ €èkÎÈýÛM$^è¥ÖSȱti ^ˆ15æ @£/“¸H&´NB¨~-°„/k^/Cak(qCÖš‡ÆN”^Ó D:Ã2Äo¢^¢H§k[õPë™j¸÷˜Ç6éLuP6ç©ñ$šÒÓÞ¾7ý ¸¨Ã¦º¢5÷›Óâ0ot»Åîd‹ºVGqÐû€—@Õ\H-{­ñÝ „¼/ó™+Xl:9§’¬0ÏÀàÖ’[@+Ù—gS5Â%ð¡ÅER i Ä¡s".†dpü(åWýêqåB^¶¾nI¯þsôŒ ‡–2‡¥Ð'†e’¶BÓlIŒTïŒZQŠU¾Ðb¤¦p°Tkë”-»7z@`öšzÇZ¹Ò¥™¤S®¯µÈÚèôj(䫯bÂb%‹»_R/XçМ Ü°LMHÙ¾æxŒYB²)o¡J´Îó¨´ }Ѫ`›ß‰î!ï¸Xœì>@¿Vxˆ~ͯ½â þ&±nF*Dp6uIÂRG9Û;™ãp9LÖ‚Sô¸_‘'^<Ø&:ÑPgçV5²N «)¬¦¹ÙÂivZáÏ÷³êˆþ(°Ù ~% N¦t!á‡tû´Þdœ‹ÙrY†ΦtªïÔL7œ…`wäFt®°J/£6øÔ}6}õ•H LIÞ.JÙ€žÔª†™t¯ŒŒg½VZcj¬ÌÎ TæH…H ’éñKGŠªwßè\¿ÔÒ~ôt¡…lŸ:q÷›-ê€}ã«ØfÕéâûfÈ×kqô[콄ë­¸kJx»—t¾ùcošÀa÷,å-§ýãÃg¤œyiõ´}k ¤žÎ³óõr} ãH† Ùb[Ã$ #…,II£éõêûñ™Ï×£B³ð ççĦ¦ŒÞTPH­%‰Oÿ4¯QÄ€ ]85v1/ì1ÿóJ¯U3)4ÔLJ$ó’*tdFûqoIi¨óå¼Èóù‹gO~ø–Íã'ß½xô¬={ôí£Ÿ£Î­ÜwúíóÍOøÑ³mŠž5XÆ eÝÕ÷b ¨R&¤…^î{±–b<ö›0Kí¾«ƒKDjÝ£1Î\ÉœIzQ6‰@]²7,Ǧ@*"<2¸â9HsȯÃq²€H0ŒÃè‡ÐV" ï”̈íŽRÛØY Ùýb2ºl$Ýt–œ»=¾ χtV¾å#ØÏ¤àO›hH|ã<7d™á’þe­ÕëXþï8@<äV¢ó"¥©°v-ÀÜS—xê{X)9—æ7I£ö^O]ÛÒtž^á˃>Ç{OÎçìã›]gåYà‘9,¼Ã— \ND:GüÄ=\àáç.QÙLä¿÷¢î×ÑÞËS˜*îè/ÿÜóf2Û3ÎÄ™Ÿãžµ*SºÆ³®WH»ž˜ƒ*aíLC²Ñògõ½—»=ä¹"Å{PZH_›Óʲ'=á0tžºóh¯ÝÂxçÅ#ùw•>!¿Ó¿¨^¬j“uViû›nÖ¡Q}Na䃓ÈY¨lC:¿?BsÌC ¸"9ÿ"çRVxKAžïX.7ç“CRHŒ³ >!Ù-X‹áW£zpœ+vœ)×&f?ûó•p€<”†\<Ö.Z#–&mcšû#}X[MJº_­$Ecç™å| 1OPK0»nnrŒÆPšmŒPçãcÙ •ßvØÑ»wù•»wk*ùYׇl*¬tÔ‘ûõ½n Üg|l±cü_óÖm—~¿ŒKD¤ÚmÒ´æ¶n;.ÜŽÙBü¼2¥[æÓíû¯ø¯‹’_;Ÿ&C¤{ÔSufCКyUÓ:ªm£Ë°R‰ù}{¹ä!Ý{|š‹`b. ­ŠÆA¹r]ÆÎA2<èdñEß4¾ˆ×éM5¼í¬\J•xå@×[;ûêºI¨ÿ2ùzt;û¤Ó¥_æ_º_Ð/Gáúæ·ßnºýãfÎÁþɃL’ø^ˆÞ×wÀ'sÙÞ÷ëvr¢vÍÓ\½•çù¼‹ŽŒ3­DV¬GƬР`ðí+·®ó±¡cÂôelÜfò´bõ_y0X8b·•UÁlY[9šÇˆýüÉé[ÐI¡´Ä¡µÖÎÆýØ ¤ÆÍ1'¤á€maÑÙPcIéåôùöù½Öx“ì§tó©Ü£—¡4àŸæT8eÔ0J»šjuHKçúRËÒÀsâ‚מ„«d9)$q•2)¢=C£BZ³"Ìî{ð„Šv@¯iÄz— ·äiÄs¤:C©}S£þ™þ:AXä$'i•¼6ÚðòeœÚ½ëNkJ%šhý÷à¿qÿÞ¥Û÷Z®â»^#å¶HŠ"{|ïÓÆ¶ªÿ¤ïÿ)L¸†<Ï+„Èg¿úñvôÉ/Mž“ùP޳^[å«8K1šqjïb!Õ0>Wh[6Б=…no^d‹ÝëÚÏÀh[Ÿð¶u1~:7_i{­ON»Ÿ$]E¶Eô©i9M£`(0þîz],¥è¨ÈgHÁ”21ÈâçòA0_Ë"8ÛÊÞ-üp!# =·Î“•ÍPh%¥™´¤¸ŒÅÚÁƒú&˜ÇàÀ\*ù/hI“HC™d‰ …ƒV6tuœÌd¶JM>p†rT+ Y9Ó× `š_cü«\Š.±ˆm¦×ƒ˜„¹Ø¤#^²„çáŽQ`JfŠÂ8¹Ï¯¨ç<øê¡³É7– ´%ÚDR#Ÿñ2]!YGÙÑ%WCa?Ñ•ÖtïÐÔŽÆMÓÔAáâ^îì†hï J2N 7› ƒ5‚’™*à`A…’IB>o¹¦È²sv…¬%¤Ú^(6¦^Ý¥ ¦$¿[ka]ÃËda*«gÈb³Fœ£¿ÝÊf ðTC;ؽ/¹Z&HÞT…(t¬" \¥KÓSí.,½/³ñk”[?=O2©­u–@ÍÕ=‰\KÚØÃ¡W»Ít¬ÎÄxX‹ gL1–½ÉP@…¤q÷Šßű æ~Ò"Ñv:4Ó¾ÁK0ÜŠ«¡hš­=…¨žö±QëäMÍ©U¦€c¦³…ãëÜg§Í`ˆsdH»x²ÿÔViÒ‚K7ÐÅz$ß©l•58°¸àÎWsé\hŸå³i’1˜%vxùo’l–ø3³ FJàÍ[ÏÒ}SREÊ“Üæ'2L3Úžß\ŽòY6Žd¢{aÿà˜î{‰R&ís[_=R3ëªg¥Ž›yHo‡ [aµs}nf -fkÔ„µ%fMɯ)çq+F4\À†ÿ$†ûøŠi®áB׫^ô=£!±4¦Ð*‚Œ?‰FÃX†Ñ»¢èæœ0a'ô•[FA¼ožù`äTà°д\«Šå}£Ãè®d3š†j  u$9™KÀOnT6~••J€õdííbD_Ú¢%—¨[SC,-~]gK[±ÄM9+_…𣘞žØ(Ž}ž•q ¥˜‰ø.’…D X%Ý„V#Kë:Ïò|aô ž!¸lµt»B&+ ®ÉdBdîÉEKq¼RÚ1Á«S]lpx\±¾t6&ëSù`p تçylCÌ…aûI°FX7íúUÂ'$7©•mý—z£•sUì5å:iEÏÑÔ'öbÏ9xf‚ÓÈ9[zh×2Ü‚G<€³t%}ªõ6pûoR9½Â0ÄBÌ÷Ã^tÄÖzA!½ÈT§ºCÿUp@J-÷öÕt>#BKm6TCH]¡æÌµ¬ɉ “ãW^éï"¡˜àSÿå¤VðIDò‚MƒX( ŒºÜ2‚ÃJˆWk©ò!˜Ê¥¸¼Ó>^É9Ç  ›®2"#³ ½ÑþÏW©e¯ö¸Žfù9ä8é—­dMÎR³¹øðSÅýh²öäµ…\K ¾*I`‰>Zʶ¡šKÜ£üy/zj[ŠÓ™ÕRu5]Äy®b—ÉÁ3±DíE‘sD….ž$Ò†Zµ¿-8 ã”ëtUЏnÃ, áË)òy¿õþ¬³…¥ðJÐ PFT[÷øa«VkÃdŒ‚Þý‘Œ¾ÿxÁ?µÞ¿‰ËÊö~JãÇOÿ¼mÆJ yh˜pÉ ù5X¿Õ•…¾o†± ª«‹/­¯2{"âè#?vꋨºº)ÖE`Âÿ®‚ìÔD-'ÒL5šq^2WÂ-_ë*)WÐÔsÃWÈO$ñ–p¬È[ÆA¬ Nô™AO~;·¿Ë€M2Øk•¬D?%Qe¹ž+f §ƒe‹”ã½\‚ qˆ‘[fç$=yÔƒ¨¬÷zÈí"WŠXñ`úkäuC¿6máA€Üà3 íç ;¸àþ†à:è?o§yþ^š#ºö†ï6cDd~â$êñsØjùoïl÷º<Ö$0ÅÿÕšž“tgÿ –Xˆ“æ4̽Ã~s Lµ¼´{wß™ßè?Rpïd é÷šFЄî5çÔ1øÁ„@âèí˜èqü§âTù;#ü5nÔ<Œò¶5ÖÀ ý{¯9íâ‹a£n|&šý6¢FïÆ î29¸.új4÷¿ã´ƒm¥9„ N4ï³¾ûàÐ|Pu¯íýÅ¿R"?EÜÏ™Ùߺi„F÷(*]Á%%ÉKIç~‰SºÆHx»Lq̲ÂçÿÒE.€fìF²rPP5ì¿€a8á´îË0ü²FA:ýñ‰@YV üoæ„Ú/ð î*_«,Š|œ%~®ڮœÄ~žÊ}aòU&Ý€Yµ^Ñ1­VK×Nö*¨ÉÄóÎD˜p›f/…)è¶ÏÖ—EXøÞõ‘b[ØÏß§}»¤òÛ’ô5¾ÞØ®ƒætõôxH&,˶º”¼éó˜Š`±':\†c„°&’²ñcë*›rØUÌÀDb_¹h¾VÔéëü`ÿèý&mO&À¯nq°ýÇïã`‚L‘ùMÓãÄ1èõú‡Ü&´d‹“çQ‹7ÂÔÐ7«âýûˆÎyý“ƒÒ£,8úŸÉãwÌ÷þtž.9´ç*5Ì‚~4t`ÃùÓR+"£‰^W] á±þðþϪ« ×P}¹éŸ¿ lØÁ=lÇÕç^&·ÏÄëN[¹ ;³Àq=­0pB;ûá£ÉzéâG Xûã$ÜlLþKø{å= ŽÎ 08Bèx r|siM®q$ßRA€þA³¯;I§Õ‘„Ý·$p°ÁUæ¶— )¨5`SR»õî›ùJ·W¿Ñ›òZ9šür¤lzÌ7ÀD#pa@:~ÿ^Ó^+ÊOž5Kh’8ˉ@ôÚQŒ—ŽdTûå-b] 7õxù? '¡éÏqÇÛaæ¢Ö&ñøèYXfJ?jtÕïñؘ«ª"­Þô’<ç“kj %’¬"Ö ¦-Mp¯pWúŽæN¢l '¬jõƒj 5Yúb í³C±°ó áWˆãT ò­j•:tmˆMüW⨽ºLÝëÀQbó§;=T|2Ð`cÛ^¬E±ÐËdÑžvh'$cnz¬ôÔ¼ës@ZÚ+õ ¿ŠÚ¥ŠØýÆM ã+º _á]‘D2–’ަ ¥XMœ+^.éWlkm3©Y—í´d‚aµê†ôÅ`gàŒ_£1x…ÉÅ« #7Þ•ÈþLÍVTͬ;K²_¾\™øt9æàôlÓrŒµ»EŠ=ïÖôÝô~éë{ïð%)ê•:Z%Ñȇ¶Lƒ`*Ò[Z®ÅÝ‚c *N6“M+~eé Ô{Ηª…’¤µ‹/ÿ˜gûQû^t7:ìØª•9&Ìi¯#(¦G%BÙD)$—Õ7¯Âê¯XÅë´RŸ×…c[Q×’å(…î?ž¨µÊŒ¤Èr ‰±)a,'?t‡Ôîk2™ð ²¹lh™ÒiÄádKÏ´s?Ì­&Â-ºÐ46¾È$5pþS”fì)”uIu€¡} 榎©~=ÑîÒB/@*a…ͤˆšx´L‹ŒÒ“æ(úKé8LMeËÀŒMzSœ™¸ê2C5C?Âqò·-u,Žp7ûÝ ¬E»+¬4‡1pk£æy½»ÁaËøÊ­ja9Å\˜+ùhÎz$V‚®ƒcâ< ½K%¤Ê„Pð¾[Ð6ª³CÚó!j Ûð¶{\²Ô;ö|ÍËDË@:èøòùÊSoÆAw„4•8=e<®ÁmÕÆù"lJu›4[9ØëÝN|&<Ú88ë4¥oúñáY ³ãác?³áŽŸŒûx¸I^j8¬×þa½îÜÂþÄ£vŠôK]^ÇÞsAôFñè_’Îz•sÇé‰Î!dyr¢§ÃXÝ£vÒ{ÝKz¾§eäVGY°¡%:Þ\ØÂó¦Xƒ~\à?^ÌÕ(e{ŠªØâ÷e"†ëX'6¹Lª‘)#ÓòêHµ”í\šR|fk¬…<ƒ¥®åz–JÁi3Úø¡¯Hgo¸Qnè@Öc æ)z‘X&ZØzj¨ˆ»n$&«á·N…ŠË †ô²«ôÊg}—w†CÁ¬•Ë{¯¥Â*_%ˆqCT™í±rÀ!ƒ¥bÐvÉḞˆY@Ù>~Õ7â§Sl¸T˜«òj&â"$´YgVUª@ÙGaïLfÃ9P=Œof ÒÚ…Žd?–pZµ{’õxŠÞï˜Joÿð~d?k ·þÁÚúB¢hËP•¥§­)É£¡ßE=°Ãi87l œmhfº Ø­ûa°|ön ÑZ˜«lý?õZÔw Të“V .PWñ”[I͵Â\xõCZÁÌd­[“²Jl‹Zª€®wC`ŠX¥ËËt’‰à-W~ݯÕ>3\f0çˆúáüðäÅýè§ÿrúâÑ}úêųӇ/:AkÀïJ¥ñJØmIL^8p"Ê= š(¶vÌÂûránôb4¡lCÌ CɼJ5kݰÖêYfã™Ô˜S™EH)†²å[ÕtQb~u©·gð8=/ j¨(mlOe×€x,~MKz|m ’%• k[¸l8ä¹YÛˆ£6˜t»¥€Z%Á.Ë}žË­Ñ<’Ù0¬¹²½*“¸Ô­à¸µdæ2ÿ”J%È)Uì'»Tú ö¥»)Rþ´ƒ³xpvV¶${´4Uñ+ß„×`Ö8ÿÏ€m0Ïð³gÀ„7hW¸½A_Aj-ìù¤Qn1R‹xŽ’¼GüË-fz‡Ö¬/ÔÚPž‰²îêJ©WÚ¼Æ ¼IJ ã]8¶R˜{c/ •¬‘À´ƒ—*êÖM¤‰°þI-\JX ˆï¥#‡§ ÉflßÛyŽÛÙoˆ5 ܧ&ÖµÔI@­(Õ¨'gÒ³>«‚*'BÙ‹“c5‰<3®4îñzn¹f<_Ì‘B¶0GÞêçQ[µ¡GÔ¦‚ôÔt_ÙÜÇ¿ŸD½8jÃ@_¤(ÔîW) Ë B÷ëñ޶á¹OB>ú¼wN*g¾â'«ßñÉç š…À¡aåNéUÏ ›¶Ð„NLƒcAÿm1^bš°P†˜Ð./l«†Æ‚æÁý¨@R­Gü¦«ô¿½”X"™ê[uuu]¾jG1ÎQ”Tïa£Ìe ~¬Ç:==ÍF¨¬Â‡^E[Ó Ò¡ßÒ†p¦Õ;äÂ…Az²í˜£ð  ºƒ;Yä³lT1¯—4ŒHß¾:{¾[ç¹ØÄ‰Ç2Cœy‹ü®iÍé‚?|Âàùúïñ5yÍT݃ú JµïðÅ×î‹ûüE#%w‚¶zŸ›.}à–›ŸçRÍz­é™iß•©0d©™i~òx½Ö®YUb»Ñµ«}QBûntpç‚Éð×üÕœ,±±Jƒ?«Õ7…¿Q¹Á«à”??æ¾ö¾îïÁÜ}k¿ÑTÒœÁbn‡/;ý;ƒýÎC¹?xÿë³Ä"tVKtÈMÛH-]Îòøñã/nFã|i¤_Â9#iÖºsØf‹vt:Ééô2„ílÿbásò¡@˜p`Š9ÓÍõ¨#¥'9ÄšÏvQ9ç äÎæ`L.Ìh”ÄwÕø‹ ÙÜ£Bˆõ+ŠA³Ù—6ÜJBkl¢ù¶Õ´YqsQÖÎ7ˆcÏÇãèc¨¦qÕ,Ü:9Ó‡Ù†gùemÃxU·(JHMØïV÷ƒäq}Oª-ãáúÑêV…¶>`2ÊH.ý†…e|:.DQ±=*½Ì‡©†V-QɨfûÜ%t<Êà5$§*ŒòÃÔµDNR!b­å”c‡o¸¸– wC~>M»ÌSåé?ŠÉ(/üÏ9þ5\&ÿЯfv¬&M¿àÃÑp¾À?i6Á?ô¾¼žÎOùïÑ@» N^äèáéœgôüz†‚̓ŸðÝdÌšGNÝëˆè'è»ÿ¼ LžLCЦ1}]Íjhÿ€âµò|¼¦}Ö8ÓMÿ,›ˆÙ™¹‘ÕJ`Gta +b6åB)rð—ˆT¼“þx²û¼öŒx°`<N 0˜Åª²Þ´gÞïXcf€jiK!Û²€”Á|ÉÊ× T¼a¦f%]8qEpS°¯Öâ賬 HçÙÒúS˜ä I*^2v„T \òñœ¤_Y‚ÊgåÇŒd®®‚Óqxm/ü#FÚpÏU¼V}g •ÀÊkoỉ9r7Ý!_Zç“4yoy™p=×,î'Æâ¹ÚecÒ(™±¤Ì(¦aœ—gÁ€aA…c¡õ2ñÅe U©µWìS®—*x™\Û‘ûZ Œ0f¸„6¨£¬Z¯-×>öáj¦Ê~$3Ƶ1ÒµU¹lP+@D%àZt¨gʹKÔáea©Ð:šþ?¢„FJ›â´0|e>÷/ æ&îƒôRÛ %™ µØ/¹´a… ‚H¢ÊQ'Dîˆ0Ç“”³‚ùÙLœµ rëù ¸J¦wnMypàxF"sEž$àŒ’'¨;²Éû3 ‘= ŒÒ[ð.£‰f|û®ì¼ž“9슠:sv†Îvnmi Þ+ÝqÏe^s¹E‡Ï2­b3bà`­\LŒ£0ÐÄúlZëp™Íͦ™ga]yåð ù”øý mÛ2mÕ^3¯¯ìô£„,ðIDÏÚb¼Ñ0)¼°aŽsX™AÚ-.Ùs5ëk#·¨—* ƒãøOþðÝQ܉¾¦çºôÜý–ž³9Õha™@øR¶Q”ȧÃpÛ¨ mc W˜ÓHm¼àˆ$u&»o匽àþT¶¢”øBãá¶œ×e{¸ºéÞ,3#ÒJRª/³YœÐyXo À§ËNõ·.Š-UT8a€VÙ‡UÐì@(×€HÑrjDbÁ–І #0V.Á3ɸ_1DLÀ[¾Ám>Jb ïí¹¯4kª»ÛÏß LÕÇ Ñ¨TØ[l}Üš{´r/©oNCÚ¿‰BqÆù⃚úÝ6ÞþлwŸ4Féš™’bÒæ_dxlNòʃ¿€AæÂfí…8@þKRxOg±@–›M°eKƒ ÒZp`k“®Ããïáa J„å³eVœ;±ÏHóG,k›³L’\°}—nü¶ð"¼Ô½R)—²…Fú3l2R£”~aäÔœÄеQ’çt^š¯%´µ¦¸d´à¦bPŠm¹Sý…‡A?Uµ8ÏÙl,8¬ ¾»Û±é‘$öê5°.8[À\ Sr˜Û‘#Ô^’À@~Í+¨g©]B´Ÿ3¦)@öïãîÖŒßîŠØÀéL;ΚláaõššÕö! ÿöâÚL©Ñòþ’¼O:ÑK”—÷ñ —§¢á=îµÍ†Å˜Þñ.bõ‡Àú…Q¨ŽÀÄ_îS`CÏÈþ½Ìò0=• ô¥”zn™/-_¦s2É!òRž3º¸1#rH*~ÚѾwÛ£(%m¥ áòå—à¹ÜÞ 1bØ8›3(Åpª@ËZ\œÁwA’’tÙ¬+J»ç.ÔFÝtAšDËz+/é´ b1r©”z™Úâ¤Ã\„Š >ó%eLW¡/{¯‚D•¨Yöþ$– ¤®ò™­’ù÷ŽnJSŽà¤ŠZOÿüª-÷k ”Ðß½4ßy¤1žA/%¢)7iˆ÷aèVzâ†òWµÊ܆ëßîÉyïë$$%Éh÷Úµõ…8ÃkÆ5K.;6ü•^VñCH6VŒ4sçÉØÅî˜gsJ°MÚ®4è‰(L„þÝÜѹ޵‡zÃR$Ê.—qJèãsž.§›Ûð·hðkrôëðèב9i>~¤$½¤7üpïÀhÈ=—ÒÀÀdÔ´ÕJétú•1<>ŠŒóŸ4(öés‰w:.‡]¿dh‘Êwh·¢Ë[¡lÇ+DÂâdùP‘tX—[áÎ Ž³;®_â0ýpËc~$êN:¸ço.ÚÀ¼ˆËBÝÆ¡óQ&\ZºK™h€ô"øš ïEý£p²U"±Hf±[î1|Áu× él142,p¥­­`škߥI!2còžÐ1ÍJ ²Ò(óܦø%ÞðÞÞÀç£&qGÝ@—ç´è…6Þ(@’ ë.(?P$@×Oå­HU¿‹Ü+4±1GÄ>ÐlçýBZL»kÉËÑ>eñD‘ñ¤'åK^ç)•N :’©o„—ih¡“‚h@2œi¼¥Q¾Ì&: F¨˜%iª7«‘ÆÂb„Ö`ö)j¹FÌ)ÿy_ܪt&1Þš~3T”„µÈüõlbx²¯‡lØ®x¾æ×+ù¥£AŽ$èkr—¹ö.C4À§­vënÀe³Xöڽǎtݱ`ûa6‘µÝümûP)õ¡¼!ñçÉ©:Ôc–ÛÌ4·§P+ë¥ðÄq¬`;8Nð§f⨷6ÒmœÂâ6¦ì¶h˜OZx¤´kzt᡻ѯŽ$úפcd®´NjëÑóg/¼~òðÉÓ'¯ÿ+úþùëÇGrª÷{·YJæ¨0¡÷qŠê%)Á;Ew(ÜâÚžØ'T­¼ªÒæ7½V¯÷A⸀«pï^<ÌsûˆÛ´!^.*qŸC™öV fáס<×ÎñíýÆŸÓ‡æÞ,ÿ®WÚë}ÜacèìÕ›øH¡eœ¥oÐ¥¿oÑß»ô÷güónV]O¶Ø+Ýhmö¸X±yêõ¨[SçB5†Q‹Ä¼@»!Ÿ™—zThÅt[C¤‡¬oàQ”.Ço,ŠÝÝŽyÙb›/:mM´]»Š‚Åî7"0»GjÁÏâ`² ²fÂõÁ7+½­#c˜J»$Re¤E1'æ¥mÜUZº4c'Ð;&‚¹DJ×_=ÊZG^}R4 `$•f2qɬ. /˜•䪜ç—Z¼U’ªœ zÉêÚŽ9!\ÀuEH…aâÐ!î¾axêE!@Â|K¿cI²ÊäÒ‹Õcuê2Ð@Çg=Qg( NËâxÐý¶Ï&(¬é½ƒÊ0PH‚ý¹¥9J1Û§)o’ ÚF,}c†™¨ú‡UÔ2x°L|›Ó(u¶"¬f‡w¡óBÂ3˜åK0¢ GÔßûh±÷>îøðwöETz ,"ÃÒGÊŸ½i•ÎÃå5Šâxæ¤EÓE£ú\GüÁ¾JŒ,5fÏ¢WêÌ„ªlÕ™¤ÒRÎäŽôbQð*ƒæÕ»¤¾]Eim›Åƒa÷CÈ¥ ˆå×€_KP—–Nô`º¶Ì›šþ°²mÊi(u êÛ}DnÈ+}i_q1yš/ ›¤FàJ #¬ALPÝØ,B;.ÿÑ6Ymý[ `2ALÌðŠph0sH2‚CR´Ný‹\ëIÍâÒ År>›g…èM’Ãn)‘ZŒ9Ó²¬ zĘKQìôhÍŒÿòŸ¨ë·L&q€RÇXPIùB€5]',RÓ"LùQ³ˆ7õ1b“­`—ñß æbuõÐ’r]Ø0‹r©—q>¢0ݦÑôÕFVÑ-Žc‹îyt¨ø$”1ÉÂí)¶;G„ªõ»n_ÛFôöv ÜtR¡;Á fA”4–·¾&Ñ%5¾<Ø”Fÿ¦ï£•Š» €f*…þø „ ² <Ü!Í|ŽÐuŒ£S wõ)'„ò¬åaØ%ám/¡;téfCjI§fê®TðÇW%°Pñ´|;¡±´gdåµ5.Hm¢¥DRjöü”½¨¾H=¢<]Ö'²…LBQŽ»ÄÁ¾eȯ´šyh±‰¼‡iõǤTwV½awPU`U“Ëã1•…¸(˧<(eW‚KŒñ]l}ÅÐ"ÄÞ0X`WÑÝLKs1ãICv¯Kq5)\f4ÂØÜ‘Ç¹‘‡qÏÂ÷ÓÒR^ŸfzÑ÷*æi}†¶Oõ–[eãnW)ÁR’ìÞ=Õ‘ 4+/¥ È£¬ŸiIø°Pš¶(õ¸„ƒç[1“/RW×Ws¥]X@ qÈI©ÄfáX\.•A·65LŠVBá\¢CÈ’fø8t_>£ò¸aáp!ân—’d°Ë¥tm ÝȾkcqH‘·…+"¥S_××(Ô?ýgâÍ'T¹jfË+Dã}]Z}³âºXûš˜[³Bt ÕÊkõ½&c/üê#)’˪ȠûÔzëÁIÿ:lö62› •Xì’÷z(½‹åýÒW±Šû !dæ£ .ю¨!àadSn©ÎÚ-é"½›SÒ¢Œ¦rÍ 2O'ŒœEta¥Ù%3ö%]X‡•ýo»-b|\©U>pÊî”@%ß¹@?¡Ô_‡“$²àBd[.ÉÁ8Éãø%™ä.ª ãèHd¿Ø’»6I„db'zùøÁŸž=¶¿¹´}»\$h‰¶+ Êá•]Ú Ò57Ÿˆ#è=‡iæSZ•j!5Úud%—+šxŸgV0'ÃìlÉuß%‹„fV³v°Ë=à%Ú=ýôÏÏŸ=£ \u`åÎLhKÎ[×”{Ôù=çàcû•‰Ý1kN˜’Žq ̘Q;É‚£P–×Güóv)ÌùþŠÙÝ{ß?0kvüõEºHÆÉ"¹rwMUw"æ+ÎËÈŠ’¸Ýñ~ _‰¥i(`žoäf XžžfW¾lθ‚õEÅ`{ñ–£‘;g‹ùËa«©¡šVʜƘ„££¸âW²"1²ÓãÑ/|~+Þ¡= 0ôÎíV/]ŒÞ¥× ãü›!Sa] —+­Êê"Oå'ˆ²‰ŒAqסÓH§ËV7 ž@Ný 4û¼ßgIéR0àyîV™5Ý#+©l›T¹G"E:vv‚€kš5fO§%VÑ–»&ò÷Eûn´P–ê@eÂ{j ýÒÛCÆ®škCî9r¸f÷üŸ±k(L–¢. Ú™ûK2¤;XI+ù«öך]¥ÈÔî/§ç:9…¼5ÒñHWž%#•’?RÆÉQÑÝñ,„Èí†ÃPƒ¶ù?{t›=ºé±ðéÍÏJ• ý÷?P+ü·èœa6šßJe¶Ðî8ø”Ïü]ÅëüÞû¿þ|yî7Êš}B†)wó"ÄJ*ÇPá&⑎ƒšÃk=ç BhƒF5eOC’Y”÷dŒ—H„ÙrN66VmYr-Ãí:»‚ªCNîö*öFë¹ó{–¼•k™¿WMo¯BsX EØZ~zxÍß]„ªÇV/ºˆ ³LÅ×í³[tÆ€; íB‰ä¦ªã—ɽ’‰nyCƒ¥Ò®Ñ{Ç†Åæ [ÐÎ –ù…ÍÀó%L3ºCþ¼„7©vÚÆa¢a‘Z¬½µ– ¥»¥ì¶S¤•óËé$OÆ:-(\ÍH틌3Ý­;“Ë£òªM,ôWiU^S‚õ©¹ÎÃ2š#z…½vÖ%:øË¾}ôüé󗯬a"¾ÏæùT‚A¸ˆ [”ÍÕ¹;N ë5K¤ª°Åj‹‚ KI‹Q2ƒ`B‰œ‘ ŽÄý»ýx •<`͇强ÜM¦Ÿõ_QxOÃwªÿŠ“¨ŠÚïD²Ö~ÇI µ_IæEiˆ*FçéEZ1  `a±[‡{f†öŽöî|þµÔÇOø+Ö8>g>Ѹ}ÝßÛÛ}ðý«'²Èu˜bçöæ®"µ½ „„³ÐE¢AèÉz#‰C¦Ñ ¬¾B$²]í"ë·t”o…ã÷%‰-+lmkj:Xþ~ÔR8M[}¸µÆÙ…þä0jqe¸Q>Oõ·Íû“lúNöEÔšcàEðä—Që<3ÖÔyJEÚVuó`í$£ ƒ>™®ŸÍS4¢><ˆZ×),:Á§‡ ¹ úx`†saΈ©–ræã;Qkt„D¿ Ë…yÿmõç§Ÿ»ýÞÝq>*vå–²{Ðc^Ú}ßïìnG¯îÏÞÞÞ·oGôïþwoÿÿ•?QÿààÎ{wúýý/¢½þwnÿ¯èöoozýŸ%lߦ+—ˆ0›gÜðœyìôt‡û÷ÿ'Ö­ÿá¿jýïüÏúÿ3þ¬[ÿÛÿªõÿâÖÿŸñgÝúßù­ÿáÞÿ¬ÿ?ãÏúõçŸ{ד›¶aæãÎáaÃúÜÙ¿sçÖÿÎûwo÷£½ý¾á…ÿíýžmúóùúw»ÝOÎÓ('æbùÓÏfhTnX‰ò_Ù3jTesã€!Snœ·¾%Ø*Ê;tÊNŒŽ9å䤵ûÓÏ»êY8£—Äô!C‡ˆa)þPÆtžx6—Š*й©žÀ„º8qÆG\?)Äçp_× ‡… E™˜‡CY$ã@L¦ãñÉœ!¤©Âƒ4ùÜšo](ž­ðÉ R›œúb1}lA„霦éØ7 ²f†T:—‘ט޹ã1Îu²;ÀU€!nÔÓ\dÎàATæn4I§g‹ó:šµ¡ŽŠÝ¸UÄc^(2b3X*áçSGjÉŽ³÷™ÃÛyèÑÎØ %ÅàÉuUPG·µ£§)bˆ0â=‡ƒñI$‘ë0£Y “òÛ ñ+YÿÓÏ­~;êvˆïCŽÈ•%‘>d¿·ÁtùŒ^ý×÷Ï_¼zò ¿rü5ø‹û½^ï$úš§à¾ùœBfèS÷0]T’²Û¨%1ÖÁá IÈH»¹X\¨MŒË ©q Ó×ÁtAæ\”²€?‰‚tb ÂB¿¢*Q=›g£1™f‘wKD¶‚ å6D¨‹¹˜»çLǬ»¼Ù’Í£˜(K. u7Ș 4•Pâ´6ñ›É‹b‡ß#£ H0ŠL+Ô#ø[8ÈÉ­­ÎM—“m[î\pg{Ñß`>b_v&Ζ©Ùì;²Æ>ߊMÿGvÈKåXÂ3°Ñö‡ÚU‹ްÁÞbnDÆ,±e}” Cexk잉æfCŸç ««ãAg>,YÜpÇO¾ÿëóÿxòýwÑ_þóÄVa¿kø‚†8Ê‘>’÷Gç ”d³ˆm»DE§´x`c\ÀÀ?''¶‰s HHòM‘sÿÉ×õïWê@98!J1Ô?°¥‚ý0Í®˜X¡PWŸb•Ë 7ÅRŠžT* È[R¤¿ŒÐ~dŒþ}„öú›Y§±§±5º÷Ò+sa ¬ƒEMp] ^ h˜‘B8ì6Mé¨j»FZh‰(µÜ:èžZ¾jOÛÊeÄJm郶yœTh©˜$Å9{¢t\ñ‰®–paqˆGó¶œoÈИgDxQõ( žF(Cu!Õ>—õ°%åz:Pžœç>wØ´lã)zú*U 6z!ÀR*"?dÏ@¡‰ï"¢‡ñ+Ÿ=yö8æõ’»‘·±Ž[P@ætØ©ŽÚ¡y˜-3}^=zòÄ‘yù ^($ŠÙFòyÛï6Ÿ¦Ä$Á KUÕRŸîh!7é:ÁmDO¿Z4¿Ð”Ûš£ÏÒ­¤Dp£@IïmØ1…“Ãì¨zÇ8j U"áe2Ÿr%É%°Hq’¡I* ’{—C”VwZõ„/¨€ fÅͰš¹´.Jw]ÊPgX<Þ ´ˆ~L³…F˼¥0KG¼ !ùkD¦A707J#aÐ>A÷td¨Öršœ:xFm-Tx¿}3ÄlE¦¡%ŠÆ8‰ g*G†ÏåJÍ''‹ñÊ¿wŽ©¨µzaê¢ÝД¥· ½2Ò¼“Z+”cºÇ2Ô±ôÚ •E nö“M:£mɇª½ ÐZIZîM©ê²#DWiºÁêV=¤yi}'Ëùl°;èzŸx©©/e3ƒº+DY˜Ö(f)ÒoÉâAñRÂ2¢÷ˆMƒ»*ÅlÜðò­’‘Jl8€yrÉÅ<0ˆ—z"ÄžY‰]¥ªBÏŽQ"X²žÊMÅÇCX])”™¹zHpF+‡ôK³ÚÑØV§r¸É3„µJê°táøHâ'`ZZ(%2~J¸øƒ¾j8³º©*­Í§Ç«P½2ó_ú³ŸRÖUðŸäŸ›“"p¸(UÊלó ßƒÌ 'YŒÎá "}—eË Ú5Žô€ªë$ÕébqÝÐ}fVÛ?ˆŠBI— ]õW®e%HMùfg¡ð=ìˆU+,_PTo Öóe-5>h‘ ˇ­Q¹“¡.[;ƾ%ÑÀ¡Z£¹4Z#4ç"$Ë/EÓºƒœ5&¹ÌïG­i® è~Ù›¦k¼¼“|¬Ã# kݽȧùÈ\-.Òàg+ÊÒY«ýg§¤#‰¢ìyÉFcõœŠeºÊXŸªÐ:‡üXTTOÈŸ?lGF_O…ÑÍHXä›Ã˜Ę’ììgZøs š·\KdšŽÄô1h:úÌQpQh:M4˜é¤eY0‘‰žH3yË‚qM=â״˹Œ à/30»’Ê0`¬—Ö:×Ý.äF]T#ÞZ°nº·ã7˽ƒá(n×ì+o´äU–°_¥ÙrîÉp§eq™:@ý€¼¢'(›~ªUêv8±ËépIXãŸÎo'Ëâ\+M¢úU;¯¶Dúe¾T6Cë‚¿Ø9R oŽd§„ñÁ § ?•¸¬ž"g’ÂÌJ2Ð`”Èll÷,@!|½ìK#}݆‡²2›Û»/}™3„"Î%êThæ¤#‹­”Фzè ôf€\m4/·"¯nþÔÓóDç9X¬ªËäÚáG—V#S‰Éƒód²xK ¨Ë¡õ”Ëõ¬t8ÏÏ8-€æ\¯ýk/YÇ/æ¨0´ê6 Ú(«bG«h=[ãʹÜámó0Ƥ<3úàÓ2©O–ku:fèús‹¿7 ¸ÖAÏ£©:*¡7!‡È£Ùá$'Õ«þþÁ@×¶V=%USæ›Gb­P}OˆÞ¥©2AþGeö|/?}ðò»W=T– V+^.’å¸é­]2z Fãt¼rý›ÛuÜdý¨Ov¶Jˆ|n-·ZCª¹â“Ü·êÒ,ÔzÄV)! ¡lP\!„Ѭ®b;…E=fç…vKÈDò…äl’ ç[¦Ì›"j§Î©iÔä6L^ ŽßÅføÒ)ÒUuQÓ@½à¹ #êÆS¿bžÉn,máL:zåmšJÛÃß.IœšÇ麇ml3ôÒ«¢¼«'Ðl’ 'ðO9åŠ,É1‹ë®æ“:ðä–žòÌæñè—Ø+pi­7ÔŒ4€º£@ÃkæIœf!¸'Áf`Þí$ f#h»×.ÏCjw¶*c(/gyaËHÉj¸ï]!ÕDݺV‹V+R=Õã“ÒA„Ý s¾6[¥¾oóô·÷ϰ»‘õ@Î:¶\sôÕÆRñCH‹õ[»»ˆX¾ÄÚ®¹`èKX–bdK°ùç9ô7ÈT}OƒÜNñëHº³Ôùã줂Ëû^tÞX-l—_t®úÊlkWá‚B—Õü¤`w%?™û¬¯@KµvØ9P +}/ÕÓ¹C–0tË"“WD@™Ù„­Xp §[…ý$l„…Ø`æQ;̨›ñgŸ}ûàÉÓX¶Yåé@$IUŽLƒã6¼fk‹»z¡ò®—Zž©†Œ’ SëÂñU$eñ ~!á%D±ê¢›M‰ò"ŠÞE\øƒ±¯ØÛ˜ù‰'½æ´Nyç z:ÙÙÌ¥@'ó9™™}cξ¹Ùú*d$Lœö¹ íHcVvñ9ÎβpBáÓ)¯°±(ªA¶ÑR@€~)àBCšã2E>+ÀsX­Oc6)0Ö[ï˜?; §V¹lí3GG¸wžØ²1ôYO>âR¼%ÌUZ6zËŸ?­_lŽ#rñ‰ù—In³‰Í›õûØãûw¸È‰Ù‘T)˜JͧT÷ŽL¾qþÿáþÉ Z5冩"Dãvì>#ûNc½*¨ØØ¦ÌҺѮMUDY •Õ²ê›Õê/ðû²j.’m¸\xÊÚÊYÕ’£ü’‹æ ‚­È™äª‚«ËgØ’%¾ù×ðDc³ÿh¦X;ÞíÇsLj`·ã~g¿¹ºIm)Jl0RÔrše¯ã¯ùtÿd5“&íIž¿‹–3å@ñH'”ÅGC`&¼¬pI&†5Èy>_ȳ ÄÊÙn­KdÑHqÜóµtÀXxœH“ÄÑ~ÐûkFû7{¡…ƒ÷ÊÖB’<‹EJ%1w®Ð2%àYE„£s_é«r"œŒ$l ¤®Hà¸\²Î³¹>ZÄÚsJÏÖƒJ0§P¾à§tû!n»½zU)w¢î~õÙ)ÏùºæžôHM[„ã½&66;Ó\6ã£J0OÏò|a—~ìDîÛŸ=õ_òvmäþU$wHù°åýôì£È”ƾt;cö}ç ‘î~} #Ã|»öjbØ…v@ï¨{Í.€æëµ{:,$d“Pz`èl8AE5wœ(0C\ªø º„Ñ3L‹®â¡Ô°]°Öuó>§ÜD·;ånP[Ÿo´•û{’ Qd(ËÂõÑñùí¨•^ÙÏ{Ñcv ñ—a¥„!v‡l@CKç-d0H,Ѹ»ÒzÏ"—H/iõ4ð6i…ùEF>Ú*M_—<}Piµ@œÛêëžàVûsÿè°‰áÍ#óߨü—–U uðà¡È)ÉW*Qn{#XéM£bã0À(Ü%ór–g0ø°›»Ÿ»òmÛëÍÇÿ¬(ø X}h®x¼¦Éæ½Ò4¾¦]±bÛ5^è6“”fê7*õ}ÔJê×m5°çšëGª€yãLs¾Sþtâ5,ݪB±]bß J×4{»³vg«”Z)½`3„‹¢VœßEï•\kû}j1n]¢-)¤¾…0ÿX5æxe?È¥3˜&R7›‘ެÖÉÓRltž ¤°µë¨T‘.€ì’k·"C°b庰b £k³¶hr zoÂåàó ,Çá«ò®Eˆ줓ôhË+4W«ÝüíR‚ɸDÇWò‹Üx÷Áá>6BùÝÆó.îYÒôÌ|B‰Ç'qCñ ®ÔII°ü’éÔqÌ%.³wÙ©¹µÄ']ô$¨«æ=ú×½¹êp>¬Ü’ot8›ï¨ÍQ­™ùE6ƒFýa½*ýÁY–xø"ؾÃë ]'–ŽB¦S•¼05ïg{ù§„ûŸ,v‚*Oä/ˆ.–#Uy@‚%|ŽÜNAÀ¾(›Õ"¢0ßÖVË=­Öt‡·¼4Zê¼-pλào)\é @(Tõ3Hm)ãM—îy–¾·xª̳„V¯ÊaÉ«ª.á‹,P¾7”¡( h¶6Uþ©«Ð싇»w¹µÀü¯ÀGŒ,;ÓÃ%Œé+?žÙeÕq21\éQÑ‚š:IæEµÔ3÷˜z]7*b.LC.4ÙxLëlï0—f|T¯KrPÝ…Ïm¥0¡SPEþyWw&Eâ¯Õ „ujÎÓ"+VŠõœ«šDgó|IñÎNVPZ9ˆ(fpq=ÃZÛ˜¦„ÒËlîùVµ™£Ï£ývt+º]?ý†É07òÀCûúz–ò©Hw”¦ªTJ¤ÍŠ‘xhv,¿ ¦!É(]«ôÛÃYL|FñâòÑpì“q­ãZRoÊ¡i†û“w*žþ¶T‚É’( 8¡Ä]Ã>ã«fR2µ‹©ë'bÏ©ºÇeTÆÐ9}æqfE(µt KÓÚƒø!ƒ‰žôC‰ÛÖ† El@:;Õãe:üž%e7B8©L8^03ÎòO$WVà¡®¡bzt\A{±a`âT!eÕjY`üªªnbì­æk¼¾øÙïibïñ>aê‰Z“¢2UùÎi„û1 £¿˜g¼TÏžý—ÿ4þ“ÕZ휗&Ûœ8+8þ2·v½JõßÚ‰—þ(Rþ¸Õ{vlAŸ^Hr½*d£Ú8È+óö“ÂÌ¥&iö×mþT£tÀ¯Ñ©Œ¸EÜÚvStÒ…3VÆëŠSzíJ®»Ç6-b“ õlµ±;eC¨õ­lÄ;M“PYŠôð)æb“•¬Sl^¦£å÷èOi12< 暘m÷ÎäšþRdû zÎ^O7iÊ‹§c[…o×8@ÄpEa96ÍP2h"uE’*EªƒÓ§Ta·”ŽaÿˆúsÑ`w×ßzQMú ¢`sQ{°Ý¥³Î|ñ_Ù{7ÀgDž%Ê:@³…¢8¹ïÊ$¤úî6QÍ;*åÀƒ–¦¨]È›ä®xùs]&¨{ör¡6JúŸV±{€9j=þñE[‡¶âÍͳöùfP¿ÖyŸŽ5¡ݺõ=/Ö­[¼GÕ‡Àò@ò¸ùÌ씋Ôì§^ùEŽ&,¿G€e¿«Gš×x+@Œã¨±¡B§±d ñµBÈœg”ú,j*Lk…EB(hEXiéò}k–ds Ÿ"¬½«Z¤ïrlþ8 )q­ƒ—ƒ—%XÌ%›K…¸â Ó“ŽŠå|i.ñsØE°iZߥ ñgîN7LCê#pn)‰˜ÇEÊÞ4mýZˆbênh’¥¾3•K8ÚF`&ÑçQU`ÅÀ—Í!Ò Ú®"KÑÌbH8>è®0ÐÌ<±º9Н\ÑàªÀ•„›fçô~MÐCó×áQ´O?ŒŽ¢ú!© ·mUǦõ°À(³Oák Z§z½Z¹ž‰ÚîZ»<0©¡.UÂ:-%ì{ 1«wõïýß*†4ŸZË<ãÜ#"œ è#³{æ §Tñ€ ¬?½hnºAÌ'g6Q͹²Ð[·Ío½dïl¿Ô=óËq|u1:|˜Ojé‡ÏÀ‰²À+Båûšµ}Æ7oA#í8ÜùcµäGAFÙµàŸ­=iÉ3…úÄ^¦lI*|þ«‚œUµµ_ãOÒк£y’ì€"Õ¡ ®¢Ï¢ëÙÄ–0 ^I¯£ðø’A^ „k&ô$ØmÊl®#’8µ à§dáñ—ÌÏ”ò \g#ÖñUÝŠöžÜ­[Ø„·n½Á¸Æ•®ÀJaÖBžÌ—˜YÛø ÜZ4˜ r¤ÑÍžORsæþ‚tÄÑŒ”œ§(¥Ø›±õ1éH«¨Ë½ç¿é¸2|H]d@²òn&/ðfܳm¶k/Ú%³ûAí–½]¿uî4ÊxC ¯)<¹ ;£ÌÆÊX„Ç$¨¨ñˆßÙF,îüh£¿Ù눿Ñq é”Ï„+²šàÍhõ1·í¦T¿³×éöW\Ÿ:ÑN—.Qéd«e¬UîËØB¾ÎÆ™EŽ’,rsR EBÝ«H·¾Ð’*þ: “˜íÍب²íâ± 00´¤ðÉ"m) p).Fí€B€¡#]É !ÊI$@Fl÷V`jF@ç^Ýj\q $x ×Ñ(iè+IYY *”ö¦ñ=Lªé/š#/XÜafßÿÈ¡MÌiöÀöÜ^-w.§_bêoÎ¥% Al7ÚlC mã˜ü9bH"åSv Aœ &eÓ$ÕG¤¢ÑðïÛå”o2CBH© *Ú^®7ÚÂf&Ï¢1å§t+Î×(x1e¡¢"ô-¦Ê2Ë2â§ÖN à1,«,¡ËV/€}AÇÞ¥SÒ‹ôñmTõ„Çâ˜ëø¡!(¾ÙB®Ú5g+Õž†"õÚ,/qS”X¯Þž§gÉ|L‰µÈ“ÊÍðS[s:Ü­”æÈ‹»•  îpæ‘¿jr ‘¤**¬$¢m‰3‡²$E!ߣLBbÆn¿²p%vòl’IÁrÎmžam¥¤@(ž½­;·ñ‰a¬èÐò‡ž1È>NÅ?&Tª&›Z»E>-®ß Øx¥ŽäüGò“Ðß’ó´ùªqLOð;±}µYÓhnÿø×éƒÛÍ—Œ½¥× ƒó¤hÒí›ìó®Ïz5R@Òv\3-¡¢b!ܘCIëÌõ o"Xe6X—ce~›ò›&¤¡|Jcq-ÑK¹4…ùhtžŽÞ1rwv€çKéóI$EÚtÀ™NjtLìbh&—Š‘ŽÜ†ÉPÁ à Ï{»Ýëóæ°ls=æDy †mf,Ûæ~c{às@ëpûf“û15ס”…z–˦7a6óV…ך’/ÁWšYp« ϨªŽJÜPn¨Á+Ä..üÈŽ’÷„Í¡FJ#0†KRPÕªwYðú|:evÙZ‡Ê¦-µðMk%p2 Ò´FX¨ö´T+Ã4J«ßÈûPÀnÎ h㪠mÄüô–ïžø`%ƒ|+gªŠ»’÷ñ¢ý¥ÄÅ–J9("ÍÉÚ<«r8Xo†±V˜ ¨õÞç}Û¾«DQ©S©1òœaE|•]dä{«LÉꑹì~­‘‚½K îd%­ÍÿêŠ4„2ÕÎjR蘹ò qºOw6²UUI ¿ÂVOê­aæã´´p/ºÚf¯Ø…¸Qêý±³K7S·ýmn¤d ðöÛ•_kï=çkí½ìuÅ_o} Çšíò\Ø×d)%Å=…ÿYª°Ž°Ñƒ#±øëE RßRév Tw 抣íÙái5Ñð:ü"쇔_ý9øH°rÑ&ÉñL aò‹­ ÜYJã,Ž"%ðUPí/P•C ‹«xí,‚GÍùS©]¦²†J¡9¨®A´Ë=è0øÞ=>‘6#­=y[á€j,_9Ò:\xXôÕ’È<öP0Ÿr¤†yLœÄãÅ`C+‡ì0f@²ŸW:¾ŠG (x&)]¨ ld ¯{ÛáU3ÌlÐ+¼é‰î?ì3 fý#£vëð€{½ÝØÞ»Kò‹Qó¼mÁwpÿƒèSyÜÚgí0C¢”eÐÑ‹[ˆKîZr¼g˜®Aœ­2N’J¸Gå¢Õˆc~{Uº·Ñi‡ÊÑ|]:>é 9þEªTãõÊÅ8l)*ëUOCg >-\ d2–€O3ÄÞNEn¿…ž#ãñ„©¤µ·×wéÂÍPU;¿6=ß´|Ô |?ÙDçš+^ ÀV·^gé‚xåŃ×~u£• ¡±.Ø1¥O%ÑÑH àj}•ÃvÛÞšæiÕFZ Pv\iÁ^ÆÌElå¶¢]µÇE¿ì} Q¿~M ½&w£¿>xúÃã-Ma—¦°V™i»0P*‰ü6s_”gænÔ¤–­÷¹ÿ*€Í›a‹æÔü7OüÖíîQµ¾› Ò…Ë5 K:<~Ãî³$×Xkfö KsB†¿•Žd9«ÝéAìà uM2çv–G~ì–µi ûEíìÄWøù®ŠÕ ükéÙºé_äo%˜—YúwXŒÝï8ù]D£„b†—ipã“”UÝþ)»†~¥;¨*ú)ƒÿBuˆüÅtðî(z? PÁkkC‘@=¹®¬*çn¢^寱éÙ^™Ÿß—r cÍ•ˆÏ1]GF† âQ8·-œ¹ƒ2”!†¢ÆO5»íÜ7ñ’¹ —MÕÊç®Ä-^PÞ®Öî ø±ëc:V¡½^w(‘+ÎlEýó—"†ŒÍUéXÀ›Î{5ÚÙb{øotÝm>dd!–KV²O)üüùP}¾ÿ±Y¡ÔÑh!Ý®©•âY ­©Kõ  ~¸Åÿñø¿ÞÆœÛÌP°Bˆ€’}?»îÔžØtËûÂvº¯>®‰ ï…‚nóÓ<zàÆXPö7Í]ÐI²ÐѹŽàÔfàhÛîeV¤Áê‰ÞS¾v,j\œYŒ;f'bSÊzÑý{Ñ~»]1ÏÃàA®¼Á1g›ogc*‘o47Ýî˜;ÊÍú0øbE($YÙlkÙ8ºg‹Ãâfÿ@'TLQJÂé¤``ðWBÁ}·r4½RÏl©%þNü˜én8áÓÌÂ>àg9®éGº_óù—MQ6?ÊÙÎÏNøkô-WSÞäL´©á…Í2¤k³”öÀå!Eà_´c°±úü IµC…0!±“‹û†èwŒNJ|Ï#-ŸYøÚõ®v Ã,(Vl;·Âé@“ãç¤ct—~‡/xÔ5r)‰G©aê!Ù¨`Æêu’gœøpÙjuMS)êK…»ØPÅv§F93×h”¶œ2² Hœã›-¢£öæ³Ö—’$æB¼µ N·è¦K¤Sn‚¿\©Ü‹e»vê’Ù’lŽ5§À +™m(gG{ï‘Á¤Ò—­¢²°x«#Òx:öQùr2–JC6‚­Î.ϤœÜE0ËiSÀ3BŸ­D›,R Äæ×»#˜ïúä£D>*~·z^-ò+ªµaØñt9gÇ£ ÁE\aÊŒåö‚#†lоß`oÐÔ)Æ×Ñ¥ùZx÷-â[֬זÝ}}®áµy1u¥^éø_ŒM?(y{ž\Z%½•õÒžÇαአÅõÚ®7cs€Ì%–yjw°+ Z (aÞ¸‰D-)‘"ÉKƒÛƒ¶sµ¸Hixê›Ê2˜ùމ¡Ž ™3vÏ%Œ½—ó|zöfPËÑo×.ß§oßNòÑÛ·›ï)žàˆž¤±³(šúš[[Ù)²5Lm$_•}8îžÐuÊVÉ­tse㠈ߴ,ñvÜŽh¯E Õ_VÉ©ø×74è7ñÑ›økü]*÷}ÿMÜyCƒM½’kÀÆ…Ô‹ÖÔ0Å[VɃlNßÓ·üÌêcFŒÚFh îÎïr4dµ^E0Óæ¦ý$v—ÐëRµª H8ñf€Ã´ ÄÐM'§íªwÄÜCÛMý³ID ÂᩃSÆt3gsèü’l-;a|Ø7’Ænæ2-«x& fÚe&YB7ViJô²öànùiEçÖ3Cx·¸æ‹E$[ûØZ Åþ"ù)Ô¡VlŒFŠ”8]Ôr Cÿ‘ç¡ßáŸûdŽ[ãûð³ñûôBµZ£}7å´xØB‡ùªW: Â]Ô9¢½žËå¼Ù”K®#‡”;m:;«X^\Ã%Èy¤ÜSJ3¨MŸ ºR®.”u9áª'sÄ­Í/…øÏ$C‚2}Æ/ÔçÙö.@'TšÊÁ‹¼ûey–­N[ÑX×ð¯y¹žgt0V£°Ehas6R^rÔ”xÑH¯‰#ôÕ2ñôÝüÓ“\Úö Êçw#õåæù­ûÿ }¤€o¶˜-ÃaÿÃwAãœþ£wÁ&rc2Qr£š®©~‰WÝdÊo–^¬½ÚÌáoj-g‹œÎ0þÎÀ»üY壻ÃMòZø-•°¤v}¥Cµm‡wû{OɽtGùþuX®T…ÚUºFÕk—O쮹×SÙä¾—~?VÝ9¡Bð‘Ž'•ýZwr‘eÝîd:ª,gá‚u}XÝñÅOIÍ:J°áïfꪩbœJ¾AƒäóæÈ ¬gèÃÛ¬)ÂÚ]ר¶í †×Ûø yöïÞ h‡j{4<í›8 Äe°’öÍ(SÊÙÔ÷ çÞ=¸a;¯6k¢Û¿QïÞ¾)qäÞwºûîA§{X/óN'y¾AekyÎË0ñIßmaÇ´u˜Žus&"õc<èõû·¿jæA}\áÏó5Ž=V?¬âç%„ä<Ï¿uph¥~l[Žj‘³HÙ`dîQuð$ó"¬@_8¤šbÉè|6¶‹‚‘ŸÐ•ZïæÈ°>–ØÙ¼Æ²ëz:Fu‚Rè !LÌ™À@ “pˆp¹ÔkZpUÅíf™Cì¸M¡QÜo´hõ§Z;ï<Þæ]Õ¾à>èyWïÙ—¯l˜á\êภÁœsSãAT qƒiã^¬œ6£õ›•.ó•<‘Ì£õn˜X7™HÊßåW=1 t{:Idzæˆ4öG‰âE¹(³Äèxüٔסú>5SÞn!*ÏSX\µ¯ ÑB ™Kãu\úµG„ÁfNˆè"'@µº…—Ù×â×^#Ì8 ©½v%` è§` ê€TQÜZ¾µÜ|ߊzíèëh¯asvé øm™Í¶-³±Ít} yuW¶ð?ISûs­®“Ϭx;¼¾AF¨ î‚*/9ö±BÔ‡Ò—m>=)椑UĹzš£â8­:•wÔßwUø{ÂÏÊ;ñVÍ•ö–rC&µÂux–V´ ï¿v@Çé2“ôÊS’¸£Êmb¸§>z÷ß$[˜ã*¨0Ï ofŽ®w‚s˜y$Kÿ,Ø/ٜͅjé8»œ>úx¨'R­*³€ÀÿÆhgÉÄ㟼÷Ÿ캦¾' 1½1ÿ„65f”³Pµ¾ñ!Cì•ë,TÊþ*ļ0³@}TuIì›ÕÁå8,d8_gM/Ï›Dù…6~Ž$FFªÊnßF§Ï›túã/ÍÅ‘Nô;ÍG9}ûå—ÍW@;Ö™zÖÐuhõú{ÞÚuà?TŸºœ¾þ dê³k¨ê4dß¡fÝöÊ¿×ã5oŒ' +!~–)Γ÷MN®ïx*šØ:#¹s.==)ÂÚÖ‚ƒ\–“»7¥Þ,gOX”`Õ£€éðvÐÙÜ8¹äŸŒù…Yz/B¬ïd\¢fØ.ˆÞ8Ñ\.Û袴ÄÒ¢tbpØÂ6)Áš®fíþæ¬Ýß„µWÒÕ¼½9h­!0æ"›2L£…dSÍê‚@r~¶„$ÀLC*»X^PÐJrE?nXh”ÎöJO˵Òuü'8±„2+ßK\'U£ß-ËŸá†ÊIz/Kgd'£Þ€äQ©¨EbA£÷öYˆ”.o‰µ°lÚÀS·;‡ýéû+Ðj®¶fØÃ©{°*¢üh-§æç%ÝÅø§-˜Š8BÞ÷»·Ém¨¥^ ½[ÑÉ +ýHiÒ H%Ît¼”"V…ë2mÝÀ|É8õ.MgìªÃžЦäòEƸ)Ï­žÁ~~¶PÙô›ôhñ޵7„7¤š¶e¹¨ 8-}U¡q>Ѷ1ðót¬€œA’þ믟aXôÛÍú†Ÿõ ¸,¿nß!¬-yèz(Y¹Ë¡|jöòCÉnú‡Z *J”ìClx‘ï~X²Ó–^½vÄüÊ-Êqø°ÜPåæäYì±(Ê NµjÆ,Ñf 0·<®bËy7\l¹kEaDe©já°ÔW\g>õéÚ_7·`XÇ´çv1$¾^i­i’®…c °˜v«@H€„~â7Œ 4[ƒƒ·YûøóéÃjK•ëWpì£pf27ïýjþ™áƒ'MX€N\;…… !ÀÌŒöCO2üx°xg³IjêßíxÿìÖÐ Z¬Ul fÅ„ŒÊª BÇ•H®M€øÉé6A‚•Üô¯×%ÉÎMŸ(_C½ÙÇ6-Á‘‡ÁêÜ-Λ :Ëhcü|NMn±Éí‚›¶xÒv¢àôOÏ:ÑyöÓ»fXýƒÎþ~³r`Ûk„ï㨂>iR+ŽÃþj=Ê6CÀã«›¢†HÃowV%r÷ÙTTˆé˜AKî—8RX ½²çÛ$[L“K~Oúd.•™’j¯ÈÒðÛñéôïÄÍÁ,óßµþ~Ãj BrsˆŸoV€tÜ톊а 76ؾ!‚,­ •¶Ûíaê¿=šš&öÆÇ´Ð_yö5ž—ú`ÿ—´ë7;¢¥ [žfŸ‰0r1 >ìË4ý3úxûFGu±Hæ‹û£eÔû ¥£ä˜MØ‹˜@9³\® Ά°EÚ ÐT¯‘»)Ï|+¬'Ì$?y®äφ+n© +ÙÅ”¼«ó†R…¿aÖ¨Òáï;g®Gkg,œšÍf¦é†‹zìÆÆ)«om KUþŦÔBçÑ+Ý×´• ªƒ­H tfó„«-ê£ûO#(?]dAwêÉë¯k¾™&°.Ãb”´èpEävŸR;stÈ?í»Ïöé³æÛ‚Z—ýá7Í~|»ÇmñsÒ“=÷SƒdbØúÂðö;ÅÇg”¶Èlž¢ˆšì±’v8¤CÑÑ2)Ûz#¹ÿVÑ“¬Þ]D F2©¼Ë8žöµZãØï8—Åòt“¹ô’jû™œÿ^3¹F‚뙌;î=ûZ­ü¾šMòuêè#Žó,8sèŠ q­‚ÐÜÏq‚¡2jƒ)¶GG”ÞÌÀsÜß3×µ~ŸþûêËÎWæþ×ouF)ãµSÁ×kRɘÏÛF¾X1œã;·;Ñ;æ¿æ{^üàᣆ0ÔÜ`K¼â:‚åÅ”wW6ð&'0waõÊ•¿«ÔÈk.€g¸º~ÑP\xƒ!ÿ%Ï$4Ô±ª;Våœt±L®ªb`ñA¤n‚ä%§¢ã ^‡ÁQd‹+:ó唬:²V,¢T#Y~D9ªkÃî«—G‘0¾"¡BJþ™0RÏÆROÇ,¸[û/¶¶æpxT/ â@À»`žBâ(ÁÓ¾=@¸ƒÂvŸP,g3rnÁ`7R¤2ÿ ÷€S ¤ŒJê¨JÛŠ hã!>©O>7]ðcj90¼vS×LÉ?„¥¹ö ˜šæ÷_ÊÒ½Nÿä w¼w}õïFÇôcѽãþ âÖÍ'íø­žåÚë±Ty’SÀÁyÀ¿©[§Єÿ‚έMrŸ}M;¡H“9¹¨’b˜sm92j‘d™ÃYÆl$yÿF2%R#`ÎÚïE¯ Ž„É+¹e9ŒX)®‹EzĨãϯ1@ñ>¾ËQÙdvÖ¿VœW_«{Q½vž›¶êÞØ534;O7Yã»»?ý\×[ü/”"—¬DòªE— CAØÕWq¸P+¥²¶ 0AP¬$w¢ýѶx,ݳý8>‘Ï‘àÛʃœª’G‚ÿJrtœ“LU4 ¢*ìàòõœ–_v¢Û×gÿåNôUƒ ³FÆ#ÄËP9F˜×—æ_†•9i”2ÔùH÷^2û¹ûA1˜ÈVƒ)–ÃVÿ÷ÛÏã»Q·£¶aÔ4Äè×(¦Â/ø—«¾DÍÿ6›/XµÿñãI=îÓÇßÿZv:}¿&ÑžtAÙØ´5±ôô}6ϧd‘xŸÌ3®—ì²"•âÃx^Ö“·´\½òþòúv ú#ݺaŽ‹€‹œñê(r’j¬ú:f9¥ïIEEÑpÚ‚Ñ1i½¾{üò æ†n¡ŒÓeÚ¦—¿i ÿ1O¦îtkN-ûòÍr#•†FÔþ”œµù"1̵´k’EY[;7^B&ÐãEs¡yÒ¯ƒI¡½„$ÎM2=CjÛV0öÒׯÐÀU­HK¤ðÉ nÈ1²­dmsÿÝS–#2p 4ÂèÁbo;^Ž›òÑ«â~Jb]þ$V0ºª”fSÍëÚà|,"ØTZ¥VîúzL°Ö“:ƒlËr½ñV·o&(CK¼å®*ϦéœqxÈE],ÉÚ$Åy¹ªb$„\S¸1=§‹t.Sa©ž»Âõ!»òåºKþ/îòú‰!O-] ­O¼5LÀñ@¬ÉƒÑ°Åk î´­6(ªŠÜÈ—{¾³µdW×Bïö×R>lãªú©YÓ8 ñÃ× „pïw[ýÏÍGí“è^t¨»õƧ@Õì»W."Ïò —×ëFƒ7o†`å^|ˆ©‰Cº¶p§lÈQ–~W¢A¬ÅÜg6p2zWL’â¼gtn£E¾žT$¬ïX.Üeơާ’ïîƒ9¶`¦Ø' \šÅyÓêµKKüàã)¾ü¼ßŽlÕûgGØŠ74pxP{ÄH<‹QçwÉ `¬M€»~*ò©¤Gã=þUŽï"//fîÆPQ£ú_~päAdM}Ësmël¥´B’ÚÕRB..P•Ÿ‹e'„WîBš$\€=õÚ7½ÈÇä¾µåß¹­ˆAÂÜ+n8.@`cv ø'Û•æò6êIª3¯qêÇR ,>~ƒÞÄ'«jsóÔïÕ¸´º}>XžùzbK¢¹k¸ü[Ââ jÓ¦Å(™ðk-³ÿ;åÕ׿ §Ób·0ÀŸ'–:LEÁíFU.LKu4~xùÔðù8-]$Ð0ŒN•œiyDøË~ýì)6ÍÏž:[ú)Ê¢öl•g²ì!” Š|j= \ðU”ÅÔÍé€eÜ¡Çæ”¬òÈÄè!ü:Tì‹¶›3›P½ÕÔ¨>“°h h’Ä(Ñ|•Âešý’J•’ W!p¾¸˜” <; æj×L”WÉäÉlf/G>Â# 0øúþ¿íÄÕÈ–å+0cþ·Éâ.®iÿv†Ã÷ÿÍÈþ21“Ë?¡øÖÝAeËyÖÔÿY:™¶¡°Üý„´!£ZÁ:üÃË'¹ãM4øìÇQúç%r*}ïË}PYs¥rÐDJ—9vÙì`–çÑ«¿èîã Eœùœ7Î8ôPD*ÖºÒãÅïÑã×¥·ɰk1mlÑßv/zìÜ×Vù­×ÖgKBöq–qª¢} ,úrÄ í‰ Þ5]JÕ(Ë¢ÁÞÕÞWÓþ¶õø5Ýî)üsêÑdйpd:›Òµš¿vlž­iªTÔ2òú“zðöHy³µ¢ 'ü„ÇJê A½¼¡šzoô÷›AS™L^ââ¼y…3Ï3Å2[À@̵,RŸ£üâ ¦‹™ h},zñüÕ“£葽ºR Â6 Wó¡ÄÙ.òwbtWŒà…ítÂ`O¸±ëDé‚<Ã|pËŒôVxqÖìEÎ/qåè°:ˆ”q¹âIMTkÐÌ0õdá·4o.BÓ){Éq Dñùb1+Žvw///{gyn¤LÏÌæ._¿ùùž¹hðÏíXó)C,Bï嫳 ~™`|_Ê•ü§Ÿ¿‰?–91Zß9¼ÿÙþ^V˜¿~úù³ƒoƒ>úH)ZH'ÜŒØ)ˆ%.’ù»N”.F=k51 V P‚Š]òtvÄym¤zJ†¯ù¢~¹·ÐñI+iˆâ$>¿Ìçï ÜÐq?¿n ú®< Ïåö+šŽâ¯<šÞ0ͧ×ù’#£èîùõ.}eÚücmÿ¾„Ùlqߨ9óEëM<É'Ñyrõ&nß5¯òwå—}ÙŠúvÑm~ÊSf}H¨ó/í»xp×?iûÚho5‡D§£óœ†Vo6÷“ç;6by§ˆ Ìe\?Ûæ9¢´ó|çù³ÃïðôæŽyµ¹',PW-:ÅfHeÝæ%ÿëwç³ÑõCüwþä»þdtðýùß÷¸·Âêl…~CãÍW²]ØÝšëÔŸ€Hµòâľ„÷Ýœol:š" ÷=7Ç3…NØ{‚QùRc•VtàÂ㪤\f5¿”߬©<œ½—|o(4o’HT–Z“kÉ}Ê.Hoøáõ£*².©èqVä_ÞÙë{ð`‡Çw àr ž¼záI}ñâK"éâR:ù ¨"n˜fWQ:˃(ŠVÿ«/öº{}óÿ×{{Gôÿ¿·{ÎSÛ9*ZvÒùß<ÂÆ¡ùœ[¬e¿'@ðb’ÆP¸™¨ââA§æé‹Îb Üü‹MÛˆÊd@á"$;ÏtQ$Ï“¢®’ŠC­4‘UÓüÒ¿­ËµZGzÆ`nz]Kæy¿ÂA OK›=CšÂi‚`1:>2Šìp_ _ƒO&Enwœ»3M3¼}Ûü|ªžä£dÂ襼xg:»ŸÈ¼ç§ˆâSRsŽ =σ¨Zͱ¡;…³m$ÎÀºE`Ž)…RöÍõŸûà†Ðc-àÈ!ŠrúÌ4…3>™gw|=P“j–è§Ÿ; “yª05û…zp§TUþùr,"VÅê-¯¨xÖàœ!ëcâáœtV„¤ÄÞÝšˆgEÑùnž¦S¶8=3÷“q–ð[6ŠÍ8“|(íºÕb‡¶',È„ŠL“]­#~Û©‘œ-wqþŒÛüù˜ˆ—¸^Î͵U?{öekl/\Ùt¹°¯ú0w$!“h_äçuãôãeš¾ëØ@EF=‚ÁDÝ.GÅÚ®™ë ™ËŠ–CíÆ2×B[v‘dˆJ–ÃÒFçï42úv,¡$ÏÈÇØ/Qÿ«½=xf/ÆŸ Wåƒ~´¿÷ÕWUÎó{Ó1ëŒd1\Ô0'ÉßàÞd-bD‹ØåxÄý^’ú®Û«Ìª^ Ù–ïUàL¹\ÔãE¸ãYT;`¿j^ C¢tréÜ®‚!—ª9Œóê@ÁY2¹½tÇù²³0®ŒD Pf®vD§5#’ÍÈšªÖwÏ^·]ʶ¢ÁY›ütO‘TÜa•B­ã3˜V¾´[7ä’ü¦C´Ib“Œn‚G¾žQìô£ÈrÁyÑ«i3Ú…"êfùñgÿÕýì¢ûÙøõg>úìÙÑg¯þ‡ÓnÎZlW•zÉÛ•b¨$R>c5(”þQ¢Çû-k:YX, >[Ê„|öÓÀYWæ4gšK<]I èz;zþj›2Q¢›5\ö÷ú·»{ݽۯ÷Žn÷¿ø{3€ÓáþíÛ_}u{ï‹æËˆCÝô7å@oÕ‹cí¾Z\eä¹2ßüú”D§ée Q°¥ÐCM7º=ùþODxš\Üåè _¶ÆÐUÏ Oãíâº. §ÎÕ@pþ%S½‚à€åaWa¤ ^˜}´ç¡uÖÞ˜Þ—Gö—çO¾o}š¯îFnxcÜ]ʧWð'—ö.~iÛ åjÝa×5C4?õ¶nvÈäFBzšê§§4#¡%œ ‡O*Æ+ŒD ®HṼÈû(*7(Gfj|V3w“ö8$d ‡4 ¶øn±†•…{%¨úƒ• ß+%u„4oà Ö(W4/ótÇ­éÆ¬oóNsËj†©4H©O)ϱ+D·TUW R6 â-ß*VÐÞ%<Òºe†c4`§è”kˆF‘LwG)à ,©®Ø½ôƨê£Ô¬Ö¶½ÆCÈÅDIú’*õ^.[õX Š…huhÒKW_j’ ¬í45w-w±ê¤³ ¡¶‹O(Rꩽ¢K +ÆK¤¢qT eÏ¥ö×<­O#r9Q®4¾»'5æwûöB_öÇ—X&é²%õ a&ñsnÆÙl.”›ÁG\?¦°¨Yn}Tê{÷Й?Ü[Ÿƒ¡vÒN‚°îáNè¢`Œ= úèŠÖ˜õ!mq|Z…Ä¡-;%^'Rx Ê(»F8ϳYEïsQ&Pâ(ðLEéSO´ÖûzÆONaVÙáã„t]ŠÈJÞ'lïpxµ™ ©É­èø§è‰{fÚm« $gÏ™êlØ·Ô Ï*bCЍ72è2…ENÕ;á*lzÉþ@]¢¢tÔD̬f–î´tº a>£ºnª ‹]áÍU[Ô)3¯ô›£‡ú½=)Ó©ùßPËNTªW¦ —•9;í"®²‹8ÊUŒ<0lö€C0rÐå#]J.²rÝ”â°{ÈâùAm)ëÄN×âœC_§Œ‹”i„7^ÑÔ[ÀP4P, Z§£wöfДwÂ5˜ã>R18Åf΢‚vî´‡|9¥¤Ï“ øâzqžOÅþ«%ÍÁñÐÞû›vq­bÃ:ófs/Le#º Q¶t{uy¦.úÈFî,8õÈp=&«­ÔÔÀ¤øóaÖҌyð2>¤eìHwÊœ¦Þ“ѺL¦Ði1¡‘T[ˆîÛ]&«èpäêM“Ð[.~w?VÃ0žM.ŒDv¬u»s¼9ó–x( õs:‰,TƒRZMh3!›ÑòhCrÁ»Á0žajØe#>Î;`53[2ÿéDm"…·ù%øC7TjÓˆŽ½r ¾04¬šqécê½Õox+Ÿ¦Õ—Š´úà…Ñs*O–BoV%EÂGG4jsîw¢û÷:Ñ×øoý;rç¶¿SFƒû8¢ïÓAý5ÿ=°±÷²yÂ]«9êï:X0Ãg„ŒÅbªü^¨§l'P–¶ý‚Ûš#ŸÏ5¦Ö:¤¨]1Y¹Rƒ¥Â]\¿ÓiÙlÊBÁ®ÎÖ…ºáz{óüV\^H³Åvóù®Ù|klÎ݆qÐè!㛩%õä(¶¥ùÀG\É8™³}‚àN•2V˜Nòž† 3¢R¯Ãj:1?Èš‡(†sY2’¥ã%&ð/z*. :; 6ùKQböüøáUd_`¤õRн"iš¡>™XÑWB­ Îs3…‚ÈC?H3(]"Ó‚; Õ*hO[‘KD¢ U$‚¨²`Ïûohšœlœe³@ÊêVØmË¢Y}–†ðãòu4ñ½a27ìã)`(åMR€+æiÊ ¢õ‘Ö*æÄŒÖÖ)iÇflP{‰€Šx>K§K£%”˜“o)<–@¨ðn§P>3¥/Òùd—µ‡Ý—Ëáµ¹ÚgF/êá[ìæ·ÉõÛaú–¸“O³°±Õ¯4Ê’Æä`ãÚ‹s`ŒÎ2VŒ†éâ2…¶|i“ô¨×å@¤ ]BÛÈè4ŠwwcφÛBîóÌÛØµ†d‘U©†+É[ ᚪ°þ{³F”úܯ6‡‘Ÿ4D)qÃõ1HMüÚÄÒ0…Ôõä·Í@åjј ¡Z5j¢Ù¢ é«Ú^‹Ðý`BpbTXÛòâQ4ØÝ]­1 ý~)ͪ¾dçëÄ 0Ow(Yª“ªZUåxD{‚»º¹^e(i`ÏœÃi¯@RžTîOZã!k½à¶Â§ؘûj‹äÕšº“Áím”™’rJZ¥ ÁWM•ú_5ñÿZÚM$÷«|¾˜_wGðþ®bêÇT ÝE'K(—Cwù34¢Ç?¾ˆˆ~hÄ Í*1ÑÜ‹®ÒÑ’2p¥œt†[T6)ø£l–!ˆ¼æ­T¿ÝFâ…^jÙ…K—êS;”èbô¹çÉØŒSºª ,á󚀙— %.qº5¬(½¥3Rˆ¤‡[eˆ_G½D&ÝÛruž©†sdlÓ©ŽÊê<5êDSzÚ¯m=uXUB—oÍýæ´8´D ÝŠÉì¦.nËôn0ਗ਼ƒà¡¹–½“ønpBÞçùÄëvÎNV˜fpKÎ-0#ÙågS5D %ò¡ÅE‰¹5Ž;'âbŒŽ~U£Ç•¼¾né^ýÇè%‡–2‡èÓì†y’¶bºsŒT…­ŒXQŠE>0R Ìhm]r°x£W!ôf¯Sµ­EÚ_Ú^PCB1%|ý¸…»ÐB¥WË!÷îØ„E—,jìnéâxNwɹÀ9ËÔØ\¶¯(c’Ý”–ÐR5ÄgyÔBZPÛ|Wf›Þ‰>Å„| °8^}úÀüZ‘!ò5½ö–õ"ÑÝÌÌPÁгÅ% ¡Žr²w’Ä!8Lº§¨q¿0{ñ`›hGéj­jd[!V¬&¹çÙÌßÜ(áOûY¥EÝ lö<¿PÇ]:çðCsúÄï3ÊÅŒ½C–¨‡½)íªDíšÓ{!X~#‚0éEÔ‚œºKæ±{÷X%NR«È°=ƪ†Ùt#£¬×ÂkÄ•ÞùFdŽ”À(TÜýž íH¦ªÆG':á—ZVÚžÏÈö¹Ww¿Ùì¯Xu\VíÀ|ß èx-Α~‹µç0b9·M oõ’ö7¿ïI8ì^¦„јqZ/½|Ìpæ¥Ñ›å[J }ô|š-çË GÊ4lÈÙÆy4;ŸY-dn.éèuzµx– >óÕr8Ah>¡üœŽÅ”aÛ( ©³$Ñî?ÍGK€¡‹§F>æ…<æ?£_é•ÜL 5cˆdjS…®ƒÌh÷˜”fˆ:ŸO‹€=_½~ùäûï̦ùöÉÓ×_¶¢—¿{ücÔ^ûÈÝèÛ§¾{µúÉczôd“‡:LÏÚYÂŒYκ%ïu¤ƒàJî&S¨rß‹%‡øÁã¾ ³Ôî:²Ò8G¤Ö=ÚÁ>€+™ò"ͽ(Gà.^Oˆ‡c)Š Žx ÒPàë`”Ì  :aôCh+á±wŠ{DvGÆ6ö–Br¿ØŒ.Iw:IÎüߊg³W¾›äCØÏð§exˆ}ãÔ7d™áþi)èu¤ÿ·=‰ $Q)Ñi‘š®Ð횉ù§.ðÔ3X))×ôoœF­ž¸¶¹<è4½Ä—…¢>Å{OΦ䣓]zå™á‘‡9,´ÂDœwD:EüØ?\àáW>QÙvä¿w¢îýhç͘*>•_þ¾£z2Á›ßf”‰3=Ã9ë*]ºÂ³¯H»ÛÊa­Œct;ÃÈŸ•ô‚]în“ç2)êA.!}ew+éžPð$ €EÀZ)ØÅç—ÌÖŠâäÍ›b¯ðUù{¯Ï,¥s@51—PŒ(¥V u}å“6cöSwí´b´‡v^?æé«×ü»ùèÅÒ¡Ö7Y{‘¶¾éfmó Ðç„–51@?8м…ʤÓõšc.¨CŠÉéÞ—<Â5€!^,ì°áW¢z°+vœSÂ&&?ùó…p€=„‡|<Ö6·F ËÆ4×GºYYM(J²^q £‘Qç‰y13%˜]5—G¹J†£18E‹6 F¨óñѹåß¶XÑ[·è•[·jüœëƒV ³Õ‘ûõLž£ÀR¯¿SB;(ƒ‡ä§§Eº€,àŸ8ÛîÛî—¾–ŠÅ$ÀꩈqÇ!EvŸƒ"ÿTKѦˆ –~ŒW‚9õ™¾ìð^ŽÃ7äL"±©Óh,Lg€€Èã§³y¾œ…QºÂ/ë‘û?z6ÉcôÓ‰4•LbijùâÇoPt„t´ÔPÔ‚0!󯘲@r9¥kk{Å [¯ÑI j˜±ÒcÊÉlšÖ»ýÍeᄌevv›°DÏšk} G‘ù¯^…×!BhæÅG˜xeÌ/æqþYz( ìɵ_·xQê `Z«ðÔa/oÚ‹õ/6÷¢fª×Èw¼VÉùÍæGŠ ê!™ž5ܵcûVvÖXæØuñÛçÏWN¨ïð*b_6CçV«_—¨õÍ×flýýƒûæŸö7´wi>6X1ú¯yé6ž—~¿<1Ž'nĤRmÒ–æàÆë¶ •cv¿¬tiMº}ýúž~/ùµýi²1D²F=‘P'.­YV5m ƒÚÒ82 §•Øß7×K™sNB{Œí!¨h”ËÇeÇ;H¦§• ¡¾È›Öñ.½vé ö€w••K©ò¡¯躶²¯ŒÛ(õ_'÷“î/'Ÿ·»æ—éýã½îWæ—Æ­puýË/×Ýþa³äŠ`ÿ‰øAbIüf^ˆ>ÖWÀ%S^Zÿëfz¢TÍ“\9•§ù´‹ŠŒA"+–CkVhP0èôåS׫ùXБ™é1`lübR·:â¿R4H9"·•»‚9Y‡Mmttþ‹äÔts¡tÌ!XëöÎÆý8Rk¦˜EipL¶°èd ±¤æ5åæóÍ+Ò{ñh•î§tó®Ü1/ãÒ€šSᨕaC+­<·8æ’ÎõPË\Às æ‚מ„Ëd>.8q‘ 3†‘š¡QÁ¥Y‘FæVƒ¾`Œ$qÓ J  ðÀì•à JÇi2g¬’ôô”S¹»Ú@DuÐúOÑ•\¶’ånMµm ‚Ñ@ 9mRé!cßÔ\ÿ,„¿t9ÎIZ$ïìmx~§VïªoÁ©†'âÿ>þoœ¿·Ìé{ÅGñ­v¯‘sc£E{xûNcYÕ¿›ïÿÎB¸†=Ï*ŒH{¿úñfüI/lž±ù€·³[å£81Í(ug1³jŸË¼Í èÙ¿žC7žodLÝk›i? ?§eë6Îøƒá¨ùHÛ‰?Ðý<éÊd»‰~`ËGž¦‰Q°È4þêk]Ì tXä¤`2L ²ø >æke[YàÝBcdÀ}„Œ,ÔÜ:K.C!NJ=‰\ÆÍÚiAQ}tŒbp`.åü”¤I¸ L2GÐA©Fº:J&H2[¤6ˆ%C9ª†¬œš€iƒ°™˜äרÅ"gÐ%R±m÷zP“ЗtDCæð<œ1BLØL¦°‡Þ§õ¼_çjÙ y‹ R¨Xefà2ÛšÒ(wáø}žÞnýÁY’1J´à,›9ª{ù’´5‡ »ÍV¬ÎØxX;ze,€e‡ï3Hg/ûŽUô㉮ҡ]˜Ö5¶X‚愆"Ih̶n=íb£– è›’S+4,€c¦“ƒÆÑqîÛsÝ&2FrdH»x²ûÜ!‰´†iAÐ Fé¢{$©d•µsàpF•¯¦\¹Ð=K{Ó&cHlÓðß'Ù$Ñßfvì](7o9Iw-¤ Ó¬óY¡íF¯®/†ù$E3¾«° „PÌÕ½” Gû¬«ë [jâ\õt©£b\ÛaLVX©Å\à>7 ³„f“%0aĬ…üºf8%­h¢á¶ò'±ÒG_Ls ºZô¢gØŒ*<‚ci,Ð*‚Œ?†ƒ7êw墛SzÀ˜œÐ# · ƒx Z„=ÓÆò®Âa ¢i«Šô}j£MÓÈf´Õü4€×‘ädÜ(bü2+A€x²ît±ª¯Y¢¹Ù3>Q·C,Ð-~^fs‡X⻜•BøQlMO,Å>OÊs P̆ùΓG ¸Kº ­F–á:Oò|fïA=ËpÙb'¨v…LV£¸&ã±asïø H.óá ÇËÐ44ê0ÕÅ7AÆË‹ÿ½wßoãHÒD÷o?E5ZrHJ¶)ËI-w«Ç¶4’ÜÝ34W(E²,¡QlIû>ç9΋ü""3#ë‚‹Ú=³û;«nK$P•×Èȸ~ámLΧòÉÍqÁV½ÈcbÎÌÛok„u›]¿Nè$Içmêd³ü3¹Ñʹ*îšò•´¢(ê«Øs ž™à4’DN–³knáÁ#ªÁiºâ:Õrøý·©œ ưûý°=bë½ àZd¢SÝ2ÿ‰×À(µTÛWÒ北Rl¨†ºLÍ™/X ’cG¯¼’>DL1Á§ú忦NðIXò‚MðPe¨d…•B\­åƒ+1•¡¸Ôi¯øœcÐm®2CFvzŸ$"õŸ¯SÇ^ÝqMóKÈ=pÒÓZ¶’µp–’ÍE×€NLe÷£ÍÚãKÔù’tU%âÖðÑ’·-Õ\â¥Ï{ÑSWRÜœYª«©"Nce»8ž‰%°7EN2x’Œ6Ôª­üíšsm< <ƒ®Rá6LÓ°=ÃrŠ|>h}<¯´ÙÂTh&¨È=£U‡{ü(‡U«µa0ÔŒí¼ûŒ~Œ~?»¢ŸZ?†Äåd{’Gëã§²þ´mÖJÀyhpÉ ù5«¾u©+ýØÜÆ.K]|iît•¹G·hñc¯¾°ª+›â\6üï:ÈNMÄrÂÅT£)å%hëµ®’re™z¾;ð þɈA´%+òžÖ –¦N噳ÿVn€MR³ïD²býðÔß}î:öoiËùÔˆ*Ëõ\V¦ð:X¶H)ÞË'˜!1rË삤’GU‹Âzß ©\äJ–}#þy]ÅPcÓ rƒf,ÚOvpÁýÁuÐÞ_äùG)hŽèÚºÛL3VD¦'N£=‡­ÖÓk·×ù±“À‚'xþ+˜ž“tç s,ÄéQ¿ß”†yp4h.)vƒgíÞí£ö7óŸQpoe éwšz:3ºÓœSGÍŸÝJLÓ£8z?6ô8þˆSq ªü­þ7jÅyßK`ÈÄü{§9íâëa£~t&3óÛÈü3úØÐÿYpûÈä B¸¨«Ýo®Gi!ýe¥)„ N4õÙÀpd?¨º×þ ¯”H§ˆëœ™ÃáFht¢Òå\R\˜¼”t®!NÍý0FÂÛ,Å1Ë Íÿ¹Š\КµqÈ6à"  JØÃpBiݳ0ü²FAzðì ·²¬üÞL„R/ð-î*­UE>ΰ+6€k/±_¦|ß@˜|•q5`R­Wæ˜VÑÒ¥’=º 0™h\™n›Ñ30…¹íÆÓõ¬ï})²…ýíǤn#¿-¾F÷Ï[WuÐ^‚OºTm²ìÐ¥øMÍc*Z€[=Öá2#„5)?¶®³‰YrSc¬N‘‰¯Ç„¯eéäuzppüq“¶Ç WŽ6÷x¶{—'ã`€D‘ùMÓã†c˜ÿÕ/Ð_ù~°¡%;œÈ(š½öyCär+±i«NS‘]`^ôþV61Ì+ÛM4ÊÌ7«âãÇÈœóú'ÏJ’à¨?ãÇoÙïõpž.)´ç:µÌ‚ ~4T`Ãù¨–ÑX¯«NÐòXݽãyu6᪢/ýÓÛ@†ÜÃÖse¢H±sÑ’K»Ö¢ãJÈY[¾‡LE%ôVJ0ì)qRãAE.ÍÖWãå¢bëñØŒ›¸÷Èòì{å_àßëè¥üdH?úÕ ÷|bHáùÈ.š—Ïsõ¹ÊäÖL¼î´•KÐ ±Ó: ¬×숀›e'?|4Y/}ükÝOBÅÆÄè¿„±WÞ“³³ãs ^„`:>c9¾ Z“0Ž8ã›Ì?(öu+é´:œ°ûÞFØ ”¹Ý¥DK "AAØ”Ôm½ÿæÌ~%Û+ßȇMy­Í~96=¦`"¸0 |ü(i¯•ÏÊOž7Khœ8KÂÌkÇ1^:ñ’Qí—[ĺÒÚÔ¯ËÿikJú{Š;Þme~#jm·ÈÂáWQ»„ˆØo\×Fa|eîÂWx—e–ŒÒÑÂP²å.ðAH@ÚÄ˱ìåâzÅk›H͹l/J V«nH-ƃ8?aÐhÆ®+L. %F *¼Ë‘;ô™˜­lSA4³ì¬‘ýòåÊÆÿ Ê1 f›À1Öî–Qìi·.>\Ü+}}ç¾4ŠzçAP­LqÔw0 ¼RÑм%p-þ KPq²ùÛ|l+XÑ«€¥·­Þñ¾TJâÒ.Zþ±ÏúQûNt;:ê8TÊÍJØÓ^GPDB„ܳR0’<^Nß¼Ñ_1‹×iŸ×‡cY[Qבå(…î?«µÂŒd¹†DŠØBóÉÝ!µûšL&Ô)o.Z.ÌiÄá$KÏEç^(˜;M„-ºÐ467| -©9hç¯8EiFžBž£ Ýk07u,úõDªSp ½`QÍJØŒAÔØ£eKd”‡0GÑrHÇaj*Y¦ThR áìÜŽÀ£Ë ÕÒ u„5DÉß꘎p7ëjÎ"HÕV’øµy^ïnð«e}åNµpœbÎÌ”ü4çzÌV‚®oÇÆy{—rH• ¡°Ík· +TçºtçƒÕ²àm{\²Ô{ö|ÍYÂ…e t´|¾²ÇT8¨Ž¦§' €FCTVmœ/¢TÛ¤ÙÊ¡À^Ÿ™Û‰Î„¢þy§)}ûlÇ0;m0ÆÑc1îèÉx€‡›ä¥†ÃúNÖw{Q8Âßb€xÔ ÑüR—×qð‚z£xô’.I g½Î©b×D§2‰<9•Óa­îQ;é½î%=mÁi9¹ÕliÉo¶PÞgЃ üGÅ\R²§ˆŠÍ~_"b¸Že€`‘˦Y™–‘j Û™Y(>4æ0ÖBžAR×r=MpÁŒîpnh´W¤Ó·T(7t 1ë±`ó”yѰL”°U+Ô€ˆûj$6«•ñ;n¼¨ŽúµY`YA9„}¸[Á&‚—ä0âbü&Îs €b—몣l›¿þþT èºyN ½¬Úó{Ñö‰Ë ç}ŽymµLO½^PvÖ|èð^ˆài5öªã߃݄UG²D|Ÿ˜½Ý,ˆ°àQ;yRÛT¼ 9TÓDÿf˜«¬Ër—…ÑmI=kßœº“eÁ¼.à„Fä£×•)œVªìDMép=Úší!³òÊÅtÙZ±ú¢~z¢í •N.)Rw£·æ*´D–'~¤sÏÒÆOó½6³aŽ(ÈÖ7sÒÚ‡Žx?–pZµ{#ëÑÕïJïðè^ä>k ·Am}ÍÑ ´e©ÊÑÓΔ¤hè¢Øá$ œŠ6PÎ.4s±©±­ûaWùüÙDka¬¼ w~ã¥Pß–ZžtPpzÄS*%5„¹ðꇴĂ™ÍZµ¶&a•Ønh)ºÜ )b•.gé$cÁ›¯ü6ª9ȺVëÌ"6Ì`6Îøáüôäå½èçgxðòñ=óÕËç½ì¥(A!ã•°Ú› T8pÂ…ÊU#’ȶvŒÂƒ} ¸µm(ÛcCW<®f­ïÖY=˹x&1æT†CAEŠ®|«˜.J̯n õö ê§§² †²¤å©ÜE¯“iIޝKAb£¤PaméŸ ‡<7gñÔ³“ìb·P+$Ø%¹/Ðs©45d@2 K®‡l¯Ê$θ·–L}æŸP)¥²ýd¤ÿ3KÁZº«‘"ùOûìì<>;?/[’-]ˆ€x_{‚ðÌçìÿ9#Ì3ôìym´o»½³4)XØóI£Üb¥ö%-xè—-f󎙳¼PkCyÎʺ2ÔA©WÊ¼Æ ¼i”@ã]Úv\¥0÷Æ]"8#-Ï(êÎM$‰°ú¤ƒfŒ«á{AIÏá)H²)Ù7Ùvž£ÆvöwʵOm¬k©’€XQªQOÞ¤1&}VUJ„r'ÅjòDθR¸GÕÜØsMZÌa [˜#,oÕyÔŽGm¨µ ’šì+™ûè÷Ó¨Gmè‹Hížu•Â@±ìAè^]C´£m8Gî!uÞ;§•3‚_Ñ“Õïèä°s…Œ·cºåw:¥T=ƒü\íøH}øø‰º™—bû}M§ö‹òiû£ËÑå«0C¸öðIï¯o‚i:™"Ž% ˧ûÄsþ‚M[òA˜:PQSÊZ'b²b ÐP•%ÅìéIØ^?£‚wâˆrùÌ*X:hÀ§XÒxÈž©R—KæA2lï˳iá€&d¸`+úo³yp†aÂB®„p©°­ šý{Ñ o¤ZßûMWée˜L9œý>›WúM% Œaó* œÅp?ûØþÈèšK6Ü É\íàJÆfvB½Æ%bH•—˜žË ÈÊHÁ몿|îÍ®A‡¥5 ./5X—Çãn1· Ú¬¹ßŠ^}kpLCLz]ØE0ƒ§•ªò¾;Æö¡­û@®-uºè¸J<2†ú~(Œ#¸„½ `ÿáöI~sWs>‡ôä@Ç‚Âˤ] Q¿mxF'jáÅEIõŽ6ÊtQnÁ/˜õX§Ù•UøÒ«ˆq[A2ô+:pCÎt£z‡\¸0Q¯BC¶s^CÀ„a@wp'«|‘‹SnÇË% 3ÒÚWl±ç»už‹]œxÌCà1Ä·Êï™™ÖÜ.øÃ7 ž¯ÿP“×,Õ·ÂbP¿­Rí;|ñûâ[þ¢±%wƒ¶{_˜!}àž›ŸçRÍr­™éß•©0e©™i~’æñz­]7²¢Ä~³ëTÇ¢˜ö½èø œ}“㯻ø«9Ybg‘6‹5n ÿAᬀSþüŒÇÚûfЇ¹ûöQ£©¤9ƒÅh'ñWñàn||ß=ýÁû_L,BgµD‡hÚ†këBpþ“Çyç$šäkÃýº`Îq³öÝ“î([u¢‹iN·Ÿ4CØÎÖñ/>w  „ ¦˜;ݨï@+9É!Ö|1ŒÙEUäœ'; ˜ƒ1™™Ù(Žï0ªñ7&²¸G¥!–¯(Íf_Úp+ ­±iˆæÛvgØaÁÍEY;ß ®=£¯¡šÎU·ppëäL>d;^ä×µãUÝ£4PêDj"À~·yÄëGRí×ÏV÷* iÛán†@ɥ߰‘#ŒÏ'…*vD¥—ù2ÕЪ¥V2ªÙ¾´E 2x ñ© ¡ü<÷S-5'©4b­å”c‡o¸¸– wS~:O»LSåå?†É8/†üÏþ5T&ÿЯfu¬$M¿àÃñh¹Â?i6Å?ô¾¼ž./øïñPË(?†`$s¥ Î']àt<óŒIÃ=WñZ%T+C®½…ïJl$æØiº#VZ—Ó4yky› žk÷ cñ\í6ˆ1iœ,˜SfÓ0IGëË¡Æ`À4 £ÂµÐ~žŽY1GYCUjíÀûõ’C¯“;s_ ”Æ µÓFë(«ÖëˆÚÇpjT3Uö#Y0®Y®­ÊeƒZ $"×¢C=SÎ]¢¯ Û ©ÐÙÈŒÿ%4RÚ§…á+ó¹9Ø0·vd”Úf(Éd¨Å~Í¥+DUŽˆ:É rW„¹ž¤œÌÈfâ¬mÛÏ«dFçö”Žgd!2*ò¼à( g´,¸AÝ•MÞ'˜±hŠìa”Þ‚O-4ãëØwåäõÏaWÕÐY²+0tvp[Kñ ÜèŽ{*ëš‹<Ëm»5 fÖÊÅÄ8 ]Œ Ϧµ—ÅÒšeÖ•WâO‰?Ú¶-ËV5ÓúÆA?JÈŸDô¬-Æ’Â3¦8‡•¤Øâ’=W³N‘6Rq‹J RÕÂð¬õ‡Çþãi+޾¡çºôÜ·çÌ=KªÑÂ<ð¥„l£ (‘NÌpÛ¨ mc W˜ÓHm¼àˆ$u &§oãŠ=ãñTŽ¢”øBçá±\Öe{¸ºëÙ,#ÒJRª/³[œÐUXo À§ËNõZÅ–ªV8a€vÙ‡UÐì@(×€HÑznXbÁ–ª F`¬\‚gšv¿aŠX€W¬Áí>K" ïí©¯4=?©PäxAlÊE—zû«u»]fhCòq!G²'K·¨| es‡Qî—õ")®ØjT­,ZBæ’Ì™êK¨!KCÃþz“†²™¸ðaãKV®ÈkˆF¥Â8bÛãÖÜ£½¤–½9 iü& Å™ä«j}èwÛyçCïþ}|Ò¥kVJŠI›‘áý±9aÈG({ þ™™ÍÚ q€ü—$ð0žÎj…,7›`Ë–A¤µàÀÖ&]‡ÇßÃÔ*˗문r.bŸ‘æ¯X–6™$$¹`û.iü¶ð"¼Ôà½R)—²¥ô l2R£”~aäÔœØÐ’—t_š¯%´¥¦VÉhÁ]µÐRË–;Õ_xô U‹óŠÍƂêàÛy¸±M$¶P¯¡uÁÙ‚FLÉangŽP?zIù5/ ^¦vÑ~ɘp¤Ùÿ­»cX3~?ºO(bC'38k²…‡Õ{jvÛ‡(PüÛ³³¤FÊûsò6‰£ç(.ïã.NEÃ{L»•‘¸©üEm†2·AÝ`ížœ÷¾NBRâŒö¬Ý8PQ_¸3¼\³ä:¶á¯ô²ŠB²±Ê`¤•»J&.vÇÌ8[Rš€íºÐv¥aOXA`"tðïFGçz×êK‘(#¸\&)¡/y¹œlnÃߢáûäôýèôýØÜ4?R’^Ò}¸l$äžKi``2êÚJ¥t;½g Âãüg͇‡{€ä¹Ä;×£®ß²˜'Z¤rÂÚ­Èò–)ÛùJ#añ?²ü¨H¬Ë­ð‹gPGÙ±—8L?ÜçòØ_ÜG‰ÒI‡÷½æ¢ L‹PêÝŒ2áÒÒíZÊB¤Á×ùx? …“­‰E:0›Ýv)à ®»fšÎ&C#ÃW:8 ¦»Î=ZjÆbLÞ—vL·Rƒ¬4Ë<·)~IÜÝï}¡q¾jwÕ uyža›^èàô(©°MAù™"º~)OiGªò]äþX¦‰hq$AËš|¸ÀAH+‚iw`-y9Ú§Ìž(2žä¤|Íû<§Ò TÇB2õ ó2­tR H†3̓4Ê—ÙDGÁ³$#M•ãf5ÒXX ‚ÐÌ9E-×胹忈[•î¤ æÏÃ[Óa† rƒâ°Ù¿^L Mtà »" Ñ ¯Ó×üz%ÿ¢t5È•yM®â2ÕÞcˆ†ø´Ý cýÃXjÙl¶½öì±#],8~XMdcíwÿ±s¨)¡| ñçÉ…:ÔsmfžÛ[¨õRxâ8V°\'øS³p4Zé6Iaq›Pv[4Ì'm4z³ü»!\©WÐacˆûõf†>Rh]ÃgéÆvéïÛô÷!ýý9ÿ|XdžÕÄ“-öJwZ›=ë!"6ïS½¥5qþ(TcE°HÌ tò…y©G…VÌ0q4„{Èþ%AérôƬØév|ÉËÛ}Óéh¢ïÚ],æèä¨Ù=R ~Öz6&K°![\_|‹ÒÛ:2öç¹d±K"uQFZsb^:Æ]%¥K7v½c"Xû€¥t½ÈQ.Ð:òâ“j FRi¦S—ÌêÐð‚Q‰O ªÁU~­Ù[%©Ê1ªç,®˜Â\W˜T&éP5ÄÃ7O£(H˜µñ;–8«,.½X½VçÎ!! d|–uv€jÁIYzÔñÙäC…5Ýÿ8¬\C…$8ø8-͉PŠ˜Ø>Myk”Õ1"`éê›0ÌDÕ?¬¢–‘ÀƒmbHlNãÔÙŠ°#X\ÞA†Î3 Ï`’c,ÁˆŽhÐÿh±û|ø;û¢‚Vz ,"£ÒGÊŸ½n•.Ãí5Šàxæ¤G3ÕFõ¹XüÁ¾JŒl5Oæ¨ïgÑ+ fJÕöLR gòN,ã[¼Ê {õî©/dwQzÛgó`ØýRéq(béõ  ×Ô%¥Sû 0Ý0Ûf¿M]ØØ7å4”Põí>"7ä;­´oPL~ÈW…MR#p%…ÖÀ&¨nl¡—ÿh›¬¶Àþ5…0™"& æ?xE84˜)$á .Z'þE®÷XR³¸´B±^.–Y!r“ä°Û–H,Æši^V ½ bÌ¥(úç=ZEs[þwÔõ['ÓV€RÇXPIy&Àšn©i¦ü¨UÄ›ú±I‚–±KŽxÌZÁR¬®Z’B® fQ.õ2ÉǦÛ4»ó¢ÚÈŠ#²ÅYË¢{^ªuò˜dåÎ[ƒ#B Õú]w®m'úx;Pnº©0œ`ȳ JË[+†I…uI/6¥Ñ¿é»ðj¥â. ™K¡?~Ã_!$‚€H2_"tDfÝÂÕ©ç]}ÎFÀ)¡<kyvKøØKè)ÝlH-É"ÂÌJ@ßx~ÕÆ}Qf*¾-ßOh,í^yc R›hí‘T 5g~Î^ T_¤Qž.ËÙJ¡(Ç]â`_Š0äwZ­<´ØD^‚ôòcRª;+Þ°;¨ª °ªI‰åÉ„ÊBÌÊü)JÙ•à[ø®e}Å"ÄÞ0X`W‘n¦¹¹˜ñ¤#{Ö¥¸š.3aËèÈ“ÜðÃVÏÂ÷ÓÖR^Ÿ&zѪÅËÚòÚ>Õ[´ÊÆÓ®R‚¥$Ùýûj hVÞJ!FY¿Ò’ða¡4mQ0q Ï÷b!_¥®®&®ÖJ54³ 6â:à“R‰Í0‰¸\*“nï:k˜-‡‚\j‡9#0Ìð­Ð}ù#•Ç ‡K#N»”$ƒC.¥kKèFö] ‹Kм-\)ûº¾F þõÍP™ùE†êåÝqÁŠ mhÈý¹ô,^$À>ão¬# \†„dÑ=ÄõÌ »pjŠqš_26QáQìy$„¨BèôL-hßú3©0 á!Ð×ÌÞW\Ÿ–9֣¬ó:Ìî£òNÔ–ƒ]ã”ÿë°ÅI±°¬£z–Ê s”´µüÕ5+ëÓú_­íßzúüÉŸüd» a ÑQ˜vAŠj7ÒÄõÉÃË߉4cŽ/ìÜ:žè ÀI˜]ZÛ{¯%*Ù*_t§†]OÎ! qxJMÈ;÷jñXôŠÒ}á}ÎDšN¨rÕ–Wˆ8Æû¦´ûfÇu±*ö51µf…Ȫ——ê{ÝŒUøÕGR$—E‘a÷è­''ã‹Ùì5<3dd*±Ø-ïõPþúÊû¥¯Z*Bì'€†™‚¸D: £†€‡‘͸¥k¤‹@ônNI‹2’Ê È22rµ +Í!™±¯IaUο¶<ˆùq¥VùÀ}(§S•üàù„RN’ð‚™ð$¶\’ƒq"œÇÑK2Í]TæKd¿Ø’»6I„xb=üà?>¶¿¹´}»\$h‰v(h”Ã+»tdhn=FÑ[ÓÌç´+ÕBjtêÈJ.*ºx›g–1'³Qv¹æºï’EB+ «Y'8åð’í~¸õ§§?>¡ ]u`åÎLhKÎ[×”{­ó{`ÎÁÇö+ÒrO´XrÂ’Ä Ä)0Fí$ ŽBYÞñÏÇý¹#øû &wsíýôÀìÙÙ7³t•L’Uòíù½-UÝ©1_q^@(&H¢vGû%|Å–æ!ƒx¾áXb}q‘½óes&¬/2(Ç‹°\<8s¹XÌ_[MM«i¥Ìi ‹pzÚªø•,KŒìòxô ŸŸA׊w¨EO ½+{ÔKŠÑëôFbaZ¸ÿˆÃTXÈå f«²ºÈÓ@ù "lb[hñСÑȠËV7 ž@Ný 4û¼ßfII)òº¢îVY5="Ë©lŸT¹G"Eb»:AÀ5­“§Ó«hÛ©‰ü}ѹ­”¥:™ðÇÞZ#¿õö’ñ—«&ÀÚ{Ž®9=ÿ{œ “¥€¨k‚væñO'îRÒBþ¦óµåT©fjÏ—“sŸBÞÉx$+/’±JÉÆ)ãäZÕÙñ,„Èí¦Ã Pƒ¶ùÏè>gt×káÖ§ß ”*Aúo5 Vø?~9`p†Øh}+•ÙB»ãðß ø»Š×ùiïÿ÷÷ƒðsP¶œ2L9Í‹+©;@=„šˆF8j ¯õ’„Ðj$Êž†8$³)oÉ/‘‹õ’ll0¬Ú²äš‡Û}vUGœÜíEìös?â÷$x+·¯šÞ^…,æ°@аµô4òðš¿9 UmÞt b™‹¯Ûg·èŒwÚ9„É-Uì·É½’ n{Cƒm¥SiFŸvÖ2*lA'3Øæg6Ï—0ÍH‡|³†7©ÚÆa˜FÃ"µØ{k-7-”tK9mH+Ÿä×óižLtZ<þP¸šáÚ³Œ3Ö‰ò¨¼jS ýUÚ•—”`}aÔÂeXFsL¯°×κD‡þ÷Wžþðôù k˜Hço³e>—`.bÂe£:w')a½¢f‰T¶X­bQ°a)i1N`L(‘3¶ÁñÃÖàÞñ 5”J°æ.Ãr^]&‡SÏú¯(¼§á;ÕÅITEíwÂYk¿ã$…Ú¯$ó¢Î4Äã«t––ƒAÌ(X˜aËíÃ}³BýÓþ½ã¯Ã¿ŽNø µ4N‡Ï™O4îÆ_^úýÃ?½x"[,P—)vnoî*R;ZÁ@H8 ]8˜žì7’8dÍ$Ìî+DâÛÕfY—¨%V¾Žß—$¶¬°µ­©ë`ûQ{Dá4õáQÔžd3ýÉIÔæÊpã|™ê/î˜÷§Ùüµþì˨½ÄÄ‹àɯ¢öUf$¬¹ó<”Š´mæqý$ã Ÿã:š™¡_.St¢><ŽÚ7),:Á§'hrŒñØLgfæræã»Q{|“„~I8–+óþÿø ÿüú¦;èÝ=œäãâPt˜ÃãSÚáÛAïÎ!ÿÜ»™M?µ~¿÷ä$¿_Þ½Cÿöø÷~ÿøèèË»'ÑàøøîÝ/îžÜDý£ÁÝ»'ÿ#êÿ–mú³†eÜ åÑæhMž3]\lh‡&ÓÜ¿ÿ‡üév»Ÿ]É †êSDÊŸ}f¸”¹}n“Èäy›Ñ¤™/ø:ë*¥þVFóòXÅyûð×7BPÞíÏ>SwÛ¬CvÄ;Ž[§‚$R}^9Tpt7K"T[Sj|%Ñ4'¦æÊJD¾¸ D´ÆÏ"¾ç8mÉÅ)…±!Q¥žs_„Óq)"ºY`-ΗγÄ!B…l•¯ùŠÿ^Æ ë#•‘Èêaߥ¼œ®K[d‹ :Š;ÕÆcÇ:WD’ $þL<¥@àUìÿYd_”²„ ÛUj¹P¡÷h~ ù #¿¬ßÉìqŽ FjË!>ËìFÕ±pl–U/×óB³n™yCaÓÏ"Û4C,S>“ıoת®¯N[ž/43ƒ ;cŸÂ"k"0—ÓµGŸ€hy™Ò+“M«údå\ñß#— ˆ‚^(Ö@æt•x2ôtEÜ„<¥!N¢«†Üy'Gº6(¤I<3 !O‡"FÉŸAD¦cïHt‘¦ ÍYº|jU5çv·Õ¼8áSêr_Éß·àÅpÉ]¤éÄw "dGT&QV¸½+Gc×lO€C{'j¬Ã% W¶¾qA53£ÃhšÎ/WWC3utkùq¯Öag^ªfD>ÚVÂÏç6fÄ6;ÉÞf.·þ¡Ï¤¼dá/JÀXA“90ÔQ3¯v¢R<Äp D{.çõ³H¢Ô 26 õñU_GÑýú¦=èDÝ.‚î¼{‘ÌVâÕ#]ûþ0äßÿ>zñ?=}öâÉ ü:„ÏçìVæ‹o{½Þyô /Á·æsrѧîaJl€E²Ó8Jl,Æ á ðH{¸˜]R!-ɕԳÂsIÔ  i*J?ŸEAê8\1®è€ÊQ.–Ù8Eü…ÙäÉ–£à¶L#ԉͯTÛ%Ð0é®gÂ[²eÔ¢–%n”™º[ D.†BZâ@VçÍbˆöó;0Zt é…FÛ »ý¼Blår·\ŽtliSÁ˜ëE…¨ÈvëL +ss"ØNd{ß‹MõC$?š—*q„ÓEøòÐÇz„9éá…"l`—¨ÈŽ!§"kÑã>oL•¡,q"xa$r‹‹|N„ GƒRâÛ† ‰ÉíìÉOyúoO~úcôç?·WïY…]ÐÇ(;³œWLc®È¨JYÏ\s~‰¼°¬Ÿm˜2I®O6âÈ_‡H’“…x{rܾòÃËÇÏ_øÃ.²i~¹Nù|›'þüG:ŒÏÀgF;7·Øó”ìݵ„F³b¼. þ=ñá—W«Õ¢8=<¼4’÷ÇW „d³‰{DD§8äÁά蟓 ÇÄ‹ ±Å.÷¼Èyüdvëú÷+5t¥ ÂHŠÂ¾žg︱BeX'>Ô –$ º%Z‚¹=©D4ï Å›Y² F€^d‡ü•íöú«ÙÑÛÛˆ§ØÏ&½ô¹Œ°Ö˜".›7&yŸsUCd¡+Ae÷HËma¥–Z‡Ý Û…ªXp³Ž…~pÙ/‚Ã-cðìÏvÛƒŠ*Ó¤¸b«“Ž!ú‘Õ." öhÞ–û јˌ^U­ÇÒ/#„¡ºð)Ÿ·r8R¢l•Õæ©Ï2=[m”"¥Þe"jM»4*ÕÈ϶ȺB=„÷ޱª~|òãcªmí~dZäc¬} ´”ô€ƒê¬B‡Ô0Ë÷àÅ£'O\3Ï_Àâ„ pÛI¾ìøÓ&@“„,Ø ©ªPæS,¼©ÜGôÃ÷Q›Ö’rG7ÅHs¤•”Z Œ´¤æÇzNŒEÜb—:!uO¢öH% \'Ë9WZw 7™aš$"‘Ç×\çÅZñ„H «Uqk—[fB%]—²Ñ‡m¢ŸÓb¥‘±n+|2EÏhJ^È4À–CýãNi& Ð#H^®ª«˜&.™Ú Êgß ñÙU` Yc+i¦DŽhÞ!J“™O·ÏϨڗŸµz¡O5ÐÉ ªÒÛ„TÕ B½AZš*DCÒcÖPÀøìÊ‚DF6ûÕ˜Ó±äKÕª´W¶ª4¦TaÑ5Dª4i°ºWŸï n^Úßéz¹»…Þã'žkj¥¢lfPºB”…) b–"ù–,ä’¹GlÌPl@®×ù„a^¯,V͆͠=<æZò ½ 9ûΘËs«Q ŽŽ‡¸®”€D#ðQË<Ò* $ËKXgxY‰)B£Ùº´ô$ó'édã:+z±ë½Ë:Ó˜ì¬J(3nÍ÷Zk4T£ÊµêÒ*Ô1_½b“×|h©"[ £>£aŒ» ÈCaЈÙH¯Íï²,x_NóaWÊ’y•»ié$¿žLk¢Ý–®0ë"<¸ T Újh¼C ¤Bu;.ür Þ[“÷ :‰Þ¸:4»¶ÞªÌVê—Øt{mUlf`P4†™PluñÄÝ/’ˆì$O]î(Å«‘®ûîuB‘l=7ç ùgvòçÁoã6ø¡ ùÓúÈœ`%Z¶XöôdF©ºVxe¸ Ò[,òæUŽËt]­ô+6dI£ú!õXpÙ°™@rÌ‘Êö7ùEÇðZ*£¯ •JÚ&’vYfI v𓪈¼¯lEÞD Ph<}/U—ÊKZ7†å"õ:"žlÊ3̰ˆ æåV! |áÇuŒ¡˜»³õùçß?xòCK¨¥òtpÂí7Ó [ ¯Ùš…®‘¼‹™—NcS«ƒð0µæb_F6Ÿ`Š Á+ºÙœZ^e#±ù9OåÃ¤ÈÆVЦö›SN{Ûqó“Q‘OuÌVC“m1îÌ jÐæ{ÇG3¹ãT0r™‡ØÕË,yHÔ».¨ ŽsžþDêèa¾Èæ¬Üú€ƒ’u(qÀj1/­Y·Þe§iÝ‚’:»ó ïGצ&à5U’#Ãñz9ÝXð W Ùúbb`-M'¿k5Á –««“ Ðòô/!ËoÝw·Ý·y!n+3âPPåÿêt:ûA+ëíä5RÖI O–TFÅpï+_†r§ín«F¼0 ‰iÈB"¯(I ¡èJI8óÔ&$ÕAþám9ª…uØ*G.[JÈë·"ä«¥Drº=Ö:/V1CÉw«fŸ=p.w ‚évòŠB¼K|÷¡\Â;y©ž†<,eÌØ¼†¨À•:ºdi5ÁVž5•…ÞÔ«¹¢¸c2ZPWÝg¤ 5ÂdRÆ>ÏhB %X¶ƒpb6õÇã»ÍgâÏpP°x"‡i´^ùëØZøž–{àš+9 CžHé ª¬ ¼ÝsÿûïÙñÆnÿÙ[¾u¾ûÏçŒ&Ô@L(Þ ¹[_¦wö ë{ß’£±wv$ÿú§ƒ;ç›I,0íLóüu´^(C¢O¾“Øò†æ"`ÊËr %œ‘¶Äx•/W„;¦¢×Á¾:À4 &ìsŸ2ä£û2ÏT³"„•]¦Ë^ôÀ—n¡ªÞl¾#ãuô««ÒaŘJµ²T%ñ̼=«(nû—–_h»:!J°r®àÈéÁøÝ±$ÄÎ_½PÁ—¶si‹äápýí¬9À¼Ï1¶Ñ¸,f¥¯‚eœ¤ï¢A_""‹ ˜«\ü Ÿß‰Úé;ûy/zœI6¾ aG'¸ä¤9Ó–TÌ ¬Ñ¹“+½­’럕.dšx‡.à|–‘Õ·Ú¦]'Û!ÄrMXK[ZÍ7X·GÛöP­žˆªJh=`5³ @Þ\^Òf$=³;ð°zÒ¹×Ť³8ê…’6d?Oj²r)áÕ¹’¶/s%Å9Ðñ¿ù‚^¹léf6ßQŸãzkð‡-åÔÒ胯Ÿ&á¯EpG7AÊ©Î*]:¡@úæŸL{üSBìOVA‰b¶çsAv›ábV}JÌAAq±­‹º¬«-§ÎD\iµ4Œ»zýã¥ÙÒà;»×ÅzÒLᜠ’~î €çJ…>$NƒóÖB…© n`¦Û %:ù|¯ûãæû¯“ø¹)"\¼Vªlüòf‘2ßú‹¯ZMÃ+X¿\)€À™Å€ÉsÅmH¸p×JY®$£æ˜›Ž‹yÁ*}mÎl[ê!péÔ®Q’“×Jÿƒo#• RåÅ„õZœœ-(6Ãô¡ë ŸÇv ô¨uúSÎw´gSë)c5EqzNÉù9Dv…õñH6žA’†}P[1Û,Üðäh(•(tÉå­) V^>dÁ‰2pëÅ*í¸0ƒ›‰Žhr]’qј£;3¨3øQ•#vßbzÖ‡©éXu»ãIÄy±m€Zp–¬B×4tk®KêìÊ[ ‚»ß‹µï39Ü…•g!»´ú‡ó×d‘ íYj¦Î aÁ2^Ïóëyôf Sšl£6'„5ìéÌ_ùô÷ßχ‰ûoÉàZ.ìÆN¨vBHL[Ì0g½ žgç=´J*<…Ç—ô<ÂMZ¹ê”±¯ü食ɖž¬83­,™ŠáM°µm1˜)ù©Dz¦ìT7‘t¥:°·êØ…ýŒÛ½à+t–¨üWKb#N±1ÿH»)١‚TÝuܶ@'²¦kTäA « îP¹ÐX£ô“µM•oE¬ƒ::ióo\ÔØ·uÄM{1†#ŸW—ïoe­×¥Opq­1þ‚{±Gn÷{¬uV•ÿþùàYÐFù5ççrÌì©Ü-†ƒ½ÿ¸‘ƒ‘6& Ì< âaú²|Þ {S%¯CÐVñÁ#_¼ð)ÝI ÀS©':ôÉ/?Öù$C1•O(Ò9ÕBo™®¬õyDµ%U"umÑQñž ¯$a+¿¸`¾Ê>ÅF=ý¨VLRT4 L뻿^& J$Gü#¨7@/ÁQE e½Rž´cͽ—iXŠC~ÿQ ä d†¸Ûä†5D+'óé©Ü„4ž;üy8ñÖú«²½(ˆ´*Gèó•j ò˜îÕ½@š˜èdFõ:9F@}yXüH5Ѽ¤„ z(Oä]o*˜@Ý騙ÐaÀ¬Š$) D[ ´šýVMPÚ Õ âvø=Û”åÿ”]Yc¼`™„E®P,úC•d$®GeÞÆžˆcuŒôbú8MªÙêAòH|ÁÅÞ¬q¨×ÝwÁ‰¶*‡¢vࠨ̾ÊîxÙ ¯;Cy¶gËlÆó#Çþüï†á}¶™¿×®pii Þ@ÒFôö–l7ú4Rþ¸×{vnÁ˜žIÚŸæS`½ÞœÆžyU/ßrAßúŒkÉï¯AM —²J.ú¸2ã6ÑfÇ-]0Hgé©Ì×M—ÖÖܦ 6mb“çÈjg»íŽPkÄ݉ š¡²ÿìé““n—,iÉ%ÓÆ—_&@#É?¯Uš yšNļ Ã/†(÷ªäEF—“×Ö—$fáð£’å%#Z î7)ºÖ®Æ½NÏ㹚¡Ì©üWetGÃ[ƒf–°àèf–P¥•ÕòÆ—¦³o¹ š=ˆpOVÕ@]{:Ï…çnS@û BÛe65niͳ¢pr,lÈ ¶¡Êr ‰•žHéD«[Y(¾•ÑT ´€S7¿l Óâý*ônA|›Oߦ“€ív£Û·⽺}›£ &R¼nNyHæ3[O¼W~‘ÃÊïq%n U^9Oœþ*8Ë—ã‚ ­!ù¯ÒN)™Þ6$¢v¹!sª.)IG2êUXøËÀ÷E;—@—EÕE’-%n†LíVþ¶˜Že§þ8Hñ‰€”ƒ—mFâ~—š!š0#‰•.0£:`œ/ váÌ´¿êñg™Ž×KÑ2¤ÞuzÛ«½@û¼+¤Ûª$Öi¸¡i‡ÆÊT-ð¬\`÷>–ÉeÛ7yľlä¨_5Ç¢ÕÞhS³(ÊÑÙq|²Aÿ#ýÛ<±¹; pØÐá&ÞÆ†›VçÚ{Ÿ`¦Í÷£Óèˆ~ŸFÇôCRsiûªÎMßk¢yDñ h´ÆWñb=bàZæ´Ýmö=„'B¢ªð'„ó¹–ò¹»ƒ˜Ò»:öÐ{>TÜY>·>4ÍßrÌU>æ:~ã0í…™„à·Ò‹FObý$› @âûçOÌo½déï¿Ó=óËYëÝl éâ&1ÿž×¶>ój½l‘ï«[û#ë1‚:;|ј“~sì÷mÏZ”žÏ·Ý³dßFÍ/ýŒRVÁ Ÿ{¤ Åþ»bûƒ WbW£e’lÆ&¹¡ ßEŸG7C2!¬aËxgG^^2ÉÁ"`±„\Ö‚Ñ¡lr©º967 §dåù©L¶á¶ÀïC|_ë]+ºõ‡¾¹Û·qoßFƒyM*C,åÂì…¸M˜,Uù^¢cm—+hÐÊ WDºkq=ª',®1;ݬa˜Ò Ûe+Q&kîJ€Áe\gÚ'˜¸¶Ô.ÓËd9¡Ü+¤€äfú©­•R$%Ròf`Æn'hcNªðÊ»Ü%—AµÂ÷_"婘)GdÎ>¥(µvÕúœ<™dRh‰Óß„føF.]’U{¿7]«ÁŽŽ,}賞Ððq2žìv6·šy>/¡&m?¬h±QjåŽC<·\Bß“?¥Yš>£'ø–}µù6mîÿì ãñf9ºS6Z3¸Jжiºó)çß¼;t´e¸€D»è¬²ËÆÂt0…’d•ëØa+ˆ;eçvLåÍÅõD,e˜]¤ž\¥cBвƒâùR†eIÁ ›¡óµ;7"­„jÅEŒ&†"÷!2 ñcäŒët£§œ¯Î\Í!QgœKISÍ„eû3ŸmÌ€°äˆ(ì×üKl¢æôú©öv  .+ßD£ª 4QðJRâ´6´ü½m0‡)V·Ll`“^[$qŽ­œÁj¸wä`Ôžp¯÷Ã:Ú Âû÷[õjn­¡?PÁÇãâ¨åqkR±{ÀI¥míL/îÁ)yhÉYß]ÇÚdO ®OHÞ\ñL¦ßÙ”Xc®èQëtðqƒ™ÿìC=@8®tøRôËF¾>ÞɽíŠ{‹wÙ'tT86Wgœþû–Ù¨×fyiTæç·¥@§pÁ˜{Sã‹E^d+íÍ/×Ö¶ º–!,¸:®›Â¹/™«´i Ê’» ®@wÈáÀüØš1Ÿ¨ŒG~ÊSä‚X+FÿfþÒ,Þ(2±…4²Y PiÐÃ'ÑOy—´Àæsw&[Èiò‡ÊÝàÏGêó£ÍìT/A£º³_W¬¢4µ¦!ÔÓ{üp?jýÛãÿxÕ‚Ÿ·‘‰í¶rï©%û,~véá!rÇÊm¹ç÷_Zá“ ÀÑ,zšÇH l2C›>ÄÆ£¥ó’$+LâœÛ<­î¬¤V]Å{¯:M¾¨Ð}ˆ%±òæ â8ÊzÑ·÷#£§Vtmˆûd—žq–Å~*w©ùF‡ÀøØÜÐ_6ßxàË ž{RäloÙ$º‘Ð𵚕ý ¥¹Õ„ÒÉ¿À_I  é•zúcu÷•/ñ#UÒMù³ÙNøYt!ú‘¤K¾ù²9êáGÑ©øÙ)ͬ‘¾å2/»Ü†6Q¢Õd¡Q5ÄŒi•9— íld™O2FÜùH%V‰¯¿"/»ox‚þw— ÆIYÀ 'Ä9žiù¶Â×n4°›;eEÎÍýldMVœóøýÇx³xCC#û˜‡¦>õ›Ð57ï“<ãØ‡‹+‚,5ä¦SBDf5µ®F>%oc>Æj‹å©Ÿ¼…á,z¾õ2DÇéPV_Y'ÚKö2Â2ï^ë—¶m¼ÓêDc2¡4àxn¢“Öû_hÒ¿´Ni}³Ê]ªóí/­øšü/”êÓ¸qï½ë€íšŸ^ñdðÁÆÅÿ^¼Y6¡ë¼Åݲ–ÜÍRA(M9Æ:ôOiì1D©-^³–zï}1°ý»zV•j×ÄÙ…í¨_d³Ì\?0‹•–dóÌê»È½UBAñäz(mNó Õ»ªUÏ3#Þ!™ô €ŒÇ˜6£Z«Á-wPØŒ½M3ÌÜcTó‘z¸½ÛWÂF|^Ï™‹ylnÝŽ·¹“’ îc7ª6–ðXž?©‹%dS5‰)ôC{žOÒWL tŠP°î?³ù^ägikûXµ<\–VLW¿Å“³*ˆ(½.˜ÜùáÅøéºІ.:Uc¦Q™;Mã³Aºœ:È à ¢¡­Z¢¡í‚ñ™kl®]†ŸÛÄd£`¥ÅYœL³„”kéJÉÎð^ùiÕÎí V†ønsÙM ¼@¦1WB™Àùfɯ92U\½2Y ‹f +’Ê8¤cƒKªð 1ÿ< 2„[L•~5~›Q¨^kÔ…É$öòÀÃ6Åßãxë›Ài–ÁÅ« ½.ÞŔ۔FÉGH»¶òÀú\¬g3 89”ÚA|µÙ)ÁPªˆ^ewv—ê©M²¬TØÅ•`î–DЏ÷ 5¾¨7¥zU­Ë¡ªBf,«l…ðŠˆ½…~ÍË 6Rå n”NØÐDœ-C¬Ž£Æ›¢)´±±½¦†I£–ˆç7`èæŸ6”d !íØO¸ò±Ù—{‘úrwšŸß4Ò<¨'t‹”1@Ýy‚Ù=¢=t ðæ*=–d^9 o©‰=ii®:)JT *-Ö«$%QÜ#åòѦóTß]ý®4ô¬Æ`/_{=®d×Çg~SO’AXFuâ™V­75,îöÍ-Ó·{7½µ¹šsD…ªðOù™OþÑsÿì?éy€•Oø{k“&S~³ôb­j³„ƒ¬½^¬rºÃøWx/ïñg•îv‰ªå·T¸´:mô•6WÙ>Nî ú̽tWy%­qR.€¢üÿ¥K|N×ÒƒÔ‚{r}¶35œs*vh¼{çSGv[Ü=Š»Çq÷¤žç]Ló|‡j_òœça:ß„¾ÙÂŽiëKpýÂÝi˜©Ÿãqop2¸óuÓ4k'V¼Y®v˜=V?­âÍLr™ç«trè¥~n{Îj•3KÙafîQuñ –‰¢ 5î–m>=]×yݶv8•…¦]G>n\p[ÜUáGìu?+ŸÄÛ5*ím–‡h•U.ÉáíºÄr> Uhš™¦ï| ÁC(UÑvñ ¦{áà ùüM³•Ù0†•MßIŬÑÍApKMh²”ñÏ’yž!“ ¶vÞN o—ÓWoDPå3‹·ç²ït–L}öõ[šo÷5õ#AÄ•ù'´©1á_WàÇ bSF­ÔCRùšxaa¡p]ì›ÕAåé,d¸»¥U=€zqãr™¯û3(ÿ^÷¼1ž€¬Ä$Z¢¸JÞ:¼"„J]Å ‘DÄXL`ÛŒäÎ}T¸lÒ¤‹~ Î`™OÆölJ) N÷°(|jDa•h>:ù÷!z&2¤–†eé³0²¾“qIªsƒYa4Ž5[” ñ⢴ÄÜ¢tcpØÂ‡'ÜÓͤ=Ø´»öÆvu ÞÞôÖ3Ëæ*É“Ù\“ºDa¾ ?Ûˆ™ $•i*›­g´’¼£wªá"w{e$ –VŒºþ©ô©j±×Ê÷RÇ× ©ÌÈw+BYÅögÐðÓÞ¥–[í`ä$!I@Ju˜/‘ ‘û¨ºü°öHlUÀ²yM݉O⣠ùGråßíM°'5\÷xSêFùÑZJ3"Ì›5ébüÓDE!ïûÓÛä6Ô\/`†Þ­è!8„û‘ФJ`öd-¨ú…ëmÝÄüxÉ8õ:M쪃b_ÅrpÁ»ÂcG€´’ *VÎ`??Û(ˆlþšÍ z¶HÛ~ÍR‰ÌÌ›?R]Û*)TQ‡ï"Í}U¾Ñö1ðórl»EVþl ÀeØÑ;Íò†_õ¨YÊGe¢$psÙú(¸…÷¢3è߈ šƒY–¿i?ƒú ô!¹»ÄÏ7 @:îvGAhÔ„Zß¿ŽvÐrÛýÎ0ß^MM ûÉ×´´¿ñîk¼/õÅþßÒ{p­Ú-CØó6ÛùN„‘‹›àËþY¦ÿŠ1Þù¤«ºX%ËUóÑ6âýŽÜQr¨t=7PN…UÁÙöHœƒã6÷¾È…ô„˜ä'O•üÙhƒ–ª]üA >´ºn(ô¬Uúm×Ìh늅K³ÛÊ4i¸¨ÇÃnlܲú÷öÎh–Qå_lJ-t½’¾¦­¼HÈP(Ð3„:³yÂÕõÕ}§”Ÿ®²`8õÆäíêšï¦ „ÎlˆÜPj`Ì1G'üÓ‘ûìˆ>kÖÔ¾m¿ivðãÛ>÷ÅÏÉHúî§+ÈÔõÌÐö'ÅÇg”ŽÈb™¢L‰œ±’ÆÒ¡ÚÑ<)Ûû ¹ÿ£¬'Ù|º¨’Iå]†Ý³¯ÕÇ~õ,Ö»¬¥çTû¯äò·ZÉ-\¯d+vïÙ×jù÷»Å4ß&Ž>â8O_‡Ý®VXyÛšû9N0Fm0EvcÛ Ê?ÍÀs6èum0 ÿ¾þ*þÚ胆PgT ܺ¬^“hLÆ|Ü>âðlÃtÎîÞ‰£»wÍÍz^ëÁÃG a>¨À³%쎋ô”÷QrÛ]MžO¹|©÷-º“«-S)@Ó\]Ætý~¡nß àÏy&Q¡ŽJÝ*W¤ cr%‹ƒˆu $ ”\ˆŽd N#[Pµ³\ÏÉ 3”…"V} òƒòÛ0ÊQ·&_½=º‰à+ªààŸÙc£¸Ãæ}ª–÷i¢Ä XP=x\1βW“üz›eþÒ'ëý¾qãÏ2„/ŒóÅM({Ñ 3.ê+‡Gí¤ûwòP>èþg'àEÄÌ|inv[k\‹ìÑ´Žz& /¸eHD@\ŽÿïÿÓ@ù­Ÿ_<þþ碇?¿Œ~zú2úþés~ºº¬­M¹Å÷¢õb’¬¶Á€‘Ó´î-¢§~a}ùü…1Õ±Îäóà·)_©7ŒÖóU6%ãÀ„ì‰$.7DÖ‚Bnw C„†!JÚ·u&ú%ÃîEÑs÷9êÃÖÈÁ=±ÑDµ‚}@½ûõÌWKPZl–ÉöX•BÉDÅD­æsÍÄ"êÜÈâYŠ^ ßkòµoAb‹lŒ*rfm÷‘x•zß úý{QïöQ“Ì0Ø &Å'ñWñàn||ßm¸óhëd7€r³[x@ùO ¢U€-nt Ó”„üm±!:§sn¸Heýã õQ Àž ±T9FÕ ÚÆCÌâ J+_š!ø9µ‹4åì4uÍ’üSHšûé|QÓúþ·’t/œà ôÎúçÑ7Ñà^tF?váÑï Î{m>8ï|Àoõ$ÒšsRñ"§€´‚œS?¶/°ÿÝ[»äïúšNB‘&KrƒP-¢0÷ÚzlîwÉ|2;†»ŒÉHr× gJ„= Î<ïE/ÖÀÆ& \Éòè_”½oØJqS¬ÒYg?ï[@BD ô!G*dÓÉ2¥Úá¥'ƒg>½õñò ‡Ó¢üÎùÇxûkÅUõµºÕkW¹ùa¯ñáC³B‹«t—™5¾{øë›ºÑâ!¹6*¨Ûµè:a8»ûÊwoÑ*µf%{Ë „J|ÈÕo1ŠçAÒ=;޳sùL5|[yÓ-òH@W‰Nr⩪ °¨ MÙ“¡…ÈK ëg©~Xø(reÆ¢·:¶0D= ×ÝÙùw–¼>¤àÍø=¸‹Fq‚^ô»û”n%|k¨–(rÖ¨a)¥àŒr:kt–Íñ'ˆŽ†„Ø,UâPUÄC;J/¡µŒôÅ™y˜!ül5Ò9}Ʀ@Lö>\ÄøËýC?ôzˆø¦y I$¶d, xz£W¬ËåëÉò0{ÁuÞž6›ÝÁÆØ’q1n åQà rÇÝÆá¥3Žlt½DêßÁ/Ì倛¼´Æ4½LÆÀ IŠðÌ!»æ)­è`*™‘æHÊQœ[!xqü2‡ØÀ}± ‡ßlx5‡{`ˆßDGýú=ÚaÜhü¨æ³“šÏwkä·^o‹M %=º¾¦Ç¦s튂‚IÍ'eM—él4eü¢¿QÍ®áá¡GbìRðÙ55¥P‰úî <ò!AÔ•¥4o?™‹æC§Š…èèš”’à>î}è%ß bàkõ5DTE²ÈP…D jYž¸È×Èœ¥ŽZ¥²Q[#iMÞ"ÆÁŒÜøùÛƒ¡d~í¯oŒ0›-óùžJóVïÙƒ?>~þ ©–¨ÂÚ­¾LæÄ·-š‚} é¹ÑzGF-ü5¹Èè,1òÚ»¨­-éìåëèìˆçP(—‡áMÉFEp¿«<6º»®á$,*×N“}jPº)5zê৺ʆ,òæI[CJ̈բ­˜ãþ9IÖcÒeàÉ3Wž¨V8úï‚ø¢À†KNÑ Lä!œgkZ¿«=RÝk8o–¼%½R/÷|½“¸ZßV€ÓlÏq"¼Ý˜ÊÐÅÖª(èùúµìQ)Ö¤XJé7ù>) w¦×ãbåê´ºj¸fý`µ~çÊ òGµÜnÃÂwd@kmP<ò`6¬ÜîA¶×†;‰"çé²ßèÞÚìførª¿¹å“¤Ò[fO?À&ƒ¾¦ùÞY·=øÂ|Ô9îG'‘ÑæSŽø¤Ñøˆýšs÷Â9ïÒå"Ÿráªn4üåΚÝxŸ0À_â1l-lÉ RF=ÁDn[ÀÔgp2~]L“âªg@#G¿šTM¸r¯LÉe¡ѧ’žé}{SËÇË^›Íù¥Ýë” A¨þ6ŠaàË/VƒYê¨ñî»@‰»†NŽk¯q¿iàL?ÀqÙgæW£I6Þã_ ¢ˆ&ëÙÂáÄÔh´2ºJ²dL õ-¯µ­c”ªÄ3êWs AŸàâ“‚¬fád˜w‚yåÎ/..ÎÕך÷|–OÈSc‹‹r_cÚ¸WÜtä÷}Ýõv(ÍhéÖI/µÿ6xä-©¶Ó:û?üÒ:ßTY’»Ç¤~«Î¥×ýðÁÒÌo0[rÈ=XCåßt”ßCX@‹q²>ÍVbÿWJ-nÌN7¦…`<*ßXê ´¼nO£*G¢%Ø÷ŸŸÿ`è|’×._ÉÛF¦J.5?"¸Ð?½üñš¿ýøƒ3›] à`ÏQ9!ÊÎ øÍçÖÙÁ¥EXLÝj X†ÉøWÎaÉ÷ˆ¬ q*ŽàÊà &ÖNM• S#úLà h“8F©Í)¼#ÙßÓB‰Rrà* \­fÓr†kuhÊÍ+Fîã,Y,lÚƒwæ ¿ùö_ZC,Í`u£Ì‚fÎÿ2]݃Ýó_.ñoøþ¿À_&fqù§7ëÜ ?ÿÛß ñšñ#T¾2†qñ¶<•äá WtÕ„Œ„®%4Ü%Ú£ Z Ýa’¯AX˜»”óp)hE>çƒ3 ‘‘ ¬Œxõ[ŒøeiÄíU2êZ[N³Ó‹;O•~Eê%T5j+hÇÁP©}ÔqÁ¥q8 ?¼k†P•q–EÃþ»þ×Ãêï kµ§h·{S¼z4vB*›Áf†…t­ägkº*‹¼ü¤¼3vÜ Ø*¬…c~Bc¥õ !ü²¤¿Wô÷/æ2t¼ÅÅUógžfŠu¶BU;".XDˆ}ŽóÙÌL¦‹• ÚÀSIôìé‹'‹ €õêÅ…l¾¡äàpT«Éub9ÖK‹@|C]C›µ¾Pá+f•¿Nç¶"Z%‚hJ…§ ï¥W‡Ëä^ÊÛF÷»ÊÞ²»½èOù5¤ö˜ø]0p$ÅOÒÈÁ'5ÁLA7£Ô7 +?lfp8ÇeŸxrÔºZ­Åéááõõuï2ÏÍAí™Õåmâu&„áû7Ø:m]‹Vûë›ïZËÔmÞÿü¨Ÿæ¯_ß|~ü}0ư–;pˆÚæäD³dù:ŽÒÕ¸g FF)¥C_—åŒÅÕccJ¶£åª~»÷“éboˆy":‡ ´€’ ÷¦1Ö¯ò0®më~>yùùŸN?ÿñôóÿÙ Çðr€m“ŒïDƒ ÍÚ𽌯٠EyËŠ+¸î>6k{+7ÈãGýÁnÿ¸Û¿óòèøôÎàôäËÿlÆ,89ºsçë¯ïô¿l®ÃëèºnašröÅž&Ћ£ãøÎ >ù2>‰ïêjèûéSô?cœ˜üÈÆÊDûˆf ›Wkèæ»‹Ê ~ÿ>.ëßÝßj¬»Y]°—ëÅ«FP¸`;Èßô‹û5P¦ÍF3èE”†š‘.‡0ä’Ôåk;ÚøòSë´?0ëUCõXÆc­©’A&]ªçÈ’ØB âæm|ÀÛø¶1–ájkŒá4z’qhÈ\^Ï´Óæ†>D‚Ç}kc"¸YÕwàÂé‚°„‹Ò\ Áx2™6ˆØcሇø0m™™†’0BqÝ>F©f¡\¾ÌHLy´csÁ»Á4~ÄÒ°mClĶ’5EÕ\ØõO§êYÇçî2ÇnÉdI`†uô˱OBÐÐZ¥i ôÖ á-#¿W_*ÒꃨÔXyr^[ι6ä¦Dj£6ÌìÛ8úö~}ƒÿ¶ß±cwo»°OÃ'¾Åý-]Ôßðß¶œ©=<ᩃö‰ =.{ØÆåÙp̦âà7ÐBõ ŒUhˆ}”@1ðö îk‰Òæ®3mTÒ^œNEövÅJÐÞ\áÃUg™ÞñÞPÞˆ¾³{ô°G*o¤9b‡ùòPÇÚÖÛ"]ŠÂï©FHôPªû-õÍ‘/¤ù‡b’,Y·c§„ñ %Œf|¦Á莨 zZI‡ëÑŠä!¡\æŒÄFéz¡z°üT«Ìèì4XÝ–²EdKQÓ«ð¾@'ô\ÐW™ÏVE:½åÉIJ¾RN`pŸ›%”|GJŸDd—Õ 4mâ/hµ Ú@Päâ–< DòÕVl¡â Z&ÇÙ"಺¶/Ã+gvŸùcÌ™þ pO ß%KC>¾L¥|H [Å‘Dí<ñ‘k÷r‰"®6—¤ã"'±— Çú “Ët¾6RB‰83Êjá¹L…O;yOÍ’>K—ÓC–Ÿ¯ÞžM2#‡‚ðNó+£¡¾¥¯ˆ:)æã"1Û²òµK<[Ó|ƒÜ.ªZih¬•…ÄhÙ$ÒÕ5Šø¢´†¬„Úõº\ˆáohŒ’F­ÃÖ'Ã}KOŽxå­¯³!>oSt÷Fè²¶ÂÀ"¼C–?­%>7ø·Âî0³à“¯w\ï³j’à·V)jû"ص#ùÇV ¢Z4Ƥ©^˜hŽè§ÔºÜ‚áõ`J¹ÚTyË‘b—²?6Ý6\Ô–¤h⤠“èð0)ù³FùLJH2$ÝÛüë_±ß+ͦZøˆ¤NªÔ‹žú°óæݎʬŽScƒb%3»(N…{šö•4t+ùRNå`(ö„ez‘Ù–/Q`Öe¿e›?ªn´« Õ#LC¨ä=DmѬPÔ/õI 2Ž,I9¸‚Xøu4áàë&òßÚvS“'GU2_-oºcØš7õcª æ‚T’5dË‘ÓýLÑã¿=‹¨ü4´¦U`ÃjrP¡àF-z—Ž×+[ª’àµÌ™Î¦…`^#1Œ,YU<öî`lùÂŒ+}'ºG!NqF˜¢8vô&È6!éMZ lF Ä_-çE@€/^>òÓͱøþÉ/?oGÏÿññߢÎÖGîEßÿðà/6?yFžïòPÌíáY»JX1KY·å½Xªä`Q°„*Ÿ¨XsB¹a-î›0lùžkV:ç\źGcœ¤ÙR¬¹Ñ|²Iêâ½ñ ñtTñ!\.\ïoE·9Ñ8YàÒÆAaÅ’1„'Æî'ʛɿbC|Ù Ågš\ú=¾ /‡æ¬üqš` ã$ê¶C ±!ìØ’\Y ¿ã›ÈÐÄ#ª&2/Ò¹T®æÆüS3<õ#Ì”aÆ7I£öAO|×\!dž^ãËBµ>Ç{O.çäᢻ[FåYà‘‡9L}´Ã3j\ ØÎ96ñxø…Oþ°ùŸQ÷Ûèà—°EÜ’_þó@dŠ7©à"Ptp“º¬¬ÊÞáÙÇï^ÂT:ig<#½@N‚Ü‘3ö©»CžË¢¨¹ŠÔ;{ZIº„'‰HGþj!5Ýx@lí¨•üòK1‚Û÷]+òš­5§K¤¿3•P4 Ž4<¦ ÐÉÉ»1ç©;Ú-ô‡~^>æWé‹—ü»ùàO2 öwYg•¶¿ëfó`ÔqnnkD€py”ä×ð’ÍAÔiŠÝè>—<Ã-IÎ?ämÏ'\³æÃ:}x¤|sÌ–]¶Çq®Xj.Ú‰EäøËW¡òòyûè…˜ÃÇ6C$Ze .ŒÎ$Ñ(ˆ‘Ïó¤u/jeïšÁdß%£ñÜâÝ¢ j˧b܆òo{ìèíÛôÊíÛ>0sî1RÄ·Á› » ö¢èGÙ¸†S¼í¨øhQNÈÌ/.Št^À?qÜù÷ݯ<v¡dZà}Í…;2[dÿ8ZäŸj[´ñ—‡¹ç€bM}ê{´WB“𠹓ˆmêhT[´<ˆFå‡ñ—Yƒ)Â/] Öåö¿õj’K*ÿ® ‹tYÄÒÒ²jÇoPøƒ ´ÔQÔ3!¯«ÐäzNŠigà [®‘IÀj˜°›ÑãtÈjšÞ»ƒÝyŸ¾VÛœìÎ8ÿ—͘ߣqdþ«g@¡ÂCW< Öi„8%Þ” 5¿ˆwÇð´dE!O.ÿ²Ç‹׈e­¢{…£8ùÔQl±y5K½…¿£æ]ôÿ±÷îýmWšðü­OÑA”!  A]œP–2”b'ÊØ–"ÉIf®Ñšd[ šB¢IûÙ·žs©:Õ€TìÙwïr& t×õÔ©s}Î&>½õ‘zvJÇŸ6<ÆÐŽô­ü´µÒ‘â7ÏŸÿ¬”Ð<àMý¶½1 nccÍû’tÿ•›Ûhÿîc÷Oï÷´i=®±cô¿ö­»öºŒFÕ…ñ4ñYD*'Ù”'ØÙv\¨"“oñ·µ!mÏ`d_ß³¯³’ß8ž6C"{4uìcÌÚyUÛºÛˆ,,ÓðR‰þ}}¹ä©»÷è&Ô‹`¦† MPÔ-_—ýàYD¾DT4H©¬#½©Þ†7ÙUȰ ÞWª$Åfºj$ëÖâ>2o'Ô•>>Jÿ<þ¢7p,í ~çþh= ï¯þùÏ«Áè^;ç¼[lzH¹’æâçNZðЖ„?¯''JÑ·LYz®·ò¢X P™a.è¾pÙ&`Ðí«¥/UÌdžNÝJÏ×6“†Õ•iƒ„#rLyÌ#s-36‘s}•<0f Õ´6r§Pzâ(AÕ9âÀê¤6f *1-È–%XÔ}`–Ü}~ý ô^gºIv€Û¹ýT¡4àŸöÔêeÒÒK·šêôZ:8âªNÍðu\ÈãÄ¿ |—érVr á*Ÿäœ+µC’’K´ ƒ±E>:¦¢,¯d¹ã !·®sŸ+Z¶¯s:éô;SªrÒRêƒÇmžùàzëÃÁV’ØØ³ÀÑŽºTÓbM9T¹Šp騽ë± “k µ4úÆe,y[V°ËKJÊNúÉéYõÁx%™dgü/Öÿº—š‰l=Ñ%TŸÞ8±ó‡7`oFM)&RtB´y:U‡z3ÇIà` 1QA‹6ÄÆÓÈjê8XxB,¨vç`Kõ¶Y¾¾ÎCAd7Œ“Œ Ê’(¾0)ŒÓ´U¹NÓ%gíf''t™Šîª‘†æ¢œŠi6VrÊJÖœšj{æbÁ• :¤2BÎoPÿޥ˜rZy€°È1^ã*}£ÚðòyýÝáû^ç”êh¢ó?þ'îß;îö}ÏWñÞ°•r;NŠr öÞý­Uiþ‡ûþ0n ÏÓ!ÒÙ¯|=ú¤ÇšÈCd>æã,×Võ*%†ý]̤à2móòo¦Ðk¯7M²C =ì¹e?£í|AÛ6h]ñÃÉ´ýJÛé|q8ø"Èb‡ð4­¾q’¥! AÛø«Ð[çÀè&e1G².çS#ßéa¾æIP:•‚™q¶¾4÷R®Y~š®| B'­Œ¤ÃùØ~ÕžI¦ÕwÑÀ(ÊæRNpq›v‘–'.‘"#í Ò…M¦sd‘­2MøaÎP […!« .`Ú ðnLh´>B¹*~€DlÞbÆâ³ŠhÊ€‡;F2“%ìÇCî³+ÁG/:Ÿ]ãÙ@—#5TEçÙ Ù8ÂŽÎ3d‘ŸèRp2{nèÒŽF»¡ƒÂÙ½ˆµó"xÀ€ P§EM€´útîã(PZ!§“l¹ë8Æ“ü”\!kŽY§=B³šw©4ÓE–†-vSz×Åø<½P´Êi>dc–r”XùjðbHè9ð9K£àiM¹U»r+p™-µ$ „=½/óé@Xžº{¦/®Q¼jæ°íY*úôÍ-ø•³ñ°q)ìÎhÚ0Àº&ïr Êœw/ûÁ…Z¹Â„/¡Ó½ÂKÑ[ eÆdëO!pD^!úi½‚¼™gSB¡$(Ü2›_0| ]ç¡??ljÆqŽyÏvŸûœçî$+ Æ ]¤GÒJVY]¿(ÝDUÜÎúgélj¶±ÄMÿ]šÏSÚðM®» ºP oÞzžíjò7'Roñyž¹éRz¦'cî=ù*ŠœÃá+R•PËq6ÏÅ| ¬¯SlRˆ‹+F=1L‡Ö ž\e#©2«_×ó~5L¾Ã™2Qô¢Zˆþ"™ŒûÜ KÐ5}µ 0þù’§HcŸDa´ÊˆO¦ó9áÃ9ßã«åÍP=ZŽè@Öáº\S]¬° Y$#)/·IˆÂ/ó :b„æ/ •`Ý-釄ÚDHDx»ÎIPt|îÒ 9¯Þhp‡hel)Ï«k (uŽ¥ìü÷º¶Æ@#›€ ïæEq¡êÌP ._EET)ãÔÉŸél–ì&ÁA!WîÃq%à–‹[ÒJЬã”…VU®Ïƒ©È»F>»9n ÚªWEßÇ‚3OÁö;ùñ×n×/S: N`y—yÅ-ÿ¹\LÕœÛø}&¯€wÞ7Aâ3Ãi$Áš 6n×r\¦%b@LƒólÅÕº„©‡ýה˰ˆÓïÇÃä0 ‚Äû’k0‹jtÛ=ü'^§›Î‘³‡›åtîF„û©öB05S’X[4û±08zåGùàcÂ}j_þ[æå—”(˜&æ9Õ¶Ñ}µ(!®ÖŒ& õ6²È®@‰HD>çØD^»É‘‘îÂðVD"Rë2óìÕ×ɼ8…ø_;­e'];9e)YWÄÍm){5»ŽïB‘¦,Ú/ÝxNîH¸5|´äm‹b*—¸éóaòÜVsgö ë) µÔh¬lÞæÁÁÁ°ÌA×eA28„œRÓi¬æ›ómîÀ@ä¡„ðæYÜžc9e±u>×Úì`*4÷àî­z<»§ŒS ƒ¡f´ ÷î ú5ùnúâŒ~ë|ú—Ñmê­O°ÊúÓ¶©²ÏùbpE©—<¾†UߺԵ‰~joã:K]Ÿ|eît•ùÑOnÓâ÷ƒÂ«lŠ·ôkße”EšŠ„ b&sÊ&Ä Ð"Ök]'åÚ2 CwàüÛÇdH[B!h úÒÔu¢Êr½•)ƒ*•_d¶2A«¡nËüò +M‹ÂzßayÅ‚“[Xvq`øk$`•c ¶V°È –±p >]ØÑ÷gÄÈAùpRŸ¤¬‚d¯ènsͨ¤KO$Cz[m§ÿáöõ^çÇbì9üêű¡ÓyºÔЀ€Ló6›!<‡Ü¯Ô·†æ”i¶B›#¤+jdòft*·@§!È[píõêô‰§>x"=ðg†Ô±ÔÛ¢Ýæ|¡ãOLjUªô1O?õj.ß*öštáÇ@‰ÄE®Ö͸‡’3¾l´/"^DµR$ÀG® ÿ,•W¡Š1ÀS€‰}Ñ÷’ïPê ÷NMPXn„DÇÊt´«¾±sšv΀>ìÊÅV¤rZƹÐÒö<Ú”(† €àTÆS?'¿êÞ€EÁ/F Y¶`Uzënax½r¼ËÂi05=¤É¢†(p•,̳p•ÂdÉY’‘ÊtÅËèdÝØ`&ùó«ì¨P`:ŸYÞЖlÚ¥HÖSÇLNMÚ:k–ÒÔCÓ •)ÙÏ€¾˜­p¥ :WŸ ì—´<¾aª Áªº+bÜÔÉè.ztu™ÞëŒöýõ‚÷Soo¿ß˜x9ÚësHÃÁþÞ^[¾äÎþ¨½:ГB>u‡wö?ê_îNÁ½·d1ÜoëéÈ è~{ò5t;uMOúɇ©£Çé'œŠÛPåoOðŸiK¼å~‘:S‰ï˜¹ï·gOüncôgÉÔ Äý5qÿL>µô´‡Ú`{HÈ a(í¼×^Ä”4¤H(øÂÌg£ðÁ¾~P÷’íüAµÁoôý5t9*m™H9ïHwKt$?§vC¹ïÜ„§Kâ´D€£(™ì‰DÄ)rœØ?;f½ƒn%‹oAöäñ°²F E£+æÐ¾g)9š¡™'+r¤>úäÞ ëÚ„r9ùúˆuêQ÷¤w€RÝ ‚“ãh¦‡ú®¦+%]H eâº. ¢ê¢c¸…ÈiÅ{Ðf·‰õypk ‚BœKN!½b¦:¡e†Y7¸T•kS8«ãgCÎ;¿T¸[lU$’ÏçT†}´…rS7<‡4­Ö-^£èÙ=¼,P1{á˜íÅÉÇ“‡•¯ïÄ—Ž9Õ’ÐÁEQö÷÷|™¬Ôؽ%¹¤³õ²ŽBÊ®à|ñ®˜*^-½:Ž}«÷ƒýH²¸?sU½ܳ£½¤{?¹“ì÷ú•Â…aŒn%ô,G´l©ÍÓ¥¢‰eÖI%Ðò½mö2F¦Â,Þd5ì°àIÒûqàÉr’¥0Í/¥Vް€³Ë¤¼'ÔD£s«€ûšÎfÔ)o.].'î¬áèÑívÒ‹Ýó¥Ï)}ñÓÍ ßFËNHŽÚùnò,'ëÏ‹›Æþµ!„d¾ï¯à`WPáµxÔ0¯½Zô…Ñ[ÂÔèæ¥ Ì1(Ž©¸ÄF††¾f¨¶AhGý¾¥øâ2v±¨-V›·öõì»ôDÇbÉE'TÍÙÇ"TDþ J"~û<¥ò×t¯ö(vŒª°¬T‘ˆF|Y¨F8 •#ÇŸ‰nº¹×–!U:8²¿á’¦Çút¡Ó“ýÑÞq»ôÒBÐï-A¿ï=LâþÄ£~ˆî¦°­—”æ»I: XÉö%ÅÈM4ÇVbHÔ\½%@ü6Á»°Û!Ò±I87ž (Ñ}S«8”.ÊK(†‡%·ÂõדK2Ø’;g|t—¶FÊaΆöUã)Î{Y‚Æ_½ªVSC?»—® iÍò®¿t£»ÍÏ•°ÄÖœ•±*V) õ0{@×½!WG® È”ã~ÍQBÜÝç;`¤÷‰mÂ}(m9`Êè@‚™‡nnt^[´=h¦wÂ}4Ëa‡éOwÿ&š¾>ؾ©mp°{±Ü^Dt¯1"mîÖqÕ]<¥mèKøù`_s¯­P*«„±T‹±ÏÉ"B àM’Éy@wº%èµå“C@ET7ãý/û¿íÿ®›0÷hœ<ÉB™XRœÓ<µ-Vg².Ëë,Œm‹«¦9s‰È‚…°¼ˆC̼¥l~QÌ«µ‚u¶a{ÈÁ¼ò[Ň¯k—cp%Ù\Ña ÅU`»±[HsZ"Šé=ÇUÖãa"s±cW@£ˆS‚BФ;Òº ñ~,a'é{N8¥!š¿1”áîþÃÄÖBn£½ ´õ;Vý[hK©ÊÓÓµ)ÉÐпD=ˆ&ïªR1ÞRÎuhædSc[÷CWùøã‘˜b1VÞ†û?óÒ ´Î5–Zž4ÅFÍÅpG¸ðdÇW"•k[1Z1›ÂU©V‰mᆖ’È'_$s;uç<›å¸Zõ*ìRQÖµöJ¸TÐ÷Ô‰/ñe'Ýgß?{ý0ùáÅ_ýÐ}õúåáÓ×½¨\Ì·@"¼C3бñõ¥\Ÿ£jÈì E€Ü|–kÏ۩ǺâqUcB·^ѯ6æ•Z½§:ŠAbºò *¢NT˜_Ó@šu êgh"•Ʋ¤­Ñ~0¶Òë¤CÉñõñE¬} 6ø…ˆ5Ä¢y}%P¼H²‹ƒŠ·LHp@òg"n„ÔDrÔ9öÈ"ì]UIœsKÈ(ÎCtžP){ˆRåâ&x{GJÁVêi®ø§{täTˆããªÉÄÐÒ‰N1|/Q'^ƒnrÌ ?G¤¨@Ç¢g{h°?7mwx4’&‘j1k•[Tj¡ü·NÚ”þØ¢ ¡ö{ÿH^hQ„Ü‘ˆ¼¯M€fŒ„Ÿû ¼é”#ÌYj;Ë8¬ñ—„Èòü;…î,³¨`×_d¡Ò®Ö¤×myš^0íåäÁœe“õ©·sv_fSÖ/€‘np›w|å‘’9 á2½2%¤NfÌÞ3ŽV ÍÞH¯Üc¨Lœ.,Â`zÁ¹7n ¬A(H\ÎÆÀÖ(ŽÀ¡¢4൯®Fš@>qãš¾xÆ ¯œ|·b áð²îÐ6LM& 6òçb )D´­Õ¶Êë5†ýXfç’Âo’æ IÄýÓh½Xº=§⦠‰±BÒñJÃîF¶uÒ5FÍ;·qÐOS2‹¥ =«u*ªc­g…oŸd>±³â®=س٨ËezQÖš¨ÄÅ:øúÉ<èô“¯è¹=÷ø˜¿[ q# §Œ.ß­”#^Íÿë3N Ê¥¨£98œX*PŸ¬‘кÍ?‚]äáÆ•{iÊ¡ZPD¼-9çªß*ÕÄ)ËÚšô%>€ð’jÉo˜"ÖïGX®?KZôröµ2½0©ø.zEø6îÆéoêûŒ„3&s(c‹“)µÈ¥KfWùÂÃæ„e=IË3V’êpö¥$m/I{'œ Š€_:êlPÊÏÅc•Ö–„;Y‰]–GDù‡Ù*+‡>:Sõnb!Ë·ŸheÎÑŸ` eþϬ¦AÀ™ÂF®7ל2ÉBMØÞ±ñvOߟùŸŠKXŽ£&á†Fã+óš0/àkïßI¢IŒ¾ºpsì§»ÌNÂÙìòaDö1[Ò  ÒrYåH¯0štD€èÊ_IÆ+™¡0µÉºäVŒN]Šòîà é H(íõFÇ€ý²qþð&RÈ·û8Ü?#ýþ=6€`žZyb¡ž¯g›'N)|ȃ£•î$¦Ku$²–$ÙÖ¸éooÜ#iG:à&uèÚ0g’EèPhGZ @TÊp’]v¸å9…¸Ã£.eövL¬R…ƒ™Ö—éËE~Ë3í¨°QÇ –„?ÉJ„.“ >(ÛQ°Ýø0Éyl]þçÇ`ýÚ]€hä5%Î(›RbdC”4_Ö%xÓH`pØ…8åõ,k±TK-¢ŽóÏÃl´àmuŽ>V—„È×-EZò½¹òL R3®‘–p7óÏÜ•‰Dµ&1~ ìYh3’nÔ”zýU3ýùú}†eæ¨%øŠ°¶p͇iøG½”­„ÕÈÞ¼ÿàF…máyž«f}èoí¼÷qøè>i Js+%õMÜ¿“ÎÁþ§ö ×`¡Üîž.|ÉߪFê¿%‰‡Ø)=+DZkæë ¯ Hjƒiˆâa ¸Óu^žy—HˆŠw,9¸È9*+]HT0pxeÀ|¥z…¥K\úXpóé¾/4‡óÉzI¦/Æ.bS§¢ÎJ‘3*ܤüö‹ÍsbðáÏØL" Rˆ‡Û׸wâûÈP«ÉYAªœJ—-l ô•–CÔJäôZPO3ÝBYZÙ‘”“,´ã„òA ¡™ÞLQ2ÜX³v–™Â4l¦Ûæà‹£@-BÒôýä%Õ± eêu6Ùj:äáj~&ó†Ï©8%B 4n>³,¶É…^ßHý&0&YÞIv"p\ô% ÊíRI¶¤ÒKzèŒ[9ø ¿íX/Ó$¯ñ¥eÐp"Sî.Ê¿H`”Üz!?Úλ$'Œël>Ò2›b_ ·¯,Ÿy™u;‰» F OÇ>Š’"%Mƒ“âM+#JÒò³áHuÎ Ç7®´MˆT@úËÓu¤CSMÒÝ)¥ÕÛLœÀÚì0ð‰üp2y.ÐL¹_ÿ‰å¨%þâ¼øBØ„Ä|ƒ×d+ò©¢j€«Š•YühÔWÁ]‚ùЍ R¼›9zb¬^‡ÌWðc;“bXø¶;‰Òåé™?¥å(§©° ÕÄÌG¥èÖ+ `YËn8—ðU/Õ–†?jž{ûjšéÔØ#J¨ðá˜+SØ£ ¢¹ÌÔVŠNÑjºANóåt}ÎÛ/ê9‰€†óãGÞŸdgH¿‡˜RîêViCéÖÈ· W3îÓ«•P G¨]µ¯y]€-ì•÷ÅkK±™õ†jp2Í8õqÅæÊo«!™“¥—™7¼H1kc´“6‘>r*`–‚ö­5wdÆ„•ßy´Ã׳¤7²ñˆ ¢GažŒ‰pHÂôΆ“T“ìÜ0ºþ±± ›Y~$U±&¸ +•¾{I臘4­û‘åHcEð­¦íùðƒúD}(Áy€ÅÀ†ó…kíE AÏkâv„¨‘˜ã_Ê÷ÃÂZ[!ˆBýô o{vŒ'ˆ‘¢¢Reáã˜î0í'½GìèÜï…4‰±ÉÞû4®M‰¿I´–çí°—±c/<ÖD) “ƒ0Ý1’_ªyÙ@iE¡9A製q¨’Ä’Iêe¢±Å¥!êìö—¥$0¹&ëÚǦ3´sX²!/­ >ÔÆQC_λVf1¬^ä_øˆ7W“€«|¢¶ y14WAœ!a»Í^˜!ûIÊ¡ˆëŠ=_È¡e^ÌC"‚Á´®BÖ” &ˆÙøl`:. "Š®a…Çc´w¥~1ÿñÃ6ñ ²¨A!Ø(e9âbîØÅ¨ÎM¸"µAo«ò1ͼҀ‹ÅÄÊG¡‰/ œ…HHSJF{Ÿêà~Ûßû´â~Ø*µ2LI”ˆ?ùHUe/w²e|ø]Ÿ²‘‰V:t#ˆ¾­ºú‘X,\×c§[`N«†žkÛÐ8!öDÇÓ—NA:Ü—[±ZN@å–›:• Ížý0³ãÓno|³ûçãç]@Ø)d]óªð¯Ï»…,­Äc¸ÉU$üºvQ`-Råã ŠZAk´F´˜#ºÃáG‰­Y]]d¨}ÌÕí;½†"¶|#8¼dVÏËÜãz{G÷ûôvD÷åß !${xu aý½[Øß1 ÿÞ¡ÿîÒÿïnј|Ýf2›{ýM]G°ïŒ'÷ˆ PîEWûÓmŽde™;¸·ÜKC®tÃÄæÛ‚ªdœ`Å·¸¶õˆˆ m6®¿ÀÖ$÷ö[Ájü#w›Qž’å½¹ë‘Æ¡Õo‹U©Ñä’iìkR?Î$¸¦±Š¬1ÉšŽþ–Át‘Îáæ¶ì¹Ãü-Â+Ñ"jM,ľ÷¾ÄP3À‘ª/–y)¬G’Í´%â0–X¹”e†:ðBíiÝÑùó_€®ë4›N„›À0h(Kp.@.~ys¨¿YE¼ióÑüÊ$$™«Ï¬r)æ¢v"µérãJ6ÍÍŠ)Åò´Íîx¨åF•§uMæÔm̪sßéÊßälÆò&TÑ í»þFÒNìæÑV-1àjâØè…ç2»Êó«7 ½¨uËÓ|?±d0iD”PÃêQ¾’E(«¡Dø4¹ÜÂN›•GÐú*-Ò‘V@Ü% R¯Ž‹Ô+˜ÁŸ*¤X‘«  lk¤ƒï:jgCÎ“èøˆìø]ßVÞ|SéHϺ@œ |¨ä;Np˜ŽvÀ é.¡­¥|KôbU‡—µR©BNV–.ÜzÚM>zdR â­ô®dJ@éj]i‰ÌTp…椃ïYó‘ïÅ-B±®}É7ke:W†@qñIÁC¥š–l2®Mº{ÝYÃÊà«.;>Xi‡9#0L•ØñòaÍÇU8¤/H$â.ãÒ+}¢ï*„.)²01.a¶ ùN,ýém±õE†‘âÝñL ×H•·%êB9P@ àQMnâ2Fé׬ nØG’wÞ)õù’Aʺ¬Cä‘Pês:çœâÔèò/˜9t¸V§!ÐCMv@$Qê,Ê«å«u†O ‹Ô–Ç a$èÿµÛáì@Þîí<“A–Wþꛕõéü¯ÎöÆo?ùìϾ×.hØBôQd–.HYïFš¸FgÃ]²¬ów"͸ã?Œ;W¿]Ø# Ê{v$³jU\ æŽ]ϽŽ, ±c½!Š“{ÕÄi»¢±ròŒ¨ÀÒ áG^°í(’ÅxUÙ}·ã6”„LB­àõ$k˜^^›ïm3’Id?¨úB‚Ÿ¾Õ<2;9_Ÿu¡ñ‘##wØ€î¬[>¢–Ä.>”÷+_uLlË÷k1Øsø‰HGq¼WóBNÌ`ƒNb§‚Jb§¤rÅ²Ìæ qAíBب¥”šÔο[Äü/]>ðÊ锋0¸H>¡h ¼à\xûU¤ÈsO/é¼ð®!Ì£/±«bèTà{{&žØO^~}ø‡ï¾Ö¿|~î…Ür`Ø€Nƒ ͯ'bYH"zÇfNÙ^X rgJ§ŽL¢¡‹wE®Œ9=Ÿä§k.¢"Ñ´¢T¤7:屉C„¾½ý§çß} Bû‚%Hæ/¼f©õ[¤‘±­ó{`ÎÑÇú•õ^wü©Ý“cœÁÏQÝ3†"ƒ´(ÛÌÇý¥#øû+_UôûC·gG_g«Uˆ?ܬ¾3ïå[dDb‚$j÷´Í°úN`K‹˜Á ˜ãXr}r’¿÷Ò§“ « d¾‰Ža¹yp(æsu>)æp—¹V³Øx‹ppЩÛ”%&º©lªxÅúº:Q¨(­š;”±;v½š(Å\{ÕfÃRU΄ÑÉÖë%.WK€ÁÂóØpzþ¿qj(Ä€KÍ“_™ÇK<¸;HÉ ù›Î×–Seši<_^Îõ| ™$㑬|‘NMî~òõ¯qk¸R »œ¥3®¤ë§Ã ЋõÿÎèMÎèu¯…ÛŸ/p±ü¹P±ã_¿08Gl´¾¾]ÚØî8¾Íwþ[Öú´÷ÿûûAøy8([Î ¦¼æEÐRTÙ·BMD#;ì——"g¤ Ä6è‹liíi@-p›òŽŒñ⬺X/ÉÆê±<\÷™4W³’΂ˆ}­ý¼ñ’·'m;ñë›ulAN‡ È"¥§IÀÁúÙY¨yló¦KP‚ ë,6.߯:ûËPçs$¿Tý°Mþ•\¸p7´•^­{v4Ô¡ãTØ’Nf´Í/4wTâÙ­àÛ5 ¼i}Ð>ã,³FÁ)Nk¹k¡¢[Êi;Aâ䬸\Ì‹tV-D!ŽkŸçœ»äµîœ”Ç3??½Œ†vgÅ´ÜÙb÷î‹=î¾ ïíòïëóù¿}æÏÞÞÞƒ{÷üûåƒûôïÞ>ÿ½·7zpÿîý/“ÑÝ»|¹ÿàÞýQ²·?zðàÁ¿%{ŸÛáM~Ö°X¹¡\«çVuÖòœ{ìädC;4™½ÄÿûÉÏ`0¸uæ8 H`nËÅAxë–#arVï+£¯üi˜á(.ØaÊýI2žjÿîå#¸GŽ»»N¿ç&zÃ;·nNphÌH¿ï°C§sî$QK‹†”’!‘˜Ch¨/ù{“yA¾%_vBõù@ !Is·¢J3>*Å0Wq3ä4ˆ1®¹ò6†°ô_põ«´”ðÎod ²>¹MÚˆ¾K Ø’Ž*a6̆ì¥øÎ/†Ú–’€ü™ xN¼èUøu+Ñ €=¡sé*µ»q£b¬+)ÌCuCÙ_6Fâ_me©lÅý&/ò ö QàhlZya¹^¨„BËÌÛ‹aHÓÔºœ}`Ÿ‹Š”³B‹¯¡ú™2cÁzÕa",JU˜I¶öé|òYÁòO3z%¶òøÕbÁDÎhòÊœÎÒ@æ?hˆ›r&æ4Ĺ²ù¼ 3û½}[E‚ ©jEža~’‘ˆÌq‘±PšÁöÃ乊PÞ¦0ñœA"+¸Ö‹döMEÔ®"ž™º¬‹P±]N¤‘öÎË¥tœ$6÷IHÌ8•Ðü ´X|pþ"½äÛlµUOµI5¯§cç~Ìa;樖ŸÞvG½d0@L0÷“)Vv’}]ãCþõ¯“Wÿõý󯞽ŸcØ`¾báº|<“¯xêÝçd®¦OýÔ(³L%#Ñ8*ì«“ÁKðF=TÌ& ²€ ‚Ë%âLÜÌNç¾p¶†”ÕœŠ$ Æ•ìP1†‹e>Íz\#v'Ê4 a·ÐBs"QsIéìL²ësá)ù2éPË‹(›¥œ>¯ ”ƒÒç›ãݨ@ù­ØÌƒ=wr;!ßõ䜱H†ù¡†²þÖ ðÙ¬Ï&u–!§)<>£½€þxB·ÀH!ÌW¹ßq)¨¤xQ8ž}ÿ×çÿùìû?&þË1/lWîe täå¢&¨S˜ZJǃA=Aå>€€ù«ø}9Òàe’\ ‡Õ› R QóìÛ×_¿|ŽPv‘Ï‹ÓuƧÈ=ñä‡?É¿À >wJŽ»#^fdå!_=ªáäåtÍUÅÏ“4­VåÁîî©;¹ë |í»ê}‡Pã$íuVÊ@xý§ç/éB]eåÿ€ç’ñWçëÿXd«²˜WÓÙ0ÏoÝ’¥%Ç„Wž¡ªãÜjЙ¤$\ùÚÅ¢Nsd¸ µ÷a5‚²­gêEå[¦¤ xúä%½Äz8M…¬½m¡z4Æœê<¦¤—ÚŠYL,€ñ ÀÄq—™3a0£ ýNáÛÁÀ¥•ë Ÿ 9êÜ,VÙh½ÑÍ|žkÍ'\«Ž_¿]ÄÔ—äy£ð|íWã‰ñÇîMPL’Üwt½âÝÌzböìÇ£Ôy{–Bu›ØÓc 0çn0,-®ÌsroàxøÂH’ˆ:D/RœcYðøIÙ„÷k¤>ëŸb/…} #$EÁŽ?,ò÷ÜXé«l±%vA½Ú•$JâÅœ Ê܉ž4š»Ü,£<Á®kñÐ5ô7·7ÀITžÏSìNÏgÃì½cù¦º¼nº`ˆ6Þ Èods%ì- i®l܀q»ÂB•Zǃm€´ FÒÓ|MŸÃ"0q2†Àö´{*UN9`ó´tòl9M/¬ç\ëû¥œ¶èÞ–Û1HË|%¥ê«¬XZàe¤ä»† „}¸¢ÊM<ÒóìƒäÇ,`wfïshö6Œ*çëåÅxw<(m[ÏÂ2Ú»¼*Õ›«3Æó‰tÑ‘‚Áu“yîÂE…`à ¢e]Â7cz%™·Y‘¢þ Œ™‚)£²†"„R- š_fйe O(Õ»?é†ð¹íÙgéFö2_dÕÍ‹e4Ÿ§ X38/ÅÔ &çYôÀw&¬†fjVe‡<+<ð*ªíµ—K¾¹2/’9•'ª/ÚùÇzïîdÚé5OÐ÷yáñb½ Íð …”8‘Ø^˜—y´˜IðÙøVLŠLeØñ®“5¥*ÌÆa9¿™¯Ë3k[cįúÅU2:’ºä›lrA¶¸`˜£r„}Ñæˆ&¾ÄÀ `ïä§€-éÎòGè½Êý‹Zšp1A¼j¹ÑDªé“äm/pm÷Ú b)o]“ÜŽÙèÜJû;¥çáN`voJ°ø8{Q 4Ü¡ª`Jˆ-ÓµTÚ(éfËÚ0*ÿÀ}3ç©èfÁì—Îß`( @´:`tD‘Ž¯Û“ÄƒÒZ À­9ÀÏaVï%!™Šh¤øRô´&×¹ò¢1»FG/½|ãVÚõΛX© ”w~½ã‘Ö4–<¹ßõ|Ö‘X÷*I„ü½x\³{ºëTe$½41/ )ß:¦|¼±[Ñ¥\ýdÔÚFÔD¥ÓŒ¤hcQH¥–éëzg0 få÷ °MrÕæ`¹/cYRß$¬sf›p<›Œ êKphýänåM«àš´I/òŠkïŸyz™.*wÀò”§´(vs^‡óÇSéÓUEr2íÒ¨ÜÕ/º˜oDKþ**‰:-À2º‡BGˆA|„Ç·«I¬ÁÁ,zïu1cd¢3…S‰ûê=·<%ò§y6˜†©ò™Yjy›pð—Ú‹¤­k®LÛŠ¶åWF"~šW§¶*–ŒZV‡i×—…”Ì¢&ftÏ6xÊcŒ"ß|’–ùT9½×2;ÜŽú“NÊb¾^e"¹ºµ'8Èy––\HΣï¯þP ïqŽ=Z¯èºæ]ï|rÈkPLAD¤VS@US <ÞÆqJJ*¦7c’c©•ì7+ÊÜ]ŠÇÛï‰R±*Tçuk‚ÁÝîÄÑs‡Þxjó¾ý.P\Tœâï>ý±¾&¹—ši(dl”"…¾CÐÂæè’¨ÚiËè¾·ßVbS¯‹bÅSv~Òxâ?£½5ƒœ[û<¢ µ€_nÏOÇlšÇï7Ÿ‰?òDû­‡i²^`•àß12*C¦^2„^¥:$ep@W pà ÿýÿ™oíö—Þò­ó½ù|ŽhBj¶ãH4ƒF ¾bEäñ1±Û£}ùw´w0º¼™Ä"Q8o¨D”º<(V`.ô© úâå']s LaQÊΜêGyÓ&Êì«WKø¦  :1ø— Pà5? l-ãZfR—l˜ÌL*ª’Ÿ–ƒ{m£ÑⲩûßÌý/«Þþ†+ã¡Ä=uüyuÒÉÔi§gy»´=u65~p÷ç™HÚ!1÷ŸéæÙ ö~žgè,ë´]l[./Qœ¨ß½@ÜÈsb–—À5ä°¹/ÍëšÐ÷¸„ªï8Ý펲 XçÚÃ䥸!i¸K°‚9æÄʘMÔœiˆCBKöï ˆŸÆø[ "8¨j£i½Ú}`9¹^}t*‡-F“Á ¼Jäa¤n.7ýwúè3 b3ŸÚðxC—;íÇ¡m~m„¿ádµ*Z' £V¡v„ê}£¶Ó´EÝà’ö c>8‹‚uŠ2H¬q|ZE«ˆ¯Û ‘˜aô·i*@C\ÆÕ;u#ùÅÂêœh²¤é|¯ÁÉvà|M°Á¯Ï&œ¸ƒZwµä,`,Kñ 9ý€zº½+…7¯¹Á`÷†Uo2`pˆêY„jÍa¤•ùÊÀbn^! âúÊ`@{‡¿‰®™ôŸ¢¶µó½}PsõÝÖ{©3DΑ™û„‚&Ž;-ăî”{œ>B4ù%7¨£ƒ_\æoò“yqÙ9nbh‚†êÞ£ý››.Ñ{5Uï³.Q÷õ9m¶Â}Ü Á÷c@{•PŠ2:ƒ“«($ÚFÞU. Bµ6àn>W™O¦žð”û³UT”ƒí¨\‚ȇ‹ý:•í”äûîk!€Ì?*m4ÍUGZGHöWox¼2[®õ¬ìÖûZ%é8(=>èý÷ŸÇãžÄudpŸ±¥ÓD'¦8åLÓ‹ÉÑ0G°ÃÑ1q!׺ÝÊçð´‘žçô·%El0kìw‚ÆG‘ 3]qÕªd*:ÁdRÑ9ùĦìU7‘tÙjçDÙ„·p»'|…ž§&‚\IlÂ!‡º†Â¦WqÎ8©° Uw5OÖ´§.3L¤°ªè• 5Ê0Ymªz+†º‚^Úüû˜Ïµoë¡Ïz1Æ#_Ô—ïïU­×‡âqýF#è ÷R 7ÝzuŽêòß//EmT_óþÏÌžËÝâ8؇O9icÂÀÜ£ ¦/僰ëM•¾‰Á>Ä÷IU¦–rSõ„ÏHMСO~ùiÜâÀdÔ)³Õ鸮¨väÅY:¡2ã&¡V{mˆ×Rx¥T·;a¾Ê¾VÃFý˜V\RL 4Šl&õ™¢,¥bPõNG.¸é²g§ŒŽ*UѤ‡ÀvÍzj™=EäUÀ>µ•‹l^MÂd Qåd>=µ̘fâs‡ŸŽ·oýd¿ªÚ‹"÷Ø8 Æ˜¯ üÉc¶Wÿib¢“9ÕëÞ]ð—‡âpòå%• çØ3tvZœâh:£cçF@‡¿ä0’¤$q'‘ÒŠ“â‡âì _–Ûá÷´)åÿ”ÏP[c¼à™„EF¶Žý‰ISAÆ%ãØJòùüÅ¡5E+1}œ&Ólý …R?ÑÅÞ®q˜×ýwщV•#Dš=3;°SÖf_gw¼lŽ×ÖûÅ2?çù×þ‹cx·6ó÷Æ®,­cÀHÕîÄÞrëF$fÀŸnôžÎ-Ó !·üC}ÔÛÈ•”ò êeà[©†‚Ú3n%?_qØd/ãy¸Fûµw‰6{~é¢AzKOm¾~¢¸´¶îä6M°mÛì<ŸAV×¶Û^“¸×¢‚¶E¨mÅ/=}ò§]g'+Zò­æé+=€#*0v£ÒL0 ÈUð"æIdh1FÙ##/2ú¼Îp0$yHúÒÕ…r·.ûSμ¼(Rt#­e{ÃPCÚ eA°éÔ’Ó o šeØ â–#)­¬–WÒ\£¾ ¬{e®B`ŒŸ1‹Bxî6T° ´}±QfƒPã—Ö=+*qwÀ†¤ Ã`«l1ÇàËÑM´Œt+…ŠRùÓ@8 (CÈL‹÷«´» ð]1—Í*ÕSîÜùž÷êÎÎ èù‚¢˜ÝgŽ¡CæV_ä°‹ê{\Ê yÞŽW.R¯¿JbݲÁe…Æ(¯¥µŸ <±íT³´!µ« ¹SuJÈR'éð¥Â³D¾/Ú¾¸·»%ò¥Ä+©]åoÅ©:åðãÓÓÄ'RŽ^–è T-9•fˆ&ÜHúÆ ™Q}jéP»pfºqù+ü,³éz‰Z†,¸Nïµsiß’{¦Bº¢YBZ—¢ãÖ´Cc[Å% yV> ö&–Ée†6yľl娿míB«Ãɦf) K”££»ý{ô?Ò¿Ý›»«Wx®xö6xô66ܶ:ŸÑÞ‡ãpm~˜$ûôËô ¹K¿¤ ±nש^]Q4÷)´6ø*^­' ¬Äœv°Í¾§µîjü aT¾%÷ÿz1¥lÌWð|˜˜­b¡>Ü)¨PÏ<)¦îðpnZÍõ!ðBôÞNÙP×snj›¿çþ¦(çîÍ7zèþ8ê¼?ŸC¸¸JÝ¿ÇíÇÏÀºˆÐ Áò}}g¿c5ê7yF‰Ã>R¶+°Ýw¨Â•d-޳íš-3[à Öwªndw›Ò½½Œ ¨Ñ!£º’ü9#ÈÅ,]Ɔ–™{Œc£ýOW!ùŒÊ!9îÄŠ¸Rä (êMà·J·>+›nb*±mYS™÷ߺٷÎÉÖ'Õ…Y>Éþ˜_°âO—¦¥•IJÙÞôÞ w–ÚlMéci†O%æ•[‰cíªŒÜ;+UOor‚F{É®#ù;ÉÝÆSt¿™š´2]×ÎB[,W?™ô§}äµ·Fs‰w‰g·•#wÞP‰Gû±ÿé“›Œýf¯/<õ³ø³m§Ê¤›¸tG1®¶fsxì<­ÔãѱN5ÝOBTÉ÷@P‘Ó« $¶ªƒ¢"¶¾ŽšIÜÇgˉ}‚M+§Ù}+¹ÊÑZ˜¼eŠM•t® 1P%dA]•Q äD -ˆF2”EŽVƉ$dN>î 7N`áf@·DÓ¬â-Mðéjj£"ÍnlêηAt\׫ÌMµ¸•UÊâ ëô™÷?±{´í¢qäù ã°×Dœ”±ü¤Iïõ-˜‹‰’éÖ‚¹hns„ƒh{ñæsÉ~î³9²B;u¶®æÏ[é„Ò¥}.›„[ѧzÑ@½4öYØé³Ø—‰»È<¡pYì‘R«)ÅdãöÌW¢i5prŠÊÇÍ],ÖÊ%îwLÜš1—ÙiºœQBâÒ 7ýLËÑÇHÙ]¼THOw‚X*ÐMƒýÑùb–ÇaP|iıRŽ€Hd{í˜8£P5FÖ*M¦Â§Ñ+Œô2Ó·KiGô¿ÓÑWÛo„öþîA¹{¿]>ÛëSrIÓ©9K?ëÐà5¿!îèHŒª÷©:4 •·•ƒÂ¾À.@Á±ÔØNÅ3­ðÛÌцӽíZí}OD•C¹¦gÙ”òïu°c<_É•JØ´Þ~›yá¹…wLÑJ˜V| bZ® àÁvú!¦Aî^¯5Ç{Ól²á2µœÕNSÚç~k ǨmXÚ†j·\*—Bûš©m–Í?‡Úðš¨cØ$˜æ9|¢èr™•Å¢ÃnR¶?'ãÍõHùL-ëÒèø»½½‘nÜX±¶åù¶M¢¡¸ 3Ù?nÛ%IT¥–¥Í Êg46mϪøQ,¡Pɰxöo0|ÿ÷¶]tw‘7G+ ²/t̵ì+µ›úSV`<³4(Næ¾®¸¡}XÞøÍAònLv^_A̬!²±4"uRJ8QÝxÜF½qËK£r¿¿«xüâc»65ŽšœùÊšµ«àëÑÚvAwãj¦bæÅrâã%'vU6-à¸ñx0·PÇ2 ™„¥ƒ%äìùÐÿÏ9?a ×‰jo?-G²ðœ "+?¢ÐCþ|b>ßÿÔÎê캴òÖ›uµÑðe¦Ö6¤hχ`j%ÿüú¿~ìÀLÙÊz®·r¨%}¿ûá4œ|öüoçÍ'KeQ¦UƒŸ  F!?‰‰Dº²(·ôÖXä`Úê+¶ÂñJàc‡;”-CïìvÍÏó¡ýÖåN Œ–FM?JÜX»Ä!l”<>â€À›Ý啿[“~ï;Ùm¯ÿe;¿Æ_7o+ÁœE*ǯ„›<™3ÓÖWü.ö1ü*ñ§üé|N¿ð‰§o˜ž.¯Åä5®ÔÒÏd‘“äF_¼³_k5?Zõ†$ÄMLà¬X÷4~×4ÂAµÀQ"¤ž S>ô}@¡Êì_7Ói?ÊÚ$¥ãþ‡ONÎæ»˜D2˜ˆ`Lµõm¥ê™›W_žñ'É{4ÝMù½bçÎçøCpØÓzd`ÚœNÓRažàEE ¨Ùsä•ÓÂz×_5Çyh˜Nv¹±Šž–vé sËmù›L_—G÷}oóÚ#Ú°FK¾Ç™‘%¡n-ÑxRÓH{ģܡÔíÂ¥½°9˜ú~1ÒÞØ²äÆ«…lUx!çX„ÑYÔ‘BŽØ¬ó‘ÑÏœpžNÝ&'ÈíèH£ƒÝkbíøµÝ6{ê}qõ=¥J›·ô¹)$…‡‹z%Š|a.8¤Äg«8òºŠÐA¯S-\\B`?‚ƒ{iˆÖ²ùIl”áÖ¶ ä˜‡z@ÿtÙ°ŸuÝyíÂnúqHå¾i¿©ÒÿͬµÓãÐ.l*e ð ³Å¬×û(W—'{½‡×ßÅ#S;È1J¶ömÐ$öŽûG#ü¯O¿õùwÇ^S( ÍÆéôäÇu«]#Ð1»¸5ä0âך=CI¢ÑÄ ˆý( ÷çY«kƒšÛe;agxX3:\Vo*㲓–ä›Ò&|F°uó V—q·=j(œ£\ABB‘<ä$j FІROà®Úš?ákЫÍȲ×Rr¹´r,BüT¨~@‘}µ¸újd,1YF^e½½kwóòq/·XŒ¦5 Ç6­¤µeÜÇý¤•·¹ÍZÛkkˆ§‰x±E&ŠˆØ=ÜFÄTÞ‰åJí®[C†$8HC¸úëfZ0ï‹›¸!q,Œh'”7 ŽÅUóšGFÁ–åÇ3¶ÍlkX ›[¦ooÜôÖæe~ +£'Ä8ýB„2À~1B™Ï ¡TØF'•˜·ÑÉæÝÜÜ2ˆ?‡ÛÚÝÖZH–0Nl'y.>ÂÝ—ÐWV”–§»÷Žö"ƒ‚éAPcÉ6}¯Š¸ &‹µôÚ{píýÆu×%™°)§?ùu2ŽÌpŽÇhžâbeàÑåÝàÊÜ&ÂpãûïµHì›T0Êï¿Ûj; mŽ~תÝÌ‹âh”ò\Øtëz¤ï´(Ûšl™Oo,þQ#Í3»;ÝÝÿ]Ûäî6N¬|»¼†õŽkžVùv ªZ\þð_™zižÛ gµ*˜ô¯13ÿ¨9©¨@a¾–>ÂkŒ&µY½äRLø k¾6‡içK]«xe­ÏjDHìž ‰–%£¢L/!dÅpj7[eÖÇuÞ­:DÒµŠ‚îÛQóºó|¯µîò¨åSc×ݼ§Øv¯4~)ÙÞd,±ï~iBì˜iÆß|Ʋñ(6.[ß­P»Þå ùÇ=Ú ÃÝä: ‰Çš¦¦Zä„ljÍ‹ª¹y©Égl!F¨}ÿøvŸëÙm0Ä6ÃÍžˆn9á´V )B¹ÁSÉ£%—&O€â$È Ñ÷–Œ¾`-„p¢fÞPœ>äü8¹†"Aϳ$¼ OÕºÔ¾£ ŽáÝ;¢ ƱFâ^ôQ]R¸à.°dÂ$š¨Û‰Ä'®µ£6|×Ì<{ZˆÃ}-3èx0sž¯Vs®ôâZü%¬ÑÕNtÚ©Ì’ƒ0øw UÊúÄ*>ù., Ž„(ÊÖ¡ŒŽ\³—|¸–ãáé<$=¾ $º¯Y ð9!ÇuàÞûàþ¹ÀŸŽ?mÉyɈøe\81‹>žçøÕIW­Ñ½×[¤¶ñÝÿÅǧ Xçw’³Õ-·Ùi˜Žg•R&ÒNBe7ÆRXcåâPÖ~9dîÉ"(†&¯,®'r‚&jUfxÞ,¤]ûZ²š)ŠXˆeg±âˆÁž£Æ²<_P—78亀 ã¶#žö'ýdŠ\ä“Ó~r–ÿô¦='ùnÿËþh¿](ÐþZó(» ²«û߆[p¤Òëæn(5tsWÔ‰ÍøëÁ¦àé’É0{"tÊéÒÿqíÀ1®}£eÖÈfÙå6•jv¥åq¯J”„%![¥£ÜŒÜ &*hwÅ.Ö~FûͶy”í)q£^o $Ú‚ªð»á:æ$A‘GÔ]r“È<Äz‡IB^+^ûI!7‹\Dò[¸tø³ÉؤÍyWI%¯¾d@wú¼#\¨Ÿw¹t0Û+^•ë-JK¼§ò¹÷õ x#+3¿Xf'–ç]³ÏÙû¦Keù×GÇú/SºyѨBå]N Ô×ã`~že,×'¿ü2.®eÜr í2vúþ=}­ñ8¾¿˜³-éSŽ0Héº^16¶šSØC«bê «Gïo[Aáç)G£=wÅFô¿ßý¶ÿ;'3ŒZÂíå·u)X$#µšŒ2<¸›\ç¦sôà~?yðÀý¯]6è>yÚì±'@žÍÃŘ=Õ}”pdÑó9 •zßrß~ÔL}¦ÕÛRˆ´È% ÁÓ¦WÓ£Á;Ä=nQ$:‡x¿,ˆ¾Q?‹!YøÏgÚYj­-YbÉG‚”¿ÆI^}aw^Vß9þÔßþZyV­éEóÚYqžÝl|xc×­ÐÅYv™µ¾»ËôÕÑâÿìÒ_\r5Þ5†Ù&¿ï¾±“aóÐU¥bÁ&@± .2µéè58ÈÔ7XßN°^:æÝa¯dIàVTžó”¾Úxo¿Uˆ»¦LK÷î6 ¬¢V8 Ý¥«™ lmVP;ÇŒº‰÷øOAß)“ÙúüÂGÞJ-­•»¢<»%GY›oy­5?J·ç޹_Óˆâý0쟧^5âCä?ðBÇ5š†Ö‹óÂ5’Cñt+8×¾Žö¯øéÈß7UCu(퉛ª| ØÎMsÔÄ€ÎÑ?ðË?:Ç@À¤{Lêçê\z½ù>*Íü #QØÿ`•CÁøQå´¬œ¦ˆøÝJìÿAñZ*ãÿÐXÖ„.áO£AÑRê/¿ut>+¦kï»L=Ôž•ªú§×ß}‹Có÷ï¾õbÍ ~†:D‹F\ ñÿoÁ Çîšbì"'¹Q¿äw¬†ÿç¸r±>uÂ]ibøûNO;Ëë”­Ò|C Mâ•6_eË<çeV«¶¸Zg«óyµCAÉÇZíº…òó"ÐÄóôâB]@¡QÔÀø«Çÿ¾Ó‡\ŒëœÃÍùß竇KÿýÿÆïÿ»ãüeê—C1£‡ãÚÖ˼müN˜º¾8E¡:ü”ª.—ÙòÛç^>‹Zó¢Ôôdü›÷ïñºñÃmPô|Wƒqxùðt›À“ú½„`³dB{úê¯Q d¡›k–r%ø`r´"ŸóÁ©ÄÐ@ö¾ÈV„!\qyÖ>à<4X®ó`[¨ç5—5”*À‹Ù`ž/b4 Ûõ¡„Ò<ÚlT?¹ªHàÀ&³Õê¢<ØÝ½¼¼žÅé<ºÕÜe#Éïß>r‚ÿÞëØj…¹L»‚O,¨¥ï?t¸ÁÎAç’[ÉOoßùT¥–dûàðþoö÷òÒýç§·¿¹{1h´%sªÿÖwGGçéòMŸŠ±¨ßÑ]`•X()²œ}©¾{•\­°Ùæí¾ E\¿Å´ùÚ’Ãuð>ù*¹j5qÖOÇóNxøõ†®“ÎWîH/.ŠÅÕy±f{àÉö_íÒW®Ï_7Žï+®½úØ]#ËU÷y1OÎÒ÷ÿèôºWù»êË!¹¹_ ›_ÅeÄ-ó}#­ó½‡xp7<©cm-4íølÒɦgM­Y/qòßó?9ζS&‡óÌ ‚ͫ힣–vžïüÃýìð;ü+½¹ã^‹=('Õ.›³¸ö”³OJ­PÔVu§3~ô—î¯m·|]p'ÀÍd'>§*£•êBÊKJCšD¦jMê†1å˜ÖPA:„—üzLG‰1huÀM 禰ë˜k!¡ÄcÎw2ÄŠfþÌ×½vœÒªHíó¥û\Õ­†; <­Aß?EOꉶ$¦;½°…dUæm<äm|BÛØ—áÚ†r=Õì¦!“‚ˆvºÜBè÷€Àe›5íp fCæêfK±ûÓVÊZS"–<ž®ðQá“$1TÈŒÌJO¯Ù\ôn\ÖKƒØ¼²¡ά67‡H5ýë %1Œ"eçØ«B A£&B§ò1Þµ¼U,²úKeµà—{udjO.¡”ö[¸·Ñèö}ÜO?ê'_áۯة¿¶MáñcÜÐéžþŠÿ«@4zxâSçôpJò÷a€ü/³t%lªýZ¨ß€}c Õ@ ¸ó_p_\M;3­t­I²7¬NÖg*WÒ‰Òâ¹ (ý¯ã´¿¡“jï7^Hm[)ѾÕtGl·XîºÃ·i zËþ½¥„.JѬ'‚k•”æH¿k¿ï©{º¤´ebìp¹È™&Vܵp~tIH‘å2g$6J× !ùðS*£Ói,hH¡ìnT*ªÆûL– „7Fg¬V2ÖçyW5n…óŠÕ˜}G„“ WFÓÞõà/h³ ÖUb§AÍ1ª%°É*ÉE:•7^ä—µ½°™–·ûÌ¥,8§[Ñ£u-Ž©T UDmy’­B,Ò#£.q•fƉªž—\ô‰0VÕÓl±vRB…8AP}™KÄTø´K¥æäE¶œï²ô°ûr=¹JòYîÄâX¡þˆÓüãyzõã$û‘¨“Œœ'©ÛØŽŠ×Þ®²­)Ö!ÐX§@8ÙE΂‘ÂÛ#ë^VÂl€5ð…ÈÁü ­Ö×,éìîvN²yqy“Êqû¼òj¿iqHmBPÚ˜^Ð5±©ìÌâïçub¤ç=î3‹>iÑÔ¹ãf=¼M€¯Iò-CÁGò¯­@M³hu˜^˜èŽèç€dm °=ŸAÍ»w†#È˽é¶9ôn ‰ÁI§Éîn21ògƒò¡n¡„¤cR½Ý¿áýÞh6uT’:L3y®jLân'UVÇ!†A¹÷¥’Ÿ° àÊ÷tíXc«tRMÆ£±˜¨œü¢Ð,W“É_¶’—G(ÝN»Ê‘­î:+.“1àÉ`ö`ˆúd²Ð áf+ƒ÷AÍú@¼RÆkuÏ‚{7‘qdIª^ïZšÑïÚRˆF¿k-Ä·­í¶&ïíǪÃÙ;‰Ý8Ás½ÌâºÙüò_äËðô”̇²˜¯W°ØkŽ%·êç…Seˆd‘Q`IЬ4&°6níçÙiºòjL'­Œ¤ƒ6zëü™ô`Z} Œä\¦¬$'T…Cú¡fK;ßó÷›+`ˆÔ‡-è[½úœ Bú)KÝdTçÆD × ¯r…§òU"…!yxN”,h,Þ2ASæC c˜4&ìB–°7ÙÛšžå)4Å0ã^C×n(‚s‡}^’@¹ÒAì\JpI/d‹ŠpU`:¥µóÂ“c¼ÿ5Œ&€FÑ6šrQ˜.­`+[îºDÞ$?=ͨ(É½Ô •¿Æ!ö‚÷<Ÿ,Ó¥úÛºç ÀªÖS’Êè®!9L K/—”³­ƒÁPÃÿ&_ Tj§º\‘ï–`U(©þ¢¸Ì–`•dc’†&¨êîØË$Èž¦ù¢Ïñ h–þfìý‘þÂ2‚¹I#‚'9»›WcK-w’7]_Ït¿æZ¶µ è-‹˜§È%_c=õb¾†gîT #Ì(R®\2ÛB]QâN•´cÃ/©mÙ{w|G©ÏAÏêûVwî¹/Ü5×çnX®ú¢ÐžPg9"z”ë‰UܺœH™ ÕL˜d¨ü«”[jЩ-GÄ—`O[—kl¬Y†ÜW2dcÍkÂ#.óŠ£;òêyÖ¥‘n‹–Ž-KqC¡ƒHÔx»Î—Ÿ¾K3ä¼Êgù8Þã®ÄrEE×ZâSvÇâ,½à -¯zô‰¥8¨çEqÁU †’ 'Â.*l©Wžì&Z<•!Ë9܆Ñi$~ˆÒ•­¨:O¹>Ey}]ÖÏnŽˆ¶êUÑ÷RŽSèàœsg ÉÂíúezÅphs£—‹Ó-ÿ¹°Ëª¶äy ß'`Gæ02ñ‡³‚êbªRìv-'°Ãµjœ/לð™°ÿjL «á8ßmý~Lþ±ÊmCQÑœÜÄzöø¶{øO¼N›Ãfw:Ïã8ØB05“ùƒÅ¬š“XJ3`pôÊòÁÇ„)&úÔ¾ü·Ìߪ)_ëA¨+3Ý ŒŒú«5Çp^3-Pà ”p)ð9çʤˆÿŸç¨¥À»0¼‘ˆœ_fž½ÀíyqŠKæZËNºv·çRì ÄÍ­i”@bJµ±`!w¼ Ü"Å݆ ·†–¼m2Ã2Kç¼Nð9 î̾aOZCÚßdpV[æ ë² |J™€ûÜ pÑiL5ðÍù6É¡6[:!Çá<‹Ûs,§,£Î§ãZ›L…fÂužÑ3ZõÞç§Å¥»=;CÍhîÝôkòÝôÅýÖùô)&./8Z£­OÈ”õgl“ÔŸÒÚ[Ó“»X¨V}ëR×&ú©½ë,u}ò•¹ÓUæOD?¹M‹ß²1; eS<ÆcY°€{ÙGSÄ6Ÿð™ãB‚NM®XÐ"Ök]'åÚ2 CwàüÛÇdH[B@¸h úÒÔ‡·¬™Ô}êD®•DŠxðó‹ ñ]jÃá2?…`ª)gñÍ$¬—‚åV,8¥‚eJÁÇk˜J êš–Æ ¹!6òÑ,paG\¬–ÓÁj…F§Ûy˜Õ.{Ó»§ÎA×Ü¹î ¶®w+ZÇ÷+Ãúh¥·îBéÝR. 'ùÝÄ\³³'%è÷î'ÊÞ~¿Ñ|0ÚS’ý½½V,’ýÑ^ƒ}kç*V|£ÔhÐ 4`޼ÕÊ•—¹¡ã¶·#¦õÆ_˜ë€f7zI¸öŽÅjìŸóFr†uð%9-ÑÖ ݼ¡X—”e"ÕˆÿHÉ´€WÀP¾5à§%Î{Öê<¥‚¤=·øŒ¶}rÍôPßå:RĵT‹q=ÝßlC¯<²GN½ˆèB¼2#Šwm³`Xò£$6·QF»è;'´ÌàEuɽ*¥ôI¬ŽŸ ëú¥Âa žýˆ·Ïç”ÚÂ&ÚBæ”~Q«®`“Q'ËÀ¯À$¨+ä-Õªæp ËΔÌCJ‘P|m5n§*©SÚÓ‘‰1`®¤I'•££}þ3oå{âäûÖ~£\f¬‘08ʪºÚ°`ZL@$(Ö÷èÆÀnµÉa*GŽ\i^a G{Çí%²XÓ?r¼hoS•.Éœ*=Ùí·§Y´,ú{»àï{“x„?Çñ¨¢û£É5ð’ì@›˜¥ä$³¹H³.H·‹Ó’%†Ù$™68X7W) ±§Óõ¹±œ „BF‘½“H.¡hrõ&§Y"Df’ñÃóIÆV|_ ¥$ׂ¯aGò•뺻÷o+üÕ«Z-jñ2c÷rðD 7Vßõ<(.ˬs%ï³äÁ¯ŠU *§Ü#{BÅWé§÷kÂ!Ëä.÷‚54ŠØv,sJOã…Ðñ‰:¯-Ú$—»aÁ>šåмÍúÓÝ¿Éãæ‡o’à»mSÛâ÷½µƒwO2ûƒÓÁÑÕéÂ¥TOøV›=B¾¿¸¨¼®šIÔb%¯7z †xÙ§°Æ±Ùït—gÞ_í/O%›8ÁVS ü&Èx¨þ„pÁÐߺˇ^"H—‰õdu¾ #ê•»Ž–¤ªûpA7¢íÑM/UÐ…zÇ|Lò¦R9Y¬1P6ˆ!ÀV"–Û„lœ>}º@Ò Ô43_©ÃNcåè5¾½0°ÓLwløŽå| +—ÏÝqB#ݶPLèÍäQ"ä!šWÌ ›‰¢ Þ&IMÃ$<ÙOïзÀº ô§á꿊AtÅ/!Bò‹›Ï,Ë`£¼Pƒ‡Í•åd'âìñUîÓ@¹]ò”fKJ®3#ydè­E3VÒ8Ü¿ípsb8LòY–ö¶Xö;ãkŠ+z*iÔW+¬A<®yÛb¼¡¼[ 5¯¢’N"ò 럦•‰±ËŒ†ê;”³ŠòLãT‡þò¤ Cت]˜î—P'ÉÏÏ×+ö¸µgÀÈä9ʇþr¿þËQÓAÒ– Vk רA¶â¶®j€#oˬâgiúˆ^5^¨/Šþí+Q›V(ECˆY„3pY¬ç³aòÃBn%…o»“ÈåÁ¹—iù†ÔåTK“*;Zóï÷Ä€ãàFÛæR«WnX˜ª)R|×4Ó©q0޶“.a•1ã¤XhÇtIÙT~ÎG»ÑjºANó¥xû%3žÜÕð)yß©0õB ¥¤aâ®Éqç ãò¤DXî’ÇÒ5­8BíªCÒ[zÙÝÉЉ>¢ô‘5øÂ4óvdÂcà ˜šE¹¦Z'Tl^SôZw¦fYpŸÚÁñQžªa1›xLhø0N0ÜÐ]ì<Úé˨Þå3a›õÅÌIvÖ ^øˆ7ÄÍÐì& ˜ä7øÄ‚QbsI…Ôä]§‹ÜŽ’¥æË0Ùò˜%7ñJ¼ØV•Àù%>:ÁªHÌö#ÖÇs¾U£c˜t®ÅIŸU翾˜¯KÇVkä*Â^RžEàŸKöß‹5ͼàãv„ÓOÜBGBë Þ"¹vF#ùЙ bu2è·ý½O;:4¡´Xô¦ÄkãO>ÒGÕËÉÝ”°ïâ¬Ò„±i'TòÓ×Ý¢o« s[ù„çâÆÎIœsÔ·«÷\õ¯4AGˆ=Ññô¥SP÷åV¬é@}AQãúïúï.ý÷7üûî–;݇%Àƒ¢|+agÅÅ#ò‡0Њ‹Üóö¸·ÜKCrdºaBV°iù°È«qNmT×Ö5è8 ÍMvÍäÞ~«5Ó?ÒXQã)×Ñ2ü§îZý¶X•Üã3ÑHC‡A›Y ‚ö ‡¡ èñ±Ã?V#¡Û4]“þñ· òo:_féì Q® 1OEe{ j,*ì†R|ïš¼ÎásŽí_,óRÒ]ÅS­-‘õ ·•ä˜G×½$låÞ;Ò*ºCÛùó_jµÈ …ŽÎ ‹ú\Œ±~¹Ü@³¿YE¼iÓ³YOÅ!}l):G0XðcÁ[æä!¶ÍîYÄl§$ÿÅqÅ"L™qékÌEY)ëB"ÉqþSå]Ï´ËAr L!N4‰¤Ë¾åðgêÛ[!­1$q»¯õ!ÓwqrÇß ¡~ÔBb/øpO“ˆ Ãd²ƒ€ @LK™uç"]Ù9á>^0²Þ<£ ÆÓÐ-0šì}6]sÐ7‹7–€ Å)'‹NÁŒçWoÖ3–à¨õÈà£ýÄ’ÈJh‰a+dÕÀÓ†3¿`Q14"JWŨ!²É"(tOƒ±\³ôÃN›•ÏKÕ³YcnZ /óhCI¹„TÎfQáOE]àñ*Yï໎j‚”ÔÃ#€#Cа´ò•8»¥#=ëâï_²“¤:¥Wáøa¬a¸ÖUå~ñ‹aT^ÖNð)„¤,]"”¤õ´;õŽßiia ½ªÂ[)¢©Tfþ”®4sowW?-|Ï*8¾·ÅJ¸ö%Oܬ•iè\mÄeÄ'Å9îáLìµIw¯;k(½Ê¡Ü¬‰ÂÁ€¡L;®øoÿï'þùéí`4|°ëØ[¹+ »w‡¹ûn4¼»Ë¿¯ÎçŸÛÇÞÞÞƒ{÷üûåƒûôïÞ>ÿ½·7º{Ïý2º{÷Áƒ/÷Ü»?JööGîïÿ[²÷sN´íg ³»Ê%dG‘³–çÜc''Ú¡Éì%þßÿK~ƒÁ­3'Ê!BãwªÛr—nÝr\à â*­ßoajðjç X±Å‹Ï!ε#Rö‰D¬á²8îîþôVª7¼së–Ñ’/Y‚|½9ùQǬ3/4")ðÁbµšæHúMæ\Ý;Ò% ˜ÜÂŒ‰JWø­¤¥Œ«-Þ*x?là8Tö 8â-‚ЃïqJlòaÍ«´sÌ72†*òž¾{ KÔ €-æ‘ÖGIp—Ê×¿Ž‹ Œ>“ÏIœ‰^õf‡[IŒTNƒ{YXW©]¨â”5<”Bjùöˆ ‹’m*‰šZâ\óñE.(`€*‹Çæn¤ÔÁ~!+ÿ-3owïKÓÔÕ¾jE|‘5Á­þ¬Ð¸$•¢’È5I£¨+AXdý§wÝÝz:_“ÓNVmUœRÆ´Éúx¦–¶åJ¤ (œL@$š“D$s:K 9ÇAâ&7„Àôˆó@JocÇ‘-¸ 8àHZ6‹ótÐ(ôωȬM®kEbòÆñaòÜ' éöª§—2çÁÑ+3M ÁÂ'œö‘™èr6§S:û¦¤½àÅd…]Oé—Œ<¾H|Dí-£Gif•ðjtê yrã^EáðkÓL5’Ú|>Ë%WÌ›û$ø:NÅ”ž‚¡Rö2Phçï 6ô’o³ÕNXl‚¸áÄ!Ç/¥ýèNÀ²`ÿ§·ÝQ/ `ðxi YãvZ2Y¥]ãCþõ¯“Wÿõý󯞽ŸãŸÞŽ“£¯Š ÚäÇÃáð8ùЧþØ}N0ßô©˜|OËtQ’i†ÆQa_ÇâÁåÉ¡b6I.Z®= %¸ZNçø8Æâ©ú@~üJò…Éñçnª^?t*ü4ëqøôNä J¥k„:Q[¿qÍù€Hv}.<%_:½-‹iL6ÿJsû¼2°Š”|'d)½õã´c·B‡=Wº+[ãråH ÙŽ Ð kެ¿*y^®ÏvySðŠ@ÓÅ(dB¢Å„¸Ep•û—1UGD|?zöý_Ÿÿç³ïÿ˜üù/Ç`¼|°ÁR\’ñ3EÙÒ²«€žvžÒq`Û¤'¨¼4¹JÒ•Û;e°ìÒ‘Ir|«'6k.Q QóìÛ×_¿|ŽPv‘;5pñ)rO<ùáDò/p‚ÏÓ €l_f`̬¹ è*/§kN¸9OÒ`‚Q(·Swr׆q]BM^–(/ÏÝþðúOÏ_Ò…ÊøíÉð\2þê|ý‹lUÓáj:æÙãñ­[²´deôÆ¿g‹wì]“l‡ŠÕÔWŽç“bQ§9Î|m î-o© ¬_"P8J¼(ÔÀ$Rƒâ"ŠS{ˆù .„,¨žÞÑ!õ&%íÛÆ2±tþ`é‰ã"‡N”n ¹V ýxfU¯7ü(çO#@Söƒ‚ÌÜâÈé…†»D3VVñ¤--°jOÎG‹b™È¡òts'å|½¼ïŽ¥ |Æö,­*ÜRÍ+a˜Î»‰¬öå0²ÔSQùvSØõè›1½’hSXhRšÀ2½P«˜ÄK;‰? O…Wè„Ð¥­CPi¨ˆˆ ôÂ5VÄ ™~Uûv‹ú2À"ÕÞ<…˜9éÏ8Ç*¸â4¤¡‡XÔ€¶ ”+I©ØÂ¯ÂôMǹžYw'ÉJ”í®~GI¯d®_²U‘YC +,vxM¨ƒ/{É6­— ïÇñQ½0ž*AMW¦ö±ªÆƒ©°½ôHgsbÏÕÀ]Žð™XEtüAÌ_d|ZÙŒ¹¦(Žœ ’½„TV¹Aú!ÄýI‚hÈ7aó?ÙKG#ÕÍ‹e4Ÿ§-4œ‹bêX×y=ð݆ R?‹šUî’ŸÏCØ·áçHr°(­Ë)…Û˜Ôj zÀ"nÈ7“²HI‡”`ÜLú"ŸrT9·$'ä»q¼i9Íóhž©§››&xêÅbpøêé³gÉ‹Àë¡lIM?¼þfðÛ><0%kÚp¸|¡–›[˜¶Š¢˜êÎ?Ö{w'ÓN¯|‚FÀ‹ˆÀ¹°ˆkKăöU=Ýr°–&ä‘™5€Ìð™wZ`p)V†]gvY—vY%tÚÌ"·—ÝNéB`xÌË dž7ºË­8s ŽP*×#Ué1HAà[©Lï}œÏsghá9ÁO*ˆ¾®Ön…U:C°–nyÑê€ÈN£ò@e… —§œiA…]©×a‘˜gGH")ªˆfà˜ä6øFZÛƒÙº÷ôÖ@÷pÜR  „ÿݦBs!¥ïÒ|NJDTß«;kg ydcÊZá“æÅ·'i™Ouu¨Õö€·-ÅM Áy  fñ¨GŠp.³©éÔ m?ÿ‹ÂN‘‡“Ìj‘˜Swk’[h½`ÕÌØ¢4Ð|Á'râ¹eåj Àpɵ§ãàä]§ÛË*+< ¹†Ø” {ÏÐ]m!{<]/ç7©Å;l1þÌ+}8¡ç³_µWk‚ê£Ñ­{í·øOþŽ‘(ÊÝŸR°Í¼l/Änú&u<‚£á–uç¨ö¬g*¼å+¿¿‘‡Æ'°°åðMv¥¥¾­y›šÜid¥þ÷1æ1 c9¨Vk¯Ô°tÿ›ºÿm©cy„‡÷Ôñ¦Îª92ŸÙWJ@ÝTØps‡ƒýƒŸ§Ç:k+ Š”ªÍåÐXž\‹¥Cù»à„c'FÔŸø ³Mž¨|¥ê/ñ ;N.ºã“Ì£¬‰½ÔÒ©”ÿåƒlYxSÚß]eJƹc62øSÍd&fÍâ™+Im4­w–¢l’^œ¨R­ÆN>Žàô‡ýäWoÄ:þ»Neô™YÜÀH6<ÞÐåNûah›_Ùo8W-MI¨¯„FZŸà-«Žû[O’q2ô‚·ÖN®´2Pß›ô"Á¡hE@ïM$ÑÔß,¶NXèÛª¨jö£#±Sòiϲ õðK‹k4cåûWÃëmZS?áL¶&]˜ql=›­Ibö”álˈn(¢ó ®/¨‡»Œ‚Ýÿ™º•Šî탌ªï¶^! RÜÈÜ'äT;:î´ ºãåCÆúpáñK€øépQÝËüM~2/.;-Å\¡Üù&h¨î=ú׿¹éîº×o•nrw¹ï¨Ïi³jùqcB „Ø!E éet'W‘ËÜzf*š²”L(´/ÈÉ'SÏ@xJˆýYŒ‹ÆÆw@§g!<@,+?,ò÷\÷Ë阰|ö5÷²–YÉ£JccijÚh¤›K&Èã•Ù2ø¼²“T‚f Ïj´t‹±Ãœ¬ªe•ËêAÖØjÛF¬òØà™]ŒZ-ù¿Ol妈pñÚNŒÙúúê"c¾õWºôoYê•«ˆ÷ ZŸÑbÀ °â6Äñ0PñFU0_ãnÂ`¸À“¬aë“'èwjbP^déƒpFU·XÔ"TV±—:¹…Äu!‡äå'¾+®ža«\zéË:8M¬¬›É-Ý£“?{„²c[D}F\QÚd„"¢”?G¦OUðK€AßÛK|v:Ïge¯Š{TÄËOÅ’l„}>Ú·~&¶¢I›”ÌÁU%eŠŽ7#T—ºo}zÖâï—îxZÉeôò2«ùVööjk(UB°¬'› õ-…a°w#$†êLÉýEáz*ÏPtY~ª‚¿Ê׌âkyT4Sâ¢Á~oÅå"y»N¹n¦ûL¨¢›ZfŒÂGáʧÿþóxÜbG×ñ}Ðô‡$Ê`ºR™àhü…RŠÁ»ÖíV>‡ù˜Ô+²$—³Æ~€Ïþ²Š9b$ðXêÅÚ=HIjRn·ñ€µ,Ô½Î$¯lS«Á0 \kÒî _¡ç©‰0P›°ÃY—éÅÅüªžxI¤ê¯ã®jÊšöÔ–b†IƒVÕd gU.LV›jb”F/mþ}ÌçÚ·u‚üa½ã‘/êË÷÷ªºé±ÜD¿Ae[¾ëEÜõï±ÎQ]þûåÀ£¨êkõjaÏånqìçì[°ta`îQ®¥µ4|XvzS¥o,]zó>{,å¦ê)Ì" U¦^@‡"÷å§q“”„›Œ8P§Ì” Þq]!ÿy~q–N²U>5el9Ÿ¾*%IùXá•$l''ÌWÙ`Øh#‚`×ãjƒFaÔT0òËez!XäT^žn:*RCÙƒvI,ªc ¾¼û)PbS*æëÃ@>|2Ù‰™!e²iîvéšrŸ;ü|p¼õ€xk ®W-Cj8c“BJõ–/³½úHÌ©^÷îº=.ö¼i®›å%•øØ×p»õmV_4`¼Ò±ë+¼«û%ŸI- Ž¤˜DJ«ÛoÓ Q6·c‘bÿ§ø¬Úã·ÈÌ ä(rh´èO²iº–\SDäRu&@‹‹dІtkkš­¤Ý]ìí‡yÝhU9Tˆ+ Ù×Ù/›ãuGH‚}±ÌÏyc¨ÛŸÿÒ‰ø{ã W–Ö1à $ €!±·\cÀI€q ®c½nzOçé…YþÁżÿŠ‘1ò êùJw uÑ"ùýMM°&ºÏÃÙV«Xü¡K´ÙóK Ò[zjóõÅ¥µu'·i‚m›Øfçù ²º¶ÁôšÐh=½ì´-Bm+~éé“§é:;YÑ’ŸHòRTÜ- @6)͔ƃH5/bžD†ÆñN²ŸÙ|tÎŽ‘×gRÄIò`†@Ea}¼G¶tw¶ˆ½­HU=SÜ …kâÂT~.õ<©YN«"n©;ÒÊŠ«,p°†EÆý-uEÜåN9ÍË%bæQ—àÔ¢§, á¹ÛPÉ]ÐöÅF™ B_Z÷¬¨ÄQ: Fƒm¬²ÅCÏg³ÉOS‰†V`è ϰRÌ´x¿J»[ß”±ÝArçÎ÷¼Wwîüoö¾½¯mc[ôþ>…ê° ¸¶üäRÚBö $M¡X¶ePc[®eóhÂw¿ë5£Y²MBzι¿²wc[šYóZ³fÍz²\[\„%• œ=£K Äßr“Y‘Ÿ¬ÇñfÐheßÓ÷W±8¦èŠØ1 EÒ¡ýŠKœ 'a–« «»ê‚ŠÌª¼`(ªqµ+þ;+,%þiãdÑX!*[•ŠΔ 0„Г‚¡ý²Ä¨ŠÉ@´»†!%’’ýðdrÕ[3)•—yd’â¾i[¯ûÈ1]IFnf¾ˆ¬gÒÅÌà©ÕmNË!QùŠsZ+Ô§Üâè %¦77™i-¡›¢› 8kv¾Þ'û0?57*}im:5úâ¥Äœ™'‹\âºX%½<MÑ8›ì>Ëô²8KJ§âiMP4ÀÑàÿê$a$/š¶@±þ°å ûJNÇn•á•D mµÆsR!N¤T˜}Û&‡ s1’Ù}%ìuøåzS0§vÿ…váÇiÉÕs·|ž¥Â·Ë Œ³L±„÷“+»Ï—¼D“~#Y漘ÍOOx’HÖÊ™ç1†¹¾d´®å\$ø¼Ç\WÊN &'ïÔRç{5}Ük“ÃU¾ž³Îû‰XìÚI”d ¬b"ó/±’'¤%«ÑœÎJ›8O,0o|êÁé&9ŒÅñÞŠA¾5RÃ8Ÿ¬½èÈÑ*u³1µmÁ(² ãêàÙ!] 0òÉȹ ¥=[د¸SЇÐ6J@Šð/Ÿƒi0‡öTPùC¾¯b¨ÚèGVÚ¼q.5Á”*fÄXéÀµË¶õ`6QÅDÛ™ÖÊUÆ“Q³X¹NcÏ2«fK,€à[[˜$‹Ì>ÄN©×É©ªÙ¼Vvû§udÓj«ÙÇdzO9½—Þ—l¬¥—CRÞ›& I9§òáE%~=4+°–CB9(õ=ÔP¸6 Úl싃Â0+µíb¤JòMWmnÂ8r5VGqcÝÕ-±lbr²ØªIs¿É™S‘« qVX&Ýæ}餻”A6àZBû~-{ÃÓûZa­°‘-ßR£¦¬ÅÓeÓuåÞJÉ¢äa-~h<Õž°•)’ìɲ3 šH%JÃp<˜Et)•©9óZF£¤³’ÂÌOm&Ú°29“”æHe·[¬¦yãÓNQ‘öµò";‚Ø~%ÉbAmEqÏfÉ·²Œ2zdíªmF}ÓyÕdpîYÙ‹ Ö¾³hEŠ#|—ŒŸH›°7š+%µÒ°ëËy§gâ8 $QÉü;Å^Óéx\™+óàñT¸&8±ÓZKÍFÝè}ÿ°(è#^óƒYþ"kn¨ôÆÌªÑ×)´‰Œô "»Ê"•h© ×Ë0úš8ªsña†X™vß½pÕˆÔÄÌ1‘aég]$”2º}Àp`T´žÉWý ¼X-Ô Õ)âÔê=Ûͽ‘®žB&kÓÔÉ¢iØLÇŸã9Øb)o´ âg¨”+²ÂVÆ ¡"vÆd 87²Q½=§¤H,Ôî³€Ü÷)R<”zã•iò<¶|\MÝsC4ÍŽfM#:¦Å÷ ª}‘ì€ëNK’±ŒŒÔ œà=m ÊÞinù¤ª°Ü\IÆÌAe 0wM;m)ó˜#Ÿ#Ÿc]‰j*I]g[™«?KVWu‚~lÓ¾ = æ¸)OÕ¶1Ë—`Þ3óôˆT¡mÃЇ(¼}–¸ð&ªÞÆ[ûÒ¢h›Ÿ%šà.¹ëFà1–[µÛ²9 >³±Í„á 2ÃìPÍVìà?¤,cpkM„~h&áÀ ,¡>ÝÆ\ù=°Tc‘Ÿ *‡4 _g!+"Q&Õ-œ’§žº³,‚ªÚ*8ükÀ4ȾûÞ£}üû&} KçìN°{dè=4õ>ÁÇÜÝeªvÙv¤¢ ¢ä9€‡wü M¦æw¾IÊêßê7À²ÝÏ&Û~\Ðà3‘«‰4[ã{CŠÁÂüMWEQ#{#‡"~”ìIN2*'˶m‹.戊âô~·èùͯÎ×,qi}œâ*ÈÁGœ\‰ÂÅ]ÝöÐ'/ªDI«l3èÏ,ž¬PêFÉ:gw…ÙÕ¢ËÉjij—aÏ¿_ÿ°¦ÀœsÔ̬[bödoñæÔ¿Þ7ŠWM'IT«oP~\`pÃKæXo.Ùû‘E$*þS¬ñõ¨CM“ñÖúïå8ì‚HáôUß4…µ3}®$ü{©'8LO¤Ìõöt4Y dU€r‹뀛Ž,³DÉÌq)*±“®ZEH"åy`ßg1¸åàa)îˆdœãÅnòZJÀ¬óê;êRŽè 6!‘µ`é¾£¥³¢;(_­ U+|?C'¨’»€,¿Ü²Ø9åš^þ7C"Ypô'/°þ2G/èÑ’¢ˆN§áq°l›.žqTÔL@!B}O’`+lãESkl§jª"~Æ{õN¥¿aoS¦¹úN#ÃëbG9í‘Ë… S„ÿœÏÎÉbÔÍÁ”¡švjŽ;E‘1‚F@Õ(‰oG—¨Ý¦`”I‹hI-±s(êvÐó%®òN>gã²ÀQz¼fh¸#fP$XŽ mª{úÌ ª+Å1QŸ“VfÄŽ’³¤²ƒ!Ù /ã6/ã3ZÆ‚t×<_QœÇ §.ÓEá,3 Ïì ¼âü„N²1T Ãwìµü'n\.'ŽrÒËPð=ðs‰ÇÔªUɨöýÉJQ2Š„‹ÌíDÉ~ªy5ƒX1Œ4ÑûOç§­‚ó#þ7ó|méÛˆ‰Ñø OçŸèŒþ‘ÿU6üjçØ[.ÛdܪM7Ñ¥|è{’É 3®¿(ÏÄñW0DAªâA84^p[kH5f@YÄÅhÁ•ß½]q“ƒÕVz #ÂóØÍÜ3Éø¥po£ÚÕÔÓ(k!EÅ“\FØ`¥pX‚­7m “È%‚ù¶£² 8ºÄeöqºÆŽCT :VÜÈ¢ìhŽŽgXR‡«¸œd®C˜À[3@8ž-9Òh³?f’Ì©apƦ8’¥Åe‚ò0ì(úÊ­%E~·“ ,„OS®¤µ:F± G Ž¢LŽQ(ÉMzì[)jâU°²†"ŒÁ*ã¥Ê}Šè‘ãÞ)ʈ™La¶Â²'À꫌?Øšó«Áôa|WËׇ’Ü$yÃ5shÞz…u¤µ’À§´º¹¤4Œ Y^`ˆN/üþ3,Ûȉ¥’úXD…w»?uýa·Ä¬CéhŒÙwÛAØKp!ÔÃsÜÍç=ïö¼éŸv’$“r>ætÚM¥,RAgMy+frË…¨LÌ)w´8•™0À”sðqHÒ¾ø|V"VßÉ•JqÌpÛ ¯ïÆ©Ê3¯„4òøin(SuÊËF,Š¯Î¼ï—5b°Î×u»9™õ$ã’Î §_Á³¸÷ 6>£+øojO¾n&®™.FF«À#ÂýO£Á!¶‘Îô9#ŸFÅ¢Ó(Mµ­u¢VÅÒðœRÉiÜgÊÍCĈנ{7|ÆUtÀþ˜¤MzÏÉ„κætÀj¶™$uVâr$PPÿ* åŽ t5'ê ð+|]›Üèt/iTvâQeèk˜/&EqÚ¼Zh­ €.Ãk§鄉¯?bé+w'“á!AUˆO¶(V1(Ù=%cÂk²éšß+¢LIRé7a[ò$Ën¤òdZÔ©°§%V5eSÛí+”Ãã9&ò·påw’ŒY,¸úq&ã¾–Ö¨=¢üïÑHu‘Ä1JÍÇ)˜¸tÀÜw1Ù¥¾Ää¼DOr%EѾ'-P¯¬Žß‚‡)ßaóa°:`(J´ÀA }¾[R(4t7£k&>àAèrÊ\7IΘÜÀ•]D4ÂRæÞ3’XŸ„Ô3¶×çMŒ’0&äB¦°`§ì†ÔYeYPìW®¯çªYv±< a³ð:/–*4>&›ÝúJl"(ÌU(æòØ(Í^Öa®@­d{;LInžH<ä g³æ%‡&ÑJ¥\\ ôaÌ|/äTåHãÝ šCo¨”jË=å;jaR*$i=o 1ÑV»AÈ¢ØRÉߣ:ƒ]÷ø‹ Ñ(ö1ÅB;,¤˜$zzÊM?¯ý!’J0  &Jòò­"/¼ÓÇ#EC„fî¯Í*i/žF$nDHp3`Rêl̬wò´ãkO­×ô| : 8¬?L¾}OtǨ~»Pb&ƒ¶¶Él)µ ·§PÛ–úҵͿ³`ßN?¾Ø†N Ϲà˜+p3|N*œÞ5†ÎF£7À‚hÜ4/nË”}O^š&£ E–øK)7Bjƒ3 [t …iãhŒ kLC ãæ1…1ekB#®ƒ„6ÛN4¨H—R÷à 1h¶§D¶°X?ÇÁÐçÝwmt9HÒY@ =œ¦ŠŽßnrDq ÛâÒ°ÍоjÏ¡h¡»a8`¹9_3Âvj9¤ÞRd§ä¨@§Ã%˜VD‘‘WC»¤I†q÷DãžÎùÇýbp ÀZ*É!G\\èP1Ø¥Œ˜ÈYÀªc–0rì^ùúà„éï ¹$zoÀÓ4P¯úL”™L³?¤h‡…Q]ŠaÕró íÄW]ô•ÄcNèL¼þJ”ÏP¾Eõ¾AfݲÊiC†ƒ’:šîÙE(üJçâ ÔMHì.ºúq›IË'©ÈØLâf³&4Â;GUÎåÁg‡1ÆzjÅtôõ©êñ±nfœ‘u ë'tFB‰þhÌ×Dh‚Rf B}ïsŽƒ‰&²ÝÓò*¸ ŠˆM浯ɫޮÍnx‡*Šc8‹7†ÓÓN¤bÞÅ)‹’1c!g¼iE< œ†CÃGC^6Ëè{]^N¸@h3_ÌÖÅj´Ë^ê+E~ŠÓ7¼ˆ×QHžÙ2xìçR­q58 c›´iE•e´†œŽ&†$' û•ÜÝÙÌ…F?qËU+žwBL¡ž›Ò£š€º‡ôÕÙo^Ò·ÜÝ\šq4…B4?±„Ì?»Ùå=š{Sô}W¹ &g}æTO t2 ˽¦zrð‰±ÓQ¦wDÁY¤É/ļ1kŸeQ´s2ƒ{mÉG½>ç¥ÇÚHx§&=,â"Î×x•'¦É›CZÁß>;.- €øDsPP›RæÔåß¶5uBÙŽd’ÀÞ H×mðåc3>ûôqœš0 ë«ÂÁ±è"3øÁÀG#®k8û8œ¢Á2¦Fø8¢^²ˆ1ã䉿‹Ý£h!2x‘¡ƒK¦„5ÃQàmpö0j…h‘*ã\sÉÔ“|à˜'=”ê!̹rË÷X:+;! ±ÑL†ï£‰Ö–g ÊÊ=1å:Îï>â;kTÂû=|+»x3U|P)+Ï”j¹œé€R­”Sä[KÏ[ñBaC åf ¬â8n’ryD¥„oÈÁòæT¾­äû8Û&®òÔâp%x?^² NC—•œ Äg˜*€?tBÕ‰\¦¢a9H‰Î&qAI¥J2ƃDl[Ao@ ÝÊ9«Ê¡“:PŠPº“ÏQf:gÖH·uþ %Q]£8÷ ׎D†žtpfœÒ"ŠŸ;ÑJŸD(Z±ÍŒaÒ•UDZ'\Ò÷M³•Ùö¹NÊå˜aÁÙÑ£!‹\=U”0@«õ-ÚÞí’e?‹Th ™RêIMËzÉG«R²õ 4} i€üÛc V[‰tñO½Ø#PÈ>¶R—˜Jj”Ö´#<1v˜ƒkÒNåh)Ö:Kj1E÷DÉÑÐÐĉœM\Ú|#i‡C[a+Ùâì@ èÃ3¹F÷öååЕÆwô´|–’™âæŸ-ª–§Äb&ß9ŠÝL% •òYvxŒI¿1'üfå©c÷ð!:H9TáGšjàˆä@Óˆ¥¸í±¸(Îf w;ÛsO •Óó ›z-· Ój{† çdå6Žä/ÚÛxnt"1Iã”=²Å-ÍUt[)NWÄ×"]ÃÁ|ÀÎrù)ŸVøk%)µ˜°–Á4ê±&ÝÇT]Mƒì8Íj¬¤}÷ûœGläQjn#wp$}’'$t•zÈv»†-däÔ(¢!Þ *ÂZfÙµ=°´ª#1ûD„ Ÿ˜´2r.µxÂ>Óei›Õßrõ>…+é…ïã7kQ³ŒË¿ ;EY0ÇJÀ«‹¾6JIlžø­Ø4ëèPúàêÞÆb’¾’XIõT „‹…1<9JãXìw1¢K­¯Ö‡§B›c«üô"­ŒáP¾A‹»ÀÐЋùèÐцž|Iˆz ÇÑ®êÚVPr]äbÜ£“^â›!$²ÕŠ;y‹äÐåœu€ÒÙQ–VG"xÉiB2Nä>µ£Rx ¬jŒ|¤vÊRŽªñé…»ðÕ* HÎ.eG`C]`é´Å‹ Õt¶ À›òŠ˜"e11à˜–IÒFS6’h9YpÐÞ¡`šÿªU@ê®:óq09ŽžDuE½„`ñ/0ž¶ï£Œr 4 x…# ¿LoÓG‡½÷bÌ¥dHt†ÂHŠ#jiQ›/ilë)ùlœ í{+3$û¹ÆÖt—Ì#dÝ.¶”®V˜Y#ŽÊD 3ú²éÜÕô•î$ŸðýÓ€R!6vè³RÀÀú\/„­}KÙÇ)ô#ýÒ¨g1C¸TE:0áKÒ z½ñˆ5nÙn.2x¶ò¡_ðõ/œŽ‰»"¢´2sÐV«(Ç’NCp›ÝF~BÏPQž#êà(*á…ÒàY¦¿…Ô2äÁ€yD,â=pŽ»m×yÛ—S’â·ËMKåÁ–^ô‘¬ÓeW HÅ®éú+"À¶ƒŸXˆÄEHŸÎ/&aêš‚QíàJ¹ ÆÖvbÂ%¤Ò&œdmÚ1]“‹#ÅðÕÖn4›ÐÉV0†—_ƒI=œ0Ÿ’úp}@Q/ÞèR2ia]“â.†Ê“¼]¹Mä t ê²RHjI/«;9Ô¡¶€ˆÄænE'Z2Àü9FO€€<ËhÁ$’C?Sœ?J2¤ =luR™F~ز™eµ_ÛOXΨ‰ùœFcbÀÛ¶ïƒA µÑÅÒÖRAzu´…læÆƒ6pv¦@;®ðkˆ*š>ž¾Ä¿¡^¡H CØé܇J ò>iºŒÌq˜/F[î³8 Þ*Ï–U9¨ü„ÛHpÌ ò#Ò 9?T’Ö1Œ:sQRG»ÎòëAw9•Itfs©Œ±>Š;H/ TË׌¬ûžÀD[Lë!/‘œ ’„ã¥à (qœŒ£|·¤º&˜f³¾®G´Ö~ò™%'8)Q¾‹{•Œ“àåâȘzøªAèõ6yaÎÊÀYݰïì©ÙŨΓ-'õ+é}P=Ä5Qý)H£ˆQ’¼ÚJÙP?Õx‘þÍÓ¿%þ·4ã4× ¨»5²4Úgá`‹4áëg›fÙù xa TrI… D.ÁôºGY¼N¦ Ò©¹o´æ4‰ædâÓ‰rN=5–ÜG5(Ϥ¡C õu8Š”Yv@£»9§$Å™Ds}ƒ¶yÞàí ÿ™w:G½1Ý<~õ—(ŸéÐ÷Ú·hßÚÁ”®/ý¡!gݺòMgÃ9 øƒa‰«è¨$’»!¯mòpL'õ#,ß.ŸquØ®˜Ó|Ÿ,:,ÿÞ_9ÃE1¬îD gOBàoÌ"Ö4€©]9é‚C71•'<UªŒ˜FŒ6S¤)î‡Y£;Coa–PŽÿàœæ”,˜|.lçÑ‹"¢| ŽÝžu51P˜´C+uI‚ݱy=}QŒ™ŽøæyàM"Q¸ÆÚ]S{Lïl·ÊcˆqSûbuÁ5âšØCt,tšK’×°eÔ¹7º4Ç„'qŸÃNu)§™ešÆÃPK‚}Äð7~kÌæÞÌØ˜Èà.ÅÙ¤ÇA–ŒÇ7 åfÌ»tKÔ£Ú±y—BÇ ë`F† “&§){¾ÏL(šÂPÈK{M)ZyâÔÃbr儯´1óA¤î‰~;ÕôÖK–iÓ3×´!@ѸS¶Û"AŸBË®€õ5šÏỜº’;÷U(+$ÛJ“³5·4¤öºhºE‹ ù/;,~"š’ôxõÿéía8¼ ª¼ïÃ©ë Æ$I¢4MÎãÊZUÎy…ãQg£Ø nüèCÿCÿ-ürè—ëìtC4}‡:•Dsx¦Í„`Èš×\{²îm´;ÍUïÉš_©Ö×ÖÖšµöZµRÛ¨VWŸ<é4ëåÉB#€¹Q Q°3Qiî6§Nß—´/ÛªôEûÂÑ6îçdH­—2úwïÞ}UÏr¨W:O4™qÇæ†¾°eA›lëÁ‡WÒÞVû(× /Šn¦ ~U5×uSÍå(PɆúA oZœó™wr¤› ±{C•‘_?ڥߠy:F> *ÒW4Þ*v”C—}ŒŒæF·ÅÁªNµ >1ú\‰]U 3ì–Û°cÏÃå+ŠçŒûì.ÐŽÝ—¿Áñä|Æn/¹ÿœSÿœSÿœS_Ùþ?çÔ?ç?¯!”0ñù¡R×Óm›m§Ñ^›;þ éúiù,ƒ´Çcü ržNÌ3'rú87uœ›6Þ¥?iüD÷þ²N´¿’dÿÍûëÈáWë)¤ÚèÙßI¦ÿ"ýßK¢ÓéÊòL¯ƒ6¼[²¾¶jû+oä 'ÆAO£ #€q‰àü|µU³Û¦ŸÁQc¹Ü=°Ûˆ§ê‹^» ŒèŒ5².éjiЂþÅ—@ƒjŸJ¤ò>Ç÷w‰I ¢™ˆ”KU>ÑLuJT‡~û~¥tóº=üD¨›•àj|åµnï’ýjùÁ,Ê—€NTNb·:%ßBÄr#ÿÜk÷ˆ(P®©TâœÅüCOþ¡'ŒGÿГèÉüôd€™s8¥„Q;É^­7Ÿ´ž4ÛM`n½Îj{cc xÞözµS_÷½NkµâµšõÎú×2ÙŠëúÒöîÏTÎÝR3Ÿ>aÍJsµ\[+?iÁu¦ã{õf¹\óÖ+ëOšµN³Ym·ëµúª÷Pö¥íÝÂænÉœ0ý]…¢¾KC¼Ó’p¼«‚³‡z|Ó Åw(yhh«£¢ŠÝ¤„Ò¡D9bÙ´im Isº!µ„V%ïN‹LœšÒÊÐ'å-ÇrÆ®aC3z­¬ $vûÑmërö1\+¢±ÚjvpWHÍo2Dš £íQ :NFßé†áCú>,ßêêC5ù\…2£Ò€¾ й-r~ ºÝÀëEÓÉ G¡Wz×Ì$R‚mXMJQ êãÅù%%F—截6¿tïÅÛÿ9\¢„"RòÜ8f,¦ }8€¬Š$nQ‚fkÓmC‹;÷£d¢$ŒT(j†É–r±MŸDÝ¿•¼†Ø¨´G©¢t„j p,}$í¤‚ˆí%.9¦H¥“Ñ‚áÈ3 ¤ràµ|×ÏÖhy£F±3 ü~[+ÐaäVŠ‘?BíÂq“©5g£èé¥Xº"i¥ä˜AÛ,•°Æ×á×%V1¹#B¥dÔQÏ}vÎÔ(—ö.‡X3bÔp®ˆ'åzè ŠÈYëý9ŽÃö4‡^ë£/)p’LÄé×Qý,eK†}æPûzaÿT"bñÞY]»ßYð Mþ/9l¬_p:þ÷Kþ6€)-ˆf6OÅŒ5b2Sz#—ÚŒH*ÉyÀSÑ »ߥ8Æ0±2!4‡'„r“Q'·¢:œV%‡U™^âhÓ˜½"õ~ÿuGsAÆaz;ùzzæªé8{ð£ûôô³í2IÐCïÙ 1×·Bë8·ÚßÇ™<äŒv:õf{Ío­Ö6šåJ»R^]oúþ“ZóIÝ÷;kO*uÿ‰ßùâ1ÿogþ[Ð÷k&û!y³‡|­Ýj·V7ª¾÷äI̓ÝU묮âöÚðÖ××ÖWŸ¬­û­vçËw×1‡9ÂõV½²^i×+õÎZ}Ýk–7š­vµÜZ_óêí ¿½¶Ñ~ÒZ+W3F8•;Å,ï(‚F×]’ÅBI/’ÀÕ*¿•Äg¹ ª!€8º} ²Iâ“Fê!£MÀå«D›Æm1ÀÌKJW%R¸ÒÙtûC‹÷¦¡¢cžø­*/»ï´Ø¾ç•cw*×y©îÝòõT|ø` œ-»n‰¿–VT²4ËÛžE §*$€ÀÁh^PS PuéÔ§ c̸ÿñþÿûOü?9îA SŒ͇ný>WW3ã×jå*ù®—×je(X®¬Ö×ÿ‰ÿý·ü=þÎ)5ƒ~)º\xìüŠR;Ÿ3!ï­aˆÎép¹hbà§……ž¿Å²À¦~`«Z®T‹åZ±\qËOÇÀßì,¸ppK)¶œåJ•‹ðOB):Çâ÷î¼À'7Þë·\ê‡Nqè#ƒsgåü8ðÛÞ/ÝÛõkn7»‘ÿ”‡$Q5œ~0È £\ëŸj9æÐ×Ѱ)ý"ÆJ(‡ €Á (:74ÜÓò—oÞ:/%©âá¸Ù ZÎkÕ§ÔŸD—$0X!kO%ϧÞP%ïïeŽï0tB2)Y((¤Æ¨wºhúPãé“é2ÈE2ˆ3ˆŒ#¿3¿î¼:x{âl¿ùÍùuûèhûÍÉoOu†Q´Ë`m"p\¾Æi„wR°¿{´ó jl?Û{½wòöÿÅÞÉ›ÝãcçÅÁ‘³ínìí¼}½}ä¾=:<8ÞubÐðúxÚdvh9(:E9ç1£RBµSREe@BÉJ·³ §Ó¼ ÇSè’X¼Ž ˜_ÉùÑ… B4HLö¨È€¶IN>ð)v·ÓòiÅ”¦<»9c„…t"àìô*[§XÂ]Pô hêª5ëw¢‡ÍÀ0ÀW`©‚Ž!"’7ß‚£”4ÄŒ/8¯£Œ£8Ý]¬¯…—jòBÒ0Û¡ŠôÁÑS$8 \~8 Šy†#ÂASü_Š*†Ì/2ã?9ä8H±;F­KbðØùQ•+Êc]ãÚ?¦l/çþpˆ(ÄÜó‚ñhyel¿u:¹EP,VrNå§ï«øô¦¦²p·°€9‡Ù»ÚÒ õ#V›Óo"o}ؘ¨qYäÐ 40¦ÅK´– Ljo$É^aBU]ÎÓ78LãD˜Œg8ŠT4M!î'š—!àƒ­E $ÚÂ9]ä¹gQjÉùì”N¿+åW€{Í(ì"–aæ1-¦ç¼}³CÏ„Ĥ LÅ¿`jt{¹§”ViáÑc C˜n©qCàPZ@Œ¸"sÐdˆQŸc¼˜8Åc­.TJK ¬mr/M`·”¡ªØPé³ :§ëbïšø“«^ϪÊc3ÆKÏè÷FbotÎTF>ãË)Ü!Ý…z>êH)ÀÉöÉù‹½×»*á^±w¶OöÞ`,¦m8öÞíbsJ-+)ŠèD¿¤l!x•ÄCLpùþ(`œ§7'L{,üdz øIȈ6…œÇVéÁmX: Ø^ˆ—¾lJDF!"Àì`$`ÔäPŽti$Oÿ寲çÔ,ÉŽÓ“µµˆÔBflk±†?Fº‡8˜h uº°D•ÞLý+3CÞÀ£dQ¼/G—Ag„7D:ùh¾0Š -å" Å7¯^8‹º›H¾°`ar_9Š-þLõa+Àâ3ÂW˜:,-I€/ƒ*æú¡ïb¼á­³´XvŠEtÉ^ŠOcCcãÊ-Ÿ¬x ;Jç2ŽüÇw^,¼eÑ0tÔ9ehgøE8™3çðèàåÑö¾³½C$Øãœîïî?Û=r]÷laa_°OR®Ñ‘Û ødñâ…mó¡NØã.`ã´ô\¨®^QW¯¤«ú(hNlÑbksi`hS-(r¹øØ)vGNMè¤=±tö’mõû6>Ô ”@“!IöôÌÁñ³°°}„Ôƒ3àm.B$Ú­êv¢e!“ÆÀ¬»óözï™óž|ƶ[ôðdçeüT"±åñûþ6¬ç›Ý|ü ¦)Ö½?~ûìø·ã“Ý}£Ì{­Ïàë»Ý£gÀ4Æï®o¨Ú¯ïóŽ R³”ÃýMžðŒ$ ‘ì´xûVRÊ6‡¾÷q‚tÒ áþr®·»Z”ıœ[4‹åty:a‘hƒ5@JC¡¼Ú^tI¼÷iAuíy\„}Ûö»pÔn-ˆ»êÖjx¶þ­[ ,7†×À-ø7[ -L% ?[ø(ï#q ˆ9Æ^YY}YÞ6° ÒÖ-PH5m7ðX5ÏåñSG¨¬.ý'<æžñsy<̯8ª§(ÖŠØo«ô1<6ÿžâE’ ¡,YËt¯1`g|nóÕ¤Œ$³` êË<˜#§=9x~°)&±ÁE?”ÌŠ ™oƒXN^Ý£¾B` €Æ@s‡ŽûûáµÞŠš²å&°0Æ\…?ß1j mçÕ[”ÕZÄåY¤ÅX”¹/,Ê âŠÃÔp'àËJLáü_ºjvTrÜ¢HÍÆR»KRêÂÉ’YÁ¦£„«<œ¦iêåwN±“Üb„O^K 5UK;\”Îq~ÉÇ´-. ·ø©òø—»œS<ÚÝ?€c*>vu͇%˜t¢—7v»©ø¼¬SÝjIЃqÁïZs)Øð&Ó<†.FNÙ`γžé”¹¶g;s¾wߟ‹6áÆ”[“>}Ú/ðçœù4n›æ~+o üë½ã ¦q‹øðþÿ\`Œ&Ü$ÝO›¾Œ>Ïâuï«H ˆE#î(Ö…‘É®ùÚºfÓk<øÇ$-ß̬cÖœMûüU7Ð\»ú›þšXÁ8¦øaÑÙü…‘!ƒ“ÈÆ.F31ó¡¾ñ.6æµ?eò-l8x‹˜ ×?Q‹{c!E:¦N€IVKA!iÝ^ôÇš.ü£ úGô.è]ÐB¿»µ´°„ýùÕgá09Þœ‘×d%ˆM‘ü Ø1Ư¤áÀàþï8$®5ˆx†Ä(gH>뜀-K‘Rva˜d»Dv챯ÌÚÞ{q¼\UîÑb¿››[É„j—Û¿EÓ„xO1Ö•‚§-ª¤58þÛÏY«Ueå·é)ç'¿½â¼Þþ¯ß N?4jÑAh±L·ôZßX¯U*,V ÔÁ|!~Z`ȃºWÊ?¨ÖËw?½—U÷¡5_­î9Š\_ãŽÿØàaB§Õuºaø‘ˆZ7h9e öë½7ÿy¾w´`×VHšzý³ €ãÌkz&Baã¦ßÄŸêÛ#­0öÛž7Q!ý‹Äò‡Û'¯6¥ÂÄ »22¤"ÏC À?a]ñ:U¤yÆY˜ëë.ØÕeÔPw&]Ó¶úx׎àô=G¶ÿÀoüºôtIîå0ÑD†Ô˜œEèk|M§z ‚),F—À µ1ÇÏ&^$P ¡¸ín×…O[ÎÀý¹õ•'u4YeBÎ/G¯šÕÎ=Û¸|(Ku¼9ÐåÓ[éŽ=—6Ân¡[µóÝŠxmtÜ2zÐ,Ô¹–‹loxÁ5Õi“3ªÜ th R»R2£…dmÁä’¢qÝUZÞóÁÿæS.ûˆN´ö[› „t‚nÄÈcË:½QBôä¶XÞGˆ1¤BŠ!›˜{ò]K€À øF„©LÔ@[ÒƒÆô‡þs[p÷yÄíUð 7Ru=Ï»!Pм{œ6Ÿþñï3!î)t¤šS¯ 9RñE¨DIê%IŒirÇ-ݬ?,‘Q!ÒŽk¨)Í8úÌ3Ú3ÚÑm0D¡ù)b¹âÞݽÁuS:¨©˜šKB‡û<ŽÑ-£>öª{7/×Ùy­;Ã%'›{-ͽ¾‹‹qŸn‰ö Ç?RïíÊéûd‹jÓ;*Žt!èàÉÔv ‘éµ ‹21‘6rxñ7Ø#Ežs‹ª®`Iö9´ˆP¨‘¤G©¨£ï¹š=?SSÅ´f¿29÷y6)îºúhÝÜðÏ÷ïy3¶vÎ~ø!õ*Éõ-ž ² 3üÁ€áÒ'ëËó.*ÌéS~<û7}†Í?4QÈêE*îgvdžiI0Jr>YÒçY5VÁæcŒ¥*â/«¤bY(ÝõÆ|½`Ú™Î0P^¯¼é¼¹¿yвésTk2ülƒ•†ÅŠ"õS­VN·^Ÿ-,|¡ÀìÈï…WÀT1£]4rÃ%¾I"TΣ¥Ò9Άî¯˜ °OÉHÒ@ÁåΘ8Žƒ3ð[#Êt'1Pð4ÞJÔ(¾EzÐÓ°ë«Ô{,~(Ì gXX'R>7Õ奦#öaóÚF ÕÞ›ã“íׯQ0xDWüüûÚ쨚Ã\ÇAvÛiéÇ3úÚê¢-»ñŒ~Êkƒ!ü¥?džýÕýW9"i‚5Ù!]]Zü± 8Ëj'[^Es*zRbVˆUyìS,06GAìƒ>.±\: ?ÈÌ¢¯=š …¶ÅÖ@)a;xô‹Õ´k¬IMCƒ1}«}+Ñ]<ìZJ"ðh‚¼IuSë>«P?¢Oü†µnÖÝ-Ô÷MC¿IÏôª=f!!Nà’ˆhk cã³ ´sÌËDʦO¶WáG•Ò#(L•2ÄX6°\×—ì'V%$´‚Þ!Ñ#ÙmäÀMµXÔ{”Aô‘êueýYH2,J´’7ª"K$ó¾ô0Ÿsˆ%À Þ¸cTÝM`Ùo‰ð<£C’Pñ1ôÌ5I>Ù°=vÞ Y ;Ûš÷¥,¤8vZŒ@ !û-Y>,EŸwó§>”Î>~êÀ¯S¯ø×vñ¿Î6éwéƒÛZ,¹!Ê#PÜE eZ8 v)…GAæîþM·x¶ä(ÉžßÆC•ëuP©)I:Š„–d\§‡óØ*±(l ì:ÌÑ6ÌMÁizRH´$,U´ ‰›£¶d,hóVžákü¤Œ:Cq öP,Œ) »LÃÝ% 2ž¼Ðœ=Ý|Vƒý|þùb©á¶•Øpì?uê!<ø`Îù Ó•–úèN_ýéûŠAµÔ5”·R×÷p¤Ófzì¼Ø{¿¿»é Qø T‹Sƒó$C#d´û1èvÑMstØÆíÒUè®»€ÿ:¹aŸ.©Þ,=•³Nw§êTVq­Æ}=QÊ] ì ½'À‚uù–YÑc뱚¬-kç÷®ŒWê…©üFˆŸ¸À]ó ¨Æ«4Èæk ÷ 9^>Í`@8ÚטgÓyç ¼BG›ðs©nòeºÈ‡!^ÑàK’tn:Ux†Vțβ×n/Qäµt= F~›¦pn _-^3zÔ7Å¿ŠtÒcfKÉ—³ 1û¥þµy[üW¹ÚÃÚ.üó*Q’¾þbÆÁÜÛ“Ä[Ÿ¢LˆÒßíƒTüßî/©ÿÇ÷bìGÑõ1Uÿ_©ÖÖÖ“þŸkëµü?ÿ–?Kÿ¿ 'My}B’ØõÃ~€”‡­·éœÂ³Ô1ôù•'Oªséòp«ÓNßZÂòÅJ¥X®/Mh¿DeÛÿý*ûšjBkvCÔ0$uøßHƒú{Tsþ·iðqfQ‹ÿ?Dƒÿ™Œ¹øÿÑàãK¨@Bîêyà !0ÄÇÁ, PQÊA8y¯E>y¯#C;kå Æ¾Yν<|}UË­ðB- ú˜Jܹ6ý¿‡Î³pt ÀžšÌ(W‘ÔB©gPx·‹Êiµ¯Täbã·ŒXµN…±É„ã­ *Á—‹`äFÞ•×ï{—qàáµß,ý<ØR§d0zêm5»aóœôÿO;[æùùô²¹õjwû9uçP¤&¶ƒó#WHõgíÅ¢²ÅÎÜ|©PÀëlå>ho«²szpˆUg , ?;Éúr1#œa¢þ¡±Øó—(4ëMý¡ýíˆ\fD ¡/ "zsÔçᤩÄç¾;"ߊåGX>æîtyr³€`.hñ–hÉ1aÕ¿ÂújÉŒöÔ#ájV²$NÞœ“[XÐlí‡D^såE}j­À¼ÌBSwáKF6qòEBe#8JZ¾È·|±—ËUäJÜw¬ÿæ`AQ÷§$È#âOî_@æafpYÛGÑ+aÉ,ß@Dv t¥„hgc:&)¯G®žI‡3a>ËOrþi×/%Öë’sä~(¢žkЯl¢žNÔ"Üfù0~\NÔ¤—KVsVDJx< J$$ƒ¦£ÈÖ1tlOùö¬+;+à²CÕ6ú5JcWU²Kç'z„öAŸcþJË‹•EÜà•\Iµ1{ Æ€»½™ŽßmF££0¤PœŽH[­Š ïµt£_âKÆý}gç0ïüÙÛ½×Ïqµhh,¡• í’ð&–náY†G+¡±DÉ ˆm²†f=-uŒÁÉØ‚]äI&ß`DA8ñü¾7$òö!¹/ò)t“Ä0J‘æCqW6ýnxM©Œ>É/}¯íµ.I–Ôöáä#æ„\U‘$‘Þ»ãy}ì¼ÂÓjˆ¬u÷¶à4ÌÉXâàN°‹kãÕÁñÉùÎÎ’‹6mшmªpôdH$DÇËâ¾µ1ØvËcmlNÕ—ì/-' r ŒÁPÍ¿¯Ù˜"²ñ‹üÑy«u[þœ$P[K"±ÁõmÁQ±õañç§Îò°‡r’‹Ð Oi5–'=uXÔAoÍ+húAˆòaQÁË!©ÐR¡/šÕû œ–ŸNöŸïm• Âá¤l5–Ç=/úè”××±;½ˆN± xÏJ­‹÷ô—[1ÛiÄv+(é!YÒOÚêÉSçÎùü™ÚÒE_~°Ï¥¡q3‹‹Ey‰ï’ýÂÑ"ШU¿¸¸8½"N7mé_½!j— o@¿EQßÄÚßFƒ¦£0Lpâð®´7UŒg¨iæî)@Š29¸íq¯w»…}+ÑW\yYë­Ü"=r[Ž| Õ—¡ß•¯0¿¢R4÷SaQöHÓAS(¬Ä4YŠ›§ÐG·ðtáµØßV˹€ÿZOœÖ“'ŽR’Ãn[^l9¤Ó›èQk%)>u”Ñ!Q]³w0°VN l‡ŸH‰ñSÑ⛜5(”-ÞP-ýð\‘Ås²¢¬ )ȩժ€CïòôÒ~'³§Ô]ò% *à{ÉÇÕ£Dõ¸¾”´«¿Û=:†ë@\ÿ*«yURÕçm”[üdB¿ËáîyôÇ7ŸOÆÿÈtó±²–ƒ·ëµ>’ôHpPXt2 ­ÎE7h¶H%‰šI 5M–üÒ#+ì…G¯÷žíl§¾°ðˆBi,&1µ“¨Ã/î¼0v0€V×ä;@€EîåOøXŸ’Ëççow°óóiiÜÂŽA)’öÇåÚ?Â7qIõ„Ê¢%Žî)<μ³ðÕÚÜëÆ¢ÍëìÆ”ÆX `9/†>°J¿#¬%­+À޽@s[­nVª,²UÇý}ºEõ1{Ýùpùšp ë^:è6psÙÙ^`Aß»ÍÄŠëß‚ŸñÁÆ â*7ßø#ØÃ›ùMF þé,÷›Q{Å£è"%úYf•§7@7~äHVPÕ…ac(Ì;Ö§ë…ÜTGcL–µéä‹ùbßD¿ÛÉŒß^8å XÏ(Ó ;<Ýã‡yW2rI‡ˆ©D!šÉcýX·Ö%Ó¯Ý×/ÌFòr&ò1n(›] ÚÊ<¾)i `öU€qï›pCÄwpCk³V¿—Ñ tƒÑ-äÀk]„Fö°=³{QîZÜ¢˜Zd4iÞ 9döÛb¹‡"†=f'ƒ u¿ÍSŽ4P H˜ùt)˜¹D_@{@bÄ ­Â¶oº[9þD¦æòÚ•x äš[xd¡Ù9|ªTŠ^/J=k/|v>ðaYGéåè—Þ¬4Ä\!‰ØÔ"ã*Aõ†=¿‰(GÜ¢ŸE—AÙUÂÓ¼Uf¢DtYó»q‘è²›Z¤iI)±jYíú…ŒŽ¤ͪÀæ)+™HrqŽ™:3aÄ …{H¢ ÑB¤wÂàM 7¹¨‘ZNíΩ«;ÿ¼ç?µµÏ½µŸûQ­úñ3LQþsÚú|åÝíÈ$öÈ ÑzŸŸC§ÎÏHNÐÖ¢… €E e-þ©êÁCfñÍýʼnò ƒC#ô¬»;/^ ‹éÉ Î€çâæYŽIÏŠ«‘‘Ãï8) îì½ÿYÊ…Ñ—ÀáÒb?úi{dÚù>2ëM¬õ1¬ÉñÉs¿À ð”b ±àÝƼÓñ)Ð1jæ»|Ñíó²_Žáä!CÄÊ€6°ñá2Þõ´½ ¯1=ì·ÊØ KcÝþ°<¹Â"Ê8ˆæâ<¹@B8yD|Ç\P½‹‚±htÛe‘!òEÝ%ñÍ:Žh¶xø4g2)[KXu)9£ê-Ë[“ÞçØæ´x~ææK\ò~±fÿ˜Ò;‡oÏO~;Ü-îo¿yûb{çäíÑîQñ?»Gov_%^Ú›—r¶nŠekàÎBÁþÈž.ý%Pe63ìQ¥ôf’ð‘1@Arñ-퓬ÿ]qñSÝ-~’‘£¥±)ÒÊo> `¥/ä$O#ÝHÕ5‡Râân‰æÅšÅTUlRùäL';”«ó³{!åçïF`#Íê‡ÿñc÷# n ËÎò8ìíyaFXx&PXÛÁ µ¹ p˜þyÐÒàzÁpŽNÂÉìß<½îàÒÛ<8~Q|M·ª°ËZÝ-ã¦LÜŸb. þ‚½@¦¡ÞõGgé+kwzSæWÝüÁ¨ßMlìíV Øl1œÝAŽíÏ‚Á“ ¢!åX½¤`õpÉñ®¼ K,$Cr©BÌÝÉp¼V—+R¤rÑ)U\jWÑ0/V÷2u¸¢xèæ©*Â…¹ÏÝi{·ŠÇDI\­>'A4ü– ÃñÅ%I(‘7«HÚW¶üd!)óØèå Dj;e Û¯_mŸ+bcΟ5Í ÑǾÈß9*-·#.ƒ" ‡.»ðn£{slv{1!Ïí¾«;ËÕJy­¾’‹×UݸsÔXNsJXÜ]½O…×;ÛÒÀZ ÿݘ³j¤2­ÿjÕ®á®Ií©•Ö2jîdW´¼‰zësÖ[·êQkÕéã²[Zã–ª3Ƶ–hÇÝØy&õ¦têm$ëm¿–zÏîWoç½Ô{~¯zO¶¥Z ~=™>Æ'V]š—Úô¹´geÝ}"u¦¶³.íhBåöÝ~ÌtEd-ÊYmsBåÞM”> Yð$» §Û0•êRç}² èjhý: P]ü=ÚÇv‹ìRÕŠ[Ev%rrð-Gl³’™¹Y'0äÅ0ê¤3n–ûò劉ïNÞŸkGCgiûÙÎóÝ/_íýû?¯÷ßþߣ㓷ï~}ÿÛ-9K^³Õö;—Á»½~8øsÆW×7·áù€>^„wßïÕª¤)!Y¶œÞU`Ü1gê‡ý"9!‹»‘Z»|>’Êdî¬%[rÊrnjˆ:A·qÙ?ÀÉ,®ûçoN” ˜qdÁ¤ãÌÉÂ÷0ÚnpãÀÝï’L¢Ú(Ãp­Ç äå`àUÜJñn¤po‚ÏñMo0°áŠBçí&/@÷÷Ž'ïž?ß)ªÇ´q½¾ÿËõ®×åš{=ð:M×븽 ë,ïzCà!_¸ÎöG…®‰Ê. ?ù†kýP®±\bíkPlI?ª‹¼ÑH+Adi¹óEõ‰›¡¶ Ä©EHð€R s°+4ªÍ6LüÆœ$ø«ab«=?:þy z}C»t-FSƒV·Ø¿Y˨ƻ÷w5¿¹Žs­_Q©çê¾Á,¬Ö9ÅACs™ÔÜŠ3ÑôzlîñˆÕ_ÈvÑÍæñ¸oãáÄ–Æm78²:[Âð»{–—û«1Þhܯ¿’¶àn³™˜£K¯û MäÍ&ðœôÚƒ°ëç³[†Z_Ýr°±÷Öíñ0zoßëÆáñßO<ÉÞÆ½Ï !Ü‚=6ŸY†Øñøí–8ä°á\¬ñb«+SÓ…Æ!,H¥k™øí±p­Ž’»F®’ÕÇf-ÇcÒ7£ÌžÝ0QŽx~þúp­~~N9ÙŠÓ >ú¤’Æb.‹þ03ëpø‘3£“²A;¥28u’:äï¶œ¥ eñ’sfj«QÇJ“¾ô8è[òzíµ::åàã½ãs`Ã÷Nh†äÙ+Á–V’ã?ZÞÙ98<9Þš!­UÅIZkÁ5´¹Ü+!cñÊÜl¬AùœŠž#DŠQR•ºCœyȲ¦(¹%&ûA`® Úc—.ÂèXzíÝR)e[üEâZ‚¸7úWÞ°áû7åz$o0.£ÍÀØüÑcfûðI÷Vl‡HFèrÌcf6€Ôݬ\{ˆ‰1„<¹˜ê’¼®ø±ßí} »“ÿ|\O“Ø(­uR(óooàõw^›:Fçe¹qhɶm#ʓШ»·Vü7ú&OŒ}Ü£™/–ÎÓF]ËOžÄdjÈÓéÁ³+¹iagl=€]¨üé”üQ«Ô Gí„à ÙøÑpyqµP)ÔVî–ì³.Ä LPIòO»!Ã#»ÁZ¼tjÙŒ5ï(þ`Ö8µ¨±C×JL|F5^n‹G—ƒÉÉfpðràßÌ3á¬-‰‚ј­Þ8ÿÇ›&æÝ`4ê²Ù49x²­Rž°(C5ÆU0HhŒ:‘[Øò@–ï€}ë¥jÎáfå …Ë?0-³ÊIbºHx± Mªÿ„lΊtÎpÏ+ÜÝ$:]‡•ã”.9´B¦ßD¼ºÈàÓz«]“똇}»†&Éô›zÁ¶Ïª~¢áÜÉÁqÎiû0JŸü*ø=2ž¦x°;÷\%Õ`VJT‘ký8»Ø$¸d«PšV’!t1Ý á Ïç©×-„+Œ¸ùÇ”òø$eÓû"V˜qUÁrùÉóߤµ|ÇëŽÚíÅã‡_Ó\K¼Dkê‘Ù–z–Ö½›£©K¯ ‡‚Õ”zd6¥ž¥5Eïæ™E{úìÒAÇz™SÅ7‘nŒ€Õœ˜÷Á ëåít8rO¥nç÷€Æ·õ}(jõ)D$VAçpÍ«»µ´zo_Ÿí½O­9îÂ%u/þnû½‚‘7\y7sè–«åÍ×Ü X§j½ÿV[ÝÃx°„ébè .‹ðhd Ýcßîï†Ë|M¹#ˆò÷G(cüñG‡ Ò´=šf[ƒ.SðßBl¡†¶ÿ¡{ù“ã”òtÑ©ÞY&ÕÉ($½L¾,üÕ°þ…à«×VЬHYÿofµ ›fŽfåS|$–‹|{GQp%®GÊ 8¶üþ{ ³…¿0Ö—r›`ì´ZSM,Ÿ–‹OÎòVÐxõo ÆçXw«a5ÀU!'6ó6Ê‹ÌSçΤÆtLßhû€×C¸ol"ýÚß~nZEÖzR®HzÞMäžk›‡¯7Š Ó¡GÞ £Öù+`¦i—½AáàmHÇí¬>ÎÛ9G‘Õ,(( K¦ 8IvÞ—Þ¾ß\7IïuT³u3¾YO©Sä«n×Ñóš"ÿ–Zp«9ªM©•8¶ßÁÁ›ÍöÅøFË7Ÿ¿„KФHJp<Çn—S¡òsÕ•çðè`g÷øøàh+EV'BŒÅDQ¸ÅôZ•rÙ9Û]¢%Y¢StÙ>z¹{rþlïÍöÑoç{oNv^lïìÞÝ`=7ŽÉïvnü'qfÝlÍVÄÙ¾("ÐÉ=‚¥Mñ«YºÙJÙTJÚáK<@ñjV7Ö²[IÊo÷76ò›ÏÃîn+‚ã¸zêÇwG5 Úü. áŽÂ¿;ò¨¥.Ê„¡Î‹^ïŸ3XŠ÷7ÿãhÂ6¡IÀoáõ»”^T­´ N½F”’þÙD “Í«QNkÎYæ"æïâÆHfn3{Iþ‡(gt`æD\$%?ËßæöÞûŸ7O+Õ3·²Y]¡;ãâ¢àY|±i ´•iˆJÌþ.–Ê¥¯ÝájHsnnƒ‚Ù럠aÍÞp lÄ¿ŸÞTÒ`›,ÓÕ¼ž!ŸZߦÆbRÈTmÂÉÞ{¢… c¬ ,6[j3ýöÚìä—Eú“güØÔíPó(eà {vpœ6cMÀ·"¬zbΞ¾/U.—7Ÿ¹î±;!]¡j)§ü€Y:­ÕÏàœ„¶a¨›7Yùr0yf_àä׋Dr‡XÕ X+¦ê®­o`õW‡Å·jô¯ß¾ç 0—"Æ=-?Sê˜t§®XtO­Ö*?;V¼:ä}Ê"em‹f Ï(oþ˜(Šc‰¨&îöf¿ðGäN®5Œ¬h·ãs†£1Qüx‡¨’lÒ„vC`·ƒóf€Y¸Ó@°!>ðê'Çi ÔäÙ½‘ÙžµZ[ÑSc ‘2â9l–¸}Ž’¢ÊyÙ¨²1Q¥’V¥W©U­2w‘Q¥J­<2úmLê7€DhVªn¹ÏÖƒøz­>ùú:~½´4ù:Ç»ý±CxëTÊn•º¢ $x ¬¿aQ?H¬{Ê%ð “•¡žÎÎ ?Ã2çœvÐñÁÛ£]›Íµ1ë:‚Oá¶ /„ë‰gˆ¿Ÿ¨ á jcÑŠt¢Qá¤Ã ÐI ðm¢(NŠ’ýĕќ¸’Cµ L‡Zjôä’å,C…˜'£•·ÑnÓA.ÌYÖ¸¹"¾åOÓ+T*Ó+ÊmΞ«Ç8/Ì+RŸ$0íf»„qVÃ\¬VMë'ŠA/¼qw”,–(uÿ )IZ¿Ë [yS êÅLíÃÄÔß)E‚šÆçY&“Üp2b†Úœ[ŒãÆR gÆ>ÒÞ4ŒˆE¢¶(îИX‚“Œº pª~—ƒñMžü#aF'i®…WúbˆXz`LYf«µòj9φ Š™ü"MOêÁ‚ÇÊÂ#}®|¢´ŠþO%ÿˆT¡ŠŸ½ý%tÁiú-o,Äyï޼óýµÿ8˜\·ï‡ã¨{«$¯"°Ä€Ï$}µO ØCžim+bà©>ô# rÐò%û~B=¤“l –€@ÇÔŠh”¼4q„}":5Çfà^ûU‹®¦A˜8Óî ¡šèCufÒN€©UDrKt “¨—ÒœEÌWŠ ÀŒS*ꌒñ4¿Þ)UC*¢Gsé‡2º”r+Z¯SÆ=kãçÓõ'gæ‹ ;í”[›T5ÚÕÊ©ÕòO~þ9¿¹¸[ ”’9׿²ù,Noà'ïö—Žr|DC†ŒD?KGu’`6 0)MOÔ 1ªQÁºŠ±$ÜŽÅàçÌŠO4Ý7Zªô>Nh¦–Ÿv Ц•ß|¹2󓃢ièâK»ÞN%¿I 1oXQI=ègü‹Äf•"¿Ÿ\äêlPU=y+ä6b·Ç\7½®7<÷Z-f‹xZÀ±X­á–ä7ö‹älìÔê³û‚eâqÕêÙ«mÌm¶‘ mŽ®Y=›Ò±£íßò¿÷7­¿í Š­¡w (¤hŽ-G®.ñ‹%÷}i)ú)æ†`™)FùÓZû°ðÈl¡ºùËøÃ e¿Œµ€Pê¶”íMVÊö%+Y@æÛɱ=¬Ñ“òƒÍÛIm×®\QÍz¿ªãw»èªò o¯ƒãRo`Yäþ•ÕÿÁ—6ñ¢V>-WÎne¼^¬kOãôâÅÛÃuò-页1sïë\8n5ØÁW‚µ'¢Äܳjf+ƒ÷¶ª9Ê¡é4ôkޏ2ËWÞ÷¤`N6þµð'Íê8á9CõôÅW骡B0 öZ}F]Jj¸6ájË´ç¨Z«NT…m0«&°lC½fÇâZU¨hÊ,7÷ÈÉAå»:£µ9ŸL/ôÔîA;‡³Æ5H”ømþ3Éš÷Û4–½OìOâP¡ mÇÈ´Ž‚à/êyýþ8èûXÃîî¯ÕO²zÎö¶}A˜{0ý,OkõÕ3 ]ÊüÉ*¯‰Ç©Ñ²[‘¤bÈÇ‚l¬Ù¾çººÌCZ á•9Äé÷¾¥»þÞˆ’°‘£J7h$IØ`è«n9v‰ ;ÎöÉ÷'Î[Øànìä îïàÐGyò'ob^ÞΦ*ã šBT5&I4¡<ýæÃÄÂ(üJ#Rƒ'V q¬½ôšCê;Yýk ó›/ß¼Õ¶“*“/¸4ÚHÄtá´XR¿ˆ "t¿?a@Ñ»YÝ*”¤bJ¯JyݯTE#"ŒÃn’=ÊÒU$¹Y¶Ý 7=ýýô÷ÒeºöŠî_ÀIaþ¿³¥Æ==5),Ò~€~糟$b{h¼ ØH±pçâO8r]jOØyÓ·àÙa_âB_ÓEá2a·xe+^úåÑ©£•~t—N¶éG§„G%(…‚å<¿ûnÕÕ‰ËýQN(³¶’UfM îlc©”BÜÈ(µ>³ÔÌNeÖ³:µ¶Úȧ6‡‚ Ž*lþÑc¬øâ`\y#¿ˆA®ÐÚFrl9qÊnÛB·b„oXüUâeÄ9O8wÑãÆBs'ÛÐpž•¶âuG³°aËo>úb@ R†Þ$ÖPmíŸïn?Û›3€'¶b†ðŒ«[:É{ @ /í^{q8_\ÑdŸ¤ò¤Í÷|½ò½f0i>ÝËNBïf.ÒÕùÝYðrs@òn‚h˜«Zõ u†W3²KÿÆ»ûŒ˜Ùà€™Ä{¨S¦W«z@º×™t $Gü…jXÌOÖ‘Pˆü=ÙÃÌ~7)ž|Þ^ŸŸ[®aê±ý0å™›lóYF›ºE|9á›öå‘ëÜ’Š7p“[ü¿ï(ÊÈ jµžž§ã‡©7$ÁÐVJY”À¹pXù8ž…C“Ð@±âáðÀkýIP¶´kj}œ‰ô¤%¤î|±ÿ˜ìP $¦?*›‡œ O(+ ¬ÞéïÈrç7—lî/­1æ¹Ý)vªŠ3<Ü^ÏKL%¥ÖKíºâì¶7Ìâ¨wŸVœm›uñ)e'E^ƒA+m~åV7çZ™欿Vï¦àŽî…q»œg ”ù``8+ Y8¾Õì‚ãÓà^¢dðA6ZtùP€Iv˜ž<ÔI; 0fÖƒ€ºòæYô›ŸD$'Ò¡›‘ß¼qHÏ{³÷¾4ÝlÖQ‚NÝ-s,å+¦¬‘0ItE‰OI;¾7ìqž]N~Òó#dÆÎ )y/úpÑÙÅË¢øó·;7@9õ^I~É -òÿûýQšã,ÇI·ˆþ4¤·ýà†r?rHÔ°Ó‰.ÃÄkèÑ®3¶]RnºÈÁL2¬.aŒ"Š–äPNö@%À­º. |Ïñz5lFÁ(¸’¸b,¯ÁFb¡MˆA8Ý ¸ \òóP¼™QHq¨]Ên8ìq”1ÊRˆƒv«ãkh“ƒ±x#~˜gx>v?SRŽÑ·„¤ãMÊT—ªú¤Úë Äôš’ÆHHJ.ÅÊ¿%É1´»ÿžæÚN®Bá±¢8ÇÊ2½n7ŽŸÖÓ0ªýÞ„Dúõþä¸X£ ™Ç'‡3w@4 )PPÒË1-gBà¢)0¢Û.y|ͺa¨ri7”Û>špTU\<ãY CwžM>¯Ãs+¢'m ½á¡Ð,÷‚–>[ÝØ‹ÚaÔþã"v“°6XõN¬Ïb±îÁtå5){÷Y"«\ß„À umW@ e“ž€F¢ÁW~Ø’ì’dôC‹"¦ï»Fòr/“±ºI81Áù κ{SÀ$0}$LDÖðDZ?ÄPk®ŽŒi(>ß+†>÷û>½ÊÅq2óõµü Û­Ø2±ÞÄ LQ€¤—\M–ÌÎïø]ˆ¹Òeפ¬ðpÓ·š=W´Ê ót'˜_Uv_:½"§XJ­¦‹S¥—ÜÀ´8'æu%ž¦AhL[yàßã ì¦j¯“É‚_ÓúµlÕüLë{Äq¹ ©¹›ß‚Þ.a¥Gi5‚2®rÂa2ª/)„r~,Y°([Ï$ÀÕy:ù½½¹ ®Ý£‹Îá0¼ÐìÜ í圽ïk)nÂp鈵1¯ýœÙx(rrhãÐÛ´TÛäË¡AŸÿûåá¡Êèµ4h-iîC Aaë(C˜ÒEiWc•>bÐõnÈëø˜+Ö‹¢qò†ÂZéȦ›µÅULJ™»ÿöø£¶iï `z(¼e8“ØÀ¸ËX2GÇ@ÎÁ¨D”…Ь+ÿ{oÚØ¶‘,Šž¯á¯è¡˜¡Å\µ;J"˲­;Ör%9˱$!H0¨%Qþû«­ ÔgæÜ9o4htWïÕUÕµ¼~ù¸Y½eǘ@ûƒ4ˆ†öÀéª~ƱCâ#CÒÉõå¢sïeö•ÕÍxSö••30N‚dˆ™+Jc­EW¤¨Ãfp|Ôg:› ÌH°¥‡Ñi‚a}g-ÓoãæÌÀ¸Ï›§[ ½i bSˆ')€µTó½'‘k·„{Ií BQšo>.æ˜ÈŠ­rn‰ì¦ Ë0ûDhÙ ¹_£¥Ë; ff5 ¿ ðV®¶µ{¶ÿ#üµUÙèºÐ¿ˆ`U•KÆ ·Õn±Nj4Ô½Ï룧6rÍÃÇÄ*«íqÆ’÷^PË·­­—ÂXmtsVÀßí9ƒ¹{ă5ñ•òýûU:»©9‘ þ~mÃUÙží'¥jfÆ’…” ¾ý–ÖT :Ò‚ó¼Ë†¼;E‰õZQj3›ºÂná­„ÕlÂé?vVr)/O;Ù„7¯s ë«­¶Uôþ蔬jÕô{Šq~ýâ^ÉÔ°ŽÛ÷?«5ÅÿŠË+ú'u{…÷—)$8â2Ú^EÍÌQÇWQédà9çLú‘ð4ÝÊïܪ?,æ}5°y2V#çÌ=U­>T•=ùéÜ× &WØ_Ùñ¹&îžp]ªÿàødçÔ$XÜè.žb„ó?:ÍÿÒ‰~ÚT?¶²i‚ôôgV–½óÉòŠvìÝZç=…!DÜê.RöMa²³ÒÙËÙ)‚ßÏ4q(þÍaß…ÀÄ-ÅS ‘ã·ãÝüðå’mn;÷iŽáž2?¢§ï_ì}85*{hɃçÀ+<³PNข}åNäÔæàē ‚§ûO*’/àk]´Ü¢_ÌùÌÅïžæ]c/ ¿íYt:Å+5牒ã½Ã³ýwŒikìF 8qȬ>í¯»ÉH½98VÀ‹ÃÚª’d® Þº 2K@C¯O|ôÒ9h4^¸Žßõû®4v½I<‹¯¾ÿƦbgTOñ8æ¶UmëÕÙL/½B/ѯ½È êwíA½#üùoÝÆnté% `+¾ihÍElL¥}¶«îyÉ5†¿C²1™ÅYç~ß*gð‹VaÓ÷@’³¸½ø¿lcÏ\|_ú )‰ÍjØôõ=‰­ÿÞˆ›æ±; ¯#h÷w0çׄÀ¿šÌóDÐù1˜ƒˆè°¶µÓLm‘S HŽ~Œy1ñ®ãÚÖáÞ§N§ÀÚqáäÖÁiЧ»;•ÿ*ë³tŸú¢hj抢ަ‰¾n™QçkÈ»Á#hÚƒs¦_Ƴ˜%ŠñŽxªÝR¹àXýãú`‘bûØqÙíÁ©/_öj…¸å¹!f\C×_|!ã=ŸË¨WpF¬ÊrU…¯Æ+äâÇd¦bIíPÐGïÆëψ(ê÷›Î&Y›uE—»*Á™&!Ï`Ba'—§ÛTòà€ÕŠœÖc€ åÂ,¢t&T˜”+L]t€ª;]( à n(µ3¹Íû©Å³H·f']8p1¼ø3Þ<ªÍáŠ)q§‘÷ëÌÈÕŸGÂnttù4À/‡¢ò%zú‘`;'&º$qU™~ïàFç ÐôH×¼Ð1¿Oq®Š¶ÏwVËZŽ1È€j|`O&I¨)žÚÖÿ=üq ãvÑ'çÆæ‡‡0Ëh£T•sºn{ÜOFê (÷Epûû±9áÄ÷§óa)ÓC~Yw´ÚkÝøj++ô(æÚ׹ȞvA¦ïu&Q'—Ƕ­­mý¸Çá(}Ÿ? n¼¹û*V:º¼}@o o¯1Sñ Êzfª],÷©¨Bú4×DóiQe:ZFAeò©¨$»ûjZÒLɹOùÍ U\¦yK¥ÌÙae0ô€M++ƒÐÉ¥ŒºŸõÝ("–. o—Jhƒ,÷•ùˆ´ã-HB‘ЖzæÎ fª×‘ŸxÎ`cJˆUw—CÛk ¤o¤s“l©²Ù~ÛÕr6ojÈòåÖ­óe«3ƹL€~ ݃ÇÒý%¿üê´kâl¶™bÌ¿:ÿ´¾ºªèw[þmµ[kNWµ»ÝµõÖZ·[íµîÚÊ©Ö_ÙˆE3œhÊ5pC˜ˆÁ‚|íââ8Ô™–2¿ÿ&KÓ¶é°®vEŽXòþ€aAD!Š´<9ÿþémD\{s³¼B{E¡‹%u^$t½ò £®ö'}8ž¬]€ùvÇiu«¸íˆ Â…1z6¦”Á<§cíFÞÓüÞ دp6 %z Žà¤„ t~¡™xÑ8Öä º¨xMn u<ë~_½õûÀ—“òáSâÐF½Û«;.êPÒ>±¸š†èê*ª&ŒgLcEŠ~—‰H`A›”„AÔ݆³~¹cŠ~k:8»2Å`¢ º¬C»~1 8ø÷’úaÿìÍÑ»3µsø“úaçädçðì§çÄãe-àm†ä§ҕЧÈ$·Ðt(|°w²ûJì¼Ø»öÞZ½Ú?;Ü;=U¯ŽNÔŽ:Þ99Ûß}÷vçD¿;9>:Ýk`änO,ÀX0¶4;¨ è%@»ÆÜçŸ`:íðÆ@Ìzp²ëîéíÃs0\rŸL"‡ÄÂç(Ÿ„(Ò€ö}-4äõõµ!7¿áÆìP¤â©×÷¡ï¦ïM5}uêXRÑKÖœq[hã²ÌqÍ'¢å ƒ–I¥%£»*;¶—vXNëQíÌ’sÕiŒÝ[í¦ —-wY²¤JkÚB - é}ñhmÚe04Ð.. i E“†ì™q`{%8ù||…QJvìÇ´ôy¯Å^Ÿr®˜g®ní›gå×Ço¯ºåeÀ Pö˜mE„¶PÆ÷Ë<{Yœe!ª$ÔŒm¹}„¦ÏDëÌ.‡Œâ´ÓÙtÜò`⊠&l>+Î-J4œ¤Ç’ÀXøÄdùª¶NÒ‹r¢OÐ0V=64‘‹¨aDxÐ:¦hjm„v„æÚÇá2`ˆ ÓÐ쵆ááFGxñ¬ß÷PáV6âM ¿8Ò·K¢· kg˜OâéÚùg0^9üÃ@‡1³²¶"¸Ž ‰ hêö/a¸bÜìÐ/ÃñR,&Ë8qÝf¨cfÉS\’˶tñ°&w 0r], šÇ¡ßsp–ªùò#ž¢Œùwl1JƒºÓlg×Ö sJÖ‹(h¥ÎF‰DjGÿHûõR[6Ü·uæÓQì«?‹è“”‡Ä‚Ê8Ì»«{`¸€Viðð{jÂÊÑ“®§*»S3¨H÷†³˜éßDûs)LßàŒÙ8Bï>7hˆh”Z0÷MøæWzøˆBIç`çðݫݳw'{'ÎÑñÞÉÎÙþák!Û—DX4Ç]Æua…¯aü.àdu½Þ–oŠ ³Hä: ù:…opD³üš÷ÕE¶'0ŽcÏ„Üme.ië òU Í ÷øvù¼ô¶T¥¥ÞŸ§ñW¬sð { í( —egØy»¿sZ*íÞ‡¬Ø"µtÄ2H@MÀ¦(åŒêÊqF^05\ŸÆÐWL+IÄ9˜?Áü)“aòÖ„î[Ò¨¾q™òWX^c«>Äf«v¡Ò í [†¼QƒéË¥’ ãŠ;6E1êY*ØX†‘û4©¾³Ì±81¬µ¾¶¯™ÞÒÅn8áó0æMÍv½‡G%MX=§Ot–û3tgl»\:‹nÕù§ Ê#hr«)YeI„°¢.JúáxLw¸°SK€§Å â¯,)g˜“©AXÒìmCãäeÖ¼â%‚“¨e½\eù›A/[Âe¢gÿ¥8ùròq¾-[¬tD5ŽæJÒÆ*ç‹Id2´] §Blë i %#0â‘‘HüSX-k³æd¨oç'ÓœçR(›»6×¢1lo9ïuÍ•v;R69I¬€0Xà p¡f-©W~3uQZ7âe8bN„ÙÒ¹ÖÈÔ^igª0¤´ZOréA‹¡ÄS¾DSÞZ¶{BTZ} YÃAIv)í ‚k/ÔZ¦tâ92¹5ÅãEåYHæ¡© 2ýJôÑ8DŽ€ÎÄ–»GÇÈÔÝê)nÒOÕ3 À¡Æe<¶ßàZiŒ6ìó¤ÏQZ6°½|¾5J@S÷¼a¬Í„Û©aðÏìÿÎ9öþgçC͡ϗ+ÍóÞ ñhêò¼äþW1û><–¾@G¢Ð¤ ßK8˜¥$À ï5R™Q’Ý Ò"³>Àw|*N‘J/ÅGpM' Ìˉ—Øi¹WÊ‚ê¿âÐ2ó!Ná8ý‘ÆäG‡äñ1JÆ—Î$¼reyÃx:fh(¥çÆ~ÿ£,ê' vAÐr–1d×ie™þ *ÔwÀËø#ÛSK)÷ŽIÔÆÑÃJ*cØ×†v9™%#nŒ{ËÓÖÂ^àþæÑŠ€Íÿf·o¥­çºÌ<”¼è¬Nr©¿Å>5£­ÔËK®½>ýø“„W¥gɲ~»Žb]ÕÕ î¦øž¢€¢Y,K›Z' –‰½lH¸§f2•˜(M¦ýkú<¯^­ÍÊ!1¾äßXs€A"µR¨0ÐV-hÝFçjõ3á­äà­|&<Œäý~ÃG `)Æ™ò’S~¯ÆgÖ{•Ö»¤^’Ë öQ”£ l_ ¨§HwÜøÜ9¹Zû¨µ–›¹ÎçÀ› . ÞŸû\·;Ïj d7Íä)jì:”}­Ú?¯ùhXk¯oè>°} $d2¬f?¯f>f¿éOÓ¤¨'÷·LŽL«yN£{w•ɆOSNã´}c?âŸ$ö}¾µ©!©StÆ/,Þä¥GÂX‘"2ïïE(µÏp%Y6‚ ‘,™ç“û®C!3B9R饹¦!=Sà ÄåpHHC¡Ì"û Þ¤A~$/ t¢o/Dh(£/Úë«-<{W7ZÖÊíl^ÊûWw–ûqù‚*hêN€,´ñ!}]]KŸ×Þ¯§ŸÐ÷öûµõÏO9@˜‚· °µ•¸q·ûƒð[„§.¹°Ö cJ¿ï<~ôÞ½üxõ¾#Uãsž­oëïá_]ÍU¤îØW2'ôF™ÏQA†µL†µ\3 ô<÷ÑoóÖ2æÁǽ¶Ê¾Îg‰ÖÛ—*Ÿ`g³Çin’›î¦JͧI»ÕáRðÔÕ[iÞøzA&òOaúøy2ˆiÄé—ö=i¼<ñéxÄŸŽþ¥ÏORõÖ9vˆ,Õ9 E9Š}ËÏd@zû’–¶â_²é/ô€s)u—ú¥µŸ©¥Æ×¬¹Ü1{ò¸Sè‡øŠzFO{DÁ:¶*œÓNçGäáâr›+ø±³òÁMŸ¨ÛøÜ%lOQå§ÇÏ%/]/0QWðÇ$Mùt°éS/}¼Òk7ú1ðóè'6°« ýáj3}ê¥W:óŒwbKŸÏø]5«ò°&¿8oI¤ñû¬‡‚=¯Wpt(þñôo[?tôClR®ºRÎÑM =_{f!ÝlàŽ»é·©òÞ¶)ÜÂr®ßÕÿ¶Ñ𧼲đ‘¯1톜/Ÿ˺º ëê\ÖµâœkùŒ ú;ü„Íóe؉H¶RN7Ú6ð;êë§vǤ˜§¸ÝÁ‘›\¡×ZØ%0Wgú„Bru¦5o@ÍrÀ¶h‘¯}×î·Rm—Îøñ*#¤+:ÿ¯×ViŽ.µ,b· å$;F¥/b\iC&·’ÑŒŽïŒ…ëÍ—†\¹!¾ºIAÆÇv–+òz…Uy½|[%{Pœ=Èg_BA&ÒÕŸ¦ýj&×'ÉYÅLšú~Ö^&ai56÷@¹ãe\󳺢 HKêYg™Èþë0(™»¬`Ç èÚ%¬±ç }¶ÓÄ{2•ªñ†#³„e4ï¸wàÐR„ÂPéQﯟ ¯N÷„ÔÉ A-‚jjüoY;\ØŸiœª´Ï«[æF Þ3•ŸWI¶kä¿ÕÆ‹‰é¦eKá„òlð.N-å^Ì3s-³1ŒùJf4ôÍâbì„Õ5û˜La :ýd“l†ƒÉÑLŒ/›(Å„ã1EaãÔ¥Ž©Kô˜'ÊÉÌKÍ”¹Š8yˆÜ ¥"ÿbƒáD¶O”äT¶Ûï¶èûûþ/ɇM~†ƒÈdDއE~AÏk—o‘«s#+D©È ñC`@yÁMìë— Ž°Ky.Ö[\/²FüI«€=âß›t]§D©Ä+™dŒ  ã0Ëd^1´€õŒl“yOÇJX'ýŠû‘r‘»zØÔV)d¢8ñW{„‘‘ÒÏž™Àšd§ô32T”y)ó˜Μ•SÓ¨¿%¸_§t×ÒÇo;úÑì>78ycƒ[‹,? %ÆOÈo™2†3ão£–f™ÆŽãÒóÌ£¬XfÍÌ£ÕbÏì7Ù~šEË~b®ÌÊ Ù´\6dÍì\̪e3Ioe?›I6Wʲå?#—–ÉÂlÛ\¶n>[·(Ûj+—Ù·¹l›ùlsM'ÆËä6n.C”ËfZËeZ›ËdMš°ts²U1[7Ÿi-—©¨*àæ²¹ˆ½›Ï†ü\.#³xvÖìX $rwæ;³zæóØ7 (&ýDŒ~#FŽÊ s—>§‡òqœŽ ]ú$»GØ<“Ö2§Oy ˆó“§nÇluâþÌ †½I_ü·±¡.–&&Ÿ~‘Þ³SÞLÄê™bâùÅ| Ø)™7élDeQ¿";HÑË?°§=z4#(A³tú¹BûYÆLxDýL\¢¼˜‡t]Ì@7¯È2Ê£tyFSrªOraíçžýr•¾÷˜¾ÿ˜†Ld&áj#Í|µi?÷ìÅ3ß|«Wi^|}Ê“©ŸV­ÇUó¸fžÒ#—bœ˜—(]GšÕïÈXRqâ0Ó§vú§ëñªk`¸fú™3ÕoÄ›ê—9œÅß="«ÊOh¾oZoXWþÆ1MôÇ[Z~š•¥¿aÇ—Ÿ@ÄæÅù²d„=Ž“„­TûD.9_»Ö×Õ„9Ö–Q=å8v„T¬Ms9§i+)‡pì£vë/ºèÁšÛÝXëŃùÖÚ±„gƒ|ÒÚ.IàÖY^‰?¨ dj’8’:íËCì^@_àa6ño¦ýÂ{›C0Ð F×D𠙆‘QÀ"7áŽÒèÙÀ×%zn ôÜ|¸ƒ¨kf¤ç› (•2¤W›3Ó®€œh );_œ\ÉdŠ$$¤ßnkmcÑÝ~×eÆÐÍÞ:;e&¢}¶€‰~mgs Æ_2Ê^ö6,U¼b}«fz¥ðÜQ¯ŽìÓcH~T¤Œ?¤›*ü-j‹í†Ö.ãˆOƒ°`¢sŰV)fÁeÊ` $L Ä-% 5ÅHŸ :,Å 7â|IkR£¢~Š£ÝÅ(íßlQ—HåF@W8”¿çî¤_ Ú©|,Å·äV‚ nÿÒù’Ħfôûr‹fŠ>eýÍ·²°5½ã÷Æ¥¼’Ÿ E˜OÝ|/s>ÜÚ"hkØfÆ‚DR¼ÒuÖôŠê{Ã~JÏÊi81£.DJfN¿@4Ùo‹ ÚÜR×…:…:ê•ê>\¬aBâƒÅ ö?$.,ÆJm¿ý/÷=Éf ªb™Í\±ñÔ$á>þ-JÏΞ\˜²¤8›,D°˜Ãd¦PÀT=Õå%‘{sÖ̹PïÏ!åÓ ŠfË :H\رK×ôø³ðÈÁ:»QšÅB9 Z ~Æîü0—4ö%£d"’v{}«"RŒm“ê&¼ÂCÓ¤¤cÚ±UFGÃè<F'…$x(wå’ZǪȿs¾svZ¤¤€Ñ‚¥Ú!ƒIX0Òú³]ùFѱº‘ͬÖ®.ˆ ¿à„\³Oȵ©(VLAU»€U†KMo:4«ø[´|„çí±/LÚÿa|c•®IéåY0*Vq»“^oN“ƒ)-Lu!ÒΗ`Ù-ý;‡¨X/w?¯î1ü,¢ 8¯.·7h•î±ÆH{æÓtÙ‹ü~‡z¿†±†yqÓ˜3…2Ü,}=D‡W‹:Ñ3?$ÉgÁIŠ\0œ§Ü†aÑÑ’%À0du[«-ÒÑ6Ú¸Ù’Úƒ¸(h—Š´uI,>,k˜çÊŽc»Ü œ +xÃç—\]Xãê}5’>ø‚]Ë –óhJâÔ b4µ³-¦˜)_výR‰Ñt!lŠŒ¦†f„2—›i4œ¹©õ¾h[v;7/;y—Ýö‚ò gŠwßwW˜•Í˵\mkOnï:d^·AØ ÷¬Ú Œ «ø†)¹¤^íÿx°·¥"®Tõ­ •}Ø ¼dkTëÒ[( äôôó¯o|Ø”üæÒ7»œ¸ÙýkšEcÜî®­KŸ3)³ÜÌm‡x d¬¸ˆ&t }Šc…Ò+iåÃÇóMÜwS•1mXgÕB8Ð7$‹5àÝ(¦ @Eç Kùïç•í3TkÁȌdzGIˆl„)¹ð€û ¬l©µàÔ¥:·;œÌPågÜít H)šFüg~XÇ^‰w˜¦š%ÞeA™¬ÑV¾.s }ãhÓ#2¼~Hp)Êþ˜Ñ.VHše(É–-T$ðšh˜ÌiaŽO¸ðHOõ¤HmÞªÞjþá™þý¶_àŒukEëëž¥Åø†Š6ùÞÙZíðóÁåD¶À‹øÀ¸-è\âô®^\˜RÑtTÄÓåbgéqáì¦ðïõÂ"¿Ì•åܺp\(UÎû”Éhÿ¹Y€rÍqâX3ÛèÁµ ytö«Âvš—²_éÜ·_Àp’*KNg2ê2ýhé"öKbê£lŽŽñsÚpî´( y‹Õ¥V'òzžæmŒ(¦°ø³N,(>m˜§Í¢>ÐúC;_Ó”ëÔ _Ú…]S¨»{ ’)®b…iúºèì\£µ^P5$bÀ—yœ+ÖÄãÛ/è+~+>«5YSÙØæ-m–òØÄfgþdŸÏÔ-:â'£â5ÅŽÍ.öoÒ ½_YýP\nŽÍ´ËÁzºÝ\+Z›:¨¯žÌš"­Ç⌺2c`Á|s(]]€ O å¨BÆÔf¢u´†‚¼æ›ÎlÂ1à^>stOæ(›9œ®¶X$œ®µúEèOsá¥>»2¬êµàöP¬âB;¥ 9äΓ0^)ZóW;”Q ‘DŠjH&µpgþPÆ‹nŠ3—±”MЧ&R“?'’pÔ ä_öBLY¹)ò ·5Ä7.&Y¹Ø¢©ü,zuÚ+à˜Oßd*P §±µò ŸÒ:XÅ[†E„)}6E6 Êéi®óA£\O½\›J”Xh%jé_Ò?ktÝUˆ¬˜ïö»÷ Ÿ-0°i–_c7tÁ‹Ú½VÉGå y^Ôª"X„º¿^/EVéçR~Xk‡ƒõ…p8 ‡õÏ?ŒWÎÕ­iõ"´ÂÚÖþ|m¾Ï•ÉèÚ/~ö[qG?£êB-šŒ',@3ÓIæø!$»\„y-!ϔͦýžW˜5C¼K",RÔ]ìÉ="“¶TyÑO~Xö‡¿,¬8È«qME2úž¶ÃÇ?Ñzàˆ‹Á¥íÌP¿Z”ýOÕn¼Yã³CÒ·,hsvu%÷Œ$yroâE÷7Öº-–$¬Îñ,ÓT–€LЇŸÇH/¢”kÄLJ/•ìÄ)?‘ŽÆïÑ®`‘ÔG¢[éÌ í\ü)¼ÜDÍÞt¸âî&éýu7 oq(=›ûF²j²ð«€ÛÙì5|¡â_Ü+2‚³γË4Îï/‘·3û" ~Œª>|.å5b¯H’)A’$7…J2ùIÝjÁÊH•±(o<8-¼¨‹G«E=†ä¹½‰ ÒE9çOªî|‘ÿ‡Ú7Rŧ³–òž“X¼¾`…ç.Å;¦Ä¬@Z€©ùv&Å\g†¹‘°Î hnùZš|ëJÖ·FûÊ¢…ŽžŠ¾âÙ¤U¿­l€UÈIíFÍžn¦XÁt[I‹uÕvyO]ÝEuͲjZ)¬‰yˆÅU­VUXÊ®«øêf®Xö†{†s? …þ™©z e&ýü€”zºŒZ$$c ‘–¾*@ˆh[°HÕ,¾½$*ÐÈáž¼"hÒ-¦‹©æÂê’"U¸äU82[˜/r¯²ñ§©aÜt7‹ñ1 e‘› -Î>w>$0;ƒn¢õ• T®¤kc]D°„¤­T`Zp·kŸŸTÅT@pB>Fk(=HÉç_Ánc­óÛ™Á}cm|µÑfQkŸ —jI.-«ð+÷¦àÎU‚ßYHVg/ÒNÉæ¾2ÇÝÕtZ»»ºÿmÈ‹n«í\Ì~ñ“X¯ 9ŒKþ[ò¶P#ür‹§gQÁëµÕ"㉵UçzP0Ê×hz½X%K‚º›Â{”ûî×nȵ›ìÄlÊ3‚ÆÝ^{¾i`s6èaËtõÄ{<;¹tNÙôø¼èú¡¡Ð"DC–CDGÏ—ûmÞ4À›r­{ʵ–é*f¡ %XL'Ôr™,aäИHûZµý¶¢xË÷™ø¢Vâ@ßǘ©~‚N‚Û ˆ:¶C‡ q]|šˆƒÓp:ƒS°ÁKì1 ̈sƵÖIf6#ò&r,ãb[4%×£)q@cåÎÞU‘^dŠŒˆ§DÄ™(ÆKÄþàÈÑv?€Ùd·¹/÷vuT_í¨Ð™D²à ÉqÐhìY|Ü´­VQUºÈÙZ=ÆgOê©'㔇ì4‹¸àF øõhç:ÓHä°`>û1Àayëå„&³E— ¨ÒmØÚ™Û­ÕÐâ9!_¾ã%Üôÿuû<-8´Í!›.,¡…Tv¡šU^[î¥4"! EŠpÃñ0;xÎ cj¨%ÿKü‡hïŒsebúheûlÌøŸ^ì ±æ ü!p¼Á“ )ר5a¯¤Çbðñ8 wè§‚4%h¿gAÚ5ç£Òã•z®,ˆÆ]"×ä7åJ—Ñ%ùM¹¬>”( wæ’WÇ)à•AøÞ ¹c¢í|!Ä9ì):ç6¶å•aë!?—šªQ´)1¨µrÕ­8_èÄÆDéj èYFb°ÆViü.£¦a£¾œynÜëwôNg»c¾îÎòSË_t]9Ή¯¢•Ô­ÅÙ#qpƒaE²_ٵΠF“XûÛf²Ý¾$mŸž&·dY'Ï 9†Â@,~H;T‡¥‡KAP&Ѕ䉡Ó+O¼;=S{‡/Õþ¡ÚQµº…,r1_d^¡“5}2eœ—ú‰ÔF!ñêʽÀÈx˜?Ziðh %‡JÙô‹Û¤&*P>û'm}zBvCIgж*qj@ÎÓ'ô1Œ¿^¬óÆìÛÝ•÷þä’3⬛<°j6@Túæj'ì`oNé7˜MØ}û`(Yôb¬Y«/Û<àèc&à&Pœúl^1B­™ç¼2=±ˆ4éQÎ^ä éQ˜ké0з« /å‰8=4 ¡§‘Œëø*‚Üã^§™³XÏ?D Oò Ïdf}46;ç!’8¼ "ý¨Síâ=VÄ'ÆUg…ñõs™½ËËÐÔ¡ãeà‹ýŒ}‘n±Gä\…a|#­ÑŠ087z„3 ðR ÝžŸ…€ž•© ÐþœÕ<‘÷c^Xá09OJŒlÀsA‚ õO†Üó8NÚ˜ÈÊ̸ñ/Ÿ¾Dƒ¿¡Mf.÷íðZ‚úd¼b%‚ô½| vP¦Üç†Nx¿šy^[‘Ö[qLœ\ô@>lŠ“™âdC¤dFìfzÅhÆÓmžz© .¥¬Ü—-I>»uN3²G¢‘ ƒ ÛhàFú;.E/×xÚöz½„ñ¥ŸÈ*ÐÈmªÇƨûäH6 ‹ôñ#TwcÙ¦Ïñ“Üø‡1ÿS7ë]ËÁd¸zxñfù¹c­IA›@_HfŒc8(Œ,äç`u:v¹à@w{r³Æ?ëÛã= e–‹à67—·Òˆ‘ë_ò‚‰é€@Ãb)JÙ‰%ìJkŒ=ŽWæÝwð=pìñiþ«xP_DrRÛµJûÃìT8§é>I Éø£¥çèPCËVÂýäd¸“R6YÃÑ-Øü.ƒÜo$©$éeÈûüjc#ÊNƒøk—¥|Ch¦7 ’&ò‡?mf7LZfa¹}³#¯…ú‹e,´¯@TŸã}އ_:âþ±€ wT5Ù˜LšX˦fòÞ_ÅBJi‹ÕèPÊ£ÉÑN¾ôÚ#J¯éÒ]«´à!Ý;~¥xv&j¾¥,=8œä~JÆÒ[Zêè Ï*GïÖgû“!ïÒ¤§ª¼|=PôÁíû©óÿÔ)‡ƒ.;­°üjFì6صpNÐRÿ6¹êú‰ÆóIœ!ßͦã˜Wrß®žùw”þh«¾ÊÇ´ëðlÈøãÈ‹½èJ\üdP …¥D"xµA;—žX ˜é›œÙóöðf˜•dšNTz àI•ˆÁHÞÓÁ£¾ðô…•À‡nq‰ÛEe$ˆ,ÅxëSl✔m †c9m”½ÍL š+ør£ €1^ô—b GÛ`8YŒœ¡“Ùf]¦~Vœß®Æ¡§?ЋYýD¼ëO¶å9©×[(_$¿FD€Á¸aLBŽÆüÉ©*‰°—ú˜…o°LÅ˦737Èì‡ ¯aüxa†4{@=÷K‚h£[*d<`aŒqbo¡µ3ÏŠ´k ^ypLEª?‹"o’·r+ôÙE‡ðQžY1o!}JQ–9Hìµ{[Ÿd«0Ö¡ËІ@‘xÃD‡s§âÕ#óú‡6‰nSꢜ f[fúY Õ˜2åe ®Šá½)Âð$ê!è=ut5›â ¡‹Ž9ð+ÐE:<²] °ëôÇ—5”˜š¤ôÂ+ŒÆNQécˆÂM¼kh(GW{¸¼D :Èk2¬„*À›xWcW‡ä†)i” òbö\ªw¥B3%×à, £‰ÁÝÄãµ=»Ñ¸Æ#BÀþ{c?=ŠŒs/˧žö ”Ó«7ºóm2>gç?i}à´Ç¾âOkÅ_æðiÏ»`oÑžª¡ô_Á²‰nr ‘ÂÈÜ>‹¿HsŒ¥—† Cü÷éï,¬Y1ƒ<^Û¨‰Û*ƒíˆË•ïZ%Á$“k´l¢c’ÉÒµáSܶ‚y{Ó¢¦hÙBù¥ÈÔ hœk¨€Ž±fi¤{fœù&ƒÆq à?¨ãRüœ9 S_“µ‚qi7Ú¦Öž9Zz)%Tcr[¡óÉïÍ(™Ã¯Æ—[æ`òÛ|½ö ¡œ¹ø­åââ忆—þ‚/£©i^jÞR³ !´¡ƒ^$Ú!sM ÖPÛßÅi^Íö-S³Œ, Hº†4‘qýkzhÖéÐjœD2,"iØÝQŸõ̘HÔCž3Ä%3›¸ª±Æ²ÉGóÕÒô£QLÒæ w%³å&Vó'&yh8dô—Ò.Wq¦ùtÍWÒí.As·5OR×ÄëKÑ—xhæe¹i:+š‘…5r~|µWqQÓPâ[\^ÍÝLÓ†§j²sÛ¸ÜláºY3£çö­ñ&ãÛ"ª°cMtá/ ˆèԻɼ¼ãëö˜M|ÖôuÕB‰0H% &½$â­S¿IE‚pès¬i+K‰i¤m}óºøæÌºEÌš~¡E¦$ÈøBÒyK $ÌN6›‡ofMËß‘>“‹oÑM®ž—C^7Íw’Úg¾“G ó÷d0ŽxÒïFIÖdšïŒx939èj “c0´¿ÓBæ»¶Ä7Yøâ#“g’©ƒ$ò©¼ñ¾aKýE9tÄ¿tzŒŸÉ£ÆE0Н´40S’õ•LI7?Zú;—qüà´¤2¤~~~æà=ÓKáˆ}Úç¹emô~³’¼G_—ã¦ì¶f…a6ËŸ,ÄQ*(Š’C亥¼¥˜òÈ.¡Ü#Þ‚$˜¤-õÌ œQ^ªêu„ÚÕ~àQB¬ªè Ø&±+° æ ÿ’-U&_Á˜²]-gs\`8ÌòåÖ­óe«3ƹLÐÈAE÷à±ô_ÿùû×ýýò«Ón¬5™¥o¼)ž¢q@œ¯¯®*ú]ãßVg…[­ÕµV{Mµ»ÝµõÖZ·[íÕõµÎ©Ö_܎¿®bhÊuàN†°^ òA¶‹‹{àpg”ùý7ù[ú›jöüI3Áö“éW¹ \e #w¬Ð® ìY à|Ž*ûÏñ..¼~—Jq?ò§‰ˆ,·;­v×i­:ÝV£µþ\-©wg»ˆŠvÃémDJ"Ïv—U{ssÓ¬+êUäyê4¼ Ëõ*œM$fª«ýIŸ¤'ıêVÁ#ÞѪXJ<'9F<8Z€Ñ2ˆ” €@j¢BP8ð/n $ÍÐOKB¼hkiÙëÃwê5õ6Pdz^à÷Õ[¿¤§‡bJ<lÜ»%鉷°Íϕ瓜HËo;uäòž¹ ¶2R!©° REm>ÒƒÐY {švƒÔSÕ#8áE””° ¦G1¬.fŠˆüaÿìÍÑ»3…ájØ99Ù9<ûé¹ñQOÞ’?ž>J¬Ü(r' ð£à`ïd÷ ”Øy±ÿvÿì'lþ«ý³Ã½ÓSõêèDí¨ã“³ýÝwowNÔñ»“ã£Ó= .O=OÈÎ{Æ’Ô³ x‰ë1uù'˜=Ø‘0+òúž屇úéíÃS„ƒ ëœ* É¢ÆêRÄu8K=õõ(I¦[Íæõõuc8™5ÂhØ FÜü†³ƒºH:´®Q9bYÔ}m¨‹\wTº©-´© MprbgÒý%2Í *jA½P6+fåm¥·!-?µ3KBÌU§U?voaYôƒÙÀ3«[VhŒÁ¾L[¨´â©R,;“ ÁÌæ<ÐðQŽÇlXBNïJH`å`#ïoå=uøW®ú:ÄŸïý~Pà„oô¢oŒÌ®ÌRÕêr oúˆb)WZ[ê¡ ÀLE·ªZi)ÇyÁ´š.Â4î‘2K• É•ŸÓósüq0‚$”®q5}èÊ×_Ÿï½*½‹Ý¡·epÝ{®â>Èæû ŽOŽ^Ÿì¨÷;'¯O?”J'³‰N;U˜ÆaÛ4ŽÄY­/Â¥†„‘Ø›\ù@Ò“L֢Ɩ£Tÿ^j· èÆþ%ÂÅ Èúès6@<ôL+ •5qNª™ÆV±HÈñàèObÃQ@(Ò..ôrïøåþ ø°“&†9PÔ<ð2mp'r®”…¸B̘Œ§&ï™7ž†‘¥ùfÌëN¤Àܸ"„Àï%aPU?Œ»… = —aÜO<Ôx¬8¤¸{_ÃðI8v/½ï ÀJÅUbUå[kQ]Ñ¢ºªÙkW/¤Jæà+AЊ›¯EÈ—)B'¸à }DÌS71o#6DÍù‰`VŒ$bó°]\öNz½@(§¨<)ðxðô £Ÿ†×רÓUÕfUõG.,¿„Ät"!LF™ðP£{ÉG¨ããEŽÕ³åÒï%¥2[]©Z³¶ŒíÞ¦\i—3דÍ÷?7?Ô*wÍ»ê§ç¼‰QÿŠÐ; ÜöÐų‹ ÿM)Q‘z€ZŽ…4|`ü ÆËW¹3ø˜é &,júÏZóî®*þ¸Îïn@OèÖŒÚKGNºney_N@I áÒ>ìZAè$äa´Áà]¿FÄ^°àEðú’‡‹Á$ fãñ­Þu¤šâ^…þ€ï`bsUboª¿¬Ï =lã ,Ã3òP£÷ÃGûQoP „%úVVßÀxH†2w÷•‹KnÒØ&u™aÂ8Aoß‹c¹{¤I2‡™@Á›»ï×,Y¾¢îß|D óS–¢*v3Ì^£äú7±¾R_¾ 4'™63‡œ „…³> ovîêÂî,+ÄEpæ'xr:0*iÛÊÏé~޵(Ô$<3ô&hªz†p˪­1"Œ¥^Åq mrãí=Pšø ÝÚŒ€m!j+ÆD) T…ñ} |Åý 0b$ûnÅšÂv™-Iå B¨Éëy#^f|Ux0p’ºHROÑA£7ææÿ®wK9®Ãn-R PáëCm«®[Y/«¯³£&H`aÑ÷•Äí©µ:¥½W¯Ô·êÕB0d*&Áˆçç W7^Fãçù É>¯ñUÏ&ËRìX‚ÔíêUÊAºˆm5ý< ¶«%üº«ÓT„s‹²<¬_7€ÜÇ)Aª…º*@É'Û1ÝûR؉’/Ò uܶw^ì¾Ü{õúÍþÿùÇۃããÿ{rzöîû~üé¿K4rÛn¯e‡#ÿ—Ë`< §¿Fq2»º¾¹ý­D¦ ñ6’\][ߨ,‘ùívåw‚ýGåwc`–úo<®H–Z¼³R™BÉ%òl§;"s€n©ïÍYÆ¥ëšhÁ«I#}ƒ{ÝТUÀró—6wŠtc<ë5{nÔ•ýÒûE CÀ±¸ ­ðcúr6J2éÐuyr4ú—.¨»’E‰»÷?ŸŸÓñU­üΓCÐþ¨6ÿ~÷<¾;oœ?£cá|¹r×8>ocâ1ªÀ¿pâýQJW!Ô˜¾˜JõM•3l˜ÍÆÙy»‰pJEË×#mTÒX½ÒmÒÇ‘Á——£Ò°ß¿ÜᶸñhLàq9Œ!ƒ/õþ¥ÇF}ü‰¯l›ê ÄtßPÐÙØCµÙßòñ!q%^†‚S³Öw'ÀõÕ¨e.A0R½#¤¼YŸÂ$ã©Ì¬ÇLΨQ4Ìú·ÿ¶Mͺ^RoŽÓãe†f8έb ¼ ç• =êñvRêãßàZ.¬'æÇqœ AXjÊ,šAΧɹt^ ú÷EYSíÜØÍ°Psú·C¤§>ζËò¨œ®7§\ÜÔq|ÕGÝð{› ™üŽßþtJ«áº ¤€‡šÄŒhTüÿ°¢^Üjã–þ%äˆGŽ÷]&%Å‹ù€› :cQï…€Ø_v|q›.&¤]M7«¸Ùâú9üÕ›õaÕ«Õ‹§ û¿þ˜è¯ÿ{u½¿¾¸Ó7Aßêîþ‹µÛÜýê+µ+Û!ÆÍ›`—·sŸ°â^´)±esúöNù·?äÃmRw^lÚ¯V«€ OÝåÒÒÂQ]’vÑfŽí* ŸM¸cbÄ8ªQà)Xü‰wØ7JýäÞþQÍ3ˆ#&*ÐÖÈð‡¥ ,*‹¼A‰¼A©Ã’X7ó;;A^…É®]FÖp1oÓÆ1}¢“:Ö‚zv‹Ã9æUOœìÂK-e&Où„n’Û)êVÁRÊ_¶läõf~ÀÈ‘³ÌYZžõÂ#™ô¢—R_–¯%5«7(Ÿ C ´‡5š‡3“ˆŸKÍb³}h¤ˆµ¡5‰¤°,)¹£vj?£\ÝBùò³fh\Ý2lMPÞ”Dz=¨#¾EúB”û3ÁÒ.£e/ôhjø|:h ˜L­§G,ã ÿF¤„ß¡–hÚ88?}—o+Ø"¦:Iéæ6¢h$øôz÷£j·­| Y«t)F‚?ÔTL‹@úa$ƒ«Ô  ‰œ¤êâÅty«‹Äìð™j7‹cº‰TþW®L‚9¹˜l4;ÄÏçç(p¦·æÏ•æ Ê"³»FMpCådÍ-ú<£ÒT[â›ú(FOH[ ‚®ágˆ”k2ú˜3yôP Øs)á:¡—0¤q’e”àî§ñØ|«¢ïXÒ7¶=±?Ëdc´DïBý‘×.IG$!©˜ˆ;@j¦)z.W„fGæÖ‹-ÍT b{8fÓPLõE‚C!=%ÛÜÈ&ÿœ Š£q¼n‘î¦mKÒ6Bˆ9Clàe…¹à‰Í5Û:_ÿÄži$·eQ*ùö?(ü¿ÓóoŽ]´{Ôs¸Kw`ÑîI1ùÐŒçø*ÏTÔL“$û€J‚AªÙD8ÇhÂÄÂ@gj‘/Á˼ôîÚðX%¶ËÐùÔª¾HÒvŽ<‰hÙxúÖí¹¾3Ôݦ¦Wä9¡Ó’ú^T·Öx²·öÐâàIö|Çıun¤ò!½W¶¿<âJ—[{/ù鲺1Ë}ël§w©L Ã°rƒ24{õ?º²…ߺsßäTüü°]μv²¯ÝâóQ$H–¶ ÌÛ¡Šà©ðDUÿ»ê!©— }ÝAË^Kú‚-àA=;ó'·°ãôN[fÍ­J«* ®^)¾ææ-­Õ [ÍFgIHÒ3$•õg¾Wa%ÇÚá„S:\}Ï2}¼6tà ^þÈ\*3JmHá¨# µ$šÉáGÂOò#U‡¯ó>°AéÏð÷EOñ:r§rD?Ó›6J£®µ&™ÀE,\–K ·ÈÅÐCU=¯àOðžzIª¥»t¤Qt30¡Ÿ}ñk¦MÌöØÀY?2d^!pc>ÛÅF•†ð/t™X5Â9ȧ©‘òocRþÄ!J zf‚–l«»¹Òw/Ö Ny“Ž0,„2É+4‰9/ËüWÉDaNÖZ¬Ð€“PÅ9$Yz•—Á^ªÈÂ* ¼4òb‡ )ô.ÅV°8[w†&½›§æÄ!;“AJ}P»¥F![°Ê:›]që<œWU©ù[U’cÈoëÕ† †O´êRµóg@¾,Ãïyåî¼½u7}HBr"r’êz•Œ5»›3GöuL^à&¨K+’T…`!Јœl¼¡¬‘ÛóªGŽF•Ga÷š{[j‚Ák]­®,§>žå ¨zHCôVÕM¼Övú‚ÿÂd…èê”9k‘’ÃÓkÑð&ì³’ˆ¡Ü] I2Q® ¿\à éP#ßcèwß«±% ¶oÌÍ“õŠÝrE$xÇO«“:T&_›ð äB†‰²ÔÒEX ›Œ¹rÑs'Œ»W:Q $¶%ÈBZ-´”9©*º·"O°tóB ±UãªØVMq/)’pðÔU ƒ)Ã-Ò`ªŸF%­IdasÄ×¼g±F [ A5%§€séðvaµ¤Þ‰ÄX댈ͣŒ mÍ*Œq³óÅiÌ"+žO8êª(ÇÈe un€7¡n†MƉ–KÉ&„ ”ø` üBW`tž¦Â?ÒʶWˬIT”^Õs?˜Ü•aYj‹·eòˆã§ƒ¬É 2Kï[IBÉÓÎX‰–*fpÛP_ãéJ!_‡’áš7¼MÑìNX²xàå5=ÒÈ “XsÅx\ÒvH²¦L-ßÒÄÌØÉž‡# (ŸP®­)"Í…3ÑõS|6â’ \‹;£ ,î ÐÌ/œ%ºÖ;{Ì€„.žÀó¦4»üçoÂ{ ʬڟ$]Ho![ŠrIZ|Nfb òYJ)5P¸²Pyêxôø¼1 K! TQ\6+6Al¸ÞÖ¶òê…ÌŒË?ŸŠ+¢Ý>å”Q“ƨÊ2˜Uëc°5ütˆ®#Û¦OøÞåä‹Ü{’ë’ú4§¾ŠM(P\ýd}ß2´!ª‹ò¥S݇ó*¦óÄáçßðâ/¸`5?Ý Ådb¥~Þ®?×ÿç$ë."ý‡¯ þ„ˆ¿“J„Ê£iQÑä7—H)™AÌœíîªg»_}µL3õæTß][‘Q1äߺ:‰CVŸFžŒjÅ$ßòôP õÆ'X†ˆV{L‹÷+dWÏÉuã¹ëx7%˜9%þdPÕ­ ˆà£{ÇÌ%’ØöiwÅŸÅ#¼5œÄ,·æE~0Ó1ëxÁõÑ!”Žym…(ðçdfäÀta8Gåü³åGƒB‘Ž-'dåD<ÈËŠŠÏ4àž$zŒPˆ3~¾èérŸGØñE]*nÒƒG²{á©DyC „©\h®IÈFõÈšy.6˨•àE$ÓâéQÔnKmmÀ‘˜ôcÁƉ‰¨G„wxË`2:*L]ûÓOâHÍ™!Q‡rUj#׿’90A䙳Õo܃ֱ­æoÉRq]}ð ‘¢¸L.=t˜¯gþŽb ë)Ø7Ùc‰9¥Ï>“Šï/ì#êáƒäÿ  dçó†{ìj ´"Ì«¾'Ô–ÉÜ|òø#õ.`O]ï³b¼M3m§ØsžÍ™Ë•*ìUì/tª.žEkßêϬßÍæ’8˜wKUçÊþ¿ æÇBó˜hiv*@V3lqÒ—cÌRòC"møæÖ¶ °1l ´¸Èmðö=°LòËšEE|ñaim¹ýþlŒ¦sX{w„„í àQˆ’ˆ !(t‰´ñ8f+wHÑ~­7¡ïÄñÆ€ðºQ1:ÿ‚ÈÙã‚«5!ùFÀ‡r¥FÕ1ÏW9p(—š –…–ç7R]q³yÞnÒÃùyM)šˆ”§% –îTÅ[ —†*¼ÎLókXàv(£ g¨Õ2=–«çmXÍ)|hÈýÂo‘ö¦T‘ª5“›ðZWGM›ªN¨•Aˆ~ßuº]&™ô#ÌMÂå¹ú”¶ ÷䨙oE–&v¹Œ}Éœ…‰RÌR¨Ó%e)´ã>:ä-S¿ –dš[i"wS8í§Ös#ô&7¤Á©Ê5¨Üõ%ˆ7ùŽÁrAR¦"¨Éê˜ÓéÃ÷Bóúå'ÀœUû[x„Ö¸U"·‚À,Mð«TWíWYGQÓ“|Ä›’…®Þý¬íÅßÿ¼ÅO(Ycéšþtg„Žwåê àd&¯2ÿ$¡bVHXú«‹‰nñ_¨Gl›³æO:äˆ(²X41H¯k71<­ùH Ǿœªå™^V1 ±Ýÿ†Ãæü¨Ò&—Ò¯Èëž&È@çNÂŨN²jt7 m„U.?Ï 5 º5g$g¨bTºÏ÷\¥í 8á$ñ'³ÌŽr’žÆ½/kwÎþý(T¨›{ÝÄЉ®)4ÃD¾³P–ÞþÃâây–H&²žâ k¹Ç·c9Sz¿Ë\¯ƒ¨tÙkàƒ„t†G¹þÚ‡9~úÈÞr¶çœ˜Ç(Šl6Ðk  ˆñp~³V~?ØùÇÛ’9i—ÿ€ÃJ@!_äExß-@ŸKù@¢Ã³A²éH½Ø×äÄadM=ÚaHÎIØÆfè݈a´>‘ëäÃ-Ž9¶‚¸¡©6ªˆàÄ#=“Þ ¡gŸógšëªm/ß·ïÍþ9l/šeÿ¬k¤v½3È‹g5æÎÿJôŸ}kôHö€è¶?þѵÿ¡b-„óÿËb·½ì:›Èb\RäƒYü3—ÑJÝ¡”óUñÖ–".ykš*üËŸ§{ï§tYo^ÙÚª>ŽL|„§’Ìå)Gð®Ä;aÕl>§;œ =<™³ê`P4±*Š7ÞÉ­ÂøÓhTßCŸ‚t`R3œ9-uül”Çaßgϸaf.-墔ìèË:â…€ )|ƒhq¦ G ý£W÷Èï³Izq©?>Ì„+²1/†XÔ-ëÔÚºDO€_:'±ê–›û:rÚ>]À³’‰¦~jâ¥[(±«B#´µâ¡¢š¯G"ý1½A¯*êbM8JûR­"›—t¶ÅÇä”ïéÒu ^°Ç*TÑO§X>Å#—c+È5ÉF—è[÷Š|‹¢è\ {d‹€tx½ÙS§G¯Î~Ø9ÙSû§è[þûý—{/UyçÞËuµAGlPG¯(‚Ã?ö_ÖÕÞÇ'ƒáè]L¿Ý߃ÔýÃÝ·ï^î¾V/ äáÑ™z»°`ÏŽ¨J¶¿wŠàr±йæC±  /ðáþ᫨gï`ïð ©ÂCHT{ßÛ:}³óö-ÖVBIôîÑáé@yw ^ìAsv^¼ÝcèЗݷ;ûuõrç`ç56éDA¹ÊÆMR?¼Ù£¤ýCtcz¨vvÏö±õùì^ëй“3Sø‡ýÓ½ºÚ9Ù?Åqxurà8B‰#ƒå÷vœ„„ãœȆïïN÷Ò½ÜÛy ðN€™gsBC ¸Wœ†Zo¼~êsFX6Z‘ÕYÙ'ûLð›;@g>{ÌŽ,‰3û§‡ÂSÇ.ª(£V—ÎE¨À!”>ŒM[æpÂ4òÑLCb9¸3HüßÓhÉ«n©CälL}ƵrúJt÷cž•zÚ§r©Âq18œ§ Xèªñc&A-R²C‘ *ÑáýéÌ¥ø¼ÎG9©*J«¸¤ˆ#šúp!ßèŒf©I(6 1åcòøƒôTqØ„>š´‹tÙ§v#éžxOML`_ôĨáê3’œyº±YDYt‘ßPòÜ(WÑâšÅ È¢–îöòhÿ C2`¯ËÈ×”Y N2üU©4ýd»ò»ÎïüA)‘?BÆð¼åà y¯>ž‘ï#·‡†%±ô8j ríÚ1éÙøWƒl÷óÙ€àZ˹CÝ„þh¡IÚªÝ}óú䘚C©ÀG8=Ìǃ£—òRñ#°kæãчòRáãØ=chR%ÒÈK’þñrÿ„¾P*|¼Ò_¾çä«?JÑXÒN(-ÿQâ œ|zv²Ïà)†pÆþÍG¹Íþ¦cÒ„#Fv·,o5J$dBXƧ?ló`àSÅ }_Ñ'n/4ßÊn*Þ¯p )k)ŽúÛ¥AœÀ?~ôˆzã‡qÃÉGÞ§Û.jÌùñG¾Cÿè~4ö¤ÛЭVöm©4Ã)Ûås)¥ÒRïŽ[~@ÓÌ÷ÎÙuz²ûjPùËÓ3üE¡OÍe•\§ø s±· ¨ú§y$Íb\”}`²ïs¾Ò>ãœ6ìä’™f1-…­#mèœ i «n4̸‰uÝTB·È”YÁ€zÁn@©t4*ƒ¥ÌU†8šèúmä³³vV¼»ñµYœ <“æÕ èÄÊ^BW§¶0ûiûzt5íìÚ_4N"©ììÔ¢ïºô¢+­r ã…=w~_ˆ@LBg`•ŽÛJ梚n­|­G—iÎP½>9zwÌå+Cä¶ !”‘ à‡=e É)*„©LˆGöIZFJQÌHeb»s³ïóe(¯½>ÍèÒeœµJ ß™ 3âˆ3&":L„¬B¾®³ì¹‹£Ñé@ï‰vçK‹Í Ze°ª2(T ÆTŒ#•Á‰Šq ”għ ¢+Ád›Æ.imVpç"» ã]”½Ñ3°L9„ƒNBÌçt!Ì”IB1ËÖ ©tr2gS‚öÖ²–ª¾*?×w&×x™pòv¥cÀpëYdRJ§©VUU Í2Zy„³˜žª5þXýV~ßW-a9É»…§?¹r à µq§ÉÎѪž›D£01ß×GG†²µ¬N¼¬Ìù®ió9I›^|ðɤOkŠˆ€øì'B8Øq+HA WŽ˜k9ŠŒ90aÚ>) ž Šãý~ûüÙùòß>,›4š:ûãFîlyAI.&Áµf=µò¡œæ—–³œ»÷ íyó¹¶\°"XóÖD;» Ìb[˜˜é×Å×¢Kìt.ØÏDõ_h÷ˆ®qÔ %á¼èÔÙ‡IéÒðŠë{¨yç=7&‹¤ö-T.NÙ-ºëNÓáVø4B-š¸e¿ò„• ªE“/õ§EN+°kÚÈÅ:Ql\Yl.m»¤×XË–³2$·u¾UK=l‚£'Ê»u"Ø×Õ..ÓÙ¨Ê>ÿL$¦†'Iá0ÚŽ”}‰ÌÈ P3þ–ÕÑ.|¶ÍZRGš¿«§³qÕîÇyHFA /Nˆ¿¨|Wè-ý¡ ![¥ï˜ÿI8ØÂLƒjåЊD­ ½–¿#ÔÞü‹N—þ oÿ ~Ñ Ÿ‹]`–Çbûî2¿¤¼_-³Žlœü6°úý¥“KråJ!®Å»x>O¬Ñ@þÆN —d:xúû–Ú·6…˜ÀCÅJ(îÐ üˆå¶«ÏÇG^²¬ñ=<£¢3;+—ívgó9´‡‹”©.ëc·eìd?®´3%»¹¯ÝÌ×UÖ{@!ÀlìÆ—¡;Ÿ~C/:º[:dy‰Nñ)~¯‡7€I¯ð¨PÕf[1›>R´HráCêK"fY‚n”Šè%@SpÔŒ1‚Äv3ÎáðZ[Yreú‘Z #ÒÕºÀþZ:sܽo9ë4E’™*MÃd×…R³Ó`Œ®·õ¼§~Mì¯Õ/U§ÕªÊA>*m{©>«ªõõuåH7¿Tm¼¾©.WUÅÀú”W‘øKZŸ}]/l&5+mJJàÚ&×{Q¿4`·Ÿƒ7yª˜!í³øå €+á'mÂÜi?Q2…ô 9‚_zOÁ𗲕ë#ZÅÍb¶Ç£‘“õ÷ƒKÞ ÅšØ äã©o…ZYØìVŒ§eÍ9 ,SÀ±¹C@J`Fs ¥-¼T¼ç£ã ®éß"ÀF”:—Óƒ ã6Hc@TÕ€r© ÁŠ˜¶#b=Æýio܃³4Ào#\ŠW™,EÇÕ<²•™Ðz®ö/æhŸy×Éñ¾¨û¦ç#.ÞçâÏuMÒñ„3½jE Ä0H@²«U¶©ªØÂÊyƒìF^pY])¢èó;:¿øÓƒäæ'À”§þS¦”Þ ­RÐOðÆNëÂÅû«p‡¥gfIQ,´)g)çG$dEvh“(¨Rg[¼2:±d¥)!¦C?ó¼îòiFÁéÆÞÀù’v!GHµÜXTé'Ù°`iÛ#r¬­Ã$iÒ©Š €Ujon®;í–ÓÙH‹Ê‰@?ŸLª DAï ŸÅVõÞãÿjï;ݵõüï²’!eÜN?7«T£Özßê|Àÿý6òÏÙòé9ª«²OSþ³ó‹C,îÇWªÓÉëÆâ1È_é„WZѤuZ÷—À™ü™ÌŸ2=­E}:×yöÞšáÜqFK×jÞµœZ_ÌÀªƒ¼Œº™·”ÛŠ< : mOšõ¡Îf’79c:³Ó>ØÇ~&§IÕhÿìûÞtú ¯Ç‚UX{ßîtWq‘áü, ŽNÑJŸv¢3Eî vØW×7ª‡Ú}YƒNž >õr`ÈÛUþl~§ãñŒ[úwÕmµ– ?42Ðr«!ó •Yþ~v@5›ðªvTNv_8•J6?ÒÒU¤¥+ß>7®ðJsP6Ï9ï|)ª6@˜ui¿½*àÎ-QC¬˜‹'ŸŒ´ãØ YV–l盿·³½È®)iÇ<÷‚\ל_ž ]ãÝ„g<-¡õxÊœq£¸ü›cmUÚN—(Eí@/±Y=Cà6¦Ž £b@Db:ÈYëDXf¸´¦nÖ¯»ˆyq çù‚vé5¶ÖhÏ7E_½)Dqâm7©sAü1|”%ö)ˆ• Òò©¨o=»`vZƒoáÏù6r(€¹\ºð~_oµ2‹~¾”STjuuQ)ÈL(¢ø;"Ï¢ Özt•­0·j‰2-\mÙ‘üØ~äX*£¯o•FÚ+›ò±].*ýÇ|b> ·Qnå2šLÿ݃029s¨ÿ2æŸD¸Þ†=¡ójô€^‹`Í ”uB‘_ŸÜà³,$Òh„À?Ž»2årýad(-wÚ.¡–å{†Pƒé~–¥ŒâÀŠQ4xf PFö4O[)I[Ò#z¦‰;r5ãüþ,g1)r ÷ƒšè²86BxuoÛí´Sßn«ÁÌcw€F•1"±†Ò„h2J¤¦h*‘—ë®âÄ›âÔâo5Ö5G‘ÃvÔýðÔ0lè>™ds4as(«íj³jÍ×{G8o+C#“o ô—4Ý&˜BÔ+©À?òŽ¯Ú‘Šo ë…e¹ÒDnÝq`ž¯.,H¯«ÒḶuŽ…6ø²\¹ÒÎÿ–î÷q©³ß”âNUø·202Ì'ÄÒ–è”ܦEFÝZîs”üÛ÷üO^ù˶“¥ôoIB á:¥^‡|ëAAºÉƒ›D7„’°(AîX›cAe“s¸KX4*2šÕΫ°Â~•ÉЖæ±’mª=—¿jµ9,š;Š,(R<—%s…—™B]Ÿ‡^HÕÆÈâ³³µ5Í*œ˜E–¡éuùµô¹Sóýˆ¶"ª|n­¤s{)™f-ÃtZ}žcê f»ˆÇ;÷¬LÂâøbr~·¨P}MSë•I3R—?tW³%ùš?[’Ó–D“­¹Þ˜ -˜ÛL ¥£eWÌêVÙŠ9M¿iõöpÚ‚G ‰‚zÛ38ÂIÓO3úsÚ“D8EÌ, ÊÂ@#ïùˆ+©Q©|¤Ñ8ó-Ó©÷ s”û£³> ›ŒÂØKk§ ºT(Ï ‰!œÈ?QŒÍs?¬ŸõfÜ×b}ää¥d¯n-¨F€6Ré«7M êº\r'–X~bÔ2Q43|ÿÉ Ÿ¬­Ygþ€VnÂ’ÀÙ¿`&lXŽ:Ù %Xúõ( (JÄdˆúÊ:Ž7;œ&ΖĈ¬¦#Z¤6Ð:;«N=cÉe váÄè™—õ‚»Gmwèi{ ¡üéívOas«aÖi¨ùqû͑Υ³[ÔßS°+!ÒbCÏÂ(ZŽÃ-ïxºg•,œƒíOow?î¼}»½«YoeçS‹Àþd•›x׋ÊÑ$.*ÇDV.áGUAçv°]°9[•ÎVee«²ºUY›Ïˆ¢-Ȉõß“ñ+» 3ƒ³TP¶l}®ˆ2­îuÚ‰"Á„uæIJµógdƒ[hÜ!h#B£[mA³¼*HÕ5¢¨eká»,s ³™¸¯£½ÆÈÆÆ•êøJ|lH>‹6Ûâ„L[½à‚‹ d–c8ö}™ÞÃÀÑÖðÎ…î\Ê.£W’kÙbÑ £—@¬àÝ$sSˆW[bùƒÇ2éÎë:äèçl: “ÞMr)ÝB™&vÝ‚ßÏ2ŽMpv»Nj߈õÐbÌqiZ `BÑ>‡Cû%Ú´·.ÊtPÁ9Űˆ|êÍ-«µ@±:»ÎåheF“~F—Ñ0ùEeK!ìû3Z/"IV©N[yrk*Íÿ{ñz´ÎK»hŽø½ ºùRÏÕÖóŒ¨â|¬8Ñl"[É ™Û”W'dÕ…¶Ö[°‰þ´¾ÉÚËòI[6·ió;¶dWyá[t”E— ©AD§Öfckë+ÛÚú?FÔÿº¿¬ýo¡Î_kþ‹&±k++Åö¿íözk}½mÙÿvÐþ·Óýýï¿äoéoÊÃ{Dfƒ{/÷Ï”Ãש„´[÷Ó¶&ŠrÜÙ^2>E?Ïþõ0B*zöpÄ{×U§Õ^qZm§Õm´Ú¸ûµñg¨a*/˪ÓXi¬•HŸå OJ®> w}ì:þÖ¡Pp*9}‘Iðûx÷ G¥˜´A ^ÔÂávà&¿ùÃKðÑ×CHún8™5\¿1¶É̾©ã½ðZ©ÈxÍf¯Ò DjB÷ ]lIĶýI¿QJoŸÉX›ór¨ÛƒiØNo³¶©ìc™­ÐÐ0ÍФøö9ëx`L8,™³ÙÄ£á!›Ív ‡Wû&œo"Z}¡Ú`䥆¼äÀŽÌwÅê­ ÅAžðƒÑؘ·"ü×úSKKøBz yI¿@ÃOfUm45~e“™*™ Q—tÌÀÔÈU‹.JKZ2!Qç­ºþ™F¡·j6[¢»_ Hãlkï……Û—‚«¥ÑGñ2EqW鈠CNþ€b)øðÀ$ÉÈŸòAäÝÀ¨!»fcyhjdVt +Ä¿Axí]Ú œKv#8ÒZ‘’>!t½|úsÍZÅ’Mǵí®L/‡@e`pmíZ®£Œ"¨6ˆžóJ²Š4G§Õh¯[^Iôžç"ë¿’»)ž$ì˜w ¤˜U‘'/ÙßPßcðJˆN«µ2OF`êÿ2âÌÂÿftD÷ÏÓŸCFÌÔð§÷ìdÄ£ˆò‘sQ0ÿO$#н ½qñ'‰ˆ6 ñ$¸!Žû*&ŽٜÎàmCSt-ÁªëCX9ß Æ“¨†½+7˜¹Bwâ¹²OÃ)v—6‹`Kª IhËÙ”éŠ4µe†ó–œ£ Šbo}óQ¨Ù¯``ÿ ›ÆgGýQè”+wÑð<ÕJsÁËá»·ow^ns ˆãÈsVŒkíÿŽG8cר¸Oq´8"5,¢öWh•øGªÄºÄþ[& £Õh—oõ’c¹É${n2ãxœ000ÎPU ÄêvѬz‡œ³_¿=zññô݋ӳ’\0nŧgt.gï‡`ÃÔH¥¶Ì7D!+«©çÏSËž%uøöTMfÐ2T7Ø¢ sâ’…n piòs_¢AßJÀ?‰ÌE‡X£ôñ5^˜GñF!ð¶ñ=v/<óŽ i°ÖÛÃ×ôÏ;àN_yáÏîÙOÇô¾{ôöíÎ=¹€Ž›ØúˆµôZÀ~m«óòyå÷ÿ½w}hãJò†?£áýÒrˆ.;“ˆ&K0vxÆ6<€sYË–©­…ZQKÆÄxÿö§®çÒIØÎÌì¾ËL,©ûÜO:uêTýªÆ¥1tòö:Ø©®¤iwjòÍUåË»½ÊJ „¨©àI¦ª)«Ó©Qáy²Ð7'u§*%¸#bKØ“Î[Ìq>¨íõÞ#„©oVÖf#ì2ÿÌ‘8.7ÉÐf)<>‘“L ìž–´0¬J:n‡TKÇ+ŠIJÆÙ²vxÃçŸ ìa„)Ó Zë¨*wBL@øú£1™|U±Î1ðU÷d¶ÒÝÓÃcYÆ_µqVÍüùih•®á³vˆúÄü'Ü Ó£þ‹A ½d»pxøjÇ)aûN%˜›”L³ ·¼’À%5ÿt$¯#¦öÈj]äˆ8ݨG&32|îŽÈ)ËYQ“mš  2 lh?Ã8¼ýä+X[¯ððÙà~›ÖŸ¬ñž~W>Úæ€2Š!)"Ï=9é>=89 ö~Úßû{÷ñ‹ç{ÁKÆW¥.íÊ Å ¢ÍAÄo+ÕR1i2⃡…½!ÙˆC»‘âa¤(‰U¬ªt;‹|©7?:ª;­5‡èºœ &t,â-.‹VÃtO5Æ‘Æk†­ž­rS2í¨h™­L¤AyÆ|§‰£É6¥pöéúH?6} IÂj4ôd,Jcß…±@¡„­¦xKè˜è!aî†"B1dDfÞºWÑ{'L“…3­†$0>é‚(2m×6õ!·³)°<ä¥öáA£Jë 5 Z†[³¸¡yÏñäåø«Ûæ«&¨;l3ša-m¹-äMˆc©«¼Þå(evÊÌYxqn¢zþÚÖ[K)›ZI×Rƒ–×B•’ÃòB$kŒÀÍý_÷½$~×ÛRw«æÖR“2\cÅÜ­z“JÆ2^þcY"›Ö®d€o²œ°rÐ;À§ ¡¹¶WVÑDn#M´6–ÍØ’ŽO”••íeAÅÔÏy¼º2æ µ|ëŒ%mðÀ$4@ýÎWó¥z,í7Ùó{à#Ê(‘uOl™B¹¨O07 ¦ÃK§ØUö£pá_ŒõIõg|÷®Q€íñI‘é$&‡£ ­¬’ØÀ?úÈ3¬Cï`L$è·1B²ží*ŽF¤ÅCm…,aR˺ õäã4¾ÃXÚ¢ð0`‰kÀLbÁSDm( ÎÛÁ˜UTnÌÇ飡†¼™9Zb$¸ÑcXp‚X¦ÒÃ_-…Oñ®"úŠ”•º%\”ÀT¿¤Y±s•˜ Fʈû]>Ô¶ÓV´ø¯u¶èÍŽ…õ p7ƒ­àAð0ø6øKða'~Õ5ï'HyþƒŠ!i91{o3Ö-4(ýëïÁß`°ãMx’ë-ÅÎ,M̹†.r|w³…ÉOe/O£éypsëÁÃoÿòÝ¿ýÕ©vàáØ–•YQÞÆ.’ÐûnK˜^i¸y´ìržÙJ8¡¸ÀÑÐ]Ê!ÅMÈ¿ÌqÙóÀ¾à{'‹Ó@\{¾m‘gêþU—Ø+&'Ëz™ÍH‹÷®þ¾ 6Õ¿ÊÊîú¶Jø,ÕœÔ7rÿ‘”}#ÔãçѤÎÇÌÁ”Tuoãxl‚<²^·X~›' ¢]Æ$ÎI¦Íºa«%ÿj°ycmëõæýuvȯ†Ò5¤®£Ûœx”Ì.ÔY•†bó~Ðú#â9`˜Í  iÆ£°ÑЛB:VTrû]PE2¹€ª…ëŠv‡íÖ,´Þ/â!§’k/T`Qí’½I¶‘¥Øé“ãý£%ø)†¼6 •â_ß‘£b=†¥f»NÞ‘§”ˆÿíX ̲ì&æä5øÒXC@ŠX·Þÿ—ÿü/ÿYÄh©]à¿yDïŠY’Ý|vóO¹ÿ¢œÇñ„Aª³×øõÁJ'fV„žÊ÷¡t co!ð†R®æó×òFÊ6°ƒz×Á=&ey€WvéLüÛµzkÆ'M,9z †rç ·ešMØ3+é‚ï¨]ÓÐ ÿý½ŸÛUa~÷ÒÎHŸÓÄ1û ûòô±÷ô±<}ú¼{Ò®GA#•'lB æôbá zZ食á÷;Û’ãgí*­ü>ùiÿéS¨ë*<éÒï†X~œg–` æ|6$5 `¶§s©„HEX½i‡émËÜÑÓÁW¯›-|Nê©>iLg6 ,Þ€  Þ%L’3tóù}–LÅUhjcÜ#ÆŸ¸Š§‘#› AZd«x:xÇÈ0ÉŒYÔÀ±r²X€³6’žu©=ØÎÎÚK8äw:¯0Òh§³y{ÁmFBB…-ú±Ñ´ÉŠòÛ5A¨ùh:"ÅsÍ™ZZPKõ UÒÂJZs•m¤–f; Â:Ž8´ª¡*F<‘q²á`Š÷ h·Í@Úêʳ.åÅξ|Õ|ù:»Ñi½‚Þ~};¯Àö0…7}°åx¦% JO·Ž‘X mºŽðRˆ‘¢êÜtÜc¼txýÏ!bûëv–‰kìâEÓ Ô‚Séûìs·èM×!šCøÛ€o/v€&õ |à éãqÜ;!^ûCp'ƒmNãzÞ ™ 'QÑ5´¡ _½ó¶$ö)‡b'¿¸ é÷ƒÑìê ™òy@U³•Q?ˆ0ŠÈnþâZëÞ=xúâx¿½É?Ÿœ<Û=Ýû©ý—„üCÐà«@>“[á¨? {DÕÑ_ RÚ1ñ%…–áBªúûÁQû»ïVLIß}WXRD*Õ1>Ù1Z ?›"({™J¯ñ†›]ñü‰/]=GH[Gw^À©I_ÖúñÙì¢Û»ê‡ד¼ªÈH (–æÛ ¼© ÒƒèE½„i¿6©$nïDÿ¦ªvH¢Øü€WmÏwŸí¿¼ÿêcPÛ uzÈecõ„³Y±eÔ>˜ïê6Hž¨z§7Û8F?Þ8®£³â@ÊS!ßk»ÇSŒqH/ÒÄŽ&™úÆì|¯8ˆSÎF?âI¢¶ªê×¹¤RÔ#õ,×4ëÏH€â+"½%”gå$gp€ |8k«qœ‚vLxK–+N{Ú5— éî…ˆ'¡‡$%ó*4@Ñ¿šÁ¡ùñð›zÀáÓà-ŒßÙ̹`cZB‰{—`×5b—U³N›¯0ááãî¯GO p–üwÄÍ` ã¿òN$™H½IªØÖV²ªÝ¯«ù´XW@u'&—³›5+xüEÙ²]»/–NRLjÒQãM h„'ÂY«Á-^3 /½s$©¾ñ­?ä%5“IK`D¡ØÄvE1[ä=Ü_v@ˆÞ¸}¹Ûø¨ñÇ«mA×ùJmƒ_ ´æ"ijù •S•bw™\½¾dÑ{ÖñußIÃ%ï[5NÀ­‘vÀäÍ»¦!Réæ6s1lîö쥰cökNF ã\æÊqb¤Ó··v8îÖ{†eš'ÁLa‰àR$ŒEÜ©åPã?DççÄÆè²Çì=³WÊöˆÜš¥:RA\ê]&ar JÀx‚p¬ˆšEá ÅºÄò‹¥…Öàó0žƒÇuO|͆¸@»ýÉM2‹•>a0ž:¿aû:ICÁf1ZÜ4¾`Ó1\¡È#@‡rûH^ðF³‚G7&!õÛ©ØH“´…mDžÄ.Ï7Âð’\’´FÎ l~="³•·ÝžiX[¶±Ùª›N’4Å;ãdÒ#Ä~j)Ó›qœ†äæDíô96$ (ùvˆñLZ¡Z*éê©ÁçÑŽÖ_ˆMpÉŒ¹Z1H{Ø’š£YàQš²1d‰í„˜aèÂhw-@û_`£h*0ø¦tÕo˜Ì ³1·`È‹!{#ض£==Êý˜b’k'›“;ã)ïa~Ô½ê9r9^JðYEëiVrƒÝÆ–,RHœ8–°àå`±l2ª‹ µÆÞÄËì*$1‚ŽÉñˆmrqA áî"düÒŠ5Žb(£†Òé0–¼ÊÍŽyNŽ ñûÕëdN¦ËƒW:j.íò&òz²ÙÔJ³qiEâŽ1 å׈8¦IT,ŠåÈÊP=&ÄÀ¥mðZœ:=ñm„¶…X#w™õLj»ÊE_™W ªò…";o ‰²Û„9ÒppF>É¢Ó1a%ý3–ˆhÞ!“20ÂLrß9€éÑFÂMéµõ C·ˆŠØËs‚*› ûYDS§?l­ÍŽ®‰6/Q HI1éÀÇC„>°Ü† ñ¬B3r¾!üóà §¸ÎÅ«!8¤êÐP•ðB/ª½ì…µ+³‡„ŠcMƒA«à߇OO÷Ÿá½8Ùïî>?9èÒã“b=y™¬G\Ý"³$x¢®ž'»…+4›¿J à~Œý™-$Tºì¤~Eü>‹ Œ› “bÈ»[ÿÓkÌŽ:ïLOÚÕM5–³—a›„¿“I™¿ÿ2?¦ XihNqB  íðÿ{yÿ*tŸ# àãÍ«p‡Ÿ H] øô;?ñ$¦´lâ 0Gôl+S.0zþÒ“ÞMÄ)ÿbRz°‚¬6Þ§SãáåM•(1(š”©OÇü é?Ó‹É}Ïl>CkÄfpáf3åÑ2É•§ƒgÓ¼ñk0Y“¤å5¤Wp4,ªÁ”aÓÍi(ô(:Gk¡‚’pî¼T ËÙ*,‡gÜK·°¤‡Å£‡$â%[Xз…eyÉlA b#³²ÐŠÚvéM¥lßõ(v‹¥ì¢=•r1¹¤)‹wöu‰Ù$ª1<íslûfpŠÇ¾^ÛˆLnŒ †1]PRãŽÃvÍ$!xÚd$žB&4 ʶç¢n.1©ÆâšÔèƒø4eG` °ã²Þ[è‘]Æü—¬ëÔu°Žoo5˜Š*B\ß”Î1蘭†‡ÒI ƒ§¬¢  ðé¥)æ,ÆÆ¢¾ F|Ø~ÜÍ84¸89<78Eþ´û3°ýã8Òµ«71^¸fßÿ »ÂáщûšÏuß´åô†Ñ¹Éæ`:Iú³+Å©šlQÊ ·‘ÖøåæÖ«&FñyмÏÿªbÿÄ}·QGOaÇú¿™VãŸaCWƒ\6zºÇWì$¦’ˆÄdªžJVMD“òÕ…ƒ]¤<½iL+ƒ¯ˆ¬›ÌhT&ã6âÙ‚ûmªJÔ òDC5cø¾íï¿iWƒ3œ=²]‰à;Íùûjè¹lÙÜùA‚vÛcðƒ È7 2Õ@ƒêÞ #óïúñÑ Ô9¢Ä.RB6ðï)&2wÃ]±ŽuUV8cß¬Úæ7í‡ ýª£ÚjåY‡°PV?Êg©Ü3D2…ä—< „°;¶}½6µ9ìŸãq ®\™/dD–ý_ºgv„⦆¾ÄÖÜnsâëêÅ‘=™6—˜W³òsó¡íŸ3”š/Y÷ued$®«3g S+H«vêÞ|þ -à™Z¢E³8 ~_r펂™fñ²KÝÜsà±X¥Z¼[Í‚B{ÆÇ˜np~¨£Ñ„ˆÌzë†*ÙÐù"q€ ~&¯ªLªR´+“nÂRbM ÚZ\NPe=»kEDx¸ð ¥ÞQ-j€’j¤ ¹­£«Ñ4ô_= ÊÒÒ¥|xTF0 £[Ï"wJ€D/híÆ*þ.)Ú¡¨›kam3|ªe'͘"ÅÁvÖšõðMÅÙØ4e-[®yc·» (Ç<®ú[Ç(`©»9®qÀ¦—øÏ‘«¨Áljuä2è‰ô ÑX÷q,0-Þ¥TJÈoR”v 8Omm NßÀëë‹¶&#tÌÝ™L¥… ŒÆ`ÛpûÞÆÖ6 yÌèî¥)Yü;]Bø|ÅÄI+u«t'HS;sD>–ìÿ‡6>,XÌÈÞ”c£¡†·ÅµÇ¨"(R‘æÜ Â¢)ˆV3ÀÏÙ9BîþH8  ël΂ Žßïâ<•ƒ’1™£ýä‚7ZEÜ¥a'#¾ì9„K½½ËämÌ2p˜ÙȨ;‚ôdŠ÷,PtÏÚaѵk6WW7Zqévûí0žÖWKW˜\9yïµ6>Ö¶\¯ (Iý #kòò +Ë +)+qJ;cî¾6Ënç´›E tsÏ»3³öÐ¿Ö Ê!)óW($£ *“"=‹ËÍ rÙ=õÖ³¾Í*eå!õY5¬À¤›…§!iýìí?Õ%qGúÁUœ>JÅ–TÚØ%y»¶álë˜Ë¿í§â#þ‘xE¬^ÙRJÖõÛ+L^¸f L5)Lâ{î¿~ ý!êâNR:L2TdÒ"Õ²é š{Oð>“è†9G:cFEÛq“6oTsMŒ`Ø»›ÁÁóÇ¿ÎoÌü¬{³\œ\Êó‡¨nŒÑÔ¯oÃã;>o n©T€Û!mh)1ÔŠ®””L(w»¶¹ãD—¢Ç}íɃRès‰å“eJ³Tˈ¯U@`“ëžì¥Šu¥žH<'· Òó¸˜^ºÔ9í1—Ðû†*?£ ôUüUM¥/HÏ®éíÈWÔu+‰ -Û'ª1sÙÏ  ðÜJ ’ì6p¤¼©½€Ïޱ[?²å¤·5SÙíí…ÉÿÑ_Q¶0wbªo¬_r¦à0½m޷ᜪÁ*ÞO3\Ý0C}PÌåàl0íýMÕ;"Ͳ¡½/ËRœB3¬Å Î¸r‡¬£¿%W;s9‘[±ËÈ”£œ,Ŷé@¯ÅÊÃ)ýožÀ\ºô_ûÀÔÿ‘ªð [pºt­V1»Oì0[;pd¤\¥à ñi|Ʀ ®-°ÛòªÛÿõèxÿ„ð(v ñê"î]Q콜vʸ8?‚£DbqË­ÃPv‘Þ©mɼ’+]Hß’ ÷âôx`prz|ðüI¾îáÒetÌ=±­œ¿)ŸP‰!SVÅ”˜7Ÿàòf  b½ˆž§‹t÷­³VoÇeß$C«×ãK›Õ÷kÞߣ³'|òbñ?jøõnf®%wäwä8ÄEJ;€pR^Ýü˜WžÜ±Uœl¢>­ÚÜÈFΖ÷5,ýÀîðÑÝн 'êå»'$ÌE ¬˜È™Ö-Í ¬á>Åó£eÉX€Ôwñ›«Ø01fÂY´# yš åLWk•YPÀÅà]<ªÚ`õþ0 v„Œ¦î˜fz;ogÂ4ˆ· Ûøé³# Fkz5þت}Øl˜ÒGwÚJ6%ŒcR¹ó,Ç{ö§!ã©o†bP YÙå.aîkN+µKµ^Ðm`›ÜY²¨€f8²H™=©¼¬H§¹âßHV%>SÕ¯òç-ÃSt,ì†$Q×sV’Åó DæÁ„?C«p:‘Wï>tøÌ\Ho—©ÆÎ׸ÿÆÅ_!fö9Æiû }ØC5G>½ÿ»ï D6„¼„L-*Úhë½ ¹ŽC 5š™_ ‚äêŒØF2Rǯ". MX´úgFè©h¡†¶4Ë<–Óa‡]0v7:Ki÷\ KVì)F"»`÷³1ûŽM„ŒOµYUZ‹æé)*«1q1“™©âù©ÚÌ'5H lŠ bsŠVàxbA.ᙎ”²ƒU†Aø&5ü£;{¼uKã\éºËùlý$é¡kzzûÁ梳ބ­¹³yz©ú’ŠÒÜÚ—|²ŸLÑ· m‡Ûð5VVVÒÛV§ÙºmÝ"t#²çq ›zèŽ>¶ËcO€›õÎGÌl’QôGö—Ç\†ÑÇá¹´=“$!FKs…6|i|ÅðÛ:à†HýA×cNéû©{0(J §ÆÒŸ‹a1¯´0+¹W«ë?Ú' L!Иpk½ë~Ó_lt}L;Ma+ ªä@VõS÷¶æ— ˜<š“oJÌOsf§Eô ñ3Ž=Óu/NÇhY‚;-‰ä°ØA\Þ˜"PÊ2F"<ûFùÀ7®#ºé;V5¸­Øv\Kt›¨ÿ.qÿ‚D2wÄvÀ½¥Á¾ÑgñeônÌ&:x­VkÃô£ºt†ÞÈîBªËå ÅxÎG¦¨çÐïQŒÂD4 …¹q ^&ÏêNptxrðk Á§S3 a«:åÈ®¨¶CÁÞÍÅõ`Ä0ArÏÁpÊõr…VôÛö@,l<û‘ÌX¯I¢áÀב©œ™¢`Îu´9—ˆ<ŠoŒ‹7,»wQ/ãq ›)‚¥pF $ºœ.X …K–VC«|fk·§-265Ü^ ŸS2™9~v~NdÎbâ‰/¿ 7Žs$:ÚU‹GîI}eÌ<Ø4ÇÈ*èä:IÉÅò›ˆ ¶¿ƒ'5f‘%s¼.w} BwÓÒ$æˆf÷ó€Ï~9^_5Ï3ܾ°<[Ž‹‚çhH BbwŸ¶G„ˆ§?dD¸‰³å­ÎIt„=J{0Ö±±Ò¤½9 mÛŽEêÕ¨Ád,]…Ï%M;Ý\ð9\×.ƒx¸xæqaŸ¤ñ¹3*€9Ìÿi¤#2„©dn޹ÆÀÂûU%¼,ºÿÌÙ>͸Ú/w¥=JÅžØl¨VJ«ƒ‹^Ô¡ßærl‰šM¿¸#Š‚€ÂÅ›l±HEŒ¾-[Dšìf–$Ô$b.5-GGE¶ Å}Ùð»²K ¹«ŸA¾Ñ®=Pa[‚j ‡5ÅW‹Zf¹NƒüCÇ”\ËÞé/q­Dü›¼GäÆ%_‘;¸_[ùå‹qvǃ˜µ§0aet/ÛŸNÆÉã2B ÚПdà¨6õVÈ"[Hx /3naèEɇbãcã«?M¤ˆk#¥[Öjm»C<‘ Ÿ•¢'Ç{xê}tr K;¹×H^I9cZG¬à%+Uá­ÕÖ¬´gþí^Q¥‡ ŽžQ’w:œ‘Fa]–—»U^î‚ÅÌ/WI†vPv´¤p|z5A£Åí+ÝÙ T4C 6’e@ÆÔ’<»/l°Ëê “q{|N'ubÌtB§Ã@–¹eŠá>0ô¶“ÐÝ3¼uN[6 cy$²í±ºêœ²«xÜ+NÀã•ÛDJû¹àX$‘y^š·&¼=f°ÜP{ãéí¦sjÁ0x«¬t/]4:)C°üDÁµØsœðCä(!Èo*›~µìÈ5[å“°¨ŒÜ´ÒŽWJvB¼Ùúüf–‚ž'×heÚãèm||¦?ÊY}, °¤P§§P›–æU$s¨x/Ÿ³X²uµæTfç+ô.– «ði+'–nu*•åÊò´¬8Ê^DÁe͸½3e×E„ÍP#&9ûg³¤‹ùDvК8jKÌЧÎÑÀ•˜ßN#P•0°¼ä’ñw[ÂÒ=Ó )—ñtÐ#Çd†Þ…œáK²1÷ÄËSå2™•”´i ­Âö؃õ¢éHˆÝ²‡ \·ˆÓŒ†N09hÖ8¥6`¦AI±³—‘)ŸBÏ‘›È]5·xxÉjþšèù2ÙüƶKºïF_¯­:ÒN‘ãÊËN§óÃ"JšDÔš£ÉEûn‡ˆ¸æýFˆÜê›Ò]0[*4"ÏP‹VæüAÑ5º’ã3óóUº›w›¤Ëu¾—É¢bËJµ·ZƨÂMæÎÈjðÈ¡w²®v±GS€wíatãâÇ­[œu\Ú NkŒR —XÓIð ¯—\XÂsâ%ްðC¼ó9ƒ–¾§Ø“ Þ§ ݦ¢×¥ ¥z:#„óT·©Mùð¦é’íËÎuV;¯;_w6:kõ·ÎÇÎmg§ó}ço:a'謼ڸ݀ÿ| ½CˆÜ”u Uyzv©9S®£BË¥…ô}G²ö¨ù3iÙ%áBæ/ÖfäŸâ])©»Ã³ˆ’=¥`KÙáÞ¾²º$|qÓJ9qŽE*ƒ$öCC<Ñõ¡S}"†qs,râÕÜK³eTßÞ)Hm–WZR2\Äc_€udß&ñ޹¬áóÃ'°…Of 2ÐÌ |ùBzrã­àúwV…•Ž÷ÑåäÅcüXÆÇnx5÷»÷ÛæVsó¡5í£Jò×{µß>ZŠD¶}–L/ºß8‡ )ÝebR¹Ø›U‹Qˆ×¾E‡¿ŒßkÉË…ÏW‘%}¼{¾{¨‰+0¾^j(™mY6ÔT_è\õ†q>ðl6Ó{¯k›÷îUå%¨mujðä‹`ðY…f ¡Ó7üF‡/–Ô÷ž= ^¢£Cwÿ×£…a€+&™Õr£}Ýd‹O»Ä´€b9 ϨNwlú†¶¦J Ã;`’ØdDõùü{`Mõõ×ÎM0¹æu•9î%ÃçwEqÀ¹Šækÿ2n£ÆQT²ÀUT›»·{ºÿäðø·åÆàs‡ ø…“TV5‘ x>B7qA¹ÈîÚ¼º«ttÀÀ5¤Ð¬¦0Ne:%0_a. !˜ J)¯xÃ4Ç2ÙTF'Ÿ³X«Éã«S;¾²Œ Ô U]ô-d…°[ÀNãÉÈ›FÀ½v¤Àv9É:q3‘$ºÎYã5/7.ÙÖ9ÅP;k.è½5Å(ã i2¡µü¼¼‰ÿlÍuX1}Ðø9Ô‰½ˆGÏõ}$CT!•~ün@‘véd‹Ó¢Ñƒ$r2H“a¼HܟʪñQBKS4ÝOƒÍæ·Á÷øoó¾ÄÝÒç›#zõ°1~‰Ià©•`©z1ïâ“sf”t*"œ‰¶ ­p±h:+÷g°v0Š‚Ús5ï“K’LaÆM«Çþ²Ù_Ÿ¦­°ÐoÊ>CB×µ‰EˆP„x­$hpõ°+ èò°„Ž ×áÏVéjp5ûŽvŸœ£Õ>î6àY„}»ñ6جoŽðs«¾EŸêèóaý!}~[ÿ–>ÿRÿ }~WÿŽ>ÿ­þoôù×ú_GHQêfÍ <:Þÿ9Ø{q\j6S1®@(Üâ–OYpr1I &œ(Ú‘ÞåNY*vñz(Ú†ˆ¶ä@o™"Ñm,Â=Äïðk•‘WЧ¡Ï¿õ"Îs,>]­¸%ÌG¯¾Ç9hïßø³h§F$‰ÍßßÈâ|Š¢£…Ç›5Ü—·YP“HQ¨Gºl0$ÉèÛ._#·ƒµ¨ßo\b<ÂA(ÜËŒtÒ€­áj¼ŽˆpæWCàÛ¶ƒêæý×"„Ù¾·}Ó¸wë ÿé7៟vÐzýt¯êA_ÿHFˆ!o÷G}èÁW„OÕ ‘Yu"”²Ã.^ª¹Yñ[°uóaãþfãþwÍû¤r f§ëÁx8»¸`ˆ]ŸD»fk,ÚU]âªýe2˜N9RîTäüÜ ~Žf—’ .Š‘´—Œo&ƒ‹Ëi°¶·NOðÏ·Ác´J:IΧ×H©Ñ¾&â\£ž¹,Ž’Ì—$áÆXf¡˜£``³zP… €Š³ŸÙäúùa…bŒL€±ÜìpØ(8ÆQÎgûÇ{?í>?ÝýñàéÁéoÈ´œ>ß?9 øíŸì½xº{½8>:<Ùop!²mÜ6QÀ€pfÎf쎋³U!ëd·"è¶îC)U·Ô'Ï_OxkŽÐ>¢<.GÜbykÂ<2’¥¸µQgqÍÑÁ3MU’mJ_À&‰e)ª½?(8l%Žo’p´—Ç™”=9]êÄ|WÄeÈ„O_ Ø»ú•rMüÕ4Æ/-´iM“î)ÐËfy éoƒY!¥òëfó~Å€ëèX3ÞUUmàI¾?»ººÑ«NIkï8Y„¥v4›Zûï#¤ L`Fƒµ††´&TÎ-15ë6Ð <æØr¸ý±ãFĶ)ÛÂȰløì-/‘£ÐÞ t£È-óÂÛ80—ÄÓ÷–‡vRÃÆ¥Dñj40òvXÐxòÌa ejš:ãÝIÌ## ó…¾õ¼2c-b`Sƒ ÎH?BÞ8;‰7:¬+1Ѹm X]æL¼ÐE‹¯4Õ¤î#ÄWgˆFì)V9 ]Îqû³81!~1Š¹Ô†ºã»Ø,7„bØ6€·(kÐpL$òÌ~ñ´CÁ1ÈE ѦàÈ™°§‘ž¢˜‘áF³B×m´Î—‡G§‡Ï_gçh÷—È-pl\å"lcôü¤@{Yf‰úã¾L:RÌt¥œA!u˜}2¹DA'obO×™Gj= žJO ÆbÕx Ÿ“_Àþé4¡¼ƒ‡W˜fiüR‡,œ¯­Ê(ǰÈýÉÇQO¥„øŒý‚a2ª¬—ðìÿ‹×ÚéO~` n.ͲÛ•—£0"4F­ÂÝR­Å𾪺Īhæô3¦4¥@¸$zSkòWé f!7)x›&ñj ½ñóD!´PÁJºøÝÎMå_©6 BP‹ M#áÍEjv#8štÇQÿx;?wLã3鉘 6þå$f5_A8'S‹ŸÜa¢q¤xóÑɉ ™N³Âš€võõ‡¶(Ó1’¾3—M¨¶4¤ËÉB€Ù6—‹™“°sᣴÀÔlwh¢H®»ô`$f<*!RÞ›‰×¡= E"F@/‘íö@$â5Š&„ži„xA2âÍÜýMÜB>úÉ©ä,–V2FáîÎ7Õ7âÞ0ÒXŽ& 3^¬‰º { І¸%°9^¿Ou9™5ŠÏ´b¾Ý°Øôiêî9è@—-7ªC¾¦ŸÿÞÅŸKš!£W:Íö’"}™²”jSµùÆÐ"&1jÝi³F<ÚÏâ!ÓhûAU{Qå045=‘áÒ—:@¦Só¯ð`02ƒ³ŒÎÞSâ¡^Þ ñ¶ÀÄgH¹Y ·§ƒ;IpNúØer¡ê-«v= Ñwý³æ©á"ÈØY1"¢® »)'%›*C¡mÎü˜'¶[&ÚIµCñNø©1Ooƒ°¶ÞÞb˜·ç³‘ ‹í÷ËÝã'¯–€–>ÃBCjñgØð>i‹ÓEŒ§JÇ~ ÷àh†(Sa^‚A<•4RhãÀ÷5òñ|+]"ÍYfJ.½uG ­S¨Òý†1÷tr#k=B)–ÖH'¨ˆpP3#û^$z4ÃH‹dT¶JºO¨™X7…[âFï¸÷\®Ç<ŸÑõ4‹ãäÀ©éBÔJ„RŠ$ ¶¾ }4QHƒ,¬YŸÉhÍû¨„*†öÛt[ “ÛyèÒyôÑw.Ë)KüœÕ¬Éu¡Ù•¬BQ˜fö}Ÿ£bw›Å2ìôþ¡°dÿ—]ßhlðœ Һϊ1Ô4> Ó}¬0V>Œ‘x^d`i°8©Xo™Š ¬»N¯Ñ·E’JNk#‡ÎTÈÙúJl¥g#EÚë;å@á÷XaÜïj•]\Ç“1 ëµÞ÷ÔM¸áãHãéåiær)®nŒnl,ÆôüCÅnp–ìª}º쿟ªë³ ÆÇU»À¤öÏ05_ÄÖdåúCHL%íuÂp*¾#EFCs”åü¡Ûºù$j’ez¿ ¡R^)±T'rtÄ Zà¼`3©dL('^¨%¤ÛFºN¶Šü³½{€—ïøØœŸ¢»›æÊi’Çp;SzŠ6Á.±‘×B—òà¤2/…/U?£÷—SSg ¡å÷áåEà_µQœ]hЍ>ߎì°fþ²#æô=Ó é3Étí”^·ÚÍoÚ[>iùzËè ¬_Z@æj![·‚¥N²¦‰î¶Šk– Ñ­Ð0ͯAž§DæTÎf©Ãò½š!v pŠòÞÅÍêç0G§‹_`„¥0osõPsKf!ßGÄæFø÷ôÑ¿“d•l 'M"_½Æ/éÚ‚¼µèœ‹Ò‚€ûœ«‚¼®J](ã º6û×õFŒPÓ4>f£M-Z%š†Ö¿èTš)ÑîäÎH ý£–Ñ+'[ç¦sõŠŽéï}0ò£×ªZWn]ý“¾[tÅ«g¾ÀÛò|9ОAýue°Ä)¤`þ&suç¼Ê•ž£©\^ý™ŠÞ)(­Ãf¼±ÉÕ”mK¦²’ׄˆÐòÈtïä |؃öÝü4x+4+ƒ»ç^oÞ–:ð }RìCƒ…j,x£54W•t¡ç\ká˜Ý!ø4 Â=Q,û§^hÒ”Üg—î ¹RâÿÄWý‘_”§ãX„9û_Iù®!'U Ó¨°£WÃŽµ8&ÈU!,¯)®93cÔ@µðS(2Q!e'#”«¬Ê¡Ë% ‘ù¹›cr*'¹0MY íì6m²>3O= Îv¥à,7wÉ! ΋âóÈØç,Ë)närô¹~Î$Z0 ^=•‚ªçsÉ"&ÓÖ#ê"=2š¤ñ†|Uõ®¤LHfÖƒjàs>òf4G8β^3=•Í-¶N¯1³’ ÚÊ},_ÀÁ˜ÄŒ ™cß G¤È‰?:*!ì¬>u¹ q1ÍÐöoÑ©Š-=²¤RõÔ8ùOâ(w  }…Ë„yÆæô9F­ô׃ù×9@³Kÿ±Î6|X‘ßVâ8NËyE7¹È»m¼G¹ÚO;$¹÷ðÖÿsÜèîϺYO “í0«%y-NÒºÓ¾Qb.oÝ_öÇzI9v~ìÝ#…·ÌH 9iäVVŠÚã4Æ´ä—²&脵aºT¸¾Ð —\ØuFà]ÇÉý›cˆæ±ƒQI>G‡Yš‚Cg(9…—»ïÔB¡î Dv)sŠrtþ&rzÎ6_QõŠÿè‰\g€iÏëH~)±O¬éænuܘ2ù?×ÁÄQ¹k«Hýg‰×ʬêû=¯½9ízgNbø«ºQ­³n%ÛN(“;6ÓçÉþ¹lµ <‡Uˆ sÛx·î >Ûn½Æ aÝô_ÜTn—ªû T¬ïôJ»—†ŽðبGÓM!ˆ ØÓÈXÁh“…7=³½ ¬oWV¶U¼8 ¾AˆsN+™±*Ö2q¶îð2­Îà¢LÌ´_8GŃ’Q¾™áý¥”rháJÚ¸¬nÉñ)U¾}Ö-«¢4£Ôùa(þ{ÿ½ÿײ喟7f†«¥4:HóÚSbæ4nž›x›£°Àë&‡‹µ¡¦Ky•(g*ÄuüÔcÔ⛹³Ȣ۹ÕUËÒWåJ/'Òh„ç ÂÀE W=VÀNÙp‰½8 R¨¯É¡¥übåU¶m•âÏ9/? \× _P›< œ€O+·Å“CV~ã/”«åí\Ûs‡m `&ÈÔšè]rÒÞ$¾ŽûìEZÃ%Y1ûqT?“ÔJ”YóNí…†[jðKMíYK™¡×\/rŽÉ”Ä!WÎn4¢žý CB?,ì8!qãõXÚ gŒ&³Át‰o,ð®|j(]'¦8®¶m„SÁ´$Ê.½Ÿo7Óa[™NµJ>*Û¢K¯vªEij¶\MÁçO3Zß¹ñz±w€tLò6›î8ˆõr¦³ó»i%4½ àdŒ³ßt¢ ß÷bî9‡E˜àèYŸ8Ç £›;“¡3/Y…ç´b©ðÉÏ8ƒ½ÅŒÂxÓv”ô dëúZ»beY(b·¿L>+Y²Ñ‘ø˜³7'Ûi´ö7èo¼X,£ÂvH@_ÍÊë`ÅÁ ³~—Ñ(€—Æ {(¦Ûuv¡ ÎÑ(k’¹Ìáà².ø˜;ohVžL Î8]mXÇ÷îµ7>–&šp¢ÕöGwL«ïËNmq*¶â ª`råV\°LW4=7:yVDb°euñAcüst)R€˜³Ù`D„ô…†F‚;¿çèÎá{Œׯhp᛹£õ©Ã¤þܹ³ ¡f´;kMhK-ÔˆÒÁj.wv[‘ÿä§ÃãÓãÓE"\~©ûRv¹{’½q½Ê¬ywÅK;ä.û­‘Ül1&ߟ¿¼ì¨-OFÞ8Ðúùᇂ5æ&-Æ9‡Ëþzù¼¾R'²ÔÚB-^3þ åò5çR¸Él‰œ6þJcŠvæ4ïù³XÔ`MÏ'Êhf½#‚ÛÚ‡£Ý'ûÇ ´æýÈÎdx8›'ø•­Ø;õÓíž±£ø<ÉêæÌ:5ÂhÖ¯W¡ÞÖzm]@[Ìã x¿3Þ±Á>>VV.++^âßÃà{†¾ §®L…Y™Õë6χ¤JÙ?±hèTû·<}hŽ¥OBéæð|œ«þÐÙ1[Û[o}u\ØñÛdntš­¯ÜÁ|î|Oo;#˜‚àÖyvxù­¾eÛ©£õÚó×mÕ[®gq+øàUâO³<Á@æ~SÖ /õ—ÁýÆ_ëW/øöÓÍÆ__ ÐYgý¶³t¶ÜŒã‚¦f›· =ÅE8ýÉÑ—s ùá.äI¥ç$‹k®!ú‚„©¸ù°ù—Ð.)º‹,=ãÈI qò×oÑT|d)Ìèüù½îŸñ-í¹>ñ–uÙÌž'1ÿ-ô'¡µ¾†EwþÅ@ÛmÈbÆãa#’ršwZ`ðIòEé —éC™o0†k§Cm Cô²d,1h™Ï`›Ç±q0Cðûl€îä£)ÏÃ/ä’k³¨ïS£?ÃŽSvX˜ª#<p-ÁZ ãQïFÂnß TÖ÷}àræz=˜ìÓè¢}ºûÄìmɤ‹?^t@šÈ¼ç6ÿqíY÷]§ ì&Æe¶=žK·[Tc75 Ø3ýSœÐg¸~6ü=ÿð:iŽI aaY»Ëï zˆÿ :ÊJ…ÈZí ŽBIÌL±5¶ÍXoGî4YÒʳn™xöë XK21ÁQðÄŒ6gAæwd Á»ˆÁzE&’³ÿ„R´öN³E0v¢†Ü@e§¢#h(wã›Dª=Õ’p'=ßk ^(Ñ`Kkcr+MšRô·IP,ql´ÇàÞºÔÜ#wz´‰Ô·NNÍ8ùUÊØú9qÉÇæÅÜ‚µ‹Ñìx`kìÂ×î°o.é…KšôvÀ Äoͤ°¤šëÍZm÷Åéá³Ý¿ï»Ö-®"ûÖ@9:e঑)cïðùãÅeTެ4˜©ïáKCÚªikVœÀ„àÍiŠ Ùç¯%éšM‘߈ðX¯…%ZHÀ¢‚.â)¦‡üe:•a²•‡?þŸý½ÓÆ¼ë …Ì¥t‰í¤—u„Ía2”ë{fJé¬ Ýž˜MJBX X;mu:¿Sk5k˜àý´UI¶†òBáÛaÒZ|ÑP„ºé¨òò‡ ìu;$6rÇæ=xóQáøbÃE6ÿ/ù‚œ¢eìßÓà<=øƳqxÜ89|q¼·Oï ç@fB—Ë\d³Û Iˆ±…Í^¬!€’ªHש;U:yBlÌyãÈMvÒ>õ†lã#yG5mŠàEAP8_¹q.yG™a+©²–´â6m~ƒ Š ÓÛNóåëæ«Ú-täÖ¨^³Wß¾¤¹Fú¼ ÷«ÇøxŠ›s;îg0²¥ð -,µ^ÌTÅË*¨íîý}÷É>Hê½™¹4(¼±Ù¢ŽßF<÷´“œÀÊ5OÔ+·×¸ïŠïÈö‚§æ Ô:ÅÚOâ.E/è·Ã׫pB^ ~Ürð×ÓéááÓPSàá¤ÙþȦ $ä€@˜|^³šV™Yݬ·j¶¾w•ƒ'­þ=¥òõY½SëW‹ôpë–eùܤ¢ûß4:øE”…:øŽî9Ž‚F­U¯qxšâÆlS&,8oÝikI’q¶áX‰µêò5‰L’rðÍ.˜Ìt›ó±5µ%s–ì›tf’ÙE…m–yüpººÐ1 +ì?S? ­ãi€Ú‚Ì1‚¬l¬6槆üœä¤¸! 7fn#pÍõ–oDarŽY03\MWŽÊ ‘˜~Ž'ŽÜÇ$=^´‘”0"†F9‘Î Æî+€`éN¹ @1?f½)bZ˜7‰§@ÉÛ¹c Y• ¶;†6Vƒ'~ŒV( =£K–OT‹øDÉj¨ú죚gs3"¶9¹ðö¦Û] îJl•9ü,ÖhÚü¦#äX. ’Ë˯ÝÝÆD?ð¢õʱ’ÍÀ›  8xXŽmìœp}µ8DÝÊœª¢.©{XZ]ÀÞŽ€³ ¦a*9§«0Š„gÃqðàÐ|MÞ²„PÚ³ ØÛ3p9N¯0ZÍ“ãý#Xbv$«.³ É~ëo_oj¼"¤¬vUiÌé?¾‡IÕ8M9Æ ´ûc¬ÀŽH²ŒI²1ÔÊÙ „%úO«›¥†.·ÉÈA"˜IÉN7 4Ú¨úB#i…Z× É@¥-ï  bFC0ÖϘc 8GQEòy’Ôñœe®(u¥Ô˜¹HE×·ø/þÿ©ì#N7®/2]òýHÖ;§âí¦¢Ý½åOþ ñøï¶·°¹8™_Ü•Üò'пøüw/ªGo[æ×Ã7)·ôAÿâ?ðßíù¢òåf~ñr‘qËŸüAÿâ?ðßí`Q5zc2¿Ô©ßÂ?ðßíÂy¦û›ùå™›š[ý¦_ä“?è_üþ»-ª×^ÿ,˜{çÈpä8aæ NÌæ¹^^E e9?/v/‡´+*Ùc—ŸÇáðÌäš™(ô±#fŠþÜFqsÜ»ÔÿL-<ù1NÙì8oœ¤)™ “z„´ÓØUq͇çøDP6­¸¥oô¥eÁçëåŽì¾$ož¯²(ýt¼ÜÊç‚6ð^Se{&þõMÍ~¯|œ‡<0Ï·3ÛúœñÅü†åw¯íLª9[·Ãa”i™”Ä uà–e”™B\?qgζJÖýdáv oÂLlƒ-ø ¡_8!ãü_îB©èO5lƒc:ç¡/ÈÆ.;±î”²“)ߦCøaïº76EmÙ#)=+£$ŽË^Õssò*qFEä¹[-ð¥–?ßknÒùsDs`æ *Ümñ¯‰ßIô›¿þ\é°,ƒ\â ŒAuñH~)įãÚ`1Ášß°åÏ›¹•Õ`ׂŒ%„æÜwyg¶!ë++óÑV<ô…Rø‘óþü…B‘õ“Es_ð-,»âI矎ÞÐøâ¥mrn§høä:}©ÁS¨úö~ÐâÊöt¶¢‚(¼U´jˆTÍ é1¹M÷‘æaƒì–·PuBÐ…«•‡Vƒ“dˆÁ¤·lø/4@«%ÈŽöSÆr©w1hÁ¶’k¯àW{ó/¿Ý2bØ:¼þØÖB.z=S$ÿc0F-4ïÂ/*dÐoû×ïþíߤŒÞÍÅõ`´ÜW0s×ôm|ý`‹¾ôb(‘¾¥Òvú‘À§Ý Våö…ÂOŒÈäYŒŸ^_ƒ4%#iÔ÷`$cüa  #‚ÚKwÕ¦®Ëq»§q_dv“Þ qÇ2j…ÇlÁöL^S¡§ÿƒHü‰Fµu¥×.òÞ\wUrñî»K%7×ãžÕEF.UrëGLwl÷‹+ùíf„¯iМµj±E Œ A•Yìâ´ßM/'ñûi»S­ñ7\"iÇÉ|8" jÖJ±n'e·[':¦œ*ÙxR1Í•Œb«p¢ª -•FDO&ÙëW:7x><Ÿ ”ºt25‚"œ‹`óo_o™W¨RÍÀvyöª‹Ø@¸VL AÃj1F=“tÀ¦âmª[^8ÁµÊÌnMïKƒmaA‹ÕK³‘h£Í¡…ìÌà-µ•͹Ãn–ÛÊj -íˆcd¸ºš8š 2¸£´Ñ Œ2fÈyŒ%keU‚GSh5€zoµÛÕy9=¾S\Ùœ¿’ø$Áß3¼• ¹Èz)‘ƒÒUt1èµÃ{÷î=Û}r°gì2àAÈ/»@ûN‚ý_÷ýD•œM,+së [UïrðÑ}í3à„ƒhئ8âråc,Hb‡.ÂI3ÆÎ‘B4kÀTYH2@ã F‹iKÀØG}½¦2Ø–häÐP:¹Ò8Ãø|JŽg(÷‘y6õ#îÑI¹ÂñÔU äYÎF†äÀä£DLÆÄÉ£¡3®1 qIxn‚lî‰wqt‡|ïâ6+ÎO $%÷ìv›9»QvNÃ3hÆù9òL¨öRÜ1“û'žxM‰ ­½pèW²rd/(WèÚ1‘¿/£I£½ gé%!ÛöQ<…ã¯pã' ™UÔÌ®¹n ‘׫d[Ú×Üзjð·À·q†` õ “˜Å¦ëžî›0×¤Ì ›Ã(tý'ØúV¬n%ÜoñhÜq,*«óFC[ldNÞwÎÙö믅³©G<ü_x6ðåÓßçg6ÂðÞ)†EjL1x€È5Äí±xå‘¡F*N°MWˆ'tÊa³\DT?•€§°„ë]½TR¡i†Rï Ä®Ö8¨×0ˆá.Î ÉHøÉàb€U‘z‡$fG&ö*ŽÐ¥N&=P¬FAž [È(¾ àá³Þàšn™ÏÈI˜ll[]G7h8—LÞˆ[ˆõ9QÂ(j‘Gfr 9ÈhµG‰wذ"¿'æ7²¨àÛ￾|Ô†Šn2¸°.Bè›ÁVð xXYé'ŒØ‰ÈÓ6 ݦÇ|ŒpŸãqbe¥³Ú±k´‹´˜Eº¬›–ƒà('^lWŒh»BgÝjíýï¿þ›ÜГ‘'¤¢ˆ%…U]rž^Oð4éòü-EÒ’ÅF½þ¬ð|;-öá´;@^9Î`ª¾ÿŒEoj·Þaw)Ç©ì;Z^{}y?Q—}$ÚΡ×Ül4!…cŒ8/?&Í8Š˜ý¨fD4Xܬ•“3bœC²$NËTìR(ÆT¼é h,*óCJ‡f‚:–,1ŽÄ]ë¨$®­|Ñg<†Á&^žmH ©²Ó—7ôÀxñiXnf+ ê¬Âÿ›2B8ŒéuÂÎ]UjÕŒ*¶ͬm/Ïkøa =‚àQK‚Ÿ˜JåýG(1½”2 gâî\wÂúê(_†Ë°+Íí\>P̈́ʕs-¥­=º´p©`_¾S8»»Ñ>÷Ÿ=Û}þè¤É"<žP»{Ïá(`iZ“gcë&ƒéMbtÅ]¨±S™ÃòÍÑò|UÉ·»ôµyÝÁyJ€;„aþû˜"õŠŠÇ@o>€F:VÐ ‘ËñЩÖà£SõJ®†4_b|KJ¼jíÃVcûc †Éï¢!Zog„kà_H£u m]vÉÔ DŸýsPpa¹ûoS>”LmTž²®Eú7'U-Dôœ&\xpÂÂÏ’é%?ÁIÁ/Ä>I¤Ù¶ŽÖ .¦/+}úÄ0êKz.+ä\¼ž×¬×©al®Ö¶Ö¿ ‚ÝašÔMT{(%¤êAŠ`RM$R7^ðÎ,R¯ ãü@°ÎÆÑ"%c§³±¾Òä¥d6‘|Òl9ϲ&Ï(Ña*Ó›t’@vOª`hâñc+g*Ç©k#Áá[¶EÑ“s€ØxBÑZ/%Ltu/©@Õ…•K—çäcý4Àœd<6mQxf™|;DF_W€ÃèË¢<ª2t*F]ÇÜŒmvÈÑð’»Aª(1±Ž3§òœC†—m9M¤EÃ_X•´ÌŽöÛ!£/R´éݶ’ÚÛUçyµxt½$<ΛÞhµ¨ s²h¥: [‹ŽìH“£ÄPáÂäb£hB£sØmðÚ0šàª=Q„ è—¦¯&çSÜ|IŃöþÑ;؈ÇólÀ+„š¸ŽRTò÷.á¤ûÀ b—ºc­š-‚Î(4GÔÀˆ]uEáu©ÂUÇyãA±DâyRŠC6ƒµ²½³X(‹¯!Ðä‹%Öÿpx@Š1¹ ‹^bÛW2SÊŒ<ý³ Ì“:g>ôP Oõ¼·ÇjϾ¢’8!Ð’ÚÞmo+ÎE’¤¶ù°ÖÉ…nm}ÄRÄïÇ"‘´ßXø'21ÜÛ{“­^bI¢yxü»{Uõã0½Muvt:PH Í=i±ˆ²Ç[[C¹1Ȧ)J™ŒÈÞ^Þ &ɈÔÎF¤àxpzOA ëpSEyTqk¨ÚoÔí©}›yÔqËÎÛ´:î¶ÀÌÙ´î':¹6Q{R0<2YGòÖK)>{.;ZÈÛ€ÌL!ŽŠïÔX#dWì06ê˜!åÂD]>±2¥¹®_‹½÷þ¨e¼—\…Ÿõ[àó%š»\G©°µ°aí}mx r²1ö™¶¾‘à'Î\)[:Ò’ WƒÒè"WäÉߌ6ûê*žFŠ6mj ˬ㳌µysW±ß‡¥±UUaS8ª•Ï_1¶ˆ/½`ìøŸ.Ø Æü?NmNÒ%2úž¸}ç¶¶¦MÍ|Ù€ÒҸ쮣ÑÔä4¾°è¶ ²É¥iÏDµFÂqÏL§¸â´“¥±‘„½¾¨˜Yß9HÐ}öµ‹™Ì069‹Òa¢`ûżÎl ¢f„,±ây»ev/ãH~Ó³‘Æ”ŠU“Çs—åKN<{ã6Kr]H­ «•ÕòvZÕŒ È›C<û*ŒÞê5‡\Ü4‘*Ÿ#­‰Lzt°'­kVöø{»f§"›MŸl® üìæ3òÀV*ÖÙ­öìgTvøC‡ú÷‰Ú0Ææ]ÿT-Ah»°SÓa¶huËûiÿéÑþqðøÅó=Á< V?¥Øº¹Mâ.ÎC÷8]wšt¯l!ðL%DÆD~¡5LkžK!?CM•²àÉ$ŽÓº1¼ÇUM¶JlÕ¤œ©‹šƒS„°b![àˆ´Íà8¤Üˆ”¿ÐdÔ o\+l½'ñ­nʘˆ€Do•äjjHŸ§?5‰fatk“žØN£Áv}Êö7Øb6i’r„Ù©søÃz¼FÙ)[Ò4xÞ#Õo ˆ¾Dƒ,­¤×ë•%æU¯¦½CÚÒÍbÖéè6]Þµ¼@s™é ­Ö†7u;ÞîEáTD¸ÿˆ'‰ôª—ôc‚È½Ž¥4<>Cy=c–ÝE>žÒ½lB¦°5áhÌB š¹Öål,e¥k*z¹&¡c‰¤tŠ@ë BL©9XÁæÖw4dç …mȱJÚ`p%nÊ v…{Þ -£í(ÆÝæ²hp½ãpðDsAad½¡‰Æ”ôi‡³â̱Ù]b§Wãö3ëÜ=Üo£ªÖ~¨Â!ãw6í¶ó½\Mþ†¶<}ä¬%«q@ØÕ¬€á#FÑà]ÜEK”t¡!ÑMõMv]¾Yö.—„#D–éo/‘¿RÌmqîÀmi–f´¢eú|FkÙ,±ÜÏc´.›ÅÖ£5…ÈÆ.)&œÑ&ã ]£øRA)»€ãòqŽ«¦TYÖÌÂÀ‰?·ŒlÝQgçÌhJ‘çIJ2“cùÖÜc¬Ó–Ašl'r´ô-©yvèb#q®<(e…ÙžS¤œoý­`³h°ý²ýÕ`6‡[“ôÍ…ÒЦâHn¶Á´pç(§öÜ}ä­6ü¶¹ËZ¢’óâË..wéå^Èwòu©.ÑëÏÒÌd.dÊÒ㙇SY~*–o«5Øõ}Y\Ãý¥ë ª;w%ky¬ÀòÅ¿e43<Ÿ1g›ä0æF–Gl`öÝøEîã i T Kr‡$V¦†Zû§§Ý½ßž0?Sàc9‰œ¸v×6×3|šDŠ=¾ä#?œÙå8ìrõ-Œaa yvòÛ‰/RïY¿öÀ­_4ƒƒ«µ°5eÖÅh—¥ iuѾ{<yÃ¥Sº6颿 š“«Š0e(ÂJɄՅ¶«ƒd–² Ï˲<;”Á‚B©¿œyÝéʃL¨ m ¶T–k>*5d|´ÇR3Šƒ"¹M[‹Ádtƒ:‘È„,²,7ÃÙ1)$=ªàÈhW`:²­¢[Swƒã NDGDf3gi2D³8:)<ØZ7%aQôYê¥Å“¿E@–J3ƒxÉ)É[>…ŒÇ mMεϹÿÂaj“Ò¡M‹ºÙ…â+Œæ}Q®Ö\£ý%p®‰h½íÂo€• C,OæxL8ÍÖZHcÿ:èöäì ÓŽ:y›‹¼*˜Ã9 Ž+-‘1¯Ò›Ô/÷d3ÏS &´èœ5–9ÔBêlâÊwÈókõ¯’KÛV"™D×oÑèu› Yx§IBªK»\¶§ešÐ~³FÅ´Z=±Ä“O|»âž!´õ2xµQkµÂG FJÚ‘Ÿ"Úõølƒ¿‰ÿle`/éùZäL—¡•ÿ^ÛSC0ûªÎ! [p8V˜d ú«Á4È_ ÕƒÑ ¸*zt‘ç¡6:‚EsÃ…¦¡hs=3ÅNßæsx¶ªþñr3Çd í‘M22"k%HŸ«‹špìˆ>Û_çBëVŠÙš¾Ç`, ƒy÷Ý$w«‘ŽØ®ÅåÁ9‰Œ«N¬”RFyZ!ÎÂãùøøðYÂÉþQpzh¾šçú0CKö=”²ÿ»Ó’~Wr z9rŠ8àðÁA/PW„®BšDç̳x˜\g ΠÅ÷0CpîBp䋆D'GòeèíÁŸEoP]„JõÁ©å1ˆĪÕTI3Àe– ÒDÒO’wq¿Š¶ZqlÐÔÐù­éï«Eò+бºåB†ScYCçÅxÜÅ“zÚ®¦·µÍÛÚÖ­±ÂðhÀÛá…??(Öì”UQ¢Û)ª¡ö H™S¶âJV#l–£)mÚ\bÏOau?îîý?÷ž‡Ç¸õ>cÏ÷´´Y¤æ™˜ $”†³ë]­©A4é¼)–¦–f-•‚Ö®6cyÈf,µM NP<ªµ²w£ªl±[Z¬{œ,!$ŠœVÙä廸©W2Â%•:W4ÎÍÌg^Éà%Ļ䭜ÿšÇQrm6$AŽ=™…cXwï(*¿Lr·êbX +`ÓM»$Ü·¾Œ™fŽ/FÀÌiâ¼6‰Œ©Òݪ‘1 Û‘oC!çGS ÅÚq“xý£«`í_ðt÷?~c]èÝ:‰¥Ÿ2Çf©0íV© ØÔ»kŒØÊ0%'c:5ã5c[¦ÚÒ¸¿N­F[d7ÿ4z <‚8©HÛÙrvP¯mÕ]q½ZóŒ&áuƒ!PÖ!‹ ‘ÅÕΕ梴”WF"n-y~áU" ÒN {|C3¬†³å$™/µZ. Ë¥B,¡¤}Ëœñ U®ÑEÀ:Ÿñ úÛòv¬­»¡òTlZ1•Üœ¹|"H¼¨ž¸d˜ƒbjI{ŽÐW4d O‡óEìr-óüƒ¨o…\Xü2‡ÍŠÊ%G"ö/*¥ÙêJXâDIê©¥IB´YÅ'ýOŸ@¿_t QùÅ–žV»©7[×l1T!uÕÕs‘¾j9à(æ£Í,Õ[aW3#Q^z„>—Þhé+já›?qÖ½Ñ,cTƒ÷KO:©óSþûl€àŒy峊›táè´|KÔÌÊÝX£môŸ¼Ì îy>a­—ß‘üYSoGhÁ ÎB ç^y¿§Æv§ßYpbg!ñsæ8ÓÀ;7ëuVxÉ–gãË‘‡§öýp~ÆùL`YZP>PJ z9¥š –1ó ¢žã l½”¡¥ì¾²”x?§ƒ_x_Ñ«î,”Ëw ,D4MüÔHn|³‚·lŸÆƒèÜ[Ò*õæç®çí‚£vÖþñ“OÙ¥lVôüiìSk±±Ä!Û™$¾Õ;òÌ^8v:çYdÞâªáø(F2â8ˆ.ªK<ˆJ­kêâ^«ðný`íŒîzóZb£DFäB2 —‹ÏápŽõöyR_Bâøqg)ˈMÜVIc7Çæ—ÁvIþŠ£ûò ,¢¬)ªhÌA3âA€)uvݰ7¸ ‹NßgˆÙ7¸Â!gE‰ÍÄ„.™S‹Nö¥Cà†X×(¾.­%EËZrÀ¸N(¡-„ y@Y²£çà„-¨£›¤›] EB× GÝS–˜C¥|Ó`†´:N#¨­jýÑòËNð°8ô šä XÜWú¥™À²Jf%[x»RÞê%î ²Yr’‡ã.œ§;ñζ’ùu®¥y¢+uu5!Ur¬£Hçßî~¦òÍãOùêË÷ãb è¡\3W|ÓM—ÑÒäÛž/¢HKãé¸K´4¦„’ö•kiüéù×QÐ,­»)h2C8_ ;– îbJ‘ìZòða¨Ü€Ïh  ïÈ7Wì+‰ïXiNM‡®Ø->lî„Tq¸Ó w¤,¶ÆëHŠ&Kô¬C„;,à Ûð¿âÓ&Ëôj¼Ùžã×¾èŒS\bYmwÔcÄÌB"ôiÇ Ä[ÖŒÂ79ÉuÑÝTu{JÚØ®R¥2˜s¯îæ*ʸseþªüò:²‚|áU„W¸sGeûÏ"ÕÂ;]GYÖ—SË›ÿÎ$·@KÇ{D™–Χ¸»*èÄà¿HA÷éÚ›lƒÿÇPè|;ù/ÇQKŒ ÿ;ÓøïŽÉÈ«R£ùË`ÔO®ÓàÑÓ§@7:4àÑ¡)àáfÔcÝ*ÆË…„ÝGû»GøJí*¯V25–/-“†=xÿ‡‡–mÕ_¿\ ^m ±º}ÚzÝYÛintÖ7j­~è'ï¬íÿztx|zÒ¹}zðãñîñoõÎ" Áˆd2ý._õ®›–4$"(‹|+=NŒ§ÐUü™hrNVùsM>¸NʪUuæ6¡î-°$/M Šý1ÒI_·kÇK¢áuÜã-Î\äø_‹²x–äbbLgcT†§ò&N3IñÍ•A?9Àß¹3U_,Ë7šYrôàøªWeŽÈxø +p‘Mè‰Sî±õE8S·Q‡vÎb¨=N ãœ^ï%Mœn Äσ E‰Æ /Êàd úlÙF.Únuú&øLFÛº ·MËqxHíˆò¾ËoÕl•ò-~{æ¸96Iw„b̆ƒã òÊÔWyå] ÖýCàË’0S¢1¶ÛýÈm2q;êIö$sYçl  Ôt7{¸Ù»¼¾µðG¿an8ñcz&aKëƒpOÔg3`ÔüXBo­ªÝ6áÌY_ÏFÂè»ád4:ôn˜8“*ˆ\& ÀËÞÞã“ÁùUš¼2Xœͨ!Ê3|žÉgÊŸé•“ª÷Í7ô´×£Á€ 1”}ùóý{'×Ëóǯ^Þÿë«è’~þgôŽ«¼H艟é{.b&cRÞެ™3yåÍ %)0âv§£xh†‰†EH¶[ÉN` Ç7êS’¥¾<)‹a]À”,}’ä~(õe©Û¶ZîC4×Ã1õä?Ú0hgÛ)­(¢°ÔEXv,.)†~a\;鬳 DJ1‘ìV|Ð:"Šä=jÖ5ƒÛ Ê”)%é€L…!LI# Ó[©ÉäɵÕ2sÃR)Êkó©•á~5\½á~¡Íªt? À‘Í}+p²áËWÿµúzãÃÇïÿöC5Äÿ­_¯­ß¾©½|ºEPMT9¨Êà=_ ÐxöU0®ˆ !æ¿EÐqŽÙ%ñ0¨•ÕFÅ ´ð›AŽè!iªñ»œâ2#÷4!œ>ô¥˜ H ‰I"ÉœkÐ(/Vwä_HHâ,˜†*8w\Eoc‘GoIbŠÞ%Œè‚ȰŒKfo¸ƒ-YÛp\g° sP©Ã‘×Ë‘ûèa8¨óì°üK4 ¶àîm²ˆ¹(¯n`>+éMÕÁÊ—6#SŸÛh/fšišB yt*ÁþññáqÝi á‹pÄ`ÙÒíÊÄ„µi<<• »—úXŽÔш‘ãÆ2µJ“ xǓȡò*6D“ƒËêu–í/t {"ˆKƒ©zùT€¯Oü•å­©°ÑÍ=ªw¦ 1.Yp@Ö zTG(ÁÙˆŒp‡Lgpûut¿†=qÔäÜN.#Ô Ád…(ŽB•‡ñYi¬i6þsÝx?EÑ• ,ñ¸i &ºlA+Yš«? jvÀ@råáq Pß6'½íÊU!4Ç4þæÒŽ·tµl~Õ~™ÓI4d~‰;¡€C ç·ù­#ŽM]çT§'žj?ç#‡ÙÍñ>WNî#'óyºßßý’ŠCñš½Žý*E[°a D€¶½ô®³YÍ“;ʱ©…JlH"DØBrSè)€(h€ÐQBKgi¿{9èÇÉ,í¦—Ù¼]p0ñ¶¬¯¼½[ùˆYm_r j:veAÉDi“¶œ €pƒfŠº«Õ_]°ßN»›‰OTÕõ!éuÚµvmvºÂ(CX0 »äXáái8Ìs>˜¤Swþ›™ž+w/gLß²7‹a6gè‹îáÐÙ€ÆI:Àº}—Am¥·q:8Ó.· ~ݴśç2ùš^©ù{ÆÝ÷#®kšÆÃs¬RÒ‰c34¨Z4“LÌýêN3) aïðÙTݘ՘âäðÅñÞ>keOíî\S 6ÚÉŠ¹]çý’È?"4ãš±šq&€ÅÈ”lcŸ@8:|qzôâ´A£©Üå‹$d]¸§^RÌë˜+ñpˆE[Z&Vᾚ §ƒñP&™kFŰ«…±Sõ8o•Ü¥a6‡/Êæ’Kû'íU©;l&¡Z ΓZ,ö^Ûªb.K‚Wx_º˜_zõÇOwŸØbpHzÄ wx#~Öf$<|êáÅ¢‚'/+‚²ÁÀQ·‡Pû¨Mú¡̰ v‹·dHU@´NL|ø³V'*@Q$p²ý¶ËQ3¥ÓÁt6Õ¬{Jít#ÄV0’ c)Úz%s}Ïiêh˜„…‹U¢²"ã•ÜZ>x‰ð¯ˆåîªK/±?\1Ú6¶ë§.¢Ü)¯úŒÚb,ò@×g ¦¡þh›ˆ”LˆÆm”[Kån‚âx´ÐÔd"X¹Àº¹-aÏh)sl¼•½Ä`æ+—²¸¸¸2§60 GZ†=x”‰i«]â`’éu¡vCw¶$Öª!Ë„]2ŒíCE‡o-6CÁÐ0­ƒdî,)™ü¾€ýsϬXZHoç0éå'’g^>=øñÑÁ1ÓÙž8/P“e øvœ­Y²jèÊ>nÏ\‚` ¡”žÎ 3ŸÚ(Çràš’‘ñ`xcjäóñ„,¥Æ“Á;àPN¼€Ãáh4 ?7`„Œs@g£à?gt6¢bD_{–Ÿ:ø…ƒ,Ãð‰£,¹ƒƒç'§»OŸ:{0³¼sÑœ“‰7D™l*PyS#CØd›Y«Nbv('Þ³¸"f³4RR@ˆõ…½qè± aE ¢8jÙæð‚ŠI\»‘á s¬¶ÍÁûEpt ìø× N˜ûéw« âJPm_n¹U<$6–¹´ A0"P6Ä]6¼üˆyÃZ£½ùÇ“G ,!âpL:I*;FðA ùúë…dÛê'Òf…Eóüï5<ŧÎ^éÓ‚9ðlZÇ©rÂÊ«ø®"ÁP)@a†vvÝjý­ÜâëìY9ŠÆW¯‘Ø¹ŽŠÙlø nГך9Äß|H)ø@žÜ¿¡¶¢žž eDmFC!0lFÜÒ¢@ŸËîÌbœ¤)’æ=CmÐ$øñà9m`ì† Ìn 87–é­‘àu“Nã«”‘€œ‹ûg§U£säa ¸¢ÎySéÌí®H®ÈïθIåÓ>)G :Ê«¡ìÛ”W†)ŠK’lZÑå@~Ò~×GU º:K†´˜†Ó.ä&ìm]yŽ…ÅïQIÕЙ@·Ô|kN"WðW³‡4¾Ó³^É׬;åiþ“ßžÉ! ÿ'¢8ç`ɘÎÎ’•Á±_¶Lñ ì$ïƒãý'û¿~J„§Î(ë\Bã©ì‰æ/£‰Ý*‘JŒü`e CXÄÄ?wø&êêìVÁOÌÅÇ™ c§=5hZfÀ/”Lä¤uWΈªŽN«Ù}CVíœÃ$6 ’¦LZ*Àr%Ét›ÄHÎIý¸7ŒØgê4ÒhCéÆs0U¨À²D˜;[ 3tŸšˆ[÷õØF%ÐW2Và2ãEDCȯ<öl–¬´ò·¼t«?ÒFÀÓI‘JÉn) =Y92 OZ[ÁÚzv~Nz‡‘Ä_<<‰Óu9„öÐ5 Aõ/$ZŽÍÚ9÷`UD¯°¤)üòñþÓýÝ“}—×õÞ¢ŽJ`´ôIÆMó/tˆu‹ÌÄuòØiÚft~9sIƳcqÇ/ƒWÞÊA$DÆL¦D¶ TuívåNß´naÈnE²-0Á»È“AR¡`Ø(X’p3&ÐØQMãQ*ƒ”;½Ïß½ 9iTdCÞágZB j*,]öÅNv°÷âøxÿùéËíãýŸcñåöî“ýW¯ ëS²ÑÁ°XôPÒKR晣žXTÒ¶r‹k\Ç F?Îçq°cŒDóÀìO3 xõbGÕ_¿Z ÊÒzàÄ“†pÞ-–8´%ræÀ(S–/‘Q!{{~1¦L™¶}8ûÀÇÚÞÞz¥‚è‰Ì&ŒâÓ ¿„å8bò© ×YZ&‡õ>žß ¤)À¸õÐ5/aÍÕ¬N‰HLXºas…XfÅÉ1—zëR›¨P'ÎB2òîM%#CŠ“ŒËÇ R[ ‡ü¼ºr*7ªWhùg,¸ƒ5ÒæpEë3Õl u¹p#6Biݵë°ÄÉ5B7:Š/†¤Ä£ž‘:PÜøˆ`MHj{aF$ß ‹éa4‘ËÀI4â¼P ,4õ=—døj^õØwª_l€mXÈ£…ê*ðœå‰DývñiÃiuá ÊÉ'£Lþ%.+¬ÀMû4òÐÿ“®-Êî(‚¢;ŠÊ—¸£Ø°˜sºŒÞEìíq,D¤Þ ÍíY蕈Ö í¦+–.ª§°BKÖ²–?™xÂI¡¥#ó¾º#ÄÕà9!¢ú'ß![>E·r‘9ý …!G¬£¤v-wxxáŒ†È¡à‡¹¡4V.z[ºmî'ñuÔÜCVƒzï¾—ê%x3ªbñzãh.BIÌVÕ±.ÑíÙB—zŽEºÛ–Äà꣺ 4€=lB϶굴õš×c D ÉvЇÿÐ,n7S ¹:lêõuëõ/¤ñà$ܪ·^ÓÖ‡ÊÊO•M¨.µ÷šs.1µLDx}ôCÇí®¹ñìðѾykF®¹!L«³öòuðj£³I[bvdkg“ ßnáðrQºÿ¡‚6V†_+C_ÌÁʰZBoÇ·ÊXb|rÓ}ÕW0 úm­b©ö®îV¢é1.V?Ae¸ÚD§AJþ`pu÷‘ƒ “LôJRŒ$(¹ãóhÝØä»SYñ}¹E!½ jÀ& JJƒ‰ú±ðý¾Ô©LäŒu¡BQ[tÓ›t’ ¢FM|‡ãïLë=¿ìöh¢­Þý²†7>WG¥H{M©x¼ô¬;¥ÑyLÆË¦¿Y¯Mí1 ¶ÃÌ‹3…W©QÇqÔ×› wCªût€m“k4>êRd÷¶ÚËð5šŽ–uòv0æ>¦D%¥{¶Ö\•1-!û 4)³Ö)Y—ÓfúÃ61‡b"•°DlIâ}“}eV˜(ÀŸâ:.šy¨Âÿa›Y)umtz‹Ôª;ô™ëºk臊Èj˘©¯°}£Ýp¾r Ì4ÇgØ.È’%$™ a¡Ðmt»ï¸Ó’;5Î9™hͽ)ÄZ‘>mW<±c%3«z_H_|Èapt8ÌæN"$?Ë9 Zîùk¬§tÀÏÆCe•¾Àv¿éõy*ˆüÆ×ý7›B*å”ôžzÊ¿mU(£äÇ9Æ%4Ÿð©àí ³7Š®£NµS«yIÿyïÚÐÆ‘% †_Q–庒ÍìBȆ`ì°ƒÁà‰g,GR IQKÇæ¿¿çZ·î–„ã™yöy™q$u×õTÕ©s?­’Ýê¸â¿ÞÁÐQ«ÐÎ+»•ÓGhÞåü¥ñÒ%±¬? ÷Aª*ZñæKYKGhqNTÚ’XRvë¦ê[1ÏR39¹ Û×Ë~w§LÖq“pp?P';Æ™pp8’hXÃDrò‘ìúÐdµTS’ ñíDƒùmÖ‡Û–3‡ùªûOhý«ü•‚6-Ãz7?PIÿ{«´Ä–Ô‰`áç¥Äž¸]{fÏ2TÝO o\6"­ÅŽ’ <.ѼsšgÄ΂ÒB²Õ·åhk¢Û¯+,#EÔ±È5E:¸°-•(Òy™Iþ¸œX€¤S?½ŠåTÂÆ(Ro6áH b@†"—ÚK¡Õ‡2•¦­)›û2ô7õeë9 •°R%—,-y.£„þhXè¾Jc‚ÃxßyUî1ßüÑ»ÔC›û6ïCr¿mãŠÚ±ñ‹1 a♢·æÔn‘·¡Ýåu·îe,SÍ»™ëíËÂEL±*5Kg\5ÙÌñX?rzD|P)u–Í[^ƒ…ý^˜f2í6½F:j`ĽœuZÐs¸Œ•¨½˜R“ÓœLPAâÖÕÁ‚JG½Q—ˆ>_’  ØGûp±Â(>s:@‘t³ñæ»?ÿç½ýlo¼yRÿ¯·ê•GkñjFÕ¡tª{kÕšéN |aƒœàÚ¢æ~œJÉ55FWûFIõ®ß¯—¼ÆMؤ@ÎI ¾þ k•ïIG¨…9¼•”(b­TÝ–á­ôÅ|ERl&0`öXÜIÒ+¡ Ôˬ»³F]H ÒI¥1f-±V¿¾%ÃÑY5 5P*Ÿþ¼xXb?sa×€¸ —¤bˆ¸wJ`h@ö½$œþüèŒ/šJjµ‘—+Z‚ÂÃM¶Î5Ö«fk{ÛÀÇEiøj·C ÃÉ‹õÛûf ÉàQx€Ú)Í /d‰)Ša¼!?Ò«þÅ4#zñÛôkyú>Gw±>bâPuhý 2&……•Z.†H>åŸn,+oòV2Ò‘©ÑŠŸçÆ;/FóYˆ b’€nܼŽ734TÞ<ä²ÌHœÈÌiÁýÙÜ×ÈÂò†ŠrK~ëv;Ím•Éf,gé¬Ã·kK9tþÆ£àd²¡b9àœs›¿ù]„'1àÀ,±3ŠF¿‹þ¦H”ù{.ôá:då7r¥XPs€[sÓPùºŒE×LÁðšSÄ]DØÛÌYé 4’u…ðZÉMZU©?QÑé¹ë§(C÷›gæôyŒ6¼}ÚÓÎpçÊ×Õ(Óï` °()Òñ‹÷ŒíV,H½í^Çšû+„¨í¢XÕ^Wùá®-ê;"!¼'þHG¦›¥ 9¾“A&ŠØ·_w‰"HTëôf××Yáœn{dž /?„]95b “c!„ƒ÷Tvt —±€B/d ƒšoQ¹ýf·þ÷Ný÷·[ü¤š™ï›pÉ`Q*ªËW86¿c× FK*ê8‡øH 2œ©¾ñRud¥]9ÔØ}¬ÎPL¤™¥ Ke Ø¿Ãé¯.fÓÙD…òLr˜„ m· J}â\7T¾ÙÊ “Û©*ˆë G–PÞŸÓë„(ØM®AVï†Cÿíé" ÂBƒºØTN"âá³ ™„Ò¨¶Æ§+¶¤Ó4;"ÖEßÛpÕ]°ì "·D$ˆrlJL0ŠØ‘ƒÌò”㶉é×ë%•›Ÿîâp‚Pt™ºÚ”§ƒféFB†‰?7v5¡}.ÞÐÂp¯‘eªælŽU§5˜c“–±ÔsñdCJ>\÷Píb³‡Ë€ÉSÍ s…Ð}æQ( R8ánsµ6iñTYj—þ³SÔ¥­ò£G¥w«ªùA‡ÁŽ/!¡-G™g ò/³iŠîoè #HnÇd9ϵ1¶ ÝêçÍ.@$ Ér­ ºà’ž_;œWn€ýøU ¢hŒ®'ÐìN»S¶Âa® }Lèø£‡( Ÿ½'oDzÔè P°SÔ …X4 ”™5Ùʃ5qMÞÓ$ÉJÅÁ¡Ùt„Ù$Z gšä#ús:»T¦X½µaÉ•]—yYêècK g•²W4Dš¼KŠ8×,«çñyFK£ûÃñÙB$û#.*gz02—ÌÔ?VPF•#´f·`´í­Î>}ôcÔÇ2#âáâ~]1–³ÿ:½J£„b# n‡Ü©îž™š˜íNÖ´R¸¨\ÁTZi¾ØàC(eÿà,òÏ“‹‘Û¸´ÂSÑê’ÁuâÄo©Êß2vÒÁ\OJ8†¸jÃÛx•2»AùШ¸dFãçZ"´ÆŽa[ÝÖø¤UîÎÿh<”ìàIÏŽëâwízÊq!òx?6e–¾-!۴ö˅QÙé¢BSQÁOY¾Ø+ÉO…²27Ц@Yq4–v+•‘<ÕèTu¶_}ÀW•^Vî ¦YYÐtû ›ÖßÁ®ÐÚ‘¼‰ž¢‘IÆêÜ_-•»Üå :‘¿ð1OB\%9zpO`lbÝì¶)Îÿ˜ø¨þ´¡•È‹l04õ”óNR €Ï1XYa8V$ì,æåÕTî-hE›ð6!Æí•älŒ9eÕ«! ·£LȯÓÔ/jÚçÞé àSÅÀjbrÐ¥!ʨYµ?|¯GÌØ‘ö’Ñר4ÜÙ+ªòVc­Ûs&Å3åãö)ÙÚØMd[¥ œÖÔ>B¡UÉ)¿mîàÿÕ’v˜xËZhü2!ýè`°iv²›¦È6ÆkF dÜæ”é#›qšÌz£ºõà§èCÎûk<›@‹´ƒâ´Â§ÌaþWp üžÆþ‰P^?l6”úñ­!«øœà4^t>ºp Yæ I˜Ñ¨!™ß82®ãDœª0—gc÷¯x®ã‡r­ßH°jãUá²ñ"¡ä3L#G¡() öWsn>Lˆr4lOð±’Q7D®.øˆ™F 5-ÙHfѯ¿”…ís¢PÙYO“Þ¬›U‡ùS ÖÓéÇÐ·Úæ5ÖLÄÏsÊB-A£æEór^öB«þVïj\à ߛ]¨5ϰÁBŽâZg–šŒl«•P¼¨*¬.Ê™“”\“W•ffL‰å§‡£»»já¡ñ‡€÷†ëÖû|ì´ùí…uË]ð¢E—2ZÆÜ”‹'Ü*Ûêö;Ë2CÌ·’cK¹Týÿ朊vŽOZ W}Š65ÍÏ2ØŽiÀåBi* ,àÈ«KaþØ†Ò ,‚¹F‹—Aÿ}8ìH²2¼èÕœ^Lè°YFQ1Ž`…Sº“"Â…¹ýEn6Žö $øX¿âƒ‘Ê90楯fY¤70lDH’¾#íáþBO¦È`hÝQÓëLN»yßËáÈBb‘ÓþI‰…>GB.[tyh‡]ä܇«ÎÛÕLí}¾˜<ò`˜›Ø_Éš¸Ãü](tGE’ÚŽÐo"r…#ádà$+sg© L§ç¢‹:²KŒ‹Ž)ÚçmH{ 4_¢NºBÙ<\;ò ÂüÌ5èÿ޶ +¡õz—p=O˜L„ª‰ÅJ„6sÅðdrò½ˆ!ŠJVùÁ¢Ã>‘"’r.P4“Éñ²ò.êÕ™';íLÑéðüEÈ_üJ¼¢3¦Æœ<ÖºóÈÈÖN@gÚíœÝ5sq¤2ñ8ÏäÀÄØsª7‰xÐBáj^n=ªu!`ŠÝ!Vr¹€²&KXhîÅÞ\Õ¿Á;â¼!O˜¹d’ ­A¢TÚ¯5î)ƒÍô#ÇúñQE“]Ðm]¡ýåöìé}Ú]ä)ÕoÇœ•&ê "%fÛÐb2£‘§Ê¾{'ÿݹ¯Öá9ÍÍ–?6q…SN1W§Ñî!|£&3i?b,ä¬b,¸úþw—jÕq÷áõS¡¿ÃÑ{'’¿Ý…bÒìù†ÂÑØ,=@v“A?™¨ØgwPv›{2U lÒÄÀ&åGÒ µáĪJtI8B"ª€ÜÂøëœ¡¸9K'$5Q^–¢ª¯ǺÅPÞ~¼é|T²Á'„k·¸^Sº¢ê¤x8§­ãRkË'¸Z*fôÞ—‘II)RDî[rIÊ­Î!/CñæS¡ØÎsY‡–J6o ´rÙ¦L"Ÿœl;Ÿ= ù¾Ö^Zu_yídž/\>KÀï–±À8ä5Ó àÀi”éè:¡4çR ø¶PÜDÇÒë?Ê4Êå—I4j §ï‘2EÃ]ÄòÉriÿkÑd$¡ÍÈm‘ŸÍÈn3ýú¥LÙ›ƒß©E>[ƒ¥„|Þ”#iö>O¢î!Ï™+Ðûf-Þ<Ïur}κNÜÝAˆ1¶Ÿ«ä™¾Eð8ù*KêÈ|¤Gz;ôάñEp¾`¨±uG :Ét¡GI½°+loüôÔeYЦvFQ[•ØLªÀwßóìÖEœã} ErÜ” hSØçÔ£…ÌhÒ¿D©¦ÞéwÛãUtû£äIa@iŠ`-qîœÀ¿üÉ5uwÚà”êÐDǸˆ×ÜŒ!ÆQ¼âñ:>\lûtÛ†}hG½SÞÔ‡4þò§oêDßÙç¤|twkPß'ÎÞüÚ©ÿ¾[ÿ;zÊ?à‹*BÇþ­>O:—×ó|oÏôúË!^X]„ªUªÿ‚7hMFÓ:c¤­’Lú/h>"Ù9`búqØÅ¤Š7Ȇ‹Ì£qýmÍ ¦×þ?Ûì¡×¸±%l|̈ æùËÁÑ7›8l7ó½¿=‡§0~ÿ)•kÿ²·zº{¶kú˜×r*GðéáaJ®YÔp!2Á„3ìëP]Š "Ë *‡ú&ÕjÐU½N–A¯’Fî…¨pc}ÕÖéÈ ÍáYûéáéß^´÷ŽNÏ€ƒ`AGéE»£'[Në¿(ZØ.à`wˆ»VϨDOf´rYØ' ²‚·ÜŠÛnRèôìdÿÿ¬¥5“nVÍì…îõ6]Šk𬊻îI•¶Â~Û^Â`Ë@ñ M½xÐxhZ«¾©™ª,B¯°E rᱟ'õC…*ŸR¤eÜú‘o¯l™åhþh*„(Y©ˆMÑJltc½¿lÔe5îrÝÃ‰ÅØ›ÉÞ‹P#% PDu|5¾Ü<:t‘?PSBÏ7O_¾SaŸ¶FÜ„mÚÉúòhy-¶ˆšw XpÊÝ…à”ëk/¼À*…¿òîáŽ^˜Âª8íìÅl~øº£åà¶­,.¸“Ûî`FñwÆþ9_d&©Q÷ŸŸì¿4õ¦dÖ↪å’Ý ÞÆ8«DmPzUyg¿U<éEd"ƒFŒ¤¹G$ÊËŒ<)jë«.m §t•Ø<ÜoÒ³É+V"?’p`ÁôÂWRã3 äˆÑ6̳¤¡€Z•æ¯þ‰/7{zœ6m¬›ÖZe?Òe\1¥Ê÷!£ùXhFŠ¡»2êüÆfTÆÅšÖ? †8iÿõË㓳Sè?‡nñ H¹TÉo¨‚Y¤3Ƶ¸A+®S“*ߨ*ÇÍߥ%5Õ­P¼œ·7ë¿–ß¶ªÍþm4/-웦©ßËð¿J©b¾ÏÿÜáCéR¼Ãù”\,¬g¾ÿæ`,Ü ¾”÷K7A܆¬¿NèžM.¼âÍdù2ºš—¦wÓ½/Û„g›ê{5ékz;GNæ&’³ Ë-ÆCª)„£3CºqžÎ£s kz_Þ­ZLèHP®² Òbº ÄJ¾'ÀIeæéo v´¡¶TÖ.»ÚY}ƒm x…ÓŽ{ýHóNÂÎ%ãèu<ÊË&” cJÖȪ›’°waµÏЬ"Â眳š%©ßŒ?^ë;«_‹‡Ç‘*4Pð;¿•HŽ6™3ø9›M+…ÅsÁº@MkCjÑá95ØSÑ ßíc²kEäg9û>Ü’?4ÂËl/Œk†§ªºü±Ìò·Vñt šÊÎ+ÔEº¶¼Ûaîér×I©¢«·L~EFxrÎ_€P†ºGjæ±®ÇèŒgs[qºœ­ˆ7Pá|øäSïn‘–!ß½AÝ*RÙ­’Ùü¡ÙK>4‡n*Ÿæþí'½Á›À—ÂÞs>^·›OMs;mâ×vnñ˜hç?«÷Ä% m? ñë’»æ¾Ðþ¿¾ ÀãÛÍà纽’æ€å^@ù: ùçäÎÁ["E„Ìj'Þã4Añ[ï¸@$C“\§ý¢³p2 ÚÙŠ%Ësš_ÂJJÕ\ª2`¿ÐÚ?åä$"› û¿Íú5"=Ss qÙ˜€´µ§Ja{¦þÞ|c¾wkä-׿ÚЮØÂ¡fŸŸ?ÞtÛ×ucô&{êCk+b# ìÕÏc¥/ò›—Ýî6Ø ]”A o!Õr‰c'®„e™QsÝí›uFwsª{cŽDåäZK*?àŽ‚Ý–=#ËÒ2•¢ÑLí÷ß=…æ4("gq$FÊqÛ©HWÄ_ì´…{S¨z–>¢ˆeÚét2ëN)Ù (1à¸Y'' xF”âz§×Ä‘n¯Þ¡P˜úÆán«<’QúeVáimX%u×><{Íñúæí6 =P§*d—ƒŠø)ÐøIÁì¦kø›5osÆlÖv;f©Ñ# ñZÛ×`'•Çù7K>©ŽuoÍÆzÓžù5’àš5¿~ PøŸZ¥jÕ¶*ëãZã…©šÖŸþ´Ýô·ÓÁ;i(2ο³Ù9–®øv„ÙYýd>µ"åe«Ts“rWûª›Æ`?œýôó'·ƒ°GwD%rpžÌL²_u_,a« ^›c„ð¢†Øu‰%Toôûtâò ûSÁÃò},ØêÝöªU °ësgB©n)ß70Ÿ×”ôv’$šLÂj²Æ ñÕ³“ý}xÑþåøä/»'Ç¯ŽžêQgôÅ=…y¤“él¼V%7–<Öw¾^/ÖêKD\+w@ <ð‰Ø¨œ§¢hwm’¦Rmïmf ‹ZJÐõ’Íèª!|ƒ2OdòPt4JjøFlçDZ(El®ß±`>Ÿ]ÉÔ ÌnêÒÞR:vŒæC‰(ëL»È•%§‘X/R`O4¢3/öÔ-˘ŸfdÿGÑTÈOQÃ3¸Q]‘ö‘= iÀ2}¨}Æ™iO$·°QS;uøfc³ñÝn}ô¡¿e;b}ûMcƒH¯õúzýž§½ÍÆúgïç7'ÁïdpäPå¯ ½èðëO³R#?`³WãÙíÒ­•âC]VJõ³°zÞ9uvz\¥Ý¥(;,*äøw¦|x¶‡É`OUDDÇ[ÁäÐý£Ø]èç˃ý‚xA7èç‡1Õ‚A «Àé 4mÙ9HaÙɾµGŸ‘gi€tØUôlo¯v^ïbT0t­úœ@TÎb`ÉQ­Dî\{˜*PÍú¬w&Í ÉÇ9HQq®¥1O½ïg¥öĸì3Þ1ù®ÍÞ;Á0 šÊà{òöŠF’1 Ͻ%¼dbyl˜nbžI ²ýë8B}N½¢*5éC|´°/Svx¤HµÃÏv¿ùz½:þäÎøŸ1ŸL›Lày7ÎWó×±CnAh̬kÏlø~ˆ–éì 4k-ć²RÊ3öŒ)’*`¹á=Ef–hÒу)’÷ú=4Y¡ìè~§uCbÄ2ag6_7£_túT.jêra”'¡í ¡Å*«1vB©¯#2L¹£¸âļëç÷u6û# Þ®®×ÏTò“w$†{ÍhÒc‹úJÒ™V‚¿«™•A½™5#.£Ì+a-Ó…öâm‰žöé¸?u&°5ŽÒøä´}¾ûÖœeHÞM}¤þ2ðÉÝ%^Ž“-ב}…› ]A¯~hʾ€©³ 8Û¯w&- ضtY€6CÂ>f<–ׄ|3ƒ*ÝþçwÚdhºýn¨Õ®f·Ú"ʇÂÌ›„ª£ÓÄ$—ø6îLI\¨Æ§Ö!½®à!°áí½Ÿ÷÷þÒ~±ûüSÝý|üÔ†ç§}_>þéž¾zA¶#%u®²ñä·J¨ÖP%…";‚.^1k㤿^ïóŸß­5Öi^S  g“dËàÃê'õÎäº~ƒndøÀSÿî[`\9VßÃkÀ0Ë tªt†ß/N16ÖvN©ê|ªóð !Ï,¬/¾g°ÔêŠRÔ¼–ÃkÜC²Ä6Ìÿ.ò‘²´Ò}1ØŠßè;^@[°$ãQ ôU}wö‰¦ç[1M»QÛxòäÓêÊJÓL¡NOÓÏÀ³ó´>Ë£±|þŸ¢“ºCoå¼ÄþÉ¡»eáFa;/wüðûò7¿†RvTâTÀ'  „²Ío ÞûÑÅ$ sxNÙR?j Y4,¹R%ŠÑÓh¬ÆÀÐ4üâ´¥i1Zæå~ËÀFØ(» †¼µ¿å—Rˆq#yÄAo0 öœ7;ÓPæå 3ÅÃ[W×dw!x¾p$ ¬(-:i:êö‰o·HÇò!Ù€]â}p0ü0zÏn¸Ç+*iÓj.EÍ\ UJ Šö´H®|BŸÄâ±¶\3bÝ1R¹—ÏÜæ€Üðœšz½±3¨³+÷„p»…K<×`pÞé¢Ç4ìÁÓý½³ƒã£öÑî‹}Ì„Ÿ)-%²>S–JÂJuŒVÆÅ$žÅ>¼„:ãe—ß_|¼Ô-¼ø2Ò4˜ Yˆ5úhÇ_þo<ùþçšr¸¬>Ô.:jö ›zµ’?‡døq—ûÝ«Qš ÷S0 (_4‘Ƽ½-UîÎk²{¥ù.“·±\VLwQ£W`šðRQõRy³”sS³^¬ùëÞðv…©k½J© §TÙj~²œïK apÝ™ 3Ý™¹€,2/L€ÁUZ–6H·/vOþ‚ŸMy1–Ïžè¸Ã3ÊÁg)AúqÈ‘Zû¨h‚h0^j"ño¿1.ƒs ‘µ´€Hº3¸é|LQÅBâ\(Í­7+æíºO¯Œ“7ý·­OµÖ]½Éƒiþz0´³{óëÖÛõ-y›hHÖb­°­Ìt,u$Å(:TòÌh“ Pᘋ4Ôh}úö›Ö]óvü ͱ& zIζæ-~ùœÜ'ÛNêjVüÝÔAÅ®òÿŒaê"£ÂÈ]‚fHÀÎXüÖ8Í$–’f¢¹vÑ–—?«·løø\>·¼g·vã´†Íæ¥¤qz¥À·åÂŽ›™š=¡7š2?tƒ4i:†­mÛxÓj˜ÖôízÙ«ÿWVg×@ûøÏ²h;º{ò¨© ‡ ð†¶AÀÔlD×)ƒò•È t½“H,Öx<ÁNB]O&ž0ÊUާKKÚMΛ“ð†©ì¥©Ön˜Ÿ“Ù¤Îl[˜Àø•¼¶6“¥R_¦Á{9†×s[I¹>­m*ŠY“‡5ÔI!^AÑ™Dxv÷˶º‡eòÚp£*î^|õhœ¹h`c²ÇgEšxrûÍ“MõÇ@4HÔš“öa+ÄþÞÐ4 /i/i‚P™4kHئ†#Ð î€À $‰hñ!™±äÑñ…X>­5F´lÂi)ÞQ$V£ÙÛÆÓŠŸ¿U–' DÌó/'âT´TD]ôÙå = YH ô:à©_Š4C|–Lâ6ÿ éE·6¹×̤føOû}hTÄ­£÷ù$èòdJEi­ŠP¤’õ|.3 ó:­;Þ¿b¨ßùCM·8Т.WUL®çLÎH»3l+zE(GÌX-*RnàJsAŠë_Þðó¼x/5ªÈ†Jc_ÐÁæ~”ÒŸc®B,(‘fâ¶øNŠñ…“8¿”†žànÙ:vÓÊ ÛE€*ýÒé“}&žs[Ed‹L˜`ì¨t€Â*¤â§†¦œðÆ­r«\(lTÇ g$áôbÆ£~$‘¤§ý!˃ÄlˆE)ƒ™—=ö—“Ý—/÷OÚl.Óþiÿðøèùiûà¨ÊŒƒ¨l]äIŠ7í¼Ç\˜ pgI´M°‚… CöG(.LÓÙµŸ®ÖfW»á”l¶2¥¨^ýt•sIÄ[/—­a¡¸ù ¶bµU”^u>ôGåwü½B¼ÎJæ9ÆpÜ@f¦>Ý¡7'Ó­Õ‡ Ç~Ä­'–°¦n0hõˆ„mÑ#V;Ñ*ß+øšUj—éIBŸ'nßJXϞȢ «£¤€ñæñóöybÃh^"&¯z'ᥲ9%gó’S"ˆ>‹ û"ûÅ¡Ã1£Ó#–Û(ŠêFÜ1³ótÚŸJt;’|'ƒqŠ{#3ãqÁ€Ö°à¸÷ î{ʹŒ’PÜ4×É´ãT,ÜÎÚÅMDü‡DÏ( ØÎuŠÝð“x5rÔlÏN¥=©àxJÌO£ÙdÈñÂ:Ó>Š%=z!Ÿþ~ús[ô1Æ»E‰Xã¸|˜‹­ZàÝjŒ+?ФmïÅSJÕüÐü=½2ß4nISò-|Jð7r*‚yŒpþH£@ö‡òc«tWC¾²{EmP4¼á” Ø8ïå,í\â‘~ÚO9M/ á~‚¹ìΠônýÒT‚V+;ùŠ2˜%ÜSæè¸ýüðø§ö髟NÏVEBLWëÝ¢¥ú¨êSý­wH>¬“ 0\‚Mj¶·ù‚ºè¯þèèôçÛñå·Û¢Z0ü f„ïl2ûîÛÕ§¯v÷vO÷w6l)}$å^üå+Gìç—õW¯Í{€*BôåñéÁk±+qz)à‡dêa-Ld@É*fÙ{úr÷ìgBa˜—am6Ä9ðÓÌ"ã&𠬮F±å[qöViUÏe2üПŒ†×AÔ’ž&9M941i•DœðöãØNüˆ <ä!àö~Á[ÙÓ‰ù&Üñbºiæ G²Å«ÇP$>xp!ל•“ìWdz.ôÒ÷ß·ϰ×öþñ³ÕVycÕûê,ÍæMSj•XCük[ø…~W”>¨$N ³A?e ¬µNÕ&Q`¢ÉWɽR3kçU¾|H«Ôõ߯âR *7ùjjþ {35-Õ !' Þ‰öàtµj") ׺Uº'IÇèéÔè0¥z}0­— úå–ü»Ö5G=J>"²êýà @!‹U n/ÆŸU½\qA± åôf¤Z687²eh$ÅñB5~0»× io×àŠs:w˜Z6 Æ»Óv)ŠMµæ@‘46ZF·åž?OÔÆ†z«¤¦ü„iÆš¯h5(úm _3¼MCÞá ‰mݪ﬜]Š9‘ çÉ¥Uc…Ë”M†ª¬òŇ•^´J*´sPªšx *µ!ç&ô͆çí§;­w‚-Z¥×Ô7ÀV$:úõuS#Ã=jRn†ò£G•Ö;Û¬ànˆ;üš×6&¤´ãhdÆöì‹ÇÆ©lü!0rM÷ýY«dË‘¨ñ‰üô¡è1›vL¯†p%Ž.‡ýß)ú,”’]¼…„¯ Pfã‡?m†=l„=ª|¡˜w0³@áH_4p¹¾Nz}Úì[«ŒÐm» ÜMˆ±ågUØ’ï[­òáÁÑþÑñV†q, Ð݌ԗç•ÅÙn[6xÀ¯u*¾4 ÖÐóc"&%œï;†Ó?ï-÷Q)lb'ÕUIJÅëF±çÝÁ²ÏÚG@þ¸ó„Þ ö<Ùµ›‰arÕ>¼q›„~»eèü’MuÜzd×ÄÄõPß@»‘–˜`¶‡ c‹{h¬”©ý€]VVÒm >öìøJ«YÑ>êÊ$$H¡%ÓÔñŸÈ!ntè" Ûb•=˜‰¯D×OøŽé€é«&.qÞÇ÷؉_° Oì8gL/e@|¸²û# Øý¢åL4ê‚‚V­Qöª@ýû`Ñü§¢¹b[o‚\q6× á:V%.I„–šwK&N5?)Fdë Ñ%9°øÃ©H3»WáeâOÅço[šÉHÙÅ[7ÊØ; GçJÛüÑlÖJAììÚ•ýÝî—ïÍܲ¾ÿÇÇÎ^H@fWÑu¸x=U÷*åT­•á¨Rl×MX,ï s™ŒB»Ú^¸|ò)g>²+„.Ç"©µ(°3‚ÞH°¨91³D`SG\.lvZbr­oT¢]±F´;Üùßô,¨¥}MꆒFÔR^4§«ms'  ¥]­rÝ+&‚¹öÚ1²Å{ñ8CaÞ/ÎH5¯áäy¨2É–aefz:H'æ¤@8¢aÒMÒTZ#24ªÆIšÂ÷åÙ”¢ÅÕI”‹žrjLA´¤öYn›°Hñ­Î{%à£LL3¯Váþ íkVyïeûv»À.Ýý:Ú7¡9ˉ‹i=tsÎ^p𞸒÷·†œ§p˜¸dœúé¢+ŽzèHš þl±Z½E9ƒû­5Ê/,kÐ0Œè5 6žX÷8h™ÿ+ÀèXÓ%÷Áì?Ì}ÖÈ Œ$„¤Sપ¢Ã&œBâ‹ÁÞ_&Cü`à†™ô4¥LCó²‘Í,ã6Ò\`}ü²v<½.Ùü¤û¬ˆAí„}ûCg"°c*º]dð¶+޹Â&ý̆l $R ŽÞ¡Â¶=Y ͬ£¾˜|Ø8ïòàŠÍ]'­røVq&°e¸Xœ?)UžÓ'õ âƒÑ°ÎÊÒçôË]u ¬G÷‰(HN:ÛؾŸ’ãSsò-ÔèåŽÛ' âQ;Ê ¹µ„t³i iQ­E̜Șº¯Â…Åf̼²‡Õ…ÄpÁ<.Tf† Y-‹T=ω¹G¥ÑmC(ö^#š3/yŽ+9ø¥âÜg¨ºÏÞÛFÎêÓ·ˆØTA“¥+×<P,#«UlUf u„\׺5¥9«0´É­RW°3? —GJaÂ(?Ž8 Í*CÄ µäè]Â6Ó‡ÍáÂñ$õ zTÆl=#F:,µû‘ºð.îi¨á0é(k¾¸H0?3…[oÚ™uwžØÜs}¢åM®iZQÓüXòÎ9Õ¾¦™#(õ¡³pW²òÉ—Pç¤M÷“ÁH†¨µòhaÑuP8µÒlˆYÆDÞ7…r’Éíp‘U­mÔ,·UÝ4¿å:Ï"ƒ“!z¸÷*Õ”õ •»yÐcÇsw Y$÷ûÃY² Ý,Su¾~g„oPçP#„¯îN¡z‰áj:/RkÖJGÅ©˜4CPoD>ƒqÈLç M_ƒv8â¢xaü)iªjXcŠõ‡"^õýJj97;P¯¨$ÅT¯¨1l˜cM¸P ÛÔ\÷/¯$r+Çæôa;P룸²±ï œy~W_¤†ç„1\)—%tAÅ?Zħ ´fÀTó•Á jKRÏÓ(ÂØ sÕ¿œM’:õã["5¢-×ètëp@¦.'{Ã/¾Þ ÷«°pmªµk@e£Í8|“pép$=7•G©óQy”VJµˆÓvs7rÍÈV¯ºÃ¡çv³Í¨¡Ò[a¾7 { ÇË¢ñ°Å»Õ‚òè È:R¤áOêW5Žâ(C¶!ìÈ%‹ŒZBÆ\XYeÌQçÓJ;zÇ KÕí|…ß’­áÅ^5ÖÜÿQ mÖô7ê>íø©mÌÈ— O¼3¿{Ä}ay^ Æss7¥)Q ¼T)®Æ£ôþSËÙ²:Ù ²AÂrM,D¤cHÀP* èxø³`8äQ=X>UüŠãî\`H×ùÃÎ$‚䊙ÑåLKȪ\j*¯qjÝSåªåöbi,=8ÔËTóÛ¥|ç4Í‚’² %F´U#‰Ï¼ê5"ù,˜ †[­˜NŽòDgêQ¿þDëuº¸Ä”G¼LÔ‚“ó…Hw0º —BòÍ_¸6,³n^+÷€iN­”^ n/íR€[æáæ×3£Yéã7>ÛÁò$bî®y‚™‡ñeÀ3ÔH·?H†‡Â<Öl%Rª$62¥*rð¯¨: Š8] .ðkn8Ù³dÏ8Æd6~a×qa‰f) z1Á¦M1`&Ò 5É[0Æ,÷H.2D›èžXxNoú]¹?£å´{Óõo‘Ô>:>†ê*ØåÜw:òItSd&7ï<=.ìo²¾«¥¶oï*}`לÃá;f‚£²1)gÀÆ$Ž¿BʉµG©ÇŒ1/VÍ[Ff/pë®›1ST¢'ZCº«I:ÔšV«hƒènplhekTš%õî ›óÁsÏ磻¼_çWˆi py|%oOÑPâ˜*€ÜJjN n _Åî[^£«` ,®å_œþŤW\½"M@ŽuÃÄRÁµPüY%b–Avn ª]fìçÕVé‡j,°]ó$ÉUm­Àþz]e˜©3ÅFžÒ7Åf6¡ÐÛB*£A‰å¤µhþJLet'±¿M±ºì%â.oß7‡Õbù%S[±Ë»¨,-+y¹ÏHô@>ê½ ‚ýš–달 Ð}0ÆJë#‰ÿÁýjÎw€AtÈ'­“¢ÉsÒ¥8˜6Ai'k‹”Uò‚)">”TV €£Ó~Ùþe÷à¬fBì¨ÈDVºnd¹nsÇÔ7B ãéëôÌ™Ã^…FŽ]–ÎèsÛ({ +ÑÑ*Áj•2kÎÉ.Òa㮑ñaUÑ ®H ª¸QžáT…¡ôäc9«ÉKaã`!¼R;ÐK‹:¨ND—VŠ!ãÂÝu&äê¬Bú•8úN•ü«yZ~Ió{¼ Öø+à7)Ê–¼¾ÆKñ’×É5zÓ%·W€É`w– ÈDá„ñVZg[@#“Jç¿-Mæ$ÏvNBÔIm"ãpíWŒÑG[r›ß…«óìXd9l‡æs ©hóŸ¾ï ê(Å‘:}ÏìVÓ¥B=²/#)˜ hv?í ÆW˜êl˜ö/±@•ª"ñ†jLú¾ñ]e«Â«CM?Þ1›Î^D0$Ö˜™šuþÀÿ*’Änc3'³ÆpP’ÁkAìí`Ì«A–0³ ÈÂÒ̺S6‹L§÷¸,âªö¸gØyãl׌s… Mw9ªÜð xšNb­%i€kÌOÿ)”ù™sûC®W@ðdõ ¿Ôhô³µ'ü¬6ˆÕ°‚ õúpß©:i‘Y ÑSÚ<Ùþ#`úûçBuPõêI±}¬õ@m¡š4@¿Z€µïȦó4áp¶t4H$‰·Q5"˜WÇncsº\¤SuɽÂÕâ#}ÁR£¡'|ŪOÕ ‡ÄG*LBë耸8è‹Úrf&—ìæš]-eBe·ôÕ¦h3º7‚”yÐÆÜ]ÛÊ|’nô|†Z/‚“Ø#’¢ À-½ñ¬q#¼¥ýÇ òR€”²º°‰réMMx¹M©€¨ºC¬².ŒÒ]÷žVZO*áf 7cW=Æq¹ÿ;6ZŸ{ ÌEè2Åéú3Bëz"<ú\½3ãbØc.Öʨe“I«ÂÕ…?óË»ÓdÑÕ'½a\ŸÙûÛ)öV–˜ÃÊ’ðV*˜ÄJÁ Vî–_3œkt"…$ƒÜÆÃcÆþÕ‰ñÒ{íŸ>@õ+”†Â絉®²¥2tófµ­ž°ÄùYº9¾ ŸKåƒÉÞ&ØT x1ìÌÈ”€§…¿Œ?Y[¯»ß,Ý+Ç]»ÆÎÇvÖ¶±¬ù aµ²"›$2z_[ÿ ת „¤jéR5€ëf\õ P²ÁlA0Љ¿±÷›¬xóçæèšYYá´ÆÈoÊ »&ÓMPÃï……X¯È†ü‡R£šç…Puºf6PÈÒ ó/[¤nÉÁe^+æVTg RBžÈ»à¸É#‘ªV¤z ˜u%¹&Ük“jÛ&²}¾‘7oUÒ$4yÜôâ £f("ô2– Xî€|•ã±€y/: ñÍó%‡`¹#0ÿÜsû¯.·OŠ.ÃÂÛ< qS¾”Õ=ЗžÕéáÑ_\ƒöB÷ë5è66¥G5¾Íp,ùFp>©ˆì=ZÖR¼:z!zEBîm'õG¢ë_éÞ"C'™¢5²~Ž6^]†Ú|F0•ÑA(f0‡ê2þ”ª#+ßßdóÄKTÖˆdýOâë;͆E#þ­{GB$¤ÿ™àÀ Î7I/•€˜°B/HCDC°\M>¸ëÒ¯ÓZü`2 ²ö G1®*Ñ7®×-•¸Ft×}[°0a*‹‚¥OÍ ¹˜Êä²0‚ÖÁáY ñýôIlâÛ1öêtQJ&N€iwI¸æ“w“Z8²3wÏÏ9ȲC2Š2ç ì† ç¼Ð4åIæ”Í[¨È=¤‘ÿxã®$‹•Ì(³‰ !ô½Ã}Ëùü°èЉ^ØàÔ3‘¾ð˜ßie,¥½í=‡¢Þs䃋 >©8·è½`_£UKÇãÃïw°vHì÷1=GBYÆåPŠXGÒ´°I8 8G»‘#ÀÁ«m• ¯þa'6wÚ˜âí‹RÝÚr8FWÍ…ö—N{°Ë@x”náÿ6ˆ¬¦j†Çc°˜:d¥šK¥PäzjßI2}И±¼ß ’;kÞC ³)R…G‰ŒàÀÀ&äí=K#¨àH·ùva[&×ëË‚sÌà-ø˜±%- ¹eb;ì0%•í§ÁVv²¤Þ¼=¹…yñßUƒíõG\ßÂÍEÔ€·òc;Õeú µÿúà¬ýl÷àðÕÉ~‘ҳݳÝÃRvþv;Œy 9Ž«Žwf•À¬–Ö°dµ4¯­\Ç<¿±µ”hx ­–Ö¨|µ­»û"„÷}|ùlHïåÌlë—À m+jëð³X~'JU$R½‹ŽÇ@ÿ¤!Tür“w7)›ÿvÈ\¦F÷NöE2ì~ä0M¼ÊÊûXŒïSšêÿG¸UÀÅ "ºáѶþàankVäQDܪjP®#®D hÝ9>×;tíñhüqÒ!±@ðBÁ ‡¶øé«½½ýÓS' R¸ ¡ ·#7+Ü»ónȯàÊé¹Á “®¡7k·²×dtË1 Ýëˆßóêm‡U`0QYxb Ùñd×A+>Ž{U¾P!¯³TØúîžM™B*g¨¹%3ÓrŒ¾½8– ;[ÈïU&^0RGlzbá,0i¹íÑ#3¼màa§/rô½?šŠº©â-Ø¿øh1ÖùG/bâC^²É‰ÝÇí­_܆ÏÙëÑIÉÚº]zh©ZÓ´(Oì"!+Eù«øAþ:¨eðƒü´Vœ”9¯éˆlGÊÑáë`8£Y¯­ø Ö7Þ¸â¸bõºJO,êoxï"ã]‘™à·øÅ]Îv»Ÿcøo7íæÿ½íö—#ÇémÃ)Ôé¾d{'òÖ²©…>_-ó0Ø•,žÖªäÅs4šJ&Hyê"&Âbô§i2¸ Šð[ÂíÂR'X)ø/Ïʦ´wüâôåþ^É\9–óRcô®}2ǧâ©rpôìØ|Ø6½xȩɆ£S8‚xø8tIPÞÇàÏ“©TÚ¿]ûÓÿ6ùRTÌ=äÁ¡öËÃݳgÇ'/8¼PûèÌÞÿDDv¯{dYŽ$ªÌ¼Ÿ%†Ü‡¤ÓCs]òÓü(’Çñ玱±0k6Ù %¬˜ŠØ4`Iµ¾GÉs_²e,1¿$lÃHùÊÂÖ ¿a7AÉo6ãšØ˜]”6´ä_ÄYÜs¥5­°Y,ü·T1khq…+^ù¾BêüP©¢°»ƒ­i`u .iÑêæ”’UP °Î¹„5ÔýÐCÛÞ& 7Ï &´[ðPŒ>C0ø³Õ×|üxÛš_¤LVSpƒõgC”®IÉf‚WP-0p ¸Oe¬ºb$T‡› é"Úã`T=}O0„° ô6¼š^1Q¿çMV”"sçœ;$,À:WBµù¨ˆ²)»>÷XƒõñãdžöO[¶Q¶Þ?ØV€zû‡ÉÂÂüù&ø¨×Õ”D ËXÈóî¿líÜ33âÇy“Š'N&˜ˆ®DV·†?Cܯ|¨| ËZKq-Í]xMFÞìP‚o”»\K{ãýùœHa°us7˜ ­“É¡…>+`4y¦Ï\M›¿¶Ö­Oþ¯Ö]« _ë­j³µÑZmm6W¯à}kí Ð oñi«µÑ¼„Geø:lò»_[÷P¥±ÞDÙý îÀÜ¥Œi»9^½\}Z)œÏÿŽÃpn͉ɮÛo,o÷1vù”9]³{òS¿Nft;À/‰ªÁ…Ðk©†dsØÞ® \Ž’xŽÈßFdµ¨mIì ã "X–ŪÈBrº”¨- œ¿‘Ÿ°¾ñä·w6{÷µŽ’ZhOð¢óS ÝÙé§ðè%öÚó><}ð€‚ÍïR3g?œà¸Ìé«#³·gvŸíŸ˜2Ú à•½ÄB°!ÿfö_¿Ü=zºÿôÁJKÿ!™`†'.=1ƒÎ%¦‘ àÜýéÀæÉæ‚·Éò0Ë% LJ4Ì.íWNLRŒRrA±7˜­1{¯_?;Ü}~*áìÃÙ-~);3— gáÎ¥)­^o™:´ºtÖ›'õÿzKÿixe¼;P {{û-•p‘ð¹J“xœ³4±cÝj?»ŽÅeá,†…£Evé0zC€ãžÎ‡‹—”³{jŸÏ.×§þß|³¹>/ñ'e‘ã%‡­šrD>t‹¢ÑQ\~œ¢ ™šhæ!úsÈ} 1ÂüHt¢*…ŒÐçj ÿÐed8, †ãw …dŒš—žìàv $á=®?î¤tü“Ûé¤c›ÀÝLEŠý¤Îäýá‡ç|lØ¢x¦ 2ÙòâÒÚwÏ^¿ØßΚšÎ†’ˆzj3]'#€Ðuê2HrÎp>ÁS`ÛÒ`2 F:ZWôÊR#bÎ@ˆ†1ŠxXÛøwÔž^S¹`BÌ4ü3˜òptSóÒö艴ԇ£ºëu4 ²˜ÓJS€§IKßàbr‹d‚‹æ¦ƒ@Q– ›e 0®ô¢Ÿôj^¸I¢[W †æ¸Ø½¹°¤M¨¹XPžSކÏ‹|‹Ú‚GvJòÆ”d>ù`k}€mÎ? \;\~¸µ¼õ¾•uíïIç9.¿¯0:X;í\ØIÀd;;îk›% úú&é¼o;€¡ùRH ·òÍ <áW4ó¦.ûçRJýâP…4«3dj~òÅ ET‘l3Qö~ä>F”@‰·Ot·fÛM°O;±Q9`|KJ ÓVT‚ó+aœvrÓ£ñ“‘I[C{q~¢’¦º¡œ2€ó¨mÅy¥ÕnuÄ-Ó ³/ÇêŠÍiZ‡Ý%“…:ó­®‘¹±*¦þñ¦´âU® Í›•cû; ¬~² ñüI™pÇáESK¦‰ÃìC²Y é á@Q°¿‹¾?BŠ);·÷Þ`4N†mÂeï‡TpMæ%¼,V8Exhêcí4ŒìûOÝÚѨâÕý7ÑÝ®+ÙýÃ{8ÜÖT-Þ×özÖ¤¹”6.!>ŽóçÑYÁ+‡Asº'ηEûKß4qéì±[y×F E/# “ykç Mú~ŽâÐÉhvyk˜l\'ÉD~­tÒMG/‘s©üˆË)Ê',¢Aœ\Ö<—. ·!‹@mâ)Kx|UðUÍ)¤,8Š±ß rÏÃ^@ø ˔׊„@vT.禛o&O‰È7Ѐ"_`ì”x Î.6`7c%|Dh‰Q4íg¼Y–îÇãWg/_ýXŠ‹ÆX\ÖnÑLßLdPßBo ¸eÃÃ5ºâB€jCB‹|vdU/ËMŒŸ"ÆrI&™Æ0|Û;a»"E6lÞ•xÕr pú·(éù±”-ˆ¨¸ [ø“Ä`á%DucÐAö¯1ažy¹o9>-;M¨ ¦ú¢»!¢Ín"2<]÷áˆ.¦Î¢ØÕJ²Á6ø¥VnÒn‚`yk®Š†Â6£A¸E¢ÁÛ0Ší‹²Iݨ¢Å«–ð0æÂf]0íÎì×3SŸ;oÛhÑ’ad“qXØ‚4(¿ä0ùª3y;†“Áç'¢ÐõjZ[FƒLdrZ]ùhe§þ¡‘ :(˜ ‘l#p¬8¾ýeCN~Œ~‚=¸pÇÐ…§,÷夤Bô°+wHár;”Pž¶¯{ö•@ÓvF…^‰?ý)¯DÔŽ—ÉÁ9ÂÒQD[²|]è- ÎhœS†Ê =E«“ÎÎ÷·5Qrª¡ð€2Ô¬ ¿Rþas·t¸ü"Jøy0£=ˆ&íMç!³á#Å j%µ^¹ ªæ­fÇáµ¾ª^ìóo àžZ†ûÔ2zßrÔ’°½Â+Í›¼-*‡^±¯=ùÞÍgÏ ÐÀáy`&lŠ4§"U©„PY°CwuÊs¼3W$ý£ÀŸ÷÷þbP°lPÇ‚ˆê¸ qE§´aLý8M;×ÒÅdŽ¢/…<¥•ô€¥ü8HÜÏ’á5Ÿ…¡ƒ ý®yy°´1 (ËkŽp™·Üy9 ëa£ÙÝ]|`¿p‡G8‹wyøÐMÐa/¡a0ÔÌô#‘‚!x°¤9¯“kMÀŒF+ë´²b÷¶åíÜm8T¼yQCÇ–— )O`.7õbQb–x× «8òaæ¾QòÒχæm 5ÍQ1_óÓ›|¬OfCÙ1e Úð“7ûcy|,c.ÂÈÆÌÅÉR{0Úéí–‹K5Õ¶-­mîËÜ’Kž»û®‚1Áä݈ByKŠšn÷{ ×S¿‘ègÅg<²­éF¦‹è|n•΂Zó©=+¡'jÏØ/¤a­ÜÞ±¹¢ü… ‰ŒžZPy}}q-‰Ÿq+1^W| 9Êhü˜R<ŽÿM«Õ|‹*ß7»õ¿wê¿¿Ýâ'ÕˆµÌ®™÷ÚàpÕÉóÙOÛQÊãþËM$žP‹*,—(9NËѳÒ*|Bƒš`{I·_ÐÅíü>¬Ì4ÅÒ«‰Æ=â¯$‘\¼?P›’‘“Y‹ÏŽ6qÛí².ÓŽ¯—S&2#i U†A1Ûå|ñU~»9‚+W0;E‘Ìðß<¼¯ à›Áý'á×Y4¿l<>ø"‡¦ÎѤ J·J „)*Ïdz€Ò‡P¬fÕPÒΟ£† WË*…X€3Õè(ª/#’^²ç.æè%SÌXÛX¼™N—sN%DrÛÖ:ºN¨ÓYbÀ¤­Á »[0ËNó@·;Ê0$ù.fSL&´º’s7Ç WØ÷…´’‰¡ÀœóHQ0Ùä¢CZ`„¨²¯‹ÊƪðIv™;3+p§­Ã¿ Š2³§E…¡+, …ÂâŽÕÊ­Á½ºH[«$ÿˈ_çÕTã–Ïñ“º’ÁF …‰ŽœÏyÉä‚·“³+I;vz…À$½º³¸~¥Ãì]Œ{Nö:ž \į#ÙASd£«+zyúOy¸sv³/¥ŠöAAd<ê,E¬{»Å.æW|Hé †Uìàäàµà\²¤š£–šúáîÑó­õ|98=ÛZ'o£úáÑñÖºmûÐ\-Q#d4wâæb6`G«;(±"|”ê‡:C$§ÞÒÖ·Ö­: ÂÚ—ÝnÓ‰…‡£&J…û“þ-’aîÇZ±ò²ˆ^Ë9…m.ð±SÆM'ý13;õÃ’©T,ç0©aY›FÕî -ìëB#³`oO’ßf}òÐw°ódz“$CS©Šß\y£RZÄ*ùKTIâ°.˃-{@ÿ° y4ø€ñÈÒÉh4-œÓêŠcñ¢:–ùšKzó@6W}>ÙÍk-`Ÿïº=õ9³0™[­ø²O.F/[EYe/a/ìÄÎq¾*ì`_ cãSûÑîÉÓY ½ì!ͰD6¤Ž”¾¤?°SàmU6ÅÑP3^«qi’è¤ÉäC¢%9ý­9Ñy0ë¡O¢„Ô™õY™ÂÁT´ðd§XÁý…Å¥ˆõ‰Xsß›Æ9pv¸âòÊžU÷»òþÞÏǺ¯Ä0½’®7aXåõ&”Z¯¼³`ÛŠ²3«¶¸´…õ·³´µUŒ±€r’‘Ñ+f¸¥R®E}»ùÌ‚+·ÜH\ùh@ Ðç`½ê_°ƒ®»Tí¯óîÚŒ²ðk}žŒR±åñU§ÿ~¦ü;Ý© ÒÀùlîÎjöð^#ÔŠx­“štÖ½ÒÔCyÚgÙn÷ì© ‡<àj+ì–”Îùb’$ÞÏÞ¤s9^ >ZPõ±_º¡>Ñ]®ÈÆÔ5½YÂùFq¬(Qħx0ó7¾h@xé¨gGÁ*àÆ›'›oíXN¤Ào:oúâ¸,dþ)Á{¤”ÅúDÄeðü•L»£o›þCÇ ¿ÿãÃwb{È"¤‘{»Ý~'_Ø'¾mlÎnì~Æ'¶LÄÿü–^wÖÿõ šµØ#a‘Ø„dÃ܆™8‡^¸®¡ß¶Ç$k!ï(hc8ª_t€e÷+üô½ ë¹*_Ì´vM1ÑÉŒ9e¸êtߣßz2‰G*û¯’u’ð~=/7×ÇU”Cj]¼4« êµÕclHÆ@DΡ‹ UHÏš§W¼¹“²ª9a¿Ø&¡”­DÁÌ)`R ñŠêJ¹V |e`|4iX°5|g,±e½Ñòë†K„Ü“¢*¾ö‹«Ø'EUª,”è½QåWäoVF¥C]YAÓNFuägQaÑzqQüQPðD ÝÎ-•#þ¨ÔO*¾øÃIbÁWäÿw<á7”‰ò‰4 ‡Å·LѰ|úËÕxæ?Э3ûjf¡ÎÌrÅs6¿õ¼aÜÁ!„R¼ïëÖ ±YV0ˆ’³RŒFhÛWЮèÞh+㤜 ¼krF¦Î FF›„ÄíšW$ay ò]|2 ›°j¯ß³iy;d¾‹AÈhÑ:bÝg‰Õo(Èõ9<Tû¡3@)1uÜLF@tò•"è£Cè`œ“NJ?í_ö1~î+L‰Hy÷àu¨=2=¨<ç±báºhêèK¦‹DŽe ʳÛYT#ðH+î“ÕªFþ¨rOÉ-ýK·–‹"ày€$ØÁ´à8’[Þ &ô/ ØÁ³ÓmÿÙ©AË#v¹Ç­S¦Öh §ß—µŽo‘ÛH®bŠè™ù¾ ’s+³G8Ò ¬L ¨B8ùpÀ}ð¿î7ƒ?úûÕÉÑÓ½öÔõK±$¯­‹óÏ¢Â{{Qqµp(â3ë×ée›“5Ò ÓíZRŸëËwÃòæœ È°§gy@ñ˜¿Óžu*Ã\²À¢í( OØõ°ñ–çwßÖ`PýqJA*øq2¤´,ß}‹bŠ¥nÉàÓçv˸F&.Ìźn\qû× ¹£É‚6n‘§ÝA•Ù-§¿ÝYŸ;Ù0ÛÈã§»ÐÀã§Oí(æÏæç—9ùͯ,6L ÉkõƒŸ^äÔ¿Æ9Lß|ûoéËmÚˆ¯ì|#VÜàó½=ׯ³&‘1Á=Aq¡K”í$siÍ#„)sG®©1 b 7w½ÞÅÔ­ú½~«‚„s}ï"üJ±-òs½ußÅ=š’žáCŒ}TPõG²Ÿ‹þ °`éx4D…'iÏmWS`Øãò/G“é©€1ÎPR#»]Å!c`_»VTâ·uá©}ĦÚU8Æ•ºÄÿ\ ¦#ú¼¹'ô H¨:öúx0»Ä3À'u2‰@…ßuÿ÷N8†tÚ .œD·é>Æøé¤˜ásÙEŸEß}ûÙÇÏÁÑú¬‡ä³;#ŸqÏÆ-ÿv.T]ÿlÅ%² ?ÛMø¹>†ÿ_~v{á³·>ן­þ‹± E¯Åcxq ÿNŸLŸs ô9»o>[¨8JèàÁ ²›¼²…"œ9 Ç‚#-j¯}à]÷æ«Â\`}Q’û.¹‹0Àl™Jc½µoZÕÊ;ïºíóП67Enù÷ÛÛ[/º ½rhEœ’Øj*ÀQ*GÉUí €Øþ³þw±“Vçï´34Rt] ð|õ\ [UÉDl˜6‘àÀ¸§%œ"À„¦*le§Q°ïÔïi‰×/㢎­ü9ñÇ_iû{=¯7Ш›yÎÀ_Àº4øË¦–ÚÜßÊ`$ Ìuòú2÷®¥»kuü™uí" VÖ·K¥‘s×\gÞl Ü»\‘Bÿ®œ"þ"vÍ¿ÈÃKü`îåS0ߥ`¾GÁ¼yû.è÷w€¡ƒ?×ÇËG– ÜŒ¿¦—×Rþ]ê—jí<¯‘?èΕ±.tØF>­Jò¾\!Dù¬/ôæÊ^‘sܹ¸°ç¶íÍ!òèŠ[-r-ÁrŸ.Íú—ãÔåG XàÕõGvõr~]:óBÇ® ËzÎü!×.^¥\ß.·ÿœ=ܻܽ¸Â=ü»ò€™ѽ!„sðȇ弻¬yî]<©{àâEØx>ÎsñÊÅ¥Å>^…›4¿è²GñþK1ϰrI/gcÐBPÎÒBC ÛÓX`ƒPH.ŒÝ|#ŒcRL2ÙPƒ…6 ¡©ëœ{õýÔÚ2á jú!.RlÙ3¾Þ-6ǨÔwµðÓ̻&X71Hb2Ÿ3*ÿ®Xz`i’iÈ-ÓüVŠLÇó©vwje¡i•_ 1œ I„±iÍùícV¨“ÃFáUͰ´®¾J¦ý.Í._]#lþ ¤ø5˜FãË …PÎ ÞÎ#/Ìg<¨,ö§³(]‰ +ä …4¹øý×3¬°D~ (™gÀw&”w•_«Q|.XGž¹JÀƒàŒ*eñRn5‚P‰[QLr†ŽQt´ð%ñÝm<)!‹OK‰KØ*®av,/òX´H‘á'à>Lñ!¦µéÎp÷qêáNÈ ˆÒKj@Þ>{û­Úž1²¢\u¬ÄçÎø;»¾å|[®›6ê vÊò+„?Á׆-mÃò…@}hC5zVÚXmÖõW‚^H[ïZlÌŒþiaÅVÉ´>›7·*is«iš—­J‹–z‰ì²­*ì]ÇÓv¦k˜dö±¿%‚ª½AAåà…V—…~ŠÊä>m|йW,‡/?Žfìt§ÒAôárAJ5h€cK0‘T5$;Œ\‰Áˆ¢µ©”É+xþ¯TÇ{ã×÷cÒ^Œø†¤ÙGäX/9Õ Çì¦{Qû2]’I¥dã +’°¸ê™f œÃŠã7âå 4ìeÞƒÉÛZ=KUzÂᛎ‹¤.pÝĬ%ˆ©:ðï?y°%î‚PŠôæcTîa,n%íÞlŒôeD+DGSßÇE"S‹‡`0¶ gî\•Þ¯c/Ó¯b¿;âúŠËbU‚9Ý«8 Ããv‚åØã¤<aråqê}D[j¤.œÝ¹{ÂÎì²Ò¡mÄ6,vì“÷ì#§”(æ`î7’ÜRW#€0€}@YHc›';4WÁf”;²ª„ ôÙÆnh½v¢µ ¶íäm\ç`q‹ø-ùÓqÓPcÙA×ÖhwFÐÔâý44ÏW(î1¨© ühsåHI‰ ø0¹ÑÙýØžçÞ‰H,²Å¸3Q\þ„hô›¤2qq-ÑÓW‰ºHòþц%&ÏN¯z}Ùj4*¨Ãk´S‘•èÀ*.jÆÃßz˜ƒC!4( kòV7–a¢ù•Ä`¤ÏaŒËÊÊ•÷l™²”¤mBظ0¶_îôaÀ»Š°vžËÌe‹;È ¶Á†‚í{£­¯¥v¬XòÓ=¨éŽ.ŽYol$vþ1¶‘ØCX¥8fqnîæ1~%÷Æ]+t61I*ìánfrµu-‡ø‘–r‚>)­‰¢}º£9=—ÁT ¶¡tÄ[§~ˆ4;7¥\žtLé É‚ûSÉ2ÂÁn‚)9,ÖQä\£ 5>†®ÑÐ-ÛõÐ:óÓ¥HvÉ3冲GpˆÂtÊöÐZYÈF?2„f÷†‹þ-3PÀ:“É@3;ýt=öW»øV\ ˪§){O­¹–ò_:tа6‡Šá­Ñþ™BîU{\ ™‡ÿ´k"lòîLÌ[ƒûR#í˙氿aÀ¾´R|-WM³Ô¸ÜÑ™·àÂHn2`¿A¡µˆUi#D)ï»2Xë¡9 ›xû–¯dußzYeÅhDɬ8<{î#Á(êã<)‘Ôx|:íìüdò5ñù¡‹hêÉè¸þ¥PíØš8¥H:Fg˜="þ„HYNÚ§ÝôŸQ©–zÅÞDhåçEôñQ¼fæÅ&* >-b]ÑP[üßx7íGÁæ$kÌß~v·Zñ*¹]“9¡Åsά~ !ïÀæ)¸kgCÍw¡õZzuå«ù3}±GSˆu^´ðÑuìnôƆZŽ.kW!~•'Í/´šÑ½h«ŠØ•¥©¢ ì"Óó{yTùzÅÅ+fíÿ7EÄÙá|²Aº&äNÖÏs!Êzi‚¦hWrÜle¨±ó@Ý:Üx¸<Ž…ëƒ=3åÞëOpd©y:]ჽ²²²’>¥D£3y‹‚U´øÐT)ÿ’CŠôézåfØ}ïêq/˜g/5Ž×Ó(ÌÚ”sˆÃäJ–Ê$èbgZÒ‡O½lg ^öjÐ9q-ò&¥Ñ ;å}ç¥õ0Céuy0(±Sº×–ŒàO¬¤¸‰#é|èôh•­1ƒ-fÑ >.ÁÿxÐ)Ô“K<3Tªé, ½Ôõ©ëxÔžŒû\¢L>ù¡³Õ2]äãg<9×Nö¥6)ñ¢£ˆÕô”þãbù{䡨?k&"bUô*K“äZu ùàÞÔÍýé›ûS8Q‚9KóõWÆG³Ù›žÄéu8¡ë~üÿÛéÄEü†8<\÷ÒtøBÀ•.‚ ¾,{”ò…;+¦³”b!ï]ÆÌVqpI®%,?TÎ(BE_„°ˆRã,ÞÓ^[5ŠcM˜Šâ08Q&½ä8DÁ[ŠäF ¦ÉõxÂfV´ºž/mG|is¤Æ¬ƒÂŽzÉEÛ^mT­Q‚/Qð×ÀF;dŽA뎸ÚÒ¸°ÒMod­µ7¿šò[ ›­ hÍKŽ8Ma<Šz%áxñ˜œGIó¥Â=2‰^Üi)©®ßG0UØh)_1X*) s,I,ˆy€õ¡úÈø°ßxD@^Þ,Ç,a˜£%?jR­–uQÀn›;o³Ù}Éh€*8MI‰¸š œšÁ½eË­rºÁE´ø$3D;Ôg8ÎàÁ§!2DàÊ8-—p ÷Y­Mpë-tT§uU|Çîê|uôÕCŒù\Ù‰}¤ì»yf ?‰È~rœ‚ýʘ÷Fô<âôèO)[ßÞ¯~DÝcÏÍóú/»€xh<ßkµ¤áÐ"öù†éžt TÖ!ÌÑ[ÞÃP=fŽ1¦´àõèSZª`vT%€b»$ßmÏÅùÇw[²W³$iæ¹Áæu²ÿ ®.7h¸‡O¡b< [Ñ Æ bG‰eMˆílñZÙ^Þ!¦Ò1…:Lë¹´bÛ„×@„.¨ÐÜÌ@÷C„÷î㿺ÈÌd±›f$Qdœ7\é ÿ¤mùh+SŒñzÎá«übÅÜMóŠÈpWØkm FKðø­<6Ë %Dg6z£‰ÍEQ+.3N"™¢0ç|0í *©"©šLT§k%œ£ësCî€C6Ù ޝä óðÊT4•ÑSå[˜…ì˜bˆ˜ ðtu©8ºt3,ˆ¤ 5ÛÂtpñ µŽ¼âì:ô=ȯì5[|ŽMØýRìPk•R^C üÒÇՆƈ›÷^¦k°aлóò ]÷/¯àÐwl~øxÞð.înlºÊ 4èÌqý¤Dtʯ"›ô¡2v¯#ƒE'XÝCŠ–}œªàÔ2„}vQ•4-tN¼þÒ4sPd ÚˆËFl‡õz*g af30¹NaŸg{ ô(,3[Ì}-…ª«Î¤×š¥mE«4ÿˆc$¾RC2¤¡¾ŠK™V—¡u‘‘¬·r„çÇCNÏöœåAÔŸHÁ8Â×_y<Ó–ì‚}¬§¤íUνB+@7ÕêÊ<«Î%¯b·aŽ”1{ª‚;90y½a¬ÞGr]w>z#ZâúöUz^¢#º$ÅôO³s°ó M³¹_zx¨\Ǻ— Àe'üGV±Æ BtNCáMŽzBU4‘à†á#\3*²GòÙ… 'ú|8…Kü iôª™dHúâR`¯ɵhƒÐô¯‰vðºíd†’j7®µ‘Æ×«±=“"¬øä[†&|Ž*SÉ€SeR÷p¥cqþ=£¦ªÊŠFDm‘"µ®•_ð6 À•Ec.*)¥Rªð-¦-mBzÁÉËFÏ&ct ýÿØ{Ó†6®,xÞ¢¯ð¼©u $/™Æ! ÁÄáß{wÒŽ\H¨-©Ô*ɘ÷gÎz·ª’„MÒËXÝÁRÕÝ—sÏ=Ë行 A—hß.ëÀJ›m9ÌÙᕊLc½ûƒ0þ•J½Òá€ÎðE´iXß ÏÈó¼f³ÈnÞ:uHÒ©%^¥2õ¢:]©÷<ùóWm¡?'É.ûÙØw*”g ÛA"·–g”³gðìe¡õ® —‰; )RÓæ/$G§ö} šW¬—÷Qo«Nл<^ÐýË@RvIý1ød)DëÉ_¶Ÿííè¾µ%aÏM¼Q«./³r9Îçy,ï£!Ê eLZøò¥L”P¼òbЗ¦Ý/sïõ©ã/?v†ÛØ_ž…Ë»ÉTVr÷ÿ@\ÈG›€þä^÷ðïMóqDQÁ\LS~~¬Éj®ŠùWsYç6cõl0n´ÈÙó_¥ÚØöâûiÅ™ˆ<ÃäK”ë³ô,ƒY&:VSÞ+ÛO´BN´~1£bÕ’²Œ¬j~©ˆ;­AK6eÜ>ZšóãÇhœ;§å¤ÝŠ·3,ÚÂÓ3݆r¡Àc1:Hì±`XL@ á[+îõGõã3låzu JK°ÉÓÑj,#,7˜¿iêO3ÿ7–jÃ8Ùå\$Â2&Š[D%À§sPLïÄ 6ª3~¯2îR™µ³«ÍÎf1w¹X¸³æùs™…çŠõ9ì–,ƒ2Œ0+” ©›'äÈÙ½ø¦¹·²ÌU¢ƒ…·FnXa^dózsªÞ×fŽl†²Å¦ÃôcÙØ(Ö£7Ý¡‡Šfx„㸺d*D»Ð½Í\¥­˜#°R-AüòƒR?JÌTegê™Ú5—–º°üØ:³Àäí]bÎiz— /Qܧ‚"r}Êaãù:åÓ‘e í`’ÂTÔ.a`Z#Ö¯Œ¦]hÃëlî@_VŒÐ§\a":'´ý”ÈŠ$/܃%´û¦ýBŒ §gœ¡Ÿgˆn|¨C`Á¬ª¥²LžKà¶ ˆž%Ð ´‚#dË”ɮúЦÇSà•tŸ˜çj÷x·Rú›>M8ßœhÝ 1 Ó.ÁˆFŒì„wA¶ƒX•pÂÃí˜[MÕ9‡]VÍGr/C÷sU’¢ñþ„:¯uÍÝÄ œ/;,{l“àŽ I5BaOÔJ›¬¡WÐ`¹>ö™(‰\ÇÈœ¹ ‹¾ÄP,÷„"¤Ÿõ0R—Í×ZB[c_V÷|Aü½“(±†ÑÆ{#?£Ñ+Æuñüƒƒ,â,ŠþƒúÂ\šˆ\ÏÝ‘uœÍ]­-*¿µ<øàjUh®Ëïn·¦‹´£h–!ò.iOÈö¾ÈˆŸÔ¦ôRºg¿?ÝS ¤]¯N*](rÐ ¥2€ @FNß„2ßüÝï3ó™)g`ü¸.*üóàJå[É»avÝŽ¤ß WÖy÷™ùTB™f) Æ—ŽK“wŒÊ[ög¯hûÌZ¶õÜ;ÈI¯^‹·’uW’7¼[}­-ƒOT Ы«$ºHÑ“£ ÿU&£s“^¤iMBìu~†ä‘û¶%/•Šø£Ô4)wó=~ ¼ ‘mÖ¯Vóø€™l€©£.AÁLF#´7iÀÒ¾HÈÓìo©ZoS 뀞7“óóî»­F’•ºY12wþÔëãi-ÕQÒIÍ]¦è£T‚5HPÔCÞb£}™&¥j5w…œ¦ª¦FØìy p„kO¥0–3!o·?l˨š±ée`ºŽÈeÀ19)$fM›1QZ1à`Z,mjVTÍüPã`‚ÏPWuôn\?2ݤaM)ÞêRr½êÂGk“Pêù9ªFõä]wÕ¾­çæZGhvï8éÙã)½R¸l´¹ñµŸl/7Ow¦º‚~I·úžC뵎¤eFÞ\ü÷ÈjÖ»#æó¯ÿJñİÐÝ2ç¥Ï=/~ëí„yk–?£€/ÇxÅDZIÏ–}ÆNòkËi6“ïXf]ˆ›±…i3ºšM÷ûI§‹«ãÆ åd([p£0Å0ba+° žÚF¡,,YÅ{Jã^#k§÷›o6ך'kÈØLºÓد©©™&¾ÎÞ>¸7¹Ú˜™êás8ˆ_ìýLÔYb¸mà%“¯ ®õWÍ“õ52wSZL7$W˜dj|á ¨¬¾®!-|åYBg½{,«,±ØÂÍdö.;Ýñ Ýqú(d€aªãQ¯‹6Ìgëgu’VϺƒUòµlìÃaÓéDŽ×ot©¢; oF'¿lBïÏ&èU¾)ö®9îã‹Ü%§Øc–$ÚË`¬ˆQ¸ÏÇ£"ÀW×i}±qâ¤+߸Òm¶©ÃÀñEH<·¨iª†å«ª–Ä"°_Ï Ù5Yâ䌤â.¼À›.§XÃWk(Ç–÷«¬ ¡—Z}ñø^ÙÞve’µöLg#Òö˜ ÒL–¼%/vÙsU þŽÞèÕìÙ?­%…Q,¸P¿Î²‚i´ª608y§^¦¤9Ê•» é²—8üL!r-5FJí¡ÈU››ghùDaöŽáë¥)]zÏ»£Ì1;nSX ±”f›kL7N›"žø§e¤0î²åê¿PYµ¦ö‹ñ¯]|Î GZ WhoP²^vLF!œ²†héN]7¹Áú]…rpRú·3Ÿ]26ò6G¹‡Q;ÐÅŒç­êœ¯VÏÈÓc¸ë[aEÁUÈëyߦ¹™›d¾^fÓ/cº~&WVØ„rmÍ­dJ~Õ&oü «¯ÔÚ+¨¼²\·¸Mm™Ý† î0CnQÒ¨…²DJQÂTóì$Y3Fn,š\/¼«ÍBY(“y¸‹Dó„`bŽÖXÊoÇ ß LFøÔh öE׊v†VÎp…é%› 5av¨±ŒºÍ‰r«ó„³Ð¡Òó öCñÆÌSÅ¥GKÏ1 ç:AεÂgf¤ªò©·ûÆ7TùI¯†ßuÖëJt1I2f¯3{Ž×dǼ¯tq|"ó1Ç ©ÏøÜÇGò¥d§`ÉäNÚ;­ îÌQ‚ÃQtV3”ÇïubY,ùà\£¶æ³lÒ  ¼æ¦çQ@Ñ0¤j\†hhî‰|XÕÈhˆ¿ +YZwÎ/×MãÑt—'+<‚ÝPê?[âÒJ”²ØS¯Ç·4â4Ùfpæj•…‰dcîjÃ|…õú+bŠA„»4 dK Æ_”Zc„¦HšÆ ×Å–PehÌ u‘ˆ¢Uì\ ›ŠÄE ¨&ýZø¨õU2C>¸g\Y$tûf}Q–j)jC®¡á¸Ëd¸jMßÚ^h­Õà–‘Û÷EN E +B/ë1t™–{·èe~©Ÿ`æ—÷ifÚëpõŠÐË?l¥ØÒ8£bÇ<ѴܬËÖ/€KÙÿж¡š/Ö,L•˜Ñ ºÁ@¥½—[æx Ñú)nŒAAÁ4Ì´®È ³ªï8¡´@ÄN×8ZŤ^Fír3wc!9ÝE/=ƒ[.§o »CGB"²:Û€Ó+ +µÂ3zE¢I¦^uÏí8AÏH…?NU%Mò¡áPi"Þ`&ºâŠø§Ô}ÂB/Œ5<–ˆ*§ª÷‹3ÎÿÙ–‹×EG©4Zf–œÊD>8É’pZêUO-{zð2:ƒÃ ¦úÅÀØÀ àøTòİeE`uPÉ©œ/{žÌnqCÍ;Ícu†ñ,Èœ—”„àçóº=°EíФrãJ$€÷îªOß¾uÌ{åþ¾ª8÷ mûò×gk¥‘3Ùõ03æ¥éœ~æ­{we7yMMUÖ 4FÃÎa¦:œ£Ô @šÇ*¸ØðÍ‘ýP+?·4‚ÊBd-04¾¯¹¥8"‰Ù^ b¯Âl̾«É ce¹û×]#¥€ù®/99>–º,FÍf“H E©Î¯©ò'ù8'…Ð %ò>ó¹£DùÏ­üRLxýh¥¥hÍQÅ.š;r¶˜âýBñP û[ê‘1GŒ7¿³Ü4fœsÝï *v“òéݶ0ÁŽ-…Óó}xB;æyWh9r¾(Ys¢$àw1Q0ï©«,ç&Åæ>7…v –£®8î¥Sèe*€‹nS©ÉTªÄ(ôD²"Ϻ¥ã·,üÐ9O=ü)¸-Fma™¬mž… öÄ7Ȉêú‹9H­SÀu‘ªSt÷ÜÈ‹Ù9”ÙTqi4æk‚¶¢‘ þâ/þ[Æï®­ž®¯ëÚ–`ôfÎ=sw¨Ñ #Z¥È¶ÉŒ<4‹+S W"YØ?¦Ä’ô6![K¿Å€µçÇϟ¤‡Õ_½‰êï¡1K‡ÑÖV´±½çûqmý1šï|øP]Dâ£`ÉTé‡é.úLiç£^K?±©Žjz@À«^£sœÙfÀÏ¢Žmš *,5Ãô œ¯4!” NÓÝm&‚R´ v£‰áD{†9®¢‚§l‘2×wK\ÃäN¥J¿W$.Ї f Urif¼«>\§ºC)+m³gF›üª ¶M¼2G ƒFÑ”÷Îæ%©ù%ápñåo5::¬G4Dm>g¡AmÚ¦"o²ž{óìÇ–@¥f´4ô–¿Ñ¨.{ê&ÔYEdf¬ùÕ˜ÔJÔ<t +AH$"°ÞX÷b¢ÙÃkGãJ\Xï*¾Îxç±dçZáäN³I{ïÊ`>¡Ì|$Žmn¡Ÿ@s½µ_Ûì$ˆŸ Ô3O±a£ñ¨Û~“ˆgl^V4~ê­4BÜ# u/ceÖtÁæ'º4a…J‹#îùè€ iJÁ6æÚ¤¼3\ô}§Ü…¢`ó­ü|žhzBMjùsàЄC62I¹Ü722ÿî„@g[èm¥O…û‘%o-T14ÎÉ£É ÚÙ‰LXd8×ólSÒ9¿óóÏtÂã †d†{Ê{sý´ÒŒVš¹’UXù“wž‘’¾®A¿DßüqXVÄjzø÷×¾Hö4í4Ú‘YäV~ùeô°ù'ïÊË"VøÓnµ1Òw|fºÇŸP$ÈiÑ_Ó_ÛÝÉ0cS²·và‘ók4Ôý†u½Ÿž—&Ð{g~eièlæ 5¥í¹­íìTí…ÉT€ëéÎÊà`àËòâH¼ù`ü~L¸GÉpSÎQUGÌŽi½4ï¡èeã˜ó„”êZ"$†=×-——G%··¾b6)P—ƒ”ÔͳxϾI[ >™KZºUçêç\–ò*(ÉTÑ„BWRÍ]¥·m)˜ÑÂù6Éß+Î$ÏaeÛ+ѳjùІ°åC™j-ôo>à$>M{ô—»ø÷R!Ø‚ÃK°è³¤wn=Œ²Ê×ÍÒP«ºŸ-y4U»‘ïÂ~!ï±S9ºÂÊzuâ,IyE>ùE5ÚíÂî²’M§YÏ)ò¨°z9¥7¹ÒÞM-îð6Eo{ž–•$Ö5 L³j~ &ý³dt›J$DTiÿùõmJdgZ±BÉ‚Ÿ ³¸6NÛ´³+E£µ+r¨G¦Ó:š’ 9š PÔžsKnJÎb; ~Ç$S/T]±nt—³¿©Ÿ¬¹ÑÒLßœæÊR®MH¼t]TS1“B‹Hr¸>Ø~¶‹˜ÛMwŸH“bXÞ@b³9Ê`»m¾ÐÝ ìÖNf ­äݘ\Û/GðÜh‘ßR³z¾÷<ÄÊ‚ÙoØ*Wã®~‹„¬êGÑ@›!¦»€ÞŸêÒî:\ÔÙ(¹@6¼ùQ搜|FÉáãà™ÂÉž…£*B«ÄgrZ+&È®e ÍqâŒhÉpFÑÔU¤€iCj¥øeƒj¢±ÌÛ&-«¬Y(j*¤Œ¾‹$¬ô¼¨ù6– ¥¡RØàª|ʉKA^M"‘šÐ¸˜®æÈ†or íø¨æ`×8uWƒ"µ)T{ d/d’is]A´KAe§È!‹;EcæÎØ“äh¤?ž]‡X:¸#tFécqš°§.jm©zݦ¦zã md'zJ2ÝÃ)5 Pí˜(¥jë•€à† ðWs:‡+pN“æïõ ˜¬É‰P©liÆÆ­FÈQa¯ÅÀs˜8º"×\,ª3Qc³K2*›9–VªÍ/ŒkŸÄ/dŒI­Ò‘É!BÈî6a|k’’–^Ááæ4ЦðíÉܪ„ûÈéènÇOÕ«.àCò–q"%e ]Cª€z™ñHp·Õ,>ê³%…1'ÕK÷Nÿ½ŽGðA½Cã­áÿ0ü%!ò`ªšæôºõUÐ!÷´ƒÙ‰úñ§PQ5&)\ùc+áQÛÓØsh7xÄEú&*Ø œN‰ˆ0JXYƒ :+&ã´œ5§ÂŽÑþnÌ9E9îˆÅ‚F+ŽÎ0D ,±¸Qr‰+6HE#Ñà´¸Mtƒ•EW8~Ôàu÷Qw€6œG£äm;·U»O;„·É1‰Å¬ž¶ ‹G¯Òè ¦7ÐÞ4c;x΢Xë ¤«±65G‡R6#áh1Àµ±±( *½Ã"é{&é#ê€Â6ób3VA~wÔ}ÇÉ©ÐK•ÎCÑ@nãNÖ2ù8₆ubz-£Êe·Æ×ÃD¤t‹ lÏ’'œ±‹Ád•t&®b€Äá¬{]?QAG5²V¸9%ÉYÖiÀ1rCoÒìüF ˜nàôK–]ƒ5ÆRr'2úÒþÆAÑ#v!¼¾‡ÑÛ*Èf'=Xüš¥‚ÚäÈáÍßïn5a9¨ØmcIáNÅØž5·œ-ì~6N‡“wÿÔ1pÞõÆ-lX«;h$V䤊Kñ× ¥V›VÐ~³…Ó^£&Ü÷+Nf\¦IܾÔk ióÁ‡í=„î4uçëÃå¹vs²ÞøÓ+þ{²æ-ü]þþ,;Ñΰˆ9É—‡‡»ÇÀ4Jõ梀HZé`\Í{KA_àÞ9²ŒY`ÔBtËØ´p Šj0\ÜuCU~×¾îþeïhïùt^ðOé=ÃßµãÛOw¡ÏPíïÜ]ÃuW£Æ~•uÞwòM…Ú.ÈËhÄÊ>÷X€<'²«œõ|И;q¯=ÁCdd&°‘ùp®8xü}Œ§É–9âÃÈ |, ,Pû]à öñ\a¤ñsÒnk 9ÛL­Âáu$„ Ånòðã’X,¦áýE|Ðo5‹É±í/#þ51W³æž?‹ÑêZì¼:"ö°kŠÓ‡ÖCñ ±­KôeD”˜¨zkúñ®×¶c_EFƒkéà¡-£W;Ê÷òT¶{U©ª¬¿’| ¥ÅGæƒq§u Yán®[95ÏÎNÞqa_Àhê{øMÇ*_sŸÃôöý†\Ø&‡1bà0PËîÎrýý`û»Á+ ¸Çåß~R•ÈÿD7‘Ïš^y96)°´‘að×¢tº‡Ù™£Ht*ó9]°+C$–[æ«4Ï­#M]tÐ.µZ˜Z‡×Œ¬•‹vÙc‰«9Ž2c*Ë•—m/!RÎf~i:Üò&êê ¢iFÖà L†|¨jMܱ5¬ .&ã]¬¼”wvó“­X#|\nMI¶9†…êÝ´¯õH“Øx“®Õc¹qNæCÄv¯ÛQ½YoºËÞ\EòK=·Êé*¶ìÜðnu·û¶!ÜïnÇ;$&W›3e%‰îfýJ‹o·tÿVî&/ÖæZ°FIÕdßÕxeæéd²^£Â‚jËxU7͘¯UÍÔÕû§†É–µÓÊf.÷}J‰4CXÒ—J«ëÑ(_*#[u%ʺ(>TíÜÅ‚HŒ+°…ÿ?y~ýwó>ÉÍ4úA)»n†Y{¡aé5Þ¹û”à×1ÀŠrÃÊ*ÐQS÷Nžzx› AP‘¨€ƒ ž}ÒY‰Ú„˜¾q$ÒØfØÏ ó’]{ëEcÊéÜ$Äì’ƒR’‰xîê,LÚöùKàÅ áü}‚Q4LØzã«u%º‘’‰$ÒŒý æÅîuG©kŸkß®5=‰‘½/BºHéœÇ†¸7,—ípÖ´Ô`"ȘðÏÞd±ŽL0Ýå î^Ñ<àÕãN¡:ÓQ¬Hûè6p¥¬¹v¶üf»c¥wLa”œDñxU»Ap¤ ™ `uun;kVrŠ åéUˤ,@p‚ rŸˆ7èź£~óY¾ö!×b1º…ÙDš=bý‚·éÙ° S°røÞ¡µ®úÓ‚šÑ)A0`û¥ Ûô®‚»?*rÇñ[¨o…3EE#½U¤Á#^Òû {£æ)⺟EFÝ]u¿nX^8šTȉT~V]õ%!†S”RРèûV¨âžŠõmvœ¬~ËX’Ñ¡!Ë:V‹"…Ϥ–˜ŸÀDpÅŸ%ҾÖü|ñÅ•ñboGÕÉ0º\(š†o¡©?t¨cT  ¼‡1ÈH]6¼LÊ»0¡Zš&j¢‘¼ïm‘ë푾†:GÇöä&÷R’÷ÊßéIÐtâ4xÆV·›N2rªTS!ë,‹þÇ2CrÛ%oäFR–ÕÔ& \Â4ž·6Pׂòâ}užR2h¬æFËØIóaÀVËî)¨ù ê«Gñ¨½?|öaº‰ Ì™?Öæi4§¶«Qýb†–ݳŠb4Y9LÕV³Jóx22wjöRÙ?pt4å;l(¶-›¡DÆ3Ðîmô|±q°¯î€ÕÕS­¤¶ÚyŒlöFJÉö7Ž^¼.ÍÝ^·ß \”î M ß ×£M³)(b“¢Ñ½ê2Îk’h!°hÝr›˜ºj³³?ˆ'ê¢?\T_›¢ÔéÏa]œ¬ý²Ìžu«[ˆ6Ga|Å(سï| áJ\Žqp-Q-ÉS¤ÏÖo2­S¤&g= µÃÏ•– àð  ¢gñsrØ4Û¦qX+ÊîÂlLBT€è–Á‡\ Q9ìÁ!Íɺä±bÜîç@™ í\{E1.öù”-KWlúæ¹½Zãž–1‡vm¡­•´cL®-N.ߔ܉K®¥9&ã®ÇJ0)6q͸™8Öóî÷GÀÔW>^W­ev`–í™m—öÙs'‹Ñ‹Æ>WgÝèí³ú{ «*oló¡÷NôFøe#7ÁáÕý ýŽá›äëY’füÝFw‚Ç—q÷Íäž¹²ÎE2K·Ç2 adÂÈ ˜EKqFþkË_x;(vt³´s­ÕðÍsã“l¼2µJªhljv¬Ç;bTGãnîJ{d> Ùæ´®£z5lÑ ŸeÛSæÈ%lc(©¡?‹»â&Fëušp·í¢¯ñ»¤Ó ËÄ-‰…J'Exoú<Š/ÒÁyïÚ­”î8ÀÏö&„ë”Ëõ$SÇK|ºŠZ£\VÆ„i§ß>²ì ÇmXصZmäʨ3Í ;ã“Ñ1F›È3¶2Ñ3¡ b2gÜ™>•³Ò‰ ú<àÕ9Ì–O_`¼¯Û*Jó+¸·¬ÜÒµ {f´áBf¡B§ï8¶aѱ‹×SÒ¹—9_$!÷rËjiFÒ¤2¦§HÎÑ]·F“ò•µÃgÈØœãÐ5Û|Š£oœgÑ×_ï>ÿDo°FúЉ¥åè=–NFƒhíqô¡"ï§•-¢»ÚþñÎýýaûéQÔHM ·JX—BZ|¯Üz ßMr‰pé¹"ZD¦¼×º. ]|»w ‚ˆƒÓÝdJ$–.ÓÔÂרâ€é¡Ž•»GOÇ2ÇTØ >Ž|¶(ÄTAПÏÉ…Û]P4šV?ÃÊÌŠsY5?¯cLíóX#œ£#ú}¼ŽðÆgVD5ÚŒªÍ{^yÕפÄ[ËÃåM?«Mp6Yȳh–”ñk‘‰l'E/¦éwBÕçU‡²—Ñvºß1}ÿÍ(üo@ãï.šCQ‰ŸFç©Õ@:‹J&vº€ØûtÇ`ZïctšÕS´r̪ɯ˜/€\›Å@æÚ¼BEËNé÷èâCƒÈñª¦t.³Ï‘£t@Ù…÷#¤*”x[br¼.¦ý$,M«¦Ñ1 a$Ä8sLÝ4U׌—p–…ûOœ¸‡×d®ZŒ¶¥,Q·ñUŒø&•ŒÇɈýŽOV–ˆ` …ý¸è¶Y~“#XþÜ­(²9Y©¸¥dªÐí Vm=b¼Õ*ÝLÈ'¶å€5åŽUñ£°iø1Ÿ¬y˯šÇh#g8¢»äö£Ï¾™çžy¦7zô•O£Ó H§¿¶BÀ[ˆ\4Ž–¥e˜VÞêôÊrfª\’ðñÖkvô€@®ðŽÝ‚(ÓVä—õÚ%$naV~Æ{À›!”Í´)Ž;5ˆ‚˜Ÿ[¯³K`¡¢ÆÐyˆYF.Ô;Ö²ë,‡»S£`yDÎv)lwKk2§5òf˜ŽQÈ‹­Ë묮Qc“fãÕ½hêí•Á¨…9gùG—ªÔuºTFKw¨_¤‡þ½ý’iL–ž3FI›]’P{£·Pî¶Ìª[·¨„êæ3 %$ c*ÆäDÄvy¹à™‡:»Ø‹wT²q£ÕÃÑh•·nFîbgÜ \覄ֶ ¿`õܨͼf(dç×BÇŠŠ,‡r{+cqp4gã,1â*‚ ÝìI•‹;þñ±ºóEÙØÝ³"u‡ñÊgEâ¶Û6¿…ï&&wXê]æËüäèÜa¢[ÉÕ|á¹¹Þâ¹ÌQI“O éí&ÈÇõv)õwÏ0 ·–cÅ3(&¸'¨.†²Ý9€èëòkÛãˆ|ùa\yv&óËÞòĹ"ñÜÏìÆ‡E©;¤;nV+…óSîá[¾?ŽÄ½ÒÑJæ 7r>«+«MY¤kL\õµ9ÉC)JGÅtÙTUÃ,õ® >:¡¸>4jžnQC<ºF[‰›%fÎ%‚3¸–ÍF?÷BÿÝÂÖ‹Gû™4 {NŸ|_TŒÓ›s†Áí£cŒfAËñà‚}÷ÐO·zž¦žs #0ÑYÌŽéU'( $U÷Ê&À©½Íi}«h„{­8ÂáÖoQMq¦_nYd!˜ø"î4»Õ A-¦ô°§»ÆdÑ|+¾NƦpØxÇÆáÝùéû÷l­ ?)džº“õ4ÕŸ³,ðÓ½ª:IjpVÇ ËÜ. bŽg”Íá_(µ¾ }µŒiæþ¸q sá»­(,JC•t¸$ Tàsæd b9¹­3Sq§\ÊÀqZlŒ'ÿ‘ÉoˆëiÛñ^òÈ !íé²úøö¼ØÒŽcŸ¼Ø2®|t•° 8FjL6þÎøþ鈴¢ñÂE< èKÑû|z>‡ž&¨]õxcP=ÂP§±ùobj Ø(Œ0Õ26a6EÉÀ¹z *²NkûONqÖ¯z[¹D¹«G« Íþ£¼öv,m|o2óT±¨f¿¥Â{onº$q<`´.•\ “~ÖLÖÀíØó:$¡A ‰“P<`d¦f›ÜÔ‰é>˹y¡'èùSܘC‘_8š®ð/7ÒR•+Á[$g4qœô-„¨8ÀJ>¶s´¬›¹–”'µSŠãS†ÕØÝŠm¡EبiåL„S¬ãbá±E¤% x”Ó)+æ´˜¹™…ŽT‘plBV V·çˆ;`òlã`ù‰ÿð0õGvü:³Ó ŸJ{ÙgvKl;<ëhr–»ã‰¬ƒŽ. éJÅ7]ñÄŒ-ýñRijÿÚ§;'L$CJKc¦ÏXÕÊKg‡Á²cè5ŠlkÔKQ@=œBDàlÉžFÙê X=Üž5Œ~¼©Â8£çا¾­:S½Óšû´þ8âÐL‘×A;N1@ê¾ØÎs7n5¹§’:0 ææ™@¨”‘s'¯’tó¨æâÍ‘yîL„Œ„y%ca~Ãxxïœñž[¼å§:™¨ÙŠ ºz@lEÀ¨6otÉaNJ¬ò½h^¯ÛÄ’Ðu}ŽQj´¼á(ñ+jbꨂ-†”$¨i-|ßóN$æž\à iç•A졪6¸¸ÚBq<…K¼´:s B d”¤cÚ5x£Óq–(¸íuLTF.»fÏÐn[a|H{Öm3²˜ +5.Mˆ†Ë¬þlóÀâþ9 àªà.¬þüøQÕR#Nû°’†¯å sèlÓ”Ulf)9X•—£T¸€éÃÙÐádˬ§À˜¶‚\1½D^]°ÀT‚ñ"–sT¹t´~ͽ P§˜Dsä«YjÊà6³œ »äÜã:pÉè$筢хQo5aHºèÍuðüظ<ÇQr“ú²=£¸ ˆúˆHdNHdÖ" )¹è¢)½¢ÓáÂíÄãØ>@ œøÂf&™–`b4Yf Ã~Ýš°%h0*H†š6»ÿ½)2ŠTžu/jŽ"8³£õp„'¶¤œc_ÛZ¬¬®Šóf [%H´“7XÙQ/EÓ 6Jµnïte+XEÁ\î%\kü˜cj‡eÙ×{úy°š/¸¿S»PÃ`‰”+j ›dá ÖzÁr¦ú6a›ª@ñF!eáF#A­›Ü‹ë*óoçËÆ/v /œ\`áѪã×a™êÿ¨[†R®G„Y\^ÈÍdÒ±†7â [œ’ØM‚Y9èŽ\ ‡‚Ž7yoók’ám2šðbÐÉRdö÷1ë’éX®‚Ôà’LW}zŽv»l öŽwÌáŸøåí©o¢¢W}4¸‚’®îo@ŠÈugŒ õ³Åý°ŽKx CexšãžV­¹YJ•”Âo¹uÂ7{ÓŒ4ðyIUƒÔ$ / ùžË^e“) ­Ñ7 öª„¨ëÇïp¨ZôÈÚVé~4zIÔXÌ;—î ΕۅáÃ.Gõä]¸»oa‘-doº¨W‘·u» xÿ*–›ÙàjïD·'G”Òó.êÅ2ÀAlkl®`å ”gÐçâèªñJµ¼Üî4Õ4}m»ì¼6™Êr=ªå2Úv–õ¶\Ÿü´Ó¥vð V<†`¤–`e›^6ô‹>ûíqw0Œq_aoÔ1*myUÌߢo¼1(ܳ—‹¿39͟¹¸HŽÀpÃéËE‚Ôª?ŽÔÙ¤FÈo²YÄn`ìïfn°™y»TwH{ì`—²;8_ipð›M²¹ ·IùžŒu*‰G½ëÆ;ºê"/í¥')è÷€.·iDÝCïÇ8êQ4òô¸Ä㑨8¶šŒC‘‡½µô)Üžq˜’lJXw¯¡EPKvŠë.Òhqéy>WÒ{ÿá‡ãj½´Šg)Ì/YO=W›v7·´‡šÍ29Áaó<×UPNAÚ¢ ‰Ž7o×°©ö^õ o¾o8ŠgÛ¢n¸¢êcÃ_s¢Ìð½´q0š[RÁOXň™ž¥òu¶æ d6¢¼›Êp‘z+¾ˆžlokÅUnô˘/)ÝA£RY¡ {)Â7s9õ¬®D%S«T¶†íÚaOéË}¼šd–ÆzZ•Ú\Ðø­›Ñv/#ëŠ(kÇ‹<&#$[H.¬D»Òæ°ÑŒ’*ú[Ú,­/[‡áA·u[©L0ÐÕx‚è­Œà7bËâ ÈÈ!í‰ßS}õ$Zy…£¼úEçq¶ÂÞ§K'ÑéÊ+üº’Ýürº^»9]?ݸY©G_‡ ,lõéS1ÿxFA·¹|à ²¼Ûç³t²`[`OÃ=Ìac³L–Æk¹ß†j]¬aWÙèfw5Žye©kÄégô€]ÌU£Ftò†$ÔiXÁ…Œ’\]¦À@¨¦Ì*€Œ`Úcm5Ô¡ûe->zƒ´tTP(‚`+¯±…Ô7á HϨÂ+ ›©¥2P¯çOžoŠ©F(ëwHIAGµhd¤hÉ]ÒíáwÙ€¸=)ad‰Ù'½B¯Eù•|ZuÆn†(mÁµ¯‚Kï®{à½E8ÿð.¿Òµ¾ƒëŒ‹PÛ&öçqÔvfšÈ[åùb{Ò¾°›xî¾æøsÃ"hËVŸ'Á1è¼)œ;O™U˜ø´ ð¹5Vq”Y""'”ݘls&C•dM¡­Ç5«¶Y@Q=üþBøþ2Þb©Ý ˆÉ%Þ«pùÃKz,™‘7{o—ëTsü¦;OR/dª¾Ð¶™Ÿ 1¼õç’죌òLåï$?óLa12 ¼‚"—Ó¢ º±X(“ïï¦ÒK‹Ò2ÜÈówPéÀü=,Èá·« Á¬>ºÅ…¹½œ)¥R\ዩѼ-’Âè»’bÀM7Ȭ{§:T饓a/£a7i'x!äRÒÑ Î/ß?‘‘ìuH$ÜEb¶¹ÂQ¶…zpY{Ô©&jeuÿ‚i™¼Z¶4k5ó„3Òàº:qÁû|EÄšssŽ–œ5hÔÙ* qO3§‹A(CÞHòâòÔpÚ‹§¥äÃyã,›ôU”Lî^hL:"…UVV²‡üªVH|AáðXÕIA4=grÙ1kh‡`IhGi;ìä]˜ ´$ØsÚOÂírSV\ýë§ò ̃ÊÀd‰Û¢h–¼»cdåE&,·Jfsü}’LÈ¥M®!ƒ.^½×"»SØM½<3 !.8´cç7.¡_`£ÇrOè×›­õJŽJºã2KÀa^ôæºLZ=ßöz¦ì°7xÛ±H`äy²Ë9¥+É#jŠöÏõ½ƒ/£¥º½?Yy~‘¨Oå@ž¥PâÇïg ýPŠàÕìXFP ᜓÌp–¶ÌM ƒ\.IÍ –?j²- Q^=ïdOf!KS$·˜y3œb¾+š]1ꥮÿ¼ª ø>Èñ´„0ë«Ã[r¿ç »ã…$== §»´m̳X§|±ÈFó ¡Xªœ±™sÎZlÚJeäß9¶‹ëñ¸®2–Iß‹µÍ•y¹…ÓZEŸ,Fû¨`KßìsVâ:l‘oý§Ò,^S n3E5á……7_F*6Ëóù±#}-²x¾²&l:;èØ€zAœ¸§‰Ž¨Ë ÚF¾-îõÑyBYÃÏ%›fK?:*Ù^T;°5’¿CßøXb\#ÃßÒêWµ«Ä÷"C“N2·†˜€Î)»¬f¤còŠ5;Îñ›_ZfwHSÐÂ<›œeèá3—-xöä± Qœ—Öº¤“Ë ‚+j¥™EX zþWË›|Zs~ÿÃíÀ?NéFk QÅ.>XÞb¾ÍhÖ/Ô7›Ø’Âuy˽îp>vÙù»:`Û¬ï÷¶´Ðšêº¨h–ŽÒnaúëžüJd矉w=ðŒÚ¬Å .³Ž-"¿‚ÊVçðl]Ä`»ëÄ[$šuŽUçà)Ë®˜"{§‰-Ô?JæXÓËXvøO9H…¡s´ª²8 À_jï}.ªAªÊd{P|øÝÒvæöÖ3·°Ÿ‰ŒøÏã7ˆp‰ Ü!Þè8Ç~†øT®ß´\ï`iÍ\1V>s¯œ…O_2*Ž(µ·žÁëÄN˜Àâ]¿.?a*ïÙ‹Ì‘+3î]°EŸ?æèxXÄ&PleÇb¦!-¯¿OºÀ޳]¢ÒV   ×ñtÔb…˜9X£¡ª?ÊæðÅÖ‘µº)ËŠ…4¢7n¡pu«öm…la¦ÒQR*æëº,Ñ4Ñ04d)jwBCW ÌÉÔQÕ‘ùûoY[o%¨§×_Õh™O\­$#–þCQfÑPÀ—š4”­csãV6E¾ «"sY>øDã¬J·Ã§Y@xÇš7DÓM˜PÝ…¹Cžx~’É7ìn̸¬;2}àÂîÂüKº.¨Ô ¢hÉýΦfq܉9q·2‰(‚;4‹°4ÙîÌ?׌&ƒ4­œÚ7$ÌI=ÙºGóæ‘­ÿÖJwƒÅh—Ù×ÛW}• #DÞÓH€u`ï)Îk•<Ú8rÜW“¤Ê¡ÙzØR¤y4±w¨‹®aõ/-… Ô§[)ê¾÷ŒíŠ/+Ýa»M¸ðšñLQc]¹Ø«€Ösj-Øopmnö<4d^>é«ÁÂÖ›»Nûç5,™Ë¬d†Q‰]8(ñ6%smcöÓ,¹xwçÒÁLí°6è¹³#¦ÔLErw’Ü}Äœ¥CÄnu#ù`j›zÁ½ËŸ®óßGÜ-9ÝZ?Ón%†).½˜Ì¾”xŒaîjòAíãÂëÈm:ü››æO5ͱo]c“Ô7Ü™z”üy5Ö¢÷‡Ï> òµìðܵgAgd÷ç½ãÖÑËÝ£#C°vXZCqTŽNžÅÖ‡X}`iHY_uGj7ÜUAêCM™÷sz°T²6yAš"èÑþAëÈ«ÆIsà8Kðܽó¨!ÀqІÜû4¤ÚL° ];ÄÅš‡§ØW©Å>—sQŠõΟçÁ™2Ó¡•ïQ,gâîÑ6£wðž>>̲ôËãÇ|·…¡[@_ä@!bî,¦áƒ”'ªGnïÜ4˜¦èŠa£j]@×êšüb"›(¦ð”«Ú¹°W.öSw oî"‚:z™ÁB ëêÕi××ûuŽ‚ ‹1¡´pš¯€^–÷%WØ»©¥Þ¢¤·]¸T•$î} Ls‹2´´³üzfì>(¶Nv¶š½tYÝÔ¬ ÌjˆZdfVªø<úÝJ(Ødnºxóe`"%è"ˬKUÍ8€~ $‘Ó2ñl²WÖĤ©±f†3—R˜7FcV®1)Hkq%ÀbO`ÈD€öŒó¾â8 ÎQC+-²å±xÐ UË@£XË#Ï…EµÈjç‘£ÁAìà1÷Ÿ ÄÅU_áXyÝÞ§?õhœLî2ë6$ —@Œ4~5–q¦² /{âï„7 f:ŒÛIÓ[ënãÌ‚4ª“Óè´ö*D¤r°Ãfžî·´_g{„þ°•OJ*ä©wf§¢“ö’‚ žDI7XÐÊMt#|¹¯9J¾Ó¨¬4kîYz{9ûÛÝ][[ø\£«n«g^`ÜcÖ,%²æ¬ Ô5Ñ5: ^…ÀÙ4F"Z\Â^k!ªYk8T{ Îuµù‘ŒØVìXЧF6¾6:¢`f›4°Èê©bxÖV;#ø ¿èk9åÕÂÑÖÖu=FOwÒBñæó $\‡WÓã]|Ò%SZj@vRÖ—Ç kƒ-j}_Šw§¬1»ç`±‰{.`«Ã53ÏŒ¿¿«ö˜¥t±;€¤ÝN䟪8(ÀòÑ@ñ¸d´ ^D$6â>˜c& ‰ÓÕ°5Q•îÄ×?ŽûC”VšSy±ä\šÅs|(Ù•"lÁs”¯í$ç1°s‹¯½{"rãpÈyuá½¢§øŠæ…á²\À‚oà`¤šá@ÎD¿0 ·Xúá:š¶@f/°´ÒáÕ«Îõ²wZZ[ÇY£Õ4¡wõДЧ…Q0_Ñ1{¬³†ç½;Þ9WbM$|XˆŠB%¼ÆJð/£çÓuª%8Ð+æ7\Á¼£*åíÛ?níì/pŽWpÿ•XÆf´,%¦ƒí.ÙR]3àùuf…ý™#LÁ”´7µ½$7˜¥\Ö$×A™¼ÅèΟËr8lN&°ü#m×¶3$Êuô‡èַ֘ijöÖÀT,ê’ž8j¢¤ŽÆyNPj¸+\já'>šÚE\г>•º”9pfž –:ÜûyTjvឺ‰zž 6 Úr a<,J(þ2H¡øcxuC¿§™|u D±GÈötGÂ+ÕìMe÷VQäroÒÞcIµc®=>r±Ý›¦·›Rʦííæærä¥Öu_8^ÊÈ”Wõ“Y°Ý›Þ›n¾ÆØôÕyÏäÀ /8^fA…—¦´D¨W N{F‘Áó¤ÄÝ5†Âûg²„à`Ÿ@Õ?“ñÏdüŸNÆÍ"üHz^œ¿Œ°ÿß"þ(†ïºƒû"ì\80`‡Gñ £0g±0Ç‚Ÿ“.€DoÚ+¹pýöH ^Ì~Þ!liá›yŠ3ãçÞVT?Õêô*Z¥bòÝ‹ÃçO·Ÿ}WeHJËŽ£‘!¢¡A"h“B‰6'ñ'‹äÇ^Â)ä«nj¸þ>鎒ÎÖæ4‰s+ȸgs£ÜS0éÈ»¹&i±ì(„™HCk2EXn¶"š›¨=J³L.Rà ®¯âë¦)8ßJC}o•úû%¼—mÞœt¯ûÆwž`ƒ4«¿«æ‹²ö·Í[Ú Ù:“&qÇ¥*R6Ç{+@–óƒãõ/|@Í`xr¼çÌ1.Üѧ5´Ï@¶â” «hZž›Ta+ƒ´ ù¿ßÜæšjï|Lýšœ„¹•ÎI_9ù§Ù¯‡®ÌL"J­¯m“f˜`sÂòŠÂW½qÃyë]ñç"ѬP1.§ÒEÃQY¸S²]6âKÉoEÇCrÍ*I &dœ9(ˆäbO´´ÿAG<ÒÄ“W5ÇÈWe—Ýá¼w‹˜Vo›8LÍ tXʵâ™,(ô4>?'˜N Ê 7Øn:bµ1d ^Îdl¡·[‡|¹JÇeÊ`Сä]Kßc¾/küpꉽƒ=]}_š‹vCoÜš ÷Ä$ o[6²$üz} ÿ‡#Á’`m$l‘“ô0Ž”ËJêÍ»©m-ª¹¸ÎÌÅ/t\,yÚÚ¦Ô“sÏ„²~çh‚ñ[ Gµ×ëÎë\Æåj.µ!‹AV̘ÁŠàF"z׸š4Š*ð32Hí ÄÖrƼȵD ˆ–­e”‘dAWÝÁý >ç±æOyÇÂ^t§šì£}ÚeLFhq„6™À Ÿwßi<2ÛÄDéù9AE4U5j‡P$Yoi:Õ<Ôjøy’¸‘D€á¸ÿ6:»½,ºZM¹ñÉ»q2@ÃÐ,§ÁµD±‚ôó9ËpZë…ZÛÆ³Ÿ^yHW!õ8=*m™'Û´mjN%£ãq…8ªÂÿ›^»ZNÃrÀœd*×­ÃMÕVic:µãÌáK9g*UÚlûYÃLNJ3ît˜ûuÙßœd ? ÇÓ>vmœØÞÛy¸[Ö£hý¡Z¡ß·4´¡•Úh”î—kü³3˹áÁ.BqïX€Èqñ„ê1±¢èbíŽ-† 'eƒ<:¼ˆ×Aë%—74¯›£é ³ýXÕ8¡”mÏJÔGÕçY¢9å¼&RÛ¸TP¿Ñ] !)^’ÁÛî(`˜LQ¡6ûÇ;;ô÷‡ýí§GQ#µ—BÍst|¸÷"œÑf„AX)çhßóã ‡±Üt¦³7–ô-NÏ|Ÿ_­›ÒÔÞ’wÚ¬ SÜôa\DŠžl²Ožô“¨5y%föˆ wØb³} dߨ¯ÿõ;V;ØÂ;še‹Mf§¦Ñ€}Ú™ô‡ ©í›yÄ —ÚÍ£…ÒÛc!óÔÞ×P9O¤L?¾Õîöè–Kƒ}ùÎ}Ø’|˜Ãc‚Þ›;Õbt”$âN¢‚1v…m†þZç1p¦)F³51q¨Áè”Ûë¨ù(e³QOØ‘×+¹Ç ŽFŠñUˆ!jZXñ8ãN‡Í:'º|ev“‡‰à½j¼Z¼‚QewGÉøšsÊú2E²‡ã€¢FKíÉÝþõnÑ£§¹ä·›%Ÿ]&…éKöïrêe@ÿs^Õ‚ \2¼¼Ê? 0©«äíê`|ÂÆ7\_.Œ³CÞ–Õv:¼&c“¤[!éø¸âfnMa`Ïa:ÇdÿÎÖ¼¦é¿AS¥¡õQÄ7 F§'‰3˜úŒ•x“¬™­uUŸ¥.8¾“ÉÓœŽ>|ÃçÓnFê–a·›š÷Á-kÙ{ص¬»wr­¾¢ŠÎ(û=ãEuu‰Ò¿M -,qʲÉ(1N¸œgoSˆÁ#j7ÉŸâ^Æù0„@/¢j~è‚ZôÆ5š†ÖD×±®ãXb^ÜííWilðгDéæ|Þò¬®JJ¡žìúö–gsãu»`é¡¶7€ ¿T‚Œ¾*ô?sHfIj3ƒËe‰ÐdÚ~n;AÑIz‰‘«r‰e1Õ+ ”…ÓN‹ÞâbÑyg¡`]W¼X­¢8Àºmúĸ^ùƒ™aú³Oy9*Œã‹|ùm„¹8Jª’Q(S ùõ6iœ•9‚w ù-G…¡·Ó•±%™ªk Ðô–•»†GsÁod ž ãÑ8+› Y2+D‹·ö÷¾ßªñ¿øXžÐ…=u"R…Ѫæ:£=r¾Q¤ÇdŒ¤í*¦þDÃ!ü@¢@½ßÎ{|Ü;?g‹K¬òAd v¤Žaa™Ò26zÌmŽ9/Œ¥Ó£ÀP/KÂYähhÄÅåõgF„a*+òßVŸîR¯ëÕb"£C»D¾C¹ÙE2¶«XKpObŽÆâßCxÛÓÙQ+ÑÅê¬ÜPTñÛ†.(^9¦˜bæJ—†6O—dI?ІÇñà ò¾E #<•&üÇiÙŽèÙé‹TŠ êggD01˜Ý0‡bV‚¡1œÄ*³ ô’ÁoµEi÷š½X „Å*ï!ªwŸf;ít³˜ÓA`wn« ýhÍ¥Ôs õåüÊËßWuùñŠËS[ê˜Geyç Ëb÷«Ÿ©Ÿ¦å<úqwæˆliÈp°J¢5Za°¡/²¨xšÉ–hÞk*³¡wß±? /Þ¡2é»åjq¥¯, M­Ødœö 6E§·Ø&&§muö¿nrV¶Æªk¢f='×/µÀ‚M4H±i!Bª¶Ö$-÷„“$-õÁôQºJ¹@id,÷’ÞU-‹ý EI`yOtÏHÄlP›¹ ¸?ýkÁ{XPbâ`!‰Üè19D~ÌtU.°Îí] ðÞ;E©ÉÙàWÚƒÕ ×¬QšŽ½ÜŠNÏ>¸d@3`“˜Õ_ä1)¨­ž®¯ëÂ7EJ…¯¡@jÌù’GƬKKêjpG>Z—œ;ÕÀç/?Þȉ½ïµA›_n}Àí–ÔŽË£M,ªíÆ>j·ÝÑ‘¾Òq†¯Pµ=Wûµ¢2"œF6òð·oäáü̃iLŒÅAœ’yXG¸ƒjùÂìnc(ß­ŠÝffñ«üÞ*ÜXQäpÎþšgsÝ~ïÀÓØ#¹AlÌù7FÁtÚbæ™C™—šÍéÌ™ ñ·ŠfM_Î9qŠ]7Œ³ Ո쥞:ŠÓ3Ì’I'mèåeÔ”1y› РÈÈ0ÄúÝdN‘À»ãe•ß/ ˜l‡­àÐé. ÕcªW%‹b»’Dò:ž ›ôü?a½é ÞnÉ/#³Tj^Ñþ}Ë%·§ '§§«¯Ðºèd»ñ¿qã×W›üdnà¬Â5b]|@,auµ|ä ”œ½Ÿi ¥ßi³ü½s'¼¸ƒS¦‘ÙµÀÆa1b~ŒÁÞ±³ít„[ }8ºd—c-ÞDúâö˜0åüNl{ЦghkDv%„„e{6Y q9@/a1Áu”¡çÏ÷®kü”q1ƒ'‡NÏ K0·R(IO8Ò彨>þq…ËÁÐSÐ#„rÎHÕÇ8ÏЪ$κh ™Œ“Q…™T©u7Â`uY´hv­¹Çª£*!m‘>=?"ÒÉÁºº2.0á=d€QÂø8ŠÙ“«Ÿ¢]ÔŠ\ª“x`ý1dyÀ“èÅ.£ª6HX«HpŸÀÍJl¼ÈV„Hd*o© UÀ˳UF?iÆjS ÃFd 4ÖXü/‰VqáŠ,·{÷X‘8+5³îD"ˆ+÷zq}=Véʽfê36‰ÅïØo<ÿΰ„ÊG î ÐÕ‹ õ™"0LhÌ;+‘uIè0šÀ(É;‘ØGñ`TŽ' Ú²›.ŽrÁMÊfÃ3BÇ,ŸSN Ug8‰4°œÃØ.ƒŸã¦"ÐAب—ÉdÔÍàþÙtŠo6qò¢¬hÑ´áK±Q:DÕÓÊbäº24%¶î0\Rì©Ñ»ž]G5#ˆ–0Ô\íÅöΟ·Ÿî.Gµ¿ìí=?¨,BŽ„r=yð§‚AÓ13âÃó7,‘Ô4hg>0dÎÕÿÛŠy´eéæ>b5¬#ô]CÁÅœ=Ý^w|íY{p 7¤ Lزo+¬F€9Å$æ þA9f^›«tJã· ?Àágæ¤^1ï衞æ4^OˆãMG×ÎÔêŽDó?5±qeC›a[ëiâ€Îfb%'.ZñP'\™Ð h‚¯ÓPÌvZõ˜}ð¬¾b ­ »Š… /“ÓVÇ –é„,ÄL1ûOZû{ßnþµ…G½*søAXʱ¬lKïë¥Q¬\L0VP^ ÅûåÅ 2¤Øp€ô%oú #¤“”FeÔæS"U© ãö øôýú—ÕÚwÕKº²ï|Ëf³Y)zµ´\yO­šq6¹@í Ïâá3Š$ `+Sf­ñ먓ÐNÈIC4#„si·qÒC Ï(;‹þ†ææˆî“ŒÍœB@¥X3¡äÌèZmžn•ëŽ LMذøOÅXȈ È3Š…Çv½5ÎýÛ<.J£¯Þ´¦›{eÉ]˜dJ¹/•Y2¡‚êW²^Îk¦øz™ô†Qõ:°Ù>;^bè3lŠ ’èyF}Æo3ãAvŒ ×"§|qã Ð W%¾!œ‚ॊ¼=|6«Éˆå“•RNÞ~®Õ¥¼`oC÷­¯àsnÿÔ*y7EÀ U]W¼¿çP—¦µ»¾­ý„Cá"¯‰ãEñQœ€Ú+@ˆÈÐn*ÀL[K8cΘƒÑViP{Nm¦xŠ<̲t*b™É@ér ¼¾.]„H`Ñe†‡º‚Ó›w¨œ©P4ÄB¦šààm7T·¯Ãÿ8úÚƒvjÊË™)­µ¤ãÙ4‹Ã°ì0KrÖŽe·¸Iâæ¬Éžµ-^;>£¾Ü¹‰öèƒÞnd7³( 8ß4˺gèheta| ülD = aˉR’å¢×=¬Ä ÉÈ|4r¬ujΫXÈÚáºO’·¦Ú{ $Ҟë• ô 5J¹Zķ–òª¡õ{®7qÅ^$uÕËâ¦í W;]ÿ^“ƒI²æk¦Ý ´\ƒkszOm¦ -ñÜî:"¿éÃÅ®á¬+c-™Co(Îr £“JlgsÏKlæÑ]ÚÒ1/z°™Ük“Eݬuch䳦GjwfvÎc–ht.Û-.zJ‰Ì.¶@£Dëg4zâ±úÀñÛ(LNØJ;…ÇW㛘Èv…4€e6·$¼Ñá~C­ƒâùF>‹4 Ÿ‚ 0£"|²²"S6¹¥p â¦g¸£¡o8«u¦àÝÒD¾‘·¹œù AMs²ÈÝÀ¶SÂÇ}l[}¢ö)æmsͱ0rg|ÙÚ¼N9ÇIa!3;â‹Ñ„Ù¢3œ\œ–{ 3ƒ#‹ºWæ<³ÇÕØiÜ”²¥±$o$_èK`ôú}–0à=;§É`UD·¹ñº8Eç'Áé¦/È’$9Ýæ[:ßî8[Š–LàEXpÚ%³2éâÓ|D½©Ê£¨¸ùu#ÏíêX2f3²kjÇLržVÉ~Eìi*ìP6î%/dZ% €l£Þ)¢tÔ½@”t‡‘’1öî} Q ÛŸ“³Ô[‡=Š0”ºt{æ%w[8@ÿ0Sш‹õ¢/ù˜:-©º±;{NÏ#cLú³atüs-åxŽ´ŒfÛ«È!]\{ Q$…à–롱$‚ô^»AïÑœ/jõLÏúŽÈ³Èö‡¬«Ñ5…ØW¹÷š»§×ñƹ{zì¾{s [O9i͆‹-Ñv"écÊn‡*‘)'û®@Æ–âKekY÷Þ‰r¼Âo±Y)CøKKœ~Åž=²[Å.ØÂ‘Œµ(T¼ˆ råhl?‰"2ÆÔ•vÕ«vLh'˜2Mwið±û¶8VSßóîÒ÷ãí§œ(ë ~;Éy-²IûÒ¨8J-‚H,Á¬;žPË+‹Î*Lá³­7]ŒY1÷¤f=…›ÙÀ¸§¡ºo1j_¦ÝvÂÃ) ‰T `¼©!¬…ÐH‚ÜKV*m·X=#Џ°Qä B©A²‘iiGá*lç@fâ섉£JÓ‘Á| ÞßEoÃÚÄ·Kèk@`Äy‹GÐ…I/¡9EŸLá|£í½ŸWL¡&z㢅JNdˆiU2È£ÂE@{¨"ÌÍð¼X¤ØŒŒϵ¹ª?Õ°Š<‰T`#%ÛI˜“îÅd$ha¢å“qjHÕãø{v³¸"чQu¦áºtÞ¨HœZ¯Ðˆ£q.YP)«\ÄeØv‘Fjqq1ú~÷éÞA´¿÷=â]ášvžü°÷t3hc¥Ø)Ý7ÝÞ‚³GÊÝ=x2O©ó·‚ºÖ÷zŠë?„Ëìè9H?&ŒüƧéèx=o[¹nÔW¥m QIîfe‘(Ìfô§' ¸à.]ÒáÓmnÀ£ÝAg³ò_üùÛßëÍG«<‹«ý«ÿu÷Ÿµµµ¯>ŒèßGüïÚÆþW>Ñúýû¾Z{tíáF´¶þà«õÿŠþmÉ}€ÔÇ#hÊU/\À6ꔤƒdççSÊ‘~˜ÿM>Áüw3t»ã:¦ÏÿúÃû÷Ýùóÿð«¯ýW´vÇí(üüŸÿÅ/"2zÈ.0ì§ŠjŽø˜>O®à$£s>ÁœÉ‰ÐXÁj‡*Lp䪱µ±¶~¿±¾ÖØøïæúýÇÀÕ¾<Þ©P ÃkÆ…_ÚYŽÖÿô§G Hú úa·Î£ô||…üɨ›$zµí ÚxT=77h^wøkôÓöááöÁñ_¹Ú«²ïAŸì‚Ðf…P €g»‡;?BŽíï÷ö÷ŽÿŠÍÿaïø`÷è(úáùa´½Ø><ÞÛy¹¿}½xyøâùÑ®µ¸BK™ò±<§Ù vVÌ« ý_aöDIvdpQJ€•éÅðzöá`’¡—ØÝÚ„ví‘¯É ÉH¾¾‡›««WWWÍ‹Á¤™Ž.V{\F¶ú 5fÅ't >¾Ð|©H®¼ +x;ƒ®,:Sf­}hçÉ8:¿?T$qÈš)hÕ…kz´=§˜j…V=: ›Ý›t³ºe…"ßiÛBHŒ9æÈ„0Î'Ë™;U©‘¹ìÔ£Fò÷hÍ^sZÿæQ/¿õÚZÔhà-ªnçØ1u17 uºõ0ÛµŽ2?xÑht³F)ÌU‚—åVý2ã㶉¥×Ðao㘵 °·z¡ kë·°¦èª#O ²˜ŒÈm‹-\Hˆ!jÖZEdlÔœÑd møXèºö©‘!¹~McGzJ¡¡h[{üF®RoÄ¿1»ìžÝ .oü_BzüwÈu2´ÈiFôäù‹ã½ç¯šÍf¤g'Û‡O_b„a|Z©NQ½ð]}&Í=É~çχ¸óMYɸ‡'A;v&I†T bõ­ž¸DÒ»>§ýmR?VdÒY¦k î5bE B;$~‹‰•(ªW•¡’®Y”ÉU921Ú2òû£Úãv¸éÈ® úv™Ä8ü£ÿ6¡™Ž(¿Xä?ëfÔ(ºŽÛm‘Šô’w‘~ìwìËF?†ÅªV\ ßÉRymZŒ—X´&ÉÔˆŸ“ÔÒ4`6ð_øzW©_ÔéR¯ÁÏœ׳Zþ±IXåe\g“ Aõ} ¿ڥ}#æbsã®¶·°¼è¿„þŒøo&ÿtõßÔ|¸ QAÍcØîq[±\Z÷=§(¦µµM áTc½.b5L7/U1tEkeİÅwŽ$ÝŠ•¤ážÓ….Œ&ee¹K³‚©Çðk ºÀm|9i·“¤ƒ¶³j EfM+ÕP „d%JBGðée)ÿ„^ŠÕ8üÀs½„HJ1É(Èžk™–DT7£_Ç×P z¢$Ç,ñAŒ»¡Béó¸ Z%_ÏÑ€»=v "b9 ò2°ƽ†.3Þ@ÆÂT¯ÄH¦3Ëm{¶ûŽð5á¬yt_Ì´uAÀ:Ii_ª¤8#öKÓfJoX”ƒç“†¿Æ3 1Ñ`슽ãˆu†äg\2ñaÙïºýIßòO渒‰ytßXýìb« £qŸÑp=«V¬ …æYßøÊdBço?”¼ËVhji†>˜µc‹,“ì¾üÌl»Ç¤Ma'‘SãU!2¸h2lYa6¦³¨v¯õòpËá]ð1/¤Xî[üÝdl“‹¤9HÆ« -å–ò”Ò÷P#7»%<šÚÀ9‡6î5¡¿7J‰Ô[ŸÉJ0i{» Pøe¤”|À‹ö›ø"Ù¬zE|] ›½ªu}ã§Üc'»8´tæ“ðWÿý 8fÑ- E˹ùªÅ¢¾™™²ÿ`5—H'мýƒ–z£Õ=¾>n0é¼Õ`bްŅ£ùIã7ÿ¨¡ùP© Ñn ¯"˱$€îS˜2¶‡WV<îž&ë´$ÝÖk®µ¶ŽþïH:Y…“­þ‚góê*lxçÿ›~q …á¨;ŸGõ?d§@¥«4%05 M2$Tîªg[ÕºyÐŒÛud¤`Ya%L;1~²ªÙkùž˜Í'swÏ_(ÎMŠ„¶„“ÚËÕ„ïÁxßó+\ñ禬•ݱ1q )D]ÛSÏ/q^ÐÛP`ͨ©ÍK>¿¡5¸§·Ž›QÐ>¤'Û:Ä™£øEqÿ›‡­ÇöãGN&¯Ùð)ãVømSŠUÐ6”Ò´%Ka›¢=Þs“‘´8ç¹ß8¤iu­ÃR=6ø% >c81£?œÄïß»Afÿ#‡4ŽêÍë:¬ªæ;7Ÿ+Ô$ÓÈ5§Bêù=Ý5æ¦ÌÔÔÕ𼀓ýÞ žïŸÐüÞ­›O±œö#Á»Öö î]ÿ 3XÖeG¶ë ꣛n=vªÆÔ›>Ub¡hhÓÅmçåGiÖüS£ÑÙ‘þé½ò¦f c̳³’Û­„·K\½˜JpÒ[cLîšÊ@3'q¯hHh Ê14º1ÿxŒ9Cx¾#Ç’ '£n:ÉÌàÜD*'ãŒu·@Š2 „7›žû10^Œwà 8(‰LFK¤©}òr%Ú;Üû.PÀ‘°“)›×ÚE¿¨°¿ÄÖ@ysð/*·oCû˜à©øUôÈ⥌P@ýàÚ“‰#êˆ&ýX¯ždA‘æ±;D%w·Ÿ<ÛÕuÓ ºÌ—0ö-ÁQa//’/Ð¥ï„D³.Ü"kj i21´,  º³h‡IòµÝ¸LqTÕm KÅÉñK¢9¢aá%-…Z9(U¥—+—ïmzSPÄ+:,¬·úÓöáÁÞÁÓÍhµî“÷ƒ©7Vj˜Þ<ƒôßüqï½p‘ê¢ FêBîH¢¥äÝ1€ù”‚[¤èb¤í†<¦kà ^Ÿ½·âsÍ‚΄˜Úðf½Ü¬˜‹¡Ñ%¿uuÉh{²-ÅNã2MßDuT»$ \ôG´B@…t¸,6 ü ÿŽÆ›QÕ× UýD,yTؼnüam£:Møóc’¾þšHüòx'x ¤ž‹Ž©¨·?f||ý/ /œÞa3ô¿ëkBý¾ú¬ÿý=>žþ×™þ¨PãÝ6ƒL`ëGòBÃÀi|×¾j¬ßonl”j|!Õú|ßÿ;ŠÚ¢®þ§kj?«jÿ•Uµ² ù‚Ùë6-Fµ"R°>‰ÖàÅ­®¨ uPCä@Hdy¾Öt ylµPØBߟ  çH¸£x ’}ì9³ZŸf •…î—¢>€Rð¦E® •8UÒµ"|=L„(’r Ö&:H7&•Ê$NR§Dn(òŽµÍ¨v¯J òZ”Xžgµì¤ûÎH¾ÇÑ×_ï<©¼ÄǨ}ôÈnƒ~‘óÈÁö³]Œ•^ÛµEnù`”ÙßzÒh0óØ@þo2J¶Þ_'ÙÍ ýð ßµÓ^:¢2û¢ 2:mõ?ó‹ ³ï7Žv÷^G'Άê^UHîìô•˜¶ouÕ[içT——‘ž ]bphVpäÄ›cæ©rŸ=‡q%’^J&0ö- ÷NæËhv¿õÀC…ÆÒF6h´œ} aИØËK¸£<ò-ùAZ¡ñnñxÃO׎kKÆ­T9ℱ¸£mê{jÕ¥9‹Jcl}K—«sÕ{–³°|k5Ìiæ…]=%!ädp ‰t¶–#3ºa?(F‡1Lâ,ÂåÈ¡0¡¿’Q‰èo.ynÕ.G#f[–_ùâ1«š#w÷;ÆüdDKÉ*ßÝ!©Í(N l¤Áþr÷lAÖl‹U½ïª53ÆwþU¾^ºjÍýéNOÕ¡SPæ+B'Ï– 34o :·U£}ç§!?›wFãé !ùÁ§½^zEæ º¡ýmÎemú…’æ²ÔxÈ«D/úŠXäuô˜röÏI2§78€¯mæ*ê½îÙjÜ_%­P3îoÖ–â~«5_·¨´l¹Žz"àA·êÿßÉÚãûëý:¹˜’?ÿÅh 7èñSà  ¸wA/ÖõÅ>qÈúú¬7‘×èõ÷½ Ùÿô/´¼‡ôüYŒQRb|•©ð?¨àâ½ÕT26‘D•STå¤qê¤-$ [u&0+,2+å1Ê&Xl°üب–ëþ—·Ö7þô8ªIAÕhÝysÍ}³á¼y°îå¹ï¾ºï½zH¬‰%ÖÈœ ¼3c¡ÑEôm6ú(Uñ´BC ³òdÖà 5ži5ÉEkíO2ËdŒ8L ä1h2¸á -À±P ’lÖ|rÆ4~m“<`æŸ ½©³­Ÿ_lÜ1.A<0¢ ä·Èy€ò Š8Ì/å¡,&ôLò ÷dùê+ÊCY`!P–£?ï½(Ê¢ÕüéO6¬ʳ{xWƒò¦ÝsºÓ“ü:ñaÓ©§Êe\ÀUÃ(öŒeC$Ê{¼E¹²NZþ&kœaÑóáùÆRMuÑKÏâ^£(qAjY%”„¾'ÃõÓèR8Œ ä U¤ŸâjM÷µ‰6>ËQ?þµ?¾ü÷º‡¾w]ÇLÿŸõÐÿçуûŸå¿¿ÇÇ“ÿòôG Ϩ—¼[%«f¸$n½Dú»ÞXßh®uþ>õ'ëæsœö£ãœQ×Ñ×cú÷»öõÅ`’5áàúæ³°ø³°ø³°ø³°ø"0Åb3ã{«÷nîžÞ[­/}MvsºDxô§Ë'¿.}íætý¦.ƨôJÄ ·fï“þ6&¬³%TÑW›Õå¦c_°]LÐOñ‡½ý]øÑ0jØyñ‚½’Ø †‡ÓÓô©Ì37+üB:ZПø°Eħ}¬mèõj|Öî$ç—Ý¿½éõéðï£lÿAT%ÊŸœpk¬Ñ«hïàe'pžá¿OvöwŸ¯[£á¹»±«ÛO3ôíB‚û˜ñ”’¬;B¹´Žë°’îU tYŒ"i‚€‡QÄú }FhiŸæg/ ÿm üÒC4žB :Øð\&dÔž8ç?ÛÍÃ;ìIQER!Þd•Ê6pƒ C¬jY+Ú„aŒ¸¦xBÈZE?@– L'ÐÍ NŒ™s몥^b®»VUf.PBegaŽCY„t§ ië¬oH#Ì‘L…  Ô˜ª?\3ÍyT]ĘºUL‚UIq©®5z·õÚ=6Ä6ÂFò6èk‘áñLÓæ1!L¾ÕØ%r8lŸeiÏu O€zd-.MH?–qiâC‰e@‰a¿‘ºÙR)„ópÿ) Ê*·Á-îÏü}AÄv‚ÓyòüˆŸ”ÔLœÇ(­ÆW)üg+Â2`&ǵŠÍ‘I¨Á±@®[ãø¬Ùv×ïu“U8 '¸Ì'€8.¡cGÙ †ƒ2·)´H@± †Ò¹©Z¡¤Ì£K#ÁuóG“„´¼Ø€õÊØ—/é¯È΄sJí!¹@ÆÝ³^Ât6¯©o£ Ã<ã#cÌ_áRqñ"ãȇ€ÝºÙê‡ÏŸ­?_½°_ðîÀOU:¹‚/ñv‚•0sä@8ây[TÖ®*£Xe‰¢}NM€çÈvNFj.ÊaÎi  G& [ÅÚ¨ ï´0:¤.DµŸD©]Ô=5W{1N¹Ñú;?]ÕÚûÜÃÙMõµÏT©©Õ×Õ›Ú8½¹x\u óß)Ð{A…òŒÚÂì“qŠ¿±`ÖŠÊŽóΰ&9 ºdž¨!^‚G.™$<;LêPIozXB…ðê/ªJ(*e3GÐÏ->²j5£«¶;Q²ÔQQ„J²Ñ9ãÑNø&òÑñWëª-%V]ßU__ËfôªXcF¯JTfü.Ô™õß(‚5T}¡® ôH«šJ¸Oà=9®lÕ$rt9/¾óßÒbº½ëxË¥³ºúËâêgÓD®ÏæÈnjʽê7æËoª%9 hÀŒ:j…Vµ0‡œoœi¾‰”¤éHìxh1¼„ 3ïP´¥:áRÔ‚ñ›Vc5X޳k“ FÛýaÔÈ‚ç¦AAæFD)³Ä¢ê¤`S‚y“hœ· êwÀ9î¼í¿õ ñ›gÒÙÈ"üÅ©9bµÙQù!9·© §‘=ò9Л±)â È^˜/¡÷Ñ$3H›ìõU¥~£Seio£#ADM) ÷Jíøöƒj~‹5áÐYÌ©–FÕ²y.Ÿf:£ý¡ˆ1âÛÈ¡ÅþU¨ßë&ÖÍf%`;õJý¬©þü¹õ'‡ÿI& ˜§Ëb7û>¹ŽµµµG”ãn|õé}µñèÁÃõhmcm}ã³ÿÏïòé zÑöNkçÇÝ?·žmÿØúáåÁÎNýr^<Ù…ßK'ù$¯V¢”:î´ö·ž.í,óNµ¿÷ýÒIÿÕÊImþ0Õ'0ñ¸ÝZXúÖÛÙm¼š ‘^ª­ ð×¹w°Ûzyð?/Ÿï>YªÙ\X —øj¹ÿÿgß¿ý'·ÿÏá\ ß¤ ЍùÉ`ÖþpÿQ¸ÿ¬­Þÿ¿Ç÷ÿÑ%0x_ì¡ò2¶šoç?&Ý~nÿæ"}#¾äƒ6㇠H<£q]•…²øå”·"Dvõ¢­ƒçH"ŽˆÌ¬ØÔ+zÇ@I¢˜pÃ×äÝxDaHÌwx™ä)W8¨¢KD–¢“j5ªmà—Ú}úû€þ>¤¿^-ÿŸ /³÷ÿÆ'€ûã᣹ýÿÙÿ÷÷ùüS÷ÿÆoJhkW0ѳ£§Ì˜ì§rB‘’×_QömxÞúËöþðí·Äc`à°ÚúJåE˜Ì¶ÐÕî´zZ³© É)]ç¯Q¡ÁSà=:ŠQý[ÕþS­,f§ÁHv½ÁA%eßp¾…j•Ãî-á<¿Úªr½…AºidE~ÒèI˜¾…{6u£gʤWèiAÚô(’·Qí!}5 ÆPëÈÏíü¹µ÷ÃîþÑ. ,òw-Ñ@‡¤Ó~7á– EVLaèbàÎ-—ÀñYHɨÓk\\gGÈ´âÚ^pù^xºêºt«Y„•V™‡õuÓà$R(Φâvº&«ÞêjÝd†Ô:²hoÌ=ä7­/\UùQ”¯ê)©JžÊ/Èî:Ü=z¹¼t¥àdᲤ%5 ÒâŠÜr©soŽöòœ5çÓ>«Œ–‡êµäš§W%  ’Â^nT+M§m)^~t¼Ä]ý—»´”ŸÿwqóçÏ,þÿ~Èÿ¯µvÿóùÿ»|nsþ»‡ì\'wÙ ]Êš+g°åË~ ,ÞJ&`™=káiTsIü?{tÿõ?¹ý/‘‹în÷Oßÿëë×¾ºÄÿyôèþçûÿïòYŒì„GhG‘Îó¹nOa6à’ñ,ÿÚ½x“tÇÄÅú@¨6&ðõ˜æ|A–­ 2ôºý.Úé“isØ‚Ÿ¼ Ä+ÄsaONÔߊëVàÂclFã,"ƒXpçéä/}ô–Ì+ûZŒY²tÒÚ?ní<ñW45R‡„¶1iŽð8ª F"c‡‹Hâ\bÿ$Þ#ªd¤TC” Èð SWǤ!&OÌù1>ñõØ—Õôo昃UH-Æ…ƒ ñBg2WßÕSm™9˜b¤± ÞW» Ù$3‘÷ ±…ÛqÖxƒŸæ!²˜_·tYB‡%4ûýì²ôQ.KxÙ]„”#\…ÿ;ª³w°wLfÖðýÅáîáîÿ,ýe÷ðhïùÁr¡ÏÑ%׸kcª ]=+Lxì$ϦÛº7,˜:_­TNàq÷| þJî–˜ù,qzI¾½óçí§»-)ìÕ22†ëøOc]-µ¢ÎÁ/—ˆy¬,,ÈcŠÌ % ~¦îˆ-š>eŠ ÝѬöóèþ2Š:LUÀ¡¢€Gˆ8]ÿ¿¹·ÿäÉÞáÌìòÔË iuý‘d³Ï×d0É&0síËx·aûeÎXækÇA¥«?Ù*²YÚ½ÓÍÑî.ˆé¹Ü`ÏÔ EŒFšßƽHhhé]]¢u÷0n“¡ûjÙüÉ0È¢Z’@CG¯J’½Hl/<”Ux²Ñ|c‹÷ŸhÿcSéŠDPG­v·_îrŸ±0ÈôrïEU-³µýòç Ö³ t* “~¿ ;RÖÖð´…êQ´Uþ–]%Jß?ÙçæÓ{˜Y<…S²lå [AƒË¶Ñ“ æ˜`ÍGrkd*`‚dAob â=„f»gÝÎÒÉ/­o!ñÉvã[¯¾¬™†h2²ß‡TKØ ÿŸ½oohã:úþ}ŠS¡TÑÅ`BS\%‘¶i¹='N‹´ÀÖÒ.ÑJÆÔv?û;—sÝ‹$°Ó´ÏûÐÆ’vÏ™sŸ3gÎÌov^|„ý—ûGÏÛûü}¿ý÷ŸûG'püú @gíõŽv^ïïV%=¬³ ¤ª|‹6®£©„îÉ‚ÓxvíMè;îCÊ ·#Ù:u𸍩€ñg°ÁÛÎxîŸÊ™dV½ +I÷õËöɼòÕ¼$GÏ»Gû»§»nšäˆâôƒÏƒöžLPÀ§ÝW»ûûrâÓ÷V郜…ô³.½«?á*ÁŽ8F£ ![Æ$vaªño5¹H=­Ä:”Ž”#gn¡˜.™(1sAFŽ…^=î¶J£)úb²Å>›{Æ>@ÃxIJìWyZåR…j\¥ mŸJAÏ-u$,;Ê,ÌcuÃîéëc,é­·x*‹(øÛ¶¸«p²ŸÕלß. °…4´£Æ&º¡Ï–·­‹ÒnçÕƵàf¢¹ÔÝÝÅø«ÆZó«¯à`õÕ/%< ¼¸þÕWÅ‹Â'šÕyƒ¯%ó¬Òédï‘(+ìL²#,ýÁȈbäì½a_1kêr U®þ$‡±[1ZNrH1¹Û¯qW\… ùj …‚(ŠÒ××:§w;º"l&îWÁÕ& íÇC“섨bÏiþL6=õSîìvöëìd¿¥…‰u*¿u÷ÛÝWœ05óKëëg«”3' ÖÒF÷ë×§{û]%_tçy ïÑ9,zëÝ«e ùÅÒé–"áñõâx6¦×÷|`¸ô³C·’ìÆÁ%ÅhÀ3f9Ùoé:#0Û÷‰`¶ìXÇ­âàVÔ¯ŠŸ øûàÇV‘Œ{åV‘,†‹f’gtƒê!Þ ¬NIT„ÞK±ÏßÚ‡G‡{ö~ÿÕQ÷4=´N’­ò†ŸgÌ>]ßôlŸt8U jšUzÈ}Ií"ÝöéÑ >!M5º1.kìá! õa˜·iV™iY*AÕðüõDQ´”mœ3‹Óç¼ìG±õ>†ƒÔ§ËMW9#_nÉL5Utb©Ã;,AŒåü¬QUïæÓÝ?ìËqæë‚âu<##züÒ*ŽBQ‹‰ªS>5¦?IÃþ; ؆Ê*:'¢/Û(ßÆÙ•@öv°Ó?h¿éïï&{(ºü‡ÿž†ÍôÍêû#ø9¾á#0`,ùbT¬fu·ÿÞ·iìR(@ŠX›CG‘É’n³Hþ¹†¥^yËII㢰ÀñžG 3 CÏìîµwæ|Ð~¹'×ÝÓWGsÓu_ÁúßÁ+!ô¤%“ø‘_òÑþN¿}Òyµ÷ãn~">9õ»? k=ê¼õï<4j:Gûû»Ó>Ê-]á‡ï‚IŽ)©tÉ`¿rU&‘zç…AL^­ˆºW¤qŽÇG|V]ˆ%ïЧŒdGº5hI€òƒqÞ(Ob =ó%!ÚA`"‚o–!ôjÈgÂ~ ŒÐt5-Gòè¬ú„/Ê ¯¬#ø\B œ¹”’0rX%.º?vPXåÀKÈtc„Ñ .ËÕF>€Ïµ¼BG¨•FC<Ý¢Ñ|T(DP¹N§Uêtøë‹ýöK8ó'Á@/Æ^è+­ ‹³ØdŒ-¥›nmm@u0°÷”Sù¿PÎ;*P½wka¥Ûá;-¨»y¬wz«µ"¹¬óC¯¤N{¬. Ã7œùÐц}üU,K…ape=†Ep MhÎ`jÕ‚-ð*ª…þÕ"”^`CÿMòúD­/©ÁjÃ$ý±wpl<Ë3J¿èÆCô‘*›rÊÖ$Ö۽͘«èàØÑ‚–Ì.–Byu4”>_œ‚l¼£ÒCQ„z–ìÜ”Ñ<‘û¡ý\òj`;í$¡p¥Ð|-ŸvHW‚qŠý;2^Šg—ñ4˜Ê»äí}†(øú¢7?!Œd+r0ÞŒ>yèjOÀ¬F»,wXÁP0!'GUâ䣭K˜#†»Š­a¨Ê­rÜ<«ôzÅ‹ÒÙÙùùYµyvv¶ŽxK¸ñì…¨H—Ñ;Ÿƒ3P c•襳“N“Ämár³ËÈ("ÕwÖcÊ;$ÐÓv¾!ûÈ™¢‘!ëÖÚ¥–u«¡NH±¯òXµ2¥¦ú|tÅ (¨UAÉÏ’Q>+—ñY4ýÌ/•ŽÁ WÀ‘@0ÜKÆ$&ËW/zðîšÜ« aÔÇV+×°mkXs „¢4=Ù ˆL>•}tyD!ÀIÍ9Âò.#Ø…I©aË–eXs¾•ñŒ‘š‰Ò¾*H¬Mai7´ÎS`0v7î9 ª$„LƒÑŒ÷,`ÁÞì=âêXZl\|©ªîð˜N>ëÀ¤.ùø*AØÍ1}O© Oê}Y–Þßy÷é5lÔÎê¶ ^W¬³3Ýw Ç€ŒÇ•k‚ñ͹u’È”8Mc[å’ùQ†áe"-ëiSÓµT_fðaBÌcvÖŸX]Å´íÁ`6–úMœ¤I‹|õàqÚ¥éâÜô,aS"JL–n2œ-B^ˆ ÷PAËá ¦K×’7ÓœqÅR ¼($M}z6„ºÜÁ)MÆÑ45<µÊIÃ'¡Ä‘Ï2׊øU1ò.ýQÃh³Æÿ­«¢s®ãr÷! ìíP‘º>1–±âÈ ¢‘6sIÕPÏçwx7‹––o9¾Av8äü|—Ì/²þ€T':³¤½Æ"_§ê”E³šÓ§ (,ß“vÿ}é®ûœ^ÓMøÂ=guM¢÷ºhÇ®^[}œ »»ÿ¨ééöuBÁœQ.vYÖˆÒ5[îòÁ+~Gï{trÐæïžr[àËâšã!i8#ß²åÕ˜Ž„coò6V¦@ä@LÄA ÏG>ïyž˜N¼C¨äVõŽÊ*×ÝM$µÈH$mÄdÃ369C0»á}jÝæ¤g•èaŽË[oJÛ}¥çþâ$¿ˆ5üX¶q„šL½2ˆ~çø„„?B ¤@áGUöÞ¾oœ—èê þk@W²QÅ</ùÿ‹½7»Ûb­øBäÅ ÚRÀ¬ùÛír@Y•Æc//Ù$ü²ÿ>z;»Ê ¯…qÎvëphx¹»óýã'ljr˜(9ºš N5Ò,"džiÐþO5^æ¯àõE•Éн±Ì¨%*'+´T!@>© 2‰ÙЈŠã[2Òb±\ ¤\Bó„)gÊGà^šY–\ÊÂe”žŒ88áP\IÖŸ…Á¯(»@ÊÁelº"6öá5!ç¥ Ó>lØ(œ¾õïM>|aòÈ®£h哚ôÚg"_ž65X®s^‹ø&•¶<±¡ÏC„ð¦Ò þ‚â@f¹ö‡ßã«*äázÏ=‰Ž6DÙbt0ú4>g1$ç‚,kgVi¦_€l†2ÄR­Ö³¥Òsîld#ÖÆ£êl×5«8ÚiÔ‹«`ÛyÅîõÒÚv,‘¶ûúùßv6}œSùÏc>N‡»ÛyœõJ«´¾øzÁÑ!P0¬!RPhWm©yàK”%Òo“&çáÅ)g¶ê¸Ô¬¶&ÁyM$9ƒ$õô¡¤h>å[@‡F²wŽGªÄ$äƒùo4 ³'¢[dæTÔ,jÝ™†ºU¿q­3«=|H½72ë­òöy©ý{ê(T.ï'(­Š¿´Ä†Iß9B"+sÌ:hy”`„´³Rï|½`=‘ñYs"¬´ 4GE>”­6뉳¹%`¸ºÓªöÔ#ͳ ª[ŸÑ¿‹üà¬Ùè{ñìB‡ÈD;ú»Àçì\…6SÎP4emqº"§Õ5møqü‰gqù&1—L~ª™XÅRЖÐÄ÷&¸ ¦ýˆÊ­b›H÷¾ÅUTUârÜÜdVªíXÖÊÔñ³‡iøß3Nu_½L/hLiÞ§‡ÒΜ±ÄÿÓ;ÇȲe|¹{¸ ügw‡ éØ0¿Ñž¸¤ù‡‘/_*CDO nÈÓŠ-Î"+P¢Ô.ÂÛgèü8&P ;ñ¥¡ã^€¢¡Qô ~ë!p 92‘òêʰ¿ü:Cã\2à½ô¯82¨Sý©ÿ_]wHRPJ%}`Í)±ôwg#6•¢‚OmØ~ %¬ ›à™Îd4#¥kD™:¸ÿô'‘"[«Î§-ZÍ@ÁhesO RÄ¡ªÄ³Á )¯¤&)~KHUm,{LÞÌÍ”‘-K†Í˜MçµtÆ ]p-™Ýõ¡ZÒè Þ g+pàíÁn·‹@*ûG/û/vT"XB¤îcГ֓ncß•Öq+kwaÏB‰ÐM³^Xýƒ`ÉÑšØ4K^܃TÚ(0"ÂY³}*HÇ&ÂqÉ\ôY~ÙÐvAë¶¡öþ¾‹ÙUË 8µ…ÕÖ; ç¨Èá Ågq¨r˜›q4_¿¥u£þ’j™¬Î«*³×Œ¡‘˜(2v«í +qxŠ’£{¼ L:KjŽ\yZrŠ /2”e:}j–m§«ˆJ`d›ÀÒÃKÉ[GÃåݚʢOPì¬eÿ†„ lŒ¦Ÿ¬òáÑé^^ÚLל¤m] íM²"û#œÌB ‚Šp.´•®î„éìÒ¸i fârŽïå$²Ë é2L¼¶õcŒ¥Bˆ&' ïwß©æF×,⸇Q.ºýçGo*½é‹'ç;üI|÷Ç™‚,½6ZųB™Ó—Ù²C FWqZIûan+k$àFÃ{5›½•ftnã‘ULYEÓ…ÖNÿ‚ °\ê=9=àsŽ!¯ê75þ™·Qu brD‘±ó ÿˆ‰¼’J¬~sâDŽ_1°/8Ð)0’Ö‹˜‘œïÐâ~Œ[à5 õ!fàhœ!i&2d’C.ÎŽe,ûÀ„2.ª1ҋΘ±Ã±ˆ}‹%ü”‚âH<çU½2,-o2·‚—Á›÷ŒÇÕ‚A棤Ӿ¶Y+U¹8ì8 ] .p}\ £Ê¨ k³÷á(G1…¢h(Ölä:’@Êxö·Âõ Eèë­žH&fç²Þú¹uÍ|úˆßǪþ£Ð2 >;ãW”Á6Ÿ(™OÎ_ÌCùo²ócªŒÌ<Ù0÷runzÓÚ6Iy"cÒ_)i ¥'¿êÌ'"Ld­ªà¹vONŽN*½Yˆ¯ÃàŸ¨“¼å]ØEŽÏŽ«vn„vFë’Âó<âÊ>ë1ä5Ä ‡oeCäÚíÔ^~›´VL ë¯äÖÙ¼\¾\¤X™ODm¹;ù¿Ê],§˜‚Ò“=©ªÂ´ aW 7lÅŸa©¡à°gÙeØάLÂcÃèÈè]‹™¾ò@W#3H°-Š4K#0©IÂZCTE¾õ)\tËx«º‚ C¿" >&0#ØÁ‚ôÕ„uÅ,AnŒ¢˜MÔíšS‰óÊ4@T&~KÄÙ†êvKÌ×u€Æ7ÔF=àù§µÍ’Û=ôÊn<›Ph+ðB¢|x¡!Z¼ gjqó¶{3ý¤FÔ™/Y0µê¸´4Qrò¹úV…%G÷#çö§@ná2'ÕU¯æ<%H…êp–+ùìIv8Y®´Z™…ÎÅ?ê@ðTw¤#äÂYŽT³|…áj¹É¢ÜÌZË]t½1ïrØU$§pÀÃ,é²3/ ²€…òð-ò]U tç—¸xâ[22 [Wn uãD•í˜Ì ÞïýhLæAˆ¢ri,‘Ç€/TXÛÁÕ5a”>üÄo9uéäãÈ$gj;]/Šu±á¨1)&ÒiŠ’¨Ò¢–ص û°é‘ëå4å†>zŠJIJIUQ’­ÄØÌÓÜ$-è|‚Û¹¨à‡Š=£/õ$*KaÎá$Ö½ÀÀš°aìn‹Î ãb=¾I3gåù¼öÓÏj—IÂF>žD˰´K ß:-àôP‘LA: OèÕe`²åÜ&téBÊ¢ýNL'8xñ}LÁ4†Àͼ¡O²Ç³ðš\ž·èÑÛýç.’ÙeÂÊ«þàõ!pw†,Úëž:ïä7SÏ¥èËŠ§PL„Ð8&ªQg9«å‹Àœ|1“¹'8IÁ›d‚›°øH©¿*¢zÊIù©Dše}‰¾íÅ>¾ô¾ºô þ(Nýõåñ1,×)óV±\  Sïái礹ÿ‚Xúþ‹:5F¯>Ü.»ªLÉwê–8™ÞUÖbÀ^R½j‘ JÂ`ê1S@.CÄU4dª›ìm® b°°%ÞOÂïQ—{I&h÷tºÆ gÔ1†:v:ºh|_àXÞåÒ¯e:!«*º“KËYQA¤Õ;Åê«´ðTth³È5†Ô&:¿|Œ ¸ÛÌ ð&Y.KÔæ„Æ>Ní#ò-!x¾ÆƒËt†>ƒ¨æ5¦®8Ì¥u×€5´Û€1’›¸r©T¶ 6 0¢øR;î‰Õj#“Å!!^êèø’ÉÒ”ÔPÍàmÙq‚3Tr“„Ž‚ÁÓ¶äêk¹!¶Êjk,Óc¹;ÂcùŸÀ““þÁ0@eîÄò9ãœÊbóÄ' 82+C]è•y–L¨$ à´e9Œ8A< ‹ ² +WÂ)IZº*Ð"¤©¤4Ucgúm¶¼ô3$¡¢ÊÉn—ÖË®jÔy}n _;z“V û(|ãfFw)‹,šñCä•CI%-kv-ú2WÿIõÚº-#ÖËÊ(Û9v%Å'3ïš$PœÎÒ3XÈŠ$´À„ÍV6s‘±»[I¢¼»²²¢[ZéHWªÎ×_ãëÅ›7òÕË(‘çå‘|óWïçæzÙù«|; \(þô'7Å‹?ýÉM‘x­*ôpkÔ½Ÿø’™T'*•¹áÑcw^ZÎ%“¯´®¬b.p³ÐÌR5ÛÀ›Ö‹|‘ÀVžz¨ wÜÛr0Õ¶räòjnO¹M+&Èš Y0B©³±’*³¼/"H¾âaQ¥!æÿ­~^‡™¹eCÁD†|Ý}Uy)ÈÎö me•ÞË#<øÒBxXjyt=ÏHOV<8Âvú«0yyV7Éûû;”º¢È0H Á:@Á5q=\G!bšÁ #I:çaŒí‡× m†5il9“îQ°I+ý'*ì<ÿM•!ÌàÿùõÉ(ˆ2ëR.UYqU ŠüÎ ÅaIܲeÁÇ3òæØZj,×7o4Iðu‹58©ö°ŸUÝìd¾;§ÐÈôíB ÓÏ(”R' ÅgU7ûÂB;‰2;sŠì¤KìØvdy(G¡ÅáþŸéµÏ{Z¶ºsä%im¼UÀYhÇÝ*h{¢AX±†6JÈuÐj”Ãú5æµ Kqševج\NíäN—Ê™W½LÎì¼Î®ëVs%«¯éU¢³ñYÕ%®„ÔÑ1ùD{ÜÜ—ªçé2…¸ wŠp^ ð&Ÿüùâ‰JÚîÛ£ü‰J›j¢ïŽìbòËS=I,Œ“Œ…a§M´óÄ^'H‘ÏÌÐù cçøSiéÃ#Lô­C"ncXË×_W9xD:)ó³>µp™Ÿ£“‘!75°NŽ‚mnÚ‡rRN­~V`‹DפãZ¤ºdn’΢²Ýó’œt¬£Ž”25¨o–e9ÀiTypÜÂÐFCbÒßw B¯-:Â@ªºÛÊ̘²èo놅°˜4b®nàe„·ø'‚0¤7 i£ÅÚI;Ä#ÏÙc€¢^‡¥ï©Òõʺµr£\ ðlJÚ<. õ† .K®G_Ö£ ûX¢øÎÉH¹È†–‚Ÿsò"»8·d\nþRjŸ‰æ/bíëæ°ló'“BŸñ ØêÞê³Ö*ä줼þQOÖ,]QÆh?¸Ã¿-9Î02(õÃóå`º6_~ø°Ëަýœã^ZfØê“Œ‘Ë9l’ïôwÚ'?íòg.Ìîé>ÆâŽÌ¦r^ëeß“1¹ñnãhx7Cor„&îuTìít>ÀkaBÜŠïdzi0ÂïÛç™ÉvwÐèVô±? ¦s’îï±Ëóm4'Ù‘Š±¯Òü„[›:)U‰Í6…OíV|ÈÞ)ª Š6 nÀTb³ÅÎOí“lÎ$ .1ò/ZÐ ºYˆ£®x“Y–é’Œ’t9J°Â=`KG.`1mÕ‡óÛpó4¢2Ž·i1yÝ÷ýÑpØD­¨?º’ç-HÝÔÄeRÀóå¨ó(-E „¸`:¯±þ¤ÁÐõôhÃáIRé!‰ºÄ¹GÙdarƒ†¥ÂxùÞ-í ƒ¾IjU./I+Tñ¿ƾ2PGd_ÏuàBí÷ˆ¦!È_•ÄÚ5(V* ¡n }¤qy¯âñJx…”׃Æ_HTs£Á¿?¾Þ Ϙ³°i,E(¼dU ZC5UvèE ´tÓ(¬àõÓ‡ìR³Äá=üZ+¬0ãFsÕ«(ª ¤võÃÄŸÎ&¡Xö ø¶á¢•𼨄v]ƒo¬Ïõ(]†8+Ô‡÷ üUÿiTKt¢) ˜i‚¼òÐòVÐÎvÉ"aÛqö¥wÄ}EFT+}Ê.¢lÿæY™ÈÏøš-`ŠNAẺhoBJ 4o0‘²h|]ÑÉPœf¼ÜÖuMô¤ ¯K/OvENÓ šÒ|ãîäÎìèUc ¥Ã-HyƒìNÈKbÜxâ _˜2Øõ$c~[Чk`D'ÂÛ™¤’1±5–sƒéý¢iCþÇ`P@ì/ßÔ«`î²à [ýxMŽÆU0—ƒñ}¾?ìË=¢Oˆ6's¹ÕhØÏ̳l:ÃÚÐ _é•[j8VÂ}ynZ”d •±h–.šÌ2kv~åžFçáÿٺÖ¯Ãñõ¤}€›J¼‚Vµˆ@&'CèÏŠn°Ý|ªÒÜq‚ ¢FÞ0s›BMŠŒ¡0/Mÿ“‘®ÍWþò¡n¹™»Bž!eò‡•ªø $—Ýxöɱ÷ÐFÝ ¦W »ÓD Ù&{”ÀóÈÈ:µO€ ÌœãYÄæVdAÞ%J?iîï=w)Ì-2+ür "® {ìž,9vö†¥¨ÛÅÐb3³ªÖh.߯/[Tövèn†KnKÖ"ËÚ“–bÓ²Sí­C7*wÇHTaèÖ! ! ê“µºïµó.o.¨3ýá¿Ä^‚ù²-jÙ™'Vî!œŽƒã)»Ôr½Ñë=Yß8×ú}ò&f»? YÑ=l•Kw£ºþ)JîFŸðê™ÊÊSDÑ\[ŠðÖ)ÁAqöå X«ŠUùU|Óx`Ý\™«YöÇp´ø†w3ö‡UºE÷$h+Ä i%ªiHô8œÈëìƒÐ‹÷ßn±0‡G–$9“Ý%‹ä0}CìO×= Fx L¿×ìÇêÃA»sÔ}ƒa®÷~F·åþiûäåîi²?ùT£ÁÄ‘\Áßµµo·ÖêÜ ß®}äGòw¯÷çurœ_yØxJÙ¸V½³[êt,KÎ^¯ÖXŠêÇ‹ø"u•+RED¶w [R®¹B£k4®ªd •å’#X³9™\ÖÙ¥ä +ÙEqRL·ÊÔ{ÙâV‰%pÔ´aÔšðìôºLÔ€\ð•«GljN1ÿ*±Æ¹ört>Ïlû6[¼*uMQ3ä0rûÄ0ÔŒŽj+¬š¢DE¢‰ævv£T»RfX1Rß&õ{*àgey$F¥‹me,E$×÷p"šMXÓÁ‹2¡kÍ®æÐ«£rÍÑV¥í‘„!“*" C÷ñš¼?ÔDi½ÊÒ¨•c¾âñ¬ÏÎW i‡NÇ›_VÂøíá1 [öa…9Ë#{*XePL¾j!Jå}¼—áBÊ|éA]‘aq „ÃYñŒâ¼s±hsFöüïÎhZ†þ]ßJÝ‚—‰G´þ,±Hf~FñÖŸq°u”íg‰tö3DdŦ8ö„¢'ï ­êKBÅê³êOwxfh›]S>„ N½j–îÝrA.'+©ñFÆKÌ™ NN¤9i)‡ÙkÝ·Ï\Š/0`&­} ½køR€¢Qö?–Å_€¬ÙÝH'ÿŠä¢˜*&á¦h½QÊ­G9»µbýÇö¾ m\饲ô5ª±²ËwWÀ†S`QˆQ=Г¬¬¹7&¡è¨ÜeXÃf íDÄÔ/4y"¿á_ ?AF<«ô~çkgU±Vjž­7Õë[üòIRþt^vîœÆ´.†³ñ­¨¿ÒÊ9¶lñÑ r#mȇØi¯J´¬xQ@…’1ûñÄÖfïÓY°—.¬Ã`˜šäBâV{¹ºçœ¾–ií›­Í/Óà«@ñËO¥Ž:T¾3á—£&=òx·VA0ÐÁ†µOò“îs&“‚Ñ Ðƒ¶¶•ÞÁf÷U_ê§É V÷£—}Bo}Þîü­»ß‹·ÿg× â43n÷…÷ ùbCº¿°?á» 'Å|¸{¹TaÙ‰1‡ˆä8 ³j èÒX; m4¶žh-!J ‡ä¸­A½u\QÄxáÁ I%CAÊÉh©ÁËCÂË›j‰… ” WTìˆÊ¸M`Hk·‘ÕÌXÖnOâðà“– Yþ[ÿ• T¡ fý³à5§Q˜A¤]Ú;|YéÝðŰe'–¤ŽS\–üø*y¨¦]ʃ©†ˆÐý‹ Yn5®ñÅ7I¥Á:²—â¢ÛÒxúÇ?²{¶ÊfgbÜ×d®âzn˜†•±\0—GŠä•ø*~AÌv–Õþ·*^ÇÒÇMã2S`t°¬ÀOî¼û˜Ì Ë$ƒYˆ¬êÌÁaNÃ0óžÅÕKÓ,#BáÎÑ[y“ëFƒ—æ»–5÷†nEX š e~=öo= ¯çÒ€ÑB¨˜EkE„„f]="%÷˜ë:Ùí¾Þ?­ôø¹‚Ü¢_9‰`üT²t è!~ÉÀ–¯h1rNM¡ûúåËÝ®„2ÍzN(9s`eJž·“H3„@íÿ7¯{]dþº^œÄ¤#È“&[0½°~Ê]ÃnéœãÚÒ6¦= ºÄÈ%Â(œ½-C¯xˆ%Ô™!ƒ%?ÉÜÕ‰ˆÖ&ü˜’á¥Þ·Hwª¶Ó¬­Sm«}‚ÿÉÑÑiÆ~j9£'SK—KàšIMÑ«†=E1W¥§c¶nºæX¢'Vzõ:®ÝºLñÃ_¶híìü°ýÝ,hw ‡$J8#PY¨A ³L²ˆŠ<ª³L9VÕ)°º÷yí Qm0À/v,ytÈ´l”Cž2 žƒ¥ý$³AB~²_ ú«°"°§ …¨ žBÀ]1È2ŸgEÀ“:!­©ò%²ë„„VaÅÞûqµqs÷²ÓqtDµ Ò>Ôi «NvvŒ‚¾zöŒ iò…¸MC„ØU*J$&Ž0ä$+raô±\®Z˜|‚:´Ïí#ñ”O÷T}Š0xI‡>hoI'ÍsYŽä¨©B>˜Fm×ÃèSj¹™÷Ú« æ)@†“è÷if$c7gÌK¾zç,ÑlbMXé^~é ©¼éà „åîaûù>Úatþ–2çJsVZ¹"qÉñS}£>Šoå¡5µö†AŒ*”z*-¤öÐ5ħ*cB8½œøÞ[”‰±æ#š†1s@ûÞ”t-$BÛNÆsºˆ)Èxm¬× !鈄<Þ5ÉËRžÖ×–æ6‡â:ŠP“ÀßhŒm nê‡ÒµúÍíì=ÍCyVÐÁáÚÏ÷?ÄÇ&Û­ŒwމC˜ ¢¡â´:ý}¥U÷ŽàYÙ¶ÉRÞ#´’aÔNO~îï¢ Â”RµÖ35ႎ~—AØ”xé)ÿ™„Ýýõ§h©ðêøõ›þ^{kw»­§…m~@ɶ63’mmêdòâ‰xDÂ-J!Õôh0 Þo}~—ò€.îÔÞê9"1‰riïp÷ð¨,Šú8Uüœ¾Î¾õÅ·Îú£„2þ!C³²öt"l?²¿Óqm§>~õ±?ºzºqƒÛ"¾ES“µCÁœ´4|ºaR³¶%/ÃÖæ%ÓNÛžX¦ _ª9v½rZ±dÝ·6UªD­i>Ι”hn s»¾åK¬öß}júãÙ¨CùXž`†‹(A'ãç'ÃÌP8©h\Žð¨JtŸ§h_NãÄÜ\ÛÏH6J$ûœjÈIéÐížÐÄKI”0mqÁÜ{ÿíV7š·ˆç}×êÀ<>ª§ÝèsPæ H¹r’Sí¤´"­ÚÊå³µ â«[åÌÂG··JUÌ$² ‰L ¸Fß/ÎÝÇtnF\ÐËܧ´Vnî‹,¦ýÙSƒÓ/99ò dõò2à ݜ•{™¼É¬¹ìt‘œ¡Z[¦óGj±(M²t<ˆž66Þ}#¹üQ(º#q‡Ì®?A®û E$¥SRýýX¢7FDªKkΡv`EnÅÐÒϨ£<Œ:ÊaJùÕ ±b!íp “Ü@ |ÖœÀ8(&åâHk *ÒžŸ "TÖ‘öö ½­zçç5ü§ª}šÚlj˜ù&ŒÎ­BˆèѱsK—0ºq²Û¾1 @tW8»Þ#˜Øh|ÛxRþõ ë º }˜¥ÏpS¡q!­K%­©ž·†AÍ>?ÅÑÆ*þ÷I©ÿ¶Ëð&æUÌ RÇ*³ÏÁÐèĶkˆIü¶X(²×´dU·ûQýÍcR&•f¦f¹/KÍ,ûLrZ”ä …0ÐÞÆÆ:Þ:ªñìCa$ã³"ßÍ`$à+fØ0p%LE~ÅõÄ¿•t²ýƒœV¨¼”A¿²\~ÌöÏ)lk“´áÆ9k£á¸ãåx'ežíЇ5}ºscÎe™¬ëcòhð6ne)Ÿ´>ÜV¯9×ËíÌQÖÅi[Xˆn¥}R=ŠÞ-ñ1dWû¤åM>ɯ}^ýƒÉìSBßÈA´×•žQÚ´MRzIEC§~Az2ÄwÐ%df‰–òU´ÅÊOêǤÒ &}oÚ§x+¤+L>•^¢æ—@bòM_x{ò":u³yÎ(V¾HÒ£?Ü·ÊèeYRMN¸™ý`gÍr]+Kz6ëiâÚuLmODÝÿ•\8H†¡°Æ3i:¥{£ºÌná,q]Ïd r j¤<®­6;­(¬äÖnŪXègUÌ,âÔý^ÆúKÒ$ðÔ|‹ã¤ Åî%žð)å!åÜ(S¸}ÍE˜;wS”6YY 60ëœ&lÀ?¼:…ý´(²¢zìB bÍ»„}/ŽƒëPyƒ£=Ƙ¶"_)ì§ÊzÕÄ#˜æ³em†Ô®@¤²QUO=/²rœz9¹uŠUyZR¿ì‡ÃS0zg Cð¡žC›kJª¶Ñ 9Ì5S’v“Ãh§8Ò犛û[àóUŠG¥ãÈ‹yœd@~‚ö|`«„-;…"»Õ<žÚÞÐÓ(X°|ùÖœ#Ó}Ï-3C¥í)lÄGinLÖGäò´ÝàNþtöáImýì“Øþc)9Übv¬²IôÐ@ü|MõôYc[¤²ý1•­”‘j»Lf2çãŸÏ8¾×¶¼Ûr²a<ù ¼j¨­ÔÅJ%Ó®„èX«Bu¨[·³Ò÷ ¾Zt^v*eÒVµ'x=æ¡’«ÖÃyfd}Üðrá¯h>¤SÞjþ°’‰ø©(ua zH‚VM8BÈŒ$wôBiO4Ã(säÇ$uÊš1´èÂQ:(”ïo%L¸Jw ¬_Rq „©?$T6Ðæ½L„]’›Â( ܰX ]§þ7‰\jD9ygß+—6ìaR<úâÑÛÈÆ¿|úÞ[½ß2ï·\ëøÄ.Cè×®Ž}{ÝÞßkw]lçä¾$2·«/#.ÊÂNûK "õ÷ÛIsv~ç^.sßwšõoßõsÊÒd°!gîñ)lÙÌ ž8²N1›äš6›J{´¤y•ìÙß’S¹,!­ä®ñUѦÈ6è Ä „±1óR±ZµÆ3µ¬çC9Ì0­›f…"Í Ë ©ñäz.ß3úËHg.gtÀ­ é‚Ë=„kn®¸™Å5\ÕâšÎ]‚g&Ö´ÈXè_‚_¦Š1¾ð,uÐ~Óßß=,¬&Ù•›ËJ™xßiîuÚûýWG]¥k•½zpn½÷Áx6#?¼J§$²Ò@ëi'—‡äf#lË¿‘µoHà9·$w™"C­'6’gï™VûygÇÄÁ¤S¯>øãaÿq}{+ôtOI±k|gÆ``zGg·èU3ÞÀaHÄáÌgo3I!)IU°¼ni|Ÿðb7ž}¡¼2z5› íž•å^6Ô>M ßU #—q0UluѤiÈ|:T/¾ç¸ú:šëh¢x?Gþ;2§áõõgVë÷ר1þ;†¡¹Ã/ÿz0°§ÑOAøç÷M”KL{q¡â0°Ë1p·>ÿè¤=õÞúªÅÜ©ß ùÎýÅͼ×$…>"!49ÀÐŪÙ?Á¤cORØ((BG ŸÐr9Þ:!O½m£k23¢¥áf•”gÏ"¿ÿé‡EâM3Âuóß‘?¹Ž–ë¿#‰¨ºRÂéŒâ*«ÆŠŠ¤ ÝËãf†sã›­·UÕŒ=ŽKVƒ÷Ór,þó·³pº­ÝÉÉ»™P‘DTÀRXYª+G#å¶h"çáþ ü16¿]ÿ󆨀¨pxÚÜø[óÍquÞÀÔöL“ß”õƒàð”¹Æ”|6Å(Bå~0öIH¡¨©3ZœcMîRž7®½(¶‹l㣣®ˆá[ n¦Í*C5i› Ƈ6S¤ ;ßt­ ç9}kÖç!õ5g©eÅoï¶÷¡"*‹øúSùÍÕN¯r”=_Ï›D3´ ùýôÛ­çÝÅÄö=L@\Þâ쾚M$▿ͯú¡âƒ©+·d·èÂNšvÂÂðHtÁ×»#›:Ú<´„DžœR´ð”Mfë›ožn­¬Âø‘Ga-(€è%æ.R±eÖ!ùèzW>ìjÿ^2gl/€ÛL”ÙCâ¥8kŠÍ‹Gg^O/¬YC¼:x¯Çÿ'_¼ ñÞ 1$`ÛÝØÚXßܤùª2Ø–X‹ÕQ!||h}uÞ¾öç­­'ßZ5ˆâ köùöZ²×3°£nsáŠp_iÂ;“†xû¹Ø}ûÖÇfˆcÔoÂfÉl,±O3M|6 pS›dkIÁÄŽ§ “—‚Œô¥LfTŸ·=H³Žõ?̶6bOíÆjÏEãS¼÷¢ Ù.>FãCW³š¡C¢[Xœ°½)Îò½”ɚǓÀíY9WÆØzúí&SÉ_ºÔò,/7…¨ÿŠâÙ §.l{œµõµjîîŸg¼//§k·Ü†=ÙØ|òÄÊtCôADß¼Û¢oðh³±1»S³ï-³€ÖÙÅ gì¢éOMlaspÕ6ñŠÈO9ű)%¡â2üˆÎù*‡ô‘+ÇÍÆZ¯·"ÎÏ›Íò’,ééÆŸ¶¾MuÖÜNº¨\Cã™@6]Ôż–eÒ)j'vü£ÄÏÔ2šKf[ª{–bƒŸÉ­¾](GX†(˜Na9]×(ÃËÛ ‚ßш$Ì ¥XEQH¬ÿM¢ X.|Îú$ •ƒÂ×â©f]lˆ§bÒ-ñ'ñí3¶,7}+ÏZ%óÝú*SÕæ"ù·Jè³^ú BÓO2Ä‹o>}ÒÕÞ»rN RBÅÇF;ÒòhdŒ¥øÊâ*u—&•8vÒM n¼Ñ•’½J­‰ä$¦kRŒYQ†]*£zìî/z>p}ß\øá;¥4Ë욢³h9`†ü#ßììLÏħ¤uÌv•—Š^ÿOò ˆµæ†8xn¸¢ä®ÇEe &g ¾ëŸ3Ä(™¢ƒ9A„¦’$gÓXB0ÑÞÑXbÉ8ýQÛ¢ØXã`Uª¦V=u5Ú,à×!†ÄóVƒ…ƒ+}—õ‘³óõ×€ ïPu ézŒ—ï`nŒAü„ݦŠå ¢Ÿj1¢›´Œ63Vá`)Ö娺7ÕAIèˆG'*/Šm"%9’x–é¡|ž´q‘â £w ^jG¶|‘³SW-\*+qsƒkvµ³)$ÌzËÜ€o¶:ÉSºï¥™AB3¶X“GhBs‘†L$uf_B‘—QŠuññj·½³{ÒßÙÑ9\ÁÒNíyò hÞpt57³ÿƒD{‡ý×;»ú–Á ¤îÔA‡Ö<ùžïö»»û/DEާ콨Ÿž¼Þ­ ÷wý§úënçèd7ózÿLúíý®C srÔíÖù†hï0»éa×6‰ÐŸnk²®bœ¾uàÜ”—-Æå%³i\5b» H묖âŽf!žgÂÖ“gü;Œú3'~k]=A[`ùlƒ³©[e›B!+C^¼0n aÖôVé/¯”mOΪñã‡Ð#qã¦c m{…fþÔÜþ+“î/r}WX…m6¸*X¯âé0ˆðæZâät§ÿrÿèy{‡Å/\ˆ;ûüteÅIB=´ŠâæÞÙ·òfçv’¨ÜÙIŸPª²ªys –c·þwtر3î·ÿþsÿè¤xô“r›s´Ç÷ÒÑ!° ¸È²’–Ò65ÄZûÑT!¦áÔ'ø&Ý+½ì;•δ^÷ž!1‡ˆ“Îqê"k7ŸR2¥M˪”C+ŸZ2¥K-?ß+ vê‡þšž ¸^ëWï‚XòíÖM0úd/ƒvsNÈ0R9T£î1è:[ÞÄ·QÈ+²'ƒ·²{&lÿ<„:—ôû/_wú}<»T*ý³ÕOé’T=:Ø;„ööÅwø¢JPH:ñwøˆ#…h»T©]o bH¯~¿_©˜öUŠò<^¬V«ÏtW8™uŒÍ c`ކö-6OcЕ¨ U>+~(¨i$*ÃFC —µ"Uj/Ǿ_ƒ×ON64ÛR å8_{ Úóõéidaø?ydÅ¢MˆêrÅ5ûq–(â^²&r<\¶øƒ…Eà ÌäÎã–‘ œç}œts_öÙ˜]§1¢ Hç’8ØOÐ7 г-Í}}IáPÁ˜}86õåÁ*ƒ`êq,%--ª¾v»½{º‘¼~s ܇÷nx^ν^þXLÁ±%§èHb8ÂDC%i¿×);ï ïÚ× @P6-¶ÃEvºÝ¦â0Ÿ ÈçT,£Rõæìe4å~4|\ßKÇ#n){ s39ÐÒtrMÂû-¼úÖ¡¯ùôøCŒ‘&?À+½`| "s€ð×LGÆ!-Ÿ€I¦®›8–H%IHlTjþN÷(nŒ%G×ÏUuñ™›DnFÆV’nd)ÁîM”êh"²ÒÛAfjvÎL!Â’4¤ì¡¬’"@ZÖÁ-ž œºˆ3—”|d aÄˈÂСš‘è.’—#]BåI+¦VYB‹Ùþ ¹%-åQ §Ö–61ˆS9¨ZBײäêpÂ_“îÜÀj™ó2¢´GB_›»I0õ-ãâˆ{‡ó ˜ý.²œ¨‚ ´y‹qk2ÝO½Mûª:>ZÍä5œ\£ÐH*žùzéDõ‚ö9ý…ÊØAh(¤9¤þø 2«$Ç– P`Þ;h…rÍ[[y!iüÔ>³B¹Ô锣ÖX™„Õ2‰#å1ZDÖÿQ¦ëûK”ͺäÝÂQÃ}„õkRÿf½ƒÚ§ ›Ìk `t€Þw¾D3¡åCvÕ ók]1e®y³ÌÒ'mæÑó¿îìd,ôä’´R+£ž$.‡5ìLý.ô1«Aj3[Ìf:ý\[ƒ ù¥#›p‹^™øKÝúÎQ׌…¥®"L1–SIæ4Ò&™:DI·Çwr™uƒÞ•)Kv¾$hŽîŠ'çV o‚¦£€¢ÒÂÓlmT;))Ç´£EœREa !×lޏ8•£hÓŸuê†RYÿõáÿ¼>¢ØF&IMëðdÌÖ"žvØ–A…Z›]ÖMå$N´ a0c¡tPPDHµgŸ=ÃNô¯Ú';£]†“„ñØà½Xƒ‰¥j‘Zzç+*ÊXjâ#¯1¦Ç]“ý9X¡«^ê¡HÎÕ{Eˆ¸(ä1†É˜O[®{ЛÓú4ª_úuCC›¯®.î‡DœîX˜}/ãþ¾3Z\ñ}YMKIåP>š¡O½šù†rѤå~µoŒôÑýŠæff¸ô½hrÑšBâåJÆcb¼ï욪JF˜ø¾nwÄ@u2U –ºÜɼ¨6°­+5î IQcAv!€{5qš\‹tÂ|¦} T˜«â…G(¿4]=¶d‰1tò•à+HÛ—iQ1Ž„ªX3UÔâ¸/ª¦pÄ+I9††ùÃ¥êú?ŽyYfÖ $"ôJS²’ƒ9—è?Ç>ûU‚•£ßÖÊþL,Ý ­PØÖ>–³s80˜„6 /–¤¬Ô¹ªØÝ—'»³Mh•PÓ¡/š_©K݉xK' !·¥…CÒÒÞ€hòWD?&OŽ¢„UEt˜'¢Å,…ÁÅ´ëG ù:=ªýËÙuÑ!àdÎÍ8 ùÄXL‹ü÷­Ošh¾Ø{s°+ê8×PQJ‡Î‰ïؤ&´™PŒ6#øñÈ£hhÜRa4ft¤£HI·á½ºÑÌî›®uá™n¾° i4N{†‹[^Òœ .…â¨*¨  ˆ”^š9–Bkt3»‹z­ÔèÝãöÉnÿàõáK4y¯›HÑ•þÈ!€…)(éx^û}âSˆe[©âÌWV­––8 GY8.ÍÞj&aøDQ1—W!•Î…,Ož4Ü¥yïSÈÕ¾Ð1W ™RœKFu£ºi­’ñ¥[V®†¾`p&GIŠ}¤Hrbï=4÷¦Ûð¨zoÛEmº,}¥èF…çâ˜è ¢àõA¥ùÔ¬iàx÷/vÛ§¯a¯ËN™Çí•ÞÄ•ª¤¡˜†zs{ÆH!w±’7»”C–Q6C¦0R÷ß½E`€V¹ù‹Þ\·›µæþ Ld=IóS–˜êÌâ’`Ad9ïËý¾ïÿÚ*Ç[g•^¯]ÿ»WÿçùùöYõãÙúÇëDRyš›:‘¬%CÌeæz]Ïqte]z‰š¦*M¢‹NÙ4k5c§•Í">,%*qQ°Ì‡’Årë×ΞÙVѸe’ü¯oÅgEv˜ƒC¤t³aħKVÍËM™ož02ŒV;(¤¥@›Â~ƒzw¢¯³‰JÐð°Q«‚З4¼—6dE œ£ Ô]HCܧGDˆä§²„Ù„YX¡ªõÖ»Wþb$öÞE“‘Š¢‹ÙàtºÔgÅêÊ^bˆ¡zHÛ1gŒŸ¼ÍxY´˜ã3fŽ)qôÑ4a”hÅvq ·ON°„¢U‚œu«âèmM„l™ÍŠ"9Ð5Kª‚š$­¸¦4ñÔ¿…¤ò&3øU’ž†Pª` b·ñÅ•<°6R‡<ßö³ÚÆo)?¬BÔŠµš´Œá«Š¥m"åò Lõ(¶T± |Uåã€*±—Oç1#r oÃ?$4ŽðÍŽÊvcôL/0h–Gªsœ¤Æ˜Nðö!cÍz4{*ÀãÄfcã{½‰Ð«h-ÒÚ–½<‹¼@‹Íg¢ˆÌ©Øl˜oêáZŠZÞó&¼ÐÓÍéûÔlÁ«‹E«îK]@f 5Ü„u9ÁóUfLV!…â‘7AˆJÎK1·y(L:Ïç×"³â¥dåKT±h¡‡aÑrÏ¡Z”ûA¹ð|÷åÞ¡øpÒÅ혗xAßšÏÂâ³Oä”ù¯"R=ŸÉ DG€OžÉÆÛÚ¾ ׿@|'Øí9¨×«Ò³íRJôÕ±¬Ñ?ŪãÈoZøÆ~eJÿúkå1ö‰õ’& æ7•„ZÚùíæÀFÇåð#ãð—"iÊ­×­dûÿýTÐÅcÔPt¯Äß )õzüâüªï$v^b¥×1±U;Hÿ©Ì\©ýÓß´-¶waÄ…É$R ò€‹2,°av¶›Ã(nÒvDÙ¥¯*´…—Xs“åd™‡m. ŸGî[›™²Ï…Ã3pºÿ|ÄFÏ÷7ºÇJ©KªØDM¨læ Z¼6e?¥³O7œr»gø“•1Ö þ,\G=.Ä7ÿý”c—À¡ RÈ õB߸?ðœ„ô¬;ûgJc¬Ýû0¦l…ýéý-†Äf¡ü2Xܦ£F›5Å‚êªáhAge3H Sí*x¯ ÕªbÔø²+NáYŒ®vÁÂ(·¬ÎO4Ðke“íaÏžb°'NUzD§U!Åð2É¿šêËGk— +‡Ä›Bý¾²{Þß{~Ò>ù¹¯î*_Çþ¤®”ZÐ¥uB€SÊlîð&6gÆ Þ?¥Ñé}ŠÆIžª¤$£ ˜á¬É%ò+Ê !B:\×·€kÙ¦§`¹$ç`iâ#¢_b;š¼–°àÙŒ‰P©FsgÖ±3Ù{#ž’—;ÈŲâ„Å—d‹q§ô6„éùàÖøMåµ;ò{Ì­(QÁš¡ô[¯·Yÿóùù—í½ä<%[grГŒi˦;jë¼­M¶lÁ±ÜÎÜ»BìÁoŒÁõ^{‹±í:xܳ^ë-G”KŒôŽ3Ç7Ž(±¢t9»ÅnÝhüù›Æûôôh=½!a„Mä>ôå„cDc ¸“ Yˆ@ÆPAù¨•A#ì1Z±’‡ªÆ0ô«2e¡W­‚ŵúJ]Ë‹qI \>–嚺°¥Ki`žÎ¡I{1Ã(«mI¼óGÑ-¡7Ç¡w §=ÖòbçÀ&QÀ£§' £PLn–BÀ,ÞD¹ >½Þ“uØÈ_ ­ÿ‚yõAÆ7El ×aÃzA`¥4&ÄŸÿT-“ã“!…ˆý€qʈ#û"êðÂF]ƒióSn³V°¾dúUñš±öxà_%•ëÀPc|é#J-ƒSª‹3ºóàå£&–4,ª_zˆLh±%t“qïUx6œ°â§3C§f6‘=;ÎØËhz£L†zûv/¹=Ýü×kT⬢TõΗxRi¥ªCÁáUŒ8‰·;Œmdu·FBõ",eŸÀé’ݺd˜2´¡R;ÕfE¼*„AV¾õ*äÎ×!ô °¢°„$ 4¸ƒµ lTÜúºÉ€å­v‚¡Zy‚ƒpkŒFªÕ8JYc¡¢=Š#RÈ-IÈöCe±åd†#dnŠ%pŸ6—``õËÉTŒÔ’//Õ)¦Ý?‘åB½Ž½[‡ÅX窿›liÕ%§‘²iƒôùÓOƒ?sH]›K´´‚æ4~¤©¯#žÕšu¥ ,@²†TÖš©q覉0Òt”ª›´r“4„d©®Åådp—` åÞiH\Ó»`³ªòtûmk³ÊÅ Œè ³ÚáÌï>ÏïZ ¿C½úrmk^` -‰~ŒQë¡ç €ƒH_á@ÒFBR4SŽ*ÀFf7ıÂî”ú@Ôû¥K3ûºC¨| …‘ Þ)`q“«ÝÏ\Í0š<´½[\ùÿijr’‰¥Ü»ç¡2vÈ,”5¢kcHý¬õ’mÇJÓS@õj…·TÓá²Aw‰I•¦Ðø öÇwxT„†½Çõ`Þ{dÄï#ËnG ›ÝÂb_áûk" £¯(•ëì*Òîê1h†|¹XNMJ Z,Àa@Obw°¾Èxç v¼×«œó4~ìUÏÍ(üDWÐpPfæÅÖ†‰ë)ÙZç ”a|4ByÃÒFŠ*‚[}'ù!} õrÏ_ø÷ð³‘Õ—¸_ÕÖ°/¯ÐF_o_Ù½XT½H½W9WÔUtOÞ¨*z·øÈù²p&ÐpI7 $\Ý#lƒÔÛb"-sy0:1“xžºÃD R·gjá£pTÙ‚ÑV°»¾LOÕ²&çoØ}ÐN–|%Ö¡*FíÉ 1\†Gª7wØÒcCë±L´0êG«XÂŒžÿ‹l*èòØy±(Ѝ&²óþ«¤ÈËš£Nà AÉÍßçh5 l+á“A*Á$¦ü—1b#àß[Yé,Û6x¬-_BÙꯄN®Œ %äK {l)ns_>» tbE•üœn eSŠÙÕ)’‚!¤FP©p™ŒÙ¥e> 1¿ÃÂcVï¬;Ø,»ÄJªýV\ë räE‹’%ÿp˜%ÁÑ‘áA«gøp¤×jæ’ãÇ©„™öüàÑ (‡P>ûÐÜ#sx.ï¨ †f‰òmÐþa¿‹®Lº%ÙS=Žªó–lf·Í]QCÅòôb·Vwbå/\ìž\ëXÃÀ'»¾V¬dëo¥&†T¨VÐ K?5¸±È‹bþí@™gt)°Î_g ŽoóÚ3«'÷ª£ð¤‰Ó È6Þµ&Ê–,UØû)·ªòÉ=®¨ß ɪ¡ÈJUå8‚¨&˜Å¬°,H­#yJgœºÂ1Š}סRÎÛŒà†i”Ug6CòatÓxY—ÛCÒ§§kÆÍ›Þ˜^v:µÒ`ÐGݪTv¬¦­¡ ‹92”mXðÎþ¾ À .Ux–U›†œA•^RÌ*dË^X7©h]èjž•ðÁÅ¿”D;"Aø¢D–±ìØS·m°D†_ÏJšþ žñýÌ™:ˆíŠäù¬Ä® øGÌeé„ÊÐ_ ™°Hvö®ßªg*©–Ó‚¢L©Å;™ƒAF¼¯ßç%° ¢°ú%)Tâwƒ3c¿ƒQÀ‰Âdî$JHû?+}¯,o®‚²¶¤ôF£¼AÁQ˜?4¤ÔKT—ÑH½¢Q Dò¦5ûx”Wè`“ApÓ-(Cвàµãè’Ñâ$óô"zɵ!z±m>Úö6`³|!SIîô÷zóóf­JÍîál –=6Æé©zä2èRÞ+ÍR›Àu¼Û ¨Y¥à›s•p‚ðåO¦£lÅ"õì´y¼Ïë§šÄ4Måð§5ˆ·w Ç0‹Á-ÊÛ»ÏÉìCFRûSB{`SÁ^‹]<êFšUziVtì(–m÷9[Gý†c±p‹ Þ¶Ö¢ZMµê¢É¬lÚ'hÏà*n•ö^tåcøÖ*?S+^µÁ+ºãIc"qa–’EN¿Xû°½#Ú†v`Ó1¡¥I _y¡ çÛÆSOïG|»¨ípteyH£T6HM€½ãÍfG±Ú_Q0¸ dÂ㟯þE+ì1 ^—®;BÇËéàŠ^Çä|Ðý¹Ëíl,(m$˜—¢h/©gðÇ®ü[œá)É«ÿ³]ÿûùùÙYuû£hž±‡§øö¤ò…»†ÒÝÔ¶¨÷äXcç BÅöÄîsRj2쀀—ÞxÙx°+a$íëÿPeì> ¨I`̵·¦/ Æwá–ksÐD<Ë“ö¿Ö·ù!ÚÏïXHHSº^—TX§·žÈ­™7J©`—©Û¼I`ù¿ä»>¤½×r+a­s„â\böاü¬7¨ÿ³}Œ,8œ„È´*C¸Ž# æ¬îS=ŒCŽÂ¹ô9%ßÔÆâÕºÔB±ø±ír’³òeÊX0ÚêH: osX&à Ù*bb;IOÃúȃ×|š†{ŠÂ†¨øë†(K£jRŒñ¾½¨ÖI1!¡(Håÿ;||‰ÃÇ…@O³e$ø•’’”„ÔfO7”ÄÝU“…’ËçÈEFA©Í¥$;ËÃK¯¯ ã¢IøiÝ`·¥–­ÿåÕRîXš3*~rãÝÆÑðžú+W'‡MŠI¥ÉV7õoÈÁ¤ÎxºÙXo¬'Á“Åõ—ÓbQõÙdmÅfcK üÊš}±n²îo¼àíìwÙHr¥i„K¿|ò,þoÜs’’È‚É1W¸Œ¢ió&ûM¾d‰€žò™Ìz„¦þX‰ ¹3ÆþvöþϸðËúým]nƒ/É@^Ù(;A\•i‚ëߦt+C¼Û᜘ÅUP®:´[yËŒ´:ó/ž…Q¼ü\Ê2â@?4ÍZ,9P[)ÏY%ù’µ¾î^ÌH®Uò-A(Añuùá; CðXd(”ße—|Ì©8,¡uÞ«ã×oúèÞ×?8ÚÙMÒå_S«»œ‰@É•…³ŸT3ÖP‚,‹6F)³d}¶6³ê³µùÐ H—G ïæöÖ[Ë›°£Ïœ°£%&,LF¨TáL|6¹óE÷¤úÿuJ/1/n½'}51ƒØ~X,,˜¹gF[&˜3#1ìÏ0‚áüšpU$r)ëØ=.91þkÆÔUÞ¼:®¿~ƒ"G,ÖØÑiMÄ£èÎ~3žÈ) ô|£ÉÈ7ß|S|ÖK²e$¡Ú—©0t–ó‚ÅJ™ 04™«ŽÞ4sD3tvSäÔë>–Ù‚r÷&àOÐüéïæ þ_!—%Õy{Üoâiã½´AZ•ãÝßúì.ehµH ›+yPoPÞÂ/[ø%)hÝJ¥NæIÞJ⎴~aݾ¬dÇʤ!0 ú# †¼²ò…¦Í {B»ä°…•«ÀYvKN¯‡õ¿eB¦SäMÖŒaÔ#ï8U«Òâ™E_S›ÓÛßÁ[gmÆÖo2æ'ZG¡ru…”ñ]0Ü0>ëþÏŒúÓkEøW?®ÕÇx*Þ¸ŒÇÁ->µ~Š¢¥±HV Ÿ½ë`ÐzºQ¿ ¦jÚÕC¦ºäœ|ሮ®â/kôWÿÄ4æ&̺÷ >²e¦p8‰‚azCD`¼aâ÷¤ÚEÄmUCã4>²Í÷›­ð![YÒXø3w'im'ãz¢ú: ·°Qîm …Ð ü[vL.pˆ:‚0'ˆ…6ÌXè;ÃX ÎþŠÃàÚ'ÙÂZÈ™W[¸BþͲÕN„ƒ‰NOCQ'8I¢:&㣞~x5΋À0Ê ŠÒ*×÷-Ëlžü+Õüжkx;h‚D¡¦7Lå·kxçP‡-`,Û8Ád‹Õ3ø÷ÿd¹Ï·™¯‡2›ŸÏ‚ͬ‡BfS”àGC:ÜâFÀóѺvNû'¯%Q˜êÇö~E¢šS ±0¡Ò&燣§7Üú–ìÞª($§|Ñ$œ¼»Që,J.0¦ûÈ‹g…•ì¸éK/š³"ŸIÛ ÷Üß{±»ße”çýöáË> rJVõÚ]HZé‰JIb3£… ÉÆ!l}˜)UÇ\ÓÄI@IcMö…?‚£K/îsŠ| oóÙ«>·€žó•ïò¥…5øoãÙ«boHçiÆ´%­a<¨JÈ"Äz× ÙšæÖN. ” ÆeÁ\Øé‹÷f œq‡ÂW `»ð²VA%5`¢Åx²¦;ƃX•°%B¡€‰q4u­Ð•äœÑÙ1oÀq&([Ùð–CQ#êïÔû¥YF8%<ƒ©xᣉg.Že•TµµY#jã"K‰ð}©úª™ÞT£é! Áw¡y)2øK<Ò]ÏP/qyO„Øk’¬‡|¡BÑgÃÁh6DO…maó¬›hõüé iYJ[˜ #âÆ¯uAp¨Í_$aÑß;Tb²¹½ª¿{FÑ|¿r×kâ¬W:ߨVŸ‰ø-Èê-ôWûDáóø¨*mw1Ý ¾}*‹¿$kéZü¬"Ôþ³æ/½q¾vs7ðnñ[sø,nö¶k+çh&ß[½_Zçk%HÊß!±¯ŠMøs?ŠéD”ϲ€ÿ],Òç%€2KV§iûÒáÍžŠ†;'6é •>GmĤgKéŸ"`$Tk0'úíà­°C'š{*¿ü!*TÇÅ–‡9ו’€»œDo}ªp0µ¥Ã¿Æ<™ÙÄ’ëSg¡ä2zR—®ì¤¬‚8åŒ=ÇËK¹Ø £ÒÕë² êÜ„š '†VVª$ÇÀ$‡*ÖWÁ —S:hX“û#OÖVØÿ ÉÒ䢡P‚]èOQlKÉe¼¦‚éMFý>…ý~Øœz•ù Èhùƭƶl•îÄCú¼»¼§ç·ªéI}áò_£+ÎiÚŽ®úÜ*ºÅùÜÙ‚SuèßÅQ¼õ†–úpÿ³{ ;c :ˆ Ö 3Lààáÿ²CÏo§ŠNNïÑzÏb{x<•&r ÚL‚ë|¸ÄÕgÞ°hñ㟢x±$¼°ï“Óãª9M†=­×ß“>–~™ÅÅʵ?Ë³ì »)S€‹nsÃD¹D£á‘‘¿ ZŠVõ:ÊØ·&rMLào ɦ / v 4ªƒïõD¶ªå¼`5ì»V©ÂþzüÌ ‘‡!œëUNšÔ#í:8˜A©—¢^ªT¾…)Wú°úîSµÊ™¢/³ÊlaéÝEbigN*ƒÓ€þuy(ë^ŠúÑX™»Ó"$“Ç"µ?ú2ú~õºàþÍðPXÒébi—‹‡z{/ðõþ"žÞõóf/ïGº„Ìéñ¤;sž«§¸SÀç¦üü&½_ÀÓå·çÿÐ À 5óoo,Ô i=bü½ãÛÑ$†çy+Z4¡L&ñ‹Go2”˜0y—+JMýºéß@L[pX…}aH‡î!¤HË”‘c’bŠ2ù5s¯¯ßksT”Þ6ó¥ºßGLÂ)îODÀYØÍIËBvm"´è˜œ›$H#‚®ò5¤ûdj™Ì2ŸÌ2E§¹SNáY'ÕE¤¨«xÿG×hì0»Fl ž’‘K]‡+Œ“àvŠ¡SF1ÚðóIc6ñûä|è0§çŒÚ(ð-S 1Ÿ1OŒgá5®g¬{¿é"9ròŽaÓbRŸ‹ ð0ù¥# Pº¬"VŠC Ñ=³kÔͬš½óF3tÔv‡QôD¯ÈðªŠõpßd,T¤ô …"ÏŸôøv]™>ý¨’‰;Ø„|®X¬|’ 5”kªFQB„ÈÑT·Ép€ÉMؘBÇŒNáV+±á£'ª.;‘‰Z­¦Š  ‡a$âﳉJ./):Ô<í.騳¤ Ù;…&´ŸŽ…Eï“™-n¥òŠ^×6¸×‘¬h¨!JQrØ ¤•¤´,… £7«Ë÷b³_sm€ä´VS²eÊ’îÁ‘u "'šè½`Ü''C4Hå+§@‰Ä.ëÌXߤ"FQ:ª^ Q–Q¸(ÞQú5ù+ž’Ú†"ô°[Fy‰lh´¬ËTô®@ÇЮ-ÿ<ÝçQ²å²Â§7Ìi†úN† S3k(ƒ+‰_¢Ù”®;¦O”é¦äyìOÆAL3žÜ¦´¿Ó)(»7¥nW)k•TyIÍ>ÛPEuØ^‹àá0 ÐF¬Iá%¢|eáªÑ¢Ó/_Œ¥Ë¢k!NHÇÌõÔÄuŠ®èŒ¡¼Òð‚ÁíX­ªk¶ƒØ`/hÄ[åÕÄ£mVî,H —猣,Q쌛è.LO‘´`ì,ûŸn|Ú t’Êàð—˜Á™ógFžÀ’ì\´\â—mÖlâòd§ˆüM ˜'>8Øñ§0BvÄÜÕ"£¬ŒMÙ)q÷ýí(Ù{? pò ÑhjÂj»<¯®’A^Ç}”oûcà£Eê])šÌ¢ˆî BXä&þµÿ¾u1¡°2i"E±-lg•ÆÚYµx„¬dµ “ ¡#ÞdÛm@äܳÌF‰ +¼®øHyE‰V­Û TïbV0^̱ìƒÊº©øË_ ì½ëßýq£PX[[?yŠ'ªB«Ð^®vV‰WÇ%äÒ)i¤F­ÂNpÀ5$g:q2ER€ÔL­A4NYÄ# zV (‹nâl!ŸÉ ¡*Dq:gƒ­™Ü@Az0k¡™RqeõçM‰Š j/kU<?eQ 䫎‰HŦj§ låtYI‚&†1žDpFC•qÑC5ñu Þl=ÇÉÕþQÊÙð)¤œ¨MÏ»ÆØYá°I§‰Æåìº.«öÃu8kD“k>‘ÂLीütE{nZp©—Ðeo ú‘D^Î` î*py²Ñ]Á^°h¹8k^?6üÃÕ~™Õ‚Ô`» Â¨Š WbЙ”àµ"z¯¥té¿÷ÆSÜ?„YN¬ÜKÿožiè‰1yCUBr3FñàhćŒíBûu¿½¿×î’£OzßÙûy•¶oðÿØûö‡¶lÿŸá¯˜´¶‰mylK.mÁ@­\Lšìbê[mlÉ•ì›Çßþ=™ÑèeË@Úî~›{·€4:ó>sæ<>‡ÔûµõúÂ~¾†Åè°¶/\8xn7©`$äTcR JJR).ØIùΟžÓŸx†|Bu d’)+-„3—©Ô@|æ¬Ç ç/qnÓŸ•EÓ_2sIEk'¶¶âU™TfÛŠ4Ű¢DË|“mðÿ±ÅÁ£ ž4wcƒ¯^!ÓýTF¬`˜&ó½þÊ÷`CŒHâXÃó“½ÿ{}p‘eTÖi4´h¾kl4¶›—Ç­ÓEv^@T&SÐlíM{kˆ¡É÷ÔBôÂêìl7~n5·[/¹ ¶eûäEçÍÁéËòð²Ú §äúíVçå^óU§uzB¢¬ÌÛ­ -œá ³ÁgbOüô?›?IÕà–çÿ´ùÃO:êîÌÔª#e8Ð)=œa££°8YÜ|ìù²ù°æpm zÓUæK¢Ò.ØËnWÔ(ú§†ŸÖÈášzIië#‰8S”ç ³âG/ãŒÇœØL·R[©™i (Ž86“6'iëÚ ‘Ãá~< <]7Á•)äDô½êâ»29+§[ŽA‰ß>Õ>¨¥öÚúÓÒ»°CAïb¶~î˜üÔÈUÝåÛûEè&cGÉì|ÙÇ ÁÂeEþ¡,•pDí,„Ò*g>“ùÏVÛõv}5JèØ°a"N òÀØfE1£'Ëé.)PsùÀR‰ÖÂo0›À7«ßD0é0ÂÀq“hßo̸*ÛÉ«‘Äø…D­Š†¬Ó ¿‰H@Í-ÝH°±Öæ. ûM–Ô‘ŒépaYjùôQñOÀ>2EpرCQI¨âÃ(sN… K¾›o9ZæRPôti@ùB$U© èKÐvÆ›:<±7wáÄôØ^T-gPÈèž¹½˜kœ'Ex!ͤ± œy7ë&^©c‡YÓ8ºŠÝdS·:|ÿUntÑjü”ÿ6ŠDνÿ5£‹_bY)H±äŽ`€a-¸Šgƒä|Pê©$9¨¬Õ¤5 ª)¡ØnF¶ÌCbô/éç1(¶©dÿtKçPaQûPןï Ìo]Zp§¢ê¢ùe¡èÚ‘lÕ÷ĘÞÅdÜKµì~ü?Q¦ŠÈqb(RPO‰DÌýÝ^[Õô·ä:ÅIcY]yI0ì‘^Ø…¾Ð7€©Â¾\ì‰IlΫÄé»°šñk@3!ÿ7óÿæ ‰?Ÿd©½““ã“ò bŽs×÷',ØíRj¥ÕéÀÛz½Ó:ñjegå]+š»ÚªrY'”ÚšLî15&ʃ†ðg\ÂØá"&oˆv•ÄE"§Ð]o ±j%ø¥"ö:v—C¶TKÞ&2î\V ªÌ‰ƒ–Ï\e¡¤96>æ{N‚x¥\v à‰SÍäL1L1Þº¸¶svkö>é–E¾/9ïMMóàJƒ•ůr°ÕÀ¥öBóx{7÷2G)&!…T®Ób ¶~­&^Ÿœî1F¿ I!íµ‘AÌ SOÌlÔˆ¬‰%53Œª?"} é6ˆ”ñ/ÔÖPÊc’¤¹ëƒ^‡ ~>?Ëz±Uª%<óÑrVAžØeã N¦…²•… Bž'aÒ±bÅ-í#²ã6ô)F´æ‹eV‚©Ç˜É¸´˜á.W(­fÜCðo©{ ®Qƒú¶ºšàª2FšàLzÐÁSÈñ¿ uRó =ô\¾Ô‚ÜÓéÌÞiÐâÝ ÁO±`ƒŽæÅˆã +¬Ë‰–¹qýØb£ Z½È(Óò;-Æýv;/Ò¡ Eß^/‹îænóKlˆJêÌ„õÍß1Ô„X[ßxüä鳿÷½}Ñ…’‹PLÝ]D­pô§ù«.µÅ6¹4íînn-ïî~^T%<Zý½íÓ×'º½²Aâ ›J"-_^tc-q"¸]ŽÜñðT£*£u˜Ža##ð¿;‰Z˜Ùlü‘ìY„ÐVª±?;tþom²X QžÍ¨a#Q›aT3o²áÓ“×GíÓ½ ûŸZÝÈ|>&^רÀJdèuGNcUd³L|j!&<9/W¼t-F´¸™Qª×xý•WUºÂ­EµZbs÷»,˜ŒÖ¤[‚ y²öý3Õò<,¼Z ¡4]›•Û æòä7+fû†²ñÉÊžBåÜ`:jd¯4c1ǯ^Ñ¸Ž¤^õpïôåqZÀ0V·\ndF3,ø·Ò¾âx]4Û,™G-%®§!Y ¬þTGK»áØí†É­‘jß,x¶fRbjåo¡Hç­ú26ûª\ØY†Dh¿ŒÛàÔ ãÒbª„6 nM!½U’ Ž¢N: _›®C&cÔGd™ ì1&¬‘V7 Q$P9kÎêð²„è‘%œ:ó {½(¨*§Ú„ECTŠÙXÊ“rxÏïN†„̤®Î :wÏÒXà§Ded‡a^lu¬V|«ìpž\qÜJ8©é¥oy5^Ü‚<ËÈ;N¨ zô…aä=;#ëùyüKÌ©WIt˜Ú3M±72=D¨”öI민 £"×Î ªÈÐëĦôÑ´Ç™–¨Y%TùãbEO#ãb¶?ÜÚðw)pä4P¹–ÞDÆ’=r…Q…VH® sc”’íh„‰ª/¦¥Uq¶Ÿhœí)kRÕ*}Û/V;Ç'aυʞή˜»½æ¾À|5ߣږ~¬ ª-<;lžŸ·vDYÚªXüd0»ÎÞ¤:á™ÂjÍÌ’ÑfåHd AéÖC8ld{ Ý›¯1¡ú+¹=ŽJ ¯˜!|G·#àp®'ý|ÇCÛõêáUñ‘øõæ»gÚÓâÖüDÏv›Ùí§ž&¦bhâwîÄ.L²»Ê ¶{>£Îþ¥ý‘ëWÉ:iOB¶¥!Þ…'ÏBà6*hÓ"NéK0…½ÉpTbð- |í°xÅ5Wi·¢iAµBë£e˜s èž„€+³½sUT ð)©Z7Qàbæ™}‹Z?;ÎHzØc`ÖäôÞzÝèEß#x˜$TŸ§õ42=lyä¸+5÷ñwÏÊõê:†«Ùø°òã§‘S³ƒaí1ÓðèfíÙ“Ê´nF –} E[Eß{—8aû•3c ÔEËqäº^|˜=”í¯¯  ×ÀIu^V~Ìß8‰¾LIWYœæ¦æ›@-å$¤UÓ‰DA@v–f”ŽúHž&ú,‘Eè ,žß§PÄCý©Æm˜‚p ©Ð›Î¸*ÕÚ…Ë“]­‡½îµ²;pˆ/OFêÛ‚sXÞ‡Q‚V|’­ù¤ó„UV]™ºU&'Üú+?öbF#û2 x[ŠÕ˜ãØ)W0:ÃIƒXÈÓ ¾’H-uï(\¡å¡÷J”¸¬øºâ7ü!½agìóxo¥bY¼áâô ‹;…5¦ª!K²ñ@xCKIˆdtwÆÃ” wàxYí\Ô¹8Ó½8Âó×ôcøI󱻞®1ǹˆ;2”¡E~úò}Ìa™ß$ü”ùaÚ=y!ÛéF5—¡\à¼Þ¤ã|´Ýë)lªê¤×+¡†ô™6É !HÝ1Ål€˜GivUEh߆›H„¶á¦ŒUùÆY;–p/=DoÁ2§ÁäÙ“RˆMŠPÉÜwhDB[À{àÆôeH 5蔀Á†¡ñôøèu³*؆äÇè/âC´Ù:ÃÑøVÅÙ2zŸÍ 2xѺ^¡ ¤¼áªç“ª# ¥¢Êuøá‚r–VÓVÛ¡U«¾a'LêaK0Ê䄹°bawÌÙ{ú!†x¦ÄÀñ¬j„ -|K®Ñbå–ão©ÆQ©– ±¢K0üŠG¿7ªæÊÙ•;ý©‚™J’²>'{ÏÆ!AWN2ºËp`o‚ C_[ß1 oÌ–ˆ½k´iÔqõÓ²ÍæñÔ‰œ(RM’±åå;é_fôÅó?³+–ÚÌÊë=V,bŒ8±WŠ-/‰]·‡ÎìçÝR²Œ*÷‰É¡9 V=ɳѶ³sp$+›Ô±"ç†-ñ(£³£ [eIE'®±•¼÷¢†ZpzmÉnß©úE-¼^øƒPÔ®»‡ºÓW"’Xiïïë'IiËʧ©âð£<ÊñO7ãïM`ÆÈY^>7õ7›<—ñÁ$8òñ¢Š›ŒÎ˜q<p} |’2ŠÒÿs{¶¤EƤ âý¦< ¨°cLßî:‘ǪÆÓE‘õ|ËÂ…ÇÇ3Ý%,Ìè…îç퓃9½0–KóO>¢R¦Lü!&´Cé6—›G{GÇ›Ú%]Úøv»b\«µýb¯ÓAj·¢‰XFa V‹® –-«I ÷=x–E­@‹ŽE»Ý¶b}A6|3ÆÇZ‰2?·’­6‡ “,=X'ØyJ[cÕ 7av5°ðY)YÚ»A¥Ÿ=¨¯Ä¦¾” 2E›_T‡-Å«´Ü÷G\IDškœi›Çγ"M2 Ý3Ò„)æFšè×1wÄÖËí“½ÝæÁNgÿäøàxà©€;IED·(è_ox‰–h§Œj~×%L@é¾…ˆGn_æSS%ë_Á¯1»£÷õpÌ|½Ûlâá”漢Aƒæ1jˆÓ’±¢@Hñ„ Y<›UÄðjLû¡Š™XãkßZ‰{…™îUÏé»ÌlÏ‘R:‰B¬IÐ~']{dÓ’¦<„°ÅåÀ-FÇ5?€µµŽèd~§¬5Õnÿ¶†ÉMºã˜‘vʈ3tûŒYt>’’ ^DZ£ Ö‹Ë·p–ZQ9°É"›*× ¤-ZB׺X  W'N+=‹ž!3ä"Ybf›Rèyåó”OÑfQxé½’ÔÃäpµ^ÇÑÁþ^ë”ÉižØÈÇÌÜ Mn‡†pj2: ¢*E‹«åØëªŽI>;öžÆ7ödk8N±<c…Ø 2ÖÒHÒ"éw)¾ëð»HÞJ¿• Ðè|OI(ñjKµK™ç<È(:]).D¢Á¡êò)4| £×Fn·´4Š!Ë# æñYÜ̂ԉ­)zÆ&1_ÂjuÓij¿óª|¶ÐÜ;Ï…Ï[$}ªiúKòÊyÃyÜ(éZ© ¼DZ<“Éc2æ$Iüù”ëÐ;‰ÿi "'€ötóp{`—¤Ö ž¡Æî+û=Á¯åám—Jáê¯g˜z÷|e•R}á{Ñ´Vˆ¶Aú£kô3 G ×™®þÚ.?G¼±LÁ«¾ä‹˜3Ù…•3ÈR‚ü%?[T=%ªo—÷Þ¢DÒj’ ‡íJ»Ì’ô¡«#U‡úü·¨Â¬Ç4‹ypž™X úò[Ô,¢´¼þÎæÐ©4ÍÈïL=3ü…  r‚>TŸeh³Àl ìáÖb!PÈ35Gð;Ëê-cà_ìf'ÿP²þnÄT¢× æó•~ùÊ@nüè™SÅ‹(?£xZw,Ôš× j¦µZs^hsyx]á5)µhLUA}© †×éÒ˜«;”%¬eü!  at¨Ã;ÿ(Y1Žb#îÞF· ž­|`+M]]xžîc'iklø£ãÎÉééAùìtûAOÇÞäe–·´²Dl ®ËIå|üËö ¢zP°¶Âêx>!î]˜a/T¶§cñív;:Ÿ ÉÞ )´óÚÁ@M‰ƒvôö·„5C“ Û‹0žm“Ž-j©W‚5_û%R'åÁФÖÁ /„¨1‘;VZ¹L†~Ùð“x ™ì¡gíhù2Â-r–H³—±ßáB[n1¸,á-®(¢¾"Ñ•—WÛëp±¨¾íÞ¿Ð yæ…,2±ãÇí…2ŠM—7“‘lP7v·“Üt®|ÿý–•Y¯C*zÑéP6Ø´e¸ 2¹ ©jE{ý¹lÒ£lÓ ñ±mµ×ÛVU”?øn½ô×>WS$P‘Äd“ N ÞÍ"–þÈø¾Ïia( É …Mñ’¼¾ØL¦7=:Ù• ŒNÕ¢óL±{½üñÉlŒ,Å$7 ÊVÇÊ4xÌ`‘'ÝÛP ú7HÔ²„Õ±ÈoU;zQÉ!ª –«j É/‰Sò½MøOJ¨¯óá|Ó†ÀìÛëd¿—·Ûþgq…oWêî‘Rii8r¡¦ƒÊ\g8ÒÞ·ß;Ö9¼p/ì[qʾ~Þ-˜‚42Æ@i“/ ìêBò<Öž Hæ@¿MÅuI`{JW£Æ£GôQ§Ó‡{DA>ƒ&Áû°õ QKϹ±HTÉŸP­ö£מ}©;<\Å/{ü÷sLuB‡:¶%>êA{Y<þü\—^ýh_lÅéöNsoõ#t³ìâj¹‚™©À±DZYüãÌ=7?n1Q¸+y—ÐèúÊŒuÃúJyäÂ=ƪ²ú‘>4[u¾µk‚Xi¤ÿ‰ æõ¶´Ë©3¢]áWÒºaT·Ì¬q™úòê²dyRð¥ äŒÍ:íµòq[¦A¸˜cµW’|3æÇ«3ÆÑg¨´U’ÙÁ-2 |Þ¡ç” 5e5“æ¼´gV”SeqÉí#ZnЃIˆÿ[”šÕ°ÄÇÅ%ÇQs‘¤5ôÂF+ðÃç‹t’ª'Èbél­ä¾øø9«®Ïª\%hÆ+W>Õl•ìÒó­Ês†r/¯UžÖù@ø<ÙntNOþÑÙC%Qä,V‰Gè Â΢Z¡%Y6óa/ˆ¦/0=MP‡›l†‹—hÓ'ßíÄ2UQÑžóµ¾¢gq KB8ƒð¾Ç \ý[å¶ÍZ3åamÄšë~ƒùWON•Çøð»”ËÇú7I‰ððjÒ…ä;¼÷¨öâQL(Ê7ôìKD¦À“ÐZ•8Óhª4›‹j¹µ=…ˆ·ñ ®ˆé%Sex)®®˜4§/m­ÎøÚqt¢ÒúðIUzÛPx_ÚêW,D!ML¹²Šë\;ètÞ=Þ@G~ý¤ÓøÇ xŠñ¿Ÿå:o{Ø ÝíÓm)HIb·Ù$'|&×µÑwápޝª’ŽM8ÊtFÛì-„zP¸|¢ˆü±FìeÐ+…ËL¦òÄ(t&=¿&OxîŽl¤hžþôíø§În‰Nãø¨u »w`v¤â~§ƒ= |mL”(k]z2‘øc6Ñ•ùÊèD.ToèL+ÁÔw)ÊæÌCÌ+T:]c5KÃ<º³Ëç¬ëµUÿcîJ^ƵÄðÄé5YZÌX¹K—dF#ä jÁ—Ãи$ËùÌ,8•'Ý1Œƒ³@ü~  UŒX:ÿ[‘—ÄçÀº¡ßdÓ8Ù>ì@3ß⥑gžðììü\l-"ÝÂúIþ)v1Ÿ«æ°Ë$w¿H[sv4Ôíic 5®ÅŸŸ/ê•Χ³»­3]AáGá3{Àµ¸²·/:oŽO~Þ>9ÁpQ^Xx ¸&2¥éQ…£oT®Ð<ñ1(fÏÁóèz§–>“ØjuÚ G"…îÑÚ‡#$ë¤gáxh<“q+¸7 IHÑ<Øim¡‰¿•õ–qš·–ù'– ò9´eiKŸÛÜiÉlw ñ»;¤Uw£,3s!Œ¡e(Ó-_Îê¿ÑöÔ{Õs• }Ád:ºzšg …µ©30Ã_kA§FczùÔàžEL‹šž$m…ƒHÌ„òheMW:Áá,’·åhÁ,–2¥ÆµnæÓŠy³)á÷‡oŸšnf!1«å»Ââø.ƒ*· a^÷¹lTŒ)6”D´0LñNå¨+v¯áöRÜÑyfò°œA63±L×£>»0ÝÙ'^N ž¼œþûŠÔªŸièp œô´¨ßÍì…(v4eúÝ*ýTâ:dR>ÎFòJŽË/ýt~Žz¥´`™GÛùf™§Å óµáŽ{Šâu<ùªÇ©2Y%¥“9ßkßÐÛ…RåF@,Ê({º¦µÊ,µL+SÍ£ÖYÆŽéí`awFC¢BÅZBêLeð3l}CÛ›b¯”@cS«š ëÓ繆´lð§bd»Á<3t÷s·3öíýšÌ±ü†ID$ÆOu&–—f6$Ù•JÒ¥6gŒN‹\n‰»=Œ+ér{ä‡B”ðãˆE®ƒQÊ›ïÕA£°'_žß+N89Û[gš°s=>{Ó ÜnR,™*@•£™Ü¥o)1'ë¯=Šb‹ÐZƒHu(Ø*gÜÍ:*_¼}›Li9«o¥Ú›Aµ4³¸Ùþ’4 ”¥ŒnB9´°žcN…탷ÅfÇÐdLwGÁ@{øô)H×‘Ó "@"—Dw?X\(ÞöÕø˜6½÷£èó>´]}‹@;ÔÙ¡{iK@­Äˆ« âú×N }Ô¿%R&Hçma_ Ñj ·žˆzèkpvó£;4VìÂÕãÙwï“Ø?x{¸·©ôL‘k׳ïÖ6Öxât:«Ì É z¶ŽP•’vR|ÑhDH D“5t·ã+y ǸìÅû^Ñz²Vªße<¸ ²:!YÓoˆÚ1ÑñÙØœšý$cÄŒøv5éÊw|$ƒ³eƒµq§ÛÒå´rÒïBå6„%tÜrÂúb¬)Úý+òC䦜¼Aì–ô¯lÌ+ê¨RÆø“ +ED‚ ½’æáä‹T§)ÑÅšçz]¸ú¢Æ‹°|X&5Éyõ97”²Z[ò"îJÝà h ½äÐHî %!eØ t †±A®‡a”´&IÁˆÄüAXЭÆá]åZ­Ç~,5{2ökÊoG/QµòMÆû¢ñ¿Ò1xaªW°±€v1zã)JçÛ=b€B0¢Vq΄¹”oÊÈΧ—@²tîzÂT[.s>è²­æ{zšð¦fKOT˜‹Ã—ÝÀ5›Ïò9™¤çcÌ=P/ÅÛ¾Òû×åhd´w÷_¼z)8%¯KqäG ê¬`+âGHÉS÷ÝK,V7öŽ#,9)s/çD"™^ãÑÖ 4,&ÄÚ–zËÕ·œ¸½[¥! ÂH¿*‘q‘S× èÙ½*'Ù!Yƒ+ß nÃ0Œ‡¯t›ô ·Ç?žÓUÇt¡I©ýŒ X„ø(y«©RΤSgŠÑoÅ«m«ƒBêxÉèº Y¨ŽaK,:È2ˆ#6viÆ5Jyl–òf=¤ËŠŠ?á·EÛgÕjžßÁ“nªèóýí>ÛWZ¯-æ©OhÉ?­?ßnò¨»¯à¢cüòª ¬z†Ü<Én½²=w—ï¾{ðaÊ/¶¿ ÍÑ­ò5“‹¬0u‚Ìø4Ùy}mïäiKã­Žƒ6Ÿ_³±£#œ?/—DϹýðÙœ ÈŸ eÂO™ÿ …ñTÃë.cxX·öW׳ˇ¸‚=Ã…à!šI[~ï%4åf(¥<)ãI /œxò9þƯè·9n&.¬zˆÏö´ ©½ÑæYB±“a®ixÈLÆÑ(ÿŽþëñÝ7ÅÁ“ÜTŠ‚î#œ§ôæwóÓûš èW· Óš»Í3lº ã‚{2éjù@CP¨îÙ}1x:øUÒ¹ÈÈI A§¤QE’cä2SÛ•Ê`´Q»Þ%b9n.&`>й^ëæÍóU13#¢õêü3øn9üb>' ®èÕyå\ÚŸ«Ô"É,Öp¦­‘ZÑð‚ŒB–мN¥³T-«ðV¡ÎKh·™C¹\°ÖÅÅ¥Eg˜íÌowÇ (Q=—ïaÆÒÓs‰êz QæFeçÍê7ƒF}íug&,å Z¨cJô±¸ÙÖJEß¶à×b[ª Q]ÆQ$·j˜ç.\,#y*NOnÖTxeJÝîõ\£× «(pkßP™kZ…‘`¶áX…׃̪®QM/ûY: ئÛ@Ìk@}Їù;J¥àÉÞT׃éL@ž…Œ³oÇÑ=h¶0Õ÷öëæiënx§çïÍÈK\0o*ñ®r=Àa–½œ€òrs·MCrôaVs@?¥Ën w¾ÓöBe>:„à^W ±nÖ›ëx]̆³œ™#‡Ò”Ú¥R¸Z_««ø+^PvÓyM–ã5–’Íé&=§… €lÊYI çñþ~k ï4÷:ŸÔÓÎþÙÁîy§¾R:_Ìtxˆ.áI0=3êµ#]Å‚†Þª5,)k©„bµI ˜ xh£J¾ÿ’ êŒä["d–A)o¨È¼‘9㸖ª¥ŠYÆ´}ߪíD/ø{1{J*׎ý^gôP.&S@j)•4-Q ÖQT¸õp sºm ;ÖK·õ Ýb(ê+,‰÷Î-pÌJãìØN®NX`½]öáƒªŠ»TЋ†  u! J0WµÐG­JIô¡‹LžúHäÊþ Üæ`n ]'9@òNÔ^5F—ƒßk„ã~I>øgÖ¬gÎÁÜd¹XŸ2OëóÌ“TßM¾q©oîœÔ èAD##9¸éc—«!í²t ™\¿Ô9zÝlvÑŸ NÜVãäàÕéñɧô#dýquCv-|ÔÉ%»ú+eqÒÂÔtâü|Ï?ú–² ¥¼Ú^§Q«Ïe’;xÜAÜôŽQˆžÊ¿¢V=`º½çX×ö¦ÖŽjšã¤-2îg¥³Îù£Ì×xÑ9Ûç3—^9v¯s¦óÒÓ¬™O©'—ûy¦n(WógQd㨩RŠ &ÞÈ_Qλ¸C~¿ÌþJçm”¶&U£ó:ñÚ ý™Y”óŒÎg¿ç©Ì-¦/x ‡¾qf× ¸è੪n-2Ò$§¥²7òbB}'8ÿ¬æüfÖhtµ‡0‚‰FW¸du¹žäŽ_¢PǾýÁdìÌ( }†¦[²pèŒ0a‡L- œzvš3ꯀ¨Z×\vâigÆøG®ò£;îX>›.Ýva?À5p„ qŠâ{Ï¿öâE‡~o2È_áòõŒîzµ0 ,ôëâ…%#Ìý`| § í¾3}†®¯|h«¦*ºÄîâïUn⎙þdnMή!Ù³O× ³“œÀuòñpœœ³ žO$§ù¿cs(§¹ã!qÎ|ÈÌ"¿[4mÞðÝu€€*У[Qåù8•*Ë%’æ#pˆAh¨ß‡Ö½‚O.]òyø·>€š[¤.àFAÎò›pCøtÑýT_éÁ¡Ï•ÉÄ’W–lYãE·T%rvÈi íœRå‘Aæ¯z{ý°R#8ó3¼>Ùâƒ=puÎxNÏRC¸Å »î“+û’a)Û ÚãËê¢9E¸ ²t•Ž ¤È=´’;¯Û':ÆAœØ™]wL¹uúp!.Ûƒo¹Èn p ý~É3€S…‘ÀT4Œ‘½° *…”N¾ÃŒ-Ý{=烨uÊ çN©äwzJ°:Š _‚Yçâ1ÝÆ-|êŽ]°úÐ*T¡ÿˆ2Ãö¼8òǰ‚1÷·Ýû®·ä"Ç;"e¿ð?“2¬õÀvm²‚­Ål½B†œ•Aà¸szqV¸Ð†œÔñÈRÁÛ×FÏMßG€™”îÞP†›áât¯îN˜/œ:; 'Ã(©«­TòûC·ø¡ßžúV¬‘6þ–µ!èFÍyuà¥yŸˆpC•2BÐP_ù#gU7‹áDÑU·%eýî{Qޒ›5Ý:Æ}}õ%Hî…;ÜË•ô²i‘œ–8‰z|¶É=Œäi‰Ã’ñ±‰v{Þ¢d@J ÃëÝñhk•ŒÏ?hCÞT4ò¨S’!~¿/§ËøB'@b€?¾ÂiŒ;°AeO¢TJܧ$ŠÑis¢¦¢•,p˜9ªChéc•ý¼B†H' ¬¡‘°§“êº;pÇ·äSœÙs`/ýkÜÙUd¬øþÚdV&ú“k!°éß}/B¨¨*àƒ‚Ÿ/GlÔ׿¯?Å\~p➀sÍ]Ôrq"m YÆç€C „Êé糂:cäzuí²ÚÜŤ¢¨üQð}+mÑ.CÛb¤£±;Û•¶jMEáä:;Û`âÔr:(<­“7å2e¦+~;õ»”µ=cùä°b9·ú¼ràe'ÍÝ*íÜFSBÁ{Cj! 5Þ“ø†"‹$ŒƼÉdtó]¹ie%¼Êˆ‹VÇÊ"O àϱ€sÏ’~F <”1|ð {5å&JJj…·4©èd‰ Ž€ p1äi{ƯBk˜Oš×½ænçäõ™’—Õ‚<\‘¼,à·e.”)š~‡"5.S“eJjŒ¼®‹v!9¶=·gÆâ×j$˜ÖäÔ FØDÚQÜ *¹¢©!õüø‡…Ô¥SeàeZ%¥Dƒb½’.“ª~Šîq–ä­Ï.e7éØèe(¬uŽÄx†¡ñ WËg¿VÎÛ*í°ýî™C‘›”XÀ%\.V*ùµànŒö5²‰µuå ÏÌe ÙFô`}­N<&¹K³æ¡ÿƒo×#RøWýûÇõµúF[Ìn¢8¾ü{ý±¨×ëI"@d½(•C8Ù4%WßÈ ¦ZÏ& |¤» Ù[¡ñŠP´YR.÷\[Øôù4npT®¾zÕ¨F§[Ý@.€fÝJ´ùEhû|QqÐâ‰Ã×øvcqqeeE¼áÓt3ÑŠjb5±5ÿ⃴Šm ycG*ÌÞ&¤Ñ‘¥]Îåùšb£>õ¿NŸ"·ÄSºŠÆ>ß‘(Ëê1os}LöÍÝúTG×G²ù)oDʲµ„®Mîå„S¡*<ƒz”pž§>åù‡"¦¥õ„%ŠÔ‘éԤ>&²*wØ3…½ÉþF”üµæÓ§¥YÕ¦´3¥Bm3:pr(–9‡)j,áÀ\µ7Ü)+Ô{öØþ²¼×xy,¬%é¡^ Ôbl½…Š¿ù¾oìœlŸü£s°+Ö-Ì-?ç÷¿ì´ŽÄòÐþ—Ü…ÂÉÞ/L"p>¸È‹QÙ>ð¿å"§Ðsþeùdû!(ðÁ—r·— †ö,ƒž¨=Þ¨äNø,1§ÖŒÉ6Ó(Äô’·£Bá&+ºl‘ØòŠ· ‡ª3èg 1&—Î×â› Q¸’ü¯:£+±ã `ò… Góÿü+¸xüÓf0‡íõ]zX–|š®*p¦Ît]À: ¢¢ÒnðÁ‘ߺ …càä‡ X«orÎî÷|æj´ýÓ°,©-‡7Ô˜$;M_l¤?S~j†WpU“²º¦4êà8 Âñ(Úm65á}–øÝxhv-ßDWlf|6ݲ”lnA[ÏmtÍ_vÕôˆüQvÕ р̿Æ=¬Lì#~n-G<6‚gb[Ú—N Ý„ûªÕàcl2žfú)3¤RU ´&·“ØA¯"{€öš[Ö°×aÑcJÔ‚h;ÄïÝðy½WE}ôM ¤ÓÂ{L‹MK:0èäØl¢waçUù,±RÎ+‰1~8J.§œ‘ÂÆGA¬ÆÕ—þì^ùª½iY'“Š¥ãTÝi#óã¾ûEÿ[ ¹ßþ±‹ä¾§VÖów—¶gšS#¶ˆndµ÷>GÚ,y펇Vx87c6³Ô{Yùv³™ee)¥‹å¤ÎJ¢WÃw˜Ð;BEöC}BæåìÁÈ–¦©{}þ|a)I”MâÜ(#ûDùoøí½é¸­d_ú÷æRƒŠ6´óÛo¹§žO½SU ÖÜG|j÷zÓYŠVN‰ßð‚â—žaj\ªf šWY€éD¢±4¢E;¬o‹™ß¡â5Rè§bª¦ÚVæ±çó`ì8vø¾máÀÐñ•ÆpÖÄ£ª,D<繈G¼¤Ë·­w¼ÒVî^‡ÙÃÌ"2G>e†ÿýZ„0øÿ÷ÀŠÚ¡ç•ØÿVb•@€´TÿQYÐy£ÈnD~†—iâ5W‰’hß$JH¨I²I°Î"ÄQÍÄ:Qëݾ ¶J+ ›|Ù$-<åe”BEgͨºb,Bñ©M˜Šœkº|"žÖz­m05È/˜©l§$¶qôFÕXî9ö€ôÍ  H•Ì>ý6|^pð¥Ö5ƒ#,LIŒðÿÇF,"½â"Ÿ¸‚(”rÙç!Î=¨ÉÑy.Š sí߯(úôçåÔR~QŠaVFcj€rNû§l¶^bi#"añ¹q¬ÒýUªšS$Ý"ó<’C Ê䤓·>ÊÐëÍi*%¨ë‹A>[5Ï«»æ€ ¿ÊZ“ÕöúóÕ©Š¢anÞ›bå¹øü|¾ï¿îáS9îµ°¸£1½Ío\Ú-=^sÄï±JaZ\P ´w¥ä=Àò  _<="Äß¾‚C•dž ÷«N¥6Hº]…‡ ŒÏÅž¦9OÎfwsT]˜y—Æ+H¾ýƒí2Êä£&>¹IæßžÉt§_gg~ŽyÿÝ)Ľ?¹õŠì»ÚræÁ,»b(ïbrÓ‰Û5³¦Ñétöšû^lñäß5mØV¯~˜êÓ“³`whÐÈ=ræ¸é¾³£{žuñõLSŽ´bæé‡­œ¸CZßCE»#Á¤ÓH’ (W¥Çøp\ØÙßíúw³ü¶îâ]‹±1Ú5k£þ]}EÅ’þ£’y+çY¢0ŶÅýR¹ñȧ+éIK4ŠzÓ¾qÄ$¸tÈQvì‹Éè2°{ÔB"£üdãîÀßãá ¼IÑ:Û»_K°—J³ -‰ÜhI¬•—’¸'¬™0) äˆFÝTI³@¾µÒ§6å9 ãøu÷þÚy™;ïîì5àÕ„€M½fÇ^©³¡Pä>yŠO*÷Þè'†ÿeb{Aˆ|¬ñYýûõúZý± xeöÙNó­Æñ¼ß£¦ÿévýÝ!¥Œp¯¡ÓîãŽmXÝaU¦X»r/¯(™ýà{”ªÆ`ÏF¦Ö6«@îœW†"{ÆÈrÛŒ`q&²{б\Ôù1lK²/97Ð2ŽC¦4 Ë ÓR>S naÔHeÄÀH™÷{|ív˜5n[¸.E݇₠qëÎ2þïêåT\tˆjïÂ?óœ)ÎJønXëyÒ)f; Æb4 œÚعÇäUíw0]nU‡@Lhe´Ïôî*dµOAHÿuÔÿéz½^å„™VÀ\ZqýXi>~4¯·Fº|ÁèÏtÞ>F‚qâN‡/Àxæù}>ùH/鄼e¼pÌ¡ x–Ž,ÌL@ðð>ýÙ^˜ù«7â<þPñ ðÅÞfjù>]ßµ—ôß‹ÃÍÖÉ^f(Rf‘» Âul2X„iµbdrHâM>ÉI0Y̓:·Ùé%ˆR¯px¬8.·ï2 M­9-Þ#ÇÁ5©‘Bœ m+¯ý›#ë³`|dÉGŽK‚·LõåÏ’74ø"YœlÂQPiâ ±wOÏdãée•ZLB¤KþŒžQÛ˜úÒÀÆ<ÈÈwGwF]º,)8O‚FE"ˆëIÙu|Dæaq‰¦ CÓ e„W ýÒ$=:kaâ ìHcÃ/JàÕžßq¼qpËob<ñ^Я €ûºpÐ×…û#¾.Lƒ{]¸?Öë½^î€òº0'Äk¦5à/|WkZP"ï_È®Rd×¼jäóGý!ÞWPÀé2êÓÝ9ŤñòìC{€Ÿâ¦ Ç·ýºŽ¬³vŒœ6}è\sT%œÄ»tÊãþ×]6Hg—c©"Xœ]_¶‰õìg¢\;’À*ëNRôñÓ…nQO˜óÀ‹žRõ$ fX‹Ó5Θ Ìß"7hOæKÕ졵 ÷›ø‘﫞o L1}Q·ËøßЯÿR*‰ŒÕ¦çWE²£ús&,þXŸþg~~‹½ÏøÜøGµK9B €TMq[U#ËáUP÷+ɺ²HÏÛ1ªŒz6£²BË­ê ?Oª+jî[×”ALŠø(2=A ¨Çç矌ßë+ŸH˜z*…©£Ëùä%"w zvHýO™$­Þ\À.n–eyr‘/Ñ‘)] bê~r˜Æ”º€Eÿ>²Ú¡g‰il¥Á”¾äfXÎÙ fõ,Úˆèhß"Šä0ÏJS–y¢ÔŽ”CŒ ÔÁmUQ2„Dæ'FÅñCa „©×êæ¬Á| ¥Ü!íRäžAƒòèˆxuà`»£)zøzÓÔÀGeýA¼Øüy÷àdJ‰’Z¬¨¹´û}êû6¬;D¹dùŽÕÊE­% ¼ÿâ8‚f'ðw¾Íšì¥ÓwðÂé¥lQV’Y†iÊ ¿¡¦µÑ8UElÁvånD»½þÍ¥õ.¶xQ d€ç„„“X§2áEèÝM"ØÜ×QÆ6®"°Æ)y.…ÿd€VöŒ‹ùç䕲J„ö;ϰ™Ì>šÀéG¸V[ŠÒr΄0GL9džI¯‘ì ”eéïš{“n·±? Iuö$~ÝqÇ…4{àùExè /Ыø@Ýÿ¦£uzrð 7Ê]Ûù¥œ”Í–þ¦‚ŽÊS¿D×2½ï®‚޲ò?É‘—ij'JîK½z¼a¡(ø<3°«’V°ßîp4c-«]uçù¿sÃR§%‡B¿¨Þ`8ˆ‰ÂwƱ™Së+ìŠÃ_D!Æ+2ý¼»{cfu ÿòèû_ ï¾ÿ^ ïaÏ=;{ò4vnºþMÇr'hÎH~¿lÓ³°±u6gxsÎMdsMfÂynnf™õëÞƒ™Ù²Mf9ó/JwÐ/®n4‹fZ1*±Ï^ˆÇˆ]CêwLISÇMß„œÂ $Gú dlxãÜŒ·àGîÇ i~úúë~í‚N÷§ ?xÇÁ…¡‡›¸™×ºï³Á¥ï UKrtÅêIOó_­¾F°i-c Z'F/‹ p¤¬/ºÍ[ECîMØVRÓOr¤­ç±Ï9d>«GÆ'päQ„šcÀÚ"áÁøëj-5LÝd€øÿIcîåAaC9³:H[BiÃTçö¦Àt[?M ìí]„ÑÎØÚ`½¼Æ“*Šní*rtÇEüIåß~!]Õ h¹þå£f$ò-ƒ‰_šó@šÆ¾{ˆìó éƒèKˆP¥üÒ4I!™æ€+˜êæh—<²È}Ôöˆi&fmB¯4“›}ï^ ýÜÄžÀÞôR1Uø9±Ÿ ÆrU"³Ý²~:~}úêõéOñÅ8îËW<=>nv²Jóá£kF#ã¿Ø&Χ•úÞÛ½Š GFïâ,ÕnT'ŒtÒÅ“]N?Ëø0Ö”ŒÌN©;ò&ë4·ö÷Z0²0 F„JŸ#TŒz† Iôá]â˜QŒŒ¨©²L$ÙbMIÔø)ú}L‚®³™Uœœw,Öãã‹B~#cŒ³”H‹¹$¶YúB©E&Ÿ~éå¿T܈G”&­rIýª<}´^•OKQt—W•“?œÐä/3Îì³ChæÑ1ÿÁ §0He0¶@‹Ý*Gåè˜_‘É´0ÿðžMÉæðŽ"þTÞy÷8¸¦Ýzv ï2Á•= ýÞmìž´»}òæà¨Ó<8úy.‹{Û§¯OöZe ¤s9¹™'>ù…¨]%AœŠÆ#?tvŠ"AÉ0÷ãì´vf±Ny BzrêA è>zŒ×ê¾Ò†aænÄʆ5„q…’X„ذ?Á0¦(3§òç‹-i6ÌÙžN¼®«‘ô´íƒ¼µuLN`ø4š.+=ºw–m•°=;ÐÇc<¨WJiÎxؾö¡ûp™†ÞÏ3Íó eÄ^U]¼Ë´Ÿ˜ö‡Z_¯=MxöØÁƒ½ lAÏ+Œ±^AÊÛ‹=Íq¶e4[b¨¿îH?ÌØÌNírÇ}ö˜Öî%ÅÈc9¼ÒP²ëkvÒV9€ÈÕz}‰¸ö·wÉÅ!üæhüœûÏX«W£ÉÍ÷© Ý,÷ä¹®’¥çaÄ_]¾XIûÜõû¤ÚøB·n²¿·dä ÜGQ‚~˜VO.œ}Çýx!°§÷馹W¿B'µ=b>?9³—l¶7ðæ‹<­å”Ìf£þUz`é<-õ—è…å• S3Œ»ü`Ö Ô eµ@'l¿+‹›'Cˆ¹ ×ײv¡ §‚XÍty¹š LÝU)$/ÎÅì m¹'"¡/g{Ìqp™i LÜ‘C6ÿ"Ÿöuj}Ï *I*“f‡ûdhŠf,µ…;lš…ùöKfr¶J:=.þõ;-þ´™táj4²W ¿Ö¬¹9’[bŽ•/ÃÎj§ïIòÄÄ¡g”­ùÛôÀí¹/ÈAz}ˆy¼øÝ§0£Æ›³á“ŽÛ‡«uUœÃÿØî8u‹ÀM¸¾^_‹òo¨ëûôQl††Þ:c&Q~ùêû'O×ÖÖÅv?]¯o¬©˜¯ª0^ïàë·õÇO×ÿþ´†ÿ}VñŠJê’ª€cÊ`W>Cô ˜¨jû9¯¦aÏ`–?$ n:4´Ð×蓳»OÂ=jÑ<äAv^áZÿÀ^W26èŸó`Ê2>enãÜ ÎyîNyl5ÿpŸ3šw.€yyÀóÖžÿŒŸW*ž#–0oé,€{C(°ø Àz¨óG†æðwÑ…Ñ{E 賂U²‹¤cFj¡3VàòD"ú€³kLF={ìtçÒ ÑË2  ô;jLÉ%q Å%ð ΊÌÿîô¤u cõÜŒœ;Öz@(ñƒ÷Õ˜ƒ‰üžü:HgHQ¿e 881 YÏ8¸UñdØ]iÓ«³ ]•Y~ÁÍ qäÐwËlïrb_¢":ÄãIŒœ †h©]»K+)¶Ævãå^þ×ø¹|v}åPS¤ŽŒ–Ú~»ÛuFã05’ò)ƒë«“] ´aÕ(<Ç@|?¤Áˆ¥LüòÇëÁç¾ïçM°ŽX¦° ]Äs³s°¿×lí•ù gøxûèE§uüú¤¡›oÛPü¬òÀBý`•eL©ˆÈ@3žžX{.>Ÿcÿä÷gGæüB%žøûßéCn?¹`¥¢›QÒ›×Ëü¶Ø‡uäѧùó…L¥XAÏ?™XõìšsÇ\’·äÓ¼cþ–ÿ­xÉ*¦ÝjF?w>ƒ™#“L8QtLâbŽFz( ±âùçÿOß·øLÀP(Z¨äÝÅf“ ,=“Ìlý¢ëÁiâŽ;œæ7_‰7 EÉ1œ4îµé)Ó-‰}û"p»ŽØqh¾pð8-…âÔõnEC'r›†¾›T} ÓÅTCñ—]¥èeŠP\ë°äçUKÊ1+^þ[л{¨Òÿ³ç\‡~øì´ÒïÏïÍ$æÈoì Ño^ÄÔK …‘ÆÇ XóeêrSëk#7F¯zõПvŸ.¤=ι¼ÎwÕMü·°ÞÜàï²C׿ ‡º—$V¸¢<õjÚ¹ñ¾Éæïr÷ÏBYýú£}—Î勆…óÈøa¦ÃɃ8þÌ6ì̓»žò³+Äf9šGÆÁ½’™í7*(~G§G­Óí£Æž8Ý;9TLKDMþ²¸ é+×c j[ªLÛšš-.Naût[¾nž¼jã£ÖË퓽ÝÂØý½5»¸3¼m­Oé¸jQœÀçŽO`h­ö ÔŒ;àŸèYûg7Ó/ww4˜Ýnw8ŠöW~áŒ%9…•ýµ@ÅGlÆÞg® ëKtp)*pÁGëfý·äåÆ<¯â´Œ¿Ðý}½g=G–ª3Q®m…«¿rÇåÕN{}õÆí g–Jç}Œ}ý_´„MßÖý 'Zƒx‚îGIøsCGÒñùÓëÇ6y´ôÏ­yž]Ó¢ÕÄ“(†¤>l¯d«²ëlÀ›ÿ@5Ò¬3ÓÆ2c ŸQü£Õ2ÿéŠcs=Á;ü|J9ëí7\”®Âî1¨ jCà€ËúÓïÇ9¼Ô¿?ïÓŽ›»`þC69ÍÆŸe«Ó.£aÍE£î» ¹âÃs:ˆ¾°¾ Å7a»íYi‹¡Õ^vY$ƒª)¶”ÝŸßÒ‡V튠“,£h*ðtê$À"q=è»Z$u’ê“;#5U…'EŠ;é¡Z[¢t;>,ô.9£won"§ %Æ[u*ƒÛ¹v’ÚFñ=ô5˜þ nL¨lPÊ…x«ýÝ´¾oÃæ ‚È8æÙÝqÏ4¨Ž¬®”Íÿ¾³ßW¡í–•ò]íƒÁ^Ã¥3º«/óòµOßa3â0¾Åî<4‰Åo2t™‘›ôK”‘waÅR¶‹P<­¯Yì##g;O]—R2g3»hž‹êÿðÉbj×£i¸Ã0$¦1æ¾Ûˆ…ˆ÷š»êoÿ ó3­ósÏÏÔ6Åwê¡ JÓ¬™ )õÑÀI¶ŸžŸSÄüQ}Å{g“ç)Å*ÿÔ¦Y†êÂà ô Áó4püÝ[¥s»2…ÚÝt*-×3y©.0ÚÞ…¾!¢†2¥Õ­‰Pª–ÀéO*ãºlìȰÿ5 £·/? ýÞ„A© v÷n} Ä”Ní3®qY–Aª…†HO-‚Cî(À}ÿð©ó|±t(ƒí!ôZh߆£Ä8Ù·ÄÊB|Œ\ëø”“Í7Í×¥ænçäõá…ß•€¶A=;côïäÒ1­™Å-ÛQ"ÞŒ®¾JûPô؇ÂsºsxÝqµÌánaδ1Ñ‹ úC³DÒ™#Ãé+ÁÁã3¹&ÔAüãéñÈñ^¼Õ^{îÍ}þN¤@J;;[_;?_a¬¦›k|E…»þãúƸ¿aÁ'ÙP‰yj’Rªxk,5%ؾcá„k„:»²i-tIÎrú˜«¾­£‡¯íAàØ½[1B=aˆ¯"™ dBØ(œ ²YCš¦É–EóboãóšXA”œ ƒ3eXæy‘ùÆâhöèú^'|eqA"q‘GÊQÈ|ßA~Œ†õA}Ùë"©à¡á§'ÿèìý²Ý,ÃsùeElü Ë;A`dŠåÜòê%>‚}üOœ­X…ðë„×òÚb3ÚVŒ¡È×ê3y˜Jž;ý(¥¿ˆ³[µܸèð“´¯5)æÛ°U—Jwãb³äæXsëÂÉÜdö$s¦¦nÚöío×E[…—´-Z†ð£…ÉRÔŠ(ï¯Ã³B QB:D¹læúXb¤sÉäÃò´!,9hÖ4—®XÿáÛ§l‰Il›ó²U¼ÁËót/Cj‘‡?˜U­f\8áa‡ Ä*}“uJv¡òhÄ£ §dÆdõYæâ6Çd«Aˆ"z.”¯…ãÛ£åÁ<1jvU¹¢œªÄLò’bº^eÔDÜ8Äwv+Ìm%+¥™d¹‘J@YçN(Lϸ72ÙŒ²C²1eô7¯z´Q/‰gAÏí÷Ì|ï¶9J¶·>¥EÚk\2נ̶£Y -@© ã Ÿ9bL6 Ù—°î,ö²´˜ÓÑèÃ;¦AËír‚IÔ¦ÖÌ\(v8´:,,ìëRwN0®óŠZ‰qѣȚ9L†JÈl1pB¼†@!ÒÍÒ¼Dû¤žÛ|¡.È 1;°½î­Ê5e©–ZUáÖ¼ ùÀñ‘IàEçÊö.L*(s»b‚iCCwÅ+¾.©:ȬNn¼NoêPI„CDHKMì4-˜¼¡Áaa•Φ.Ö³­j½lìPŽià¶°u_©ax~j£4Û´ã î6‘‹aJ«ô°€]jr¡¼‚"f‰/£´ÛŠ ö¥Ç§p3·n õ#«+¨l€Ž(`©œ`J†ÃOkQ­`£EDÝÇŒ²¤’ÉjDR#Ÿ)]Jé•Y$I¶Ê¡ûˆãƒù~-•+ó1•‘mê„&´L,Ã0Àb2wVFÊ¢©*-R[%kÉ&K®cò-uXR2oVPPÚ‡èsÎv\\#öC™^“ÌÙ0»&ššÈ*§z‘E+V9‰²å$Ïã9Ä•Wµ}匇¢¬æ\OpE†L<‰‰¬3»Ë…T¤^t ¯L¢ZE>ž:/>P2ñ !>\U9Ir9áÕž7P:8„)¼…Hz<}aOãëTÅã+TrÁºŸq‘Á/¦ßeøsŸ«4ä¼²db™km-..ʧ¼Öií¼(ŸAsà“%QËù¯ö¼sxÐRá«×w/'C**¨»±ñD#ºúÐ=qâ"o»:RZ«£Ì䄎ñ%Tü‘óÜSú]l0·û} ÏY\JÞ¯ÌÖ@©’ä8¥úâð °¦þÄ+Ÿ¥zã{¯% à8/=Ôΰ–[©6­åFcQ¡Ö½zÝzYn 2Z´(¥gáA.¬Øˆ†4„P°¾ÈÚ½­.~uLS•õ•ìU/õ9+ê¶|ÓjÀϤDjò€zåW·iÑq”¢¢Î~]‹S“[bë¡ò¶£&Il‰µçÖtúÄÝ“ÄiÛF”KH“;•+¯¯¼Vyþ¹¤U/0?‡¯š{'8¼œA$òT³^•*fwŒYhà0ûà¸:`,Y_ùxþàrÁP,º 9$9ÈIÙƒÁ͈ôÙy…sD¿ª/êkÿîÞþöëæ)- Š+C\Ûr‚põÂÇ2ÄÀðd•BsˆÝ^ä…ÌëìãWÍíÓ½Ec£šÑrû—½íS±wˆ9õ6ñÉ©Ê_·8%í>¼î‘…ʳ¡ïãÍ {:´1¹jU(³ŠtHjšxÄÄØGÖ ×µâ–‡õ!>ܲঅÉUÅ­?ï=ÿ­MÁ`@ê¹¾Àîùx-ª×µ¶©Œ¬±Ñ8:žȬK±W¯Yã¬ÇûðßNó¸ñsËxc‚ÆóÖ?ZÝÀEá !ˤ?z¹}²Û8Þ¢,›Êêëæñ«½£N‹²¨%‡»Êþ¬dG:q(ˆŽI „ã[Vab/•ÂV]ÉfH²X½ j%CÉ ¼ô­›”¦IÛeÒêˆö³ úÚ¶£t™ÄMcg’0Ù8cÊG2pÀ·'¶ÞVÓj²Aéì—ò¡B‚%¨UJˆ†)šh«5\c(+ÒX±’–ÞÃ3¢;l÷F¹ŽÆ<7â–7³éÔeÝŽ-aN7a›Úª-kÙüóK[%™n£À’_$ó@bš•(u)²E+kİ Ÿ$qŒ8²ÝXç·ß²MvÚšÅd‘±1a/¨¼Ž(U½f˜$ú!3ƒÑÐRÍñ«Et"¡'$MÁ)!H¾}[X”¼‹0IéåþÌâ¤î–@‰'ÒëÓƒfK -,g žÉ÷¤‰¥år1M!nVÖ¼š„|L«¾,Êôî†Õx'ÞáƒÚa") ¶K¿Ôßi¢•J”¾Ñ«“cŽÆ«W‹2itsöäòjLãäÏNá°ìÒô£GS´jÞ,fž•ÊM¢ž —çh¶˜!(Æì@YÔ¦»&™%óBGò‹$Ð sÊfûŠM+špÄÌ, vÊ©9ÃÓÌ„”ËúDkÖ²g ÜÆ ö›tÓÓv•t™l÷Ò‰‡¯»vef9]N>6?‘QC†ÕÜx’QÐ k<1 æxǜʦELÆÖiAˆ)”é¦^y;d_zG£¢×Þ‰9.¾G¾(BëÛ J‹c:8˜‰Så*ߢž3v‚!™ð@’gð*Ãɉ<¾Ñ´ƒWÝšG ,8àc#ˆG ž@ÝIðñÃI ÈzhFƒ[iïÖ•„è*E1tx„V‘HÈtK¸pÈÅ}2ó)¦ÌtCC\æ~oc¾‰šl¨&]ÅP” ÞÅ•#鱸þ€½mæ× L¯ÃÐ!˜äj\Œ–…›m VÎÎÎÏ£4¨VŸK\ŸÌ'¢%çÚD/7\ycûòêú!¦tjÁ ‹b2g\œÿ"-ÑŸO¸·š÷þØý3¦ ·Dr’à¨atHÔŠtÒL²íOÚûH†L(°Œ2‰ÿ4^4w1o„ñà~û‚>æ_ß¾5ÞVè¸ÏjT„$+s$ñŸ‹‰ ÖG#ƒ“èÞÜ<‚1ÿl^lR…4ÕØw‹Òÿ ?Y¶Cà”@(ý±rþÉl76H^#2»Õ Ñɯ\wž*ÖXÄ˪Pºçi`j8êáךÕ}ôÈúŒOÔì½}«æOíw9Ï™z-b—úu£ÑÙÙní¡©u²ßf¨op)¾q¤ÿåµí!æ³çלÌ^BÚ(TÁñwÈŒXŠï9”+%ä´â’ œct™w=ÆžP†kyLE]€Ü»èNó:LÐÖÀ>ØVù‚ïÜz¾î@O]*‹5w sÒ‹ÉH+4Ñ#CæÐŽŠ9Q’?¬ý}ãÊé¾ÇŠÔ—ÄΤc‡L{DXƒ[eýˆÔ¥jÜY—‚‚<+Ø„rá {1SêHºn(u§È¬•sm²³鳄HjN¨ˆà¬ðê=?÷(Xb;£Žò™Êž@ÍJ¬H!ðÈáèÛHss`»§¦/ÉêÚ}ðæ ³’m5YÆhÐ:z›«e¶8_•”ÕF•á|LGíáh|kx ‚Ú N™He»¶G.Hu¶4˜ÆÝ~ ŽŽk?P‘!ZÎÞXÍî%Ú¢!3Æ#ʽúSåÃÃ( 5dP²½®‹u¹qzny¤S«‘P^S:*)@¬ëïÑPýÁ‹±¨´®†L¨FžÎƒÞ; ùîéz'ºÖ²;q ˜ZŒxIü ’©)„þWôž°Lý,%CX)é2©&è ;Oíú“8ÒºžCú0€xjÌYÙf“©Ë8w oa¡Lñá„—G½‘G4TàJŠ÷’‰Ú#T·^³qfÌà „N476ü"y¡päªòªòe@Éù¼ 2hí ¿Á1JªvïœÃö¥£RÜqÝÊÿ£ÝY/ò$7lxŒÍCÑú ü«ðÁ4\lt¾$«ëì—ÞÖ% Ò…ó¡|ž¡?Ô4È,cI$ÈHu[U:e†×¡I(" ͵y¢+µyÒUHž ]Íé(7†D´fCfeû`D„ðÕ–öºÎJ¬_RZÀ¦ÀØ´ôk«]kZ’#{‘h‡dn¹iÌa^6Žþ }¼†ºxÇì9a7pG ×ö®é2®§Ò–àˆlè”Ý…»5 ·ÛåÏW¡c"<={rÁ–Aü­Ì°wM QTaÁ9¨_†mˆ{*7`c&Qàœ@öG…ÃQS²vD^t¤ˆPÃR†ü3æäÛr¸Çž8Ø~ö¤*}ËhÈ·NM!]óy^Ü*®FòöµÔcÔtt˜1ûcr”A¶ëš§5;Ã@döP ·Šb“B:Á 7ÑÜr‘¼3!¿®XË)MjqÐŽ˜+³H¦Æ‚<1~1Fcûà­`‡uåɋܷvŒtÓ÷‡ŽdæžÊ·ˆ“Á(*‚«c=ô-ð]xF.~õ•}x™\ÛX•¤´Š¨:IT£ÁNsÔ[v€=u dkÈ¥cèºf%̓ÙbÁmƾ¶ÐDèù–l+³Y¯þKEÖ^0°›ž_ÉÁHÓ!=eÔÿL:P4Žñ-‚6²É#,^û…?¾ân¨ö—ë îW’µO­ìΧê©÷3ªŸ¯ó¹í‰×ΖZ5…V{‘¡OrhdOêggÏÏ?¿×W>}*¹(·‘‹¡„­„OUrSD}VÉ5™~TH=_¡ý®á¿$câøßl ÷ÑŸˆéÅ¿‘-™~GÀiþMGÃãèšI¦gá ÌEÚ7¤Üsoä½p‹h"§à-­\Žiî¡&!é=«-ãT`>Æ“e}©<ßcÜ+j£O ÉH1CWê´qôw³Ç8#Sí›A•&Ë’“îòO}ºêñÏ?–.fKPÄóéï¨L$oR‡‘K”@Ìe;âàJŠUq7pþâICè8¦ØMÃ"|> åUC:æMäÝèeJZ\ºD"¦däæe ÐZ`v„§Md‘Z_œ7è¶Ðø×Ç áfì‰XûÝø-X©W¥,Š›ëòÑ£U ¨†fxúªÊ»‰ÔnhÀ0ãâºpo¤·2õµÊ  Ù¼p/¹~5ßõLUEÆe#S1²qÎŒåÓ>šX3dM¬pÜ ÙСô«qæfs{òÐÆ“®8¨t¥Ð”€o8º˜ø=~–X„É(I‚Lì¿Ûwù&íz´4ì±Je <LÞE §ßÑWSˆ³„™ºÙhxÓ‡ÑÚúFtÑuC—ì¬K¤gÉš¸ŸOpâI}ƒ„B؇¨ „šÜ Ö¿R„pà¿'ú`ýÝ I_Ù!%Tì“úãGOÏeèTÈÖ©"ïd̺JÓˆºýècòa&Ì÷aª€ºeJÔ.Ü RMFŽ#ñÈõè˜l;™Ú˜"ØŒ«GåýA²è¬ÅcúHb°nm—£û.9²Jÿ»xÈ¢ò6^+¤e—ˆÁh–Šš¤‡„¢·“¨qBF0j›æw/+›[r6*ЬO“ž †ÖMï¦èOé- ÏNþ«d®/µÏ È7&­eãÎqó¢A,‰#ûÂ~d)¡#òÎÔÓÚ¹q`s&{À4â—¢ªåä­ÑS0ŠSºæÒºIÞјÎ*òáÕ¬EÈyš ù’dt9x|ìÌ—Èõ[5z2âwç%îNkãÍLuä7„ÎnƒdÓxô¨*~‘ùFžÖŸÒ "{Ú¤_¶k¨„Øqƶx,NœcóÞ]~æ¿'Y“øu:""oô⢣<Èp}›‰C__˜âYÄî°¢”£edÒÍ(tq¸Ù:Ù+ÅåÌÔ”¥J¦ç-1_±½dŠ•óYSPŠ…EY2¤­G9’„1U ;¦Å©A K—=cpít¾‹:åN…4GJ#<³£«;²9Ú ]tt7‘s]ÙZã|¼Xf^©¸ËUÉÜoØ·£„Í‚_)Î!b¾MºÖð–éžQ©ÆˆÁ Âq̾8i’Œ-Ñ’i(ų­Žï„"˜©á¦°j/,­šÇk© ¦OE´çOyX’ØR˜tÿ})Vå®rsŠÅÒÈó‹ÝèñÅ{0AÍž tÊÙ^ÂäFâ½¾û$‡A‡Ç»¯›{l¶¶Q>[^?¯Ìꦘ!/d#7å1¶Yâí/[‹Ù¤gΓaòzPZŽÝK)+Å»˜»D–Kª\¢ÏòŠ#—›ÏW¼ã6˜÷ÙÍv2S³(™çfÞ1Qä0˜æSAlª¬ß›«d³IË÷Õµjÿ dj¥¿Ê›J«M†x£ÛVi®©-˜€ØäZéÙÍ›$õýÔ‰±2´ûìHE6fl3ê‘Ë߇w™ß™[P îEX®Hóܪ"p6›ì^nn/>K«,¾Põ—ú³N0¦ÆL9 JÍzA*{ò §â¾³´ ­¨ñœý/òíöô:m²O IKb/ü!)òK”¢EŒF$»ß§Q ÈEåÕJé]袈ˆ¼Øµ˜†º74-ûè=0Ù8Gêôݼrz[¥wÉ%Á»¬Xê¨o¨qívùì¬*ÎÏÛíÊ7ÜŒv{ý›Kë]bI£ Ëà A,µ°  gîÐØ$+^ù×tm0î^戡R!A=ðz‰hè«U¯x¨ŽÅ¡Äa¨Æ@-¥Î‹4‡éå•jd!k&KY¥/„‚¹œü3Ï—hL#´~Y”–s&”ùí^Â8óøù²¼ rû¤ÃºÚœ¤Ò>€7´Œ´Óév'vš!’Y_wôq1Î~þ@þì}ûc7òø÷×ðWl =Œk°qœ¤µK/c‡?>`·éÙ)^ÃÚÞv ~4ÉýíßyHZi€ÇÍÝÅw »Zi4zÍŒF£¾OHt¥ä?РÐõ_\nwÅóß Q)ññ7Ò}ôÂÔ’µv/F!ã¥I‘J[ÏÖ¤ûôd5‹B醕§®`Åã½ÏÙnw0œ1£åÚºóøß±Dž(¯{ýáÈA_…¼Eæ[¢G>ËÚØùÕš‹YfsÑ»#4‹}¦«Aä£ô=nTác˜VÔ÷ôÐÚQ)ŸóëV¨KãyÜ8X/-Âøœ%Ù<ÎëÈ4¢>~lýìÎðÂzétAÈ<µ»ÖŽNŸ¼8EÛ, ?qÀ$Š!È,yUB«• §ê+ q='pFx2K¥CÓS`”…Œ‘æ `‰æv6T2_˜î)6ÐIA÷â–M2vž.  £I …ðJ·ÛÁ{IT«kfø¸ýæV3ñ‰ŸøÄ'U÷æüÊõðd ¶\çWø0¼zBÞå» bňo¿~½ÅþÑR·Y=DvÙ¼r§ýkR·RäJDúyÀð&ä¶/€&°µ>9ô`ÞŽÀæSÜl6›A4ðÙ¬]›‹D:錄…ÂnöÑå‹<·êÀÁ _À’Æš%4%óJ¶öù„Þ¤cg¼ò?Sô M \BÉ®ÜÛW0§1éäi ÊääcÂ’^UlŠ÷rawßÎknNMRtªHà¨$‡á]*6vÐaÈz6G^~ xRŽÃF`Ÿeÿ­°®Ìoˆ)Ý2o6ñzg]˜®Ó 1*­›!º0’ØâL®ìF€pžÐ.­Ðì4˜PwfD£…rƒ“?Îçƒå?–‹¤<(Ö_£õêú2&[?Æd•¸¤ÖiVyæ&„Î…OmÕƒŸ}1¥S°Õw¦‘¹Âºg±%5 í< ‡†Ê¹®rg!Œ-å@©ÄÀR®DžŠÅĘÑé:ï­ãyÚ¶IöJdæi{‚8Dpˆ:XÕw/~¤Ú5 oiKå¤VÖp/' õÇ¢¯‘¬T²/öö^D»xÜцEdE äüÂM‡mrHâ’0œ‹¥úëzÁ´r¢¯…Ha¡!`‚GXI¢hçâi‰E#ø Ë5›H{†±ÏÀ¨Y£H—È=Ë:ï2 7ä"4W06^zßâ@øg²Š27ƒ‰¶TÁ‚¥M©hâ€WÐד²³–kwl•££ƒÒp:¢Â _þÍ­b‹k:»O/Ž&cÜ—xaÚÜí:`+ï°}fa…eÄ;ÒaϺAÚYd©”­Çßzu&E4¡q ^(ŠØçNE^«øZ°‡".ƒ"Ex9 SsáÁ]ß ã÷ÈÑdïÒ¿ÉTÈä)yIšÄÛ„á¡ß¹%tkжìóî6z’›_û RN,fXªˆ3S!‘GàŸ.dÄ Y‰ •Ÿæ(¥Ä'V*´/Î…ú—Y;BÖr ]e«lŲzöHlGö0ð{73¥ÉSmýÖØ•þ¶êÕƒÃVÝj»^?XD!» ÍœÏÐëö1¾é™AzêµW{VdËVµõ»•{Ïcõ­æ8ý£ÕØm4vÛÕÝZÝ:¨·väK6ar+iÔ9û7Ž€¨a³Þ®µû½]ë8+sg³Ió; Fõ jí6ûͺµ»·Û~UmÕ7oB­ÉÙœÁ5,ÄpˆC”å,—†çŽœÑ »Ü›«v\ˆÿÂíjñ_Ýјnc€ÝBÌÆVPh0=ûÜ1¿Î“”@1ÏÜké¦Höߺ¤„Rí M ò»(…?1QLxÚno˽ì·„º#y³°>^(-rËãòò9ô"Kâ2,£üϜַ¥[ ÛR nä{ócwÖñóÔ*oµ« 9Jï|r=¿Õé~÷¼¸t;]êlÞÙà_t¯Ãª¶GŽãY¯Ü~Ÿ/ûJÏä‚ʃ´8Eƒ| ? z«%ãÒ0Vsl;räÑùh:³ÝêUØT…ƒ¢­ds£K·dØp(ƒÌs«ØD«èôÏ"‚Ì<~Sá¡€ÔÙç¾wÖ¿1¯IC†—íMë _f@ê¥CL•ñ¶ñÂÌ}„®žÑHô¥€æäkkަë÷eB\/l÷ídv«öYŸ|T’„òÌ›>æÃÉõɘÏaõÝé,·,3,ûדÊ̱w¯ßßÍ«¨¸kQ zy±B()Ðvm)óþ,ýï1‚ OGÂr.)EÍn ´x,Ú=³T¶V‹hÚîà%`úÄ6..E¨«~Æoí¤0`²¦(Ò¬sGªHy~LcÝŸ¼'ü7IBÙëä ²(]“‹lÔ¨ .§ÉùÈ`|º é>ü€¨i7ÈÈ)ÅŽýå-/{8tØŒŠœü]Ùä1Ɖ¦4”1A@®‰‹Ä³%ßä¢ÃlO`„QÆ+_Cº¦¦ŒQE/¾rÞ|#î£Õƒ6£ßŽ2.ª20àÇ5=!Lñ’Bqa`Ð*' r"Ïð•R@‰¶ºC9Ù Q¯X¤óü‹nŠK°xU\Pú…Xಸ‰œû+»±a-ªø’¥ˆ º¾³ùÆ\Ù|ú¬ú¹®-âß§‘‡¤ôpößE7Tvw¤ë· ìÆEºyäMÊ+‹è·œà3F÷&37þ$bzù˜,‘|y¶;œDµ.†C{ñÙÚâ¼};Êœ*…nî,£$À5:[“iˆOCûV×™“³'øÉž&ÜÓ[ÉoÁ§¼¥Êg©œž%U|Kéó²÷<¢ÝCìYí°¦ø$Í•3LóD2Ç^†å¹‹„ýÉ=Pß|ˆJèáD,€OD讎:{™üÌxßΩð³az”ù4YW€ø4!WI—n9ƒÌ÷‰ò¬€ò©‚¬ó‰¬€bŠ®”xß2ë.²¦«ä¦©’xÌ#·è´;P¦Ë9×uLÂ-ží7jDEMŠ”DMïÚ SNÿ[Hm¼qа‡£ÇÑæ…t9´§7ïÜN¤˜G¨Hpy•²sp=t»y}tôDúI›CJMÌ“,šÞæÔ[9’^J<ýžOžôØzewß®“Lnœõ¤t;ÏlЏ¸žO®iÕQt`…pìv7)݈o¥¢Ó4¼Œg‘}×°V`+ÆÖé ÂKª@ÜRÅçñ»oˆ߂p»l kò<¹…Ÿ ™sjÍ·û/} Ol+8½]X-X§¯4Óâ@W‡Ë{.u<Ì!Ý–$´Y:y4²rï[ÕÝͽb.÷ÑúÖZ[ùᙵl­ZÇ‹Öê³ÕòÚšõU~²¶Z~þ|õû•íÞÃ\‡à(eƒ|è|ÈÆÍtÒM‰!Ë¿ï±Ù îß—¦V~ï½¥( ñ)žáóù/õ½W{»tñÖ†r(–érí9,ÿû°\’,~OB°fÙÙ¢FD£bàüGîr´¬Ðc“a¨Bg䜃ôË>2Lß‘[\Ý]¿è˜ªôܨE›FbȽ¶ûÔQN]é¾½„Åþ²GÙ%á«ÞÑu+I¶VãµZO^KrÕn!Œ¦=Öcá¿Eõ©ˆÝD>¥ø¬LûXŠ6o¯§ÎGÇ6 ÅßZKÅ ëûÂv­ßÃa}0Aô.ÄìÂ@Ì;7©´>=„>Cñ{l’Bžyæ©è#]ìù¯ï¯hã¥L–p§2ý4xª÷9btÜå08!Ø^òI6´sr<àí"š a!á Þ† ü>ˆVLƒçg¿è<â— Š; ³TƒÀï"åîlxÝ’µðKµQ0íPT!˜ltÃ…n¹Q¥…ؤZ€<\JÍêZÈ‚![ ü¬µ›pxêgi;þj¿xøš}dý}ÁØ'?Bú§\ QÌ/ÏÆÂá=º Ÿ‡ "ÅÅ«q'de¬ài~ø:yøc¡°Rü¡Zü—]üëýÇ7oŽ ËÇøW^>ÇL'LÁÝS —¡î0bù8'j<.•—¡'–Q3Áp>çF™.,°c¡ä8ÝÀCõ¦/¼¹ÄµÿŽJ‹ ´RÓ;ô«vñ?V»HlŠf±ˆ^¼Oe²¾ Œ{,Y~`ºŽxË*¹À—¨ŒÑƒ»è#" îÒê~…ö—l0š(¹Ç3÷[‰Õòt¡ ˜»Ã.ru‡~'FíK?ܯéad”hóX²7ëû«ìSÿ’Ô1•„¢PáéF†ñ6]f<–!>z½E Q𹄇`Á¬ç¥2æP‹Üõ] •—]{=^«.äÀé_ªEGÓ˜½(ÿ*b`k!²Ò3êóRö–ÇJJòýܱìÍiÕÿHÝ%bÝ£GúÑy§Õftq®¤Å1þÃŽ k±2õá‘Ô¸‡ùóVÑ• =u>Ò5»·Ô|6'¢ÿÀOµ.½ýÞŸ6XaßÍk~ü…Pï(ŒÏæSÏPX Ïaƒ~HλÃaÌÎt]Ÿ‘-õÈŸ Š'S!…ZD¨ÇÖÑQ¹ø=Ô£+ª@KK2¬²+rC€ö¡‡+BÅS‚ó~!ü¡¼0:9€òÆ>vE [Žb1Ô!Á¢Æ“ ÁÊñ´íG¼'È]t¬ù]„æ«(ÿw2Å:!ïÝ>y÷ŽK>ôL€®y@Úm®¶÷O²ù„~Iá¥óôͬιSï0«¦Hói]bEh›O*:ß$TÒªî6/ w ‘¾û‚úm6w3–p„Õ¥ ×çϬfîÿt u8¶Ê_GåóŽÊø*·I2×Å‚&=ÓÄj<é¼rì·s8œ›}÷ùEÓ[LËÆñ‰-ï"Õ$hr¿Éæ·ú¸i·¯­Æãìq–6ý¤YGÕúq–¾“^nY†¹+ð1’´$r'oðãù³'i¢•Nx$º×ÚEÔ ÛïîrÈø@ËáËÙ¬…Ö3s¯©ûMnÜÆ=¦Šž.rlñ+“Èj¦‘BC˜WôÝÓwšº¤=ñŽ­Z¨ylA i[ž–~HìÔxÅ¿0xÉœÛ`Bj;9¦Hñâ3š!Ï/j< v·’6â ™)Q´LBõiqT²eî0[D.þ¥IÈ><¬„o·”12¦×;^xŸ‹ì¾@¦¡.讚£Å£åFØJ˜ùÓ#C8Wþxñ©#"©ð©ÒƒÑ7y ýO=SGr×)†t’\¤ÙÑ݇%]ª-ÝÜÇ~×öhÊ‘_Ò…#Ãuš´õ¹ñ®}ÝÕ÷mìܧ[¸‡• ¾ÿþíݪEæ®éònË-åg¸0øè3{·‰ ¦çŒÑ`˸WL2A§Sonu:(kâÔ©[E%eËO?%¸¹œÁñÐæKZðßú“Ø»ÔXÛUª¬D°¸_˜çmJ¶”[(•<¶~óGoí‘?Á¢èè_ÜG€VË¥§z•í^aè©ÔíN;¢ØWÝZi½Ø?ïv­bÿƒ§õõl^Ÿ‹Þا³£wžî”jºƒÝ="lü„¡Sv—ç" ƒôã+ãÄað²eØþô«ëŸ6·¼õ<{2.Ť.Ö~ò±¨êìIúÊ>9Cùå$- àߤ¤Ã¨-]—6çÝ¢H©©aŽM~Úño^åIÃx«’¶Ò 1æná8üàì .;ø]¿O¿šÝ~áf·YáÇä˰'M´ý¶sër?ݬnŠå\h*¤ÙyÑ2*܇Uá†`^€Óà2z¸t[úÒmÙpÚ»ZZ+•?£h™($OéÕdûª7š#·žxè•¿ÉñÐóÉÀ¦òìdÍÆ=ª|êÍ“O¿H–Ô1wÔïöx·¾„±û®8À{’_Ê ÀiÀ-º¨8IPŸjèŒÏ¬ì·õmp|ìe-¡~‡.äŒVö8ç²þP 8¤uŠ«|¥â¸(ŽÅ´"I™ÿ¾Ñéìz(^ˆ©Œ(Zéƒ*¼Gßï`&v úaøÜm•ÆÎHÝÎáë™é×3Sqfª^ 7¼¯ßÇ!êz†õaó(ñÎð’¸LaÓ¯ߣä’()Åe¥;ºPyYç »˜üÈtÖr×NL¼¡ü9»s 5ü'ô«ÆiîË‚à.<ë^¸Ö=ñ­98×b~'ŽTûdqÏ'X ÖzHÔÉ‘˜Ü»9ІÁ]O‘VñhÌ1ñ’juÉzZº¦ÅZsÐ_¬2‡ @-íoÖ%%Ã_íM@¾H;[-É^JìMk5I’%ÓÌRöŽÓ:YÈŽ±«û]öosŸvkýgÔìäVçUÆF?ÐC±VVKGG+x‹î(˜I¥ÅBÄ÷é#Žûªøboä^ʰxŠËƒ™ù£žÐŒÃ?$`‰ Ã^ˆô¬|ñ/K;ˆÍ+ÇkQFg\<i3ŠÖj陵0°o`ƒ¶ZzZ*ÿ³`ÞuœnŽ5„&8²»cãÔ¾lâëTgªs¹i™±÷J´8¹· àwµ6ù»½6M·31à ÍUèÁ-ö“¼†cŒKI5ž$B·‹S¯»öb®¹)Ä?‘á¶.°«`< E:ÿ’«—í=l}SY!vâ_VîýUÿ£a‰‘T鞘ܠh‚lþÕãÒóÔ ª·ŸÍ½Tòä¸Òö‹à±ŠÏN볯Më‚ÏÅryBßÃïÞvysíóþžžÜœNÙ(¦4ðÛçBCJ8rÞM\h]¾¸·v÷àAxÀ‹¨,Õ »8óGƒÒ­Öâö×Å7{ñm]mŸµm¦…væÞUÖJÒÅ…þG·÷)„¼i.4Û¼]pé¹Úäã¦|WÞJ Ü—k‹“«UÚÊÃËÓ½¡ãî6^«„CϽþ Æû9¶´ =:*¯¼yƒß'ðé ?Qæ®ÿ¤´zù´´‚W×ÈéulTÒ„jã6,/4GôÄÛÆtÑoJ浫’y©™ªü¹È¯é>X‘Ž8©HÐÜâªÕó’©æz,ú'à€ókîæJŽú mÖ*ûL -M_†‹CŸøâùé%:a~D—6œuë7ئTw‘·£Þ"tçʱîùÅ–”Çô+GxÉB HByßPÄ9dšÈ<_Îà¶w#ý0å¦CPhVX±ûWöM@›#uþ%¢Û ¬?qódŸýF‡¼RÇH• òèE¨týìöo`ÓÛ@×`y`èÑ‹¶Ï*æ¨#[‹+š\š_ø“ó Y)ãÅ:xd{l[ù#‡ËGÉuáØ—7Å h¶Cˆ@’èBÓÉù…ˆ>š[¹ÿÙiè—AEçÖÞD½·HeCTxÍgs³@fc5c”»7G¥"ã슣³IgûÃ9¾ Þ¡]÷‰2ÔÜ:ƒùÏYvõó•]ßkýañð5¦[ÀxVþëO¦.¯¯üÑÛ‡=¬|˜ÊT£é©Zëì´·;­zû°y°p”K…ò†‘Óýç§æ%…®íuN'.}Áihd"ˆn×jâ~Åöë×ÑÍMñ­¹ÉÃþ´úk½z`ÕwööZë2•­Á܃݋= &} ˆRŒPkŸùÈQ`ØÝ‘˜ ¿ ]`õ玄…YÇþžÏD|ø?^€½raÉ ÐóYân×ă­l`Ýøë­ç_Yε¢ŠG;aüh“½Þ:(•TKÛ¿·;¯››õÝN³ñr³¾ß^€«Ïµ½ýF³Þêì7jÉj½ä[ðo§¹WûÅ„Ølìþ_Û¯ :ó ¢²ùûnu§Q¹’ ¾ª¶6k{›uD¹.åÑjßÝjl‹rg.Zß+ëI¯²˜½V«äú@ôl •µ&Ð]K¤wøÐܬ½~MSŸÃ ”°­ÃÙ&@ºcZõIK„,Ú½ì! )Ñ!˜X†‘.Àv¯¯˜05)g2Vag¡;ŠohuaQØqì8£‘ ¶YÝÝîìïígÞóà`fâÈd2œ¾u¸[ë´Z}×z§¶»Љð¶ÈºùA§ë¡ å™{ ¤æ 0ò±ä~«$Š6íÃ-|ôÏÎÐÕ/VU‚lñ tZÂ1›èˆŒôp§¼Ð¬‘sî@M ö¹vŠÃªDuƒ3Bÿ¾vpÚ# ]´è Üs^Qj— íÕ¶úŽÝõǰâÆÖ¤ñ€˜me¸€ž¦»J6f+ΙÇ|¨†=AäØz–©k÷Q%†Ää~¯øºÝ((oÇÐh³ï–2h[Úu†ÂøÔ÷(\•:):½±kÊÑ›ü†w"'cþÞ•z(„6^À‡¼Êr¯Zì2£”¬€ (,%ú›¥£ž×ǩӪÿßa£U猛õZ³Ó®oi~ÚoímwÐ.ºó² 4¤Ym¿‚\ 3d¡yŸâÄ‹ö‡«,G f*’6“>Z¬²¹5f~¢™“~û¦”¿ývà ¾Å+Sí8÷í·ÙâZèø@FÁ üh%M{µ®Ö\Z ”ûø惎J[eæ‚Û¢FfTWzcXóÞZ(8qiH¬ÐÁ¢ÒtЦ–¢= øT2ZW§PìÑwuˆ ¥|é^[éo)»ÄäÎèÜ‹wË›¥Ìä§b†s:,`Úi;TŸeÐ…ÝŠ8¨Ê/Íêu²hšóx!³xlÏúc~ŠbYuÀuæùEøšÅ]e½ºð‡£)™é{˜b‘-DŠÃþäÜõ¦å%0¼¯Ä%~–ƒåæc:în\Z¿wê¿V› 0¢–‚0!Gêw@Ë͇emSÈN§¯ €Þ:ÎÐBÀoQ*”ž“0pPWŒi1’\*#/'Ë ¥Ÿ–h Ïéš/x¿El¤‘ŒéúŸsiã €”ƒÐ,]¤yÎJ¼•Ã’¼q+6ñ¡Ø¢û¡Z‡jrÙwà±íS…Íß7—Z³âÀ±‹•B-Gn˜e˜PñIZ]›¤K¢o,M÷#>¶ÄGe„ÈWrCxBîæzIkèDVÕ[¿JŒ‚›`äCïÃè8Ø~1ð( àgvâÓ0£iÜ(†"ºÑ N˪É%þDª3èΘ苂r¾ØÌ[ù¼h 5£Ø„‡J.Q¨54a08)0[1˜­yaöÓ`öc0ûsÂÔui0©½TI©º¢×Ìe¼™uë5G¢<¦®£pR…ë‚ímaNâŠ`õ#ǾázEG$-ÀÙHÁ¨‹ËEʾ°ÃyŒª»Kå.œm@'ØtÓ±¤thÙýìWoÌò²4 U_ße™>àë…¡ÂKÞKaƒI9ÅæÆžWú4mþæ–YU¡bšÒÜå³¹÷óæý(Iký…ÙéþÙD3[ìgyLùÄÒ££Dê^±Cˆî ¨(ï ÈÅ_Ú<%µŸ…'}&x‘àb÷ê3N48­¿}€Þ¿©{…°7U_¦æ5{ÎøfôT¸ Ã'ZÞòE*¢K D„w176p œ{ØoÛ ”4ö$‹ÙeÖü’ä±É·gâ.¬år,þÃê¹ ¬É0,í£ŠÐÚFXwŒ8ç€e5í18F å;SøÈí)Iêˆo2Ó&BÂv4}&$džU¯óÍÞ¹pOÚ*ÏšÆÓ°OÈC?|RØœ´¤ÑÇ©‘ Ï>,º)ÌB\­ïÀvx2ĹÅaðìêdìl‘3„¹ršËŠ·Ò`mÝ"…ì:’]Ø×ÄDE2‘+sG¢Òwd²œQhrqšj³4#Eÿ”=j›ö÷ZxrÔhŒDDàÅä‰ ë¸2ࢃp5gî¥iË›9Ššámä^=)þ ̧Çs¯­'¥§|Íó±…°ùw`Í"{ëY¥¾-,ùP­}÷»g ••ë…a¼£*LÜñêòÂd<³çß}—E.¶yÐ:ÀHŸÃ¤!™:‘Rs¨Or«‚Û1ÞnY©›v_™Å,ùÌËšž|¦Yg¨Jf1A@¥ŠH­A<1™Ÿ!*Átîš„÷)ë6•诂o@HúÆúægPI6Ë ý HtŽGGÂHz΀âР(KPʰƸr†åö´}YN^–+ÆHsšìu+3h´Ý h#%íYP …C°Œ³+ô=íFŠÇ‹¤5ÃêÉ-n²,ZF¡!‹ÅÂZ¤y ­Ñû‰9Ñîd4b ÊÛBRYØC Œý¾¦h×ÔÝ#<G^L·–ñö¬?M†â ï«S{èH>“ð¸ÙÈ#íd®’=ŽŸšH£­Ø)H63£f²‡ŽWkž¶…uŠ-ˆªP«£? ±„< èNN¿±}~îôLîEJ§ðN1fuQFk¢º²=bø¸‹±®ìN¼`ùÔÇþ§»Ç¨­¡¡@Œ3륗{ø³ß¬Ô3†ý‘þª©"W²éüK6™lɈÝÄóÆAIô[Urd0¤™UrÛFRä\†Í–ÞÃ,)faif?jvK[2‹œjz‚t-Vªú\«u^VÛu<ᆽšÌEævŒÓóçM—gØRi iaÈW{U¯ýÒØQÊ= íDDhSF‘WõE£¦{o ™ä:äv>æO«@—O¢ÀÉXРÊR¨¤gU¯—bp‰ß«a¢<)pìqЙÝ`ð!±AÆlW±ß¨•´ÓmkÌkÆv¯Ÿh–™FÌ m£!„šnyi ‡P'X:ìdsúë¿eàÕcò¬•­€Ø¥sɼŠÑJ—$e¾PSjÎmÜú¯‰­¿rÔŽá²™>Ê@ښƇûÉhº¸5À:l¹¼”ÃgÉ3¥y û³À;ça ~QWƒ^&Ä õ wÕOK@u”¢P– .GkK‹³ŠÉ ôgpŠÚC ”Ž‹Âr=‚e+Pt½sËKoñþTJáèŠ2zëË)2ÃÅrzlí(Zì¸TĨ&"µ¾q‚R¸Sf0ì%̾Á ôQ®7…i–½D¿þ×,{ÿkMwlnçµæM1rÕů)ö­áþ8¢>¨Í¯=¸³òàËÖÔf(`œMµA-®5¨¥( j_u_u_u¥3è&« rïáá¬Û õz\<û8¯ ! ïïÐ Ôþgµ¯úƒ¯úƒYúƒZ1{öÃSS}PKÑT4o¼ÄÕ¯ŽtνIæµ _u _u _u _u ÿ‘:…dŠø¿§eø_½?ü•µ©:ˆZ¢ b»öóç³`ÀïèâægûÒVîQ•œ ¤ã/K!ö‡ÐH¨[}Mqµ/÷È+T¤ súÖˆÚŸ¸9ú¾Ì¹Jr‹ѼýTy^»¨ô1;ª&­§Êêyãþ“ºLò^ÞxÄš.>¡Ä¾Ð¦GGoÞ d{Y46¬yÄä¾dú¸D[y>UšO“åo+ÉGäø‘=&Üã²/’äa³çÝ?A”—å I\âÒåø©rz Çš.¼?ø³Õƒ1Eä\cie ’jÃWÜlË‹y"Èûèr½ÒÜú¼/Cq“‰sïûâÜ÷ȵS9öŒ½–1ßw÷:­ƒƒ†àƒ)Œ<…Ogâi,|áϨ–´8X„1¶aÊ),Ù`±!ïˆðؽÏÏb·ý/œ¯îÍb«{·åªÐäDžzîÏÉQcšŸÊ[·Èº8ôó9¼œ}? vZ_ùæøæ^ ùf÷Ü×9çÞC1Nÿ+ßüÊ7ÿûøæ^"Ûl}¾Óqüþ›ëõðúzx%óEóÏVmÿlÕnË?[µdþ9êÎÉ?c˜æ›JìÔAzO?ƒúŽ•ý4z˜]²Ê++Ké뛂ß}CÍMAç+7—›2+m' ݃õòÒ[òÐTf©Ÿì‡nì”ʵÛñC¾³õz2)ŒQ¾(m¼%lJ:MãdÒ>¬j³¾u¸kj¥Ø]•{´ciDøÁ2_¡AzÎ7G;f^3tœ€VRç`o¯¹–¬óîŸKò$ˆ 3&-ú{©KøR>’]¦T²Ås«¸·*llûðeû`Af(¼ÿ½ARÆBÏ^ƒ‡¸ž©vªÍFµM­Ž´ÏÐΑ;»Kq-ŠåÒšu r0,ßŃÕwêöÝñÍ:e4:3QÐGbψ¤qØZ﬽vK…Lb«6 "öÄkG€œÙO­šÞMÈ-î¡—¨hÎbòËWÇ 1n ä]x(¸@rÆŽ·[ÕÉØGIѨ.|_œ^žâÌ:9CäË—¶Û'g\zôQxæŽ(±rU‘,”e¢Ì4D0ÊHe›øcÌ©›ü¼~­Ò0Î;ñ¡BÈÊÊøF#WH·a)QsB ”XÈSúqñù†&n™0ê&Ϫ·êÂä(–y+R# ¤3²ûGÕÕŠáØîú^:ÕAÏ“E§F[Ž…ŒSŽbΘš'¼Là}m’ÄAfɨUÌ U³\õøÞËŸ7wîyR`äßÉàç…À2¾Þć%Yå’uf÷§ M‘…fx®HÍ¡Qµ„#)ÎXÙ~ÐÂ246a·Ê2r±+”7›MÄ0A6Eb‘G ®JÌHè‘7Þâl¤ú}Sº@d¡.Ï‘;ÒªÑð.îEƒŒ)Ö…Ñ~Y Öþv}3Òvò.œî[a{6é÷oŠÒ-*®ÃDKb·ÛÀ.†ÌPÄ„3˜}¡ WL‘®a °?rÎ@zG•‰gP ìûý“r?å@TÃ΂7ê(ø­¤Ìkø§’•·ÔËÁò¯——³‘~#ˆjMk-á†PœÜåÊ ×#1ꀕáoö8Z¡d÷mak¼?DSXcxcw»äV–®V-±– ^Ê_(døM‹¬áŠžv—Z ;wð )E4 6ÓwÿC»¿½ƒú:»p¡}?ºßZáxH¿îx,|HRøHÚиËÂÂ4¨ŠÞ@A 9ùßðÞ8;©Pä ‹(lÃF²ï žæ\W Pޤ_1$ 3²hÄ#ü_¢ýŠcãžsêßãOë0mÒAsÖ´ÅàÅÈY1e¦!Ù¨BÁº·ÓÜQd ’ïȈȻF•éò>y>Ã5‚õam˜p%rp #0‘~1rm}œ^žV){r„ Ê Ü`(`o+œ“4¶@‡6,zBV˜íW[UÙ3ÔÊ-¦qdék†ÐQf FÆÒlÒ¹­f~¬ ™‚æÃ¦×(m4n‹rjGÕá¦ÛaŒ'Ÿ·r"‰=œvÔæ;På8&¥èÙ† ‘å\XmNµ¯â\jþ +ö˜ Ö,pÃŒªÇ¾3é‡þ‰uƒØ×•ñÜÒ9†7Ø{özÖò$-_Ï×–O]o™? n|3D?Ö@rˆÚ¢•«ˆ Š$›d&ÚŸª’&]W˜Â1{ÿh›c8ˆ>§ÁþÝàhÝıBLèeS…Õým’ñœÙdá–‡Ü?wv­ìJyõÉÚÓgÏ¿ÿ“jYë'³¼ÎÖ$û!³? ;hŸ5ÆIÁÝ%XMß0†)…ûQC÷ ¥yÎTLm1WBÀôõø÷ÛŒ˜W¤ÂM̓ãXïã9lêxÀÞ´ZÈ;H‹ô%@&±œ,ϰsú)š¢Ì¾_–íÜòrúA˨!ƒ®”`ï*[µ&ÅÐT2èEÌQÿ´²B²(×Cžƒ>ìÞ “ š¢•W¬b¬Æ& Í´²>•NœëáÈÒ3[ßY哌 ÂÓ˜«x&Ár4éB¸JõBáÇ)3€F>$À d&­&Ô)ÿí†)§‚Ô ËM𪤆96»BœÐ_ïc»+Àj›Û¯êÍfg«^=8„fLÑS“çt¤_ìú\x›BÑÀ%+÷¥?Á®–øëvCáÕ'WúþˆÄŠÆîý€‚x «=9?æÑ< 9dî0-¬…j£Yy¶²aM<ÔÛàk ¯ÝqÁú)¤ H*ÔÁ¤üúWºS©´'®”ByS~Ççü'Þx=L{–2gy—6oõ—µÍF {¡Ú®5ìüŠA½þ0†³òÇå•rþ„l•«´ÇŒâb; óØã¤1; Žœ1igE°6Tá˸Óß3O˜tO—Ç#nj{u·YÉCÇ+k+ðOy5Ï_v›«í}ñ¥ü?Püs Yì""&ÚÁÌ ÄðŒòøÿ@ÉÎ6ìq"º]=Óžï\°7Û€%_Øi evu‚ê ÔsBc AHi?qaÈUCRWmo÷×z«ÝØÛ%gùð0méÈõ³)/êð©O‚šB€2s“»=åß4Œ^!ƒ…ŒýÙrSù˜uKÚ©éN#R¯‚:Âs<2º÷˜DœÅïÀ£Æ (O0"Ú~dÖ<£6l™®¢Ë5µW4UµêîÞn£Vmv^íµµUa–—‡æ¦ÊcÊõþ©V¨ó@æcCkÕ«$P“Õ;¶s`§øzoâÙ­á­ï,‹ÔìE« Ý/àúÔí=ÞOèŽ'$ö `‘è‚kB0ÑNÅR˜ïêÉjÜÔ«êÞœ_¹žÄèV°¹h:tÂ_'/‰«_Ö¢ç^ß¾2(”R“2±ç@#±6=`/sÅ÷ÞÑ쨓[ébªxâ±Â¶‡þ$ÇQ+ëáégå*§^ ™»5Wsô+–K“¥’³ê ØG&úIÅ–ÂK6ÌÅoA5ˆ“߉ú úDh×›E0£N‹)áz®‡^‰:< ç=2†‰4à¤ÐC·YˆL!oúœÕf‘ 1—\Sú,2²Eg‘ùQŸE‘/sÌ¢”׌tâÿ}ýûÏÿûóìÑž-³µÈvv67ÆR¿ÿ!­WNㆆ²< Ú<”_ûDý8ÐØPï/ϲjþðfDÄjkuee­ÿ<]ÂÇçøø>–ËðX~jmö€gã+v›‚¡“`‹J¢ü’Õðº%Jüm„‡ î¶‘ÅüZ²~ÅÀ‡¶Gp×´À|.¼!à@Þ`/z]Z=Ö9°'ÔpN¼¾;pq‹:ĽO“±.4 ·ËÐ3=vO'9h¼ÄêPHÆ_‚þ ~Ï=sY,ÑÝPÔ›ÚEÀfØí†°œÑ%êÜÑìȹv¶ÁúÌÈV¹D©ñŒHªV ¡½m(…í%ëq9$Xmå}ìáJ†½ÃÞ>ðŽ éÈ„ð2…¨íãNuw»Yïpö…j­µWD %‹“èe®HváÆR¡Ä{1£ ÜQ*¿vÞ@f SNgâ ¹r§“[\þ°‹U‹ÿZ)þÐyƒÈw ¬ÛõƒûC ûœ±\ Z%|œ¤×‚â)j¥í¬mðìŽEÙ‘4t\¹4¤hóc<æ‡E¶GÊ­š@z²/YOoSp¡R´ÃF ë$ñ1>ŒÂ×{nõMø¼²OÒ²Š™æ e‰Ù¹°va>·ptÈŽ]Ðá½èÃ|n5oš‰qklÍ6 [Eh(Ô»{ø2_$Åé#\ç š<Ž×*Îï©^Q]¸Š Âß°›:øó„^ÖŒ)|¸Û¬·Û¢@;©?šöŽ×'ô‚ٲ ȣf×Ók§b&yCsÕ1fkDï ÷t»{Á9ö¨èø ûîxx“çþPh².q¼˜Ù]BÄ2„¬!•[éÐÉÍÍ.4ÓS_™,Jÿ?F1¸LÂ$×aê°Ýf¨P¯u9Ö…;(rNÁç³MáuCìÊü®‹Y ±©!ŒÝxÄêFÎô "- ”ªÛ§›ýXž­ém†Åߨ­›$Lªš¸¡øSL º{Ê ’΢]D£­¹1S­;ßСvHŒƒÌg͆£ˆMR-6N4vð„G/tÊ…§mÔe’ >.ÔmŒ:ui÷'è«È-¡ÕðYiÊ) F‘ãs…,¤ŠÂŸ¹yÔJ"! ÖQ¯ïlé‘ð‡À ì÷ãMa6€+×{²Zìõû JH} LØR˜.žo‘QŽƒ±w®l4ý`o´wò'hYà¢g¥3hâÐè¾ÇPHAâTC-MØNLv׀Ⓤ9'ï ´Šƒ#¼‚f×KØ{žÀòìA"Ȭ¼¸¡_”‰ˆäÖòÚ+é4Šõ„Ý™ð½!€‰k6J™µ9Cø¾0ë&±2Õw«/>µ_U[t66ßÅVÐØÑEÚAõ Q›ÚÐíÉHÞó‹ÃÎo ØÓïÏâÌÆEáæE¡¥'¾DVÇp«ÚF€h³9O%¶{]d.x´´W °¥¿££FjKµñºÓÞcótÈLÌ”¦° 0’ ÝwšIz-4tB'(Z“ðMóÓXË©]ùæ‚gÊÕ,?݇X"USQ¡š#¢5¼ŒýÉ6=HîPÌ&Ùäèd);ÊÒ6¼ítÑDoO´²Tù6.Ž’t¥xtoj “N…c&Ö¸y/^oÀΩJ4ð’Bã%ÚRv6›{ûu‡(׉C&ëf£º½»×†ª}ô%éŒ,œ[Yce‚$ dlV³KŽ÷üÈtç0,7þ$ƒ6˜/ÏUå%北EI>†¼(\ ð°$LAïx¨ŸÐ ê\_1!}‚ÐÉ# –¼T+܈cP´› £l>(M3×e⼎.¦˜Jfý僮Jæ—áÕ“UùÜuλ]òÒeñVÛ¸W¦»ÑÏ©6¾ÑŒ©öСÂY3u­¶É~¥Ú®ØAÄ0  ò“„Ù¨˜âàÙ­²¦“ƒÏgdw3nqaŽ·Mø¸ÈÃY•¼kìÂÐŽsžöNY³áÌzˆe«j{ð•«u™a”c7 GP°zØœ½#‡Ït‹/¸QÓŠE^–Bv²ø>3ÙÜI‚ÔR¬C¿zãÒ^”3#)a”pã$–åaÁçQa—÷ü¢’ÀПaöuÊPðÑ×z„êxi^ý„/þÅ ÇÎå0™ÓGW󤯖]bŠ+ÑøhÒM¸—Y¡‰õ›¬|šûM)xXd¦sê)[§…£ €§Ëg³7a GžÏ’lhݬg Â[ãéLÀ  5$@ôTŽI8Ô«Øl´ç®#Ú¬BTÖ܉blÅZ±{6 Eq°âˆ‰bwf" ˜ Q#Sb3>CÛÞ{á3¼ÉŽñÁfèkœÍˆä‡e3¼ÕOg3ôý®lF(f±Ê–Êf¢ÞpSÙŒê}²å24‰Íh¾V 6“â1÷¿‘Ë„.Uï‰Ë0ÀôÁMá2>sƒÃ(ýÖ ÷Hå0„Á,“®N»-‡™i~£–÷9Œô„›Îaæ¨#Ú¬)F@³b­˜ÊaôRfâýqUÇT£çŠr]m9?Ÿ™Åm j ÏÑóä3Š Ÿ¤m}`þc(rS¹žë޼(¢QžÎ‘ôÌQ¾D%±oî_̰ƒ± QÎJ‰4•ÔŽ{dTˆHG ’®Œ,é{£H¶ÿ^Þí²{â`ØY3 Ñ4RzIE“‰›Y ìlúÌ4M/pšÁßÌU”z$sK^77Ôd¾wç{Q²rWîg`öù”pÖp2ÎÄéôíôpF?Hv4G$ÆC´9™ =2qÂLgñ y%Ÿ~2GÈbx>™ÂßOÌNÉáO"ùX*wÆY¾døˆbùX,¿d0  .'Tx:ó§B1æé¦ÆÉ‘Ìô)d†ø7LEüä¿P{AÈ".–tuÉ4(”VE;ŸY2#G —úWÎc(¦ÈSŠ)B>2‰¡.Üî;hñÆ¡€ØXÜH—ìÉÇÃ…K·ç¼ P^Á†/hçÕé²Jdfà¸À¾ø€MWÖùGé,Øom+Ëœ-(¤C¼ðz>…©‰É3)ÃC²L)f¸_QMb1ð,˜¬TÉ!¢cë­Ö^+´òS"àë€7…8[Ö®ìD"¹T¢¡]tÿhêNÊQbÙ°s“AOë"F2†Lr=ÚS—8’òHim(œD$“~3ü1Y¼ Ñä€hßà,ÀÈ…<%3¢3|¡—¦ŽsFQQÊÈ‹“;¾r{ã ºœ¹dGvÏe/=ý=aâí¼Ì)-w"|[nß) 8õKà*ÄZÐ¥B†Í=÷ð‚þÞ˟뵃ÎÎÞf6ücºôiå‹è¢g@ÿˆ¨ H²gÂ[+ ½Ïc;lÚf-HC£'«ÆHŽÈ³5v¤§•(>Yýh^ÕŸBš¸7x>óíÙ(‰±ô,ZVÑ9gÓ;uÌkŠ¦× ¥Ošÿí¤Bsƒ¢%± #ASJÜ’N¥GLmL5²Šfˆ§&54¬‘’,xæ…Å5}¼ 4¶0JF Q‰]áÜI•#Ò$‡aºZÚn±Pg ®<›ßD4Óï¶û'q!YØoH—ˆ!çNSË&ÅuÅãÅ`Äí'Ù£èeŒž¸žè@ßTcFÄÌÜ|ž±ÿŽð2臸»œ:r,+3DšÊ!€~1[jl³ØU ÜçØSs!±­Æmg­ZzÛi‹§vœÜ«‰W^,&ñ’¥”—ŠßÈ‹ÐÍ\ìÊé u¿ g¦¢W.ž¨Åãœ;ßdsɤ îz²• ä&z0}K§°|û‘ž<°ùˆê ÞŠ%K #ÊæÁf“iÛž0’N1®´B§j’dAI­–¤Ñ°y|½‘Ók»tØšô(š‘7mæh°ç|+¨Áä¤~\³Àj9¥»™ñà÷ý9»Iª¦`ÕV«¦g£9tÙsÑ”|d=+Bþ»oLþwý%Üÿ &çöèþnÿκÿ[^Y[[‰Üÿ}öìÉÚ×û¿ñ‡¾ôå€U±{k´°úö3JwY\,Ê+ÀòðÌû¿ßO»ÿ›pû÷æîï3m,>ÏÍßöávµ•pïw¥ÞüÁïOƒ¢ jüËxjÛÚ^-•J³Õ¤ð}ä÷&ÐJ,J-å'1Úˆ sô& s ¥—‚‚¨‹k¡ ó`—zMÇIûƒþÎx;ŒnK%Y-=ýaÉb->GaÅÑ¥´qÿ&:r€ºhõ³¹ÑA]áqfƒ$³@‚7L1<·;e1[܃D§‚jæªÍ©šåØ8ôS³‹£#Kžû(ߊ˜!{߯gܰáýöz©ûÅ[^‚†Ì-‡+Öî„™ñыΘ|@ 8xÎ÷»Ãþ$°òª¾|žqÈÓ²ôÇÂS°¸šg©|t+³ÒÀ;×CXèèìòÝpTtjÝQëW鉢ÖBß±/I!Š«ð8´ÃÑ ­ô.ý·N¯Àhix¸Ò5-*þ´2tApä\âõE %#îúö¬5«èÂ*Pù…®ª†ã¬Eiv€~ J$K $ õ½‚$ÛoԘȾÓZEšR˜žÜÃÑÉÏ=9»ÁEO÷¨µûÎeÁàÍ£×Þ›ÂW+ßœ"b û-ë_Ë{è»[x Ñ>Ü‚_œÿü4˘—ŸØØrɦå½g$ìxW”K"†Â |rXá†Ï(D™Y·ÀW9Éæw¤º ôE”F@8û°>€ra"òÙh @¨ý²ôlN%:Ò²{=öŽlÌŒãÜ!±‚Ñ´‰–õ“õ„.º•MŠ3œ4¸æ¸L4a±Á’©jص$ÂDæŽ"·ôÇX(g¬µE¦Â·ñ­X®`rF¹`S÷Æ }Q*˜Âz …#T Å||£ðÔ¡ij|uäÿäÌuÏÄjë¾3ˆé¯Õ?hÔ^wÿ‡¿èž?ÕÍ„9§gR^ÞoòsL>.f¨¸t…¼µ:P ©Ü±L '½‚¸R4ÃÂ,Ñù„%Ûdf™Ž$ͧȟÎõ‚Ñý’lÐ¥ËÜjާe±,v÷!' /hŠû™9qŸ÷(÷”˜é#kVvmd{n²öz ›¢_ê¿ã6gß:t€£— ¹Õ‚¬;^/L¹Ó·Î^}ûðå-И+QMrë¹'Œ_¼_Μ1¬J µ#Æm^k‡\¤šL…žà éÓEÃJ›2µ ÅDŠ$ä§Ìæ:žÞ0Ñëäå …è*f«Úl§ÍÜê/¾lºeÁ€ØæÑB*S^hÒsÏâÃçöÇÎH43ÖBƒ^q'|:»MvBE——Ÿ†ÛŠ /XÚ4Âçà«:O;Z²Þ(–:RïB²Ó» ‡5°$÷$G’ox k 2¿ y¥Ü½Äf‹tñ!€„ÃAJ~JµhºÑöG9vù»õ3Ÿû/Aÿ'чòÿ·R^}þ$æÿoå«þïAþÜ„Ž@éÜÛ› ±@ðèÑ£¹ý¥*öf:õkwýñØú™|Ѷœg{ãÿåÞ éžÜéP`ŠšÆo­üüc¢Ú#Ú€ ÕŒpð”‰xǧáºVoµ´Vzfê´Œ­ú¯hNCK(]½*ˆ@öqƒÛxVòT,ŸáTÜ?Éê´wÉ2ʱ†å7RÞˆ NØ6¡rÆé‡ûq´Qú§îôVB‘õ˜Âÿi~¿úÿoyü|_`ÆùÏ“çÏ×¢ôÿéÚêWúÿHÿõG Ï uÁÙ Ù~‰¬s…ròÐ °ôï'ú€Me¥ÿ|~!XÃÓÈÀd”&ݹFÍ—ã]Ò)Zgxb'Gô¢§¾?ô`íRœS¦°Ô9 O¸W Æ:é½ U(Ù÷¤²þÒµ•I‡µ€a„­Kãä°žB‰¢ÎÄ»°ŽX¯Ø·™5¾xB%¹¤çµüP¤ºß ñhìB”ÐUÃ3ñ¾âh¨îÔÁ•cŽq°ü ÇÝ\RÝA>O]4‚q»oÑnœÇ“GÄ.í÷TÑHÏã04d¹,`,kÝ„ú”‘# )qÜI;s%bTd`8ƒÈÿ-4Ã49Èd -ÉÚ×OF#‰t7¬ÃE Æp"ÌÊIý»g-¸ã0d¬ã(Ø y7ÓUu¼¸g s¢•6»a »VžËŒQ‘Z*P_¶}ÔZJ+ó±\MKjÈÉ¥Kqâ¤õh€.l1@`ÿʾ ¨+»ý N&û '‡BÀ͘¼K¢&Šb¼¸jÊáô]…§>b\èló Ö8 ë)GtB=*–Ń$ 3fÃFÑÎÆxäÊPGætmŽfèkçP}ØUönx1-ñÂ…Þ>…®D¯©¡yMgÐlç§fR«CÓèÖP"Š»2›zÆs´ H¹ãü÷F6 ‡§A a.…³ ‚ÝëÉ8ÀˆÍïN BªÛ ¸oyZùx¨@gÜ y–ÐP©Hk‡ôÒ¸€"xÖd˜„½:8up n•K@ºí±˜CØí†¬â­ã Ùº“{š#Kpv ËIg{Öuì—>“kë—í½fý žîÛZ…73lÔšÝ_ê-åÀ÷ÑQ¢%›™KœàEC¬ŠðÑ"0ô˜×fAtUŒIøõv³Ú~e"2%_2DŽ Å&W ißSüÞÆ¶“q*š~'¡Í“‰0nìT» ˆè_“Ñ8¨nÿZm%·A|‹Ù‰Ûcê2Xt\ò¤@ÚoÕÙ}]t\¯éÝXÛÛÙo4ë­Ô>T’a4÷j¿$÷}IÀZÌY„½×ÜìT[µW_ë©s;š/e(Z¿ G~v½¹•ØšhžtÜhèkµN­³—Š—žgz+_U[›´D©KÚÒÛ@bK£yÓ!£û¹FtòÅ¿§L›ÔÒÚÇýc‚Ø¢+M¹ÐR›–Z`zÏÁ3YñïOa®ʇ˧º7b”/ü–B2ãíÝÚ)>¦mÕ›{ÕÍÎV³ºÃ?)OÒf}מwê¯ö6c 3ÍšÛbQwv÷:­ƒƒÆô‹åž>jÛͽ—U|ÜyIVÖl.›:| ÙçÅ~?ôÝ1óýÄAŽNÏö+ìÉéK>Ì6Þ^û†Éïf=}òF²Eàé\5uÇ>§§°¥i…)6jœ¦e{Ym×ùšmŒ¼ë_“ Ën¹‡?ûÍêA=N’s%@ÒÍTX y¢ÔªãÞ¶*úyʯ&Ræçd6Åkt³¹UK’8"¦¯²Íß¡÷5Ñò©2’5U˜©íín5¶Såñ9L%^p’©¤L)2Eu–îë×)r…ü:¥ðÖóçS ã×)…·k?O)Œ_ÓG†‘먞L‘×\Ó:!RbŽY8½~=Va¾éƒ3³THÑ:a<æÂMË7}ìgâ–)Z' ÷\¸iù¦O­™¸¥CŠÖÙšo¢µæ™i)°’³¤ã•HBâß“ÙâM(äKDÃÈCøLÞìlV[¿5v™š¶ã RòMÙÿÂd®íG‰~B†Ä]&DÔ‘ÑvþïpuÕVR)ùÒö­³väsnÇ)[2¹TŸR‹E…jýKZ¡dº®>É›T±óŸtïóòÏÿ›yþ¿²ºÂñÿž=_}¶ö´Œ÷Êåò×óŸ‡ø£k›í {à`¼'Œe3öûޏHñÊq=»¯iØ&C¼gýféˆÂçÊÖk<²ìÓ.̾ó ÷Ï·ýçß‚ñäòêúæ/«ú²e·_5~þ¥¹³»·ÿ­öÁ᯿½þý_'|³÷ïîÿí?±þm<]Y;¥®Ý½p–ÙX¾tO pÚú_}²‹]Ýÿ+?)¯áùï“§_íäïÅ·ë/¾±–O]o9¸Èà›µ=ÁÈo"„m7ÁØ{]ÕðÆìŠèÃãéÅzp¬û­C1…KŒã9¡ /îíVî?à?ßYEÎÍEZ¹¿ÀKXx&ðãÅx< Ö——ÏÝñÅä´ÔõË€Iχ¡Zþóݲ€âO¢>ý_óºüëEøçÙ>~‡Î«³ì“b é¬B™òXAwäÇ·<_fHtÈ<õˆyI?\Æ.¦£äŒ™kH†+Z . îØEûIªtZ„"”è¥5¦/ýÉÈsÔaPßÉlV›µj»^)oˆsZK&Y9à/m fŽt>QôÐοگä Ìw3þHa>œ_ . ÖOË=çrÙÃÎÕŸþQf÷†Û sÁËîa³YÛ٬༠â×J«ÆU™Aƒ{>:êYd@:¾jrïËßes/²ű%Aà1“kôÆ8Y“À>ÇãÈMvs'Ž;aJOFä¾:Ҭ⹕Wó•<þæá+´Î‡y°»GúµNûðeû #\‘K’“ô@Tô ÐNÕæ<ÃÅɰÙ1XÚõbZO!»E‰ÖÆF˜MfP>ÎÜL&c¯_Égò1>”@÷f\ȯÐdw€ ~º#;¸€ù׆U4‚–>ço$C,qVBÈÝ+ùã‡ùË«sâaÖï­ ¨‚4‰ðÒ¶ÞÂÌ®ÀS߉Ûã<žêÚÌô±3òì¾Å="ƒÌà¬݆öt-î^Ùõõù¢¢HEÐÍx ûWpQ W†¾yY WGN[)Yë˜Æ—ŠpärBXÅšåÈ6œ¿.â5kÌ,å¸J ¢"¦w¼ð‹GŸœ>`iV|f}|RµàØKª¿äåB =ל,ÐlœtO—IÀrÿ—uškˆñÑ>ë^»d}§~漣'¼1ÈÙ\9G«…V²c4/fP¾`ÃÚa申Ö:ü/” QÀZaoÎ+¹ò†xc'F¦Óü[Ì L ™G²2ÈgV'òld!Ø“h¾Ò"gPØlÈŠ‘ž¨ç4ðYö‹=KbC%¸!õÑšíVXÅ®/‘IfÈKhPšY &¤‰l 4 ÐBG¤X$„+1‹n¤tŸK‚O}SA¬&’™‡ØÐ¦Á йÿä7¬-J"'N£·cq¸®ßS‡hÖoáÃ1D´òØw™!þ¤¯‚iWG“8Å×O)Ø*=b9ÀŠîâ²´Z*dÐuUÖÊfÉ Š.%Кäê‚lš@ƒö‘O/WÚÁ0+𚦸yçù€ô ´òFwA 7Ð[gÒ#éŠZ¦Ä Ž—ß,Z+ÌYh-R"9Ô’>¿„÷/s(3È: 'ÔO.¿ðk¦‡¾)³’B–Â%HÊâÇ ûã#•c9·"3IÕL?QþmF8‹ÕhJ4Ãzn..’ÅHSó“KØæ) ã Ù;á°cÜW¥N`‚×övvª»›y¶¹c#!êT$ý/ÚN¼ž>ZÚ"¾Î©– 7¸ÖÙ\²Ä7VñŒ{C”R%$=Ñ¿®[Îhä”j%Ú°F6‡ ½0¸qà÷Q\'³SrêiýôU¢f0­Ë‚0âD×öO´ì É Áb´`mš®Ü!ä·C N鼄níã:,>)­X‡¿5vQˆ)ÀŒ~9KZ!è4CVK+,a[ÙBY\W“!Úž´‘»±²mço<³-,]ÞÊZtÕpî0€šò yX)°J‘6U='a ê#‚ÒC©êiiµT^+ÉÉ ÍÅo$÷Ôwµð¿j£Iÿˆn¥1º>νÏq1"Ê8°Øk(¡ld-¹°Dž‚¥Ú”Hs̘w=CÓ{¿]®äsÀ½öÛ«•üOô°VÉx…»Ù¶¼ !¯‹;Úf­Sm6+5)dó{õõ‡ÕíºöA¤ ŒÚ&6®”øòë9Mô)ˆëC‚´ÄÒ¨ã]º#ßè[p"^€[RšFhwÔ•w;èáÍFOod´íÀFÀ.s½ û<€ÉäPøwÚ6É\Ò¤²kà•è>XØØBfæ“×@'w¹ùÈÊø»&Ž™å+ž¯¶“æ— áåõ7G®9¼mÃF€=ÒsºØx’Ú—ÐäôÊadÍ)² ýç9ØãÉ0sVe`É@‰íÔïÂû É nØ£¬="Ê#ŠÐJ8ñpy0‹ÐzÔЈ”x‡AöÜVñ’@¯9::@˜e—Ý ÜRF®ŠŠšóMÌ™oÊüјàPEÉ¡¬…fR—‹×½ôž˜UÁþ5¨/¯§Š$‹Ôk#UæÕÒ_Àa´ŒÙ@‹3”7Ü £elý“¢á±° }7Á)‹Ü×óÝžîÇ»’=N‹Á9µÉ •<³µ± ‹ÀEãÑÉ—2yG¿.$eàPªéÏ&¹Vd# ‡’g^‡(ÌêÓ§RHeöGëíŠÜr_°!+.Zû¨_ (ì‘M•¥/Pü{]b #kâ£ÎðLü"<ï”8PSÉjŠ™ãìq\5süwèfŽqìÇ÷¨Ÿ1 æ+yñ8—šæ8QOs|oŠš,ÐÈY!³<«F4ó 0hŠçÊ… åù{0éâ¼á F‘•0NudñLå0¤˜Ðâp0‹K‡’Aìºèëu%‚°Ô÷–úŠŠB\gf^¥8θ)J+,óô¨RJnÎ4ô|1$ôOCDÏg"ƒ*š° ãÞ(þx +§c–[A[PrÆ*ÆYÅ.ÚC—¬KÑH¶P&ï•pbI‘IB@’°ŠD"äòµµli¢ÍÅ`²êÓaÇ„ï¸+ôüN¹’Ý0¾æô·\³±[ßÝ›’#«Ã²+Ç¢DF¯cõëX5ê 12O>ÎB·h¸äé „v (ŸD¾¯ßÿñ¹ÁÂl¬JIf}g•O޳ÖtymPÔæ-(çÞëZBI¨+„ÐÞàÁÔ³ô—[vœÃŸ´çͧå&íÊ2« ¶´%…b ÷ÍÇÙ×ÇšT•ýZ¼g­ãcÁÓax"…æ6µh!ºPs Vg”U(@æUsÕ"¹¡N‚”d&IªX¢.¥ãë ËoAqbߢ‰I’YsÊÁ‚)[ÅÖ«C˜É“@—[+ª@ò%”¨Es!¥±…ÛbE /kg>ü«EÝ€R‹Ë 5‘9IúƒœLdù#2B>7zŸÒŒ®—û€Oé{®iÞŽç Yb¯Ÿ¹(Ñĵ~¢/R÷ áVŸ÷LQõ<ºËŸ¯»û¯»û/iw¯öõ¨ Õçy2ÿCÍ•šêfµd!"ìBDº'MtŽì+0èÅÈc¢ÐÒl Gu gdCh¿}Šå -qJYƒMǤG©0Õôof5 ®à»]ØÍ–ðˆÚÒ¢é‚7))(Ívg6Ì)^>Ù=¾ÿ‹`ÖJOJkxìÍ7§³ú±©YxŸý¿Œùüý¼h ë çÞ¤ä(ÀE3Îe$Ξ°“¨wÔ’¸„Îñ2nX›[«ÀÅc áVÜoƉIe…Æ»„§ˆž ωWùyôyB?¶7¡Z@Š3jøx +YÔüt/Ô€øŠ=Ÿ‰Ðêqä) øÿ‚Z¿×çkQXi}”ºf¦­òPfXx²À+†…ÔÇèË–—À©µ»€½&ÃÕ _ mµf£¶×Üku¶öZµzÅÂÛNâ®s»’*j#‘%9²GÔ6©M]±5ñºÂ‡Hºq•#êÆ;kÆà×j‹£në(qú…ŽœTæRF/½PÈàì{Þ'æÊJå–+o|Ì^€Þ+Z¡ŒŽD€Ûû±=ž†’>l'"c"Õø/Ú^ü‡ƒK-)&…Rž‹N,bð®B “+g>Z‰ˆøÑDšŠ'ׯÝqHn„?\ó"gé]ˆX+YœíYÒw9Yv }=.éŠQ+fùNˆúfc}1Ë£ ÁD£ ƒ· ßv† è ã>¶7Ìb—Jé'àÂ,Á2ä(-oXïò'bäâsV;ü×bE·ÉA8¹³4³9ñ1ÜîD–ƒXéÄ~sÿ´²BÒ–á±…,›ƒFH’`R:ì(ìÐÂKsPâD(f'Û ´õ“`€Òž£@DGø!uÓjT.ÜÑ•³Jà R3¾Gi[XZÇ]xsöÄî\§¡Îߪ\)6_‹DCI¹÷ÀÂQyè¢KZ´°—qd†ÖýÖ˜ô.møzN>øP:bN ” 'ê$…‚Œƒ~ƒ@À»‘çuÏn:ùWèóêÒ1DØÿ8dðÍÍ –Hxrl…Ùøf袗w»7‚ºyÀò¨Uží^ UÄD[: Õ_6棶œŸ¾«¬n(ëNB)¸¼šª”bE±1  ©´¾«çІãc^ÓaM+ùseQä8Œ ª0æ/HjÐòjk»T*¥¿j@~CoóTbà`¿auÞþН(Q$Ç,Îâ„0ê)ÛÎãó¾ ˜ Þ PxJ˜³!²)¶ìKØ¢ }ÙÖ©ð t0 (HÆ¥/øŽN{ªea¡ œ‘ô!LÖwÎ7^ÔuZïsS*,ÛÖBÒ¥”V’°SUÔ (TÑyg•Ob£ˆ02&"𯒓Eá­#>Œ°šxAoóÍT²”2â{¼3ÉžÈP­Ô•+'Ê ‰jÊ’Êp Q c|Šz±³¹n´¤b€Ò³Û)Aä·5#R‘%öÐäx]ž¢Ø 9BddˆbŸcŽìô¬L{S2l±lEQRªHPT0‘`ˆÆ¯¢×UõþŠÐÈŠlem˛ͭEL}ù¼öK깘Í=É~ÔŽ‰N÷m%úž‹$D7ª(Á9ë:\qÔôQ En ¹5¹•‹•63®ªÉÒ°jb„s`™ .šŸ6Š0Ç 6J0q QF²êìkžÎäW‹”Ar)• ™K¿^†`ÒT2Wðm­PšÐ½»„Á‚š… Ý-'ª¨díFNú*Ì´—³†‚ÈV‘Zýꛉƒ65AsùD«Z‰ÐÊ8ŽzåBEüjUË/aÍ4‚,áêMË¢¥!Ý.SõøòñB(""íJª¬ºr 1•k3DTi³âùDÓå[H›Ëw7QûG܃o!}˜ eÕ.ì‘ÝEe^ ýED%º£NŸÂx•|ú•Ò¼ÈÚ¬Ô[íJ>ýŠ©Ê* æŒJr‘µçž»c¨¥¼údíé³çßÿ Ø}o2 š.Dªr[;HÏIЬˆ'Ÿ‡Ç³®êYµcm6zUÇÐò€™ôðÆ·Uí[xœ½f‘1/Ø@y¹‘}l½ìãbh:ŽU/Y;Ýû†u¡üÓr±üÃ÷?X#ïôòÜ€hq]²¬õb!Ã3¶è‰{Cúwù(÷†»Œ;ã¼õc¨KÖç¹Ø¿a~˜kÿ(.Ë}Å(‹×Sñ»n¤îªT߯â"Êç´!Ïw`×vìÁŠÂk…åãÕãòñªV¥¦xìFüH5³€×ϣнø=ë»kÉÄǬ´îžiÄÜ6ÅM{dk¯Ýxm‰#@`::Ïa{ÃÆŸ±‘S”åK1!¼ÈÖ”ò£“ H_š¸m$ÆO‡7Q«T¼çãGû íQRÑŒUc¦ªÒI(9•\(Í;š!’·Kf`óZ˜R]›:Ft¤!üK’óÚÀÊQ\j´¤&Õ1ú‹õÙe-ڴæ$ 0 ´Ý >b1‹]û²µ: ‡µÐº‘*[”|HpÁ £O©‹²Ñ=:]—´ÌÀ~Ð&ˆÏÃP[]Àv—¬,«¥Â™DIÁ'ä)WÈò2’ºþEÝ/TZj¹ ÌòbQ«mEgWüˆË'òÖÔuhG§NE‚¨k™ò×7ÇÝü a_ì.$¤ü£üÆÆ£ÇâÑÂþE›>ûûž9¢t}S`À'Àä% ‹­£¸ž·ÁÅ÷ß“å9FWƒùþ¬T>±~²ÂÓ5^•FõBq„¶hk¾èååW¶ZÅ3ºë›Ë‰<µ•¨oôõd2*Ò¤”¡CÀËzQ!oDó@«TÂ$]·¨å?ið’ïáAÖ¾giÙ¤¤ü̼p>*Ç”ö±Â#]tä[@x3c|å[çþ†+X™ÊkϳvÚ¿ÃàÔÒqÂuS¥¤:Äé‰a žà•DùÕ‚µùóöþ¾õ#^U`_Ô@.ƒ›Ìè·Á†€—”u½WèÛÝ + ‹ÖðœÁ’~†,ÒàãIwh‡­<Jë©è(qómèpf¨‹Yª|:ÿⱸõ@ô½Œyé0 fD(»šáÓŒY™•Æä ¦ÌCœ…õOÿVcÍÆËÿ¿Ø{ùsx&*ÀÈ„ÇvŽÖuÁä”O~vÐ )äÙ©þRˆºÖ@ïÛÔ§û¥ûÏ¡32p º¬äÿ|—W)#ÐL§øÀÓÂ4Šù,-õå!àîµ€5ÎuÊ–XÀX€à¢îaÐéÔ_×ë¯:;0£%`XÁLóFº¾è3/w7›õü6š›½ÝÆöaëp§*`DS ïinà—? bð; ò „ŽÃñnƒ:èæßHxëÜtX:¢äs¼$=pü³ž}C DÉ0É|ëŒ8û@}âG‘Žçz„q>S™àe¨^:n`ÃxÒ³x¬6›{µjF¸V‡7ZnšèŠx:u†H&Ý6ÌœŸë54,1ËD?ê7÷jm37¥èY¶k{¿šY(EÏrø²]TÊIz¦j,O5šå×jsÖ˦™M¥RÖӉ׃Ùô2¿5vŸ¬Š¼üL9€ÏŸÃëQžfýuæe£†æ‚‰(]s·ª°ÒÉæy=@>[ã_•ý½ÌîN}³qÙlÿ¾sxÐhçÙmlÕÛ0›1K«º 2ÍÝNr{w6wö_6v3ò·¹™ÙBn‘!/Èú§]ßÌ ÷íøÿ^ÂRóGüÜNè!ƒÞUz˜…D~ÁLô”ž+3èªÌl6›ô^mg~ç%ñ{µVË€l–ÁPü/üWouvÐÕ9w]4•:—ï™'%ÃZM[Òae«Õ6ëûXŠ>z>|ÊTw MyväWŸUÆ’ž ÊÀg§°E@82L?DïrK¸]rù‹•Ÿ8Oµ•ÁÿïtôêÑ_õ†fÀ˽vãàw#_~%$&ÞØÑþVw@T 7dP Ûéùc¿ƒ !™êo¿däûÎ/€tg?#|³ËwrÙªîdè-#Œâ@%!¦±»µ—©ì1#¢G† (ufª5$ÍŒœ·BŽÈÔ~ßf×ÜqÁ¨«êݬTC$jPíz•Ø@Ó€Òuè Ï:~äÉÅÏèCœUü³+0>[í *A`óMÑ¡')ofп½3üé]ºøs1ôñ×õÎ|Jö»ø2­ vCÕ#E‘‚Þ(¦P/|½ PŠ$8öØ–¿#ß 4Pܦœ ªã¯øÞˆ`+`{ wèƒåV’Ñ… «Kkq™/"FÅǨŒiH¡™È ÚRäC6Ê‚ržRÐ çS8°L0–и3šôñš §I§sÝl¯‘Úu胦™ u³zCãnš!<ˆd\ù1‹ù£í^wŸz’ÞϽIÈ=ÃPá°ÈÂ"rÑ·2MÒiùn¶'Ÿ¡K—ó®©çwUCIÅ (ýée¤‚ƒ«ŒÛ R$Ç÷ÆņÉh2°3R=nÓ èºþ$¾ ´ub¬¤I&E¢¥£è’^¢Á‚'ð9PtAÔaûï÷p8—’´/P;0‡·‰¡Ù*ZžÞXPE½É@”¬ÀIæA{ýsíSx²ÅR°k °:V 鹬L¢À–šP°Ç~Ó´øfdã‹:WÀ“üfÒ¼¯˜ûe¹ŸÜÝÛ­g<_i|ä&ÜŽŒžI®ï¤4Žpo¦™t ,]Ãÿ2¼˜*ð‹µaÅMj:îÔ áZm·Ø5Îêô‹L Q¢õÁf&¡‘–µ‚}ç ž9â¼Cºl\øÙd)p›´¤Ö{eùÌ÷³"J™´ýxG±éÒípèÜë§^¯rÈ(^'vqÞÈm&ž‚Í'Ûg󘕄c hfc†…¶Id#¨@aÁÅ:eì/Yθ[b‹ »Ûu†¤_#œF}ŒÃwæ£uTN"r¢$'ú½¬ùtìÙC#íQ/(%¯äsïµ|$_P’ÚÇ>ô5d ± âS^g#˜I@˜—Ì¿h?æ5†¤—‚.ÈGX—þ¹ëò&ŸÓ¿ÂPæ5†¨©y“{ Ïkê#sØ(®Ë¼Œ¼ õ1/s,?¦ç%û¦¯J0g7’˜ç›IA4…¥„¤1ȇ²D þ’BGì3$ydê}I ‰þWá{]Á:ù^#ßÑ9†Æb/–&¹"ãFi§…ñÓ÷Ü#¢¡! éüDuºE°^xçÂzCîrÉÌ—ŒÃêèІZ–‡@•¢Ù1%š®éd>2~8ú£òf±ÂǬùq ©Rà:EQ+< ÒRñZjh”M}SU+ Ñ2Í[µàëºWEåùºR«žkŸ{Àn|D§d4JŽG´E:Ø&ŒÔ œð+/iëä‹>ª'ù ~ F_‹RÔD¢²¨ÁÓ_´çðQ=U²(—S}¨pEQ3OòAüFð å ‰$¦ÈZ#Ïá£zRh…€p#.[¤ó ,–öj¼‘ß(-A{Õ“|¿üc¶5dõ¢©!¢9é ‘wx`gdÐ_´çðQ=ÉÙš8ïÅ"Oÿ°åµX!ÎÁÞÀe1Á8¨¢øsøhö–ÌÉ]%™Ï¢ÅxÓ_dkd¾xS4ò©Š%¿›¯Æ›‘ =‡ñVÉz–I¦»Å%–MÐ&‚L3³oú‹ÞG²¶„~bç9EQP¾©F¡¬%$a¾Žæëâ¢,#©³8mm9¸a’³’×ЂO°Ø¨Ü8Ç>´šDíÂIéÑÅïJæIVÖ2aÃÃVãVëqÂ9U¶néDšÛAó‹Š–!Öº)ކ'(åƒå#@õÍrgù\tˆbj×Ëüÿ³™¬ØÃ8e™©+8Ì&ãÛ®?šK„MN8¼¹HK³™G1à¸+Ê/Yy€ºÄ^mcØV<_M)…x>E哸,Î,V Ëw‹ý%|VOj¾sæ„©NçŽ<ª'ù ~#r) ˇ‹<ýE{Փ•ËÅqå«R¾ÜbQŠ"h²VyóuY~ÙËR ÖçX•Ç S ¶%EÞ–ðì ·)ê=úß'RIÆ›þ¢=‡Fyù ~Í•¦ãÄËMÃJ¬"][°Å<–¢ñQ•Éd¾oúKRøI=ÉÕ­c‡sˆ1øË?±R÷Ðq¬3v6(Àx±ˆÚ&ÌÌ«‘U‘ k› •0ôñ‹?ª“CÍEà.¦÷Ñ¢‚ =‡âéb´˜Lè­.b A ŸÃGñt$A .мR¶Í¨ö ~Íùj2%& ÆÇ|TOrТ c&\$ö>ª'ù ~#X E¡„XÔ¡oú‹ö>jSób¬$ Å[jW¨HÚ«ñ¦¿¨Êø=|TOòÁl·V7]Só,FP‰&DÞÍ×ÿÏÞ·÷7q+ ÿÍ~ Õñ©ãÔ—è…¤¦ !´yüôÐSgc¯“}°½Ækçòßý›nëµãÚr¨9§ñ®VI#i4ÍÅé?§¸Ÿgû¨‘äT˜‡'I™ì³}4Oú!Ûm.ªûÌ©5¬÷æ¾8ÏöÑ6ž O·œ…Q”?ûhžüFJ6n£È²Öî‹ó¬›"™r["âI]&÷Õ{s_ÌÀò»}4OSýИ¾hùèZ¦ Ù„Ì»ÿêÌ1Nq?;ÏFt59XÑA.–ûæ¾8ϙÒ[#i\óAgÞýWïÍtÀÑ~-ßµeg¦d,*Mšÿê½¹/Îs&Ll1ôÚtCsÒ¦“Ü‘7©Ùl™wÿÕ{óðk2c SÁì£yÒòË?>^¤,#DÄÌkT÷Åy¶æI?èHù閺̅Øßy¼M2W»C‡»éCå ©Šu AÊ}s_œg3jôjžðaÀ ²·o7yÌ=œ.43!óîVÉIÞ›ûâ<ÛGódÚg¯&z7$Tf~J6Á4Ó¦ù¯Þ›ûâ<û@Ì“~_þñ§¤ßXž™þ¥ÏÚt§rÒ¦“œ¥jS³Ù2ïþ«÷–ç|´æI?èõá7z™8g­ì£yÒòË?>6½ã’w š~qží£yÒº30rÑì7{~ÒTŠÁ¬“˜y÷_³½vïÄMïÝF˜~]•è ³›>u*%›`1çÝØÏÆ _ß{@f%M¥L53ïþk>¥>ƒ¢V°–Ó²¼Ä bútÖ©”lBƒRçl e‡*«ü;À2Ÿ²-ô>Ïü2¯ØŒôÙErSgeÏIËÏ:•âgäLÿ5^øZ$™ùá£63ˆSçb~NáùEgœWlF¡ÙEr ÌÊž“9›§²e²« £Ñ“³HEdÍ“~ß̨s)eVxXsà¹/γ}4O¦í\.§­©iŸ÷¤ä7Ó¾Ôi^ê4(ólÍ“iPšßž·˜ïí$Ž˜‘ôŸôƒüòQV©¢´ì£yÒÜQÂrx¹Ô¹ÿŸ~¶æI?ȯ¦ÔÓ H=]€¼7÷Åyv&mzl3iL¦3u|½ .vE’­ÉIÍ&dÞý×)î‹ólÍ“[T~3õ[/xõµŸÖrú™—èbÕIŸÎ:•’MÈägñÞÜçÙb>˜Aöû“3Ö±ç!ƒ=ü"8‹m¿¼GS¦æÔ22Ò¢ì£yÒò›iÃÈ‘‰ÚãšÏ}qží£y2-ÍëX…9.1ãÕ{s_ìxл}4OúA~3=µõIo­ßZ¦EÙ„Ì»ÿêÎJq?;ÏöÑ<œÙš§ñÆZÇT"ûhžôƒüòßWyY0ÀIÒšéçÙ>š'ý ûàÂÏéÅæ}Z*8ýl̓Öj¸ÎÆ *Í:cæÙ>š'|øÍ¿KÑjÑ›(]&q·øñwËTà¿ãfY,e?Ç›eqý¹÷Ê4P}«œmhÞ²–ßÙEoלTXæ¿@‹h9©p >ý¼²ÂÞêÅÜKð GH|á’Ê }ÈvÖ«÷澘ÝíÂÞ^Ò£yÒþ†cm&d»±5ËÞ1;!óî¿:î…{syÁw—æÙ>ê=Ê1ã˜^®UcÓ!åf½û¯Nc8Å}qží£yÒYÄÙŠ5欹ÉZ¶qS)Ù_œægñÞÜçÙ>ZdÚ&Lc“ýf{¤Â]¢I¾©šG–ì• ø)ëŠU#Jâø`Ñuî¨OÆ5LQ¸žµ†¥§Ñà ½ÜÎ"§fsn|BjhWêù/•U¯Ö«÷^#ÎÖ^}åÓÕ5U¾‚–zjqE¥‚Ê¥6‡»išê"Ncušœ<Ú{ùdwS"W ÁÐ(ê'gì3LÇ™PwjëÜóiwkÿÙ~ötïé/›¯A 0a"õôŠbõ’Ša2µcOo?²CÅÛÑB»ÑœÆhd’Z úOØTn5º›Û>G2}PÅwÓŠ/ò!ÝÅOîä¤!"ïàÁ|S¼Q­²³.Çîz­zUv¼ì´éÇ);^ó4ûrºª}‚zõOík¶1<µómOõÆ:HÌÚ Çao¡Åž _0UµÅf*óõZPaˆ+Ž(¾ƒ!Û¹Ž±Ð3ÚÀlO)Qû²¦Íˆx…ßrðäG$JZ²ä(X¸:ïÍàÖ-­ÙïœC3âÿ’Þ¹Äâþµ hkå­3%º¸"®d© ý«!fÜdEôƒ:ÙCÜÜÝ€É#Ò5…ä•G¥=2ê¬ýÃÂ2)Öê–²µ]oÑ/%c6–ùmÍùjX]‡¸Ê n<‰õ G‘ö±hcËÛ6„;¯Ù¯šÍz‘HõO›øŒÚZjÉÔD#OȤ½ì!¿&s¡ìÒ^ó¼˜hîúÌ@ã(~ý¬Ót¬V¥¦MÝ'i?‰èOX'Žš” ˜îäqª÷Ã=Èf|LõÃËc &Û›Už]Ä:ÕΆ!áȨ¯µ[dò.7œŽË0·è±ÛÏè|®Š£±B‘¥â؉&)~ÅsdyÞiÁëåÙì5çri =ô)×8ê¥hã¢jG’ 9ô§vÇ+¤lVòÚ—ÆçÇ™¹âuõ#+Œ£Qý+ãvZÚÀn®‹nÝ…üà;»(•eÄËh¢Sµc( ˜Nâ3¦ÑdÔŽÈ"†Wè$3Äó’¿ÐnŒÑ͉å# )ÿÁ•K›sÁ쬸B8ô0Ù½ªè7‰ˆ&ªý¦àÀðZ“ »5Åw©î(éK1ÜŒ&<$꯱ø‹åÓ,¼%Çtºe'²Ññää„ÛÞŰž¶OM†êIõBtŽ1ÿn?l“odoäbx¤µzY·Õðsµùü\ö+òsÚ]°ÇQëcŽõ½"±½4O ÖVñçÿ€Ò€|g(|ãÌÜè9ZâälŸ]ôTiè•ÑXÒ.…„^ÌNtDøìMcÓASÍNìüXQû}tE%DÇ׉P¤úüÃ>Qß°cr²ÑñE+þ”BåÑ…Û´‚\'‰"+vbü©Æ§þâ%ù7àˆÂlóXýøck{gwÿQkQû(YשBg™.ì„Ã17jp©`î¤%‡}›Ö‚à6ØÙuõŠƒ!¾F·É¯~Û~Ö  MøÀ Š@|©Ä¾LÕ2©u]ËVýnc¡ŠÊý„kØÏ‘ú=™¡8Ah¢ßòÀˆT A_ðÄ8bIÂ@ጓ” m’ ƒ<Û/°Ýüºÿd·„åä8&ÚtØ%½ É\]ÂD¤óÆhbBÇ¡oñÜ$ LÎÅx#å8OÕ+(Ä-+£Då—dÊûœó¤‚cäM¿üÂRDZ`5)œò讚 0*EP¨§sŠXA¡œz%€`Xˆ¯Ü#€úIˆ+l›µˆ J’ì¢Á~IB'ÒN:ûß·†tkÃXYíf›±¿c(.²µŸÅó ‰l¦êàÎ+”æ”QÃtVaZ ÛÔ BS踤wNÏ"³ƒ*²ù ¹ª|¡páDH‘=ráyàDKÿðÅ£ 8‰‹)„–Ñß®8ý'¥è”d0^pÈ$™ÜŠ Í'ñ-yݦ¶Yæ—¶9ùPÎóêd ™ðSl>þëþáséIG«,%É<;Ç’VБ› ШÐ+‚i+ïÂÊž”2Uî7£÷Á¬ì{eyÝ2‡Â)x9n‡xlÙ,°˜_dõ™™²Oû)¾±KÁ˜öÃÛmÕp« Î,xcíÝUiuÖÖÐ{´èÑîöóÏvÍÒ%^Rkgè«ä5ØTã!C¾4dH–M~ÕØ~öËk5ç$£óµ[†9ñ*¹”E†çH­§Ç#(<íêdÐI6ÅSåoBÙë‰gë¯ñÖmUû±UsøAÁÕˆ¯óS<áYÀ5 `p|t_³`óPaz‡£ATEwîÜ!¦u²[E'»sÛÌEøèΘÂ#’iU,2.9Š®ÂÇy­K0Ò- ~páKYÖÁŽaLBÃG#oĉÕÁ=¡qðï_q¯rr;é0˜K›€™c¹}E~wóAѧÅA¡¿áª´×8 ‡bf‚…|.wV•zèÄM1îåo”ÄðÅgœ«rdž!¿QvhìqßRækÇÆþ¼ÄH,¸ƒ}àªß´÷c§ËèÙé §ÏÜÁÈ7 >ÆMÚ;r”ú¦-”YôFº,s Iœf hWñz²<¢fÛ{2˜T{§x˜¦À2ÜQ¬Œ_)y"†¼.ÀAâw_ÜœæÕÔˆ?Œðô!FÍùÛ¹ˆEEÀ³Ê‚Ä9ýÓm¢  T^"y÷–e§ƒÆk¸6{¦€‚@’ºÓ-¿ÊF$¢ÅÝ+Úb€ëÁ.’EÓÝÞc1‘¯­I-® ÈAµDUÄ $ÂÊÐí…'HQÄÅ:}Ƶ®?UJUõñ¨V 'ƒûˆ ÔC#U‹vTeËt°aa¯n ¬uïÁ¡ÎmAÁ’ÂÌÑ»+7G7¤÷£`Ëk_ðX~uŸV°¢eµSßùæ:LŒ¼ìI2½ÙûQskÒ£LËMÿtx(ìݬþ¸ ¸MÎH¸m€è¯^D—ÝG¿Gcµ=`ÖŽýPÂ;†^d]Llj™ÖÁ¹ ¬Ò±9t“É€˜B˜›êè8Š¢ª—¥ <_†ív©’wD©XÉïΜ1ÆQrmô¹8¬: Q=&ÄóŠëö„rLìu¶ÑÏíµ=Ðe¤RéKÔŽ/õÝ Þ}Ûiº,Ýa ª’:¹0ÀæÐűp ìÅmg &àtÌ€,q}‘¯©w|`4˜3Õô5eb4 ǧtñBÄ.õœÆ' 7ú’QbO“…Ð}˜YØ8÷²éUBALØ#ѵ]¸{›#mÅ£g]k`àíˆÜ“ON¨?.Uí~-€þq6¤{¤çVƒìrŽÃ{n •×(þä1snâ̹ѽŽc÷á×SÂ6T´J |A>}Ãw-tqÏž|™ªX‹Ë‰ù€žFûˆó‘âÒ&^[;îÂmüÇ‚Éfâh¾SÙ ï¬B¾l¶—á -õÁÂòê„ Ä˜ñE5_ Ûúá´]+Kç´/VišbØW¨ÖMÕÚNJG•õ!Ô3 ÜUQƒ}ÿG³FJzïß“¢ÅŠÚV…Z­@hŽÐ#µ%}r¿lA‹–ÍTó¦+”N½õWnàûz­öþd ¤F ‘ˈB¡|M”°lÞ×¼ZêVÅUé;vÑ>p³6Dý@˦ûýVXê<î9.]ÜaÕǽx|¹dšá·K˜˜Ò#P & ØxM)SÔôŒ3ŠòŽ …š,t6Ýe'+êŽzD¯ÓWñ„¹£/9`¨_¿4ÝÇÌV^£øwV;\[YTÀ#éÙŒZsp™Û’«°ã—¤ºÓHw9¹ü‚™¦ô¶Oš€(¹wË*Ǫ”_+cãLCa"*Ú͆Ñb„€]WO©nsKï*LI¼kk@‘–攺§‚V#tVÅ7­tf…æè5Gù}ü„ãìõzœ:ôΚ7 gœ÷Þ@xcEZž9cE’(RkÁír†8–5Rc60a¸³šLrÄs¤¶®p¶r+i®'Ñ ‘‹`=ð f‚»ß®}wõ)†—#’Ŭî”ÕíõÛêÑ(ŠÔaÒŸ#Uy„ì$a¤¢öíZ@Œœ­BX:<a¹TÊQëf‚ UCáM/îÇØ¸!굚€ÄmhTåyÀ#5A>ˆn÷.)‚ˆtU"Ç“ ̃üje?Û ö^ôÝš|žW:À`ó8žÝA èÁè²¥åð÷žî>Ýçï³ T«üý9 tQl N€š\üG%úÉ!‰Õùi$÷ÜÈ7OÚí(ê Rm^3VËÁ»€£p×:HÅwæ¹Z(n>Øo8£ÚoÙ÷b&!pÄS;ÉŽ\¨póñÏqh‡Öe¤Æ„§Y%5EøZ,Ío5ø§ÉV¢Ø \lŠošª»ßì'¢¥Z…Ì|/4 MYÜnÏ‹<<˜EÔ¹›…Bà³'ú ±m÷¿þ°JuxýÂÎÀß3ëãRCãRåft(Û ð¶h¹_úC­}Sòr)øÓ”pìfÙ¶)Õ?óF?eZk"‡òå#§Yü øcKl RõÅ&CžuDP'TܵšÝˆ£Ö9ÇÃS7±Ñ·Œâlšmýû`ùæ4oŽ1ÒÔ&cÖZ¿¬kÝišÞ c÷Vî {ça窃˜ÌÏm’”Ë5u'ƒ¶æ•½xºƒ\Æ¢ R/D0˜º3ä´jÉÁ|,ÉI/šGºIxa8HÚ“&Œ¨WVðÒHÚt·…ïÃ£Ý Ñ¢º…sm £‹u½*ê׃ꋗjc#Î-q‚cÞ’.úî¡V¬tLLí­âí›'V(bH6Æ£åmÁxMŽU?Ä£'mէɵà{—ªã*'d»ÂÊaç§qû”ØnÄA/n‹þp}˜CÅ«å-m ‰ÙFœ¼Üö£òj‡ÆøÃ×j>¸ÓjáE¡(WUÐJ¯Í×´NQáû#ÔåJt«HO85ô,eT+1¬˜¬Ð p>™†Á'€Û8¤ã­‹ûZ} ÍíÙٱΠžÕ´kU&PŒptµCTF»kVu‡3o›¥Â%T®Ã*°0*Œc¶ë¦‰ãñG{޲UÓ™è5*Ñ¡~›žíao’âÌeh·*ìtOÄž¢’^ ïý6›Ô*¹"í`ëWžpè6JŠl„¨è‡—)í Ì8³cü—Xš(•e…L_îIçÏJðs£‘δ#oÔs²²ƒìØ0ìª7x.ÝŽæ»Îõ©‡}Ñ1¯o¹ÜÍnýÑí¼Ž?íøJÅs†×É¡G÷0ùI©ÿìc´ÇWD˜ý§Àh9g¦Çæ4ÌÍ×Þì#d²6ɦx‹]¸£F²x{÷‘hè\ÅèUÄ Ø~qm\¾šFIFÉò#aßÞúð"XQÇ0”nå¥TFz¡., I7˜$S0(86k52BÈoß4G±`ë¯ñqx&–Ô(kÿÙPë(z;‰).“˜Vý´P{¯ ïãŸF|™iTD=Ï µ÷jßTl~›…Í0š;<š"mEÖiFñõ@þW.ÅU§±sô|çýaㄼý©…l«®Ð.¾¢Vv}¯Êb4S@©êFð_Ýê§k©÷ß= 7óØ¥¿…;ÿxí¬¹wrr"Ë=Ó’ŒGN²Ï?Øý¸slÞÙ• êëõ.êm [2Ï„Óè4p lÑtêÈ?\êì z>Õ5º/¯‚V®¦ñÿE üo—˰6¬¸jQñÕ¼³ØŸÝhju™—ô§mùÔ( î(, ôÏ%aý¨ TEˆØö/¿.î¸껎½&ºÅøx¦Ãc-öƼÃÑÄýß·Š‘ªª¹öƒWØ’ÂüÞœép ¢q‹ cFÒÊ‹?z¶RØ•oï;8õ =£¾@¿EÞáIS½pŒJÄS¦›d«‰Žé’°¡ŽVÍËû÷0VûcPöCiÐÉjãíQ ßûTP¿d2¿gËäÉàÍ 9˜2#·Ìh±2©[&]¬Ì™[æìŠ29=Žu)0¤ÒS©W€qó²¯M‚â¦úð_Nc°¹NñþXøiŽù7Ý,Ý ‚Y}ãÂË|Ê›&âYtQ?‰ÆéeJÎj ¼©OW¡M7§ šnŸþ”ÓÀüaÐîŒsð'Ÿf¡pvû’´E=•Ó>ù´þxBÄhœå´OšÑÀé c(@”( Ï¢ÖÞ£ÃFþl)zBß=­Ã݃ígÛÏ÷ŸqŒT{…¡¯2;0´"[{¤-ãà…Ù˜ŒhS錘ïO X‰ü×ßZâžµM¢µƒ{"¹0̱@'BfË«GÑH6:Õ4\‹±KÇ£xHnŸ\?ú˜ƒÞÅ=Pæ”-]šØ¸ïL†YB@뱜Gâ–ðœ]È¡Ø}žEIݸ¢ænŠ€¶ÑÊâí$³ M8:IõÖF:´Ã*꣄í1jô@¹'tãœÝ1oött ؇Àbw&ìÑ)ªÕ˜t2Dù6öŽør³Ùµ°æÆtÒzNÚ¥õ'é¸õÐÝBã‘1¿: ù(ƒ¹µ¡nóÌ’t ÚIÄÊI®u0r«8ÏuÆã½ŒÅ~¥0¿ÞØÈçÑš|§C9VßâW ñ@Ùü'ý ¿ü#ª"ð,£ùÞ¬y4OúAGÌ6`­YZs¢b ûŒ›H*XQe©^jÊ¿R©~R8šŠ³jp%˜¥Ä ùR|9Oœ6JR ÞzÛ;«ð†WXŠhK·âÔú5MäøC¶PyD­¨_qFV!?8sYaI»A#ûVvvÜ¢x»„yn§Ï€„ü£„rû†áÂ0IÜoòg÷å$äË'<ѺCžZ][4;Ö¦ç %ÑŸhtl‹’kDƒgÄfçÇ"ݱޮ¦‡”±ÿr2lÖœqS…5å/[f^ѧT1×ôá€R3ÅÀðêÙ“7yüIM›ýy—3s[úÄ0õiëC^‰Ù%6¶èŽ™Âh‘~âhB7¬¤ZKŠj÷¢p0ÂäîÒ}dS• ß#-ÿͶm2wrú§7 åçÙ†ˆ{*ÁF„µ9#j˜‰ýÓK’7jB"“{iŠ’%  ¼•èÛITêS”þ4ÒŽ=±:Øù†^ù‡¼y‘¶ É¡ÈÍ.] …jãÖX ƒµ5É̓Çênm=äÕ*SBlyZú°¢+H@jâ F‡²‚È‚…•;ÅUº=sá²ÇÈcá)rn„4[àIòx»`¡ãÅ.… ·KºÃ(F]u>Š3 dpî;…ñGm3A #¯´¬Ú}M"Š­Âü#‹† !î°qáØ¥õ?š«¯ÂêÿmWÿ_ëµ<¬Wïµ($xm £ú 1ãÑ–ÞgEÆŠ#«c¯Ñ¹{Ðû`¶žl¬X$| CŠÁÆyýÛÉŒ¨O·‡q©+o'¯éöÖM=œMqN[€à5…×ô0`´ýø`ûð×Öö³_~ƒÏô|¸ÿâÙÎnÙøë!dyŸ5µ‘÷lóˆRîüpÇÛx„"ºt|kƒ–;þÙR¦ÀQÞP›MeF]¦ì@ÈY Cˆ·€_J8Ùâ°‘4aVfÄãÔȦ5a’6)˜^³\o67 ñ6ZònÚ—iK¡þÇ"Õ4\X{:Pg2åëÐ M(öÙéÿ•”"‡TL L'ǰEb´@ÊÐÑ¢g/×üÀÏÄ$úØ‹âUû"¥¶¢;ŽþXŽòVF؈ÆLãcAÚ?@Šë£6ƒ;N»¢ï€î*Áö#ä› H<ž°Í÷ì{¡oÇböh¸AÎ`@nåÅ­ì0Üú¤#À<Ò­ñ>ywÖÅ™!HÙøB¸̺õ¼“sŽ}¹}NËðÇ ÞŸ M_5Ôºã…pŠì³ƒ›?gWNÉ ??;õsø ̨MQùZM$棨f¤âkº%œ±j…èk¦oüT,®Qcˆýãy¤ËNµ (©u}¾•~ð WmÜQßÊÆÍŒ’ÉÒ(Ù¾5gž™@o”40lK­;zl?“ªýC_X 'ààØ~‡™¬‡»°ë¡5RtŠ?µ``|ºî~Pk¨'ãå\AÛ%m$âùw#U’Pç¾ÈHwPÚ/6VH …B+s÷µ`„9ׂôØ ˜¤ÜÞo»Ï÷öŸ:ð$å†ðŸ?®ÇÇ 7„öàÅ/ÏvöŸ=wš´Â|ñì± Þ ®XíqÄgR'¤û—4êa¼2."“¯±f›é3u  eS5ž=hùFSåRñCâ˜P]‰ÕNÆ Údöd>ÃòHk¼@Æ;y£ñtÿé®—t›“¼kgÿ飽_Z‡{Ïw]wÚì–„Â8£”.TäÞ<µáä4ƒ°9-î0\ûˆÅUæxªâ6Ùi^­îæ×’¡:o7N¾¼\ìjhl±mÜÅ.Šìu—¨ñ¢Â‹ ïÔ(ñ$)FÝéi&çm“3·½|N4pl8±r¦ e+ƒMÇ])‡Ø—ýGW_È$Ü.°äÑqon¾‘“sDPÆÏ¹F¥•ºÕÈ€õ#zûŸœ­yá“U/ I;“–8ˆÍT˜Z¨àw¢†êšg{¤×kS_𲡓—Þ…ûDFž›8FttxÞ)mÎêÇĮ̀‘fb£‹%=z×€îÏî{€Ñ–u¬hI”X9y…NÌ^Z°Wýê[¾Ï†‰Æq´ Á!&¢–à6Ö÷ÂÁù8LO9Z™vB9¤®3™VÉC?ð ša]1ž<:Á«¶”í$,‰Ç5¥þÏ/*êOz! ’ð(Ö(:ŽY›=yæÛ©ÛѯL\¦ù^5ó'ln=Q™ÎÚoö¸”çE½–é†>ýÌùùŽN—sjQ0a[\ï*®…†ù%÷TöÙ,îʉÅÛŠ[ïÓÀûµŽŽ¡ÎÀ)NË›h({wˆ†¼,¾â˪xg–‡úW8Î)KWFÇ^ásõ+éu$~}˜ÙÞÉ;ˆÎmÞy(Þò€R2`Mîü¬æè'Í­msôÃd-·¸.©cÒU–H?¡àTéLI `óŒ†n4™i0ñ Àj Úp³#½©,”/}šN“™Ðù‘ݼЂ+^*suż€ x%N‘i¤‰á­Õ‰»è%o qÑÏ1¬/‰Û4ïØ£Xm Q|ŠpËBn7ލ·ʩHU™,’ Y¼à0^Áp#¦¼iìGÞ)ª4†ƒ“¨Ã~&¦ð~Õî}}`8Š·ò‡0¸Å7€×蓘’orøSêÛÁâÖ¤–Å v^³£Ÿ¶é½'Pn:ƒÜªkáî“h¬˜¶Ã»O"fõibÔÐk´£=8Ad€2]ç´ãÊbvÑwc{øAê/Äs¶C{#Åâ—E*8äÏðã°@f³è ‚nõõ}¾µŒÌP‘îö§a¹uæ*Ôô}¯*8"eÿæ—o=Ô6³”“!zyÁ&åR2¤SÕµ'£°}Y³ Ô5®wÕEl´âȬoƒè¿á8qýJ•M!לƒìò§?%ý˜c›qX¡+ZvCˆÜüìyÝý5(|†!1f ï¬ë¡y4ê»üe‰ýdÐ=0†]óN@Èfΰ¾ÑñÔÃ>N:tYʇ®yAH1+$õäÅôi‡RCulÂ둚.~ÛQÕ6|å(w&W®c4*Šžd¤\’çæeTQsœ‚Y¤€‹²Ön & áBýÔ€äbO÷ )E¦’›õúùù9ƪ%£“ºŽSE‡¸ŠRªø .¨IðMGº©Žû½OÝ.ÔwûýéþÁáÞ!½(µý²µ³ÿä`û™‘‹®Êok»¢ö*J¿>¨¨WÛ;Ïᱺ÷¨úüÙ‹Ý×^Ê£íLJ»¯Ë÷áîáγ½ü$õº7¹âRÒÑ””Þ¤·üèÚCÖ\Ë•2nƒ Ù™$]‚ÔaÛ®êrüMDæ,-‡åS1”ºp.ç\à`ŒHv΄ NÖe â¶›·Âf°11¶h¡à>÷.€?C‘: K8–¦f³È,°J:‰GTt[…)êúPb{² ¿Mì\ê,d÷)ä!ú ‰w£—èí$D¯'I"ív4Â;z‹á vI6uêˆáhÒþÊ_0‚*SœÓqVœ{Ùæ12*®?cÜOXÒݰÐ>¥ªÜJµJÛú6L{õ ÌŸQ÷·JcägùÊféQ 4c= } /ï6ï å=!ÕÄÑŒì÷Ðc´hާ8”‰Z§sÐçÞe…7Œ·„—ƒTÄõC=$b¸5f?´0tz²0ÿC+PŸ@#ϪY¯£v”Dåk'Ñ®MO“Ö&…5ö×=ì_«pôöi¦Ö§xsœ™_º¢§9å秤ÆZÁÆ-.MÔt«ˆ¶­\±¥Ê§[´f`íðDDe®sܦg"Ò¦KÕh8»=A1ê/¥iR^"ßmì-NNþQLFÉ%l-ED-‘ȦD°d ë±Ûe§‰©Y/yDûÕÚÆ·µï_W^õÆð‡Þ~x]¾¢Àtv*Àjm„û8"ŒÖ«;z{­ºO®¬›°²på·g‚ã^X…»Â™ ±B!-lG3VÏU¯KÅ7ª––zgÌ®bžXŽdš–=n𤷦[÷›4)­b¹lyÔJÔ‚ìŽ)’~8£ÿm^²^(â85âFœ”Âz ©œÒ©w¢m£ôfW1»£cž•j')ù_ :åƒ7½rÜ]`9,öâ7|¡ØF3‰^Ô þË$†ö?…§Q܇Ý'AMÍÎY Çtr;d¨dÿn‹\Lïn+îB“ŽoFâ¸Çv[¦ÁÑ>B”[ï÷r*á©›Q¤#ö:{Ÿ ®.n~ ΨðËÁ¡£‚5VfÐñxog÷éᮠƉ[ØÆ¸…ë?¨çÐýç úßP?Žé÷çp9ŵ¨3¹ï$W}ƒŽ0ˆCI“J ñ*Ìø ÞY‘™£J$é Ò?Ænúã1‹¨Ùf¯Oú¦Ô(¹ {0‰àôs£c¦Ñºé0ê0LLèˆIc~Іn±ÓžÑºN·&‚¸jH‚Ø´§SÔÏ .ÂÁ¦`Ê##¶±êOàìŸVð¦Žw”r]VýG·½¿žÙ?x¶ÿKëÁÞ!0ô†Éа,¿0{ÿ„¸YA0åáìh£K'õèO ›5š²Àc(l¤Ì?À–§¹sÞ€azålÜì>_Š# 1¥Ý’ÜßY;8’L”!vŸ=†ž·f$DÌ`fvváÆ&~·ÛD‚ïÔÖk¸E(´:7¿e÷hDÕ±ó§1l’ü€0z™L˜A4¨ IxŽÝÍBQ…fؾ»é=&df„WVØt˺dhµ¦¦'ÎöžÿJ]ÕŒü$åS£-´j™°„cŽñ®ítqóÙ ëgªèáÈ&DGÖ8:“j¸\ˆ@ÞS€,Ñn'ê0ìE´÷ÄêÇÔ¾ü =¥5¾ä…ÞŸDµA4þg“ÎÛýC¹àä‚Lõm¢Øòv¥L´xÑó;ÅlàcŒ^Ò1~ªé©{KíÔ u²äo¥§£B²9pTµÍZ‡g8È‹¸ì¨}¢Šk WœžâŽüq•2 %Ÿ§*v$´^4/)nëÎÊÅ{1­(ÛÉ NgS½ð¦ñ¦ò)ác@f$öÄHÈVst2ÐNâpBB哲¨ƒç1LÂ|hÝ3è0…9f‘LgžX°"¦—Æ! $“ÐçhæIòWb¹qB£ ÉXç ·Æ’ß4QícK9øµ! -|ˆµD§ñì…ÛX5L“©®1§®·0y #ÉA¼Ý•« ÊP kjºXšNRáFk.<8σŸ†ˆ›Š¢‹Ï‡d¡ßj…ÃXs/Òœ}J8ðp>…ê$IÌ´ÒÑ2ØÌj(ºƒjÇDÑXíÂöÊ8ü)ràn|m8v0T”ÐQà ¿>V¯¡q”¼A·ù#vwoåxúè´‰œÐeú›"…4iVE‘ÉwŠvÚ’„Ù&ƒýCþâäE§µÏö^ªlîmLË$õã“AìØŠÄ‡<¿¦p¶MÆÇ½¤ý&%Wÿ½d8¼Ä­¥ È»ÊX£K¡ã´£Át’(%›ädôÆ’rU=Qè!<’„Ýô£©½ÓÖSAÂ(¤aÖzßã6¯,뱜†…†{ØõîšpèX(€3‡$Ωº©š·®¨^€ˆ~dI€–r«EQ{¢J@õJ,™ÀÎÄ*±Þ©`QGŒx­~I¹JxœÓ·M¨2ø¯àÆÐÑêcYP:nŸ½}BZ¢c•…x"¿ì£rÖ»á³\ª†½ðZ:ꄸN#ªíÃaƒ÷‘n—Åf¬F'Æ ûðL§²Aæ"%×wV°bǨ\#O¡ˆaÀø)î;=˜F hÉ,fÝ€ŠE¯e?yUaU@ûÊ¢rèäÌSpy ²Ù ²(‹~©Ž€3®>™§+1ñ ·emwŽ„ÝßÖp#+¼t´Óa4:qGê¹rê[ :©AoÙ^M¨gþRMAð uØ-ÍÅ8ÅüNM7Cz€]À«Ñi ˜¸KÑ1ó<Ò -"¦éáD$ñ4+» Z*Bˆ»{tIEi+I’TaÔy´ËBBAG¨ŠBbYšÃãñÑ&£“©k%¶\&8–å Ì¶§6:ÑyE›.ŸMÐ8”tHŠ^ ²Š™ÎÃ…àÂQª j|7¦/s"^a|óÍÍÆS6µ:¦ë‘Ûh_¶:c˜oã„òÇêý{}ŽàÅPÞâZpü  ²rEýÏÄÒÑ †uŽ ~ñ–Ü%»jÐŒáÌÖàÇr ë†£ì½©e S”ÝÅX±Ž¹Åèu´z•¹‡‘ÏéW[Uþôø¡ˆmJ8}mžçrÚî¥ã;—¦>’b^À„­ &p¨ÊAÄ"lVÏfJGô'eE9G­§6€³þfÙ‰ ñ·m4²ÌÈŽHµ†q§ô…%¡hƒ¤”™ùA¥Võ課B_ ÜâW$ÌÏÄ›¢ d¬å Ùr¬•Å€éãQ8HñR±…Ûk£~ýÇ×™’_oós„‘ a–Mȹi’à‚"ë 2¢¬e›“Nº×iN³øu¦èÜö<ä–àí]ù"2«Œt„ ŸŽÒÊEå¢TÑ^ÅbuñЊ>lýN§F)­#Q|]ÿúëúÉVZߢ‚•b½^ f´ØµS˜ÑJm³P4Ž™Ø½"ýt¤þÑ×ðDx†¢ù¥¯©ŽÚÿF 9YäÀ¬míœÙžìî=ýEjhµîÕD"g êhçŠÃœßŽI€4 Íâ;¢úðºÉ«KH$ ÌãJÇrÊå”’2ÄX¡Š–¡ãæ]EanLP>GúátÿPZ.-q‘íç^Ò•ÙtÅÃÚgFL¼å“ßæàê)r£3vîLÇq¿ý¹¤&ë'ÂÖ \«3ž2|›÷ÎH¼×ø<Ѧa|Ї)qè¶¼8¹0œ83™T±ƒ,â} ™ÂP¨qƒ2W²ö7HŽ™¼.¡Plj¦©±ãâ/pÝë¸Ã#ã4ðŸ¹,ÁTsÛ¬ûªåäËx'[M 7¹a•Ô4 ;U°óÍpux¥žM^¡ÙZ6OþýpïYËYY=ñkÙd²Ô“ḞvÏQ-åãɪVí`ÜœÐ+eÜL•ÃJúWå@I¦qëvK/Ì£«®øÁ ëo™o¼KÜU å„ÎF'㸗–U‰upü’ì›EH|sƒ³»Yœ°Žm¸ñú½âA»Ï[ˆÏÆŸ³’ ô×½‚¹¤uUm èpF/`Îl*Ù·}sï²Zè ¯ª:ɸQs®°¼-Žs› œcKó}¼^ð&NÇÚªâMDJ7¥'À; Ü{ˆwœ³Å9[”sšåh¾”†s m)B Ÿäs¾k˵J¶0¤eµý¤õp÷Ñö‹ÇÏÑ0õÁþáÞóßëìmÌø¾aÝÀÍüN“/‘xyí#H°À³¶À@!ÐAcq·)¾HWÕÇåF+MJµ¸P˺1«eQBƒo ‰¶ŸW+—xXǶð¸A!Í‚ßdÖIâ1ÒÓâ*+µƒ_÷Ÿþ¾©ô·l¦«Ea¦NÄ#Í»2®Ì>H‚›rý €Ÿ– -VÆq,R(CGÎöß%R ¼¹©yk2 Þ¨l1/OT~&dÛž´lïüûðñöᯛÅ^VPkA«kо+µ‘ò¨{a‰JÕ½â*g.³*ÝùÚ4(X«pQ ~8*¥1t8 Qè&½©$ѱh Y©PÝ«„†Æ²Qr+,íË)è(*-{( º´Ê™À3­ö5òDÈå¼3zUÙ3sN[t¿Ý,øŽ›Q]£cbV)çv ½Ð„E+þµ/OPHà Óv~ÿ…:ÿñÄi«’×ÊoÊþ25ÏN' ¨FÉ?/¹’›C¢ßHƒQ—‡#gàÑ Žhƒq<¾ÔЍ"*€ƒ“DÒh”þ÷-À‡R&ܵs(”ÃäP‹A°AL¦‚—ˆ{ùjýÒ;à .Û;÷w¶Ö#OÕÑoG!åCˆšra¯J\»Þ…ÐÅíÏ÷QaÈc1Å6E„SÑ3Š`cçUüëîöÃÝg‡_f@:…™¨ Ö·÷ôѾl´ø˜S«ÆÈ†2Wxkä8B…sŠezŽ:Æ%`ŒÎóP”LÑE”¢m2ÔFí^í‚•#¢ tÖFËe(÷H,@Èh$;èTp©£]òâ;¦cTdí=FûŠA·0u§úíõÛÕõïëýôdþmטûdã®!N±…~=WE¢T&ƒîÿð\B¹u —s@ÂÑ °×«¨95L³Ç=”ù|û@uFûºLj·é‘“VfX›QÈZåC n/q”ÉQšÌüí'Ï·ŸQÍ3‡åwŒî [|*:—h¹F¦àÔ–s4nج®’õyzJ¢.[©Kpe ï™@…è{½eÅcØÂŸé ]ÑÅvlR ãý`‘pŲ<é1#ymK&'§t¬â4]ÀÃH?ºš3§atE_߆=¨´ûôa)ØO†éWAð;6Âk*P¯>úÀЃ\ƒvF@*ÇäÒ-´Œ´ ÑÞmܳ ãÑH@ëØ•ªÝÕ¾%D®VÝÙ(ƒúâƒò8&#Ææ¡Ó<¼Þ„Îã~l 1.ì”ݼR0[:A{šKCh¦ðò@ûƒ,«MCWaˆ1к7€¹‘¢{ úY׆§ÃŸâNãÛ»·ï¸Ìãµd«êùô³döLçê¨WÄÓœ¾‹à ÐÊCÒ^vˆsÙ8Cf™ý„þ“^ ;°C×t'‘`+ ó Ñ;Ì¡+ê³H¯u3Ó­£ÃÆÛá./ Åí݃ç-Ø=wŸíí?k={b èáÒɇ¶™û¬ÆH„†¢Ë‘³ ¤\ssëÈŠ…å%œw Ùµ{jÔŠLY~q®òý9½ËÑÜþxí•@xGcÛ9&ŽŠý, wH” F+ƒaÈ?2 ­?å]1"LÜ-!3­¤_ -¥ªöš†³™„{¸|z—v準3°ë÷¡){4m %Öž5fwS.Áh®‰{ ×PóôhéI$Út®jéìq ôððâEU$†8š)7}N™&7Ì/àl4º¬Í8€,åNÓå—r§¥Üi)wú³åNwàÈÔà3¦+(ÿ‡ Ôk²Ž¼´‹JÑ ðñ Âq™ÙÉÖôª¥ÍŒ‰è  [šâ=ÍŠì6Cø%2Æ–r^›š£D‡©aði`á²ÈHfEý/šbƒq Þ;ÑMý$¥ãËí«º2íyD¯›+nÿ¯,ï’ÂqÆFa¥@ïB¥A‡1^{©DZh@ioà¨6P ¸³ºfmEÜÇ€{d§Æ‡ÄÇZ_ðš#‹Õ‰Í!©¾ëw}ÓbQlZƒ!hšálÊ8Ó}›Û]ù•Té´RN·¡—u𱢞&çÔ{4ÚÎë½…ÇÖCæÍ+kÈdµ¦‘TÐX*Y4Å®Å;ßì~+¿ë5Ûwåv¿Ð,Häl Ð[NãýÕXÝ€ŒZ¨SÔÒÿDsÓ^vââÔÌek€^ —ÄAû²Šº<¼ÃÎãnl–.°0““SVxGÑvv^6sLŠ ùTßå¥$ˆ iõ‰-ßΰQ‚ßù¹Y |‹6|óFž‚¥gÇ0™0ÕÏÇ#ü‚ƒãü †_'íö'1û8Ÿ™’ÙÎÎ'Ð1ÛÙÉU1ÛÙiз¥‚Ùl3ÂQÞtûltÍ …E¯ÁÁ̱¿þvƒ³#³ÍpÒßgÔ•Ìc#hÕUDã†4âó# ºÓŸÌˆky0Èuò-IÅU¶[ˆ¯ÏŠ>Ø5’ÓÖ<ƒ­£vªäšjýÔ#ÇN «õ´pœ–ZyZzªÐüpM³ )°”ØcÖYcÇ]üo!Žïº<ß'bù>;ò¾äø>CŽïs"è_$çï\fÒ’¹Äáf´`¹ôç,}¥M¾Z#òÒ Å ùçG9o7TÁ¸X‡Ièï|SÿvÄmhTzy™áú<ˆNÖƒ¸éNæ…4»¸ ¡:NNX7‡ǧãf.ÁÏQ U8ˆ!´oïçP7øtwÇÎe-ì—ÒÍO,Ý¿Rn¤ Aû»Å™tM7qcäXKçÒæ¬>ÎÌLíÏú.O\ƒç@C«0B‹ƒæ‘˜îõ’“‘²-èDã0î¥~HŽªrÀaÙl&&UvÖéeÝrѯ§kÓ]Y`qZ,ÊáŒIÀ:kôÝUÀmKˆcbì<¬÷¡ê™ªþ¦ªoå]è"ŽþèRëÂI½E j.°:TauµÈ¹ Ú«p½ ñOs­,à¨Ï¦dßÞ7û‰&švI`¾š…æ\”ܨBä ýÜ¡¨«âOzN?Ëê¶õŠ÷J6êlrwV':dt yÁØX›nð#ÌŒa8ÆȦUÍ:ª…wÈÄÉÈü7Öß–< Êmˆ¥±›eCºFÒŒŸüšéË‚“± ‹¨A¨ážë-É5ÄY>I>‘Õ- ʪ±¡tz! 0A} #9Ùk0=êAÆA?„y» ôé6ÎŽTU´Á%Ž ÚĶHQ“öA&Q61“G¦·MPa‚vâßZçð÷'ð[°:Æt1ÿ|téÚ ”eŒ•M5aN´‚fº£è-ã"ÇNbÿÐbÿщÓ‡N¢Hz¦¬›êžH8*4ÆÞ~"@‚éÃZF7QïÔújH–ÂBÆo èˆçó•9Y7ª%FUžWùæø†A”­éùðêõz­^/I¸bmYL©M¬B‘ÍÎê EEÆ/l!úÍHÚ¼k¬<ê3(M+9²Å€¦5O"ŒâEÝ|§Å·f4¸€ØÕ.ÚI·KOãNJ¿ú;ìówœTøp|,?'ôÛ‡ô ;—Òùþ{ü¿:ð$Ô¨ˆhêFFåÅ´®`]êÓJd2àä$d–Ò»cöÅ‘w¯sHÓ)C†’ÿ)ÄÐ9¥­˜ÐØÕÛµ;ËFL­äH!ʃ®5ÕÑ )‘5d"á5àË¾î€ àÇ ûÑ;u@hv0„ïT~÷åîîËç =Ç—Ø74¶ž5×™Cs´óÚó%æ |º”¨ÐŽá§¶{]½Ùà0B9· îGö°viÉ~2ûƒ³oð÷O!¬B…mNùc:îÄIíô~F‚õhïñ®Zë}éÂÊ…Ä‚Ç>*ªp^(à W—wµ[ƵÕå@ÛøFz; Ëæe]^­@v|?>fÓ™` pg !OG½Ñddz ðÚgý͹åÑE ·ÈQ;tùú‘^,¤µ.¼©X{¹ò«ü‚¹!&òã¯ùnk—ïŸ!A&±ºAm©VÏ%,%/ ߨ…¿˜Ïùà\Wdæ<ñ6— sÖFÚÇ‘¡…£57YÄð9í˜èÇjÌ!6­iï=ýH»ïq©GÎhU«x… |Ô vP£¸zS— SƒÁJÎ÷yÛ匃‘»]ü%ç#àࢶˆû> ¹…f©Ò`ž‹p%ÿW]he†'qÿ7ïÈ'“ò‹Û|t¿þ®ƒß¬Ã‘?"×=mý ç#{"ÒÇ!^ ¹Ç!8Õš«r’ëè9çŸ/M 8÷8åÒ™ìyê“£jEw|¦Ï47s倜q¤²‰lî?øçèÄ‘úË´)ò÷çámØ'tèc¥‹‹3ó³ ÌÚ|oŸËn°wðYµZЋVK¯;hÆ›˜`€ÄÝ9»j5¶q3UÕg|3ßœ†>¸ëŸÞ}ã Ï¢p:ÖjÊjïp_íüpï*»‘9E¯"ôíîݘÔû`ȦY%î|j°âŠÒÃÑ ÊÒW¦Åëéx4^Oo[êIÂÚµd”ôzÉ9q†PaJœb:NzÐU2d}¶s¨¾­}! Fm’0ÖR©]ÀOð *"x*ñ½Z]µS”ß—Õª“s­¢œæà+”,oø·aÔÑZ‹Ôê>ˆ;DN[òÁŒjŠ·€øº7|¿FÒçÁÀ ,ô-9)멯b€VP›¸LÐ8)ÅjÎÂF¤PgòGcµzVâŃÂ#ð µ¾Þñ ‚-Kv«Õ³²CšSlâ~ÿð‘º[[W; â­j·QüO:ñh–\löP±©ºýôpÏq»·¤RƒHèNmí{œŒ/‡¨™ u¦c8±¦·JÍ‹_-©Óè‚ú¶Q¡†ïOÇ)éP??Rí:­'oXk—xÔÒOá8ê]VèâÕåhŠ[h šAú"¸©*]”8l†3¯âߎh° &Q…ùI‘h;Ö;B¯Fb[PÿûèˆÈd'“ªƒ.­¯—¾j@E€( ·[›.AÿÆFQ G£ðšúê2¡{Fc ]6£ñµ•ÏG1œ]t£±®ýSÈÂSèÂÂk(‡UH¤%¼}Æ>ðbÀY™¤Ý»¸Þ¹ÞW P5j]ý¤6Ô¦ªnÀ<ÅY°÷à œÀ¾£¶nï½$4ä;fŒˆ‡½ÑØÛ£D a8¡uшæŒ ™VŒ1Œ"O…¼gš!áIíï¯^”qĨí½öw¦í¯ðcXƦ#¢ÝÆc^ÚViV`îLPó‚Ö0/ì õ?®®uËœ-,o}°Ÿo»Ÿ¥8çÀäaP;&¥¢f¡VÓ•ÕµòÕä„þjÊB ´·/g[FJß%ªUŒ¸*jnñùÕúk…‚)ïó†ýŒˆ™Éˆ‰l ©[ÝUßöÂÁIï¬×Ê[ƒ“Â8òºh·ªÛÀ®U·CU}ØúõàÅËÖáþ‹g;»H|ÙÆÄÖîËç»O1¦Òa«U`åOmb' ± Pu7ð›q„¸} œkòeZÄ'dHŽjv s¾áÙŒ;j±§’ŽÑ1xEmï´v¶w~Ýmý¶ýX„º¹U‘àð‚÷“hù 8”PÔÉòy™OÈG°úuÃÚ&&[[æ“­M‹Í{–7D ܬ-y¨œËèJÝ2f¬§'ñkˇ,4‘ ¿`·´_tç>Nf3t`G“Cyè4îcЇqrBY”ãÌ2+6ƒ™”­äsuÎÞSPÕî‰ñqC k£7)«Þ_Bò¬¯¦°XÍ|d83 žñÈik§µ_a'úÆ\]Ï1lŒVIGnˆÊ[}óQDÁ™]Bƒæ¢Èä+¦ Cª–°²+³JI…Šs€'¬å’-½DƒXüäL†ˆ¾hí·bÜD7Ôí-íQ…nùüùÆsŒ¼;à˜šÔβ¸ílVÆ„|õšËXPß¼e¯Þf´mÖU0±{ÙVFRÚÔRnelœ-Òm‹ç dYmN›Æ/ËõÕ•½mÛùœí~ ’a/B ‘ Óá´cFPŽLެe:OFù½2$lá-ó–LŒÍM2–hâ!9ˆÂ5²÷òÉî&ž¸ÐRh”àñ8ÆóßÙ‘l&ÚŸ ˆ\Àž`-ÃZ1{‹b}ÄÃã # ”mÕƒ ¢Q¸õ¾Âû3¶MâèqjÊ„½¢0sý²väô ‹ÛSaH!›ÏP¬áçošÅÕq2lIøÖºf!yg§Ls}ãÏ^g)ŠÎ/yç ôÞ߯A¼Pôw”4®EÁìKÖ•¿ öQ¤zælf³ ÍÚ¼€€›Bq”Ú†£hà#}¡ ­Œ $Pp ÍóÀ÷ÏÆa:¦pÀ0/…Ì‚Fx°ß76y¢/‰ÛâdHPbƒ½¨±F&é^šÕFvJì=€b䑟7Žqʪâƨ‹‹m¤9Â"Kê׃ꋗԶ“v["ã¾4Ý”Pœß ŽŽ*=„]Õl’¥êH@U¨T†âÖÀ·F¦tYñ8]Ëå Œ^ü&bYa8T= ×ãNL _ŒÄ¤ô&ýúa]­R5Í2ù) çž1Ð_q")K›ús¥}*C»: nôâER@éèÆÄ– =&a.“JDO„æAE‰)¦Ñ9ȲîÔo¾èK`ÓˆyêJrœ¶'#? ªnG9=…UåÓÂVË\¡ŒÓÑ8 ˜;½3Ûh-רoÙº —¯î¨»ê[õK’iÅ É4NÇ¥b\ªb`¦\ ØÄDþ ^µÀ^ÄPLÎ )Kv¯5>P ‡ Œ=tuc]ÕãA==­y ƒ“ïkõÒtE”Uøjs2xç„{úÀ[:Çxúàuä q?9ºì„à@ÄôRµÍfW¥jR2á¯SÜ•åâ§Ð ÓÓ~:îuÃq;°½xäÔQhÅÞáp28%jç›oÓÆ$Òî’ØÈJBÕ=Ú•+Ut¬e=c…ÌÓ¬Vj»—&ž}{ƒqÔ:Â+ëFšg"“q˜#¼©È,Dì!mxh+¾c ¬jòÁdêǃIJY Àh¥#-a¡D` Êf ÐT׈bÀŒ·(…m"H†|1V¥¸¥Ê–¾!I&R™± ÃBõ îN¼9Ù–lwÉBœü„'à;Ú€ø8íó5ŽËñ%íkU.ªýË^–z=…æü±Ÿ£e]àæãõÎ(z;‰0¨¡îÀ‚áªêžÂne:ÅÊíö¸iü›þöÓ³ö÷ê=ÿöÓË”Ÿãtöàà!_ðCf\—+ÈŒ’7¸xâ.ÒdÃùL³ áÞȽÁÑÊî—‡o¦ 2nÆk ž$Æýû„œ÷jBOÜšÕ‡Ö\¶q}k‡dÈÙõqˆw5Éz&ÏœÅÙyœ-ƒH,ñt’qKã'i˜YnÄ ¼Aú ¨-ÌIC¯›]b>62tJûÃÜOÏá›)\<üu÷ñcËChöŒ^ç2ô܆xI½Ëˆ¯¿Ö¹N€áÏ’ôlƒ }ÚtNñïnPÜ`îÝØ™~HÁl!Oäì4àPÇag¥Èd`|‰°"DJ¨‰%¿ÑýØáõ¡% tš Q²¸ÊÁÎIŽ÷ºÅ-sØ{v†ØQß½^ê€Þ­‚okCÝ:Œ±¯–V…KÁ\oÔLÉÿ Ab÷Õ'êÞ÷µuÚQ¾¯mЂ ñ‚xÓT˜uïÙ ·¢»¸Éõ’ß(n lT¥-ô$¡ýbáN¼ã—H;£B:„ö„R‹~¨­Ï¯™¹éÔwPò»léë*a´”icÆÉÙû÷vð”OSã Y˜e“Ï Tg³0eþo?þÕ¾gDXa­™t¹jôÖ‹—¦æ­RS¿Õ§û÷ÙWÕýÏ7 j‘?»Ï_¦¯ë\lÊLá¹¹E\h2ñ¼yÈ(iãˆx뀳}"3¾/—ì}„(˰’«lvj#.5¦r Žð>¶]Ì2zžÄ¸“'Ý1Žï Õ¹p„ç$ºGË«Iw•"Ýö3Îõ ôèn¦F$&«F7O‹Ž¹n«'oW(`‹\›!T)éǽÚ7£(Lã²æëaÖɆ¹+‹ÓQÊEjº\Ç[ƒc5‰‰|(F*ÔHFÛ€ÚtµãnÜV(d¦ËYí&}¡ÀׇêqTHU((';ãÓ`«U†Zu ²6E˜òíAÍÑ}'RV›¹…™]_àΖϙa hóËm©‡»­'Û{OŸÃ»ÏZ$.šršËË%¶Ö7:þäÀ›"3òh\kâœ|ßÌW#6ΦO Žs ²è8¿¬ „>6ŠyÅáë—mF±àüzaìO>Qû“e4ë¥Dêê@ö'ŸGPé/8†hN@ÛÁ™ÁBçÒˆÏ$èN/ã€~^¤Ââë³¢vä´õ‹ º îù‰ƒ{jOVšXJLøžË9+Þ™Ëñ]—çûD,ßgGÞ—ßgÈñ}Ný‹døô¥×LZ2—8ÜŒ,—þœ¥¯´ÞHk¡Š4lèæëŸBœ‰y‹¸¡ õI:ªOÚÇu˜„þÎ7…@í¹ Ïj@®2Ãõy×)Ÿ×Œ ͉r¢a+‡›ÆY5 ǧ´<ûÆ­ÙËà 3 «c’§ûJCuƒO§qwìÌó"II)ŠË=•XÅÝnD†Š6Ò7z|Ãæ°Ñ­¸dÀr¿&çØ–Š×/Eªq ,ာØ´DºÅf¡R™®œ) ú±+;;(&t*) ¶”ØEue/ÀèŽN¯Üì¨¾Ûø¦¤JŠ? éü‚w‡yÃMôpÛ=Œm,uo?ûmè³áL-øÏ\÷ö‹¤3ˆ ¯WêÞΑFæÓœ°¾íRdù¹Q_ŸùçÉ-ƒi}[ÍÔ·]J7?Fº)fwAàQuDûg…f {“f‰z™Wa2tƒÀ3ÁŠ:%gä_]Äè¹O~aÄùëX£6ݕ녛¯: ÐX½äu'‘sìã·-!ŽbU ý¬V€ªž©êoªúVÞ….ΈˆÅ{”€š¿ÔYSý,g ǃ)­NCESOÑ!$¬ic=l¸Á"v®.ÑÆå,¿ aµi3üÛX›±êuÛ²!DiìfÙ®‘4$£„‰_3}Yp2^S%•‰ì2¤Ñ2¤ÑUú»yh_†4Z†4Z†4úLz° i´ i´ i´ i´©_†4Z†4 –!–!–!–!–!¦@.C-C-C}i[†4Z†4Z†4Z†4Z†4Z†4úïÚ¹–!–!–!–!–!–!–!–!–!–!–!–!–!–!–!–!ž/C-C-C]'¤‘Òì”ïYÛ¸pÐ胤¬xõdîï¡ÚÔV®2ìk¦üš.þ©uËîÝ\·ìÞÕºe÷>nÙ½¿K·ì8IzS‰½øØO;G¥‹ziA½.®iÏÂZž²rKjØ®è"Ä«+f»Æ°ŠR W}WÛX¯Ý©}[3-èxr²Šê\ª;Ê9î¢æîKÕjý¶ÝÚ~öËa«U6€ ;Ç“;—#lt+¹9Yh¸JgiʼJÏeõ“.Ư›JWì‚)kÍ´³$îUXK:Üâ«UüÂZh¤Œ+vãö»[ò~ ïß~÷ýøN½T«…G½ð¤PvS^B®ušƒB…´q”éŸZ}®­‚áÁHw*rWPNõÓšh«‘¸lõâþeÈŠ!þÕ!¾ù’ŸvE]–YMÞ_ðÒE³Cò`ï—ïîªîÞýîû»w׿¿óýú½o¿Ýønã[؈Ü\wn«»·ïݽ÷Ý÷·ïÁ7÷Skÿßj•Õ%k£as[ÐCÎñ/›c½ŒÆ"ê+»îíý`é òÊRؼ€Eli³,!Vd½-RLÆ×âGívðI¥zïöí;w¾¿½~绾½ûý÷ßþ°þýãÇFçq2H!'0~ñ‰)O]Û ´,$dzà ÍÚZfÚtÂqˆÚn4)ø¼ŒI¯P9Ò'Áu+ ¨ B5ÇÑ‹‘²˜¢EÛ«5ò0b¡…[Çàp¨Ñ‡‹°nU»=¤Š¨_ñ€X¼Ô¦9Æ^£Z° Ù”yã*õæÚÂì|óM•ï>PÚüXJWÜ5δÇ^–wø†XÅ!Å4`@è0!¯ßR å "#aáa»«}hÃv„i½$’4_VÍÀªt­­b{¿‰Iû«Ô\¶ñ›oDSUs³·öÓtßYÛôð²6“8žÔ²!¥£®ªuT1«¯¦Š)¤ Ê[™¬T©$â#g§GRmK¡„™¢;mMÍ”n/M¦« …¥Ü«ÒRQ¾0…³CûÔ|üæ›rpë]p‹ØƒRZÚÄñaõÅà–Â'À¶Ö­uÚç¶ ÚyK˜Ï- ©ÃpÊÁ7n[>$Ö œÐeÔ9üÚƒW…Fô67Ý4>³¬n°âi ö?ä(‚˜D».$´À°ûm¤IZ€´åeÕ ¡Æ«™EX8$|Ãù—S¯P¢IÃeà¢ìáÜ”Dç0Kñ.a›ï²eô ~d&ׄõ3»Î(]Uƒ¥ e+ê»o+êÎÝl}„˜Ü­²ìWÑíE1'ÒºíG8^Tã r©Ö€P°Ä¤özI¸ šI×è©gK”Õ76 ºZSë¬ð‡ÕûšôâÆ½¾¥ ˆC7bõ£—Ñ!:ùUüòƹF›¿ÛM¾nDª‡=(ïuÑ!é¬W]ÍÌÝ;w+’‚Ž>êqá9_s¥á‚d üÆÝ;µ;wáøå5f[ßþ@I´í\ØX«›L¤;ãp¤¯¹ÝM¤ï0†dƒ>0ÒÄrDBWW¿ÒSôý{³Ñ¢?Æ„‰“2á$ž°¨ÉËJ͸>!ynû¾¢ò|[X»8ÎT*=¶ñþl#×Z}Ø:|þp§ÏŒ&ð½{¢ ï½O¯Â{ï¯Sá½÷Wá½÷©Tx³gÚiÞ{×Qá½—§Â;}ÜoL—»¶Û“¥AØÒ Œ¹É¥AØÒ li¶4[„- –a_ºAØÜä÷òù,ÊÌžyð?ÇoÛ'æ:ÑÜ(uÔÎM™O !Â/‡ Ån]“ å0&×»ûógª©´Tºq¥×^Œqo8c ¯X:‹·¾h{Šë¯°ÓäœÔY'¬Sµã]ºÌYWsËy«iEíP1euÃqŒ\ᜌÐÕ¾öÝ8¦I±îZÓ®|ÝS>±nv’d“‡Ì%‘2hj4—©'0ßI—þïO‡@UD·„|'B†˜]«*rü ªãQ؉‘,…½*ÌDøRïÅÇu|¤ÂFÿ6D·®„ÞVòF4¼…£±_P^GÎu„ÃA>ñSü‚4žOáØ€'‘ß Ý æÙ‰…>i·IO‘ONHF}‚ñ’©<{)†£h”ž²3Ϫ£ó7z“²‘ãÁ(êBʽ¸£{z1òc˜¦ÑhŒo1z#I\K‘:'²À¨7Ö&NQ2hLé@%x Ž"²/u­Ê¤Þ}žƒO£—Ï+x–ܼÔÊ×{gåjcÃ1Øwh[HâIMüüs^˜Ä‡—ƒqxÁG¦6mh°[í¯VŒ-s|¼(©dÜeW{Œ(JRFš`ðCé4;ý Ûœ.JoÝ¢Yäöe–Ǫáp®®õ€î`7a Å=R¾? {1Êȇ“q-0:§‡šÇœÆÓœ%ä¿+bV ÓprñÌôèMÛ‹¨‹ ÎTã© q´ÍêÎp¦ÅsP«O9BÙí–Ó DúõÐjÑ©ëä#5¥fpŒÅð˜ÄEµÀ'›3ò7âý¡YÚÊ©«ŽV©¢Zd¹¼{ðl§µ÷h÷ñá.šýÀy~ÀKRb§oâá• 3UÇsÎ)X5Òj¯žLw„,Š.¿OÙHûöeÀ›CÑÏîšb7Ro£ý)ëážÓhç[’í%Ù^’í%Ùþ§’m{Ûôx`÷O(ªI¤ºY“6_òT½‰ö‚ÿœœ=‹Ý–ú!RJÇqŠÞÝ/Kêø2l·ÿ™ÁR~ßþ$RLnüÐïËà(³ƒ£žÂÏ-0 µ«˜ih0gì¯ÏžòÜÈNøAá*ýë…ì×÷ïRŒà{„# éG:°ƒâˆ·Ö®)Ó7ÁHÇÇTÄж“!úoèõ˜´œŸÆÐ®¡Ø’6±òæÑ•!Nn v)+• ºRl‰n£t»v·ö]IRGÑYì%œ?9 AÐãÕ߉sNª¥§5ä‰ÉI.JódÛK'ǵ@Ì .û½ew³FNl$•Ý}º6ñ ³`:ëMœ¿°WŒôX»¾š60òˆùTÞY2ÞX…J·€9 ÓFÑy œ '™ìxÙ(1SøhÎxœL€¯)-3d¨¼`Q±…*øªG«tµãî%:Sò‡ÇAÎܶѸfZt”?OæNŽ, âÝðšÁ›3áZœ`ϸT0ßhr¸—:Œ4 RkUø_×4zÓÈôLŸàï„8t@|2ˆÛ¡xrñYJ! Œ[·£¿äoâ¥j‰x¢ ¯Q‡"e”µ‡ÀÜmÈ Ï; è¡,[´tE=‹X™·âðiV‹š µáštEñ@Í^0Šk(]ÐÕû À¥u T0Ý”:˜þk²!ÚN*u¤‘käŽÄ:’qÐ °[pD›´®êÕúIéhkK<”Üè§øBô"›u¹À|ÇûÁF ÎâÍð€øÕŸžp‹>_½$mGÚ¶õš ÒBÈ]Œ7·5ݘ±õ§©ÕHƒô‹‘ç¬Eåø¼èJ¤¼¼¼[²éù¯]†TåÜU(9ì"ÔEô”÷yKpE=ÛoÒ^ˆ}AÛ€qhZ.ÞÄX½Má!baSaÌVD©JWl­J…ǽû`iÁ¬ƒa€z›«¯ GÅfóu³\o6›Ð¬ûŠè^êNA¬·ÕIˆ-£òV½„žÑ –s\kn Ó`»0K<žh•‚NÔ /ùâ"›¡þàðч‘ ßVŒŽ¹LOÝ:K¦ÇÐ"„ØÒeœ6Ùźþ½qà*}Ÿ©«ä´,*JÍR ÿHÕô:»Ö­ªPÏΠƒ1¬©“^r|ÌZˆ #žAh,v:󃤅9œ^®aßÖ¨ŠÝ_÷¥æ_ó¯ÄÕñoÞŸ+>sž›ß“«žõW_¾{Ù3wîdkÂÄUßWk/$_Á½cŒþº(KQjU…^­ ˆêîÁy £Ñ~ÿw¦— g;r¢‹¹…'S¥ /)Ýoy˜‚%'îŠÙUÿJo‹5%+Š}AÑÛ|^¤¸_÷Žv ‘úÿì}kcÛ6²ègëW`ue©–äW¼©SµuüH}êGnì´ÙR…–(›‰TE*¶7Éþö;IP’e'õé±ÛØ €Á`f0̰c«>(Á²mU„gww¢|ï‡ù•ÑRýý÷íƒSl½&eàôÆW¼ºÿYw. ±Ló·EÓî “av,x¼ï“k0c€­aü}+p‡Y ]ôI¥`I‹ì]-dåb=¡™éÓÚc3¶€íßX`sÍ´¬ŽŸÆ^rôlî&€6¬Èç¦3ÞÍ[€ÙK—’D¶ÝvæÁ|&H‡Ä*ÑŸ¶'D°kîP´f Á5Å:9„\Ã¥]´Ovwæ÷‘Ñî*Ø·6œé?³i? /m‰é@uâF¨:£qvÁ¥ÏØ{¿—9ÏôI²ˆuKYÀd0RÙùî»?Œ§PEùh4ùT…hVOžÊÐQ %@q¦«ðÞ&‹£ŽàˆA”ƒaâÍ»tŠKc Lu¤;†?Ú:Ü­쟜òþúÏ2ùªóDÝ9üÒ“4ŸIXùAI\5Æ`l+a˜U¬FäJ1ýí‘ºÝ ÄtFA¾Øáö)P*…xõ(L5Íg'ëš­H[fªå8.šÍÈÊY…šdÝL®Çfªf–d6i›#+“¨¹œ\³ËÙ£Y|'~(Ƈ{>"Нo´ÃJ±D¡Ô7B4¾jƒ"ùT¤›áh·9`ý~Ê4_¦¨’Ùi$G•Hhß'«˜]Å‹ÉUýɈ¢Ôõz=‘*œ•±sÕ™Ð@]Ç<jÄ·b…V‡šè “#Ä¥kç³b=¹窶ü9kìÖâÀæÀ¥1²:+÷"Úë¼wÝ!T0ÄÁ™ÑžQ±ºÉÄ•]iØ‹¦î%¯`8õH¬,WW_Y®Ðæ”âúÒù7,ŒAG¦ Š|¹jYF½²dbàkz&} cn„9mZJó@J™Å¢›k¦;ÑÄC›Ob0qò41ï7RhG…™OeþNNÌ$€©ùBñq[ÃJ¼€ìÔÆköˆ×„b¾ÍN ÅBRÐ!º±6¾z ¿šôXÔ\±6~Ýh¿œ6E!ÚHâØ¨¡Œö‚At9GÉ$sߌ&jSÏ_îÎérœ 8“Uðé}ÒREãpÔ¸ž¯cÐÞ»Ó'hJÎñ÷jˆÊ;P)hžfÒ)°äüJÖÎhÜøŒj…p¢®…°þ‚šŽnªv!‘érñR™>ÖåiÙÝ+µò_Hß 9ÿâ ‡ì,Kñ/¢sÄëèn•ޤ8˜¦uÃ̪SYöL M(ɧ;ÑIxÙå+%ê=k%15%Þļ ƒ‹¸š¢P™‰B÷VRŸúìˆO‚°Š^ÑåEçÓY¥œædqEÐ馛EU•ÖVlŸIÐÓ®]©Øý¿©U¸w¬PìÞ‘F±;»J±{;bתTìÞH«ØMñ÷ݤ^±û×V,vgÒ,$N¸t鯤Bì~ÂNd¶õ÷Q#v¿”±{3EÂý¢šO+‹%u׫7o¢Ãô'¨»Ib7«TìÞR«èÍ Uô¦j{·×*ÊÎYµSŽU‹=õdÍb/¡YìMÒ,öìšÅÞÿMÍ¢wÇšÅÞi{³k{·Ó,ö¬šÅÞ4‹½ÓßKj{mÍbo&ÍBâ„g믣Vì}µÂNa¶Å÷Q+ö¾”Z±w3µ¢÷EÕ žV–Iw¨VìMS+ö’jÅ^V­ØÓjEÊгAÅ1³œŽdÀÝ/ÞN\½­ÕÐg¨vîk€j¼õI9~ ¯ÒG,7þÚýî·¡}Fß*øk¨X–n³d}Êõa^›D– Ùb¢Ë‚r‚ÌÇ2V””cÍ~W÷*ÀçæE(%f 掭‘ÿO «Öð– Ô§a¡C¢%Ó|jR© Ké›Tý-Y8N*v®•w™jÕÚj^Ê«Lh$}×ánG#ÇëÓí\g4ò024G´[’y*ÇC˜‘P„‚âNˆºwœE=‹‘ eJÅ/a rkyåqù]"lÙŒ0d%ÑK;^KeGŽf‹Cl9gaÐG.̓Ìø¦Õj¼Å‹\?nòG•Knä¢:ãö£f¹ñæ÷Æ[üWm´ê­z£¬ùý¶rÓÆh’¨,"dº za_¥sÒC‘¾núö(¾xöX¿AgÏoßœ—ßÉ:,÷Ó´ª\,éþ-ÉÀ@WXHµª`È6‹á71h¹¨Ž} fzÀç¦;MF!䋊löI £+ÌK¼B‡@*.'~tF.å ÄÏeþta,3 °š„ç…:]±„º˜%V§´dtºô"?3dsMËÜgqD0±G§ZÙF9®:&V ªœéÛ;™eÊ…ËóV!‘k35L4Îá«Jû‘ súß%¤ñá•°Ih{½pÂþHoMÌ’Þ~P P!I¯\­(U¼x+¤ûÔÓ…Æâú”ÿ6¾ØžÈ›,ˆj¦kÅŒ‚D¦íæÜ&Ä+ä]r o90®rWŒ’Žè­7#Kå¯q1a¤] L~ù˜¸ƒâh´2´`íCœJïiUô–wL—2+0ÔkÄD!T–õ!ÝKPõÕž)1jØ3}`ÅûûØZ1_X̸{›²eò~¶·S†õ½ ôßÒË.V4Tºg¡+à:©†Îug¡³P$ÕÔ$ìL½Á®bÙ°Dgý­€u ’÷§Í5ps]ï ës°37Ó˜õætFLVp&ºÝœ©Éµ‚Á&`¡•xÁLàqëeíZrÚðâ»T6çâyr0EüY²®^îS˜Y²¼ØsÖ—}eirŽCš®Ê‘}ïüšVÍ\[‘ Ì µZKÐ ˜‚:[Ìîß>Ÿx|v²SÃ<£‡'y T ¤ZRØ0²;RŠ?¨L³É¥1d G‡w‹ãèÐÜ„L‹¸‘àrG‡M¨n°?ÐŽ‚6 ³I– !€ñUzÞÕgn:Y Š)/ÅÒÚ_˜Â2Õ Q„ñ@øƒbAòkÚÁDíh0„$ý“eµ0«.aÕ&íÞ;²¸»ý^âwÎ(É»aø´ê³hBð€b5AQ¾Oè'ü&¥–ðì6²`×1{ÌQp‡„Ë+0XN+mu)–-ã~qå2Êü”n’ƒÐ‹h lìçµW¯ÕÆ“ùn" m¦ ‹â³¢Êí‹eNGãu ²?ÐùzåõËx÷âQBu–sNS¤9pxòO ´ }‹+Áˆ^,‰CÏþ‚§ì!>Ds—;F×2µ—y­»° ·¼HDgN·M¹ªc£ÕÔ! r|q!U*n_×\Pº‘š¶Ú3¢ZUGš&ùš*`™8øBÕ,¼|_Žž*ÑJ,àoRœÒ Yµ uÂ1±Š¹çø)Ó¹a:ëtºg¦L•`ù ‹üÞhšgÍ-[5Å 5¨âgàdd'·uäÛF’“!©Óί®ôT q↞çwÉË §9ätˆÔOdšÝã©ñ4ò:”æS½¶,yùn3ÍØA–~.ÌkÐK@Ê“ ñ[%[ºt²”濈õÄ«XgÙñº¸1'¼aânÄ”]²-‘ýš3'ŽCà‹õ´hØyuøâÙþ‘Ÿn6ñ¤ï&I=œÔ¡–ì(¢Â'jøµŸ™L öe4¡·ƒsÆþ²€ºg¡Àä Ý’œëØÎm´ÒŒK=„Ë c+‡©ÂŒ”óE…©ž–²½/L&Ž›³CM9)Fh<ÿâqÄeH™³°tÔwëˆô,«÷3ò±ÿ“ »^•€gåXÉ9J×xà^ùÜË‚¹ûÅ´RË/¯ë…Y(f¾cZƒ,g´‰·_1bªídLDcÉ,=FQ3”zê7‹¦&Ç{.Šô-÷ ØÔ"öR>ÛµnVfg::Ö!Ÿ%QArx™øsF#sùN ž8@Šî›ÚÛŒÞÛÓ'˜ , S¹“H³y¦êfò½íŽ êØäGf¥ð¦#=ؘá&H÷L‹ïæ2ˆ,¦š¨JÿÞs:“îVN©™gÌóm]f>•…Ó,âþ‹a¶ô+X‹Ó½2QŒ£ù;ÉHŒ¾$À`IƒsOðeÐÆÜ‘ïôëÕÄÔ”SµâU›´„f&ýðD)Ú šô¯ªÞƤ`¶•cWH!ZŸc*ïž¾ü†ÃMXx–Ò‰ÅvpÔf‘Þ÷Û¡á„ÏÉÌLo!U§"ÝR/Ia"»šÊ™×ZB?bK ²¤så ÆÑwýóˆœayÐñFU~<@K휼rVðSç¬`ò¸hx¢ c»3è¶Ƽá~<ò«EúàdÍ­gÛ;qÆ;Óô+Ä ìa÷ßçáv69öÅÎÿ<ñb‰cq¡Ñ>ª\Šñ\Y¢kqætû×°V]yÀ¢P„B™çA-¢M†³Sç0ˆ.YÛW———ÅÙ5´ (ZH‘Ïz=µ­+Ç¥®J¡œÅQó*u!v1Ÿ‰<ÀÇT"¤žppF¦@Îäì…Ìy¡|ûÐ)wÄŽŸ"¼/ê{JÍJseuõÉ“§ neõ²ÕŸ!yçìu jü=÷ǧ¯|̃'œ?G]³«V#÷±7BG5.¢Ô(ºã~ (Y "›t§Ñ˜²7Ê(ØZŽøNŸ¨­à‘€zyáDaàÎ' ¼¶òÔ]çúüÒóÑTÏÇð¡ãžw:&ýæùß]5wÍñ"…HFµ¡3u¸Ý„#罫FÌH}ŒàÇH!Ò?#¦kq>BP@ ¥û‘çôû×jØ¿£Ð•©põ‚[J%¶†g!Þèw4âENˆ‹xIVÆËè«”î ÅÞ(øëÉ<&0eÒ‰.èz•B3±Ë™wˆö 3¤1vNV,J¸€^ž·x:Wo¼¯¨aìsRé%xù•)£ÎpìczI&Äó€"Œ\Î- +K¡æ^f4×™'ŰïD°a„›âÉÊw«b1ðÅÑicõ—Æë•I K›”0 Àqñ¬zG§B¦òñiJa¤žs ÒuŒ7޳ ¸Ê08{{ÎÀ;w‚Ðlr ŸÈ‰è¾/L’#ª‚íÊxdÖ÷`úLR9 ðÜD£–ú7¦ O&nÂþܤ¿gë9.®3’k¦;rÎAŸé_ãLÆtvñ£ïFò&‡Çj”§8œ óâ ™ ˜¾×žl€ª¼d¦ñ>ðÞ#u÷Æ#ä#)§¯+Ññ¤:Þ‰ú7®ôˆÞ™åqÇüT¾:ð(Äþ’±!BÇã›¶ª“ÓŠŽhg³ñøñÚÆÂ#˜?ÚÈ4ál‚5XbláQO·‹Ñùœž Rí?ê¨+§ŸU)“©—¢Õëïæ®\kï ª!^í]éùÿÍxªL‹˜Ã#¯n¬®¬¯sB&gÔ¥”AžöÈ2Æ#û@8úÊ$¹öÝÆÆò£A¸jPŸk®%s=Û8>iL] À= xgT?ƒ<»ïß»8 ñ¢ïbÒ-ÉÆB<ÅGfï9¸}à³¾×A"%q†5Åv¥>/þKTÈtÖõˆ*0Sw›Å”YÁþÓ‘|]ì+i¬d®×‘Éɘ͇h^7ÇÔ%‰ŒæÎÜ>çÆÂú{dœ¦¸ƒ0' |“*'êkOÖJþÒ¥‘'Ö›NR%DíTÏ:9H0<…¨®ð¿Uú‹§BiæÖê«W'Ùòêúò²Qé:„hÃé?lÐ'x´^__*ê{Ï, ùŽî£l½|Þ>Üz-nÔ¡çN¯Þm„ÑØwÑg“ˆC+Ÿds\Í.UÜB¨qTízõÍ‚xÛh”gdHk«ÿØx’AÕD½[<‡¡ÁÀÔPÑÁ_L—NQGÿÅ* ƒsšäéj3!g&&xK6˜HñK)Q ÕÏA9Áb:óÎQƒ?s{çKéxvaËÏ™zQìõ눕_d`æXÙO®Î0rFº ŽlXSñÄ ljî´Jñgã£,iÜ( àýÍÒGú[+}Ü>>ÚÛÞæ¯ä…^|þ¬»½ßK캜‚D×<¼â–á;nÂ` ×Jyee•Ð¥A¥ö¨äâIŸË §ßSz¢ÓA5Uœ½O(ö6)ƒL€Î(Œñ}Üß×ï\ÿƒŠájEMâ¾ã; ×…UŽm¯„QÓ—ÿþwU—š^ù¹‡V+UqøÌ˜qã’Ÿ0§ÒSÄéáÍÈw·™bÔKû2skÞLvJG¡:5CÉQŸaÉ$ðQ›¢X¯ùzn!ÓOÝ-Vo¼sßëy0a‘R z&÷Žóeûmœ Tªît‘7h' 1+€3Àûäeº“Ì”o=Õbbq6 ä¶Uƒbdtô'?`W^É”û)œ/ÜV+=ŽôY0”Ï“Vße¸0_¾DKÓ ÜôÇ^9ìÙj|´”º¥ùÍÏØ9Õ3eh3Ñhï†Åïý½¶_4‹ØÈ÷ŠŸéûá¯ÍâàCüýåa³H¶[øŽ8^‹‡[ûÍe¿Vбӽò¢JzM›7e¨|“~GüTfðõ²Ý|Äóºûl{g·N¶÷÷¥G9aãõ§h$^‹rkeyE mUpÕ`Aqæ ÜçÔ2R©kùŠ kk Eܺ²Ÿ]ÃŽ²ïŒ Ðí:ÛˆFÜá“«GÍ2´ÙZ^_†_+«e~st°zòB¾YyŒ/¨þÃH±Uì˜KªgIÐ+ËÚÏAçñ%þ“@ãÈ&ÞÒßçΜ ÝT¥Õ‘}9ñ| OåÍK´A¤¼Û²*Ì *ϼ”ó…\L‘²ç³¯æß¬ÕVVãòQ õŽ´ `µ”±w³I äèù)ÖÂr—k«ºr|GšRƹÊÍasÕ|èÔÿ­ —šØ€ÉÛUß»ºycP)§%½Å`…93¦¯ˆenøÎíƒÔÿJøµ …bjxìs<Ý.î‡hÀï¢Ä€uÕ/Âr£¬@„õÐÜÃÜd¸šé ÃÎT,ÙÎ}à—”#wmÅøàïë°B´Ñw. Ksì0 nK$wÛ±ÄG’FƒQ×óѵé7²„Rפ›zÁÞtÉ| ~;­#ø­¹ˆd„Y²·u²NÊ'ëL±»"kò`<ØQ·\€êFn?p×U&˜ÎT?pûÝ6—¦t×·q9IBj–k£òm ’àr¦%[ˆÆgöÃZR.ã R|Ã!EQgÕ3áÅ‹šLåC ‰°Y†iH­BÅž ê1ÌIXÎ$£+X‡°LÒÇf|¿eB‡àÙ!…,¹_“§'Y€SáÁO··þæÄë5ÆÐí{g¢tÙÇ´V9¦Û¡æBZr³éÛ3]ý˜ì ¾¼!/êy<£s`Ý3Oéãgÿƒ>vwà#-!Y½£å»f\êÁ#:ß#:ÆV=Rûà­ºZÊv¿0™:n.+4é¤Äƒñü {?§ojd¾´¡ñ£2…Ý‚áÜOþ’@ÃÝĘÄk’ˆO×xà;ÓnbhÌÝ;f“ZRy=·]ĸö“¢#ëEŒ¯ÆŠ,·+tÛÉÛz:iá=ܰ°Ý°HTLGfÆ$?I1}Þ¾êõ­g¸ª'‡3œß2r;Á¹ãºîÐõ1%1ºŽŽœ‘7qß8Kõ¼m#…2!Ï€®FÁœ6†ÇÖçÜëÐ.¿\:Üz¾¿ÝÞ>Ü)2%«6¡ß›fYF(‰#—³ˆ‡’ÍutØsV߀À¹xô«œù—ýR0^®5¦:ˆ"xYÆ£ 2zbšoˆµŸ •S}¢¡ÌäuU"ïŽ<ùSQ€¢µX`9"·%‚‚‚˜ô–À`¯­â[Eø~Àä½$ÄÉ£IªË‡ªg×bà°óµKI•I­ 1ÖÅ›7#÷ܽzû6YÓŒ?K–é¹LxÂÈxv„£>6 ün¨oKÉ9WîV±SDëÂ(¨MJ Ü#wÒ ŒKÝ*£A }1ß¶Qr±ÀHå7|/KgÕ=›éÛ É¡·ÊÉ«ta`‰ZÒN—xÔK~P0QõBvóîxWoÖkß½5b!Y)RµÉF…3Wú^Þ JØõÞ¬?žÚ’9o»{âÍ2t~Ukg B¾9ð$å[lABrü¤û³3í%hHèjO>àtx è)KYR^"hc}ÿÐÍny‰ƒÌ_9ƒ!úûHoŽ£Éò³¦%¾ŒÂ±Èæð†È?R¾³9¸É,hu呸…ƒ»xPoPQJÞk¿Ã ž›hÁOªß¤÷„>‹C׫ּµ'‹õ*(‚å fSàÃÊŸ†nÍ j—èUŒ_`˜µõʤa* AÔzå‚4tÑRÑÆ¿GÚW}2 ÔʼnëJ+b}ö5bŽPö¿^eç°Ì0áeåÇü…“ #öØ]8Ã0è^ßõ¾Ý±Ïw¥ç~h·ÓµÛÑãûn«^Ù/Ïü¼3«£¯ ¤©N#Aƒ2DK©F„xS·éÇ ñž%Ý6Á˜èö¢—oì5w@—dD¾³€½àÉ«gìG^ŸÉÝýû.ñåqÊ›iê.î– Ÿdo>íªöúו†÷f ø? j‘Bñt"Qù±ë+:çèÁÂ@Êîr¢åÔ 'd@^ÁX°‡U2dA½ª¼­’G@zqÏFz¥\8Þûñ ©êb8¾ZY®¯.#]Ñ—”QÛÇs6Ö^©Óç,Œ¥3ýúÄZ‹¿VDBJó:­‰ý­õ~b_…rÚÚª!…%Ò/†C§z'=~#jÆ“Ê"ê•Å›ƒCP5*?&GÁ‚¥òã›%¨V/¶j/÷O¶YOiÕéÏìƒ:«Ëíu9º~<ºÛKvËìUźLfée¦w’Ü‘ åZ¡’׿Øß|!g£à=(ÅÀä÷¹ X«_-‘Z üäòâZ|jÕR8>µ‡^¿ šÂü)Z[‰Mì Æ$ÿv±$‚+%Ž=h“¼Ëñ9—æ%Œ ªjE¯„ƒu²¼¶ú©Z„ߢXADNšk«HÒ Åç"~ªÌÑÚª,°±Žï7Ö¯7ÖcÆc/ÜÕh8&fggòVÐï.¹âçªD]/€2c„¿¯¢ôÁÜø/…즞©[г·*ï(݉›wž%Y«þ*úṟ…O&£8ͪ}÷27îj9gÛ¤ùøŒ«×ï‡ñ¦êG…Wüÿºá´« iP[Þh«˜íÿˆâ»iá]ñKP@vÞnM“©L“EöÖèÊ^Ø[—ß¹£î7Õjß°–qᆯë$.ߌ}ïê~FeìÕÑþk})§ªîäܬ¹u}©gÍ຤|pý.^± ›èAŒ`L7~óY Ä¡QGü*#SÏ&¾íJaU_ÝÂŽÁ@“º åþ1vý¨boŸMjñ—o"Òn& HÈMwÍ÷î¦[ÅÙºeô£8UOIZiT=w’nŽivæ¨d¨DѰw³%¢nYÎ\A{™Íë¢dk#ÇQ)¯(û‚‘š49¶ý8=ð#RInDl‹WQÖT%í:áE{ÐOœ;;ni¢¡Gˆt¿®eõ'=^æÎÖÙ³ÎvwÇÝíí?¿øÙÛÿ÷ÿ¼ÿ¥08ô‚ãá‹?þßèexŽ_}øõò·«××ÿüÏ¿„Ì,SsE1l´ëõV¥¶oZ+oÕïó§óbÎN×Xb%ÛÂ+XieÂÄÇ:öyýûß…¦J3Wʫ̃/àÛÔí÷ñëø6IX÷Ì÷`çààôøøà.bÕ2${¬Z~׌K=øLˆU«±•GTã>¸¨®–²Ý/L¦Ž9‚Õ*ÒI«Ÿÿy¾MVêôTªNNã@·`8÷“¿$ÐpwQf'ðš$âÓ5øÎÔ(³ s÷ŽÙ¤–T^Ï­AfoÏ~Rtd2ûµX‘-r¬j;9VMçƒoS~ôX“¤b:2}›’ü$ÅôS¾Mz&`«zr1nëÜ;¶ ã9‘‹jtØ+ f~§Y ä¤­=k÷FÁ{ü¿Ì}ÉkTÃq)ëj2Ó-‘G"º (͵‹iÁR®¡Õ—â)Õ뺔 œŒ‡2ž°×>dî8Cç ÖM„ŽF À 9¯Â óQ«A«Ã8ç9Úôkz—y½ëÆVèD‰ó™ á‹d×ç8æ6PV$GÛà+Þóݰ6ÌfÿÌé¼·Y$”·Š,²©.”JØbÿDèVg™fÊ¢zG–ˆüfòÂ#L¬@K`R×§1˜Ã¤–€_LEмßTgTxÈÞbÕX·^ÞšºõÒª›n½lÒ»-4_ %åݽQE¡“¥DŸ ¹Ós†’âRüè«æbÁ&§¥aI“y„³O­üæÿp–•;á) Ô„]¯Z;\îËLÛë*|Ý/æ¯$K‡m»ÛÛ±›˜^¬{Ú¯Äz,cš!] –JîwqJ¶º¹[]EUDJ:= Õ‚7Îè³üئëìÍÎhl é}0Ÿ•ÎÏ#ñÓÞþÁ®º2…ëÚ+åmVQÛáÝÛlNc(œÈY'¯€cX¿5ñý÷í­íÝã=ñC&cH£JaãâuÌüI>nÜlŠE 7Ä)n¯Fn4ùbùiás!âhð<˜ØÑµº®"tÖoc<4–¼f~¨-ÂØ``³Y‘jÏ:ÅÙWÅñ“YçFyÂ~„ÿlI?ZÅœÉoÑn‹Ûl9Ø¢‘;$~‰IéŒ Œœh6K?ffέÒÀJº²bÅÄ:âÇ”äE¨`˜Šµ,‹šûs!Y;N¼ë“Ë3…±TdØs¼>†@S Îj0§^XHf1§$äÂÂ_™ }׆G¡2‹ë'ýR^R˜¬¦He—©rx‡ÃÌRc›KvŸÛXâ‘äX’Ø×ÁÈ.Û´Œ•=IqmÌ Ô‡n§©¸”åU5Œá94G[ÖÝ„!H÷L¡?9}¹—ô ŽU•§7MUâA‰ÏWâ¦ìxoôyîf)ÝñÂ$z¸9’ä’b<úéŸw4n¡ôHNwo‡™›¡ÜGþa ÿÎlù¼ÄDv²ô_™fX»gÌ$±|ì}¶™nÍ^´c5|%Vc±È–“†9} S­vƒ€Õ˜ÇÝ&ÇH°ñÔQ·Ä<,`®±ùuü2GŽ>Üw¡c2¨{&$^nì?»ùÀ€¬¢_5u™/4®rñÞHÙÑR¦ï…‰dqsq ˆ&ŽâÇž¾i£ùHM¡ìá4Ž3?ƒ¹—üÄDÁixKå©ò|fšâ©ðvߘKr!åtÛ¦|ÞžÝ$)Ȫ~~-ÖcÑ?UÓITMãƒjÕ@M:ÒÄcê  ö‘äí)-Tá–³¬dÓC‰7rGLº)ƒQ𭬃ÈA¿[ £kÎÔyeUî¯Úò›ŠÑœ80)AX©ø‡C3c…! ÄóV¿/+u.AWl¬¯« qÁ±Ÿ(Z˜,®-Ûâ\ ÉüžÖžK¶ÇÿmɆD-­Í÷“YéU8Ø<˜’$2Xfxæ£\XH¬$"{÷ƒÎû¶ Ñeùœ\gì59¡¬äÇÛžçÁô¨ÝÓ¾S48èֶγEwð Àëy˜·šòpm× ®¼YúˆjÅÒö6&P²ÔƸã!'¾N!Š'@|DLÀè#¤ t«i½··q‰åëN*©´jº ¢µºMõP «aꟑž0r.Ex=8 ú ®`k> Æ!ß ¥ðõ90£Í¡3Bº::„Á–4®øŽó-íÆ°&¥qÇ;¤N¿Í#l½áœÛâà 9ØYèø:{¨ŠµŒÞS H™úæ¯ç^â•)‚â€qty$¯úÀ…®êBüvA'ä2+ÔRÉйÄû›xZyËóìà‚÷¾¢3vØygˆ8@WM(ÆAeûz€Ÿšå7϶wvŸ¿<9}[FP/16âñL±d-9 ¥Âw:.…ƒýˆójQÇ· êЉšåÖâ›öVí_Ní?oÕºHÞª”Y† ³¸DBM®ŽŽŽ›‰¤l‰‡Hl%ÑïÓ·2˜ÌL.ìqÕ-¨û|ÿäô7UÿBQ"C.éÛЉÉT6“€òâ˜Ð&ÏÆŠqy˼g+ñÿŒ"f< £ØÎ˸„™á5.ã(•º5¯È,1'ÒØL5’¿wtrúJ`–OìòÒÅ@š¬=?z\f‰WòH“ G°ä1ëp’t奠ìÚ¯ñ]€*€ à)eb‹ÏövÊÖYIÓw%¾Ï ´)rRÏé¸t!þðw¥CXM¦¥í9æÆ£bÜêvȉWJ #Æqò²L' Ú\¨YÄ…JÍŶ¿ï‹zU´ë°TJÖJcX.8Q$%AG¾MiŒS««Ê³âÕx({ÐuÅ=êº~û"Þ7‹Övqw6òE»qy.vû}Wþî`»§²k¯òc@ØC´Š­•VqI,RNæjE,^Ê€@7}ƒÉq“àÝ4`ÙJF ¨ŸÓ•)Iìpþe]Q Ù §Ïd¹YìØKšÈ5‡Â¡`µÄÒ5ñSž{ Ì€µ€!0ûm¼[|ÁA• EÉ )ZÄ¢ë(~—UøbªCžT]WS¬¾ÕÓ¿^(2*(ÞÛ'ÿ<|v| N·žì6>Â()ûLL¤Rß…)Ã/o¼·fåªòl׫0W'¬W‡lUU•ÆGªhöêms%ÑQ=1XVuS4>†Ã¾-Bg——B©UÜl+0¯ŽÏÂh´úoVß.­VRpN¯‡ ¹ñq8")T<…õzKªª·Äý]Dâ¬ä@ك؟vùoÿmì’$ª¶>5>úÀ­ÍfÄò·âÕÑÎîžPïà?€­ÖïŸÞ¶*ÕÅJ¦ÞG¯·HÈTx¬ˆt‰^³UÜi vä¿Öb«R§>à›S|6ì,5ZŸ>µF Ä2=vÁ¡9´ðÍÊÛÿ6~óÓobzKø~=M÷…Šó QÑ&ó'šL!"ŒXúœD­†Wø¤ù»ÁYVäÉ«$©–׫oÄÛÖbF>´*øÿUvJÌKÌÈK’duRá¥â”E:é5îР{å0‹sÜîGA£[–ü’>”˜Âåm;…•ÆjhãtØÈ,ðy›ž£[~!í#\-°£þ?_t×?8m£wý#½ò¡/aâ¿‚TÌŠÛEñ±ðÈõAÅ,–¬™âÃ|Z ªž k%™ZÉ}ññ³­­Ïª$¼ °Xùh4Ó,;å§ X•§|E`q¹òôsA‚åÈ<>äh[gë“͉<~ûU½ÈrîC€&`šÿ¤pa‰áãV¶©çØç„êsâvæ6OñÖ'1™¬‹¢õƒ(QWlˆ¼°_uð(…ÏB€Kí'ý÷Y; A1@Êþ±ïý1öz×”7³ …Sl‡éÀ›gþ€Å©žœª{ƒ¸ŠõcýIB"(/VèBòòqÇþ¢~$ïkpò˜ÐwÎ1°;ª'á+L>at•£Ê–Í_*Ç}ÿ!qxÁR—ëäJÌž4/²0*¼<'tàð×2›Ã™]º.¥–A ½>X_’Ñ+ðo›wÒõ ÖlfÈ÷Ž€ é€íßöÖVŧOñ“öö?ŸÃS ³û)U®ýÛö.vhgëtK*…R½Û98Àd0‚ÁuLÎsF÷/BP­Uf j±Lš“ÃÑ7Ð=}Ôr[5âýýn9Ôé¨ Â†î¸Ô¤ÞÅѧ?ý=ú©½sê]{ûøèäXkß,lUzí6Ž€‚[˼8Ý@&&ê(e02é¤fç4Ò“fj7t'•`hŠõÏ*ƒ4·_Pl‘-r‡¡=‹ i8r†~õmÒÍSkêXýÒ 7ãºê†rbÛÃ/ ,êO#c¯¤VG•7b;œ®K%X²lãdJ-Ц,•:=žXSwTEfÛËbï4:jH8}ND£nrªÕ?ãL: ît:¿›ÏhÚ!+~z+Ƕà}0?ÑŽmx€Ž) C—ï0««õó3B! +_I-ÿT.FFÇŸ*Z][ß.¿ùé-^í/g5æ<¨:zÍ =oîâÁ|ν@>£ ˜ë@–Jøƒ~úfó'i(Q¹·j5TYk²8ùþPÚHsê>b‘¶,ò-ˆëÏ8uð×pÁ" 0š%³ìS¡HÎ|ŠB;ï5è‘<0‹!‹|´X@–@ŽUiñ|{;±¯4 ½£,5²œé¡ôBQΙÙ>}J4ØyË„!çÅìRQZ 0Œz >´ÿ‘Û&£‡N—àüàS¹\10ø›;¯&[Oy[¦_nÈÒ£x4BïEñ”T|Æ‚ÊËãøÂ9 ƒþ¶˜Z´^ŒÃBˆÇÜså¨vónŒ¹YóƒÏ™®Û 0¦WÉœñAH´à·î4/x³h®'<`¨ ]ÞÙ™ÏeŠ(±'–WV×ÖoüãÉwÎ0ü^ú»Ä+$İg~Ô¥V¡˜ÄöÎÎf³´³ó9#vvnöñHÚäðݤÁà>´€¶~¡}ìË” òB›8ñ¥Ó¡|{¨¢mîÖöOÐŽò'úÝ«`aÝîS›p>|üIà©™ðÆÇv>ñªŠÕ‹ß„SD³Ì(ìc§)óþ,l¢ ¦%j®ˆïY6O4W-â­3šú²I1X}Du)rnf:a£‘Í‚ÖmK–÷:Ø’X£Ræ…€¼{É,M¥t¿LξY0]»3#`"'‰’ ô£`5…ŽùBud:i»M.À\mþ¨½hý4Ô€ŠDy A‘œ!L¯µZžw¨*܆Â÷ŽÁe»ØÔ«'…í¯°€,½Éö;²¾ü݆êJÑŒ.38Ó» ³µbn'd~—õ?Š· D“lËŠ&]Ä.·ÉA×éwÆ}¤ÂN§q÷Yâä½7¤ì¾áu>r†CwÄv=N¡Ìnõ‡Ž!pØ+Åâ;˜z æØûO'Ÿ~ª‹'—WftùX¨vÑsòM«ÕxïÇ/økEeV%[ˆNGÑ_‡ã‘×»ÖÏå×DÕV­šø߈uêGú’‹dŸB¤‡ßæ)S~2E5¼¢ÊòS ¿©Wß|óT„ßüή¼NßsÂÚ7߀–š·Ø ·jòP †×r¶\²-K¶±dή€KÒ¾ÀR驈/ãÈF–R$7-ÏÉ⣼ÿøÖÅÈ;è+èœ;?@m&ö”)³%’Ïy «—„ï\cWl$t&¬UkÚaú‘ØC‹2†K<"Úz¶OÙE]dÁÐvwÜáñ1¨trAº¬q±¥1F]¨Ê‡Ó´ÚÊx¬ë=-ÛŽvþ²G¶ìãœH*i³Ç¾‹Wr3üR>®…Ÿ_¼zÝÆ\¾íÃã]…½ª¨%çMÛX×ÅäÒ³¹ ¸h€ó¶Þš˜§“Á#rX,Kä–AÒC—¼óñÈ-þߢôþŸ…ÙÄɤ›N/9àymo *ô `‘Ë ˜‹¡¨E±0cÿd¡¾Ô/,®­¶¹hsäÍŸ½8õÑ,J<Äè­\ðë°aKvÙÚx8ìP©¢È, ¬«\M¯ÝÆrÉŠÈ‚fk¸MeÚŒ ›˜¹5ipù‰#€ ˳LL' ÙV{–ºéª¹`œ©ªÎÒÉ35}sE»«Ä}ÞGâØ'ÛÇt÷Ä¡œx¼¤œ.Eí Ú%ç^C½q¿_ë¹Àh0{8Y==¾úy²õënÚù&ã_ÃÀPßÜR«l(ÈÔHØÇPÂÍ·×N¯œgµítÚTª…æ3Û²€iv(>ÏpØ,—¶_¼ø‹R.Ä2ßm‹ZG(„éRVgªŠBQÖ‹ƒËÇž<P¥ƒ˜äV¥!k/(XÐ*žPò©ôæýÃíÓÕS[¬}Ëô‘1+‘8 ùšÌo ¼Å6‹t‹z!þâ”p {xbr â™2ò Þ´Xü­™SïtÄjýI}yI¸çP¬Ô—Ñ~é» ž¢ÞIŒUZbF±:ƒïâ( Àdͨ _eãý Ûæê¶±ú"„®–µmŪ0“.l†s27¼AY*çYokæÌ«ŸIzL\Ê8²PÁ¬ÐbÍÀ Nïy `H ïj}uoÓ* lCc«d¸àÍ!°æWìa8  zØßé ¦„””ª#¿*1†c¸Ža$Lz …ªKô+}n •¢Dcë Þ˜ŒnµnäV rZ·ØÐŸ5kbÓ­Oת؇Ùš„Ö“˜/iwÝI”ÝAtÏ"bníïížœ¶ï(/yž5&f¢D3]ã!*f~TÌ4æ,4JUîCŒÌd_Ky£(ÌB<7WwR4•Rt2oÿ¼½–K”šïd·§1°ùøÕ½cODÜYÜÞé¬Ê6 öÚlkZ0ßﯲ®¶É°E÷½3îe%0k¬ß¯ÌÉ,!S=HFþMÍùC`k` ᥩÍôµ±#«4INÍp‰$¤A4¿G~ƒûmG ßëaË8î r`–êyCòPDK–$ß&µe§¸L"ƒV0D¹öcYñË+Ø%,\†å=$S—Ô¨Š/Ó*„œBÇÊI_ÎDÖýs¨Ð6gì±Ì-Ö-,KÙ†rÌKö‚jnm&K =Î$oÚsûYãDÃè/œat¯1àd">òØ=vÃëÁ8òúw²‡TÀ¶sòÏÃW§ûw¡Ÿ)PV¥L½låÔ¯|õËÀW.YÞULw¶dAa ‘ÜœyÅ”bVæ‹?owh_Q<¥ºŸÓ8ÒmÐ=å7ITÜÙ®p"ïI¡?SçMÛƸ»Ì'½¸r;oÛýÝ;JS“uÏ÷õX“e»7žÜéÅÓú°É³nò’Te’¹µK1–´ÐêíÐPýÛõîæŒƒAÝ3iqt¸»³zR‚Y¥¿jê2Ò _h\åâ½ ²£¥Lß ÉâæÌ_MŠ?Åÿ<=ÔFó‘šBÙÃig~s/ù‰‰‚;Ó='ð–ÊSåøÌ4­Sáí¾1—äBÊé¶MÛ¼=»IRUÓüZ¬Ç¢gª¦“Z¦šÆÓªcšt¤‰ÇÔ/ì#ÉÛ¿¤nÙ÷†Áh–èžÉƒýÇwÀÿŒ•ï㋦|ÿÀçóù¼Ä“•ôî »§N–R½.L „›³u&”ÿQÿ< 2KßOõmG™—ÜC~ýδÆ\Þa 9QöLÓg÷‹y˜‹ÆÚa›žx[vbRUGü:¬Å¢!rÃIý§íA;´j‡1åHr15CƒI˜ûKj…åß…ZHîŸ?¾#WÅã\çÄcéÿsüà€8…§+LÙ)ðÞ0øãŒãáqÖÕðø¶Î…ÇVwÂã¯ã@8IE´Pz$§Ž»7ÃÌÍPî#ÿ0†gŠb>/1‘,ýÀW¦éŠk÷Œ™$–½Ï6}ñÖì%A;Vñ+±‹ÊxlóQ>~ðMž 4¤¨ÆTMŽ‘`ã_\qÜX¿;Õqcýž1ÂáÆú]©€«\rc½—z`öS”HÂV=ÞÞ¯ºšY–ëeÒ¤Ž9ÕI$›BÉÏÿd•2Mý‘žJÕÉ™ËùÎýä/ 4Ü­z™Ãk’ˆO×xà;3)™ˆ¹{ÇlRK*¯ç¹ÊæíØOŠŽòίÁŠòTNlÛ¢tât>¨ùj§"§˜†2ª§æ%)†o»D¿¾ÈCú3W¯!þ€7 ‚î¸ïêPÞ˜o2ŸÏ¯˜w_ÎÂ`¼ž¸æm.ÌYÀñ¹„Öœõà´}øêàtCT¿:ØUË}á‘xv­‚Ub´K¯ßÇ™ÄõS㣉c¾J> Œ³kázt ¤n¤!ºþoø˜5U|pF2`‘êÖö¿æ†ÑµWð(‚®Àü¬4“bu1¨  ›žê‡aG‹"¶×9輻ñ×õ½î5|«ª z”ý<d*lvkå)¦ ŠoõuTi@Ýö¶Àß©0Rµ Û†hjÝkPE¼~«ýÖ_J!1n€‰ká¦ð„˜¹‰Ô¥GIB`R ó¿ô#"p¿‡¨¤ÓÕÏxB8åS?8çMÅDCE¬ÉH)--Æ8uÂp<`çCP¶]Lõ)ò€¡{¢‰4L^¾ €¯]æ Ê$3g®nBߎqL—^däÑehÊBÐ!)öèˆeá^Q\WÐx00ÖŒ ÿK*» æf^ ÔqÜq ¥ét“ËW<Æv1îsþ¦¼“*c¤}hÃg™§ƒT%¶YW˜÷v©¥«9×KsJÆY=ædÓî&Rˆ3¶Râ½›°ë©òØv¿Û¶Ö½ ï΃3pN1º#ƒ¯Éò#®ä&Ø@’%TÅbÌPUXÛ\2뫨Z÷7Ða.ê21'!ù‹…?\ÐsfÎ ë)·X€ycÉY…“Šßz)¯ŽÛÆÊ7YöZ]\á–+-//¤oSà} •Ü™U¨Óms–hÌ&­ugUÐ\iI^ë˜!Û̈mx¯'Ä ª©ÈƒF›[/A’bÀ1*'šRÖýåÖÑÁþ³dH[Î4$#s0q»<#nM-IA7›!^ÏúR½‘?†»m×¹’׌º±^lŠONÄ Bš©ŸèAäª%©&»É6ó ÚVG¶à. 3¡FäԂåìDjêçfe#Ja½{òÏû`¶ñ¨ò9l²ŒJ—:k¬‹•ú›å•Õ·ƒFàEÛé÷ƒËöØIêáÆ¼\ºì×ôWà—ýϘU º–UÜF±:4à»Q-¦áÐé`šÜY¨V0}ëW"PA.!9Æ>j÷ðT¬,×Sb,P²AyFUºëûÁ5m#g„!¶U– CfÖ:>¡ ^à“æஞlðà®§ÁÅÕ“`–¯‹À/Gâ¶®}Ø·‚*ÿ£æO8S·¶O^·wv_ÿóp÷è´}ºõòùîi ª/^ŠCÀã÷¥ê“j‘ð¤ú‰Éïo¾[yË1Ío2›r?„¼ åØQÇ›¥ú,o8£þNú)»2ÑýÍžaɶ?HLU]26EåRb#X.ÄÞJ®þcmŠ‹bÁ°Y&ìÙåï Q)$;.°)DzMªC-øÈÝ3’-Y›ù¯¼µ‡`6¸Ÿ[ǾÉÑzâ«áŠ×Ë4x6Ž•E„Œ€]S¨IL˜·i”ªbv*&‚Â#N68ûç®Ìg‰{®_·^îo=;Øt0ðHÔ¦ÿ@)]Ë ù¸'èņ%L„ ʲŸ6­¶Ý¡3¢M>5ô`×íD†ò—‰ý¨o‘š÷û~,%¤lÄй%qyáu.°É0¡é⑸p>`3JËm£âÎþË7›ðëíf¾òWàwßÙ¾FÙÝ!ì˜8™ ÂÙÔ€f‚ƒæ(õ‚À¼x»¹ùþnm¾ÅßV /ê‹iÝã(Ý üƒÕ·¨úÖl½JMWu¡å¾#C„#.XéHçí$>~…é:W•¼½Š£HK>UÝŒQTo,¿ÒleâK®.s^–ÃÆfC4ÎËïD _PÙV1 ój³š4®%&ÃÏ­nεe[sr 4eù-ÛÎÔÑËŠ›õjÌD|äõû¦( ö1_žcÜknì‹mqáÂæ ¶™^bŠãœyç·\¦FÝÎ|ûÒ;0­<òüNÜuÅ÷Ð `Ñõ‹’Ï@J?Õ›|ÖAá£y-5*Ë­ÍX“A–iŸÉ¾¼¹I&ƒ+}ÀYÊ€)­ÞN'cÔÌuÐabD7pùì¬ëvú˜pkàªK$F˜ò¸RIýîgPÍŒeÎ;À'kÃaf¬ENC >!ÁíÒÞ­Ýí\ŒŠöýMɬØWÑé ïHÝ?Ù«õåúªPT™E*¦Nú*HUËâvHÅîþ™(¥d°ì¼«ÚzwV°Í 霆ØV'ºµ:x,Æ>°®Pž ×?ô·q¶åÔÑvÑl‘F´ùEØõ1Ã¥4点Y,‹²ø»X¾ZÞÛ«ˆf?­.WPi£MP×Áño»/;±XvÊâû¦ÀÏ êâøVþOÙ(~züêÅ Yܨú£(o•Å·Ð|© Tõ¾@U¸­½Va³P-æ´ë•uÊòbùß¶b£L±0g³ ƒð °´¾lŒÀïz=лeå×Ç/aµõ îâ¢K­üm±W©Pë“OðA%%„à+ö¾Yô8!‰'¾«A zß~«#u.B+P"ìcn1øPYR¨Ã/°Ë„Æ¢`ŒÙØñnUä ø= ~m]IðŒÆ¾UèÜ@¾TëRÌŒÜz|X&ÎOA]ÏÎèÅägÒ™ë ²â Wþ¼‡p™ñXm2%A]§rft—4trº³Ýþywkg÷å‰X¨?Ä«œÙ¥UÛ¹ÿZ<®¯-‰ð:làjiÇtD_ê”Äëö½z Ô Ò±K*]@{º*”ÆÏ˜ ?*i¢e5Ⱥ`t­Ÿ`y^YFsP ¾Á‡±›….ô¶°f¢cÔÏÔjó]<è~JºcETX¡PH»xWPdHê£*Q„xFšeݦ|)aØ–«B§ŠDÍW«xÕ*¥j¶È©³fR=™ÙiÑœº`Ì£1П1““u€ ߉µèȆÊ.h…ìduû½Žo`uF¼Èjžéqûb"nLÇ®lE@LR’Í„ÂÅÎÁÞöQû眑ÄOÜH%¥¢êbÇ©ÓíÕjœ§^8˜0} ν®_;^ú(Såp™oC7úŒÝ†¿F¯¹ PάÃÅŸŠa³ôñÅÖö/[Ïwk/¦ÁYWT[`ÀFE$`(//|ëé—~ÙÆ¥ h[ëA¼2/ì5Æd×½tÅyèÿ¼H…úR§¸¥=»´Ê£P¥VêGìÑèõBÓ¥~¥ÜJ—ÔÑPâðý9¹–êA“×çÕ4R&%ÆþëÔAtã'Ã#ƒ r°à–¤÷%þd g÷«Röd’“4KÿšLIÀü¼ÎJ¢2³S¿%%Œ]ãïLM££0wï˜MjIåõÜšBçöì'EGö:_‹Ùò稶SésÔt>(›ùtL’Šé(‘?'ÁORLÿË) è8; ï& úgâøÙÿì¼:|q‰’= ¿kÆ¥Á„€D[yôxod‚êj)ÛýÂdê˜# ‘"t@¢øùŸÈFý‘žJÕÉiè ç~ò—î. Ñ^“D|ºÆß™HaîÞ1›Ô’Êë¹5 ÑíÙOŠŽì‰¾+²$Rm§©é|P@óƒ™$ÓQ"(Q‚Ÿ¤˜¾œ²/u4<Ã2ß:i:a6y\Nï °ÒuåpR5=çPMõP.[Kºô‚?òT¿Û†®Ï^øR¿—•ð«' â¹6Ìu"Á×ía®ÿ¾&ïUî)ºXLñ‘• Ï‘OèµñòžÛÔÒ®Fº„rùâǾ‡ŽY:‰È¾Ïà"•¤—~1EôHïÀG$ƒ5Ò²$%Ä$W£žF5Ï#DãD‡#,Ù–%gv;2+ÝÎùÈ„”ã‚”(’ïÒ–*vo¨íÎý‘Ò(»#¯¤ Ø\ÂcG¸¶3ê\Uœœ¡ÿñÐí4 ¥¥¤·#NþÊÑÉñ®Þ<®}÷¶º„´p9­õ`¾ÆI×E}¼ *{…èмpNÁËTâ?€®9A¯ž ^BŸÈ³aĵ0à=D>ë†Rm.5‹?µ3k(ð)ü0ZÿtD•$ èõ#uX VúQ_ùïýàÒ Œ73Š¢áüØB[r¹€¼Nõ4Óuc³¡BŤqq‹`1éÖá£d˜é™µŠ,~sµ5'£bYÞK:Rd/ùxº¨¡e>{0oÈ»¶ö_m]#íR\= Ü%dtDtX@R´\·‚×­ræ`\7`}XðÌ‹.½.htìm T:§ë¡£4p†kQ/Fõ ŒÁ ðc{c¾-I0xA€ xƒa¢~_BÜ—ˆ õþõqGln€·èÅž×wëÎ.,\B¾x~ôJm …wîãиv·O1æà®8GÂw¡óåÚP´±^¦0DªG 3¨Ðu.ð> F} aoEÀWnëUÅµÕ ÷HÍÈÆ:]¿ÿhÔ¨­­~NÞ½ŸÀ¼Lâ›÷“+ðÕ+È_°ÊhéÚ(ÛЄmŒ›üÞO/¼PY7(˜,ï‘{6öúÄìOŒyDªÛ-ì?C¥ƒiDÁ;Eg«Ä’ô ư¿ôUõºªÓ,—O~Þ=8¨ˆÒb ÛÔ ìO+ Y´l1_ø{¬Äµy—€šÅ¾/jañæð“ÛÞÿ:ù¹ýëîË“ýã#æâ1qÀ×`‰£ãöóƒãgí“WÏNN‰¿Ìg.âèSŒE\(/*¿ÃòÝ«:Le(Vã•…Á{4ËdŸk4uù¥Æ‹Ù•&½RM<‡'µã“øÚ)Å5¡ûÜ@€nwæžãÂæÐ]PìÒ@Û”î‹Ùûv‹ØB¶YÐ!:â—„yÙÄË,AÍtÏåà”vÁû/Sm5ŠêÎ þdB›X#þñˆØb \ŒÌŠ PK@­m2*‘u>ßÞöÛï×^U¦PP›Qæ`U‚3rP†öqJ#ßöñÁòÈ£­ÃÝkðXŽû£Ú$Pß /P_vÄpÜë‘"6Þ»æWlÄâÇDéÅ–ìG4á€-É7cUANž÷ƒ3ТTGÃÍB€×”\ °ê3/3/…Oì Vž8 ^¸ùcìÐŽ\®;e-{qaÊë X×ê¢{Õq9žüº½°X!E&B] ²þ¸WQÓ)ˆýŸûãv¿«È‰,#ü¨P sÛÛÍÒö6”! ù¯ºÿ:¾‡WÂNáƒqÝ`—ÛÛÄ,j§crÑSù?Pƒ‰wÔ zŸì…Qn‡Kì4¡ï 3?_Åd“­úÖ ?¤Ói£âBNIi ãi³”.'c¤ø–#è3Cw„q_xûGª;â§[‡™åǰP.‚®šQXL‘ÑÓíçûÛííC‡þÖD8rb€+`;ò>„+‹´ι—¼ŸQ,Å/ÚA7帲Aès6¤Ï¸°½i'¶:y²…âºèÏZQ§ ¾Þ´Zê[ñIˆ7ñó[B›­É¦QqÚ郒¡n¨Yj mZÈ5 ¤N+ÈØO‡EÍbcŽ0@ª }E#±<‹P'ª¢âèGFAU¨a§€„.kG«¬Ÿ=&%²jB+2h¶Í–&¯…b\Y9Ê™näž»WÍwÀÙGÐŽ HQl Fk±^mUŠï1(ÛP±ˆºÃ›Z¢eh".ñ©@ÁTð‰RºßìW—Ž-=´aAÅ\ፀÀ‘4ÅÊ_-ªÕªøãoojãnÀ”„NA±ºnâ;iÐðÜp‰ ¤Fµ„ò¸;î@M\›,*a#·œûÞ@,#ŒÓ W*EW+QaÒžãõy—!keºBP@ÿÇ 4A[]ßë¹ò¼–|Ã&U] F J—"]áN63^Ú*J&d -O.°]” Ä€©¸e„îŸ;£.ãP.xZ_‚.¹ÀP ›øz #ý¥Ã&”‘Kª‡¡òàÓkÜ;…×a_aòœsàM0‡ Üãl|^“]û „{=tLUZ P[]ŒHœtÎo¥uÐÂ@’« Éï Íw*ÓLbÕÇRñdžhM©Ø‰7_úØ/©¢'¼lˆˆG<“wÔ¼B|™ý ¢ÿ‹è›Jäü €ðƒþË à‚a1Q°YPyP,VœWÀÔ¶õ)ƒ²é«ŒDLËŸx(z;#o j¤Aƒ¼¨¢f‡¡†Ãf¹´ýâ…À_dÈ(Ós6?à»m ú_RñçU©L)0UÅ• ë¶øTYP:¨}& öÙ‰†¬l"hR~[ɧ AÇ%¦.´›an[šÜ¨@X1擳#o°Ô’ t3ÕµýF~(ñ_„¶©z8„/K`ô(o0ìëœ=*¤©¡çjÌú1ÓO“rA¡]²­ãc˜³âdø”ž$ Ëqv™bjq¹òôs¹PPñ„ö{œy[VÑ9/žáx=OÑð d{»^`+ÙGüS#›ÚgkmJ%.1‰SÍ<’æ´ê#d{ÛgiŽ .¡Q9ì_V:ä…¹QMÅ#QÀH­•;)ôü†]縅¨¨]޼(RgvX)ÀÓïÆp‡a` °3—ÎΣ8“ÈCO·žÿºõr1ýæm…³V¿ˆûÔÞÙÝÛzupªú†‹S%Ÿ g–blz2ó´Ê]‰d)Yp-aÞ ±Á>°Š–‰FèI.^¤P’fhI·ñ{©Ñ}*¿‹ê·nY$3J`Üm=Nc(Íwél ï ¥—‡fìÉ›,IÔ“G…eo3$¶€Ï2 ÚÈSá¬Õ­_w·NÅîá P»7ñÉ©Jg«Äõ;ÎÄsp$cÉÅ{<’ÇÎ\‰K‡F Ç?wÓi Fø È"™XL ¦ù,9ÔÊ蛘j ûÀçœNÔ¿FP—¨fá ¤în€qìêõ¤øUÓK_ä0d§×3ît”y~×|3Þ[ªøÏIhÒuÔ0|“¯‡ÿA†÷¡ ÂäÊ¢öZó™Zä±|-3ÜN¶2 ßy¶³¸-ÕÝÂì ­…ÜÄ(Š<þć$è„=a×{CH¹›ãÄè±f;®t§”‰€¥ïÚ”¥-t&Él+µRn!Uë4“Å X@êðB¼b&=Ð‘Ú †pY´ÿ» á„¡wî«ì Ï|ØÂ³²ÍAöTFÉÅ• l*Ðõ‚ô.è¼ÊªL|,ŒÈâjÄF/ ó3º©ad(ê‘)­äâZE¹ùÁþ£ÎŽ ¼25.è/>S–PÅ™ÓyB—.d¨K:V’>\î÷ *¬X¤óhqq=¨ÐÅjç%¼Æý.ï[:Á“ô¯e§Nc¤xxBØÖæcˆüžð´êRÛÁ¤–4‡ì€º<²xaãûÁ+A$¹4å8£`ï›uFòçÖÇ奕Ög±ù÷Rš Ä&rÙ¬$Þü.ÞVž[uyämVú{¦RÉRj³ü p¸fîo«ØRlYA¢Z«HË»×*o‹©¤L¹`ðDuÊŒLy©Š’,IµÝ*ý¼¶¤èËeSIÆï*:G-”‡”¼R†žg͆(Ç*ž7¢ÖÂTÙ—ÉX"^O$6÷]é v² û<•Ù…ŽR€X€!ûÒ|6Œ±ù@ú®r¸~ÎeS6ŠIÉžèWC Ã*ù“86¾­V¨¿¥c­bÌâ®×3E] “%~H›fDÂ6‘êÔU¼çß)ýé^Ïq™Z‡ùÙàL®làgªÜ&ˆ‹Lº½ ßT³Q–N\ö›YÝgèu,Oe|Ä‚yÙÆª Ù›)cF·²ýµ]–±8ËÜwk~/òžÕN²ìÛ3”Røö‹ýmå®:é9Ò?@u†c#/3V},P…Ô Éþ‡þÁÎ8‘·ßÛgª»)û’¡åZú¦Ê‚RFŸœwî¡1fèhéœ|œƒ¤Ô§]T=Kh ip1:Õu¤¶GâÛ™ ʲ£Éí'¡çcõ®Þ¬á… ¥ûüX¬Õ¯hIÖz±AUÜvqîú.f„“sH"¡n@#×éÒ%ˆ‘Û:X2-'PªŒÆ>úÀfØ\Ø Âî¿Ï‡C£[ÿ3Ñ߸ã )ö’o¡èÀÍ$&¥¸ÀÅÐ vÜîú>f°Ì·)h´fðìIžÚu)±¥”¦dˆÊ¥ËŒª¾ó–ã] «êG……þÃ7Iøÿ½æK¼q±ýí·KñÍ :Â$§c _nX¢ XŠ­g”ñ©¦âÀ±¹cˆiDAN/zÀ·õêá ÝQÉœŽé}·c$°Í‚¯ý‚ú>ð*ü–ÖŸ4J*Ó{hôL²¡=f,rÊ&‡ÜqÜuEòNpgä}€?«õÕ¼FI‰}-sj—Ó÷…E‡~&ÝrÆR4Lv( WkÿÀ°@PîÊënäh"5©¡†fFp¤í‘–²ò¬UµYÏ×ÀMý{Š¢ÿõupv È/~惚S;ÛßÄ«. t"%þÌhñÿ«¤q.µ½;çÐ #cà#q´õï D#Ç×3žO jNñßRy2!—k‰}ÄÌó6Y¡þ«h¶÷GÅDEé;D~XYÖŸVf_Ú¹êU¬$‘r#µ­XÕÒõ•Ê¥u¬ÕžOÈMæV~¾ýWn@5 •O]DÌÁ4Ó_YÔ—rÎÆ~—N×·Ìá9Og{–wOÒvÒÞñ†S´H=¬ýŸ+©ùš¦^—kÐjÛ®€(á}ìûêYØ­ÖÎý1~ÁaÐ…*TÏàwÊÀaeTpóF fŸÈâêÉF{c]¥æÍž”€eê¿K‹?;á1Bò4á_Xžn’Êð)P¨@ÿUw5Ïp XJã)áüùö¶¡÷‚:º²¬5R§C÷ЍhÏ€íÀH뺙æÐÍ9°Þ-và\¸×ZB<©¯h:é}÷xÎþhMrB—,¼KK¯…±•ß)¯ò:4 ?ϲ‰˜Ì‰=çläyæâ¹ð~ååPœz0‘ÛZ©ü²÷kxÎô2<ïýãòÃwËêÃcù1—P^À³>2éç  Ý‹U`ÎUb/\؆´ÛÓ!ˆ^—˜¥>Ô®,]ØÙ¡â†.HsÒíÆ6æÐ1T€¸£6÷‡ŽÍ€|3¾htäª(?;W{ø Àw"Ÿýg‡âõÊ“úrCQôÊr}eI¬¬ÔWP…|ñb›¤ç³þØ}ûé¹pùÇ4\þÁŸpWPN ObÔïÈûíWö7ù„çœâñïÈû¸z2ö[b¤eØR«’ö¯ð¼ª¾·Ä›•Ú?ÞÖ-/žÔß,×ÖÞ²ß2% 6ÎíVÐ ó3öã£7µs ¤ îfÀdî>“"j+…(¦7èJÊ#ÞËŒ¥ò…;Pûr_Ò1Õ™m}Ûâqý»/ݦ7ƒÖZHdã\oï½­*Þ—ƒ–Ép–ƒ"… ÅÈZÌÉnÓø0oüV,iã‰ê¶ï^†A¸1Åžñ‹±wš™ÿý¯´M<ú˜A­E¶}|²×X±±íy”ÙQ×8„›€Ry¿ÄOЙ¥¼—Ò^ÊúpìËçø‰_ѧ º›Éc&o¢ôlL"xh.×§Li‚¯MDÛmÙ*ø·¾:¾$ƒ[›è¾Äš½µµœ°£ÞDmʘ¹°/D=cß»º',u‚µú*?‡Ï?ÐNô¶x¯Žö_ÿ¹Èƒ~v&-Ú©}È7Õë&¢I4ÌcÆ=»9ÏÎ…=±oÆšC?‹­ˆÃO) ¤>Å ‹‹:Æ #ÔÚŽ4âà‰çŸ£ÿ úLVÍ»ƒˆî̤Rv›øO~⦋ îç ™ mçZ€©ëZ8ÊiÁ&×žÍ £{Þ™ë)"Ί·»óŒÂ#…Y¼¡d9¼u‚ój ðvBBÎ{<|“ŽuHst,át¢1…/#SZêÜà<喾̺Öf¸G³z3ÏkfBjSñ;%'ù§ø0OcžÌ éÁ“ùÁ“ùÁ“ù{2Çlô«ú0ëfg•×qéÙý–ãjX¯´ 4µÿ,â´1ú€6ÁG»&˜ãØ +šÁ'霳)˹NЙ'ôyØ—£ªÀ#;¤Ë>GE€Ñ`(w, [YÈï[Å94ßäu*£§¥lÛ7Óff6›:#«Ý±FcB•J Ý —ׯ›ê6¾PÏŠúr¶eHE«Ö“¹—iUyˆS y=3-[C g”ŽZ›ßùÎ~½h‡Å¬P\QÙMR2"{5+!DVDÌ+$h°s ƒhPK„ذb¾Aý´DI\Â5¨¹dÒûJ³W3 œt…ÙeN¢¦ñÍ B@yýÊЙû-wv½µƒ1(D“íò¦W[mPfã›PúîØ%“\2ER‰X»ðšC«·¤äv_¹@0¾Í.ѾMD؆*½jâýaÇ7yÇ÷°Y3Igâ†-]ð mÚòHëþ);¸y7i)„MÞ©e‘›zbÛ±¥‹è][ºålÉ›ìÞZ¥lçbtÅøÛKQG7‡ÇÙ½ã÷ù>Ÿqdè(ƒo¹Ð_\Áèšúèyñ,l y™kGî€ã P&?ò(HQƒ<î1+"%aÀªø”㤛ÏUwñY²ˆdßõº…ñÉ +`z&ÍA–c…áA–?ÈòYþ Ëdùƒ,åÿ»e9ü\8£.™xÐ<qt9mºÎ³ µö åAgµv?è˜f‚GÊ›AE¹ã•üdLÁæâ:*)ðëkÅx^õâ’/ !`™\½¿i “5Š SÙê Ô1§ ¸ïÇr؉?ž™ â01P/ 0šk\u2¨¿?ÆÅ›†1oÛ7§ÆB†“¯RÉÙ$qeæ æ­ìbøÏr¬ (ß™2©ƒeêe:3¨ý»Lam1Ž¥:½lb¹tîÞÛÆ,¾8¤˜Ð›( fŽ^ã<¹5[Ý–ÃÅkÊÒj½X:Ø©ÄjsúŠõÄTóƒM¬!ÔhìSü]PñЈ®Y¶Ç>»»veD?|Žñ=Ú|s¯-oî1Ū¬oA7lß¡,”Ó5碌@¤t"†¸ïÍé ¥ÉS^l—-ÉÖ»×¾3Ç2k§~'{Æ­–KG‡À­½3h,DLù\ßÃ~”øç”#IÖh½¡«õ€V¹6êUÑhàGôèCz#‡¿?@;(%+K^„ºg ÈôJ]ÖÏYXZ¶³0è#7õ:’ÃL¿Ô9^/ž?Û)xáTÒ“ DÝC¦àAyQ{„ï%Ã3 ‡¶Œˆ5(5¼ÝaÜg\~MM8fmR´€Þ*0ñ—ù/¹r¨ D dtÛ¸ˆ“¸¼ -]×|õˆ/žvUWBµ{  7”£«Ž[“ˆƒ¥¡®¡òÅœ*SzÕ×UQ–¹(A"œ%ãHÿÝ™¨~S„aFqÛ‡Ô•¸iY¯`ºC½Ë‘3²D.‹Å2秬”˜é¾+ã#rÑТ– ÊýÁPæïÜwëBìò5[`©Î§³Î§zµ[¯–¹1åX3„R²Å³eÈ|„!Ö/ñ°Ò)—Dm åæju)P Í2å Ü:hïíìbäÜg»íOêi{ïÍþÎÛ6ô§lc­ÅvA‡ñÔü‰m ¼Ĉ‰Gë¬ >2<;³ »À«Ë>ù¡áªXR¡H<ÅACŠxÁŽ>8õ½‚JÃ)[‚¶aL}¯ãÁVÔpüžP\a\Uä6D.÷ñ¾À‰æ ‚ºõ.¡q¯½¨ÌÁà¡Þµ «@>Æ„WtÆçAa4§«‰WPsæèÌ1Oåÿ…Í>(à}ï?¤„7  ýEÍ7ÏZ4r€'%×cÁzÏ:¾c®¯«Ëææ-s qˆÙá`CAü¡ûg.†\&Í—ï‹÷øÁ8WÞ@Åjøz™³ó§¨(ñpÓà„áx M—¼ ¤¢²þ¡‡ñtƒ^$~õÈ%:‘LZp³Dh“‰Je¦:é\,.É!C†у…Öÿ‹ò"º Ý-˜pøoâ‚"cÉ“ïÄbS"„+›-©mµW…ñê0Þ‘ó¢‘w^ÍV]K±%GbÞ”à»wìS€q ™¿^¢ë.À#1©j /å‚Bƒ‹OߨöLz«®‘ñ‚ L—)26Ý`ûÊÓcÔ ìôœ§ Ä4Î2·%,.Ùó¶.ÃcH‰ƒÌ:Ýä½[`+Ì R(lji"™ÇÍ ½_ïQC÷ú^tMW6­#‡%þsp‰«r Y ¾—¶%"¸„pF[˜ZRÉ·Ce…[­¯|W\…fA<áa‡3rgÖ.¤]€’ —Î"aâxL^‰êFâÁލ} ‰|QˆjK´¡‹-ñ T„È뇭JKõ†<“&z³JŽ&–’AT™ 'É›nJþ.‰6}7Lިɯ—uïÏ’N€dþéý^B‡E•8;K´J··ÑôὡK¸ƒ! ­?|CA d$F™–X"-¥$>Î’dÌR «#ÁêØ4È¿`‡°Ð€2Âe?Ac?„èÅ8ŠäHHlCµ>äÀà¬çÈäD]—­k.ÆÞ0O47;í—¯ŽÚ˜:ˆÞå«§«HŸJüž/räjîT§Æ¯kòuYáÀïx®Qâ®ëuÍØRµi‚5•‘Ô :}ÍÓ‰økn¨®ä–(ƒNvj‰ŠeKÉ÷s4ÍÍz9ÕÄö¢¬Ëdšc|Ä./ôY-gÔn®íàµ:ÉL`žÏO¬w¹‰!Ktcñ÷JëÛJ+l} {™˜È%FË÷tñj%¿ \Kñª„%¾¼"¯)SX†]Y®Óê‡éëBª9ß÷øv%ƒßêß­Õ—ë«-1½}øòçÔ×D½^OY +³B9ù;BcÁ“úª˜ê=ûñâ#=͘fÂU_ y‚‹4) 9ož/לl|9ä Þ/^l/Å’‡m Ë¡S×2ªœ¬‘0õ7k„©X]ÂZ˜)eTÜêRßt<ä|Eø…Ýû×Ëý&B‘™L|å_¥=R~¥ ̰»€Æ«óEH’.éÌ7ŸƒW’s~º²f²ÈíUr%%t‘‘RB㌬Åìf &2dãÎLŠ<³Z_]ƃ3ç ˜*¡Á†Øë]sj&dœ:®’ƒ±ijÉ™êažÖ?¡9ÚŒE*=c•g€Éä?CŽûUÓ9ñTg®,~ý๠«§’è 2Ò°Û°Ú³€b3œ‰üX ¨jÙÚŒi{(Ï7ÕÁ—‡¢Änú* ¹³ê]I]ï:‘ó_yŽôH^ÇÜÛÔ#ìžùÞ°þÁþ³—[/ÿÙÞß+PýÆõÝ}y²|$JçßÁh/wÝg#÷ƒ‡øïb§›F)cx¢¶¶ZINèõ¢vÐ)25”ÕËp1|ظOœ«2lÁ”ä¶iDžÛïÙ”‡« Õ4·Zÿ?Aè/Ä3· úÌAùý¿Ggk?á!,‡hãÀФ䣤îÃ’vZ Òͨ¬w]ÐG\Y×$Œ`­"¿À¼÷¸‡.fW§0—¹£å)à š%‡7ÍhE@>d$\Ê¥“%Áù—Ô%ãºî’ä¨ðeœ't!”—“ÁÎÁŽ}‚œMÍ…nÕ Ó11£i$£ŠåZá©ùévôxmÜ¥ÁuÍV¹Üøýͳíç/OÞ¾ohA‡¿­Eò hU­±³uºÕx6~§Wí¶?h·uxBŸâ‚ß÷R>¼ÙÚ?ýMýežÇš2E¾i¿ýÖj4^´ßì±A’^ 5úÍVí_Ní? ò“v·ßÿ”y›LX r78™­1¶ó7!·“¤¸(“ܼ¯\ Hß ö휻5Œ›!tèÖZ *c‘Çë§¼ÌhãL~:LÖ:œ#z9}4ß_³¶dM9ÿ›JDˆõ½ði<ó†ræMŽïx‚ºù‚U¾R¥ ÁÎîîóß1ú„/IŒ@doš˜RŒ7ß[‹O1k½=R/C|+{Ðú$et«D Àd%hµ14+þARÄ÷®(Ò·#Dg˜.•3?ˆ²8nyCBH·ÙǬÞa…À~@é¶³ÂÞZ¹çýWNÐ_nÝ?—4o*’Ù¿¸æš9X‹™rõgU÷ç&h‚.4£ˆ /FîUă¯wÙA2‹Ö#åê¥<ÐoJRô„Ïbÿhÿtÿèätëh{Wœî¾:ùyëåîÎÌô"›VÜ\ᙞ¦)Å6F¬Ý÷½èÔ Šî -#Åý cæÖþÕEô!­L'Éiý†5¤(tRárŠù ÒÅA˜õ¼+FOi¡• FAÑ¢kå¬ôˆ“y'aßPö¬t‹O È¢&–kI´¡+5Ú­•Æ9àí¿låIË ^³öÿv’5 öžeX ÎG è3juug–vn¤OÌauI¼H:sdßO°Î/ÝhײÇ’ûÙé¼ß¤äqj‹%é°ÇîßìŽgë*ÃìY•Ý6s–äÖs y¼&3_ü$ÿ—¯V–ùGœ]k`ò¬¥B‡«*UFW:_“Õ¬ïu"!™´Òs “™tà‚Q J‡ã'OêŠÞÈ9GÃ~Wö6Øj«€ x²K8z÷uu‚A¼Ó\}¼!~ñžÁ¦Ï;÷±KñXÎÜè¾—¯«!aƒËW{{Ûü5"eA£$B°7ã!G1PâôÃ@ö`”džÞ£÷?9½Ô§k8Cus}6]hÉTÚbEméPèc_níÖJ¥Ïâ±¾ü݆hˆUѪŠÕÕ•õuñ­XY[_]ùÇ?VŸ,¿KkJVYƒNÅðÓïŸÚŸŠY6G'eÿ½Ã±Ž\ôvQ»žmo&6þeP¤ØF¾­CGÃÞôˆãŠÝàÿ®ç|FI*‚WÃwÐf'ÎKhoÑkÌEZX‰Îd4t`~OŸ.uº]™5XSN™ß0AñË8xw/Kƒ»ŒH]Y€ŸLé8›:â3ï mK‰CÆwœÃÞÿ€^ ¦çÿ³÷å mIߣOÑ”$|lbB²c‡g1øœc£DèÁØ’FÑHb;Ÿý­£»§ç K»ÊfLWWß¿®î®£fÕ`ÜÚ.7OÌ5‹Òk¤LNû¢O~8BŸ6%52éÛ;¢3î·XAŸE¢ô5ë‚ç}ôt…ç]|·²J@N/Ý+±½YÀ¿yà»ëþßêHQ~Õw{ Ûz}ÿoRDô˜¯ÿX_Y•±ü ‡¯m˜e^v”¤ ™vL¦ä†?Ì6ì‰>s¼fu¿öNÇôôO#Ï>†m˜{ççiqáŸ6GïÀ’WkÞtõ¬¼ñ‹„ÈGÿ‹“Sñ¸òи¥‰ðFïüû•›î¯­ýß”Ótõ{=¦Ó®Étš®<¤¯µíF—¡ö¦ÛÙd„õØÖüÑ{ç] a ‹Ì,ª…ZI õß¹Äâõ×¥“¯¿”Ó¼œÀgä“tZ¸õ;"_7–ÿ4zñãÇùêÅÈT|Y ¸“÷ûÌ🖑‡$*î–xŸ÷³XüANt«t÷«>½¦Ã*iIº#áèg Ò/›Ÿ|üó4íêxÿe°‹¿æÙY¶A¤®òí@µ¶µSM½‰0æJá©«ûTlìˆO;“å¿ß1Á¯²ŸË^kè F”š\¹¨ªj&º2ÒIÚ1º<Ôšm+‚xˆä~à‹ŽŠT aÜŒz¡Ð\¸Ãª2ž4ÉN…“4ŵ„e;±ÒßJ䔉Âzò=ºtr%ŸÔÀ…ÕÊäËiå^VÒ=®¥»¯&!îÔÙᥒg¬Ð17BÙóá*ÏSLßáÕÐʠި׎^ÔëxÄÃõ@”õ3ªJŠ˜E‡qûäu ©œeö‹n+ù^•fwƒ’²…Ä?~ζ0Z½Ñ› " Íî(FÝâ‡â:¨úûг÷³ÏÅv­òu¬îÌ„ˆ¨ã¯Õc¶+_Ã!_êÄ:v,•‚!qHQ2<ãv¨¸¶¤WÖ6$y5²Åxxi“2áÈãÁå°Ñ¦¥KT™üÁ~ˆòYìõY!ÕwVŒ.8I͘øª†$*ß mA3¸cÀªØ´ؤ33éJ½Ãˆv!ôã •¥–+)ÿCµŽ<mÂŒG‰<o¢°9S¯þ~ ¯O¼DO íµÐ ˜­0‘ÿ“Ê7[••‡Ê\Žõs³U‚ÏöO>óJõ«>wëu…NORœÄ8žÝZ-6`Þz›2ë•syE¶Œ¬å‹O/T4v+1|ÑQÖʤ.ÇÖ-(ÜÆô,×Í0,e&ÏÏÑ¢„?‚Goö ÔŒ­)“æ}ùlŒ9¨—9 í?Æ4ׯ¤zzBÓ¬ÛÑÙÀ\;pz5_|°8+Rˆœ~áâ™F:¾W=“d¡wÅLƒt+ æ"‚ '‘#×a¼áH ÆC»<²oFIO¿§K| Žâ^ø!Ö¿Íz‰D®Ynšû¦©çSA@À«ŽÊ¼y 9ÄH_ßY/èjJeÚxEÃÒwЄÃgÛ|Ã=ÁíðÖÁ[^I‡©'jl_Äó-ÉŠÈãu'cC¯,v–àDŸD$xôj< ÿùã­mQþþÛ|õôìô Ö!¶D_…ýØ=eslÙsjpe´géÓ åèü£Ãg´O)ïb¾9Ù^ÈqDŽÃÎÊGýñ¨J^ø.-Ï}jÆ…õágR}¹ ’î¹&ª4Üÿúî0üªêxΰ#>²TfõŒ–ÛímØ"ðQ#çæ×G¦KÀÞ,ÖÜŒlØ0ú¦£”ýüÀ*$m]uèS©äA®/®m¼Ž.ÉUã=Yµ]ôIÁ›? šƒ®@½ÈXªàH~´óÀÃùU——ÆÏxÊòõݺÝ oµûqHë™ÍÞÙÖ]¿·É"˜ª–4ƒFYeS–+˜»¼O h§Ñk YÖ\ñ@W2•¸˜4hÊÞïŸô¡øw2=ÓvëVù™ŸÀ™ÅåhR½¾¶ïdLKßJ×ygKÃG¾ S 4e£èˆ,¸Ò¢×ÀÐîdYÜð„õ“ÅU¼BÇz”°¨’xgß’ãIôƒ@þý´S•êuñ‚ôáñe€´ÃGŠâ°§)HÜ$¶0®rC)‰4kŒB?Ï œÈÄôA ãC=ÂÝd•_[ÄP÷-îÑǯŒ§¹?C[¤¿D3Šò³¹/m)×ïHÛüùT\[«Ŷ؅Ern­ã³ŒÿáyøÃ³ð‡Ÿ¬uò¸æ›Þhˆ 7·6·ÖÉȳ‚©\Œ™>Áé æ(R ‹æƒ%>Ñ$¦}Âÿ™Æåqœ¡ÅŠïb;ä"øj„ý4ñªÏÐäÙo¤žøº¶EZû¢üzpÙý»ú1øáÇð‡ÿD{z+¶§'fjôøVÊhlå ©“‘Üc6w”³@;:4¹tÆ‹À/òÜa¯ÑŬ¸\¼ÑmW'WËÍáˆÌpÑðìš­«ú* ®lÕ²Bš9ëMÊ£¬´Áei T^ÄÚè^Û’A•Ïøþ˜µM¦%ÔÆHh«+‰C¾mh‹2‡nX·H—û“g3¾k-hýSÌdAúfßµð¬ã4+5ü¯çV~\—em è«§}wS„ª³ß¢ 8Á…þÇÌ~‹­ÉnüC¥Ky@ÊlTºdẪJ®yWÊ».+Žõ¤ £Â¨e…åjXbéT–÷~øhsCÁ]ËJéݨ¢Ð£Ê¯Ûû¨«làï¿>fi…{§ËB7½ØËu‚¯ìò†b¤§^V7EIO÷2ÕC¢ëǯxоWš0Ýßù/8øÊo>´Q7Ê#SxÖY<‹+Âß®w‰#© óµË~yéÀ±Ó6lÎDl*å‘Û‚Ñ|öþ™ú±ºÏ݉‹åò«¯ª¨@U`oÑ­2o4tH¶¼#ÍDº°Âvn(‡lå&NCÔt.¹l5ˆ•Bè\t)ã>(ìÔ1†¤vÞXzšÃ8 oFêè{и[ìè ÍŒB9WhÀ]Ö¦òy26ÚŠÇî&ùÔf¹ËUÖa„©ø(€(¾.o„M:éxËÙùCÕ 'ªbΙÝiÞ1Cׄ)çè vrœlm+tÆ_+ì2 ÀAº"gw¨5…XÀ®GÄ£Ê6_N£— >³’OV:C£Bû8 ž¦éV'OòÌ­×äc¿„EÐñRð‰ÍØ}ŠçÙÕë÷o >TD¼ÔÝÒE„q£ƒtl8µI 4Òa9¹T½ªì(ó†O¬VeáÏëF«õÌþ2“¶tš—8"ou¾%ýÞN»¼bO’{°ÿîõÕ¦ø‘õfÄãÊc}©ðøˆ~=Ü+ã%×3{Ô€µ|Ep ~Ç½$'p¯f±.è¶•=3Rä‹§áq-Ñ(ª•8ñ 1S³Â|«‰ðÝ«¡òƒUt ŒÙkÒmÑPP‚)ä_ç€x6Ê-$¨tßU8³Ó\¾w\œiš ²×B{©µ:ÇágQéØæÜ¥Ý·Ñ]°éGØtÞKÈ9oÌÕ0ÉSÞT’õªz`Ç"¯}ß›|‡§×±Û “/_®¯‘\º¾I—‘M6+v9ER³bE›¼„Å ÛQ{ܲ}K>¹Ð+ ÎnJÌØ×Ÿ\ÏmèÉùµ½Ò¾Jó°–Àî#\²7ؾÁ„/Ò®¦éŸVìõ§ /„½(Ëø ’>ùO=FÊn1B¬üÂ‘ŠŒÔútAŠTÄOh¼W¹‚ûöÛúÞ>ªMøa8U¸ êynöÉa#Û¨ ÐŒA¬­>à¢AyhhÆÃ¾x°SøT`ŽA8uúõV4¸–ôPoµ.sN³mžÝÞUW5¡øŒE‹ê&@piW #¨€?Q“DùsÅjm«ª’øË'ÉùS© "–˜…ï^´ÇhŽûCLø×@äu{Ø'uËb´ FÛQኃâÉ£rÖ5‹äÕ—t*I[’z<¨ IëOÃ,À|2LiÅϰy̤!ðï°‡’áT àL`öpÈŽFWxL`Þ»5¶:ö†Uøë)þ§ _†d …ôUV/øÀŸ©EÑ”™žJÉêi‰78ùÙÒ|’Ÿ­'y¼î–ŠÓx)ò¤}¡û­›m ª•¼ý¶ðu;œn|Ÿî@'^pÌ«‚§µðE¯(™‚]@¤É–`2»üT¨¾Œ1kwÇá¾3¨ï"`Y¦¸9V ‡Â¬µUšhdJÀú/06Vtp’úXåOíWKËTwÚ¸Vb·¬•åfµÜ¬–›ÕbnV+wÞ¦øÆ$ð.¢Òû&gŸÜ.¨#b»àCÖŽN(½'Á¼¦“D9öû·ïtÁ†·†|ËŽ2|éò —àã[^ÇO`'x.N¶Jô»«RÁЊ\cº•LsÃì´ ¨‹¬:52Ñæms£QµÔ=S¼@áíÂÛ&º4f·4_ýûùái EIM&|?jt:Ô–ìnΠ«ïn<¾=ó6Õ¤Ógk Õ虎äÉU}ÀÊ“&-†ìƒ„ê‹°$Úµ-C-Àò¾¤ªÕ£7ÅoµÚú—\…ZmëËKë"0õðbZ‡NÒ¡ x.qxNÏÁø£xí^Ó]q¥3LÚdNã¦;Q¿Özô«U"¿#Q k+÷øÃ“.ê§!Q*&t7ãQD•.V, ëÒÅ}¥Ö{Œ;¤h½ÙmÜxdÒÝú'BvÇrųg÷š¨[ ´âþMÝ}v~zø§ù´õük-|¬XýBñ­¥æ\‡îÖëæjX—çƒä, ǘURÔ‘%’ôpÛÂSÌN¬¡äzŒ­eÎv;½AÆ\U«fêñŸºb‘½„H¡6h»;Úè}‡ïGf”­)fý«E.àÄì6¹ ËÚhB¹üËÒñ¼üuéx~éx>âxÞk;¿>zì«J'¾zhÏ!øL¿[ä´ôØi¬?’Ðo‰^ØMïëšM†öXß 2©Ë÷Çl"‡ñÔ %‚èhŠRýÉ8+a=Œ•XŸc#ºïÀGJ 1SÁ)J«9˜ÈMôHçÙ]<…&eF7šffÏÕ¹#^zWt=õÜò;v”'”£{860þYë]%Ö„(Ç%\/Òë%Œ×fùðÕkX†O­"_Öü|—™Ý.öŒõ—®ãn’¹Ñâºú&gßVøb¾$:ͶvÙe á˜~4²ú'q„’CNÄEHÿú÷j™®ÊÜ#O¹/¿zXLrû tfq¦Ópé6&XbkrL2ë_)­võ ÌHVe’aºl¡s¯ŠðëŸÑ›¨²´iÊË:•Õ!åe#vEbdÜM±¾[ ÇxvÊéLv%fõø ºœ~…£XW“ON?F?Q°Õ•Ïb“â;H=öPÎ@ ü™3ÔôñsÒ %öFŸ »zÒ¦Ô’­k]õÜ6œ^Á\î¶ùI©HùŽIº#9krw­¼9ýæü_ÁÉ2ªÓKžŸœÕã¨y ð5-ðñŸ ˜ÆöÇÊÁÏë¦39J J‘TºQp1ò‰’‡+[Œ~‹É¨J3f£Ô9ò)Ÿë_í¾88ƒ™½`زuø®Ö(§ò@Ò¢n¯,lDYÑ2“p5'Q毨ã6¶ì§q䤬áT-$Ç×”`¬\1(§éóÛïðÉoV\×ȱˆô Ç]çÌ~€3[æãJȆ¯R¥¡ÿr|“æ<å¥(_…}-æu–2Up¢ )°½mûÙÙsô&Ìö*¦ÁØã(¬ìQ¨õÕWÃÑƒŠ«.Õ÷¿úŠ‚7À6N$3ß½Ó‹1Z‰û!‰•yG@Jà×óF/åºN EUŒä§@ÉpN+b°õ*úvÁ×ÅK]°­5TìVVFâѨ«ü}€Ì5lp€†u¾îê@ó›^ZŸ6l“{¸Jû¡ªš”gO“†qj—8«âM÷¡q¿1²±ÇAÜÉI ô‘žJùŸöp´¤±¨«fÛS´5zù;ù<Hsç’Ì!‡(FzxO«.Ø)>Z´ììÚÃÆ%:¹ÍÊÌwŸÜ#A`úÞúçã2þ÷Iååk¢¤ø •òјī÷ì§ÅðM@ûnYªÃzÊ&çd—Û¡g5¿fè9•øLýþtúJ¥ÂŠÿ;âSÁ° º«7§³"ˆç%¥<Dúºò¡\g`BŒ?&zeïW#ÿÊ»#„Ÿ:¢¾†ÆhŒ“3û}£+ðÝog꤯û^ŒºùB¸bFÍ`é/`Øg}XrmÆjÜÒóoG°óñ– gÂ?•ÿ¼Uq}ã–Ü,H炤zqÍšá^!®F½°ÂÁ7“U±7 ÀÙpe p:%ó‘ Wºî¥6•T†Z! 'ŒL”z:tß ·Õ¦‹£6@Ý^ÿN­*Ú%³»aÓL|’Qý]l|…´2ÍîßVù ±m§Ó ð4³mG}ü õOÂD34rÔ>f>ƒgåâ<ü_©§ê³aNÔ¢9• h({5³Ÿ”§¢_—àrÖ7åqd´‚ ñ7ëz£ÿòCï]·Ýõ÷)ÿ±•FxŸû<ò`êÎúÑßýâÜ ¤‘ÒD¬Ì™á&5\”;yƒ›\ôœôp”âa#iuìÜ¡sC>ðñrßÇë?w`\xNpe0Sׯ¾i¨¾É¦·§¨1hÙ³G*t ±ð3p,­ñ  ð[Ú—Ž‡:èÑðEž[Wlz݆í È¥S?ìõ²-Í[ä]7zƒRNB¡§œ‘¾Þ$çwîðÝf@APæ'­wÛ¿ %ß6Ò-ìƒä¾³Ç×§Ý[å…›«nÏù± 1ø µÉÕó°çÈŸ®ýËq㟪=ÂÄÀ–Ñc<‰Ö‚#-*'—®¯lª,ª½Ém½ÑjÙƒ‘é«ÑjvI’Îåzˆv:é+^ÀZ‰—° ç(á9RüpÝýÔqݤ¹¨we²n›…é(ú»Ä×0Æ2ºÇÔV£bb«Ñä^%˜ Hª±T¸÷hϨÿ‰&î KÄ5&AžH"¥¹q=”’'_»ÿ¤õW‹DÄÔzÿÊ "•Ùá¨]yû Øfë£MϵÃÌ ÊÄçnKpsF½ŠU—)õó¼¨ÅljϽÍvú°Ñ8£:q08)Ž•¸ÄÁÁƒ¦8±*õ2¦áªxÑh–-žÙÝ.ÔLظ‹—ùÛtŠ.#g Ô:Ç'Çg?ì<ÏÍ@Z e“Û½¼ÕóG^ÆV­ús4øè;£s{سªí%ã ýê‚—ÿÓŽè—éÕ²ëí ‡5ÿ“‰K¡™„Šå„‘†°În”ù6Ìë/øm3·õGÔlÍÇû /ã/Ô•Üj[;ˆ1‘2Ct5‹lê*Ä£^Ûª^B¿ýÅA"£Á’¹}ÊšÊý/‚V³Ÿ’ѧ:Ú¢EjÄ”“Ó õ‡ù.D“ÝýÀð¡”1îKÒtUTÛ(¥ûñZ± xÌ=—ÐW1u?½ô¹Íóv06&û#”Ááçãu8Ä6<^~l¬F›=ýà[D¹ˆ$ ÷‰Ÿ}}Lx!FõŸß%“ñœ–8às²È¨wçe©Åß¶á{‰ƒoq1ûìYAQTް¾ôÄ—^­Ö·¢AV­è°ˆE‘1·4uòóRF«|EÞ¾,ƒ4béÚé0èNÚªÞù#3;24¹AŠa³í|òƒ£j[¢ZÏ\˜¸-ÒûhÝÜøCÚ{Om>žwoSW‚ZÁ505¨&££ÇÑíµ4ç°ü'¾Úêû˜4@ä`¹¸ÓV_P¯ ØÓ‹êÅ¿§Ö"‹]ü°ñA†0|J‚¿š§ ‚¨ö8WeáµZÛÚ©Ã_̧E÷©ØØŸv‚éñ+ £á¯‚K`ê®MN@eØw¬Ò~Ø÷• KÝÝzâqåŪr4K1Wt©—`æ4ÅM_Ò}ÐgLI¡˜s¡EŒj/9c&WýЬ@¸Yöõ‰:Èþ}â&H…N늗z¼™±⾫…SIš‹ý^ Ý*Z_÷–ãå^Û¥¡m¸`åPØ"Ùø‘¯ º*Pܾ¼RÅ“†5¼àWÛÐÙ–ŽfG‚8z¼k ?®ÆûÛòô‚íW ¾Ë¾­L´âc/]™ŽÃû̲Âm& c‘[®\ñsÓÕ9B{Í·þWpk<2N^ àG×5FÉGЉ~pd}’„c\Â)’súÇã‚Å)h<ªlrŠ‹JÁ«‰Œ¥EQÊ!†0V™“Æ ·¦PuWÕl7SH‘Ý4ü2Rÿñ´ä¬“@åâ z´`؆횆bîZã?™V è1¿¯‚íÞhûÚ4pSúèh ¬›b´Z867o0öv ?Ù46@Ã¦Ñæ= 1¦L!hµo Øf1 _`Nž &O5Q6J•Œ^úFÄŽ0ì·Ç…MŽ:´[S„™2zõÇ-›¯*Z¶Þ¡äì $0ÙžcuM;}fXaOzZ(÷N._yhN0kGv#ÚtÑËÎUƒÌe[´½Ú4ð€¼ܹ1¹Ñ…qûV ð"ÂÃ$«Q…6y¥˜òP¦fÁê%éôöIÁ‘ Í G”Ã*)›I’-RܚΠ/^}ÛÙ•ˆ%·Í cnº(üÿ#snfR³jܧ5+¡Wkæ—%Ô,˜ÕŸ=ûfá2ußH0>á5ÓØÛ-~o40cüjÅïa)ufK–CkÍÿ 4hÉ2C7BwÓf³«ñÀCøoÜvcÌ0YI?ü´@ž~ƒ6À×ï]½NÅ@R4”Ónù=îouò“~_¥"ï©»Yáh£`øÑØ)Þ¿eÜ×Ęd2ÌÐTsÃÄ´íÚwµl‰šR®Y´|àGÍ„ÇT±SiZfëÌÃÞò#.%¯uilìÇ´I!•6»2ÂL숦·ï¡€®×C(rë¸øý5Ö:.‰”Ð2*7êIÉ#¯I1>±ø"–þ§>L.5Hù[û'!®ÑÙCÇ9-/ERHÏ"&ŒƒoÂS§ô=½NÑ[¯áx>¼Ü-Uï*O†O«›Õ£ÓjI-‡4ÊRÀñplq:$Ž …CÛ *:Áþ4¨Ûì–¼»µµ_÷Êÿi”ÿüíimýcmëãe¨øHŽêǪ&’Å.ï:@ÅëZÒT™˰âK94ˆÀG6,øvn¶±jQ`¸P%. F p±ÜöÚŽ”˜W¥Wަ‰&2ž°v,Ú0Пz·Uö÷êFE2¡X¤×Žç»qŽeè-‰¿Î&ÖœŠ “婵.ÊÈZFøY•¥É+:´åo ¥3Ô¾;ìÁΉŒèˆ¨,ÞqqHÐ+}ÙÕz×ÐÎ'†t°p‡x£F^t0¤A§#KŠöèŒ<»ÛAWìp¶!O¯,™ÇŸô“è;Àñª;UQ½,]š²ç§æ “ ˆ7Lõ³ƒ×{§{ç'§X‚e” gݪ8y‡Þû¯q¥_TèM5vŽ|Êz ‘= g`|¯wFÄ `xr¡C^l ¯ôYdCNýsT*<ÑG½A=®mœJùa âC×n•Ö@qÿõk©k_þÔÎxyðIÐõÊü:æoÍhÃʧ{ÎßÊéܸ}Š 'g6j3hõÞ@côL/ðíjƒQ #Y¥11âõnÌšmÐìYCˆG•íïLð¾}mÉO/Ô‹¡ÆïÄ/O‹¨UÝB“U­ø¿©nIß«Âò§[ ï#³µC±F·U‡åÇÔµ=)¯ñ–ÆóUf W!x}”2A8 G|¢H-xÛ]]£~´»ƒµˆ­8]ðÔ +³¨"W‰ä4TŽMÜüåžÀÕ’ûA©ðìàåá±øpJ–:^âýVýXë[;ŸÄ.aÀW D‚R¥;&µ;r„×à#Þð¿Øôëw(çãoåò:1a7hEJÄX-¬*«ÿ¬XŠÌ$ÜÅ3É/ý«¯Ô5Þ'ê“`~¿’PK3¿ÙØè¸þäGY‰°ôË-— ²‚ùÿ‹ÿ—ÅcÔPô‚í?~åï¿Aå¤FVx ³¨šõ§#ÒÞOÿVA=ðIà}®õmwìu1ä¶= 4*¨›åþÓjÛõª´Qv-˜²Ð:[<$ù¤˜É6–šì¹g}¬ÆH=´À‰È9Åß¶Ï^_hï3I¬,´Ö†ÐòÔ Ä?-<ÓÉ6 àÉmFÞÈkeø«Ø§ Ã|W"‰–¥ž[ˆ„~¢/ã~ð*9yWÁ?ð4üÌ«xãOõj'ŠvÇýw°%÷ Rã¼>ºØp|P·â,\ïZ¾ƒ 4ÿ¶ ª£ÚÝŒ®² |zZ6Ó…ê· O^Wo…U‰úâÖcoºzÖñ#|MÝd…/Ý⾟äë©©A¼X1Ÿ…Å®ÝñuA˜cˆV¯`– +ÿDfxùa…“@w‘ƒ X#ò•üú÷ÇUþÜS0Üàû¨Öt.Aøë4¤«ÿ˜9SRt*nµa*Jãt¢Ðfv |Š ùÑá3Òäà•ø³xH÷Å ÀÊŠc•¤Â?¹©BqCzcUNuÇ’ êŽ/GE‰ Ö € ß~}Tþæ·Ùö]xZÑ{R`,ƒ1üYƯ«j‡Fvþ3Sk06·gî¿Çª·ð-ni~¯×_¿ÙG§-b˯é°_o£,#?¼:<>9Eº]ñÍ?×I O²¡ óÃ*ô‡Ó)ánŒS ¤þND\Ä(ƒe^}8ätó™èÕc'*íâb<äAAÊ·Ð×òšPpPq8¶ÑñYÀ†å9è}fŒwÍj»’ø´M@‚ D‹¸UÌ=~X†ñÓ•?;GþL"G~8[›hÜD'*jG¨ÚÔ$]‚¬üôÙ®¨Q Æ( óÀÇMX·¡è—°ƒ—°´ÕÐV«Ž¼#6ú#îdÿ¦EݧP‡QŒäŠØëzî¦Ò "ÉB¶*‹-'e!ô 3a•=öB¬ý;ìy³ÜŽÔÈÈ‹=2¢€ :ˆ“ÆU·»‰'Ûr{· KQZÚízµê’s—/ö©üäé§÷Cã¹›ÑQצ‰AÌ¡9•iê÷õì'ï-ê˜=•Y@*cÍlâ†Bîk¼µú¥ê&JBßÓ«†+'¥r2—à&ljÝ®Ü7}Mgtí´aV­=ÜÆ~{òh‹¡[*âƒïp­ë¤ÁQá½ÓŽpÁøÑ˜M™aj­®Vþ<ñy´mØì ìõÕGéÚn¼+‰wö-¬ä¶ßwF#™£ŸåEýèdïùÉñÑ/<=@èÛdSRo  F¿LXðM›ÙÆÕ¥ââìR³dpBÐjÁèŠöHFµñïëh§ƒªó[>Ÿ®±Ù¦d…W?tŠ¡Üh©ILnL(Qþ.0½ ÆND:0¿ë<¿7‹ø;ÔK¹NÐX` ,k€1¯Ýk£å¥‹~~Hu¾pã°E,2)±L!œ+®‘"ˆZÇñzè6á7Ů梥ù{ºA¨|eÕýËzÈ¡Ih‚†:°ì;c?r´5?Öÿ‡ #g#¦Ê½+tt)a‡Œû²Fä m©Þûm%Æá-‰BýÉž´pChÜÃeæh,pãjYƦÀUê]«ˆ;}ÿ‹Ü;Ð{Á·e op̼iÇõ²æxUˆaÑŸO05*ØV¨¬EÁ½QÊ¿´k¿âˆˆd¥ýÏôµ+ƒpé¿ò—P2ú+t]Fþ&úüŽ`Ž-ÅR¯ËOäuâ)»Hé¶¾lŠ_ &DØ"W+Û,ZPæù Ž¡=°Þñ3–›±Š6ï¥fˆ¾Y‹‘%ü~;NR££ÁD«gv»«×hìRã•ÆTŸîüaê…“À(64jÄÎþF3ÖZmiòÃÌÑqý ý…ê–ÄOqÏ]O[ª±Ý–º’Ú êô"7VuhÅg.ò†\ãS¬]À‡Ð¯/Pâoh}õ©,ªË†Ë>N¢8°§@œ´”¦Äi ÿßÄîíþ)ö0ûÉÈ åµ:éKKy7EH€XSR]³úRý&«ƒ ‹1”»ð둇ª›Oý =¤b‰·{•©îCg"‘R/÷ž|ýn=³çÆœ&ެŠ}>¾í45àœH愉Uõn=|ÕPLw—ŸùšäÔ¨ë)·8Õ £dSS€&¢R0½;·âÕ,Áj¥’÷åï• | û½úÛFm½æ3-~YÛúI€#ªê*Vã›TÞœ@,X¿šÖ_¾l)›ÓÚçÁµkßÀ|‹—œ1nrmàäoÚræ§Î¢àèg½PŬ9󪜊õÚίßÇÃDà â3¬ÉwFóA±„„àñçÓª×D•ýn›#s™Ÿ²$RÞS)kèEõç­-ÿ¼O:MþÐytõÙǾBÆȽŒõƒÓ¦‚M.ÞŒ(•®He0X æVU>}BŸ×Ôßx—Ù×?®AµÎÖòx0öøR² oñú‰ñê¥Lw/|7@—-òáÞ“³¶u{‰š‰€ú¹}pýpÛxvÏf o»×^!Ö‹qtºÆ¼¬éM‰ìm"þ÷Ñ"G+ñA²Ñ˜|‡*ø}~tDo,ðÝkqgÙzµR©ÂüÃk»°ˆUˆ—»°na÷BW³VÄÊkO»KÂïEñì‡(}L‰r‹¶ÂÒþZ+jVø§³Ão05)pèúQ“I‹\ðY0—¥ •¾& ¶~GÑÂê›"Õ²bTH””Z´“9ZW=·-_Ý$zIXý¢(ñw?  ™£€„b¤Ý@€(\ qTà_+~¯`:NI[XòÝnÒ à(¤ )õÕ¥ÛÕ>šp_T~I?%¿ÊåçyíÓœÄô’#J@Q’¾‰÷Ũ{ra_÷jm "X°QcUl«À°ZºTà M\ ûµò[µŒªþÞØT©‰p\LJÒZŒi uf“nXãG÷Ê+§ÿò'¿SÌ‹BêÙAi¹»48PI‚G¿jø§1\ƒëÌÑŠƒ²¬A\ßqÌâákÕŸœ>´6/ÞµpUÀc|««!ù¸1Â'¢Wg?î+h6û›•’îm27êicÅñãtX­l=k«Á’;NÇÛ-¾8“Ÿá·ÝÒŽ¶¨f S­]Šn€$Žønv0KÑ`§VÅlâÏOÎt@7|kð}5ëàñã^Î|]y(¼Ñm—ß µ.®,ïD-©ÊÚŸÆAL}{ wW÷……Õþ’ü¦®‘ö#!þE£óå_ž#Õ®§]èºtÝ}»Ú€}è^Œw`rýrÆí¬d ”ÖËK¢°Ìåô±ÿ°ÿ-jpj”ÿÜ+ÿç·ZmýéGQ­±1§ÿûNé"¸~¢¨í×ýÎà„èm²Zþºžù¥Ùh½ Pj6¬ë×øª€Ùx¨×ú®TeÿbïåÔ{ÏBt]÷ß“]ç-éÉE^µU}}zòòtﯭ§ü‘uÚÓ»9¾tYþ Â0¾Ü3=7&È­I£ÞûtuK›†©I²•q™ Æ*G{ᓵjJ;¿¶ÊîÃtC[žÄ€¾«â´_zè` ^Eâ'¿iÔa`K*Ù+5×"1Ø´íF žQ£ u‡´5=œ(Û²nÃдð‘&Æë”Ëì4#4¸wû±fW.+Âz-5˜éºÛÂWsK­k=8|oËãÅÝ !²ÇxéþŠÈGJ6’î(P6×C¼ðfJ-ÓKDþå£/sIt†!•^]Ct.a+/ 2 qE:•²…o ¼Ûåµ¹¼1îŤí#´kxÕxnû–z+ñÆ­}Ûm[áKf0õ%ÝVÅuçD×_a.Á›¬¤Ùì®ç¿ÄÜv·+%võ^)öȃ¤ØTÎaŽæ^Éãé˜~‡þsš$OBËy/V R‹€²¾ÒØn_ʘ‹·¶öBÜ”f]zbv†¶-ã굇K·ßéò"‚íˆþ~¢6] ƒÈ†;U½ËTY-’”5»6©.£†_ºU=˜?¾ãõð½†ü½¡,ŠÂ…¾ç¹áÁ…-®ê6ß²bÈ-úÛîE”·v-HÄ^†Èfþºý\?ûܰ1†m²Ÿ€6­1Mr-u6}ÿhÒ…*QÖ¾Ÿ©Ï£ 5݃ttè¯á%cˆ8ªÙ³ls\jl-CjÊ+ceÄÌ!ÙŠm¥DŸg—§"eƇ¤‚ëL~€Y ¿åg˜h$)kíXÂ…©5Ÿô‘vîSF¾=ªlU¶B$ð%»Þr*dU›UËÐ{ä£ÊáöY¹WãÏ̺ÇxÉ»j8ïÆŸeëH”N¤¢l½+Ûd »ˆ»LXÒȘ©@ÓuGÕ+·gWùEeúÊ'.ã;SÂAâL ±Œo¾Áu€¿l=пmÉï%)±+=bš Û†6|ÐúLÝ›´ñm®‹sbŒîÌH“XúRm\â݈>¨Œ´æùªÏ?—â0ÐNLCŠ!çiMâ”U’,9ëÇêlðÌ\«dÿ'cO|Õwíþ{`ƒ²>k9ÊHä³ìŒÓì‹J„ÃjÔýðúÍÏu4¿«¿:y~´¡OyfV¯8SPúÿj…¸Æ¬¡[gü+—œõyò(®>OMZi’(o`’¯ƒÆFÒ„íÞqÂvsLX˜Œ?¸×êpJN?úm8ýTÿ«S:Ǽ4¶ÔÕÄhµ<ó£UȘ‰gDS&H™S ûã‰ÄWäždhÿ1v†Ò©(e„-̘/g~x]~ó3ŠžØ`c¤ áuÝk8íy"GLÐB¡‡*?Þ|Ͻuä—} Ñ,Wñ2µÓpÐþjŒ¡Û¯Ø¤Gu¼hŒÜZ’toÑ M±SÉu,sÊÝ@À:7¿>ü\–Ú !•…/ë¹×ÄÃÊÔ Úk¯6ù=çàèÅz.5©,q.Uîr ä¸y‚¿ôA¹y‰{r7H‚#­Œw•H¨#vHÎ7Ù¿°v#¾2£i#=+ÙaÑ©b`Ñåœ^“õß2!£I“5fõÈœªŽUÙå™E¿F¶æ‡qqú¾Z¥÷ˆ£s¡þ¯ÛWƨ@é];£Ö‰ßâè9ÏŒòÃíüWX7Ê=< o7½ž3À¯ÆŸÂ2î(ÂÃo½Æ¥ÓÚ}¸]n:#5íÊ}æÞ²v2!ð!Z|ó 9¦gYü¡ yòYÁ†«Šxò¨i4€ÿŠ2‡ >søCó~òÈlÃzzƒû¡ÜÃP a=<×*Ś駉O†É2HQòÁ?’ªúœ©…™ÆÓÊB6 ½al˜Ú–Õ ŽCÜnÝYãu#„·ÜN§R |Ù 4\ü'Òø!aÜ«õ–-3õÛC×iG7Dô’ƒ¯GœNW¹èQ[ÕÐ7ë÷÷³N²•…U}ï¸;I]¹Uv¿A^ÍéNÀ))s˜®úV˰é0eÚ}+òÈðCR/P‹nz,žìÔ‡=¼Æ‡¶\Bj« „šÎ0ußmà›B¶PüÃØ}W~ƒÿ.e·»k¸—û)¹§C®?Ë¡ñåõn›¤þ?Ïstuõü#¶H¦†CûþÓùµÏd«.˜IßKúÝØUž0ýî¢]ÙU¼¡b°%ªä…[³âœ¹×@h¬V”c]t|®œ|WNͲ¤øÂ·)RЕ(‹o¿­ï휼ßE\ðW7ÐÛ¦A^½¹JgžB¯Útë…8P¸éíÑxØG7…Ÿ ÌݧN¿Þª`–ÓÍ£%}[F×X+ž<û¿ço^½F U®ˆ uYèöÁŠÚ ^Èq¯lȾ´"ZFÄ?{àã:þ;ì¡)^ !2à˜<Æù¾`Ÿ{ÑÊFƒ žæôPb'McvÐw¬OÆB)f¶mÑö™UqئvfK÷`ä9B¡ ù+¡íbÈ6ô ãv°*ÔªTí@1lbÆòĦ¸r¯)€U ¯ÅFØ.|PV˜`žïyx@¯@ìebU:CiÙC4p~U]+4^yßpºl(CžP¶’Ç¢ü³(¿Wó÷÷j 4°ìŒÄ »íþã¶l£’Ÿ<Ú,ÈÐc}8LzÒÍl3–2¾Ú c/r†ª®¸I5ñz9Æ›”æ-1bMl‘aƒö:¨Y&ÖðÉ ¶ëî¸~”+hV–Áix-ùÔµª>#ãš&h—v”ac÷‚ü V—ŒEU|!ZÖ<Òÿí¬‘}0Û!¤úÒ3×½µ)jÅíõõὃÓÅ.ZÇ}èÚó ü´.µˆkÅšc ”Ä·áµV+ÕêNõ÷_WÄoW×­Æ«¶w¼ê¯O7W~C•=ø}÷×ßwÛ()ÿÄB&YUøQý½Xm—€õh(Jµ~IÀÿ.²nC>2‹F‡YŽ•$íÙ)¬v:NjºåT÷'8bmÇ£[ÁÈm™Û'&ÒÖµ÷ê<ô}ËW»ͯ\Œjt#óíL wÒ\sè¾CW"˜¯…!aux'2«{r}Ê,T5Ý”¥0h– e-tNΞìxiI×0ä>‡}ܕ˲ d¨4ÒDæÃZ ížKÿÈÓ·F:GG:hX•û#ä%Ÿt¿°ÿ+1’°Ÿ‹†B ¦}{„bgD®œðQ &7©;Õë ÔÖëqîëTR¬Ší dÌdõ† dÞ)F;ñØ=;{¸Sóæºß“úyhan¶Z†š‰ÝN[EoNw=@fÜôíkÏõžÌ™çÕÉ,wî%ìŒ è ò¯þG?FE>þ—Úîïê<<½»mè=öðx-Uø@¬:—ɘã¡6iX´èñ§°.râã…ùúW41[´^ïI§ÅÑÙ,×ÛVnâìÛflMQ-Ϊ۴m“Ü*F¢Aì†T †¿´|舯ý 5¹“)6âVùÂ÷ÒÍê`ùW‘­Ú $ðµñûÝâÛrèñó¤¸r[TÊëLÝ÷©»Ú|±5†R›¢\\[û¦\ñÃêûOë뜹"ê2«ÌÖ/¾¿-íØIåû„@;?éÛ(îúÑ×yN 7àûL™ÖIûÔOçSØ€LkÂýc-‘Ó$·ùǤ¶å–å3±+ŸÖªœmʧ4OIéñë”°i #O‡¢ËÂÏGòçãè~_óoÏsú`9¡P“þÚdøèº.¾½y«7è=øž´¢EÊdwXÜ8zöô?“ô¤®Ù—wë÷ ¦eVa_hÓ¡»KþX¤M7 @ã›7Åâ5£×W7Zy†¥·GÉRÝç“pŠÛ£Ö”þv2»9¬ÉaĈŽH•á¹IÂcŒPIˆ»=wq2æ` úÌ\©âx}G›.g¿É¤†HJUþé›c_ŸÎw:ë A‘·žÅL9øpaý2éãXr5(q“(ÅtrŸøÇ0 hþm¼zMЈ Fyû3LÏñ™MÏÜ~Ë*éQ™î' _°íz»Œ´ˆ¼–û°²­üž”ÉÐPÿJÀßOàLüæøðç µÒ7Æ×Û1ÚJ<2ýMûÛBìl9±8ey„ä!ü“gm‚P%ÔÒÑwÌà xj%IÑóGÅ”ö¬$ЭÄX fÛµú»ûhБv'ç¯_°K6º¾/ÃK{Ä1"„x­Ár*6 C_…GLIþK%¾{ÕPâä¬ÿy‰€îsSŽ4õ'ä‰M¦É„D} q!AD1Aƒ Êû‘GžÚõŽ;¬)$Å®EF Å@ˆ¢!¡XéA™ÓX“1ªSýàçƒýúëÓƒ‡?‹ý“W¯NÙ(ÅŠÚ§+ 8X ¥s“N_Ý'¿–É®fÒÙä): r …Çx³XQVñ‘© ¶f¢Â[¿ ñÈ¥ã [ RO6týûn¿lßÀRB0´aMš>‡¯õY3î ,R°ÜÔé½Dû¯ , Ú¤Š“áÍÛÇ&+:!Ž TzÉú~m‹ÚB±}°Œg8’à©81ÒP±éÇþ‘/8·ö¨ß{ùãÞéšî‚PÖýΈï²È?^ý(†òHEcíEìI­ sKÍ1íû‡ $ÃSŠ{­ Éí{ xøƒ¡M"S‚fÖ ƒÇ—æôzvÛáHj°íÈ2U‰ˆSþí芊Ã`q]Ný¼¦ÉT¡Ä&4Ã¥ûZ7½ÉÅ©È<“NëX¯[)™ìÆÑÆ,K§SÙÕIíÜŸ«âEÕò$l`v\!D7PHÕĺ©Åˆ¢š‘\“"Ñ«jù33HÎ,þåªWßnٞNj-¶^°Ïã]®T ·Yå/Œ*´»ø6ïW!ðY‡ð }¬ÛIM¬sHMЖ–Ìù|f|ᣎï ;p(Ö~íC\ð¸Þh·ën?’(F>Sõ ·‘æÿ;Tàxd_BÌ6à+3À†dsÄ”‹5‡Â¡µ»A/|F Å€+‡µŒ'ß¶)`-Uå°r·ÝMÙ£ÄM˜Ôï-l# ²©Ó)Ü##,˜Ï¤5}øìŒüQžèW k Èí™U˜…n;|?Ñ–Àý[ wK6¾è‚‘K>”ôÆ ‹1á9"â˜Ê¨« Õ+Q•·U²V“QIQžØ¸Ø*¡ÌŒÇD@gåˆ:xäéxÛFÑ*j0™t5_u°!¢^o ºcÿ_€vB½…µo8þm*'Çom}'¤É/kf¤ßYµ?f.Ðj4F8œ Xqozø<âçÕtÛ\L "[]Z1ë&žlWÜÜbø1CYbP×…êä@ºí¶§CP½ç0b©ÛBßøkÄjç1—‡s€r Ûó×/ÐW›ŒæèŒJd” µî%µvB÷J}X‹TÄO ð;õÂó³)JMˆ¾ÑæÊ7–€ÏK5ßyêàaÙŸñ¹€\%Á¯<ŽëH}Žs0=cœÒéP^qQÐÝÎú}:Ö·usîîÛK¼Ÿ ïõ0&"~€b¦˜ïω$Ø7(ùÛÆJNÿ Yþ·'††„M môy |©íÆ/ù-º&Ù î[Káô¬–Âéÿ–pzwHðÞg 2aò4XÀôû,e ‹ Æ|ˆ“`QáÁhC @„¨’!"@85H —»ÂD›‡8ç'BŸuàQ–žù 9Œ)PaPÌøÀ£x'x4ޅوŒI–~àñ)³CŽ]Ò¯¨VèFø¿«ßø§¾Æ ÞhùpŒ—Yßq_ø%ü„4# ¦i;Býäaòäwþ]zűÚýZú Q¿ôó’zâN¼²ÑK7pë´úõ+R=Ò™-[”Ÿÿ°÷ãAýùÑ‹ýã:êjè¢bÝÕ\wwã<аÅQ¬ÿûŸÔêJÊp?c–å£~c¤+F†S¡Þ”ï×W6©º4”¾½ˆªþá=_Êv#wtsˆ\$N·/¬Du\é´®ãŽ[ ‹ƒo/‰Øx‡kwåÛÜîƒþ»ïÖÇ"Îî–ú‚ê”òÛ6gÃw½±G3@s(°¡ï"xƒ[ÑÑyasÇDÈ.Uz<ÒÊñ‡åoK¨0­5ç¥O÷-MèÊÕw ß$´ès1Ií §çGÏë/NžíVªa= RÏøëÊJ€„:hûs??2òÆç¨Üñ¤ˆ„ª¬jïOèªýVka˜öþóKýä´~|òJ2X<:‘ÔÐE¬ÆAáÁ\ÖøÒÎbÈ=ƒ®ß{¶t#ŒÿQ‘»f›.Äo8õ ¦D[cÐ˾St~ëuïù,R˜è|&ºÈÚ¥s Sš¼ŒJx%s S¹%ç{`dáÁŽü¡Î\ÁåÎ{Çsš°ªG·»WN»m“êÎmš®IHã «Ø6ŠP0ê V]†èÞ’$KÞzn{M·ëIwMZˆ’iƒ$õòøÍ~½Ž›ÅÚÚšþswW<\§òÓ«Ãcho]|‡ ëhHꇟPȾ;ÄdàÛaÔïñÈ®××Öüö­YRÐZ_¹KuE ó%ˆ=Ú&XEùRKoBHº(°¨|6ÍÅ÷1I"˜Yín«ë7iS>™âI _ æª(,AªþþG{?ïøóÓV\³6ãÉ'(­Õ, 5á~+Ä1QIèÛ>ÃßjÏùÞØ(36üZñ{ì3Ù’…Ðþé–® |³jw¡ Ïizk•ª"Þ!3걎å˜äê-ÑlƒönŠú»o÷qš5ëñï®Ê¤ÌÏàOŒ¼YäTÿˆn«ã^;C±¥hŽ=•ï±,t°†úM·cžŽýGSËž‚Ù(èÇãÉ‘‚"'ŽX V&“«8Æ ·I0§Ÿ\èP³FTM¤¸‹ìʬÐû¢jßQš€_ùV¶ô³ˆ¹Jïl)í.¥Ý¥´»”v—ÒîRÚ]J»‹,íª}r¡7-gªì«2ÎFö¹eHÂ3“…e‰Ù"±AHòÖAÝ|û×Ì[g¾œMôZÍ·¸þ›~ Ü¡G¯¹©&<%`¤>öÝõ8cƒ˜,*.g²iB®¢e'dÕ@ c2ƒäú„¬!Œj%Xkd((·^»Ãô_ÓŸ+ˆÇ€œ?k@°+MÜ'‰ ᳃o^wv~zøš(øWQþ‘=Œ)oº&öQwî èÐícÑì bèK±/Ó§rÛnŽ/­ƒ@æÄŒã>‹˜wâ “,¼6å'ê)yQlzQF+{8b¹à±æ4z,—Ö1-ƒ¤‰K×mÃDOà…X3š€9IÌcAFš£Ž¯ñÝz6ñé6gŸ„D‰‰Ù÷Ý0wþbžÆ*Ù;³/dÒu_À}æ”}¾_côVe“ˆOâž .Õiè›6?¦O2#õ f³"6Dg ¸ht½È“=°ú§èÝbØmBd‹#P7>ÓÃ"Ú­#ÓIú#3o¨3Ìgåh+ˆƒ:ÊI_ìþ¼±ß–—:ÆGTÍ C:¦$gƒFËÞÔŽÓÑ÷[ƒ9à,â(¯÷+ñ8ÒpnÊu¸¬ Z6šU7¤ òœî¡GÒ ô [¤rë#füùWM湷뇘zªSdÊQ¹Ê¹ ¿>Rý*apbiF,ƒkÆhç&»†uöl²YÄß¡Ãë2b¶2„Ö’/ô×&ÐlÞb$…•••U5Œ¨ÕÑ¡“¨wÅs:×$«]#¯÷~øhs#3«ì7!]S„˜øÂŠ)ñFØ9}b×ÐÜ€ÿµ-¥}#Κ‰¡òãä«<4BK<’:ËõZ0­ïPÞÐú^¯ï`åѽ¢CY-!ms$Plºe#ì´å…î[È%Ó÷züÁ!’ªz¶(t¾þÜmá/­Áœ„V0)Ñw¾Ç´}ô[Ü—÷äZ %r • ¬¤ÅùÜ8-§(+} áIÚ#š³¾›¿ìw¥ÒLðk¡°¿O"?‚ö ê!Olê§ù‘4»èÊ·./0 Â"ÕžiQf„sØÆí›¢·ÛoÙOUaZ=ªøæì þjïðøþpÊá»abhͨ‚cVñ—½ý}‹ ¬é.‰ò­‰d“¯æ"ýN¥¬Ž]h%L%V˜eTº2$-$š‚TdÇ¡ž1Þü‘»©GíDÌzhùã:ÂiÞn‹ÐFºÎœq"XÏ jœOä>>ÕŒ[3u”â"B)~Ô›ßýýnŠÕjI~‘Šðå"Zɱ&PñÖDRkVžž×<8=;<9Þ ’K¯À㽊Z©dïôÛN«1Ñg8¶9Ì3Þâ´ð®ïn 4è¸æRuw3ÚwûïmŽC(F×®:õ/=é×H2h³3šf¯™'Š‚b¡áª‡·l™[fö`t¦+›Ôs¹§p ÀìG5“XqFŽ%Kň­ÊÖvåqyødëŸ:W‹k-cIJbðàÁƒ-øw~>~Y àþôuíÛp´´­+Ñ“ȵøÓºbÐhËø^w<,°·KO¢ˆW}èþ›äHS§Âk+ÚÁõ½Ý 5gBKÎB˜+’&_míWš}µõêj[ÿ©^–S×ø‡éÿ#3ÔÖÿSýσIrÜ%Û„yyEUî¢ØCÏtýwÿC¿Ä¬TÙI7ŸIVˆýüLõ! ¤ƒ¿ñÍŸ-¯zÃïSQ#}Å<ûT%ä¨îlýa]ÔÞØ€¬˜*án!kK;4+)? tU°?èB:Ž ð´Ó¯óÃFñ{aýâŽÙCH`ƒ+/‡6 ä<á)ј…OÙC+»m»bö¡Íºè Ó¿þ“{øiïôøðøåSÞ7wzèÝú%§ìLÛ;þÖù÷uмߑÿ üQp8Juºö€ÿÚö䃺µxé8Cž²Ûð$3b6 Žø.¾v˘‰¾þ1™`ïZÃK8. ÿÃö¸×»*ï–w‹ÛS\cå‹’C†ì¢È’ìcHæèàçéCòpñEÙ ÷]NE?_6w* œ|•y‹ ýVaÆ ö{Y?|q¶[„ÿìú ÖÏ^ïh=ôÀ†#H©<|Dlð\%sºá_wÙ…œègŸ%À²TòD#]ïc‚ÝÇù’}[F7’Ø'èRªª÷‹gSÜô’š[”šsZÀÖ‹+µHùôò)¬Ÿwb›—A›Ý¼ÑHŸÉ(«X­b°š…äQŸ\î¤i‚ùÍ¿wŸõµ/B@A„3‚º‡û…ˆB(ñ¾Ñ½A¯ý¿‰ªõx‘7¸0ÙÅâ†I°¢_"I2’„úmî %P¿bBÅ 9æÊähœC!Ø 'þø,:D†^ÄÓ›€l:¹X§â‰rhÿ1v†FàÚ·T2E¼< PÜáçuAM`Môìü mT–™)NO˜6èôD~Kpz¢rD,IMô;Ã6WYæþõåÓI…:Òú|uð þ[ÊÈ”H¹7„šò##r¶…‰C‘“Z£òÜ¥9ÿ>;?xõ:¶=ˆ“PÜd›¸{áwÀf]g]7NåÊÂÃR†uïê¢l±$ï¹}×»fÛh2éR-Þ3U$ëºRÉÃ!µ,ê–šuS+†2Ö¨[èeÚèTf­_;ý‡Û»[;rÅë'Sî-½Š~:<~¸]??}s°«ÿz±wtv°[Z-)80ˆðkŽ ÃîûØúa¢\æ;û²^4éøÒyo÷+Æuòy³¯¨Ø+:Ô~ d* Ú-†2ìˆì*4½`¤È].ç)¶í¶¼ôb‘"w±Hœ§X:O—>>âñ9µD\×Ĺ+Ê—kÚu»eù˜–>ùº]e±{ ê,ª"Ær7º_n`;½5„„ý&ˆ@]ûSÔç¶ÏHÐ÷™ÅŠù~òn€v)â'‹ø>›;ߨ]1¶Ò…Ìù1Å–1s¯W¤¿Q¬7  õ…IÄõÀ>7oEÛØý¶Ýo¥«DÄÒGWþÛ?p†@b×À›n͇˜ Öƒo`@±Ù)|‚ùøÑxzøB4{Þå®uÑ‚ùùÁ¶`‚~ªò¾ìQj¥©è~ûz<Õ¹¨ˆ•È<üh*óB[°Pþí·(coÜõŸÂ†ˆŽ ¿J£Ž òÛ?`9¶È7+¾Ó…;.ð Ô…8à¥:îJ쪇rn*OåôRxÕ€®„¬oÿؤ 5ˆ±½Fи´™=aÒÛ>¾#²6)´¹ú[²çSÇø~*TÎlëéUOöž¿:¨ôÚÔ EDUù̘±ÈáÎ=Éæ"úŸð|UÑ%ˆMŽ@!†‘Ù“®M_õ!#qÅ?Ýp- FÖœî+à)'t0 ^ ùhFÇ{ÏŽê?î½<=<~®=áï‘PlF> ÅçMª‚ÇZŸÅÞÙÞq¸Jô-©:~†@UŒ–·0>šírñð=¾®\M¦)‹­uÈüÀ«ÅWBVä“)º9|ànm²»ú øã=·Ræ/ðÁ&e®_`ø¹ý`•"Áa¨»d.:ô[A0Œ”·BâÛFEJqC»¢'ņ¸ì€¾ÑšMú#¾¡\'ïéoM=ÿÅywAáH“ð8–ŽÖl.˜"„ªƒÂwf‰¥kÐ⛪ÂTR‹ã5F£ÛŒó#¥Ñá=SM?ù- ý5SfÎ5ºc%·r'[ßûº%}«¯Èí ê„»›e‰mf++dû.Z5-´f_Y±,´B‡_È”“v!}C_:(¬:ý±Í_ÊÝ I¿áS—»š'%‘õøÊ ×JzÉj ve¥ªkQ}f >©£é¸ïx£vôN‰;oíÁúÝÏoyÄ_×VÌJ’Hü\wIÎÎO_Ÿ¾:H–ItSÒ„E´ÐRI`ÎO*–˜k!°ë„ÅLt•C’‰Ù”¿K4‰í×¥l’[6Ñ(#œèU;+餓O:éä”N:÷(t–ÒÉôÒIÇ”N>›€ÒÉ# tæH@é$ (™ (ÜJg"¥+ t2”Î,”™J'€ÒùoP:wP:IJgñ”N‚€Òù J´_—Ê$J'E@éÌN@AN—½ ñ„‰²„¦ºÑ„9/“)îºÏòpÃE§Ê"’d$Y“ˆÂßï.…Èu–)ƒ0]> D­]+²T’¤•ã²Ê/ü¡ä!&w0ÉBKÆÜžTæðç|`›–ŸGÞI~3þ.Y#¦?—’FnIC"BŒœ!WéL¤ŒËr«3ä E–%i(ºû5若1…´¡:oí3]€¨òS…M4b‡®KDðP)w=ôâË>e>ñÃ_ÔVÌúIAü\wB^¾B1¤~š,†è¦¤ "Šh¡E‘ÀœŸT1×B`× ‹#è*‡D³)—PÛ¯K±$·X¢Q"F0Ñ«v†¢I.Á$ŸXrBÉR$™Z$ù, \tYd~$‘$9dVRH^d $NþH—>f {dI9äŽÿ©ã2G‚ıpòF¼´ñ÷ËKIã.’F²œ1)­ü»¹î@ Ê,yà ½¡Ã`¿”<¦<Œþû\÷!FRÅ“nd³:ÄH¼»Tb®ËLÑÄ Î'ŸV½¿´’$•@Þ;ˆ+èÇè(ë¶ÄlYšàbÐ-´ô^“Š0¡õÌ´ÅfÌZ‡$šPƒþ.±&©—²MnÙÆÄÇ\ͳ•ròÊ8¹%œ{•o–ÒÍ]¤›Ïrµ¢KÏ'ÖÌ•P“"ÒÌP ™@œ™P˜Ie2™Ùˆ19„˜|"̇s7ñ%YxYDÑ%Qpù,bËRh¹£Ð’*²ÌèñÇ!3·Ó;áŒ>¤™Aí½<ü—ÂË4BF~6]£éoD&á2úDß‹ŒÔ¼™ 4ûíÈ Îù‚+a%¾&rßåMéàe›“Ï÷R<¡š—ú¾d.´˜Y#¿5…ÖNð©ÆL\y'PíðëS¨IÛTR?/Ÿü/Q&šÄ½G™«Ú‚׳{M{2TcÌV´õðYËít4Ø1}‰ên’D÷Ñ(Lã{ä÷QIJàþûòÕyýäÅ‹ø8*“4µ^ÏÑØú š[¿Cƒë™MN $<]Ð.ºá•%as‡6òìèxUÑ4éßv¥ ù¨‡^™ZdW\ßÙ·õü6ʺlŒfÈߣ9îCˆ–2½(/yý/ô²©Q™>ÚŸkÇoŽŽ6þ÷3È÷Ñú¤Jù1äs ëÇÔ*"ñGiî.÷ǬòLé?š'ß Q¬Ô…štˆãt‡SÁëó0Jlýß¿Ô÷á·ó”ËϘƧ¢ä }NHXk“žâ×`@ÀŽ!Yœ“CLåCç‡øæý]§ˆŒþ_ž%rŸ%b(æDƒƹb6ršÛoå•Ð4¯l†´÷)•!ÿ¥<6 y {r>$1¬I.ŒçHú¢ú$Ê]˜:;‰‹ÖknY ©'“²âPŸKN—¬8÷ dª“ãýÒ5/…„ÿ”^#ÓÊNjíÄŠ”¸xòU;ARRMú»e¤H?/¥£‰¥#B“¹ˆVõÌ$"¯nœQV8g"Ê’‚˜ê>äæ¼”|rH>Þ¨ ¥DîµÏ$ìpé©bŽ$™GÖ$"Úð÷» 5rÉeŠ3L—OQËØŠ¬š$áE布زw~ðóáy²À"&ª0ÉB )ÆÜžT<ñç|`—ŸG$‘ #~3þ.1$¦?—HnD"BŒè!Wi1„rJ¦»-|m »¥âþë×ÿóâhïåY‰¾S`_ÓöE¹©”æSEÀÛBYqÿ‘ùÜ8T²*=OàI•לe¥†õËþxWÂbð+6oJ‘ªåzØ÷ån– Kƒ2I¸Â™Û«#át‚UCíÈÈ—•¨7 <ÄPºPc;Y¿Ÿ¼‡Úy¤Ñ¿/aü@±‡}Xƒ¡;rG·[Œýß»NhP»Ã nÞo;)ÚpÓn5Æð!î9—Wð߯¨u…mW’ ±qAdÁ"0ssìtG¸sBµ¨œ‘‡¡ˆÇ=¸øE_»ãn[x#§ÛÁ {«#ÃCCD¦rwìáÿ ÐN¨·°ö-ø*G·¶¾²d½têå¬ðˆ†7Ò‚‘àg+.ñ¤‰ŸLw‰rìW?!¼q q^Ë3&MTÕ›˜*‚àhÝI Nœ~ßB* /ñ4O¯òêUnD½ZBê|AêU:¦^ݨ^¥¡êÕ‚ÃêU&®^åÖ«i‘õj ­ó ­ÆÿÎ…¬>e°áWçW=BÒ$XU©³EUàšª˜¶À˜ ÕO‡TIЍD3 âh-ñt¾ñ4¯¨jf#êRT3HMUuòÌA5YT¥ÄÅ†Õ QUQdët¢*ÙZçZGþvNh5H3 )—Ð:GÐJC— ­:y¶ÐŠl¡•Z±þéЪ(R¡•‰¦€V³%´Î7´æGÖÜÀºÄÕùÂÕtX½TMÕÇÔLH̓¨ÓêOçOóÞ¤Ùˆº¼˜3HM»ÐÉ3Õä[J\lX͸PYÀ:Ý-ÙZçZ[Íá(²”éÀŠ„K\\¥K„U:STE®I Ji‹‹©XýTHUiˆÊ4“*ÖOçOm§›O}Ê <Â%žÎžâÀ%ã©J-ž×D<Å´ÆS¨~:žJ‚T<%š)ðGk‰§sŒ§îàÖs.s^§†¨3pU/±uްU `2¾š³ÅXÉ9gUúc­lB:ÞD©˜«é¦À]5ŠKìgìÍiv•×êjit5g`›bsu/&W)W‹mp•eo•ÃÜjJk«¥±Õ܃hΧ«Ü¦VKK«¹ÃÑ”w«û±³J3³Zp+«L#«<6VÓšX--¬æOÛC»—O Êto6{¯_Ô÷÷ëõŠàúè ß,½1 ¯øª’PîHünlÈWW{ÜëÝîpBÂR’¬bWSaeUìãÐIwñ#Ø=¨F¹1„ ¸Óm\zЈÃ VÕ¯è¸ßµ=óãpÃöÿ‰®Ý€3ºvMÜÉЀPB¥°Ç¶W)¬@5‘j—~ í÷ðVþºv9Š ƒÉbߎh»ÐxµRË}ÞW•l&uM«á1DK®²#ï¿~ûÃÍ×OêOÁ/ƒA‹ÿûäѺ!ÍûOæ¶ÄÇr—ò?íòX„.{E¨&ª$Í—&-Df­ìdLnÂr~§3n¨_wxÔm¯Ñ¢_üÖÁM”ª„õ»¡A1{FåÂïðøKöm·oO ­‘aö_1ÒP¨‘\ >šš Õ»õªƒÆ°Ñƒ…ǰê‘Løì—óƒúÉéóƒSØ\ZC·"3Îd­ö[Ý1H³ßbá¸Ð é;µ‰²fœ’aÉ‹/ÄWºmVøÿúëáËúÁñóýcØ“V¸#ùèðüÐBR@BKBî@.=‰›îåØ²×©Ï¼(°ä–cÓeÁ¢íâ +<Iµ#8#Ý68õÇÈmîàà>Gp%eôâÐèï/vúbo#Â<–]ŠÜM€žMWF!r00'?DºtË]"Èô«þۮӃÌ^ôõàZ€ùR7¦Ïš]¹¬lŠ3·Û:Þú½ ®SŽÕª-ì:ůõ b2ÊÁBüõ)Ί@ÂÊJ,¾­,«P;H‚UÝtáTçð€ïᎄÎ;»KpÕ ìþ¦hŽG°Ë¸‹ñ¾-AÒW‚GøyW`” =|Ád¹yyuHhŒ»£Ðü“õ{PÙk[tѨ‹w Æ–õ½/h ›Žçöÿq6²íÿÏÞ»¿µml ÃïoïýSáD˜`Ó4mM݆IÙåv€´Ù;N°¸±-Dz4áûÛ¿u›ÑŒ,;&ÝïÞçœgçi±4šYs_³f] R% n‰Œæ¶×K‹; gÖ?3ÏÛoÒîŸqr¡–u–ò[åNMôã$ì!÷M¿ê͇ª½Å}#¹Þ-£É`ÁÕÌuš¥·ÊüâÐLØŠºì'ƒ0õu~N?,=äõÍ])çqÔ/<½l ~)ãÛÙj…¼ï\bˆe¼ŠÜù ëli›TæÓ¹˜õ¸»³³ÓÚßzúÝ»)¾ãƆÀ$ŸñÝÚwßNAP„áR$€+Ä;ªô“òå;r“¸H —N†C8l⎟­õ x~e&XÂL rE˜%ÿ°CÂÝÒ„n¥‚¬¨J2è^NF“~¤®£T]BCa&x(}ÄL-“éqï[¯µ¬16’›{Céµí¦ë…íy˜Ôb–Vƒ_„›ÕðP¬Õ±ÊÀFñl‰ˆ ÒÇ‹éÍ ÉIDHl#ð}áù惮Ë×<4úô™: Ä.sË@‘ÐM£[O®Ÿ86rªËàY™íñò+»ù鹫 föóeLW+{Ó…zÝs]ÀcêY~¬nåšIýšn&£Û†‹zx°ûòÕñ«ýM8ÎGÑèvUÅ]¾f Tu’ŽðH¸&¦é(~t1l '7kªdõÝtoj%›=Ÿ²uüGSì,ÛèŒ[®(½å›Þ…W¾¯>²ZéÕ™§‘;K¥`] IzÖ®ós0Kšš}FwùÓÓÇeM¢;ì¦Ó,å 6i¼}Xöiòe’3 _–¤ð˜òÙYq¡yÒ{*aû(ÊÇjþ#Í¿Ÿ4ߙљrý©\ÿD ÿÔ )÷OgûŸ*ûŸêÉE€Â¼³µ ²OU IïIZ EÔíˆï½&[q:È ò¿‚…‹B;:x ôy¦mùW(ŸÉẅNLü·ð:”’cw&T¿ážÂ}‹ûtµßE—qGeˆ}zÖ¨–¿ðéÆîĽÎ`輪D¸€XKGpµÝUûIgÒ‹ÓªÉZÅYÇç8ŒÚ¾*×)Êb6,øâ;Åâbn9Uù­·Z £ñÕjé#L?f5ÀÒ ¾§pšË“š⛥6GÙÀ,ß¼®A6ª†º°(DjGFQØ$¢,u€ðùé0LÅç¯v÷¶[†j¿Úi¤¿ØÜ;ÙiKÆ}…ñû¬²Ô¸ç¯¶÷vŽ¡åç܃­v¿ãc›Iç§¿…lFÞ\ŠÚÞÅøÙ IàG:E4,©Ó«nJœJäpD*½ŠaY§íQw8†.ã©‹ER9ÞhçãÑf–€À¡KÞŽá8#¼ôˆ¾¾J,v plìh[ä<_ÇñÀÁ¦t@št™®#ߤPûpŒçV¥Â‰j`è-Ùbü4¾˜ô°9 ¦Üõ_ 0JŽáPLMn“ J„ƒ1€¹ŽàL"à]WéK?ºÅh«ÉâvÄ€ÐC™Û¢‚К6èÝ.¸…ŽŒIÕ„‡Qú‚ âµ àx¤aÝÅŒ_¥cŒðŠƒšírªñŒ±l<øÐºH’@}ˆF]T©HÕ2Üß°0jñ¸ ×3˜Iö„iž ù5®á%ÕK"bpõܯÊ8­PÑ]Á×`¢ÝkÇDÀŒ‹¤×K®3æwh4hQÅV†k>X2×£î˜kÕ£Ñï¦|²À¬Å×=’…©ÂWq×bb®!„AÒè]Ä¡Ähuâbëö‡Ø¼tã@¬Ò*Š/.ºí.Ì®Œ“d•à`W²ñ’U€mÒÕcæW½ñ¨{«ïÃÔj\þ e¤Dh‰F°TpP`=waÞà†£ø¡w‹íÆBéj­ TVo.¿‰*nVþÑz+k•ï[oWšåF¸RmÖªÃàŒtIÉÒ­„€öÍR‰Á‹6ðf0‡aȨ:k½;Í´°3ެŒ×ÍJyñû·ÍãƒÝƒ—u=;¸Ùª‘ž¤Y'õ—AZ߸#¦ ý#ÎÊgzØ‚‘ß}qiLÊKþ=ß<ù¹µyüòWøLÏ'‡¯Ž·vÊ<æ®á¡Ár>oðÖïùê7i,)²À¯½4ìÉÄFž-¨ˆ”¸¨`C™¬gE³lò6 — hÀ3(|•PìûI2&ž¥¬zDöQ§Ãéi2N`ð+ôj`—›ñ„\6RÕ„x—JàiU6NÇ|“/ZZ'+¾é=ðÓjP °pT/‰‘‹ÛöA »Üµ¢Þ`ÒKë1ŸÖ„mYC|¨6›µZªCM³dÓ3Õî^ÖoXÄåèÒÉv«ŽOv_Ó`tV~3c’ë„_ý}‘¶6ìf™y—)NåyezA¨g¬þžÕs¼ s:œ{½Xvºª[ÏŒ@~o¾Àqyóñî-ŒN¹TÕÃfÍæ¢ÐÿQUC5LÁA0¼X¼Ñ\¿“u(G{o?¨=‡RX|'ÆWÁb‰pÕjJwC metØ®]–(Ø"ñì:èVb ûŽìxa6v":Ú¸µNŸj~‰ìÚ [ýßìlZC¯rUØçšc"#èäÑØ„GÏFxY&é!bpÚOõÒìèàkºï@/•Ô£GY®ü7·6*¤ýö9è¤h!jÑ  Ó¡…§Ž¨E=“žö¬ŸºèLÞ O¬+ùÓ{ÀÓËs8²ý†.‡;¨õÆIÄÁöb‹“€ÖØ‹‘õ.VñÍŸ›¸-_CÓJt[é ô‘Ÿî¢áFÑ ò£oóÝoï¼8ABéhh­ (îձܨÄYº¾Âe„ULhtô…èú“Zy&) e ˜òÚ}L”Ó+|ç'@ rUðaªn_›¼K‰„bÅ#"‘ÞÆáÒì·´¼Êèä:Œ|<&Áø|K¡uX¿R‡H _wÓx•è„yá‘´”hQ<‘.tÁ‡xUãûM#ðê}\‚œ:¥êGOx*]…Cl°ºê©sÅï<©I^}ó@½]Y¢¿|)ÆGzEŒû@-¿å¿+ðV~»Rn–å#"áje›põÒ“ƒ{Qù|HçÈKõê,d>ûÿ–J¿?ZY.¼k6?mpDû?üøÓ[èô#(˜V›o²G+µT-•àég¯ŽK½—ÞÀ¯‚ï†0B‡«°q¦Ó’dßZ¯g|QîuÏ“ó?Ò=ÍÛ+¸b3yÝEdW'سGãg‡ÏÿFš×6c«Kû¦Ž› Éî`“NP-TÇ|5ÄUƒlYZ±LÊ”^!zh²p«p‰G½^Ü ™ªvýU3¬†Õ x “RUÎÿ€Ç€3wm ‡4ˆ¯vßϨMë!ì¬xˆLpäš<ÿÛöî1,áßp•O°LÆ "޵°¶–å$J™‹ž÷²)øŽ“ŒnE¾ÃeNDá)%%yâuSI²Iz•Í‚òU³ôÑÔvG}°8»~Qéñ¼ò~zIà5lM#áL)éy{§ÒbN›_`¯D[þ2Ä£Qó\pàr£]Rd]ÝçbîÇ‘ÍXôo~+íÅñ°5ìvJfIýŒ2ëh4 ]–èõ F1­…£ÝmMš^G]¼uX`€Ü2Ä‘gÛ{³ËqVò¨Nã®8Ùy½³óú4ë´¨Åi†Ýf%MqÚòÙ™É6U‚økŽõÃÇÍýí#*”.ìô©OTòÎjYNzÕéâ‰×¹¦Oeš>sŽã0›¢…z¯Ò  ‚[fÁôc8æhƒñi‚ù‰•Ô|HÞÅÄÓ`{·¡«W½p;½ˆ[1ÜÚ*å~rÊþË;·¿¹{p ÿï·ö·wŠ»—Ït¿æJÿgþþ™ûm÷àëõâNñ§ûu†ÊüË;±s°ù|o§õëæÞËã݃íâîä3ݯc¹Òÿ®.nžlÌíeø¢®aÉW·^=ÿ\¿8ÇuŒŠþ»zörëð×¹£ _Ô/,ùïêÖöáÖÉÜnQ†/ê–üwukçøøð¸µ{ð·­ÓÝÃù+2Ÿ÷‹:›òoC+{{­“ÓÍÓÝçÛt¶/C1¦ü¿¼£EÒÞ©nÊ}îd®ô¿ ‹^[½uxðb÷% ì«“FXuD w>^²IhTF·×X#Iujf±4)Þ°.N–˜Ë#Âì,A•œJý{\×àêM̧„ܼ9Ù‘w¹œ®‘\ÝÍJú7'¨˜ö‰$DVþš·ô•*ü¼³·ç-©—æÊw~«¸~d‰O™\–…ÀÔ(æ/´'#²0×ÂhÌÜ1må4Rp³NH§¬3i3ps{\Õ‚qd{tâóÉå%ôÕH±)G—D°2§½äofp+Œoº)ò²<*Ö •?šµ´%rk'-…¶ Æ’äQ—Íléà{…Gâ΋oPr«x\xìx`§G¶9gh—T¥àŸZZÂOûOÒ+µ;è¢ñ÷O5ù4« ËsØ(¨‰ö<™Œ쳊ž÷boûÕæÞ´¥QÛPÒ~¤–hx÷9Qé•çÜk?þãäçÖ¯;Ç'€zEœa9îOz8ÁéUy–¤yÛ&¼¼ÚÛÛÚßn°]ÚÑ(®< וèZ‘‚Æ? Ã’—wT:D[ \ÖÉ@•>Öû¥gþݪ".)Aè²4µyqÍAa© '¥¶»)1´yQÂJ$M@N½. Ê¥ Ä ào@â¨q2«ƒÃÖ˽Ãç­ ŠN3{•4fQ¶ª$e›Å@âHTüA‰ÀÊ0I»7+eê=AD¯Y”ˆR“Mg@ÁÉH©‡D™À ôú¢â9w4°ìü(E=1³Uß’*sõ¼;¨±ÄEè ¶hØñ_ð/05jDõ¹ß{0i]ÄÈÑ~‡šÄÊ×j«¨ABÚ°7FYGDÛR⪒a3JÝñò˜à„‹¶±pâÏa˜QIåÏô*tÏL’—Ëî(Y;ÅEOÜ*Ì}}F P4x0'Á¹€x­_}geÙg*O¢"ÈÒ[ƒìË€>‘³ ·â õ0ýKÕ"€æ ¨ZübYFfùúl™Vã¤}^¥ Ð ü§ët÷·Çúlóu}çIç¶ÚÁd¿Tcµ?pÊ@óy[èVöÞ§æ+ ^k¡{°UD¤zÑè²QªiµQe]Úøä…¾´‡º2ÈçV'y6¼ö,Ÿ/\á ¦ug޾…yžÞg\•ŽÒ­¡ÜÇ ûX]Í+l t$èfÒOK7]PȬ¬âDÖË`Dº~½kTT¡ »ct´yúsëdçhóxóôðXΩ¯,ë ¨ÔÍCÇÐ2¦Á Œ¹‚ õ‚’JøwCqóêSGîë4 „ú½ |ú$S”kV°cwÇÂjíÀßß³ŽÂCTqYUãèœD5ƒøZ!õ¸ŠKl4M7%SOäΓ›'8 ÿk’ŒÙÛ“§ÝÁa‰þe&C½Àd$VàH+ôD¹ŒÙíT_ªCrmy÷B-Ó¢ÿ¶¹÷‹ºFhm±xuŒHhé/¶ èÈYLŽv–¬s¨<ÈIXZ÷‡ã[V¥ Ë$6Ðå^ PúEº¶«×äÝú·‡bMÑRCm^ö&¥§Pý.¥1º£uÒ®·0Z 7êšÙ¦t@¿i6«oWTYe! í±J$¥\lb þl(zr§’ui ê'§IøÕ#u6ÊlÁ€$Ë• *‹,éà#“£ZZÓ™tÍLg'E¢k5U£K}Ð ët;¬+Žc ÔÀü§«@N² ‚s˜Æ[[švÔòZê øÖáþþæÁv`º&Ðûñ$P˜Ýó˜ÕÐíÙ #Ý[ÚÇ™ûÒ*ú%Y)S"wG¢¯u¶‹AM»é%Ú¥U–0B·ÎÓ¤7‹¾ã ê³Òa3XÖ5AL¯Há-Sͤm]%*Ú°-WÔ»‡{HÊÎQÐãÕîÃÊ×ášzõÛî1eXÑÏ'c Ã*ƒFdÈz¸Æ¶òáFÁ òq_M†,MQ7¸UþI|‰¢|º6(¶î‚»tŠ2£¨)X^`§À.EÜXõ’ˆ)¨J©ªoÂõ°ö$Ô‹Y4 ‰îÙ9øUáÿû›»{ôGV¸eBv¨#¤Œ‹£†ÔÒFjY« Rž²2}*ĹNfÌ[gáéÑI­”àô::Yo?ÒÓFðX‘VÈÁÞ‰L ڨ±·…L–Æ–&²ùÝÛÛw¥ÀJ@ü—‹¦lF¹¡—žeZÎ¥ŸètªMÍ"Â`'T*‚«yÐ\Žšå €¢ð4ñï¿æJÖà_ ‹„¨á†PŒ(¯×„4ÔÌÈÜÀ?V(YÜ¢J´lè†JEU I]»““m1˜qSuä?:[C?Xõ›onä¦sLgVÕæV½œn£]¹@hȯUµþ’ÕLg.ë(Ú]óñf÷ó’ŒTII4âUT4­¾ÅÿQ·t¥¨æ'´îP¯u¦×ÍåjµYžñ'ÒC{}šÚÚÄZM$ª¿ÃL»7¡æª¸"J«h-ÅÏïñçÿTeàlË¢yËÐùYÓ*ä«ê}p†„ñ&íéin’:ùÉÖܳÛc¸MGƒK$º#²éÁ}?¥`¶ï÷@²î휞îŸ4‚Ù¾àMVZr*)9p$k§{ÙCýkµõ¯Ÿ|óôÛï¾×@ÈtEƒØs@p!ÏÛÙúù°µÕPô{ ¿§Â@8ӜțL €ÿ¼Ê€ r¬LÁÍm³`6ä&´WÊRð ØØx°$¯l'8¸D9FtNŽhL‘ps[VJÚ0͘ü†5p=p}ûî;ºÍÁ”lî¾VOÃÚ™úQ9Ú‘øÏ®Þâ†GÍ–¾•A ™–@©$?a|ëG¼5g\òŽN†ígö© ?Tí¢²cóy ©ÿy)Y’£éÉœeêù¼bÞ6dí T%µ­»T”Ÿ¯@+6*ÇŒÒ%…Ê­ç|=‡Ûègû2Ãt¥uÉ—ÙÃÚ?ù;P­ä íŒë¦J¡l˜˜¥ ˆ0”òëeµý·—GGê¼þ?QWdÕ¯Ò[Ô½—n¼€EÁÈP×#$Fb^€‡©¶;à6à‚LÉĽÔ#ý'føxÖªÊð8àB³F*?aeM® Ãì4ƒ(ð‰Ïsqï‰è rŒüXì5q—Ù*æ¶C”Wpb~²(¼dÂ]‚ÃHÐ(61W[º³è0¾9s#0YM[̽D·2¬Âgè;c'|sadt¯Ë‰Ñìì»{sy‚µN±Fh?f'±ÜÀ:gà¶x9éÁ½™] Ô"\n7²ðk–’Ù ½çy/Yiˆ9[7@J°Î•§QP =*Ä|{Ä)Î*úÑý‡°6E‚v‚ŠŸ€ Åjˆ¨ãVói±Ð6º}¸âR›\zóáFúðÍï®]ôÃÖÃËÀ¿oKŒO»9éU®5‡óêôp0ÔS¸,ÍÒÊýÓJH(D#±,ÜçsºMÌÖ§“TS”¥ 7Sˆ‚»1rÛWý¤£ßä«Ã½×v¨æè\mi«\üH ßPSLD"«Úy ‰ù‘ ьʇ0!“³Dƨt2ŠY¤ÝOÈãrÇÅ™6Œ‘4·Æ‰ŠÇí0ǼBvIg.ðŠÄ¾SRvXÅ<Öv ÚÖð½ÌÑ ²ÇÉP¯Ãúq¼ý;U(Ìâ]Ú z/^©ÍÉ8ABǧߣ/™Á‡¤ S¯ßÇN!Ž ÃžtZÿf()ËñóÎæ6,s;‡$eyöv~ÉA¡¤,‡HO¬: ¹ã8¥gèœS-_%阎e˜Ô ŸÏƒ²{úÑn¨½?óü̱KæºÕö3‹zÅ÷| Ûz3•÷Ý‹ñ†Ê»,*­˜kÐÌÕ7oñ½èQ¡ë†'¸uPF 7¼ùn’|ý]¦ÐÍ¢A¸ï6a•HÒ§køM¯yÆ«-`ƒP H„÷ 1üCž1ùâqTÞ;Y6âyÇŒ÷I+÷‡«ñx˜Ö«ÕËîøjrBÆ*ºMzÑ úÇûj7MÇÿz€ª¯’>ê;àº3ÅtÞPÊw(õc˜íÚ{cÞ³Ü3½6êÒ­ht™êúaRU §Óê›fÓ÷›gÍZ·“}{pæ LíïÒo6±;.æªx6ë…¯­ªùçЪǎ˜ÍÑU7Kvó!§fxKª^jy 0ýZm]½ű:I.Æ×¸É_ :‰l‰ÝA;äóÒmÈžñŲ©”eŠYà<ôsÆÎóû]ìÅ0õ»†XkCÃVQ± ȵsTÁÝ DK÷â¬ùdÀ?¼î4‚?;#„~¼Ý˜Ñ½=H‘§ÀÛÿe{÷¸uIòx›¿ý¯ð7ðŒJvßé*‚_£ëwͳzfüôP_ž¸²\^4ïŒ%F¸·$æò¾ÝBEíâ#mÔ=f0·„Jxk¬õÄ'qÙž•ÊJã'ñT„6ô´25Çš¾çjÏÍ>™çìÑ<éùåüû«*O)KØxÅß`™»T&§ß'ýhžôƒüòÏ,Ø %š·Oò¤ä—ðoG€²áˆ:Z>ñƒüòiƒL.½Ù3ÉjÀ”,̯l!»-çÔy0íS+ÊSÌBR¨»NуDºê缯å¤ÏÍï« kEàë5áîqvžÍc"Ë ×”&š>ñþ^Íš¢,ÝÉyˆŽ!î“~_þ!52xbš‡ÒòæI?È/ÿØk^Ìh²iËÑa"Ü íR[¨¹èHæ\H§÷e]Á\ < ¾Ok22ûõIˆ>EQñÚÐ$”ªJ'U7†7øÀ‚Ï_{&û± „˜šBždÌozh ²õІñ‹—yÔ:Ø=­.Á’—ù?U˜½øåurCl}ŽË/¾§­ ~>ª¼zM¦CH¿‘DQ^Ò>”¼âγغ¬F™LÐ'¬JÖó$Qm<¾¿z(LI‹¼PµÈ/Ò‡n zB§”¹\Ó‰1îE·-Í.̲$Óº>8+¡ &ÊI§Ð';ÛÎPXmWëŸiX£øC·˜þ° ´xÀí$ÇË0'ýž°(z,J_Öæ‰`ódÁRÛ{{§‡‡{VQIY°<:Œzµd•—”Ë1Ž[Ò‰-:é~cˆîWZâ lz$í¯ Â剤@ÌpÙ‚|’Þ0,ð³3-X‹ `Þ,‹E¬¢ø³`ɼMá~Xr>[dºjAÊï%Wþ>õ'S•'‹ÖÌîéó°Rï'á^mH¦°p/ ‡½Žv¶,÷:uо.Xòåñ޽ññuÑ•›+ºs²/re_Ü£ìž=D{‹ŽÐÁ¾Uê`ѺZ6FÆ×…Ï« IвÔ9¬Lê‚pŒï? JæpAìJÑ_l„J –îE?<+¯“‡pr´~°çB ¤Å!ì­Ÿ¹(iqí­qÒ"´‚WWœ^A†ûB'Io.t'ÂÐG1&h]ô¢K ¤•z?8Pq: S„Ó‰‡½îy*Aƒúñø*±ûZôyAÈ40ýè¨wüÜ÷‡†ªäÅàðË‚ð0Fk Ï%/÷å^Ô †Bé‘·ç³3-JSÚ´Áæ¢ôÀæq‹CÃØe9iQÌÅôÔ¨…ß<Í5ýqÑòôx×Fô¾`Ùã̓½ÝçVaNX°tù0A· Dæ·QÑç{Bž >ÛÍpèš¶-€kZÛ%°¯í²Äê ™©òfçZ°ž­- ÜÖÖ¢¥òëvë>«V"?¬ò:iQŠÊiöË…ÛÍGDz›¶ØîûçpX »Ãxê$)Îök‚ã©Ý‰Û½jÓYÿz]”øŽ«’óþzÙBÝŽVÔé xzÁî:eþÙm àpÚßüý›c¿WËýz¼ (¹zí B…"t´¡ü©o‹·F`”$¹E"‰÷£ÐF“A;‚ôóî`š:³>.Š[Ïÿ ‰k†Q)aÁÒû›/w·Zè®*`ÒïªYèˆõ# BZâž(O0~.ë—Ö8tØ^EŸ¿òuoàë{`·ä¯nFŽ{­-\ѦØTŽEwÊ`ð8µQU–¸ðj;Ø}±srÚÊñ ôE9Ž'ßuºë°%iáûøÎöî©s'Ç„Eïå»G6× _åuæzx>)æ}ú$_úé“E×I÷ܽ‡s·…dΓpVêÂÜ"ÃÐÊŽ“4°èóý(~*‚Ã^Íï|þ~}‹"zómÎwû±ÓƒÏf^x¤Ühunᨅ҈#ó‡Ú¬,‹Þ(¯’^lä¢ fä¸'5Kö8Eië|ÿ‚{]Mñõ¼ †“çK똱hçæû‚Õ;cÕÞ7b@ëë¢ð¦Õ]ìäEûϹ[ã[‡÷g'/*ó™ ™•ºðí£%~ &ÌÊHn˜BiQ!ä©\‹ß·ˆI–[‘vòâÐ*…xni¼ÜÇEÇ!)jž•º0†a¡€§¼2Ná÷{àˆR‰/”vÌ•t|±”݈¥WypVêýà Ýë4L½ïi‘A[¹Ótúã¢+æ–Y½iŒ·ˆíŽüò™‘eá£Ö_Å›r«Ó³à8ÇÙÙ¾¬&æè¶ôfš__Aæ{SayyUîËý8^2t4=œô/Õ"o´3¶ØƒíB©«8ç÷t4TBÚ0w-×É‹®ði(÷„àí¢®„?¾ˆ<°¤m!_ÆÙÞy±ùj¹nª‹É ÍÁØÑж›JxP4‰d/<]òŽÃ:¼&ÀHéX¾u8ì‚G㯉ÌÕšgœÿ1ŽÇ'ßç„&ÞëèÙož{¶7bv†Éë­ØB >õaIQÁgó9«ïÈð Ǿä/9{ˆ¬<µK--)™Žabhøäª{Þ¬£5—Öfæb ÷ù&ê&q=ni2¯b³ª%µM¦ªE±]FeΡ`©ôɤäiu+Ù%·åƒÍõ¦8-ÊåtØûEßres5pÅ!Õâmgon–F¤ÚÜ|µ9òžëuáPX÷\Î3Hk³éáéÏäëÛ-R‰õÇi{ Ì™}ŸÞEva¢Ø\ ¡ÿnûÌ2æ ,c®€½)Åõ#âÀd—âŸé•¸2ŽÇ¶Õ´íŽ:™Œ(˜{y€/£dryeüž“ó hzr¡šÐžv4ŒS2A 0iÍ‚8i™ËÂÂÀbäˆ {y´¹õ ÆJòľ%$Ë'ïCÊñ>¿$ä3#(Ño€.iþ‚/ϵ27¾™%öCΕBšLY¨Ú–þ%¨Ñ>£ìƦœ÷Ôðón€”ɬ…[5µ*­óšÂûÑ»áe¥Éî9+ÊfÐ&[Þ473ûíØ?—'²ùÍ÷9pâQf†þ¼¨ÑšÑv³ X0æÇØöŽMF‡âz?À¤õ)Ñò„²Êá}âÅý7šÖ”[R¨ÈË?ÅÏ„õMõàNà -!ÇÑÕS¤9rŽó?¶üDDiÚ½`ÓÔyÌ1JÈ÷;z¨‚ ÷n1¤Z÷Ïh4еÿÙ“ÉàðD= káס69v ˜ÍvÑ1ì ‘ˆNÐ ×®3w®G—)z1Ì€aVÏ”Çóò3º ‹,÷7™-(Ž úºñ UpÝ`è#quC&F Æ$Æ-è‡þÖŒ˜}WÅQŠ“.#œQtÈŠ›à`Faè Ã.spªMÐOv=BùÙ¡çê¸?$—ëi‚ŽÞt”X2ǧ«çúg „}èÂÓˆnÂN—L¤MÌxŒe¥˜FG*íG‘aÐ,jâþÐ21tÝ…,¸¤ÏcE¡QãNà±ß3¬•»]Gºçñ™ÆC:ù÷B7·çq<õwÈ3m º„^I\9|b_‚ýaQþâ+ƃз€ ò$S(XÎUo œ;

ŸµE<ðÁÇBbGYÚ†ºC ^a÷µf*µ¢MÔUSëªöµª}ãÝa63ÔrŠFæqÛ[O˜Bz¦ggË“~”¾Skß~‹ è¿ÃÅHÍåH¶¯éŸŸ KIžã3–ØïNÙ#Š‡Û jÛoîCr¾&t%ÉeËÞÝçÝ_ïX¹À¼2U˜OpÀzCöEþz8’aÈtàØƒ„£+ÁrÐŽ†°l_œÖŒtØ)@è‰K‡+r¯À50IîˆÎrµ+¡«À=í³BŸóìbaÔ`ßÛ¯Å×{­‚æZí›à *?¨öí%l˜UŽä„ÛM5©poSggŽÛQü~B¤•‚Õßa06Ð9ïH¹\`Ùñš„Gá¾c3$øì;ª±ÿ2 9•À±°Š1L´ÑBDMê¦}ö>¬¹cnx.„ë†æ"ªŽ» „\ÐlŽšä[™=5D×ïh@Ð_‘ žï¼Ü=€ÍÆ|9?jŽÎ}u¨lùlùZÑýlho ¢]ÜÝ[qì*±%YÜû ÷‚P;ûb—fêG½Ï«H×B(€nI Ae<)àšk㘳·>ï»Ìï‘ÓH]ÛN·Â•꣯Jð;PßÝ~5°‹ $ô–`ÕK†ühOí@šiÜ„}<}òQ sÛŽªk¡¯û³Ym¼ÅCŒZüëVi¿j}µ¤M öÐä{Ì»›}Ìú«}B‡J#§?©G<¿Ò©Æ/îPa3¸ÍRõuuè«ÜŒe}nžôz+eðÐ-¥=d–rí`˜¼——¬áp•i·lÇæz|Ó–¯Ì“je‰_)<Í`eqi»7—áþ‡•\€³å¶Ü%ð2{;Û%2þwå¥Õß«'o|ò-÷¬wÿm£ê ½Küðæ÷¯Þ®|U­zu˜ž‡×,øI«AÖG?(Á÷±¢¯>èÈærØüX{ò]ó®Y1G ó G|}Jô^÷¨z‰µþ^åÚK4€OXýÀ;çÊêŸ-$%°ÁºRj4¥Î­šß¢õ¹Àô9·b~Æ­àúœZÕ„b<dß[E¬u€Î_ªÍ¼ƒ"S+ `â§–ú™»÷òáõ1ekHÑ‘¼ü.&œrRV'­nŠÑ¹Þ@Ò[ØŒèRí:‹õÿ¯ïAW°oä½ö)‘`pZÇ=¸Å78Ìè2G¥ÄUå?ó‘A¸†¨A%ÐETÿ^ޝ–)ã›ÚÛ²nJC m¨®úAƒ†—ÇËâÿ[Ú`ðoºou’Þ™‚±)œþh нC‘J—Déµv$©­"زò})N¬ú±nÃcõµæ¾Ð«i•-Ãw§ÛwßêüÙ±»» `5S“‡ÎÙ=íª[‚2™û/öe&ÐøÌ®Vaµd±Kì8&n §à~ÞH á%ª—~Þ}Œš~PEDÀn*'’ë±rØàx˜g iÅ—_ÍúQû Fgtë"{Ma,©_É™P?º•ÛÚxD|=¦Nñ*G'Gª©7ñÌš&¥´Ìž%Ëx;,}ä—;º>ã—g .죮¾"r]8Êô/u~è¯Óz“uäzI±AaNðµôÈù.‡ß°@²’°†—-eèp×MðîI4(†f§ÙFªÀ›õ@(T*É¡‰øý  Ø}nZv(Qn1‘¢¡M~Âü4@}ÔÛj=5è/ BDØ€¿Öñ‡ÒKü\oš!¬CÊ%'é4Iz0uÂïõ‚X_Áóê†N®¢àqðÒäK'_C·óßq”ëûïŠ&6ãB‚ÞÞÙ7<©¤c8RV ”æ”qo4£A{ŸÕáRþÀ "™mC!CÜQÀ èr¥W>àŽgxcWF”å1sÒ¥ ®]—½Lk†!Bñ¥98¦æ_¬W#ê(˜ÁÌ]èEÞSè…¾OΓãFÀqÜJZkI{ü¼gŸÌ™Æ'Xñ8Há@è’K¼£s3UgFjãÏñ ¿Ü ãp•ý‡ ¬‰ÄêÇåU5Œ“!…„E:ñ2KnV9 þUW –ÏKÛ±´Ã¬+UÓ‰u±d…èäƒ[íÇ;áJv3ÿºgŧO駺<¯ªO—÷à,È*èa  ;Ê“BBƒ¯àdªX7Áé6™ÌÐìR‚}\4º°ag-@7‹ÓÑ… 3>ݸc|Ò•A?ˆ'pà÷ºЇ}8JLð¹”… ´hR ‹wª¨MQV3±w¶šs=´¢A­4!Ê_i~âŸæŠÒT(aĸC6{ äGMé cšÉBR×GŸ,æKÝs¸†oë^®n»¤±:ö¾ßáXÀbQ$äFBÒu90aïPÓš­À¼#hI+MwÙÊ ãá¡%ƒxò§ºêfâsÖJ|“FÒá¶0ýÛæñÁîÁËz¾¹pi…›Ëª(à2¨T¬ÖêhN³ïäu Ô¿ÔuºÊ/­"¼Â¤Ìð>*ÉÓ£KùÀc éô “õ¸?*É“þM£’yÖeN•øA’Qð£Õ°;n„¼=º JÌø¤Ö …dýq¦ƒë¨†: Üt'$o3>´®npT÷)²2sHƒŽ1k—v„¿Ê¼Êh0æ]æ=P$°  ×ÔO_§ ·Uˤ1.½’nÈ—3ÍëcØ o¢ÊŸ›•´ÞꇵÊ÷oWžU¿:÷ÒOÏrwœgŸôvÍ.BŸ6 ¿̘}Ð?{Ttô?šÊ*¸7—]RMvá¢R&~6Ÿ²c?gïNev–ìÝ’Ïæ¦™¬nõ›ÉÍb§LU8ÕN5ÙåXä\òb>ʹÅå…?– v±ç{&¨…~i55ýì"¨‘/Új¡ÈM³Í¦?êd<Ò¾øÚêyVÌÝéfçÓá‹öÄGŠƒ÷}-P®æœ>Yã!§¶a±Ã¹´(lÃc’Þë+ „¬oìÅ5üYXמ1š£‰z7°GâªêЈ&økóÌj*:'Bž›9<€†0-¡RG½fÒ2H'£X˜v’aá3êßÒ2<ã`ä@dŸ³ûÝg¥~s÷Ó¡ü_}«|UáŒmÎQYŸ5Ÿ)B\?‹”[÷akmcË5ÇÓŽ·‚LOß×Ñá—Ôa¯¬ üÇæ:ŠV¦ÛLl@_«¤ŠcH‡¹Væ]¢«*ZO¡‘§hå3XOÌ¡rüV¥Ñâ#íf¶šeehN€ØF ÑV ¿`“HÅU÷Ý’QÇ™ýnÄi7yY[Æ.Ðr!†}éÑB!Š…R‘Ù•B"×ý"ÖE6ûdÈB_l&qô$îGÝÃbý £ÁÕ7¢€JŒŒÏzˆÂE ^?Š£Jª‚ã,¬Õ&9´­˜…kÔŠïh0K*á ‚ÕÂ;Laƒ‹ ¹Df¥&vT K‡ÝA@ó)ÅIt-LÀ"ØÔ×ÜÀëðÈ(Fk+ƒ€`‘èV¼ÅÃW4g@éË›ù[fryUwjCÓ¡Êp”´ã4(Ä£²ZJ‹&êàõk×/‚Hq‡8è”›ƒJø¸Î’Âæ°ø›±7ç2I:*îâ ×ÕæîkV7»"KR’`(bkZ_{òoT¬†Ñ†•­u=¯PTŽˆt„R–bÒ±z²¶¶j9„>ÜÒÕß—Â'g$S®¬¾^¥³“ µéu>P‘#º´>ŒFãsÿbŠ·ŒI ³•³ÌEe÷묂‹ð‘©ÿ[YÈÊÖÍÑÂwW ³Ã&‚Ú†£; 3\s€½¸\UQ¿ÕÃU67ÀÂØ‚c8Cyƒ Œ…”Ø[¸¼^‹ 6£¶Òêïœ7³*X?ðêáögTg¢ãØé‰Õ<¨•þÈVÎbðÔÙ)àlÕYCyã8Ájƒ“ã²Ú· DK|9°ó­D£¦š;‚-qèHi™û\y:\øÉÒζ߰܇)%ļ×] ¾´HœÉ&ȯ,Ú–`g£! ;DY¦ö*\`*AF†xåØõ¬DÆkäˆ,«”ôìi Á1 ”–2ʵ²Ö`ˆìaU%3`¸»t•5û‚Z°¤q05Â-]MÓVT•õì.ÓqXb;" ]ƒ“øC؆’/“í «– ¹ç,èh±­P~vOáÙç$gsÅf÷–™ý/˜Ñve¡™5©ð4-9“ÍûFðí®ÉƦKª3é÷oRø+ÈGªò£‰gËébJÑTÝ_5Ke0÷2M5¤@vžg˜ªfئÊéÁ2ï‹KÖaúHV¦wü•ŒüÒñ¾jú%ÉÒÔñ\k>>}CY1“ÉãkAºøXA*êÇí K_)Óæ-YêÆù"±ä0Ì8G™_ÖV³e¥ e¡ÜωºŽÒŒë‡W…!„ÔÙ2þÐ6‡ëÊ„÷û ìî+Ú>µ÷gh±vpxºSB*éqväŒ|@> ¡Ä9R°é¸nèØÞY†az"Óòh”|@+¦Ëz.VÌÌ+F—N†ä”U á“Þo£îÈ` ¥žŒ`ùúÿÙ½|Ä媪}ÿýS?-ýÉ碥g!ns¡Ñáönëv±™ãð–@l„˜².[0(;ŠãÛ &Æ?à%Jîïoý¼ypºù|wo÷ôïx±x±{z°sr¢^«Mu´y|º»õjoóX½:>:<Ù¡á¨ñz§›x›LÈx f5 ÃKvJ•bìb0v Ñ9f²Y$7£~ªoRŸ—WOMÎ{Ý6T׎h WJLI¯ˆxfËÚ™£¹!D¾ÒA²×± ©E@®B·IÿuŒ-ÉŽ/S u”%™Â!Å8Ý$Kѽ‰oÚ1ÇÖËì–¯âÖ‡ „5,Ù2ÅŽR#k]4½E}œY†Æ£ù–ñPi çÜš‰UxTPÖ§~<g¸'õc» Ôx|ªa £µ Gˆ¬hÀà£4‹"·²Nu´þáU2ÛT˜j½ øÅ„9 ¸vO>|uª6þŽL®cXŒß0h”*YU ÕE&ƒ¬chþ’å«÷#Qµ4o™™`Ðxu{)wùï08"¤[6q—¥ƒ¸ ?¿|ÑÀ–l·…ã¦ÇT¡ vç*mñ®Æãa½Z½¾¾/“0]V{ #­þš8¹DêzÇÑåeÜ1H5â“KÐß5©J¶ã ½ètüJ@É´Œ« JÖæß4Ú‹‡ë££?°%r]5KáÌ8ùûIko÷ùñæñß[(þi,䄎œv---)6ù䙈ù5øí7b]ŽbæQBådûOè AÈO¹È¹nÀÜ|(Ü\\®„Ù0Ì_!)iÖ²W-Ù‰]Dü,7‘6°›B×þ\pìÐi \ -P”‘<«¥iÜ?G¿[f nž40>Ææ 9ºÙÛËìµMàóÉ3f>dL@P m€:œ-æ–gîr}n‡4êìÌ)5} ³ ¶&vmq׫öQ(H×–ˆ”—Ég ÇY÷œ¶E¡kÉ™'BœÞ(9‹æ±Ä·ZÕ7"¢057u·“ ±·¹û:œëvNˆ[Ï0¡oˆ/¯Yïî„D*Ð'±—%Ò-Eo$â gtÀ”­Æô¿Ži|Q·(íEJ£§*Œzã“h5óv¥Ñµ¬°ÛtÔæbÝ" 7IC#ÊK—²bÚZ¡l9H-%˜¨³:جãÖnÇ–µCÊJ°XNÊ¢¿š ¯ìJgÏ£Ò¡°É>¤ð¯4¸;Ûl±Þá0 CD *ú 7vh¼Á˜¨T8«Y¢2,ÍÃr­lHý^÷’œ!‡‡õ?Ÿܪ_W«>·¸sN¯ÐC ´‘0)B‹ÊA±…Þ2ÊϼcÂŒæâ¡bn9«<@&ca‚² ¤è… ø%UQpÓ\]˜†•½(ª…IxËçâÕæcªbµ¹´ÜFiš´ÑDÏ ¦“_C‹™Z•bÇÍü¬OíS4Äø©DŸÐó¢&­ñE2Ð9Ã,d*gç{‚bV¿ëö¡‘T'/Lº¶‚¨©n:Yr{Çö”Ch¨ ”J§ >Yƒ˜1›P$Ø  ÙØ,*ë„KEüX¿}˜ÖÔÎï~²‘ºl•H¡7P¢  Œ!˜²P¢áÜh¤ó‚òn)íæ3dÇÁؼ­-üˆ¯æ«Bgi˜ù¦|fŠO‘WLl6fΣߔ>­L˜Î¤M=‘9‡o£èZ¦Ží\·„!ï„þl;ÓE-U—É”ÜhMµeØ$‘·:¬FBªÎˆþ9¯B鳕âF¥cŠî*Ivlœ‹>*‘ø)h†„ýL;8×"½çÑUÚ¿î0ꎊ:ïýÜ(8¹¿°Œ'ÑWªøðE©.`‰¸óÙöÙq+îÕT« }÷+sçzNpЬ;™¨Tqg.,¢ÑÃJÿFRE{¸Y:Ø ¢„"ô©TÝ·ÏãK„O¼:~áàÍ‚f1G‰8š¤cÖ“@¼k ³fþøÉŽKIh^ N4è^ ϸ¹è“˜ÝI¡aÂ3Šè'¤ý.X»£¶Û<~Áãô™Çm#Fu[ž(¸›°”Ä(4I+cÅ[HØà'˜D¨äû>ÎhãL¡f'T›ÛœƒF+é"©×éTÑ 5î]ðE'ï?QûªrÈ‹­›‡shÆïPÛlHOŸ”ñ<€ª¶> MdK÷éºçXGîô]%ÂËŠÄ´”P–oCs*¦Ë…)Ýìx–L“™w½i2±T¢|Ö¶ºF ,:gH{ 2D¡¦b Ã]b}EÈ?†vœê6iÌl?mÄéz—^ÐêydÜʱ? d8'Ô”1“§È4 ç…6ÂVÍþÌ~ ÍmÇÁ§¨rv0§=$§?M…6ÊG4Ê‹Œ\á"±°æOnH#'’‘ǰ<7 l¡¿È [T°B$*'êëþ‡Nä";`Q„\I7V‘¢ˆü¡âlJšœ'ÈTfÏÄïF *ô[˘,òÓÜFóâÑ ‚.¬Âù%Ðt4ð´„nÌ":R¬s¦©ô¾Ôš/HU` {- `¯³/–°š#qFx‡¡G1§P2ȼpRV$}»¸éô¨ô6÷wŠâ!I[sÉÙNÆÁ´AÉKÒ¤N÷‚4Ç™ 5ž-çì0I„(g@ŽâQ¿›Òâ%]R=ê™ïEáÍ%:Å/ž„õ~)¸Î‹§Ñ\MÓ˜¨ðæ4ukšß\•>SCÁm«ø¦5udgçD¶3^Ó Ô©˜hYCÁ„Nà%æ˜wfø#Å‘EaZQ#¶žÂ·Ö„™.ɲŸºÅ»= ×ÈÕÑUr=øLVu¤ëò|‹+8ÈBØZÖ2(ˆ×T¦IÆ o„ÂYÌ"¶±ƒ‹AÃÙ!›J™ühê#¡gÒ!†1äqßÊÙVVÝa›‰w¸AÅ<¨|, Ów;Qd @ÚO¢Kñ'rÑm[œáëè!ÆLb2GË»uÂOç¥ óö’B[6/ˆ®†È)O..L(6 F(=G_ç†Ø¡ŽˆntˆâðžØV_ëðhlf˜ÒC‰kS\ÑטÌî0JEAüé(~Ùcz×½bp×½Âñ"æ¢p‰³CPboHöÙÌöÂ6ŠÈL÷ÓnÒGƒ8™¤½[£¾TiÓ}«’h×OYÈžv+±.äS¡†ŠE»¨Ÿ_éµÝþœÌ\ǹ/ o_\O§›²^[.Ùš¦=ЄeÈ–Ó¶Ï ï óηhÐ^|ƒT%£¨4œ9I®PÅ «0^´]qŠÐ0¯|“Ûs8+0KŠ¿9 d{s·“¡¨DÓÚgiÅT ÂâOêp¾P? ` }ͺ’Î ›3…Ýœ¯vm¯hºZ¢là©­^ iŹñyŠ’¿)ÏÂäSuMap{„þq2Yésk5Gß‚ .zS£öÒT#­XCT½õ^yÈÎ’k Eƒ:Phùá­Õ–OV,1^ØÙ»7Y»é6b ÆúÑæ´ŸsÕã°0DpÁ·ÚxȰMú Óµ„ÓQΘ˜OÍ`&=Þ,q¨3-,檘æèÒ>±%“Ñ;Ö¥ƒ¹5å>)æÏ޲Fm›ùµH£ÀÜQüŠÄQ'dFci¥•8 ÏÎãVX¹ùªãÀ@ø·‡úÇBÕíÝã*äÆ[wS«ñÄ7ãÜ0™QEçûhCc*×þIÄN<¾VíY×Nø×µE»xµ>h²Æ2w¡€¾vçè¯vCR£LŸ³ÅœpuÉQù±PM—é#Wª¯´©@u¦†¤¥+›óeö ‘s=ì7­•Ycƒ#0™§~w0I[{Vc$ev#N~†«iHýºyÜÀÆüÚ‘c«§µÉ`À(¯Ææ*ÜÏl”É.ÆPèHãV¸šð16 6©\ÏÕKÄ›®½?MÍVGLšÕ‰[T¹Ð¤2Pˆ©Ã¯$•Õ9ªÑ$.g™ÔÈnÓ…K߉Wi á=:Í3ejÝ! ´´²6‹E¦Í ÑÃ@½›R4W9Ö:S¡$Ö’ëè6m¹A÷€ö-J.ââ§>_GXÄÏ&0ítj´>åðˆ>¸w#nQÜòÝÓ­Ê )Õ8iSUÐ$p‰7u£/ù¹8œÂ6œfH–AŒ6‘„áÑ›Ñp–õÌši,‹‚µ¸ƒÂ{žÙ¹{VœʘQfã]mè†G4,Cê‚RÞÐ+ìN‹uåjh)ÄÀž}‰0X»:œŠßÛ­õ¯w¶§´¯Åȶ $-ÈÙy¶÷‹W[§»‡'€W7w¶IÙ_ ¾:ÞÁÌïuÈcf¹Ñ:Ü»»ù|o‡t\!SåóÿPþ¤KuSÃ07Ž0¬Qo‘R^Ë"CDÝÂ[2üÙn¬IAj›hΛwÂ^ظUí`7UM€!Â"Q±C %ðò›:üy[÷½%%Æ]¬ÛIßq¿õ‰,MÂLD¦ë~!œº´v*< r˜£·õúøÝ¬¿Å¿…@êÑçšÇFszøߤ⛋µ*ß7\—W¶4!V½Âu$‘ÃÅÄͳ“OÏֵˌãÈքìgIäSó×M_ªsq ¥ŽŽª M_U?PÞ¦Ÿ‡yS_™4+¥æÃŸºR_j³,Ûñ†¡Z ´CŠ©z>Û{)XW¦ÁÌYí¾ï׎;âÔnE½6+´Û-m €V>ïºCòÏ0ÈØ"pfš§=R¸¢å‡´€,Ùâ! »v‹ÂºÁñˆm\ñý¼W÷,‹i¬Ô‹þ‡É?böÞnGí+ë¿–•q9®ÈœªÝ6YÌëR8Otº¼:E›•çÞ($Ò´Cs±šU*ßýÓ³ ™_wÏ׳ã§aö>ÜPéÃß-+ÊÇþ™L>O>{X ¦˜ð`FÝ›¯eáðáÓœa›JŽ<² ŠèÍC‡T̶¼$åÄ^ðüºe{õ-œ²Œã€«b¬í€·÷öv¶N[x‹;Á žÝQÂa6õ!³*¤×€>D$dMÂÉÙ¦ýä]œÌ@è_58 ¦?g ì|ÃLI¹é¬B¤Ù*򵂾®ì«”ÃóV,92áEÙi¸á€ákÏ/¨í¿½<:RS–l͈¡Ô½Ð~|XìÝïÞ@êÖquïm·½òKÃ*ô°?»è° K¢Š%y¦§ÙÆÈ7cI¯¢Ù «`önµR{Êðð àdêŠf‘Ø6|n ^U™àD&)6‡=¸\_ÝÕ · ì êÇŠ¦BM0%ç—Þ£+%ß]kÚ Ù§OjYû«Òß´u™è¥þ÷+<&Æq‚0å“ÌýÁ°°€å6KÄ]Ѿ‚±RoLFÏ“À¸&š­ZÒ)0*†çYq0×´?CøHQ@9R+ÇâËÞI«F|Æ•dž«©8öåQ˜噕ÿ¼ˆqÞRfŽ3ˆ0Dß[ ô’ËÕ,Æ ^€M(H‰5``èH‘Äè h”<âp•«BŠLU€ ^!o<ÀÊìݮҪ?<‹Z4]UÆ|‹0 ˆTÊ;”Ò“PuÉ I@܆]c "‰„#ÃCFŽ@6°ÅBb<Ǩ…“  ´; fŸT@ç³ô6–5fòm(¾¸ÀÎ~ˆqõ’TìÄÍH¢“§1Yka'{my—± l%€¼‹f+îðÍEÒ'þúÏ5ÃI¿F´ª£‚öµÊ7´Ö òÝÜ $T$-¦’ó2ô5ëF“L'm¼¦QÔ—ÈDvæµ¢Ñ%bX)^¾Æ“ÙäpV!Žh9•w¸ÊÇþ†û›Ì$±O„ÜÒV3@±kP« õ$üc6?„È^¥è a•pÖ£G«$v"{6ÜÀ[X+ÿà‰…çì¾$£Ë Áàh4ôÙþ¢íK,>ö40ÖŠMˆþG±Pªä4×ò±GxŽC1{ƇõÉ«ç@“Û1aÝYax]͹‰¥vs̪J…("ò$· oì”÷}¥‚r@X3_VÈN†®\ÚoÇ~ÍØÇO'¡‘#Êk2'÷éäÜRªÐËÝ}âtŠßdNÈÍìç\Æá©:ºÌÜÆ9N>ªëÚêŠIÅißPÆå€Öd¥5.@‰Uf¾:orZYIÖsöhžôƒüòO9×p*® …®´ÓXɵ.Ÿ{‡×©6:Yìë9{4O.¨†¹qèFVx&³.oåsˆ³÷OfÝeæI?Èo~pl§ö¢4qúÅzÎÍÓtDq?çÍ“~_þÉ7SJ»p¥âéë9{4Oú¡`Ägì×\>S®hÝ«,Ö¤æCR@Ò¼xKjúâ3vi#èèKðø¹0/:Ü9˜½)<‘lJPõz@^°2ùFši¬2‰:@–<®×eƒ )ì©of¢Ä¿Ž£U3Byt¬ÐjÓ¨Ñ7ã@µNçðy,ŽP?Ö,·^†s'°†·¸> cfuÚRÁøÏ:P= b@ñh„¬@ŒÕˆ·‚“‰¼yJR"ŠÈËGö©Rߥ|Ña+J4³v›æŒ&îÑdHžÏ†×³ì aѯª«’4Yv ðŽ„_¬;®ÔÄcÕ6Ÿ†ÈŠèEîy¢ð÷Û§ßÐïÚúùýzíiíë'ªöõ×O¿]{úõÚ7OÔZíÛ¯Ÿ>ý?jíŸSýü“t )×h-Ø 3#d»¸˜gþ)óû?äß³‡õg_©êywPM¯<|S/'( #ñ:Žû•L©Ó˜ä‹ºY`èi(`ì@¨äobÒ¬‡O¿'À¼W°ø8?:&¹.ܑاùJMëÕêew|59á>VEb:ɪþñ¾ÚMShäR£ý×õË\ûþûõ ºl&ÇÍßUÖ×jëŸóÓ<’ˆÓ)~Ê´“äy^‹Ò%yØ ( LfÛ$^Þ®Úž„qÙµ2µ,Ö›SKKøiÿIzè¢3²îŸì×H>Í*·Þç1ûÄ}žLFƒØÜ{{±·ýjsokód§QÛÐÊ :I„Ïû¿œÍî}Æý9žƒËqŸzÒ«rqð…B¿,¼¼ÚÛCŸ,uæCŽâÊ“p=ë'êÐaŒ{W¥C¸©Å hécí±_zæßÙò2žÃ1;^NÈ'Î$.Q±h›yyN Ab ú‹ª\ªÀ@ þR Ç"WîríàHË(lª$Ž£ó3Ò8‚Å€ÑW†IÚ½B·NägW”tk–Mg0×U:záôˆÒ°¢ô0ê˜PcÇ•¢úב÷QXž=ØÇ©úVU'éˆPÀK\„žÐ ÃPþü/05jÒäs¿÷.` Ò"º@ÕuõV{ÔæªèÙ€lÇñ-NyD2¯Ý=l(‚'qh}±/3ØïÄ2•tjFx SX”ç›Ùî(Y;EkŸàVašñõ5@UFC÷á ¹Àþkýê;++“¦ëI´@Yzk}Ð'º²»_¨‡é_ª4EÕâ—@o#Ox}¶L«qÒ>¯‰ è¤20Mp÷·Çúlßju}çIç¶Эd ²_ª•h·ÐNvژϋ 3¡6…)Á©aÜÿu£4›å<`«ˆ¾á.¥š¾ W•¤?fãÓ5Ø—–®”½º2ÙÕIž ¸¡¸(Ÿ/\á ¦ugεØ<Ï|áñˆYþ\•à>fØÇêj~XaKTÚf¾$“Îx""Ï@fe倸 Hi®¬“½¤ÚNÈ[å£ë1YÎ)¸ÁƒYH9Gˈ€—Éûy€sÿê%•ðï†âæÕ§Ž8Ü׬yjA¨ß ‚¨–M5+ØÀ±“»Ø’Ú}qâÙݣZüªGçDJèpk«Ä†K]7{ây ÎÐxGáÉŸLÍÆÚÓœ¶f;Ýq2JY=E œè ¡hÜT_ªCm«åÝ ÕÚÚL]ÆŒ ¦`y9P{q;[Gkå ‹´:HU}®‡µ'¡^Ìdq:PD÷ìüªðÿýÍÝ=ú#+œ‡â´YúXâb„”qbqÔ:BÚH-ºP’§¬LŸ q®“óÖIwÖ;:©5‚œ^G'ëàGzxÒ+Š–q°w¢@Crô½·ÕÚÜÛkli"›ß½½Íƒ—¯6_îX$…L¶±s¡'íå×9mä âÎ2óRKÞE‘-RN·ôQh¡âéEÔ“à«b0ÖPüA ö9\Õ²yö‹)‹ZkvphQe7pV¶`ø`´àb ™ùœ¼Ú\B¨Ñ,0 EŽúW±gÿEÿ‚¬gM²NõwÑ|Vnâ®T™UðÂz1T(yô¤/Ù½¹é¿nZ|Pª'úµ¼ûª)Fƒ8=¹‚¹Y´œß¨ÍÒò²ªáŠRå2d^ww-¢Ö°(Y‡I+–° äAê8;unãTcœ©oƒÄ#ÂÆý¥|D-lhe·"Û”³šaU¹Ñ(Þb>å2D]–+ Å¹ä¿Æ:1¨{†+kÁýUEf¬î”l¬IõÿŠoÝ,_ø†,Êh]tP‡æ²ö­‚ndÿ…-„ãä #YB(E±ùX$cØHòfí£­p'Ù}³(äèJÎ/DséBMQ’¾»ä‹fkDvu³xØtkÃ(^¢Ô$êÑB²Ž…û¶Š^jW>ü‡Õ"o ³±×æîš$þAI'2ý‘›¡Ïѧ4gè‹õÐî7ö\ӢϲÂQ¿è"E3Íõ“±˜yÉ®ú|GÐ6ìYëÎóŸÛýn÷ÿ­n÷æ^¯ÕýæŸZU–º[íi‚W{£Ò„çH¿Œ‘ ã‰Ï\& ¡¬È]á~Ã*§ÖÓwŽé)êQ3L-þ›[Íî€L}ºè`e´Š"je ¢ÉÃ1É÷)dOÙã ú<¼Eb?Ž`ž„_‡O(º5ئ†±©[øˆ#þŽYþ~Y‰D?è™DE&u̸Èžp¨ÔªDÌ&áÔà–¹ùJ\%Þj|袛RYáx‡(Ed1áôì zÂè"&v×dà™éãÀ¹á"xe–‡ G†!5À/¡Ÿ‰<µ€ÿlýÑ^¯ÑÓºÓ¼fÆ­Z¨@+,“,ð¢ vœ /Ž´Îctd…ñã.Èi‘'¸­½Ý­Ã½ÃãÖ‹Ãã­†ÂH¤­Ã#òðÒð„Eíäq²x³”ŒÝ$Ž­ûÂøŸ£œDå»ñÍš[ðëæ1'æ=…Q⌠‰œLæÐ³K‹÷Ÿ|O,Õ Ë­TÛ¸óˆ/À!C­BžÝˆ¯÷ìå½6ÆmúD÷B?átp©UsH!•GŽ]§àK[… Sªywª°!Nûh!Ím'ï`¾,~*- Ý4ö(‹Þm|8g‡jÍÇÕNFó•Øggi7ãÐfŒJ[1Ëc!õÝÎ@óe•ç;‚‰N´%ÞtóE¹5}RM½G©…ÃÞ÷€èHIvŸq¨›.5që ý%Ú¦µ™¤n ^Ùhyáq(U ¨µ!и“-9®¯PZXŸr:•ki€°%pÚzO¶£.Åh ™ol¨¥Àʠؽ±¨]»™h"̹ݬÔwòp[à F`×ÚÁ'32O^gÉu¼F•’7¿Wß6ËÕ*=àÿ+Õ•R šŸÈ`ª@µÚ,c®ù9æh–échSʦ‘8˜V‘OÂãí¨ ú»ÕÜfµi5žKÕLȧP}­ÊÏïñçÿPa,ÄWξ àòç@¢c¸jXÝPïÉrÓð7œ5k ÿ-÷aùkrš-nŸV¶³&î²ëNn;D9ƒ ¡´Ew8S¶ÐeàÒáà\L§½`Âöz±»·³&>ÅÆ&Àì¤d;ÓL{‰‰ð3ìfÕ"X.»ÑÕ2Ê ½çq[VÚn»¸'€ã þß{5·éüm“K Æ&?Z€¨¤¾{àGN1&i/^D£…ÀâaHY¥%|½$‡šHñI€V}¹Z¥–¯u1&ÃänÂ0]Ž’k´“Gûq‚ˆ¦úìÿ››®Úþƨå·Ctm ´ÔAC¸¶†!våØÊAÔý -D¿H±QHHIïCOIó‘[ÎOëF{€“ ®­ÏdJ1£Ø™Že´Êf,-äÁãF³„:wÅÚWò—jRè8¸ëÚœõ ”ô|óøe†³æ_ˆ ß0Ž*•@/xmªn"‘¯X3¥«â¬SÇmcg¢;#ÊçêQÎN€ÂKÂ] ¹K±¸%b~”DƒÖy(ùF?SL}ÁwrÂHµ,/—Ëâ‹z8²§°˜ß¹Ø|ÑÐY£Ï]i °\[ËES6£ŒhIÂMÕ`/ÀP•ø½ªMÍ"Âð\,D8MCí«7,ŒP{‡/[/¶ßÎEK3füo&þ™q[‰C¹vf’¨&ŸC#ÁEcªÝ %õ’W>ª5© °OàžL}ó!ÄA@\dU‘ztuÝÎj‰µYéÕˆ¡µ€™øðηuë[&ÎöoEÁƒ˜7ì @¾È.©ç=Ü {q¬vBµßÞ®`Z—kß]«Ô¾ÿîû2säãNªôH‹›P©z¥ìñŠ­ Än€=îTß”Þrg«x3Ô/Ù^çrI³ü°ÖUªú^£¸Éòz.¿u'õÀ¤&Ép n¢ dMyЂ[[s; Í ÊÕæz³Ö\·ª´ÁTšôžMù¹~ž˯«ýÑ8Ž-°Ï©!˵É)îê#«£Ãô™Ì"@4Ôv\;’>ÎáîËXˆ;—YŽÎ>ƒQ,º¦ŽVð]lE= ·}K×F:øIx“×J³JW'!×Tè”(KYuJUUûF~´®äŠHi¾Ñ …tه΢¦{˲ZD"(%©9'U¥7koWI“šXÇb!qìLv`–%z½K€Å(LA´‰ƒ0’CŸ,RI‰É(„Œs ’î@˜  ÏÆT@Ž‘¸Ìpü NvÂÑMËØïPùÌ–ÊVA&ŸÐS]¡åu¨aô*QHBaË¡koTJhm5H·¢u ¿§bìp¦­¦n28’:UäÍÊÊÜÜ6ÛÁ™x°k¯”5¤àA°±ñ`I^Ù÷-Å“Bã”¶>°I7·eÖñ€öÌ8ˆbí(®ç]zõÝw¤y˜}„? kgêÇÌQ®–;ÚÕ ãN;á’¾•A E\{cÆ(•䥶úÙ™E_G'##MS6„P»¥ÑE…ÞÈç$f©dI6 V ËÔó-xÅvx£g *©ÝhÝ¥¢ü| ZpòQ9Æ´K ˆG2td+ ´Ì_'ê2Ãt¥uÉT+«ÃÚ?ù;ÜÎ@g\7UJ¬C\Þ˜˜¥ /”òëeq=þš*<¡ýè2½íSpî æC^¯Ž1oÇBa`»n.ÈtÕ–!=6 øxÖªÊð8àB³F*?†ÜüÊš:\Æ0Ë ¢À÷ÄRopÿ‰è <×è0VDF»ºáÓgVqnU:‹{ÔŸ³qòB­ ]Õ±¾aŽ]#0Y CÐ\Ìõ «ð™¼ cV|sa8ä8jÝ4aº±í°ÅfkpÞ(®s bch߆(šc«è„cê¬Dö4„õZíá°áF4Èí׎|xäR’7Ò‡o~oÙ4ÄÛ‡­‡—ß–+»9éU®5‡óêœ/Lïïd»ý·íÝcæñâ¡øíÖÔÙÔSâS¸N‘…Œ¼ã: nþòa8 ¨ "‡MÕòɯÇ_‡ë«ä•ÿåÁ«ê^w0¹)‹p 7ôyr 'UœZhbb”E„G1 ¾'Iˆ~ÚtM³eS)4›sWe÷îDCU{Æ­]ÿ¨Ô;h¯ƒ¤V†ñzyú^æþ»×=OÎÿ­±½ÝçÏŸ>ÿÛ œ™È“(©0­¨]'n=Þþ‹½Í—gó—yÄV¡sîø–ÇÎÆaÔ~‡rhïhsë—Í—;¢üñ>0)§›Çÿ?{_Þׯ‘4ü·çStd=bu€ã$ˆ’È;ªïêêê:²‘òŠß(­×¾±±‡û;ÏŸ`NåÅ?z¸»ûp<.õÒnK¾ØjËèŒ5)ÜëØ&T¿ Éó,mÏ€Cif¼ ¢ .À„¦Uœ…%z6…£à¾Dªï“i·×Î~€¨dP?7Ù&Ç쇿ím´&eB÷*©O¯Æp³ÄüxõìeŠ!ß*[ —_¶ÐÁáV«ýóvs ¯Šn‰iVå÷"¡ AÜ…þ3l͇[°T¨Þ|0RoN›i¹Å=õ…v?ê6 ñ¨Ž§2϶Ÿíîÿ–ªm Ñp›[›Ûœ­yÃFMH5•˜7Ò;Ïsæ§?š.œžÃ-(—®¦ ¥æxñ|Êøf£>”±æ[áÂíÉ6Âàp¤‹ü‡a»½ýr{ûåaûqóéÁvàDî¿ØžÂ,âfw7~ðèÅó­§Ûûð»ót«½û=á¼xÖéX“<Ý"LÀ- Â@øm {JÇàxz†W¡vŒ&ŽÝˆ7Ñ•øV èST”Fq¯^Qa3Œò¿ÚÎ>4I”x ž)óÜ3™àcl>Úý$„ù¤°›OŸî¶šÁöstô…Ú’´ÝvZ2Ùx ‰&þ6¬œÿÝ&C~™t¢[pk·uàç¦7Ë“Öî/~Šq³¼xtÐLUÊQn¦f&O3å—æÓ'°_¶ül&–²žÌF]ö«üºóü«’—ÔÎúSØ`]Êótûeðhçº-x"!3úý&ìt’{ÞEGß<ä_˜•½Ýàù³í­Ã`ëà·g/wžÂéó|çñö¬f̲ß|‚§ÏÛ“ޏi{ëų½G;Ïýût+xŒ§E°MéÏÁöV nø÷¶Z<ápg<£€øˆ‡,<ü™(ˆƒÂvVl=}Jß̓à7Þ¿5[­è3h= þ ÿmï·ŸínmËÐ¥ciqûöB|-·ZΖ¶q”­ÕÚÚÞÃR”8Š!)h>ƒ¸Gpê(4ÌækJNŒÉ—ü;¿-«˜Ãþe;‰i$]Çó†©ÂiÑ…Å1ž¢otœÆÓú;L‘ÃØÓN|n:wLG‰Í Mú7»Ø1pp—q$FŸøÓA­C²a6™ Ã@³ÈÙH§Ï¡hÜ áìoÿ Nò1mƒ§õ|œsöè%€¤ 6½Q‚™Á鬛FÒ½ÀÜÂ"¾*ZÑU”"<¹²è^П¶Ï¢Á¸a¾DÑX¸y&J™Ø$lÈVÇì!íÆg?Av0ÆHXZýȲí4fœä|Ù÷]àØ#öïÌúNù|÷ùv``5×kR#p3éý'¼84’Ê%ü/àÍÔ€_¬M,æ0p'q—æºÅÀ.ÛÆÏ2GÐ,Ñþ`Q+¨eæ†3aÎà ê¡àst9ɧÞÞ“H‰äDã19« aÆAEEÓN¥&ÂN}ÀAû†dÛèðŒýkÃE%¤»ˆÈ’^Dhý²ÓÓçÁ:NºI­,˜¼Q*¾szðžìAilŸIL(Õ ™ ’TrÌd b,éÃSœŒïKÎä–‚!(¥Ž.7¹Kþ9ç¦ÂT–œÑM’Ø’zŠõ5“È'lº­uˆ®£/ï„z_Òs&?Æ—ôñM©JðÉîEñ™ïG%é¦òæ di‰L;8¥$DG&¢=7bȘ¤ƒÿ5ñÛué O\»Ÿ#²—­I¦„HÀQËj¡cä:"+¢×»2 fiÙ–zíé"nÎ'g¬DcœƒH[ø!¨ñ#»2‚Hß<ÎG¯~o¼^mðSkIœ­6Ê\§µþBÜXTMõœ£ÞWM³cQ˜¥ÓFÓŒ_‹åYå ±U·žŽâ„Dc@sn§ô|¤;X­–õؘ)“6a*oir¦•šÈoÙk)E]âœ+ûá„mЄ´//)W4chÚŠ¤göB: ¿©öYúB7ct­©° ši–”Ó¶[{Êû~òÂ9^ò>ÜGÞGñçùÆK¹GðGqž»<§¸«äRLª(¶A´tN*}ø¬ºP¼/÷C÷FçËvÅAŸ¦Xþ·ÿé}™9'lƒÙ^ézlÏô¡»šnK&&á,çgñ¾ÜwŒtm9ã$Îʤ þ2BZ JhÄ|™BÌ—ÕU]FcgyqÝðÂ"”³¡×P‚_±X°Ü{Ë;HNMR»*}õ{õ5ÿ5« ¼‡XûàêiôG\§¢ÊăTênE0N†Ìp¸â8N;µ¬ú+hêëz=ÚË’ƒÂÜzo‡…  w8¯M׳;“ÙëL¾‰L$\rìôS=-÷2ÀñVTª¨’ï QH€lk£Ø,©ØøÑLuH~S['î8»&vgf?lØ„Ìz;s–:Qtœ;4!ßT¹”4éÃUžûá„mЄL[¹\¶­<À²+õÇ 6¥A±µÆë»mùioK™¬?cWå,-¸–¸®dkŠùN§‹¿Y}™(ïËýpÂ6è•×ùõwšÛ&ÞnN«d¹Ü‚ÕtË31Î9j"S™üOïËýHA²I&¤w·ÛÂì<œEŒùí/ÿ”e§î¢ñØhm"¿D±ÿQÌÌ»‘Y‘@ ;— d… 7 ¿øsfÙrÎÈ 1}OV 'lƒ:›¬æ¾ÕyäBLˆ6lƒ:Kò &g(b©û‡bTÈ È¯¿~,'S·"d~ü  éI³EsæL\$¶AÒùMµR H… ±êB÷¾Ü'lƒÎÒ<›š ¤lo,w…ŠÌûô¾ÜSÛ  é€ßo§"îºÃæYM5%‘úö?þsŒ›ì„mP’SaÞ8óHʤÃ6hB:î6Õ}fŽÔª Öûr?œ° ÚÆsálË™EùÓAò)Ù¸ÂËZu¸NX7E2å¶DØ“ºLî§÷å~˜‰åo4¡L?t¦/š?ºšjB:"õí:kŒcÜd'쌈®&gT4C‹å~¹N8Õ]STzk8«>èÔ·ÿé}™˜¢sÚ¯ù»¶ìܘt„Jçz_î‡Î Óg4 z5ÛМ¸l”;ó&6-õíz_Þøš†dǘYÂT04!_þñÇEÊò€›yÕê~8a4!ÐòÙ–zL…ØßE´M<›V{c‡ºéKå(®Š† AÊýr?œ°™5ú4! Œ¸AöõÍ¡¦ õ¢*…æF¤¾Ý*9Êûr?œ° šiŸ}tšè½P™Å1éÓLçz_î‡ö˜È/ÿøKÒo,¯LÿÑg5Û©œ¸l”³Uml:[êÛÿô¾ÒàœD4!ÐûÃo~v›8w­tЄt@~ùÇMïºäÝ‚²NØMHtæ^aä¡Ùoöâ¨LŒY'2õí¦{í¾‰›Þ»0ýº.Ò™f7>›5“ް#ç½ØÏA~¾÷€Ì‹ÊÄd ‘©oÿ3¥>E¬`5§ey‘9#ˆñÙ¬™˜tDz¥Îù#h„ª,öïK%¥[è%ÏMYTlNüü"¹±ó²çÄågÍÄøÙ0*•ÅÿÌ_¾Ij}øC›šÄLâ‘_Pxqѹ›Sh~‘Üó²çdNgÅÈL¶tDz¤$zrv‰(0TЄt@~S³Î¥d–YàaÕç~8a4!Óv.—ÓÖÄ´Ï é€ü¦Ú—8ÍKœ¥Â6hB¦AI~{Þb¾·³~Ä„¤Òùå=£,REqé  é·A„°Z.qÞÿ³a4!_˜O. ñdò¾Ü'ì,ÚäÄfÒ#™Ì•ð傸Ø5Q¶&'6‘úö?3Ü'lƒ&ä•ßÔ€ú­—qõ¥ŸVsú™鎪ŸÍš‰IGä@ò³x_î‡ö˜3É~r溯çÅ ¤FSdÌú¶_^ÐÔ‡±9µL ·(4!ßT&7HÄWxA2-ÌaëX9.1çÓûr?ì|з šÈoª§¶>é­à[Mµ(‘úö?Ý•B1n²¶A2cfkÎŽKS‰tЄt@~ùÇï¿+¼,#ÀQҚ쇶AÒÝ~N/Î1·ÈÓRÁlØMˆAk1\ç`‘f1¶AÂÀ/þ[Š‹ÞÐ@é1‰»ÅÁ¼-SÿŒ—eÑ–ý_–‰Åõç¾+ÓD}ð«rº¡yoÊšgW}ÝpQa™ÿ)¢»E…õñוeöV/>‚_:LâKU^ê‡@F°ó>½/÷Ün—öõ’‚&¤þcu&丱5ËÙ1?"õí:î¥ûryÉo—&lƒúŒrÔ8²Ûõ²jt:¤Ü¼oÿÓi ǸNØMHÒg+Ö#gÕMVÓËĤ#¼ñâ8?‹÷å~8a´ƒi›M¶í¡ wˆ$ù†::¶h¯ ÓˆYS,QÓˆžs'CR®aŒÂõ¬6,>Fçhév:5‡sã# Rƒs¸RÏþx©Cõj­úÝk³ÕW_øxuU•¯Á¥^…zˆ¸¢RAåâ ›Ã=‰4ÎGq§±2t<Þyùl{C¼W ÂÐ$Æçl7LûšP_ÕÖ¸çY“k¿6÷Ÿï<²A> #&O¯(/©"S÷ôÎ#;U|-u-hŒL‹Aû Ê­F·`ýÛçˆÑC¦÷ªø.+ø" yä.&¹‹“¦ˆ,„‹uHLñFµÊ»t{êµëU9ñÒËfØOØøš¨¯ Ú—ÓUmÔ«?s®ÙÆðÒÎ×=Õë(6h/œ†ƒ¥6{"tA¦j ŠÕTMê Â;Z.ìU¼…!ݹ®ÑÐ3&š ÛÀjOÈ™Q窦Ոx‡ßsðäG8Jš³äX¸2ïGÁ½{Z²ß¹‡¦Ø'þ#½óˆÅýgA‘ ÖÂ3ZfJdq…]É\A,,ò+VBÔ¸I/Šður€6¹¹»£GÄj: É2J¤ÔY ü‡…eQ¬Ö-f븣_JÆ´?²Ýš“jH]¹Ì®O‰ûê*ì絘–cµ*5mèv¥>éDÛJD›âQ< ÅXLÈjƒçøà|2‰ßD#ãÓfC·•ÌLTEÏ0ßÔ±YŽÊž"Wˆª9*c9#X¹ÂVa­¥bZuºQÌ(P7Šž"õb°Ž/5 (å4ÝÉãTï»|†MÙ™†W'äPv0¯<›‰uª] Ý‘R_ë´Iå]^8³anÐj·ŸÑI®Š±±B‘¹âØñ()¶Å;s¤yÑmÃkéÙœ5]2k ÁÚ•kÔqQµc‰†:©Óõ )›•,÷¥—ñûäqV®X^=Aï Óh2DûJ…À˜ž–6°©ë¢[w!¿Ht%⥌hmE4S;ºÃ€å$vCaÍ&ˆL)¢‹…a@RC¼ Ù íõÑC°9"щs1½𣴹-ñ¨=UŠyS=ìL›6µ®Î*l¢ŸTPÉÕŽ-Qã*40×OŒv—u£Snâ-Æ/3ÇaL6Ó5`–tcºÂÜÏÏÏsŒÃ×VK,šú}Ýê%Vgâ¥ÿvƺ„.Ž(µZàY°ÌYŠì‘ö†~Éç iCÁé º¸ªÕ 9{Uö>Ùíå½—¨•Týe<2õþÂVCò09mtn{:K…lª!^’˜’E¸ÿ NP»yV‚{„Ť‹'lØŽ<§;EnS!¸ا| (åWܹt80Ì‹+d€CO“=«Š~“Ùi¤j†ßƒ10´Öld\oeè.Õ›ÄC)†‡ñV<ÃK¢Ní‹ÍX¾ÍÂW|B·[6$ÌNO¹í=t퉮ûÔl¬žU/Õi÷óoÃÙæ@òF†€FZ­—u[ =§‡6ŸžK§"=§M{µ¾æXÛ+âßKÓ¤pamßqþ÷è$ hÀw&‚\8ÎÍMÎN‘¢Õ1NÎÎù Ag d¡ UFsI§"zQ;ÑŽ!Ù[$F§ƒ–ªØõq_íÑÄ'’Bä™_£7BáþéûÛE}ÆYÈÈÆçµør—GgCÒ 2rÇŠ´\ØDˆ±©Ú9õ/áÊ¿W&›§êûïÛÍÖöîãö¢¶P²¦Åæ2`Ø ÇSnÖèJÁ ÝMÈW[8­Á l´kê»D|Æ“_ýÒÜo«&ü  Å }†ž‡YµÕNkÕjÁdcJ•+r¤Ó‘<ZSê Š »è£ ×a7⃙F[;­@÷fןm°Å葯‰ŽÍ¶¹¢ B´™ò&BCAKˆÈ´]=«èUáýëöÀ)WL0P2»êOå*¤µ…Hù'UH·DZÑÑvÏ5[Þa5’¼zÑ” ¦ÊÑÓ•X˜1‚± ©žê/çå-Û â°íÜþTßbq&©(#‚jª„×Ù#<,4Ív€™-é囘Î8†ÈM™èäóþbN„)ñ•èùv_cý-¬ÖSìç{+½Ž’ØÙ±ßÕðG»QÕ°צÿ܉çADšV .ÝÚÙ×…z>½JmÆäWÖð†»GÇ0¯ƒ ×ÖP?"3ãF´uo.V¦iÆ=ë¤sÖŸB €[…šÅd˜4ëæ‚šûï§ï7~"¿Xi[À?müð5ÁÕ:Ü6 ÉmBN¶—jg¢*ƒGƘQÉ5 TbëF¦jYÔº®€¹«~7È´PEå&¡Í¶t¤~‹gdE0N¸<1ˆÑ"<»2΃XgP¸â$¦BÇ$ÁBWÏ6œŸwŸm—±<†'dU›®“xP!®«‹˜ÕaÞ>º›˜Ñ…Dð[á &gâ?|“rÌÈ'ê•LŽm+#Få—dÌçÜó$‚£äY¿üÂRDZ`e)œòh®Ð7ùQ¨­s†£‚l9õJÁ´ _¼G ã. WvÛ6oyð:ñP:婳èv9ðµ Î 349³"d^'îâñ¯ŽÜÁáÒŽ¸½¡%6¦eCè:%3—ôeõuáTI\±£xT=ítÔ+×,Ãp nØêí´à€Ö²#IGt£hV,¸ìXøàÌZËÜßÝ=„âzpX[ЇGj‹Ý¸33®½¢d(Ë™àôØ Ãµº v±qÅ@Dg(5¿¨Á´  ,C§7 þóKÒp"ît! y°¿5¨[«Æú€Ho7݌ݖ@1Ú®ý¼¿¨HÁ¦ ¡î¢BIN5N敲ձG:bOp ]˜ôÉé©C¤NPEZÄY•rNˆÉ#žNäô^1pÉî6µÍ¸µÍÝ€ržW§3 È„žbòŸw¥gÄ­2”xólKZA—l.@£B¯¦™¬¼'+{WJ=U¹iFòƒIÙ?”¥uËì§àQäxòÅe£À¬~á×§ÖÊ.¨p{Ìf9dÌ´í>p«†^UpkÁWkï½JÛ´¨³Ä†>¥=@·›‡/ö·Íæ%jRKhèIJœ„ª±’!))“¥£_5šûO^« œW\Ì×n¦Å«dVQÞ%µ¬Ï¡Pµ+³Q7Þk•¿4Ö e¯'>œe ¬¼Æ[[¶UmËV- e¬&ü¤ŸàÏBºa‰ã÷ ëB…¦gp=EU4éÎò`ZC»U4´»°Í\„¯ïÀC³KfFYÁ§sçU©§NLãiþF‰/_ ã²X‘w6týü{Æ÷-ñW¾6nì¯KôÈ‚Î;Ø®úE[@vºŒVÎp,PÍ]ô€£ ±^¥½¹#cÉ™"X;¶Ðï}ù¥Ñºr¶BŠ%r²ƒ«‘c„£âoœ¸“8똜Äñ<“•f§âªV¥æE³Çpâ'$ÉLYkèÙ®Á@•FXˆË©Xfµ!Uè»ÐÕé€ú±-—H•üF΢‘•bÏ‚=á‡ðY@RxbdUc\º3)‰Lá[-3¨S½åâsн[‡Aö9Îl;ú'Žû¨_Hïí´êH¥Ã¯\ü8K¢EWY³i¨Ú°Ye;à þ‘œOþA>Åá)©Ví±ðM¨ »hŸ¶Pfæɳ,€&þšÅ±]ÅëMȉšmïéhVtâa’ÑH8²¥„\™àx%dòºG±ß}1uN#ĦøƒïÂcÔ´¿]‹XTX<+ÌJ\Ð?Ý&rJµáC’÷vYv:h,‡kÕgZÈ $Î;]ѱ­l˜"šQÑ»¦-¸ž< #™=ÝÌÐ'ÙÛÊáÕâiµ, g¨Å»"f &n&Což"F3딌{]'UòUõé÷(Z wƒp€PÄAì°£8[ªs0f0ìó­„µî<:й-(ØRcX9útåæè† ¾—ÑÁòÚ<–_Ù¥ÄhYµê­üƒ®“|âTov¾×Ôšô(ÕrÓ?í" {7¯?.(n“3n mÖëD4Û}ü[4UÍ3±ZzRt „ï ƒÈ^»ÙÔR­5¬s°^’LÍ•¤ÏFD ÜPÇ'}À(ªzUª@ø*ìtJ•¸cŠÅJ~sÖŒ12޼k#ÓÅîÕ‘ˆ"2!ÞX\ÓçÐ ädb¯Ó>´O÷ @—‘J¥/Ñp<½Òï'øúAdCz¥é²ôn„-<®vKêÖ›COD•pÐïhk°³~ÒÈõE´¦>ñÐ`ÊTãׄ‘Ñ8œžÑÓ !»Ä3+<è'ˆF‰X<‹ûȆÂÊÂÆ¹>ˆ¯bz"ú4zļ¶;OosÉ££Ø]“tù¬k) |‘·²“Ù)µãû¥<«ýP à ?Ã1ÓKÒ÷ «Av¹Çá[7¹Ìkô.™9¯qææè>ɱ qñï)®*Z,RPªO¿Áðk =Þó£'?¨*–ärü>ࣧ‘@â|$¼´O׎Épë²`²šïTúÑ;-¤œíƒ¸hS½·°¼:!füXÍÏö~¸o×ÊÒ9m€ÅšÆ¦öªucµÄ“ÒÞe}õ”wUDaÿøý¨F‚züAÂ÷USjµ s„V©-ê“7f Z$m2ÍËV(œzë¯~'ùÀ?êµÚ§›!-0|ˆ4XfG å ËÂæ¥æÕR·b®J¿³‹‚›µ!":-ï÷;¸Ï| q/pëây »ö¤?èO¯6‚T3üvi'Y¥`±À„ýÊ(#PQÓ+ÎGÈ7‚v„jÒ# ³é.;YQ~Œ†Gd;}1OX;Zø’‡úõKÓý‘ÙÌkÿÎk‡«f 3‹"x%=ŸSkÎXæ¶äºÑñË.¤ºÓHw9¹ü‚©¦ôŽš)¹wÓ Èª÷”_ dãJCv" ĚÆ‡Å°{®¬RÝæ’Þš¿×VE€¼--(›y§‚V*t^Å·­tn…æêµ@~›ñ §éö~âà;«â€Öqþð&›+’ôÌ™+âtðD‘h —s²,•Úg%'«É$W<‡oë2Wá(·¼æõÚ7Ái4Š&d舼…7ïjß|‡2ã« qcVZeõ`mýz<‰"u÷¦ˆW#AIcRQ;£N- RÎV"D^а\"å¨}sAH¬!ûfÐö±qc”n5®‰;Ш rô€e$úf ~жOo켜Cø¡Õ ï–Bö©&ɇ$ 0®«‚° »|•LæÌF>‰ˆíüËn Ÿ7ÉG )BïÏ#¬ôÀ–jõ,=S"ü÷N}fC]øKGzóæ¡Õ"滑òrÁ¯uÎ3Ê_†½û°óØADæ§N6JÊ¥šz³QGÓJ_”‚è-’ ‚æ‘t>ŽâÎ,†#–|6$”ö=½mAáàÂÑ„¨× ݵú†ÑeˆÒ^õó^õÅKµ¾ÞÏ-qŠs>ŒâZð¡VÜïš6˜ÚÛÅ6O4QD™lŠWÊÛ†ùš¨aˆWO:ªÏâ1ÊÁ®T/ºÀ]LR€š&Œ"ezd”Âÿ$nm3x?çÎB„ñ_ra9 D¬,Ídú|o2¸~1)†ñèt þ6&E…OÉl¤Â7 ’ÂêáN±¼|Þ…¾e¦Å´ðŸøzD®ãaèáùÓîP‹ÏæOŸDø;6Š`‚ûj'¡é•3›× ÎðÁÍÖ, Y®pÁð¹Ù¼AüdØ<Ïg_LÈDœ5Û•Ne«]Äø¹ÕL§Ú‘7ë9Yh°ƒôÜ0œª·œx.݉Ï»Îõ±§}Ù9¯™oyÜÍŸnèÏvÞD÷?îüJÅ ¦×É¡g÷ þQ©_Éö jdˆ9"Ìþc`äœSËc# scγ7[ÊFSÙ0X£xClÆ.ÝQ# Y|°çH4vžbtƒ*¢lS\-—/²C’³ü@Ø6ß@§VÔ5¥[y)‘™^ª KCÒ &ÎL ÎÍêÍŒà²Þ—¥(–lýu >lœ‰$5âÇÚŠ6Ô:‰ÞÎúäI”«~\ª½7„÷aO"~Ì4"¢žõ‹¥Ú{=ˆßD´~ {2›`6[<›"­GÖ=*,=Ä7ù¹WœÆ.ó]ôOD„)B²ù§–Ò®ºFºøšZÙ¾*‹ÚL¹ª™Áu+¡®¹Þÿ twú6|”G.ý-Ôù‡Kg-|““Yî–x¿ Z¹’ôÿ/Šá·ø \†½aÙU˲¯ÝÅþìFS«Ë¼¥?nË3³@<¸ p'` 7x. FÃÀ*‚ÄšOžì«gÛÏ}4žœIó¤6Ýï‰6|4èêÚÇõ…ÙŽ ©ÆcTgXqsÞÒ¸Nzüia»Zñ«ë^ñ«¹8ïáß'+ôu _ˆ šâRº<=l ‘èD9ø¸¨CPÆCmÿöLã_ÜAù‘©>2ž|øŸ‰'9—í1~<ˆO­pÒ¨ì‰R š;KèåQÛhÆûNwÖa‰yÅç¸ALf£¿ŒŠBf…Þãú]×L}ÏÑ×DÃïÔSÖ‚`gJ.<IÜ¿U<¨¨BZ‘‡?Ès6)¬ðѹv "2·(2QaDh§¼øS ×+¹_ùúgT`Gh é/Ðv‘w}’ëÔÞ œ¢qFy“´5Ñ|"=6ÔñŠùøã˜-ò2*û.5ènµþö8ô!ԩ̰vòlôf_ŒL™‰[f²\™Ä-“,WæÜ-s~M™€LÇžôGu)0¦Ò™ØkÀ¸yÙâ&Aqc}ø/§1X€Ì§xÿ ,LÊÂ1ÿ²ÍÒÝ ˜Õ7.¼TRØ|x°Ï£Ëúi4M®2Ykàe’®6Ý\‚*Û>”ÓÀüiÐFsÆO’æ áüöÅÉ :*§}’´Üøñ‚裂z”Ó>4§Ùc0@¸( Ï£öÎãƒFþl* ¡ýžöÁö^s¿y¸»Ïî0m†RÙ+ev`hQ:Ö÷HÚÆÈ iߌhC錨ðg€, Èhþ˯-zOk§ Òjá©Hf stÐ ‘Ùòê_Q4¤†5[Á¢“ƒé¤?&ÓO®5}ÌAßb"0sBÆ–®Œ‡ÚÙ×±ðw¬Å«ì”òh࿜ ë…UgÞTaUùäžYWâ˜*æÊNN(å0ëPT ¯_=y‹Ç_Ôt8Пw9+·±©ï ™¤Í÷y%Öç—XߤWfr§EŠ“½±’piZêVTg…£Ù÷p“|Ÿøï#­ªåø¦(iéoÖnבxÂá?}.¿ÿ6„Üqr4A ,—ÈUÃJ&ؘA¿Q3bšÜ·Ï(*Y¼ÀG‰~ŸD±¾1E€éÏ"mÜ«ƒ“oì•ßâËäME¦véQ(T£èÆ ,¯Iæhl©‡µ5´’W ¨L G˓ӇƒÍA ÆÎÐh÷QÖHé°°x§L··.Üöïxaz R4EΛ& <¾Sm s,t S8‘𸤧1ôeÔS“~J„ n~g0ÿ(o&CDÓHÈ+©+ö\ÏbÇ+°þH§a];\8wIý÷£•WaõÿšÕÿ×~-µêwmr ^[Eï~cÌx¼©OÇyr3þdµðUºyïÍÑ“ökœ…¯¢k188oþ>™böiàö:®GêÚ÷ÉAz°ù^cçP\ÐÃ6Œ?КŠÜìè8Ú&>jüÜnî?ù’)|°ûb¿µ]öÿzEh°¼dmä;ÝÀܹÄ6#“.ÝÚ íŽ6•)pœ7զđ2³.ËN ¤, À?D[À/Eœn²ûÈß`U¦ÅãÒHÇÁ"="§zGåúÑÑzƒ!> `c‹ÞMûRm)Ô_¦š† ËŒžvØO¦Aù&xB#Š]6ü-¦ÈAYÇÉìŽHôHºÚJôüíšïšˆD>ÖÈ"¿Õ>…HΩ-…èΣ?—…㼑6¡9À,HûGHBÑàúC›ö„Á§SÑ7BwÔ€Œöc¤› H:c­ïùoþöIßÎÅüÙp]Á„ÜËŸ‹{éi¸÷Qg€i¤{KŽ{väÝU×OMAâpÇ—{Y—§žwsÎcŸsŸÓ2üqœ¸öOG8L_4Ôšc‰0ƒöØÁß³+§dŸŸ û9ôfÔJ„³|µ&<óIT3|ñUÝÎXµlôUÓ7‹«Ô"ÿxé²™%µ¦ï·Ò¾áªõ¯Ôú×rp3¡d²4J¶¯€Í™f&Ðë%g˜¶¥Ö‚À=Ö IÔîÏ,†È)Pp¬ÁÃDÖÖ6œz¨]¢èO-X00¿Î ]wÔ*JÊx9ï£ö’Vñlˆ»þ*‰©óƒÈpwß/ZVâL L+˜s÷³`˜97‚td…Lbn ï—íýƒÝç<‰¹%¼ƒÃ} zpqKh^<ÙßÞÛÝ?tš¸[Â|±ÿÔ_—­ö4â» Ò L Ðç ©‘Ò×T“Í”ÌjÈCÞTWê¾ÑÒD¾TŠŽñ ,¨žxl gÓ/ R|2ɰ=’o)ûP^o<ß}¾íE=à(ïäjí>¼ó¤}°s¸íšÔfÃ$äιt¡"ç‰u¡ ·„ÍÎhñìp€áÞÇQ\aЧ*¦“æÕên~ͪóqãäËËÀ®‡Æ:ÛÆdlá²È–w _âPxžäÅ«$ùĨ;=Må|`rFÓŽ—Ïñ î€ 3~+—¨![(]:íJ9}9tõ…Tăsç& ã¥lë¡´\÷/)°¾go?É9š—¾Y âä3ic‰‰ØT…ù©¥ ~#‚¨¾ªyºGZ}½–I9’,õ.Ý'RóÜÀ9b×£ã‹nic^?æfF™Ô0å#]téѾt~ßô¹¬}F#K¢ÄâÑH+t#¸`’‚}ìW_ó‹6,4ö§m0N1!µÔßguM11L~œOÂäŒ=6r'4‘ë:‹i…¬ôÝ  ÖûFÅ]HÇøtÀº²Ý˜9á´¦ÔÖÿ>ÙÛSÑp6‰‘„ï耱&Ñ)İ'ÌÚüÅë4ß.ÝÞœ~Ýbá2Î÷ªY¼`s è…ÊxÖ¦ÙëRž%õZªúDø3çä<š-!÷&”£`ͼ ¾UÜh—àqøÁ‰e«Íb²œH<Ñþ ÿõŽC |_ëj_ê œ|µ¼‰Ærv‡¨ÊËì+~ü¡J€vf~¨ÿ„ãܲtetí:Wß±âAWü؇ùî¼£èÂæ]”òå-(u ÖäÎÏj®~ÒÜJÑ6G/1ŒÖ|‹›¢:F]Pe‰$D* Ž•Î”ôÔÀhžÓÔMfsU&>X­ƒ@nz¦74ƒ¥‚ü¥Óib2Óp~`7¯´dÇʆ–J=]1- ÃG´ÇÈ2ÒÈðÞ}Õí÷ÐNÞH¼£_ s_b·iÚq@þÚbÂøä;àž…Ü¾hSo/•Sß1e‘ªRY$²xb ¼‚¡FLyÓØš½3j: G§Q—-MdÆýºÓûæÀpïåOap_oÐ'Q&ß`¨ÄÔ·“Å­I,‰Aí¼aG?n Ò{¡|äLvp°þ½¥»O¬±a4aÜß>Š˜×§%ŠQCoÐŽÎl2a'l‘Êr]ÐŽk‹ÙMßëÛËRP{ø žsÚ)f߸$RÁAÿx€‡2‡…4@ôª¯ßóõ¬¥x†‰,ñ¶Ÿ…åÖ™+PPÙ÷^UpXÊþË/¿z¨&“”³1ÚyÁÎ&åQ2%èW¶g“°sU³Ô žwU†Œ"2Zœq¤ö·è¿á:qóJMn×?ƒlôg8žÄÃ>û7c×B×´ì–¹ùéûü;:&nè„ؘ%|³®C†£ãÉÐ¥/Kl)ƒÞÑõšwB2sŽþ°ŽŸ¡$öIÜ¥ÇR¾t-ò B‚Y! (7ȯOg©%—°µäµD,›Á’=¬çn›Í&&f¿ä!íW_ÕÖ¿®}ûºòj0…?ôõÏ×åk d³Sk#GÜ'hm¹º£·7ªûôÚºiT–®üÁ\pÜ k£¼·‘KsAVȤ…ãhÎî¹®â5©øVÕÒVBûŒé]Ì ËáLÓ¶ÇC“äÖtëžÃ`ƒ¥,—#/‚:Bñ[>1…ó1 §S´ðßä-ë¹#î'†Ýˆ‹RCX«!öï'tëiÝ(}ØUÌéè(h%0´³„,°„òÁ—Þ9î)°È(úoøA±ƒjƒ¨ üɬíßš„gQ§OŒ’šÝó>\ÓÉðÁ’Çmºp‘;½‡í~šYaÓ-é’ÂiÔšš^8¿îþL]Õ„ü,á[[hÅ2a ÷ÙÏ»ÖÔÅ=Îw7¬Ÿ ¨¢7F¶0 ÄID`©#¼i ôˆÛÉ¥äwê1 @ÚX„ƒóˆÎž¾ú>±?AO&Iy¡÷§QmMÿ»Q烀þ!_pvI*‚ú5Qt ù¸RÆc¼ÈyÈ›bÚù1z0î’)\~ªÉ™ûJíÔ u´äo'gì¥B²9pTµÃR‡äk8Èóºì¨}¤ŠkKWœœá‰üa•2 %əЭçÏKŠÛºÓüF±ˆÇvD̈V”íd—³©^Oø‘žñ#=åæc@jÄöD_È–‘kt6ÒfâpAB峑 ²¨‹÷1ŒÂ|¨Ý3ê2†9a–Lw^Œ˜±"ª—F!$•ÐCTó$þ+‘ܸ ‘‡d´sÐ^3cÉršˆvL±¥ìÛñ‘…>DZ¢Ùx¶Ãm´f£Y‚×TW™Ó0×Ûè<™dGÞî„ÊSe(г5]4Mg‰P£0j.<¸/‚ÉKÂ[Š<Œ/†haØn‡ã¾¦^¥u¸û”pâãz Õi›e¥ýe°šÕXdUËøÑXéÁñMÊ8ý Rஇm¸v0”ÑUà Å>¯¡“q¿AÃù6xoùxúê´”ÐUò‹"4iVE‘Êw‚zÚ…Ùf£ÝNqò¢ÙÚý—*»‰q©¨aÿ4D-[‘X‘çÏî¶ñôdwÞ$dìÇWx´tùPmt)t’t5˜n%¤“OÞXT®ª§ í£"„ÇÒ°—\$. ÂÕ†‚ÑF†))¢MN±¿ìKf“tÑ©6@4“g Àé$žU ôz€´{P€[Œ=4¤ ‘è“VÈ\™7z$Ä€ŠƒS @ÔÒ âÙ(‚WikŃè&$ËmAÀdˆöÉèjzMZ¾1"C8œ ¦}hKwÕna›˜ÎJõè`«ê,G}¢yÅÒ&‹,ºßy~pØ|úTãz$kßñ;€8Ó'Ëí ýf` w:ñlÄZöã(Æ©<¬P÷g: Ƀ¤J!ý„±Iâ7ÿ µÀhb!Vó¤{kuõüÁ¿õWÖë:J¡¡d$mvü°8Á|™$?Úî. DÄÙâäýʸ§¥Ýv8YfÍ$S3ô®C‘8qó$C²{ðxǃ֮ÚÝ:DŸo0›0î1x@± ½f¤ð–ÁâŸð6°"ÝПZ •Lg½¢Ü  *qBŽ2Pº·æ*TáFÂ1>Õ›(m j`›V±JJàýÞé T‰U'¬O4LˆF„µ©$ ÐhU “glO½(M(:€QWÉZÚ0›üË/Ymš<ºv“ñ09½¬rlx Ÿ­†Ö, n=ì°ð§ŒàFþ‰„²ðbºè+Ýb¨ü ‘ –mïø|P{V çÊN ½t½ƒIÿyOj«V 1à7š%|²¬ð 7ȶ4H÷²ö:âTÌ÷ƒWÌIÄr?x`8qø±Mb¿wݨT; šX8_të.Ü‚z•ñwKrüà¬Å4½åÀX.¯é¿J½ò‘}cáÐ-BÊÒEB‰5FUâ¿Æ6€¨»:mm7˜kæf ÏZž¼³+‰¦ï³â=‚Bõ«¾["…){I 8/¦h ®C¾$hh…™GúV°%Ë݆8î„Á¤R­¨ê„¹4T »Ÿh äghJcMD¬‡7déÌ:våɨ#”³Žzû‰”g]º˜‰íGnWŸ¥È€eà@Àc – {Áäk#üÿæå4©‘Œqâµ'OÒg½¢®Âx»$è ø¡s¼øîUèÒ{¤ØvÈîôèM"Lò Àê ð6F%ÐÔ`bĈuäê¤Ö‚ D¬¹ýæ3¢8RqRñD½‡‹L¶,3<½¢umÉ­æaÓ+‡n)4¿öÍÇPøæ„¦¶oLZO ý†ií}Ú¼¶¬Gr.ìaÏ{k©c¦®Lœ’ð$‰³iD·¬Ë½RÓúTHä¡<;Ë];+<ÑÏ/ü(Æ/SxÛô¥ Ä”ahñ˜ ÔÓQáèþQñèË£ЉaÖ×B4¥YÒðùm£–ùÚ$‚똤”>.¨úHÝ»¦z"ò‘%ZÊ­Yí±*Ö+1gW8#«ØZ§‚MqrñÀkñKÊUÂëœ~mB‘Ágø7…ŽVŸÊ†Òžûìëâí­,ÄùÕ…³6Ùßå5„WЂþ¤«N‰ê4¬Ú!\ÖÑ}É–qYlÆJtjl‘°Ï$“2)¹¶³‚ûvŽÊ5²Š# #~†çΖQƒ\Z2‰9DC ¢ÑkÉOÞUXàÁḢ¨9sÀ\Zƒt6¨,ò¢_ªc Œ«O§†çérL¼B@mYÝcaÏ·U<È /ét˜n¿«/õ@\9õ-QÔ l¯&”3©2|¨vOS1N1¿SÙfH° ø#2 äõO)ºf^DZ EØ4\ˆÄžfaKEý^Å^]àBRQZK’8Uèwõ²QÐUª"gXÖ€fy|µIÉdêZ‰,—Že¹È3‡ã©ƒFt„_Ñ¡Çgã6.%]⢭¢†@jƒót!¸p’he‚¿éÇœˆw¿|s³ñ–M­îÓóÎÄm´Ï[3ÍpAùsõÇúÁ›¡½Å½àØ0dä}õ¿3‹D‚ö\8ÖùÃÛrWlªA†s[ƒ‰å@× WÙ7zCó2˜ÍÅX¶ŽyÅtµx•y‡‘ää‹€µªhüôü!‹-ܾ1Ís•µ {åXÏ¥¥¨˜70V#ØYå(b6‹g3¦#ü“° œ#ÖŽKÀY{³lÄ™áØÛ*YÃÈȉHµÇýnñ!] K‚ÑFq)µò/‚J­èÙUe…¶<¸Å/ˆ™Ÿò8EÈ\˲íh+‹..Ó‰ÓI8JðQ±Çk£|ùû—©’_nós„ a•ÍȸI’à†"í R¢¬¥›“Ìz7iÎQñËTÑ…íÙâ–àëÝÒ;E$Vî)>'•ËÊe©¢­Š!Æêá¥}XûnRRB¢øºþå—õÓͤ¾I+Åz½Ìi±«§0§•Zg¡h**#1±}9Füépýŧ¯¡‰ðEëK?Swºþ‹R²HYÝÚK¸³=Û98ØyþD.j¨µî^Õ„#g jçŠßŠI€4 GÅw„õßãs“-V§HèšÇåŽå”Ë)%eˆ°ByZX¤·ƒûSF†Š‹ð…¢€VÕj?©ðˆøë<¬ ÛRzÈnØ"ÆÂx*ÇMtŒ­’@(9O#Ó8F¤¨¬·¨kMu-µpû»“l¯6Ïî[§²’;göI²äÏu~Ùü¢gºQs²µú£2èE2ab‘,œÝâ®°)~—ð–Ä×”(¨¨Q` ¤+ÂŒ8èŽ/¢s”ꔢCýhO‚€è#½©Ê# ž¶“8Iªâ“d €¤ÎlèÅòà‰uãÃ$/gñHn\%4C²Wò®q®`ª‰LfyÇÓOr¥"¨¢Ak&w›©M‘Â.h¼ï(Óo_¢½Þ©se¿@‹¹qO;N±÷¤Mäƒamâƒ[>ÙÂu.$$[úIư®P¼‹æãv.ÞXœ‚kÿë¡¡s(kÚW*OxŸ… \Áÿ/:·áüÓ0\ÇúÇYÈcý;\Qw¤òW å^r¹ôâ  š`Œp0»ï#¥1—cÊü8nf1Ýð`Ñz¸9O–Kê¤0±®§ÞÅiÀ£ŒQOÓ²*^gý•>•©ãæ]‡anP>Eüátÿ#`Z..qÛÏ}‡WæãoÔ>1dâmŸü6×/‘[9±k'ëyÆMûsQMÚN„­¨Vg>eú6 X¯ñi¢ Cø  â ÐÕmyyta(q&2©"™'Äç@&4…®2Pâ%d®%ío 3y]B¦ŽãOSŽ;~k^Çŧ)€ÿÌc Æš× ÝW,%_Æ7ÙjR¸Í‹Ì ¤aØ­ƒ_†«ãkålò Í—²yö¯­ý¶³5Òr6â/–²Ie©Çãi=é] Xʇ£U-ÚÁcsJ?,”q;QËé[^”9™Æ¬Û=½1¯{â7 ƒ®½e~ñ.qwVЕMûƒ¤¬J,ƒãç¹.™a:ýam}µlœu¥×EcQƒM)yŒÛþbÚß<¼[^ë|Äoæ·«ju; 0Ó!6Ù‰œûèÎ 9ÿÉ]vÝñ¦î¸?ïÕ]êýxu÷ÆÈb9˜“Â<½kü“>œx~zO f…oÔÿŒðüǘañ]]Üêv.e?1zºùë¿> Prégˆopê½<Ÿ^æQÒkë“!•±YE¿™ÁüY¿ùÖ¥e‘Ú¶÷'ß¶Uª¸"øáÍcÞ^à¤øîYó_ÛUdF¾Ç3"Q@ÒaTy ‰“ù…½-Œ8åÒËLÞª à=‚<Ð磻þú¸˜'©¿úÝqÍQo×OKÇ®£Wg¶¤*Ð’ÔíÀZ§¨Ä"þþû#1½Ì¯Ø VHÎ86‚{?QJ?ýôÓÿüÏÿ4d üYÒV›ï“ÛIV Œ‡‰0 Žd&Nô«õ×jÝáà ÃŒKöOm“q¦…£½ pŸ÷¨ÇY´‘þ¸*n¼6ܸ`,ñFá2ð—)2Šõ$õúH¼of!ñË ®î£âbp0êØ†[ïßk^€á´}ØÆñlü9;Ù© @ÝÙ+˜GÚIOÕ¦0ÎìL™e¢ rëRšû–ÕFKˆøTÕ§šó„å%´ÙÓm.pö.ÍïñzÃ?]ìk«Š/ ½”ží4rß!ÞqÎ6çlSÎ,1Êþ|)' -æÚT44|“ÏIךj…t`J˪ù¬½µý¸ùâé!*¦>Ú=Ø9ü­±ÆFÑFñœôuknn:-f|Däåa´@ÁÏê`»ePñµ@r¨ª!n7ÚiRªÍ…ڦЭI-3%Tø”ø¨¹_\ù¥\ °&†m!¸N.Í‚_ë¤ÖûSħÅ,Vj{?ï>ÿmCé´¦«èEa®LÄ#É»3®Í>ŠƒÛRýK€Ïr†–+ã±8–)”£ Wû/ÎN)PÞÚÇØ¼½eܨl1/OT~&$Ûžµ5[ÿ:xÚ<ø}³ØÇêJ-hqM‘W`¡6u,Q ºS\áÌe@¥7_kv!ŠÎÏ`ŒJ z ϦCºÆñ`@"It-šDc–_*TwjÁ¡}Ù(¹–‚¶å”Dt•–‡dP]YáÌnà©Vûy"FäRÞ)¹ªô9§‚Mzß>*ø† "ºF×Ä´P¯í@z¡‹üë\"“Àg¦µ~{B_=vÚŠäµü›²¿MMØé¤Õ(™â%—asˆ÷i0Êò°ç ¼šÁm4íO¯´ ª° àâ$ž4¥¿¸b°u^¿%w#×ʸå°.9Ôr¬“Œû1aÏL_-!@’gèÆ¥ÙzºÛj>…CGBÕapG$å}ˆ²rá J ®fïûÂ{èbóÅá. c" æelSDhœS»¨âŸ·›[Ûû‡?æ@:ƒµM¨ Ö·óüñ®µÌ)„U£oÃ),<†]r¡È9y3½']c°æóP‚””Ñ…#¸¢cE2Ôzí»Ú%‰*G„趺ËPî±vY€QMvÔ­àfGÍäïÅzÌ ~‘µým- ÃÔõ8Õ¬­?¨®}[&§kðoìÆüðA@Ö ¢ÛhÙsExJeRéþ•×rލK¸9˜Ž¬NNÀ^AÙ©q #{2`W™‡Í=Õ ÷ë2 ÞF$INr™T`y^B–+‹{{ñ¤L¦Òdå7Ÿ6÷©æ¹Óòú÷„C>©KÔ]#epj˪7lTWHÿ<9£+QõÔŽ29øŒ¡B´>Œö²úS¼FT5 HñüV¡³¨áACR‚Zq<&öúkVäÂý;ŸÅ]¶Y,Ψq”Ì„šŽÆŠzCoÛ(½‡;·Q‚Yì€y.UgÜI·ºÄÚöSt?æ´¨Á©˜B±ŸÈì)ÑðÓ9/!_‰Íy@Ó÷àø|ÉÂCIxåYSÐÌb:å´é–ÝÀ b36ê{»ÿÚ$‰l@öÚG6r EæHlk…èæ"™ Çl¢o¤PH…¢I–¬þùSìrU…§§äÜúœýª¸Žï8a–z65“£¸`LJ¨‚³ ZÚ‘4O¨•ÝêaWâQ¤ôAO©÷××þùàŸdQBz‚Ÿ€=foåó>.÷¨¢4Û92ƒfåìõ€PcW‹Vó’K“aÉpU¡±3²ºÀ:þ$JOÃ]ŽáÌ&á0>᱑1Ë‹Þa4’ݶxvzF+¾CÓ&:4éiÚœ¦Ñeb|ùΠÒöó­R°“/‚à7l„×TÀ^C´‚¡'émŽ€„ŽÉ¨%êh;hA¬í5ZÏg¸È£š€–²+U{%(ª­9Š“\-¼ßgµtëˆÊ“ÈŒ>6Íæá'tΨ÷ckˆta¤lè•ÜÙÒ%ÚÐZC›0†·j ta[m¼ SŒ®>ÐÀ¬ ÕÏûÑEm|6þ±ßm|ýðÁA F3¦ø°Ùªz=ý$™mÓ¹Rê±5§_#ØÍô„ò¿—M¢ÀÚcBΠY&@¡ÿ$È&ìÐ8Ýi$£‚:éÁÈ¡1êóHïu³Ò­©ÃæÛ¡// Åf«µ½w؆Ós{gw¿½ÿ̪Ð5 Õï@’¯m-Yû,ÈHˆ†üË‘¹t¥\…skÊŠÙå%\w ùµ{‚ÔŠTYþpóý5ÝÄíhÞ¼öŠ+¼Š#³íœEÅ––„>$LP£A›° èŸ\…Ö¢Žò&ž–™vRM_ .¥ª¶›†«™Ø{¸}Wvæ—3°ë?@SvhÙL¬mkÌï¦<ƒÑZ9è°- æéÙÔ‹¿é\áÒùóèéáÍ7‰ªˆ$ r4K.{SÉ¢¦ð6™\Õæ\Aî8OÙòwœ§;ÎÓçéÏæaQ7¶@[XšÈÉ)+´Ž#j;?/+Œ9JE0 éTßè¥D!jõ‘-OßθQ‚ßY¹] |›|óE¶‚¥ûΉa2a¬ŸFø»ÇùT¿N;¢øp>11³Vë#H™µZ¹Bf­VƒÒîDÌæ‹˜Ñå-·OFÚ ZXôÌû›7¸:RÇ Gý}j]éÅ<Å9‚V]‡4n‰#>=” ;ýÑÔ¸æ 3¸N¾;TqöŽ×'…ìÉikžÊÖ‡a »Tr•µþ ì‘£©…ÕújZ8Ow*Zy*Zz©Ðúp•³ *°˜Ø#ÖY£ånþ·ÅwSšï#‘|Ÿz¿£ø>AŠïSBèŸ%Á§ß\æâ’…Èáv¸ànë/ØúJ+}µ'd§ŠQü߃Fä¢MÜPcd¡òeP,ܵ¡•PéK,楦ëÓ@:iâ¦;©W’ìâ6„ê$>eÙ}œžUŒ¡5z¿@!0ub7†8ѾƟƒÝ é¬ß›:ë¼HÌ/jÍ£~E+²1›w3Î4ëÉq„¶ÍÐUF¤ÍÙ‹%ù"sŽSí£ðHBD"¬I·´K)ªLW.öOéÉ»Òjá›9½mPIµi”VÉ I¶XUOÝÑìÎMÏê»õ”Té}ñ'«úŸ‹†¥ˆË”kgPƒ=Ak~ ÊÓú¡º¬9 îŽ¡; 4³áóÝ'p |ÆxGÂëƒUp•áX„‰RÜÈ|œó_©,Dzü41?^Ÿ‚ùïã[*¯Oiû;îæGænŠe)×׆ û»å'™dM7p£ïØKÝÒÆ¼>ÎÍLíO[/]ƒ–s¡¡Ý‡@ ¡ÆÁѱ(ï âÓ¡Ò-èFÓ°?H|§ìWe]òÚLŸDÙY¦—eËE¾žj¬e»²Ä9â´X„ÃyXØ)ˬQº+>€Ç– ÇØèyXûCÕsUýEUßÊ·àEœ.œýÉ•–…“z‹ Ô\`q¨ÂÊJ‘s´]áÛ>柣ղ€£>7Ž$»XðÒl-4m”À¤Ž G ‡¬èäF"é@pˆEéý,«Ö~,(>+Y­³QüÑ=YÿPÑA$dc}-< ð€Ÿ`ftÄ1íB6-jÖP,¼K*N†ç¿¾ö¶äUn[Ö)MÝ,ëÒ5↤,5`jª/K.Æ#ØD î¹>’ SCÌå7á½ YÝ2Ñ ¬J§"ÔWÑw“½Ë£ýÑ4†°nWŸ"ÞÆuþJ ªà½V¸ÄD­Ø6 jÒ9È(ÊF¦òÈò¶*¬‘ÛNü[ëüö ‚p«Œ@#ó‡“+W‡l¤,é`´lª1S¢TÔD§¨ÇÙ{[ˆýn?<±ó$ò•¡×`²ù(ýB£÷ÝÉ'$X>,etñN-¯†hÉA,¤ü¶„Œx^1_˜“e£Ú¢TåÙ…‘4Ç: Ùª^¯~W¯WëõÒ±8,Öš5‘‘ÈÄ™ÚÀ*dyÒ쪾´~TdþÂ6¿™I›w•E€'C¥q%û¶Ѳæ…CˆQ쨛tÚ|«F‚ ]í²÷zšvúíÒßq÷„ÓqQaàäD~NéwŽéN.¥óÅü÷äßÚõ$Ô¨iêFӈʇi]ÁÕ§ÈhÀÉI É4¦wçì³Cï^ç§S†&ÿS¡sK»oœcWÔÖ¿o6¢j%W tµ©ŽGq‰´!cq°·X¶vh+lI]B³‰!”x§òÛ/··_*´_bÜÐèzÖ\ \$ÍÕÎk¬—>»ÑàÛ¥ø…v?µÞãY<™V;ýIgÖŸŠÚ#Ž n.ƒßÔlιÓ8°ƒR›»áBÇ›P[Y(˜¥î£üÛwipO¶é«ðä5a›2ú32L}*­kjOŠ:™M¡7àîŠZƒ@”cÉN4A‡[ƒ+öSP îÑ5F#ƒÚ*V1É \be]I¹Y´Gà/ÒMë:ÔÍÖ8Ž.ÇwÔ7TéÕïµ×«G+GµÚêQ06ú§ä¾b}Þê!;Ö$¹‘ÓD/ŒþTìu ´ýº!w»b†á{hêò(²S\—$Uäq–÷=ë]­"Ù¨¨øüÁe‡ÕѲ Ñ>H½l³Í–ÞFh¤Œ÷P¿(ÁA¿ÖLf½éÕ†ûÄvÏÃÑ•žãÕ­µÅ‘]zÂpºl„EѹsƒSCìw*çi±G¢Ë¥,îù¸7íìu ýjÁkî`Š }E¡cþ÷úª^Ê•¦Fþ¿ùŽøí·ªàÐ4â{\(=»Q“ÛÜoËê¸ÆÄÙMÈæÝ%5*rˆ+ñ·¸]¹ ¼#‰ñL–¤ã5©)ÛÂÛ:ÚCVu2¨wåõ-ž"1}OH]ènq[¥*FZL½ë5u"U^™4£8–û,i¸¿‘vÛé© ³Ô±{Ù(ÑMÍD•È{ѱXH(©•‹h0òìÈ£sœ¹2Ð;² áƒ{4ÚÑ"sæZW§ýQ…œNÚÈŒò}:`ŒJºZé×¢º6ëEä?̇^&Û“²¡rAª„deá¾:ž K²+ÿ2e¯MÂ)úÔi1åI· g„ÝîÜ»ònƒÝ?.§>¶9£ß¸\̱¡œ\ý{ùÅu›£ Nº,¦|¼z»À!„r^ÜD¶±bviÎ_~RçƒsnpúÇ`V¡@V§ü>™vûqíì‡ëñÎÓmµÚüÒƒ ‘ë‘}6-TTá¢P†&,®OîJ¯Œ{«Ç®¶ñ‹äv–æ‡ey]^­€Z¾s¾‚éÎи³„¦Æ«Þd6‚Ž£—Ùhmö4‹çÜòh"‚˜[dª ºtý‡p¯âZ^ÆÛ^.ÿ*¿`®“‰|l¾áÚ»ƒ÷Ïà [Ý m©VÏE,%™Ïl¼± 1óÞy®H­yvãmAì^µO"íD; GKn2‹áS:1ÑŽ¹Ô˜KlRÓÖ{†‘6ßãb/öqt\­â*ÐQ·8AàêmM‚d&!5*9鋎Ë9#÷¸øKîG@ÁEa÷/}Ar Í¥Á<—`Lþ¯zÐJMOìOþwå“EùÙ>º_×ÅoÞåÈŸ‘›^6ÿ†û‘½éëo†ÜëÜ‚jG+r’çè÷ŸÏ!¸ð:åâ™ô}ê£\£jEw~²wšÛr@ιRÙDB›»þ×¹:q"bY6ENÿpÞ:~Bƒ>–»¸<1?¼SÀ·¦ñ©œ÷û½$«vzÑj·õ¾ƒf¼‰€ î~oÁ©R\ÅŒUõ߬7§ƒ¡?ž³T[,ÓKtb™B$’âuvÞŠÍöF1UQð! Û5gg3¥ìžùRÚ9OZ-w˜ðS„,±t›í½4Šï8@Ïo˜HB™:‘?ÄÎ_«%²l‰ª.sßõ ,1îtÚ§·ô–(Ýì´/¶{ƒð”'Ø äaÑË%÷‚T;øÚ¡dÜ U–ªý+I°n&·íÎ*Ñ‹VŸjܽŸ™ÃìÔ÷¼™¹÷©v+ob>—ýÝåóöМYú|jÆl*õÒS\3#¦=VjTè£FX€vjH¡a[ÏÚöíPÚu©ª»<n™X£ ËBÌwóÛ»¯üøYN§ZLYíìªÖ?¿»NodAÑë}çŸßÝÕû`H§YÏ%+î|lpße¥‡“Sä¥ßϲדéd´8ÞÞ6Ô³˜¥kI'( â ¢ ¡Â„(Åd «¤Èºß:P_×¾E“qk‰Ô.`OfxÑF‘K¼ û^­¬N: òïËjÅɹZQNsðJ–7üêw`ÖÉZÔÊÄ"Ç­ŽùbF5õ7ù¼7~ըσnY(-9-멯b€VPš¸LÐ8*ÁjÎÃ6z¤Pçò'Sµr^ãÃÂ+ð)µÒ`Ü1Á–%;ÎÕÊyÙAÍ ¶Ç~÷à±zX[S-tñVu:Èþ'™xt5K&6(ØTm>?ØqÌîã+‰Ôà ôf£Ž¶‡=§Wc”Ì…:“)Ü¿XR ¯[¥£ËŸ.©³è’úvP ¦ßO§ ÉPžE‰6ІÖã7,µK¼JéOg£p ®*ôðŠâr´DÈ,4:Í ù.!ÜD•.Kì6ÃYWý¿Žh°q&Q…õI¾h»]–;B ¯F|[Pÿ‡hÈlÒg T]Z[+}Ñ€Š` ÈÝmâ¸íW˜AH)œLÂ+hêÿE(Ë„6îyKh²툇,­|1éÃÝ•A7kÚÞ99-<ƒ. ,|örX…øZÂ×gìo\•qÒ{ˆûë}ÅU£¡ÖÔj]m¨ê:¬S\;žÁ ìjksç% Cî´ódöÑñxâ0ÃÎ$Vc˜Nh]4¡õ3CªSt¤ÈK!oÂgˆ{’Ç»»+—eœ1jûå óiû+L ËØth·ñ˜—ÎÚ‡X;3”Á¼¤=Ì{]½ÃÄ•Õ^™³…åÍ÷6ù›,Å9FÃþ¥c*j6jE1^YY-_Nè¯Æ,Ô€Éig3Pðq¾™"¤ô[¢ZA ¡¢ÖèïÖ^+dLyÉë6f.!&¼1ĬuW};G§ƒóA0; NDóÈûâ(¸Wm¹Vm†ªºÕþyïÅËöÁî‹ýÖv"_v0²½ýòpû9úT:h· ,ü©Uìä !2ª.ð~;Š/sCºL³øDÌÉ~Í.Q`ÎW<›óF-úTÒ1ºßWÍV»Õlý¼Ýþ¥ùT˜º¹Uãð’Ï“[HùØ•PÔMÓy©$¤#˜ýºem³‘q“®-•dkÃÁ¢óž¦ qn×–¼¡\HèJÝ2b¦´³‹ÀصåKªÈ…Ÿ±YÚϺsƳ™ºp¢MÉ ¥,Kòq™ç›Á,Êvü©°:çŸ)(j÷ÌØ¸!µÉ›„Eïˆ.!~ÖH”Wrؤf >6”`Oôxè´ÝjïV؈¾QWWÓ t£EÒ‘¢òVÞ|‘{f —P!‚©(Rùê“Ó!U‹YØ•I¥¸BÅÙÁÖrÅš^"A,vr2³!¬/:F‡í>¢ëêÁ¦¶¨B¯|þzã5FÖpdµ³-8‡•Q!_¹aÁ2Ô/oé§·9m›÷ÔÆeß}l+#*=Ò\netœ#Òm‹g dYiŽËŽ/óõÓ•}mÝùœã~¢á,B ˜‘qÓá´cŽSŽTŽ4%›'%|„VbÖð–uK*Fƒ‡Ö&)Kt&ý1ˆÂ=²óòÙöÞ¸PShãõ8†Æóoµ$Û£™¶ÄÄ7(Bð…·ØË°—&LÞâƒØH_ñðzBÊH¥©PA4©µ>Tø~ƺIì=Ž\M·WäfnØFÒŽŒ^¡c1 {* )dõjƒUœâüÂQqeÛâÀµ® @ˆnµÊD!0õ84öìu–¢XàüœO® @ëý±ÄE§#/ q/ æ\²¦ü­³"Õ³à0›_hÞáÜêG‰m8²>Ð êÊXGÑZÑ>|ûlìxΧr ëÒ9YH-h‚û]£“'ò’x,ÎÆ@àh°5–È$ÙK³ÛHO‰­<²óÆ>NYTœÀqqÑ̓‹4{X$`ñHý¼W}ñ’ÚvÚéˆ/`<—²M ÅøÑàèªÒ\èªæ,UŸAŠB%ª0³®Çå‘Ú*Ô«Nœ[ŒIJÛûTä}ÕŠÇÈ q&oË<ªºÒØÄ ë§/È©4მ€CAˆq¬CelQgìÏgºn¶a¿Fb£n†®JùÉŸÙîrdeJn´8p–¦ó˜LIÙ;aO¦S”èÂñxÐK³”¤ÔQ>‡“Ù7K òÔ° ;€G侤`ZˆLÑvœÆÁ’ ±P¢^÷ä¸ Ì„AxìPæ5ÕG¡n`Ï&dÐv— ¨}ˆ¡¶\ÈCG¼IáCÒhá^g÷?žUÉ#S’žýÈ ¢;Fé“êˆP¼ «ÿ׬þ¿µêw¯WÊåbýh½>.©ïUM;<9„f`W®è>7 âzL„x ‚ÃTÁºÁA‘+UE³Gn¨œ‚CL7‘Ëa±! . ÖƒMucÓÚÜ; zŒKýˆÓ‘?DÏ”î@VžÞ{Ù‹Ý$ÇQ—]ìh˜½Tí°ÚU©—ŒûëOeyø)tÃäl˜L»¤ÝÀ0„Ýd/^9µZÑw8˜ö&±jýãŽjcisI¬d%€Î ê‡@Ê•*Úײ^±‚æiU+Õ$q…WßÎh †öð Àº†æ•ÈhÖ*² qt‘6¼a+¾c ¬jüÞdöG³„²€Ð,J98´ˆ…"0(›%@K]g Œ+ÞÉ$ìB2è‹GUŠ[¬lñ¢dB•)Ý0ü'Xoãéć“mI³Gâd? <­ÝÑï'C~ÆÃy9¹¢s­ÊEµ}Ù«Ò`` Ðš?çs´í£K<|ûø¼3‰ÞÎ"tj¨;°¤»ª†º´·°{©N±p»½n»Ä¦¿Ãä¼ó­úƒ‡ÉUÂá~2 pñLHÍ‹cré ÓIü÷¯B<ÅCZl¸žiÄÜyW#8ZØý*b÷Íô@ÆÓÍã: …ç±1äü>%ã½Ñ5jõ¡U‚c\¿Ú!rŽúþpŒo5fõJž»ŠÓë8½ZF‘hâé(c– æO:Ó0«Ü°ø€ô7PGˆ“†Þ'6»ø|l¤ð”šǹI‡f ~Þ~úÔÒš<À+£×¹>w™!žGRï1âË/u®S øÓ(=Ý`ÇI¹6]Pü›[7#wƒ‚®ïLߥ`ºÇòrÆPûag¡Èxdl‰° DB¨‰%»ÑìíØáó¡E t› ‘³¸ÂÎΉ÷+½â–Ùí=2;h„ØP¿½^i‡Þí‚_kCݺŒ±­–.V…[Á¾›»§;N0­ú(’U(Œ æ¶±K¶n¡+5Ä’½˜w´v‰Ô‚iF˜«DÁ÷cTÚ&½}^¦Æ(ÀQažN> dPG…Œú¿Mü«mϳÂj3érÕè­ç/M-š[¥2 w|«ÏwŸî>ÙUÕ݇fh‘>»fœ?·‘¾ÁXçŽ6 ™Éà xnnašL†=o)!mœop¶¤Æ÷ù¢½`e¹6‡s•ÎÂFmĤF&áßSàØ…É,Ó¥çYOò¸7Åù#:NðžDO㨹c%鮤kîs® Gw;1:@1i1ºERtLu[ù8éøQqh€¶ÈÕB‘’aRûæÅ‹)¸ì9õ0mdüáÃédˆ å"5ÝL®c-ƒÁ±˜Ä‡x>ˆ3#J$£mÚduú½~G!“™gaF´™ô¥#ܪGQ!V!§œlŒOƒ­VjÕÊÒa¯5GjôpYmæ6fvm;G>g†# QÌ/·©^l·Ÿ5wžÂÛûmbM9MÀåå]ë[]ràeÁœAŠïSBèŸ%Á§½æâ’…Èáv¸ànë/ØúJË´'ŠHÃAf¾þ[‚ó"±h7T¡>K&õY礋Ð?ù2¨ à#µái ÈÓCjº> ¤ãåóº“â¡9^CTlewÓ¸ªÆáôŒ¶çИu }|aFfuŸøé¾ÐƒÝ é¬ß›:ë¼H\RrâR¤%$Zgý^/"EEëé-¾asXéVL2`¹Ÿã lKÅõë— Ö8’pDÚ¬Z"ÝbµP©LWΉýØ•V ùÁ$‚N%Ô¦Ò.{(®lý¥ÝÑìÎMÏê»õ”Té}ñ§‚AŸñé°è`¸ng€¾­‚;ÙÛOþú¯9p2þ—½ý,ñ ބׇkeop#óqα¼íËòSÃ4þx}Zæ¿odåm=4WÞöŽ»ù!ÜMQ» «ã°^hFÚ°7I–8®—y÷!FC·p<ÜW{“øœì뢉‚>E’]1>äÖ¨e»r3wÓbõ@»šª—¼ïÄsŽ NðØä(Z¥ÐÏjU¨ê¹ªþ¢ªoå[ðâX|F ¨ùsõ•ég9¥8d¤: M<ùE‘³¦õµð(À~±quш6&‡`ûE¨«U›áßúÚÛ”V¯Û–uAJS7˺t¸!)!LLMõeÉÅxC‘TF²w.î\]'¿›7ìw.î\ݹ4úDzpçÒèÎ¥ÑK£;—FK¡ú;—Fw.‚;—Fw.î\ݹ4ºsi”yçÒèÎ¥ÑK£Ï­sw.î\ݹ4ºsitçÒèÎ¥ÑÖÉuçÒèÎ¥ÑK£;—Fw.î\ݹ4ºsitçÒèÎ¥ÑK£;—Fw.î\ݹ4ºsitxçÒèÎ¥ÑK£›¸4Ršœòßý k7*Ýã5p—ïžÔûàw(6µ™+Lçš)¿ª‹lÙ²ïn/[öÝõ²eß}Ù²ïþ.Ù²“8d"ý?î….æÈ¥õº˜¦='¨yÊÂ-‰!»¢ËŸ®˜ìšÂQ(Bi0¼ê›ÚúZí«Ú×5#ÑÒNf§+(Î¥zcÀœÓJžá¹TQíö/ÍvsÿÉA»]6€»À›;—+t÷ss2Óp…îÒ”y…Âeõ£.ÆŸJWì‚)kÉ´ó¸ß%­°¶t¸ÍV+˜ÂRh$Œ;výÁW7åû ¾¿þæÛâ7õR­ÂÓBÙy ¹þ§{4*THG™þ©•C­ 7€fº[‘·‚þù„Ñ0©‰´±ËV.¸ª:B6Äÿt‰n¾â0®¨«2‹³ééÃ÷ þC²hvJí<ùæ¡ZÿçÇß|ûðáÚ·_}ûÿÙûö‡6neáŸñ_¡cÜcì`ó MHÝ–ðH¹å‘H›sãÔYì5ì½ëz×N’û·ó´Ú]­m Iùz  Ø»ÒHfF£ÑÌòÓÇW6Vƒ 2K­­ŠõÕ§ëO7¾_} ïÌW­ã_ÅZ’E¸ô÷(Ò€r‰ïâ˼,"þÁ `p× Ýâ}?X:èü…v†„¨Hþ3umkÈ ór½MSMÎoŒœµ3à£>LJíéêêÚÚ÷«ËkO¯ÿýã'ËßhŸÇ‘BIP&’ÕGº> íYA9PÁBB¥öÐ쭥ɦãDz»Qð~½Eçȸ:®[ž* ªÍœ¹C¬FÎb‚m+UŠ0C3µŽÁáTãM®Â¾Uíö€¢qy>©>x¨M4—½†ô`Š ý-Â#TÐÞ9„)Ø~ô¨Æghm},¤#î:Ú‡m/Û»†¼ C=‡öb 0 tPÔoY í ÒFÂÆÃvV!ÇÐq„ÏzA0 k~YÐC®n|¡«º€ý}ä‘÷W¹¹ jã£GÒSUmsÓ§öY>‡‹ï£bzp]Ïe€'µ|‘ÒpWU>ªX4馊OÈ*Tž¥ŠR£ò!~äâô‘\ÛB¨¡ AºÄFÃgJéö2]õž°•{AöTº?I½0„½CûB¿|ô¨R˜ûT˜#õ –7q~Ø}±0'ð`[ùÖý3{ýœ“Êç3©Ãäà÷͉}3º €‡o»ã`ðªH‚‘~››æ3Þ³)ľÁHÂcXbÿ‹ÅDSI]xÐz@Ýo#OR¤g‰¢j!Ôù@`!µ‹'„oØŸàrê+’iÒti¸h{'Æ@8×µ}÷¨Ï¶ø,[Î^1ÙIÉu©áÆ”]…=JWÔA¢eÝE±ñxQ¬­×Aôb¬¢²’l¢Ûs¯7RžÀOŸ~EÞ§wïÂûôÛ¹ð>ýwá}zW.¼é=mÖ…÷éM\xŸÚ\x³ÛýF¶ÞÞ<\{¸ÆÚäÃ…°‡ aÂ.„=\{¸öp!ìï~!l mòÉS»žE…92þ3â¶Ý±Öy‚לaGlϪ|ÆR)ü,Z(ë†j(§1¹ÙiÜ×§TÝh¹Ç|ÉTŸ£ÃVÔ /8˜gÍðù~ù’ãˡۅ'?ô¼¾Šîň‘œ0t‡~ó0‚YâZ‚Ü9Qî@»žºR`T¥ ¡ ¨·Á®K÷KÍ[e²Ýc¦Á#÷Íé"îå·@—ÊùºŸY™ÞذõºÆ7$q§&ãüsY˜ â“k?r®xËTÄNãVÛÁ£}Œ.sÜÞ”€\Òër¨=F=Úš ñCω:“4¶¹”ÎÍ™cÉ‹X5Œ Â5/žÓì&¬!¯GÎ÷ž‡6òÁ(ª´Ï©¡¡Ú”S/«YòLþº(¯ÕäÐñ]B.€ß´uQÐ  ã“vH0d mvw†=-îÀ[Ýå id·[F/é7CkŒNeX§©v”ê)x‰s,/“¹¨^H2ˆÍ+ò3LéþÐ-uË©+Þ¬ò¢hÑÍåÝ—¯Ž·[û{»'»xíöó>/I™Ë8üà èL˜jÚ³OÁ¦‘W'†aàIG²EéËŸäì äýŽeÀ¡”,`QWuµ™ÜÛH>¥#Üó3’|lûm?°í¶ýŸÊ¶ãÓ¦{=¹CMbÕÍ¢\@´^tͤ:K öÿ„ø9™ÅaK“)RÊg^ˆÑݯËâìÚi·ÿ3“¥ükëN¥ k’|Ñï’£ä'G‘xrî[bêW)Õј¹¿¹zÊ´‘bêá7L‚ÂM&Òo?(T»Ê¡6JÆ—‚q c<¦{¼|)1Uùý˜ù8^S|?LûÌP}‰DÅ3tÁ}ÜZ…·íu¯1˜Rrz äŒíÍkªGïít2–8Ò0HwÃc†ÍÜ"´8ÁÎ9TÐïˆ8ÌCF0©j þ«àšÆh©‘©ýü‘†ˆ|¯íÈH.I•R²Æ­ÙŽö_J ñr­L:ÑU¢SNEÊ(k@¹[‘_`{Þ (Ay&“–΋W.;ó.zZìÅ݆ÖpCM¾¢¸¡æ(¥ê"Tv¯èhãàÒº.nÊ6 ÿªˆñ $*Uä‘U G¢+½—ó €´àŒ6á’Xª-—ß?{&#”Ìt‚$>¿HÍcXîvº,`b,Þ”ˆo“t‘0nÑëÉK2n㽺ÛzÃC°.ÆÙoŽêaä,Gõ*³i’n±°e-š(ÇÏÓ®D*ËË‹°%×!}þ¶Ëš» e‰xª*j Êïã–à¼xî´?„=Ç‚w"G÷\Fc÷F¼ O1(væl^ú1Õ舭£\©p»×á,- :˜h·¹ð¶ø¾Ôl¾kV–šÍæ tÛ>Á"†—:ƒ]ûmuR˨~ìÞNFO×oãÍ9nÕÚB¶ìñ¢‘r)è¸=çšþ(³úú€¶3p%úã†10—©ÙfYz„[ªŽÑ§ø§´¤þÎÜ1hJgª&ùYåf¹Œ¿dÓô5¿UoU¡ŸìAýÖÔy/8;c/DÏ ô ;íù ~ÐÂÆ(«8¶*5±»ýËq£Üü6?en®„¿m¿&¼æ2³ŸÂÓ=VEõ“ßÅSgîtׄ È;¨ê¼ZE¡ û ÊŽã)tÑ<¢94vzó~A‚¨ 1àì×0Ö÷ߣdzOaoGBT5³á$S«ø†žÇÛ[žf£bÙÈ»¢@vÅwá ±ZÓ/ǦØ×”½اváEŽòºw¼K2)vlÕ%X¶¥Šðì.àN”ïýP"¿2Zªø¡upŠ­·Ð¤ œÞøŠW÷¿èÎe!–IbÎs[4í2É!fÇ‚Çû>¹3ØƯѷw˜µÐEŸT æ‘„±ÀÞÕBV.Ñš™>= =6c Øþ6×LËêøiì%GÏfnhÃÚˆ|n:ãݼ˜½4pù(éAdÛmgÌf‚tH¬ýi{B»æ6Ek¦\¬“S@È5\:ÑEëdwgví®Â}á’3ùgélÒσ—¶Ät :ñ½ªÎhœ]pé3öÞïÅßeÎ3}’,bÝR0ŒTvž>ýÓ8p Uô˜OF“ÏTˆfõä™ •ðQ'lº ï-²8êŽD9$NAѼK' ¸ô1–ÂÔQAºchñ£­ÃÝÚÁþÉ)ï¯ÿ*“¯:@ÔÃ/=I³™„•”ÄU#a ƶ†YUÁjDŽ¡ÑßæÕíVè ¦ë4 òÅ·GR)Ä«GaªiÆø8;Y×lEÚ2S-ljpÑlFVÎ*Ô$ëfr=6R5³$³IÛYžDåäš]ÆÈÍâ©ø±îùˆ(¾B¾YÐg(Å…Rß Q_úªõ?ŠäS‘n†£Ýæ€õ{)Ó|™¢Jf ¤‘hU"¡ý¬bvC.&Wõg#ŠRÇëvEªp TÆÎiTgBuó¨IÄ ­5)8:Ð &GˆK×Î#fÅzrûÎUmùK*ÖØs¬ÅÍKcdu VîE´×ùຠ¨`ˆƒ37¢=£buã‰+»Ò° ÝK^Ápj^¬,WVÿXY®Ðæ”âúÒù7,ŒAG¦ Š|¹jYF½²dbàkz&} cn„9mZJó@J™Å¢›k¦;ÑØC›Ob0qò46ï7Rh[…™OeþNNÌ$€©ùBñq[ÃJ¼€ìÔÆköˆ×„b¾ÍN ÅBRÐ!º±6¾z¿ôXÔ\±.ýñfi©øõ´) ÑFªÇF e´ ¢Ë9JÆ™û¦„0V›zñjwF—ãÁ!˜¬Ê€Oï“Î*²4 ‡KWƒóu Ú{wúMÉ9þ¾CQy*ÍÓT:–œ]©ÀÚ­‚ŸR­PNÔµÖßP³ÀÑMÔ.$2].^*ÓÇÚ‚<-ë£a¥Vþé4ç_]á°‘e)þMtŽxÝ­Ò‘“´b˜Yµc"ËžJ#¡ %ùt': /»|¥D½g­$¦¦Äû‚˜UapWT*3VèïÞJêSŸñYVÑ+º¼à|>«”Ó,®:Ýt£¨ªÒÚŠí3 zÚµ+»ÿ™Z…{Ç Åîi»Ó«»·Ó)v­JÅî´ŠÝßMê»oÅbw*ÍBâ„K—þN*Äî·Ñ!ìDf[5b÷ké»7S$ܯªIð´²XRw½º³&:LqŒJ±›Ô)v³JÅî-µŠîZEw¢V±w{­¢ìœUÛåXµØSO¦Ð,öšÅÞ8ÍbÏ®YìýgjÝ;Ö,öîH³Ø›^³Ø»f±gÕ,ön¤Y쥘þ^R³Øû{k{Si'<[µbïÛ¨v ³-¾¿‰Z±÷µÔн›©ݯªVð´²LºCµbo’Z±—T+ö²jÅžV+R†~œ *Žˆ™æt$ó~è~ñvâêm­†>CµsTTã­OÊñcx|•>a ¼ñ×êu…nô}«à¯¡n` Xº’QôׇymY‚d‹Qˆ. Ê 2ËXQRŽ5zݨ@_˜¡”˜B˜;¶Fþ?5¬ZÃ[‚PŸ†…]ˆf”L³©mH¥‚,¥oReô·dáT8©Ø¹VÞeªUk}¨y)¯2ÍÓHz®ÃÝŽ†Ž×£Û¹ÎpèadhŽh·(óTŽ0#¡ Åuï9‹z#Ê”Š_4Ä@:åæòÊãòûDز)aÈJ2¢—v¼–ʎ͇ØrΠ7Š\š™/ðm³¹ô/rý´ÉU.¹¡‹êŒÛ‹奷,½ÃÕ¥f½Y_*k~¿­Ü´1š$*‹™î†‚^ØSéœôP¤¯›¾ýŠ/ž=–ÃïÐÙó»¥ïÎËïe–ûé ZU.–tÿŠ–d` +Ì¥ZU0d›Åð»´\T Ç>H3=àsÓƒ†#‹ò‹EE6û¤„ÑæE^¡ —?:CŠrâ2º0–™XMÂóB®XB ]Ì«SZ²?:]zÈŸ²¹¦e "˜Ø£S­l£Î W+UÎôíÌ2åB‰åy«È@޵©Ž &çðU¥O½H‹…ƒýïÒøÀðJØ$´½n8f¤·&æIo?¨†¨¤W®V”*^¼Ò}êêBKÆâúœÿ6¾ØžÈ›,ˆj¤kÅŒ‚D¦íæÜ&Ä+ä]r o90®rG ’Žè­7#‹å¯ p1a¤] L~ù˜¸ƒâh´2´`ícœJï9iUô–wL—2+0Ô[ЉB¨,뺗 ê«=SbÔ°gúÈŠ÷±´b¾°˜q÷„7eËä!ü|o§ ë{N 褗]¬hΩtÏBWÀu:U ë2ÎBg¡Iª©I<Ø™xƒ]Ųa‰Îú[ë&@%ïO›kàæºÞAÖ9æ`gf¦1íÍ錯:áŒu#º9S“kƒMÀ<,@7*ñ‚ÃãÆÖËÚµä´áÅw©lÎÄóæs0EüY´®^îS˜Y²¼ØsÖ—}eirŽCš®Ê‘}ïüšVÍL[‘ Ì µZKÐ ˜‚:[Ìîß>›x|~²SÃ<£‡'y T ¤ZRØ0²;RŠß¯LÓÉ¥1d G‡w‹ãèÐÜ„LЏ‘àrG‡ ¨n°?¿ßŠ‚ ³A– !€ñUºÞÕ¿Ÿn:Y Š)/ÅÒÚ_˜Â2Õ Q„ñ@øýbAòkÚÁD­¨?€$ý“eµ0­.aÕ&íÞÛí²¸»½nâµÏ(É»aø´êÓhBð€b5AQ¾Oè'ü&¥–ðì62g×1{ÌQp‡„Ë+0XN+mu(–-ã~qåÏ2Êü”n’‚Ћh lì——µ×oÔÆ“ùn" m¦ ‹âó¢Êí‹eN‡£u ²ß×ùzåõËx÷âQBu–sNS¤9pxò/ ´ }‹+Áˆ^,ŠCÏñ;‚§ì!>Ds—ÛD×2µ—y­»0'·¼HDgN§E¹ªc£UÔ! r|q.U*n_לSº‘š¶Ús¢ZUGš&ùš*`™8ø\Õ,¼|_Žž*ÑJ,àoRœÒ Yµ uÂ1±Š¹çø)Ó¹A:ëtºg¦L•`ù ŠüÞhšgÍ-[5Å 5¨âàdd'·uäÛF’“!©Óί®ôT q↮çwÈË §9ätˆÔOdšÝã©ñ4ò:”æS½¶,yùn3ÍØA–~)ÌjÐK@Ê“ ñ[%[ºt²”濈õÄ«XgÙñ:¸1'¼aânÄ”]²-’ýš3'Žúà‹õ´hØy}øòùþ‘Ÿn:ñ¤ïÆI=œÔ¡–ì(¢Â'jøµŸ™L öe4¡·ƒ3Æþ²€ºg¡Àä Ý’œëØÎm´ÒˆK=„Ë c+‡©Â””óU…©ž–²½/Œ'Ž›³CM9)Fh<ÿêqÄeH™³°tÔwëˆô,«÷Sò±ÿÈ€… ŒÝ¯JÀ³r¬ä¥k8YcëùöNœñÎ4ý Ñ;AØùßóÁ@;›ûbç¿^¼|¹È±¸ˆÐhÕ .Åh@®,ѵ8s:½kX«.‡< `Ñ÷)B¡Ìs‚ ÐŒ&ÃÙ©áSD—¬í«ËËËâìZ-¤ÈgÝ®ÚVŒ”ãRG¥P Îâ¨y•º»˜ÏDàc*RO88#S gröB Hæ¼P>=è”;dÇO^Èuƒ=¥f¥±²ºúäÉ3·²ú+ÙêÏÇ ½ó ö:5þžû#Ó×>æŠÁÎ_FÃŽ‰YU«¡ûçÈ¢£š QjÝq?”¬‘Mº“hLÙel -G| §OÔVðH@½¼p¢0pçc^[yfŒ®}}~éùhªçãøÐvÏÛm“Œ~÷ü§WK‡»æx‘ŠB$£ZPŽ™:ÜNÈG‘óÁU#f¤>Fð#¤éŸÓµ8"( ÐÒýÈsz½k5ì߃aèÊT8‚ú@Á-¥[óï£ ôÛñ"'ÄE¼(+c„eôÕ‚NJ÷†bwüÛõ‹d‘˜2éDt=‚J¡™ØåÌ;D{HÐÒ;§+$\@/Ï[<«7>TÔ0ö9©ô"¼ÇüÊ”Qg0ò1½$“b‡y@‘@†.ç–„•¥P s/3šëÌ“bÐs"Ø0÷ÃMñdåéªX|qtº´úëÒ›—•q K›”ЧÀqñ¬zG§B¦òñiJa¤žs ÒuŒ7޳ ê»}Ê08}{Nß;w‚Ðlr ŸÈ‰è|/L’#ª‚íÊhdÖó`úLR9 ðÜD£–ú7¢ O&nÂþܤ¿gë9.Ž3”k¦3tÎAŸé]ãLÆtvð£ïFò&‡Çj”§8œ óâ !™ ˜¾×žl€ª¼h¦ñ>ð> uwGCä#)§¯+±âI/t¼õ,n\é½7ËãŽù¨|uà5Pˆý%cB„ŽÆ7m!U'§ÑÎfãñãµ¹y˜?ÚÈ4ál‚5XbláQO§ƒÑùœ® Ríßê¨+§ŸU)“©—¢¹$ÖßÏ\¹*ÖÞTC¼Ú»Òóÿ»+ðT™1‡G^ÝX]Y_ç„LΰC)ƒ<í‘eŒG,ô€pô•qrí鯯ò£A¸jPŸk®%s=Û8>Yš¸"€»ðΰ.~y.v?|pqâeÏŤ[’…xŠÌÞ!rp{Àg}¯D&Jâ kŠíJ}$^ü—¨:‘é¬ãU`¦î‹=(³‚ý§#ùºØWÒXÉ\¯-““!?0›ѼÜCgoŽ©K/̹=Î…õ÷È8Mqa4Nø&UŽÕ16Öž¬3”ü¥K#O¬-6¤JˆÚŸ¨žµs`x( Q]á~«ô9N…Ò,Í­ÕW?>®Ž%²åÕõåe£Òu5ІÓÜ Oðh½¾:ºTÔ÷Y@ã=ÝGÙzõ¢u¸õF,¹Q›Bž/µ»õÎR|7}6‰8´òI@6ÇÕìRÅ-„ªGÕ®WßΉwKKå)ÒÚê÷O2¨‹¢÷ ç04˜*:ø‹qã²Â)êè¿øC…AbpŽ@ó€<]m*äLÅoÉ)~)%Š¡ú9(Ç#XLgÞ9jðgn7à|)Ïî1lù9³B/н~±ò« Ì+ûÉÕFÎP×@Á‘ k*ž˜MÍV)þl|”%¼¿QúDk¥OÛÇG{û/Zü•¼°Â‹/_t·÷»‰½‚#C—S蚇÷OÜ2|ÇMŒáZ)¯¬¬º4¨Ô•\C<ésyáôºJOtÚ¨³¦Š³÷‰ÅÞ&e Ð…1¾¯ñ‰ûûæ½ëT1\­¨IÜw|ô:§°Ê±£í•0êoú²ã?ÿ©êRÓ+ß3‘{x`µ²´*Ÿ3n\òæTzŠ8=¼ùþ6SŒziOf®cÍ›ÉNé‘£(T§f(9êS,™>ŠbSëÕ"_Ï-dú©»±Åêwî{]&,RªA×ÁäÞq¾ìGâL Ruo£‹¼A;aˆYœ>Þ‡$/{Ðd¦ìxë©㋳i¤/·­û#££?ù»òJ¦ÜOá|á¶Zéq¤ïLƒ¡|ž´ú>Ã…ùò%Zš¦à¦·8öÊaÏV㣥Ô-Ío~ÆÎ©ž)C›‰F{7,~Çèïµý²QlÃF¾[üBßkûãï¯E²ÝÂwÄñ‚X8ÜÚ?hl,«xÌøµ‚Žî•UÒkÚ¼)CåôÛ82à§2ƒ¯—íæ<Ïëîóíýmt"Ü:ÙÞß—å„7Ÿ£¡x#ÊÍ•åy€´UÁUƒÅ™ƒrŸSËH¥®é+6¬­)=t8tÛèÊ~v ;Êž3„BO´ëìR4䟼\=:h”¡Íæòú2üZY-󛣃Փ—òÍÊc|AEð–@Š­bÇäXR=K‚^YÐ~ð:/ñŸß@6ñ–þ>sæé¦*­ŽìˉçKxª(o^¢ "àÝ–UajPyæÕ( œ/äbŠ”=›}5ÿΨ`­Î°²—ŒR¨‡´¥E¨3¨¥Œ½› J GÏO±–»\[Õ•ã;BД2ÎUn›«æC§þhU¸ôÐÄLؾ¨úÞÕ̓J9-é-+Ì™1}C,sÃwŽh¤þ7¯})SÃ#Ÿãévèt?D~%¬«^–e"¬‡ææ&ÃÕLv¦bÉpæ¿4 ¹k+Æ߆¢¾}á`Xš»`‡ipcX"¹kÜŽ%ÎK †Ïw†×¦ßÈ"J]“nê{Óy$ó-øí¤ŽŒá·æ"JufÉÞÖmÈ:(Ÿ¬3ÅɃñ`GÝrªº½ÀI\Wwb:Uý<ÂíuZ\šÒ]߯å$ ©Q® Ë·q0H‚Ë™–l!ŸÙkI¹Œ'HñE ‡PEUÏ„SL/j2•&ÂF¦!´ {‚¨Ç0'a9“Œ®`=À2Išñþ‘ ‚?f‡T²ä~MžždN„<ÝÞø›¯×|C§ç‰ÒeÓZå ˜Vxl‡š iÉaL§oOuõc¼'túò"t†¼¨gñŒÎuÏ<¥ŸÿúØÝ´„dõŽ–ïq©è|è[yôH5îƒo´êj)ÛýÂx긹¬Ð¤“Æó¯ìýœ¾©‘túÒ†ÆBÊt †s?ùK wvc¯I">]ãïLº‰¡1wï˜MjIåõÜvãØOŠŽ¬1¾+²Ü®Ðm'oWè餅÷pÃÂvÃ"AR1™A“ü$Åôyûª×·ž Xઞ\LÎpv{ÈÐmç>Œë¸×Ç”Äè::t†ÞØ}ã4Õó¶PÊ„<º]3Ú<[œs¯M»ürépëÅþvkûp§\È”@¬rØ„B~oe=¢\˜G.g%›êh³ç¬¾9rñèW9ó%.û:¤`¼\kLµEð²ŒGAeôÄ4ß!j?A*§ú„EC™ÉëªDÞmyò§¢;Dk °ÀrDnK1é-Á^'ZÅ·Šðý€É…{Iˆ“G“T—UÏ®Eßaçk—’*“ZA5b¬‹·o‡î¹{õî]²¦–, Òs™ð„‘ðìG|løP9Þ–’s®Ü­(b§ ‰ÖQP›”¸Kî¤ÿ–ºUFƒ:ûb¾m£äb¡<Ê!o.ø^–Ϊ!z6ÍëÛ É¡·ÊÉ«ta`‘ZÒN—xÔK~P0QõBvóîxWo×kOß±¬©Úä£Â™+}/oP%ìxo×OlÉœ·Ýƒ=ñvºG¿ªµ3P!ß¼;y. ]¥ÙPô¹s š$Ôx•rîÒ¤£8ô¬ KiíÀZ2^¢KáÀ[B_öz(£B¤±£Bª/™ áëÚ*ðº3¯Ã'Ö왡óW+‡$®¨ïx~=¼˜\=Ùá­§^ägz¶s`ï?4Ý1yÒWHhxÏ‘(0 ÌGéR •&)©V¹™ûÀ“”o± Éñ“îÏδ— !¡«=ù€Óá% §,eIy‘ |ôýCB7?¸åE2åôèï#½8Ž&ËÏš–ø2 Ǜ×Dþ‘òÍÁMfA«+óâWîâQ@}¼AE)y¯ý63DËÞ|Þ!Tíõ®+KÞÛ5àÿ0¨ ÅÓŽDå§ŽK¬hàœ£ )»Ë‰–S3œycÀ"TÉõªò¶JéÅ=qè•ráxF7¤ª‹Áèje¹¾ºŒtE_V Fm#ÏÙXOx¥Nž³0–Îôë3k-þZ )Íë´&ö·6Ösø‰!|Êqhk«†–H¿ œêôø­¨O* ¨gT~ZoAÕ¨ü” –ÊOo¡ZU¼Üª½Ú?Ùf=¥Y§?Ónà¬.·6Öåèzñèn;,Ù-³Wë2™¦—™ÞIrG2”wh…J^ÿr[ðM„Pœ ƒ “ßç‚b­~µHj5ð“Ë‹kñ¹YwHáøÜxmü‚|hó§@h-%6±ƒ“üÑBHVJŠ{{Ð&y—ãr.‡MK@UÕŠ^ ;êdymõsµ¿E±‚ˆ"œ4ÖV‘&¤ŠÏEüT™£µUY`cßo¬'^o¬Ç ŒÇ>^¸«ÑpLÌNÏä­ >Þ]:sÅ9ÎÕu½ÊŒü¡ŠÒs à¼T²wšz¦n)Nߪ¼£t'BlÖy–dýHýUôÃs? +OF pšUûîenÜÕ.&6rN·…Ióñ)W¯ß ãLÕ ¯ø§uÃiWÒ ¶¼ÑV1-ÚÿÅ÷SÒÂûâ× €ì¼Ýš ÆS™&‹ ì®Ñ•½°».ÿ>¾!r‡oªÕ:¾a-ã _×I\¾ùÞÕ% üŒÊØë£ý7úRNUÝɹYsëúRÏšÁuIÿøèú¼bA7у(˜n$üf³ˆC£ŽøMF¦žN|ەª¾º'„ßNƒ&uÊýsäúQÅÞ>›0Ôâ/ßE¤ÝŒA‘›>îšïÝM·ŠÓuËèGq¢ž’´Ò¨{n$Ý Ó0hÏPÉP‰¢A÷fKDݲœº‚ö2›ÕEÉÖFŽ£R^Qö!3&#34 hrlù.pzàF¤’܈د¢¬©JÚu‹ö Ÿ9wvÜÒXCé~]Ë †kOz,¼Ì­³çííÎŽ»ÛÝ;qñ‹·ÿ¿ÿõá×ÞAÿÐ? Ž/ÿüïá«ð$:½þøÛåïWo®ÿõïÿ2³LÍÅp©¹P¯7+Kasémsåú}þl鼘s#…Óu'–Xɶð VZ3qƱŽ}^ÿùOa…©’ÆÌ”ò*óà+ø6uz=üz'¾MÖ=ó=Ø988=>>¸‹Xµ É«–ß5âR>cbÕjlåÑ#ո¥l÷ ã©c†`µŠtÒÁjãço“•ú#=•ª““8Ð-Îýä/ 4Ü]”Ù1¼&‰øt¾31ʬÂܽc6©%•×skÙÛ³ŸÙƒÌ~+Vd‹«ÚNEŽUÓùàÛ”=Ö$©˜ŽLߦ$?I1ý”o“ž Xઞ\L…Û:7ÁŽ-h{Näb öŠ‚™ßÀÇi(¹ÁikÅZÝaÐÇÀ/3_òšÕp\ʺšLuKd^D—¥¹v1-XÊ• ´úR<£z·²“ñPÆö:ЇÌmgàœÁº‰ÐѸ!çU¸a~ j5huç3#|‘ìúÇÜÊjähy}ÜaÅ{¾;Ö‚Ùì9í6‹„òV‘E6Õ…R [ìŸÝê4ÓLYTïÈ‘ßL^x„±h Œëú$ s×ð‹‰šuã›Êƒà Ù[¬ëÖ«;PS·^YuÓ­W z÷ …æk¡„£¢»7ª(t²”ès!wúoÎÃ@R\Š}Ó\,Øä¤4,i2pöà©•ßügY¹ž¢@ÙõªµÃå¸Ì¤½®Â×ýb.ñJ²tض»½»‰éź§ýF¬Ç2¦)Ò¥`©ä~§ôa«›»ÕUTE¤¤Ó£`P-xã ¿È-ºÎÞhG–Ù³ñYéü<?ïí쪛!¸®½RÞfÕ¶>Ð½Íæ4†Â‰œuò Ø9†õ Q?üÐÚÚÞ=Þ?f2†,U)lb\¼Ž™?ÉÇ­€›M±ô†8ÅíÕÐFC_,?+|)0D @ž;¼V×U„ÎúmŒ‡&À’×ÃÌâÑ U E `6Ê ²QíàY§8ûª¸#~6«âÜ(OØOðŸ-éG³˜3ùMÚmq›Í"[4r‡Ä/10)½€„‘ÂFé§ÂÔ̹Yú ˜BIWV¬˜XGü˜’¼ S±–eQsÿd.$kÇ €w}ry¦0–Š »Ž×ðóh*Á9@æÔ sÉ #æ”$\˜û» sÎÀ£ïÚð(ôOfqý¬_ÊÃkãC “Õ© ò2Uïp˜Yjls`Éîs«C<’+C²û:Ùe¶‚±²')®…”ZáÀm7—²¼Ê²†1ü*‡æh˺›p éž)ô'§¯öïâ’>Á±ªòô¦¡J<(ñùJ¼Â”ï>ÏÝ,¥;^G7çA’\RŒG?ýëŽÆ-”É©ãîMâ033”ûÈ?Œáß™M Ÿ—˜ÈN–~à+“Œk÷Œ™$–½Ï6Á­ÙK‚v¬†‚oÄj,VÙrÒ §ï!aªÕ`¢ó¸Ûä 6ž:ê–˜‡Ì56¿_æÐñчû.tLuτī­£ƒýçw U4ð«†.ó ò‚ÆU!Þé ;ZÊô½0–,n.Ѥ¸Wüø¯Ó7m4©)”=œÄqfg0÷’Ÿ˜(¸3­s oI ’¼=¥…*üÃr–•lzè¼Øq#wØÇ¤›2èßjÃ:ˆ\ô:µ0ºæL]‘×VVUàîðª%¿©͉“€•Š843VJ<`õz²Rû¢tÄÆúºªù‰¢…ñâÚr±-ΚÌïiíI±d{üMÙ¨E¢Y¢¹ã~2 2½ g›S’DË Ï|” éÁ‚•Ddï^ÐþÐ2!º,ÿ“+⌽&Ç”õƒüxÛ³<˜µ{ÒwŠÝÚÖy¶(âx]óVS®ízÕ7JŸðO­XÚÞÆJ–Úw<äÄ×i Dñˆˆ }D€ônõ0­÷ö6.±|ÝI%•VM7 S´V·)  d à@ý3҆Υ¯ûgAÁul‡Á8äô ~¿>ƒf´9p†HWG‡‚ƒ°3Ø’Æßq£¥ÝÖ¸4îx‡Ôéµx„­7˜ñ`›B|¸!; _gU±ƒáŠ)SÿÂüuÝK\£2  EP| 0®q€.äu¸ÐU]ˆß/è„\fŃZ*:—øéÿÏ*ïxž\Xð¾ÝsBtÆÛCï hâáª Åø/¨l_÷ñS£üöùöÎî‹W'§ïÊêÆF ž)ö‚¬%¤TøvÛ¥p q^-êø6A8Q£Ü\xÛÚªýSû÷;õ.’7+e–!è,.‘P“«£­ãf")[â![Iôûô &3• {\u ê¾Ø?9ý]Õ¿PAg”ÈÀKú64Fb2•Í$ …¼8æ´ÉƳ±b\Þ2ïÚJü·QÄŒ'aÛy—03¼ÆEb¥R·æ™&æD›©FRà÷ŽNN_«Ìò‰]^ºH“5£G¯Ë,òêCéará–ƒÁä¸IHðn°l%£ÔÏéÊ”$v8ÿ²À.„(lГg2ƒÜ,vìƒ%Í d‰šCáP°Zbéšø)Ï=PfÀZÀ˜ý6Þ­¾à J…¢ä…ˆ-bÁ u?ÈË*|1‰Õ!OªŽ«)Vßêé]/”ž»¾;Äü¡hd JeÅ ]4Ì`)ŽfAÓÆ©…Ø`h@U ¢+£lI.`õ·j©› É`ÒÔ~+ò»ÓéÀN6;TžBY2=æxÆlÊ^CÿÇ.ˆiÇnÑügsEõŒh æ‰WxoŠhA’H f<$0CDΠìHR‹à« j,ˈqu#ŒgÙHé¿PŠ>±ýê`M_¤Ð–_PηB0€±#3šTqXuA™%˼§ÛJ¢|Õü´¼¸ÒüRñ Å•(cÒò{ÌEÈù¹Úd¹£¸Öƒ¤œ=^Óœ‚®LŒƒ&sCôï’Wçâ–Æ;Ôã†Ý+Z,Šb«HV:â‘1QI- ÖúÕ’5‰S{ |ëèEEóUwØfß\a78®Ül® øWäz‘«7,e[È;Œ¢n“n"Ãöf.÷(7©*À£p®Å)[2ýkÔãjÒž¡c'K;º”Ç:ö;‚Ù×o3²¸.lõ€*cŠg¬Ôjua¯ÐÆìŠA“z}xòQ óuJʇγ÷3†.ÿÉŒ?lßêàå©ßLõøó ¶ Q+tyc.ÿ>êA³$Ö¾<Ó¥—þØ>ÞÛ'ÿ:|~| N·žì.}‚Q.P&ö ˜˜ H¥ž S†_ÞzïÌÊ' TåÙ®Wç1W;¬WlUU•¥OTÑìÕ»ÆJ¢ ¢zb°¬ê¦Xúz^´]^ ýÅfq³Y¬À ¼F8: £áBè¿]}·¸ZIÁ9½$ä¥Oƒ!I¡â)¬ïÐ[TU½Eîïg%ÊÖÄþ´ °Ëÿø¿¥]’d@@Õæç¥O>pk³±üH¼>ÚÙÝê<ã°Õúãó»f¥ºPÉÔûäu™ ‘.Ñm4‹;Í"ÄŽüßRs¡Y©SðÍ)¾‰ Hv—šŸ?7‡Kˆezì ‚CsháÛ•wÿ·ôÇÛŸz§Ó]ćôëYº/Tœ˜‡lˆŠF0™?Ód*A`ÄÒç$j5¼²À'? Î’°"_%Iµ¼^};'Þ52ò¡YÁø¯j´Sb–XbF^Z*IV'^Ú(NX¤ã^ã ºW^fqîZ½(Xê”%¿d£%¦pyÛNa¥±$Â862 |Þ¢çè–_HûW ì¨ÿcÆÏÝõN[è]?ï¡W>ô¥=èBüWŠYq»(>æ]TÌiiÀš)>ðÁg’ ê ²V’©•ÜŸ¾ØÚú¢@òÀÛ •OF3²S~–€UyÆW–+ϾÔ(XŽÌâC޶u¶>ÙœÈã·ßÔ‹nezŽ}N¨>#>`gnóo~ãɺ(š?ŠuņÈ;ûMgRøü!¸Ô~ÒŸµ³4 ìùÞŸ#¯{MyS0ËY8UÀv˜,¬±yæOXœêÉ©ºgÑÿˆ«X?ÖŸ$$âòb….$ß)wìß!êGò¾' }绣zbP¾ÂäFW9ªlÙ\ñ¥rÜ÷Ó‡ç,up¹Ž¯ÄìIó" £ÂËCqB-³9œ¹Ñ¥ëRjÔÐëýõE½ÿ¶x']¿`Ía†|ï˜xÑú}ÿhmU|þ?imÿë<Å0»ŸSåZ¿oïb‡v¶N·¤R(Õ»ƒL#\ÛÁä¤óíØ†蘒0tù³ºZ?Û1#¢°Òñ•ÔòÏåidtü©Â¡ÅѵeðíòÛŸßáÕþrVc΃ª£×ÜÐóæ.ÌæÜ ä3 ‚I±d©„?Háçï6–†•{«VC•µ&‹“ï¥4§îiÉ"@\Á©ƒ¿†ÛÑ(™eŸ EræS´¸Úy¯Aä¹€Y YäüBY9V¥YÄ‹ííľҀöž²|ÔÈr¦‡fÐ E9gfûì5²ÄÎ[& 9/f—ŠÒ…aÔKð¡õç(ˆÜå8tºçŸËåŠñ€ÁßÜy5ÙzÊÛ2ýrC†$ÅÃ!úxÿ$Ч¤â3T^ÇÎYôF°ÀÔ¢õbB<æž+Gµ›wûSŒÈÍš|ÉtÝV€i4½JfŒB¢¿u&yÁ›Es=áC-èòÎÎl.SD‰]±¼²º¶þxãû'O3`øÝôw#ˆWHˆaÏü¨K­B1‰íÍFigçKFíì$Üìã‘´Èá»Aƒ!Á}h-mÿüBûØ—)ä…6pâK§MùöPE?Ú:Ü­쟠å/ô»WÁÂ:g*6álùø“ÀS#áí$|âU«¿ §ˆf˜9PØG.NSæýYØ@LKÔX?³lžh®ZÄ[»?0õe“b° úˆ êRäÜÈtÂF#›­Û–,ïu°%±F¥Ì y÷’YšJé~™œ}³`ºvgFÀDN%è#FÁj ³…êÈtÒv› ]€¹ÚìQ{#ÐúÛh¨‰ò@ƒ"9E˜^kµ<ïPU¸…ïƒËv±¡WO Ûß`Yz“í vd}ùé†êJÑŒ.3™8Ó» ³µbn'd~—õ?‹· D“lËŠ&]Ä.·ÉA×éµG=¤Âv»…q÷Yâäƒ7 ì¾áu>twÈv=N¡Ìnõ‡Ž!pØ+ÅâÛ˜z æØûÏ'Ÿ®‹'—WftùX¨vÑsòm³¹ô.þÞ&_ð׊ʬJ ¶í¶.¢¿FC¯{­ŸË¯‰ªÍZ5ñ¾ëÔô%É>…H¿ÅS¦üdŠjxE•å§~W¯.}÷Ý3~÷»ò:=Ï kß}ZjÞ>`ƒÜªÉC^cÈÙpÉ–,ÙÂ’9».IûK¥g"¾Œ#cYJ‘Ü´<'‹òþã[x#ï  ¯ sîDüµ™ØS~¨Ì–H>çA€®^r¼s]±‘lЙ°V­i‡éy±‡d —xD´õ|Ÿ²‹ºÈ‚¡íΨÍ7 âcPé(ä‚tXãb7&Jc ;P•§iµ•ñX×{V¶íümlÙÇ9‘TÒf}¯ä*fø¥|\s¿¼|ý¦…¹|[‡Ç;» szUQ1JΛ.¶±®‹É¥g5r8p9Ðçm½50 N&ƒyrX,Kä–AÒC—¼óÑÐ-þgÑFzÿψlâä ÒIž2ß„”檜PÉCˆÔŠ?ìÔz/¢Öw{ݵճ°‘\æˆ æªGLq9e¡¨¿¶—æT»y6ÖÏvV†à»ŽÙ¯œQLÙ÷uU*ÕkZ?cQ†ÂZ¬U9#ðÃRúÖKÉíz ½YynL^ Uøû…è&f¹1é$JÝ$9îL8•Þ¼a¸}ºzj‹µo™>2f%$_ó‘ùM”7YÂf‘nQ/ÄßœnaOLCŽA£6vd•&©àÀ©™.‘„Ôfà÷ȯ`p¿íˆ¾ã{]lÇ=FLS=ÏbHŠhÉÂ’„àÛ¤¶ÌBã—Id0Ò †(×~*+þcy£„…˰ ‡dê’• PñeúC…SèX9éËù£ÈºŽÚæŒ=–¹Åº…e)ÛPŽyÉ^PÍ­ÍÂd©¡Ç™¤àM{n?kœhý…3ƒÎ5œLÄGþ »ÇNxÝE^ïNö Ø=SÕvNþuøútÿ.ô3ʪ”©— £Üƒú•¯~øÊ%Ë{£ŠéΖ,#(L ’›3¯˜€RÌÊ|ñ×ííë Š§T÷sGº º§ü&‰Š;ÛŽå=)ôgê<ð¡IÛÀw÷ù¤Wnçm»¿»`Gij²îù¾k²l÷âÆ“;½xZ6yÖM^’ª R2·v)Æ’–Z½ý ªßw;ÞÝœq0¨{&-ŽwwöOï@J0 «tàW ]æAäK«B¼7BAv´”é{a,YÜœù+¢Iñ§øñ_§‡Úh>RS({8‰ãÌÎ`î%?1QpgºçÞ’@yªüŸ™¤u*¼Ý7æ’\H9ݶi›·g7I ²jšßŠõXôLÕtRËTÓø cZuL“Ž4ñ˜úe‚}$yû×Ô-{Þ ¸ÍÝ39p°ÿòøø?‚±ò}|Ñïø|>Ÿ—x²’Þ½a÷ÔÉRª×…1„ps¶Î„’â?êá_§Afé;â)£¾Mâ(³2{È/â¡ß™Ö˜Ë; 4'Ê>ð‘Iú"ãì~1sÑX;lÓoËNLª±êˆß†µX4Dn8©ò´=h‡Ví0¦I.¦fh0 “cM­0 £ü»P Ò=ãóÇwäªxœëœx,ýŽ'ðt…);Þœq<<κßÖ¹ðØêNxümÇ©ˆJäÔq÷&q˜™Ê}äÆðïLQÌç%&²“¥øÊ$]Qbíž1“Äò±÷Ù¦/Þš½$hǪ1~#VcQm>ÊǾÉc”Fƒ€Õ˜j£É1lü«+Žëw§:n¬ß3æO8ÜX¿+õp•«@n¬7âRÌ~‚IØÊ£Ç{ÃûUW3ËrcÝ¢LšÔ1£:‰¤cS(ùù_¬R¦©?ÒS©:9•b9ùŸü%†»U/sxMñé|g*%1wï˜MjIåõ˜øW0"á«äÂ8»®GAÇ@êF*¢ëô†YSÅGgè!©Ž`m?ðkn] y"è ÌÏŠA3)VP#‰Zºé©þpv„@±(b{³ñ»]_Ñë\÷ªÊ GÙσ@¦Â–a·VžaÊ øV_[•Ômo ü #U ²mˆf¡Ö¹UÄkã·Úï½Å㘸æn Nˆ©›H]z”„!&•1ÿK?!÷»ˆJ@:]ýŒ'„S>õ‚sÑTL4TÄš”ÒÒbŒS' G}Öp>eÛÅTŸrq ¯º'šHÃäåKÐøÚeÎРL2sqæê&ôíÇté…@F Pæ¦,m²‘bŽXîÅuócýÈò¿¨² bnæ9JÇ·PšN7¹LqÅclã>ç/`Ê;©2FÚ‡†1|Æy*1HUb›u…Yo—Zºšs½4§dœÕcF6í^a"…8c+%Þ» »ž m÷:-kÝÛðî<˜1ç£;2øšü ß1òèJn‚m$YBU,Æ Y…µÍE³¾Šªuæ¢.óp’¿ZøÃ9=gæ ²žr‹˜7–œU8®ø­—"üj»-L |“õg¯5fÑÅn¹Òb@ñòBú6>зPÉYE€:g‰ÆlÒŠpQwVÍÕ˜–äµ¶²ÍŒØÖŽ÷zBÜ šŠ‡M–QéR§u±R»¼²ú®bмh9½^pÙù I=ܘ—K—½šþ üñ²÷³JA—òŠÛ¨ V§‚|7j¡Å48mL“;mÕ fB âqýJ*Èå<’ópä£vOÅÊrý1%Æ%”gT¥;î \Óv0r†b[eIÐ0df­ãJà>iîîêÉoAîz\\= ÁaùºØ ür$®aëÚƒ}+¨ò?iþ„3õépkûøäMkg÷åÁñ¿wN[§[¯^ìžÖ úò—Å8<~_¬>Ù¨Ö OªŸù‘üþöéÊ;Ži~“Ù”û9 ¤àÃh@(Ç–ˆ:Þ.Ö§xÃEðwÒO¹Ø•шžèoö K¶ýA"`ªê’±)*—ÁrÁà öVrõkS\ †2aÏ®(—x‰J!ÙqM!Òk²PjÁGîž‘lÉÚÌÿÉ[{(¦ƒ+ð¹uì›­'¾®x½LƒgãXYDÈhØ5‰šÄ„y›öA©*f§b"(Ìs²ÁþÈ?we>KÜsý¶õjëùÁ® ƒyQ›ü¥t-/äãž –0.(È~Z´Z"tÎ6ùÔhЀ]·Ê_&ö£¾QDjÞïû°”²CçÅå…×¾À&Ãhˆ¦‹yqá|Äf”–}'Ú„GÅýWo7á×»Í"|å®Àï¾+²}² ºØ1q2A5.„³©MÍ/60Pê%yùnsó-üÝÚ|‡¿­@_Ô—“ºÇQºø«oQõ­éz•›®êBË=G†7F\°Ò‘ÎÛI|ü Óu®*y{G‘–|ªº?¢¨ÞX~¥Ñ,ÊÄ—\]æ¼,‡K›Kbé¼ü^4ñ•mÓ0¯6«9@ãZb<ü,ÐêæP›V°5!×ÂÒRY~˶3qô²âf½š3yý¾) ˆ}Ì–ç÷š[G'ûb[\¸°yƒm¦×›â8§FÞù-—i…Q§=Û¾ôL+óžßî:®øº,º~ñcò¨Bég¸r“Ϻ "|4«¥Fe¹µk2È2í3Ù—77Édp¥8Kð ¡uÃÛéd䃚¹:¬BŒè.ŸuÜvnõÝ~u‘DÂS^7C*©ßý ª™1°Ìyødm0ÈŒµÈiÄg$¸]Ú»¡»í‹aѾ_£)™û*!áÝ©û'Ûbµ¾\_Š*³HÅÔIß©jYÜ©ØÝ¿¥”ì¡ÝÆ–ý¡wU[¯ãÎ ¶9!ÓÛjG× VÏ€ÅÈÖÊSášã‡â6ζœ:Ú.š-Òˆ6¿ ›¢>f¸”æ\07 eQÿËWË{{Ñhà§Õå *m´ ê:8þ}÷ÕB»"ÊNYüÐøT]üßÊÿ.ÅO_¿|)‹Uå­²xíÁ—š@PŸá T¥ÛÚkæ0 ÕBN»^Y¨,/”ÿ×Vl˜)æŒbšaÐ>–Ö—ø¯ z·¬üæøÕ¬¶.Ô]Xp©•,t+jýò >¨¤$€œc¥ÀÞ7 '$ñÄbõ1DïÑ#©sZas‹Á‡Ê¢B~]&4#ÌÆŽp«"ÅïYðkëêT‚g8ò­Bçò¥Z—bfèÖãÃ2qÞ| êzvF,&< +Î\§ŸO¸òg=„ËŒÇêh“)‘ê:‘Ûà0£»¤¡“ÓíÖ/»[;»¯NÄ @ý1^åÌÎ(­Úþ«ý7âq}mQ„×á®öv @Gô¥~AI,±nÏk£—@½ »¤Ò´§«BiüŒÉpð£’&ZVƒ¬ †×ú –ç•e4µà|ù°Yè@o;k&!:FýB­6ÞǃN৤;VD… E€´‹÷E†¤>ªÒEˆgD YÖmÊ—’†-i°*qªHDÑ|5‹WÍRªf“ܘŠ0k&Õ“™Ý˜Í© Æ<ý39Ybñ½XQ‹Žl¨ì‚VÈNV§×mûV§Ä‹¬VLá›·.ÆâÆtìÊVÄ$%ÙTh!\ììmµ~ÉyIüÄTR*ª.¶qœ:Ý^­Æipjá…ƒ ÑÇàÜûèúõ¸ã¥O2U—yºÑì6ü5zÍe€ tf.þL ¥O/·¶Ýz±[“x1 κ¢Ú6*"Cyyá[?H¿ôƒÌ6.]@ÛZ‚àƒ)xa¯1"»î¥+΃DÿïäE*З¢8Å-íÙ¥U&†*µR/bF¯š.¥ð+åVº¨Ž€ÎɵTš¼>稦2)1öß” ¢?®‘ƒ·$½/ñ'9»_•²' œ¤±Xú×xJæçµ'P•™ž’¨ø-)‰`äQ¿ÌRRúýߘ4~îŠb€ù„$Ë^zþÚ*°D2_H¦sÃkíës<ÇŽßú ;/Õ—ÁåÚªúÜvÏÛmš»¯p{È ïäâÞ3Ÿþ­“;päß:±zïo¡+¼{ðÓÏ÷Ó'YˆÊÝGý­“„wþÖI!wêo¾E@âHí øÑ_wù'MËNôjǘAÜ;~ †|g×{rxƒF­QîOLºÏƒøºOÌ!^ –®ÚîîÜŽ]Ä”b½±ó-X‡å²6›¼§ƒÓD‹çᚎ횎¢"órŽf1/N!ý.“ëôzwJHºg¼|çààŽHHöÄ:ü®—zàãcÒêhlåÑã½a¥l÷ ã©c†Œ:ŠtÒ uâça>õGz*U''q [0œûÉ_h¸»L:cxMñé|gb…¹{ÇlRK*¯çÖ:·g?):²'ÐùV¬È–?GµJŸ£¦óAÙÌÏ c’TLG‰ü9 ~’bú_OEÇÙQp7‰Ö=ÇÏÿkçõáË»HÄì‰ø]#.õ Æ$ÒØÊ£Ç{#TWKÙîÆSÇ ‰é¤ÅÏÿ€D6êôTªNNâ@·`8÷“¿$Ðpw‰Æðš$âÓ5øÎÄ€D s÷ŽÙ¤–T^Ï­‰nÏ~RtdHô­X‘- ‘j;HM烚”È$©˜ŽA‰ü$Åôå”(…x©£á–ùÖIà ³ Ìãrz÷…•®+7€ãªé9‡jª‡rÙZÒ¥„ü‘§ú^0p}öšÀ—ú½¬„ÿ[=IϵA® ¾n rýGð5y¨rÏÐÅb‚dxŽ|Fÿ¨—÷܆.v5Ò%”Ë?þë=DpÌÒIDö} ®$½Dð‹á(¢Gz>"¬‘þ“%)!ƹu0ªy~!Ç:aÉ–,9µÛ‘YévÎG&¤¤D‘|—¶T±{Cmwî”FÙy%eÀæ;µœaû¨ äDÿ ýn»a8(-&½qòèPŽÞHŽwõöqíé»ê"ÒÂMä´Öƒù']õñ.¨ì {(òÂ9/ P‰ÿºæ½z&x |,φ×€÷ù¬Jµ¸ÔT<.þÌά¡ÀçðãpýóY]T’$ ×Ôa)4Xé'Q|íðƒK?^,0ÞÌ(Іðc mÉåò:ÕÓL×͆ “ÆÅ-‚Ť[‡:a¦gÖ*²øÍÕÖœŒŠey/éH‘¼ä{à领–9/ö`Þwmí¿ÚºFÚ¥¸z@¹‹Èèˆè°€¤h¹n¯[ äÌÁ¸nÀú°à™]zÐè0ØÛ"¨tNÇCGià ×¢^ ëAƒAàÇÖÆ:|[”`ð‚ðúƒDü¾ˆ¸.Aë½ëEâŽØÜ~oÑ‹=¯çÖ%œ]X¸„|ñâèµÚ ïÜÇ; qínŸbÌÁ]q6Š„ïBç˵> hc½LaˆTfP¡k_à}ŒúÂÞ>Š0€*®&8ÜÖ/¨Šk«‘uº~ÿɨQ[[ý’¼{?†?26x™Ä7ïÇWàªW¿`•ÑÒµQ¶¡ Û7ù½Ÿ^x¡²nP0?XÞC÷läõˆÙ!žóˆT·S8ØŽJ1Ó ‰‚wŠÎVˆ-$éŒ`;é«êuU§Q.-œü²{pP¥…(´¨ØŸV–dѲMÄ|åï±pÔâ]~h{¾¨…Å›ÃOn{?ýÏÉ/­ßv_ì1‰¾ƒH·^?o¼~~rJüe6sG—˜`,âByQ¹øíl–ï^Õa*C±ߨ,ô? Y&û\£©Ã/5^Ì®4è•jb^žÔvŽOâk§ׄîsStºÝ™{Ž ›C?v@±KmPº/fïÛ-b ÙfA‡èˆ_æew/³5Õ=—ƒSÚï¿JµµTTw^ð'ºØÄñyb‹aÐw12k(.@-µ4¶~ȨDÖùb{Øo¯\{U™BAmF™ƒU ÎÐuBÚÄM(|ÛÇÈ#¶wO¬Ác9îj“@}t|/¼@}ÙƒQ·KŠX?øàšw^±‹Ÿm¤[²Ñ„¶$ߌU9yÑ Î@‹R 7 R\Cr-ÀªÏ¼Ì¼B<±'Xyâ€x!àæÏ‘7D;r¹î”µìÅ…)¯ƒ`I\« îUÛæpxòÛö"Àb…™pu1P È"øã^E §P öîZ½Ž"'²Œð£B!€Îmo7JÛÛüQ†0ä¿êþSèøn^ ;…CFaãÂö&<ØêäÉŠë¢;(8€ >QJ÷ƒýêÒ±¥ƒ6Ì©˜‹ø5P8’¦XùñŸ«…BµZ¿süíMm¼Â ˜ÒâÐ)(VÇ@|' ž.„Ô¨QwFm¨)ƒk“‚¥@‚àC%l趃sßû7ˆe„qzáJ¥ãj%*ôaCÚu¼ï2d­LW èá¨&h‹Â¡ë»]Wž×R€oØ„¢J  kÔ(AéP¤+ÜÉfÆK[E©Ã„,¡åɶ«€”0u·ŒÐýsgØ¡`ÊOëKÐå# t_/bdBƒ£¿tØ„2tIõ0T|z{§ð:Œà+Lžs¼ æp ·ÆÁ8×d×~á^†çS•–ÔV#'óÅÛGi´0ä*Hò;C3Âʤ“Xõ±T¼ÅñŸ!ZS*vâÍ×>öKªè o"âOå5«ŸBf?ˆèÿEôM%òƒ~ÀøAÿípÁ°˜Ç(Ø,¨<(+Îk`jÛú”AÙôUF"¦eO<=‡í¡7ˆ 5 Ò A^TQ£MŽPƒA£\Ú~ùRà/2d”é9›ðÝ6ý/©øóªT&€˜ªâJõ[|ª,(Ô>PûüDCV64 )¿­äSŽ…‹ íSÚÍ0·-MnT ¬Ç˜@óÉÙÿ"o°Ô’ t2ÕµýF~(ñ_„¶©z8„/K`ô(¯?èéœ=*¤©¡çjÌú1ÓOƒrA¡]²¥ãc˜³âxø”ž$ Ëqv™bja¹òìK¹PPñ„ö»œy[VÑ9/žáx]OÑð d{»^`+Ù'üS#›ÚkmJ%.1‰SÍ<’æ´Oê#d{ÛiŽ .¡Q9ì_V:ä…¹QMÅ#QÀH­•;)ôü6†]縅¨¨]½(RgvX)ÀÓïÆp‡a` °3—ÎΣ8“ÈCO·^ü¶õj!ýö]…³V¿ŒûÔÚÙÝÛz}pªú†‹S%Ÿ —Î,3ÀØôd0æi• :.-ÈR²àZ¼bƒ}a-Г\¼H¡$ÍÐ’*.îÒ¥¥Î3±ô‡¨>Zê”E2£ÆÝÖã4†ÒxŸÎ¶ð¾PzuhÆž¼éÀ’D=~TXö6Cb ø4ª Í1æa­ný¶»u*v_‚Ú½‰ONU:3X%®ßv 6˜ƒ#K.Þ à‘Ì8væ"H\:4j_8þ¹‹p°˜Nk0ÄÀgxDÉÄb¢0Í÷dÉ¡VFßÄThØ>ç´£Þ5‚ºD5 _ uwŒcW¯'ůšÖXú"‡!;½žq? £„Èó[¸æñÞRÀLB®£†á›|=ü2¼mÆ·Pµ7šÏÔº åk™àp²•YøÎ²Åm©îf7m-ä&†Qäñ'>$A'ì1»ÞBÊÝ'F5[q¥Û8¥Œ,}×&,m¡3éŒg[Ù¨•r ©Z§™,ŽÁ²R‡ïâ3éŽÔ1„Ë¢õç(Ø- ' ½s_eïyæÃž•m²§2J.¬T`S®¤w9@çUVeâcÁ`È@V+ 6ºŸÑM #+@Q¬Hi%Ö*ÊÍöu†pýãýÁ¨ApAÿ»ñ™²„*Μö‡ºt!C]Ò±rÈôár¯çQÁ`ÅG‹‹ë@….ŽPë8/áE0êuxßÒ†˜¤ w-;u#ÅÃÂ.°6Cäô€§UÚ&µ¤9dìÐå‘Å3ïØ^ "É¥)Ç{߬3’¿4?-/®4¿ˆÍ–ÒT 6”Ëf%ñöñ®ªðܬË#o³Ò?3•J–R›å÷X€Ã5s›Å¦b Ì ÕšEZÞ•¸VÑx[L%eªÈƒ'ª£PfdÊKU”dIªífé'àµ% D_– (Ó˜J2~WÑÙ8j¡<¤ä•š0Ôð¯my*ã#ÌË6V]ÈÞL3º•í¯%貌ÅYæ¾[ó{‘÷¬v’eßô˜¡”²À·_îo+¿pÕIÏ‘þª=y™±êc*¤VHö· 8ôvÆ!ˆ¼¹üÞ>WÝMÙ—¬-׺Ð7U”2úäô½s'õ€Œ1CGãA“ö §ýàч.›7ÑÇ9Ã8Ú[ðød]ÔAîÉ1%*MÑ9í3,Dãɇt£{ûow7ɇ<Ѫé¢Â°ñdyu™'w¶äºh56¦àÉ´ÓÈ"˵>AagQƒžNƒ¡û‘²LJ ä_ãöâ\ú‹.¦ ö¼ Öúr¹>Íø¹]Øô¸¡×ÆÖVE­ï3%>‹@&Ôœu † £šÔ3f8·7ô®«øÁ‡µƒÑ~ Âîšü».ÿ>6(&„ÍÆñV_ÍBÌÝæêûªYe4>ªb!ý‰ÃrdP¾õŠ/¬’‘O²ayB¹½žö÷ÈœM† ‰ØõBJ‡Òˆç`±@)Xõ’®^2ãÕ€Í*Ê•º±¨#(}ξn<qŽÙH6ãžš]„Fh"B2;“_e¯\äºçj` µZÇ éþ3Š‚šG~ÍÃÊ>–0vvZ»o^¿:-g©É˜É•1üó)Ž17Ž~d@˜0Íp,Y8šÝAe@§)]v›ïÍ(dkGM¶³þÒÚùæ¥4<xˆ¾…“æ`Ž÷a4™lÁbuƒò\Q”Ø(òbu.ŒäiÒ×0ø€—1rº¥¤Qª3¸´&öec½vDürKüò²öú 7‰ÈÁ—k«ø2! ÕEßGÙ +Y€ŸäA†×¦1i(!äÌ’§'ï“õHçäã$¥í¢êYBKHƒ‹ÁÀ©n¬#µÍ‹GÿcB6(ËJŒ&·K„žŒÕ»z»†‚b”îóc±V¿¢%YëÄ%¨â¶‹s×w1#œœC uB¹N‡.A Ý^ÐÆ’i9Re8òÑ6ÃæÂNvþ÷|00ºõ_£ýÛšb/ùöŠÜLbRʾ \ Ý`Gàî ïcËÌq›‚FkÏžä©]‡[JiJ†¨\ºÌø ê;o91ÞÕ°ª~PXè?}“„ÿûè Xâ‹íGã›t„INÇ*¾Ü°DA°[Ï4(/âS;LÅ7bsÇÓˆ‚œ^ô€ëÕ׺£†9ÓûnÛH`›_ûõ}àUø-­?i”T&÷Ðè™&dC{ÌXä”M¹ã¨ã ‹äàÎÐûVë«y’ûFæÔ.§î ‹ýLº 䌥h˜þìP,82®Öþa :Ü•×ÝÈÑDjR' ÍŒàHÛC-eåY«j³ž¯›ú÷EÿÛëàì_üÌ5§v¶¿‰W]–`Ðmˆ”ø3£Åÿ%s©èÝ9‡nçÅÑÖ ¼+ _Ïx>ª9Å‹åñ„\®%öSÏÛx…úï¢ÙÞ¥§ˆ8ü°²¬?­L¿´sÕ«XI"åFj[±ª¥ë+•KëXSª=Ÿ‘›Ì¬ü<úŸÜ€j*3žºˆ˜ƒi¦'¾²¨/åœü®oÿ”‡CsžÎö,%츽㠧hzXû>WRó5I½.× Õ–]QÂûØÕ³°S­û#ü‚!4  U¨žÁï”ÃʨæqóF fÈâêÉFkc]¥æÍž”€eê¿K‹?;á1Bò4á_Yžl’Êð)P¨@ÿUw5Ïp XJã)áüÅö¶¡÷‚:º²¬5R§M÷ЍhÏ€íÀP뺙æÐÍ8°î-và\¸×ZB<©¯h:é>}ïܰŸž —NÂåŸü wå”ð$Fýž¼ß~c“ÏxÎ)ÿùž¼«'#¿)¶AZ†Mµ*iÿ Ï«ê{S¼]©}ÿ®nyñ¤þv¹¶öŽý–)Q°ÁpÖh·‚f˜Ÿ‘½©K ýq7ƒÆs÷©Q[)D1½AWRñ^f,•¯ÜÚË}=HÇTg¶Môm‹Çõ§_»/Lo­µÈƹÞÞ{WU¼/- ã9à4E Š‘5™“ݦñAÞø­XÒ>ÆcÕmß½ ƒpc‚=ãWcï45ÿûÿÒ~4öèc µÙöñÉÞÒŠmÏ¢Ì;Æ!Ü,”Êû5¦xŒÎ,å½”öRÖ‡#_>ÇOüŠ>ÑÝL3~¥gcÁCsA¸>aJ|m,Ún³0ÈV‰À¿õÕÑ% øÛÚôD÷5Öì­Í¨å„õ&jSÆÌ…}!êùÞÕ%8a©¬ÕWù9|~ü‘v¢Ç°Å{}´ÿæ¯Eô³=nÑNìC¾©^7£aà îÙÍyv.ì±}3ÖúyXlE~JY õ)Y\Ô1¡Öv¤H<ÿýÑg²j°ØDtgÆ•²ÛÄþgô37]T`Øp?cÈm;×L]×ÂQN ž0¾ötn¨ÝóÎ\OqV¼Ýg)Lã %ËÑà­œW«P˜ÇÛt í;ððM:Ö!Íѱ„ÓŽF¾ŒLiu¨sƒó”[ú2ëNX›áMëÍ< ¬© ©EÅä_âÃ<‰Pˆ&3ÚåM¯¶Ú LÇ7¡ôݱK&¹dФ±vá5‡VoIÉí$¾r`t›]¢}›ˆ°Kªôª‰÷‡ßøßÃfÍ$±¶tÁ¯´iË#e¬û—ìàfݤ¥6~§–Enê‰mÇ–.¢wmé–³%o²{Ch•²í‹~УG—¢Žn³{9Æï‹}<>5âÈÐQ(ßr¡¿¸ƒá5õÑó(âY¸„æe®¹}ŽƒB™\üÈ£ D ò¸Ç¬ˆ”„]H«âSŽ“n>WÝÅgÉ"’}×ëÆÿ57¬€é©4YކYþ Ëdùƒ,å²üA–ÿÿ-ËáçÂvÈă湈£Ëi£ÐužM€à¨µå(Ÿ:«µzAÛ4Ì+oåŽW𓛋먤pÀ¯¯uãYÕ‹K¾4„€erUôþ¦Ž×(ÆTLe«3PÇ4ž&àžËa'þxf*ˆÃÄ@½(Àh®qÕñ þùoƬmßœcL¾J%g“Äe”™%˜·N°‹á?˱* |gʤ–I¨—éÌ ö¿e k‹q,ýÐéfË¥s÷Þ4fñÅ!Å„Þ@ùP0sôïä‰È¨Ùê¶.¦XS–Vë…ÒÁN%V›ÓW¬Ç¦zœlb Á †#Ÿâï‚Òˆ‡FtͲ5òÙݵ##úásŒïÑâ›{-ys)Ve}k÷;aÃøe¡œ~¬9e"Í 1„Ä}oN_(Mžòb»lI¶Þ¹ö¾<ŽY;õ;Ù3nµ\::níAc!bÊÿèúð£Ä?§I²Fkà \­4Ëåp©^KKø=úÞÈáïOÐJÉÆÊ’¡îßÂÀ}2½R—õs–Ö‡-ç, z£ÈM½…ŽCä0Ó/uŽ×Ä˾çÂÖA ^x•ôdÃQ7Ä)ø@P^Ôâ{ÉÁðLè¡%#¢C J ¯@wõâ—_SŽY›- · LüeþK®êÑ(.â$./hK×5_ÍóÅÓŽêJ¨vtá†râbtÕÓvkq°4Ô5T¾˜SeJ¯šà:*Ê2%H„³DcÜ韣{ ÂoŠ0ŒÀ(nû€º7-ëL÷q¨w9t–Èe±Pæü”•3½ÀwErD :Z´Ó’ÁA¹?Êãûn]ˆ]¾f ,Õù|Öþ\¯vêÕ27¦‹âq†PJ¶xÖ¦ ™óbýï;!rI„ÐÆPnþ V‡ ¥0Ñ(SÎÀ­ƒÖñÞÞÉ.FÎ}~°Ûú¬ž¶öÞîï¼kA ‰À6ÖZatO͟ئ À‹@Œ˜x´Îªà¼áÙ¹àœU0Ø^]öÿ{_ÞÐÆ‘ôý7úAyXàc7’Å;ìbàœËJ„F0¶¤Q4’ØÎgëèîé¹GBİ+oÖ†éîê»ú×ÕurEâ(ê‘Ç VôÁ©ïTNYÔ }ê:-®¢†ÒŒï ùÆ]EjC¤rÏï h («wI[íŒJì ÊÝ25€EÑGŸðjqùSè ¤ÙÖ‹WPuäæh昳‡âÿÂex×ù“@x ªÐ¿¨ùæY ›À“‚û±kgíÛ˜k³selnZ™k?X8†.t€_6ɾóÜF—Ë„|Ù^¼ëÂôsåô”¯†Ÿ( ',sV¾âä¥5ÂØã44=oÜ“"Š+¾RVYþµƒþtÝÎHüèJ4"´ྊñÐ&•ÊHuR¹X>]’B†tÿ¢; µ¿ÃMyéìšnL8ü‡–¸¡HXòÏoÄÒ–.lÖ¤®mTš £é0ÚÈ9£¡s±- ›pbKŠļ)À6ï°OÆaÉ Ñùu™Ì]€GbPUWå Áͧ-¶ûM z«ÌÈxCÐH—È36Y€»p}åé1JÐètš-ˆaœelKØ\²å ‡û~5:UºIpz·ÀRt˜AK X ì'†‰dkfà Ù¼GuÝé:£2ÙŒí9lñÜ+Ü•ed˜.e êˆàZÂ9]a<¨¨¬‚o{J ·^]û¦útª…ã ÷v¨1#oÖ(íµ T¢náÂQ$Ì1“V¢²HÜ!*È"‘ …X©‹ú4±.žD9]¯¾\W­!ͤ”Lo×ÉÁQj.éIåYæà#IÓMÁßå¢ Û†I‹šärQõþèÒI Œ?½× `X„ÄžØQ¦]º³Œ¦ é–°{X$´ÿ0…œHOŒ2,%n°@XJ¹ø8VH1KVÅ«}Ó ÿ‚ÐBÊ;uüyŒû@GãÑHnÀž¤ÄB1„õ;gœ#ƒµm–®Ùè?ZÃ<Ѽì¿h¿9h`è JK†§ä«¤€ŸŠœÎ†‰ÈÊT8¹"“Kj ú-Ý5ʱk;mÓ·T¥BH°¢"’Ú0‚Í®æé´ø+—vw Lr‹A§7µ@ÁRLÉ÷f‘f½j@àzQÒy"Õñxø*/)xVŸ3ê6×h¢Yd&0ÏŠçö»¼Ä$º¶ôûrýÑrÝ«?‚»ŒÏ ä£í{X|e9¹ÜKþ®„-¾º&Í”‰)¬Â†÷][­Òî‡ék Õœï[L]óÉàoÕoWW«ëu‘]?<þáÕÇ¢Z­†‰¬‘µ¼T^Ãù;DaÁ?«ë1ÄTëY?é.hÆ”k¬|ÿZÈl\“r!'ß͓ϵfÔ¿äp¼ÕŽŽvÊþÉÃ28Ë¡Q7Ò«œ,p0õU¬‡).ÀÂZÈ2ʯµìû78^þƇ]™õëå}©ÈH&}¥_¹¿ò Œ°;—ú«ãE é$-ëÈ7@ŸW’r~¸°f²ÈíUp%uè"#¥€Æ‘³£#˜!˜H73yä™õêú*>œ5Ï©Ò\ˆÎ ‡fBÆ©ý*5Ñ7M%8SŒÓÀÝúª£ËØHůç‘Jå`0øÏ€ý~UýpN<Õ“Å¿ßyn@*Ä¡äðú)XðeX öY@¾™\Š ‰ü±âRÑRl5¦ì¡”Ë;o¨Ç¯E‘ÕôUòæºs-Ïèj»9jþ%ß‘¥)8ÆÞ¦aëðÍwÂòû{Ï·iì½kP|âò?îŸìˆb¯ùÎNCáx÷Ç=&1´?8ÈÃòQÙ>ðÿ†ÒvÎõœþU<Þ>@×løá¯¥V;DŒBúôDåñúrpBSàEe?€)"%”ÔËP1Ív>lØ'B† Ù’¼6mÀ‘gw;qàa!V†jŠÛÖÿÛõìÁ¥xn·€AŸ7á üöÝðüñ¿Îñ‘¶Ãwtq` )ù(Á}¸@Ò­@ƒ ]Šz×Ô8ü`˲`o{ùƽǛ841º;û.s™mOé^Ðsü7@„‡åoÓwž‚qC9ò&ûwÞ}‘›€ÞdYÙíÞ5¾éé"ÆšÕ@µ{}gtj{V­£f\q¿¢ÏÜʯ­áˆ~HÞ+ÙK2«Ý°‡Ô MË\ ­„Gž/ˆpv8Ì:Î5…kÁ‚J£¨è£kíèéáóÒ2~óg­mmE/¤æ«[t´áV¬5êkµ ·¿XÊ>`õš¥ú’5• ^4J±’ÐgDuÕfžz&Âß©Ñ#bÕF AeŽhzŠt¾<Ñ­e×÷%÷C³õ~ƒ‚{ø¡-ÊRaÕ¿Y-ßÖU„ ¸³6Ut ¸ÌÅ·ˆ}×ÏÛ(2ë :ÿÿK«×k«üGœßhbò­e™WU¨Œ¶T ¾!©Y×i”‡dB¥Æ&1iÏî¹CŸäöÆ=žÔaó_ø»’·ÁU[9Á—]ƒÓzT‡PÆíù7Íõ§ÏÄœçpés.úØ$¿/çöè Ÿ¾W¯Ÿª.a…«×Ï^¾Üá_G41 ò!Äk÷¶f<`/0Æ4»ž«{ÐK²ð·ïQûŸ”^ªÙg ,×óaXK&hóZù Và±ÇÛ/_WŠÅÏâkñdõ›g¢&ÖE}E¬?[_{òD<kŸ¬¯ýãëÿ\= #¥Ø³•2,ïÓ¬(¢MÀ¤Lá¯öuh£¶‹ºõTèz“ZùÝ ‘b#è9ø¶v5>t²=Ž+vƒ6þmÇ6øŒ:©ˆ^ӠΖ—ÂÕÚ¢ ±>áÔÂBô&£©óÛÜ\X åGQö¤€Ë×öÒW˜Œ/‚Ëòe8„Ýã/Ö» ìDÚièPcïTcUî#~m¶Û2j°^9%Náʼn¾óîȸ”cîÒ#õòü‰8™ö£©ãx&=²l)ðÈxÆ1ìûP+ÁãÔ­:Ì[Ûå.ã¹nQz”Éé\ôs£ŽÐ§²ÌDúö¦èŒû-VPÅg‘hþºuÆë>úºÀë.~XY% §—î…ØÑƒ¢ÌÀ¿YõÝuÿo ¤¨¼î»½¦Œm½€¾ÿË=æë_–e,Áák&F‰W…$ÑŽI”Üð‡É†=Ñç!Ži Öð[ïtLOÿ4ãñäcȆi±w~^6þikDÑlyµçMWÏÊ¿HøC>ú_‹§Õdž”&B½óä®»o[;¿)§éêçzL§_0\“é4]yH_jÛÍ.³Úën°`„åØÞüÑ{ï]ዬ,j…ZH õß¹Åâõ×¥“¯¿”Ó¼\Àgä“ Z¸÷›"ß0Vþ4FñÓ§û5Š‘¥øªp'ï™áÿ>­ OIî–øœ÷‹XüA.t«t{QŸÞÓa•´$Ý‘pô³ôËæ'?Æl¤‰N€ö_¹x0¯ÎŠ ºÆÒZ}m³–*‰æFá­«»!V6ÅçÍÉÊßíœàW9ί5t#JMn\TÕµ €®Œt’v® µf›äÀ‚xÈÉýÀ©@²q3ê…âæêÂV•ñ¤Iv*;IS\Kض+ý-Dn™Ö“åèÒÉ•|PÞT “o§…;ÙIw¸—n¿›„¸Õ`‡·Jž}²@[Ä<eẆ«][•èïó×'Ç»±†±5ú* èÇnƒÍ±åȩɕў¥O+Ä0øû{ÏéœRÞÅ|r²½ dÇu:;k¨ìGôÇ£*yaYZžûþÔþŒ ëÃϤZ¸’î¹%ª6<ÿúî0üªêxŸaG|d©Ìê-·ÛëpD†Ù^tYDMŒœë·OL–€½Y¬¹Ù°a ô²£”ýüÀ.$mÝtS©äA®/®lG—FHä²ù,ÈÚ.ú¤àß&ÍA ]d,Up$=:y`‰áújH¡ñs^rÀùúnÃî†7ÚýÏqHë™ÍÞÙÖ7]¿Wf¦š% Æ SVæ”Q`KWvÈ"í4zM4KÀ–+èŠB¦3š²÷{Dã'}c(ú]EŸLϴݺUyî'pa1BMª×Wvó½Œié{@é:ïmiøÈB±pDS6BG$Á½&†v'Ëâ¦'¬Ÿ,nâ%²qlG «*‰÷ö 9žD?äßO;UÙ¥Q/I?_H;|¤rìõt‚›DæU(%ÑnôóÊÀ¦ºh&«rdA=¶xF¼6žnäù }M@‰f•çó\ ÚR4¯Þ“¶ùGò©¸´T/Šu±›äÔZÆgÿËð‡çá?YËä…qÉŸ{£!&<.¯•×–ÉÈ³Š©\Y>Áí Ö(æ­K|¦ELûŒÿ3-*ã8C‹ïbä,øj„ã4ñjÏÑäùo¤žxT_#­ý3Q9Ú\tÿ®q ~ø1üá×èH¯ÅŽôÄD_K™µÜ³:™ó‘{ âÍå,¸]š\ºãEØ/^òÜa¯ÙÅ¢¸]¼ÑMW'W‘)V·#2ÃEó+¶®ê«0 ¸³5¯– ÒÄYoR^e¥…nKãRHLåe¬î•- ÔøŽ¡EÛdZB=až m%’9d`iC[T8t;°u‹t9q<™ã”ã‡Ö‚Þo`! ÒË}×»Žs^m.áßž[ýqYÖU0V}·,ÂÕÅoМà‚Bÿ1‹ß`ïcЍvãw‰$f£ºÐ% ·U5rÉ»VÝåp]q¤'íUF=˨,WÇk§º¼Ã'å5·­+eÃP¡Ð“êÛõÇ¿}Ò?UWðç·O -ðèttÓ‹½Ü'øÊ.%K„ž®y[£¸.Êüôp/Q=$ša9ðøÏ´ï•sXîïý|å7Úhå•)¼ Š ûÀ¬žáŠðë-¢HjÃ,ÖcìÇS¤ö¢\\—%ø1'á©1ß?Qd!¼$ù‡lŒ­ñ"LA+ÊŒéž gµšo£“ô¼X1OcàyžhHH¶¼#MDº°Â‰v®©„ìe™+§):w.¸n5‰ÕBè^t)Cvê“¥vÞXÚÈa†’‘ú4d‹´™¹PÎp—UV>OFÃfÛAxÜì–ɧ6ãn¬WY‡OÅGäâËR"l擎·LÈΗœª&9ÑPÃsÏDÖæ3$&L¹Gµ“#Ìyum]qgü±Ê.À9HWäì°ëñ¤ºÎÂiô’ÁwVòÉJwhT¨cgÁÛ4ÝgéJˆ.ìQÜ2B±6ç!¶ÈJc„õ*¸‹*ôUe93yr¥#P‰Ë/ŒbâEK) e8YÝd`[ºÝ´$‹1B!,Ͷ}>9´±Ýv[·“7Ly®Ÿ×í³¥IXÃMS>¨tûÒÃJà†09¤ö“™IÖyß“WNÿV)e²è“ÑfŸXaA S@Àë7‹Ï^ž$vLà¤+ņ™1 §­ÑÓaAš…ÕÉË<óè5éXEã7aëx%¯ (CbG3vŸâ9FNDõzÆãÃGƒÏ*"^ênHaHtÐƒŽ ·6é‘f:Œã‘J ¹W-À;*|àÓ«]ÙcvŽ÷u£WÈõÌñ2“mé4!;/ùˆ”ê|Kú£&¼bO’ÛpþîÓãÖÇÃ6†ª”~[øº$¾›0ˆgÜST°Q zEÉvH“`2‡üX¨±Ì1kwÇñ} VPßE†e™àæLXuœ ³ÕVi¢™)¿ÀÜXÑÉIcU>u\-©nup-ÄY óÃj~XÍ«‡yX-Üú˜b‰Ið.¢è½ÌÅg€Û0êl|ÉÂÕ Ñ{›×ùd¦û}é; ØPjÈRvŒá;H—¹ßR?dà¹8Ù*Ñ¿î.JuC+BFpŒI*<Í ØéP/Ym4Zd\¢Misƒ£Qµ”œ)Ðph»ð±‰.Ù-Í_Å×ÿy±wœ’£¤¾5;êKN7gÐÕ²¥g^Y-:}·¦PžéHž\Õ¬H@V}FB¡SÛ2Ô,ïkjZxtYüV¯/ÍM¨××¾¾°ÎK ìÔ:t“-ÀSˆÃszÆEq´{E²C¤+LÚdNã¦;Q¿özô«U"¿#¨†-ŒÅ=þô¤£Sý4$JÅ„áf~Q¥‹…Ea]ºx£¯¢Ôzq‡m·±º ‰Gö$Ýn\q!d,P4{vïuë`ƒVÝ¿i¸ON÷Žp™OÛο–Â׊ů”ßRjÉen½o.‡ y?H.’pY¢®,‘¤ÇëÞb6c %—cl-söÛé 2ÖªÚ5SÏÿÔ ‹œ%@ µAÛÝÁÐFï;,K™Q¶¦Xõ¯¹G KÌi“«²¬ƒ&$ÈåæŽçåsÇósÇóÇó^Ûyû䩯*øê¡=„(Là3ýv‘ÓÒc§±þH¸%za7½¯k2^Øc}/Ȥ.?Þ°‰ÆS3”¢³)Jy\ô'?â,„õ0þUb}J¼ŒHÞ”b¦ŠK”Vs0)ÀMô HHûìÞB“ £M³°çêÒ/½ :ÈžzîFüŽå åènMŒÖz_5!Ê!„ óKÅHéõæ«\Ù{}ÛpÃ*¢ñe#@Ïw™ÙíâÈXé6n%™=\WßäìÛ áK¢Ólk3P\ŽG£pÿ$ŠPs€bȉ¸é_ÿ^«(¡Â#²ÁcùmÔÃb’ÛoÈgVg: —nÃa%ö&Ç"³þ•2ØÛi—¡ÑÎÀŠdU&y&a Ý{U„_ÿžˆÞD•¥Í¹Ö©h)/±+#ã–ÅòVi4ãÝ)§3Ù…h˜Õƒ7èrú5ÎbCyL><þýDÁV¾D ˆ2Åwzì¡’@øoÎP0Æ/H3”Ø›}b­8Ô@›RoHö®uÙsÛp{yk¹Ûæ' ÌEÊwœ¥;’«Yî–õ¯Ã7§GoNÿ\,£†±¼dÆÓÃÃýF\n>ÂtM |ü³ËØþ´RÝýywÙt&GiAIµ #höpc‹Ño1í@4cvJÝ#7ø^ÿzû`ïåî ¬t֭òZ£žà¤EÝ^³•—‰„[¬)‰ E·ñ°eoÄe'åiûÚ‰µàø"Ond€±•Ba*Å6c(Ä2dópä¿Tt¶×áGÔ°DPr{- äÓITº­bMñAMü+ƒ_Çój=‚±¬:9n¹bÍþ°pHЮ¼ÐãJ3Ð¥„¨¢C„%“ÁØÀ+6$Âp”ð_¥<ÁQvçh7‡òÆ0¼l<·}£ ¿¬ÅJ sİ÷Þóõ'Á.>n>§µõC´’þeßZ´víaóÜä e滈O‘ cú2kår0¾þ&âS$ÎÒ+ó]E²¸¤ WÝGçôì£&îÊm"ýEµ®ãË[Òh×9§KiïCZ=A{•ü}Åõ.°g·é–¹7î SúÙ0]¹JÎOÂ놫6RaôùBîã t¤"ƒK[2ù0ž€üÀ>tJxA¥P ;$½4Éëk[e²Œœ!˜ÌM±¶·+”¥6lŒr¬V.×a0Ô—!7]É{c"æ»|åõAHÂr€q›qbL§_qC2Ñ¢‹ä6×[Äž•®å©–Á ™S¿0Å"]˜l}.¤,Íh´L\|kS-¾èëÿÂå`Ð\Áh!1.ÃÍÅ^’¬A<-‰ò<€ô å;C¹ÎÀ„çtë•£T=Œü+eGÈ~Ƚð54Fcœœ©Øš]ßHv¼þ©“¾ì?Tx1Zèæ E@ÄŒšÁÒ_À°Ïú°äڌո¥çߎ`çã-î„*ÿy‹â}ó†Ü,H炤zqÅšá^!À\vaƒƒo&‹b{@³á*ÊàtKæ+':®vÝ m*© ;´Bþ.™(õtHÞ Õsgm€º½¾L­*Ú%s¸áÓDü,›¢ö»Xy„yušÃ¿®ÊAgÛN§ i[úøêOÂB34rÔ9f>ƒg•â2ü·ÔƒSíY1jÑ\Ê4Ƚ›ÙOʆ(Æ·%¸µ¤<.íàB¼d=’ß¿ü¬÷¶Çú»Äl¥>ç¾ L=Y?ù§_œ”´+rMÄbÎ 4©áj$îänrè9éå(ÅÃFÒ$êØ¹Cçš|àãä¿â?w`<'ÌÔµñ™oª%Ùôö5­xöH…®!~Ž¥5´ý6†ö…ã¡z4|‘ç6Ô›^·á¸‚ìÒ©ŽzÅ–æ-RÖÞ ”“P)g¤Å›äüξ/eyÒz·}Q(ù¶‘žhá$÷=Ÿvo”ì®’žóc-bðê97ÏÑ#8|ºnö/ÆÍ |ªö„‰=¬ Çx‚ö‚#-*'ÇNW—65+ÕÞä±ÞlµìÁÈ‹ŒU ´š†\òµÜå}Ŭ…x„e8G ¯‘âÇ«îçŽë&­E}*“uÛ,LGÑß%V¸„1–Ñ=¦¶[&*±™RÍ ÷íõŸx0q ,×™<‘”•ÖfÄõPJ™|Aìþk8­¿[$GL Ï¯Ì R™#ŽÚ•w ‚`ö>Úõ\'Ì ¢L|é¾'0gÔ«Xu™R?Ï‹Z|LøbQi¶Ó‡ƒÆ5ˆ‚qÁIq¨àšâĪÔ˘†‹âeó|è´lñÜîv¡eÂÆS¼ä‰S®š;:ú«ˆ ÛŒžR5›þ¾qyï    K.Kè-Ç$?]ü³( õ<œÜÁ£\ß¾ò\ïÙ]ë$·oÖ›*oÇWú#—Ü_þÑ÷7’JDû>ù{î+ºˆÜA@¨'xôRë¶«ž¹vƾDï€é<ÓMÂYÎ qfØáÎzO„rN SŽj‡ç[=eÓocöÓŒ2öœýhMØØ´ÈLÎõ|õ’©Ôx¢oE9CÊDcÙ‹"¥YÜA˜™|­lpÂg±w°wºwprº}°³+Nw_«_Ò¢¹Bëþ*,HúÊ­ë–ÊS·RC®)lŸn‹×oöO÷ŽöwÅÁáÁÉÛÇ»/rHÙÙíÞ5JDõú‘ÂØšÕx}gtj{V­£f\¡¿¢.xå×ÖpD?L¯æÝn=̨õŸœ¹Z AV1_¡ìƒ!ì³ke¾ kÁúËgüŠŠ¶™[û#j¶æóû -ã7Ô•\k[›Èc"u†òÕ-²©«RF}­vãö‰ŒK”~èKÖTî´0ˆ…è|”„>7Ð-êT#¦žœ¶aVßyœO šìî¦QƸ/]H“¨¨¾RJûñZ±ðš{.a¬bênFéK_›ïÛÅØXìOƒÃ¿OW–áÛôxø±±šmöôƒo•p$a¸OüâûcBµÿþn™Œç´Ä ¿'›ŒF÷¾lµxi¾—8øwsΞ‘EèëkO|íÕë}+údÕ‹C¨ŠŒ¹¥©“_– Z•KòöeY#–Þ©ƒ“îô¡¯jÒé?²²#S“{$ ›íà“ÕÚEÐzîÂÂm‘ÞGëúÚ×ÒÞëxióõ¼{“ºÔ6î©™j2wô8º½Fq^+â«­–Ǥ1D–‹9m÷õÚ€<½(Q ^ü}j-²ØíÀeà þj&Qíq®ÆàµV_Û¬6Ã_L—EwC¬lŠÏ›ÁôøÑñ×Á-0õP„§É@eØwlÒ~Ø÷…KÉn=ñ´ºj±*œÍRŒHƒ„z fNSHú’äA_|ò„Híª?ÌSt;4M-ŽÀFŠ(ÝjôóÊãîÃø§uvâñOÝ()*&S ԤDZ±˜5+F·ÊÓßÈÁ…ù¡ºbø€àç˜SRéSŠ©C˜=içÏѱžECÛ¢^«T?`íOë„›êŸ%àHÆ-U…@ÓÞ¶ãµ KèýR{–¥•©‰P|4¸½»*ÌjP¼Uªœô;NtTÏA‹êîžX¯>K½æÍ¹ ?>­®}¿}b6Ϙ ¯’©bT ´¤k"N_e©‰$sÒÛDòP2,‘ArIaìs¼Ì…"ÜûÂÿ£ë;í¾êo»C# È\Y0e*ìÇ—’åÊâÜn5e@ÍÑå-(&b|NiuX¥P‰ä‚õ{ØI„ÓwØ¿köžäZŒ…PÍ'ÞÍÃ+uzMΊp?zè4=Ï05í œ•çÒ×δ&!S »ïÂлñ><‰ñŒÈ³Lç´×wâôã§b‹W‹¸¥É¼Rªö¡«‹ï¿ÿžVô‚çØ=»Ïzê‹‹jÇøém\V¸`Ð ÈÑþöëý½ç2,‰wcÏO}5t=ï5cW“»3A†6ze0W iÑV”ÉH%¶Ëz*øè¹•;ÝùP÷]±øZVƒÓGoz^óÆ#ëvÛ}C[ß#åpØå7°¯íx¾2÷õÚ*í¿h¿9h æ¤öÖ´ «ïÜD<¡ɯl~Dö˜¯¼>о¯¶ù}µo·R^ô§œÍ”§Xs&Œ‰0ʘ9è}6¨0âPÁŽŽ¯È±#þòôp`÷ßìý¬?¼é;×?ÁQü4”ÿ­úvmõ·v’u}…Ÿ)cË}\]ÿ82­?ù-íòGçemø1&ê&Ïì&/ÒÛéçâiSžÙ1LZ.¼°/çé«M9äŒãsÆzu—}‰]¬OÍå&~úá™áŽôÀÙ`gûàà𔓥¼µW¶è9—#øàËôŒ¨)éÀèн/°SR(æRh£úKΘÉU?t+n–}}¢²/O,*tZ—ä¸ÔãÃŒ÷](œjÒTìt«h}ÝŽ—{e—†¶á‚•C`dçG¾&è¢@¸}q©ª' k¸xÁÛÐÙ–ŽfG@=Þ5ÑWóÃMåFÁö›ßåØV'Úñ±BWÎÇá}fò•“ÀXDÊ•+~nº:G謙ó­ÿ¾57¯àG·5FÉGÂD?8²¾IÂ5.áÉ%ýë‡! @ø!Æ“êºC.*‚¢‰Œ­EQÊ!¦0V™“æ ·¦PuWƒÕl7SH‘Ý4ü2RÿïÿÐ’³A^•‹3Ñ‚a¶eŠxh¿2/,Ð;)òü¾ ¶{­ícèÐÀCé{ÈGa]ãX«…ssýécoÈð“Msà4 išm>cÊ‚Vû+úæábÒT e¥ôWÉ8á¥oD<Éá Ã~{\8„àªC§5E˜© W<²YTѲõ %Wq“ì)6×´³Ñ‚0ÃÒGÒÓ @Ê\yhJ°jGv#ÚtÑËÎe“Ìe[t¼Ú4ð€²U<¹1¹Ù…qûF Páa’T Ð&¯³SêÔ$0X½Ì:½}RpfCk†Âå°JÊ&’d‹·„¦³EBÁ«o;»±ä–³™aÌM‚Âð?2çf"u«ÎcZ·FµnayYCÝ‚UýY°Ñ³o.S—ñSàŠ™ÆÞVñ{£ƒóW/~[©¨ [²Úkþgȃ–L!3t#t76[*?{ÿŽçÏVŒù&+ôÃO äé7h|EñÞÕëTLHІrÚª|àÊý£N~Òï«Teà=u«*íL?;Åû·Œûš“L†šjm˜ðOÝ„ǹb—Ò´ÄþÖ•‡£åG\JÞëÒØØi“’UÚìÊ3±3š6ß¾8>ÞC‰×C\ä6Öqñçk¬u\RVâ–QܨG$¥x ^“0>1|‹‚ˆù‡ÿ©“£‰¿µqÍÖÈ:ÞÈiy)H!½`DtmÕhwŽŽd¤®ù¯v6ÀÛƒo‚®Wá×1wxcFæ˜ÈP?É9;,ÿ”˹7pûN^ÎlÔfÐê½Îè•^`éj“Q #Y¥11¢x7fÏ6iõ,¡NÄ“êú÷xß¾²‡ä§—/êÅPç7ã·§ÅÔªm Y“U«ú?©+jIßkÂò—[`ì#«µC±E75‡åÇ´µ=©¬ñ–ÆëU 7!(>JY …#>Q¤Ö@´í®nQ?:ÜÁVÄ6œ<õÂÂ,šÈM"œ†Ê±‰G€¿Ý¨Zò<(žï¾Ú;ÉR˜—xI?Õ>ÕûÖægñ‘ë@gð•‘ ªtǤ²º)gx >¢„ïà妠¿Cœ?U*ËD„Ý )cµ°ª¬þµj©lfÆ-L1“üÚ=Rb¼ÏÔÏ‚åýFB+Íòfwà ãzø“e%BÒ¯·R1²Ìñoü¿¬ë Ž¢ÿü}hÿñ–¿ÿd5’°ÁkX„Øjäþ\bŽ´ýÓTP|ö‹>×ú¶;öºrÛ7*TÃrg£Öv½ETg –,ôa‹§9I>3ÙÁR—ã#ϬOµÔsà¸ÐsNq„Á÷ƒýõ“£3í}&‰”…öÏÚZþ€ºø«…w:ùÀF¡fY‰Ì°,õÜB$ô}÷ƒßPÉÉ» þ‚·y¤gŠâ_eÔkh|(Ú÷ßÑÜ/HóÆèf`Ãõ˜„’Š3¸Þ²|AhþmÔ@µ»CeøöyÙtNWªß0±UtÀ«´eÖò‘dèì£~„šM]Ò•ð'(ÊOŸíªš¥`Œ’0 |Ü„} ,ývPˆ[[mµëÈ;b³?âAö%-JžBF1’«b»ë¹e¥™$ Ùh,öœ” p†ÐƒÌx„MöØ ±ö#ì°çÍÊùp¤fF öȈn€ê"NWÝno¶• Žn¶¢´´Ûò> Ÿi5$§. ö©þäå§ÏCã¹›¹£nÍ91‡îT¤¥ß׫Ÿ¼·(ÛEC.cÏ”ñC†ç­þ@©¶Ig£’†ÐrzÕqå¤T.†à,áÖíÊsÓ'qœ6¬ª¥Çë8nÏž,s5$¥":ø×±N\>8íŒÅ”¦ÖêJ 察FۆÞ˜½}”®ìæû’xoßÀNnûcgt’)úE^6ö·_ìÿÂË@_™M9H¼‰.ý:aßÛ4É6î.çW—Z%ÛÄ'팮hdT_^G'4ßòqúû$jÄQ@beI E?$À@ EP´Ô%În,(Qù.°¼ ÆID:°¾¼¾ËEüÚ¥\'h^`–%à1Gî•ÑòÒ¡ŸRn¶ˆ!“‚eŠÃ¹Òá)‚¨}\GC÷~RH4­Í?Ó¡ú•U;Œ/ëA …sâ&h¨Û¾3ö#'AßQócùÿ°i”<Lj©òì ]]J8 ã¾lùDC[*OÛ¡.¢Ök9ê% Fu‰”¤á¶A‡âÃeZ@ã[ïðʦáÍn¶q?øéMÒ¹°‘庨/¼]øJÝdEKM1Fõ¢zãã'Íâ⣆ѧ†8 }7< Ø^d¼)Ó€ß\âá¯þ¸ìÏÀO6žÃž=FKÖ?,q/…ÇA‹„*̦ƒÌ‹&‰Ò+=ºp¸ÅMð$㉾N·.ü3ùÈG<«Ê+8Ž|S×GWüZjqì–mõPËìŸRu—­)×Iæ  ©’á%TÔØ¦PBZÒö–WQàCñ¦I$fføÏŠÚðŠÊäòY. ÕíG©^w8lÐ?>ûmãPJ¢¸~“0‡'-ÜP#ÏpY8 Ü-ËX¸Jý²eñÄ¢ï‘{z#ömYÂB ŽYö/í¸^¶E…ÖýùË7X#¡Š}…ÆZüØåÈù—víWQ&Ùhÿ3}íÊ \ú·ü5”Œñ ‰ËÈßDŸß̹¥Xê ù‰¼Nl° ‰”aëË®XñÍ¡`b ;A¤heØc“E ꜠3_`Ã1kì7àøÛÍØEå»àR3ä¾Y›‘~¿‡Ôèj0Ñ.Å•Ýîê=»Õx§q.á/wþ0õÆI ”Ì64׈]ýÍ ÏXjµý­É3ûôª{¿Ä=w9m«Æ[êNj+V§7¹±«C;>s“7åŸbïðZ€/¡õÕ§ °©.š.û8‰àÀ‘8?h)M‰Òþ÷`÷úêê?Ä6?<ü(¯åÐ-H -åÜ„ÀV ±¦¤³ú¨¾ÌªÁt1†r~Ü÷PusÃÒC*–(Ý«N% "¥Qî=ûçûåÌ6TksA˜|dQìðíÌðm§sßûaNXX5ïÆÃW ÈÔxw)ñu=å§¶bÔlj ÐBT ¦gaçV¼›å#X½Tò¾þ½º‚Oa¿×~[©/×}¢Å¯ëk_c ˆª†º‰µøî@.ïn ì_×ß¾l)[ÒÚ—Á½k_Ã|·œ1oroàâ?·åÊO]EÁÙÏz¡ŠÙs¦¨œªõÚÎÛ'Oïâa"ðñöÆä'£ù XÂAÂ@ðøïFÍ;G•ýn›#s™Ÿ²$RÞS©hèEõçµ5ÿ”§ sþÐytõÉǾBÆU(½ŒõƒË¦Š]Í.JF”JW¤1,K«&?£ÏKêw”e6¥øÇ5r-³µ<ŠÆ % R²ˆâ ÌŒ¢— É^X6@ÂùpïÉUÛº¹@ÍDàú¹}põxÝxv¯fÈÞv¯¼B¬ãèryYÓ‡ÙÛDüï£EŽVâƒ&dscòªØï‹ý}ÒxcÀ²×⯲åZµZƒõ‡b»0Ä*Äã.lFØ:ÓͬñÙòÚÓîø=+žü° •£)Qi§­2ÃëEM u6ù ¦.1]Ÿ"j2iÈuÉŠ¹.Qéû`jKaÀá÷-l ¾©¬+FA¢Ì©¡,Ѻì¹mÑ|t”ÁÐKÂæ% ÄŸý€‚fÌþŠ‘BvLá ‰¢bþõâ÷J¦ã”ô´…‘èv“&g!}hJi”¨-Ý®öф碚ˆðKjü•(ù-Pn?ßÈk‡>à"¦—Q‚%é›8 /FØ› ûºW{m1À‚›¨b[‚µÒ™Ì%y¸¡‰ ÙÞV«UPµÓ?;‚ª5‘“’4­iug“7¬ñ£GåµÓõ“?(¦ ÆAPÚEî64’Ø£ß4üÕ˜®ÁUælű²¬I\ÝrÎâ/a±êONz‡€w ® xou5K>hŽð‰èõÉ;Š5›ãÍJIw6™´±ãøq:¬V¶œµˆÕdIƒ§ãm÷^žÈÏðÓViS[T³†©Ö.E7@’ønv°HÑ §Å>â/Ot@7|k²¼šuðøñ …3ÿ¬>Þè¦Ëï„Z—F7–O¢–ÔeíOã¢@¦¾=Àݵaa³¿&¿©K¤ýWˆÑì|ý—çHµëi7º®]Dß.¤ð>t/F;°¸~9á~V³&Jëå%å°Ìíô©ØŽu¸5+nW~ý­^_Þø$ju6†àôßáÜ)÷O”kû-G¿3¸ ze¶3@Ë_×3¿œ7[ï95ÖõÇÇk|UÀb<ÕK}Wª²µŒr9õÞã“]×}ïd×yo äôä"¯Öª¾:Þþkmƒ?²N{ú°BFŽ/]‘ÿPe_î¹^”ÆÞ¤ÍQHï}º¶¥-ÃÔ$ÙÊÀ\f2c—£½pŽEÈZ5¥Í·­ÊŸ;°ÜЖ'1 ï¢Ø#í—:$¨WѦø‰á7Í:¬ìI5{§æÚ$'6m;‚ƒgTGÆ,hÝ!mM7ʶÁY·ahZøH“ãuÊí‚všÜ»ýªX²«UaI fw[øjn©]b-ƒïMb~½¸ýõâA@v¢Žà·>RØHº£@l$®†(ðf¢–é‘/|Ôð2¢3 ©ôî¢s [yI«Ò©”-|¥ l—÷BDxcÈŤí#ôkxÙxnû†F+Qâ־鶭°Ð‰Ä‹¦’‘´*n8'…©%YI«+8\/~‰‘vÒ•»z¯{äARl‰**g˜£µƒ"y¼ÓÏ0~ÎùAàéoh9åb¥`nPÖWÛí sñïÖÖ~’Ò,¡'Ž`ghÛ2®^{ؼpû.o"8Žè÷— ´éD6Ýñ¨*è]¦Æj‘¤¬ÙµIu5X\hèVõ`ý4ûŽ×Ã÷ò÷†XÁ…–ó\óäÂWsÏß11p‹þ¶u͇G»±ÂÙÍ·ëÉõ³O ;cØ&û hÓãA °Ð$ÕJQÓòG3_¨ íû™ú2 RÓ=HG÷þÞ2ÄQÝžeŸãRc[RP–X;#f É^¬+%ú<§&|Ügò¬ù-?ÁD#‘H]ëhÇ®L}¬ûYŸhé~ÎÈ·'ÕµêZ( |Én·\ YÍfÕ2ôù¤úL¸}VîÕügfÃc¼ä]6÷ã/rt$¢©(Û@ïÊ6è>ÄS&Œ42G*8wÝQíÒíÙ5~Ñc @_ùÆe|`Çc $®šûÁøúÜøÃÚªþiM|¯H‰]éÓRðàØ6´áƒÖgJnÒÆ·¹.®‰1º3#MbéKµyot#vú  Ò Xä«>ÿZŠSÀ@;1ÍR œ§5‰SvI2rÖÕÙÌ3s¯’ýÜŒ=ñ¨ïÚý@±>k9ÊH䋜ŒÓœ‹ ÂÀe5ê~8zósÍï¯_ìmèSž™Õë®D D¿ñ_­Õ˜="Ëpƹälϳ'qíyödÒH“D)!–|94W’l÷– ¶›cÁÂbüÁ½R—SrúÑoÃ=èäÈõ¿º¤s¬‹As}µ¡F«å™­BƪH¼#š˜ eEL1íÌ'È=ÉÐþcì ¥SQ6Êz0sÎüpTyó3BO¬°1ÒŠðºîÜöƼ#¦ h¡ÐC•§OŸ–Ëù£RG~Ù‡,:‚å" S;Mí¯Æºý’MzÔÀ‹æÈí¡%I÷ Ò9•ÜÀ:·€ <½ ØCçúíã/e©ý PYXX·Ç£&W¯¥ÑšX:Ú-ó{ÎîþËå\jRYp.w9Ðr\?<Ãú€Fî@ qboîF–àLëã]%ꈒóMö/¬Ýˆ/ÌhÙHÏŠArØAtªØt9—×äsý·,ÈhޤÅ3zæƒNMǦlñÊ¢#GÓø8}_ ­Ú{ÂѹPÿ×í+cTÈé]9£Ö%Áo±ÿ‚WFåñú§ þÖ§•JoÃëç^ÏàWãWa2ŠpÃð[¯yá´¶¯WΑZv•>SïÉ9™ø­¾ù•Ð3€¬~Ñ•<{‚¤àÀUU<{rnt€‹‡>qøEÓ~öÄìÃrz‡û¡ÒÃP a=WN>Љ;§nY¾°ÇmŠt)*âÛoÛ;»‡/Åwüµô¶id¯ÂÙ\£;O¡×DmºåÂGœ(رCà…œ÷êŠK+¢eDô³'y\ÇÁÿ†=4Åk!‹ 8&q¾/Øç^´±Ñ`˜O/sy(ØI ÂXôÛ“±QŠ™}{hçÌ¢Øk“€Ù’Œ*$øìI¹ Cõeà0é5Jw³IÎX*øjƒŽ½È!ªºâ!uŽ×Ћ1JRÎoˆÛhb ´×AÍ2±„O^p\wÇmô# \A³² .«Àk9àS{Ôªù„ 13,Ð.(ÃæÖùA­ý. ‹šø(C´,y¤ÿÛY"û: ¶IœêkÏÜ÷VYÔ‹ëËË›Â{·‹-´Žû $еçWøiYj׋«:Æ@(‰oÃ- j-VWjµÍÚïoÄo+—W­æªµ7½ÚÛòÂo¨²?o½ý}ë·•"dåŸ!³IV þ©ý^¬µK@z4¥z¿$àgYÒÇÌ¢1`Vc%I{v k‡SƒŽ‹š¤œJ~‚3Öv<’ F¤enŸˆHsX?ÖÞë÷òBÐ÷-_ív´¼r!DT0ª]Ð<¬· î¤;¹ó¡û]‰`¹†„ÕáE<^ȬîÉí©0¨:w¯%J0hÖ ±:'gOv¼µ¤krŸÃ>î*92Ti"ó€a«†vÏ¥ˆäéŒ{#£c>èXÇ#ä%Ÿt¿pü«1HØ/ES¡€iß!ìŒàÊ Õ`q“ºS£ ¶Ñˆs_§’bUlg€1“Õ&À†=FñÀ=?y|§ ÷Íe$õóЃ‘l'ô 5»÷ŠÞœn{Ìôí+ÏõžÝ3Ï«“_Xn=J8+0@ä_ý~ŒŠ|ü/»´Ýè<¼¼»m=ƒíáõZªð¬:É0ÇCmÒ´hèñ§°ÎròÇ3óõ;:¯šÓÄhlÑ~½CN:-Íæp½uåF ξmÆFÑÕ⤶NÇ6áT1M28`7¤5ü¥åCGüÓRã‘;9@±·Êg¾—è4ÓÈ¿ŠìÕV ÅÆ¶ŠKlË¡çÏŸ4Bq•¶¨V–9wßÏÝÕæ‹­1Ôz.*Å¥¥Â’+~\üðyy™ WEC•ÅúÅg¡­»¨|Ÿhç'}Ž£Ñ8ú:ïÁå@á|Ÿ)Ó:iŸúé| i-@x|c¬%r€ä6ÿ˜Ô¶<ò|&våÓZ•³Mù”æ))#ž`6MaÎÓ¡è²ðïùïÓèy_óÏ÷ôÁrBP“þÚdøèº.¾½y«7è=øž´£E êd·ØÜ8{öô?“ô¤ÄìsÙúÀ´Œ+À"œ mºtwɋԣéh|ó¦X~ÍÜëѵVž¡IEôö$Õ}˜„Kܵ¦ô·“9ÌaM#FtU†×&ÇPIƒˆ»}ïâd܃-`èop0s¥Šãõmºœý&“b"sªúßøút¾ÓY мå,bÊÁ‡ SÜ/3¼K®%¥@'ω€ ÃÖßÊë#Z€F\0*ÛǘazÏlyæö[VMçÕé¤8ù‚…h׃8d¤EäµÜÇÕuýóÓ¤L††úWPþ|wâ7{?¯¨¾2¾Zá ­Ä+Óßt¾=ˆ“-'/NÙ!<„¿òªMUBm-#È &ÀK+!HŠ^?ŠYLiÏJ€n!ÆJ0Û®Õ?ÝGƒŽ´;9=zÉ.ÙH|_5‡öˆcDq¤Ár*v &C‹Â#¦$ÿ¥ˆïN5TÇ£8œõ?Hž›rí ¥?y¬ð µH|ðh2ÅH&NÔ§‡‘,è‚(&hPAy?òÈ3P»Ñq‡!…¤Ø²È¤Q4Š•”9t19£:5vÞÝiï¾ÜûYì¾>ÚÛß=f£s(jŸn*à`#”ÎMszù>û­Lv5“N&OÕQ&—PyÜ…7‹5`ŸÉ#7êKŒ/ÐМ¢ºÄ”R/êJÖûV"“­¸¼1ÛÒéÃRvF R;÷WÁ¢xÙÄp¥¼›XwÅÑR5±aj1"Tó#’«jR½j–¿B±€¤Ìð/W»úvËö<Þl±í‚se¹R=4¹Í&e4¡ÝÅ·y¿ Ï:„oè;`°n'5±Á! už€¶´$Î÷3ã _u|ÙK±ök¢‚ïÄf»Ýpû‘DI0ò™šo¸Ý(ˆ4ÿß¡ ÷¡Â}ƒñ%TÈd¾2døŸl Ò˜r±æP8´v7è…Ï´påà°–ñäÇ6¬¥!«tÛÝ”Ó9š9p“ú}³…}dÐ(»:Â=Šù.@ZÓ{ÏOÈåI~´°‚üОX…Yè¶Ã÷Cm Ü¿¡p·dã‹.˜xŒ\ò¡¤^`²ž#"¾¥Œº Z½•QùX%k5‘剌ۣªÀÂxMî¬ÑÁ<oÛ¨ZE &sÃÁ€Ä1ÐòE;"Ö ;öðÿè'´[X;Vãߨqrþ––7Cšü²eFú­UûcÖíFc†ÃÉÀ+îLŸ×Oüºšî˜‹éAä¨KÈ£v ‡ÅºŽÏ¶%®o0üNȘ!ÀYb¸ î 5È1 é¦ÛžŽƒê3‡9–’úÆ_#V;Lj¸}8œtÙž½D_m2š£3*‘Q‚Ôº—tÔÞ É•ú°†TDo ð3‹“C ¥&ä¾ÑîÊ7–€ÏKµÞyéàeÙ_ñÂ\@®’àGžGŽu¤¾Fç9˜ž1Ï*ŸšÒ鸼¢¢Xw;ƒÑGò§óú¶îβûöœßOÆïõ4&rü@Ž™ò|M$±}#ÇÃåümc'§0ÿ`¶4þßž˜5$mcÌSØ—:nLæ%¿%°®I¨Û±­98ýbVspú¿Noϼ™@&œ=-`úÝ3¬eÎk0ÖC—ÃoÌ銑éT\oÊw«K›T]šJ_€^DÕxPΗrä(="‚ÄéÎ……¨Ž+É@:°9XzI™w¸vW¾Ím­nòï}·1öãl­©/¨N)¿­s1|×{´4…{ú.Âoð(Ú?m Û\Ä9rF`H•0iåøÃò%T‚ÞšëÒÏ÷--èêåwŠ¿IhÑçb’:ŽO÷_4^í>ßÞ/, T;Âv@£^ìó×……@ Ek,ýbß(_:E•ŽÏºJY¨Éªåpðþ„®Úo´†Ypû×_‡ÇƒÃŸ}È`ñèDFÐp±…sYãK;‹!÷<º~ïÙbÐmŽ0þGUžš}ì^¸¿ã4&˜í‘_ŽÊç÷^žO"…H ŸO$ÐÙºtJáœ&-£QZÉÔÂ9ƒÔ’Ë­Ex²#¿è£«wp¥óÁñœsØÕ£›­K§Ý¶IuçʦkRà¸DÇ*¶ f½Éª ÁÝB²ä­ç¦wîv=é®Iƒ(Ù™6 ©Wov <,–––ô¯[[âñ2}”Ÿ^ï@â;LXFCR?ówø A–èôÝ!Jns„Q¿Ç#»ÑXZòû·dIU@kyp—Š@á ˆ=Y'¶ŠøR£7!’® —¶¨.|«esó} ÏA<$Ä XÚ¦<ï—*¾ j‰¥vÆ‘Ë5Z/çÍÁ ‚ѱù }ª´íóñ… (œXpÜgHe'Þ±°ÈÂ{S~¢‘‘È‹bÓ‹ ZyØÃãZ ƒÆšÓè±\ZÇP´ &.\· =bÍhæ$1sŒéþµº¾ÆëÉÄ·Ûœc‚“ï»aêüÅd{šWÉÑ™}%“îûž3Çìóý £·*›D|÷dp©ÖhLSnócú$+Rï`6+bCt¶€‹F×KayŠvÿ£[ »Mˆœoq”Ägz¶ˆvëHt’ñÈ, óY9Ú `DƒA å°/¶÷~.ÇÄAì·¥PÇøˆªt)BÇ”äìcÐlÙeí8}¿51˜®"Žrp´·Sç#Mçú±Ü'aMвÑlº‚Bœçx=’YºpE[7˜1ã׿ê²àÞ®b6ê©NeSŽêÌ]Î]xûDEhô›„Á‰¥± ZlF Ÿev7ìÙ¤\ÄŸaÀ2b¶2„ÖÈÆ« yÊ7IassaaaQM#ju´Fè$Ú]õ\Î5Éj×(ë}>)¯d•ã&¤kЬ˜ˆ7BÎ鹦¦ô¯l‰ö8k&•'ßå¡Úâ‘ÔYîïІ™h‡Ê†ö÷¢xÝ|;oŒî*è ™h›3°é†°Ó¶ºo L k”L?êñ‡Hªu8¢`ÒYü¹ÕÂZƒl<¸-­`R¢ï,Ç´ô[Ü‘rr­†§B#¨(iEq97NË)JJKá#4I{DSÖ²ù‹þxK*Í¿ ;;ùù´SP„¼±©ͤÙE"߆` ‹|Tg¦E…‘Ã1n_{»ý–½¡*ÓêQÅ7'»×Û{§ðÿÝcß CkF|>fÙÞÙ±ˆ•;À—DåÆäd“ï¦"ýN¥ìŽ@¾ÐN˜ V˜d] ’¾‰&Šœ842Æ;‚?s× ¢¨ˆY-^§S8Í;l‘¼‘¡3Wœ¶óŒú÷ù¯OuCj¦®R\E(ÅzóûÛßWñP¬ÕJò‹üP„/gÑfLÎk ðšH*óš…ç{'‡wOö¶‚ÙŒ­Wàù^D­T²‡wúm§ÕôŽmóŒRœÊŠQvS IÇ=,U'ebB;nÿƒÍqÅèÊU“C—£þ…'ýImvFÓÄÉì5±P“ãDQP,4\õ0à–-KËbØŒÎti“z.XʨnR+.ȱd©±V][¯>­ Ÿ­ýC‡ãjq«el ™“¬®®®ÁëðïÓU(ïõ¥¨+w؆«¥Ýl]Šþ˜ ´âO{èŠA³-ã{uÜñ°ÀÞB.¼‰"¿êÈðï„#eL*ï­è7¶·ÎÔš m9 ýab¬HZ|õ¥·´úê˵_ëk¿Ö.J¥küáü¿Êõå_k¿®NRâ6Å&,Ë;ªùÎ ‰#ô\Ðÿøððú!f§ÊAº.Æ-²Bìççj ‘Ý âtð;^²ù³åÕ®‡ÅÐû\C.‚‘¾â3<ÿ\#ÎQÛ\ûÃ:+¨³'pY1MÂ3ÜBÒ–0NhVRÞ Up5Û¢¦ü“û|øiûø`ïàÕ† ;=ôÆý’Rv¡õMÿèüûEÊwäß@À‡€«T§k_ ø¡ÍaOv1¨[‹Ï—Ž3ôè)» ž0#³àŠïâk·Œ™èëS ö®5¼€ëú?l{½¡ÊnbÝHq«¸>…p_”2°‹Ê–dCê0û»?O§Ào@Ň²Aê[œŠ~¾lT˜<¸ù*óú­Ê„›ì÷²±÷òd«m ú 6Nv¶·O 4…z`äTž>ÊlЈ’¹ AøÇ-öD!úÙ§K ,•„¼ÑH×û˜`÷q=²oËèFrû™º–šý¢AÙ„û‘QRk‹Rs. 8úas¥V)ŸŸÂþy/Öy´ÙÍý3e›U 6³<ë“ãNZ!6"¿ùr÷Y‹}‘D¨¸"hxx\(SˆK|hv/èµÿ7¹„ê= òfÀ.Lr±|Ã̰Ê?ç$Éœ$4n÷Ž¥ÚWLhx!ÇZ™œÛ×Pˆí„ÿFþ¬:Ĉ ;¼`>€§×l:9¬SñF9´ÿ;C#pí»?ª™/„{8õ¼/È¡ 쉞݃ÿ Ê23Åé ç :=‘ßœž¨ ERýΰÍU–¹…}½ñ/©PGZŸ¯w_ÃbM™€”gC¨+ï12ò g_8s¨3òcRoT™Ûtç?'§»¯bûƒ|ªûl·ÎüùØ,¢ë¬«æÀ©^ZxYÃ\£aû<+{,³÷Ü>Àõ®Ù÷ZLºV‹ÏLɺ¡TòpDH-‹†¥n]׋¡‚uz™6•YWNÿñúÖÚ¦ÜqÆàúÉTzMö¯7Nßìnéß^nïŸìn•KŠ™ðk0W†Ã/vp<ôÃD¥Â2ûŠÞ4éøÂù`÷«†8ù£”ì«\ìZ ÿä\i«*°)²›Ðô¤V9rW™óT;>Ϭ—²ä®˜rç©ù¢å~H¯sä®3ç©¶í¶¼ôj1Gîj1sžjé>]qúøTˆ×çÔPæ†Îœ»1¡r¹–]·[‘i鋯ÛU ¹— .¢blwcøøñåŽãÐ[CìŸêÚÿ›PŸû># ï‹…ù~òV ïâ'CüÀ˜Ý;€o´®ÛèBæú˜âËX9á׫@ÒßëÍŠC ¾0 \làãñùhۻ߶û­t•ˆØüÑÿ!dØ5ð¦Ûó!"¨õà۬ؾÁ|úd<=|%Î{ÞÅ–uÖ‚õùѶ`~®ñ¹Qꥩè~ûz<Õ½¨ˆÈ¼üè\¦@[0(ÿö[ÄØ+·ýSXÑäWiÔqÁI~÷lÇùæaÅw¸ã¯B[ˆ ÕñTbW=T²¬<•ÓKáe†оû£LAjÇöšýAóÂf ô„IoûøŽÈÚh¤ÐærèoÅ”=?çpŒï§Bµáͱ^íxwûÅëÝj¯MÝQDTca¦ÀŠE ·I6ÑÂëUEk”Llr"Y=1éÚôÕØ‘lWüÛ ·Ò4²å$¯t‚·œÐÅ€hòÑ„v¶Ÿïï6~ÜÞu¼wðB_{Âß# Ø‚|Š/›Ô4¼8¯µ>‰í“íƒp“è[Rsü¦e’šA׈¤v¼yÓþ˜Ô£H )f©¤¶àÕ"©)¯v ·„¾%5Ä/h‡Q&©+Ç,˜‡;'áfз¤føÍ0Ê$5#tÉH˜ÝããÃãÆÞÁ¿wwN÷#³NNjg,™@“ã)%.o})I\äûû“ÓíÓ½ÈR÷S|¨ppÙ‡Ë3@ ÊjÈ›éÝùÓnŒ´p “ú[¢€&(² ŠH¬ôct.Ñ“cÒ}ÖäQò+â tÞtGCçZ<©®‹ž3ð|v] JñÛHÎQþµQÄ4Pö€žDИªþH{ºƒs5–0‚ËWS^Ê>‡5âZ3°Z8{Ò%Mækp¾ÆåtˆmN q¦´å»jõw!W~äêoeKa‰\V³´.VhŠA,A!2]ö¨ƒeÃÕߌ\ÿ….êú/’ã.]ÿÝ»_¸ Þýâ²L½ò…ôW Âa¹2°™ÃíÆbÍ lgÞŸÓmnEÆf‘Ë-a‹Ü\ö†vùÛ#Ú&›¦·‘Ã'7A£!Ù•l®ö!˽>ÙAKòŒ ¶Z²’ &§¨hoL'0Yä fãš.dõÛ{?Äâ`ؼè5…¦tµ@®dý0 àµÒ˜8îG¢Õ»Î9º3ñpLØ^^qfòhzÏÐV9)û(ù*ÈÍeÖ˜­,È›èp–Èz‹²–h–{Ê[" M`.±ù‚±á’rNÊ_¢ÜE‡ÙCpòãñcÔÜ?ú‰n¥ðëüuÜ:ç® îŠ+–<*ùÐòU`£S" ¥^ö”;ºc4Œ…++^n¥ÜH]ºÖÚ`Þ=¹ÂÜaaÑÿðãââF+Œ y7p¾}_!Ä€¯´ür#+ üÖ$ [Ê›åÖtÙô ò÷èªl7Iö¬ýï¨|­j¡À¶U/~Üß{~øüß/öŽ?Ëd!âG|'q¸oaÃ\?S­+Éз;Ct7ãºá•kÏ“V<‰û»^£™¾$Ï×þLvŽ·AñßW/ë…+ûÜÆFJ~£8Ò_˜Ãùœˆ]SðÆ "»ÝbgÃwÙ:[Ñ7³É!»ähE9–Jò)í á,FRN`,FjX‘É!z”o\Ø£ógÿ¯vOŸÃ?ü›”Ä“Ú)äŰå‘×nâUEI)õ¡;ü´ïROÔ*x 6&Ç?_ç»áBÂ;ÞÎNv_5v^Õ}IÒ|©þJâçéÜŽZïe8Rr°¾“ÕÒŠ%í_òŽ#¬KÝî*ê¯Ì\;ÆNˆÔ»µ:C®w&ƒêÑášéB©Ý–ÉMPÛŒ.ÙÝÊËòq‹q ²‰¯qÐà'Hû?ÊD6ôò ýó­Lß‹5±!3oùWáce ‹á£ÙWßãÛÊÍä<±¶ …W \…$ ÙÏ&tsøÂÝ*³»ú•øå÷R–¯pµLÅ€êWXþ]_]†N¥ 8 u— à¢S¿d†Ñ •µ|[©J7´«zQ¬ˆ‹Àôv~NÿÄÀ7ÄuqxO;·Ñó_ È» Žt)Çæ£=›‹M‡ja™Ybíši±¤ª0ê@öâxÍÑè&ãþÈ™ÒîèðžsMÇ~4ç·$믛p˜)×IÆJn5äI¶y|ïë–ô­¾ 7hžn–%Zt˜-,í»thun¡5û‚e¡:ü@¦ìœ´eèúÒA°êôÇ6©tWdþ?w¥«iRY/,p«¤—¬sÁ®¬Ts-jÏ à“ºšŽûŽ7jGeJ¤q‡PcŽ5ò` vÛÄ/4ò {5±ÆÌÀFn´Ñ˜n4âðFà˜âÈ„˜£ñ_:nƒ:’`ÇÃà Àã 9ô¸ôHÁ3Þh8@7vèCeË‚*ß]àE{@RMS‚¨ÁC‘'þ÷ˆjB*Ñ™îÑm‰€•r{4¢÷_&Q9óá_[1[( ‘ø¥nINNN÷^ï&cÝ•4P¢2=hTXó“Âs/Žsðp€‰nr™˜]ù» Iì¸Î±Inl¢¹D 8Ñ»vV褓tr¢“΢“ÎLN:&:ùb¥“ tî@é$”ÎÌJ'7@éLP:±¥“P:³(/3J'@éü7”ÎmJ'  t@é$”Î(Ñq”IJ' tfPÒE/žp¦,p¹îš0å90™˜ðÐ}‘‡®:‹È,÷‰È–Dp¿= ‘û,ƒp¾|Dí]+²U’Ї*q ì¸ãU‚?0D²i¸ƒ³øáoj+fÿ$A¿Ô-@È«×CÇÉ0Dw% ˆ¨LŠÖü¤`ÄÜ s\'<@¢›‚$fWþ.P;®sX’–h.Lô®!4ÉLòÁ’»%sH25$ù"®:¹?H$ ‡Ì …äÅ “ 8ü‘Ž>f€=²GÜñ_€:n9ǃÃñhãïÇs¤q¤‘Œ3fƒ2ÐÊ¿›KbäÌÂFÖ»ù9ò˜yã÷¥ä!FRaˆ™ï`³9@b$Þ•˜û2š™óá“À®·â·VR ”½\A?FûYÒ³giÀÅÈ÷ ÑKx_L aBû%Ì´‡fÌV‡M¨C¬Iã9¶ÉmLpÌÝ<[”“ãäF8wŠoæèæ6èæ‹ˆVtíù`ͽ5)f†€f83!˜I€2™@f60&ˆÉaþ;ÌíàK2xyˆÐ%¸|Ø2-·-©eF?ö‰¹vØ gô ÈÈšùdä½“ç ƒþ¼Ló(d àÓU1ÚþFdf¼@&Оè{‘‘:ƒW#sƒf¿¹s¾ €•°Ç_“¥oó¦´{ŠØæðå‹íO(/4̉쑉ߚB{'øTc&>¼hvøõ)Ô¥¿í *iœçÀ'ÿK”ÉMâÞ£Ì]mÀŸ ‡ëÙ½s{2TcÌV´õðYËít4³ãü ÎÔ€t3Kôa…i¢qü1ŠX¼Æÿ^½>m¾|Ge’®69:Û˜Aw·èp#³Ë©„£K€íʨ›^Yfl@ÆÜ¡„2›:^U4MºÅ7‚]Dó„|ÔèL ÙÕ÷öM£?²„ÑYð=Zâ.@|´–顼¤õ¿èeW£˜>:žKoö÷Ëÿþø>ÚžT”“ý`ý˜VE4ÏíqÌ.ÏDÿÑ2ùîqÅJݨI÷8J·¸þ€QbÿÙý¥±?¦?c:ŸvCˆfÐ÷„„½6ém!~vL–‡ssˆi|èþß½¿ë‘1þó»Dî»D 'йQÄpã^1œæö[yfÍ‹Í0ï]¢2¤?Çc³Àc8’÷‰aKra0Êxе'waêìí×ÜX sO†²˜Äq}®9Yqé`ªÃƒhŠº—GaÆÿ ¥÷È´ØIíXXA‰/Q³’êÒß‘"ã³Vãçâ¬~Î Æ ç|õñU8i[U©³åª@5‘©bÚæ©Ðüt–*3¤rTÊ3CÅÙšóÓûÍOóBU#k6GCÕ{ÆRÓ ªNž9SM†ª”ø°ÙjTU9²ëtP•ælÎZï1k5ûë9Y«‘5ƒµbÎ9k½G¬•¦.™µêäÙ²V$›ÈZ)ñ³Vl:kU9RY+gš‚µÒœÍYëýf­ù9knÆ:ç«÷‹¯¦³Õ»áªiLõóÔL–š‡£NËPçüôžóÓ¼R#k6GKîKM“èä™3Õd)%>l¶š!P9²ëtRš³9k½¿¬µu>åã¬FÎtÆŠç|õþðUš¸D¶ªSgÊU‘jS¥´‡ËS±ù©,UeH㨜gr†J³5ç§÷˜ŸÚN7'?õsfðSÈ8ç§÷ˆŸâÄ%óS•:[~ Tù)¦=`~ ÍOç§2C*?¥~jäL秘qÎOï?¥‰Kä§:u¦ü©&ñSJ{¸ü›ŸÊOU†4~Êy&ç§4[s~zù©=ìäc§~Ætn ùæÌôþ0Sœ¶D^ªgÊJh'Ť‡ËH¡õ©|T¦§±QÊ29Åyš3Ñ{ÍD[¹¹h+/mÍùè½â£­TFÚºNÚJa¥­‡ÍK[YÌ´•ƒ›¶¦d§­9?½Ïüôz°¶š“¡Y38*朳Ô{ÄRiê’yªNž-SE²‰\•0[Åö§óU•#•±r¦)8+ÍÙœµÞkÖšÓêßÈ™ÉXç6ÿ÷‹¯¦˜üëÔYsÕDƒJ{Ð<5ÝÜ_eÈà¨SûÓlÍù齿§¹Ùi^n:g¦÷Š™¦òÒ;a¥)œôa3Ò,>šƒNÉEçLô~3ÑÞZn6ª³f2ÒÞÚœ•Þ+V S—ÆLeò¬Ùio-…¡Bâƒf©½µ,¦Ê92Ø*fšŠ±ÂœÍYëýe­æyN-~#g:cÅŒs¾zø*M\"[Õ©3åªH5‰©RÚÃ婨üT–ª2¤qTÎ39C¥ÙšóÓ{ÌOÛNNýS#g?…Œs~zø)N\2?U©³å§@5‘ŸbÚæ§Ðüt~*3¤òSÊ3?ÅÙšóÓ{ÌO».ü¡Y38*朳Ô{ÄRiê’yªNž-SE²‰\•0[Åö§óU•#•±r¦)8+ÍÙœµÞcÖÚkæd¬:c[í5çLõ1U˜¶d–*gËP{ÍDv I˜™öšé¬”ÓS)f™‚Â<Í™è½f¢×¹¹èu^6z=ç£÷Š^§2Òë;á¤×)¬ôúaóÒë,fzƒ›^OÉN¯çüô^óÓ¼RœYüt!õ~ñÓ´©:uÆü49B*¥=d~š!UeHç§ÓEH¥ÙšóÓûÌOÝv^~ªsfñS·=ç§÷‰ŸÂÄ¥ðS™:c~ê¶“ù)¤=d~ê¶3ø)gH秘g~ ³5ç§÷˜Ÿskô›Y38êp®Õ¿Xê0U¯ßOž-S¦èösâf«Ã,ý~#•±§Ôñç9›³ÖûËZ/š½¼/RfÖtÖJ9ç¬õþ°VžºDÖê'Ï”µÙ$Öʉ—µRûSY«Î‘ÆZe¦ÉY+ÏÙœµÞ_Özy3psÆñ3³¦³VÊ9g­÷‡µòÔ%²V?y¦¬•È&±VN|¸¬•ÚŸÊZuŽ4Ö*3MÎZyÎæ¬õþ²Öw9Q½Ëç…êÝÜÕ=â¨ïRüO½»çSï=O½{Èn§Þ¥ûœz—épêÝTÞ¦ÞÍ]MÝkΙӤÿ]>{þwscþûÄ9S,ùßÝÿ»DþwÙ€ÿ]ºõþ»LÓýwSÙí¿›íßkΙSEê]>©wsõ¨ûÄ9S”£ÞÝjÔ»DŨwÿŸ½¯kÛX~{Ÿè¯Ø 7Še iÚB݆I¹‡@.Óœ§FØÔØ–cÙ7áýÛßùÚÕ®,CÓsÈ}ÈÓbi5;û=;;3;ó%›Eý1Ý(êkM¢þ¸•AÔ÷æPw™r¶[3«ïmÐéô“ ïIèÝ!¡vÒ:Y6@¿lÒzl@C\GZo' 1»'­wš´ÎUÊ‚¼–°ÞG•º[tuJT)óõsSÕ‰Q¥èÛMS§G•Ò×PÔ[E•¢Ñº§§wšžÎLNg¥¦÷ÄôNÓ©´ôo!¥S(é—MH¯££3Ñ[RÑ{"z·‰èÉÌTôdV2zrOGï=™JHOþJz2…”ž|Ù´ôä:bz25=¹%9=¹§§w˜žv’ÖélôÔ‚œNOðžžÞzJ7‘žš¯Ÿ•ž"ÖIô”¾}¹ô«?•žj€iô”anNOi´îééÝ¥§lј1úIz£ªÆ} ”;D[Í^cXÕø"¡hÌÓ«_r<Ý„ ¬×FEÉànkdÕ¸r—io7 û'#¤3ß<øtêk ïÉïÝ!¿ÙN¤¿.Èg%Àõ$ œ|¹$Ø´a* v ¦a ðæT8Ë{2|—Éðå „Âgäóàבa¾'Ãw‰ ë!œB†mÏL†õd2¬¾d2,m¸† [PÓɰ¼ ÖcyO†ï6$aÆPcð×b¿§Äw‹Ë N%ÅÌg§ÅŒ{1ˆ/›s#®%ÇØuôXCÞŽ ˈÞSä»K‘{ÉŬ×ÀlÐét˜ ïIðÝ!Á^¢Šh'RUúø“U¬ÿtºª!¦Vºe¥1»'­w—´¦Í°=ãÍ]t:i%È{ÒzwH+ÝDÒš}þ¬¤•ÐN"­üñË%­Tÿ©¤Õ@L#­tsÒÊcvOZï8imÏ^Æž¼¶ïÍÜ5ÛžmÆøüD¶=1îŒþü…Úöô4̵Ķ}«X4züî î&¸ñY7>›á¬Â‚ñ ×Þ þžøÞ!âk ãdœú¼D8C>‘[ _01ÎZ1 »pS‰² z Âlë=q¾ËÄyVN8ž‘ Žï9à;E„§q¿ñßÁùÆ“¹Þø‹æxãk¸ÝøzN7¾—ßs¸wœˆžÏLEÏg%£ç÷tôNÑÑó©„ôüo¡¤çSHéù—MKϯ#¦ç3PÓó[’Óó{zz—ééûþŒ†Zä5ôïé颧8p“é©þúyé)`HOñÛLO¡úÓé©L¥§s zŠ£uOOï.=„3ò3ÀéÔàî‰éÝ!¦8li©þøYI) DIñÓ—KH¡öSé¨|ŸFF äæTÇ鞈Þi":ã!ß‚¼–ŒÞòïrÈ7_?7%xȧo_4-~È××PÓ[òi´îé馧‰}6ŠjÃ^CS ôžªÞ!ªÊƒ7™®fß?/e%¼i+ý‚©+5`:}5 S)¬@Ý‚ÆòÈÝSÙ;LeûØ_³Y ô‹÷$ö‘XºÉÖ|þ¼ÑN¤¯ôñ &¯XÿéÔUCL%® t ÚJcvOZï.iÍèp4›kÂѽ_Â;DQGSœŽþ„£‰îG_²/ÂÑtG„£k½Žnå‚pt'üÞSÎI”seFʹ2å\¹§œwˆr®L¡œ+å\™H9W¾dʹ2r®\K9WnE9Wî)ç]¦œ3*òG³éñG÷jü»D9§hñGƒ4Q‡?ú’Uø£éüѵ üÑ­ô÷£;¢¾?Çžl4çý(¤;m·RþJ;iB“ÓAÒÏ¢ëˆYúó9è@:qSéÒJ¾T´j”¬ ­—0€+«ß®ë¥r‰Åßt­¸=‰Kåo[z&–œ2¡f"*kJ[óæ`£qôëÁöÆ–B¾ÀšAÞíÖ“S±å4ö•F׻ŞvqAã€.@tû­¨©qªNâ3¤ŒykgÎ]ŸyÒî×lÛo€šÚ°û®›\Ð0©9uÁsª.¢2Ì“V¶©¾è~>TÃnŒÞçahž 0‹ÿ/®Økº¼Ùl¼|¹»ÝØÜl4¼ŠÿuѾ]zØ#¯øº(;¿àƆquµ†Îh?LXJ‚ªp5yæÔ&¸‹ÀîC5*a6àÓvx–B#v8€XÕ¬¢Ãn;JSÌà Û?þ?Pí(„3¸HlÜÉЀS€„JÁFià=€j"TžzýèIΆ©’^§>KÇ ËÌ|ì4‚2‡Ä¢•à «RI½#ÄÓ68XõÇÈmÉÈÁß9‚¦Œ^ñZýýUͪ/ö6ÒB˜ÇÒ¥ˆÝ&П§+Ç ÃØÁÀþxó³ÁX—~Žå.äö«þ§vÜÃŒYô w-À|iXÓg> ΂%u˜´Ã~œ.ü-ÔÀÔi†Õž«-ìæKV뻼4ÿÚtû³°K™gº_v÷²Û”¾9g¯Ÿœ!iô\îÇ/áÌL¥ç€qöís̯£þçÏ0wÀïÔY?êõÉf†Oö“Ê€°!ÍÔ¹}¦™•ž'tç˜é´ÇNçÍ[U£}ñ£Z¾|´úèÇ%üýþñwøûxûÑ#úýññ ¿÷-þ~ÿ#ýª+à­äqƱƒóñ61Ïw¾c\ß=ÞÜ\ÆRÆ6•Á8Û0„QÍ“G{8R™¶¦ñ[õMVtüó_9õŠN𭏙¯Ø?nQc¶¿Ý¦ß¾û‘~ün“*öÛøý‡•‚Æ Ò\n®nRn~ÿÃw‚ì##$𾽊¿?ЯÛZFYÜܬ8joÖ¤¬Á"™ÃܧI²>d>«wxAÕjN0mv‰Ý4: 8¿‘1ˆº[°ÂG‡…ëõçj+úPíÛm‹ïV“Í›Í×eìÆGGíh›Š¹¦ å’­ß±âü1’ðàA!}{àXæ vð VõI§ºt€üˆp$ŒßEm¢ça¯u—ÔÉp»L¢°˜ô—Âô!ý{Äß¿J…hú‚ŸeóJð!¶¹ù'õPÙ‹HµãÁ 2kËúE©gH û'qšt¢¨ Âàô—èÎøhN{í¥(°Úfþ³ð¼ù&ÿŒ’S5¯AÞj+5ÔàÒ7ýªKP:hå-®žyµô‡ÝwT˜T7Ôq‘Þb ãß3`‹ê¬“tƒæ×É ýˆôPÖ7u¦œDa§pCö²)x[Á·³Ô eß9ˆe²ŠÜþ óln«´À»s±èqg{{»ñbóñïÆäŽëë‚£›\â‡å¾à #¥L€f©wTéåËw”&q )@.öz°ÙD-?›-ê;îñ ýâD´D-2œ”аHþaƒDº¥ÝJEQ•¤Ÿ ûÃN¨.ÂTAE»A¦x(}D †ú&WH-áךÖŒM­äB¯+=·Ýt=±=“,Òªñ‹H³jªµZVX(ž­qQúx0½ì&9©m¿/²3ß|ÐeùZ†FŸ®)£@í25d Ýx6:õäÚ‰}#»ºtžl÷—_ÙÉÏUU(³ŸÏcšZÙÏÔŽOt¹gù±š•«&µk¬»™n)êþÞÎóW¯^lÀpÒû£%Å|Ìêªê0íã–pABÓ~ôøbX OnÔTÉj»iÞØ ˜=ž²t€Œü…Sì8[èL[Î)½á›Ö羯>±ôéù±§‰;k%P]àIÚÖªós8ˆJš’}&wùÝÓÇiMª;êìºY/å2Ö©¿}˜önr;ÍuŽ/KZxL¹FwVœišöžrØÙþFU>s¯Í¿™6ßщzý1¨Ï¨á›!Åêþq°/U÷?Ö’)†…°“­ ÀÇöª™´÷¤­…Æ"évÔ÷ÎZ“¥F›8m䆸ŸÃÄE¥íÜz?S³Öü+ÔÏähÝL;&þ›y€öÎÙ±SŒ;¨ßpMáºÅuÚ ›ï³¨¥2Â>>jTÊ_CøxýJ7âF{04^UB\ À¬¥}8Ú÷¯ª¤5lGiÕ€VqÔñ9 ¦¯ úuŒ³˜Œ ¾øN6‡¹˜šOU~k/Uú½pp¾TúàY:Ä÷vsyRcH|3Õ¦˜é›·5ÈzÕp‡HõÈ8 ›E”©®#T|újgw«ax ÆÑÁ«íZAú³ÝÃíZy®¬i_aFü>)/Uî髽­Ýí¨ùÉ×`£ÙiùXg²ùÃáo ˜»7—¢^„ï"|p"ø‘vc u!sêènmfê ìºTáé¶“âKGÀôuTš`¶ è¶ ¸Ã>,‘“hpE]˜ÒiÒeºD‚|“V†Ò{Ü·*N¬PoÎVã§Ñé°ÕIˆ1åúªÿ•s›bjZ4J†¨.ÍE{20·D_:ᣭ&HÚµC<€˜ë ÐªÖm€Œ !25À¡Nàn”Ž>%¬x,<Y@súÓWiß#¼b§f«œJ„ýM*R5ç7¬ ôZ4X€ãŒ$t{ÂÓóáþ«ƒÍíîsAWs²Pg9Ÿ×yë÷|õ›T– Yàמö`b%çU LJT+«òº2 ÇE£l`ëFJ<à1d*“~•Hìûa2 ™¥Ìz$öa«Åéé¡ó+ôjp‡›Á 6RU‡x–JàiINË|“/Z['3¾î=ðÓj¹ZÆÌårõŒ¹¸ `4°ÉÍ~#lw‡·4óiuXàCµ^_©¢Õrµ§y–lxÆÚÏÍËÚ “€¤1íl#õrÿpç5uF+aã7Ó'¹FøÕßg©kÍ®–wâHž·@/ˆµÌ€Õß³-¢z‚gaN‡}¯ÉJWkÖ3ßkD/°_Þ|¼z ½³Pªj‰a}Å–¢ÒÿaUc5ŒáA н˜½V_½’k¡,L­U<ý õjañ_e ‹¥þÁY«9Ýu%¼•±a»pQXª`‹Å³Ë S‰Áî;ºã™iØ°× ikãÚ:Óªé9²cƒ®õW|°Á´…^å¼°Í´ÄDzÐÑÔ„{Ï&xCôP ±4í—µE²ìè|àcºFï`/•ÔÇTþ›Û ›Òz»;Z„Z,èÇ4hæ¡#nQư‹»=Û§Î:’7BÀëjþôðôôìõm¿¤ƒÇÞþÞ6Z½qI0D¼Øà$à5v#”@½‹TtÙ#Æç2jÊ×Àà´ÄVz­\úÈOWeâáúa7ö£cË݈om?;DFéeÈZHÜn«9;P5H²tqŽÓ‹Rïè ðõmfµò  e¨˜óÞ}@œS zçl'À rQðaŠnžŸ›¼K‰…bÃ#b‘߯îÒâ·ta‰ÉÉ 4åxÌ‚ñþ–Bí°|¥ö‘A¾ˆÓh‰è„eá¡Ô”xQÜ‘/tÑxTãóM­ì­up z°ë”ª=µç©t 6±îÒ’§N¼ò4¥" tõÍõvqŽþò¡é)î5ÿ–ÿ.ÂÛÂÛÅ…ú‚|D"\­l®žy²qÏ‚’0")ŸŽée©ÞšF ÀÇÿo®ôûÃÅù…Wõú§õ2lÑþO?ÿòý2¦Õú›ìÑJ-UK%xúÕ[CŒ¥Þƒ3ïî)ÝjàWÁ÷=衲‡³°v¬7Ó’édßš¯Ç|PnÇ'ÉÉižæí±™½Ž‘Ø­‘ìÉÃÁ“ý§ÿE–×¶`+¦u³†‹ɸ;ŒÈ&h%P|4ÄYƒbYš±ÌÊ”^!Ûxea¤pЇívÔ Xª'6ýU=¨Õux ’RUNþ€Ç2Ƕ†C*ÄG»íÇT§ÕVVÔC!8JMžþ×ÖÎLáßp–1 _ $?×V‚•å ’P(e~¸ßË¢à3NÒ‰~‡óŠÁSJFò$릒f“ì$Z*å«zé£)íŠÚ`Ivý¢Üƒiùý2 h'e¸ak‰fJNÏÛ=’sòÀ|¸Å}%ZògQ7ê‡HrX悇‹ï%…ÖÑ}Š"æFxÝŒÅðè4Òvõ½¸åp2sêWÔy\„ý.Ù²„'hOÐh.¼ÜÙÒ¬éEã©ÃBì–aŽ<³ÙÞX\Ž£’ß@u7ÅiÈöëíí×GY F N3â6+iLÒ–g!ÛX’¯9·>n¼ØÚ~I™€Ó…•>ö‰r^Y5Ëiïa Z1îpœ«û”§î³ä8ú£)V¨÷*)±¦Á6G Œw„'QRÜý¼‹H$¦Ñ¶GkW­p = QZÑÛÜ,nŒ r³F9yÿí{±±³wÿo4^ìom7/t³ærßßçlÜo;{ß®7Š?ݬ1”çßÞˆí½§»Ûnì>?ØÙÛ*nNèf ËåþO5qãpcojóàVMÜÿ©f½zz]»âV £¬ÿ©–=ßÜÿçÔ†À­Ú…9ÿSÍÚÚß<œÚ,¸U³0çªYÛû½ÿÚÞ<ÚÙŸ>#ó°·jlÉŒ¬ìî66Žv&ìoã`·#1&ÿ¿½¡EÚÞ±fê}gnd.÷¿¡‰ÞÖzsïÙÎsêØW‡µ ê¨@¯|°òÃí\äš­úžL™«'q·Úç'Ô¢FjÇÿ²)Qªë~oœÁd¤It¡DûZ>(_›­¢ YÃ^cYì}—g•t›1Úˆç(c‚f ÖÆ"‰?nF#•?ÓóÀÝ3I_.«£d­_ =q©°@öõ1U@Uðƒ٠ŽÉÄkýê;3ËÞSy-å,½Ñ;té9›p >U_§©XDPï‹_Œ Ëè,_ÏÓl6Oª´a9ÿt™îâúXŸmY .ï$ije2;Ãì—VØlÀ/;y Žyز­t+À k¯³â+à^k¥{±•E´zaÿ¬VZÑfbÊÐ?³éé }©)*uaç'0ëÞD{œ‡ ÀÔîØ±·0Ï“Ðû샫ÒRº6”ƒÛ˜Q«©ùn…%Ž] Pö´vÓE%ˆÌÌÊ!qQ Md»,`údë×¾@Cµ>š°;—ƒ^nýÚ8Ü~¹q°q´ ûÔWÖí (Ô…¡mhÓ`†Å\Ç?åuõŒ’Jøw]qõÖÆ¶8\שC, k7Âðé“ Q®Zåuì»+ÞæÐjþþ†’uT¢‰Ë’„'¤ªéF ¹Ç%œb=àiâ”®z¢tžÜ<ÁVøßÃdÀÞž<í6Kô/ƒ<Ú&}¹޼B[ŒËXÜNåU 8d׿wNð2 ªðo»ÿPˆ­Iê!VÏ Ù-!ÿÅ7Z²“£9k_. éóA­¢No0bSº`ÁƒÄ^dy '(ä~C³ñîêy7‚öí¢ZS¬ÔК—½IiÃ)4¿Ë@i„.Fx;y×ôÖiÍã…ºl–)mÐoêõêÛEµ 2@¡5¶H‰d”‹U,ÁŸuEOîP²¢.m@ùä4 ¿zdÎFÀH²ÜQâ²ø±Æš†èˆjiYé š˜ÎNŠÄÖj¬D—û ÖŠ[l+Ž} Üàü¥KÀN² ‚Æö- ;Zy/u |sÿÅ‹½­2 ‰»Ì 1õãA"¤0º'›¡Û£8—tKHmioCfìC«Ø—d¹LŽÜ‰¾®ñ½´´ëšVò§u1Ze #4ë$MÚÃØ;vÃÝ5ƒi½"„é¼e¦™´ì ÉbDE 6¤éÊ‚v÷pIÙ9 z¼šÃuXù6XV¯~ÛÙC&ffôÓá@ã°2A§²,3‡­|8Qp…|\Wà KSTÄuGÊ?ŒÎP•OÇÅ·»à,"ƒÌdJ*ÏÏ—a¥À*EÚTõŒ˜)(J ¹ªï‚Õ`åQ '³Xß³½÷O…ÿ¿ØØÙ¥?2í+d—p€*q6"Ê8°ØkÈ!o¤æµÙ Á,(Ó¦Bšë#ì+O_®ÔÊ%ؽ^®ÖÊ?ÓãZùEV!{»‡ª;2Ôm¢ Çî& Yj›šÉæwowcïù«çÛÖIA›[ظÀ“úòë”:2€¾ðj Eä`HR-õ†ýjwÿyãÙÖ[†.:Ýýcè}><ûÇ0="œ¬êÉá§'ËÇfÂSI~f  QŠ”‹ó“ËÆ•Êa©ˆ[Qk ¶Û4чs² "β¤ˆýŽºM¤áŒ1ÀýºËcˆFׄQLói}qóñT™Vˆ_¤…Äd™è²é)ºþEëŸå4È\iW*:MU¢÷jYè €­ØlhéQŽ•dqKͽø¥oý«ìâi¾«åßK¹B8£HG†¢´Š”¤ôHsGãÂp5“§]Æv«½+•ŸWîTƒ)¨;ˆ;|êÌâ‡0mqêü‚#¬‡IŠð0¦ÈÂ/£$ñJ+nÝ2@w)`{¦ÖŒ“·eÉáΙAÈÁ - •?è‡=Û!LŸÎÜl‰9€ÃŸ™RˆIêŠ ßD¦s­Æ”V4•Ï7&ð:ÿçÆAa8ñ%›÷”ÖÕá©¶¥^Ę́WÖ¯<’ÝÑ{ÍÊd×ALM/ü¿ûj{Ú(ó· Î]нƒýG9µµ ~LØfä±$YÕÜTÔbøXåá;YÜaëC_Ïøö(l=7¥†ÈJÀü/ Ù„/IA‘”D=^ECÓê[ümKKeUÿ„·;Ôk ôº>_­Ö&|ÁA†ôÀžŸ¦4ä¤4¹-W$ª¿ÃH»ס䪸"J«x[ŠŸßãÏþ©þþóÀÿX—Ya …SAÓ*@Õuõ¾|ŒŒñ­éYn’9yÉæ9œ³›8M„Ý3dºCºÒ†ó~ÔOkåɾß˺»}t´}pX+Oöo@kÉ)¤äàÐV| üå•Õo}÷øû~ÔHèêŠF±ë àLž·½ùë~c³¦èwO~D€p¬%‘—™Bÿy•.]ȱ€Ê—£z³Œ`(Mh..hLååõõsòÊ÷»g¨ÇOÈ‘õ)Š.G JI}Ê€L &€¾a \ß~øNs0$;¯Õã`åXý¬ëHügï‰qÝ£jK[Ë•nY ¬[¥’üÑe¤ñÔœIÉ[:–ŸY§6üPµ³ÊŠÍÃ@RçÊR²$ÇÒ“%óÔòŸ-|ŲmmwU%µ+­›TÏGàkeÊÇ‚Ò9…Æ­'|<‡Ûègû,Àp¥k‡Ùý®zqø/àZÉAÛ1—M…B;Ê´±ab–‚*Â@ò¯.¨­ÿzþò¥ú ÿÔ9ÝêWémïߥ낯̪`”¨‹>² }¹^€›©F¶Óå:à„LéŠ)z©GþO®iàãq³§*½ƒ2gšÔSù10û+kèpfa§éDÁO¢x‹D»›äç1ÌȨ¿ûѹËR8‹s³Ò™ÜýΔyè0g4c½¾Lж¸ÇÏ-‘ùE/=H[{!*ÒSœ¼Ý¨‰ÂœþH(¤$ñ{gݤñ#]Xª°ì’„ŠUùh–¼‘B¶,)$ÊcøžgjŠ€4Ãú›zá›3kæÆî„*¤^押§Mß=s±|KÀ\˜Ô—&QÍ¡æÊÖ=TÅnÖ‚d“޽9”K]ÖÕJ}†ëb1!vGXü@–Ì›z°ˆÛ2°ÕE³GçX7ò5b‚ëÙ«î6+aUyƒ¬Â³±ÂP`ŽëX |FÄ7ã>xäÆç¬%üñw—IØÓlrû¼±Øsâ*»«˜[aÞÀ‰åÉbð’)t Ž A“XÄ\l¥çŽ¢#øfàZÙ€šº˜s‰®eP…ÏÐv¦NøæâÈø^W£7XÙÏvv§Ê„ja‰P'µ\×Úgà´x6lù™] ”"R®7ŠðW,#³KzÏË^²Üˆ!—µ²ä`› ¦V =*D|zÂ)Î*:aý‡°5E‚÷CT?C‹!ÔP} ¬æÓd¡e4úzÑå6¿~éò›_¯§_¿ùݽýuãë³²ÓšŸvuÒó\m¾ùº×›V¦‡¡Ãai’ýPîŸ6BB%©eá<Ÿ³mb±î4›¤œb,eĸ™AœíHÛ<ï$-õÍe¾8\{M×€jŠÍÕ¦¶¹ÊeÎåâZЉJdI;OAE ?dšÑøätØf‘ÈNú«´›ƒ!yœ@é¸8Ó†>’ªàÒ8TÑ ä„WÀÈÎiððHì;%e‡U,cm6 n5ßËÝ xœ.êµØ>î÷b§V‚Çb…@Þ™m¢÷|ï•ÚdU€u|ü#z“é~Hš¡ˆõ:l â(3¬J§þð¯f†’2ˆ_·7¶`¢Û’”Áìîìý#‡…’2ÑZ: åã8¥'èžSÏŸ'é€6fÖ!ïÐÝwÿ£õ°òþØó3×.™óVÛÓLëEßóƒ@yëåªîãÓÁºÊ;-*-šƒÐÄù7mú=‹²ÐuăCÜ [¨%…3ÞtGI¾þ.Cè‚èD§nºPØ(’,êj~Ý«ó|+ó•P I„' ¹ú‡RcòÆãyâÁ©í‘yÁ Bó:ž4›IŸ½ù$SLD•zžfâ{&õBºXÉë[i/jƧ1ÊŠSu´A¢KôCØìjÒZÓMày¯°Mk8µÞì¿D“ò·xŠ{ÙñAå| èÙyÔîÉ ™Í«ÈœSåö5éúŸ­}hdø$ê;n¢¸wÄú!u±á?í'Ê*ÛÉš+ÿ=–ÿ~£ÝE¥Âv¬úloÿ­2#$C8ì]!躮ÒBd.«sàåpñ#…˜¹%†®«vÿÈ«@¤IÓ º Ò'#–1§¸vÝv†ÑÖ̼Y;Ú~ñrwãhû­*jˆ5¶<œ~%‚I¬Œ·9öå%{%åaôÚÉÀtŠç0å'}<Ìܟ΃^ºV­žÅƒóáI€Ut›´Ãnõ÷Õ8MÊÿx@¬Ï“Z<à¼3Ù4l ùãrýd«öÆÔ…×,×»æç._ƒéFØ?Kõ =1©*pÔiõM½îûõãz ï·Ó ÷ò±/8µÇK¿^Çæ¸” ¶ Ï`gÛðå%5}'ZòسÙþ ðzÉn$ààôFdî¥æ7Ö/¯¬ªgý(R‡Ééà—ù34)‘E±Óm¼gºõý37•¼lF1 ‡¾ÎØ~'ÆVô¢~'6 [*¶„ÆMÀ² ±®o`\âÓ:Zóéï¢U+—ø¡ì±CBHà‡²·³cº» )òTö^ückç ñ’ä©ìmüöx…¿eϘe×ñŽ#ø5¼x÷=›ØiáOmæÙ‘+ëæÅúÎ8Qb’;"UŸ°øÍ»h7imÍca3yshˆ·Ì–O¼¯°è³RY¬ý"ÞŠð=M„ÌÔqEŸuµw9ò1¨c) (N|2`ÚÇk,‹#ñ–ûJˆw¬)¤M¶³’BÏÊL3ÌUX~¼Ä­õÖœúUD­••ƒ2:Cƒ?Yô8{ÎÍ“~_þ1 °®H¬éNÓûÙ'óœ=š'ý ¿üƒÿ©Æ &lÊ⯳Þ] “ýï“~4OúA~ùgnÆ’CÍÛÛ'yÒòË?ø·%HùòˆéÚ\>ñƒüò©ƒ .½Ù#ɦÀ”,°l"»5çÔiR0íW«\^H‘BûuŠ $V?ç-§v¸~_•³Z”}='Ü5δ¹OdZáœÒlÓ'~ÀßóI£C¼¥;8ï1q2„Á}ÒòË?dJOÌõPZþÑ<éùå{ÎË lZr´™ˆ„C»Õ!j.2:g]²kàu¹¦€e^){€ ž–¥gÊìÛ'!ÕñÌëúR¤Áy6Ý3ú å#jò &hž‹ìpÏaà4Ù‰¨‘¶dw‘A‰ØÀVMÂ’c2²/fH|’>Ý–¹:jAh“©%á^Ë55˜¼Ëe5ÎðHæâúu“Šðèð‰*™TªžÍßþ°KFÒöÕ°š”^/-²Ûxå~.ówÒx°y¡ýY÷4lìOfé¥)Û9áùŽ=Õñu8’¶ÑŸ¯§Õ Z©žÁïïpä©¢¬ämèÄJU¥“ªë½õKü¿Ì·Ÿî¿ö øt„\4™<Ì/z¨ Šöðã­§yÕÚÛ9ª9Áœ—ù@Y˜½øéuxI¢}Ž Ë/¾§oüú²òê5]Bþò¡öWž%ÚeSÊdˆ~¹`V²­'©k£ÁÍMDaH䉪A¾Á?tSÐC:¦ÌA'`ÔG -2Ì@ ’Ë]¨5œ}ù¸„Ê^('ÂOnoA:ca•´]¬¬qõ£q!2ýaFlQ—ëIΗ-dNú qQ8ô\”>#®C ÁÆáŒ¹¶vwö÷w­¬’2c~tõêÅK+¿¤Ì˜¿‡±Ü’Vd!ÐI7ëCtÁÒ`ã=i/$c†Ã””4ð„a¡Ÿ 4c)B€ BzŸ1/f±²âÏŒ9ó÷z ÷ÃŒØPö٠뫦,ñXrùoR~2Vx2kÉì¢>ß+õ&xònT‡d¼3· ìy´½5c¾×©CÆðuƜ϶텯³ÎÜ\Öíä}–Ëûìywí.Úµ‡ö^X¹ö^ÌZÖ^Ã¦Èø:ó~u‰a À–:›•IñÿgaÉ|ÎH])ŒMP)aÆÜíØˆgùuÒì_®îíº(iv {»«‡/] ”4;†æ‡Æ iYÁ£+„‹¯à¦ØIÒžŠÝ˜{?ÂàÓvxf¡´Ro† NÇñ`êŒxZQ¯Ÿ¤8¨ λ­EŸgÄLÓ Ï€{pûÏýpslhN^Œ¿Ìˆƒ`4º Ê\rør_nÄ`h Ô_Q )|q[>hVžÒæ 6få6ÆÎËI³R.æ§ú ”øæy®ñ³îG;6 ÷ólìíî<µ2sÂŒ¹ØÈ{ ºn 4¿ŒŠ>ßó°{ nàØ5o[€×þ4+µK`]ÛyIÔAZS›äM†š±œÍM Ýææ¬¹òóvó&³V¢?÷­ü:iVŽÊ©öó™ëÍ[D:J|÷;'°Yôâ^4¶“ƒýÅ’`{j¶¢f{†Ò4è_/1Fï`¶"ö3´²Ö°ÕBõŒÍuò|î:P€8ísþæÕ±²ß¨fÝNƒ‚=žR”\¹öDZBÚZ‹HþØ·Ùk =ÐO’Ü$‘Ä›qhýa·BúIÜçά³ÒÖ“?HãšQTJ˜1÷‹ç;› tY•!0i³· -tÔú>p! qQ”g¯½m‰=GìUôù¶˜/ÚÓ_Ü€ú¸9Çdu n4·\pD›`c³®*ÔÁàvj“ª,qæÙ¶·ólû𨑓:é³JÿõâÕÑŽ#r”¤™ÏãÛ[;GΙf=—ï¼´¥fø:«¬3×úý›ÈIöñ£|îÇf'ñ‰{ç„™O }γpVêÌÒbÃð¦l'iaÑç›qü”…‡ížßù|y}ƒ¢zó mÍÄÈiÁµÀ3÷²Ö¶ZÈ42¿©M™õDyž´#à 0â†Ü,uwÚଭóýç :šv£‹i æ¶eL˜´Sán1{'ÌÚbâJLBh}U¦H1bóø¬Ô›á)®ÞøÇYç2.´³î°áÈÏ­ÔY{½84†]q×›çbŠ>Ϻ&“ÑŽ}›Uoö[ͤ…l-ò-\ÃanY†q36¥ sÓ2X ]„™¿Ü_Cû¼šŒØ€Ü´„NܦÝ"Ìòé¦ÓsèEtFÎ; ð:7ÅÎ1†\tüãŒXãîyÔ Š4m!tÒgæOºï(] ®Ã©¸Ÿf^ËèO±!»$Ÿ^ZXôýf»³dgcƾΌ¯Ãj èât¾Ì ód «Š/¹/7Á7nîb'ÏÚ~†n FŽìÏNžUç3ì2+uæÓG1I¼ %ÌòHnB©Q!æ1¨ÙÏ[$$ËÍH;yvLx/…dni¾ÜÇYû!)ªž•:3…a¥€î§¼1Ná÷Ј Z‰[j;¦j:n­å@Wbéy•z3“ß]ü¶÷ŸöX‚¶×áG2¼GËÞŠì> Ù5ÝpP­)9ó H™lõ7è[#Àã¸1¶ à—uü𰹉t=îÜ ‰Õ)Ÿµ t:«,¯Aãèònkñ¨&›­¶ƒÄ1µ›´õ]œ8U=TÒ‹›EÉí¢T¦(¦ø1mVÖ(5àÅQLà, MMTàôÜy‰³{_O–ÇÓ2rqx›$¦Å¹W,`µ¦ˆ#Å™H '_< [’—'AÚD9PÁ7#¿¡Ú;çDHÉõ¢²ÇxòéGÀbù5ÇÁb&6H!IåÎÞl‚(äÑøl¢ëjõc†ÆLãñÉ÷9¡Žç:zöëÇæ>Û¹vŒÉõVîB =õaJQƃù jÐû3<Ã6‚¯DùKî>D–Ÿê¥ææ” Ç1H1<|rŸÄ@µ"¼e͹õEs¹ w}u•¸77]¯âkUsj‹®bT¨Å÷2*S6ˤO%Ï«[É.»-l©7ÍÀq¥PÒï}ËåÍ•P ‡TK¶½¹ ‚Hµ¥!øjK4ä=×ê®°Î8'°ÖD+&óÃ㟠Ø×;»D*‘þ8~!³ïã«ÈÎL›{Cè®­3ë2WÙºÌUfJ‘Dþ98ÝKñÏô\ÜGûÖ´í’:ö) ûy€/ýdxvn|Ÿ“û ¨zrªêPŸfØ‹Rº‚8¡Òê±Ò2·……ÁÅȶò寿?0ö@¹$Oì_RpA² ÛÃÓ„nÈn—L´MÜK2SL¥C•vBŠÊÐm5±hš˜ºˆ§ôI¤(äH¦p° µVCsc‰-ð®”Ýcx¹­ µýÖþ HΗ„î$9ï‚wu½ Ìâu³#œW† óT¯Çþ¡È_Ç^tH2t™»—p„%˜ÚÑæíˆÓš¾=å ð9ïºÈ¹œbÙõš„Há¶c5$¬;¬²3 ;•À¶°„N1TÔÉBHUŠÓ{ ÖÒ17DâuÃsWÇÍF®\¯÷ëä_™=5„ï¨CÐ_‘*?Ý~¾³‹år~XïŸøêª¬~²ïÈgÓ׊ðgc£˜!­âfÿêÄŠ=`‰5Éb7Ø_¸DÚÙ»T«¬~Ö뼊 ðJÐ5©a¨Œ'œóífaÔ¸-ðyÝe~ˆFîÚv»,V~UzˆßûŽ;Õ²M0¡·«˜2äK{lÒHã"ìàî“[vT\ýÝOªãY?êaäÂòï0ou–Zùë¯_Í©²æÛxå{À«›}Lú«ýBJ§=©E<¾Ò¨Ú1v/®PìaÓ¹õRõuµç«Üˆe }nžô|+eøÐ1¥Ýe–#ríd˜<˜—¬îp•ß¶Y¶ss=¾©ËWæI5²Ä¯îf0³‰¹´]œKwßÂe%g`çl¹¥g y—û æ»ÿ¶VõzÞ~xóûWo¿ªV½5¶‡Ç,øI«å¬~¹ßŠ^¼µn›PÖçƒúÇ•G?Ô¯ê äXAô¨³_ßÀý×=¬ža©¿W¹ô$uáßõN¸°µk3I¬°.”jUYãZM¯ÑêTäˆú„k1pB-¸@>Çf5‘;Ù÷ßV‘jí¡ó—j½ ¯ ËØ (ø±éƒ~æn<}x~LŸEÙR´%Ï¿‹ˆ¦.¨ÃFœb„®7ô#ºT{†îbýÿë{Ðlù¯…uJ,ìÖQNñ55:ÏR)qIùO|”F­ƒ.ªQtUÿgƒóy|³òvAW%ÆpBë*V?iÔðòÍ7 âkZcôoâ·:ÉA ï,ÁøN{4Å!Ë!¥K¢´‹jÛ—†¬,!Úåû’,ú]‡oÔ·ZúB¯¦N”w¾;Íþæ›ø­†Ïúˆ½Ø]eäÈ [1%yè ÝÓÎJ±&¨ “±¿µ/#è0ñ€Æ{vµ ³%‹_bÇ2q9¹€öóBb/Q=ó³ï Òô“*b~vS9‘\°Ã†ÆÃ8K+¾ìøhÖ ›çÐ;ý‘Kì5‡1§þI΄:áHNkƒ>Éõ˜;Å£í©æÞÄ7kšHiž=K.àé°ô‘_®èxø„_ž(8°÷c}Dä²°—é+êüÀ_"¡u9lÉñ’âƒÂ˜àk3i“û]#×5Þae%e O[@ÊØá¬›àÙ“xP #ÌŽ³9”,'ë®p¨”“ÃóûAP±ÝtÁáD¹ÆÄŠ6ø¡ãS+é{ Þ.Rè©F"Á"ˆôu (½ÄÏkuÓ…krÆIº#M’îLðûÚ"a\[Äýê’v."àvðÜâK;_M×á¯8ÒõÍWE›p Aïì=£ùpî}æ:òæu¼¶9ævÛ÷Øã™°xƒð,'Ѓã­½yöëîæ[rdH&MòuâÆÝadÇ1ùtÏÛŵÅ‚_Û]„lm&JÜ03ËÚà©@†8ßV¤µÊZ%K^4É’M~ƒ¸k×™b;ʳǑ›×ÄáÜ¥î OGtnÚµß8H% -9åÄ|oH7ìR½ÒdØo"xVa㢴ˆäq^‚®È ÒK>ð ¤ky«RܧµŒŒ `qû&^ tÊÓÖ’>òy÷ÓQ–8 Öþœ©Ê,ãzhæåËñ¸Ùm¬¶ÇÇúOY& ‘ ÀQukÿ°’`KY"TZRÆ­Ñ‚ î}¼‡òV B± … q{S0¨7ê]”v^ù€ž!à…]DU–ûÌI—Œ8KtYö4]1Š1Ͱ3µtø´`¾UGÁfîBOóžBOõyrB¨7 ŽãVÒšKÚãç©8ûdÉ4>Á”ˆå6„˜\âE€„›©:6Z³²þÏðóqKìA\p %P'ZXR½(éQXx‘Q¤Ã>0)‹tàdÕÒѳà_uшa`ú<·K;Âø¸Xe5ÑèQkå,í|pª}àx'\ÌN柀B¯Á^ñéÓzúiMž—Ô§³²÷ผ ؃²fì8h( ) ¾‚©bÇëd€¡Ú¥ÜG­û8k„a# Îj€nÇ# >^¿bzK§ïECØðÛñŸâc¶€.e¥Íƒ”Ãâ™*lR¤ÕLíÍæ\ ­ˆP‹õ‡HòëŸø§¾¨4J1j‘FEºÍ^ù^S:И²Öõá'Ë£9’b °çQÚjH«1öþ˜Ö*kTõ5 ³´‘çÈ,±Šøo*»(Ôl`,*1æ¿×ñ'æâðUU>~•NŸ=€•›£0‚Õ8ÈT3Ű2 ð̰þï b%¡ÇXì,íz.P.m½·MšpœƒÁ‚Ì€F:<Å«Äà$=“ ¥{µÀIÕ·*”õèb¨æv+,RÈz€›éÛOŸ¨ h’éO¼C'Wð_rP\ÖXõÆ ” V¹Õ7¿c±‹ŸªAðé ÈsUj­ÊZ^¢¾¿pÃ.ápšE_‹J©fËQéð0h¡p’: 5‰ ¿åÓÝvÃa û…ða£‡t€YŠOà6­y¹j¸õ’Êêè7ú|‡}“E‘’7ì Ksh¢Þæ5%ZyGÔ’VÔL7Ù…†q÷ДA:ùËšÙ(À©ãUhÝ›ö·¢Ö;ðÙéJ»Ð±.Lmä}Jm¸ä*—mð•­qeeÿ•Pb«¡cea1Hž ½P+„èú†f }“êž,+ží¼~±½¦UÍwpÔì/KQZ¨x‹.Ô( û:>Øjðx™‚lXx˜»FÁ©ìÔ4Šº5O˜ý¡VöªP•dޏ­¼÷®¼êü„ÂŒj_’¦yF÷ôæ¥4ÑœQ¿¢q=—uôc²íÑ¿Dr±+Q÷ [#‡ŸLã­šñ`޵g¥¸E™Š.~ZÔõÄG]M|Îj‰oRIÚÜfæ£Û8ØÛÙ{¾–¯.ì@Úàæ¬‹& 8 *«¶:žÓ$Æûó`^Ný¶®ÓU¾iá&}hº÷aIžžÉîkH§¬ûýaIžô‡l–̳þ(cò°Ä’Œ6€­Š]q%äíáYÙÄLNjPXÐH·?ŽupUSÇAÝ!éÅ›L­£lÕŠ,„² …mÌZ¥-‘¯²¬2ì8Nc̲Šv ü: úåV‘špyP±Ìú‘àÒ+éŠÜ^h¾6€ú&¬ü¹QùŸÆ[ý°\ùñíâ“êW'^úéIîŒóä“^®ÙAèÓ:´×ƒ³7ú'‹¶þ‡c B{sà’jÀEŠJ@ül>eÛÎÞÂlìÝÁ’sÓ ¨ÛBýæ`rAì”±ÇAíT.Û"CÉ‹ù(û”þX*XÅžï™x ù¥ÙT÷³ƒ &¾xW UnZl6®ØøY'ã–vëc«çYqwÇ«OC‚/Ö)>ž÷µB¹š#°ûd•Hÿx݇sn1Ø*ÆÇ: %½¯-Ö³>±—ðga ·Ýc´Dín`D}4%ÔÁMØú±UUtN„27³yan´J½lG¸1“•A:ìG"´€™÷¨ÿHÍpƒþdýsN’bó¸TA%Æbg¬8²ƒ‚†KxVëÏZ´uûC‘}ÎÎw×jý¦®æCù¿µÍ…ÌglKîŒÉú¤á¼& Iý,9R¾oÝs„mµ5×O;Þ =}_GˆŸSûíp°&ð_ÐQ´2ÛfùZ"PìCÚ̵1ïUñö^ò«|Fó‰%ÔÀŽTžr >²næ[³l È ßhE¼+†_°JdâªÛî(ɨá,~7ê´Ë¼®-h½ƒÃ>ôh¥Å€B­èl€K!•ë‹g¢ÖE1û°ÇJ_¬&Iô$îGÝÃlScÁÕ1ª€J„‚ϵ•‹¼~z•LYX« rhK1 ר ßñÂ,™„3 6 o14€.&䛕ªØRe;ˆ»eOÉNªkúÁö ½æ:6X‡HF0ª ØÊX“D×ây?ê•qF3j§XßÌÇ0X2óó5§4¼:Téõ“f”¦‚…dTVMiÒ„-<~uáøE)Îc; ©2h„ó,)¬«¿™*quÎ’¤¥¢;}Mmì¼fs³s2°$# ÆB!&±¤ÕåG?ð"@Ãjèm˜ÙÚÖóUåHHû¨eia'!%¨GËËËÖCèÍ-]ú}.Xtbp†2ÔÁâÒë%Ú;yÒP^ç9ª ë½°?(0wNÇd˘4³X9.’(»_'eœEŽLõüß*BV¶mŽV¾» m¾"¨ïpÄ]ºF€s¨70—K*ì4rq•¯`QlAÁQœ!¿!憔ܷ*ãô*ó\d´·•Vç$8™U‘Áú‰g×?㪈¶c§%Võ¤Vú5˜-ÈbôÔØ1ä|«³5óÆ~‚Ù;#Æfï6G :Dk|9´óHâQSÉ-¡–Øu‚¤4Ïm^}:øé¦/ìm¿a¾ rJHy/b`¾´JœÙ&€×ï–`cÃ;$Y¦ö<ìž` AA†xåøõlDÆkâˆ"«”ììi Á6 œ–2Ƶ2× ‹ìnU%Óa¸ºt‘5û‚V0¥±35Â%m]uSW4•ùP&Ý]fã0Ç÷lˆt/œD—Â6¸L·/4¬Z2ìž3 ¡Å*´BýÙ •g×iΦªÍn¬3û_®0£åÊJ3kPái\s&š-öâÛ ÆWæTkØéŒÊdðWG¦ò£™gë>"òÅ”¢¹º¿z-•ÑÜèjªa²³ð´‹©jÂÝTÙ=Xç}zÆ6Lé–é¥ËN~éà…ªû%©ëx®+>_|úŽ@ÈÀøZ‘.>VПŠúùg`î+ÅaÚ¼9ËÜÃ8_$‘†ç8óóúÖì‚Òe!ß.‰ºÓLê‡G…!„Ôñ<þÐ2‡ãÊ×{wÁ]W´|VÞãµ½ý£í5`¤ ’gKÎÁ(äÍrœ ›Ö Û È0HÏZ¾ì'ð–óem +×Ì+F—{ä”M àÓ=½ßúñØ` ¥žôaúùüŸ½ærI­üøãcD?-ýÑuÑÒ³·¹Ðèpz·m»øšcoÄ ]¾„˜²-ßÜÛd·v£ufÆ?à!r¾Ø>ØüucïhãéÎîÎÑ¿ð`ñlçhoûðP=Û?PêåÆÁÑÎæ«ÝõòÕÁËýÃmê.Œ¯‡q¼Š£dH——`T³0ì0õ`¥T)Æ.cÇf›EsÓï¤ú$…øyzµÕËáI;nBqͨ‹·¡àH‰)é91Ï|³vbo® “¯tìU,BJ”KÐl²`Íû²â(:ê’Læ€bœnÐK±½‰.›ÇÑËäš/áÒ‡…Õ-Ù4ņQ£Ûºxô¬vp@dJä[ÆC£-sk$–¨ãÑ@Yïúò¬ŸáœÔ‰ì:På©ó©Ä\Œ¶6ì#±¢ƒR-îˆÜ$ÈÕÒö‡çIOî¦ÂPëeÈO‡,QÀõ³sôëþ«#µ±÷/rÀdü׺!£4QéV5°P1 dC óm¦¯"ÚLÕÜ´if‚A·¢A·Snò¿ sD5H§>`m¢˜µƒ¸¯Ÿ¾xÁ–în‹úM÷©B&¬Î%Zâ?½µjõââ"8냤Vm3Ž´ús`âäCªË„ggQËÕw.![|Ö¤"ùgà… iäWr¦µr™i•!Éúú7õ†öâáúèè »|yMÕKaÏ8ü×acwçéÁÆÁ¿¨þ©Í䄎œvÍÍÍ)¾òÈ3ËkðÛo$ºìG,£„öÊÎtÑF‚_r‘sÝ€¹ùP¸¹¸\‹aX¾B"R²¬e¯Z²c$ü¬7‘:°›B×þTtìÐi ]Â(-THžÕÒ4꜠ß-³7kcãÝìîf÷µ ˆp‹pòŒÀûì‘ ªžP‡³EhyæV ÔgÔ£^ggN©iK±5±k‹›ŽTµƒJA:¶„d¼L>c8κçİ- ]Kw‘y Äéâ³x=–äVKúDD<¦æ†n¤)¹0{;¯ƒi±n§„¸õŒÚ†ôò‚í®áLH¬}’ûÒDº¥èÄ<áˆv™³Õ”^Ó×õ/Ú¥íÐ@nô4C™ñA/|R­fÞ®4¹–6J i.Ö-âp“46â¼t.+¦­Ê–ƒÔR‚‰:«ƒÍj4névlY;¤¬‹å¤,ú« úÊ®qôœÎ1&Ú›œè ÿJ»½Å7Ö[œ¡‡¤A…ôÒl×— {K4†¥q˜_Y0¬~;~‡,gÀáa}ãÏgNÕ¯«UŸëGÒ9§‚çè¡êH¥ˆ0v°ë†2îÛÛ,©ú„ƒ¥Ñ5 y@›[ëfÀÏ ð³ øéáVڋʶDk‹`šDóoïeÚ{a¯M8üÐM}dÜ0?ºRÃj¿ƒjSWÌ‚† °Xªsw†¹¢Æ ‹œ„~q¸Úq[-ÂC ÛF©ùnÒïЀø‰¿x´•txôˆù¶I]BJƒ y1«„k•(­˜/«G²"31mª|ŽÅd‘ZM€VÌ<ö»Àç…Àè£]5º5¸A娬­ý;š ˆ³pvè Â*èÅ#ÇF] GØ8yÝPÛxC‡¼uZ\ää%„9>‚uBäÕIˆ 'îVÍs4“°Ðº±W'„\E´/Ø5%I¯l­…–± ²-ŽÕB{eÏŠãŸbyE˜¡IåØBo™5ågÞ1aDsñP± 7‰œÇÀQ0Óe^‚º äèE x›¢(¸i®,LÞ•Â,¼åÀsöbó1U±Ø\Z®Ã4MšxD ¦“_C‹™Z•bÇMü¬wíS4Àø©ÄŸÐó¬ &ÍñEÒÕA2•ÁùÅ ˆÍïâ64Òê$â…I—V5Ñ'ËæBnïø>e.ˆ¥Òn‚OV'¦FÍ& ¶x6¾•µGÂ¥" ~,Šß‹>L kjûŸl¢.K%Tè ”¸Èc¦,”h05é´ ¤Ü›J»ù Øq0Vos?â«ùªÐYgdþ„ Î ñÊŠIÌÆÂyô›Ò¡™ Ò6©%2æð­^ÈÐñ=×MÈ{¡?…ÚNtQKÅÃa2%7Zcu@Ý#VYäM…kþ°ª¢N+P][(.Tj1¦è¦’f·Ë—sÑG%2?Õ ×Ôƒ¡fi=÷®Òþu{aÜ/j¼ôº^p oY ¦“è+U|ø¢V¨DÔº¶~vÜŠUÕÊhŸ½…ÅÊܹž4+ÃN&.UœÆ™‹Xô°Ñ¿ÑTÑ®—ö^QBûXª®šýˆÛ!dEèÐNØ öë%\M ‹"°lÏ ¡…â`[¡E­ˆ¢¹ýÆpé¡:‰»xøÂUG™p¢YÙÉN‹x#S%»m, 2·Vr ×Nº$̨DE”¯„‚G—am ²†ÃËçöIt†øIVCÛ/l¼YðÑ,æ(1GÃtÀvHw-&"aÑ,’C¢¿Øq)iÍ+á »ñ)ÊÜHº‘‹>‰àN u¶˜IDÜ’õ»Pí–Úúmãà;ŒÓ{×ÕMµ¨àlÂR’ @^lÔ¤­Œ/L ûaCŸd¡’Ïø8¡Ž§0„Zœ@Zm®sE¬¤ƒ< ¦v«UÅ[¨Qû”j<àxþ ›ç•}žlqϾé¿}Ýo“1=~XÓª•åàQ`"[¼Ñ9ÇÚrÇÏ*!V$¦¥„²´dZR1ž/Hé„ddzdžÌ¼ëE“©¥½å³µÕ¥e*Ð>CÖ¡a 5SîË+ú@þ1´ãl4·I#V`Û„üi#M׫ô¢·žûÆ­û³@sBU0{ŠBÃ`Zh#¬ÕäÏìÚœv±|ŠŠ {KzÑCrúËXh£|D£²ÐèN‹jþâ†4r"y¬ËK£PÀ¸ñ‹œ°E3D¢ròE}ÝþÀ‰\d,*ÀËéÆ*rC‘?TMI“ý…Êì’äýa¿UAƒ~kó¶ƒY~™ÀhZÜ":AÐU$¿„š¶–ÀYD[Š•À}Î<•^—ڒ㙪.oàÍXëìKõlæH’^aèQÌÉ”t3/œЬoŒkvJ{oãÅvQ<$©k.9[ÉØ™ö&(°¤Mjŧdù;ÈL€¨ò|sΓD„"q:äeÔïÄ)M^²%Õ½žù^Ù,q¢cðâàIXNá—‚ã¼xÍ•4N‰ ONc§¦IøÍQéš N[Å'­±Ó ;;'¶éšž NÁÄË&p/±ÌÀ¼³À9Ž, Ó’¨±ö¾E¨&Œ|xF7ûÙ [¼Û³r\'ÝÀ‰ÏdGö·®LÐè·8°‚C,D¬eMƒ‚xMaš¤ßðDX!šÅ"b›:¸4˜²©”éÆ>y&bè 7-ÌÑmeÅMóRÏòÉ^;nÇP ÿ"C’Öä¸Ú…)ÙFÑ®6C0§‚ €ÙƒÈáˆ2Õ_àéEœRsC䆅"2‘t&Œ³T©«²ˆ‘!êØš»Ž·49Ì’³ñÃþ±²u,i ŠNðœ/&UÓ^¡âz™³(Õ½ËJ‡Ý-KV%â-$Aë$“yC+òe¶Þ=+ú„ým"Ýá Ë ò±(LÛíDÑ5k? ÏÄŸÈiÜ´$;"×Ñ Â ˜ÅdùŽÖwë„_$ÎKÆí9 „6mY QRžœžšP:lôP.zŽ>N ±C ÜèÅ‘=ñ]}mã©™J÷$®MqA=žc2º½0ñw¦5bøe÷Ià]´‹Ñ]´ û˜˜HÂ%Î@Juн!AØ'W2[ [¨"3ÍOãΰ=»Q2LÛ#c¾TiÒy«’h…×/YÈžf#±äc¡†ŠU»hŸ_i7ÝŽ¾Ng®ã܆·/.§§l€—á–C¶f…)…TÔ%D²õô…ísÊûB˜Â‘ãúÚŽ.‘«d•#'ɪøcaÆ‹¶«N^Æ•prz&fb Añ7G€l/îfÒ“hšû¬­«APòÉ!Îj§QŒ‘¯IGÒ‰asƨ›óÕ.Í’Kœ 8õ­—B^qj|žâŠäOÊ“(ùXYcܡޡ +}j©f«âSpÁÁB/j´^«¤kˆŠ·Þ "Ù ¹ Z<¨ã…¦n1P[}óÉŠ%Æ;{×ê&Ëb7£FŒÔÜ~´%í'\ô ( QÆ=\ðÁ-6ê1l’½Âx)Áx”3æS3œIÆ×KêL+ D¸*,¦Ù:Ä€´CbɤÿŽmé`lM~cOA†ù“£¬QÝ&~-²(0g¿"qÔ‰˜QŸ‡Úh%ʳ“øn¾êøÐþãÐ@ûX©ºµsPh;¯6 Ò2¢{´›gÆÔºAØxÓÊZ,›J<7 |ÄeônJÑXåDëÌ…b˜ÿ-ÜJ.ÂQÚpƒîï[”\$Å'I}¾Œ (ˆŸÍ`ÚéTi½Ëá%rqï*—¸Åp»ÇgO·('t¦ã¤AƒÀm$ÙÔ¥>äçâpŠØp ™aYºÞ% ^ŒF‚0¯GÖ ã‚X‹;(<çY‘ Yºg%L)Œe6 ÐÅnxD#2t°Î¨å ¼Íî¸ZWΡ†# ìÙ—ƒ®µªƒ±øÝù°ÝÚþz{okÌúZ®Ù·ƒÊ’VÎÝòl+îg¯ö6vö÷®nlo‘±¿`}u°ÀïmÈ#¹Ñ<Ú»³ñtw›l\¨rý?Ô?é\qjæÆ†Õë 2ÊkXlˆ˜[xsF>Gš¤º‰å¼¹óNÔ +·¤ì¦bª 8$@X(&vxCɺüf þ¼]ó½9%—»Ø¶“¾!á~ë›+05‰2›®Û…xÖ ¢™ð°Sáq4õ’м|»¶ö~7ÖÞâßB¤/ ëËëªÇ—æt'ð?̾AÙ7f«U¾m¹Î+®li@¬{…óH"‡‹‰Ë'‡Ÿž¬j——Æ‘­ ‡¹–%‘O „_©Õ} ¨ÎÙ%”::r¨*¼úªêø`ë~çåÚâ¤Y.5ÿ8Òŵ°Ö Ñò=Þ0T«eíb¬œk[/ׂÅq4SûcR½oÚäµãŠ$µ›a»ÉÍfCßÀ[>ïâùgèfâ Q83ÏÓì+\ÑúCš@†lòÐ »fƒÂºÁöˆu\ôýõ¼W÷ ÄTVÊEÿÃä1{o6Ãæ¹õ_”q9®è:U³i@ÌkRØOtº¼:Yë•EçÞ($Ò¸Cs¹5«T¾ù ægk20¾nž¯GÇO¿†Ñÿúëu•~ý»uK òõ×þ± ÞO®Ý¬ †;S®pg†ñå·2qxó©O¸›JŽ<² ŠèÍC‡T̶<'ãÄvèüªu÷êÞpJèf|\’ûÁúðæþîîöæQOq‡Ä3î'fSo2KÂ:q‰€èCHŠA¶$žÒ½Ã´“¼‹²€ˆý«Ä´ðçî;ß0ÀsRn:«Ði–ŠöCíñuWöUÊáy«æ,92áEÙi¸‘€a—kÏ/骭ÿzþò¥Â˜²t׌Jñ©öãÃjïN| ©›ÕÝg´ÜvŸUÈ/ ›ÐÃúŒÑaæDKòLO£‘3.¤’^Âkƒl‚Ùi£ö”1àæAÈéª+^‹ÄºIçsMð¨Ê ' I±:ìÁåâ|D\/œ2°1h+–ˆ5Á`”t9¿ô]±p/ùî\ÓNÈ>}RóÚ_•þ¦ïY/¿Ôùà~…ÇÄ8.@&’¹?èf°Üfé¸*šçÐWê›Kèy×D³Us: FÅð<+æ²ög) (GjåX|Ù;YՈϸ’ãØc5Ǿ#…0¨ïÌnùO‹çÍeWÂq‡Ø{K@vr¶”ŸÁ° )± )’]xàÃÍ/%÷9\å’°"c ŠW(Á »03Û£%šõû‡r£/„.)s}³0 ˆ\Ê;ÔÒ“RuÎ I@ÜŠ]` b‰D"Ã]FŽ@ֱƀB b=Ǩ…  ¼; fŸTÀçó-è-Ìk®Éc´¡èôû!ÂÔNR¹'nz< è¶61v²ÖæûÑ6o  ,ÀâÙ ‚;üFc‘tHþþsMwRÃ/¬ê¨ mò µ5Pùln*u“+SÉyúšu£I¦Ã&Ó(êKh";saÿŒ±®_ŒI„b ò 8)G´K‡3å# ÿ@Ýý]æ’Ø'Bnj« ¨Ø5¨ÕŠz’!þ9"d¯Rô„°D4ëáÃ%R;Ñ}6\À[XÿàŽ…û¬¾$£Ã áàhÔõÙú¢åK">ö40ІMHþûC¹' TÉ©®åcè‡böŒëÃWO'·cº£ÚÇðºHmsKõ<à˜U• qDäIn ÞØ)(¯ûJõ€0g*¬¾¬Ð=:ri¿uû5c?­„zŽ8¯aOœÜ§Ã˨BOt÷Ý>Ð+~“u8!ØÏ¹ŒÃ]µ–¹sœ|V×µ‡U³Šã¾¡ŒË?@­ÙJ«_€«L|uÞd·²’¬çìÑ<éù埅\Å) ».¾ÒªLm1W»|Bî^Çêè€Ø/Ösöhž\T5sâЕ¬ðHfMÞÌCˆ³÷OfÞeæI?Èo¾sl§ö£TqüÅzÎÍÓxÄp?çÍ“~_þÉWSr»x¥àñë9{4Oú¡ Ç'¬×œÉW4ïUk Ró!) iZ¼%5~ð»4Ntô%x.û¹0/:œ9X¼)2‘lHÐôºK^°2ýFšY¬2‹ÚE‘<Î×eƒ)l©oF¢Ä¿Ž£UÓC¹w¬Ðjã¤Ñ7ý@¥ŽCøÜ/Ñ>æ,m·^Fs;°†·¸w#"¼é[à2'ßó/´ì†OOÆa Ôºû ñâ fQô›¿·Î†Ç/¢CºJ¼V?z“Žy‹h@¾,®ä ¦„ö#ªÅAùîœÀï¹'åÒX­³Cc¶@&M¥s›)È“ŒÄ&];ð·¢  ¢ž,_©K5ud»^™ª ®uòCëÔØF`* Lµ5½Õ}Fœ—X÷ŠÈÐ54è…çD°–™&ð̶ûú”ŸóklØ…%‘œuÑÍhÎ) ÷å¨$–è|Thè£ ˺‰Y7'Sv¡úÐÂ,qAu®¡S7Ä…„ {Éû?÷ÿîü¿?ÞWV‚ÇU2ê{4ˆZOUqµ¶úyÊX^^~üè‘ÂßïG¿Ë«ä÷ÛåÇ+ß>R+ß~ûøûåÇß.÷H-¯|/ÿG-žâ§ÿ¦ƒ°U¹À›Q°ò[àìôt žeú§ÌïòïÉ×kO¾RÕ“¸[MÏ=|Sχ(÷— ýâ tu*™§¹~/¦tÛB‡#HAc½@ƒ~f5xü#!þ㽂ÉÇðœé€t¸pbÿQä5]«VÏâÁùð$€³Wç«úÇûjœ¦PÉŸ¥Dû¯ëƒyåÇW+èž™œ4ÿPY]^Y½Î'óJbDÇd'ã‘§y(fLgäùbØ¥€#x92»œMª´ÞhÉöŒÌn”9€e±œš›ÃO/¥çЀŲ#ù4)œpŸFìÿöi2ìw#sÆmGÞÖ«ÝÍÃíÚʺ6DÐI¢h~ñCàϽk\ãž7uØx'=_(t¢PÁ—AÁËÞ«Ý]ô¿²Æ2Ç~Ty¬f*üäTý4£ÂÚUiNåqøYú¸ò_zâ_Ùº1Ã;YNÈÿÍ0 ÏЈh‹åvNPA“ ©‹ªœ©²ÁX®•ñ—‚6¹m—#GåœGÅR%qœš“uL ‚¾ØKÒø˜Ú5b-\Q"ð¨˜0GSÚfa»î¶ke¯,ŠðÎ?î2SÆN*Å̯Ù'O£0=Û°ŽSõ½ªÓ>‘€æ8 <ájFxü7ÿ+›5rÝï3˜Œ4‰NÑL]½ƒ™Ãž"õÕTôbÀÆ´ƒ¨·K¹G2Ý]Ým¨n'ûq^}²ß2Xïä*ÙÏô1È@¦ê¦(O7²ÕQ²Vж4Á¥Âüáëcª€ªô1 †nÃ1J|ý×úÕwfV¦9׃h¡(génö¥KŸèxî|ª¾NÿR±ˆ Þ-*¿”õB1ºƒ×Çó4‡Í“*±£@N*]Sw q}¬Ïö V—w’´Fµ2@Æ0û¥•­ZÉNó°`¸)$ tÎ Æñ_×1ÒG½¾GleѧùþY­´¢O¢"A%MYøtäõ¥¦‹ Þ]){ìâfN;¨ÊË `jwìÍó$ô(ôY¼Ï%QncF}¬¦æ»–D¥iÆK€4@Ùux• 23+‡ÄEA t<¦èq$Õwˆ°N>ºÞ‘eŸ‚“<˜‰”sªŒxž<—‘b®ãŸòºzFI%ü»®¸zkc[®k¶2µ0¬Ýƒ˜‘U«¼Ž}'ç®9µóìÐ#á2»üEø%5Oˆ•СՖHÚ ¸8Úâe öШ[áËqž®• ´W9}s=jѤŸ²)ŠV.ÑFC‘·©¼ ‡–Uó;§ª±qÈž¨ÛØý‡º@lMr.Ç,P[EŽxÉWD‡F»:`ÉöuëþæCÅk§71¿,xXƒS»ÿ@OPOܱ^œ'rÙ£b\}ý…nQù§\@É\¦:1÷i_ìŒÈ†Hô—Í2¥ :“c@1ñÙÙ°®U,ÁŸuEO9ݤøKµâ¾zdhBÀωª•²¸¦˜è²lu\ß@TKËHWÐ|Àt2ÖÂŒ±]îƒfX+æ[EäX¸)Àù#nuÐ1ZhÂ0ްoiØÑ x©c˜à›û/^lìm•é ›Ü¬ N•ÁÚ‰>º(v[öhY‹ø²dZBjP{2#`Ke¾Ù³Éerä$ ôuM‘¼h U¤¦•üi]õ#lßs…fiý‰‘“’0„¨Yf9¥^áD·NP´ì0&«jùF-MWî²ÄÅãÐ|œ(=ÃuXù6XV¯~ÛÙC&ffôS y/êÞ,t±!«Á2sØÊÿôI‡Âu5ì¡ö6¥£ÜHù‡¹b4…ƒðUïGEL ¤òü|YQœU¤ ìXo&Y}ÕB®ê»`5XyèÉL·K»Šøží½*üÿÅÆÎ.ý‘ÎBBgZ/},q6"Ê8°ØkÈ!o¤æ‰\(YP¦M…4×FØ5²“õ^®ÔÊ%ؽ^®ÖÊ?ÓãZùE‘1övUwd¨KN½w7»»µMÍdó»·»±÷üÕÆóm냤Ðu…-l\àI}ùuJ@\WfiÉ“(r£E†è–í M#42= ÛhU.‡Å]Š5H={KZÏžB`2ejÍ ,®ìöÊt,‚l˜÷ÉK “F”yiì!QÈËß-vÌÍ_Cá¦t˜ûe]”¿EzÍ"äÒ!º…E×¼dµ\û’Di%³ Úž8¬SHö§—ž§2Ç×#aæL ÛNý¾.&ÆÄ+¤xD¸ .>ìå‘,솔ëÄÃÕ…Y„·é™HÀ' ©Ê6¹Ô*¹ÒÔ1<½*j™©û&³GÃM™?ö“ª¢w(5?ϛԇÅKÔºÀß²U¡ä¶Vù ¶aùdI½tR5¬•fö²luf->r(ov@'>Œ­ÕBókm¢ú~ˆSwßn·Ä~‡.ôbWòuœ“0n³ý´x‚ µ4ÿ«Sl÷òšÊâD›é‰9­;‘„[°«ß}§™TÞþh½¡/v®5OÃ^x²i7©uQ1&‘ou`8­kÊ-‹uÈÜš¸²7<·~¹=ï„8L€Só-Á êEÆD3õÿ„l¦ŽcÕyRÿŒòk¹V–Ç™Ä4õB9Mý³ j| }K¼æó¬êGäk~&Ã5™ùŸó©›õ ßÑíñÚnÑáÕXûTA§ºë…5„íä#]B Y±ú˜%ØH‰òFí£m\'ྙ”Nr|¥û’¹ŠìžÆ8IßrŠ.†e«…vqˆ³xØ|kÍd(ž¢T%jÑL•²¶…›ÖŠ^jg>ü‡Å¢l »O¯¯J¸s’ä%ÈüGn„?wzŸÒœ®/¶9»YßsI³v<È {ý4FŽf\ê'}1ñ ’õùŒ ï«g0Ö™çþtº¿S§{s®×¦}Ó÷?m–GSÝ-ö( ·«½Qøh¢sd_Žú(ÈFq›Ôg. ¼PfäŽH¿a–S¸j‰¶é;Ûô÷¨¦–üÍ-f§K×zbt¦Ò_Bµ²ÑäMƒÈä燌¯ÇîÞ ðÜ;ë‡rWÑ< ¾ Q$k ¦M5jS7óKŽî;`ýûY%û '™.£#àLF@¢{ÂN¢LÜQK›”SÝKó•¸Eéëö&¨EœR^‘x¨Eìfñßôè yÂH"&N×°ë™áã ÀA¸á xn¦‡G5 /Ÿ©<µ’€ÿjýÑž¯±ÓºÒ²f¦­Z©@3ìÿ³÷¥ mIß=¿¢#´":€x³ XId6ØðNœÇ8bF µ¤‘5Çãø¿¿uõ53‡Ä›'Þ êé£ú®®®®Ã¾,ð"vèˆ /Ž´N#4Z…¾âzduޤŽÈê[kw§µ·»wÐ~²wÐÚn(ô:ÚÞÛ'k.@XÔ^/K0OÈÈ“Mb?ºOŒ ðÂITް߬¹?582mŒ"÷a\èÉÉd®ni±ôóŽï‰Å5Ãr+®m¾ˆ/ÀîABÛˆ¯÷lÑ5ÿsã7 í¢)¡ïp:¸TÅRHå‘× |i«0aŠkÁ{•Û¯}´¶Œ£·1Ÿõ•JKC7­Ç¢%›œ³cµZÀÕN òÕ¨À†Ñ®¦5—1*mÅ,_©ïwš/«<ÝŒôº µî²Íá>–8,àjê=L\î¾DGé°ûŒ±?Ýt©‰[ŸCè/á™Zå·[ºÔ%ÑU£µ*º1xe£å…Ç¡T4¢–†@ENÖÚ¸<Ç×ÂŒ©TH„µ~“ö[Òõ)FG10OíwsS-• ÅíCíºÍDu`Î]ÒÍJ ^n H9v­;|2#óä¥ÞP¥—(Ròê×úëãr½Nüo¥¾R,©ãßHê?S ^?.c®Å98.SbÍ¥”M#q0"¿ ·«Jõ_æ×C¸XÇ„|Õ¯Õ9üÞã*Œ…¸ñµ•[g¿%àòM Ñ\½VßToIKÓð7¼5ë<þ;¦ÂÒ×äÄ.î­loM¼·×ÔvSÊBi‹ì°¶ÐeàÒáá|L§-^Âöz²³»} L|„L€ÙI6È5œ ˜ö "z·ØÍ©E°œ½Ñ­YeŽê}§q›-í¶]LÀñÿí¾XØtNkr ÄØd3 P•ÔwLÔ®#zíÅ«‘H´°±W< É «´¤{BêÏDêˆOÔðÊÕ*q쪫Œ)) w†él_¢N<êŠDTËg[ßÔØ¤âÚ£–_ÑŒ1Ðþa•Þ:†èc+GaÿBZˆ6"#܇0žBzÍGn9‡¾h¬oéŽB*xm}.SŠÅÞt,£6ci!¾hQ†ã}Éáa-*ù‹kRè8¸ëº¼õ ”ô¼yð´V«Í›!j€~CŸ©T-Þu¨º™x¹bÉ”TÄ0§öÑÆ†ýDvF„ÏÙ­£œ…—„¿R—b1AÄü(ñü¬­ïP²ý‹6¥˜ú‚t2¸Hµ,/—Ëbwz8Ø;P¯ø1Bíî=m?Ùz½-Í™ñ=¾™NŒ‰JÊÕ#D5Ø \4&5µÓSR/YࣺQ’Š ûîÙÈÑ7BÔÄE*ŠÄ££Q‰'†(7¡HHF†(÷pdë'klg*$©hµj0)U$(LD¢ð«Œº‰£Ñ_ެd[ \#S¢¾üÞÒpµâ Å/ ïg"€ÓyÓHSé‹j¸@ÛN¦¢¸ŽŒ„âC}•˪Òy×ÍŠdjØt1ur`™ `kãÈñæx9D &Ë! ôQ]xÉ˕ְHm(—Z Š‘¸ôËUÓ¢Ú¹œ½BqÂ{ïS –Í*ꮞˢҵ{9)UÄ´ëONA²5tÀ©ß¤ùmÐĦChÖOœª ¹½Ì¶Ñ­\ 4äשZ§Øši™Âu»V@9Jº­SxýxÙÒ‡åI»:—V]½™Êµy$*Ì´_ñíHÓú¨Íú=èMäþÑéÁúcˆfc8²Zç!z–&êS$„%:“ö šâKw£žv€9;ïÿçÍ`8ŠÇo'Étvqyuý¿%ɺ»}t´}pØ(5·¶¶Ÿ<ýaçß?î>{¾·ÿÿ^üôóË_þÇd¨E¯’¢G²vûgý)Ô¿º¶þåÃ~õ¯¯¿Ñ@ÂÁh6Ô v=\ˆXå¡ó^ÔÙ}ÏÏf]w³:ÏÚ,ôjž¡õ3ñá½´u'Í>g®EäÁƒ˜7ì@%}‘]R¸v£Hm×Գγð¦uyí›/תkß|ýM™9òQ·”¨äH‹«šRÕrÀ+¶:½¶®SU|Í­ã͸¤Y^²»Îåþ’Øü°Ö>¯Öõ½Fq“åóT~7¼Øç&6ŽÇY€¸‰JEgÊKm¸µ`G¡D¹~¼~¼v¼îTé‚©ÐR6}ªæ# Æõó,86\ÝDc$6GÛ;%†,×&¯¸/¬ö÷Ñ>2?¢R¶gÆ‘äypwzüÆBüÛ…Ìr4ìYšD"kÚeÏlN+ kíkº6ÒÁO7i©Ô)‹tuc2C…&@‰Rq„U3¢ªÚÞ/ò£u%çDJófŒ(¤Ïörn+a°e,§Eô¤&d•¼ä$ªøjõu…$©‰uŒîTûÉd“ÏfY<ÕkXŒ\ÄL[Ñsz­ãq’F* ‘#…â `ò!³ô٨ʨˆ<5—Ž” Ò7úIû]SfKÙ•D‰Á'ôT_hyíVí~ŠÇ‘š°åÐŒ7 %´[ ’­h?—ß#Qv8ÑZSWV&Ž^ª#²\åd*]]wJ'b­®³RÖJJ››–ä“íÜ’ï(TNéè›tu]fhO €cP,Åõ¼Iοþš$Ïó =ð¯jk'ê[kW¿;ºÕ ãNÜ’¾–ª£’~â Øò2Î@±(?øj«ƒÈ°}]Œ4Me¸jÚ.*ôF:D1KÅF¹€h1,SÏ¿uàåëá¡?ž‘ª&n£u—òòói4jÃÉGåÓ.) IÑ‘µ€P3cz«³x Ó•lH¦µ²Ú©g‡¿Àà4ÔqÂuS¥Ä:Äå‘6_ðjR~½,fÆ¡ªÂCÚï€.“ë!9âÞx%Á|ÈëÕþä]¿' lgÄmÀ™TÜ7d 'P§ƒ'±ªŽJ\hÞH¥çÀ›Ÿ9S‡+Ã(f™Aø˜=Œî>ƒQà+¦!ʰ´«ŸI7¬âÔªô÷d¸`â*ä…Zû4ª§}ûFÉd5 As1רV‡d²xŽYñˇá‘ãX¨}Õ( Óu‡6[#‡óF>œ˜Eûa8Ƨ9ÖŠŽÙ¿PY@ª¶`%²U!¬oÒîŒÇQ`Dƒ\ÿcŧ#ÿ±ïS’ÿØLþñê×¶KC¼þGûg¥Â][b´<Üæ$ç©Ö|ññxQ‹ÅÒ;éÃný{kç€y¼x(þëÑç«ê‘zŠü ®S¤!ã8ªG(¿|ŽÈ¼Ã&jùð§ƒ/kë²Àÿôù‹ún4»*ËãnèÓø NªÈžZ¨b GE„Gþ¾™Æq m²éš'˦Rh6箎Êþ݉†jíí ¯öí# PBì - ’Xz¿¤ÍåÖÔ÷ ŸþG¤Ævwÿùôû½Çÿ>„3`⦥ëÄ„g#xöd·ùòlÿ@Ê„:ïuRŸ^áf‰ùñêÙËC¾U¶.¿l¡Ã£­Vû‡íæ^ÝÓ.¬ÊïEB‚¸ }eØš¶`©P½ù`¤Þœ6Ór‹{ê3íjÔmâQOežm?Û;ø%UÛ0¢‘6·6·)8[ó†šk*1o¤wžåÌO4]8=G[P.]MJÍ)ðâù”ñ ÌF}(c .Ì·¸…Û“íÁáHùÃv{ûåööË£ö“æîávàD¼Øv`q³»?xüâùÖîöüîìnµ÷ž£×›Ïš#K€â`’Ý-ÂüÑâ° „ß²©t ާçxjÇhÎØx]‹Š>CEéa÷ºá5E6Ã(ÿ«=áìC“ÄA‰ÇàÙ‚0Ï=“ >Ææ£ÝOB˜O K°¹»»×jÛÏÑ©jKÒvÛiÉPdãi0$šøÛ°rþ½MÞ„ü2éD·àÖ^ëÐÏM1n–§­½Ÿü,ãfyñø°™ª”£ÜLÍLžf:ËOÍݧ°_¶ül&–²žÎF]ö¡ü¼óüËuÉËaÊgýl°.åÙÝ~<Þ9„n ž‡…HÈ †þ  ;äž÷ЩßWùfe/xþl{kç(Ø:üåÙ‹£]8}žï<Ù>„ÕŒYšÏ@°û¼}9鈛¶·^<Û¼ó<п»[Á<-‚múK··qáÄ¿°Õâ ‡;ãÄh?ÛÛÚ–¡KÇÒ âöí…øZ2nµœ-mã([«µµ½¥(qCRÐ|qáÔ;ÜmþÀŸæ´ƒQHpPÉè¨zˆ#`ü!£Ë=á~éí/;’8Oó Àÿ?k»Õ··¶Ÿ4_À´Ã x¼w¸sô‹‰?Q#f£i8¡þ6Ÿ¹@_@Ì '¶Ý§0Gm$D‚æÏ?úýÙÐèö~°óö&íЃýöþÁÞӃ泀¾Œr”™çOö‚æ‹£=>ˆ(Èp!€”gÐl!BØ ôº:"hýò”ÍCðÀ%“Ž©w«yÔ´hAµGæS·fŠVÉÅ#Y`“Éââ0,¬CfoñÏsavÀü<9 pˆ…È÷t0Nèo·‡?Ý‹>þœO‡üEk­“Qá-8Ó”s¢ P$)è‹]xÚÏë)I‚NCý;‰ã©4InÊ ä:þÊX$‚ë@8Jðq¸MObp iãÓµ–¥ùRÔaš„LÓ™%¤ô6èZQ²Ç(Ë%ŠA[,,H\šsëhöО̨ªÂqÖw/ö×ËŽþºHÂa‚Žæ#…†Ù|MÉa1ùC@¢qç·esbØ¿j'1¤ëdžÂ0U8-º°øÆSôŽÓxZ‡I8ÒaûqÖ‰/LçâŽé(±y¡Iÿaw:î2îƒÄè:H¸uH6Ì&³ah9ûýèôãY"»!œ}âíÄI>F¢­cð¢^ÂÁ‚sνtÁ¦7J038uÓHº˜[XÄWE+ºŠR„§×ÖÙÝ úÓöy47Ì—( w Ïi#›D€ÍÙê˜=¤]vàì'ÈÆiKk¢ÏX¶Ælbb‚“œ/û¹ ÛÃþYß)Ÿï=ߌ³«FàzHjn&½¿óâÄ9€çãFR¹‚ÿ¼™ð‹µ‰uÜî4N âÊ\·ØUÛøTæš%Ú,jbµÌÜÐ`&ÌD=|Ž®Æ!ùÃÛ{‰w9¤ÒÒÔî¨Ô{qŒÖH´çò©7;,DŠ·ãqœˆ[2òO‘`¼‹ìÈ ›¾f’Y¸|²Œ6ÏYMŒk@7;ä…ÐÈ'‘œhbÜ&ç4Ì8¨¨hÚ©±ÔDØé ¿7hßl³/m¸È¢„TbRÒ‹­_¶bzú<œB'ÃI7©•“7JÅwNÞ“=(í3‰ ¥Úc!“A’Jî1‚™ DŒ%}Ø`Š“ñ}É9ÜR0¥ÔÑå&wâaÉ?çÜT˜Ê’s ºI[òOO±¾fù„M·µÑu4âåPïKú`ÎäÇø’>¾)•àB >Ù½(>óý¨$ÃTBÞ”,-‘i§”„èÈ$C4 Gã2 S€tð¿F ^axó±n#½á‰÷ Dö²5É” 8jY-tb˜ôÏFdEôf·e"Á,í ƒÚR¯=]Ä¥™ãÐŒ•hŒ#i ?5¾c·Eé›§ÓùHâÕ¯×+ ~j-‰Ã¢•F™ë”¢Ö7ˆ‹ª©ž#Ô%Õ4;… Q:m4Íø°XžUÎ[uûáÙ(NHd14çvJÏGºƒÕjY™2i¦ò–&ÇYé  é€ü–½±–RÔE!ޏ²NØMHûí’rE3†¦­H*pf/¤ò›jŸ¥/t#1Fך Û  ™fY@9m»·W¼á/œãïÃýá}oxž¼”+ç¹Æs ‰kJÎ!Åäà Š²aôGKçä¡Ò‡ÏŠ Åûr?tot¾lWôiŠåûŸÞ—™‰pÂ6˜í•®ÇöLº+é¶dbÒÎBÐq~ïËýpÇH×–3Nâ˜L ê/Ó)¤Õ „FÌW)Ä|U]Ñe4v–׃/,B9z … ø‹˽·,±ƒäÔ$µ‹¡ÒW¿V¿¨ù¯Yå=ÄÚWO³ ?â:Å@U&Þ ¤‚TwÛ(‚Ñp2d†ÃÇqÚ©ýaÕ_AS_×Ûè½^¶æÖëx6,¹Ãym*¸^Üù˜Ì^gòýId"á’c§·˜êi!xŽ·¢RE•|·‡Bd[ÛÅfIÅÆgf:¨Cò›Ú:qÇÙ5±ã$3ûaÃ&dÖ{Ü™³Ô‰¢ãÜ©  é€ü¦È¥¤L®8ðÜ'lƒ&dÚÊå²må–]©?î°)¥Š­5^ÿ½-?ím)“õ{ìÊ㜥××m¬sM1ßétñ-«O"å}¹Nؽò: ¿þNsÛÄÛÍi•ì"—[°’ny&Æ9GMd*“ÿé}¹)H6É„ôîv[˜‡3 ˆ1¿ý埲ìÔ=4M£Mä—(ö5Š™y72+haç2¬0‚áäÎÍ [Îyà!¦ïÉŠà„mPBç“•`·ºˆ\ˆ‰цmPBçIÄäE,uÿP,€ 9ùõ×ådê–@„Ì4!=i¶hΜ £€‹dÂ6hB: ¿©V i¢0!V\èÞ—ûá„mÐYšçSÓ!”íå®P‘yŸÞ—ûa*ão4!ðûíTÄ]wØ<+©¦¤#Rßþ§ÓŽq“° êAr*Ì'bI™tØMHÒÝæ¢ºÏÌ‘ZqÁz_AÛx.œm93£(:hB~#%·QxY+÷à ë¦H¦Ü–{R—Éýô¾Ü3±ümƒ&”釮ÀôEóGWRMHG¤¾ýOgqŒ›ì„ÑÕ䌊fr±Ü/÷à §ºkŠJo §qÅúö?½/ÓStNû5×–“ްCiâüOïËýpÂ9#aàŒ†aC¯dš—rgÞĦ³¥¾ýOïË_Óì3K˜ ¦ƒ&¤òË?þ¸HYa3¯8PÝ'lƒ&¤ºR>ÛòQ©û»ˆ¶‰gÓjoìP7½±s©ÅUÑp!H¹_î‡6³FŸ&„7Ⱦ¾9Ôä±S¥Ð܈Է[%Gy_A2í³O‚N½*³8&ašiãüOïËýpÂ>ÒùåIúå•é?ú¬d;•—r¶ªMgK}ûŸÞWœ“hƒ&¤zøÍÏn箕šÈ/ÿø£é]—¼[Pöà ۠ é€îÀÜ+Œ<4ûÍ^•‰1#ëD¦¾ýÏt¯Ý7qÓ{·¦_7E:ÓìÆg³fbÒvä¼ûù#ÈÏ÷yQ™˜L£!2õíæ Ôç ˆ¬ä´,/2g1>›5“ŽH Ô9°C•Åþ`©¤t ½ä¹)‹ŠÍ‰Ÿ_$7v^öœ¸ü¬™?F¥²øŸùë—"I­hS“˜I\8ò /.:·à¢bs Í/’[`^öœÌ鬙ɖŽHï‚”DOÎn ’ šÈojÖ¹”Ì2 <¬8ðÜ'lƒ&dÚÎårÚš˜öy!ßTû§y‰Ó TØMÈ4(ÉoÏ[Ì÷vÖ˜ôC: ¿ü£g”Eª(.4!à6ˆ–CË%Îû6lƒ&¤òëSâÉ$ž,@Þ—ûá„E›œÚLz$“¹²¾\»!ÊÖäĦ#Rßþg‚ûá„mЄܢò›P¿õ2®¾ôÓJN?ó"ÝQuâ³Y31éˆH~ïËýpÂ>“`&ÙïOÎ\÷õ¼8ÔèaŠŒYßöË šú06§–‰á¥ƒ&¤ò›jÃÄá‰ØãŠÏýpÂ6hB¦¥“9l+0Ç%æ|z_î‡ú¶AÒùMõÔÖ'½µ|+©¥#Rßþ§»R(ÆMvÂ6hBfÌlÍÙqc©c*‘šÈ/ÿøýw…—e8JZ“ýpÂ6hB: ûàÂÏéÅæyZ*˜ Û  1h-†ë "Ò¬3¦Â6hBøÉKÑbÑ(=&q·8x‡·e*ðßñ²,Ú²ŸâË2±¸~ßweš¨~UN74ïMYóï슢¯;.*,ó_ Eô÷¢Â‰úøëÊ2{«W Á¯&ñ•‹*¯ôC #ØyŸÞ—ûaN·+ûzIAÒÿÀ±:rÜØšå옑úö?÷Ê}¹¼â·K¶A}F9jÙízU5:RnÞ·ÿé4†cÜ'lƒ&¤é³둳ê&+éÆebÒÞxqœŸÅûr?œ° ÚÁ´MÈŽ&ÛÎöP…» D’|CŸX´W ÐéĬ*(‰áƒIDϹ“!)×0FázVŸF£ ´t;šÃ¹ñ©Á9\©g¼T‚¡zµZýæ5ŽÙÊ«Ï|¼º¢Ê7àR¯B=D\Q© rñ†ÍážD磸ˆÓX:Nžì¼|¶½!Þ+Pah ã ¶¦}M¨/k«Üó¬ÉµŸ›Ïwž?Ý Ÿ …‰§W‹—T ‘©{zç‘*>Žnu-hŒL‹Aû Ê­F·`ýÛçˆÑC¦÷ªø.+ø" yä.&¹‹“¦ˆ,„‹uHLñFµÊ»t{êµëU9ñÒËfØOØøš¨¯ Ú—ÓUmÔ«?s®ÙÆðÒÎ×=Õë(6h/œ†ƒ[möDè‚LÕ«©,šÔ;A…)v´\Ø«x ;Bºs]£¡gL4¶Õž3£ÎuM«ñà àÉp”4gɰpeÞƒ´d¿sM±OüGzç‹ûÏ‚"¬…g´Ì”Èâ »’¹‚XXäW¬<„¨q“^áêämrswFˆÔt’e• H©³8ø Ë¢X©[ÌÖq-F¿”Œid»5'Õºr3˜ "\ŸKê1*ì絘–cµ*5mèv¥>éDÛJD›âQ< ÅXLÈjƒçøà|:‰ßD#ãÓfC·•ÌLTEÏ1ßÔ±YŽÊž"Wˆª9*Žb9#X¹ÂVa­¥bZuºQÌ(P7Šž"õb°Ž/5 (å4ÝÉãTï»|†MÙ™†×§äPv0¯<›‰uª] Ý‘R_ë´Iå]^8³anÐj·ŸÑI®Š±±B‘¹âØñ()¶Å;s¤yÙmœÀkéÙœ5—]2k ÁÚ•kœ ÔqQµ‰†:©Óõ )›•,÷¥—ñ%ûäqV®X^=Eï Óh2DûJ…À˜ž–6°©ë¢[w!¿Ht%⥌hmE4S;ºÃ€å$vCaÍ&ˆL)¢‹…a@RC¼  Ù íõÑC°9"щs1½𣴹-ñ¨=UŠyS=ìL›6µ®Î*l¢ŸTPÉÕŽ-Qã*40×OŒv—u£Sîâ-Æ/3ÇaL6Ó `né6Æt…¹Ÿ=Ï1\[-±hê3ôu«—X‰—þÛëº8F ÔjgÁ2g)²GÚ;V ø%žƒl¤ §+èâªV+äìUÙûd·—÷^¢–Sõ—ñÈÔû [ ÉÃä¬QÐBºíé,²©zŒxIbJàþ/ 8AíæY“:,>œ°`8òœî¹M…à`Ÿò  ”ŸqçÒáÀT0,®=Mö¬*úM"d§‘ª~S ÆÀÐZ³‘q½•¡»To¥Æ[ñ /‰:µ/6cù6 _ñ)ÝnÙlt:;;ã¶÷е'ºîS³±zV½RgÝSÌ¿= ;d›Éyi¥^Öm5ôœÚ|z.Šôœ6ìQÔúšcm¯ˆ/M“Â…µ]|Çùߣ“4 ß™rá8779;EŠVÇ89;w)….TÍ%RˆèEíD;J„do‘Z"¨vb×Ç’Ú¢‰O$…È3!¿Fo„ÂýÓ÷¶‹ú† ³‘Î-jñ'ä.Î(<†¤dä:Ži¹°‰cSµ/.rê/^• ®(L6OÕ£Gífk{ïI{QÛ(YÓ‰bs™0ì†ã)7kt­à„î&ä+‡-œÖ‚à6ÚUõŠ]"¾Fãɯ~j4ÈU~ƒb‡†¾?‰GCÏìZŽjgµŠjµà?²±¥Ê9ÒéH€À@­)uEÐ]ôÑ„ë°ñÁL£ˆ Œ­V Š{³ëÏ6ØbôÈ×DÇæ Û\Ñ„!ÚLy¡¡Î %DdZ®žWôªðþuû à”k&(™]õ§rÒÚB¤ü“*¤["­èh»çš-I^½hÊaSåèéJ,ÌÁX†TOõ§Šóò–í…NqØvnªo±8 “T”‘A5UÂëìšf;ÀÌ–ôòMLgÃä¦Ltòy±G'B„”øJô|»¯±þVë)öó½•^GIììăïjø£Ý¨êX‰kÓî€ÄŠó ¢?M«—níèB=Ÿ^¥6cò+kxCŽÝãˆ×Akk¨‘™q#Úº° +Ó4ãžuÒ9ïO¡À­BÍb2Lš‰usÁ@Íý÷ý£ïÉ/VÚð÷ß~OMpµ·MCr›Ó€í[µ€3Q•Ácc̨ƒäP*±u#Sµ,j]WÀÜU¿dZ¨¢r“Ðf [:R¿Ä32"'\žá Ähž]çA,‰3(\qS¡c’`¡«g›Î{϶K€Xž@ŽS²ªM×I<¨×ÕEL„ê0oÝMÌèB"ø­¿p‰“³Fñ¾I9fäõJ& Ç‹¶•£òK2æ‡snƒùÁQ r€ˆ¬_~a)"-°²Ny´WGè‚ü(TÖ9ÇQA¶œz%€`Zˆ/Þ#€†q+»m›·‰1pÉî6µÍ¸µÍÝ€ržWg3 È„žbòö¤gÄ­2”xólKZA—l.@£B¯¦™¬¼'+{WJ=U¹iFòƒIÙß”¥uËì§àQäxòÅe£À¬~á×§Öʨp{Âf9dÌ´í>p«†^UpkÁWkï½JÛ´¨³Ä†>¥=@O¶›G/¶Íæ%jRKhèÄe²œ„ª±’!))“¥£_5šO_« œW\Ì×n¦Å«dVQÞ%µ¬Ï¡PµË³Q7Þk•?5Ö e¯'>œÛ@X-x·¶l«Ú–­Z@ÊXMøI?Á;ž…tÂÇî;Ö„ MÏàz4ŠªhÒ;äÁ´†v«hhwa›¹_ßy¤ð’dZÕ>—\F—!qQëbôx‹ÌܺDT–µÓcØ)³ÐPÁÑÄ›q"vðThìÿøô±,'/”Y¹´Ã X9–ÞPd{7%ÝÚ®J{}€ † f—ÌŒ²‚OçΫRO˜*ÆÓü_¾Æe±,ïlèúù÷8Œî[â¯|mÜØ_—è‘w°\õ“¶€ìt­ ;áX š»èGAb½J{sGÆ’3E° vl¡ßûòK£uål…Käd=V#ÇGÅß8q'qÖ19‰ãy&+ÍNÄU­KÍ‹fà ÄOH’™²Öг;\ƒ,8*°—S±ÌjCªÐ-,v¡«Óõc[.!$*ù!œE#+ÅžûÂá³€¤ðÄȪƸtgR™Â·ZfP§zËÅ-æ {·ƒì)rœÙvôO÷Q¿.ÞßiÕ‘J‡_¹8øq–D‹&®²fÓPµaÿªÊvÀü-¹˜<ü|Š-ÂS.R1¬"Úcá›P÷Ð>m¡ÌÌ7’gYMü5‹c»Š×›95Û޳Ѭ:è:ÅÃ$¢‘pdK ¹2ÁñJÈ1äuŽb¿ûbêœFˆM=ð‡Þ?„Ǩi»±¨°x–™•¸ ºMä”jÇ$ïí²ìtÐXתϴHœwº¢%b[Ù0E4£¢wC[ p=y@G2{º7˜¡O&²·•ëÅÒjY@ÎP‹wEÌ@LÜL†Þ ‡!'{nô‘}ºgºŒT*}‰†ãéµ~?Á×"Ò+M—¥w#láIµ[Rg°FØzz 2®„ƒ~Gû[ƒ˜õF®/ 5õ‰„S¦¿&ŒŒÆáôœž^Ù%žáøXáA?A4JÄâyÜG6ôV6Î}ðA|ÓAЧÑ#æµÝxz›KÅËg]Kaàûˆ¼•ÎΨnåYíÛZý9ŽÙ˜^’-t®Ùå‡oÝä2¯Qüλdæ¼Æ™›£û$Ç&ÄÅ¿§¸n¨h±HA©>ýï-ôxÏžü ªX’Ëñû€žF‰ó‘ðÒ>];&íÈ‚Éfüi¾SéGï´P~p¶â MõÞÂòê„ D˜ñc5?Ûúá¾]+Kç´=k›bØW¨ÖÕOJ{—õ!ÔSJ ÜU…ýí×ã êýö [,©¦*Ôjæ­R[Ô'oÌ´HÚdš—­P 8õÖ_ýJò¿ÕkµßÎ6!BZ`øi°ÌŽ(Êw–…ÍKÍ«¥nÅ\•~g 7kCDtZ:Þïw°Ä| q/qëây »ö´?èO¯7‚T3üvi'Y¥`±À„ýÌ(#PQÓ+ÎGÈ7‚v„jÒ# ³é.;YQ~Œ†Gd;}1OX;Zø’‡úõKÓý‘ÙÌkÿÎk‡«f 3‹"x%½˜SkÎXæ¶ä¦ÑñË.¤ºÓHw9¹ü‚©¦ôŽš)¹wÓ Èª÷”_ dãJCv" ĚÆ‡Å°{®¬RÝæ’Þš¿×VE€¼--(›y§‚V*t^Å÷­tn…æêµ@~›ñ §éö~âà;«â€Öq~ó&›+’ôÌ™+âtðD‘h —s²,•Úg%'«É$W<‡oë2Wá(·¼æµÚWÁY4Š&d舼…7ï뵯¾A™Šñõ„¸1Ë­²Z_][WO&Q¤ãÞôñÊ$(iL*jgÔ©DÊÙJ„¨ÃK–K¤µo.¨‰5dß úÃ>6nŒÒ­Æ5qUAŽ‚§ˆO¢¾kò#"ò¤°+!ÿŸZZÂdëÞÞóÃ[“äE¥t;3Úµ#L®Ûš¿»ó|ûù§ÏƒP­rú³tQl .š<þGWè+úÉΉÕåy$oÝH9Ï:(ê¢hm^3–ËÁ»€ýqÝ:ŠÅw&\-× ïm®©Î›Fú»˜Š\WñÔNRƒK× ÀŠ|ǫڡ%©1¡j–IXR âˆå¸@*\Ç'üs̺¢Ø ÜŸ¬_¯»i6‰°©$3é…ã±lo·çEžž÷L$êÜÇ…Bà(:…·o?ÿ'4`™êðú…ÎÍ`…ÏÄ‹ –K”›ÑÁmg@Ý¢þ~éWµòEÉË¥\àkŒU©›eMÚ¦Ôð›LJµ öDîËœãâw@![tSz¨/6ò¬â~Bñ]+ßcÔ¾d/rxï&BúŸMÒm£ï-åœä­14µÁ£ {u`VµÜn«÷¾û2w&ÜQùúµþ›ª—üš Ê<°U¬4t¢+ãï‰Må Gm|±ñЊ®š”@ óB¬»¢©!Þ«yø$ӌǷÀ2†±Lˆƒd ¿‚ÉC"PYzŽþz%¯“£F/ßÚºúsp,ð6#Â8÷DA(Ž‘ ß‹fÆãC=· d<$C…>z!@0câx†¢¹4 6î/‡~¨S£›ßš±‹Ë«¥PLé;j ![Oõ*…þ h+K-©­ˆt&ð‚·³ß¬ïìï©åÔªPûHwtá>=PÍQ8¸NúI}åè¶UvïØ‹¥»évŠðöŸîØ×ªeݤv~Ý6 Œã2º•„« ºD ˆÔ:zÈN&N9a/QÑÃØ&{TírûC‡·I/}ÖA$‡²§Ñ92ã¡YÍñx•Ó¬šB–[W”N£ '±,-+)äŽyr@4qVw÷ð—gjn¿þø#‡'u&äU›ßÂR7]ÅnÖÕO͵ó¼µûbkûð¦ÛïÂr¦0‡>-¤¸Ûc,'(~é芷£OaEÐ žné”™YaÝcûv:ñ¹¦ƒk{*åöÿ÷9¡ÞÝ«i8äî×yÿê²í‘*¤2 fú ™N€ÉiU¡RÖ—¸lÈyµƒF\@Ë4LÝ2×XE#ïnÔKjçªjT˜D/x#¨¯(Ä´ÙkhÏ (>¤ÉÑ3ö¨¸þ­fä@óØéÁiªc_¢ìGA·ÎDŽbRƒÔÿ$ò¥E¤€i>j‡Êy<‰TKû’5TÕæ‹5f6d÷%þ|ñ)#Ñ_1[ðƒ¶}zcç­àÂå¨îx·ü²O5I>$a€„q]„Øå+d2g6òIDlçvýk“|”"ô~?ÂJl©VÏÒ3%ÂïÔ_l¨± èHoÞ"´@Ä|7R~B.øµÎyFùà˰wv;ˆÈüÔÉ&@I¹TSo6êhZéÉ‹ç-¤2nK åÑBƒ)¡»3AN«þ¦`>”‚è-’ ‚æ‘t>ŽâÎ,†#–|6$”öˆÞ¶ ð·páè BÔë†náÚG}Ãè*Di¯Šúa¿úâ¥Z[ëç–8Ã9Fq-øP+–º¦ ¦övq=Àæ‰&Š(“MñªCyÛ0_³S5 ñêIGõy<ÚjµÛøP(âUÔÔëðC­STèþ¥¹â½*’Ì. }Kx(‚¥>N,™ ,Ñ p’Là àöIy+Å=-À…*÷O[-k2ÀŒ“#œ6b¹j ”£1::! £î5 »Ã·Ã×R¡’ Š×aXÅ ¦}Öí¦…ÝÇë¶e«¦;/àk£C 7½.ôXtƃY‚ÿ°–¡ÝªÐ*èž:ˆ=E1?|n 7ž›Äй"î` X^pé6bЬˆC1¸ ¯:x¡Àž?üå­ `™…ÏÀp;ž…¸òP^ƒ•0HÝâœìsLà !9ëEFCm0`sEý„L}¡‚¹é»^U²ÖaGàC|*²ÐÄ›H #3û0Ijš0Š”é‘AR ÿ“¸ÕÍàýœ; ÆÈ…å8±²4“é¯{“Áõ³ˆI1ŒGg“hð§1)*(|Jf#¾IVwŠ5àåó.ô(ËÀ0-¦…¿øÄ×#rCÏïv‡Z|6ú$Ÿ±Q,©„¦WÎl^'8Ãßw8@Z³$d¹ÂÃçfóñ“aó@>Ÿ}1!qÖlW:•­v}ãç^3jGÞ¬çd¡ÁÒs?ÀpªÞsâ¹t'Z<ï:×ÇžöÛÎùx|Ã|ËãnþtëD¶ó&ºÿqçW*^0½N=»‡ñwJýL¦°OQ#CÌaöï#çœZY˜sž½ÙR6šÊ†ÁÚÅb3öÖ5¢Åõ  ÓÄ1°Û¾ SGþs=FÏÇzF÷ùUÐÊå¤ÿ¿Q ¿Åõrö†eWÝ–}µè.ö{7šZ]æ-ýq[ž™âÁ}¿ ôÏEaÃhx XEXóéÓõlûÙãÆ“Ó" b>€Ô¦û=ц]]›à¸¾0Û±!ÁxŒê +n»5®“ZØ®Vüòf„Wür.Î{øçÉ ý3…/ÄMq”.ÏÎ&›„Bä:Q>.ê”ñÐcÛÿ=äøwÐD~$AªŒ'þwâIFÄeûVŒâ3kœ4*{¢ˆæÎzyÔ6šñ¾Óu˜Gb^@ñ9n“ÙhÄ/£¢Y¡÷¸~×5Sßsô5Ñ0ÀÇ;õ‚µ Ø™’ G÷?o*ªVäáòÜ M +|gt¡Ý‚ˆÌ-ŠŒET‘Ú)/~èõJîWþù­3*°#´…ôÃh»È»>ÉujNQŒ8£¼IÚšh>‘ž êdÙ|üöÌù•}—t·Z{{Hú êTæßX;y6z3Š/G¦ÌÄ-3¹]™Ä-“ܮ̅[æâ†2™Ž=íêR`L¥3±7€qó²ÅM‚âÆúð_Nc°™OñþX˜”…cþe›¥»A0«o\x©¤<°ùð`!^DWõ³hš\'d²ÖÀË$Ý4lº¸ T¶}:)§ùÓ 猟$ÍÂùí‹“At TNû$évãÇ ¢ êQNûtÒœfŒÁà¢$¼ˆÚ;OEø³©(„ö{Ú‡Ûû̓æÑÞ»ÃH´eJe¯l”Ù¡EéXß#i#/l¤}3"  ¥3¢ÂŸ°0 £ùÏÿiÑ{Z;]V OE2c˜£ƒNˆÌ–W?FÑ6Ö4n\‹>L§“þ˜L?¹Öô1}‹‰ÀÌ [º6ðä™Ó Ä‘€–d¹ŒÄ4á%›‘Ck°1Ú=›Š˜šrEÙÝ5QÏâí,ž²M89KôáFRä tMÃ*J¤„)Êô@¹gä|ã’M‚1u´ 8Ç@dwglÕ)ªá˜d6F7öŽ(ssܵ±æF6j5'n↳dÚ~ÃÝFõ‘‘¿ÚÓ Ù)ƒµµ¦ÖyeI<»íÆ¢ç$;èÁULè:óñ›Ìù€%w¿ÞÜHòdÅzÀÓ.«o1•=P6?¤òË?",a™ÍßìÄš  é€ö<˜nÀÊqiÅñJˆ¾ìS¦~ ª`™•¥zéXþ•Jõ³ÂIÆßª+YŠ\Ó0Å¢svòà¾Q’ê¬×ußì¼Âk^a)¢uÝŠ™øk:™Éˆ´¡òˆZROc1HV!;?¸rYdI›B#ûAzu< ¿»4òÜNq¡-ü£„rû…nÃ0JLpr²ûq²«å3^h½1/­ž-š^N+ÙuBQô'šœÚ¢dÑúbçàíìëXø;ÖâUvJy4ð_N†µÂŠ3oª°¢ü òÀ¬+ qLse§ '”r˜u(*†7¯ž¼Åã/j:èÏ»œ•ÛØÔw†LÒæû¼kóK¬mÒ+3¹Ó" ÅÉŒÞXI¸´?-u+ª3ˆÂÑl ‹{8ŽI¾Oü÷‘VUŒr|S´ô7k·‰ëH—_ŠBî‰89š –K䌀ªa%lÌ Žß¨1M–쳊J–/ðQ¢ß'Q¬o D`úóH÷Äêàä{å·øð"yA“C‘©]z Õ(ºÄ£±Ëk’9šÇ‡[êam­äÕ*SÂÑòäôá Ds0¨±34Ú}”5D:,,Þ)Óí­ ·ý;^€ƒM‘ó&¤Éï”GèÜ äÃN$<.éi }õÔ够!ƒ›ß9Ì?Ê›ÉÑ4òJ*Á²=×ijØÉ2¬?ÒiXäÎ]RÿõxùUXýßfõÚ¯%°Zý¦M®Ák+èÝoŒO6õé8ÏCnÆŸ¬ö¾B7ïÑà½9zÒ>c³ðt-çÝß'SÌ> Ü^ÇõHÝø>y'Hë›ï5öpÅ=lÃø­©ÈÍÞh€Ž£mâãæáíæÁÓŸ ™Â‡{/ZÛeßñ¯W„ËKÖØF¾Ó ÌCvJ¹ëÃKlã 2é’1Э ÚîøgS™'ySmJ+3ë²ìàBÊ üC´üRÄÙ&»üõVeÊQ<.tÜ1,Òcrªw\®¯5â:[ônÚ—jK¡þëmªi¸°Ìèi‡ñd”ï‚'4¢ØcÃÿ7bŠT‘u˜ÌNáˆD¯”¡«­DÏß®ù ‰H„ác,ò[íSˆäœÚRˆî<úsY8ÉÛi`š3ŒÁ‚´„$ ®?´iOÜq:}#t7I Èh?Aº™€ô§3ÖúžÿæoŸôí\ÌŸ ×ÕLȃü¹xž†u˜FzpËqÏŽ¼»êú©)Hîø­Æ^FÖå©çÝœsÆØçÜç´ '®ý³Óg µêX"Ì } vððçìÊ)äçgÃ~½µ¡Ã,_© Ï|Õ _|E·„3V-}ÅôCÅâ 5†È?^Gºl¦AI­êû­ôƒo¸jíKµöO9¸™P2Y%ÛWÀæL3èµ’3 LÛR«AàÎkÐ$jïÐgà ä (8Öàa"kkN=ÔGŠ®Pô§,˜_ç„®» j%e¼œK¨½¤ÕD<⮿Jbê|ë2Üä÷‹–•8h#Ó æÜý,fÎ Yᓘ{Âûiûàpgï¹Obî ïðè¨GÜÚãO¶÷÷Ž€&îž0_ì:Ðà«à²Õv#¾;@!½À$Ñ}Þz)}M5ÙLɬÖ,0äMÕxõ î-MäKõ§è À‚ê‰Ç¦p6ñÒÐ!Å'“ Û#©ñ™²嵯ó½çÛ^Ô:Gy'Wkïù“§íãmפ6&!wÎÈ¥ ™8O¬ ¹Í lvF‹g‡ ÷>Žâ2SÇ+¸6Ìø­¼E ÙBéÊàÐ1hWÊáèËù£«/¤"Ö ÌytLœ›42tŽ”²u®‡ÒrÝ?k¤Àúž½ý$çh¾õÍj‡$ŸIKLĦ*Ì¿HݪàW"ˆê«š§{¤Õ×k™”c9ÐÉRï­ûDjž8Gìzt|Ù-mÌëÇÜÌ(“¦|¤‹.=Ú×€îÏï{€>—µÏhdI”X<i…nÌAR°ýêŸü¢ ýi ‚SLH-5ÁK¬®)&†Éói˜œ³ÇRî„&²c]g1-“•~ 4ÁºdT<Ñ…tŒO¬+Û™NkJmýûéþ¾Š†³AHŒ$|GŒ5‰Î †=aÖæ/^§ùvéöæôë —q¾WÍâ›[@/TƳ6Í^—ò,©×RÝÐ÷ Ÿ9ÿ ?àÑl ¹7¡#¶Û á[ņaq ‡oX¶Ú,&ˉÄíò_ï8ÔÀ÷µ®ö¥ÎÀÉWË›h,gwˆª¼Ì¾âǪhgæ‡úO8Î-KWF×^¡sõ+tÅ}˜ïáÞÉ;Š.mÞE(_Þò€RR`Mîü¬æê'Í­msôÃhÍ·¸+ªcÔU–HB¡àXéLIO ŒæMÝd6Weâ#€Õ:tà¦gzC3X*È_ú8&&3 çvó@·ìXÙÐR©§+¦døˆVâYF>XRÝ~íäÄ;ú%:÷%v›¦ä¯-&ŒO¾XÈíËÆ õöJ9õP©*•Eb!‹ç ÆÀ+jÄ”7ý Ù;G¡¦óptuÙÒDfÜo:½ï gñAþøð}eò vJL};YܚĒÔÎ;vôãÖ ½÷ÊÇÎdë?¸u÷‰56Œ&ŒÛáÛGóút‹bÔÐ;´£3›LØ Ad€²\´ãÆbvÓ÷úöòƒÔ>>ˆç‡öEŠÙ7.‰TpÐ?ÞàÇ!Ìa! нêë÷|=k)ž¡F"·xÛÏÂrëÌ(¨ì{¯*8,eÿå—_=T“IÊÙm€¼`g“ò(ô+ŒÛ³Iع®YêÏ»*CF-Î8RûÛ ôŸp¸{¥ÎÎ&·kŽŸA6ú3OâaŸý›±k¡ZvOˆÜüô} þŸ 7tBl̾Y×!ÃñÉdèÒ—%¶”AïÀèzÍ»!™9GÿNXÇÏPû4îÒc)_ºù!Á¬”ä×§37JEtXÔþ K,[D‚º˜ÖRÕ¤²§;“+×4E[2R.Î3ô’UÔ30‹ätQCÖÒÃí³Ñ¬!T¨_¬ññþ4¥HYr£^¿¼¼D?AµxrVמbê¡ÈW‘KÕ¿€ˆ+j¤io7µóépð±Û…òn¿<ßÛ?Ü9¤¥š/Û­½gûÍÃ]–ßv³¢öö+J>®¨WÍÖ«;OªG/¶_{1Oš»‡Û¯Ëwkû°u°³IR |“1.%MHèMz+¯m±äÂTž”ñ(ÍHÓ$î¤aŽíª.ÇiÂ2gn9lŸŠ±¡Ôƒ{9'r ‚[€~"Ù<R€ÚAÙ@„)p4éwܼV„íaK€F2Î!yp­ü²ÐYÌþ4õ4›MæŒ ¥{€@±WE·eQ˜ üˆ rl¯7á·‰ÍK]„l@…lD_¢ !Ñn¢ö½…h÷„ i÷C$Ò‰&øFoG85º$ ›¸@qÄp 8ioù/èÃ…).é:+æ½lóx0*®Ec¥ªÜJµLÇz–½z\æd”ý­ÒùY>³Y”…œÍÃ\HÈËûÈæ=£¼g$š8™“ý[ôÔm Z€Ó @‡2ñFëvûìøyp]áã-ËÈT#ºê‡zJDukÊ–haêôbaú‡v }j ?«fÇxÕŒ1JG‰çY~véÚä<ž`mRXþª7úw*½}žªõ9¾§Ö—®èyNEùù©I±TðˆÇ·&JºUDÚVžØåã-Ú3pàVx!¢0×%Ós jÓ¥j´œÓž ñ—R•—ÈzÛ‹“›Ô'µä¶–¼¢–ˆeS"X²‡õÜm³ÙÄÄì—<¤ýêËÚÚ?kÿz]y5˜Âúúúuù†ÙìT€ÅÚÈ÷iD#Z»]ÝÑÛ;Õ}vcÝ4*·®|}.8î…µQHÞÛÈ¥¹ +dÒÂq4g÷ÜTñªT|¯ji+¡}Æô.æ…åp¦iÛã¡IrkºuÏá°A‹Ò –Ë‘A¡ø-HŸ˜Âù†Ó)Zøoò–õÜ÷ÃnÄE©!¬Öû÷ºõδn”>ì*ætt´ÚYBXBNùàKï÷”X€Ndý7ü ØA5‰AÔ þtÖ‡öoMÂó¨?„Ó'FIÍîE®édxÈ`ÉáÃ6]¸ÈÞÃv¿M9Ö‰âžÚc™&G[u`Pn}Þ³Ó©h‚·n"íµ×9ûŒƒu1ôC `àŒ¿\z}”@°êjB,Ðpìî´¶ŸnËÐ8ž ;è¹põkuÝ?ŠÑ‡z4¥ßï#ËÙ¤_‹º³o‚d¬oÔµ>q*iQ‰*^… wdfÿƒâMº‚øGýé”YÔ¬µ×íφ¦Ô$¾°ˆàösÑGÓ Œ£uÓaÖašÑ‘ÆôMÝ$b³=“ 4žn•q×.°IµŸTLeP?o¸p2 GS ˜‚%(„ØÚZ¨ß²F£‚/Ýp½£˜»’úhAº Ã8øã‰ýýƒ½§íÇ;‡@ÐD&ÀaiúþÖäý3¢f‘Á˜‡°£Ž lÄÃ?}8¬Q•&Ýa#~dúޤ–AlOô…lù¸Fg#m&$T> *‹ºxÃ(̇Ú=£.c˜SfÉt'áåˆ+¢ziTñ'â@R =B5Oâ¿É yHF;íE03–,§‰hÇ[ʰY¨áC¤%šg;ÜF«a6š%xMu•9 s½ÞȘIväíN¨i…¼Áµy£GB ¨88ÕD-Ý!>‘"ØØx•¶V<ˆnB²ÜL†hဌ®¦×¤å#2Ô‰ÃÙ`Ú‡f±tWí¶‰é¬T·ªÎrð7Ø'šW,m²È¢ûç‡GÍÝ]둬}Çïâ\Ÿ,÷3lôg˜!€%ÜéijkÙ£§ð°BÝŸé$$’*„@ôÆ&‰ßHü3Ô£‰…XÍ“î­ÕÕoðÿÖ_uZ¯ë(…†’‘´ÙñÃâóe’üh»»4g‹“uú•qOK»ír²ÌšI¦fè]‡"qâæI†dïðÉއ­=µ·u„$>ß`6aÜc8ñ€bzÍHá-ƒÅ->ám`Eº¡?µ*™Îz=D¹@Uã”e toÍU¨Â„c|¦7PÚÔÀ6­b•”Àû½ÓA©«NXŸh˜kSI Ñª&ÏØ,žzQšPt;¢4®’;µ´a6ù石Ú4ytí&ãarvXåØð@=>[ ­Y@ÜzØaáOÁü eáÅtÑ,VºÅPù "ܶ½ãKtvòAí X5œ+;töÒõ&ý‡}©­Z5Ä€ßh–ðÉ:°ÂƒÜ| ÛÒ| ÝËÚëˆS1ß·^1'Ë}ëáÄáÄ6YˆýÞM£Rí,hbád|Ù=©»p fèUÆß-ÈñƒK°Óô–ãvyMÿíT²è•ì Ç€nR–.J¬1¢¨ÿ5¶DÝÕ hk»Á\«0w[lxÖ ôä]I4}Ÿïª_õÝ,LÙ›HjÀy1EÛhpÕ¨ò%AC+Ì<Òo´‚-Yî6Äq' &•jEýPß Ì¥¡bØýD[ ?C£Pk"bÕ8ì¼!KgÖ±+×HF¡œuÔÛO¤<›(èÒÅLl?r»ú,E>,µÌÙ &_áÿw·(§I´`Œ¯= x’>ëõ€uýÆÛ%AOÑÀãÅwp¿¨B—Þ#ŶCv§Goa’OVg€·1*¦#&@¬#W'µd$bÍ4ŸÅ‘Šk”Šï$ê=\d²e™áéå¨Kn5š^9ŒpK¡ùµ¯>„Âw'4µ}cºÐz"Hè‡4Lkï{Ôæe=’ÓÐpa{Þ[N3pe┄§I<˜M#º¥`]֧B"åÙYî’ØYá©~~áG1~™ÂÛæ ×(%¦ìC‹ÇL žŽ ÇKÇÅãÏK(&†Y_ Ñ”fyHÃç·Zæk“®c’Rú¸ êcuüà†êˆÈG–h)·ZdµÇªX¯Äœ \ጬbk 6ÅéiįÅ/)W ¯súµ EŸáÜ:ZÝ• ¥=÷Ù×'Ä%Ú[Yˆ7òë! gm²)¾Ë%j<¯¡ýIWÕiXµC¸¬£û>’-ã²ØŒåèÌØ"a+žI&;!d.RrmgKvŽÊ5²Š# #~ŽçΖQƒ\Z2‰9DC ¢ÑkÉOÞUXàÁḢ¨9sÀ\Zƒt6¨,ò¢_ª Œ«»SÃót9&^! ¶¬îÎ ƒ°çÛ d…—Žt:ÌF·ßÕ—z ®œúnQÔ l¯&”3©2|¨ö@S1N1¿SÙfH° ø#2 äõO)ºf^FZ EØ4\ˆÄžfaKEý^Å^]àBRQZK’8Uèwõ²QÐUª"gXÖ€fy|µIÉdêZ‰,—Že¹È3‡ã©ƒFt„_Ñ¡Çgã6.%]⢭¢†@jƒót!¸p’he‚¿éÇœˆw¿|s³ñ–M­îÓóÎÄm´Ï[3Í븠ü¹úí7}àÍPÞâ^pì ²rIý{fq‚Hþ€ Çx[îšM5hÂpnk0±èºá*û†@ohCS¢¹ËÖ1¯ƒ®¯2ï0’œ|°VŸž?d±e˜Ów¦y®³t¯ë¹´ôó¦Ñª`;«EÌÂfñlÆt„”sÄÚqi8ko– 3{ÛA%k9©¢ö¸ßm >¤KaI0Ú(.¥–CþEP©e=»ª¬ÐV‚·ø1óS§hB™k¹C¶meÑÅ`:q: G >*¶ñxm’ÏýÂчµa[*@Ù [ÄXO帋±U%çidLj•õu£©®ÛƒA-Üþî$Û+ä‡Í³ûÖi§¬äΙ}’,ùs_6¿hÁ™nDÔœ€l­þ(¤‡ z‘L˜ØE$ g·¸+lŠß%¼%ñu¥ *jéŠ0cúâËè¥:¥èP?Ú“ ºAÆ€Aoªòˆ‚§í$N’ª¸Á$Ù‡ ©s z±œ†›Xÿ8 y¬‡+êŽTþ ¤Ü·\.½xFè‚&#Ìî[w¤4ærL™ÇÍ,¦,ZwçáÉrI&ÖõÔ{gà£8 ˜c´ƒ1êiZVÅ묿ҧ2uܼ›0̽ʧˆ?œî,â@ËÅ%î`û¹ÿÆ+óñŠ7jŸ2ñ¶O~›ƒ›—ȽœÎص“õ<ã¦ý¾¨&m'ÂÖ T«3Ÿ2}÷ÍH¬×ø4ц!|І qèê¶|{ta(q&2©"™'Äç@&4…®2Pâ%dn$íï 3y]B¦ŽãOSŽ;~k^Çŧ)€ÿÌc Æš× Ý—-%_Æ7ÙjR¸Ï‹Ì ¤aØ­ƒ_†«ãålò Í—²yöãÖÎAÛÙi9ñKÙ¤²Ôãñ´žô.Q,åÃѪíà±9£ʸŸ(‡åôÝ^”9™Æ¬Û½1Onzâ7 ƒ®½e~ñ.qw–Ñ•Mûƒ¤¬J,ƒãç¹)™a:ýamm¥lœu¥×EcQƒM)yŒÛþbÚß<¼[^ë|Äoæ·«ju; 0Ó!6Ù‰œûèÎ 9ÿÉ]vÝñ¦î¸ßïÕ]êý¯xu÷ÆÈb9˜“Â<½kü“>œx~zO f…—oÔÿŒðüǘañ]]Üëv.e?1zºùóŽ(¹ô3Ä78õozy>½Ì£¤×Ö'C*c³Š~3ƒù³~÷­KË"µm%îw¾m«T'pEðÛǼ¿ÀIñݳæÛUdF¾Ç3"Q@ÒaTù'ó {[qÊ•—™¼UAÀ{Y×磻þE}\Ì“Ô_ýê¸æ¨·ëg¥×Ñ«3Û RhIêþN`­STb?zt,¦—ù»ÁêÉygÂFðà{êBéûï¿ÿÇ?þÑ1hðgI[m^"·“¬#a@;4ÈLœèWk¯7Ô6ºÃÁA†!,–ìŸÚ„'ãL GŸxà>ïQ-޳:-h#-ünE'Üxm¸qÁXâÂeàߦÈ(ÖWÔë#ñ¾™…Ä/7¸º‹‹ÁÁ¨cî½ox†KÐöQdzñûìd§‚ýug¯`i'=U›Âp8³0e–‰6È­Kiî[V-!âSU7ž6jΖ—ÐfO·¹ÀÙ»4¿Çë oüt±¯­*¾D$ôRz´ÓÈ}‡xÇ9Ûœ³M9³Ä(ûó¥œh0´˜ShSÑÐðM>']k¨eÒ €)-«æ³öÖö“æ‹Ý#TL}¼w¸sôKc•¢â9ékÖ ÜÜtZÌøˆÈËÃh€‚žÕÁ4w·AÅ7É¡ª†¸Ýh§I©6j›B÷&µÌ`”PáPâãæAqù§r9€Àª¶…à¹4 ~j¬‘6Z7îOŸ—±X9¨íÿ°÷ü— ¥ÓJpD˜®¢…¹2·èI¾ØqcöQÜ—ê¿ø,gève<Çm ¥ð¨ÂÕþS£„³S ”·ö16o/@F7*[ÌË“•Ÿ ɶgíÇÍÖ‡»ÍÃÐ7‹}¬. Ô‚×yj#áQ÷Á…ª;ÅeÎ\fTzóµqP°Va¢èü ƨ” ÇÐñlJ0D k$’D×¢I4fù¥Bu§VÚ’[a‰ h[NIDWQiy8@ÕµÎìžjµ/‘'bD.å’«Jß™s*ؤ÷íã‚oˆð¸ ¢ktML ¥ñÚ¤±hÁ¿Îõ2 |fZë—§tÑùÙc§-K^Ë¿)ûÛÔ„NP’)~Yr96‡x¿‘£,{ÎÀ«\ÑFÓþôZ ¢ «.NâI£QúÏ[€+ Pçõ+XrwrÍ¡Œ[ë’CÝ‚uc’q_"&ì™é«%Hò ݸ4[»{­æ.:ªƒ;")ïC”• UJp5{ßÞC›/ŽöPaH0ˆ(c›"B«èàœ"ØØEÿ°ÝÜÚ>8ü1Ò9¬åhB±¾çOöä¨Å`N!¬}Haá ì’ÓEÎÉ›ée8飀}4Ÿ‡¤¤Œ.!À+’¡ÖjßÔ®HT9"ì@·mÔ]†rO´Ë„Œj²£n7;j&?ë1ƒ>úEÖöc´µ4 S×ãT__][¯®þ«>LÎVáßÙùöƒ€¬= D+¶Ñ²ç²ð”ʤÒý3¯%äQ—ps0X!œœ½Œ²SãFötÀ®2šûª;Aï×e¼H’œä2 ¨Àò¼8„,W>÷öâI™L¥ÉÊo>;jPÍs§åôï ‡|"R—¨»FÊàÔ–KToب.“þyrNW¢ë©‹{erðC…h}íeõ§x ¨jâ;ø­BgQƤµ âxLìô׬ȅ7úw>»l³XœQã )™ 53 7õ†Þ¶Qzwn£³†Yó\©Î¸“nu‰µí§è~ÌiPƒ1R1…b>‘ÙS¢à§s^A¾›ó€¦ïÃñù’…‡’ðÚ³¦ ™ÅtÊiÓ-ºÄ&flÔ :öö~Ü$‰l@öÚG6r EæHlk…èæ"™ Çl¢o¤PH…¢I–¬þùSìrU…ggäÜú‚ýª¸Žï8a–z65“£¸`LJ¨‚³ ZÚ‘4O¨•ÝêaWâQ¤ôAO©Kk«_¯M%¤'(ñ ØcñV¾èãr*J³#3hVÎ^5&pµh5/¹4– W;#« ¬ãO¢ô4\ÑÕÎlã`{³¼èF#Ùm‹ggçt±â;4=@`¢C“ž¦Íi]&Æçëp•¶Ÿo•‚½xœ|¿`#¼¦ö¢ =ÙH7hs$tLF-QGËØA bm¯Ñz>«ÀEÕ´”]©Ú+AQmÍQœäjáý>«… [ß@¬PžF@fô±yh68¡sF½[C¤ Û eC¯äΖ.AÐÞ€ÖÒÚ„1¼=P¡ ÛjÃàU˜btõ`m$h ¨~Ñ.kãóñwýnãŸ׿ 1š1Ň ÈVÕëé{AÈl›Î•R¯ˆ­9ýÁn. '”‡ø½lÖrÍ2 ý'É@6a‡ÆéÎ"­€,ÐIï FQ_Dz¯›•nM0ß}yU(6[­íý£6œžÛ;{íƒgV…®®}’|mkÉÚgAFB4ä_ŽÌ½ +åŠ(œ[SVÌ./áºsͯÝl¤V¤Êò‡ó˜ï¯é&nGóþãµW\áU™}lç”(*¶´$ô!a‚í Ú„]@ÿäÊ(´u”÷Ȉ0ñ´„Ì´“úhúq)U°Ý4\ÍÄÞÃí3¸¶+0׸œ]ÿš²CËÆ`bm[c~7åŒÖšÈA‡m5OÏ žXüMç —ÎŸ§@Oo¾ITE$a£YrÙ›JÝ0½€·°Éäº6ç ò7ç)[þoÎÓßœ§¿9O¿7çik{®L ¾cº¬ò÷p©@É&kÊK© ?ï ì™™Ílew-fŒDG8ÒŸiîRdÃB/‘:¶$Ê}-³F M6Äà ÒȘÂe¦ ÌŠú* bƒñ ¾»Ñ}-%%Ó뫺2m{Dï›Þÿo,ï!âÃqÆFa©@ßäD¥A—1ÞÛ©Br¨Bißà¨6P ¸³ºf™­GÎ1´44Öà5G:«%b.šW:ƒ6ý 6ìùÊÅ"Ú´Spl¦óXæ™^ÜÜîʯÄJ§•rº ½ ¬‰%õ<¾¤Þ£Úv^ï?<¶Rp^rHCF«5=H=J%;LF´ëöƃo~¿•ßõší»r»_8.ˆïlg ·Çç«Ñ!ºµP3ØÒO¢µiŸ;qsËÐ,$k_ ÄQ纊Ò<|Â.¢nl¶.pk"'§¬Ð:ލíü¼¬0æ(Á@6¤S}£—Y „ ¨ÕG¶<}#@8ãF ~KdAæ~- ðm:ðÍÙ n”–œÃdÂX?/Œð/ìçwPý:ët>ŠâÀùÄÄÌZ­ eÖjå ™µZ Jû[Äl¾ˆQÞrûd¤Í …E¯ÁÁܹ¿ûqƒ«#uÌpÔŸ§Ö•^ÌSœ#hÕMHãž8âÓC ºÓMkz0ƒëäûUܤ½…ãõIá»GrÚš§²õaÃ.•\e­?{ähjaµ¾šÎÓß*Zy*Zz©Ðúp•³ *°˜Ø#ÖY£ånþw+Šï®4ßG"ù>9ôþ7Å÷ R|ŸBÿK|úÍe..Yˆî‡ þÞú ¶¾ÒJ_í Ù鄃bÿßA#rÑ&n¨‚1²‹Ð?ù2(îˆÚÐJ¨ô%óRÓõi ´ qÓÔ+ IvqBuŸ±l‹>NÏ+ÆÐ=‚_¢Š:±Cœh_ãÏÁntÞïMu^$æg µêQ?£٘ͻçšõd8BÛfè*#ÒæìÅΊ|‘9Ç©öQx $!¢Ö¤[Ú¥U¦+û§ôä]iµðÍœÞ6¨¤€Ú4J«ä†$[¬ª§îhvç¦gõÝÚ%Uz_üÞê€þ…O‡EíˆË”kgPƒ=Akþ”§ôCuYs@ý} ýMf6|þ¢û„¿0žÁ‘ðú`\e8a¢72çüŸT–ÿ›eùib¼>-óo¨¼>¥uìÿæn~dî¦X–r}mȰ¿»ý$“¬én`ôÝ{é²[Ú˜×ǹ™©ýië屫`Ðr.4´û£!Ô88>å½A|V"ôBºÝhö‰ï‚ýªì³kXV›é“(;Ëô²l¹È×SµlWnqŽ8-ápvJÀ2k”îŠà±%È16zÖþPõBURÕ·ò-x§ gr­eá¤Þ¢5Xª°¼\äÜmW¸Àv…Oøçx¥,à¨ÏcÉ.Ö¼4›D M%0é…ãÂñÂ!+:¹Q„ÈG@:Ü{Á¨ËbQzA?ËjÝÚ€Åg%«u6Šß¹'«ã 2:ˆ„ì`¬­†ÇðÌŒŽ8¦]ȦEͺŠ…wIÅÉðü×Vß–< ÊmËš ¥©›eMºFÜ”¥LMõå–‹ñ6Qƒ††{®$ÃÔsùÄMx/HV·L4(«F‡Òé…Àõôäd¯Áò¨A4 †!¬ÛeÀ§ˆ·qݰ¯¨*x¯.qQ+¶M‚št2в‘©<²¼m„ kä¶ÿÖº‡¿<ƒ Áê#ÐÈüÑäÚÕ!)K:-›jÌ”hu'ÑjÆ1DöžÄ¢Eÿ£ÛÏFì<‰|eè5˜°l>Š{"`¿Ðè}wFò‰ –KÝG¼SË«!Zr )¿ÝBF<¯˜/ÌɲQmQªòìÂHšc‡lE¯‡W¿ª×+õzéDkÍšÈHdâLm`2‰pÙau´lC´ÒG/Ûls£†¥·é£Ç=Ô¯JpÇo 5“Yoz½á>q„Ý‹p4E¥ç¸Gukmgqd—ž0œ.aQtîÜàԻÊÀyZì‘èr)OÒÏ‹{>îM;{C¿Z0Äš»˜bC_Qè˜ÿµþ›ª—r¥©Q„ÿO¾#þë_ªàÐ4â{\(=»Q“ûÜïËê¸ÁÄÙ]ÈæÝ%5*rˆ+ñ·¸]y Ax/Fã™,IÇkRS¶…·u´‡¬êdQïÊë[¶9£ß¸\̱¡œ\ý{ùÅuŸ£ Nº,¦|¼z¿À!„r^ÜD¶±bviÎ_~RçƒsnpúÇ`V¡@V§|”L»ý¸vþmŠƒõdgw[­ô¿ô`çBdÁzdŸM U¸,”a… ‹«Ç“»Ü+ãÞ걫mü"¹[óò¼.¯V@-ߎ9ßÁtgè ÜYBHSãUo2AÇÑËl ´6{šE‹sny4AÌ-2ÕŽ]ºþC¸W q­ /ãm/—•_0×ÉD¾6ßpíßïïÁA&¶ºÚR­ž‹XJ2±ñÆ.üÁtÎ{ç¹"µæÙ·y]°7xÕ>´í4-¹É,†OéÄD8æRc.±IM[ïFÚ|‹½ØwÆñIµŠO¨@GÝã5‚«÷5 ’™„Ô¨ä¤/:.ç\ŒÜãâ¹u„Ýë ’[hž( æ¹úcòÔƒVjzb'xúŸ¼+Ÿ,Ê¿Üá£ûõg]üæ]Žü¹ëõhóO¸Ù‘¾ñfȽÁ-¨v¼,w!yŽ^pÿù«1^§\<“¾O}”kT­èÎOöNs?ãQÈ9W*›Hhsïñ¿«'"ö—eSäô§á­ã'4èc¹‹·'æçA˜w øÖ4>•Ó`©ßA²j·¡­v[ï;hÆ›ˆ` €ô{ N ”jìà*f¬ªïøf½9 ý1𬘥’Øb™^¢Ë"‘¯³óVlÞ°7ЩЂYØ>¨9 <›)e÷ÌÏÒÎyÚj¹Ã„Ÿ"d‰¥Ûlï¥Q|Çz~ÃDÊÔ‰üû!vþZ-‘eKTõ6÷]¿ÀBãN§}vOo‰ÒÍNû’h»7Ïx‚ݘ@½\r/Hµƒ¯JÆ­Pe©Ú?’»ãfrÛî¬Ý±hõ©öÀÝû™9ÌNmðÀ›™Ÿj·ò&æCqÙŸ]>oÍ™¥À§fÌæ R/=Å5ó1bÚc¥F…>j„è¡a§†¶õºe¡´ä¬¬?¤¾ŠZAiâ2A㨫¹Ûè‘B]È@žLÕòEeŒ ¯ÀgÔFHƒqÇ[–ì8WËe5'Ø>û½Ã'êamUµÐÄ[Õé ûŸdâÑÕ,™Ø `SµùüpÇ1»¯$RƒƒÐ›:Úö4ž^Q2êL¦pÿbI)¼n•ޝ~ø¡¤Î£+ê[ØA"˜B|?&$C}t%Út*Zß°Ô.]ðf(¥?Âi4¸®ÐÃ+ŠËÑ!³Ðè4ƒä?º„pUº*±Û g]õGü:¢ÁVÄ™DÖ'ù¢ívYî-¼ñmAý¢uV@"³I?ž%PtiuµôY*‚"wp´‰ã´o\af!¥p2 ¯¡©ÿ¡,Ú¸ça,¡Éf´#²´òå¤wWÝh¬j{çä´ðº€°ðÙÊaâk _Ÿ±¼pUÆIï!îw®÷T†ZUß©5µ¡ªk°Nqì<~7°¯¨­Í—4 ¹ÓΓÙGWÄãAˆÃ8 ;“Xa:¡uÑ„ÖÌ ©VLÑ‘"/…¼ gœ!îIžìí-_•qƨíWƒÎW¦í¯01,cÓq ÝÆc^:–iV`íÌPóŠö0oì5õ—WzeΖ7ßÛäu7YŠsŒ‡ý JÇ$TÔlÔŠb¼²¼R¾Ð_Y¨“³Îf  àãb3EHé·DµŒ CE­Ò "†_­¾VȘò’×l2Ì\BLxcˆ%Xë®úvŽÎƒ`v8œˆæ‘÷Åqð Úr­Ú Uu«ýÃþ‹—íý­íD¾ì`d{ûåÑösô©tØnXøS«ØÉACdT]àü~!_çŽt™fñ‰™’ýš]¡Àœ¯x6çZô©¤ct ^RÍV»Õlý°Ýþ©¹+LÝܪˆqxÅçÉ=¤üFìJ(ê¦é¼TÒÌ@„~ݳ¶ÙÈ8I×–J²µ‰á`ÑyOÓ†8÷kKÞP.$t%‡n±@SZ„ÙE`ìÚò% Uä¿°YÚ¿tç>Œg3uáD›’Ayè4žcЇi|FYnÉÇY džo³(Ûñ§ÂꜦ ¨Ý3cã†Ö&o½#º„øY#Q^MÈa š5*øÄPf€=Ñã  Óv«½Wa#úF]]M/ÑmŒIGjˆÊ[yóIDî™\B…¦¢Hå«ON‡T-faW&•â gOXË5kz‰±ØÉÉ̆°¾è¶ûxˆ®©õMmQ…^ùüõÆkŒ¬;àÈ,jg[¬;‡•Q!_¾cÁ2Ô/oé§·9m›÷ÔÆUß}l+#*=Ö\netœ#Òm‹g dYiŽËŽ/óõÓ•}mÝùœã~¢á,B ˜‘qÓá´cŽSŽTŽ4%›'%|„VbÖð–uK*Fƒ‡Ö&)Kt&ý1ˆÂ=²óòÙöÞ¸PShãõ8†Æóoµ$Ûã™¶ÄÄ7(Bð…·ØË°—&LÞâƒØH_ñðzBÊH¥©PA4©µ>Tø~ƺIì=Ž\M·WäfnØFÒŽŒ^¡c1 {* )dõjƒUœâüÂqqyÛâÀµ® @ˆnµÊD!0õ84öìu–¢Xàü+Ÿ\A€Öû;b5ˆ7ŠNG^@ã^̹dMù[gEªgÁa6¿Ð¼Ã ¸)ÔÛpd | -Ô•±Ž .¢µ¢}øöÙØñ œO§äÖ¥s²ZÐ/ö{F'Oä%ñXœ €ÀÑ`+j,‘I²—f·‘ž[ ydç}œ²¨81â⢛iö°HÀâ‘úa¿úâ%µí¬Ó_Àx.e›Šñ£ÁÑU¥-¸ÐUÍ!Yª>ƒ…JTa,f \Ë#µU¨ V8·%ˆe·÷©È%ÕŠÇÈ q&oË<ªºÒØÄKë§/È©4მ€CAˆq¬CelQgìÏgºn¶a?Gb£n†®JùÉŸÙîrdeJn´8p–¦ó˜LIÙ;aO¦S”èÂñxÐK³”¤ÔQ>G“ÙWK òÔ° ;€G侤`ZˆLÑvœÆÁ’ ±P¢^÷ä¸ Ì„AxìPæ5ÕG¡n`Ï&dÐv— ¨}ˆ¡¶\ÈCG¼IáCÒhá^g÷?žUÉ#S’žýÈ ¢;Aé“êˆP–VŽ—_…ÕÿmVÿgµúÍë•ãr¹X?^«Kꑪi‡''Ð ìÊÝç&á@\‰OAp˜*X78(r¥þ?{ßÚ˜ÆÍ,üÙü •Ðbˆßâ&viëø’ú<¾Øióœ’5,öžÀ.e—Ø~’œßþÎEÒjo€1Iý¦¸ »ÒHfF£ÑLsÌ6ÌO¥2ºI¿v«‘ !D’à{°±al…1÷Î@ƒî# rqù=ÌLi"r)¢é†Z®„ÑuÞÛl+´ú¢‹ézL¤ôÅÈLZ^wØsÅÓe±HÍ4J§@¹ŽÜ"þ+ƒHÊ¥McZi]É„¡• ½Œ")A©ìƤ–H: c.³JD Œè`IÈ«˜Úç¼gÝJ@¡êNãæcžLlj³"OCñ.üÖpÍ‚ª:ÅYN¯`ÕÚÀù”±5T®ÐÆixœäX;ý)[{-W9nÝu•Z¾Xëâ‰ØÐs©R2=Фd ü XpŠÕ+LÌ” »øŠØ_>Ò,¨T“{Ÿ-»ÆÛ•*o¨43憺²,jŽ[󯪑ŽÁÎŽeD¹VL6DE¥^­wtOŸY¤sŽ§Ï‘œzæ+#QWHœh˜^¬´øÚU±âuúk¥²<øÉ·-ÿªçmºÝÀ0¤¹Ô^Ürª,´ò¾ÃÙÐ=xbçñcãj£g«pI|ÉJº‚¦»$A•+.©\ËŠb%›'ªb»ë{KL}n`w% •ဵµ"Í”Èlh„…ФBÄ0Òzm…ìUñ>ëB=ÇúT4ŠfAÖc$°ÃaÈXè!(%MDêªq  ø%«E I³/ƪ¬rå¿!K&V»†?’ë¹J'NaO¶;tCœâX—K w´ñŽßãc<œ—‹[’k®ªâËÞ»] …hþB&Ÿ£eoß ðuðxg`ÿ5´1©¡À„éªêâ&Ü…-ÄÅÎíávSÇ%ÖãíùZ?ŠOü·çßúüÙñ‡V6ò ¾ˆÍ‹rõ Ë÷×S!Jq‹ˆ 陨ÀãÑÈs5‚£œÝomNßLd<ÝŒ×.]xvÉŒ!å÷%ïUŒž´ ¼Vo…×…@Œ«S;dC†Ô;½>žÕh$+JΤâ8ǩŵåM<õH‡%ƒù“ƒ©k*׿ÑÔ’ÊI]­“°¸ÌùXñ)ôú©¯Îá®\8ûmïð0Ô!”z€[ÆÈàbüÜ4†D2’F#~øA•º…?ÎÒã6’ôQjÓÕ7¦¨®1w‡ŠfîÌhJÁx¥ˆÉÔiÀ¡ÊÃÎN‘ž«c‰°#„O¨I¥¸ÑœãØáñaÈh7e¡eq‘““ï:Å-qÚ{4v†8PŸ½Þª„Þ­Ok-Õ ÚŒq¬–66…KAoTuÍ?!qøŠÊÑé ïÇê2I”«+´à»-C< ÞÔÝÄsv­­¨!nr»7Šû‚ª¸…‘$T\ b| ‰· öb«`TÈg€Ñ^R CêÑÓêòè–‘›F{§ÅèCþºH-Æú röéS¸ x ŠpÑâ¥ôä½:˜‰4ÉC± ])…‘‡DÞ9V³ö¼‘œÀlmd Åií#[Ȱ@Ž­C֘ݽӣ“ݽºf¯TÏQþÇœ˜H¦òQñ?#RÍ$}¬£³f¦¯lv,\²}¨¨’HFŸ&’I¦T⤒iõ8Îådcá‹­¬˜ ‘Gc ¨ÀÇ<‘’T çáÓÃ#Ôí—3s¼ý25Àñ6愆wó ÆÙA GDGe'$/Ý:Yˆô9—9ýwgªH 1žÉ¾jøtlr\øô8™8{ðt"þó¥>£@¥®Ö—›sq¡Ô¾³ WVJ‡ÓB©ßý„ô’Jý+±¢”1MJKEC©ã”ÒB›ÇSO‹§®¨ŠHIÇS*øo¬ÁçiŽg):á u…†8±â „Çöö cµFÅwU-ëˆÖ4u™©ï|»‡ïzïiâ ¦5'fâY…>Àh`n꘱hŠ»R=ì!Å[yÇh—¨-ènX©·“¼?ÆKÛtoŸÉThä³îä³CµÙÈ'®ÿ‡/¿vìi¬o3©zû¯H¾41jn…H LüVŽOO^œˆÊÉ«óMZÔÏÆàù[ÃôpŠm@™.Axjii.Ô…´y^ˆ9iãŒDÖ›Ñ5¾o—íÝÔeNX†å*^„ƒÚȉ¨DX‘ýåÃH*ý çMIh03YèH¦1%xx,A zžôa±Š_Š?„k$¥¯ßd ÐyrÏ'÷T‘¬+91á;3—sܼ3R㻫Î7#•ïÁ±÷¹Æ÷5¾‡ÄпI…Ozeò’‘Ìa:^0_ú#–¾P~#Í.Ò (0Ì×?…!'£q]äkCP¶.j@„QÉ—@  €ÚFäÖ€«WEñsá×¼fß°t%¦ñÃmu1·Unî{ûàÅÐ?Fà$ü÷½ý&ù b"2†±¾·#¬‘é<çìo;7Y>4NÅ×Ãb0ÿ<»e.éoaA™þ¶sëæ}¬›òÚ].áêˆö‘…ÆU½É³ÄH½Ì«0š"ñLî‘8x(¾.†(p0(râÂÈàCf`jr(wK7-£¨4@xÍëNfÎ ?PlIæ(o•Â8+ @T>ˆÊï¢ò—ü.ùbFF,–Q ´ü­fÈJŒ³»8žKxuj.êGü FBÉšV–­FüÀæàêòF´9ËÏÆ‹°êj3ü¬,ÿ»ÕköeE2¥À,²"‡FÖ˜&¾eBb¼£K*3ÙyJ£yJ£qþ»ihŸ§4š§4š§4z #˜§4š§4š§4š§4šˆÕÏSÍSåæ)æ)æ)æ)æ) ç)æ)æ)¾µÁÍSÍSÍSÍSÍSÍSýÿ%¹æ)æ)æ)æ)æ)æ)æ)æ)æ)æ)æ)æ)æ)æ)æ)æ)Îç)æ)æ)î’ÒH(u*zîE[¸pðÒ=n]¯$xõÄΟ¡ÛÔVª3È5]¿¬ªÏÚ·ìÙô¾eÏÆû–=›oÙ³¿Ë·ìÂ󺉇]ç"úì.2üÒrµš MûÁàÍSvnñµÚeßXxtÅjW¢P:¥zÅFue¹ºV}RÕ-mûbx¹ˆî\¢ÓÎtÐó åÒ’h6ßnn¿|qÖl–tP®qçÎu`K‚îQjI6.Ò^š /Òç’øEU㯛B5l‚))Ï´žÓ¦[aM9à&X,âöB#gX±+«kë[òû-|²ñãSüN£‹ùý®u™/™O^C©ïÛ 7¿DÞ8BO,ž«[Á°°a¦ÛKò¬À ÐîùUé­Fæ²Å›Ÿo—€¡âû6éÍ·üa/‰Û»³©éÃó þE¾há”/P‘Ü-umkÈ äz›¤šœß8k Á‡=˜”ʳÕÕµµW—×6ž>YÿñÇ'O—<<Ô>Cׇ’ LD«u}ÚVN9PÁBB¥öÐ쭥ɦmz»Qð~½AçȰ:®›Ž * ªÍ\جFÎb‚m3eŠ0B3µŽÁáTãM®Â¾U­VŸ¢q9.©>x¨M4—½ô`Š ý-À#TÐÞ9„)Øyü¸Âghm}̧#î*:€m/Û»¼ C‹öb 0 ´ïQÔoY í ÒFÂÆÃVV!ÇÐq„Ϻž×'k~YÔC®n|¡«¼ˆý}ì÷W±± jããÇÒSUmsã§öI>‡‹ïƒbº[Íd€'µ|‘ÒpWU>ªX4ꦊOÈ*”¶bE©Qù?rqúH®m>ÔЄ ]bƒÁV‚R:]„LG=€'lå^”=•îOR/ôaïкÒ/?.å>æH=(úÅMœv_Ì-üØV¾µFÿÌ^A?¤ò¹¥ µ’¼ã¾¥CbßÀ€ ÁáÛÎ(¼*¢`¤ßæ¦ùŒ÷ìŸs¡o°ñ–Øÿœâ¢)ˆ¤.‡ î·')ÒV¤¨ZU>XŒ-Âüáö'¸œºù’dš4].ÚÞ‰1Îum×¾*ų„m>Ë–³—vARrUj¸!eç@aÒU(yYwIlÁ@uq˜?çcNí4œ—$‡G}c}­º¶ÿá›ÏÔ× A>yJHìÜXG¹ëBä›ñ4Ò•·Üˆ&òw˜Cºƒ>tÉ©ó¦ ÉW¿S$úé“´€èÃC|04ž ù,zò²S3®Ox<²ßQ™Þ&ö†J[ø~m£ÖZÙmžïî4ás=æ üìÙtá}6{Þg_Ï…÷Ù?Þ…÷Ù¬\xã{Ú¤ ï³»¸ð>KsáMn÷ëÉzw{2¿6¿ÆÚäüBØüBØüBØüBØüBØüBØüBØ·~!lmòé³t=‹ sdügÄm›±Öy†×¬A[ìL«|†b)üR´PÖÕPNcr·Ó¸/O©ºÑbqêFï¼ïqn˜± …cÖ*Yßô}Š»¯°+ïšÜY‡ìSµ9t±®FÖ‹¬¦GâÄE?FŸÝ µ Â9+–é} ?|zj\}hË'a¸–ÓÓz2”¯Y"ûôtº$û˜ì²–DΠ¾ö\¦‘½“/ýžŸö«HߊE,*¨9ðQ VÛA¶du+@‰ð¦Öu.jø‘*kÿ[ úz›Þ{éá-5šð Úë(¸ŽÔpð ŸŒSüŠ<ž¯`Û€'Qß ß ÖÙI…¾lµÈO‘OÉF}‰ù’©>G)†­¨í_q0ÏŠáó7xïó%ÇÓÝ'?užŠîÕψ‘Ÿ,ß·~s0‚Yâš‚Ü9QnC»ŽºR`T¥ ¾ (·Á¶M÷KÍ[e²Ý¦Ácûõùîå·@—ÊùºžY™ÞذõºÆ7$q§&ãüsY˜ â³[7°nxË”ÇNãVË£}Œ.sÜß”€\Òép¨=F=Úš ñCω:£4¶¹”.,™cÉŠXÕï ÂõH<§3ØMXCN—œï?X]mäýaPÍiŸSCCMSN¤fÉ3ù¯%y­ û–krqÏt ü¦ɨ‹‚iǘ´}‚!m³»3ìiqÜj–3¤‘Ýj½@¤ß ­!:•ab¤¦£TOÁ)α¼xLæ¢j.Ê 6s¬ÈO1 ¤ûC·Ô-§ŽxG°ŠK¢I7—÷N_žì4ö÷ÏöðÚìç]^’2—±ÿÞé÷Ñ™0Ö´3bŸ‚M#¯Ž ÃÀ“Žd‹Ò—?ÊÙëÈûsË€…C!Z E]ÕÕ¦ro#ùpÏÏHòÍÙöœmÏÙöœmÿSÙvxÚô"°Gw(¢A¬º‘—+ˆÖ n™T§‰ÁþOˆŸ“"³8li4EJñÂñ1ºûmQ\ÜZ­Ö?3YÊ¿·g’(Á¤&IÁuù~ž%;9ŠÄ“õУP¿ ±ŽæFÌýÝÕS¦ëT¿bn2z¼ûé“à™BŽ‘|ŽðXú;•ØApF‡…òmú:É¡sIE ´-¯ñº]f-×Wô«/ï’6°ñÆ»±)N¦† R*´Jært¤Ø”pëÅÕêzu£(ŸìNä1aÀø•ò —ëx´Æ§F2¸ ?ªúW˜5äÈÌäˆ,­yRìùËjN^Ì›Â÷y¨ë®Ç/9ñ%©¸ôèꊧšÓ¬Óá¨þ-¨v=‘¼`a扲Y NíƒBµ› Z~½`|É2ÆcºÇË—c•ߘË!è5ùwÀLŸª/1‚¨ØB|Ñí•ß·[Nçƒ)E§Ç@ÎȾѼÆzô.NFGénxÌ¡™{„'؇ ú‡y¨ÃH&U®À%\ÓM#62µ?€ßCÒÐñžë´,É%ªRJ¶À¸5ÛÑþKQ!^¬I'º‰t*Ç©He­>(w+ò lÏÛ%è¡"[2ié#ñÒfgÞ%CO ½ ÛÐn¨ÉW7Ô£P^‚Êö ­q¼\ZWÀýMÙ¦ä_–1„D¥*‚<²LáHt¥wrÔœÑƯ‰Z¥vY|·µ%#”Lu‚$>¿ˆÍbXî~º,`b,Þ˜ˆo£t1nÑëñK2lãºÛzÇBH]ŒÓßÕÃÈXŽêUb5Ò$Ýc12à”µh¢?Oº©,//–\‡ôùë.Cjrä*”%ÂE¨ª¨5(¿Z‚Äs«õÞïZ8¼Xºç2š»7âUxxŠA±°«0g¤S…ŽØÚÊ• ·{mŽÁÒªƒi€v‹oòï ÆÛF©Öh4V Øön1¼Ôì‚Øo«í‘ZFõC÷v2zÚn oÎq«©-$À~a'*—‚¶Ýµnùà2›¡ÿ  øhY}[¢?ls鑚mõˆ¡G±©ê}  5õwêŽASêšCCW¡×ï%ˆÊîÁ~ ³Ñi}ÿJ¦×ðöv DU3+Nµò¯éy¸½åi6*¼+ dG|ïO«5ÜbhŠ}EÙÛ}j^ä(¯»À»$“bÇV}P‚e›ªÏî"îDùÞ%ò+¢¥ú§Ÿš‡çØzMÊÀé¯xuÿ³î\b‘$æ#n‹¦ÝB&9ÀìXðøÀ%×`Æ[Ãø5úVà³âÛè“JÁ<¢0Ù»ZÈÊù ½äèÙÔMm¤6"Ÿ›Îxwof/\>Šz¥í¶¦3AZ$V‰þ´=!€]s‹¢5S®1ÖÉ d.­àªy¶·;½ŒvWáÀ¾u¿fÿ©]Œû©1xiKŒª?¡êŒÆÙ—>cïÝnø]æ<Ó'É"Ô-e“ÁHeçÙ³¿Œ'_Eùh4¹¥B4«'[2tTÄG P±é*¼7Éâ¨#8be¯9Eó.€âÒÇXSG鎡ŷö*‡g缿þ»L¾ê<Qw ¿ô$MgV~PWõˆ1ÛŠfU…T#r%‰þöHÝn…bºN£ _ì°»(•B¼:¦šfŒ³£uÍV¤-3Ör˜Ífdå,CM²nF×c=V3I2›´Í‘áIP_Ž®ÙeŒlÑ,ž‰Ÿóááž‹ˆâ+ä›9íp†R,R(öÍ€ô¤¯Z>ñf8ÚmX·3Í)ªd²@‰ÆQ%ÚOÑ*fW1äbtU2¢(µNGÄ Ç@%ìœFu&4P×1€šñX¬ÐêP“‚£=!gr„°tå2`V¬'·gÝT–?Çb=ÇZظ4FVÇ`åN@{÷¶ÝÇ€ †8¸°Ú3*V7š¸’+ {Q×½ä̧‰•åòâêŸ+Ë%ÚœR\_:ÿ†¥‚Ñ!èÈD‘+#÷Q­”Q¯,‡Ç‰øš^„I_˜aN›–ÒÍD'áe—­”¨÷¬•„ÔyŸÓ* 6âjŒJ@eF ý½{I}ê³%> Â*zE­O¥bœ#ÅAÇ›®çUUZ[¡}&BO{éJÅÞ?S«°g¬PìÍH£Ø›\¥Ø»ŸN±—ªTìÝI«Ø‹ñ÷½¨^±÷m+{i'\ºð-©{_G‡H'²´õ÷¨{_JØ»›"aQM‚§•Å’ºëÕ™6Ña|Œ#Tн¨N±—T*öî©Ut&Ð*:cµŠýûkEë¢Ü*†ªÅ¾z2f±Ñ,öGiûéšÅþ?S³èÌX³ØŸ‘f±?¹f±?Íb?U³Ø¿“f±cúûQÍbÿÛÖ,ö'Ò,$Nx¶¾µbÿë¨é–¶ø¾µbÿK©ûwS+:_T­àie™4CµbœZ±U+ö“jžV+b†~œ *Žˆ™ät$ñ~è~ñNäêm¥‚>C•KwXTã­OÊñcx|>b ¼ñ×ì¶ûvð}«à¯¡n` Xºõ‚Qt‹ëüÖˆ,A²Å(D—å™e¬()ÇêݶîT €/Ì‹PJÌ@!Ì[!ÿŸ V­à-A¨OÃB‡.D3J¦éÔ6¤RAâ7©ú[´p,œTè\+ï2UʕԼ–W™ÑHº¶ÅÝ–Ó¥Û¹Ö`à`dhŽh·$óTû0#¾ 9Åuï8‹z#%Ê”Š_0À@:ÅÆòÊ“â»Hز aÈJ2¢—v¼–ÊŽÍ6‡Ø².|¯; lš™/ðM£Q{‹¹~Ùä*—ÜÀFuÆîõbíÍŸµ·ø¯\kTÕZQóûå¦Ñ$QYDÈt7ô®J礇"}Ýôí?P|ñì±èΞß×¾¿,¾“uXîÇ+hU9_Ðý˧$]a!Öª‚!ÛÌû߇  å¼j8ôA2˜é!Ÿ›îÖY„ŸÏ+²9 %Œ®0/ñ í©ØœøÑØP”3¿ùÓ…±Ì4ÀržãëtŪoc–XÒ’ýÑéÒ‹@þÌÍ5-sŸ…MÁ„jeu¦¸êY¨rÆoï$–)Š,Ï{…Dr¬LÔpX0Ò8‡¯*|ìZ,Né‘Ƈ†WÀ&¡ítüû#½51wHzûA5 @¹(½rµ¼Tñ­îSGª‹ëSöÛðb{$o²ˆ ª¯2 ˜¶›s›¯wɼåLÀ¸Šm1°H:¢o´ÞŒ,iH”¿²ßÇÅ„‘v)H0ùåc~à: Š£ÑÊЂ•a*½ç¤UÑ[Þ1]ˬÀP¯…PYÖût/AÕW{¦È¨aÏôïŸBhÅ|a1ãî oÊÉCøùþnÖ÷‚ÐßÅ—]¨h.¨tÏBWÀu:Q ë2ÌB—B5’Tc“x¸;ö»ŠeÃõ·Ö€ŠÞŸ6×ÀÝu½Ã¤sÌáîÔLcÒ›Ó 0ZuÂéFtw¦&× ›€yX„n”Â3‚Ǭ—´kÉiËïRÙœŠç=Ê\Àñg)uõrŸüÄ’åņԘ±¾ÒW–&çp0¤é ¡ìÉ÷®Ç¯iÕLµIÀLPkj šSP'‹¥û·O'ŸŸíV0ÏèÑEž•©–6ŒìŽ”âöJcDçd@2i YÃñÑ bq™›q7"\îø¨Õ öçöš×¤aÖÉÒ!0¾JǹùìöâMG „A1å¥XºCû SXÆš!Š0·—ÏI~M;˜ ôúP‚¤´¬Ö&Õ%Rµ A»÷V˧,îv·yÀ_†­ Jòn>SuI´!x@¡š Ç(ßGô~SKøaRYH×1{ÌQp‡„Ë+0XN+m·)–-â~qå¯"Êü”n’÷=ß h lì·ÓÊ«×jã‡É|7Š€†6c †Eþy^åöÅ2çƒáÆ:Ùïé|½òúe¸{q(!€º Ë9§)Ò8:û7…Ú†¾…•`Äǯ—Ä‘ã¾øÁSö¢¹Ëîõƒ[™Ú˼Ö[[^$¢ «Ý¤\աѪê¹¾¸+6Ž/‰k.(ÝHM[å9Q­ª#M“|M°L|¡la^~ GO•€h%ð‚7)Nñ…¬Z„ó:á˜XÅÜsü”è\?žu:Þ3 S¦J0Œì†ûy~o4ͳ斬c†Tþ3p2²“†Û:òm#ÉÉÔéçWWz*† 8qCÇqÛd„å„ÓrÚGê'²÷ÍîñÔ‰pyJó©Þ §,yùn3ÎØA–~ÎMkЋ@Ê’ á[%["ºt´”濈õÈ«PgÙuÚ¸1'¼aânÄTºd["û5gNöúÀ«qѰûêèôùÁ±Ÿn2ñ¤ïFI=œØ¡–ìÈ£Â'*ø5ž™Œ öe4¡·ƒSÆþJõÀBÉšëÐÎm´RKÍÂe‡ ±•ATaBÊù¢ÂTO ÉÞçFÇÝÙ¡¦œ#4žñ¸a"eH‰³°xÔ÷Ô…èYVï'äcÿÈ€…ŒÍ€WEà¥r¬èÅk̹W6÷JÁÜÃbZ±å—ÕõÜ$3Ý1­AH)g´‘·_1b¬íhLDcÉ,=FQ3”zê7ó¦&Ç{.Šô-÷ ØÔ"öR>ÛÜ­ío–&g::Ö!Ÿ%QArx™øssùŽ ž8 @ŠîÚÛŒØá&H÷L½ßÝeY&³­ »B¼Ñú‹Py÷t]à7®hÄÂK)Yl‡ÇMé]·éŽAøœÌÌTñÒXu!òÑ=åð’&²«q¡œx­%ô#¶Ä KêY7NoØ]Û½ ÈÙ–g_±aTå‡=´ÔNÉ+'?†qN &‹‹ú·>º06[½v`LîÇ!¿Z¤AVß~¾³f¼3M¿Bôü¶ç·ÿ÷²ß×Î&'®Øý¯§§K‹‹öQ]ïZ ûäÊÜŠ «Ý½…µjsÈ3}"Ê<'jÍh2œ>…A´ÉÚ¾º¼¼,.n¡A1Ð|Š|Öé¨mÅP9.µU ï"ŒšWª ±‡ùLä>¦!õ„ƒ32r&gÇ—€dÎ åÓØ…NÙvüþ•|Q5ØSlVê+««OŸn1¸•Õ‘­þyÜÀ¹¼b¯SPàï¥;Ô8}åb®<áüm8h›˜uXµØ :ªÉpp¥FÑw=AÉJÙt ;ŽÆ”½QFÁ¦ÐrÄ×púDe4Ðë++ð=p>bà••-ct­ÛËkÇES=À‡–}Ùj™dô‡ã>»©í™ãE*ò‘Œ*B9fê°Û> Ö{[˜‘úÁ‘B¤FH×âr€ €@KwÇêvoÕ°ÿð¾-Sáê·”JlÏBœ6ÐohÄ ,ñ’¬Œ–ÑW :)Ýò÷ÛÍ“9xH`ʤ\Ñõ*…fb›3ï í!AgHC윬X”p½Ùx_RÃ8à¤ÒKðó+SFþÐÅô’L"ˆæ9EØœ[V–B%̽Ìh®3OŠ~× `ÃÜó7ÅÓ•g«bÑsÅñymõ_µ×§¥Q K›”УÀqá¬9ÇçB¦òqiJa¤žs ÒuŒ7޳ êÙ=Ê08y{VϹ´<ßlrœÉ‰h¿÷¯L’#ª‚íÊpdÖu`úLR9óðÜD£–ú7¤ O&nÂþÜ¥¿ë%.¶5k¦=°.AŸéÞâLÆtá·ñ£kò&‡Çj”ç8œ+ óâ ™ ˜¾×žn€ª¼d¦ñ>tÞ#uw†ä#1§¯Qóñ¤:Þ º)n\ñ½3ËãŽù=¨|Uà5Pˆý%CB„ŽÆwm!V'£Ñ.ÌÆ“'k `þh{ Ó„³]Ö`‰¹‹¾°G=í6Fç³:6Hµÿ¨£®Œ~b|T¥LÆ^ŠFM¬¿›ºrY¬½3¨†xµs£çÿ[à©2-b¼º±º²¾Î ™¬A›R9Ú#ËXì9àèK£äÚ³å§F<Õ >Û\Kæz¶qrV»""€;ðî *~y.öÞ¿·qâ´kcÒ-ÉÆ|<ÅGfo9Ø]à³®ÓB"%q†5Åv¥>.þkTÈtÖvˆ*0Sw“Å”YÁþÓ‘|U(i¬d®Ó’ÉɘÍûh^7ÇÔ%‰Œæ.ì.çÆÂúûdœ¦¸ƒ0Ë÷\“*GêkO×JöÒ¥‘GÖ›Nb%Då/TÏZH0<…(¯ðªôN…Ò,Í­UW?<)$²åÕõåe£Ò­5ІÓòž|Ø Oðh½º:¼VÔ÷žY@ýÝGÙ~ù¢y´ýZÔì E!Ïk­Nµ]óƒ¡kG¢ÏF‡V> (Íq5¹Tq ¡j„Qµ«å7 âm­Vœ!­­þ¸ñ4ª‘(z·x Cƒ©¡¢ƒ¿5®T8yý¨0H ÎhÇ«M„œ‰˜à=Ù`$Å/¥D1T? åx‹é¹D þÂîxœ/¥íáÙ=†-¿dVè¡×¯%Vþ%3‡Ê~tuú5Ð5Pp$ÃšŠ§f`Ss§U?eIãFï¯>ÒßJáãÎÉñþÁ‹&%/,ÿêógÝíƒNd¯`ÉÐå$ºâàý»ßqc¸UÊ++«„. *¶G%×Gú\^YÝŽÒ­ꬱâì}¢@±·IdtFaŒïk|äþ¾~g»T ×TÔDî;¾z]PXåØÑé•0êoü²ã?¨ºÔôÊLäX­ÔVÅÑscÆK~œJG§ƒ7#ßÝgŠQ/íÊÌu¬y3Ù)=røêÔ %Gu‚%ÁG^lŠ|µœçë¹¹D?u7¶Y½q.]§ãÀ„J5èX˜Ü;Ì—ýøq˜ Tªî-t‘7hÇ÷1+€ÕÃûäeº“Ì”n=Õbìcq6ôä¶Uƒbdtô'?`[^É”û)œ/ÜV+=ŽôI0”Í“Vß%¸0_¾DKÓÜôÇ^ì9Õø˜Rêžæ77açTÏ”¡ÍDcz7RüŽÑßkç´žoÁF¾“ÿLß~¯ç{Âï/êy²ÝÂwÄñ¢X<Ú>8¬o,«xÌøµ„Žö”âkÚ¼)CåëôÛ82à§2ƒ¯“ìæ#ž×½ç;»;èD¸}¶sp =Ê ¯?ñZ+Ë+òi»„« Š å>§–‘J]ÃUlX[S(zè``·Ð•ýâv”]k…žj×ÙZ0àŸ®Ö‹Ðfcy}~­¬ùÍñáêÙ©|³ò_Pü‡%bËØ19–XÏ¢ W–´›<€ÎãKü'†7M¼Å¿O9Aº©J«#ûrâùž*Ê›—hƒˆxO˪01¨,ójàQÎr1Eʞξš}gT°VgXYË?F)ÔCZÒ"ÔƒÔR&½›uJ GÏO±–»^[Õ•Ã;BД2ΕfC§þ{hU¸vÐÄLؾ(»ÎÍ݃J-é-+̉1}E,sÃ3G´ Rÿ+á7}1SÃC—ãé¶étßG~%¬«n–e"¬ûææ.ÃÕLv¢b!àÔ~q@r7­ü}Vˆ6úÖ•…aifÁãàF°Dr׸K|$iÔ´×Üš~#K(uMº©æÒ›Î"™¯ÁoÇud¿5Q„¬£0 ém݇¬#€²É:QlVdMŒ‡»ê– PÝÀîzVäºÊ¨Ó‰êgn·ÝäÒ”îú>.'QHõbeP¼ƒA\Æ´$ ÑøÌ~¤–”‹Áx‚ŸÇpy‘×YõL8ùHñ¼&Sùh¯a"@+ P±'ˆz sâÉèr©Ç€}X&ñã@3¾Àw‰Ð!øcvHE!‹î×äéIàXx0Àó¿9ñzÅ…1´»Î…(\w1­UÆ€i…‡v¨©ÆdúöDW?F{BÇ//BgÈ‹zÏè XÌSúäù¡Ý |¤%¤Tïhù®–š{Dg{D‡ØÊ¢Gªñ|£UW ÉîçFSÇÝe…&˜x0žaïçøMä ã—64~RÆp {0œ‡É_"h˜ÙMŒQ¼&Šøx9ßwCcîÁ1›Ø’ÊêyÚEŒ°Ÿ¥^Äøj¬(åv…n;z»BO'-¼ù ‹´’ éÈ Âå'1¦ÏÛW½¾õLÀWõäbâp†ÓÛCvË»t1`\ÛîÛ.¦$F×Ñ5pFî'©žµm„¢PÆçàÐÕàÊ›ÒæÁðØ:`]:-Úå GÛ/vš;G»Å\¢b•Ã&ä²{S/ÊèÅÜ#qlsq_²y Ž{Îê˜#~•3_ä²?€ C ÆË­ÆT Q/‹xTDOLó ¢ö¤rªOXÔ—™¼±®JäÝ’'* °C´¶ ,ä¶DPð@“Þìu¤U|«ßõ˜\¸—„8y4IuùPõâVô,v¾¶)©2©T#ĺxóf`_Ú7oßFkšñgÉÒ =— OÏŽp4ÀÇúžÛö•ãm!:çÊÝŠ"v ’hmµI©;äNz…ño©[E4ˆ¡³/æÛv1J.È£òæ‚ïEé¬ê£gÓ#};À@!9ô–9r™. ,QKÚ àzÉ &ªšKnÞ-çæÍzåÙ[#R*Eª6ùÀ(waKßË;TñÛΛõ'c[2çmïp_¼Y†îѯråTÈ7G‡oÏž‹EÿÊBWi6}jß‚& 5^©˜¹4é(=+ÈRZ9L-.ÑšðjèË^õeT¨œ4v”Hõ%3!|][^wá´ùÄš=3tþjåpƒÄô,Ç­úW“ãàÏ›§#<¢õÔéá‚üDÏvÓûO#wLžôå¢Äs$ (Sã¨1mOŠ!ïƒÒ$%Õ*7sx’ò-NABtü¤û³3í5hHèjO>àtx è)JYR\"hC}ÿÐÍny‰ƒÌßX½>úûHoŽ£Éò³¢%¾ŒÂ±ÈæðšÈ>RžÙÜe´ºòHü‹ƒ»8PoPQJÞ[·Å ž›hÁªÞ¥÷„>‹}Û)Wœµ§‹Õ2(€å fSàÃÒ/ŸúvÅô*×èUŒ_`˜•õÒ¨a* AT:Åœ4tÑRÑÆ¿GÚW}4 TÅ™mK+buò5bŽPö¿Zfç°Ä0áeé—ì… #ôØ\Y}ßkßÞ‘õ¾Ý¡Ïw)æ~h6Ó5›Ñãûn«^¥_ž3øy«?TGNHSF‚!eˆ– Rðñ¦nÓO@ã=Kºm‚10ÑíÝG/ßÐkî.Ȉ|{Á“WÏÐ œ.“1ºûwmâËØ7ÓØ9\Ü,A/>ÉÞ|Ú%TíwoK5çÍðÔ"…âi¢ôKÛ&VÔ·.Ñ‚…”ÝÅH˱ŽÈ€¬‚¡ `ªdÈ‚jYy[E€ô➌8ôJ¹²œ÷Ã;RÕUx³²\]]Fº¢/+„1£N#ÇÚXx¥ŽŸ3?”Îôëk%üZ)Íë´"¶7Ö3ø‰!|Êqhk«†–H¿ê÷­òLzüFTŒ'¥EÔ3J¿,Š7‡G j”~‰Ž‚Ké—7KP­,N·+/ÎvXOiTéÏäƒë[«ËÍu9ºn8ºûKvËìU)u™LÒËDï$¹#Ê; ´B%¯?=Ø|Áï=(ÅÀ丠X«Þ,‘Z üäúêV|jT-R8>5ûN ¿ Ãü)ZS‰Mì Æ$¼ØA€¥‚âÞ´IÞåøœËaÓâPU¹¤WÂá®:Y^[ýTÎÃo‘/!¢'õµU¤ é†âr7VæxmUØXÇ÷ë‘×ë!㱋î*4³“³y+¨‡w—.lq‰sU¢®æ@‚1€ߗQú`nü‚—Š|öNSÏÔ-ÅÉ[•w”f"ĦgIÖÕ_E?<÷“°âÑd§Yµk_{þƬv1¡‘s²-LœO¸zÝ®î`ÊnàQxſܛ;N»ºµå¶’iÑþÈ¿›Þå¿$çíÞd0šÊ4Yx~g®ìùuù÷É‘;hßyS­ÖñknøºNäòÍÐun®APàgTÆ^¼Ö—rÊêNÎÝš[×—zÖ ®KúÇÛmã º‰îÞÆt'á7•@uÄï22õdâ;]),ë«{B¸­ÁØ1hR7¡ì¿†¶”ÒÛg†ZüÅ{£ˆ´›(rÓÇ]sÙt+?Y·Œ~äÇê)Q+ê±c÷@ÒM1 ýÖ• •(èwî¶DÔ-ˉ+h/³i]”ÒÚÈpTÊ*Ê>dÆ„`d†zMŽM×ÃN\ψT’;Å«(iª’vÿʃ=è'ζ4ÒÐ#D¼_·2È€áÚ /skûâyk§½kïuö/_\ýæüï½ÿW÷°wä{'ýÓ¿þ{ðÒ? ·¯>ü~ýÇÍëÛÿç„Ì,S±EÞ¯5«ÕF©æ7jo+oÕïË­Úe>ãF §ëŽ,±BÚÂË¥Òʈ‰3ŽuÒçõ‡D*L•4fª”W‰_À·©Ýíâ×™ø6IXÌ÷`÷ððüääp±jRz¬Z~WKÍ} FÄªÕØÊ¢GªñÜ TW ÉîçFSÇÁjéăՆÏÿ>ߦTêôTªNŽã@÷`8“¿DÐ0»(³#xMññs¾36ʬÂ܃c6±%•ÕóÔ ³÷g?1:J2ûµXQZäXÕv,r¬šÎ¹oSvôX“¤B:2}›¢ü$Æôc¾Mz&`«zr1åîëÜ;6¯åXjtØ+ f~§I d¤­=kv^{ü¿L}ÉkTÃq)éj2Ñ-‘G"¸ö(͵iÁb®~ª/ÅÕkÛ-” œŒ‡2ž°×>dnY}ëÖM€ŽF À 9¯Â óQ©@«ý0ç9Úô+z—9Û ÆVh‘ó™á‹d·—8æ&PV$GÓéá+ÜóÍXf³{aµÞ§Y$”·Š,²©.”JØâàLèV'™fÊ¢:#KDv3YáFV %0ªëã€ÌaTKÀ/Æ"hÚo,‚5Èͳ·¤j¬Û/g ¦n¿LÕM·_ÖéÝ\ ÍÖB GD÷`TQèd!Òç\æô߇!ĸ?úª¹X°ÉqiXâdàìÁÓT~óβ2ž¢@ØõªµÃåæ\fÜ^Wáëa1—p%¥t8mw{?vÒKêžö+±ž”1M.KE÷»8¥ó­næVWQ‘’N‚Aµà5ø,?6é:{½5¦„tH>˜ŽÏJççøuÿàpOÝ ÃuÓ+emV­AÓâÝûlNC(œÈY'¯€£_½ñÓOÍí½“}ñs"cH­LaÃâUÌüI>n9ÜlŠE 7Ä)n¯v0¸by+÷9Çq4 xLìàV]W:ë·1š€”¼f®¯-ÂØ``³^‘jÏ:ÅÙWÅ-ñ«YçFyÂ~„ÿÒ’~4ò“ß Ý·ÙÈs°E#wHø“Ò XÁЯ~ÉMÌœ…_€)teÅŠ‰u„)É‹PÁ0kYû/æB²v˜xÏ%—g c©È°c9] ;ï¦â]Ô0`N5·Í0bNIɹ…o™ ]; Bÿ$ׯú¥<¼6>Ä0YŽ!Ê /Såð‡™¥&mR²ûÜÇêŽ$ÃÊ-À¾FvÙzZÁPÙ“×Ä JM¿o·êŠK¥¼JJ cøEÍÑ–5›p é)ôgç/fqIŸà¤ªòô¦®JÌ•øl%^a*Œ>ÏÝ,Ä;žEwçA’\bŒG?ýûŽÆS(=SÇÝÇa¦f(‘ß™M ›—˜ÈŽ–žó•qƉµÆL"Ë'½Ïi&‚{³—í¤ ¾«I±È–£†9}ó„©©vƒ€Õ˜ÇÝ&Lj°ñØQ·Ä<,`®±ùuü2–‹>ܳÐ1Ô/·žÏ@>0 TÑÀ¯êºÌ\ d « B|0ÒAv´è{n$YÜ](¢‰q¯ðñß§o¦Ñ| ¦PöpÇ™žÁ»v`z˜tS¢à[-X-¼n»â·œ©+pZʪ Ü^5å7£9r`R€°Rñ‡fÆ }@‰ã¬nWVj]õ¼¶ØX_W‚C7R47Z\§\l sFó{¦ö$_H{ü Ù¨¢Q ¹ã~2 2½ §›S’DË Ï|” é!+‘ÈÞ]¯õ¾iB´Yþ'WÄzMŽ(ëzÙñ¶§y0>j÷¸ï ºµ£ólQÄ<p:æ­¦<\;Õ†+¯>âŸJ¾°³ƒ ”RjcÜqŸ_ÇÅ >"&`ôÒºÝÅ´Þ;;¸Ä²u'•TZ5]‡NÑZÝ¡€z(U€0€õ/HOX׿í]x]×ñ°5 ãoЃR¸½ê ˜Ñfß ] ÂÎ` W|Çy„–vgX£Ò¸ãR«Ûä6ûNʃm ñaûìÌ·\=TÅZôï)¤Lý ó×±¯qÊ€‚Añ À¸ÅÚ<’W]àB7U!þ¸¢r™j©dè\â—ï¾[¥·<Ï.,xßêZ>:cû­sˆ4ñpÕ„büT¶o{ø©^|ó|gwïÅ˳ó·Eõc#öÏ{AÖ’R*|«eS8HÐ8¯u|‡ ö­ ^l,¾inWþǪüç­ú@É¥"Ët—H¨ÈÕÑÒq3‘”Sâ![‰ôûü­ &3‘ {Xuê¾88;ÿCÕ¿RAg”ÈÀKú64Fb2•Í( …¼0æ´IƳIŸ¼eÞI+ñßF3ž„Ql÷eXÂÌð qKÝšUd’˜qlƉß?>;¥ 0Ë'vymc MÖŒ^¿.³Ä«y¤ƒÉ…Xò˜u8JºòRPvå÷ð.@@Pð”"±Åçû»ÅÔYIÓv%¼Ï Âí5)rRÇjÙt!þè w¥}XM¦¥íæÆ£bÜê¶­À WŠ'#†qò’L'ðš\¨žÇ…JÅÆ¶ˆjY4«°T µÆJ­_Ìç8Q$%AG¾MiŒc««ë˳âͰ/{ÐuÅ=jÛ­nóÊóÞ×ó©íâîlàŠf âò\lw» ®üÝÂ,v[²k¯‰òc@ØC4ò•F~I,RNærI,^J€@7}ƒÉq£àÝ8`ÉJF ¨ŸÑ•)Iìrþe]ðQ Ù ÇÏd¹I줖4/%j…EÁj‰¥kâ§<÷@™k}`ö;x·ø‚…*Š’3"R´ˆEÛïWQü /+ñÅ$"T‹<©Ú¶¦X}«§{»PdTP xi»öó‡ö¡M*AT*h芠a t4rš6ÎSˆ †TµX"º2ÊäVË)u#$yLšÚbE~·ÚmØÉú#‡ÊS(KÆÇθ1MÙkèÿÈ1éØÓ@4~h¬H¢ž Ä<ñêïM-HÄŒ&‚fˆÈT:’Ô"ø"ˆÉ2B\Ý ãI6Eúo”¢Oì¼<ÜGÓé#´å”ó-çõaìƒzÎÈŒ&UV]PfÉ2ïè¶’(Þ4>./­4>A¼q#Š˜…´øsr~®Yî(®u?*gÏ·4§ +ã IÅ\ãý»¤ÄÕ¹¸¥ñõ¸Açæó"ßÌ“•ŽxdHTEK‚µ¾%µ„dMâTÆßZzcQeÑ|Óô€Ù7VØ Ž+7«þå¹Á?N`ë BÙòΟ£¨šÆ¤»Èp„½™ËÊMª ð(¬[qΖL÷õ¸Š´gèØÉÀ®.$屎ýŽ`ôÛ„,®JÛ]ßã€Ê˜â+5›Ø+´0»bФ^ýETÃ|’ò¡óìýŠ¡Ë1ã§ouðòÔÿLõøó¶ AÓ·yc.ÿn õ QkŸ·téÚŸ;'ûûâìßGÏOÅùöóýÚGå"eb¿‚‰)TêÚ0eøåóÖ¬|Æ@UžíjùfãjùÕòbß­* ªTûHÍ^½­¯Dº ÊgË*oŠÚG¿ßu‚Eèìò’ï.5ò›| áÔýá… }÷ÍêÛ¥ÕR ÎùmŸ !×>ö$…òç°¾}gIUu–¸¿‹Hœ¥,([C“‚À.÷µ=’d@@寧ÚG¸µÙŒX~,^ïîí õžñØjýùém£T^,%ê}t:‹„L…Ç’ˆ—èÔùÝFbGþ¯ÖXl”ªÔ|sŽoÂÂ’­¥ZãÓ§Æ †X¦Ç"Ø7‡æ¿Yyûµ?ßüúË[…˜Î>¤_[ñ¾Pqb²!*ÀdþJ“© KŸ£¨ÕðŠŸÔÿ48KÄŠoÒstËÏÅ}„Ë9vÔÿ9áç‹îú‡çMô®ä W>ô¥Õï}ü—“ŠY~'/>æÙ.¨˜9ÒÒ€5S|8àƒ[9’ ê ²V’©¥Ì?§µõY5€ä·KfêE«¸UÚâ+‹Ë¥­Ï95 –#Óø£m­OiNäáÛ¯êE‘sDz4Óü'… K ·²u=Ç.'TŸ°3Oóo|£É:/?‹u% ‘3ûUgRøüÁ¸Ô~ÔŸµ34 ìºÎ_C§sKyS0ËY8UÀv˜,¬±yæ/XœêɹºgÑû€«X?ÖŸ$$âòb….$ß)wìßêGò¾'ñ]뻣zbP¾ÂäFW9ªlÑ\ñ…bØ÷Ÿã‡Rêàr]‰Ù“æE)Œ /… 8üµÌæpa×¶M©ePC¯öÖ—dô üÛätõŠ5[„éó½#`B:àEóƒãµUñéSø¤¹óïðÃì~Š•kþ±³‡ÚÝ>ß–J¡Tïv1Œ`p- “ó\Ðý Tk•YC†A,“ædqô 4@÷AßµÅV…x·]ôuú*ˆðû¾=l{©wñpd'Åáù¯?¿6wA½kk횃…­J§ÙÄPpk™§íÉÄD-¥ F!Ôì"àœÆBzÒDíúö¨ M±þIeæö Š-²…Cî0Ô¡‡ƒ :!Æ“Í]”Í#_?™«’ɸò¤‘ø9I“Å\ å¦.#Ú8ý>òE°ÆŽÝ7,r>SºÒ°„œÆe€'v$où§,wîx{ÆÝ<}yòâåöQºùwò˜<×nK øoÞŠzî#ùä•EìÕÅç%é}3ÛFþލÝ…ihq9bbÈ}ÞÊi:gÅÉgÙß` ×Cš–É1ȼf$s@Jܹ·/šœ¼ü×öËPÖsrÉÀ-† œ‚VÒ_,Ñ,ÉKŒãg`+ÔF*G ÂG}{­d Æ÷á´ÞXHæm/?èϰ4tWt‰^žŸÕ ø;í­:õä¿X‚ÊgÀ–¥ÕÁhPæ]*¥jÐt½&šQ@ˆrm¬4½&‡(ÉPãðÕߦA¨Ù~H€œPFÔxŒŸ»@b\!¶6=jïÕİš ïÄæA&!'c…) ÉiL hÍ‚¾oÈõ³kƒJ¯¬u]_‚2€cT>‹ i8r†~õmÒÍSkêXýÚò7úê†rdÛÃ/ ,êOc¯¤VG™7b»œ®K%XJÙÆÉ”ZGLY*uz8±¦î¨ŠL¶—Í…ÞitÔqú‰FÝäX«™tÜñuz77žÑ¸CVøô^ŽmÞû8`~¢ÛðSú6ßaVWë§;f„BV:¼’Züµ˜#ŒŽ?U8´0º¶ ¾]|óë[¼Ú_LjÌYPuôš;zÞÌâÁtν@>Ïë@–Šøƒä~ý~óWi(Q¹·*TY+²8ùþPÚHsê>b‘¦,òÄõgœ:øk¸`õ‚YvK(’3Ÿ¢Å…ÐÎ{ z$ÏÌbÈ"-æ%cUœE¼ØÙ‰ì+ hï(ËG…,gzh½P”sf¶[[ÔH·Lr^Ì.å¥ èàC󝡨M2Êqèt Îõ>‹%ヿ»ój´õ˜·eüå† I =ŠôñþEäÏIÅg,¨¼<–+¬ ßëa €©E«ù0,„xÂ=WŽjwïöÇ‘›×ûœèzZ¦Ñø*™2>‰üÖçoÍô„ 5¡Ë»»Ó¹L%vÄòÊêÚú“Ÿ>³.€áwâß N."†ó£.µ Å$¶ww7ë…ÝÝÏ i´»q³GÒ$‡ï: †÷¡ç¡µ´ýË+íc_¤dWÚÀ‰/­åÛCýxûh¯rxp†v”¿Ñï^ k··TlÂé<òñ'‚§zÄÛ‰øÄ«*©^ü&œ<šE`æ@aÚ8M‰÷~m 0-A}Eüd̲Ax¢¹š"ÞZ½¾©/›ƒUÐGQ#çz¢i4²™Óºm!å½¶$Ö¨”y! ë^@4KS!Þ/“³oæL×îĘÈI¢Ä}„(X¡cºP‰N¦Ý&ˆ`®6}ÔÞ´þj@E¢<РHN¦7µZ–w¨*܄ŽÁ%»X׫'†í¯°€Rz“ì vd}ùÙ†êJÞŒ.3ž8ã» ³µ|f'd~—õ¿ò÷ Dm+5M¼HºÜ&]«Ûv‘ [­&>ÆÝgUˆ³÷NŸR°»†×ùÀê÷íÛõ8…2»mTsf8„Àa¯‹oaê%˜;`￞}úµœÏœ\^™ÑEäc¡ÚEÏÉ7Fímø½E¾à¯%•Y•l!Z-]DíNçV?—_#U•rä;|#Ö©éK.’} ~“§LùÉäÕðò*ËOÞÿ¾Z®}ÿý–ð¿ÿ“]y­®cù•ï¿-5k°AnUä¡@¯1dl¸dS–lbÉŒ]—¤}AJ¥-^Æ‘1ŒRJ‘ÜLyNåýÇ·ð(FÞ@_AëÒ øj3¡§ü@™-‘|.=]½$äpçºb#Ù 3a¥\ÑÓÄ>Zt1\ãÑöóÊ.j# †¶ÛÃß(A¥£ :¸×f‹Ý˜(±7hCU>œ¦ÕVÄc]g«˜v´óÍÙ²s$©dš=ö]¸’˘á—òq-üvúêusù6Nv÷@äôª¢b”œ7^lc]“K/ÕÈ•ãÀå@œ·õÞDÀ$8ž ‘ÃbQ"·’ºä\vþŸEñý? #²‰“3H;zÊ|RZ(sB]$!Q+þx¸[é¶?‹JÏîvÖV/üFrY *X(3Åe”…¢îÚjXšSífUØX¿`ØI`‚g5³_£˜°ïëªT¬×´~F,¢ ׇµX)sFàùRúÚKÉî »u ½iynH^ Uøû™è&d¹!éDJÝD9îT8:{ž€}ø±µT>L)Ö»O7ä"ŠÀwMLhà±¥/ X6?f­Ü<Ýh¢êñ¾3°m•6û“zÊ èSß»¶ý–^QŸ`·â¯=[Èo˜ ô“ß·­¯¶ú„8öÃ#Íï 1Ž]¼ø®ø±Nä;ÁPúN\câuô¾wð»ÕUj›nfÀÞ7nѶ®„Euø¦RÛÃÎ3¥JÝAØæGŠ7Ðm=Ád»j"Áùà´lô­Ò–Ò#{”¾À@yÍ]gb¸Ãá³?…‰¹º—¹Ü¼tŽÕËA¥®ŸÇ—𼦳:P0ÏePÌ…PÔ¢X˜° ²ƒP_ê— )®­6¹hsäÍ_zqê£Y”xˆÑ[¹à7ÖaÃírjãÝ~¿E¥ò©@&‘ ¹ÊÍøÚM,­ˆ,h²†›T֨͸H3÷& .?!qdHÃò$Ó hN«=IÝxÕL0 HÆT•'éÀ虿¹¢ÝUä>ï#q⊳º‚{fPN7†€JQ¤±uPoLF·Z5r«x­§ØÐŸ5ibӭת؇Ùšø©'1_$Òn/˜I”Ý^ðÀ"bmìï7g”—</5&f¤D=^c3;*fs)4JUBŒÌh_ Y£ÈMB$^•ºÚF -ºï̸W*¥ÆúýÊœ,%äo¬ÑÈ¿±9ŸN œBxqj3}FÓØQª4‰ŽÍp‰(¤^0¿G~ƒûmKô,×é`Ë8îr`’êYCòPDK–$ß'µe§¸Œ"ƒW0D±òKQñŸ”W°1ŠX¸ ËzHÆ.©Q ^¦?R9‡Ž£¾œ?‹¤ûçˆQ¡mÎØc™[¬{X–’ e˜—Ò ª¹M³0¥ÔÐãŒRðfzn¿Ô8Ñ0ú+«ï{í[ 8‰üvmÿ¶7 œîLö ØSÕvÏþ}ôêü`ú™•ª”©—u£Ü\ýÊV¿ |e’åƒQÅtg )#È!’»3¯€bÌÊ|ñ÷íÓ×AN©îç8Žtô@ùM3ÛŽä=1ô'êÌùиm`ˆ»‡Ç|â‹+³ói»¿Y°£85¥îù¾kJÙî…Gwzá´Î7y©›¼(U¤dníbŒ%.´zû4T·g·Ùœq0¨&-ŽövÎg %PªtàWu]f. ²¥ÆU!>¡ ;ZHô=7’,îÎüÑÄøSøøïÓCÓh>PS({8ŽãLÏ`$?1Q03Ýso‰ ¾¨Ë÷s>ŸÍç%žRIïÁ°{êd!ÖëÜB¸;[gB‰ñõðïÓ “ôð”Q߯q”iÈäáÐg¦5fòÍ‘²s>2N_dœ=,æa.šÔ§é‰÷e'&Õ¤êˆ_‡µ¤hˆÜpT?äi›k‡©ÚaH9’\LÍÐ`&Çþ’Z¡GGù³P Òãó'3rU<ÉtN<‘þ?'sÄ1<]a* ƒ?I8ž$] Oîë\x’êNxòuG©ˆ)”È©ãîã0S3”‡È?ŒáÏLQÌæ%&²£¥ç|eœ®(±öÀ˜Idù¤÷9M_¼7{‰ÐNªÆø•XMŠÊx’æ£|2÷M¡4¤¨ÆTMŽaã_\qÜXŸê¸±þÀ˜?ápc}Vê#à*SÜX¯‡¥æÌ~ŒIØÊ¢ÇÃûUWËrc=E™4©cJuI'M¡äç³J§þ@O¥êäDŠåt çaò—f«^fðš(âã5æ|g"%1÷à˜MlIeõX°ˆuk»ž[±{ýàVÈ+xAW`~V šI±‚ÚHTzÐMGõ‡Ã°# ŒEÛ«œwÐÁøëúŠ^û¾•U=Ê~îy2¶ »µ²…)ƒÂ[}-UP·³#ðw,ŒTÅK¶!¹JûT§…ß*t—bH `âZ¸+ü!&n"véQ†˜TBÆü/ü‚<è *étõ3œNùÔõ.9DS>ÒPkrRJK‹1N-ßöXgÀù”mS}Êż`èžh"õ£—/Aàk—Cƒ2ÑÌʼn«›Ð·Óµã94@™š²´@ÈŠ=ZbYØ7×4Ì#Œõ#Èÿ’Ê.ˆ¹™(uw<…ÒtºÉeŠ+b;ö9{SÞI•12}hÃg™Çƒ”%¶YW˜öviJW3®—f” ³zLɦíL¤fl¥Ä{wa×cd±ín»™Z÷>¼; fÈÀ9Åè® ¾&?ÈwŒ<º’a[I–Pó!CAV‘Úæ’Y_EÕz¸3Q—ˆy8 É_,ü႞3sYO¹ÇÌKÆ*UüÞK~µì&&P¾ËúK¯5bÑ…î¹ÒB@áòBú6>зPÉYE€:í&g‰ÆlÒŠpQwVÍÕ—ä•–²ÍŒØÖ ÷zBÜ¡šŠ>²ú}Wû˜.Ï1î5·ÏÄŽ¸²aóÛL§;2ÅqF¬ó[.Óôƒvkº}é L+·Õ¶mñtXtõêçè3P…âÏpåFŸu@øhZKÊr›f¬I Ë´Ï$_ÞÝ$“À•>à,$Àƒ„Ö o§³¡ jæ:è° 1¢íÙ|vÖ¶[]L¸Õ³{å% Ly Ü ©¤:ûT3c`™óðÉZ¿ŸkžÓˆOHp{´wËCw[Wƒ|ú~¦dRì«h„t†w¤œíˆÕêruU(ªL"S'}¤ªeq?¤bwÿN”R²‡V XÎMe½Š;+ØæøtNCl«ÜöZ-<CX—/O…+–ë;ˆÛ0Ûrìh;o¶H#Úü"lŠú˜àRšsÁÜ,EQü –o–÷÷K¢^ÇO«Ë%TÚhÔuxòÇÞËÅVI,­¢ø©.ð3¨ºø¾ÿS4ŠŸŸ¼:=•Ū¿ˆâvQ<†öàKE ¨ÏðªÒÀÓÚkä0 ÕbF»NQ¨,/ÿ7­Ø QÌÏÅ$à|,­/#pÛNônYùõÉËEXm¨»¸hS+ß-vJ%jý;ù”b@α’cï›E‡’8â'±ú¢óø±ŽÔ¹­@ ¿‹¹ÅàCiI¡¿À. ¼!fcǸU‘ƒâ÷,øµuu"Á3º©Bçò¥\•bf`WÃÃ2qÙó\ êzqARLþx0R ]ØV/)žpåO{—Oª£M¢D$¨ëXnc€ÃŒî’†ÎÎwwš¿ímïî½<+õçp•3;£´j/^‹'Õµ%áßú5\í>퀎èKõŠ’XbÝ®ÓB/jN:vI¥ hOW…Òø“áàG%M´¬Yç nõ,Ï+ËhjÁ7ø0ta³Ð†Þ¶=ÖL|tŒúZ­¿ ÁOAw, + iWïrŠ I}T¥Šψ@³¬Û”/%#ô›Ò`•ËãT‘ˆ¢ùjäo…X͹1åaÖLª'3»1-šSçŒy4úfrJ ˆÅwbE-:²¡² Z.9Yín§åX/²Z>†ozܼ‰Ó±+Y•d¡…p±{¸¿sÜü-cä9$ñ3;PI©¨ºØÁqêt{• §Á©øW& DƒKçƒíVÃŽ>ÊT9\æ±oŸ±Ûð×è5—*Йu¸ø–è× O·wþµýb¯"ñbœuEµl”D†òò·®éz‰m\¼€¶µzÞ{!SðÂ^cHvÝk[\zˆþ?È‹TX /aŠ[Ú³K«Œ7ðUj¥nÀNÇ7]JáWÌ­tI%öß_’k©4y}.PM eRbì¿.@D7~2\1" nIz_âOrr¿*eO 9Ic±ø¯Ñ”ÌÏi¡$*39%Qñ{RÁÈ¢$~™¤¤øûo˜4~fEH!ÀlB’e¯wmX"™ÏEÓ¹a޵Öí%žãÇÇo=×êKÿzmU}nÙ—­Íݸ=dù3¹8dù̧ûlŽüÛg©ÞûÛèÊïæ~úÙ~ú„£b£rÁQû,â¿}–Ëœú»o8b{~ô÷]þ‰Ór€S½Ç1¦cލ!ÏìzOoШ5ÊÍùĸû<ˆ¯‡ÄÂ’ÒÕ´»;÷c!¥¤ÞØù¬#å²6½§ƒÓD‹g~M'횎¢"órŽf!/Ž!}–ÉuºÝ™…’°/ß=<œQ  )=±¿«‡¥æ||DZ­,z|0Ì]uµì~n4uL‘QG‘N<¡Nøüo̧“FýžJÕÉqè çaò—f—Ig¯‰">^cÎwƦÑQ˜{pÌ&¶¤²zžšBçþì'FGé t¾+JËŸ£ÚŽ¥ÏQÓ9W6³3è˜$ÒQ$N„ŸÄ˜þ—S@ÑqvØëÏ& Ãz`âäùí¾::E@"†”ˆßÕÃRsA0" ‘ÆV=>™ ºZHv?7š:¦H¤H'(|þ7$J£þ@O¥êä8t†ó0ùK ³ H4‚×D¯1ç;c)Ì=8f[RY=O Htö££ô€D_‹¥$RmÇ©éœ+ ÙA‰L’ é(”(ÂObL_N‰™ —:ža™oŸÕ-?™À<,§wPXéºr8ªšžs¨¦z(—mJºôœ?òT¿Ýõú¶Ë^øR¿—•ðÿTOÄs¥ŸéD‚¯›ýLÿ|MÞ#ªÜºXŒñ‘• Ï‘Oèµñòž]×â®Fº„rùâÇ¿‡ŽY:‰È¾Oà"•¤—~1EôHgà#’Àé?I’b”«QÇòƒŠãú¢q¤Ã–lÊ’»™•îç|dBÊpAŠÉvi‹{0Ô6s¤8Êfä•”›Ixì×´­+ *½ ô?îÛ­ºá ´õvÄÉï£C9z#YÎÍ›'•goËKH w‘ÓZækœt]ÔÅ» ²Wh€î¡È ç¼ÌC%þèš#ôê©àEð‘<F\ñ=ÞCd³n(ÕäRqð°øV:³†ŸüƒõO^pUŠ’€^?R‡¥Ð`…_Dþ•ûÞõ®Ýp±Àx£ÈÀORhK.×±ž&ºnl6T¨˜8.î,&Þ:|Ô =K­"‹ß]mÁI¨X)ï%)²€—|<^ÔÐ2‰}˜7ä]Û¯¶n‘v)®Pî2:":, )Z®[ÁëV¹°0®°>,xá×N4: ö¶*ÕvÐQ8í(úWƒªWÄ`ø±¹±ß–$¼ @œ^?R¿/!n€KÐz÷v‰¸#6wÐÃ[ôbßéÚU g–.!W¼8~¥ƒ¶ù¹tñŽh\{;çspO\ áÚÐùb¥(ÚX/R"Õ#…TèZWx£¾ù°· `‡Š« ·õ‹*‚âÚj‰{¤fdc®ß4jTÖV?GïÞàŒ ^&áÍûÑx‡êää/Xe´tÓ(ÛЄÓ7ù½Ÿ_9¾²nP0?XÞûbèt‰Ù!žóˆT»; n|iäÛ99€vÒ€äŦ0a4«åF)ÿƒJ*QwxcëQ4RZ…ƒK|ÊQp|¢ï7ûÕ¥CKmXP1ñ+j p$M±òó«¹\¹\püíMm¼Â ˜ÒâÐ)(VÛ@|G Ží/„ب–P·‡-¨)ƒk“‚¥@‚àC%l`·¼K×ùˆe„q~eK¥ãjE*ô`CÚ±œ.ï2d­DW èþ°…&h‹Â¡ë;[ž×R€oØ„¢J  kÔ(AiS¤+ÜÉ&ÆK[E©Ãø,¡åɶ«€”0u·ŒÐýKkЦ`ÊGëKÐåc t_/adBƒ£¿¶Ø„2°Iõ0T|z‹{'ÿÖà+Lžu ¼ æ°†[c`\ /+²k¿‚p¯zƒËœŽ©JKj«‹‰“ÎùÂí£´¦0è*ˆò;C3ÂʸYõ¡T¼ÇñŸ!Zc*väÍ—>ö‹ªèo„4D„#žÈ;jZ!>Ìž‹èÿEô]%ò\Ïð\Ïð7'€s†Å⟠ÙÔ>§Ö¦ôWâ“8ÅÐÌ iNû¨>"@¶·}–æHï•ÃÎðe¥C^˜Õ4Q<,€ØÊQ¹“|ÇmaØuŽ[ˆŠÚõÀ uf‡•<<ýÎa w »°éì0ŠA1‰<ô|ûÅïÛ/CÐoÞ–8kÕñÉiاæîÞþö«ÃsÕ7\œ*ù”_»ð°LcÓ“Á˜§U&hÛH´ KÉ‚›æ-ì³+Ÿ!Ñ=ÉÅóJÒ -©ââÖþ,ÔÚ[¢ö§(?®µ‹"šQãnëqC©¿‹g[x—+¼<2cOÞu`Q¢=*,{Ÿ!±|’Uæ˜r`­nÿ¾·}.öŽNAíÞÄ'ç*¬ÛmY}ÌÁ‘Œ%ïxHðHf;s $.µ®,÷ÒF8XL§5`à3<" db1Ñó˜æ{@²äP+£obª4쟳ZA÷A]£š…/ºÛƱ«V£âWMk(}‘Ã^ϸëÑQBà¸M\óõpo©à¿&¡H×QÃðM¾îÞ‡6£[(ŠÊkÍg*ÇòµÌp8ÉÊ,|§ÙÎâ¶Tw ³€¶æsƒ pø’ öˆ]ï!enŽ#£ÇšÍ°Ò}œRF–¾kc–¶Ð™tF³­dÔJ¹…T­ÓLæG`Y©Ãw ñŠ™ô@Gj‚ÂeÑükèì&„åûÎ¥«²w€Y=çÒò|= cÌÐÑpÐä£Ýo…i?xô¾ÍæMôß±.0Žö6<9[U{rL‘JtNû ÑÛxú>ÞèþÁ룽MòaEO´jÚ¨0l<]^]æ‰À-¹.¦cðdÚid‘ÅJ °³(‚AO§þÀþ@Ù‚&%roq{q)ýE—b»Î{k}¹XdüÜ.lzlßiCck«¢Ò³È™Ÿ *Öz † £šÔ f8·3pnž¨øÁ…µxýá ~ñüΚü».ÿ>1(&„ÍÆáV_Í|ÌÝfëûªYe4 >ªbz>ý ÃrdP¾õŠ/y¬’‘O²ayBØÝ®öwÈœM† ‰ØõBJûÒˆga±H)Xõ’®^2ãÕ€Í*Ê¥ª±¨(}ɾn<q‰ÙH6ãžš]€Fh"B2;“_e· \ä¶kk`‹•JÛñéþ5 ¼ŠC~Í%ÃÊ>’0vw›{¯OO^ž“‹ÔdLˆäÒ~ùÎÇXE?2 L˜Îf8’,È?Íî 2 Ó”.»Ã÷f²µ£&ÛÙŽ~kîþóŠRž1¼ Ä ß‰s°+Ëy?O¶¿a±ªAy¶ÈKläy±ƒ:çò4ékà½ÇËÝRÒ(Ö\Zcû²±^¹">Ý¿V^ý?ö¾ü¡[yügüW¨‹û Ä^9ÚBiWRÞ#ÀH›6NÍÚ^`{×ñÚÍñ·ç´ÚÓ¤i?/´{WI£Ñh4šã%7‰ÈÁ—WñeB²EßǽAVÊÞÉ‹ ¯McÒPBTÈ™%O÷Oú“uIæäë$¥.¢ì4¡ÅvƒË~ßYzò©m^<øÍ„lPV&1šÜ¾=«wóê!:E(ÝãÇâ¡}CK²vëPÅm®ïbF89‡´%Ø„pè:r‚¸Ý %“ûî*ƒ‘6°)6v‚°óÇE¿otë?£íÛªb¯Ù{ ·o91ÞÕ°–üa@a¡ßú& ÿ¿ƒ—|a‰ÛT#Ï ºÂ$£c _X†AP´g”7ä[;Lű¹cˆhDAN.zÀÎÕ£¥çGº£†9]ÓûnÛH`›_û/ÊûÀ«ð[R~Ò(YßC£gš é1¥‘S:9äŽ£Žƒ,’O‚;ï þ¬Ú«y’ûRæÔ®$î‹ ú7È‹e¨þ²¡dàÈX¸Zú†Õó]éîF†&R’ê;ahfGÚè]VÞµª6í| Ü”¿Çú½ ΦùÅ[>ˆ9µÖÞººÔaÐmØ)ñgJŠÿGíÆ¹Ôôî\@7ŒŒóâ`óú ޝg<Ÿ@Õœâ¿j¥˜+µØ9bây+¨ÿ¯H¶¥ïqøaeYZ™|içŠW‘D”¶"QK×W"—–±&{Þ#7™Yøyð[n@4 •O9"æ`šé‰]µSNkäwèv}ûÇ<šóäp¶gé{’Üa‹ÎŽSNÑõ°ö_ø¼˜˜¯qâu¥­6³eØJøûf©v–jþ¿`0è‚@ªgð;¡àÈdTóxx#³Kdqóí“æ“G*50öäX¦ñ¨þ»´øÓ!$Oþ/KÂãUR)>È¿ÊW³…ÁÚPo ç϶· ¹ÄÑ•e-‘:mò+¢ >Ž-ëdš{@ÃpÆßa`ûÎ¥{«wˆoíM'çß=ž±?Z’,èRïÒ»×\ζ•ß¹_åuh~¶Ò2™Í‹§NkàÁ6²åâ½ð~ÜÊ+¡8õ`"·µPùi'.êWÿ‚é¥qþÍ7òÃwËêÃcù1ŽàY™ô3û†G÷Â0ç%bG.ÃF=:íiƒD¯KÌRjS–œìPpC¤é¶Oc›Erh"ÀÜQ«»ýK'K<_4:rÓE”·.Ôßsüà;‘ÏÞÖsñrå[{¹®(zeÙ^©Š•{EÈ££mÚ=·º#÷œ§gÂåÛq¸|ËŸðTPIlžÄ¨ÏÈúíg¶7y÷œâñÛ3²>^:ù ± »eØP«’ίð|I}oˆW+µo^Û/¾µ_-×¾f»eJl0œ‡tZA5ÌÏÈ®ÞÔÉ%öxšAÅÜ}"A4«¢˜Þ ))øij,‹Ÿ¸µÿ'Ïõ°;&:³m¢o[<¶¿ûÔ}az3h¨…¶lœëí§¯—ïËAK H1œä¢HaC1²s²»4ÞÏ&–´q¡¸í»×a>£Ïø¯qvš˜ÿý#õG…WˆµÈ¶OžÖW²Øö,Âì c\ÂÍ@‰¼ŸbŠ df¹ßËÝ^îõáÈ—Ïñ¿¢O²›ÉcŠQz6Šš ÂGc¦4Æ× Ñv—…AºJÄþµWGפ0ào''ºO±fï¬F­Äô¨ÓˆM)5ö…¨gä{7×@â„¥vðÐ^åçðùñDáˆ÷â`ïåçEô³]´hÇö!_U¯›Ñ0¡õlzž »°oÆšC; ]‡ŸRH}‹AuAW¨µ©ÄÁ Ï¿@ûA´™\2/X² DtgŠJeëÄÿý¯á¿¹iKaÅýŒ!´î\o`Ê] G9.xBqíÉÌP1ºç½™ž"â2ñv–Qx¥0‰5”,GƒÏœà¼Z¥ÒfK‚9† º¢ü¸HæœLXÎ5‚N=)Säe_ލŒô®»^ {}yà­°‘±òû†5ƒäw§2zZN·=43°ÉÄYíž%ªjÈ/\º_o(?l|¡žYÚ9;cHV¦Ô“òËÌyˆS 鞙ܩ¥‘›x’ubKѧ¶dËé’ÓœÞfî²íË^У×ÂF3‡Çé³ã÷Ù^Ÿqdè*ƒo¹Ð_\Áà–úèyñ,¬£z™kÝÇA¡L.þУ D òºÇ¬ˆ”„]ˆ[§'Ý|®º‹ÏâE$û¶í Æÿ)¬€é‰$Yކ/{ù—½üË^þe/ÿ²—ÙË¿ìåÿì½~.A‡T<¨žrt9­ºÎÓ µö åAcµf7h›j‚yeÍ ¢ÜñÊ~2¢`sQ•øõ­Žb<«xqÍNCX&WEëoh±DQP1‘­Î@Óx’€»~´;ÑÇ–) csõ†Fsªƒú×c\¼I³¶==5FR•HÎ&‰Ë(3K0o`ÃV"Q@ÙÎTH¬Ð¦^¡;ƒÚ k‹q,ýÐ9O'–Kæî½hÌâ‹CŠ}÷‡’™£×x'oDîEÌVÞr¸˜"IYj­Êû;‹‘Øœt±.Lõ8;ØØ‚A F>Åß¡/ÈͲ9òÙܵ##úásŒïÑdϽ¦ôÜcŠUYßÚ½N¸a|‡²PN?Öœ‹2‘dÐ2„˜¿7§/”*OéØ.[’­wn}§'¯#dÖNýNöŒ[­”ž·öZÐXˆ˜ò¯\ßà ~Üñ/(G’¬Ñì{}WËJ%¬ÛK¢^ÇhчôFoA:(Ç«H^„²gôHõJ]ÖÏy³Ì|ØtZaÐ ÝÄ[è8ˆ3ùRçx½ìyþ(lî'à…—PIO6,å!†LÁ‚ò†Í¾— ït€š2":Ô ÔPð d‡Q7šqù51ᘵIÑZ«ÀÄ_ç¿äÊ¡.0¼!£ÓÄEÇÀõeméºæ«yv<í¨®„êô@7”£«ö¶[“ˆƒ¥¡ÜPÙ1g‰)}É×QQ–¹(A"œÅãHûÝ™¨~S„aFqÛûÔ•¨iY¯dšC½ëÓïóŽ\ ÎO¹Xf¦ø®èBŽÈD›´dpPî†2Çxç¾k ±Ën¶ÀR÷­ö{{©c/U¸1eX3„R²ÅV›2dÎcˆõkôvBºå’¡ƒ¡<üA­J`b£B97÷›‡OŸžìbäÜ­ýÝæ{õ´ùôÕÞÎë&ô§ l“Y‹#ì‚ ã©ùÛ¸ Ĉ‰Gmç ËΧµˆÁ.ÐuÙ';4\UŠÄS4¤ˆlèƒS^Ri8eKÐ6Œ©ëµ=8ŠFC€ßŠ+Œ«ŠÌ†Èäž#Þ—8ÑTP^ï÷ÚV8<Ô»äjDácLxEgÜqFq:šx5GaŽæa޹x"ÿ/öAïz’^‡&ô5ßrÞpà],¥+Ȯłؒ¡1oJð‡Ý;ô)À8̃_WÉÝx$&U ´S.4¸ø´Ç¶ï`Ò[åFÆ ‚0]¡ÈØäÀñ•§Ç¨AØ9wÚœ2Ó8ËÜ–°¸dÏ›º !y%j 2mt“ôn޵ 0ƒH X '¦‰d4Ó÷ìÞ£†îu½á-¹lfŽ–øOÁ5®Ê*²@|/u j‹àVB‹Ž0!4TUÉ·C¥…[µW¾³/A³°=á€Í-fäɵ]H»%.™EÂÄñˆ¬•Gâþލ]‘G";" ±ÔèbClˆ0ôºac±¡zC–I…^­R€£ÂR2’*³ÈÉGò¦›’¿K¢Mú†Išüzióþ4éäˆçŸÞ;ɰ(‡b§J«t{MÞ²„Ûë‘ÐúÃ7¤@Fb”i)qÅÒRJâã\!qÆ,Å0 VǦAþ'<€… ”,ø Êç!Ü€ŽFá\€= ‰•b(Ö‡œå™œ¨ã²vÍÅø1Ðæ‰æ¡`§yüâ ‰©ƒè]¾xJ±H€ð©ÌïÙ‘#Wr§:5~]“¯+ ~ÛÃpw¯cÆ–ªÕH¬©Œ¤.`ÐéjžNÄ_»t»}å’[¦ :8©Å*V2èH¾Ÿ#i–iÖ+‰ÄŽ]&Õã#2y)gõ>£NsMÝê$3yVÊ{¤yé Ž¹·©GØ;¼ó²þþÞÖñæñ¯Í½±Õ§®ÿóîñÉÞá(÷œ?‚Á,ŽwÞc÷ÊC6”ÍcÿšÊFØké9ýX>Þ<ÀÐløàãB»“F)#x¢öpu1>¡âEm?&S¤j(­—ab:>ø°áOœ+2¬Á”ä±i ¶<·{ž%<ÌeêPMuˆõÿ B·)¶Ü60è–å÷ ZÿÝÂKX?ÐÁIÉGI܇$ ´¤›QYï: 5®\Y×™$ÂZE~yïñ$]L¯N?`.sOËS†47”Þ4¡ù‘p)—Nª‚ó/)'Ã]·ª9*|'ä ]Dåå¤`g_ÇŒž† 's¡[5CuLÌhɨb¹Zxj~¼=Z÷©0GY³Q©Ôµµ½óìøäõ+ñºŽtøÛX ŠÆb½±"v6O7ëëaýwzÕlú½fS€'ô)*Xÿ}!uàëͽÓ_4Ü)4ó<Ö„*òUóõƒLm¤ñ¢ùê)+$éá%j£_mÖ~sj‚È Ošn÷}ê 2a5ÈÓ`1[1blçB⢌sór´r }3Ø·sáÖ0n†Ð¡[k5¨Œ]D¯Ÿò2Ÿ£ƒ3Ùé0YëpŽhätQ}ËzZÈšsþ7„ˆë{áz<ó†ræMŽïx‚²ù\æþH•&;»OñœÆTè¾$1‘½šCjbJ1ÞÔo,¬c×%´öH¼ ñ­ìAã½Ü£‹@¤LV‚Vë}³â[ú ¾3K$½#D»Ÿ,•3?ˆ²(né!!¤ÙŽìcZîÈ„Àv@ɶӛ}fåsï£þ£¿ÜºŸ—4§ÝâÙ?¹äšºX‹˜rõgU÷gš ¨@šp‹ /îÍowØ@2–#åêåw<ЯËrëÄÞÁÞéÞÁÉéæÁö®8Ý=~®¾dÈÊJŒFÚùXš“ðwvO¶÷ŽNQDE—@.Cvq“B€mD<±ºw´¿+N~Ú<ÞÝ™€^d㊻½¼ÓÓ"7ƺÕĈµ{¾7²–'¹/õšµÿé$k>â¸b7èãßñ\ƒÏ¨ŠàÕð´ÙŽòRÚZt.3æ"ìZX‰îd4t`~ëësóI |)ʑܑ¶¾Â×x#¸(o†²{öÁzw*…h@? jê¬J#ÂcħN§#³kÊ©ð&(~ïNᥚ¡p—©çà'd:Ê¦ŽøÌ»(dÝRì’ñŒsØûWh•`ªqVæ­ðñÄܰè}ƒŒÉi_ŒJcŽÄ£ª,@|w]œü6¨âµHº|Ã:cºO߃Î1Ýe£•M&ŒÒ=—‰=¨Ê ü»å(\÷ÿ"Eí¹ô™ÛzcÿW)#FÌ×_çæe.ˆàð¶ _¦×<%)H ç&P ß›ŒD? pTH°fÔ{ïÜŒôO3ž >lGçg²I…ð/¢;¶äÕš7C=«hü"ç‡bô?=<퇆–&£óàçnº¯ÚÛ¯UÐtõ¹‡Óé ¦k2ƒ¦«é ×é2«½éžƒì2ÂbæhÞöÞ„—ØÂR”Eà¤PsI¡þo.±lûuiÁÙ/M ^p,ù4HKŽ~]L†ÆÚŸß¿ÿ{a1EŠÏ*±pòÎŒø÷EyJÒân…÷ù¨ŠÅ$¡[•»«úôšNš¤åÙŽ$³ŸåH¿ì~òNðeÌZ‘ê`4Àe«€™:k.ˆÔuÖÔ+ëõB…H 0w O]Ý5±´.>¬OWÿÓÎ >•x®…í×ÒÛüÎ¥M к0GЕ™NŠŽÑµ¶l“¼X°‘ï9y”øâ\e*lÜÌz¡¸¹:p'MeBé’]ÈNŠ ×r–íÔFs©S& ëùztäJ^ ¨‰K.ª¹é—ÓÜ'YIŸp-Ý}5 q'd'—Ê$ëdŽ–ˆ¹Ê¡˜W“\Åøî¬†Ua£ÙÜÝÚlâwÖ]QÓרêUÊ-:É÷'[„29‹=66òÝ*ÝŸ¥` ɾü¼ßÆhõ¦5T$AÝ ¦˜‹ŸÈë NèW‰kï­§;bµa›i;3¥"Úøkó˜Uû[8äK›xÃÆN2Ke`H Œ Ox*¯-ÙÕ$­ Ƥ‡¿¸b4¸pɘpˆQÿbàt¨‡FÙÆM&¿Cf?@ùŒ¼6}6H‚cN23$ ‘©!‰*¶BÌZÐLîójp½ªtf&ûCiw˜².<Þ£±Ô—•4ùEµÎ<‘mÂÌG‘Ê<‘í¢xóX»nøþ¾/N½D ëµÄÂì< V d€ÿÄþnÅ^¶*w9¶Ïo|²}ø™WjÔõ¿Ýz£Ó“'1ÏEè¶Goˆ^‹ÐmX•‰\/½‹Kòed+_¼z¡¦ltÆ0ðFGy+“¹{· p›Yî›áXÊ@vNÑ£„?„Gwî ôŒ½©’†¸ÜaFj `÷íȃáFTWOèšu;¼$˜kN¯æO§-…Èûâ_¸xf‘Ž?©I¾Ð{ÍÌÂéæ›K ‚Rtœ"ER†\‡)ðCÑ ÜÚнÆ$=}S\,ñ)v÷’±Ñýí¸›ØTæš/›æ_¾ijz*É ˆEÕQuãš—D@Œâõ=î]‘ÔX¯tZúsôáôÙ.ÅpOÎyëà-¯¢ÓÔS5ö/bzËó"ŠòxÝÉæØ°+ˤ$ôi,@âG¯ÖîZjúO¯¬ŠÚOô»õ|íäx7Ó!³ÅÈ„ãØ­±;¶Äœš\™íYÆ´B¹¿¿·Eû”Š.“ïe¬8Ψwîq°†Ú~Ê~|Mª•0 {¢ZÃýÏÉ[U/4ø â#Oe6ÏhÝ.ÀX…-2ÉöÒd‘v1òn^=2mXbþf™îfäÆ9ЫFŽRŽó«¬t×§ÒȃB_\»¨Ž® È¥sEdcRðæO“î sÐ/ò–&8í<@bH_M©4Þb’ÎçM×nuø›ˆãÕ3»½³¯;.:¿WeLuK:ŒÁ ¬Ì)K6Ö®m“GúiôtKÀž+ŠB¾%(fte÷{ãcc(ø]Ÿ\ϴߺUÛŠ^pe1D9šL¯¯]çÌiE@ézo\éøÈJ±d ”¦\wZôLíNžÅN(¬_,îâ%²qìG›ªˆ7î-žÄ8ßOUÙ%¬‹§dÄ›²ª{=]‚ÄM ó*7”Š8‡aPègÊ@‚@$¦÷»èŸÀ£ÉªYPã÷èƒçÆÕÜŸa¬9Ò_®Em«oî‹q_ çú Y›¿£˜Š ²X°HN­E¼–‰ì$l%üb-RÆ…pÔ ‡|ñ°ºR]Y$'Oßr3f x§/ Q,-,¢K| "¿û€ÿ™ÎµQ–£Åœï2r¿5BüÄ]GÂúúl½&óÄ£Æ Y퟉ÚÑvÿ¢ûWá1þàçäƒßÒ˜^ÉÄôÔ@ Œ¯ÌÆÊij"u>ç£ðÄ›ÏU°àvth 茗b¿xÈ =§‹Uq¹„ÃÛ®~m#S¬µCrÃEdzkö®òU\ÙšWËiàl7)²ÒC—¥q($¦ò4ÓG÷Ú•ê|ÆOÁǪr-¡‘0O¥’Hd`mCGÔ8u;°u‹l9ŸÌqªÙ¨µ`ôkXÉ‚÷U?°ð¬ãµlg‡ýó¢l«*Wk~PÉêê·NpE¡Ìê·8úŒêƵn|—ò€”Ù¨- ÉÂ}U\/v°˜l+ ô´£Æhdc›h`¹­S[áÕàQuIÍÁ]Û*@bRÔFQè‘ýjõáë÷ú“½„Ÿ_=fiޱÓe¡›nìå:Á[v©¡X é醗0Š›²,O÷ò%š‡¤ ,Æ.¿²Ù€Ž½ÒrÝàà-¿yÑFh”G¦ä2(笳yWD´]oD2fµË~Ðj y‡ìUVNc” >³RLV:C£AÇ8‹Ÿ¦é¹Ðíœ`7ÙO΋0Ù£¸¶—:6¢âÒ|¥%p}d— Ö7€PàECÚÕÉ4£ÓŠ;$|ÊôBˆEÙÆxõ!ºê1Þl”S…U\x#S‘ñ¶9[’"•ñÚ—0qßßÜÜF³‰( §JT_¢ÈÍQqØÈ–ê¥%tc ‹¥w¸hP¸ÃÑÀËë¥%†ˆ$Ò¹ßl7ñ8A“kÉõ–Ñëç4Ǻ 5qu“Ÿ°hQ¯bñ—vý÷eù‰X|EKÏE,•땺zÝÇ$ä•’ÊXb6¾qÖ¡;îOé_c™”öÐ'sËrz fÛQ銑;âÉ£Z Ö5‹¤êK•¤-I]Ø%CÒúSçß00¯ Fñ6{0HøÐCÉøT,áLŒz8åg#Êj<#1ïÝ[…ƒ:|[Ã_%y3$s(¯²f)büc­(Z²Òš”¬Ö*¼ÁÉÇ–†“m=Í…äu·RŽÆ+©+í377Û F¨VZ\ûmáívNqÒø®­ϸ¦ª`­‘TôŠŠ)ØÅDšñÌX” …ëØ³uwß·€‚ü–eZ€›3a5p*Ì^[•©f¦±¹±Ò““‡cU¿¯––©î´qÍenYs_6«/›Õ—ÍꟹYÍÝy›bÉ$»HKïU®~r»FÛ²ptBé=Íër²Ðû#í;)ØPkÈZvÌH—¹œßR?…Ÿdìº8ß+1:îÎKsÃ*BfpéH+<-H*ØiP7ãúhôÈ8D›Úæ&g£j+=S¶@éí’Û&†4æ°4ËÏÿ»³w\P¢¢ˆ ïœósKv7¯ßÕº›µgaU>[SªÆÐ $O¡êc^žD´˜²^ «>KJB‰]Û2̬ðkêZxtU¼n4¿æ.4+__Xg1ÒCŵNœ¤x*q„^ÏÃü£¨Ž®IWc¨´€Bñ¤Cîtaºsíka­§ŸZŠ;Õ°‡™rO4=ÅÒ©¾•rº™¥Lé2Å¢¤-]¶ÓWYZ½g„CJ÷Û nCã1~’î†W$„ñˆå fÏíµÐ¶¨üEè>9=Þ;B2ŸµŸ’ÇŠù¯”ßBaÍE@·^7—ƒ¦<äWÉ9ÆÌƒ¢Ž,©WW-<Ŭg:J.føZN8n¯×C«jÕÌ<ÿ3w,µ—P)´ítû£ï°.qhfÙšêŸÿ,&b±"»ÍDÛhŠ\þð%ð¼üø%ðü—Àó©ÀóaÇ{õèqd*{ë¡#$ L3ýn™ÓŠs§±ýHÞr£°›Ñ×5˜1QØ3c/ÈW]¾¼?`9̧f¤gST& ÑŸ‰3—´Ãøw…í)ñ06$}^RbŠI”Vs2)›èHðγx Í«Œa4ÍÊa k§¢ôÎé${êºåwDT(T {8:˜ÿ¬ýÆÎt!š@ —ä—Š‘Òí%ÌWµ¶÷ü–ášUFçËf ^2³ÛEÌXu7òÜþ¹¡¾)Ø·•T,“ܠÙÖz¬ºL4œG£ pÿ<ˆÐr b"ˆ¸HØ_ÿ^¯‘*¡ÆYc\~ŸŽ°˜öʙ͙AÃeØp °ÜÑL@dÖ¿ £• ~Æ(’M™äA˜”-tîU~£s"FUž6-©¬S/ ;d¼lä®ÈÍŒ[‹•á`„g§ ƒÉÎ¥Ó¬¼ÀÓÏq›*bòáñûô#J¶:÷9AT)¿ƒ´cOÔŒ%zÀ¿¦zïe(°;>±VDu¤Mi7$G×¾ì8½<ZîvøJK‘ñé%Õ Ëݰþ}øâôèÅé¿ãÄ2lä% žî7³Jóƒkzàãϱû~ÉÞ}¹»h“£wq)’Z7ŽF8éâÉΖÓÏ2*ÆúÒŒ9(uŽ\ãsýó̓½§»'@é€×íœuµF;=Îá]:ì0‹QSeH²Ç’¨ñS´q ÚîZVq2žvo¼¡X‰ãñüNÆ[%‘¦r^l² …²‡LÙ<¸äÿˆPÑù^'/Q“AÉíµ&w'Që¶ËuåÄtñã~Í«53Yu~ÞrÅš#´pJЮ<ÐãH7Ð[e„¨ ¢€%“ÁÜÀ+Ö$Â?ˆ%ü« €§Ø ŠÎg O ƒK§[ÍPøf-S=Aû(á=rüâéæÓyZÛW˜¢•ì/›xça2†\mú§ Iº€¨73DAäÃbɼr‡QQ7Q9Öß™¬¢Ü¬Á´6oKE§%Žžú^G'U0ÚŽ/é+–ï3»Xy¦ÓÓ™®cΦ”Æ®ÜA+ݦÚt7b8e푹ZØr@%‰Å¥ÓȾážÓ(ó{ÅuZˆl¤òÐ(Ñ€ðÔ(S´ŽzC‰¥2ÆC£Ûd¡ÇÒQ¶ B?ð <uc}×ÏZ Þt݉ú›Ñ`¦65Ž’ŽR|Ò¨FBŽo(ÁX…bPAÓÿ¾x‡GѰ²P#ç"…JŽ{ȹÿ ;²ˆ¯$b`D&Ušõ_ŒnŠ‚§<µËd¬ÅIƒ¥Ì”œhLÄØ^®»u²ƒÑ„Ù?Cå4…œ…•# µ< —í@)Õ·< ä °McP , ïôt„^âQJbåÞ“øöÜñQ)×õÚ (ªf$<}JŽsÚƒ½W1¶ Þ.^€àðHÁ¶à¨Ü­l8Œ&ÄÃaWÅû™kàp‚†EVwÃð[aF_4mÓG¸Êú¡®†4É4çMãÌ!qæÅ ÷¡‘ï ]Ä8ˆ; 9éyi PÆÿì´‡³%ý¨º_LM1Ö´òwz:H´sAî#CÔÓê‹ öDÊÎ-€‚]gà\`¢“ÛIR™E!âó1gLŸ‡V.û£›ïR1E²<½ÆÞ«H——äºû E×>jcâ¡Ü%“ÑGê¬u“]ß’N»^‹¥½«¢vâþ*“é¿%pdw–¹6>Á ôµa±q•œŸë&«Ö ˆ0}}!×ñ†R™Á¥/™¼˜ÀH@QbÚ%¸Q(¦’Qšäñ­­Æ²Œ S0™‹be9kU(OmXÕL;¬‰B‡ª/aºòׯTÌ#“|%FBH¹NÁ¸Í<1fЯ,”LEt©Ò&½¥üYéX^è<7vêçf Ò¹éès®€4ÓÙ2‘øVf"¾ôíÿÜe¿ï,a¶Œá&q&Ir ʓޕœ”dL3Åk€lÛ•Òqú>ܱý»®ÁœÝ³ÌKë“OIF ÷6lùx˜;qU¬¬ØËQÆ %²àå4èÙ­;d ?}·úèñÃÚòŠØ´±êнº¬|¾«Âx½…¯_Ú¯|󸆿ŸØÏލ$aà6ÊGg’°Ùs×Êïà/º€úAMšÃXc—sòË=§kµ¨g9ø—Lûþâò¶m³áÿºøP2<âaçš­Ù¼²aI)/‘¾©bg¨Ðø"#žF‹N½;5ÄÌ¿Rw„ì§‰Ü oC3,Æ)˜Š{åt>#Ýñê¦MúbtQfX¡›713ZËxŸía)´›qËȿ炃·8þ©âçÍ‹è[ ³ ƒ ’éÅ5[†‡¥s5ú…Žß™Ì‹Í>%Ά£([€Ó)™œPØîÚUR9vhƒü$ùRÚé¾An«­g­¶½‘N½*:ݰi Q‘uQÿ],=À²±6Mô¯ªz0ØŽw~ƒiV[MÇøê'‡Ð ‹µ™×àãjqþ-íàT–LB-›¤\BG‰W3ÇIYåì¾Ä—³Ö”g£\ÊÖ¬§Êø›œõÞuûѨÿ”ò{i$÷¹Ï#î¬ï£Ý/+ JÑ9&MdÊœcâѦ«‘r'opÓ‹žÓŽ "läM¢Î;ðn(>~ ø>ªÿ‚¾¡ðœBep¯¡Ï"×P­É¦»§´3h-t‡*u ˆ*p.­Q¿ì·9p/¼mÐÓé‹Â ©lFÝ†í ŠË ~ˆõš+Ý[¤®£A© ¡€)o¨Õ›ü.¼©Æ e}²zw#U(Ŷ‘‘ha¤ð=VŸvoU®Òžóe-:bðj‹»"æÈ¯®ÿbä\àUuˆB˜è»ƒFŒ'QCÀZð¤Gåô²Óõ¥KÅFut ¹­;í¶Û†)\ˆV³€Ë“¼–›‰²³I_ÙÖ\¶„eGIÒHùÝu÷ÃyäÑ¢Þ•É»í>\G1Þ%6¸€9–1<¦öS{æc•ØLLRÍ, ÷ú3êŸlaâ²DÖ`r䉼¢D›©ÐCu&Kb÷†ÓF«ErÄÂzÿ›Dj,&’Y»&ÅAæèÓCŸh‡¹‡,Ÿ{,ñ œ0ëU¦¹LÅŸäF-;'Hvµ´6Ûóa£ñ†M‚`p *q‰“ƒÇ]q2MêeNÃyñÔi ¼¶+¶Ünz&\ÜÅ+¡8õਹ­³¿š‰Ht»ç‹§B˦¿.eܤgJ`ÉSzKœLæô~Š‹“Op)ç»×a>ùÔ6ùý»ïE5éÀ—üa@á/ßúÑBR/Ñ¿O^Ŷ<`E©3ê #‚Ô»; RÇÎÌ»ƒô°ø€g†I8›pAœ~¸÷½‚§’&œ—@¦š¶ŸŒzªfÜÆñW3ÊÙóþ±5eg¢Å$Éä‚02/™ÉŒ'}W4aJ™”¡q&aU¤tË33“¯•.@ø ööN÷NN7¶wÅéîñsõ¥(›+ôîciNÂWÞèØ°T™†U˜r5aótS<±ºw´¿+N~Ú<ÞÝ™€ô@_ÜíÝ FTÓTÆÖ­æ:|øÞðÔô¬zg‚–‘BC[ðÚoíÁ>Ìnæ0¾ßF˜QôŸ_¸’ „8«øB‰âý¬³å¾ ´`}Œ¿‚¢}æVÞ¦ÝÖ"~‡e|C[ɕ޵Ž<&Õf¢\Ã"Ÿ:›’x4+õ ÀÛGN™N–«ýO'YÓ¸ÿiÜkÀ–€óNúÐD_´tPŒv&ôH²úó‡“)DóÃýÀô¡”1òeiR5–*Â~¶Uì?𘟙{.Wˆú4XúÜÇæ¿ÛÁØ öG(ƒÃßÇK‹pˆuB^Qn,§Ã‘~ð.¢ÖŽ$Œð‰Ÿ}}L©£þÿ}—̘ë´Ü ÿ›,2Âîße©ekÛð¾Äû¸³Œ}öŒ¼ («À¹°¾Å×a£á[é‹ «QöXD¦È™[º:Eu©¢U»¤h_–Q4åé]ˆt˜tχ±ªI§{þe§¦fâIbØý"Ÿâà¨ÞV(ƒÖV„Û&»öÍMd1¤£×1ióñ¼{[¸Ô2ˆ¯™™j>w 9»½–²¢ÖþÄ[[­)bˆœ,rÑê‹ÛµxºQ¢D½ø}f+²ÌåÀïd Ã5üæ¢:â\…×zce½[ *’EwM,­‹ëñ÷Ù+`ÌÀŸÇ—Ą̀H§É@eÚwìÒÏQÚ÷¹%KénCñØ^¶Ø”@Îf%C¥AJ½7§4}yú Ï>yB5Bó ÃNLSÌŠ#¶2JwÂþ¤ú¸¿þ‹;5þ J‰ÉL õíqf.fÍŠÑÅ­öø5¸0ØKF ¾Ž9%“>e˜:€Ù“~îð°…µp/¸ÁíZ¥ù[w„Ú&Ü4ÿ¬G2´b ®½/lÃ0ú¥Ž,K”©P~48½º*ÍZP¾Ujœì;NtVÐCêžXµŸˆ…žsÛráãc{åÇÅô³¹ÇŒ‰ø*™*fBOºö0ôU––H²”¡½Í5sÀò——Æ~‚›¹D†û(@øÛ†¾ÓáÛ¡ýN00²€¼@Ê‚)Siï8¿”¬W-·íÈ„šÃËzP‚˜ˆù9¥×¡M©)Û÷pÏ÷8¾« kÏpm–…ÐÌ';ÌÃ3µ{MÏŠbâ~zÓqÂÐaª?¸5Ú8k[2Öά.!3)»?…`x^=ʈŒÈ³Lûtè{Yöñ³_±e Šy\Òä^)Mû0ÔÅ?þH=znÏõÙN}~^@ë˜?½ƒd…ƒQ@Žö7ŸïïmÉ@ŒÂèí³A†ÏÉÛÎÎc¸•Á¤@Ó£­,_#”Ì!ë©à  €¨ Üé“£ÚÄüsÙ ÇÇhz¡s’÷ ‡í¾¥¥’q8¬ò[X×n6_Œ|M[•ýæñ‹ƒ&Ú`NëoMdh?üä.â9ÝÈ¿e‹2²gtxéùQú~µÃ÷«¾Û.¸ÑŸq6 ®bÍ™0&¨c– ûÙ¸ÁD‚CÅ:º¦ÀŽøåñaßõ_ì½Ô^øÞÍ/°ƒŽò¯íW+˯—8HÖÍ5>¦‚íࡽzr>Z}ôºèðGûemò2&f’ÙÍ'Ò»ÙçânS½·3c´$¼d,çÙ›-ØäŒíóžôìSŽ%“X›ä&??¾zb„#=†îæØÞ<88<%Ãd©o@Eíµ+zÞÅå„À2# F§Ôt⌠ÅÑ8†)s-ôˆQã¥`̪†K7˱>Ñ9Ò'VA*ôÚ—¸4äÍŒûNN-i(U¶¾î-ç˽v+×ÁÊ©pDrðÃÈt^ ¸}q©š' k8xÁGÛ0Ø–ÎfG‚8F¼s0—su[»,¸Q—à¹Ä­=ÕŠÏTºr9Nïs?¼a\ú¡jž0–ÒrM”?·Øœ#±×|á[ÿ+|k44N^ÿ€ð8º¯F>RLŒ’#ë“$ãrN‘\3:~ ?¤ ñÈ^5ä•‚ª‰1K‹²”ÃK˜ÂLcNštÜšÁÔ]!!mÙn¾!CvÓñËxû¯¡'g“¢ªg€Ñ’á¶a:Š•µÆ¯±ßKó%ŒNŠ<ßWÉvo´ m¸)ýåh"¬›rkµpnnÞß`îí9~²kl€†#Óá= 7§L)îµop°j9f_`’ˆ SÊRåcÅØáelDÜÉáÃq{Ø„à¨C»5e˜©aTܲYUÑvõ%©ƒ8 ö»kúÙhE˜ái„˜ µP õN«<4$ Ú¡ÛÃŒ6]Œ²sé»l›¶W÷< ®;7¾vºp"îÜŠ>*"B|mÕ € Ð¡¨³”SÚÔ 0Y½,:»R|f4Céˆ&ðJ$Ï)‹„fóEBÅkä;;—òä–³9Æ™›…ïà?rçf «Á8mX9XmXX_¶Ð°€ª?vzŽÜÂåÛE¼#Á7ðÕL£p£ü£1À1ó×(ÿK©¬+[²ZkÑc(ƒžL 7t#u7m6ê%>öüŽûÏF†û¾VÒ_-P¤ß¸ð5å{W·SàU:•ÓF튶:ùH߯R“±ûÔ [v8=(˜~tvÊŽo™õ47'™L34m˜r`ñ»ssŒu‹Ã%:qV2r$›å±/5Ö¥Ä]ã}½7$HxÓ ÊP±±V0f‘ 5CŒÏaÛLèÃ^¿™56~Kõa âE×FÖ@yûèHfêÚ–u°^| Âߎƒ[3Û0çD†öIÏyÎúOIν~àSN8y8sÑšA›÷Æ£)½ÄÚU‡Q` Ye11 z7cÍ:D= hñÈ^ýQûîµ; 8½|P/'¿ž½<-^ V}]XÈš¬º}R—RÐòž×…‘[ ÷)jAëPìÑmHÝ¡@ù=DkOªkÜ¥1½ÊŠÉ.ÄÕGÂY8²_ŠÂ¶ÛÕ=òÓèŽ÷"³ã¤ài”æî£‹Ü%’ÓÐ86w ˆ–{TKî•ÒÖî³½ñî˜q£ ˆ*°Yn¯Õ;AX§­ˆªãlÉÂèPl 5'™LŠ™nciHüÈ=ë}=Cê9‹q $tàœ3laðü`õäèLGŸÉe¡ÿ³v„–Ð6¿Zx¦“l” ”ÛŒÔHµ2|+û”d˜u%²P̳4 J©ÔOôdäÇŸ¡‘Sxÿ‚§y„gªâ¯2ë5ôN^mŒü7°%û%iqÞÞö]8>“PZq®7¬(@º[%…¨Nw ª¬Ÿ¡,»ÎéFõݦ'oª;Ò<ŠD¾¸ F˜Ç›TÏÚ"~ˆ·©U6ø 1,¾ûIÞžšô‹ óYXìºç‘m ³#LÑ–Ìtçà'EáŽwÃ'1tQ€ X#ò•âúû£:?îŒ(nð>Úµ¼ þÎê?ƒf*ÊNå­6\EÉ!`tHÚÍÎÁ«˜ø”ïïm‘%¯ü½—â!é‹A€•Ç.Iƒ S…↌Æ((?ª0N}Ç–JJÇ7AG ö /€o¯Õ¾{}¿¸K’Ý'Åæ2žó'¢2¾]U;4F´‹®™Úý‘¹=3þ+l…boóÉ#–a¦œ:Æët“k¼å ·Ä<ï4UZ\šo#Nä¼øKG}DëªýÝcû¦ ˜îvÓ«Êâ€Â÷cæ¯GþhV)! ÓïÐÆ@Ö£ú¬g ²é5*H`Àž¼À$™keþ+aW¨¢ÆŒ°È…ë»,ÿ+#…¡Î[AíãmHÅ®T•Ñv×^çé´ƒ"ò ÝhWn7èS:æÐwúp(RÜ\Dì—¸µ⡽ÌÇ«»g a¼UÄ?d´d~¶M›®w¬Å­ÌÃçfóÙÁ‹m Ú"V1°ü‚~ûõ*Ê2òÁó½ƒÃc,·!¾ûf‘¬ð$ÒX˜æÞyu¸A1°ô""F9Ô(÷ŠôÅ!¿7¼ºìD£]\Œ{<éOÉøp-Õ„‚“ŠÃ±ŽÏ6¬ÐÃè3Ãx¾k6Û¥”4À§c2$˜‘X¶ˆ[<Äé‡eh‹_.#êF”DüZ[èÜD'*© ¬*A¡ê‡h!¡Ê–†ÄÅ ‚µbäU2v"²áún2}WËøú¥B'h^` , ÀcŽ‚k³å‹~QJuV¸qÚ"™”X¦8\ ®‘!ˆZǶ8-ø¤ j.ÝZ´§+„ÚW^í€_¶ƒ@-â&è¨Ëþ|eN‚±£åÇ"òÿcÔlaÆT¹w%Ž.DÈÈ—=¢˜hèKj?Ôy´š`+GM « ¼õ & — ,YŒï?à‘MÂ#šëtp=Dï²¹p‘å}h¼\øHí°¡¥’1fõ¢v³ó'ÝÇÁa5)}j±§Á’³€ýEÆ[0 ˆxgÑoÿ¼ÍÀ/.îá;F’6K\KIÞû]%Æ¡–Dq}‡dŽPz¸¡E4îá²r:¸¡Z–¹„)q•ú²a•qÇ¢ç)¼ÝÇû¶,a¡ǬûQ®—=GU!¦5Æx>ñúM¶H°q¬ÐY‹’‡Ã J~Ô¡ýÊC*$;=¦§]™„K›¼…Н„ºŒâMø|`Î-åRoÊGubCH Í—C±²»CÉÄ ‚ HÕÊ Ç.‹´9Å`>ÂcÖ[oÀñÇ,7cU?—ºGî;n1²„ïw²$5:LµJ‘²;]½F3—¯4.%"rç3/œ@ùlCsLêwâ»(¸O¥ª‰Õ—++ÑÔ§ ¼?èf\ºFà3o!³ˆÕžçúA²±qˆÂé¢fD™t¥:ƒÉb°¶êòñz¼ ¾£.Ó‘êŸÀ(µÈÞò¨ …¬”,IÍ"ª/°0ª^j¤{aÝ)[äÅ}(©¶}{–‰Àôu{ÿúáªq힤f(Þ ®ÃRfã4¹fܬéM‰ümRñ÷Ñ#GñAÆscŠªØïÎþ>Y¼±Àº×òSÙbݶë@¨¶KŠX¥l¹ ûF‰6Ît7e|p¦¢ötº$üž•O~Ú…Æ1Æ”¨µ‰ÓÚ,áÇFYƒÂ¯Þ:ßÁ4¤ÀAL7‚ˆ–LZä:ƒ_²anKTö>ø­¥0áðÊÖWÏTQ-+¦…DYR‹v²Fû²t„óà&¯€a—„Ý/K?G Íw0 ø%‘#…üb…’ DÅüå•̹WÑÓ–”ü@·›7)8 Å@SJX¢¾t»:Fî‹j"’7©ÙG¢ü»@¹ü"'¯mz€DL79¢%*26qL_Œ ™'Žu¯Öú(b‚-6ÑĶë•3YJòpÃн²_×khÚí± AµšËŽËy¯4­qúž:³I7iñ£±òÜóŸý!ÅT$‚Šrwp¬“Ä£®áWcºú×cg+‹•›´þõç,û ‘T«þâù0ؼ@x×ÂU ñí®fÉίˆžŸü¼­X³‰o6Júdó0v# L+Ž/§“fe‹ãˆXM–tØñÎÃòÞÓù>mTÖµG5[˜jëR $ùHf«” púż؇M|çðD'tÃ;1‡õÕlƒÇ—W¨œùÖ~(Âám—ï µ-î,ïDmiÊÖŸÆA\}{ w×·……Ýþšâ¦.õ#!þM³óõÇГf׳.tݺF„ï– ¼ËÑåׯ'i9í7±’ Ûúãå5Þ*`5žê?¦ì_-¢^NÝ÷D D7ÞD˜ìzo\œžBäÕÛõ£ãÃgÇ›WÖø!Û´£ r~éšüCa~¹-MSÔÆÑÍQÂî}¶¾‘€áj’ïe).Ç2c•£¿ðDÈV5•õWíÚŸÛ@nèË“›Ðw^ì‘õKôÕ­¨#~añ›f¨Gb_©-ƒ›¾ñŒÁ÷ÔÆ˜YжCÚ›N”ƒ²mÃÀôð‘.!æë”Ë/ì4 t¸|[,¸ö…-¬#iÁLên oÍ-µJ¬Å81DÑ$¾/î~¼øGˆì1[:‚o)ùHÉF2ÊFâz€ ßÁX©ev‰(R>jñr"‰Îp¤Ò«k€Á%\%A&4¶eP)WDJqÝ.¯…”òÆÐ‹IßG×àÒé‡Aç–°•«qëÜv;VRéÀ@²Õ 3+ÉH[•…ΩÔ_I(qMVuÅѵók†¶ËЮT8Ô»]îQI±!l4ÎaŽhUòx:¦Ï€?¯uF"ðì'´ õb•xi3ÖWÛ ™sñ¯¶ÖþGhJÇ)=ƒçוyõ:ç"ðÏ»¼ˆ`;¢ïOA4Ю ä飡-è^¦Îf‘d¬ÙuÉt-X]hØVõ€~ß {x_CñÞPEáBëynxra‹«­?X1äýlã,]·v-Hd*Cä0_­>¤ÐÏ4Œá›½@ŸÖŒ1B“Pke]MëÍr‰NÔtgêóHÍv!^úirÉ"Žö}Ž9ëmf/fÊkÌÊÈ !9ŠUeD?É.OMÊŠÉ×™|T ŸM0×I$ÕÖ*ú±$SQÑG:@zT2õ쑽b¯$ŠÀ“ñý–¤0®ÛlZ†Ñ#ÙODà³q¯æ?÷†ã&ïÒñÞŒ>ËÖ‘+HCÙ&FWvÉA÷Ÿ¸Ë$%1ÄQ(´‚`X¿ znoôX §|â2pà1%äRÍ}tó®ü°²¬?­Èï±+;b"…€Ã>î}¦ô&¼›ë"MŒ0œYËXªÎÞÑ 9胪H;`Œþ(Výä´”e€~bš¥rž¶$.X%ù’³¾¬Ï<Ç®Uòÿ€“q(øë_”õÙjÌSN"Ÿegœe_T" †Ð¢î§£/›è~×|~¸³÷¡/¸fV·H‰).ýf?µP3ÖP,‹3‘ÊeÂþÅ|b"ñ€Â“ Ü·#o ƒŠ²SFÐ?fNãÊ™ŸŽj/^¢ÈŠ%vFZa7¸†ÓÞˆ 9åÊ€ =4ùxüøqU°ž?­uä›}(¢3XΣ2õÜñÐÿj„©Û/Ù¥G!^8à‡ž$Ý[tHSàÔë&¶¹åî LÀx7¯~.Oí„T–TÖí1ÖÄCûFZ­ˆ…£Ý*ßçìî?]œÈLjœ8W(wyÐ \žàd aЗJœÌ“»Q$>Óú…q¯’JuÄA)ø&ÇÖaÄçî‰lddÅ88 UŒ-º Ékú¹þK2]"X3¦QÏ||Â©ëØ• ¦,ú˜ÚæÅñ##4»÷ˆ³s¡ýoà+gT(^{Ãö%‰ßb‡)£öpõý’¿…õ~©ÖÃÓðj+ìy}|j|–¡£Hv Ÿõœ ¯½ñpµÖò†Šìj>C÷ãàœ|{nžEÐ5€l¾èFžñ ÛÁpÖ¨n$‡ðvp~n—ˆ¿,Ñ;\üËDß°`Ö­áÛ–•üÎ ð:é £äàí¿'U.FÔV=ŒÜº»¦áý§Ù §ÙÊ’¦¾wܤ­Ü<‡ß ¨æ¤ÓÁø””9ÌP¾Ón»}v¦Š'"oàRâ<-vÀgáÐpÝ7RE´œ¬/¤×° !‡®2¶p5…ü%« ŽÎJxJÜ€D6ŽÑy‘§¦^õb½èçR`b'öPc¹€·í:HŠœtß,áB ¶Püô]_¥Æ•Ïà÷Ùíîî5*#÷b–Q942¢¼ÞíÔßGÆÏtŽ¡®vN1c‹j´/€?[\û±`•‚™ì½dÜ  3zÃ(Ú¨âý ƒ-ù¢NQè®» ++˜{„ÆFiNöØÀÀç*ÈG9wå4,KŠ/q›2]ŠšøþûææöîáSñC*} £mÅmØ›ëtæ)õ´¦[,½Ã‰ÂMwàGÃ~(1D  Îýf»9*'Í£%c[ꡜX(nýgçÅó#´¸P=ᎸЗŘm¬Ø â…œw{IâÒJYüñ‡<îÜÃÿ=tÅk#‹Œ&Ͼ/8æ^º³édXN„IJì$‚0¨ƒžcÆ,”òرýÓö™y±×! ³%=EŽP\†â•Ðv±Å–ôãq°)Ô¼4íÀ1ìbÆòDU\×”À‹º†j±!Ž /”U& óÍut ÄQ&æe0”¶;@A̯®{…Î+WŽ×e7@™ò„ªU"þx j/EíJÑïïõ iaÙЧn'8Ñå¶£’Ÿ<ª–dê1_&“Q£ô0 ÆRÃ[ ìEÁÐÔ7©C/F¨IiÝ öÑÄ.<诃–eb¯¼`»îŽ:G@…‚fc$«Øm9ȧî°]jf Ð.í(gãŒâ Ö—€E]¼“)ZB²ÿ=_ ÿ:¶NœêëÐ\÷VU4Ê«‹‹ë"|§‹ ôŽû 0´çWøhQZ7Ê˺ æ@¨ˆï“=Œ[ÍÛKõúzý÷WsâõÒåuÛéã§zg=¬¿Z«Î½F“=ø¼ñê÷×Ke(ÊŸ¡°¯¬:ü©ÿ^®w*z8•†_ðßÙ8íc"FfÙ@˜Uâ\IÒŸÒÚáT Ò‘¨IË©ô'8c/$­`J[øDºÃF¹öž¿‘?ò|u;éú*„AÁ¬vñ0ò@o'R¸“áäZƒà †ÁzmL «Ó‹„LÈlîÉý©±PÕ nPJ” ق”µ089G²ã¥%CÃPøŽqW«IÈTid‰ÌÃ^ Ü^@ÿ(ÒFGÇr0°:ã#%Ÿl¿ÿv†$Õ¢©P‚©ïQìLÉ•S^ªq“¹S³ Bm³™¾N½Ê4±½3ß¼a Ù°gʆi$¸Ã­“à;6œ7#Lê롌f;gdh™Ø=oò¨èÎé®È1Zß½ƒðÉß,òêô–;c ‘±¢øêoý =xøìÐöéTçIòîv{ÛÃãµ4á±fà]äsÀ .jó¦E‹ ëlBþxfÞ~§çUsš ‹-Z¯Ÿ“ÎÊGïgq᪠#åßvÏNÑ”Õ⤾JÛ6Éhb$r8à0¤-ü¥çùø6JRR89bSa•Ï¢(-0è¾£ø*rT±¬6¾Ú(/°/‡ž¿hÒHŠ«u„][äÒ~Tº«ÝÛ#hµ%jå……oäÊïæ¯>,.re[4eUYÍ/_%–v&QE1!ÐÏOÆ6ʺG#ƒȬ Œß o‰ @&vÿ˜Ö·|Œgù½ø•ÏêUÎ>å3º§`<Ç;%éšÂœçœ²ËÂßGòïãô~O'ßžÿ¦–S 5Å·MFŒiëù›·{ýî „çy+ZÔ¡Mq‡Å³7èÈø3y—AJÍþE·þ Ä´1G€yØ:tèîR<iGÓÐDîM™üš¹×ƒm¥8LÁDIƒJ*úQH‘:Íó`ÐPJŠ ‹œ@Ê1ˆ²!¡XÅI™‹@—ó_bV§æîËÝíæÑñîÓ½—bûðùÑÞþî1;¥˜@Yût'Ð;¡lnr˜Ó(÷!êe~¨™b0“4fr9gxÇ¢Ìã5"EäF{‰Ñ:šSV—ŒZêF]Ù PÄʰ=ðúCÌéÒÅ„Û%>°Œn“<.c¢CxFoJ”4—¢)yC ÿ´yòëIÜ©¨7ò/-`'ØåO7IæYP‰‚ébQ—› ¼5ù­£)Oº- ;ŹèºÚ u¨Ð¬ž]9Ýz¤Ç³™QZ’VdjVÅÁ7 ÿVyÝÿÁ¦OIá‘e0VŠÅ*§ŠÌEÂxLÖ‚üôS@‰%«×;)ìu(”b¹„síâ0L::*j2[ó¥â·QC£a@Æo)I; ¼ØÐý÷¿æÞÀRB.`XÚ4>§¯@s9ÜAX$¤d;¸©Ó}‰Ž_A&X˜´I5'ӛŶ*:N!ŽT”zÉHú~íŠúB±°Ìg’Ó ©<1ÒQ±åþ‘78·î°6 j-·ÁБñæçããnÂ:>Ý|öóæñ‚FAb ‹2²QÖù'lîÇÓPî«,pl¢ ‡Ò*Ó@ m)Ó±ØA2IRŒµRïá@D³ÙîwG!þ+Á8¡ßÂÚ¶Jœÿ¶D“ó·°¸ž°ä—=3ÞßÙ´?ƒh53œ| ¼â“Ùá3ýdÓÕlÛ\ÆR[]Nµb8-ÖMv± qs‹éwÎ 1Î’ÁUp]($g0¤Ûng6ª÷æXJ[9 Ùì3âòát0@Nd{zôcµÉlŽÞ°BN Òê^ÂQk'¡TæÃZ¤"xZ€Ï„…“C)JMÉ}ÓÕw,±˜—ŠÞ™tð°Q¼°@. PIð‘ç‘s©§éyŽ¿3ϪœšÒÙ¸¼‚¢Xwg £O•/æõ=œOÊî;_øýtü^Oc.Ç•¸WžÑDÛ7Jüs9ÇXÉÌ?^¬ˆÿw¦f 9›@ÇÀyûRÛɼä³Ö5Íu7¶õE8ýbV_„Óÿ-áôî,!¼+È$‹±|ÿé¶ò…5üXƒAÙÌÁ,ðOeÆ D¢T>‹ˆœ™I ”»²‰Oñ„žTùqUáËçïÅ(ä4° £Ä=xìü.ñOeæ ÆxÌbÅž¨ä8Ž!ç.ïÀƒ*ª9º‡Ñgõ‰ÿj5V\£%À1nf£À}É ”äJÜ0þNûê+&ß{ðgiçjûèHÆ QŸJúzI]H1/]ŒÒ ÐÎÛ~ó’LteK×µŸ6Þmîì?Ý>h¢­†n*3\Íuw#+ {eÆŸqoðJ­©,¡Œð3f[—ÃgÌéÊ©éT\oÆ{ëK—L]e/@7¢ ßCÔólÔNo)EâlûÂ\ÚÆ•t MwÜÊY¬½¤ÂÆ=\§+ïæ6–×ù»4G!rœõÍ)å³U®†÷z£(@C(q¡Rü·¢ýÓ&²Íyœ!gPªìx€I«ÀV´-¡ÁŒÖ¤Ë¨Ü÷DÐö势¯Ð£/ÀWjg8>Ýßi>Û?ÜÚÜ/Í 4;Â~@§vöùéÜ\¬!hqµwöºÙµcETíì¢ËT„º¬zï/ªýV[a˜÷7ûµyxÜ<8ü¥™,ƒÈB' ˆÍ8(=XÀ_:X …çñ0ô{Ïý®3Äü¶Ü5}^²‘hà„|“Q^âN•‹F¯±(+‰õEö®R²¤ ËèT V>´dÉ8´üzËFžìÔý1M ¸‚kçW^èµ`Uo7.½NÇ%;´«š¡IȀ㫸.ŠP0ë›.ÄStoI’¥h=·½VÐ e¸&-DÉÁt@’zvðb»ÙÄÍbaaAÝØé¡|ô|ïÆÛ?à‹Et$ ÿ€PÈç~0@ 2Àu†˜õ{4t›Í……h| –4´AîR¨ˆU~§±G«ÄVQ¾ÔÒ›$’.!—¶¨|ËUsñ½OΉxˆTŒ±´u¹ß/ TÞ|ß•‰…NðÈ/«uz/ç<PsU•µ9–Nð]i΀¸ b3™„qäu „aŠþc4uº$™n`ˆsd! ¬N·Ý  i'ß|0Å“ ‘Ì]!QX2uêú;øö~Þ‡qç§­¸aålÆ ’OPZkXkÂýVˆ¢^al7z ßÕžó£±QŽÙðågº²%¡ý3z,CAEnÕ!ïBq9:–žÓôìº*¼NnÔëbÛ1‹«»Ds RØ»)ëç‘ßÇM‚j³ï]•KYT!"ŒI«HRa«³n;¹¥ˆÆÖä}, l¡„qÓÝŒ«ãèÒÔˆ¢`–JúòxúcGª¡Ô‰#³“ÉUœ…Û,s§Ÿ^èM•f‹¨†JHqÙ•Aa<<ŽEÕ¹£4;¼ ä[9ÒÏ"æ*»³/Òîi÷‹´ûEÚý"í~‘v¿H»ÿdiWíèÓ ½E5 e_Uñ~DàÚIøÞdaÙâx‘Ø(HòöAi¾#5sLëÌÊÙܨլÅîðYL‡žVsSO˜$`¦ÞûÁb–³AF•—3ß5a¢¦%Æõ@Mc>€üþ$¼!ŒnåxkŒPRa½6J†éo³Ÿ+FŸ‚?ëx@°+KÜ Nc $Ï‘{ÝÉéñÞ]PðGQû™#Œ©h†&ðépîŠÑaØÇ²‰ ÃŽ¥À×èQ­ã¶FV @¬rnÅ‘Ï"ÖzÅ‘%צ|D˜‘’å¦5ôòpC–k1 [NcÄréCÙ28Aš¸‚ F/eºÑÄÜI2æ ž 25üu|ÍFëÉÔ§Û q’%¦ïIèüÄd{šWIìÜ#Ó®ûî3Çóý³·*ŸD¼er©öpDSßrù2}ŠÔ+˜ÝŠØ=àÒÙõ À$Õc«ì–“aRû[V¥ñ™-¢ß:cë&a^+§GŒ(æ0¨3¡úbsïe5#¢ß‘Jã!šfСSR°¾Óv«:p:Æ~s0™Rg98ÚÛ¶³ùˆãÝ<”ë$¦¬‰{6š]7¤ ç9ÞĈ¤qÖƒa<"(¬̘ñõcCÖ¹·¥˜MGªSÅT :s•ó^=R£.arbéF,“Ç{ÆÈˆ³Êá†`“#›TËøÞ”³•#´–|_U(S½ÅL ëësssójѪ£=Ä Ðo; ×$¯]£nx5xT][UâMÈÐ ‘°bJ¼)pžOà à_»RÚ7ò¬™œ~•'(±ÄSoïs}'ÌTë;Q7±¾çÅsç ¬¼†Wô¨jl$ä¢mΊM·ì„]´¼0|klÙ¢dv¬gRoÖa‹‚IgõçF?´û}XxpZÚÀ¤BÏY Žï¶1nly[êɵJJ  ªdÅõ‚,+§4(­…OÁ$ë Yëæ/üц4š‰?-•¶·IäçCÐvIýybS͇dÙE*ߦT` K=T{¦E•‘Ã6îÞô‘{~Û]Sió¨ò‹“ÝæóͽƒSø·{Ìé»0´eT)âcVù×Íím‹XY˾$j·&'›~Å0wª`uÄÊ%VÂLbÕA¦¥+ã…„¯…DSJí8„ã!š¹›&AÔAĬ‡V4¯³œNжTÙêLŠñ~žÑ˜à|"ðñ©ahÍÔQŠ›H¼‰²Þüþê÷eÜëõŠ|"”áÉYºÓóšXÇS¼&õ–yÍÜÖÞÉáAóçÝ㓽Ãx1cé•x¾çÑ*•üá=¿ãµ!ˆ>ƒ‘ËižQ‹ÓF]1ênJ4鏿¥jtR!´øW.ç!Ãë@MŽü‹PÆ5’:ŒÆÁÉì9XÉáaÐÀæÉîÑæñæéáq‰¦0Äl8ƒô–§ 0bªd®AJþ¸Á‘($A`œ}:”ÈJEÈ ½/\é$ûŽÌn$ 8*Ô×­ÔöËdSÜOaIѽ,`ë‡ÅUؤ¼zùÖϱÊË ÃaÞèO g2Ë*v«ïf)Ö§—;‰,lD>‹ôî÷­öEP‰A Ez/T(Á%®œîzÿM.¡Fм{`&¸L¾aØH”ÿÂIò9Io;–ë_9§ã¥ hezn§¡ÛI¾ü ùO¼é#2üðâå@<½‰É¦Ó‹u ž(îÛ‘70×þñÖ+âMÅ=œz^ÐÖDÏíÁÿ0Få™Yô„ËÆƒžÈg9AOT”‡"™‰þ`øæ*ÏÜÒ¿¿^û·4¨#«Ïç»Ïá±¢œLI€”{Cb(o03r±páÄ`äüѨ:wÎONwŸeŽù$4÷ù&nœEóóYÄÐY×Nß³/-<¬a©á ^ž•â#–Å{âz×{ “nÕâ=Se²n*“<Ä™eZÖM£œ¨Ø ´ÐÍ´4fm^{þÃÕ•u¹â äF¯©öŠ^E¿ì<\mž¿ØÝÐßžnîŸìnTæ+Š…ði¼7†èÛˆ}1Q«±Î¾¦ f:¾ð®\ß6ÔÉï¤f_•â¨èÐKøk KA¡r¢Âºß'y¤°y,1qÓXx’fG­±íR‘‰¦Ò“´|Ñ®ŠÆ·‹…'i¶´Ãâf±ÄÄÍbáIš¥ótÍóñªÏ…= ÂM]xâÎ$êMDvÝnM^¦_·«<&&A]EuÄXîúøòå¶ãÄ]CBØoÔuÿ7E}û= ú°L1?z½+ûEÄÏñc8ûÛ øFïÊ™.¥.° ÊIÞ^Å^ý…b½ÙpB¨/M#®Çðñ¨u+:nßõ;®ß.6‰È,Ÿ^ù¼ÅI@A»úálk>­"ÿƒ›HáÌû÷ÆÕÃW¢Õ /6¬³6Ðç»pÐýPç}/ŽQ¥iè~–y{<Ó¹¨Œ{øÑ¥L…¶`¡üûïQÆ^ºëOiI¤go¥ÑÆ'ù·°Û›‡ ßIᎠ܆¾Tªã®Ä¡z¨fUE*§›ÂKP Uÿx[¥$5Èc{Žßw.\†@W˜t·÷ˆlFm§þVL9ŒJFx*TN\ûÖw7wžïÚ½ CfQA8$3Å(!Ü“ì.¢’ôª²5J&6=JLQOÆ{íúj¬T1W¢Ó ÷ÒhdÏI_éÅO9‰ƒÁÉGÚ=ØÜÚßmþ¼¹ÿìxï`G{’ÏS ÌŠ|Ê®›×5<8ĵˆÍ“̓d—èY^w¢ ±®uòºALj¼~¼ØÊè?Ìë‰Q%Ö³V^_ðh‘וgÛ‡?'{BÏò:Uˆõè“× -+gÌÎáöI²ô,¯Q…X7Œ:yÝH2ò³{||xÜÜ;øÏîöéÞaj¶’¯óú™ &ÖålH¹ä­%¹D¾¿ß<9Ý<ÝÛN‘zô&—à•ãdŸ¬ÏJ\WCqÜÌèèÞŸns¨•Søº©Ÿå*hâ*«X¥”ÆJ_FO¤ºb0b‚ô…Ï–~ˆ–ûG¿Ð©¾>¯£vK´™Ü)Hü†èù*°S(S¢@F½)w8Fè GV<ÜJ 48‘t¬u¯`Þ}_£ˆ'^éùå)FVøÌ!Wê›åÒ Øõ Ê÷è¨ì:¤{ÖñwT¹¶]*1Â6åwû{[‡[ÿÙÙ;þ _G„TÊÆøv.ºïàÃÜ8S½«ÈÔ·Û 7IÊÊôç)ªžÇýƒ°Ù†BŸ“çëx&ÛÇ›¿¢úï«Ø“ÕÒµÛr±“’ß_‡ú s¸ˆqh ^xý~jµ[¬B`ZÃò.{g+ø¦s6y ¤x—ÄVšc©q>¥$ÜÅHÈ9ŒÅx›%¬È× ’¸”o^¸ÃÖ“oijÝÓ-øÃߤ&žÌN¡,¦-OÝv¯*KH…ÝÉ«ý¨’º¢VyÀsn°ñuöõõd§#$$<ãmÿ÷d÷Ys÷`G¨.èC’ÖàKóWR?Ï&™Áé¨ýF¦#¥€ðíñ²ZQµ¼õKÑQúÖÝî¡ÒñÊLÚ1VBªÝå{ä Yçg’bÐ<:Ù2ˆ@FêtU ÔqûÃK7äq†âª¼EÜ`9ÙÄW+È©£éÈ÷Âa'­Sbä-,/ÞýüÆ3d\I«è`­†µN¥²(bC–YgŸÌ"´Ãœ{ÖºÞ€?ÍQoŽ6õ9HfOÙd]óƒ0e’Ðâ©î“J,0 “‚#8øŒ¢ÉUIc\n2 Iµz­ÔbɳT5î`¹w²yzúk¶µ§‡Ê€F„ØôUf7.ã†Þjô‹Kï7ÝžôßÂáèêúæöO±¹µ½³ûôÙO{ÿùïþóƒÃ£ÿw|rúâç_^þúÛ™ƒ«ÀÄp ež…˜·a­Ë¾rwnZ1iÚi˜ ~'æ‚,%MlÍ[ê­žM4åµÑ\”æî;tÑr4àƒùãðƒœaܯÍudiB|:: ËY´=Ó¼h×I¢†3Yë.Ÿ¦.îwœ¬*™e©á¤&.ùZãŽãÈ%\’ô|©+ó¹h+•oTÊ%hÌ&g4'4š“IŸPÔø"kL"kpØæ¸œÑüŒ‚Æ$’ÆßHÔÈ•5îMØøÿì½}{·Ö7úüw®ð)TLƒíˆÓ$míÒÖµÔ÷vì<¶³›}‡a°'†2›&9Ÿý¬I#ÍqZ¼¾ÚÒÒÒûOKKÒZ¹¥æ,âF3IÞ˜"p܆Ä1Uähæ9šÿBÇçHibÇÝ“;R@òXŠŸ%zdÈ·*|£áÍØM‘>Ù4ñCÑ} ùCñ^ ™uSLQ‡*OüïDT2EM´²ˆ.KLQ1Ÿ/èù7UQ”ùä‘p^¦PšD¦ú ‘äôìäÅÙÁóýt™DW%K(QDwZ*±Æü¬b‰9¬å\GÜÁD9"™˜Uù»D“Äv]Ê&¹e ‰žµ·%tòI'œÒIç J'¥t2¿tÒ1¥“L@éäP: $ tR”έ (ÜJg&¥“( t¦(ÛPžNP:y”΃€Òù¥“& tÒIP:ÿ€€o×¥€2‹€ÒÉP:·'  §ËÞñ„‰¦ 'Lõ%Dæ¼LæL¸éþ‘ƒÎ:S‘$ ‰È’Ääÿ|)Dγ©2Óå“@ÔÜ-ƦJšô¡R|†ìrdz{`(yÈ dÉLr§¥clÏ*s„cÞZ¦eðÝ‘7d#ÒFX¿KÖHhÏ¥¤‘[Òˆ gÈYz+RÆe¹5‡Sä E6MÒPt_BÖP¼—ÒÆÒ†j¼ÕH¢òÏ:4шº,1ÁCÅ|¾è¡'ßTáCQæ?ÂI]L˜?i"H˜ê3„gÏQ iž¤‹!º*Y‚ˆ"ºÓ¢ˆ5ægF̹`­ã:âî$ºÈ‘ĬÊß%”$¶ëR,É-–h”HLô¬½EÑ$—`’O,ùrBÉR$™[$ùG œuYdq$‘49䶤¼2È,H’ü‘-}Ü‚ì1MòÈ!wüHŸ!s¤HwNÞH–6þ~Yc)i|ޤ‘.gÜŽ”¯ü»¹t å4yà ýB‡Á~)yÌ!yí÷OéCŒ"dŠ!&ÝÈ"fqb‰ùùR‰9/§Š&q>ùÄšõÅä©•&©Xi?C\A;F‡Ó´%fͲƒîNK/Ñy1«™/–`ÆÝaÆ,uD¢‰TèïkÒÚx)Ûä–mL IpÌÙ|»RN^'·„óE囥tó9ÒÍ?¢ZѹçkJ¨ÉinQ ™Aœ™Q˜Ie¦ 2·#Æäbò‰0ÿÌç‰/éÂË]]R—DlY -Ÿ)´dŠ,·tøãŽ™ßiGpÆ€ Ò©Aí92ø/…—y…ŒüÇîªeÈ>#2 @±Ê?/2boáÔÈœ ÓÏŽ êœ'HSæXêi’•úsΔöÏP¶9~º·“a Ū^æù’Ax§ÅœØ™ù¬)2wì£3òîÈ;V±£§O‘*ýmgPií¼|òŸD™h’teÎjCü±®çö.Üaä¡â}¶âKQµüNGƒÓ7™¨ ñ&I|M€Â,q¿GaÅ^<Çÿž=?k?}šìGe–ª6›9*Û¼…ê6?£ÂÍ©UÎt$<]ЮŒºSÜ+KÂ&æv%l¤ÙÖþªâqÒ,¾áì"N±Q­2·È®¸¾s'Í|MS6ÆLßã)¾„Ïe~Q^òúÿƒ@/«—éãí¹zôòðpCà¿ÿ€|/O¦”Ÿ@¾²~B©bœæóåþ„Y>Uú§É·HB”bæDMÛ$qúŒ]Á‹³ßÐKló_ûÿiî·³ ågBå³vqò;½OH™k³î’ç %`'ÜCBá#û‡äêý]»ˆ)í¿ÜKäÞK$ QÂŽ"Œ}ÅíÈi~¿•WBCÒ¼²Ò~I© ù/å±Ûǰ%CÃ’ä’Áˆp¤/*OªÜ…±·'qÑ|Í-k!õlRãAêsÎÙ’§¾™êøh7‡4EÕË#G!á…¥çȼ²“š;‰bEÞ=y‰Š")©*ýÝ2R¬—ÒÑÌÒ¡I†\D³úÖ$"¯n¼Ñ4wÎD4M bª/!ÿ0ç¥ä“Cò FmÈ%.øp®þCÂçž)æH’pdIb¢ ‡¾P#§ÜTq†éò 2jc³&MxQ)>ClÙ9Ûup–.°È d‰*Lr§…clÏ*ž„cÞZÅeðÝId#ÂHX¿K IhÏ¥’[‘ˆ zÈYZŠ €i½…g ­Á ^.í¾x!🧇;ÏNËNŽ}]ŒÛ•ÄR\Hg¬ %ÅõG¦ó“P=Ϊt¸—“ ¯9ËB ›—ýq]¢ŠÕ›S¤jù¶}¥;Í„¥A™&\áÈí5‘p>ÁÊQ+2 e%jw1ä.TßÞ‚,‚áÇïa…ö@qúñ ú„w؇ 9ú#4¸bèÿÞ÷Ú@#€ÚVqñ~ ØIÞ†/Ü–3†脸ç]^Á¿Î¨u…uW’ ±ñAdÁ,0ñÅØëŽpå„bQy£]{.p ³¾öÇݶF^·+œÁ ;Ñžá¡"¢ C¹;ðÿÔÊ-Š»Eåø G·º¶²d¹tìgËYÑ1woÄÙžàoW\âA“<˜>ÇËqXü÷Æ6åq^Ë3&MüªV1SÁÞú,Y€qþuCyax‰§©xz•P¯r#êÕR R¯²1õêË€êUª^ÝqX½šŠ«Wy€õj^d½ZBë"Ck€þ¿s!kH9Xp‰« „«!i¬ªØÛEUàš ªw‡1ŠŸ ©’ Q‰f@ÅÞZâébãi^QÕ Ž¨KQuÁ 5KTÕÑ·ªé¢*EÞmX"ª*ŠiÀ:Ÿ¨J}¶„Ö†Ö‘Ó˜Z Ò)Њ”Kh] h¥®K‡V}»ÐŠlS¡•"ï0´bù³¡UQdB+Í­ÔgKh]lhͬ¹u‰«‹…«Ù°úeP5 Tï8¦N…Ô<ˆ:/ .ñtÁñ4¯À ލK-À‚Aj–@Gß:¨¦k(ònÃê-€¢˜¬ói¨Ï–к¸ÐÚºŽò!«A™ ¬H¸ÄÕÅÁUê¸TXÕ±·ŠªÈ5 T)îîb*?RA¢2Íì€J½µÄÓÆS×ëæÄÓr žáOO±ãÒñTÅÞ.ž×T<Ÿ;Œ§Pül<•™xJ4sà)öÖOOýÁ$ð.sªS#ÔSpU/±u°Uu`:¾š·‹±’s*Ϊø;Œµ² Ùxkeb®¦›wU/.±w‘±7糫¼¯®–® l3Þ\}‘'W/®îöƒ«iï­r<·šóµÕò±ÕƒhΣ«ÜO­–/­G3έ¾Ì;«¬gVwü•ÕÔGVyÞXÍûÄjùÂjÁñ´=t{ùðÔ ÌÆS$\âéâà)u\*žêØ[ÅS䚆§wwñ‹Ÿ‰§Š O™fv<¥ÞZâéââ©;ìäƒÓ0Mn ¦‹¦Øm©Xª"oJi’bÔÝR(}&ŽÊø,%’ÙQûi ¢ ¢­Ü(ÚÊ £­%Ž.޶2´õE´•¥­»¥­i`Úʦ­9á´µÄÓEÆÓ›Á惜€jNAT¤\BêA*u]:¦êèÛUd›Šªy‡aËŸ«Š"X™hd¥>[BëBCkÎWÿåT`]¾ù_,\Íxò¯coUSüSÜÆÔìçþŠ` ¢ÎõØŸzk‰§ §¹á4/š.Át¡À4K¿”f éÝÒi8šFçDÑ%ˆ.6ˆö6sè& ¤½Í%”.”B×e©Œ¾m8ímf*DÞiHímNU¦˜«H4°BŸ-¡uq¡µã\ä¼ÅoPf+.quqp•:.Vuì­¢*rMUŠ»»˜ŠÅÏ„TE…¨L3; Ro-ñtñ´íå¼jPNÁS \âéá)v\:žªØÛÅSàšŠ§w‡ñŠŸ§’ O‰f<ÅÞZâéãiׇóªA:Q‘r © ©Ôu阪£oT‘m*ªRä†U,6®*ŠL`e¢9•úl ­ ­=''°jÂ)°Ús– º@  Ý–©2òvµç¤Â)DÝa0í9ÙPÊñ™@Š$sÀ(ôÓDDor£èM^½YâèBáèM&Þ|$½É€Ò›»¥7ÓÀô&šÞÌ §7K<]h<Íë!Õ œ†§K©‹…§YRuì-ãiº‡TŠ»Ëx:ÅCª"ÈÆÓù<¤Ro-ñt‘ñÔoçÅSM9 OýöO O¡ã2ðTÆÞ2žúít<…¸»Œ§~{ ž2A6ž"Í[BëâBëÛœ†¨Þæ³Bõvi‚jõm†ý©·_ÀøÔÛTËSoï²Ù©·Ù6§ÞN58õv.kSo—¦¦9s>é›ï=ÿÛåcþEBÎŒ—üo¿À3þ·©oøßÞåüo³_ï¿útÿí\ïöß.í/4ræ¼"õ6ß©·ËëQ‹„œ—£Þ~«QoS/F½½Ë×¢Þf_Šz;õJÔÛ¹.D½]^‡Zdäì¶sß›¤ÙøI”K]å®KEÑ0úV”ئa)GÞ]8¥òg"ª¦ÈUI4;®rŸ-¡u¡u†óûnþüîòÑÐuÊ~÷ áw3ñ»wý¿;ý¿›ë¿;÷A~wy’¿ð(ë_æu}b’NÁX¤\BìA,u]:ÂêèÛXd›Š¯y‡áËŸ®Š"\™hl¥>[BëbCk^Ý€A:Z—ºƒÖ,Ý€Ž¾uhM× Pä݆Ö)ºE1 ZçÓ PŸ-¡u¡¡5§W)ƒr*°.½J-®fx•Ò±·ª©^¥(îNcj¶W)E0Qçò*E½µÄÓ…ÆÓÜpšM—`ºP`š‰¥_J3ôné4Í£s¢èDD/r£èE^½XâèBáèE&^|$½È€Ò‹»¥ÓÀô"š^Ì §K<]`<íùíN><5(³ñ —xº8xJ—Ч:öVñ¹¦á)ÅÝ]<Åâgâ©"ÈÂS¦™O©·–xº¸xÊ·1š9½ŸD¨ó\ªj.} ,¶êœr±ªù<¡(ÎÙ—«šwÙŠªBŽ VÍ©^QBºy/Y5—¾Q{û®3¼˜ Näß(y6újê%ü.ü†]˜Š¿6É­°f†À!ÁÝ…`]‡L ¶¨²@Ø œ…þ\Âð"ÃðÍÈÌsÊÀQòi0,©—0¼H0¬º0†M’[†aÉ:†Á]†aY‡)0lPeð&œ†U_.ax±axä_;Ü®bôӘɗH¼XH,;1Š š[ÇbæÆ’ân£1Wb*‡dÓðXQÎȲG—ˆ¼¸ˆ<ð¯ó>3I³q˜(—¼8Ì]—оaô­/±MÃ\޼»pKåÏDZM‘²’hv|å>[h+âÈÁÜp¼®sÑ…Ñê®Ä%T¯%`Zžß?ÕÅÃêÃï–(œŽÂ¹18//ñw¡ð7}¿öf ïÝÆÝi¨›sçDÜEÀÛ%ˆ¦€èÐÅ©ÕΫã’gª¦^ÂêâÀjØ…©àj“Ü*ÄjÖi@Ü]¸ÕuÈ]‹* z ÂÙ8ìË% /0 ç¾ì0Ì{Ïa¸¼â°X¸›y»aøE.6 3î4 ïöu†á´› ׆sÞ_.¯.,8žúã~Îã2“t ¢"åRR©ëÒ1UGß.¨"ÛTT¥È; «Xþl\U™ÀÊDs +õÙZZƒ–ÓÍùr×$͆V¢\Bëâ@+w]*´†Ñ· ­Ä6 Z9òîB+•?Z5E´J¢Ù¡•ûl ­ ­ÝœîelâðÚ]:šY4€ífx›1 nd»©~gTôÚn¶ƒf*ØvçòE£úo ¸ ¸Þeßëx-'¯² ž` ð†ôKð] ð5º1€#D· Â!óT 6Hî0‡µÈd›.”MÒ9€Ùè×%8/28ç•„½œR°·”€ „³¤_ïKH¾^ºÔëÝi‰×›"ízÓ%]o>)×[J¸ ¢W¹Qô*/Œ^-qt¡pô*H¯¾’^e@éÕÝÆÒ«i`z•M¯æ„Ó«%ž.2žþ9ÌyQË œ‚§@¸ÄÓÂSì¸tüv[M•Ì~Ö¹b·$N•/6#ÔH,YyB%ô DVÆ6ÆÁfóì·“ý=r1‚ óÍ'«±é‹¥Þ-̱¦]_¹P9ÀåÉ@wØv‡êâ»DdŒÞƱÆÜôÄi«_«©Iæ_-6õqÿ]ß¿¦n+âÔ…5¦#®Ý2Œ“¶ët©¼h~Þ㾇ÖçaŽ(™ ª'ÿgÎXkú¼Øì¼xq¸ßÜÝm6 ÷ÿõѾ™»3 «øª’P®Hü6dˆ³«=îõ&Û‘2•$«ÄÙT¸·"v±ë¤¹ø¬ž£â aîtË*q0ÂÄ¢†÷»n`zìnXþñÿ‘èº̘ѵo²àF† t€ €=vƒjá©êôm0tßÃ7,üºöÙ‹ ƒébß¶hûPy5S+}^W•¬&5MË ¢%WÙÞÏß?õáæû'Í'àË`ÐâŸåÁ<‘Û8p›ÄQ¬’E{ØS9lu¼7â›0kï ¦ÿd•˽hµ½V´`ßÿ°G•ÙÿvŸ>¿ü}þðx— öý»ø÷÷› ••L#-¸ûp—Zp÷»ïKf˜1ßûñsç{ú´kË,“«fGõ «VXjæ0uÇ÷·S Cò3Zˆ×D½nÃòkì²pHq|£`àö÷`†NNçëOµ¶û¾Öw»†Ü-Ò€æž)æ«<½³³®»OÙLÉCØ™„ó7–]1 ÷î%âÛ=kò¥ƒ(˜Õ>ìê‚nðÜ Â–Ð{çv ®œÁÀíoˆ‹ñV_`6Áω9¨Mú={‹ŸŸ Œ´o_0Z.^A"œqw²üÀ` {튮7uQb,Y? ñAð7gxá~ÿþéÈu)f»?_5ƽÛëú¨EÐÕ㟕ç­×÷—ëwĪ"Y{£H>‰±ú:®vQû¦~ªÉRMH ´ùç¤Î=[†ã~ÎUê‚Wé­Weÿݪî°uqÙóûUÆ×Å}$¨ôP×—9R.\§—¸ Â!8¯âÛšj‰ºï)ÄB]Edý†q¶²ŠÅ‚ZãÕ9Yõx°¿¿ß|¾ûäûw1½ãö¶äÑ÷§³øþÁ÷ßÅ8ÍBk)$'à#ŽwDégQ”ñ¨Mâ P€\0 `±qÛÅp´ˆÇÜâ!ûõT¶„!O‹ jEX%X!©ÝR‚n¥‚ª¨Šß÷.ÇÃqÏ×N .¡ ýjxðPú€DMMôMàŽ>!Z§1¬‘›zɦÞjlÛáj` Ôd•VHmV½€ÇZm# L”‚y"b³,âÆô¦ïGNDèØFò/JÝYQG¨¼ŠJ‡FQSòH8vÉLIä ]<íz"õĶ‘«ºl<ƒØl¯bå Ú=Ÿj™‹Ñ4ºª•Ãx¢®w¡Xz–Fµ"ŤzÅš›Åè–Ö¢<{yòòù¬Cg8Ù®ÇÛ¬¾¨ƒ!. פ4º‚\ SAñ‰ôš(u×Õ‹õ $3ûSN€‘ß\}Ї±åŠÂ›E]»êU±(>؆Íàê¼ ÀOe@]IºÆ¬+FxJ꜋ wÑÕ³ˆÃšŽî¨±Å›F)’°Aí]„±a®&óœQ)ÿ²t !SÎÎ’eÞS 3Ù<ÊÇl–§ù³æ[=šz®£ºÅþØI>î“ÝÕ³ÿXM2.$Ò¦ß H ­U¹Nïé´*‹Ðmß[sMN5ZÄi!×àíh à6Pë™È[ò¯ð|&‚u¹VLüËÝAÇ–äƒâXýÎTÅï8§pÞâ<8­wÎ¥Û!°Ç{rù<†O¶?©JÌ´CåEÅÁ™ÂZ0„­ýðS­ç·Ç]7¨iÒö:~w«N«(Ú5&Y¤ó‚˜¢•Ì.2Ó‰ÊïÝÊpàŒ®6J û‘T3 Æø;€Õ\~1&E=Ô2.èá½k¶ª–. ‘ÊJ¦ˆ(‡:p˜ÞZ©øë˃ý¦–šg'/÷ë áOwO÷ë啲¾ĄŸ–– ÷ëË£½Ãý(ùÅç`³Õk±Ìt绿‰jFlÞHˆxî¼sñH`$­Æ +âìÊ HS‰GW. ë 5ô#¨2®º˜$ËÍ|\ÚôÐØtÀÝ1,'#äL@èë‰ÀÇd`чex;C˜"îèÚuû Î0 R‡#Ë`ƒù:¬ ¹F¸nU*X¡V +æ1~àvÆ],ŽO‚)—‡Žú;x)G°(ºFŒ'Âå°¹v`M!àë6(¦çLÐÛªÿž´n8x#Ȉ¹ U¼ 4†¢õ»À‚ TdDW °A¨¸eCwˆ+nË€On@u†.㫬ß=¼b£†³œrˆem”Dhˆ:0T°Q`<{Ðo°Ãü¥;Ár# $æYsB¢¸ðÈd`d$ð%,·®,PF( ê ämÀäç«Ô³º7¦ȵÒå öGcõµSùk§ò¿Í7ò˃ÊÍ7ëµzu½Öج Êçt—A–v%Ä´[o”JÌ^Þ’º¤Ð ±Nkm¿ûI)-L¡A¤8nÖ×ò/Ø¿ïœ=Û’Í¢zG3×SÕQ”¶RÏÇéáö'RªÐiV¦Ô° -ðôþ¥6Y U:ð÷ëÎéoÍ“gÿ†hú~züòdwÛ\²«[I¨±¬èmžÁêw´€ê—,,]dOsh˜‰…<_V)n½,ÊÛB“ž'õ²¦mh-È€ç¨L竱Žýé,å¨G°wÚm¶€p _¡ŸšH°¹à`³ˆüá^ʇorâ´uœŒQ§urÄ7 ÷ŠA­\+câr¹vIŠ\œ0šXåÖ°étûãÞѰL ­â—Z£±YF˵’YÂî‰ÕŸ«Öi9Èš“×?É[ ,…8š«¸ûÁÛsx ‹¿I€)ŠP`1ŽpÔ*Iw[HÙJßa»¶YGÁ†ˆgæA»ͽhçÆ°ñ íÐÒÆ¥µ2Hƪìá¶A•ú+Þ ˜dê†^å*±Î÷”ÆD¶ E£Ð„[ϼÈ=TC¬¦ý¼µN7;zïy›®Ø[ÜK%qÿ~H³«aB!Í·iÜéb Ôòf}è åî:’UgŒû¸ÚóýÔ¼=9îXûäOÍ‚žƒ!ˆí7´ñ8:>ÚÇ[oD ©^lrȇ.j Þ¹Â½àsã¶dlUó4-ÆFx½\úÀß>•I†:ýÄž©w#8ÞÛzŠ‚Ò‹!ÀZ î—Õ‘Ü;P1H³t}…óSë¨ Èõ]µ¢4] Y±ä ²ûˆ$§!fxg-' rV± Y·®@Îõß$BñÅ#QÞÆæRê·`mƒáä*Œz<Áx}  t˜¿Ç( _{»A´ÏºpG–”dQ\Q.´ÙWq«Æû›z¹°ÕÃ!X€U§TûPGlÀ"Öߨ(ˆ Á‘Ÿ ©%H®¾¾'Þ¬¯Ð¿¼)Ưô÷žX}Ãÿ®Ã¯µ7ëk5‰ \«ì×. ráÎÃ’8"”gsº@]jaK±âóÿw¥ôÇýõÕµŸÛeX¢‹?þôó¨ô}HԯïFh©V*Á·ß [ȱô¡pï²p×”~­†_àS@ü½´P¹€£°~®Ó’nä¢1^Ïy£Üõ.ü‹·A¾ô¯—°ÅfñÚC°Û"Ø/÷G¿ÿú?tóÚTly4o¶pÒ  éõÇ.Ý Ú¬ŠÞâ¨Aµ,XeJ/Á.>Y˜âN·ë¶«¬ Uƒ«þ²Q­UkÛðµê—jòËÅ[øZfbÏ<áâ-€Y÷s*ÓÃ*Ì,w€JpÔšüú?{'0„ÇQ>Æ$ü(`<ò8~ªoV7„”ÄB½ñÃõ^N ÞãøÃ‰<ßá4§òÂS@—äI×M5¤“Mº'Ña/ˆ¢h”>èÜ>Q]  Ín1)õ(+}± º~¹@Ò°Ñ„™2e¡px&KÌÁ#1Ç{%šò—nß:9¬sÁ€Í…‹ï’cëžq3ëlÆx ôšA×uÍ×¶$™ñžy\;Ã>Ýeq.ð>ÁÐ¥±ðâ`O‰¦×އ»ƒ ˆ[Z8*èÅvfu9öJtUa\«"û¯ö÷_…U€59L«ÛŒ ˜¦-JÎJ¶X Ò¯Y¯>ì<ßÛA‰@Ò…™‹¢”ŸŒ’ENï¡£Ú®°k)M£Èšc÷=ô¦¼…Z-¼ ÆVÁô\Xæh‚ñj‚ô¤Jòúïýw.©ÄÛî¤jß+€ZØ•ÀŠvÔV vw“+c“ÌV)+íß^¹ç;GgðÿþIóùñÞ~rõ¢D³U0’zÙ·Y¹ß޾}˜\)Žš­2”æo¯ÄþÑί‡ûÍï>;98ÚK®N”h¶ŠERÿSUÜ9Ý9ʬÌU5LùOUëå¯ÓêÅsUŒ’þS5{¶{üïÌŠÁ\õ”ÿTµöŽwO3«EsU SþSÕÚ?99>iýÏþîÙÁqöˆŒÒÎUÙ“ V›§g;g)ë[œl>ˆÑéÿöŠ&öƪ™xî›»’‘ÔC [XêÝ㣧Ϩa_žÖ«5ëôS7ÙthR†×­? “ê.äÌÇÒtñ†ïâ„y˜ˆ’•iq†íl½Iùá¢ÍË GÝPYU£su›”îßœâÅ´tBdÐoV¾¥Óßö +â™Þò]Lç*±“q?<—åC`*ëZã!½0WBgÄÚ1õÊi(`g7Ó²ö¸ÅÌõîqCŒ£Ú£í^Œ//¡®ú›(<:‚•}Úõ/qg»B÷Æ P—U duºòG½4å¹µ@Yú#T *×áÐÁßn‰O÷On· ·7l¼eM»"* be£ž? ®ÄAßÃÇÿÞ_Üj2*-4˯0Qð&Ú¯þxØg›ô¢ëö^îîBYê›ÛB–_‰jÞçÿ:ÁUÁÚ×~øßÓßšÿÞ?9è•Ç)«noÜÅ®ÖÒN:P·­©àÇÑËÃÃÝç{u~—öbèVU y׊.hü/T¸Mçåm ð­k¿/J6¿)–~)~Ú¤%%Ÿ†ãm^sP_*hIEˆ=/ …6J‰tÀ©ë|T.EYs,×ËøY¦ã¨‘?‰£ãæ³Ãã_›§ …ïU—²EÅ_3U t‰ðD`}àÞÍúÕž8¢Õ, ÄSM¦ð`€ÎèReÖË…²_@:g¯Omáð£~à3ß ðž‹|f+¾£«Ìµ ¯_`ŠNµ Ñ¢NÇŽÃ_Y稀jÚçÌ tBD5Úïðæ©òÕµU¼AB·aoôeYlõ–G•l6}iÃ]¡Ž V˜‘¼m,5ñÐÌxIå¯àªj¯™t^.gGɘ)Eyѧ +d_SD<è•àœL@¼R?‹ÖÈ2×TîDƒE9 oöØ>E‘± ;ãŽø:ø¬l‘A£Ÿ”-ÆhE–>³|u¾J£qܺ¨Ñ‚pÿ©<í9Äå1¢M] ÊïÂoOêeºvã\,mòµbÙJeŒÒ–ÍC·Þ0÷†Ø8›E²Ã+uèel$‘§zÎð²^ÚT×äU†á¥‰t^X”%ŃC•ÐÙÙIšíÂ=d{¥«®3.ݹußBOc_d\•¶P¥¡\Ç}ŒªF›¦´‰A¹ N7mV’‘Y&6 ÄD¾—"Àîúu¯ñ¢Ú¯°[ƒ^ìœýÖ<ݱs²sv|"ש¯Œ×A©MCËÐ*†ÁÄÜÆÊÛâ)•ðßmÁÅÛŠ-q8¯?Pƒ¶fâðñ£ì¢H±ÊÛØvŸxAXÁ[;ðïï¨YÇÃC¼â²!FÎÕôÝkÒã±È4^@O=Q;Ofž`)ü¿cÄÖž Ê,,–h_e2¼èå+p”ºòr«Û)¿ d‡âÚêAG€,Ó¤ÿ¾sø/qÜZt<ÄÇ3xLjîm üÅ/Úr-&C;+ƺRPÒWL¥r{ƒÑ„¯ÒU× XLJ,÷Ô…ÔO=¨6¾]½&ëFP¿C<Ö”·Ôð6/[“R§ðú]x¸hbd„¯#Pv@kuꞨô4¥úu£Q{³.ÖDH$4ÇÖ).åbKð϶ ovWòA]ЄüÉhÆè:< È0gD)HÊâ¯u>é`Š¡¦¨•("U@ál¤HÞµŠåhK4ÂÚ^›ïŠcƒ4<ß»Áˆ“l‚àºq‚mKÝŽ·a„j]~w<’÷ûN/ÝšÁ°Þ”Àô’.¼…W3iÚA•å%*š° Wn¼wû€£ Å«œ‡•o«ÄËߎPˆYƒýëx¤x‰ ÑH yX}À¶(ÂŽ‚ TÄy5³ Àƒ¸þDOÝK<ʧmƒà×]°—P@f€œÊ««e˜)0KU/I˜‚üPÚ(U=®>¬n>ªªÁ,o’ܳôoÿ?ß98¤ä7žÝÀªÄÉ”±c±ÕP:BÙH¬ªkƒD³&t1×"FÚ-><}qºY/—`õzqú°^þ‰¾<ª—¿t+äèðTôÇCý^á8ÜE%K}W Ùü»p¸sôìåγ}#B† Ý=¬\µ ËË?3ÊÈêÁ«©‘CÒj‰×¼é‡ÇÏšO÷Þ0uÒî.é©yó\<‡ááâ`¿œ~üåÁ¹ð”S1¼ \ÅK)2_Ÿœ7ÎTfSý½×v۰ܾڜÓMª0â$‚Äo·ßB gŽU\¯û܇xéš8Ê«ù4¿¸ú¸«ÇD›$/ÒÄ0y@¸¬[ŠžÑüg= WÊ”Š ÷Oñ@â $Û4ÅÐÒ£ˆ(Éê–º©z)–¾-~ ãOë]=ú» †9U:²+JIJ”tWæX„C}ÚgÖºðIDÇ•=Ô`ªâÏYy ÇÎÏØÃª›Ô¦7CÐaªƒ þ²—äC¼Ò¦]¶Ðž XŸÌ’qð¾Grsg ”`‹Q €åM‘öÜ|s›?=¤“,+’|ãêÆ5*SÚT(­ZUàyþï“Ä pà ¾Þ?šX‡dyÔ]êÍðõæö§éîèwÝHd–A^5¾ðÿáËý¬^æ¸NMŠ­ƒíG)ÕmŒôùÎécI³ª¤)·Íô'0Ëwrr;í÷Ä^òëQXz¸«ðEHOª­äÚèàã áô Q¼¿€Î€ñË¡ ÝŠvæˆ×€HÉÈÕ 6èšy•%MšÎýsì´‡dåVòÀÅZüï½,!½µÐ‹a@2Ǫ´PL+ jÄä"U¸­W.¹ÌÀ’µù0i‹Ì*.äS¶ºc/`óö@öë7õF 'ó§ð¾Gv|ã°)Ó€¸!V¬Ö8ùj¾sò¬Z­¦õ¿îîFRŠž‹í†ÙYFðY*F¼Ó>B=bø†JÊmÌë² ò`—ð‚š©ËC 4õ$«/Ÿ(“^…Ö‰ðÂ!3íz¡¢^źP.««kküH¶´fòSõÒê*,&ßÀÿ@V9û‹šÎh}®J™•@ø_Kê²”4r‡^ú%¼å\ú™V§ÍóX/"6"A©Øš—«Nc­œ Q”ð_|Å™<€¿MLRÅŽÕ*$#Ê«R4TÊ ®ã?F (ŒUÜò*Ѫ–*QKiTî%¿Å`ÅMÍ:ÿQduõÅÈ_ÇÙe;søGgpnd­wEPËxÍÌ%‡ºü4²V1aδæòE³jEÜYÁþ¼$Û ²¤ jñ^4­½Áÿñnéz©,ñu‡x¥ˆ^5VkµÆZJ v2„WÍñ©sCY@æ&_Kà‰ÚÐÓvÆ È¹&M5|-ÅßÿÄOøOíW˜þDzä¥]ƒf’5 ¨Ö¶ÅŸåsŒwhN·éæ&]'ì^Á>»5‚ÝĉӿD¡Û¡÷!]Øï»Ã ^N·ý^–¤‡ûggû'§õrº-xM*¹–¬LJIÚö.½äÿ`óá·?ùîûzº¢XZ,8Q¡°¿ûÛqs·.èóH~žI¹ÒDÞ„øW¨ôéAŽAT¾™4Ze$CmBk}Mq*ß+ooß[‘?ù`ÿÏ1œ 2ä@mŠê€›Éš²d&~ðË™-ýb7¥tÒ(sAþ¤EßÞs¶üJ@?˜T&ñ˜C¬”w¨Š‹Yu :¶æP.Iê²*VP´h¸,†b6„!„Á¼¨W×qYq ¶®×èˆh`'@ù©²)²L#Œ²›¢„Q\” Âç)¤@)¦‰ yNƳIÜsñ1k(¿¥ú;¤ 5ìA8¸‹¼°˜câSøV12œè'Ö'Ë /áaƒJ€`)$À$æl+»-Å7×ËšT—EïKT)«5ˆ†º3:á/›G(÷Úšµ@ÀÌ~zp˜©C¨u†9Bù‘œŽåúÆ:»ÅËqöÍlJ8!©õàr£ Ó¸dvC¿£º—052DÊæM½,Sðƒ¦ž -*¸¼{à”Æ*zÎí‡ðm ß :xü-ºPC  Œ†äX­Hƒ…¦Ñäëu[Úüú…-o~½|ýúû]ô×ͯ/ËÅYK¢m˜Å ®"¥ùæëÁ +Ï6†x›¥´ûC‘?u ÑèXöó‘»M¬Öͺ“”ÀS^–ÒjÜðBìíH‘ÛºêùmñÍM4;œ{-ûUÆ«]uç*’ß‘ßð¦˜<ÙPÆSð ”> Íxù:¤3î²Jd„—N†.i·Fc²8ÚqiLÚH§Æ©pG­jDy‚ìŠ"w:¸EbÛ)¬bk« e« ¡¡TÓC½6ß{û§¼'6«Oä­($*\šWôž½;ã‘¢ ˆŽO~@k2ý÷~Ë‘j½^«…Š8J ³Ò*?üÕu7PPHñÛþÎ t“B…4‡GÿŠp¡ Bžž*õãØ¥_Ð<§8_½òƒ-ÌЭc^¡ûköúGóaóÏóB14ío5- Á°^/Š A ¾õ&F€G÷^g´-¢F‹Jëz#”:þ²†ßSOÚ†x°‹{NOIa—m(©¨âeÚ$*Ðj„Y' _Фuõb£Ð8çñVæ'¡è’wòéjÉuÉçí]/¹x½€¶'­–?dk>~ÆQ!^²­™‘´=zXÉó7[ÁÀmyuÅ8Û!Õ%Ú!ºf1i.ÈÝMµPx‰uÚ¡õúø^)ƒ»¸×¿à$¨\mž]¹ÝÜ!óõ*ºNˆ¡òõ5 õ¿‘ZÙ&ÔÔ*`øÂZf¢¸uäí‡Àæ†ÊN”‘·•4’ÿŸ˜ÿŸcï]T*|UííÍ?yªÌ é"¶®„@4]Wi#º.«RàãpiG ;Чë–ܪ¬Êü‘UWAÓš R§K(¬cpîê{Û!#d[G˜y½u¶ÿüÅáÎÙþ‘T£oyüXíJ€I¢La7›ò’9“¢4jî„d*¤P8aä§óx¹?^Fƒ`«V»ôFWã‹*ÖÐp¬ßuúµ·Ö¼ ”ÿ©Z°¾ò{xãÇN¦h«2½çCªŸªá¬]xÎr¹ëÅÈãk}aºé /µÇBKL¢uP{Ýh‹óF ß·Ó ÷òyQòT/‹VÇF.X‚ š;ß °!²W¢cÖËdÞ(™€ìœÁ„®{‰Õ]Àú›ÅÓ¡ëŠS¿3ºÆiþ¯”ÈIqÐoUyÍ´Ë'ÏŸq-Å´LË×(ÒØÐÖÐïyX‹;ìyZ`kAÁ6ðrˆlxYç7.^g‚†ÖŠôˆpÝ®—Kü¥\`ƒ„À_Ê…ƒ#èÓÃC‘ßÊ…çÿÚ;8i¾€ ù­\Øùý_ðþ-ôµìþ¦íÆ:×ï>èùŠRþtñÎ<rå³yyûNQbÈÐQŸñ[M¼ì¢Ì|õ­+XÈ[Á‹xøæ¯Å›¬ú¬TÖë?KkEøŽžBxÕqSíu•u¹åcRëV¤$%BiÄ'$¦u¼Îº8R`¾Ÿ‘k*ßXUè4ÙLJzFbú7dÀR…aÇKšÕ£ÖZ¿IQƒÊ™ƒ::Á <¿‡_õ7õE~ò‡®€ñDbK5šZÏ>êïáWýM}‘Ÿüÿþ[¬Å.L˜ÈRÜæsw™™\ÿ>ª¯ú›ú"?ù#7s‰°æåí£ü¦¾ÈOþÀÛ’)?Ñ­@‹ËGþ"?ùC—Av.ý2{’¯S°T€…Ù.9‡fiÁ”]­ry-¦ ÂûëäAHž°#Ø"'ЖÔ_å°å¢ögÚÜ&rXá˜RbÓGþ‚ŸWi½C²¥Ý9b’dˆƒýM}‘ŸüAWÉàK=ýª¿©/ò“?Ì1/ŸQgÓ”£ÅDj8”Ym©Dx@@Aç²O÷x^n ™7ËtÀßÈ–)³mŸ$T<ŽgY·(³Ô¼C+"R ÁÎ@óŒEú‘Þ)’“ìh‹lpÏ`79tH¨ÓlÉl­ƒ’jóÈ(KDÈct—Iû4¯peT‚Ä&]Jܽ’ÏÔ`ð>(‹¸À#'—¯ïW¤¾ÿ1¡’n@!áøŽûtIÚ|V—¹7Jël6^ØÑeާ¾^hF«–†…ý—<­”±œŸÇl©ŽŸÃ‘¶^ÌH%ðÕvP«Ö*µKøü¶<5Ôµ‘¾ ø@@©&TPm{°}ƒÿ—ù•à¯Ç¯ šüD6„| ¨$atÒCaPµ‡ïçdUëèଢõ+…Ð ŒÂðG‘<½ŽoHµÏ^aùG± ^üö¢òò=Bù,!Ê Ljˇ§¯8ó Õ._¥ôÇh— F%ßõ¤ãZw4ûQè’&Y¢j’m0”í´„†)#Tñ@ t»Î¤©T†!iBp¹@jµd_>/áa/t”Nî'N÷÷ œ¹ð‘´™mñ\ñºï½Df*"'7·Ïå$ãË3+|F^ä=…çäµsj0Ø9Í™jïððìøøÐH*Cr¦G£Q/Ÿ¿0ÒËœéèËÍo»4[¢ –¦´oI36'_îHrÆ ›-€Ô”4q‡a°O'Ê™‹`Í~çL‹IŒ¤ø‘3eô]æaGä䆺Ï&=_58…3p‰¤Ÿ%?–¹Ÿ7g6Q­€: Ÿ(‡™ÊàÇ »@aŽ£ý½œé^ŒáÏœ)Ÿì›æ¹‘¤û3¤}Iût†´‡fæm¡£çFª£çyó:jšˆŒ?s¯W7è–  b©µXéМ|´ý?ƒKh0'º’P) gêîHÞÓ« üN_<<:´9PP~G‡O_Ø((?‡ÖûæÈo¬àÖ;Âæ—@0+÷‘ïw3¹[9¹]tNÐìtKƒ¥:È8ˆóÁМ|Úî ë]ÒqPÏ]ùf]“¢sr¦†é9— =ØígGÌÎ ¯“'³Ã˜œüÐ F³ï£Î%Â/3“t‚®ðüŠIá»æéDyeJS6ØÉ+ìœ4Ù=Œ™–ƒò"ËSÃ&j|£2W<2ï yvr`ÂýΙödçèðàW#1äLíÃB>ðÑtI Ñi”=#çq o›`îJ¶MàkFåE;æµ™–TtjjB^:UÎ|vw v»»ySEÇíî,£VzéUP^‰Ê*ö³Üåæ%"˜M~û_{°X ¼’É>3'XžZm·ÕÍ‘›"ýü=<óåË’io¡–M¼ÝÑtÚm< ÎY]+Ím—Ä)›ó³ÇH>SÉú½&9{ì”H¾fdN®„–Ö$ÈÅå/)´ÀÐ÷#ƒDÎ&¡ Çý–á^?.‘y±õâ-¸†ˆJ9S?ßyv°ÛD“U!–¿^xÑBy­‚Ò”&Š¢ã4ÒysXj¯¤èy9_w³_Ï€>vʘ®.…b¦±e3€-Zl€Å(òÎ*<ƒÁåÔ„ª00÷h;:xºzÖŒè ­ð¼ÇÓÿ<yv`©ePîýøþÞÁ™µ'Ç€¼ûòƒ¦Ö æÕuFj<‹žiŸ<Ц~ò(ï8ñ.ì}8äÞ- 8*¡¹µ$†áKXN‚(äèÙ$~J‡ݙߊžG_ß$¯ÞŒŒw$ðµfåÎ>†l4™“«×¿r‡Þ¨Iž¦ †Vxnù¤ÿ®‰Ú%©Áµ$;*÷\F{ŠM¹JòîÕ¤øÙVg™(.ÆÄbsóÅç° mžVLîJã‰É{Ú>t©7"6ƒóròƒQ"+3|]{Ò¶®=¿6zGýa“ëgpN'ši_•¤x‰ÄÌÂ/~ÝÅ Î[¦nŽ&–îÏ Î{æ3î'™š{÷‘ ‰ó a˜Fºá†.”%Jä£Ê¿ß"%YdDšÁù9á»Ò¹ ü"‘yÛÁO*žšaøP@µSô2Nbü ‘r*1çiGæIÇܧhJ,¸Š²3Bgãƒo_ã|0tÖÕ½ƒ6#«i<2°ª7pqѤÙ>)$¹wŒêþ*î”›í®ÁÇÚ8¦“Í—kt›j2eç—@<³=¯ŠÄ̦™hwýuÓà Ÿ‡W“,Ò¦0l²Û9¹¦ÞUŒÓ̰OLJJ(F¶å*8ïs™‘Cáð OàJøQÆò<°¤¾š‡|¡doÿéÎËÃ32èº#:ã~‹²ã;Z/.BñQ$[âñÈBßáÕ.†B¹EÀôÍ`Ø…ÓzÇ”¥U¶‡·’ü±yx†ulâ=åFi³`ü.>aIþ/ÖÒ unz½°­\i(wçT4ÔPø&/nÂ7y[œ.‡})ã¡!tý ‰äçSùyˆqGÏñÛQsP÷uø+]¼¯Æø•tï‚í«vkAHäú„¤ßz€Èú‡o#À×øe¬^ €O>ã‡/»»øJ£ú+”z¢š­Ž@³IøÈr ë,oZCFÕÉÌc;Œ»iBó¼‹3‡’H^+)øº›ʈ¢³†`aõ¡ü°&p”ËšxX€ÃóàŽîc5üYOHëÅáWššÇ^²‚Õ"–rS„*-| ú(¬ITŸa©z „8­¿¡Ò[ûD‰ìÕ¤2û8}w„=`ˆÀü3"Áb ú&I¢ IùjÉ~™€,äWm³‰ž«5Ιÿãñ[±È Ü×Ñ÷bã\¿g{-_§c0P½‘o!%žaHQÂ:“™T³/jÎð–üIÈ1‘÷az*—XY² ØA€îáý+ïÂÔrñ•5§VÍåK¸éETEâ|ìÔô¼ŠŸU­ˆ=zŠQ¡\¿Ë¨d, Æ•>Ù)QYݶÅmaj½iÆ…"”–z?).’6’C‚VB ÝvøË&IPô@¨© ÁŸ¦FCþŽÔ:±)ŒýçÑš°"]ŽG'ˆ¯ ;E*®ŠŒ¿BÊ0>>‹ÌÄ$±Ù/„mž¹ÊÆc®2[Tr¥ç‡Sл4ÿ ®¤9cwd¾š6MRûã!9”c;3ôÇ—WÚö9™¿€¢ûÑ€ò´œÐ´ªå*­‘à+-4[˜è\ŒŒqa-_ììþ }”KòÛ—”¼ X~ãà“çròœød5£\¢Ï2¥ù [û•¹¶Ï,ý?D£’[“Ø Uó¥B *t„Q6d³µT/F  M¬E¦&ÞÔΕZÑêÄÏw.ò SÓ»ç0)?ƒÖdѧ¹á³_¯Ï6ºT;Ñ›ßhË–OÊð¡?j|ÍhšYNXÐïÇÈ´M¥éŒ€NëQ a eƒ]üô¥%÷÷¼Ü(YSî’ª‚,ý“Mß”ÎvÔRe_0*{ò6GFñÿG†'¼Ë>M\¸ì§„ì¿£•*˜0nw‚nÕ¼¿œáÐU6hOÇýãSñ¨ºYý¶ªž[˜õtQ~Ì‘^È©Ž]«ïl›.1j0¤ðУ'fó…]½ü†&ÃÃNøÛ½wûžÛo¡W7èþH»¡'FÚÄE/-h‹~¢[ÌÜ«]'@“I—ö(eÅI|†! ´ÙhvµvüɦGˆží1<×F½™]|4ö¢£ô'ƒ¾|º0z°¯C÷IX†˜º1›]ÒÞ6‘ðÈÉ‘¢ 툠çW†~PTûþ¡a¢èÚÒ® ÷¨n{ ø±í3Ì•«UG;ºn‡žÆC8YøBS·®Û—ãÍm“uÚT­\-”¤)‡lO°7¨#Dá'þDŸe´- Ý‡ü Áä–©¶êÈç.8´ÝÚ¶ <QÄBVb‡aضø„/xÙE„Á¼Pt¦†Ç‰Í²ØÅæ·bóqá:’ágæŽX 𑹻†åŽŒ' ¡Ž¬tÍÎWÇ='x'|÷ ÷#—½Ù¾¢¿bÄ5%YÍXb Ÿ„ÙbUiå¶‚·í÷ŽŸCp4'4'Éi× Ÿ¦›ÀLž'0:"ÎyeW!c^ÁõlŠìõ°ïE ’¡É”óØ#Ÿ=,ÁpP††0mO­*×SƒjAšt¸"ó œ($™#:8V¦„®Êöjo­jg Ã:Ûß~%ÈÇÞ+Qn<Ø|\>‡Ìû¢5¹„ ³ÁÞœpzB£‰ömâüÜ2»3tÿ“h%`ô·†Xôrλ>J.¬"›^“.R¸îX é€ æ;VsØ‚ºòaYØ@#‡è* Ê€°àP‘¼ Çˆ•vÌvÑ…|m÷\$ÕqµA+7ÃÙWfK Îõ;j´W$Ê¿î?;8‚ÉÆz¹¢Ó^ŧ²øÑ|#_ÃßÉ|84‹[ÃO†ï3K,Iè»ÁŒáZ´³=vY¬²øIÍó À›UH€¦Iµ@¥-)à˜)3ãH‹¤ÚlA‘ç]h÷€Äi”®M³[ÕõÚý¯J÷1¤o¯W+›É$'´–`äC†liÇf õ4N®>QOБiGÙ5ÑÞýyZ/‡î=–ÿ€q«’ÔË_ÕüjE”•4ØÅ'ß#žÝl{$í_eº*àXõù¬qÿÊJÕϱyq†b ëÆm”j¯jƒ¢ˆôXXÑWhæI·RÈ SšMf"WF†É‚yÉhÛXù¼Õ2›«(ê²|¥¿‰fø•ÀÕ F6 —¦‰sÙÜs˜¬älœ-25`/› œÛá,‘í_.\‚ÚµÓ×E².÷Œ÷â›z­0(\bÄë?¾z³þU­VØ‚èp›A­Ö±X.AüHÐÂV¿K,«ÕƇÍGß7>5ÖªèciТÎ&ľ† %Ú¯»_»Ä\ÿ¨qî%êCfß/\pf[SÉX`•)•вťÊ.ÑÃLæÈú‚K‘M˜R .ÀglTİ‘‹Å75D­#4þRkô!á'H >hgnæáÃã#{…cHÐ’¼úÎ%L9]§M/@]¯!è LF4©öÍÅÿŸbª‚u#ûµ0OIƒÕÚíÂ.¾Î®FWÙA*nˆâ/EÔFÖAÕ)šˆªã¿—£«U"|½ùfMÅCwBÛÂ?*Öðã›oÖ¤ |,iÙ¿öÞ¨ ‹%üfú§°ê£˜¶ IN)\ÊzQi‡²"›ÈvM‹2 |±0ëoT¾ß*í ýÔe¢´koUû›o¼7Š>l#¶b÷)„#ÍlSçT@íe¬K‚d²ïç¶e &- ñš]«Áh ý—˜¾LlG@V*À~žHÌÃ’%j—ÅÐÅû4ý(’„€ŸìP$Óc â°Æxègi¥-;ÞšõœÖ´Îpbƒ½’0VĿɘPÏ™ÈÝÚhHz=–Nq+G+G ¤7i›5ð¤´Ê–%×pwXúÀ?>Ñöðþñ‹€ ûÐS[DÎ [™bqSW¬7Hi=€NvÚr{IþA¡OðgËï’ù]v#××ÖaAd¥Ã¶À”¹Ã^×ǽ'É èF˜ g³+YÈwÖ})¡RJvO Âï{ÉŠ èk–$Ê%&Q´j €ïÐ?õ2@ß=ñfŠ@ßêô/@!6€ âë~Px‰¿o5tnAÈ%©†ÔAª1UÀ[ëÄqk׫Z8?òh€ËÁ³‚_Zùêª;È£Xʆ-¾³}x´ŒV„}ïSÛ7Ïã­Ý˜Ùíb-žIoä\FzÂj¼­×O;Ü}C† éJ“ŒÝ&^ìš¾Etz$óy³¾µ¾Fô[‡ë°‚míb@ªÆ ³® ¾%hØç›Êš¬A½²U ƒ×u°L¿%?«^ß,1 Ŧ—ç{nÞ’çnTk”Gç–éÑYÙƒPÒÐ’1PŒ¶†l†C*Wà‡-$ ¬MÒ)"Yœ—NWd'uèGÔñ „+}«Üzc#˜ÜEí/e…i+MÙìxà A•% P+{ÎTdÖqÝ6«rËþ¸Ùl¬º=ŽŽÉõŸr²LDRƒ[Õ½ãÓJ0‚%eƒX)M×F)¤sïó-Ø”ß3I ªmÈmˆÝ ‚N½ñÜE(ã•÷¸â!žØ5ɽÊr›Yá2!Ž•—9L7µB„|L³ƒlL¥î$ŒW}ԑЃ¡¹ÐNÔRhGí'S\åØ^p,³’ÆXR?;ÒØ'k¦ñ wT`AðÈ$ž‹H¹ˆs}jV–Š?Ë2üªWu«lA\òK@=wmC \@n᥎"AxX¥;«¶òžµu­†áóÌ4,m)k r½ÆÇtúDªX/‡‰håƒ]í=Ë:áz¸3ÿ½kÅÇÛÁÇ-ù}C|¼,î—ÃL{µ¬;vÊB‡_ÁÊT1v‚ñ2ib(v)©NÁ>äõ0¬•Áa ÐÌbÜÃp"á“íOŒ'žlô#w ~×ûKÚØ‡¥D;  øPFõAÀŽaqOå´ÈÓjxìŽæH PëûùëüÑXJ %DtÛt¢"›ÍœÑVÊјR²Ð©ëý†Est %³]KàeiC•1×/à´UÙ¢¢oÌÒBYñ/S\” Ô°c ”ˆÙïµ,FãŽ9Ù}•bõ_¥Âó;°²S$z°Š“d²ÈåÃJW  »õ¿Ë‰•t=Æji·#Ž¢¨wié%¿mÒ¡‰&Ç1X]“# Œ;øT‚ “¡v¯^µBÕ« ¡\=Új‘•ÆpˆÙ¨âbúæãGª^É,V«E’\ØáØŠÿ’źÊyÅŠÏP&0ò­½þ³]ÿX«V?^<×d ÂYaËS´X\›±IØfRlR.µp: åo(\i]úPqÑp»Þ°YÂöD%üµ3Dï!=–¼ ؆&[…H1ìrÉÂ*ï7j‡mƒEÐ!¯3”"Ç®9½«JÖ”Þ ôod-Ã’Z@‘©*¤P1n2ˆ“?oɯT”% ²‡+;Yt»e¶“ ÅŸiå- zvEœ¸]hÌ÷)¹&´ebI¦µŽ6»‘jF!ÍdPÙ #EIÛW<ÅÙ½BÓÔØR˜N!Pp )'Û<•¿ M­ZÓŒKª½Eî®”³ åëB—FþÎ( ç\ã¼5Ÿ¤¼¯0ïÏq•!ïj(_F¡[ :Žs.ð¾PÛ9húºf}ÓÑ=ݬxzðêùþ–:‚l½ƒý Y‹Òƃ7÷ZL\g¨üƒ=¬>y@N6 ¾ML]'çTfhàºýzA 5*¢^.Ô ¢éqYù³ð©Pû£P™Qà¿¥¿£yzý£ë·ð:£ú‰—#è{Yy?¦»]Rõ/=¹˜…hµX#7Eº·n”Œ;3VŸ‰à¥ ºþq]•¿ªbâ÷°”øK’·Ürôï;'GG϶¢Å…H]¸¹ì㕊QZåÏ)Mð¾ÎARŸ×tºˆ¶/"ÜÂ÷uóÞ/Éo÷/e·5„Ó¬Úý~I~Sa'Ü/éï*RöÉý‘ÁxðƒQ°O\ùëþeYCb¨'5v(¬h¤×çÊ¹Ž¨‹ój'Ý)‹·­,Õ=ò,„ʺA ˘1KÛR¿ÊºJ§?b?ëÈXäu`õó\žšpzP¶,ú‘â²PR™_i¾5‚ úÚ©üµSùßæõåAå‡7ë¿Ô¾º(‰ìq~ù¨¦k¸ú¸ õ-@™ ý/÷“–þû1R‰½rªÉ¥•ˆø»Ž —=Ž[™™$áo‹K”ÌÓ¤v Õ/‹“Mb†Ä2Œ“š¡š\.‹L%èH¹nq¤üÁ‘¥„Y\(´?P~i45ŠáFP/¾ÕÂ#7¥6‹lü¤‚qI›{ÛZ(~wãÅŽ†!àËÛÈ?î÷Õr-°ú„…Êâù¶¡çÔòÂV2?>#0XÒï­õ:rV;öäþJÌaÞ5Fi4ñÞ ÌwˆW •sDí¶qn¡ÎM/ Cè-U!^t]\˜é–A0ºRi' r¯QÿHÉpƒöäóçˆ&Å”q©€ìJŒÕ.V_±/d‹u—”Y(µx×í}„Eî咽úeΖCù¿­ÝµF »365wúÊzZwNIBZ?Cm[{aÞÚÆ’+§éo•žÅ¢ò¿"Ž»m`µã?~ ¼h…w›ImðµAw@± i1W—yWh«Š¯§ð‘§¼•ÏL`<±†Äñ‰œ;â£ÛÍüj–/CsbÄoÚîߊa ‰®¸ªº[‡dTqV¿ëã´›èY[¨.PçBsÓ£…ÈžÚÈ3RèÈõùSy¬‹jöñ€}±˜¤Ñ“~ߨë&ëuô ®ž> ¨¸¨øÜªâá¢t^?ò­JWG¡[«2hS1tר.¾ãƒYºÎ,øZx›¥ Lpy…\úf¥"¶EY¥®zý2õ§LNG×Ré(‚õÁûšÛXaå"O„ñŠo @0HT)ž ÝAG4àéŸ7ó6 ¦ÌøòjËÊ ŸUC¿åäB:*£¤4hœ6n¿ú°ý"Žäçq€NÔT¼„ãÌO,3*qq.}¿-\}Kì¼âëfWtÁ’.I0r1‰9=|ðè{žx±ZF¶ºëy…Gå¤C,—uÉ]¬|f^ÑGqÁx@FIð $>½Óû}è@ &Wêþ†Àßè/ïò—bó‡ž û˜·ôGÓ¼¥‡.n#®Ña÷nÞíâgŽƒ _íó#Ä€ïrñkÀ£c`i‡N4Ùfaü=nâ åóý“ÝßvŽÎv~=8<8ûn,žœíŸžŠ§Ç'bG¼Ø99;Ø}y¸s"^¼½:=ì9 µE%²-SÀK[ØçFOlPÃãeµê‡ÌÃv†}RÏ5Ë@…§Æ§J1ê¶áÁŠ "e±¸!"ƒ ¬T[Ý?¼òòm*tµš†À¼3fΟƒ³ßŽ_ž‰£ÿ ’ëã¶5ŒÒ@¥WÕ By¨dãJ‰ç¾‚°…ª•¬a¦A·Ý‘ãu®ò qäÑ íú@´q=>ÄI8}øâ[z»-ÐnªMžaÂìÜ )þãÕh4تծ¯¯«—ýqÕ^ÖºÌ#¨ýTÕ~rI UùŽœËK·­AÕá•KÂï5)K~ÇY-8ï¡jdWRõr™±JC²zþM­¡¬xØ6:zã>¿DÞÒX3NÿsÚ<<øõdçä?M<þ©ç2BGF»VVV?ùd™ˆõ5÷;©.‡.ë(¡¾re¯öÑB‚Ÿ#žsm‡¹QW¸¸œ «aX¿B*RºYËVµäLôøùÜD–ÍÚöó3Ù±A§;ŸY¬ˆ,«Û»@»[z îœÖÑ?ÆÎ)º9< ßkkåàéäw$>f‹L P L†Ê-RËï\ ÔúLÔêlÌ)Ðu©†NlµïÚäª#ªöðP¶-]^&›1ìg½`ù°Mr]Ko‘¹#¤ÑÁ.gñy,é­6ÔŽˆd tÝD!¹öv^U³|Ýf¸¸-èL¨âå5ß»†=!‰ %ßKW¥§[òÞHÂöhŸ%[…ô _GÔ¾x·(è:ÀR£¥JŒ_Ôħ£ÕÐÚ•‚k9Â&ÁÈ….øºEvâF’—Jeø´5\Ù²“Z Ð^g•³YÅÆÎÝô-kº”•Îb9(ôþª¾²)Aì=«qô•e€Mîè«äþ•w_¬·9t¡A8ï}´ÒjŒ×‘” k€%^†¥~XÝ\Ó¢~×{‡"g•Ýõ=ŸMØU¿ªÕŠ\>ÒÎY¼B -PFxÔ"Bß‘ÃV,~‘ý¾²ÏšZwX•î`©w5 $ÑâÁ·uCâ§šøiHüëé^'ÚóÓŠº‰Ö•ŠiRÍCº£ç”èè¹97aóC/õQpÃôhJ ‹ýŠM\1 ~Ñ(Àj (Î×÷ä5XäNègË«é·Õ’Høn”XíûÃuHÑ/®U Òi+áÑWL·OÇ%th’“Jw­ÒK+¦ Õꮜ‘¡š6EöÅZ =µj­˜x4öAÎs@ÐÇ{ÕhÖàZv*{eEjeßQ'PDœ„“Cû“V™€~ȰQðh 'Ϫ/è¶A“‹Œ¼80Æc.XS<¯¦1&ž¸Zµ®ðš„ÁÖö½šârÙ>gÓ”¤½2O-”Žm.i´­–Ø+׌j²ÿSÌ/)‚ETÄ&Zˬ‹bhz4âó°ƒÈx lå3=øx–½ÔΓ97ä…a˜ÙÓ¤\X„7 xæÏ6êS³„EZÐ ¿…O@T¿`8Ù54‘ תä;.5Z­Ê¦hý§’|BkÌÓ.˜4r¤-’¾¢¬†.S™œ˜äòõ;¯Ë€F§:¾´Â¤rKðšŠìâÁrq!³wüžr€ µÄŽRi5ÁoF#ú˜MJ$X ÙøYTXé.Yð×d¨Ÿ‘æÖÔ¤·£LP—SÅh ”¤H£¦Ð•h5Ói–RnÀ]¡Ì|VÙp0ow#ñ§Žh¬3¨†ö„‰NwñêŠIÍÆÊy´›Ò£‘ Ò·¨&²Ï!nè\Ë®ãw®»R!_Hpý)Ñ6ÕD-e›É€ÌhÅÊ€gX‘w¬u†RTMñþ™•¡"šš)NTª1†¨ªÒÉnŸç¢J~Š!]‚N)Så©=·®PöuŽ7Lª¼ítZ+XÔs–‚qm¥J¾xª (á¶§–Ïô[1SQ„æÞ[ŠX¡9·jÁræa“”*Æé ‹¼Ñ×þõIÍáFéèy5ÁK(r…ªâáµivEÚ´·„õzgÓ¢ ,\ÇËÐq° ×¢†GÑÈz£¥tG\x}Ü|ᬣĖ;Ѱ…Ì`«¥z#yDûcÉïUܬHŸ–Ò•¥¡ÛPšŠxºj@;$ÓŸ%Ëdú·š4á±”¯–|¾mu#r(Ð:C·-*)&ÑÝ%æ—Aö1”ál¼n¸|€mÙÓFLW³ôzˆ¯ž‡Ú¬Û³@…³OE±xŠJÃj–k#,Uz4ÛÖ»]l‡"yEkkzÑBrðs̵QÔ£Q„™£Ï:¾š?Û.,OF>‹j£PÁVµýYn‹FˆôÊÉõUý«–ç"ÓaQ‡HJÛW‘í¢ˆì¡boÊ0¹ž R™-C’¾ß¶+x¡ßƼì`’Ÿ3eù-¢mX¥æ—XÓÒÀÝRµ}Ñ’bp›³L¥æ¥ºÉñ”®ª/©ÞÀ—0×Ù–Ÿð5GÒŒð C‹bV"¿Zá$R}=œƒ´zTºG;Ï÷“ü!ɲF‚ÙŒi.‚’–N“Ú^‡nþŽÂ+@Tx~9gºI" ð­yá{^@ƒ—î’ªVm/JÝ,I¢1 x²ó$Ì'1&a;/-FrŠ#QâÎ)¶kJ㯷JSrHØm%ï´b»A6vNb;ãš VÆ$Ëj ¦j9^bþÍ ”8B/Lò¨KOî[$jBÏ;—ô²Ÿ/tKëö|¸F¦Ž®üë~ÕòÏddG÷om >ßbÇ XHµ–1 ü5%¸i’í†; a«ˆMt°´šî²©žÅ" žé1´€Ç¬™Yg[avYVêY?9èz-οè"I{Lz\e”îFѪ–ÙSBÈÌNdwDˆLúè¯ZP>Š8¤n».JH EêD‚Nèg)ÁR2/>Ê"A†Ð±ƒ»ò·”îfÉš¸ÉaûXaÇZ–”E¬ª°W¢¸šæ¬J5xò¡Ãáž¡«’ê-v$A k?ÔyCÃó%6~ ïf\*îp’uPQ_ºîf €jÇš¤©2‹µŽIo$2®qˆõ¦±’Ö6Ø2À#O?õ¼þ8h…‘!é…8ý ¶ntCêß;'u,Ì-”#¢VKO*“F@'z;pŸZ(M.C¡!ô[aßÔ€HW_° äö ¡^z¼ñÌù©s6*¢ÃŒJLð LG‰Ê !–¾’®¬&œCá5ßÖl¢’ÕM0lŠxOlý4!Hé`÷h5/S« aSàK+c²b*Éܨð‘÷0PGo‡$õUDµÎR(: ñ߯¥äÚ™MÛéȾIÁIZ|ÒÔGó¨&9ñ3L3œ ­V9\¢¤žGšw•¸åÅíï=í¬,×™2+,–uבtS7j“ñÃ)Õ†1fZd黸FØ‘nxÔdÔ„UÕ³º×äki ÷y†gCÖî™±¢ÌÄ•mÕv¨U†ל§¼ÕBÂÉnüXWîCµ,¶ìK‚AߘÕÕ˜ÿî¨Ûnuÿzÿh/vûZ>2_•eX9ò>¨`Þâ~úòh÷ìàøèpuçd.ûK®/Oö‘˜ü=ãr—Un4Î{v~=ܧ;®@T™þ‡çO*•h…¹6„a´z“.å5 1D^·(¬hý¬ç*QÊ&oÎë7ï„^X¸ e`7W5‡tæÈ+vøB©¸üz þy³U,¬ù¸‹ïvR÷›¢~"C“‰ÄtU/ä³¥åâÃF…ãl€ê±yñfkë5|îl½Á™¾ ®/¦Í©Fà?L¾CÉwò•*Z7Í\¥•¦l©CŒÇ‘ô. HÜürúñ—‡ÊdÆ6d«Ýan…AdSé7ë¢t¨ÎÉ¥+u4äPøôU40‚hÅ(Ï›­õ¦a*‘Í?Ît}+×F"[~Ç[µZY¤ˆå3µö2áVu=Î&³=ÒÊ=kÕŽO¤©Ýuº-¾PÐj5ÕK|åóÎ}†~¨ÎÎ,ó´† WÔù! ƒC8xè…]«InÝ`yÄ2®‹ÛQ«î!‰.¬Ìí“}Äðw«å´®Œþ¹&´ÉqAÏ©Z-M¢@ …õD…ËŸVÒFeÝú ¿È%RÜ ¹|5+D´úM–gë²cŠªzEÕ;Åàkèý¯¿ÞÁׯ*_]<—]£Ö“©ë€±ÀpcÊgܘŽwó­8¼ø4RÞ¦’!Щ"ZóP.Cƒ-Ïèrb· 8ÿÐx{õ_8ùô2Ž>nÈ÷ÁêðîñááþîYwq§èÄÓúìfS-2RtâÑ{‡ù&á¸CÿÎ f ÷¯êìÓày lÅ¡ƒ–¤ìptV¡ROe‡ºÀÏ]ÙV)»ç­é°d`H»e£áZ†M®,k<¿/öþçÙ‹}ÊÒ[3R(yeLJ½{Þ „îžÔŸÒt;|Z!»4|…槇«0%^±$ËôÔÛè9ãfDGÒøl¯`v'êR{Àpñ æôÔŸEbÙdãsIp«Ê'*I±8lÁåújBR/ì2°2x?VÞ´@®>:£¤Çù¥?Ñ ·RÑkÊÙÇbUÙ«RqêõÉK½÷v,|õµád¡Óû¡ùƒAbÃl–ŠÄYѺ‚¶ßÜhÂBA:ÆÕÞlÅŠrH^1 ÃæeÏ"É ({je_|áoºU#mÆ•,Æè«)Ù÷ѤÁóÎð•–ǸÂJø${yÈûÞÒ¡@׿Ü}ÜàX»‚”¾4å)’]¸áÃÅ%Ù]å†Eb ‹—¨Áû02»“ õǧòE->Ýúù:&a¥”wxJO‡ª+–Kr dì}0H$52ÜdddK ,ä…XdÏ>ja%hì΃Ù&Èùü zÓêgòèmÈít°²ï]œA]?ïÄuK¢‘§½Ö&ÁNεա»†UàW¨ 0d¶ç¿S_ø=Ò ý\ÝœTñk„Uå´§®|CiõTÞ›Ž„J}¿É‡©d¼ mÍÚÞ$ƒq ·iäõÅÑž¹DMgxIŽX$¯7_#ôI„j ² ˜–ˆ=ZÆÂa[y—Ü?Ps?­@ÛDˆ m‘ŠMƒU ¯'!ãŸÂþ! { %„ ¬û÷7èØ‰Þ³á&ßÂêò®X¸ÎÁì«£C2ÚœöæAMÎ/š¾¤âcK#u± á8–ï„(YÅ5lìα+æ‚¶a}úòWÉMŸ°v¯ѽ.¢m¤c©œ'쳪R!‰ˆ,ÉmÀ/6 Êó¾RÁs@3>¾¬Ð;Úr)»u¶kÆ6~Ú>µI^ã4rŒ/ŒKj¸ ¹ï¡ûžVXi7Y¹²‰‹“q¸ª/C³q–‘ÉÕ6íadÅ¢bÜ6”6ù¬•Xi´ Hb•ÔŸÖ/¹ZAÆ÷ð«þ¦¾ÈOþX‹œ’°éB)W…©¯GJ ˆü†Ÿ±2Z$æã{øU³YÕõŽC²Â=Vy7J!½Ôã.üª¿©/ò3Ú8¦Q{ÍQ1þÃø~ÕßâUW1:úUS_ä'D‹)SÛ|eÆñÆ÷ð«þ¦¾$´xÊ|ÐétIã^„¾– 4ê’‚²ü-‰øÆ'îv)ŽÊû|/#n^”'&Øs°zSêDÂ.Á«×}²‚žoáUQû¨’Ç‘b›l …5-êž(ñ§ehU·Ðg·ŽáZ-EÝ”kœ¢ÈmñïÇÀ˜¥å¶Â`d6Ýð&ç§x¤f§L %´Úê€×Ã):w†¨ D_¸ !>á‘7wI@BYù£*i»”"Zlå%šô…¥˜^¦ŒÖÄ9êÈòÙàº}.4|ô+¶DIU¦#ð¶t¿¸e™R“«öx5DUD×AwçO¯·•L o•bÝÃ@’#\Ø$I&h§&àë](°åhŽ>ÈO¤² º¹7¼µQ!A’°Ë‡vmôõz]g/ ÈDb•šCñXcÕPNK½%æÏVy£étÔ“‚ćv¶÷Ÿ¥ÿŸ¥ÿŸ¥ÿgéÿ'–0ÁÿÌ„v8a³õgL—c—`5èn ´¯½­ÒÄîä²?Fäkìá"6¥Ýt‰³!$m?¬u§ž–Œ…žî´æàž“s¡šÌåŦð]™l™H›¤”B)?£ÅÐVzgwÐ÷mñM ß<ú£ï´S­ûÏÆê¡t™PUµ,¨#[e¼ïFFøÒ7Áe”O´åŸ+Ý ïž´Á(õ׼ēWÞ@aE½y1å{cÿ¨eü$REÒäõR|ë™ ÷Ò&a@¿Ð¯ä CBÙUê hs¦È{öN¹+u¸i 'HÚPú›‹ðDAd¤6!?èÊ€¿áM¯!ªAÀú•†,¦òŒb–Kz¦J(kƒìÐZ%6èB]lE@¿EvFÕXÇ[ Udh Ôij¼FÓL<‹íEµK„èè÷aJø—}43Ú„=A@Ê}¹U’7Ñy«ÐT[R–õ}=g‡)3Sµia‘8¡8SpjF^TØJ…ÿ³ü[ø¿·V6«Ojt©ïÑÈ­Ò|ªáU6ŸÁíäñàÁƒ' üüîÉcú|ðcÔwŸ<›ß~ûä»O¾}ðø±x°ùÝãÇOþxp;Ùgÿƒ‘3„¢\ãË(˜ùí: ët2øpe„þ¼#R¾bÓÉNúÁS±ÓìÆ_$MÓ äu(Òš\¸h»uˆ·uTJ>eBg0dȆ+¾ù9¸D]¬ÊåAþá…Ô`U¼¶Cõ_ùAy#%j3-"p«ƒa,[ÔvÝn×Ò$ÀÅ öÿ±÷­íiÉŸͯèEœŠ@B¾FÙ`„m6’Ð)qRðiÖÀ°3`Yûüö·.Ý==¤$ûœç=ɳk 3ÝÕ·êêªêºìVŸý°M¶vú]q ó¯Þrü¡:}2^9¿rÛÇäÆñß®UkOUãC*R¡WÈf¬¡Ò§TPIÙ\òvÑu½ê°k/ÿ½~íÑ=ZV:ÀµøËKË[¿º P½6€ÿvQַܧ‘W¬iæÞ¥íUi¾Üå'@䇇‹Ú*›±¸îrñðp1ÅÍ×€JÁ*þÕÃÞØÖ¨2r¿B¯UÚRû+`¥”zx¨ù><àÌ44-`4ò« á ª¸äm4zp¸¾»äæ+À¥{µ¯£'|°Ë 1û;oqçyËŒÍöôÉ6 áÀá,®*h(›ºZBR ˆäè9´~ÍÝìUS×€-®0ggÎÌøþ¹.¬î ö[¯ÇEQÿi5ã¥ÍôMw;oÍÎáqû Õ·›wW>ä:ƒ£ÎÉaã—V–ÖÚG¿@3c4c¾³"JwíUÿ4Nîn+ÒÀ ‡í»:8‘YuT¡,cú­}ôx'?Ó´wz'˜Uô¸Û‚?©jžìP:v7KC½ÖÉéÝðqº­ÿ…æ_Ÿ<uÝ““vêáÈ”ãƒÞÝH2à^tš¿dê_» 3‘1²RM&aûƒ7G§iûÒxók#à8[¥;ÍZ’[÷Á~–eï¦:Ux¸Ü­,›š|aRÓ ¸¸ÒtéÙÝpß~BRsG4ßv¯@i)ÐÔX¸4“Šûÿ*ô˜š['o;wÏvPÕYŽ]ƒ<+2%›OÕ"z3aÝn§s7Q(„9IîÆ|÷R¢Šœä,ÔV‘Œ§ ‚tÀd"=ÔΛæ?2´Ó== —ªh¯qÔ>ùÑ&Uy@“#`"àP¸{µÕb#¶¤òëöÑþ½ßðH…O1EšC *dcŒ=’á´‡fpw¨-Ëzgâýhð€¿¶ŽÚÀ\e8nRÒ_Ù›iQpúDE'HStn-P;Ž!ˆ/œQFÆ$gHò1z4_i¦ª´agdY¸×é‰Oï´¬3W`ª¾ðº™î@ƒs•N#Ý Ö7 ‘‰°nÀ½Àñ¼ßi CÂdgÿ`œƒNŠñeDyžŠDNSI·jC¿¹{¯ ˆ(½¾gc´˜p¾{—áìR“”‰¶gTnK‘^rÕh/5!)g""çïÿT¨Ý”|kÚy| -2@ûdÀìhÍÜR U˜<¸é¨Ê@n˜[‚†Ri¹HÏ‘B!ÆJ¼i@ºüçi礅qïÒI½ëhN:¯zƒÖIúáü4EÝL¯ndMk:†Ú¤ééÛÔ…À^m§ÚA¨Õ?ÿÃNH¥~SX)¹Ž´;[²Ìwã@@-ïS#=³„ÍÓnEçÌaÑ3h›SqQûi/pùp¯H޽õºý.£2;­–ZJ¯7Às£ýz J¹Î¹ZöA'¥ -uq8g¨ÔÈJÅQåx¸?8H¥Å”Gz:ÉXy¬rû)tq¦†&ÓiöînDiœ¦½ÂHPí¦ÁC—²hoTlÓF:DWä-ÍÝ\¤ÒÊ«Zi4ÿÄÜî·)™®,Ó’CšEÌÀd¸ɺiÞt^54[rÜ>N§¸‡,­×=õ•F\wB[*º½°ÌÊ$§Ôw¾ê¼JÄò@ ¼~©¦9ÚûL >DînX tX¿ô;žÿWí^6‹€´W¨’ÄR¥]¨¬|¿"Vè”N_9Ȩ‰l¯ +²‰í_3Xg¤A»åÝÜÒIï覾õîögÂLGE£û濲ŽUš$DÑ}qJ>?;‹´ŸríÔP²qŸÁýr·…*aÊ^pOs˜Exªôê8DyàpÓÑ\ΊÒ_ߟoAóÒófo¯Ë~EQŽ´y—_Dí/¿ˆT~Ò"ðÈø­ñ6-—Yè§ÕôâÜ8êµ›Àe¼:m§áPѲcð¦urÒz‡ê¦“ô+Mkén¡2^̪Cà°“Ò¸XîÛFÁV?iuÓ°”‡h5ÔmÙÑ·'ÞáÃ,dásøf):¬TÃÏ¦Æ `UqºÆ“à  H*øl5”ÎüL/ß/x¦’ܤ…ƒí¤•Šy‘J„t|Â×MTGÐÔ"Ç}îu›)ÍÖ4G:<=8i§Ñ™K¾wÐ:è¥Âèýën«õºÓM¥"ÄI£Ì@â  ÇÇæPïV”R‰%Ùïýƒf$˜Š»Èxí4"Ã2¦i$ãõêÐæ:3Ò+·‚}þ¶“- ‘£ƒŒmj™*tÖ}?t%õi­÷^;…YWfÓÍ̺v½³ø@Í@:€\¦ºnG5Bç´›ò 霤’Ú^€nˆÒÚ ¬¡¾Ï@¡¤;Ñ‚×©ŽØŒrï¡–]S•¬5Eæ~eæèNÚýKúÿÈ7ü:wÿåØü—có_ŽÍ÷„ü—có_ŽÍ96ÿåØ|gÍ¯éØœ.¢ŒQ>e ³FšÈ-fùt<ƒY#ml–ÿÝ÷sôYË¡èø:evóÊ蹕É+ìžîjk:È}ï½uÝ ³;3~5¿ÊÌž=H³ù§fp|]Û¹6³o&áÌj¬¯ì½†“ö·÷$ÏîížÝ•>+ÝM1 ½ûÿ· x°N(†5">¬XbÝ :#µ¥íša@Öˆ7’9¼Iö(*Yã´¬Æ\ßL>»÷ v“=´NÆ(>ßÄG+«ãX·´¯è—úÆ ›ö=ç ދ™=#×õÀÌèèy_SØoåýº¾wî:žÀ߯MùÎ{-—ñŒ>é_é’<“ûýzq²FÈnÚÁ8c­x ëY¨¯["c‹uBedÈÑÈó#t¦4É»$[t”ì~YC»¤³†¯ÑúŽMë¹QeóÓZ×!,³çY¦`8™ ɳøò­ç—÷5=ïë%¹–kffÇÏŒŽ¥kØÀ¬ã(›Ùw-§ß5\‹3»/¯ë)}çì .à_ß=«ƒüZ^øëúû¯aà>¡ Ö‰£Mu¸V4ˆ5ƒOdr‘!„Æ:víÙ¢dŒ.ò-cŸd®°~ ˜:5ÌQs’|©2ð=ÙÕ)]ÃÖô>Ëîé–Þ‘n-?½{úfóCÌìæ˜Ò2“Oæ}|?×S¸eqd]Ã]6›CnOßµ\‰Ó[Õgw‚^×Ù:‹CwzOñ¬Nèk9º;?ü{F ¸È‚ ñ¾z¨†¯h"›[Ù!5¾M¸ôáG¾r“sI·3D|YQfElÎ fáòËÿM™1“ó?R"?¿ú@ oÍÿøäIíÙΕÿ±ö¸öó?>ÞyüWþÇoñ,:®õ^Š<}{?<Û•ZE(e©/oFíûDPZÝÖ–ú»Õg»çåÑl‚éí—¾-ÔÉŒ§7xÝjœœv[¬XÈÞP¥~ÌIÛiœœ4,ú K¡daÛ”VZ«¿2ÙZù]rÜüØÌLéxv©Oìé=ÈIzÂer8¨†tµ#×ögEÌt¹^‰åÌþ4·f#{$ ¶J‘yq#FöØZN{¹ØÕJ©ÿÇàïP¸ß¨ü×àüû‚îHHS¥JØ¡Vçõgºzç#—Ÿÿõû ƒ¦B¿á òë•÷=e û,WSwy¾œL„i»%ãÖ-áz´]%˺`‰kÌ-NÓ$¬™F4 x/´ž1]»^ £Hè®?©@Ä^#©HTS—¼¢†‡\N|pí¥>=× */ZüYÙ¾pf°)¾œ—yý-pZŽŒA·Æ ¹ 5,.³«ÊT¨°F˜*ݳ)!¹[K\_Ù31³m@œæ”[ǽza²@Ï „Ó˜\[7>í&wé ÷z¦ªWUz±P¢—E¡¤Óž¯¬6q1§<®K²Ž1 ¨yÇ–:³É`Tî HÎ#à°3³ƒ _ÎÁÿ2ÑŽ$í8U´#Âðâ¤áMâ¸TØØ;¼q‘¥ÂÏåóòº-7oi™7Gà“²ÀƘæœ0[¼qè°²ÚX;÷»»þ•»„uõ–3êr>²à“FƇ[mg'6­‡ßfZƒ¦›·4j^£&±ÿóóú|çIÂQ'O€½'488©W·Ù¾¾:Y|ÁvØ{ƒ–Xí&ŒyèÙÖ™]Š‚.}Á ÷¦uÔê6P£&½n‘åƒbùó­\CtaÐ ¢™¨Áò« ˆ¿X^ˆkgqEYš‡Kϳg”º™Œþ-¤ñU$GpP‰Ÿ~2Û?þxáhÉMƒádÀŽ5õ±5ñíœýÉŠFopØêõoZx¿:x½ÿÓOj¸îe0m<ü‚¯:ïJ}èñŒFLyä±á/â§ïb`r²Å+{2¯çÏrE._<<ÇGgVh”cÏ®åVV"’ÎLŒ—ôt ˜=g ÿ`bs ÇPÒ&HÐ\ЈãçŒعSߺ´aµû;ç¢ß—4þü<í\m‰J{Ï|ýÜs ;´Tør aÏ€: ,ü+–'ª.¬~Ï–Ó Û‹ÔøÖ€ÓË^ø‘+fîBVD_0Oã)ü=ô±Â+Œàl¹”ð ç¼Û0èéÜõ,ï†ÐÈÏåº6ü^(ì#Rý9?_ΖU×»ü©šWk$;ŠËDûÍ·LFÍ_pEÑ0N1Æ+q^Ö;£®wk´¶:´€Hx]Îé!?…‹±$*ÇWVÕBÁùè ,]ÓßxÎåÕB”še±»S«‰×žm‹ž;^\þ¯ÝålÄh#Ú³a5Çgµê°ð‡ž3_ 5c=_Ö{IH³ TîÒù¸ Ì’3u°wsÛ›:´Ê0ÍCèÓ–9èfv±Ä= ‡ìÔ9ãá,p¾¯¯h›c~ôñ·: vã<7Âí…RøY;Ü&y2À§Ïø¼‰~Õ²&nJ‘/„Ö/ÿ’° ¿|)Aþbý+ª•\K%TfdÃÚ#ª=ÒµéK}/(ʈŒEÿEE+Lhø‘ÞüKWQ"‚Á@6ËBR×V·Ûé–úËC÷ræü&šyÙ=š¢Ü `z‘v-±(0LqË;3xœ*¢¨¡ßÜò.—SèÎ:àa.}kü+g¼€ÅœÙ¹œ3sœ„U¸®Qš ôv{dܞǞ;9I­“i¹ü8Ї•yqIê=:gn¢„•'™‹4Džb+šÉÁZïàDÛ)«Æ†W€èâûOÂl΀>ÃV»öj„6‹:e¶€N-Œ‰R ìŸØ`  Àá™üokŽnä `g”6¶œ Ô›‰ýNoKX¾Q›÷Fìù@¹ ©Kà='Ä[ú 2-‚}lH/Ñ–°ÇcìÍGØhà,ÐËX’{â»Ðy%)eKž]ÆÛ€*ð8X`Ð}€ÁWÕA½ø×÷rD,n`Fê0µŒMyñÝw9ÞHToO€Â~7tèÚœùUÇ}€~/B (~þ,Â}LÍMBõ£Zf‰ãEm7‡ Ýc≓êã$%i!øü»Uç’ñЇ¨‹ì7Ï·=zDÒ)€“J¾ÿþ{üb|x÷N~zãFê¼éÈ/ÿ°>ZáZošÿß^ÃiïÆ=.ñúùóp‰ÈgÕ¡ßœÙȽöE×öAþo”êªRt¼ƒ¬XÒßç…Z_ju¤‡iP¯P+«wPsl-¬ NÜŸþrŽ à?êå–Ä…å µü91ó8—YÅÀÚÓ ÔP' ¥Lf1SÃo®†ŸRÌ )¹3IC÷À³[&è5"N0A:­ßLÒ<Éf2ÎÝ ­5O÷ÇóÛ¦«™0[ë7‘8UÍufªy¿‰Ê>„·Ì'sš~­ß@ÒÉ2N݉­5Kë I5x`›3¥Âë·•4[Ýu0ª».FÝw,µÝç±íõÜ—ãA6–Ôù –úȪû7¾çº h²AF-T«ÔW¯·r}`<€Ù9–òd©_© ‚¥"KüüãÞÏõýv÷罟~棯g[ò—œ#¡tÝ¡ÛÞ +;Àu¶»¢EHƒáNçÀ­yE_uB PÎ÷çöÐ;ö¨ Ó†ýÁ¡ ,[Ÿ¹J! L“| Íûj±®™KËGórö¯¥‹ 72ôŒèð²:FÒ%öjéÛžªg f­]wfÖÔ&ÞSµŸcÔìÚ(å-˱„˜Ó7Íf^ :,è)hï Í&p¢¤ÞP“,vÞó=Öñþ}ù’ÙÞ¤6LRf5»”чR±‘9¶Gý€²äßàfîçb±l¼`ð{º­ÞéÁ 0'&ìs³„”q“¨îO—0ö º'±p{ À?·WÕsÙNŽÃ\¬‘?ƒAíUfî)kí·š%B„à;þÚQ»“Q—¥?ÀHÒ½ôðr‹d ®‚÷ ÂÊ-|-…¤ôÉ®$~?ÂLŸ¤’:tYƒJÑÓ“öAOÝö’/upRÐhZ_ 5°Õy»3Ÿ-ú…]Þ£…]Ø58õ¬4îžÀWøn îrRm…ÄÙj_^üÓþDSl”€J´|‚Äw¦ó‰=ûy€ÕáÇÈ΋ŸD“(«öþ`<±.A*{œbc¤Jò£b-§?ÀfÄK7FZà̰1˪"Ò†hÏ`¿.hç²DØi=Ab4Í´fb*n¢õbO|„¶.&6^ó1ÒnY)D-qíz#ì6ÆóB1:¯‡§‹ÁÒcÌ-b¼6†p„$eqïqœrt(¢Û¾'%¢&¡Š køÁ‡.]¡–w†Hv HÆH „ÇÅøG+JX×W7s e’Ÿ©u\‰¦ÐéÞCj5¹‘: &N(Ï–φ@ >:ÀSó€{Åúè:4êñv$ÕðRiêŒiKPOœaQ 0E¯Ê“üåìÏ­ÚÙ±÷]!ºÜbh`Ѭ$úý?Äùù¦šé³êžˆUû.V­Pj¯HD­d´&EÏòg¬Zß+´ZGPµ³|>I;_ äÒy ÉlÏ£b0#@!K¿^ø;þF­’Y(Qûì HßÎ ‡Ã¢ &vOž.%ÒHeËâ»ïøÈ©ø¼Tr׆ŽÆ 5m¤ˆqñÒ­ éÔå€Â>• ‚Ô´àtté°#:Š ax|mFØ3yº.aF¡Sóå¢Ê0 è,˜KyáâŸùØ&eÅí? Û£¢0àÓ\¾¿ÛˆÍï±`x Œ_»\KÏÃÙ2?£âeäŒÇÂl)\"8™Í™…žìÖoè:B×üo¡{¨l¢ìž‹0ýÂya×\&E£ŸÞC2þêÙ¨J2¿? ¾?ƒïÐ\æCj7~‹ºÒå#~¡ºâ@Kx½ÞEkнDÍB¼å¬Z†¨ò=î_¿ú\<«%ñ!ÚoÎMøÖG{p°O„¿^øA½Ë«—úDÞaâÌ>ÜÍ8ÅC’Œï°J”›äO}àú6€ˆÓ@„ñ•)`˜Ô„ ¦¢AJoèÁ€¯®Gw“,+)qU•Ž2µçD”Èò o'±"Nc×¥²4ø5©i˜ž*Z ø£ˆà·âD×@È‚‰²™¨ñ“€Ú>I¢Æj½5~öäjœ´Ó#ô'V$ör]Ú3 ¹­c©p$(À=iðךƒ;1y.ì¹%G2é %uàoŒïI[{j}r¦Ë©˜Ø³K`ý]Ü'Ó)!ب¶¾yõs1EN–Ú¬éajþkÄhä¶>¢=ƒát4Ø{ììÙúüK¶" èX½ñª¹ŸÓ×ðdZ7p}¾‹Ÿú#×ýór>g¥@+:±ÿ7ÇÇ[lB{‹nü&îµXÎÅܳ‹„F@vGKBæž âÈ¢ >” JHQ*™ãAIѶéšsÍ/nÐbfhÀˆ†3Ë1;Âý4i9“pFKˆ¸œ¸l߇&媭6Ñw`¥¯‘|OöhKÚÆøËɧ‡!QY¹¤~ä´KÅã­8`J8ÏõÚîî‹/\m÷DwëØbAT‘/æ/gK=§§³´óæèT¼]z#sf_Nt”cã4ò8Ò‡3ŠÌ2Ô©rÒTe½e¨‰Ú5ŠxËû/5Ðk}׆9¿eà•ÚKctÛËkg†æSXšk|ڗá‰F¿9³>m¶Ìñ"ùˆF• M9Þ—Ú#ŸïÉÖ[˜'õ)‚_’M•OðZ\z ðÁÁk"Åg¨üÀö¢ÞÐÔ:ÙÙ É®ØÓ¹¼æžŽ8 Ëÿ·då Yx–C'¥HŸ{î¿íYž$/è·%lļ Ìå—š[ et Dõ• .–Ø9=XQ’pazyÝ‚åÜ}úìCY £=ó¶øÄ´è‹¢Vn¾D[‰"8;LDŠâÙòúñâFM%¬=í[—“È> ½Èð/j?ìŠpJG'Û»¿l¿;.ß¶°´‰ Ð……¹ê‡ÎÑ /8R \R²‡C³4bC\Å£W:5µ§®w“¥=kê\Z®o6ÙÀWž\ˆÑÿÊD9Â*KåšMX>U€ ¼¶ƒ©¥þáìZ¡¹5Vû“¥¿ ë%n‘åÉ=3ò¬Kàn&7øm´.|²CšÙ ù„öø¨FI^WêÆñ,Ͷ$~?~ñìUo U[Û¾ ¸%çb·´#äÞjFö“ØöÉ0üÆ.Âl[òˆÞ›åEe&€ UÖ@!ÒÙWgBÇã8k ‘:+ZѼc2˜gOŸ>~öhÖ´cÒ}ôȸ`–˜ºHf¸vdÙGx]à[cNµ£‰Ó-ýjã±*öQœm‹'ï×®¼)¿7°†hµóI¯ÿo¶ø0ƒ71ÈQpìî>Û­=yBø LÏ¥/:™´ã¥  ޾|Û¹öóg;/Œ¸þ®}¶¹—Ìý d£ÓÛ¾sG„5à}¯*ÞÂy.Z>Ø8 qŒjc8,™Œù·m$ö¡ƒ=:;s†HAHÅ« œ4§`ó©6ÿ5¦ÚÃÁÈ!¬@CŸ{P¦†ý?ñ–ÏžTE[ÆêÌu†Œd³y¹@“}©}¥Ùuç°9áxS”åµãA|5ÀlLwfbå­<ƳÇ/ž0”Õ[—FÚ[Äཔ@óD`φ+&á½²ÉÄÿ6k›å•§¿²ˆÔFzÑhîqu÷ãÓÍ[‘lg÷ÉÎŽQ鯇xÑ5tŸ~|FOðêIuwy­°ï“€úûK@ 7žÀ°‹m{1$ãõíá¸:ÚöK@ôè­[0q3 % |zDjUC^Äýíêf¿ÿHœŸooS’¤Ç»ÏŸ½ˆMÖ­“ô¾t ƒC7-9Ø2 LÜ6²D8hIÇ:wü ÙAÞ0#´Ï]U-Õô¤"ƒ÷$„ÆÜnˆCä# æ] ØNÎ%òðòŽò‘‹Z¼³¾dbè(}5²B¢ö‹ ‚{ÂÐþD¯J]¥ššØÅ`HŸ‰ç²læVÊZ…àÙx”%GêpB¹k±ŸÖ ·­/ºÛíqHZò~eƲܢâ̶`ÜEøbŒáF±¯Ì®ÒtiP±“n¾PdG%Ú•5+NÑ"×)Nlº“ ,^N茚16ÿ“ûûî½=û¨t†‰S“mZÀ×GjVQ™ónE¥—â‹¡yßÕÐnô‘ëµçŒäNµí]qøÊXq{†œ»^½”ŽBNG|/jïï³ÄÒENâ½í'¹\øÎÈÖgG5Å– ÍG^ì‰|u3O£W=5ú©»Ñ`ǹœ9cl¡˜ƒ±…Zäl~ÿ½¾ZRÌ;tݸãû 7 ì'1‘{rPË ¨¢…OµÑƒÌ™¯ì©\5(Ve« §. [žñH¢ÂõBÁZqrÄñ¤™¡Õ4i÷}Œ Ó9v^Î¥ ¥š(† ’Kkåb¸ð pƒôŠf·“!DŒ&"zžezú›Ü¼Éê$KéþžÝé±ö¢vÛÍR$šd¢«^Dµ~³¦¯vÛ}RB§2j2cA2ïçÏ÷ð3°»óäq’ix8ËAÒ5’ ³Eaƒ¹»¦Þœ(¥Mçß`4AÙ3ÀøÐëúr†bHìýÍ%nýH÷ÜÎP—‘[„Ñ_§K)óÍ3/Õåå•ë/´îòÂÖZ€”‰k@—’r%Œ½¦î«Ë­×`½ÖüúñnT¿jð< ó£›Û )ÎÀðŸ»!H5‚¡`¡Äƒ'<›Ñ/É.]·Y—~ßftÄR4!õ15´åÑ£~BÇ:U™`Í~ÂPn&£õæž-”äHsCR$§À…wCž¤¸ÿf7<4v‹DNíäø5 ’¨ì ÎÌ™Î]8…%uÚAY>b0Ø_QŸ4+“ ®àÿ×6»Óì÷:~uU‹–/_å åõŠ`Ì—Rß¿š ‘q9„¯‡ñOÄ~t9G¸ža«€¬XVªÕt*ÀÙnÂLÈ?$‚Éî‡Aúy”Ðä%‚åÚz‰óèÆUÂŽCçÏ+'°¬À«'þ‹ÿž+‡ÁÝ%;’ D»™+)-J•£t™PJKLáo¼·€ñÐtÔ„ÉÄ”Ÿ¹7tÅÚ<>–7®ê)§Lm‹eW¶5²=€6ÎW$vêÊy][Töß6~mñ 4x›ÏM% ˆë ñFè/]OY¨h ¦ ð&À[ F73kê ɦl€ÆÈg¡¶Ú¯°!ø—ÞÑÏðÓ *"+F)®¯l²²Ø›Ùš³¬f“,·b;_^ÒÁ'<“#I%JŒ%‰´qkÅëUUfnR "ueEgCzµ¤±Ja}@öU‰•f>à,/!®ž\.H7'$-Œ2O·lk­YWüJòä›_ï€K±ú«±$šðNÁ.*„v$#n¢=„Fé‚Fö8}‰“êÓÐç™[NâîªHeÖ-¼`ª¦ådÜÕ5g«¬îO„ý4ºÅžÉRÚR5øš O(%}=BÙ‹ñTá¡Ü­…ŒÞ>ÄÀé·É0A†“ï§‚/ǘ܌ñqek+w\¬ýìrËm.zqÙ%,H%È7ñ·ë T·9õEÍ(N†ÝO”üz3ðx·3JŠÓ›$T’Í!…ûÖV‡q‡%Š'²`áí‹þ$ñÅâ­\Ÿ‰ƒ~ƒÔ ß?;ÛÞ<áKü}ŸÏ7‰F&A¨U7Ľœ‚ÈšD)ÛøZˆoÉȧ%GôqSÂ%™ÔøìŒýz¡ýº÷RÀ?õMUƒà7N:]òKBÖh´œNoP.¢SÊõÕ¨ sgxk[m¶ ÞUp_MÜlÐ1(RW§×~WÝe—† . jY[ë²a6›dãö¥ÂÚ>&„„úb´ì¸¡Ï q¬‰ëë‹<ìˈ5â·‡KÏYÜ€è3!›H=¯ åvÉPŽFÍ6¥e<Ëé’/˜Ò·Äñ¯¸€)ûèáåmIiï‚0MÎiD8 îÚ.¡=¯_¯Ôçë+uøå0ÈǢ®d0W§2b¢ý „Q´ Ö-";—ÝÈxé‰0ä׊gy’kÿŠ£3‘AžŒ8¾*ˆÃÝv°L¼YÙ¬ð}„R‡c‹Ûbð€‡Î„Ì¡,àsdm_,½™ µœûh¬D¨¾âû9¯Ç{Ž&'ß=¾{áap´âÙNíiñ}Èx%%Œ÷¡@b<0YU™mˆÆphÏa_s©l'àü/`@?”Âij‘dzŠÛýþð‰ÿÝÜ>«žU·‹úº¹iÍÜжxØÓ‰-`?éð–AÁ”Ó|‘WN6þœÁÿ±ý—EuãÎöÑ è–#9,ÝÇkE·öÄ?Š´ª`È6óþ  å¼jØ05Øèƒ}b¡˜ÿE0²-B>¯Ð§M6óRLoD»p›¯>€†á] ûÊWCë-gËD|•'ÚVK¨†'?Îú˜Lâ&ÈE ¤} ÙÜ…Á¢©µ ìKÕN4êÄóðöbªq=ÐÃ…;*º ð«äÕT5O!g\·ŸN>ŒÉJøý«ÈI6~^ý5ð²[)UâT­ ¤  ¶ô£ÓzZGÑl´ó(ÂIl‘ ¯ßtÈ- ™ak>Gì[ µ¼;µÙÓ]ššHòO²¯Å£ò10íz…¼%•!ÒeêmëËÒÀ5vÝêU}¶ÌB£ÎCl\ô£a£¤ &7"Ò¥Í"1n¯^ïQTgÐߢxŠ‹Æð#mK©+èkø»j„­/W±Ð¡ëu½ˆYU#cöÃA˜¹>ˆpÕ«Ùéƒ;øèá ‡$Iä…&# X»1™½Ãž9£M#¡’‹ÀraÂûÈõ°\rÒx0ëÌmÕC)ýHU€sÞœ™õìšN`ôâA‘t^õDí¦Á¿Öå2ãQ’BgŠj½_­åCŽìq’=Ò·šÖÇIvGY§µù¿pZŸ?y¥y9Sˆ%¡«;<Ö^õö+kå°G&À àÖ%NkâøÔ¥4›»nR¦£CóPE’rth²Ù·¬j˜ÌÖ¡ºAÿfÓÁÂeõ[½ð'_8øRçÓ—Ù4Ñ † äµ_zž='óÄ} gnž–‘fè1^ˆÙ4Ÿ“›8þÅ`1C :þÃe5#–™Hd'Ø g8ôÉ–¯êÌüc9¼øË°eNd>Ò°P†ð zŒQå+² ü%—ðË8;ò(™É€ÙãÃ% D;Æ7÷þU¬Ô¤õ)0î@Þkÿ*â¡ÿ‘LT)°«˜»¾³ ͉·Ç•ÓwJdò­¡hÃzòµ¡ )•—FX†HŠ>v ;1AS+æ3~mÐÖ$R˜˜‹¢U=à°÷{oPeç•`ÄG§[âЙ½ù Á/PçèãKÔN¢ãÒV›Ž½¤°ˆHtaáQ³)ðC¤F=]¤TиVâ=RÌ‘Z¶Ê+ÂZU‡Y$é$³L,Ò£M³³Im9zªH+gaq3·‹¬FodÕ"4˜Ç¯Ä ‰]|äžãS¬sóˆ”ëp]ºÄfÙ¼¾7<Ïów£inœY·xU –*ÿ(ÙÛž‚ÐÓï°M=+ÕÝÙ™-m(I‘¢˜Q%Kl¶{#×s¼¢oòBÖGì'´÷ÍîñÒ‰ºX-=&lyù SE„Ç2s¿0Gh˜(ž$²X@q:BŸYÞûÎeLZòá’Œ-4ÿÀá —Ó9¬j”fjɆŞJï>7´Á”6CE_¯$¢á7)òdêUÁŸy8½öXðeÜS틊3½p'¾¨°M”&’Ðì¼~­R=¿¦ºÍ’A¬ê^ø»\zZö€9–…IÙ¤¦r×2<™×Q¾fP!ÖVÏÄ©Áÿ þÇ,ñÞ»9…@›â2ˆö›üt Ìþ’ckhË ƒ€sp¨os"é}=ˆÇÇ3»©`’ =:ÈZ]ì¼\׿®`eAĵ[‚•©Xefx¶x¬²”¡ÉîêÑÑ¡8;;ˇÆÂÁñuŠ^"€Äêùh¯Í)s—‹‡ßÞÒ×P3èhžÜ f2 %]±õ “–Y“êfhé‹(±›Ñ€ü‡‘ê°§h•æû¼)r9:¦Í’åó§ñð2‡*Uîjˆ¿¿Öâ!dBg‘,1³ïˆ@5²¤ðêßlZ“b¯gÖæÿÂi}ñ8Ѭhÿ3Ľkè$w(Y½'7êü‰ãEž‹þöìy»¹½¿ñ»è-+q§$|Ãö\µ¡ªÿ+h0é?ötgè hêÈó˜Û)OÝ"H…Úû¼XçJøÅÓÄ´íWƒ$ù>éjʪ˜ÉêJ /¤ÈÿùzxfßõCdžÁ_W–óa©~(_|6üX(€o+»Nu)ªâ¦¼•ß‘O ù° ÉVe6ô*ì0þ˜à„ìø§×[b0½&‘ƒDëÉ– ±T&Óëxé-X_–È£ù÷¡€‚tc¢ÌÃVW€’åÀ.ÁÔBÂ×5hý‹§I¡ÕuãÉtI/ªz^sç>M µn;%Y *Ý—2=ÌØ^ÔvcA÷ÕU¶Œ¸$i4CB?s¡”!óþa¸lø…¼û6e Lp²%.‡ÿÜRü;‘AŒLøŸð™Lº¿‡7_HQ¢ÞÔó•KQéìôŒkªM '-Ë<=kQ´ gÜN>ÆÏ5Wèq’F2¾w¢_4Uø=OÆ㓘>YÃìÈñ™¨Òi"ª /Ý­5r =IŠ{Gmé¬ F[]h ¨òȳýu{ÓÒËÀí%O­Î!­9±O“&6Ü~FÜÉœ%âkŽo÷ùmó‹¦<± Ž|4~Þ· IS´’eޡֽ&ùAƸ°¼ËS Õ¤ ªè‰VMÿ… äôža·ê^©O•¯ð£ú?”i5N÷[:t/^HÛí÷ãT¤h±ƒ)ü/7 ®ñUôA¼ä“¤¿OA\(ø;éNñ ïÔQEV”5Šò\F ¡`Þׯ5ûh9n«: „jl0•eÒä‘ÖÖÈ•Ròc ^ô £ðâóÐ¥pnôHyY¾=çß§8Ë=¢Ÿ3û“,È¡3œñZÄ eóܳ—‚}<:¯þAÁ8é5!§$3ç*yYü(ÆË¥ù옽8М;æT(ÎÅd1šÞ^%62.¡l¢"š¡ µ ËA5ñ>‚o'.¬Q^¶ë—«¢Iû‡ƒÙÁ.¢p]ijÊë–¬²´ÆFjŠÎøKÛ—¨ãzŽ»ôAHÁ¬’R‹pÍ‹2Ór´„#{8­åGÇžS’ÐÜs?‚¼CæÀFß°žö†b4^xî{¶…­³¡kAó¶…v€sèZ#‹Ú³Ê¡åUvwvž‹R­ú´ºËñÐl˃)ôÊTµçn±+8%¹ôÑVîò C^c¸1ŠbMºuÊ[cMH§K9w1´¤'WÍm“D¶_—ú†ý‚B”¼ÉîzËœ’øð¦“&†#ìLÈ1ワ¹µžc‚Vƾ÷£Ñ0íË#±©c <Òz©0tÆoQý=y!Jí#Ç× ÿ“å/EÈ@læòIà@W—öu¤@s)¡FÎ¥³ðë,M÷w*?œUÏAr®nnŸÕ¶‹².ÝCÐ¥ü#ßáÏJUlù$Þ/I\ñÌ,9·¶ËîZA5ôØÅ,ÿt½záÏÝÊΗðgFÇ?ÀÔÁ‡'Á5·5Ü):$çðòê"ö¿’ŠT¨ËBOÃp°'ª¬§aXábB_cà ƒƒþc8%õ?cÝW¬Èáêyÿ3‹N‘ß:]4åSçs-(jü×''ŽˆÞŒ6‘Ñþü®3´T˜ÅU„x[CØ µOËfO’ÎýuÅ1!¹¥ PÒj à `81!2Èì¦ûÀ€u%Mì )Õ|97(ì” ›ÙŽç.#ˆÐô¯­£vë¨Ùº«YdàÀ6&2ÜÅSñ¡ÑÇÍž{öRd#9Ç8Åî QFî Ù#>L¢-k;.væ Õ<ét®¿…ûóÚæ#ï9 ÅZžbŸ’ùê J>Ò˧J·Âg›é÷ƒóRôù ‡‰Â/“CÖ8&{†@}ÜX”Í4ÿÈ$ÈÑkáÑ«öðTd\ #XS0„ŽÅ¹ÊÌðGÊ@Z rV„ Ñ'™~=Û’¿xœì¼›´ð‰C%ë¢ú('Žvà g¾5ïî[zÿÝhíŒâÉ·ž„Úã„°P´ßz'ƒƒÆ«ƒo½)–ÿÚ”_eS֯Ⱦ™´òk#¤ g­Î%mË8ZfÙ–Fíoµ-ל…ÝxÆ`ÎfL)(ýÈÜZàõó€DÃRÿ L¯@|’ñ¢ž/¿D¡f\Áç3áÏã' „"|9'Ž- N»Ñ£éëµNdŽž""äàO;ä· èY:¡+)ŠNh©!7&ô·Ù·«Ìˆ¥ØêC´c:bÉ4 ô9d˜nÝHÁW-õì‘T…@1ÍmùgÈ3‡ ]Û ‘ê“,Ku¾ô¯”Ê_/ãÅ,´dårBñ^ç´ÛlõÔ$´Ç‹Txl™Ò;vÖO¦Ñ“¿¼²êÈÞ“Z.FÁÃÎ~kKjˆ$óÉ=ØÔGYF÷\bô.…Óq €tè¯Ô¤Öð‚<ÀçáÏJAå³ÏgÅò¬üwÃ`,гrˆ!6û&³¢+ÓI¹«xhâ¶â"Þ1ˆ©…Qui rD’Ð+É™Ú~x›öù౬Ší‘Ùswv3u—~äx/ÇJï_Ûû-¨[x”& „+ÙóØ ïFb‘äÞ±I‡)‹Ö©ÅÛ÷#NYKHÎ §ÃÛ‘L=i9Íþ;1da+ÇçÞ•i#jZ^GÊF›'^¢V0Ó¢^¤c0F‚Œ@Å"T|ZaÖÓL)K5¼†Õ‰•m2¡Þ e¶øY'’}ªnVM$|^=‰8x9¤ùÜJ È[ñUÙ Ãßb“Û-ŒÙ6sñåÜ#8§dÉ83yKàõ ì2ÊŸQfŸó²ŠDi¾äÝ•5eA¹¨4 †¸_ –¹ú°d4¼NÑG&v —’=åHx0(>tÞHâA—2.F>GaLÒ‰4X¨y€/ªñk›GQöDÞÑÔ• X¨ß¦SÞ›™ôËšx°Ío¼Ä1Hž¾^™`1ø ?ö[ǽ:?"e®#ÝÄq¢z;ŒgÅÚS$ö±ÙBEéÀáë çR6½¤sWÏêfùQâat8_9c—à!ä“ÇPiÇÑ“Ú"s!,‚@ ª|.·!ºžùUäð̯V«ñ[:k:ÙÒ« —$•Co…R´«6‚OwÁ’[7 φt´ÜÇh'§Ç|n‚x½ ¼Ü …Q6 âU)X<3Ýî<Âs—㯠ÞY>²šÃÃÆÑ~r”8ú°^”/êæ«Eèeˆü‚TØõ'ê~d’ ‚•Mµ”§Ó@^3ŒD6SÅt|mHÅ2)ž;س‰ƒ™ÚPÉ,âWä:»Eñ ¹Ur¥Ž"Ö:=J-‡¦:·ap`¾‘qöFް %^·ß¶öûÃæI˜6L_ñ°šµw¢›)íVŸþ µ˜tQ^®®dÖ$FE5Þ:âmÁ0ðtºðV¶¥Äd£p=öѨÉÌêœç-)$U÷?ÿÑï3_s~¾ùùóKÿ3üÞCÂçÏÅ÷±LÞ釮ôU !‹?m,¸œ9þb«I«ïßøÛô0šà; ØWwShà;QyR›JÛ8 òŠ7[ßÿ¢ 0¦}7¥Æ‚ä/¼ :ÕÑßùÍ ø•µ ñ%f¢jRn–'§GÿyÚ9ií›E¶úùðxÈ—Âó ]D¯0ó”fƱŠ3–c¿DæI™­ŸQuü,äWöHÆú»£S*"`?_0ŠöŽßꮑHËÝC:ƒ45©k&âp©ŒœêÓ'1v2ù`Içï1\Óùe$[Rv£ê—i‡Î¿²[“Çeiü)Ðê°Åf¢fœQd9¦AèqÌJ¢#·oöwR”Ó¹âC™K,-ˆÁ#µ,ÙÕ˪ÐiM°"Et?ŠZŒ^S¤¯ë-ñwˆø¢Óðœ2å :€rò@Î@yªg2uÙ†/KÏVùöÈ+ŸÒ¢ÊØ«õJ$LŸ#ÎYBf#Ëùôxó3üû¤Z«Ê‡Ýª‘Mœ•DÁmŸ* oi«PkS^Pì¬Fû]»2÷qX¬YÄ…ýÕ­6ú¥Ñô, o´hÞÒ•ã’èÐù~ÿIåµoeU#ýR4˳1GÃùR¹ÎÏÝkÛ›Õ…ÖJÀ3%#‡]âåo™Ÿ9Kç"˜¨«W¡Fè¸ÇDÍ>Í’ šè¶ñ‹Ô,[¡u“ ÚcJ?Î[Ìý o“(äÃÕb1ßÛÞ¾¾¾®=§>`ðÝmÅ'À)Âçp†¡ɧƒ¤ÔYæÓÜCå‰3[~‡›#zâ¬rps>½SS†×p(­ã^V1Þ¶¤eV…³x¤Ò44ÏÒ›«ùòSmgó3ý­eH8ãrÊ:bwm÷ñ“§ÈàÏgÕ~§¦±COâ&ÂüÓæ†lwÛïTžÄgÕ]N;¶C¤\¦ÀYK8:!òÕ®‡¡¢)ðZÁŒï¹I3Õ4žh´á€~´™o¬Lªë5W3E¢ × %¨ÀÄZi&ˆø›$þ޾†æ[æGϲDáDê)ëøc^UcU÷ñ>Ã< JZ¤€‡'ÕOeŽêæö"xÉ4â›3(X@³9s›lž?]ŠÚ„w|á0áFØ –ãë,šÁ• EG ï“o î[7¢8s‹wLs’Œ†ÿ´ºó™ÿXü·™‡M\ÇÍðTPæ4gÁ¦cZÙ3Ÿ€æ´س!˜ŒÅÄ¡}o¾DT~”s!!i«Ý¤ ¹`!ͳ1>“‹Æ$7Ê’„³ÄM¬åŽš™ô@jë9³¡Pk¹=È•CÝ£·öäFÁ)‡‚ê.9ˆ…Ñ'b{³­ö8˜Ç—gĤåK_D-b’;Íô0Ÿß™Ø6ÅRÇv¿™¢ã\»4B_R©&2¨,~¬–× W]0 @Ê•^ÂÁ¼–”æž9,tQ9Óe`m%q››€`›DðV¢‹š<_ÒÞÁ&äÖÀÕ‚wÄiÒÞ  Í@þ5ËvF¨ã/S#/:gUåHùñÓ5 Ÿ;äô¨ýNçNß R§Ë œ4-JžÈˆí¤­_VuYß™—ƒlM“:jJ<—÷„2„[§Göb>ðž“9¥ª”äv ²ôAÐü@ (•«¢7›„”ãƒu‘‰bÒm xŒb‰²øF»×L×½´×É0ÑW˜‹$ÿ‚¨öw+ž‹ˆÚþý¨qØF¥ÄÑ/­î*iV#hJ¦|ä )òÓÔ-'ÒX¨on¦+ÖNÀ‡~Ž Ñn"Y?¡\½à_yðs=øªœ¸ñò^¬thOr†êxÁõe¢ž#ª77¼>êŽð'7ÙÊÒ˜1˜Ñ;§s éî–ȇŸ—{Y/Ò¢G×L„2º÷¶Ñmí§´Q0>hoõ#ŒŠ¿Ozp£´©‰ŒÖë ¤Òh0µ§˜qnÓˆÂ_´_) ¿k`Fy_é–TÝòíƒUš.®£uíd`OCùLÂY‡L¿HL:NTì­Ò ® ÎaÔ½\ƒ½HL6íL&R,ë=~øñþ((z§v_Ê«£êIÔ³Æ\!BÁôA±û2ÒT+òWŽ$ P‚8‘H>QC«ÊE©gRtô“âaýÚ¸kÛEK3QIl6y¯©¼DWgÏ‘Žž;ée ½œRØ*’·VÏâ:;ñ‡DçÄ.¬DMU&þväLô'‰õ'ónÄŠ¸rÌÏv“nþãØ÷Ø’*/‡òLÐgYòd€?îü^Èðk:h’we D°/ãÐslY¥¢^¯€ -¤BI;niÿK 4úceêšX*ö*®[ƒ1s7$’œ…•'†I\q¬Ë€k«× âñl7) ™F¸¯·Ø€’Þ¯³¡’r%÷+£„T~á꫌ÿy\Ì Ûºðz$\Îó÷V—üÑÌßõðµ·~/¯£Goǧ½·¥>&¶"ÿÑ\ìd°±¿/¥G†ÊC%)²¤_&ŸG±P̰H~Ö5à• ù–J%¡aŽ$¸CD\È"œÞ^n"îK#3¼QF°Œð *´hÆè†DÁäPBãX ¡ù¤H"ú'GàVjÇû¾ú¹ý…ŸÑß;‚_;èUèvÞt‡¥>á¡9#S ÁÛPðÑd<œÑwæ9Ϋ\‚ éNùå¹vÚ‰Gcˆ/…¸ÇrDôXM&4{øýÁfðQÄñÉÿ81ÒÉKîGwbÞ£{”FÁ"ìÄ­SðPÄä$ši+¹å wCB¹’çs‘ìXƶ—Ùê)Ü&t54ò|Îðj“v(£ E”"[ac•‰»‚È›0Š"Å/€íàäDbIÁbKÓDú¢j¥"1‚Œ}Dë{ŸUR#;Ý@Õcª9ˆÄÝ™8Û6hò`î»íÌIh‘åAò9ŠZV…ËàªÆÌ'øb¼ß¯=}ö µ0¸Øo2ev`ô€¬ãܳ+‡ÖÕÐïDm§ú¤E9à¦Ñ‹/ä—óDìØÿý fÄÀ=ŠÁmãéô)}ÏRnÀ¼6qE‡©¨¬ŒÑYnÁ¬hŽ5±0ÊÛô¼9Œ*Ÿ}i—ËY/)ÀÉ F‹ãÛc ‚É2a:.¬á ç‡ ^àÜÑgš"Yù¤e”§gQ9à£;ÇÙ5=y±J ƒIn¿J¿ÂÒ@èÅ:G,Úr¬Y-ªô‘¤n„?$ECû$èhš‡ûƒ7WY¶·ZG3¦¥¸ ¥ :#¤Ä0Q ¿,gèÿ7,¾³ }o<ɉøñG•Úý£ëŒf*ƒÏt„•Ê~Éa¾”©åÌà‡ùí%g ;/¿èÜð¤„át´0±jñ¤lè_6Ä‘{­2]zÖ…ÔTÐhu.Ú1sZ)-ÙÀÑ¡HHU"Î>›ú¢Ë‰{aMԴ̹-Î~¢Ü-ÔFYÇΫø,Òë¨Ç`Ï…oPýåãÁÒY ‚YW>Ú³ç¢øGU Ì),š­‰Ÿ’r„- â «®øCz«p“f‹âŽ&áôÛÓ@T¼G6¡×“öÐÂÝÉð"zbNþOúê£÷«šÃÍ뢮n‘ÑMÄÀ,ɰÝTRÛkËß[ +”zf¸¢˜Nãaø¦—ÕŠñ•,ܲÌ9Óm2™d ñ÷CbÀ7ÖuÅÉZ\+•ô~j›ì-±_ÙxFå‡Pà}¥ñÿ°³24uÈÏ,bçÏÑ>Û­îà¸Íþu${‡h­¨°7¸Néë¦j¯DÉ»½÷DüZ?®€XÝL©>+æø­gtB¯U°êÒ–ÕcmóoWÎðJ¥—¹éð^zC‰šÐîäïçå8ÕºÁ¥œÈÿÖH…T7!¼MçU¯sÐ:iÝG jäIRàõACFXÇ{ÿÁ«Fó—ÞA£÷vð±x³|ïmë@'[È 5† êï½tÕ40XovÐ1E…}ÒxC²CL$Ex!O¾è•÷4×Bf˜15¼1·Ê6p¸1ASÂ=è4YÞÓĘ+’Nc_;ûô nÿš2güª}7Ç2rU¯uðzÐ+Rzð É ÍAgÐ+RëIyÛè²'M{o&nS{«¬Ù¡® k¶>È[Yœf@œ&õW‘AÖh'qsŽ^#˜¨íxàI—bDÞoÐ>7;Ä$¸šŽ7G§k€LPƒ »-ô—¼>h¼YtlÒEŒ“Þy‡­“·ýu`ß½•)ôQgÐ=9i¯ÓÈ];2äØ æñ:ÔêÙm›2<”ãµ°æYâþŒl& “³MyvëVíôN`ÅñHƒ?ë@O ¨9œ7ݵ€>36é¹ãë½Y(Î@c¸!O2•Ä…²¼d{F$EÊÞBbJlfÅ8kÆ:@W±7ä8Ù|·Ïø|%kƒ0_?¾ÌxH9æ›æ?Ö™DLÕ’ñøkOì‹Uœþ½ß¶)ÔªÝüªíñ oÛ" 7î~Õþxзñ4 ïþÖMx?ЉÑßÌžwï‹q^³ã÷‚|ÛÞ\êªMùxâ¯ø:pWmæ5Þ½k¯sTýC;K0×£¢?$"\k܉”^ :`ÓžL,o›3×|°·kÕÚÓp+zeMM5WÒÍbãô¤sØø%¤ü±¦ƒ5wUÂ*R¨‚ž;å$#>{Ø&@ âÔñÐ1¹À’AïejVNÕ†¹H0†‡3]NUP÷ªÇ®3ã°ì*Ló'X5º`ÂŽq<åņxØ8i”úû.å&Mfag‹R@wQ=¤ûLp0¤7+Up²ãŠ6h5©ÍÓn·ut’8ñ ³Yâ1«3•ŸKâ&ä8ÙÐß”ðá¸ÑüMÅÍêÉÁdëæ7™˜z–Ü`y…r0õ„y˜y…´wÈ[€#˜ÂûW­×hzÛ/ìH³\ÖóÉ{êð××3eá¾ÃÄóƒÖ»ãÆQ,Ñ"}F‚Vês/ƒèÄá"ØÀ¡ÞYäI*òhô/°pߎ­‰®Ï{¢ðg£[·¼/¹Xt…E¾Ë¥B£[æD0c‹s{ÃN~XÞÀx›“aÖÂÁí&-ІFñ¶Ê¢Z,.g8.õûär Ã¼ÖÅŽ ´Æ; Àì…wS/BGÅÐ[⨵_•ë ÁeAyÇ5 ‰øy9ð©á±£B^TìA¯Â®+‡-"q"¨u CQ霞ìé¾ãBfÈCÉ0˜Äá@ŸÂqn-vØG3`¯‰Ài‚†ZI.ÆÝטÖ9&D;×A¯âM£#‰åÉP‘Óž:@·}wLñ=)EŒ Øî9#;H×Â{L\{Ö|޽‡ž3'gN² I €‹‰®\8C®=g½Ë¥^a2’±NZÄæá×%FÏÁ©…ç.«1gÈÌæÖ”¿ÈEgjÒo{ m,0à‰Nl8”†¤iœ8ÎI@$G†ü¡´,HÞ¢Q†£øpñzgÎZ~¢(Kràg…ìý<öHg€#H¾3u€–Rh°äª€Ê2”\xœu&ÛèãË'eÈe’ȇ‘Àž{ˆg¥êŒP JT>/A¬:Úƒ F}Ïc`ù Æ“¬ ê»qÎv©Êé””Ø3tB¦ÄܸñäÌ‘ÇüLXȃ¡{2Å™Í3[?ñN•/òèÈ…nv÷(ì°ñq%á!Žb¿—¬}„µ`˜¥þnõ鮌Áb~Nº§xßlòZg„û{DÙVáªtÊsõ× 8 dS)ª«óO.}¡6 ö㯮f)èÃà¨s¢ø-£^òw€‘H} çhDö´5à1äÄÀÖ/ìjR*Û¨ó#«7Š9I;Õg|e”qº’Çæú¡øÍJ_ò‡ŸzO°¾„|ÄŒ­Ö׳Ši9 µ<ÝöÎì”à’|œ«¹SIùˆ¨LmkÆ!ÖÙrËS0AX'³°'7Õsr[uk›Q9{$ÄhVØ:ní·ŽšíV<¯'ó¹PD'ƒŽ|†÷øô$ò»žíÄâÄËŒ³‰P“{Òmà•ŸÊNì’&šKÒØ†C  Íf^ž›ÊÑœB9„¬¢×–YíÝ»|ŠjWÿ óLU çãÕŠ—Ãácÿ“PÓ!Øx §ÇÍPçáwšÎ£Ь¿“ª%´þO@Oj·ç„UÚ¥áð7|PN¼ÉÃnÓµÛÁˆhäÚ´CF“Ó–±kÇ‚ŽTl*»–bvÒ9oa°<4ð±<Šu}Nëòj®àd~/è‘XÎ € œ…îåÒ§˜&~8¹¢™ˆ `Jà‘a€~MA068EfÃ\kfÏžÿ‚Ƙ;“©f±o°,<6 KïŠ%FËéô†3w£éH÷‹˜%îÂZÈÕ+‡ð‚éN^ÙùpôÙ±Ÿ¯ÆCHU9ºüôÎVä%V˜Sf<œgʪdzªuÍI¼¦©!ý‚#Ùº¢Çp9 ƒ…¦3ÖSÁ`ÚèáÂõ(ßíp^Ïh7†£xÇ~³eÇ¥3 ÒÒjÈ%³½Q§¹=ÕõœL—‡IÄ(G2QCä:)áàd)»§îÈöymõºŒ ˜qâ-Ÿ=)/9¤.´›MhtŽ«-`Y<¯D¸s€–d«¶Çcì€;–Áúdz &‰ðh´j]#cÌéÜyK¡ý¾BŒ¡þ…@Le‚b9u!´(Œ0u¼"ÅέÏ8|‡!3EH½³Cðb$æ=ÆÑ¬ÌD¿èoÿ±±ybYåßÊíT~8ß<+— Ûgµíyñ\ü(ªÛ]Þ礌„Œúr†2¹oMê$Ç3O¾y®°7‰CyI­àæc£ÄýÚ<”ïÏ̧r¤Jœ¬Ý‘ÃV€é øZm”q9(L”=Gœäøx‘yÔÑj0Âàb9Ç=à.½¡ݦ˜ Ñ\É-½¡I¹§`©T™ç‰R(ç àD.C;¤ •Cà˧3ñbG”¨™³2¥z•@®uJHRï]¹ÍÁÒ´…ÆrMöu(“Áv§˜ªÌOÉLì}tìgrèÙœü³W3­Æé±-LB ˆˆq T^I _e|D‰–R7gÏ™²¹$ÖE¢ECq/|ØZœ›’’Ób•~’âÀ^¡ ¤W'vÕBr£ýN4uë\iOü„[k;úG¯±ã®hMìŠÇâ‰x*ž‘‡(È`1œeá/ЧX½ÊÅO‰@)ù7Ñß|¨YQp šà ”ì©ñµV½¢Ah =ÎI)j;bû™Z ul{SR›ÛÅxCÅC…øáx‰…?Ýåx¾þù¯¥»°¿„r욟ò2âètœ bxe?ð¤+Ã"‘ábÅ-ñ¼-ù‘ò#Ë¿šú‹P弄ˆ©T:.=ÌRJtRæˆí-gÇÀÅ7¿ÿ>@#ÊIŒ¸<÷ܹíéD®2Ö œÇÚçlÇׯÊs†°䌉ïn1öµAnŸH:Wê•5Ò:ÆD>G0àj*¶)ÌPòzhÚ ÚzwRq¿èBSg¶ô©h¾âåÀ< ¬  ½Τ¬Q€P] Š1ô”x¬Mš€ñ¬ÊêÁ±P8<ˆRc\4ŒÝSŠ2I÷f.|:=iŒ*‰ýºÜÆóÝ:þ”“¿âºíÀš®J*,XË›¢¹²Á8asüfÚöFd¼ð€.£lÇåõÑö©`ÏAŽÃ›JmȪáˆ>ÝØ¾Š~‡º¹€=÷!ªß“ãú‡Ï1L:þú7>?;(^çsù?DÖE/3b—žû÷c!²! ¥ˆ.æÊ B¿©˜¨7öó„hª\n™Ti­=s——WЏn4 ôÄÎ`Î\ëƒÞ>ÀG¨€õH†Œc¦Þ™Î­¡1É “Wbq£Ø2³Ë‚æW½Òh(z ¦®±üLI)|@†7ÐPrGuµO‚âP›z„N‰Åtžøé¾éÊ2yXÅ `ıÐà"ô<€ Œ8»b7óe{ˆIªÅëôh‡& ïj·T¶Fu=s*þDÝA¹/„Ij½§ãX¥H8eæÉ2¢?0Hðg:£¶ô áÌ×È ÿsé£vÚKúQÁ%qÎò>ø¢D ljøV~£øReLïMy¡y†#œvº0Æjjû¾uikP´ |ë¥åmÒ s9s)-¹G[AÊ ÁFØà——6_9<Þ¢á=¯îЉò¼Z£ ?±h.ýÉÍž®(°èFÅÓÜŠâ·‹ûPöªâKÌrŒÝ’b9ª$EyA‰ÍºDR¬‹SlDìÑ‹êÎí-óDîíÃCèk‰CLGúX!ÿüÙP-p…¸pñrx«(¤{/c÷LwÊ8ŠlèJ „<ÈÒÆ¢ku•Ð-[O-[qD)Si»ß:VÞKš°¥Q²”æšn¿è¦•XNʉTgÝßà°›1eSÚ™|š.à)‰ú¨•~Ekè<LGC:Íd…çA«±ß>z3ØïœDµâA=É©ÊÈ_ƒ‘»ø ûù‡¸G1F`±dªI¥!@÷t1Õoµ&„ 8ŒÞ™c27?zƒBg¿Rᥬ$VÃ#6¾ðl<õ„?q¯MIÏþ„¥®ç#%ÁW+ð町DRÀhN=JœP©T8§I 8ª›·?êl¥ŒP¨DÔ¾KõâYQª f°eæõ"ü-Ò=BdWP=œÐôÝ íÐp»+/O’Š@t?WÖ”¸7:‚Œ‘lp?¸ý&êOR$u&˜a¥M!Á$¶Á1^!í¥:f¤œþÑš0wŠˆG,8 ñ‡8NYp:Q$c pØ‹"åk.ßÛt(;ÏkÄyp8+úøŽY‰^6u V´$õÈû#´é±è³yVÜ,s Z¼þ„Í,”göŠù= ƒ¾JÖÓ¿rÆ ©·™ŽéxPê™…çÌÅák晥â7ИI}iÜ,!Œëï¥=çA ­ˆœþö^u³°½]|/Á7Y*Ö&(a ò! u!~iÏlÏ¢ðÎð“ˆ¥ÝøMJG ºN-ŒZK“¬:ä+e´ª]uf,mÈê$ÚÎmw>AF€Æƒ:Œ^LzT ¨8pÌk%¤°ME†Þoà”/"CÀÐ9•x ‡Ep–HöB­Í]QÙ|ü˜„BJ!£§„4…Äók†ˆ™€Ü9N:•¦Î âñÌMìÎõ•;‘½–ݹtÝ‘°œô=Òÿ“‚ñÇ-jDëÕ¦)|wwž¼P"bÛ0&…nÈ~CM.¨»JÁôdgg§ªä©7-ú[lT7ƒEXíøêæÖ»­yQ# õé]2s$9 £sË[Ôß±‡“ð¨qØ*Qõ2#˜Á?…Ä\É á->*]°3£+O2Ÿ­[ÂP±ªDëy$ˆ±çN©¾ÆOE @P%y²ˆ£+òT0X­GF52¿~c{Fÿ#Ÿû\3q!ºb Äè^¨ñþÈFÉdð4Øpz›zC¼Æ+Äãl–z!Ú“$ãßõ”-äfÕú¼ Q(ñ˜ËRŽ!c— Üò|MMhµ¸v†¶V;dÐåÕþù}‚ƒµæ°×Hé겄€K4o¼ .–@P¨.mÙ°Ú›*(wU«ByKÍ„š•ˆ¦ÈœV–1iÂÎJÕMÕduó¬|ÉåÝøQm€³Ü#ƒržé¾n5>·/‹ï ìa!H0Á= e©ºèšRn¡í&Ž0P2]160›Tö\n2`_zƒÃ_ÐFæ˜þ <* ™•¹4óá†ÃdÖÓ¢’6ÚASKK¾<;‘à%t7·ë –—pY8Ò\ ß#/–§¼w±,HP¹†0”!î2oÁi!1ýÏ“¬§BæÎ1âgÒ²Ͳ5—…i*ù&˜p ÀfÓæž6T›ôªÓàÌöùКnµ«I©\¿Qù¯óïÑ“:'ØtÜj*š’ ~µÛ»4 bví¹ ¾7Ä{HiÉÅ™”)vºyë „©Ò.”¸pY¦íD^2x«Rl-ÈH è‡îÇ¥2ŸrJH†oìm:Gó•vUæ–5Ør€ãâÍÖ‹çå<:—YÙ7xÈYØhZÔšÀÝ•#Ú"b¬&d›¿WelóPÚÃpIÞúd*þ%)|óÄ æ,†À]Ìòl&ÁœÖ¹k[v;šÌfxs‰æx¹éFó÷7äžü[(áNI–N^ÞrD4I±Õ5¨zQW¿F!Ns A ¤qºÃÁzéx…º!TF{@NÐ…³¸QŒö$:ëxmÜû].ÿ ÎÀÅ5æq'£ [»°ñǵü…> ¾tu€®„vn[¹Ue R 4â[\»i…êÙv%$)É‹ °–ˆ“U¢?º©ÇØGnA^fæVØ>MY,Ý È¯ûj8 µŽ# ¼WÒÕxžH=h“ÀŒñN fÉô–ÀïÊ7$'ØNR9J(7<±î‡óò^b £¯Xˆ î‡=xÞRÎck³¤º$¯ .xÍÔn— O+ q3VoŸÁ¢Ñ“äÅÛæ´ï~Qµ@"~ûuÂ"nIl¢èõƒÓ£ÿ<휴öCÉärf8’ò£îä¤úFÇòùƒêÿ*ga¶œ^Àv7!ɾn°oFÁñ©/;a'D‡Ìýïl:–x jK¦œ—߇í^¯-SÑc¡ƒN“MmÕiʪ9Ãñé ë7#¥ Õ”GæªrêÌUgx†&Þ¶TZ¬|ecªÙ¤²ØDûèu‡}°ÙXªŽÌ 3Ç¡Z]†cK¬:g%©l¬Ñ– h^¤ªµáµxèâ.aÓ6T°Ài¢W¹Vý¡ú)‡vC6ß—#ÓŽ²¯´“Âl¸ùÒsA‚Ý£nÊÿxµXÌ÷¶·Ér¤z9[V]ïr[:Ôl_-¦“€}ÚÝ©íVvžoOýKwwjUüüÓ½€ÔžH ÁÎ$c§Áœvf¡$§ Oò\`mb]ÐÆy27€Sa¢„cîú¾s!u#'c1òð’»Ì©È¿ñöTäPÙ 'Tê,dÞá覑 ×ø-yÃðª"%¼’!‹©¸#FQY'á©#„À+õùuY%†ü=Rwn}Š×Ä—TOæŠ|þøüœ“1$»àÖ@‘<¨øk{?ä%ÃãÈÛ1ûæšz•ÕWÃ"=R•{g:Ì©¯åU0«ú•Ý"°UýB÷ÐÛ:&+¯êV_ öî¾±­óªÎÑ×Ûz§«¯èX 9]o›?ùý®NÞ>‹ Èmð÷Òè¦j €Ó==hõèDÙ/Ñ¢Œw?›iÓÃj¸õ®ÕzwBòêQ ‚ ŠxÎð·¢é"€Œ3{RÈÐ-\†î‘¨ÎˆÆ8>Á`‡4IsÉÓÀE?ªAàL¨+Û–7¹!¢ $D¼ê*?  ÎòÜs?³LVú ½‘>Ž 7‹ê»Ö){<¿ËÓ ò¸Ók¿ãËyÔ·’ñîx¹@m‹âÇHzSš¿<¹Äå%‡Ü`çHœëüòR_¡lŒ+pò-+té#h”'REA„sÌÓªF€̶3' ºç²÷têòҳ؃àSÂnfl¦ Æ–h [†•Ùª/²±“÷Ô"/Mh`Ä£¼òoíùBšC; ‡pžhíÃv±¼Ü¨í¼Ø}_NäHÐò€mèÔ¥´‘˜‹µväŽ-'M‹~zBø~•ÅÒýŒ$NŒéM‹:‡1v¡=4°·0]ö§9ˆ—d¯Ì¢hnƒœÍɬÄ'XNí;È[W¨®¯¢¸ÈN ÞÓƒ§ž¼±º¥§e”b¥´ûnWüøcök1×qçþßrtÓ wpä¥åL-6ЏJmÌwsÛÜ€Ý]wÆŒß)3Qmº°%ØöƒìAq:*ã `¦éÕ}¼£àÍ'íVžåÝä¤ ü… ⱃÝÖyêîÃàd'•‰!ÈÙ¬ù&»XX}ùØð”âÈ.ñßðö k`Õö4 KŒ2*0YsÀ ¿:³Ûûº:¿šÿÝÕŸ>Ùý)—;樕 ›¬æ/+ Ÿ~–¼“¤L7Ø[fU¶¤úX]tÖ6#¡2§Ye¸Ç‰×4$ÕÑöØõlåEv1ŠT!n ñ½ÀLfS$-¶ÚëÓ•d5—ƒõ6!¨îk6[ÇèNþºÕmwºƒî¡È/cû¦­9k>›÷-¶Â!{x¼!²i×’Cy\ŒãKš ¼Ú EÄ;ÐêÖ…öÄ ^Dêò­¸ˆât·£šña¨¿ò2k !Û3RBc?)b ªé¥ ƒ(A•vm‘{=Ã̘´\2±xstŠÙoí%ìPR"+ …i'‘Zi)5#ÂFØlûÚà5ÀÀëëkÍ‚£Ïð5ª;5ìퟠ+mBM‰ÉvÉ^Ø«‡)F×ÌBw0BŽº§V H:YÐe¯‘V¯ÁêuÊ©åáÍçÙ$š8j”‹ªÔâĆYy<Ë=ï¦jhË4SàY NÁXfö5ßZJ×c:ª‹¾y5Föµ˜ïï¶(Ÿ.‚I–ÏXWä²:7h¦5ŠJ'ä ÕÅ’F³ñˆtá3¤ù¯&œ6Ï^<©UJá‰eÿCÅ{° =xÛéÉ gwEßB­ˆÞ.#ûy=ðZ XÈ1 þËz¡F€äÓù`’ç¢^Ë¡ä†o¹tB}´£{¶•%4(Høâ³~ÜÛê&dq¼Žvä= ¬Çõ×â{Q{oX ÐÍ _è ‰ •$ÙS5œ?E®ŒÔ‡óòûm*_¹êŸGÛ¹ïݨøW–&éÚ"ª°ˆ›\%Åï0¨úŸ²‘õ=Þ/|•Oš”ë(Ê-\kÀ¤†?6yê8õüYáO2¸ý"Ц'~0ž¢6渥nrÕ¼Z³²9€p_Ÿ^49«Œ\¹sV¸™>L¹46¬.`NÍD£ìÒ{­•ö#úfV™oõªa±ú0ÀÁ{ÓDàá £Ö}'“ì.àÿ6… xœt¹xØhÀÿ˜(3Iå ´ ³°ú˜5lI$«)†4= ÈPuÃa_½K@6fÖO_Iß%@4ô-õý(Lj™åŒùsäq”…/œß¿[ü#5 '=ÒÕ¢}__¹ÊÂ*èPErÑC§19®#¢¤(ŸúÇ¢©®Æª|ò±¼áët EàÛ'xþ¹а?!®Â"ˆÊï.bœØ¯TÎf°_I®N+Ìr–·D;Š˜Ÿ)òî òŒ—Ê·„T‚ ¸thÔ/«èX€†h !)…íé•ïŸöZÑe©KËCàÀo+uÎ7) ½ß2±™ó»Üà”sš¿é¶z§hVœ™V0*Ù'l/¢#I€%¿‘ˆ@_ê…Hºn]°R©¸/©ø°"îx4LÇnÂòuÓ !GL:3‡³!°ê‚yu$i#×YìåýLǵ²°£à8ò£TçªÇo;G¿ïé÷Ä_nˆ¶þ†|§­™²Ú‘÷¶ÎG`ÉYA2sJp„ßè]ÛªÈ)ho|K¹SäaJMã¦üF>X#Ò-lM¶=G£#4º[x7$7Ð^à6$„ªdXT{r² g=+¹<éÒ¥oèŸ5ÒJ.eÄ_ʨ‹Žû÷ªÓao]Ãä½ô­Ý„y9Ós|&'Ÿvs¸òoÎ4ÁÊ1»&‡ £ÌÁs6ÄqØ7âUo?qô!¿çÀâ«.`f9”¥ÇjÈ…g©L“| ¢ZáÖ’spÏýâ/÷&f!‰\Å%°¨êó[8Eº§¹P«c”˜ »Hð¿vó_‚Qj÷ej‚ž?އ{w-O6çÀe÷c¿%“> …Á’ÍÎ…Xï„z µò†¬ØÈ@d©Ü‰ŒEÕqdô!_ E¥âø• Ʀ¼¶ñß¼Éðk[ªä Î×,ž¿5º°BEù±(C¡ÑQàºhVÕzÊW'‡O‹(fjÛ„ðãx¬½9hÉk5Ä6Þ§Ÿä.æÖÂ_^ø ÀZüü‡Ž´08§Û¼û2èf$~Ó–$Ì!Ǻϖ&7ôû´[¶o‘B¦5¼\K÷‚ fâ7A‘•©æ×èëãx¬aóÖTgþzËì¡5’@C¡{v õ^•á°2¬¸ÄU%N¤™¼äTJ:éáð™*¶§‘¯ ”¨Rh6 ËyÝk‘2T€Os/m–¡r:.k0†7­ÕR'-òçQ`b©/Cì™fÁè]ê¢ß(†¡›)ì]Dá6˜ጓè¢îµvÁÍ3NÚs…:pQÄ % ª¯cuÏÓUk„µÀ°FŸØ‚MT]¡Íça8ä!ßݽ8©Ãe8 àùª9å›hÌLýæÿ±÷¶mÛÈ¢ðùÿ ®¢[ÉYK¶üš—ºgeYI´µ-Ën“µ³ -Q6ITI)¶·ÉýíÏÌà;@N{¶÷Y7µ%3˜ À`0 £9tÖujŠ\A„4X[h]™0×&(0ÞÆsbVΆ<ÛŒdëü°=àÉö”U8vPw‰’'Ò´ÏDwxj3<¬æ×ôì Âgðx9ãY èµj =•áÁÅ{äúlË5’$f˜737qf§Ã‹}ƒÌ™%SgB›&Sg*sgv:8š×îÜä²ë\˜?³ÓY¥Y'–ŠŽô¢&~ã3ÎdBÓohÂYŸÍþI']%1c‘H‘ÇQS‰‰Ë¦«Yé§yw¢ãu"qŠå›SûeõÖÏ'}tÚT²RÝ¢`qRšõOûd©n÷«ÿ,YR5^UÿÖ6Ѽ¸²úÁ-"W__'.ßšalZæEÉ(õ kjÚ“ÅR‡E·@¥¹Ma_gì ,ô~<]820M…G)ÅDT: R’¢áÇþÄ[ ÀÇD/´­oøsL‘Bź! É„¢í)¡éd¼_[©ñ¥/ƺóIöååÕÕUåêéUõ껫Ú-'ãøÜ9¾OÅ —ÓF”}X+\6±çŒ©ê»2®ž¨ëäHh»ø¥QãHka] Ë`°µ C›‹Óì$3iÐæ××|¿J$6£R5 §¹ Üã%wM4Žøá@ÀJ …ÁŽF`X7ÅÄ߯XüÛðæçIa]à(¯‰é© mæ°pZ‹dÔíãµgÛèðl–:(Yœl<©±ËÁPŒ•HʵUò ÐRwž ·ùP>fññYLŒ¸Fb›†„{I˦ðÂÐ(L‘-‹&úñqS£#Óbg @h•8PÜ÷ÀP„âå³äîx'TOžb{Œœ6&ª_såI¤F y"CN¢.< òÎHሣ¨à1¯05A0ÎZšÎ²Ñ3vœ“E½Ø£µ`°cƒ$L)ÜOð`â‹hŠo ¤`ˆÁ¯±ì^5æ\¼É¬ÏŸ´`AX"‘ÇŽy"£á³¬“‘E”Ïéiät8;?Š'PÎ!"žø€E™sg´FŒedáfhæÖ );p\íb¬ß±µGˆ·úUžg#c”§ˆ•,ú‰l&ô ³3] 6Bgl~TKZùÔxK³wž2ˆ‡My69ØO{‡âèå0m ÐÄ6F%M´$êM(éþIé9q³…ôâŽXTk:׃nИN’‘xy|E»z°ú¹ÆsBs%ï["Dò>–ðúI•.Bi…S¥à˜§1¶ïø®H"8 ST5oškƉ;`î‚þ€’X%ö|•ðÔ."-íŒ2Û…RÁñkŸ{KŽx±ùœÐ²ðÓÍ­=êúé½²dŠèÀ#¶38 ~’~¤—»c°¨É‹š¬¤™,‰î†ÝL]¿¼¬ÑéÝjý }V­ÿ´ºº6xXøØ¢dª+ \±m»jÁVS»sµV1Ò'؃ ©éÒ ˜†–XÆ'uq˜÷£‡ª÷?`3²ÄŸµêOµ Û˜ú ¨ÆÆKßèõÞÑ–V“mòþ´ÏÞ³oÚâÓ,5^ 2ôl5«LUv¡ØÆ" ¥æï¢åŒ ¸d™LxAQ€'ž;(¤“Þ'Yè‘fsÆ ;k‹(ã6€Ÿ¯5v0þg»uN\Ì„]•‚5(&^päŽhõÇw , 37¡ËKÎfÚa¹t0x¿v3[bÑØŒ'8rHI,霡1·îáÜq)k-q'Èç½`¿Æ„âûQê1ß'Ñ•j¾b†ŽÏ¥ž*yåðŒ#Œ ¯[d±Iü%K~ÉN^´^<nÔè=啞Z ¯M7À0WÑØ¹·G0;ý&O°'£ % ! VÈ’°ŒÍXZ˜ ±LPâtéEïPøÓ7½CÌJ=ƒ÷p±à"ƒªa¡àÌ߀)3g€óæšð¬¼Q÷““¹ç[Û[®`R·µóüùj$ïÔº7—°øÚÜx±×ÚiAÑÍÅ ±tenp–2lT3U¤$œªˆ$Í8‘±è¤sý…‰ÝqÇ"ä—í„Q;4ð|-êœQ½µ*$bêâ!_ô”šƒ™@1'C€†Î¹ñ< roC3„’ì< ¦¿fò˜µ,ÀS§Õ¥ýÔúìÂÂŽ§€õl±å΢rD~„R%z1ÈaÇ“Ò~ ݈B7²BRG6Š˜"›—È1:±ƒf×Àê+W×Ô5}ÊhLl#Ò„Éëí2½ ìUüf»DAʇ¼ íÁL䤿–²÷F°wSн›{7åÙSq'aŽÛ:"ÍìKhyxRŠ ž 8Ê»ç!%’[Ô̈ù­¶¢˜=5Þ€ãÙvzí’›28Äæ±Ð›ÉòÁ ÑwƒIÌÛ_ý‘Ÿƒbà~`ªjÜó„ûÅ­…];B(Š §PЬ¶ÕàõWq»…xB»-ÁëÀëžÑà…è)dD“h,:îø(t¿"I½Œøžµ€ òÓÀ°ôÝw±L¿£°…ÅXT‰À±FŒ/ïùù¹ë;÷"å LÏni̪EF­8^óш3ð²11‚GD‘"Œû,Ę&£Mÿ“3§PxõU †­à"„àÊA¨xK»9¤³6Ömáÿkœ`0çº0™õ˜øSù›3’¨3„ä¼ËE+%••¢¹BB2Öýj²Zœ¶4Ž@Ø#wÊÊÓeå$PY/AÎRÐ0¬ÖhÌ=¼ö ›M5àß[ªï(M-ÉécEQd” ”’ñ'(÷òÄhH>dè£O£¹üW˜ õƃ†'á™1ƒA``R™Y£Èi†Ï?û´¦OLx`ŠtÀ%DOKÀÙ+W[œCŠÐ*PŸ€£l³ƒîiû¬}Þ?+… L€úpžŽôxFÐG``!@ppñæ¬{Ú?;Ž‹³2ÍhßÛC˜¸Ûcç¾ô#iÿï—™ùèN11\·¢k0ïŽWÐ/ ‰ék@jå€G,x\wQº$»>–, Œ[„# ³KŠ ÷/îy(ìNF‚¹%Û³Þ–ƒÄ®%‰ý씜J*ÇÜ/Ý¡L%Û½R¥ÿ3Zý;ŒV0±-2`BgvÊ–‘5–‘®Ê ƒjR0zsãú‹ÒÀ,Cø‹œ›âú%,{¬{Š‚ÁEd‡EP…¬ÈËÖ^:4æ%lmŸÅæ3ß_vÂi¶›xÁoÿÂÙ…“Ð¥ôx=ÝÛd©ÅÀÆ-܇Oˆ:î ž²mÄŤtÅÀ& ¤féH9‚;Åh‰8 Üp',$U¼H‹¤eÐÌñ]– —]¥Æ’L°„,˜èUTIˆ8 ¸] ª1ZÍÖfs§áí¶öXô;T3ˆ’„S‰Ã¿Mø»³ ,NÃec¸ÞÖåt…OžTüËö\cnF ÛØ]z„iäÜ8ÆÆ²€ÎøwŠSà™×)4s`þÔ>£ÓÏФÐVÖ.Ó7ÛÌ\׊ßwU¿¼Üh¼øðáÙÕêú?®ZÿX¿©EÝFÄ?«Õ¬ÿc£ÌãA c¸¼ü'A¬ãíM+’;È–ÜIî ÜÖ$‡Ñ*RVÑy6ŒÖ¹ÿ' ¦²7 v«¸èÈtJ„hXåÙ<1)®@·£ñ‹üÄ5ƒxM#¦ÀµÃÍ2nb¨'{K Tf¨°§#ÅFò[R Rö ÞƒX‚dÌ×E—ûÜâaj:Œ‰¸"Yá.˜Û«W7Ù="“…ØÉ0n\Qî«í•ûêAÄã÷OãÙúz ¿Ó~¸ÇßTüõûêoí¯ëd×_Ñ׃¯ëÈÓú«Ö¯tËq»ùõ®Óƒ}ãJY-¢NNBœÓoPiZÂêzY}tÎa>qØD)¡8®‰óuþòZŒQ,M'è£Èù̶f·Ík:ˆšC©¨8k›<‡ æ¸ "Ú t ¦6¬ì ‘{bÏn·ÁiÑ[ì>ž¯ÂÂào`±ðZ–øùä6u˃ -mê :3"Ú(Ø*ŒùFí7Úý¯3rV¿Ö>ªq„Æò@…# `/€º:-Y¢r:‡uPó…ˆðTvP@ð” ž·ýU½yõ[UFëÕ׫տ3¼°"ØJЯƒ¦B#"»ÈÚþ5«Ío(ø…Ÿ:K´>¿O•.%›=D”ÎÏa5\~ÛFš®~Kha~‹ãL7# Ãì!ñÓZìçæQö51ú§¨¯¶‡Y"AY§¨É/qWv•ã»d3N”Û©5"1ùxÝ)Îä@Å™²ûAî~ï6Š*EF{-¦sPsß8 Hs}9¶u}ex™¶¤ â‘UQ„³3›t±ñ¯K‹séÔoð-: F$9øÄd¿ÒÅþ5¶¸“ºM§®É:~÷]– ¥sOÑ&›Ù™Xþ¢&£½£ÍœÙ¼«lç?2ëŸòi,¿/ñü€ç~C}÷Þb"ƒv³5z¯xrËXtQª‘4-)FH\ÈL°sÎ[nR›Õ)8€ýz)H‹¿ßÁmg\ûTwD¬}+¾²kmÈ–vrkÕê.³ÔËÝt`Ä;¶t;è ú'‰%^ö"oÐ=ü°*}‹. Ñ#¡izÐ$á^Þûv§S :_ŒÆý mb‹×™`Q–Aaº>Ö¦ìõï¿_ûá‡ðU¼ŽDG*ÈÂ}¢3\’^Uâ ðÏç½ÿdó^šRð™0{^¦$ìr-Bq|O¶£Dø$ŒéI´Îe¼¬7áL­×1Ž(!fÀ@“¶jò)»¯éel²_Ý ¾ÊJl…%V=‘ë.L @ñƒTD"SV¬è"es"}ý–á­æ&Ž„#Çk`º§áÂ'«6fÒ ;vÐÆÚÎÍÌhü OóêйÍ4—JÕݦ¹ÀIâr'¯V“Câ©÷r³¹û¢Çâì§ÉeYbÐ9ëʽwÛçí2ð¿G5VykájƒÛCõêÞ’ùíµ9yË'«A µÉ ‰53ª‹sR¢Ú2ªK®DõdTÏ[ªD½:æ«Dvue #߀(Ó9ó¶^¢,f_pŠÇcŒ£;N K=rãî¿£äùÑr —»}U+Oc¬1xFÓ…êÙ:ÂѺ4¶pýM9ôn£-Cb.G“äšÛ2D0TÅÉÜ [”F‡€DÖ„Âu…'ó‹×†çõ WHPšçEÓ”AįÒ-Êïä-ÚþùÇ2`8êêö‰Äµ;¥æ±‘ÛpŠ™:Wö~û»z‹†!•ŹSšM`)òc>qñºJ,6¶ìrÈ, J§‡JMÇ¢W0“²ÿÜÂüŸ[˜ÿoa.5(²†U¤À+ãQúIkèÈJfUØ™¡–Md檱‘ ZeˆÖÏ!^äè*5?ˆdä*ãHŠgô’€ïfj•8¦¤„)¬\»¥”k·œr)‰ÔP.±ùÚ¡$ZüÑʥģ¡\J6ò•k/! ×;S—Ë"S1‘Cái·…Y¶#0UAåøç‘¢‡åAUA¦*bOOK×YR<ÿöPLeÊÁvßu»ïû rH˜>è@&®ªÉímå¯6ɧ#=ÇÍ%W¡kìÂb`¹ÂûŒ.ÎO/ÎCòÞÙ—sA£—+Wœðj¹Rz'n Óá˜3ÏÏÚRhX2vfûƒ‹/+÷"p0í|À\ÃO"ÍãýLî£R˜êcFÞ…Â3‘M¡ZÝ!5‰ÊKSÝe)×Ksê×M%J4s¡9ËÔ—²µ@9^Œª£½1ÄZÇf¤›wD®}õ¤‰ð¾–·Œct!eŠûŒÌÅÜ·JJ7 µ´‚DZ”Vô41FRZñvùyĸÆnЭ‡·AçA>þ_e ™nöôm¿¹^(ìD)¨œYª2wR­UNªÄæNª¿¹xþí¡ò'Õ/ŠLp_¦á›Op#thOpUÒÊ_üI†EEãu±äÊßbXÔE¢4’›-•!r SÛ²UnJÁ0,õ…Ëa»2Î)Ô²~Éòàå? ghÜ9³­ÍÆH-´™v¥F²ªVŒ¤4?ü5—€ Òë&Àwû¯¿ÀŸÃ£7Gýƒöû|ÔþÇ{³Zô3>8¾8:ïá({qÔ]Õ`•à©#4Ã⃋7í3ݼ˜nñþÁ Ô=ωåQ d²ÎqZPX¢í|EÈòá…e@û?¼8Vt9(Ì ÊÖJ'ºKšÃù²<ðg0ú®|c5Þ•WÀâ)ô²peù%Øò츷Lç»í>èšµ‡ÇA$>¦T_¡|ÁJ?× R0ï‘$”LÁЖˋØÜìâɃÂ5 PIw˾. Xî(_„¢…NŽ‹Û1°D=y$¤”Mªà 'òð*•(OL­Q¿s|KùwæQ·øpòëþÐG GU8^rõ¦¬:DOxÖ>ÁS˰þÜÃLtïg}Y š¼ÇVì•ÑN«E%, ÚƒîIû U±–Ò8ÐT`“ãòº÷À1%+&cæ™Û¾RöhXôÑ]?×άšÈ·_ËUõ-0âÁÅ)& ‚¡ï¼ýFµ8މ¬|Ú;êž™}üszÔ>—l³D¡0ÇnQ˜ &[㌠Âýã™Ûð ‡}²ïñÒk<ÊŒš,‚ØÁJËšñbJûô€`rP”q|3×ÄÖÂÊĺY3VñžƒBr&*…Ú$SR§½ŽõJ¢æÎ ¡äðiŽSB„â&• J½šûoß-þ6e×HàÁëµK£q´Á‡ð)Ån…/(‹7¿#Ÿ~3‡QÁÓæ£Â2FÓ#ø˜`¿¢SM%@Šyoót„cfª‚Ckf²ù:[/#”|/£‹ew¶èfZuâröŒ40lõ¬¦æƒ2tº +Žü”0ëÇí“ÞëîàÜÔeM¶–ÇØó,³}OwWúÓkw"ÝJøvÐü\ó¡yØ>û¹wÂνä¬*²&ƒ÷Çç½R³Š“ãîaOîÝW.Oå'T¯ÒKyÜÝÖjÕ %ïtŒåld{xÉù†ƒk™›ô†½(*¿ÈÈN1{Öê~¼Ð×Fõnò×[ü]õ]̃JèqUª`ÙÑ=]¥üòð˽þÅ7ª#{ŽÉûÃH½Ä¯åV}tˆUc½¼R¬Q¿º‰3ûVVjös6LÒ|Ö>{O3©>ÂõO»°4è½.1!=ì˜ìPN)?%?Þ(„5¼‰ó÷ľE_©ê¸_>·&™~õísÕ|Ï/©¤é—^j[†`¼Å”Õ¯ w;KLiƒ9n~ce  UáwC½ÃV„ú\%¯£H òµ`;Þ¬fžl?Z  ùz°“¥þ›/œ©ÑZøXtÍÀ…p‡ ñû×±¯$­õäªHÎfãàüìô¼§¸3.À Ú< Q „’(cÞMA‚æ]‰–Œµ[PÙˆècŠòûW³¯GGW´ÔE¾jêò:G]vSê2V«Ëî£ÕEN4W—qŽºìe© ÂÜLsZ±ÎPG~?Ü›QäjµÈ×ù¢š´5á"µ¥€MË Ó-^B”YiLV¿‚ÞçYzp3E8ÓËïÏ…‡Êð;W°¯!×Tä«…|mOjñæÃTœÃDKôé”P 9Ѩ‚Í/äÊQº#gàLêÅï{3Šü±FBîGˆhC¾\㺠]¼„&(OÙsMÓ»µ‘¥”ÐûÑÝ8 w¨¿›©Jo-¶6ÔúAéÅó †@"Z=J¥.LqMQŽš!BAyK©.e{wÚ Mù=Ðo&ð?Ò~låxÊýÈ—qJ;´!J膜ì˜n(¨ÞÌP삹㑕å|ÐîåÈ##Ëï_Éfº–o`KrâßtÏQSú¯Û ¯‡ÀŒ8Q:uJhŒœxw"T(hÏqùœã?sÍþkÅ [9ë<Àaj!ÚæLýûGĨ±´¶÷6 Mû }Û¸ÓWCÜëÖlgú­æ‹[϶Fæ'ûÁRœ0òËŸÆ» È{ËÉÅÑÑš¿ ÕZ€ÿ­š7eUƒq(V{ž­ØÎñ|ž¿=ë¶Í»ïÍ|:W 0Û —V º Å톂´iZ|dúÅw6ü–Z t’ýñun¦+ýö:—cV…ÎõO:*mÛÍÖ6"[¨„ž©ÝhQ*´gºÒ@)ï…´ýÅìrD܅ЇJõ‡T³­G¦AéªrU'Ç×öéâ\/ÚŸÓ¨[¼„º¨}m¬~9½;á ƒNšÇxô›«ËÐU\8˜º« oªk¹Í…ŒV£(½¥¨Çw÷Ö%6VÕ…·Õµ(èÛNW£(½£¨gaÍ·î$µPYzW]O.`´yá=u- 9¤ú”²ôsy=ÃkOÞwÎMuáŠZlGqiaÂq¦,¼»¡¨Å?øª»wŽ—|…-PõîÝV²"EY…%PvíÝÍT%ŠÂ ;0òlùÞÇn¨ +ì€íÉoÙÛMXeY… 8ù=°»;©J…Ö^-¹ïa7arJ+l@ÊMÔî^ªEa…À\¸H%ò²ŠþpSé™Ç2R‹¢ôžÂŒ­kyGÛKô~uaEÏyØKt}uaEßO\WîCÞKtþœÒŠÞ?žZ¹pA-ª²Š¾pò Ùö¶S•( +zÿxª˜¢ìí$kQVôþñÔ况¨ +úþØSõµ½DçÏ)­èý7ÖTÕ¦ÉíPui…¸}˜»Šû2@]ú¹Âü"7µÏý_UTÑû‘›¦ç‰¾¯*ªèù¿Èóy¢Û«Š*úüd¤Ò—ç‰^ŸSZÑï'j…yžèùyÅ}âÞ(FÙç‰ÎŸSZÑûR!‹Ýt=ŠÒŠþòáüù^ªEaEïÀ\¸H%ò²Šžp×¹€‘Jä…_(ú=ØYù”ñE¢ç« +ú>SPÅÖî‹ä†_.€ÂÌlË»~pfŠ4ì s ¡° 3û~aŠKŸ_l%ëË…PX„^¸w–'"_l§+ÌQX‰¹{§è÷/’Îtui…•È\¸H-ò² ë0Ë™©®è~‘0 [á)Õ*a,Ô…ÖÂs—3EÛ&Ì…²ôæ†Â^øCk"µ4d+ª.­°9‘ŽÒl¬&Uy…½@W†3v†–J& ‹¡£° ¯`Ö¥(«°*—`©DQXaü_åέ0¨EYXaþÀ.ˆJU•UX•30ŒT¢(¬° åd- êÉ)®° o9“zjÈ "eé–Â&,\‘ú¨p€)ã€oIßúÊœ=y`øÁÅÉáQW‘;ê"韼î½Ñ9ëãñVÜ(À¢ëÓm9¸2" Ó ÷þ®Ð ü9v-è¬ËžØÝ±ê5fF¥ÊžÉó8+¨ Qæè™ŽH$w)Ey$ µbEq½6NÜgó_ÿ‹?¿üÚh5w)|ˆ¶›Ckxk¯õ~³õmêØØØØÝÞ6ðïÞîýÝØdß76Z»Û[›FkkkwocwkcgÛØhímmlÿ—±ñmªWÿ,ý…å)wkv3v½‘¤xˆ™ #øû'ùšj )º™Â&7·ÃÓ<ú%bùÖAA†ŸSkqÛÃ|±3†1<;*S²¾O°Ê_”çV`.Í0GPœgžÇ]Êsø>Á3Qžg¹4ϹYëe<³s+R–ƒ×I–ùišÒsÄ¥fðÅù=¸À ðúgçR–c%jY/Êsâ.Íx€¢8ïgGR®Ù» Ó/Êó‹XKs Àú<Ú÷ö_F‘ïý“< ’¤9Š¡0Í`}šEnYJ‹éÞxÖïÖžù0™šx« í¯ÝÃ…ÉÎDW‚,<úl]ÃÊ¡ƒæµêo‘ÖûŠ·ÁåÍ#“Lqd…™`púDûrªýdûeéö‹ËM¤VB;[”üÒ„°úLŒ¬…å¹î"ä">^4V”ü(ºÂôG€‹1Añµ í¥é.¦ò>HËÜ^V˜®â*À îŸÃ«vš~Xç¦?ޝ81ø½½!6>[^á~CW¼ëFÁõ™àΛ4üEQ."ø ³ÂêÓïNF èîÒ’ÔDZf ^À¹b 9¨o/²×”+Oà‡OEã†jP¬WK@€ýÒ†ùZ|6ËÉ.nìÜbŒ3»Ùöy_×P†®„z >á·‹é$B8±]xLH “Ë ¨ágçÑÔrÅu‚à L¿GãGÓÊqŸcŠwsÿñ¤úå(õ‹NGåSÑÓвSÐ⣰-±ìe©‘ø£p1ë?µfêáMQÒ9²Ât38 ¢»¯{']VyÔ;ïžaˆÂè’}Ë÷îÓ¾çõgÆ!¨ë Ó¿P˜ñr21è²Sw ߘ[ÃOÖÝ4ž­¯üíÿ¼üÞï:6 PŸ+?ÌM›–CÄ7… Ù=Ø×Ç[‹K¹’ùܹiÉD<Ø)ɈÛAõd¡ÇD®,þ 7oZ¡_[Ñ[À‹?¹RùCÝÀiÙÄ<Ü)ñX£‘gû¾qwk{¶q½¼1<¯ïö±ëÅd$2g]ã¶ìl!™.³¹RûÝÉiIqyJF·.hÏE”‰Dù´‡ã$HaPp4ÔÉ BéßÝÎÛ¾Ù)H˜PÖE0W8 k•&®„fp‰ÓPÿ4q% ƒÓ'3 $M$;°´€¶±€ckâXÒ c™3^2Ë#Xþºþ¢©Ú€Y«ÞVŸP˜rߨåH-šAlZJnF¸×t{ݺ7‡îtny¶™ðC‘ïÅPàvQüjv–è \ݾx ­–†Íï`ç}»Ûj¶ZÍMƒ.h¸×x;ŽHÈž40Ö™ÆWÛ¹™Ÿái^Y±LÇæe»ñUG4E¨†WØ¡;¹€ó¬û?½³. æuMþi(rÔl&õ±w28Ç[µ0Îø¬}¬ (t² xÖY“8†|‘¥HtÎz§R3G¹´‚p† ݇íóvYªu`4#xŠ1ìÝñ=Jà[3½j¾@/ZU$ZϦ?ÀTœvšK·$n_§ÚåÎû7§ösQµ³nY°Ú†Oo“‘2a X1òºâÄsȤG–ÊÙ¡\ÅHÏY/+HÏ[íGjT®~O©¥VF|UtÂ+bA˜µö)Í× Ò¯¸çä'î˜-§×¶'åP“ÂÌñrêø¾3ËŸJ ÛîPBú¢Š© –5`úN'pÆT˜FM¸,"9hA*Ñ2—¡RNB%‚¤òm·}Ø•9«èÔƒ”PÊ€ Њ¬õN^÷‹Rª —A§-@%Ÿ¡šú3Ôp'U2s7U ýŒ§EÉÔÊŠßG¸2s_„{ìä½ÕL8ŠG‡™o³„9þÖ…fá¦ÒËR|Y ¹¦Ÿ`¶lÎÙÆ[ß= 4ÅIæEŒßÏ?¶zù Yæîç‹ôÊî¹YfäÐ…Ëê›´à‚ib[#˜]˜#Eš=Å*©¸d±ÁP¤ÝaéÀµú|l,,E TKÿ À4XFÀ`ÁdA—³’DjJÈ$XÔLïɹyvqÔ•IÏRó§âJ‘“íSû©Ì¢¿‰TÖ@í‹£óRŒiÃf3€—d´0éq¨îÙAÐ;ÿÆuqä@ )d²Ì¼™þ¨=x[‚mØlÊð’M—_ýVfO­_*²¿´¶ uØ­VžƒGÝa·ÊuØ,†òµ^Θ6lé«d´0é;›ãº8Ýa³8Ñ×ú2VI¹F‡U6]~õÛA‡¥ô-í³œrY+!Ëà ¹U„2•O·$û‰ùYòSÌÎR4YCs¸0‹S¦ —5ñá ¨ìHƒ#dôåCd9÷å±4Ñþaaº´ ²hËÙ®L‡,–"P,+t!'£Z‰Š )}0Eã*2÷ô´\ójÂe50ý³w‹ÿÐô§¥‰Yæâ”éÂIƒBT†ÉïðV´ágÓ¾·í{Å]jÙDs4ÅIf€îü=N0F¶'˜£)N0Ô!8=ÇÁ¨"g¢¸×0Éìa÷ô°GÞ©Jõ·„ëëÈžûÒ …2¾9Æâ|3À"ú1,$ªpЕN0è‚äþºtU·›Ê‰Õ”J°ù„&W¶¡A¢éRí™u=±MP {6²gÃÌS0üÊR1þ²oÜÏÜskD®L)ckCf®Upvc@Êì”jbµ@¥ÔªÓs ðÌ…•®¤¤À…˜æ@ú‹¹,aiCË䥱Íáº0¬‡Î\èeº¶ ¤klN SŒÎqÿâdr àûU@Cd§ÚÇöM>yæâa^ØÞ…•™@qØÂö%2¶üðS#`qÅ0ôMŸqÅ¿ûŽCèHÓMß ‡[Å´, °”ñ,ŽA¢wq$Á¸”Q-"—‹ÒF¶¸Ds‘5ºÿûnª GaVåsø¿{fb'¬_²ž£ë‹ 4Á,¤z1è&ë€n¤rÛï$å•W·ÙN¶ËàÈŒ÷I£É—²”µâh²¢…Dƒ—œµ#í ed«¦p8x)Y–•\V»é‘X·¬†3B~O½j™Ÿ¦IíH“Ñ¥U¿š¢/ÏQ*!P¬Œ5M¢ÊW*£O¦°5ݸy~RYój•ò¯þ9ºÅhúÓÒ”ë'•P¦ WÊ¿ÖYÜû—!õo½¤“6VÞ’NÕf¹K:Që¿û’.­búË™²ÆðÈ%]êy–Z(»¤ÛýK:]$jŽžg ·º…##mHö +—PYêÑ\N›\©YÀ¿©ð^$ÉzßV /²éÒÉ Áþß L­62Ú´ ²¨Ë¹bŽó‹OXêQÓv:CãΙmm6FòCî÷F®Á¬xÎÝüð×\2H¯ãÍVÝþë/ðçðèÍQÿ }Ä>µÿñÞìŸeú_÷pE|qÔ]Í­)s–1Yà¼Mù’Ít<©´9’eU.D–*¿ñ";ŸGGçý¾ô ¡Œ0M°¬ýMY€ÄþÁß/Ž¥¶IF¢&XöÖ3B ’e¤¨ –½rÕ•b§}Ò?éuÚGæÛþà¼@qºò°DÏ`%›þR~í²øÍÒöå—P¦Z€²»D¢Ø÷‚í¡$K-S@]X*šá|I_¶>”"””$a ü&ü®ÇhÞ,I3ÇQ–l^˜rW[“âÔæÃI)u÷̦¨ÄŒ?奯 Ö‘ä*Hèc7€/GiAµ%ÇimEIš ë,AWYM0™…vÐ=,JžHæ!IÕMÕI²0aQºt`2C°”u˦”ìW¸×eˆÓÊ îuAâþ}Ûô¨pȇÈÜB)2Ÿ‡‰ëAOš·D:Ÿ×ËšÏ3È$2ïnIB K]ËʼnþÈõDšcAF]>Da'ò ]ä݉oNffá1àKtûk…ù' ñOàJø(K’:‰r!Š2É,vqÊtáÊœ·Ë˜“ªräHg¥:@…뤉;kŸõŠR§•A,áC=:7±çË.DHÍÎí¦!Ën Ø|ɆùÝ ³òyûËë»vÚõxæs~EºáÃ3Û7–3žÈá+ÏòÛOdûÖæ .N1)z÷Ð+ÉË“¸»]¤eÁ$¼àögí³÷&¦b-ÜÐÅQd›×$–"†ömû§®yxôºsb¾MÙÚ–áŒwiÜZŸm²¼ß&ãá¬yûƒqk[#Û3ÆÎ$y‰B eÙgp~Ø1YfÃ2‹…(xqĪÍGûdÐ3:QY$ǘ"|$›Ûõüýiw ×4þƒ¿Ž±:¾FóDQ— jpÞ>×' ·‘5i∋’t~ú¯IÐbórÒÂÄà3ºÄxÎìF‹Ž´ 1ÇÝã>X-b¦ö¦SÄHKIFW›I4Zº -HOïä¼@÷rf ÝÞA\\“X[“&=MfH sqÒP=b`¾ ôh -;2^2F†(¸|dÓhQVžNÇì˜ýì²[©8­ƒÞ ½Ü«»ÊBVi‘˜'ÄÑågpƒ—²¼ÝJMqºït Sš|¬)L÷œ¬Ôù•ÏÖäLÃÈN¥ûúI(A_Ø B£àrŠ_HM1üÓèKÁÿ«š1^Ά ¼ü$Û#º<"”½H‡¬1h©v6$røqpÞ=>ÕÄ'aOçy’àóèP‹B‰T \.ŒÐ Äâ¸îlmFS ó&ÜaÈõ}+aÐ/•2¨7 #z…>dû!p>ó Z•±Ãjbµ@¥Ôª¨wäÝô%%VSŽ]n ô;Ë›Õ/Ýkߨ uäúÄÔz®ñ±‹Š£S>÷©Žoˆ’Í•÷Љø]ÞrfXË…»œ,x…XšÍuøsàu|՝ߨ3Û³&ÍéöËͽ—F;"·ïçô¸‘1öÜi³Ù\I‘váΉýÙ–Šînÿ)ùC²õø{þçäï¹&{›Jþl=þvÿœüíjò÷|ãOÉ’­ÇߟӾ<×µ/­ÔbãfB[5¡M…ñÚ ™!‘Z~‘=íéž´ŽºæOí£7 ¡ÃŒ\Lbª›€©µ‘”H¹úœS<Ó*ƒ$+l+†¼¤Ì¨Ï[ér£‡Eƒœ£hSÆl¨”€5ðä°ÖR*d{Ð>ÉPFË·f4W¥ãh¥Ð¤9ìI–Ó…È[,À¡h,%šrUp ‡!‡…<…kå)о0spä°³©T4@›©iËk-UK‡¢FÐæp'‹K-ŒAÞR!EK©yД®Š =y\ä)Üfž²h’Ž$>ŽâM§ÿS†ÆÝ ÝÏù —ZÁGæð&YÇF o¨‡¢™” hÊUÁ†òTMîZ(,Ì9ìHòÌq ‡ýÎ +»¦;ôógsé$»!ÒÖdéu‹"·R€CÑHJ4åªà@C yŠ&ÏçVX˜98rØ‘$Qãºggý3³wò÷nçœï´$tÎö<×3Þßí¸kj·!»ªÞ%»Á%oÑ,tжÕåP³eôXÔC¦ÏcžË“§=¦ ôÑåð+Iê"f—t=bû¼×ÉZŠàÕ”t,?_™SùLRäð-ÉiRbfǤhX –4eŸË“-¦òÔUžl¥¤¨µ0å0:²·Í|ç_¶)ϯH/ òU‡;‡¼²äžáÇåÌwnföÈpf‹«î ÆÃ F®í3waŒ&±}¨É‚zç$Úï´å±*IÄH¼jõ^ê÷XÝÐByX3ÕBx7¯mcéƒðê(!wf\Lžs¿Ú\1ŒŒ}VmFuäõHi••Uޤ>2I]ÕÖ Ë7¬`ÛÙp=æ9ÎÚÖd¤‚¹ ûgtŒ‚5ÉPLœ" 8¸ªþ¨XìúWŽ ™ç\ç KT¾E´C¦G¨C§Œ.t”аÄ;Þ…4‡WµD{k“+gø¬ý pçÇA÷Ù=‘UržDRL)’²pá;6>š7öâzw»ÃÇ7ÝóþQ<5ÆÐ-:žõÐØ$ÃBߟ¢ù+¼°§~Ó8¿uü°ÁgÏþué`v!„ŽˆÚð—ó¹ë‘!Zܺ¾àH™£âBŒ…øœ ='\5ó=Ñø¸Ó1œé|bOíδ°û FèH„Õø4sïId'Rxq˜£ ?7ž{·¸%N¡´Ç9ze¸âÝ9À#ã;g2SŒ(pGiŠ“;¨íª-‡ (kûP gj7Wž$È7~06Œý¨&ÚîÎòFÆ­sø k4òlß·ý4Ô÷P [j }ã“s¸œ¡$fÉØç¸¤Kwš¢ˆ2Âc(äfS¶Ô´ÏÏßëD-9>Ôý´ÄÑåR¡J5‘ȆR®!ŠhN$“±§ É‹¤ š‰C+Ème·\¦3µÚ.Wî-ÆÓÅ"k½üæKGt‚sAÚYVÒ€ù-(?=ïwušÐ_xs4•9m Ì¥EÙˆÚhd­(h%ÖŒ‚Mm°h;jKRÀ+ˆÞ’¶äë-9ÖkÉ×ê&ØÒlI=4Š–|Ó’©M.̱º1$û…€å-9ÎiÉíì–DVßh…3#þ›¼pfŽ.— ej"‘µ ×E¬ý{Ú@ÑÖÓ•´ƒV»“ÝroŽ‘Q3}´:£ín¦X‹éå´^€2—eûi£‘µ @ !”X 6µÁ¢­¨ ,iG¯ zWÕ’úí¨ÕŠùTh´a.u jˆ"£ý´Ò­W†ÞZAî^vË¡áH¿âÒs¢Õ£ˆs‰R6dL²ÖŒàÐQ¬I#,kCFÛµ¼¤q#(ÔKüë…ÚW·uóÉÑkÛ\<¹-«!™ìvÕ†ËlÕ2„Ç(è–àzÓ=G†û¯ÛZ‹É{¹ã‘•·¢Œ¡Î¥Km‹ ’Zá AÅmq„mmИE.‚@f—#8ä li-ÔÏñ Lfÿõë\\ÒÉe‹IÉévŒˆLí£Ì8ä`%ôY@ùG(Ó±cOp›Ì€)ÿr¸€WY³p=VµT€È,‚M!8SOt’5g’]á™f ñé±Ì•÷ßÿ˜‚KkOÖšöºáqƒ9ÿ°q¯wÚa[â:={Ömš?vß›øt®5ÈηžmÌOöƒ9„O‹¼Ñ6£š\J•]¢BY¯H£’wŒíLRZÚ¢Öº‰ÍNcR°$éëB,ý“N!pgC]m Ô¹tiéª< @$‚Êl{d[4«Õµä´7âP0 ñ?Æ¿ëë´1(Ò½³Èi]Ž.— uhƒihkˆ"Ö–Œ=m h+j‚JÚAËsh´´æ«0`’碑îƒp„$7†DÕy3¾3í㔀t6kS(M~6Q*Ž^·Û5;»Ï?åâÈE­Èw%H©”If·´Áí׌õ#ÇJlëêй£Ãëóç{¹(d¬"°‚ÓlN©Ê£g±˜ØR^Õt¦×ÿ?÷ÏæAïM÷ä°×>‰«WâeÔfyÆÜs‡¶ï»žHcyçz#øí,nI§®¿ è çf挡5[× ¦§ž¿0êç“m»ëN,ŠÉœ¶Ï:kÆrF¯z³…=Y%û÷êd± #šÁžQrÌ\óÔˆ”2‘j“‘mšðNÄB$YjÁ;æxå©=ñmÂBÒLDKÉ ¤²ßÛHµ2sNôú'½7:ƒƒ;sn`h`)BŒzc‚OV3/k.5j׋&©ã…ÁËU/Ü€ïôO^C“Ý?ì ê—Sw´œØþ:²¸ô–SK jüåõ” eZ©ò/HäÌõ¦ÖÄù—‰¾¢]ƒ—D=ypYq¥ TK4m!•kL»…Ѝmd8rfÃÉrd£ÝºFY—ÑÕTl"2Õ—V§ D›ÍZ\!´Ô"†Àrn±NÅHÖ–Ñœwöæžä¤YW[èâìâ¸óç7 ‰.”åV¦‹#WFŒ§Àƒ¤ced%ËÀ£!/)3Ê umnô°h°£Žì0eÄã—°žÖRÛŸ'‡GÝ3f×Ü Ã-Ù ˆòà2¥J  9>OŽix¯ŒhÇÖ'{¬¸zs/ËGý·ïëü} ®çB;zý‹¢É½Õª<ØìE”W°žfàœ‡ä/J3 *C¾Ö >ãúêî»n÷Ýy`ú3£ReϺ—Fˆ)§I$P>ëZƒ8Š"MÍé·ùäë!PÓŸgÎ^HÍPQ9ªQ”ÆÂ³;"aXØœ{`Rî #ð½a™z­kß, Š$?¢ÖG€—–2Öû(àGµqïdpÞ>’g°—Áÿë'S~¥HN}©ðýÿâç—_­æ.í¼ìæÐÞÚë$8¿¹ùmêØØØØÝÞ6ðïÞîýÝØdß76¶·vv÷6ŒÖÖüÙÝÚØÙ66Z{[­Ýÿ26¾Mõ꟥¿°< ånbÍnÆ®7’”ƒbã±1³aÿ$?¢“¬/}o.ÖéBñukȾM@<7ÿÂĽ˜_ýâ„nE€¿´¥øœ¬àœïm·ó£È¢voñ¥øÊôN:G‡Ýâi_¡>¥lÜõK–`ñamÅ@8ü¸"oKgÆ —á*Ü2ðT)~Zú6é©q:wê,ГH)ƒÃ=ÖgË™à±í&PØ"•™<7ÁÂäî5¬¶…¿x>^uc-Œ˜Û ×ofKøkçóæ-¢ O¶"U¸îçø *ÆYÄÁWgÛ Qóí*zݸÁøž‰ò‡ÐѶòg÷Cñaƒp¹›Öhd°ó9±ÏCw9[ð´sgúöœ}wf¾í-Œ«•'ôufßó‚,Á»3~Ör¡9^VØI§kkT'ÔV›F‡öá±KÖ2Àê ?­×ËÁÖ­U@ºÀ³S³cJÊ@gü%4$S×sÜ¥?y0–3Ïž8¨9 òzj†ç¬jÎ-©ÇÈN,ô'x'8ü™{îgE •Ó5ãÁ^à§(oמûÉž­aíÇ›;g@Aõ¶åÔHòÈ µÛ8¶¼Æ&Ø[£Þjî4ÁÚ¢˜lËz«:pÙ¢æSÐC [ÎÍ퀘ù(æDæÏí¡cMŒ!ÔA€ :%5 Oÿµfïu¯þ«„@Q*¬“R/î´AW™¾Öé!½!ÁXÃÅ’ÎÔݹÞ'ŸƒQ Pªág*#Õ2Sï/‘F£Ê¯Óŧõ•'Æ3&°g«ðÙ0²ìÏ\z‡¾;$}æbò›Juè¹¾=f:w& •WØ3**AT¡{ÓQifn… ’[=€ðí‘ Ý lî„fAIsäÜ8 ¿æ¯ÿóª~¹ÑxqÕüðìjµùlýªµ^ã°>&›î½ìWá†_MQ´åOÙ[ Î Ïøbàqñ† l(ë­|Œ`«ŠjBŠ]ßœZ¿¸Þ~õ·ÍÆÆ×ø gF/¶Ò/@tðb;|!dÛ2ÐS‰(º‚&çÉ—/ÆoAû׬"†ñÝw¢ÐNR" Fˆk'Ž+^ŒðQ1è!qt@?4÷Wñ/Òî’–Àc˜ôzìÐþçÕ+®…«R8(lß~`ƒ ?‘Ž„%öi)ðJTÿ#c"?÷Ï~Ä«HøøÜ ‹F~.éÔïgk²¤ý5T#òcÃ/š!ŒÌ|E¼ÚÌ€YCè ÑOW£”dÁ[É0Ágá¥M <ŽLæó”‹sz‘1KᎨ£óÃ#“_Tﺯûg «êÒàeï„bÌêF½ú¬XÅ{{éŠ#TýS÷¤×åA.ªjÁ¸’mO·îò†m#‚t–8ÚaÛŒlXïbƒŒÈœƒ•š¸³ÛƒAoH…ìL’5³Ôx#Ÿõ G=v¶¶öÞp9ú5ìŸw6¢Ý³ôtYßA|X>ñi©Ú̺0{`S(>¶'°ù¨]óÙ‚Â71Øsk3&{†H}ìX¬‘'ôï:›]¶Á B„s(Ùñok†ákg„¥¹ Mg:cPl5ÍÖÌt!zµÊD^¬ÉŸ‹¨› ÑäLµ³>³r O]\pÔÌž2´uòiÃ2½ö›“þ « oÌ€Ösd"þƒ… :%w.`äÜ)#5ÿ§Sþ.2ˆØÍ앉–/­Q<¥ˆËê–iµ,Ò-#ÐT·,)…ÍÖnR H›#ÁÈr~‡ehÃ0"ö+ÕÈ7£ÚŠ$Ù©ÒŸ­íŒ„0@ªü©åÁB£Š{$ß {nò³¥ï϶1³Y_ÿdÃbÇpé4q`vÇ:&n A7›cwµ)›JÁw43°0Ä´ˆÌŽ •Áþ‹>§‡wÖ_øÒ4Ò¶ðhº÷P̶|®3w·_«‚i™¸î'ZÌ šxYê¨ó¥ ˜„޲Æaz1‹5ÙêjFq–>i „Ð'<.Üá±]½#Á¸`½7pÑö –Õx…0¬UGöKfCêLû‡Ý5î!â“OF!à&y™€r®Ñt“OˆYúË)=|¹öì°iñ ¯ê!ðÕ—«úÌ]­þ7ŒKÏw>ÛW«± q”¶±µ@ó'Ò°ð^ÅX3>„•„Sb Ùÿ¹wþ¶~ÉA#²ÎÁŠz=„70­!Ê6"eSô …þæä 2|P„!z9847Œ±‚Ãõ-±3F’X!ÆSÔzt\`£_Û84pç÷Êa­A%B¼ö5ôá Áœ‘c h üp°BãåÄoŽæ7¶¡Ra‚÷˜Œ(á‘ÄtóÛ@—AÃnçˆ$#XêƒÝåmBËCµ=(ÿ$Vô›á"È@Öè3h5îHM\kčд˜ögnN #µJÞ‡4%ª õÓÀuȘþ!¢’rœ¡\RnZx·ºËÚ ?Û5KzøXK/A`áš1+s–!kC˜F¬‘1“ã:çüÌm>ÙkØ´–ïÃÔ(Ї¼<s†Ùswö0u—¾\8þ»ÏéYÿ§ÞaÔÝ£AW¶ ”N¢Ã^¼7Ò‰Ë0§3’“ݧÕý‘¸c×3ú%féôhw¤ÝxjÎ(=aO ʳʱqï–7^®p_¨Þ°Œ©h{`ÚæŒiBµBIµ4ò Ó 1eª:ÞP¡Òb©ëˆŠi‰“µasb&Àå O\…ø‹ RD³J ¯åBDæ¹Éó¹–a‘×Ò­²Ç« än ºÿÚÌÅ«+O`œB”õȘɺnÏ@O…Àg{æØt¦„›²ØCÖ›’kM^·:ͱÙ/T –´­LÛ)Á‰„aS>yõ ¹aœ0fž¢±Š7ÜxЦŒ+’krÛÕáÀš‡ú"*¿Ã-¥ålÔ\y’ô¸!%|wˆ8[R¸ÀBÿ6òÞ,j¿¬ žRxõyàsúýÆ‹ÁwørØ=ì³h™÷CNŸ!ŸèÞŽëY-ÃöÔhúXKt¡šáÎi/˜.ýEktáÞиHõÙê“ÌÁ,$¸Ò8Šk—ÁX¨dóÐè¥Õ“êBgè A¤UQ~eå©qf³ÌƒKZß:8æã¹EÎ:Îd%îh® -¶7©À8ë`hƒ ¡¨#|•‡‹wÝ,\LhX˜rÂòàâ”›°¼Æó†8¤ÉæÁv¢Y´;O̹WÓ#së0ήÓ?>nŸ`À}$Ã4®/ö£±‡1óYH…Æ& ü©ËÃñaaeÏHúü­É·Fž;ç+/ÜÓ¸jºÕõõWôáúøXãåqˆwÐ >E«~…+{xëEN¿AGb›@bº® ¾DÍh,?bé`@ˆË€`ÃïzÕÙgLTubKÇ–E ÏB…iâ H>}k͇îé&4Ñ0Á|C Yü< ZˆŠñÔèã>$;ákàÉ=Z9‰¥QÔß]h}¼³™í_ Œ_€¹^ýÛj9Ô j}—ôƒ<‚ð,O0Îf¾…P²<¹1ÜšR `þ8±l'Åýû[‰%+¥°X¢0”X¶ãI'¹ûKŒœrœFÍï5gÕFß¡ãéý½x³Á»ó¼"§íó·Ò2‡°:jŸuÞÊKa¿:<:êãÑI ’Áûãƒþ‘y1èôϺ™¥(dêz¬*ÅêŸvO@F§8äÉ‘Ñþ&½EÇ“3[­³ôÛ¬H²s °kæ³KpÿÀ «HOv!t@rÁÐHèÎj ‘C™æ€k˜œþÏ–G¡&>bÁ¸øäÎ^’ ’ßÀ§ÑŒ„ЛÄâ8ÆÎPó<¾ð†:0ˆdÁ‡‰ zÐÔ¡óÇ“&W124‡nÉÙÂ"$`…Nó#wÉ6‹ÙAÇp~ƒÂ¾…¦GÓÌ&߀À}7‚ú–PÏá'c9'¸7ÔDl?ŠŽ©úó VüŽ3ŠTíŒs€[X‰zåidIy}ýÀ9lB‰×½wÇÝ—búÓð4ŸU¿|©}D¤—|O?¶¥/jˆEüÁ‚Ë™ã/FКÔúx9}Mðžn¸ë£ú†ËåÙ‚yO´C yl˜cP;ǃE†Òy.À0F9DO`U ^b˜ü…7bÿÄ¿ó |˼ é&fF5j¹ùiÇ‹“ÿ¹èŸw£EÖ.+U˜ãá¼>ŸÓFäðÖù™Œc-´¿b¶&F…ÍIÙ|tÿŠÀñµ‰ÖàªR‘RZ :ŸG/EtE*JRDé3ÒhIËÈC;ƒ65‹´¨â°Rgª;Û©édöÀ’q;í“þI¯Ó>2ßöaÛD×.…SzdÏtŸœÝèúe¶c4Aíbáaà{jrüiœöÏλ,L4’{>‘bq•á’‰!ûor”Ó¸âC™,m £µ¬ÛÍ›&Ld`€ðíiãâñ½Ñj­ðkx6sïÈÁú ™Gk1¼5ú<Õn³Äù¾;vi‡÷ |£apû‰ÆËÅÒ#m F¶…÷À–“ä÷s}ãYÓ€\/Ê$²Ï=P$Ë,ç~ëÙø½Ýl5ù‡Íæ3¶Bzj\p'Q¸[ÀF•…·dAÀðpòMx»÷Ž}2 ÀìžÓ'ÈRP3ÄÒ_ìjCK0ñ°‹6¶ Öà #Â/——Û`?WÕ X‚MËõ9LDFÃù’ É0æx9À|(6´¤ˆgbL˜ @ kºvžsSˆ¸‘å±8K&Í6úêÅ= 4Ücº®ÐŸf¡e4a»¨_äfY‹µGÕc¹Xs?ñÝ$ºüâv±˜¿\_¿»»k’='š®w³.æ 0аq¸+c϶¯ýÑ3òFžuÓŒÉC!YÜÌ–{FOª.Bx~tH}«à][ žÑL“ú ´€qøuVlŒÃ_!˜ÿóަþÐÝjnŸw>ïâ'X?ÞßÛø¹H.Nz切m?[ÞmŠÊØŽN|NËŽTô‹Œä`Ï$²9È¢ R«Ž–Xž7U¡~ô/æÃÜs2ÇÆæz NéY£¢ï'\ÔWñàÚØ)¸BÚÉòå“/2s™ÄB£ªO׌ v ,»Xæ æ&-G^G<Ýíl ý¿°,²Î$½¿¬…b~IªûýIû¸‡N‰“»g²Õ, ÀX T0qFµOÅ·‘Ît˼ðâr…¢ÞDkýŒrûUÿÖƒ¿˜ÄÄ0â¦Ë{©Ò±>IÛ–„Û—™~ޤßkŸ÷Ï4ÅC¥2MNFŒ‚Ôà¤Ô!‹AɰÎ6`í_Âxìw e­¶­J’b(ëy™•ZZHé*¸Â ¿Íâêwá/½ÌŒÇº°öÈØœgï»gt-ú}?¾í<çÛÑGí“7æéÅàmý²èü.LJ¿€ Ä}Œ!¬¬Àïöá!_=2¬ŒUZE^Š]Fã’ŽøI|ò?OFLéø&÷“\Í{ò(N‰›„!J|+ bæ$êÿK¬¼#5W0õˆ¬\LÉ++|dÅPæD·'f‰døcTcœWV"§ÚxÊhB¥(V˜¡‰"ÅqªÍ©"£,RìLûLN"—46È´/JËÄ„Aâv:ëðˆV==¢ª#¦©Q&2{g&#ªšÍÌc»]”!Ž-ÑGÉȪxlÕTøÛ¿¼líìîa &ûÙf¹ªÂ œ:Î=»ql Ñ ýÎhm4·›I•ƒÙ4Æa1ÅÇ ùåýk›‡O<) ÖÖ“SKfžfÊøb`ÔÃ~˜ßm±M‡Ø1SŒA£²&ž˜â+†0CÞexpcàXQ<¾ùá[Í mH6mq¬döøFkö)»q5ÛcF“À!H úHǪ́⭚aÚi¬Ïޏcó6ËÌÛø÷ýøò+JV`¯±‹`´ÛÂÅ5V´X°°Š¡å¨ø×Æh}Œö‹«!¦J¸ôÉKYÑm##m¢h0åE”1–[° V ÇšX˜åmÊÖ/‰ijâ̇y\.†1“ûÚÂ󵢃»Ç˜ÄY8®­á'LçÇ^ÃÙ+ÊÂq'ӄɪd5#Øp–œ!‡óèþi±DMÛÏeË0rï sù_ Ä”Yp<—-¸ Š,´è± ¬oËá‹”“8ó|@†¦s|h¾9ê´xÙÜGcòÐRì…<“N¯Ý‰ŸôÁ°Ç&^¼áùCÐâÜ,øã{ @s´ t6 ób~ÿ=ÅÜ÷_¯|v‘1›šøš†°úêo_WQ1™0|‰¾{åÙ‹¥736^}]È 쟽7»?µê¸ÀbܬFü/O÷ŽÅVºÆg]sOqËvêp†IEörgSáå‰Vprgˆv3®¾DýE7÷Úš±Ì¹m\ý`TE«AÏ…ô8ybp`ÇÒ7zÙð`<¡J]'’o<{nÔþÙ4̨kÑÚŒÖGöçõÙr2‰U(H7¬Øâù­âUFk4rª„Ñïe€Dä{d!ôA¤—aÇ)ð"†‡öïÚó¸;´ßàÕÍoÌׇn~v0ø¡^Vv~e£Êk¤J‚*RŒ-ên<¼Ó8¼”ãÂ^¨ÜPRŒ*ô¦FÃ…Ÿ±^æVL·dUÑÌ+Ñc“Ù& `Š¿™ ߘ¯+mÖÒ¬T©¬çe¬mf²·LºŠ9ð"ÀßÂ÷;ñÿbCšš:vÎ,çϲ}ŸöŽºgæi¯{§w¨Ö {ææY7-UÉüÓ{ Ez[?í€W“ÎYñͼ++;!2Öa"nÌ@=‹Xw±‡©f"uaØ“¹ ‡gÅûX¼žÁpòWþ¾’VøT¸CN¨ñ™º# Z\X½ Vúys‹–ÑFäÄ™: ÿ/’f âKÆ$áòégèPíI÷¤±£••`µGGöØoÞVVÖŸ?c2ŠÆø³ãóùôþ­3ÙApΚȆ# R|ýµmcF°ý˜“É‘x¶?wg8ÒÂj_ìn‰¡…JA–‰«M–nÓľ^¯_÷÷-ýÅ£ãÞIÿ ^ü€/VQ—ÂÂ?à#š g®72ê«€VdžkÛ4ëõ¿z…o¸TVWW_ Wk ö7ƒO ¶7__?s¨`¾1YŒgb?…ŒÈç P÷Þ.1žÜ™ŒìÆÈ¦¶ŽyW„)è€EìF·™çž3e!<žj´"jUÄŽÐÊA' Ñ“)4,I^]Óø­ŽÚ¶¼öomX¶Y8«„Åš;™,)9?ûÈÆï(]‘•`/ëÎØ§|ѯ(¹síÿÖ"…Q  $Î>þ6øò·V,gþP>è,”±R"BL÷Ù|ò¾ ^d…*Å0y´W¸ŠÛ°ïa*ä¿2|—º£ Å+»µð::˜;ðƒõÊÇùÝè㺪ïVÖ¢l}u®òcG8ö.–8©¦´å›ÛÔYµŒö„ôL¼X3*¤‚• ½cN¡l¯‚EÇ—ÑL ÌFE)V…`§|ÄG»5 ¿Uöú+ýMè`rÀ¾û®¿2aù`ÈêµòŽtœÆ—þcSlé¦tY]o® €W^*þÊXÍZÎEQ„kr.Fï~õ¿ƒ7´]q_ÙÏ}F‹­’ÉáÌeIõcP90A&~ãþ™´8½òêU@Zpn2²@O®b;û,:­fÏZÙî2Ïú†ÙݳømáÜ<â?>év#럌Ü0‹{?Ó+ƒÓ6_¤0<¿DøË‹ iøKr•–Zó}e` #rS˜óaZs¾§`ñãh»2‘ŒÊÔ¶fìð¿ðÃòY˜´“‹ùQ"'Í´”{ì²N§;nvÒ·»@CvO»'‡Ý“N¯›Î¸Åæ¹P$HÓ˜x îéÅyˆä} íÌâ4æ¹à2 "º1úÇ0odØK:ì#Æ%ð4‚ít*|Ü.` ²WìÝ;ê[Ø»w °þÁß;lÇÁð{% V»· øUËB@UÇP`å\œvbÄÃwâßtþƒïY`õƨàYõ®¦gÂ"!ÂðÁðl ®žt%|Z ½-€rl?¬÷jðØz¬Ó¶™š\t#½“ÿ2¬€žLÙU^þò ºš–­GÖg W`½Ú.Áá™7ðvÞ地 Ê&äÞ,}Úmôãi¢)BèÂ1²e¦Ô¯i{ê)Kž‚ùY0 Š…y-1m:æþ@dîŒ'CÚ Yo0˜&Å2FËéôåÔDïÏȨÖ0˵=´pVSkÃfw*sžþ“íËpbŒÃJ3ÜÑd羦ŸPZ‰‡¸å1§œ5(gÊwä**u£B¼#ÑÁáÓºšÇrÓñ{É0]ªµÀCÚÁU HÑpoÏ$ÃQš°Ÿm[I·ˆDì"âP¹x"šÕ'H_á‰l0½e¯aW ¥ÒZ*¢Ýxi€ÏÚ6hWÂq 20νåîv æ’C"¡×éxY2¥B?>Dô¬%âÄáEq|º³j{}v˲ƿÚl4^àu¼«U¼Žw^û`|o4×¹º|\ák$œ¨/g¸&÷­É>­ãÙœšnшŒ+ÌûJË¡ ·Vð]ULt=»2¸¾¿Š~ZMT@) … š.Žåˆi ø½êXÅæ {Ž:É"×r ö‘1öo±œc [ØÒmŠyŠ¢-¹thrî \"‰ÕÄùDK)\ç0¹‰õ ¬rG a^>Ï7Œ:UsµJIØ8’» Y¹÷n]—.ÿ¶…xee)®°»S´ó5›OñLUä.7PXº@ç•d¶Åc[˜#4DÆ'â Ø¹˜pEˤÄ7;×>e×,",-bŽö‡xÓ#f¢´qx¶]$†¢í[ºßݳ8‹ävïÑ jg@/°k­‡áxô8¸„¡el[ƶ±cìFb(ü¯ß6]ø‹ZÕ©5o+5ã‡L¤”–“ìo%V­¿¨:f0òéiäm«yKLH,[”ÑÚ0Ö¯Ì@›1ÂÖŸñAêÙz-]Û_›ïüR‰ßPÝ9?_ öõ×¥»°¿Æ9u£¯*<x:^ ‚.gB¯5†âŠ·FÚà´€g.¨Œ,ÿvê/F`•+* &9ë¸ô0ÙIž½m°œÂ,¾ó׿†jDÙQ—çž;·½ Åß……ñØ€úY»Pcù8CZ 댉ï®1íëÁº}ÂqYÌn­QàašÈÆÜ ¢QMDƒtÀ’ïÇÄVý &¡Ýwç ÷kPhêÌ–>­4\²ø… 9ˆBÃBaf²¨©º(@·ª‘xÌ›dŒI•ƒ‡ÃBhápL KK§ä G·{3‡G6:†”´Ç ‘^vaݬÁÄ3Ñ9þÔo¼{ µÁ@×Xfsû¡l†>e:/®Ú¡nIOˆ@2®íXù`h»¯Ú3œ „Ã჉«6œª!G÷¶/â’L±MèkèsŸ’þ=ÎïÔÿ<ÜÃLøwê?øì³ƒËËá|Îßà‹D»ÍÀ&b7žû ûÓBœFX¤l´(E-p7·V”%¢•쥄·éŽHjnžîm­=£[xùâf£¡¡§é f³³>Ýæâ(š¡È0¢w¦sk²Ðd©'õ8©-3{Õ ù¦rêR\1³hù•X¥°2Þ†|v´/úIXàq°ÙOØ)c1g¾:‡wpuð¶{tNaÄcbÌ%ìyˆÁˆDÀ›aŽíy°L¥(’>aÒ“ÿ`D}×R€ï–$W°úú¸ûŠáÜë=§€!šeT`ÐàÏ‚\—üz­µàòJ³íøþ3N{¨šaGpi9gyŸ|£N©@Éø6~¦ÈUL¼I™„#»Èx;µ}ߺ±TìöëW'œZ :73—†zÔøz!ìOYðéƒÕ7ŽO׈½½æ({Íuø »BaéO^€}‰ñjÁlE°ø’Õ‹ýÓUíæ nÔé"æWlÖ šb‘ò“¢‘¢çÍ uÍL/#õÖâ,‡öµÎ$h¬1ÿò%âZ`1tñâ«ñ®"”Æxù*µÏ”»Æf#Ê0äaþ¶tmÊݼvíµ‹õˆ:m»§ü^ÝËÀ°é8YKÌsM»_æØBMž³uÒŠ¡5Öý»³lÂ;SÑ!GIôGIO”ðyî¦|žqŸf¶Ãó¨Û>ì¼1ûçI¯xÇgª<&ǹ‹¯P±_ùû(ž§3IEݤ<àì ¿g&ê~kˆ6!e@6â7vB]6¬)™`XbÄ‚/<›nzö'î]t¥gßcé…ËîîËÂ?r|uþœ’ªÂ’4š%#N,½ƒ–Φ?tíGwÄØJ¹Љx"µo÷kW5î.˜A—™ï×àoö½‚àP údÅzh¼^éæIV±I@§>QâÑêk ŠîH_‘¥ÞAýFޤþÏ>·Å튴lƒa¼AÞK1ÌðuúgkÂf§¨x4§E<á¡'^þÌâ—Ùøà#s»Ãø‡¹’ǶÁ.ØÃËöf<MÈ™£í1‹¥—M$A«‘÷‘V=|ÿcGléóìªöl•…ã6ð=¶h¡ŠÁ¯ãĹ#½ãˆ¦.öoñ‚ûm¦c„{fá9sãøµHŽNŽßÐwM·G|³ÂXÜTŽ+üBÆ,9ýõ—Ígx½ãG޾ÃVʼnË8`Òâ7öÌÆûîGÆ1|¥báÝø9¸ˆÔ˜R–m² ÈÎhÝtfµèu´´Ûî|‚â},x®€ü¨`Q‘qÌ8aX‹oüÌÆSã Œòµÿ¯½wïK$IÚ†Ÿ›OQK³‹8‚‚ÇvÆÙAÄnvP|D§»Wj„™Š¡ mw¦ßÏþÆ!3+ë\ ½÷îý´¿Ýi­Êˆ¬¼Ç¤»^)­Ê*K«×÷M6/îŒä¸Î¼Ð4çµjëz^ÉC~½Ÿ×3Ù¾$)„Æ”÷ž…Ã¥ðrr Ju™}òÆu!ý»aÞSwç€cÑŽð,F·lee!€ßd‚Ž¡qè6­Ïiíh“Þ‹Ü–¸äq’±.j ºÕ.…ö»«jñŸ7ß7«¯Û¹PŸŽXWé pøù2•S›ÛèÏ•s¦]¼‡ž\ŒqHQMú­ÿ%(¦b#·Â… P mI÷–ÖTvKZ2Ïý¸8̧hOapâ½Eëh¶Ø( Ô7Í,sü8y½öüM!ÂF§â/õ¥ÈΆ)d(DtT¦¢Wqrx8¢<"î䀬‹¬›"êÈ®9.‰[?WMÙO¾Y2Arf]°.ÆYv“`KK‚Íö‡™wû莗ñ¸nÔÞ¿&ˆÙ·žPøQ,yqËá;  ‹zR¬òŠü7qÊqK ŽS v¿—*Ày¹%Ö,ˆÿz fÒОÀŽ®Ó[›Èèp>p0%Îì#»ía¯ÈÞ.ìüñ þ˜G„:À ·‚~nk™¨í 5:ñÍì¢ðBZVѳS þà[¢L–8)½¬jÑS°uvAAc»ÈþiÒP`f@þxåÀ[-ø½õ°^æíEÆãDǃ–68Õ©1žIî(éÑø^Ɔd ö“”2 El†ýñ¦°ZBk+¢ƒûã>ü¾&ƒ+î:3%Ù$qá&ߥ6ŠO_@Ȧ»[Á¼Öœ‹*-äù¸1Í›Ÿ—5пqòׄ4ù–µ†dsâ f8ûGÑ3œÉaôZò9ñÑÿ"Fa<§œ :'ÑÖ—[„qÏŽ»«¤Ô9¥ÀâP…±Ï®c¡‹m 0XñþÄU6Ê•âÆîúÈéÃ~w£\Â×?>‰IyK0qg&9;™š™¹1L¸’g\o“ÎÃGåL%wX%Ñff¬ Æ˜ØŽ3¸g#Õ3£7ÅKî_¤#hžFY47n;8 âÌB ú'øpշᆿ*jRPÌ‘YàˆÛ§` Å9XS¹„[Pc+WüX*üÞG;é|Râ€V„îëO»Ó7LÙ¹·Råá/#O ñ"w.¬!àß¼‚®^ùVóH÷‘rëô€9ù¶ÅÓõªl¹€Eµ ^Æ6LGµ É#Ù&·}£GoãZ§È#šÇ ¢9§k`Üø‰÷IŒEÉ$Ž¿^êŸT&npÎ/›õ¶k]Hã9z”ñìGg3åú£y ×ßÕëï.h?‚çx ‚,ò¸Îð»¼"€†3GR¨,.C÷È TǤcñà€tI³)ÒÀÆ8*Ó &TÄVg:|$¥ *¶x¥¨8 ì ¡ïOíO`,“—~HkDŒcÈÍ¢|/6ë„ëÊϲî0g0 w»ñŽ/ç)Q%:ïrZkeÑîMžüe)$.+,L÷;CÛ¹ÖÏßKç+W¦¥Œ/lv'n„àÄwÓP#æþ–GÀŒíÁ„vÐm[&DíôûS ”=¥U·9ÌŒýÏ”ÃØ]TÍðe^Š£/ò±÷ÔFV¸Ð@{YßÔíZ“™p?†z`ÂŽ*†ívÞYÞØ«ìá› Ñô<`_Zu Ð ‘2øÔNdá¡AS[?5 |ÿ’R¦‹l" b~:Ê+tÁ%PSâ6†Ëú<í%ù+óV4ó’sM£[=lŸàsªØAöغÇãún9¨¶÷ôËTþ6½“·ôôÅ6ÀfþV1~ø!ó5ŸiÙç/ æŸz› 2=Â,§òcãWóÇÄšv0ç©ÌõÔˈ짺‹ç§ePŽâ]^º1PVuËÁ; C‚ôÒÙåú!ð·lØ<0G6È>tN4RºR¾mÚHÚŒÏhOGÒñ4C²„÷˜ø„§]€©¶¯L øÄ¸G#k²á”ÆÖlýÓÀz(Mî'ô¶·*?f2gxm€мæûE)O? ÛIh¦Gl-›*kâøX^tЩmƾã2”?†ìAöEÙ@â8Zäc!Qä#UÊåÖDŒ‘ªKÎu%énÎè |oí ûjµú†“×Ï­sóüDnÈ/ûh9º¯9Ÿ|Ö„ìwØ ‡üáñ†ˆq•0=žCuz6^í“<ÊÆ(ºv-–mP+|´ü‡:¸ðËt§£ñ®§½â2k 9[c:„ÆvbÓ‹# Ò%š4 {öØ€ò9•7åô%Ppęà ¥ƒC4e¡0Í$:ÖG]JUgH±‘4[Žrxu%3¿Kc†1ìºâ½þ#4E¤—š˜|—¬™ÝM4B²†jšï»jžüZ z0È"2YôwÊÈÏÓojQI(å¨DΤT6lÊãZ>ehuyø¤Œ‚i¶SЗ±õÀ·–"ô˜–ê¼£_‘-B3áýÝ!Ý!›ðýŸÙ|œëV“м<“yމKG8Í5è‡s%–BV›½­ré¹¼_·Ñ:a»mÞC›oZ-ryaÜ5ŒøÍ•óíÒ³l:ÇßÊäM6è“Bøû¹2ý B>š˜]ØyÎÊ‚ª†§\:„ýÁz¶òð”%1È þÆŸê×ýUC^Àx§¹ÂÃÖŒêÉO›ýä#‰‹Õ¢ŸB&Ûƒ±/UƒŠ2Ù®«1®€!"wQµ·¦ŠUyåãý†«Wìö!®ÿy®‡»&°I£«0Ÿ¤£Ê?äuN¼*oBFðªNN(Ìû¬)¦‰Æ™¢í[ž»¹Œ-¡#AA.Ú@ô  Ä=!„¦°¦êË_]¶ëþÏr <Á+uÃ7)!­_Ó¥ylãñȼ8ø©ÏëíË&º‡p¦/èßÙ‡L/Ò#a À$‚@or¾tÝî¹`¥âh੪⣅Jb+Lz` » ËèA7ìÀT7ØVG•Ö³³ýÌ‹Ÿh¹–vŽ#^ŠCâLéìMëôý¾zNöåK£¡ÁßPìtg¬RÞñ½íà‚¬ Œ9¹q$ÀéRpª¢¥ ¢ñ%/N™„!Õ›²/³×‰ (†­eßst:B§;L}ûš \‡àP‹¬O –¬}¥r]ú8ÀÝ7´¯ÓS‡\Ò‡ =¾¤S-÷d£½Ñ -䃈­]…q¹Vc|-Ÿv½»âߌasMtz™qÁsÜćí£ÐÞ{âž]¯FÖ݇òî±ä áÄQÊ»ÃdgN£ÉÝoÃÛõ’ÛwCï~ö:+Ü„´Q€Þò3¶lƒ–ŽÆÙãú¬øºk‰R0.xé¢ZáÔcðÄùÛ_tîE“)•Àwb¢Ê×o`9¿ÄDL¹ò¢Ä9 @°7a¿ø%WÉ~q{+?Õ¨q[¾ÌOlZ:û:OT´ÀEO3¿Ý~¾öÀ`‰êAæ<¦w]UVÛ+4²yjÏîvOÄØaÏèE6'XÅâÀ)›òÁÂÿfuƒWû¶.IV³|õîâù¶z_(/^æ-¶>èU­†<¶5­ ˆ`6ñ,•IËÚéëf]\«QF;ò„£?M´0 =BÝÏ@jñõ¯ iÁ¤¤ªæS t½‰!;~Ý—Äk!šÏž&„œû|m f0÷ù·ˆFáf§{o>ˆðâ œf‚7n‘'ƒÀjmÝ àlznM\/LÔ˜ÑCo$…žØ0<÷*v»ÅnÑ&«*t Å%ªY3[OÑR"hL•ðÂg†ä$Ã+(¹UA }×sÞÁðZÔ E°Óì¾Å{¨ŒÂ%â]³kÚ^´N<–º¨S7lÜY½Âê0¦Ö]õجÂ}f6£dÊ}Æ€!ù&†ýÅé8\Ài€ÍWÊÈØDmdDÚ.Šu™«BÏd_V&ÄÚÁƒŽ»ÁÄmE[=«hh7=ÀYC{ +ì TÀ["DB°ícéÆíFmêÉî¥%2µ<™¯æc9ÐCÔrö´VºÿoÓvøÊ?RŒ¦‹›™œY«‰bÏ€œ¹$t&|S?tf,vf­†«ùÊÌž˜ÂCv]ŒâgÖj²:±”¾ÒË"ü&,N? é3ª0ê³Ù:­iÞUjLóyZkÀ”Úl®†ÁO‹éDáu8¥ã˜#k_dÕÀC›È´oh”F$'PP·"7@x×¹¿c® 7ª~LP ,`Π' —Ó£o ×^"§ÇËpM¡¦O²:L¿6‘æ¹}s ,Ì~Œ.ìB3¦bJbÒ+]xƒ)HRTü8ß•¿5ð¡Ä.`'Òµ¾áL"…&KçV"B“!yÛ éðî ŸÉ‹­/úº #ûêêúú:{ýò:wý·ëü5m‡w77ÂvöÞS‰†G·ZvS;\6ìEÇâê»6®_Ä×)˜Ðuñ¾‘Lón]è Û`Ðy…ÐÆ9—8 ’U|óÛ[q_%ͨTžÜ)¤c. îÉ\M›"8“‘b‡\g‡ãz`tÈo„Àßß³ÿ_x‹xRØL{„kâ¸JS‘Q¼2(TA‹ÍX±úÆñÔ²ðX€38â3Nô…$yöè Ð#£A®è¶òxó³Í‚Àˆ5K¬·ØEߊkø®‰`‰Aº}Ú6)6Y=}*y¶-ªèwƇ!˜FM\Ó<±˜£ÇKä={`î‚xµzCÇïä†êÅKü½A?&Š_)óB«1E…¢‰ã« CAÞ^Y ór¡ 4BoׂM½Àn4îŒ1‡s²× æ}“‹H¢z;µ?ƒ¡#½AÈ¿@ÁÃànѽtàš!.; †®{¾žGé…ª(\ik£3t7"RS]²VŠ1bŽ´ÜÊ,מwïqª±jWÇàN#R¢‘dQfáKyg60dÖ™’¯fÅ™§‡ÃMU¬4!©Í µt‘¯5YÞZ„|Ý I’÷Éìˆ91†½â…a×À8$Ó—Æ?æ®:áy0%¬‰QV`îlIi%LYL{ðu!ãZz­Ä|_žø4#Þü? 㺧b…mŠ“ŸÝ£‡ÆÀùøD¬æ_2¼­ùã Fì~TIÃõ35>\W§É<稟´‘`',é‡(|GH=‘ÒpuR‹("<§—Zt8Çb ¶³‹AdÐ'±`QEædУÜíŒÈ"ÔÐØÎû>dTÀñŠü.FÁøï=\¾¹¿Äá<!«¸º'N˜7s™¸ÃãÕÄaê"]€¥ñ–ÇWt«»Ÿ[ŒÀ­|ä¿Ût{_D¡ýrPÎ’F‚ÜÓ0ÞȺ>½lðDfgòí¦cüëþO˜pÃÔ*ä$Lõ®sØjƒ‰y°Á‡âc;â}YºƒD¼÷^?ò¨np†(e*©0OãÎz·">ç,„¨*õKkÆ©=n#vA«M É)ì’Û3kR ÚEÂÒŽ ÙÎu”Rá×ǽ|€^½ªì[v?­lîÒÔÞ•ù!¢ÕiŒ¼ÎMpüm!½â8‹š¢¨É%MI”çõÒ1çwt¥UâKÞ_ø=ÿ¥ÄŸ†‰qA!ôm.¬ŒŸUx!ÏÅ2SA`ÀõN/¯8ÆÐùË„ÒË)>^ì Qx¡'ªqÄŒ¡#ì°+¢x°àùkh`XÂ&ù` R%V̹Èl@Oà-{fæéï¼ë>ßè2¯â‰•›Ì‚¹øÆ~ ¨tI:¢a ɜaeŒyTgìqÆÛÔvœ¢†‹­’Œw1eWcœ<è<óÞ‹]zž#î'*NMQÿóÑ–pîAÀ|Ćó¼ð¨9Ð G‚æÝšŽ‘ÁƒNÆ~¼Å‹l×¼õQÓ~DóªêɪV®Ô'¤!ƒ_öÉþó|ay Mm®ïY_‹NVØP²§ž_Ñ5ÒXø¨…ÞFyfÄ3Vš­ÍS—¼¢ñLIJÑ÷”FÌ:äuV¦„Ñ£ÜØ{µ:|@ðG‘Ôµz/HŠ"C.ß[R™w„ÙŽ†e楡ŊûÅ‚tqÌì7"ü²EÎ>7Rå±T*yÔ–h]>—û~-B¾ä90þ­•‡:‡6b áT%g ÐÄGvvâ– ƒn2š1Csé°™.@Ø!—ƒòýñ‹z,rH –ghL:Ÿîd`ŽkÞ—äÓ®º¯1¡øÞzÄûÄ%:›ËÁŸˆÐ‘Xê’Ÿ¡æÀÈ®? ›nI6‹ø+¿äÈ‹ò«½=#Oï WzÔ™±¿6çj§£¢»Ág«Öé¿<Áö$ 1R;äItŒJ4-XBŒ%£K/Gò<ÝxÝ8BTê1l¸»³5Å‹ VÞ@{tçó„ÌÏ~>ðYzcÅñs{›[›Š—2ê6·÷öTrh2|>›sØ|U6^í–·ËP´ò+´¸(·Î²L7hny½ÃFNv&‡-qM ÒŒ†L‡"•øèÏvÇ ·¿|Fß¡ˆñ9´©ôVÊ90Lu BqäLÉ 1Šs8 äroÁgp$9éïeÂLѨeŠÏ í.0O)I¼„€ZÂcËëãˆcøJçxŠAv”öƒ[¨/ õ£ Edã“gó{Œ‡Ø*Â캇ò*Ä5¦OPÅ¡ehŸÐŸÞ.ô´_y3Ûù ¢zéꃱ›„]Á_Gvïµì^©îõ}Ýë/ß½¸ÞEtNè ‘fýâjJq)Šõ~pž‡ÀÜ£djê7WÖ50½4^ƒcìG¯ñ-!Sª .¦ƒ§™Œ;DÇVFÌß/Ëù(â ˜ÜQª*/t±ÜW7ïNuœîà•¼8…‚f®\Ì©×_dv ù„n[ÔkuêíÆhˆBô”ùI›…{à?bêÃ4P/Ã{g-i>Í åêÖ‘~{î–kQV£ãèÝÞ‹ù‰í >KÈ0ÏîiÍÊk«–—¯ùdÆ!|yMÔãŠ(!ÂÄ™…\“]€1ºdq>&ä ¯öQ´`ÙR‰TÊÙPù–nsHf7ž¶ðÿ[40øp]ªÌÏðð›C@Ô”E€”¢ïÑCê)9>TŠlßÈt>üÕ¢ÙRlÂ@âŒ,>ÄV,Ý*;õ5í£@ Èt«5Š“)æ†ý“­©"üï Õ× 6H.D)ÚÇE²HÏ×Rã÷µTæåñ´ÁÿÙëOu,ÿ ‹PãNSh ÏÊ q<•Êj<§1ìß×pÅ‚‘„¤ZQÓ± ºgÁAÅ9Y'.ðb9Èd]êrC ©Y"°ZF K9„çåŠÈÌ%îý‡ôÄÒ/÷ðK]ðéz?ï^»@Α9ù! 7“Ùã± SÇ厡SyWfuÇø‡j¼…Ñã>Ð)U’®Dç¥ÂôE´Ç¿gbN'˜21°÷Û»žµ‡j5º ‹©2)ˆtzš¿4…÷Ùœ7Fú‘ßZ¬¶Ö tÌáÙ}là–4â Ný ÓÕ xwáQ³R+è‡ÍÆáÊÕèfV—+–4òŸítÍÙÔÄjÞT©›W7ó mreöà C–ʹTX sŒê ê!êGqlcŽ\r} qÕL¨ãˆzzl0ÝVdÂ^Tä*™ÍÊýÿ»Eÿ¥$ô¹ÏùGL{*tuô9 «˜šš?ã‘1%¬ ªáXË\¹ŽË4Ç®³×9·¹–îfYC^·£‹ (7ªVwü'›yA®]s£-Åž/^pf²¿ÁÄdð,›- ž}ñ‚®<øÕ;h¿x·rÕå'Åáª(¿ê–.OzE ûŠѦC¼5rÛì$ -Å+çfãôç@¶sån‰_d¾éJn«@Yίx´«»kÙ«ëì÷tIïÝñža%‚¯é ýnýž”|«¤.^¨yà-~ ˃ïÌèè´·›ìúQÌ`£{ [æÍ Ð(?¯š¢(gmœvx6ùBŸ¹ð´‚~vÝâsåLšÉ«—ÁHE€[ŠÛéA/××óŠJË‘…‚Y‘l<+ÿ&ùB© Ž¢ñ¬|#8e©Ã±úäEè¶íŠkxMc;¼¢À¶ŽØ¬¦h/¿Á¯&1ÙeŸy´äP}TizQ€r³‡ôz“Rµ¢éÞŒßÜÕ$µµ|(å©f¥–õ©X÷öЬ(n…òrÕ<5rúì6ºŽk+51æ£yA`A˜\N3- ìÉÁ×@T'mó¸^½¸<·”~\µ¸Üäðú°~ÜÂ’9º­…êQME¿eüáÈ÷GMn¾L-Òï¬\™@Ësûð²Ñ!0Zû 7œa81òw”úAÆ’¼$iðš˜Z\0Øé›j!·oQ4ïQLH£ Cýâò kjQ*åBÔÉ}=©¼œðMWR¡]j ¿W­bgVr/׌ ž°R›ˆ_ù¾(uUµ˜ªªáXÀÆÕ…JÿÁGFGž²h‰ }ĵ^´â±þ|‚Çá%%nÏЙòÆF`àN¾ÒÀ¹uî±¹“ÿù‘ÛÝÄC¹K0Û7ÔÄn^”$÷pöEîN[ ?p±üUyÄËn¯ë§õó*X%%´FÖ-–E¸æ—Æù\ÄiÈ$&*[nGÍzg6¿uœ¥›µ !8þG½ã‡®á_X2ÙÙ *qjc}¶ºF àÇewí~s °n(xØz·ru.0ê8Ú+þW jDü°ƒìu&Ïåó*—-ôO/•ßlh/×"HøÜͧtõ a塳$gW f¸i• œŒò7,e2—ˆv_ûjãÆ¸º’A…7xÀP¼_3ŠEB?£>q£O……s1N`á_ÖÜÃPUø“™ÙGñ;RÀ’c͈½pýbBrlÀ%Tà±áåX±‡=Xú‚Wgý…N&6‚Ú‰ÄL™sJcW†t9ö‚ɉ1Xr?–²ò‰†âgR1ŠaðÞ¾GÆMAÍŒ«5=ýÔrµò¸qî ü€üë<éq€­¤bGCøt˜õžÑšÁ™ªA `¬ÀbGU'¹%˜5m&-y‰Ãh¬L­‚Mq|—Aý`+_µ:_’ õ¼‹‹ûRä9šÍ±4e9/–d|<ø DØ9à íy&'g6j¹wÅO¤<öÈKÃ?ÿ4¼mLmMä–îÑ™Úþ™ÑeH…h•ü“} ñt¢(JüôÃþOGóŸöü‰W•¶…ÞodDKDFÌ {;åø$† =f]>k¬™k†½ȇIâÁJœõ »‚LLQö€®‡è,ñc :|:Š–ÁUÂJEh¿ŽSz‚ù†~ÀÄ@F©KgSI×ñEé“á&ëkz›$ ݰižÒ²{]«yB5n£…}~ä ëqŠä|Ê>šßO•¬sè¿ÎCløô&ii‰Á²´z g’÷>'2ìÆöŸù|A{Àìý:dØr]PŒ=7„?·œªAÂ`Î8ÆæV˜~™@%¸ÚÇ;\±Q9ª×š+$î{«‡³{7¹J*‰¤ƒ‹«¹d &Á“tW`ÝÔd3½%NÊàBC×G2E‡)ÊsGˆ—f[^sµÃï-pÌvÝEkòDù¹€8)s\ ]Ñß‚rv™ö|†{@×IÃÿñ– DÏqc'‰ÐËDr10=ðdHȨœìæÝ°Ó‡=ÌfÖ0^b¶Y`¤3A§kÂìÃ{%–RÇŒM˜‰ƒ>E eØÛl ”}`E€.è.°úS3¯R†Lå‹7YÌd¥RLJôýêih I]ÈÒÝ×ÊfA¦Äñˆ=§öL¤-!Ÿ’Zkxçzb ®câ@“îfí­Õ©bNtè šÆÆ;k¬pìþýãTEAdË´ø¹D‡5ÄHBõ4|ºpe@@T Öã.†v:ÀO²by‡‹:¢äýTÚ=ºx„Ê$¢ÇðPä°_âAþrýÇÆZùú‹±ÿ·œÿs#¤û,¯!Îqs³*Gúº´oÈþ Ë…”Úç$ë+äÀ-&'0K†P‡!gÙ—KV+%¬äÁš²®šÇã$‡`@XmR‰eØ=?“œÚœƒ}l JœBS- ßftj ëçåt®e…_q…¡±¦þ)omüÓ¯¹R–_ÿ5·ÞËkÎÖç‰àá¾ÿÞXÿÕXý z¿ö§ýPëñ_<¾’ð)zƒ;Íjò–͇Š-©H´ ¹>ósç'|š*>kà*w“«èŸIêèmÒÑûìWP@êýŽû~'€a±*U‚׈5ýÄ/dqÒîà"V°Ç)oÝö„îÒƒU-ºc÷rxÒäów~'²[§?ÿÏìwDºü '~ÁòYV>4`í5W)Ù %ÆÎÎ]"ñ+X]£ÉLoùàY­!¯¬Ô¼Úë;¼~ÖˆåG§¾n2&G!Í«CR`\8ʪ߯7¹ÓñZÓªÍe'u~IéU‘n ™Ñ§D‹SMj™ÓEv!»å*Э0ëSÀ©ìÎVŒ‚ ›Ú> (x˜Z»¡¶cZ² bõÐ?Y­>[§÷6».TÏ'GæIõÙ¬ºQ+ž¶NµjÓ|Ój_Hè Â!à¸ÎçÁh>2†Ö¸:3¹é\Ø» où"Ô~tÜÙv?áæ–b$»£ž ,$ÌLà GÄàýó¸P=¬eÔÕ2ùx™¶Ã÷Ë#§g;½ßú“‰@ Dw.ãè¯ÏÎÖD@œ.t‹…±¶ó ¦Ò›Í1hÒÞœ¶ "éÅó w«Ôp¸wºýÁýœeÑÕ]eccø}D/ dDgÛùݦ¯&„‡±àÓ›cGŒþоuÑo0[o]DM"’/jd é^þˆZϘ~G0âÔ 8uˆÈûÂÌÜý<+ßÐq>(W*{{ß3»råg+dX)ÂÃÀ|ÙÜÏÕ˜^"´1ã½™O{úÈ 6±:÷TL§Äh `ÙáÀs±P$ MIÐ5¥Ç z ưõÅÏó/EÓؤ:6Â}Ät¼Xþ^ë]÷±ÿ0ã•>æ;|À_ºV¿ÛÕÅèí`üêóúI]ï/J‘ƒbT,Òã ÕsøîÓãÉó n#û9ù 9 `™åÚèO‘¦•C—ˆ{"»ýÖTK&¤6¸QìS«haQººŒ fñ6×1æ¾Ãå)6ÞÙ»©ý/kœ¥ý´f*²M Hf‘‘~6À´`¢À ± Ê&Ê5V_^þnîç¬lï|,Èn4h Þ#Æ…ÇMæèŸ 3…Âè°.‚ÉÔR×r(1«§À¶T×q*õ¾±W~U1VÀø9½X¯ü¼þî¬7°´. Є™þÕO§sxÌ;„]ÌŽY”Áo>¦Ä(˜iÓÙÓÇEêëŒýŽíèUVñQ«->Dï£s¯‹I•Ÿj b6ÀçÓE¥MXjh©}„Ÿì[í a{iïíĵ¤×™Š9Ó›vú°J ñô;ºuÈ·flÍÄoè#€¿Ê^*ÈÈ[ ãd(K»ïͽÃöÑ@aÞP˜l>¢t ß8n­²M?ëy(?:Ý™× ïѽ<€]9.®BŒx` uîÒ²h >šˆZ”9Îfg{{sçF,‹¤¼œ±Šâª`À(±vö%âh…÷ðÑpaUû— h'ç }i\¯[–&^56?hRCºzðY}ÿ·ç¤vÃh+;•òÖÉë}gÚà ­ƒ¬Z´þ+Cì}!n]{µ³³±§µÀv*šôYú\Òç3¨V{=qFxß)ÆGÓ’ñÖs£þñ£…Ý0Îðpך 5F9³QÙwH¬!èÙñ ̬,‹—H9ùØÙÒꚎWL^ö LÛ1ïl•Žû˜ï˜pÍEt/¢Y¯ÞÁãVÐÉŽ8#¥axDrn¦ç4L„­ŽÞ§Ž=Ö¥2ÖÆØÙÜÛb.ÑS—zî™[ŒBí+.w˜¦5b>H?CüY-¯"Wéå§ÝÔ<¢PÝf©òi{5VÈ6*[Ñ£xÿÔµ·?íÐoðh«T™?HéûÈ*ààEãE$ìÆº5ë’Cöz÷®Ô[wfó±¸ ó„ FÙ4úˆN.$…VZ½ºzaÜÜ`X:•´YÙÝÙ Vì }XéCç0^Ht¶‚æìéY( {WI¨0fØ`$ÄUŽ K5<©Ôà¡6¶"k‡fü¡[ülÓI(‰«ÎÄÛ¼JæÄÜèr«ØtŒòφ`á^ßyæ'¢]( ‚@ÞÆ¦±鎱kìy0I´½VÎý]ûU”Ô°HdÜ EÄ}QÍnÜyv W'üÔYq0Fàà<'Ⱦ%¸*a¾²¹JÃ¥Xù¶‰ÏÅî;Ã;i)24µ¯8™éŠæè0ÜÞp(GŒ]›ÿàö¾û`?ÉcÀСÉz&-"€ËQ%€ò¢ï/!Ð’–ª.ï²²¸Q[¯'‡Ú·Æh¹«ï¢>å@ ç€ý>å‹À(Þr’íÍb'-Éù ¼ÕÚQJ1e<ã‘5öli5K½—-ÕÚ©šQegÐcÞOLê-ŒÄ)Ct;±å¬}÷–£†whº=ÖdÇq„É)Šý9ÕæSNFt‘éÑGbãªXñé$⥹Xå´Å£~/ÜXKKŽ,ž4#­“*Z˜Ö1èk‚Rôú!„—Vç…Þ ± ЛÎÁçËà;çÙΖoÅä ?Nêȳ¿§ˆ¾+ï•ãîÚïÛtN†çeâ¬,ƒå;Kó>I{JWŽ»õ iÅ‚‡“>O ;{†.W6¶6Ú¡¡GÍÖYýÔl×›Ça—="ùúQó¸vêÍ ˆ§Û¤üdvoˆÛIWˆ=vÿ¹‰~ ±/é‚yÐUe„Ô³D ætu¤?ÁÐxçÀ=¼·™:޼µÔÆÞÃehwz&¨S(£†ÇÔ|ye Ž*ø¨jò°YñYy*lB…MrôyŒ«Ðs†ÿIæ N䮾#”èaœšëZ¤C.Ò¥X§ßÁ—Æ€Wd/.LoH'ÂT¨‹/®BÒ¨â)¯Bºò8ì-7ö ˆ{:›h›?Æê*M¸ñ#w£÷Ðøº8;f—<ÚýÔê`4±aa¹ÊMŸ\À ,¯:1Ö‘—`¸|G}µ[Ni™¯ì¬HXÆt3î¸0 +WÎýÐDAÆÏaÞãEîÊÿ9{,ìaÅ$â³Õ•¯Q®„ˆzCFB4ø9L4ßËÒùĽԘ†7(”-S«~„ŽüC÷¢‚w;¿ŽÀ‚d/ãñ¿ ðÊwM*æ±m¸/¿Vöëe)µ ò¾¹ý®Õy²2åß¹5tZ;;÷¢ò·Œ´•ÿ)c¤ $¥5nwݱyO;IEœUÔFñˆðgh2ßd3nUanÆÃÌNÄ'½z† ž$)Ð3K¹àáþtföÇÑ KÎ\&ºý^{êBt%¡g¬$ð %n‰šša™:Mœì_9šä²Ç²˜ùâÞ ^áš|qþ^_¶WXJBuãZÄã(’±FAª® õ¬çh@~Ò‘w‹¿øW ”f;àZâRF.¤ËÚônQ×R£.í•ðÁ×ß&0ÀOýVû$JðL5ÜY”óÌHÜP¯%Ò9%ìAýTÔ"ÖС?,ĺ !çS1¶`ªªÅ`$µ@ŽY4ƒèöøÌOo¢iw%)øæ W+¹¡zÛ)–S)‡|±Ç½\kC€zζeBâTüEëÑ^FÖ9ãõ§Ø¨ÄE¡7+Þ­RȆ&ø4õ–).nÍWË‚;Dú©»Ãgìòf¥ÌÝŒEˆ’Eí>;¯7Þ…íÉÙ¯þú¼~¦ÜýÒ òŒÄ` ØÐ¾nÔpk»–¹âù®žàÇä“ë«7°Ÿ2þ¾¿ß¬’Ú ãp ‘¾4šªš"jT¶]uw.î²( $C*oUð%]ÆT{=¸srãö÷üç GCÕ®ŸUÏ«­s êAk‡ñ_aºÑ1ÁSåCócª½—aëŠ8U†œ?Бy‰0îKpi1Ñ޻љªÍNÎ"ÉÌH*ìæpZ#Nxª‹þôZ%&ÚŽºn£ÌØ|nm8Vw>ÅT÷ ›”ýYtä +=Ô*ä¡F½fgN‚þ“œ8Ôí¿:Φ‘ÒÐ5‹ÿb뀇Áä_|wËwªÐº‹Ç+a¸4ˆÂ,ÊyNãÐOÝuú`ü‘Û¨î·ÎÀ˜¹ž5AóΤƒV“3_ˆaÖ%6²«d¨kì¦Vßú,ÏUC™Ð«Æãz¥´z]È~@FZÂú…E$*¨Þ‡î¨g\‡vÊsÅcüÉHŽf­w¨Ýè9ë÷¥$Š}ü‡ö ô':^bÁ¡çh%“Y]]5Þ²×ê¾àX‚ã'e%™aZ]Ê©ÒÓ⡈ƒ¯Wk¸¬ôæ8‡„¤ÓÅ‚d ÖÇ«¶D<.\7-:ÄÔFGqPHLh qéà2Ö½—s†Ãû{G€6-†’»Â…•üÂÙè/¹&©US¬¢œ ót ¦ÄEf„fP|°Î´GPxÂMºËA“OqÒC3ñõzì=Â`sï »"Èð©žj>^¯Àà®cܤMÒ'{ü>s‡7+a@Ĭyâó«ÅûA##ü#‹hšð‹${-•ýý¹ê¼Ú0é‹Cy «­ ½¸ê8Î|ÄÆWÍ £ÅWábD·ð^-0Åu+Üýx 9ÃÊ—Å) †ZÌaïàQfƒaÚâ1FiSóÁ@5{0ìùýô½aÑ/ η‹ l»]‘¡ˆ¤E Ázƒñ¹\Ó1ÔæöaÑÆð‹{î$Dbõâj‘o ä¡5Ö8´:ÌÓÊu;`º‚‰Å%Ñ|â —q zÙÅ+Ìl9úzümLéÙ‘¶ò×åíü×HJ<¨TÜ1A*}~^Ê\÷žØkq$NVýÍ ^“€U/þÇS Í6 !¿~uõ+¼âÿ®®_—®Kë2¹|©ÎØã×oZÄ l'­Ç2•ê’ `²2`Åùë5üüuý¯ý¼¼êfG?†¸£IµÑc-‰t ˆ¬î«Uòuf¿º, æ¬¬X»ãw-ãæYÅM6i‘(B!›•âÓ gu§H€èmñx#Âá¶ ò%Ï÷£¥‹‚äG¡¼˜nñ“%¸j‘í8êwä‹6DÃØ@ÝÇœõYè^ôégK®c§œ‰M`}öN/Ö7þ5Ú[¤£¨ мÑa[Ð&î=•™ F\ÕŸnËØþàû¯²õq¥ñÏè·nÄZäF©éî|b%u Hy&r•ÈÓÔÔÙè`‘‡¥·CÇBxI¦ðÝ uhßv&”>LîØ#‹Á…‡Pÿ´í°Â(~r}ªÑ\ä·"Cøêݺû}ÙÀÀFbÔ¹¤g§ÅlÎÓë,TÀ^=?hÎAÊSq8¢^ZÍ“-vx|”Çý\ƒþâ—S7­È åĨÔey…×í1Ê*ö\‚«Ø\ô´ƒ2 7½örÓg(7£-äf‚iP\^ˆDþÐä}ƒi+ÉßæÌ5Mq\)¬(>‡– ­Þj\T_»ö7[[eiAŠ˜L q­®ÙþNq –]÷G¢ …žAjVŸûWj;2ä©m!Ô㣧ž->©+›a®>_mà6Ã\z¸ÚÂÀín²%Ó“{ Ï­®E‡í£"⇜´‹2µ,Ì72†JVÆ#°±uurz¢¯„¨NOtÛ8^Ë”¼ºéôäÈ5¥5ÆÌH| v@ÙR°ó&ªìÁç/ãQÆw>ç-UÙYŽ3̒ɀ派Äùª!ݯ=0Æ£lFhY2Ógæl4´f{˪Õ;­jpÈJ·ëç-Þ‚éøy÷ÖÀ¿4ÏßP‹!Íe¨Cîâ®úè?E»ßøŒ ~´!^„[0z¬ÑqÛ‚bÇòfà•z ‰ª½žðÕktrù÷<®ÔŸÈ¡“ = L\8£•=6Þœ/ßÉ}ŽÓytö‘‹íËl¨2¦>{˜‘ö=,Cáy›„Àì…âôÏ5ÒÑÝ`9Ëãö7<ΣdiÀà¤ý¾§óxtæhDÐãÓËæšq2¿~‹ìgxöçàC<%Ĩ¿Gyj¬‡Á¾;<¢ÛNÏô‚G`ÄÐ-ç™ñ”r+W‡i/¤E#?[ñ¤VÒ°]#B `”É®y±ªaÛ¦!zOD ´bf+ÏÇÙÞ‰,k„ ³ø–죂¿Ê 9®¹¥7ñm-SI•X-è7ãÁŠ'Y~¯UÍ•³½$%¯VÙ/ É>ZÖDÛ½Œ0k { óá¶Lqõ’ÑØº$¿ev)£@m¼ˆ¡wâ®ÓAé'±wôæñ§3"ÎDÕ–/dÊ‹w˜,ÀÛ—±ý…Í8ÍûG‹»Å\ňÃáy%ÕòKãhÐÃ!'?RÂŒ5t&ÿÈ{óÑVɯ³.OΧ¢bc_ì$“× å‹¤|«ð8®½"¢OWidÉ‹ªˆfaõÚçÝ*Ëž¬ß(:£[{èEv7r$‘¬öZëøXBNÙhž¾\©Ò}ï{ñéé³»­(L'Dr(÷ù[z“xàw™•ÇÞ†/ŽëÊÇH3šÁ~ð#رIAs5ÙRp=Vé~Ýž€8ºð®ÓµRÈ,ªÚÓŒöü ‹‚ÇË3u`šÜ/š 8ìÀØø>Ø% €ËE‹à’ø[:äX+%ÜVR‹NOŒëë묧/ €‡S´„’gý­Ö‡ÌžÏž¯|ÓVO5–^ bÙÓÉZ¾þsMu†¥UϧÏû¸n(]õ望¶ÔUÊîÃtŸ.’Ìjšíàîv_El·x&…oøûWê­@CÅSÛ"ÛÁÓ“gÙÕ,Ý•0€í¯7paèÛ‹\í?aàö6C}rŽš˜ëØZ*€ø+íXm‡•·Â¿ÿÂÐÿÏÚ¡ÊnÜ¢?J`}/µ?®3l]¶‹Œ"P=i—ë”–ûv?èŒÌ\«Æ¶ðiXƦò`‡qé å¦õdT äÇ6žÊÉs.r’³$û’QHÎ’>FõVÂÎpèœÈŽ`0rUy…š:"Ñ’¼#ì»IgÚAÅÓR¤±>ÑNýKûó/(/ÿ{9d“ìŽÕÛÆéf÷/)­è˜ažY)ö†ÃËH©Ú¾Ò`…I¤°JE» \~û&åÐÜÍõÓêa³n¶ßTÏY§G‚Œ sÕ±MSšA±Š`޲ówª–T6¸ 4¨íÔMQ/Tkð°æ$Øÿ˜ð–žy-yš£-Ý₾Tûƒj'!Ÿ$ðe_KfŸ<>^ÂÅh©.l‡ ­ê‹êE£ö¤éÉ©y;Ì]õ)ESÜé³H­a>CþûÇ$íà†¹…1_dúÝòÓg‘öï„e’~’ÀwZ”}èôYt|¼„O˜> ta3$I õqµ² üØ&XvÝuu#Ø—¯¸R°Rgh¥Ö+|ÖÅz3Í)b¸RšP!ÔÏfÜÿ¿ó]Ââ‘ä„H/ÇjtþíCVñW¢°åiIÙ #ÆéÿÚ±›ÿö¬Q;iÕDu2èÑGýß²÷‘•}¥QÛŽj£°àfTP>Ÿ þ—µ3ïw¦Q§{íË×Õó³½Rôéž´ Û'ãO0ó0Åc ºƒ|¥´UÚÉgøéÔú4ðjí£z*áÝ »·WK-#$sÙ ®°Jø¸i©¸Ä~ÒúÅeº¶„zæU¥ÿÀLNÁ'î»’×ûÓêI£&RÒ¥bøvîªÏiRq‰Zg›ÕSÏw© ÝÈ5™ïî¦a²P9:ôTIÃ$LרŒ‚Ô%3ýàìEÙz‹sŠ“F9Ô‹ð‹’ËexÅɦü‚‹ð‹ÌexÅ-®R0á+î ò [g=m;_DD^ÅÊÿb¬âfÁl¢ÄÓ“ýÜR1Š’V^ß½«¥ÒƯÒ plR*™W¡ßŸ9¤ëJ¨ª“ýå08]Úßú)çtÆ-­ÈTf¼–Îm·gÝõï¿}ŽÆöä÷©3›zøüø/spÖ_¿iüãçæÉiëìÿž·/.yûîý??êžO­R§»/Æv͓Π.Ì;{z;è­\ýjþ½zU{syrc.NŒŸo‰*A Áfoçè Ñ&¼BD“ DIéΆkô”¥^+‚êÀ+<™ùà>ÿäHÒ|úÆt†CûÚRm“ Yfèàét½ñp¹ê ±‹÷Î$¨OÒy×bPû£~À¨©?ü¢zþDâÜè éê /Ñòm_<Çåù2Ÿ‘RµqHýÔO $ôˆÆæ51rp F·ƒ1(„%¥)‡ƒ[µåˆ{Ygj۳婗ì.'é[’˜œ†Ð÷ÁZrÈìngøúÁ¸;œ÷–$¶‡½'Ñ÷ì%¿õ`|g/Gy? —lì§Ár„“Þ’Â1q–žFO¦%¿%¢Ï.EømµúOX­À°]Ä“dt…S[–p™±&ÂeÆå–Y c¤3tœeÔ &ÆZ–x†™í“Èw¹PÅ+W°íÁ\sˆ00µL÷ScUd¿¼Üô¿£“Òê¹ç"£@IÕ·x¯C‘“—­.,P°»š Ñ@/8ë ¶å€ 1££Ä0ŒÅƒmˆ""#Á\ßZ†`Ðã»ã¢gŒ: a Ô1Õ<&QM†*“#“ è¾A`Öãè´îÈ*‰‘ )6±£\*WJÛÅéNy—A£©=ÔjY’lll”áøw{HßolØ„î‡ÈñΚauº÷Æx>º…GЊYSÛ˜tz=ævgϧĩ7èfçÆÈðßA ]À{ùᦶÍ_ªçæÙeû |R !\» ޏY½¡PR‘7ÁÜx;ëD¼Q|us³z]XÿçuùŸëý¼›šÖûÃÿT$×…®ÿsc1š§“.ÌáêêW¢X_G„Ò‘; ¹C¹C5r›ßFƒÉ_¢X³ˆð^°ÖŒ¾…@h,²ýÙš–T•åÖ¡T&õ4¶º–ãpò>fGP7*¢}?ˆX÷S‚xYJÅÐLžröQf…3ɦƒþ=L𻙈j§/8p´<[ªT˜5ÆfQð¾AÑûÈ ´.ömþÙ ^¬éJ®RÀ+2_ˆr‚ò9WÍ|ÎfÝÜÔ¿€#^|q*ÞdõϹ?ª_ÖI+®O~YÇ>­_þ`m9R¸ÿ õ.\éÐzöJ¹Y§h‚·§ÏPip„ãëåúÔ3…pV‰5í`Þ»©=byžßÊ5ª‹IvQaCï€ 1vÈË-!a¡ä@i˜ 8k,:!Û_)hÖª`ˆÖ‘;{:¢£´Ã*U,Õ|Óg*×+ßõHÍ â•ˆº°ítgÜ4CU8-%YˆªƒêLw‰¨T3¬ùFþ‚°^áæ¾(„箲<Œã¡Úß¶fкZ#ÌK óØ8Ì;r¨áUU@öÉ×xñí¯WJ×ä¢ÚzýåºPZ]¿.¯+üh_ûÓ°©ØÈh}Ò¶ß…}ó>‚ß‘j‚Îø¾>õ’}2Bå “ÐUwqùc Ûtý‡O èïâ¼d§KZ‡Áz| û7”V«ÌØQV¿34Zg(¯ÖtÐu=÷ L†#ø]݈¤y/³N† Ö’Yr â,ì¤ÒG˜€Þ!$-M(B¾ØU`àÄåÀ¡«@Jë¸È1$Â!”9eªeOTYÙp†{DÄ7ë÷9Xü³G´”a¾Ê¿ôQ)ÿâãû }©P¬ßÝÁflÏÏ(øï!c[u(ªBÏ'[¡\þ’šMÈ÷Ö?sèçÅøKk¬u&ÌØã×øž 5¹Ô×?[]„ůÖÐû´Ø8.^œ_ÖuíÁqµÙ®ë{a_Œ† ;“54,,rˆüÔŽW®r[ÐCúϾlš÷ý6¼Bü=~îA÷L±³ÛÚÙQÞÆ[ܲÄmîBKíï]œÞñÎí°Ñöú±J”ÀÀ’^D¾ž&ü¾m6à‹¸°…﫵ZÖ•š{ž6P)õº7Or‰»)¨Â°–û0a왵òÃk?þè¾òÖñÚᢨ3R¡nàÊ\•ï A?‘Ùû+›½dQC˜äàɇІ]­i-®z¿=­„!|QUp=¾¯så-+Ç›x¶ë yþad³åüOe*CûÉUÔŸQ%6Ýß\W½Ä¿rÕ%ot¼z$ Lª_Á)ÌÁ[L‹²¼?!_³zyÑ:©þ »ðr©‚ ao0-2ÒªCJT̰¨òQ[ƒþØ(¾åÈŠØ:Âî-OÌ«jñŸ7ßÅß^j­DÏ÷ÚåùyýÔm¬ü4‰Ä~êåvR­¦ Dw—²RÚyµD…÷1ÍîóêIb—cX´kç³èûŽªÕeè;#Ó8Ón"-Í9ó´uÁr%i—¨¶öþ5]ç¾MW¯Š‘h iöV!kˆ¥ª0ÕIõôu³¾aHuÞž,Qí Bª÷ŽÜÕ/À ¤zñ¥–¨7 eH…É"^ݲŠQÜ?,39“n^ô.6ŽUKÇv±gÁ*B^<2fª~Ü8­›—§ÿ÷²uQ?Z¹ÍÂ×Ùœø#Kȼ"ѤÓýØé[¸…ÑkQ6'þ ú_„íà%FÝíËäÈ£lUaµ}ϦXbá“F» ö­h6[µ*YvºtÉXÌýZµ3HÛãKŠ&H®oÀ®<¿L³x¾3çfýÝYõôhñ¥ž›fp|ýK/ux>³‘jSC°Y®¸vÉà¾w‰!hr^®MoêÕ£ú¹l£{/Ùfµx3°ñÓãGê}´Ð•`‰&H6i@Û"e½Y¸.k:÷‹×†¡/ WHTO²óÁS Æ“ŸqÞ.Õ†ÑG0ÌÉ2¤Õ·?/C†«nÚ9e› º(G­‹¥ìX$löìÙ¢Kæ¬3-ÎAš¦h-¥å¢z¾rÅ ò…hÒù$Á‡˜<òÅ Úú_Ú½ âK^ ÝV.Þ»¸††7p©æÇäÆyëZb³ ´Ënw ™Ë’ÎÇiˆÃÌ1LÀl»˜ýË5Ê`~iÕ¡p½ÙöfUBá‚sT?«ŸÕOk:l0ã’| ­dã(@ÊrÇïÇÞtMQ< <&²YïÞÅ´ Íã&ˆ£Z†ä‘l“ÛÖ:üGÌ ÑÛ¸Ö)òˆæ1ƒhÎé7~â}R#ãGQ2‰ã_ˆÈëœÒ×9…Vo4ñtçü²Yo/s¢ôKª¥Ã{*dKf¤! o$lª—Í‹e«È—ktjò„Æ×Ï[mØÈ,eœ¸pË$éô‘䛡Rµrõ#‰›K ׿Rµ¹œpÅ62…pÅ56Y:bšüÉÂË'…pÅv#Y¸¶Ô²·Þy|¹°fÆØ#ÑT˜ègf.G[‹ö/£J8Ÿq=Zž4ÎÇ4®±ggK×¹äðüÇS±È,G[W¯¿‹¹gˆ¦ó! ¥²íâ#q¶_žb¦•+ÊöÞ $Ö2жzVÑRL¥iGÐÆMlîB öØ “%TÒº¼8»¼p›÷ï%ÁÔ:Š2‘\RºñjœÖš—GõůkøÆ|)¹rºªMÓG„h¸8¯Fžˆº%k­Ó£Ú—Õ&êju€Í‘ô¢°Æ¾f*³óã·ºa—OîŸÇÑgT1ªú„›ws2‘DMž©¦C`9’•/MLu/ÛòkiBý©WÓ!Ûð9—©]/¥k¡åˆ—Fz=2‰µ"øÔ[« ÿôâI>nâ``Öý„ÊQßHÉ\SÓŸ¢;M¿ÛÝ\rtUS—p/—¥=ؘ'3YZðcôò¶¦\§ðÿú¹‰‚²rÅ_7¥G^|l”6Ë]¶ëþ:àSÇm_¶cŽÙ=|¾uz> _{;òC…5èØÄñ„~E÷c'FO,E•`¥FS&Õ1¤±FuLcêgžÿxªd£zgwG©†g7pµv¤6pãF+qYÜù/Yc>îËbZ. Šrç9–Å´Lâ•ä^œ"ˆîA,Y‚þX²ÊW‘dè–úo¥‹ï`Ee Þ‘YÅà\ †žŠ&–^«YU®èIiÞ|—Ø€¦¯ ôO½uü'%keˆ@þ½Yýç{³…„oñÁÉeó¢«ìe³^HÑU_ °¤âLá¤Â>´àĦøxãË+,¤æš h5YÂΚMD¶Z†ñC/O¢'J ©ÀÓZ†”º—&4»“ùòÄŸ@éÛÑ«‰ôvtx -¡/K·l‰vùîyŠÞ²Ì×ÉÛ½]?2Ék£A"ΘsÅ‹A¨É™·áJÓh[b_™ØÓ™cïÆvq:› ø7ës×â”)8BÃnš)œQí”±¬é-ËCæ•ᤠ+ÀÒËol›haͰCvúkFá ›[Œ ºÙ…¾IèH5jÖcÄ6j2èbCìéG'ØãÀ Bq“ÊOÁû§¿Í~q Œ»^»2ŠGˆž¾vå>%ß-÷¹b‰O@@ iº0ààZ#‹ÁæY#»Z0¾ÿžÁ¯É ²iªÉ*¦–Óé&ɈàÌq»±Éö:ï—‘*ú/dŠ…OÞt³@?ÎÏHݯö©EAU&„AšiÂű?K¨õ“êiã¸Þ¾0S­²&ïåÑ·Æ<Íl}FUa:£[{y•ð|Ô"®ùÈ<ªž¿mœrÜK®"̨h¿?¹¼h,eUœžÔѧû±Ûã³èÈ„8Ãké­<îl¥úª!B^«óqÏš‚|{°ÜFɱIoø½&¨i÷~ðÉ2»#Ï*äéúÖÈ= ¿»ÇÿæaPé=ÎÉ  KÄãéüJÿ±osŒ\ÏšÀïŽ;i–8ùĪ›GX5Ö+*ÅÓW7Œ?º•-e=‰Ä'çÕó÷dy¤1õ)‚›g ƒô¨frPÎRçHoª¿Ô9¥ƒÓ^×0ñrbS"„á¬\mjþé^??o¯\aÆ´±eõ¼ Æfiñ8ËþŽ,Å¢L›7ê Æ3ø¿5-ŽìæW‹êÃfô©±§‰‘ƒ u,M ?£3P#4’_‹ô/ðµ†Kí¶Ì%&òõwÑðŠÑ—§Ÿ:Ãþt0îáܦ>='‘=©ŸÀÿ"Ée«HòŸÛõ˜­î¶+ñžk)J>¯{Ýw@ щ<Þ }.'1 i'´½7J¤Ž¿/ÚŽv_u+_š8ö~ˆ3¡¿?4óÆ%U|Sož 0×ô K©´ÿ5¾.£>×ûÈxgÈ™Çw÷ /wd¦ ,z0…>¬T*eÍ&ÜK{b ­OVä] ¥;úïë6;]ÿöþ;û·—²»•ÿÊþa³Óõo翳;)ûG”þûú‡ÍN׿ÿNý²—V¿”7¢í²[Øœ ­X3¡¬²¤ûj‘Âó—jó5´ø(ÄéWš!‰ž¾åh[ÂWK‚óÇŒü?$§59¬IÏÁ'Þ ¤\Žý Õvõ4ätœÁ»}ŽóR,G ÷¤¡OÇ$iØËIÃ¥šòT Ã]‰n`:ÞóÛTsk©ñOñ”\’†<:¬/И'3Iôˆ=`ñºÖú%dÌû]ûSòGÛ÷÷¤OÇ$iÀ£Í}SžÊ#a¸#懣V­ÊawdÂärOîtL’†;Ú9Ýß”§òHîsÁÌÆé?ê„Þ2òÖtjOÍÁø7ÎX–,óÑ'áu&}…ù%}šh?ò˜>#»„á9+Wƒ©^4ja /ÂÚÐ¥BògŠvY Ô”ô…a•ôq¢½WÛõ<œ>I´-ë þe™1¸11¤t`mhÕª1g´)9,EÿÒÚSê­WßãÈ×~n×_›õÓhO¤8.ÄÉxZÅ ¸ÙHÉä½<­­\ à÷HרøŸ—"ÆÑøa>8³^éþG|¼±WÌÓñ_—{EgŸÍñ5ˆsùÄš¢ä«Ñ®^Äâ;zΪš–¶8Æ.L-Ç“á£8\_¼«‰k0¦§çúcÚ[“3òƒ ìäÂÒ…¯Æºâá}¢Dï£H’¥ ìý¬f’”Ÿ,1 ÉrP “g6Ì#+äkác9 kþo!Þ®@|ý:*ÞJ‚¢RO¢ˆ$\6¶/ÎÏ.1)ãùÍUÓ,!$±>ï¦lAL›7#¤ä.õŒýˆ!ì=‚òõ«©xëI#+©Ä%z×*Åå8A\6âr/.›O—èF q¹K—­0qAšþ(á+.ÄÓ•‘¯Ç»¢3‹diˆÞT“4 $¼Žƒ¶Üò~ZѰ´Å—„XT“ëiïv˜ôGHgN“çóBŒ]aøÊT¼5$ªŠd±ˆÞÛ“X¼>AÁ0ã0·½_Zµ/-Á¢Ýh Ù‚˜6ïD ÇÒ9„§_.¾ïŠÎü©J"úA“†äqõÊBêâKHBl”½„˜öî†Éz?}‡ðvåáë×Q Tò Úb7^>^ÐE'dÛ-*‰)3ûïF1&ÊnÅ_K\á˜Ù7²{‰„n-q…cæþÝ4n®íú&Bé˜ÙßïŒâ¾©ÿ:4¾tŒ¸œØÑ¶Ã®O$”ŽÑ¿E«Ú]ßü+3û‹VM»¾¹W4fæÿ#˜¾iSt/fÎ{qò²ç›õ ¥cæý0^`ö|3?©xÌÜÚý˜UvÏ7ùJÇÌ~¤Œ‹Í`=1¥cæ?PF/ç{[jb ÇÌ~ L¤Ó*‰.3óî6‘P«$¦p̼=m2îùf~|ᘹÏsµ»ç¿ðK$ˆÑc«3½}Œ£5ážO$S¼ŠÑ cëó¬s7‹IúüjÃ__"EŒv@ê™ýЙF/‘¯ÊÁ “Hb´ÄÄ~ˆ™÷¯ü‡éñ¥c´P&ÒiµD—Ñ°ë Æq)º_ùÔD Š]1+Ÿ²ˆ/£-¦ö|óm}ê"¡tŒ¾pºa´¦yåS ¥c4Q£WéW{!5Å•Ñx”1¸t;qcâÓ)h*1:#æTPѹuÅ”ÑqG‚ŠP«$¦pŒnp~>ÜR„ª–ØÂ1š!æŽ<©Q”ª¢øÒ1:á1RÙ+2YI\Ñmð¹!Pdª†˜¢1:à1Fd|S?¦hLR Žß1ù¾0JN’„phÔëu󤶳÷1†|;ž|oco7šzw#’š=·‡­ÓÆëáýwæƒ}C›²òhO{<è› iž*»Ñ×òDŸ”쩲RxÙhâqãõåùåIo eÀ°H€0F&óQ')\XU³ç­%>XxFñ¡ÂŠSH€oX“žƒOl˜pe7Ú1üðòô¨YAàÖHZ§Ç× #jç- oÅ‹,º>ÚŠ&õC˜áÖá?â$(†þ'@*ê°dOœ;V‰^qldsü,Ç9¦5.Ë$9KÅ#IÄ^EІ¯!Od‘ XEÓÀºÄ¾|6ÿç™~~û½X.í¬—úƒÙýüv½Ñn_ÖMaDHóõç©ccccw{Û wøßÊÿ+~ŒòææÎîÆN¹\Ù56Ê;;Ûåÿcl?Oõñ?sgÖ™BS†qÿΞö"ÊA±»»>¢êßÿ’Ÿøï;ï›S Ñ¢K£¨IþñØÙÚŠüþåíÝ-úþ;»•­í²±Q)oîÀ÷ßxÆ~Fþü?þý‹Åbq™÷ÃyßàoéÜÚóÙ¾Q#/B£#3Û¸·†cîƒÑdj²2¤Ïüðø/¨ÆÅ›FÛ8nœ·/þ’É4îŒG{n +0™;¾eü>‡ud`׌ÉÐBüŽóÚcô¦F{Öé~4ZŸ¬é(|cå~6›8ûëë>·ÅãR×­K^Îú¬Óï[½õß~/ ºî`Lθ/ûÝèÞwÆckÈ\€É`Ú- »ëwSˤÂë­lþöûz«?Ïܬ[ Ÿ•déÒØš­JØé3™ÕÕ#ËéN·ÕSeu5S5ºÐ­©û{ÌðØ@{TŒ²öñ,%…1pJÈéÂ6Î-ÑÞ¼k—3ÛAm4F!§L¤„ð¦²(³±`€ö´„ããÉ|†NËÃδo­Éq…e´Ó½73ràŒ)7‹øª+?sàÌnTïñ/¡p´ Ô'ÄãÆ&àiQãëŸ'Vw†°Ç¢% Œʇ%éQ¾:“‰5f¶ãOƒ©=Yã™±"„ÑÇÑSœúyg£E0Ã(ŽaâŽ:ȹ°µE£Õ¦ºa æ}ãÊ*õKèƒÞj¯oãžýà¬ÍÁxþYqw ƒ»G£=ŸÚ…ä2$qœ™E¹´}ƒÍ«öz¬>tpf}ža·{=¨öѰiÄÅsƒ¦5¾ÛíЉ±ûŸžûß~¾ý|ûùöóíçÛÏ·Ÿo?ß~¾ý|ûùöóíçÛÏ·Ÿo?ß~¾ý|ûùöóíçïÏÿ{>µ8zsv-1.3.0/app/external/jq.diff000066400000000000000000000014351511312357700162130ustar00rootroot00000000000000diff --git a/src/jv.c b/src/jv.c index e1fb209..69c18fc 100644 --- a/src/jv.c +++ b/src/jv.c @@ -333,6 +333,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, } } +#if !defined(HAVE_PTHREAD_KEY_CREATE) int pthread_key_create(pthread_key_t *key, void (*dtor)(void *)) { @@ -491,6 +492,9 @@ pthread_getspecific(pthread_key_t key) #else #include #endif +#else +#include +#endif static pthread_key_t dec_ctx_key; static pthread_key_t dec_ctx_dbl_key; diff --git a/src/jv_thread.h b/src/jv_thread.h index a34cd08..c06ff6b 100644 --- a/src/jv_thread.h +++ b/src/jv_thread.h @@ -1,7 +1,7 @@ #ifndef JV_THREAD_H #define JV_THREAD_H -#ifdef WIN32 +#if defined(WIN32) && !defined(HAVE_PTHREAD_KEY_CREATE) #include #include #include zsv-1.3.0/app/external/json_writer-1.01/000077500000000000000000000000001511312357700176665ustar00rootroot00000000000000zsv-1.3.0/app/external/json_writer-1.01/LICENSE000066400000000000000000000020521511312357700206720ustar00rootroot00000000000000MIT License Copyright (c) 2021 liquidaty Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. zsv-1.3.0/app/external/json_writer-1.01/README.md000066400000000000000000000024471511312357700211540ustar00rootroot00000000000000### jsonwriter: small, fast and permissively-license JSON writer written in C #### Why do we need this? This library was designed to meet the following requirements: * small * fast * memory-efficient * supports full range of UTF8 * written in C, portable, and permissively licensed * thread safe * supports custom write functions and write targets (e.g. write to network or pipe or to custom buffer using some custom write function) The last item was the most difficult to find, but was indispensible for versatile reusability (for example, maybe we will not know, until dynamically at runtime, whether we want to write our JSON to stdout, stderr, another file, a network pipe, or just feed that back into some other process in a chain of data processing. #### How to use ##### create a handle Write either to a file, or provide your own `fwrite`-like function and target: ``` jsonwriter_handle jsonwriter_new_file(FILE *f); jsonwriter_handle jsonwriter_new( size_t (*write)(const void *, size_t, size_t, void *), void *write_arg ); ``` e.g. `jsonwriter_handle h = jsonwriter_new(fwrite, stdout)` ##### write your JSON For example: ``` jsonwriter_start_object(h); jsonwriter_object_key(h, "hello"); jsonwriter_str(h, "there!"); jsonwriter_end(h); ``` ##### clean up `jsonwriter_delete(h)` ### Enjoy! zsv-1.3.0/app/external/json_writer-1.01/json_numeric.c000066400000000000000000000156721511312357700225400ustar00rootroot00000000000000#include // For bool, true, false #include // For size_t #include // For isdigit /** * @brief Checks if a buffer segment represents a valid JSON number (RFC 8259 compliant). * * Follows RFC 8259 Section 6 rules strictly. Numbers MUST have an integer part. * Operates on a character buffer `str` of explicit `length`. * Assumes `str` is NOT null-terminated and reads exactly `length` bytes. * Accessing memory beyond `str + length - 1` is avoided. * * JSON Number Format (RFC 8259): * number = [ minus ] int [ frac ] [ exp ] * int = zero / ( digit1-9 *DIGIT ) * frac = decimal-point 1*DIGIT * exp = e [ minus / plus ] 1*DIGIT * * @param str Pointer to the start of the character buffer. * @param length The exact number of characters in the buffer segment to validate. * @return true if the buffer segment [str, str + length) is a valid JSON number * per RFC 8259, false otherwise. */ bool is_valid_json_number(const char *str, size_t length) { // 1. Handle NULL pointer or Zero Length if (str == NULL || length == 0) { return false; } const char *p = str; const char * const end = str + length; // Pointer to one position *after* the last valid char // 2. Optional Minus Sign // Check bounds before dereferencing if (p < end && *p == '-') { p++; // Advance pointer } // 3. Integer Part (Mandatory per RFC 8259) // Check if we are already at the end (e.g., input was "-" or empty after sign) if (p >= end) { return false; } if (*p == '0') { p++; // Consumed '0' // Check bounds *before* looking at the next character for leading zero violation if (p < end && isdigit((unsigned char)*p)) { return false; // Leading zero rule violation (e.g., "01") } // '0' must be followed by '.', 'e', 'E', or the end of the buffer. } else if (isdigit((unsigned char)*p)) { // Starts with 1-9 p++; // Consume the first digit (1-9) // Consume subsequent digits, checking bounds in the loop while (p < end && isdigit((unsigned char)*p)) { p++; } } else { // Did not start with '0' or '1'-'9' after optional sign. Invalid. // Correctly rejects ".2", "-.2" etc. even with length check. return false; } // If we reached here, a valid integer part was parsed up to the current 'p'. // 4. Optional Fractional Part // Check bounds before checking for '.' if (p < end && *p == '.') { p++; // Consumed '.' // Check bounds *before* looking for the mandatory digit after '.' if (p >= end || !isdigit((unsigned char)*p)) { // Reached end immediately after '.', or next char not a digit (e.g., "1.", "0.") return false; } p++; // Consumed the first digit after '.' // Consume subsequent digits, checking bounds in the loop while (p < end && isdigit((unsigned char)*p)) { p++; } } // 5. Optional Exponent Part // Check bounds before checking for 'e'/'E' if (p < end && (*p == 'e' || *p == 'E')) { p++; // Consumed 'e' or 'E' // Check bounds before checking for optional sign if (p < end && (*p == '+' || *p == '-')) { p++; // Consumed optional sign } // Check bounds *before* looking for the mandatory digit after exponent part if (p >= end || !isdigit((unsigned char)*p)) { // Reached end immediately after 'e'/'E'/sign, or next char not a digit (e.g., "1e", "1E+") return false; } p++; // Consumed the first digit after exponent part // Consume subsequent digits, checking bounds in the loop while (p < end && isdigit((unsigned char)*p)) { p++; } } // 6. Final Check: Must have consumed exactly 'length' characters // If p == end, we successfully processed all characters from str to str + length - 1 // according to the JSON number rules. return p == end; } #ifdef JSON_NUMERIC_TEST // --- Example Usage --- #include #include // For strlen in test driver ONLY // Updated test function to use length void test_json_number_len(const char* str, size_t len) { // Create a temporary non-null terminated buffer for printing if needed, // or just print the pointer and length. Be careful printing non-terminated strings. // Using printf("%.*s", (int)len, str) is safer for printing. printf("\"%.*s\" (len %zu) -> %s\n", (int)len, str ? str : "(null)", len, is_valid_json_number(str, len) ? "VALID" : "INVALID"); } // Helper for testing null-terminated strings using the length-based function void test_json_number_nul(const char* str) { if (str == NULL) { printf("NULL (len 0) -> %s\n", is_valid_json_number(NULL, 0) ? "VALID" : "INVALID"); return; } size_t len = strlen(str); // Use strlen JUST for the test case driver test_json_number_len(str, len); } int main() { printf("--- Testing with NUL-terminated strings ---\n"); printf("--- Valid Examples (RFC 8259 Compliant) ---\n"); test_json_number_nul("0"); test_json_number_nul("1"); test_json_number_nul("-1"); test_json_number_nul("12345"); test_json_number_nul("0.5"); test_json_number_nul("1.234"); test_json_number_nul("1e5"); test_json_number_nul("1E-5"); test_json_number_nul("1.2E+10"); test_json_number_nul("-0.123e-4"); printf("\n--- Invalid Examples (RFC 8259 Compliant) ---\n"); test_json_number_nul(NULL); test_json_number_nul(""); test_json_number_nul("-"); test_json_number_nul("."); test_json_number_nul(".2"); test_json_number_nul("1."); test_json_number_nul("01"); test_json_number_nul("1e"); test_json_number_nul("1e+"); test_json_number_nul("1.2a"); test_json_number_nul("1.2e5 "); // Trailing space printf("\n--- Testing with specific lengths ---\n"); test_json_number_len("12345", 3); // "123" -> VALID (Consumes exactly 3) test_json_number_len("12a45", 2); // "12" -> VALID (Consumes exactly 2) test_json_number_len("12a45", 3); // "12a" -> INVALID (a is not part of num, doesn't consume exactly 3 as num) test_json_number_len("1.5x", 3); // "1.5" -> VALID (Consumes exactly 3) test_json_number_len("1.5x", 4); // "1.5x" -> INVALID (x is extra) test_json_number_len("1.", 1); // "1" -> VALID (Consumes exactly 1) test_json_number_len("1.", 2); // "1." -> INVALID (Needs digit after .) test_json_number_len("-", 1); // "-" -> INVALID (No digits) test_json_number_len("-1", 1); // "-" -> INVALID (Only consumes 1, needs the digit too) test_json_number_len("-1", 2); // "-1" -> VALID (Consumes exactly 2) test_json_number_len("0", 1); // "0" -> VALID test_json_number_len("0", 0); // "" -> INVALID (Zero length handled) test_json_number_len(NULL, 0); // NULL -> INVALID return 0; } #endif zsv-1.3.0/app/external/json_writer-1.01/jsonwriter.c000066400000000000000000000334651511312357700222530ustar00rootroot00000000000000#include #include #include #include #ifdef INCLUDE_UTILS #include "utils.c" #else unsigned int json_esc1(const unsigned char *s, unsigned int slen, unsigned int *replacelen, unsigned char replace[], // replace buff should be at least 8 bytes long const unsigned char **new_s, size_t max_output_size); #endif struct jsonwriter_output_buff { #define JSONWRITER_OUTPUT_BUFF_SIZE 65536 unsigned char *buff; size_t used; size_t (*write)(const void *restrict, size_t, size_t, void *restrict); void *write_arg; }; #define JSONWRITER_MAX_NESTING 256 struct jsonwriter_data { struct jsonwriter_output_buff out; unsigned int depth; unsigned char *close_brackets; // length = JSONWRITER_MAX_NESTING int *counts; // at each level, the current number of items char tmp[128]; // number buffer struct jsonwriter_variant (*to_jsw_variant)(void *); void (*after_to_jsw_variant)(void *, struct jsonwriter_variant *); unsigned char just_wrote_key : 1; unsigned char compact : 1; unsigned char started : 1; unsigned char dummy : 5; }; static inline void jsonwriter_output_buff_flush(struct jsonwriter_output_buff *b) { if (b) { if (b->used) b->write(b->buff, b->used, 1, b->write_arg); b->used = 0; } } #ifndef JSONWRITER_NO_BUFF static inline size_t jsonwriter_output_buff_write(struct jsonwriter_output_buff *b, const unsigned char *s, size_t n) { if (n) { if (n + b->used > JSONWRITER_OUTPUT_BUFF_SIZE) { jsonwriter_output_buff_flush(b); if (n > JSONWRITER_OUTPUT_BUFF_SIZE) { // n too big, so write directly b->write(s, n, 1, b->write_arg); return n; } } // n + used < buff size memcpy(b->buff + b->used, s, n); b->used += n; } return n; } #else static inline size_t jsonwriter_output_buff_write(struct jsonwriter_output_buff *b, const unsigned char *s, size_t n) { b->write(s, n, 1, b->write_arg); } #endif void jsonwriter_set_option(jsonwriter_handle data, enum jsonwriter_option opt) { switch (opt) { case jsonwriter_option_pretty: data->compact = 0; break; case jsonwriter_option_compact: data->compact = 1; break; } } static size_t fwrite2(const void *restrict p, size_t n, size_t size, void *restrict f) { return (size_t)fwrite(p, n, size, f); } jsonwriter_handle jsonwriter_new(FILE *f) { return jsonwriter_new_stream(fwrite2, f); } jsonwriter_handle jsonwriter_new_stream(size_t (*write)(const void *restrict, size_t, size_t, void *restrict), void *write_arg) { struct jsonwriter_data *data = calloc(1, sizeof(*data)); if (data) { data->out.write = write; data->out.write_arg = write_arg; if (!(data->out.buff = malloc(JSONWRITER_OUTPUT_BUFF_SIZE)) || !(data->close_brackets = malloc(JSONWRITER_MAX_NESTING * sizeof(*data->close_brackets))) || !(data->counts = calloc(JSONWRITER_MAX_NESTING, sizeof(*data->counts)))) { // avoid jsonwriter_delete() delete here to suppress compiler warning free(data->counts); free(data->close_brackets); free(data->out.buff); free(data); data = NULL; } } return data; } void jsonwriter_flush(jsonwriter_handle data) { if (data->out.used) jsonwriter_output_buff_flush(&data->out); } void jsonwriter_delete(jsonwriter_handle data) { if (!data) return; jsonwriter_flush(data); if (data->out.buff) free(data->out.buff); if (data->close_brackets) free(data->close_brackets); if (data->counts) free(data->counts); free(data); } static size_t jsonwriter_writeln(struct jsonwriter_data *data) { if (data->started) return jsonwriter_output_buff_write(&data->out, (const unsigned char *)"\n", 1); return 0; } static int jsonwriter_indent(struct jsonwriter_data *data, unsigned char closing) { if (data->just_wrote_key) { if (data->compact) jsonwriter_output_buff_write(&data->out, (const unsigned char *)":", 1); else jsonwriter_output_buff_write(&data->out, (const unsigned char *)": ", 2); data->just_wrote_key = 0; return 0; } if (data->depth) { if (!closing) { // add a value to the current list if (data->counts[data->depth - 1]) jsonwriter_output_buff_write(&data->out, (const unsigned char *)",", 1); data->counts[data->depth - 1]++; } } if (!data->compact) { jsonwriter_writeln(data); for (int d = data->depth; d > 0; d--) jsonwriter_output_buff_write(&data->out, (const unsigned char *)" ", 2); } return 0; } size_t jsonwriter_write_raw(jsonwriter_handle jsw, const unsigned char *s, size_t len) { jsonwriter_indent(jsw, 0); return jsonwriter_output_buff_write(&jsw->out, s, len); } static enum jsonwriter_status jsonwriter_end_aux(jsonwriter_handle data, unsigned char close_bracket) { // return 0 on success if (data->depth > 0) { if (close_bracket && data->close_brackets[data->depth - 1] != close_bracket) return jsonwriter_status_invalid_end; data->depth--; if (data->depth < JSONWRITER_MAX_NESTING - 1) { jsonwriter_indent(data, 1); jsonwriter_output_buff_write(&data->out, data->close_brackets + data->depth, 1); } if (data->depth == 0 && !data->compact) jsonwriter_writeln(data); return jsonwriter_status_ok; } return jsonwriter_status_invalid_end; // error: nothing to close } enum jsonwriter_status jsonwriter_end(jsonwriter_handle data) { return jsonwriter_end_aux(data, 0); } enum jsonwriter_status jsonwriter_end_array(jsonwriter_handle data) { return jsonwriter_end_aux(data, ']'); } enum jsonwriter_status jsonwriter_end_object(jsonwriter_handle data) { return jsonwriter_end_aux(data, '}'); } int jsonwriter_end_all(jsonwriter_handle data) { while (jsonwriter_end(data) == 0) ; return 0; } static int write_json_str(struct jsonwriter_output_buff *b, const unsigned char *s, size_t len, unsigned char no_quotes) { unsigned int replacelen; unsigned char replace[10]; const unsigned char *end = s + len; const unsigned char *new_s; size_t written = 0; if (!no_quotes) jsonwriter_output_buff_write(b, (const unsigned char *)"\"", 1), written++; while (s < end) { replacelen = 0; unsigned int no_esc = json_esc1((const unsigned char *)s, len, &replacelen, replace, &new_s, len + sizeof(replace)); if (no_esc) jsonwriter_output_buff_write(b, s, no_esc), written += no_esc; if (replacelen) jsonwriter_output_buff_write(b, replace, replacelen), written += replacelen; if (new_s > s) { s = new_s; len = end - new_s; } else break; } if (!no_quotes) jsonwriter_output_buff_write(b, (const unsigned char *)"\"", 1), written += 1; return written; } static int jsonwriter_str1(jsonwriter_handle data, const unsigned char *s, size_t len) { write_json_str(&data->out, s, len, 0); return 0; } int jsonwriter_null(jsonwriter_handle data) { if (data->depth < JSONWRITER_MAX_NESTING) { jsonwriter_indent(data, 0); jsonwriter_output_buff_write(&data->out, (const unsigned char *)"null", 4); return 0; } return 1; } int jsonwriter_bool(jsonwriter_handle data, unsigned char value) { if (data->depth < JSONWRITER_MAX_NESTING) { jsonwriter_indent(data, 0); if (value) jsonwriter_output_buff_write(&data->out, (const unsigned char *)"true", 4); else jsonwriter_output_buff_write(&data->out, (const unsigned char *)"false", 5); return 0; } return 1; } int jsonwriter_cstr(jsonwriter_handle data, const char *s) { return jsonwriter_str(data, (const unsigned char *)s); } int jsonwriter_cstrn(jsonwriter_handle data, const char *s, size_t len) { return jsonwriter_strn(data, (const unsigned char *)s, len); } int jsonwriter_str(jsonwriter_handle data, const unsigned char *s) { if (data->depth < JSONWRITER_MAX_NESTING) { jsonwriter_indent(data, 0); if (s) jsonwriter_str1(data, s, JSW_STRLEN(s)); else jsonwriter_output_buff_write(&data->out, (const unsigned char *)"null", 4); return 0; } return 1; } int jsonwriter_strn(jsonwriter_handle data, const unsigned char *s, size_t len) { if (data->depth < JSONWRITER_MAX_NESTING) { jsonwriter_indent(data, 0); jsonwriter_str1(data, s, len); return 0; } return 1; } int jsonwriter_object_keyn(jsonwriter_handle data, const char *key, size_t len_or_zero) { if (data->depth < JSONWRITER_MAX_NESTING) { jsonwriter_indent(data, 0); jsonwriter_str1(data, (const unsigned char *)key, len_or_zero == 0 ? JSW_STRLEN(key) : len_or_zero); data->just_wrote_key = 1; return 0; } return 1; } int jsonwriter_object_key(jsonwriter_handle data, const char *key) { return jsonwriter_object_keyn(data, key, strlen(key)); } int jsonwriter_dblf(jsonwriter_handle data, long double d, const char *format_string, unsigned char trim_trailing_zeros_after_dec) { if (data->depth < JSONWRITER_MAX_NESTING) { jsonwriter_indent(data, 0); if (isnan(d)) { jsonwriter_output_buff_write(&data->out, (unsigned char *)"\"NaN\"", 5); } else { if (format_string && !strstr(format_string, "Lf")) // TO DO: return error code fprintf(stderr, "Warning: format string passed to jsonwriter_dblf() does not contain Lf: %s\n", format_string); format_string = format_string ? format_string : "%0.15Lf"; int len = snprintf(data->tmp, sizeof(data->tmp), format_string, d); // TO DO: check if len < 0 or len > sizeof(data->tmp) if (len <= 0 || (size_t)len > sizeof(data->tmp)) { // TO DO: return error code fprintf(stderr, "Warning! jsonwriter_dblf failed to print, outputting zero value\n"); jsonwriter_output_buff_write(&data->out, (const unsigned char *)"0", 1); } else { if (trim_trailing_zeros_after_dec && memchr(data->tmp, '.', len)) { while (len && data->tmp[len - 1] == '0') len--; if (len && data->tmp[len - 1] == '.') len--; if (!len) { *data->tmp = '0'; len = 1; } } jsonwriter_output_buff_write(&data->out, (unsigned char *)data->tmp, len); } } return 0; } return 1; } int jsonwriter_dbl(jsonwriter_handle data, long double d) { return jsonwriter_dblf(data, d, NULL, 1); } int jsonwriter_size_t(jsonwriter_handle data, size_t sz) { if (data->depth < JSONWRITER_MAX_NESTING) { jsonwriter_indent(data, 0); int len = snprintf(data->tmp, sizeof(data->tmp), "%zu", sz); if (len < 0 || len >= (int)sizeof(data->tmp)) jsonwriter_output_buff_write(&data->out, (unsigned char *)"\"NaN\"", 5); else jsonwriter_output_buff_write(&data->out, (unsigned char *)data->tmp, len); return 0; } return 1; } int jsonwriter_int(jsonwriter_handle data, jsw_int64 i) { if (data->depth < JSONWRITER_MAX_NESTING) { jsonwriter_indent(data, 0); int len = snprintf(data->tmp, sizeof(data->tmp), JSW_INT64_PRINTF_FMT, i); if (len < 0 || len >= (int)sizeof(data->tmp)) jsonwriter_output_buff_write(&data->out, (unsigned char *)"\"NaN\"", 5); else jsonwriter_output_buff_write(&data->out, (unsigned char *)data->tmp, len); return 0; } return 1; } static int jsonwriter_go_deeper(struct jsonwriter_data *data, unsigned char open, unsigned char close) { if (data->depth < JSONWRITER_MAX_NESTING - 1) { jsonwriter_indent(data, 0); data->started = 1; jsonwriter_output_buff_write(&data->out, &open, 1); data->close_brackets[data->depth] = close; data->depth++; data->counts[data->depth - 1] = 0; return 0; } return 1; } int jsonwriter_start_object(jsonwriter_handle data) { return jsonwriter_go_deeper((struct jsonwriter_data *)data, '{', '}'); } int jsonwriter_start_array(jsonwriter_handle data) { return jsonwriter_go_deeper((struct jsonwriter_data *)data, '[', ']'); } enum jsonwriter_status jsonwriter_set_variant_handler(jsonwriter_handle d, struct jsonwriter_variant (*to_jsw_variant)(void *), void (*cleanup)(void *, struct jsonwriter_variant *)) { d->after_to_jsw_variant = cleanup; if (!(d->to_jsw_variant = to_jsw_variant)) return jsonwriter_status_invalid_value; return jsonwriter_status_ok; } enum jsonwriter_status jsonwriter_variant(jsonwriter_handle d, void *data) { if (!d->to_jsw_variant) return jsonwriter_status_misconfiguration; struct jsonwriter_variant jv = d->to_jsw_variant(data); int rc = jsonwriter_status_unrecognized_variant_type; switch (jv.type) { case jsonwriter_datatype_null: rc = jsonwriter_null(d); break; case jsonwriter_datatype_string: rc = jsonwriter_str(d, jv.value.str); break; case jsonwriter_datatype_integer: rc = jsonwriter_int(d, jv.value.i); break; case jsonwriter_datatype_float: rc = jsonwriter_dbl(d, jv.value.dbl); break; case jsonwriter_datatype_bool: rc = jsonwriter_bool(d, jv.value.i ? 1 : 0); break; case jsonwriter_datatype_raw: if (jv.value.str) rc = jsonwriter_write_raw(d, jv.value.str, strlen((const char *)jv.value.str)); else rc = jsonwriter_null(d); break; } if (d->after_to_jsw_variant) d->after_to_jsw_variant(data, &jv); return rc; } /* * Write a value of unknown datatype. If it is numeric or bool * conforming to RFC 8259, write it as-is; otherwise treat it * as a string and write the stringified value */ #include "json_numeric.c" int jsonwriter_unknown(jsonwriter_handle h, const unsigned char *s, size_t len, jsw_uint32 flags) { (void)(flags); // reserved if (is_valid_json_number((const char *)s, len) || (len == 4 && !memcmp(s, "true", len)) || (len == 5 && !memcmp(s, "false", len))) return jsonwriter_write_raw(h, s, len); return jsonwriter_strn(h, s, len); } zsv-1.3.0/app/external/json_writer-1.01/jsonwriter.h000066400000000000000000000140601511312357700222460ustar00rootroot00000000000000#ifndef JSONWRITER_H #define JSONWRITER_H #include #include #include #include #define JSW_STRLEN(x) strlen((const char *)x) #ifdef __cplusplus extern "C" { #endif # ifdef _WIN32 # define jsw_int64 __int64 # define JSW_INT64_MIN _I64_MIN # define JSW_INT64_MAX _I64_MAX # define JSW_INT64_PRINTF_FMT "%"PRId64 # define jsw_uint32 uint32_t # else // not WIN # define jsw_int64 int64_t # define JSW_INT64_MIN INT64_MIN # define JSW_INT64_MAX INT64_MAX # define JSW_INT64_PRINTF_FMT "%" PRId64 # define jsw_uint32 uint32_t # endif enum jsonwriter_option { jsonwriter_option_pretty = 0, jsonwriter_option_compact = 1 }; enum jsonwriter_status { jsonwriter_status_ok = 0, // no error jsonwriter_status_out_of_memory = 1, jsonwriter_status_invalid_value, jsonwriter_status_misconfiguration, jsonwriter_status_unrecognized_variant_type, jsonwriter_status_invalid_end }; struct jsonwriter_data; typedef struct jsonwriter_data * jsonwriter_handle; jsonwriter_handle jsonwriter_new(FILE *f); jsonwriter_handle jsonwriter_new_stream(size_t (*write)(const void *restrict, size_t, size_t, void *restrict), void *write_arg); void jsonwriter_set_option(jsonwriter_handle h, enum jsonwriter_option opt); void jsonwriter_flush(jsonwriter_handle h); void jsonwriter_delete(jsonwriter_handle h); int jsonwriter_start_object(jsonwriter_handle h); int jsonwriter_start_array(jsonwriter_handle h); enum jsonwriter_status jsonwriter_end_array(jsonwriter_handle h); // end an error, or return err enum jsonwriter_status jsonwriter_end_object(jsonwriter_handle h); // end an object, or return err enum jsonwriter_status jsonwriter_end(jsonwriter_handle h); // end either an array or an object, or return err // to do: jsonwriter_end_array() and jsonwriter_end_object(): same as jsonwriter_end, but // return an error if no matching open array/obj int jsonwriter_end_all(jsonwriter_handle h); int jsonwriter_object_keyn(jsonwriter_handle data, const char *key, size_t len_or_zero); int jsonwriter_object_key(jsonwriter_handle h, const char *key); #define jsonwriter_object_str(h, key, v) jsonwriter_object_key(h, key), jsonwriter_str(h, v) #define jsonwriter_object_strn(h, key, v, len) jsonwriter_object_key(h, key), jsonwriter_strn(h, v, len) #define jsonwriter_object_cstr(h, key, v) jsonwriter_object_key(h, key), jsonwriter_cstr(h, v) #define jsonwriter_object_cstrn(h, key, v, len) jsonwriter_object_key(h, key), jsonwriter_cstrn(h, v, len) #define jsonwriter_object_bool(h, key, v) jsonwriter_object_key(h, key), jsonwriter_bool(h, v) #define jsonwriter_object_dbl(h, key, v) jsonwriter_object_key(h, key), jsonwriter_dbl(h, v) #define jsonwriter_object_dblf(h, key, v, fmt, t) jsonwriter_object_key(h, key), jsonwriter_dblf(h, v, fmt, t) #define jsonwriter_object_int(h, key, v) jsonwriter_object_key(h, key), jsonwriter_int(h, v) #define jsonwriter_object_size_t(h, key, v) jsonwriter_object_key(h, key), jsonwriter_size_t(h, v) #define jsonwriter_object_null(h, key) jsonwriter_object_key(h, key), jsonwriter_null(h) #define jsonwriter_object_array(h, key) jsonwriter_object_key(h, key), jsonwriter_start_array(h) #define jsonwriter_object_object(h, key) jsonwriter_object_key(h, key), jsonwriter_start_object(h) int jsonwriter_str(jsonwriter_handle h, const unsigned char *s); int jsonwriter_strn(jsonwriter_handle h, const unsigned char *s, size_t len); int jsonwriter_cstr(jsonwriter_handle data, const char *s); int jsonwriter_cstrn(jsonwriter_handle data, const char *s, size_t len); int jsonwriter_bool(jsonwriter_handle h, unsigned char value); int jsonwriter_dbl(jsonwriter_handle h, long double d); int jsonwriter_dblf(jsonwriter_handle h, long double d, const char *format_string, unsigned char trim_trailing_zeros_after_dec); int jsonwriter_size_t(jsonwriter_handle data, size_t sz); int jsonwriter_int(jsonwriter_handle h, jsw_int64 i); int jsonwriter_null(jsonwriter_handle h); // optionally, you can configure jsonwriter to handle custom variant types enum jsonwriter_datatype { jsonwriter_datatype_null = 0, jsonwriter_datatype_string = 1, jsonwriter_datatype_integer = 2, jsonwriter_datatype_float = 3, jsonwriter_datatype_bool = 4, jsonwriter_datatype_raw = 5, // already stringified, output verbatim // possible to do: // array // object }; struct jsonwriter_variant { enum jsonwriter_datatype type; union { unsigned char b; // bool long int i; // integer long double dbl; // double unsigned char *str; // string // possible to do: // void *array; // will require corresponding function pointers to get array size and elements // void *object; // will require corresponding function pointers to get object keys and elements } value; }; // jsonwriter_set_variant_handler(): provide jsonwriter with a custom function that converts your data to a jsonwriter_variant // with an optional cleanup callback // returns 0 on success, nonzero on error enum jsonwriter_status jsonwriter_set_variant_handler(jsonwriter_handle h, struct jsonwriter_variant (*to_jsw_variant)(void *), void (*cleanup)(void *, struct jsonwriter_variant *)); // write a variant. will use custom to_jsw_variant() to convert data to jsonwriter_variant enum jsonwriter_status jsonwriter_variant(jsonwriter_handle h, void *data); // write raw data to the output stream. Note: caller is responsible for ensuring that // the raw data is valid JSON size_t jsonwriter_write_raw(jsonwriter_handle jsw, const unsigned char *s, size_t len); /* * Write a value of unknown datatype. If it is numeric or bool * conforming to RFC 8259, write it as-is; otherwise treat it * as a string and write the stringified value */ int jsonwriter_unknown(jsonwriter_handle h, const unsigned char *s, size_t len, jsw_uint32 flags); #ifdef __cplusplus } #endif #endif // #ifndef JSONWRITER_H zsv-1.3.0/app/external/json_writer-1.01/utils.c000066400000000000000000000052461511312357700212010ustar00rootroot00000000000000void str2hex(unsigned char *to, const unsigned char *p, size_t len) { static const char *hex = "0123456789abcdef"; for (; len--; p++) { *to++ = hex[p[0] >> 4]; *to++ = hex[p[0] & 0x0f]; } } static char UTF8_charLenC(int firstChar) { /* return 0 on eof, -1 on error, > 0 if char read) */ char len; if(firstChar == EOF) len = 0; else if(!(firstChar & 128)) len = 1; else if((firstChar & 224) == 192) len = 2; /* 110xxxxx */ else if((firstChar & 240) == 224) len = 3; /* 1110xxxx */ else if((firstChar & 248) == 240) len = 4; /* 11110xxx */ else if((firstChar & 252) == 248) len = 5; /* 111110xx */ else if((firstChar & 254) == 252) len = 6; /* 1111110x */ else len = -1; /* error */ return len; } #define JSON_ESC_CHAR(c) (c == '"' || c == '\\' || c < 32) static unsigned int json_esc1(const unsigned char *s, unsigned int slen, unsigned int *replacelen, unsigned char replace[], // replace buff should be at least 8 bytes long const unsigned char **new_s, size_t max_output_size) { unsigned char c; char c_len; const unsigned char *orig_s = s; *replacelen = 0; if(!max_output_size) { *new_s = s + slen; return 0; } while(slen && (c = *s) && (size_t)(s - orig_s) < max_output_size) { c_len = UTF8_charLenC(*s); if(c_len > 0 && ((unsigned char)c_len > slen || (size_t)((s - orig_s) + c_len) > max_output_size)) break; // roll back and return if(c_len > 1) { s += c_len; slen -= c_len; continue; } else if(c_len < 0) { // bad utf8 *replacelen = 0; *new_s = s + 1; return (unsigned int)(s - orig_s); } else if(JSON_ESC_CHAR(c)) { char hex = 0; switch(c) { case '"': replace[1] = '"'; break; case '\\': replace[1] = '\\'; break; case '\b': replace[1] = 'b'; break; case '\f': replace[1] = 'f'; break; case '\n': replace[1] = 'n'; break; case '\r': replace[1] = 'r'; break; case '\t': replace[1] = 't'; break; default: hex=1; } replace[0] = '\\'; if(hex) { // unicode-hex: but 2/3 are not always zeroes... replace[1] = 'u'; replace[2] = '0'; replace[3] = '0'; str2hex(replace+4, &c, 1); *replacelen = 6; replace[6] = '\0'; } else { *replacelen = 2; replace[2] = '\0'; } if((size_t)((s - orig_s) + *replacelen) > max_output_size) { *replacelen = 0; // roll back and return break; } *new_s = s+1; return (unsigned int)(s - orig_s); } s++, slen--; } *replacelen = 0; *new_s = s; return (unsigned int)(s - orig_s); } zsv-1.3.0/app/external/memfile-1.0/000077500000000000000000000000001511312357700166565ustar00rootroot00000000000000zsv-1.3.0/app/external/memfile-1.0/Makefile000066400000000000000000000055351511312357700203260ustar00rootroot00000000000000# Makefile for use with GNU make THIS_MAKEFILE_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) THIS_DIR:=$(shell basename "${THIS_MAKEFILE_DIR}") THIS_MAKEFILE:=$(lastword $(MAKEFILE_LIST)) .POSIX: .SUFFIXES: .SUFFIXES: .o .c .a CONFIGFILE ?= config.mk $(info Using config file ${CONFIGFILE}) include ${CONFIGFILE} CC ?= cc AWK ?= awk AR ?= ar RANLIB ?= ranlib SED ?= sed WIN= DEBUG=0 ifeq ($(WIN),) WIN=0 ifneq ($(findstring w64,$(CC)),) # e.g. mingw64 WIN=1 endif endif CFLAGS+=${CFLAG_O} ${CFLAGS_OPT} CFLAGS+=${CFLAGS_AUTO} CFLAGS+=-I. ifeq ($(VERBOSE),1) CFLAGS+= ${CFLAGS_VECTORIZE_OPTIMIZED} ${CFLAGS_VECTORIZE_MISSED} ${CFLAGS_VECTORIZE_ALL} endif VERSION= $(shell (git describe --always --dirty --tags 2>/dev/null || echo "v0.0.0-memfile") | sed 's/^v//') ifneq ($(findstring emcc,$(CC)),) # emcc NO_THREADING=1 endif ifeq ($(NO_THREADING),1) CFLAGS+= -DNO_THREADING endif ifeq ($(DEBUG),0) CFLAGS+= -DNDEBUG -O3 ${CFLAGS_LTO} else CFLAGS += ${CFLAGS_DEBUG} endif ifeq ($(DEBUG),1) DBG_SUBDIR+=dbg else DBG_SUBDIR+=rel endif ifeq ($(WIN),0) BUILD_SUBDIR=$(shell uname)/${DBG_SUBDIR} WHICH=which EXE= CFLAGS+= -fPIC else BUILD_SUBDIR=win/${DBG_SUBDIR} WHICH=where EXE=.exe CFLAGS+= -fpie CFLAGS+= -D__USE_MINGW_ANSI_STDIO -D_ISOC99_SOURCE -Wl,--strip-all endif CFLAGS+= -std=gnu11 -Wno-gnu-statement-expression -Wshadow -Wall -Wextra -Wno-missing-braces -pedantic -D_GNU_SOURCE CFLAGS+= ${MEMFILE_OPTIONAL_CFLAGS} CCBN=$(shell basename ${CC}) THIS_LIB_BASE=$(shell cd .. && pwd) INCLUDE_DIR=${THIS_LIB_BASE}/include BUILD_DIR=${THIS_LIB_BASE}/build/${BUILD_SUBDIR}/${CCBN} LIB_SUFFIX?= MEMFILE_OBJ=${BUILD_DIR}/objs/memfile.o LIBMEMFILE_A=libmemfile${LIB_SUFFIX}.a LIBMEMFILE=${BUILD_DIR}/lib/${LIBMEMFILE_A} LIBMEMFILE_INSTALL=${LIBDIR}/${LIBMEMFILE_A} MEMFILE_OBJ_OPTS= help: @echo "Make options:" @echo " `basename ${MAKE}` build|install|uninstall|clean" @echo @echo "Optional make variables:" @echo " [CONFIGFILE=config.mk] [VERBOSE=1] [LIBDIR=${LIBDIR}] [INCLUDEDIR=${INCLUDEDIR}] [LIB_SUFFIX=]" @echo build: ${LIBMEMFILE} ${LIBMEMFILE}: ${MEMFILE_OBJ} @mkdir -p `dirname "$@"` @rm -f $@ $(AR) rcv $@ $? $(RANLIB) $@ $(AR) -t $@ # check it is there @echo Built $@ install: ${LIBMEMFILE_INSTALL} @mkdir -p $(INCLUDEDIR) @cp -pR include/*.h $(INCLUDEDIR) @echo "include files copied to $(INCLUDEDIR)" ${LIBMEMFILE_INSTALL}: ${LIBMEMFILE} @mkdir -p `dirname "$@"` @cp -p ${LIBMEMFILE} "$@" @echo "libmemfile installed to $@" uninstall: @rm -rf ${INCLUDEDIR}/memfile* rm -f ${LIBDIR}/libmemfile* clean: rm -rf ${BUILD_DIR}/objs ${LIBMEMFILE} .PHONY: build install uninstall clean ${LIBMEMFILE_INSTALL} ${BUILD_DIR}/objs/memfile.o: src/memfile.c include/memfile.h @mkdir -p `dirname "$@"` ${CC} ${CFLAGS} -DMEMFILE_VERSION=\"${VERSION}\" -I${INCLUDE_DIR} ${MEMFILE_OBJ_OPTS} -o $@ -c $< zsv-1.3.0/app/external/memfile-1.0/configure000077500000000000000000000416401511312357700205720ustar00rootroot00000000000000#!/bin/sh # Based on the configure script from musl libc, MIT licensed; vis, ISC licensed usage () { cat </dev/null 2>&1 && { echo "$1" ; return 0 ; } $1 EOF printf %s\\n "$1" | sed -e "s/'/'\\\\''/g" -e "1s/^/'/" -e "\$s/\$/'/" -e "s#^'\([-[:alnum:]_,./:]*\)=\(.*\)\$#\1='\2#" } echo () { printf "%s\n" "$*" ; } fail () { echo "$*" ; exit 1 ; } fnmatch () { eval "case \"\$2\" in $1) return 0 ;; *) return 1 ;; esac" ; } cmdexists () { type "$1" >/dev/null 2>&1 ; } trycc1 () { test -z "$CC" && cmdexists "$1" && ( "$1" --version | grep -i gcc ) >/dev/null 2>/dev/null && CC=$1 ; } trycc2 () { test -z "$CC" && cmdexists "$1" && CC=$1 ; } tryar () { test -z "$AR" && cmdexists "$1" && AR=$1 ; } tryranlib () { test -z "$RANLIB" && cmdexists "$1" && RANLIB=$1 ; } tryawk () { test -z "$AWK" && "$1" 'function works () {return 0} BEGIN{exit works()}' && AWK=$1 ; } trymake() { if test -z "$MAKE" && cmdexists "$1" ; then v=`$1 --version | grep 'GNU Make' | sed -e 's/.*Make //'` if [ "$v" = "" ] ; then printf "Found but not using non-GNU make ($1)... " else MAKE="$1" maj=`echo $v | cut -d. -f 1` min=`echo $v | cut -d. -f 2` if ! test $maj -gt 3 -o '(' $maj -eq 3 -a $min -ge 81 ')' ; then printf "Warning: using make, but version $v < 3.81 has not been tested. " fi fi fi } stripdir () { while eval "fnmatch '*/' \"\${$1}\"" ; do eval "$1=\${$1%/}" ; done } NO_HAVE= trycchdr () { printf "checking whether there is a header called %s... " "$2" dn=`dirname "$2"` if [ "$dn" != "" ]; then dn="/$dn" bn=`basename "$2"` for x in $CCSEARCHPATH ; do fnd=$fnd"$x$dn " done else bn="$2" fnd=$CCSEARCHPATH fi upper2=$(echo "$2" | tr a-z A-Z | tr . _ | tr / _) if find $fnd -name "$bn" 2>/dev/null | grep "/$2$" >/dev/null 2>&1 ; then eval "$1=\"\${$1} -DHAVE_\${upper2}\"" eval "$1=\${$1# }" printf "yes\n" return 0 else printf "no\n" NO_HAVE="$NO_HAVE NO_$upper2 = 1" return 1 fi } trycpusupport() { rm -f "$tmpc" printf "checking whether CPU accepts $1... " cat >> "$tmpc" </dev/null 2>&1 && "$tmpe" && echo "yes" && return 0; echo "no" return 1; } tryccfn () { rm -f "$tmpc" if [ "$5" != "" ] ; then printf "checking whether compiler accepts %s from %s with %s... " "$2" "$3" "$5" echo "$5" >> "$tmpc" else printf "checking whether compiler accepts %s from %s..." "$2" "$3" fi if [ "$3" != "" ]; then printf "%s\n" $3 | sed 's/\(.*\)/#include <\1>/' >> "$tmpc" fi cat >> "$tmpc" </dev/null 2>&1 ; then if [ "$4" != "" ] ; then lib=$(echo "$4" | tr a-z A-Z | tr . _) USE_LIBS="$USE_LIBS USE_LIB_$lib = 1" fi eval "vars=\$$1" if ! printf "%s\n" ${vars} | grep "\-DHAVE_${flag}\$" >/dev/null 2>&1; then flag="-DHAVE_${flag}" eval "$1=\"\${vars} \${flag}\"" eval "$1=\${$1# }" fi printf "yes\n" return 0 else printf "no\n" NO_HAVE="$NO_HAVE NO_$flag = 1" echo "------" >> $CONFIGFILE.log echo "Failed: $CC -o $tmpo tmp.c" >> $CONFIGFILE.log cat "$tmpc" >> $CONFIGFILE.log echo "------" >> $CONFIGFILE.log return 1 fi } tryccfn1 () { rm -f "$tmpc" printf "checking whether compiler accepts %s(%s)..." "$2" "$3" cat >> "$tmpc" </dev/null 2>&1 ; then flag="-DHAVE_${flag}" have=1 else flag="-DNO_${flag}" have=0 fi if ! printf "%s\n" ${vars} | grep "\-D${flag}\$" >/dev/null 2>&1; then eval "$1=\"\${vars} \${flag}\"" eval "$1=\${$1# }" fi if [ "$have" = "1" ]; then printf "yes\n" return 0 else printf "no\n" return 1 fi } tryflag () { printf "checking whether compiler accepts %s... " "$2" echo "int main() {return 0;}" > "$tmpc" if $CC $CFLAGS_TRY $2 -c -o "$tmpo" "$tmpc" >/dev/null 2>&1 ; then printf "yes\n" eval "$1=\"\${$1} \$2\"" eval "$1=\${$1# }" return 0 else printf "no\n" return 1 fi } tryldflag () { # var, flag, other_arguments (optional) printf "checking whether linker accepts %s... " "$2" echo "int main(){return 0;}" > "$tmpc" if $CC $LDFLAGS "$2" $3 -o "$tmpo" "$tmpc" >/dev/null 2>&1 ; then printf "yes\n" eval "$1=\"\${$1} \$2\"" eval "$1=\${$1# }" return 0 else printf "no\n" return 1 fi } trysharedldflag () { printf "checking whether linker accepts %s... " "$2" echo "typedef int x;" > "$tmpc" if $CC $LDFLAGS -shared "$2" -o "$tmpo" "$tmpc" >/dev/null 2>&1 ; then printf "yes\n" eval "$1=\"\${$1} \$2\"" eval "$1=\${$1# }" return 0 else printf "no\n" return 1 fi } # Beginning of actual script if [ "$CROSS_COMPILING" = "" ]; then CROSS_COMPILING=no fi CFLAGS_AUTO= CFLAGS_TRY= LDFLAGS_AUTO= LDFLAGS_TRY= CONFIGFILE=$CONFIGFILE if [ "$CONFIGFILE" = "" ]; then CONFIGFILE=config.mk fi if [ "$CROSS_COMPILING" = "yes" ]; then ARCH=none fi if [ "$ARCH" = "" ] && [ "$CROSS_COMPILING" = "no" ]; then ARCH=native fi # check prefixes first, since others may be derived from it unless overridden PREFIX=$PREFIX for arg ; do case "$arg" in --prefix=*) PREFIX=${arg#*=} ;; esac done if [ "$PREFIX" = "" ]; then PREFIX=/usr/local elif [ "$PREFIX" = "${PREFIX#/}" ]; then PREFIX="`pwd`/$PREFIX" fi EXEC_PREFIX=$EXEC_PREFIX for arg ; do case "$arg" in --exec-prefix=*) EXEC_PREFIX=${arg#*=} ;; esac done if [ "$EXEC_PREFIX" = "" ]; then EXEC_PREFIX=$PREFIX elif [ "$EXEC_PREFIX" = "${EXEC_PREFIX#/}" ]; then EXEC_PREFIX="`pwd`/$EXEC_PREFIX" fi DOCDIR='$(PREFIX)/share/doc' MANDIR='$(PREFIX)/share/man' MINIMAL=no help=yes usepie=auto usepic=auto for arg ; do case "$arg" in --help|-h) usage ;; --host=*) host=${arg#*=} ;; --arch=*) ARCH=${arg#*=} ;; ARCH=*) ARCH=${arg#*=} ;; --config-file=*) CONFIGFILE=${arg#*=} ;; CONFIGFILE=*) CONFIGFILE=${arg#*=} ;; --prefix=*) ;; # already handled --exec-prefix=*) ;; # already handled EXEC_PREFIX=${arg#*=} ;; --docdir=*) DOCDIR=${arg#*=} ;; --mandir=*) MANDIR=${arg#*=} ;; --minimal|--minimal=yes) MINIMAL=yes;; --enable-pie|--enable-pie=yes) usepie=yes ;; --enable-pie=auto) usepie=auto ;; --disable-pie|--enable-pie=no) usepie=no ;; --enable-pic|enable-pic=yes) usepic=yes ;; --enable-pic=auto) usepic=auto ;; --disable-pic|--enable-pic=no) usepic=no ;; --enable-*|--disable-*|--with-*|--without-*|--*dir=*|--build=*) ;; -* ) echo "$0: unknown option $arg" ;; CC=*) CC=${arg#*=} ;; CFLAGS=*) CFLAGS=${arg#*=} ;; CPPFLAGS=*) CPPFLAGS=${arg#*=} ;; LDFLAGS=*) LDFLAGS=${arg#*=} ;; *=*) ;; *) ;; esac done echo "config will be saved to $CONFIGFILE" for i in PREFIX EXEC_PREFIX DOCDIR MANDIR ; do stripdir $i done # # Get a temp filename we can use # i=0 set -C while : ; do i=$(($i+1)) tmpc="./conf$$-$PPID-$i.c" tmpo="./conf$$-$PPID-$i.o" tmpe="./conf$$-$PPID-$i._" 2>|/dev/null > "$tmpc" && break test "$i" -gt 50 && fail "$0: cannot create temporary file $tmpc" done set +C trap 'rm -f "$tmpc" "$tmpo" "$tmpe"' EXIT QUIT TERM HUP trap 'rm -f "$tmpc" "$tmpo" "$tmpe" && echo && fail "$0: interrupted"' INT # # Find an AWK tool to use # printf "checking for AWK tool... " for a in awk gawk mawk nawk; do tryawk "$a"; done printf "%s\n" "$AWK" test -n "$AWK" || fail "$0: cannot find an AWK tool" # # Find a MAKE tool to use# printf "checking for MAKE tool... " for a in make gmake ; do trymake "$a"; done printf "%s\n" "$MAKE" test -n "$MAKE" || fail "$0: cannot find a MAKE tool" # # Find a C compiler to use # printf "checking for C compiler... " for c in cc gcc gcc-11 gcc-10 gcc-9 gcc-8 gcc-7 clang; do trycc1 "$c"; done for c in cc gcc gcc-11 gcc-10 gcc-9 gcc-8 gcc-7 clang; do trycc2 "$c"; done printf "%s\n" "$CC" test -n "$CC" || fail "$0: cannot find a C compiler" printf "checking whether C compiler works... " echo "typedef int x;" > "$tmpc" if output=$($CC $CPPFLAGS $CFLAGS -c -o "$tmpo" "$tmpc" 2>&1) ; then printf "yes\n" else fail "no; compiler output follows:\n%s\n" "$output" fi # # Get compiler search paths # CCSEARCHPATH=$(echo | ${CC} -E -Wp,-v - 2>&1 | ${AWK} '/ \//{print substr($0,2);}') # # Check if it is clang, and the llvm tools instead compiler=$(${CC} -v 2>&1 | ${AWK} '/ +version +/{for(i=1;i<=NF;i++){if($i=="version"){printf("%s\n",(last=="LLVM")?"clang":last);exit 0;}last=$i;}}') if test "$compiler" = "clang"; then arlist="$CC-llvm-ar $host-llvm-ar $CC-ar $host-ar llvm-ar `ls /usr/bin/llvm-ar* 2>/dev/null` ar" ranliblist="$CC-llvm-ranlib $host-llvm-ranlib $CC-ranlib $host-ranlib llvm-ranlib `ls /usr/bin/llvm-ranlib* 2>/dev/null` ranlib" else arlist="$CC-ar $host-$compiler-ar $host-ar $compiler-ar ar" ranliblist="$CC-ranlib $host-$compiler-ranlib $host-ranlib $compiler-ranlib $compiler-ranlib ranlib" fi # # Find ar and ranlib to use # printf "checking for ar... " for a in $arlist; do tryar "$a"; done printf "%s\n" "$AR" test -n "$AR" || fail "$0: cannot find ar" printf "checking for ranlib... " for r in $ranliblist ; do tryranlib "$r"; done printf "%s\n" "$RANLIB" test -n "$RANLIB" || fail "$0: cannot find ranlib" # # Detect the host system # printf 'checking host system type... ' test -n "$host" || host=$($CC -dumpmachine 2>/dev/null) || fail "could not determine host" printf '%s\n' "$host" # start the log cat >$CONFIGFILE.log <<_ACEOF Config log. Invocation command line was $ $0 $@ _ACEOF # # Figure out options to force errors on unknown flags. # tryflag CFLAGS_TRY -Werror=unknown-warning-option tryflag CFLAGS_TRY -Werror=unused-command-line-argument tryflag CFLAGS_TRY -Werror=ignored-optimization-argument tryldflag LDFLAGS_TRY -Werror=unknown-warning-option tryldflag LDFLAGS_TRY -Werror=unused-command-line-argument tryldflag LDFLAGS_TRY -Werror=ignored-optimization-argument CFLAGS_STD="-std=gnu11 -D_POSIX_C_SOURCE=200809L -U_XOPEN_SOURCE -D_XOPEN_SOURCE=700" # CFLAGS_OPT="-DNDEBUG" MINGW=0 case "$host" in *-*freebsd*) CFLAGS_STD="$CFLAGS_STD -D_BSD_SOURCE -D__BSD_VISIBLE=1" ;; *-*netbsd*) CFLAGS_STD="$CFLAGS_STD -D_NETBSD_SOURCE" ;; *-*bsd*) CFLAGS_STD="$CFLAGS_STD -D_BSD_SOURCE" ;; *-*darwin*) CFLAGS_STD="$CFLAGS_STD -D_DARWIN_C_SOURCE" ;; *-*mingw32|*-*msys*|*-windows-gnu) CFLAGS_STD="$CFLAGS_STD -D__USE_MINGW_ANSI_STDIO" MINGW=1 usepie=no usepic=no ;; esac if test "$usepie" = "auto" ; then usepie=yes fi if test "$usepic" = "auto" ; then usepic=yes fi tryflag CFLAGS_VECTORIZE -fvectorize tryflag CFLAGS_VECTORIZE -ftree-vectorize tryflag CFLAGS_VECTORIZE_OPTIMIZED -fopt-info-vec-optimized tryflag CFLAGS_VECTORIZE_MISSED -fopt-info-vec-missed tryflag CFLAGS_VECTORIZE_ALL -fopt-info-vec-all if test "$usepie" = "yes" ; then tryflag CFLAGS_PIE -fpie || tryflag CFLAGS_PIE -fPIE fi if test "$usepic" = "yes" ; then tryflag CFLAGS_PIC -fpic || tryflag CFLAGS_PIC -fPIC fi test "$usepie" = "yes" && tryldflag LDFLAGS_PIE -pie if test "$usepic" = "yes" ; then trysharedldflag LDFLAGS_PIC -fpic || trysharedldflag LDFLAGS_PIC -fPIC fi test "$usepie" = "no" && tryflag CFLAGS_PIE -fno-pie test "$usepic" = "no" && tryflag CFLAGS_PIC -fno-pic test "$usepie" = "no" && tryldflag LDFLAGS_PIE -no-pie test "$usepic" = "no" && trysharedldflag LDFLAGS_PIC -fno-pic tryflag CFLAGS -pipe # Try flags to optimize speed tryflag CFLAGS -ffunction-sections tryflag CFLAGS -fdata-sections tryflag CFLAGS_OPT -fvisibility=hidden tryldflag LDFLAGS_AUTO -Wl,--gc-sections if [ "$ARCH" != "none" ] ; then if ! tryflag CFLAGS -march=$ARCH ; then echo "Flag -march=$ARCH failed!" exit 1 fi fi tryldflag LDFLAGS_OPT -ldl # Try hardening flags if test "$usepie" = "yes" ; then case "$LDFLAGS_PIE" in *pie*) tryldflag LDFLAGS_PIE -Wl,-z,now tryldflag LDFLAGS_PIE -Wl,-z,relro ;; esac fi if test "$usepic" = "yes" ; then case "$LDFLAGS_PIC" in *pic*) tryldflag LDFLAGS_PIC -Wl,-z,now tryldflag LDFLAGS_PIC -Wl,-z,relro ;; esac fi # Optional features if test "$usedebugstderr" = "yes" ; then USE_DEBUG_STDERR=1 else USE_DEBUG_STDERR=0 fi printf "creating $CONFIGFILE... " cmdline=$(quote "$0") for i ; do cmdline="$cmdline $(quote "$i")" ; done exec 3>&1 1> $CONFIGFILE cat << EOF # This version of $CONFIGFILE was generated by: # $cmdline # Any changes made here will be lost if configure is re-run PREFIX = $PREFIX EXEC_PREFIX = $EXEC_PREFIX BINDIR = $EXEC_PREFIX/bin LIBDIR = $EXEC_PREFIX/lib INCLUDEDIR = $EXEC_PREFIX/include DOCPREFIX = $DOCDIR MANPREFIX = $MANDIR CC = $CC AWK = $AWK MAKE = $MAKE AR = $AR RANLIB = $RANLIB CFLAGS = $CFLAGS LDFLAGS = $LDFLAGS CFLAGS_STD = $CFLAGS_STD LDFLAGS_STD = $LDFLAGS_STD CFLAGS_OPT = $CFLAGS_OPT LDFLAGS_OPT = $LDFLAGS_OPT STATIC_LIBS = $STATIC_LIBS CFLAGS_AUTO = $CFLAGS_AUTO LDFLAGS_AUTO = $LDFLAGS_AUTO CFLAGS_DEBUG = -U_FORTIFY_SOURCE -UNDEBUG -O0 -g -Wall -Wextra -Wno-missing-field-initializers -Wunused # -g3 -ggdb LDFLAGS_DEBUG = -U_FORTIFY_SOURCE -UNDEBUG -O0 -g # -g3 -ggdb CFLAGS_PIC = $CFLAGS_PIC LDFLAGS_PIC = $LDFLAGS_PIC CFLAGS_PIE = $CFLAGS_PIE LDFLAGS_PIE = $LDFLAGS_PIE USE_DEBUG_STDERR = $USE_DEBUG_STDERR CFLAGS_VECTORIZE = $CFLAGS_VECTORIZE CFLAGS_VECTORIZE_OPTIMIZED = $CFLAGS_VECTORIZE_OPTIMIZED CFLAGS_VECTORIZE_MISSED = $CFLAGS_VECTORIZE_MISSED CFLAGS_VECTORIZE_ALL = $CFLAGS_VECTORIZE_ALL $NO_HAVE $USE_LIBS EOF exec 1>&3 3>&- printf "done\n" echo "" echo "****************************************************************" echo "* bzip2_file configuration done *" echo "****************************************************************" echo "****************************************************************" if ! [ "$MAKE" = "" ]; then echo "" echo "To build and install, run:" echo " $MAKE install" echo "" echo "Other common commands:" echo " $MAKE # print available make commands" echo " (cd src && $MAKE install) # install library" echo " (cd app && $MAKE install) # install library and zsv CLI" echo " $MAKE uninstall # uninstall library and zsv CLI" echo " $MAKE clean # remove build artifacts" echo "" fi if ! "$CC" --version | grep -i gcc >/dev/null && ! "$CC" --version | grep -i clang >/dev/null ; then echo "*********************** WARNING!! ***********************" echo "* Non-gcc/clang compiler untested; use at your own risk *" echo "* consider using gcc or clang instead e.g.: *" echo "* ./configure CC=gcc-11 *" echo "*********************************************************" echo "" fi exit 0 zsv-1.3.0/app/external/memfile-1.0/include/000077500000000000000000000000001511312357700203015ustar00rootroot00000000000000zsv-1.3.0/app/external/memfile-1.0/include/memfile.h000066400000000000000000000006541511312357700220750ustar00rootroot00000000000000#ifndef MEMFILE_H #define MEMFILE_H typedef struct memfile *memfile_t; memfile_t memfile_open(size_t min_block_size); off_t memfile_tell(memfile_t); size_t memfile_write(const void *restrict p, size_t n, size_t size, void *restrict mf); int memfile_close(memfile_t); // additional functions beyond standard FILE api void *memfile_data(memfile_t); void memfile_reset(memfile_t mf); // start next write from position 0 #endif zsv-1.3.0/app/external/memfile-1.0/src/000077500000000000000000000000001511312357700174455ustar00rootroot00000000000000zsv-1.3.0/app/external/memfile-1.0/src/memfile.c000066400000000000000000000025071511312357700212330ustar00rootroot00000000000000#include #include #include #include #include "../include/memfile.h" struct memfile { void *mem; size_t allocated, used; }; off_t memfile_tell(memfile_t mf) { return mf->used; } void *memfile_data(memfile_t mf) { return mf->mem; } void memfile_reset(memfile_t mf) { mf->used = 0; } memfile_t memfile_open(size_t min_block_size) { struct memfile *mf = calloc(1, sizeof(*mf)); if (min_block_size == 0) min_block_size = 1024; if ((mf->mem = malloc(min_block_size))) { mf->allocated = min_block_size; return mf; } free(mf); return NULL; } size_t memfile_write(const void *restrict p, size_t n, size_t size, void *restrict mfp) { memfile_t mf = mfp; size_t length_to_write = n * size; size_t total_required_size = mf->used + length_to_write; // to do: check overflow while (total_required_size > mf->allocated) { size_t new_size = mf->allocated * 2; void *newmem = realloc(mf->mem, new_size); if (newmem) { mf->mem = newmem; mf->allocated = new_size; } else { errno = ENOMEM; return 0; } } memcpy((char *)mf->mem + mf->used, p, length_to_write); mf->used += length_to_write; return length_to_write; } int memfile_close(memfile_t mf) { if (mf) { free(mf->mem); free(mf); return 0; } return 1; } zsv-1.3.0/app/external/pcre2-pcre2-10.47.tar.gz000066400000000000000000146272431511312357700206110ustar00rootroot00000000000000‹ì=ûwÓ¸ÒûsÎùþmèn¾Ømž}°ÝK zoi{’{/íñ*¶œ˜:¶×²Û†ÇÿþÍH²cçAK)…ýn}€&Òhf4ÍKr è¥1rý!u1£ ºýgžv»-~Â3ÿ:›?ÕZ›­fm³Ö¨C{­Ùªmþ4ú¼,<1h$Cß>wUÿüäþ&O«NL2a^´k7[MVoÔlÖ‚%±¬MÛÞ²›íí†mÕ‡[l¸Ýl4Íúvá{ó|ÿÜÞ˜!«kòßÚ†ÞÜ\¿}¸67[«÷?|žÛÿV«ýSëöYY|þË÷ÿâúëÌr"?4}ÏvnÇKûß\¹þ››óëß®76º!þ—¯ÿÒËÝËMÆÌ 8aCF¢1ˆí¸Œ _ý€yÌ"ŽG¤†práDc€bàB™Qáá,ŠoÄ«$d#Z0˜ßPr?K#Û':é3FÆQ쬯gõN÷Ñ^( ÐÉ.‰Â˜ ožÌ1 ´Å‘­mÏ×eðhê2hä5YÚè¼Ç¶zy–áÛ†ëxøÝµÕKzÆpf:œÎ#‰è‰éCÎ5C1:b<²hD×â`ÎÂȰB(](H›ºœ¢Ð™QHhcF"‹)@~øàxAUý8‚Ÿ>Ôªõj£ÚØ«6žTj»Zߪַ?eÅ‚t¼ÚÍ]ò’ý?r"çÃXº »jÿo´ë û¿Ù¼ßÿwñÌT™¨G‹Øeô?… u¼h}B=ÇíaÚñ½9¾nóY¾ÿÇñðãÀÄ­Zí>þ»‹gõú›¾ÅLÿ\ŸNܯ¤q…ý¯×6òÿÍz{ãÞþßÁ£Vy§@ŸoFÆ”N\cRÏï‹Ù4v#è Ù_±2ÃtŒÈ7ÊùŽŠañüȱ§ˆƒ ê@4ä‡8H@ †~¸£: ËB:b8èÁ²ÙÒõí üîÇžµC<‘'Gú˜w|o":Á-b.i¡ÿÂÏ„žl£L  }ššFò•@ŒŽ Øø¥Pún˜cfž „Ôn!®ò½tŽU$™Mé„^SÔvHBV 9³T ­Jf-"|Î5€±°(0Œ‹Šy#•†”ö'2G´Kš‡”/ƒ†àdÉc¥a…~@Žz$öD°!ÄSó |Ã_põ*& è &vÎ+† 6QÒÖÈl|¹hK8U²õè˜*v|ÈTOQuÍ1Ÿ­FJ?óÐ\/—…ùÁH䣸4 Y ?ï@™fÏËÌw)ð§r¢›S,†ã™'ú¸RR¤¤ª°éh›JöiûL1hùÙæ1¨áØwaºzë—ÂRAÚCHB‡ñ¼8ÐE’®ÕòøŠ£þË}Dø7~Vû‹A¾oÑ¡}mpUþר/ä››Íƽÿ¿ƒ¼AâTãAi4°Mæ¸ ‚>å›ì©5…gÖÀr°ìã‡Ó².8xQ+vYb[À±ðœº;dâ{ÑØ•^bÞ=HíÏÄñüP£ž¥å|6!’! mSÆX!wE1¦˜oS.í{Kôïõ¬ÞÿÜ â·Þ ÿk·7Z÷ùßµÊvWu/:deŽ;%cž‰´òårI=&Ö“\ŒsŒËmúÀ0u]Ñ K²Š0ÍÁ$ÔÀ‘»‚âÛ|æ¥Ó·§Hí #–ï•"Hä™…C9«&«àŒÀ‡3Ao’¢y[¢€×† ηMÇ÷LXiW†@*Ï ¨8¨Uy²µS9ýB5 t âV9Ì´)Ù&ã‘b2([ÌÙ\!^–åŠ,–Ÿò¬G6ë(•Ki{©*V«’Àv|7žxË eÀ×\‚VµfBËR”i{ÔsÆ/(5¶K)…ÔÝýšº1ëbi¦\ì \ © czÎf#‹ UÂ! òüH ƒ]n¥í¿Í†("åÛt(åDê*s³Pj§¢o&ü˜¬Ä¾H˜S­óì•SDLx™™X2…ç·ìú-L(a5aO~_`0ÛúÜcf q÷9ƒMÈMê‰M%6¬åHÃiUðAƒ`äMõ°BìØp€ ­*lË¢ì+¤`¸c­*‘|)4ºÙ/WV¡ãe.Ñ0w¯®Ã³¼"Dz£¼ŒP`ÄRXid/r6VW+žŠ»Jäaòn½ò½=ûõžÕñß…žÙ®ñõÀ âÿÍZ«qÿßÁsõÆŽk}EèóõŸvþ.ÄÿÜÇÿwðÈúô\á‚/Ü[²î†åðLAFÜLIË0ïü!–¼gç)¢~lŽ}Çdi£Åd)êKý€™Ž  EŸVPÏ #KU>;øȃ™Lñ:;JgàÅ—¹Þ dÄš>Ï|¿“ jži±CƆÜÊ´ 'È·pß… :;ê}+H/GJ™¶ä<³b®+Úð¼æ-°Æ#,’SîºJ„ñhÕ0,@T>q8O$dú^$n@šÔ* ÃÃæÎ³ƒ½ç}ãy§côÿ>èî’öƒí „È!%ZÀ,êaú¦½±˜ébž85j 3;qP½|LAxðÁó5œ¤A£h¬áY¢7âÐy’ë˜N¤Ù@ ‡~<—f<¼ì¿îùõ7LcÿèR·¾ÑÁ. 2¢ˆŽøîrüâÛönßt_vÆáÑÀèu÷:/ºOŽ—{ÿꑘ—ÅÎq^ÝîÊÏÃÃD˜ƒ•é˜5i4ô´Øs<'r¨ë¼gV©Pµ"ê%—@îƒTß0…ÐP×ãaìE±æb95RVR?ÕÙ9žáXòó.óÛ­D>~$e¹Ýt¹Ï0d-øD×b`©¤²ÆˆÍ*«šb±Ï¢8˜m¬Xü˜‰‰xlA D$Dûë/Uxý„À@a޻ΰ6ÒP®ðiø¾Ž sä;¸ Ÿvñô‰¨Bòº©ºol™íí†im™¶Å¶k´±iom5êuf™ö°eYÛ›t‹< ç-}CßHb´¶“ãw8ñ±Í“³æ×‚€ˆ÷ýŠvû¬G*ô<ÿÒÀçxŸÐ3F´wyPqTYÆë_â@“H^™Ÿx/örùèîäà ôG!,ŒÎg.G’Îñ*>žÌj^fG¥ŸçfvšJ´Þ—ú¾z i&»¢ø´Û<Ýïíþ\X®«fÍrrGò†ðÿR]²üf€ÉÜ<¤‘tç½\Y:úî<*Qãs}“ºë 0ë g)ÝcÖ eæg,º@ÂÂÜ€ojç$/4t48#ÔB³ʤ`lÄa¶X/ü€˜ŒLí—¨ý‰žIÌ]aÕ`2ÂȉDËð½Ôå¿÷ÆîÞØÝ»¿‘±¡ÖÖAÃQŸ@¬‡çàÔÍ=}gQœ ö9ãöãY–†Âú±– ĉöô¸ÓëÖþ«ãã£ÞÀ€=³{t˜6?yµðÔŸkíU=z¶'Au°ÿä?+ÚŸüGXú/özݧØÑÏ5C&±ßÉ4KÆú{½Î‹ýA·3xÕëöwK4œ´›.·ÚF»YJ;ÆgŒasôòxÿ k¼Ùëî>7öúF·×;êe Jnÿ>îîödúG´'D_®aáLK‚’_ý¬µ[=Ê”æà]ì«<4ƒ]i›ã¢Å€2$H`@ $wðÀh8]? r?ë®?BåF]©|±UIxÉ6É™h‰­Ñá3$j6˜·Ì~Ï Ðõõ«-M ”3kmòõ<ÎG˜™n©iî¼ÌMq/Ʀ&[-ŽýCP̃ã¸×}¶ÿ‡²®B@ëËçò“ôÅl4\Mž‚ÎfF`¡ŒH_œÔ8CŽsÐÈ£gÏ+{áfŽ}RC¥–Õ„äKar+¾êws»k-Olw·˜#NˆÚ J@–”Õ›FuIÁÇ{ƒ°7óâ,¦æâ Ә姜¨ê#±Õ*¹N]-’¸zÉ.™‹ƒîŒ/"MíàZÀŽMÞ’yÑá2>ƒ!/ Ì]…œ|$"ÐÐþ"E +bwËîÊÚB8  ±'Þø“8¥U("4žLËËŒŠ$—½gÏ©üâü±ø"Q+¹ŒGnà¾bP )VÎÄë…_3ŸÇ!^ªÅý(ÃË-ðoÖ¾ÂÑ!çæØÏ3ƒ§…)+'i;™¯ž;®ÞíÒ´^c¯K-Nƒ¨ì¦†y…Á’-p϶5ZŸL·6×7׆u=¢qR\Kù+!×y#"0$¤xtø,H>€9:,.Øy5d÷O±k³Á ,)ѬÒ#ð®víÏü ±ZW ªÿy«5·0Òf-Fké‹,†kJ™oÙŒ=eÃx´48IØYÏ$Ìü0öJñz׆ʅTÿÞL­0Sê¤#›½É~¤‰‚»³ÔGÑK“¼Õ5š&™F †ò(û>ærQè\ÎÒâ Ko‹0£F½X%ÅËv³xzã¢øƒäš’º“–HŠ8:bTÄ ¤Ý8a@UÝ™¥õ¦Q5‡o¡<ÌÃ'ïºøŽµP9 S$>J\Xbß&¯<ˆsQ«¸By¡nSå0^P/jò¼ o'Hó&/ð3Ït˜¸Q'¯ïÉã¸CÑ=‡¯ß%·´Ôt#GDy¦Ÿ†Ð!÷‘{î!³ïbï 7`2—¥ÓæŒMÄåÁ!#!þNzhˆÓ<Ë ŒZØŸý8œC‰“T·T«ä âÁ»4.$óR’ja<ÿ";½5`‹Ddª¼†Çbâ‹Æ¡+ùHÞà­?íhˆ¯ÄdÍ ì½ ª8)uvNNŽe……<Ãw¼NN@`''1ON†Ž÷qÀ¼ÐE»)€JäS.Ä$s³{#æR’"ÃéCüGÖžï^¼z"Gî@@&Åa¹|ÏWô²‡™ˆ‹(Uô~€']aHÀ ¹ÔÄ.'ÊÊH :çÄU$¿ÿñ LñÒ=|]üñk +*WL9Qˆ¬cÿÖU›Ô(Jxœzͪƒ ˆ¶GÖ>|PæTG+J>}ºNÁAåæ‹Â¥É1Q¹Ø ’fr?z-"?Û›'ô€×¾¤@1aaU‰b/^ò¾í*Å\^æ2˜Š~ ñ ù_R<bâÿ*òȸŸ>(•%þG{&®h׿2/Fa»–׊8Ë…a„‰X¥B>Üu-’€2bׄ"%.Dn$/¿‚`Ÿù¡™äbŸ®Ê”ŠËÊ: UâõÊ:Å«Ìß"3Wºì€$P}ó‰®oþ×™æ­'PÄ¿ Š|¾zÅþÂt¼8¯ xùæ¤ACÀ*÷ÅEŸ (¿8æå$S[F’7¡1M$6«2¸„•Å-A"ó…Žüª}yÞ·é¡à0ü†âƒ„Ðr]â2).“ágsÄ K8'¾Böó-”¸f5¤œ˜+u¥¶A˜ïTõ:dÚ>Þÿ¦#ҩ⮂,G2§hñŽ|®Jvï±®òX¹Šáãòãª&XõBUëÞëS•dz¡!Ó}Xüt]çvÝ’_†5]R­Ü‰s»+Å h¶ú—ҩܞɥNô|­»áÝæåñÕn%í{÷öÍ„§mY?œwS7¾³•ÑgÐô¤ÿ4_]~³7ñsåÅ éîò )f°_R!Uü•*XVÔ–Ëå¥ÕUϯ4óÅ×ÓžÈz‰²Å9óI2%0í|ò¸¹µi²Fk¸Ý¶)k°ö†Õl [õÚf£e·(m6ÚÌ´©Åp*5½®7WN…yç@¤4Í#{å<[ÅCžÆs¯/ˆ_d…óÍGGq*X³\Sp6Js2m*mtÖ›.ÄX)–¼m—Gˆ:@2èIî=^¶@0ã\÷’«“ó¾QZstæœÇ7¾G¨nfi¦7b²eÑ*Tþ Íݵ<’ïuP÷ԙ¨$õbïaZV$ŠësøÏ7g’YsP&¨ÖœGâðå‘4Jk¡Y),òõe7é¾ò.Ýü»-9„_zŸn‰bÈhësZ±D­~¬Úªû´ûäÕóÏ[¿Á=¯9™-6.UäÛ¾¹µ¸4_pëv.a-SÓ]ÄRone=û4ý0ž]ñwïÙ¯ëÙ•ÀÐ³×Ø¦i6mº¹Yßl7ÛVô[ÛõZ}k{X³[æ¶U£[[vÃL<ûê©Ü½g7𥄛ºtv)~ùÈ˽ƒƒ£Žqt<Ø?:ÃôªßûçógßÏßîƒÞž‘¸ZíiÿŒ©ñæ£ûG·ój°÷ –À´78Ê×.þ¦ÁYËNù>”XJ< ûê´„Ld…gž»ßÒ$tˆ÷”µÄ³cN§äbÌ ± Ev{1ɤæÅ“!þ^Q¢s_þ—sdD¹ÅÓ ¦nòPÿmgô¹ógòUaÎü »s(ï: ë>ìɪ×m>Ë÷F¡zE=úô3o­÷ÐGñ÷ÿ1ô„Ôã6˜É£š.S}bâ/Ͳ|Ñ|f ÕKùÉsü¯çÆQo¯s ¶•ÑéöûÏöÁ7wÿcïÉ–ÛF¶Ë³¿¢/uëR²î«Tš²,Ë3Ë¢¢ÅšåNÉXÆ$À ’¨º“§¼ß‡¼¥R•ßH~'?|BÎ9Ý 6@¢dm^85‰^ÐëÙ—ýíwk$É8  XÌùu“BÞTÝ·Û?_ÛŸ¬£÷3E P€3ŒwÍX¾C¢§Ðrì _ÐÖ¢0àýºTÙêê#SBÊS‹ôg½e[N³d7x©^n5JnÛj¹zΙ]oUÚÕ–kYŽe ú³\¨/HNâÜŒ]b‡<ô‚QÔÿI]u> ã°Î!…‹R"àØ†ñ¼É¶]alk@䡈C…2W¼”Ø~çZ²£; Qâ…!æ°Ua@¦ü)Ñ×ÏÁHÓߎ—(nÑò¢ÈLŸýT¨—ÚÉMN ³8ê’Ø:F›?Údg­š@œA“søv+bhÛœ²¼;é¼=ÜßÜÚ.fÁ+b ˜¥7ï6uIft?û*ÉÐ (I„™ƒ‘Õó"$ßþš’çŽ|º¾½ÐP¦Û}ÏrÏpèRÖ§h­˜ê@]¯ˆfQÆAa‰§3…¤lr#JáðôCÙEPã¢Ø?[êj˜¶ÍÃI'bF¹Ò(Úöbœ›þˆ¬V€…S=–+…Úg­åþœ6<ŒÙ=,X”;.fÑšÚ55…ÖªÍçæVYµbXÀ›,ÂÕáøf3v[9ÛfF¿ZÉMqyàø)ŒðuæeŠÈü"¸ºOâœÒÞß49.ÚâÇ%}ú2K£öí¸|iÇ…Øì…ÎJ6˜JŽ9ì÷Sà³gõ!Yë§ÌVßSuHoÅR_%ÃG\;‡Oƒ—¾ nÆGô´GaÈ};ö³¢¬ k8E#ŠÎŒÉIùLxî»a÷RÜø/ÃÓ:‡GI>Y=MrØøExÓuñiF݃÷È_›ÑdR8Ýòí^çdFp8ÝR+œË¹/úfô‘alVšYMÄg˜¹8ké’ô³©ßÀ•®‰§ÔÑ`PÜyõ®hûÅóJX&ýá%uZƒBb‡øÐߤd²®`í2ž]&ŸÆ¥Nׯ%†ÚÝŠ%Dð%HŸrí|&ËÅ]œYÜÅ‹uyåfpckv;þì²³¡ÙeÆ3†6Û9ì´Zõ¶Qf…d-¤O6º„õ»ìÙ Ê}B_[¶ƒæœ€v#z0ò=LM˜šö“|´Ü} ¢{ÖvJbΛ!2H Ù9g[‰|ýBv:‹¶þžíyþïfLo¿Úz½³•­éxog«óz{£óæFKâ÷`óú†-V4M<Ó?°INræ>Î1µóhèõO$¢óxúâøÂ:=ª(šszî˜êPoÌ@‡ë‘"ÔÆƒ•.þ©0Åô~Ç9F@ ` ÷8—®ßâŠC÷‘ò`>ôºÑÀÏ'1§Í!ÎG¥îœîH<Á´šX œÝóå °&]©Êøès¦†uò/‹2ÆÏ; 7)«€¤¾ÒÓ“bŸ§ú2XBBµdl^4mÂÝ2 BR€¾êBѯax½0Pnþv0ð`„Û~üBí-ÉJx,O, ŽÕZÃD}"nAZàO¹\)ëQû 6‹Õn°ÂpŠÏ ýZz¯„™nñz*ì÷$þd| ²b³)Övö† Ȱܚf“êx× ‰±Às‰KøjätÅ]ˆ³ø©( Â"ÄÂ1c¹ÌÈ„‘‡HäϽ}ˆo9†tZô 4º6>I¬?Ïxv¸·¹øCçHo›)Ч›bÿeQz•JO%Ã[ÄÙ†fÜÜ50Tµ—Ü,7ênËiÔ­oÖ­z­T«µy»bÕZ­†[«6JM×,Uð× Beæ–™a_k0šIu‡Îb` ˜´bAßUëª2³,±ã“¢+o =÷\ŒŒKWÛpEÖą̊ª›Ã µ¨Z&N¥Oê®ómþ²ÝlZVµYÜn9Íw–®U³­º K–cÛÒVðN›à'7éqñQh¢³·”s':vJìródq7"ÅO¤ÔKż&9¡Ïܶ^ÕüÊÊÌ Žp†ØÁ|jÓVS;µªoax==6‹’Ãõ4‡ÒÕ žPÜyüÊo(¾Ã?Ǹ$úCºHq1ÐÃäÔ‰.c¡C ê ×Á ä‘À¤j#bJÀ®ÎµèZ&<i†*4Q` +fö.ÌqÄ0{!¹Q$7· áImCØ À¯¨ƒ7\õn£o@ÆÎ°ÏŒq–Œåÿ¨ab§J¶_' lo¾ÞÝÙ“Ë}Çi½&6‰.ËÞRÐ!õYˆR—'„Õ€åЦ‘_^9ÆÇílØïéæ0‹â°©5@xŠ€"9u[<-Ê¿2åñ˺Y.µËõrÙtêuÛâ­v«Ú¶›•FÉj–•vË6«µ¶Û`¡^(Ïœ¹ättÉ-r¿[÷§G·Û{I‰/²§¶wê¹§\8D¦ì~¤Ðä4â"Zª˜ÖeM­"‚È‚ç»Á·œÉ_íg‘ü_¶çŽ®®nŸl~þ¯R¹^mNåÿª”ßò=ÀG’!;o`‡ç%»£T*‹¾è…µëHX¬Ljí°`KcáÑZ' 0Þ ‚nƒT/¨ Myšcq5;uEw/«NµeÚN­U·ìV­Å«Õj±\¥jµÍš[1]·]ª49ùàœŸexõF䄈#,Ào9áØ ì> k©& x<5ÅL ú|œ Q@hïÀX«¥Ò"S•8y+4câý ÈI ì2’¥ÃU"r ûí@jÉ£‘muÏ\ ™#gŠh¤J¡'¥}½¯ý,ÿ‘ 0T"ï›ãkàµÞ¨§á¥ñ þ?ÈGÂbôDà0¶)7z>:xŒô… {ÈÎųô º:`4Pæâ*«¸Ètîp³2û=Ȱdfè(þ8Â?ÞplLE©²õ·"j”û¦o8Éê !04Çþ.Ä#·ÈBÀWµ¦X• >vO®¢·»‘Ác¡ù’Aƒ” `Ÿ‘Ü…ý%‹I×·bw÷ý»Ó÷Û¤8ÄPòð¿3”"2Ã/DZ½·–ÿµd´{ñ×Bòo>T_HǶ›}áq÷Å÷?«w'œr…`*<©“AÐ*À!V2Ù±÷¦¬ðÒÚÙ)©Ë ¹M¡°À;Œ@žˆÈ ='_X;ñ ùwqx´žÂþt‹çEq1çzšT'LW§ oôTðøúj@‘Âm2jt±ÏÃ.°ÍØAa0N7–ïŽ ªæÈÄpäx=¬ð$yÿáèÝ®’/˜Ê–Ä@!u²ˆG“½dþy‚}}ò™k¡AÒX«Š •Í©jIrõLçRË#wëü­'¥3j­h“^Vëí¶UµL³\‡¥©›ËäÖÊe³iÖ,«R«WxÓmW…Þ¡ÒžãšEž’2‹-r>´+‰aìƒp¼Æ’ÔS¢ ¢ÿhïÿ¯—å)þ~£ÿà³ÄÞ!ë"}!òvÑ*\c/Šé>­ŒN€>POÌ>ƒó sðÈ pL%Ï–Äåí÷= ø? †€(‘‡:æÂ³¥gÂ!°Ñ¼èŒœ1/x/½ãý ÑÍâØqʈ€×hDùä]rV¡³ Ô½mØÑ Ï€Ö 1‹€ÊNÃzA׳ÅÛŸËÛëmÇ¿ž‘ê…ÜQÙ •èð!Ú"à0&ï÷ü©‰±}a9$ÔÿKÔàƒjñAF_Ä\çž[×– HÀ}ãØGòlAÌ:C•€hˆ"ëÞ §KÒ±ˆA¹2‘.A¨ÆrÈ}X_JÌ€D–Ü—¡^Í´`ëfùH2œq¤Í”\Ç‘|ÏWš¬ÁžÃµüœ€©sRO-==Þ@"uÍ”h¿p«ü'ê@àbçíÁ Ï~Ó”€òÔÈc©:«ðÍvè[7À7ÏMõWÐIøk0ž>~ GÖ8Ù÷.7C`&¡!©#ªÞ ×J7Ü)xB᪦!kN1NiNB»w™2£Of)’T@6;±ÄvâñB+'.r¶ í”:*…Ä,&Íd‹¤Œ/‹ºÁdô·§j’³‰AÇš6Þ-M÷3t 0)8 ¸–…I »ûa«BaM–c%dYë­ãWc…&\¬ÕV÷ÐÜÍ áÄ8ÀôÇòÝEýœÝï¾ð&"h Ý©Î0`ó‹œJ¤¥ð¯z-ú·Ã鎸Ê_3£kYŸ’èbú¦a ÍÔ±`L‹AØ-Ò<¡EÙä%jgÕ¡A›o’$š6pâ ÌSš ;¶aË[Å­/VÙÖÒ*.ìp7W Ïâ-"ĉׅ€apî Ü|ŒzÈeôa-)óLÀ¢ÙôÎ¾é ‡üåˆsäWÇ5ðõÇÔTUosVå|þç_ÿûÿëp3ú02“ÿr•̘V G?"fçÐ9„9ò^O­Æÿýç¿ý{ÊüxþÓë^Üýü»ßXk²´ry­¦Ökä#EÃ}A¸¦Øï93_FóX"0 Xà-Ú}¶ û…±¾>®Lvš¨â‹OÚϤýŸ"!„à„ ŽЉ}xZ‡ êÑCúûPàn›J®U$2`%22‰ÔNʘ% u‚A™ÞÊ@"ÄŒiB|à„f7ðµ””ϼø¨× ´¥YÃq¿«Å1Ø… ´Ÿ–9Ôg8ÇúP,¯ky¡“\Ÿ'{fºÀ jVòsÑ7Lwo«Ò5õY\q+ôz£H禙‘^³i/àêŒÒœðK@JÌpÇô)rÿ‰Ãíž’ †aºð28áY㸸MãÄ ${°#Ã3#¢˜ò6jëÊhUã`aù˜Ñ)Íã`±è~Í{iBŸ`Üû™h°4“᧯µº±‡ûõþ+hç›ïb€ 72ñláùRHµ t+ÙO ¸Ð@"½Úè²äãÀ+pr3Ýñn{ÅÆÂɬ©ä} ÷/+,¬¡Ý²ìr·Å}´0/•e¡™Ü|U<~¥C—jAhöóJ?Jÿ!{)hð†ê<*´cú´ü¿@`ú_8~˜÷ÎèTæ%ÿýzî¶²áŸ}»W1XP;P pm|ÑèÞÕêgÖƒòÈë"<Å„­ñ<¬Æ%Ñ™ç t«\u—Æ5žÀ M[Èþøãa G DLÝûO:"õË+SÔOõ:xd‹¤BòeŒ/MF~âÜT‚âÅògGYŽÃÐUKQÞ]©t|‰:=ÇY¨žç²_YzÕp‡~['ÍR¢2ŒkN¿±eäßTÂT2½_ûš"»“é±®Èç—œ-ï¥r.ßIêÃE'’ÚUº‡ð¿JÝ…Rn…‹Ä4ç¦1œ5S×Ó~"AvÉxãLµâ~ë·YDÿ}¤Ì»=‰d=“® XÓÐ#‘=6×Ù[Ǽ°”ì|òǦ€ˆÌûvCK=«,róëù´M.SIf¯iTù°¸Z4ù¬ÌjŠ*ÄŒ$¯òDß1üR¾Ø³‡“™qVæ)*9Ìoj2mÓ¤>¡B%‹CŒ?þðˆ1šÔ©p; ÛðYF\ŽoìâvQ…ù¦/µàâž>}ò^äv±(=zaØ—!ׇu-Ïw‹0éŸ$=ÍÛÝ:@z¬š^ºü°½Ku š*{©#ÀFya½hZQÐ ¹H¢šþ,¸ k²]œA옴“‡u=&äÝQÏ i{‘æIjH*H²ÌÛk@J0ÈâÈòZk­Bãþáu¼ÊŸ´Ç£>bb<¶i'¢¥É"&Ú6ÁE:—1 Œ¡¢†Ìñ\w4D352’ïÂs›lg($NP=òIà+¨2"‡ÀÿÚ¡êC((¿¨úÕ€U´îÉ‚¨o0@þ£6°4S$+qwë˜×òÇ£u$IÉžmbÐ*4‹b¥&/È÷qU6¼Þ+¬Ã©K0§…¾\âûíƒ5–«ÊõB3wÏäëã[‚(¦n˜pnÖ6õó0ÙBœ#Û¬Aa—¥R½ÙªW,×4[m³ÞhÖê¶e¶ìf¥Ý¨WÚNŵ«íVµ$‘ºÓdçfèñá=5ŵ’fÔvâù˜"vfF,æD°@SU–áKµ²’$V.DáƒQ+0Äy<ÙÄÃca@¿¾?ØÞ»ÛÚÜÝí¾é¼MÄZ‚I{Û'‡6÷~Þ:ØÕ‚² ˜¶ŸÀáÕáÁ©l1>Ò[gÈOóÍ`¶ÀL8G;ï¶ ®nü¼ñnÔzGgHÃiJ fl2:Õ‹:H!Êæ27 hб¢_skÃiÞš> ÐË>cËHgz¨GÀöÒÝ`E§"ðü"¬¾F)²ïÿÌÓŠ<]ä1æSñôæœãÚ1ã\{ójwé (çÃÔa¹£b+Á1äà‚Ç9 D—Ñý¾Ç)â:+²ßGÀ²ˆ¢¡¢ŠÒÁ d\:#£H9Xœ±áE@ª `Š|™dH†ÉaÆd¥ÜÂÈCöª¼(¼Ì#$RØA¯ç9<áÞB ñkŒà£9Ö©eŸº.aö Søí‚B8X\z Ì~,Œ('s‚µ—3V6-±GŽìˆÐ<0L‡E)&È”¥”ñ ÇuÆ/v¢<ÞÛ9úyåÈ S hŽøéÁΛYâÍXN:S¡=>}µy´õÃéáÎ/Û¥ûÈXqKïXEãûêí¾•ït6‹óóaoÌ%¾Fq0pû¼0ðÑçXƒTw!¾æþ;«9Ý(»ó-]è–ØñÖÁQ£†èA¿Ï/”w¾\?X¡×ç*‘Œ=°jd"$H­7Ëó‰uT°ÙôE` mß¼Á€;q8šÀg"³œØ/ ñ4ÙÑ›¤Þ Ñ²ÿòÎó¿?1€‡`/h¸8ø=`ö ærŒ;OpLö4âáîà´Þ>@ ßãhÅzX €ðh(c i½qŸ¢é¹# C9_r/ÇÁég#eÉ1NæÓ „NŽb›Ðχ1ÏÑq?䆆ËtÑÞ@òP†Ñíºí!/ÙAØsÅa|úr’!ÃÁµª#,1èûK×*·›V³bóZݵ*5·Ü´ÜªÛ‚1T[­v«Þ¨×œ²K¡S+ªfö€âÐ\å³dâÁ‘Låc˜¶Œ×4sŽ®m¯ Z‚¿$l‡¿Ýã5Ç-'8’×´’k‚yý7ŒåZ|øÿì=ÙrG’σ¯¨#–”,^^Ë!^")ŠG”¶Vº @®ž>ã™§ý‘yœç˜pìmfVU@ó-i4¶!±ê:³²òNŠdæ‹ýeu.]øC”)D×§»gí”%÷Lÿ§=.Ó¸"‹ç%ÑŒ*ZÝ'jƒSaNdûBg$1"&´›—`ˆ_þ–cLðžßmK¬»¶½úñ¸Ä!Å€À3b—Š>¤C,bzåÃEf£Ñ—ÃàmÉýB¥ùa°c:›€,§lSŒW‡‡D#cÚX8Æçw/v:{td]\ìÕðÓGV±b`~16ànƇJ xR£¸ zAº7Ttü飢0¥ÌWSLÄY¨”†éKG¤|Y(àÉcÚº&S%· x=ŠM¦ƒ@]6_2þ(J&F ”{Qc:…T5ÂI/:P:ae9¦^޲•îÂ\ãÆ.ÎßtôJ¬ÿ'#²'Çõ¹PS^ìé[6„läCN¹=*ëQ8mO”÷©ZèTµÐ«£3FŒ:á“k[Ø-Œ} ÝÂ$Ú©g;ÓëMz £¶ôÄ .)ØD×›Þ«K ª¨”÷0®+¼Y ¨ OÍ`RÐþ=t‘€ƒ@ã ’zÅmŸä¾)T«Óéb\„B å½Æ¿@C|p¿Ï`iÕú3Ü,8m3?1ÃÐà¨X[v›-YõÅûw" üaµ´G¡ŒœëéÑ,|Ip×’TÎtu$Ì,Y4â9ô ;är¢0£b[ì¨ g#I¦!Î÷•3ùxÀþe¶ŸŸ‡]Hqúò ÿìüX…ê¾Þº|ÏÜí¶Ó\Ûn¶ߨZwÅÚÖÀqœfsu{mk½¿µ6p7·Û­M×&¦ÍrùÍQRO4>ѪöBœóQG°@0ZhÏÒr´\¶ mŒ4½ç¢@`b’ eg0z„ÂpY™d•é´ØEÇ"<³L2H³ФÛå7ª¢Ë,u¡*Jf8×A”j±Ÿ¡ævN_œ 4aåèP‚ÁnµÂŽ_Œ!–Ú„ÍK? s7ä«hH¦i×b ×6Ÿ\ù{ÛÜã4s»ÛŒãrÄÐËʯæEñ?>L½ùéIÛõß~J>$Çuäó K]MÇ}kˆù—/d)ã@Œ2~ß°[½Ÿä‚ÀèneU:® µKC¹ŸhQé;èNâ“}õC Dšw!Ê v—ß “ú©Ù5„]( ¿@£·ä憥ÿ­ïQbéóßÂÑ* ¤Y-À9ÊíŠòd#ÁK·E>&Vd¹Ï³3`f~¤c üöqie46ÀÑhÔëõÔ‹§E´&­DíñXRŽeÔxÇ==”P÷Ã{Úï¯m ÷ÆôOÑäõ#Äÿ}Hüç€ÒŒüúÐ÷ål•äÿ…_ã?†ŸÿŒBv }W èô!Â5y %”v¤;ó›ƒBç‚¶'b¡7á-™aʃü= Z±-w_°b¸×t«CÈ|ª$@ù~Ž’ª»¨Fi€G±(>Í;CèäC²ÿÞì§FÉpÁÎõócýPÀ™HëVª2mKc–è ðd®ƒv²jTêÙöÖš»¹¹¶án÷W¹Ølmõ·š¼ßÞÜ^ßXwàvk^·×ûY?Ë-O?ÂùJ×8³ùÀßÑ«ÃóÞîN÷ ÷ªóRþ:5±F¼áGuŒŸÙC÷£¿Î© ¨˜±ø¢&ëÁl¾+&³žÍ$xË ˜zTa–up³ß´ùæFÛm¯;í­µ–³ÑoµùêÚÚ¶ÓÚ¬o4Ûƒþj_ûˆÝµ^6I²îqô=é`O5þ1YœPŒaì”ð)·ÇÉã"uL1€ "SàoÔÀ$æ[¾5õS—ÒoIçþ"ÄWyP’n-Öb[~©`9%Ìw¤ÊU¡J‘„jB)!@,A(qÃF* mx´œØöK¯žV-¼yPÉLáK[xùU˜j?¼‘-n§¬Ù[ J0ÊÝpûÛ«Í6wÖ…»µ1hõ7¸p7Åê@ôáYÍYuVׄ¤¯ÙB>ùï!ô_„fÝ_IÞ›ÿ»½ºÿ{uíkþÇÏñ3§eºÂ¤8õf5gÇIšÏî.šp‰ûžÅzÚVHe(JÕ°ÈSëÇ=À}¨ëD¶&4Yo˸ƚ›”°¹|+uXž£‚H½2IÅ\‘ŒòÉsçùìG_TâÀ|ítfb.¶bõé8–aÎEx-Ôphî°2OžŒ°ä`¨¦iøpXóÙy?'—Ÿ#-ÐS].C˜*Ò=fTû\ï;‰Ÿ®ö|çU 2„gµEmÁ¹3X]o¯õûkƒ–Ójoln·úîú†Ørê|Ðo­®s¤øðéu«Þ®¯ÝAµÒº™œÂæn!{pZJ…Ëæß/‘®±gú¢P@MÆcûòüäନ#Ybåð£…,8ësiO“6ĽkîHˆB%.𥓸d@WRþd=æBEØE×:¤Q£RvÁ+óiÏ|w¥³ê@9±1ýèë,±0˜+Zö«'s“5„¾x˜ÍÂ$,½æ^"`ä€=LÒÁ|æš,J•J^£ìÛÌ[Ñ.¶ÜK ç“\Û²·mŸOû»»Ó9~NVß úí Ij}œ$ŸAW×ÿp Ào›™,Õ7Â~-…ý/ž€}ý7óß’îúos}sc!ÿÛÆfó+ý÷~À ßEãýk’ŠY á¯fŒ<(âܼ{å¼ËRÌ£q„žÚRé ·v¼) .mÚݧWuv3i3xêü¯˜¿: ˜ v|ý“}顳ÍJªñ~ds‘ªÆ”Ÿ‘ð®ÉèÝDd[B Ä{œ]tȾŒz*Їì¡H* øP£Í–£P‰Ôb…ÑëèoèÙȇóì>ÞþN[¨Œ&ü9y½þà-äðZ]0ÖÒ°ür,| ÔYI½Kf–U¢á'ñ'"b°DÎX~Û¸ÊÃöU-åpHô.Àê$wÉ)æy1^Y,–A1[º®raË]‘15uÅLb‰äž9âêù®ÕQêEr°ŸÎKÅ ä`f¬öÀÚUGÇ-€ËWœ½-ÚœëõØGxÌDGƒ¢ÐûaÒ½Ü+ˆµã-)V²Ñ=)Hü,VZÎi35ˆÝõ-BˆV6×–eÆ+&`_`4 RAk ø-|mÞÏ}»ÜZù¸>ªÓv—Îòíª‚¼å ?sÁ‹ÆboÀxHÁ«)j ä Ð'Æ×R{ä°ÚîP¬< ÑàÅ¿3Î2…ŠÉ[û×LÚÖS[ :*ÀTÝ$üÎ̵R$þK¸‹dЖU„5m¹Ö€¯Íf«ÙÊÕàŒk°äi8}2TO´ë“vÁj‚1³¢Ð7frsoÉ0 _ê9Ì€@dÏ2º÷xÀ¦ Gç$‡ÙÅpÙ¸Œ¯k¬šg‡hKOžÖNâßPöaõÂ4¥uÞm“ðj¤ãz$ ˜´åZ]œ$ŸFf ½qƒa0L¨ š…ìˆöMë$Q4#äÒ¼{"åN–Ò2GjŠ',7&¨B>kŠ.SY/õIa3e#©NÈ3=}KvÀ’õ ›jä4muÊ*¡Ãp4Ò@Ð1‰û,P+ “ÂiF67ûß^dѹOmÒ+O0:<ڜϯL =ó ‹/û‡aGôÈô°߰Fí<s¿…ï–Ù£Û÷5Eµ¯ù¬z…>Zèøœ y@ à,ò‰\•ÅJâÜ£ÿp4 ž'ä ô¼‡¹`2.”Ìù~Áë4ðªÑ2˜}Gý¬Þù:x¬Únnmoµ¶Zß”Tð Fuø¡À›Õ³í½X3&I¯%% Ò²Ö&¬Šdj )±%_iíåb­8ü< +–¢t•S”bí†2ÒªC©¢Ø-Õ|ü*¿ñÐSé6—óª°·Ë‹ðò»?móh§‘A´,´ÑIåo¹‹’{·kËP‚‰æœ÷‡Â½sãš Ï>4ñy/ã‰>´Ð,.¼aÿ]T†‡94ÿZ<:ïtëÌóðòxïàlï@ßtö^uŽ/Ðw.ð”Þ”T¥_ÂÅÙùY j<¿BÑýŸz_Õt–ØIõÞ/:YÈò¡Í7ÎTZ­:åqW ¸è_Íýß&ÿ‘CœßÕÆ=òŸV{m}NþÓ\__ÿjÿõ9~F#˜']v#^Â…Ìâ+FFÿ©=nT*ëþ Wÿñüoò)\yxëá«ÀÿàîoðI²É¦z\©ôzÁŒ£z½ Z.D•º'û€1R I¤íE]ú•NâÂf·öê…û8Œ*ÆؾKŸW ã‚l1;t…4íXÔµ[–±f¯’˜ 4ÅÜ`mæRS`é]Ò¯d|ôk©ØP€lê/F޽’èˆö‡½ÍL˜/ºé¹Êݙ۟dLÁÚçnë⽘„œ{„£¦GÈŽ¿ÏU”Ýg5垥U垥u¹b¢ôÕ ¹¹!ª ö8{œ™¹Ã¸¾ÙUÖPÖ´²Þ %@D¥¾žn×täºÔÖ,ùëüÍ.ÝœeèKê e‹]àr—§¹ë|)e¾×—ºðÅA3»J‹ã]+»Êž«eþ¶ìEú²›õ±›T߬?µ T†ÛÌ.u%ºðVþsîÝÏÝ77 7s¥áA±øZ«p3W`ñ pÔ²qCá]lÃÈÚû(ò0½3lhzÿ7…ùE¬3òåÈU뽯¯d6Rž/Ü *ȱâÙuÊô,ÖzL5ÕFÍJ¥A¶×¡ët †ÞÖ±€.4*õÜue‰ø_¾òæ#üÊÏC¥¤6î9ÿW›kÍ…ó³µñõüÿ ¿·)Oƪ¸‘Û¿ú®ò'Šÿ”e+Bc§e¢º›‘1Ô‚þ{ç÷ð[Üÿú±Ú¸Oÿ»±¾Hÿ·Ú_éÿÏñÓ‰-w’x¤BŒÉEìý^N<]yz߯RÙSÁ ¸ìQ\©Ù_¥r¡êDBK¦‰©xkïVò²GV¶«;CïØ:†Y6¨mS½5BªWUƧ=ÊZÅv/ME:N ՘ưfSR^-­ >6±õšøb$=˜„#¢*•.É£[À¢>1ŠáœÜžTÜH_’o ÆÆqHÈ+* ,ÑO(íG1¼¯¦•3錔Ç#öÆ |jþGåÅ¿üÝgGÖY·0_V惖“ÿ<¢y9¼8Ĭ+8»j¾/Fú¯¼Ä…)·¨ŽUÆ8Ë¡qsxÀÏ Šïˆ„úþ¢ ÿ†ßWƒÛïÏøD|×€ sß2NßS!¼4Ÿô•;Ë} Ïàïܸ¿ë‡ |}å›çÏìÅ”Þ×'¢žŒ¯l±½ÔÅ\ Ø©D“Ĭ#"Aöø¤Jw(ž°W'ØtÇÍ7ÿ˜’ÔÔË$›(„±ÿÔ@ |ôû¡l4¨ ÷c5æía_¸¢P6m þÆ=·¶é¸G7b¦gƒPÄ«>Jʇk×%­ó7t¡"Œøp”øCŒœP:Þ…~âÃó)î•‘VA_ÑA}•í‘åˆ2QͨaW´a 7{9Ô [à kµ·‘˜h½æÈ€DõØVº´5«Þž(`2†o$¬@`¼‰lgX¢à{x:ø°çe•ie‰ƒm{¸®T/ªÕf)˜ì¶~ €ÉD¼Ž`<#Á/âÝax:TÀÕùÐ,ÍŠ(Že“ö»žÃOœŸ„`j‹¸‡â‚T²¡h1cs{{+AÌ-íÀ`t?<˜œ*/ñ¾0¦Pbii©€•ÓÉé’ú;<+2u%Â^µÒ ÏŒb¼ÎÎÄÔŽõ|}Qá.ÚSñ«CÛEA¥°àbJ­eç]¦‹í “€e‡žb§5UŠí$ö‡·¿ü¯–2¸S´.ݱ‰~þ‚c0N϶멱‡³…Ï; ðènÆJ¸?‘ÀL£Î"ô%2iþX+òv<ñ^à‹$à#Öä…@ßzÎö<šlPPì'¨;T0žšðÐ ÅD x†»žvü! "ý‰ 'Œz/L&AÚÛWSc1½Ï})<à‡}êÀ8rÅž‹€6¦;¦\G"£ê²Czxqî°óÈá!;¤°”ʾ–P†'QØGW°‡1ª°Cס_¨Ðå>;„sm(Ì\bw”ÒÝÛM&QÂŽfÂLaGÍØñµVŸ©~2’0ÇS>áÀ¸ÛÞÃ5Ûá&zi^àVÒ•poÀ^$þØÜïÌD4b'—€C£° W3r-a+èËÙE¨Üh·®ñ”Ñö¯å]@‚Þ]o Ä„ûïíæê¨¾D¤|žžÅr@öŘ]Ôúp8TRÈìÆ"ÀȽ'p¶Í„À®éÞÅü×C4ƉŠíuìv_ùîÈòÚp%›EEL&F*ŽÆ³ü©÷º¯Mg‰¯ØKuwÛÊ$A€!ßKn'p,L¾‚»1ÀÚ9œ^£db–§ ,Ù…¡#ìÜ„p™#sß*ÏöyWõ žôœu Ë kk°¨=º#9ÄHd¥¸g/äŠô®Í¡ÉVö¾ù†MCc •ã§ dXWá0¿¶³ÕE”ÙEgÆr ÷—|æ©0/`© ɘb0”ħÒÛ5Ç@¯á»cXh Û|J q@6¿ùs"ô¾éó 7 _ãF}#úeˆpÀWĆ ñ6gús8¾]MÒÚôÙH;RJá!ÝEèÐõ øÿEù hiùGjãnùO³µ¾¾¶ ÿi•ÿ|–ºÌ¬TŸÑr÷`#ašÁFH&:(v!·—zÿÆÃ˜Eéƒê£Êßéhð=Š>³ßš‡ì(ýšÊ÷§Ñpœo]1ˆÒ–ó¹¹Ñœ|YI;±B[LG$¾¡–¨7ê ͪöþŠßÁÛ2»NSm¾çJÀ›ÛÒ*§;Ú™3]lÆx@+™b«w[C勼¥ÁBAÝöËó½—½ýƒçÇg](üV¾G;¯1¬ÝÙóãÃÞ‘©­jƒòéHy[ó_ïïÀãwì b<áÄ+ÑežÑ#j4Tô­‰|Uý–½}gjiàÔ»R{¤'b|¯»uw/÷¡+Pü¯P77gÏÌM/Œ†96ÞL¼· š")¡½ª1ï_2Œ2y»AuÍVF€b1g #2 ¹5ö!FA‘®¶Ö‘-§Y•r ™ /àòÿ³÷¯‹mI¶0º×SÔÀî @‚7QjÛˆ„$¶yÛeùB7ºÉjˆ¢ÝÚu^à¼Ø‰—̬@Q¶{ö™ïδEUYYy‰ŒËŠî1:›Ö:Mý£ºð/3J¸Y4ÆØØæùÂmñ…£Û{”ÇaŸI-Q§3ÐJ€s—ÛxŸŒhžÊ÷’«—[/µ÷Büš_D Væ„á¢2šMЊ*Åô-WŠy4uÉ ë-”f³ùsî4: §h˜z ø&£ƒñ*ƒ pïñäÎ0½Üæ é 3ëaøB<úêË#+µ€Ñ—4».ªÔ¡kÖ é½bëIl[VÜ¥ï³Þó5©âK¿\$²"—]À€ý¥_~ ±•-ûü=š¤þ»téó±Ø?1’ÁY·ðŠ{^@öÛ ™&÷_1ºgGé-êp,ûz<¬Í¦˾&¡ÁAKÿb¼ìš¼O›c *¶¥WÐŽJ†Ù/K{ý5ºäm»t¤òélp·ôËÙ9-ÓÙtù#pž²ì‚ûçiÖ,ûê=½Ú wÏ ~X°Ež-Õ¬~. {»ÒK&½ Cº BBdè^?w†èmRЮ$]ÂÂÊÅn0r±ço*êjžoê—ë½ÝÛ=}ýõv±½OKRZ­ï¤È}~:™¥° Uùú‡.ÏÓáø–óôé}#Ä\Ä·WwÐ)ÒÀE Y€%a“B §ü«e|mm¯Þ/ü8OûŸq~—Vßõ¹ÓàN—Nß=þ¶é–ž[›¥ ®>±6ç–ÿE'¸dé`þ÷\Ÿ²†ï¯âÓñTêq¤Ùd ŽXÍEu†qq;†Zc"+–¢qžL+ŸžC»¼RœJñný—?#·hÒƒA’OKsÀóõÛÕ»ðgÞÿÏå’÷³|š7§îuy?ôç^ÿksku³ÌÿÓÚZ__ÿÿÿÁÏqq¾½oP æ…ËÕ'Ì8,§zB»úà–%§>3 0ïLIÐjfÄÔ^r9¸%…[…NoÕo°mz„cšNéÛÛÛ&ŒiŽ'—+Ýá˜=J©%µk²¤t»CÁaá%êq{v ÏáÚjkCô€#»¸)~Ñó»E‘îø««¦ûë?.¯?4é7ÔÀ "‚i#C¡xÆ–ƒÛÍø«üÝlôî?²î·o¿m¼Âík««O«O­´t£„]óqü¤¹/,«æÛX o¥® Û{·ÿ˜1† hÖ×̳Ðì(¦Ãÿ=c Œ¥3O§ˆ7ævk­±¶W“Z|4ŠISÿ¾Î¾_¦CH08E°èð.ÙA ?ÕóZÜÞ&å/¹æcóè$C±à—ʊн«›âÓh<`U;?¼kø2Ààn*=»_l‹çÞÕÚß{|è}:åësßü(½¹Ç–¯{ñãZSj»±Új¬­Æ/&PÖ§!ýkÖ€)Ñ(¡|AÚ1Wv Yñ‘n²¦ËB¢6ûPxÏ“þ;FÒYÅÑYhVt$eÚŠ¹åÚËØ–\U3pÊÏŠ—eqåè°Rá›8ÜmŸp ¥Þñ éJßë ³Ã põt\l¨ +pbWèÚ lQD›q8Ï-(Dî{iN°zšƒá°Î¿‰Ù;¤®¬þÍ þ®5ú.Ý7/ó»Ð½€"MÃ]i¬â¹•ÏyÝKrgÝþäw’Ïø­ôcz1ý°çÐÌL¬ôŒV—mmî¤+QÇÍAì×:ÄÃ$½&ÃK7ŽNSÍSz»fS½û7°*éF[Ù~lk9yL2,›r-Õ<>ÜysÒíteå˜ÄÖ7E‹û ÌÃ6G´êÍα /¹–«’KޱaZ“¦žR;ú:ÉÍÍZ€ã ‹WBXÃíp‰sÍâ`jÅ®½ÃöɽݽFwýµ³s~j,n™˜¡B÷Æb£´]èNÈ€¿1FÚ^Í¥¯‘øaÖdJ†€/¹ a9“85§ãï‚àÛ…Í\Ã4BÈ@] !è²\|ØÁ9…3J°lþ6­VøN NÙpjò«ñ­ {ÆÃä27«?|©‰½NtöÅÐë)6™kHZ«X쫼f5¸Š k4tØâWîºõÅ×ÑE\ËÄ®¤æ°ƒü•˜ôW'ãÞ‹7/»{?v‚ËÖÖŠ—…ÅíÜe4J[…=õvïp}-nïîöN;ÝS˜)¤f>»¼Lílï‚ÜBÑ)éã÷sÍ-xªëiðx¼ùFá ±ý¦\a´v¥†äÅ…@´„Õ°š“›ÅiÒyT°ƒ½ÃWo!‘Y–“ÝHËkq_'ÐñÔ†aÒçªÀ¥ÅweÕ^Æ0W_Î;)3k‡­êE/§ô-®´5½,[·ÌÒŪNú!ͱFÂKYĪj<žЦájþb©u,yåkŽá0qÕA÷»Ú=ΑîÉ„÷@ˆ°ä¾Š>ÐWÊžÍmË€!®:4T8ýù]þ;ŸÎ‚ôei6Mçžn–5Þõm6¢Å[åÀP â Up¯„ Çï ´ _{#äSà=§s=»v¥Nµ€¤JC¹wwøVxœaIi쌻./ÊŸC^A ­UNØI\¾ŽÞ¥çpkËöExÏz&jšé:´BŒ=Rœ½ó7?)Y¾P"Þ$E`ØÀ›|å%©À9õ›‰øoÝY½wr!ÜäôŠ ÄqW%Hx%K“΋ݽÞáþÚfxË6 £ã4;´ JoM“¬'Ü\Ëßµ÷_ìîò|½Ú9úÎݳ†¦Ý=2.lî•-ŒÖÎ’œô38’±ébR’GÎÈi­³ÖÑ’¥Â‘Ñç­«hw*Ütî†?{Šˆêqçé(Oç·Ÿh<(ëΜ²º›öH¬l~KÔìÍ6SYf8£F•`Q@9çô,¿æýWš¶Q¨9Zì›Kf§}Ò9ìöéÐ ÷ÀdüŸDOqOß[ÐWe¢—¸*ÏÇ‹ŒÆñΟÿ\ÓwØd½ocù’ÐÚ©îj2&·Êª,¡ù ¿mÉAw lëãŒ7R+±šÍWƒe y-ñÞÞ^Íh­~ÝZ²„G°Ì0 ò!yGîÙâó^UQø®Û‘h‚W–Ä¢ÜÍ[6@‹oÎQŠKW/Ù03y ™„ ‰íÀü%%‡‡Lt·Ðî>Oqëlä—ɰiÝÀZãÅAæ +¤¹Œã*ûBHµš‘ :×d0κåŒôªøp˜7ìÏ(f#y²@:h_T‚ ã«H&0<&¯;m\wºóºwÒaó Ö˜ºzxÔ8:æñm­6×W]…ýÏ÷‹û †¾µÿhV¯ÛiïïíÅÐ6ßñÔ7©l›¡NÈRÈ+~t°'S®îÎ[»4´Œƒ¤Pxgz’)o&-:·€¬ œ}ááºS£¾ût×ÂfJjßωdžâÍiïåÑÉ·nC𹞠2õ"µžâ˜v®°?ùÔOÞ38îŽWW鹓Ö~§Ñ*Ò»!¿À8(Áœ5Ö§[z*³×{ ìGq•>—Ú-ÔÙ°ªº‰mvp´ûf¿Ó;nŸ¾XïÅ ÖÙcr8R"]C¼†$9QSiÿð]B^ʌ̒´w‰"ï뺃H]`8SнT:º ×ßÞ둾'é>½^µ:q¿ä©Õ‚û×6C9av‹2Ëv ý›(ä§ys'9{T3ʦø O¼òõ»1BÐ7%yp<O;¤äµ‡¬ØÞ{-Ø…‹ÚJ¯/=N„Mq|±ƒN:`;Â5¶iƒÀ%A+{£)é;S»Ç¿¨ C)Ô¡…†lÖÕ|•ÒÀe#I6¤4ÕâÝú4þëÛî 3ñà/¾±Å£zš@ ldY_=ÞÛiºFž@Âr#Î^Ëg´Û=¥¶€­U0îÔo;ï»á¡P’Ø?g[<›S†Cí7¼²d·Bø¶ª‹U)ÒržŠeÚ0¾cÕÔâ*ÚyúÃÌ<œ%åÜÝ´½T´óÛ,‹x˜Ž.i܆ãñ»óô*cB†hUÛdðħ òBE>Ì*Ÿ‹=Ð6õ§F±Œ§M7Ž´é’!™éŒê3ÈäûC€MWwôïÈèL¯³¿ ˜•<¥œ òìÎÂÔ·U*@– ‡á·Ô Ý£®Úoâ›ìfÝÕãÔ§Øwú'Wn°¤_áDhèh·ÖVùKJŠ×â³px ¿¹r1·VK¦|aÜ, Á@^¸¡ô7(¼þð!®qV^¦UÀèÞtãÊ ”™L_þ*GÇw“îÞÑáǸjŸì´w?Ö*Œþ™7=i*Ö›´ dJÆ·ì)€udžd•ŽØNûÐr¼aOïêÙž¨ê¥—íÓö~¯srrtR‹ÔýWå{§Ñæ¨j§œ¯:~útñ¤=ýï7{'ÝøôäM§xÍw{ݽ{û{§?ÀeßíœÆWmÅ‘ ôÆCÚ|yCgYŸU=,ÏÊÒÛ+Ï•£ 6‹àâˆPV©/l.sA×옩â¿÷û÷þ¼êiý´ëwI»KfïlkMìpDø ³ÆgâÑM:Úé¾ey*·óqÒGsT0€ÙÄdëÞ“:¹ö=ûÐŒ² @ä=»?tO;½ÃöA'îžb4Ûûq¥;uAÒJ£ÖL¬ÿöö;Ý.Mçz«pÕVÒñÞ~礷·[lÕʲkË“ÊÖ>¥ÏåîMZ42 ÃÙÕ{{GǧtG7˜®¸Ò¸ð€•¯iE#‹â¢*¸6Øc¬`Î>†‡8…¯…‡jˆÇKûü&ÉÙµ+¼8 ˆï+<Õº]hgÈ}Xðu¥¬’òÈvçZ’]#:e+•ÕÌ­õø°ó¶¶ô{RCöw—ÿdCîWØ­RÚáMD&5%ÌÍá„«íããÎán­€lø×ÜÖ§æì›×DÇ#W;FÂ7ˆN /¸åË_-°Ð=zs²ÓA`ᣈLî;à}œ¤Ë=ØtÖ¿ª/~ÌnÖjÅÏ~Üß{Qúè„ìFô¦ôq‡ŒGùX"ë_¬Ž(ÒÀE•™Âwºl©ïÈ^ÎkÅo_ªBØù€Ã ôe÷îú|<\øÕžüñ’š,}sJöM—”çàc¬«cé¾tøu:•Qù’Y~%Ï%M,¸ÿÕá›=91wÉæ®¡Âx¢Ó²wH‚u¡Ašw onë;q“ÖŠ_½ÉÓ.£8;†ÄÌKW¼T;ïÀŒŒ­9H§þ%yŽ|‹«˜óÝÚÝn‡ìµ×µE—"±jä.¥®v—]šßå`Ât“Àc¨ù=—›¹ë®?ýá¸Ó]rà J»Ú²ô^ªá»öíÞáîÑ[nk•ìF+ÀØÆ-\Ñâš+v|,ÐhdìAqžÝzÁ¶ÊQ×™& GÄõrÒ sERæiOžÑóÍCJª4¡õÓ“·ÀøÑÂ!Xã³óšLÔ„ [ ¿Ruœß$—Œ У•¦[:4UªvFâ¥Uˆ3úp9 –{ûGJé­=—[׳iµWL 5¸ªáØãn¼üÖâ¹cêF¡Ç• .¢¡3P7Ç{‡ñ>­„î'ŽãyѸøÝ/ÅÝùYt Ùã‚ÓM'‹Å äLÕÙ¶´HɰµwðíÎýclÿKú¼¯5Ÿ,n 4h+ØìÍ«Š6Ô9x¹ÛÛáó:llmqkï5§ÒƘۭÓ{Õ9í~¶Özb‹r|SX“î­û=q¡ÚHçPq~úE‡MÿÊ÷MáÓav‘æÎŸf£)3nUñK¿—Ë$~üþ§Ÿkñ¯òÇùìâ'[ðòýüo^¾ÿ©ÿ3a/jøn¾xõ/1êLýü5ªTð Ò0íãfÁØ3Q˜¨ jfú*»¼Þ5³sÏí˜k˜÷˜¸¦­üEúõ%Ôô!Aîõ›Ä»ƒÂan'àkȳˑ豌`‚«%u˜ùè µÁpÄ;Í8›ŠŠš£;3»À‰Ï]‡Ç*¾åò*”Pû¤ùù·ìG2tqÈïÓæ2™Ã›ôðè4¶ZÚ#ì_²EÅW^ ô?Ù‹:h½$—½êÛöÉáÞá+:rÄ(±V—·ifSñó¤Ê,nëcåþ…ZqëNÆÂZk­mÿü ¯Ú_b¹./¬½Š-»öééÉÞ‹7§|>A¤´÷÷~ììbêðJh6Žïé£m§X²b§âj5@W+"®Õj¼©.¤‹RnîmµÓ4G²eâðÿýÆš}-{J_Ï«þô™ŸmúÏŒØ#RKŒ/â××לý>àd—w#²{iÅcÛÞ&w²g€Ë‡¿ÙŽ0ü‘ºðFRZ1ñ:2íËJirý]…Q¬H‹+¤ $$(×(æ¥zšòx©%Ë›Ø|nÐû9\OÝ¿@á‘é˜Û4)Cï7°KчšYætà¹Ð¥Ï¿Wv|\²N°@iqîˆûæç£Œ6`‡6’{úÓ‚/mùèÙðaüt¹žH@l>ƒÍЬ­ažÒº*-·ˆ>ý>º®HZÖƒ¨ë™V(26ž¼:ÎZB¢µäòCÝRÐ0'ýhH9™¾à™¤\^¡<Òð k9iyÉüÁæ¡Dˆ½lÄ>Ú®€šõšGžÝw4Þ¥¥ òÞ^ó¡ >UøåmNü~_°‰!Ä%8Ûù H±‡J.’22åÕE-ù'¶n2/ï©K ÂH«­¢þ šèˆN÷a½9è|¶ÖCïTÒoì¹ø ©Ÿÿ…ÓZzôå_¨+ ùÉF½ëÙ°‡Œ4”å¬ÒUõ¿¾O»±N¼Ùï}×9y¹ô6zèÁ·HáÊ.Ëì;4±Ò iTõ=Á½µ*Ý´ús-<ö¬?oIïÚyÝ~±ßÅkw^Œ¨ª£( fYªºþ^>ÖåÕÝ9Ù;>õ_>àXp.„Ã4,f¨qÔ˜ú•!ê%”Ÿ¸càÑau/ɹ|èÔÈN2c ?UIk5S l®}þ‡‹ ÒPàÓh>há\Œ`ÂôzÔù^ŸˆÎ¦ï‚=¨ïÃßa„++8¯ Kdïð´³Ïmv1¦~Ì}^öô•t®S¶×ùU>}Wôï½ÉÓIý3D§Â>9ãÄ.ÏD"u©‹7ÀqÞ µbq.å+ÒY1ªëô:—dæ2‚k|¡º±ØÛ·RÖÚ/-zÍÄa½îë6ÔÂý½ÝøèåËx‡Ö_'~qt´W^H„­„¶%’¾Zœ/mØMaXŽoŠý}"än¥(²;·ãólZ ¿ûÔ½­-»™~[t÷Ë—÷ݾ¾f·Óo»]ßøxoÇn "‰…Xd³d×·€C„0‡ëaûè*mÚ³¼Ôbeïb sü¨ŠÎQ—TåC|§âÓsÐ1#[Þå ÷„ŸwNH'†ºå§ˆOÿyù²R~ûݽ.Önß?ëÇÓ¸²àŒ5âò§_f,Fþ4ÄU¨n‚T¬…/ÅÚ-Á©ÑŸôÜþn%BüÒv‰å¼ž0£;ˆM»»³·Ç~!IÒ‡qLo<›2ÿ]†]1(_¼5y³V‰ Ã@åævz°ú¾ Y§=9Üçc élôgõCkó/œÝ—½\ÌÛfÁûöö^a\aɼD=Q{rkuã‰ê(#ð&ñ²›"…%/8Äw‚Úó=‹Ê3|Ò‘ BgÑÉ)æšV‡;æƒOp §qïðÛCЍÓk÷²Ìðážñvqj§©V×êñ:’Ë6ÄuOkD¸õ]k ðµ…ø,´ún]'æ¡uèÌæê¢îìª=ÂM—-¤, ŽkdÜ£#s-~^‡z¢i‡÷u‡Ÿ0ÅUšÜ®¨YõéçwÓ4×ññí>¨?Ò྾kŸì}û¢ó(N›Í²`™ëˆG¸ð>¿¬,æ^µõ9¯êÝè 7€Çð;-~Þ 7’Ð;>}‡~^Ÿ¸Ø)‡’¹’Á\ßäŸÕÃB¯‹í…#õb†"ŸR ‰‡±ih¥’0›Š7=ö¥Üd½–ÛÿüŽ…ð@žÉíÍ'[÷tO± ŸÕ»à!Ÿ±‚;o9‹©²ÿ²¼lß2@y”ýñå=aT°<ÅUwõ<©Çû/Éê;ÁÛ‡?ðä¯Ã7û5·°ƒý[ÄA–ˆ#­—¦çý33â颶®“É;xò’Á{°Ã–¶[xl€Žœ{^g$ÎŽÀ8ø+)ê@‘L³kó³`UD5Å4¥”Lò}?Í>üó0¾èîÈEÍ%}év¸—æÈœ'iÿ‹QÃ,ãuª(®>ɘþfÈýÀ€]ôl>0;2í./(yÈõRõ“Ń…îùÅZYÚ¼â3—<nm¤êÄÍÑçµ-ØÏ=€ ™ú)½è’ÆÃ%õf”±Ž MîÍéËÆö þÛÚâHaNG¢Íö¬Ý“žn­%ªÍÑá×/Àû$¾6ªu¤åìÓB;‘2G¼7éþ…Xe}¥E˜ž“þ.Ÿdí÷^´w¾íî·»¯{ó yï‚Æ¤xó¸:±58-›û!ÇŒµ¥ñ_2¼.;bÉ>ù.^N¨Ð‘nÎéØÝ×GoI"°#¨Òeà½|b#-³q°ºÌRqKcé-Èb놆 GNÔ +L±…áY® {ó·¢Wœ„0Ì,:BŽÁ+Êû`6ñˆ0ÃÌñ2LúøÆ*à„T‚ºƒîï¾àî) #nÞ Î(鲡q!—p7‡þ@í‹ð!¡g+x˜nšÌrÛÌ,quš{ص¬åÀsþKvÃ&?žñâǽã5¾owçQàX(1‡R+Äo4ñPã翬5çý‹>P O?ôÇÏ|ä/óLId¯K÷ÊÔ§Ž+?ý|F4Ûóñ°fyö“õÁÒÒ?Ý—Àþyý°ÎÇ1r'à(ÈV©r ÚQUóùåWØL¸xwñ÷`^Z £o||sÞ+g!›9_[-HÕ¸ÒÝ]’OcUuçÛ¤¡šwÝ1]óyà*î<ôa‘ßÎú·Ð/·üËõµ°ÿ,T‚—yV~‘¯/~®Kt+9úJïX™b ai‰S=n}êÎÖÖâ[©Ÿ¼W†gþ^z‡OݡýòßÇÝ@Ø/œÛÒp9˜°—37“ñ%Ùy•¢Ú^îÍœ_$LÑļôãÅ{P.Û;ÜÙ³+‰ñFfB”–Öüâ¢å¥"™´ !Tï¦Óx®e”†6°»*®%É•ˆâÙ;9¢ç{.f8mùlñ<8ÓIš‚PÞ6¤EKñÝ;R?ê8Ï‹eÃÄWý¾QÂU£r³"¾³4Bü„?l€pJéÍmËÆÉ]ù»WN¼òp-jýáCfÐßò°ÙÃþ°‘³³UGoþP^6zîÊß=zN1(à¢'<| S½`ÝÿðQd|ßê\4¾¥£SV¤–˜îÞ  ¯ÿ;ò19ÔÃÁ±˜M8 ~Û]úR_# ôãÿvD->Ëæ¬t»sÞ|_xÉÉQ>HÍ÷quY ïƒC©¥S²™°Hÿô ™Ç·Ó=cø®7ÝNïøô5ƲÛ¾­¦sÇè=v<ÊñC;ð’¹ÎïãCR;O{ï;;o8šÓãKÚ§¤,.„²m¡&b¼4ŸnA½YË[1Wš îý1–{[ÇYëaƒf¾šrÿœgá:™Úý ¢£­EÎÊS‰$½Pü¦ ù,R^G-àÝξök_¤RÝ,»Ø¡dj|ê ¬=áÂ=WPîÅ(¾,ÿ`.’uHõ὜°qH²¬å0°JÜ7/iµ›0Õ¤Aú [ÝÍŸeÓ6f²è ‚°š Ì2ô]â|3>~ýé#)œPÎòD‡øôâø.'^iÖÕQ±¯çïs-–îø¸p­}áh„ n†3ä†;!Í)Ò#ç® ÄðýŠMiØ*ÿô8ÄwùÓzféQ?.yŽ[·±jœòŒ½N÷SOQ½¿ô¸V>ý$QÔ>JN Ž!=¡ýfÿ”Öá!#$Ÿú·sRñMéÖV` ßÓÄþËåM¬=¬ ‹ËYX#t¼.ocãÁmÜߗ͇µsøfy'CéßLåÓî‚SK…t½pk3d¡ B yíÉçX¾O†³4ŸÑ4žUêôïΉýkŸÐ ¸_äÓ¶3’£|>Á°¥ù l„ÝzXj^1 Å&åCkÆ.9\´ý”Ë‚ëà s_+sð•O59wCÙ!Ç^}&¤ÆÆ ½d9Ï_ÕøI—ö€Ë \X0šÄÃ|ìbdñãoá´à'¾9}éci¹”üçŒá!uZELBª(1R¯ñýU20’vU£e–ˆËL ì`lƧc†…„ê–)~, ­Ò(ðñJÝaÊ„œ-…RkÌê0¤öu‘’^«ÖÀJ}k«pz¶¾Æ¿zt»ÝRgß}|ïb •Öû”ò%îËnàÐ ‡Sƒ{þÝÌ+¥„`<ÈæV–t¡ä#¤g-ó»-é™ö&XÉû$ zV™ùǶƒñ½«,Ñ N˜@ˆ¯o¶áb1JMBH¹šyÆ‹j•¤àAMÃÛÒ¦ ùe¶–ótz‹Ôp4‡Û$lŠýTw\¡ø|˜õ§¼‰>Ä%S yj’4·;TMg+*â&g -­N=é}×YîÝv•:k¼^ß’Géh6½™M%V„ú›J—§I°®ñ†0V0nd©Þu$þ£ÃýÄýÏ|}Fa0š]Ÿƒ’‹úb”0¤é“J8ƒ9I¿-I ïŠ}#=èx¨-¸¡2ÿOyÕm®Æ_°³B–“ç£/øwj)ÐGcÉè;ÙyÝÙªk7"}X±ÚgÿO*ÁßÙ¨ð÷Í$UÖàC¼;ÿiÀžÍè8¿Ú^üqkkñçëkþsZšZÐÒh} SW]3”Mr‡ü—¿ÎÃG•VÂþqzDRˆNœ/]ØÂÇxáǽ™¯l]Êò[ÒÜñÑÌ{º©R~¡½©\oh™“³³ê²®ÕãÇgg?U›kgg?W¬e‘Ã÷÷‡ägÔúèn÷B²äh($íú?¢ë¤?WÛdûpôÙø0Ü#5¸ÅáÊ~{§WžUâÊ_*4b¥k?öSÇ^÷”¾_~ÅGg¼êœ~²¥Õû® ó ¹øŸÕ`ë¾+N:Hç‘ãïÁ-®ÝwEûU‡Ãÿ×ÈÚí||²èâî‘MA徑³÷ý7îab… }j{ŸÙ?Ç­?Gîù­OP?øbM,|ÈÂë?6ïí­ŒÅT¸¿GŸîƒ›òO<SùÀž9Fö7-;¦±E9-“ÕUÚ>êÂùyÏÛ÷~‹°è=_C[tΛê³ô€wx»ÔNùei5¾‡5gïÿà”‡ÀT¬'#Ú9ÚÒš’Ë‘ÇuŽY½xŸõEïH }3‡x1¡ˆÓ40Ú§¨|Pó‡vœqÀX|Sܵp±@5GãàÐRhÎL+±:†5c­¶™ÝÕ'z|ÝSºY½GoNߜޣn•‹w6û|Ÿrx•H%ù«öÉ«îç7¸Ûƒ¨»¨A<‹¶j\y¥ãµ·8ty\o·&…êfØbRõ$•¸mž$õ¢ ÍÖGÚ½UZuºßïUyç«Ã—îzðË »¸ÐôÿÝ}LÏûƒ¬ß@:Jc4\Ûüƒú[ýt®õ‡tÎoÀ®§»(ÅwA{ ŒšÍòkA}_VÊ:úìwXPаø©Ug^ô©+o½øK)Ù[úNŠY—?”ÖåO¥tuáÓ buás-T]üLëS>,–¥.|U¨F]ø&,B]úb¾+aÉé_Œæ_Õ˜.|êêJ>-–“.|V‘.~á‹G?/è¿âRÑÅÏ‚ Ñó_HaèÂç ‡Œk_> J^>·¢Ïœ6kŸ·“ôx®•Ñý䟨5zì/Çéç0r† ùžÙ‘ËÙÓ¾PËŽÉå|#(ZÓi ÛMï±C\\=Ìô|´Çê/cýîíÑÉ·ðÓelçôèä‡Å ÚçƒQø7¹))‚UçÃìïñÿ!7Æ÷¾_è{èÐZ™‘ß?¾ÒÒg²«s6ò‡ 7·÷ÛÆ¼¸¸?ýâËBáLÿ­ÿå #¼î÷­O ÄÜ Ü®š Ž¬ú(â55Oy&0ó£Ã—{¯˜öÎÇý9wÚ‡¥ 9ÓNY^Ðbå˯¾üJZ|Æ·|ó,hñ›JIQãOïm/¸®2?©÷ÝÚÛ995 ³Ã#¤-Ò nŸvâÒJ·Ò-…ŸNitN¶°»¿pïå›áGb¿è4ð§ø}`[€@å¬Ä³$.l74ë^®ÅJ Õ°î]"æL§=á•¶ùÌÈ£¤xoY?Ôtù=ÖÍÜžž#”‡ÍUOw÷|ÂsâMèû|,+åöæ=$ó-•œ¾ »«p“]æ®òž¦ÂuÞÈ+ÚE‹¯4mÇo^ìÓ´éñšX„7¼wš¤=Úm²„@Úqò²½Óyö 5â› n²¤•ð¶b:“âqó7¡ˆf›»€à2'«¾ \=r+ƒ"Çž=Ó_Ê>Ù¢èÓ-X‚e{DJ.Ü'MëcñÓÏÞ1ásþïìéøµs ­}Îî‘¶ƒl¬— §0§‹–ÁC÷Ï¢Iû¿µ‡–/ñ°—¬;ð†³ƒnùú,K·Ug>ñEãw‹…á¿·ÕbÏyS{LôÒíAç¥ã;ê›Ïz…û»MI@+C|yØjÒ-v¥¨?.T[—è ’)×>TOøŒSˆ›ÿ¿½ƒ¦×ºú?zÍCôü,Ø{„ ëòÓ @VÌ~ Ó $ïuÑó”T¬ü´ã“½ï ñ7Þë_þ2Ä}¬/÷±ºtáíf~wýÀýot›)}Ìeÿy{°>Ä¿®`­Ä_~%÷¹ððgÅ6¾Y±NÜ Î—7Ø:Ÿ×ì@Ú½_s[$¹®¹}¦&ðßEŽ-êîÿh›¿EÛ\,Ûx|‹òí÷ŠŸÂrþ"H¼<C¥ÿfQTzh(Ž>iòû˜½:'¼»¬øK3Ÿ’w •èß-ÃvLÉÈü!2rió¡¬Ìâý{ gG*õéƒêþ#M*½¼÷B:þÐ^H“qEh;>æšW˜àX‹Ûû{íÏr1î(Û=Õó€‡kô3æîZàöUøóýîGÉØÿœa¢f“ò¡‡²kÿ¿Á‰<××ßs·¶>û<^_ûÃcßÔçœÄ­­Ãtáoó›úå¶ÔqúÛìßðïñDºV>ßG¼Ù}î‰à Ü­‡úRÜüæúXøÄ½£ýWz:\ûÿMÒfü¿L ágÑþøÝ¿@ÿK\þq¿Óàhm=ÔÚù›Mðq¾¿[·w˜æMýøC´ú ÿ+õù…sð/ÖÞ>ó¿BWÑV  ÎÈ{õî7Þ§Cò—éÐëŽÈé¡Ý§fÿ¥:´kÿ¿Á‘5××ßsd­¯ý÷;²è®‡Yëk¿Q‡öËíÖ¡}ÿG‡v­|¾¼Ù}JnðîÖCuè7ÿ‡éÐ Ÿø¯×¡ñØ¥íÚÿo"þ0úÿe ?‹öÇïÖ¡ýý/Ñ¡ýã~§½¾öP:|äoÖ¡ÃÇ=\øþnÚ5bª.õãÑ¡4ü¯Ô¡ÎÁ¿X‡^øÌÿ z}­  ÎÈ{uè7Þ§C¿2‚…›w—»\óÚ;ß¶_uBù%›õ ý×£äsêŸ{‡ô§TyRFó¸,õeª>Ê5HûÓиrö寚 ª-Ð+ÑiÅ_~\YBæ®wéAgwÚMú±Qãó²³,ÆJÍe;²$Ò\G%žÿá¸ã²â$]Ã(–±N$ËìOucʾfÙž³è6G‡ÈŸV=Hbx…ÇÜÿˆÂ ú€08÷9ä)~,µ×äÁ ΓE-xA£…Àž•Ï’ºS(ÊuB¿©”[•|V›,Í{×7•E$CsØðRR`)2{ÓGzðü‡š;žXJpÌ{®úªsØ9Áy¦$swÆ{‡ø¼²X»çA<@¡¬§í®™q=á½h›•û^{»üÊÛ¿éu·þªÛðknÛ+²Iž:¾AIÀ»4/×…)_2ráˆSÙÂÁUCù䳑o{à(–ñû‡‘\<Ž(ø©Ä5I1í–$ÔœâHÊ'Ÿ=’|ÛG²ôˆß?’Üàâ‘D¥ÈO$®)Ždi¸ä)š$k¥zLàŠ¯{úÃ~'s.˜Å\Þ~¾œ÷]Z”äÏ\í.’ õµû¾F¤Èî€ÜÝ•ˆü Uyü ú5ZÅ÷Ø6Â*ÄùUãqÄ êÔiš#§nD¸†¨`<9S¹NôÂ"ë\Š(®mö\‰«sÒóGpÉ;£”­™1G3ñ* £p÷4é¿‹­H±h9z¸i2$“ÚáÓÚ—nU0žeôâ}fcJ·$·tcƒk……[’øêîæ*qnm ¤xV—ãi :.ކ…ß$Ó«¦¹–½uƒ” oŸ­mrQ¿’¾½hå1ѬÎa8Üï](¸K‡w‰"p/Ûi¸~ô˜ »º”î Ë…ŸhÍÜ`ŸlM.ô­Ý³9æ“7Dé?[Í Z:†‹fL˜¾øQŬéžmŒO¸'‚>1aïJ„ÓKÈJ¿_ìšûÈzæÕxP_4ËjŸ.ŒE)¬…&Š ý›‹ÖÓCÛ½|°hi=´áEÙ{æÏ²Y›…F?–fð‹øëÏýá»ÞN2%ØKâÈñRa3渣 M]àn¿=Ù;íðo‹qnh‡³Ä›}¼_[ñ’9ñ奸ÙftÐévÉ䮞UÞB@êIkC@EG”{Ÿ¥·Âš=FB‘ÝÑÙÙÙB&ú÷úf ‡.ßì 4ÏèôðŽñ§0}ÖÛÊtñâϯôMÿ-^9ÏF+ùUtßKÓö!³ýëÅ)ëNÖ|}Ïcypy@¿Pÿ¿Ô¢ç’3 Kž^ëŸÿŒ?ÕÖü}AóÍ%^¾“Ù£K‡¾L =þ9=îß¾¦ßVÏ*‘£.ý@ç[ë/ôÆPŸF?ÂYÈà9ƒVª~4éÈ}Ȉ/e ”²pVÃy½f¡ ¦÷œ`4~ßãû‡Nð=m-›`nþ¿ÃJ{Eý­«M×[iÅÍ­97ÏŸZxá‚Жƒuçɧäë#Y£fÍÒø¬ÀT›dCˆ0¥´‹°c6¶’`@M‚ÆÄ~B­4ºQk®óì›~z‘}x™ ŠáëžÌ£5ßÖãÛ4hë*yŸ ¹ìÉUí=\¹W‹E¦@^“Mï°Ð¯HÛ¥î§ïÓQÐÚM2™5êøâ"ëgÉÝøGÚ§Óe2Í.’>)Ö´7{è`‹ËóàLŸ·{ûû½—í½ýøôäMçs\ÏŽÒ =<žŒß£B:zŸMÆ#T½å‘ç ú~žӭ㣥w2YçdÈéQï°}º÷]§wÜ>}½xÝ‚Ñ$7ÒŒûï î"Ñ¢ ë·,^šô&¬Îþã¤sp”:û´5ÆœÁÉ4kQ—lP•^8ZåM>žUø ¿Éõ;êïdz3o·Ñ€Ò¥(.1žÆ?ýinÏÿé篿þéçøž¶Ü3ÿÔßÿ$ݤ¯u’øÕéÙlÝ i‘ã–†•ó¸ñ»—ê®Ìg}ÔÁ@E¢;§s”ä‡>È÷ÐL‘PÏæ ñâ1s±Þiw»½“Ϋ7ûí“h9IGá8„vûì쓯x‘wÏqX\_ÅöÐCÑ/´ÿ'/µnè“YÐöæ|n_æÛZÞ—àóËÞNÇ.ýðò‡,·o·ìƒÂ:)ÄœËÛÁ-¢ºï¸Iì²QÜ†Çˆí£˜î~÷ëQóQä“>¯„D×ù]^¢‡>èþÐ]{Àñ¥Þ,ºØ®û"~1ž^‰JèË'TQ¬Lf#”là2@|’ÒfD×"X®¨‹!õ儰ઃ?DÚÜ«s}òaE½ë:“´Ž.ÕØiÙ˜IåÍÄäÒI´U&L0ÊF/Ê6ýƒ‹• ,ò§$Á 9«½øçŒ”Ðä,»qüßKBÛ{A­m‰ZƒÇíý·íº@iEZl;Ïü~_þª¿;C› •ÏÅ}!® ¬˜“7‡§{´ùwIeÛƒ:ÜâShò”wM Ý{µ´#°¾í¼&õèAW×Ü ,êh© âr©ô1ÄX÷Üè|÷³g¾U…‚üZ^||HïVè.¹©޳´¹ÄW! –6À_piÆÕ'››1‰Òë,g‰@_ <Øc™ØÞvNz|¼ëï\ÞN~•štøÕÉÑ›cùB~µ/ÞÐ*å/äWý" ‘ÖbŒ^)Qþ¾7 `r±ɣeÄɸ“o‚ü{súúè¤Û¼DBz¼wø ¿ñ¶?¾dºÓ9ÜéÈ%‡·€€bk@qgÞ@R|[ ^ï:µî}|«tõú½W¯/ØøxÄý;j!ÚÀ•ó3Œ‡>øþõùû1Æ÷߿ۦÃíèèÔ½ï†ù–0¿¥%žÿ¥§ë;}4!GªJÏ+€ï°ŠýXý›“¶„OÒáÛlzµ›žï.Æ÷=#@9þ¦' ,T8^§Ã›º¯¼4£¾xçVúÇhË_H²0¤¿à’Å%Ìé\9Öº*'® ‰&¬z”2hÆ•ùË Ïó1,)74N¹ÖØ8–"1º¯ÞÒíP8‡X ÷ʃ?äæ÷ŠÊR,&Ÿ]_'“»gFlê`¬ Ã悟øÙ2Ðâ’6wbÍë˜,l¯Ô掫Yö±âÂù;/»Ç>xor¼ÔÇå¢x¾’Xh$ëÊd[Yï-V3¢-ï3Áí'n›+PäÊ‘mÇlÀÓ»›´tí~çðÕékêeÕ]\ ®¦#»Á×XŒ§9}WZÛ\ &¼Ú—ò¥{:íÓ¸ÒDÕ½ó#7á¾o‚€]ÈÃÎi+ 3$jú›Fücéã^ÐÁÖ½BA¢6w~ ËàÒùѤ)uŸ”«MúÅðb×}VN—±¯Øwg2>`ì>±¸ËC‡~|,,Ùe›õÓ y¾w›\ 冽›oX»6_¾ü ž‹lïp^‹uYËÛ1òùÄ´,ƸØòÛx™,’&[[÷´¹¤ÉÖÖým®¯}~›ëkËÚÜ8¶”¥¹”ºƒâmò)½¬©ƒ©b”ý–¥ŠÖ¬â\SÃbYƒorÚuýl4ûÓY/ˆÀ¢ðˆû´:çŸè©,öqiÃZœrY£‡Rà Ȭä( Š2ÜóËSUß²ÆÎÎNb®ª~Pa´¤l|_tOzzåò–¹Vê Ë¥>æÒmdý$¦÷¢½ómw¿Ý}ÝÛÑÃ2 Ë€ú£Ñ•‘œ»Êh%q;»¨–*Ì,¾gõÃÚfY,¾®µùÉ­m5OÇ\u¹Ðë–.×JÊÊäáþ\SA+ÖÅO·ÆP’ËÑx"Ï+/Á ,«´º¬õ“TªpbZ £E}/¥S»HHp-ò¡T°Ê³_æ%pÐa†îw÷~\úþɇìzví 0Çãwç)é¶n9Í´¿GÅÆý££o_t^“ö¿|¢/½éhJ‡Þ{˜]gᾚ=nŸt»´¾¸t°\ ½N“›¹†–¾<ëò÷¶w€m}ƒ…·‡Yð€éÍti³‹D¶ÜéëûOÍ·âÂd‹›KeùhZD˜]¸ì`ÇCVó»ëóñТᆥ'…¢d©Žð°¦œØ”LJ*šmüé±ð–á²Áuý<&A`¥Š—Ιϋ¾²<(âþEUŠ‚<à@7(z¹qß(C°p¨k£ˆ’5ž/jyI£;8Óß<°aˆéwåÆïo¸÷òèäÛåzR6nä|†Ü"qÍ—ZñæåC„àÄ üD£ª"sX±š]ß QÁÙƒƒ.Ãß·NÝ«1ÍH}Ûå?"ûîåÑ›ÃÝe›r§†/^÷´‰~Y,˜mV¨Ù`<¬ñ}Õ“¿ÏFƒyãýÅ{Çk¿éEÎY[(]ü‹¼øqí·¿J©ù¼Jgwï”sDø6¼8ìqé ›²"»ômÐüg½Î}í?àuàEþͯƒÄÂû_Çšÿí¯TzƧ^i©ìú.^N -°Hôý»öþ«§9Oàî^ê\ï¸s²"ƒ—¼0°þôËŒ7öŸ¦ mzìÑË—Ÿ™‡5Õ~szTöAdŸ¬´¶PÙ.3f0ƣ䚋uJ‰i7ÛKrÜÍçòð†s’Ó÷6,yès.–BÐr?(;æ‘®¯@ÊòÌ—ýõqåÎpúU–û’ˆÔù_ÿóóÿ°ͧ‘t‘ÕæÆ“ÔýÏ@b×ÖÖÿK?åW[­ÿÕÚ\}²¹ÑzÒZ_û_ødkuó­þ}Xú3£½4¡GNÆãé}×}êûòËý7ùañoqØ(:–šÒy* mfé—–[(w –ð$;ŸIb é Ã¬ŸŽ¸á &¨ E­ÿß~Áÿù¹÷gÁþ·øüöŒ{÷ÿÆÖÚFkµ¼ÿ7×ןüÏþÿ/ø‘ÙŽiºyóæŽ ~¢èEŠ0Ë€ëñ{®Pÿ*›¾ž×é³,g¤!çKÀ÷ò8æc¾mH]Àåãk¸£T5qžDk‰QŽŒ …¶ü>Ë3(ÂÔ~Ÿl×Ñ4·Ä tàÊëqŽ,º!BŠc:ˆÑj]a:1/þx­Õ8êOÇç餱¶º¶¹p$‚!i5ãê[[«õø‹­ÍMüwk½w>Ü.·â0™Ò˜]çl^ÓçwñÎÞ³øå$M_twëñÑM:Â/Qwþ¾òvýï4?8µ`Õ±¿œM0l:LÒ\D¢ëlDKAÚoóÅþ¥ªpÆŽg¹ÎY^£Ž¬KGZµ¸=Àü½ÑWUã-¹ÿ.è4Yo®8¸Ùßñ§û&yÄwÐs¨7¾ú×ü׫Ž[Üïךñ1’*©?HºÏâ«„²WIÿ]6¼‹*?AÊ ÖÆÎñ±äŸß"Õ  ] 2¦C¬Ÿrýdôhß$yNÏ·þ#¿=žl4÷UZ»°íÞåAì•Þ‹¾ÄÁ˜öq`b 6x ¶×l Ú½ƒöÞá)ý¯sÒ;@´/H;,žÒ€MR>™ó&¬&ž†ü’=‰ÝTꇔõÆжIA0›ò‹kCÜèŒÏkzDÝö­ËQÎíijW<Í®ÓX·öõ˜¬ƒL‘Åü "çòtÐ`7Ò#4‘+a¨v{6£sŒ[žNÓkêý:I-§‚[wÝ×ÞÓ(mò(=•QM¤Ûµ£“ÿ‘qKœa–LÎaéÖE"Ðò¸¸£ï~ýHîà  uïkb”¢zïM‚~ˆ8¿ãÖÖt/’×hªrq±%ë{ {ýé¦t (|g~£[¿¬uÙªÑH‘¤Ôà^Ât |Md7eNBŒ²Ë+*™täûýnkïÅAcg˜AìM°Ñ³Øšd#|Í4¥uî“À®g“›1­¢:·\ì¯•Ñøiwê]Žh–“ÑÛòA¯Fé­{n¸9Ïûƒ¬ß°øTúúw¼B$ð׿ýÕ²(Õßce ¤ñ~‚ñ~²ºZ‹_&4@ŽûÌn Õ`d“Knxs]NƳ›<Ì8.¦ïu¨d½r磄äA~%A.j[ÉÔ/žð¬>y²]‹÷®o&´4®ù4¡eäÝ7STÕ¦¿°…xõ±„è¤z5®9àLÇÍå wþ…¶‹ìzR‡Sq±b‡!GD^Ž'-"OÖ¹#ëÔ…ãñm:¡•Å#­ä™{/:^g–ÐÇ»•§§R}Þª ÜXðÞÑIïðÍA½ÙlÖj•‹ÂΑÏÎi´¦yÆŽáÍÙzI†|~ÓG¹ž£¼4e¤1º:ÖºïLxÒR˜¦°ké,Å‹­É)À@œ2¼©ù6Y- .¼R½‘qGsœõ#G'ÐŒwÇ·£'Åu,AþÐÉI€ß‰ÇÎe5‡*5ª±ë8›F¼g­a½¦AÝB—xÍÆ¥5«áŸ`‰îX l]zTÝaŽûõ¬«¯ßÄÃ]´ÿÝA<ÄoøÚ°á =%R1x‡^:Àˆ²¦ñd´‹Côúx¤Îˆ“gšž1¢±ïqü¿ZSék—ð09Ë9áQ/?M?$A$ÃnÊVøT„2–6PV@& ¯¤Á «Ì`ÜçÅ.[Œ¾ÿ;÷&¹Éþ.ªÝä©Ò½²§ñå,$8b¬FŨ²ÇÅ2(?¸‚!X“!xв±Á–†ã€6!i ¿è±Î³%ª ;ÅøÀb0ÿ\e…~•uø%Ÿ_qšp¡ã'Ãæ–R- Ô¥ÍõM…‡r!q®|MÏQý ï˜ÔÞ·œ•Ó ‘¨@°g+±öU»s>aÅÈ¿§¸ý˜k”úu}£³…£ÇÙûþÍ;V¹Ü^IMÇIDêG•¤MÝŒÑ$½N¨Kñz³µ‰ÑgÅŽD¤Ž¥_\äÈQaÈi–äϧY?—óùŽVƇXõ8‘ÍÑÙŒlˆ0ÜÆÄ®ñ$¯ñ$¯·X*?©Åß©º9»AÒOà‹ä—tÈþ1»ŒdÞ혥6Y}xòdÓ”¬ʾóòeg‡˜>@ˆL7µ“øšýP­aш¸ÅB¢tFÉhvM–‚X-tÌF¤˨göz .à÷•»à àÂx˜Ž.§W2|:”è9ëÛ«$A»t˜²Ò5B×åEö ˆìmÄþD8š¬³Åì¥Ô-Þ¿Õšªu©ÒIž±X'e¡í:¬ A‚ó¤'çD½m ù@g)P'Qrs34MpÜÄ4”8uÒøŒD˜ƒ‡L½B*á¡Šå ½ }Ÿ g8¿ùkHÎÇ•xT< CóD†‡õöê“`=f#ШP[$_œ_JƆd­Ê錅gˆõf‹¼èžî¾9íÒ¡³‹Ç°f°Ýz"gX¨Þ}ùgz-Ò‰ú¬ øÕ>-<•¶Efw÷ve¨Ò«ƒƒp9Zn·'ý«­ º¹`—nÅkOíÙå,Ÿ~Ú,U«ôÉZ;Õï:|Gcs{u“”¨.ô\ZAèøÄ ÌÁD5ÈÔ™6¨C øþ¯SÒ_îÄ«3Øä<›²E-‹¶·GPçɾ"{‹g2bÅC¯ÿà–Íõ$ýÏY6IuVQ3Ö5a»Ÿƒ8,»¼L'"©ä°`eb’\à ÔÃ&®òIP‹YÃà“§ú¸½³Ó9>­ñÖ©>Îûù³š{¨jL$Ã9÷1•IŸŽIº“K|¢vÆwƒ›H“ çXH..èÉ|ü¤Ì3Áaò¾BVidé(K†ñEƒ´»÷œ5Ð!”2™g’¼ýá8§ÉH[7ã) ~Æ —ïbœæ´•ùüeƒûýlˆõrÊŠÌÂw¤'\GÕ|ÆfÛ’‡Q«̹†åØÕ}†™E³ÙMœÝNB†Ÿ1’ÇË“jå5¹¯n6^¦ç“-ˆ8Kl]n`?¨×i Ï– …”­"`cqÊ÷#,$ìBV."Y ƒ€ó©ï“cñ‚ÚIêå0ÈGâsÒÐßÕCb;NŽÅánK‡éB‡[ê1i1 Ÿ6$Y.GqA”@ý‚8zОðó¨ãWô4Q“°7cæÜÏÕwvB¼;’’€*›‘ÕMj6*MŒVhÊiÏž%Z¿°©iZ§N9¿QŸ‘R^{¢Õðò`©c@0`tøð.i–BüÐÓa±úƒž¼rµ±~Çt„¢”d樣±˜Ñž…‡÷6ÿÔF‹Íæ5²æßø#œíæ/Ù¥y6ÖÈ¢ž$æ?óA#¦XÒ‡A¯¸ª„w÷ £yT6Ö¶E`7´†£v¿Á>ÕÂ`3f„ð-¤’éeUÅpNÜEîО^‘±s)Þ¸P ¡Žq›’‚Jÿ—ÒhBrÒ$åÔÏ4r§g.F8Æú}.ì3¼d“i‡Æ6Ö²q‘lžoŸ“U g½nJ6õf¿üâΣÿœÑÂ!õ€0Ï¡¡±é ž L4ÍUÕ`Iu-.\2õ7iU]fÁ>£¶ÅW:J14ðp˜²Š“£ƒ ´Ümmn®oŠa…™ë0½¤‰÷½iƯɀ¥P‡¸§5 Ošƒ­Ž0÷zMD¢˜¥>Íä8W/ËÖ`{íbµO#pÊFfž’š(ð±ª0‘çeˆ÷‡dMÅòÚŸ‰,?Oáô¢ƒïÓÉ0®Šúd_&P§†´‰.Çda½ÇaNçHžÇî© hšì~Zg†Pj¤™ï4·;>Ñ>u°WÑæ@ߦf. ˜~§&8_7$)4Î΃¬íx`~,³ê…ÓDV¤Jn‰ˆÁï¢/ÖÁ·mÒÓ‚¾Ùß§=8aNqoÔELG8*ÙåÏO{OJ^¢ë›žHÍ iË ¬6ûRwÈGcOʨ2½©¢èx‘Ešånñ³7M•Þ©±£»SÝ:O6Ï[t,%º€ ‡}“Lò`yØ„ÜÑ!. >ÔqåÙ /”³ã¨°F| Á‘?ˆ+¼ƒ¼ãInõ›´¤8Rò79ªG´50!Pr‘8 öÙͯñßöãÓæÎéàšMÇP‹rœÔ…¬6v ÍX–ECÕ[Ÿl!dÒ²£‚Z,yÄ‚ÔÄÒ.¸ÿ/ªðG<%8:48##u>IF8„Ìwß’Œºtj O \“Ê :ž@í-ÖVÄûÐÎØi]¹ñx>ãêó¯¾n¿øçÎîóG£ùœvMâ g±ÄÁàSËa´V·×¶·k’Haq8=œÕ «[ÿ d$;—·.­ Ùp ÑDËGZó\ éQÎËÈýIÛŠòÍè´p•< |”Š`;WžnmsBÇ:¡¯®ÎÖ|s°4Ñ™ÕH j>_ÕIs˦§×þi'c3`Rÿâ6»x&áãCŠGÁ¹ü66H³é’==u1J Ò‘éß0ÊEŽ´&qå•|N[h6L+M2ÉcÄv>N#ðEýý2¼.F½¾¿ÄÅÏä|ù{ 7í"n‰g:ˆóÎBÐò`~ËÁŒm&¦]zÿ+©¥ù ÷Úy764úÁJ—ÊÞ#Æ­yrrtÂú×›CEçvv½Ç.¾ËÒ!íþ w6rÁ€CcÞ ç)ÜØØKA7ä#ÙJÎ-ùˆË£aRü0•61º«‹ÎJÍ›§Ï‚¢°‹WqNÒɰ±n¾uÝTÆêæ¸õÄhüXlžý"Qf’ßg?Ö#ÜO±d©ƒ$J’÷î¼u§ïÅ$¹”nÑqHÔp›BiÔ¬wLöN×ÁÚÓôÉÚS®£þ”d œH7©Ùpàñluc.¯³V«Ev±:ÐÄù÷%4ƒ ‚ùH™Bž$ö¨þè¥g#ˆ%"6Õý8½rVøÙø×f³ù1â'ãmýÉ„š $ ø`À«ˆbkësû‰l–IÂ×Ý9TŸ\<Ö<\f)\'C<‹SÚ€s‰ªi“–¬äÃ!y¯FíÓ±p°pÒ™²nD#.^Zßz%›âM°” ¯¢PàâZéÙhw0Q—rY]u†¡ø{\{°,q£¸ ð5SÓ‘– úñ„ÕTvx5““B„­‰dFàd«PüÜÙ”s¥xL–L¥"Øz•­‰@|‚ÐÎæ* ª]Ú9¢ûˆ•aRŒ1[ÅRJâ«ôƒ¸(ЄH¹'ëA‡òøøŽ– ÷wCPÝößMÒ‹¼Ü5^È"µž¬É¼‹0ö¾DvÍ€IèV| öjÄãp½£‘ÛÚŠ-2{ü2Ç;â@„ÿƒùŽ|A2à?0'Bå Ù'¼p1„Où÷§[<œò_ÚV‹ÿË¿sìlæÖZT^•ÖwŽ:‰,ÓW)|øÅ×WåÅyó<Ýžˆœ]~5ú†ûò+¼É7‚î™´%^à'«ÒŠ:#„žBÆïOOڽãދî*·~|üÃék0c휶÷Ñšlë'zÖŽJ±ñÀ•©G»KÆâˆE´Â±&FáY([OQ0xŒ8&ŸÊcòøË¿ü{ü¥œª_öð¶…ݼzú #§$á¹gçbù¾Åy­®BBÖ¡ƒ yì™r®¤!¬Hâ>Ö·€~ÒäK&õÉ!EÑ¿4Ô³#½D([yeCÄùçÄ‹¹=mÏÊy™åæoŽŒâýcUq‹•¾­5‰²ÊÙÍç8A[pHœ¤ƒY_}u7§yô¼öbœÒHJº­i„›«ò@¯T` ïÊ xõI㯳Q ÀÀÆ=€ 쉋ÙÐb9çå~Ó,3ó¼Fêݲ8‹¤¨¤>ŒŸ_a«äS„“VëîˆðÍGa/JxX¹ Ï·’Û220ž¬|Ü‚}“QÐkv›:¹¢k«a#åcŸº‹ "L6¢•6ÈúgcÈX»[“+š³@¼RÞy¯T«p™¶ÖÖŸolnÑÿÿ³ýb§V«áóµÚ Ç÷-™$@çñPçy#ŒXsÌ,®&µxŸ1>d,Ú“b‹$S8FˆpÁk„HpªEF3!(®ÿ|eègáDÎ_%t˜ŒŠ‘ kò\׈çSùh<Í:Ú¬nÿ<‰€È“Øÿ¬ Ù;èÂa_8W– ˜äý,+jþ›ó"\Ñé<G'VÄX«Ùìóh1¸o/µï,—‹¡UZü·<­-F•à­€‰58ÐÄ"žQW®L0µCì&®÷Ãó9¬àzÜIrZ*”5B 2×ì…­Þ‡*æ“ÔÕÖêÁ‹¸Š¼Ô­˜›š6qY‹wǼ±áìÀ´Ã:±;o¯ÆyRy‘ñ ñÚêê·6a8ZBLR30“ÈDcŠëc•ÀV7¦ù048Ú±+š.Õé‰í0ü.6w ˜˜B nÖàsuêðfÖ-[¸êkÇ 2µ’Þ­YX{–¥Ày;J£ï/P<ñ‚=-¼ö%~¸¾Æ£½¶mCdê±§o¡aåK18㱜΂ÀÙ)B¶Ð˜®—Ä–ž:×à*ñqÝH"ŽìÌX´ÐÕÀ¬]ܼÈoÒ>³9ÓžNfhÄT”úÂòÙ 7 ©wßtE,8•EÐÑP›"R›>¤wñÎÕì& áÁ"ŠÔæ'’¢"{õ ) Èpé’w°#}±î0Ò–™ÌEØÏ¾×L+è{×wqõøu î߉ž 4˜ô¿8ïY ¼*…æ?¹¹¢]ìRRØØ{;SÇœíÑ(ý}çT[.3(À¸ßŸ!Æ=½åh3©i^²ù…Þ1æ˜N¨1?9ëGÒƒbÌF¬%' jÜfºùc:w'bv‘® íÛ#°ÿaHíÞ±ŒÓoÿêw* ‘÷øs!!î=-’-E5xƒN†’„ûXq»¸Bß ½ždduNÜ<‘!;Üû^ãíìØ/kCëº!„ò>ÈiE§VLžKÃw­6üù!ª×,’°f Ùu‚ľHH%ˆFJ>©»8Svϳ‘ØÓzY3>郵qõñþËš80&Œx'eSE¦èOö†™ódå¹õÇeŠo¢g<–;ì ?•b7 ˉtõ#-²*àŸUxl¡K ì~ÍŽ‰Ö»¬¼5×ä"épZî¹<%t‹$±gìQB³D kãÙ„&Õõ¡n8DüÇ9 "Yä§g ;xö³úHÞ¥7€¸#¾Ñýà 9‹²8±S9GEì®öNh±7ÁW–ƒs ±€· 5†àC΀ zÊ2Y¸SÅ–%9%H5wÒA’\"Ëà†=’õÌJx’›©Ð@?Ë\åÙ@ÁJ'> >"1ÍJ|;g„ºL"Ñs€bË=ŒÐ"Î]ºÇ—Y啽§×ªó­‚c4Ð$'¿iêìxtiÎõ ù`hþ¡É5ŸD¨yÓ B…P\ ³Ð¤ðqöëFá¢@ó —A¼Û·ÿiïíÞîék‘‘Óx»!ʼn®\_SbçûaMqœDÎ2²d½˜ñøD1Ž&a8W0&æ±9uÏÙKŠª O9žÈ:m:0çù=Îtü¦‘ÈŽ£’?ims3´õ«¼+aaVcõ_ÓH|ЀeÞI(dJlAz}±¶åk§1€D%»,‘óð‹µ'ÛŠ†“¼1ÑV%ßJ‚FbÂ5¦ÈÍ IôØVÈQyèöǴ䣋i!ëH¡E‹TbgL…ðh´A«u0´Pí{6 ]DdØwŠÏ»æ*Îqf…¸y1O¼ñr?öx´ÈÎ}93ÆK—ÁªÉsñp¤dwTÓܵàN?»‰ ý—&ì¸Ú]yÃròÀ*kO6FUXìp ZÒ~ß§}&»Éˆ¡_ĉ;d-޲ü6Ù{{†é§-¶¶œƒkÁΜRæRDÆ7Z_%W€#Õ6›ëÍUŸ3— ÕÑ«t¼ÿZ_ÿ¨sA*o{M¯Šðê¤ ”¹œ‘'Í—ýºŠÌ ÚnTÎFÃíS×ÿZÿÈ^OFx2r?|Ž`µø¥4lÈiI¬¯`ñ'Ù/E ‘.“+ú™wš´ô‘E,µÍ¶Ž¨P,Í'hÇÀ†ùØ®‡ùbªÇ óU  ªcn:à5§HÎí: jG+03u¨êµ“£*…³{ÅKÞ|ÏÑN æ0Š;;í®zs°x8üWx ç,.re¥³”®àæHm(zm±„Z_]uI¸ö²Hx©‘bˆyÎË)¹\Ô‰)¡CŠSŽC͆+ÔÖ@Løý-¥+ªÞXú–R½§µZæù±Ü³êóõš‚çv¯ù³[²ŒF¢3“Ú3Ý]çµPÝ)fJÂ``æ0;ôüræÒb@´=.ÇKÜÇú9Œ%¤€À¨ýÙ0!k¬xåé¾ì{C0Ü&ïj¸ñ)“ ]g#'Ì,–5ô!˜‘j¦¹¸ÿó¾:ÝÖ—ÁOÏ>˜xï{³y‡…¨ô &’µ£J¡²µÈL¶ÒÞø+Î@v(ˆtÀ-¬§„Ö—*¬šûbÙýïRäsä¦ú°w"sèyp‹(…ªþy çFÓDöñÉúê¦;>S‹¯‚¡ë¼ÁEâø‡|h€7wäae)èñÅâQe)â#Ïn%ã=°‰Y¾‘d¢ºªØ4Ó×¹,`3¾Õâ§êóÄ8#ž7ð«ÄϲéD+^<à‘Kþ曓ãšHB¦¿‘f™Ë’6)𦝔ó6æ–¢€)€ø¹)xÂÀéÂ˽“.³ò ª? mK @RDí¥ê%jÿܤ¸|¸jËí«›BSO%.¨ ƒRÀBŠºì´zïïÚPu<6’ðê€.Ù„zä"S¹í§p¼CzfïðÖn‡Ož½ƒƒ5® ăDbïsˆèªqšܘˆ¥£¾ÚCÔàwÚ¢â*÷€´uº*H„ÍMW¥#š¤ùˆ#6Æ 7ÑdÄg5HYHð’L_pQÌëÀêvð†M—*kæ­Æ‘u¡»0¿®Ï2nyâáúÈÙÏÈÉ€ý~†„yÀûivîìS¢º4毦 Ð"|tšÓ©^P3ÌJRìA 9q@…te$ Áv(Sÿ ö$Z«¶•/wfT‘ϲ%w…ôtÅžýÂ#÷»³Z€ÿóY G¿¢æ|eå/ ¥VŒ{ÿìû ýdÅöX®™àEn£è6ÎÕ0¡ËåT—@XséÍa·sÊ¥ÔN:/UÑ zƒü"áMÇ'K hé@zX¯' ¬>_­Í[)ùØâw¹PXäÒRµÈ:£YrǽÑÖ,<m2”Ì@«ÝÜ¡'q¼òO<µ¹B-;ÑÇ>_éÆ1· ’%…Ýí…<'tÈH½Ñä"}­sÝf˜pª›‡Ty*Žº#Ìnt8¼¬èÏœ/R|DAo={‘\©äœqÞøÎ†©¦l:iu™½w¤×ˆ,ˆß^Þ¥nJµ8!pµzPØÊOg~½ÐŸ?¯„š²Å!‚< œ¹UKûÕN_ÖÁz´˜³ç2ÓÉŒ,_ŒßñÃ5űS,„¼²'Ç4zgÞ{F!)bp/ Ì^S„E¡_Ü#êLÝE;¯~°-àà,sÏO´ªËyïgЃë~¡NåŒß %"zÛRW^Ÿ-Fök7 *¹Ý¸¹VØÖ.é/71·Žnx‹<)êÙïßÖº[ùºP.³þ\vuâܵ ’I†iÆîû4Z”ÍéÒËìÐ7pÑõu:È„ Wd< 6Î_‡Ê¢‘~!ýC¦ã á@¼ïƒßI/½é\W’çÕç_Ÿ÷ÿY¬8­•šA–ûHëñ¹‚§™WG,štÑËýE:®½r¹ƒ·!ádQˆýÊø,u¼7›.¹ƒ£: j`JΟ“qsúâ‚Æ}/Y!È;”6·ð Œ~<¾‹ÄÀA/0ƒJtf5=×D×)dçGs}BãO‚CÍÅõ¬¬–ß?"MhçugçÛ€ÏÞËe¢D,ò’)Šˆ€OYØæ‹eœB&âpú|?ÌY#;…78¢ºüˆ\­™Nb0—)˜BfŒ2¸3_ú$ò‘ùÚ:‚3–sᇦºÃ>‡¹dŒK^šs;©sLœìt£ÌrGäÕ±‡8m@·4~7e Œ÷Y‹[­ÆnÚO¯•_~1Ó~ ï£\i­§ëiÒ"—SK¦U¸ÑôùÀwÏQ8õÚÖ#v«NæØþ9‰ œ˜ßuA‹ÂÀÎI_ìyàª_Qé;GÔ`f‰Ãó¨ÃÂń»ŒxB3ý}¡$É.â$¢S0‘`ÞU 1˜†rÞ€piI]«’.b‹¢°+ù®ÄÖp–¸ªÑ‹»ôYë¼5õ¾Ñµ<%ía™"ä8l<7Æüè´øET—VϺœ{Ä.ŒÉ›ar§ºÆjM ’08 ›BUÈ:3Ì dkŒÌ¬/Ú­' ÏíòÒʡ҈Gí“Ò¡ê<û¢˜Û…Q–†å)°ÂKB¶ <ÂÓ¥=6¼óð(ÖVûñáÎffólšø©Ï£U­EÎû-Ô§sY|ºóó¢Sx2=$Ìù·#‹aPäÉjç´öXì%b’ ˆH£ªÿчPÒ7z àfÑ×·½7hº/%N¡˜0¥g\mŸÔêŒ:›p:ã­HR +¥‡c½´4s÷ }–²o!™TÙKOOâÇÞoÊÌ 4¹üöxçí ÌCô;ZôT9à°¸•¿×D­H9Œ©ˆB×¹ë¢m‡%/&ÁUSJ_·é- Ï®”o²a^p&sŽmîjEд§ü©\Yˆ€ $º%¾à¨Ç£ùL•V¼ºõù²š«\ g9Tu³Ã\IF¸À¨U-$lQ¯pÚñ‘&¼2<.^ya㤯*8ÿ ’ñdNÍyáTÐlµ‡7p3CyMD«.iYÉ p«ÛòÁ¾hµV%_ú4vÉÀs¯—Á¥Xv»da33UÀÃådvÍåi%Tã4¹Ðiˆ`¥£ÅF=þ‡½ªÌ˜À'í^°úÝWN²è >‘‚81ü*àÆ -å‘® ýxp§šØû{ôðÒÉ€Ðî™GKÄPvO78‚3‹馒Ë7š]{[âÙ¤cÁ fup„_/[2I‰$o½°îˆË~ß–¼¬GÄÆ¥Œê IÀRà™…{-š0:¿†ŠÁF fÚ UW\5y—Ä2*ÊQØÖᎿÈ.Hãà“|&œ>‰„ÐÂÉÞwUh®5Ñ¡eÊÊ€g¹©2¾Â±~ÀÝäHyM 8éÃ|.bÑÙT3.);ãXâÄ…Û«1“ÚáPãÖo^®Pîø›Âœ„æX€GãMý,s`Tß3œ«âÍ£%1nçS!Ø[`r+äÛúTWèÐ.ÅŠLã3`눯œfª‡ôæØú I¢ð+AJŸ\ˆÔ2*^‡6·®òõ³m&ZàHŠ .&S†p‰“ðÚc"4:"³†–(pÁÊ\pn•(rü¨\».þeƒÚ¬ ÎY.s%ÞºP¯û¨-VP~ÒS¶Öp¶¾n¦*4µØ@éríB¢ a~¿PЖèÓ<^H8³!¼{l-bý<ظܤB Û!ZŠ”úAOÍž~4H‹ÀüѤ"ŸŠ~¬0IÙ A+½Ñ˜ß7Ä^Ö JUhi[i‹ØÿQp¡³e°|‡¸0^CV9D•ánÇ‚çÞÏW\[Ü€øUš¨+pãX™á†]Hfã#NÔe¯É#9-4n†ï¯“›šJ³©®@ËpËEOJâ­ ¶eå+Z3´¶?ƇÆêu)Û`˶eb %e Y2µ29w"Å_Ì„«Æ@.nÑý£ï\¡Eæú €ÈyíA³ÖÊðQaßw)«S£æ,ÓUr4Pku:UúAg–‡Ê:¢°É¥ùé5¦MŽ$,dé&ªî9ÅYÎ ”΋OX¦ém4äSE?rÎ0s=³K:n¢¶‹y©¥ Åðœ³R+Ä ußÁHsšt±1÷ÇA@‘tJ©rÕæw˧ã›Þ¦ì Gª Ò_<Uäaº9i„jo] †ñNxñò9¯=õq&ìÓ@š7 Îï"¸DÆçš¥Ìj]ªœ‹3ªý™SåÜú¨²i‘[yC·«Ï•d{¡iQ$¤ˆ›@3“9t:;wm§€ñQØã¼bÚ'm§h¥ëOkÏâ€Æ¬©\b%è‹êà@)pü-hOâ{hÌ(ÛùR‡Óü<ÀBOxÌ2&g>jI%Ѳ(¬¹ìDH½·$£{`Yþ…ÄÃ?$êõòé /qDà3ÛB7 "M·w̼“9ÎÛht žXk¸`;IåÙˆ}J©9Âiþ“Ùè=ïTO"PÛÂ?…n+où0Û}f¿º:A£ýÞÎéÇ!íõªt½j'©ª(‡`h 9Èk âtä:nšˆ„½5sÃб¥è¡sDD„Å`HPùP?3ï1s绲¼<Üù¦ãË¡wÀ§—U™/ µLûrȳ þð%aˆÄ5Õª©]u šSOèvvó«<åÙ‡3î>êù7’o«ÛuÍç’Ó›÷?Ôì)ýšC¿º–ŠöQ„Œh'Έ”ªyÿYx!Ûi™V®ÀÏÜå טUô‹IìLÁ®O]sV¯x³¹¶eÝÖš0N1±%¼adüÉù9\≯åaÓÃþ,seøg8a}BÊ\tXŽ'R«R *úÓP?åq…&-÷¤“!̨+ì¾îquwC'¬âç=Yúâ#¿ê¹§.W]ê®;V!§N†qÆB§æ×‚¤Ø% >)v¢X2Éå×, ÆuKWÁ•马t³eàáv©…M%КË5Œ|^©OtU§ì*o³G [Ljœó4Ì=“mÙ+ &Z›µ`le$ßJÌ£Q¼óºs²gÂ~–ÇíÉ5Í(R=ÉZö6`Ýë2Z()WÁÒ!BVÙJo\6—­#HT–¶cDPG?­TÞ–¿«LþØ+¥ê˜AѧV–Iƒ¦m Ÿ;JøL=× …ô9kÒ›"ÜÉ|FÐ’J^,_ ÇŠ‹m:¢ Ý•,]9vJc¾-„Ù\͈s‰ØÏ¦ÎaÌ ±(‰³ƒ‚:u™²Í5 q6 ”Šf‚ »<ŸyoÄ}Œ°{‚ä÷d!f– »|d2Õ¼®¹ƒ*®ÖKñ4K˜VÌÐ)צŠ›n¼øËT6üÔ¼–âdÔ¬œc¸¨-YùÐÛh5ÿ.Ê~ÑÑ;!½îøä‹'kf¢³\oì Òt¿Ë Ü"Š® ,É•äFP3Æ™y–N¨t“£k‹?ÐF’ê ÏñR#Ý W!¥`§¥™ÏÕ8…ªëÁ"Ï5cr$x0K(ù©üÌ1v J ,ÛÁýlC!XÍHQŠYpc€À±Ž†]û(x}YùØã; w슫Dk´;ÚŠÕ´Z3rìs/*!Å!ë¡ê‰ä§Š~²÷ñ¼B¢ ¹ÌÄ…D¬Òõ…N`:Ž,åtÝ;Fgå"TA1qäç4DAºîY²P"gË”j\—BP>$Às #‘ ¤+Ä‘Ò0 GÝÚ »§[µ8B ´“1IøkqnEE/8Þ©üVÜÇo4ÁP'+¥(©¬ç¸ Ý·:Û"m´ª7ß}’Jñ Îí¶;$L‡_Ó.$ðK/ôAê†Ó‹Îˆõ§ñÚÓÆ‰PE ´îG °C¢Mt³°ùqÅ);Çà –znâóh[| Ãam»Æ#ù]–xß’n?Ž×V[ë úeÆóñ§é€3äH«‚_žì‘¸Ì¯¸#}¸P"o9¸R^Ìn§ºTdw'£8õ²ß2QÒ ®xÜ9Ùéžö~<å’PSž§zPtœgŠYí#slÄšÛÍdŠˆTü¹¹TŽKô)*¢º¼tÖõ»&n=:ü˜× Žd¹³¾ŠGá¡•`kCsáS¥_a¦@3TÓÏœG—¯õ{ïàõ‘¸LÉf°Jµˆ¢Óð WSo:!óY2Ü¢Xúît™(GÍŒpRЭª%Ž&I\bîRAÌuEšµ‚þíom„ùšúBw>­‰/e¦l±c§L“Ý*T.ôb­ÖT,ìàeg7ÏÌA€®§@AË4v–M›W¸µ+œlOû›«çOé¨y3 Š)Ñ1¡ÅhÊ€æUˆÝ4¼XÖ ™ 96 œqs]zºélde5ïdÓì%VÍת§6¯šuìÍíF«ÕhmÔêîI²¢Â·â…$ñü.BPX•Sk tH–¸›~¸áÊjÔœÒ÷ Ã’•q—¥À{C@XrºYǪ;(U`µhüÐalxyIÑ«°¿~ͤŠü:~*” Íúéß¡!yǰü˜Yˆ&Ê­¶³‚U]¹ ÍÌŸ`\›¬È“ô`éã+e;4“Û\{ç—i{>¼«[]jÿª+ÀŠ‹qÒ£Û½‹~‡ Ï22|SdÀÍDâr7(œ3àb©³*UÉ莤&5'Á@[wЮ¯ÙŽûÉzº€•HŒôLwDÌ9ÁQÎU:}.¸$¼öL{Ž0½@/CÍͤV‚V0á ÿxgûiÈ`"Î!¬Ó4˜´?L\Qöƒ°%–"ŽdrªPŸ³€£+·ÉX¡‰ñžd¹ø„,¬%üŽ\3Ë¥ø<Ò뾊$Ÿ[ùXøÿÞg²vHÅ‚Õ'ÁµË~E¼f@/ÄqãmÐãÇM\¿Ylp…a"„ÙµP혴a©*”ì +°¢‰nÛÎy¬Ÿé9®Äd…ñM ^n'9›ÉV+M·É0 Hv¬&³;£F3qÍÐ*÷h«¨)hKÕí)'ŠLðuÖÜŠpt/Զͳ–Î‚à“€sœ!“$AwT6-¯Šä2ÉF¥PÒúv¼ÚúmÚ›ÌóœQã±VæUÅÚå‚ú+¢,¨aÔ-Ó"v‚ÛßR&³Ÿz®OM‰RHãO{ÆM‹Bàì‘U¡X”/lúù¼T²W“Qã-?ÙQ/†ãw´Š%—¬Ao…L) sSÅW–›¾§¦Ÿ5x"«—ãºÜ‘›M;̈åÕv¼·£lêHئZ(hÊ׺ßN9ç㿾}áßmÊU—Iæ§(×ÛQ›Åßå^ÇQÆlT½îiûto§·¿÷¢ëßm¾£M´%Gª‚Ô (xNc@ŸB÷ÕÌŒTÐ÷NÉ„f­i¨ùäkßK˦–ÞH÷|IÒ_Á¸èŒ½`Ó/ ÏÄ»d±Åî/Enw;å1Ó‚'9Í%*Ó ébä|ÃË—ˆ>Ò;¾ñˆe# /êøÉ‚µ I)¦|Í‚ÛÊ—'ñ…c÷tKÇ—Ï6¥ÓW?¸š[ ¬Èûbð*ñ‹ûöÃmIm(”'e¥!b  ÌÆv“nRì×aÞƒˆÎMd˜²ùÍ$¡ó»HšJC.¨”ó‚Ç(°«ïªä6¶õ&îDôÓŽZ±˜_?3¯NCñH}pÔV™ËiS0ø¼ùsž\i7´ò‚9û5ÄÃ¥¼èè5×a&ÄE,Ã5ÖšÛÍs‘{&Á¸ªJS:­K×lІÊ÷çA Cç»´N:†$UQó®R­vJØ…WÉ\aS%„ÿ¹š¾Ó}°ÞN¯Æ×tûiz}“¯“ÑèQôUãO"Uv±ÃÓó|.~9DÊUÖ•ZµfE b>•|Q¢ãæŠ#x]Ìîºù›_Ë^FÃ\‘Våò=¯”JkVÔ—¡éu%J ÞbÛ°G#c½ääT_e6—ÓNd<VW¹8;i<’:3‰èq\8ó×çfgYs.=D°¹à.ô\QhιJ)òJâyÛR&Lƒgd8û/ÂÙ¸.[0áÊAûá$w¯½ßÂ![—Uwt{.Ö®ëTRd¤ØoY—uOsJò˜)g‘SiÿèmoÿèèÛöÉÑ›ÃÝÞ‹î·bcˆJžÏ7ÝŒÚ#K€»2m1}®D åÎ 8‰q’6ô³Dê7„xxÏ Èg¤[¹¥X™×7vqêË`ÅZQ”%O$œyÎæÒÈ~¹ «E€²OY"½ggWP;Nü¹Ãúwì²îBxä¥f÷2± c¤Ø¥žµu…ü@qSÀ].v¿üBª©¼ZW£©XƒIP‚D2[Ð…Ï"à'c±^.¤²;ž)K°@wÇdœe¹¦õaðú‰´àëŠ^ȉ MÈHÀº2Ë'+n.7V膼„K#¾…ˆŠÂÎ3:Â;YË}}-ìµIöȸÀù„œX&;Ž “ÇÉL´‚Öèôh\$´¥ï~°9$U!rƆ©p„ÊÜESd¤Í uŽ?ä#Æ d½SAÂ%`¸:öŸÔ©sÈ"xR$“1¾1˜´z¦G’Rg z“l`ºd‘T<¡íQèÃÎÅRLΖ.öÐVüņøwrÕvÈ84ÿX¸èÒk:öÿ£Ÿ7onR]Wçá2ÝíäEÒ@TmÄõ•m¥„þ…=Wckž½…့L‡2á)ó¹ÅZ(pål­µñdc{}kcÅqvyÊ£øµ;Ö¥¿²Ò»ª¢ÅB` û)‰w€_¿Äzó+R{·bÇ23EX†ù¡•ø‘ã â§' 8’²{€=^ITÍø'–¹Àˆ¤]5j§óìRô©¶Ð\¸Tf­'àÜÇíJP:À-s°¥{j•Ÿ‰—i{MÈI ¤OÔ½.¥&p‚ˆ£BRõà³Hû!)cŽÕ‘/0ÿ†»MÄÍ…‘Ã@ÜÐûY¤MëTçÊÕïtz¯¸7…îÇîdq›² D»yæšÒßË‘IGm¬X¿ÀéZóɪ O!¯ /®ÙÂXE$4ÆHú¬ôÀ ‹™"÷ÌÜû¨)I&¯YòkÍ­Õ¦ÏÜ6ÚäìÛ&h¯Hr,a¸šh†*ÉyÒ¯`¨JŠ+o Éúå4¨qú4m@¤»U$i»ÃÍiAžV”²yï¾up~į’KYèì¦v$ß\|ŽªAIŒ‚°°ÛÔUyÙVíqmÅñž²ô`«bÙô9@)Ò{½cÏ‚Ü;’~Ú6.ºS\øg U|DÙ Ð3ˆùkuêGšj@åº$\^T*@9ÞÕÈq½aÛW¹ÒAS꩹®³äær3õà.«oÏpYáÝŠW7 ¼«åØéœöv^î·_uÝ|ó¡rÄß*Å"§ n\çWùñ¥È9¾Còj:½ÉŸ­¬à¤o¦²kTs]òÔ£šýËìy6øzmóɶÓ#Æ“*'¯%× N ’V¯›%©;kÆ’¶t@Ú.Sd":*ÄYÀþ ÑôÄEä Yi•Œ!³É1ÕhëæÝeàÖ5ئ8ÕÛÊÛ2°0d÷«¾QŒä3Òóaq"8”øQ8\µU®«Kšû³ø ½súºÇúÉÞá«Æ7Llèþfmõ¾™´ršÑ3ºm3Š7Kó~rÃ#Œ¤±!‹óÅÀ/v=G{ÞôT2mN|¶[X~é[{3Ñ Á¬ñú,Ä—K ÁZKL“1q?D´Ç{&’͸ÛO§ñIðtøLîx”GÅLÕùÌ£ÍT`½î/Žö{ï÷º§]VÕõ‹—owd(_5# cÇzî ¨âO`2¯p2¾ÿ>2ìkÞ¬•“¸:£³j}­7­ ¦.(¾/“Ø„DBúÐoÊi%–&[««A>W>Å¿âáE’°a€Ôó¯Sp Õ ÀÀ yW­ÏcŒÌ”Ç›7} ã9”uC÷y±¨(—åM`Σ§(”X–hß]}^].Mþ×£æ@= #qÞ™±«™™BÙ%™D*ÞÙ*3êJu÷ҔߙØOTWÃÙÅUà”Õ9)….™ BIÌn¬ Š‘ìã!ø&/QrumýÉ“§’Õv ô“”YèE'­5¤õ¹æ^™”¤‘"ðuxß)BóK4Ô€#!ÝqÌ.2&;è¾"~3#¿ÕlãþU\8”xû8dÍEÏøeqgÓÊ_‘äËú*ð¯1îwtPæÊ ŸJö:¯ŒA*5=èK-ö­xE§;?ÚÍlÚ³ÌþÜÐæá{`¢wXð:—¨Tn¤CAº'©ÐCF+çW®l©ð‰Š²)I†Â/r8Jò ïb…jÐ…—ÔpfY¯Ì—cy9éƒ'GHâ¼›²à—¾=òèWÔëM|o4ø-²<Üâ-Myc+ º7£ÂE°!«9¶úµ’ƒô­qôNWwŠ×}$ÙZhÂþ?5SkVÝ;‘YÉZ9"-nx­›9°8€Cþ+dÜÝî+5x¿¿cûJCå­iXa0Qm¯Ú§%‰±»Z2÷»²2R¦üŠ2sn²Ùõ5õ$Ø¥ï4t]´W¾En. :Ÿ}H7Û&r ‹M KÄ!B9H éTu—:_c¦ÄeügT(Ù§˜P+‘•L<`?)Ñ™h6¢œù–ÓoòµS5×ɇ‡jæWcQš˜xâržâok@3SHÄÖìýº¼„q17Ž,¨&àgzïAšxo·päA|ŠÙ‘Ì$ò…‘–“(¿&)RÔó/Ò©é­—WÓßdâïH†€´EB+Ð×Êë5#ÑK%²öã)Z²sŸÊÀ»rZ¨u6¹cÙTrâcòTØ‚`NÏ0Ä”Ÿùg|ùK¾ðˆ}9–ßÃ"Û†;©ûÊlE¶éȪ»4ýVú],í¾¹Éü$º°¬R[ ÞéÆpšt°Ü×¶ñè ô¡CÈQZá¯ãÚ©‘ã+JB3*w>ÞdTŒÎh.p0‹´Þg׿ZŽpØ‹²kÍÝ:ï9D57™Æ®JCWÃ)üwúåïÎ1ÈNíá0ÊÉ õtDy µ™at­ ¤+—§;Çŵ¬9¢;ÜØ˜.›–T¨RªZÓ¯}r°µQ¨˜hÛ¬J‰?Â*æ8ö’ Ì9;‡›,µ×ó˪1%²Ô?ña¦r­‰†$eb½°v¤È©:•;ð-®t {ÕÚ¼™œd¼¸Ùl‹Ü÷æ— žì @qÅ¿a/åp,ñÚªÑt‰Àuas–0vv‰þÞÚî1Ç…¥™ÞröÝ„Óa)EœaÈ .ˆrg滵Œf­¹âüc%t0>“+øóg¾¾”º#&#¡ÍqI;Q“åaÏÉÇãá;Õlædd˜‡[p$ïmK2¶8>V®bùTCPˆ‚Z±a€”éЂ^.—]H¼em~P¤ßEãÝdP¥ï]äYZRFíÂ3X B¸:Ü’´"• üåÎåX–Sõ°¾ÈØÅlÈE¸ÈªgJ6/‚&l3u_œx ¦(.E5¸FË<ã-ÃvùÈT©ÉÔCZ¹Ô“c|Ã( H¼X©:TpÂ<>}Ý9„Ruž; ^¹,†;•—ú>ó'7†ÉB¡o§ôŒ8x7RN·$›0í¹H³±G‹oNyF"œê3¶°‹©áu¨ÁçBy¡4¶lþ–©‘Ñ™W}^Ýí¼Ü;ìÔXûTÃG•ã’s%„¼Ä)@ì™ÒJ•ÃGâ*´ ’ç¾I³Ú‡Áµ‘òü]†åg Qž· \6 ’ûÇâ/Y Ñžå‡â3{S{°saÐ=>.Š•:øÔ󽫒rà4R?0IÜb@‹¾W‚,ìv>ƒ¡«øèOÅÒ ÅõŒùôØ2>Àˆ3¨= TµV)”YVÛú˜¹›E>qñ‰ÕUxü¡³ÖÇd{ùt6¸«ÖŒÖOÁ°ÑHà.ºD4/¯\Ñ¥^€ZI:’ìOÎ)547VFùZN^:ä>äÓŸý†B.H3¤k²}Q;ó4@u¨g@Å ØH[[âeã¢èIÀãY,Õ'ÞûÈü8ÎÏÇ›˜½¸»¾"M9â“ñ%#³¬^kKKYÅ‘B»²XAa{½ûÖîš÷|†~MsDš÷yqÕ& [DÅ7¨{pO’¬xs¾röá×ÁöêêÇ$©¨UÎA"*ǹ¬´ÅB»àyŒ\F$YÄêRLyçü\~7_ÖÄsy^d¬"%y™„x÷Y¼â%Ò /ÆãoΓI ¿ÿÛO¤ñËjãéÏ589VŒ—œ R»5®àËJ»Â ÉP”+V×ѧ•À£Î„—nÌW_E0zðŽñKƒªÜ̽`‡ ’7~½[ 6Ê3C_b .ôâdö!fPÚOdò^§Ç}'×Jê°OŽ,P{’¸mɃ̽=;’±9ËS‡°,9/çæXõ\ÝþAÁr™7í(GÔ=·3Ä•xÅBð>Î0zÀU:¼ÑgH'ú5sö¾Ü{Õ;aD··ß9|uúšï,$ô$$ðÒ'ÈD 8õT &\ñaçŒi“ŽºŽÅïFˆ»\q*G@ɤN£P ªy €ãàh÷ è,ÚèÚô¨ƒzÜ=R„@=Ö_lD£ƒöÎë£Þãž~Þµ5œ}‚‚@‡a×@>óîLÎr4‚Ðëwcd1Ü ì·›â!zw\`~n•Ƥ‰¦ôo[ˆ ^Ðï'kO±w­Y9YÌŇÀJz}1ÐÚS, °²<†‡>RùCŸ¾¾*PYÎm_´²m¯]ëv$ ä´ƒM•:©ùçGN]]Ù’_š9L§H8)¹y7âµVãN9…4¶ž>Òxø+FNçJÈgç> Ÿk‰­ª÷êÕêZw-’™4`œ¦l=þÇÌhQôDõ….Œ“59X…‘ÖÆú“-MŒëÈàÂõ5·ôUí ‰¨›ñ¡Ô™ô0ñdç!HÞÔWu¯~€Õ P§Ô  Jˆ[9P C+…œ­³ï]¨\ÒŒµ³Ų˹]ܲ…Ä Ê›0+Ȩ(À¤« r‰Ë¬Ñõ¼±maÔ©ÐW”ªjlÍAñîR¬÷‰US lGÜ$ÄpP°*\ɯl–ú±LˉË\|Žs¤€pBâ'–Žs™¬ê»äó¼ú¸½³Ó9>µògžñÎç³±¯KkÆ)âÁÎYÂ4»ü8+Òˆ‹à¥c$—è rñÚdÉÆcl®è¨+ú,Œ¹å[¡° ž€$hƒ¾!±òhg g©W pŒ¹¢ŒäŽ uŸÏþ»2-Z´múHµlîP;4ÞJOõ;ɳe©Ïá¦ôcôã£0~FÊ“ 8Q>l–ú$uç%a%ÍI<74äVÚÕçÏ\Ûµç/V\ù¯ EÔF æœ4/í!,¨2¶øŽ9—gq$PÆÑù‰×Ìý[6Ù]8s\©XÖ‰}ÁCE\'t¥U²þ½$w²­“I¨y2à˜B:-,8€‹P`UDO±VèÕ\‰’܃ÌÏX€8ÊùS׈R¤œ¾ ±*DÐáÍ÷"Š3¥ò@FAσóÉ :‹°4b€ i~ ›žŽÆæK³#„SÜt½°íDkÔ›à)<Èxs “ÒG®FˆÑºpsÀE“r©Z¸šsuý°/^=ÌÅHÝ:æy7æ¦å kk÷­ÎˆN_ˆoÝ-œœÂõº[\|Ü™Äòë|} åJÕbä*쉛³ŽŽjòÏä¼Foøçþ î£þÌ&+A݃+Ö6êä+ç túzOðÚkÝñÜò6¬|U êU’æmÜAËyûd GÔîÆW±~çݪÕÀúG¥ªN‘€v[WzÌUáî ‘ät8¸ %dõ”†Á¼SêÓúMï4Ù µ ÙŽ2^W×"æ<„DÕªæ©Ü©À{Ì.'ûÝàq"^Ô {墢ÊÙªŠ¦+%|Löä^{¿÷º}²Ô$i{ç&…)_54¤5§Øç’ˆ ÅK‰è•e_Žk¹ÐBk’åÌIJjiq{<•- X_÷ ¶E d¯ºí’ƒµÏ–‹ÖÁ@•t‰E¸jîÏ Ç%Þg#¡´æSœôý`‡ê$·{Óø1l…º™æ z—Ú£\ðàr’ JуµfËEàviü#›^Èy#J({–ëUãäL47çH¡ƒà  íð®füò¸%8vX‘Á‚Fª«1´‡ðA[ƒ†pøÌŽN0ËQ;AÅLõQ†š›˜”æGÑ@«‰t¾½›ú(·‡ÃQÚýf!£~l©Øâ|º‡© %Ù˜ÝD!’Áå²apê(‚šÆÊ2¿íÅ" h Xœ5F}ö_#bž¯¢0 r_rÒjõ‚äã2hÞ8oPat( f æ¯àº´Ë%Ä‹œ–kŠ °Q*æô¸ç™Õ1eÿɆdV8x¢À—Q"cÝ…1ƒZÒšÖCÿjÂõ׃¤$ÏAcX:BÕ_!VÍ(½¸È˜@B[”nW>%×°ò`|”’Œ“$çäU•µ8G &cbt°ürt¨Fžû.»ð$y†*‚BSWö}¡-³bäüy+cŠ„‹NÙç³ëöCó\ñ@îμԇ8w«ÑìFK0b%ϘÇ3zfb‘tIŽaI@±Ô½ÈN‹ &²X[šcWãy…Z#5ÂÍ`;ݤfÜ”Ü4^²È–ãCd½xTºXkÂù°ºË‘fçnr»œ-YUÒÙ¨àd¿!%;ö«H¸ç¿B+¤Nâæ% +Ëäú@À) Œ#ÒuìÙvó÷£I4)c#륖 3'œÐˆ?袚˜KˆÞçñ»%4§;€qu]+þqêkêŽiK’L2Õ9„§Ë­mçÖE™r Õz°Å†ðÓÒàá¨ZG&À„£/bÒiNY¡f+ÓÄö˜ LoÇši¥ >ɤ6‘VWç}@ZåKNYwuˆâí9ª1 ÿiQ²ÓƒÞe2:¢X‚å}2‚Wd}Ã…µÄq'eê0D†¯“êOl&›Áb㦌r튂/@bs¾. ðs0D¢+"æŽ]ŠKKÈŽ¢2Îò¸ºõOE/ªypÏ ¹Zgú–6̦Î,Wž€;å±kà-¹ÔÝýæëxõCkuU¼­SƒŸg– ð;c§&©‹©ÚXjg¼Ò'yâÛr7#Mó$?›Õ—%[“´é‘óãñÞ8Ꭻ—üœ‘‘šêVO\]lóíÄÕnª‰ñ].¿T¸>’#î­x7ÁÙm¹É h#? <9Ý€d¶»WÍ9 •sÉâc¼HFÕjprCŽãùx¬Yu.ìöîÛÛŸÇZ‘¸ ÌÖ?ßìÖ t‡d£Žÿ±¼·Q…Vl#†A@sÐÞJ¥¨K‡à’x¸óØež8¼^dÞ"UAJä¸î…5è¢ëâ‹ëì<š¢äq¢g‰ËöSÇ?Ÿ¤w™¶ÜA.Z¥>@ºa_’p²¾l´B `d=,¸âùd*&9.*£¦Ç© ~“Èê†Ná­i-ë”|W0FaBj_ðfV{Ô=ŸúR.µÄ¥a0I¡QÛÔ’$7î¿áò7æçÁt¶»;{{¥B]ÎÉgÅ t Hn.+Vï9Oš\\ÑÊÃv©3EM@ð²ÎïkØúç”R¾ UOUÓõZ6É{†ÌY™YDû…axji¤¢0›€}…¥ùú†ëò@~ØÞâatI¡ppæL¾‹c'q‘œ¢éäXÂ&­Ö:§p+x™ÌÚ“dxÿu6zÇÉ­œËzÜÚr…Ãï¹iµ g±,¤JѰ jM¤I~ç1JâÍvx’Èj,Åá„yÌ ý€fX ³„Bìͳ\hpå¼ùc k'¡1ÍF‚B•ÂtPä –‹‹I#¥õbÂSEƒ:pu”º,=Æ¥‹ÌS]Œüüû‡jÛ/vªÏ¿¢_¿ùþ‡•⛪¶VÓÊ‚ñ£ö#àHÎÓ@ö’Æ+`T¢V¼ŠËìêk)¹E¡ÎEõaÖŸ7(³´g)<â#%ºY÷ ©Ð*¸5’[-ZPÃÈruatTÞeç»*fÏÔÄ\¯úX`#(©+€Ôœ‰FýÛœž+³>Ö:¼ß=–=!/t1®X¾»ÌêÛw]W±§8°Ü3«53xŸ‰—5Áì$tÔI×Q½¸¼%»:¬Fd¡’cMæ¨\úR³u- ¼\¾év´ÝŸ8†µHjÞI­ëM¦ K-f¬,ˆ¾´'Œÿ®)c;ÊZTÑ1D¬MìD:ô±t‚W+Ô¡)T¼„sãP†º½—ž}Å:¤Vœ7ò7˜’'Zu^TÚ„ pìɹÝC%\ƒáÓõT!Áx$ɬËÁ¯ÉC_K´@(JÖú‰–<ÀeKk.Ê:IUi¹æÕØš€$O´JDËÑ@4j¡4h¸Q˜±ñ [\!‰<×L=G±¥Z iÝg 5mG©îå5hFBD 0)Z>pó°‡(ZV‹;B a’ ¥=-“§O øÎbYdˆ#ƒ‰Ì½²má†L ¦É—É2Æ„\m~¾ÂžPˆ*„²’mHtõÉ<3“±Ip_€ãpAEá‚ ¹w1®'è.œ9ÈHV”¯¾ŽW5:@ê,XmH\"­4‚ŽÜÚ¹|rɨ ŽgV ¦$ü¸,í&V aÄ™–œÿ®&I„œ…Ä:lö7'úAû¸M„I‹„샦ù éuƒ¬žÌB7£wj(ùÑ­U(õ;G{§üëñÉ›ÃÿÖývï¸ÆH©*SSÔ¢0¡øo* ð\ 4°$ Úã¼ K´¨îj#ýŸ?âéeá~¥¦¥‹´² o~ë˜i¬hÂ.$Š°ÖŒw{S+è`$;_tw#«,w¤6]üè=çߤ;‡¸C–ž)øÆÛu½çÞI'fw­ö]¥¾ž3œjÈög/ÁLS‰”\˜N†4B!ár#ÅÞ`…;àj„÷ޤ[ÒÒv´Ý)‰í˜ó}œØ§©`ƒŠzÒ ØÒš°Ê´h+Õ®žø6œ=£.,e‚t\‘ bÝQAÚˆ±¬©€‰½E¤iu_`ØQÔ)7‰¦—9‡Dr­!¶0Ü$¹„€ÓØ´óì’¿1Åf¬Ä¦ T3u&ÓÖ@qžç_ÖvÞzÊO1Ð_´wÕHg]ø„$24GWhFÏYùM’ ì”ûò^õÏ*rbåN õ¥2Mâs…VŸ¤X]š×Ÿz³üç¸jmþt–7z?gH2µB8‘m—°¨x,º?»&á+_KfâÏ+BÍ0¬((­7¼s”í÷œ¢BN|= µ-cy•›8C‰¹¼–‹ìÃ9*G7þé÷.`{§¤V,ñù]X£)xy>øÙ`š%¬ØlÈ>Îur@c0·2‚S©ÈeXL³›ÒüDö¸ì.@ÌÛŽi¢ìvFxU!’jÃãYµ¿ùzUxs|x[• ‡ßžNf)×É”'E!©ÄöØÓYbm¨‚ËÙRo/oÉ'÷Q ñLj°/xYXD²ÏJ¼u«ú$üþFï,AoŽ!9ÒFèíé-uç.fd®=E.VÂWçC` ´Xšð´÷¢ûæ{'Ð:;í®u[hùÍ~½ººú1øm2ëOn°£Ù•g7¿¶Gw]èȵj¢ÿ»G(·À¡ízÀºN×ŽÈ uÈP×?ö7^X³]¼ÏtE!ØãüÌæAæ\@2C1uÖ×Jõ.6ÈËžZF{ÐN¬k:²CÔɦ°‘IÒq܌ɢÙ88^]¥½múh·ÂÌ×aºµÄŽ®èØwŒcl´+;ŸqúEA$¨U¡¦Kµ–PÛ³`¸œoö˜N³<5ã’Yvn”ç5r)SVJàÇÈRC]9)<1.²æ™9Ñž®@}Ö™ÆölË4È¥“3Ž=JJ» J”Zcyæbh¶½Ó;=ù¡GæñÞ~Gq|*ãdÑžŒs09O¦’zNçí®ÚEÝngm®ì&‹ã•É×Y©4ƒm6#'G_ͤzø_ávÑH¬cмãð/””j}õUk•ógü›‘1ÒÁ[`e^Å:L®À¾qª³%:ã’%¤ÌÛàF V‡TEÞK.Ôœ+‘IQßS£r*6¶õÿCüuü>ÈØ|$¸‚X‹BBzäÊœiš'n`±¹¾æ¯Ôa’œyسèN<Æ‹?D—é4 úƧÞAËÌ)Ð[9YžMÕzk§]£ÿ6ºéÍÔ1l‚@¤o]Õ3Ñ$mN:¯$U¸s¸ë¤†öY¢Gíã=óVâ@⢞.0.Xƒ: FÔ÷.“¨ò}W°2†©L¢ ‹ akKOƒP˜ y‘.Œ)+ŒlküÜJTUÔ¯ôá©7­š„^— ƒ{Õ03Ë,2d@³øFQpPY˜h8_¦b,iæ( Ï¹ZEVmÓ•©b¦/N¼²7F:iTùŠ[ý¦ÂÇw˜'Œ—¾Y§%^ku+¡w²âòȦ¬7VÎN\¦ÕÎI=ÞÉÖëÎÉþK>¼*ðÑ•ï•~VD\‘Ú‚„E.Rv%…Íßhtå Ì+&-æÃ¡%Þ„Nâžç:Ÿïú“á…’ÁJ™/_s¦æHL½vLTøjç“BÆp@EíÃ$R|à ,AÞæJõ1ñµ³Ÿþvöþç?Ÿ}Ø^]qeœ0W„à¾`lpÒ`/Ü`P`žk€,~¾0‡G¬V€j„blFAxžU­ —~øŽ+³É @¯ÅJÙu„šV!ÌÍ»úTŒTÏ7:gJÉž‚ÌGhÓHa½ jÄ\hê¬Thˆw‡Åw¡(&gø3€0)=bÌ Ï)*ÕDA8T.8-Að9ÖY±fߊ÷¯aÁ‚¯×B6ÚùSÜyòÆ…ºi!=-+!ƒÙõõãrÙ?ˆ0uP, êLpû­-^˜O9¸æyª2fjkû•þUèknÙ0ÖÌm|,DèH&M‘F¡_Á»DÉÓ´‚^XÀw0GTÉZ±ÙÝû±SW¶3«Êi™Zx~®Nöžú5"¦×³Z:´– ÓQ?¤àu¬Ipd»z?-¿âA&º®ÀÇbˆ®b "Ü"ðJ€ÀG‡å!%‚Xg¢{£TÂ¥VàÉù)v8 bxåÈ۠Ȣé¬eâš*Ë»‰GÐT®ÀÐrÉ$},¶Ûjެ-¨Y1'Âõ¤¸:‚œFé0OµðŒÈV覎m­8]qrÀ·´§|ÄR‰¨@Å‘Yì­/†œÂ|“ Øa±(‚'µÖ E9æ¯3Ëlj™BL^ä$uj}@n4UlIRLK­Iñ=þL¡Z¹‹èhðTDÎé¢w‘Àwa¼å\ýeòÞÎ3]£œsÎìgœÓQ—( VyR^ ÙœAxð&X€de‘GÉ.ÊH`v`x*œ…À- 訮ÝB¦p!¨'Ç—æßŒÇ¬rG×ÁÖÉÃ(Ô]꧉ùA–“š|'Ä>³¦ÑŸN†+?冶œBo›DØ0œG£—b–ñÅ’£3•pUP[Fæ/¿HøQPÕB¤Í|¼áÐp¹)ê–ñ•ÊðlÛ”9éåRû—incÝÒÿ”´ÑLtÇ¥¶ëšØqLô#š¼ÜÃ' I߬y™Õsly4$«ÞíËob*í` ‹ž¾Ý;d—A„´ Yr‚E¼swy›4¸æjϳ¶Â…udÂ\ PY \|tTäÑóüg‘K€Ã•%e©JchÿÄA-t”—bœóR‹K½Kár½H®ÌR©¦5 b‚ÈAèÔE®Á4+c0) ?†KÎ9ú²€hÄÅh «‹Ê;©Í”È€MkTDÓÒç \@P÷uů¡e]+ŸÕUh[uѳU¾èì­¼h 9y.,‹AsçÏÖúy/vŽ÷kñÊ §c2ÆÇ‘ešX±Â/A ´ 8+×öüÓTSÇ9qj|¡æ¦øžH܉±sÐýnG|’¹¤«uBÇE=þÓpæÍÔì‹•T'g±é°Vô¥=]÷ÀCÕçÙ+——ô@K)Ã?ü躭«-´¬“2í´Õ¬·B`º0RWu&×`å‘ <’¹Ê’Þ¿Ç9Wf.TÈÔ»ŽÏ“aÀB!Åo§žüÀ¡6+šâ/¶ð¥rúgyÜT€UKVTø$y©ÙauÌË9âààùñ6ZâL wUS\AEöÂÜÈ É¨,ÕS¯~õüë³WÍÚŠzS,ÄÂ)_ý«È»Uãz˜œ½’Ãö>îá‰øGÀU\zbÅÖ¨\¤:´á¸ož£³’ ÞKV bŽ!W¯æ>”RÖ5iw2“ÑÔ±ÓÆh¯€x3…¤ƒ¨x¹¤52½º.–2 ù%ìü¶À¥Ï)R€/Œ,—ìÏ_÷I·r®GÞ/è šd=”n ü(î&MaŽ”@Çã§MÎb{ÞlAPÛ¨E=³“ L4aúb"y-´¦µl¹ú¶T§ŽÌe‡%»ºKµxþ%¨Ù7Ÿ†´ëØWÄ%&E_Ê5м€WמÕj1¿nÜÆè€ˆKø~ÇÆ4¾`Êİä]˜t'Úãèýx­j³óòÒ¤Åå$¹¹Já÷¡ç2ó"¿\LŲ¾aù¸úWÂþGÛ?2A\ëöÔø±Ö£>žç öØz6ß¹H•9ác,œ±çóŠ¬Â…Ï›(fóÔGæ»tÜ}á‰Üõržzè *b…çc3…ûȇhAyòMR}ü¬2ðoÎk¼ ??üìNâ©‹¦’œ÷+fds¤—G>wƒµî$¶#`5ITdÁ©9®íAf¼žaá* ë—jÐþY\mÕâ/L.JpChÿn«3Э(‘ ü*r–Aâ°ó«4B€…7õù¹‘‹²Êú‡ÍÓÅlø—¸ºF=rl‘®GÅÞ@§mâôêÊuèŽõŽZZ¯Ñõ¾$rÍt'(Ÿ†S¥Û6AClÔ@«ûNº¾êIHcWz2––’ÔP¸1zÿ[áÙ’l4Z0Ùõ(ÿ`!Ær&ŒEa;‡»Ý¸ºòÁÔ䇲J@¶a?™:Fu¹ªCä«:ùÐ Z¢qKÝP:!ÔI‰(q€À·Ïå(?Ácb@9Žðd9w§Ê|«Ró„ Ù4µBë‡Pf 1l¬”Æ” –Gã,úÒyüæÏ««Û›õèÍŸ×VW;õ˜ÿ})ÿ®mËzâߟ†˜K;àº÷ÃeöÛùs#,q¬òà-÷½‹¾W Æ’~¡ŠÅ’/'=ÑUÃÎ&ýÙµböê6›Ž¦[ §œØ(øÑ§i¦ŠÞðêó¬Ö&É{]{±žº‘ ^a â$!\å¢Öñ&äûZ×h+¨¬ÄõwUƃĂ³‰÷Í£:‹öWvŒ§eT¬•>Uõ…ˆ»ÂAEõaÞ\Áĸ³<ç4ËfÍ“C 0Ī–ë\Xi®äj_W|€+FíôÇ7 ä¾ðAVY›×é5œ-øŽ%Œ+=ÇX˜ ,*¸C®ˆ\¢‹çJBˬcªÛ–OHÂëGš Œ.¢déúD_iÆ…‘ø¥Ñ´W³ñŽ@CÁñŽÈ+Ü3-.êÁ9^I: ×/eþÙ3b »¾Ižˆn3ìâ­T3š0E¿±éñÒømÓkZÐu¦dŸ± H_“p…ï_ Mú°¢"é! œóì׬ÊHº=#?îa¿2GúhbKÓG$,[\ÒÇjW+µ&uAÈV+óÓßÎ>üÚZ]ýØ /èçãÏB”‹þ¾¸øÙª«\q¬ÛJ¿EŽ%H2öŒ%7|þL`.‡Rq"ƒ…0!ðù³¼…z 2êSKè-hŒé16P!ãž/½]HÚÉFæ@”J8!ÐÒÇo=Ò‚“û° 4VJ…ò6ÎA&á(ߥª¥`(NQ"†³Õ—&5h®¤»cŒŒËeñ)J¢›Á¾Ñ|²©‚`°—E{Ún´¶ÂÃS×ïóÉ>2Zc&¹÷H¦cÏ eÉä~w:Jn-¡_Hî³sy¡ÕfríVÆ *=x ŠŒŽcŽy ‘­d•+y†Ðy‘Ž ¸/6 ¸4G„\Qé’ºÅ]­ü°v¼¸4 ¼|Þ¼¾Às¸X3, ±øStÅú¦lÓlÉ(D;Þ¥EDšé,,?ípuæ)ªµj«2##³¾>¯>ÿúoø±æUÁTiÅ%o¯Bd)÷ç@«°·ÏÈläû«°_æVÎö n`%4ïí‹?µ´JÓ8SÔø<ÈdË„IXOº’Ö€‚Èáพ‰n§Ä®Öläž®80÷ܰ9úàtošrfz!ÑJÁ1»ºtð %ôÂw¦Š¨j7€#‡ùr Wæü“h™ÁXM›—M¦q7Ø KÜ9i?WšÀevõ-ñ0¨Nj¯Í¢Ì!H¡na«‡D ¸…ZðºzâÜ‹ ÓÑXøŽÌ‚QQÕÛŒŽƒÁ²FiÙ¦S)r™wRÒ!H9Yû̈´Çë¶r¤Ñ É•ª¦š¹|ñ»ëóñPf÷ÕIç¸w²cè”åÃaPÅãv—8Äß,˯è‚é-`i¸«º*k—g`aËe¿1Üiÿ ®JMRóóÕÑ­Jz¬°Û7vÜÁ¤¨Ö„ñc¡ëÆŠ ûâ…Æ³ÍŒö>ÑgŠ'ÑÕmô‘¢:‚±“¤ÆÍ*—fe4ÕÄÐØ>€ù]Û.:ˆh‚üz¹ÀWc¢}®ûú¶UŽÌsþöx 3Y žÎÙÿþy›­µ“[¡ŽaP 52òñ`]Çç1#³ ­Ýk˜>o ”‘_[ÝxR0GÆR/ymQIð…%h<• =r ¢²26-йqà›)““»ÆµAë%æF"þôTÆéˆN¯!1ÚÙ;Žƒ%(p"~þ92ø|@”§z±Uj–ç›CÜu‹µ/ô<Ña»ì s()6hœyÛc2מ´=×·7×B·ý´¥ ™ ÖX»™Ãø5ëÞ_²9Bוú§Œ€]¥ r`!p0_ûYô*O\ÑlD£ .kfÚà3+¬K7”ݦ¥»±}ûãáxft݃ˆ£+V¸ KU3” 8tÒe#­íËE{Ð)Qnôb¸ÙšQ[d?G2x@Äa³Éü!%´Ñ@; QS¡ w[Oöᥪ¨ŒH•ŠÉvʶª6/Êß<ÿe­Æ…//“#Ø"2Lªûè»<“5[óFpÅ‚†s0Ô*ŸI‰1Äê_R7Ù®€Àñ  ¼äeVi#+ÏEªnìB¾øµVYK…Š-Öâûd˜ºÛ /òääè ÊHÕC®£C¯†ÀÖlŽÔªØ Gà[ôE¯y(Q¨Hkä1«f˜AÖl$° ¡°Z¦þFï<)cĺ¯j³ÖÚx²±½¾µñ$ –¯ó+CÀ‘™ŠÆ»Š, ñæÝ‰éÄhi:ò±Îqä’ÍÙ|ÉÃå.4 éyY46–÷³ÍW›P µ‘øy3a¢7YПS!úØh%õ<ÇJÁ‰î€ZΑþüëjR«µžŸ¯ÔãÊyeÎÅ1ÁspÇŠ”  &Ž€|>H%, c.¸d›LúÌ*C´üQ>¿q’ú°­½S/€ÏÂ!B»¥y#­ÈOX8âÞ§V›Í‰fí¾ïµ FœV½pí¸eÃLWˬּmöÑî¿HIÏEõ—I¢r‚)šqN$'n”|‘¯äKqþlÑc%ÆôȾÄ,˜—’„ÜÞˆãõ‚ÁX/"n%Ø—ãúŒ5(Э‰bÓÙàŽÅßS†šxn¹^í38Ä-Š'ˆðNù£€¾ÊÉIçôÍÉa…k'ƒ{…Igö»¾MCž*³r•`i¤z£|j¦iH©,Œ¿55M³ÓKŒ¢Åú–ÂY ƒ+¦PßR­Ô#Î5Ëв‰ÆW–³ÍH ­º‰Ò-3ד‹ YfY•8*Äô|®9•6r&†-Ê*¹]œíÆ+ó¨¢Z*ˆÕdbö_IR¬݈¹i¦ÒµkµÐ®RÄøq\¢"11ÔTmïï½9•Ü-¦ïâfŠ_Âö¤'ï|«ÜÊcæÿ¿•ð†MU ÂeÎRñ‰Ð<‡!\ÏîÅÞp=¸NÚÉ&>`É­]!7½`Ná¤<²îÉÔž!€ E š¸nªtg]:¼‘Ѓñ\± Q€¶8¿K.[åªkx&îç€La2XÎE É¥œ%¡ön>·ò"ç“i(PG=Æ cyQgßÎiáAMökÅTrìTw“£†“m¥86,!T—# ã%Zݳ¤í(P„÷¨‘ê¼dy‡æ C²ØˆZ7^Œ|CŒ!ÊC¾¸áx|“é—1:¢’ÊIݹM‚JºáhΘèÔþ2Az^{³yαj+:B‹F§")ðªÏihÖù9#A=dyÁ xqƒ–XÌ Ú%¿Å{>+Èê¹wÒ=Ýß;ì8Ë`Y…Öðíµ8YäKˆ=ÔVs\ÂfïH0¡`¦…:GÈ Xîžó Ö½.TL}ŽÂ—I–º©-(|jÇÖ½"õè¸Õ X»Ip™xBlðÌA™dtWH€ Ëhؾ“ò+VXÐè˜DAýkÏçÎìFJù.ßl´Äe-p¦z¸.ÈŸ :–Ÿ•}qñB<¿½srÔíî¼nŸHP×Gr^¼mŸìò—˜`HvüQWXwYiç*>Ô &2‡ü³.x&Êú =tG³}¡:½*Ýö|ž§“PìѳN9Û™|þ«Ón3cÎ3”$Ã9Pý±zfe 5ž Ô¥j…5óe¹ój€9…e°­ 5dzÅÄC.KÉåÔå:6Îhj˜·Iro~úYC™ÙMûkŸ&üúœ¢ñ¹ú’w£äZÒãê¶C$BÂ$ÔP<=þØÕ» xóUú˜SÙi’– HJ§uòðÍÁ‹ÎÉφ””?ѦTtˆwÂÅ¢E œÆ¨y9¡­3T ë*|hCõÖ*çáhíaNÿñ›6‘Lãücš@]7MvêS™¤C.í'SED÷­[n–EÀ&dk½µúdÍÁµà õ)RV*Øù¶öª\쩧 gRí 5ñ%ݬ8Íœ+ÞÜhm*ì®]$hè¬è`JÊ®Añ/Ṗ\2UF19îå: pUÑscí,B uGßûJªb(ù*VAXÕy¾¥qiy¨ +¹œlèð'ò¡G {?˜ðÈ[µx%I`†pi7:ìS=a”²ªÃ-G¹7$~i@z,ènì¥sU+9S" |_~üs?å5†ü”OÄÌL©•,œÒ’ñP¡0ì„”ªtôÔ_¬­­¯•Ä«qk£Ñž]’=‰ á“{ƒ„"<奌ҒV 2 ¤ûrÀŒÅpl>Ú=Õ‘pªEÁés2 ´<ˆ’†*Pÿ]MˆŒµ0¶—bPyöèy¹ p%6ÜÈÑ!vxttì9_J“¯Ûzn}—5-çŠhVšCÅL„5ËÀË `!;ž£Ÿ@:pƒ–Ä`ìü­êoû¢µ½ýûæ[ºß77"šEìÅ„Uuba7Ô–0{Ùt1h*œQä¥À(ª ÍD‡!‹-ÿ׆υfÃ’%Ýhá…9д“%X#Ü)ç:)ÄåiÈÌ”ãaQ‘ *,{2µ7—¥Ã:`¤{¦U¤RÓ-â‰1Šç«jÞÙJQÅ“;EþG¡6ü[MËû+Pþ®sò¢– ŽØÎ† ¶g•ØÁ&M jñN ; æ¢Ñm¥º¨ ¡<ò[û+¦v)óµÙ†`ès¨©fk(yN)}L“$`Ç2+‰;ôøÞ‹šcЗSèÊ`ÜSwŽ€û%Þèݲ€ëK¸A€Ÿ¬‹§¡µ±¹!}¸ Šê: 'ØÂä®y*ªñ,® F'nq‹·Ú¦?Þç;°µ)¨œC•LG¯k›ÕÒó¸9ö©Ôê|RT v7âVT޲:èÈÉ …@s+‡šppk¤rJÝC&53œŽ¡ÎH&Ûä(GÐ4LÃ4S/èÜççq²ƒ4ÉÏ`ÊèϮĘR„U š_ÛàkëQõñþÞÁÞio—Vßëšé2¨­Ë—õø2æÿ˜ök!ˆƒÍ—"á— jÓrB6íñ[Nõ°s^X”Zô‰/##«0>[I:Õ£vêÍ ;1'AÙ"±l|š¹¯k¼Ì¸ï`Ç¢k_j¦‚ž%↸ÊôN¨wÏiWTM0OJ!«q¶ < .i¡D=9Ãm TiàU1˜KKPB©^Ÿú ÄVì€kI.n—Ã$fLì°¾ §ÊÕÕ½(*WT—¬ ÃØJtFÂéÇ.Å$¨ƒB…¯Þ¹¹ÄÝÖ>Üy}tÒÙ5pJ@½hÍŸê˜Îè‘IJ½ÒÉQms^òq^W³½šm’“ba+‹X Ÿ-äÒVŸõog­jrÞ¯Õ|êbäßú¬…°B?¤[7Üg•n³Ú ÑHAâåIû &  9<1îΪ~ÅÐw‚êeƒäñ±/Qh’X 0M¡"§'}VLì“Úä 4;I•gY•8•ˆD‡Â@ jçN fidšTŒ\`›„€Ñ¬¸/»{z.k/Èá/`!¸¶j ‚,JÞ%sùø³Ñ è¤UñSçwèê.ʼn­(g$û³ë\¹¬—zÉŒZ4ÒÿT~ÜÎaY˜C *"ÇÍÁåÛ*x)•Ö½hÝQ©$äݧKðI®,'KŠP°¿$TIÞöÚúJk½†…Yõ•´ïw}îWÍéû@–áÝ0¤Ótu|³ yÝÈO̲-7ìêckûç“Â)¼úá†Æð,JeÚ+-·ë9XÏWcȲoüÏÓÂG"+Ãq2¨ PQAh°b%Ø*ÙRÜï"€eÏe÷ÐYˆ¡®ôÂΑôsÔ*j m `7—KƒGÃDŠG{Z`Î8vðJ[Pm-Òjk¶2Í»,ñ2ÌÂ’ËmºÒñä­M^³€¢Îð5Òf.•Ý,RÌÓÈy·6Š…XlyXLïÂ; Â%ïe™¢£`¬‡EÎ|¸CÕ²ú|ŒÅ¡Ð$/"›F®˜®œ{Eâ=;NÍŸô>UÜJ¡–XüSÒ¸øù×õVʤS§­U¥$è0ð2Õ£Qª@&U…÷÷B÷áúVí/` ¼öšßn೯¡%ˆî%<øúÔ¶G-ª©- ©è7ð+\I…l¦¬ú}V¤ NÄ×ï)Ò’ ]~‚¯Øçm¢îàØ-]lm.•.Tv´ãÙˆ\ä—­"Ž3>.ÂCÂÕ|£9¹‹\’B½azãÛdÂ>E¼lÏ`Ji7¶ð“v“Ñòœ‚ß@uF™A:E½,ËkšâeÏ5ØîLÿuÙÅUÁÁ&.ÑØé¼µxn¨s‹+f¦§Šõä,ŒÜÕƒHýWN³F/˜©°á›a Í ƒôSŸìé⢠ÀhŠS°N¦o°ÑjIF)c2Q³ÝäĶ`.5îĺf¸<„¤·÷ø»žJ$X"P^€’OÔexŽZÝ[3–ü\ABt€÷©> ü - —[I–ü釻¦«ÆFÝQ…ù¿rGeX͇ð¸Ó¸ëšÔJ¥V„SKžÂ`£!ŠÛ×¼Þª#N·È±Õ 1<jÑ( ¦Ã™$e^uÔÒäI•úü7‘8›£§4,c…–…x0ä–‹dÈtÒF##1ÝÎ˽ÃNmÎï“DÒPIÓBJžÞöþ¿µWøWªøë×Õ{±âˆ"¹ds6 ‹µ8Ì 3‰‚`€~mÐCvP ïëJF°3‘·oq±™·RPF,á×öñ×(×,„…l„­.)¶l‡8x©OO«[=É9©m¬q(öË(Áü€Í@Å""ñ¶Vc7¬ ÖXM Ïa R‹ú9xn€€Uožê2„-ÁãÈô3ÂpSþ%̤²¤î˜öì¼Èq]N𪞊¼Øƒ"hø&“ʾQPÙ×L¹‹Aªõš#SäŒÆÊQ(@Ü¡ †é… OôÜ$öYúÉåX±"®©ÁL2­X‹Õl\P«‰i ép«Å‚.¬öfÓ ¾ç‰!™B]Kêˆn¯e<‹õúÜât/F^y® Qõõ9hziŽ¢³uº‚‚vÌpí˜0Bpp¤{JïB·¥Ùí 6“äŸrBžÒ0<‹+ßT‰Ê7_³—i|Ãýuµ¤×L=U´ÎÄ-ÁßíÙ~]R’ø¹*ù,¿¡œF®µŠ=@²dͱ¯MÛéãðTºhëE¦vöôB È¢~]¾q`„€.åq¬gZc¦Ëøè¸wÚ~±ßéíw_¾Ž]U;†œ&Ò.è¼±‰•˜{EÓ«VÀM@¯°ÆµO)ŠÃ«T.$lwxŸ ̱°ÌS«ôè¤*@ÒW>|Fžç$Æ\-VEXøâ£Õç£güÕ~szÔÛiŸ¾9éx‡k™H]‰\ÐZyä"PÜS¹™åW•ºü –ˆ óóŸ2ü¡óÏìz©L ûz”Œ…uWLIé#¥"•Ànmd/4ÀP ”ÐÖ}&\‰ºZÖžl#,{è ,½¹îó5”|Äßb<ëb(«()ƒG}‘bš>+lÙ?zÛë¾999zÕ>íhm¡®²jøç>ŒItê:ooë‘ŨDí{<}î„N`(—‹ÏBÈùå¢dÁg¸óuƒ•Íûå·7Ÿ*ýÃéU‘ Vì)ŽÓç_øH¦° +«ïȆ<hg90"b"w¨¿B­8š^ÄÝ¢AšÞÔ\Eí¦Î‚wÎÌ6c­Q Òt÷Š_´žlµ”{bqåìeå¥Öµò’+¦ |šï3I/AŽb>‡Bˆ7h©DÑQ¬”¨ë¡áÖŽÑRõÕá/dkÎ3.õ´(»²)ë>«%ÔÓ*_ºRðéH<.ÂR#D¡ ]Â)P<+¨e”¯âð4Þàð¨{ÜÙ±<ÿ…cϨìc?=4;üêíÑÉn™6>2`<´w4biéðþK—õ¸q+/Úpl` ,¼I=Züøú’®¡×G3Òy Og/Íx°ü ©¶Ã±è}š•Ⳏ?—¹Û¥mxR+ND2Z{2{>A8¬[acaÃÛípåŸù%Nv®ÉpAK%ú ¦Óq3ö‹BdpÆeWšÄ.Ï|nÍÓJ€µDysY«º³‘“äS%ÖòËâ’;^xÀ-^MœS>˜Q5³ekÀÕ/®z­Y¤t^DáÖr¥ü­pœ©y¯B&ç’ÒûáaqÅèÅ+N¢ÍƒVE’«#Wšñ±OŽ`÷§Íõr ìpßxR"]4£*4<ŒöÙ6ˆkî}ÖäW¤àÚºùwYFƒ€‹ìáY®!GI—©1le•´Bú+&m!W.©û¢z,¡doX¡+£…sº„æK !má“ ï±^(츹cPÔðÛ¬Pƒþ÷ÓOϸæß³Ÿßÿ¬HçHèÊ9"!50~:àk†ítA ¦jRQÛ×…–0žñá`︫ŠÓ¢˜[ÿë8¿š%ñ· ?çfP§Ã•÷¼Iª)ÂO³éÒè…BµF“–Vk£@år?JSqš“% sŒ&™äÛ= ß8/Äjá0âØñf ½Ô JçkÏ”qýy (Üp£;êÈ møÎÉÎU9‚pŸ wöúK‚딑±<­W¹s¬Å*=H§ÄªæJîŠÌ(²ÂéLE½ˆ5 z$ŠªaHÝ{õOV&_·Q‘0๒/r˜9ªe{-éb"BTpæßh2™¼‹IƒBàæl÷ìø×ÃÁÇŸcÞoÏnö°É©£4ç•äß?ØÙÜðD“ß™'Ja¶ø¤šù"gï+ n³×0Ô$°Yº”„;5cæß"îÙIF‚v”ü˜¡ ëìZý>JÀÎ>˜"x0¨uf8ФUF̰^ ™ '•Gád†)Óì+—&æÂ"gÿû¬c¯u Â*ŸÄ嘭«öŸqñŸm@ŒW@ou–ÐÍ>µÂÊz‹¹(¤¿®~œãoÖ°‚0–2Øÿ%ÈuXÆçBÁ$T×r=#‰”Å»´åX©È‘\‘®Õ™ÊLV´O¸`EÌz\‘*Š Ï.>Þot›å©Ã$¶}رLíË=Y“"¹¬ +¨hX‰áhùBÚjÄssØ.0ÓùÎ=FŸRˆÀNý–×Géë3c ¿õ9‰(u³TN*®(‘j6‹W" vvê©p ™O¹®þ¹ˆhy&:t)‚ÏšZ€Úœôaùýo_7¼GÍ)î&¼†Ý‚XpôÓ+°Ò¬ô›R|qQô±mÇJe××é DpAëJ»¬U©¦ÝX!¥#ÉûYFJÇ/?¯ÔøåìlÊ~Ò Ô#¼ïÍÔë>. HpÜPŸrOÎÂÌ0íç댎OEÉ¥”w¼ª1¨ŠÁ.,)\ È}ä­ÝkZKà˜†§rë±@ïc¡¦L_Ù“Ok+PŽÀÆ"*¶ ”ÁF·QX,Æ’Ô€ ·P GPãÔ~s¤0w‰Q¤Hb¤T6s•]lÄÞÝÆõ¸ ¿ª¿Í%„$½¸G]-·R^[´¸„ìj†‚8ëÇÅà ðbWI_Ò ŒÅ`tZ¬F¯Ç4)&Èctbö>0¢ƒ¹âP> GFÇØM.ëʇ ­kcBGÓ­aŠÜ{‡{*\Ï4¤Òvgº/ƒ=.@6Ù   ´÷šãrÅPÚ®H‰¥»k 2RŒ ]©¨ØV1Ô΀twñÿœèq€Êe:>Ý„ìˆÿxTmðpTgæ\<Âkc›7ˉc–º¾ŒÓE¸g’e‚‹Â¦jpÃî\AÂî²7*0ùp–ˆÀÙ¾uZÐlj3’,Z4å ¶&¿“d€`ŸŠVäN^¿P<κ<›ŽéÈŸ-cg’¸ åCm BWV‰/z–ò¸3¶f~im‰ ZàÅ*T¦àzŒIwÚ©«s»·.Ší›.6JÅÅҶ΄5jL,ñÏAo’ÜËiÞIJœù 4ý°¬Õ /J8UNî½G7ðŠv£òëZ}­bpr1|­4Òyz7.ªN«Óª©Ê™äΫõåÙ+âAÊŽj…¼ÍDÚ §jŒ~¢5øœ#Áê5… WaŒˆŒ‚³ËGŸõ:·ÖÜ´%î²È¬â7×a”t À¤Qh¿Ä™ñFñ²9á¡9VGUûØBã¢á­€J%·W*•K‘ËM}µ î¼’A™Zæ¬-D¡øXUzüŽ“µ¹ y‘”ñ¾ÏŒŽ”ó·Õ¨¥ÉxS­YzˆÅS$áðÃL‰rÐ9m÷8¢§¾Ž˜}Ò¡am.e#ÌÑðT¿¼½«0NÉ×0î—'[^ó,LÙÄVœ_x¢÷,JÙxÞñš”Êî¤rè®Û€ò`Y:Ë-;;Šñ¿¯ûZß>§¢Mr/dˆ¯kñÿv^ˆ< uu©ƒ¥Ü»Â9îŠSK#93´ZäÙÿ& Y\(‰µ¥G¶§¥iïŸöðÍ!2B“·lK©hÕ§IÁz‘ é |yýož1µ½´8„s¾ T wǃ³N0Qai‰GÏA˜?úó#w›™þ!£E†Ýië4"æñåªÔº…Ä^«ÌFŽRd}Å'ñVÕ6~fÆqóÏgÿûû³ÎŸW4wò‚§B¤­¤±„ÌÍ%ãôt‘S#ŸX˰Új!߈͙‰Æ\Dòí(²%i‡þs±$,ÂZ²—*Fêc¾=…9íÅrÝ’ˆØq Ô4/³Mµƒs¼8‚ÕçÕGß_«=ÿ·ï¿_á>OTôéh^_ó5©Jiœ&ej\´ N¥˜#Î7.B­'ä/©ÛVî[ù™ÂÙ´¥:Ð-À–{¿Kç—˜LÌT¶¬s^œuXÖðh4Ê^ Q$Õ¹'i*jj>¡¬XJ#Jm4ã…´»ÜAco°¿§Z†z‘Í‘‡…|¢5þ̱ÆëšV?ˆ¯¨S}þO­™©õŒð*r˜FäÃGäŽ¹Õ Í”•»]žÁÓD­¬˜ŽðͰs2ðíÀ¤+Ü”tÅ$Jh³E÷ fÔë_‘š„å}Pw RAÿ,‘mr°U@ãu‘½ Óõ; M•Û¸ž“[RÏ.ýóW2îß|T5>[û×\&½+‡ÄáŒ]Ê´¹‘<Ëy˜~*a…š*²s%µý&*x»ÚWü=¥áŸ\ œƒ®tãÄG(Ñ I\ê±  œ\Ù?Rr‹Dþ°µ4À —X©„PÚU£ÖLL-8È'™ eÔ§Žì¤ÌIÆP¹í«ä Éy¥ye‘Dg½,˜ËÆý¤øãÊN%gOcä­§.B¾¦ ;©/h®Ó½ÞÉ›ÃÓ½ƒN@Í,çñëš@Åx`véˆįHîä¤ìŽ Ü÷ÆuòAI¦¬ÌÏe"Ëvd¦å)K’;¶?†J É0cj}‚U3>2V?)2M‚a—DÔä.Ú!É0ÊPÝcôn¬v{žjAŠ0âÛº |š0_ÍAÖ ÷BÓWõÔG"qÒŒ‘æŠ/ÀŽ@˜`ÇK»Ò¢²…"ÞQÏSÍlíàÆæ•¥Á»îZìŠ{ÈõÌrX×m”Mg>jç€ J"ÝP M-—ÔÀnê ˜HÉ êÓåžW:‰hvŸÜ-C†ÜSÔdStK¦¦áU1—–xÖ5"ÅŽùf.Ö°sD èIþyâÝ÷¹œÕâ{ë =è½Ý´ ž8!xÔ4@ƒ 5hr/'’+1M†sulåZr¶zÄÁµøžØY©ÊOYçjଠèƒB5âo™ZÒsAøÜ•wvéf¨b,yB’t¨ú‹™&Ó<†%ú<)Œ·Ë¾n>þ¾öý—säÕž³_°P•ƒ¨ó±ÅJ‰PÀ<úþ‘úz¼âHŸy, '¸˜›–Λíóêkó±Ô"°g/í©–pRÎ% ¥·3§c§‘¹¥ö™j› ’-‡?sÑ™éd–pu×êOíÆ?×ðë¯ÛõÖÖGúõßèÓ³ü皦wç³]:˜Y…aNµæ‚z\%5ov&ƒGS&S•Z‹–RKj$~á`ð™¯ÿäR> C—piPj_}E‚X•ÅÈÜRá] Û£<†G&Õü®=¸}¼§«ÒLs5íäÑ:"4Lã¢I®8y\ñD÷‰ dàšf{=2q`Tu©7‹CzŸ;+ß3ha-—F Ñ>€öPRÂæ5Åÿ÷Í€Ê$Ò¶€ŸÐº¦·‘X¨ÊåŒ $N²ÝwNÉp«+¹¸Wqì`¬0  Ô¿"å)ÄŽ,o)j˜:¥÷ï½zÓ>Ù @òÜØüdr®ßHj§!7¡×£Œô{¥Eæñjˆpâê,ç9è&i‚¹Ü¶ÂdC¾N¾ð‘´H?—;LuÂûˆ¾‰äÝ«Àu|bî§Ü¿½¸.Øj–lÁ"3C]Æ{!YSµ4ž8TˆÆóCIa¼‹#/ßyÊ Ý'ž_³vþ4Ô™%öF–ïA÷»+¿*Õ‡ M{¨ÿi8s9(:&šxf©šnö°Ü{xÙž/:®Q¸°†EPÚMŠ Ê,»ðþÂhšë† IómŒi»BÓ” Š¦5ä׊\i®t.…B a!à ýŠFaçdÿ¥&ıt˜—!úÑ܆Á‡NjõXm˜L²ik¡"œô®øãXK%%Ù mU+A#%a×”`ƒýr‰²½ž‘-xvÌ©ygß+˜ÔÏdÀHp@9làñP{ôÍ‹îéÞé$¦YüкíÞmž¶)®‚Å$ HPj–Hwáu™ y©È´ˆÏÐYö"®Q­Í•êX¬ñ*\Ñ{TZºf¼c«”l¸’ÇÍUµâTnÝ„¡u}õÌ:"¥HåLÙå…ïk°r¸dâ äjÌEî-ž¢$bb/MG¥ž®ÊJü1¢i›³¯ôŠ¢q#œHåG*(À(x¬k#tO_UrÝ‹”Ü—>^©þX#»ælí×V}íãóêóFV;k}¿’™ÃCl€“vûÇï#(J¾ºÉºÑøl0ù‚’˜u'Á±>¹ ÙQ\¡"Oœ¢ ›‡K‚ÿÈ%Ž„g¡—ƒN ÊsVj‰ Îyi4r·Ö%Ic»LE‹×˜?üí2ŸHuJlÕÑÁ¦ûT²ˆæÃ&ér>Òú\1—©ñ :ƒ¾¸´«¨ï ûËKÜRofÊÝÈšêDöœd'{ N‰ ÓÈ <°“ÇóÁ÷‹z¨“Ìí2×~ãÞyÚcA݈Dµ¹7«&üøxcuU6ÝæÙ  9R}—¦7¼z&œ©xñ3çiÏÈxh½¨ÏByà(³œóÊÀßÕÓ7‰ø+f\監JA©‹p,¨Õ/”¼¤Y“£}˜]L5³ŸÖG_ UÊ9å=#šª'r^iì<øD¨>[( /bm£²|ËUjš½jÊs¥‘ô¯–²0Ì×Ú”€G~GvÙÝ5/JCÂå«béªR@0ДJ‰#õÀ§Ë,YÍÎhu¦I¥b Ƚ`p‹„u Mj Ò( 9×EˆÖ­Ç+?å?=û›buæˆ$gOƒü7å×2ç%XŽCjŒÝ–|¢…‹À’Öœ²0qÑo®yµVÆJqz¡í™:±|Ò©$*_‘"öÍO«×•PáµOéc͸=uMUùŌ풳`!?lÞ‘¾*ã°™îx׫;–—SEðUàØ&BßQ$àgu%É#q6 ÝÀŒ’uˆêÓc#”½Û!gƒiyèkF‡¡é_}*‘ÖcîØ]|}Ö¾:¼<ZœÂÔW«tÍódZÈ©n=ËËËû“Œ´tºøM ÝÀGö„V C_üƒ4Vʵ÷Ç9 `ö9=\iÏb¥?q¬¼†íUfz­ìY'œ5ZÁúiŨÎ9!ö>Â$hQJfâýìÀ ÓQw- sÑ>»JóOúf™Áv›Á­?ÊÅ÷ývïp}-öÉ“á&Ä`ÕŸ$~§TÅÎÈå´Asž3>ä ƒK‹ëQ^æÈ—âîyüŸ3†š&“˼&ŽGõ}‘ÒFö ”Æ(É¢<Ƶ%ËòÞãÞtz°¬,Šr‹eš|­Xô[0ß MµÐ>ìîù㢠S÷NÁWqUp:1cÒ¹1‡ ZZly3®žÓ—ï ÈÏ="ÚÎ%´uu·sù ³ÁÑÈîQw…ªÉc•÷½«BªÆkÊc¾C Šö·pc\¨j~áð1¤šz4{T7\d ¡ r`b¾||¢k’Ožë h³ÈTl‚8n<,TXêç|HC⇘ëÉj™R{CÏ} mO®•, Ò>ÚãS!L‡>Ñp ý¤£;‰VŒ}8I5¢¯ô:ÃÝR•R½ZLF{“ñ°,Þ4lÄÇ”¬HçC“Äw9ú%‘ôƒoHøJ]õaz`sã:Mto¢0Y$…ƒ‚Ö¤í!=Bðá,¨Ãdú)—ôI9p„ó=¡<3ÏY·³ßév Œ% gº"“÷5ýï½¼üÙwŒ“Æi/üHÙ4bsà™ý9 ŽãÚ»25zÈ®àaZ ¨hmL2V´¢ïwöÛÔ ø‘\ú ¥]àSÉÕŸ«Š%›oQ¬Ìf&§ÑÊk|¨Àæghêü|üHÊwž}[«­ÕM*žù"êAV§ž¢~F®äÜ_„ \š°¤×94úÌUÞã°0“›rjš8úÖ'䎌\^/ªizþ^!7^yí ŽùІÁÓ'ib+0à‚œË;ÍXýh«ƒßNqQ¤è3å™Rº:3n_]"+:F¾JÉývÌÙÉÆ ØÎÕÎCêcš4)äçb ͤï; Âÿ×Þé½évzݺ§q°tQ©R9”8Î;ÄÝi`ë ÉÕêhIÈŽd}9ø•=$Pü¤£þp,Øcã Á™‹0½ü_ô;aÕHÏ•¼o¼ƒ–åóN'÷AŸPõEA4ŃÖÔ’ûâŸ$H¦ÚôÏöàý#i©ïüf˜Ü‰[¨²¿ÃßTìBóx´Zõ¸µÿ{ÜZ7C*ñˆÊôÊ]N Ƴs×o‰i%—©åˆ)O€8 Hµ+¨šô–ï²õ:ûÊ, géÖ=£})ΰY â)Ù eŸJZ Á²5ø ºš]ZkZà }¶÷ŸÅ+ß?¯žüóŸµ_×××7?®,)˜°¹¹®äKk‘¸Œ§’O#à„wÚ¢ëE¨ñÀëk.ªëY5–ÍÀŒ€ÏáSW¦gðëñd>X°˜‹˜ è Æ|˜Û ŒO‡’ãI7·Ö¶µÉâݹƘ…í[Í3ú—É<LJæÇò(-`× É²b¹g%ßg öêž „æ%îrPÆQhG $c¡"m½sÒ}Q[™ä!ú;5–+ÑÜRy¢{ü7)ÔÛtžrÍr=üaÀâ¤ÿÉF±«ÊìºæÀL4œÎUÎÔ 4vßpý ¸:$Fê\,¤( `à‡!ÑP»sI*Åòœ.%JÐA…'—a‹ef̵‚YZj2'R§1×ÌZ û\»Š¶ ^¥¡?F c-^{ÚøëlÈä[÷c01Ƨì²À•¥NÀµ²r›1ZHôÁõˆ—ý^ICä sï'3™‹­çE;JY0‚Qb¤:’½ AÌ:a8îÂWt: Ò~F¶Ÿg€+Ž^R25ŒÛç}T¢²2RÇô6âj¨ÐÒ%—Î+/8ïpî€KµYæŸdu9ã\´=I×UˆãݹĶf^û,Àbc½&Ä仩~:7Ï'¤©Ëq~Ýo0@ák‰€D…x1¶÷Ýc7Ïÿñì±JÞ€5K8ŽØ2æ ž?îÁ?¢‹„¡M³Ñ»ŠG…WK»á+ HÞ”,lÈ7uYðG+HCÝaeèÔ8Lç¦+B¸¡/`Ï÷Ù`f˜y >¤¢ìn÷¶:ïØž¤—†U†Ú ªC$¦’ǽyay-BL2f·àB2LÑkûª3–xq å@³«Ê&¦ð ÿF«gNR¿Â"RïÄ:(:ra9´wä5}Ò‘Stôøzðº>ÇYKZ/~Y% O§Ž)³’F¢†“ãõÀËùFlb;ÖB7ä‚*~¡LVÔå-+W½áí8«Œ„žd©s–0!÷ÞhL£W7"gê–Æá• DÀ~&2µ§Îf®ò®Xå¦rŒ ªWßxÀ–g7Y‹bLD$¨¨mÓ¼•|7d±×úå¹*lV¸ÜÇ#¬8";"vÎsõo¦j ! c±½i+Ú)†ššçŠÆ™¸‘“}Ï[ Ð(8+¹¤Ï܈ٕ€`O¬@‹K²P®ë,·´ï”/“˜§ÿk­úüQò¨¦ÿ¬Ä—‰´%7ÄúîJãò‚WGD–ÄêLñ)­hx±Ü"Óì1UyµœüØdçÄÇÞ(.b~ë±C»ÕUu¸5ÃEÚ­1Qè¨Ë[W¾±Ÿˆ·ÊçG8€<­È\åêÒ5ÅýíM…‡Ÿ{×h‘䊞GbHuBÖ‡™›ñy“;×Î'«Àxû2aŒeÊ5P^ø‹¬~îȇ˜¢S“[)aúƒ‹Äèø¼ä–O¬Ò¥¥ÓÖ¬§OÄKP·MÁÉ~±!ØåvÙïƒk÷mÀÇY5Àl¦¤é·¹ã®i~À=p´yƒÏðÑ7 ¶¿¹+ˆ—h‰ µÂ·¶œ5ÜŠƒ\˜ØÀ¸¨Ö ; éb/3¾à“G°f+âEÓY5ÏÈ7Ú wÁÝaó7œ²{³Åá<9cå"š¨•ŒÂÉ«-WÅØ [@ë™*ÓˆÀ5cå¸dáQH0EZ© \Ý9trËAyKãŠd®BÛIq` ™TØDý ”Éh<Á°ùl~ Ò…Sò­*ÿþïü{¥æ ¶^N«îÃMŠÉt6bz®º9´™ãr<Ãe"œSæ®Ãëš_¥8Õgtô üôv¬ávqº:4¥¬ÞibÀq,K¨u ®Ó¢IAK“ùýɦÈ.Мº ¾{î øx+<èF: 8å<•\¨1ãéâ|Ò_‘!2¬MSœ`·2!Õe‚’Ýá¢%õíäðó«r8æÀUW×6Ä›dÕyÌaÁNõømFϹ§ª¯ïÞÚÚn1rœñ·û™~ðpV8L9§ÑÏC3î†ôKÉâ'å)‚ÊòÀº)c‘ƒÀiOÄÑ!öŠ™ ^w×#™¥A¸ƒVj¦_PæeÕÛÒÞo¦Öi>0½UnÛ£”«¾+û„,á0Çg“³Q°—Ô‚¼J²½xºXµ¤ éR]$†…‰\D=®¥ø€xF OtWº*Y¯ìY`•½æÂ©QL­œŒ'Ϥ¯A°»Óߎ¢Oñÿ §ŸˆGö'3Â7`iw˜1£î°">V25rhÒ@îúH€/Cd@hÆŠLÃìßRˆ¥úã°ÜbÒëÈbºÌœ‚Ðç¦$BЍ0ˆ…ÎÜŠ¼¡A1uG2´O÷›Œ³&†¨AYÞhZN†ŸcþÿÇÞŸ6¦‘^k£ðþÚõÞ/Z'n@£mYŽcc„mÒš¶@mwÚ‚ $#P(°¥n{ÿöw÷P ·¬ý<çD{§MUÝó¸Æk˜‚0…¥:@ØŸ“ ¢¢M!=5Ðö{¨Ñnžã ‚4¤»²;c#žäþO5«ÂŽÕpLŠ'Ç–CdÒ$jCÝŸ ¼?¢@lúÕÐ¥g çœ(3Põ†ìœY"…í$¹æl\’¤ŠXäÏ.›¸©ø¢Æ> ÆËÔQÁ-Jìæ-›½PÛsc/IkÇœ@ÉŽ¥ì eds —ÈS"UqÖSy?’Ñ¿ú“6™ÈwÙF~—µ¢B±ÆhÖ‘ôÅË_(o¡fp؄݆lÏ»O"ùg«x\£Ž<´£?U‰¡5«öÆ p%ma~ÇëC}ĺDŽÄÔa€N”(βxâæŠxÃl/ùõûŸÆÇ¡{u˽ÛLHáIŽ¥r@R¹ÀÌj¼°á¾YRÔ–ÙXúžONš+,Ë“•‹u= bpÀr858'İ s@ÑÐh%ñá¼¢Fá~”U7<}trA*]mðs£ òzòñB%  &L œ:lržˆ|iÅ8®ãHl!@ÔN»§>þl½ù²º»[mUCºi¹<jd¶Ì#07ÆþŽP1ýÞ¬ô+QňKs‚$º¢h'”oV¹Ñ¬Þ 63‡Úà¡·]3¨%`:ª 1ò拈òðObµÒn7ZutyÛ?jìÕ‹š›‡vûõÁI­Ý 0=-K¤1Ér¨»þUÇzŠG`‹Úg¶4)w 0“€îw¯®*Ý®qt“çº6Ë#ÑZî{Îù›sCZ‡¡–LÀ?¤ÄaêóeOר1KÖú‘ È8i¢“)Œ¸4êÛ€À¨ËŠu@²Ïº=ÝpñBû‰‘u•Ð Þ×|dæñ½H¶4{sCëOo”ªd†8P8ZlƒyÅáreÙuƒ¿X¦tÕ:šŽôb!ˆ´œÀ÷Z¾P¸W<å¼¼~orNîYƒÖÏÆÄ ÛNa/: Z&`"«TíÀ’© 'Vd·ž€ìÏ(¸«ÝFÝéJ•2(æ˜Æ"#Ø3>Ò•àO$5úØw#ž#¨®|kP- ©èºÎ™-%øÆ€씘¾,i|Åt›ÃN±Ÿ/­ ¶úŠò6›pÂ!Žô ’p>žïì–•@©”ȼ¼s£çŠLVájBÂÑB¾Ç£˜{ ¢©‰ ¢„w—¥8c€@.$8IÈKºÊðzÎÿ#Å(Ùáþtò›˜)“#!æ“Ò%{&CR¬‡ëå¿áøç*ÝUïÞ8f;ÅWQÔcyb&ØÂèQô@f„5ç'n,"רE‚ ¹AS0ÚÐÄøáS^“‰­.úÃä•¥¦¸à‘¤ƒÃ‰´V‚MJPÂMljÜ1$Á™|&q›µœb˜Vƒ”  IP7FqÛX/®Ä½3 ÃIÇùo«‡MV=kP+†[ OLjý…Í0¶ŠÐ¬_~Ùùëί¿Òr„ßÁß}¾1ÇXtbÑ#ûãÁÇŒÐæªi°Pžf@P‹ä¬:˜×¬ºÎj°ÈPŒðÐz’ºí"Äm¶ò VWVž_W쬋߯<_^­„Mv¤³m‡ZèzÉéFðýWc¸hJ­RÁ°í‹¤5rnų<DZC:}<Ùª*Y¾ìHŸI}H7ávÃ-‰Z}I°-º‰Gÿ>‰lxiJ:ÚPɬµȇý6¨ÌFÎn‚ˆïjrvæc4]=$›ÂXúÚ?vƃ°ùatè[×½½Ÿö§‚•áû´kŒz¨M„î)ºœE×3¨`+Œ³IHF£ A‰†Ê–Ÿ–%…ê9Œ®FûîÞðÅŒR‰ô³ïI:ŠL"¡\] _n"ù€[‡8QßÝ,ûøßS$¥g„Ĩjruåymé—¥âÊó¿üŠ ¦–… 5™ç§xUV„ìÎIxû9yÂì¡{P¡NžÅYÊ¡¯J Å>Anš4ÒÓ+QUc=Nä“ß׿(¦‰1͇û—Dk@RF½›™éoA=+?FV#5=»Æ~VÃgr z4—²ë¸æ&áKïóFñ@Š~ȘC*EüÅä¬û£# ðË!£<ü@Ü›1¬ذZ5a&…ž +Ï¿/úØM ,¯ ¹¼Â¯_^¿¼Öå"ë ^Ãu®Í ñŶFâléVÍ¡ÿ|çsçsñ÷õµµ/×?½ówóH?¬$Pœ˜úóa+I΋÷.í_vØ!â=ó±îÁkÁdÌ.ô!¦éˆò‚Œ©=²rÌ"ÊñÛ·FËÄ0îP”“÷ï…ãà—_%N¼¾[îœv—‹¿tv~e­9S<|›_µó×™<¼ FçxkÚasŽ4ÏÑ›‘h.ÆN@“ÁÒhHÂ{Cv+ñ ©?6/°Í{Ìœ9:Þ~œ{‘s<ëå—1.)Ÿqãªôæ­mn1š|WdÃ~¶Mî/8‚ øÍ{¸3 *¥ ƒ„O!&jÓÆþð†&0² Áƒ•åŸ[¢Oj tœ¢ùõÇtÉ‚Y£"G¡ÓQ2¸È?|ù’Xǘ`iâ+«´ {%IÆôP#CUªôü³ó€ ‡©˜&þ ̺¤èå§Qö9Z #Bí 9è+ÆXù>þþ¿EJü CjK èФê6a"Ï¿ ’Ñ-ìZ,´+¯¢ PšÀ‚޳ˆ¤/¦iÒ!¤mìw¹ ¾q†- e;Ùº—Qå.q|œ– d«/:&4‘#¤V7^ª…ÃúËÚn£æz.Æèt8Ä`FjµÓ)ÿF×^ ò&„´º™/ 5¯D“”W{ŒÐ©›,êòàdZ¿…@5FÙD!cC FÖЩSD{C,BXO£xK°j±5pN‘ZJºŽ( ˆî;o²<:c0â`.4ˆqa³ ;‹ÿ¸4Sº†¾+ER6K¨ˆÈ,S}g3FBŽ^ˆeçα$Z"z`è ‡hÍ­Û Zk¢døš„¾&ÄÊXÀèŽ`J €ÏèÌ dF€öÏ?S8'TŠð ºó¦^ìOÇuøÁh˜À°Gqa8 $î±zûá6ñ¼òKÎd&+D/‘±©"²NµÁ¼ïYW{‹­ž%Õ2‡*…Áû ;Ùþ•ÄâÒÁæÜ #º¸å ^ô¬³—ÿ†1cÁk’Ünh…¾¿ú½:¼ùb ð†á5ƒV(oN Wë¯l}H¦+ ÈËÌRþ·êXÂÝÅõVÕn˜$cb„Ú§û²8Ž c“ëµ­d+IòÚ–Ç…>—d xD64V@>h½©n«œ¦réªô`ã 5]&n—MaÐÐ…ÍâÛ8Ç‘eÝ, ¢ÈN·²A8ἡÍdv{#±…ÅPÁ=‡7ÜhV•BÇÈMƒ‘@Eý†´‹±ê Ú°ÄTÂ6ð$ ÚÂÀÁ¬°x™4vTzÑòIÆž+ÒFŠd†¼²Gˆ”8'3Ë­'WäòFfyÌAzžÔ¹^’ð|˜BÖŸжjq9Œ kxnÕœ›C…1m7ʈÃÞ!‰‘"¬™&¦Ø(—²J¼þ8„Ð?rj:ˆ&ºŒd÷Éöc_®”p¢!̼QO¬ØàV+ˆ†ºk¬"(&è®°€NL†­ÿY=¶†mŒ\ ý¯¦Œ¸vÙ&RlúÇ"‚p œ‘^‹3°%s\xz#ÎF5ðʃ½Æ~£ÕÞ¯¶jožIXKÏ5ÊÃSÙ¤ °Ñš(„玆ùrj£AÇõÚÉ1:[›€‚LѹkàM;$Ú–âjy§˜¸Ûp?|‰œùð÷µÒú `ED!c¦üñƒëq~s²ÎT˜žþÐÂ:8Ò!Át»“Ó”¸A¢õ™³ÏÓÝ™¿`aGùq)µFáæU¡ÿ¤fKÛPÂîÆº±9&£° Î'SdB½±]/{š35B@ȪÛÒ0°¼Teë©“¤3‚l"1Ö C:’:ˆ ì¸^I,r}‘~F_ãDÌ÷\Ó½´»¦ÅÆž˜@<}ÛµD€cyÖ~b$"Ð j ÐUßX@éÈÔaý‘2†¡CpǼ}Ï`"žn‹jñ“ãg“8“NF¼íÑâU¢ä –JÃXºËŠ4ªw¨€Ë~Ï;Ô5~­.ñCE4Z|QdßqAIoM„‡9|õªYoµ‰nq.hc›o…6݆tn´ ýÓWtÅЂ­2zNSÄÂxï<"§àÚØ/éW”¶[âCÑ\_MÇ}32Æ{Óà»Ðò!"ÉÚ²C†°µØÞ¡˜7qº˜§„RÌ9ˆ¤tGoK&ÑC‚4z­‡ÁH„²ÃaG¯u¡p'Xð#Aè%”h±ôMÜ‘¦`ãшcAøç6GJ§>€f IøÆJìË~Lª+*Ú‰#àc¢³1§pŸèj5Ž#Œìàv ÝoŠ o\íû-Ž]ÂøSÂÞܵNSF"Z3¶x{¡›¯Úµ7õÚzã É ô| ž[´!Ž^a×··¦íž¨µ¥³dÁ,2r‡Æ ±h-”=Z•Ló¹<%K 垎ÿx’ýy=Å»³t¢`iS¥eŸ.±À¶ø8¼r¦õ%ÄYLq±:ÕˆMì5ýþG<=“Q'nkç $|€S_¾+•NÜœ;××|c½ø¤Ô˜/cÍ&%lÄcç"t˜˜ß¶´¢­®4†â¾;pPÆ‘ç”T鎉²øUH( ’¯(Ò/±AÃÞ€æ1ê(Ñ7Z³ÞlnxÙ1Oˆ?1zÍÐ iƒ`{Da3EÀ{Ö˜L;H ‘ÕÆg»9Õp2\…YVÕÉ3íÛCÁ4ÒUKZG²‰AueŸ& Dóx*1>±ígR”0‹‘<Ñ])äåà¿ìܧNh‹‡eC~àt!9"ÀêÈøwPãä’:Ô,²†-ð;<¼€:,£ÇÚm5åe<`ƒ}9«NÕqÜ…Ûkêg¢¢¶ÄRf1ðoÆëM­Ú l]Om¬º€PãÐû2#g&ÈG¬%ÌCÜ®Ûëº]ót½ Ó75Gá½Âã¡3 èØÁ"á hYæ–d½±Ü ³ lðãm8–÷FH‚M'9VNb‡A— €É¤_œñûˆ´~ÁªØ²ŽYá_ž…k¬13@ø¡;&ª‰sÉÅn¬ˆÆjPÞ³ÏQ,…œyG/ããw«¡øQÇtÂDb?£¢Xß5tf®YŸ32² ÊeiA&ùœ»BÒ\Lè3žuŸ·Ãj]ÇWa"¯ÛoªÍ—ÕÚͽjó SžoK¹#ZŸT4Á®8ÐxØF|Q;©ÇqT^1¶– ÅÏiØ·âJÐr¬(Ïjžo¼ Ùf„a¿ì\á½óë鯡ñ)6që"45y ÈíC4oÕf­ÑH¸iÄ{àÞóíºE °¦e8X΋XaƒQ,!‰“P»À¤ÆÏXb®Î8BL¯\Il¦Ða§l}c»¼ñð!{È;jY'ÞŽ‰öä1ÄØÈ-x—ÁÓ5ñ!ðر"AXT„Á²ó÷ÀH&Ùƒ3yÉagž9ñlXZ^)¦••¾ÿÄѪØs™,GÔ¼^ʇ;a'½r«ù`¾LâõJ5Çf‚áàHn'ÝøH˜‚.! IkãaèQù\2†3} ®g”` Q3ÝÔŸ°¥¯(µX|Æ!r4dÝÈõ UÂÚWžoÄùâ+ƒŽ\¸8¬é$¶<‰ø?UÈ,y‹Ï_S2t#›Q]U®¸cQ½&L<ÝgjUÏz‰˜sRl¾9 I['.;+Šc¼xw˜ ''÷eÙ™ðÜkÝp:&ò&üÉcÅðô¶³ð~ù‡ÝOï{¿ò‚¢UŒvè¸ÂG ‹õ!1 z/a}O´>Âå‡å>b&ô=GÒÖÝ©ÞM‰ ìŒ9ÞÈY뢔œ´0kÒ‚¹“¶éž‡YÀ´B'P0ÈHÂÕòÑK)^xý`7Ðk¤i‚·ê÷£úÅ+ˆÓ8ø©züšÚ´åRá¬WÛÜ êQ1«r Dªë‡æú¸SQ§›÷ÿ “`pöL¾»„j™ Z¹aÑRÿã[ÌÄ#: HC”¡ãv¢ÊÚ¨–¤Q&b/àˆ¶ƒ‹v/„¬¡¦ãþ“U+ôáèõ PÌ•ŠÿFàøoÌ^puFñÁNç´"£¹N‰û¥žMH¯¤VïÚêÿcѦYœ>¢ìãT½©È¬Ò3wB`6kÉêÙAÍW §H&ô"ç€×RåX²žE‚1A¤3b’zÆÏXu“B=VÚ[–­^[›€ïË"WB׿µÖè27j`£ˆ­æ|@£”³ëå$ ©ÙY¤’ˆc¹0´6ž¾Ý@b=y!½i‘¼JHú÷=k+õÎ1EºÞ)+ÏËך÷6æ_ éc%ØŽØ›|w‘£ÇØqL`S¤ÛRj#2ŸØ²SÍM$Ÿ.F6Ö鉫Ω!T©%'‹Þut`žõ¯c³8!]‹‰ðËî›c=±+ð`ÃmPt£üú‡c"¾oÖ‘Ýè-q‹C™ ›g™œ C}ÿ¨õ³ •¹xx‰èˆkÁtô¡ßká FÔ\àD ðìǘ"ü q’é­²V–·\LNÏݘۓßpœÛÆIrþjïðm;Ø«¼n½¡rgÉ%@“w<ÅDn,^ºt`º@™i¦×ƒ®X 7×Ê›#Ä­x8/XDÍܽxr%| ]¡!iµ¤¢j¤óDxžGC„aÁ»2ù”G„dlÍÉ›_©Zݬ+Ï€XäÏ©@õWV‹Ïî¡É…ê^Y '•:·A®jõQ%'B6K˜éä—^á[™Ð³®b¸z‰•_'×·à½Õ~ÄÓ€¸*æ`åÁ«jc¯„Cå|‡|³Ÿÿ©X\ẻ–#g–Oÿ ˜`´¹ýÐ>c©¾ÙLȃtçÅÙ¶k m>ÇLS[zjâƒüÒ•NPŸ¬Ø)S³A«‡%ÏaÇBîaçó)"w{Q(âcUwñ[ŸZ‰¦k·ÛW€³´'3ËhÅ 4o… ^©™c&[5ŠßÊÕ¿?XùÜ{Pü}cýÑ—UVÆS Ñ ;ª:)ºFO Æ@sã'¡ká(ªÞ"èEWµ”††O¹f7bÿòj$á/8+9U 0ÖY@L«Õ]òf¡‘¢îp²Å_Þ7ßÿôþͯ«V­I\¬¶]hh(¶FÄoZ¿ 2F±Œ2‘%ëך”m¬ü0Åì‚‘9@Y,’­ª‹}_\a§ìí 6 n’™v8.âi§7¸±²ÕQ8Íø%êa ºb–MF¹îíæ-ÝÆYÛ›,íµì Yy¾Qü¡ÿ¬cÜ@ ÿ~9E8dG'&nñì‹& Ò‡¾`˲NNF§2:–l/ŸE™\ØúõâÊóïŸ/ßþ¬ƒm:û¢è7:cˆä ËšTî¹Ì«âuäÉBͤ ZÒ_ؘ´yÑ ½L;£?À&øgø_ê­<øSåAñ9öUNÑ„›è‚Ê-F¿Xq@1Îz&Ú­Ã:´‰ÁÐÒ5âZ“íù_Õ¥ü ;ùLØÁMêq¸Žlíýmç{3s¾ßÑB])>øNÐ/?¸+µã8µx3ˆxòªVËë!ÕñqPÌä¬ ë%Æ»=C2ne¤@5ŸGã…·iÝ} (çRƒìÎsQ,?&Ýõb ¬=‚#äM­Óúy’ŽàŽ»‚¶õ»ŒßeÀfºógôâ!/4òÍSDßõ-Îk`hÓQ”'†›–Þˆcé{L_fü]PxÏ ¼‚),.)ˆ¥ŒÊR@EˆÁ¿|a ;%ln´'¢ãV+Ã8,*šQµÁ©¦OIcï’iÈb§Œ‚nlåà-ÖðÔ?<á-a)ª 3v k•ðÁü 8î{Ʃ¬Ï±ÐQm‰¢“Å0*8™ ½ÿÎ颱ɸàº4hY/Ù¤¾§2g£Áø™j (çïkïß=(²¾¤ãÊbH0š0ü0£uÉ`óh5Aì,b»30ÀÐu›Ž'£+ :1š ŸãÅàk4ŽÏ¼ŽÏ«G÷«µ ^ÎÉKÄÌ‚‘æÇv£Qìâ@,òݦó}ñ¾¦¶Ë(ó–Õ'AUr|&)$¥ цXˆ´« kÕqT† H¢4tDæ!£ÂÔæu4 d)c`ÊÃ6+ ýôûãÍ/În^%oHFÓHÕa]­/#X¦= ¥Þ·ŒäבÜëY2ŠƒúOuĵw»&$4ºŽ¡´Œ™kGíí³®ø˜ÂaĠ͸_Y@}k2©™ÕÍR®ì­’Ý’P]³HuE¬¯dUÑú#Ò[`JQaà¾Kû¬úCÓh…Šu1™\í¬®ºËÉô¬ÒÅãizyUé^¯vΫfR\ÈÑÔǵ“ýW{õw"§SpëZHàD*C~¿ÍN×O¤«Æ¸K¡$ª<¿ÎÝJÈMŽ[!±ŸŒôÊ´ÈÄ*³A·¯>œ—ÙlHA‘NQ¢—˜ƒÀÒÄÅ7—§£A,Xrì%‰ ¨g-8?FIy: œ”H~B7;›$I]û”tgqž²É$ò$xç SÏ‹ïìGÝHJòÓ!rÌa¤\w|“B y£v°ŸTÛÊ60Š1 ¾J*„xÿ-÷H׊yć=%øêèLF—0鉠‘zG²mïLdÏrñ#íd6bÅzËÅÀ Î'–‚NY¬O5Ø òŒxîíÐr<é=ë>ybÜeiažw»éÈ«ä k]šÊñ¬ÐUv8*Àá¬MÌŧPà” äŽj6}nV§ÐaL– \ð—aü#8™’2õë1Çö-ç&iyYAình‘ó´ã€§ªå'¿‡ŠN§½ötrfXüàýQ)|E,ïß9hBÍX¯îP TP…Õô½I’:Ö`ðs¤Q–W(xQ©|Ð%¸²Òy}(ôb„Š”.áèN]ãz\Ü%k‡ Ä1W@gß°ša|PƒØ'dar<£jàÔ5#RV Ñq¤ª;ÑxÙ ³%>ITRjì²î°› °ðTt¾K½ |«Ð§BŒ²>+åéºó]c º²Çzà$]ìŠ^ߨ, ` .9–²@£ÄXùý ÐGzíE³'–ëxàÙ þ·Iý¯¸öÀÎßX+o®ý?ìÞ3½ 8XóE?úÈbŒ¤¯º`¾´ì˜ØúÖ®·ÖÙTí),|bšH©R q³Ãø‘™ÍÒvÐ" Ñ^«XD‡Ä»Câ¡>Ÿ‰Ž>ImE mt>$Ýš¿£¥èsÌîô˜·u$e>„ZEµÑÅ"«UòvÅKðˆ4“¹îVŒš-:˜ž@ý=GéCe ÷¾ 1À*.¬yúïgZƒgQaƒsoð¨Èɉ¸dì`LYº?䀎”ÆñMhH£¬ˆðÓFqy䀇Ñb41Ú¡D Á¬(# 3‰õµpíQc…\̳“`C ±ÜvŒŒ¬ZˆÂ'Ak$¤ìØþù †Aö#ë»õÜ+Ãй<ù!`£ëÉØtU.ÚÑ©°àÀó2F#I\f‡ºJr[´ŒxG©Š@äæŠ‡\Òû+ƒÌw èLî?Ÿéd®~~‰4~ß2<¨,$ 7%7~‰8ü7ÂÀs®DiªŸNv<ðõÿ´ë` #>Ð!6ÚëgŽˆßHK”G#ÃÚÎëN˜Þ•Ž/DyŽN;è«aáá‘Hul¦XªJR«f’7fãJç¢UÝkÖ}Å^|Ñho:˜8ºKæô²@°€÷mì­±—9Ñ› 9ã3HD•„1´Þs½ÈÇø~±(Ú’¦AÚÎHì…Ð@¦%â³±¥^³ñ÷º½u¤g‘ Ä¡U]]#„µã8œE„œÄȇ뻦`ÔívbÚMƒ†…‡uf• ¤åW¯AƒB®ŠˆÞ‚¸N0–†Vtoä3'íØ~\‘½¬·MCà YUÆYI" ²E”†Œ4Ã!ïT'ju¢ÍVkJl»ÜDñd Ùx ¨_tÔø¡…͘³aTu0pǪŠHFÆ– `c@ žÓ‚ÆÆ¦Ù(…f ±zäâäØOÙ£ÄûA–ÝE#I.ËpGìåÈŽä,¨ˆ6íùV‘xîr€6>šé®Bë/†.A™¨…URÇÔ·Îb*³—Ù Bͤ2¢ œ^õ{j·º„ ²Ø€«š„BuÀ¡ÝÀ'+¢2Má§’ÚÈÄMgF„‘4}†¡Èc)QzJ[}•½¥#VâÈYU¹´³¾9L@" *!YfšoàŠ"×̶Uñú¢QfùR[Ëæ½ß(®¼_/Z—ªÕ’’- À„¿}¼rW¿•ð.¢Èü"9Àj1Uø@°`¢>¡#£(N%=GKdGZdS­Æ™:ÀjâÓÖwôÞQ“ úŸTtjɶü9¯ xZªÀsφæêÌßC)Z¨E½Àa,¬±B¶?¿£¾¤&ú¢Ág‰àÝÏŸ­Ÿ êgh¨w££ô²Âèü–#Yc¿¶ûL¿G{f%\ω—˜ü‹Ì>çfax]Ñt©AÍá<Åе,©cÆÇš%p‡}Z÷\Ê\œ%ǵ̱˜±'¹TDо‚È«ºI‘•§˜'£Á¤fÁCæ@B7‰. bÉÅk‡Ú4ŒBÒ­ÂÅûaÁEs†_†;@l’1ÅK°F•ðdd™¶±„@Oq”ªqt%b%¶ƒé8‘|¯˜a´‚+–ow­IŠnt¼¨œÉaÑ´”­£ñ8u»*&¢É'ýÞÍôª0 Ñ<¥[AL iüRƒ²7¼ò„”‡†Y8t†,ƒ³ªç[è‰{pâ ²ÙŒ¹IÒ‰˜Œ‚L£)±,Â*%Ñ·O¿üãýõÙÙ¯ª:g °hçÆ Š L¹Y´«tÊ!?{ÆŽxãDÂù%ÙOA=ß®}Q¥šr§@‹zÅǽ€L)ALWœ…‹Áy‚y5IŠ4Y0ãJdØPÂp¢|4¡-e€'Ç'㲌µ­8Gm*²çâ¸|<œ¾€k¡ b„À4š T;ÃÚ±_óžÛµª6!hØ‘xœH]˜Ù ƒÄ·ŠÜ˜…øW´Ë3ðÄØ£‹—$䌞Bä"Æ€“­y%˃:NÆ i' ÁÚË í3ÖúAÓ’a8ì­Þ)>ø!qÙ)·ÜyÑBóÅAµø™¤#ôà[ñ¨.kªÌÑâØ61C8½^âœï§â麬µBv¥Üdz,æ_ ˜ìuR0Í;!0ølzÇH¨xg+ €l±@®ø¡ÐÊ%R!fƒ 5¸'ƒF‘›látÚzoAœcÌ^„+Eñ"ƒÕìD2Š#'b“˜ÿÍZçrFT16–èJIŸYDnˆëk³nPÝn§+»õÚžKŠïÖ_B#V«¶8øµð-P¬r@³4Œ+.?ì¶"º~¦V‰úD윞át<=ïD±§h’ÀÙntcF7Ä«bì´íŠ d¯×ƒ¡ëÂ9,Šœxk6¶Ây¬\”ŠII*¼ºQ! 4žB¦‰Ö9Í¿X#¥M~ lZµVZòäÉ—•bñy¡äYý¦¶(ÆøÀÄzÆCW¨Ë¢ã,˦^*µÆwpe½(õ±rò¬×SÀRBF©ím¾Ñ†ÇrL – vÐM¨Õ¬_ÏÓ›éóV±§ãÅblüâS42À½û¶ c"æ®ÀÝ_• {2¤M?ܛ⠽!T}4YŽúùzŠ£¿×Á-+¼Ü6¶ëNXû©N¿Ê›=¬K&»‹b•¹~X'¾ª¸Zð •Y&H™ eYg$-™òm<Äüd‘‹ g*–lz8Ãņ3p‡óQÎpnq µiB8Åw"Šëq5”éRˆ¤Nï#Åû°„‚œ“xn¢…5ß0J<ËGꔼÐ6™1p,)8L`v&Ó!ùÈhºþYä  SÄpyÔ<7ÎÆ#Ç;ä#¯›°Ñ­\ì4š@¢ö"râÔuÏâ±Þ{˜ãMÒ/þR-ÿ“=’\KãÍXÛWÒuzÿ‚*YÔ¤3y2rcª± -‰ƒ¤À˜-Ùj2Î+§åС.>Ø$“­ocäeÑ)ÿ‹éO4|M­Ò_A®rdm-\{è†?Ÿ©A‰ŸYŒ†8H†¹è8hÇ%Ún¬ ¬5ŒÀ?bè¨8×xOö‰’’)¶Ýèü<2ä<'ÜóÍ£¥½J/)¸<šco¬ ‚7h»²‰¡1Z*†“Q[KBÀ`ÌIþÃííÄžÜ —>T!¢8ÍíFЬɢ޷d(û #j|3жùc¿Gt|ÀÝcsOÄ.ª4>j.¤±–œÆ‹ƒt¬é&  –ß&±í;×Fv0ê§;РЦ~7"^ËEm‡Y,""Û’ÙàÅÒp"Æ:r¬­A$:68¡þDš]¨>2Ñfч`àæ–ª3BÜEƒÍ,­‚¢0þ“Œ°"ŠA2¸áHõ‹¬Ôh)¯%ˆ™%f.™Bw0øœ/›@Ì .vCoÙ8aبXh9i[RÏêHˆ·M ]ËtÉBÈΟң<»EþóÉ­íj‹eŠl%Ã@ŸŠ§ÌI0ƒÿF3XRø±ÔÞ1Pb ØZlöÕ1Xê,ÿ%»ð4Fgý‰Å<øtÁ’s&À?ö;®sAPtµRE•$ Q«»‰ë (Ï@EGƒ¸%˜9w¡¬kÕh̵S7ˆlÖ¥°"Ê}¶¾V¼‰âÏÃQqÕXfwâÚ(d8*eƒ–Á³¼ì˜$è¢wï4“ê‘q"ŽŽÁû µ‡”f®>…ŸðÃÚÆf•VßɵGŒ9†—‰\@=Ðn@\65cd€8à•¢ÊIéë­Upçªa'£ ƒ§;Lã5»]ìÄìbÓwÂ’ó%É×Öñ“d׺•…Ÿuº MŒZ“Ð’¤9°”½ìš‘ðyõ+ï¯ߨì|)¾_°RéíÇ G3‡æ–p Srºh‹f!¤ü§ûèaê_  y˜6Ä2"p9ykFªd•ÆÄ‘]À˜Q±8Äkóå:Yõ¡]Aî;2Û4£õKÅ¢-7‚bõ±‡)ðÕ½OÍ]ÇÚªÕxŸ°¹¢¾W»VXÄÊM‰ˆâ‘k.Ô‘ëdjdlRe“kÅÎj¦½@!Küö–;Ë…À±jÝÁ»Aw Ûå´ý|UÈšöì!ÈÌygåù³ Ú8ÿåO×Eh$ëØÞ K¶ò Z«ÕZ„‘`õ‚ÝÓÊ<áÊøÇþ¹g>B$ʇ FƬø4OmG ¯ó,ÏYglñ‹±¼pÜXÿ¯õ‡kn­?^ßÜ€÷ë[nþ×Ú¶!÷oŠT&T9&³ÒÍûžìÜÿ%­¨{1DB /dŒ† È™\pË„$#ºyLΓDit© 騿§ÇÙt{,‘ëD@«z¸Ï¦Þ̬žvøæî¢,0¡&)±Ê‰Ïåg…´±œHyLÕ°© Jv§±ä¶dåÓÙ&Ë«ÁaBÒ~8RŒ#SÊ-AÞ©8 Ž"º;¬ÆÂ·dRaŠÂç‰vçÂ1œV!Šàôâ6Ÿ/<1Ë€ç¿vã’ Ü4ƒÑ•’¤Âð¶80…8N×Xãvåúš„ïxQsÙ–¢Û®l=ÔêeºlA Ý`™Æ$5Øbp%3oúÜÕ,¡p=½ ƒ`¯í›¨ƒpfç£°á±æÄd£s´¼@Ð Ãçâþ“Þ»38‡Š&—A<=?gÔ Ûö),ixÜG¨'È8ã]A1Õã„?S¡ð:×e4Ä@l\<¼ô]L!% s>™À¬<î!]ÊLò¸›AA ±ƒAãO^I$”‘Å…Ú ß 2‰Àc"fz¶Ÿ*XÃ&‹•3bX ÛXY©ƒ¬‚Œ–7‰\jŒÞÍ—rzã‘ë%õ6;÷M4ßÍ+ä¶ÌÝlõ$¦ì« ÑB thÅBY…š0îÆQg0pàûû¸8,L:¥*7á‡(ºb.Ù˜ÅKÀy´±‘„ƒ¡hO^bŸ‚å1¶Ëyèðr¢Še¹%J^0NÔh0:'àÇ¿EggcX¯pã¡GÂéhôÁx’tÂÂë‚ãNHR€4ѯØ>Ý­#XÔÈþGáÊ«æ~Q(uÏŒnDÕèèˆãèR˜]é=ÇTnÚ Pèd!Kl È,%»”ˆ)YzÂ~¶”lâQ^>¡Í DØ&&Hl–| ;Zh(S¿¾Štßá> t½”ãÉÍ ë¨ˆ³¢ŒëЕ§Êb°×$Üt¸žhe‡º²WlÔhk·ƒ@ä,x LðQd°EÝ ¼aœ=6ùÔï+6²/š3^^Þ0X‡Újf‡'ÅÅè0‰]D=DËŽO¨¹8U\.3…C‘w•p…jÜV"G ÈF˜B·FÒc ÌÓ°±|N:Þæt2›\…ݤÐ-z:qOe=.âäyAm“ùÇÇ•0ãVZ ˆ¿ o%uè)&Ž@wÙ9|nœ\JAÎRrŒ–†aáÀÛ‰X§Ù´Î¦Æ5¤pTÓ¤…ÉÁlCÖ²óÁÔ+ÑÑ”à ϨYW#iŠ­RÒ¦@£¸%ð62i¯É Oîx”ÉØx<6&‹øƒ\@WM)qHeŠ"”â ‚‘›pˆ0isŒ“{\]Œz F¢•Ì®YTpŠ’4 >½Þ6èd(‰•ã,^êåÒÑI FB>vƒ¯8¶Ñ6ö–z0áÙ0Y¼õ»!ßùnˆêöv)l¯?"½C{sÖßÐX¸*js<7wh·òÉ›u ã䊉›žØ1Ò «€U—„bµP‘j!¸1½HMø1‘‹/Ö³1ÁÏ0ÆXºåÎA‚Fª®PJz#‰¡PläÊ"d1'Jƒa"1ú*ðC” uá®;:°@žºXv\⇂T"ºeá|œub/¡w.³g®¨Êé:ÞGfLÌu»†;`RèdBæ™B½RŸ(B7ÖH<'DTQÙ§}´ËüV £Ëóâ%‹#I Ô ¡R¡œ¬‘m]/%Ùá¦óvTVw¡u%/7Ž)ŽÑÅ#G[Ÿ¤\x`ô(Ø™‘š‡@½À‘ä¦ ºõ)Ü(´€•% º¡*ŽU/ÙÏG{NKa4ñ  sT¹øª/FW\,ŽaCa~¦ÃôªtÂ@xu>0¼èƒXÍFôž”bŒ0sÁ*R1y$k^²ˆ9fû¸˜EÈ$ù_e‚jî-%]@¡u©œŒ0´+‚7‘1“Œªm&ï©xÀ+¦T<¢ÈAÏ­S¿Ã bÂc(v¦ €*`.š¾ûìoA7ü#àèØ2ù ²œëºˆ„× Eƒ6”‚{Ë1i)ȼgñ7dû…d#ƒF@A¢uqöp”ŒÕ\³ºkD=x\YbšÀ,˜[bXȯDè:Ì'Õ ¢´’ØÚõ_ëóþñ.•ÜZXÚ á ‡öžk ;× ¶Y¿z9Jܳðp8{ØŠ;[hé N¤0ÅñÉÃÝô?FRm„Ž}Pi4”p .US °4p"¸aëL )´3¸ü=—Q ³îÕ:ºŠ2O]ñÆëx¸‘±‹@` 4üGº(†£ÓQï†D²‚÷*‚«×pa«ä†Ñr†3œ1œeø/XQuøÆÃµ)RHÝïiá)~$¨™NTh/žø&Fó 6+µXÂQêôÐãž, à"O£KÎD‚8냹²šÀµ–;gÆXu°Ì|èÄå„Z;ap<˜´¢í дnLì´êÁjQp·å^4Ê!Y-gÈ ̾Ѥ“HPí¨â²ÚJ²¸eàOÒiHcTáÛ‘1Þ ÍþÈÀyÄáG²¯0‰Í0,´ ‰E§ ´È:ÄÞÅñ CB èP`Ø€/:ö€ÅÑW€? ÅÈTŒ¥šÙ­‚E$„r)ºà“Æͳ1n`D6áĦ ƒE±æC=²$C³Ø“í?‡݉ß鮨6›+ø„–:§d,É7ìß14t1°õx;¢˜',(êKÁDô¨Â3r†ÛÚ³Ge|5:áSe \è—ÀJ·ÈÀì¹ £„AÙ‚£0cŒ÷¼±SƒÞ(z{YЉ‡“œÓyÚMíþ¦êïNr¸ûà2eH lƒed®A4K¿èa ñcLúŒÌFUÌCG¡‰]I9ÁïXáøCŸï:š¥_~5qªÄ»H¨0XoÉãΡópnÐý/6Ô4šJ ‘h‘yn" )Av#dóÌ÷Œ¹ ¸5DÙÊÅG½ÀîÁõGâ]ù‘`Gõ9j6‡éAϰ€­§¸A|\ó­îø‰’q6yÔÝ8'^)J¿0 ÎÐ9W c¶›Ä¢7¡Ó¸ããf˜½“—ÏÛ8jjFî2¶ƒ`ê(ÀµÓ(ë ¨çŠ;C,,›aN:N2Ì$”8Æîú÷õÍ/^Q„ä‹Lðù¿+•ÊûzÉL¹À,iˆ ^“pò N/ÙØ hÁàsˆÐÚ‹îl|ÉÐjh*œ ²}zV8`Å$òzò‡±\ÙÚõ¶¨¹ØHÑ  `Pk>ÖØ#p90yà•ÝÂ6NFW" `rÊßµD±¢x_»™Ùvb4PôÎñ~½UmתG­“ãº:Z}ŠÆ¦6‚ÁÿØé {˜Ͻx´3]x¸H"á-B_ ouH¼ˆ‰k×Ïø½±Øˆ¸[ˆ͸Ê'áÕ52€±„UAñ»NoŒCœÆHŒ¾œ¸˜•¶V§Ýb4êÚRÓÆ±nˆ¼‚J6ÆYÙÄ8S£±L$˜ k+´¸¶Þ•Cú6íBï3Ü¢£yÀqb)k >¢d{šDLô×pÄþë²Ú£@d‰Oj2=#y3•*M­ §Mj‘ÑAªK„wQOœØ½Xt†Q{AR&vb¤5¡Ì©G«Ñ®%y^ Æê—ËÙ0j€“š3úØTbçM (,–érl†—qÄ&\ï dëC©E°Mƒd.Íí ã¯7OÉ!¬ãc%8‡G\„ bŠù¢À S5¶¬™ËŽ4âðÉÓåRèˆ#¡b#5Щ«áèÄPÕJdJ!ù3(?oàŠÅI'ÈðÆA"Œ‹¯”µ_ЦÌΪ{ ŽR„‡ý±‰6Nb4ÍCøqFNAgC@¼YÉ‘`iyE¹t”‹gƒ Z7è&¼u÷¥*bõ4Q<ãl »VwSònB5“Dlë/ŒKä:ÙöЉ]ŸÕgZRÙ?° ¦Š\÷®€M(K+…ðtŸ†µí|@üÝŸÉI,²5í:ùN¹uæÓð@'É]þ¬¤ÛVBN“Jwè”Ï´P £•ª æ_/™R7>äùµÇCUí‰Ì¿cÐF5s†!žI@Eg`Ã$°ªGåa£ôÈÅ?`Z œÉ<‰.¡±µ-¨å(̦á‘Êä2:Cq*rØWi0Œ²ªtë >ëNZ\HÊ…²ÂB#ò’Y‡`Nvì©%Kõ_1='šcá:ùÄ[´=‘€ìxÔœ+= !JD^jˆƒ˜åt iÊ`t‰žÊ@TÂC\DŸú0G+“›+1}†åúh‹è>cŠ…fsW¨G²\GRÒ“ѳ¼)ý K¹ñ|–,¬ïÀž ¹T6‘\lÚ?c (ß›­úq£ù£ùþÀß>Ú;iÒûþû¤~ü3~x.Z‡ûš[Óó¿ÚØ9M§w`ÎùïÔICIª½j³éþbˤÈ#„ÅÁášlŽí'~ DpB±­°¤‰ÁßrÎ*=  üÊq¢PpäÙêgäe;ØÕÿªNZ3šKåKsÿ!´ÉM¥n¾Ãýý†?¯üªÍ5`‚Œ® =o<šÙ K>µ¬ƒ]˜×fý¸¥3·òÜØ–J¢Ýý½ê±SáRÖtíºm‚¿JV*gtø¯Î#dèM"v~XþFÚ‚¡Ý¼üí¿þXO´¡˜¶’ÓîþX}S¯šö¬<f’4öJ$nT¥Úan¨IÊRÏˬs½òüON>âD®ƒCá™lûv Vl ©CÒÝ©æïûÞûøƒûA·1}­|t|rPwKZy@¯¾bm¹ÅÓßsç½Ûªç?¸œlÏ%Çqõàu½]o€Ôiº.n®.XíËÛ ¹¨´ìðù(ܾ[È^ΰê^~!JÀÎÝü±q”Xwøê+†¥õ¦~( _}EIu>AªfKýùÏh”þ¹¨  ÓØ²›Î9"ÙÍÎþü™².…?ܪ„æÉK)¡\¦Ê·Êþδàþ‡²ÿãVÙíú§yÙˆ¶À«–Ö‚Š`чÉ< £' K’9KÚ KSƉ)*^@ÌÑ'?Ì„³®ä¸è-,’Ö!3ùHV¡(nw"ÒK• ‘ºoO¡Ú ˆ-š`1¸¢ ¦°1Ÿ/±¡Wö‡÷gäJÐü˜Ì’) F•9®¿²i|ÇùÀ•5ÙDæ¬MHdѹâÔ‹'¹Ê8Ír”Ôk'ÇM'‹åIÚSΔ‡w¯éê°Ìxe<Óâãð²84P"ÛPk+¨AÎýtŒ°ø¸0·ÍËú›œ öø …G„Q•êŽeÉÐqÕ^/i¦­üÍW`€ æ“sׂ±3PÙ+=!úB("ºYþÇ8³>ÎLœè@ºC·sÅ p¯ùw}-Q¢ðLÒlæàÅ+”MðÁi+žDäTiœ'I¤bµë, eyoØ=-ÿ•„m(¨Í±ºbœä¨ÒÀV*R³)L_x¨¼„HXDeOòþXLlh’ø«$Xö¶eÎÂÈÃ7ÝA°Á#Ä£Œ'‚Ú®¥Ž^öêìxÁ z»á\K²”X^”"êžiNe’æ"Ê0€rÚ×××B-’áo,¢oä“ñó-güuUmÏõDûoÙdø¢†iT—­#p=sh( Äù„EýÙ0OFçtWÂzÈ]»¼g=Ñû4ñ‚ ËÒ:yÜÉTÝÛz\èê'·>wÈô¯ÔDðíEä3¸ÙÇ5’D¼MQ.ç®èíðø²Y=ž_6^ÿTÝ;±§Þ¦í»Ðÿ}*‘/Ôäa³ñÎ9YC~Áô5b…Û£Øü¶ ¿"Úõ׿tVz9£,äÅŠÉ®wÆþÔÑÔp϶“sùæ“k™È=1ÎKÔ¡HîMé&ˆá”€­G\!Z‘äÖ­—,ÝP_ƒÁ)]tJŽåË‹u'áBӛьƒÎ½YÔ8xºgÈÕœï8Sß»™gcµ_ W/‰>[ Pç [ÐÔªÍú^½Ù,‰EÍþÉ^«±×8¨ë‹ÝÃУD°¶_±Ái—À/êNÚïõ8>—¹ÑNo* ¤ÿÉr¯?kBÇìù1nÉÉ‚²,Gî^²káO§!e]*}@{ÏüU_©w¢Ô¨å8°æëZ®6d¯ê±CÞX+ÏÇÅ@†µþ®u\5ƒ ™˜¯µŠÒq+˜©WÖ]T¶6.U<E%TK‚”áÜË1¯DÁ,²Q¯tΠöúÁ.2Ÿþs{ÿP5„à­zÒ:Tå!áþ*8&]„b’šiѨî*¢pâeáD¿ÈÄãy!8e#©S|urNXܯèÆÎŽù7—ÖOCñ¸:h¸†Ô+ŒœÙ.þ¹‘’Å?(¹Èqú˜‹qˆõß™! \Ù“°´Ö.’­ ˆ3®Ž†2 Žy7à‘R·oîAqžC·]ƒ+.Ô ]T¾2 Íl‘/ÈÅšаFºÂñ#›fº~dfoÌÎŒH2Ö²“ káŠS˜\iZ†O`1Ü(Ç,Cv–É`E¶ ‚’8˜ó@&FAÍä\ïmƱ4à(“ÐÁÛnÒˆÄðÛ,L¿Å¿D¿h&GÖÉœbüÌ¡ñjCW,`á`]`OcÙ‚ ‚‡r÷¨i°•‚’Qɤ{É«’oµ;vÚ€ýØ ‚¯¶”m'üEžy'§«üœJ§ö˜P²úWÇ‘u}BßN)co/ULN%‚Å/ãàç—?·ê9eˆ•·³º¢§z{uýOՋŽòüOEŠ@Ï×½xŒ1½&sSáfóõåJ6–+ËF¬ðÍ¢òÖà"FýK9Þ×Ïp=cÅwÁ+jsCjöû÷6cÂG»e¢¢ôºD­¥8ùOcQ©É†Z縱É~…. /¹’ãU#½@ËÓàeÆêç%>ƒ$¡P?§––Q PlV;›Ü WlL•ìE]EþHøBb¡…œpÑ   ³EÆ\ImB­g wu£ò‡œ)8¿H°=4¶Xw–zTÇ,Uº¾ß¦\j9¯ti;ÖÃn1úbìÐæ(Aqzjw Jhü/äY“Tʾ¢¨/b©F KÆ(Í<’šöD`Ä;†¸1Íl2k¼ŒŠv…Wq4íÊš48jÁ9Þh¶øŒRKæ¢my±oj$e¬Ù Ón¯­+»b‚Ú¶ø¶¢ÖqTPC 4b‘º£ãà°_}Ç9,¹™0»UZ!+kׂóqF÷Ð1Ùµgub.&#¼ Å6ÏÓRøC)|^Tì 'ÊKªøR(¦Y=¨ä041aQÔŒ‚M>ØìSWš€ÇÄu×$…þézê«å°òÜàOûûÕ>Ëףæ÷Užõ«ëm(϶XûÕ>Ûb½¯ò,_=A}¶åÚÏγ-Øû¬Ï ¨#•š}<Ó5šs2+”m‚|4œ3ŽÏI¡ïaï–±†2ËePhòÔoÊ<`­ˆLeº¸»Fª¶=,ÈÖWƒ`c‹d€–5´Xìg†þgfv¢NÛŒä¯NJ¢8 “ŠMáw;*‹tuwrÔ:t>Û‰´_í³Gï«<7”¬ÖZN±ôl¦X›™ºƒ‰ð·x¸lÆ!@yŽ_ ïkHJþV3uáAXXZT–™r:.ÕG“ÒcM­OI€Žª:9PC]ÉÔj1`@e¶NUÃC²®é@3Ž ³lmÇ ,sgžèŽléD §0$o.¾±9P•_>_²x€”œßRMº•¢µ˜eÈs ÔFw'þà´œrÌ4Z5¼Œpx1áIe1M’S¸×üºs…çUí_ Îrs͸>4“XO“I$‘ï{¢™çzD$ ¥šºT9!~Ö„©ãÞ1ŽÎF•äÙÄòi£ÁÀÐÊ‘ýŸe.X7'£mTYoëç£:¤}’ľKÃyg½—Þ!·}AG¸—!ñFyû©—Ã!ËØ¾ ­ Lî„$™4k2‰W9Æ q¸¾Y ûÿ{öw¶î’¨5…ãúúÚñ‹²„1°ÐlµãûSži÷ªyÔ_íªÈà>V.ؘãíXR´Ï¸…è¦Ì$1áž¶Ú¯káÊkâãpAM¢óÑøÎg<ÎàË‘±l üMøØ$Í?¿lì6j{áÊË~¯ÖÈ5ßâÛÑãÓ›á+Z^‚Œ•Œvlº© B와'i^ÀÞ顱™³È7B ïÀ±uÛtv2ˆ:«† uRÀõØ¥´ê0œ>•ü»6µ¾ÔÃ2PX;4FñÏ׬ ñ‡³¸B'nAðǹBŠ˜Åå1GÌ6=ÝЯ ªmmPnÚ¯óAT KìÔ(±mú±„ÏáþdL(> kCO‘NÀµƒÅT4¤E#äæÕ²ÈÕ?ëÂ-s/{;ރ…®÷p‘ëý­gµž~d.:ŽÅ<°Â9™.”X?ð‡x}ª\tQ§å…ë.FâMÄ^£k䉢îD2uhQâ«KÁvMOŠéá²ãEÕí„ëôÚÆcNsJ.®se]¢À y²¨½Ç´,›št³h|H‡À„FcèȽÈP…ÊÃX¶‰Ž‚)àlRR3¾þ"­Ã°g%ËœáA”C—Œõ§{ö"é$ºñð¡¢À©F‚äªXÏ4k‚€"b«E§‚X”XáäMôF"uUº×™¦E6’Y“¬¨@8¢µøÎ[Œ¤kpbœ“ÅEǬÄŽÞ8s${è-v×UQŠ,F>‰ú†rÛP0)c:ÉAPXØŒ[BŽÐu¦°Z#ßÈÝEIÌ ÆwLÀ›ªYoëÂ9©˜ÄþI‘á¸ZV9Š´šcæzm ¼¶ÚÌ«_—VóHœ€àîjxl«)“Àâ!Ãg®‘tÐaŸ à4”â¢OÓeÆ£+›È bíš­À72̰Úã1Icg¡2š`ü)×ì,p@Ù-zƒz—$ùx•;åž :çäº@«è·ÚE,÷|05^Ì´_=Jf˜ ²ÞcoÁÂØ_Ò0é¦(Rv¹x%Ñ´W¬aÉ¥4â«°cDƒú% 7fÁƒhirÂfãàõêgý+IÊ“D tDTØÉåT’ˆH8üˠ– Íg1Q¸2<‹ç (ª;c‘˜7VQ†=DüóCÑ“$!öU·@7Ò‰a­*$ôV·#åsºî‘}¥Ì¾á:̼Z¬úXÄ.fX•J0ëNæ=¹.dùƒÎ84[B%ˆ¡­ù•„ ÀÜ E뎤’ñ¾ ÀLŒFhÍ ýSË=zùšx`Ír·¢’ƒÒ m¦í`F ö¤³âåV=S7LÓiÜèóFê-CeÆFÒmЄ°9Qt ¬h˜4j–}ƒç*ÌpÁ‘)v„2EŽ ï‚­ÈäÚ Ë $L Ìúvy¡_ð²3=gûz¯céöSl>V®ËÍæ·Ã=˜6äÞøƒÑ99˜8AKFVøåýÕï¯KûðÁààaoúå×ñ*…)ð câ(l„ QòDÔ4®'Ì¡XP¨4ô"+s`ŽHË|#ð ¸[ÉZ‘ ŽPd…q\qH¡ò£¬Ú t‘pQ{À:,äá(éèØF±‰ó¢·MsÛ„9·Mݹm‚Äml¯Ä"kÝ¿Cøºcw¬ô%̾DêÞ%RÁà¡\Ñò"йMgçÓ…ÍÜ@g¨3AÒh™‡JX7ØìþéËÔMyÃ’Ìsº¡°yo~=%sŒžñz!ÛRNgg$³ðïf¦³8ðkVy7–lsü4rìèè;é—N9qƒ¤Å‘¿F…Ë·4#Åž5ˆ­ UšD2¦›È[I%{é€lÙ-q!hW&GΧ•þ™‰-LV©¢œÞ †hêÞ­2öfÐìÊ5;º^ÂQÜ1†çÌÊW†c1Íá'.  è©,©Õ‡£bÚ-*~¾#¹â¨ Bå ‘0 aì¸ÕÊÛY­ªSC¿+Ƙ¹ÞÔú3Góò-zmÖÝkÓ.9¹M+Šhïsç(j¿wcÇ­±•1^Lv¾8V"ë8ZÏ´ñg&Huó¼½éØ%OȉN¶…²Í_xÕ½¶ É‹OîT Dÿß1^Š=ùBrT‡^ïL×ñ•¸§êÄúÃàDõ/zËIUÐ_È—7ýÁ¶oXeØ™!aIV U„VKuc$ïast>DLú‹óMpyñFÄ™Z-û÷´ƒÁ1¨Fjƒt¦p»ÝTñ¤+ˆvSÄ=sI¦ à*¿Á7`f¨”v’ÕËååqÕõe÷Râj‚ï•°Èû\yz’ý`Ê 6xKŠ%r¤V73ð‘jB\­ÑX†Lc —'$¶S,¯’Z‚¨›Ý¹BÎKAsÛç@3e4 v½"¢ñÑŽTÖÃ6©ÉI‡ “ÁÓ ”,ø¡I-k,nBE!"X¬OaüŒI`ÉáÝÁ:NàBÁÄ@à×îÓnȨÜ,m—=Š×.t±Í*I~;”V '<‡qWÑ$Åœ)ð[ÂÑ¿¾ öüî ú=uühȑىx%Ž!éïºãµÏe­œÃåÔ»1QùQ¬q$P‘ÈlXjʹëiþ¾VZûÂ0ŸÏXÓŒÜÚ÷Pך€Å8{¥Ã8-&¢©ï¢A‰»³ìEú_;T,Iº»Ä½'} +2ÊÅܸ&6ql®WK°Òz¡è–ÁµÙ5"Gh ù \e®M3ŸhÝÑÕ{”š‚ôàÅ%û±°œèMÙ]5ŽÞ"ÝíHŒáà¬_` í`™‰>—R}å&Úˆ»ÑZ]òFó&ãR²úO/V×Jç´[ü}£ô𠢞§~áÿ¸ÿÅÿ<ÇÿóÅ Ô90”7 t¥2‹Á–Œ"9ïX¼3¬Œî ¬¡, .oQeý½”ˆ×@c#œZëHîJªækØsºy}¥9/H^+îPR•ŒT®\M=‰˜b ºšØ=i= QÔû!­AˆßNù÷‚·8ËIbyc¸w"NÇ@q1Ý;Ûd/½³³HÏôdn¯|tepÉ+àÕ̫ĹÉÈL( ?ð 1ÙÒ¢ùá‡R*"³åÞéܳ˃A@>xa FJ„£š0°ã'Ç’_êeKã¤8…™/CTx¾íÜFöÊÖHtÆÖÖßæÑÁòë‰[Í´–®,ô·S¬Lv;+ yZž|–Á¡•)Ü™lŽÄ×Ò;F;tãbGû$ðáA­Ît ¬Fv•´ÛQi(ãj¸x;J£z–YSs'ŠÒ騥º±Áˆgªª/¥;¤ ¡˜áÆÕRA  –¹cAÃ`{”y²FÚbìGZ²?¦vÅA¤µA±J²5Ýa«Â"¶d }ÖéAÆKþ#TWRêÓ} …ãÂSÃ"Þù4U)G1€bõ1XaL †ïèK„ <Ž‹nŒJs’ŒUò!Ù):àÅ¥¤ð¦±¿/aöºÎÒ—5¹JNŒþ D(Sœ¢:cC*j”‡¶¦q¬ÕKÆm”Äp=NVp²©çEÅÇ ‚Ÿ8Ðé1Sô½€“xÒ}ƒõ˜5ç ›½Uÿ¦ÞfXÊ×<ƒ¢}Ÿ©A—U ¦CÑkã !fìÉB>¾%™)V;ŸžÊ/Ž;Nx¤«”1GùuÝ"J‚£ëâ“ëV77B×ßÁq§ñ]'ž7ŽÀ©ô‡nSå\7ÀÙìZ( VgÁ™fJ`Ùd7Þ÷pä^9^Ž¢/PDQDܦõYpöM± |ÉÙЬ5…00R„ ZA4øÆ£Y¸zÌB2±Ú£Æ¢æ€«ô@Bc*]ƒ|¹ ÓhMmŒr6PƒOÏò_—¢ Q1ô×KËèÁ»Œ(úGÕV«~|€xúDNÁ:Œfôv‚_¼1ø5üEZîþò ¡÷pÕþJ &WÃ\Wojh–jÓAÁ¨ð¶0Hú‹’_õÆ'ãbH¨jçjÈ»gÝ[öë/X„ƒÖ{¢‰x¥ýó‹I6‘šsÝYÒõ Ù‘ŒãP2ô­,©¯ñ©œ0©ÉmdB¶í¸¨¾Bσ~ð£}BÖв‹j|ŒÒËf@pYѶ¨N–1®§ÔјÎîP[]‚¤0W)ã©_ Èábj.®Nጣ „2bO™ÐM‰ßcÔ*Yó_èm8Žìj¢QÀÀ'Å»£y©Ðj€k»Ne¸¦ŽÖÉÉúúåtLšEá•ï0¾%ݬøåiƒ°<¸FÌP(Z½š-H±QÏôNuQ­N(±8ÌH­õªºgo;)•¸q<êöéx! ¤J¸Ëh*ž"Û ®¦ ÷ì°1üÝpÚÈÌÞÄÁAd˜rnY—"ïÈê€e ãéXUlÆÅñ˜Œ®€¸ù LèˆC#7G^š© ;o/"Ÿ¡¥á1ÖJºLYýG‘ÓµŠëËZ0F-)‹ÍY××ÇG!ñùë¯Ï_Òj®X/ß§¯[Ç'õ€uHå•Þl1\lòàô£Ú”džiÿH«I\I¦Zιßq"ËþF;ÄgJB]ʸ³Ãà&ÈŒËÅaä ð;aŒ6…ÒaIv<ŸÝ ¢!ÇÕ© úŒ$ñœªDV„ÃfÁot Œ^IT”zÙR„p)\-^`úpHVŠ–’±Ž»kšËL±ž&)‰Öì$_l"KÄj7³“‰¯C÷'=“}“oî-Ë[ìÅUÕ ¬m¸[†:íã!šŒYBbyÞóºÖ‚c]DCP˜—JÉYìéHmÉll)«Ðsý0™ËŽž˜R¸#é©} Wl]Æ[Ã=ÝCï4®„~ÝQP°²ãB(0ö„™gp)Å‚Ÿ°¡ÚaóV»ó*áÉUˆ¶“vù”õµÊæšM€øì1˳€sä 0ÃY[—@ÖfÆ1 .X™4‘— ú.;ƒÒôú=¸^á€P JÚEÓ(¼ C¨æ Dº™$êèg»jn…%qŒ£Vc>  Ïx„é"ñ;òÐÝ™ ¥ P‹aG"Å5©¥‚Ü”´Þƒ„|6vû "oL‘XÒ} ®ÁRã8å’×)§ê©ÅŒù»íoB©m4¯Ö|ñ|{xâ¿òäÓÏ׋¿o~q7 á@¯õ‚2„é6J[$ÆÎL¹ƒÿ_+m|!Þ@Ž¥ÀnÖª9åÌá¥üWFÄZ’—$&‘&Áq<õF´ÑYñnÈ›«£ú$Ë~(@R5±Åã Ín"&´ÏÝøââ‚%M¢Kq9‘“‘©~§tט¶[{“Ø„H$ÔàöÍ-b0Û)TÞÛÓ Aå`¦Í;ÊØµLDê¡€­VÕfæAÓ”¬¦#f#EiÍÄ!S,šg´påÂý`42‚쪰V&7:CÐ›Šœì¹g.7c†kîiR ›‹˜î !"Ç« ¦1ˆ6­ŒÀB|Ocáç”h§ÍD2²ÒùÅ®-`²…±n¾zÕ¬»/öê¯[oàÇúUì̵Ya‚ġ֮[Q>¢] ñb&¤h¼Ì´;Pb7a•-ÈzN'aF’9aæ,tzÅžè˜dNXï ¨¸’{v² +ÌÁrŠ®ªtd éäYø9Që:Ý YÚ •âéYoS»áº‚®Þ‰%Û/åõ_Päò®¬þеOâf‰·}@kw Àx®¾[y^[îœv—‹?¯&u‚þ±Á()+= ûÑ5W£›h+:.¼%‹ÉµŠëéWx³Kr}Íü2?¶ô×Cøß2ü¯ÿ;…ÿuÅ÷)güÓÃÜüÊx•™1Ęã©_Ϋ¼\Zº¿fãP/•C¡1É~“8;$¼òåOlºæR¦h_nVp“’Q#÷S}¹W—-n¼èfwà6ãêÓ©ªa$©È$Äá@4$á+H}(„‹WÙÒtp²§%–K®éUuíf’ËD,Gü^#°AúOVëÕÝýºƒ_om­»‚´œýAÿ*|Óù-Õé9ògk[ÁýßõGsZæÿ1¶õx•Ì,÷öî°Ž5ø{ôh‹þ…¿Ä¿›m<ú¯õ‡kn­?^ßÜ€÷ë[6 ý¶!÷oŠÇ,T‰uf¥›÷=Ù¹ÿKþCèÿ@°æña<å¨Áƒ¼?Þ©Ðt64tnü¥d/3èñžë¨§·¬3nÀ„€A²a¬4F3žãGlŸ{ß/sÅzû;EÐê¸A›}> ¹Ýax<ljL^ˆ¬0¬o)2똓Óñy5FÿO.†VÐ%Þ‚x­¡*›’Ÿ³^ºŽÕ,ù±ÆÔŠ àm)”åœ]H)7+á¡Á*1†åâB)/Ð9'œ•U¥Ç\% à¹ÁÞçÉgœ!z ÿ‹4Ånb‚O$$ôåHÙr[nh+QZMÔ\N«x`AÓHTÅž¸Ô/% w4ÔRŒ´>Üf×èqÍdCÄ™Ë1$‡k¡k€Ï žfŽÇ‘ Eõåb0B¦F{[½D')Î]üxw:Ñë[Ãùam|„žË@=Ì8)Ï™?6ìô§¸eâP¢;W:)m˜§í´aÈZæÕ©6“Æ€cH/F¬Õ9ƒªéB¨ØÝ1qÒã`éXsd,¤¥­BÊ-5NŽœúÇJ!#ÂóÐá*á1£0ä2}}—)Sñ¥d·è^8Î*tü¡Â±³í0Ѽ²‘#/CÕºéf¶g=šN 4‘Î Þrˆ8‰nkÄ4‡­‘‹á¢©Þ%)*‘È¢TUƆ·àÇX[£ˆb†)Æ ñr‡¶Y"w—BHG%éHºƒáÇeN.s«RÎŽ’œé/é”\²ödî¡Õ¢[Äö²eϺ­©îh¢Íæã•¡`Ž Wxå\LÎpvÑù›Ê1¶:.cLKá1l¹3è@É 2)ÚÑ2Çšì;³^̶q瑜ú±‡ˆ2ŠQc»‘ ÿkî(y—„€O“¡·„),¼]¹¾~–/ ãCÎf¨\ ²Nµéí›Ê Q_·+>˜ØŒNèaœ˜*éE>DÆTŒÇCÎa\Bt|äÑn˜$9½q¦›noR(‘ƹLÒmò1E J•qéÉ)  ºÎnNSýع§ÈpJ C÷Šw‘ „ƒà-~(1uÓ2#Ш1A`ÆÜPÅf–0¢Ü„è3ü 3$æ÷xNf£Ì¹úadrçf>Q} E¹ ¼×Õrà`F? ŽÒ+§(Z\ #lü؆—?ʤŒž{H5{Í!æºcy\Ÿ5õû‰b. ÆÇÚuØ]ó“ä+•kd¬Å&A÷ÞÈ™CÑÀHq¼#„–ÛçZíY÷É“°öj¯úºù¬|î5^¿ô¼¦ôÈÝy—XWhŒÚÇ;;%ãéÄ«®™¨HÛÇÀfh1[K5…äWö2ÈZ?Ï>•¶É#YÌó²La/ Ö«ëXImæ]=È*°±±m¬¹ÈÄ–1w_6=Ùƒ 75ž L@B"‡¶ìÆ„–H¶„@Þˆž‘¸÷p^è-ì´œUN•Ù—¾Ê•ÎÏ™¯ÕÀññrn×Ô5IFÒZ®T–U´ÿ;jH~aá§£jëM¥w¼ÞZ\~;*Ÿ®s&j‘œÉEÏo*CŠ.õÈ" uŒ±‰ã‹·@`‰¯Œ*¼Ùæ`$É+\laONÀþ:bà–Á]?†ûîa3|‡¦$iøB*‡œ]4"±1ÑeYøáN?ÎÊpF\ê–ârƒ¼\¦‰ ÃճΤÀÙ°Œ"ÆmUz«\ÆsÅF½5…-—± Ëæ¤•%kä@HýmLüÊ?^¡¢“‚Ö"¾c™áÉ9{ çÝnH…ýÍíGòózûQûÑ–<\]uí¯G[…ð}ZëX{÷Šúᇻ(êèHZU/`¹üŒE× Â`óÊÇûä|ÚAṈq4î=Îy ²ìŒ ð¼D¥J‡ÑnI­Cg©S°›ÑåiÈ;DÄå9–ý«ž2£RûºìpŠLF¢ç·sÅùHWœ«”$äGœ :å6ŠC´ÏË«Óx¼Š\Î`½¬ˆJ6RªÐM%ß—¥šý€Kx²µÓ~å<'/Ì)Ä2lcá kØ0–ò/—Ë\ij#Dây·¬¬ùÑ và`;Gƒ©¼lÁîÝKÚÄ8«{e5T¤ÙîôZ»`{Þ{ßQ¿¬Òn–*A D¢7xV$º„KËé~É;ùH0.Ó3 «ïÉ ÌùT v]óp4Ž81ÕåOùS®F„ C£Å.éºa±Ò}öRtnPÌyãVžULØÂц¨bãg»ãeïÒÜX–Í¡»,UP¤¶!â&Â0E (¹:(¹w&F×–¡È'<³ý¢ñç‹ë’¹!¢KbÍB».°áƵèòÄ–¯‚/©Ôå¥ßy@¿,WöÀ9ÝÉÔ¬v ìqJ:0]O%s§c­@©]Qñ퉪¬ÊI+x¤@@h÷I†"}” ½¡BXü`tQÆ|Â$ðòSëzp‰‚™”.ŽÕ2áES{5Î!œ÷î”y]¬Ó%¯Ñ º>ä8šrÿ%N@ðv$·Ù]k Pì¬1ËŠd½r¿º’it’Ä( #œë£ÁGÓ9qFÞx<Æ®š†+áðP£JÌ!†<ÓQ¯Cœ« Ä­šŒ²Zº£ïI“ÆôwÄ`xBc‡±Œ‹]C™+9pV2’o(™´{ËÉ­¾Féçžq),>ËÙ#t²³Ïi¤ãØCË4+rÃ;W÷ Zâyó«ñÐhDÍ1,†ÄݺÅb`&H§Ìá1옙TiaòARÎ Šñ^$ê3¤ŽÌjR¹­q”@6®g‚vB"ar‘ìçœÕÊDut‰*]¾ø¢ƒÍ1g árDo†­%<.·nÆkPú=Ôh9û¢±aàŽí>6²döú§HÕ8š ösÌßDíÖ›-ºl(9ÜAö.%ù¬m€d-tˆ›Ì4b+…yk…ÜäÒ+$°-´+CHÊŒ’4±g¼‘j(g`§ØÆÓìQ!ÐÆbKì‘öð%£¦¢N)QžG<šþ´öãxÉòcÁ9  ÈŒáxHRâ(Ñåþ2w‡Ý½9;4Hpž„aŠæ‚¢;~%ú›4ñªjU—Ì„ØÈ?‰Ù"¬CØðn¶bF…퉮'c«ã@×3úåÇ4¤f˜ 5—Ô¤ª’ô ãíG.þYóä~¬X‰˜½ßÐü&h¨‡Ò}¤ /¿ªW['Çu—y <Ú©[Iæ@û»jù+ÇÇÅ(ºZ¨Þ5†YMÀñ*Uk?V_Ûzšß#¤U"2ÐòùpZîÄ< @™¬è‰û.| í} ›ÄÝyóVçÌÆB—Ò$ì@ˆÆÜ(§0TËHHkÐcv!ÐrÂY{bqØrö>g‹:äz¶Dã'Weœ¬^l<¨_z¿`Åk¸‘mX5üäqÞp4¿9*Ÿ¼óذfmq䆨4òš¹˜7¤‹¢ô= "ÅŠ5†£™õåÆÜ‚|°cNØfX$8jx`E™›¡î¢O¾[ª ëÂíJÀOK”#Q(H%žx¢a‘§þ°ùju=ìT>Ttu<}´Å„› Lk˜ÎôÂ`|;tñ$e4ã/ŸΣrñ×åðjAˆa¶h¹‚ƒá¨7ù°¬¦Sñœè8/‚#u—V˜·´–`È_dš)å-•™KbVÆ›]ÐkŽ`o¡ žmPâÆâ i÷thí1Ç‚#ƒ“e”P«ø:HÙºÄs³w« ÞB-<5¢=",‡ÄG  »• !ø±D“¶Ü…‘©‘u°eijà7²D=n“3WÛ-Æþ‡).±Y¶rnáÌXžXw´¼z:MV9Z7ðK8›®èŒÍ&oqXdF¸æVM+–À¢ø:%›•Ú ¥û-‚9m cÆ“¸Œ±?Ö&.ȸm ê\/bÔÃHélÒF󆶞2" K uœÄWðQãéeÂ> G1á)]—m<‹Úžœ/NÓÆ^ 6ùòY"A¬œ:jÝ‡Û »iiçÙ”›cºAa‡HÙge(s~†.•¨À-ÔÅšLÀyÂÝ0º#š¹€ 6ç^<n-—Øý  É-”2ꉬžRãK]6µ£“rípÿ¨zðs¹ùs³UߦùIb:J¨IƒÛC<Ž–q(‘$~¬Ô÷ÊðHtXz{F®ñôtÙZM¨G¦Â:Ið=`O|ì^¾>OBu T§µ¦“ð7žiZy’ò997ž=(îá6MLkÛžïÈ‹ºx Í.wUÇÊl ÓÄ…WSÖƒïD™h‚† lÍ]îªDBB—y J …¤ó¨‹m¨«3Í1í,ñªµ¡,¬?8ÒXã_Ï*MáöÉ%^ƒÂÅ(žLºp¥_‰*RçHѼ°çÚ× ±xF‘>}4Ûçæu*|F£tÚ‰/ü‘ÌLx;¿¼J7ÏÕË,}7‡£äð’,>˜ŒGô'ÇÞ"¹Ë²Ú[-—/–¹'GHáè6¬vÃqõT¶TO¼ÅÖ2dß/e>#ºeÙ< hÇÇ(¿·ÁdK¸-‹ýfvÝâðÄ+@ÚÂØ–‹Ërd 8eÕMFW!áU•DLAûÈ69§0ò¦rÔ³\\ QÛ<*ÂEâüä VfÝ B³HÕïÁ}&v·ØçÒ6INã¨óª±W—´õ!Ÿäêó±#ⅹ긶 :l3ÝÂRJbÍ8îØ`\ üÿÿ=ü1òá^¿‹p„A‚ù6vß•ék•h(EQ?vÂÏáËæny³\¦ïm£õFÀ94îÏÏÁg0¢¿>WIøHª·AÛ2ãÆ:EcÐä„`Ãøf8é\“pÓjÒI( ñ€Œ)âÐEdŸÅ?B¸µ‡á 3<Ÿ²¯Ù1»OÆhFº¶Æ¦b§äØx&è„C¦NèÑJv|ŠŽ 0.…`ÀZ"ŒC<“çyÉ£ññ啱ñèFc ‰ÉÐ5Þ5ÖÅ#teÏ$ sQãJ4bÕùb3 eÁ÷¥€½l3Zϲ{ê‚ÆÌ0’NB&’š n‰9+¤èÙ^'"µ6à ânÖ7ÖôWÓSè:ײõ)ÁåYX÷§1"7ÓPË=Œ EäOÞZU¤Í|Y‘ïËŒûúÃ2ÙyZiûÕX™<-ŠìhP”Ý‡Ï p‹ à„Á_ÕÞ©Ä’G3»MºË&Žp xÛ9s6Ê]Þp¸ÊBYe„)wxôóqãõ›– ùý÷߇3Æ™›·2Ч7;bœëaÛM‰>Ìtݲ{G’T’Ixv¹œs|S¾q5ÇÑ„ .HuÂ6Ó}Ĩu.OEÀFÏ‘îoÑyÎ_ü†Ê4q.J.nß‹iÖHl¬­¯q¯2*ËïW“¢kóžÑ9hÌÿf֞ܲG­ K3ãNüg/ºŠWãÁ¿ú“:'—Ô˜hŸfÕx<&Uuób[ã Ø':Ñÿ2‹áÛ`õ¯œ€SHqÛŠºMs©Àó/ XÄ¸ÇÆ6©ƒpZ0ßÑ$Ý©bÀ.†’S|MµÆÚW†›cø:„\3Èãˆ$É"ЬGð^¢WÙF0oÒ#xü`tCA•‚Ö›:_{¡ÐŽiŒ1¼`½“¹ÃNl86ÂÞw2£¶‘ê!ðx?¡ð“·r L™.£ÉN<ý±žÃi‘#ŠkŒ¼c˺O(’_¨É²[›mS0 Ú { .Ýsû3pµ4A•­€Êµ_Õ ½Ñþè˜gÕ¬­Kt¨éËcG9Ï õAx Š-üHŠ)¡‹òŽüáȦ)ý-%rS–DÃÞuð#ò¡½Dö“‡h‚ιhŠ×SµyzFјŒ_»k+©A«‰qQ7šaóðUëmõ¸Âï£ãß»õÝðåÏ!®xsã†o÷vëÇM L"ÀÖqãåIë^ªMÈYð¢Î×ß×›Íðð8lìí5 0(ý¸zÐjÔ›¥°qPÛ;Ùm¼.…Pœ‡ µßhA²Öa + ÒÙÂÃWá~ý¸ö«/{ÖÏÔWÖÖõ *«†GÕãV£v²W=N0°T=Àní6šµ½jc¿¾[ڡưþSý 6ßT÷ö½<|{P?Ʀ{]|YöÈA'wÇõZ {cÕ`à y{%`(êµþ¨¿«C_ªÇ?— L _àØýïHÃÝê~õ5tmeΈÀ”ÔNŽëûØäÃWAóäe³Õh´êáëÃÃ]çfýø'8”šOýÃ& Ö ÎïV[U¬‹€‘‚ÏðûåI³c4Zõãã“£Vãð Óû#¿„µ*dÝ¥Á=< ®ÂÿŒ…âÐØ—·oêðfø  ‘ªâ4aÄj-7ÔØrúÔ_ï5^ãŠ_±”·f½SÕhb‚Wû¶ už`—iŠ UüÓY°%šÈ°ñ*¬îþÔÀfsâÃ&7d™À«æIí 7žä4)ØkšÍ—˜ôU=†Ë{ëjlؼEtk¾‰Å¦ØÄçcî ¥c1.‚! ¾'Ÿ‚ ¨HІ–¼B "EÜ@ˆy桳@Èg9ïzŠd%å©Ò¸ª*æ8þ cñiKØÈ*3RÇ1Ðü/‰T×c…B´@[GÉ/Äö\[Jj§8«2a¯!f‘­{Šè¾ ÿŸ–ÿìîžìÕ+§HßMsä?k›×RòŸ‡Öþ#ÿ¹‡? ©¦ƒh…Èhº®Ÿ…Z f½Ti¯iyÈk5‹$ûÕ6Çy®—‚bÐÊiÃÒ]ÑÉÖ³ÝíJnyk•Êv¡˜‘žßÄn€eõó¬W¶+ë™yŒY~2ÃZe 2üoóÿ©û_üj*Ë;ªcöþühm+½ÿm¬ÿgÿßÃJ3Ø“<4Ъ³'¨)®ÏµY$ÂCüøýêõö!Ñ MØoñô8ë2Ã,ÄAµ¶wX«îµ«û„| Êðr 9k–¨ÅQÄî!ÄžFÚ¥ðšÄ…j©¥‘„G³¾wÐývíèˆÁ5 åÆÒ kÖŠ«ðo*kF±óµÎr¤À™^N/À “4¸)£IÕôŸmžuc¯^=hs—ZÕã×õVóY4t+óÃћÃŸí#5ÃZ%E¹ì'!h†zñ© éÛH¶Â ¢C= þ À+—=zD:IDúMþ’{£sz²úz<¨¿mÒÁºÆŸMŒ­¡¦ªVéH¨L®'þQà¦?œŸš~‹’b|+}¸˜\ÜN`:|·zpxPÆåÔ:<Ük–_ž4öv½Â(·8ýž`Â+øÓï58çsÞû¶àÒ·# û€q¸sSŽzQ9òù)Ú¸³ÚŒ71;5ŠÃf¤`Ö9ßÛÈDGדyK$&êÂÉç4tÖØãg¸ª'‹¶3‘x^;ýäóÚù‘‚e´Eò?;yï¬Ó&Õ@n ñlX¬g©Ä³{–L>³©prµÉ*¡- 3Sbê9  ×mÔý´/¢ÎÕ)ÅmŒA¶h¶¹iÄs½Mq`J)-f¦¥`ì­‘“ê_ýÉÜ…ip¸Û诫å2ºÄhVòÙëSÄ(uo³Øv„sV‡M8s]àÍ6ç²Iæ5«‡<õ íƒDÒÙýôÏo ¯¾… uR¶Qލ‡Â"Ùf6zç —ž?r"ÍM‡a)rÅ$¶… œÞ* $Œ† &œÙQ› ÷GgiÎèjË_p@uµOãüŠßåZžFc,Ï»i)±ÜgäŠÜV[Er˜em(êÍÌœ*\üd{:3Ýù`tÚŽânçjÖàJ:ÑfžÓ ÔÌkx‘t×Î"åø¡1õÌ4~3n£èÕÚ¥r›´|»ÀP áÞ&¼ÁYù(@x,ÃB›ÄK/ǤŸÅ·LëžÞ’Óâ©9ìêüô³“ ž…Û ‰m¯àÅ‹·é®ù¥{Ji¡ $ÅöÒ©ØÆ¨ò‹dàÛîÁYí\õó>1TaÎÇ9ëŽù_gÞ’=Ø@y߈_Íùö¯ü-Jû7÷~0öB9ßÉ,Cgå}žIg\Ec”pæ~F0Ѽ1¹ä~Õû:7™Ûå}%.?çÛtØ7…Hà@kïWI^”)[XO!6ýç Ö<•°ä¹_Ë9#yf…‹™ü”d-ó¾K™ü˜b%ó ™Ÿ ³á³YÆtjf³Þ+E‘ù-Éf&Êd g¥L²‚Yi]0ë»Ëúå~·,_V‡ÕËúì²xÙßóY»yéç$óY¹¬T —™@Y·¬Ê²e}K³jY©’,Úì4iÖ,+}K67Y<#­eÁ2?¥X¯ù©˜ÉO—½U³X¬¹‰æUå³T‹¤›[¢a¡æ¤AÖ)?I‚eš‘0É*%’"‹”xŬQâeÎü +”z›yšë“xG,O‚¸þWz© ‹“xkX›Ä{eiR¯3ï/ea’¯‰uI¼–%ùÖ°*ÉÌ¢$Þk’è³²$›AÀþ€é`ÃÛˆNš)ZFDß^Ïø*Ä|% C{¯Årh‹‰Z^´tˆS­ ]5„nu >̪‚­©7[M´#Í7­MMy%NÙnÖŽG±opù´CƱ˜*¸”gÁ»WÕÆ^[Ÿü¼Ï˜ްŸÎ[hDÓ Åa@Â>EP´Ã]8ǒŦ& k(b5õ‹TþØ'¬bˆ¾ŽnÔla{^F&±Î2m jn¾>®îc»¤¡Î¨¦jã3‹1‡(Ø;b³8a‹J©p%Èo³¤"U¤i2£a¸ÆrÁú~eƒ(Ž}ÌÌQž¸`$ {ÑØŸ©½^Eñ4½P¦9`½0üqO0*LéhMhD…í…¡àFõ*ŒéD1¾Çù#Ûp‚‘À÷jÏ€¾ÜÊŠ+¯&ì+$Ñ)ôyu6ýí7ZQåí¬—ë²ÞnnØ·xBÖzB› ²ÉE¥?üŸ`¿Ú8hÁÿêÇnº¼Ù?{jÁ’´O/¬ãÛ‡èá4m#ˆ€WòÔ@ôWÐ0¶u\mcc¹êC$¹±HÝ`á—[?49NH ú…þÀã¹µ ÄoÔ‚˜eÙO@BŽÏξäù¡]FÆx©O¿â ™Üd6šÖ}4ì ù­â<«q6ôþMµöcã൭»«œ6拱㡹y‰|hÁÿ÷þyVelBf~ôìZ¥Ò ¾9ÃÜ ÖËnt?í7³êûx[ ôZ3oGWÑþmã¸Ã®Ö'ø‰ÅSHw/ÌÛxÕM*É!çU@þí.Ú "(xágAqŠ p £³>9zÈmòébÄÚ[6!U`ÔÔ÷½=¾w–» XærĽ(Í«HxgóÞìQù w)…/Qø©.6uò O1-GbÜh¯ûâr*A˜Ô?å©§Pzö<+áqæ@:<*h f"XþÓò•aø‰Œîìx}ì-N@¥Ó ¾_†å³péEð]÷*,_¹‰ñ-4‘‘üÈ{ŸõæoÏ :eëª!!Áh4ši6ò=û­tÌ-ã_ˆ9KX9cûžM%Ãçg–I±äö«­Ú›6ySЄÔßîÁ!K¤Ø„…^«x³õFÕ‚ †—‘S©…ïc*Áêí~ˆÄC˜®|¼xO#FˆžØðBÖ#¡q¿Ýø,+ Fs‹ð•ß´ÙDË€!t¼Ÿ ¼§á'+šKŒï$nàB0c&¡ éæ—%‰. Ãcá½7дL±a4§¶i¼Ø/§x—S€,ôAGÛJ¨ãûþ”íAÀ! øžá®8¨É÷:yttòD ôÔ(üÏ5Fð9… ´KrªßTª·¯¯¯qà›'GG‡Ç-z¤èœh7[ÕV£¶JG‡ÍÆ»vóMõÝ‚ÞF vëaÜ漢Ö÷k¬ØûG·r,.¹ v2¶Ø÷XØÖ“ä»Ë0uÎs7~fm:½zÊùþDÛt©‡Ÿ?‡—Íþ§ÒÁxÉPHÏ”þùÏáÒJç4nOFWm¿`\APÈÎmjå*üºåþ ¾£äðA°êŽLð-…òÎÖï¾+Sð²þºqðûÒÒé 3üðlíé—eó©¶²ºRùáyñ}ü Ý&‹/‡v;|¿ò~ÅNÃjñwÁ),-­¿žÚÂPB˜,q¯Õ>|ù·ÝƱɶúÀ¸¼÷χ£1¹¡“Š[z ±Â«XM¢ÜÈ2~¯¬<ßÁuøYàçfk·Vl¿ÿôÃgw~N­À¢Û$YëÐ'©ov·œêŸÿI<—>ÿT?n¢_× Ôm ‡¨E¿.-µ¿†p‰-PÌÃÒ’£c$yžêgëO¿„Ñ Ž8ÙÓÔÔf.Œð¯xóÈ1»!› þáYæm=㦂 Ï1¼½e`öA•,)¢··s÷x•õ¿´÷*Ã1œB^·ßÔ«ä4éµ;˜ñUÔ›Üz^™tÁÝ+X€Ad ?ºšE²Á^Üq-Û›M0¬’†Üub™#flÌ9”´çîûïC1ª0ý³ÐµKþ2æ—œ}M¤"´yà ±4 L,­ä¹¥VHú0§xD¸†¢L-Eat‘Š¢À¼BäñrtbÏÅ*8HˆT›µFƒ;Š[ ÁnE)g)9‚Ò¦`a(U¦}\'^ ]ƒã …ž¦Í”,à‡g‰ÂÿQ0Ò½åd>Vº–0lÛÁ¨ÀMå'\Z©¿«‘\téÂÊjN"üŠ;Þô£þ²¶Û¨%Û{së÷2RT¢SøÜ-¯¯m=.P’Ó²¥•½ƒv³(Ý- ’\´Bf䣆߳­ßUÖïžûY]Jwõë{‰Ûè«{†™ÿ@oüw»+À7­Ì=ã•}pˆ¼âüt¸ÿ ô5Ÿ" d¹Pÿ‚o Șb}© aö,ÓáXØv¹®?*úÅæFù´?q£zŽ=Ž‘qö÷œfzœmå1mŠ‚{»ÒM|ì^| ^>õ^”éyï/²ß·»ç@á_åekw¬Fbú5ê³Þ“B ùÞZ`$¿1Dúí5‚ï¥^c–6 60ué:È8aˆNé—pôÐæ*ñ‰Œ`½ eý1g°IBnÎË~ÜÍý÷/{™{ƒd•Ùãguò9Ÿ†Yó¤*ËäûѸ·1œ¥Þ{êùÔG$+áÿ3;Ä”Q8åT>«MI}aÖt‚€„éÓÞMú­ÕOf~ÂS_rFzÚíe¼K¯x'w|Vϱõ©—À?÷{í¬!¾– h‰æM¶SŠ 8àÓ–Û•A'Чöv{ÐI6K+þTTZxv&ÿ|-&ª¨©G%&.ïrCk‡»õöÉA£Õ~ÛØm½y¶-EýÔPÐÉWÔ†Õ[‰7èKÉ/Bç«»»á3ÿþÐJŒØú£™C¶þȳõG_3hÙ¹rG“/4l¢¼øÃãÆUÎ8§ÄÈmnÌ¹Í oä67¾fä²såŽ'_häDÁó‡GŽ«œ5r0Nˉ¥I$reîûÑ¥,3dNg,1ó&\üœØLÙyFËf|O‘­ §5G$ÇhÔþÖhYàÁ9d}±ìHO ýd;zŒïv5‹*ÞO\× fߥ8¤9ÝIÜgßÅ9=€­mUaÙ¯ÅX–íú/’Ñü«¦ò”E’ÕŽNLÙð‰üä{}¥®f§™WÎAgóT=Þ‡Å?·@›øÑÖ-·6/|ïððàuõ¸öfñ*öGÍÅ+ Ô·+›¹ŠsÕo &^¸-˜øVM9n4k?-ÞN¾ps8ù­ÔÜ|²önÁ´ï¶-ÞtL¼pÃ1ñ‚Ín&HÙü”'M›™ í¯ºheióÔ¯£nU_W¯®3«™W@m4þCù_£èes÷qDâÔ?PGì¼í8G~1Ñäö=I•ò5½yû0C’É@¸´ô®S(/Ä›HIª‹Ù„víQ›ùEC‚YeCYY¤¨Gå fŽäš–þSuïõqã`wÎ ÁùV¦Y ¥øUcsÛ‘Û %xoÍX˜š^׺ÅÈ`ò»•y¥ÝrDæ— ê;Šøªn´$à·1ßM(‘·Ý›t…aõ¨Q¹×Îê$——¢7>c”P>u3/ȇ¿p›”åE>£”Í™glB.ßìÃŒ¼ÂQ%¤ÞÚËíãœ)¥ÌÙ˜ї~ F;d65HêÓß~6$žLÏÎ8XirÆ—`f¬—žfÏRTuAXI`~eÍ)™Cw45;®ÎØï{»ÂÊigâ¨ñHU§¾–»TØ£ôx:Ä›2¡`”·Xt¦¬“ÛôUœ™×ª55+9 Šù*Ö)‹¿Í¸6¡®×/»¡úeNcM ƒS× 8‘r®u {ÛíZóou=¢¥@€4=YZ\ ¸Šã"K%õsT1î}éÑ=&ûõfÎûíœ÷/;½YŸÚ­1Æ$ËNP«œþ¶‘ûíü·œOû9ïOr>|Ìy~Ÿ=`ÃÑ$»©Ñ6ï}ÆÀð‡Z.è—“ÜOù_f4º–5¾ü)·Y#|Õ™lù¯ñÇ©ãíì} ‘_Ïy¿‘ó~3ç}FÅôþaÎûG9ïç¼ßÎyÿ$¯_kyòz¼ž×åõ¼>¯çuz=¯×ëyÝ^Ïë÷z^Ç×óz¾‘×óܹÎëùF^Ï7òz¾‘×ó¼žoäõ|#¯çy=G| ô'Þ0}ç}ç}—ÕÜ//ó¾dŒÈ/þ1^ü!c¼äª°œÛúšÛŒm g}ÝžU0džõ1·ØŒy”ÉÊXÂòe½œµ‡ÌÇÍÜf®oÌʹ1+gnïÖ·f•¹5«Ì­rÆò–o¹kbFe¹«"ë‘/¹ãŸu„È—ü}4k|7f/|ÌmcÖ $_r—UÖ$_ò˜;~YÇ|É?<ˆfŒ}Îúœ¨õcgp>꿌€F(‘ñ?BÏ„ìZ>¹gúãâ»JLî†Â ÊÒ!ŸÃøb4Eÿ>ò¹ž^…³ ¾¼Œ£ÁGôiA½ùª ·Ã`#«n¸ŒAY{= §úi4&=™Á1±¦œ>N‹CV7}⸙ ð6ýÏ›ÉÏü\M¾°'ôÄ!Õa¬FNfxŒÆãÄ#q>&styµžz³á¿ßxÏÔbRÜvJg'ø®,ž°ÎáéþÆ™÷ž{g¬L°ì܇D6x‘“Ö£ûÈ/0_Vˆ œ³dwüà@™)’¾ªa}HÞ÷¼ŽÏ}?Ö×)C~ ®p‡‚ú`Žv$vä¼h{‘(Ê |¢¢/“d0ý ôü,]#~̨¯ËÖK”¢Á¶±RJžªL¤¾,ìLÔ œ`¬ø••óîpTLµCG ÇÜk>yhmf4¨!‰©$$¥ð¿úqõu¤\íƒê~ÎA|(Úï©Oå¥Ѱ©OZG'­6^¸”ØË^,kc*¸°R¹vdz2Ùô{(¦å+’vûíuýàMk/ñ9ÐBÚÿžö£ Uã¿jCwŠÅDºvvÂê~{·þªz²×jC­/›ÖÏé¼k¨w-Óo[™6âN"Ü”K+PÌÖð§*e?ð†uò™íJ.ÏÐÝbªeèôÝwå²…ZZA”ãê,ßå®$'Ÿ‚3ÜÎä ’V–º<õ‡}D¬tš%{ò7ʯh‘&V&—WÚL¼ÙËÏÔMmÖ´éÎpÄO/µ^‚-  ½tJH®´âýŽ>: Œ@a~®>Їi<^7#óriEðòP€å÷‚Ýèg|·W=xý¬†ÚÞZù]¿GgýëÙý¶Ã“Q-œ¦ï“þ„GHœÐ8p9ÂÅinÈcZ„šè®Oå^4éôñÜDp\ö’ÓžqˆÀÌ¿ˆº£°P˸´ÃOã>éCä?pfwVW“0Ù½u"0¼m…7,y«­\Æ«×ܵ3ž{ú¸©êù  0oi(©Ÿ7•©šéB…|¤´J®ÙÀx ö:…°Ì`œÉ2vtH6•u“/Pïp”U¯A>ÝIkÓä·*EUñ ”¤ŠrùŸD91S½”¦½i^É!Òn×¾¯õÄ»¬V2Ú‹Kg«±ŠÐ`_¿RK¢"i[bÌÈAJüd’Ö•qNJêG±B)…À"Z±c€’D¾UA†s#Ü›$yGŒ ñY-æ :›|BxLbߥ]…ñãí`~G™ Ó¢Áehf¸wµ€¼éËÔ•×0ä±n‡ÕÅÁ]•ð»åÒ?eUÌÚï¯`ËÖ{pâ͇ÿñ8êô2?2ï¥ ø a*íwb-k¸Ø¬d ”â$Žš7ñ$º¬_à Oà£Ù ßvÆÈ_Tã:£‚˜4±+s3.´!4F{}´! P¿o™dè#€¸ ÇV*ª2áM’Œá#¢DF¸?¸ ãþårO£Ø3Ø1±ÉFÑ›¯®ðÖƒûšöNÜŸ°è E¥äIã«; àbQöÂÏ$¶ ì!mñ+±Ú›Ä,Žnˆ«ýÞöá4‚ÝÑMÇè=&´±Óaƒ|âaDg†Ž4šV¼ŠÉÄŽzûž¼¯0Ôáé`Ôý;ŠO!t1 ´PƲ/fÛt9[¤Th;`o_iâpDðÁÿv|òÿü}Û?í°0h­²õxÕ‰ñ~Gu¬ÁߣG[ô/üyÿ®ã—ÇÿµþpíñíõÇë›ð~ýᣭÍÿZ»£úgþM1lT9&³ÒÍûžìÜÿ%߇Î|;2(A*§cn½²þ¨ò¯~çlÀx/ŒýS›„÷„‰\]ÝŒûç“p¥V ן<Ù*o¬m¬‡èµ6Gg“OhÇõ ±n;ŒËÞv+ØÑmFBÀ\±äzJ§w^A(–$$‹é‚X b4¾ìÇŒ´¬(†ÃÞ*PEŽÔº?Ah\¢ÍàƒŠÚ.G=Ķ¥’n7#AŽÄp8šô»ƒ\ÀÍ4þH8ÒÒõªê³ÙÅè*b n ²;%€ø³é€À‘¡r¤B€ «?‡o«ÇÇÕƒÖÏ%¹ÝÂïð ÷m"³5è|zêïàãºð"íC’ODNnP…°_?®½«ìxˆ~ÕhÔ›ÍðÕáqXE]Bõ¸Õ¨ìUã“ã£Ã&zc½hÖ[$ái¦¿ŸŽª­7á³ðCÖ½:—ív?nŸ§£Ÿ~'¡Ïz‹°ü[¸Ìò¢½úOõ½âòSÆ}Ã4axÖú)=5¯Y†š¥ýæ°ÙJd™Œ§³r(í¸Œ¿ÎÇÚÉ1òvùeÅQºMg}ü÷ u{×3D%ÈÎŒâJ¦KK¿óÍ/ßÊ_¾Ö†Ï‹áÓ§æéA1dnaVá;¡¬…„نτfU0åè_AhiÕrº-ËÀ¦þõÏOÝ2¢kX™ëÒ¾(îtùP0˜ÿÙpÄÏqgQkÏóøÙÒ’ÿ=Õi_ZI¬‰¢7æéœìÎ4È€šòÝ‘|ðþý/ïÃ÷ßýú èôá4~öþ½Û©DUÿ$Ì´³pùÿ‰ßOTp ÷‡ósˆ˜@…xuié4Æÿý‚ÿAhߪ\]=/üÓL¤*^,Pë‡þÀÙAƒãàª=AkCËp…ý»®·ÁyFÓàmÁmÈzQ‡W¡fÊöEê„ )ql––üî>E_Yæ¸ à»6 –ì œ™°A~O´?ûCÜ_žúó µ˜xöàs¹ Ãor¸_~Ð(&{½Ü€½gkƒ8Y Ãó™YübÓig{˜Uìa²ØA:Í`f±ƒ¬bn±å_zõÝË_‹ù…üò·Vîg»ªr'`iÉÛÞÐÝ«XPx:Ž:2Êë†r¸Éª\¼&ìI×ß`ü¢gáŠWͳáSÙàyGV±h ùEW瞟*çÃå\}8GQŒj€åwqõ…È ^` +¦D®´ØKÇúcO•œü]G]'<ºé°ÁÝ$¨íâEø 6êïo¾Ñ[ç‡Êd´Þ´›u¸O«­C Ã>ëö1oÇ¢®¦Æê»bXî†åËðÑÖ–›R\=2»©Xú•¨qÐlU÷ö]›Rè+lD1€Õ;ŒQ[Jß„ˆi›·Õ¬ïC)Y!éNpt\÷Ÿá¦ö^Hž“ƒd®ÄÌç¿"g7×€t^/èÅ‹àbOÜ×øüBC_Éjb,æö£¢ÿü¸hlzø=3áí­Íb"씟o½h=l,t*2•Ÿi#Qùfây‹t Þ«‡Åyí^ä ÷¶[Ç'õNŸÖÃ8ö ×*"•a#åÐýÂ3~HeØL;ê¾ð¬R9¶ÒÞ—mzá9Ǥ yfzÖd5vNIæ—¤˜SÒãY%‘_ŽSJÞl‡)?ŸYdÌȓە1CëkyEäµz}=Ë•ò–]_߸uµ›¡ øqËê¶n7P%< .W/Rn» •ƒkp&@ÅW–û8ÌÀ‹˜]ÖÂ}Ï]¨¸ä'_3ªacmæ°2ÈÃ×–½žÚõG_5Y¥çî„?^ôæ×ŒnÆ!±±5{t åàkË~˜Ýͯ‚¬ÒÝÍèfý8{ts¯Ûí0í?'Ë“Ü,k´Ò÷óZ˜òŸ‘z}nêÙ­ÛÌ# 2ógѹEf s°™K`$§1s.z+dæ~t»ùß|œ®Ü[4ĶoM‚m>É¢\âfkm1êÆÍ²>(Ýä·»-\)®Cëœä[aÚ¡vN–‡™5H\vÃÖ£Û51±2­’笆­äjHdÉ"È“«ÁdÉœ§‡¸&³’¯‡™*÷YY6ÂÿSÍ<þϵ½pÆóUu¯éèf˜g‰13ÛÖÜ©Kçy˜'žŠÈ¥Tk¬“ÞgÜÂ×é’CÖR™üؾÜj#(k*ynÄÜï²Ò9ásSŸ5’]NîÁ„QqvæI<=ïŒó3‹NæÿÆ#´×Ê+€/äd”ß¼tò7Q‘v‘$WFugF6cÄ‹dË|ðªñúä¸ÞÞ­ÕvëµF½)r ;—E2Ëisô*Oëv´†y­²B¿]*úÈ> ;i}îº,È åZ$š7‰ØrŽØÅi6‹+¹ÃmkB¡Ñ©ýð j•ÓéšøÝ•Áèå©v´ñ¼Žüœò2¸ü :‹8-±ëÒG`çYýùq$%±ßâœË„®…Ä‘’ºm¼z^¬>¯:Òj¥y—œŠÑ\–ÝÊÑHOä Gaie·Þl¡¦niå´?Ä.ü·"¼%KØ’_v†ëÙéáËfFXRÙéqie¤w•2r9òèDF÷ËÒ=.¦¤{võKÁŒÕGWVydOéÅð̺teŽŸÿ±´äT¼úù³£ò¤\ÜUSµ¬ã+_ËÅš¹T   W@iÚP=ü.;×gk^GHõIi: b¸ÀP¬þòkåhÿû÷>ÿºúþþ¼ #“*Z %ÿCV "À ©Míˆ<%…™í MjdÜ’ £E/ÖtGŠOç×zõR¿yNÂDÍáç§…åp5¬†ôñO@àgÈU0,bo‡Ô˱¾|jƉJ⥮„]j6¤ kòšÀ d¦£P,x B‹õŠnU±’³«€/ ².êRx½TM®;žÕýöOíê±Ùá¡ýß¾s_¤?57ò¢bi†P(›¿„K/žÚ4HqÌEΕUÉ•íx>L3år)b |°ÊQƒÙŒüYˆDB*S¾°Å;—Wf<€›B?I w'Eýxë›yN_þ­^k)jàœÔåtÓ—V°¼¯Éä‹e™Y6áÕÞzJ)×í¦ÔÅê]dJoKìÌ©yá‰ÂÔ_;Q‰š™(7˰ó[ÏÒm§èÎçg{‘é¹ÅÜ|õÄÜvVœ)1ß9 Hƈ&R$ÆÐŽ_*„®3¶6‚®óÎDˆK¿»HdOÎÍød‚æzù$f®÷JâåzïL¬\'·*×¾Õ0¹Î"×]N~„\ûÁ‹Žû÷ÞÇõ{½À¸ß%¾e c:&n"“×ÿà…Ãu2yÑpÝ× ÷»ÄK „›|m‚à:l \ûÎë$M„¿u>$Cß:™¼È·Îk/T˜›Þzë~Ѐ·nj7Þmⵉuë¤ÏFsë>_%ûŒpë|Ñè¶Nj7¸­}kÛâ¶þ+êNb"Š\€ÞæåŒ==i%™iuÏK&ëu±dºåMMœ›XDtóRÑA1?s’Ù³dNB>^æ%âgN*ïš“Ö=Iæ$uŽ‚¹)è°sZ,”r¸À¤è2'™ž1s’ygΜ´ÎQ3/¥9}æ%tO£¹iñ€š—ÈX‹¤¤3lNÂÅÖss’؃kNÂkÝêyzÐÙb $&ŽÌñWôNÃY§¡@7§ÞìàÔyuo¤È¯DÊ쯢²˜YW‘¹ëÁÄaŸ“w=˜´ÓŸÓÜõ@ñ_b8†û–øéDý{ƒCƒoî 6q&ógµš¨ŒöÛ’ÈD<óŸËe$ˆžÁVþ€ê§ÚÞ®t=Q§˜f%›µk‚M#ê‰>•GáÒ‹WÐå§8üÃ(’‘ïf‘Ð^ÈíÿÐÿ!¡ÿCBÿ¿€„ÞL^´Í$¡Ý´3Hh/Y>¡–‘l ™:„öç‘ЉTy$t"Y í&›IB» sIh/Q. í¦šGB»içÐnÒÙ$´ŸrÏ&¡Ó)óHh7å ÚM6ƒ„v“Í#¡Ý´³Ih/å,ÚK8‡„öÓæÐ^¢™$t*e í&\l=äÐn’™$´›0›„v„Î ²%ŒÝôIè­Y§a> ­õ&ÉÚÙuo¥È¯<ÚûšCBûiRa¯ï•´uÃ(ç¶^4îù¤mþÌÎ'm·çQ¶Ûÿ!lÿCØþ‡°ýaû0y”o/N×n·!kÝTù´S:Õ ¢6+qMë¥Í#iýDy­Ÿ* uRͤgt¹ä¬›&—šuÍ#f¤shY'ålRÖK8¿«³ ÙTÂ<:ÖI8ƒŒuRÍ bTóˆX'élÖM8‹„uÓÍ¡`½¤9¬›f&ýšL˜G¾:éZ9Ä«“b&íê¤Ë&]·ÓôÍö,âñ¡O¸>šqÚåÓ­ÛÙdëÌŠ%)«<¢Õý˜C³zIÅ.F±f«LJÎ¥XZtÛ¥V){ÁºíÑ«3‰Õ¼¹Ì%U32›œlÜ›¢`þ‰=k²äÑ´lß×hSŽg¡‘‘É_ëš­ìÔ oV±þÊI&(fä½_†ÆT›æir~õJ1%䮜k½†…vÊe^4…™ìù‰23&=/ówZãŸÜriÖ³¿¦r9±zñ—; ɘÑéQpG§íâ…dtÛ¤þ.]d9QC²Ûå:ÝN~ån¹;U‹øîzy6ÜÖçfS×!¯¶”ç@¢¡‰SÈŸÙÜ(fŒ™ŸÄ`ÇGçü<~ŸÒÁ©ïãHÔ™%ÓÀ³w;–ð®TãäZ¹ÜÅz{[>GǷàK}Ÿi¶7«4»Š³üq¨oò7ÍRË^­‹Oºµ‰ÕlVâbåYW3rX¿mîŒmfùý­s¯Ú[,u(ï¶Œ¥¾¹q—KÝ‘¦ë™¹Ô77n³Ô½Ò²–ºMðÇq7¼%°õ‡–º›ní×-u-Ï.uZ¸mîŒmeùÿÆR‡jïh©oßåJßÎ[èÛ³×ùöm–ùöœU¾ýÇùvÎø‡Öøvæßþʾ\àÛ‹¯ïíüåý0c¬ÿ7V÷ö[Üèßœ»ªñc.i³/Ä=šäe[tbÙ& ³ëÕý°0ü™7[fÌsçz=“ƒ·Mˤ™%ä MvÚìµ:7ç#w ¿½|ÅÖ•#[É'œÝ%h½›gË3|/s9:Eeœ¡ök9Yjb%f–c×cúsþqÒæ xC)g¢}AP²Ðû;sœJ¿òÈ¡bòfÇÎKÖŒäÎEÖ,øx=Þyœ{3ÙÒÚÎ>“ûØê0ˆWÉDOŠYe=v«¾§MëMâm7mÌIøÌ@ÖºhRiHäÙ ø%‰mð‘cû{”° >j§>¦í‚È,˜ñÍ4 Þáò_לBà)Q¾ÉH®¿xî½XrÒ½‘=2ÕÝqíž;I»çŽg÷Üɳ{î°Ýó ûHhÂÆAmïd—–o¹Q¡mЇöž2ðY‚^t…5ª¸ù¦¾GëÎÅÀ‘”}sµÇ£nGWìœý,ÔŸ¼HäÒõ"Ùèˆ&rDáønï®{d”. •’ãKzËR-"Ó$ßÓB Íæ¨sn“‰ÕØ·È!*Ô[çPõöWd$ÅØmò‘ÚûVH~«¤_<‡U/ž‡Õä·HÏ*óÅ3xêóų¹ªôÅs9jõÛdºÝ9êöÛfÞn ¨~ñª’_<‡§ž_<›£ª¿E&£¶¿EW…›l¨Î¿Ez«Ú¿e&Ró/žçÖËÕÿ‹§¶¦‹ç¹^äôË5Î_<ÛÂ×G–qÿ-r,tlÌ0ùÿŠŒ·À…®,Ÿ€[åXàúÈöX<Ï"×G†ÿÀânq}äy,žkáë#íkpËô‹\9‹gZìúÈòKX<Ç-®o…[dZðúÈõa¸M¶ù×GŽgÃ-3-p}dø;,žaþõ‘í±xž…®<Ø…s-|ydXÐ.ža¡##ß®ööùn7t ݆··É°À­‘iŽ»p–E‘îÂéoqcä˜î.œiáû"eÐ{»ä‹ÜÙf¾ çYì®È0þ]8Ã-nŠl“àÅó,xOä ß"×ü["Û|øvy¸#ÒFÅ §ŸCdš/œe¡û!Ër33‡;ÚËÜ$yfr¹9æØ&-/ÓÐc|YŠóÜl Menº:¥Ü< MÇшŪÃg!ü§|Ô÷{uÇÖj(‹Ý­¿jÊ¿ž|ß¹¿«ûíÚÑ‘'Ø7ü5©¹ öZnuw§ws>ÑJ«^¸]P5VºÔXh¢×j É:¼HNKÖáƒ'ЇBS}HCâvTªè,ß^w“Õs«ÚËUÚÈØHSµ{»©ñWYI²Æ>%F ŠO¤¢q½.¾ ô¨tlATËù©“I}ý˜‡]““ÛMÉÊHàçÞž“y{FÞ¤€QƳ-]“Ù²ŒWs ªò3ogåu­LLž´ÞßÍâ½ç¨ î*º-ˆ­£Ÿ½ PêbÙród¯¡ÜTiž¬T)oæ¬D™."NÂì•’*Óþ>™*×ö9?aÂr4?áöÌt)¦d‚_n–fëv†H +28Ó¡5NÅ“£Ýj Cʾ:„âŽ-Zýðópôùà°(qÙz Q¦Ëe‰¸R ÿºÚ‹>®§ƒA¸ñ×?»AÍ A‹~sxH4ˆä‡ÍààøðÕ+x=Î΂ýêï:Y AßÀŽÒ¾ „%1#$¯„' ðÅ6d‰9Å’_hdá<Ž:½ƒÅ“pt 7UŽ£«Î¸3‰z!ñ1‡!š\DðF¦3îÁì\M'% fÔö¨Ó½Àb Ýe8v£RøIÂ&õ¦Wƒ~ŠŒ+aØÀ¬!pbÑ8ìÇPăáhò ‰€úõ* ¥þïiÿì¦M51Z0ÁÖãL*týp4Œ.¯&7!Ç3úïa]"ˆü‚ȯ?uS­k*†“GüzýZTxù>.=*CÁåû„{Ž—¡¹Ù&Œ1~ Žˆ^<šŽ»0ý8¤¦GÐÓÖEŸ^ #øwÆ7áiÔíLã.ªœWJ<¨ËHò„}xÙ?¿˜@Ú0¾èŒa:—£áyhÎëà)¬ï÷ÔbJÂ7SpÆ1¤‚ñë3˜XÓäŠÁÁÀ><[æî~..óÆá=û'VÖOD-0Úž`êû…§Ø±a( `ü"غòh‚OЇ³¾ K~–›ÈŸüâ?‘ä:®×NŽ›ŸêíVõøu,`ºqwt…lÑ¿¼-&7íîh0ÇíÞôòòF:zy>|ézÏÂó1üàãé` ÿŸ?ƒÅÝ{Æ¡3 ³Ó)?Ž¥† è/ƒ–¨N¢<è¨Þ1­y¸wxܦpÕÅ”ðn8’qâAL×*çÖ`^AÁ§ÎM<³0Š Ÿ*m©U?Þ/„‚2 á§ø/qÊÞ,ö,]¬|P­ei)‘4¤@ó^a8%Ëÿ¿_Öžn®_.ëSÄ/7ìKœ2x¹î½Ä)ä—[öåå¹f褄yÆ”ö N:¼ÑÜú/4ݲ Úc Mò_Âï~}°#ïvè‰RF§_‡p„M/.ÊŸ¼°zqkƒÑ¹—?ÃÝV–2à³äý>¬†Àâ5E¡ãJáyÿ#Œf'ã ׊&£¹Çp8ãàC)‰ã\Ž;<“0¡æ!Ï…¨ëà©7£i•áF‡2¦WP\bÞÉà*â^K#Âc¨3¯§8ïùÊ3¾øtçßÊʸ ïVΣ …þ£ÿü%\#=,T&ã¸P,qÑ®ix‘ßCcG:äþ‹ýæ×4^á¶td(]óÇ«S[¹æÅË€Õu>¸¯¾˜ßtÞa=TÇÿ„«|PØ%Uüexðë/‡£_WóÛù*¾ùù×_¢ú¯¿ÄÍY•çÖñÅìï)U Ñ/ÒÚî`mqg-ã=7í¹åo¶¬(…<´–y+…²M‰ ù°uDÉP,7ºûx sNg:KÚ|6v1B ¦@‡®\Æç8<Ž<ú²ÂþJ ˜ù`é!\u ˆÂ¿þyC‚°D×ý oƒ/nÉcØDqD¿W.€^‹ÆÉ*ø-2€Ñz†ÿ=Ÿ\hrqHÚiýð/”=ƒÿý®{S—ø3i•>¿¾´q\{úð²û8}(·ÂñÉAáÛîs™u(¿‡G䩯À7‰•¨ù{%óD/ÎØ*ñôt¥0+o¡àXMñi:+êKKù©2‡ÓÝê ȼmøúGAæÜšCÈ9Ò ÓSå.ጞvxjœ>/²<ø ö—‡?19Kd‘5bN%ÍÃ[Íò/ö§Ý&…Ä }Å!x ƒ3žv'S¤ý[Ñ5ÜÈýÉ â “‰•€g÷+ ÿ ÿ[}zñžWŸ­ž?½zz ¿CXY««ðpN1 ºªiŽÀ"Äáú‡¬].ÑGÆuŽàh‡“q§×Ç™ƒ7œ*ì_^ ¢K`7(mŒ¼ÌU'ŽÃB9*àhªÉ3wtØl¼ 7ÖÖ¶ÃÏòq”ý˜BÞö‘|;²b4…´ý ”uzƒ±s¿Áó² C4ñÞïš 8&'ѹü°€q~ˆ Eœèþd9†¦Oxâ‹vdljˆ¡ŒŒËƒèA1ä|OŸ²@àûp7:ëàB<t€×ž𲠫¥7î£XA®¸œFÃ6¿kszæ,Êe¢pËLçRDoARECäÜÊÀ×õʤR6‰ùK¿°²Ùæ¹¾‚ÝSÆõŠ\§¦§·my[€~´ˆ0ëÆò4‚3Ÿo=½Tbê`’®$ ktÃÅrs_…Ž€SÅû‚ø[Øú}” D=`Íð _‘Í&¥%˜Äd‚PwßéS%Kg%J6‰'¦B~ƒeJÙPbý:êN&À2W7.‡Ì¶öx"x:û!¾§]?ø©q|x°_?hÁ½v†A•yÅÉr„òR ±ù0÷PŒö5½ü4F§’1QPÀ'Œé ƒeÚ²F7W8ôêuûD‹ì¾n‹Òçzˆ1ž'ËØÚ¢,"À®Æ->’íB->ýÿôC" ¤zº˜×E'­å>M!Ìb?3¼6¬õkŠ€ÍÏO)mŒÂÒ‹LÊw’1 `PH,v„%H”ÅÊ*&3±&5¬ Åq|úÈ™lØ]R"E‡üNËgÆóš—ðˆ‚Ì= ¯ •®cƳ§+œ?SéŸQ2°ÿãnã¸}Tô¿Ã'"––ž?Å\Q4{éL…Ô®Uîºe‚Ybá%z* Ç[ŸmŒÉÕ ,¤+ñäÅɃìOq-?[^z±Ìývš1 ——VvM„i¿©ï¶ëÇLJÇM®`•<êÙ'‰lk¾³³”“žkNƒœ¬ÉÀS cøîUµ±'¢ƒP'ž¦ý—÷áûï~…¾ð0ÛæwR>èeš>„¨ú§¦Ä¢ÓÞÌäÐ;k\$¶¹$åHm_d¦^×_D°c ïÀו}FV·2 ')û8:f"‚ÛÅræ~G—£°ÞWú•¨R ñÞúØÁ ƒ›RvÙ¸b–zÒ…Ëxµ/§ -’t9f"àŽ;XWŸîŽÊù ¬å%Œd/«Pñb4Ä«ލIu¸ŽÆ}ŒˆÍ¡1¢ËµátjâÉ×éAÃñpƒû 3Žà ŒQîxÁU 9cºØÇxD >â+–QxØ© ìÐ3 h‘Í껑„®'‰%É6Q ¾äñ¥ ÑÐÍOã>ñxÞÆÓ³³þux¬˜g¤‚ÄH…A< —IRkzßËtÞ•%{%¾X¦nq ¦Ê0*ý.¾—{?šÈ²¡á’»™~£|ÓôB›üÅ•kÒŽ•D”NX µÞã IGŸ[ˆ¤§'XRCN­z»y²¿_=þÙÆô^¦XZ9ªÖ~¬¾†­ãÆÁëârp\¯½©×~¤F«i›ÐO.^ÀW…xÚ'`¿sþ^ת4‡¤¤xÁaŠ_‹žƒxMí7~’°â™ŽiT&Ó7s­±Þ¹æÔ³^Y5¹y0“qêªyðx´jºg”~–ïœï&Íé3üðÔçˆè=9›?=ÌáùâhŽôƒW6‘ƒt¡"w‚{yÝÌAsç\ô¿oݩͲ££N;…3™YL§ßØ¡ÉÉH|«¹2™Ü K¾ÔY3ï]“‡ÄKÖB51dÞ?<ÈÐy9¢|Ô‰ Ø¤BÓ÷ý`œ­)ú<~ÎøF¡èó³nççÔõ©ÌüY,O)¯;rhD$ß.LÖd*‚¿WOZoàÊ®\öÂÚáÑϰWÃÚEgxí% ™ÍVuo/<¨¿m†Ç°Ë÷ëÀÓ”¡™¡šíHuçS<öä˜Ì­Þ¢ªÍŒ/ÂÁä¨h8Øàd™ÿq&§…”y4)Î$õÑUýÕß¡N•~ò<®²²6À¹T}§œCÅòÒ ¬8<>Ї›F~E4Ž×˜óÝ•øgÒ` ÂîÅå¨Nøþþ%\~ºl¶­Ä%ŸùEégŠ¢è*|˜“ÖD2&*oÉ:FP‘`"Ñ;•¡º¯Åˆ¢z\{Û´éQeÒWÎK¾9ýmÃ}õ[ÿ*xý÷Æ’3èX\>ÅSšJµ*.L]>…¤üó~ò/Ìþ=pO}$jFÃÁHæ…èÁ˜/äÜÊcœ^«Ö«àí„Õð]³ûSCêÃê>öie˜HÖ̵ ´U5†4…™·3˜5”}Oö¹ëy øP6,Æ?ÞWV?/­»ÄBqõ3ñh™–?"Aö¤FÒt™ÚÜDá¢í­ÖökÕ=¼%å'vµ(0í úA†^ÆV«~üò°ÙhýÌŸÓï!5gÅ|tùV›ðë¤uX;9®·Mr?B¾½=´ì£TüÞ5Þ?i5ø¥ü†·'ûG/ô’¾€À:lÓò/ys`Þhš–yÓ‚7¯ë4Rôžu ê<|å;$WÀGí^㥱+BN”ó1•1¾róÙ©|Û3²mçæ"aÝŒœÞ÷Á+•W<*x'Õöwé ÿ|vˆ]xΣ~{÷.ñU^Èw¨Ü~Ãx_?xÓÚ§É–ŸðNšÂ-ySý©Þþ©Ñl¼lìɦM¼zè¥ ßä§y×kžî³ýzt|øú¸ºï&W6 ão¸Iø“ˆþ£¬²¼/‚=è8~Æቆwo™q33ãóòïôŠ~ћ×kÊ+üIïHÙkÔå½>Ò7MÌ)u¯ÉOz÷wyñwzÂeôÈ;y©øíè_ÂÓA›K†á©å¶¬eÛÄËÏMœècd™ˆ}¤©×/‚ýj〆˜~àóu¤uøÿÆ·WHÜjO¼ðÅJô…¾hBöñW}·Ñâ'üõ"€vâi‚¯ä'½“ýÏ¿àÖvȵÐ?¶Ì›G[/!»ðü4ïÚ/Op%·œ¯ö¥MwPÝw  gû•K÷;¿±)à¢K!¯lš“ã=÷;<ÚoB/ºß妛 Y?ªW[‡ÇœÄ})ðXáS…J“x'©pÖÍwzÒ/ûÕ¿IñöÑ|kxßðQ¿×ë{õjÓ)×¾ÓT°)[Z¢}Þ[Hùãk¹¨(…yr¿àâ•+0õÒK§k>ñ Ò´ÞàFe»üöÉùbŽÿ“âÝ;ïó»wö›î}÷ùEp\=€øž½šu:„àüÝj+Å¢¿á-ò«ô à³nþoð£øãEðSuï5¬L· ‰WNm¨÷¾ÛµhÖ =ñÝ’“/!Ïîå—xõ"èœÆè¸Ïü•ùGýÆOüÅ Òïî;›Ê/þÝvwÒf:Së[^ú[ß:÷‚qŽÄ¢”¾ÚGþ´4ÊÛ½ÑD¿;¯8Í¿§£‰ÉM/Ä(u¬oáç ±çtÞÒ¼¿n_M.Pû*>¢ô=ùòEpÚʈð/xƒ£F/ð‡<·;ƒ~'6oùQ¿u¯¦ö <èû‘“adRŒ†½ÑØ~ágùªm13‡ŽŽòR~ò»ñh4qÞË#|é ó/xó±¯oè׋@„ûj¯i67Ri67i¶SI¶!°Úmæ³è³}|\;Œ/ñ_~²ƒlŸä‹ ±þ–·#›x¤)íð:ðmr9aŸ/Y”òÚ>ábù5ýÄwÄZ¶ã ~­O/0"‚$æ_ôûjßÊ|u;­Ò<È{(râ}Ó/6Çü Þ|€ÚWôоFÐ1¯SÞ‹ÁUïL>ð/xc&GçE }Û“qgŸÆ—m2Ø£Y_ G¬…ÆTæx:t{â<¾b»ábÝqlŠìfñ߼칥çU|ãÖ·æéE›á’­tˆÐ…R^(RçÌ´p Ž'ö’›Ê…ꘕ‡èãi «å2ºó'ÖD÷œ™šÖýÐîÄqÿ|¸@Â9«Ã&œ¹.Œ‘ùIæ5«‡<õ íƒDÒÙýôÏo ¯¾… uR¶ÑèT…E²Ílb§Ì.=1g^:‚=ÉKdKÚ½o•FÃÎì¨M†{nÐÓhÜÑÕ–¿àÈ!Îß¡ø]®åÙi`›wº0<ónZJ,÷L͸ӳÅrŒ£î”ÜYÛçÓθ73O/–¹=è_ög7­¯ÛQÜí\Í\I'¾£Ù#†çô5ó^$ݵ³Hi$zmögX8ß‚É?vƃÑèÃitÞÌÔ£³3üg~ëq~/gÝ@˜HA‹f¥‘†1$©Ö.•Û¤åÛÍ9àÞF{î™ù, ÐB›ÄK/Ç¢ ÍLB€GDëžÞ c{‹ÔtL,~öÑc’áѳp$ñ¢Mà¼xñ6ýÂ5 ¿´`O)-ô`¤Ø^:ÛpÈäßhN>¼éœÕÙÎU?ïñüyç¬;k7/ýœd>+—•Êcá2(ë–õQY¶¬oiV-+U’E›&Íše¥Ï`Éæ&‹g¤µ,Xæ§ë5?s#ùé²·j‹57Ѽª|–j‘tsK4,Ôœ4È:å'I°L3&Y¥DRd‘¯˜5J¼Ì™a…Ro3Osb}ïˆåI×ÿJ/uaqo k“x¯,Mêuæý¥,Lò5±.‰—²$ßV%ùY”Ä[bM}V–d3Ð)û" ÷ú§“ÑhT.´Ôãt–ƒ°Óc§stït C …6™FW3ÂÇ'u¹ÉPñ[é zëëÅÀqM–¸õ¨°½2dD• mh:?ÿÃ"ö¹Ú3˜l„ýêEƒh‚îÐ #’rz¹$OÆ|Y1åø=zÁ ?y4fmör%lLÂÉt<ŒC–#çCòAþ¾_Ùà†1já´?”±Ç<pœˆ#ÎtLPáE'¬˜Ôs&®óN ( ÓœFÑ0ì’¼W"J[úeç&DßJt@ذ°û¸ãn¤QP2,‰1ùæ³3&!Ùh¾¯àêàâ@8±ÿÂøb4ôxìнs6!§õè2Ž£¸žÂ ük IûCrªc?T¨|4\ž”x‘‘ûú§Ñ˜iÌ‘yUûfZ9,&iBKT“³=hÉò6.¹Ä»õGÉT›¡9FBu~ÏLè’-C“ñÿè'Û5ÐïM~ yéÉý¿«îÃKz˜ŒoØátÒÙ¼ðìZh’— ¥.¯Ö½':ã4#g>PsðÑsèø%œÍþ'a€±Yd;fø_ý8•‘Eb=û]¿0y™·åN§ÃÞ b?\ÆiÀ›V¤+‘›-°Î)ü ?1ò¦«Â²Åó QØ@19xƒUäL‹#©Gpei.·`tÇ#3 y?,w6?·ÚðѰƒžÅÈ)Œ/yã™äXšàÄJVt¥¥‹—3uöeç·hÂë¿÷ÏÎ ƒòÓ~3Ù4n?®ÉPFÉé[f††PgÄvØŒ59•+ÌÄ)LØYŸp«®¢ÑNÎňқfu1 ÃpЇ†…Ðdp ;5Џ®wLzûT° (Ù½CRºÍ@°ŒTÆO×tH.Ú³dQ#Ë6)ù­_EÝþY½Ê¤%k´Ôëq ‡ÛGF 鄊ÝeñBø¸jÀéïÕGôL˺XïÕx„ š|ów‰çÞ©7öÔ(RfV¼]ÞÜ(§'I?n—3‡?ä ~ˬ*=72 k™S³ŽÒœë(7Ìú°1#ÓF^¦¼ž¬o•“»Í|ØÌjø¶™'½ŸåCvée/²KÏÜä¾–·¹ #§Ëù]†o™ÚÈØÌõ±‘7BÉsAÞæPòd·y#„gCN§éSn·é«S×ÇÎà| XU](”óò}Bi¦¹Ü’¯õ„¹ŠÆ|F¼/W AZ6|8`hñÍ¥ÿjý½“œ.ªZ*)kÂ$uU,«âÚW®¡OdY<üít¬Þëüv…^Ù|ø 9ßøƒglG¯b?“4®†²«ŸDt•(˜œÄQó&žD—u…ÎŒ3Ó½íŒl¸×)>/'±’¢2ׯ o5Ä©ÛCÀ,ötEÃ(¢cÄ|‘Ç}"µœQÓ½ÂÞˆT;Ž\OdT[Í‘}PØC¶Cl`‚WQVX ²£9ùâþ`ÆW±ÃäÆs|!lz;\xÓ :Í;ê:wR‚o­7íã:‰õÚµ7Õã¢Ó6Û­ã“ú _ßãD‰³â1È´`­ÌD® -88L„œËIÇ8vN:T­Ú´^înâ£ÎN½7rãì÷Ùï5ýšbZg¼'ýzò½5hL~á@Ô©·o:ùÚ +üØw……‰.³‡&̉O$‡‡ Ãõ›ý1g°…_nÎË~ÜÍý÷/{™ó½d•ÙãçĦÎþ4Ìš'µJ¾×€ÒÉ÷žµ[ê#"ÐÁÿgvȉÌ{"&ï‹ :ý>§ÞZsŸÌO¾9ù%g¤1sú]zõÀ;9U²zŽ­O½´¡›“H„æn 療›Ñ!–Ý‘Ž“ŒÄÆË?xŠ™…Î ':«lÿðË.Û/Ô@Õ”w9Uíp·Þ>9h´Úo»­7϶³kûni%…mCÁm `17£ ×ÕPçgqRmç÷j¯ñ²º‹ÐA^ÒõG‰´^pÏÔ¸jò¹“¦ gÆŸYüÌyËi¶™¹œr¿Ë›Qba2sÜzNœy“úhF'Ù“â"}Ξ×ÍDb/kjà5ùÜyÕ„3#Ï,~æ¼æ4;o^5yî¼'‘™ãÖóêäÌ›×Ç3ò¸v`kÅE:=±Ù{Ûàf)Ìpor±Å”_ÅÉ\¬õù%YäÌÙÇV2ìošï.–?oùlÏY=yç|%/Ì\N·=ì×7ƒë¡„.Zœ®4‡Ñt²ò[Ó¬9!ÔÌ)±Ùj¶á¹£°•Ùl[ÆÞ.·–âÌÿcê"ÞfÑoÿ"çúC­ëÕÉßÿÞnž!À£qdu™kºîãéÜ~=k‰NnlåWœÑêEâu{|“ÂLɯ)söî¬ôä·P‰¾q£®}7£‘*=}”,T1ÍVõ`·ºwxP¿eVo§Ü6«»^·o5U©®ë¶»e²÷ä×´ÿÉbí׫mÆZƒ$wµm­-ûà˧Gï´òÛí,-5±àõÝYºüÛî.‡®¿õöʦÓo]ï\~báV¸·ÃÆí–zz$o¹YM3\¹öÂÛ5§›‹uB È‹’ÜÕ~]´¶Ûí×Í;­üvûUKM¬x}·C–.ÿ¶ûÕá×n½_³ù¯[×;—O\¸îRt»¥žÉ[îWÓ Wá´ð~ÍéÄã|º›YT“å2côuù·2°Ç(K.¡eƒ±ÈbfþÖh¹zu¤ÉÜ(úÑô)/ó<ͦá3ò ±L›mîp“ÑŸµÍ¤ãÙæÖü<°\©ú¼¾s·ýg–;ùèöV’íÙZwkö9‚ìÎãä‹í´gÝæ“d=ä ÷6â8 •«®cçõá\”qìOP à ¿ÐˆC S\\5lÅ8õëK¶rk;ùâ µ ù¸:€ÿ„è¦ÿÁx¿ç‹äþð<øRÕR¯Céwè»fÛ‘²a'Y«>ÅÛ™e'Fî‹P£ù;Wê8Ô7¶×ÈÉ:Žâh²ÃÚÏß"ö3rrÌúhˆûŸ“›%»6îmªáÉŒäoçgçXPœÝ*{A¡qà¡B4ø®Iˆz(ô€‰géñcF}]°^¢©ˆ*¥ä©ÊÄÕŠ=ÃÎÄ'£ ’+*çÝᨘj‡ŽþŽÃÚôšOÊj­ÍŒ5$1"9(˜  ð£~LQ'0"‡„¢°ÉòÓ§’ºÁËrsž´ŽNZíW"Ï+®XÖæVpéÍ-…£9ä’ŸC¹´Yj¦'X~b q3/½ÖÚþ÷´M¨]þ«6ŒO1=4‰DÙ³"^Í/k XeúÀ²Ù’=s"ž¡hv"q ñ§œá¯s•æÉ«WwõæŽó3„‹¡2áÿÎà ü;:ýǸäÿ¢D£0CŒ¸t.˰yÏàØ¸Ø 5RaðÝ‹ 3€áŽÄ“!‡Ì6ÆÔÍAFêÎe(g¬ñ}B$ŽzöÏyøMqEŸSHQ¸3L¨Ë¬Lýò; R¹´ï(TåwÃ’‚]†Ýžm·ƒ‘@sà ÊèVÜ?R|SÉ'UõŠ äÃ\ßa”xŒ¨¼æB/ÖŸÊ׋&ë£aD?ÜÆ9ó+Ò!ä–ºmLd§ g—蜔\¨‚ÃÕ ±ë§1L•ÌÉs;¼$v¤Ÿ&"gÅ/ËŽ{^ ÂT‘fèL3y𲋠—^ÈÄ^vnN"ïY\FLÏ6änËåæÓüÁÌaÝIÄÜ4kLŠjƒ1tNšp²Õv뵆 9MÃ]L„„Öœ*zÆÖÍÜ£3·6²ˆ¡¨%ÀþVqNù.„h_nͯ€ -ÚŸm d¶®ä‘Æ02—Wå‹uXÃtü•Ïp?¦—g³“ä½^¦À}JN©ç‘¹À6ËjÔ-—§[e0³5·[ aðÝÊŒCˆW[ãÁ½÷]VO&£i÷Æ6°Á(˽ñNð]Ù&7žâ^^/ÔíÎìqÌ ƒ+ro=šK/WÚöUuk`ß?T9EþŠÊ5rðª\ƒEýNüá¯i‚k•¹xíží×UìØšÎ¯7?0ò×T­QŽOûC qØÄ& ¹ª>#õ„VÇûp,JTD|‡~XÇÝK 7Ÿkð@Ÿ80p”œî+™Ó,á{•ø;¹ x rü¿"Òg»ÀÀSÑ”¹\xªÄˆIWÈHGu ½„Îúü²ýd`cÌC‹®àåUÁDšGKnŽfn(YŠhΟ>] ˆîôPÞÕ:d:x†%Q3¡ΫunºôÚÔ uz¿M0dCÝÙæ”Dºz—*VK¥§Ã§ËJbà—øsåÁçÊgïÝÕÓk“>Ñ—§°j4BQ?.ÙïÚQƒƒ§øqéý°–Îå Ço„YzYÝ8gÆö—B¥ð+ÆåÁìÍózø…õ{Ø{¶´´ùGk…Rô~ ÿ Šð‰l2ÃB¯P {’¿ç妸Ö+KKá3`‘–¶ŠR+¥2? ¸Ž–Ö õE#jJ?ƒÒ¡aaSm•8é­¨ ì ,”•®‰‹ìdî•lU_ÒëCi÷Å‚Ýò667L4|/@“+²àñ™Ì<þ\¥f `^^F¿a^*·À¶]ò7O"*FµÃD•:CžŒ¤Î.—Ñîø™é2!7!sƒRËÍ. ï»IYgŒ¶KÈJëhÎyË Ší‹î1xrp!µôÙ?gžEÞ9†ºõ/`þcþ^6€ É _ÿIMIÈfÖ,CYWÉ<5°ûYÁÎ@‘'¿ÛË9˜5‹æ&Óƒ>xg5Ù4Їö½R‹ü"µœ9“QJ–KÍYtÎ2/Ž.Þ>6=Ê1JúÿöÀ“,$ïí¹’´Øâ6K9é¯!‡€¤t þvXà¢ÿÍ#Š’Éýã@´ ‰ãmÀϬ!¤mìÓ.͆œY¦|C(¦§Òd„3£¿é2Ùp/’94˜´. æöÓ¡Áœòïâð/:÷GëÆ ÅPÇbNÓï£ ™£B-øâ^7‰e7÷ÆùšU–»º˜áFW“«6±x¦LÇdËeMÜHgl2’µd5ÖR0Ë_Ôp»gGrl½£#ã4˜1'¸·GÝY7=mg÷žÇ?>#?ÿã—¬þú`i èù§aüyUé þ]GmA·ÌÏË^ ¨?+Oÿ™ÚïКÔv×ãõwüúEf$ãåâWyµ eŽb“"¯Us @ é‡ 3ÒJþÝúÎÑü’lZ¯ÌœüTúû·rÚòei…cÅwÂP|wÏ©¶‚UÎé ¥‘Nd¦¤#Òpšˆ²^EóŒû°#µm˜yI=ao¨¶ã·Ë•ݶÊù©Ý™Eà6§g&G÷í¼&@¢yÞíH±–ׯ¥Á>·%ó–$šx}‹%9k1mnÌ]Ldy¶ØQÒ[/¦Œ\w°˜°g /&jœńÞíH}íb¢®ÍYL÷½’æ.£EGæ+Ðݯž[,yëfÞ¢Y|\¾r¹ÈZ1…’G—¬Ïu0Úɺ§íR™uÕf¯Îÿß dñhÿf%+ÐÀ7¬€<¥¿Eù$Üÿ&\Â7)™î¾d Ùp÷e3èÃ7(—a#î¾`xâî‹w‘&î¾tSâ[þm–ˆƒkñ­ ~›-©Øw_²¢sÜ}ɾÇÝ|ƒÂ ŒÈ7(Û"ùÅ#”É7(ׂ¡|£Â NåîËþfÇBºÜ}©Íåî˾þfTލúêÂ=;›AGäûN].ižø’ͤÌLd÷Zmo·˜*q¯qð£8$¾Œá`»ÈhC~ë„U`Yi31ŒÄðí·ø»e¼’ï”ÐÈ(ùn€Ì îpkøåß!(ø€DÉwȸ%ß5à–}— €Wî]2nÁ߀p‹¿{À-ýοðo³DîœH~‡ €[øÝ2nÉw˸%À-þίð;f¼²ïžð‹¿;À+÷®€Táwȸe³cêî·Ô»fܲï”ðIË»dÈMÞc®,‹Äæ/s€¬D¹ €»¥þ’fæµn&°ýMéÿíö7"ÿÝ‚ï”ÊH|·ÄVùw¸+¼âïô÷˽CÊß/ø §à»¦û¢ï’ìw‹½Kªß)÷ýNéwOó;…ß9Éï•ýMÇü©²ïÞwʾ[rß)øn©}§ào@ì;¥ß9­ï–}Ǥ¾[ôÝSú^éwGè»ÅÞ5Ÿ,ûÉ|§èou2Ý‘ïz×4¾Sô’øõx—þv’ÀßΣ · ï3ÒäR÷ÛyÄýv6m?»a3){…îåÈ«?>vŠåŸ Îjªù8gsÒ厥ƒMœOó1=¦‹56kl•œ”•èØÐ}Ý úåÏZÿ“ÛÔÄ—ìA™ÈxúçÔŸqß…ÛD ]YC§Pfeÿñ®FRËËI¢–jµù2k$s%F2Ur$…ù»@óÖÅõü&Æž~-åõGé!ö°E“]ð>Îèéü±ÎlKæpû˜§îˆ/Þâùã¾¹qã¾¹1kÜ77fô>.4î©tyãî´eθ#veö¸Ïkñüqßž=ìà4±=Ýž5èÛ3z°½Ø'“åøö¢¾7Þ³›7Úˆ¨_6¿îhx±¨ô¸x²ôrÆHf|÷‡Ð«+sì8h€;hù-É&‹8ZN<ßÑÙÓçÀ&í|š1ˆ¹©ü¡ÌhC怺ð«î°.Öμ!¶ƒ{‡Ãš= ™Mœ7ˆs‡oþÀ¥‡,¿%‰ar $° ·Èã"¸-šôÿfØ–÷ ×hq4g8 ¦ñ¬`!{  †Ÿ±çäU¯õÞCfñ0X.žÎCfñÑÄQþ`Wž~+Ü•ßB^á|?ü0¤t –+k¸}Ù¹.Ùõ»l|•§!çD¬§¾BÁâµdÁ»ôk½æ1ÃÁö>«¼Wæ1Ï)÷>ë½Gæ1íÈ{ï5Þó˜ãü{ŸÕÞó˜å0|ŸuÞ+ó˜ãd|¯ÕÞó˜ë˜|¿ßó˜ãÌ|ïÕÞ ó˜á}ŸUÞó˜í4}ŸµÞó˜ç!|õÞ#ë˜á±|ŸUÞq–ïåü¿Qó}/ã{â3|¦ï·Ê{á3ý¬ï±ÒûáÓ¾Ù÷Xã½ò‹9þÜ÷Xí=r‹)ðû®ð~xÅl¿ñ{¬õ¾8Å _ó{¬ò^ùÄlÿôû¬õÞ¸Ä<Ÿö{­÷>xÄl?øû®õ^8Ä´ïü=Öxüa¦¿ý=VzOÜa–—ù7ªS‰L]/ß°’ìM//o–ÿ.½(O8®8rùR⛥A€ui©;av-APùÿ³÷æm[Ùâøç×Ñ_¡qy§¶Ù²•”ÎBRÞÈHg)­#ÛÔØ’Ç’¤íûÛ¿g»›,Û2Á!3À{Ó€¤»{î¹g?íF²áÑ,Oƒ4ƒ¶·yÙ&F® O[An¾ãyÕECWð ¾þýYúûI#Áªx‹ïžŒë{ûàõ›Ý½ª_}Œ]Ö_¿€ÿ½ÿ½ôdÄÆq?ñëm¿N£.|KÛ¡€ÓØüõ&ÝUÓËË­½#gÍi2´ÃÍÅ…ïý¤õkØÆè˜¿.ú@€³$énƉÏÝ=ßÚþÛÑÞÖÑ-Ñ?CiSƒ öe{~}ðbÿ€Qð«ô=y¾ô:Nàå_«6p ìx¯[¿Îe·[¿Îa¿ßA«¾z³uüCóïÂøÝâ»{¸.“0¢;—ãßzþ÷Ž??èÞ,\…éŒ6€m*€·Öì!g’¿hôE{öàêpY/v^É¿[o÷Ž›»ûÛ{o_p$·ý;´Û~óF×™µŸVrÛ´Ruiµ®¹`?5bÏ`ñugóN…F/ŽÙ‡EŠË$þÀ„W/¾»Î®QQ;ušnbéŸðx­ƒ;Rê4_s3þS.[½Ë¤KffÒ%-Ë.3HáV«m˜¾Õ¥6lfÒe­d†Ïo€t™…O']†÷¤ëÖI×ÍãóTÒ¥rƒR0õòž0]“ž©Ê“5kÈ Ø ·¨,R”ÛÓkÒ:{•³·º1Êg¥,4о§ƒ_œû(AŠçEïîI£Òµ)#µŸ…0ª'¢oOy¬(±×¦Šz…37ºAš¨Rž$ œï)âCç‰ù“È!%UËÓAzx§  €evÊG K‘<5DñŽó”Øê{5;uÓ«(ÿõMÐ3µè„L wOÁnŸ‚Ý,"O$V”q„ZÑÓ»M®0× WÔ²ÁRƒŒÙhÞ†2;]bîA³ôJføüF¨–Zx²%0¼§[_ݺi|žHº(¯ë颧w›t `®Aº¨e9Ò¥³Õ¼ e¶ºÄ†]ƒté•Ìðù.µð2¤K`xOº¾ÒuÓø<žt™üÐ.ñ2Ïï0ù²3+3mK0g ¢M·¶c궗ݺY ™»¢™|:1s0•œÙð¼'h·MÐæ†ÝãÉg wI?»ÃäLeVRÆíJ1=@Ñ& ø§np™mš•t™”þøÓI–^ðTr¥àvOªn›TÝ(O O\¯"GŸøá]&P ,3S(nX†Dé! wX¶`ú—Ù«™©”YEù¯o€NéEO'T z÷”êÖ)Õ #òxb唺qI–óꮈf%_NóD,?\aH±³5ÓcŠËïä¬dmdu³¶ùt—ÆTB—ƒð=¹»mr7”Oíš[.ý³ßÜaòçhVêg·.Aürƒ!‚³-Sñ ü&ÎJùò+›±É§Ó½ ¦’=¶÷Tï¶©Þœq}<ɳêý¹Ïzq‡ žžYéÕ¸¹s‡*Â{K¦"@éý›•ÖåV5[‹O§t.¦:ª÷tî¶éÜ<‘|‘µ{Þy›çuí¥m-Ae­@ó°oÎdÛ¼)»fy›æ½=óË¡V7ˆÁSÈ#. Qüâ®*žkQ+n\–d顯îºlI¹­/³×¢`fU³µ¸!Z¦PŽ )¨ÞSµ/‚ªÍ ɧ¹xÔñßzqç‰\|=÷«qi"Opš¶·¤äþ—Ø¿ë¹x†h«ÅM¹¸lL€Õ{"÷e¹ù ùx"‡Ý(ÎÔÓ;LÞ `f¥mªe Âf R´áz¦îv¹ ›•žÙ+™áóO§dÖ§’1Ã{vÛ4lø<žt%ƒÎÚ0;Í‘.õô“.˜YI—jY‚tYƒmµÞ†©[]nÃf%]öJføüÓI—µð©¤ËÀðžtÝ6éš>']ý ËÂAÜŒâÓ$G¿œWw˜ˆå@4+%sš— gùáŠpÀÝš©ˆ0ÃNÎJÝFV7k›O§sy`L%v9ßS¼Û¦xóGùñ0m¢~Ö ãù³^Üaâç€gVÒg5.AøÜ¡ŠpÀÞ’©Pzÿf%y¹UÍÖâÓÉ „©ÄÎê=©»mR7O$Ÿ@äÂAt£yíšy~—Iœœ™)œn[†ÀÙn½ÙŽé;_rëf¦nΊfjp´ÍÀtÒfÁóž²Ý:e›vO kÙ ŠÏšÃ,êæ]pWw™¸¹ š™¾ÙÍ˸Üp…xàlÍtT(¿“3Óºüêfms/ŒéDÏ…ð=Ý»uº7w”ŸD‡«ʇÏî4Éc ÌNë°])"'o5¿ÄOߦÙé™ZAéo‚‚É‚K.†Û=ͺ}šuƒ<< [ieÃlDî4/î2¡²Á33µ2Ë,g¨Â]·¶dúÖ—Ý¿™)˜»ªÙZÜ-s€0 ÙP½§j·NÕæˆäSˆòkE4Žžßu'À¹…£¶e œhìÖóv”Ûù[w-ê¦W4Sƒ¢m åH›Àóž²}”mØ=ž¬¶ßµ_; ½|0ûäßÒñ½s `Ÿ-xýÆ×gZ¿Xÿb¨ÖM#òxb5lwr” ŸÜa2Å™•Fa«J:/ÚTûÔ¾9³Ò%5ó’Ÿ~:E’…N%G «{ZtÛ´è†pv< út£Ns4 À<¿ÃäÈάDÉ´-AšœŠ6ÛÚŽ©[^vëf%VîŠfjðé„ËÀTòeÃóžˆÝ6›v'k—EU‚/ï|yàËëÖ¾,]ørb=Ô˲…PKíÕ¬ìr¦¢¿—7Uí÷²|™ßËûú¾_ ÕºiDžPbî<ê­¬w˜h9à™¹Öœi\¦Üœ3Ta….kK¦é*»3×sW5[‹¨>çaz:ª÷„í¶ Û<‘Ü%rëkfÔ`˜%Í~’¦á_æ¼úï t´ò2„nˆÊº±ÍÇ»IÃa‚»5Sqa†,Cò&®nÖ6ŸNöòÀ($| |Oúæ¾nåÇÀöùûN–§w˜ìÀÌJñTËÄΤøÆ“m(qݕٰY©›½’>¿ VN/|*930¼§d·MÉæ€ÏHWa”ÿ®â(×#]3F)jY†tM.Q¾@ÄÍB·’>¿‰è“‹ŸÃðžtÝ:éºy|žJºší³A2ìS0õòž0]“ž©Ê“5kÈ Ø ·¨,R”ÛÓkÒ:{•³·º1Êg¥,4о§ƒ_œû(A Œ¥î»{ÒØœÅt:¾ý,„q’ý)·=å±â†Ìª“W8s£¤‰m­“à|O¿Š8OÌŸDãÓ(%ï4°ÌNù¨a)’§†(ÞqÞ‚[]b¯f§nz忾 z¦]‚ ôî)ØíS°›Eä‰Ä*­¬¢žÞmr••¯©RÔ²ÁÊ&šÐÛPf§KlØ5hV6¥ˆJÑç7Bµ²IåSŠaxO·¾ºuÓø<‘t}¤‹žÞmÒ%€¹颖åH—dÌVó6”Ùêv Ò¥W2Ãç7BºÔÂË.á=éúH×MãóxÒÕ9 K ›çw˜|ÙÀ™•€™¶%H˜3PѦ[Û1uÛËnݬ„Ì]ÑL >˜9˜JÎlxÞ´Û&hsÃîñd- ’Aޤñ³;LÎPf%eÜ®Óm²€ê—Ù¦YI—YAé?déO%W n÷¤ê¶IÕbðòt™ ã(OŸøá]&P ,3S(nX†Dé! wX¶`ú—Ù«™©”YEù¯o€NéEO'T z÷”êÖ)Õ #òxbuÅfk´ß‡y—óꮈf%_NóD,?\¸[3fØÉYÉÚÈêfmóé$.Œ©„.á{rwÛänþ(?žþec"ì7w˜ü¹š•úÙ­K¿Ü`EˆàlËT<(¿‰³R¾üÊflòét/ˆ©dÏ…í=Õ»mª7g\OòzÅ¢ Ö‹;LððÌJï¬Æ%È;TØ[2Jï߬´.·ªÙZ|:¥s0•Ð9P½§s·Mçæ‰ä“ˆÜ¨ÝóÎÛ<¯kï,mëœh *kš‡}s&ÛæMÙ5ËÛ4ïí™_µºA žBžš Šh¿¸ë„JçZÔŠ—%Yz¨±».[RnëËìßµ(˜YÕl-nˆ–i ”#h ª÷Tí‹ jsBòiD.uü·^Üy"_Ïýßj\šÈÅœ¦í-)¹ÿ%öïzD.ž!ÀjqSD..à@õžÈ}Dn>H>žÈÅáE7ŠóÆõô“7˜Yi›jY‚°Yƒm¸Þ†©»]nÃf¥göJføüÓ)™µð©dÌÀðž†Ý6 ›>']É ³6ZLE=½Ã¤ËfVÒ¥Z– ]Ö E[­·aêV—Û°YI—½’>ÿtÒe-|*é20¼']·Mºæ€ÏãIW?Ȳp7£ø4ÉÑ/çÕ&b9ÍJÉœæ%ÈY~¸"p·f*"̰“³R·‘ÕÍÚæÓé\S‰]Â÷ï¶)ÞüQ~<LÛƒ¨Ÿ5Ã8Gþ¬w˜ø9à™•ôYK>w¨ÂÂÑÖ–L¯]vÿf%y¹UÍÖâJ£;@˜Jì¨Þ“ºÛ&uóDò D.DA7ú˜×®™çw™ÄYÀ™™Âé¶eœ=Pá֛혾ó%·nfêæ¬h¦7@ÛlL'm<ï)Û­S¶ya÷²– ¢ø¬9Ì¢nÞ×yu—‰› ¢™é›Ý¼ ‰Ë WˆÎÖLG…ò;93­Ë¯nÖ67@ñrÀ˜Nô\ßÓ½[§{sGùIpع¡|øìN“<Êì´Û•"r2@ñVøKìñômšž©”þø&(˜,¸éb¸ÝÓ¬Û§Y7ˆÁÈÓ°•fQ6ÌFäNóâ.*<3S+Ó¸ Ér†*ÜukK¦o}Ùý›™‚¹«š­Å Ð2Ó š Õ{ªvëTmŽH>…È!¿VDãèù]'qœkQ8j[–À©Æn=oG¹/±u×¢nzE35¸!Ú¦PŽ´ <ï)ÛAÙæÝãÉZa`û}PûµÚ˳OŽñ-ß;—öÙ‚×o,p}† õû€õ/†jÝ4"'VÃv'G©ðÉ&S Yi¶*A ¤ó¢M%°OÝÑé›3+]R3/ùé§S$YèTrݺ§E·M‹ngÇ“ A7ê4G£Ìó;LŽlàÌJ”Lۤɨh³­í˜ºåe·nVbå®h¦ŸN¸L%_6<ï‰Øm±¹a÷x²vYT%øòΗ¾¼n]àËÒ/'ÖC½,[µÔ^ÍJÁ.g*ú{ySÕ~/Ë—ù½¼¯ïû¥P­›Fä %æÎƒA¡ÞÊzq‡‰–ž™kÍ™ÆeÊÍ9CVè²¶dz‘®²û7sÝ9wU³µ¸ês¦ ³¡zOØn›°ÍÉ]"÷Ô  ³¤ÙOÒ4aËœWÿtîiI27@eèܸÖcÝ„ÁŠÀÝ–©h0Ã.–¡v“Ö6c“O§wyPR¼ñà½'ys?X·ŒícÉ^ûü}'ŠGªËÓ;Kì Xf¤sªátg Q|ÅÉ”¸ßÊlÖŒ4Í^Gù¯o‚sÓËžFÄ ïé×íÒ¯9 òx‚UX å¿«ÊuÖLP – X“kA”¯qsõNƬ£ü×7Qè|r…“BÞ¬[&X7ÊÓV³}6H†ýbº¥^Þuòe€t=*¦Ú—&fÖ€AoOY|(·Ÿ×£pögntcôÎII²g@}Oý¾ê7wÜŸN l î»{‚8ƒ=tlóÈá$“RnkÊ#Ä YJ'®oÖ67H 'O'ùž~!tpžH?ƧQ>¸IÞa²'@™™ÞQ»2„N P¼Ù þ»\bŸf¦iz ¥?¾ *¦–<| èîéÖmÓ­›ÅáI$*-Ž¢žÞe"••/ŠRа™Ê&Ô‰Ð[Pf“KlÖì”*›R¥àë¡UÙ¤Ú'…¼§V·N­n•'¬á €`ÑÓ»L°,³,jXŠ`©!Æì2oA™].±Y³,½Žò_ßÁRË.A°€÷ëÖ ÖM£òX‚Õ9 +›çw–hÙ ™‘l™¦Ó —3LÑ~[[1uÇËnÛŒäË]Ï,ß: s–?ˆÙÀ¼'c·KÆæ†Øc‰Y8$ƒ!ãgw–ˆ)ÌHÀ¸Ùt⥻/Ú_ýÔ½-³E3,3ÿ²ß~:¡ÒËF¤Ðî Ôí¨EÞñDé2ÆQž*ñûK–Pf¥KÜ®aÒn®€úî–Ù§Yi“YCéo€:é%O%O t÷ôé–éÓ ãðXuÅfk´ß‡yÕ•óêÎ’«€f$ZNëé¤+?XÑæ»Û2fØÅ‰ÙÈÚflòé„-Šiä-Þ{"w»DnþØ>–ìýec¼ùí7w–è¹à™‘æÙ§“¼ÜPE8àlÉT(¿3Ò»üºfkñéÔ.†iÄÎì=­»]Z7g4KèzP¢ôÖ‹;KæàÌH嬶Ӊœ;PÑæÛÛ1uïKïÝŒ.·¦™|:}sA0¼9 ½§n·KÝæ‰ßHÛ¨íòŽÛ-¯i³,k¯œhÒ)kΙƒrûäMÙ&KÛ%ïm’_ ºAäL”š Š(¿¸ÛäIç:4ŠÛ–$Tz ±.ÛQn×ËìÝuè–YÓL nˆ‚i”"c ¤÷´ì  esÂï)¤-uÊ·^ÜqÒ_Ë5ßj[–´Å¼šíí(¹õ%öîZ¤-.ï©o5¸)Ò—ô×w@zOÚ¾Ò6üKÚâð¢ÅyS€zzg‰šËŒM5œNά!ŠöZoÁÔ.·Y3R1{å¿þtúe-{ñ2¼§\·K¹æ€Êc V2è¬Ö%QOï,Á2`™‘`©†Ó –5DÑ.ë-˜ºËå6kF‚e¯£üןN°¬eO#X€÷ëv ÖPy,ÁêYâfŸ&9ªå¼º³¤+ é—Óz:ËV´ýî¶LÅvqFš6²¶›|:u˃b‰Ë÷žÎÝ.›?¶%{i{õ³æ`爞õâÎ’<83<«ítrçTXkÙÚŽéÅ–ËîÝŒ„.·¦™Ü@-qÓHœÒ{w»nžø=ž´…ƒ(èFóZ3óüî6 4³Ò5Ý´Y³‡)Üu³Ó7½ä¶ÍJÓœõÌòý P4{ùS šÌ{zvËôl^ˆ=ž˜eƒ(>k³¨›w”u^Ý]’æhVªf·.AØrƒ¢€³-Ó± ü.ÎJáòk›±É й(¦’:¼÷Ôî–©Ýܱ}Ùv®Fè>»Ã„ŽA23…ÃfeH›t_¼ËúÛ;}‹f¦bjþe¿½ º%ËN°h÷”ê¶)Õ "ïx¢4l¥Y” ³ÉÒ¼¸»äÉά4Ê´-A¨œ 7ÜÚŽé»^vïf¥[îšfjpÌÁT2fƒôž–Ý2-›#~O&mÈšQ6z~· ›€æ:tš–$kj˜±»Î[QnÓKlÛuhš^Ï,ßßESË/EИ÷ôì  gó@ì±Ä¬0¬ü®‡”_7œ¼t(ùä0ÛÒ!¶óŸ)tüÆÂÆË‡Œß‡‹!´ê¦qx,‰¶;9ú„Oî,qbpÌH™°Ñt²$]í'|êfNߘ©‘šw¹/?É2§!Ô=º] tCè:–ð|ºQ§9ê¡ožßY"dƒfFRdšN'HÎ0EûlmÅÔÝ.»m3’(w=³|ÿéäÊYþ4¢eóžtÝ.éšb%f—Eµr/ïx‘ÜËkVǽ,[÷rbiÐ˲5AKíÓŒtër–Ò·—7Uóö²t±ÛËû*·_­ºi_|í<꣬w–T9À™µ ›i[¢›3Pa+k;¦×°*»w³Vds×4Sƒ¨Ëæ€`ji6¤÷äìvÉÙ<ñÛ%mý$.õÀô—KØøÑIS‹-CÖŠS†¨µCÒÆ R°á² Ó¶ºÌn•!bãÖ0ÃçŸLÀô’ IW1èî ×g9,Ÿ“=CÆ05öWwÿlŒ¤Õ§§%HÖÍzy™² äerK—¾Le\Rp†[©Œà%@<ÎL_Ì,ß¿¹‰„÷jí6±™GClâä ¦5ŸËoËЇ֯ÿ5¢õëç¡0λèÔŸ¼MÏüì<Œqÿ|õfëø‡æß«c¿ »i˜ûÒìí˜6§Ñ»»MaZ¿ÞÓ˜ëÒ˜/ƒ …:~üØ>Ûe¾ø(öûÉ ÇÇØ/>;¡²':VM[Ô4z5¥}Õš:ba}'žÓË;•†þ4Tby³·údz”ƒÆIšâ;I–¦Š[ÆÒòtÆå‡þk(ÍtÞèæiÍø[ÆÝÊ)Mþã’wM¾Ù§2LÿÄêŽrQ7K®¾•¾ÌÂJÝ …ùòî—{uÏEÝ,‘úòpÜP¹³Aدëߦ‰|vb†£N£bùIO#Z¹ï ¨ÔH÷ ÃcÚ}RjÓ¨HÁt§õ©tB­n„>äAs'ÉÁ8¬œ3?§ûñŸsR§3³ŸÕ±äU@=™¬êÊ‘Sýù§² _ö!¿£·þõŽùí! ¡ìàl<Ìß‘p‰[r/4cO£“3~Lh[@K&Ž4Î;¼¤hiXO#S–4[‹O%!.FÉ$€ÞI’2ëo ËÑ ‡ÇøÏ§Óy›£c¯gË&_ ¹OË]¹FŸÊ¥ü·ž;ÊÏÜñù’ÐÙÐ.3×>çvèT •Ÿô4š”û¾€ôXpS”»#n€W)˜îô¯>•0Œ% yÐÜI"Pîøß8?§_ñŸsR§ó³ŸÕ±„µI‘˜ÞWðeò;z×_ï˜ßz½$ͺWínÄuÙ¯ ïOõA'ò ÑM<¯ðåàÔoÀ£ÔoâÍC†_àoüÒëDi6fyà·“ø4:kt3/ŠÓ,èvë½ ^ÝÀ}†ÆMø£ùzkÿ¨êýé¯ Kû‡¯·ö`“ŽŽ·ööðY>ZÝ\„UxÂ?Ö6óMù%9ö+ K8¦‚Ï}ÿë¯}ýò‘Ö…ê—ÿY{'ß!Ὄ2…ú£+0Ï×,m¾! ¶#Κ1+ôµõY¥è³Šî}•¾ÿÍ?M~äG±šÌ3¿“0á¯,,Dü3Ÿùø±F!\Ϲ"¨CÏuµVØ «ôÓ°ƒ]-.Ÿ4V ê~°°°Üg(žFôÏðÙÅ9f„AÇïSÔ…Î }™EgS´³Y1˜YAT|ÆÍÔl:О«?û =šßïøÍ-ôãgi­ñ`¹V{ÖvN¿Ÿ4à´öËO¿¬þüÓJý[™xmµöìrQ-ΧÆií¤aR{¶°” ‚8@õªÏ^A7'q­Q[4c.î?ÛçÇ~í Ÿÿ¦–fAâk°TDçQ°ÀšðmÅß$ØÃ7j§¨/Ù>vT¨Éä5Æ þ7_lo!ÚÑÇ‹Åø·Ì£b7ùö¬1¥½ÁÏ……¿HW²yŒ‡ˆ.šcÙï>_n…&~Ve ç`˜Ð1:}TóLi*¿MŠ|;ñLCµ›rH XËÿÃó†±CÁl‚õv?G²ˆbR$—ÈÐd6ßPƒ1ÄQ²˜ÚíÇœÿß&“NÿŠ:Ð!âó7¿Ó÷Žá 6‹wñ™ ’|“ÀÕ<$½&~a_)ës¿RÖ?Õ²^îJYÿ‚¯”õÿÄ+eÝAêõ;{¥¬╲þ_x¥¬_óJYŸñJYŸùJYÿò®”‘Ó_æJ¹¹Ó7þJYŸñJ!pt’6î±¾ZàoÞô W‹†¥þØÝ7x¬·MˆA!=vÈñ”›CúÔH:îê°Ç¶n9•¸áýÂä ´Øë‘hC–g=гÙQ`”8¯#Q4 'lT/¦Øë ‚ߢ½>£¯Ÿ>W¿ÿë÷ßÇ¡¿‚Ȍ؞õºúãƒòøo¾v×Ïoü¨N§gôÿÚ3Pއ`6OÆrÇ`F|˜ÇAÐ`)úïÏX…¥N‚~Pê$ä¾vW®_Þøqpzžz&Fçñ_{0ƦÄé¥qGÄEœ©GäÚˆ2sâB©üa‰âvwØ ØÙz±sx„§Ež4åÑ´ã’ÿ܃¼½ñÓbõ;õ¬äçðŸ}RÎcÎJ1XÆ5¥q'%‡5SÊu‘d'ņQùs't#Ž÷EÙS3¦Õýṇ§•¦ž¡OD™Û?JÞî‹ ù( ÎÎÂQE½)>ì„§Qbÿv?xæ÷ÞG0£ÓÝ0M|? =ø"Ýðñ¿õ ço½:â¿~=‚ׯ¬ ÀnâH¯¶“~ФYýŸýzê<·}´}ðf§ê×[~ýß²Zzd–kÿ ã;©×<q`©hÏgJö0[«|‡tË3¿nX kœ?ÇPETG^± ´º}s;U`H~:9YþùÈ¿lð¯U?E²hûL[½ƒWÃkÙÕGòM˜í±Jõ‚;4ª¸].JÓ?}1r^Õ}г±¿±Tûþ÷ßçpÙÙËq„N©Þ;D53áœÿêÿ9úçkø/ú¾0QÎít2ÌÔ¯QlÿÕOì¿dè¯üð|>^&~'ì†ZkÙ ]¤;Á¥~zž »?ŒÓá „GAm+<òi’4ºÉÜ%Áûþ‚Ö`êƒaì/Ò€ôbÍâ>nG‘…ÐA+ÉÎùh¿H¯¥ýbÃ÷ŸÃwïq[ Q;ê£MÈÏ.k¥Ÿ‡Ýn ]d‰|Hàë’V7ì¥þEVh.õ¸Òð°oìËó]øÎ_ø+™·þ¶#dUÇî;„Ë0=Q|æ/½zý4NEàá‰ÇA5$BâüÐ)œ…Y §3NBáe…ßãEj@<ú}@·°qÖàÓ„)´Û?6àhsq±áéÁ‘2ÃÓæÞSýÇ.o×WUP¾6dØY•ûÀGuy„ цçI'Goww°+jo!® »ƒ¼I3"öPH;ÓLÞûKUÿ7û ­VŒ=xÀ”¥gv%9–ôÄœKûGG —ˆ];Ï`íÚEþ~–ï໾ÞLÅ9÷ôút'h>¶yºˆqÞŒ Ía:ìfåz€%¹=À,Ű¡Ù\Á ª±50ãò‚ž3Çy(3ÉÉ[P{Âè€ûÔkôsºáóG~õ“4à0Ââ=ˆ2uÕ3X8¤Qò ›6ЛŠÿý×kL¶»û42‘IR›±çÙô’[w9PÃu¶Â~€Á —žmNÁi´“>;}1ŒE 1þkŒW‡I=Ò°$;®º‚xjê#)Ì}U¿|ïxvr½ã£©½ÃG…½kª¯Xhì8ü·¿2"ÝÚrÞ ‘À ûU%ådÀ·“n2Hõ£B t‘n.þäÿéçE¡-Ö©kå ‹¸VþÀ9˜Ft :[î„–ãa·Ë$¯ÛÝ|çûëW~YX¸Hl+¾Q±èŽîý<Ú~½Ëãõƒ¦8¾ zòfëè¨2¶ D¬©]¼ÜÚÝßEú>êOíâèo»oÆwqÉÓ˜ÜÅ?xãº``Lé‚1¦ @Êd0­‹ÃÃñ](rónj<¸.ÿø…¦G¿Ñ(ï“m*”Ûí– Dà²H†¼: à‘MtZ æoŽþÃ@Ðý? ±áD ã /Ûôm’3ª&É÷î&üR¯÷‚«°Xx‚r<­ïÓ;>]ÑÇ©¦¦ †ò:½ÅI¹®âÄêÉ\RšCþëœI*}ì/ÚKZô‡ip A!"ñP÷tj.t£  k=LÛ®UŸú€ßÖžåa²°àÎÖƒ—„"x Ñß÷©M3~û^—¿Ã¸³‰4­3f¥v+«IÑjUýÍjóÇW0)\˜š›~ ½üÁ÷“Z¾Q(T-Âí w!¦Üq±ÃÁUåøàxkoOP2VF´gêbýÞêøè(à÷gƒxü÷H1ø{$0Üw8þ{"4¢&¤n=›Ð?}NýÓçÂLèŸPÑgyÚ÷D(è{:ñø}O͇ÿÛŸäÇÖ¥.½ÙÚþÛÖ«æÑñáî>sÑF*Í1p½üI«zˆI³feݰúÌêzÜ›óøÌ™Æ³‚‰5n…q–nlø°Ÿoøk•I-'^ž|qêo}­5–Ùžu“VÐE>KÖ‚pó¿A#ëõ-Ž@¾ì}e£èË‘§Ï¸òo BhùÛLº› _­âu,ß^ØÏ5!üqçðùÁÑ‘Cœt;È gÄ$ÞêÛ>â0Eÿ häÂOŽÕ^ÃåÑ냫 ñ±ÄöÐ@Go_¿Þ:ü§Ò–Wt%GSÖñ,75xȽAgƒ¡£°W,óÈñà)…á¤caÖò'W7ÛìùÛW‡;o«½áõ7Ý•L²>`Á‹ºpÀGĹèp`d«5( V{IÚuÚ>¤œ³íhûp÷Íñ‘m{8ÜÙþagûo,s`~,¿M2Cg*ò)êŠ;±Ú€1±KK;J­ô×ùwÐUûß„™t˜ Ù“ÆüãDi˜|©f9vÞŒ¦¼Ðå¼6]Ê;õ@Y#ÆùuûZCBÎÆ2ßÚ6å)M‹WmÁîÏæ“4,FQb»¬û65Çå(åS‹ê»œwÍ]´=3m5í}׿ˆºËþ¼ÄæyùlðÙ†Ÿ{¸°´óã–ô7ǽeÙ´5òÁ¢ec@÷!®¦Ö|q¸û#šCëu’eâ ’ï6)Qêu˜N¼äQžE¾¤æ‘h¤ó¤×Kâfg}ÍÓnp– €ÍHM çÑgõº<Þ>xýfwo‡`“É”˜ ªùòEópçÅ.Ð! -ÖT3ðÓÏŠÀ7úÒ…ž~ÿß ¼Ãa|¬¡&0”ä çïÿbp¼‚‹Ü‰z Á¢Ø qŸý·‚§¡Ocá;{½x=´ªã hág‚Bn¸¦KÝÇÀC¿›(úÎ4„CïYap|dÃoôe ã¾˜£=•ùØ9ÌF‡ž¶)häæyáçow÷à>?x{¸½sTñK²<›ß±‡»GÇ/a*GÚaö’aS>«*Õn‡b ä!±V½÷ð«ó¹*²§Ù£Úô«¬Îìµ³˜.ÿôsã§_NNü¼|?_/Ÿ‰ÿN–ô û°¼ Jõ£z³ÀE¥]G¶Ìò4"\(t6b«íHH`\ú;ŒjÍsù÷ߟe–mFã.gù÷¼ý›½3æü…3;mϰü jû¾)˜XßVx‚Âá 4Ë'ËËî<ƒ9ün6FKkË?ý²ÌÑN‹v#`‡ïŠŒþ@fÀ1a–ô)à†ÂCqªkh¯:–Kî Ûu–¶J] J,«`A;ÌZœ2:ýZغ¬#]•åi~ç׳«>LQú!ÊOVV`ØË°í·Ï{IÇ~3¸¸ôûÃ?y¦Ç¶T•öò´K¡€Ì(S¡ÿMß‚NNŸÚ8÷G;°&ŒÛ4ÈûAÎymz^zßJÌÈVú»÷èä”’ìw¦?f‚Ï‹lµäèø§º¥¡ëè}ÔoÂ:Ct`ãhlhŸWœ=¢34«ÚYòÍ@ †É\híàáÇ~½ÅïSÕxðÍ DëÜ6•k„CR#ôŽd?Èôœ³ÎôTÜ Ãû®Ò;‡àãoõ³QCÝ1@Áƒ{©ÏŒc¼BØðCÐõ_ýk÷ͦmÑ þhîìÿH“øÞ4m@‹ÆÙGu7Ü—\P4‡ô³6Ó$žÃk› ¿Ñ/õú·øÔIÑ Z×&NçÐ؇ƒIì!ÞÓ<òÃw'€G¿ü8ÓØÿø‡ëçßêõðÿòcÑê/Ë ÿþšiØ@ÿ¯£ãÍí½wöêêOšÒê·ŒBã#Ê+Sç_þËšÏ_éÒøûÖáþîþ« ¿rÄÅHO ¢Ö0COŠ`Ð>n‹zÀ|¦x· WÑíyÑ Ï‚özJ ‚ž¿¨>&ϦN¿·ƒ,ì4È7:ún}v»~ u«8{8¹Ý,9 Ñ) ¯Ú­a–ÓZcEú˜Q5‰¢=üW ¥çÁ $ÈðÓ1p‹RÛGEýT暇’™h 6.E\Üs]W:Eݼ÷þDgyðïÜsëÏé;@cÔoLÒá!GÛ<Þ:|µs éqsñ¯‹“GüÊ?FDöµó‡1üB^y4 fúÈãnÁ®þä(Éñ[ÃA€›Þð¡‹0†žàž=ƒ ÎÂ0%§FÝ“Æô} »§u´¥Q ÛÛºR~?Aœà.£b0À¡ìËɪߩ׉A޾¹u¸ýÈWÀÕ ›ü@®Š¢Ôœˆ¶?rÇhµ-A½_u¯@þU·rEŒvßLè¡«çÅ4´}wÒ.us¤Ð£/'5þ—j;Œm ‘'czCr °JKcèœJÐÌÌÈ="tb¬©©WŸòu1ºtx^8s”`g4çR¿pŽ¢âÔܧ,ÒZ<%Kj£O–ÓaËyŠ|”ê5?–áúóýº)6:í¦bÇÐàúÝ»C‰ã½#ûüòÓ/èîÍNßµetð-tÝ ™0 mïø5¦H¬/g½þËAÀ ÷î²ICD_t8ÊD?-žˆú®ÑX†ÿW´ÂŠÉZ†Ç—mlÛû/w_½=ÜQJýÙôoêu€6i(øðXw\]ŒköÅ$uÚûÜ´_ü¸+äwzSËl2á+™nÙïÊuªcœ¦~‰;©¿fµ› J1(ùg´•È9u“vdé7«Ç¥v‡ß {AúÞ_yòÿPš¦ƒÆÛv5am¶é6v!~Í>r¾f/9Viâ^èF£_YBþìo* 6Ý–Ï´Lü‡AÞÂ/KaM¾‹üå\ª ØÈ!PGyP Êå<[ÈÕüé¯KJc¨™BÍšbøåÕˬ§@ÏÖZƳñ9´¸šÓ®žÓÓåÆòæòýÞ§ÿ^µ^Xè/Ê/—‹ÞèvnhËvìK¢‹Q¬¨.Zù§8·3{^Ïv…\U–ø7²ðWŽ‹bް² áÆ÷®|É}[“ò‡méT¯3½v¿du“_Éu&Áþ¦?7Ú·Š¦´§ªxQóú-·l™ë]»áiæ§HºÇŠï„D¸~5*ÚtD™ˆ?àë³ï‚¢¾”÷«Vœ~O#wœBÀX s>Ög›„#÷lm˜³¸¥¦oþ.ú›~à QÈä*ì ŸÄÝ+Â/ xR1X<#ß8««-sû›¶Uw Ž%sS°Œ°%ƒ+Ù<=Fnó&nç‚“ÝÐj‚ñÑAo’ˆ–÷R™È°k“'»TÞ¨£&äñ|6ü× ³akéÍáÁ«Ã­×l Ý}~¸u(ñ§{ÇΟjФÜÀöYÄät%K:Q€ oE±êzC]¢˜¤ÙêÖS£Ñcƒ-|ÎÝptèŠuªÎSè«àiñ·&ûé˜yÅ©¸Æä&š””e|ýØ7…Y•ÜId°À³ÒM+‚3&¨\P¿¢z÷:]`;»ŸNf§ñ/|kÈ¢¡d\4¿›cò×’cŽŒâ97¢ÃýÚS$ËÚ†Ød }ˆßTm‚6n*{‚`6ÆÉªGÔ‹zQÕܚњ—iä>ÇA7ëVì‘t– |ø"'[ÉŽrÿ&}‰6 Ø+Ϊ€òÛyãÏÂ8Dí m†1Þ{ä»9ê¸'a”…Ÿ[^šÅ ­ º(é/èMšúöÞÎÖ>™N¬çvlò˜NHÒmR›fQg£ïU Êáj™Ù÷ÇuL—ôÔîí¯´Â“Òô/+nkÛÛë›·n-‰É_åßY“%1{ 8sï<¯D¬JÔóeår…4œèÅšÌMêY…&ŽÞ4O‘U‚dªÂÍÏ!Ü©°¤ÓìÀñ„ÿ£á§ý°]ËPûAHlH£â®È¥À΂òÄÙnözkwÿþ·s8…_0žª””i@~SϬ+Üw æë’ ÖmNž v)õUÒÔïq‚‡½  ¿Ð£Ù4@y¢ÈtÍáÀCkØQ1õæk´,Æ<*!ÿaWG«vsõq3(.Ö>sWëk7ÖÕLýè`-]Õ2f JÃi˜¦7ݙڶσA´Ãgoù¾çgæfI¯úýë5k¶ÏɰíÖÝà âR#³·ÊÂËk€'þfnÖ9 š½ kŸÏÚ´fnt‰鬭Л¢Ùí÷áÌëCåkbZ ¯‡á×(5j" {½–ñ5&/ºpÍÚ,tÖ†Ùé¬ÍúAÒuÜŒâÓdÖ¶ixõ¬9Æ3·„+*èFg^%ŠñYs˜EÝ™1 ͆«™ [ieÃlö©bKœí¬ ¯‡ßÃvgÖ&wܼÒ\–&½pµ^ûf³ÛÎv³¹-KßlN³òô© Ù 7[aë뀷üÍ–kUöfË5+{³ÙÍfºÙ솥o6§Qé›Ín5ëÍf·ñf³›Îv³¹-¯ÐÙn¶Ñ–eo6»å 7›Ýl†›Ín6ëÍf·ífsZÎr³9 g¼Ùܶ%o6§ÑL7ÛH˲7›Ýðzø]òf³›Ìt³Ù ËßlO¯±=½î½öôZ×ÚÓkÝj£­f¸ÔŠ_°å¯´§×ºÑž^ëB{zÍûìé5®³§×¹Íž^ÿ2{zí»ìéu¯²§×¸ÉòmJ_d# ËÞcO¯u=½Ö-öôú—ØÓëÞaO¯y…=½þ öôØÓëÞ_ù†e¯¯§×¹½žÎ|y=½æÝõô:WÜ«†ôׄfŠÒ©åOþNE£×Ý?§4Cu)›ÙWÏ¢AÍ5^_û„ÆOgn‹ Öêú·)›,õÜßSš&ù•‹€g+ܵÀÒà ÷GÌVd¨ÖÏ;–Ÿ…¶XOÈNàæåõ¼Î‡hÇÿ°€þÝð<´Åoøø_z.¿l ø4Aûïi"faúeÃórcËP™rZîCU]—Q\)Bß bû«Â”øúc§.‹53\©õ‡c%×+ÏYÂM ÛXc=· {vcœ0ê Tû/g 60Øæ/§Á(ð{hÀ±kØÚ¬›ïúSóüátË[½öSëãÔý6u>ÕŽ9£Á ÄDXÞ¾¤J”;±ÇËȹ÷ Ò`à{+Ô½êÞ uo…º·BÝ[¡î­P÷V¨‘¶÷V¨{+Ô½êÞ uo…º·BÝ[¡f»Öî­P÷V¨{+Ô˜†÷V¨Ñ†÷V¨{+Ô½ê?È U wcAFõ÷b…ò숲‘Ð÷o÷½²l„¤¡AÅ~,ö,Ï#Û…²Yh[Ú(Ä6¡lv8¤irœ§–)ÇÆ§0ÅÝ —Ѓ9QÐnDy6)ÆY4z¬†ÿ÷ÐC,¨ ÓUÓ¤àf©êýIB—NxÀ7磟&Xz9K|̉XI‰åS†2 # øÜƽ =HR¬êx޽¼Þ:Þþ¡¹·ûz÷˜6dçï{»û;4I„,AE³[WÐU'¡T‘<˜S$ð³°¦>Ö”¼€I]œ“[ÁÂ}.3' )NŒöÔL‘½7ŒÏ8ýf?`»ß‡1¾ŠN¡/˜O2„­â+ÿ+øè í't&›G¹¤x£¹9´ÿ š„§„- oD!Ý­þaëÇæåå%þèí¬FRˆ+kÍ£ã­ãÝíeúãÍÁÑî?šG?lî¼ tº)£Ü ê 8`~ÐÓ«íí:âŸâ¡‹Ò¨u£ìJåT\þl1ôôù«ßTò…ä‚4·S“´~ÙÙ!© ög:¦ m*^Öû ÿÂÿ4‚4ê„ÐIG÷(ù[iÓv/2lÌ2*áŽ-ÏðW•†òTO`Ù†Œ÷'B…z,ÙÌýÅç;¯v÷ÃÊ“Aü~såÙ‹úUtº´¼Ôøæ/Õ“ôA³dœJ-l6ý“¥“%³ ËÕßú¸L± êI\yf:CíU¾Ç½ãæÁóÿùQ7[~À)jñÿÏb o¸º˜¿Ï_@¦ˆÛr«6üË8L®ß_OÒ¥¥¿l þ.øûÑñ‹íjóäâ›ßm ü}«ö”×±Ò%7yYÖðù³TÏûýG¸Úvö«K0¶éN êú$^Xh~Æp‰•öaaAu£`$mž©_6WŸýA9÷ù³g#[[ˆþ÷xóÈѧá¯ß=þ¡y¸ƒ,^4·HÇ[Ï÷vޏ„‰¾¡l3A[•®RSºjroæœò]cy̦íÎóí»ÛÍý½µGÜÈyl=)äåÖÞÑøµ™SZüE#lÁëv}uåá“zÜ]{tc3ÊÃçz\XÚÛoR&0¤O3.LZ™'Åí fË£ßÖ–¬mÉ5§4iO®Ûå'lÊêõ6ÅžéÍCŸ²zÏ>ÞЖk; IŸRnÞ®À©#%®ÇÆØ¼zjÿ^ÿBûïÎiPÔhõ±óG®<Ón}Íù#×`;â«íƒ ÛÀ‚‚³°nÊnŽ|ó§ú¸ìduÑêMè3£jc´[Øøƒ(Ê×Í£0£:YùÿT¯n=WViÌ÷²?ªr ¼Û9ÄZ¶oß¼=&ÇoJ›VÔ¶ô3Ne]ô6Š£, º–Í5toaÑ“'^$X+³¢¶ºmÇ¡ÚÔ™R^Õ‚~©äXï…À>hœµ;AůsfÂicløî®ø…ÀÊ?ʼn]c^qRf^VÆ?wØñmƯB1¾Ë²ø¹+×éšÙ@Ý÷è+svXƒêRxÕëaŒÌ^](RÝQ.È«CA4F=p»àØ5*¦a¥`B: M‘§º!Oz2TžG²œm¨Ü£Í½ƒí­=],ÈËYØTÐÂo•‰Æ_Ì Ô±‡Ý®R§þOëGßÖÖ׫¨™{µÿÖ§2MLó^ž¡nðC0ˆ˜c†N°âÏE”†~à§WiöünÔ&u ÕÇGWé~ù0Ûˆªc[!ôÕ&õmÃkììü•8Þÿû¯ø!¡‚ý%@lk<|²¼¿ó÷£›c~?~HÿÂOîßÇ+>ù«Vž\{ïovÅ?Ã4 0ä I²IßM{Ÿ_ÜÈÏ~x‘úA µý¤ʸ¦^}Üçý(Bmµ~g+Ô×VÖoÈ•n5€¡Î†Ý`à§a/ªq< ºjøšÜa2@ KÆæ—Óð‚,§a€‚EŠ|/Ek ´"ã)PJ´º¡fŸ3óG½þ(U/Œ3TÉ yÄçø,$KR+<>DÉpP³Ÿ¢qcëÍ.[¨<˜ŸFg1ªúƒ8S_z¨î„è4ØBŒÆ¹†ÿ†¦ËaãÎ6}º—œQW¯€Ä`%h*m;PǵÁÜøKo’‹pp:ìÚ«¬úoØ£àÒ2ÐÅ(ýô¼ÊÒ_V—^¼}CrOóà°¹ÿöu­ÑhT»ÚYŠF tÃÖ¶˜®-¤ˆçÚGà>E³ <¹ò! ³I==`U,Ã!øÉ“Yƒ»ã¹Óô, µ†gXÐÔ]b9=¿=Òs4N‰ ÚÃlša<ìÑåµT•E© Œ°ÂC¨hûXå/¾òŵ“†RÌ —ö6Žøê;°`€*;ö‰½là}6M"ì†)åTì;Æm|Tóû¼khs˳ҧÊRÆ[Nø†uȆxÛF–•äC³~‰CùÖP ”焇ÜA•m¸d@ˆ“ «¯"r‘ß)Á–¯z¸•z­D_th4„)Ûðšß¹(j£ýa`™¼†ÿ"¹ˆÓ –Ðó÷¢xxéTšI飻íŽÉ©‡Ëªù\††Œ2f7pD?¬yˆªxÿòÅôM¦…SzGؼÆoï]ý…X0þù™ƒw~Ò§<š”ÀÄb÷r†Ï^øKxWw;5oïÇ×~CàÊ·ð¦J@B!ÑZŠƒ!ÞÀÖ}œâ›]½‰U«ƒéµ•ÃñeÆîÊKÕ›rÔ‡…—Û‚£í¥@!º°4Dp ¿‘ñº!ÅÀ‰2f®ß!V‚ºå"Ùtª~‘­ž¤=DJÈïßÑl‚~ôŽ­ˆH‹¢¶e²ÔñφQ‡HV‹'MÒ«ìÒ°ä¸ÂxÅ0Q:à MT†—/w¶wÜiîíîÿíh÷_;²I°>ÏŽ`Y}Ù ÚD;!aY—À‰M­±R«4çÂ7NÝ·q;Vý»gâ5œÝA}’‰h%Ô›<èj’"ßz•…ïXú»¼sørk{g(Ý÷•Dß©¹w´·qæXbÞ ÉcÅ‹ÒÁÃÇü¢9f\¡‰³sß=öמԷ†gÀ7L¿îìÛ.E ä¢ÎlÔ=CÃRyÄíw¨Ëú£§+V`àmTF £c?ª)Û=Ó¬s îÔ[à÷¢8êant¡…H±ÐÂ>"ûxHßêý=îÎÃ: ý½°‡Ò.WÔȸ=hE¹4tÃø,;oø[€æY†á* 9HºÝ°}…—š"[ Ÿsô8àZK-r‚8; bø§3@wÇ«åÀ ÎgÈ_"¯út¡7ÍÒƒ­íí7ÇUêséAÚN7ªzPÍôÈ×…H[ÇSu[v‡#„ÛCê" p²B€±ÖÒ)ŒL4Eöí€'ñˆ*Bž"d:aÝzrZOÃÁ‡Ž,–æŠñæóD²ÝMR˜QÍñ¸¯~'5´Ý+5EBµn@"+Ä|vQ†#ãu¤i ‰&Þ’rd( zE`ŽtÌÔD®'r[ð†1` 9èÀíLcÄÂÝÐHÕ<ž?òWÕ_†­Á¢cçà:iQ‘„}aé]d/܆Ôÿiƒæµñ³ÍÁô®L$)ƒP8SÄ Bœs–ZÌk··ŽvövŽŽš‡;XhûXX+{êÂ’³¯fñ&¤–×çÉ%ï>}dݰr›"Ðâ@ ±¿R{<ܱjâJèï¿Ý³ä è”®¹S¸³:tÿ.þ¶ˆt€dçÎt›˜†N8Þðßb¨Ë•òUvA!%R4G(öOü 剄Ȣû¤ óÍðÙU?¤û6p@wË}Š­&é¥Ê˜œKmutQLA¶êX˜¤ïï\ÈÉo°}.‹dÐÉ ‹Øû‰ï\;ñˆ¹Àq¤À»».F>p>¡tep^a.yBÔe8þœ´Ð…ê›*r%AlBä6–V«oçUüðXÓRŸe-TÕœ&§D^®†Iuräu}¿¨oXW¿jÀW“NPT‚»ñœ‹Ö[WŽ_ÁéTÔ!V ã,Ï«W&îµÍè¿=>újõ©¾q»#’7ÜÛ0»È©ëB$>;[{Çx~vö_ì¼hnïm)BЫ|ñ§EBnœ2\Ħs¼ù£xt4vE÷ë>JM lÞâ×_/ÖüÅz}‘^.þßÿ-âœPípÓ˜fØ ±wtÆÈ¶5Ã7: ߃¬ð°J#IÄ=ºøÇtçø<ˆI|2ï{UK ‘V©ðsa†šz>˃ 2-¬¨ÖHú )ó_ÿbÿüþ;üF#üñóÏ¥wI~=Í®º!‹t(ÊMÙC!^Kù ðg—p#PS"èÒ‚¦Á·æ#hxÄ@;ÑkÙ/JB¼ÏnX-ÜÿÚ_R÷¿ñ5È«?;³†·­ ³UZ}æ®]VFIÃt¶9°£`S´îH;ÝÃk¾%Hl9ñ.è úÂýfö›¼òj—V¿)¸5z+ŠQôKC,\ Ðm. ´ÐÿÝ=ö9ê„åœÉ)éÊå ”,ˆÊe‰ÅS›Ðºùv_|`w^Èä„N¥BÈîZ´ÃÓšÅ}šI˜7 þ}MoRç²Þ?h>?Zñ± +ᬲ2r‹â•¿G«ÏœnÞüóø‡ƒýæÁöñÖž¿„ó}sØCRYÐkEgCΘÅT‰÷,I½ŠBŸ¬®ñµèð>qÄ~ÒÎàNæIUŸAÎ*v~Ü9Æcoïàí1/†h0«Tµª¤N`à¯Fš¿=üÛîÑȹìî¿âùïá&ä³l‹TŒðH`âœJÎWÁñY7£}D-¯Ä†”·]>±œu¡{<[R„Aɬ²|«US)âuIfÉdT%zŠTì4¯ò¢+7%MDÊgN0qúƒí[w¶ ÝâÑŸ‡Û|2<Ù{_åØIxtöÝê÷4öÂw¨°ÿ:˳ðµ¿ðÎ_à«k¡ùŒ×-`5‹Àš5qÇ”^V— ]öÉàÖƒ‹€˜4”çAœj]B^êè¯<©ÿï0Qâ8Aâ7r#š!.Ïêè?C÷qÔ¡Zà"EJü~žÄ¡³"Ò€Áj¼6ì2ê {~Šê@Ü‘@ôŽ¢¬R’#ëªè{1SÇÅ(bŠZduíiÃ?ˆœ`x b(’9ŽÏÅF¤m$- Ü„ÿÇ×G„€A‡ ¾.xÖATs”"“@¤À¤”þÿFZ»I&W éèö±dÿ%ÔTŒÕR˜Ð:CWpBzQ`P•FK)N|Ea"¾66ð kúÙ -‘B0;õ·_xÄ…ë3¸¬‡¤˜xGÍÞ0AÀ³0³’‰4Ïà:€ýH›©9ë§$Öã;uì©CC¢ýÓ.bK{ˆ¿À,„Ž¢Û:ÚÞÝ%pÄI\§¿à4XR¨¢\† …:lpÂV„S q'mX†baX6Q3Lf2ló…-ÓÆYáÕD³¥@5aGßÈ!@Ì?0ÕÑbùê£ÆJc…Þ£ÖZÀõ²§‡£«]‘"ËÔëc@ËQ´ #*wr[;ui§¼ÔßÝ$yÒ/ICJ^€ËÇ#PEp©Ã$Í3×=r¤ûL Ç*ñi4éÀ¦J¤ÆæØ42 ÂÔhÚGÖ„÷À·-ä.p€‡ôvjÔx¸Ã ɘ\2Bföªþoµõ?ä¾èDBx¥øl…$¦·“34%°t ç 80Ô4 þ>ÐB8DØwêÿ¶‚=i%iGdÈ„í'™®ßj°Pu»,Ú=ã^&J°ÀÅÔ„ô¦Àœ)é$h¥¢.úíÓÊéÿAzXè–XrÄf#UÁÖö¤þ+^Ò˜”HkD‰ïæ€9ª2KDÄLŠ1ºCZ‹¾+}e“âõÂjN†¿'ÿGÍ¡„Ô;Û¯·Žˆ ®ÑRe=ÄÃs[Ö&¤Ö—0½àŒ Åvñ6ž\Ø×m_õ,@n£¤­$;iñQ}Žºý·ÛoPLø,ñ ¢«Úeu’g-D½ ŠÈQ€SAž%¡þÂcàïãøÃ>HôQ›<rß¾Žý%$2¸…¸†^0x_ņoÚ(˜ÌYÆ}<ÌðUG  ˜ÄO—¤kÙøY9i‰9¡½r:ìv/¢Nv^1NPÐçyxÉ Øv›Õ# Ù|±û ~€gÔ2A¼Ã>&ª¨Ú£é“ù;ÁÉÙ«Àù¿äù*K>æqaŒ¼«‡í>JŽuRÖ5MÇoêuÊáRge“4xJ—v]tµ¢¦¾ò/М¥³Çä.æ5uµþ"îMÜPÖÊ[+0\ÄW²#ƒf¢+[ýM< ªWáXöøD^Бƒ‹¡3l‡¨>ðp« ëÞæÀmõ[Ò_ÿ0lù_­®[e¾Â,ê‘UPb¼ESæöÁþ;ûÇ»ûzíœ}¨­4t¸ÿÖósužå2šªó†;©‡óEwkÂZ«…¯DdÛM–«x1S¬WC®T1y¬O#zñPfHâ¸Ï´…½ô»¤êcy»G|”¦C9bDÃYé(+OŸÄàS–ˆè‘Ïpæ!Ë"H(„Z¹Ž[7Â,)ë0Ly,YõW_Kd!A„zpáuƒ7}}"ÏëÙNDCÃ&hŒÞÀ㈄4Ö%²Ÿ §²‹s’hD°'ù +Dâ+ÁpD#ŸQ;+ ‚ŒG¬M ý#6Ùí@›`i"ÝÔ¦c¹¼elkŒ:!_3Î0ÐEÝ:²ÑW^rzšXÌW€ªoõQw*ÈÇK“!­ãî3ÍÙ‘%Ñ’ -–L,%W€¸qåÐbë9pÏÍmÒÑ0håL£€•%£¶—šgη·øÞ-«ËDÈj'òâØ'LXOÞÎy)¨úrÛZKIks”v§$a2IN¡g™… …Ç»_š£BrÙ‚öÒ™""ÀÑG%3›tðÂÀ ùEp…sp(8ã´BNÎÚÅeI¨…ºç]Ö¿õ×¾µ]QWK¹¢Z6wÞYÒa'èvH;öüÔÉÚÈDäËÔh:Ì®ÿ—øÝ0” XåÍKѶyb×Ù2d«bG2Zk(£±-L>ar]ìõ¨øpU#ðy꯬ÎØ¥ ô¹‡³A MdáJªaåÂR0i/Å™¢Z#Æœ“\*ÖtbIiÏ•ùíátwª+º–0Ví¥ž$N1&}ìAø,ÅÀUÝå< ìDñ*I΀'yEJ¢†Ò‡Ø.g€FLº‰é!z âY©Ñ9¹diïKÜ2¼àÏ’aÎlð8'£,0¬’{íÙO¤tåŒ”Ž—©p‡lÁ‹¾¯`&Ž„ÖšH€ýÄŒo¬Þyxâ¯=®¿®¦l?²pèuC|FÑ®7LÂ#¡Š°1ƒ0 Yû¯P|aÐe—Óý‘ÑÅ›­øLßáò™~˜µLÃÉÆN_\ ð8ÒWêz¬Š!=/=è(¾’¨'©ùú–û \ûºÿÕt»3r2û+Æpe*c¸uœ`Íâ'Á(ŒÏ‘>³H¥vÝDð(>ð¥Þƒ#õ>¨\Ö)@­j\6 Ãhé†ÀY^É1ñSC—»ÒS %áåHé‰H]?`–ŠÕÆ©#Ö‰¢(7Oá’ô¬›Nøw­l>M£â8óGÈo²Óü¥­0÷Šš&,…¼¡p [³p¼³!¬ h8=¼B‰ÅÍæ››a{´ŽÈa|Ð{ü 1è â›³ %Ò߈χg£n7N¿Z{LF79ìëDÄð¼çÚuqÀva#Û˜…|el8Ù[> ÊíM®g Û{iØý ÙOô¹T, é9‚ìÜ‹Ú5çS‚¹P£ Žá ¤)œ6/à L䤜T+ÜvØæIóEu$a±ez#ã^‘ 0\]GICm:êÖ´‘ϤeBý¾ YÛ¨Tšo_ÖTcÏÜŸ†—=’Šlˆ4d™üƒXZEz3Ì”ogl›‚G0ÖÁØÕµ'°†‡|¶Í蜑–0VUYÜ´ªo¢©åЂ›,ø ëFÀ*‹å é‘b:°.|€ƒ©1gÍÍLÅV¿NÅD¬ULRìæP9Å h#CŽÒQZÝ\ˆÙV-I˜ iH¢íc«ŸJèLº&e„#ÛOâ:£²Ow>ž sy ŠŠbœ0‘®D“¼|©ê‘ZnIr®RšÍrfŠür‘8&t£Øè!–ÔæS¹7O!ãûÆ2 ¸[¸ÖXÝB20)b3yÿ<ïŸp6Ô =–êØÛ Ú°×®å£øÒåè¹¹€a¯Éδ!DJ®º¢‹Ì©"zj/UÞ´c}™kPšO‘·g·1îPxè ¹¾€à™öZ%žÙ‚•ÅTXêu£)e—f.<#^qž,’—9yœx·ˆ|vAÿDŠØÑ‘¹”oTÓSüI3j‡ñ‡^Ä9q[8Æ@ñ³6„–½>2s—tÒÑ)µ½ÜžÅù[´–ÝÒPG`ëw޶·Þ ‡Õas÷¨¹÷Rb_N¢a"‰—ÝçHtwtÇ{ÇÍçGoÿ!føÔ9®–êÿñ"™ÎÏ‘ÁÏФïvUG¤¼ùg“’/´ŽÞ>ÿßícfáØg¼Ï¾ê¶þ‰SÊÀ#re‡|ȵþ“ŒNÀiÕc÷!"ÞdœyhA‹duE›,˜ácØŸ.’ôA &tù~½Ir›ª»š-#J 2ÊÈ×|Ë‚Uó—ô»Æ¥¨˜8>·æ[uÀ`W aEß@U®@÷§f¢ºmŽ|\%´83?Í^Ñ嬯Z¹ƒ•QK›^µKr,?Rä#5*8ކ|:éN3aeð6À»þ1SÑh,;p¨šÿ?‡4ÄÿdDÒÙqNˆÜž:ã”îwWi˜9¦Ë ÉÌü¸ÍQž]4üo{Ê­çøX Ø¢}PÁh.â— >ÙO•¡U¯—$ÿwÕÉ¶Ü \ýyÍ‚Ÿf½aØ¿Gq-odÉNïNª¼ûu,°êŒû2Ý:¶ÑŒŸò¯!™²X\Õ¢eà̧ì§A›â+òwÖü·~ö3Íw<ÂwLÔ«q!±Y²&x/-Ž:J¶"^¤ò”ï/c­²‹Ö 95ãtxzµ1Ȳƾ!‰†ú ô¨% H/ÈÀC`y6æP¸g hdÕŠÝa˜UÊáÕUaœ©³­ÃWU$Î/·v÷ä&ŽÛ¯_ïò{Ͷء¨Vƒ“ýßÞ~ÓŸ?xé¤rŸµ]úË/ä¼5ŒSIsõâôR‡ÕæNÞ*p‘¶;ÒÔƒgÙWø¼“NÜÒ¨:C¥Ókxcì.bîvÑñÇ9Õ<ŒµÊnŽÏ·¶ÿv´·…þŠtÁ9ŸÀæ¼ÙÝNâï»/Ž8)A`—ÒÃÈ »û/˜Ó9xƒæÕ#V¥e„Õ¨õ@{Ÿ`z¡µë¶âDØêº\‚$¨vjz!cK®±bkade$0V߃·Ç˜öð˜%K V/(0óí¿¡q‡ŽGWœFaW+sšì©„þòBã鄎`Њ¿úÐD³®>™ÍjÉŽ é£Xe EDŸ‚À¦®Y#Ä;I3£YwDJ-N2…wä9GÔ«™[uÂÍ¥$k.Eؤ­-[CÊ è¥vyc¹$šeNÄ.V.ÒÕ#—7ÏæDQgƒ®ð$5°ÔJÁñt™·âë±¼¥ë&×Càí¼ih–P ¸¬@ß{gZ¢Y‚ =ÁùÌÕ…†ŠKþ<³œÉÙóˆ.Zíùc,õb ûÚëëˆ1º˜êYRï$¢ˆe}›{w²Ä¡|í×Xk‰ä^x Ô| lÑo‡ M?”®'aù>è¡‚´F©·IÞºòŒ‡,öÚ¤ï—Ègée}oþ°³õfóòò²Ê ­ˆÓÇŽi¦¨ÄNÍ£ à'A±Òvç\}¼$‘o„gP©¶ E'œðÔjC9…ê ¥Cæ[oHÜ‚ÚtNHË+w¥Þ›|CûL¤/çø»º>-' ·ç‰~^nzãéÒG¦£xBc¦V§#²Ü|ÊäE£iN‘LôixübÚ¨¡Hì#·_VchâŸ@=$§X0’ÃX¦pÜ”²G»b®™3ãPþý[ûÛ?î¼@F$J3ÅÛ¹ŠQòAFJpüUÔ *탺 FQÑM¯a shSeZ¾¼T­f´G”)lbF[¤9ó µ¬,øˆç©åÕºÖÐ/B)›KKfé/1+ -0ä0xºûÍ­·Çpü9~{¸cTÅ$â‰DZŠü3N[:oŒ¾!•ÖWa<– 1£ê!}¼=‰q¾HH[˜ÓBìü½yôöððàÕÖñŽh4Ž,V€¿{¾õBÞ‘¦c÷xçpkÙ3ÙJØFÁ‡²b®øÐÄ@!:¶æê‰ºb˜ÜBWôVxd'0¡T¨BñžKq²@“51„k¬™©Vt+-<'Â!Òû7šÃ>9ë=óãÝáΫæÀ9¸£ÈgÈÊÕ‘_ŸVò±"Ll°«b^Â4ŠÕXã2ª1‰‘ÍÃIì½ÙÙ†ù}ëz#ªšûVt·óêï‡/F”¸2U¯Æái”iw7cÿÒ¢åìeͯ_ðóºfš©ÓAX·úõ8âÉYVmÌœjcæËCð&÷ÐÚ‰LΠð¾fˆ¸ßÞ0%ˆÅ€lêÀ­W"é¸H2U1—èPB‘AUÑõís()`‡™Í³¢ªö»Ñ&‘½á¿Fö’Ý“<òed«"’úÓ)â ]âÕ'Ì­ò{KGòb CSî=B kBéC†&§<è„B'UÆ­bv‰à—=K–B,Ò=äcbX œ©¼ÈŸ²@lóTJ‹*ÝYÏQD·l‰ZŒ—ËŽrL Ð>‚BÜ€™PkÃ|F¬åcé¹"°šKùö‹3„D;,d×X3€zGuwˆ‡ªrDB4î Aû°“+ݾãñ'xSV›6Wt 'u"CHÒÛÐÕxröÛ7ßñœ¿ÿÃ_ gülí_ÓNs›JÑ£À¯X1÷±²fö±¨«›ó¹‘·f‘ø#pr”G©›‘¥­EQÄCHig/Öœ0Âò쪳rš£Ë~€ö0” [C £ÅˆÄ_bu( ø›:2_æÊ¬gŠô/i¢b;@Xª9MeÞ#ûI#*äØwÙ›¨åoâ='õaQ(¾d6,a@à僾€¤&Ê삎Ø4j{AVdˆÜóжÀ—ååû ­ìF¡ëÍÙWnö‰vÍ5 f=­¥}õPO¢/_uÊÎþLQˆFGÍ Q©ß\#\Þ9em ÝÚþwØ%ûxbLÞtòj¹°* ›7Õ)¿½‹Æ0—»QìiË¥(çlsr¦xÒ´M8†·Ï•òTEwà)‹l.Z0‡K¤éL•æœâÁ߇Ž5Ia“g¤´ YZ7–",½~ZŒß#IÖ€uF'”œ{ޥޔeÌǤjö¿;£09eÊA#IÕãðŒYoä±»c¼­IBù æ|aäËâ÷ÐYÌ'rž˜IúÇÿ buÿOBN…Ÿ¯1™#Ýff&D•q«Yú38Š6O¾ÚÐé-!¿92\17œb4뙑ƒ¢¸?”€xj…™²0…;«c©bŠŽ:Òz ¾8=÷;öž¢ƒILŽÆ95šƒ“cêÌʆãUÑO+çKÉÊÏcû\f$gR°ÎM¥ ê)ŽÌ£,hOÀ¥“‡—ÆÃÛ¦K¹ »Ún§r¢ïs›òr%(çà]ŒF>qO–ñm—Kü¤‰hw˜Ah-ܦ4Ž'‰J‰5êC Ï¸˜LaW¨˜:íÂý !Í– Òƒ9 ð½¬å3­-Èϸ=鳯êÞá ‡SLî¬nKRCÈ)#ŽC«,I¼´D‚IÁ±&h-ÿqçð9Ft)Z vm쥂lJ…â͈ S¤€2|¶$Q€6Ýãvö7ðÛªd¤oS’öÙ"›ÂŸ+¦ ‰ÄŽ<.uäÒ=0í±ôÝ?li}ú¶I„©!%Ñ”üRçÑIØv(âÉTO¶k*L ©K]Ϭ^Ô1]쬴ÚU"U Ëâ{²ÍŠ1Ôã¤ZÐÜX±, ™U7;,³_¢"3â|T[£(NH[ ¸W¢ÞOÅWÍŠ&ꊵ€I,-jÊgAl'ho…gQ,‡Æ ›¬0çãëXi3iK#añ`¢ ÊÛ¿˜¬(k1sèt:'ÇðBF;ihÔöîáöÛ×/÷vþ¡ˆPùÔÿEWå³S(™¯Dóè81@ç–÷¤Äš)‘¨¹f%9|¬5_–¾ºÈ*#+Ì×É5Ëth‚•´,¶äì®raºúÜe`zt¢Ð¨_i¾¥˜ùp±puC_cèÇ44d<< puHªq¾Á¤¤ÖC£þ±®cÅÏâŽb²JÏØlB’™Æ8£R† ¦S®L†¾†dõðøK)´+ÉXm5 qÖÆ»‚öѵ’ ™ƒ°ô€™ëªN2çJŸÏX.w‘©œ›*Õ$.Ž2^ñmÊÅÄe˜ªS³åJIœ*z\èèñ$W-Jåñ&Jrd#‡›àõ äå°ce“°Z öÔäúnc'¨²ê[é:}Ý6u-0iº2hŽûš¨S¦ª§ÀWëkLøñm®Ö=@d†ë'LýìÇ(E‹üQ6ìD˜È ¹gMª„›n´(þx´§Ëd+…_~|=ú…ö?…;Gm‚¾Gð–KC¸‘‰zD/oÒÛª\sZšQµÞtGâžï‰Àˆ–iv«W!H¿(â¢SÑ•*õ!N5â7‚ÚvÕå¤Ë®‰šJkN×)}a\’¿¢=2+抢Ô:œqU¿^&â’FþªJ^L§äçŒ0Î÷m]Ö1]ƒg£ˆˆ<;[/^ïð€ú8ØÉÜ{²óÐŽœò¬Éޏ‹Øƒ„G:h… ÎjÝ'elÍE×À.ˆ‚[ž«Nïù”@Fb{-òÚ|wmGœNÝ“³LX!X)ƒùŽÃlh†…õ"vpBUõ¶Ááåzk Û¡k5`róÔc¤¦Kœœpì.RF<ßµzn¹¡y:Ɩ醅]œ'‚E¤ÒÆ.µ/ª Z! ? —¯ç¥³ú¨|nÂ’z3RƉJU-Y½ÛžVhø”«hÃZóWSµ¤”¦èŸÉU%NU ®]I,JQÏy˜HÙ‹L´âjuzŸ×®&mLlkû¦Okï¢Q´ºÔ>éÜé*0¹:¥•Sù=UáÁ†¿´.Nز‹d€õÂT0‰R+:> bc[¾ £¤+BÙ^W¢Q T4‰Ï0¢Ãú²}ˆàÛ"BÄ=‰ö`Ö™¸PûƒzKã­!‹÷¤°Q—B‘#ò‡»FQçâøê;¡J…¦Ê¿’ŠqKq¬Å1EšÖäQÑÛXÇ1°¾“W–ƒ¡ Vn]É1´ÓsJ!B²{/·÷›?PLáÒÚd"ŸãÁW±‡õª¿³{üÃÎᆊNËuèvÖDºÊ†ØF»,£¨„Rã¾’=:°‡ùD7蜪ϥ¦"Ê$utM µ‘e‰PAõ‘?sÑ©àǶD û TµSlÌÜw¦’µÊžC+è ¢ØüJñz*¢ÄVØÁåÇ2“þËÄMxÎí$8¶]Цp}çP¤1ž‹ª7ƒ…¦d€Ên¸-9¨M•Dæ1s¬o=Lí¢ÂUqã15cùö¶›———ŽJYWø­Q*J¿¾§z3ÎÆB£6S‘]ë–Òé¾€’'Ù5=µAh˜ÍÄTêÒÈÔ¶™+IJÀ&4qtÓT0:BM„Gr—Ñe‘Ö$§ïk>¾‰Ô¶dl±‹zÌd=¬’{A ùa¾ùT áÓ<³©<¸Mb*ñ±§l’LÖ3m™€ë )WÇÃÊI³­ûÀÊ}]g]H†P#_Õ’Ü>x±Ó|»¿{Ì]›Où¸é‹Ry ‘¿2&¿ÎYcî[¸ëö”9!]ë¦bXC?¼¶ W©2‹˜}û¦žÚ|•²©qe+\£í¾kŸ¿ŒÊFüȽQN­…›mr‚û–*¤Ž¼$ÐŒ>¥’|£Ñ©8ÿX{Áç_»ÒÈÃË p.ÿýš˜îø}8Òÿ¯Q6nå&õÆè›‚ ™,Åoâ‚E‹a4ÿ8tÖ†Ùiþ±€˜g"óGÞˆ)od>†Ía†ŽG#‘‡Ú·¦ð eïɽ(†ß°ÝÉ?"K³`Ñ— µø1‹ÄÃAh¸WáBüún#-bxà%<pˆ`òóID(#ï‹!©DU›ªfæ)ZV1ð’ØÄstdŒ”§=YÂ4[5•‘Ò&L¾Ñ"µ‡*C£ß5¬ò¸ØBÅ’/¥ÝØ©œ¢< +X—2¤aGHQiÇ[HqnQÃŒî%Eg NBͧl6Ͷ{RéM”DGvÏ8/ŸHÀ±÷vV-–jrœ8ðßa¯w•Kê¢LÄâ3cw³{d·öÆhÿ+Í£2ÕÍ_TøOå“l«DÊrö&Öû¯à‘°Ue.tgøñ£J¨ÐÎ)l•–ƒüÄ·˜ºob.”–Pq4xc¯Ä‘Kb+-µómŒ% ¸?%’¨0€ 3úNÁÉaÿþÒ£*eµG륎7ÖVzv9Ü.a¿ +O ‰¤¡2âjdÅ›Qzpq0´ªL+Ç[ëÈüƒt-û‘]õEäPeáä¥8ã{4¸¶ØàøTWéV£`hr-ÊIÍ%\±?¸²Rı¡n3® DŽŠ2‚Ôãjž×Å㞈µq¬±Ì±G†g¯D§)nÖ!x8†‘áÕ´Â+Î^öý‡‚¿­äC8ÂóÝLÏâÔ(¬'žán©Î€~>Â9éTnƒ'c` ÁFܾSI¤HR€’ß­­upvd—0v =oι%B©,L§¬ÔaQÇQƒä¿mS!ñ÷L\9Ý’ñ‘yL*w#¿p¬FYZ²ä 3lïVµ`Ñ„÷ ;“h+žOŸÛ¸L›ÌD gJ¶ ·h¼e€SFbÚ”ŠÖÄe®5rØ.©qÒÂGî/”5G39pàªýjêH2µ0ÞITç ’´ú{ ®ö÷jTúTÝçäË/\eúR8¢W´éJ;I¯nçò`å´à2àÔßK;aÍÿ!•GÁÒ—nõ^‰3PeaHec80QRú$×`ȱÜJxTûl•%ŸyµÙ„ŠÜ™³m’P!Fœ÷ÀjÓó°ÛeÓbÎá–æêp¬öId ŠšFÂWTG˜÷£ÂýþŠäšŒÝÚ[x”›e‡f Á2|¹š%½—¤þ£Än{/ÝZ¾¯ì!¶)DÔ7è}*(¨ÌB=GZRÙ"(„ë t¦ê¤ñ%,­®T¨ç7Õæ­îT±B%k“!Êñi]éÔ`Eç¹\¥æPL¹Tº ÝÖ•ÙHw§T%x]UŒ[Y\;Ú­óTªÜºÜNÞ¾Âj– Ùu¾60«ãn=ñÚa.4o±ÓƒCÜš3 GsF4^̓?”ç©uÏ ¨ªu7¨;Aymóãr帼µ¦I¹šð@9"F&Fœ÷æ61dpÙF¢%d~ªxp)ÊÜj f£G—Qm`爘¡3&˼TäÞ•/ÚEDcô„½âk¿À øêpç ± qŒ—²l‰Ë:µ4´äeCä¤ùR! @:³Fá8 GU$Ö’|sëªYSÑÎ8}|n^èxQÂ쌃Åå<«\^9õ’­&· ñ€0‹Õ×ÑsV´Èy'—cô…è&25‰_Zr÷ÀL<$÷<Â[Jt¬-qÒîsåÝMrGŠÅ="h,Ëê`Šuäôr˜,Ì 9ò'§^@Y);pñ4ºS,»°ÃŸoïn+éÓ✼YÜgò³áµ¢¸(“í•IŒuL†L¯~ÜFFBÊõ†þEØ¢Û»RЦ‰–yݦú§,he¦¤æ\@¶r{¤+íwÄÉlñ×#E!ædTü”ýŠ+[QAƒ0 ¹‘bT¶LÏxVpŸ\¦(€«o4ŸGÀÄÙr?t·ýroëÕ¢,YOùLI‘ÄÆâ°Þâ3çH¬]kÇCç-éD(b¦B”&F:ÕÑ[ÈnRÜìwQÎØ@„µœ÷\uZ %íÏuÚ¨«”#\÷Om©3ži,‹\,ÊÊ ¥_ìDg={2L®Ò éæu¿ú»Oþ”äpuvÅvZ7²"“ŽÖÓ1!¤"_iýa7ÌBÊÒªðŸtÄ “FÐJ%NòŸí i ¹šH‹×HŠk ø,`ü02I’ÌÁC¯†PÙÄ×”W|ŽÝö8,KçYÖßX^¾¸¸hWzvÑqz¹ +½âÔIäìL­6|¬ÖíšÚ0Èó ÷NÑÃÕJC…ø<Ò u øÚá.§äF·TÊœç¸ê¢®Ai0=y „™6êqrß„=Oú\Öλ¢Úr7#µ¸„±ã/¹íB7ëƒN¥®üm¼ÂIÔz±·§`Æh1hmƘëÔ¤åÝ€ûh8êJû¯6ˆÈ„òNÆc‡€bo©3 ïA=иڀ‹£ªü%Úœê^†¡¸‘°7”rçÝàŠë |ˆ4³L¦¬»t­6Š"µ¬u·œv@†gSé¯0ÀþäbæaãðÃCéR]ÄÙKé!rÕàÂf¾“‹öë¯ùp«å‹ã¾òÍ&ׂ›…D¬Ê5º[å€-$¤¯ãï±Hgê>é^6˜RãõlÔBnæîÁ8i÷³§š¹´Ã Zp}µÍ]€{kÑ¢ÅÔ(íŒW„Yy^†í¡?„èíY¸BwINsÙŽ8$e’{Tj;,×ìN87yúÙ>ÍRenõ5ÙvJë ¬R¯Þìyݨѵâ øßn– q‹æÀ6»ÔR¥´Øyß³ æ ªê9q­Tº×R]6ÚEŠüÕµï°;B÷Íë#A.¥K¿ ÇX&$4”2±±ÁªK".üMÁÞ™- ¯Rµu¾ŽG‚Ý\ÈE'w“&TU ÷/t|&ZgÌŒLu©D¥ç¶´ªóe*mO¨Ržü_ïÃ;©>8k·Is\cÆfŒµ“Ú“f/õ(6¦£±ÛXò'ƒ6ÜOTª$¬*o€“Wh̹ ¡j(/‰ºJˆ€ÓóШ&â£^yØ‹ÕOj`4!-@ðhp´‰ºC(¯6ž³ÖUžc€'gâ"à¡êsâGeA¯azÕݹÇÔ90z$éÕD÷!÷‹ñF#ZücÑ[É]ª]à´ÂŠ3£ÒÑRZ«}¬mak­ö^š¢4i±®Ší}lJp%¥ˆbÔS‘ØJ ê$ÙÝ{ÉW•uO|-êÁZ¡ÑØS ÃÓç'dk¸ÕÒÚzÎ÷zjzä? Þ#C[*©œ`Ä®órm»4¹®5*ÿ¼9â*›¥UÞÒœ—|¾Îˆ!;(/q‰î?ú½ ír¼üHª&yI$EòciµNø!ì&}â:Ü8#P:a[5ïy2è’ŠèuŠ© õkþ>ó§ˆí¨û¤{EɆ5:èpײsi /W—-3§ ™Ž|œM„¸…hâ–…O‰að”5ƒÓë‰hÎ~º&\™nǘJ‘Áq!_ž=»¡.f" F>§¨ð@²²+ð³é¹²j†bÖqº‚È5ˆ½•U?¯ÞîÖDþlÓc¯J}YiO7/Q€þÞA/ýmlPyæ«B6\Û¡BÝò»\oœ˜|WH €NÏDeë±ÒgârlƉ¸}U)Ý1…Òë“ó¯IÌ›{Ê‘îoãQß_âdÜ£‘f¬jla.­Ê“ÝË0HGRYó#Ô¸¯¨Ä@Û'¬Ö m°0w27šgö§"“œe±G=‰+»*L&!í´ËY¤"YˆÌÆV)sL9Mì ³4!mâÀúmf,)ÅDEnA˨ơkê+2o´Ìº¤ö£ï[Ã6\ƒZ2ÿ·~yyÂA”¡Í}˜Ev‰ºÿVËÀÛ{€p)&ä ͼÿ޶Ío4ÞQš`I×øŽ:[~g»I,“öáÛÔþcòV€ 4çÜE´•BÆŠ'ç½Uæ‚‚¹©#±!攀-—4Dýl™#4ý8‚Q"þbí©£fü©Uä6q=øeY_Ï)£˜WJB ö3§£·—ÜþæeòiUý¢#;Â"Lñ>iå’¡SzQÈæ8 ðF¼*ŒŸ=V„©d^Ú6AwÀÎfI¬>ëTý#Þ Rªëè÷ÅŽ¿lË84ª¸ÄPÑSBï¿>úçÉUr0­|¯p»m'ˆdOËØ@Mq2œôdL\‡²‘טžƒÒÏK:ù¼±÷R°]«äÖîK"gý|ÿTÑ!)d™/:¿mrA%,¹‚°Ñ7_Xe›ˆ#ý ýÛÎt÷º¹Iï’# v‡ª."2›œîÝ ÍÅÈ)1I:W:Wûqne³-Œõ|)SÒˈOØ9eÌ—ò·â.ìʱ." ¡—wgšMoœ S¡Ø«‚¹&ýÐò³—WS»ÊšË”ÒN¹ˆ³ô"l ϨëCùBˆ¨Ž—ñBÝ,e|PÌï×ax :Ä´*í˜e:ÆFÈe½Îï€jJó_ä¯ö˜ø›§ÍuçG@3`¨,bÊC¶Ê»žJx1ã„”.ʘ¥Xä*iÈ hžælÕŠÌ6`O¢‘#ðÓwÀ;Œl€5ƒÃ·ûÍã£ã#Óß1ßI¤õ”ÅC¡”1ö2QwL¾HÌÁ#9Ü\–ïJ4hºìî”Zúqô¬Ü)#&xª iâæ° 7Û·Ä2Á¹ß“ã•„öuµî¼TËî:Îâv+p ÿÓä7µÁ vÉNÀ•¯Ù=—< c‰fÓþ,FÌGf ½Óƹ¨K• óåkP±ËÈÈäüµ•Õu<=Àµ Ú*zCæöÐç<þ(U¥)]HuÖ#„|Õ•×-#5#ÌSŒ¢­ˆ4(ÚÅž% Ñåo±®…îzIü>¼JIqúï°³ÜWýzÞÿre<Š‘g²Î é“%$VÑÄðwE5-Au`1qÇ&œ˜`å:µ|}-Y°6þLúKÖùó-U¾‡‰ ¯³+U-×-‰;CZUnì2I~£½å<Å}Þ«5%|]ÉiûP>tÏâÿ´ÿƒÖ”ìKm˜ ¡“âð‡´‹¥<€øKª‡ã:³1°¯YÀíÛ’ä6Çì)TÓì2?ßðúl0ëqEsä/ètbÆ'ìKeXLXÅå)>Ò8⬠üôDŒ3æ,ß«4'êáó€wŸY[ø8p‚³Q9Ãne¬Ý²6ã;cõ«uêä8äøF8‡jõLÜø¥Â)†Ú³Õ'Äð!ì¦?H9Mä¬Dq²¬·ƒ>IöèuÊiåù> ÒJœ+·mE3<ÛÿCíèMÉÉ¢©ýE„»ÆHÑAî=!ÐzšÚ°²Í#NÙ½TQ¹@Sl…)N8»QŒÀhwA/´$f¢A÷’\g)ß'9W'©P$Ú,wÐo*¹(Y“‚9÷`#‚¸MIñ‰ Mî~SN|ÒUžšŒ^–Å]spFø)º¡Õ£˜[W3>ŽÆ' ÖY|ñ¹™x¦^oÎç$vä4¤R79ŠOAOÕ´Q+#Ö;â1vŸ¿nðe©£ùØ•}F$R±FÒ>Wõ4^Ž„8“+9·ÞìrösËV }ÛLïì|@Ùd¨Ís GáàCÄ!ôÇZ—c´T=nm»$šÉº.>L©¥˜˜2Nxjž@£fY³±jƒ‰³a3ÛÒr+Š—Óóšm ÓѶþ?ö¶QïЪowâO¥hµ¡4/*6€ö†G#Å8Æ\c—þ’Õ5sÖ,·‹—tn™z¸ndå#ñõJýN,pŒ¿dÚŽå2 ´Ô5ìq‘Ù|¬ó ÒѦ‚”Ò#: w‰S¿—@ªR&çÒìÙn4P=Û„È·[MùºJ´#rY²WJã²_Ù±°dñQuÈœoÍJ´’2ýã>qGVW>©¢ðâéXÃâárq—÷ðxÔW—öÂð”Ît÷¥0šQ£I¶ ;}„v" δº‹4ø4Ö™M™¡÷i¾;Y¡#ÅHú–G´U–ÃËÛç8DýЯgm÷èàéÓGßÖWýïôMó½ç‘[³ vÓ®¤â¢ŽÈÔ‡+‚< ¨È:jŒðlaͤæÑÁÛÃíñºQŽ‘Šg óšÏ¡/68%iãA§(2}Æb{®¸6Sqæ äñ"öd²‘ˆ1õÁP:É# fðì¨;ZY0ÉïX/å]»ýeŒ§ß¾“L/8»wío¿}g¨a…˜Ü)¿åÓ±“¹ö9Ñ‘ó´•b"c~TS3¤zo3Sÿ]ýßçÀÃ]˜žmnoﯯ}ûæ™(®‚£÷Q­ƒ€øG àJè4,WE»‰FÍ9Á€ôÀ@ïÏ•òå[Ö’ï‡!Kd²°4¸bð©_ ½w¡Ï‡-4ªw@€”<è,¬aOjß99Jª9›pýV.€¨â/å"$– ËDTt‚8øŽëÛã—õ§<ìß%ÛAlËvf[—Žï™¢Ô•a‘f+y Œ2Šáð:µ¨’Rä39MC+ðÂ'×7ä"ƒ+Ø }.Å@YÙ†ôšZH´pvFš@:ËUŒF×’Z÷JÔHê¨3f詘Wí(¢N6¬š¢4êB¦›‰ÉPÏáÙ¤ñ0l½F%öP¥nZWYXo]Õñ_ªü3tÅÓµG¥|j,ˆÕ[R²uÑ5ϥţ˜ØmÆ+IÖÀS•êþ"ôce¾TWV†- èGJ¼o׿e ˆÊϰ«ÉFÄâv+Ë‚>Ùc˜ÛÀÁëz`Ž+ð#B•þvoÇÇûØå¶žìs¿æÏ>XìHC^^šn B“xq< ¸Õfò d±a‹-P¾œ$ÖŽ"d˜ †—Q7BŽQcy®y(ìÁpVB09±•½´b 8òØÉ (—%vÚ .€­­Aâý,#/ÿ6ñƒ^ØÈ.³|*zGVò´?™ÒéÒ¢`žuíÚ&7¹ª®e Hq,o!wçHÕ’QÐUïÄJ¯r† [±Ð¹Ö2@©)$"‹ùš2$ÖTøšÂϱèA|…‡‰ßeýÐa?'ç@ÝÃŒ[’Ì~Ã_}âpQø\[Y{4¥íçÏ3<šÿ—cÄnrŒ‰ùW×­®¯çóÿ>„Ÿûü¿ŸáÇÎOŠÇI2;a5šº•û~ž‘²o4Ûp¥\Ž>)™x2ÞK9”r’×ñF¦ŒŸÎçMé¼ë]b´<±á2°6tåDÇ9m¸J½¶MǨÓ}¤êËé¼ò§ÃÑÛÇx‹L©›¥2¨"eÉMÀóÂt°:„’‚×Ȥ‚S1ÙT©[Øy#ª‚¸vªy¸ªauª<ÂGû…Ÿ´P›!f|è¡É t"ž ùLðw¥G9§G¢qö±†Ä¿Ñú¸F¶£:*Ä!æfhõ*Ê~¶0‹[£fÑóð2Ná6>aØ"½4ÇR³®—#-–UŒ‰ÜçÛå,)‹ª¨Î2º™<¹îî(¬Œ«¢sûá¯gIrÖ ¥8#LÀdEAä×VÈN$e†ØƒC#ï§;ùF:Úç©þÊ^LÓÂ8 á9;*Q¯Œ•º(³×¿ès=86†Ç$è-ëIÁAá­Ó·ðþÎß$gœå»£߉ïÊA¢¶žV”Û''iÜN›XéùÖ¥Šò8 U ?ŒZ­0øì(—C½ÊIšÖMÐÈh߯¹D¦ Ô †Mnµêí\5xD.I°áÑ)Ú+m­Á0ÏìéCheÎÞÖux:©R;9bÂéz¥D‡§}Ÿkäɯ¸Õ\½v9çü]:½šø@0‰ìIpv™Öò)Ë <{kž1>¹'ùT¤¥¯ Â'$Ûc5„¿ýÍ7*´Tiæ•tKÆg€sàùÛ¹.hyŽw7¥| Rª=ÇZ$R‡\‰(GP,VÔsR @ x¨Ú!1§)n\jÀ¼—½¸ÕÛÔ@òér1ŒLHÅ+Ñer´IH¸õL<³òNq{iØý@€|.gpãjt\r”Óe„ ¶Ú…"q¹¤Ad§môq'¼Rèa­+¶i(2™¨\=JÛ`•pãí³¢YÜBÕõ4»ê†v°™ŽI°“‹0eKNA|ÀŸ'ÊPœéYx©ò±îêj–:_¦oÒáy_øÈ©£©H)QT’µì´¤þÒXÇ5u$AçEØQ)uMè<òVÞt¼´Î˜Ùà­9kc…’JzÓBYŒ‹-aÕ+,·’5…ô^±$T£ô’YA¬º¸U“ÊÝŠ,îŒÐxâlLÝCoÜ-0É,lûšëúo™vÉ&õ ¥TÌ_¬O¡Õ£§÷°ï©¬ã| ÕùJP8 çSà"$Õш\*’mbNd¥“LC38Ñ&O)µmðƒ†øã’/•ß UtÍ:%½ÇdJЕD§‚H]3’Á‘i/9ýŽÌQðN' Q`C\HëÄ Óɾ°¨³›¡3òœíT*ɺµáe;ì[y¹»‚婢{'ì%¶ð¿I*›Án0m݉€º íjæÚÓÆWz€#_ƒù©ÙÓZµ¦¥(ŠÑB°ošRL{,ÆÎTk«ë``é’hŠùèýOtŽ5Àf˜†U»¨¨ˆzÙ«‘»pt1ÊX¥÷|‡.°Ñå÷Ë”ùjYïª*í©Þ«\\ŽÃ7¿ãŽ–D+,)—‡é`™|~)5¯¿F®G|„åøª$FHv7‡É±ÿÃñë=GÍ?¿Âj”qA§™ÁT¬ÈibØ)s(93âŽÒí­@Õ²^·–‹•ÒÀ¥ã¢Q4€ #ú¼Ø [ÌŒN±ÆÆYT‹:ÑšJW7VPHÉÛ J:í™6/fç:]0‚r°yPç>©"(röI)ä"lH_e:¶ë–(`ˆo)ÎÞ# FGØéRæ¦pIm£VÄ)‹SœHù%¥O•µ6^§ˆŒÆ¶§êX>Dñ¼ªÐ&)±qÎ[²3©×8” ÌÚUYœòzm¼r‹¢?„: ¶‘yò‘".Ê·\’OêòƒÊZ™H½ݰòFz.°$Ï+Ñ¿g)¦üP‘9ööKKz@-5˜äŽæ@(¶É½§ÙeÂäèDbÿ:. ]Tàò “¾öä7Ç22†]™ÞÍ¿¬‚®rQÓ$V;ý*€"ž¦bù±T˜+'A‘м(·^Ï%ÞbœžëŸJÑH㡳‡ .iõ©œ=g Ù\¬¬ùõ¿Xxüzù˜Í够1o&ö.íœ)©ïSc·üôUaR&*cD«ƒz2¨ ‘*M^i ¡ãŠKa¤cG\“êZfªczµÍÆHº‰ ˆ|kÖžª s0QdÆóY ¡9¹0b¦$=3á©&~ùÃç‘öe™ÿþQ$]²– `ê(UyË –kÞîøÅï¼1ãl£ ô…²”lêâ°“¸©tey¦s®;Óž;·ùæ;C±¤¢(o]O«é_²aêiµg„C¦Ý’2S”޽D¬4Cœ3òí^µv1éáÂóWŽ©G«Å&ÎC&‰!âVdÊbŽ_œ'ç#É*LGŒ[Ù ”zά‚åïCEe` ø¬ÒJÊ­Wp•’¬_¯KV'á>¢ÉàgGª0Bîsq‰æë2Õ¢N¥ìYUš$ÂÊ  Z{+c˾UžÁ)|tæÔ}g߯r`NÇgåø¢£LPc¥’ç–™k 9ˆ]É«8èY9ÂT\«ÌÚQÄð$Ad«Ë¨L;dNsÙÉ\2Ô]é¨N”÷^—,Š*-<ݬ˞å{n=“3«€ì 'æBuÐðÔ+Á%ì@>ïÑ©ÙMÛåDÉé:ñ©‹ n ÊK<³$Эäm#¦8ã¨ÝÄIô.ùæ®z­¤«æ„Æ8 É;ڟΗLC6PY #íG,0ëXÌäUïëùÝãœË¤hL£ê «¨öNzãÉ)‡Çìï5æ´r ºkÑù*G:§cìt¿¾6pç®YDçµòsÝ_è”¶ÖŒL‚rM˩˜†˜äËÁ&:0Ô‰Âq@FÍ]×ÊEÑv v<â—¨D»6£Y: K€.F½¡‹ÉËd“gÓ6çCKL†^-5w³0ê¤}R‰MÑ‚\P™—A£;œh™L¶è I‘¯jé’’ÇÆ+“Älà"Œ—»ÝP™¤|n ‹Õ°Ó¶JppŠg½“ [™Ú'³¼Mä£kº®¿H)=¦:ýä… B–ZƒoVMA&±žv‚½0ëv´Ã.¿v„¸R(R«mÏ¡3̰žb†š¤­6XMÑ’bu&®öˆMëRhE[ªdI–c çÏåi5ü¿³óëÝ”¼H/ƒ"ÒDvÿ }íZR-ä|¿TUZÉ~kk‚ôœsOÅtÞû”Hƒ³XÌ;ᑤ[‘ÄD!0©í w€ò¢¦šHÙðIPÏN%j3Æö)"'XméhF*. K“3àb; [*¾»¨™œ”¼ñVª4©±E–4ãpe奃©(ÌP:Oæ¦Æé`\ #ŒJpŠ¿[¬É®*8’K’©.Õ„rÎ: m sr1s¢Ý©9ZPG_Ð`LR4=?´sLÃV»·<x醬:S0—jùÄd¢Ê²™å×Lã¹äz¨cÄ/:Ão¶šsòpcµ«¯˜ruŽ1MP$uJ¦³¶pJNl+Ó´ª‡‘ÍBåpÁˆ;*gä‰ucé´ªJ©-¶¸œÁÈÞ°/†,·åéE´W@7MåÕÇËXx””€¶›x¢º-w}èi‹Ó§ãËCâ׸:ÁîÚ(DuMDëd²ÕêäMÍ?é3BüÃçø¶â™1læ,F4=K¶ˆî×!ùËk¡LB)Ö„xkÕÒ|¯ÓMAæ‹/'¾í²Z²a)1Êú;i;è‡ÖD•Æý„Åœ“ & ÒKªˆ–‰ÞpèÖèì˜_V@èR†n*Ĭí7 ³ ±IãÒö›*‘S·2´Îbg -ز}ˆî½Ty~Ô¢áÅÞK¢tq!4¦bOø•z¡©2miàÕTÏûo÷ü¥á ©:4š Šƒ“S2N ‡x0¤Ì°ªÍAõúTjIµ#<?»iý³3òJæ#÷¬*Ó¨ÚGµ™b¢bƒ#*içÔ÷— —Z³U¥mÀբÜÌܾÅF{·Ùu¡–òQ=JëíAÍf&¬7ÝÓÚ˜ðfLØ=z=î%ÅŠ7U¥¦1 y.ŸŒ+f8hvrÈ*,s"¹Ô‡˜Õ§F¡J¬¯ššü-v†LåéÊgE€©ª²*b’2Q_GÐN2 c=¡ª“¨`\-I廃 "¾%ÃL»H¨¶k¾%í"§vXar°kÁ˜—ºDÎ?Ù6°Wø­Ë5©ºh1y5àEУÈÖc[äÄ“E™ÝT4`™Zƒ0Á{؇»º›Euì¯ç̦#…ì­ŠÖÝ 3Äðš æèB`iQF§B˜Å¸eu Šú¶¿+½ÁœÖ¨žóvµ¢žo¸.º˜alá£/LÖÍÒYN#A½8MÒñóLµw™SIr©j–ËçÇÃæó­í¿ímýÐÜV…,p;aE$Î&G·i7êE™B¨>jvNÊ—‘¥Tà¤j3)d/­öA;&Ÿ ;¥>+ºôy%W+b*hO-Ö…d ­áÅÚ££ ¶ˆq”YwžÊ'£«!BØÔiò@{`9ušçæ# ±Ÿ +Ç9†ª`›ÜÒ8Þ›ÂCNU– eÑ¡pîZ®†Eûßã* 褢ÞUÒòܪ&,ƒSf.r@AÝtèHsdÁ†Q„h ›¯œ-Ç‹ûðÿÚË^ß N#ÆJ ¤UÙåÃA¾\)J>3ÞXÛ/^–F!’‰±2‘› ®·1iK’Y·×mïÈn¡žÆÆ¥^põ†=#«{ˆKË ¸`«Påöø¡›ÙkS쮳¹mÚTë×±«ÍuS¢±pŠD%5,ðco’m̽Hç“ÓSŒ.P de®¥lúŠgͯIÃ#§~2xcOWØHÎOG¿x¨Î1z¡áÎ6fUy§pr³Ì§@S²™Š¯b·hº¨£pcmÍ´½•xœE°’ÊÖ9ÛMSSý+a/*ªÛŠT0õ:K&9'1ž:í%ÉûVxNe*€r tm„e;>f}.5Æø¾ÈŽ"¹|ãíáÛ9©mƒ­^6aXŒ­ú"è†ñAÞÔVMàäSÚ0ž‚s‘ Ç"EYUo’«[—\AÔG ÙiJ{æ;y È©]ÁT%¾¬Ãº»t›«†"ñ|„«bJßé™]#Ü-ßÔ—M§Ç¥*R‘)›RÂ[†‰%˜œF—0¤ñ½±¥âïu²î¨{e«áPTuÆ ÿÐ0Vœ¼¢„4èb#b™òW““!aIÊí3êS= {ëèôS?e×ÙcGzVahDã°Q—CÞžk»B²âA•k>R3<+ø´šR™l[³ë¢.Úu‘‡=[¬„\Ïg-W(MYuWMlÜf2 [G©ªà©¨wÁ´mN‹LU¬«öŠ.i©¥nO`;q¹#šiQ:„e'0Z­!®4ôµ¿ªøz´1KAµ`[v+ù˜41éÒ&H+ V%(ºÇÆÖ§’ÅTà‡2Ǩ4T*nE'¢H™{vte„EK˜h…sÈU°ª¤JÌ–Vz8û,Z÷-9n¤7N¢0LpŠÔ xb+IjÚG︱EŒUÚ>]*a“„A³ÈÌ*§=²©c,±”ùTá–ÜŠëtk4êÚ×·mê^$á>Uî©ÆÒÄ*fÙL¢42eTÿXIf°„ÇArëñ4 ­øgÒ¸»ˆ$È Çv9–áM*V4Úf<òÏQ‡´È.Ðp¸l$7@;ú,åw×éZP£ub¿áÞ*HDf°¿gAÆZ¹\{4ÎñmårõQ~f\adÜÄFvYÍÐ}@ XSáƒÕTÊFÒi‰þŸj9(^‡*À‰ÑõÈ·Íü 'cªXdÌ‹k:À%Åd´ö1BõjšŸŠI7t‘LMM:³¤Šêit81±Š©Â\ôøäŒ£y;!kIÅ9ŒÉ´xFt\S-}—q3E¥DÛ5’D±ìNEvK "ö¶Ó^¬:ÓYÑ-¤ZxÚéB²…˜Î¹íÖ ïµ3‚.°ÓâŽs ÁMË$-§œÙ*Îß3äÒÊÐÞæHZÙKì S³K9o0²(øÊÑÍÒ°{:$B¬ù¢=NE¢âêOíäC!¬<¿Zð9P€3¢Ý#Že&M.ßthR“ïÉçÚç¬äSÊð!8…˜¬"»ìܪºcïì6×–°§ïS¬¸EŹœŠdPÓÎID¶säaâN­,ƒ8@ç e¶+†âÜýíí­ívš/v¶žïíl®ŠK8.Ô^Q%’ÓT„¨èðÍ$u6 ã;Yqþ?ˆà£0nY£Å¬lWUu¯cœeª®TÈëZ¯Æ#ËñVÂ>Äßg¬úÏћن[Åūʦf¨·´D£‰IA!_¾JU„2ö‰ÓÕgØé-cu™¤“Kµ~JM§ŒC›Y°d²ð~ìÔu|ÅâšÎ7LP«®’…jT)3þ´QÌ÷4.×SBôΨ$Å…Ÿ:e]’ðIó¢òwÙàWÙb±ã_=s³áqÔK* ¤h²àÈ*¾;JU©BÑÔÇÂÓó'A´ŽÝ–À% ´¡s‹ëè<’•Y7`ò¶1 ÉgOg4:·¨ôÛ)‘ †õ±óeòÜlQ";¤‚ gôyZTi#ÛŽ Œ"+áMQ4Äf0áåý €8øØ706sÜU ]Pí´I¬M`5ü5ߪ|H‰BJR*4ÑšœÖµQJ›éDôZö“Ö•£¼µµ—fAÐéš­®¥³OjþºšD”H><“2¤Ž‘håáÓ©Œ¡µ®|1‹Ü™$q†íŒ“²5\óRô5I— b[…¯´ñQ4h€éM+dõe×EÒ<`â~&.€¢/ÅÝT Æno¥còÓDúG(¨”J}ƒÙ-û¥ÖéãÓ‘Ýc/+ÞT꨽Y[ùöÉê£5µ;èÅ#¸Ï§žƒ¶ïÔ$æ *C¬|â) ¡ê»¡ÑXc¨gV^PÏÉ/ÇÉñà–7is®æ&{‘}F’ÊF%òžô¢X-¤ç¦y]åu"^IcÎ _ ’QKЦ–û¥êÙ;eeñâ ÎB#„Þ¥šU1¹ÑMT±§Ó“™j«–¶[*ÖSrkê˜ë¿¡îÙ~ŽT Þ™HGS–U¨ –ÑIAj£î4ç£f Ÿ4¦K½Jp&ªx®nZä¿Bé•ä§BùlSŒÜ`&Z·¦4ûž]ÆÐuQQuËŒý^ ×â)ž¨÷„•uϦ¤”:4×õˆuE§îð$¾ýеgiÙ²þ«º\P_@žM¨˜äV è<ŠÎ0uT5U!”‡ãòoIƒ$V–Œ­j±¾àh:Å_ÈÙ&L"V3€v¦‘”Ââ´­ÒMª\ÚÊ€Æ,–YNrêÉZílw†+©…ce§Cìæé¡}7¥*Å |0I·¢Pž—‚i’ÝNßšnÊ%Íw)ÿÄ®©H(Ê)‚Rùpá}A󷧪’vw[¥‡ZjEøÈ)Øcþ"dY>“qoÔÖX5ßÊmB¹8ô\ä”îÍiäKbz·ö™U-Ätj8Öª‰ø†NmÂÉv§Ì‹`7&³9­v.V†ÄȺáÚ̯kä]¼ó§ðøÃ…P:?òư÷¯qn~—DÅØîµNººÄ):a÷ñ¿­ÖÖÿ°ÛSÛUì¿e—íGuóûƒÆ:@!ÉÄä-™xuî_¢-œÔ—@IÙKÝœ¦KE)De†&G)ýù€~-ÏÊ„ªL­ª! {L9dñ\M[†Ýz{üÃÁ!3jÛoþ¹»ÿŠ'çÕ½„óÌîínïìoïÐïX€~áþôëÑÎöÛÃÝãZ€ÃœÀêg)(Îò ›´´^å•Usû¢ÚkâNˆò˜ÏmêÈÇt¸G?V;Lß믨¿Ïg„½äƒöMD ;ž#×8F&ÙlpŽ5îÁÜ’‰° 𥴱“l)…š'sáìžšìÖ´<–é´ïÉ)©sje1² ¤z¥Š”ËÊéܯ#ëI•gYO3¥ö\¢Õ!»mÂ:‘…(Ð-W+wÆVâ^v%ÉåÇsQxá@=`„¢XbŒ”UAFv¸Êµò•>õ¼IúåÑ4’)hT)ÇJ>CYk9‘;ía¢=a 5? >¨k\¾é7Fhz.¯…Cò ‰FrêhþCU_V-P©ÈŒ²ö#iIi*™‚Xe°4®)Ì J_Ì›3öI¬$)_yvämðÐÆ<†¦aœà­Ñ°ÂÙäæ×Ñ:h"ðtÈ®žI£Xb¦Ï;mßiRù…Mèà<äƒPh´Žt>Ù6e TrsÆš¯YvîU<“#DŠS¾*ôcÁA*ÕhÑÔʪU…®æa³„5¬l%r“¿”| 7oו§ø `ã"SF´"¢´ç´È¦ÅË5ßÉ k’γfƒDréF¹Zúbe?“{ϳ¦~¬2üõ»A[m”]Õ\I1 Bb:3Õƒý¯”lqlÎ^:.M•/ÏèÃR뮤0û´Ôºò{aÀJUD„W­Sç¨øÆü¦H²OKãcù|KǽÎIUú×cÖó«a X¨?‚~¢m…¨l¶Š'ëâ ¹\ZKÐ Ou]‡^¥ÿÅ$4žšƒO O©îöhÉá‘„Œäx¥Sç¸YsÔUаUJ+ËS‘âÄ«˜«ô,dì;yL §²PÎ KÅ=Ž8§×Ê”›¯$cyW¢­F+:Ci`d&8Àn™;-5å¡Ñ\iúÆ¡;IÓ'*óÊæUt>bnŪ8rªèO¥H´ÓùyÖNŽ ätZõ¥©Œ®è%ŽÛ+ÀNµUVa‘Iy?¢ØÓNumkbvà ç1%Àœ'©í.A `Ã÷þÁ±7âå>@aøBåÛ’Ô ã«£•mÏŽ/*Š]JÎÙxq^®‡ ²ŒýÖÞŸùЕ%3´}„£*M?¹µ£;¼¼"–sSÖr3s :aGgõv,-fÂ:æÁCU#O„¾~ˆBfÉIÁ<’0̲MÆQy*ŽªENÉ,#áTã‚©lf.°ÆËTö»Àx¶rœ ¥ð©.¦W®+SsŒ8W6åð5ô¸0y“Žd?E£:‡4Œlà'ouF´ñÒ#ádÌ*)Á‡ÊA/SºhÁè¾¶®¼sö–è¹l u ¼€Š§§ obØšFC©A-µÊ6n¡¨"˜œ|J•ÂBEEEÜÆ&ìwU†8³ŠVo³›¦SA>åÌrùb‰(8¨b‰A&É3F»$É™„{ª”¨¡Ô. ÐôtÕíqªîó\^7p KcâØ\Ií±eå¿Ò±îLh4ÓIÚvRn éо=+õ<ÅÕ,¿¥j·[lVTæ9æ)ôYs;YüVë5€CŸt&]eF«bs5©”¥VàõU¥e·6_~ƒ¶Ë ãœ=®ô”Z*dÇd`¦Y7¬º•J†rðÃç¯àÂ=æ1ÎLÌZñ“¹BÉTTîlЊ|§4šâDkJŠÑÇ[W+ç/&s¸cy“ŒÝŠÖŠU×LkÎI‹<Œ½‚˜ZÑÍ3»Æ°t뀨’zN ¸´ *~ˆDânký]•Î%MèÝŒâQ–z”_BðC$!VR»¼g„yd{²kF¨ï^®jYÅU¤€­ô‘wr ØÓ´Ÿp*1ìR™¹¸„½Z, L’ƒ?ˆb[e5Õ~,¿ÕÈ\TS†¬À.¥Ö Ï"IÖWÁN*$ypg©6Æwå=ªŒGú 1bhùæ’`8Ë’®lçb‹Æ”w¢ð4ª-$&*džš,ó4à0¶ÆÊ%€ô씚’J‡D™|É­NrEùéû¨ŸÊ ÁRHK—”kà¸T°¬Ê–ŠmûaGÏ*»ˆÚ¡$–õŠr|†ˆÍ™£[É<‰§Ö6ƒE)lªL«™Ð@åoý¢?‘D ÙªRØ÷Šº»ÕÂíÚIr”¸°² (æe±a·C£ÕI,£aM™M°3I&kä ãÖ”Sí¥‚2`·Ffç©ériÆHòÿouEJœ0U¦‰ÐhX‘›»Rþ˜þê ÓK‚ßÿ­®»ö[jë©Zƒôýº•ySÄ ó¼ƒdÛÄÃJÁ‚÷S«Xgô1Å9`’ÜÁ@:¢¬ÈT#¡r éd&†ºË„Å3úZE%µÿšÊlè¸ÖÑ«•Š#‘(GØL³ìXå™{H]öHÉÕ•Àò]¹¶ã¢•ýðB©L²ØÊþ£“k'MóÎQþ çKNñ~©#œ†—á Á,ZŸ:¡)œUšô Ävâœu8¡ÇN# føR•¦¢êÇÑVò5Ñ^Qúð¶\:ÊEõ•Ó#æ`ñ0£±¤ *çÂL¸vñL¿$!Š{ ˜Î”Fæxâ<ÂA—NGz®½•Þ^'•Ü=£ âJ@WJÌ–CÌ&Ï]ºÚzd"Ítð¼NAJ H°šeøÀA<%a´tÄ 2lÌËWÂßñä\4w/^‚¼‰ÌªUš#8N]ûïÀ~ðåÎÕ‰ô%`Haâ)ßk“[¥¾SqëÒXN᳇q–Z’¦ÊSid¡‘\$|±Â²}N2ö¹äØ•†³=ˆáddN¥ëˆÏМfÿ¼JQ<4kT§âk M=>˜o‘x—ȹúmÈçê±ý‡— w2 YZþU¢âøðí‡K›D2ÝþêÚÓúÚ£Gv†qï§( ÒvmüŒèµ·R¼tƒ4Õ±vi'™¸‹åcZ5»,û:b‹–v&'—V"qô²±UÖ驸Ìb±&s˜ùŽR¼Å ·gñ:¹\Y©Ÿ\>9ýYß~ë0êRoê“ÓÓŸ%þWi‚5ÿËîW´É¶{8ú¶.ãgŒìLÄà¤y§Úu÷}ÈhµTåСиFSŸiÀž•&0‡K„Šª¼h½qyLD9CaßB¬ôQ¬pO&}¯>‹J(þ•g+=WNÍ—‡•š¿À®žWˆ¥€?*úLñÔd)L•ÆiD5yÅ5MÍB•ã<¥Ôitj‹@¨F‰u¦w=t"TJ.ÔW³©!Âc¥Â5P>®Ìykô]C^|JbV\¦€ámÊW4}ãá¥0.®€®’D:ÝJCø/ÂýŒS>ÊfÊZ<ÃêÈ,¥3Ú0a—ïâYEQ\_‰ˆ—Qºg ¸;eA`?„ƒùVù)<†ƒä};I PaæQ.·˜Çl±Õ$óÐð´Ý%P×fˆˆ28y‚M/iëÔòH»E¥V­xgÃ{ñM)s°ž±Ûñêižâ!mç#AmÌçX+“æˆFzÈ´ œxšAeÄO>ÒT‹!Z7—"C¦zZìKúD3FCkòuÚ ×/Ô-@Öªb,é°y] =ÓNá†ÑUæ2¤åzª(‘=ö­SÆL²9H\‰æ¬èä%¡{Eº¥™’Òíš5øÄÔ;ùŽ7<\Oƒ2àèF:W#•FX âZ|¯…°žt5Ôtz{¾å¤‘+®æAMZš]Æ•9×Õµü÷ÞˆøÌ˰Åm ƒ¶óŒLº2C7üœ?“êÌʸi—¹Ç'núª¾¯Ñ"ЕdÝ ·,î‰yĤ­+¯(Íì¨Ò@V­}¨/iF6%éã¹ýÆ »Áæw3x¶Ä"Éâ±ovnÆzdƲʦÚÝ“1Ú\|vþw÷X|>5/è¡«56¨¿áC]¶N"LçTé®l¦“ïÂZ„h ôÛǧP©ëÐ}SÛ†ìwìaà^¯¯ý°ù¹8œ°Ì„7Aˆ.KpaèŸL¸pP¥»¢X%<¢T+­â6×ò°`5 4â3Ã0„? uTÐ2¢àS>QßN8öþXZt‚ô)V…AdD_ÓÑZì-uPÖV샒†hÎQ™ŒMŒ6ܵXòÓåè„áõtÁIËÑ5q1êS“ £<¶ô-âÜek" ¯ñes²m”ÝÁ+¤1u ôÊ=³r¬©S¸jŸ½.çúSšSLWªû4Sã{ví‘±ÍØ•¾t¢d8‹JlµäLkK¼)SÛñXmǸKN±Ç朓Z™æn´!JõGnhšE*÷ `YD--6ö¤z¡<‚<ã'³Ï8(3aà¨NŠü¢ù«)<•Îó¹ÅeŽQ@'®URЇÕâ^:*û#÷þ­Û;u²¿Gdˆ¸:)#õ¬0#9‘äíÁ£Vݛ͋{ͬ¸úHÛ^*œÆ¨ˆ,«;AŸ‡â !Ê)Ùꇡº±uÂ)ìFcwJ®–š‚ÌL«|ƒˆ¤âÅÇ+L“¬ÓÔÓƒ©‚ÐiÂ6o]f¢ô,•A×\Ŷ”ê,§á¹ÅzXÞ.Êž;ÅÝÃD•d.æ¼Å¶ øÄ<©¸Å&’»±<Ðj#Îc3’p6K–Kk¼dNžî¼Ó†N«Åë­ý£]ÛRaiÎÜIÊ8¥AøÔCà¯ýó€¥j4ð«¥X_õìÝ0QŠDÛHà÷Á®œ¬ª3/{"ÐÙAE¹¼º¬œV‰þ ¬¥©îÏSDxB‘@We,*ØÖWÑ][wÓ>Úõ¹¢­¥”ÍÈ´M´ßõÏÀ”X‘§1›Ëˆ§&àR³™Ì ìɦrIFä>ƒw¸u“¥˜UýpixÛÀÌ&=e:ž&þÚ+!‡n …¤ÃŪjr|5‰œ'úÀE™­ßu“o;(^³KöqMX*]<ìmo»yyyY˜Z“ø³nî"tróPÉ›õ„d:v¢ä e_2ZI\+ôÇsj¤•€ék„´³$WP^gײ½²­àÕp±34XkÖë45¬•isÌ&BûsÍØ‘uONG yå\'ðmâ‰X&žØÚ0Ƭã³5Ö t»jå&¤Èg¢`R–—‹ïZ®¨`V…ÑÓ>Q$j5gŒn٧ݨßÇͲxÈûz.{É‚5×R&.¶ˆÒ)ŽŠví^ÐWùÛ ]rr«(c':‹Ðž]A,¬x¶~ük sZ¡¨†4¢šYsñq.ž¨D³?I¸#sàdµŠ‰Ió¬ C8† t¡ËñÔ Šá°zš…µW} ÁK%”u˜¾¿êûöÒœ¬Ô¾Ñ“ ª?âŸjCû sv¿Ð±—€ˆO)^“î&•¨–¸Ø\c¯·ü%ötÖEb•«®Çrîeï +‹›bæÈÅUÐϪ¸d[ªu ù0ÈÝð·ÔQ—O¥'açPž#÷#ô¢äÜΣ¬yu+-oìÒ¶#´!Õ×ÌŒbˆl×oÃØy£Ü¦èQ¹5b ™âuR!X%è¤jrV9CO[‰õ6Ã9ŠÚæ`eÄ Ž1ŠÄå Bíµ5¦$Ñ.ÏÛžâ×ÙÆi×qÌ\¼r1k­Í@·S M Ëúžºµ<ɧý%Ò3%NÑâ]d;m — ,JŠ ¦¾R¿c9t»´Uõ “lç®÷¢áÛD5 $ƒH*º¾!…ây*"ÓÉcAGT§%±ý}ñÇØxmÿCM€Fo€ñF$cÚn}»¹ÓånF+Œì“å¢=iZ6‡ÿLE7Laî'tgù£«ì¯(~HÜ_!ÄÆ¬S `výúoqwõQ ‹ü1ié“&f 5VÞþg"5i¼nŸ¿‡mÍíâÖ2ý)¯›í³A2ìÃWc^ãåŠ}ä_Sa{ÌÌ•0Uºµ‹£V¾EøHkÆÅ–XŠ ºU(OyýJ:5àŸþAsHufÌ%ó5Ãs“.Æ-ºkåórºrûRy¥Jõ$™4tO*˜¡ß ð·ÞìR¶ó‘Nô¹ÉŸõBÚ”l‚f`ÿ¨Q@Fc£Ñí¸¯Q"4úhCcMݘèÿšiùÏ£´]þë4êuÊ}MÎUðÿòµåŸ¦PPIêNòwIvc¾Î÷ˆ¶_©èòíùºÓvìS–Fßm ä¢ÅÌV#EÁã››.§]ÿ·‰Ý<€Vikj|Ôa¿½¥çì˜Ä .#ÚñǦ)Õˆññ1ÃSiK¤ œªø+ñ?VG”ÄCR=EâàBÑ]IÍ&태7¬>pƒðе#…ÌäZÉÞØPžŒ*ÊF†#“ñ˜þM˜›¸sI9Óèu|÷§8×p\çÉ 5ùï¬ä4¹@ =ö”¼ÏEI'5·~ØÚþÛîþ«|Ÿ¯w,}žZÃÚ.žz`Éð=Ú…Êjg' q‚ˆYf ·ÑëÜØ+ðóøñCú~rÿ®¯ú+76ƒ ?CŒ³‡!I’MúnÚûüâþC~¾ëGmŒ øÈÄwÂÝõÂNlV–0C"\p]w“A=mŸ‡½p8¶Áûj…£e6+«++ÿS £cé¯þe/Ÿ4„?ϳ¬Ÿn,/‚‹ÆY”[H­Äa)!_ÕoɯÀÍIöm4]Æ+èʆò_Î)¸õø!,SÌ:Ψ‘~8«Ð"¢ÞFÀmVXŸLüm}[äù‡áÙ° üKÊ‹‚üÃÔÕ|¶¥tqdYËwËzo¼¯¾òàÚþ…ìJâ:p>öØÎ›Bu]uÿÁƒ,>Ô‹WÑ%:RðÁŒ•'ÓŃXÔ°..*’vÔmÈØÿ¿¦ÑY¬Ë6=x)9©bfã΃ìÈDùÈÈ!Än*ÎÝ_£ \],Z½`\&Ê’(J@'êžÅ,kg¡rƒ§9J|>\«uÆhh¿dëä‰÷±Úi&™ž¸ˆ1˜¹49ÍÐu‰á ³ì*sŠ©äx_ª»{>‡=OÅœòP6J”Û KtýÕ¸À‰#Y;$Æ‹aS&…2Q 3îø9` $‚¿ —öÊ·«f²Ü±ÄŽ«­U¿Ž[iÿ.È:scWÓ :gáòU‡0õz½ÝEGË:Ïá/#3/=«V7i-÷€ ËÆÔSõÔMØ©cN¤•Û¤m íäÃØõ´ùýr[íSÁî r)‰"o é*Úšä,Ù”ÎdŸ¶Äý3³?ß>\Y± ôû iAxr^=¶½QÛx„à”RÅA¸ò§ì}^7Ÿ×ׯ½XßÝ&^E·û¡w=œ ø[Æ s§èJ¼Ü ?4®zÝѹsÊá- ‘W0¥r  6€oªÕg\G›fÈÀ¹%ý(‰Æ¦¬B}ö駤œûP9~Ôâ èÏ_-§ð• û8º£z‡ÏØECuHSW̃t t}3¶È™i'üÿö¦‰m¿ñ$þ»›âÁÑQ ¹N›\’œuÃ:~MŸ—šµ±î$LŒŽOËîø/ëGíëx :>ý6v.ÐÁ)°ýòñdŒÝdwÄñ[-4ñ–q?^ÿe8ˆ6ͨÿ³öÒþ¤‘ÕêJܽo„ŸL MG"²vëR"Ø=øã²¦ìœ˜Þ>8ªaÞ‘®¨©wè—£¤‹©„jþÇ僣gßµþò÷ÞåÓÇÀë¾®ù‡»GÛõkþ›ƒ¿ïÂ×ëß®üã+¾Rÿ}Œ¹E9F¤q§¿¬ø“eâ]Xøÿ†Qû=¥…ƒÅ~¢Üöäé“"IÍÚc”oê ÇFʽeŒ6€Nן¶:+Ûõ Õ ê¶NëÁzkµ¾~úmëÑ·õ`í铜$vWÒ #áUQÇð?æó@©b)̧þ[/õE²P~.ÁH•”`ÙA¾`A3­&~ÛùöÛú·ÃõúÃõ• þt½½ZWž®¬=ì<]ï¬=ÉÉbßIvixš{=¸¾¿?‚ˆöþ»eõÐóÞ½{ í¹Z§÷•ÿ2DÍœ•|lñ ëKwáF^¬Iy`ŒÈí._`L …ú]ÄB!vÄa5 ŸBŒ 톘*›œEV:9ŠˆW_ƒÀt¶áéQüRä ©ˆ öòOH\¯§‚IwX^] Fªä¹ú¦íÀÊ5D0™VÛ< º\„žspCât*Nð`•Âa ¡D*ŠÖêÁþcÚR»£¦õŒÖ¬ß‰–F‰€+©âû°' !+å[®ž7Yüú+?Š üú 2y4IÝ<þç›Íèß'_ÓJ_ðúÞ¾yspxÜ„%lêÏy¬\Ç5ʯ–in¯Ð¦feO¢TÊžìì" wt°xr&o”ü  ÿwÁé¹®•å–„Èñ’2»è’¯óŸa.ºEYørÎÃn›a, W6Tö'•B–pfÛVío|XÕnûõ3¿¾«ºåuÖ÷ܿŋ¯žp‡õ®ØÉ°Ó—IµœfãP¹çÆ2}ºØnd‹þb'9“êD ~£>"7ÔSüÈÃthD]Â_‚ÁY»Fê„øû‡Ÿ~®ú¿JF§þ¾õÿ¼é¯«‡dÿྖ`Œp0¨ù•·)Èþÿ¤0aÖ}3¶L|WjÜóÊÏÕgº“AD2öWùÉø‡±W†è?PÚ¦Mn¼úó³‘OdõÉ|BßÀ’m”žô´0ŒþB[_“Ã4¹c9¦»ÿÚ‘—œ–Š_*'iíƒAºqtzUºº½û²&¢æaFý×ÎáAóxçðõîþÖñ0 Ë4&¥ºœ~’ºÜŠÈX=­äÕC«à•*Ûjôµ ‡šÝˆrXQ†9‰emÅÓŠ_Ú­ößîíUŸMphBñµ;…„»è=dDÀor7“°q7¦P6ÄKÂAù{Â|^êVQ ÎÐkA’| ÖQ4Žš_>lÄ`ý¾ið#÷Y“=›˜ŒA~,á…ÍÀÒè:hkœã$XÖŠö]N'{(À½A 5)¼¤ÿ†ƒÛmÄm¦;‡‡‡Íýƒ×[ÇÛ?ب.˜^ÙO¸#@kÁ‘?ü°ËE‚°§ïü•‰'äµÖúâQéå·u"šøÄg Õx\gSž5%Ë’³uÊÔ¬_R\)}²á/þOãAºH篡ê’ttÞ¯ûê¸1jy¯…ߨ_9'x䡦ߙo Êh¸ââèœd$õÜDgî]¨ÅÊ3ïf¾[Öü½§#wÉ;‰K£œŠ.‹?»ÀH¬6ü£€8Vâ´%êûįÁëö|“1;¨é0÷b½è %½£ÊZ ‚40s}2ü0ëþgîè¹$Ù¤A9)E’yå’ˆƅÎßb#&žó6ŸÕ pÎuIÊ`Ò‚eÀPýÀ9„RN]¬7BÍ–ÓˆÛ—,ÅäƒøßàC ªèË~ЋsÉÙ5™ja|?;¯KN¤þiˆ™öxÅ-8À1SM4ø"¦S1ËÖø3Òžs=›4«SÞ€=K¨Îæ®_’£F‰M00I¼A5‘† ?¥4–”¾ö²b½ŒšÚJ•¬\F½aÏÊ+“faß2k©:iøÇÀ 9¥tEî-Å=$2!YºÙ<Œ eLM:fŠFŒ²L2 3 ÿ=Œ€óæÌ=’R•b@|iALÈrÓSQPÿâå–š²ÞÉ?‹Å-)ßK­húI÷*ÌÂL¡ªs‚±*cŒö]TERŠ¢àꤓöIù‹^u¬¦KÕ‹8¦Ü“^TË¢M9›cÊРŒ#…Äc,>~pÖMZ¾Nˉ“à°»ç‡;Ë;‡;¾±“áS`Î~ÆHH”çMÂî9ë]¼¿‹öGêÛ)ÚIêÐ_]%÷’Ò}„éé°«’~; ¹[˜b¶ÐŰÛUFx}¦kNZBši‚‰Vp«Â&ѵÿî;˜+Ö¼ÿþòhÅõ½£§a{©úNÃÓ)'kçWÙ›(¶FÈcº ,. ¥8‘Q¾æ D^N¶N>ƒ”´Ã^˜#L‘©Š-_ˆ·@½Yôß:—„¹Ã'Zý1D¤J[x:0mÓå_’& Eo÷+·ÖÉI#¸¹ë@ƒÛCH%²7©óOãÒX3©Ìté fC{(JR¥ãäŠEp¥þt^îœøÈÇ×K¼¸¸h `£ÎÎØÒK«»W&†+UJû¯’«œ†t€Û'ǪºåXÕÀPÇ1n+?”Ò ´y*ÜY˜ëŒ&ÆS¡Òc mõŠW‹aLÁ7JÕxh·Æß³)­6<îö äŠ(ìtQ›œ$ïýŸš¯É©ÏQGYÓ¬†OÍ[ÊÜ58`wû”$· ¯j¢&0C]Õ¤í'NŸÔ{1FBúØ­ƒÅÃ0Bú-@ÌÛhnÉrýQ®[þ¶Ñ°Ú@÷JY¢È +¾2 ‰lû­]—õ»N÷{øOöýA®*y òS†¯:ß{ÃeY£8™3 ÚæŒ¯ð *>,OŒâwËò—¿ôJôECy (nÔjsqžaÚ­Öt;am­–¯~䦯£øÕß뗊×jB\°Õ€†¨Öl|RŸŠÁOlÆ `Á1 ZÿP?ʆ(ñ¿CØßnG&âïs“C;¢Õ”?¾ìª¯ù[ú5jõêäF :j ìÚámyÃÚá µöC#BVlõ¼|úäöÇO¹È@Ðëè¶_#›KÏ?$vw)ô><á¯ðæ¡ïØÖé/ÁÚÛè Y=ý¥~¿ýøaW¹Ý‘›WtVçü_d½Ô3_F´ò¸ ¡à'×u1tÉ8zõ’…4“·!ÊSZ2¨åÝÓÞîÃ-½Vu¥U‘ÇHè*‹0è¨Ü)ºB€a~›ªÜZTv=s:ªx§·\ZC•½†H/Lu]J¶8l˜ Vͼæ bJ(–š— ‹,‘À?¾>¢Õ!¶(žTK,,UT5o¦Äa/šeC;v¡¦ë#4 uÙ”ÀgÉhït•W4«$¾†ÿœ¤-7…i8ÞžÌ`=}'eØÒDˆE½pâ²U(–`‡H%Ô¬´®,@÷]£ýΔ¥Äê*â†jIÕ¢WQ5FùëŸØ þ祆øÃsa°Ÿ "Éñ›‚ÇŠ#èv‹äO‡Ø8¡°5k ?½£ÇšË ß8~eýÝ Ü‰i·\åÛAüí¬»A¤#ñ+8§Ðo]|ñ”'߃êJà¶;T~¸:öÎ;ˆrѼd¨¬MýîѸCÙëdsüIüò–‹KôáU¸ÃtÑòµ$ªÀ¯MÎ þZø.]7U2[[§Ö\ÿ4³6º`‡pöT aLo©Cm’³oÎáÐöý›™7¦ãŒ\8w[5Ç6_›ÀºÿML)«–œ êbÒ;DiŠÉÄ‘"¤tÜÿ=DDäZð–Wþ¡üYY]]%š×FNñÄQ”‹Ù z{»jfŽƒ¢?3Ñ(T ¢ýû4ºäü"6ÃÜiŠL¥we‰¥cÙ :Ì¢ÈÜûxT+sø!ª`Èþû“J‹l¥È¨¢µ¯$?͘  ÉI— #ˆ7­¥š@ü–‡f~$°]º~ø+;SQ·!kA›Ÿ‰·ýlY·«"®]ïJBq”/¯œ¤déÀ9¯f‹V(À~õZkRX·ÀëˆCuª¤¤@Zv‚\XVAüIûpC1&óäÉ£âøŸÕǫ֞ŒÄÿg·@‰`ັ*¶§=]Õž"XZàRc_™úÒRE4•dÒ|×;ëQ¹t»ù®Ñyçmø ¿i,ÞØ\P¯Mî’?Ì78ØÈ7øðÏ‹NýŸü?ûõKÁÞŸýg8gŒmÛç‰_¾Íz­UnÄSÙDõ7\¡¤%h`è7¼ÎüUï4†„šñÃpz‡Ù‡Q€Üô.Α*üä/|å×ÏÐ}ë$ç7úªJg¬šü®KtWõ³ÍŠÞ™ú¿ýz¸÷u¢A›q§½¶ü‰i:•‰ÕëdE¯ãÄPºÞ|²RyÆãUYªuSnøocvçÕyîV+Ïd]Ô0LÊò{fŠ+ž§·£)§zóµEõß1Ì+ ºò¸¿éW*£@—PkƒUÿ%>%½©qŽ{Á„cØÇèB^IwTÁdÛ¦ú'kÆ•~­áQ]6ÎèŒs1W苨@7ÀRF_ê*Ç.jÑ’*Qú Ž*ѹօä×S´±Þ‚¤à|µO7yrTÞ “¼ûǰ#Ói~[ûÞüþõ×¾jß«†ÃuÃÖŒ aHXÉVÝ{ëÐt®^¶g*„‹’O•lJ¦œ]w˜e*èpžxJÎeÜÊ •±L bÓý­nU†l¹f€rµad¢™C0.´Oq.%Â_Ó2h뙈âIö~ÿížU?‰$D´Q¯ÐS:y®•6xÜÚžÜzÔ%æÝ[±:g^ÃØð·@’ÝÐÃI¬aø *”ìøeRJL„Ò—Ä‚~zJDe%;X0V©BE{ó>ÀEャª]NØš7%È)QF¥>¸ö¬TsÅJ«Z ~JHèoéE0¸ˆâªS £ öÃŒþÕ*þŸîœw¶ý…X÷•®{ЧbR[d$s|vÆj.qÀ¨JªþÑW~¢îÎ;18;I]¨J÷z[-k@a‰&ª ¶Â1=ýKÕ„I Àb”ݺ~%TT ]A‹7RB‘p,ÓÁòeÿì!±ªÙÀÑŠS”€P¤ 36†VÈ_…{k¤‹fƒÍükE:áüÁôpWÐŒ†PÕ§‰Û¤CV!ïºO*5!´á²ÖÒ¦ª+&¦‚8dSø4ô›ÅÐÎPÑ™$ÝjX:ùp[)rXÖ­F&2˜ET«Ä3.w¯=òX]£G„Š`köœ ·HÉ¢ÄZ;¦Y’ôRÃû#\\ € ú~çÐÑO–U¢%ç2ãvðU£ø=¥µA ]Q®ù|ê÷Ü eŸ¾ ·ó´ÉXõ`€À©o„5Á1î(ž¤çj5Ÿ¡*a*cð4¿¦›£wùŸó—¹Å8Õ·ý_a\Coxþâ×€²–‰ýW€—±Ý|‡õ†h~zÞi0-«YÔa”¶«Ø+ÜžXÏ‹?5j-wÖC‰’·f>ÌNŸn.üÅt¬„ɨΖõXtˆ¨‚3|£Ò?ï½$ɨ¿†Å]Å*©q¥/Í2Å]ðÞË ÞfæÁÖþ?GŸlâw¤ú˜Àgqdû0zE3S/rËΟçI¦üš!Êe@ü—:;4Û tÍNUªCÛMBF-‚ò*U-®ÉŸ/a‚ôíÔˆe³ùÀ#ÿ=6ÎWô`íû¯Ws¨´°æžÍÇ;Ýœ²)µ®ä|Óçè1!ŸM½æ}&÷LoÔ\vÔŒDþm*YBE}—¯ëhÿpÉUÒ7õzÅ·Á@A@r*žÙƒƒdƒïÍÖññÎá¾oè %–£˜ª Y™éá6`z%÷ªô*Ö¦¯â:ËXüE²øÙV²>Ÿ•Ô;>÷¦<œ×RÚŸ})ngW ^Îcç¶Àó/d…OæµÂî²À§sZà—²¾oç´¾!ë[]™¼Àë¯oçÇÃú²Ê) ÇuWù!ÖQ]Ÿo-SØŽk“”Ë[XËÆ#ß1õ‹I¥â Kó»°×_i¥§¹õ‘i¶~ê}½ÓïgÇæåº[{;{ÛGp 7s]f9hµyPŠSfiêFÖ2…q¹æZ`)S7)Nb2ΠŽg~ë›Â¶\_û‹ ·žÄ¬Žú|âÍê.åÚë‰ýÅ%kE¿w’³“ÆI\¯W?ã⦰(×^\‹oøF(^Í\èÄÚœXìÚ¾ºa†ªÀhÛvŠQhaú9×7'V$ÞZ÷O“áàs®eN¬HüüÖ2#+Rv-Û·°”9±[ß~þ¥Ì‡k »…µÌ‡kÀm©ßÆræÄ$lHúÙ×2'!~~‹™C°’çm,h}N,AD÷L‹ó9'¾ "ÆàKY䜆=ÄÉË[_Ý|XˆÂ¥)9pn2àúœ˜ˆô¶Ö3'Nbϯ(C Y¾7 †™‡¾~ˆ×LxIëèé°øËIcq þïäç;’ƒÂ¢^ñO¿lÿ¼hVí›7 Öc«ÁÒó SýËSû¥~÷ºèáÛý[ê|8!ñ—¥à›êƒ“NYõþÅ ¦¦­_©ê?þÑñ‹ÃC_ýÿºp´¥éûÚ š“½hñû“Ë••ï>£Å|^†¡­U±ž&â®hùØ}¾Å=œÂp]{qÏaqœ„êöÖVÂ÷äºk«'þâÉÅ7·¸¸9¹¤ðâân{yóòSIbuè~ÇýN8ú×5/§XWc“ˆœÔCŠb‚|?ÛêæåÇ‚«;Í/ƒyA?Û"çåË,Ó0Æ í°S]¤Íc%š•s.=§±4Œ)7XiväfÇ¿¼úHÓøév¦Q§Ì0›«¨'žó”Ê#ݼ܋^^ú•­çw¼°öσ8«|¾“4/—¢—·¸¦yq‹/ÿ^loá¿·¶¼Gsâ+ µÚ¿wÂÓßÏΣß}ß­/j.êœGóâ_ð+˜ >IAH-^ч¹¬h^ìa‰7%¸ä×a¯Ÿ~ÆeÍ‹-¤àÒ:çÃNo•C|4/±Žöï/c‰sRÐ{{q¹…°Ÿ¦ÌIÿÖ.ÒŒmûÝàc1 ü`.‹›“E°îÀ_Âúæd%Öò³‡ÌÉNÈËéöõ<ž“™×óÙ£?ÏÉ (Ûóù×sC¶?{)”¸N©›7WWVâƒ$É×Bï©Ø2ÞãKßO«ðׯg–ÓßaÐÝÅö¢¶Õòÿö¥.~nÊ­Uqé/ß!©&/ý¥~ ªégt¿|<7íÖÚ±¼yéµ’õ/byóÒ $«_ÆöÍK™ROâîU]¥wßü2;'†æC<"á~öH™'óbn9.ŽJ6ˆúÝpã$k<8‰OâbõÄú k¼öTêñ-Îæ6!1§¥—G¶9±ž0ø/+«¿ÿ²²ÿ[ÿ|úÉ'sr;s1ö–Ö6'¿õd„æÝÒúæä‡&¸øÙ—3'-W*~ö¥ÍI·5?ûòæ¤Ý²ˆâg]μ”YÅ4ñ³.mN|à’ø9—÷tN¬ ~Ò‚õÀÖ>ãjæ¥ærñð„—ö™×6'¾£og}sâ=ê­!®ª§ÑÇp“2Tô‚ËÜÃ8|A9žøætYOgdF¨ß‚ ^7s$É‚•[8¾Ë–ùf\BƒÊirù» …ý={R™ÀæÅîèEnŽD¥ƒà³cÈ|˜ XÌÙÈRØÅm~K™ÃSi£®)ó^Êœ˜·³š9ñ7»·‚fßÎK³Åó&J‘nJ}WÖXÞÎ:çÄè·³šy©Tœ]£"î·²¼yq6··¢9éQfŒ§ù`ŽZßÎ ™À©Ð7½Ò.6?îëÛÏíGAwjñv¨ß/Kù³‘? #ú~z½ýög)æŠ3r4ܯžìB%Ï·ç>xª;÷Åó Sðѧžµñ5‘‘”ð|œ@pË”ßÎÈž}¡û2²ë“6fÂ.~Ù›5#÷yÍR¬Íû ùó8CøÙæègk_Âî­®Ì+¶ó‡dmÄ-`Uü·fue^ü»³Á·³´91òñ—±ºyÚG-}yÔO‡½ß?ÿò>…#çQ‚ \“W~‡o渆kqÑÁ˜{?ÀŸk_çù–z=èv“‹z7IÞƒdwê­ô=;§ü-!dÌõ=GpÍ-Eú—“C|N Éö¿¿„°ÕyåHwøŽn²BnÍäû˚ʥ“Î7Õ“Ø_jTOâÅcÒ|–‰Ÿ<ýSÃ׃Vû$î„§'ñåÕGz‚W5Þ§PûI~‚ ƒø÷Ÿ~©ÿ\}í ¦ñ<Ö?-/ûõõFþâÂÊÆÂÚÂêÂúU!3Íçë/g>=¬–'0 Z áÂéÂ`![øðÌ`õÛ?þøÄ©ÜX’œÏ?þ±ð¥L¡sùP8ÿOž~1PÒÓú×—2£º¨Uàš;¨f {s’„^ú‹';TQt‰²«EWÙ\Ò¥¬Î«lÃ…¿Ø¨Êg\ËœDX ¬ãwXÏg\˜ėףñ‹‹i ²ŸNÒŸ¿ ãNÑ_Ï#®mt"õ­µÛ›ÌíAáÆW=–Í(F*FØÖÎŒŒêˆák’r¶Q½>{sØlœüí–§€`ø)hÿ|ÛÀ9|0^î¼inìm.öÒÍÕgk+‹3˜gæ9·NÊŒ uRöÑÇjŒ«0ñó µ3æžÄ[Ï·OVþñÏée,ªó üöbçåI ÿÁ‡v“µi›`ŠTgßi[nãW¥~8$q˜ ÓÆIü PŠêÒåÕÈÊnlš7ÉÞÍ-ªÔûí µÑ7Wt Ž¥*ÿßgSþΫ¶Moõ5+>y7¹s²Dõü5ñÒùœ«™Wá@ÎÞ­¬g^yÚ·µ O‘¤Â˰í¯7:ß)ǸÇuñ²(-úß}½.ž‹0àâ´¶‹ª ÿu}ŽàùáìVÀSÐö3€iNrEM’q=ÑâHó³¹pùÛÃÕ?.®­/$¿­®¬ÿ±¬®<|´©üa¥ßI÷E\ç†9Ù·~ø—¿x‘ Æ$çQþw!ø‹'++À¤.þuñæE¾îä)ÜÞĶP¹üÿó@éõÿºi™|웓ùؤ¿}.>é:„áóÍn†½˜‘)W¢É^²hr£Ä'~^àß³ˆ"[«>õãJ#óÀ¸s-¶@¼…ÿÌD‰²~}IQ¹â·&Aõ&h^©mÉ}‰„± ç|ÔÃÓª2]?ä2—mJPa~úϸ¶%9 •ÿI‹.«“¸ŽùÒ*²úÏSu’LŽTÒgPxtÅYT,V ‹Ý•\¯ÿ»Ï£Ô˜Vj4—;I˜.ÇI¶Lµ†_ äæªE àDãPyšxê×ýI|õw. æ¶â¥‰+d‰Y&.mnk¹¦-ãA/Ì‚'ƒNrÖ˜e ÷Ûª¹’×UÞÊÚ¯©ÞZ][>Ë¢ GÐêw? Q' tžhn§eÂ$¾ˆ#:#ÿ;©z– к|YŒDw~SŸ‘©ÌCrMà›ÛÜþ¯tn®C¢bJéps=º1XÊ5fóòòFgMÖ6|4œ&î \sèºãß|Ÿ/æÐ§ÃN¯Ü`¿:¯ÂLº¼–¡[î„–ãa·{ó#q¼³uÅÏk<•Hâsg’‡ÝÐ`3ÐÇyI¦NÞ±5ß`ž™kf]$Gzƒén¾òIôÀgþ`§TŒ¶t°Z²ªRíw“vw\:ì÷“AÖðH.Âá æ'±Ÿ&=xs•Â-žBoKaã¬áouû(pìEñð²Š]B”nâ$×ùëÁ°1’æLOä×ašA_gaxbQÚ¯øƒ0vaÇØ-–תù!7„¿r#Ôhˆèº‹2œÃ)z?ø½(MaLjÙ„YÏxÁçÒ*¼`f>ü^öÃvv`­ú#èO|,iVaÚ˜i§Õ÷ËïÒÅyÔ>W ûÞ*ÚÝèÔÿÉ_ø \Æ¡¿âÿü g{¾D·jTÚð_€C°ÌÄOÃLõÆÿ4ð_JZYÛÖaAqo»¹}üÏ7;ÕülT×€Pk#±©Ý4ôà ½­`@èokoï™îwÓ V!BõnÒ‘ÈÓ•\ª…øÕSÎð²¦?z|?=»Ý&ú_ ÒÍwªR»îã|B¿¬,ØŸVü?oú—þϾ†¿ï+5}çów~g8@dðcß~…>çi¹½Â‹ÓȃÿŸ¹æ™Ör) ùÀ¿p‰1Æ/’ϧäšV~ñº+·P‰q6H†};¯Ä7ßEo8¦†ß|B§Õbü´5ÆI~™·°Âõ'9A»tÙ±‰f>[]ÍÕYK2rÇ#JÃÿ¨%ϨUùÄ%×ûI]ÖÅÚF\“ð§_,®•è!ím`® ’dT Ò*M€ŠŸ¿lµæýë¯'Máß° XÀ˜ÆóõµR 1¬ÿÙ'îz•jí'ƒ3Å'¿ÓۇɼJYÆÛèÞ´2*¦ýÙâc¿þü!G=ðèÓ³( BÍ~rác"Í`’,ÄÂJ7 íÓb]®ÈAvOJ&žxEóÄÀ䃶ú 9Z<Ã4 sþ{Áo_ÖŸ*ÙÍ“~†ÙéS%Þø9ù÷ùiîâ4 Ðõ8hýét?Šý7Û‡;k~7j ‚ÁUņñï¡–þmh)†Ï£ðxp…ÿ„q:„®.?%»þõ!DÉírk£*ùÇÔ¿ˆº]ÿ"¼ÇñÃøC4Hâ^Cã 2_`ó8ô‚®ÕößÃ0n£-€Œ™7ü ý:Þ–µÚ¨PGëM zJà)µ ã Û‹ÎÎ3¿Ë9â³°Ó€Îvã4 ƒNÍ€Yè±ÏIž¦L–Ú”E"‚y’é'Œ¼{x´³îôvï/Bÿ"ˆ³ð÷¯¥¦é•:윅·³0S}Â_ƒÇõÓlÀ–™í1äIŽÊÎáÝùUö½á°ñ82M„8É}> U؆­ºÒ&’Q¦=¿;Lúd€Ù}@.=;Nb´Fƒ¦õçÿÓžzj÷§qù8ºË”ö‚ðëûþö!pôK0Ûßa²¿ÃLI"¬Ì#ðøùª=& wýQf‚Û4ñAÃmÀiö¹=èžÞ÷^¨0Øg‚á4Ѥ†¢PÙ|§†¢'á]yø¢§]eAºúLË&z|:ʰû`áõK… |–uNC>i¬-ø¬'#7öç£1ÿ?y×þœ6²¬ÏÏ©Êÿ0«218AFØ›d}–ìqˆ}’»Ž³åÄû ñ–€ÁÖFŒˆ6NÈÿ~»g$! KÚ{IŒ˜××óúº§g&CñùfA–1̤äY$Ð,¥jÉ€ãç€'êµp n°rUÂôp晡/ {ó½pYÒ/¦¹j$KýËßÄõÔ6¦++|oÑzñ×;[7Ì(ÃŹøã ýátSÓp@ ·dˆ4h ¡Òfæáât6Åhœ£JÏ7£”d¥EU÷VŽ\Uµ{~šSÌvm˜ì¹Ä6¼ž~Ÿ_>?Í« giÂAkÜP#~5Фå‡vˆ3°‰Kh‹ö\Ð;Q%ã:³èI×ÎÆ*yÅ=â&–ã}ÕXPý ùƒÒ7àÚ3ôÁ ®bs˜5G¨%t‡>"Ô@ç>®_;tàÚxûˆXü$S£¹ž:Êq Sª7Tlxˆ>jý[ŠkŸÑ!±¡Áw 2×w¼ý•­þŠš“Õw;|Âö8@_hÊÚ§ÈBõ‹J‡Û™CKBîJÔ’ä/DbÏYXDZ^Àíú»F]Uëj£Qÿ©«ìö ¶‹IÎíK퀼ßÒ>À[ßö>àÃöÙšm}ѾnÍH}k¿oo5¾íxmÛn–Ÿ\YÛG¶´ø?U]–£ý¢i_?(weo#(Pâ)«m±»,Üþ¦…›‹³€R~¿¹yÉê;ÇwXºÇyKÇz‰Uòêø2…)¦•o×NçuîŽà0‘;ÿ–1-v“Ó¢?ëÍ“i­•L"˜ãÖ16ðÅéR¾$—ÎרÓã<~Æh¿²¡yñv6ý¢?Þ uet‡uï5KYî¢ÈüwQu~‹"n¬îÖh¥çd!Ï ¡fÇ^ŒÌÛç-4’ÍR˜hayé ñ{‚ð´÷e” Ÿqr»~„ŠÑaH*y“°©Ž D½üÌwP¨ýÏm±Œë!lM ëñŒpù2ö×8>¾e¬+Z>,–²zz±¹è›¾¼Mv1©<³JV‹ärj Xr„‰µ•fÅÙΔgPÏ2Šiå’è¦ùAC™É¬?Lpƒ „tl0èf  E”.\›œR{`8ÑýUþº!ÙJï[× Táö' ßG•l¾œiø;´ÞüŒ‹ŒáŽ)c<±!Z°sëšÚú%ŵ:×€ª8|…Î×™æ+•ƒ+:øÈ{o¼Œ g@MSç‡F(ݾô„W÷˜¹¡ˆÈÛÛñZæ?;:0t“l7§øÚ&íäsÞ–·IkáyüP˜ù·‡š`t÷Ï6ÑÖŠlgF:0&óPjʯ/x7j¾-OJY¶Û#ŸC*aT%)$;Ñ ,öŠ@MJÂp‰~kÇ£A]wMª3âMÄn#¾ºu̇ñ{ö88w!båmÕRÛ¿¾>üïôÓd¡ahažGlxï_ÿ”oßMñ®µÔý'»gû/ Âî öuWB-x=~¼Ï?áÿÔ·ÚZû_Ú÷­'ßïkO´½ö¿ðáþø”wæËÃ5}ÈÒ¶¬•X³~O‚û‡¼þÃÇ/k4ºïþ½ƒµóxgçî8Þx‚Î&8€†Þ%‚†‰žwSþÔ§eèÌhéæ&‚ë‰hCÒ‘î™0ñ±=p2sÌÔ†üoA×ÜR¯úù‡§¡ŸŸuÒGŸ¦‡]=`=ù¤3G@Ç}*<‰žÍm‘u.‰Æ\P¼ê0 3ó¥­ÅdîË7ÄìŠè(µî‹š‚‘`ÔÂZ­}ètÞà‰…Ï:µ Z­7¯~`ÑȘQ22>[ˆŒEdýôÍ;"6ïG Aê÷&µ³ûO·âd‚ÇQy0œvûD»¯±$Q^¸´DÅk$ŠÖæÝQ ¥c§£ZMÇV[ßV"ÅSHó×íZœcü 6ËDº/øKÀ}j j~Õ¿…`Õ¡û.6rÈÜ´R±Â±H¾ÅÚ±˜JÞFvÅ‹V¬s6O·tS‡Iž‚"-::ôaáÂ6¤8W£ùÝ¿¡å µ„›Ó¶fŸ'(À­ê7ÀÝTró¸‹t•o½ßæ;ï1ûGÄÕùÈ3àû;,b\2 ½Å>yºi¸·aÛŒ:ÁÀáoŒ Ù‚‹¨ø¿ý ß< ~p?@ÒË é…!ûY!ûa;‚QƒoPæÎnŒŒßQdÎH!ÜlFêîíD¾? ƒ1¬Á¼U5¿]ù-Ø[°àtt8nŠ¿"c"ߘG!À*<aÐä㹨h¬+d€Ð ¼¾ptQ/¸ƒó؂߭‘*âÓN0 ;0:Djó!&r˜7˜>¦a?Ö°ï+Ê‚ j¤K¢ôÑ:!ðŽšì¶ây­ðÙž>ÏI"1BÜ2 ªÉ´âq–Eʌ׋EõCð>ÞÕ*#ƒô@Ã2Ï¥êž5μatùìô;ýZ7L½o`ŸÁ ŒÙg0FtDkv‰Ç ®óaûý MÚÑÙÙ›³“£_Nj±|‚Ù1X„–u M‡¯F¨ †Ã¤Ö 99~„Åà_jd”L޼L *8Ë5#™)E¿ö•3!d§C”“c…,>=<ýcÉct«Sæ]42{E¦æ)5œ^$ ûëó?µ‡Õá{ÆÔ_“ë×׆N‚íþoñªƒ ¤\à‚PÈ,\؉ iðäNŽ1,µß§…j:tC%è€Ì‰R`ˆãÌ úYâØËmÎ<Åžýˆôüo‰HjRWÄ·Ø€6x%q迉’ªoÝáÏUCçÛzðð0P¼ë­†Šz¤> õÝ^ÏÞ½|D”ž­Äž2ñ”ÅŸ¶ÄÓi«}^«9ø|ú<¶¬zƒ|!6u=›‘Å̵ùÚhgB„êߎhÆâkÇ—9ÙÝeÀç.- –Z_Û®½V[ê:"‡¯˜z:ù¡iÖ£H!‡úËêÚ¨ ‡e_Ë ÆËê;;œ go1‹ga-.p¶¬„áVyIDÖV¼¢†•û÷êϹ†#2LfѵòöúdbM†‰­~1Ϻ‹èX”³6˜,ÇgyÐ(>žô݃…ÊòÖͨ‰vû²«(Ë!7'¢Aùˆ²\oåÖQê¹(…àÌòŒÍ‹óªª@³&®÷;yh8?@6¤ ” _éͨ²à¸lna+fýÉ×8_Ž¢=&l‚%jRZÛÉ ‹¥†w¤÷Ôk6ebÌ :91¢üìÖ,o(iK%6€ ê—JLêâ•·† •8â›âRaJ¥4x¼¦‚'i– I*¥aÏ«)¥É€Ô­"©däð‡ ’É= ÙU’Lî•Ô¬*©Tã4àò!I¥ìy%0I¥]Tt++ë6î¼MœŸ&«øR™X¥² ƒÓ‹Êb•J;N°¡N«R&IEÞÖT˜ê™uov¾Šs*K*9!M›„Wìt"Í.|H‡8—ÿpO¿‹žª,ȅ̈ƒî…´[©L&! %þþ¢ûA™ƒ'ó_¶"#êÏõaã§§ÑÃß^§=%&u Ly† ?–é/ w±ëP#JŸ_q$\Ä-TŸ©m•ˆ1ëÚ䜟F}äún՘镓bÓ"Jïæa•0JuÖÙËÊ¡”ëÁc± CÎØŒ7Ü2áÉuçxM¨91â4)BÄ¢{–R®‡‚%шÕʰՖ‡U®—/YÊp³&¯Êeë^ßÊÆ³ ‚cqp÷¨i94/«‘\Žéíg^œ÷å§iÓK:íhhÖ.ºhë·I¹YÇSrø\ýõè‚Á¤“+-Y?/¤ÇÉuÃ:®8¹|ôæ‹Ãw‡øY%œYjæõ¡ºÝpÊtu},Ù&×®&J¹Ö8k¯š(åÚw,­¢•)×ÐÓÄübÀ6Øe§¢˜¥R¤k¶ d—¿Éé‰\ºS¾øö Û˜˜ô çª;=Ö[âmµ÷-Pó©É*Pª*H¦(Q¬ß¥’\‹(-mvÑjÃÿ½G‘'rIn¬=W¢Tk-Œ“U)ÕÃÏo å£’j•KiŸå#”j‹[Ò<ËG)Õ>ËE%×ø–>z–‹P*Ë\1x–Šò©T¢‰þ`}€oí2AÉ5ËÅg%Jå.)m³ åšßÄééMÇøL;üX“±>MêB,ÅòÕº„ðofé è«> ¶BÏÜ'J’“K™B°eQ†84”ßbd)Àt¹€È÷ ,‘LÒ¤ ôÅC" G$•0]W”TŽôªmï¹¶7Q|>˜8<Ûò\aa­\©dI¯(¹ÆXºtêV¥\†T!`R-:977.ß™»Sä¾»îˆÌ¬`wÁ¾ÆðuœÍHå~¸Ã|ce ƒlåâ¢þÓÅw!úFê¾Í÷¯»çb¤Øf‘ñTòo%u‚øÏOŸ­þ¯¦^²aç[.ÚùØ‘m—+UÛ(ûC>†W•šY¨…½UU³¢ÿiÕ•»æ¬®àçöÝô#r'ýÃuRµ+YZKîžÝ—V{ÁBóý[z7Á6:þ¥ÞS?•y*_Kîþ @)`iˤ4B¨qÓ¡ÝÖ] ÄL©¦ äž,a«tƒÖ’ËücÕ]„RUVQò×x#F|câxãYP~+—çé³_™^ F¢µ6`Þz*OÐñ•“Ä¢fï¼¾iš–õQ·- ›}ç£ð×ëý¬ƒî²tÂ/Pd’o¨ð9ùR-¡ƒOi´®ô7šÜëbüìB—¶ZÜ7œ{N i½7|Ø8è1RWèW‹{7@¢+¿®Z¹æÓØ&Ï ¢•lFµ\Ý„¹Øc©ÊY—^ž†¶¨N,•Y¹Kö@– R*³rÍŠ¢”j%]jHp¯J*Õ‰ŸJV§Ô5b÷¤š ó1¥š¸t±F­½×cûß?î±'OÀ[šzÐcC:ê±éígþ§ÿ”C ’ˆª Z)ØìýEóCc¢QÌÃßñ}<’mVoˆ²Õ:Øjoi[{EÚ_Ö)׃ê•kŒWSú2Ó·ú[tk´eo¹[×*#—Ý—ß¿Ê)’¼c°\¿ÿ¾Uµb¡´¦_`p€¡áÉÓÊI-,ÞŸU+YÓ¿R;_ñ¢Ë1lJU¿Ž‰Ò;â×ù–ûFÚtXÌy:šÜëLn¸_ØŒûp”Iª>uÃ]RfÜÝ­Óȼ³œ¢$ÚgÃc®t'zðs>ïöZ¿ÿñgا"«8ó„æ¡à¯GÇ=oø0«Ò t<Ê7–,‰߬-Çg8„ڶŨå9j]ÀpѨOoÓ°m\Ê»a…’·Vò‰>q=›vZá]4õ†øWž…ZîPcíµXf‘÷n*WêŠÚ˜´}g¥RAɽ ²W–Ü#"•Á•O9;8 ï®(9gÆTÜ%B<‡’Ñp\Q›>"}(üoZ7Ao>³¼u‡¯Ø.¼¿ñ\ü8²mR¿¹2Wˆîò[>B¯¤&Oߤ×Ô„lJ˜å¼×š0o܇ô‡ •œC~:q¼¾sEM“Ìq©>TÓD^OŒ Àu÷ˆrÁ—æ”Àé0. DQw”ù±ÜšÉ§cþ?©™hÀÒkHªÊÌwëò5UôFd/¹a­³5ý²¯}Ýšî·÷¶¬/Zkïë–¥µö¿ïž©ÍðAʽ@*½ˆ¡qH]|ù'Qn,{É)ús£ÈŒÔ\›y¦Y»ýØÌ(D‰E;D;ÿs|«„¤^¿üóÎ9š¢ÔUc`“?—F'sŒ%–2GÕäÓhæZ݉î­®Çpêbaô¿ghq‡áQãŠÜÝ6¿|ÊLD¡îƒî\Â[†Ã\›WTŸø‡»¶H•Lï¦ñÈ=:šû¨‰2èp)/ÈŸu?[NlÉÃ@øtx}D™ó)Qó~Q«9i¤¦Ç¸;„a•­j~ò0· ñ C ÁÔ [Ud_i¼¹+‰„AG‹4e]·T »C‹:»Àâwù¥®«Í|Eˆ®YåÓ§æðùþ`\›[9FŽ€‰¯$à?ÆEPà|êI 4&ÇjXàØtQhgL]}§g­K5£öN6¿&)iï-ú¦&þC­½÷<óK~]œùФ¤Ëä*™I}$V‚ªõʼü7z ^T’M´Œá[D©ó2Ú8{ô¯—RŸ þõõ¡œÄ@ubüP9©Å7àþGéTZiù%À¿ÖMoóŠOÔУ$';$rÓ{!9½CnIJ3_©¦h6]dq&úæÇ $d­RÚ‘K«„ôléMÙ~‚2“Ô“ üð…ˆ{Óõ!nuqW´Knºó1„-«oŽª(¹W„².ºÂÔ©í®¸êü70Ò|¾/öˆR G—wri0òSë†àHÜÑ+ɦŽgºŽŠ?×ЂÒ|þþ¯(¯†Ðð´vÿž1"óL‰F@ÛtÉnŸh˜f _8ÔW&lúÉ3 óówÇͧî€á ™šçŽžÖ£ŸH‹Ôïß# ëÍ@¡ÌüÈ#ªãÒ¼ƒ± Y³íœg†!Ù•çEL?:­ôâ÷ôÚ{º¬úüÒc~7—åw ¸>Êœ7˯ ³Kö’X_ W³’áæ¼j>nâÔ•d ¯ÞñÑ›~ÑžŒ¾.éÂJ%çM¬™Rñøµ-*¼Ò¡áa•+µpùs^Ú ñ|cˆw.1_§þÆZè© ÑòË“ýý¯¡äæ.òÁ缕5½±`[Q>>œõúx6D¿ôΚóü³ì–lýRiÀw“ÖD{Ø[âÌY ̬ƒÐ6Â)˜úиäÎd¢ÎäˆOÓI"!+ibƒP(âœó½ýhL&i¤³ÈôZŒ1Hb0òK÷ì¨ML£oëö-¤òÏß(¹´ˆkÇS‚+•ð˜ƒÏ ¨øA™ãqNì»ë ¶Š6oüv­Û†å9<5Ÿ HKrc˜&¹±ìXÊ® ÛbcÊ ú nà 0Ëëf$î'²å ßÐc*yañ?qÇ «:¿àÝyiYð”ǦlÈ3—W.é¤+]RÜ"ɽûœîR¢3"t®Ð9–Àh a×l±œ¨ Щ>pÍ[È~½¡äFg®º@ß1¤íaŠ× ´:™Þª¡·ÈÙ“bKì:îÙx:¨­—WF–²ymñ4ÉO2ÝSÒ=C] Š5ƒRÍ H¾f/Ñ7ïâ}®Eóƒ¬ =aè4§’°pLn@‰¶9*Z^'Ç#dT¬Ärê8|ì‚^[Ó±ÃÔ·ç-ž7vlåÛ 2´°S{l;z¥¬ù¡$ßù¡¿+Nbu‹~bé“ ÀƒÌŠ„–S“X MX ë ‰| C2T”Ÿó:˜Ðtµ%Á¶Ùèö’íYÁ#ICÐ%¶Ïûù½ç•=uëžža¸ÈöfÏž »±`¦»º»ººººº.Ž5Z¼² ±<‰Ý/sošDôŸ×öâhàak:2CÒqÒ³ $QoÐ::^÷ó»t›x=O,?ø2Ý­ÞXì» –‚ø­…ïÒCõ· "ôèú‹´º”øTL»éŒg²¢ü̹==øçŸ"çËjsÆwúU‰öÆÙ„»À‰òt í~…#¥¦ÃÏ?Z6.-pR!PA{è FªZâñoxd¢Ã'/ ŸNO½’jŒðô§ùÀ»èòi΢@ý£¡×¦ƒ( Aƒ¡Ó*%ûÅKgÿ”q¬,6èîG ËZÉôÿœ~­.ܯ6“áÇåå¾ßõ¯üÌþJ¿Ñ÷nø¶ÿçö|í¥Nå–žÿ)[ŸÛ1Š™î- â€ñàÏ? …ý˜ÆÏB>¼8c£]+Ò¼ÍÛiÐànWøÑÜrgêio‚QØåEaO=wVê§ãú¾HG3$H7)C.Èñ§Ë m*®dÞÝgý³nÑűGŸÚÉÙÎ?y\’è[ÈŒ‰»¢'r!Z>Fqqr^Ú,`¦»³H8Úä4A2FŠ•'©3I"kT¦1ƒ C±EÑç^Êìg šx±qçÛ®@¿#÷rá€E`:þ ˆ‘¿Ñ»ØW,††·!€_uø3ÞO,H‚bo0„Љ¤mø6t®€Õœ‘ µ”È\§Á¾æ oº«ˆ]ô¼ ív»´pë ¯Æ,¼æÆ}©O2@ÖdˆèR[ìµ0pÛžÓUéâ~Ò°®>~´§8±,1ü4ðŸEÊFc„—qc”˜/Ú :˜²ú\PÃé@T§´`Ý¡ë@k»¦ââMÓÞ¢ëÒ"(‡™8Žzá*EW™Zeÿª&‘e²Óu¾؇…îíúè–í¿R·Kë¢ ç:ÍB«¤è[T]E‹lÔq‡CóS³úžî’(_úU–^Éaÿ9P8ÞLÒ)ÎŒxœ†ÁdäI+ákA´qh¾ýŸÊŽø© wáo«æ·´du!]:‹ÒÏÉ#œá¹ñ±×ûÀÇþö×ç_ð¡©,ò¿•riucùxÜG†üÛ(ÃgccþÂ'öwc½\®ü­²VÞX[­lTVªð¼²V©¬þ­üû0õ3ÆH[ÐäÐ÷gŽyÞûøàþM>¿…èõ—ƒëTêñ×ý¤+ %’XÚa‰d°á2!Æ‚ÄÕÐé±Äà à'ð^4]à* õ°ÀíºmW ªãØõhd‘íŠ#À¦·hz1@ÒHa_^_»}õÆI(…àà]ÎE¤Ü`[&6LG äÅøD€  j܇M#€½¨ïÿæÒóÊÃhެàCõY«áÆN£xÓ颯­ÏÍ4TÞÄ"qìK¯mN0å²XÆ=™5 ”Kè’©©@ƒ@ˆÇÓ¢ F ÒAŽý?]µY,¨Êz‘*­T‹ÞHDVÄ>q*º"Gje&Ž €i&™ÝÐÔÉTxÔ¨]\Q~ÝâfºÿVÖÓ¨·LWªiÁ ŠàúYÃÉÅù ‡Y°ð( LÁÚ#Ù–Ç3ÚY&+(éÆëŒÞ÷%'ªlѤ& T-cè<4¹R\Ç^®U®’`E4³3OÚWG q»m·ÃêÔÿaœ]Û\RÏ¡´{çôH‡é•beMýO¥œ`$vsëÔDe­ µi ÑY¶Ì£%é=õ¸Ò³1cÂ~ݵÝÁH×)Á\•ÓTA|¡¢!¦pR½~AÔÏáR`3îžb`„îÐC)Š ðì4.ñÄc9¬­°FEZ¡5âBŽöäÀ7hÀÝxŽÊöœ÷.ËÙ®,‡&¹7oÈJ𳕒=R«¾¡˜JÿîöÆEg؃Ÿjsess½¼™¦‚È&.œöû[@3#ïÂëÒu³Aø«Gb}ÅA1“ `4@ ïT²£nàdÔa†œF“¡ËuhmŸ¼[AWDpb¿â²xCI‡SQG Ú×´;¼W=ä§=$TÁðàp èe3I æ©†”\˜ç•¤‚X†©ÀÍF}á]qòÜp`”W¼ksELSÖ5² ›B9#˜¦½Œæf 2EdmÔâ¼þÿU(@Qz"ñì‹û}Aª3Û³ Á œŽÀ¥û!‰ö´ØQúê"4¼ë^ê‹|5nà’ºí[™jµ}(lÐˇY—ȨJª s Àì÷ü *ç–®JB›¸žœgâ˜6âÒ›.°éõ¥¼&–·Ô©VõXrb¸ø‘9Xƒ¢…2 ¨|š!UReKí;¸UùýâéÉóÙ9R—rÒvp©œ^O0KÔó#wØU?l«µR¥¬aVfuKÕŽÊ„¼Ù룪¶ZdØÕFãËK©º"UW¶ÔE·˜”ô¤äjMŠ®n¡ÚP?}¶&è§}ôxȯÝ!ô\³Ç…F°¦¯ÉL× }'föaÍôÐ'ÍÊ«u»¾¥vŸ×” ÜÔ›z°¡{¶¡µúºÜ™RPåÝ{Ûå»êt¬çÜáóíꆀ‡‘ÅïYTÖ±,F‡iMwÎTæ±*º¿ãU«£Ò™JZmc¬Z˜)uþI¶¯¯¸2¼ñGV¢?«*MT‚Óƒ bçú)±ý¹ZÓ_žE_¬ék±ëÑŸºÜF¬Üfôç“X¿ã㈠¤RýŽõ»²û½ûëfe#ö;Ö½J¬ÕXÿªqDÇúWõ¯ë_5Ö¿j¬ÕXÿª±þUMÿÒ± EŠš|—>ˆœîN©¤™@ Ĉ¤­s(Y èèÏõ{xp¿pí³q´ÞT”S—JÎM8jŒ”™Å£#žJ£-\Úh¨p-‰Á\à÷YHVÁ=´{(ò_;7¨ôÁ:,bw «æà=>+-Kê„Ñ:.ÞL!ç@œ('ÌUõ¬ÈÍíËmîFŠ_‡áÐÂoÕ¬ iß)¬rÅu2íKl~ÁJ\:ÈxK£`Rxñ' ¿Ø‡õΗ‚iÊüÖ±~Ÿ+³øõ}á¶~küÓ)·Ë  jèÆ˜\;|©5·Z¤^àêØqúÈi.íáa©ÐÇÍÐE…èâÞs»ír ‘’p‰Ç—beƒNƒ‘»ºi§@\Ð21®Y‰$ó?t1ýjƒ`[ Xi 2qKÄ(ž5ó£r.G¨n Úز96Qù*Ÿ\Aª÷î´Ô Ç:r Ä®JXl—ê¬P© Ц4”s{Ò6®OvK'O=:ðGŸ0YÑŠ¶\¾@UÚ Ÿ¦YÒô»¸^’UŒ©\ü/$Ïp°EX¶gRÏ—¾Ž$¤&\Eò3 …™•eëI5MPxú*ô}肇Àa^ë%Ó˜’ÞãqÔyÂAhr@ÔK?}Ê/‘— Äè—Kyü—_ò37pÚØÆe ºK@“ÙDì¨,Z ½žRªðƒðh‡oØ3•_°ŽI„»¶3ì VdPo• ;]ü]ë Ù¢Oœ_¦ÏtØ;ñt&8_¼ Q²¾°ÁÙ•Í´ý¨¾ÙN&Ût”„I‚5ÊœAJ™Gž\W©ÃŸMñOÓ˜ÐLK‚ˆf%ˆq'ÛŒÀ,JÆÍvæCu«Xþ”Òó£õðí·Àž®Œ67h  ¹…$\Üé CMÏ]ä™D“= kª¢ñ&¿Ëq|Ñðr BÖ¼+× Äþ‚T д¹ÿÂyÿ¬T·S¤yÝNi½ã6ÑÝ®ßÞNRàŸ÷Þ`;¥Qß~ ¶SW]ÿÂé_ ¶ÓÅßÓ©-•ù`¸{šùñÉl¤md¦Ä·&°G )÷©@»é2ñF£öýEuô2Ÿ÷ñe{ àhÝ»QÞlÒߨâ=CΠƭטã‚3ÕѰ OÿÖêîRl[|¬Ž˜i˜ûX$ÀèE +j@žOE‡àbtÆéZ*Ã+'}gQг®=õû.¶ƒÊn Á¨÷$B­-/uüòv߇?þSå?+üg•ÿ¬ñŸuþ³Á6ùÏ©®ÁœŠª¤Š€ª¬Š«´Š€«¼ªÀ«ê~ ¼ªÀ« ¼ªÀ« ¼ªÀ« ¼ªÀ££|K²'ó‰ìj$ì¨ãë–“ìoeôD.oß»l[|P±TñAÕz°‚V¬«ø`Õz°†Ö¬ëø`Ýz°6¬›ø`Ózð< T¨§««îªÕ× õµbu¶B­X½­Po+Vw+ÔÝŠÕß õ·bu¸B®X=®P+V—+ÔåŠÕç*õ¹jõ¹J}®Z}®2~­>W©ÏU«ÏUêsÕês•ú\µú\¥>W­>W©ÏU«ÏUêsÕês•ú\µúŒ$„ψ”ôÓ"T$6h Š˜%šG+Uz´b EóÇæ†&ož…¥˜w~,òß¼üß³ýÈ·]yþ¾†û¯¸ò*¸ö.GOñÁv¦Â/5 þhîÅòæÙvÚì]ÅâÈ÷»Û=·Ç\Eb×uÞé76XóÆÿüî=T ¶Qð.ƒ^[ÊÂï"ùjqüNªTD‰ºír:Ú3¼§û¹µ[¬‡ÅþÓÔá~lSÖàõ—»Å©Èúþ¬@8)šWG¥oJ†ð?KyZ©¸¥×²ÊgKeÿç¬\|rNÿ,e²*¤×rÓÔQqX]à'S0À/‹ž?Y£åù³+õ»Õµ„jø˜›¤s1„g¿„–dÕœOœYÇý¾¶Ò qÅ^,Skî4¡&•ŽRšÍ=š¼Š€3¼òRÝûc:ÑÅŸã J@á[ŠgFTNZA¼…v¼68£¶ Õ£œŒ°Ñ<ÜÜ\{R¬ؠĥž°ê‡~r»6,ŠèBD;èÇPíhb£'+ñœ¸c-[8æ¹C§”lX–Iå–ý¦ǃa‡LUq¤Ïö‹•òêªËÒ¬)F†æLxSê’!*{È`OŒÎR)ÄÀæ6þ¤¯°bÍwX‰ôÝØDJíˆmˆÙxQ޽¡9¯æ‚(ogHÄÎT UjN“¤.åŽ7µ$R¸Ï”*0 "Ý:MVö3¥Œ˜WÒFy·Æ*ñšÃ<â„m SZoljl¤øPyý©ˆ@Ñå£ö+j„A«h+öÐ6MLk8¡!"O"Ó<9ó»‹x^¨¿bCëpìéâ=N˜ÅtHJ³ûŒÓ¼PŸ#Ʀϱ§‹÷Ù&"¦#Ë_X±b×cD}/o™#¢ Š$`IÒ5É*6–·0Ô tuÓ~ŠûWÛégG¼‹EÝ7-óܶÉX¿¢´7sâN«/õ­g /o¯¯-Ó²’#y(´æ¼u Gѱѡ¬eÛF_/81Q&®¢º>™#^:ècŠDG …`øPhSl4ïCF Œ¶ska'PÍf½ #„£7H\ÛI#Å×Ö(ñnÄNJMlƒ$MñR@ùÈ0ÂÓ¤¼v ‰Ö˜íNŠ„p’þ ªE!ÛáÕŠ9YÀ–‰rú$³uò!±4v=ak®NPIxVNKêÜ8ýo«S̪µÈ›éøekOâþªD~U#¿VÂ_oy-ÁÃÕH‘µÈ¯õȯ¤ê›‘"O¢})G~UªWª‘"+‘_«‘_kIÕ×#E6"¿6#¿ž$T¯F:X­D~EzV]Iªé`u-ò+Ò³êFRõH«Oì_d!C¿©|(/ŠÊ•¾UÌ·ªù¶b¾­šokæÛºù¶a¾mšoOBÈV#a+•°™JØN%l¨¶T ›ª„mUÂÆ*akÕ°µª5¦°µjØZ5l­¶V [«†­UÃÖXO)k÷%,RQßк ] “À$Ë‚1n¶ ùÉLOJ ]—³-øe ,Q>=¿IU…Z £Ìð¶ûþS¥5ÍkÿV®9pý£¢GúâCL&ôm ýeóúèªæt–¯ W›`¿Ö±F`[—\…˜mõ5ê‚.uñº— o¦å 5ü DûÚ ¡*ærñ‘'ç¯?võ¥8ª† ájPĽ «ðŸ¥Ú’>Ûj-¥HpÞ®¬?•׿¾“‰ð]ú©#ý@}ôd?ppïÇJ5±19'¹›y e3Èæ<¤~JᵺX#ésŠ7—Z%¹ ™ÃÄn«a”?ªÞ{¨5¥F†·â¥Ä”úh1£2¾æAÑ%l™ÌgÍ%5F÷&ãA#Q€-µí ÉƒÇ[,"­‡‰SÖ·~yF»sZïÚ˜új<$³Ø DÌÉ[»r±·—Žª¡Ã_tP¤%gÜÃÄ꘽£<È.;íe´¨é¹=8@Ø ¤Ó,64ÉFª_ JV_ªÇ_ëjŒ.^ ÅÛÛÜj4Œ¯cÚÒ8?R¤µ‰’Y‹‘SL »6°®5‚¡ªäF7Y}¦3vLImSѹš™ý”ÕŸcè¢ü†Wã@t1.A3„œ0Ë0qxͲ88²KuÜ‹ñÕg Þh¼ªí5v# *SÀã‹ßPTÆA¡ÑØçtJÃøÒN÷öç–8š[¢¹h·áœ7â—i„KÏfªÑ¬'R J9È‹Ž†^ÑlÚŽ­TÜØO‘ÈÜð”"ìdy¡oÚ¬ª2‡UÉÁöÜPDH+a÷ÖµNÜè¼Þú;Z}Š˜Yªz½ìlÂÚ¯Lì1Pв³ªØ œÍј¨{rmdðgÅ!ˆœÑ5ÅÓü»JdlçîSÚ° a]ˆ¿§±}»6y¶Zˆ»ÔÅ}¸•D¶Œêœy@#øˆgH‘°’ç‘¶1ê^•þEÓW3}Ui9º@bKdÂzî+ô•/¼A+ŠëÕBþ_)” •2þW)TžT +eÆ~~ÿ'°j`ô¾2ZTÆ+/[NŒrãNƒDÃô¹ñ0¶Q³‚EúK_[ÏÑ·¾ìÔø‹Ûo“àcвp9LKá¸ô†èzëÓÁÜàÅ®÷ž.$ût@¦9!X]Ç*‰t&ÀKP ~ŽÆ}gäbX²Pβ¹öö9u¡qð¢p"Ò¬8å£U½‡6õ–½8AÀê<Ý/‘éÊ|êïm7p§KkšT`–íjY’+IK’{¸¢xCÀ=Џ+ëôè†Éà!“U•4;2Ê¢ÜÍ„A.td^×í!+¡¤2ÄÔAÈáJ¨W|üI/(‹ø1ÈÌ8lz=N8Oh!u¡‹ :õ¢±qÁ¡®0¬›@a“Q¨K)Ã=ð"¸G–+‹qÎè ýT–µŠ¡ú¨(TTú× <{›±Í"KþÇä Qo‰Ëβ`>C7µâ%‘'Dl…eõGk(éÖs¶%½*7‘ÐǨµjB/ a`÷¬§rêÔ€·õÒL‚¥ûd`“ÀOW"åDDÜN2O,YM.ZK*»’\öYRÙÕä²;VÙ´Iª€ðð½¶Î0² L†UbJç­;‘¨‚OË4WË8{Ëé¤]n…ÏZ Ø@P%Fº0ˆZFíó€<‹yöy@v"@l”F)pêyŸšxeï}¡¼.ž•Ô  ’º,+u²²*óf{#}¹(ÄÔ—~×§f)‰bŽQ´¡p Õlú3ÓE&ÝNôG¬˜¬~ CF–Ŭ¾óüÂÄã ØÇ8K€™£p´òµ­. È‚1Á£f!²P( xè%ļöbD¤³×bÀ<íuÛ½çË7K¶¡kï‘P=äõgXxãÜ"”IIÌÌ\­ž­"ca_Lylž;hOPôí'hé0g&hiå’¹²¾,TKkøÅÖødÎÖødÚÖøäa[c4(Ú"Ó„ÁnçÜ]•ÿ܉ú¿-$ÉmùŒ+¹ò4Z€ª"†ÉršJêИ„\Zï6xqëuF×QE~eî%g%‘P6F›ÿË–neîj¥¨í~’§MÞ­É ÃÒЇùÓs«…œÅçwÞåi¥úOšßÿã+~Þ-n¥:‡€ªŸG@Â]4&0|ŽczeŽàƒX³Ck.ÆPÃ'IËn†*'Œg÷ï$œVf©ˆ+«bOÀª&õiç?˜”½àò¹h9Ä$G1 w†ª& ø†<¡û°‡¼–¤€*–>@F÷À¨ª‘¡ÎS{TÖ-: =H¤£Éˆ¬_›jf)T¤ï“H\ŸN)/Áã •L/2‚GöùöCOœGœpÕ%ûCÍA¾í&ûÈ\´ÇÃF-†ûY:šÊ%Meº–&ŒfœTWü¾Hõ’ã=4ùÈ,Ì;ùW6ÿEÇÇ/¦óYgwÕ$®7?×óýd¢ÿäsú¿Ñ>7qª·gòÉ”™|’8“Ñ`Ò„ˆ]ã<[øjù«ìcÕ‰Ó©m­g™¾[¦zåè>–áºUÚ{Aè'ÑFT+ó´Uë™ ,<ŒX $¨qH‡ÅN òŸ|T¨Î;kVÃÛÓø4T9LFŸœ™ÉP∮¾Ò'…è„%;?ÇÃ!ÿs&ìÿö¹±:×úwι±úÀs#³ç(ª£“½2w²W¦LöCDMîNÈÔúÅ|nÖé°:åtXM>΋‘Eáê\®~N>ë&mÄÇ·åä‹jmî ÖþÍΰÕYºêÚYK$ä‘í}ÞÙ­ºþ'ãï_Âð&N€q†·nZc~}&K±À¼Ì; V7þæeâtŸ—©ó²±È¼XÁ–¢èŸw¬Z‡@;ÖÔÜ Ž,Ë0DÜÈ ù´ 0˜Fi0ýÏFüÄQ1ŽøÍ©ˆß|(â£iL"Ó0ïˆX}òO›†H¤0Š9ö &ì»·]//áÿªyžw=\z?\]è‚xßé9PŠN&›€ñò¹Çv÷ˆ‚PemûäšÉ‘™å²v$@°èÛ9ÄÒøË‚z+{ŒRyXz)F«X7L0µ¹žƒb"¯ 8 :“i¾ jã«1å. áœxŒþ‰¸'€ TµRb) îSúsØù/æè¥ ¯çä:š¦Àí÷7ÔB0µÁÐëbÕõ‰ª”7ÕΨ;a‡)¨ ˆ·_-‡0è¸GáJqa`à¸0‰ –èè´i=f¡¯ ©‹Ø­®„à42ÆÛž×(c’ìû¡_ÿ•Âÿé˜pN"UµÛuîáß»ÓGméÑià[ÎÎ÷íùööÙ¹ÊÑCN¤O.oÉsž‹m—òóª•Jo“k.Tuzí·ÀÁቔ׬*޶¼:be µôÌíµv˜CìùÝ%F;¨q¿óÍ¥(Zý#|þËÒ˪ò_©+&nËõaÍ#^if›”q`_ͳíÒ[ó½äÞ¹X‹ºøcä–$ ö'ÝyV· KƒÖ ÃwñÑÚ¯ìÁa™Òì1ÒÀìúv¬ûƒÓ=¢&Ív6·¿­ïÕ_Õ÷¾R#ÞÇ+VÖ©‰qïã5Wª³kšà»¦¢<™]"Ùš*ÈvfñH0ýx1–þÌÚ:¾©(ð¨$1íc59¤}´:QË·z¢¾Uõÿwª*²ÊÂ_r ÝT=Ìo3¹àÄ.…?Ãeð­™×9 1„0*ëS›Š”£ß“­Tç4ôY©Nm,RŽ~KcˆaN ¦¿W­ï+Ö÷Uëûšõ}Ýú¾a}ß´¾?±¾S¶1óÃn¹b7]±Û®ØWìÖ+vó»ýŠÝŠÝƒªÝƒjdìvªvªvªvªvªvªvªa€7aÄWD?î°ß~ëàf–ûv 3TáL+b±$¦R%V‹~ûí •«¨*ÈÒ(M®ƒ<¹©žLY!±r…$Ë5” AÞ«l’”YF³”5WðrH›Õ TNs¢,T "ðímêKØ6u’4‡éoèÉ7i,ÄVuÔOîiLJzº´RzŒÜõ<©wuqâá‘47²±ío¬B§fPø¶¬Î¨\KÊcb«Økrt³KxGGªòu&½Èi“ÎýñÕ5à €y^)9"Z#jM n$Ü8`,´jp|,µl§û~ZÖlú[¨úmAz} rô‹ü\‰þ\þ\‹þ\þ܈þÜŒþ|ýÉ¡“­ß±~Ub«ÄzV‰u­ë[%Ö¹J¬w•X÷*±þUcý«Æñë_5Ö¿j¬ÕXÿª±þUcý«ÆúW•þ§dý‚¥SʶÁžß1f"Xñ¤é¡KRl0¾`i,ÐÀú&7Tÿ°Y¨¬VªŸøHnXµy^’j%Í·Që¾Í_9/¾Øê»w£}:Qb!¡J!ÉÉM³¬Hîâxuó_¢™-é/jNd_«B~²Ù")Æ[ÖÛèÚNˆ<§m4‡Œ·­wÕ‡µ9¡m j›° ÍëjÒëªy½’ôzż^Mz½j^¯%½^3¯×“^¯›×I¯7Ìëͤכæõ“¤×OB´”ñR $#.Ä\%u•w•DäUBìUÑW ñWID`%Ä`%…•‡•D$VB,VÑX ñXIDd%Äd5“Õ“ÕDLV-L&“ÕDLVCLV1Y 1YMÄd5Äd5“Õ“ÕDLVCLV1Y 1YMÄd0¹®ù)LÒð×"N.ÿ–Øíø“GÈigr½JÝ(þ9 J Köˇ=j´ŠM‘¶·ï¤±E¶Æ²È·ÉCä,¹?ãÝ©•‹8PÏ3ôüq {ê›øy™ áéáÏ`r8îÃÆ&]¶3usBe×ÎÌM"PñÉŸ¹WRµfÒvSDsÔ1v»þm°Q×ñ]`-i.òÝ'pÇ‹¾Y1µ0~*¢9ȃú}ìÜÀ”]Ym-¬Í5ÿF!R9G\³FG¶Š}Q¹Ù"­V8“TW@ êt@f Ók¯ÌëÅɘӉo+d“aDäß"‘~ß@§ò„­à ß„Góot bûÛŠÀ*~­åt`:R©„‹&^=¡tõA¥WRººìÉæ„`Œ ¶Í7|«_ñün‡_¿eßZJÂI¥ß­×ÿ666&w+¦½ð½´(âæâÀÁ–úv%ª¢aö¦¾]Uß®©o×Õ·êÛMõí“„~ÚüáÛ*cŸJÃ]ÚW‚Öwªd÷¢:9[ h|Áh|yɃã3û´áU¿lx+=] {Q¯Ý–é×Ê—õ‹OPßÊŽÖS„\5¶1qCëâ?f>Pš¤àظWÃq£%¼H}³"`‚|¼qÎÆÓê—áim<­}M<­Å(y&›0P6:wŽAÌÚ—!f}¢ãëaÇ#N†½ùLˆûobcÜo|MÜoL‚‰Á³ÕjÜÇG³¹Èh6¿æh6ÃÑ4fQ—ìÄIxbîÊeìØïÍx¿Ÿ,äô=¿ËOÂ.79IPèð~áÀ##ZáEèüɗѹhç! Rþ\ Ì' öW Š0$YŽ£:w&ûh‹ G{) Üa °€£!ÖÃÛK}2+(ç¶36£¢¦ÁiˆØ:¡^s˜ô ý‘IÕoF±!”¨8ƒÅ QG c<ŒGCß똴ݞvlÆ„{¸7^“}$ö…Ù„“”éb0™_ç(&7._¦~b*‘6n½ŽcÞ¥AGû}yx ´‰?Åâ,t +„~j}×í2ņùÚ‡„‹Ëƒ * º‹‹™]¾bóH$' vÌpð š*KB<­y™@‹MêÙ½ñ °žk˜¸äBg‰Ìõ”-Ðë¿2¦¹4º4JM4Òyî09tßFÔz çÒ˜o%-¡ d#œHâlËO™¤Õ¦k]ZÎ8~ Qò½K5qô¥´…&11˰ @Ò ë`ŒkLõ «.z›¾˜ÿÿdü‡f}çô¸qòK©×ùJ1fÇ(¯V«ëñVÖVþŠÿð'|š€ '>FpƒÔvü“J»]—2vIáTÜ9<•Bpvý– E§¦di•0b‚<ŸÖ{ßW˜¬Ü£¼ë#0+I—Ôk¾ãßö»¾ƒÞÖšQ¥Î^x£—°ƒKÿ‚óÜõh4¶–—¯úø¢üe™zuÄZ&B_Ö°óÀѯܒªcF/yȶRÀ^½(ÞUßí@×–Lè—>âíˆÙ?iº`嬒×°c<8¸]•hê½{¿²È÷ï/:?¬®=_ßÜ][}ö¬^]yþl¥¼òäÙêz}íÉÆúz½¼¹úüYùùêÊîæ÷ËX:ow€†-®)¿ë ;¸EK½°[?ð€!ÀaV½öºè/>ÑÚ“µµ•õjyµ¶òìÙêæ“ÊZu¥Rݬ֞lÖ76êÏÖŸWWwjÒ‚jý (ƇÐh€ÙÓ¤ñˆq4¼þÈ%ŸJ=Ç>›)t¾`óO:¤ÐhœNÇãu › W“É7©¸`Ü+e{Ê…–79W0{Gaœö(–•Ž7l§¯~»´á;Vƒ@mÞ-–¤RBàYŽ|ؽ/¶¯63toÈ*üfÜŃ×`h„KjZL¤«Wõbµ\]+®m–×@7ªkù’ª]^BS!Æ9òTu†]#pbW Ú;·ƒ‚nŸÊ®—pÕJTŽ…û3e{ <œ8ÍJhàè C¼/¡hà ;Å£O–Ø(t,¥Ë£]n_soµ0r…§S­P¢Ý–^@áß@,¸'ƒÃ®Ó€›a DÒ¥¦˜(Ô "å\xî•{y‰Æ6¸DÛÿ ëv®¸vÙ…ÒÀX}‰\‚–î©cÊ<ùÚjSá–µÎøÃûÔYúXƒxeaù>½(/Ò /; ægYùÔȹ(9tÉÔaO÷¾ ñˆ¿ä³¾ \éˆc¹ýöð~€çH¼‹xàü©Õ—`U>~üXx=Ot©T “7ƒŠh7~w ´"Šëô ˜ ²Í)¯ÆÎÐÁWjè <3a’B’f7åx= D¯ø´‚´ PÜ÷”¤xà¯A ªªÃ2?ð+¯ãÜãÌ`ÇŽ¨"3W(]dʼæ,–8 `ì?ÌÃ8R8e#®î–^Á¦‡Ð¥({u[J¢“X©›ìŒÛ\ðxâ¤ïx1«dvÄSP<§›r(97…ñÐà xÇ€,ZÓ¯Á Õ»¼«Áá ¶¦¡pûÑx*‰` FC˜Ž0p¦‚1è¢ ïoй=à»w‘ÐÀeñ\ˆ({ÇÂ^ǽy‡ôÐEÔw¡(LÞ}j0¾1ƒ-#"à… {P/e¬ 4ãö½ôÅ.–©§l†¢…-àAÝT:7ê¸hÌú„“ò¿Ó&ÛãRoõkµ1Sþ¯¬¯TVW'äÿÕêÆ_òÿŸðy¬B%qT)2ž‚ª”*ë¥5U\*RjTÔà !¹ÇÜ¡wu=R¹¼ªÕ]°Wq[^oÐÅXX€*ܘïQ&ޯ(µg=8Îã Ÿ7Nêͦz~x¬jPÿ¨v|ÒØ9Ý««£Óã£Ãf×[my—ýŽ{™;«í´vž7^´ök;LJ­ÝÆqó¼ Î ¼÷sg­Ú~r‘ó|Xh˜ÄʹÌOùsø_¬µÓ“C,ÛzU?n6Î1œ/vg;‡_Žj;?×^ÔÃ*±€îô» =Ç}ì'·ÂõYµ´Q9/RØ írg£HèÀpýÐ9B¯¬YJýb4¼}6úÑwj¨ •¢%¥ÀåJnVKA £ –RËPe,~AÁH}.[³î’¥ëb…r lÝ÷%~;nª`d\#gÁ‹6©Ï˜èXÎj¿y¤€qÑ„?d±ÿp€dK4c@Qƒ÷W°q¨¢ÚwðÀˆÝ!먱%(QdM/zƒL°”Ç b ¹9)†e‹åRõI© mÀäYLçÿ÷ÿÁI©¼ªšm4Rÿ Õì±ÛëÒÔ÷>ü©ïŽX#À(%Õ¯T‹ƒ7ʹOÌßw.ú%Œ‚Ÿ®PN¢úX@Ä@Œý´á@š-×¹'@ž­|Y¿è틃Sõ‚f²«ŽH„Á®í¢ dGBz3£Ø†€fņ̃Z‡©É¯ªˆ(Ó”ð+:,±÷nžÄÖ®3 ë–¦âàL à$±AÃæf29ª>Ñ%±9 –,H& S}©ý¾ue3x\Ù¢U§õ+Á…m©Cw9ƒûù“HPÚmD÷bó©âˆTŠ‹âê-!2½T?¾±ÔÚuââ“:ê¢ RQ5Çbe¥\PÏü`„E÷kT6êJ¥XY)oÔi³ŽŽ‚b ‰öbî@û§Ï“> ‹òCމ”ë IiãÚ!!팇×T;z!´‡Þ`dñZàKšo„PîcÌš2ë"@ŸîX¨?\iÔ0ÖË\cá!^'Ðô9LŸÒÍ3Ÿ£Ÿ_´ŽŽëÇõÿ—Ûoe·ÈÓ»ij|ׄ޹[ ™Áó+¼£‘8ôV ܈ëþÃ#~J^þrÒeâ»PR§ ½w¥‡‡ð|á ¶ >œ¤4 8 y˜ ˜Á¡xºÛ±;6^àù³êvЋ- ²®B€¸ît¥$ÓÅÈrqi±¶£`}éÀ`@$@5šŒÌÆ$Nòfjr~Õ¶…zO^Æ/Ð}Ú×t‡5ÏHÓT¦É«Z§ÊuÀ.÷^Ói@FÀÁÅĺšQ,-fK©PfŠŒN.@¿ i©iK:¼=j© åi±%¡#r“õ Z¦‚RN±RHÅ'³¨É!SAŒ]Öɑ¤Ã’UÎ'AŸñ5#aä-kÕØ«(B£¹3‹˜Ïg.¨©k«²nÍ*ͪ¶(`äû]’GÈùøš ÷Á\w£¢¡\zÃ@âd†:§ÑuIíèÕ0¹t­¦¨"¯± TQE-uÖo“ÄN'M-À¨ž”ÊðœÀP¤Ø‡KMgy=r/uXËÒ^¯ÐC+hÙ3­.RÐ<Ö€ ¼[~z ‰/29B…bÖ¬^xÜÙ¯­±ÌY­øß­ó¿g˜u!C‘@kŠ[¹£ÚÉË{g ëlþÒ<><t+ž¾Ë8íVû¦åöo¬Ùlå§Õ7Ûð¿I‚GÐGëäðpo)¦Y€é™Š}•΄E ¬Thõ¼¾fDÛÌÃÐ0 ‡|‡˜6@Ãv÷›áe}ççÆÁ‹œÕXdÝvŽ@ CV?€s8#ªU„²rˆ˜Z_wZ÷ä¸Þ<Ý;ÉÝ»‚¦ /û>¾{¶¹N§j.½³säB6ç‹,¦Ò[õ7æI3·¸{ºWoÒÁõxA±ñ¼øüðô`÷<òèàðD/Ê#ÊD7 %.îd."á¼ö¸ë 9Œ Å\£‘q“äk¯çáka£áXe¹<t;¾+ âgj[#Ò°{˜Á‡<ßC¡A®ò†n#iÿ…Š‚Vws{Ìiã¸žÌÆet‘&Œ›y§ßfVÙ¦ë‚PZqÚ8Öi#.;@ÁZoÙ€l`(|8(ñV,çrZ)•=rÈ— p.L{—é‚‘”éš+Uâd!vTÝûƒ¶Ë wž;rDá´U«¾ûN2Ô ˜ÓƒÖÞ!,Ãèzâ©…/43uósVÒçy“"(²Ê«H¸[Z*¹qº ØdVð¡ä´Ô­Kï\Žöy˜b™:ÖØ9Ü߯ñRúò§Æ}øvèÀL ïQÖJ·%ÖèEZ@QVïŸ- ráà–,¡8ØÐL r$°Å6ÑÈ î¬\RXõÙy¦²MïRœDlŸ¥XqFBHN©¤Ï™ÝÈ»èó*4²’VÕ–AÄ_î»ÝwÀâ´E¸¡ü(;G™¨&ÄÄ6%Ç*èògÑ70[aÆ2ëÕïdÝNŒiN0KzÐ|yx|Ò¢YÍVóôè~ÖwçQAtÎÛ6Gó"šZx®†¬'\v3:±Ð L=`‰¾I§íZÔ·÷­eR#†SVB¸Ù…û~º§`7¾Yi®gÄúç75cû’óÙ?m‹î_«¥²Ù/ü‘V@ ’2ß‘»F¾Ÿ 9;1ài[–pxܬ®‘oôYñšVòYÖ7j‡Ï{&ñŠ@O’pÓÑ6 fçIdøšù-ÊñmùÄ®³‹ÖÄRÉþVáP]v+6„ÉT ÉÒæp(¢#02Û| ”Å€'D@'ÚTdKˆ ¡Míá7*;Y4ìÞEXl‚=ŸÔßœµ¶í+XT°Ò Z²J¦rv.]Já>A¿±]:91VÖêùvTQJiµBDÛÓ'Ó´Iý£-Üg¬]ˆRÆøE’¼jØÃŒ¯Ë˜vfð’Ćõ‡0 qñý† j9"&V‹<µð§¶¥*nKßUÞ™V"ìnÁ&Úe¢äÏcu4f2èǾ—´*=7 ˆëFh,uý+9{(¢‚7ÌrΩû2±^¦ÕßÕš­ýz³‰7X {µžï¦L¥ˆLµ*[8³T;—:;âÛ­–ဠ¹L5¯n]ÉnÙsG[©4l5›Jí ™^>8߯l¶Õ‡Ðy0‘7ÔêÛ¶^ÇÈ8ð¦ßÁdÎØjLó7¾i‚Æâ…i“’¢ÈKÿ ±IfnQéI.$´õ é)rq„T\©™Ô±…%©¦“µžn[[KÊÖÅv9šÀtjR‚Îü”·ëeâ Ì\(Ò{k½ˆÞs·¢üSßÁ„ˆó=F¼¡ú||Âh°„”(y^~Q0EŸ$6AÅ".¿¢=R>õ;C6Rw§«õZO>®é– 9¥ô0´œ±• ÙÌÛ§ppYmûê;åÂÆÖ“2~yBüýôýÖOçV'Î~Úúá§PíŒWïÝ Tƒyäe}ïÈì˜äñœ@÷cýÊ£­ UÇÂ-»ð¶Ý j¿yú¬yo$ô‰ª‚ 0Ñ„!Žì«§p‚¬spX;Þyùyëæ³—OßGE}k‘UÄ7ž´’â«a½~˜8sÚ²â›ø)KKeÐm¡uŬubm=h] F‰Ž rš¾¼&&êsV™ õ —Ùâ¿dÝ% aÎòK¬1g&PÜÔŘP6\“I/¿|iNLÊ-ºh¯ x,šTéŸvs[èá ɱ‹§“³Ì»c7Á|Ã,}M.¬²¸“¥Øç*y`Ц#™ÖÆTgkcâšÁ}ÞNŸ£Bù,mô'@œÐ?úE–Á9™¤t‰Æsý>͵×èßUn4.Ù@pêq…Ì×5NŠø2퉳nŠïÖ›;Ç£±žÜ×à´ò`ªo¥†.åçpTZj:”CÅ”x£>_w}8—·±;‹îœ\Ì pd^é¾eänñò²JÖV²9芭IœÌl #¥E8!-xgxèÇ#ŸºL“™gý™)9É/åeÃ4ó|Â!s·sÝ™ֻ³ iô¥ô! kŸ …Χ‰·å]¶Ø¥@Üôä¸Õ|)ã2mçåfb:8¯,†Ôg5'ýŽ^ÁÐQ¸p6d±sDøL;𣂎]ą̈¯÷«.®DkÃÑ/dl±¡ar?3­g´› ú·Ïet²£ k nô,2[Ø©5“e¦—±6yx"¾BWŒ™•Bfu¢‘ÇìŠÉ7d Dz?™¸òjú]Û¢Bh«á2ÍÓ,ÅÈ–ÝN#/ ºCk¯õǾ¬½ª?Ñ~%ÎeŸ;kªï‘~„mè8WÅÕH“ì$°ÛÀ&k{+dbL,žºí÷¥Ö$?õÐ.AôÕä$÷>Èã\q'Ä'v¤Š ºn¥] (<ÒÛÜ£]q‚HÎøBub)LðÛ´’U¹i¢£±y…15þ•Ó»Ð,c(‹ø ÷;ŠçúÏó(È|+íB“naaòfRB AL.Ÿ*"4Ñ$AèáÓ’Ì™AH„¤T&©N A5(º±Æ'a\“î\Õr¹º;×ãw. AôÿÙ¯ýlˆrƲûñLÊÇÚä8LåMéà[È2gCçз’œ˜/\—†zId ´h¢#<Ô Þþ=J‚v;€t• ï=l¸1QȆØ&f>ŒË•ò±' iÜéµZÎÀ3|YtÌòAÈç\pCJª×IB­3˜Åö×c#iGÝ:÷ZÇ+—U@%«çõ½Þ¸g|L”:òÑü pÑÓW%L—"ʲ³.Ø?‘ÜÎô’Áó¼v‚,x—¼«Yœ)³¿t¸qÐ81½æSÒÞaìÌÔ’aÙ^a‹R’…vŸL¤Â˸?ÿYK¬pLîÈÇ:§t0wØ ä£gÌ%Fvx,ç‹+¯Mî±þwú\ø^yW}(A`(ØFÔp)aøìÚ'+¦Y?iíœ×N&¦zA;8%Óh'éy@”p¯u½„ØŽA˜N˜ Íì+›ïR”üg„á ìAS]èNøOsVL$ÄÙ¾‹âçç•Ê ?'E *Dj;'¤¨5öÎg.[ôùZ[`—ûl˜Z/ÃBXA´)—H¨\oдE!@2FŸ£ ŒL!øE»S}" Ò0¿TFö"ôýÍf8·ã2ÏâÞÞ—¤.º‚ìþdæ]#[+—JY &e=ÀgŒëCd$ã!:U›sù´^û}ºDòÂà¼änK‘«ÄP½¨³££9SB÷½®‡ÑTÍ5%ôüäÚÄ’ Ám~¤;*‡· Ùþ‡Üdm,ºoÝn7¯…q‰0à\~wÌñ‡n—liqùÆ”÷a·–ä‚¥ã>õ…=0o£ÒCß¿§p¿äðˆBÕˆô8A¤#¿“û¸?Ø.±/‘sµÞ–vÜùŒ/a¼2 â†×ã„OgÍlaVLBƒˆG2Ù…+–”x–GÓ(žJ«·Ë=Î5Ogœ•Ì4rR§Ùrì&ï‘ýÚã%ÿ[naèZB>sÚ™„£'«ð îàÅÒ+²w ïs€l!z¬ö„ •ª„>î]òé4Ép †Ã"¦Dnð°àİ”M„jy5:˜%¹(sÍÝ uI¾]sí {] ئƒœk‡RY\›l A9xÅÐÏ‹l_£uÇþ³Ð„O{X?\ ºk„ƒ¦î^ãÀ ÷%½'!%Í™Ö0h[Ff9`Tº-0= š<«2­0gdöÞ-š´pãÛÎÂn¶›_ξsïC–­¤LZmÁoéØòÒÛ\iém>ý.Ýš¹QOdöÍfãàp jP~n§ßf>4_Ö÷ö>){÷•¦õv.J‹Ñkâ-mS«á+=­iÜǨã¾3r»@)ö(I×÷)ý2b/âþU_ú·ÄYÙ )O"ùh€‚¢¨ ;;+Q6ìnŸ½µ=Üþ¬^q²Ê1Q¤f¬ƒ:}LšH:™:¢œš"ª¢™@(}*ìÞ:÷¸CÆw-{bˆIV6€ÎйÅü)fùñöhŠ"—#¶|ƒ&/Ž=<»®0¿ž#‘é9‚j$ˆG)×9FΉ1[‡‰­¹e.#P0z¬êS†íu)eÑ÷»v'FÌèÀvÛyÊYöEÄ> …FÛøÏ³bW`µýzAÑB/šçsÕ§–Nf—ÙƒuLà˜BÃjOèH"´œUKkU¦QŸŸ¢[©­'ΔQR¸qº^'ljK¡b8”ó¥úóöE!²@u­âé>SiQû“®QúÑ‹ÖÁá‰ÖQ[õ’ß[bª\ÄQ Îѧõ!S5>Á™ª9-KÛü•ÀmggµÓ€~¬ \±â«ÛÄYÈY.¯Àêû >Ñâ‹>'XŸB×ÖèiêÌšr;¦ðk,öJ¸˜Rê”7wQ¶KÂ`+Tž\¿až|L2`AìÞ—Î)²Áy¢ê–ï“ÿ„åË2šltŽºtoQRaü³c‘?Ómè×Ö•t3Y­ÜÙÉ¢±ècŠ[…; î¦ — 1ó·¹…Âã~Arû‰è^ñˆÐäÿ•F@á[-Áž·TÐâ†ìŸ\Rô±x«€žù8‰&û:PÀ5>Æ3O c õC‡‘¡ÌÓ= àLC>6,Aïì(wÔ.ésºáì$Ryð^Bˆ« ¸3—JŒP\}»õ£úÁný`§QoKœÎQDt]:#akÆG/nÄ·K›Ÿ¶ïùº‰¢ ÂÅ Mïì¤ ðï›7øçðÙ?vô_~rz„ Ëéð k¾ÆË”{™ð‘Û¾î{¿%åË%Έ¦G¡UYPjR5pºÛtË÷!dòlí+lLR^Z¸||<Îq¿–Þª"Þ;µ¿åc Œ†c/F¨ÞŽhÀ´ü³ÚÈãt 0 ‘&䦟›¢:(¨Æ\¬h$¼‡úd{&"Šm4¬@`öhïè@^EVE FnÖö»ã^_m–Yj«·œüE€Üº¶åWûÚÇœ)Žá-4¿ñ> –;iŽ.ø Tb êµk…’nƒdΤ%5R†»DB,hç5#¦öœ{„·‘|™Hãf…o~%†-A•¿P8æ#Ñâû [¡àÌg­ñF…L¸Ò–ú—Ö²akmzLùñ(CŽªªµªÖÔº™K‰Í}¬}ÓT;e3^¶tΪbÙ +i6e<¨¦rî´ÞVJ׬8×@š>̽‡©~Ôò…×_®K‘Ž-/É&µ´œlˆŠv˜G˜0Üe<Ÿÿü} çžO‘ùö«4ÇW½ËTH5‰ž-¶³Ä†³E?kü™ D¥Ÿî8Áu/u€+§ :‡0‘>ñI‘Ä›ãþÏwþþ÷ŒL`86héj¢º†¦»´+h_ò …+û Q5ô L}ª+0ÄÒɪcy1—>B…ˆàäÛ´e>€ZsRô?™B=¯?¨hºèçÀŒ¾Ü =É$oHà„­ñ¸qŒ€Ô^‚’![(ÃÀ«R=ÜB‡{qjõñ£NÈ¥„ïõ}Üyw {R#+{:œ+ôEBßO/èqb².½§µÈU Ú6/Ûí(Dóð[ÒÔjo~J‡'LŠ<Êå­˜•ã Üï[hꇢŽè.Œ8ó(6(ŽÔxkî}Ü6CÆÛ nÚê#ÿí÷÷PoÔ ä ¾ˆÍ‹™Ä®†þ{\ L…(F8Dl¤mB*ðy4×N`à ÚðtyïŽXñ¸zº¯“ÄSr˜âŠ|Á4£'qïœ÷fùàMX>Ò%RÄØë œ¶…dMÉS©8NÇqjé»yEøÕÈrAæO³m¨ü­>¥ð]@m‘޶õ: ‹C}Ül¶c|JzƒÄW'ðÎTβ9a´€“•‰ .ÆÏCJ…ðTõSÄᘤK]Á‰#ÎÒãþAÙ€¾«Ì¨¾þÕ æP1óuE<È}RÅ@[,õ.'*EL¨@ž"[Fò‡ >2#²'G¶{ I˜”&”MMIæŒp!m@ϾTŽâûó-¾&«Å<¬ ¾#e :ˆv¤OL (ZÞy9ºtdgº¥ð¢:`UÉÔ|M!ÊI'TÜ?*Ðð6JeÚQ6JZð]‡–á8èRæD®¨°èÞBiEq‹Û%3î lTÙ§x¿¨sÒšàÙ{Á›s…¬80NöÐ0öh³TžÝ2#rËjï(rÈ_s„Ñl¬Y!ð-ÕWˆ€‹ÏG—Š&µõtÂFpîG³ S)‘ÓtøèZšvè–Ö>[àó|ä6f·~´¸[µ3¶E”,ù /0\¥—Rò€ÏI)µÐ^÷ lv}ælZ;“^¤ ¸K¢>Šü~R–¹>ëãªgTq›ƒ9Û¢DŸ…ôi„ãJè+­ß¶¶º+C¬íEš¬%Ý«×v/Z»‡'ñ;2]O‰x+F­Ž?úE'9m8ÇÃ6zÐØ¨£} µ¥Ü%ô™­ C™­…+ê©!šÀŽE]hažÎŠEžÑbb5,Ña‡”¡Kù5¼Q±PìÞaiLëÇžö“ð;^0»`@Ip2Â.޼ž˜ÀÐÕÖ‚b“žÙBýѶ}ƒ®·X”pI—ø PØÜ«5_ngßfEkЇ•3ØÎÂß,ÝÆÕC„.Þ­ÈB¶;õr4©XÄôsjýX ¾$|¡3-QâZ¹ ¼[ó©û^R‘ÏBÿWŽ|A6ýúc®©@ìfÆE ¬í¤‹;¤ÔëÿtòÅ8œ£FvjQuÜ8œ«ˆ-bˆ Ú)‚ÁÙÞs1:8ˆpPr.9ˆ˜¾9¢(g])›XëÓ«K]¢k=’w·"1Ø ŸÄ*èfVa²’Ûi»læ YûÈR‡ö"Ô)ÊÊ& B÷|¹ÈG?fäªálémv‰"xCωÚï`K²‹§cå±0—‹BÅãUpí]r÷N>¿cÀ:”dæ½ð}Ñz».V‚t*‡õ8lo—E_¿z—$hÍ™Åí?çã’èüCµmn¾ŽêÞuÍ9¿w¹ýðPßyy˜;£Í¶w { œ Iyêªl°¼UZÊ,/gßIS$?23‰£Æn7ôðÔwÇZÇÊ­ Làè¬ÔÇì³_?Ì;jÈ^®²:RÈíµß•$漕wïM69TEm‘ÆŒÄ:4|sHˆ4šHàˆ•jyuSjq–;Y4öå{ºg¥ôJÞ3TÉ­–Ëeî’¨™³AáW§W,ʉ-´ÞY¥Ñ H¥Ž¼‰Ëæ$W[à6ä 1ý͈xçmOÔ;]›4ŸY'—†aâݳy˜i"mº—žýeXô0&™ƒ"ÊÞ.lƒ2(ÝhÚ:K~TÜAðœUT6>ª> g~Lý ƒJ¯“nÄ›%Ëô¬iìGoñxÁžÑuÓÓTw9t®ˆµ…¨Iú9eÏj\R¾/"c²·aKÅN'†‚Ǩ¡[Ô9”X¬»%²*-G8î Ô{ŸúÊÜUDäÏß{£'Q=iµŸ¶²¢Í¨X$CÌ«Jü–ìB”'zr“_Š¶Û™X¦8ÕÀ;ÝRdKG¾(¬KG]ø:±ôís¸é‘Éb×RVF?\JÑ»Á{VE35vÜØg¶2i*G§ æ Ú-xÀ]ôŽÅßtÙÆ\I‡„•·£x-Úº ´¶|Ûõ‰íÓnBÎþÐle1)6öùŠ‚ÿí…Zk]ÀqŽ­éRcI÷ÆíkRsõ\W¬Æ‘øÙavB¡¥5'¢Úmw8b¥jÔÆ³ñH˨˜ÒÇ–uá]±¢©¬Ä©s|Ëö ù`$ç³ei%eZ;­ÃHT€°:И탮ŸæSg±ú¡uu4æ‚8ÁT˜îà°È‘IÈS{2JÃ!…¦iÎöãžÁª8"O±4Ï‘‘uà#ú{|­é£‹!šÞ Í;VÍ †®IX¬–ÖÊùBx³záRt½kÎ 3F5¿4#&’ÖÒß"§Ähš,ÿ"qÈ"³0n ÙAAžŒg@×tzo"« *K}Ì5°1Ø´Gbƒ.yp]q¼ 2'¦Y²Üàp#¦WtçÊ$G/TH:ÚŸÊrÒ„zÌ2QYì@;·(ûQQ>'²,úƒsî<'ÆZ#Ÿ0÷^·#2P@†V¦Üªí×k»¿°k»ŽÆ ¹3eq—À$NãîÈÃ䩨4 Rç†À'€äóޱ²žhÍ#6¥by¹ý^ŒÁqIäÞ:ˆA¼½ásÛáüÒøk×¾6£÷&±)Œ£©-¦JI‰ò¦è;ÿ;EÏ$Ú ÎŒ1YA¼„íŒf—J££…öB Nô޾ZepîSÅF&§qˆÒ®>ƒŠ%¹_tØ0Dl¯ä¢ØïvÇú$ŽçG—ÎMéb£Dꩈ®ÇàÖn={žŸ¢ø¡âìF€w8È0…vSë¢ó½åcÉò ¢i¯) ÕÏÎê“r½X»ÇÝÀ?¥ËÄ4-KÜÅÐкŸG%r?Ô(ü?%ÝÖÇT :ɵï¯ÐO&1 Üùå%|NÞHYà¼rƒSþ›ïÖ¨ ¨í¬©~‹šAs;–@³Óáp¾LOxCò÷0¯72Ù–e§ä,ß»™˜Œ½àxìèÖ¢ÖRdKJ6,¼•_ä3[2yÊ8wq–ÝFíÅÁ!*E|ô+rGî„Ó7z~Œný¢0>JŠ’\š„¹Dš,Y)ÑtF´–,AÞá0o‘ùŠv±X¶”sÉà{kÅ”AG8Ç)3lh—¯ž\ 9z¢•bɃƒïu¦”bçšÀ1gè6xâÆnøïÏó[‰%¬¾b!â¨þû-ø^ˆqiÝ¥0a€8ýQµˆ„3 3h™9˜Á¬Õ“é²³pšì~V·@zãÆó„I,5qصӃÿwzxRßt$‘ää@T22\ÉIõ­Ž¥3òƒê¿,ôÇ”'ц$}}Ìâ':‰áÖO¾Ì¥‰Í¡¸ÿ…Í’7¼/Á Ḷ/ï÷[â¤IϱÐÞáúg©3ñò(ò ŽcìßÅ*Jp#ôà´r,p9Κx ûvýXW¾^ë“Êbƒç‡•šðú—ra#ÌÞ[ÖuÃô2'Ç£éûìþÏèy¤ÑNxe°†i½Å$;(n$Ù9оğЛY®”ž”îÐE-\ñƒâ•ïwÄ—rN!ä«!žªÈÝ…)åL°µ¼Lf‰¥«þ˜ÒÌH¤åëQ¯»¬q¿\-WªÅòÆr/¸*çRÂ×?|”ʪ@ ×&™Ò¶æ='ˆÂ½<Ú2:·ï œ¦ì“hj9¢ ’פËIMNjG Œ¢ UžÍtÐÑû>¹=•@iôhÉ´lÐuFÄæK‰SW{¼dx^‘—kž*’MÜ…ÆX Œ¢8F5¿ÞDì ¾âǸHdz„ºçn²&>¤z:—côõÍ2Ì·–ÀîÂ;iÍô â«Æn$DRx„Ä&¼grhHœ×o§>uïO¡Ó`†Î˜S»EÆÓú/gvL*OëVŸ v~ߨ“fZçèí¬Þ™êSºÇ¦C^¬ƒ³ð'ïçur65YðÃHŽÕ+“«xæWâ„Þ¢ïô–ñqÉéÅá8/…B0ýÜncјˆŠ/¬Ëuª\V¦ŸÛîdåzRåæÎáQÝjš~o·ƒ¶?pcÓ+ñŠðÆžæŽ9[®–÷N´³ÅMaFGiµ ­å~SS¯¿9¡Ã¥2—$YÜTù]Öv¢ÅSûSP´c)C€fã…›hã‘k_´ÄÐt+Œ¨f*»Î“1â4‘ûiiš§1â£ý8»[Bo$Ð[‚‰Ž~/ºWJ¹ËÏÒ!E=6oØÊ-p$ Êåx„×Zø¤£ª¾­H“Ž>-âth –¢³ëáÏOµ3*t¹”¥ :¦Á¸ÇÐ"*õe")RÚÞ€ÔMß„¹ºº°¯Ýp„N1ÍéoCH”šuËz^ee˜ã1-¶¨0âNZGYh·ÝÁHüx Š•~«&×Åøêq¥¼YÝ$½¼ŒMøØ(DŒ·]·ÀÖÎÔÈäF³=FËc ‘Ï}Ùa/‹c¼:äyƒ°´¥bϵ¯ ]ìäÉz\ZWD'¬³"L§•¶†€h‰[Â…É·,ß}Ç_†úÛðR›»Ñ4Ê™yê‡ïªêûï³Àš²©C|“Jý‚ˆthº‡Zj=Ùxž×jgÒ{£é;å5 ëä›’LÓ¶¯DA±%9V :Š—æ®Kë¥û#+ÀÞ©á}JBëFÒKô|ôvíéNj[}WÇ.!ªô´GŠh -ð /üqËä)t8Å$H”  ÔwGË7ž{[\~ô:Ûk«ÕR)Éð>rÉý쪨éé'…3‘fœ¥²‚܈ëËGÊ}’ò/¹L†BóÐMu_gí4âžØû_°¹ Sͪ6Ћ (©µ¸z­J×þ¥T æÛÒúàíÍÎNýcj>¯7[ÇûúœD¦ìèÛR—°¯ÇŽ7EË0^¹Kƒ¸uî%$¥Ð#5ޤÌ"ÝY€¦·ÉDI½ˆÕåFK§é.Çøu/÷WB«¬ÀרOŠ-·%¢¯!NP¢•Ášbÿ¶ßõŽ˜9p®+¼~nÃôà–MZR”Ú¡0­$ãÏ?ÄØˆšÝÀxŽl…ŽÛÛ[sÜÐwIËøòЗÑaÅdì² Tò8Åý’¯j8’^¨¤¨zº8=Ûü$¥>Q)=?¹ÀKp;D‘Ð\\8ÉmøØ‚›ùpx_²tƒF*:]höÝ[²-ölOø¬)Z‘§J×» »– V&ù4Êš1Ÿ•×a3Y¨‘Õ8àgd˜@1úÅýd2P7]Qñ]\)a»Yß\­”è¾ Á¼É‚ƒTf‹,KØ/ŒPѧœF[럇s‡Xø‰È:|©)|1H]PªÂL²ã!òO{0v¥Öúš×q_Üi¯‘óÙ ¡¦˜h<ž{¢=ûF.éuÞ’Ž’E#¹&ÓøˆžÚ˜0¡É+G (7PDÂñ #N‚Ø×Þ x-6Uö.lB^‡}†Ùa¬ÑnÖ“RbÝï…­w$`5£Cä£Ci¹X|%~Øñ./]rÖåkº€ /³0B"bˆ¥@”$YýÓzyxø³ÊÑN*1eòÒcÐõý$ç‹"Gà¸ïAA Ï­éÞ£UîZVçÙ_>bÁ8¥W¨ÇÅÛôÞ€"ÊU²ˆÊŽ{G.ªÜ–´]Jµ(VîÕv¦B_©ÅVÛ÷GÛ•‚ð)—N¨ÆûdHÇ.k‘²Äi2m›äëÖ’ÒS÷ ðq¼#\.{¬þ®*ï¸2y‘Mû3ÒãΚ†Óꇘ)˜~qž·,ôxvo'9>úJ,ÔI eâ…zxÛ’‘ݸ…n©“ÁÄ-Mç¤IR@pKBú‚þ;ˆ1ŸØÊ¾±È„E6¡+ñéÒ[ ®ðçÑ“XÇŽ-˜µƒ J‘bpM3‘ͬ›\5­i3r !$GâZùÏ ®¸=¬˜‹v)‡ ª(ÚT9aòH‰OëN8&˜eÇÅâB¨ýfq÷°©x Î%¶ÎÈQ¼ƒJ# 7ë’2Å1&5L‡ÞÙ.¶·ÉvÉr1мh!a {‰À£·ÐV-M454Œ IÏéÅÁ°UEr§ íCùoºñÕc ¿§þáõÔ¾{ï¢ñ÷²AMjœÀ°¥¢gWN'¸*’Ÿ×bFE„A8>û(Ë™é‘óy[!A“o9&zý yLíF²7ˆ™*ED( Zð ‘åiÏRßÙ$¤g0:Üú÷ 'ÐÌ&+0²ZÌ”*˜ |äð¡£]‘ S$7o˜æ×XÆkâ[6¶´*€—í8ßáRRòR0Éü»‰oxùJ[ s;’P‹¦®©-Š©nbÔÏ Ùõ¯d®û¡ úyæÎ‚{(L÷&ã¾ f<É>ë§ïF?Åq¤£A¦ä¤Fש”Þ×0K_{‡,L[Ô?>YD˜×4É…Ä2•ÖØFÆv|‹Aœž›ø<ƒgqîepŸT˜µƒ¡C$Øœ_Žuhº³£¸É(J<4¹Ö¹¢€ Ç¨Žæ=Ùš™?;mÖãÓ²-g7NwV©s6vHè}Á¦æ¾ÿR^Ñ|ÊÊëMà3° ³iwL=±¼D)@m«{!z³‰ ›ßˆ +’T>ܵŪ ƒfÉÒ Ãû:h©N=Ìà÷?J¦¶ƒòå·“ ñˆèžàI‘‚ªQ蔜ÖmW¦há¡” ðægÆÂªv-ß¿·ÞÅ Øì»0>b¶¼5câ¬ø‹!ì bf>«dq1Ò“%Ñ߈oûÉ–‘âàvï%n-ßÞQ¤Xr³¿Ôi¤@<œuØ 9ÛËqyUdNŽyx“ÇÐÌÉßYL+.ʼnoƒÓv‹úÃ’šŠâ®gLX%àÔô^7¥Ûxµï´¯[·‚ê‰íü¤á}X$o&´rä?@÷Ï‹P À—ƒÃ“"q>Ì--…YLÜ63CCæÌð%w5#ÐC¾³éœŒ˜íì§Ï:7(ô;øNuð8îç89yðd¥öаËqd§+ô'ïØ×n˜BÑÔÂ[Ü×’]ùè8M«¥/Ù6% ”)Mkªs®ZÑÆÑ*Μô0ƒ‰ñ`è<Ü‹˜‚úÊeYÊÄGI´Õn·Ú-?šEo1Oê¤Gw€Å­Ü™ÈçI‘¥ÈHì}Œ Gî‹4ÇØ²Ã”ºŽKmÉ_é£5A4OgGòÔºÅÙ·cðR}‡&ì’¬Ï|+d-†,¿c"Uò™Ä9JÏ©(Ù8Œb^²…Ž„Ê…Ó„'‰bfûžÂ|H°‡ÖÄŸ…•9¿ÁÀé‘„©è¢Yôͳª•Eõ›b)[°ÕE0©ƒ\QN$š’d×ÃZ‡;–«ŠæI*ž¨ËÝÿÇ_ªëõ+vÉSäxz G*)¤íܘóýH‰M 锯lúÕõ¯ ÃxRËIPlt8Çg0Òùï´DŸe é›p•òÑS𼤏X:h´´zîVf¯qP?8Ä‹tRŠf$<<«&½Ã>‰Ìx8ÜÍ”ßf~TÛÊÎç<­}BWX0ÿT}:ê²{fs1&ÏœÒÀ6ÂCQËéóMê_,"ôlûý%ˆGÑ›wÛGp–yê ü|ÌaaïÀ i ea4DÜ¥ÑNI\­Å“ËdúC±Œ´=ÀA{¼%;u>N0«u.t0Âi‡(O`÷r;›ÊrnòTC“³³·oߦß>~›yûÝÛìÛw*{~.¶#Q»Kéøô¾QÏÎó:é3·èÄ£3Ú{«Þ>šÝ¦!ûç­0ãpØVŠ‚»daÉšÜloÈÆj¼!¶»þÅ…Xnè”TŠRj·Z@î>Zÿah¦â;œS¾/P$»¯q)pÈ“®×õúï[‚H˜¼[׃Í#^áÄKÑp;–ºØœ{E«õûC—ƒÊÇ‹“„ÀU²lôîÐ8e%ãÈ“y?e@37àEAF$‘ÖFœöÖ–×TÌ& ¸8ÖÛ"›!FÓ'Ž\5¨.nðoÔ».Ö{£0ŸªAZ:Z j™™Ã–YŠí³¥sÊýñF«¡=ÆùèxœL$¿Rê‘Õâ J:vz¬-Tž¿Q0¢ 0Ú£0h­U1:´É®È(pKÕ—¼ÒäÆaÇ´¨$ù¾(%o_uíÞ@û”.!x—Îû ÆC%–•#œL¢ƒk¶7GꅦРØÁº´rºž„™´-Ö¥[¥¦[]Ö ³[%JŠNÐÇa4:Zêîïª9BØaš5ÐÇêãHÐmXî@URú®6>™3úƒ¯ó©ðœpøž€oiýjŒ3¢%û½Í:f'ö)ü'ˆ}kóä×Á7)–,äˆí÷¬tÝïð½;Q*òO^s4ÎÇßôtP±Ð‚Ø1€ó٦Ĝr= Ú8c?)œ#ŒI6,j¨5ð:ÛÈÄ8V·°¡¾ŸMdbœnÀXNϋʫïøäÂÍ|3+µ'õ£»< ZIý§n3ÒÍbgZ4w}>šæ#錫—tö“`òâ4t)»ÄQcWâaB©Õ€‰Xà"Í$Ò`¢õ˜è¦lþCôd1WRc67G߉êM6f"‹#8¼_`˜ÿÈÔçi¸Ík[%rdò•´€=9¿Hd-PA¥û~‡çö£{)!/óq³PÛv2Äw€¨£"uj‘ØÞÑòø*aˆâ\–ƒ¹ô·$NÏ«íJ:?/°÷$ôE—Ó¡Ï3 •H›ÁµØ¸ 8òOßný¤r9lP›ç é„n hòì° büv™í÷ûþ”÷mß?å}$Ýä=cµ|ΗZ5°(í¨ØMØT¸¥«RAøýæÈ¨Ã&mÖîݨ9ry Õµ‰LŸòÊ„ÎUÆ©'àÈ@~COžT7 ,û¬VW6ˆ½âûmÛ’b"A£Ñ—JéÐ*&Ö1|…)mIÑ—lÅK¢BPÇ!>ËRÇLîYí8“{•ϧàKY’°Á× ¥2KqElk29¬–Ÿ°šÉžS@cÓiŠL;m{X Ç´}Gò-Ì.Ž&,¶J0³@%Õâ4rÚ­læU–Ä;Cr\Âo@P–e’@5ŽoH Pb™WÛüž²Å§Idœ7‰¯©n&©LTr¡ˆ¯3ar&âÔ›wvyqF½x™ÄúºGN4d¤Ò"Qõã…þãu€“a}¦í’xçÙwu’ìÀ ,}ˆ¦ad¸š•ô8/Nólfåç3r²>€Mƒ9lvóK(É€" _x}XBn`y»T‹N*¨}îû䘢úЂ"ëñ‘uh âøfThÙ€[à ˆó÷.{SJŠ6r†ó ‚o:ÁŠçѸ²!©`´O _¡\û})Ø> ÛI¿kL|¢„À¾ÎQR™Äëú:>õØžA B@ÈÈ&»;ËUŠ$¼ž„x%rßËàÖ@ž~ÔVH—´„Y51; BÄý…›-Y×M±Ú¤†°2›à–Ž›yëäðp/w&S¨Îeðe‹Ž}‘Ö·˜t;ú}åñÆ®¤-šXmê=Ɉ^yryU;n  >Ç~Þ ‘!Z¡jI)Ã1ÝÕjP@$?éï?!Mk‡‰’ןL`„æÑ¡S6Ë 1»»ÃÆBïs†£_t½¶ К“bnL´?¾DZ×V+‘Æ3?åíË´àÇùäKir/ò šþYÈ lõ?‡HMijç‡Çûµ“fX3qŽÔ‡ÑR`ïf@´ Ò7+œ%^5£øz³‘-¨,Ånƒ/( œ»,c´‰dÞhLÐ 3Í OJ Ê翼£ãà B†ê@‘ CIÕ¥õ¢î`¨糸u’2ð»Œþµ^f|÷ÝþŠMKðknÇý°Ï’õ ÎOíkÜä î0è-/rèe%%% ¸¸_R\~ηˆ9?üN§7%Aaí@w‰¨È¦†CP¬ÏíìUŒE#GtCrRà@„§Úϧ´ŸÙT*RáfØáÜoÛ½Çôx¦Lg„|ÒYeæ+ZòÊ¡qŠ]òÂdâìˆ%ÝbÍÞ‡pçøB•'››zèååÆì™ØÀ¥wçvŠ~ðÕív´Š“.µ¹sAó«] òŸÓàèp‘§]m¢¡^4v1% ,g Õ‚Eâ®R +w/—˜a±ø¯`êÎ2ÔG2¦}Ø\Y]1°Œbems3o¥mí9w­±×Ù®–ŸlTÖ*P´ú+ô¸¨õéºÌjmÃòö€UF&ƒ= ÏÖ:§/ž¼-iÛÊŽF0áxÙ¸Šæ¡Èß1aA'WÉk šêjÉÄûÈz˜8o0ÍMB#S\<„•uŽ#ƈ´hÿ4t›5prÂõ€¹ßø^Gg ºâä÷m<"ßA©â¯6èOr˜¾ ]éBWÓ M½ÝF“¡ùGŒ7Û&ŽˆD¯B®Æ³ÔÖƒŒ±Õ®«¬)Œ^¶L(®µë~")7ã)ožyòƒ¾NneKž:¼zxWŸ5¼«Øð®>x³F7epÂg(æ)ó—óHœéSÉgkyqJâÛ}¦bs`®ôX½"Æè)£ Ï®µÁŸÄ2xû©ú=Å$Ô¸´Æ{ef›8ÞÚKe¶FYÁ1¶ž«K@©Q·ŠœŽ 1¼ žäYŸÒ!O(ðb™!8ª3îõîÃC ë©[>TÇÒI!$e”Æç3fâ1I˜‡qßµ-~аÅXýØ|MŽQvAù™eôD¨0ñ<Éã3;fîÐe׊l®Îâøû„fb‰Å82(S’ìdð¥’øÅt#òøÈD?GWn¯$LotîÅ8úpÛìFçI1&ä%z²å˸ˆ>óÁ(L=ª!à³{óæ@šXцBí¶nÄD½·*I?¢…˜/Äé$¾îz8„äw#íÿ”ü6_9Ã)ï„•Oyû?:ÏIâûìÕ…íe9z¡?|éÜßþúü¯ýÐTùßJ¹´º±ì ‹@x_³ Lþ°±±Fáû[YYY_ù[e­¼±¶ZÙ¨¬Tÿ†YÖ×áý×ìÄ´‰>ÐäÐ÷G³ÊÍ{Ü¿Éçñ7jùÂë/¨u{ùb]:÷¨}ïMüKŒ[qQrï\`qî6GŠyšð‘íj¹ò¤XÞ(–WKåÊSLêu²“¤:®”SC?¼ÑKp „Z„—V`á~Rp¨MàB¤„WúBƒ ¢7vc™º+vÙ›^šûÚø=‰ABÔ¨oÓ p„¥°îœÖˆðŠ´yß'ÅxÿI*À¤‘2ûÆ’Pç{“ÖI›ò%JeŒ1Zá]¢¸§¬G¹|êCÊ8õ\ömªHœst%ª¤>¥R8`ïfÛ€4Øò¡%9và‰‹™T†íò0¦ š=öH5Ø»Õ'º.ûU`ú~˜k!P¯áøçßd8Äk^†€0´¯V½0îYÊ_†³âòÙ7ËçK(£/,†ïwÔéÁŽ ýÂÓ¦1íY]çØ";îáÕ‰V~i\0 ©Gì>3F/8Í# ÇqðâõRžS…8Æ„·ü•(àëÆvÝoþÒœ¬Ð¾¿ºeˆºÆd™[LioJÐ)•‡iÔ›!Þ±‘ºB°¿ïÚ½ŽZ^ÞÑCHÆ”õ:|°œ~›+-½ÍÃÓ¥ÌòÛÊröÖÆ6¹—P¸Ü6L±'ÓF¿,¿ „UJöÄyUyˆÖ°ÃhÊŸ M;£3ùK™&Fœ7ô—hŸ2"ž^=õ\ ³M:ýÚ ù™ãͬÎqxT?®Qð€Rƒ-¢ñ ÓÞ"ÿ LÜÌ¥{´Ã£ 0 w8ºv^î ;ÿ ( &ôàð„YQd9à^Æiôý€øà5)¬* Z¼yc2Õ.k–y ?œXÀ¬ð,õ_¼–%¨±$ Ð k;ƒÌC0¶Ák)Ú’ÁÛM+ ¼¯è„êÛ;4uE­_pí]Ž´â•ñMGdšÊ l¨ÅƒC8“ªŒéÄr3,˜F˜Ü&òüQ±aò™î+Ì,²Yí 2Étß×ê´Þ«l¦¬ŠEL‘ wg¯ÏJE”JDWIDV¼š‡Ò⥆#ÿþûúáóÔ)rcà¸ÀÎÚ9~ÑJ]† ŽêD@B=êl¿¾ÿ¬~\*•ÎS©}¡> wjR¢H=±r÷GÔSJaã´ .tWo¨«7ÒU³-Œd–‰ˆ¹é$0¬3U±;R+Féb#–¶bÒÚŠÍžÙã œO‡å)ÑEþÛ©Ú12{&ŒÛkæVŠ"Ö®í•óå- ·ŒP ` ÄÄÛ^ã™Døˆm·¯èáÉ΋ðiÖ<0-dåÅýÌçA})|‹ž‡ä\CïQÇòKó¤¾o•Ð6ïð•Vëá»Û;ªöúM^°”Æõ Mž0Æ"Ë%£móò­$”µ/bè}8Ï´ÌrדÛ¥Ó»X:eÊÓ†‹L‹,3M„k‡í3ܧ”îÚþò¸ë¶ã¢Ff;%fÛ) ‡³ú}ìµßo§@¨ê:mxM ¶S¬Ýù…©Åò­!ˆé”Ü_f_¦·Rƒ´…Qð4Úîà±nŸËã<¦ŽPYSúwxÌ=ãçòxuO- ÁRžDKÃÖ¯ìÏÓ§rÑ.Ic:ëçžÎ‘ͬê 쑌“Àžîn‰ó+Ç_ä…ÓZ°‘ËjÖ›Ô×`(Ð^¡r·¬—¢álé * )W“ÇŸ˜4…·óìed¶28=šŒŒà¾Ñi#RäÿQÀ•T@G7Â/ø¿tÕîhdžA¤ALî®V?¶³L­å£D«IÚ–Ë c©¿×hžD`ªÑó dß³‘“ÅÛ·ðøç*kâú|TÌÍÉ ÎÂi¯34ODÔ¨û(vÄh(ÂDLI‘&óåˆs§},§×¸3ÆöQšK>ÁEöaÝÑ Zex@ -ûŸ¢ Ú&&B-0ˆ ÿ`ô'¦–)¢Ætò³a$0DJ'ú/ó˜ëì4äG(âð©ÁÐ@¬÷&Bɤ<&^-„p3ú'ñ ÙË,ìþW«ÜÿW}îÆâ­_ ®¿V³ïÊÕµr5~ÿ³¶¶¶þ×ýÏŸðyü¾þá Tã8]Êm'q]rN`bZpTÞŽòœ¹•ÍcÉ‚µÇM®¯Ñøv0CÐÞª ‡S»Z‘(¬7_‚’¬QexºW’l­$..%jÔÑú$¼¡Ò’SVW㦆ct/p®¯_Rûþ=\ ÑH‰­ž‡æT®Û#…'íã=d{”ð\h3ìݹâW S[òm‡@${cRQ˜üt¤ŽÄÂ1L0ãψ¼ÂôârÐeŒ ùúd¤üÞUWVOsûNû°ù&Ï¡ÂÌóÊÊIœœ|*…;ÎßÝ»”dTÛó}ŠMĪõþ¥ÌsûZ,š'3ëåK¥R:–ßN§)>= Úý³º´fÿXµ3†€™nhs¦¬è7dC¢%Š3E¡ÂÊêd )µ 줕”cœt¦½e¿î¤·DE¤H3mØ…Sb‚CVGn‰l¸lÏ)km¦ô²!Ã6€h(|jºÿZãBß/j›z-¹MI{å"¶‹l‚ÎVô¢ÂÅ$Ö¡Å|¥T©fD¢€ˆñs)íµeöjaÅáÑZݳM%#!EÓSÆ®âµT¸Iþ›‹“û?]e•þð®¾Z¸®¯¯Nµÿ@[øþ¿²ñ×þÿg|0†œì ¿¤×Ã…KÃÏtþi*5_(.°{Ñiß½ö:£k(êöÇ=õLéÍtA¾UÖÍו*|ý$@.û|sš»ØRK½ô åÕ7ä¯Áp¸!Iú²­.J:ø =â˜ÜA®ôáSþ©Uí%zÈÁì*‡ò+MÔÁ€p˜÷«°½E;…]„sgi^ïÀ *-%ÓðÕJÑ…¡š$Š3z ÞÃF(?±Ÿ\éÔ.²xl Pìטöéd Ù,ÔÈ·IlOlY‘M-Ä4–kð†s„»ÔÄv D°«u8¹üôŠÖ.—ÎÇ;Ò„p›6óžHå“°ÝÏÞÃ[(zÄg½v Mý<ò.Ÿ‚—°;ÁD0úØw±MÕjOƒ­pP… Óʵ¯ßw¼þhf’(Òj_ ýñ`¡’]gNÇXš˜]bäÞÍé:ÙXÍ*Ò¹tZÈwV!ÒõÏ,p7AuV Ô·´.0å¥;³?°»-‚qÌ ýÌ(5g`T ÕqFÎüRý9ÈÆ¸¶^f¯ýa§:]Î*2 ØçýšsÍ*džP˜°lf)¡)ÊÖÌB#ÌCÞ"›»ÙåÆû™Ld‘¹¥°ÅY…æÏí¸Ý™õú†ÝiÍAöÝä2ü”À‹$ž”ph›õFÏ&XÞ”® GƤ€­í"¾ýã%ÛÄÙ þË6þHÚþçïÚSaNÝ»ù@½( vÑj¾Énwª`@è ŒÓ{!y%ÉiSÞ¢‰ØFéU FÀ#ó¨x‡[à´b£PÆ€°ö gSÈ|*™A)‘QÒÜXZˆ`fUú<Áq12œßî$%&Rã\@ÓÒ"ÊÉI! N&“Uü¼#O«‹ S› NÛ…¤Óx…‡‹©³ $Ê«}œ")Ò §I‹ø ÷7±W|š‡ Ä£ž9‹ÑGÊD· 9™[¾…có ÄÎ䮢¡GZÔŒ)Ò-«$cr+R9º}ÍǶ‚…f?RúáS?µzâ¼G»6ï´Ã3Õ›?y R«‚ïGLJ¯»õ]õìuò²®j§'/Õ»wµ&¼ÎfUí`—|ÔëoŽŽÑ¿üð8ÕØ?Úk@q[oÔ›Õ8ØÙ;݆UPÏNOÈ_ôîPìä°@ '«¥ŸO¸²c{ó|Ùv~·ÑÜÙ«5ö뻥TãZTõWõƒùÞž=–guè ]2<Ën㸾s‚–o`°½Ø+¨æQ}§_êoêÐåÚñ/5¦­jÖÿß)‚—j·¶_{Qoª\tà©øÀ¿;§Çõ}쌖BÙ4NNOêêÅáá.¢S5ëǯ;õæSµwˆ~®N›õBj·vR£† ^ãXN› BMãà¤~||Ji¥óêåák<ô±Uw ‡èÃwð LxýðøŠ8 Ôë—ux~ @pTdŸ^ °ë;'v1hïäðø$ŽQÔ_ì5^Ôvêøö¡¼n4ëy˜‘F 4$¢´yJCÆ™€^Á×(õh¾T㹪í¾j`·¥0Ìp³!Ô@(Ûy)è.ý›Ûú$}¦íÿϽ~§\‹•ŒøèóÛ˜³ÿ—×@6ŒîÿUøßÚ_ûÿŸðy¬öÙ;Mx;Îû1£ÂyW¹£—ê¹{\ªyŒÐïB®¾Û8¡ëP^ uÌKNî)Tù8çÉËVóôùóÆ`U®P}YÖÅò©ž3|ßr‚–Ó¹Á}D°º]Qq…eöÏŽEªƒÚ¾´1 ¢”h:\Ž÷Èi£zâ%¥­hŠ Qmxäõ`é}‹óZ´´‘QË"9½HtÆ*Œ4¦&º—<¦õäÿmöúÒÁç·1gý¯¬®V&Öeý/û¿?ãó˜—=F½Á 7îEpÓ/½ï¸÷f4÷ß/ÿ¼[_†'ng,´ÁÊ¿ FR?Râi“¢íÿ 0Á«àéP0 ´§×Íj7YX»C›;×k»S¹ÓòT6%Œ!‹$Œó%S&Ê—fp»x äM—ÉG¹j²8F»äô[X¿`SD_õÑc|ð­•cŽª5ï{~·~gr6/Ñìûh\s)8‹¸¤³£™k à…D8D%¸ =nÖO°~àŽr4:ήô$nt¢‹àSzJ-z´’…®(} A´\E.­ñVhËêù¥ë§ 3ŸVt}``??=ØÉ³S]餷¨£ÃÄ7NûZüa@4þÖ8Ð_NêûM5ÂkU%èïGÿÞR¤¥¶3 ÆUЦ¥Ü›õ¦ÆS+óÞ|ŠâºÞU%× rÏ) g3bŒ"Ó–xø<ãÓävy*§Â]Œ¤ã_— b¬; ÜŒb¡6_"Påð¾ç´õµÑmªbø×m óš¶!Bbh›…IEÑRF?AΦҨáÖÁÉ4ód»ÃsˆÈ.K31¸}"Íoû|×ëèW!#ñ13E¾šŒfv [F›`ÕÉüý_½Aÿ“?Óä?ºb$ÎÿJØ~¾8[þ«”+•¸þ·ZÞXÿKÿûg|«¦×óºÎS÷éÈY&#˜»*ã AŽý÷¡M€.ŠâsÆÕ•#ÈZûHFè\sÜ—ÊyŒfÒèeˆy?ÓØ!L`Jñ%k{Í:fÑAîÀyU8kðˆr…èöŸ²'&©Ôñï)'Œ”¢Üñ¶”¾ì:W¦Ò0cÏÐÃ/øŸœ@„YCÍ¡Fµ{_Ý늄úY܇ÑP@ rŽÐv•ŸÒ]ÐòOæƒ~õIÆKvÄ'­&ÈÇõ°”®÷I¥Ó±",¼ì7_‰¨2tGãa?Îy ¹õ¢E7•Å`’Àwy3|ÅÂx 3P¦ônÖåü²IÛÝ.áœr63Ú¢d:D»MåÒu‡-ô’N9Ï žèfV'ùq(¶»3$ßOЯW%¾&MP»Å÷ Ú$0 xÐoÌJsi¥­Œ†lÄñQ¶LcëÃI-ï`êÄÑð~àcÿùÙ²ÕˆÞƒóì=|/)=XrQa„m‚5t{CJ‹Ìé>¬Æ8g$x×ÃdF¡“®v.t]à<ŒÏ‰®†áYœ)UpMϤo%uØWâ=\0¥.10«ŽeÊé#Ü/àÆðþ˜°0ýq ®ºþ¿£|î\CŒs¾ÜŽ*%¿Dà”ÒAX1Hh cù^:Gƒ?¼n×Y®ýÛü*µ¯¼1+Òú“•2UæìUÀ8¶Ã{ŒTÄ4',RF{ÄÙ6¯|I’váš$Œ« ¤40˜#€ÍcÈ¡Jz^ÀöŸ)ؘ{} ‡玎ÿQß9i=k ”†Òê2ÞæÉ«¢Ä6vàrY}Tmaâjܵ|´J}H¾es%ͺhš84®7³4È_Ÿv,\2±¹·ö˜CÜÎ:n¯1ÉNé±I½£©Ÿ£‹CÝæ•Ó±,Ò†·¼§ô¼;&鯥"ŽE‰U(v1oÔ7q„§ð£œà³³ä¼ñ·’`†Ø0Y r5ú}¶}Ææ€ý‘…_tš/ÐêÔ¿žšR8ªúe†fm¼‹Øõÿn*k;ü÷|û<…‡ÙÏÓÀŸú‰ì(Óô?·éÒ v˜âën!¾¢ .8Ku0å®,4~J'ì„©ð˜¸Cê‡Ï÷j/&ØNX,BÌz/ECÀ\X柂Í äøy˜àö™8ò&<½.€øˆ`dQœì?ˆ>ÍÓ£ˆcÞÙ§ø(ö£/§Œ}â4-ßm™)Ú.—|¬Ž82oè»ë_ØáLí‘e¡yÞ¤p/ð@Å+ᇠ£܂±ñ®ijèþØù¦Bñ¤´8ag>Øû´]›]æËHûøðçúÁ4ê–—SæÎÈÓR×HËá|¦°¬Šªï³2¦ 6˜×¹ 5æóéDÚ±WÑ×îÆØÌÅ&lJ7B;”Ô/AR?<¦g¬œi*(-ÝHxÇYIþáÕ4þ¬ª†Ô§sø±’ŽÓñSe¹26“ñcfˆDTïéÃîÿyeÙÿÁÏLýßià6)BQýnäöJ7õjÀ9÷¿k•õ ûêjuõ/ýߟð‘ì|8¯ÔUL1;lþ¤%”DÛ(Í0pÓNë´YoqôîVýÍIý I[¸I$OQá ŠÃˆáA"@¥„âˆÓá|2K]¡{â†ÏÊ«[W«‡¶(9zÑF¢ºñl_Ç–S¹?–›Š\GŠ¢Zã †ßVþ°Ã±mPs"9Ö¯ÜÑraç¨Hè» › §›Ùóúã» Xª÷ÞǦ „tQ9Ø ‹2°¼4ÉjcÒ.ý£qÂ#7ÔĈ“ {°óhÛZÄjI½ôoñ„]P]1/ÒÁÀÇ  •ÃZBúX²æŒ¢† t86…üÓÓÂ"外 µÍè¡,üRôª¯+ÕÏPÉÒcTZ¶h9ÌÖÕ¾¨ŸsÜ‹¬w?W_«qaÆKÇ^Ž3ÕµS- >S—»ˆÆÒ7^’ç‡íˆâã±N}ô=ÌÍòÈë¹¥ëÞ`Šsì ¾¥ Q½Ü)^ô't —ŒÌ wçç‚úŸZ.V¢Q)'iOæ*Gfjb¸Ð› ÚHEÍiç1%!w-æec™vŒ#ŠlèSÜ®UcþlnßÃbPãþìÄÎoSá(ÔÈ™h ’Œž¢YÝ·Ï{ö’´ê=UÍZjQ>>ï(ei 4Æ@oèc~͈Ýÿùwí£)4Lá&°(I„5"$ñ°./ …i`fPBØë%Làl1½PÈùÑx gÖêð—lrÊŽï3l:þ:&þoüÌ<ÿ½æ«µ Î!Y>ÓdÎù{ö¿•ê_ñ?ÿ”½Ch¼hÕš­úññáñ¤,>Ñ–?EM-äÁT nûUýO³Jþ¶^×k'õãì0µ=²Þ›”ˆŽQ„Ïé&9Kõýø¢ã:z1Ý^^qÔóQF“.ðG:·ÞÞô‰`ѶìÍÌÆJæÃ¢´ƒS´¼lœq dqáÀ ¡.›3Èy¬ FÃ{6DÀs9&¢JC½$Fp–â.Z¸ÄrÀ>‡J%¦4H™sذEW=-ìY.]|M4&ÒêëZµÀ}:‰nc•1Íýôn¤ûíoÁÒh§ ɰ¾îSâË„®Eá&upšh·RA²äò—¬ð'~¦íÿüDÇ…£È´^ÿ3Û˜³ÿ¯¯¬LÚ®­üeÿùg|«É™&Ç›è‡tph‡Í6š¬B{¨‚É+I7Í€N:=.æßQ°‹lòs|x( ½&ÁÝ%1¯JhµˆÉ¥}Å騄Kš°ìçLqI•ÌoÙX 'JRGvõhÁéS¾%J̧7Vîé¯)*šâ4±$lù.Ú­““ŒÞ,+sT€6.£ <&7±ÉNZYØÑ>•MI}{í`ï.\—c¤Curô¿õDhˆŸEé„ðѨ ½ íÑ.P6V·³¥6Ÿ5N ª²NVªð‡´ä¤r.1œ{àÂ(•;”/ž²F÷ïQ[ú”tÖÎãuÙÈŠ"Ô3‰¢s3TºWΰÓÅô 29„xöÛ®ß9½AWظ%ÏÌá«‹íÉࢊƒ€å#wGz ¹`²BlQi%dðüðÎȨØ>Ž]JOu­“²à,MR~ɪ­%Å"͇•Je¢–Ü„Ü:Æy'#Cp4~œFp¤·[[8JšÛTÞhjß¶¶hÒ¥le}Na& .¼RS˜/,¸0•MýtTÛù¹öÝ*'?…^$Œ!KÙ%£n·ß¾ßg­HéŸD‰Ó::y‰Ž?¥1yìaJ(¡c äN®Ñ¡&Hð" %ÚÓc’`0Kß«3 43DƒC2J×S™ ©ROuú';ú‡Ç?•ô¯Æþ*3„kßÜÀXÓ`@4! M}ƒ,ëtǨÍ_b2¡¹4[”$1ÕS¤…ɉÂTë¬h=µ$$Ÿy uØSPØVŒ;±ÎhÐõÈú'qý²§§õ]PbH­3hp&iÁ-˜óO´ÕR¨n<©¿¨ŸhšÊ|0}ÿdÌC¤ xk‹g,ó‡ö©(QÉ5u+«¥i`ˆ×æm] öÆK蛪í5jÍÙ]²WÜ1‚ð[qøXö¯ñÇ/°&O”ŒmÏ|$ñN¢5‰xú:Cg4>lèö ¾L«¡¡BCBéh£F~ÔfOšÀ…HÉE$ ”‰žźc™ÖãphKz©±—JÙ·‰˜›ú‰}ej¬I΂(q4ýለðŠî ¿‡/E§ó'ÁøHR&Ý ƒ¥+ÙßërEylÊC?úÝíl*Kr¬Ä Ååt.è”Ûwoñ8ŽÓЇþÃô®VÈ‘ù"Âÿû¤ÈôÆÐü ¡ð ª}ãÄŠ¬² à ӑ˹Ô$`†çÍí´J§eúÝ4 ’tðÛØÉX†xJ•H¿aÍÿqO¬“R«)dè¥äEöUæÚFš‡Œp¹xx}ª(¡<ÖMžaÛmù5'aS!(iÅzM {4eœÏ…t0þûM)Æ4åéÌqðÓ^èßZE‚Ë«½ÚÿR@/•°¶V Žð¨ˆj:b#Añƒx@lg0½oé#ÃtÄét—ÕGµ|öÍòù*‚Ì'‹+‹°µ/ «êô`‡ž™ë7I?ÿ‡JgL{:½ü£Çˆ`ý¥õ°·dºª1~Áä¤QŸÞ)žj1x‡{¤Ô~ãàÅë¥<~å𴬫[~øô)þÝùåÅëÆÁŒb¿ùKs²lc· Qט,ܰ„8m¦¤-¶ñF5– ™j:ºTŸ2 n.óoÂþ»v¯£–—w$}1OAzz᢫²Árúm®´ô6O—2Ëo+ËÙwaÙC›ÊÜû+º (ö*ýh·’6`p˜‘ºø€+ßΫ,÷!jèýþd–Z»Ûê8Áõiä:r@º·owU×÷ùÈÁÊL¾ ´Ž¾i»ãT´¶¦Ú(-§3•t*Fy˜­ ¶òCëgÛ¡W ÑuFQlƒm£&pÊ 1Ç¢OÌ&§Ðæ *mÒÞãˆÐ„Rd³¬4ž ?ô_© §¡GÜ^¿p#U¥ûRÉÞ¸T:óÏÏ.žŸýösáò |¤šÖ¯ðâòžü”VÅç¾°<óòÚ»é¼u„›Çâ`Ýù`‰ “.6ò‘¡&4£Ì&h7Ô°Ú1m0DáùqH*‹O×Mè áb (â¶Ip¬nYõ±WÝO‹Ù›Þ™=Ó.9ÙÜž4·÷),¦¯™uBY”Íû×]ÙæalSmxò‰Š#_ð.qçî+…Øt!K­ú–ˆ5Ô|Š ì‘fÏ錮+T2}Ê *E,éQ"êè ÁÏ Àªx€ìW&q¿T‚EŠ«ng‡þ´ïîøç›7¼Û;çÿ{2éUâó[<L#8€Ìð†tD1/(þ…ÝŽÿÊïÃgÿ ¿þÅo†)LëE"íOíÈ"h‰ J²?q ³Dت5 Q9Æšª"þŠ”Ô" FeáÞØ¯éìÜmˆM§,ƬT6+w2"ë•·Ô¯w8£¡3B6SVÅ"ìƒl¨2ÀЛËKiUùỪÀ¡Ödø„†â5`ê/‰/œ¿ÿþmýðyên[†íŸq#çøEŽ6çÿÅqm_ÕŽ_4ÏS©ÏT¡“Í-üöá(ŒJ~––µ@›nÈ${º=>s¦`R¶ˆ€BpÚÃ# –³èŽ£¨7<ޤx ë±¶D{:V:ÐS†*¦¬‹T×°ú.ŒïÛÒ§y2üA^ÀkS:>dÍ“ÚÞª éÌ?çÄ_J!úÍte~L…³uC³u#³Åd¡g(QD¦“!€«ílùíÛsúÚî–€6­gòó-Ò¿U˜¿{±âú7w'.ï½Ó…m…Á®_(AI—h ¦|:ê¤Úü'¥%’ofI7"ÛÉ&²|ðCÂÍWmÈíšG€g¢Vèc– ÐIøA!µú xÔŽ„´¥DLáÑgªIç_›ûú–üb (æ8üÈp6àÃP¿­U &Ø¡T+äçnIüŒßŸLEÎz¾9Ÿ†Ï¨á¬=f5#"0«£>¡9Pಪµ8æi"'ݹzýÿ½ÓïIß 3ÓuK*ã½LZ/è2IÒþ N¶Å¢YÓ ¢\²+óÏZD“ª§ëÚ¢Œ Îab9¾ªV”ˆ,Ð/ô‰1P2 íj,´¬áU"ðß—ì-"†óÅd®aØ®ð°°?¨¦!«øRªÍôN¶‰¶Ìi-²ÁÇ_KKgoß.ŸüøTÁ¯3§øG­øßç[ô{ùm©Y.ù¨È@}´ß㱕ÓÈá‘çÀÁŽ€šÐ,.ÿ­Rñ<«´jÐí‡áfŒí 3)¹î tP`, ƒ¢‰(UÜÐ+œ«sVÄk^ŽÞ´ÎCX¤ Ý6÷ø·Gd"îèê•n×í2Ï/¥p”0Èy¾=Òù|ÔƒýØúx•}Wê¤äöx8vŸ*Í£z˜V?,wÜ›åþ¸ÛUÕ¾«X\K[y)u]w"-¦ÇêyãÍ~}K Êø$îÝÉñ’éÕ{=K.ÜÑ-R·KGO໥þ«ÒÃ>ÍêÞdŸÊÞÒ€ªªÊÎõñXçâÐ)¢>àÐÛ°c¤"‡uÁŠƒ§5²¶#+¿wc½Ò/Rn7ñøtñÛTëUdûµŽk†ÇÎ@Šw?Žvcê©W–õ#Þv=Óá[Âq¡süu£éKú©-Uň7Ž/çt:ÅkT‘eÙ<¶ˆò¼‘ûÿÚ=®I²§é'ý\ßïc8Um» [‡÷ù•'Oªx—_w—OÌx Gxéx2¢íæNµ\^/ÀŸêú&šsQäéú·lûãpx³p•Ó"ßÎbkÅr¥X~’¸vüœ x@v·ÿÜ ÿBüÂE7a®…}¼ˆ[ü“îÿñöïHÿe÷ÿˆY´ø_rÿÿŒÅ¯ÿÿuÿ/¡~h?AY7xàÓ H £ÇJ)‹-pÉÓOm 4;oê ÖÂÉ¥_íݬ¤ó<‡ÀŠ<ŠdROÂè …gþè€=µÍXJ¶SÆRÏ p½‹WÛzaý"<ãJ<†ºì{që@kJF8ɶ$÷Ì•7*`äôûε¡œ6<5›+|%“ÈnK-‰6%jð ¾ç‚IÆâ”žä¬i²q@›„^n†\{Þ(0Æ ºŸ­Lø)©)šM4(S»ë¬êp¨¾\Ýè3ÍÐåèJ€(ƒÓMê¥ð#v5Ra”&‰JœhšJÑÚáWŠ= ]â4hwQd+VÊŠZqyÝdºJ1_]‰=…ë~Ÿ¤m¶Œcc5ý.4¨J™¤Ã<€ \¤hÏyŒØŒšr¬þÈþ‰3Ñ  åȪPZZ.ð€Iö Ûé·Z»˜)«3ö¬>O¥Y_ÇG{eÛI\e#~û.Ós³¾N1”^õ]°EZÍ‚(E•þ †ÒˆPŽÏ |JÇ–aùPŒ6å;x†–aÎG*šê7RÿÆÊ‡`·§õǽ žr])¢ t$÷t*eoSÈ)ì¤rCâyÀÇ<žPJ}Ž£Í£crF {š$+f ðà>šê˜X¤$%88Lé½ô)»Ë •b½ÏÙT38­p®B¥8Qǵ8rŽ#³þê«[dúhü.óX¯Fª¬äS.Fæ£üDëâȤ´Òš{3/i%'qQª…Tóµ»ñzZ™;Q‹h›5÷øçz¢&­´t¼šÊ‹>¶9òZùûWȇ#þ‡·ŸOYOa*«ü#Œ3úφƒGÛX¯%])Zzi¢G=Xï^NÒ^G·œ©dp ien(ô…†c±à“*2ª}„Éú#¹k]‚ÕèÈ÷9X¡¹*ˆ´*W0¬uûÞéÃèh®ñYä}vuj„QJ½8Š$ ¶fëÙico‘lttäOzqosúiÑB5#Ê(æ8ªöö ávÍWD Ì™ ‹ÌÁ¨!Å™/²ÔsÑo’sv™›èŒX¼ß)`}(0g™Í±Tuí:§}MJ½Ž RIŠ8ã 9Çäp€Dˆë>V/Qrê¤ïlddmZäâõîåa󤵳“-¡u¢ÞV æ ‡ÆÉMt=Écƒ¦Š_ãÀÚÕ}Áò3jJI^˜êvàeG Cqä’µ&TÛžz"«lTY‘– ÕØ#\½?ªaO/‡ò ì4j+¤T£„qí°™és:tÞcc:ÙwGޠ˾ՔH±B/Љ²©kuµûÝw&j½ÛBEØÉþÑnãx{J|JK3SN˜+Oà„¹R®nR±ˆ´íw¹qÏ Þ«òÆÂï½§ˆcÅ€fÈ µ½¡O:¯ª¡:ó]hÔ·úÇO:úÉSõ °•zôÁ* ‡«ÝÃ}. ›ÉdŠòßÅûÅj=‚ju#o7VÌd^2·ˆO[& ‘Ûæà_6•ë°š·˜ ,+ÜÌxÅÁ’ dH£h^ÀÕ€4Ó“`ˆq¯w¿]]¦¯ÖÝÖ{}1,¼,úŽèš©Pȇ¬%‘»§Ðš]!¼RÛº°qæ·'û´v[]ÁíÍ'ªýä ï|°(Ði.#åèÞÖÀòÓØ|\í­´µ©nÏîÿ¶@ ß²jœ~CÖOµ}4Ç¿KglX¨+¾‹´i©ï[cP¨ ¶ƒ7i…ÂR~¢›;;ün‰^Fß þ•}MöɨeðþØ¥ÃÀÈ'm5Ö·Ž:º‡s#púÃæÞ`õI˜Õfq÷;©œrW×ÎÞO}¿]ŽGWð¸ävÆ(¸­Ë›EŒÅd)Ø—KÎh„¢9·¦Ñ‚Æ‘Û2‘Ô%ˆúHÅÇ´ žb–ÍÖ~mçeã Žl‚­~{1.¼0ZRñKýãú^½Ö´ê§Õ×%£õ9¨rX=˜V] Fk‹›zXýfZu]R× 6.) ðûdnü t÷ÏvÂZâ¼ï}Ñš¢X?|[zaðU}ÚÄÀ«ðØl|¹VëthµLKí®wцRt“–ëÀ!ß„%õ“ɲ/¢ á`AeÐrÊ ;ê •#öhyI=Ç Š Œálˆ^æ$ 8;Y@ö´më—–©ûÐ’jµ$ WëÆi¡ZAÃâØúF†ÑÖá  ±‡°¶ße¢âTÝœ=ƒ ö^ ]Ø¡EèYsÝYP…ÂZe㥠^D…°AæÇK|$sF”zx;ƒêY‹N2qÛñ }j©½ÛéØlO àÓP¼'^(].þ®~Ŧ ³²ðƒëïQ©€å¿®Ó~Oúhá`r$Ô[ý•tš\>Ú¤47Ï#Øq®rë˜>ªhWˆ./ }ùËÑ­Qšõ®útîcÎ :³ã²¹€cñðÈA€ª`c¥èž±Ygú—0ýS‡œƒ×ÒÖ;ö¸µ´µDÖüSåúA'o"²ˆš4ǦÎ`€ù­@Ê+ÊUF>¿þëÓáP‡˜ðvP-—Š}wÝîåRÁúíøãÑRëYeÚþååãÇK°.ž£ÊP:D2?*lÑë Y·¯yk¨ï=·YR·ÔûÀíºm>)øÈR¢—Þ|œÕŠG˜ñ¯ƒÓá|ïà|Ýaë+VuI© 7 J¤.!ô‚££Å„iJƒð˜ðN$!Ø×ÉnPqëµÇœT³dÀz5Š‹žQŽŽ؃îU¯Ó½uî2{ñè.&-4š†V#¤Óªï¼ ùû ÊЄ‰¶õå€4T÷A{ÔE)ôú¶Ôƒã 0Ä…hšR Só}VM¹¤ÏùwÚøg²çÆ,ÚA`ë«î&ß–G­ ·¨W¨6mv†½HIü™Th)Rf¢Dp½âvÃ"Áu7±È…]$¡ÄZÈZw²Ã.4ká Œ†p!Q•á¯îÛÖ<+Ÿœ¿Í—–2…·Ô!>z„;‡Ó_RŸA•–ÞæÜ‹·y1 ºÏ™Ø«O™ ô“î> ÉÍÚŠŒ—­°X#}8p%;"g±R9èE‹© M0¼„fƒy‚á”=“n°D>¼£à§å\{Ö(-@i.Ñ Í¶ o³FН?z+›ë{ë›ï?öƒ•êû@KXÕí7ÎÖžtp[¡Ùhµ Ï­àb/FÖ ,–GÂíPêÁCë°ðXâ=ÆÛw¡v\¦ÖwŸ?Žr_ʰë”ÕäBF/`Ç|~æwœF”®#‘K7Þü(å jÐH0Š>fŒáÞhˆRy¡Ia×øÖÁ$ÁV€±<0S š·³Áò¯®Y ËE×¹ð–ŸËîEfy9‹+ëÂ[la¥3ýÅMÐkh®_¸Û°ð2jYø»¬@_„IVÑ(©Ëª¥>“îõÄ0²ÁsèR HxùÕ£’}âÞë; ,uß»Ã¾Û ãì†*[JGA*9 ÔKÞ”1ì¢ýtì‰Jȹ*èuŒî»¬ÃG¾ˆºôèXÒជNØ„lg±Z6>åúmó"»D½ÏŠ­óÒLšÜŽQMR‚SZ¥PÏ„Ò=:mürT/î×NŸ×vNNëÇÅŸëÇõ½âáQý¸v‚1hEhW¾¡°ßA©,‚:Ž¥‡ÕÈ:»G•’›‰ÃGiãí=b•gFH¡˜ùàÀ:ð è°øÉŒ.m=ó`Ò¯DNKÚ¼iÕ’û2/-“S¥´5ã/¨xíVãÀ€û¡”8¿u)¿pó>”‡õ>µ}8g<¤y.¾pëÛžÕøžwA¡ÒØ&¡øÛ…{Ðå&fõbßëôñz)ìFX±'Ågtß¿÷‡EgNßõ:  °ì,`‡ÍJysH~[SàÀÊ Ú€·a¼_`šÃAÛÂÕp6æ' LEúL@MÔïC–´ªžÜzü§ÕE*¤¬UýØíø 5<Ä‚! ½A³ñ¼²µT «âÓ" €þËŠ)ët׎–³ä±‹Gú›Æ ÙÓê@¨¨ gSâ¨`0æÄÞ˜Íéwè³·íwà¤ûˆï²ªÝj½ì“¾Z*ã.S–YïÔµ¢Ë‡sû^e?ð•rfåSVïKk4ćÃX aè§ÖnÃá^ƈqÄß Ö1h qC £ …!P}Š%X\®4z2¯¯»8•vÆmcuRyòd èCÓ,Þ¾pǃx$ Çý>w§ãÜë3.âW ¼•„ŒŽ{~0ôÇW×t…絊N`E¢â¡3>†s‰j«2ÌVmïèe­¥wCzÔ„A>RÈŽþ+]e3)‰ ©þ°Ä±¸Ý›Þ˜³`´9#w¤ë¯VU®Z)¯¯bîÐGQ–½Í-i —Ö/¾·SàëËøïæBMP• ¸7k‘ò¥u©Q›Ue=¹ÎÑÎÔJƒ¶¯µ±X­ »µT9žH+ëÜJuöxÖ£m”6wžI­é]ƒZ›±Zµ=©õì!µvÞH­ÝÔzR“JËðëÉ̱=±k6Vfâ/‚‹Ò©1«'‘ÃsMõK};Ó†#Æ1Ðþ“ʽš('¢h¼àÉô‚—žÛí(Û¾M꼉×A›=S ½P†8]òS鑦KU+%ɯ˜†oi:hê xlõ"‡†_ÏŽ^¼9çSÃhÈÝúó/ÿøyoÿàðèÿ7ON_½~óË+ç¢Ýq/¯®½ßÞw{}ðû0onïîÿ˜"Êé½0#ý1[b­ç]9K[§7-V\´^mÁVemèwýûàfÕÚµÏjÎ9‚8;ôÏÏšÁù"¸ƒüÀ†²ß;÷‡ƒë‡@éa…”ÃæòÊ“r¤®·²Q.z=’Þ%º°UãåWû‘ò òÜô|7{µ\N”ÐzoC1Î[ÇæÎÒV¥tV®TÏ¡ÚG|8ô‚6WáS uvlÈ ÝP™)òª Šl Ð%jê°¹gÄ%*n@4«?–+[/ÅÓ7ËûGGXè­y¼Y†Fp׃S)UŠ×pÞ†£ üßõSî5KwKp¿ÑœüÝÜ?jíîõc’Àœ÷®ûÓí ãå•ÒíÀ¹¼(9—¥ž×U¹º3yãyIÕÞ»y:ój{o€F²ÇAc¯®Ï÷ïrË|Ê—¨±û?£~òJf»]Ô‘¶W¬ ðOrAT(%øabgh\[Àø]H)ñvn†áÚ=nþ¸Ž¨‡~ßÑÊ[·ÈõpE¯Ý-öïÖ'«ðªÅõZ]ÚÚ@,›W^àúy^#ˆð–¸8ÑB-iÄØÍnLŽÉÝVsÜ7T×<=X”ËýZ:_š~æ¤å°ij5#pÖÇýÕ—Ò2ÈÂ_Ü6ôÚéÎnrÉn™³Óø]wé«÷›ÞosΊµñÐ:§oLgàñÛ=·àæz¸”C¯ÇÓ ÃŽŽRGÇ8© Æn’~› ï2ÙêÓ¾ÃDë3Ö}“`/Ú¬š]_EõŽhʃ’¾m íæšc2V1ÁÖI·Ûjí­¯¶Z˜¾ÔWÕõÞ»dÏ‚ÅJ¬é„¶h·¿õ‡ï9ý]—™p|I*¶WQ“o¶Õ„‰¾8%¤]ªMuÖ\…;½Îú*z_âãF³Òfàôȳ,_„góätÿèQngçð褹NÇUè=8TÅõèºéÑ#à­ iîœ(ÖÍìÜm®Cqd¯{¿hÙjÈH] ­žuÍñ#GO±hÆã­ÎqÎÕ­sÏÉ•Å3 ¸¤7Eˆëh]ï ;¡ —{ç´ñò„<¹ŒqBâ`' Gï4Г+Ò¥06Œ§äÈdµô•÷ÊLD1žb,›”wÅ÷!Çnº°mécs5I' ­`âÇþ8§ïä=§5ư"óEÔ†QònµT)­ÿQ-‚‰âr+ ã¾$á`%ŠK «%s0x‡;/ly¤3*ÐÐ, »Uù]-»£örÏubJ À`4ÌeÖ •ÂJþS6*?¤1‹¸‹­Ð¾û.fÙ´b¦OOµÓÂ(q›¹€@ò+Å™T+²c;ãàz€YoîÝLìòQàÆlmKvûÞÁ óø®7uÙ‹ƒ<üÙî__!q †"—97ÞPÒÌãÍÐ=¬{`9ë;Çá`,R5íŒpéŒÒxñ§¸iô}ÁCÚ(â'ç„Ê©þƒTƒd”—ÎYžjˆ9%¾i‡m ác#è·O7 ?¤ Ö‹%ÝJÓ¥m=%è'6õœ]2týXÃé“ÃfZu\%yÉ;3zàfŒ¦ Ø€ûl<2Ð1m?Œá‡KؤcktBŽÀ@ëlŸ,†ºn úŸg.œ½®HíöcSÂ㓤ÕJŠXcÚI ,M¶µô•ÛYºtº@—і‡V[áÃÏk N,N¬ýÈnE?Kl„^ÎjäÚéÏ4¢Ùèg‰ÐË™8‹"+ z Ððza:‚ Üò„H•“ø ºnQ^O GîD ú8¾>œïC™h?ô¥ÖnÁ!oµ´«sºwrÜx“\kÜ…ãé4ûUí®½©~ãÜͯ]-WË[;{Ü2ÌBuu%üm@µ»b*¸ë¡3¸.£i0éâûrºß8jµÊª$ ûúîðj©¾ÿ^MغI¸=è¶ÿ¥"–¦ž_ºþA©å%ÚBhç½Ì‘*}䓞-Kq;FÿU•ÃoÎðª]ÀĹCµßoÎÎÑËBÌXâ\ ä•®ö4Rí)U{ÔÐNVå0*t ‡OÎæ1â¥þ,+Œ·ä¿‘ ã+ ÚăP¹4QýÃ:—oÔ(¼}ÛOs¿Î*çy±ýÏ•óO-ãØDø¯ŽWç¿®~.|“VWòhɦ텭7ó†Å±H»òWœ®rÅ ¾ýDÏÅŽ;ÆÁÀv/ÛZú‰¡g‹œ}$Í·9²šYB2¾”y'Pؼ¡…U·ßÅèi]f¤!«Ž8סφ½ò-´LYhû@ÚCû·ŽEí×Þ´b T³®ž,Òƒžs7 Ü•­£½Íâdu tèÇdå¼co½Y—V·Õ ÔûÝ÷WÜÏíÛÀ D uRs! ®+dD›°/ì¼Y>}³µa¬›´YQ­öÝøn#ZP¬j5VÞà0ª¨–p¼8^™U#ä÷µWžwx°Õ¹ëKéÇj÷tR³)Ááy1G$HùÞ9¢}¿>}î@K‡ÇÛ Ê7[ó+ŽçŠ^{s³R.›àjÓ UÊ©Gµ„”ç i­gƒÚñ/­ÆÁIýøym§ž¾ÃŠ0vœÛ½¼³ÌY•Z¤ò]DÇ`!³sUD ñ•€…źn²ðE{båh%…+A^µ"Ö[Û\ŸÖ†Ø¯ÓrÙÜ\ÚÚõ»8K=ãìéÀ_¯D© Ã/cD@€ˆf4¸Ý‘£ ‚Õõ­5B\„¬Þì2Hˆ§*÷ýhèÃj q §ðúURoGºZ :”_]!þGÿl!€É¦@x('5¥rÌù-©,lˆL€Ø°äüþ…ÀU¨ æ\yEe È´ó£|¶j7?nUªç¥ÊV5Ogx¤ª¥j©‚ÇAþQpÔ9>Y>ÚÁGÆ‚ ÎuR,;0zª­]œÔ•wC±Ô¦º†30Ù €G£U K3¹%ÛD6L”M È,ö)ËÊÕ¥ÍuBìf HYúªaõU«¤qðºS†{ø]=†žogû€´Wƒ‘"ïôú1E¢¥¤4U'ïà1‹°¯Õ­î+i%/ü`¥ºÆýÁoYä¾)!ò-Œ 9UÒ|d»0ÝËLÐíKòd"“oSª?zôèþƒÊÚoZ-Ú~Zƒv.O¯á–ž#±äÑ£ÁÓ©Ù÷z0è ±µ4 Âeþ.R Â]P’I@Þ…FÐF³– ­’5)x½éœØ'“ëW8«›‚iÐW M)a¼KB¼g«këß)-_»¶™M7€N¨âz–=*6-##f•ß’N"ld*Šl™`¬6߲ƺcLË,Öf–ËË_²°õˆæ¬i›SE§<äU½áÄÑUÒ·~Ô<Ö<ÉOp_:Q¯Æ,ŪsÝ(Ãs1fìhœN†ç“ÐcfwTäe6gítØ7wwózNÛ´¥t3Ô<êWÏ›‰Èº+Â<‡èÚ=z³\ý±\ÞzV:,5K“ ªÝΟ¨å³•ÕsØ¡MáV¥4QñzÙœ¯°½›Y uAœê48ö ézë›XõåQñTöåÑé¦ðïCJgågúV$Á¨ǩ͕ÊxyÄËU¸æŠÞW>©ìûXIG(å™{O,å+w„šìˆ#{Ðnµã–ŽÆó.^X5wˆéhç‚èÕÁÎ- E• ‚MþAæ>i&`¼EûBˆÑ}­ z=~6Ú@d)6ý?ªµP³Si•­ ›ñ •„ •°ÂJ521öR±ªT©G¦¿ÖÀ¹¿!ÙMWKeöªÂ—ë«/oÍËlv⥢ÕüX‰ªJ¹T¥à%WÃ.ò•;ó„‡$D±gÓÑIŸKøñ<ÑeVª¨-”æáéñN=*²Œ:˜€½®­§p0†"Á„º-$ÕTÐòîŽÒK^zGÁþÑÛ(ã#eME„hÝLX ˆJ…•Õ²hjiÛšÊA…P¾¢¹Ž’Ù–B‰JåÒBŠ EqÀ‡§É*± •ـȶæã$ÒcÄ Ë}Ôg "·Ý.’Z´a.¶RëÇŠA/œqw/+õ)üA:LR†~3m¤åAÌ€j&3±¨ÿ¤D¨²3ò,>Ÿn”,ÛÆÃ«èÅrp]Ǭ:«8ö•Ö§er”¸Nõ4ÙZ‰Åš?@]÷·ëÁøn‰lÚmr"hÚKZB2ITIŒ‘%`VªTœ þ&®d"H '„¬{ 1¼VyyDá‘B»¾ßs?Pàˆ-£¡e¢ÁIÚmUŠFY”rÛ?Là¡R)UW¦ÀI ¿ïÖh)̆"á”ø‡ŠÎÇ45iã¢-\ÈS”!DNñ!¢`²_Æ ^D–"ºç-ÌDÏá_MÜ‘¿…«ÉWÊkå%6¿Üšfi5÷ò%q#Ám$õÈì#(ãæ÷3Ùý#bMxYÎa $´~A]¸mg,̸ф-®µ¿³¾ù³r‡C¿ïúã {¯µ¤¢UÄØù¤)î@öCžåjÛbø$©>t`jÐò5û’J6ÁŠA m)/z|­ÔŒmYˆ-°eEL^oÝj„&A˜ØÃ¡ëCun’8þÌ*Ÿ)ô‡6 ‰f*m, `>$L6`¤˜¾ žR2Ürv4E{BW6»¯™Ò³èqg#<#Y‡§ÍÏ6žœ[/&m££§0©õãô*åx•¥'?þ¸´µT_öô=ïåÊö³$½k˯8íã†öé¼å÷6Ñu?¸´ lZ’Z´K“rÓ*?Qé ú¸bPÎqœ¼¬ôÞOÞÌ(ÑE Ðt¤®±#²…Hxßš:;•¥-J?|Ç×è¾M?çXĺr¯¹@d&wªóÁT º0XÌ}À~g—pLtºÎ°å´Û,Ý0e·Aü°¢Ço¢/HhÅÝYYß,cie5qP+› @ÚŒBÚL„´@—¢=JîÐqí—¥_ŠûG[zvñÉ¢7oK´Og–Ko¬Mú¾7(¶‡Î=•‡7ºb´Ñ3̧Þ&ÔnR(†´ g¢'oSìÎ TŒZ"€ßæ)Õpx'¥î—§û-O÷Zމ;F+8¶“æWDçèIytž¬Ô¿b›ÚëÐn¸÷~JÓÍW•¯ØtpS™=\r´Ú9l.÷_­Ql°í`²åç+å³rå<æèÅ‹ïù†ñ%±^@瞟þΠ§tãlLŠ{_æ¦aÂNm@¾dCË,qëFD¬Š˜)g>ØãþT¼ÿæ‚q1|}ÿþaŒµò.WKQlþëGþUZT ¶ÝBIÏš»Ë+ðW\Nô#³1,mÕ‚¶Ûï¼UõÞ…‹Êû嘅JL´q“ð¦Y‰c7—¬&b¦Ð&ÖÈt‰µ§%3À ? šÇCvX#–¡Èäa0Û£}ûÖy¿“|Ðh§ó½øÖ‘^êq3"!—ú‹Jêy¶µ«ÄúÜ¢øÒ‹Tç8vÑÖÀ¡8±p¦Ðç´@¡’làìЦ ­—Eõ1fÔì.S,±-‰Š#p–Ñ®gÊ^#Á¿þj o’g™2ëùietä–£–šEKmÌ-Uµ>µSV™i2¡a ÐæRbs&: oÛþÅo1¦a(†Þ3r‹@­]$Ó’%ªu;¥À/UìK±ñ:¬,J5¥ƒ9ãšÃHüS úfÎü°Î;š_ ÛîEüÉJ5þä‹ICYØ扼õڳƂ¡G“$^®n ¼‹w9”O?_ 4UG¸«¼Ù]ú€}úÄ‚3V˜ë-Zõú2zQ¦'åf¸R]ú²‰mþ7‚sçS«ßØäö`nõý—àrxóe®Ý;çÊï:Ï…ÂMbeçK×çûŠßû2]ßï_ážcæ¹ÝEûùÝ"Ó?«åÞJuø…TÜ~þ…нÎ>ˆÍÊ$Ïk49‰ÃvY<ÐïÒ²lÉõ˜=Þ™R•…n‰1å¥ÓãïØ—È·ù‰§°ÈOz¶ÏtÛŸ,ß¹\ ¸+ð |Ç] Ø Ñù'fV>X©NÔîã©Kªë7‚Œ Ÿ³Ù ´xùɇ-/pZC÷†^Eý°½žzH#¯x¶¾:\Ÿ5œo¾ns@ÃÑæ&À‡Å-<ëG“^yL…ÀÈëq¯ÕЏêÇч ÏäQê~iÕvµƒm"–¤Ž³‡er[ÏÚz6ÙÖ³X[¦¥øÃÈ í4$7Î0øŒ4$€Ø·µZ_B•“éH°tCêRx a.¯áiæƒðS?ðöͶÅ\pQ~‹Â iúÒ4ÆVÞÏ®<Œñu¬ñ…`7%(§ß7Vr ÜßÇnóo§±Xá ÷ÐdžsÚ÷î(·3µõ//ƒkß§„öb¤\½¦ä²Âä6Ò{¬.aÀŠ6¦‚¦{ÂMˆƒj©Dƒn(§GQù~༉ÛÇal$T û˜3Šra\¢W§Ìf¸iäS¤ðe/ö8Še!Æñ–ªã[h“£9#~¸Äð\ì~i:)Qg¹¸!ÛrÕlæKŒ&~KéÄ$¦etä‹Ù¬de«ï¿!GÓnQ¹ ÌÊæõuÝ®Vc¢‡~P-º½»hÞœ4‹+z¶yrx4΃‘?ˆÖw “-v^].­ÜwÉsŽÊA‹)+îûhËUÕñ$­g+÷|òù*{­ Ž>Dfö“þÍ—Qæ§ðŠOq$®”ªQ£WñJæ|çÁrû¢„H23lV±¦´ôJlc—ñæäû$ïfÌ5È’QÊ@ßèÈÙ' ëkR·r‘šib9 úÇð­´´ Íb¾»GI5¼Í2NoÌ-h’¦TÏjJ*iÂÈF`‘Çô$ÀµEª¥Fc!ˆëè¢:ú:uå¶ý®ó•¨>©ÂKÙ=÷“¹Ùù"²CQJ(cÓGçw÷/ŽŽtbÆì 5"‚‚ž‚4R¢G}mmüøuŽA×¹WsébFv'Æ=ʰ “dÂûnQ VtèС_)1ýþióc‡*L(¢k+–ä´°ËX2M,=­0˜Wƒ‚ô‹Ýga¬aŽ "º× s‘è ³Žjý (’,Ê\b[‘°i ±F—£È­LìXŽ"·bëè j’àm®—É@¢ÍTƒÏ͆¤Óï"JRá>Óa’W æhœ‡û`yìtדÁ,Û{«õ@àÄöŒÐƒÞ4ôÊ Fÿꮾ½mÉï¿Ñ§`gSëLE/¶“ºq[Å‘=m­%§Î¥Y‡")‹gŠÔ’”muóáo~(QVúr÷¬ÓZ2‰ƒ0ÌKd©ma?6:Ž#…½ìÌý‰ä1~xg÷¸KÂeј³,¤5E[™—Zb`ŸÉ•&(œ‹öÚÁѰwy“Ÿ=9›ÓGÄHUÅß½Ñl£òè:í|ŽÈF¨BŽd%6‚=Zé÷šÓmþ¦ú„ÿØ8xm~¯Þ.úÙ;ž52Õ&àd_†zÿq7e;Jd`Lßï¿PŽ ŸŠ`‘j„¡§Ù™`jNÓþØÞ݃Û~£Ê·I£ùÂéYgÕÃÚª§Ïô§»" ‚òàÅžþ`ðsg·ðäõ ¥?xû¦ðàù^£©T´Ä¼!=}ª‘{ëmpÖV¢‡,TWvÓÿ4>Õ ñ[Æ‚ËrŠJÛ„—*&ÚÂ4»½U‡½ÚV&.”óÁÀ>fv$ŒvuK´J=¥]Wƒˆ€jä>²¦ª½‡ªR?ûÚŠA‡ý™_jÂéѹ¨«ÅõŸôÏ;ƒì2ÀõvùÏÿë0ÿŸô× õ¦•Íʰ²tPÅ5¨®×©ÏhîÖŠëÝFÊ–ÜF»Ìt^Á&âðê§Ãö´†•ݬk„Þ² 첎„Ø?*ªðXÕ ¯–Õà¥3ñuõN>¾ê~dB9\­ã®ØdóX·'HÇç{V…Y[ÆÅAР·qñbakV²r¹¾’ ÔyJðbÈöÕb³ÒMºæüÇÙ[M²èwO‡½‹±tÖD8AÒ™©œñùˆ”£¨o%ãíIß ­™vÈÆS>özFÜ1 ¨ 4Ç$ÌÀËsAiúIý•‘ä÷“mŸXž_?rƒx×ßœ½ÿA“>ç\Ñù 3¥vp<¼Ï1☿q#ËwŒ·îKuNðñî÷¦Vtã&uR~`9ü-¤3ÎØžEðDx‚‘›Ü!ó„¾dë.4Lç¦E‡JYt©­ø§7/v­`üS|çØu „&Õ5¹x56V½ßg§<_ßšûõ7µ÷§UøŠ, 1ßjù£¾i±×*6¬gµƒÎ³Ì_]Â8Duy2–À½‹k§Ý_fž6CLa°0Q(Œó¤@çØß±zÕRžH-¢ÏwsŸ¤ƒÔé뼦fªéÇŽP*×.Nqýôxåê¡GøDÉr^›^¯ÜWáýÁ+7Õ‰ïYlJÚ½0aø{j9¬P¾rwŒ~ÿˆs=Ö‹‹äÈ¥ÿ”Áxå’–¶?½‡ÊˆÛƒuÈÅèðÓÒ½=«ŠaÌ#ô/i˜ËßZÞͱfqè,VÞ· ÎŽd‘R÷·•8ŠÆ˜› ²¢)±ãk+ºóôXþÒr]bq¸@is4øu>tëݱ$ó§Ê9 I=&͹)NÇÍ[ãñ{Ld„´ãC=rQþ aÇßèÅÙê;HÌćRXõn÷±Ñá|Äî½kÏy›¶mŽøœfÜ B# CŸD /Èo + ÜCåÓ”Hííó‘¸Jã踡48sr-–ïFI 7CD‘yâ²7.Äd †[ÎØ„Ú㺀҂ -ÝY«†ÔË—áj¤Í?á\„úšÔ\ƺ@X%Wá³yn®r†Ìÿ–ØQñÁY{–òmZV°. Æ^:¤gBåíšôkŸ¶Ú]Í= YÅ'«R11n=‹3«™œ‡j6³K Í¡VûG­i3ýkˆŒ]º„º%ôPƒ‹¯ ¿ò¦^vZžF)â2D%5¹Z±^}e\aî{\n´Þá =HÂTº«üãôò EÛºûâ»O¯„kûM}ù¾Œ†"Å_AÿJÃâ–tª°3PÓÍeÛ”è Bû/§PVì´{FŠãéÙ)îÄe¼€%v7Árþ–h,ïÂr» –ˇ°Ü?Œ…0„Á gEaƒez7ÿeacƒy>(¯-¨ý³A1ÇÍ(Æ3öÜ)é¸úiùëÁ³¢.»F®Ð|ÍÒö÷}+ø.Óåªé¼­ÊŒb¸Š‘=,Hø¶ ±Ì¶lÚ‘€;šk9uC¦³É*oi'äÀÁb΋Û4‰Ä^sqr/À° =ZÚ¾h‰&ÿ-k3ÙŒ¿O¹|Éî ¹Êbu¯Aʸ8íÕ+«TêŸf ‰ƒ´3è’¢3kæg`4üq³¡‚tO»—ëÜÀÍùåçaçZZ ¹˜ýüné2ÒìªÏ ¸ap‡†´ò†\þüÎl®@³·Íý_DS[S\%ÒÖ÷%s·Çç"ôyqYPð]ÿ— ó$ôòeⱟ á¯Ï;oÎNßmKfc?X‡kû‹-­õpçýÉ@¿>˜[çÚÞÉl–Ù_’øvg ½ì={™_¿Ï^§™µÒ·ª¯yíà²+ÕЪó~i¯¹wÕë9a u³Ę̀?W›—©×¶ÖЗø@½•!ÕëœõÖ[":бw·Þ7™ Æ(£ cç|³˜&V¤Ô&ÞŸˆ˜§›À»JPtáÀß‹=? ~%qÔ=Ö›P8˜ u¬Ø]0L™¸Î&õÎÓÂ+& Ǥˆå‚Ì )RÊŽ, eHáOF¢ü±¢,Ç\­¶£y’3ÄKñäÞK*´W`ý ñ¥Š$í'âA8O` Š]*ríð:ð~ÃEù’~d[‰æÖe¼| §–T tÿqÑ=^Uô$Ø bDÕ“îÇ–¦x!dT?‘šNwÇYõlÝë«íŠ–†Œf§ZР’«¼ƒDš6­†’G@8Ö¬ð3 ˈá]–/¤†•îýw÷j¨ãôÞ¼; ·&¥ö‘bý·Nœé(”º7qÖWǯ; ö.ÕQìTS)V¼Uq\­Fßå#.-Ó¡’šoOßÔÙa&4z†ÃF¸˜uÓ"”j1Ù1#ÉǸ΃v ß*½Ç°l™¢¿*Nk›ŸS?‰‘-.åNmŸ v  º[•8é{5¥‘a*U ¨éÔ½ º}£° ´îÞ°{4¼8ïò§ÑØ o n¨R/B®Kãg,2Y¼NÈ^:j®¹z ÕãÔxb,çÓ7= ƒ¶œÆÁ|iìŠH1Ížàdý>á_4¸³'gØ+¶y'mÕ6PJÚ­@ƒËžÍщ]`Å‹wÃÞIçRŸžAs¿À²Tæý¶ÊâRdä0WŽe¥`9:¹(Ç«ªÕ8Ê V²ñŠ™©7âêŠd„;ºÒÚ’JåH óZ˜ëè$b:Ѧ¦ý΂¤²&«hÐM¤4^îúF¨Vv;Ý8€4N¢¹rI£ êûJÅûÔ·Ÿ ÎOS¹ÀžÎHÜ«K¦Ú1ªï[Äu­mãðÐh a§Æ¤ZgÉ}«ØFÄ'^‡¼©!Ç yyy ]í}3uÕøQ,lkjm®®µ´üF#Ž]¬° É}±lÝÔÀ9ž Ñ uo·­¶(•iErÚò¹$›ß}×hì—#ˆÜ |p2) Í£ßY˜ýìµ+yR²¤‘ñäRĈMˆ Ã$Í›õ[o´„üÅRÓ_$üünâ×ÖS¿ù+É_€þK¸å³ ‹žÔ–úÒ SYtݲžn’H'B—W¾69ÆäbNjCgú~g.d2‰£<·âGnpëEa0¥%«^Ñnó-Ö<Î{ƒ¾)›[2û¯Z¡,Õ8ÀK(¡)WþÞªTV¨ôÚi|¬ÆyŒB Åçê:”V븚Gvj„ãB;©‚D"l‘I$‹¦|%Ø9%Ac¤*T9=v ð™'ZD˺Ï.ã(Oû/§E®zU d®}æÝìâKƒ‡&—D ú&)¿.¢ dêe¡uCØÇväÍ’\*ÜJ¼)™5mï°GÞØò|qî˜5 Ã\)/‹pÎÖÕó˜ÖAGz¥PU¡ïñ¨¢»ÈKhîRãk;œÁ­/jŽîGnl/N7AßbŽÊœÇQ8=ÀÔ˜$ ê³g×^R­[+¬Iý:˜×Ãèú™MO³"ôuæuô¤"ˆ ÷G°À%€©J}¾Z¸V$OfrzæqåÌzãÝÁð_u¨[Æ=ùð™¦XCûhðbì5ÁÅÍØ; >½±D¢™`QQ&³¼4nä©Ä1Ä00ä'ntÃÅ3<'’DFb¼YÞ ÿ×\øtXÑBhì£IuÒz XŒ°N ®²PNøCe*•ìíÐÈΧۺõê±>É“›Ï)L¤ÂD›ÁÄ*L¼Ì­ sûLe)ò+C/=-êZøa(õi¢’© úàÒW«+ñ0_]B{UKÛÎw½æ VxµªB~µÔÄìUYeibÛ•ÉW« E^€gJ… réU‘ úùóáRxÍŠî‚r¸tÎ[Ñö7¥€ŒeYѼ•÷òI•×,œ²hÑÄÿ.„åÅ­yX{âz„P2$Î8Ž9A|‘§#wÌê´uëÊ'˜`¦Ø7 ÿ‹½{’£šÍÀçU½„˜×TäÉÁÂ|ÒhMñË)¢•‡J0h—¾Vþöù3³#·eŠß0|x®lV¤7ž?ßãOúÑ?›½fsÿoͽÆó½Ýæóf»EÏ›{{»TþÏjÀºŸ9تŒÂ0YWî¡÷ÅÎý‡ü<þ&ªI||$½ÅžFSÌsÄWb†(„m•+¥§:•6¨ülñ^JZuËl5Z-AÁA8NØ6õfHŒcÇèv½²FœØß¡Öþ ƒŠá%‡[eÑËw+e΢6³Ñ4í§Àʲã6:øD#bÙˆïyç·­€äEþzÞhN ­.´c?#üÓ´ÚÏ“ ìYW8O&n4e10@ü†ÓÔùF>ò=ÛxçÙn³'æ OpbŒáûYN×ã;ñT¼m§UH|ðÓ$ß’Ä¢„ðzÞ†4òfICv›ä“ëÈš¢çyTýAðaÐF]NíÜæ±Kb=»±–_z÷gC£súÁø¥s~Þ9~øže\XÁÓF#0yÓ™ïbêSDªá‚šNÀ'Ýó£·ÑyÕ{×~À½ÍqoxÚ ÒŽÑïœ{Gï:çFÿâ¼6èÖ càº)e G mÇ<:pt’úcÑç4œò(Ÿï¥H piשg‹‡ÇŒpXœïMJñ9 ¿ÇùZ‚Ú÷2•¾ïîî2¡Û8âg?ˆÖtà'Ï\Û£zÜ{Û¥áúFì *bB¡pe’±1øŠ6*ôÆÊF8‘>¿D R©<Îþƒ:kq-‰¦a,~ÕŒˆÓðÊ̲oˆ21&6u!?@@ ö_ôî¨'B«'rßÄ< ˆÑEt" >´B ÊÖhõ­‰0ôrI•»¸ä’U£¥4%f0€ICQ‘(CM<*Ê«³j¥áã¸J¸ßæÎF O#iQœ_Z¦çM˜¢„uîñ¦mñ\ùé•„§‡+*ã¢W²w>N H]ÇMÄ$éø¦CAL­YFTHäá<’9÷F,V×´„g*ÂA¤SÁ ^ ±br –ÞIe>#!PçàÌ“ÎéÅq‡¯éÎͳ~÷¼3쾑:– qëŒåŽTÕïˆ~cÚEM^I×£¦«°÷xbÞEØ1¨í¬ìb;Æmb õždt¬.K;UÃU¬Qx+Ø9?ð‚‰Ç‰ªq|†‰‘0K³/ÚØåt·‚g}oê%9Íynû­ª¶ñŠú ¢£^ÁÑ×¹ Þ4‘\6­ð½±”Ø:‘8î­H$º£Íia°Ža—»£¿ÆÛåÝi"L†Ï¹F'dnæÝY¾FsGîÙAX‹så¨E´t‡‡…²ççøM~;‰"Œfë&Æ×ôsz8Ǧ™àûXs„JÞ)ÕÒ@LÝÌ&©¡çy¨s*R{çXW«¿V.ðågNÏúCÒG?aé0OŽÁvÄ \ç]¯3¨TŽÖm"HYåL„¬9¨†9Ù1L“¨0ËÎÒu™ú†ç2x›ÄPùås}3+Ï;‘ž†;¢«ä¹ü-àÓ•Z©/}$¢˜©@•s^°H&¼\¶É.Z­TR“¢–Hå”ô[åð–(ö;Ô…¡ ERèc)=ÆÄìvÉe¶`ç0²F,VQárzVI¥Öï™7™÷÷{ÄWê4Fì°ZF ã×Ï[8âÁ}šË¬êA|• gN©y m XÓ±©n=6Ìë„38aE¦ÁÝj¦w/|‘ÂŒÓLŒ,¿ŽdóŒèUC^ÛHû°œ!¾àL¯'_.C1Û¢Ò ×8Y‚ä T-‚?•㥄3©É¤QqG\âˆ'´Él¼°±F¹KZ¤‰/˜ÍIV’@zéÚR‹¦4¥,•Ö¼ÕÜBGÄíLZšO™€GÐù8kÊ=6޽ˆgfáüvBÂáõD¨b|&•îp†¬Ð‚fU«$«"oªÒ¾qBb ymô˜¾±­ö‡åfD’‚c¡;¢/@×Üf¬5 : ±}‹ <.ƒOmÿ¤îÑÆã¹¾£\ˆ¨’l©:ßÜoUpç\õއ[ô«‚/U³ŠµÞH›â£%>ÚâcWžýo5ù(Á3LÜ*fÐà!Iøáµh§$|¹iø£ñ<jvvˆQQ&Ô£š)ÿmÈ]r‚UÓ¯Ÿ1Ž¿>=Sš6·€ µ:ïÑ#y\)r8)ÈGmÊW’Q·D¿MñÙÊÞ‡±|Õ–¯vULÀCŠætD ƒÀu7q¹sGg'}¨ì¬¿º1ÛîSßão6ƒ:L«L*Õ X~» ¤¡˜¾‘.8róº[²îv戕X¤£ g"àè¡ø6·Åw|Žìšñ•?¦¥ndÊ´Zö põoíO‰#}†t Ã\BÈm?œ;( ‹IØ8¡Å×´'VsämH’# 'Ó3o-¦kÉ)o@Ÿ”ü˜Çu£ÐsDÕ5˜Rk[£ ŽÄ¡`]×&…k–ù&Ç!ÜÚRƒüönªõ±A/±H $zDÅ–8öÖV°FÌ8±}î’§·@òƒãÚ±BÍvFWËMOMô6«6e—1±±wçS ,;ç$0.D¼54RaÃæ6`@¥iÀ­a‹O”›A’ùZßÖ ÏM/–Ê’ÞGñ<¨׈f­ã¥QhÉÇ¢kýæÎ&‹h=&?ÄøØ8±‚ùØâ‘l0Ñ7ÍžÁÑ¡…y¾ {?|›Ù{í6¿½æ¹KT9Y0]h¸ñôy»ÑàÐHòÓqýÄbÜ2²ƒÎƒ­öî'œ³ìN9téh*¦ó}Âñàñ(楱}ñLÊ 8Æv$ÜÅhH‹›³/›ÕÄg(³Öó*ð±ÙjÊófËvâïÈ¢pJúwéZi¶‹‰/ñ=G¯' ÑCa'ôg4FxDòª¸„ûB:1ñ¼Ù#äý P~JâØ–{9#‰Ž>ïÓM0O&Ü k‘ƒN=; G¾õMì‘py‘ðÆ£‡w®ßPh~¬g&kô —sÑŸÀÛr•Y^rÄ‚s$üäšoæs:žŠabú‰1õòÃN†žÒÀx ~fR/¬JrÒ·_ìÓn±j’ªúÄyÓóÕ¼õÝ ‰¡« ñÊ´¦Ž>w<Ü Gîþ‹›•K ˆ¬ÇEt4àóDÅ"­³V ß¿ÈL²J×RžXék7ö_”4‡ºƒåx¦ÔåRRRבrêXøúÀo t`ïGwm•6}åvZ„dÀ7'Œ¿•„/bœ#ž5ã\¹Ù—ã“¡zrl¼ ®.°žBG ¿—¢) T´š6+§‹ðqÊaWËqÃAÔL’8µ®ã$t*8!- ÄÉ2žJ¤OâìÕ˜I^1³SötðÓnæ$Ñ·²ð¾>(‘r9a5Mr©™ódJ[žÜ°-ÄZOÄ[þ<kOû‹4ãô{ÚŸ²öSMé{$ŸLÛ:Óå}ú„>îâ$“UÔîïÒ » ³&‡ìaÇ…€(„…&¢¾¤Ö¡N ¬u>›Mø6Á1S/îvG·cˆÒ;p78éðÔ]\˜@y‘,rľiÍ ln€™ŠÑ0<›Î*Ë™»Ÿ‰“žT.‘†1aÝgWÉ?!›=šÈ”˜R.¤¸Áv0qv1þøpšq»íôO³÷Š”ûÕTs¸œé2 ãìE‹ß&âb.¤dOŸIX)·Wúêæ[fvËžO¨÷é<K•=w‹ö‚f摨o–Ùs,áhç³elÚ ó8r»˜ÉÂT²²¼áÐq ÄE„:;Pó|©S„Çaêx—^ð"ÚÁŸ§DÑñiÅ<=› IÔöÓéF¢1u zmÂHuÉ£òÍ 4ÏŸf€dt.8•’ôN'Íï/»]óÒ£Ó÷KO>L2iËLɺz¶œ4Ït˜…ÔH`ŸˆÜ—p›¡ý"M¤íì@)ÕëMÉ@Š“¥ìÑÄhlR ±‹ó„kÄ0NA`lnÂ(ÆÉd¹O–°„ò;å% Fæ¯d°ÏNpÎIüÄÍöà~’ÉÑã䠳ēAx‰—ÆÖ ”s¡LÚùžØ€U©òþÞ‡n[ð†~nµ|¯·à½Ó¥i[¼Ï®™Àf!±n"LLÂlžLü ¥(:Eò ‹uý„ÎgŠVÜòýäéľ“GA¯z |î &Ã…i”­M®œÝFO\ ò}úF—Œz™s/k>O®Šêܦt‚‚†Å1™Ø;Fª “qv]'w £lVó'7„Tã3‹sÔkZ¿4¡õ g5iBó§H·?‰;™84 ßI/¤Æqe™o¡à/sqÐBoÕÙü¯Îi£sž)a„䛈Œ«n72e“ CZæ:\Ì>– [²ðüÉM2|–I†7“î a 3‡Áø¬óhot@?óäNa‚ÇÙÈí”2}+¡•OÖé²1¹ùZåj”¦kÝšSü|¥ÆrŸ29SHgM "`‚ËóÌÂìÚaœ´ºe³…@™EÏ=ñÏy2̼ÑÉÜ1³[öò"œ%ӸЋAjO2ãP¦Ü»ÜÈ4$¸”Ë Çà ®º™¼$ßde+˜¤ô]l~{³kÂ…lgà\Ï¢&>b6AÐjq‰¨\yuÑeícõ#êe’ YM£:G+l°FPGÍ(8ÖY8@s«Ã_Q¢’Í ¬Ú7ÁŒ9Tr&]mŽ¥q¾nŒz}pÀÒ]É=ºXáImöGZo²­.Wï<âþ“ùÞļñYdò-Ï7oU&t6”%س­!ã@õNñà%MòÚ:aAr.fÍT¯_3{Zß!¤"›sØd2 F¸Jwq¯«_Èô]õ›EtþBVÖhyu$wHEÌt6Éœc¦V"£ã"ž+ƒ!Uï¡å%²GÁ dkc(1³P¢* X # ¬¼†¨‹.àâqxqLA4À§(%³$ÊåÛ'=ÆcSâîÕÜ‘ƒÓà F<£“Q¿ƒÖº0êd…b}Ü$ÁY¨-¹µ3ÚÈLœ€E•°BìNÄÊš;‰Îð±õÐ8ŠG U‰Ë€ “ÄFª9òýf©Ø³•l²b~¹¼DªÎ-ÛYÎ)£“þéŸ%@FVcœÈèó<[F?š½níu¡‘=zI8D»U¿ˆ•IùÒ'ãMÔ‘9ó€¢±¡A÷†´-t+"¦‚Ö” ‚³÷RaíÖÝÕóH­¯ëë»ÕÒm¾n_Óéæ3ŽíP>r"°ç¸G2So$Æ='#“Ý|ºÝè2#ÙÒVQ[Ð8M·‰a'£üeÔ‰0b7 ^Ù ”kg) íÏ­~­65I޲ÆÃˆšW­A5"¹´†Ñlf;I6˜#-¼´ág‘˜¡ÉZç”êÀ€}êê"ìtôÞ`W…!?©ÕŽFÄPMáѼŸ`îQ0èž:Í × c8cT#zÚqQg8 )~ž¶ÅI.Bó;J’ ÓCsoëHK™<¡Oœ\~¾Yç£z€AoF熖›^#1µû³!§,FdCûÍÜiu ˜'K{3ŒðÝ|z’úôÄ|Zö¿,ëá“ùùó÷µ‡y°RÌŒùœ‡.æÍ*ì'‹³¶$û.Ö“šóE#¼Q-§e™½í>Kj ¿Ó)²6Í›óȆõ7½0ààDg7ó1X.=ð?!s7©}t‚2êRmý'ôs&?Ëe1w„S)=žGAsÑ‚EÝ lC ˆ‹..Ð0:¸§ÑAYÃZ¼òáDƒá·÷%ò¿-Nã`eôÔ~.Áù°h?àéA÷›ÇaÎH¦NÈÙ8˜þag<»½xÀ¨œcŸ *Ñg"¼gÃÄŒúr\óqxØå%Hµßa£ÈÌaˆfrú$|ß9v–‡f¦áÙa¡=œIN+‡¥ðpþª‡µÃ…ÐðÔ’þhà²ç#}fIМàõz±sÃÓQ÷ØæƒdÉ6¼\|æ·SœéŽpšeè&ОËØX~ ßw®ï,ç­Bûl)v1£/+v'G’,!õ¹FË)!9= rJ<.9:J9jDgß{eÂl?òØý  B؉ˆAª-»Ž&ŸV›@Îy…ÃApÙNœå'_}é2Jœ’¶XªÐ„—7k” ÚiŽ‘alAu*ÊkBsZE81ï`,ï`bÞó±¼çó^Žå½œ7C¹ÐE`ûÉ–Iá|Ô g§ ¢aÌæ-gÚiˆ7´ˆ‡¨ çÁ%r'þ(…vÖÏ»l†\{úd/ž¬Ìk_¨`žy!ØUÒ8Í·ã 9JÌ*Õ(ù Ïß/•W>Ø×'Ëöyï ¼b\?¥Šb‚-ŒoãÅûÍà ÞYØ\&Egë..6*¶‹ÝÖI³gÞMbíšá1ÿ..ð/´Ëdé2÷‡Ä5äG"´üxnyç(‚¿C'%Ýÿ˜a:ÌSHÕ‡¶d¤0©ßÆ¿sUr<,¢÷}ó?Ã$Io.]šL+óOðâF®Ûò÷Îñ!9»ÂdàuöVm?µù§ƒ×’­¤_[¾4ôQ£{FüíG0¼½+ýµ½8ÿ~¾†cÐfÕøvÔB— íµ±=@¸í!õÏZºYs!W„öX&8Å?µŠ€•ë"ûô¾w¡Óí°†—¨“¬_ñøw,ÁÛNüyÆ?AÒQŸúýæ÷Y-îêçOTÇ™¨N×No'¦±yʹôá´y»´ù¡(é:,. ä§c–T÷É_`k­o|àÐÐËä}qY?üsÌj…çZMóžú©¶`RÌpfŠ»+Pˆ@®Ab7¸ü p-tåκöéï081ÅÌé5u”µúäl~ŽCy Fypúo09Î !?˜‚ðØñóÄÍa÷”ÿ:–i¹yð-eðä¹}Kg¡µ­Ç?.Õüš‘iÑÏ´˜•éɼ— _32=ó35˜ÄàÊyÎø<ð2 2³,zY³²<ñ²<ÉʲìeYËbf›ž3>»MÅ·¬,‹^–ñ¦âÄzYÆ› ‰Ë^–¬¦&¤Ìã³àã™Okg*àgtg1c ‘/VöÑùØì îÕæ…nÀÓ¢¥bdŽf^†æ)éÚ·U­„°„~É =Ù}¾×î›Çˆ,ðgAÿÒÒä'Ó:¼/ÀÔ>ŽR–õý.¥í÷‡¦íxè]1/ƒÚÙ¬}±4“—¯¼ô£fÜ´z'y@u½”éçr¥DCò´™!6G©q —¹q#ï¦Ôµ1d·Ê²öÆì5J74) hÂS]Z Œ^£ÀT9íÔz§ûÑzŸÓPC_¢ 'ä9“#€—cþ†ÑüÔF ºËÇ‹¬ØŒ‹§òGÖ*^©› Â#áëß寉§<ôɔƧOF6#îˆ1©] O ~Âÿ 4íÒI7'%?áÜ\7s+`HýÛæ8™~ÑüBnóv÷ѧffGÂõnøSŸïÖ_¿¯wŸÙŒYuá0Ûoo…ìÄsΕ;OT3xCBîé/Ù‰6û‰Õ~¼z,²£¶@fw›•’ o¬o4y…°;IZn(F½ I¶Âñ×0¨€\¹Óõú+|[ÊN?)œ„Üó:™æœHØ~† £A<wU1z¢âל¾{qT¸= m©’v;y¬è\z¦Òs¤3~b£2;SòAЧô÷P%ÝZk褄XY]<o7ä(œýçq„ApúhÈ9ÖGC4Àêi·Cò¢¾»@¹¸ÏæË xçÉ÷³0׳8PäÓx0JÄ)&“¼ ±?Fݾ¤¹PцjY÷©?9_¶éOlúbeáü‰ý²äY²_àµò~I«óMž†ªä•ßsG ߌgÏéÊ=ï1ÑyA¡ßmIÃÉë7ÅÜ9Ñ·ƒ )"¤þf®™>÷˜RZç òמ®ÈG|xw??ñ>>q>I KäzZKÁ—ÕðÿÍ‹¨Ójƒ– Òƒ(€U°j’SÐòáqâl,pÚ[µè-bœ‘gÉÅ<6ƧáÅòäÚE¹ôºZp~X¾Qñe]|Ѳ×4ë^ôZ†g:_Е2šAŽ'ÍÈ B`F–,‚ð›nõU§ƒÛš]éü.Ÿ­K¯šæ0"¦£aâ’½kOÆhÉ®]ëo¬A˜Òûä¥ÿ=F$…O(œE]~RA->z¸v¨1Û'l—3I‘3l®jõ°ßÖÉlaI‰ƒh÷ÜìÚÒ#N’¬ää|°”Ò³²_aŒü@ÇiãTÍb_±ØW&wi:]ûN#²…fÙ¾í £éð3¹…‡Ùp­:ŽKuÄcwÔD¥6iø;êÏÁ~H1k€ŸÎñ …ë-•n2~áa¯=ê59 SÆÅ*ÿV1Á¦£REn\‹¿°/ªÔA߯ìĆÓHÚu³¡^^wh á*!­°/D~+.ëB°sS5±Æ˜y Q³ž=£Ð,ÀjŒB'¼ŽÖÔz‹ˆ›œ¢ä5–Ó­>êø¿ÑÀ tƒТđa.‚«¹1¥-äQ%žlËFfÖ†:^+0OÄÁg0”²qÚ÷"Øä™9˜I Z“Gcò|I|`ø.bïF(|Ð!ª ÓÎ1Œi±ªÙ0îë˜Hn5À…àŽŒ£*Ê ‰FLÄ©eÀk¨Œ¶Éµùˆœ ‚þ©.Û‰ Âw9¥Y“U‹d&|YÎü Q»ºxŽ µÇY “fÑ<\Š ®*¬67o@xVˆ¬Q§?9:Ò $6æ3ÚÓG—Kf*ºË+³âõVS߸DšÑþô@zeÞ-.Î9Ü‹.prÑ=>}ݰŸ1ºäÝ+’þ6^%´Yƒ;[£9ÆN(pµ .‹i`‘ø`˜x‰ÔÆÑªbò•ÞɇmgããÁêí4ƒìÕpjÅò5³¨œ¨Æ`Þl™46õÙåSŽùxêCƒ§3¬£óññY”ýá´¯ÙìþȶÀ±\£ú“áA`«áYt¡ÆïâF{Öµk-[ã£q& ¾Ú0¤sO4:ž8 ó| {¨…ÝÇ0uš„ß/vd¯ÙøQ/0 µ‘Ãî™oŽ[ º¡múÂÕ+ªç4»§SÉ‚Õ,¢§v鲇;ÎMÖ-Yãb”PÇØÚÙ2›åf|HNôŒ¡­˜Mf{– ¦J\ð š\©—ÅôCñÕº~Õ=¿ìÛ&[PéU8{<:ÉJ'{x=*AÓE21Ëàgµ]̘ÑË8õcVcb‹$ǦÄH43}à€›$s‡vt¶Ê£~‰,äSš}cF\ŒÊ‹|ã¶äçT‚›(:Ï%†”ì!F~2X$†âÓ‘Ð P„B©„ó…ýÀSÉìÛÀí"#@‚W]°”ùÜ#ÎE4wB?_þ‚#Aá–ÐÚÿÃ30‡Ú޵>ÿðL‘°E‡“.m¶Š¢( s˜| #m¡Â˜ ¿éX(Œ‰˜%Dž›¢,jV’ùÒ6J¶(…|úÝ HÍ÷õÛý…GQþ­f-o¤ÎT’ì’v}ÁGŒn£È?Ã)ðèñI– +íqWƒ~µá=Уó.ûþðO³w&¡/ˆ„Ñï{«CŠ"$à=§M!}€–p€ þ¬%e³VæBI®(Їêw‚Þ3RÌLúÍ‚´ Á‡µDz±++¯‘Tk ‘*h rQˆ7|”ét ÅÉ30ÝtœØËÕí_p®“ˆ£ÈÖÃLÐ;!õí4ÝbB¸gõc‹ŸÉƒ¨IÂOlô@ã¶BRükbÑä?¼ˆ~ÿ½z£Ani˜.e…*УókRzæ9Âë–EfV#òº}ýÎ(¼áߤÉÁ/Áœ!‹‚Œt AwÒëð ‡nÑãpôD瓲IØÔO1+y†Wò'µùRxvË7.JºÅÁ]’H0º‚ ÆÇåR0 X5Æáy¬ÃDIQØ 9nL›>‡úÐ#Ò0Is’ ·è¨q·†!r’¡7o^B—¬«îã'KO-¢¡N€ Á8q?”ÝFÃ+¯ÌÕÉ7Ò²r7ãsÂoÄ ñ‡]9Ü>CoBæqyI‡^·`7$òÊ è‡BŽZg\';åuËÐDré†2öÒXÌØÝ ôÑYÑÚ¸™fõ,ò\ýëKc3Pù!¾Ø/ =º^ê$vŒ{½OGì9—ì®,ŽZFUÂsÈkH¼{u7©(ªªI`Hxº4L(å2%^iÒèTª%]í].Óß§„„W-ò Úîxˆœ]q[OƒèŒó e#¼rɸ/Ûƒ×í^Øæ¬Ñ`(}?õfÓ5O“ˆö€AØŠ)í¸¦P©‡—7²4ƒnë4 ˜â`ôíÓ’ÿ(zlHhp$Þzë%4:4#»áÅ-ÂçßÏ»1=H 9 Ú&‘´0íèËÚmþ@ßþDšsÀHæM Ž­uyeWNôÂùÏ&>òå¿?9_žu/€Á³•ÞÔ#¯›î(ððEцExe  Cw£+ûÝ}z‰“É—ôn˜A}»GèÛÊVp%ǵ»_æŒ,MÙdÔáùú¯,÷œÀâG=¾çy¬f(x³‰½»_¢8õCGUßjæR;Ídz1ÿø¥…CÍ%zQïl‚f(Q÷æ–“5¿Éo–×ôã êaNÇ!Ôé^Ê–w5àÈ^am¾‹òSºÅO*ê«â2–®ÎñÝhs8‚ÑG>™TÃSòRúfð·Q„ªäfÜò“¡PL ªà9NŠÄŽ#F£é°Q*¨ä³0âÑx˜Å±‰z\„¿(;,´“dYi“hYj÷þ?¥] ;áyfËi__õ?®ñÌ\µã%Y8Ç©”m’ˆš³WéfC÷Ä7†Î+‰;ÇÎp…´Úp„³Ç2­ò∞ õ/Nå‚f^3ùÖ*ÐJ¿Ñjå±§¤RQhéÞšgTDG2õ²Œkθ›V¼ibtÂñ•ù%’ÖÛaæŒbÏ#’ü˜‡Úºbäg‘³bÓà´ŸLó8LÃ:½ täð2œö½ ÌbLËanR3ü~Ø\ã½2±~t:ßxYZ'^:yHæâåáš—©çWC\¹?jFJëwý<áavîR'Ž´½O5Ù*’<šN‡†¬¯ŽXI_ÖM„bŽ,øh-$Ç#ÆÇ+¬ýcêÂAz2lô03óÝäú‰—3 ‚ši©o÷ »w¿W6¾ƒÊþß˜Ï §ûcëÈñRº$“[-cS§ï%Ê…L­V¿Ó[êgär˜ý±Ú¦xÓx•…ò‰d•p€®ª™ …Jhñ™*²P¸ŒjN’bC†—ð*ǼáßÁpUåM¤ðz1ïçàØåå›Õ«ò7ó ]üÓJe‚¶C*º ¹ÿïë¿ÿ²ýæ \(óßÚ|eéiUoªáƒÕ1ÿž>}B¿ðÏû]X˜²¼´üÿÕžÌ?}²T{Z[\€ôÚ“'óKÿßüƒµ`Ê¿.¨rÇÃiù®ûžîÜÉ¿ÇÿPU`ÿ«É)¬áW£0Iø^œfY Zn…°3µðŠØ btkð<ñ:8 Q K7ë¯`йãøJ½Úy«ÖGÃqJ-TžÖ꛽ÍEØ%ðj#î_ H+pf£¤jÏž6>{¶<‡+å…ùÚÓ9µ0¿0 5õ˜\µ·IR¨^Æ£‡xÇkï­^S¥¡AgÅgRä/‘IV‰”_#ækHƒ'¢¸hŠ ý‚36ù·ˆ{,$ï_Í¡º*œ5Õc÷µb¨ ¡)U9ãŸzü?½^JN¡ÉŠïE_¢"Ÿ&•‚=9ýóx4mM(ŠzD/Þ®oo¬ïoÖkkxb@¤ØÑîëŸöLv4zq¿¾jôž ÿwÿÇÆÏ›{û[»;ß]}Vß~«fÂîÏP ¤~¨¶Âójé,üðm£ÕjN)› ^vÞnoo¼~QǤcT^ª,˜C7ª¹ü/ô¸³&R“& ÌÂÇÚwùÂÿä?ϱƒ`‚À3*ë=à…Ç( NBà_°Š0ßü‹VL ‘ª©*Ÿ¨¢X„í ~‹ð5 ‡1`ÁÎnãÕöîóÆþÛçû¤f¢ <&‡øê£ò6— »¦ëG(ç<yfû1JÞK4ò*JTkk’GUzëÇKœÁ½ ØÕÄj±ÁëhD=8[® ñ3š¦¬ËAÜ%½ŒP…½óS<’æÈÖË}9-ÂP‡Ø¨9|LúAN"Ãà˜(tî…äb¨?›Qv®¸ 0+xêx¬f¶Úª±¾ßx³~ðcã—õíŸà¨3À£O§£W°:òÉDŠ.H†uL訓D-hb»6‡¤PòLc)hSØíI=f”ˆ²7i"{XQA®åÿb*Q¯úÕÅÑñ€Gƒ@'ˆÈeWpŒz:Ôã2t¸B˜Þ©sÅœ,JÈ‘ú¸ÊçÑ´wò¹Ü›ýZ½XPExX¨ ‡¥zñ;x þ&A"õ·¢&_‡ÐÛÖ5b4Œ Ù‘v‚Ӊɱ‚%Ьþæi{£±¾½]ßÐÍá÷ÜöúΫ·ë¯6’‚µÿB&xŒ¼ Q,Ó+&O£Ÿ×ÇZ>k^è <^C”!¤ 2å2Â"©FÂú3¨•ƒS‚¢¬Ó`Ð혭ó^ Q;«&œtö •“ ŽNy±2¯Þþ²µ£Î€jÀ2ÕT䨉¶ä–Œ%r,+^·‘UlúFþ¿GÇT ìG½ap 0´o¬ñ&@_*ó5vùÕ‚V¨'•…Jm©TÉ‘§ñ¤ƒ‚ž¯ÅÛÜùYá¯×·¶é"¼Úx?9 SÈe3…<,|,pa$‡°°‘DªvK&ŸJêÓ'Åb„1’‰ù½Ì˜w*a'f‚a´ Û06ó°ûñz] +H¯gÂ˰©øvÞ£Mk¬éµºÆ–&”iþ{ç3·tíÚÒµ&—^()ç_Vé…TiQ»CŸzއv}êVá#ÑšýÍ7ë{ë»{ßµSÂÏ”Œp”ò¿Ó3ƒiõ"ò0kø§¸¦^RRÿ®¡_¹©V3çâ#ÑfÂê­ |úÄ´=ݬâî3Ÿ™Ö£Y*¬Áï‚D‰°"¶ñl&—Ù°qŸ¢€mª`ŸCë¤^ ¨2з+X ‰u¯€R·µ^Û³¦èÉo¸^P9.È ”Ù¡·È‚Í Í˜¡á(K¤^©r  Õ’y4Ÿ¥´d¢í3ÐZ+à|Ìß óyœ,§_:“=ƒr´ˆÆÚéo¾DF[@¿öµqZ€ç(µeM D@-¯p:h»Œz¨qH°±ûúõú΋"SaÀ‚@“Œ(l¹Gw‚+†ËÊ_LGòª®. n»ó–ãµF%þ¡Êm )eJôQoß¾I{y7Ë*ëW®ê-ƒºÊŸÖ€ÄbŸÄ£ ì–IÜA®ùwri’W( UBÃ4¿E9¸v Hr,¼mpø³ÑÐÞΔŒ´Lèî˜ææz¼ÓDÀ“÷P#¹Çý9Âü¨7ŠG =l!H>FÌê BÆÎ˜èå Ð[è^ØvÈü9OÆz°r%ô@oìî¼ÜzÕØÿqs{›¿›¡SÊ/_ïņ_ö¿0Ò¦7à IFhþ‡ñ°ó´‘ ŠYÍV´|Uã× GÀÃj_Té„Å{—ö’IÛÚH‘‰H&¸í’P µ ±¤k9s›xWÁK§K8ˆx5ä匪ùœ@—/Ycð;Æ©Éê¿·’Ó»bÝ»œÿ&žÎ7e›s7X¡Ye"j†ÉÅìù,ÝîÁßs!^Àœ'õòù¥Ð®T²¤^z©:¯“fÖ<íD*ÕÂLÞª²§¼PkÁIø1¨è²3 z$Æ=à\æÐ>¢I‚h™‘™9¢@Áù Ú°Tðv.@…%u„Í)Vré¥;¿ŠÊV–\úÉýõ"ãò¤Å¹ðä ô¨à'¯µ‹ 7äF3 ö²BƳ1LÀKA**âó¢Òÿ>¦—ÄšLbj=|vi™ß²9;¦ÓiÞNëù±Sçá_ì<Ä™?ÌþçðžT8~Êãôèaêz˜y=|€Chž§Hn'[43mœcèIOÍ”fÉ µÒ03ü=5s8ƒWdÞfB\Gò?ž©f3AŠmfñ`¹Ph  ‰A}>Õ6à©?*óå (m÷óðr¬Œ·¹ÂI…u¶¼ònw¦5ÀÍ7Ö·ÃÓâæóƒ :a,Äñ ¯Ìîx k1²v˜W%½¤Æpp¬zD,¶"BØ ‡h.JŒ.²¯® zq%‡ Iü=åŽ;Áiý°0CPõ/&–Jº,´‰¬à“SœYÄKUµi‚ÐÉèä>"FÓ;Š9zq£Vϯy_ î[a{kgsgwJ޼ +€–s‰œ[ÇÂÖ±àÕAGÐ"ÓËü%MnK‘Þ€£ƒ,Nêû‚÷ýÛosÂ^c6Ø‹ú5šúNÕhð§,:“¢a—{„Z]”ü IÄxiyÀ‡ÍwNþ­þmÏ ø3éïMó9¹éŒZe™ÍKçÅ0²$È /ö\u˜wx$ÜÇ7‰ z¢ßÉ{^ kðéSº žÍÊåÉEKé… ë{FÕ£T©™üUKBÄpbÇôŽ”÷¶<»ëCä¯íÎu&iñíXž^œ#6ÉúøHgA"˜û0±k3³5õÞà”tùø:‰7R‡n@¤ TGÉ #ù¯9ž›Æ¯fV’{¤ªx€¤_ǘ'BÖ˜%s(ŽKNŸ¬/&š|ÕZ/õÈÎÒžlè$ÃÒk&Ip¤}5lõ§ sêwØ— Xz ßsÑ9 ÈO‚…·jý“AÐâ«+„µTY¬Z8Ê(ÔPòe0ÂÔžÙ2j-¢4ñ?'½Q%èkM§ïs9,˜ÓµèÞ³w%fõpJK"bó£5ÄŽ*ÓE' (Æ8À‰ŒzÉQ/Ð3#H|¸‘U!Ðßœ™ž\˜ &‘¥O/{+@!‹ö#EÝ&ÎËJ“ùÿB}?ºøXE”Ïú”©'úÊ@ @ØcoÌB/I£Û¤‹‹(n.e1(ú‘ÃLqˆ×ÆöÖÆîöî^ãåîÞÆf]½ÚÛ|ÓØ}s³½_—àB~/Kn’R†§Ë±OCñRm$Ó”9¸œœÓ¹úŸ×÷rc™‘ê²]â•2Ù*9·ÜL)‡—Yù¨X¨á]¡¶ö9Gòz¯;…H®/b QgQí¬¼Ýo„Ó˜}„ûOzÎ7V(œB-÷YWnDè2¹)xYŠ9 •à©×Í¡ Ñd™‡²¯æóˆÍy’Ž…yê…—CÝJªKÚ‡Y¾ …ññ:M,öOê™ú¥G3ÜV¾@_(dWós¤Dtªüj~ïÊÿ;´‹Êþ©ÛÐÒÃöOžJ¡ÚMõÝ3`ýô€¡vëié5”4 á/ç246ð³v×r¥[$p«²ù¥Ê³ÎC>º'føZNcð4Hh‹[¨T2´œp’Ôéåâo©VéðÀÜTfèsXä†ü†-9ʸ+ãºÉƒQ>©«FôP,VOòG(>-h”Û%‡SvÛš/$wQ·-É{yêG’Ž7nxšvG#‡Ï$œyg“WUñÝáLeöý¯Õ‡¥j•ð¿Ùêl¡¨?‘eÔXjõ°„¹¦ç˜à°D+.3ôGÔ)÷IDÑ-U¬þê´ù°zè´ž ÕÌã'ІZ•ŸÃŸÏø‡ c!îAeöÆÙo¸tȤ 9*Õ5õ[ñH¦o{;h¹…¶ù~7ù‹æyÂq1>Û“Pja•¡}hn^˜tQ¼´jº uKœ4ApÈ*ò‚¸Â{¹µ½9•Î`ƒ€`FRØè) hÒ »£‚%iI©_h—=àÕòFþ |6¾{„Ô5í ú¨<…Ûü·ývrs‘Ñæ¼ä¸}ß1 2úx‚%&W+¤Ûg<=‰ÎEØâü{Àg¨¼´ÎøtBDy+Þg€ÙºrôÒBаP]4ïFC=”“¸œ â Ø“âó=DÁá($Í&î†ôC«×À´ixÕ'ãŸßFA 홚m=êO/ˆÈ™RÊMt‚·Ò+B=?}W_XSZÏIÈÅ×&É×XÖì ?L¤j,ìÅwõÃê|.fˆÀ¦„r…š”6Pùm¸<èúúÞ«J¥’9éÈ׺Šò¢c‹&Õ2âcqÌÚBŒ²ÐX8”ƒj‚~ÃX?õ{;ñ±l?Pž1ÀŸÿÔ1Y´àXE:MÁàd„‚ZvÚEñ%4À‘«ÂÌL©DMAÚîNZ¶”ôF3DãäŒ3÷¡Ž° pˆ-M›¤ eù^ϯ†*å)‡¿©ÚÑØ¼!ŒÜ—Â1™d.Pmîííî©÷|‰¢¶w_5^¾ø0™ÞeaØ.ŸŸòG(S¤º0d”k¨Ò½L†pTÔV[Iu8Ë\%ª(íñm޵ådFt‰ P8ÿô•\·6qÌœœÔBayQµ–a×;¢ˆ‹5¶Ö †ä¿xÞPfªEF…wÄÕÖáx 3lÒh¦çEãJ²Õœcv¾°”wNÖæbs湜/,æ?;÷Y§yVO¿R ™‡cd ÃU¸\Œ}63QX@QFaI6³Aø¹Ì:`¦ÞtÖÝ“°@*-‰Y¢Ã™9¢q9UNïúùw¼‚Ð ¤†E*³ÀU*PìïJÞA²«&™ëø''&÷µ`Æà p‹ÕLA™®ÝËI_©Þü»jÞSÏluýàÔo¾ùmÐ̫øVœª ç½o£[¹@¨Ë¯Sµþbk¦écŽÙíZ=n¹JI4âÕÃËj–R,òüDÞwþ¶l/Wé±¼0Ý~í7cu«·à^«wà_‘E¢m‹5Ò)ºuvÉÓ`4Q´¸ôNPÈ ãÙ4:áo÷ëÅภÓÉiôŸ³Nèíoƒd8:¿¸¼ú½(Y·76÷öëÅõç/6_¾úqë_?m¿ÞÙ}óÿööÞþüË»ÿ¯É*P ^%Žd¥P?Åjz²ütå™tz£®±íàB$´œÛÿ‚¦Ëî-~ö%þxÖ7«sϺœæî\ߊӀ÷mÁùfïàó—L'2 À«v ¢>"“)=¬ˆí0T›õºù:8…i©=[¬•kÏVž•ør lÑŸ¯(µZ.åcË=Å·Ô}ú[}_øÀ­â™»¨¾·’mÏå<”Øü€kß–«úœ¤¸Éòz,¿«^êŽIãþ8@\DÅ‚3åÅœ{°¢àP «úpƒl:Uº`ʇ= jÏ—žêÞ*\?ÏBó´·Ôw—z‡y­ØýñšÄ?‹y0|5[õfwë’›;Ø{ÖÜ­‡Õ™p"·Ú|çCBä©¢û9ô€:EÑ–ò£Ì• ŒˆpEgQâè2)­’+~d[1~ N(|0-Ž¦î˜ž®¶å@ɸ®ä”8w>>õ‘ŽDMR„»©z-ÕõÂmݲ@ 02ÍS¢Hªð~þú7'…ÕèK ™Em8B`fèl'[r’P Ï­â|AÑõ”uÛÀAH7™*„€|°‹ÚŽ ãYûEt+CšI&*C‰G]—ö»¢ò,õ²èDI\) V$' 9ùuö˜Ú…J+"d6—› ÑÖ°G­&íMŠÆ þÍ;]Dý©"£«ÆÚÌKü»Æ@¢°Ó Œj0ƒ,L€ž_™>³Ef^ß`EŰ•c;B}ëŠFOWŒ¢tcˆSä„¢RHc£Nº-ù= ö%èòH+)ÌÌäÊèÝRáQŽâåÕa³ˆyðn®9[Ò`ŠŠkkè–^qdEpd‚cDÞÙpT/¯J¬`)0m¡X³ë9KNWVðþë°d—+µ#õƒ²§0¦.^õ"Ú„j¶t´Xî'"/aÄŽÅEïÊYC‡fL€DƒV/¥®ÐÁÝ݉\„úè &,†°IÜ©Êê—âíNxÁ>˜ÅÃ5L2òû láÌû¼\å?ð¡T>4v¼OxÑ!Í;,Æ êE£CtØ+æLµNz0Nçå6Yà òƒüúQÄh—[:¥«šUt!à‡ª[T˜ÆtHb›MòNÒÚ Gí^†9Ÿ{:=UNÜFë.eågn¢×Î…ÊñNùXÁ €{RÂ%5¼ˆÕI<4MV%S­¤v{êõþ¿á¶ ½rú¤µáIý¸þ36þÅÖnãG²c´£˜ò¡h Î2–flbœtìÑ„[;ÿ~³¹ï>‚3Ol”ïFo8µYûYíšXÇ¿÷-ƒµXÚ4(†RÙñR¸ 'z»³]ò‹¦@—l<á£C£ ‹&Ò"Bûø!Þí ¸¦Ûhl¾ÛÜ|wÐx¹¾½¿™söÞnæ¶d}åœßQ^n½Ëml46h=å~Ù:ø±ñjc÷gdß =AÑ}~Úx÷Ž‹ñ›oä‚ËFxЇi!…9Ø4s˜J°8jkC’*AY OÍ‹­—//ßþïÿÂIí ÒwÞÆ?Ò$Ò·Ie&d7Sæd5i6ÛæóÐØí…'nN7y,óx>›ÈÆî‹M7N²™þµåõ_íǽÍço·¶aØ\ß;X¾ ëÚÉ›ñÕ5Øá0iél€*cÙ -me<× g {Ìoá¾øïµeÿ}EãÅúÁ¦<¾ÙÛÜÛÜÞ\ß× ¯·vv÷ôóú¿à™hÎÏû{[o`Áï¾~³½ùNÚ“ù‰Úå}ÉÈL™ô‹^œckëùÖöÖÁ¿söQ¯“í"™ˆÐë{ÿæU¾‹´by‰×ßìæv^o¾Ø:ȽØÿ÷ë·[Û°óïl½Ü܇j1ËÞúÈ¡²ÂÆë¹íÆ>” cØxñöõ›ç[;9ý»ý"÷7éÜ&ý¥?û›/rÈaðLúeÏ|üÜìè!w<Š:-ÌÂ’‡_0=áÚ¤FyÅ*s/¶·é}}_´¾—ƒÿ#inx}ØßØpȵM£ÝØx±ùæ5 :}DGÉýÜúkH{ÌÅþöúþü*ø™Jb~ÙMrˆäšô+Ç;‚´èP™ ™6™øôz6Zþ ÿmî5^Ûe˜N¥Z×_7Ü–5^l¾\ “ ÜÔs i€n"¾üœÛØßØ}³™Û< Jé/6~ÔzÂßõ×2jÀEâF£aâÈæÖù)§u^^ÿm¼ÉmíÑÜÞ¦Ýÿ ,ŒÝW{ë¯sô–ÕW8¹µór7·þö`÷G «›{ôÈpá7•ÜúÆöîÆ:laÌjæ.·ñïWì&‰x:S/¬ÊuÛZæU·ºlyƒŒ‡Ýø‘±ŠŸia±ÿìˆh æõå~…‡Ñ ÇN‡è)B>9×Oèo«?­óN‡ÝþbL JŽ›ø Aþhá´@1ÂLæ-9 a˾^%¸‡Ì`è_ôœ'MÂså<ލ½òÓÄ'ºá è%¨ÔÑ KA>@ÐaI.;=Îo§Øó4Ÿæö½#A.e¥ÅºÇ8¿âaX´lŸ]Š”‚¾lØJ ¨‰rLqgÅ—Ir¥zÃÆ`„®˜$ £ öÑ º×:Y»Œj^á€øPhÀÍ*5s(@lôáA’‘z4·ùc]6’˜Æ”ÞOz£P)z†Ià ҅a’P]º}fÒ?Yâ&_uÑ´Þ݇VÜ‹Jo`+Ó÷3›½L×ÿ ÇF¢ÞUÓ+z2ûn>›ˆ^Ë0^פ ÔåÑ_¡sì!ûÎ’/öÃN”È×aÁ7šƒŒÄN;3gfrлšü%#Žã:õ8Œ‡ùi À9éÉ)P ùÃúkúo^gáI*):éÑTßá`|èS~ÏL=þ}ApÒ¤ÚIô{˜Nî÷«?¹H4…䢕šLýùe ˆ²Í†…Pá,Ô‰ã³ãð(ŒT‹šÍ0p ¢ )NS}÷¢÷LHÀ¥9<O„ÍyšÐ=:'¬YÞ›¨œ˜^¶G¿ÿÞŸÛ£v;óéÆ †Ž×Óh4ÖøÝdþ…•VôlÁ —Ó×µÒ&†Ã”㢻Ç8[·%!{à3´Y–!ƒ£SŒ=©M>Äéc^ú èé)§É"ÝÙS¨Ä;¢¾A%þã+Å„X‹I`–NÃN¿nÞÄ7ˆÈDI,c£-0MKMB ƒ‡êê´ÇC• Ä ‰l‚÷—ä¾/1c ` #d$r¯I·¶dFÓᨤÍ6  ù’B-IÛÙ…£^/n°ð¾Ž#ê97“ÞP³Ò’Q{,ÍßxëÉÜ%ü/Ç{V~±6àjP<—ƒ;ŽH¸4Ò'vI+ÆE'Ð,Ñ6Ä:™V]ÙÌc¡¶Ñ®(¼ì3Ò,î¯ ©\æé¢S+¹£RmÇ1ÊÍðfDÛÐ¥kä(U£~LAÀB2's¹‹Çˆ7ZêF!K9°CçJæ¬"®° ›Í0qux™ºd¼¦Æ;·9ôÛ™Sá°Y—‡&Y—l"¡Gµ1dåEb‘ˆœpj$Bº1)ìì¡“ŸµRÖ©^,|tzð™ØiöjìcB_-6–A>]¾ 3È5w‡_œŒŸ‹è–‚!(¦xE÷3l1EŸ±t¿ÂT]¿y™?WQ!ÆaXÝÒ’Zô¹Ûz‘„Òæ#sÀéîT!¹ŠN =®ñsQ3Îcù1½¨ÙkúJp¡sÞ^óä~R’Na.>kšŠ–×k)Ê¡`ì3$³ }©‘Cº„ÿÕÙAS˜Xö.@z)¤?Ù)2O³¨-ÚÏshÌ œù=¶£t!"Õ¹ª£bô#í8,ØzíVuΆ?â .ä»:kz¤Kˆf@ýŸh¨C‰Ð&­ÉüÎæ#õ¾÷¿Ö?ÌÖY‡¨x$¿õ×)E•ÕpRÑC„µer›¡G0ݤ2éY 3È¿ò:ÅÀ3cæI?ÈoÉ)EõYžûâ<ÛGóTŸeÈR®`zmÚŠœgöžôƒü¦ÚgÙ ÝHLѵ¦ží£y2Ͳ€2ÚF[g™®_±Ø¤Wï<¸: γ}4OúA~ùÇï«Ý¿¥«¶ÒÉ ©÷úlºu^÷Åy¶æI?èatxŒñQ,³Úö|c¬ç¨p)&»U4þlýÑÒ9y¨ôŽ2ëBñÞÜÝo¼+Á3ŲßýWïÍÌ$8Ïöq¼WºÛ3½“ΦÛ2–’NpA§ùY¼7÷Å#][Æ8±#»²Ôo¦SÈ€A MJ/S¤ô²<«Ëhz*Ê#{áÐï7³Ã† CU<¾÷õ˜8ë85IíXUÍËßUü‹ù¼òtJ¬îˆg4I¸(qÔG•­bì'[E1ŸêquëNޱSuÚË÷äŤúšü¡Ú¨žÈÀ˜ ÃHŽxŸÀ³ù\^Îm.°\~ÖxçaKÔ¬³ ןNK„ŒæBª»ùÜ£1àxä)Ω¢4ÀX»Òæ=ÞÚz/6¨EL ãUêQ?Éoj qfY=Ì™Í:`Üûlž Þsæ ”'^Œs§Í“~ßT¹”49»Yžûâ<ÛGódÚÊåÆÛÊ,«S¿ÜbqJÔ¤®øº<ÿ;–§LÚ±:3P e>X0–Ùƒ†yOçw³3™$ïÍ}qží£W^?ȯ¿âÜ6ñ²sZ%«É ̦[>–âì«&1•ÉõÞÜ—$ûÉ<éUî¶p|N‚„òÛ_þ)ÉŠÝEOÝá0\C¡|@‘fæUÉb}àÃÊ»†û ¿øsjÙŠÇP!\†˜Þ³‚ólåét0›L„Sç¡ 1q Úgû(O§IÄäÿuÿPŠ 9òëãlê–@‚Ìÿhžô¤Ù¢s&G}.2ölÍ“~ßT+‚4Qij.tïÍ}qží£ƒš§CÓ!4Þ+¡"“^½7÷ÅTÆïöÑ<é¿ßNEÜuGP3›jJ:!õî¿:ýç÷³ólõ 9f‰¤LúÙ>š'ýî6Õ}f™Ò¬ Ö{s_œgûhÏ…Ç[Îâ$ÊŸ~4O~#%·Q¤Q³÷ÅyÖM‘L™-¤.“ùê½¹/fbùÝ>š§±~è L_´t6Õ„tBêÝupŒSÜÏγ3"ºšŒQÑ"=.–ùæ¾8ϩÒ[#+œõA§ÞýWïÍtÀÐ~-—µe'¦¤ìPš4ÿÕ{s_œçŒ‘0 pFÃÈ“gÇš‘6žäμIMgK½û¯Þ›7¾¦!ãcÌB]*˜~4OúA~ùÇ)Ë"‚âYªûâ<ÛGó¤t¤üxË{mæBìï4Þ& Ëí¾ÃÝ´ûÎá²—Åî’ e¾¹/γ™5z5OøÐãÙ+6‡›‚<æ²Mš˜zw«ä$ïÍ}qží£y2í³÷~N½;*3=%`šiÓüWïÍ}qž} æI?È/ÿø(é7–1Ó¿¶™ïTFÚx’³Tmj:[êÝõÞÒàœöÑ<é½>üæ/笕~4OúA~ùÇMï¸ä‚Æ_œgûhžôƒîÀÄ#ŒÜ&ûÍžž4–bFÖIL½û¯é^»ߦ÷n#L¿®Kt¦ÙMÏ:–’N°#ç]ËOA¾£÷€LJKk4$¦Þý×ì”úüÝÙŒ–e%fŒ ¦gKI'¤GPêœ<‚F£¡ÌM°Ô§t ½Ï¿L+6!}r‘ÌÔIÙ3Ò²³Ž¥øÙ0)•ÅÍÆ _U$…þЦ&qìãÔ‘ŸRxzщ§›Phr‘Ì“²gdNgÅılé„ô*H©íd¬R2` ©Gó¤ä75ë\Jf™Ufxî‹ólÍ“i;—ËhkbÚç=éùMµ/qš—8 J=ÛGód”d·ç7Ì÷Û( ™‘ôŸôƒüòžQÖ›¢´ô£yÒÜÑ´rx9Gã…²N~÷_ Vé÷Åy¶æÉ-*¿üã¹ÛxW;g6ÝÚ±”t‚³tšŸÅ{s_œgˆù ô\»íŸñÄÑÁ¶æI?ȯ?N‰§›‘xúYoî‹óìô,9¶™t’‰ú¾Â»&ÉÖ䤦Rïþë÷Åy¶æÉ-*¿©õ[/ãê«•Ífô3+ÑU'}<ëXJ:!’ŸÅ{s_œgˆù`&ÙïOÆ\Gz^œ‡Ôèá³ÈöË{4õajF-#¡K?š'ý ¿©6  œè“Î:ðÜçÙ>š'ÓÒÁQšÕDä^½7÷ÅνÛGó¤ä7ÕS[ŸôÖjFΦZ”NH½û¯.¦PŠûÙy¶æÉŒ™­y|ÜXñ›J¤Í“~_þñûïêËp’´füÅy¶æI?è>¸ð3zq޹EQ™ Ž?ÛGóÄ µ~³³‹®¸Î˜z¶æ ~öﯴ¾ùªJxÜ-~¼Å½>øï¸Õ _ò­>‰ÿØ;}š°{ßè§šuŸ¯e§³èí–È…eþ 4º¾"—F.œ°‡Ç/+p/_NUD¸tõ—.é¼Ô—±Lp'½zoî‹Ùí.í 2=š'ýào@Ö8E¶[³ì%“Rïþ«³_º·Ç—|lží£Þ³{™ñe{Y6Æ3RnÒ»ÿê4†SÜçÙ>š'ý8[±9k×3›nÜXJ:Á/Nó³xoî‹ólí`Ú&Œ&ÇëðH†» Ä‚AS ~+æ0!¤Ì+VO)ŠÃAHWêƒ.Y11Yázfë–®†½sô¼?‰¬šÍºþÕÐ®Ô |R,ÂP½Ÿ/?û€c6ûþ>}U¥khªW¡"®¨˜W™tÃæpw$MûQeÇi¬ &'/·Þ½Þ\ÕN Ñ=7>g¢: –Z¬ÌWDò•é‘õ—õ½­W«€Êú;Tbb0§XÏgÎpžÚ¸·9Ùùâ½éF[Óu-ÒÃJJJè5hU¹uéf@…Fé³*|WC’YŒ0~rÑ”&‹B“ä¦Ûä˜âõr™=bê`ì?£ó¹,n.ó¾´ÀÞHälñjéx8%+Ó‹­.Z6P„Ù|.Zä;èÑ´~ÔIÐ$IUŽ$rèOÍ–WHÙ¬ä36ÆŠÐÁ\q×~ŒñŸÄ­v+Ÿ3‘+¤ )£àÖÏ®¾é  ´JlŽv=>V{ž|¼gã€F£A3$'¾ ªMÔ¬F/HŽÆÛQز˜FáÄXàémÙœ¤=@JðbW[|¢ë1àpWØ´¡Ô:GÀØÆ—ÂÿÙ®BË 3ÃÖé°·ã‘ëô—Û¯óËLˆ_7žé0·‰bgúÃÒÒ¿_ ;Gh®ý5YZõU<«27cü•º„F T*9Ïr>öbñ¹}› „ÈdÀs(Ž´!ïtC}V(ðlzÁ  ÿ¼5“ª¿„û¦^dØjøÜMNêy]  Ó ÎÂþñ‘8IJÑÒ$yÛ¨]A3¹GDʤK:Àެ€nS>÷HPéèÊ/¸|i‡`Þ˜CÌ‘'=MvÃ*øM"Ч)«~S ÆÀ0\£ž‰ :Æ|©ö îJ± Eþá!RÄe9Ÿvá->¦Ó/û1GGO'Üö6)GôjÔW¯Ë—ê¤uŒù7»A“œ¤ #IÀ(ÍVKº­†©ÓC›ÍÔ¥¿"S§=õ{,¶>üXw9xT3¦p m>rþÏ,Á&á;Hø<17Å;C¶V§89›ç·=V`º°f4—´U!µÓ >{HbìnEÐ4ÈâÇcµÛEÓÈQf ›Q—E:¨D&FÅP{;éàÜFÝ~œP¨`Ú¨p/’VPxŒ˜CSˆ¯ãÒ;’ ~Õ·ïÔb¥gæ‡êûïë›»/s°ÉDï¢2‰r<5#Ô ô‡Ü¶Þ•‚½º•P ?ö²]ÉåÞb[€µWï9þótàÿþçõ½:…•Ä×\Cqyã âq§ÖûÌLX9©Ì© øÜA©Òœlî´9w@Î@­(µ†Ðg )‰ÈØ y‹¦¡ÄÆÖW8°Çí‘ Úó‚i$DìG³8ŽèÁæ,D/Ò¹ %b@0AùtN£†÷¯%@X®˜u ÏÍ0Ê¡H›u‘•Vªn‰´¢©Ã¦h¾šŽyõR0‹Á+ÇÀœâïÇh0 0äÊ?Ï9×uã½Ð_ÙžÛŸòoXœ´~æ”QäA»b"îk°MK$`f‹‡ÓÇã…Qg ¼È8%QCúø^ ³[°þ ¬ÖóÈÀ'XºR%ýÀ#¾ëšý}•{ÀªÆ›þs$U"'jZ-õÅÖž.Ôö9Wj3~~o–˜’½÷ðâC.—éù) )Ô…ÑA~³· G,Ó4‹~Ð<†Pà–¡fqˆ(Íĺ¹`NMü÷ž¼²xžèiT=«ÐMSfÍõn^_1ç€xn|IÍÁ¨¸þ«Šì\ÊT*X¬kɱÌÕo=yvšS™ŸÐ;šRÿŽGä/KHLŽ‚893!"˜¢ OQ)4bQ¢I"ŠIÊmŽ«Gû¶™w_o’P” å@'AÜ™#1¬K‰ˆ¶a^ k4ÑYDZ4eDÑÉAJü‡7UNì’D½—)ÂñâO2K2©‡‚ÙÁ1Úr€ˆfva)"-°NytbXŽ{KŠ‚•Ã9ÅQAéœÆ#tž%@|% Ô[@M9Îì¤UãÁkÆ]é”gh¤ÛåÀ›Ö*ØtŠ«Qgûæ@é‡T`E¶Q@]te¾ Ðy—äŒù6‘Ù‹)w˜¹´cRá@ØØ ²´të%3—ôí1táTIÄý^Ü+Ÿ4›ê½ë<Œa¸NVlõv‚qj*ãsBNft£h~-¸ñ±ðÁM™iô9¼·»{Åõà°E¨LS[qsdBI{EÉ™ƒ*é± nyJí≌ˆ]Xj~ÑJmJà³ Iœ^~øÏ/ÉÃéGnä8”hÛg f§Û°»aFO¼s¤«>¦5çT!T³žV(É(£úɤ2ÂóøP'¼ÒD§-½ãzö.©W‘YÉfå °gB‘­ráyàÄcÿíË8‰.n-e" ²)î’$F§Ä½‰ðrûLÙ)B‡l$&÷þÔ6Ë´àº6gÊyÞŸŒ€\ Æ~ÜÝ?ž‘„µ,ŽqéˆBþФtâÁæ4*ôž`šÉʺ³­Ôí—ûͨ•0 üIY¹ÄAìò'»ªsêYÍóˆýS³K»3á^²8í)ˆ7ï²avùý+0í¹¤Ê:!zÇ÷½Ü\?x»·i–/±¢ZDœ!'˜Àå_(ò¥Þ#“ÁtòûúúÞ«j Î{HFaè· 3òerÄD ÷%­È),ñ̨׊WÅñèÏõZ¾äõćsóy¯ñÖûw™¼«‰ÿ¸£¹><§7á‘È›ä<8§Ãä0B! ®bóJ| éFáKÃÛ\땼l¼’O®EfvÀ* g-à˜0w>rÜ® àpQ§|Á^XÆ.ñè{“M<Óûú›Ÿ^í'‚rÓér:xÒ®ƒõtqJ¼IqtÄ^–Á SúƒË¥‹îŒ‘&aQŸ¯E›¸lÇ]ú è.yÆg\¨3r ¼Ã ÷qZ;Ü‘ÄÇgãäCÂöCM ¢Ïæ˜è,v¯§Sep®0ðàqÜÑGmléêv|Èy°h§.¯¤`­¨cŽ+aªµwlg ¹`mÙ_/ð~Ã’‹ ~Ix¿¶$É,ÇÖ¨•d6yM›üÿ‰†Jåÿ×Pd«W>@ô5—vYõAù²8½wÊïoRü7R’ðØÑÅ“M‡.•èЦþµu0õfðÒw‡Ñ)Ï :k§è9p;Pܬ3M(ªÝïOn,9åbêu”É“ÿ­+ÂR“k“)Àe'0ÀäŠ$³ƒDrDè°oÓ5³Ç^‡$Ä@ªµo%5/$&@9JЛ·7öpó”¶JuÚ\jûef)5#+¶4±ÖN{Ê8pƒ|àIøÛÈ|8¢fpÐ9hóÊœnŸ à/+géñ½!€l³`çí¶š9ŽzHê~qéÚq?Nº{ØÃ=Eq-è`§ûD²¾Èýf5-›Ðåk† ¸Àà žM|/wrÄS&H8j(¿…T ép”F^´¾¿±µµ†Ì–¡9Sš@œ ©K°›U‡©Ç°€MÂð×q¯$µNe…Œ˜=ïD#Y`6¼ø²=à-ugÙœùKÈáømŸ¿¬=ÎL£MQ·ßÁ}>UYFõ:jFÙD͘ šÔ4Ã\›_z*"·Œþ€ø @ “¸c?܆³buQì×MZo‰(ÆôPNÃ@žAú@ŠL½УÊÉï/ƒ€Lní„* [ ¾fׂ§§²r“j踥«‘RÙ Mh‘[ƒuJÐ:ˆ””]Û¤fÐs*Ä/AXl>±¶I"séÛ9úý÷²ÞË LÀÉDí¶Wèú£ q ‹à¸ÙlÏŸ¤ü;ñ>z7“Ë+\~¿ÓQ†ö_ „<že‡áÀ›ukbš±Þ‚㦤ÂðÝššyµ±QÝèÈ@ ¯:ai µ$ß´Ž—P‰(›UªV:p6®$¼æÄnOÛö ´'ST4jŠG{»þ8&‹×I«CW¶Cû#`šÒç”þF®¹ø”N¦@Ÿ…™øKbê$¬íEôWþ'G6·˜swë0ÇpJì;'$ú7Dí€Ø’ø7[U”¯ˆs3Ó(™¶Ò0þ¸ms9ˆ.ËǪŸ’óÁÒ'Ì2í”èö®Ü“ÈLp¨üþ.uÈ—ø•”–§@ëâó¨EQ™×·ÞÍ9§™èòCÅ6ô¤7*wZNAÙUó7”ÞíÉßòP½Øé±DçzBAßý…¿r7¬¯ö,Š…äjn†¯€§ôF·£˜(©׋§}Vr:eé»ÄlªïL*CÝ#ŽÔ§N$ K¦²¾0¿´2?7NŠwGÝúJíÙB)«1Ýàò– ‚2»A°¯£AW³0§‰g]¢ÚEØZSf,`Ø+/ˆÕÔ¾éuÂÞ JÞÚÖŠÃBpýÉw()tM¹Ç ü§V…Ùè¢É?ÆîIr¡Ï;Ð1¾–Kt|.+ s(8±¢‚âÌYt_Á¾:m,òð?oÜ€vë«ÎÎJ÷‰Ø©Ÿ®LÁ¿¦ŽÍX]Tbˆ{A*¡2­x½~°ñcc{ëõÖüÜ>kØ´;#Ùn35Mp#ØØ°Ð"ƒ¼5‹eWIghw‚ÜÒ$¸}FŒÕŸæj±¨òö÷h=ÖŠ? ™@KRk·Ä-vR=ºŸHÐ"G ÕÂZ·žïëÜì¸%kÁ$7G7¤ó½s,¯£ÑîÒö‡%œÀwßÑ¥_>Æ©Þl}¯ÅÅÒ£TËMÿtôuìݤþ¸ °OÑ|èo8ÄÁŒ£2Þ°ü҈͘ÈÃ銜 ‹Îĺ]‚6’š¢4tg'¢9¢FÃŽW^Ƭ9×í¬Õòáa[僓n>@j 2¬ƒˆŽ( h43·˜FYÚu‘¹ìº\ HÎé¢ù Áa$:]œPsØWàÀõýd‘8u^–“°G÷Œ:Wî-ëE$^°²XWˬBó4ŽPÙ¦ ˆâW·9_¼ÊE¤ÉF*:v!_m®¤ˆ+uq—®ÊªZëµÀD-ðxtbV¶®®gPÑwX¨”;7©þé]he¨ š[*Ww#J B‰Ì†ÿ°0F3í‘´žk„‘–1kg²æ§b»)܀͵3½ç#S‹UÔ±u"H‰nqY (Û§O‚UZ;7m 5c­æ®hM}¶°¼:! Y«–õXmýQ/W)Iç´s;6Âè›bØW¨ÖMÕöhZF•>„j–I;÷WÌù>ýzX!Û¢OŸH5ü±ZWùJ%OcbÜ#KåD#ÖÂ〱6N¨UJ9•WßÿJvMŸª•ʧ“5Hf˜ÛÏ4l¾ÍçK·6êËúšUKÕšê)­,JÓnÖºhMëoét¿ß¹Ç|Û ‹ê— Ÿ}^Í¥šá·K(SV Ðfí^Jc:à{FŸ[Þ´cMwÙÉŠv/4¡ÖŒ±ÌlÉu£ã—>HU§‘.9¹ü‚©¦ô¦O¤€<¹´wÍö©Ï”_•Šñ(o8ŽÂö0H†k¬rKæ;QÂvDUÕÅ6ø&€^‡ÃÀlØFµ Ì#_‹hˆ7›pnˆhÔéâÐhO#£ãÐv­8ª^£\sÅ: Æ®º@¸§”S¦‚ÖhnRÅw­tb…F‚qÁp/6s ÓªÇQâXkŽ^?y“îáYÃeà]ø2Ræ?nÒTNØr/b}û¹É$"G3ÅÕa +2#]“p;လÇׂŽumÉ¿PyZC•óþÕ€n¦g6Jja~¡¦^â!i?n/½ŒGÀ¨àÀÌ©­^³’#[\ÛEhv¢V2—£FN•;I¬ïÑù ±h˜øç¦5‡BÊá :F†,I#¯(¢¥ôX±†8™p?œÈþ§?ÆÏ¦ß‘WL-©Èçi¥1¤m-€þ ®t n8/ílîìæ&—-—sbúk†™§¿B~.1R'ômGƒžº8 å†-GÍf¶Ðî0«ö™RîcŽL«PÒÝ‹ë…æ¹œ/ÔòŸí7\]O¿R nÐÅÕê5…—C›vk ˆù‘‘Z¥í¾¨iya©fȤ ¾æ%(èažañÏ!{ÜÁNáÚgÛmxÓ[‰ûÍ~"®ÍmÌ÷üaþPV¹;ž£ÏÌ¡ê܇ù|.ƒ1ÒŸ‰uüáÛ'9¼ŽÇмÎÁ"ùÁŒœ˜óri‚!{‰r3:ÄŽd_åsUüUÍ~Wôr)x)L0t³Ô¤mJuϽÉÂO©–ÁÒ˜D ³‡é°ðO`Ô-ýÉKeÔ!› yæq”€`¡¹£5ŠÅj\˜¿g9âçsÃ$Ý@ú÷Ù2ðIîåÈ(v•G– ú ˜'3G…éÅý‰½Tí r/‚d•û$N4~­~RÕâØ²¤,¹G¶¾ZŽÆRœ øëfM9ƒÉI«ß­~ò†·ŸæKNBBªÇ‚©!—û¬2éŒK~Hí¯ÁrR?n®¿ØÜƒsóžÚÚÙØ~ûbs*mšú  GbH’@‚‹©H³Ð¶áX«Ê„-¹sl€¬ÅcÓ"²„êŒlLc¤Øô ÙŒÈ8w®,ÝËìöC?Þj¹5LdÝ ŒYààÕRßÑp ó,#?d‚°‰m ¿»úlQÝ2CãÔ*qÙ4âkòÐ ÛIåT•žCJ«sÕY…ªÀ6{}rä K¹ÇzÒ¾/,ü 7XhbÖÖ“—ÈÛÖ \Ä«­|º…æc/&K^½É BŸô]»íŒ-S„¦÷‚A˜ å"›\«ÛN%›€­ÊŠL¼©tw ù¶Ì,ݽè·â³pÜ]ú(T6pø®1Ô+þùÖÁ>.š›-sñz gtÒ#ãÃax‚ìÆU?dÁÔEÔ‚¿×.ÔñEJ­ÊX¦n¿¸Õ Å áô%*™þuê­Å'»Ý¶Dl…;â­gY‘^7æŠ&‡|’áåx<ä»4UêjÍ`EA§A§­m¸ŒûñKsË'B-¿#ØQOw[ᡨŠdðKèÅ_mZ‘µÞå™1 5^Šb“­\žå>D‰Ž=ì¦OÅÉÚ{£.à²* ªª ‚šú¼–ƒFåP›[Í î-¢ è£‰(VÚƒàJ½¯A‰5«þ13¯¾gß8%5ƒÿìk ®vJòj)A¡õ<”>¬å\óˆ+Ê /ï"ï_È×ÊWÈ÷ùöTöÕØ; jîÑ£»ÍÇŸ?㱕ʲ"O€²¶J4©R­­q¦Ù±Ï‡PÞH­|ç|@h‚?>­Ì_ /p6CáéÞ„¡#! sØÊÊIþ&;»³-¦E ¤ŽpÁ (û½%å/˜7îBÈ”!QÀ¦þ=Å Ô³¯²„?G–`ÑÌ«%_H¹hÓþŒl=åËl\庾 ÁÄcõ"$o/Èúm½Y¯n½ÙU3[¨a£Þ ’Bk4Ü[ï«$Jª»lãD2Ð’+þ&Xì’‚dÆïÍ«-{ã?£›ÔˆúÁJÃ40ŽKs¨¡¡¿¥Y=¶šš|¾@`=ì…P2Ò‡YSA'A‡„ÔþÀ¹ç¶— uÂ6ºŒ#õ)hÖz¿ß ‹‰ip7¿„t팔ï8lã®Æþ´´!hÊ ;Ó©ƒî­ý¿Vûõ'Ë}plÆ…>íQ¯©~/ßîlÜøà7&Ê¡Ò,ȹ8&—Ñž/î”÷ß+ƒä¤…„œ7êý౬7G1 ‹¨ÄΑÉî†ßÓÅ þÖM³ c%èR&tý^]XsêÇ7å·ïT­e–8ÁÉï†qýhR+·LLíÂB›'ÖÜâaˆ+–ò6`âFǪ 5%fä4î£,RÛá’¸aL6à¤Ixq5OIzˆCЉš¢·gH¬w¦´&®I¨EŽdÊô ÷xԃʕ4lWkê Ñ« «Xhª¦%{LmxCc…ª?TïqHv9tœaCMQ< 5kE`ÐÓV…Iu*bWE„2JFµcT[5QC• ÑÑLdKu„ó£×ìwF þ—ô€v«üF>÷p$jçœAÁž@sðoÃ(¨ñ$LöÈ^Ö%ûwáÓPê(ŠÎEp•ÐăKiÿßûèô •- ¼¶º9"‰^V³A3™.Ÿ’}ä0!0† Õà ¥c.¸Ñ‡-úK2}WZçŽÑ oOS‰ Ä=à¡ÎBÕ õ˜dFeŠd nz²£Mè¯f2G6Σüí¥œˆ_ã;-ÙáþýfóWc{ÁÓ—mdŠÐÉ1‰´Ä_Ùø Q|€tÓû jÿ×1SÚù0—ã š;ƒêü@—g ¥, »î¿‰Ûuí¦†—xA?`ã'ÎQµ/Y˜ôw#wHÆ”Húýë?VîcÍ@*þcˆT–FT–nñßSž“ÙÓ¯òG¾óƒ­0š ìü—Ñ,@fpÞ? ?Ã1ÿÆ›¥»A0Ëg.¼Ô§,°ÙðÏÃËêI8L®òjà}ºnØt# Ôxûô§ŒfOƒöR›1~òiÒNn_œtÂó°£2Ú'Ÿn6~Œ*Ò‡íÓŸ&4pa ÈJ‚ó°±õr¿^€?kŠžÐ¾³±¿ùf}oý`w÷àDÛÍÑWÞŒ)³ÃîÏ&÷㙎,X,–H½R5‘Òª%'hš|–ÒUoSÛF°«º&Ü…hkQ޹^Þ;¾}b÷Œ´ö½P¼ < "‹”dèØ´åÕO!p¹†²h¯ú.ÁÆ8û°E÷Ñ££çLsлƒ¥OÈhòÊ8ˆÇílÔOƒ?òZò{·G½"n@0ýiZ(?e±*ùA'Ëho¬hW¥ýw 7¤Œì†Ã lœQ¹×€á‚mªÅÀ·£C À抆?­Q¿Á(‡e#LF.pFÅÞUÆù»úxÒ|FZÒº£dØ8ƒánàE\½ ÕŒð†dè ¨VS Œ–Ϩ´v×8߈îÍ||’Ù¡8¡Ö›ù<˜µ¡Ð4Þ–ïä矲ùOúA~ùGd¨ð,³ùÉN¬y4OúA‡ K7Àò¿÷ç€åfL†—k¥k¸ãy5Ö@ü˜¡“ ×|¾š‹è³fa €£PN&` °Ê¯8$êX;´žDôe9¿è² Ö£4Š<¢­4üÜN £ øG;)â,ö Õ1Iüõðg÷å$à˜¼'Œmí>ãWÛMãÔì8²P’‰So‹Ž……׉A½9(®ñ¬Eñø”òh࿌ µü¬3o*?«üUòÈà=qJsON(å0x(Güë±' y|¤¦‚þ|ÌÀÜúš>ÆŽ}ZûœU¢6¹D Jè¸Jt­7õ‘ß§KÎhXlÍ©f' z£> 7*Ñ⥘Ds#+…/¿†(Ç·<+ H AÜf(Ì§Þ € _HŒ¢ð‰D» ¾ÌãŒ@¯» 6»¨Ý <¶v†x¿XºÀû ’pÄ;¼ ë[äþ4ÔŽ‚°:Øþú^ù¼ƒÑ%›ÉÁ.Èè¾-Ð>ç`×àKN²¹{¾ÿB-UæÑ‡@%GeŠ8Zžè vÃMá~‘û¨4.ÿˆÏ×yÉtN×¢±3~:ص™$M ¾8ÙöЇ ?2ö÷”ËbA2 ð4áé$d±:wÞVû60Ü]é~#ß´ÕÅ Jé;Àé“Ý܇‘4áD撹܌Ý%ÕÑ `*²ˆßÖd€}g9©þ þ üûzùäa¾ü¬AѦ+³®Œªô¤ÈªcqHuXéYõ:ŸÍN•Ž5jâOÏb4*Øgo'27¸—ÒÑ5X¹€® Rõ”Éí­À-¬}ÖÇÙH§ôµ3è«(F[¯S2šµøïùúþõ½W?ÃgzÞß}»·±YòCÇzEhؼϚBÉ{ºYR)SÜYÅ6Í |åLu"øgM™GY“nJ*3ÿ‚€°k!7‚Lþ!~~)ádcþŠ©TrD’tÚ! ë!Ed;,Uku†¸@ÀúvK0íKµ%_ýõ&ÕÔ]Xfôt´Gô`Xº5ÙÐtc—¿_K82(Çxè¹dt {+Æ£ ÆÌaòêÍŽ#L,&Œ!ß^Pøã þ’[þÒQVI 7¶F2!h :>æ¥'=äÂíjÒŽt:0m¬¾Ùþ ¦ÄLÊKòM€¢áˆ•ñ&›_›‰q¦fòä¸a³`~eOÍ£ô¬ƒ$ÑP»™ ;T„tûHãr¨™jú +by º*Œèç“0…\Ñ  ú¿‘(>ÏM¶sÔŸa$?b¸½Ûß:ØôqCyÅÖýL9/”;ûâPñ;»;›AHt?ra+~h*4 úK8lºéy7³ (‹˜s<ÓxÜ ¹øfC4¦.z½œlwV5–gã¶hn‰:D¶ôUb†{!Ǩìrö­ÛO:q@nµh¤Ä÷LªÖ)§‘•^^cNþ…ºoZ±¢2öåP¶WãÄô#¿¡›ßŠ%ÌÙÄ~óÇx#¶6o¸iÁàÓ’á`Ô$Aç ^ÇÐ{¹´2<ºMdO¥Ãov(ÒýÞÆ¾zRyŠî@i“¬$¢y+@G¨˜ˆ–—khËî$Ϫ™ÙA3‰ûa¯ôÅù0§œ&á+”/­i«w2˘ ÕL>ˆðƒÓfû²v°¾hô,E;³ÿ>ú€z¼Œ¶šáhÉII¿H}sèFµf­MNJ°šó AÜÏå…åÄ3çs}²‚@íj#|ëø‚`K’…ÿ3ç%GÏ8Áö‘IÍþK 㤿aäÔ‘BtÃ#*üî•×wö·œø8¨r3T§ŵ‰cD2ùd8j·‹GCB£ÃËT§á¥7¥Ér‡ìÁð€œóšpßñ9Úƒh;5B´Žz„Ós&¢ a Ýó¦Y¡d‹’¿ÌWTJBõPµÉ†æ™ÐC؋ʀ¦dÂÒjñæyÒ!]®ki0n Ü ¢x”@‡—óóÄWj[X¦[úŒ73s,È šÌN È)= 6Fôâ *`5`”]‡ ¹Ž‡knŠ5ÆA`ÚS]ÿPÐŽû}àEx'í¥F³©Ý!0 ’’ ÿŽ®«ª\C? € [Ï_M\¦6¯o½£ÁÈœ~žÔà ’ÓÓ„­Â(Þ4’C‰à¡µ«Ü‰3©Œ©÷ Ò^îîÎ\–HHz‰¨—æ²éÇ{Ì”°&—×íªBÍÐÚœŒ¡(ú²dhBRSñãÌl»ÄÙ‚Òš%É‚ûYŠsLîÑ€Ü9SQ³xi-«Ù™ÙÒõfÌ×~ÄV@{ŠwܳŽãÝ| B©’±[áتâ3õ©®f€N4 €ê¨ Içsj¾„øŒÏèZ#õ±f?Ö>ÀxÞ¥±Ïn¸Á>ó6Øêô öYjƒÍÚää<ßh`¯ÆÒ¾WµgÏžÍ×¶o¸>»ÉVxÇÜ÷Äâ°gƒ0Cè/˜ãè~gæÇËÁÛ‚—­¥ó1 NÎLœòl—ã’1Jw8Qö\{3€·ÁlØYÑtXlKyF½MÙ†±ãË•Ú|e±ò¤‚PtK´{['ÖW[>«Ì^OKV¥dŠ^nmoÊŽÑ‚¡¯j@w‹3ØÛß…9˜»Ÿ×ñ¢g¿Ñ(™¼Éi|»$gçQ~œ™“½žÏ –ÍQæz.‘büºjæÂSÒ;vˆ=ÑÈ6Ä4ÖXÿ0wp ÛsmaqiMÞ¯àýÉòÓ|瘖3ù—¨ó^rSÞA®oZÀÿÎáR¦j†¶3t.Œ6l0ó­9±ÆŒH ËfOÞÝg.€ý2‰ôM‹(÷?#ì9uUbn@ãƒõE[¹ç[¯–—TmeiiùéÒÒüÓŧóÏž<©-מÀ1Ê͵¸ –ž-=[~ºð ¾¹Ÿ»?©T•¬@„Lî§x ƒóçøÆæ˜/ñ’fx(”5zÇG_‰~À:ô̚ĒRð±XnS\ÇŸuýc©ãè(ÕUùÙÂÂââÓ…ùÅå•'KOŸ>Y™º½mXÈQO|gùÅG¦xÎH³y|>êb`G›§æãwß•r>ʽéPàŸUœ8féâšÚ Ï0N“S›å#q$µæÀkxˆ‘ô5Ÿñ²À´ ê2æiOƒÄKÇ&<òª›ÆÂšÏÎyÌñNivr¹hb€ J#à©­×óç;s_ÓYÅg†U¤…ÅXMŒ $4žÃÛ&xî$AÚž$Éð–x/È]1@ôâ9ÜLŠpä÷Ù8G¢iæKBø ŸL¤ÁhÎǦt/¼ÀËbÀáõIA±ò~dÝUœ[Wþ’ÌÃÊ"|Ö·{d^ Í©å'sjq©›9ÍZææŸês»^R”h>„uCœ<®?›à«Y uuê´Ë´¡ñ„%õÍ#©fUmž%QPþAoÈŠðŠFèP¾ø_7£Còtòû=íE¹BìŒÛMÚw¬Ïu¿‹Î¦ÔÃú˜HTÌÂZ\š“¶•ÙÎR_ØÓc^2È…ÔÒbeq þ‡_>Scz‘ùd…’hã¼°‘>=šLhëó¾‘+A9ùóÀt[CYÕ>p+ô8à…Ñ÷=lúÄ -(4tÄ30ä”ã×?ÌzùdX ˜ˆím²rRFœÄèM-tν@bЙƴ6þƒyÇ£Z­v³£Z­v‹£Z­vÿ£ÚÂ|­V[¸éQͯÑÕ ö6Ö;xç8KTE¿ÚÕtˆWh ñ%­¥s± <ùê¢Aù‘µ1Ç0ÊðÛ8 û‚›ÔXt“ãv%‡Î<5—h+äÔYÖœÎX29ßûÚüüÊLlbv>üTB>±±OŒM­-A/«åT½*oP¸HÊ{'ÐÆNÌÛ]…ä+æ•&³“Ùw>Y©L¾ÖÖ¬Ú4^M9½fU4sLÈš¸Ÿì! {º7š¦ÒT|_Wú]sñãbø—OA1ImN©1|Ú3ç+f»MÞ¼,¯˜¸Òö 6ZQÉUo\2âÿƒQˆ¤Ñ°½Ò"ï‘:Vò§¤üM(Ç!GÏ«|0¶EšŠUŠ’#T®ÔÚYüÛèñÒIø•ý S”ý„•Á&Ý»ê¢Ï+ŽÑ@„Æ£±ìå²'s€¼\yZY¨ÔÔ&Ë%`ÒÓhX4›@¶ÉðQ¤ôôóºûz¶f»ÑA;ö‹5ÞX?º0?ê¼vw2:çjx®4ÎÄívÀt˜n%¡‘ì Ó²]TÎJ€­˜5o‡ž‡Ê.ñãxvFÌóZwêy†ò¸Û­™ Œ¾ÿƒ’î:"š‰É ±Ë¯ç 'Þ»}Î}|6í£Ý¥>»Î¥Hü «ä"`Å7ñ™>e5A|ÎúölÊ7™íÏ–ÍÏŸÏß‘ŸŸ<’ЊÉ?s°î= +Sdå¦òÐ}N÷+mš£#ð)>¢Ð(®œòoãTý¸þ3ꑽØÚmü˜¿IéNtÌÅáÁ)¿½õüfpg ø` "ÛMÀȰøðÔ8`ÝçÂGßüû³ùR­T¦~„ÿS‹œó®_\ÇÒš¯õ$̸¥:€ îˆÍ1ó„eÈ]„®4‰…ÌN¡îæVÛÚHS„[TYOùêµÖ<Ьá©tÒ6äB_³°*iHºz>8·iÜ,]fÌzO¾øM$&ÃÊ‘©7ÚC2PQòä Ú‚õÕ jE“T¶bã: s“Wýñee¥›yÀ%…¢×Û:ÈìéŸî1À´qE·-5\áhiç¢5ét‹_‘>_€¡)hE6’ÓzΚŸÃ8;£¡ÕÿZÚÐobÚˆr ÂJóÎêÆ¦^sŒªòŠü­€‘€V Ѐ¤1ýAãþ؇5gÞ*ô†R†ätÇF=&T,x½¡.Ú·öQkd±ó-@g(â ®'râ #âGî¼ÌKß9‚K¶é|O÷#úg'¿g/r˹T¹µVÿùÓ˜Õ Un;“δ&WºÉ•;5¹r“& ¯7‰Ÿí÷ëÅÂÆ›7 ÿ¼Ü^µ_d”$sÇoªÜ„¯ôÍæÊt¥NE1>”‹³â䌃*l¿˜†âù¾¬¯'½Q]ø\?„¹ Û€%5ÄN¹^¬UjËEü‚ô ƒiñë$Ž[Fê"Wˆì_®/ÎÔ†ñ&?Ó8t•ð̘Ä$ñûk4©JY¨‘Ày>Љ!) «x{,Ú~Á”µ)õ*^\%?+r ÍšSä-7A·’„ÙF½Ý}þâäEAÿÞÖ;•Îf_ÕTR7: Ć­HbNñk‚Ú¡ÃãNÜ7¹¤Œ#_)tœ´4Ô!¬¨ #®a8Ë' C „—Ò \$. ÂuB¾µÅìÿ¼' 5ÓE‡ƒˆw£‘¬\ÀÉ õQ4h·óiw¿º€çr‘–‚tJçúî¹seøXd«Ñü6jˆJº"FÚÐ ÙªÐqŒŽ´¯JLA4|@{áBÒõpR\ÀˆÈDìŽ:õfäJë†õ|ÿEÙÁI©czø¡I¥ÒA‰l¤ˆ­ýƒõímÍi¯¦yœS-!½[è¢ÿ&WΰšÍxÔ'Å*³á4_„h²„‡(°©J:ArÊ{¶`k[îœUrmÈКOªú¾¹ñ¡Š®Ð¥Q |±Äļ™O~²]–ˆøˆ“ú•yJ»$ØÝçÏ2Õæ35C/Wô[à†zÀEø²F›àþÆ®Ú}q +ó,†$€ÞÅ=Åö™8XÑ¤ð ºØä€šñúB[h>&DCKÚȈiõhœÀpì Yä*n•aâОèU—4c|ÔÀÖ¬G9)AhÛ‚REöűL‘EÆÀú!¹§’x:Õ¾£Lž¾ÒÂÚ‚´ àÀuŽ©®W`jh݇o¿e¾‚Bд’~79™U9^Óч¡­…0-‡eе™8‡¹t–?úü‘ ç@ Éá5•'³ {õr]sûQñ>ͺY¦‹Å6Y6éÙ£›4¹aÆ|#••Ë-C~›ùÄ<u·ó‚NÁÍ ´Xœý¢4óýàs>b¹<0ü±{† zbÔ¾fP€G›ÜÂü0âGUl5oF^3B™ Ø”bZvëÀ¸Y^Ó;•,Êðw†ú´1 Ë3)J—JâáyŸÿšË¹PqL•‰Žôo‡DèšmÎ9 ÑÔl­›1ç\ɵ9ì xŽ^æ §“ Gzöa¯OBY´vM‚4K*ÕÎŒ}Ca.%¬ÓÞŸ"j MaÖ;îÍ3Š33J|'½Ø},稂$RžÝ8·è">j;.S"vóÓÊ[þÊØÙ«T>úÂÿïaN³%™Fç#14À¥áQ^35zhˆ%_‚‘wùÖãA òÎÂÇó`P†Î}&}Üêá„”ˆ¢Íµ!;xïC%8”ÑÐõ¹ëzÞ¬äÆ8ªÆ›½ÝW{ë¯ÉÑQ* Ža%é3œ€ÆËîoìm½9ðŠrÒµ%_¬¬{å0Á-…án–—– ð¹S­JGoï|ŽZAʃ±Ç¢^[ÔãS ïÍžœ[6š>ÖïB<¥päÇIÜ C:Þ`]îa«Bæ/X€I¶ÜÁ1{õa 7™ºÂQµÓ®sEæçˆJ³di¸§ÃüáãÃÂá·‡E¦`Ö:>VJü ŸÜ6j™ïüKè3’ÒÇ)UªÃG×T/@D¨X ÅÌjsȺ©b‹|ŠXΤ+¶ k°0ŽE;XË,)WÏ:ΊØ^Ðït´¼-‹JÇܶjˆHYtPäòW]”U¬‰‡:&ªß ® h|B\'ybÁtá”·IÔÂe±3á‰ñÞÎjÁÉXv"Ï\¤è†É=¶sT¢;]:aÀˆŸâÞÓ4 b1»-N\”Zö“Š¥õÇá è%xÏ×À¶žO¾ýõÛTÉo× Ù¹óÂVÚsG÷@Ò…(y¿¬¤›“ŒÚ·iÎaáÛTÑ©íy!>DzWê9Ÿ²®Ïœ„ô Ž’¹Ë¹Ë✎Ȃ´«‡˜QV³çSH½˜T¥(|¨~ûmõd-©®QÁ¹BµZÌMhñØ5ß„¦zA3©¶ü)…m^öµ:¯è‘×¢žå‘ð„EX¦Õ䎚-O ‰¸[äÈèæÀQêýøzkkçÕw°™}f7Äî¦|­ç ‰ÂÆk;SOU´ÚФ¦ÄSϱÛct¯L­¦b&¨{¾ U¹%åÆkþ:êQ]£-7õ궈õiìç¸õmœ RÔp.A†qŒT QE¾Þ,¼ÈÍaá½.Uwì1pÂTˆ”ÔŒ½0¸‡ŠcU?~ÖÕÌ0iV!V_½N-›]4¯eÀ¬Ÿ¶ÅPõº· ­Å„YT$ˆ°ã¶äT]¤÷"žmø+ /”ðê1ÏÔBW„ÑQâñ©¨ë¢éGö}²=Á€A:Èrg‚{ä N’2ß«q  gãNæx³oÇ¢‰u£ò"n§qOÎIE4ÈzSô_æH Uá]ç`„ÏȺ踜Ýû©r¹G8“Û‹ÍÔ¦#]`4v<o^bp¡sؾÀð€±ÖgtŠ}æq#ŸÄÑPßãæT29~¹AV¶5êv¯T6¤5`amõÂÂ}nh fúŒÎ•ycÄOв”{s·;oÐ Ž¯ éÖP×9”õA(Ë3¾@(2î·L¢þ›.pî"ð§á»Fâ3˜%ñwÄ¡îgc0å¾ º‘ö¶šÖ £NÏb¿Gãd¢¼”årÜÔBºñ¹i¨tGYž [Ö¾c>Ѳ¸“—k]M/ά‚“ <饻ÚÍ¿KÔ@wü…3”)å†^G¹îL¨¾hºäŒÃP'Z&rGÝÏý•^=8½òû $RÞÌnwîzìº#Ùòp/“iö3üY$,­êmÛPG—ìfžeZWóî=•2ðy¸Uè¡Ê/Y^ä®ÂdµtK2dŽÌS-ÄÃ&âk7CO4#¡£VjñÜìPr¨·Ãë ‘œx+zœÜ‘̹1\Räm5&Ê™ L57üi’•ên0|åÉqÜî©nã±eIp˜˜Tº^ßfrY4 ½ºô2“çx¿øYÐw<Ťú]µ_Ò–TßÿêDi¯6ª'Å#s[BƒsèQ„ÌÎTš¡Ý aLÝÌ5! Ý¿ÿþ°±¾±¹û2Ç·ùu¶·HNs°­æýigÿçþç›o¾©ËhÔùµ˜“¢Õ«·|åGaP•ƒ[•°lÿ}íêÚDÿø8Ü0˜ymnpAwùØ&܉ÑîŽ3o*ÜËMªeÁÞ–j…#iá?g¥qr¿¡-ƧŒ%žtÜ+‘›éÅúh”º{¥Ûž¹Ó9\ÊûÅwǴ̓Žlý^ëNUyúëÎhÞ\[Úª2„!rf4ÇÜáX²!‰-úæÞ6Я[ñ°^q® ½ ¬UxÙ4pãoAÓ‚r9ìánSæp^e¼ìIèâÝ}õ*ƒÀœ±A½õÉßÑ_A!#ëﻟiV¼ ÃT–ÔúëÆ‹Í—ëo·ÐõóÝý­ƒ×çyîž×ì.=ñ;¡3^³"!ó¨Û}I²µn1{0pŽGòä¤ùZ“¸·.®Ì6uœØ;žádØFÃ+­ª+B‹JN[¯ûÍA¸ %lA½X›¯,=E³âéaÚíáÙ'”u¢×OŒZ/јY@­õ0HxÀÜúÆöîÆú6lCòTÎ)wT€>¨GtÊôÁ5™þœÿ m[{°‹ŠªC³€ˆ[,SDxý8¡6vZÅ?n®¿ØÜ8ü2{³¥‚XßÖÎË]Ù|ñ1£VõÚqž :^Âú8Q_ì_ƒ–Ò†mQpµkÉ-˜H¥€J4­â‹ªUžU.I[â„â1 ¡ÜK}!ŸP,Œñ¢¹÷÷§Ãa?Y­VÑkR9é*ñऊŽc=ªž»ª¨êÂ|m¡<ÿ´ÚMNæá_­‚Ÿ¸”Ú’@!n±nfDžU"ð¿06¡ÔŠ:… ƒù  Ác˜Î ¶Z?†±=Æp­á`ýj  îA‰C’ž=i­æPžµqYë¾ß †¨ÎG¾j×9æª,‚õ×ë{Tóĉù7zÅ…­>MT4î#{jˬ–gȬ?9¥ƒR›Íÿ%,TDZ Ñ¡ Iˆ†x¸ÊQÕ0 …ð[†Î¢ IjÁÀc$Q"¹g=4PÅX®q‹Ý v/T2Ä!<“MÆPzÛ@eF\»õ"Ìfªs©šý(&“õ";2€^;€9Œ‘—É ðŠZŠEÚ\~:ç%ä#·ØòŸÍFNSœ$ eçÑ0Â]·ž [ÅäJÐM‘ëƒõWû–TÓk½‰Y=}<Ê»éç¥×z˜wcc÷ͦ˜Þëͤ SÃ4Úývüw¬[–WžC>-_g¿°£9VÎÓq2ÏÛp/66"9Ú©wZ#5û ŒáÓŠ¿?­’Fë™ I2êöIóML¯QÓÔ‚Q:ÝŒÐë7ÐXcµJON€wKp¦ÑùkúîçF F:Ò5GdÀ¢­QŒWBtRkp7¯UVÉœˆZÙ ¡r=ˆÁ÷ôÊVÇ£“ǵù•…rJ(=Aå] {£iÐy„«4œSZfšA³Æz@¨19×4Z ⋃nÑ¢¡±#ŠñÌÈ>‚†+¼ì›Án¹i† bQ–ÍkÕÉ¢Òç)F¤C! èÖúiÐfTQ«4²Ã“DæÛõý÷ÅÍÅÜnÜOþ‘Ëýá5P¼‹Žõd#«£Sþ8„ïÄrú‹cÀ¸ÛE¬Av}N…çhû¡•0‹åvŠ2ªc¤Ä±È`/èÃA0¸Ê cögaóЃ6Þ"C猳 4ÜÇEÎRBÑYÚ›#\êC›0…—š•´€¬ò~ÛLñ¾£» À¤Ò ‡Õó(¼¨ôOûÿŒZõ'K ?äroÈ‘%¬I˜ÈVÖøô?² "`xQkz€Áö0®¾ÊagÐÊC’qöª ¸Ç¼§Ù˜g†þ“â(MzƒdŸ„2Z9²š ;}À¡÷óP¯uƒéÚc °80ß9O/{}ccóÍA¶ýͽ­Ý½ÆÞkk‰˜Qã0,˜ÛÜg=W"4<”<†^Á1'^ ‡ÌÔ&|±PD¼sM®ÝÓ{¥V¤Êò‹£;áãô:.GsyæµWâœÎ9æØÎ!±‚ñ0jë3¢Z´[°kuâ€ý¢jy”BšËX¨2ÓJŠÐ ÒRª:G„°™d•¸|:W«–#¹¸¸0üH·‡°‡U¼ú´e‹ðÆbíjer?åQ¢¼’“UŒ­“£öééÚ£Õg*Ož¨œž^}ƒ°ŒTÂPGƒsã§«qzÃ|žƒ«Ê„cÓ}C4ëÔ) ™€6…áÀz>Àa ¸€zÿº¤è@=ÑßáN: »fš<Ðæm`ÞkD‚©ÜkêíþfãõúÖÎü·¹×x½ûbSgF7€)iTVn–âÜýÊ(f¶ÔfBF=œfd2ò¥3©¯ ©e¤¿\ßÞ‡Síc#“É,ˆß'••¡¡õBVñÜÿu¡ðüW¡ðW¡ðW¡ð_(6>4%èQ"jT^Š\Mø£¼ø”˜,-ô /G¸dtrC€ ì~èð†wf~±ü¯ W®Í—´Kzsno‡@pŒy´òÊ—OTyw!Ïò¢f“8Žÿ ‘2|áT`h«Qi'‡„=°G.<ÖèS›9\ZÜñpÌ6àA½3|u¼%^È ²ëE›\RçF¦5jRg¡§x„)Ux\Ú£ÖIÈ*²ƒêiž‹»½5È]Q/Q`<DZƒ8P23eA•Ͻ¡ø Ev7 +êc|JQõ bЊ¢2“:Êq†nHÚ2Å¢—ÁƆ‰ÿk1_j'àz&Љž&8ί·¡](fJæôa7D'4U»€Ç˜HƒÐBËWÌŠî µm¾™h<—ÓC€×Õ n&à"?äsößßÙ9ç`³+çA,öΗª3·±ñ*s™suúöU_îÁõåhh³Ðõ‹RƒV¼Fç&¢Í¹Ä®,¦„Ó¿{¼ôÚâÜAû®#Fw¤=_0©Ñ½0û» dÇŒ²“ï+ úƒÌîp˜¿8ºc×YF{³lí€YT›le÷çR¥ ;l€o_‡ó÷Õ¶nºmF$ÂתÎÐKë3®"7ÜÄÿnīޖ[} fõËÝ@¾òªÿ•E&¯ú¥mÿgXU}=4‘FM%:w£1_IÊMHŠÒÆ}yŒ )~èWB3Ð8a ¦Ð…ºÊ› €Ãþ†<6ìâ¡‘Ø!m•Loâñ15É_-K{Â7]J ÓIÿŽ›¨ãø„U‘X9ux:g\Ò?EjG…4ràEa |›P‡h§Ө=tVHá1j9Ï{\Í/è9f¯„&쉑µI'4l„AbBA\Ž‘Ðý‘%ˆ&º8 ‘üˆ.u(}Ò‚YªLW.|Éç$öcc…¶$§’jÍX7SÈTÒâ±6Áº—ã >5£kßUñsᬭðÿ± gÚ^s#>8eöÜìT`и“콯õs¨¯;ÛWfù¡™å Hû…l2ÿÇ莎×/k-C4Â¥D¾Ù´ìÿ¶Û†¯rá¿ó‡ùË#\_…ÃcŽlRÞ¾Šÿ0²ø]»k|Kq'èÝmÉ„ô¥î'_9ßÿÊ}#[LL(ûEíÿgß?@©áÎè‹&8_Ø¿!²ÃüRŸ¯ÜëWÕ†¿RµvcÅ3ÃÇ[Î6Ù¶­âÂÆ€pJ¼hW§ÄÄÔÉt ¬Ø5kÞp®he"¦mhç|x$Úùø¤H´‡,š[á0ˆ:‰_Ãt¾ÄçHbÉÇ@D´lHÈ­®âxeBn°K9Í»T rdžôÝÕÆQÈglLÌ­·Øò¹*ÿ¬Ê¿Ùw~ŠÓˆ3¸Ò– Ò€‚…MȳéS~f¦À¹ó:ôMžCßñÏ!RzÊÐ@KÔú¡dwnÞ7û‰pS{y3ßó‡ùécWprÂºÏ Sú3ÄÏBg$ҔΖԂõÊ8Æ{2»Ä©þéîàNbÈè"r1X›sÈM 03†y¶ ›¶]n…hžÚ"Jÿ«ÍÿVô€*·-5!kC7KMºFw•)ÿwø5Õ—Ûàç!,®:w_ïcæÎQâ°Ñ}ßg‘!èæ±kUVßÏŽ ®ˆÒ®:‹!jìär9hbM0ÕÌyµ€4ã€XÄ!1¡ºÜgíî§] 5Èx”6P¦q61•GÝ&¨ ‚ ™þVZûÿ~ °w«cLÀfƒ+×GOYžÃØý—cæ~çÐÛÑ õâ"yl‰%ž#§Ù9ü8Ç6~Q"~1ا+zÞ¤ò›ï67ß( VdïF1½¯¸Îß4§K¯=€8GmäƒîºeŠ]ç4Ú7Ëi<–›Ñ  äK\³à°à*3Ozìõhçì T&.E8òjÔÎëòç½°ùrÍ=’õú>8þ@d§„t&Îбë´ûÉœ: …Ä×ጞM€ÏÇ’Íp€> :Wj¯’{DÇIM*³XAZbÁ¾»ú¬läb÷‹…—{Ĩ)Îp™3²4å(¼ìܱ^UÅ÷¿V>ÌÎV*³‡% Ø€á"{8Cv¦ÖÅ?E-ÇÝD£C4燀¯ÊáÇâI7¸â€À­–ÐbäQÄF2÷Çò¨ HýÈóž“àTTË"²au„¬:[„Å®V°ô&B#£M ðŠÙjŸAk£öðjÕUH ZçAoˆî˜â6Õ­ý0IÜôô4á$ÙK¡3ç§'ΛŠÜX|ž@—,!M—%<Ô9}ÂAƒ;ÃÀk‘PU}®¡½ÿ×ê'U-fÚ˜¢G“/æœùô©Ê;|7ò§Ä¡]¾É]Θ©éüão¤ŽtF¹ÏDå㣀F¼éCŸY$-êÎbÿ¾là_ÌþmµÕ1°jêÈ=¸éøg’ŠäÝáHÁÕÌEØé‡w Ö9Na X¦&9ÊóÁˆ¿PrÅ…þÆH^¸qurõæÔQÇ .Šjç1íVÆó–š‰*a]´Ù‡“½Dñ:äáò‚¼>3¹ÇêhÐ-ŽqnÙ3{aÔ—ÎÎ)—Ϻo$Âç —ÅŒm_̈‚V½ëǨç™DeU9¹"ŠûNÞÏî²3RˆW¤•Mvï±S8ÌÖ¤Û7GfJ‰Ù´8‹ÏV©ÄÙ`øûCHȳçÄP}Ÿ [Q\9ý!Cförk{SͶö´aYǼr­9•¿È—ýD¨Öæyži—páµ›”OáéóßX7.]ój5^¼ÌqÑðì$ 8Ø„Ü;%£ôh&`Öœ #<㢿·™¦í­Ž[îÖò纀 ›rqÓc—[fªŠf¼¼GH±?óî-5W±óxüŸ¬¥àêßsÇÒû+Ï•“Î^þÔÜöôµö¿<ý1gedž¶àU9œ‘£–Ü¥ßàxõ7—YN=²¹)}f{£Z¥àNÛøié¾K¸ÓŽm6QÚÝçÿrŽgü7 Á«ˆkus$1®pÑúÆõg…)…§n¾oÄ/ióxµ{E5ЋFC¯N ¢g!°2¹Ç(jOÙdPѳ‰HÍôW‹ úÙ®þ0—ºþU‰—…ÝèjÄX)ßxýNãñq´ald²æ£^HU›»7òûð¦-‚ñœZî}'›ž‡÷KÊÁÀ« ×1¾Šö*–Ö.J ùñ·0ÔuÕŸø÷Þ~¬76D0QåœÍýü׫~7›“»­.Ýßfよs£Ý NxÔÝ”œÜ»z¹äÐ’jŸ‰”vÿZfÍå?›¼Ýêt›Ÿ±:u_òB%¾ÔÎdQ•±yŸîÜ#o¶}±ýËž¬‡%”_2´¬E8aJïKÈÍO£á^¦”guÄÚXBV}2 xëtrŠ [ Ë+Ö´÷}³[4&¿ã®lƧGVÃü¦³Á™DÐ4mN†­&Aµ§úˆðýŽª¾ul¢$lCšlÔjªTè9ÀµÅo´õ4kµ;o>>ò4¥QƒM¹€ñn¦sc= 9Ci$ÇÓ`p"V>e˜§:ðµ+ui;i¡)äÎ3݉xaw̽Ȅ>%‹ ŠWÇ„½DuߤzÂM‘ØaH/='’Ùàï…ÉšäŒz&6\&µI}_ÎÐM¹¶•÷W4ê…;`‚Æ‘÷=«B©?×SdÉfb)±Î—#ѪŸN4lÉ”VþmH&öç$“³]O2!ßIæ³gY$Rÿj’¹r?’¹r[’¹ò0$såO"™+7 ™!\qIeÐK"¢£@1 Òz€ôñÇ7oß5öwßîml–ß51±±ùî`s£Ÿï7ù?Žr®üÑ”s奜+ÿ”såoF9WnF9WnH9WnA9W2)犦œëR9îúß¶ Mõ0ªÝ‚Y—9°\ƒ¦P–›IاØÒ i#þ’nµ&‹XQµûµñ¥L Òƒ³„U½I ›®zâÂ!¡8Ȫ٬PÁ—q§_àðÙ0uÆ.ŽkÅÆÉ‹^`4fmO…Ž ¨¼5–„m²´ŠÉ†ïbi»åˆby«JÌ6ÔŠr¨Ó˜ TV¶”NkFž”V+z5ŠÙã‰`0YîóSÂR²ùk¢>¹$ÇÕ²õîõæ*ÚÖ£™ë Æ æ1ô€±}cC²=i÷ß:B%ÐxÃpäÐXUƒxDöåmÄt ²=T1“,iʺê@á < aØQ‡‚ ki‘Q,wWW‰\%7ëQBÚ3s )`ÛOjƒµúåüõüaaf÷É ÙŠ¥ªfb/p»8¿:©Š%âØ4ÐăÁÔŸ\¬28RT¹Šù¢Z[ãr³™¥² µó«ñ²Ž[,o§ÒùýØõçàZÕ¬%*^uB¦Ëf“Ö®ÝìqGoVOêì]·ä¶Ÿ³wãtŽeñ`Å7šÆ”Ë,]* ~7ì5¯Êè‘ Q°=}ÅáÅ%è½ÍßÐù=¦œ³zar‰µ´brVšƒË^ìÆQ‡l¸#0Q×[ $â4¬¿†-ÂÜ͈ҋ!W½Ø@¿ÈDÝ­¾AaäÍÛËõíýÍzñ±}ÜdÂT?»TËa“›â\–Y?½Ïu€E¯ßyW²`ÜD®¦@•MÞ|&—™z6ƒ³‰)…‰íÁðªÞÓ9&ú.°Ã˜wykZ¦zÆý7´O°o£“Jd´œC§:9Ù5Rĺ O}£>A8$‹†í×ÈRͰä?‚=¿a*‡cw³Õ-1–·â)e²¨‹Å=õã›òÛwÔ6Œ×N}£#×xSñ‰jlä[ªø¢«ØœÿŠå×€f!0À}qIÇ–õÒõ"_‘ÃÀ‘Â(Aj÷ G+•D#î_)gäqeTu¥±;ˆlLqÔ#á¶‹>“²'ÃF  Û" L<¸Â5ûþ|¦›Ñl7ì—P"ýŒ"`žY9áÙvБ]Ûp£¹>Ýt“!9ãBҌªÐQ/è÷;Q“$ïΚèåHRÕƒõƒÑòR8|llc,|›‚i¡¸vøæ4P"  žoÂv·åüC{‚AxÔ[=¯©>ÊÁðx4 ¸J¶»l£Míó@tuð':‚àM # ]Μú§®õzÏ£þ‘Ï¥g‘Ë Ã5FñŽP¹¾Ü#ýúdz‡3ïƒòïëåÿ/?û0{X*ª‡µj¿¨¾WMîrrFò>êEèÜöžvÀT˜ML„©¼a;ФàP•ƒAóôÐ}*¥à £PÛ ° È: ¢{%Juc͆)Ú‡£>¢`<h|8{\y38ç q¬G`0Ãé6諲S.bb…0 ŠuFÝžZ™W3TÍa‰üÈ Ï§ð‡ŠK–6õp¥yŠ ®¶NÅñ•ðÏD@ý?:€/,‚9MB!•8ˆµK-ª%õD-›¹®ºøØ;¼ “a±+§Àšþ ›ø–È_Þ«ÎËñÎ`çÊýZ«°¬Ð±‡U=ŽzÕä´â5¬:+{Älµ8^e‘‘9 |txÝϼ¥3×üÙëÈ›Øý”7¥œEˆ&3—8èÅr“=XË1›ŒÐweža•oÉi7¶Èœa ¢q7§Ñ&’ªŠuøþ¨÷f«ï¾³hD§Kö‡Ëþ*Ð)TÝ¡íP•щY-Æ ™'¬ž¬“ÄsŒ}[½aØâ!Ѫe$CŒ‰LÆGxS,ÄÑBZ÷†­ð‘IÊñg“©õF eÍ—c¢ø’wŽF–°P"0%ƒ„ê:Q Àx;$À¯A2ä‹GUŠ;Ç“I2‘Ê”› 9áO/ÆÝ‰7'Û’õ6yî"onÁÉðMø(é&dçŽó´K–¹¨ŽÒwUìt Âùc’•µxÙ‡—¸ùFCôoþ6‚&‡-Ý2ëÀ«[±â£T§Øä×JRMxGÓßnrÞ|ª>ño7¹Jø9JFA§ÙïËüšÇ&òA'ƒø ×c!îâ!â3aA̽9 Gþ^…C@΢©2Ý<®r4Õ# ½ìß'Qzâ&ÐÝY`+À6Þõȃ’!g8&JÐtYcòD,Nãq[z¡85ÑIÆï4ÌŸt¦n°ÜHÎyƒôPS˜“º^'6»Hîê):¥†Ý~æ§øf öÜÜÞ¶<„fPêu.EÏ]9¿¤\Ã)Eç:†?MÒÓ þA¹€¾­M)¾|‡âfänQЗC%V5VÈ»ÍvÆÉ2¢?›vÅ=ãÙ‘ÕZŠãIŒ(Eߌ’,tT¨iBL§©/ÍfBôÄÇWT¿Î} ÖÆ>¹ôãbÊtŒU7L’à$4 h$Á´n ÆDì‡UáR0zSò$HìV°üúÍuïiežv”§•-øN@Ëp”t®VMA…YWáìd¹ÝÅU®—üúr[`£*®¡‡?í¯pâ-‡¼„ÚY0Ò ´'䳞Z´R™Ÿ^3äªSß›¢ßeK_ghD‹©6¦¼Qúd—OAÑçg/ùKE#q2©Ý䈡Ɇ)”AÈíÝŸ+“μ:þòM6â ÿ^WiS«™v¹vmAÎll¼Ø|óz÷ÅfÝÚÏ¡,§n! #B踽IëÈÊ,ºR¼F;ÀµÛ‡‚Z–æ§ŽÉÔ2 ±l-«œÈØð2è4 €FÔI%OÆÇ3œ=ºÚ±,gj4é—ÓáE¬ ôƒ‡fq¾¦pZEÌ,z8’Ó€daÂëxYV$y Fæ/ Ù0S\/ˆ&=ÐH ºß¨´þƒ£èsVQæ !ûä çHT¡¬ºŽœs·mA:_µ˜\ÿKY&IGab;Ñqã” † æ¥3!ÉÒ™Œ•Þ„Q ýé7×_lîíóH8¡QIÈ=/Ù§-:³åÓUžRD¼öBð@¦*†bÉÆ0npÉFà ¤Óhüu*5Í.’Ù%Usö™¬Eò‡š=N³IVå×{pKóûZNmî4uÄk òµÓ½×OãÝî›ÍÑäÕg—ãP0fJ8¯˜¾n(·éã%zÐkðIå> ÖSÀjmŸl:x¼ß Máf-Ú•fÝ RuèVÐ~ìã1̼º\ûS¬ª¶oÐ;Mj<´x2?ïçš6Â(ÜSþ ¬±ïM&w*mš^LS¦ œAc}{[ãÅc0¹Ô‹õ½_¶vw(újçíJ‘…ÃúöÁäŸ6ëo¶ndgóàùþ‹;ÔŽuÞ­ä›Ýý­w7?î÷ÕØß|½¾s°µ‘Á„MÁÖo¿@ÁÆÖæFcyþÉ“gõƒƒ½­çûÈB ïpOhÏ_¾y H/ ÒË·;Õ¿ƒ¿Ù¼¬í­çX~áÎ^SÊ7Ð$îØ­à¬ï¼Ø|=ý²wÐnÔ‹.µàØFúzkgëq9©jÊ•Uåu8?¹±×•¬é² 鲩í’{Àv©˜Ê±¥Gbâôù zƹi¼ÞÉÔø¦µ¦÷êÌãšs=0»a÷Ï„¡vŠA—Ï—¼ÁæÜ[jç³ud1Ù#Å„‚™…Ä÷¶Nî"¼¯é…xs<ª–ô‘fÅ0Æ‹b‘ªö îZeâZ¥¶à"õÔá"Û@]kÒ(8<«<êìª2<æI@&W]Ób‰ûh«É;Ïõ¥÷]ß{€°¾ë{™}×Qq¾} âûàA|ih' m‘ýËúBC ^»s1çŽü3"XƒÌéZ8q¯_ÖXU†(«(½j†8«z#ºFèt-M»û’©–® I>‚™iqò}¥fPHr=Ì_³«3£ÑYQÉ€¬Y|›•üO'qýLÙäçÆÌØ9—»§š”q¾0ŸÀ\ã!ša±Ñ8¾ƒÏwÖ›'ÕAóµ£Ô ì:%4 í 9ÅlkZ©©ºóÁ a2ÞYžü÷5óSúrÞ'˜ßœz±0€$Í¿† ­J!nn/©íb)NÌ=F‡D¾Ä´"È”Ò8°0}…Ó-/+eõ‡ùInáÙò“ê<̹¡·ÿ’À)îíEÞ-WÃ<Îõ”ùUjL;ÄäòÎîöî«]8®¿=X5ã‹ìà5ƒý·î[ xæÃ¸™ Þ¨gæ….“É(Pš‡” œoEäþO­_Bx_­#wú¦)¥óñE‰0Øc9ç¨ {3Ìo‰Î^¯#Üîã6ZßO0àx\#{†>º¸7öü×™ó¯ïq®°æ¿›1?ž´1ÿ4[~fÞ­•¾tü°0LB[„ÉslÔ:µoBQ<óˆË2ÄQÒጂ/j»º¤õCM7“ëÄmÈY3Xk&Jgµ¼T>ŽhHÃT÷Fe1½+¢"ûÆÐ–_^‚?áóòRCG‘/¤’1N/þ,^ɱϨ¶£‹¦a¥$ÂÙºì4ÅÆã6“ÖÒ›PñWíŽ29© Às‡€Q< "ëïÕÝýÊ=4°»ûÕÅgója•¦Ÿû½¬ØÈ~s.P‹òÞïÜŸ?¡èãˆÚ\yÞß<üÚÌ5‰·e¤òhß%÷º öaf°ñ<Ë&Ž›ìŒé,u‹ìôñ úQþí4è ã^79©olì,.<[¾k P×! |Öj¨»aŠªÁ\Èħ’3{-Y¿\÷׌Z–Ò×uE\á+5ÜΜäïÃ(\ÓkÝäBZ×âÞ‹ 39®B y¾ÌM(F“»V®_X7s“E…*á§Ñ†Aç/S£´ºJdÚÎ×­Ç0œÜ½ì°°¾\ÆÆQÚb/ðð Mµ ÆÚzƒõYÆ.‡Œ}iB©:Ë­ºýµËn|g»÷òË çÈ2‡lÛ뮪²h»“eÏõ òŽ€o¹ïćßõnµïý{zd¯[ëcù~©MȽ3RGn·/š"– L$ãؤh©£_Örƒ á¢ç 8Édm‚é#¡pí·e︛OСï¨Ñ:Ò=Gô|4[ºK`n¶£c¼°à͸H:1ÀF´/ÆÐ‡Ø‚ã›]XÜôÂÚgç ë¯9ˆbF^/.T–*O‹’:Ï#/Ùÿ×ââ­»ž8©’œ²EŠë[ÔFFgS'•dt\ɉ…kžî‡Ìg›!…{KiÃ<6ì&ØxÄu"PƒîzÃþ\’«-”Ƭâ¼-d,ëÔ+rÊ}ç[*Ý:QÔ ÎKιÔs’éjMjS…¦MÍÉ(L’üÑ €fO•—qÁYãPÑhhK‚ŽöŠÃü‰rFgzãhŠSM:ÊÆ™éˆ’"¡VSøs_Ýqª`š–¸É ¾­„ŠhÖlþG ¬,àu2êCó[ þŽHÒ“÷¢f N‰üà¨BxœÝzŒ}_%¢X.’êɥר\rµ‡ ¥Ñìê…š¼œ·P#…²¬)ÎùXí‰.䜣ƒ6 hõ?ÀfCm(l% Oœºfç px‰aÅõ.¶S …ɪÔÃZ˜ýÛ J å,yÖ1…ŽÄýˆNÈî QuUµ\=)­­‰³»’ºU¾IçœJD0ó=Ål—â¬è”Š ~õD¿ÚÏ7X§¶’#m°}ÛUjAd®Ð{ÚC›ÞL[£úûØ¥Y»Ç eÀ Ô~|¾éò¤¼¼æhÜdqÒóŸ»6©Ê©KSrØ•©‹è…)ïÓÖåcõCÚ¨€•À”Yç®ùwG3¢Œ®aQ›­ä¹ùÅê¤~û-;ÁÑÅÜB4.c¥òï(Ý\yª‚E'"©IÃp{€Xì°güE ç5öm< Õ@ŸWc _B¨:膂4àÝ+æmè, ¢‰3xbýHÛ(i}Q–óý÷í¬½² öÎ+*œ|6‡X³ú‚ °ÓvPåf’·zçè?‡G€µ‘ùs2§èüYNÂ>[rXãØA‘6” çó9s‰O tçÑÒ·í›ËdîÜöâ'«ÔRÚý*T™\|´Þ¹.˜ÖÌj$]× Ïùο{Ü ´Ë*ÁÃÜMŠ»Aç¦ßßÀtõñ`xÚØß|q7ÖÖÑVƒ”9êI5¸þ_õøºU¹>o-)ߌê©ãÑ©œµ è™ZÙ±ï"Œ5Ž«t“Á¥7Âÿ<{ö›#¡M´Ã¤N•k:à†NYå,ϸ†ØÓ¨×ãÞ =mã´aÄ}È7СXH©¾˜(,Àú&Ó8Ú„ Å쬿Þ,ooíð‘ü¿MÑ^vàŸÈ(ËôÞM_°BrÝUÂÇÊ—òrœKy©¹”ÔeN å¦}$ãßx„sÔ›*ŸôFeÌÌæ˜]¬4R–!˜NÌ k\¦«M’´m8™²LÄÝÏlž“­ªÞi™Æ 3üjcÃgÍ]‚L ºL[Æ¢eôÕå©O¨Ñ†c‡›Ï=x;€¦ƒ¾RDòiLžŸ×ãö4O¡U´U(Ï–»PòBì¾So:aÀMrjåƒ(8 ÅRqNœuŒúI8LAÈi„Ãw4CyÆG…=1c84h©âá|íIñH«†ÝÆ‘ÇÔ taj¤7ë´~UpœÄÑ0¤¹À ï«Ðêퟫü¨ƒFBdZÂΰ^¬¾ÿµúÿ›­V+Õ¢!éZ_=ú=i"drP |c§åÐcêŠ(üéæ1Æ«Òbò j½~Sýæ¤x$exO0¬t¾`ڗψú<Á£T­†Ô™O¾±  æ¼®Øj^9ôr›¯y·_Ô5ÉBƒŸÏk´Ù"^ ’9æèû€*!Gx !úbŸƒ°Œ*Þ<Ëh¹( áE‰‰K.P“ýù™Øµ¬˜O&A I0Cv×µëË"ŒUkÕ«Û)sW_˜Þ2Dö²sYÎã-Ñ;ùÅô€¢ éM*·ù¼8^ ;CCü·ï¨‚èí¾ÛŽnÀ¦M:j'SSæ4â§Ì‰ƒJ8€r>òr±¼°tt^òX¹rÛdª:+íÓä¯Ö±˜oîë T=]ÊR Ú3Ð¥|R+pˆwcÀu™èW±¥함-n sE­í÷qeaD^ò˜DÖ = 9ÞPÆ—™U>·4ŸE_ù”t!±À¡\ÕbëL\„äT‡èb ç$¯×pN:gFû{«®)1¬l<1¡q‘t¦Ÿ¿|Q„ÅþHïÜÿH¯AËX>ÒAÞ•)€‹öF%ì‘×ÄžÌÀYt©IÜ~q­ëdÑÿ–-^¼bY”ïq×]wäí¶'¨øl¿¸¹•ݱ=b:û È4UAêŽOz$¯Û/Jv%M&€S‹MÉœ¢/å ÆôÆññÄÕ­ÐoÄ\æÒæ†%cë™W"¢ê„Å—½ì ®ÛΈÓ0-˜ÿNÃô!íîç’1ÀÙ¨œ™&ÄÝÜdz=ˆ¾Ùóýetøz¿Œ~7€ÿ@ &î#"Æôº×8‰»Œé¨†äcçõ8ßyíž\®sïQÂ×u(îÈ^CÕP_ë$ýpb:|îuÓUû\g9bŠ]«FwCMUCèà$¨^W¸0{_‡Ý>ä ÁÏkx…›ò™‡¢}³™à¾vÚ^¿ŒšÇ ßyh&rE)îe%Lå»ÇÃð—ë‰ãË£l>F ü{mU»œT°Ðz«¥}jñ€Yû­ˆ|܇h†ŒèדhHÇ^ f?¾)¿}§OŠæ{¡(¨h5z\åŸçuÔoÌs0-/l’Žä-†«ö¸QÔpmGÌÑèF—G¯÷ÿMî]·¡m¶ôxçíöœzõ^ý‚à‡h¶›`"ŠÀÂnx•{4f%Ÿ{$gdD¢ã Õ (öVÕ– “<>J岕ãG"ž4ÿ¤§­üœ°V—q¥a˜‰’?šuó0Mß’îS)ÀZ4–'î*½’u•Pc¿êÈ”4ŸÆZ×O¤k^?è, drÍý<wêæÚ™¿/š"‡Tþ3Ð2’žÚ“ éãÑÊô½zp 7‹~Y†ƒ+Dô•J¢YF¯ý9þâ'nóxò”H^‰"T5ÇçŒE/ßVÓ¤6ÕÏ÷‹Æè›º•Ú,Þf£yo?—¡Å8þÞ'kÀù"jᩞF0è]јeous$ß&ºÚuû@#+émâÅÛ×ožoíäuz\¿U™›Á»à’ÖèH5øú5×uÁldª€-ñ'Ý ÄZê6××@6ÈÆòlθåûëÂÚèÖÆ{›ŽWw$®ó²Èªóñ/ ÚeZp]ä®Ìu64³¯¿ß>~ å5|@èÁ›ÔË[ªN‰¯Tñ ïå ø—G SKxRó³¢}=yL!âä¸_ ©œÔíD3Yý0`%V¿Æ›ÌÃK‹Œ&"˜½EЛ*'WÝcl@Y;ÿ¾æÔI¤dc÷åKss;Æ3ŽÕš2†¥Š®úߥCÜd&«|b[F|ZJ÷ÕnÃxúÜÃc_÷~BJ’׸¢D€}ã€hS NGöº÷‰6§žÇS#‹óØßG”û ¯º3 Ïd…‹Z• ÅŽ“ó4(%S(ï|D53×Ëq)g=Bë4/²Ôäw^«ÃÃü×Vv“ŒÉ­À™ÙóéV¹C†wo$»qÚ⯀uŠÀë…ƒ^ЩÌzSSL•²+Ö—åŽMúë}ÍZ9®¯56{o‘ˆ[á4¹H:;€¾§OöN({­ºÞϺ“Ù[Û; Þú;½Fb‚0ÄæTð¾»øÕWÙWŽ?ì{î×s²ËHË37ï±<q*°ˆ¯“Lt±4ŠbüàÕìC§ò¡âP²Ô¬Ôk ++k ®¶ð]L#9D'§¬v ÌüžôFfLßö0^Þêþ8´Ü‘˜„¿¢ªñ‰Ç@ * LÃ{1ŒkÚˆ!Õð&û:DÓUq£NÞ‰ðáô©r ï? ЋÓ`˜Ä!Œù”Ž—kkNïšW'Q¯%ø®šáI³é¢Ñ/QïÙeõõ¦Û_Ä¢Ѩ\¦!5¾g¡î1ê?B …‹×êd€ €­ï £ Ó¹ÒÝþ%$á¢^3TÔò*¼n/~¢óð· 8 ƒWòœFOݨÉ}|{ÿaAbDn¼ƒ‘q åB98º7 Fe„.ÌFØ8ÓY5#paxyÞìt.+énlõ€k _€/&ê?è>¼?ê W• Ž€"@!ÞiF¨J˜û˜oý䯾ö;ÁÞÝdU­Ôž-¨™¸§vª ?Uß½)M[˜ÛÅ„.y´³þ:Ú9Ðùz4¥ÐSò¿2ŒÐW,Œ,º°ÇÙ…FuÃn<¸ºM}A7: âÄ­r“v÷e"ZgÉ©‹r„Upª Í:LŸ‹*û1^™¡¥öQAolÂöܦ½Ç ë .V05Ó'Àút®ð¥=Ãã¤Åk©ÕC2"¯½P?Åý°‡ºÓØ;Œw¢5Õ€$Œî‹+ËÀdÏ)`ò:a¼š*p†ÈÞ tÐEG*u©ª ÞrC?šÃN†š[ºƒGn~\if–™W.*up%­˜HôNOƒN[óAyØTvV¼Ñ XÑc@Ccôˆ±uËGnﻣ°w®ýüfgzøúH*»Ï.DàSÒão¿Õe©êÚSFò/ÐjÕõú¹3ãŽÕ£r§2ÒÈ¡©èÑ}¦ùTS>€'Îh§ùÊÑ0Ñ·x¸uTn°d¼ñÈ«U•¯ÌæÙf97ÖNÓŒuæo¢“^ÔŽ`†š7hÃÇsÝøî;øV³òM´!pp'I0˜DÐEQ2Cæ)B ¿ c¢z1ö1;ËKºrŒ5 X1-!H:U9_á|á1[3rÄðÜd„&Ó¤…£1*ÌÖ¨(‚º5½ï]Ú=Yn™‘õ!du½la©þ ¥rîÐf7H.8PåmãM=ß„~;ÿ™Þ_ÿ\ÏwÏíûÞëzžÄ¿ðŽc=£f^¯om×—çµïn|-¡vkx KéµíšQþ:ýut–9•]Ap<”+Òœn>ßx±µÊ“ëû[[¢QO4éݧá@½SÅÃÚ|M®œÖK¸b0£:P –à GwØÓ$ØHVÈAì`6Q•ÿø N—`™VŒÎpu8àFî¿YØÙ®¡ÎÃù¥yøS[(ò—í…ý7ò¥ö?Püs ¶Îbä/©–ù kóº7xÇøŸõ]éß/¨†(㊸‘Vñ" oÅ …Áwú·…4U¶:Œ).éÒ"ÊÞ5Fð$sZÅ,œ#buL¡œ\Èt4EÔ…)3[Jv3ëPB†€S±æ»X\0…­ÅT¥%s¥ÛÃæ¢“¡Sûc”!\D(_Š4^Íö¢ËÛW…&ÔdÌõéOe®øÁº;ñþØñÍîAjˆ©âQ½%·H Aé} ·X\<¬9ŠE£ž¸–Ût×P¤Êc Ùïw1˜†6m“ÍÊË„0ED}óC?ULC»Ž2’fÇý(ãcAÕxЊzÁàÊU1™ÃÝÖEŸJ.»êI˜ógÝë2…ìºkÉÃnf!»®{c·íìË{oì&mÊíÚ²°ovâÀ3Ñ™ryz£âSñ·Ójp‘pÜGQŇT/–Å{«%ø0§ÍÎxNê®Û¢Ìœ²:œ\yô ÀMDFNÞËž7x+‰€I½³â-·Åš$:¦()Ž2ÌeÞ öaݤï]— ÿó¸‚ÿÜiÇnþ¡M®TÆ^ :x°±¡ð¯DÒîAZèX.:mB‡iÉ[aÔÍï†ÏxßȰeº>vÚLWÑ”³³}©šÚ/·¶77^ß×mº@ÊÔΖou›ë«FöƒkdÛAÎÄdÊþ¥(fë¶ÆÛŸ›ŽUwÜX Þeí%ÎÇ?Mõ:m~2>iK3fz ®!hw¥__2¹òFâÁ K¦‘.ìÓ%¾’±?顀 ø—G»R«qRÓ³ŒJŠš¥p²QÉ_@Ù2,EL+|K3Ç_-E®±ñÍb˜ë&Ó§P©ÄÈóÿF¸s2z|^Y`}©ûÏîó¡éÊì<)sÏ‘ou›ëë>óàûŒäIøüEí:º¹…ñ.ä¦#Ö÷ƒzYtÏùø%pÌ™‹ih¦X7÷:ÊvBö…Ó-o<ŒožFÃüH—øJÏþ ¾Ù øIÄRËrRë³Xç‡"k)<œÌ:ÿ$.ƒu6­ðYg3Í$àýÊ>OgŸ=„³Xæ²Ï>¡Jm+|5e63'ß~kÊÉr{5AØŒOzè3»öÃ^ í¿:Ññ DÓn…nRzê¥䇌 »„æOã;^l2<¾ N¢&]å ¯×_mm4à@RÌåÀ–°3¸ÜäÖԋ⯘{¬vB@ rÏ7Áa“MäŒUtÜ#›cµã90¤Äƒse†«‰ã‹¨ÏUD“+÷ a¤1¢|ºM˜5A¬Äz⥴7E¥O{Vª‰Wª@)‹C2H (¨é×€[íÕŠ_õ èÅŒ2ÜJ8Ñ9¤²¬-y|¥º›Zâ C%쨫÷ïáIxùáƒ_Ò´A—‰b¢Hã„>ÎP1 {ô­÷Z‰¶°+øs® )(r¢½¯½ :±)[m²;ÅHÔ¬"Þz£UßyÐAÄ… „ ÑÓ"; x/ŠUZ‚6 °3„d¹7t.‚«d–̆ç¨&£Ý{:œdáUÉ_ÈÑåû¥ò³Ž£×LŒÔuæØ2ã8#«[IZÑû¥'×ÖäÎÛæöKõ~šGfËÇÀ­¾½ýaÿ¹šIN´‰ä»àO­+`Z¡À+'/M‘¨òvf&»:«É)€ª¢½j%o·9¹»,ƒMj𺸤î8j±*k[ã7º³ÖJôˆWÃnõ*ÉéÍ»ÿëåʲB÷¨uq-~¢´ÛÙí§N¦&|9ÿ¾•;ññ=dVÙ f+–­(>×lª ¬6%í9Òöƒƒà÷ŸNl0w<šÓ’')%Âðe?)δQ zv™7×<Ça¸.ƒnuøE™# ðZ6û¿¸œa—ªš¬ú`sp›Y0ÌËcõûªŒ(ä:T@I®zM¦%8ðhŽ…j:)@•Û´žÆ}ÔL?ŒfËÑâÊòLe–z4„•´eUab韟úa9tËh*ˆ/ÐÍòòRiZ75— ÊíbNî­i©˜»üÇÆu: TÔ~ŠR@åækÄí¡´¿2ËcÝ„¥N¡~_°Ö*spô“¸uuKªçØozv®1g)gƒå5@ó 4#€'›ªl¢}èOÙ®5ÊÞì´¦S4 ˜ªu—ÝÄì%ÂP$hœŒ²]Ø‹Ñ ˜c´tMÐ’ÏÆl“½±8?ŽÙð•÷G½aÔa¬F ßNHz”2X¸vJg^ A+>Ik>½ ‘{Ù¹*U£÷‹°@§fȽhs¨Jÿl…D™úÁ ª:ó¶ »xÑ«95áÎ cf»°8ii;»BeVÛRøÊ^f™ß MÌš9 ¢³Ñ-ñë´?º¬ÍWæ©è¥æ@˜Üá,t‰‚å%ÏÜìú™JìîL>Š–íkIy»4/Ö²ÚZ_^š@TœX6öjqÁÙŠe¼Oûý`öAZü^•”Ò ò¥Ψ÷Û¯Õ(ýÓïï.¥¾Ÿƒb³êÍzyokƒù”à ýܼsý`a¾±¼$½ëØÞÝ·[Ò,·U¥ÌÅq“V޵N01P¬i] Á³µ¡ØÆ8Qǃø ˜b ô[œQ-V.爭*rqz¥>Vâ:>5úQ_ú\³sç†Þ;±šé»™C@X*hAd7Šd6 ‡–dVÍ–ÌJØ~¡ÕG>Íæá¯Ê—p hLê‹ ˆ¢rÞã,½TžÅɰ¼„ß——¼ÏËK„“ÜCÏeêŽ;²7§bïßE'Ç¡:Á¹ªRWrÀA¡Ãg³¸Í`Œ5|Aw ›žè4íŽäæµZïüvÚìAö²»N¼àùwúW##ÃMÈòt¼òÀ²Ý /âdù¡Ž5V>z³3CÓo¸’{Äif{ØüÇÿÖ»¼% h·PZÜX”\ùùï*tC48Êÿ“?>e÷Æ€éf0"NÚ‹ä˜#i/Éï“[î uë¶^Ó·,å˜Õ³Q¾gb?êE—°ià3²cow¶ÞÓûYmy»ê–Œéþ¢C‰9{-´£&÷Sñ0@ŸnµÞMb ^;eÔÏ‚çf[y6o8kt(Õk®íƒ3LÚßAøÛ(ì KÙõÓ…¬¿é|ï!"NgÊ)9rÓzÑÃ4+³f9íÈ_˳øbÝâ(ì®w‡iè7ïPÈa†ýöí–ˆö¥rãƬä^ÆYM3I˜”ŸFœ©AÇlõ "½—:%ôbÇ‹áÄè?öãR,ù$§1œG—A×¶¦©2 ¥ÒíºcŽº/¼àƒõãçÍÖ‹p³ýòäÕéÑÖþuöSg»ûº·ïößüöÿ{Éþð`ôöüç‹_.ß]ýû÷ÿÕÎAÊ¡Ê'ÕÙJå°TM«ïkôß“µêI~‚:ÞϤ·ÿ¬%˜ËÄš)çÜúdÏë·ßªL˜:¢fö¿?@ «Õéàëƒ(a ¬/U™áÅööÁîîöCÄÖ`HÙ±5ø[Ýæúª´ðð±5Ì OÂg*ñ¥è/èæÆ»›ŽXw ®¡Q/3¸†ýø%(ae.¦¡™bÝÜë(Û=ÙN·¼ñx¸¨Sh˜?é_éÙCøIÄRËrRë3ƒb<YKáá” >‰ËŠt¡[‘Št¡§ù«ÖM¢]¸g±ÌUÂò Uj[I)a™9\—“åö0Îxà(7£`¢ŸLã„—b<Ý\ë&@¦»7'¹äm´q[}†/wv9qTGÃj\'æF&êÕð"V­=’£ ¯ødj~¬Q¹VØÄ݇c¡R¸IÖ‘0WâÍ ÃR¢Fð K¡ã¤p‚*—¡Ö>»uÓ÷åuá¢öU½»5‡¾ÉÉ#Ân-®N°Ï @±ì1¨‹‡>{ }` #ã y–%.Ѻ5’eU{¹Øjk_™Zo2Í…ÍwRL2¹®©Ú¦–¢1­×qèÅ´š€„\;T·9¹§Äƒœú.s*k¼¾÷üðú^&¼¾W§o_ÙÝgwih' íÅóBC ^»s1çŽT,‹Îqú_ü+¿.îezÕ qV!5“Ž} k9|Z¥AM9¶ëÅÅù¾R¯?è°®‡ùË#Zv5f4:ëxþdÌâÛäCùŸNÒ2úyƒø”˜ëÿÏÞ—6´q$ F¿¢Wh#„u>’À’,ØfƒpìåŒi€YK3Šfd ¶óÛß:º{zN`ÇɃvc¤™î꫺ªººŽø—úî¬>ÅY]á!šÎG‰aˆá=’ÁïJ‹âLÝÖ‡Ó^7vϪ¦_ÙdíO6o誃vÜœ}C–ÅûkdÀmC€6µ]CÈ„vëÈbðxpVM¡…{0„ã♋™«tœýIÚ…{ަ¼0‡þÈÅä[:K””¾I ç) Vϧƒ»„P¼K.:KÀ›0ö;vM6M4KvSöÉŠÞô9sfÙz²ûêùκ ºáèr+òO: ü>Æ?nœPô^Sª8p¢¹8ðŒé¬~nâúÖèÂ:ÀÈQÔ´y¶lA­µ­û'95|z-ª~Ë`«ÐãmrH G×äF6öœ›D2€µ44s2É šìõÈÕ†‚å›3£³}…¨@w››O”~#ño´òRþXÅ|>»N¡öæÖfó‰›h["(x»/¢T’=ç,h^ˆ†ø×¿¬­öÎÁñC*gk™2DÅ›Ècɺ´„Ú±„ÙS€,! Dî:rÂñÈ+¥O%†ŠÃhÀ1a×®•³Ì7On9Ýàg$Ú4Ójö•¾€±@nVù„F@Êf§ŠÛâßfU\"e|þþ—•…³SÎÁé ¸ÍN™SÉ<£—˜îƒ^À‚Ðǰ=~,ÍÆÚ;•T4ÅÉCôcJ½*Tž …A+¢áüÆ KÖ–|h¤g\ (C„ÂÉ3Ûíc†7 –§þ9@‚Ó6K ñ¼ŸæºÄfº´ð·šÑc2='k2…þ¤vÚ¿õKi-b|ILçrb‘Ù©"èJeæŽÍZýìÔãMjßXµªH•/ÅÖFj=_lfŒ-Lyl!kÝT²]Æ« Ï_Õµ·]ˆ }­§Ëã“£ÝÛˆÍAp2Ï•ôfS•¸;QÞú‰RMp6U‡Kîj%ÙùR*ÍIÅ$ºe‘.ýêk0`ÉØ8¡\Rîè$Ê57¡úªé’1·¦øÊ§Qæ¬ÇKßѫϤ““ý©ØÌîw–ìvÈV ÷òµa_œ„e¨ºdâÚ.¹¬wÁ5'(» ôR8e¥˜¤(Æ()r ¾ùFÖXÿ|ñÈöÐãã6$bõµ²ž£­ý½ÝÇ·ÀuP&ÃáW›ºÌ›¹u6£§8‘¿*ž#;[Iõ¿TˆQs2…tYô/z÷5HÇY[(TK+û:‰’ÍO¸¾n:eÎÅ­ÉÈ4+6÷‰òwôë3‰Éjº¿F¢ߌ9]Ï•o‰ŒÅ10_Xþò$-CZVˆ‹Ëjyïäå ò²‰eµL‰9F—âÜ#!3«•¡YVZ×——ÛNèŒ0e*ÂìÂÎá÷{ ¼æTã¡ÛUZjàðÊ’¿T~©ØÝT ÀþÅ?œV + a\`õû²R÷bà÷Ä£T…¨àØ‹- ®º2*@¡"Øz8³'åJÖã?:²!ÑE§BëÅýdÂd%Ï6¦DƒÔ,3<óQ.,ÄŒY‰e%ëûÝw– Ña©È»BÈÈ躠¬ç§s…(*%TkëDÞt½m˜P¢ïv³„©Ð6+ðO£\i·13sFmºgƒ$ÂH¤.÷ÕWH_èV¿ï_B£¸ò%&Ž3Ú,©¦7¡S4¢6öD.ª¢¨JBÁȾÁõàÔï3¸3[£X†0ùÍ¢…7hÎ+v í.þþsÁYÞvEOYÈ—ÍfUìaqûºÝ·x¨ÖÐÎußO‡œ€0¶‡xÏlàU*ô«?zG!iCÑwlè‚-ΜKÜJ2¾)t} 0®qŒæEˆÅUSˆ—d6€.§D)LˆÐ\âÇüClÔÞðrÛˆÿð¾Û·t¹º#÷çfŠ«ÖMsPÒ¾à·ÍêëÇíí§GÇ'oªêCµqª)ü‹¬%¤ä÷n×¡è´ ×poêx› íp³ÚYzmm5~±¿¿Q_(–E§VeR.!rr“tµ™ btFxVÚý±~Ÿ¼‘±­¦rT‰ªnAݧ»Ç'/Uý K! F€Óa00œ))ƩɋÂÞ`|­tx­Ì—.βJü?£ˆÒÆ(¶}•PQkâE¢9â@3k*RM^‘iÂÞ$g3ÑHü“ý㓪Sf¢š—Æõe¡åéþ 6ušc"•.l"`S0‰^u¥ë`vãçÈãg@Pü¦*QÇÇO¶«™«~DËu% ¾ÁäÁXÈíÌî:‰ãù1I‡°›LõÝS:ˆ7äxÎíÙ¡í_FGbw¦INè[\og1†‡±0ªAë×]Ñ\¥&ì•J«³ÚVËÔàVïØ é÷©ƒÌ!¾­zŒyí&^‡²°OÅ]ê9ݾuáûï6Ë™íâÑjä Ë‚¸?—zý>ƒ«‰·G¢³º!»†ð,ä#EAæï”;«rí—ð¸ò©ž>8 ¦ÏãàÝ$`éJF ¨ŸÓ)Çar2—Ã.È%AŸn)S“›žìÁ’„ÌD­¡°)x6ÑtýÈj1€¹ÏÒÀ¨}]è€0Ñ%ò’cä"’·ˆ%'6‘ÿ 1«±"aªMöe=G£¬vÞë_׊ ULáKÏÏšÙChX¡ÊJ94tѰ„•Ø|tJ9N2° ÆhµT#Ä2ÊVäV—3êÆpr†©4Å œùÛîõàÔŽ•×P–L :Zsc$ë²Û0€Â-1íà³@t¾é¬J´žsˆ~¢!Ÿq^)b3SŒ±©!4gP9³¤öÁg™©BªMÖLSž¦$ñYST¤}´÷UW$“Љ\PÂù’?„±6KFFv)æ°ø‚|K–yKÞˆ¢zÕù°R_í|ª‹ GâJT;+««ohɬà]ÒÁQ¨ýaœ×žŒ®iQÑ"×V«:ö@ž ÐàMr]ZvHT¾¡,7:»B eú­2iÙˆLFX%§¨.Xò««M$k±2ŽøÖÖgŒ&³ç«³Ñè}g•M¹r§³&à¿27ør䆎>» ”¶Þ½.Œ¢ij}fáãû šE»!–d…}-NXé]£,תÓ]ØÖ…$KŽ ãÌ®~›bÇM `«øè½}ïU²¬38/ Mº¦Ñ$b??þ‹ÀÝv[µÏþÓйQÈ‹øo,ð£=û̃n’/ŒüdŸ §‡Ð >JË¿B=èTÄýOºtë×öÁ“'âø¿Ï쉓­Ç{;­0Ø%qæÖ§ü ÍÝéÇk÷Yù˜ÂÉÈ;‡>7—1÷w7h./ ]8¼ÂŒÕZ¨¢Ù«7›«±.ˆåcƒt-¯‹Ö‡`ØwÃ%èìJ=ðêòz§\ƒA¸›Áø4GK÷zíM}­–€sr=$ˆÏ­tò lóÀ­«ªnû»„8ZË\6±;-ìò?þhíKÆ+aÏ­”¬†‡‡‡ÛM½ÐÞ€ž²4¢{Å=Y'…\–¥üGQŒ»?ˆ µÝ„aÈlœ©2€,gÂì|Å;¢,: .Í1Þ6°º>€šÜ^ÌŸ€%¤˜³òd{îoc÷ìšÒ)aR6ªì ÐG,¬±šä7zr¢œ?ïqéÇú›„DHz{èBò_fqÿȱK:‘pN©À³Ï1ËŠÆÚá+LLct•LWÍÍV©F}ÿ!w|!£î”âJL4È èÙ%{á¨ø2ÓË©^:ާ¼éšƒu+ÿZ| m^°t‰0vŠ‚ý¯ÃËX/w÷ﯡëœ~bµÿûžbÄí‰rÖËövh{ëdK fRÄÚÞÛÃQ‚Áumt‘;%§Ä[å'£ûà,“Øbs¬TÃÁEch ÓƒÙí÷ªÎ Æþ‘ðÿaàŒ{~C =<ÙIs¸½r•Õ>Ø?>ŠÖ7 G…3ËÂÞS¼{™*«çË\e]‰;Æà!aÐìžëñ8H@™Øfàä½e(ŠÒNKò5q]Pˆ• R²W÷. ÆPD’Iê†rUüË܉Œº÷DüÅi<¬–2°5]y‚€3"PHj•Cg ×01Q ˜Œ»!Ì3O|o+ã…±6þ,Ëã2ºñÁ˜­Ã£ƒ§G[Ï-èâ+<>÷}»çôäèƒ×oÄfé]¥—ÿ-‹þ;v>Ÿêæ„“ŒP¾B¡<ã4G“Ü)šehq%v¬/}Ú(iÜfÅ‘%©½àØ4@<–™qH«åŒ$1@,|r´³/¬—G?m€d\’ç6^n fؘS†K5Z%éM9y6"Q£PI!=r]ìµâ-=‹rîÖÃÈu9 Âñ KC7qW@—ØBdo÷ññfÿÍz«.ù/– ò9°eiu/Y¡)óÏ•ü2²<ßBÕ0MrH.c¥ù…&œ’‰ _}yqÉÔ’H똡ˆïÅÄfŒš½@¼[Ín%kŒùM½W«Ã²tÑ-#BâNZ“+“•–!C-h§G®Ÿ_ä€de-xèú” X_±TÁ"HC© !ý['X`hêjûÒÖ£ºÊg:vÌà—…¦‘q6Q[d™>Ûœ¿Oe\Ë=eŽ=—ïic:$48ÀË¿haMQE×™îôhØt‘š?fnY8ºÉ‰÷”gÜÉõ†Æa¼¬™&KÑ«››ƒùï2›àÇÚ o´1eià°‡µŠ0ß½¢ó‘klõßÕ‰gt©¢Fqöeþêë¿Á(Õ´èœ5r±-þÜÀ,p`äûÂ(ÈB1› mb¢Òç5(l6dY2 ¡°MÃüKX²DÌÜ_­ß¬˜%6’³æKTOÐüðé€ImºYŒRK¸ŸÉr(¹¿Ÿ¶Û±“ í-¥èiФèa K‰ ˜RnlP#-¶N2aHŠgv©l¦>¨ Oü6öCÇ"%§;ð<ÿcµZ30ü9 6ã}Ȳ&L–x$ƒH“ÚÑ-¤å’ÕyBT®-Û6†6ƒ,é‚›å(Ø„xÈc×óàC4±ë Ïÿ”=ˆ¬RŒ±7 @¢#ô&X‘›%‹-Éa¢,èïöö|&ä²àÊêÚý}ûÝ÷ö)Ðï³äo#ƈ[ŠqU×üªK­A19ßÛÛ뛕ííO)æ²½3SFb‘Ñó&]">¼çûxâ þüBÛ¨W)Ùë…>Îsb[»K 4QìÞßz¾ÓØÛ=F]È_Ðn]Ðëõð©Œ:ŸM;~b3¼iÚ³cC1‹rU#Ó ÞSF,9Hïc×7õþ4ØD¬g¸¹*þe ‡Qx¥¸–ÁÒºƒ¡)7›¨†UÐNÄëä>ØLu" ¹ÖKZÆ­d¼×‘ÂÄ}*ešÓçYÕdzµU’ý2™ÄzÉ4}N€w1§DÔ‘h ÖÓqƒ€!©žæÚâ'KIªx³˜Ù!º¨À)‰RŃ|99Hvf­B›MUÂ_±LwqSo¨Ä´=•Ñ›tO°#V¾¤ºR6CàLÆ×äAÃl­œÛ )õ<ø­|ã9ñócä$ËE¢‰°v¿;î#"v»ÇciSˆãwîPPPtÃ$|d‡Îˆ5~œl )š%ñAK5RÍ1ÉïbN6X9äJËå²AÖ¥«‰~/ Õ(3¾îtZo¢ß]ÂñèÿÔü‰È"º]]DÿŽGîÙµ~.ƪv˱ßð‹©~¤ùœ$¦B$ÇnñB)³•²ž{ËÁ?›Ë­þsCÿü•­kí¾kþ¤ß̓֗ ´þÏ>`pAK´°`ŒXð{:id݈|Udø¤ŒBÄ63ž“âGà±^ÃHó}4׳Ïí ¬” ‘åÜ÷ÑÖJBŽ«‘94â Úó5–ÚhyQÂQ$¸ÿýJô@þ Àƒ¡=ê~±='ľ–o¨b`8ÉhåÑGÇ»÷äWÇBPà†ci,èÈA{wÛ}%§éfFljà–‚q÷Ã`_*÷ Ž-Íø)…=¶ü` !IrÜ@¿gx ú‚‘µr!Áyïv ìÚ†” À@ZÍïšLà€wax€á;?5wò]îvó³éL\¶“¹Cj|/œÜr@ä,÷>T8ƒ‚e.ƒÌ-‚¢6ÅÂä®-ȾAU)K.d´wÍbØÐÜ·Å'»ìâÔ=³(‘££r¯?z²xo3ï‡]*UÎ2 ˆLHP®&×¶°\¼"RŸé¶¨¬Q›ç"‹¯Ü+¸ü”x‘ k–§Y(XN˜æ¬ÚÓÔMVÍ¥ýE@r–jyš¯Ô䃤bþ³‹âÀÇíry=vFÈ"Ö•q¥hœB»d: èlÜï7Î /#dS¨ÒtÙÓòxëç¤ÑMÊ®†!#žS«%HÔ(ØÑ@ÏUÈN®[¨–ív-*jaÉùô²Ìd6»Ñf8ܬVÚ‡‡ÿ¡Ù©–">ïÚ¢Ñjæt©LCªŠŒQÖ‹âÜGV< *{Û90É®JCÖfP°³UžøSi¾û'ÿ'·ÏŒÈÿ+HJ¬ÌŒñb|ù>ÄôsÞôjdÈâoŽ"7Õ„ÇV¦Hž*(ï÷M%Æ?6sŠÇ\È~þÖ˜ö)ˆÐçÝ®Xk~×\© ç¼ˆÕæ ê5=XÈЧD4Qò%’B`Y4hd)Š ÙŒxðENåw"p®‰:BèiuW$12éÂfD$ó–Ãý$Wà»rõ©²a®¼úÉKhÝAx+auáתòùÖþî“ã ó$ßB¬Ê¼Ì`•±›Éwá*o=\erÂ3pœª|-Á+ãý­ä¤4 ÞÍ)<%p2KlJù‚òì¾0ñL"ŒóÑÁ¯—ìeÌÈ­êL³Ö#»ö9üLÑ{“ÿµÑÀÌ[<ˆ¬p¾·K34?¸ïŸF!3bü&úõ›À…»ˆ¿vqÄß ´Lâ¢i›Eç2ùU"pb;ù&iÎËQð¤ƒE)IÅÀöÜ3lŸÏi¦©]¨%CKÔ×aqšé›¤MCã´¢Ò»$Š!ÞójãǪ"S¯àlSÞÊ4ôL¸áQ Åx®få:V›¤þ ÒV¬£Bõ£qL4O‰7U“¥[+Ò•e—Ž-uB]–QC8ŽÔë‘cWf¬hû…= üÞ5F³ŒÅHþ Çß^p=‡nÿVÁ Ø×*nÿ÷ù‹“ÝÛ¨LéO½Ü4ÊÝÉy·.çÓœ‹Ö_•̧;\ÉEi~ÍIþ"Ì"wæÛ¯áx›½­Âh©u'Qº›¶¯ŽÅçäÖŽµ…4-±©:wôí3c£)ÿ:‰Zrƒæ ëøzkd.‰ù‡Ö?ƒäeœW£nĪÑrßR'œRã8g šy6MP¬$Ÿ)©(kŸA¶öNϽë%õµò£ýç;Û»'·À‡P&ÿáW›ºÌ¿¹u~£§8‘¿*¶#;[Iõ¿TˆQs²…tYÔ.z÷5HÐY[(TK+û:‰’ÍO¸¾n:eÎÅ­IÍ4+6÷‰òwôë3ÉËjº¿F¢ߌ9]Ï’“o‰ŒÅ10_Fþò$-CBVˆËÇjyï¤ã Ò±‰eµLÉ8F—âÜãsJÅ}wèߊLŒ€¾VN³·{xp Ádr|±)ßßq’[ç$rz3Q÷«b(ÔÑJ¢ç¥š“q0¢eQ3õæk}ÓÛ%䥤^N¢T󦯙Espkòn.M2æ;VöŽ>}&I—§úë#JæÆËìt–„{+dÊĺ|éöK“¬ Ù–»—ly9ïäÚ rm„W™L™Ö >&Oøœò¬OÆ·!Ф¯•“Ü’íA®Íì´;¸³‹ý<\CMp6U,ä e{¶€=¸›×ƒ|+׃/m×Z$ÜflœP.)wtåš›P}Õtɘ‡[qói”9ëñÒwôê3I¹r²¿B"Û‚ÙýÎ’to‡lÅp/_Öýâ$,CØ=È2É?¸3ÅŸJÜ5ÐKá”)ðš¤(Æ(>»ÈûèÁí ½|­ì…&óуÛ|aÒrEßG6£Rwìäóˆ¿4ÉyøüUqÕÝÔÖ~ô C 6ë&‚0¢^®(Ì/¿a8¹™B½Äª»S‰Ä󲯜nÅæãvã_d;zö9Åcœð¯’ˆ%¶e^ïsÅä[ k <œ *Y—',c/2Äe\æ;yY![„a)¡Y©K™w ›¸oà aÇüÞ¸ïèÐÿ˜>³òç×+tDµ‡0sË+ª~OÔ pìŠ;h ¯Þ;±ž¿Ø;ÙŰö/övÔ.^X¯U¼[ §xéöûc—ø@b4:ñ_L|Yq „qz-—CU"UÇ{ïŽ|³,‹÷öÈEÒ*ÁÚžï5œÁ0¼Ò·•Bo ÌçŒqw)ŽX£ƒ‰Æºéªþpê„@1õ(ËC“³wÎ0gƒö}í]ïe•|‹ù¾ÌZ/#ö­n`n²È]¶«JÃÔµÛÿM›køé6D§Ôè]ƒ”âvñWãe¿ž˜Ä¨F°…Yá/1u ob‰B`Ò™¤ò#NàîN%L:9VG ÂYæúþ9‡o+Ç*cMbL©¬1L²ãK¸‚²scª`¹CH ݤAÜ«ù›o¤?sÎРL<ÓyÊ'úv€cºt@#—(óÆS¶’.ðÎPÑ5[¬çŠBCƒ „yDZ~h$©«Ä¤˜Ë}2LrÇ30Mgª]¡4Ñl—£>ço`JY«’Íf ã{ y"qвœmnä¶Ñß"¿íœâœõ禔۹Â\,QhJ×9ŸX¿’÷{V&€›ó<˜Mç„ÅÛ2V£ü"ß1¹"§÷%H²„ªXŽh RÌ6ëf}„﫚;{¹QT‹æû T]Ћi.íÍÃæ ­h·Õ¹- ÿt ó¶Ï°O³+MÚœQ­îÈP´ q˜²ì¡òʳtuz'¨ÇDö ¹Q^VÍ]›]3¤²þ„˜¡š hj´¹u$à?‹«š|Ä6@Äš›ªFFKG[û{»ã5b€³ ˜p&M8sžW¦œgSØRÐÍfˆ>FPo¶òÇp» ³E·¸à6¥el ,ù)'¢ Mš)æèAäJ7‰&{ñ6ó"˜fí4Ž<Ã]@A¨ FpՄ܃岑ÔóÍÊF Ôfïø¿Ïo…GÚ@|ãUºçicÒ¬6_¯¬®½©˜/,»ß÷/­±<ØÅãyµrÙo蟘¼ÿ ÓÚA¿ƒªRµ)ˆËSArZ¨™ †v3~OÛ@"~ñó­öÁñ+k{çpïà¿ÏwöO¬“­£§;'õT¨âÕl}ùc}Y§»a ¯6¾{‹.|ÛÇÏô $ É£,³ÿn<4`j…I\©™Ó,K°ŽÅ#V]2ÎÕJì,U-»'»•\ ³).ŠƒÍ*Md¶`YáCJN¨Ä­ÀÅùoÈBM¨_¹{F޳Ìfþ”Hü¦ƒ+ðyæØ×9~T@Ñ9™}2kŸ¦'BÆ„À®)HÔ$æ©\Ï”ªbv*B‚Ò"'õŒ½sG¦ŒÅƒÊÏ[G»[÷viÛEcòJéZpЧËÿ,ÒÍ`úi`¤(yY´,8C{DçdjÔ?0»N7ô1«†Ì§I}£€ï|döBÇ J«‹Ë ·{MáOÿ‹âÂ~ÍØÈ)v¸ÊÛ»G¯×áŸ7ëeøÉ®Àï¾+³ŠŠ’x:C8apO5.„³®M5Y` Ô!9|³¾þþn­¿Á3ÔÃIÝã øjøƒÕ·¨úÖt½JŽMWu¡å¾-#ð#.eâ‘NŽKDøª²¦íUDâÔ Ìzôˆ#æ¯nvÊ2µ,T”)e«Ak½%ZçÕ·¢S©¬vÊI8WëËY€°°(€–´¼ž©“ÕpZjµZUù+ »`d²Êzs9 g¬™ý›iDàð¥NÂt:².8[ŒT¾‚èT,ʽþY×k^À7֦˒ôغ÷+®×í{N`IÝo©\J\}¤+nŠ+”Ë’g)%È,2ŸÏ0ƒÄöÞ“ö¾õL¬‚(óC¤(imþ¢8vB•¢$£Ëû¾¿ rèÁD–]Lн>G¹³&ïl£KõcxyM}ï:çÝ.Íüg°¶±ƒ[1´±ƒ¯õ®zëø.¨·Ž3o¥·PûïîîŸoýþ™¦6Y¿ª è­ãØ­óÖq)kæ1ý·.ºß¿5wG ëkåÛ{{·äT$!e‡Šæw›Q©;Nqû¢õ$çáóWÅ>Tw+é!”ŠkÞÑ õ2CDG/¿a6s3…z‰Uw'Q¶²¯œnÅæãöbCаø $kÜѳÏZMøWIÄÛ2¯÷™A¡o‰¬%ð° $ô—'qY¡U/¡Õ2߉ÉÓÄ„6.²XDè¡J°•Ï':ã5áx0¼§I†õµ² ƒÇÿÙ~ñüð6œ&R¶Ó$¿ÛŒJݱšÛwšÔ“œ‡Ï_×QÝ­¤‡P*F¬y&êe:MF/¿Ñ9s3…z‰Uw'Q¶²¯œnÅæãöœ& hX|’5îèÙçršTþU±Ä¶Ìë}¦Óä-‘µ8M~y—å4©z‘pšTË|':Oã8i"\„e1ÇÉ¡J°¹8 ¤‘çÕþß|ƒšj;`kŒè>õ@%™Ëm²¨^e(ªz"7°éI6,lßÑëûCÇC;zã~EY„¸¼pȰÑààÂáÚ8wß;^Óà(‰±~óÞîoVb…6Äp³òáp«ýÓÖÓ†4}1­luEe‹R1jð­ç'_z~Êð'Y ¤†¼çûïÐå¹pæ19J^:âÜ›B¼$&#ì~_ù¡ |­ð¤Qž?fÎÀú!S-÷,09ü“à:uYÉþðÝ9q=h"î TÓXZÐûûUêà®Æo†3[j‚ÈE[’?)ÈüØ´sJ°ï4`Ó¸oB;t»ÅxCE&á º!ÞŒ<¼á—i¼I¾ÿ£žŸÛF›p̉<5H£Ã<„Á·Ö0+ø0E½ÝÀ需'²’% 6Ze;›º@’ˆèÊ^ïkÁ³DÙ÷)Ð+IŒÀRè‘Þ">¤fÏ@‡"rfaÃõ`þŠH ´dÁ Å,z3²bBÊ!.±"ù¬)Qì«Á­[§4É)»ez“C3fb–=ê^98uFV0tº›†¥k=.±à“ƒ šµÚîÕë‡ïß,×fëõ)œÍñÉìßC›~Ù5t–Ù£kÇZ<ìQÕïᛨŸ \ìôŸG‘aÀÀgýE.a†B* ÏQ¡lR >ïG>žúáE-¾äz¿È3/E¨ü(Ê/¼wžéE›Æ—êzÙ0Î~˜Kr{€øžèiªëyÊ åöZ43:¾&»_uÃT73«ÈâsxÀ²b…¤×œšxÉ^=ɢƩtQ<åD¶µû ðìQ˜בÞb‰Ør ÞÂÈ©.€bÁS7¼t{pîÃèu8øÙ=-Ý0\‹jp1júU m‚_­GàW]‚A*à†±"ø»Ž#„Öû×u"’ØÜî}¢Ä·ï4%œØ*¸<ñtÿ…Žb÷ÜC‡v8¯í´O0ËŽ8‡Âs óÕÆ¦èу*yX«©™Á#`÷=÷1 F N0Ĉx¼5Á¡zqI…”¹¿Vã©yô€œ©>5÷×>Å=© H%ÏïžÈª¸+ºÜ’ü6íè,7Έ¸xráJ¯JñL`ŸœÓ±Û'*‡3ÃsÓèôJ{»ñàŒ®ŒÄJÐ=álõ½b›þx$tÈêMUg³ZY:~¶³·W•¥ÐZÔJÏÕZ²hµ(R쀾·oñI¿l–ûžhåDé˜ÒêÃ/ÇϬŸwŽŽwöïÁ:šË?ýa(ö¬§{­ãOhß@aÌ®zÅêb.SèîÏEæ#wì3Ü„¹ ÄZä¡\¼CUkú¹ž¯¿Ôdve“^)-Í¢x~ÜØ>8ÃaÝ9Š2öò< e:縷8MD¬$P‹€R`Šì¾ÝÔY9c9^ÊQ ZÙ±ØKF«ß ½ROí‰Nd«SNz •L éú [ô>íÝE"I?p0LT .@<ɧAÀsˆdëi» ¤¯ß馮C@rEzU ÎȱaÿS„ õÔï·öö>ío=ß9ÎŒdU§rªMõÞöÜàEV[ Çgg$ üwD”â` Ä’>ÄÚHn·xØ7”]_ão ¢¦ÜEŸöýSlTGƒõ’¨¶)é̪ÇTÅÔ«uê –g8ÎFsóÛØá]RµiW5ßÃm),Xwê’sÕu€<d ˆ%ùM@}Ñûã šƒ&¶ÛDj·k’Êù¿Pƒ±wÔ zï…Qn›KloBßc7~$†Þê_›~‰2»] e2*ŠQ—Œ§›•d9pxÓ"ÅС#-ÄH’ÆyÀUס¯ø1ì— ¿§öThôôùÖÓݶÕ~Îãп6ŽÜ‹=gˆdG:!Jh°1±ˆ5°ÏݸÛ]¹½°ºƒͪQ;Ußor ÇF'\BfU)d2ä1«{>³Qq$œ¸×Nkùø(ÄëøCd5¹iTœt©ØBh":Õf-åžÒ—tGÈ›åÖ8µN]/Q†~â¼^T—œª¢¼FÌ9kÇöñÞ8ÄYcÒdãLjecAL®ÌžVY?mRAdÕ˜œd 5>´Ì–Š7ÊB9ª,ʰ( BàFιsµù(ýÚÉRë„ÑYj.wjå·ÈTÖP±ŒƒýãSt2â…ˆ¢¶|DBTv(ÆKl¨ßvL—Ž”/6É‚ŠäÂÊ­#‡q|±úÃ7k¥Òòò²xÉÁ×µ> CJ¾D§p='v×1¸NP'‰QÕ‘?÷Æ]¨)#ÿ‘¤¥@#DilätýsÏýØ4Â8¹p¤`„ bp8<³Ý>Ëÿ²Vª+ä‘`ÜÅ gtxบggŽ´á èƒp DAAרQ‚Ò£xªL—ŽmR¦ ˜cË»FlW%(`êß ûçö¨¼‘Â4„ØG)Ë@—÷ (ÐM|]×þ˜Ààè/mÖrŒE Ÿ^ã©&¸Bø ‹gŸm‚5lá1Õ'§ãó†ìÚ¿Ë7ýÑyIGj¢­€´jA+FŒø>toå¤Â.ƒ€ÄwAœÞ’ž]&m˜Ø®ØãM¯ó F›%kÇ^1K%ó0ø»–øã|*‹ÌqõÉLüŽgÿÕyö¬,úŽ#ßqä;Ž|Ç‘ÿopdCÅMËzIErÎPý¼B×Ö×J ¯bª3~»|E¡p<èŽÜaX*©…‘ê2 7»dý8nV+íÃCÿÚ£JÏYYïÚ{´¢B_ªR©x·8jªŠ»CÖ‹ÂcrÓ t<ÍL˜ßÇDzҠ IkÆŸrô!Ø]‡½Ðæ­4sm©§£A3š T¶œþéEF-Ù@/U]k{ä— ÿ¥;O 6ÎÔèVV&pþŽ:N Zz®†Áìc•oR4{TfZ:ŒÛ¦XÙ(çHÊIàøÐ€\«Ê ùK+µOúú¢Æ{¾hëÛ%º¤ÅK÷ÌÅk/¼çh·›%Ö©}À? ÒÀ}ʬMüÅ%†¡O¡•'@RùöA}E€¬û$u˜þ%4*‡cO—µ°6ªiÂxD ؉£¢¿®èâ†âÜÁÈv@/GnªK6¬äãÕ5@ qÀ tç 3ŠAÖ‰tõdëéÏ[GKè×ojwÿà0ꓵ½ódëÅÞ‰ênN>?húXfØ·C á'—UÆ6í9ˆ´À_Ií›®º$£á V9#¤7‰)lkÊÅËÈÕ ìªâ™µ~­´z¢õ«X¾×êUE<˜-†=Ôã4†²ù6èõm©rô\?Y.Í<°8R ËÞdH¬6Ÿf@‘9¦Ò"ìÕ­Ÿw¶NÄÎóCÅ×ñɉJÈ»ÄñºöxSpDcIÅÏ|DxD³ÈuàÂtÅÔ½°½sá`±ÑØ#û ÔãLjqS#ˆÏ8?”%#ú±G2HttÎî†ýku‰¢¾@ìîùŽ_q–¬–Uqd¤/¤Ó×ëíùtûºž…;~3:vªè£ODh†.-à %9Ylxïe„7:2·PWšÊ4΀%Ë×2üê pÒ•™õÎ}Ò…±ë9j„¸€Û…¡Ëßørý/òÄ3*>7Ǧ«[QÍ›˜•–¦gv¸Ð±¼‹©W:Ö¾<]ªÖiIË3-ãá7ÆI¤” *YÀpwX¿}€mfØAàžÓÕ`‰Ì%v=8ݳÎÑ Ujœ¥Õœ7Ðd‚Ä/æ{™%šèJÑ1¥µp3ŸîÞÈÓˈÍZÖ#+S~œ¥û5e¥G“&C؇þñQÉ ×À¿ ÿgÑE´„*NítÏ‘OÑ]tÀôt¿ofÁ`Å]b‹‹ë!àAϨu\—àÂ÷{|¤éú# Û¿–:‰&ÅÅÛÅ3 p*}ïÚOK0À¼mÌAkÈîÃ#‹VÎäŒ&?’Äš0P|Îõ&Oò§Î‡•újç“Xÿ¦’ıԦjV¯o–Õ/Xºš®xÛÊ@t+ˆv”¢°D9q¢w5¹È›MÞ©1¯³¦E”, /)Qx!ì’6HÆqÏDìÜßSŽ¡à ,ÐU)Š÷(9ˆùâ¹'5kc˜1Ö,HÓSµÊqê³dŽrœÁÇøúÕPÂÈâslüZ+ÅTÿH„æ_ÃXÐ=÷Ì U5Œ—ø!©µ1õX!ÕÁóù Îÿ&Ĩ›šŠö È‚dbE6ÍH^\Ù˜©‰¬œ )àÁ%},_§s¸6óÍhø²¿™†n7ã©tW(™.u™"Qv3UÌ(QÍ~-AW¥_L• 933 )¬¶xe«´µ¡ÌX@µwÛʨ[uÒµ¥UêÇFz9¬úP ©e’Ý-(ýƒãq o!¿·UwŠ§Ì ­6Πoª,Èfô͸ç¶$R ¨ŽFƒ–Y̰þ8úÀa½'Zþا@XÄ<8~ šÀõä˜b•¦èœ6bðè»wÉFŸì¾z¾³N–§h8ƒêNÅ…Gß­¬­ðBàñ–Ì3µ x2{Èjc@PØÄÁ Ôpä¼§ˆí“³{×xÆ8—VžõľûNÁz°RmN3~nN>Nàö ±ûk¢1°É Ÿ…ÀöƒŒ24jQOXQ ÛîȽz¨¾<Â/ìÏÐޝð‡œÝ—È¿ ̆a}rtÞ—š3@‘ƒcG;/¨fu¼é( µŠ:íô' <ÍM¦ù„+ ~ï³@F–Ćú dèôûÚúÝ%=7i4$"MÔ? ÝHMžá¯Ä…•gÁK‰É¬TNp(&ךƦ¡ô9[Éñhô\rf<6Àä€\¢všôÑdÙï¹î;ØR£Ñsò˜±Ç¡ßpɹf¨ß c{{oÏÚyuxptRMoR“0á$× èæœPc¡dúX0G¥-Ȫõñ 0 •.Ûf§5ÙÚ¶“•mÏŸYÛÿżF¸ÌfY »Ð$)Ø…í¾OFÛgX¬i`ž#Êr6ʼÙA˜ ByMø5òß¡;EN·7Jt·ÖľÜÏ/^q“89øòþ¾Œ@ÈBM!<æ ²RðÓ±¼áp»4& %@­œYòdïX ËWŸ$N¾çATêÓª™F´7¸íåGÛŽ_LÈfe"£Ií ‘¤#ÈÖëûèÑMé.?÷›W´%g±EU¸|qîxfåkH,¡i@BÇî‘ëÂÈéû],™äÈUFc­gSd.èùAïçáѭÿŒ4Q¦|žÿ ëÀ£¤W ÅÀ*†´ãPwöÏô• †F{/¥äu^ÏG’›’6*/SÖ«Úa-ÇÑZ kÙ }Jð›g¢ðÿÛÅ7™è'Ѿw¯ùCÐÝ&Ù-+?ty\ }¿©Ð4(ÌŠS¢|î"Q“›fçýƒå燺£†Ý9Ýß{N×H •ßø ¥} Uø+)?é)©Mî¡Ñ3Ȇô˜RÌ)ÕRÇqÏFÉçÀí‘ûþ¬5×ò%!ö•LòWMÜB;ô3n?3–²¡̆’1GÆÆÕ?,`TÏw¤Ã™¡HIjh™¢q{¤¹¬¼„Um6ó%pSþž èyœmò‹Ÿz æ4Nw×Ñ]¥ƒîC¤äK))þ/Ås±ðÝ>‡n‰^ÅþÖSô2G¶§W<AÕšâõj1"W±sÄÔëV,Pÿ]$Û¯GÄDAé{œ8ü²º¢¿­N¿µsÅ«HH"áFJ[‘¨¥ë+‘KËXSŠ=‘šÌ-üÜû%gn@4 ”O¹æÌ4ã;jwžÓ±×£+ööysh®“Í÷¤×J’Ãg\¢%êaã'ø^K¬×$ñºÚ€V­lX Ÿcß-Ÿ½åƹ7ÆB'ðû Pêü›PpdªE<¼‘€Ù'´¸úî‘õèrÒáÞä0Ë4Õ‡6zÁ£ É“„bIx²J*E§‘‹zç¢%ÎV¿kгïºEwmÞüHu‰Â2ÆëMOl;§®­LOqýùþᜣ8»Á(\â•×è).Ö†ÒxÓA˜ó´Ý6¤wªWW´\mwɝЦµ2p¨i‰ ãDü Û³/œkÍç¾k®jlŸ¢µ<\Ð¥ ¬yðBóÍï‹äºyš4?Ó y³,Š'öéÈføØÁ»3à`(TqâÂB¶µhüy.ê×ðœñex~öí·òË÷+êËCù…g.&γ>²š§ Ï oò¥e`1ËDð8LŽtfÕ¶-8 L]0ßi ­rzp>Eñ­©æÄÛ!mù§k2SÐx­ï/ì,5ølÔÝèÈU§üô\ý=Ã?~úì>~.^í¢|×\i)Œ^]i®ÖÅêjsÉÝá!¹[ŠÇý±óÔñ²DóÉsùÛ¤¹ü¿áÙ¦šˆÝ¼%C¾ŸÙtF^§=üí-YW/½ŽhÓ:j[Ò1ž/«ßñzµñí›fƋW÷ß°]ö¢€—ŹO‡.ÔfÀ½èþPÀ|i눇2P̤¦’§³JáÓ4•å?I¥ö™;ÐøR=L>Ñ™¶9}mñ°ùýçî #œì€.$yàZ·Ÿ¼YVÄ/gZb@ŠIà4÷]j6%ë0)»IãüñgÎ’¶¡.<5xÎeà&¨e~2Ž€SÀ¿¤¬ðg ééöÁñ“ÖjÝžG&õŒ»Äy(Éýs,qè/¾d÷’ÙcO>Çoüоo&)> êÕ(BxhÎLXÒ]+œ¶›l R¹â àßæÚø’ôüëþôH÷9öìµÁÕ˜:x¹)¥­Ã¾öŒ=÷êPœf©ëßo®ñsøþð=¨à¤úb÷ÕŸ;yÐÏnѦ؇üÝDX„Ã<†aÔ³Ùiv.ì¾{MT2T^ûJ)Rõe )ŽÔm Ý7¶¥. ïy\ï ÑþsÙ¼'ʶsÑ)*•­ÚçfË ß=Ü$P„¾ÐLù£á0'„Œ(®<ƒAm2”èŒhqö2'ï–m¼ðŽdj».Y˜æ"s½ój•J‹: ÌïÀ~‡WŠÒXQ.[ìn8¦Pj¤ lBn‰nÃP[÷$m©[SšjOj6ܲ¨Î­bƒüS ´‹É6Cº3Ѿ3Ѿ3ÑþŠM´#úå³uÛ3±ï¨ÊôÙQ5cFXêÌ$âêtZÆ.cì­.‚¯ÙrbŽõ†®¨Ã3OH§¥cÖÝìõš/žÈ›Ë Žé®_ö9ö¼Cy`Æ×Éà|ü¾SžWŽûˆÝ­¤;0“3¬¤Y÷–ª”eÈå]z–o*s|¡ž•µßyƸʙÂNÊå4SÒ!ÚMq?¤çi’o˜„<í!Ÿ¦æÒòèsÒò8ÑŒ“ÌQœ .Š­!EÊÀ;KŠ˜­µñŽ Ù÷µfš®ªlM öv±M3‘æóòìœ|` ÔÌ Ò³Ag¨Ÿd&1ÿb›+&¾ß6£1»6=¯IÖšžÝÄjs¿^@ÿ•UsDÔoÛs·‹-(2•ùsF¯Ý, 3O¨r{T€Ib™À¬XìaxÍ!“Õ[s{±Ÿ\Àß䌘}H„Ù°-UzÍœû»3_ñ™ïî¸f¢Ná‘-Yð3ÛòPëþ)g¸yi‰ +>«¥'7ñ$ëÌ–,¢ÏmÉ–Ó%g9¿! Ìd¶Ý‹ßã{—¢‰ÖÓ§9žß§»x©jDÊ¡ R 9æ@q7ú£kê£ëRœ· …Jg®:ŽôB¹e¼Ð¥0 „ òȬˆ˜„]ˆ[Ƨ7Þ|®º‹ÏâE$ùn63ÿg?²ÂtO/@ÈÂ,7ܱô;–~ÇÒïXúK¿céw,ýïÂÒ/ìQT?¨¶ 9 žæ—€áy‚£v!”£¼+hÓfõý®©4XTF*°ï1 ,cНÕQùë€r_ë`Î7’8.ÙO ¡Ë\Ñh*N£-2 êÅä !ŒécŒO¢sß‹¸²}=5ÅœÇØ:@½ÐÇÀ¶QÕbPß<Ä­œ„1oÛsâf&ãïéä$ªeæu®³‡cÔj$'(«›* ŒUâøUºghü¯J1š§Øg9Iñ’ÙÉoó”ãࢠ°‰¤df!7ÞÉ+“›IáÊYwW$IKõöReo»‰ÕIó¢,•óC'«è8Oa‰AœÄÛ$r2µÆ[ÉödXC|ŽÑM,ö[´¤ß"c¯ÊT×ô‚Mã7”…rú±¦d8ÇÉ Ý!ļÝ9ù¢TˆJ·~Ù’l½wíÙym!“Žêw²gÜjµ²ÿH¸{ 8SÞ{ÇsÑesÊ-%kXCwèh ¡S­­æ²hµð+"ž‘ào 7TâU%]ÂS…aCQžkýœÙhæCË> üþ8to¡ãP >ÌäKž6öràzãÀÚKÀ . ’^lØÊ?É‚å†ÖßKj†w?€– 5(¥¼©bÜV\þL,8¦¹R¸€-°ð—ù/¹r  „ ~ô,ܼñ¸¼ð¡-]×|µÈn·=Õ•@+ÈQ‡Òùb€Ù¡Ýurâ`k('\vèYfL_6ÁõT i.JhÎbq¤ îLµÿReFáì‡Ô•¨iY¯dZC½Ë‘=2‡®Š¥*çÔ¬U˜Øùž#ã€ã‘Ò£3˜ŒÊýÁïÞsšBì°“1Rûãi÷cs¹×\®rcÊö(g¥d‹§]Ê깈‘ç/Ñ Úè6LNå±jõ(ŒRb&6«”mqkÏ:xòäxƒ?ÞÛ±>ª§Ö“×»Ûo,èO)Ö'³™ÆUë'Ú¹ȈÉR›,$.¡Köi C} ã¶G¶j¸+ê*‹«(h@ñ>Ø—þ¬¤R‡Ê– mSßíºpH5ìŠ`~)´2î*²,"K}NPâ}PAùüKhÜk7¬rŒ|¨w-ÈCÂÃPù ϸã<(Œ…b÷4ò jŽ‚<-ÂsñDêb×sA4“xÞ‚&ôµÞ¼jáÈšߥL/óÈÃ^;Ý+W{ÓÇ^GÃ9ĬzpÔ@¬B÷Pbà6ù‡ž:}š$böšïûðÁh_î@E¬xI©IÝÙN ¡Ø0Ýñ֗Âñ@*1.ùœHEeýç.†öÏBñ³KÖ;ØôC'ObüÑ–|*žé/ïþ‘½N¦^•‰ÿ¤Å²¼%;GOôé¸e/ü¡ÓÒt€ÿ£¿!N )Y¾û^,mªéÂ¶Û ÃlPú¨)ô¦FïjtÀsÑ{¾œ® {Hå³²#ì0+«à)dcBo)õ"ñÀ£(#Œ0^'? Â˜xÖ×î 1áöÖñž©€•o9ZÃ*…'{ŽÎ¼ðF šá3»ËÉ1çµL7 ÛWÛÒex É+Yc†Òö>9AXÃI‰ÈÊqbOæ"€CwÄ~Gjènß ¯É™4sä@Džù—¸ïëHdñ½Ôs(&Ä­ „S:0ÐP]e&”p­¹ú}óá24 w°S4â‘§zÔ´á®(é°{ÉôæÉ4RùJîm‹Æ{ò•dI!–;¢³]ìˆÇ€^¡Û:µŽê Ez½F¤ KÉ SªL³¾ä-7"å‚DÚ¤Óštõɯ—ö;H£N€xVîݳ˜”ŒBw ö¶ë´Ó)·hÞÒŠ3’ÐæÅ7BFº”™BqƒÅ2…Jäã$-qÒ/½&"¬Žýƒ”Ž’ •7#X:°”1NZÈâÇa(7à@Bb…Ž¾Î’”Ì ÕsX³ç`|è ÓU󨱷m½Ø·0g½Ë€)‰¨¾Uø={˜äž ¨Nƒ_7ä몚¯ëb8L9w=·gÆîj4HÖl¨\±Ì Ý×|¿qáô‡ÚY˜RUá(«XÍÈ\$yGŽ,[¡U¯&:;ÀTu™Ts<‘ñMĬy•:/Z6úûIbë¬h~l¿ËciÁ[K¯­½éÜ«u‚Î=8/EÄ@n2ÚÀç ï/×ò[ÁÝíKØä+«ÒƒšÈ lùèçêJ“ö?,`—„^Mûþ…oW#0ø«ùýýæJs­#&·ž}Û¼/šÍfÈYÊsàâ#TD|×\˦zÏæÄøHA“¦©æ*Š`†TÁA¬”¨œþÏçlv:‚°r`p­ÃÃv=â=¬gnº–qûdX¯dÆðŠ@­…©²uE­Ö£²ã!§ŠÂ_Ìîêlæ/Ï´E&Œñ”™?”vIÀ–\0Eð|¯NÕ5"^Z× †>‡%deMf‘Þ«¼VŠí")¥dÓ)n‹I(ÌìW¤FÇÓŸdzf­¹¶‚R } d•.ðàÐíž]sV,$:r•Ññ•:Ãt<¬ÿBstà£ûWåakmyϱ4äÈjÍ(“/uÊ›òˇ'Žiž8“œÞHé#e×HOfq8Š~ås¦j`%òkçªÕÌfLýFuªøÇ‰=öP©âí5÷JréfÏí?ä-–J2yÑ©GØ;¼qž±þÞî㣭£ÿZ»Ûb“ÒÏZÿç£ã݃}QØÿóGó@8Úùy—AŒœ÷.Ò°é l øÏRöÊî©^Ó?*G[ûüü±Ôí%€Q¶ÆžhÜ_«Å´@ÀhìŤŠT ¥Y3Ì]'‡w6\s…†u#\•<8­ËsúgYâÃB¦žÖTé`ÿ?p†â±Ó}j£ü×ÿF§÷ÿ}Š—°~ £‹’’Ž’ÀÇP:h1H7£ö@n½wd]¤’ „½ŠôŠÐiº˜ÞžÏTæ–¶§ àh2”Ú4¥¦é‘×*Oê‚Ó\)ÏÓ¸®Ù*@ç= œJ‰JŒ`{oOGåž!§t¡[ C=MÄhʨb¹š~j~²®>Ú·©”Gi³S­¶~}ý¸½ýôèøÍkñ¦…ZzøÛY"ûN­ÕYÛ['[­ õ+½²,o`Yº<¡oQÁÖ¯»©_^oíž¼ÔpgÐþóXêÎ×Ö›{™Oã…õú +=éáj¼_o5~±¿ƒÈ O¬^¿ÿ1õŽ™°äy°˜¬QÌó!7㤸)ãÔ¼í\@HÏ §nŸ; é!tpÜF*c‘Æë§¼ÍèèLVBŒÖ:`&Ú%Ù}¼"¸f]pКsš=„ˆë»ÁF×S¶rÒSŽ yŒ²ùB&‡I• Û;Oð¤ÿ–±Ð£ù’ÈHöz±‰1ÅxÓúµ³´¹s—ÑÖ$ñ2À·²’Gwj€¤LV‚V[C³âoô%|oË"é©!ºÃd©œõÁ)‹B™ÞB É>¦åŽLl…”l;Íì3+Ÿ¹èï1üË­ûç¢æ¬(úþ³K®)ÝmD”£€Dkº?³0 YhJ\Œœ«ßì±yfzRXŽ”»CT>ð@ÿY‘¬ |»û»'»ûÇ'[ûíq²sô\ýÈ••¸óGiAÂßÞ9níž ˆŠ~Š\†¬ò¦…lD<±w²{¸·#ööŸmílO @o²IÅÁÞj ‘Œ±U¶0&ð®ç†'ÎhPnõ¦h1îŒJÜø¥; éKþ^™Œ’“ú {HahQájbù!’Å™¹W<=eÄ…2Cåc?¸dJs‘W X‚Ú‡£­ýíƒçJ哸§x°òý#Ñk¢³,Ö­­>x î‰ÕûÖV¿ýví»•·I*› !%-ýh},§eÝi•Aüq‹ƒ9hk£ÎC :ø6þyæHÑ4Š®- ÂáÙähïŠÞ`$‚žë„Fñ0‚×ÀwÐf7Ê âkkÕ…Ì@‘ÀϰÝÖhè@76“@ù”ƒ> ¾#r/ý_ãmaMÞ+zZxäÞ™I•':ÐOâG§:«R¸ðñ©ÝëÉÄÍsªü†Š_F!ÇSóRÏPÅË8Úµø¤BcGéìq>ó.Y뻀|‹ê-Ôë Å‚©àé”;°n=Ÿ‡ŒgéN™ÞwÈ´8fTÆ$Õeiâ9âlìu-<©âQG¤ËwÊoïÓw¤ ŒwÙÓÊæSÆ_Èœ=¨Êüû•(Èøÿ­‰çž?°ezñÌ»P§lç_ÿ¨-,*ë«È½àexÃU¢‚zf¥äI°ÉøùÓGU5³¢Þ»gf~Zñlð`“°8§£M*ñ@Ž(ر-¯ö¼ŸZå9Ê,ðäàH­Æ‚àGsfDí/ªÈk’x«Ìè£*e~ 1½\½¹PoꤽZžYI2õ\Žü˾¤ßÓ¬iUö¸lípt¹SZ¬9huV7Z…Ê’dî¼úëbyC|Ú˜­þç]|*'ºtGî0¤·ùK›! íaލ+3´Ìa6·PtúnŒ´­œ¤0@¸ÜHÿ£$g*)ƒ$þf†ÅÔ9=izHóBTd —³×ç™Ä^E?_//xÉ«µØÉ¸0û\ø,ÛïsnÀ›oA!n4ÛÉý5ÍæZ }eòO9ó&lš»Ï ¥Ý=dŽpaýiz,kgï‰eáœ#‡Þ }Q«^¥Ü¾“ì'é1͵Mœ(=X6$ŽÝ[Ýž*¦€e_¯Þnc´ŸÓ*’À÷iMçH$µP'ý÷‰‹õÇO¶ÅZ§ù]¦uÎŒ6ŽèG  pÖšß5—•ݽaÅ'ɧ2a$fŒÇ<•›˜,w’öŒcZ›Æ—ŽÎ2W }1žìõÀ(kŸQæ÷HþG(æ‘gÖÇ&¯QTfŒnüÉ;5êúW·_è&LLò8ÝñÈ Ñ÷Ò¼ ê2ï…{~A™lGŒw8Ô4N›µ1 ¼R>×dÇ4(îfÌ,÷Ípe Û'èµBƒaÃÑeˆs=c_Lª¤aÀ\>c:jÀg#ç·± Ã:©î°Ðýë:¼ ?›KÁæÕÑ6gSŠ•·E¿póÌ#/VK–|1ø6š™‡Ò-(2—’ ¥,9C~¨ ¹óÿB1œFè\…1IOßEK|ŠÇĽäntC<éJ7•¶çŽi~q¦©ñ©$ +HÕ+pa=Š÷÷¤«x…RýÈôÉiQ ñÉó´@èËèŸÍ'øgÌ:˜åU»%\ö`b|ËóSŠ’˜ÝȪٰ\ËÄDôYlLâG¯ÓõÔòŸ<\]gôïéóõã£LW‡Ì#[ŒÓ·ÎnãræÔâÊŒÝ2fÊ0ù{»‰O©èi‘‰:ùwƊ㊺g.‡œhì¥,ÔÓFIízÈGñâ~ÏJbÄ×­ZÝ’á¹'ª5äž?JÞκAg8Ð yC³G×ï÷ưÈ$ÙK£EډɽzýÀ4†‰y´e:´‘—汯 Z9JìB2›Ð]‡9•Ö"ÀãÒA­v5D ö{òQëùYƒ™?-ºœ.@¿ÈÏXùHxÄyÅ¿,©{~Ì(”Ïó-Ç G×:ˆODqÈ®š]ëÙŸ77¨³¦º%]Ò`På¬)KM¬Ýh“Ïz‚ lt|Àž+PC¾%(ft—÷㥋>ü¾‚OÎmÚ7¾Üx½àÊ"D9šŒ»/ûLèÅqé»ïéZÉj²d ”¦wZ ìÑ;é½l¢ü²Ì]¼@2Žý¨bSUñι¦Àš¯âêÐ0;4ëâ Y ÃâÙŸ‡ªÄî@— q“ÀºJ†Rg0¬1 ýŒˆÄôaï3ÂÓTn–  ž[äÑûÏÍ+ æÏ0Öé/×Q£ñxhòŸ·†}ùŽìÙ?PÌÈ¥¥NE¬‰MØ$'åÞîD¶“'¼,×(ÊäR0> ¾¸__­¯ÖÈ´‰o¹³† Ë%°´(>”Å'Bòø»Oø?Ó£1ÎråXPâ]愼_>áüÄS‚Öcô4yü† ;«äðV4ÛÃóþ™Ç½Œ‰?ø9ùà—ôÔ¯fNýÌ@%X-XžÕ©—eì|RH19ˆXŸ©Ø/@þèåÓ¡/EñÔçv«âþ Âë¾~ÝD*Ù8…äù‹¾n—ìÐå©,¸Õ5ñ–ÒÀÙTSžm¥S îSã”HTæI¦[ð¥#´øÐŸ‚U{äÍB#a"/zJG‘ˆÁꇞhp&{ óe2ÅùdTÏžÚ2Œ~+•á}ÝóËxøqO›öþøÍŸk²­º€¹Z÷üºHTW¿ÆÀv‚+ ý1«_ãè3ªjÝø-)ÄQ[†ûª:¹\Œš~-ÙVèYFÑÈ&46ÕÀr[§¶‚÷£õeµ7m«`“²7ÊFš¯×î¿ù¨¿5—ñûë‡,1-ðìôY 'K¹Oðö^ª,–Hœºâm„âª"Ë“A€|‰v'鵨ýX6Ð_NÝßEwàoýº"¿Á€Ÿh`¢ɈåJ«³ÚR¯‡øå“„ü©ZR‰ZÌÆ7ßöÆèü,#n,E„R*zd–YI¡ŒI†Tòf¤Ä¶xô q »›GR&ãYcRw McùÕåL¢ŸæMbÁ(^ ¹•™„ÿ(ÿµŠåÙ‰¡g2Rk8p&ëðUaº+¹Šo6ôÖ8µà×:þÃ=/1‘/ÞwV)b -Ne¥u)k­W™åÉÇe 'ÿf{–;ËË~µ;ŸWS·Þoõ¬yÈ~3H£œ·„wF/ÀsŠýX߀)|Ë}0•ë¤êWTMQ/&äL–i&Nù‘Ps[a6 ÏâeÀÏGêU6ÍÆÍ•(wp)Ì^—«3­L ÀüÅÖ¦œ^œ¼9Võ 絬¥¬±²…L&¶pǾîØ×ûú»°¯…3.ÖªL#à‹´„_çê· Û Ý)Ñ^ðAlÇ+”ðó¿.' M‘I ÒГ5‹¬‰Çä QävyØË >.Uö3øhÆî˜ó="£#ñ¢´a0L)dòšá˜4W@àü¤žØ‚ºÕ˜ÔG£GÆAÛÔH[œ€««tQÙ"çûK2RŒ´ÌÑrþ¨<ÿi{÷¨ DU!Þ1Ùgg4–ð;wØ×ú€5lA]!>SþÊÀŒpO1ôc¦„´˜Ç^ Ù~›”|¼sÅú'u­ôº.Þt:µr:Õž—߯P•k;qÚN à‰Ì2¸“²¢ÊÚ¿$}Ž¡ö ÅK•yåeDÏ5Ê…½ž~Z®RГ˜ð†=Ì”„¢å)–Wõõ‘¨Vr¦›éQÊþ.SPJàe»ŽU¤©|F”¦t¿ ì6´"“éfóŠˆ0yb¹‚‚9p§h´é¡é>>9Ú=D4Ÿ·Ÿ,%‹ÿP®€K…5k0Ýzß\Œ,ybȯ’s°YEbR¯î¯•ñ\³‘éoYËpÙœrÜî`8WÕ®™{ýçîXŠ—Pî,4!íõ‡#Cÿ°¾14ŒÍõÏSŽX‘ n3Uc“MBÙË_îâá˯wñðïâá§âá=÷õƒ‡‘}uî͈@€0C(÷›%‹›'][žäÌfnÈx3T¼3!d|f0ùªÏ–ú|û¿ÏNw˜INæ‘3ŒÒ+.ªÓdÈ¿ ZÈ:Iv™x` IA‚—˜§‰hL™¾9ÈVô ¤Lx'ÞM<§æUÆ fåÀ×µS†tBumŽ2>N[ TŒ~8)Ú˜¼­û®™é›4…ê.IS±¥[PX½zc÷ù!lÕõr½:­¼(Úg¿3SþC÷q3Ï鯥œâ”—“êHx’ﻼ«Î'²æÑ¨""´ƒ˜ˆ.†Ý¿¶¤nhðŒ¬ó\þ+2/b9”3›3ãˈç€`¹£™ÉÊÿ.˜ í¼hhô3†‘l%ˤ¡³±J€%1Þ©rá9•Ê=õºCFÐFÚÜÄÁuQÛ¬†£1ž¯¦Œƒ»ÎB»ÿ£e?ÇU´T°çƒ£éG”‹váÏÈaQ§ÔÒ>Q3–£ÿN™¥æx›,LÉÞöˆ´âTA"•öGrt݋߃ÎÀå~/B°ñq‘~(±Iîfùß/N_œü;Ž,¡e —,xrp°ge•f†ƒkºöãgÐØù¸ÜÜyµS3£ÝÑ»¸¤I­ Ç#œtñdg+égcý@‰Ç”:k®óÙÿùÖþî“cÀt˜ÃI¹F;Îà]:,‹ÑPeH²Ç’hðS´•ºÎzVq2Âv®ÜP¬Æç…õüNÆ[5‘csQl±œE"ˆÊüË™­G· ‹üM„‹~̹;y›ÔJª¯µ†Ì¥D£ß­´”×3,èâèv6ÍÖ3˜I²óÓ»+M ç5íËÃ? ‘ô3½VFÊÀ:XL¿4c]’#üƒ³„•Añ ,¡è|Ò³Gòt1º°‡ß» ¦’,-5¹kg†K×õÔÊ#RŽÃ}Ü55#Él÷=æ—%;N ïEL«qÿ|Ñ-I_õfŽ(£P ]¹C¨–¤j%Ç‚<“ÞÆ@Çìá¡ò-ŒNËAŠº÷¯TÂÄÀ˜1΃EŒz2FÇó(²r‰É|·n{¨²ë»]U3ž¾%×;m²Áþ¯.ïÏAdx¤~[²UÂY6=F#ä0ì«" elNQcµ× ÿ4èÁè‹–mö 9BYF´Ô¦YÆ£¼eœ;Ê΢xá!{vèàŒƒ€²’^˜#Ê}€Ýþpµdü€ÄTÝîLÍ0Ö´jxv<¿O¸sN•#Ôâêk öeÊNq-'E¹ÞÈ>Ç$,׬5îyîùEìœ"[Ì>‚â4êÏA‹áøêûTÔ’,×±‰—0’âå¥+¹ìß;¥;"Ťx(7ÉÆôu¶|•]¿,½€ÝS:Þµw€™~¬¸NŽì&Ã2·Êg”¾c,¶Ä’듃bý¤·Öz¦o5ä¶^Ç D*»¹tN“÷k(ÊADL#ˆÛ”b†$JžÿØ4k"™2[”¹)VW²v…rý†QÏ4Úš*8LõE"XþÞ˜‰xd¢¯ÄÑH&ÉA×è¸™ÑÆ +–5%3!]ª´‰o)Y:—º/L\ú…9ta6ü\(@ÍtÆOD¾Õ¹/m*°p1Ú˘×$#L¹‰œI”œó¤»&§O™ÐLñ ÓxœJ9{nØþM÷`NLðyÖåô³/IF ·µl%yBqS¬®6W¢ÔFJeŸÃ¥6èØµ2ˆ¥g‡ß¯=xx¿±²*¶šXuµ¹¶¢|ÈëÂxý_¿jÞ¸úíÃþû¨ùôJÒ|PFýå/ íÀ8ë•ðýJ=¿! é?­³;9ûžÑ[Ô=ŒÏ‡®K†“@qñf³ÉÞâS)éƒpgÎç‡ KJ{Hú– Ê¡brà‹Œ@§tÆ—w¤5À,ÆR¡„ý¶Šáõh†‘9EiqÞÛ}ÏH‰¼öƒiÔ^‹n.‚ ÃuóÊ"¦kFsbˆ`ä±-QcÛocøLp˜ó®GÅßU¤¾Eq ‚¾}MñdC²×¸dsò #²F¿°ÃñK”E±5¤$àpBe³q:<óIC7ûþ¹öÁT®!Ú¢‘F¾”Æ=¤‚ìõÔÇU¢Ap¤œG·Œ^Õœn`gHTdC´~Ë÷°l¬Msú×T=lÏ=;‹Á4«­¥³ õÉA4ÃŒGñ3ó^|R-®ÃÿJã9ÕŸeQ+&*“ÂlÛš£°¬‹Jv‡bûZÌ/Kº”­tO•7frzb|S†¤ásJ„ìä‘ä|Ž„XÈk?Fü0+ÒJÑ¡9&_dJ¡BÞ&Í‘’(ó¼Ù…ÑYKA<òQ'þ¹Ww¿PØ}õƒþÐЈΠD¸ÕpÊo#_S­ç¦k©´wi#pB•@‡@D8 ØxØBlœs7@ötâ¥À·Ô›‘¾qAq7g½áHï©Ç€S*0)Ì”jý'Å×óGïê1ûBYŸŒæHWJásdô[àˆ2tÀúÕþµ ô€ÃUªu¾¿E?¾U=åî8säK‡·Ù¶w>¶Ïñö:@¹L Q£Ô“ð!`/¸ÒEsNqêò¡cË: ‘äòv·ë à 5aùÒÖ<Ð …1Dj+Qa>,[æZȺŒ@,Id©|¸ì:óý<¤ÔŒš¼änÃckbƒì r³vC³¹¡*¶Ÿ5©Dn2eØÌÒ@€¿˜«¤þd 7•9²ÆW$wä•'üMEA*¨3]ž¾¿ EŽ6“¤œ…ùÐÇ#e( uå³^MœždÞ±i'&>+攤çc*öt i1þì±ÄWuÊ4]™f8Uošûºì$&ÙÕÒÊq×å†A0ÎI •¬ÅYÑãn@™†û2•ã¢xbŸŽÜ®#;ý>ôL8(Tq≵­}ÌÌ$÷Ýò=Öy>+%L‘mÕŸ˜&oÚ3%EhÖNRÃËi.~ô~†«œÏpMè9—<úÜFùý»í}9íÀ—½Ð§Ÿ¿yÑ^T/Ñ=Q¢æ© Ôì`š1ÞN¹!ÞnÄ·Mf’0¦œ—4§ž6\Ÿ{êfhÊÉ—EÊWõögkÆÎjB0}=?ˆì_æ²3Jß^M™F'eûœIFX)*=†àèÃÄäŸÊ… |»û»'»ûÇ'[ûíq²sô\ý(Êi ½û£´ á+G t¦ì”U™N¹0ïlÂÖÉ–xþbïd÷poGìì?Û:ÚÙž€tŽš\Ü\¡nVãT ·ÊÖ6ú¢xnxâŒåVoŠ–CAóôÆ/ÝQH_æ7¼˜Üoƒå(üÏ/\M`BœTÜ!D¢øpûìÊ0º,ÿ~E»ó­þ–ö¨‹è}–ñ 9W{å ¤1©6å:er÷kR⫳Ú:‡yûƒcf¤Œ6kÿÕQÖô7xwd0€%à|€>Yè&—Ž ’ÑÎ”î Šæ§œh“<àìþtšÚü0F°®(~Œ=>›TWåjÁA"Û–÷/¨WÈLÄ—3WõyféÏ>’m‡nÙ p.×à€l¼¢Dav#á%Ic¤J"ÿôý1£Žúÿõn™Ùõ_Õ&£ÙýZ¶Z¶&/r\¼$|›Á€ß’çV¤fÿ :¨jN]:”;—ehŠÐ¥{–¡¢&uã‚¢˜•¢)ïôÂI‡Ew=«Zt2EHavji¦^)ŸÝîäS|ÕÛ*e{ìâvÉ4¥{uY7é¨|ŒÚ|nï_îµ â{`n¢šOa·Ø#7 4”ݰñ;^'kEMAäÌÁ¸‘‹v_ÜÀÓ e-Æßs¼en¶cú ó9®Ó‰@áiŽ„ª#éµXªmuV7Z±ÍðCE´è¯‹å ñi#þ>{Løóø˜{*ÈiPÒ sZÎðø–¬#–ËJ/ˆ‡Í•2Û8ÈÕ¬fè:HÛ—ãœ5‡ 0OQô§/ž…C¦yŽa'–)f^ÛH™š¦Íþ´Šº¯aþ‹;óün”Û—¹4í9jåÌÄÔš£s^ãá Êa>h.q+øªç„¬•íVOúäÃÃS †¼häø#´Á•6lvhóuÓLµ É@ÐjStIî¹A†„Q=uÄ\ÂL „rÃÁ±~ÜW)ÆÐ<…’ÏRãdxr¬3 .zóðÄZó‘XØ×§|}Ø\ý±–¾Ó6yÌ„H¶’¨bF$ô솩`¶²„4‘’¥ µn.x¨™–YdÞ'g]iMqëŒ=?x:¢Îoc é§ÕCû=dd@y˜K¦Rþqn-Y¯.N®-“‰†#ôý1s“JÉ&¥‰¤`lxÄ-\Ï帵MØ{.€ë²,„öGÙ!)ž*î5;)Љûi¦cÂÔpäÍüáÌ0†‘ƒ‘$L 4ï*ò5Bɲ^ fDe NŸ}ª=_,>—Áäx%0°¯rôápä×´õ²_‡]~ ûÚɦ+£±§q«º·m½Ø·Ð8tVOqBÃæýÏîÜžÓüë·(=}F‡—Ÿ¦/^{|ñê9Ý‚«þ9W³àŽÖ\ c!Œ:f º¸c$(T| ãK X‰? ïÅþî+ýà…ç^½Vü-ºø¿i¾^]y³Ì½®.ñ1ìú÷›kïA·BkÞþˆ_Ö‘Ð&oiÒÁl¦YÝ|$½™á0r›ú­“ %â%cTÏßl“3Øç-èéçK&²>4ÑM~øþ‘fußuÌoÐÞÚß?8!‹i©o@Eí¥#èp ™‘£S jH:¡Ʊ⸛•,¹:í¨ñRiJAÊ¥Úåø¤héë ºÝ ½03ãÀÊž¯“¤SKŠó^ Ý*Saÿšs_:Õ‘c„–å8"9ø02B](nŸ_¨æÉô^ð•Ä6 ¦3ù‘ ŽQúlŒf¿¿n\À,8Q—à¹œÛæL;>SéÊå8‘ÑíІI‰–êyÂXJË5Uîàb;¯¹£[ÿWèÖ84N^À>º¯Ö?RLŒCë“$ãrN‘\3:~ ?¤ ñ ¹fÈ!(.* U¶eh‡—°„™fŸ´&èQ6¯•½š‰£zó5ÙЛ¾iÆÛo¾A·S‹bª m0·%Ã}mÓôe+%>‹%Œ›Š”ÝS鄯´{±d=?B9šîòU%‹€–q®>^avñy ²g°9ÃÇî1¥Ï͈SЇ0èT½3/0ÑÀ„©Ða¹úGÕàã2Z#òk8¨p\!X hˆ'S~œæ$@ÆÌ ‰®£ùÄÚï&Øì®éâ£Õ]†£Îd Y¿Ô.ù¬ØÐ7Cg€ùxúèÂ&¿Ý.1Qç ýI nù3¾¶ûpîí]‹!ª|1d`ø ô(.Ì:µ©A@e5¦ºGÅ—78”Qi²SÔd…®PY¸4Ÿ+êY#oÞ…”o¹\Ö îå¤üÿ#sÒ)wx^;圙픱¾l¡Sôþ$Ø ;rT—okx%‚oàj•ÆÁfåÇhœS-d§ò#l¬Š†P–ñÌêÇP½©ÞñFªrb0›ê%>b‘üìnèŒÜ t»A>w+®ãh©À Ʊ,ç"NFq®QþÔK8<Žà°Ûúµ¯"®·ê­½£VU-UQÉj,œofs:L@CÍp€’-ç·Íjðq³³ôz«ñ‹ÝøýÍz§ö±³úñ<Ñ|ªFëcK’ÍS1D=‹S¢<Ζ4É ~Ùj÷¸0 Úr`ñ›]sŒ­2¥cKtâmɈʟl–ǾÜÙ’Þ¢ ËÂÙj`_£g¬øF™¨az–y]ºUTnëê¼/PÐK7ˆ¢ÈÈ,t½‰¾p_WKnÓdY/×DAË :‹²5©@Bx{$ƒŒzþh4Ñ0ÖYÔÀp"Î ­ ‚n½³ŭ Äþõ=†«Á;˜tI9Ý0púgÔdrŠ ÊeöúÉ 2/£2Ak£%ZçÕ·%MbäÌÏ  ‚úëxçpëhëäà[(-H¬[ï0þ%®¢Œ7Ê ]W+ÁÉÞ(VkÀI–lÞCgH—”x›ì† (qÓaÝ¢ƒþ8P3À°Í&#z8ZYcã·Tö ^Ãl¶hTÚ‡‡2?V[þÕ®ù¼=øã ¾»ñG×f¾_ÎJ í“sCߣLlòPáà]»6> Fcz‰u6ÇoÀ­ê>?¡ò1cÏÚ„=Kxc§ó1_“ç\:#ŠËÌJbðÙ۳̴ÜÚe$MåV3ú¦.§ å=o‰r„n±¹Oa Ú.b®ê…žÏè!Ú"ÆôžÄWY1Ù…¸r£A8¯EöKQØóí~,Ý}a/2;NJ‡Niá6ºXŽ”)hº™Ë¢ížµ,ùAµôxçéî¾øpD&@¼ÄúÖúlã“øÀm`èxJ©=PâñÇd´°²!Wx ¢þiÿɆ ¯? 0Šßá8bz‰ÙOØSÿl–U1³à&¾1_E­ß»§”LŸ8ñfTëG„^šõÍá£ãvøQ”·$2j·Ñ0Š•Ì¿øï§’nÛ b´ ü=r~{ÍÏß@çcEWØáÕšÀTÏ ô§*S¤­—?©ôxa䃖yŽ?ú˜èÚ5ª‚¨̲½ÞêùA‹XUÇÕ”…Ñ¡ØhJ23céÈùQ!ö[RÏÛµ@DÊ9 ƒçû{kLJoUt¬\PetÛÕþ»ò Z®áÏ2ž<äõÅÛ$›‘']©ô„_Rûò©^Š9D~)•L‰žŒ½ø34Á .â?ð܉ðLE±ñS暆ÞÉkŒÍ±÷X²W’öÐVx=tàŒDBélY¸Þ,G1uÐk¹\RÕëO˜ªr‰O6P–=¾t£Z³IÁ-¥±.-¢Hä‰kŒÙ³IeªíµC¼ë«³9R€áæIònÏ´ïXl6ÎÂbß9‹,×@˜cbÔ d¶ ;Ÿ†Ûî›CĦ‹B3À‘×{/ß·øqojµøÕfµ®®ä±»Ð:W×Рm‘¯H§­A¼wúþ’ ž=„CYHhqr€_ú”Æþ~s¥i\u¤¬r‡ñÎ ÿIù½iZ}`}cu¾[ÖÓýmŒ5"Ö0Bû’~üz eùàùîþÁ–Ûß[#1 †4æƒE˜÷¬ŠÚÆŒXXú‘Šl¢Ü=”ñú2‹ß›· T^]Å¡I)nÆ]^ô'd s-UX‚SyñŽÏVàbД0žešJ)Í †®é™ V$–…áZpùa6ÅË‹;Ó(þbë)ºÞЉ OHŠÒK×XÒQ.²_–QøyO¸¡ÒKR)êθ{¡;ÑÄè±lnƒ“è»10êfƒmìxDV1‚­²åpÙE‚!ÞGãHt›†¤áGP•¯ìzMµJñÜIx)ûH(†ó;C%lmÅzj×QPAÛ y’#M‹Ò§Ð„Qâ¦Øê~]Y­@! BŽ:‹#§«p\! |2±Ë‡ñÕx]XÙ8…je¤bLüá¨âdÔï×ñdÛhàì6`+J?°ÍàýèVSrâ³ö™ÚÏG?ÍkZ¦Žº7§˜:†Óü™PßÓØOAG”€­Ë* C)cÏÔ‘¡†|Yk4Qªo2F§„!´Y \Åö”Èß‚u`jý¾ä›ˆS7¼t{€UK÷×pÞ=¨q3¤¥"8xcÔ Ùb Ž ïÝ^ :“c5å$¨mŽr@ExÁè9Àì‰ØkÕGõÒ±ßUÅ;çvr/š;c 1ªòÄÚ;ØÚ>Øßû/£}uv4 3eFm†?uh‘Ü]*c b—Â’-¢‚v æ)tB™-&Ò×§ƒ®ó4.¿GªFœV— PõC ¼ÙW%£¥!qq¡Dã‡z• NDv€ßãw½‚ß¡_Êã_ÓS`Ysè_:˜ƒ®Xô‹™³ÂӱȤÄ2Eá|jŒ Ô>nŠÃ‘ ßRÍ¥[‹xºA¨}ås óË÷÷ᔨ º‘À¶?G‰`ìh±PCú?²š§˜ƒTò®ÄÑ¥Š2öd(”zúÚKroûÙO£€šÕ%f=¨IÃmƒ¹G5B €ñ/œðȦáͱ{¸¢÷6Ù 8Hrý!´Ž Þ.|¤¶Ù PɳeQ»Ùy‰nãà0…Œš”>µX€ËàùÉUÀþ"á-Xœx{‰§¿ùs-Z—òáÀ!ƒ ”˜%î¥ä@÷qD¾ËeQF ŽY÷ï]öU…˜ ÃÐÄë[|eÞıBgË”F8§(ù‡ŽHW ©ìtô˜žöe6+ýkúªÆ|%Ôe Áã{sm);¹%QL„upP0mžJ9»;”• á ¨€T­ŒìPW†6gÌŸ°á˜´ÇöPü ÛÍØEõÏA¥n‘úNÚŒ,á{½,IŽ3íRÄì^_ïÑÌ­Æ;K‰ÝùÁÜ'P>ÙÐT#ûí8ÍXêö¢­É3{ûÖ1†¹Ô#ÉFñÀ¯mÕÌi+ÜI=Eêô&7vubÇOÜä¶Üãsì]  ¯(ÙÚÈ´§›êÜö9G:oΈóî²”8&ëÖÿŒAì^[YùVlaõƒc@Êëºt ÒJKy7EH +( ±MŸR³FR}MZAÐÅÄÄ}øº ‘áz”册Q»×œKz+)ÍòàÑwïjûÐt¯L„0éÈ¢hóéÌɦKÝóÉœ€X­à:À[ • Ô¸w©ò™ï”Bîô´¥µl´lZ "*SÈ·ÉÐK¼›å%X§Z þùks¯Â~m½YîÔ:ÐÊ?;«ÿÄ"íát[ÙÃRÁœ@ʰuÙhû²CfÍò†˜¹î]ç ૼåŒu“{‘ÿÔ‘˜_ˆEñÕŸtC•±çLU95ôÜ×~Ž‹‰ØÄŸ°7fçŒæ…b' Ó«ãßõVpŠVæý§¶2ÃMº(¸O¥ª‰ÕW««ÑÔ§ÜS~ÐϸtÀgÞBf5«½O‘ƒhÓÄ! »šeÒ•ê æXÁÚªËGèñ’úºL[ª|£T}¹Q0X)Y’šET_`aT½4H÷ºR¶È‹û@bm÷ú-)±¼n^Þ_3®Ý“Ø Å{þePÊ ¾›F׌›5Í”ÈO$y=I´ta25¦—Šünïí‘Å‹¬{­,1–ÕZÍf ðÕvI«”-waß(%Àæ[ÝÍN¼U1ez}~ßVŽŸí@ãI4ºDi›,á×NEƒÂŸîßÁt¤ÀAD7‚ˆ–LZäz ÿȆ¹-]PÙûà ´–Â̽ï(ÉÖP=SEµ¬˜eI-ÚÉÝ‹ßö½«¼†]v¿"Jüeä3ßÁ*àDʲpJ6HñïT~T0gnU/[Ròý~Þ¢à*/-)Íõ¥ßׄ/ª…HÞ¤f‰òïåö‹œ“Úô‘˜nrDJTeHݘ¾ @2O.¢]í ÃÆ¶Ê6¶-€Øª¾•Å${Ý|Ój mgÄF]߯z /'.W-›¸jÃË.ZöQ"©X}éz0`_ ¾kñª„ùnŸ,1ë.|QÔyßñ¶èùñÏmÔhï¶ÛŠX› ÀfJŸma&²šzcòuuÒЬ6 «ÕêI?÷,جì>9–áÛfuC{³Í©¶7Ű5’²Daa°Jŧ_,Š=`ëÛÇ:3Þ’Ù¬Áf«<¾ÎBuÍwÍû"¯û|s¨­ktg™7u¥M(ÛƒGrH€$Þj‹2vûŸçs‰ì!áPñoZþ¸Ò{Þ¯[×á9¥Â‰jˆá°èºpì¿Ç<Îæ¤…Ò–zy%Ê1$ûØ»6ðoÑ£‘Ýø}«ñË›N§¶þQ´:ìÁïVT}ßPiBu¥ F êìz€N¬~`>9µ»ïb%56ÿÇûl¼hÀj¼ÖKž/­ÛÿQCUºŠ@ˆ¾ï¿‹¦²ï¾sÒ~ŠéÖê¶žmý±ºÎÙ̽x^¡ çnnÈ?Ô&h{¬‘c†Ú8š¢EJ˜ÂÏ×·ip Ðñ ÒeN¤Æ6Ç„ÍÓ`!ÚT7^w¿·Ýн'7Iî¢Ø%ƒ˜zÐÕE©-^²DN«X€#iNÞª3î’˜»G< ï-µ1a´9‘v ‡CfÏ „lî02~¤—D€™/åvÁ;< }Ç}¯)–œæyS”¥Q3iÀËx‘^V»¤\‹#CþàîÄqóÇ_BŠ'ˆÙâüJ LJF’‘HFÂ{’ÄåuÁ£‰âËü¢Q¤—Ô‚çT¢žác¥wÙã%8Êé_¦nÊhHŽˆ|—âj_Þ)½Ž¡2“n‘0®Ñ…= üÞ5ÍZ®2®wÝï•“ú’­i˜[FЬ¬éœI3–„WråaY|º¶ÿ›¡3/UŽQÞ¬ (ô¡ØM´Û©Žpµõxp¦ï0îé[’…ç?»M©2«ÆK‹˜¿2æîËD„_Úû/¡D¤Å<9ŽÌ×Ùç¾wÖ¿fm^Ïà gøŽ#¼lÓë' 1h'r´ýqØtƒÓbJ2ëì;d䌶¬X4¬°€N¶ç¼Ù¡¸e(¢¢Ì¡5BW¼ÖÀùZþéÿX21Äýlómºr|-_dªMä¨_¯Ý§Æ4ŒáŽ@ï× ?øÞI¨Š®¦5•f¹D'˜6RÇKúsL©æ»ºNo ý4¹ƒ ÉG û6Çœõ6³— å³5a£dàÅš2·Ÿ†ùS“²â}2ÖÇ&ÈgÓÌu'Iµµ†/ÉÆÔÃNTôô•L={Ð\m®&ŠÀ“Éý–¨0©Ûl„†Q4 ÌG¢‚¦?·6=Æß…í¾ÿ)œ$WX‘&µF vÈ•÷¯Èt’‚Çä(N}?l]ø§Åw,ÐS>ˆ8´–’r1Ö~8¾ú÷~Y]ÑßV%ã{JæîÊâ˜P!€saϰ›û©)uJoñúˆc ØE6Ç2&¨}Ž·y!‡‡P‰Æðb®OKY¦èQ¦IŠ!öi›ã‚]’/HëkíÉÄsâ^%O80âžç;Þ{ƒ¢?Û—¹ÊäOáŒóðE%ÂÀÙmïž¾xe¡£žõü`{'îm_p!­®9R\Î~ZN@ÍØC °,ÎDš˜)ûóèAV=˜µÒyQ*fˆ$_ ‡örÂöoˆ°ý)ñ™©ÎªÄëÁ±èø”ú¿ŠÒSàÅÐ^[±bt»ù°\š€¹GFS&(Àˆ9–}†õÄ€øâ29¿Ý‘ ›Éî @™5ëjž6^¼B‘#Ëì¶´,‚¾ §½1#rÊé}hòðáú`õZÉ6PDgb\Dë™í¢§Ös“_°óšxa‡þ}Nú×躦À©×¶¹ %÷"àŒÜ«×÷ÿ,Ÿî¿„T–ÔÝíò¬‰ûÍ+ik´*–wê|ͳ³÷¤6•AÕ$q®Pîr¡€¿<Â/È@¡?”:Ì“»Q$¾Òú…qÝ’JÙáî( $GÇÕá°n md À88 ÆŒmº)Ñköµþ"™.‘‡¬˨W>¾àÔuìÊ&c}M±†‡ù]¼È\­9xÀY¦ÐRØ÷”Û*” .ݰ{Aâ·ØÛfÌhÜ_û¸\†Eùãrc€§áµÓ`àñ©ñS” E²cøl`Ÿ»ÝÍûkS7Th×ðºà䋨ƒtð,jdŸnd;ðC7ò肆«šxôàÔÿJ‡ pø¡a?z`Ž¡V<`ó4ò?i2Z¥òAý4óÉ0_©H˜"þ#&©ªÇí5‹`–'Q6L!a0LíuŠæ{DCü~6£º‘\Ç»þÙY³Dôe™ÞáîàŸX&ú…³.9hްmYÉë|·—fˆO/•ø=©r1f´êaäÞ7Mô?+œ…•%‚oȤUÝ"꠸ݤÓÁè””9Ì žÝí:Cv2¦ŠÇLoäP¸¢<§ìªÏ¡áäo¤Š2,7eHÿb#nB^e°pµ„ü›%«m ŽnM½xjWŸD6ŽBù›§–^ b½èç`d§9 Æro»- :ê¾[Æk„°PüáO¥x•Ïàß;Ùíæ¶ð o&søb’a942Q^ï÷Hê"ág<Ç XÛ'˜yDM†k/hd¾¨íÁ*-3ƒÉ0›*pfô†çiSÎ31´#.Ë- ZwÙß씳¢”w@rì”TMŒè­b‚Tr·O§\–2 G‘¦´7¢!þõ/k«½sðDü 0ßZÆàœFñ&0è|JMí0¾D­ôW ¹ïÈ Ç##~*1TŒ8 ÐÎ<«k…€î¤‚,ËèÇåh ˜Xª<þÏö‹ç‡h¡:Ã}q ;µ˜íìÜ‘b†\ÿ沜βa„Ÿ¼tHêÎ\üÿh€¾{]¤”±pÛqå£g§Ž=²/Ýótè~,§ÄD%‹‚ØBA½'ìœÊÄQþÕÏ¢Øí‘J€ãà’bŒ‚N(²C¡Nˆ,C±eÍr``<6™Z”¦]†½ÓXÀ¨‹ ÿ’2SQ×POâ¸ð†YÅnœß P9@×B bQÆQé:#ôD [ºWè÷òÞvûìA(³|PµjD0÷Eã•h¼Wˆük«Šñ@zvCñÄéù#;ºí–cT¢á£õ’Ì©åÉŒX2à”¦Mq\xƒ1Á(–ÚÄ"×:E*y>FÕÊé5b÷N‘áýƒ®>h&–ð øwÜÃ*Š4Ó ZÅ®ÏA`uÂn+dèAûÄbFöæ[ ¡ÚúU-ñAf%Y ˜$/‘kÛ ªÚ åºèTÖjµ ¼ƒãÆ&:Ö}ôø¨&Í;•]cüWÅ¿’=Œ['-6—[­Ö¯¯Ä›å‹Ë®=Äo­ÞFÐz½^_xƒ¦}ð}óõ¯›o–+P”¿Ca!_•[ð§õk¥Õ«èp$ª¯*ào'©#á5+Æ„•KœHºÂS¾6\ œtDjR{*… ®XÏ HM˜RŸù‘ž´Q¹çïä Á‹œf^º¾Š>DP0][<=àÛ±”öd$ºÓ‘ÿ£`½.æ:Õ94Fd6 åþ4XÊ:õ¯Pl”Ò¡Ù‚¾0®9Áã­%£ÊPä×hÈ)9ÀÈb™' {5r>¥²£ i<WËÁÀZ<‰ûd†óßÌ£Z´JRõœ¯«IìÌ–7o(;j·ÓÊ)Ò}ÂÓ®ê>™äIJRŽ4ÊoÓ²ätð>¯^/¹ûNøøx›ŒûgVr)Ò2ÿŒž@gÈ2ͲàÀaYYAÕ«L«è[ÿóMOfۦܞ;‹KvÓƒ¦‘Z_Ýýen¦Áº¼éá~‚†Æs.?xô•ÅÏý0yãYÂÉX† "߬߼ kJxø7;P9ò×ïÁìUÒÚ$Ì‘{žO§¸DÏ[-þ.Êo§¤oMË„ôºjJ“aMGûõ3RÒyéèíl?XSÁ L¨Ý1´z*•¥¥ïå*ߪոrSX²ª¬æUÞ¿MlíbËBßL¡*뎓æ1rOˆ£%ˆ"ßÌjn³†9ÜvæuÚáùÍpp™ÒggjY#Lˆp+Ñæ À‘æô(*˜ñ‡¢¤7Sž3Ê` È¿ÓüžNÏž¿ÒËä…šâ›@#ÒŠ´CŠ‚tÃþ(€çy;Z´ MqƒÍ«7êÉ(Byuê äîÞã3ˆiŽ‹Àz¤ÿèSTiãÔ7Ežh™ôš©×½+mØD‹ŠÒÛƒ|©îÏ“Ű;gÔ¤‰Óœ´²1²O§¤Ê$n’ð˜!TÒdÆr{uÙN¾‚-`ØÖpÂte&x®ö6Ÿ|UVà´#Kªö^ìG¶ŽQè`½‚Ú$`*J‹KÔobùl£©”Ë$ªä±'†sáßòóCB@#»Õõ0ó›Æñ[CÏ©£Ï5‹iDs>-N Àt)_tIœ2²ð ºþýæšþþð=úal…Kh¿À™øÅþî«eµÓ—Ç—k´›{dúBüí/ÁÙ¦¤ÅÛ#!áOÆÚ¡J¨­£u€'0jå¤ºÑø£ˆÅœ®Ç$Ð-dxpNvAޏ{8<“>A'‡O8°ݤ4B{téCˆCΗßâ `1ô­DÊÍço*ñ}Vëáq˜%gýŸ—HŸ[pì ÔŸ3/ydv.òtÊyM4É£”•©"@*# TIÅ® (®SÏ:óGÖˆRŒl–ÉU§› Q1d•rq’í"Еü—˜¥ËÚyµÓ¶vžì¾íƒç‡»{;Gì:d.eaÔ@3)ì„2ŠÊ!S÷ Ü§¨—ùq‚ŠÁLÓtšÜå4žuôŠ:°ˆw»aXÆç€²ôdÔRfÊ0„"Ý‘; 1GO¨—øè29ùÅÆDÇñŒÞ”( 2…ÂrC™Û`ïÄ:þïqÜõk0öΑ@`'Ø1S7I6‰Q‰‚#cQ‡› Ç„­³ÈLÖÞ»)ææq‰¾–±‚‚í—K·a£Ï´[³wMY~ÉaOƒüúJó_ µPÚçD/ ûx¹¯MCÑ–¹+¹ÞÉddìO`ü3à˜O9†2ž¦€H« {0Ëa ÓŒM«dÉä;9’þzNíÊõYªmd8Ȇ27õ>ÈXiÚtë˜,¤á ù 0ÎdãÒ 8\Æ ²¹\NÁئ)_eÛW8Ÿ Œ}É -¸)âkAœ®û½Ù©©ô¦P”Ki×"G¶-æ1O"îNb#äô½'‡O0îœÌaé†Uò§ŽÚ: }²|Ö‚À3|§yØ>>ÕŒT8=Ty' ë©öc)£!Ê PØ'øÊ ÉžÔÓôBÇß/´*–ÜW7 ú ¤"å½bºŸ*>éïéá}Vêß»#ÿšüëe*d±R·É¢ŸÄŒ’+FÐ3¶ô$^/[Äz³Šž" Å4M1!“¢Ég9ôl¶u‹´ìN€ýûP°;öN€Í`o@ï'É:ÉÒ‰úüd[¹#>¡0V»˜T˜ÿFÄÂÖ$r‘(šO0bç%äV‰F±aºRªøT'$Uëî„ôÅȆ\¦ „Ã(u»'$zò I—üs\Ӝ̲Å'¤¨äú!W6ï„D*yÿÄMMã÷¸Q°Âä…KòÊ%îž§ýóô‰ “ïIø»Œ®ŠËÓ><”!QÔ·’¾‚R—V<[F&hg]Ϻ C]¹¬k‹Æö³­Ÿw¬í½'í} -tS™Ñy.û›YwØ“'3ÜŽs…×n–²+2¢í˜mEÄ Ÿ1A«¤N·›Üƒ\^8d=b+ºDU“¢R0ŸüOQ9‡¤4óñ…´))M-ž]"cj?°º“ x½¾¼ÔÛ\Ùàßžo¤=›«ê Ú+Êgk\ /Ç¡‚†PâÈI?¤h ²ž½ éè"®‹«óªÌcÊ¥E䤱!´ÃÑš•ûavóâ‡Ò"f9+¯ÐeÎÇWX`‰£“½mëéÞÁã­½Ò¢@kìtj{Ÿ.,ÄŠÐ-â\cíí=£nvíXU;»è ¡.«ž£}‰q꯵ñ†Yqoë—ÿZGÖþÁK9oÊ€9‚¦¦ˆ­?(ešÏ†T:0…"r1îýÀþbò“&rI˜‡—l$8Í ¾IÆ(/çN•‹F¯g/Q$V.ë‹ì]1¤dI–Ñ©¬|hÉ’qhùõVŒ*¼Ø©úkp7ÎÞ»{ »:¼Þ¼p{=‡ŒÐ$­n†a!» "ã8(2ÁªÛlçχп&ñ•"]Ný~ CS±Ð„[Ó–õtÿEÛ²k,--韛›â~ÊGÏw÷a¼–ø_ÔÐS3*ü>BÉKœyþuÐ×19ú8t,ki)ßRYZØ•k5ÄÔTÄ*P’Ùƒ5¢­(O’H‡âœ$‚.#•²¨Îƒ+usó}L®É|ˆ TŒ‘´ Éø—*sá%…Fb©×‡yä—õ2uz/×<PSU•Ü:–bñCiÁ€¸$¢LB‹(ò†Â0ÅpŒñ¨z}’Äan`ˆ Ÿd!À¬^¿Û÷¡iß|2å” ‘XÌ]!ÙXuêúø Ò Œ"±ãN9‡!wHPA­S.c`*ä¹B,õ ÚÑcø­xοœŠów*?âÄieÙ3fýXÆ¾Šœ—fEqA:–·Ôû–š-Uxƒœ•7D Û1‹«Hs Rô»ªèç‘wÅUujÙ7µÊq+ªaÇ´U$¾ÄÀÝYw¤‰ìZ„hëò—%¶iÂÈñNÆestÕjŒ4Ë,tÏyæHµ”}ÜÈ,ÆFhrCgD#7‹Ç\×g„S¥Ùªª£sÜXžex ãpõn&áÎnZ™WùO}•Û|'ßIÀwð|'ßIÀy X±õÙᢚ…ò°ªx;bqí IDzÁ)…d£4IwB(µˆôÉ•˜nšU¸¹¡»Y×]6೘¦=­ §ž0ZÀj}ôüZ– CF•±4ßáaª¦å$LêZÊ|ùýIøXÝÒ~ÆG…ËÚ,ùh2¦Ýð A€†äZÛ~«Ìv'Ÿ&È<'` ÄÊñÉÑîatš×=?©ù1µ) <4Í-ŠÆÏ$L\,c°fE9;(ml¾Ë Jƒ5zÎéø\&´Ë+3öXä(Ïq‰¡ (˜9Rù\nÔâ,Û1WòPÚ}õcOº^àŒB––1ÛucxYŸ’’p:qîû=ÀfŒ¯^Rl?9ð+uÂÍž»ãùÀ³Í…&2:™²y2À¾D7Þî…‘,3ñaœ˜/¾Ä|İϴãºÌ"ª×@Oþçm6Q$AKí8qÀ%æV>¢h[È”eÝpL˜~ê°UÂÌÔIIööbïyvFL'nÌ'±ÓÔŽÑ×y'·’Œ÷-)d•RÚ´²!t½GÈ3ÌÎΉ©1¯òÓ# 8æÈ©3îxbk÷U=#ߦד 3ã!Z½ÐYƒlRà’¡Ýuê:?Ʊ³1Gâ'Ï8Üm7K™Ûv¯îËmÓÅ=NÍ®re,^g¹r´…ÑUã M Œà‚LF!ê`ÁŒŸtd 8Iô£TÆé¨{ª˜ ºg¦æ!¼~ 2F]Â$ØÒÑ[&ÇŽ÷Œ'#6Î:‡N€Gi©Wð;L¸%3³+Wu}–€ùªC™ú5&èØØXXXXTˈ¦4ÝÃ<@¿›/0P(ùUuƒ÷£õå‰Uå¼ \#$ýÌ3D œë8[Cø—ŽEY>UäÖw{bÿ̲ÛU»}Q<·ßÁ>càH—ªÆFC.õ溠ÐzÍNóE› ÓÆ–“mzn¸dzT^> ²®y³‹_ºÃ!lG8‘ mêS¥ç|ù€ïÚ·Ò–·Ú (¥»†~PU2Pãz~–‰Y”¾ûHÁ$; Y߈œ{ãMi¾Z*µÛt¬âƒf;ÎD1¬†uKꇉ”¥*NZ¦ÊHÖÁ;WC¤â¾×uÖáé ±ºï¡þUÏSà±Q8†¹{ûéA{pHŒ â*ø­ßÊTñ¦Ç¦i$F)+Î+®Õâ€eÏ3e·Tj˜$¶EÑÆ)ÓóÕhðFhô1´QkLWs¤ÒkPr»èR±‹'~ùÞîoV’å6bAšÊ©÷edWž…„¹‰{&¦‡SV[güþµFJ7Ía—°iâKè4¸BãeŠV¤F ûn~ãå4,4šg †S ˜?b¡Ž’wþf…-„ñsy+¿¾!z~iãçí¾šk$õírhšÁ?Ìq‹ÓkÕ©Nµy+-š¼j (W0Ï!u NÜaá6r—v×A‹Žxq‡ªjÆzjÑ?;³Bºy9CØXh½¶¼üè>´¹ª"êõePƒ©C1‡Ýµ¾¡Ù:zºc?¯žœ÷ýS»¿Ži£.7%+]˰beÓ5~`MLbñKúwm¼^‰è§r1ÓÉÜ­u³fùvÔ^ä/ ë#Ëwn¤5É%¨ù{.&‡yÃóÂôÍy/@œé„ѯøßzÇÈu‹kÞú!º›¤$¹î‹Ì ×ű´\Cõdä8·›âÈæžç_“[{]lµ-À¡Ÿ¬Ý';{Ç;ä»b£aÔ%eÓч”I“ól`\ÀÕ:²4ÙqDÄk’ãÖ}Ü䃮­:SŒûÚ“]Ymü2eúâÍd Àg1­§?Ö-Ê;ßõPÝŠ·=è¡2þ¶º£pµé7 h»˜`-ý`s£KÅv^xK2^ ×7Cfo “èÔ)õ䮋õ̘lí%õ„úžzwiHw0ùïÑCKÍ;F0™8Þ{wä{ÁÁé¿ã 7ä wÜá/¶$nÞŒCüÝ'é¯)t>ÿK’’" òüŽd|»AŸÕ§$ÿ¸£Ÿj°3àíŽÜ•ü»Ñ“D®á;ÂòU–˜?ä,tŽDAiéÂzC ÄiÜË…6×€‘!®£ Ș O¿8×}ç Ƚ.@‹ã:L eý§¬kéº7P†foëT 2JÂßzÛÜ”Ï,ÿ Âéß‹Ç̈“8ƒwüæÏß8·ÍkR+==ãɬjD J­]«¦\ʽ\Js©é[G:‹Ü; û뻥›½WjÙ{.âeG#1_F1¼ &v†iMÊ!ÙBHŒý|Ü>Ú=<Ñ9sÊšî¦Ež(ÁÐ4Íhó"¾Ê–휽ØÙL>|²µw¼³Y]¬ªh é*ø2³Ö]JM˜dPÙ=l‰ve׺£d³P²…™‡°ýø¿ÇÖÉwŽ­gô&Ós^p>ŽX‰°P(ÉÎÂê½ìº8Ý€ï V(ÙT3s ±n]|3ø<¤ÔljZ‚«ó—$«æ¦'®ÉZSØx•™ íó{ÖÁÏ;GOö^Þ‘[1öFŽ G¬ÓþíɆj¥b°§%¶±Jw´vÆÛ€QÖ%¦úÕòæø³Ð@£…iI Yå/ILO•¦ ±3“¿ûG;[íg[÷þo ›?³ èN©ÄPÏ·þsp´Y^])«˜dl³üà[õàðhçhgogëxg³¬žmoÀ¯µ•µ‡Õ•ÆÚjÙ akÀ¡ÈÁ+ß•q¼/¾ç}¤o0———ËæñÜõüHñï)й fŠ®b<LÖÖ) /ް.VVФzå[ŒÁ½ºÏ.Q·\LJ696úÝÐî N1 ‹¥Ñ+7«Qr‡Eqì€4&¸MÇ£Ü3*Ø«Œ"„¾²tú=wT‹|±ÊWùg£zUùÐó»ðëSUÍŠ| (£^µðQ•Ú_OüQ×A£qvbÅvpjVJ…*o~DcÜ^ß:‰Q‰ .bTf#IâÌ—’žwdõÑÄž¬>š¢+«Šú²úhªÎÜ_›Ø™ûkStæþZQgΤã?ÓÄÅÇL>ËžÿKí"AºëuÂüFãµã}ì¹Á=¼µÆëï>®>úxíMöNF]"õ‹â™íõúW^ŒI߉%î`Ïw\+žg¬5i¢×¬i0JM5¼F³0'”;×E¬;€…Kê¾o–aL½kÖTø‹ÅŠG8<ÍP‡çʸ¿fM…ýX¬x(°ЇBfW*•˜0*“×}z©woºßÿƒý2c¯±JQŸáý„C‰¼þÂ+£·'n ÈQ‰_â?»'pÜ!'¦KL£Sÿ¸a3M "ñp{úQV€¿µü$Ä1Ê’Q*B# ¡~ØØ­#dÕ·cãP” {¼«dµöŸì>µ¶^œŒ,¥rî9àôaaø_ úÁßÚ>¦¤h¾À,ÏX“ŸÊä³1¨/ö_¢GüÎ6FÈ{‡‡¦E–9LûH|H𫙝 ,Í8.¥pøV£9DË[]ÅMcçtÜ&*¾¿ôÈÓûëÆæH2Ëh—7Ìgçw3 „༠œ#ĹǑ´VÊÈÒ›a|µ,> Ï £$sEôE·<ÎX²Üdz£JÐUDÑ줊*Fv†é’q¤¢âœ53Oø89C¦¹³‹ ºîD®‡%§ ñ²…üOR–ƒØÅÙÏ?HUºÊÒSV–Ÿ<`Yp¶A7Î0³ú GÎ@f¾…Ufª4õDPéÌÙã9”yª¦ ìF?ætÙÂñÊâVT|ÂXÓòÆ™.™%/©{. $³­°ªU4DYf¸d©¼ÁÈצ´ªá9—¨)Óçmà,,ÝÊ›ý³üÈ2 7htG…ã%1Ã{’Íý,†”]6{d”8ê€,¡ae—M*»ØæÚʃïV&k`_Í46£üTãƒò3Ñ(?iœFÑÍUëÃo¢'v‘Îé¹áü4‹NFP|dÉÒÓ`¨Y¾EÍ‚“6Ÿêòȱ{({L9BU|úQª³ŒTÕ™j´ªpî®DÅncÆê2XŠe¬ ˜©Ëdc£~½¹–ÝWÜ/ïíQß÷ß:®×+èsªlAßùce Æ*›=–T±Íµ‡sè‡=r<»‰€´#Y¶ˆnPYËcL$¶S‚f$ËæÐ‹d1UU¼pì!w1w0Q‘‚Q`¡‰Ý e÷;z„œ?yv/&®‚Qª« ÔÄ®¥ò0IÊaÔµì«@gÔ~iýŠ%䤰Tlt2å% Woü>áÔ§[™tÒsO>ºÄ&ö3o³çx þÅBùJŠ:ÿ2*Ýq.”×é—:S¡‚^ö¶XCÇe&)ä¸T®þ_TílMÙ/²­•–„¦]­yµ¾#C¥+º»‹L%c%ô¦›ÜÎê£Ü†VMlÉ4@ÔÒýµÜ–ÐþsBK‘u)ˆ½ö;´ç¡D2‰æ+ ÂÉÜ]£èõÄè×ù“˜jv‡©°¬gžÅ\ùQ”·Ìæ¥tú]]¬>B“ìûkâÔ e¯\'`ÛîSe¥Ö+G¦Câ¡Ù y C¥ ²Ð̼É-˜>uסDÛ÷@®àÅR·½nö¸{æÂîp=îÉÉ|8ùÑkG‚‡Î9­ÁEmór‡ðìó‘ãÈHÕØœ}ç%κººâJ”’f·yÑ,±P9q£UfS î¨&#ú$®«,‚´¹Ê7ý³âbk\ o‹jÅîs1Û»®A{ ‹1Àœb¹˜7îB{d %±Êõ ŒÛöè|ŒS¢“œ§…†OÞ3Ji"ŽW1s£Ì‹4Ñš|‰Á¹C“·Pi„4nW)¯1g"úK$‹¤.#¢òÚ3~Û¡pD(*t#V’IpXDJŒH:¡íZ]¤-<ŒÝ|µQ ÛÂßÝ(ë‹“'Ú†Îå@ú#ç7@w >uìP¸ =Gi|A¬#ÛÛ»mZã‡eê ì3_ôð¨-P)âû=ÊጋPõé`a¯m yd6‰¢`ˆŒp¦ñôD]5/{%Nx¯>j ížÝ_kÄÈXâYÍX¿\üÈXü¤jßpî¦X6¨ª˜™Üm‘&Â\I‰£ÙQÙ£e ]Œßo9}ŠóÔô®ˆ3ž –5O¦_êKß åú±x×=5Å#Moˆ¶Ä•ÔŠ^ÇuÊ’^¯}¼ÿñAmFЇ¤(ZB5>¢é¾4à ÇîÁà¬æ%e¬Ë±¸ø]Új¤ï nؼÀ¯d(-‹òsëBæ¡•†É¥²Ì™û §b<¥Hz'ÆãßïXÏòù¦ )k‚ôXøùc‰*Î2Òsßp,Fäp0'/½šcD±º³ ÊwpãqÎÀ8ì¾™sTªê¬ƒ:>Ùº)Þõ\dCéñó9ÆUœe4Û»G;ûyc)És;R hK `º—®×ó/±ðZ™t{ªQëŠÉaËsŒÛ¨9ËÀ_îîo¼ÌÂÌÄûMv{£ Þyózi»áìÕÌBm|3'j«ª³¢öË­Ý,tH0g…H=©ªp””üµ”ËÕ¿Ë`Ú/wOžY|úNÇrŒ=LÅpLWáØµ¡§‘2²:´ú(«Gð´¨KªRªOº^q§2EÌýµ¬NÁÓ¢N©J©NézyJË”yÝ;ÚAûm«ýlëèU•ÇñŽf¼Ïîr £ó¹°ò†¡×2úÞN±Žâƒìžé¢FW¢Òymç‹ÙàÅþnû`{'Þõ0»±*F_âµòú“{ !,3Ç{#ŸewƬ`ô%V§¸+‰cpfö÷ÖfvŠ^ö,ªšîžQ;¯êz,¯ƒ?oí==Æï~šÝµx%£_‰zy2/Uò:öäÅ/¿XÒ}/޹؛ì¦+̨Ÿ×ÑÔP^o·wŸ<)èrúuv¿sÀσ”㓟ê;ŸIí¸×¾bnžá›ôË@tP§QÔ€ød@K1çûT—²ç4[£; ³§é¾n+‰ Ìë¢z$ÕóÄ Îù,{ž<á')ñm´ÿŸq6\¯qâSÉïP^¼… 92³Cj>Jã _ÖEŽÆ] ó,³]j Ö8¹Aèv1—ã âLÙžØÚ?ÞívË ði²ŠCMå×ËËø¡}¡¡Ì<™=nÇ:#¹Ã¢{æal=ËêûãÿƒÆÀ‹~8r¯ÄÀ¢Û$ÁÌž»ëä»{F97϶P‹‡J{Z¥À _¯½!]8ŽZ=] DþA¬ÔÅŠø´Á½ƒcñ ¹Ú\M6¦ÀS g†´,ÿ »ÃnwC½[^»ÞþN[ÿ|ô ¹Ò\Ë‚‚Êx&8Aêüçª.®7¨_x²u»ñ"Ü2бR_Q#Ø}ü\¼Úm±Ú\YƒfWâÍñ±g7=ßa}m¦“¯ãÓ1šnsü«en µJ˜GÕöÈJ¨Ä®€~öh sºg çjEÞcÒTx6´#Õ°­µ³\ß(ÏS«×G,cÃ2 ¶ŒC£9†gßœ‹{bé\ü(Îçb]¬ÔäÀŸ¾x%¾…ñÆfØ œ&¿wO/¬@Z†–—k"z.ÛXÊXãš«úð¤} î7×Þ?˜%%f„WÑåG{$›B¼\r7 åg¬O5ŒmFõ–Ã{÷°8CÁXA͈&(“wÙ8¸´”Ÿ–¹`;“ÔÀéõ¯DJ"¿ ÌÒËC‹aª uõú "ÞÚúXýö“uß.Ÿùˆ—ß\½^yÃïî݃Gñþ@ãÇmÀRo76›eÙEä¡;¹Sÿ½ZÏh£íºÃp$§¾‰a45°ü±æ‹÷I| ؘ/Yé ÊïšÝr]ЭÓZsíÛu±úpåQceí¡X:®‰ƒ¡3B^¡n<1 ðv—ôÓ}y‡(Ç 7uÂüoÃ=|}ÿ pq*±D—^>Åé…Çâ´ñÃÿàûÃØà^ìí¾Âè/?ßJ¶tä¼ß×Äû$²*äÔMòº­èôx”Æ(ùûÝV£KüIQº)£F”n!f}ŒYeÅ’ˆ¸õp7H·=ÝžfóÛÓ9îé<÷q!Ë}œæ¹†³ ö‚]ôä-½†S¯ÿ²¿ÔV†§›«oj´íhjå6 n$Æój³r‰&?ØÛf[–<Õø AÞ’˜å—‘Ójˆù~P:–\^¶ojÑä.•U@Ð/NË·Àã>›”¿Cƒ áÒá÷þâ2¼D…V婨–Ž‘`<Ÿ!}{˜C™T…–ú2;•Ê‘¤XêMôevê• cJ§ÄmrÌÐ_ò¨ZT Ãh¬`A0ýÑõ ¦PCÈAYâ&h€˜kþžíŸý7wúôûØìÝLÃPèˆáøuLF‰§³–}ÆcšîâÝiMÖô”ž×b¥nïÄ–Zûâ£[ºøßè —ܤÃ\f…üS]Fñ$-‚±(’cî–rrEÈ÷¯h]øBëŽþäÒŸîÛ3ÿŽ Ý‘¡;24 ÑN™—ÝQ¡B*„!$œàŽ Ý‘¡;24 ñV™ŸÝQ¢BJäÝ‘¢;RtGЦ"EÞÍiÑ5š†]Þ‘£;rtGަ#G—7£Gw©X_äŒ]{xGîÒAš¤1â½’¢G±beº)Ëú/òÀmx„º–q¹Ý ›ï)°”A€ÌË`öÎ465†×â®Ï%sôðé¢èš¬Tp¥‰š‘S¨è¹èñuJF8ŽC܆ˆo/)†^s›,s‚¦8]³±Ï{g$ã|¡™?ø:³¡O@ñ9v#ï¶<}Õ‹¥qðÆ]7=Ó¿ÍÑW}XîÛ|›ÀÉØemE7[ i‘\¼:. €6‘n¸èâ#{òluÊWJ¢b‡pf*Âv¤ýæ%°¦ý%u{œ(]g°;¾«ŠÒ:(“m Wè¶s´¹JoÈ:¤dÞÏßËf¤˜ž].ObÕXèK°iJŒrÇ™¿ Î[ób®/ú7âȱMâÆ©Âùœ8Q4ƒ #ÍP;"b°¯w< ‡ÓkIkíNַσR‰cé`€°Ý¶EÙÈ‘I§ƒa03·,&¸ê™`Óî*Bd5ÛØ6Ÿò@¸‡Ç»¯¦íÚMÓ=†zülëhg;·±¦eÍŠe.ÛQTßK4%æº`ètÝ3˜tn÷´#ƒƒöò¶ŒÆa°éIdܨ\ÇÈœvd©™Z}4kK2.ÔÌ-Ý_›¾¥žs:>Ÿ¶¿½óøÅÓƢä'‚€äµ²½{Œñ¬Ã£6­ûå$³1¦ ;Fî;A FcÏCάÍà1’\=–å]†H42%ÃÿeÉ‚Q©x@9¯WcÁJ‰¤nvQJYf³ZiŠŠJE_¥ç,«á»¶htá-½‹J¥H4’LªŠüFÖó³h{Teo;&Û/+ÈÊdß:÷Æ›†rôt^Ëë ÿ%X!âôm€âãé=ðGù2Vaµ˜¨µ(< (€[üƒqišáÙò:ÀˆŠ]2«,ÅŽRP¦Œþëü¤'Ÿèå„@H×ù=Y")åAÏ-(1Ÿp‡ŸE±í1TÀoc]&”ЄkÎ4Niä\ Z±T§¯KƒäØ)«/¢Žlѯ(Yðh³kÁªÞóeã09Ë–ÿnóÌÆý'O@Ñ æo!ÄæªU4ë.„Eõl3-lj,Âäåè/qÞíâ*iç J:}éR}éRq»ôBtG~™DýÑ;Š`BË(±ï¼:©c%  »ÐPàbØà”Q)4|Qª°ñ1ô˨N00¨ùý¨²0€SÇ×^h_±ôZF¦E< ˜RT…G¸Yº•X8Y^¼ ´fOò¢'ÀB¦„Ï$R-ŠÇ#ÿã­KÏ8s@b׃#v³]{ì˜Òf– éf8£ÒbüTçµAÈÁ`~0`È>ìàn,ù„§´+8å£ì.Oõólbö„2´ûÿÖ'Ê]ÀÉžabÍ© Æ]$D8dß99©e8ÄØÈ°¡}ÌÝæ0ÍÆ~[/ñvŽ…~7%±€Ô[‚U­ ¡ux´sxtжvŸììïÀNèöÛc³§s Þ¹Ã!†yO4íœ;°i˜¹JlÑtéÑH"#-èã”r *ÉLo+ñ×JȪ4ÿÑ„è~Ö1D¾ ¶rG ïˆá1¼#†·A Ól³Q.Büu¤1·ÔÂe¯ºž£I!0ù5Ö6€´%rÄ…kÌP„°S–›ð•ö„½¥cLjL±š}ÿ¼JÂçT€±X>–±@ºÕ•þÎç"þü­Gh_YòÔŒ{ÓóñäýR&M UNJwÅ¥€8¹£ ¬S7bŒK°Ct€¡Ïä¤Ò!Ç‘a¢޳´"a9=ÀÌRǘ`Æ 1*2©’7¾÷‰ÑI™³ëKÜá̇ÓÑ]Ùï¹"Y$†uæýL¼ ¼I^¬Ë‰Îx‘÷^íû¨„Iì¤)b9M5²©bŠjdÑIJT8¿äÜÏ£&šàóë¡mLü} _ÅÍ„e¤—¤–q·‹„-wÉæüFÉÕû‡²×ËÍ!˜'nï´kÀ°Þ;,C7ú²ÃœÒNý êòÖ%JÒ¢´ŒÐè)Iñb Î º¾©¯l0Ê!Œ ï2*g¾ŒYG°çv±Oê¤Z®—1CÜiØ)„’bè§LÊÖ¨«}á…ßÚgn_6ÅG–£B{+•5Êtg”lYðÈÁýNÓJ=„’zÜ×<ýuá\u!'?+ãI¨¬ÓÈ÷Ü.Å«¡û¥ƒcQ:=¤ˆÜ_xK¢6Y–SÞ`ÙXCý3ê-F°Ÿ™°h!@BQ8tscí\v¶¾¨Â¦j* 3¤hü$צ1L| Dc ¾éw ÙÏÀ>sð½Ht¼D š Ì\vƒe±¤UëµEèb`aÔ8L´µqß»½10 ž~Þ²ŽUÏÖÅÖî+±dl%’%zhÆtÀ8H:ÉP65\|—¦©»!‚ ⧸T.F[’`~Š6…ÎaÌQ¬x  G Œ¶$ä¡ÕFQË3x¨@®+IT,©ÉÞ°Ì«›F¥½”Mµä‹£Rk´.ö µ«Öy·+–`+xN_±V·ù ¨}æŠêÉıÔÌKû°ëâÙ!l‹X¨_Ú4åS›ú1 Î¼m„U•cÎì¬Ì±ßòpÃHÊ)áR•ðŒäüÅÛ e–ö5§á#É!ÕÕ ½nôùëž$7TÝÇ€ä˜úb< £ˆA~‰B2«›uc¬qÜXÜÆ¶u´³³r´µ`|˜%êù’ŠÆ¬Ž I<«óvUp A NŽË‹ý”èe¦Šä+¥þõm~Ní61[ÑpSùÆ¢ÀW«ƒy°¡jY܃¿  ,çW-És@¿Ëûk-Rî]{„/Ñv’HT×çJxjlôuñÓÖ®h߻Ցû}ÒiÆŸi‚µ„˜òtÿÑ&I‘j2måÂBËG¼/E\yä8§Ao9 <) 'ïT/ŸÀk@iÇs±“ÌqħIMÆxùŸ6ðtU3 öcÃ>Q$ŽÂv{º•%BØLØFÿÒäUõW5“¨L$1llD.†ã«øÈŸ`à|ZûîÒj ä_9ísXòkXÜ7h‡ÐñÑ­ÞŽˆ_G€/„®\Q$ʈu4¼Ah)ÑN‹¸‰4ijW?s»¨£•ÇQ¤~^.enÌ€¹u|S¢E?*(3µ×‰ïÓiN˜x¥Y”ؽǧ§Òª€!ÑÁ@…Z´û5]Wm=‚ˆÇÈ™i«"÷oœŸ0a‘¦ŸsK ¾Às€ì¤@N6ë~óqs]®Ÿ²'ãN`µ"Åýxh ÇÁE'zdÓvµ£ø”J“É RT7@AO/‘3#{7Ot¶T]^^øâç_úÚiE€4‡†G8 `ûßç¶YC!ZÁJ² ÒCJ±ßìŒ Ö©–îÒ–¶ò¬EÔ3½D„\ËÈÍ 4¿§#ú*gúŒáR .úðÕ9ôüǹ#1ª‰DõŒ‘ åëÆ²JçZ_¡êZk ö¶öŸÎid„:o¹J(óro©˜ªÄƒŸ¶Û¨ñacì&r–KTRoÅ%OQ…š‘ðú–¸& "Ù;³ÖüVômL`ÁÆ'Ök»ñû›{–Eׂ £¹ˆ,ks‰žöûïð0—©´ÛÖî1OÝge*F;L%kA å\•¦Âó«Ó’íå*Õ² ²ýA´Ci 6³‹“‰-*h9Ì.†4¦x }²A¤IÞK#öíÏ‚êŽåøpë¨]CX~“ðßæœðŒDZxŒsÃ>ª’¢£^“°jå áùœ¶€NUxïÛk’Šd65™,°Yï EöIbÄ4¥xl‘¦Ú†êŠH‘:þ¼×«oÄEƒõžšçÞ¸éÎ[§ãóßáØ-8Ä]Zð«Ù=wt{›krˆ¯cmøµùàÑw>Ä ÀHÄý÷|¾­K¦€š&=É¡ÎÄÆq¹.¥R1ÉTH+~ –)‚—¡7ÊàÒ«‹ð ´ß(2ÆV" Ù,\KÑ+×$/%¨tiæxpè±Ñ$qÿÆCÓÆè([ðѾ+oäYEgæà"#b/¡>V % {8\×»JjiáPÙš|4cÅ# í¦¤¤‡–E¼`E‚{§kE;A6¸t½eñ‘Ošð·Ç_üâgø'’3vï n–#=IöqÏv¯¦"IÑñÖ“l8Si4ÒÂG.DÕ#°jBpA ê½Í• îžQ¬¬N9 Öʉ\¢n:ÈT,*€·FÊN,µ¹6Ð×àýÔß̺© TŽÖROo(šiTÅ{k¥ùŽôÞ“¥µ 2/.³°GcQ}9=ÈÄÝÐ[rhÍœ7Ø@”ÊAë×ÎRs¹S«óŸJ«³Ú*¿-¾”š ìZØ[_4Ô‰OB§L̺¿øî”çY±é¡Ï¼œŒÕ¼ýÙÉZ³¹&" Pᘓ·–™=™j¦âzÙô¬-Š+NÜI÷I$C@Ç{ÈÚ’7Rt.wCe`]Ká}˜¼WÁæ,¡ Lo<\'šßÀ;p„¾YY»IþŠSl¡JºÕ’E°I°©£óûb®!)˜Ñ ­¨åͬš°J{N).}e[ÊÜM6s†žÐuóî“ãÍ ü³!è¥í:Þ}ëäàˆK`õ\2v¢·lrL… %ÍJtéÅ¥¥%¡jµ&l6[ˆyøp¹UÓ_õkY["挤%´så°M›?K…î8äLðW¡ã‘²hƒL(ÙF…†Œ:ІZñŠ8á\U0ñ$Òž™/Ïü±×EíŽ"X²!k%:Jkvú“šwxù ušœŠGE‰C*¤_Â.M‹Î77Qƒ™`6£­,-û?c2‡49Í+eǤgD60ÌÁ'Ñø·‰+´F£K²ÎÛ|£¶6IWì÷¸¦ÈxåžfAÌ”™nÇ*Í•!E£?ÐT€y'/ë¥Ó‹¼ðnš7·/´µ0ÛßisAÊNQ5Ô)Ž×»G»¯ 0—nty"S²Êj¤tÙ Ùa8²ðän€êÉ’q{§-º#ûw¼ÁŠ oÂ]Db(‘í•8s.U F´ ~tmC:m†^¶ˆ_ÅðÕ ÞC4ãŒ*–ÄÔ`©²#Ðu‡} £êݪg‰FÀâº_ãCžYñÜlašà(Ññ\çÛ–Çør. Ö@çµ"cAYë2në¼ïŸÂ´mŠý{{SU”7aK ÅNâèó¡à Ôö'‘•-Ú¢õIchƒÜކÂ@Ƽ¬s: Ùu¥YS”Û=÷Ÿ;D¥Ö@bS‹ö|Vr¢€CIã[›¤ý”ᮦð°?6âÛ:ø'¿kñ±ôMxQ+uë<©M†€äj‰ªOQX“œ¥oðë5LR²4SÇtM¸´RCäÙà¥ý‹Z5§ùé xu©¯ÓJ:®ÞŽ{Ïâ'ÏV:m#MÇ•“ö:@±n ´;¿®9•ßG†­¯ö9 ±,¥APl-È7Ü|ÕŽšÛsýàÚÞ‰»ûÒ¾žR“¯b„¨adß-l EÇœâ+ ™,ŠÕu¾b"k]Øiä¼w! ö+Sâ¶Ô¾)3qcµ7J¢9¤¥¡£mu7 ‡^²Í5¥ n'T^ê|˜q/º1`{HtGôARsßãÙ¸YKkm;ⷠпÛtAP.f\ꆴA÷æÜ c’Ãe»t²m „ÝG{&m ‰¦–‘÷Ž”È„¾G}RôÞIà¦pçéñØœÝ]w”VtAÁöÕ,ña×x”†Ï¬‚ãž{HŽ Kü>"v^ë8‚ì‹óŸ^Þ5±`­1I¾µÅÐÇ+x*Ù§Öë$¬Aê„$äëwÙ¦[ÙâKëXeÇçùRTæR1C6Ø dúáë± ©¶#m_8dº&–ÊÚ[†ù~LÒ±›«n íìñJìã‰`uãîñ•¯kÉZ:“¿DÂñ¨+½ÌÉv;‚Žw¼º´Qïo{éÒLZí¡ŸßëI™[í´­à ‡ ¢˜Ž´ÙMj!o‡ÏPœa;%×#ã{¶ËAƒ"Tr²}å˜ÇdÀ2§‰qµFÆGdb)Ë«5ƒ){ŽÔG¹d¤EV Ê8 &Ù¦«>vˆi6¶Ó€¤?¡'ÎPÃ+OÀ"=¶o G6¢2ºD«!X2«u-lótç4šWP:Jš#^ º12ŒOP4ôãqý/‚®ãáY«9€Ž¤UþUÒn×ÉF‚÷6N‘¤‡v ±Õ=Yä=‰´…zMüÖ$AjÖU8©ÛöÆn`ã‘§­pI(€Ù»Ä>G>™±'ö¬D)>ý½dŸ62ß’n¢LñmˆHL\  77ËxŒ^a`âHmê©­‹+öÛØ†£k$¾éUˆÉñyñ#ç†N’iƒy©Òøò¯¶HÇ/ȧë0ª„¡aì4BØ(¸WôÉÏ¡AÎeÕ¬³H’‘¤•Ð/Y¹!®!)]¢¡ˆÖO<ÑéÉŒÐ-ÓUnA©E¾Ë6÷IñAŸ¡ç›î} ñÒÝÿÚÆ ÈòYþ_Øqš>½Ië¦VTL³³U0ðZŽ÷t KZ!”oÙÂ5ÖÚÔæ®©ZÄï ½tàLU1Ó4 x¤G5óæG}–k™–…-¥®rÒWJg.ðÏ”âV5g¤“ùYÞâHWT¦‚õ –eFâ_õÕ6ů"/ß¾äõöŸƒÝ} üJšZŒôOçFé£ñb{çd«ýlg;:5Üà•´¦‡MÔfñýd~½©$R5Dkëääè6„ÑÀl94!9`‡QtÐëÿžìh@ÉçѼg Ÿíj(­ÜGFEߌmRëë{|‹ŠíÜ™N÷à‹ò¿Ø_º5jç4„:U¡@©_í¦l‰Bt'‰kÓƒÉAí‰`Í2>¢ÛueȰM5|n˜ìœ­5aâaÔcŸI½£{—Ø}À ճͼÌgw;©«ŠE,˜ÂâwhSÒãÃöîÖ1ÝãÛ ¤1€ÚŸ+¢r9F÷ôIÛÕ«5Ëm Üض8¾~¿ó|kÿd·”“’‰’"ng·Çz5ÍnOU˜n·'ªýC¥C˜rGJÔa{xËîõ2÷c¶im^/òE˜ôžËh_ÝtÞ†4¢:rx´{`íî?Û9Ú=)–C²jLµqÌ óí›/Ëñ]`÷Y}/22ÈüH9À½•0^9š™Á%¿ô—Kârkô"CsÈE²ütÔ"^K''™’X@|Ëõ€ï¸áÜ›²8dõ$+×IÁÈêCšGß²á¢xŽX;T©Ô_¤=_¶ØFÐ6nI’^‚ÿÈ9Nª²A‘ô ‹U+_µ0%Û™C‘«åV÷»ï?òkuí;úúý÷ò~ÒååÏ«~Wþ±Þ?’ߢWð ×h—ÂtH;û4ž&‡6ÌŽ´Ö¿g€MäÅ"Ð.}ß7fS9˜øXZËØhiRg›±W>´ÛŸ¬Q¯Âøtü’Œ¹5µ,Ú¯^}J‡ÂÌmJg¶C¡3åke6Nmlð0ÌAH ~œr$½—ÑË ÜJ*²Ö<%ªî×êJ-Ù-ø‘P³œGbèa†U½s¹mw‘ØT+ô¥B¾³oS£‡•ÌŽ—&¢Öœìßļ,vÿ]72G‹"+bh:³Ë|ü§½ tjª›¦‹Lnï£ä1·I_½*&©`ÐwÄñóGšì¯›:B3Éã«W9ôÑD°›HD¿B Éþ\‰}˜H#±I$iå)Özìôÿ¨Ø 9/ ³°xBÝ+#“GOOÕg[‰¯ßž¸†®ÁÀ¸sà<Õ>Ù=Øoì>i<9x±¿ÝŠ~ïœð³®ç¦9væŸ4×êð'n{oh-“9< SÆrr3éß9[ÍQ*=TÇñdX}ó8^˜:ÑsBŠN\‰)ÒYbP „9'µŸofFJ+p_ýîÔ¹B÷  ÖáÑÁ‰µój§ýâ„ï ööÚÈõÒ¸—Ÿ¡Tup®4¥­+w6&´‰—Âþ¸0g^ øé»¬Œî3äñL>þï±õr 3g–NïÇ6wFÝ‘; õÖ”Ž×AëÒvÃæE3¾55”¦Ÿç6®ï‹ëÉÁÑO™>¼™0Ù\€”{.ڌϊS/öwÛÛ;ó`Sß=ý}Öæ`Çÿ2g[§¿Ïœ×Z{üË䬾<<ŽÏ÷w dŠïV¿_s ;: i^hJïû"À“ÀÚh`Ɇ.Ù%7d7ìÍt1To½I Ÿ*D6ÔÍ2•R(¬çõGÑ8Åj4ÉýüØîa®¸±SØ•än–MÞò €½›K˜7ºWùõceW¾ý±B«Æ[˜^šÈËãOŽwÙÉqrLñùÖ«\¨Æ<¥ goe|„[™2ÇϾ—1ñ|†·(W଱ –ÅE*îÊq*ÏýŒQÍåR—<û;/±žµ½ódëÅÞ +)(q¹ç\bg,Â’ÉSzŒ,Û»îŽúgÓöÿññ‘µµÿßöÑÞ“é©09 Z§æ´oV{ÚÖöw~Þ9²oµ:ÞÛ:~fµgž+˜¨Ÿ,ùØ*|TFþyëhïàà§Ç;Ï@8‘yßÛ#¼²8u.\¯7ýæØ:ÚÙ?¶öwŽžJÊa/€Ù"Ô †OÝÇ“ö³,Êé”eQÑ*Ô B‘ƒ.ìèF¾0xyã„èÎèùÞõÀ¤9f½ž§sÍ“Í[2‹h/öwNÔÂãö¿þ…wÀ%ÍxféÛ±7Å!†Ò&Ýlå¼^’Ë…€nŠÝ3ÎЃÖ0Öó‡&ØWUf˜h LµHþg²Æ…c¹B³T’·ÙySA ù+ÇÙHªüfÁ”–&Pv£ pvJ£‡êÔ”¨ölgë0†i8þ™Ñõ•µ¿õ|‡7æêÚw³×lÃéÿD¬®À']9‹Ö9§Ýž;õYmçq{{7ŸÚä@·¼þÚÃÙš°ö÷ÖÎܹԂl¥OØ36ºûtÿà6LãóÃݽ£é{¬å|DÔn6†÷óÖÞÓ#¤žy--Â&æàÇÒ_ÒíÂnÆNPÚ? sØ'Àô¶7³±v¯ÏeÖfdYµØÉò•î=Ç+ƾ¿º–¹¾ÔY1ÖH¹Až<:j‰qü3±cÔZô²´…R“ ‘tìîæqÝî¸o"7ôÊ€yJ¬zÙRiÄ«1æ,EÕK[°ÒèUê¿w¼¼:9ÚBÙä+ë;K¶ KÞ+²Ü¨˜ƒ ÙtÃõÎ|±úp}e}õa9}õQ>øèÝüðï¯åÃÞÍŸÍür›ˆ½žØÊýõo×W( ×Öpˆ¦U´Êri«v/d½B]y¦5J« Ä&b²ý …ËyÏ59„)ðÉ«è0ïª'|Ù¯g7QïT–‚“Q­[ /ß5ƒëÙ¶Ìs5¼ú(¯åe®–ï¯åµ<3 ÍÕþÐÜ+îñrV‡¿Ä»¼KÓÆ‹*ùÜ÷Ü $°Õº¤è®ÜÀŒ¥;éÙ™Nk%„ ÜßÙ›|@q<ÜàžÙA茚¥íÝcvÚ?CزûôÅÑŽ²—•ºÙjSÀêïÔ†Z»ä“ûkÑTTrЙQÎæ ¯BgXÔQdüÌW§¿¯qxnÉ œ^]¦-í;ï1¸ \‡Râ{ÛíS´Ž™UP)-ã/°â™FrA-//‹¶í¡s~Þˆ”Ïïïð«yAÉ̱8ÝÍ1sq®`IVK’Ë$ÚG×-´N?&¶aä¾ß“‘µ§Õ©¥ºÿø†ó‡Ë®Æp:ÿ>þeíVº N3‘Ð$N%N’ üs [¤4‚Ká9v¸¡4 ó¨@òôð“´YA³MILÓ}”ÍsVÓü!­ EaUKƒº NÛ;GÓ¯M¬'jq<Ç%Ç|ˆ]h©¾4/êå8P,¢_å`U1YP ™ès&'âŠÓj7'Lén6õ[‘µÊet"_>ûE)§æØ¶1ÐcÉšèIãIõê𩃣ÿÞ~§.€µú £ÏÒ'µÐjªn«33-÷¢xÆÆ¶ê\¦$ÍYŽn‰#ó•¼Àu¼÷ÖáOO¥L`N(Ͳ𛬻gܵ0GŒ…ÉÝ«hBŠí³>Ä«}¾;¿Apôp_£—^“<¯gþŒ ð¡øu§Ózƒgâ×ùk-²æŠ·Š×êúÇd[.•ì¡ S0™Ž0ô;ó®iÌ»R³_Pû+1øŠôh÷õ½’9¤„ÕW„[76ú2Ð4Óæ+öþ‹™|Á?1®9)1“J8š³hLݤì7"Ž_?-LÎÍM(bÖtt1µ:å ;ùEhdÖJüµ(ez§ ¯””¥â8wãÔ)$Î4É(õ¥èhÜ31Õ‘Mqeà‰‰¸öÚ>“·ÆÎ,#u]˦‹M‚¼^›‘öé[J¶m¡VЦϢ:‹œŽŒUˆw"aT÷p:£›y ¢]M|p”ðÔ4ôM `ë§åì%©^+É$œXü‚¼Æ¸žºèØ\i~ß\)-ÌÉk"Î%ƒ“Ròd­w¯$›ËçG³BŠñ,<v£a‡T¿µj#’ššç@m"òÅÍÀ"ùœûG 9o “·éÂB|ß-Ès(ŽôÌÆ³h }y":¤ÉªTlmâ(©.•O¯A:°³€Ù‰›é:%Ùÿ䊲I'ƒbiÇé3ÒÍNÇàÔ)º ‚Ñ “°@tÊj:eèÎ'É­–¦©««ÊL¾,a.€q°Yù±4'íT~¤è@ ‚bœ,ÞéÇPfú©g.gÞÆÀ {ŒC‡uJá·%ò‘CúRI±BÓoॊ 6ž¢ZG³ãÝØ2ëôRÔNw˜ÌÏ KÚ¬ÇËß!ÕE*Nï>ækú“ÊP¸U¢Ž.aÃþ¹hyi^¶Ò\[It‹¸[páB¶Q!XÚ6§fráxØD=+U2§I}ôÊãÐvŽŽŽRëOPÖ&Xœ,4ùf5 Xß Ïך1C‹âpÌgOëZ¦à8yÏh¼v;.cÛÓBß÷Σxج¡®dô—ÑFLZ!ÚÝwØŽôfâÈ·KªÛ5q‰ ¢Ô:pÂõR)«…R© §EïTìÞÿÆœÒÇch›):„ã½wG¾G¡s•] "ȵ?.aÈeQ¨Ã‡SúÌÆo¼_gɹY*mÉ@Ðî{]Ì¥Ù ä!>«¡@$S ¯»btãis Z ™Îý- )³YB“A²‰$Ïí‰!N#J3¥«ç„@‚„çIÄ*âTBR’/D)"ø³µ@X³ŽëÒyKË^u½ð$”[ƒN9 T<‰Ï©ôéᜈ§Ž<ãCyé¶à÷{”(à#‚1íŒç'ŒqH(¬ÐÂØ·™¨‹M*:à% r‚ñÕ…ÿ ¡]©tÂÙG¢Òuè§#þu†ÃõVË€|6ÂÌ%Á»Ð6ýÑyën«ó6"<ÕT 1¼6 º)eÀJ¶l˜.Oì=UŸÞpWLsÚ*%oá(éFµL"‘]!qS—r©;9U¶àB¶ >PÊ»-£yξ@¡åa?pº9d¡ãŸõ ?å1Bšè.©Y9‡Ÿq#þÿÙûóþ6Ž#ßÿ¾/ãQL@Ú d$uئB'IILx}xØJDCr"\Á")KÏýWïªêc€ íMv÷íÆÌtWßÕÕÕUïbEÉïRW'WÐKŒh—Ídÿ]¢ñæ|ÿSYÿîæÁO¿…ñ#ÿ|l)áŒHþÃòÿ%,_{ü-ש’f÷Ò¦"fÏ_²ÙÓŒž þV6/µ*bòæË¿Å{rµ”¹Zzg†d †ä™ûHËw±B’¼¯Æ½‰Âšõ*C|µ½ÿúdï7 ÃJb>¶¨‰iêӘ㿄9º~ÿ_Ëí„I³HÛ²".i>ÐIóJCü·²K[É"Žé}ü÷0M[¹ø¦²®Ù¬œó˜Ö¯hÂ%,.OvÕ0¼">m/iëËAýò²sþ8¨_(»°ÖNè'V[±Õæ4ŽKÈ+7xõ.jÂPeF(£¼¡xT¤ÙI+n~Þ!æÂäOŽN·×So^nìo¯W*fd3‰ñ%Ÿ^Æé7†žØé£n°¹}ÂÑC¹sĘ,Ê•Ú3þOƒšý üü ñ|ƒV‹úµÕ*-èö2“ötiHÆ¥y±õ ,y¼¾@ˆ´¹™1µÕŽÆ--§av†ß ²Ÿë¾rÓ™µ,æ±wfIÉBw¦O_VbD-/ë%WÉøƒà;þŸ^'4…áxxp|òrçy|~lâ2fæñ͘ÙþÏq¿3¸FÌñóÉ¥ÿ%yx!8 “D‚•§ˆÁ£Æ°\˜0®23Ín@\ƒÃÑ 3iÇYN.áÀ;ØDþÕ+ ’¥iøÕâ¤jç½á{$<žû4UÄ÷iö>^Mý¿_z“ª.\ƒùEãJ¼fù² ‚¬ÓÝëM—T‰u ¯Ê4]kóR ÔÛW½AÇ+…¯Ä8*®Né«pÄ”“ÀhQõhWãØ×,å¢V=Ú¼]•6"ïbw Ü—ˆ@ÿRÆyI%&#vDž¿®P/õA·Swõ‘Jë­‹õ®’x§Mú/ !¸€ÏP5¥0óñ‹›xAx¬Œù月É¡k_«V½Ã!óxzD0zY¡xqVŽ ¼1¿T"‡1‘ ä§•-ûÖEŽˆ6án*špýë°ÛÛLlI¼ùˆ:ï<Ó­`Aúƒ',,ƒä*êvÍd’`ÈÈ’¨S5("›fà""!}çqtèIÀuéÖèÖœkiƒžÆ×QÔO‘e¥Ú÷ ™È£}WILHŽ:W¼`glvBb$“.ª#5ŠÐ©¶íRâûÐzâ] ï’x êª õZ4®ZŒ"=ùv€€³taGì+tìkÚO8ë#SÓ7d,ò¥$ƒnwp *‚VBÌQ產 ¸×!/ ëQl­:¤7zq"qA á3Lß» ÁÑ9ŸðšD$:Pè ;ùŽø|ȳ“-î Ñ(³Ñ5žEÑÅEÜŽi 03ŽÚýšâúKgAÌñÐ¥x$>íŽGñ ÍV¾“G­1ýì»1…§h&qŽA'TbÔ-òнE½‘†2˪¹Š/¯‚óxlÂx{3aÒ§z$¨šô®™,TGª Tz¾§Èþ~‰Gf@=›N™•¤ùËÙÒÛ°þi£þ÷Ö;}X®ÿÐz÷謺ÞxÔ<[i+ïmÐȈ:Xˆv×Ï…<±>2Ha"ªDÊòT¿ûÅ”ñ޼„”óæQõ¡ –Ò7֘”`×khFj>Ûù{‘[}þÅA^{`×SÛÚ¢1ØyyLÿåÞ©Zhmü{pº£W?Ñg~>>8=ÚÜ®Jï+¹õTî¶Ôçç²–ÍïlÍ/­¬Ÿ ’øÃŠJ¾_‚•ä0l“ÀTž6éû¢ñ¶iÏ;ôÄ(S…J‹„Ùþs2ƒCtþƒí“ø$ï“5J8ÁFÌ?-držŒãñDXP’àŒþQ%h œÕt uì7ýb"ÎêÜ?+}UNš•f™+•æåóÒWô‘­ˆšÜµÂnÒ{Ç33ûîŒ%mà¡yv¶²N„V+Í¡ ÷ä†'×~ižk7MD‘„F‚áÎè ¸Ÿ\ŸdQnþ2O]×ýjÙq×!N`JRå Z‘„Í_ÜfÑ<ÇQSÞÓØtÍkÞ³°’_Ö™s _ÞþúåõNu±©JÞ³•oo¿¶ý›¦¡eÉær#u*r­Ÿ­~Ñk”¡¢p_¼B!ì ®Bñ›Eéràg‹ËsUDŸ`íyL­_§IAJߤÊ`K=}iz?6vDΕ*§J™Á«fg{öÜXÚ™úÿ‡çt?Ñ`Hë¯ [ÿ•QHh_¦Ònâ^©·”M”bzÐOˆ"žV­µÞG9Íò)ê‹‹Á7߸TÙoéfø¬×Û]Ô± ¾òµãöt¿AdáьȤÍ_îÁï5¦÷¢"C,VcF5bÖEÉLYEO€¿ÛþÁþ6[ó+>\w¢‹ÄXE7(ÉÍãCE7C† 77†¯V)é^¦{ï×+‹¿*dB¥TÚÚ~y¼^ßbØ 5É}]=ÂùàüÉ:?í¯Óõ’Š/1¦Ðë^üå’ˆïÔsùk([sÜŸD¬^iG"vVOn1dsX<åkŒ.02nkúÛ‹!9P¬“lt¶xzÖh6šÏé±1XlêÃù?è±"‰ãõ÷>T+‘±ø—,¿çŠ­6‚ÃQÄ oÒ¤­#:\ü,ösÆ+/œŒ…×W+Ë.%“ˆ(›~Šà'BäHl¥­@ÖK¤^(?Æ’Q¬‡>ç†!(g‹¿ÚÒ¾p[¨<½Z¹(÷xVþr…t¹cÑjñäÓ\¥ÒîIêõØ~x¨š|§áP]LÉ£k:¬Ðgïp4]+}/2)5uq¹ {­¤K§ÂÖ0î¤¶Š…à5®qꦀ3N܃çÂáΖÙñI H‘ñýLJ–‡=L¯‰¡)äKæƒ4*Õ¤í7ÛÛo+grŸ•>ÈÓÂx6J§É!fä,܋¾Úza{4àô|¦û"ÖM˜º·»ü,âï{[ۇŠ“O÷kçù—7c LÀN4ÜÜ,nL:Éý•Êû/ooe?oíž·-•â~Mó³þ{[HßÝí7s´Ð¤|xK ‰y‹ùþÓ`ž¶4•â~-ô³þ;[¶òìΦQ’·måÙ¿³qWïl%ypã¯þ{w´ýâtgw«µùzãˆ<ÏhfAâ48OåßÓtD·šÞV|}@ã(Û¿§5ÖhF‹LŠ´J³þ{Z¦ðÓ¦ Ð.Éùomðôïn§zp9û¿§•ÖÃmzm’´Ïäý÷4îåéßÿÞ2¦70•ìôóÿ{ºµóò弭ͧ}@“sDþ=í¶flÅMum÷kòý TZCMUv|²qrz¼Þh¦.…¿”¡ãkDöÕ^_f3‡.•,&#l¢*F2îe&šA¸ÁbªÐò}u,Æ(#Cf–VsFžgâ‰j$Û¤“²%Ü1,á>ó™—~¥´ð8mïî–‚WV[s~Hù¸™=šôݵ\s¥D?ØžŒFðšÎØ”,›jv &ãáØYlóÃÄ­â§fŒ ²d+£Kj«½áçâîA)ÄlM È'R‰³­³,_ÒÒ;ýÔ»„êÒë«7yýÌM"ü®KO|)©‹–ô‹ôtl¾gÏft-Â;åÿ ø´÷$¹ vú4Ëî†hè§i¹¨[^DâÊýb0õ#»´uº±»IuY_yn\ÌÌ«`»wï¯ÇArU«Áõ5Ï…àïÇ´álïì㚉ÂRÔ›t1ÄÉU5{ä ]"ú±º»»¹·µ¾ÆŠÖÃQTÒX5`^l½òwjqg Žɰy^ŸëוoË‹.©×WqûŠ)Äb*ÀÌ4é€ 0®F#¶ÔONf%ME6Ó Õ‰“Ô/ƒŠ¥XY¯ào…oèÆƒááe^í¼ þûâø¤Ð ‚ïûƒú š‚£±÷1Ø\Ìr–´¿œæYfh5EÈàÌ!XO S—«†)ý«s¨ŒG|›À\JL3‚‹Ñ §v+^ATq!.¡S©«Î5’¬'pLOṨïõâ톴Lâ$b¦„¥ƒ ÁÒÎE@³š?Z?oìþUDÚ‚ñÁ:vÇwä5¶/cœ®¿X©Q¦ Q{Œq§t<ÒÈEub»AÄ‹˜$êñÈæ*©YѨ™ÿ7ˆ ·ŠªûŒ†@lAoðèª5‰¨¹Åujpƒgzw½Rª˜Í/ØGlù+¹›/—J‡Ç+ë•Å B«ë•ùáÉzå[z jl÷Ùo«“¶\)GÔÚ˜ÖWb2Ž©Ú1wNw@]!hYÔï ÆÂ¥ÝM^ß4ՑߥÝýW§¯¶½ú†£ çºü6‚r›†‹VL™{¿Œ~mNÍØì[UÚ)†)Ó‚óÔë ¬söÕ”“ÚsŽzlÃSi¯1`\Ã0Äi™hÀÙh-!VѸl wêËÁéÏ;ûÁâ´LÙÈÖp2MÚ°¸âhmL(aë"ÌÁU±‡;ü.ïEbÂ’ö‰EÉ öÌ/°È`ɘ‰ð§*öA…ϱL¤O%FÚ5¹Õq3Œ—áõÍr-X‘õºÊW&šIlค[Âàñß,§xSúfž¯ƒå?zŸE´¹Wî̽òãôÜ«ÕÀûW”{5“[mÓØ# öŽÝkëâË«17kñ×´—×·¼KQ•=ÓßyY»õJó<î?Ç*σ—üŠÂžÃ’¬ÞÖ ÇâWæÍ…µ{QøüYï¾3Õª<Ç>óÅDy‰(×W¶4C¬Ã`w0ø` ÒØ§Ë(XÚ¹«È$†$M FÌÈz·Ä©/L̵eugÃN£Nz첦©è»úÕý¯òª“SÈÈyÄ Ð›×.ó¯ÙÍØ_ùy›/³ÑN,`D'ˆäGØ÷ã FDÜòÃÁÛl@I˜xO“`ó`ooc«"܇%éW&*V\è¼öÌ’omCÒºþ¸ùÇ5µ9q¹²^ÁQ“XØ&Ý2¸©òé¹Úµªq5í–É ;«I$\^Ù¯d#[Å?ö©ØËàaÁ[9×»¯Z/·Þ•Š×¢”ô@å÷ĵ#v¸]\~o«Ï”ù'‡ ÕâÀ¥Ht>‘¢¡ûHG§&û‹7XJâJI_£.¸ ±í·!.9Ø—6«ð"VØÜOÒÞš¢ó¬H0¹P,ê—)¬%¸ ‰«Â,Â`JÍ» ý3XÖ9­ÉVJ>&Å“Œ Ÿ!×ýãdyñqù‹û:tÔÉþ^̼`‚@ [äˆá‹OJzI>-LR¯:eÁMì·¿ô%HÍ'‚ÑæhzIz}ú|*‰“ââŸ0´fˆ0^ÿˆ•ÁþÀ ŽGVGH]³W¼Ú¸TÞŒGݧWÛ¶N5ßOÍȪƒW¦#Ì0 VF“¤Ì‡1²G7c;…@Ië‡$ßF¶ ½,®˜Õ™ª<Þ¸j‹˜ñÓÆQ¾Òp¼kíÛÀ&3UZc»âlaWž)±º¯{™\ÙjÖBT vº=u]ôFñ jÎclrðQý?X‰$~AºSŠç jœ„°jÃâÎl‹2ÁwDÆÄ¸§g­òAØ Ø'"„™OÙåhpMã³}"3#–G¥I씌£ÐÖi|;ŒIÌþ9 ;Ðy´ „ýØÎÃø#êÆ–ò8ªI5T’C—EÄ™]åËõUå7gFT¤½beµœÙ¼#8ÈTRÝ¿›Ù_ÍùâÊ·ëg‹X”_*Ùóîa¨¾¢yÅáÖÏà üsãèU£Ñ(tL½hÄ89m/B—¡”‰DCÈžI$µBF‘çÿ¢»*ºìÒVÝUIº+3 =þz,PGš¾ž]À þjC59öJ¢½Û82¡ ¾/.-U«âÔp3ùƒ¦g‚¥%Ú¾¥ÿQ²õ`¾â~òúYÚ°Z‹$ÃUg Ò”¼ïQ½Jk’Jœ; ƒ–¦Ç 4ð–s…ÁZP9[ Ϫ•1¹dd²ò)AžW¥ñèl‰†š²½gÇ(zí‹3H¼ŽÿXƒ%}'Ú75KZ²[½4 åtSz*¥γ7÷›fJ=m’­›¯|û-]•HßÓlï½¢UääVæëè®Öõ¯W´ùâJæ]sýý¢W/”\†ÄK‡‹Eí/*’_q7aäÝ|‡ÿ=:«6-V‚³Ï0ÅGTeIôæl©Ù<«Nù‚A¦÷ š¢´ô–®Eª};ŒÚ›¿Ðp§K?£â›¿–¾ósxºÈó?ñç þÓüå òÐÿP¡yÓV©™3“&MJÑh>þYyÏ1€ye‹ª…Í~‡ÄH6¯B`¿ÐaóN oqíQ«ée²^ ÏÛ´§\^ÅÿøÐíÑûç(O>^ßÜ~ªhÒÝí““í£ãõÊÆ‹Í­í—¯^ïü寻{û‡ÿïèøäô§Ÿßüíï6©R]L²˜¢£I;ñe<¦ò—WV?yúì»ï0DØÙÀØM‘L,)mEô¾‡ÈtÆç?W¨“XQPÙþ¸LáŠÈjV0²^7 9Žû*"=Æ@&ŽFbLk<« ¯ß˜ŒPÀ‹ž ‰76E Çw*U4Ta·" ±†£b¼si$¶7_´6×þ»¯Oô\ûž±ëýàæ½9YÒÙ²Þg//Eåæö¬]Q0¸Gm:X*™ÊW•çÏ¿ZПâ¦Ö¿DÏ„çp•iUñÍm5´2"fÎËŠÇ,å|H®¾ÿ:/lO;o‚g•÷ÁAÊvÿüâõDK\mmh¥Þ¯xË_R“X~ lä‚®ƒrk|:uÄ/¿•{²„Ýéô¸£Š`sÜ@2ë@ÝCÅrÁV¿ûѵ É%W¬¯¥AÆ:n¡†KoË []~'›ž~hí§>á…˜¿‚£Ë ¬W¬ ðY¿R²Åzï+%ÏÎ~qQÿ4¢›È4ý¬Êp³ièUïtîUj£6Ú-tÚ½™Õºý žø•6M*J/§8ã×+œO\„X<ŸË1u$Z„ñõ ¸Œi–&kšh¥ôƒ½ã¿Ñ‚#À¾—²¹PjG…G /Ý\>54ÿj5ØúË«ÃÃàЋ> ®8ŽeÜö€A#Ö+Ñx&–ßãJ®â9{R~“øÈã\šL]Ë•EM]1uKÊ©4"Ãy£ßžç^‹0ÖxIŠÄ¸æ#+VeDºtÈuH5;Å,sŠ^|Ы3d:WëùDA‘ã.ÏK>'áûI2|ùÙë©”U©ìÒ}²é7Í˲­øã‹ó Ì,Œ0k<# Z5¤pZ“‡ØÓð†@kYʬÓã˜Ò%KâõŠMj+bHLMúL Æ„_iîÄâ©Å<캗;»Ó•<`X'(ˆª„|õÓ÷v’%.'ÝpÄ»—S…yôU%Õ…2|Å3Wºáß)E˜Ë jHÖºY¯hr‘K¼4ëÙX·(G~♊Ñ ‡éÄ^w¦¸ ¥“€°ô¹öãÕyvðº¹ýúQúXðõaú`ðõóäë·¿¤]Ž¿n}}Y)ß·&ÖÝÞ¯Nr•©Í·_‡³Ê,ñýÝ3XyL1DÉü3Ö,¸¾:tr"c$# õYÆ-4ÕêÆ*Ðe  ±Ï" s‚oo²Åa±µÓ–83Œw6ñN& u¾Ú309R ¸fJpÇZªŽ°g£¹˜tEwÅæúO„džuÀ¥„rPiU°.ŽƒhÜndŒ1´š<¼ÀYVJ’€±;DÃÝnQÝÖË%‡&ƒ‹ öØì¨;Êýq̇L&F$)«E¬U,±[õŒ#˜ñ©¨ÝŒºg0Ãæ1NXf¬@3 ŒQ¢|ÆÃÑ9¾ˆq¯'¬ë¦©(!“l5y9ꡪQ*¢Mk˜ÝoOvößáðø–²ãë°~U#¾zu‡ªÍ›ÇámMl4ø¢ˆRÿ„Ô&ž˜Mm^ÐvpR˜PÒ;jÆ•¤©áŸ…òÊNeÍ”ÿO”ÿÏI ó±z] 3&Åÿ§BÁ™Ñ»ÊŠ@«Þ§Ó@RÐ( à€Íe0L] âýc¸€ÈðÇ6žÉ¥DöaM’!]§{»v²½w¸»q²ý®¨ÞÐÊôIu+óm¤ ]Y4¿²ÐÚô•)4Y+-ú 9›F×®K¥/²éÌòu Í›RéH6A6ÓÅ3Ô°eªÇ5ܲ—5,D Á¬Up ÈÜi¤€ð"jMú õR~Ÿ"ÕŠ’v8Œ:Å$M*ï ùKФÃBÁYòþL6Õ¤ÊbQµ*šÈ„ç-Ÿ•dßN3eÞ¾K¶ ÄJ{¹ÌÞÅk¥@UŠ*?œ•ÏRõ Òá-dK›´O.¯®/GQ›n/aÚ¢«y§ßn”ŒuŸWC5€0‚¼&ŸN¦’+‘-(WÜcË×!tÜVâmSÅj°%™÷ö*`L$ùÅ·€ƒ+3Æðº#‹(e¥dÔÆÑ¼²(•ÒÎ>Ôî.½Ñ§Jiï¯[;G­Cz¥O•ÒÆÏ¥ŸôßJÉzêŸá7àð5¼þðv(1‚3ʲ.Çí ‡C¸=È2ÛÇY€'Ù+nù2[Híì; ðH²¾VEŠHÉ €ÕY»-‘6VDC^¯?Zÿ“")Œ‚'‚¹7|ƒ3•¨ †’%)-´\RN¨PC.1K)뢻d­ Êý ¥N¥›k FøYùÆÚËÌÿuL,+“)ø÷–‚YòKÆEWtšvóøìm$îÙ=Ú'ó åm€ç¬°f:ÍlÄŸí³{´OæAÿÊü÷§ Zlëãó˜òs±#Ñu÷þlí“yпògfÊKÓôe‡þ¬OæAÿÊü·£”Å¡ÃöoŸåAÿÊM¾h†™ùcJSÁ 5¢›ÒÕ—O³t‰Æ”QMÓÁ}À³²Õ5å X\Æâ"u€*W‹JÙL‘ô’gŒvŒîïŸÍ£}2ÿ¾šÙ\s|@ƒ¥eU½’€ÒÛc nªB0¶Ó=^-ÜX…½sÚCkº† —+•Ò ‹ô´¬„¼Ø‰qÆ+"è—mu¨,éjž˜W3WMÒ ãŸÈÅ‚0“I?™ý+ØøœžDhæwÙGûdô¯üñ9ºDñBcÆÇ[ºjéÐW w ê¾IròeŸí§ÔƒZ¤¥í‘T6””g9€Ž/˜>5”’N8™æbWŸ’#ăa©q]Â-û]`Õ§ªýòïw§QÉÈ£î‹VyáÞ‚#ÕшiºCØZBQðFÝöh -W‚¼l¬™‹ë×ÔUñÌÏDÂÛ‚íÀ 8ËLâѤÏN6¾¿ÜºVálñ‘D” ÒŸ+ò/ë4è™÷Ùt7ÉXž§«fHVLç©@Š «q¥[ÒŒ«çI³Ñ¬7/éï/tln.,À$£ÇÅf°°Ð|>|~ƒÿUÄ]òÅÁh+´Ùê ©šI|,\æT2Ò¶ù¡´áý“ºÕm-”¦Í;÷£ìmü¯~Åß:l?¾7$ÍׇõÓ7°a`~ÈÀ˜j.`Ô°‹À2óîÄäz0»MAñ†aCŠhÜ(©Ç‹¼áå¢N4%êúŸÈZŒ< ‘<ýÈfpsˤʿ¤„Q7¼m5·KZðºRb{ {¢ª¼_„-Qê=6²Åãí-z/TÄXÄ/¶üÞÐEãBbæÃœÔ6Ž= ÇsæÚÚÝåp.«¾™3?@åN÷½üúfÎü †.Xâ•Ôû{Ò‚9l»€¿Ÿ“Ö0n·è0ydÌ«ûÕhX-…3Ì×Éÿ:']éâ¸í+:ßó€V­…CG~z¢9KQFk òï9ó"‹—æÌ™u{²4Òæ¤U}‹]w=Jîå=¨dòß§üA®ðÁ¼%sXŒ\¼·÷¡“¥p¯: ò˜»”ŸGÛ[sæ{“¤~ΙóÕѶÏðsÞ™›Éº}¼/3y_Þ#ï®ßE»óöÐþž—koÞ²ö[þNŸsïW7­v¯Ó"4µYÙ·sÒ±¸¥‡e:'wå6>CåsæîŽÕÛÄå7¯æ§p|¸º¿›¦À¯æ§°¿»z|˜¦À¯æ§ÐþØZÌV À@¤é$¸/uiŸI=•`Nê£Q+Zˆç‘ôÞÞœäéàí¼«wgw Þú•7sæïDÃn|ž´ø@Õ’ˆ9±¢ÏsRæŽí…—$}¤û?ýáþÔàîRL_椇è*­þºŸ ½Ì—{I7ÔW-Ü•rH+üH·|z¢yee_¶Ø˜Wž  Žxr&ée`ÞÎ]zKbüøuWórP‘ëF-(û³²_þã¼;õÉÑŽÏŽø÷œy6öww^x™åÅœ¹$P °égI8»œ‹>ß“ò¤ít‚{P72v]ÿÓ¼sl@üÁÏI¼áôqFª9ËÙÜôÈmnΛ+;o7ï3kM¼8/¿y5¯d—ªö«¹ë-[Ur›´ÄÇ{ç´i ãa”ÛÑŠ“ýÆ’h›lw¢vwŽÒLÒß^b ;…ñ|EJÚß¡•-EµÂNFs67•ç÷® ím„ûWÇË~¯šõ{)rtÁÁy2åúç¤JYx‹.bù¹oó×”z`4d&‰¾¼Ÿ¤8šôÛ!½?ûy)Ñû8/o=ÿ_¶;ŽÊ/æÌ½·ñjg³•–èì»ùÛã ç²?hq´†¸Ÿ\ïJúЇ)EVÑç‡R¾îÎ"|}î“ΙӾMIq¯¹•&@GÅÜË¥˜wUáâ۩ϪÜ˹gÛþÎËíã“VF—šz?¯Föøo{§';)•¬¾š[/°½µs’Ò àżúC_{‡Ÿóê‚3­?¸iŸ=Éæ~ödÞyŸ§õòbîSLjgE8ïíÜZ Ãà›CÛI’%Xôù~?g‘ÛÊnÌŸúü | ]ºB[ijÇq/JµàÎÄs÷ÄVç–¶ZÊ ™ÝÔ¦%™÷dz5èFV@.*`JŠ{J³ÜÝIKBúˆ¶©ï8Wð·]Ï:`¤Ò<´Œ)“vfºÌÞ)³öž”¤Óz_çÕm:“n®‚ÞÛûÑ)®^þã¼s í²?i¥ôøÞÛy{5­I_Ñ“³RLÑçy÷ÑÁt²¹oóÞŸ„£Ë!Ãm¬h OMóÀ2,8ÞŒ2lšû–!·áE”åËÃèµ âÚtÂ6É}KèÅýIÒÚ-¢¬ŸîK1¹Btôf.ð‰ è¦Ü—ºÄhK  ùsRUÌÜÖµñ¦ÞÏ-Ÿô?´ ]RMpJRIš{-ì²¥»¤œ^S¼°èûývgÍ”cr_ç¦ /rÃÓ4S_æ¡iô2_æ½õE<™û¯ç¥4HÆ…¤ü÷÷ÑÙûtæ·ŒiI y0jIû<ÊÓÝë\U¤xÉ|¹½¼ÙÿzÞöKêÖø6¥ûó_Ï{÷4é02ïíܧb–øNèòhœxB­Q!å\ªùÏ[¬$ËÌHÿõü”àKÅ:·¤€^æã¼ý0(ªž÷vn#—¦Ÿ²FA…ßïÁ#¦ÜJ<ð¶cæMǃo9’˜\eÉyoïG~ãy:x{ßÝ1Ä[™Ý4ÿqÞs+ªÞ$Â)¢Å«#;}¦$™ûÄhŒfqRnuºÔÁqz²‡•$Ý–YL³Ë+H|o),{_•ùr?ÍD§ ˜ò¼BÞ?„V‹A‘§l ò©Nµ>̧¹Ç9>j 3ÇrózÞž§rO ¥ÝÜÀ-âO?ô>pÑ<ú—|N²µýrãt÷„ƒl“>Ïñ ± G^­ŠLJl‰U‰Œ[1‹n”¿uA< 8g‚I¦p‚ˆ Ãè?þ±µ{‚6¶`*}¶¸Rò~WJ_J"âZ¤3ö¾;{/©ñOX<žÊeyq†c?—ÏÞ[÷¼·êg÷¯)Õ;õ‚UvZ¦)Å×%YY’ZòeK™žiÁOæò%ã–áòs½‚……@‡@"Þ$mLÞ«ø<&V%c“Û`#؈wUÑTIÊIçf—."e‹=Bê\J î!õ{‚gY¨ƒ’Õ½×ii[?øJožù;¡LÊ”v¿è[&o¦„¥8½õTÛîW:Iž‡ÞúÊüôú;Óê®ðŽ˜ÎS$kæÓÅáüçéõì©GæcÞ- )Ý÷ü*ò3³À–vTúŸ¶ÎÂv+œÜ´=Áý¨Y¤ájB ÂŽq$~J®²=ûþò>Üþ`2â ~‚ B_FƒÉå•Å&fĪúà"8 #a'8?EÐR¡ê¨”1Aõ{äÞ=8N®Dcòˆ—*Á²-Ô î´R V‚Õ`åq°ò´ôÅAy‡ÁRø…¨ŠzgæÞhÜÛ²÷K“^˜|–¿ûè}ÀdäêJì7ü¯œ‰]ËÁ\01ZPúø=ÖPÔò:\B¶öèu¶$`KÞjéËÝ ÆÅë„fG& ·—4´×d(À{Ìÿî‹ôöµM˜éý=X 4äí)¨ÖÈ„èK@Gdà)A8-qR†K{Ÿ (n Î®*i™4µïiTÀGFëFâ &Æ#úS9[^yZyðwý }{I ¦&aK±<©Ó‚3®Â羟‚Eÿœð  Ùßæ8½/$ä+©‚7SÓR£‘IÛQ ÐKëN⼆ ‰ÐyÚ?j@±½æ0³¼1„\¥8é º¼Qá¦C‚n:Œ!Ÿ=¤ÙtܨœÎ/_0LÂëÜ!ÀS */¶_íì<=(‡g£órð¥üÑ”pÓו¼èSã@!¯âöè˹ È/5±Àש/Ò fíVD«U ~4뼉cÚJƒ2xÚŠý^s~lÂF -’Zx²¬;IÈ(L8ôá h± +ŒMþÍ¿ÁwPâ^³âgSJ@ñJ¡)ñr+G‹ÁdcÆg–×Bä™÷Óêx9Іˆ‚Zù¥òÞfY¯|ý‡Ö‚Š9³t0–Õ-¨<Óþk0ÿa8©öü¦Éøj£Öߣ{±BÑösÏ›ošÃr1×Ð7€¡³¡Ñ=€û]æ–0°ñ‘bÑëŽtð‰‡6ËVa lëòû´ÜË?ØÍhf³ꇬÐî~^°dðÈÌÒ /޼XÛn•hÿWJW¥¤ùKóøm™A5ÿ@ó½ün½Y–.ñáí/x÷èÍfiF [‚2€þ$ÍŠkc¹²HßÇÿ(­õ»Lòl©qöëÊ“ïϾœUˆµ‚4ÀšZ¡¯oËggïšggß4/Qê/M)}‘^õéŠï—Î¥°µ;3iTØÊ5¢ª¬I­f×hu&q>—ZÌN8¥RbŸ¹YÍ,¦„N.—ß5ÁµöˆÔ<ëSÆ/”%7 >7}€ƒyïé#ócö,rs(à-yéCÄ<帷âÁ0ßÒ«w´ùøPàåÿ¯\¢¦ mŒMNë”E0Ú­£n'¡ßU~IâÞóËZPþs:3æuÔEëœàiëøïåøj‰¾]yW5U‰äïy4¤éÇ·ßV5¾ jº.ä߯ïÌ«Iú-Š:ÄJµÇ ò²ó{}©íâÚŽ´!+5­岿¡‡Tý­©Ã·Ác£#䟶Nœ·JßSÍþöÛøIïúHP6¿8vd‰­Ø’J¹aÀ±¸â¸ÅÕ±0Àu˜"ÊžÝlÒlqa¸ü\é¸|©\Äûe! ”,Ѽ,ª‡˜‰ Š„€Óoå%ƒòˆÃ–ÇÓ8“H«0›r4ë…í+êÑmšÙ c!ø‰‘·zá­žÖÆ#Ö>‹tŠ£ï‰‘Þô:P’Å%A¾­ât¸ø«üøÂÇÃ?Ë?t²Åæˆ(e¡—ù+uåF¹ÆW+Cä°£ÇKh F4&øÙt×\¢¸ö-ìöÂÓ¡ëb}_ïqøiÿK¬ ›˜ øëþðûEy^;³]¸Fo.å•éHûÊt¦yñËÚ#¦¸öûÕ ïRǨÁvðª¤Ì—w¾uS¤ÿÂâòVøœr ¹ûDeÀ?S)‰‡œªŒövÊ©J)ÑžûÆ.@¹\N¬¢» ’*È{«édöÖt¡|Ê™4® <p,tÚ+»ú½G´R ÈÕé0^?AÓëA›UvØ—Rm©‰Z„ùe<žŒ#‰0 PMcy H¾ ‘Ãd#îË<t&íȽ.ùÞÞc¨I4ð —c¢9Ì¢©´Œã”D!Gø»ònXß×åöÝ_˜7¢;zìÄë¦;¸¨\-uðåh  „|åÿ¹ÙÌ“ßYpÖH¬©µs¤l)Hj8…ñ†‘ÍÓF(XìP\wãÑuL=xhâW'š=õä8maÿ¶‡†çáÐP—\ ÝI‹ôŸ¨¡Œ:­Q´þÖDóÑСïÞ¦ÃûU Kúb|ßZ‘ ZóßþceêˆÒòŸô8´g;lÏÌL—ªÛ¹ÔMÏÊGÍ9#shÃyå¬Tn^Îw̸ÿ‘"}Hت[³ _p:ó”æ?K2©?³™R•ß}ë×Þ,½û|¶XmÞñâLÎþ©"]Ò™"à3G•]ÒÑ!X§‚ÊF¸§B¸$"ï«"Ý#XÑ7ñFÄë|•í…r-X­fs3½/¶bøRÃ÷UªÙUb9„í¬ó{¢Ã‚:ÛÎåO1|£?M=ªA=X1´ÍDífÁq0iÀ¨N¸¢J&ÄÇ'©ߨs$P¨ ñÂU)˰”kZÛC- ØÒÎÒnÆÙîZŽè8’¤ÛXæÀß°àÚFĬñ ŠnÂÞ°Õ”ˆ^Øðý:1÷Cç¶ŽN6·Mø,"BÕUó6–¡¡é•È}KÜ&|•'úXkã®C:Qú^‰£Êó¸aO‰n¬v›žÊÚÓæ#ê*í;“^ûކþQÓ˜{hÉ$ù‚#³Røò›Ïg³öéÔÙÇD½šrú)–dÍæŽðtÌø×å X{™8Fo^gE4xm30¬\¤k•yÆáeƨ‚Þˆ)ÅÚÛ—¯w7ß16>{•è×çÌ ãþ$ò£¢ÚüHš§óîÑÚ£*§_Û}D|sm/¦^<#³\9ÓSÁE3h¾«Wµëõµº{ýȾÖükú—dN¿ÆPùÒ᫵óòx}‘þC¯ð¸V ¼ˆdèy¿è¥/9¼pzËV2ŠC^f{C»a—ë• &£6’» [hz¶ää€y.VéBxb&d,½76/A }q±îécâ6eä•:e!Ø5w&Pýg”\ÔjÜ*Š«,7¸_™%½Ÿa ·XdqãÀ[efÙß’HïÇΣ`ëพŒoÁs@ÊÜKkÌ5šÈŠÁû5:}åÁD"\Jr˜Ót/àÍ[Ú¨aû˜Ð _IÃ9¶6•Ð7ߘ>K½×Œ˜%¦,š®Øë>bZoˆÎ4Fó5RqvSuw(. ƒO\˜+“)A~Óñ{S1¼ e‚N\h¼ ó…e“ð\IèŒ3Dz„(Š|Ÿï-ß®þïG•[ŠQ£&ÑÇ”ÖDÃ÷¢*1çh0„æÆ\ÃÑ>H Lä„M‡ Ž øMÿšÜ)0^ù±R§Múø¨ÉÙœi%7q½â2±r§òƒ—íÑGîêó/oY#™þóççÉç5}®Ÿ/+¥¯ÞW\ÉTD£b¶&žM722l}õ‡õà¦îÜò³‰©î‹™f“ú5«N\[ü±¸iËèê:©¾¬9ËW `ï“(Nýìùá1±ŽÁ~4ˆû~Òp}´áÀX(lË1 ö6<9xHÐlnÌb«¬9²›á™¶zñ­}ƒmàÑÙgùsö(0zWæ’Q‡´sË"Û‰‰—nîÙ$ö›ÏïXˆ'ɾÂá°µìjAY’¾¨×"c#Jkõ5®ÿñß´ŽFø/kHño¦–TíÜèxì#X&È gŽâ`܆T6·y?8îtŽÂxÜù$3Ȋ۶¢dÇöÿVHn¦.§ÇxT~ž‰|ÍCÌ3Ç£×pª69&b£ªÓ •L.àËÎâÏ`h³áf{½‘zkÜÞ1›Øˆ:M¡Y´yáæÁ:ÏØoß}þÌí€ã\¹Ñ(˱‚„Ü´åËbŠ~C•iÙ:N)Usy…7ßþ‚²}n6Ÿ/‰y7µn‘fhËŠ-—«÷ìæ…_‹JiºÕ˜µ”Œ„¡TÒuØg¾eß§Û]ZàN…Vì:!8i„ªø<¦ÓîíZ)St½´²& ¯¹å@_д Ø&2©èKäOæè #“jLAû¤õ]Q˜d¦É^Rj˜tϰÍ?­é#WeÈŒÈ;]¾V=Ý3Ï‹*%§ÕC{ÀŒ,Î]êÌSJ-èËšÜÕ;é¼³;©éUÒŸA^ªtÆLU¦?^b/ðZõÎŽüÎæÐ0‘’Cåéô@MUÒ¦6½é+j}*½;…™”&"¥­þžQ)¹)e[:EeZ®ìßÐRM›M¨dw'ÁFiá9|;:á8J) M q Ø€• ‘_î¼ÙÛ^3WFítn4²Ü%v`~]·Q82aÐWÏ–åòÂÑm!÷:Èöß&QÔ_/©Œc>¬WJM/‘hö°Áü Â?ã®ôšCü´í3—ÙÝA®gæ'L„ù¹" F|—ʪs×x«~%ÎÊVÊÑsI™Ý˜y5“Á̵ç6J°YÙŠ>úüÈÔ¦šxvµÄ/­$os÷“²Þ8ÚßÙµ–­3mCÆHý²k]Ì…zÝ«²‰=S,ÿ}ȯ>ÿòà[A¶§y>ᨓ|c;ú›E}úæR?H¯Ó{~0¯Í|³¨O惎oí³ù¨£óÍ¢<èkxnýêUì‹TB}sY±ÌÑÝtzç¹xg—ý÷&n°¼oT°üŽÙN´-œÑ;âѦÝãHÀPÿ°ß#mhÞzí¨½Ü݇ˆ$6za,Ú :~A‚<‘úÓƒâ%c¡p±"òE~iÑTäáJʵ1-Õ·aýÓFýï­wæa¹þûGnþá¼”|þsæðóçÏfáºÒççÔÞ˜¿åÿù›"!à›\Rå™äúÖ&W«N$Ïö“Ûå³û*ÌOâ~§¨d“¥ßÙ¤éš_)Jé$þ›\ù¤þ[›\7HI¥?ìGÝÁä£þ‹«¸T6:ãŽÏˆy6•Ý Ñ°alÀˆÀ(Úò†>?š×ØÜ|ž-•RãÙjgßõ«5ñ¯¤uânà+Í “ }ÈUžR–ß?÷”ê’[ŠéÉůG’¯=Zes”/.áSa ¿i·q—æ!q‹h„ pMÞøÓgï½úVZ:»ƒHaÁpÇÞ…q„˜$“Q¤j>Mp¿ÝêßR=ìvÔ³b™™Q¶ør/WP‚€‹f&5jPýfHðÀ©ë}’ù /î³;óÝi7seˆlºö:'§Ë޾G™º(sCÙ|”WÉ‘ôŒ~]±ÓÎ=ŒS“c¾ÙQ%ÏAäŠÍS9¯Ú߬3Ê×N|‘˜‚²~œby%«›G ÍÒöUØ¿¼cLÍa”­živ’ékž¹FyM>+}õÛº‘¾¶"ÿÒ)r¯‰PÏV*ŽÐ×½!”®G*‰\Ù³ž)íýØ(µÂ‚ÿ®{ýŒWÉ8ì I¸™ôǰ#¤*à­ÆÏÓ±&`Â_Ri¹E‹ZvQ}\sm¶÷²˜öu¶"ïYI»˜y|¬¼2îµâµÂ>HÉ "S0U^l¿eôÁöýÜúàLŽ"}pA’™$æÖ»VüŸÔ7y0ëWÙ)PROíµÍê}y"DORw?Œb&'»#ó3ï&"»õ¦UO>žÚ`ö/? 3¶°2{œþÊ[ßAËkc2`)‚þAs™«â¼ÇYÝL¼¨ÆÎ³à|ê3ŽÓ ¬Ý8 ÜtCˆ¸!÷žÃnx$áEÄÖ,ì?.˜xânNÄ™@€t¢1  ðUbß`Ž °u°¹å³7"ŸYܼ =Ï€MƒIÌ!áhÌ$ÄŽ]n[½ÚønÐrÐ1qPzéä”釹S“[d¹PµÖ"7Y³èÀ\ƒÙ´j뢙KdÛÎða!8Õ‹\ƸK F<;'a/#ð²éJ{ ß Ò´µ×aDÆ– ½V¦ jØ@s¶ºß{©–ý¸†ž Å– ÎÜlpa­T[ *Wxm® êî×07ç{®€P—.±nÝ`nA/í}²±Ö¶—àŒU“(%šÜTWoëKú€f W¦œ£ œÄy]254×+ꮊ±Ç.B.NhªiÅ%¶Ãµ`cçøê]±w*{˜!6’FǬ.?ù^¼Ò©á4»£ìü kpß/,„íqðdyy¹aÙ)ŽAIí—°W¯›%KÝV{S“£•éT®È›\to{76BfŒ¨UCšéEW•J4sQ)o翦ôÓ^RfÌÈ>ÿ¥Öýÿävd†³ÀÝ9± Ùƒ×ô»îK® ªw Ûo•fñ°4¨ÿS5™o8š÷èáæûøWë)-;¹ìÞkA»#=¬k§ì à†­5i‹£ÅªÌ¥Þ G¢Q³£«Õ Ë@DÝÛøë6äözà/t(ÅÒ¿¸à* áÒ¡©òð*¦ôÍÄ3Y»Ê 4…ýP…:ç Þ{˜$‹Ð¾³3>ë‹‚eÿ}_Q G™5ìÇb6¼îTÖf YÓr@Ë‘=Ää ûÅ5¬m®GpiIoµ=³K]ŒÂK–äÀ‡½ÖÄ–ð6«ÀlV$ í\¯öOEór&«§S#.ƒ\ZŽ¢º@cKakÕ«^D¼Wc×ÏÊ— vV–¨øë+Ú ?â¼$U²vȰüÛ`ÂÒQØ¥}þ7^)¾Ý°ˆœ¿B“'N ¤Õ 6ߊ"±A8±ûÜ9Œ»¬ b½+Ó3Æö‡ð2 –Âîy­˜˜L†,ÎÜÙ}ÕF qgj,×è¨È¿fHŒ$%i›@6Eæƒø¯þæø<àßÞ+ÖüšâÂ^"óÎ¥"QÈûÞ»p_hò{_Fmþâ<œ±ЗI£÷¡d„{ÉŒävc.ø›ñ„̽@ñ¬e¸ÓçÎ‚Ä ¦ âñrˆÕ ëâR,we|»/ò•lÊ‹G{ÁYyQ“œe³) ˜(RȦ)+1wsðã~‚…?‹ Í\ZðìíÔâk¥ó[µž – ^_50}¸ä:8Ù^#Ñš%X“wT㊻'–OaÃy€«„dÆ. ~±Ƹ¦j$â_w8|„彈·¸0ë HY·† föá!f¿«…àçQ<ÓéŠ*ùj0".JrñøS|ù–M-Xùá‡gì¾7ÞŽøm‰Îz«Ë+O‚—#š2ǃ‹ñ5fÌK¸B0âQ-Øé·­÷$Ú€„‰&|Îç)ÏY ¦†·ÊJÜ‘iÿ€ˆ]Ã=­?¾}.^‚q¤œ{ÛG›¯7öO6^ììîœü 窗;'ûÛÇÇÁ˃£`#8Ü8:ÙÙ<ÝÝ8 OŽ·¹»ÀweTñV™×("†Dç—s(§hªÐÌn2 èÄðú¥W,}«ÝÀ¨—˜£ èËt臓ó.1™]êñ>iètŠ7É[] ÚÔÞ¤IóYFc…ÐL¥"´%Y£f³ò5é ­ÂON™&3 ÐÐäJ­A£›vdùêìš×°T©"áu‹›¦hñ-†Vƒèå(ìñAW¦¡…^gꬊ1æÞHÔ¸ãá$®ˆGÜõ3ë{‘_®—0X66ñ#0î°plª%‘™®Qc%5*>ï!² ‰øÅD”X?;'¯NO‚ý¿á:åˆ&ãßž[¶Ç•!ðzÃn }…Îcªe~Èô ˜WcÓ\˜5Ͳ{•4Û²¦ðá‘N¥Q,¶)X„wO_€œ±ã­nÝì:$}Ê­Î/ñ?^ÇõfóúúºqÙŸ4£ËfWh$Í &x¢ »lÆáåeÔ±B(;²-1Ræ"E2i”ÂÔ4F ¥œÉz¥"¼Jŋޕ’ÁûM£ùö&}Aƒƒøù+ñøã¿·vw^mý­“ƒõ¹¢U0ºÿÂÂB ÞÚD€1ÌEƒo?³’aÉmÜ—eæ5zOX8ƒ`ö§;:Ù˜C‹©Ÿúq}Œý¯æ7:H’¨w|;Ñ7Ž×®v㘧ww2M¢á8>#ñ ¤w&½¡OPCpj}–ö‰Î…:ÚHdàý+ˆ±çˆ™€6_B©¤c|Î$'¨ó9r!é‘â„B a·Cîu}O,ÁFiW(óT\>¸j†(˜K!»Ø0ºt(HxÕÒW¶þKF/ÞPxì —|˜Êñ»Æ¤‰ÝñYo3ýwk8¹ g;oQÁ¢s M #³8ý[ÉÍPÛÀ/¯Å;èã€U]‚»¦ ‰>ÁC.ÂæZ_Nq†Óþ:æþµþÞ"`Rsf<˜…Ïæ<ß°kfv4ldÂ\0ô+CíŠd#› ?Z$…4Ü3¿–’b`>C&]ºL-%äýúÊL@›D¨mð¡:Õ9֠Єj Áy<œ;ÞÞ’ÎÝÞŒ‹Žä A‚5áÇ [Ûð®ìYª¤½Š˜%ë–1K+U+šÃGŸäéFé Õa½l‘¿W’æ/ošÍ²Ôõ}© 2ºÕÑGV@®tÜ·¶i›·¯ ÀÞ¶)¶mÊ<æÍC1lâ—6ñK—øÅñV mï¸nì »ªf-?åÛßãLû{þڤà #{@pC~]@µ?Pµ焳àÁrXP,záMÜ›ô&H=¹€ß!¾EÁbí%²D"–¹ÁR0êñ€”e:5‚ÁÜŒÙ^U‘o›o^ø¨:%/²F7g•¿ÈçÙ‘®H§íMàCK¢r8ø‘ÌOÈ<žŒúâ«,Hw˱_8µ c3˜D’E²Sÿ#BŒÉÀ?JüAühL§¬n›lè”÷Œ#ò†4Çǃ/6¾;¦>]×(êÙ÷Ó3Mlí+˜æydy) ›z¯q€è×ýªfVf$\‹€­‚š¬áod²Ê3hìIôªK;u×`tc·7ñQZù·î;ÂX:\FÑgxb¦Øta@žõ ìðЬH‡çá2Ò¯˜Žï¸îÛãx7¼»Úß* !n²eáÕ"Ç/FÐüÅf¢ q±™w™ “dІŸ£¼ç(*žD1=D—0ý³ÙEL#’¾dÏÚà}êe—„Tž9 †Ó·‚À’ï—XåJD™„ ˜³É ¼–„Ç"YvãˆëÄÿ= "©šaÄ,=î «eà@Á¼Mòñ˜´JÙ׺íqèAÛb ¦•9†“ìsxò†Fãq„pâsÔ( ›³[±kžDbòX …¿}˜$%•>ýÉßnt†"±¼ByìjL‘ åGLq×g|”Ü L¨¢†Ä>Cõ67ñ?íW¾£M.$§ãGžˆPû²ÂŽ… FÕíñ|7M¡sú6 ¯uèäfsSy£”¢eö©a¶ÒU¹:ñÛ Im2¢ŽTˆ.ŽÉ5³@“èÎB±ü¹ÅxcšÊÖÞ}nCœˆeÕ¸_wÕCRÍÓzéÝÀĆñ¨¨ñ©è`wöB*õk!Üñž„ƒF¢NÔ¹³~~èÝ{UÕËèkTøsQ%?šW†ÿšåg=`RjÕ*ÎpÆ·_´g‹û{|X5¦ž{kªÓWAÄê¦V Ô°š$-”sN:pBÊqÐÇ¢[`ßžE÷œÙÅìù! Îã>Ž…XuœÙçõÿ:ÕǪxqŽ,Y+`z®çuáNò ;®É_4–#ÀŸò‹k¨µÞñ‚žG— ÏZ$ÞÔi;ßÛxµ³Ùb™Ë>²È5I\ø®'š Di vÈüãO^Ä9@û“é„ýøÚ@Ö»¤ÒqòÔî&´XXD<œ°W˜ríN°õ3m°NÀìyR7V¡·ƒƒã€ç&Ê(Wô‡OZ JY"xÁÞ4–?¥ˆIœ<= áqJ/h¢ƒíB¤Îj¶'G$z¥n§Ó€CÔ½#¤ 8Nfaûª~ “-ÎÒ9°ýw`úm:¥gOˆÊxÁ`e¹ñ¤abÿ9ºÏžð ÌÛró§¨Ç(šx|Œ’¿žÖÅèPòù ŸÝ¼(ƒ*éÙßfѸ ®ÙòŤìFU”:xŸaĊЊšFŠ) ¿Æå}`ôTü&EId°ùᘀàéf•^ãú‹ ‘)h§P…¸*cz¡ÎlÌŠÎŽZMÿ,±ìì9œQ°8°«î¢ƒF”·äO¹èìÙ ìb¡½ñ¸x\óOé¨ì©`ì,!åõd8Ï5Ò!ØS‘× fqKtݘö7RÁ×ý˜ë29ÓáÖÓQÖ9¬FSßé~u·Ä ᛈpԩý͛Ʋí ËŸfÆ`Ÿz]Q!{áXuÒLš·–F:ì:o)Þ és‘©ÌºÁ1 ã€ˆ˜–*^àgGk]°ˆäfFl9Yg#+ ¸™©Lƒ¾‹ÑÂI!úÆXƒ¼{Ô»û{ÛE!ݵ®™×n%£3ýMPÓÖŒS¼_tÛÊ‹G¹éÅ Õ!‡Ñ¨'G[ÙFæ7|¡Á]ÒÐHéþ5~‹§§ö©æËÞí¦)9©É ÝèR¥°¨¤15ú»¡Š?aã¤/iœ·†àôôܘ\^¥Èþân˜%XÌ}¹ÉÕ Q¶>Å:R_|¬ýö5íH:5ôwŽ»¥¾¦ý®(_,K6tà„Ü…bYqfŒñâŠdOÊÓ8y®¬Oqï‚ðå©DÞû™¥Ú­JNÁ ³¨aW•«¤/‹÷~DO÷“d*èÉ )d0ž~Øb¨¶Â ºÇô'­®\wy¿Íí“gû›ä¸‘µ¾¦ý\Šæa9\ô!]lÔ'fØfKŠ|)¼Éͽu4N?ƒÎHÀÔø²@•«*bÚ­CM[{¬–Œ>ˆ•­ÍŸgá$yùœáS¿Ù:Ø3J¹>bÃ3afÜç¡1§‰\”ßF®pkrSX¸ýjb­PG”oáGBí“«Ú­£&¥Æ©ûÌE7ãL7Ù^E¬Ê"}ªÇþI—¯¤½* ÛóŽ9òâ_WÈû`ÄÏI€ÃM– r¹7ØÀs@l\½T«Ë ªŒêœ¥•>}ºRs¤MìT'×%-SX®oì—éÄPS»h7Ï•i}ƒž)-Ì5N½¸?IZ»^eôÍôJ¿¦£Ûný´q´ŽÊüõȨՊßÕÉrÀ0k`—6ÝŸZ)›êuXÊMÎ%œIÊþƒ>FÖô'ÑãX½ÆCŽýõiKöbßy¸8ÀŠŠÊ$!&)}%ÓÜCÁÀgÖlBI u1˜˜Er&NýôYÑÁ0ßãÝÜ™y›¡+æØ[,ž˜Ê27>jÝ}úMÑXeTë"…šØJ®ÃÛÄ~š†dߢ×EZ|ÖÔg˰R¦þöuô¹÷\i³ËqÔ¤+‹{qn=ÕÕ¤|(gÏtQlín„-&õ.W‚´‘uS7毦ó)b™w)‘Åzm©âF£Õ ,™‘µÃXUÓo…IÄ9On<íž÷bFa¢(óy€)Vô†¢þ›{ÜòªuRúf7­«çP+ äƒ ãk-·ªý¬™Æ2|{+g®NE¾ŸQEßU2žF%ß¾üåéþæÉÎÁþ1ñÕ£í-vCPª§GÛHŒƒ Ö푨ÜxžïÝÙx±»ÍÖ·”¨~÷?Ü?™\qbæ Êëõ› ¶<1DÍ-J V?GF亩M¿aô¢Êy±IĈ´´`ÂLJjü‡ˆëeâËo×è?ïÖÊ¥uJU«SþÆý®l7hj2gb1Ý´ tÖ,¡¹èž ¥:d2‡ïÖÖÞÒßµwøo!ÑC¦zxWõÄýÎt‚üCö ξ1_­²m³ÄM^…}çñZ\*œGKÕÒ¯:g“(¸Y\5  7ñÝb㬹WŒa±¸²~V~¿[ð€2~Ø<XÍ î$*-®œ•³tnÖBâ`µ<¡GkÓ)åI ÎDƒr5›ƒ:‘£=£eše­ñ(O`J[ ëw¯F2°ÇV¸n†Ý¶Ø´ÛÖÓnDâ!ãHôVBïEtiH¢­›k@ž7Ø…¯ÝÂŽÀ8KÊåçÙÈ&î»­© ¨}Æþu¿Ûí°}å}ŸÕÀ†ÝØY«Ý¶IìÏ! •´'˜÷ú3•õ¬þ(õ›~1˜S>¨‡ú”A¶í-‘I×uHʦye34åäk~$_ÿâù Ô¿þºü^ÇÅì wòro“ÎT§éÌ0¾y¬óE6³)žªŒ6‚0N¬scÈÚo‰…÷‡ÇòŠ »]âÕ«žg"+„ ¼<Å[Øxoìînož´p;¦3úÇx4èóå™Ù(j&€$—H„>†|¹'Ö€“ öjLzƒ‘‹ž êX‡_pŠ~Æ38õ AvDJ¿G8RÓ‘v(ÐQI|i†{rƒ“UÓº×2ƒªãæSbdX%zÜÄ»¡ÉqC–­¿¼:< .£qÂ&½¬Š/ ÞÜ\÷âz»yÔÜ}ÉKm÷eAŠÄ>ŸÖf (!ä„•$ÇeáÁF@©›1ß*×à“(V”Ý[c1Ÿð&n„qÝ´ï¥&‰"ûDè9QA™¹¾ºeÁ• h L\ÕXT€Zæ³øOÀBH7•ÓsÍàC|þ,H<óÍx]‹çyïcú+=lŒ °ùµ±=,ÌàÁ?šXí+ê¬àÛ›°äüàåž·ÎIÄJ‡”zØE«u ôeÒw¢n4ŽêPo"ŠŠœê8£”œŒÚMÎØrŸmú²@oÁ‚‰…@T% ^Y6€Àô!û,¨&<1½ßlˆ£ «‹)d`ÿ–®ËBMpÜäEIagP]K Î(34ÔDÜÁ"Ô\Ðdœ™“LdKÃÉeÝΈØxàa=’X½5•^r€Ä)”~ãIŸVB÷¶Æ«ìàX݃áÝZƒ÷±Ë"R#›¸Øç{Ø…TìŽ4®Ø5"ùÒe0J?G‰„ÚЂ<SZ Îkc¹†&ƒAu§eb„Çü{:¶Ðé?â8KÜÝOxó'ø(f¦v0…”`k{Mà@cŽðn| @å©1üæŽM,ÎyXÀŒfì…b ÙÈ 6+zža;‹»Þ­/^¾¬Ø„±±…Âv3š¨kA í°ÕõP7™­b›K!jPêIŸ–Øà²PˆÖ`ÌNb–:z;'÷•ânà ô4Ìýå¢û%›+QAT-¨Ó<8Å÷$Ì@ƒðI×€ËÐè·?Ô‰ŸÔ)ÇDl ©¿УFcA ¼b¸]¯’·œ{qûƒšB*Ìèrà‡÷þãYn³ÕÿM•)4`ˆt |0èÇm¨˜ÆcÜ2A¹ri̳R¬Û9• \DU ƒ1Ú´oú‘š·;q»Õï¶ ¿Xï7Ã|ËmšÕ§Üb¨éì<ÉX¾Y}ZâˆØE4æÈ¾ò”›,—Æâ>à,;Sõ»YdÏ/J„ =鳩i^õnáíÉgE4໦u!*˼×Q7X/uõ’Æ5’I¯Žn×Dù³£ŽOj:Û(úÐTÿUôð&+ FpÚç§gÚ<<49ìY¯0µË±)vEÍ<5±Í°»UX'1™R'vVÊU¬0‹Ë&™èé§ãÎP·§T§RñjìåÚfTO§»ŸžkçÅñ³|Íû}í,÷Yea&N{‘ ¿ÿâe^y6+w>óÊ3?÷ãÕûå~¼úE'›à«°÷Â¥H!ô3ßXc†tÚO£ú—0X¨ ë?â±dÄÆy¼Mƒ3¹á«ã6»ýÓ養3Â)S%ŸÇCe3eæ L$¡dÞטóÌ›&ð|fýÌê-™ÏŽÔƒ=(Ùý¿mÑÉmZæódÔ û·íQ÷B l*À >wf¬S[:+-†BK×âö‹Í­,’ ©¤È;Íæ3äýÝ<É›âÁEsçz£Ü!_pË$´¦*Bí(ûŒE Wc³š1’ôÞ¡ÊÌbÚæ`•Æ—Q °9Š›Ä<[ ¾(‘dÞS «Ç®Öytå|fàPJ—ÆÌ*¾Ú†0è éÁw|n-¬'ƒ!V»ôžY¯£p˜Ï6­W”Zsâóøüv¬˜µ{˜¢wò[D©ýjHö—¦)ÌÞâ<>[òȦI…}±º8˜Õ…Æsá(¨@n NUÀ¢ÄÜYN™cm™ŽÉÓòÚŽÉ) „ˆúTD§˜„fI‘¹€qIŠ„%|H¦Ì*‰ÙÛþ|Ã#Y&`~½¼9j)Qúüj¹/¬›!lÎ^.o¦O¹“kRͤqþiuÆÞghPª,þ •¨ãÍü•±¬]N5“ ¼ßxÙIƤJúOa÷r6T´Ãù¤>jB ÀÙÛð Á`Æò×Ü&©ä~9ùô [´©å¾ ôÆâ](lÃ6†v(&—’)(}ˆ _šðèëqñ^™êÏhÔ¦B[Ÿ(?‘J¥ÿúoû'ZAù/Ü¿s^°ýû”±Lÿž={Âé_úïÊãï¾[yò_+O—¿{úd廕ǫô~åÙò³•ÿZþ}ŠŸýoh{*NɳÒÝõ=Û¸ÿ%ÿ:ý.6YñâãsÂøÎàû³Ñ¹XÈ‚éÒ4€øÉ{;û'ô?: ®ÁûQ!zƒ^L’“õ€ìOÛ•ËßÃJsùsåÀ´XOD|û$­¹AŠr%AßzzÛ>fõ]zÒ¸Oœ#îƒö˜Mú%ú{ÂÔbænm¯¢#Ñ&"6²áÉB'hííìS¹^jØp ýÁ5Ó &çb2·h}Õ›oóQS°’šJ¶íƒ…îM´».Œ‹<<Ú>ÚÞÝÞ8Þ6aù¾Ùaí_Ü*N?£ìµ~°ÃF*ÁÎX2ÁóÈÄŸBõëG›«5‰:qö†#û.ö÷SR ß¶8‡Û¨7ßRízOZBhIX½ðƒQ-x»²ü®šÿˆA¥O¾+øH‡f-‹R|G3èËêòêSb=õÕJ#þ®l”•1V±pîòf©==¯ÀÀ5bþ~90™“ª‘ªj,“½]yº¶¼¶òô]aâ•g©Ô³?^½Gâá ‰o\ú·×¾[[–V b.¦Å&¢8À5iŒo 2—øÏ&S.<§½ÎJú‰1ź€*Q{º¬·fƒ ·ª&pÙdˆ®WЋT ´D)cºrš›2IÿßÒÛÕÆ³¨¾ôfgçdé-Oáw5o¦4¼‰ñö]n"¼}W{Ë/…ŠÑgÑaìhé­½mj\5â>’ìqA­Ó“àu/½ÅµxýüS<\å ó:=¡S":˜Qúø£Šæ_}kû§w5Úßbµ¼d`‹Qw0ä]>ÑŠð}î4®/v5v¯!,q?¨‹°½ƒÜU8ÞŠ­ÕG†ÕE.(GèàF(9µÈqÈÖÞÁµIöýwÕtýB»èål €ò£Íª\:û5 æpúˆ‡:LÕhs;‡n‰Í˜qÅ—ª:/«ó>¯ö† ƒ½¶cøoXdÁ†A€Q6‰;7áF¥ QçšVàjP©)N.lE »DVO|Aëgé-}>ÞÙÝÞ?iîn¿£Á̼Zz{%Ô}þ”’`tÇK˜R&@Yµd ÝOv:‚ÀPt“ËK’`ÕéWíBq$XZ~\ÿKØ'åSßÛØ<:hñœí=yW5F˜ Έîmcä`A•ë—Aý`U¢Ï_¶Å³ê0{¤/ò6ì>yÀ‹õÓ=׌¸ÏCXBÝÀó€x2Öí¥gâŽ:ã¦à2XÛ³X€TÐfö]1SSÊÖ]ž{AÙnU‡ûbÒÓ_$v¸!j_ÅÑG¹h³6 q¯IZ…, ÑktÙzÜ =°ô·Q®[9óœƒW­ÍÍ€1a-¢[Ê㨎™g:;1>ÌѸæƒ'b|kF¢’X ÝF°k„«Oj†FñeLUes®æ5:ßR–ÈHbî]Ù¶ÄK%Ó-ʨúÜõò¢<”y§5  ̪þ¹„@J˜Þ¶ñïR¿Z›?ü LѾh`VžoÕød{¯µýæd{ªùcïŠçf± *|WqS.é-€»Ñð>ë„-²Þ´CßûW!©Œ…™ðò"Ö;ÃGB 44ÂA‹î`Hixúö24AV+«i&Á}²q¤üÁüâµ)1”dŽ?{ fˆ—˜€Ë .<ùÛá6í5'Ïž´NÒYnºm5ÜÄíL†,ÔøÒùhð!ê7ûƒ~Ý,Ä*Í9Xu2ly?øÔ<8n”DÔûûÁqëåΛícÝS©†=·´{¢;êuܼZït»ÂÍ8‘~Ò/vß8zµ ôÆt-aå!è<îÆã[#J–´dw¯ÎÅ¢„Ü‘K>bõŸ»µz]gf]7l>üa:tI^H¨o7Þ´6_ooþµõÓñæÑÎa¦ë6á.´ZáXaÈ[­¥%€$°þ÷šÕª«*5pïø•ÐÛÙµô–ÎÌ,´»±ÿªuxzüzéí&½÷†fµé”´+añçƒ#Ðný¼}tD’~=úgàbof–(5˜åø2æ+óþ½Cê÷ÖÎËíÝcÚ¶mÉ4FG{K5«óóþ½}Ë:áóÉÅÛ•ÕïßÝÑžçK¸x¯Rêw*ä ª9N>·ŽVŠîî~Cîþ@ú£q´}|ºKórqŽŒ,€f0Gz5˜°ýOEnÑÔÞ§¾}½ñÓvkãäähçÅéÉvët«cgcwçïÛ[´ÂWh‘o±p­Æ'Àúž§­Ú˜äîÉDmfŽ›EnŠÊ ˯¡$™ô¢¥ªñQŸ>™5aáÄÅ›ý¿N`oß¾w{kɬTÍ4I«ñv—Tv2ÌJsç§ÓOét²»øÅéÎîÉÎ~kãøøto›Ç•GnæØBJA`$ݲFï§ÞDf.ºƒë9FË´&ícWúê«Þ­n;x96ãÖkþ¢÷—Ln“¦àõ^ýˆ°»H§“äzÏôfa-8NÏÐI·ÆAžÍD)lÒׂoz:{¾*œ~Bs$œ{ù¹îœM~âôœújÚ”Ú;Ýmü´}ôr÷àg™X_}5÷´š:îsM2ØíxŒ3Ý=æX*×§&Ã蹌=µoiTZÀ,¾á¥œÍ<ü„s¼—éÎ÷ÒÎËKN÷¶76_Ãä eÚhLøŸì]‘´ö6þrp´^ö4"å’§[´_ 1_œ Ð|vª “fkãÄ~…ö¦ì[py°ô½ü}ˆ~°ò¾Ä«{ôèQÙÿì¨iŸŽøé©¦€5šAŽn<ج`y‚üòwP‚®,Ó;=kYCQØÆÄÆ¡ÑÌkHcÈ0âc-y]]ͽE%so]ç>¡g«ÆK3”3IÔÇgs¢ç£ Ä¯^º÷ºxTmø,}‰^®Ü,þÚ´é×—Šémý¼^±ŸšxUÑ£ÐKøÿ;Å1ÊAåVäZR­ÙPqþ[Ûû˜Ü¬äú¾V«y·pßÓ*¬$[y–N·òlJÂÇ«é„W9aÞdŽK[L‘\LåcsË2Œèÿrs.`é{çI½þömÔÿ܉“wïØŽPî¢Þ¾ýþóʳÏWÁÍ0Û Óy©2se!xÍ¡<E!ü}°$e·0ߢ¾ ¤Yzƒ6ëíÝCûÏÑ.º=ñ[Óß3f(Ža{ì®ßU³jAÚÒjƒ!x“8ý¹šj¹|3·{Ï‚%k¯sWÓiÆÜÙö õ;ۮ᪩k;ÍÚ™_y6£õWïÑzZ÷k=MÀ9[OõxXëi)ÎlýãÕÂÖ šï8=ÚÜÆé%ä:+8Þ¥JM8nfˆåÒWs>)#Œ§7˜qxƒ”݆܌««hálæKž¢›a4Š{©Z*ð“ìÂòôQð9èGãó¤£.“¹Å`Š3tÖb0i½Ea濱tõÁ¡¤õòƯK©ºûk£æ:ÈØÂê0¨£¶¢ Yzˆ9¹x;NÛëa %\cÎßd¸ç¾o²Í½ûû³È7†»k0–y˜ÈÕ;Ú­fs÷k»fzHû5ëÜ}`ê§ æw‡Ò¹G—ÔÙñ!ýÂ9Cçpþ‡ö×ú·v[QæûJ€š%{® ™É'˜{§Íg½³#FžUµKckí ¦[`–H‘7µÎÉf¼Ô¼~ž©¡IçŸ šaîÁÏøÌh R6Ò¡k˜üÛã#B·³¨¨Ö»™Vé‡zœÔÛ£¹G6•ëΈkóH¬"œo¾‘¹*·GÙ‘ðJï^<¤ÎÝ‹¹ê ·ö‚:³Ã3dŽÚw/fÔ¾ëó9[À^ŒÏÈ\Ý>³êêòÚkÖ9P£a@lèßÒ-qvsØ”¹š Öb®hùÃZ1£ýI÷!- lsµ`ÿt7XRxAhVºœ©Àj)íŸ$Ò©d墽ê<™É“éïËÜàå¹³²¾SfZòœt[Æ –íySM;첿TÝúKÕ7sƒù~ñÎäœkÈpùb\gá:£‰9¯i ǪLëäåÜM’äw¶Cn 3®_£P‘Œ©QÇ›;;Ï«Ýq$"‡)I7ÛçlÒÌ£O²I€ßC€z¥í¡Å$3:Iê=»gêpK.ìþrÏ>âÉÖþÎÆ³×õ=`œîêöz¿°;rÉîÛ79wvãöš®ZY~ò‰ýIólÄîZ48IͲMOz0 ~[æ¼§u¨;‘À÷hêqï§µÙîì²î4w)6Ÿåê6.? Ðá\'dž«½çŸVgµ˜>?¬Í”ñ¡­†ƒ—×nü¼WÃ)C®é íUP}ÕÖ÷MÛŵ”û~wӧѽ³í®Ùqãž‘Ÿ×W—Ÿ|¿\ƒŸüòÖ¿_ùaµ@¦®ÅN}’}fOô›;{ÃKsïIÑ¿G¯ô <m¯SùþéwÏîß/žŸ¢!2}‰@Ã\W'À¢5â¿ß"ñsÞc•äïZ¾ãLn`*dg5פyX“Mî‡6ÛæŸ³é&}1G@!õ‚¹oß§ ™2Û=*³›õ6λ²/­Ö‚Ç||{"PûQçy`—nRë”¶^îë«Í¢K¹±gš—û>W3 ¨ÞÑ\³ˆ»Qÿ’†Ï‡“õÜð³{útZ{sŽùœ¸€±±ï}½/³­GÓ>ÃÔ²ßçjyÕ;ZÞŸ†à5vyZcsœ8ßX`H}Rmt¯çjœK~g«ÌmŒ4eÐ7èE=D”]²057ÕñsZKÊKZ4é`Y8œÞ—9§°Gé¾u‹w0àˆçÞ~4»™Š‚K;³u[ Ö.GïŠA“Ûþ Û+Êb¦J ðŒ£µ`§o`ã®ÄGÊ´*fðH½¼ÜÛ8Ù|ÝÚÝÙÛ9imm"äÃ.(:~//ÅlîKª8±n–âÃþFÜ+¡¥¨Á¶ù‚RˆÇn>×1<¼¬› ÓsU”²qFa;|ŽÍÁNKa®ì0I×~|ŧúÂÛ¿¤“Ó‚­?šz‰Žéw•j>mÞÉHÝwö™ñ½ïdpòÂÃÎA¯…sLCóHe*Mm¡Xµ;ÉÚ¤ë§ûÇÛ'…‡Á3ÈæõÜr…É0¯­ÂÇ à Â$5RƒÁûHa/°j¢§ÛKzŸi‘I9w‹L†y[tW}f´Ðäš&±¡®•i–æ0wÓ|zó6/.1£1~¦5ìcV«r8ó[ýd)Ïm4Jc–9P¶¢S¯î À¹\1Àpþ-áØz¦®,7/72T@±6µ¢؉ö’õ@ y ³úÎb,¢ýôñ˜ÑîwùüÙAPFþÀ6r€<ær´°02YRs59o!M‚%lt´M‰ýÒ¬ÛwÉSÿts›gî‹V¶Ø÷'ÁýÕX ìFÛÐŒ£ÑLŒmÜ:ÚT¸$Å“¬Iÿ…;c¦¥òqîE(Éïlà-JZÏŸ¶¥W››MñËãxvÕç0?3éh¹ tŸH7¾ùÇ8´Ž¶cÅb õ¬0븢ÃÑt1§÷–”T`¬}3¿ÒVÒÏךxýkv0v½q‹Ú›LNIöT’á&zµgžubz"ì!Ÿ° “h|²×í*–¼=ϱèºNðÞuWz{ö^5?³hÇ7• îBÙ$¹k%—Þá§n2Ýœu«ÜÀ̤RÊ2'i³pÀñçï(» è…¬)Ãt“Y|8voà·pѧ'/Ùœ`ºe€µV5êB¢èTŽïrƒÃÜìa@&öÎÝ\ZXƒ 3P”{A78ô jÅ^†¦6—~ŸJƒÊAÐi„Á0¨Ù;X©•ú[ÉÂU”]ÔL!s½¨tÓ½`ü¦Î‚ÁÿC.w0ÃÊî–AÉ”¼––À c4¦ì Ží ŽpݯŸÓÔÂ~‰k£.TÐ"£îu-² ¡Žy!9Í™LÚW8œ BÁÉÖîÎ ¤WŸ›–‹ß›iżÏ£’)g‰çrs‚5êÔê•*×ôäèt[f‘_/ »Í ^nìo7hïë–¸"Z)´D#Ž22#š@ÐÏŽ€Íæà™™Û ͍”ÕŠ_#JIzãIØÕ“ŽÄ*Ž>Ò¶\“á2@N¦¦ÂÉ€úFbÍh0áp54gâ Ô¢)>GŠ»g&«`ë¡ ]ä(îô޼õ­Fð¨éÂßUv€÷/Á>ážÅ;Ó 'ôѸ¡ ÖIøÒ4‚ŸMˆDÔø,G@CÁ5eZ÷Ï;û[?Óq{}å]Q¾ã±— ?oìœh9«tb|]= U4ã·vncw Šw3—j3OÊØt«3²¯<›’ßßÕgx¼:…€¿í8ÚêÀuÔÆÑ ”Ç9RyÁè.¢á{›4ãó7#ÛéþÎæÁÖv.kNÒ*Î.âK.wVnœ•¹µ¿»út …Ìq£˜ÌO»¯Žhæh˜;Š»¼<ýûß[Ê©rD|=ò]„¶v^¾œM-§šöIæ6s)EÖ ÓõfÒ÷=ÇάÏ|ÖZÓ’¼h™qˆÏU©¸Ňƒ©Íðkš¯k@Û¬akžù ?µæYÉ=» ~òÙ±7N9öšp6S+䡘ÑÎpGü³à‘1ûŸði×"^VÉäí `ò´Ùœ*´HÀKdOu¢Š9gÒ–·peäÊã‹tw¼ó÷mè.ÑPÙ¢‚ClP?Énˆéy¼Ô‹z œô> šà j]F$þ´(0i¤`#Úî|XI)´#ªÐŽÜ;³ïýXz÷®F© Äõå[DZním¼y÷¼dŠ\*7Ê5ý^}^ì›·¬†-å`e޶7vAÒ`ɼuºb¤6‘îhý½7%Vlb©´LaË)‚Ë@ñ±]ìRø! >ÑcµT°)âαòßYbKoàôŠÒ!Éå'ݳ‰éÃßí¾}WEÎ?­6ì]Éuב@—²JÂ/ wF¡PŸˆCq¼f¼¥Äób`NwÄ“$ß8¼ì (-TleæALÔu î#UƒdÛv:@œ¹eHøó·I½ª¤R‘I` åyÄ:dàGÖDËí×Eï½(-¸bjf:j!z¯¸Cr)tŽc ’®çU¾¹¡‰ô³êïèa|%;Š5Àú]‰¢re„ï˜ï¤âN<èq9ÒKù*ôxõžR»³ù*Ä`‰3k£·Û/N_ÍS‘¸0†òô±v¯9U¬W‡­cÜŒ´·6±çï'óT¥À:ÆBךåŠáCà›ì&Ç]f"ö"­L„^\2¬Œ:6¢µ/Ñoªh"Gyf‹i›^kíÇ+~4ésD«;¬¥Pݬry8¾‚ T(óý£HÊs©Ò—r"8¯¤ PÞ´O^CÜ]z«‘b¶ó: …“š³Åµ•{$vF4‡òJªé£½dئ¦V^Jf›PœÂ1Ÿ'æXú¸¬š«qm6O³ù¢7ÛÅ@ޝf:÷¦fm…¸·˜ ˆ>y<œùZ+ˆ9ÛñâïsI¨sµø9^[„õ%¹¶XŒ›lc‹]‚zwô$u Ïûyãhéí´lìõ=’ž±.›†`ó\­þPsŠ)3e$(›Ålký§ ~9VrµSŽü"ìx¾4Óêà›OëÐ…ûdZÃmEf”§dþ½›çAâøM´“‘øÕÿ;=8ÙÞÒ³ óá§/až€I9¥š:_O¬qrùy›P>°5³$k‡/¯Ï¡‡KMî+À CxkzŽÂ+ìLbñ‚+r”’ši²ÍÍ0dÛÀ ÓrõÚ#yÝÖíÂEÍ”@ͼ&pù:c>]À‚•ÈÁo_Œ ¥<µZ {ƒIŸM]U:Ô¦x áöÃÓVð‰EuŽñX–·‹-,-b§„‹ |ηØeÞÊ!âe–µ:ïªw¤×â¢Ñôfäìõ{N•zóo`WòcKÔò]rϱ•¾&Jë킾­‡÷öo ?´õ÷äü\r!çç[^ß©k™E-LåWÁSjoÊøÝZ`ïFtO*šÖÆAŽ>lœîrïåJÅY¬h2gr³«ì¨ÇZ9ßí2¢Jt *lÃFݘ¯›FƒËQØKJDÌŠ5ÂÕù­úPò´bÕ¤X“cúÙ‘³´aªwŒµ94„+ÁÒæQµ¬K»/éïcüæ§'ÁÒÆþߨKö)?ê{ÌÖgÁÒþénµxžz€§3ÇøÅñQKɦÆö…õ©h—³£ JÚáÐAæZHV ¾‘c¹+ÅÁJDFë‚E‹Ïæ¤Ñ±v¹ðªá#¾,ÉÜbRÜ_U§' ýKJc ‡¯:-VAŒh­euŒ‹ …6ãªY©CÊ#:M@ÌÁ±Î†ýퟶZ/66ÿz¼»qüºµ™_h˜Y¹d@cÿpÜoOqw¶ÉÇÚ‡ 1ÓOf-36œIïÖA©haÙôÙ%¥JJÂHM²%¬0GnÕúÁÁÅEÅ•=Nù}t8úM#Ü›{UaÒÜÜf2ÍT àÙÓ§ŸÊq…ŽrT¶ô†‰ƒPk(³„9ECÆ1ãôFW‰g@çFz™àÊT‡ÃÇŒ®F´¤ÍŠÔª…yu4 WSjwt3ÆÍŽ:msÇVüÓÆÑîÁÁ__l¿ÞÙßrÔ.+®\þ̆nz9§VS?c»LkÍÙ€¬ÕwÍÃZ/ 5Á,T6޶÷[ûÛÇ'ââ )Y\²B%›Šp"ðEˆ|‰/ñÁÒ–Ì´>P¥«¼R̰谉µ«˜,X9DÜJ"xÈ¡K'9ÍÍ®¢Èœ>ªÖ;ÆO vT<’6ÏÔÝÌ.A#EFÔêKUg‰i=ŠÚ]2ûÐ2\ŠÉäd$Ái5 §$@ëzp½s4ª?³êV*d@3êš ,dRIu:¡©“‘Û´Ð0V…¼€Uãïr×z¾”ÑPLÝÄɘµJÀmFµ"ª!¼äˆ½Lºág†Äކ’ˆÁß eE%£íbëXtk¼Ë¸Þ9&Û%s†G—‘¯gè "ñ„ÛmF`“^©[7º¤ïáÆÕ±‚…™(lÜU}‡­cÛ¼3aÌߤ¦ck‰Ö“¶ÌNEµ þøÇ탗¥4;û¯ÖîU9ñg%aJÀ&|ÞVKŒÝÅF·,ˆJ‰D’$2µiõÚ“™Çt,àÙ˜Ã!l”JhÉŒ®`м[{ ®œ>äçÑÎftiiÆ!<‡SWÈ ¤ '„ç´™%6kõç´ 9©\“ߊ›"³EØ€Ÿ/å?+G³N”Ä#£L’¢x—§¼zx²E1`¡.#è…%)f@9Ã.å¼ß•°ŸãQܳ酷dieòûRâêŽûÐ>#n¤&eÏÃÚг,Gak4†`Ý76"u1骜 yÇ#às ôáŒ*>žÂ›s|A%…±ñ‘çLd’\¶,ìÑø :Ó8 á<Œ,E…"æ8¬ŠÍ2ŠPyŒÝ$3LW‘E¡„ÖB@F½Í¢Ûõ]™Ë3XltÑŠ†2AÈ›â*Ç A/n—ôv8]Öy½½q˜ÝŒ§ÿÓ¶hFôÂ[‡ßÀÛ³Ù¼P·á盧›ôv‰£VÁ޵#<=5l9ƒK0SPfw¤nQLÁ …ÈÊòê«é~ÑocoÛJç+«ßç:A ¤è\ŠíŠDöŽx‰ÀE7”Ø'çƒÎ-ûg׌1ˆdG)›Pƒ·#^ÏÄíUÂ\»“Ò_]NU©î üÆÄî–¸¬°‰úƒPBý#»¢&)líæÁé>OÆóü¿Öà×-:ýØ8ÙÙ3æ"ÛoÑ ûÜÒæ#‚À‰”"}‹ªæB!ÎÞ7´·ýE¿B‡!6¢)ˆí…$X}/¼kÄs,øDPD fdIõ”ÈÊŽ fKâÓ@òÉñØšƒu¼°ßâªÏoÔ¬œØ¸}KM,ä‚ÊV9 5´{óÍ6*Ñ!ÙäÜz•'¼HkQ‰ïÊHš%…ÈLáÂ.¦sÙi-û¹B—¨ñ#³e>K¸fh}ÓÖœhÈ´ªeÊ.Ò•y.×Åúo‡’ëДvæîåjðHsÿêÅsá«ÔŒ® š‹¤x-9Uk#øfŸ†b"2·Y®49öŽx ã>Ìé!YÁVK†W³ÏXƒLKסhCXÒÖÈ>yšÜœ§'/ëß7Wž5¯õ f©¹¥D14xôÝb¬„8@ñÂêÚ|ø˜D6h‡J$FENÕËe½ãçqvµOûÔ‹øÙãÆ?F#ÞŒ.„Uó”ÞßõÃ.2wÎÆþñOúˆÔ@¦a7¼Aˆd:µ$G—í¾† ©{¿ºwuT1$Ù¼½¶ójÿ(’&ÜñQª Iæ–x>÷éH€ø¨ÊÐØÝ2±œ/5 Ý^P¥!pŒ2¨6ŘX”%Û¼°Ðze]Ihj¦@îì1sÛb0Ò?Ew-à1YÜië{j°§T&“Hë%rH,8k±Ó‚&qvÿ€ª$uÛZ/ ܾ½¼ŽûˆÜ£¹~TS&WoÊy›þ7Ôö”Uªr½?¨3Æʿì[Gy0}'²áÂ`wKL#Ñú(¤ ÛbÜf­ŽÝN¼=âQËð½’Y`FÕ{bu™8¥$pö…#4NÖP¼99ÚÀÕ—^·´Üõòâ´OÁÕzÑo\P×¢ëpï²5¢,ú¾œ+håÙô’Ü·ù‹¢ l:­eŒÔá° jÚ¼ØŦN52Êw ÷þÀüš f—FeÎ7aÖ8Õ?yCå9_Ï?V©š˜Áê+c[x­œ&:ÕK¼ÏšÏE±¯Ò‡F¿qgÃŒÙ×okŒùm˜^j Tbº]ôÝ ³~¤È½×Pj ضuô]íÉÕÊb•üÞ•²°(÷¨“è؇ßT™{ · ³‘=vÞëôÛ{Òb,ž¥·‡UÔŸÖÞÁÖéîöqY#÷}é­;¿µ1š²€i‹éá`¶b‰Û§5FH{ÖV…<òðáòm4igLð›ÅW››ÅHÞO¢ÂxKlj¨NÓžª#ߢ‘ êÆÐ›þ»´Ûtò‰²^ ¢Èæ0R\.c¶iéíñ듃ƒ]êÎä Nâôpv±çóÿûEI‚{Œ«`qsó½ñ}$…=ªR©-yùsAiI½îø­çý•f“ÌräâÉ¿¹¹As¡¥î­‚ž{Yಕîf¾ö{μ¾âûÁj?Š™™72êÈÅkSú\ƒªü´AÔw7~¢dõxt)—15À^×kj¤Ju»7yDpøóôéÃEÙõëM ¿z¯¶÷_Ÿìíz5¤9u5îugTÒåÑ´Óªª 窭)¶¨Â‚aÂP%ê.Ì£ “÷uH˸ËÖ–ƒúåeçüqP¿ &À°¼ŽÚ ýd¶g¨ÍiÎ%È+þ·õ.jR–~ë­W)Óƒ©/ZhÑ7e>Ø€ ¦àR)õ-C¥¾Ò9–†ÐH±"æ4z½šFV3ºÎþ8ê›Û'^ ŠdÜ´Óã×Ä’ÔPt·SÁÕ ã½}«0ÍA«EÅ´Z8Á!´P ½lAתű…$ts«Í¸P¸“ê¶ÚѸ¥¹Ár”kY¶Å™Y(½ã\3Sb|µ'ºÀÎÚ^r•Œ?¤§K »’íd þoŠE:tö?y¹óÆÞPžß Öü. ßã›qê”än%úàa˜Ðp÷†ãÛ1â{öºÄX‹³mÂ.¥‘:_˜œ\­ÃÑ 3iÓ`{ž°#ÀÔ>¨½" ûËl饯Pd+}å鹆mïçʳôïÇ«éߢ£Á+¿â¥¯ Èш:¥ª’æç6Sõ%•¶;'ð†WQZ{û[€äæÄõöUoÀÖ¶ü„ßÞ¤zì]µ "‹Î KÝh zVnÇš/°Á“µúA`±hLÈhÆîýü–7:2xÉ¢w"áÕÝNÝ•ÍpR=âtí¡TÍÞÍSMeyCmð &cçxõ®%бثtýTäκ aÆë*ါ‰[«^`•7†ÑI%r÷ AA‘´²|2ÎÑ&ÜMÅcfõ§'‡§'b£9#. †×E?¤EuÅ"¶Ú•é‘ Büe>Šm1C%@Jï„H–³+Aôã6FhX)ãr@`¤®rØABâ©X}†Ã^¹¶8ÌV¿ÞóZ6C×¢ENÓîñsÙWžr“Ù¼L‚›+jEª~7‹° B"ö€âߟ.Ó( ¼êͺD¸‹‰îäúâáÆæ_7^m×Ú>:&¹ Hñâ7½-«µ’^R'cöƒ½ Eÿ‚µ`ñWIð…3m"9IDð–¤Å8=Óæá¡ÉaïL S»›’aWàr§&¶v· ë$Òá”:ñÒÍU¬0‹Ë&™èé§ã;»;'Óý8Uã©T¼{¹¶ùÊÒ‡MÏEbà³l !ÈòÌ™í=“'"õÅˬ±ª¦äÎg^yæçÖðVsç~¼úE'[šQºÍ~nN§ýä Iœ ¹Ò.Èúx,OiËT<—\Ë”Œ„&U²±ŒÈ”™' Ø’yßslZ÷¶‚áMǧ“Ìg?5ãÿ6-³çÒ§ØìGygÆ:æ’¦=`M$Ðé…TRd„fóÊQy7O@ò¦xpQÁÆÐ$ÍJòç-R„Ú‘Äýà±4XݬfäㄘY¬6opW7çâ&¥=å$󞚪Ëß=*Ÿ9ç¿ef›^û.KbøZXƒœã”y ù\¶iÍpFÖ_œ‘²¶ˆ]Tfò[d}¾xÙÅÈ|‘Âìâòà³%XÄGý¡•”_ì‘EOÙ]·»ÈmÁ© X„Á;+À)s¬-Å3-o *EBÑk’B:Å$4KŠ £¡¡U3É0nŽY%1‡ÐP0^&6v­ÖË›£Y<‰ôj¹/ÆÀmÎ^. õ’[1…÷µ3ià2în”*KÅA•©TüK¶™d¬Ò~&“*5ê?e ŦÍ?£UW*¥•ž±ü3j(É sgn?ÚPÈ”) —’)²1vœ˜TB€KxWEáñ+uú]8¶»óO#l—þëÿTa!j寓ïšÄé°•=„Ø”ð›øî»§ü—þeþ>}¶¼ºü_+O—¿{úd廕ǫô~åéÊãgÿµü;Öaê¿ Þ©ÈÑ`0ž•î®ïÙÆý/ù·ð‡ y÷›É•u胺Åå *Þh¨°SIÔZ.|8!NÙ‰êr‚OJ%9Uêžµ¾º¼ò}}ùq}ù»ÆòãçÁBpz²)q↷£øòj,mVƒ•~ø¡¾º¼º¼„{Þñàb| «È—PÆóI²y¾!¶—p>ÐZÁi9ÍñÜÆv¤-×F¶ 亾IÌœ‘CSF´Œß9æ@*£žÅƒA@ÐWÜÚnp89ïÒ&»·á€Æñ&¹2¡iaZŸ›ðˆÆÞo•a–èøÌ1.E'p&PDÁ‰Ã&-l©ªÓx\!ZªñêõœN/&]D¢´ôÀÆ#>øyãèhcÿäoÏm¸PFqcg»žø7\³58ã@i¸}´ùšrlÈÕ¹s²¿}|¼<8 6ಳyº»qž €#ûRˆöeF_^ðhŒp@#ö 7ùo.B)û?Ž¢vC!JÄÒ;‡ÉI 2çz°Á¾ý”‚T¿?^ÇÃd­Ù¼¾¾n\ö'Áè²Ù"IóG®ÍœÙ‹Ê‰nÚÑÐ(gW¢¦‘¡°¤Ü$O^Uâ=#ÞLf€MpS8&Q¹P]¥U)¢všâó[‹«-ÁFádh0|ÍôÖ)Êžž~4ò\(òNV¯ÒÓ¡…™áþðÃ?i°_T¢ÝÐꢑ<èÆÃàüùs§Ýnàxö†óÑ&„üâŠÜ×V*UÏZ`qy-ؘè¤4T¢PY\êõ«¨;¬¸Ù‹[`ýb‘”ƒ•¿Yõl䪗ïvëWÁgä~$ňÎê ›ç)ô‡k–Ù½•"ÞáAWß»@/“‚·G¯Žß•JG“¾ywàŸò¨Ö¦±ÈR†EœÛù8³ïµ +‡Îç„-Cã6°nÍÜÚ9’Lˆ&Ú†¥ˆ‚Œ,•TcÒ¦œi¿£LR Ž{C›ö$ê‘€Ä.šS’M $C®_AÁ„9À¿Ÿõ2Ѽ3wRK·´ ûƒ*õûÛ1[¼dÿÚ?ÒCøÎ°,ý³2E m'Õ⟼Iõ‘'ÕÇGþÜ5i1µó•‹(ÿW>Øu)( úQlXÜe Î #ñšLÀã±2~¢qÙœsøZ>´\ˆ\…ÖN0·¨Ñ]à°éj3Æ·ppbè;Øþ0¨4+ÎǤ¡nƒìøP£”Dt<ŽG-ö8\ª–~5¦f©Á£æ£*ê±þ^—ûJ™:ƒS‚Jò¹ùö—æ»G‹Ÿ›Ÿ+¨:šÅYj|ñ».¡SZ|SGÁ ©Ä>¸ÜýWØyÔwÈ_‘Æà1Õ¼˜Võ_šŸ?WäWó¬ñö—µ¤Ù¬¼—úòžãæ­No\ ºp78¾õ^µ§¸ÿDH?¸±‚o¦Åua 3éõnͪ«±WŽ¶Æ•SbáVõË/›}Ât[ã°;@󫈞KX-&Û2 T»B:a¿•ƒ©?4AYšû2ÄTã{vïÕ°7ÃA2®«Â\áÒמJ·ÂG~HÓprwc°…ü9öQQ5½F)Œoà‰1niyÙ&ð˜¤:ÚŽm>á¥8yõ9ÌŽ]Iø b7 Ï<è‚zÅÕÍ7;Y¶Å¤ÏV€>•‹Á 1XóJk\Ušk‹$Žkª0’‚¡Šìh®ŽärÛ-ÞÍÂð- ¿OÔ¯XJ#Üw«,Öföó¬é[ñíŒf∽N]­E5¤£TÿW³ZÊIV -‘Åîà:½{´V3µ¬•ƒ?¦{M™ÀÔ¬oÇáyðîQ²òÚ«-ÖÖj•B2_Ò¯äº9›TÑOƒ ¿Ä ˆçøº ë¸c‰Þ®W¾ªpŠ_£Ôï®WJv0N{ìw™=>ÑüÕ~cÅT`‚è‡hÜ%Èò8á‘vnñIñ¥Qš­o¼ØÜÚ~ùêõÎ_þº»·pøÿŽŽONúùÍßþ^âž[ÏÛ”÷ò*þLJn¯?þs”Œ'¯on?•:$Ý“õå•ÕÇOž>ûîûJawx®/þÊ´¿,þÊ$¾¸«b¶„S™…Øâgï­H(™—2ÚÙàÆº®?Ù½Lr׌Ђ kD#ƒ”@kÝÊ^œã'ràxÊX%“óæy8j ÿÇù?‚KļÀ" w ¢Ÿð—ÃA£¤ƒNM×§ºaÿÚ„àsI&'mo9;ãí«²ø«Lu¦ö¥ÒüæóóäóYãl‰·…³êâçÆáÙ ^¡Eú/íx_JnR‰î‡-ÔLQÝyx£q4›“³•&蔊¦5æ#/TÁ°‚þªmØsßs¿-]¶Û¸T\:arÕãG¶Üg¨8‚ ø7³Fy8ƒžøˆã¼ ±ÍaÂð % ?cûñq2ØŒGrȶF§jÙÙ¥=àžÇ—"LœG4ù°§[áQÞ“ “X¼”q*‰RíšÚl‡üˆk25áÆÅ«ý±;›YWƒFÉ5€=’^r—ývò¯WC;¯‚ׇn{a_ûúÏbØ:ð-l8bXuÓßõ='ý¯ÓËŒ=»W æM/wˆAxÉÌ  ¤3âœãzÅòºêú_ €Üûß^BžjMÖËúÔ'˜oõrqU{ÉÇv/¹MfV“Å m¿íáPðšƒÀ§Žê']5'Bö¿ˆyOŸ„l™,gSA;î`èZøÀu8ê0ÿ+ÑN.nÝd*kf‹-©Ñ¿Z³vYñúÆ«õô¡Bû¿›§Úßýïjzû»é¾é¶½æî¼Ø 6››ß~lêrH¢yÓÝ”¥&§Ošñã [þIß_)ÿÄò§tX&µúÞË‚…ÃëÕ«CèÓãjiat‚ǬîŠ_¬SpÎfÞÁ€ÑMH0Â1²_G ãCLæoáí„Õ¬É6 ´’ Ìt¥ñ„ÉÀò íâhÍìmÑÿ˜K@‹ÊÖLUjq:ÜP ¯{$B- îÑOúÄN}ã‹ã­ ýýð‹†ãPqlÅDøÑAÙUÖíIðµ¾ó»Œ³çÙ¹£a¹™‚ð¯¢[äW»dÊ« Ö¦ùÇLâŽÄž;ƒk„„hOF¸ Î.jËUåÂb ôzz¡­ãë—Ç'´{~ ýßhÜžŒ CÏð%#@euªÍÁñ’^™f½]eÀË>ð#Ë‹&¡pïÄÛ®Mw£{SÛ#ý":åÀ¹ d ¥ðI”%Ó«øbL3œS¦Þ,šºö!5‚FIø­³&ÀbëãUP§ñXöŽÅ‚©Ñ$ KIíý{s-ñrPu1çyÊg:!åü*ÂÌò˜å GQýqã¾vKx‚G1Ž! «cã´ „—íì½°Ë;Ô˜ã´:BLg)‰ hF_Œrîbð´$ò‹ºÜ¡ÊÙ‘:vš§ 62 säØ_ÆÊTXÂ!:XI”³’ðú½âØõØ}u9K0Ôü6ìÅÚu IëtîB?a½…æ‘®£JGš­ÐuNìäø* €̨®$evb(Q^‡™ÇZUtð¿bd,Z³—ÝÛ†ä[ú9Ò“núˆJg ¬‰-oʲ«\?ŠæÆ«*-ô­ªíý­íýÍícµõ…>w¤k0Hây–_ÑêÚÛ«±…< 1K$œ IÊb†( ´I`o«Ô´ šQÈç0,JÄz:=G¦ÆzÀ4Ø„ªFÅ0ö†4æ”uT QiáÀÑ.i²¥õãkX.ñɬ‰Vƒaʸß)G5unÇ E§hw"ÚVͬ=á0?k6GfÁþþËݤô«þ‘$X ÎÎÊÙ“®`•$0Íæƒ´CšÕˆ,I°up\OÆ·]U!cFªÒ¨3Š?FL„N÷ŒŽ^ œê«ùËÛ_Öè$4ƒfE û©²È‡ÇÊ»µ³¦Ÿ.s>~LUxA¤> É´F#ÙÖ#޵ ¢*«¾Áx§ )«u^a~Khœ Lý<\l(h¼L‡ü‰wêÄ(6jé%~+{‰ÂÿÀO‹¦š;Lr&ï½·C‰ë É_—¬ÚzÉW¦Ê'$«O8,ô/AÄ*øÒçZFñZýì`@R`‡×°aó´g²K®Ib—÷íTiÍ*)ä²Ýu2à±ÆWYƒ~ù@Žfô¿ÁèVh!€3È¢„8@õKô ùÂÔû3åÒ¡°å¨Û%ÒWC{Î熲éàqÖšÛ‚ÄDXµ„?ÁCŒk¢¤yE ?0>íPn+ÀFÔ‰k©ïÕ¢¸'d÷:}¬,7V—yæ“ÌZáK±¶ ¯²g£QÓ‚H{0ÒÎ ‚ˆ¢­Î¬h€/áÛ[“EëâP-¥|/2 *ôåÅ~7§Ó…öÙ_‡ggP8ó¯æ/‹ÍNETfŸ”7,~þ,Z²æÎÓXlkDâÇ û(fO-®†UwžayLÑ®MÔޮݓqFï :Û‰‹Ø1?%{gíÈ[¯ãoô@r|«bî¸$¾èfûQ(‚ˆû‹N–v‡¶‰äÂ&îê«§ Jž1\Æ)—ÁE•Ù³¾RÊìËàö´L†’˜jÓ‡*zj²\Ï1'ÿì wª£Ñ_·‘‚#‹¶¢ŒÀe{féÜ¿¨µÙ€èf72Š ¨]^$g- 2;.:× k<º ¾iwyp!Ñ‚í2Óès0Ä2äHoaìí¼á7×LHö4¥Âs$OO8#”‚mtX3l"i.4¥˜FЩx‰¾ÐF)Y¦ s!ÿ:%là²Â^ð$öšŠ>º-Þ¾þ˜Üš'©dë§ò;¤CÏÿr~Æ7¦¸p@ š´›EZLÙ4“´P3£XP)jbD’b%ÝŽ3mJj¾%L—p]’3Ê—i° ’½»¶g ‰zY9Ÿ+R1Ií3é‹eknÝž›{1+ñmª»"Ï(‚ŸÔvë™t@úÖžjÌ01(…cï.Üjôƒ»Wö¿Ì±¹é¶²ŽK~¾¬nL2ßV׋ß?æ< Š7ýz†ÍŸýs6õÛãÜ7Ýû¸RNý\Mÿ|\¼?ªɳ6¡q»'UU<î¨Á7ß0sþà”>Óî u­ÛÊ-è!X:‰û·´âÌJ«ŠåÕŸVZEW/¹æ–%mì —?4VŸ1¡—;oö¶×$†ª…ä{±rìw膼;…枥§ö&¸6Ñ0¯ þS×d£3²—ØêØBm<šèæÇÊOvZ©1XðÊ}Rfá ý5T¼±K¶è%³{ŒMn!PÙÄ¡¬ê%†ôÛ(¯¬ÊY…倸{ê-–ïÒ!£˜jàE;ýóJ~¦ê$ÇŸ¸Hç9Ldo“ÎÂXE´‰ ”ÿ‚œS¬V‰EýŒ[ã„­?ÑEcËžE  )»üø‡'íðâ;¦SÞÆ+¥ÆpY{[eÖW3¯ËüWéÔŒñÍÅnhºA¡‚1d]:½"Ó€$'kÈ"& 2lPFZ ),{×ìÖ*€Ž8kŸ­Lú9/1äÔ!ýŽ“>¸ÞZ¢Š-(’O¬¦v‘ªpõ×*L$s ¿­Ík ÁïÓ¡ xt¶DâK•þž-~>[Yû<¼KC2KQ½‡D.1ò‚X›ãnú&“y`wG¼v±<#ÙTˆ&òÉÅ—hÖÑšg=d8îAé<1¥Õkïm¹ ƒk]c¯¬»>ör€Ò;°·Š©â5Ûý€Yøß`ÀºÂbîñÉZ5…ìÕ­–Q_1 8šZú.…5™Ð«Ò_ë>¼4Ì÷ÚÝ¥ï•Ä÷ÌuÌ7‘êé|eœqWTs;~žÜ(’2åÚDv‚=žYš°Ï`S¸³®†îXûÂt&±^‡ ² DVVxÆœ\”CÞ—°é¨ˆoWA]Ľ CXÃ!CkM,§¬±…„ðPótU2–D7·±j tm*)x¹X–ìgÞÓ¯Y‚Õ{Ó¸SlÍÄÒ~©eƒg‰ÍwˆÎxÙQh««@ÝÑË>én\7S _ŒS+—’/þ¨Öô —fÿà+0 i•l•íÏÑY³ªÈ]ÕK;˜˜Þ•!/×.i]†ÒãøôHH>Òd§ î[YC)Ã.\Iü÷èÜíF]ƒÍ".J!Çsdßç1q—·ŽÍÑê¤)‹í¹_2‡\nŽÇ–Ø@—(ÀŠSû¤Žß¬á¢éâ%+0§ºáÒ×@a·%@ÈjýÉæCÕÔ{Ô#‚”CIWܾ…£L9X Vƒ•ÇÁÊÓG;ÃÕ}}ey{âú¢yC¿$l’1ǹ¦²cLèz .Ú9fçš¶Ns¾Î††HGëT–M}ÊÁêM·šýI·›‚þr¬< Ûlç(S™šÎlðúÓméBäHD¬\6éW}m$SOÄ÷l ‘<ÐÓÄò™åú–"Z]ÚCêŽìˆÕe ×±\¾XcÈ„…`ìù× y0›:z]^ïø}F"tñ@pt£hÈ£+ÿâõ÷¸ÇàÄÁÊ{}¯¢·ÅkϧÒ<ùê©yb…%JÛMKJÎAá‚ÄB5|”¡“Þ“ýÆN,0)ÛëHð1Ü, o{i=ÉW$»½Ï£ŽWÑ)ШzWìM½Êr;7½ÇïÇòú‰'îÝË‚u!xŸ3_E Wß{ß׬lsQ¹tªYá0obšû +/~‡+1ó3­DL\¬­Ôž…ÿsÖõ?W•þÝ×Pñ¯:PùjX+ê 5ÞŸ3Ø"Pg››ÁÒæ·ßJœ²×‡´¡Æá³'Ú+V|“[7°9r•˜€û*IC" jWªô&;z†¨U{“÷[W;ÏÙ 6€Iî:>t’Nù|Ò©˜ÚtYàã{ÇÔ%’úö°h÷QNt²_áÖ°/qÚT’Ú›‰Xl¼8ʤó³',?g4« ¤YFÊùïÖu U:¾ž¨“ÖI'ß­+*&œ#iÉÝK'4RHþv5Ðýõ>søÌe ?“Oñ1¶Óá#©ã}"x7\Ôq•ÕÚâ¯vÛ4»ió—àQ³™œAsžÿ½yöí0ýâKåŽSëôëùaõ’cM'²®2Šê-1 ’û‡œÏrÈ.yLB±Ç‚ B5ëUª@b±³PÑ-¼\TÄDdùoÍe7`üÐ<Š:øŸ5Vj¬Þ ÿl‹üéYcµþtù ¸@9ˆ9qeÊ0LÊ„]2'_#Ä_:9œÐþåˆÜÎ ‡ô"ê<Œ¿ÌÇ`‚]5xt>¸5ùbl8ibL ŽœøqhP2ؽðÔNõK–SQ'Ù\ &ý$uNÝd:u÷z¦Rã ¥0pz¡\•pŒ:,Ò‘W§eX%D#%’ªÇf,¬·g6'pL( qN« Ÿˆ à²IÙ¨ˆtm‰L—ªP½*×QJ %&(J‡ é°ÕnÌ`먫ý·à™¸>½s#Ѭ˜&¢ë8‰²åäï(:¦œ‚u“Þ–ä¤ô›÷¤âû  ärd#ù¿ƒAÌÇù¬ãž‰þ8Šôðjî gò7l<>§Ý­©kEqKÖy¤ý7þ˜§SfR9ƒ½Eÿ ïªÓ”ç ºSÿT~ûnq—äPŠ”v-¨äòþO0ó¥y²´€ °×Œxœ´uóŒü ¤‹ï€ÜÜúþ 5.î*‹«‚Ü'ïßë /ˆ®‰YÔH.><«­°Ýžôà:‡Ò9 ¤¸¡2ö/€¯ÐD“Œ[÷JÖ“è·æ6+ØÖx÷»r.wêÖhÄÚü‡^Rps±Ñø¸R¨5uÌž«ê´)—šS¦…Ñç7H]I³y¶Ò䇳³&\)š`Êà KŸƒEëlSLxës^CÄÛ)O@Y(»P­”áôX®œ­ÐhéCCï@…„´×¥E-ºñÈ&G^™‚srYΔº/+˜g^òm¹¦‹ú&­›23O’Öæ¹ÄB±Q$F¿-j÷#c Û€ ð÷)DZàóA"¨D⤧Nz Ÿ “;ÂóÊ’ì˜ ÆÅ¯Â.‡‘±‘ÅhÊIÊpƒòˆ‰èÍžE¿lOã葸«x(6±²>°×’Ÿ?[ȃ’è*Ù.Jnžº¹W%EßòzÆà) Ëoà{ÿ‡õ ò¦^gwmHÅS²?[u yeðüµNó•§²ü¾óòx½Ì:é9ÜMÕ\yñQ¢3R<²ßŠr/”r¯O ?¡ÃY¥½†« xãVˆˆÞ Òa©¯Z\¥]E#OÊo[ȺFøùã/þö—5y‚fM´kæÓg«tü\. vfF•ùoR*¦•„¥ßK±ø»ØÿŽvľ;kvwàmA·ˆ"EÙØ]à£ãÀTÀáy¶ÎÇ 9Árê Xýe?þä ´ˆá…½ónžé«»!Y-`sGŠ—9ƒÛý;8ªó&pU.¹¯8ë8ÐD‘œÛLgušÔ°»þÀgXåòóS3t©Y9'9+Ãè>ÛòÀÕƒé úã¸?IÝá¨#';àÞ»õès}g6 Õ šêÐLŒàý]{×MŒÅ‘ßìí#ÐqUžJ˜²æxOF¬ˆÂQ"˜s¬gr÷»rêEX—«ª×^ÇÕ-2 æÚ22íõ7~j ZÎzÄÀÀ °*²Ùj ±ˆøpv±.þº·ñ×mñ%«»&¡Í j$!_dUxžÂ>²#¡#R·Aöép(þ59Ÿ0Ò®LmÀà$âcsݨc´Ù‘kŒá–$t­04•Fœv¼äwƒdŸ³%sêz´vVý|¶òùÕìø½Z–ýw]#­ÔV;Yõ¬áÜ©íà_ÉþÓ¿ç¬{»m‡ÿ&¹ö?R¬Çpþ'H±¢vÛNϳ¾NÆ…àírý‡wüŸGAp(eÀ¡”éä$kkŸ’׆Îà_ÿiv¾÷¾ e—‹ôÞ/®­UæçPàJ’™4EêY•¸šÍç|‡³È÷Ä($7¾mÓ‹aÈÿçßÿÞ…øÿIów-c6þ¿[ù.3þ«Ëß­®ü'þÏ¿àÇ’Ãîpóh{Õ†…g2X/@¡’”ÖçúW*¾`[à%m4±Aìv×ìM&–Ž «TÌSÜf[×ÑD’X“Q©Þ¦3¥ Lj/,qÚâ¾ 2î!Û!b—©{L–’I7ÃnWB>ö?"ÆëÔ§§6ÖûtHE˜¸ÿxUýçJ£ÏõëÀ‘áûp’~w²ŸX#G tbh—N¢dl£3MúøÝ8gã±<¥O̓c6ñúÔüi/ŸBÉÆ¥2˜ ió¾¡ÐúTR‰¸ÅǸ£Z¨1BˆSt"±Jv™qiÀÉa 0ËŠˆ'¯­—½5D[ù2:Ù¾.Ïù9cý^ÿÌôb¼+„2’$†»kfÍײ Ö’Œ'‡ÆçÙEÜ.1 ˜ô9Yg|µ|_ Vž±o øcŒÉó7Ñ&݉%D«ú<îËŠ†Óãá(¹]õ»œÖçfÒ…™þ¸ ÊŠ®ZÆp”ëŠ) ‚ccƒÍndB;'úáPÔ¢”Õ…—K>ÄÃR€sÍDLöF9âøEÌ6ÛшøÑqW»V’ÙÂ#5ÞµíGØZÃ`Öz‘Ý™)sïc=«lnxÉ\®ÿ¹åÆîœÌFÚhÐá¥Ò½åkð¡‰[¥¬÷Ü _£„±êv¢q  Ÿ4fŒíh££yá°ªàÙn…Ç4jÌØ¢›V¸4«ƒ¥•*‡ÄÔP \kŸ\¼nÓëYº‹c™´4âÇíÑÀõ¶‰Œç‘ûö³üþóÃQŒîÅ4BX>!äE„âµÅíI7Õì»hÂEã0ÛåþöÏ»;ûÛ~­pÏÅ«Dñ¬•Ým1 ip†ÏÅ-rDLœ.LصKH ŽŠ3F(NºcYRÆöa«ãÙô‰7‹8>=<<8:iñliÑâL¿Ð¥š~ùxµ¦âñ/ûÐsAniñ¢”ª1Tn•øú­çeÕóÝÕçüÉä\—»·.¾Zÿ6-…ô ;íÜZÒÒ±B­¾õzã§íÖæÁþËW­×ºvÔ0ÄÁõ7öãeiÁl.BMÄ ÄTuCÇÌ 6_!nÀÌÈôD…ý»ÞR4!!gë”h71.˜5^IªÏ ³GÃh€N0kÇöâ%Û'ÜkÏ,Q“„q F‘†ÀËýF—ƒ6Ñ`^ËfýìõϱUð ŽÆ¡2l|q_B‚ôž>ŠÄ2R´ –ãëˆÖ€*¾´ÓÏ7NŲëÁ¨Û©Y[±Üï¤ý¤U™P“!IüŒ¡ëGצ¤š±ÄEýË. w?Ɖ1 úSÚ"F$”Ô2vÕE¸6ãs²ØG ”»)Îû€§ÛM¡ˆÉôŒ  ÂÀ¤S.ÀpÆa’É«ÓÞcV¶ìÑð„ÐCÃd^¥³ÍÈ!6>–1k—e¸Ä8JÂÐkB‰'ÙÖîËÍýÖë*3ùÕÙL>#ƒo^ƒÂãj°½sòzûhÍÜ2g¦‰µÀW®#i´1l.«‹SéøEèùÄfè\˜äjׇ3IÁF#ë³ÄSÁÐÈ®9 *ë ¼p2LMjÍ@æ÷Eú–°-†Ï‰èaã7”‹ÛSnÈ•«¾‰ÍxRy¨ì&HfAôzv²ë„à¦6÷–„#&âÍBB£;“ ]e÷W•1Œpì£ëz¡Éc¼ÍTº”É·»Ùº¹¹)D°§™oYÔw µA*jkz0]ÄQ»KÙp@ À„r5UENØ0(“wZe×ãí›[;›,À™‰åu›òÄü É GzMX·²*eÁ‘С{’ÊþNd†eÌ“½¼zžT‚(´ò°ì|r†LDõ…Mƒfç…ˆ˜‰>[·¶‹èp³Kgt<Î\Ó 5E-wè™Ê2”Ñjacó`k»uº¿sÒúygëäõú÷²ÜìF)ÃÙ`8Pd.ÞóïXk"}«TàížZ'ðµn›•â Ó¶í¤Ê‡Y’Ù}Cçi?Ð9n ×Èf¦íô·öÕšQãük7?2_¤;¦¼nµ/GƒÉpê×nXPéšü[Øt¼F¢ìëÎEØbãÚìE™{y3¦9—}K¢k§u_¨(GÿñxZË!wUa…øe g¨â/ý‚FkL¿ìëÁ¨³:_d_Ù•»ß‚²'ûM,ïm°Jða7uZµð ºÄèýΣKœNÀäËœ«ñMãJ‘ßõ¨“RƒdÓ¶|'Ì5JpžX­–Òu¿jºÞåðuR·Ü¥â-*ªá­Ý]ï¤æ»¹ÌÞaÄIîjî™Öñë£í­”Ȩ–D7Eÿ~_•C¨ Û™›#¡¢Å`™¥o±ÂÛ肹|‚ž>ØéÙ–2ª8íoð(>"ÅæàŸ-ƒFþH‹z6Ú0{‡;­¸Õæi£8Ñé$Ú,ZrÐ*«¦±pÂó¦/ ÊÆ —9ê©]u¬šÌatŠZ6F}—f0^ƒ‡›ªEìD°ÓÙ,ñkS:§û¡ŠT 2ç1ß±rü8”‚_³ÊÝ_xxØ\ÙÓÊŒmL!q3Ó˜ìÌ• 2n f‚Ô¡†‹mg׃¹Ìƒ,L 5å» #¹ä.àÌ%1JÙjâÆéÛÈ|g§YMjRzóQèe'e-¥™¥úÕŒ}PË´‡qãl¡¤eƒ ²§'æê§7¥rR³Ÿ³¿ffu\7úÇüŠÝh'™á±U´½jeåå0øXô不ӒÞ~hä¬Ó~Ì;n=>Ù8ÙÙ4w»+}áTºà½ìl«ÄZ×x&¶w•Åx;QAeä’iïø§M@“+ÙèœwïrAž2éI»]„«àD§}<.ÑÇâÜë+·s¤¬ÝQt£á|Ý–¥ÌIÅþA »»8]ü´½²s°Ï=B»$#é[ñ!ºá‹nÉYV$Ìçu3Åܤ±rw&j»5.Y»¸ùrwãÕ±0æ,%¬wÊÌ1ŠÍe‹DyŽoŸ§–dAÛEùÑç{Ð’–P¯©0¥YNÆ=”ÄÍ*Ïªéæ¢›ë|ÖsÕYó.eÏu=ÙT›óŒù§½©s–ir"Ös±*+Ë%ÜêwâËž_aWÉš’Ù‹û¯~Øž?7o/¯ã¾gO'·È¬£-±(÷À”–»üÖêdJãéæ?ëþ$Ò ÄsPR¡¡äÛBÚj%¦˜Fâ~X ¯ĵ€DÙ¯a¦ «†‚®bu°6]mM¥ÅW ; i±,]ÇõfóúúºÈÒ× :N7«ˆ‹-Dlì̹ւ jk·«7*2¬>†q—…yðb}imùƒÙkp—Qr÷;Ð'eª ]ƒÑ>¼Ú? ØJ ÛK½×vYŸ˜QgÒ†&•ïÍ;…ÙÞ1át­Ù.‘y<êÔa(…hf#Dˆ ÞÙÚÝ5}&ÓbJ§µeÎP]s½¦ùÞ„ö£IÞ •Çß ³ cŒeÈqFc!Ö Þ‡hI \iÐÆQ5öÀÈ m1ÁÆá1†‰ÿÒæx+Áœ>ÆVXæ«ZõP»<†#†Ýx|k M9€«Æ¦JÕ2hü©ç4Æ Ì8|þ¨éìÔí]${‹#‹@ZÜtÁ›¾ùF·ù«‹\ ÷m6›žp¿y“HT¹Nwk °Õƒ„õuŠå,G:‹N §ÆöìÔBinïÖƒ IÒédß[áÒw/8§í«íö"ê¸SU§´sV®ulIxµ'z‹.sÜÄÂ-ys…÷’Œæ8ö q$P-Ì£ß`¹æa=·Xúù6ÍôRâ`³?¼Ÿ˜’öVêÕán©·£~ÛX­Òüo«4Ë 5‹ØhZ&Ÿ‡ÅÊû,ï— âÛ*l¸:!†‹^hp}q/€|ñúWÑ‹‹!£70n¥á„$H¹8-xú]ÆZq å¡ÐUä²*XG0p|¶`ìܰU©ºÀ‚ºâ !f.l¢“ÙI±CK½7ê´ÐÏDŒ+ÈsGÄjªé ÿ´Ê;oVÚek,Ó†¦Øf\°ÐzN02’&"7As\ÁkLK‚Œhö’’ µ³y¼ó§t ½l¤“(ú-8«¼©ŸJ´…ö³•pFM¼¤ê*e)J"CC!ÌÌÇ|*™j¯ŽÀá†S×S4ÄÛÄì!Puó:;¿ÍJ ôæR-@´{@ÞØQy½×pT-¹ô2M-[’RµÚ•>¤_øå´ø'ª·Ò½ÔšÀY…Ó¥e´Vû;oÒZ«Ý—%>³PW%÷}r•>ÙE”H %58HaÖÙÒÝ—²Uñ]| IY®…ŒÖ½ÕØ#¨Ž'Óg+äk¸MÓ<ô,5A6RF)aMÌáá4ßÁHL籿§kÓ¦5a;Æ†ê–ø¹š“jt}Ç5É—í,1QØ´‰K¼ÿ)ø2芿þŽÆíFµD›Kw0}bÒ‹FƒI’ ¤šö£qÊ”ÛV­ôb0겊hÄæšLýZ°/ò)f;tŸ¼¯˜³a:‡= v£}Ú'W‚êÉe·µ¬Ó~”å¬öHDÞ›hj–…·,0”¼p {4;]+DËîØo&°JØ–'©IØsˆÐ®&A“—ÀÉa2ÄX±`%y6¹2·š4C/h¯ç-ˆMƒÄZÙÐyuºSÓóg›ÿÛ/Û°šXÚ¢´gÇ›—8@ÿlñÇ`ÊÏ=¤^Hèé2“•ojÔê”.,×GÈ+Ajbbé:Ùœ›ã ®˜H,í×ÌýˆÊŸÏÎE~ôe0U½TZ/øƒ¥QIFðu¹ÆâßBTªž*OGo '¹Ü×W(Ô™¯Ý͵3Qk°6X…;­Wƒ­,áH¢×±$¯ƒ’š²Gᨛ¶Öh·Ãk)Ö†h8RÞ…^ÓŠŠK $¨û “‡§×cZ"X†xS“#·NïRM\ר«o3/]M¯ØFúÂÆ4Yþ[¿¹9'„RéIƒ¯ûÄ1‹ï%êÁ©=oîîÔLH1ïyØ‚Fã=–SÜÎùž‰5ßûæ@êËd­A$a›ó¿úíÉ<&4ëºxÚʽ¡•ÉelÍuAAÝÌ’XÓë”Pn.¹ˆúå$v2dzÕ? Ô¾BoûéÔQsöT˜ª¦çÀ›˜“à¡i·ç+cŸWTþ ŽS„~Úlþ´ùí·æÊç¼l3·ÈˆaŠÇÉ*—Ÿ²¤' ß9jlÚ*œ}»Jµ3°šåMçtGâì˜ïsD9\ Že0X©n½{‚­í éu—3hp\qIzÅVM}°wü·c>Wé6"½è½}EòErw‚™!!u傚ýd>Âwš_‡¹b«1[£Ÿ×°4ÙËJ£- Ó*ݵ‡rNÍL¿ ¸0Ýèw!+dE.;ÿ &è¯T$7=ìôÍ×´AÛú…¹dÒGÆó…'¢Y^κYz0Â’Œ×Q î?ÕbÈ_5Ã.ëuùF\“§´üb{µg,ßt&#Õ¨zõãNsÝL½RùkH¾•O[*acF…Œ.Ê]KÉ 0’+ßó[§Â³’­i‘PR\Y‚4P:’ràÕàèt¿u²}|rìèÈžÄZ_š²XFã736Èõ"Á¸Kr:p'⫼ÃWWÌO?ËÊMÕ‘J½‚‡æÆó› O\a?öe¢u£¶!g'”„¡µuõölªóŽ:jñÞš¤.þï:¤¡ îq¢èÌÜÔ<—- ûêÍfíYÜ1¬“Æ•ªK ‰¤×Ub2’«\°º¼ò«‡¤h _®Á Uóbcc1 qª"R]ô¹¸36Þü˜-þM\œ>Òàh×/y‡!Þü=±3üD½Näzƒþ‡è6aÅé?£Nshè–J™ðÕPÕՆѼß)ãð¹É`É#-’µœÛÕJ€ˆ{W=Ið1ƒò'–ëúEà2Œœ½d˜ø†ìå2ŠÇS(VDüÀk)Œ–Ww*ù$í%þ=¹tiCCç ,:¾¬1(ùWˆ²»ÕŒ­ëÈê›±2—þ­ï Ë7¾z”ãˆáKŠ×dVƒ#áB#²²üä»*/%ëëD<>‰‰ÛÜÅò¨¯4Íì¥â/0ß'ý¡FUsj4E òá#|؉qxiÕ]¬ÁçJþÞè(¸§eï…ŽžøØ—@á;ä'ZráÌœ¤…Î^dÔõc…¼7NâbÃ)@9z$³Ò$K&ˆ„»˜&¦]F‡£ø8 0ƒµcöhsƒÉvǶ)ïÛí÷8c|ÿÃ{EzAíÞ·øá½[ NvgìŒ ÏXƒž›ë9ÏC©Wd"ï±²éÕÄÕÜÁŽ­ÎÌ$x_ÿçIç´&—ë››ûWxöÞ «¹õ€ÚG©÷ÖÛM5êrsŽXLüþÊ(_q¾-ù~ɉL–„·Ò}¦Á×4…>¤{_zž†D§Q½CH1DÐÃ(™qKó Q^ó$î®Wx{„ñ9q¸Œ‡DÓ‰LUP°q”NëéÉËú÷RìÏŠvÐ÷Ï>²‹¯KÇwá(us±ÈµU\g†Œc8}N<®dùÂN“Ès¼Øô Rdxk:6l_ÅÑGc3.üšs¨·xyÉš@^ËUx£Û“Z÷VÕ`uLLzŽ:VÇ=Šª“¨f8Ùyg6Ôsï¥Ç–”Õq"mQ?ªuÜu«w6¯M.në5ŽyŽ£(“9¿GõóÛ:þ8·NÒÇÓÕ§ÏÄ¥-Æ’díqæzKæl]´ÍWÅ ©Ï⋽Æ–dkX2•fÿâé'ÊüîBb2”›DZï‡Ç?„ò3:§ÖŒsÇâöùxù>F¤ ^·sqlý ¯xаÍ•¼»`ÿŸ„ÀÛ±·(/v™‹¥¿•ϲ±žŽ¢›G¦@ tÀ‹ÓEÀ. “·t› ¯`22r˜5á‹Ùprwcèpœ³Èr­„Ãç‚éŠ-ì%e¯SŠºYcçÑ(òÌÜ©UÑiB–¡¿-$èE@ŠmdœRg¥’µ'3:]nÕ³nMÛt'g…·˜‰ŒåX%¾Üb1wÚEà„KHÆ ‰âÚèU.¡°¥#V‰C\›ÅŽ™,ðšÆ`ÖÚîç1Xç-“|á›yØ¡ÓxÎÆ@ÝâÖdˆ{²ÎZ°ò]p@‹ÃçêòêÓ;òþëÃ/ÌÀÿg±‡Aþ¦þÍÄÿ]yütåñã,þó³ï¾{üüßÁ?ŸËI‘£Q·Î'nÙEFÑ%+[èàk6‡Tï“9±gÏ{)–X´Gbjx>pšÁ(¦Í–6 ¤Zq¦w§åé;)£]—ˆ¡#:Á´‰ùdï¦ûÐé>­©MX ³•‹ÉˆùoãA²Åب›y_óE”X(+6Ô p°Ö…’×øJUqÙ¨çÝ ”Ï ÔÂÄSÑVM­ƒÀ~2½Ø¢ý:œC›¡×øÎÑòA%¢– ¦,®úÝhÁqÎiÐ’h\~ªù7Î?­òÝQ† |âÐëfÊõ*¿žœÃ}@›14‹¥6ã„vãK&笗_jÑõЧEÓø˜øà¶¨oWP9ªB3‘éæprÓ£cì±Æ%abôõÏ—ƒÁe7bVŒ;ÄQôèüz‰‰x™aö hÈ~–È·6iž\©dè…m‘$T=†õšÂD©‹°XMÈV<—Ð|¿Û¤)“{ï²i+E E†ÎîÂûÛ?+fœg»cïÔöÆ`˜¡—K+Æöé«‘4†Óg|¬,Þ¦Šó½ØRtïÐzƒ˜Kɼ⠎9žcªhkò)§¡Žç1«s Ž"U¨q¹[EÏÍ…’g0$`U>$IÝ9äiïIÈM@Z€a‡ÁmZ½™AP£Wl’D_à¾Ò×zqf…=»=äl=Ä‚€­€Yf"p½lÈOlÊÚ>ר’ßH«zkr.ø]Þ W|tp™™í©sö<¹5©œ¤ö^5J)ñÙ”4©ž>Œ¾‚Ÿ²ì’¨!‚Ío¿5®¥F»˜^Y·äl/Ø,ÀºHõV)eÝÍo!T¦¾…Õ!["ÎìËcõJASª¾KŒøiª—)0ke¯fõ¾5±|Þ\ÜF+dü•x3¹Û¬ä¹õ\-³²N0ƽ$ê~䀜+nöZ¯Ôqb¯“ƒ¤ ¶­f« ¢mÃÆuðF¡w‰ó"ßi690X=FÛ 6±U{Þ,ᥙðñÎÙÌú$øà"ÂÙt|ÀŽ/•ÐD‚<Öš*®§Åë|“uÏ£þ¥?Ä®XÍ!ò˜£òY‹9f(1ïYýegÄèU€Î[ö°ƒÑˆct%¶VPjÖ_Ú¢Žýî­¥Ú& %zs޳Êï`{bö= Ù¥7÷Š%í@SJoÐá[š`õÃ4­ê Ü=ÏâNŽÇ³d£'sœ¦í³®…}[såy}Ï$›Õ/ ©˜Ý2DŸÂ­‡¥÷dX2¨ã² ÍúJRP(FðŠÛWVqªïpœx5éTÒD,$Ö‘µz‚¨v:±'ÉÑ¿µpæM%£Ôö»‡ 4Ô†M¾|+¨y›]ñùºÌ1­ÎcbÆI'±šûÉŽüÊZÉÙo|Eß,Hˆ¹v¼QúÑœN R˜ûj“´˜F¨áèŽ\gêÁ <öƶ‡.wWç;ÀÑPÁNÔ4Ú*ÿ 1ƒoëNLÜ•ßÖ¥ÇXÚ憞úQ¶ÁlÕüj­xÕ2Åi!Ä6Í(&X<ÖËÎÄ0k4JK…0rtû‹  ¾È ¨v¡¨ˆ{1ßWCºHébÌe•îù#L`ã››Œ|Õ´£ZÓhóÝ`q¥ ¾å›ZR­°B 7'ɨÉ6¿ ͬ²é‘,!r²U² ¤£›™ÉýàõÉÞ.wG-¸º¥MT,Ì  X!iÂíT¤œœeâ‡)¥î[‰«{ÝZÆWÊö„ÑE¨FÑuÔÔ>âäÅ·°ÅÂè·±Ž Šj«©LëÆ â'¹`‰ÀžÙëÅñ•… ðF0 _Zì3:U„êE.6)…²eاÀ_CsuìÇ-1¡¶¥¨}‰O0ÖÃNaîüÀ%ƒ¾Ó6ZEœ¹±âË””§ü’ѧªÊÚ^^'˜ŒînÏÄñlˆ üyõÞYƒ”øs®´ä#©×Ä• ·«Ú8c5´ç¬r‹¼?”;RG £Èä¹ .ƶ\Á'VÁÞV4^ŒónÎÝëó­¬ñèŒJÿäìíÔx9›?ü–#pæòª”Ž˜“]!Óaó®7uÝô[ŠÓ¡4BwUÌYÀb°?Uÿf"ÓðŸ(x ÎK¬dî:,¥‚*Y9rŠü”FiíïÕ-Ò9°D/º½µŽÇkÚT ĺ[ûÏÙNùy)å’Ÿ N¤G(ç½Ãb‡Ž‹ÝAÈ—-™ø?´9FdïÂÕ~Ów ²f?Ö¿ÀDX²ÎžÁs)•±™§ØP9ü{Ï.¾ªÆ^Jת–Ïb‰½†{9Ô ÎræØo¬xÌ™UÅŒ)¥ÜúbϽegÿødcwWO#)¸œ²Ë\6›fÊ÷ÌŒ’7®óÙR@Í”¤ÌÃé’½5&·bƒ V‡º¹¢¨åäJû’-k< ÿ’[¤€ü0ž9þð+Å%[ =58pG· ŒØ”Þ§ÅdÂat‚Ùï TÊ‚‰ mžÑ`h-ùݲŒ-ÎcæLŸÆß#QÁF¹¨Yk ƒþ¡Å2MÙ³c)‹TÎEòbÌzK².±‹ <ó öŸàN†=sɪOSþH$Ù Éz¥~°Ô¦n©¤üñëu‘cÖ›ƒáXd3½ï²Æ™ }Ÿ¸+pÏÁn2‰§2ÌÆetªE ¥\ò¢4©‡UÊ^ÏÐÖZ9‡ŠC9¶æ*g±TÜ—i÷ûU&«p|Æ/eî5Q*•‚|˜¹ó‰8±›³@ç¶ö<Œ0ãW j×v1J yÞÎ *ó¹†3a ;™A ƒ~ìÖzuâ|¼»Å\\Q ,¾]¯ë˜e{fŒKSUèìL]ÎÂ…!ÐÌ«Î%bÀ6ïñ…MßäÄœÓ-ðiz*¤ þ-ËÌ  [ÎÞ¸àŒù{“лâÍÝöÎ]S'Lبù¼cíéEòù„AŒ­±öYÇ[`^GÞö>Šž?½œ3HŠîjÔ¬aãÕÞé5©œ±xx&ö^SV«ø §ï@,^eŽ8/ãùÇ«3XO_‹X\« CþÚBÚz5rå–—s„1ÛcŠ—ƒ¬chÊ 'Õeܳ™íÚ˜(úÄ)‹ø¥¿ìœTöšw@§bù  ¯7˜˜ñy™ïäåj[ðС×ΖZz°€‡:kœ С ZqêB­M!4£;×´ÌW¶°…dÏWÓt…ƒ”²±eò1›¤gåîg4WRu7°ÁjÄhÛ\`­w“ó±'×¼uÈÑ5WO>$ iV?[!è!Ë´!p­f'7OD0Р"¢Ûñ¶˜üúâF¡Ä“Ú {f:S ë jm3À¦ŠÞ)ÖºarÇõ¢‹i]v aoK–ä–~®T«ü,ƯkÂlV¶"½¡³&²û¢µã!¤z“óÃRÕhUýmkÂäJ°§ú¼> ¤!(žðÎóHáV˜("!µ=Æ0.jb™”ßßz4ÝçC‰ú‚±¿ŠØÖx[Ž&qIEšÌ.òß2þÝEÙt¥d/oµPâJ³2{lÉ ·þ+/LÃa&Jh:›“>-ÁO~)2a À)ž=ÑdÇÉ€dšMuÀ˜³)@ÛBLî°/’jwj)-hJ_Йdxz¶èÔ2ÎÛÚåù‚—wÈjª nsƒFQV¬›LYvìÙ5syiv=±¾ jõá÷[-µò0°ÖÔW¯r-Ƙe( 2¶¨-ɉ¼ZM/zßY xÜq8£’Þn,=¢\U õb-iÉ 76b‹—åv(®|¨ZÌcE|Ó¹ ai4Wž5x”•€×¾™øÀu{æúDiCàÓXð•"‘­ÓÙ]Ë÷¨‰è­L¹µ:;¬gC™Pgoñi™n3—}LãüZ‚Û"̯#¶—·‡2u]d_–­MN—ÞÂM1C¨-AImÛu ìÉFl¤ôR6ØNÚá0ò*j4îgrÌ9»Ö Tôœ÷FŠoåk'òšŠjì›2‘8T8³6ÍÌ*œMv.mV™¦#C[;×Û:[6@p÷¥Áù1¦»/™Ó‰Ç…ò˜!:,žÈ'óÁ4Ò mÙΫÊû§»ÁÒ§h4¨¦x4_tØN[Ìd ذ04̰‰ÍÁñú 4€Bíèžv¿˜iýóyù(½VÍÕ¨GÓ­âÀøÇ>ÒÇÔ–´n¬f«ÊÀÖÂ`Nkîïby꾸®ÜRÕã¤ÞÕ|aÂûÒ½¨MÉA_¦ä¡ÑãÏÓ>²¯XqÖ¾‰Ô4E Ïàɤ©ivv$*,·"%Ô‡^«ñœâ>Š °¾Éêð[|„Lcé*kE;=6QeÇ$#q9¾æ¦" #žP5T0-–¤±ÝAƒXniŒjó¨èRšrKS<õ¯ÒSWbdçÀy22Ã5£ßƒ%J¬åó°ý!éBR;* ;ØñúXš¥™\p¶éúÞÌo®ÉÄEë³U6‚{¶žøGN¬,Fv3AÐHd:E!¼'CÚ«»ã¸ŠØžÇ>Ȳ÷"Bx{3Õî5a_¼ I¤…þ—N…}ÖÇÕmWÔ7ƒ¥¾ÑLØhã9oV z´8©‹7f*[åèk‡:bE:ÏÈ"çÔ‹j–Ž_jj­ËR‘$—ª®¹Âñ÷·Ú>j½ØØüëñîÆñëÖ¦ dát£8" šï¦Ý¸Í„B³sA\Æ™Œ„8õ@“˜ÁÔI¡céå{ Ì6>¤¾(ºìzeS+*xL=ÑEdfZÓ‡Õ§ËNì1ãxìíyOÆFCf„¾©så‰÷Psê\Ïõ§p±ŸÑÆ9\U'Ó4ñ÷f7ÁÈ"À™ÈÜ,^©½V¢añø÷$ÊŒt"è]–'”\59„\ˆp‘éè¦{@R #Ͱ¿Šzˆ r}³Œî Œ±åôã>ý¿µ²·;¨7§1cÕQÒ‹ì‰óá(®”^Šu8‡:[€[6Aõ0ÇUa陥ûjçp;ÑŒ81#ó_ØÒ¨4¸(7U8܉³~O"VµGó- ¬gšØã‘¸7C-›jeUk¡_»d)×úªfÜÕ8_‹•Ó—ËV“¬·«(šS¿‹‘(PAê(‘ðÅüd–/¯[ ‰¬§HÓ7||’µcæöP7-ÂOc†è¦š—'}®|Ô)C8Ÿ9uï3që<8<}ÕjÞ ¾ç|)ÞŒaºþŒ±®ÿXÔ.`߱γtЇFc¸—<8;VƒŸëÍN{Þš×|PõYš8 Hid>Äç1Û”#ÄK,~+Ë«OÄмêón€—àµDD YF{H/þ¤xf2°¾]¼6]$î–‰ÍLÐÞÆ¬!ÜwHÐnDv õ4þ\ê…7qoÒsçc³Iht TnÏž¸nscMÇÔ‘˜k Ç|i›jý:H­?v! §ž¨4†V0<düËÜëÏùÁż ŒÙ\×2š¾‘Y³m²ý‘Q?¹yãWWÅHqÎOò)ž˜u K"\Üù—YUiÄí€âǬõE¸ÃÌÙÌøW‰Y4wºª£0°¾fÚJ¬†T#DIåkÈRÃÍU3ôÍaÇmL‚'©ŠêM&'É<¥é´;|8®8Lq®‘­"áÝ‘œJµ¾Òc²_‡l Çž\³ö|Lj_Çà«—–ÌV»t£þ%÷¼‹­: •ϰaR…ÔF¦‹e5Ô«Û†\êÓ§…â4Þ)\6j7}ªŠ'¾©S»»¶ëÖWG’ú¨T%œ¾£§gVtå¤[Ù©oZ)ŠKUp‘;'bÀ[éï`rßP‘ÎöÆ?E°|oÁºãî­3¬¦EQµˆ8þÁ°o$yÃ;yÒÀ‚Ž˜eÆ^MW†º%³ÏxÈñ,Øí­cá§Øʳ'†ô¢‚kzãÈ¥®¸¼Q®>}–>$Ô˜æƒs¸âEÁgÕ”æ:À¿kN›¨«v]ÏÃ%ÿX?Š$ž#j­ŽW8MyqWoífZ _Gi¢à¯wi›‹Ì:&X¢öª.k©5nOèq¥KtÕâuèïžÀiU¬†¸V1°öªjëÑJ÷jA)è:¹Ù-g}ÒôJ—A\q`ð"Añ>65>•Bs€FŽ10TÆoÅQ$"=§te<‹–´Â†9lƪ@ ¢*©²°e•©qV­{NK.‹ü&€ (RgÌ_IR³6j²ÇM bl`ûlp¨L;v隊«{äsǾúF0ò©™_X,™×y× Þ¨[ûÝÀ¿{0û"îcžênšDŬÃ¥\•¡þñ@fBDü %ŠõôtVñ/'¬ H#v1KÐNîåä ï@¨DÑè_ã±}Ž™P´H‹î))ì†øcÇ®¥lgö»«Om,¨¼EÞßHoã$¢5ØßõzŽÊZ¾Y}:Íðmùfåi¶fadZÅr£ljIÓ}Ĭ‰ÊÁ&‡²Q8-Õÿs,#ëp¤Z16ù¦«?ÏÉ>G,rוO•šu°@£4˜ŒÕ¾cFª.û…^éFéIfª¦ÄüKRÃõlt˜ØøT‹o.Å›·‰–TÄM«eD'}UËéÆbf¸”j»r€ FdOÅQ³dê²ËQ,ÖvÖŠÕ"íB&GÉš1]+Zˆ#Æ“;´–a½pôÁ#èÁ…FZ-ÃqbîS‡ÀCÓ»’ÖU.b•à7Q %ô‡¹ho‹'­Ž%(’XLÊá¼!“Åô¯.Ýqu/ft º1_¬Å©ž¨$úS{ð±°¯JAaoQrâ—Ì»s†e&Wv:\©iz¶¹v—sø”¹øÐ©@L^]1n5äÄ:»-±%üêì+îqq §¢jÖ8‰ÙvÆ‘€-LÒÕ…¡•§bPèìE™oŠa$÷`sscóõvkkçxãÅîöúŠš„£¡~‹Ê‡Œ¦ªÀEÅŽ@à*iÑ€œíd9íöÅóƒ>ãÞm´^+ûQUÓÛ1j™˜- yëÕYd¥¬•@Cí}¦ªÿRz3ÿâÖHñ&2¤‹Y§ê-{¢±Ì¤ ¯l¥ÆC4Ñs6úŒ½E]¦pr‰ÕO™êÌcÐæl ™}x?IÅuü÷Õ4]2¯9§V% jT 3{Ú¸/û4WÚRBõÎв„’î?³Êº|ÂgÍ‹Áïò»ß Å‚ðO{ÇÏÓhxâõ’hÙšopt UÛ£ª4®h¦×§ög)˜Õ£uc.yóÀ ,¶¸õÎã³²èþì½{{Éu'¼÷§è—Îî€Ë.ã[y ÑC‘Zœñ$J°  A¶¢a4 ŠÎf?û[çVuªº)‰blàI<"Ð]×Suî¿ãpÛh!1fÏ¢:‚_Tzˆí•H6†ìƒÆ¿ÃÈÍ±è” L7ܾÄgbÀi‘ÒFÚiE2Â;Ÿ"[PÌ2ÊDÆ-âB絿˜¾à5/\µ2UîN}Åê Ö®¿•[%F(hôAc¡‰µäôæ`k¦—Ñ«ü'½[Ïx«­—nB¦)´5=ÝÝsFŸdü „šd$Ÿ^rRÏI´óäû®Œa­®Ä˜Ùî %ÃþŒ@É–ªyÉv‚&Ã%°Ú¶A,||˜ š¼éz})t-üCßq ÛËS7åU£°7ï¦Nǧ ÷’ -Ä|+TÚ-ý£µéÿ)J;UÞç/«Þ0êÈÞìíüþùîÓ=Ùµôb¤ÏïŸ>&aVú­Ûí&ê÷FÒÆ 6CâL—(Ã.à‹(‚ c††¿Â9Cá˜Ó9¢*ét~!Ü‹r×:¯|Ð,Êùm³ÐhõмÄh`EËǘ:›ŽÝè¿‘X¬¬˜ . 7B±:*È C×,qê½|S[8 ¶€1ˆÉüŠ ;ë#V&zR€)õöØ–NH:4Øüp3RŒãצÜÎ È#2¹ˆ/Θ.•vä¢M8rA“åXy[£·Où’øåù¡T³ÜTúN·%òVO ƒ ¸&äÈíâDÐ$à–0 ³’Mpb¬òqv›Kö%vÅÀ›Õ`#câî° FUœ$ãúsMí!Þ?FŒ,?9O¡¬ê=¥ª˜›ª:!§U}B«BÇ32:C²ÅñÑËó?nl¸ŽÖ†ï¤{Œã6ð¾üë\b%l÷œÑÙŒ7Îä+»@ðýdâ0&š¨_*w”+S«ŸÏ1ßµ°%doY‘jÒ…MçÅ‹© ºq­Ùá©°,½žç¥Ê©Öåq»½!º4”gÄÀrÃeÌ"¸IøXRò-PÎÌ;?:=évcr\ ©o@)Ô9Ò4™I# ™ük}€ø¸ûûßÿ~g÷¤YhÖ.ˆäb»Ò 0L!'wìëœgÓ7âʵ¤9ÁxTí²p¼õaCµ’§Ó)Ô3ÚúbÃÙ* R‡î•áÿ†d¤Ú.ä,eÿs†)~ÿóoófü?Gs1%4åâê'…·õ †I°æÁ‡†­î–çûÛ–ÖJØÄYÆ7W°Òñi û*ãXà4‹*mFl£ëˆœ¨M-ZŠš>^4Æo'¼ú¨sQ¬½½—m’;al ÷‚#ؼ€ Óþññ/o^™¦Ó) ÏŽÓ#àÜ}…n«†’?Î ÂAMIe•Á&É›çÊM1# Õû>[q‘×…äÌÙÄû&9&lŒÚž«˜÷!À¨hÚÐBŒRrá; –ÂåMm%4CŠ60¢©ùÓ(òc/S•맺›Í•Y¹Ê*ò ŒÙ\GmúŠöæÀKFPì¿ßúÏϚû{ÿU‰W ’tÉTÃi7Ö˜³Âr³ jžq‘jé߈—°¡…jÛS\èÌLº–\t«¨”?7$«F1­=.Pu*%ÝÃrÒQÏêúP‘íQLêKÜ`ÎKPd§e†å u7Û±­¿#ÙÊ1[" ‘W °¼PªY™Z¨Je¤öáÒàjw…*ìîlïï¸:[þ²{¸f§Í[Ó8ØíEY ja3l#W±g=ˆŸ´õ0ü†³¥½ÜÕ‡´¬EýJáAܦ57!Å)üW‰aõÇw“ö‘¿gXΘÝ1ªœ8 ÜKÓ| ~´¦"2þJɰ”›%ó;°%ó;Ok\®šqèô«6#bs•­ƒÀ@°ìƒ%Û‘à¬8$tÔv“"ë»y¬K.¸?±þÀÃR’î.ÕºÜöÛP3‰S|·¯ì»äãê@…ÅìhüvÒíÊÃdnô†¾D†:(DóñêÁ¾ÃKA·íØÞ¬Ym(tû),{ÌXŽâºÁ«5Í*ºxÛñ¹ï·'}yiSÿ°ûÌý²ÉV2]{)ãgë›~qO½¨ ðCúÀº¬ÞG/oKðÿŽrO¼ÿ(úE%QÛMµpðïi€’Ñ œöc¯&1!B,_ù(# ¡´½-@4ªùNá‚F¾ã.ï`ƒPs‡^¤ÏH>4*Öà¤W=@f!;6+ëJÔ G%ÕœAb Œ¨Å…•ž*üÒK ôN)/Jò!¾èÝQjªŠÉÛ£\’Œ# O檭*k7W¬Gp5tÂúo`{Ößíd~s™Ž®,+ßvLXÎjÄ©¹Ó¦>¬>YJç,z8cSN¦èûª˜3ðÁne©-<ÏÓÝÎrM†²aå.‰O¹Š„lœ²”ÃüǯÁNm¢u÷@ࡽ ¾ò ö¸¿XFÎ$Ú+û7ݳÌM‹ÃÁ†!NnÞFbË›ÕgVÞàÐ¥¯˜c-¯plèÒWlwɸpíjÍq¶ßÆJ+Qš·a›á¼J_!ã­|k¾~í¤„óÃh ½ÛWîß T ï½± « ‚è4»ÿÿŸ»ÍýÿÒï#Ží®OúoÞeýÕö¾û÷·Ûûfò»¼‰×bÿâÝB ¾¸”ˆ^êcš6ª Dy„£ÿüÿYÑŸBBW«¼ˆÝvCÎÕâ¾¹ÛÖEçõé j§o;:ù‰þÁ«Ç9áÌ´OÚøo¨€ÿ üçyûàâì¨ó›Z8À–O#©Fù5›ÔØß¤™mû"ïÛˈDÌ›ZzwùaÙa|Þ>,²¢}>D›¦×ù›‹îEn”Ø8d&ðµ¹MkÔ‚ãŒDX‡¦Œ6dK j…Ð=íµÛ´úØÌ¾çCHRaáT¡©©ÑJE VCåôøki>…D–][¡”—=ZSئ™'ˆ¶jåX÷R(I€ç“€‘aXŒ ”9ÇH¼ âM(à*xÓ\_Å÷Q´Èþ!M%¤ ²QŽ”¡,[=‘;ab#aqšq‘|6ÎÏ\i ÉôŠBN1&Üh4Œ +ÙügR_V&(&2gì3û‘÷¸´–L¬8,]h ICeí‹ds¢>ΕDã+££jÊ£Õtƒ—a-*9¿Í°IIdSvíPã(S‰>í´æi\ù”MÓÀUJƒß‚Ò¨Žt¶„¢Ç‘dlåšï<¾ g²TA¤òUÓžWŒ®TcUS…ªUB׌Ç,' +y‰|°`—¶·íãvÝF"W1.seD7X•¶êœUÙ¬: Bó=dX:Û!˪äÜŒ„*{±øj°÷"5ôŽ üMFI_6JW5-fɅΙ¼Éþ·¢[tÜÙ+ê`ê^ž³‡ŠW¢pûÔèÝÆ×iBF)"B³¶Ð9’ßn ƒ¥DV¯äÃ7½ð:ªì~Ç4Ý gC‹¢H¿D~lí¥`lVÅ“mqKÀZ FéÐÖ°uèþ@h"ƒZOE§Xw»\r¸ȈW:ÇGÍV k+Š7Ö,¼EªW«ôr<¯@ìë°>&Ê)O”°a±¸Ç9aú>R08šÉŒô]ζ*W†0B¤[ãdæ’ô›ÁiiJ „%s±ôÕ‘;jÓ3*‹VÅUô[q“9%{!ˆDCvÑÓg58²¹N—U_Z*ØØŠ^8p@¹dá”­R…Eá~dãÈÕõÕÀtâ á˜âÂ\å…—À% Ç÷Éi'*E¹—(œ\(±-yÓ ¾6[i»éü¢ªÜ%¾É ÆåGŠg ïoý¦®4\×^öô*–~ k‡póã-м€MÙ näæÒIÕÛó´¸Ûœ‡LxyÂêÛï ¡ [rQ2†)ßteU$yT= J¦dN§ªK¦Ò6Ì ±&š ú]â"[)O!¼JÕÅìÌmejj€'¢Ê¦”¾7Öý§àT§”†ÒÞx«×£¦Ë•“šY"À‡`ÐsÄ”-ZPÞ×ÞmtE‘Ü=7+¡…ÀK°xš Š¦­Y2äÔlQÛ8€­ó2%ƒÉÃSÚ¨,TTUÄ­°ß7ÂÈ6¬y›Â4½ ò!Ë…ÅAqb‰ÉŒÁ3ÊM³Euȧ{ $jʵËp½'#áCáçA^?q JplPÀFl)ü+›ëNby_ƒrCJ‡í™*èyÌ«ùî«Ý¶È­(î9’)ìYó;IýÄz»ÀiŒ6X&[eÆšbƒšTâé73ˆ&RiÙ¯ÍnpNbçô‚³ëJOÉTBÖA3Žz[Õ­Êà7ÿdn‡z„<3vGTXÅ·éš«ÔLÙäNÞkÈ÷J£‰$Ú-¦dW¬ƒŒó7‹’9ü¾¢ÅN¢n‘­á_êšYË9Z‘çã¨"§–mó$®ÑZúu@¤¤žWEÃ0튊¬‘ø›EVßfå-gÃ^ô>¢x6+"Ä—~@$¨Â2QÚ÷RúžtÍ)ñU Ð+.™ì´²," rÀÜÓb’”4)n.*a/“E…‰A1èl¬ÍQêUÇòŸMtm †ÉqPÏ@—R륗ƒõm@#¨yP¡T;ç»DŠóâÜþt`W Zâ\œ §<éâ;g_4@Þ±U ²r¨õ88UÊ u(óØá|¬ú # ©éVRlHˆä‹auŒï³IÁ'JYÀ]ÚÐ.Cã6QAyÅ— ïNÒÕì&ë§ ,Ua|š aŸ3e·¢{N­vƒe%l ÒêŒï@‰·7íB<g Ì)jckœ›}ßÞ-×µ“ø(QaeI(¦i‘cǼÜOU'WNæ¸M 1“uú„]Ö˜vç\A °«žéŠ‹d¸Tš1ã£x}ߌÁw±ñ†,ô¤GTçvj+±Û6òá—[2ib#Z´jPñq:Wö°Æv2"¡Ø÷èþâD"„Ëž!ú™: Œ®S?鲜Õ"cÙ‹ŸÇ»»ªB1±N2÷AáöQ´Åý-\³ý­¸æ ˜®E’IǃM‚Í BÓ$‚ú(||$p>%ãÝä ˜±íoí>ÿßî—8¡[‚½AEnjJâ1ãݺ/qýþßî¾ï¿Åw#©5ˆÏï+äMVƒ®ÂÉl¬/Áü)K®3ĘB ÛÁb¢Ü£@<¢dÈ”žÀ¸÷äŒ 9u—.–ÈÙkå–ìØø5A6ôBëð§ O#‘@Ø™1(°*r|H˜=ÜäÂH_B–«úá˜\²±Bÿ±àã6HÓýæÿYòE Ç|¿ÂSNÓé´ɤZ½ÔB•F;Š0f›NQÐÈ6 |E¼‹C‘úq¸•ôD“m§·Þg¦C©\XŸQ‚ƒ%Dc† ŸJˆs%®.ž‰ËÏ xãf‘ÒÐ’G:áé(®l´RNÛ@óÄ’»—XA\´¥´6iì²ÔýTÛ@@ʬÐAã-3ÁšÊñD¢A¶tF™š‰ÅüËwÄ€<&€c’ùG£o‚°ªêOSfå©Ûø³ÄÜ©:‘eî*Ì#‰½vøØ}'yëü²,Љ‡”qV(MSp*.TÂêLðE¥e'öœÌ(æ’r†ÐžJj8'¹Ó€pc 3p…Isrµ‰Y<8j0km^èüÞ"Ê.™ÇúõÊõŽÈÿCS°;mt ©D­ø6KÁ Ñ9»hSº´Ã âÎ?Ä»{ßoí=}ªÆ£û!+’¢Ÿe?ü;K†·½‚x%Eas;ti'¸ë‹ôcœ5…,Î'6c‹ –º‡ÉeH”½ì|hµ†û”cæ00ÆØ[&wHøÎ àâNÚsøÿöîãÎÎֻχÿnùD| um©7yd8üwÎÿK°•)ü 7Y‡‡Cl«¡exŒˆ.1ÃqÜ… Ý}ŸY56i#l*4ÌÑÕg*-p¤iw¸˜@° à¢]×ᘰqÓ¾ù²²GqƒZrð½ö,ŠRÊò+–[ÞN»¯Î6š‘ù‡ÙÕ« )ÌöLÑи.L¥É¶ø=Ž qïzbãàõ+8! 8A !K†aØŽŸ/í¸²S±]a®Q¬ •Va››áZƼDg†ÖÐüénGY-§ ~O'ê÷ N ÞeEÇ•BU(£ˆ”lñM›maÕÞ•ÊÞŽ>(E îA2v9Ú†×BÉO_¢c7²[–cäâÆ`OÍ“DlY.âñ²=V÷ˆÙ¼;p‰âwpÅ ˜h\;óÈÍjêTÎ:¦Iïó91í‰åàJm›nhÄg÷ž:ߌ®ôe’ÍYµUé™jK¢%“íx&ÛQÇäD‡áGEIØÎeÑ£ºE@ ]Öw>D¼õ­0#‘ýv‚]T–6ÙŽJo¢+Þ‚ ™Ù!@'V“Så #ë%¶ÛlÎQÖw*#&ã1d‘øRAjÑ^{s#”¤¬Ú…²íUÂq]™vNûcŽñòAÔmÍ€°S¤ {A®{ê×òĘöWpŸ*1wUrÚd)AŒÄu•O ‡§Ài‚ŒB{Éâ)FŸ³‘Žkn½nü|tòSøNLìJŸª[âi;f„ïr‚j§H¼$¢È‚è”ç V«ÌGpd'©0!ó”ûÝ[jÉütrñMáÂHÁ9xžR×zÅó±*Ôóa>“paôe‰ÀH|¶ƒäñHk³ëàIfC‹„u·|.e{5š`Ø+ÑFÎàþ†>ÔDB  bY—jjáU>jn³: Ù¹¾$˜tJð¯ðr9OŒ^&òÊKÕœ|`E—•.ðJã Èä ëFJr@éCù…FõOG-¶Ç†bBCì%®Ô€K)TMÀëÛ½¤Ô„ÔééQw°Z,„ßJm åQ$}´[o_? VÂ|q@ÊrÜð*vmð ^?ASþ¨·å"…M"…÷ÌCiý5B„·Š +‘U¶´xB¬¢tx¤ŽÒ‘¬îp¶4Î%Àª.œ• ÌÛ…å—{‰ÞÚ]ñ­lnÌJ›PQã§Ë cæ£Ò-”³s¦² ýº‡æ¿î§‹ÇTph#uS Ù’¦<)ÀñYÛ–¶¤­€W{x|ú¦ö®h[wÆbE!„Ÿj¥ºÂá­oQÿ–¶B ¼õ­P 4TÝŠEð-5”LË©ê\س·}9K\ÍF7­xÓ« œU4 àPÂÛµĈ NH°BE±eplÛ¡„LéÊÇÅ"zlWa;°Ž3ÈŸß.ý†?J!ʵ ÛL3pC–~Ô‘ÆÞç¼ÌqÊ; (Ö;ˆZ´pr³Eèß…… uXa±MþΦHóu‚}Z„hX Wž†Ù‡÷.…oÒË64á4)ýg}mÑíðñkø•}?¼ò8ÅŸì6=‘ƒIWç·¸¹h3üÑœKûëflþÙ3$'×¢dÑ‹¼iäFòù|Lø<ÓRg愺öÂéàÑï›Fô?,‰þØAkÛHˆû;o·Þ´~noœ½íœÛ__ md2‰ÁWÞORk'øÉ#,üŠÄ;úÉç‚Ý~a”ÿmüý¢HÏÑKßþ8Ý ò +û•ðã[E›Œ ü„3ûlQ÷W4\ƒcpõÂ%oÖª]½V ¸ÁÞó OmU`ß´ÏIÈùjÞËÇÝžlóÿRÏ’Tóñ––´ã+4o©Ác±Àçõ-/’×oÔxµÒ²‘\MgŠnÝ ËH8½äoé(èÚ‰Öñ%<ÉéáÅq»üŒPwIùà¿eáÍŠR¬´m~þ¦ðߌ?­67 Z>¤ã_ÞœÃ|>\Ž%lÆ¢îø-7šÿv¡$ÔuJ2Æ&»üŠ!%¦…¢)ÕÅ3N·¹%&>°5÷¯‚^̽.#˜;á‹>Ñ1Tä™#ºËà‰?íÏrØÛÙ{ºäÝè¬?ÿÃŒ‚xÓÎö“çßY©ßAb;æóìÙü¯ùÿÝßß{¾û?vŸî<úd÷ùîþžù~÷ùÞsóßÏ2Ã%Ÿ9äÙ›.§y>[ôܲßÃÉý7ùüö÷Eô‡ÿokË&©& ˜Í¹~3×MÄ®6 ‡ƒ~†¡ŠjÇëÅ)øÕ¤cWè)’…Ââôà°1Ô[%2g™DVaOBÎØõd–¹ZV  aœÔ^?ŸdeSAò®†Á4…Epø6˜'!ySæÖ Yž7Œ£œ¨­-³¼ÀâÍfF^J_КØèxX“?|G?E(f·ð_4×ÚÉ„’öf½|ØlC³è8û¦†X‘æÿñ‚ÆL/³ññÎ ÂSydþ«‡¨ üÇÐp’ÌÌÍD²|.fˆÚJFÙ¥i —)o?FÿEÁæ© #¼FɤHˆå_®ƒ-ˆì’^Í»4.;”'“ñî3ó?;ôû¾ãÙþá;^ ˜eÜ»4-çÓ?nüî~6PÍ6ÂÁzÚ¢·ïñÏgÏàׄÿÞßÿýïáïü÷žù¼|¹Ë¿ûÔœ-——Ÿ¥—óQ2Ûí¼iú!  õöè"ÝM3´]ÓÂäFðTÀÇ[ËKm° ÁàÛÄ Šï‰\ [ë¥3…8"!£ ik]Íx‚6M*ýìåIGø¯m³”f¨†Ò`Û€â¦/þ0¼øC_MÓá7XD0ºñÿý‡ï’†úÌâ-óG[=˜ÓI‚±ãÏæ¦ØpUƒ"Ñ«vù«ªæ«ü ž‰ÞCYÞ{2ÉtÏæÏr¯RÎÓbÍ/o—$EÕ2~Qnû¥'.o—k“ë–ù«rÛ@tÈ^Øß³`…ŽÜ½~ð›r7ð}O¸‡ã²Jžâõ€_•»hë´.À4WÍÂô®åÝ£{Põ —;nþ‡Ng}¥xºå£qQu×ì_O?Ñ{!È ËûøKæ­­ù³ÜÃaVôç…V.!Bs+;$µkI8dyǘ‚Yè¾é›Šî]ÁLðv‰šòƲ¾$E]÷&ß­2]·iîÉè27\íêz…Ž9ùT÷Ë_•»½(œ†‡¦#I\µ]Þ’ºß~Uîí\Ëk8Vª8o(I+^?æÂ ì „¾ªÕ¢:ÊøÉdÜ_-p‹ê¾¨>$ä·Fu®Ž£—ƒ»¼Çst—ôÍ*td¯¹VèΆeéåËŠåäŸüD+Uu Õ$•KÒ~WÆ­¹T½…¦o*€ßÇgý÷[¦†Ø)ææBZe}Ѭ¬ú¿_zô„»ôȸ™*œÖå½Î)EwÌ_-ÛW Œ‹ï¿ƒÿÝ}†ÿÙß«¸Íÿ’è$2ƒB`”¸ªð©„:Z=¸ülˆ¦‘[À[I×s …µšÙw™ùwSÌm0º†^ˆò¯¬W~ŠùaÎ) ImùNta5»ÉìA¾­’,&·ŸØU$‰3¬ìV?±ò(ÑwV”BÆWÛpš¦åñÀ·å1¼@›{.ÇðyáwÕrÖÛ¨àwïS¢“«6¼üÀ²…—Äßûô*öâà#cèOEÅ~—X¶õwê?TªºuJÕù•Ñ%~.ÖëK¾&%¨º«u Rü"(?°€ðá»MÝo¾ŠªYHŸ:Š (?°€îÙ:°Ñãu#©ƒ}8Ô¿V‹K5ÐÝÛoË=¾A'DŵK5é罿 'E–ãKÃW-'¿ÿjï8'•}ÔÎx³¹Âxרž‚«¨¥`‹’´òÞ•š/Spõ# (øÓGQ¢Ÿªj)ø>ýÏ( ¥{m˜™‚΃_Ë=ÿ”ÎÐú"Aãñ£$]á7di[q4FR{_|YÝw7¾}Ó:ûy£6WîCòLºE Tý^3ë+†LCk"¾BÑX[~Å‘äÐ"ÞEX¼Ò8¼_ëGÁÅüØ:f Ú®ù÷ºÅÖ ù­Ç€Ê Ü•z·¿,Xz©ê¤CB´[¡s¥»VßWX(©¤ZÕiSóu\ýŠã€ÝÁ±Ý¥lâÒÊÔÜô ŽBž[i e¾a¿­è)AÈF3c ÈE®ll¡lŽYÒßMŒð{9.õ®¬°â÷1>„7ͽ»¯¸÷ÃÜøŸa¥+ßÿ©ö²×Ò8VèVeýé.Ý×5ÖórÚ.€'xÈDwê½<ëà·: éîª`™¸?›@t±‡XK­ÐSþ¹Vä!޳:«š.“}Õ HÿÓú¯ØÿðçZÊ¿_ÏÈÎk§­~]:ç;qùRó]ðw+¬ÍK½Ã°¯ˆ ‘"¤+BN­¬H¨QÔl’ýmÉÝi ­·â¬º¯ëEê ܯSÄ3•øLŠá——@ô³ ŸYøÛ½œg³•D/ ¹jðCUÿ3¸+’Á’;l½µŒwihÐ-ýXåj"¸MypPºJW¹¯]?€];ú±Þ„Ÿ–;C~úÝ•§«°,×aé0ø?Õœ…϶ “"Õ͇hÉ,jFSñdõÙqŸ<ÊY·WLƒñàwU4‹ßÑ¡¯@@H†e¯¼þ¾º£ù:=aÍü«v@'–{¨Â=Dlœm—)œì.[ËC¨zªflßDû#>{£îkšÁ ÖÝËy2ÔŽ)xnÑñÐì1¾q× ¤“ÙUÝÚ¥A©ßªâIψÒp›"N/¾ó{+âr”÷ºiÑO&áuáýV= x ¦áÜ¥c®êž—£ÿó‚îí3wÁUšLjÖßýt§å‡×î´ú$¡TAý¶lwëò£èöìŽÒñåìªbµÏ.ÒÇìz~Ósdoº‡£*ì…!ÞgdwЇd:Êó÷½Ô¨²åë¤ôÄòáðÒ ¨ÎŠà.nñ·º¹•*è2áðøûúAñwgxdΪ¡eýc}ßôÔ¨™ã‘Ê•ª{KÆ~$ÅúfV“±f]¨¶9.Ìju3.=Q?m|±f‹xÌ¡ wYǹª‡ü^Èi¯ÈCÿ‡ØÕÞ.q¡;…,zæ8Œ“Ë4Ã*=[?Ä¥ÚâîÎöþNœo .6-šëж-‹Ã,ªÜÊÔVlŸ$Pí{Is^oÅŠ£*î:´"½×øÀ“7ûõ§«0bã»z¼+ ~.Eq=€¥¬eøD½† ¿bûøS5¤ÞP"ï5(Ôd– ‹½PµÃß?ãØÊ £÷S˜Òpô8îÔ+h wÉ=pÇM‚@÷•Ý ¥þí~äîtÏq‘ °x­¼g*6 êÕ:Ù'Xµ{ŽfÑBO-QiÉî6¨¬¨°ÔVü^CËR©­‚¦ïv÷`G†Jã2­´Ëí@IX×÷'Ñ ì2jò]£¦kFä?T³O”º“BÚ(§ªÒ]ÃĽ¢C[uJF4/ êð±*GÂ$“–õP#SrèÿÁe~G këìÒÏóÁÍ«Îÿ¤/UÚ}ûXœÿi~zú$ÈÿÜÛyòäÙ:ÿó>’ÿé%(ê¯ËSüò{Þ(*È¥ã¥æî°%ì¥åR87^‰ù†_N^pÐ5wgå•â§6›•Þ+çúaé ÀwZZ[)Ÿf—€ oÇ-…K§ØÙ(œ¹ÍšgöA!V&QøHXã….x"¹R7à¿™æãK3­\”sØÌQ—8ܦÜèœìnðÚüî¼mþxqþÛÉéÛó£sXŽÒÃ{ú὇mBþ8:=©|~_?¿¿ñâ­nû‰~ö‰H»·ŽÏO+~ª~ºñ‚ +}¦}¶ñâ¬ýËѹðw¸&W{î\yÈ[Cc{D!’Ä TÿÛÖÖļ–}üwøgú1íë¿y[þòàÝXÌW|ÿïò¯ÝgöŸû{öŸÚRÛDë_ÿ»û§÷ñá å~VeC•p•¢êÎðúðºª\\©KtÍ%j« p\Wœ˜ÒìüŠ ètDWvÀfÕwŸ}™riØú!RÇ+qïËŒ‘ïŸú1RÇ+q‹s%?ß81Œ4’Dx—o)XÁU¶ƒˆëˆ!ª›±§Ï5æ‘`phÌè¸×É­­òŽ— ãˆÆ:ábO=ªÝ%f=Ìeµp4ƒ}ˆy,Þ•Ê9FËçXMjëyŠCJ2+KýÍzyãiД“Û\CTïAfH¡ZdæÑ­­¦Ô»ß$Ó÷ñË使?L{™áÄ?\|wœçua8[4ìfݱÀi,¸X©NÐЈv¬€^=›gÁl´héæããdííůÒÞtÛ†@Y$š²Îò%ô¿eúÿ—ÇÚÛúìiÿig­ÿ?À§^ÿÿÊŠÿZãÿŒÿÑIçìôðâ V‹µ~Á¦ŒrtØ>kÕkõ¡àâ¼}ž\¼iŸtZµ]†Æ.@°’-à ~¸îò¶õª1šôT1(®C!By…×TYxÁÒÇ*Ï‘!(] Ü•0ßaš€Ö‰. DÑ’ò½ùh  |ó›(— .£>6rº9ØéTÁî©Ë«@ £‘l÷b§- "³³(Û!™‘*ÍÚ ‹âííìŠkIzŽÞK!Μ iÉK¸Ð”‚ˆbQDÊ-2 Iܱ×Vßärõ& #Û>iw°÷Ó1–æ×IÄž‘GÆ"O#~5Èvys)–pl9ÀÏe¶ –!n¼i1ðuãOfÌôïM›Wƒ W(—¢e|7.·.!37%qü™£ã›¥"g–ÂÖæc¬úJ—†ªƒ=Ÿ_£˜n¦yg ¹¿—FÖ‚ÐÈ70b›ÆŒ "8—;ê~ͨh2£DÌI{üž|D°a­B©â‰U““øÙœ‰.¬LDe¶7âµ(d¾ªZ§™±@7Ú*Ï.(OÍŽÊÝÀîs[PQJVÁœ³tàŒŽ&ÞsŒ±ð'T2µÀŸl?PmºýÀkh+Ú»þ5Å.~NûK)¶åà ‹—&HüEÿ*, k3ñî׆£G1Ñ`.£9¡à¤N3ÄÇ•g¬SÎ@ݳƒBƒ¦y€j(a1š _ôú8 ÎÍÐ6û{IF3¬•‡éì‘\"ͯf Å0,Ì'™ÜTeï'”ªJ‰Døæz4#Õkz |¨þg¸#pArÈ@£Ê­ØѪB¤æAÂõ4Çh'\¾AVôój`xƒ×›½Ÿ¦àUFÙ·€*¦é Ÿ8hgÜq’¢«T¯p ëFÒÔ¼™ªUC­Z ‰ºß7ãîî3ÜîþžO qcè f7-’Xÿ¾z³ZJàxf _E÷àô°Ý½89êt=:ì¼æúÂßÃÂF›[;àû”=î7ÙÀL—PDº¬E ¦ùqMÞ(1×a¡úÈ—†@¤Q¬¯JL‹/"l„ÜÓuTᨠ¨®’ú 9mÒ©ìEÓákR™d%#¬¹€`Ž~„!¾.åÜ“ëª<?²5ƒ£›„ΰ-ÚMÍ4Á¼Óñ¨²»+¬ë öãÁ#Š Ôvô ÅÆÁª(uæ¢H‘ÉF Añdc\pï ¿Útaþ_¡ñ2ìÃa#Vƒ\»BV°Ârtå)#ËáOAbÉ2) ßkä¨Ê©ø©ˆ2ÆÍ² Ð+å5°TÓ/´œ!2#š±£ hÙÃK“–2­zaÏ=IÊò0{»£Iΰåô£üËÊ$\¯]ERy G ·ýQ'¾¥‰´d™ÍÓ"вêÒeÈ s{{2-è=w~0®ûî„E#¥£L†ý¹©g]/Á 5Tª ™ÑRõzƇÞB„~> ^ŠÊï¢òÛl¿ä¤šµ?*Îú8 ú³šÂ*J‚Ù÷*~s«žR[¯–ÅD]Ö;JJ,§ðÍ$xAT™ ”7d¹F^-ë©«SpM":DÇ­üfŽ7\[%Tq53̈ȀO:ö;°Æ <×´kßÕÉ0g$ŽlÊì„^jÄ-r)ltq¿7D¬½2Û6œ£73OB†]}Èß§dÁKy”Wptͽ‹†l¿p;ɪ– Ñp Õˆ»°ã£ *D£2ïÏ›¹ ®PgQZ:V>q –×Dîu»¡Ž`Òx8ô²/0 8˃Byž+|QdOP…$ªRÍ{s$W ?¢ƒŒn£dj„Zœ¨—JÜ/!> ½qÝysk%7¨U ÑZ€Ç{ˆ ÀüFu€V7Ó= Ç  $Ãîã`åŠ_iùǰiò+ÚØq?NAÒÕFã[ÓèæFLQÔÇÖ÷(î[ËŠHÎEä”ûñ@bÐÑü¡Ô/j@É¡ 3Zv>Tð<0+{#gp½ ,Zgz8¨@ ]L9O.á Kí#$Õˆ¤ŽKk}¨aÃ'Š„uŽAÑd« µ$aÆHÀ·¨ý7Q‹jÃ(·—Wä"*æ`\ÉÈ¡>sMs·÷ {<õ©&F9¤‰8èVuKŽÁûr‹%Ð )Åž Êqt :+T †“uî8q(%“å<vy¢Ø7…VêÉ×5 ¶·œÀ‘@¸põœCOž´iŸÁó‰®,Ô*…Y£]n(¥­"žT6ôö^nn³'°—…` wÉ[ËŽ«Tï•\•¬{;q‚wün€ÓC3I.CÒ™ô)SCjÂMæyÔÒá¼ÝÜà¹Éaf^iØžhâ2üÒ*¼åUÔÒú°LN©­Œ|Ê*¿Y˜¦»Rð7¡xÚ~ØÏ JM‘âÇeôà4Ð)’3…ÄµšÂ)PA÷àuûàg¡±Ö)Tr•+ƒ}‚NKÈãäCž ")ˆf8†áTOÔŒ»¨Þ^høÝdÒ )ÐÍMžOþî3GGfØ#ÄíÏ#CfƒAüï¥tlÁÈaŽ¡yàýýÆ* ˆ…%¢Çu6ŒèòŽ®zžm¹m¡Úg‰ŒD:½Ë/[?Ÿ·Î_wdX„µu4Ç‘yĈø!8ý<ÿwM]Pºãz2͈#8ñÜšà!€#¯â½³aÈk#¦Ø¾&aéZ(d¹¬ãB|z(ìΤŠ¿á»þ+äÄŠçat^MÛ*B*͑ɎŠÏhoN©\ˆ%n[•ˆ4³ºì´”U­lF~m¤ èºR:²ž¨0§\“R“J9˜öùɸ¡ülR¨òrLk›Î@e„Û錱¹©½ìV:Ç`$'¤zYiÁŸ¬ët Ñmö²­§¢ M1zp˜£Èüƒo‘ôbwI˜ú‹ü›üH(¾1~ä­_^S®êiàŒ@AÙ“ðÇÉKtëÊÇ×ÂåI6-5ì H’‘Jr‡}M5vPžEÌC6CÙÒ½E¹A¥• ‘—½ß~’ x³ÅR jí)ª=DïÕ }“7¥µ¿dº ²?ÿ¥%:¤*¢Q±³•Å6ä-+3Tt½À)¯Kq‹š]÷+_Øz4îmÚ(¦é*5ŒßÚx0m“ÄÑ+—Rsû¬(æ©{ ÷Ôùã"ÚÖ|à9ö½bÒ ¨ÞF\KxAý\ zTGÉò€w”y½øƒ…d m½Ïå± ½†E¤®¢P9· t‚%Lö¯0">Ï(¦FFsåùMÔÅì¼–v©¥Ÿ¯tÄå7r˜†¤È*šÄœXÍ.ö©2çÂu~bØL>2—ú¯f»Ø;îû•ìÉ2kRèÅ·WæõñŸåÿÊ¡ZLj®# ÷¢d8F^<ÿï$›àýîÙÎòmþ½÷£Šð§GÁúT³ Ÿý¤†o¡h!hf/š.™Úh|Ë {ˆ)½ØlÔ4Û%´Ùo›1˜èâo7UKô+ˆ¨±ØÚ~nB¤£ ÁÚ2EÁƒ^¯JA€ÎÈY¤æ–ŽL9d]X+Fe .©‘·Y:y9cMÿ-æ†ÉÍû á…ùx ~ ™à&+Øe«Ä¤iêTPµJ y FD›ÂÚãù5µ7üJNüµ+gÇëož¾@S ˜tÅ–3I ¶ýÌTK"KvªÖÓ[~ß+hDb6Òƒ™r*ÚkÖ³þfñ8…ÅL¦ÙˆÀ– W7ݲÍMûû{]«Íl~_ægâšÏKì×Ïô+½/‹#ˆª™23 m‹t`Ës™vÈj{~ô¯mhG<, ÒÌüŽ|œaä$LÎí¨ßÃC|϶tìp]ViIæÆ°Ršscbƒ)Ÿ€›Ò#sƒ’ÓdÒ¹·³rÞR;¢÷Û©×ÀÉÅñ±&Eñð¹ ˆ×Ü>šP{>¡ yC'ä¹GSq¢€sL•îQ뢪èGE|@h¥fãU««b;n‰Ú.˜y*®.m±ë.ÂÝÉ'Mgr§ç{)zh¸xà.ø”÷^:Ïi"d¸m0Þ¹BS%æêªóÞ×dMžÚÊlj]eÓºV¥Q’Ì?ô÷$ý¯"ÿ{ÿîÕÇùïéî³PþßÝÛ[ËÿñY$ÿËÎu¹ßd-ï? ¼¯¥ù`#Ëû÷’À)Š˜ÄäVv€‚*+X%àXNýFtͤíøWÃë¨l ècô~î&­ 5I4­¹›ö—# JpF6×sÈßT¯*׸°ÀIÑ¢ ž¢e^ýlôe£HS;J%OmXùB¥Äœ83Ì[)ò5yì]ˆ‘,¤™,Á Äy¯”´fíšµ¯ôYÿ—ªð®ÜÇ2þÿ|çyÈÿ÷Ÿ™ïÖüÿËVáÿzç,à j-<¹ÀcJka‰Œ]ŒGÙû4.3w›wåb‚ôœ« LÁ¼NlvàŒ°)  \Ë 5q˜(¯†±Aèf@«©ÒûÃØî‘IdÐZðøo+x¬Æÿ-Fó½úXÆÿ÷wKüw÷Ùÿõ!>ËøÿÒÏǬùüòyô°…7ÿ§±s3û &Ð$OŒeºÈv|*Þ®¦÷.ØÀIÁ&_PÈõ%Â:åÌè +"Óä¤Mª_q-• 8]¡\œÙPB+eRü<òÄÈ3ó×ëìM-ÃHZ{0ö™òšþ])à_ù³ÿwuÌïÙÇbþ¿»·÷4ÄÛÛy¾ótÍÿà³ÿSfÜWçþ4Œ5ïÿÊ:>©º¾ÓÝ¢8d/šOß9ñUÔŽŽ0Øê ð.ðq(0{Ìé&í¯hЄ\Ã>Ð ×î&Åò¾§Õ- ®± K¾$c•ÅŸO’ÔðîÚµ|ªÐ’ÐТ{ãôb–A¨‘Rjã®HæÅØxZÑmŸv;í³7G'­NûR"Ó Q48U°G)á6᣿"e›ñ®YJD(û†Š©}ƒâÐ"µu*’CÂäfÝ6o‡¡þ*„ÙܺGªDqé€S h Û& 3Þ"#†Áð‚Ü/„°hù…fŽ×“ÙmD»¯‡S€.D·"³QF7 I¹œ÷ Ó2× ‰˜®ÏÙš*Ç)Ÿê7’q ‚¢FW°Œ!Ï û[Iº.:žü쾚ʻì~’> õ„)¦"TØÔ8WD݃_aáßٔ܆dpeKšÌÁY3>~Õ4ÿ=~Ey6?JÐ7EId†ß:Wª8¦ý]ruå /ÿ{L œº¾#&ÖÈÃRT6œ·¹ÁdBˆ›–”8íZÞà#³’õ'j[ì¤|âü[ƒÎoëäàõéYûPÅ£½Ê‹Ä‘xÿ*÷â¤ZÇǧ¿vÛoÞv~ë·ÎÏÍeã#šD@Ž"-ÔãîËó‹?«TN~löx€y¢;oÆï.( ïÝG¯…ƒ£³ƒ‹7¯ŽÛ^ØÂÀAÃ4fÜ­kº5\3í?wÚ'‡íC¸n†`Þ vÎn1N…“f¼f~iŸ½EZ”òn`xÊ¡YÛ5qòÓY»}ø›¾'([ø,c@ì˜Ì÷×9ä™3srÝ»çíîé«WpÊŽÍ2Â5Î'U±& ¬1mBw´G´ô逄çÉ–šS' ”ù<`|LĤ"Ñ1脚"«3O¤NŠ[aÊ”DxW24TFYaLUXNQeR8e›ž'bήô ×Õ>X‚²ó‘g&5–³I¾6š“•’KXEä…4Ìc™ÕHeYžùþK­þâ€Ò;"#£}@äC­™÷-v–ƒy«²7EE“"O„à³)} D m«O .!„úê2.-°‰xG¹B¶Ú‡B¹­.Ã{X^IäÎõŽì®AÍ\|´Ë=ÁîŒjMg'€ `Ú£AÃŒ§f…CS*ƒóéÂÚPÆ9­IS͘ÃÖ¡ÑÒ\u13žT´!lÀžTÄè׬ƒƒœÐýFº_Ÿ2A-ütÓ=;÷Q©¢Œr¨bCð#Ê ¾§q¿¹¶îÿ#~Vµÿ‹Ií>©Ëüÿ{»¥ú¯ûOž¯íÿñYnÿ÷vþ‘8ü1­=_Á3Úë·§ñ Fz ¤7 •+Yˆ›±«TQo+ð[ì¾},áÿÏwŸï”âÿŸî­õÿ‡ø,äÿMÿÕ9>ŽbÍã¿Ò'UÔaû7WÉŒ‚ó-'ºû?Ñt_[¿Ðböçñ0ƒøÁ¹Tޒⵑ_ÄR"·$žE—u›k‹Â±Îm1{¼`ýÊÚj 0þ§E¡ªÓ Æÿº2 ïð×y6•˜}»bЀƒ'¼Ñ!ñ0X]ëA€×‡~ % B +b%·fhgÀZÚXÃv· ñùãp\¨ã™tØÔ{G.äGÜCB!¤JWPNâehÁ¡Òóí,-üÈCz;;…ózxŠ’¡hžY8£xæœ |£šûçŸ ñÆ’•dB¸þ•ëKÉÈJ> ¤'WN•&¡$`h3(Ì;¦rÕŸ'Úsm²Y¾ðgûdX|ÉøÏÝç»%ÿÏÓ½5þãC|ÛJ;ÿ¬Aå1­mC_!öÃÛûQÞžŠøÏà]ð }øTçÚ&LvŸ¤Ó 7g„¹MK HnGG³ÚRJ1«u+Å1ÑýcHãªÒ¨6Ècá´P¡uÜ*y>Ï/àúü­åû>­¯€¿—ÏÝùÿˆÿÜ+á?>1ß®ùÿ|îÂÿIügå¨Ö2À£•0þó3ËBH=aàï>„t-]üîÌÿ¿@üçÞ³½ŠüϵþÿŸ;ðÿÇÿY1¦5ïÿZñŸåÍh%xUöôÈ+‰$@™Þ ÷YÁWÕñ8 Ëwøg›NÂèáx~z£¼ÿž²oÈ“$9Êï[ Tødt4J}Òç'|÷ƒ™–äˆñ;“ÍM ï9à{ÜŒ;i4ɧ›ŽR"›ê`fLH0O2­¸WN‹‚„â‹É=.`z'éxPÄ9 ».4¸È zA2Nóy!‡˜Ê…У*ŠXG°³ÐlKÖ]žFᶉ½¨]`-¢h°‚Ã%81 óJä6KÃ!ð{ˆ‡|`øp<ÎbàTGFFû»¹¤> Ðê|Â%ð@¹°‡Ð,?çÇá(Q‡!ÀmŽŒâ:S^n®/¢³y ÊÏóOxi+›“†â‚¶Ëå[ =ÁÁ^©ÈƯšêXÙsȊ̃|?8}û%¶´»ç/ÿÔ>è,È8µqóMŒBÄi™–Ci Š.ܹæÂÉiçå©Wöàœ{â¸y˜]/5ò˘‹t$±W8Á4Ð^Úw^ñ*Ô!QY\ÇÅæ­=Suøz·… úòë¼9 Šï_¸Kš¡òKHùÒNˆ”¿ QZ H’pp<ÜÕ¢q¹oÍZÇÝ×­3Þmzu2?Ä©³ Æf(w%¤ #dZð4s4 ¦.ÝœŸ¾êÜ«ÓÃ8W-ó‚|àê¼juÏÚ¼mÜ mS2€õ Qï½sCðó®7:\tÜ—«|:3mñ‹î¶‡4Þ)Þá†8ØvR3?€~ŸL&©‘¯àºw•œ‚«Ñ2X~ˆðÛ4GÃ*M ¶Ú·o‘¯kŒ ˜Z:àˆi¸EAŠ3U$pÐsa }ë'qÄ뤔µÝh¹ý'ˆÓú"øßÏ+𿞯ý?ñY`ÿ©Úù¯m ªÓÚ*ô౟¥èÍúíy˜ÈÏêÜ $c5üo«7Ú·ŒdGÅnnG¶šL]èçÊÉFìŽÖˆžk~ýŸ»óÿÏŸÿñìù³2þ÷³uüçC|îÂÿEþGͨÖ2À£•Âü‚ kÛg#W—Ø%2ÿØf»3AÛl/zïA$½EO»·8±Vkìþ̸℺#é _^ÁfØ6³i¯¡¢)ˆÛ‚á–°4…ÊÕ$3›{– ˆî¸%ë¦Y8‘,`c¼õ *¶…)(<AÓ)-®ôž³qÎnr51/•‹H³HU1½e"Ð8÷sRÖæ%Ý™ÿ‰üÝþçþ“½uüÇC|îÀÿCôgå˜Ö¼ÿëÄ~VmFã êøKâ6—+û¥Ü •F(ûÛñÂô‹è“c+לl­Ê?‚Ï ü?¨{÷8Ð%ü¿¢þÇÞóuýù,äÿÁÎ}æhÍù¿JÑÆU.ùV!6ZœÜÙOy!ìß8H®f"ÂJB•? Þ‘Ï()fqãÛ7­³Ÿ7›QãÛ·g'íM”Gßv^·O6 7½NÝ€Ò1¦ ¤Pð`0ŸZc“$¯p¦ Å™ã«f Fl T8` O©ðMQ~ Œž`e›ãWŒLÖOQ ²bRÛ8åI‹ƒÞd·K¥p![ÂáèÃ9Çœ²Ìbç¯ÞæZ¿|œJv„[‡dvµKËÃçfþƒˆß¦kK­¯ïZú¼òЊüßæ¡@æÆpj6£è‚£v%©`ÿßÝ-á=…œà5ÿÿòŸ¥ü¿nç‡TP;ºµ¬ðð²˜pVÙœRDèç%:•L~ÆÉ~M[q¬)›æ¥r­4‘ß̇‡î¹f:k%üïìsWþ¿2ÓWŸeüßH¥ø½½uþÇC|Vçÿé¯9ýcãôÈÞ¿"S± ¬² Ðk6¾fãëÿY‰ÿçÑEsÌgÿØÛyò¤Äÿñ÷/4gï³æÿ‹ø¿·óûûZóþäýv«f7„ïklŠØ„ûbMá<&âü¥QDz ª!”Ö"ÁZ$ø‡ü܉ÿ³Ãìsëÿ»ÏÊùûëúŸòY‘ÿ‹«ôI2¤µ ðuôÿok·ä‹ %×½ƒ aÀq½Q ÷G{(Z”Zñ«ÀÀ€ß:6”€0ba-K¬e‰ÿ6Ÿ•ø?´pâý‚—ñÿgeÿÿÞîκþçC|–ð»óó»Á¬yþ×¶ùÛ½øá€*öìS"#±ýß52–•ÃèX¢0ÿ!”U(ÌàŽÂåz^aˆ›ÙÞ-?Ì-â¼”1ä.¤„¢‹ æä˜kÀ"Æ¿íü;&pºƒ*Í)ŽîÝϱáýÉÄ (ýë<÷SwDÙ]å7éÊE0ã þ€G7É-5V@ÈYÝòz)V0îlêCbfПqŠÒ, pE^¯kÉèÑIFKùÿ_2€qÀÔû¦,áÿOŸì”êï>}údÍÿà³€ÿ«ÿÚÜ_eÍû¿JΧÚ[ã³Tÿ£¦2Ç=•}ÃÁ £Êÿé¨Ã!ñ¸ôMb»Ma„P¦b+oh¶„Îc  xΧ°â‘ïØðŠm]'³ÎüˆôcÚŸÏÒ"ºž¾>L ´;\%äm¨LÐ611â„WwÃAG¿šFÑ`5üh³îû1ßÔ–ÎÒÅ»xþÙÀÉ =Ã:óÉ$‡ú¦$w^vZmÜàå}÷*™ÅªaŽ!m/§-𦻀ÌÝmŸ`MWPƒgd—ã| TzÀ'vô¡ÀH:ØÜŽÏa™)'$‰ ’&`¿a :•ÙúUÛ)%"Ð3ŸnÇ‘32bœ4U—BZj2A“ÛL#¢ü™ E0;D7 +qqr~ñö-`•J˲î> í©³ƒåò®ˆ¹e—ïj±ôRmùáצaJÊΆ¤Ã-¥í¤Ä”óRs ¨ I`Å4Žit E#,7«pK uDÂZ 0ïƒÓ7oÛ6%Ë}tYמ*•¸}èùÒ‹E>œ•Ð+ ˆüRFf”ðâQôÂ4sï9Ê£Lℱ¦z;:ù¥u|tÀþ|! öÒtlÖbnd¬Ñ»õooùýóƒ•"t»d‘ÌG®Oã¤åƒiÊ”j~ 15tøÁÖß3‹l¨! n‚Û, ì>ZðÀ¸çÉÑÙßÊC³+V²µ1z¦ ÂN„û!¥*Hµ©ÈÓÎ…˜1W¾EŒšQxV^¶O‘øEöס5t~XÉlñ´\Ö@.‚Èu<ã1‡ª4|úãÒéçjCŽí4m­ªø‰¦„hÄ “W@u¸“UE\§$z±áîEPãÙì5ß…´S‹nÓ|ìÖl˜&@ÅZùztÊ×#ø¬¤ÿnVw>Ç.Ã]Nüß'åø¯';»ÏÖúß|–èå ª`ŨÖZá×Á¬ÞŽ/HÝ!³.±e`‡ø%²0À&ë`yQ²AÅ™á_ A–žÛŽ þZU˜¦h’5‚ëµ@¨žÈe]L‘k0‰H)¸pÂÀrl$#p;`ÜñkŒM§¤Õ¬>I˜¬ã ä/ "T͈š4_öRE\§Sÿ£ +ñÿ/[ÿùÉó½ý’ýwooÿýŸ%üÿQÔvYsù¯fûýǬÿü‹8£OìFÊ<ºÄLmmHήÜêêÏqPýÙº‚‚Ï`/É®3Ž96Pzù›iyþX¸²eƒìØÃ¤f3´‚1µw‹.w–p¤Àf2«VÊä¼Jëx2™Œ2Ïa$€T¼6tļ)‰[‹FPys;¾ÌzE5Æ4[b-^Úy?È51Œ€›£lLÕAám„ÔÎÀúDu PÁUò!ËçÓíø7ó¿à`¸œ&×hœëO“n¢QžO@¢„í¢s*1@¡‚zxëa)ë&q›Ï£â Ë#`ÍK4ïz’ ï‚°K*UzÁÑP€¼ ²”ª†Š3 }^AíÚ^ ÉôcÒŸI N€š¾´¦d'®é¶š(²q¡q$ž B383$k¸dp¤™þµ}vÚí´ÏÞ´ÐØƒÉ*û¢+ì•Émº¿Úþ_P‡V¬ša]ZyN[§Éì^®¸ 4lÇ¡‹‹Û$3[U¡ã`ý«ÏÞd4/Ù`‡êÞ âiˆÝm»¤l’±ýsf´ÖA˜ìÚx€¦Pi›º¶áž¼¯¢®¬$ÿVÜß…Ûñr|5`©üÿ¬TÿkïÙÎ:þã!>Kä½óA ðƳÖ¾žÍOoDcIº$xc@‰Y¡ži$yùwWäh’ém/ûû'¥X|pÚ4Aº(ùðØ(6g±.r ,˜Î9¶§¡ YÉ[ Jê©<­"FõZ@¼P g6&rÑ' ¨¡%ÍÉ1ƒ¶•¿€¦ç3ŠtaF/…Oœn0ïQðè 4[|,© dñEE<)z±=ds!.ûîåðc1O[ʧíÒºzˆ”=ó†ZàŒÑ5Í…ÔÀÌé—Q³oJ€SE0äV®_êlQÝ—¦_ø%ª(üBÍKïºy)ªÈÜõŸŒI#ƒ;dïçìeD'„·iC—¼-ÿô¾A¨Ãþ£Ê'\d iLv n]bKFîéS‰À0{ªbÀv019þõ¡ªá±E~‰E­˜ñÍî„QmŸ]q>Ñô$Wuä×®£9ú›â¯ÿ.‚×ÃÉíÑ\;£¢Z$C¨H4/”‚àN è צÌ0¹’Š&,Ú´Ôcáo#P/ Þq±&¡Áš 8~Û¢oHÍïsÈV\ hÖ0 €ÖËoÆz•AgÀ #Vꔄ•$éG§+ÉÿýGQù·4žµüÿà5íHúw‰Qù^kÀ‡?ñß=q|´¿W×ü)Çî?[Ûâ³€ÿ»ÿÚ¼_dÍ÷ïS´'„[~߉ÅÇmÆ—Ìòèͳјaï(Ü&Ìß°_¢!Šyˆ. ˆ $Ý}ïé3´lÀº†Fšü\¬âË_‰™Åsãxš RÏÔÄŒ³A6 ÔöÓ vÞˆÃÄl-®2¡([†]_%½)êxEH•¯+ºfɺviºêòV‘wUÏPŽGÇèDÊ.¯€Ø ›h“‹W…J¸)@YÃX>F©ïË ¤,v ™]£¥ÄyÊEö»4[$Úòd\¶<ˆuèPÂÍ'_2dlcÎŒ!vàZ'×sÏGUi@Ó {S¨+'e@k9m-§ýwüÜAþ»·è>öŸýgëúñYIþ{ p8kIðëX€‚}XQTþ¿@ª4Rs÷–YÑ7BÇ"i‘¬F°ÖÎl$ C³¼œ«àé¼^‚/œm#§ô"óƒ‰%×)‚§“W‰BÝnÄŽEyœĘ=QÒ§'ìm’Le nÄ3"ᬇcÚù‘‘GX¸"G13ÀÝò„¬¯'¶¬åŠGòYÿRî/|–ðÿç{ÏJøÏ;ûO×øÏñYÈÿAîï:ï÷+æý®s~?sÎoMênT—º¯šºËî©È–¿ÈIÀÈ(¹@wò @&<2ÀX캈?d qòž·zfÑ0È\QÂ0eDoÙÊ)At½¤ÎkÕK~þ-½âŽ/÷sŒ_Ø4ðŠW‚sǧª.äüŠƒTÏ9D_¡=úŸz>%á)é ÿà{Ó‘Wö…¢æ8›ß×’{\ù¾µ*! ÚœEÒ RjÀߌ^fÊØf£)ÛRÝÞKº°p(«øMÝ F?2—dÉ¿$¾åìÅ„Yñ3dEÌŒN„©4ÊeO ÒÉÌ=©ÃKrB²A¶Õb/ e3 Î9 ICe4[ þ¢Éùÿ¬ÕÛØ5&@˜t£&‚ð怣&e)oÓˆ²¥œBØ3˜©á©¶Ý3§ËÉÁO['¯OÏL'öóWwSN(f,¬¼³ôêÁéÛß(Ù¿}Ø=¿xù§öA'Šk?§c‡¾ º(¤§ÙŒÎæ©õóÉ­mþðè¼õò¸Ý=k\œ·OOßvMW?/ìƒFCÖÐ)n€Rþˆ¡²x›};µ´Oƒx+Å )¶$K‘ŽˆT_ì¥ÙëQœWB@ ‘¦F¸Ói€ÔÿlœêvÚ«¶ÃC©h’ø] ­qœ^Of·A’´Cd¾.å×Ã$}.i²õõÜs|vÈBh\óÆEçm¸÷"ix=‡˜qwlšŽÒp_eLaZ@;j#±H1D oÚ1ùP½ð9+ã±òC|h=ä‹°êÄi…,\ê† …ïÑéÁ°d×2ßIX L.µ/p¯ÝIk³Ï—ü¬fÿ]© ÌåÎÆ ¥þŸrýÏÝý5þÃC|–Ù¼Æ DkËЃç€Ö“º­i<ˆÕå=Ú\Æ€›äËzUfâ!ªHraÅèŽÆn7æ¥G‰òÇuH§•JF…$ï ì[uÍÍñç®üÿ>9àËøÿþ“Ýÿ²¿öÿ<Äguþÿ(rÀ+Ç´–¥ @8¡ðE¢…©¯ù]6Î@Îþf%OÀÅÎfEEÂÏ’PTXßq ¶70»á]H`7c{w jÃ1*¤‹8£º£"HÖÆZÀøLŸ;òÿ{…€Þ#þswwÿùŸ•ùÿã-hÍû¿Vh¸+¡@~BÅÅó~>ÉÄg·L݇×5l¡Û£kËⱨ$cpöFAå0öp‹tV•K¼:0Z!—xÍÙלý‹~Väÿ4qo¸%ü·Tÿ{ŸÿBsö>kþ¿˜ÿ«ì_hÍý¿’æO‘–5ÛÒð‚5?¤ý ¸‡0(å_}1ƒW¦þ«|4`¡!r «,YhÈ7ËØ¥‰%YH!æ9HøÎ8å²)+ùÆüQl¶ Ì=¸788rS[ (¸AÏùóÔ•wËf\ÙðÖ=ñrÏB Ç}F*m|™ª©Ëspô¢é  ÝŽg‘ àÀ@…¥l\lè·;&,›rˆ’ÑMrKAœ›éVs[L ŽžÈB¡Z‚<ãÜž[«|P™k»…ÙWÊ^X0r‘§G)6åò€ÚžV_®¶ïˆã‰€×ÖžµLø…?w—ÿºÀκ¸Š0¸Lþ{þ¬Tÿ÷é“§{kùï>w‘ÿ¼t ?ºµdø%Co”khIŠÑWCé0.K‡‚lˆÊò£»9úÍ÷a Q¥|ændá„1›Ñdi^ ³ˆ”ü(ÇB#!›6ç Ã[/ÀÆ"ÀF"ÀÆZ$Ukµº`…‚mü ‚m¤Ûøî‚-4Ʋ‰ÈvX'§Šê0/Xî÷&HˆAV,6çþ¶AÜö QÚgÅG*„ì0(ž–RyYÖ¼îÕ‰ðñ¤óiM”gäçR±Wt+ÄÞ({1ÝfÈÉf\ÈgÀE*‚ó·’W’ï"ÿ}!ü—}# ”ñ_Öñ¿òYMþ{<Î?7œµ„÷5=veᯔ‡¹¢dƵ·üÎAj§èw#Ä] ‡Eª‚Bx¸:‹à¬ìtlF¡71^Ý›ÈS½œÛ…Ƥe‡1´2KL¡qwexCOΡÊÀUò!ÅY³Y‚‚¤‘°†¥šiY°6EApÌAM1{<*s}q!Qîxd³"*o 7ÅuÏT¶š]sÀAÚ곉‘…J|;ªóZ X[ÍÖþ,•ÿÆßñi @Ëä¿g{¥øïÝ'ëú¿òY ÿ¹ÿÚ¢ŸÉZêû*H@nV‘÷ª‘๠¦½wÄCöÁßÄÇýìy„OÃuA“!àî71Wr“¬‰ÕâQ½hAu©M´]Ù¢žÖ@2Ÿ5ª”åS ˆdE6%´iDÉÄ42™bµ,ûA_i2åj¼l;-’ÜuUŸ3„Ây¨ò›!Ž!‰e®T§V åËQÞKFΊÖKÀhDÌiäCäLÓÉ(é`‘Ë—÷Ñ]pí ÓÑl&"µˆsù8RïуÙ55# ¢<ü䦖D-R¼76†FôK76= €qŽp,pUvư‹¦ð»`ï)ýz2+Ð,¶kš™MçÜJ2ÎÕƒ®@¿J˜ÕÔŽ«Ò9Z; '°•É|v·´èFâ×iSäÀCŒÙÔ¬öè¶!”4©‡r‡Ö ì[~Ýˉ#²4®Hé›B°?9…DýÓ³µ,þxdñ¥òk®]â6³/`ÿ{º»_Æ~òìùZþ{€Ïù/Øù¯-†ÃYK‚_E ¶¡áÃ?ò¯UØŽ õqXG:xÝ:‹¿6Õ›ƒcm±tÙÓÈ’âMÆazNãþ‡ÏPPV¨*ƒ~œ¤Ó ib$ÔâpU[c¥ÎmVx`_”OÓìrlßñe«$1lJŒ€õ’(‘±%#…-é ’ªäÆ2J Ú!„EÂàFÕ0ðàÈCúËÆàý”Q›1W"¯UC÷•ûÜþ2„˜«³¡Jn°Ç•¶Em¹…`ÄoK¯ñð‡P˃15)øï$²EÚ «ÑþÊ Â/8{oÜH? Vàæào\Ü„˜G)óŠœþ<ðŽð§:¥ä/ tH^‰rMSSÍh1úTy‘› õ¿:wo0Irã|Å,üÛ×a” ·S¨{DÞpoKú;sÍñP…9Á2DóÉ.Ü%“ƒ²4© m6Ét¸"z7¾¹ÊͰ°&pfÕ—‰QÀ@S*Go^^¨Çæë¹#ú*ÁƒÓ“_Úg€X«ÄV;Âófº! 6ÿ¥2Ö[â›Fx+µ€"p÷eëüèÀëö€‰È½¤Èúꦨj£ýçNûäPã!úm‚HÇŠÔoæ§ãÓ—U+°) U¾kðëÑña÷¼ý¶uÖꜞÁ1î`>7ôp;I‹Ú7®þßõs²áúÕgžQhi¯},Ú9nê(e£æŠûƒ©# MüîtÍ"^‚Ê#é3=›(/Ztwê k_®ùï§É¬?÷ù¬¬ÿeãa~OÀbýoww§ÿ»û|­ÿ=Ägývþ±(8–µæ÷U5?؃eE´^@ôÞc<É·ø£Y†{ëa¶*ó¢N p%éAuUÌìbÅȃOô€zDOe’™b¿"Ä´XVØ$0yœçN=€¶3Ÿ±ve_õ¥~~96"ê@ ²E0×i:‘ZÄü}‹ñ¼iAÉi ´b$ñ›"”IN^v[Çǧ¸ç$½Br¶€ØCªÀ ‹¤Ñ‡éÕ³Ÿ¼WOù¥eõ7ýV^¶~>k¿zÓú3µrb=îÈå6$xùÜÊtncÞ‰á‡EpÆH Ø”i¥{qrtpzØþ!¾gHô€ 8Òp¼z3­“ßÎŽ_ýœ5ããW¨ÆÂ’íý õ¶sqÖ>8½8éøw!ßżÇTXø/¶ßv^½Ðè—5èîàx(Ò™ŽG×(É'çíŽß²ðÏZj_ÛM»– \±-Þe–J—,àE³Êè÷øêÈç/:oZoi.ÙìÚè©f!(ðWcÅ;«@Øì^ç··mÓ@Ç(ˆD•­|¸%®3wê–ŒwGâÏ`ñ–=¼ŽpËßÛs@á󪞸qzã!—ûÓ4´ Ûþ*è£âA‚þwƒwÏZoÚhL£Ï9(¦c¯*‡ùï½nÃ=?n¿Õ‘¹1ÖÍPº ØŠøÝAéåCeÇ¢òê—Í=;ÊúfÔg0móŒ¸ÓYaËG„Z$µÛn½U´¿ë#Üêÿtðºuò“SkõPÿò§Mcã_¶Ì?$è-xÿ¨£V×­/`·[[…$¼ã¿lW“¯¥_0elõÒ-±®|9® ÝŠñ1ÝÅÇÉÊtG!ƒt_ ®8â±eL¿iæ`·¯¢QEo\Í‹»ï¼a<ǧ§?¿l¿>:íçŠ' ÅlQŠMGFž4Êó÷½Ô,0$)F×Ö…¨Ý£“ãöÉO×¼Èǹ¹6ã`Ì+Ó¢u¿sj‹ßƉ9´–?ÄšE@!žA={€Û'³ß˜(…á5ª›hX›é1­x¯U%¸C%+¹Wµ™åÕÑOÝ“ö¯ÇG'òÊT½!ß2ÞcfKŒ@b¸÷Š ™[ìœÝíùã…õ ªÚ¿ë†¿ßù…»÷bXœ¿/Tãðd¦úÓ^‘£C½¸5úÅí5.x¥xà·ãÝQ±£‹R03K¥d~uÂìBÐ#²_cqK mº¹JŽ`DYv(š¢ä`o3T|z·³´ÐñÞNò•îmRÜŒ‘3òŽÍETd—`ÊÞßÛêÁ5`ÈöҮë[ïfÓp˜¾‘„H#1;L‰Ù$7év«¨DnmÇ|3ÀWù͸RÎ…œ RêbnfëîlÉQµÎºÅ[Îm)µëŸWes•-›áÔèVE¼û ÈNiíKPµý·_¶ß´~²†iL/¼N.³>mØ(y*ÐQz›„U÷6Yoó¡·hôGûxE÷†·éÁ oÂ~9, _›)í kñ¡’Ö¥ pYÞ„uÈÌÚÐü>Kí¿Fn!4Ýî EßÄÝmÀKâž<RÆÿzúôÙÚþûŸößpç¿¶ ¸4žµøaíÀ("UïEC[‚Å\V_e&®Ý͇]÷`Eax÷9ŒæBuäy~[R>~ 4‹HTÎÌù02t•}Ès³Ëò‡9åE‘¡4¥ÕÀT_å…-FOçTÖNb·#ÙÒœ‹¯5ƒXr¥^gƒÙ•3öb³(ŒbdùEö-°W&ã1Ö”Ð|_W!U ­R2¿³š µ† Èß]eYWE;é3Ñv‡ `ëöæÙˆ&kK UPM¬¢Â‹Q>saØ$G éàz¸m†g@ÁN“kzéÒ ªuEÂgäuîi&ZM NUƒ| ›Ü(Æè6â,Q <)¯¾ÑšíêƒF”Ï/1¿*cb†'U¶5ÿ‚J¤Ñ +ú1áÜÐõÃ`i2†j}êbï–Ó¥“!!ývÝ"òØ_~Ø´&ú £jÊç‡æ Y¨ÃŒ FˆŠ¿VãðSøÛ,ÚÎ(ãIÞ)n•wKî+î¶:­¸–è¬Þ3GæÕ*+×YÁ!ðÃ8#ÃÒdQ«jè—­"‰§#”X™ù’Õ­Ó7í7§g¿ÅŠ$×Q§Ÿy'ò]4 o+§ d¤D; ›€D’¢4Î'” 2ãúÔZŠðRd<=¼ëžŠ»¶cþ€œ¿èCQÝ‘=>Awöû‡S‘î ÿÓ-óùåÿ§FÚ/ËÿÏvÖòÿ|V’ÿiçüÏãYËÿ@þgÙ£r_-ÀÊÿЀ4ºUº@ÿ¯ž¶Ã_R_ ¹Nþ¯rXAPâ%q¾~2Žz©Êâ’P¶Ÿäφ<”4, !.øcÑ:mÍôþ>þ”|H í“vg›ãd Å¡ôœê2/P¬(;ŸŠoWÉd’ŽWPWâzu%º³º/RW¢»¨+Ëæh%u¥R_a§¶,ÂEeM¥ŠÞcTA%B.·EªKÅ9ˆm+¾ølEÒ€Dè@wV‚ä' Ž(è~”^PÂsÙ†È(¢Ô”E çäm² ©i½0½”€_0OÕ\Ä™TA oç.Z‡J…âºâñéºG\¯~¨Q–\ÃÔŒ(ÔÌjÄ›£?·ÑÛtî¹H Ã0éæ2ªž0ˆžâ°kÏQ—P å_£ª’æJZ‰ÑHŠ8ͤ•–|Ç~SÐÝteØ8ªÊ¬§pá~­f- •VæKq‡kmeíÐy´Ÿ;è÷…\^ÿm¯ìÿÙ{²®ÿúŸ•ô¿ÇÿŒf­û}ôÇ@rªtÖ|ž"oÎ .¨½Û* NËò°û×í{pËøÿþ³þÓÓ5þïƒ|–ðÞùÇ ÈPÖrÀW“x ¼Z¸®– ‘J ô~W8;J"Yðo” ñí¦zß‚EÉ3w¬+V'M0A!0hAå;É€!sj EÅ+,¹Y-NðùÀX@Û.÷èâÜŒ€2õø?”ÞÊ'É_çb³C„Ä×9ˆ¤¬¢”|GœŒn’Û"‰d-L¬…‰•?«ñÁ8éRÄÖeü¿¢þÓþ“µþÿ Ÿeü?ØùG!„cZK_O"öâîf‚²GˆZú4þžè e.~mÇÊq§%‹A$ƒ¸Öb๗fÖrPn;ŸF8O Ö":'Òa‚›HW©fì–£ea;>V#nUª[9w‡6ë2ŸïSÞ rXAË­ÖwA4ƒ¡¬µyî:'ã>¦\c¡(+'P2âcEšVpoLÕ ¸7~W-½¹P€²ÿçãœÌc—aW–ðÿ'ÏvKüÿÉÓýuüçC|–ñÿªB@åÀÖ’Àדª6äÓ¼^SŸ( üea‹©‡—æás†È4®ò9cØ–] 1ò!¾e6–Ê ‚`4¢@ Ó qxœKd!“ËÅ?R‘–íÖdëìôâä°ûòœªy´ ¬#~÷3Œp%“)àœ•¯Ÿ_œþÔê´»fyZo!‡_ÿøŸƒïwvþ Žü{8þ4xÑyµõ=òFø×þrûrÛ3š‹?Çá§-Õ<’D©@±Êwófüî‚ ï>ÆWæ¿44·x~ptdÚ< [|PÛ׋ÏàÞˆj^ç¥6Š;·ñk©›;¶qxôÓQÇoãß~˜C>ûáßq1þí‡ò'IýXyd¬+vC¯zŸ{µö²uÈ$Ò=:ïuÚg-ŒÂ退‰T̪ØHLÉ(›²]g˜ó炬üôpÐ:o·ÏÏ»gíóÎÙÑ]œÃŒO¯³†rp ßA=2Þb¦õA™hh¼‡Ýƒ3³«”sâ¾9R³øÝ†ùn¼‰ˆ°]…Bj׎¡ü\øæ*¶wx¨‰_OÏB’ ›Ø¸É§ƒb#xý¤ýKû̬‰9¥™Àjà eÛ!Z#CXcnÍwBJÕm¼Û‰½ù óÒÞíì€`þ³³4ôö·ÎëÓ“îéA§uì5tx¸·³+ˆL›`>ïÏ’QÐBçâìç£ó×°ÉG'?-tæÓ÷Yq›éÒB×rÿc0LÞIþŸ¦ý9ŠÝËy2¬ª,‘ÿ÷wŸ•ê¿<ÝÙ_Ûÿâ³¢üìücÒ¡­u€¯®[rw-Àz ñýÀ_(*B“ƒ›Mç!4¢úôÓ܃ƒtŒ¿YO9íÓâ«£zóà@§fÉë” ¬å€… ¥QÈA‡xc#4p¨7—lÙšNÉ )¤l‡qiø#;5çS _¦òù0rͱ™×ÌWI„Ç0UðsX!JyCýzÁ_ÐþF°~Î'4¸Ðá)UĹPFIAu't•ŽF˜VoËßÍ0ˆªŸ"º?«3dâСs:T”ÐsÖÌtÉzÀR¡‡<þ!ÉF(\rd·YuóS11ªž#š1zÒ˜F!ÂEx8toù…ãŠüiÛíÚÄùèDõ§â³’ü‡—Ikg|úï{;OKòßÞ“½5þóC|–ÈjçƒÌ§‡³–󾚜§¶á®±`_ *¼WWÖŒªH—ãºÂ0î5ß^óíÔÏJü*`wÉü%øÿÓ²ÿwoÿÙÓ5ÿ€Ïþ¯vþ1ð=œ5ÿÿjü_mƒµí`1yß¶óa/6‚ad÷ÔVáã$f¸A#‰ÑRE(elÊôvt4s²Ó– çbkú€ÑÂSaÖ¡ÐÑb‘-Æ`ƒ½”l ÈRç ,Úõq^ê«H&ÑÆ7§ôn7š†Ò7{F‘h¦ Œqïé3Œ„˜™_/§Pû!é÷1à|hó1Ø@~5'!¿)t%D¦ŠQR\•CÎ} ÐJ~[¸YXŽ€D¤ž«+ëËC¼?DÄßVG¤ý G«óÿ"5§,™åwO_ÆÿŸ”õÿýÝuü׃|VáÿvçàF´–¾®`wâÛÎã‘@ëÏǘÝeÉíN‚Á*‰çØ‘-! üôý«À›Ž£ÃdÏJüÝ>AcXÊÞ¹ƒ¨ŽÅ—k{®Äâ£j¯Yü#ÿ¬ÄÿÍõ>¹¿ùû)ÿ{ooÍÿ䳄ÿ» ¼_fÍ÷¿ßw»ðØŒÿ0²µímû_Vþ¬Äÿé€9ÿÿ~ÿßüsÍÿೄÿ« €ÎZøj€Ú†G _í»4ëhÍö×lýù+óÿ]¶ÙHì ;JÇ—³«UäeüÿÙ~ÉÿÿŸˆXóÿÅü¿vç‡âäâ pòél±@²fëÿXl}åÏJüœÞÚªÿ²¿³·WQÿe]ÿ÷!>Kø?ïücàú2”5¯ÿj¼ž·àQÔ‚rP5áj+À!œPäj´YÚJ £ð7¦ýürŒ0LI!ÜMû5 -Béþʼ ãm¬ˆøzÒþÀ(»g‚›xL r™ rR>Ý–w—ÇfxËW<‡Uì¨Ù3Fê$yŠÛU½ •ïâ¸eˆ’@ÒË?¤UòàÑ‹q†)‰ö²´ûq¿üÚÉ… MÂjÁ_.Ÿ¢Á@ó ®l*˜Èx]no-­?_ê³’ü—‡ðŸû€.³ÿìËø?ïü£àý2–5ßÿz|Ÿ÷àÓL@ƒlJ! ÷æûÐÇ4‰)g’N‡ùôk×ñú&À“˜uÔ»­ ½ Z>âhÞñ58pÌVĦA.èü6AÍÀ > c1ÃÀÐÊ|„ÒAÓ½*â2¿¥SìÊH0 ä¯F³,é ÅYŠxšLÍ §`?*…z«HÓ³‰`Âl/ÂOͨlC9ť痼­ÂÖñûq~Ãî°š¿ÌZÜw/æE:œàŒÔÔGÄ)#E¥Ó”£Ñ;ƒ”/@ÝÁÜFYAPyQd‚2baz¥a:Çu #©(¬Óysô¯-˜T÷,G·Çõˆä>¹4ØU·YýúÉ)‘â5¥÷í[­‹Î)”é9o»ÊDÒ©¹%¶`jf¯ìZùb÷ôÕ+]+gñ›‡§óNë¬Û:9x}zæu™]XºŒù عsúWæZRÅuü·©géw…×áÝŽ¬UÛë1ï·æ“`¥“Ëæp¸jÚñ‡±RCŸV_.W¸ IÖ-€ú«÷ŠE´ÇTzO5à+Éé+ÉXC èBù€û–Ùv÷ž•㞬ãâ³Dþ+íüc˃ZK„_M",mÆ×ö®ú+ÕQ°"ŠÙ'[$…îo›s³©YŒþ¾?+ñWñæ^. ¥þŸç%ûÏþþþ:þ÷!>Kø°óû‡CZóþ¯Æûƒ­øzX æßy¯È‘ówädÛKc©ßU…Ä]6xÑ{o8MIÖhÐÓU•dyäw¬%û ¶sšÒƘût'ÎǸ]4 Š£Vdä)ÔæË5HéZy ÏJü¿˜÷ s½ÏÍÑáZ¿Ÿÿ£„ÿùdgÿñ Ÿ%ü¿¼óíWŒjÍí¿·/ïÆ] ¶Ü;¿|ç®JÝt{†û¿×ì;”T“ŸTÞ†™ºA¸ªçlZTD›Æ x+·Ûº`›Õ‰B.5))USwÕÚl0U%Æ%$Ÿ$§Tº=ƒjç%˜0óu¹ÐGVxżÖÆ?¨„qwþ_ÜYXÆÿŸ=+ÕÿxºólÿñŸ»ðÿâñ ÅZxl’@qoq@%ˆ, ø©·3 ªšYò¡w.^·Î@„¸Ofö_Kö(V@"@âµ²@ª>Ëù¿¥ºûÂ,áÿ»»Ïž–ð¿vŸ¬õÿù,âÿî¾ùÚìÞdÍÝ¿w·;ЀÍ,x·i9ù‡‡ÖmØ2–õœ÷þ’ög€žUÖ7F|Sfç‚МB³©-j KB9Ãþ4³’`LišNFI §5-Ï‹… ó|6™Ïzóá0Ö·ÂORC“ÙýË¢ÚYáÂ"†_ÎGÉj¤N!ŸÀ<•\&õ`žº4ŒtóæEÅ bý› ^ÎBþsti|våx~‘]gЪ9€jöMGe*×É{AÔÏ']„{h:Ù†zPkSï˜üq½À¹cô6¨×ZX!¦ð³?U*¡ª¦rYØÅàpOzKÑlå[ü;ŒÞq{mÁY¥ÍŸ¨÷N@ÝæSJb&þsÆ,'Ó?¾c7€ÚQôÏ}Ÿ’ìÒËf=âJ"4âiA‹›•!~_§ÅÕïÛ@ÛðåàÀ”Ö³¼Ùü^iQý5­{/<[aô{LØW¼C¾2ò:öàŒ“Via¸Pàí@.Ôm>7ôkÆ Bñ¸*]ðø’0 #±ÇÀ¤>X„$qÍwÔ¬õP®Œ‹—ç£ÎE§Ý}Óê¼nBŽ»!¨í¸( GæŽÐ¹!Æù¤B%àßÔU óïͯWÉø’Ø”W¡QÕjZð…gËSÐS߈ifu¸ü‚òòóYñ¦§ÑƒþRqì@æ¨3y0‹8‚B7#'s’M‰Ê¤T´éxLy}ð·ÅUžž”Ù°Û¨‚қʽ€QÐ\Â3[DzˆL…Ff¥IQò¢ÈÞOœ!8œšÀÕkorèĸQxžSY ÁÑ%¦ªë¾ýçŽ!EM„fìæ"4;œú'l2ÍáðR7];?Ÿ¾lytFïR¦k¿?ŸB]›äX"gÕÖñ‘9ª^cJž »;ÊÌNFUÍ'sŸ ³™æ,o¥³bæx ±P³ tV}"Q žþÒ>{u|úk÷¸}òSçµiÐ\”m=å7M\kÐ3™=ÒTÕÎYûíqë ý¦}ÒéžžÿkeAû*æÙ(*·îâäç“Ó_OÌÏÛDÅijöœÓ¬ãËiò® 5T·`Þìê3{ »)½bFjŽÔ½ã&ò¨Bv#ˆãf=µ5£Å³!»áÂñ‡Í.ÇùÔcU£r ª,Ô Ø¢Ñ§·@øü1ñ×rfùyæÙ!I´ñ 2`³Þ0,Æþð—l¦Ü´Åœ€•ˆ¦½ˆùO›®DC$?]5í}7ÄI%c¾Ý„u|Óòr’ÓÂ[;%ʼ*Å—®“[˜6rèŒMaG‹ZègùùK B*ó4&üJ k8Ê»Î×m<ènH–טKL™ù™cuIVZ*:…%7”t»6ý>´ïy5û/Ü]PÜ»½Û±¡õÏšÿ½ÿüy)þkÿÙóuþ÷C|–ÙæàÒ ÖVá¯g7£q7¬o\…ª-¦ÊVšHá'ÃPïjeÞðÑbîXö b¤!XPôÉÙO&†œ@¿”›EìôA…`à°h#Å•FL̵ÞFY6Íu¬=CÙ’ûFäZµVN4>³`­cgÞé-m£ÏKüŽ À%Ṁ˜ßq–8j/n8CÉf`Ño[; M¨³›Žë ¼ f‘W0AÐZß"úc^6RR¤ð£ š›EŒlh‹„¬ŠÐtÀ¸J§(üd–ƒŽ.KU(²³)ÈHò°MÁË'­_ZGÇ/)o„F* w6Ç<. µ7Ý´M–A!]aQâ#\YY?›@m%+MäMûÍéÙo®ÞQÖº{™Yq>¿¼RJƒ½ª°–¨•i슎 gE­»À¨4Zü#Ùý³9áD•§|&(úÂÚæAŸ‘ëS4èµL¹H¦¼‡ü‡Çâ.à2ùïÉóRüß“½ýµÿÿ!>w’ÿHÓ|t k->·ãŽR öçSK¥ÀZù×=É/úâ’Ÿ]!+ùY#ÐÃË~w÷¬xP#良) =vòÜQÖŸWô0²6óßTÚ³#‰dGׂÓß}"Èä?Èš¾W è²ü½'%ùooïÙóµü÷Ÿ•ä?ØùÇ#öáhÖÒÞJ{˜ÐPµ zùìó‰^БH”÷À\Äå[Áü!ËçETòå¹Ñ^¦3±O’kO{öJ‘kqÁ ãЉâÝc‚có” »ÑÏ"ж/¡xhk>û÷Ïgëçüß¡;JKø¿áúeÿß“µÿïA>+ñ·óG PcZË_Ùò£˜ëpþ9¹‚cf…0f§Z~"(}j„>Û]HLùdÐgvúÙàvóùÉÍ'v6‘jêl?u¯qœœ²±¤fˆ““®Rm.3‡ 䄃å¤98+:ª*âvé‹«!ØŠx£á^08:mÒEŸ%'SÝ!†ÞíèŽRÜÊÑ|¡I·ã Hl¿«™±2Ø”)ÝÎ QX‚E bßç<Óœé)¢Ék|È?J4RP%4ˆYø‘'»aƧ“uD¶ÜB)Gm^¬Nü̡ݛ¬H×&²¯f"»ÿ¿£ hÿ^ÁÿÍ¿×üÿ>wäÿÌl-<àó‚¾¾@÷Þ“B“N ˆöþw- Ä­!Õ%d2´&à¹þvð||H²¤¬å‡{ËwáÿY1»Wø2þ¿÷l·\ÿwïéšÿ?Àg5þ/;ÿˆ8¿ÒšçíHp»’Ç~úrÑàÅ Â?V Æ{™ÎVðF£<¼…(Kž{¤X5⛥Ž(»¾N™¡ÑmÃFWs£ƒi|»_GŒ<èç®üß›;ç€-áÿOvwŸ”øÿî³½5ÿ€Ïêüßìü#cÿ0¢5÷ÿÚ¿0Ó»¨úAù++TÆv8¿¸þêñ /À:–¢´LØ 8m”³ÑXÄà%VžRV d: à +^†(Ô  å7: C’Í =0 ¢ñy]¬fã PóYn’vêÐðµ ­a âNÖ¢ùZ4ÿ»úÜAþGô îŽnaîÜ;hKäÿý'OJö¿'û;ÏÖòÿ|V’ÿý*E¬‚ÿ°òÓ÷Ï2ùOhðSúX(ÿ={òlgÿY ÿí>¾³ŽÿˆO½ügvþ+Ëy0‚µ<·š<7‡Me/þ@²Í7:§»¼6¿;o›?xYNZ£_ÚÈ^¶ÎâW' Nã½6²§Ù«h¤uñç£ã£ÖÙo1Öh\Òܾnn¿¢¹ŸÚ'X~òàô¤ÓþsgIsOtsO*š;8}óö踽bsOusO+š£)®ÖØ3ÝØ³ŠÆXf1-µ°% >× >¯oЖfÔMV¶ø½nñûŠ¡jîâAý^7ñûªAµÏŽZÇGÿÚZa†»;Éî,$·%MùÔ_Eþ§/ÏOÛö²–¼#°kÏ@ûÏoÍÔ ¬!×·­N§}v¤ñKûì|…©z'a×…ï·^ušñî3úoëä0Þ߃ÇÇG/ÏZgGíšö¼£°kÏNÔ é—£ö¯Õ/zDoþzÁdDrÏq§¯^·;5={„nþzqÒþõøè¤n ›¿^¼¹86äúú¬Ý:4ýV¿äQê®%U>‰5=y´iþz…žan//ŽŽ·:f÷âÓ· .?Í_/è>&Z²çÕozägþzñ§‹óÎÖÑ uÚ0k“/§VíñÜó/_Cyǧ-s›_¼}{zÖ©~É#,ó׋£“W§goèüµ^ž^tÌØù^<\< ¦Ì_•Mq ßœÇflÇæ»šµôèlèÌ»€ÌÞžµíW7âÑšùëEçu›oåÃV§¿4+ôsõ«ÝíÝQôÇŹ¹NÏJ­ÔLãDó× |Ï£ˆb•¹Õ`jæzXx ïytjþ’¿6‹‚ÄöëëöI,U3VTÍ_/^ŸþÊê:¾ØØŒÏÚ‹³s¢…SÀš´Þšo %X-º†s{mþzqjfyW‘vXÝŠGÒæ¯¨ÊÛ¡½:;}SY‹¹º5_œ0´~ú²Ó::¡Ý€›áÂ,>õð¦}~Þú©]ÝŽGèû@èP»íÀå¦IÕ\jûq›¿^W7-T¬püò·øäâÍËöYus™›¿ts-à Î;æJÆQ­¼}ù›¿VaëMÍzy‡ÀüõÂÐY‹GgˆWèëWs­{âHÍØ¼`þzqxñöøè ex3-þéìôâ-ލFôèßüõâÕÑÉ!ŽÈ¬ÒÛÓóó#À8âMŒ[fÍ3Ií¹|âQ¼ù«ö¨·Žáß$Y,<êO<ò7™K^??­~Ü£oó׋ÖEçõi5Ñ<ñ…aCÄgí_ŽÎíP¾Ca5#/êð?¬J˜¸yƒÒÄÍ€\½ƒPgñ4%=fwg{ìŸ\J:”‹jM¢ÀT1·îǦ01PÛñyšVØ­“•½lW臆ÕôCfÌ}8íÎWìœaÙ®$êJ²¨E­¤8y6tmí–£u·á[¹Ù¤\ yöR|k¤¹D<½ –x°«cN­5®‡‰Óø+›‡\ÃÞ »°_F‡'K=ÿ¡ñ–:üŒ0è—"sk¬ýUï—ÃÆÃoºÚð&ÿ!íÙßB½JZúÈ›Æå’i¬< òlðÆ5\׋ÝŸ02çd!n¸¤#ŸÀŠyï/iV_0ϧ´à<ßD/«âÝþõÓzM®W^“Á0ù]õ¸œþ›|ú¾˜$ýò釋~>¯rŽͫӼpì¡›Nߦ{ËnÓ…$ï^U›(jf6}—1êY«%Ò ÚùÃó¥Ú¾J“Ép N1ê¦zûïС%>×c9vqë?ÃD¾-7ÍAPŸu•ð€õ¯’;µZE{ûËho¡¹±‚§—nðʯ…e¹-ÅãõmF?™f€‘\cÒ Î áV¡Én6ƒ—½wá\Ò›ô´{‹ÿ«„y ÿnsÊ'·%"½GSWM؇ºoVm¹jÛŸ,Ûö…fáJQ.Œ*¿.oû§ $«ö[µ5Ÿ,Íù}x‚ÝÝ[V±"€]LWl«†¹~HFóZ™Òï î¨,;í¢ã¾¸{Ç$Z@÷ßwéAjiÅþ¹#L5ì²Tði³÷šZm×ÉG‘Z¥éîCðŠ;lî\âidw%ÛP®¹ã0>$ÓQž¿ï¥WÙxPµÅ— AÀÏÆ«žŸOïcy Óm1뎲ëlöp§{˜¦ý9:+»—ódZ¹Ò‹û‡f‘çáû]1 דÁUñ½yaŽú"®çNѵóî¹BƒÌLlËXÓÓe¬i‹±‚1:BÅ—ŸŸ)­ÒgCº»žWRJ*˜Ñ§hH° †Íg+µVEžü~@ LLüeU[+ÛévV§\ŒJËfs#~ÉI”»yˆù÷ž”b ææTIÍPT3K>~Áýš0³ÿÌ+H6 ïÆ¿Ï²ÝíÆ=ö~]Þ“ÅPûÙã ̾DU âÙ2±$lÄcUÚp7ÁrÐU W)ÒR³ì¥ñ~±Ò2þˆ+OÄ Cÿ”"ÙË–àØ\qÈXè¾÷h°ìWÔƒ‚ë.ÖcÉú]:Î/“™²ô¸<âR ¸ØÒgÆZÒ¼êùмª6"q³BIðÏ­Liš"þ ¸¬NkZž—ã8FŠœÌg«09ó$5´Âî¿l÷KÑ£5Ûý—ÌÚ ê\Çͺ=X|t åL÷à’ë î¤î| ÈY]rÜÑô^6 @³fú _ˆ\]´¸LN|÷ÄuòÑþþyü n8IQd—ã»JóŠ^rÖƒ‰²¢ÿöȚ¯Èáï‹4¹ÊQ*;‡ZZÓ¤ýkÙ!ýýÒ+º>>;<®Ê¹X¤Ó,ÁN R8EÞ¹•£U”Í ¾bÖ®{°ÂÎÞ»•Zù¤PŠÊ)¤cœBùЏïDì ÛÏ [5àVOfÚwóEªª\滬HøÁì vp‘ª¸ÿ¥1w‹º¤d‹\xý/ò¿U4Ö…¬Qq&ݹaÇœ`1$ËܾE‘\¦ øí5Q\«+«ËUž`›ä|Ÿz²O¤7×Þ]ܺŸÅí&¾¦l<Ì—q~Í“o®’pö¿$®å]‹Ñ.5GsÅVV3dÁç½"Çìu?´w‡RΧPa˜a:˜O# Ù›d:ÀÔ÷d–õ²Q6£êÇ·qq¥ñ4­5cL1ò$ˆ©¬ˆXéA¨Q{‡†XL ø‘²÷ G·¢/ 7ºJð‡Ô\›}sƲYœŒn’Û– Ðͺ`àêøµ;eU²)Èæœ•#;¼¯¿DDÉjýVG”ïÂeõá.!%~'^HÉ=šöOëå(ïuÓ¢ŸLVn´.¼ÁÀ‘;t]¤“ÄÜÌùô{·í¬8Xý}©óëëÓ«Ö’?+ùX&^id/=¶ÒíÇÐ.q›û’¸,À•·èìs‹ŒÙgÿ"o‚£6 äpp…‰‘ƒ P]²¤÷$Ü{élj¯1=a„-Wæ2„`î4¼1‡sDä;¹ØŽ[3¨yR¤àLÜB,6ðÒ#^Rd}lʬn:8›B†jWj;>„;}„ -ŒeX‰ÂoÉü-LÍËÉX˜iQ ¹b¬Æÿ‘²ç³+§fFYošB]1ŸLrÚÇï·zÙ ÇÿÂÚ˜ÆÍ¿©Âï5ÍøDtŒ {ߤRЦòÿeH2ã4,Ãn†àÊZl_á[\" êî0x …ÌòÙí0q̰ZŒÈƒÑ"¦²`Qd粟ŽMO³›œ ªÉ²¦#C=$Td×óÑ,§ù¼€IœŽã‹qöqk”½O£â¶˜¥× G(mã öém3ó=Îfë{˜MÓûj÷}¤¦¿ßß³ßCÛ·8¬dTäf¶Ò€¿cAw,Zl—ÅvÔ6k}Ë›hÌ„Éäé2¸~8ççpÑÇ)Aú¤"5v‹XžæX%€Å£ —ÂøÊïéHVý´û¬þ·ý=þÍ!.1âŒÃVQÀ¥‚>ÜzoHê ûÞ»owŸyÒëwà²7¯(+&¼¢þäW0Ý”D„wÏÇ`K †R1’‰!W#vŽÓM6˜]™Mz…åpeƒÑÂù˜s„Æ,M#‚ýà-»Ïº³o¨†"²(>fÉtáÔ™’±@[ÉVQ¼q}‚&ÑZØ …¨c#“S #ÛŠÐTRpUÄ»Qna6…@y­GÐ÷%ÂîWYFÆØWU(Ì\üQO.áÓï,X—koWdBØöàªG Ûn9ô~5é7Gb†4b€¬Ô@â<œ%Û õu–M5ÒZÓtÚŸæE æ€S™L¿pˆ(²^„§ ù¯`^Õ¬‘˜¥^\¥"åžp”TËÀhr²´ø“áÁéa»{qrÔéþztØy ¼¹¥z¶èÆÝ6Ä}¡MœÆvTÝ4£“ÉÄ{Hð‰¹v cëůaðIËf‘!*³SßÂ]Üß3 Öá®úÜH*ŸSŒ+´]8ýHV—k÷¸¥· ¼äá-Œpy`/ᶆ"û‚wfWÏ®n ÑžeT7KË9ÆvŸ 4rC34«{K瀔óZQT2£MDzi>ÆÔÐÂ(Ö„S·§F€¢§cÑZñ6_8œÆÅØLk6se7&<É‹"´\3¢r€ 35rÆ,Ç•émoº<ª­O‹‰È,oÄGmÊXó>X9ÍüJ‹Š¡äÌ\ðJD …U”ÝÄb±H3 Ê>œxIŽXæÚvTҵ؆RGg–»;ÇIá§$%i„Ά“ ½µÓùXJŒðÐ]±¤€o²PŽ@ÓQ-§W˜Êéá¯îaØäàG'à\¿ˆÄ –ûhì †Åüúš¥±^þA’¿¨…Ž¼Î¯¶òcäç8”¹]TxÈ 1]׌ÝÓU}ÌåÎWI„”íjB÷]s_uùÂ2S¡ª)ëdûê,œÆ ñô;keÞŒ=8jã†iÛQ㢨…@>AX„G¶È&sjˆ$tG_Ì5Q°< 0MAòk!Œ±Uå¤QõhenRàÃŽ*7råž[,Ð5=¹yœ »¯ƒÄ˜ ¶Šd˜²ÝÌß§{‚9hf/sÀ \Z+ÿA=*¤®%t›>À¥Æ­íƒ²¢¸¹ð µpÖRîlžùç vâhøªú<[‰)h„$h†¾¬nÈÞ3E|•߆;J‚Êð *¨Ù>GÓ´Ÿ_޳¿Qå±|^ð}À¨Ӳ"sí÷àÞ'ùBžìduµÇîjG9vbl[P ê_$Fßл'¸ª—óà¬Ñí :ÊÃ3ÃÚ`#e±7ø2¿£!ˆ[GŸœ¹äÜ…ÝKGùÍæv|Ž„yÚ³ pT„"½ô¤–ûO¦Ÿ­l¼5ËÌÄ ?Ì rrõ Äd,5ãaš ±Ðòe¡Œ p!–…ÓÚQƒ70+uy ŽsÿM)lâJù!lv:Å €½ ÕIÞ#Cãvü–¨ž.O€©N¥àa¦ÜAÃ(ùd#,-Q…¬ÃÄø*²ŒJÒÙÊpD\ñm8‡+ÓŠ}ËL±ƒÙ´«'<ŽI~¢I¢l”Éè2Ÿ‘ÿZ¤d»¨\6s'$@õ,¢ìƒ´kÕ]|Í4Þ€{”˜]„¶9á›d¹Iü bÇ ý½XØÍ^5°t)¼É Áõ<Å Ùôìô8aŸœl©O$5^#Wã¸uúì&wÛ`,„ç})|0bš9'E„:VV¸o–ðy»´>È×uò»=ãϬ–<ëè#;ƒŒŠ´æ|£½r13oº ÐÀÈW¬TEݪJº¢Ûó&³áy¹½#,¢D¤S{•8ͨ¢_çT²à×¥-xP%á,jik6”Ñ3^ÊJ.í·ª€AÍ“a¾„çê¨xAåõ„ÿúÚ½"ÍEr+5m _Ë€HQ²b’óz4ŒÓ ÝftV MŠàw#É­7\°VÄI¿€˜É®¯ÓA†&¼H샜íW(ÔhAÁd)uÁ«Õ™ñm¢„àØ¶lP£•ü3‚ó°ÍÛóV5WoÌéŒøð¨¾²‹¢íò½ôÒœyß´å‚;KšX,AÐ Ë¡P`¸ Ø„ÒQ‘¢™µÉ2õ(O¤‚Øu µï¦z\ÂÖ׊•W·s¬_LÈÐ6ß˱B²ŒE\ðqÃÎċĨ¤È¥žØ²(àm>¥&qƒ² ì…$"7”̈1rª9UUÉêU‡¶iÑSš¬zxìbÃ÷hÅS@U¹Ñ„ ZTaî{8cdº.] ÕÌórâºÓ•NC6ó„ß:‹^^°)ÚsÏÇÎú‡2µÔ€F&¦LPT…õÃyþ.PÌ `ðF¹Á±B\Cd^â c»`n'©ŠHQ"R2ެC]vøtÓ¨‹SƒF·ÒŽr`Bp†çúÏ®;³†F™‰Èt¯#@Ьb!i¢4š†Tÿ óisg“*טó÷TáD´(cj…ùÿÀ›çÜ•fýÌŒÐ~‡«¸MÎh0éÐe‡aq…Ïqy¨Wæm  ¨ó>Nc–µ²®š åcv=¿ÞŽOòO1Ü<·êVØÑ¥ OÁ¼ÏosÍÄ(>P[‹' Ka ¹•qÛ‘¥NX)6^åUQo˜Y­aÊC+4‹TæA׉Ç$÷¸+Šw‡Êš›µë]í=Ñ)íÌΑqp7úÉÔ\±—)³œÍØ¢5݃ǯâ´64Šãf¤ž`t«ïÜÕì…6¿j¢›EW >0¼ºŸP%B›çmt1ÎpoxÅl DÏu¿:?.µ ÂytM+l{2š‹… §`GXÄ¿tâÆP™ G6ã‹ÞÙÙyiÿWf¢p­Ç0Óf„ߘïOÚÇqc Ña0záû§æ‡ãsZ™ØÉÁ{;{ß³ñöIÖÂ@{€ÓDÕåÙ¢€$ÿ¬oñ;#-c˜±£4p%O©¡Ì¶Iñ»31§ð ¹âûcè’Ó£©“ßÂ|írå ÇÑ9…þrJ‚¤.ºš²kà’ì¥zŸ¦ëÁsø#;DÔþÉe¨E%Czh+ŸÝ¤é˜› Ñ.ˆ»ÂMº+èÆ³îÒð ’H˱øÌ`©!(Öœm1ˆÆÚxàH3î¿7_]©[˜±‡¹¿)VÏS°F̧È1)zöqHÔ(·^ä`—HØ Ä 81Làâ~¢;‹Ç”ˆWO*[pÀ ”®Q2ωYDrè!ø c ûT˜î/¢Z\Jäfü“ôÝã9`1‰ìmH0‰’×ñ žŒ²/n4Ütñý­ö>Ì¢›©.ò›l<¦ÉÁX©1¹ïô%n!iƒ°Ú¨…>_”‚¸b$“î ;ºLÁ`ÇAuÃH¾€IÁ€K+ÓJàë ÞVŽ4¥…:WËi$npÞR<"›´Í`iõÙUžnŠC¡¾¬(æ¡ÚQÊZy¤aã9É’Ž6q. %¤C±+ƒ÷ú™WÈ*‰ŠìÞŽÙªørp“Ö9‡»\ð2¤]RÓ®i©}<0ß4Ö{Sp$¨áÞæ„|HFÙ€Lz`â44š HOª8$ ¢õD8ц\fØÖF<%—l|v=  UCô¦½ŸÅ}ú ÷ÿñŸÝ¬èâ0îÇÕ4%ÅKï<û„mÁ<Ú9»hó¯ÿõ©7ã†K„R‡Grd»$™éÑ\-ÚõÒ˜¤Ó«dbxab)¼0’C6ôN(ع!A8ùüòj³ Ü4ƒØ1âX˜MLWàviD`m%û-Ü\¡„‰æ°](}ÀW,Ñ ÜIåwÚKû©‰”å´’!¥Ò²·œƒ|#¥åJlqTþ̓¦ðüO¢#p1tsaP¹ö8EÁ¤½Aûè<9 p2'i(JOÀxQø=Ì¢£v êñ4Ìû|sgƒ4¨0+pPὊJä‡^CÜö’Jš¹è'„ƒ›È<ا¾ ãˆ_Q¤‘tÅŸ¦ù|B¸3F»FÌš–‚÷6õe‡’8'¹7 ÍúÃT^‘õ#²×1"†0Ê)wH5¬ºêÞEtîY>üÝÈŠ•Þ`KË@¤z³Æ|Qux;ÆŒ ˆ—„¸%³ù˜Íï뼆 F:jmNµ‹ÃhµÅÖƒ¦;Êv&ÞòÁÐÙ¥3Ää¢1ˆ8bªôô1z'Pä엕•âÁ<ù“â:éŠðÝzD¨ðà‘Ç(.¶½D¡µ“>oÐÐUy**‚%qMz£èH`@ï«Ù^9„$ a»—ƒyXÈ,´uóF’Xßm‚Øx“šÅ/‡ÁQûW%tƈê|ãÛ7­³Ÿ7Å»·fGK#ÙÓfu"°L¹«%“ˆ²:ËT5–œ.ïê,Sçú韛‚…]81þùlR,"®„„l×VÞ3úª‹ÂÓ”Þä¨VÑgè9·ªt]PiÄ#ëpöޙ؞ØPæ2Íøpc¬0*ø`E]#!ÁãH⪲4‘àlndÎÂï‚â½6Lóùõu>ÞˆÔ!ó³ûé™òÉ@¥ãc´ `Þ~é]º©U¦[ êÉGƒÂ?ë|²·+’Ó‚Ød@M;¯–ôªæÔÇjéE ©ðî"qšnlÅ€*c[˜ªKI2.Üx ºaÛIôøÂıÚi6BôdãÈÔb/ÜZ:žÞ/¡5.è^ãÀL2Îa„¸zÖ(ªm ›d½‰”3…k`Q˜´å5J@¶ ÏïÅÄG6¢£v˜´ÙºAüxBßÄf‰H0;)W)”þÎ7 Ò ©Ô ö0ÌÒk» ð 0°‘mLK6‡bn¨í­t9- oêf„${Ô1EÁžÀ¹©¶x+ýPÉòwTSªÃ“.HhŽöõv¥eÇ0¥H$¡~4ÒUóýÑE·á7±žk8ÍuxxkIÞI8Ï-¦C…Ñ5L†Hö2g,^uýQ^<Ã@uôšø ÍêYqÏÞzhDÈÇVŠ'Ë„“û¢¸±WzÁ*Gˆ¯‰ ·‰Ù,²—½ˆ¤ÌE$mÇ /ئn#dÌÃù$ŠÈ…psÿl"K )†î0ÓÛ-ßK·7‘ŽJdÍòk ú_Óxº3PÊŽãħH‹OþÅká3T$çbÀ¶d·òDÑÓžOŒ¦†{ÕrCà^ï³1‹¬ôµ½“­á&bÑß;Wò%qH5?W½*’íÑÖý*®f-…&1–v<Ì6ôʲv¥ƒÒÛÍâÇLØÛÏšâ']rŸ¥ÈÊ×Ai™³‰¼~ÓtÑ >oÁ:ÛòѰ¼ì,œUèU©Zu±¤*²5‹< /:ÊwòU‰áoZŠ S-rÒØ nbtÁ/dMxò‘jkL>Uj˜Žwá£Ég‰mdúvm°XåCÇ1~õ}è¬ïE9ÐõÁYÃi0””0±áÉþ¦(‰ñæ§ŽŽ¨)…ðÖX C“µks! )(ÙŒŸå8;…¢]NÆb0´Í‘ô¹Æ8Çp£™Â ØÄ¹cðÒ³”w¯Ð¶®©uZ€¤$œ°’ Э’ñ Ü‘&AMc/Fûj’¤Šþk"ü“ö-W5:ˆ$bj»Yö»¨*Ì"X“o+ºüí±GökéÉòÈÊ‹l] ò“JA.Ú’ªƒSQ–è—ƒ-1¿†ÿD~ðš6UVì§x!8Ú~'&[l!ˆ!^Úgg§gÝ—­ÃÃV§…ikì ´® óv{$à¬pÙ¹Òú+hà/ÏϺ­“ß(4¹gÁõ‡–¾î"¼ùà…|ªš¹89œ‘…ÍÀ],)¢¡^¤ö±)ÍÅQ†fd<‰ü½~#4•Vç ÙóoC·Hxuƒ—ù„Wã)ZÞ:gÐ#+[%Ò\G¨YXf›è—3fJ¤Õ’€#ƒÂ…!ætP8˜‡S× øàýI0ÑuyµÇô!k›¶ŠØA… Œ>Ê'x¥®s°±áwOòH{^B·K2æ4éR3›:l46bªRõ|‚f½®Ìh:'ï¶Ëšš»:±ÙÉþ¼šÓ`­­2rù79Š7)^s0¡LÍSØ(ÂýÆd 2\ö2JãŽ8L’…"ùAR©PˇÃMLû¶Îñë|—zDñaÄZ‚¬Ý²ºÜý´‡8€ Lq6¤6Ì]Oòꆊá¤Ä/ú݆rRx&†-©÷úP5oqéiYI®é§CaYåÇ{YáœpGáìyhÚ < „vŒ1dç§ v6`J1ê0.Ÿ0ñÞüሓ™‹“;_d…z‚I ³+Н0¢lŠvjÔsaê3—"#Þ3ê"Rë*™Ø$Ø‹UL;a6£/Ô,ö·„ñ~ZÃUÛO–{³ù˜ºÒ´°C,3@µ¹ëaΞÓ9ú"î¸G)öæ;:·"t†R¯u„R¢-J´¡Ä‹ %N®ó9 òÖK¢–¾:íÄ´}6ÚyÑõ·…¥…÷èÒTftÉÜ·øM7l—_ZU`97©(‘Ú§í5DÈ[¥±÷ô©rºÎ ÛñqE§…MžMâ$é»d1‹tÅ VK6ä ×ͦmà„áºj¹1¯”B# ëSÙI‰9AK¾"ç±ÒË0”yÖ­È#ÓC3òÔaüD©)x†…h— ©1V‰ˆ|Ž_•š`Ý|CÖ߆qc¥á˜'驺t±M¥OÈKF±Ç‚Ÿ.ö’Ú–_{Ù‚ü=4~Š5W‘Ö’äÌëHÓ~ØŽ¶  B¥mÖmâVDÜÜoaÚ›Ÿ7³(ÄSôÂáÃ\4¸öŸ;í“Ãö¡[<ù¦ûæô¬‘üCǰ"E§ÿ0ej(‹sl)+|}6§Ç_¡ßŠYÃíHKáïhÜ›÷hYÉ=¾\Í‹«Ô¼h5/¾—š‡6·¢ 8¯‚È—¹Qœ§›Ø‚²} §5pÜëvïéÊe‚Ñ@VCðÂpèq¦ÈŠ981Úb–OŠxš_Î]¸;‡pSž›kÉÐ>{‰È2‹c¢«^¶˜Sœ±Iäþè;ˆ´£F€ó—ÄçŒÈЖzx%MÒÕ\¹œ'ÓJ¼xŸl|?¨ú-›XåÛ\\,§c1ˆt¨NÛÀ{Ìh¢f6-€bš³饗Ä¥9ºҶd³Ô.1^•RþªKŒ&Ò¤Á›…Ѿæ¶DLIX2¢Ë]ˆíFÛ/˜‹ÁºþVÙ 98Ä2áoà2ÌOÔ‡…‡™] Ÿ(·Q´‘YÏÊ)yʺµÈõ®Ž2M7-Z$ølÎäh–%_ùa`Ê[Bþj.{Aö™iz™~ŒÐ$8÷ËÖÌá×Û_YÞ¬ÌEí£Íìç,d$/­c§‰å[\Ü< ¿~è¨Ç1š‹"Æ Û‹&p“W˜@”p&ÁŒ^«ÁBš[D8Ù„ +à…¯ ž9úà ![8ä Š‚*Ù뙘S ʺ]bs4šÜ¼»É?ªÀǘdá<‡!=‘)ÐeÐXg!É]§o;Go¸(f÷ÕÅñ±¸ÃÚ•ëoqkINâ2‹²;s{Q‡'§'méðWbŃf[ÓîÛÓóóöùyå—ÝÓW¯ü¹}'k¿è~[¥¬CæsCƒÏüunnNО¦Óÿ[¼àþ™OzxaP%ú³“îñ1ùgü—Ûj2¨BY10¾—ÓôϱÍã ŽÒK½dQáÈ÷žCƒ9µWÎ “ô EÉÞ«Ô°RÃu~#ž9" æé;Ç«ƒ})eø¥¹k£ùXî̹ú“)¬$ƒ®Š™VÆnñáiç¼Ó×ÏÁëÓ³š¯l3#†Ú±[}Œ"jH0ÜþV¨˜ø $MãÒgQ’ Ê¢FìÜA>îM!}ßãÖ:àFâ÷è±”Ê(!Âô—s”Ý»æËÿÿûFI›{èY%J  #»­ãcaª®¬NгÂ*8 'RâA_•p'ûÎø6úz|;>…Ñ›‹“YÂ0és8((Å„n€Š?a]°i½ ÿB0¾ÞG–‰Uî0àâ:K\æÇ~I+çzHSÎÈÒFq’–vIv,Þg“‰Ís˜Ï`¼Zñ†KÊ”B~X3A&ÉÆÅ|Hé%$K ÒŒ€ÿñWBTÞœ8àt]¢nì’>2ˆu—4¾}{vqÒÞ„gßžÿ|ôv3< @ð¹JÛ5_/8 >ó’˜:¬˜Qy€BOO‰AÈ_ãr¤¼s#Ϋù]O$7ÂøÑ2+ Ù¸cKâ%Jc¬;Û7öˆ4jaòaô/õä¶7£øe+’iÒä<¬YŸgÆŠvi“­/ˆ×Òb–0Â…š%â·—Z5 íbé °3P¡»`5„#X?ú#ëz·ŒÊ+Â=Û¹à mRMÇKx-7Õz’ù€Æ\@†ó) ªCf=3  ‚êšä˜·1òO%½±¡ïœC_¹¨2‚iž@=ЕåCd Äz舊EƔӺ/9+pèØÝ|ÉÿÚÛlüùÿþf3‘1–²v („ÜäÊËc¦r `)þüç—/érŠ6ì^Øwük/p|‡ÞãJëuÛ"tQvÙsº2"xâ$©TR3¶sBæ­vt©! ª“ázˆç²'Šƒ<g¦oD"C~fó±É’é*½YoÑ(΄B\<ÿµW¸„‹£ÞÇz 6ÀbeÓô=dn¥‘ë6öÌòë’cu%Ó†šošf«]íMUüJPÞÉó¡o©ˆø’%¦`¹ƒ¥2³Ý€=¤•¡ÙÅnvÖÖihhwƒ·×^=È(|›T€†ÙsIÛJ§S‚ŸqËï— Rí$óÙ(CM•ÚT…Šc{ Åi@UaâÞ/ ‚đ圬›IÉ.É¿¡È8¦lÐFÔ‹ÂîÉÀr=ÄñãÆôãòÙ¨,4¡-¼pìÍä½kí „x1Ãj¢¦]÷™xå)˜@mš“—ßæ Ÿ IáSC¤+,Š‹*hØx@$¨†¯ØçÏUMÕÑ‚ØfïËÏQ½JŸUÑÔÁ{‰³z,µß¾Š¤¾c«õ»ñ÷EÍ×ÃJKTåä÷/ {%ø7ÊÈú¶6IR·³À=(=•×®?×àÉ)Æ7™)¨TÔE‹ˆ=• ÄÊŹ©ë°87}[[z¤~  ýÝr7_mcÐb€°umß3ƒÔ+IBý×oQ)î5Ú8p¸Pãô¦ã_‡Âú?¬ë-lqïMT1w öÒÕìÕ¡“ª™%UF6þ>MdãÙCS i/ä’A=Á¬³‘Wîj/k+½õDå¨é£’¼˜™ûÌÒ|ˆÁW]¡‡Î…ÑpM6ˆ\¢ÑZ €ì.>Æð65Æ/Ò†71Éœ·;NQ]´P4 (¯ÜºÓ5 <9}Óê¼Fï:ól±Òú–H6 çÖQ@5“XfoÙ%q&õ%GT–ø{4;Pýft¥ŠÀ±«M-ß%½þw .5–“»{ûæ· žŒÈëIÞ®„À~3°ýU¬ À&°4£|zÎUµ`½¨›úD -ØF«‰¼¥õƒÈh”¥“Õ6==pèIaÕE”g:´ZáD•ØÆþ]œ£gÂa÷øè+‚†(¹¥ZxAì ÇòãEÄ0lb‘Öµ ©Tÿs!^GCmÁ5vEs°Ž(Ÿ¥ Ñ jÆíüfµY ž·ÞWô$=€-CU‹ ëiáDéàcl1„‰Gþq/8ŸØ…ž#<R #BûÃ?Ñ w.MîÕÑÙy½z)²/*¸…]º{/˧|LÛÄ1¾+ÕÕó./¶N‘c±€‹¯7}Ë/šÐ¥22bçäå‚ÖÌ[t3h®`|°.ólñ<Ò2~5É9} …GP¸ïÇöºÝzk/?kZóä >? xïÅGü£ó¬×Õü  R¸îÁ¶ˆÍ®‚\ˆñ›:ËÅ™mHÔ[ÒHEŠ@…k€ û¥ämµ…¶²Æµ²Ëãàbüq0Xƒ‘ìˆ3‘gª«<Ã*˜þ"»áȯü¦yí~UÙªCs£KÆF º>Ѐ,óK¸h”(†XBÌfbîä*j›Ò}LÛàÈK«(P0oµÀ:@dlh‰Í€u—0ž]Z®ôÕ‚²“À™>6–OÅëK^8ÊîŽ*ßBæW—PÓÝB_Â^ ôhdÄ/渗‰³zÓw9¹Ó} ½ÝœØÛ õ¢%U5|¡½%)eÀð¾< Tý<ùPVA*d·fÊ@ŠàfDq5’ p$‚˜8ÇǤ>vò—þg3¬aÙ/ >šýüä¥ ÅHê&S¸ªèÕ 0³`r[Š’žQ©SI®êIµ/z Ý,^¢$fjö^4Ó˜Á¾ð4ömjLÌ~ Aåé7J6îO‘-™¦aP*L ¼Ì|1¦‰•P¡i ÅûeãyXÁ·Ûˆ0³@ªŠTåËQÑîN|m–J©sT‘²±$| ÅX`È_ŠCYŠüv÷¦âU„)<ÉZšª5²’V¼š¤UÏIÑÉúe9©—»ÇFGgá1? t»ê*ÕT`BRù"WCз&s¶Æ!¤§Hð‡Ñ,õÌ Ç€a«pyÎ †õ³SŠ °!øêÙ¹Û_+¹"šá1fµÔ–¹ I¶4ôÿužÍê¹]q Ä?ô÷ùÆ‹õ›µ¦&Í/²ËËrUάai©ÌÏPL °á‡úô Û\v7•¬p–4Z‘›‹ÅÔáxáïÛÙÛÜl4þewóÿn~§O"cŒ+Ù‡AÉl_Τ&V 5HÍzÚë3<½ ö¨óÓKg³T¥9 ìÜ]ü…Ÿã©,©a`N½x¤y™d3ú”›•(Yî&ñóÚüPz²(G¡]MŒÍ:y¢vÝ#Q~´¦sØ~ÛM'”Îôì•t}>é {ÿG’Î*k7ü>¨Ýpðº}ð3Ô…yqt|¸Õ9zÓŽ!ùæô$(äà‰xFrf— -ªAí ‚a²Þ{\_-½y)Úr‘)76*ú÷Ämì(é>œI<Ê8¯â×Q[¶& ÉZ¥ææ‘£k`¶f­ö!~“Õ I׌¤ÚŠ޳ s­0Ö˜ù•ñû~Wcå¾J¼J¹…-•‹èå<¤ÅYîÃ|Z³˜!jŽöpx5—:W6ÑÝG+TDùZÇ¥ æfYï*™fœ©BK €T‚óìʓ䜤N´|K® ®F¶SJÇrÒD¼™ÃœN3âù\×TÄBŽWäÞ?²§‡šfSK!@ãÍXS³¤ã㚀°ŸL טL9å*QZa0Õãb¿gÓÎ6 âxàêbÖ`tˆè.†xqÉÓcŠ.{Mh"QóQk%rø3_Ä T“ò™ñ–µaù1„N—¸ätyÙ:¤[E2mÕžY™­€.xMœaÃúµ¹õabøÁéÉ«£Ÿ$Uç˜s5™3]Û Èû/ƒ¼p££ÒÞæ)ã4ݾ; «C»\‹à8^.©® »U'Ï,@m tÿ¨ý%\ÙšF5¢l̈²tƒåí¼iŽ¥PK*R˜ÕÉK~púæíÑqû°ûëÑaçõù—€¯¦uiË«KMB> ÑM6˜]úV_Q…V%,ÒÏîV/›©ýÿfÙœ Ã^îá×ð×ï…x÷™ýeÏ{̦Á®«Y'ù¬¼d÷³%¾kÒ—š®dE[G¼+Z¦rßDžû†Ê)Òk9UÌ}ÇùL!Ñm†YOPÖf"ŽÝ4œšUl¿zÕ>èýÒîü ±jw[M›ì8(¸€D6ä礕c¶(`æô½Ñ?SÂÀ4½œCíÂô#ôaåùhV8î20¬çƒ¹Ö%sޱ¦h ÛhþFá€-PcUÙÓ\-Ó¬‡å‹¡_ï6òÖDV¢fɬ³ût‡a6ú¢Y&ÃHȰZñ›‡fõ¥ÝJŠ -ÖµRПîºNBŸÄÐjó0u];r…W3[ÜÍBé2aýH;€EgºqäÝñI>#∌è),^:ô[rÁÖMû”Tüµ†1à#´~ìà 3Ò¶”Õ7d3š× Ð;g®d5çbO3¯š-#ÈÅ=$øµ•©Ø¡*•[p}wÚÉ./l—¼3Î÷Õc f,MAØRYñ…*™×ÐW§uöSÛ£2Ov´BŽ"É´Ñ›ƒûÅÒÅ.{öÙ^DQ`ûÀ"?°¨LÌ2£MãbîM™U O¶“;™GÊ‘$ˆíÛ›È;y`™)×Z¤±ý»•ëâÝa=ø°ŒNgð L™46ÐöL¼ññûg†ëÓmŒ²ÙlD‚™ç?Cl1ÉÛ›¨m@›|d$¨ÀЇÍ:‘ÔÅ5Õ õ¸Dääp6µûÁC™EòK‚Ð5B4/ðAáE.Î ù½Š¬¾0»V”1Ε+z/þGj‡5WéuüOY·L_{Mˆ;6=QÕÈ™ÏD gËçc#aÌYIfWD8MܪÀµ!>r;Û]•Ìu©„'dDóUvy¶!¸Q–È&Ĉ¢j˜Ñ²Ð hÏÊuß[a“åN;mò0H1pȉݪVj;>†H) ImRtÈ´Š( °¤§ú@sÂÜänbu"9À'XÜ ¤ ˆ;¦æ„¸ ŠO°uäôPK)÷–PtTÑr…x殺:;žQ¾°Ë,VȨ/ÂqÛàè .Ôõ+A#Óç ÀGnœm–ž6š)}Ž$¹qüªüª°6c ®Ü@,àÒ›€xŒŸVµþ\õõÖ"0å@;.= Èøåñ’ã†ÆEÖ›(»Á|  ªúùÈœŒ’lצz´v»à”S-LÊ0zßjiè—60¸ƒŸÏ[篻Ÿ(ôÎ\Ý»¬W¨}ɘ* ZÄ©*í{±È[=ü·­³öÉù'f ÷”\ØzÎ !åªæßf=F/p÷k€`!Ñ2Á2¾Q/Ôå¬W[LÀ=š*¡Ô%hÔÆÁÐpuð6†{ÖÃÆÂДW–¼)€m{«Kn‹GÃ2.Ù+=ÜXD9ðŠ¿É<Í¡„(ÌÔWê#œVoùyÇëYûàâì\]}^ˆ€`ôŠ|”ÎHC¶if§•1(ƒÜòÉDµ´îʬ,¡ËNëåqû¼{Ü>ù©óú¾”éÄÃR½:TKU~¬}š¶E• 'ó4?U ²ÿ•b fã…$%šÿ£_D¸AU‡² «çÌÊ®¹Pάü9õ𽝩× U]"ÏÉcë!ç°†¾Y­.D²< ¸Xý|ÙH¡<&~wV¥俯÷Û;Û;wù<ÎÄ®¢sˆêæi%ñµ&Oä-Á*{öü%ö’Ò«×szÑy%ßÕ ýïškµôÈ9+}RkânÉV¯BXÑêúîrŠ˜°üÚ§æÍÆw^ïí„Îkô2€÷º¿mu:í³“’ÓZVÓÌÆ¯Â¨òß±NÔˆ(W¢.STÉšˆ Þoô„A¿¥&í¯”Ïׄ>{ÈAê—~„ùC< Eµ+õR RÂU¡ÊyŸ§±.P¦Ôð[©áÊ”ßè£èkc ÀÞÖœ 4?í4)‘&ÚáQû§Ý"BýÙ8Ò r¹ôWpÚšúèˆ=Ä „FÀ&rù×öÙi×õ›£“V§}NDt§KÃ2JÉ´G‘0âÍ%˜™(Á” À»µ¼[R¹ÃøŽú@lJ0ýMò–¼÷ÁrÙjÚÚïY£,¯•‰`ÚƒÓìu/ŠºQ`®ìÔ˘;ò e„¥àØÀšPvWp¼zD(nˆ}œC}®”7Xc'eßÂRl3‰Â’þÂÒß.Ò±b®˜@æÅ,²µÀ¹=háág¾r:®h†1_µ/–’)j ]G tÖáË–*]/ ’ÛFÇ%Xu[²Táq#?’„=Iá÷—œ`)+Ê+žO³Ks&y”)Û ½L‘’õò\•øý—l¦Ê×€obdmyS‡0Xà})ÏÞP^Ð8÷f‹ ™fé7éò"egB øŒm9rZzú‡\:#Ü>”dgÝ&\Ë|±Ÿ%Æ.V¨D8jçÀ˜¿áS{ÃûÍZ’Qir”C¦êAf¾#°Tru>º†iôM:ðkÀ€ÊŒ³AôÝì8ª„Ö £”!•éPïH‹ºj›X³Å§Ò Z«¯uWÍAs£`´)ÃLy‘œÜ‡r åòØç Hpã˜Ô¾sÖÞ§ë`9Å2œhLcJ3 J 2« m*0WS 0,¬ŠQÄ`ÙHÁ¯™ÏQHUASÛñ ¬ªi B1B‹ñ,Í…ŸŒïöYä¤\ÚJB8$®_ åRE¼ìâjêòä¢4K`O2ªQÑËm­Aj;WËTÊ£!† ÚWη”x‘©´¼Ï˜ÜϸjÖ;¡÷¡ùh…;\·X{¥Â¹ŽVZ¢;0‡àŒŸœvÚ? &jì°«PÛmM0ìy¨” È_îá#'S¯äY÷ÖŽ¤Ac™('ÃëYˆ{{d|Û£ ·ä¶ãt¸å’ZÈI8Q ±â·°2,½‚ sjRO'òpÒ±ÈCΉwKÝØLgºñ"œ;Þ䊥2(f³É1ÍM[¤/q Ôþ`hØùÔÆ¦¼ý\2íÃîùÅË?µ:(‹ÚR ¼vªÊ,{á­Ê³N™µ±>l–Ç`jŠH´šõYñUJ™1IMeI­µx®~)®#kF0´%Å›jè5†HùA¸uš½` íø<¿v­4Œe·²>xàšâd“¬_“´‰J‚’ÓjÁ­‹¼ JmD—¤H¦äŒœ±ÀD39TK¯‚õÁܯ0Þ c¸G³{–kôB1t©¯Wx£aõ‰*uËú”Kg5uL0Å9÷44F¡{ì~¬#Ï͆ïLaÑ :b‰á*/íCprè¾rÕMNN»W]ŒÐd‚ÊwνaȘ—\H[ÿE½‹4 xL-RN2d\¤È’™é †Sª Õ!¬ÑŠÚ€'QùfKæ1\c—fSÆm#Þ²±»ò¬ÖÖ0Н¥qu¬ù9‹wL…Nƒƒ}„u£<« f¨x¶_¬9ëšméj%+®M#‹u,|Á<Þò4>D*2MªQetÛ¬8aÍH‡šrvÔâ9Su"Ñœ ½ºãd0ðþìîì°âÅxó«xžd–¨Ø€Ãóf'Á_”©Ø+@¢åRdê"Ü,`-š~R —¿FŒ2ˆ³áyT auQD´Bv"Á÷u¡‹‹àñüFþ]]‰â2'Ûupóñ·5(..:R8€Pù¹¨†‹Z±Y~*0%Жèksæ“KÙPÜ÷ ëÇLC.^¦³.¾Üå—C- ÂÆ)¶Câ×gįi~ ŠùM~bÝÃ1Ñ" ·ÒF`ƒ^o曤oø*XŠÃ ¹:ä‹™(šù00…x»TY¦7ï¼}Ef”^õiÊ4²Dù&r¾‹DGëüž3\Á—7@P¨PÌk>Т²D@îÇ5W!š¢›KˆÒâ˜jxÚàb®yâHhZÛ£s´¬}1²±Ñ ùŽSX/s‰Ž€£jŠ™dÛûò…µ˜.OØ&–çD OÓ(7ªê«K·Ãìc:`K'µ!‚ä 9м%ÍG˜PŒ¯ªÙŽ•VÇúÚú›á»Ï¬¬Œ»…ŹH›˜ýâ*Où]¹Z0!÷Æ1ÑE0º¹–4qs•ÜúYST?1ûò#/paëLª12Ùõ¤¬mÉÑcomµŒôâ¦X•»dëxP¶4Ipg_“êIÑ pñƒˆQDB¼×Ù`0âò%²Î1¯sÕ2¡› 1œ&—âл³Ñìv‚Yaf{(jinÈy–h㨚¥¹(í°˜¦?F‚.ì ®|3°w|aöë¾—§A0ÑÆ´¶¿ýWCÁç»o½cðíw‘C_ÍÒÓe׃4°SêÈv'q'"òÿËN£¾ pô äãª)†_yeóÇÊQó’Àh^®«ñ&qQª2UmÏ6•ŒXÆËꉮ©ø„ÜB>€D¨D;ÌÊYg"Ë«dþR9»Á¡42àc‚Í„wº™%;ÊÑ[¶k‘@˜:UÀ»Gu¸¶i‹Bk¹¶Ü nÀ#¾†¿±É®^†¢¢ªI¤&¦‡ôŠ‘²å¹Š¹Ex›…5|[ðºÁƒ —JlbÊUªi©8êññé¯Ýö›·ßºÇ­s›S¦+íó©Õs RI©ºFúåè!(þ:‡îA¦TJP,Úa1_±ÚfJu¾©À#ûÓP·"Sг”²è!ܳǚ±[:Ä9™ìƒ·¹+‚eXûÃX—Cè'ÅÌv§pí:Ý—çö"«˜Þ9EÔì+úFQöAˆ%öx‚é< íÉE#‘LÎÀ‹¹#¨€Ù>xÓ"+€QïÞ'ñŸ’É9þ½ÉkdÅîænìnÆï.T"d<ŸL ¬Qn ~TI–ðŠx.å ”7ºj@ãaž„8w×(˜øHãUë« =3¤¹g)ÒˆæjD‚ @ó"Z"1z1œWFh¨AvÉ(+¶€¥EƒuO±~H’8PÅ’É=àל~7/­D\½„>ƒ+ÙîÝi§å­Å¾Y‹5kñq¥µ˜Ýä´˜Ý`Ö\ Ä£ …òdôî#È8¹ Mh·›bì: Y-‹¢õg`\†œ‰Eô¢/&3Öws¾^Ù8’ôÙÃHPC6t§Ûþsç¬eO1Ù åü’’ÕÆ¯¦§+²[Óïò3+WdGÑb.ˆ»øðÛ[A°ýðîvØNøq(§Œ æ*»ÙFiÃT”#âà Ý™„3ÖܭΣéà WÜÁÑÙÁÅ›WÇm{ÑÏ üh‹3n¸ e¿|°¹6 1›z8J §³Ä…gZrðG´i¼Á/&¼ÎËÓc×¼€zGlÁߺ˜6™ùˆ4ÊɈ…ãØÑ æ5º+J¦-b…軵¥¾·D‘š:«çAÇ:4áƒäGUÛQµY†¦Û'‡íCŸ™·FääA±a*4â®äŽdo£Ë„´7‹‡ÓVÜ.ù1Rvr—pÑ9ÿÝî÷ž¶4 9T *F›™åëÏ"ÎrÜ×ÖrË–ïÝhüË¿mooÿûæƒsØxh<òfDp‹ÅÌq:v@µúÄqÔæ½¯]¨X¢$ʧJ8ØÀÎ7ÊkU—þxÛ{…¯¸bolØkÕ¶ÿÒ>{yÒzÓ¾»ø†fe„ÙãÁ1G¤çR$C*âÐÅ&Y7nÝCš”X·ŒSv”èàî2öÌŽäwá <Ã?IÎXXès‘•šUó")CåR§U‹Çt*b$e“ ¶^˜]¸ÒwlæªÃ›Sƒ«FJaNÆÑ|L—ü rxˆJÃlU>Êá$:š"8mau#{aYð^:»kÄ»ÿ#y×¶as–éáÉŒ¤„;«oŒz{K m}ÞJ?“§Ý@"jL¸h„G'KpagËï¶ €=è .KªIѼ°f… ájnh ÿ¢sÚ=-ࢳH+¬±£ûNŠ/l­#¬¹ÜŒ°¶, 5{OŸ6i|­–^7Ú *Ø*­ÇVÃ°Ü ä¡QÖÇ(!î,0ÙcVBVôçEÁÖÃÙ•-¹:*ÕeîWþÌèn·ÛŽT-ë¡ÜJú(q64“€¾/+ÈFÁk®Æa£ýuž}HF CW”Q€¾Ë¬››¯)áÂûØ©ãBS1Ø´ñ/Ù¦Ð3{Ìð0ð‘áÚ-W®bßÅÁ[;=ap ƒƒQR‡áp~¨¾öHP?̰åYì†@Õ±*dÅ[èfÕI˜ò¨*ïDÿ¼³óü•ŽóЖAöì€ÜÜ:?8:òŒ?c·çdï@@äfޒɦZÅ ÜHÉ”B¶Ô¾àL/þyow¯7~NG²qTd—cªGn†»ûüUÜ@0ÁóMÆE$$.ùJ5Q29²}ôYúœÇ)ë:½[‹§%x!ÖîYû¼svtÐQ‹ujöadˆd.€ar‡¯3Ÿ¾ÏŠ+oëoé4kƺòNîƒ1z0€aNç#2D…bg1ÃãÔ «sqöó¤ ¶ÎN~b$±’XT|¾É¾iÆß™ÿEÜ߉æ‚Íf†qAKH»G'mÓ®õþnÔ lLó+)…›º²³ïÖ§ÝFoÁ D½¶²G¸ˆs )Ë7‘1/вÙXë°—ÕØ2}ª4‡GCÀ·÷ôM˜òĽ§*¦KŒ#Nî6M2¦¨(›tNœ¡‰*‘ PZ7c½`‘qop8vw¶Ÿ< nGÆdg% Ѭ :Âä`GÁ…rË  ™Â» ñê·›®øwñÏd*|…"8ÁA³Ø~­­ ~¼ß±T­Dt|”V ó†RÚœ+í`È(O[gkqzrüÛ"v‘A»§ýUr‹[§‡Y||)£=s¦7Õn·UðäPãóŠds8?èFL¯@*3‹”³*6µîã/‡¦Ú2VhÉñ仡}6¨f§l.àVÍÅȋޡ3Â(©™O;F^Z¶M³Õö«cÈCÍÈ•ϥʗKªqÜfgaÅOoNüYCy»à˜«aY«%ÒC"§èß°o5FgëxfcÀÃr‰”‚¦­l»Q­˜RT‹)ñB1%jüKQSZÎeN*ª ùþÛ$ÿ.v5Y3e¤y¿n¾;)ÁèoSšŠœoCmd¼=Ìç,0T‰Ì.ÞzÚh¡‘Š ¸Bô’ o=L41¶ÉÈãì¯PA÷®ÒÑ"PÇeˆÒÙí„‚‰e™U¦Æû1pxò3»ƒ$ÐYЬ(bvÃÅ1YGÔxØ¢‡¯s@{à(¬ÛÚzŸl4—\E»-óñ-Ç×ÚÑÚ‘ºàºõïÄH݉+º¸‚l-*ÁPªwKu_ð’ý¶upÐ~ÛÙ$»°5ोYLq3)›>}k?”£í—%J•Lu(.\r‡Gî3C ÓŒðã(êîc¹¹Ðœ@#QÓ‹ìô‚ ØàHa-uÔ°ƒˆ㦭Z¼wÉ­Í|ÝŽr´cM9pÔ™°ó«nÛuÿ¿ÛÛð7üÇÑN©Ü©«uZ"9G\ÊUjvq£¿AxМ\Á(¸ögÓ"±OW•§Ü¶òFÊ?ÿh¤ü£1ûGµ¼|øª”ï«Q+\[ô#¶ õiX4 Š;VÌ6í’‹xƒ‘:¥#Y6ÑC(ÃÅúØpzkE¤Îr°&SUÌ(ð\ÈF‘&ª&¿Òý"v£— Â$isÒ0‚]Aa<ŸaÉ>‘Øx‚·5—šl“Ð"Š©ŒöÇwÿ{{{û]ÛBñ¨óé™§ºŒýeÌî¬0ÙÆ¿ü¯ß=Ûû‘]Ø×1˜÷S¤î,sF¡8SiÑÁ#ÿuž_Ë` °Øžiý?w›ûÿeîG˜6*.Á&›¡fÉÆ< юɱ֋¹Öñ'ûxü Þ‰ÿ9Í"°§¦meä«b;Øïz£ÌÇ{e>–¤^YáœqîF-vD0VkR„ˆ{Ï0IN5²¶jo­ÎKÐf4%——$rÖNB%¸Ù 2»èR³:®ÀE}Öº {ð%€.¸ü9_É—Ô/|Ó 0@W€-q8òŽ* ÕÂUx*±ôœÚˆm? 5Rà¬9íKGG ‘ –²´~;wvv~5Ìx 3Ç¿Z€.HÈRòÕ˸‰ix@Ô“Ôq­Ÿ<ŒŒfêáT±v ¿îíÄ œÑæjT&ß"ÆÌRIÑÑ,yòîÆ[¦æ_‘Ρÿpu˜E–"åèh|l{ß?(aÀ*m‚ígog§m-ζfù c×Éôýf3Â_Å ü~…§øG|sï{Zn dΧÖVd~ü}Ü€o/§ÉĈbö Vo@‡ô}9™KEŒ“Ÿ–»ØmÄ,ÆFÎÊþñ5#€Ýñk°±ÑÌþ"N{Gºw¬¥$»R‹hÈ0l ŒÍÙ%ä^“yÂ}uùÈ`àî TéA1ƒ#<Ü#u;—Îï—¥š9Yí 7V<º¤!ÃEÛä˜4U‰Šß…Õàð²‹ËúNØE ¤£J˜ ·À²uØH£Q2ĵ+@02Ka„‹È%–°Žè³ëK‘JÔÇ•‘pR<:Ó¬´X%É6ÆV^„ÏòN(Qýc+@³qNÔýˆ2[3³ŸJñ‹‚"Säí»€À_vë@q’_U,‚•Û“U’ìê¼ßÉä6^lœˆÖ±)Äàõ„G*U0²ZÏL¢+½ò6¶×tèö« a»b™½$šó‹¨Àxw¨ò ÒùBxu˜Ë¾´ñb«‘óˆ¤`Új3Õ­4­>u(åBsf{ð£ªëG†R{¬CÙˆ<¦fk¤ i©=èc•ˆämÞ«£³óŽ´q<ð`{DŒ·W¨ª?ëX[X©r¤+Ë”*áÒëÏâ"芤¶ìTPZ¥Ø%eDÍ\–a!d/°=/¹"’¼VŸ¤Ž«eMDÅT"ë|¥“í²*s3´ Jð»ñÇÛ¿m`Ì“¡šwãÈ^~°mž¥J ä7Õ>³Ù2* %k5@l©`‡a,•«à¹ ã} HÁ0(v»œ·»§¯^·;]}.£‹!ƒdsiäþ)‚ó2Ú¼|HZ/F¸d;*Ø+™Ø¬l‚Å«E‘­£µt*žn…RrÈÜäX/ ÇV8®ã•Cmg&%Ы ¬èts¡s)´û„'êø¨Ó>k•LãÁyÏ ØÆ·k¶‚Ý)? cœ™ïZEÿ­ìýPãÿFÿ×pšKEëx´°\«1Ï€9…„ƒËJÎW AÈD\5OzuÉ®Xª(… K–M’¶û·äŸåÔ±>›¸hmg°®3cF¢µŠÐ^j±”Ñ¥<òö1rWIò-‡…4#ß‹Õ ïOùÓê»G'¿´ŽÁ)ožœŠæY§ ¨æoŽþÕ¾¡óˆ›ÎïI©ŠÕ'M]*δpå¬ÅƒÀcæÑ?ýzzv¨29mD!ìâ⺌fLMåü²ÚKÓ­0}¢pS£ XŠnu§X‚ít ¡£¨.Ù¬.ÞÝ*9æï'žŠÌ¹¡M(œ,uŸ™I•ËÈèJb`‚ãÈ-Û[R¨rCæîÜî³.z-ÒlqënS2nc;BÕ’pt¸Ì0ðÜœ1x:…²¢­É½ f†bžÍ°J"ƒïó¥&÷±œuW u˜(=<ÓfTtŸÙJò¹8Ê~‰³¯–]œhͶ ”¼ÍÈž»Dy#XM%$p̈µ~ˆÍßÝ_Ê>A­f=6·£V©6fãÝîf#ÙT˜<„á ‡¾˜_ÓMŠ Hf ÉF mra]Œ(aßD/Ç1òb2}ϸ™ë]%‚PjZŸépÃÄÛ\Šl>0æÂƒ=ذâb—ãÛ`½¿á‹’ø[Q%6%±ˆB\‡"$z¸grhFâñ…ó,5R\š«Nt“†có½ÖÿØŒœWÙ%sùæœG* »7µ P½ñO›qUƒ¥¨&brŒAEpwÔжîÊÐn'õ'¼óè ‰´ Öù7<×|ia¶7KðJoç[Ç…'!Å4ã¢eä³ÍÐ2¸N~­Ìð½K +R>e9™ jZo&ØÀÒmÇðQ>ày,Kc…!¦c¾–ëîï©ö]—Ã|sÎbz÷·4ªNj¨t4.Jjpàl‘GÓ`ï }s!Æ~–B,ÖÁ£¡‚ 3Ò¹µñàZ„Û‚øz’/\ú?àë":kŽñcï½yJ@x!.Àòw·/À91 UPýUôxb0³Ë–ð£O2œá¡H6›~YŸœ:ó ”|}ð‚3q¾Ô(Ep©*¶ç%¦ê´nÌEÙ¿…•r\Z·§7±ÙŽPé¡ïì°ˆÇ ùxÚ 3Õâ0Jc ‚zÎF»án©aWû ªYøêM¼8x»òæUõ­…s°Þ½lÆïzæÿ›Ñ;£¾½3Ã;³ï~5ÿÓäÄPâ÷öôüèÏåd ßFhë¹pHÉŠ&¼©#,¤k¦À<6ÈìF¹„‰ZìŒBéÛJ VRìݺ€Mªx®ßš!°Ñ?úÄeç#»ó¨íM4¸‡¬/«É+,&ÙÀ·f§«õ·ÓÖŠlQ7<ͼ ÖäóÕ< (cO¡N½Æ†©XD™$f|Ëv*òw*övª0kÏñ 9ê5Á`ƒ-‹Â-ë¼Ú¼ïaª·,ö¶LõÂ8*jwaévŠþ¶sq¶ÌH yd0)ôY¥Œ Nå¥Ä ׈Ô³ Ìiå^– ßΨ·©LÙaÁÙPÞŒ°ê©÷̤ƒQ]ºsŒLŸÕ@ ÕϾµX¨4k-šØs“ÜʦVT Kˆ¡dÛ…ý7ë””¦ƒX,¸ Š C‹žVĈ?͵D¾3ì×<5C_TUÞDòB)_öT\\áÙtZÇ’ŽY:*V‡þ®ü^C#æ =¯È4i À¨Šî­ÍE³i<[Ã0dúßLúŒá »Éþ–XnãUÂ3ò(ámÿs1Íÿÿe†?`ðmÀ€l¨xœ6ÈUÌlý,pRR)›ç—þ’Áê2è-Ë^ ÌYCaäÊ Èdö¸xš€L¡Ý\ûyõ*éSK4ÕE&@)’’GÚ¶_ˆ„,Æ©á%Žc:Ü ¢Iö8h@íø|ö·ÖµVUwƒ”ídæœýö옺º®«ÖõyÒ •FÈueõãj¤£Œs´Å“%¥6ð&˜¨stakEÕûèm”güýú7úy ±ñ"?稻ÿ•31 Z5©Q]QàìXjÑç&’çæÅuAŠÀz¶n¯àç–IÂ\%Î '#KE&åYpêºëþwÉ ø8™u\­¾Þ«Þ8âé¼áBC=²°0žÂ±.*\Pyð¤PZ©Î²ÞÝí €I .Š ëñiÄË„D¼†@ÿ,ýÍnÌš«¤ÆËóQSØËü…eãè\ç ò„ñŸ”ðºúÑÍO£g!’íbuO¶¢žlI&ëÒ0þž7‡6 Åi9ßžŒ^ú”j¬cƒæ’†œÚc“g)¤/I…`/ÌðºDùíˆî÷½91ÛÂ[W‹´‹…qpÙ¨Þ_Ø‚.-DÒÌ2ÈÔ£¼ƒÌaÚ‹a ÎOå¹)¶%jë|v鯼eæÚeϳ›– úpIY¾†ÌÁ«Øµ‚,f¡jFQKŽ%Ó¦äZ±|‘x¸£éM ÈÃ=Ï #n[Ú)¢· 3@%¥ ê*»KC ³Ý¦˜ÒYÌCú£zaŽr¶ÆŒjé{â·/dL«ŸÔpo|¶±çÿëââ¢ÇV2ö"ÆU»ŠÒŒT'1ÝÓ?Bk?µìNAýìÀ£“ÃïÇóáÑöàíðˆ’3œÆoéù‹PÂ$ìu§ù¿\ÒΑÌã&á‡2JŒ$Ji'еš–FeSv{¦F‹ÿÓ?o%~: w#+!T`šE€¼§7ºc7zö Üè8ç4Ls‘‚\ÔdPc½0ÞæÏÃ5áy€¬€Wbª©ŽWöÖl e°91¤ÙÇ1ѯVpk¬g={cëFA1âCo±ÙtU1ªéå9ô+^;_ð'–f¾h¿ÁVwz“_±&-u|ij0Ï7ˆÍÏ‹û#/Q +† G%_áòïÛšöÂv)»N%mÞÙ´ù4ᇧ–3…N¶Ö¶”Ñ82TÔttøZmkJ +ÔÔòæí%Ó·½$‚ $¸DCò+» ¤ þ«òr·^íp$ÛúÁAü€é~ášÒïÓS±èÄ5t? ž›!€žDµ ®œ»(>ZÃmQh6¹ÕÐê©~¦¡´,=LñãcËÚý¯‡Ão›®¿î #ý—ÀAÑñª#3•Z~%–÷Ÿ¹‹r@ŽÀ“ Bð­ßÏ6ÂÑù²#ÐKT«!l6ÎâÆÅpŸr-ßIš²ÐÀ¯Q›ƒ$+²i.$]œO-Zqy‘x0ø ³„ŸÖ匣n£ î‘é÷·¢r㳎™é§šË,N"Ík”âºwËʆ „‚£râD³¦e3œmu\AûØÂ à&t$L"#ñÞ‘72W)Û _2LŸ˜}¬éTñÀ«Xn´¨P€À+†'½¶ÔÍ[ŽrÞ]H¼r¿­&3D%]˜ÂŒ˜±7Ä+mº6DzkTRõ%-Bž’ …¢zÌ`X˜Ú,÷ÀKÙ:17•$«ÿÑ™KÓš'e™½³A×l'`F^y‰®HRÏ`¦hˆ1fŽŸ/ÞR}ª–•*‰U¬%@¡ÛÙü]e¸ªµdÃZýä רi' ôpÞòV1]]ÝûÛFÄçIø¢±ogü´ÂŠÃ\¥¸õÖÞØ;8øzpxp²¿söòH½3G%Õ 4õä3£sx¹3*Çãbjµ©Ó¯EМV>ßSöŒªoœéIž »G¢ëhäá¥rSöÁ¼xO„l! œüP)Ä.áÕ0ÅSDËŠ #!‡sŽ©èw£ÙøŽ|ë“;δ(›êÒÚí³&i"( ·;†‚§:άbó‰O¹ ¬&~Ïé{ZŸ†·…°jx¡ÁÁªu¶Z€,ÑRJ-Ü`{`MkI™üödÕ£±bÛà ™L¼´íÍ i|s÷~ÁŽXéXÅÎ]ƒ|„ŒlR/Ø:ÔD÷–Ÿ ªi3 `XZD'çé;M%™ªÌ¯âoEãGpBY­RL­ ùuäwÄûX=+#–.±ž­&±©ëm~? ®Vâ*\p(üqsë§ZâfŒeå¯ék¶·é8”³Á2zïïÚr ΓOç[<™Š õl°Vs^™YgzC:«³7xçL–ñeÆkDà3Áݹ٠Z9<Á±¸ZË)ˆä¾ 5Õõª3GàëqÔˆY¯c7%sJjŽõßÎn¾Y•ù‡jŸ Z{6÷wt¾Ο”MÔ쀅œ"Ÿ]ÕZVD+0į ‹Õ¿CØéhhŒ£9U°ûTsùôH輞~$+™ƒ°‚v7‘×Ûùo‘…ðB¸Ï,¨ÿ‹FüLík­ÙŃa§Ár@’\…9]þxuuµ¾þ9’ U3.'”øTÒ‰¿˜ë,¬ó*´,X̾g;+ŠªNS¦2³…®¡æ÷PGÖºÛ}PB9%±éØý2ß¹¯¤8î{ãM+}¯ûžâ:˜QÔàuÕ¦üÈQõÜÇŒâ›U£¸m”œ6¸KÙ ¾‘¥pÄÎîWÍ&2c…û4ûî9î§çßãqþîùùs1s?g뵎׭ïñÇl=ËŠñJêJkæu€¡Œ†ïÂðû Ïš'sà>rÍߦs ðod/9¦©Ð5Qµm„(+±˜VË9›[Ý/×àXPWa"J‡è«ÆÊ3š7v°7.ÄËÁ_³g»Gia´&¡dcýlq]œ($¿?¶Èw0ø1¤¡„˜Í/·­e†©²@Dg뇟jÌ;k†y¥ŒrõÙ²ÓÈc´Žæ®¥WÑn ‹‹Ó˜ÒXj¨oËg‹úζÕswþ³ÓWϪ½hètAû~0?¡ÊüŸàãRà N§½ÍçS*Pµ6:zFM\^lÑñO9±slÐ~¥$šÑóE ç¡ê ÓÙŽÑ@“Œî<¼”F m§Äº\ÙÈ;- •ÕGÛ}mÒñšbÚ™™þâÃ%i8´lÑZ¡`àÝ/)Œ4®ÅÏ:ø»NK¡&œwrL-î¼…AA„úr–AØš7(⢠ÅûTÉ‘üQõGT( ØÑU£ãȾ;Ýÿñ{ÊZŒ`sìrÃ˯oÆÓÁÏ×½þó½›Åcý“’UÿÛïq㙽 DÇÀhñ_K¯Ï!Ïé¾M(HCɨ“¥Ëä€ÑŠJFU9ïN6 ½,"aû‚äL£ «¹ú£T˜¬êq,r¹˜j1Ê:3ØI,‘`á9ˆÂÒâ¾¥ìb€ªÁs‹àݶêÊ@÷»b?le¼ ¢Òx”$ÜÛB8dîÑoÒ;;"û"~ ¢\ÿE€ëg—«‹þºõá­Í­\H0ï7©Q‘DbÇg[|×qcŠ'u>ŸUtöðýCüin¦8‰w¡ø/^š> HÃÙÊ«<’©À’BnЖ)¹èpx?ªí*Êàýržjt-7+ÉʳíC”—Æ9Å™'Åe~~×óe‚fPrÐNç™í-Ö¥ŠL LSªNSíHÒLF¼˜’¢vN§u*Àkží½2Æ»î¿Ú>̾Ï1|_r¬‚á’(Ò×7Ç“iÓá¥þÞÿ*`„åU̲²WŒF±±óSó"ŽÆ(]×;€\äýáo·µšÔi¼¼º!dwá r̶¸Q$ôWÖ‚ ä«P!±ƒ6Ð×Hþ#‘ó¼Ðߺ_>ï4f^‹+ÃÙhK§÷›Ž©†7/ÙyÕ”®™\‚ÜGŒp”7Y+C­‡rbaÁǽ¢u˜U‹¸(?c±n•ÅŠLðRÏÉŠ™M¿“ –’' ÛÈKT_ØÓ¬¬[µ²Y¼²§£tiõôÑŠ9ù)vs– d5øÈe[¦yÝö¼y¾±²00ëÚhRI5¹!ÏÑèhÖÙFú†• .©ù¥Œ–‚¿â[…€ Â#ÓM 2µÇ7}sçß~{üú`ÿì`ûø^À(r°‰ÞðöΫùÓßWÄ'ƒ ©:N¡®Ù{Ñjå:pñéæÓ¾f&/'c0SÁ%iU4´<ÔíQöîþ¹Å{…¿l=í,,m¡òjœQFÑ´ë„ ‘؈îuØ>ß?ÆÉxxx ïÄÿõ]ØÙ=¼Ü#V:™R^KûÈ\Érl¿J™¼n¡&”ù lt­)´/ªkgòUå„bÜ|òšg1ÉÃi •QNª}Ù\¡çŠqüa¾¹ÊGÅ‚„³R+SqŒdy€»ˆT«¸ó=NáŸ]¬)d`b I­ƒÇ˜¼+TÔW6suEøÙg˜óÅåÜXýÿÌ’{pÄH ¢c‰ØN8%QìÿôÆ¸Ä £ðõÖú›£áöÖfGÒ2޶7;_üéäèxmwíx÷Í0ëþ ê¶Þ¼ÝÝïìS;¾ ´ÄìÈKpCùª9-Æ5pÅÿïò Š×—~£)¤•ÿ”g ¾è½€}èÛ›ëÿ—´LÛ‘X²ÖÖ¹\áíñ!"Ò_qó_ÈF=Úýë~ã·Ýåâ*zš¿IpM -cègæ`!y8ô.ü™4c­„÷ðÿÑ6/Pl&æb^gË)œ‡³ëÂßw<û §µ}yOÛ¡Y?|/˜%œnxçipšàÏdtá×ùý>ûù]K†MÝTÙËi÷!SY›yܯ^Þá ÛˆÿûLÂEÔc|ï#û½¬åƒ{ KÔ­M­oRÿ²ÍÅqãP(ÍR<·óÇ“µ¬œÅñÊUØPðì­•SôOje\Re(©Š!i:¯+nXf~4"ßÄë¦øPœ/!Ú‹è×^‰Ð…­6Ž÷DÍx‚.Ôm½‚2ðñî}?}É•ï?i½îe^“9#ÏU‘¿¿»-âÜÖji¨êÀÈ(Fg/¤ «[2úr¯Þý X›°:^¡óÇE°QÁéU‚E\r”å­ÖÕfžCšXÔˆ±K#E&Å|GœîŠ“•ÍP°ÊÒ½øMå ó»¶^Ç× VÙ˽&ä‚ðz¬¿™yÇ­ºE¶’[dïÀ+2ÃìèäíÛƒÃãÚ­Arég^H<ªñ ü*b"´gOà}9‘ôÒÿšk:­’'å5⢪{챬 6JÂc—T°ÖÓw¹hõŒî²¹P¥©_sû­ƒ«G”]ÊDaž$wâ^BP¥¥p[Ï>+D‰¸&”ŽæÁiàUS}µnAo:·'PŠcs†»Íiì+ë–øDØTÞÿ " •’Âd÷-b#Ô˜Àù¬Á%™L>ôHXg• Ï™E‡ôÿżô6oÅ•Üi1Â]ÈÆ î+%ÎÂAbæ0]²L+‹ Ë­‰rDŠŸ"çÍ­?´ô±dź’<ÚFÈž7u+K$Ø·h@ÓjÕž!ißqÒ¾Mž”´éëÙjd€üS*Üü<]'å lx³‹w‘Ζso+Œ#Pbµk óBa$®‰˜=¾vú”ëŠM€“:eØ·æäË)?PÓíl=/ŠÛ‡‘’eðÉ47Y,%>)ë¬XPÚ²‚4SVù4vöÖÆwM± ‘3ý‡¢9~‘Õµ8q¤XÆ-$3®áU|ÇÎ ’lžJÊ|g»Ãó)Ødø—7¼+dÃV‹»ð‚kn18â­“œ8½8ýh攤 7g@ž”á2µÆ9oÞÉ„CérvØ7)<<èñÖ¾È`%Ë tÈD®‰þsÌÿa}óR 7ãô;Þ{´xÈ`H™zeÅop&ûÛúêÇ¥où6·ùqÃñ‚Àþ¡Åˆó–­Úó©.Û—t.%õ¡Þ€î|~‰Ê›Ö¬Ùô´\¡âùÞN‘EHÜ Jvîµ`?datìÀÑ”Pßå›Þ?ÙÛ£ÌwÚ;0šk|$”qÌ{Á‘Ryí}áe¸ïf‹bJÄ"Ä p‡·:nJN³ÂáÖéSÂåœE“Ì5%(Bh¥P`‘£b^”VŽÂÒp÷ž’DXš;Éø|ºÈ•ì&f"ÈÏÏ‹4‰Ô& ×nš˜Y˜Ù{Œé¢ä\ –W9ä¸û1S'º{ÛgÛÇß¾ö³ÎÅüìÕa§÷Âσù¼¦vaÉñ'ç2åŸgÑꉪ(Ư>°b-¤­>¿ïG™4Ý]__ïë‹ýLâ$ËÄ/ã‘È|¯œ.?àZ?ëÖŽ™vnõ‚Ñ·]0ßxýpvËŒZØpã:"¿Ä~ÒIÄbØK³M÷}™[—¿ìÞ^;ç æ®åïE kŠ4dD£3‚Gî´…PoF˜b-´ yÖV­É” $´Ñ[Ç\BR o¦iaRPÒ©Qê~Êiø™ã‹Þ&°(l&ÚÎÁ_T7ýð·IR†¯H|± E"<'óâšôS(TRú4•åF  G “”ìq²ƒ+ X)X ¢ð¾¤-Ô ÝɺbO2 bRƒ àŠ£&Éstr/'³Qå4àÛ<0òÒ©3£•™„b›#"Nç}ËjI\‡ÃSêç éD3ŸLZ @ã—Sˆ”!B~D‡åp*bìÇ·È-ÀÅσ}PžùÊ'É’+Äeìx·`‘žø?>} ÿlJç³Cá‹ÆÛ¥·+&,lY.Ô,.°LÉ ûIU°ŒX½b 'há•â²Ìg ôf~z€–9¯P¼°WNW“•ÎdOýܳl_6QÓkÍï‹ò2]挃ýW»_CXäèlo¸ÿÕñë_Kz]»ê!a}޾N×QŠmmà4ÄÚ÷Ïó<öÖ t:MEãÛStN«‹­óx-Ÿ ¹îh^›TS95éy#ò–˜žÄ†¯¤*|j”~bøƒf—ŠÇ€Ý#Þœrz1CÌo«¼>O¯Ïîþ«ƒÃ7(È/NŽý6¦àÁp'{;8>®Š ðÏ  ÖÕ¿"†¾‘ÄO‹û»Å¡V7zWRG'7¢eÂoæ×¹”—B¥‘«`¼Â júËWY+áþwjùQç ¢x¦ŠXÂä€^“ìT=5*DnªÈzSϳ,øè|‚¶,©+‚*uS$íÀ°pÁdÇ}Í"ðj>ŽTé¨ 9rÖæŒ‰Ð”%c‡ƒ7]TqWorÒãIáÿ &¤+HŠ<ˆ'ÈWCÒ–S¡7¬ÈȈT#2#vð%zŒj€ƒwe1Q/µQ€ ÛbÖ>‰ÐBDFÐjµL‘‘yku›†yÈ¿Èn1§oNømòøËÁΛÁW»ÛæñÎu~Yžó[;ø AC gíi@ÿò§ZŸFÙ‰R8„ØWÝ%- EKÜ}T¿²0‰ÁWdµà¤—%c±k©DHÑ^Ï8!&4°pCJXÄ ÒS Èa%‹7îzöZã!™ICá¨"€XûùCSŠî9ì"ÅÛ’bÂrƒ œŸƒ¡ÀÁ3z-‡sµ¢÷9˜Lð¨Åÿ?2C¢{gãS´: ±1äÙǧnÓÓÀ?þu¥÷¾‚3½Íy.ó|l—O‘PØôÓJÁDðØÒM?m2»ëWœ— UÅ+«›q Cûô(ùüð«ÆÏÑç(ßp¯IAðÚWÄOúï%:Ϲ‰¸bçeøÐƒ]"·Jf;ëͽӛÇåç f ´e„ ~hàýiœ›H:&5ì0Ãè[ŠÓéÌí>úË_þ’X„A‡_ÅY –@1¹Xo[¸ b~2² `ø\@ß`n¦%ô÷ÖÏÀȧH œ›=¦!æ£óÇÖÕLXõeG½àwþBS¼Óe)«äqƒ ãߺîšç=ë~Y/9;kÉÃÌ‚ÐS]‹à‚MEoçóŒh Ö8h]ÌcË à©g¿oblðŒ2Pê¬2%k_k„ë\hÉ {+À†¥êS‚ÖЄ] ¡N 2p¦jÏè5äÍßPþqò^s.ªÿÕé~E5-ðçWÑŸëàO˜ÙVÙZ¦è]Q}À}ˆÖ}8c&pmš¢25g@ÑÙ¶,ˆè-°9˜2ÎO§_ÿ,j»ºäJ:Àö¿Øç¨‰‚RO*5ï¾41­hܪY¶3[ÀV5³uÅê"i)·É°jJæ•yeÑWƒw ôeö0ÐM; €;œÎ ²¤+Ÿg1M´Ã¯™ñîÍà/Éå…î=-†¿0: xD~—‚&êæÚï´¬ýNÛG^†„í!å0ÄV`HVª½c¸y‰o¹ÍçãÊöÛEý^Ï^Æ M~Š(ì—?HœÉˆ=ÛòwžÊ.Á®Öª·iIkÔìJlÉÑÞ‹ nû©Ö›Ó·A:wŸôò¿«L¨‡¢á¸¿‚±Pš}@27PTŌ͛áèÐ*^ŒŒº«Ì ÕÐ÷I…/}¿Ï²•?[ñ#€–0 §‡µzNk_•ZÔ!߯ñïnì -‰Äé¡ ©0wÅ\}漑Æ_P9WÚè`ÿÛíýW¶ÊÍw,âÂÛ>ìg{¯ÐÜ‚Ÿ6ÎÓÁlœì79,±¤ãÕ4ªP̰fÝ/ÿîXú€÷' i*tÕbfÓ /’#óKÏaÓˆw†o_G(g»±fC8dÊ,k1.nW 6º3õÌÌ —¨Þ‘ók¯ûaëô¢Ï§þ_¬*Èó²°;½Ivõ±¦;Ó1jTaµM5kp•}“k kVkì ,+FfÃkÜqâååŽFn]³fÈÄÇÑË7PÑ;¦ˆ€L-ós%µ¾²€ör÷øÍ@ÑS9Û8UâÕV¢KR#Š;†H°-%¦î·E1™+ýÃ[ÏÊrü)dÉUèá„t$riºÄLû‚Ê#–$%³A‹%XL:¥œŒï¼2þ½Ô¬2ÃE@H'ŸƒbLBù†°™"ûÊEÉ­gÏ89‚‹EÙý4É/ñ ‡îÃoH°Ã¥6(£Ä_ÀÜB¬¡ƒÛ•îés‘â$¢ ËzËpÛ¸pFÔé„®ûÎO³š&³Ý+2pc‡`j"%ë~Φ…' Š^pBùÆ=çšöÜÃF“J>4]¹7˰ù¨WÌ;³-]IÂ]Ö9ïP¶E 4ÑûÛߎ?ŸÝúÿ»ó‚ ×Ï6í ï#-¼VùÑB%•ÅZJ&Ö_‘ÇqŸ½Hkè´9KÜ %zXV4íܲÜ&N¹M">Ò~¶o0ãñ”ÄÖ‰}?Ûpö¡•û †Ýpëêuÿà­ÄÒKlº}Ûv°ŠúÍ1ÇóÄá _¬û6Wx€’¯w„Ûs(w#<`¡ú«í'0µfnãªñC6T~À©…•kiC¡ÙÈw/Ÿ]ð?²IwÁ"ƒS׸ª‡ƒ7Ã#CcV=ï]q½÷dmÑMxqà4K CIJã"U„ þ¸ü8.M*+xo¡ywàT“ÿgï¡â†²‰°ÁÈ ƒJaL³Œí¯6ÚÀØi2ÿu@«båÓA(è¦HEzÒl¼)«ìv²8›©_+$N±Òs‘ Óíévß—_|NZzºíµ­P…þ ^jUµhÿ¨ñƒÛ³8«}×Üý¸`Ì1L]übÌœcZ)[*žtí‘S¬y<&¡ ƒe`‘½àGX.Y+ÃlœÄáàíýúýU‘ßHã#{xÁ¿ôúž^ÿ§í׃ý¯†;m‡¢ûåŸôaíO5ðkÉK ô(¸_~°˜¡àƒ e*釔ƒËÞ´“·ûpQ(#¹e;oÿî±½Vv[JÊA‘T—úòè..iKb$óä¢ $bá-”=fŸàîϹ޲WcÆØ¦5uø€Çöjš5i(®aI±~Õ¬©z1›yÑ…Éìó1&W*™ÔË£§^Ø4w€‚¢‰©ÊÖ­šÿ–ŸŽ?ùÁÿßc±OeæfÖE[µóCÇx‚ͼeh=2 àMغo¼­í•;í!šø?n§õcý¼gMcŽÕ÷È"iÐßWÝ7¥— ŒÄðÍÛãoïSL¨Hn¦À]ÝÅ£ÿu´':1yM!rÌŸü­¸ˆ?™¯*ªDûÃ’“hAš¦&ú» #=KlÒº@ Ý 8Å¡TqYQ‚x.œ½²^©ŒBñ§Úgú~í…zó‘z ¶ý/Å埧¸¼üàå__ïî«ö2@öQq¤ŽŠïÍJÀwà ì\ øŒåâ5]b$7&Ñ,Åh¡ƒ1rÖüÇÂÝËØ œs¥Lü2Ãg4BæñÝõî÷¼l§â ¬ö €øÙ鈪 _JŽê„CÜ%L” `åmóK&³H¥ºßwz‡×–£ïuKcb^\Ò$ÄãZ_¯Xe m $œ^ìÜ «‚ôL­V’»$“aM°üÌï»r­*.qŠ?ßÒ®ÍôGnJId¡ß)Þ¢w¿üÝ¿ºñâó\þc”÷Î{ÕпöCy½¼¶ÛÕÏ#ÌËž³>rò¿Ê©áõà§+²•sÃì ËÒ¼cš¥Òî>匛Ưv9¥Õ¦=¥Ö!:«ˆì…]ö˜ø>î£p1ªcÝSߦÑ2éBv´ÄzäQ]#_VÜßc{måÒRÓÔ§Nx"”DV3r´¸Ð´ š]£Ôû}*í%Õ$#g$»©ž]œvdzÍ08XÉØtP¢p˜7öá$hŒþÌRšep@Y¦Î…ߢg-û¬WŠ×>î~‹¶jí+¬VGZ‡•*닜bâ„ÍŒXÓx³ïøå1{”±L­÷€òá „B•òâNj3M#Zª•Ai–Ü÷Raù¾˜–DÊ©X$’ñ —#šâ³Ëbq6ºƒÎIÕ㼈Áïˆ_ýš™¡ÏW Ùàiå>ÁguV~<¸’‰“{B•”(ˆ0R†¥n¸aC_Ñ«st°á9‡¦$§NZN¦xï¿K(%B»­焘Rv,øÐ']}VXË5öÒɵÅl»xߘj“ðJRËð/Ñ9¦šTéùg3“®(üÎ8Æ—ÖÐãá·ÂËù›ö9aïºX@ð}“™X?ŒÚk+ ’9xƒA̼ ÀTU½X•i,XªƒÃf\“Ë=N´F•Ç ÜLI%}rBÍýŸ”MнN=·%NŠËær‹:U<Œ0«­q"Þ¹p©k¥j²ôòœAWã´®ñP‚záÍugs¡EzAKÀ‰µ$î>CøQЯ\­Å˜]ÄäãU,cJ‘cI¼ÊÝóNŽj=ð®íÇx«bÏóXš“%—h?Âé£WÏ‘= •ÈÉ™ â¼ C‡%(IÐì~ùwu½†:/ÔRÀ ˆ²Çª4ŒeÔíFªßUä«ãå 6Ç_ÊVoþ4@œÀô«°°ÒŠð8X³ Tº0œÓÝȈÚâlªKA}à󴣊 Í4Üü c‡iR@ÂX®E¼Z;:îÐRœaEST!ÍM„«JZÄÎÇÜ«Ám”1ÍŒfóKYŽáºeÊ)mZØ«w”ÄŽe6MÉd‰[JòÇBƒHlÛ c´ÔýdžD{„™Àr"v=˜ºT8é°4$XW„‘%åMT“¯ŠkÄÚ’µ‚™Ìkµ  1¼Æ\ùòÄ2#"[šÍˆHTf]oK/¯ÓDûÀÂ4ƒ™^ŽH`ÖŒ“ˆÓ Ù:ÔŽõB4[„^¥(ül½îüÚâÝÓñé¸÷%þÿ¾þúÚË¡+ü>ùbœß™{uˆí ³›6äÌ2§l%"ßó¿nßøJ5⑈†·*´¤ÌËסˆ¦OðÆŠsãoÔ—è1¯êߢúc"’}Žïò$ù%ÖY}ùe˜Ëlc3g~d‹,+ð“/¿äožñ7wüqøæive³,›âcWð!³¿.ð±¹´f3åoçåB1"Œ–ÈÉÞÔišiNrX°:ª_’Œ î‹TÅàA—Zù® ­Qaê§QßmªLk62†ßÄpß6·©*¡YOªGq»gÛ‡\½µÍ`è¢pu·{µ_ï½â_ï1ªzÖÝ{Uÿ&ä64ÚÏ&úü¦þä`ÿ[zÁ 9¸éz<àç"Éõ­ý~ÿ„k&a&áàæêr}5\úæl‚d ›©d¶žM»Ý­#Ëù޵SEØ ®ÃÒ¦Ã@ +}«ÒgÚ ´µ µ‹Ž¬òÉIßùY‰?7@¹)ˆ]–Ü¥¶WR ‡ŒÔ]œ›(ð˪׊ø.UaÁi e%„¼yÊ´1èí8¯A.[t C­hó²ÖRM@Xú“‹nà€^Éi[êÁÁËHÑyáBÅ9Ñkz’DŒª ´´ k!—Ü ñ¤Ö€­Ðo¨ $¯bLªzâŸvŠg *˜œÆÊ.7•ø‡ºóöÿ§¨ñçÒþße c}´¢ÊŸ_zVxI‹L+÷ úw‘ÝZ‡áÁ]K»ÁL#¬qtF`/ÈY¨çÚÖÚj˜j®ö?æG· Oâ­ ~;$Oñȵël”qðUõ¡º”@š—‰Bµ¶ sîbÚx\©Lz¸K÷Ž•[à)nªÑ]±*+X§FF¶õŒK¥WZˆüpbÈñ§Íþõ@äuOrà2°¢ñF€ŠÂ“È‹g‰¼8îövÿÊc'{ •7 ²»ÿU,'v#@@<+`¤> ˆ múvžÌrB,rŒk#Ž|ëô³léhK^Í…!ì¦ðB`ú¢¦}7ËÆO4NÙ¿§5Kýį׫ÐÝ–ãÅõ[ÃiGcK ƒúºiÍc!Ô-în &ŽdF}²­à€˜VFëä®ãwt™O@™é`=‚ͨìí! Ä8J àÇËë›uB.Q—1Õœ‘E>*.Ëiâ<ÕWŸ©×/@Z¶îÜe¡Kð"ô;,ùýgDLN‰~Þ$m‚ïìÐçò˜?ˆû\_‡CŸ, ‡¢4¶°©×÷‡ÇqÃæúÆ›äʃUw÷§ÉY<~=Ì0"Û²—{Û_×nê:Š}ú‰áE@øï‹óø_ Eÿ€nœÁ^TŠnŠÞÜÊð+ALkg ÄôJ€•h·.d3ää6kÜŠaPPmÀ]ÐÂMàªCnro¸dTk¤˜rðÝyH›×[³†Àå0 ŠëÜp+Y]ßÀÑrhÄËÂ)¯2O(sOG!8t!„VñxÌÃíÇÏö*|ÉõîÑ aBCJD`ªE\'à+¿ñ’&JµñˆØ ÔTð®ÚtMÌdw´'°UbQ%)4lt9]‚%£¡D1WÙM^RIs˜|üEëD¡Ë¤èg§bZ`«Q£ŠÔ8¶HV¡Y\YQè—úyE~©Ä·ˆ›ÄI@0Ó€`­P³ŸòZÊæ©Ïð¥¼jè¢í5› »–Ù`þ-+ɨ½ººgÆ’ Ķ –êõ×lÈâô[Ã`ý¢K)$_ÀÝOöy\˜Åè¸|ÒØ‡y„’˜dü øi'B:“g[~­W3 J(‘ðMZ8y×^kª«iÚ©ÕÌ• Sèdõ8“l=ÃÀò$­åŠU ×TåÂQ‰ì±,ly0Yš>IïIÏŽïõ§Ïž=yöBR;“##/6Nº"l!)ß}jL„ ŽcJ©mñÀ·ÄFŒKÁ³†Lxnw ²ßÞ–U(9‚ª?(ÿFŠtS)¥‡2±¶ô ”Pܤ_ˆUŸ+w2I«Ed|ó§òòcLÜøl!ÊhÄÔ+ Ç„ùÐäÓsƶ¼9áy’,ngteÉΧüõ¦¾ž}ÀäH c:ÿ²Ð Ì=úðWoû#qÐR>ÞJN·ÒHlï’H-àxH 2™¸¬°ï­ ŸÁµŽ"Mq·ƒ,ú}³ƒ®Ë{ Q*‰ä!–\5uÄ n¢ÜClÔƒæTö¦žÈŠ&þY;I=·ùŠT!\3Å®DSÊŠÜø£U]Á<Ñ„5@kSKE ÁÎ5p‘¼mx‹u¾ˆ(ÅuÁÿ’<ùçÐÙΔˆº`¦JzÓåtלÝr>.ãD”|X7q:8 B‰0pBÔÞU”ܼ€¶I?úðíàðxw°'ð‰N"/ØhóW$ 𠲪‰ê0äƒ+¸v¡‹œ:âf¦Cìô©Øã÷^Óܘ@L{:x±ú!(Áà 1O·ŽR } €œÕ¶›Ðߢ)O»Þ):Œ&nKšU¬zòNM-Šõl€ß°KÃå’B§z/bC‚žÔ@5£&£A,½r8¡÷9ÜJI㸺"ð«;Dòw~ÒÑÜé;‚Ý꧉ú$RωڜBáHøí·\Û±svtòòOÃícuë7$\Ågb~åDF‡áØ\â¢vQÑIéÔN#A>}Ñù‚öÁôìÕf†+ ¨¢Šr¹3ë.F„ÂÊ·fȘª|;¹eƒ–”uB•›_'ÙRåõu1:Ƚ“ëñŒ*2(ñ¼ÍKø‡Ä3ñføæàðÛìäh˜½:8¬9)êñS-–üÂŽ.è1Ç­_ÛPEKõëôšfN¿ÚÿÇ&Ò×°òIŠ›¾‰ºÂÄ´NÌqvóË‚êhš¡zÑ |Œ . D!ºW »l‰T<6^^®T÷›Ê]n-ìº!ÿ„n~@ˆ».ëc°pò$Nù ¸ëÑ®o0 °Ôi7!!˧“í· fþ“ F' "åÇS àAAŸ¤Y9ýèŒ`f:äö‹×½;±{Qorש-ø9z ±jïeb»hPm9-⬿Ò©Q¨¼z…è ¾VßY•3ÓRäóó+.{¦sÅP(Ä$š)cÒØN±úì[+±šò"çPÎ !Aàša¹ àû}+ÿ±ù)Ö ÷›zçPÌhâ°þ‚î¹茿/¦ãTþw£ÐÑ›fS‹÷ãíͧeñpï£3šâÐpDÐÕÛ[Ïö0§ÒÀíˆ÷Ͼ”kQ š´ï¨”E7RêH…;p´.Š>9µ>uN4BýI^ÞdqEò‰â0ì—U$vЮ»#†ôjا¤ÊU–>¯Âá¼ìÚiˆ¯Â)x0)1?~y°—ºR¨]Üe•îï²w„ˆà4A Ê|ÄÑ-Îé˲ªN_Ê-Iºh²ZÆs÷ÝèøvÔ^ŽÇ¤QÝzý·ZϺ§/cÔof{ëXü>©ò H8Ø•£ûݰÞc`¦ñe·O\çï ü¿››²c‹«t:S$‡Ñ¡ËõS…öÎ9¦ÖaÜ\üw°5ýt¤} Ø¡¥ðœ¯î'.Dè/üa+Ü ÈØH.ŒhN&0=—-¡{sQ£dX”ó"²¿ac™õ­Ž˜r³ì)Ž-L.Ç5Ã솭#. …y ¶mÆ‘SÁ†¤àï•â”Á>°žq˜žÖF©K*#•8°1Ær»õ Ýô‰‚)š‰AZrMHKZ€ŽoCeƒ·»±…¹Ë­¬^d+¼„ À¨ˆÐŒª¤ /k"ÅLæòÌWŠM^ð&ÈÖ@”!Ðä¾ôc7v:íKR‡C«ïòàéø£´TÞ½ ôˆ£)証۷>ÞŽ(Ü ºRˆhÝt6Å  ¼¹JÿÁ~ÜÙO/{µ×%œ#H”@Ä‹»0¥vòðçC ÑAšÊ–O”êu燪5{9%Š]Sµ{wZØí‘çr-‘ЩÊE%Q>*Áa=9ž¯þŠpø¦vv |ÿìp¸}rx4Ü;8x{æ·ýµÆ÷wÒöèÖë‡;pÿxoéßgä‚9mŠnî°§æõf?E’\yŠfÁAXN¸XÖÊéþ¨ 1‰P-»’ÕôSGè¦ÐåpüÚÙÀise»;n¾œ ¶Pëú™ ]88Ùp=äȺŠúŽ] ×PmšÜõúæ¶Dq$ÄfÒ7­VZ—'“iK1›Ï3¢§UÍ£Q†—ƒÁÈ7¦8+*8å¦ä+OÉÅ’ÃZ6•yÍ– 'S Áz_Δ& ½“ê’>û1¤ˆRÔõ¹Üô ö…Mv·’‡o4Þ–©µÍkÓi–9~y'ž”„!Ñà$Ú¼± HÓoÍw‰  Î4uB¹\S_>†ØÆtð÷•&ÁIÖ„„å§Dø‹ñsLFDÎ…^µàÄ`ôÀEá­,t“òyÃZœk|â/—Þ€òSÈ9,làŽ6§·žÀ똦Ó, å€=¹@3hÁ6`M'‚#‰é.Lµ$•4NÿÅŠ¡’5™°òHʨb‚QÁ³ó}áÀÍ_äj•ú›Ü[7ù$¤ ñçqˆ#®H\3ÑÃ4‡‰ŒTè³»"$ØTì`R4âFk¬ÊÂ%¹¦W•ÍG'nMc»‘ARÙÒsÜ*¹£Rj–øŠIñhPhµšBÙÜ%AŒìZÆ_R)A~óLkæ–oaäÅb«%iRdAb]ŒATÉjŒª§&°g å} Ù| È@žÝ(˜«w™Ì_ßì­$æ•"ƒ“y»„ðÌ‚@H¢Œt›n nyh`3HØúá>æ5O1®ÊÏ ×%;K0†*ˆj·a–øœc¡dº:ëêÎÇFà>ä0Ô^Þ’ ýP5ŠF­¹ÄœZm7¯š`ê9ÚÕ3'V€·YQZ»©ÔOd™pý±‹Û¸ K!ù®áýpQ÷ £¹f-Ó|P:½3ïÆM¨ºg¼çˆý•fäEæ­ÂCwmƒÀ½@ˆEMÐt懚ù•;Â̸ü(wÑ\g/Öî›çrA$¢Å‡óâj1b-¡ÿ¹Ç)-Hƒ²¥þþëã¶>Òßkãî]›ÆA7¯Ë_8~hZ h>ˆC,”|¸ÆßG¹Õ<«œ3I Ï,Tpš(}š*g"]Ÿ3&Û‡}gö9Î/ÂMAª"ýóÑGt ¬‘9Rä ²2>_ õá,Ò.眰ùóÜÑQ‡•éÓXRϤþm¥?é›`ÇÉ:ˆ–[@R½álã^oÔ“(aJôC±e Æ2uH­ #hÛâåˆÑpÚ¨æ á%NRP%« S“-ÅŠ¤á&#™[3û™æƒ®"1ƒŠ=ןnž†7gmVä¸l>rO2k¶c®µPjwúu}ŠÑMÑ`è–Öìñ?‹Ñ„âXûo@б7v’î±­C{‚u¡Q¬Ã’1k½ òŒù¹ í†p¿€–Àª´5MÅ:Õ" /åCg¹“ \Åõ/Ç&I³üÃ.<Ô¼ ^É2zÛ×? ÉÀ›‚|€!{¶»ÿçÁÞîö² Ä.gà.°º£r«J ¯Éª%/|3¢Á’´<þ´ÍÀÖ¡ÓÃI4Ô_íâGç¼%JŒ©bê$TÃQ&Êz±‚"OiÁêCR¥_Èo %sƒ 05Áá3 Z…oE´ÚpÙPµ£k"1h¼Þ¸qÄ>•XΙ&ƒF¤9)y5`]$qÃè\%Czi!rîƒ^P—µÔßP“z@LicHñŠeëø]7Ÿ—äӔ׃ÝA. “‹BÔ#TDi:nZ\RN`( #ÇCD©Í¯b}!ØyÃ]ÉÅ\¨-cü>Ù@ŒÁ#ÈbàP+}G½L¼•fûÉTÙ—Pûʤ¶â ÿûrqñ™–R6ÿÙ§lþ•n~=»ùiüpTNØØÀ“­¨'[Q9â?BNQù1BмÙ\ì¬;Á®€Þæ×­Þ•7ìR¡-àרëX9cSA Á'ñ YÃ…ÀŠ/™âi‡õ3aF0UK?Äu*IXRš;›2GÜ=m×MJ°¯s,t™7T°¬FùÁj˜‹d3TØSìßùM>å÷9¾îÄÞŒÍ7\ãEÓD÷)ÿÞØõ(‚ÉzÁª|FÁÓºNU±«T'AJ?¢!_]…‚]º…(Q.çù5%Íó ýpàۃ⠂|}Y<Ç{.»Ïpª‘j:UXlįö!„ûL(©*‚¢°3¹@æT=£éÔ~M—s Œ¿ )nî^3z^ä ?TJ‹Ë,WaG¨·ÝÜ€dÍ^®à±Dç§Àxô•S $ T7H~ta-&j·á¦ŸEiB °Â™ZyDEÃÎöè—Pj5-¬!Yqâ`$<ððy‹cÉõRó’a§ k–uÑ«7[4,rωkL× º^Nã\rØá‘־]ÏØŒðª…Nq05F çr/Ìݦa ×PP22ÎdhhÝ;ã˜ù‰ò_ ò 5Ø+/©€Ò(Þ‘´£f:œ¬>'Éף>±êrmÍ_Ëónâ†ø9ùß™S’^QD` û§YŽ—'mº†‰Šâ‘u¥Y×4MiØZÑ(ú\ó¿\£·ð,1¼FJ/.…ˆ'¼æÌFÅš Åí1—Žt"—k£Æ«ÃhÑì`Ñ"ì_ÎíÓV:õǤtŠa}³×ƒý̾y=ÜϤ *.– ¶" }´,)ª,æ8ýˆÞĸ±^dš¾¬(\à 6$ºíïåç¸ïü1$:cGQI(íã1J?—›„+¾25^®P›Dß”CêûzÆ£ÐZnzÊÄï´ÉDy’+‹«Úgföu!bóG³ÆzÄCPŸë_…ƒ`=ÛIËG9(Lo»š•^­§j‹?uÑ7oR›œ¬N.¨ T…¤»À³£w¢3Ù„’êÝø}ŽÉJš KDGÆdaÔ+¯Œãân÷“ϻ҂,Ò¶h]ÌéR[©wä;ÊÆkíÙPN“û4Ä×8s‹ÐÝbÿ„Hž8h-§ÛƒÉ½MÕ¼Ïéœ×hÒÌ] ÊÕÔÙ»Á²¼ÐåÄVÅ‚–l¾œˆ3Ÿ×ùìš(¿P¥}Çî°4ß¾‚W¼ƒP$®Ukh~ý“AÖ•‰²9‚Á÷Žt~a{ i¿Ö%Ü9ŸNš+©1°ŠÁsí˜ Uo/UDÏC3¡ æW@ð‰‹ÅüxšÿkWô;xå÷K¸E1>É-Ñ]Kí_<€›Ð®H ÌÁ’Ñ]\2`VœÍ|ØlÂÿ4ÙdºÅ.`€e«;! çœe¬(0³ªpÑþŠAÊõŽ[ xÃûNDï^ǵð5Þ÷l÷:9ÌÕ}÷·¿|–%o–€Ó12O˜øS¿© ¢f6GÍ'æU…ó)6j?»öù]1£#Üx)JJ Xž™ï:$,xAhR¦yÎQ` (€ãC‘•F ± ²>:i4#UB¸äe” k’ZRŸl$*Æëƒo¬Ûíe‡Ãã“Ãý#o‚bÝöþN¶=xë?îdG'/éã:B‰–E‡*{Fì8Ã%úÐIÕ›æÌŠŸ‡D*ø_}‹_&¡.­)l†Rä¯Ü¨Q(Ñ)ƒ‹p{MmÔ.–èƒG¿ß]€Ù@\ßTÛ^)…ÝwîO~ßÍ‹»ìø'¿¯ÜÈ‘}Uê8ÖÑQHÁ‡çÊõm.¦«9¸à;mS'ëBÙrF%œ³Éìò®c 0É¥Àù%Õ40L“Ê;ÉòWXyqFÒ½ôŽÊc.²xV( ‡ ñ aj&› ;×’ôÒU8$’áè,’š¸’0ì=»¥Úô„E%xÐnOQÕð,0qiùÁß=Šð©pÏÅÍÛÉi4gÎÍÝ ÷0⢎h® ¿õGŸ~ üTääLt\E_K“°ÁÜŠ8 1‹’H%• ý· WcN,ñ³ôdôÑŠ(H+Dñ(Õ¤òM±hê§ 9_I«9 Tt-k'àøª .(•*u¸ ÚçàäWótˆ›"ÙWo¨ŽfË܆V=°:q S4=òÒpá$¸íÃVšª¤’(L«ÔSq*P(ÒÄ;l[šÂYH› êˆ$³X|[rr)w«³Z<¯R;,ÛZHKˆ‘ð/Aþ,&ßãZáäG+*ˆ“_Æd~ö˜H-cäÖèR\†`¼,½~È|¡ „Ås€8F`ãï6¾§rØoáÓMü´'Pz ï,dq{D’"¶Øw¡’éùëR ©‚ñ¼˜d¶t*) žEÏUÖ±¹øc›Ðw›W¶rl"Ô©¥NðcH(.‹Le¶*í³©¥ø1<5­%ƒ 9_S’ë°¯ÊË+dõ†\ì @²'.xͲòf ¹ƒ7Z:,…# e³{R 7ÝKöi~–Sbê9uðmö~ì<_èôk¡góz†Ôb;PƒŠ‰fhe|èäa¼W0“‘Õoö.¿SXCÙ}Gƒà"Sß]C ¬Š´N>Ä"Ç V™¸Ý/?ÏG§_÷²2ì=Aãéäl¥ÑgË,²Ë˧Ög ·ÛF:I‘Êbß'¡3€ •I¢’D ¶H<ã“á$Mr¬†o‘h%¶ ŠÝNeè;d^Ϋ¢g-k^´á¤PÊ2+ŒØ¶d§’]ÅFVz ( &L"¦;+´ê©QÖ£š:zà7Aû5Ê@]„l‰ðá–?ó¬ò´è¼ hk2ó]àÀ!èŽ.î´Æerç®òq(r» °Zä?çd°„ÜKfIަ2=i1÷Bq»ÛýW›‰ÿêàøõð0kâèCVŒ.r—0Èù»_;/p°[~Ž[jPe·ŶpjûÑ– P¨Z™H‹º¢lÔ`¸‚k»ôK¯º0ùý Î÷ç³›9¹ö\¢ä©½¶˜€z,¸ KOò€"¤¦Ô´ÿºÞ_3®Zì)Ù–à¾Ò»¯Û#¡¾ Ö÷–Üà —C »È°ÇÝB?Ï](W$W]BD¸)F@ÒLI)¶à® ö°…ô…³4ŸM€kmÄ1¨Î®ûèÍàðëóÀ T@SB*‘².…O£ï$¨A¡â¯Š©-ê?—‚ˆÓ¼Æ&±‹98•’iì+w‚ª‚7ÌpgcÉ WÃgÒ‰HYKx3SìÜ uVh2â”> §àg›“;Ô-§é›qJä¶¥}B䒱㠺҃ö±6”ªÈRˆj¶îKçMp¡ágQäé*ÂPÕœ(p¬«xwÊç†g7“Ãm ÙDNgÃ(°<Ë* ŽÛJZyqˆ^Ò>|>èu½=<ÙöÌ(;ƒN¼ø23)N¬ÑÈ]’[£3aÇϻ˴ֈÃDå‡<kòo¡Ÿü_/{ùßG½ó(ÙÞ„š:^«JLdéÁ€vñKZ(ÿA§òš²¢7Qö"gºÇ¹š3T—£eѰ¢#E‚e'dõ%èÆEÁè ÞwFÚ:ûrE¢£-ÌhÞ]k³‹51½øfN¾*°z™)‚ nÁv ë)"~J6‡fžµ”+)ÀŒ£Šö\Aj¨nEѶÅU€èmÍn¥üëÁþÇ  s]'ká™…?¼`ð÷‘ í„´iÌœ¥ ƒÇINƒ(¿ $S ¶†aWáº2½VÍ0d®Ô0uöΰRéìàíñî’~a)Üb¢h?!+!uºl«½Ÿs §Á^ËH‚ÞÏÊu#Ib/bÿ£Ïà?Ÿõú±ã<(Oö’åB#Ä‚E’R¶ˆ\íÖÇm=à&~¾0$¨l1C7DÊPQHMJ•B6jP†ÙAnSs½½¥ŒŠ=Y.ñd…'¯¿ )¥2—+ÔÙ‚µðÔ» èh_×J)šÆñ<óÖ†]‹NËàw°œk#îײLµmeÊ@w„¦w.˜Y¿ û¬‚A‚» ™WÙ"[‰-‚ûZãç¯Þ4º‹ àÕŒC¥Uش䃌j 6*„3VJ;)—=&naC¢°<8Ò³kÀH¹dÑ,}ä`è(_5 ÜàÇ,žÚ%·ùïä+BUc¦…ýzÍŠD€ª™uóí§ÖçjA6'Gб“j“kÁ‘Öh7vÃø}¡ÁrB€„ºk9kÜoA,ߣ÷$äJµó±ä9¢³ô3<Ë#»ÆŠþyÖP¥SÅJ̯¿ÉvÑtœkšØâG¹œY<²ûÏ“ÌÿȲ€QÉDËq’šâã ²÷ÐU™k¶±þ¹Á«†±¼ì¼|µ»-ƒá„°_à ?]Ãxeç:¿„=BáüÆ 65µÎ §væïA™M,˜¼eµ5ÔlæÞ>œ¾³Ð>” ‚îFÜ…l|8]xÃÔ:$Z*©T‹öì £ê5‚Ûù–ùÕR­¨Ê47@ûSÄ>À(+-Ë_—T¥Eê…u±ñËü-”Nß,áymqNÇvÇ®¨ÈÁ€ãÃp–Û_ø|\Í`9î×Ë)¦ÈŒOÆp©µ€¶¾À ¯ú PXÖ*úlð˜6ž©T"D7®4FÒ(K`Ü6­ÝH¿­›q‚R=G¡HpI´§MðÀ$"Ìæ¿$Ò!¤§ð={ÈlööNŽ›7;¹~]§ Þ!³jÈ7 É3ÜÕ`M$̉RPGš[[Yv°¨•³ÂŸfìRÀècÏ>,(Ù9O.¨6éÉ-&Ò“?½_z6ÏéÎðíñë=oÔD;nZT8‡Ö6.nüAA˜'Ü\èÕÜìëáàm­U@œzh»û@U®#ÉÐCyaѪÅr Jå&CTõB $î†×#Æ)ˤ˜áØf¨cÓ— ŸáœÚNÛžûÏ2Ýoþ“{ÍTü´l8ÔZj[#Úi ¤ñ°âõ äò“ÖšHÄðÌX_Ê×¥ûÑ–‰îMgg™pù,4cÖU9S÷¤Ö;T¬› Ô1ïgãQé‡w‹sæ¼ok8 ¥Sb@8Tëó" }¶2}3¥”m@YV}àí늴¼CJeç 0ðC¥\3 –Çá˜ô®60¢™I¡áÍð!°Qr“Eh@åÃÂ\r»ÛX®?*l]äXÚ >ËÍY„¡G\ôägc³šcà ~5’&áYá Œí® q^’üŽÈù‡l@Š-HVúÐ¥,¢ÞbN‘¢û™ÂGqu5<ÞXù¹Dl®¸2óó¥*îz‰6ªÎ$Œrq …¤¨ MR„¹obµ']Àa±¤œQܲfì¶; ž¤Ë—ǃÝ}âE;þåød°—‘áÍðèhðÕpZÝn‡ïüNÆS:´“í׃CŒ;Ž–0ò•|hð¯’6Æ%ɧÀ¯”B)ƒ>Aù_Ó;¾Ù‚âu쯡Ó\èÞ É{=Áðw¥UCÕ ŸWeû µÉ°ä•pÇSÉ`PwiҘЫ2ä9–ãñ¨‚1š(HVàŽ± ¬ÊǶžÙÒÕ°`£­hí(ëØ'D¢Û9¡’?¶ÁóRáãL%  œH¸«ž8åš³–M‡ ‘4 àÙF%>L×±/½¡:ÝN¥’±Žh’˜'Èk,WiXVÉæ“ 9fùÜŽUîT¤ƒ%¾ÉôÂ$Ü×'{Ë…t·}K™M@ÜkywmóÕ@ì²[nnmØ9‰Â3Í’ ª‚v9ó4‘3»^ƒœ9øóð0ƒR:ºqë3¢Á›‰|˜¢ø‰ÊZ»AG÷Šø9oâlscýé§6öó ¤f¿V· B˜wVñ»n“žÓo…(&eÌ‚½™/{H0í·Ï`œŠÑOæ 5–º¦§S'YмÛȺdŒéô‚Ú.¨@q-üJR¡ü=·éÛðr‡›ˆÙ“¤Ý";Ä—CÇ7Ch†¶ˆ{gB ¦--%uÿ¾—d]º©®ó;×Pž 2É]ÒxžQN¦'YÐØŠ¨eàn®¯h1t8øèH×65Õ y؉¸®uå#Z½cv=BÕ@c Vèü^ŠzˆŽÁÁaø¿QžSZ¡7e”hî ¬Ì #5úûáÄò…Ôô­ˆt“}H¾p5£ñ°>·Éjlº¨öC;“¡|ž­¯¯¿°ß’<5?Øxá"oWN¾öËwª»ÙCjÉñÿo¤ê„0¡RòœMàˆÛfû.kûg;ÿ÷¤³¬hâA_Ñýˆq'z/õö"ëBo?o<Ùh^äï^I¦d<® ©š¼™”Œ“›ûÝ¿ºñ"Ûèe?Â<û»È+–?Ñ ýß 1£‚4ôäßjÒÎŒ,û]4WÙïâYèõxèqŸ›zù“حщWB㦴^Íš ¦H“ cpßÒcs »B³} ¼è{JÕSÑí§T][‘zíŠiµœj;Z£÷¹¿åzu ¦g:Êó\Ü®;²9èŸEaÞÙ¼9S÷ÞKj¬³¡ZÐ=ïi _0âIzܲŸ<)0‘„p ¯»¸Ìý}D&A‘nÚ­PÖoÕÂ[%L§¹ð 4 $¹]pŠÓ`Àð##¤¡äcÀc¢ª‘‰æó-çõP'$oAÖ¿oÈ6ÏÇzN™”óºÈqC@¾ßF~{€¶ÎbÒÆ;ýXq„Mƒies¯•cD"cÈW«‚ЙF›3:<ЇRÒ.܉wü:ßW‡ØTOD© Uµ,(0âûs\à;CÏB“’U1É}vø—ãÃÁ„¾9Û;8øzpxp²¿söòèk´r¦‹?µÜª Äk¨ã•£ù—TP¢¹‘G õyòDÒO6¿_Wý†JÅVÁàS¨¯ZÍôÙ†ƒÉ»ÏUXÕÇ$p…Oü¼Ànêr± Àª.QÁdÓ ôÒl¼dO­”µ(£÷N 8iûá´Áî)É,Ì¡#·~;@Tõ›B'õ×AöÉtØÍÒï¹ šZ*&ñ÷ì%¸B]û„‚JJĬë‚3³þ‰SòÌEBLGT\3A+¾BOi/î.h᜗ëjÖ²ODñœ9ÖÖhR½š àÏùâ PÀ»)6[ÕC]QûÀ; òJ¸½ÌŽõ¡È1jÏñÔ@ …’uƒ¶v9ßÕ¡Ù.6„Y¯¯‹)W·E"…7B@Çoßm6Ç(-ço7꟥™FÐþ6Zõ ÈÙËo³ý“7/‡‡+L|-t;#Ö™ôã#-~Õ¡˜…Á‚ïQ=ĸ©ˆ¢©[@#ôéÔâš=¢÷u¼•ÿÈž‡®ß,~YïßÏÊq­ûÈÅÔ>U©£f»^,Ö8•C ôYjp`ÉjÂŒ$) 2€)˜ƒAµ!ju´~^¡/¼J†IjÀÖ€›ÞÆ×3!73HQÁ'ño ¤%ŠA105©\õÇXø¹e\&lÃ9_ÏqŽ+Ô Äs€¿öŠHÈó/ ñ[­Z7‚¦Ÿiµxj¶ë°ŸÇWqå]×Q§¨fì %ÂEïäÀ‚^•‹[Џèïd¬oETs4K3íÞ3p³Õa^ªÖ¤W¸Ë›qÎyñb g÷³Z#šN ÷¶¹íZËÓbÀW6®±rç˜MO “sh:±8௉à| ¬Éâ!²L7ìÁ×Ä»xÔ<±×7ó’]Ódzû°™õú±¡ÃY§ˆ zÌ9HB³Ø¥à¢'âÎÑ[!)Qhc¬;‚¢¡Ú×hóûÎà kË"— K¤×ÙDÈ„))T}é¢:°”„c.÷Úu]¹¢ÃÐF£ÚÓÒW Ï#`ƒ$õ­üQæÚq8~࣠À,Í[¸áL÷9¥Ö’Ûû.K͈-íÕD[ÆÚº¦ë›‹obÚÔ’qP#® 8b!+ÁÕ4"##š š»y²?øó`whc“š†h3À˱„}I÷½¹;AI{íU“Yx@5‹©;W"A‹ Ø2®$=<ŒH3°1«¼ø´Å¸ÿ×!LÉß!«±ðçÕ xx;!9CìǦ+t þta©púõc¸I)(a*u¼|Úîxd{»GÇÙÁ+Ì©x@j£ó¥¬°ñVž…¸ÐÁâo@äÞ—Š¿°#;W÷Èëšœ-:™3QÇ‚^ŽÒ¢à/a­Í~\!2qEl)t¿‰QzÙô˜dÚ¥à8{á9R…>kìØ§ùA7d¸{ö–Ïkw¼“ô+2ÛÁØÌ5Žã»4Àë‡T$³H[¤dib­¶õ TDM5öólˆº–h— À²¤!á4Pâ.l)f¸,Bø ß4Uï·¤K5Ý] Üx„¯)ã6ÔÝWWæYºí«IÁÕìTN1Þ=,d‘òl0™ðwhÍÎßqξC‹ˆ-=é¨4.[)é««BœHârb×€1ŽjüH•²;Ño( KÙ)EM3æsBj°cîƒs"ýÉ´ðWÍ+$ôÒõìn†zËÓÁÑÜ•ÅDJP3àLßb"uÙx‰‡%dÎÕW:¾ŽäLíR–¨®X–‹T(ƒKµJ!Ï ÒJÐ(ªH©“³‹7‰E|!2Jä¿©M"()P[È’_ >íîj‹ë†v ¨j˜*€.—eu%¸ 9ä‘,ܺJÂpýy`B#–P.P%& Gòkq¹PÄ™3þÁ>—Å|´Ç¤)º‚Èí±•?||leðfUvvè#uí fõ ^Ø…H¢ü eã#[žPsâJ¬µôcÂajà?+3yó¯Îùµ»ÔÌùõb8ÿ îÖ#8ÿ ›cãÏ7A?ÁEB>%`ô¼ªfç%AD±C(ÒêÉmÒ„ÁÓÍ?éº_b€õÇþ·^œŽ?é­¯kjAl¼àM NÁ³÷#´Ð–Úè‚wƒ åï¼÷_ËBÀvNÞÂÑ=JJKïRo/¿_Ah°åÕ—Hí¤§ÜÌ:pÈ—÷5ámËËë÷mfï[h.rï¶YËi+=d¬d\våö•çOöwÿãdØÜJÀ' ·©Áu÷Uù¾°fi˜rÙ~±ÃHƒ…ºôŽŠdMæqGãçÆËàí)f{ã¢ÀáÂ0¸{û¡ÃFZ|ãAÂŒ7½˜t_ÔŸ¥Êè¼àÌ(CK€—Ö£ïh÷P²\ÃqJ§Û×TÈ…ÞkF6E=‰<_QeMB4 ðµÄ Ú‡ìLÃZp¸VÜÚðXÄÏ@¬¡þ<éU¯oÝ»IÕ %mg…• ÕCšºHÜ}.’WNìv“¹²Š¸ íIÈñµö‰h1À3S¦É-Ô#k>—«)õJ|–Qì~ùw!ØD~X¿…ü›•15]Õ9EóSîGÒ£ùM‰ÍI†‹!IÓýiÄ¿ QšÊI¦#$²pDÛű`‰hôŠnK‡Iñq™GÈ@t“ …æ%U=ÓücØš‡HN0¼!‰ƒ—¤3i„.Ñ«á6M–Ä™%¡Âò*Tâ%e“F#Æó[.–(ViÄŸ%±ß‡vyí¿Z ov_“b¼{|¨÷:¼àÝ÷éÀ‰úd«uÛJƒ.ÚO¾I)q›ÓlL:l?û8]ÏþšóÈé%3¬‰Ê0vå°æõq¥n¶\Ü,I_ò¿¤†ç_³'(xϘX¹±X™ož)s¿¶Ë€—*°¸D¹8í¯©Â"º#òb&µsÑkQ›4eT#Lõ•ÖØm‰uÖ:‡Ê3#T?tãäB³ú×ááÁÙñððÍîþàØ|DlÔœþC‰Ç„å øƒÌÅÚÔͲb÷ ‘u˜%? ž}gžCu¯ áB­Ùï» Aê¬ÔorKI“Wt­‘7Uöáñ†’“><;¾Ýlß ÷Ïö÷¾%Þ žAA€Úå¡èÀ¨ûݪ†æAeLPNéÀ©ÍLC04ÀíuwÔ’gªEåäž³]ªZøÕÞÁËÁ+Vc‚;´ŸØ$ÝVñüDØ… žÏ¼ §Ø9ÃÀ\âH“R4\˜ß7'Qg
KË`^+h^ k}«Ò˜†p«Ì33oBí$ùwrH[*Åu¦|Ö”ž”Àó¥œÔ‹™ y¹YÈË•‹—©Â 8BRz:I=ÇëÕQ)L´Ø}[ëIý…ÞÆÄÛ]#/r‘Ͻh±Å„3$îw!—±JÕ²)."„ÿhHëY÷uuâÌ„!£x-â}ÈJÂ8¦jÀŠÜæóqµßù÷ÊIé…†{ó’{iVhö¦[¯Èí°›^pæP;É«›4ªôø›E°ˆj<ðRØÅËïn@/tù땜ª§ Ûúa¡*­“ÃF\0éÆ um®Æ>GdØM}O½¦ ³âLúŸØEœ_GJ^’‡ŠžÍb‚é3¡PE) °ºâQ‡¸äüĺf$”êóÁ;zùÔ£®ÈÑàÀ¨²zÉü¢¿É„• h\XIü‡"Ü–º=¶èB³‡Î©{\(°¦ »öÍfÓ–lÝ1)×|ú‰h b„T(\p\Œ%Ó#ð¢øÐz³Fæƒ~ÂjŽ& 6@ùÿ¹4LKJtЂí”ÛºÛ£´ˆx^Í-’kƒ“Y§¹ömå^wÀHºÔWXý¶cÙVJ!vG‡._C±5χÃy =C_àÔå/IÇw&¨’Ä4NÛ¥efÝUuä‰ ¥¾7QZ9Â×g6W¸fä+R·úR¼à13ø$/†–Ý0Á4Y2 ×MCs=rw(=@ÕüC(‡¶Ù …ÄÙXPØì(ÃŽi\°.«t„?Éåœt(bÐà²zŽõiIæn3Þ-ÈN>eí[”Ô£‰KAѵõsÞ§Xà`ÀÅùÕlFõYè^ÑWàn@Š€œâ³c™”•wU*"[œ3Á„Y.r‚‰S䡦A;I²L¶sMÚá®m;Š$¸×;E"ó‹âE ‹Ô×B2YMaßY¦Åµ4ÐÂ=,jˆÝP)w±Ã„ !S¿Å]9õö_ )ΤðÉ]0äꉩ¬ò®§èêªûMÏieS]õ~SÝ‚"‘@Ï=Õ*W\ºøÛ%¡zhmÌEÀ>´‘þEÙ-ÇÈnnGE#©d2M¥~j¯SÕsjÙâ~©—Š>)ð(DëÁ“e™{¢|Ÿà¿‰¼Úì~£‰5°,3Vêã$¦ƒ{W“‘ë—I¡Ày+VDž&>vK¨#lãp¾šùã$ÚÖ´À:_·r¹^áÕ¶j[‘“S°Ðx6&ÏØÅ⌔!ãœÍWß‘Ym*mú޵“h’O¢²J;èÚkþå†ÒNlIanÚn0á„G@XöìX\¾ˆFØPí@7·äæÃÒ‘£·T6oiM*š„6 kP8œÒu5’¬ÅÒŒsîxcÁiS¤ðµÏ´p¦0,ô­8¬ä΀14C‰A+<¸6áT-8FÍ¡Yç)ÿeq ¦'Ù«®è lôk›®m5>=^XƒpÒ”Ï6<‚Ã3Æ8¬]etæÑÆ.‰ I\B+­Mò)’í $ޏV¯V‰oÀ¯ûkaRPdÊUÞ.BJÞ9¹"þH±âÒr¶LðnöI!…Ö ‘ʦ¢EÀ°È‡Êq=;²§“AxÉ¡eJ(}wä+AâÇ0IB ðžkô8àåŠiŽYÔ§å‡$«u¯æ®¥šc¡™lýô`ˆEOÃn=ÿÌúèà ¥Æh)‰Ï¡‹@ø t¢¥äÃ"ÆiÜ3_.fp{ 6§Cõ¾®AÚÎ’+¨©ÃX!GY޵9{-u:®œpVÝÝ`ðˆu{cÕàû/§õÊ£²3d”¾öG¨Šô»ÝæÆ;ˆ/GÉG^è*Y›ú5Rú!A©§ø³¶äÊ-ï} ¨ ¿6w'@Þ½Bg×pÿ«ã×õÀô½O° ‰…V4ÀåÇÝ‚ù“>­ðq7Cnq.äõu1†Üà0ؽ .«`£ÜQÞ—öû»œ.)èy »YÂ(+xF¨€Ó‰Bn{Þ`Ã(*5€joŠ.‹4Ù|LW3\ýË»Ó'F‡äh’O$xÅq‘1$«nüvS‹Ò&]ïŸìñ>ÑÝÄ?p~âYÁ°qÃyiÁ€F~(9’„ ‰;Ì5-‘Ýe;ÔMNŒCõ‹ºèB» ªI^]â+2æ˜`fÒKÙqÀÚ]Mˆ4BÆâo~S‡£7LüÁ£~óãô§ÚïS+$æÜ†g7ðÙß5¼+íº" OþŸÖ^ª2Õ#¢Lò]ú&~ÿ1MÐô%-œ­l»~ ,ôü“•1¯ôÚEÊ--0–8#Ðî'ZüÏŸÌjÙ½Eäš1X|§æÏÌ'`¬Ey?¥Tƒ.›ýfËÁë!Qo=Û^Î!Ž`ÿbÅA<ºœK‘dên ù–k\"Üli@èjÈåÏlpréšuM‰ÍòU•yywÔ;·˜›Ñù<ÞQwHƒ<ê|ò›Íßlüfóe§“Î矌üã£O>ï$¢þOùûüè|^Þ,ðpúùÂ0BLîý3§Z*;ÁQéêÀ}W*RåhZUÆé’”Ž·°_p ¡ÿ7“é&o4Ú[!O7k䥭”¾~#„b­2к¢º‰¤o¸´"*ÑŒbWèN9gNr„c¿ÊP,òãJ×w©Ø5W’£1˜lÐtè-0Ié3Ï_öâûM²;/;¤¶¹‹üœ‚Ò‰ù)YLàÿÇo’|Z@ôçÔšœú…!ºíýW´dTO‹Û ”*àY áø@¸FƼ]oû°Ÿí½ߺKðh›»7±Ê x²ÿõþÁ7ûì§ä{Áì cÑðE¦-¡¼Ï¤Ü„yŠ6ÂÙ¼Æ$ŪW¼;6·¹V0ì®çy˜é&diHŸrðÏH"›%P­LýV à‘ÑIÚ*mÈ‹¼rvü¬œ!D´´GcIæ¤K*lI&zqRÊÐæg\½ú¼YÔ6nJµÔ¼^üµJU ç¡•D¶âÔ.MÛŒQ'5›&´n9G^˜‹‰0eR0}:.Ʊ°c7}è3iVMþð/ÇÃýáŽô‹¼¦cO²Æ9‚ƒ¦uÛl=û†å¸™£<69…8çTý%—0©ˆ\*PW/k€§9å­•8¸ õb¹èi–§ç Q  ü‡ÏéÓšœb©‡pZó‘L y4‰þŸ~øq<ÿ”-â3¼ca®y‰nËÐ?2óYÇÞ¡üÍ'7~dÀÐYžOÒ-g ¶›.eÁ÷äp$ÖȱᄂÓÿX__?B¸*‡*JˆæcI!…0…áÒ$ø!ް«§ïq¡’É‚íc/Ž}ôðPŽ#Tó"AQယ•XõÚ¨ÂJ4O –v £77Ê]ÌyÅ®4–ªô{iâ_4™A!¿•—ËrQ÷Î)¶^a–Œíí?H´ï³ÓKrWü<_jr ïà^$ΩH¬÷ÉàP§íl«{#0Þøl²Ee½ÜpìÄâ1<Á1Ô*D´VêRRÊb*u}ûTDOŠ]¿Ûðü”äUÅ1†ðë°óúY¸N(yÚº˜q1ó$O¿ÒU:An] eÊêÚ]ᶇpF¹ÕsȾ87ÝÅù:ܽ¼S+®›¥Oa3Ó§d6Ôæˆ¤MÆ¢¬ò/zžžÐIÜÓßÌø%³9µëâ~Ø#G}ð#í⥈°›&~–û™àIpÒ ÇxON¬Y:Hq H¯O—Ôþ„‡)ª™u¿;*u´ ½úx¾ê=_ã)NFK_ÕϰCM&t} Q䌟aß?––ß8øÍI?èŸ:Èß“¢I5»sQ-5-Yl2ÎàÎÇV‡åç¨ œ•Îeƒ ìx-a‚Ȳ“‰÷Œòx$8\ó¢­L\Ý¡Kßo¢ŒTøëÎU±·7ë´”:§ËÓ½ßlv@ñœAà¦óºðÔ‰ÃU,¥8¶ü*`ýœl¿UJr ›7U²ô³“i‰ù€%'’ka4ƒÐ.¹EªDšètm½·ÃjÍ­?ÿ*.l•s£“1&Nd€#–•ûå—wR€ÃÄÖ+zb}ña¡f~¨ç1‰m¦Ò'›ø½ô·‡fƒÛBÔ|  ž¢wÐuêÃÙɾò¢éÂåu®x€×åxÌnH ‘{;ƒÂ‹.Žê¢œ†Ú¤tHGÔmì† Êfë2áh‚lPeé„d-»€Ç;Þ‰.޽½µsz’ç§{/_žÏÏO‡ò8F£óóÎ >`à|ô­î‘#OS㕤pÚ}ƒ½ã³—G'150RÅ_H>~°ÜÈïV? ÕzZ!…üßê̇ÄJÕ–Ùf0®~1)>H•VjO&qÿã  ”w|Áã…âê¥×¥LèòÇéó5êúOüç'ôçæsúß-¥}þÃp,úâ’hRSˆ,DžHüäxƒ£“tÚ¢1G>UãUO;äþ9yˆyO÷‚(ôŇ›5á|¢È?'wBmPpAúd\”Œ 5¦šŠ«Æ¾fY®z£ñ&Ó¿ÆBÖ<@Ž :Ù„•µØÕúâÆÏeÉxi^ª–œØŸMÐÞÅ Õ8œÇaG–M;:ˆš¡`;öt/ˆz–Qçë^^¦ÒÅWJ`S>”äIÊàfë‚òÞû²;šïzƒóL¬g§Ù|þÉéÉóÓ½Ÿ^Ã&\gþAøÏÍç@¥9‘¡YóÕëáÞÞ…0]éâ0v½c,°G:æ"mîñr`«äÓI|$|"ƒß€§ÍΤL"YݵþJÇO¿¹®P…’s ‚„]Ngó¹zò…‹Y)gÐ ßà8xÞs†©T0=¤ü:Oè{Át ÉyQ$/·°cJqµB®(eSbòJsbý\‹P! Lç`çÖ:Mø60’*˜Ð?ûÜ(6±8,}×–÷ØäHkéB YFˆ½ÉÖðZëÖ˧Žw­u?„sOuBºx\—M[¾g.=B7lÚrö¨ß^ëŒ×ùš%Û!Íæ$hÅòÒëS=©¹Æ÷&& ›í‘ŽóýÊ:°išÂÈZ+8’ýGõ¦ˆ29ºs’LÛ2t(N†}O¥¦Ô«m¡¶  ± ¸-åÊ$ø.ÔI™A( Ô¥Ž=‹ËØ )‡õ$´ ñcS r ¦íbyôjõˆQËÂD…’•ÞÔò#sWÇO~FãŸG`š­IÍÚë"B=&€XFÝTלQÅâ£~†@™z¦IúÄ4)2­†³ylW¤e<)¿Ls wüûðË: B½ÐÙ#†lw¨O3S» }EZ[ŠøäQøÉÒëìÙ? W"]c.\¤V‚¡_qƧ(-émèVëR?v£äô‡$ ½%èÉvq†þoÝÀE)ßiŽÆl\p•c:Ÿ’á Ëw¼àao’y6ÔX qørJ™À?C( –gB+­ÝÍì'A[‡Icò&S«?~¯¾ »sˆ«ñݬ)¥¦ Âl^Ú¡þêÄT}B8‡Ë“„ê¼øÏâ<]G¹a³yˆþ„¤UjúXÀÇÅkÈú¿ŸË©Èg¸ “äM¾òÆ+•%’°ˆ“>»§°ïÁí‹~~¾pLôKˆM`5¶mѲJ!“ÓÄ¿fHI/ÏÁ“ WWI¾î`²V}öuQͦ*ÑtXì[…óÿ¼òóR±({Qÿ:‡ûJ¾78rð=¦R·|Gªlò%Ë=âêÒ–×·M¯…§CÓœþR}·õ=ýÎÓñÈhŽâ 䯤_šz’x8‘;]~ïWpƒÎUÒ‚ÔšˆéŠKt¦ù+U,Z'´@±&O“e1.9UI…Ý×¶VÐ ±°äõºÈh¹xÐe f¡SÀý¾©lS´™õ8li)9³T<ˆ_ÐîAG Ëï”*ƒÊJ‘›Œ;Âô{’&¹€¢¡ 4ì!+ûÞ9g±ø]ĉ‘ëîzVLÛ¹™óŽtF£†Â¼Þä%ƒ½â7!Ð3`'NÖ˜ ]ÍF§ÄÓ„o&¤é¤F€uQán¿¹ÝèF/`\oN¾ jä A±ó± Qó$lê±ñ…>DJêæ€Z®A_ Æ»>L8h—೘‹–Z ·Äe4¼7I<à*“ç‘S+ô­4Šñ´WzÍá²7×uGPxý¬ñfüÞ­1Ï@†õ.‚Ð+9êIïЉÈ=ä2OÓDmk¶uî˜ ¬YS.t2¸ô%è7 ôcŠù½ 0£§5º{¨œnL¶ïxñÍßpã¥+”xÓ&cH· äÙE>ou¢÷ú£í’êg'æf\a£„«ÙâÓšfîùa¿þ¼&üèÿ‘–Põ‘æËëbg¥9„9~mQàpB*¥?U…[Ìói¥v’dR¦Þz¸Ê)l?­Š)òç‚_)À&áq2mçBgš‚æºù^Ì×Þ—̘¼9¤ÊrcáÔ&Ê.GKƒb˜Õq’×××ûYçôôä7›~æÿꉎՈ™cK;$Ù^æ’»‚JÐÀ•æ ‘;ô±MŠ%)ô×ÊBeìö[¶Ÿ¤6Ç!C}R¬j^æÓ¶wWÄpÌY,[— 4‡D® X8˜yŠ{˜í²ö‡]˜K‰³:F&<ÜVcÁÝ1®$t°PÙj6É-‚Ó~BݰšÝ\¡M…6).¿eöpYAé¤Ý±]™îðN€«'¹UZÄ ypì–l†lwûÄMÊÑ(¡¤6ð¹åÑþYž/ã#ê¬XA‹¥xžŸ‘L?ú5 !ïѬ,ç7ò!}œQ$™$ ˆ—³›Å¼‡?ù‘x2§Ô6ÎÅ|ž}ž3º _„ÖÐFï¹ÕìóÏëNíÁÑðlïà›á¡á÷e¶<óº×ñl(ºÒyÓc™€0jÆýïPOz~ÿ›OÞ¾mzó ä?ý¢7sCÇôÀ†~‡–ÄdÊœüêksÉ?óF{röj°»wr8ìÂ7=)dïþ?Ý°î½ }„¿žÓß?5 +6ÔÁ€‰µÑ* @×.Á•¡€²¤‡.ÑvWðèJcq¸G¡Kó›üÜß 5Ã!ŒêD²Ï¡ÉÛ°!ŠvŠ!EK¿÷ÿ½7<{µ{xt¼ÞÒ¶ß ¯°!IÖÎdz1ã}L$ š8cPW¤jN~ϵÛZ›€¢Y@ŸV Åx1Ó·»¸lÑ$ž# ëÝÍ•!v3o…†$Ÿ æP)0i! û L¢Â1v§!žÆaÒÃìºâ&nhHJƒY”÷Kò¬˜Ý7æ ¼{_‘­7­žG2ºO1'xâ­À¸ø»Ô¿¼hœú¼ªòƒÙÕbµ5Yi ¥¸˜¹‡ëp5ü °Ù)+Dp5¨~ÀÀè.ã“ÄÉBâsœ Ž¥^Y¥G>$¿]*ù>ÛdI²%#’g3×8'¥ÜÔ‰ÙLÌÜEcWXŒÍǺz}Ù‰¡N˜…ºìºàA@ÄYSù½%‹ˆaÆpl§Ü1Ҥꫥú.¤?N M?x°"®´Kjg«\ çs¾CÆ5Ciѯ5•Ž;VzØßUìÒáJSàvÖ‘€‘”GtÄCµžèzªãQcqöî d®CJp{(@q£ã§r#$ƒàÌ0p MK/ªÀ“[·4Ø‹h“órBXTK¢« —";æñ5†æñõã} s_8ÃIAÎB“î½Ñ²dåš ¡–(äfŒë]=TMñ"#%S½¡á™W½]siÒñ@dF(¤SD„â-ô,÷ðj<ó¬7áëuåôœ¶Ín|,úyÀTXoN_;˜—צ@Êôðb³m±7%†pÄBJˆicµŒaqW+‡6K¬B¹Z|¸a6 Ã(†³ˆƒ—ªr)w£òaåÃmÜ×Lh€vNÞîínŽ‡Â‹™}uxpòé0Fv m£8ôÈ_ȆñêÀ“¨64~hMÜ7|XÿxÙOΩr¯É© äLiý ÃëÖ¢ ML„ëÙŽÒ^f)vIç\œ‡c% ×9gýy¹ìCÃî‚n\ .–\E}²6X»SNË……‰µ Ml@ˆ,‚wÜÅ೨:"¾rôô”Ä«4©ŒÞ,}¯÷/õ5 QA¾ð”“òlb|&¯ ²„0„7!'v*ÅLˆA¼.`¿ú[q×$Q6‰^…”pJ¼­Lê4•;G ¶”®8•4„RêU¹"ú ü¸l3ð cµEyº‘è!¯v÷wpo/{{pt´ ¬œ”·z” ޳ƒý!|¾ I‹±Z‚Ž¡y.ü)uö²ùs­°É'—3oâ]]Ãv„c‰g#üÕ— ÄÓ¨ŒôV8 ‘D´¥e-(!QUnsŽP9@ýâ'ðá™F„Q¶?ˆ_DÉ}ÊU ЬAE°…Áõ¡#3¹±²-]t†K3m(ð#Éx7YŽ/¡ÂKª€‹ èÙ2 ùª+ tÓ=ì¢üdr¡ó§¸ÐýTA7…Ïz¾WÊÃz«h)­Ýª™îç/¼™,+“Bñήé•Lq”Ûè¢ZƒPÙíÍQQ)4žÂÑ ‘| X”±b.j÷m<_Å(GùÅåÜÑ«"d$õÁ†Jãj·3Ã@gæ™ÝÆ™ ž@ ÙQú=“ˆ‰wM”E}k#+(R^I’¤–ܼ+ D8¤k„„IÐS»fÌ µ’Þ{Þ³ÐÇ2‚\—³æï$O \û$:wH:œaê¨(’‘ û:ÐÑŠ«ÑV´¾:ɈJveÈ ~‹ýnkã{®Öïëqöyíã3ruŸRHã´ÐØü\^ê(‚ÛâÂÙB}¾MQ”w{Ù£ÇøLÑvH:wúøŒÛâÔåonÖ^Û_ínÄO£Äu“ _¶‘(Ø+•¤©þç_^ûW£ 㟓)ý<©ËxA¥q„Ô†Ž2z±¾‘V¶o›€Í‰q6Ü |Høç[½ICINKÖÝ?8¦ 0CÝ-Š —+ ÈCjÜúQ¹H$E²M&œàåÏáȰ¤´ÑM®jÝŽ1ªYÂû ÛÅ›„‰°¶pîÒaûõÁápGlð탷ßJÕ"¸äÿ4Ü>Ö:¶ýý¹û¿<Ø3 ý_.üE¥Íñßgƒã£ãÁáqø<Ègoý÷»ƒ½³×ƒCíš|vtðJŸÝy58;ò=:Û9øüpˆ¯†¬‰æ§ƒÛýDý‘ Ü+½°~iÏr§>¬Ú‡0.“÷ï{v%&vIè¸#ƒŠIîÀèjï©œŽ dW5cÌVoLf­÷QêV£»;ÙxXb"þkÍpC~ VŸÂ|_ñ(‘”'Ò½ºÔÓ‰ih¬3Ì„ƒ$’cïÑ8ÎÊ&QÍ ¡¸ñAÌJºžBÀ"}Y”FŽ…œÓ«•ÐG(±gZ"uð™¾gôï)x@~æd‰n˜q§³Ú`w™R·zJIpÄh±Jfno‡PpÌiƺºR,õtàW—}”×Ü:Q „ >A.‹¢"#B¯Ã- έH±–7"s,¨-kUq‰ !u­Öª~[lÛ©Å6ðÓV%9:ÝVÉA>bû2¿’Òö”%=±áfè ÃÐrŠ——&W¨é(PÊ+zkêaÒvêm}Õ’mÁ.; «4ûÇÂ"ÊwÎ즺sN²F&Œ¥tØÛzÇÇ}´Ñ¤ÊM;Šø?^ÝÌ[ÀHé˜ÅÃCg*œ)&°„º€8f(e ÇÑjòd19?‰õ™«ê…:‰ŒÈp©cAêŒCAu*Œ(dn¸X£ÁÂSd•X9*XZÖ(åÞ˜ñO ²J×\Ϫ³j†IGá#cƒÛ„àWÖ³ÀÊÁ-A¸Ž%²ã£ÏøÄbJ­â#ÑS‰0•ë§RdXJÄî}R’бÌùY€ %Ÿy½º*¿ Þ9}ço4Dõâ^P4 $cžš‰¨ÿ¿ÂÛ?²©æŸKצ‚ìMz¹}Sž4¼çØøh¨X‡>ND°Qê4œ¬ùÇEt1‹¦ ©§yû}•u#u Ôð`_pK/áëò‡œƒšK*¥»išÌ¿* u…¤(@¼-@¯4ysr×Kä3Ü¥òD'?Ò‰²©àY†Å¹Ä|Ò¡&ìÁ ÕÎ`{MJTº²K‡ƒ¨^Á½m‰áTñjå`ÉEW¿ÀR8™uå%X1¾c[XÁ,±£_v0¹X¸ ïœ NŽÎ ü<<’¬0R™hÐæ,Ã%.­?ÈoÝ€v&UñŸSzݽ±åì4Ôàón1ÌóæÜlœt@`2Çê,.+±t:{ i"Š¥©·ºEk’l÷xø&8#4 jK6¢[çR™ºˆ»q$ÈÓhSSšÕ¢&º 8»ÄBsÄ`{æt›üüB? E¶9¡T+Ní 3žíƒý_e< ¨y``N’ö૨3ê°×úñ‰6Õî_$ñ!l¥ÜéŠEW"ÞUѯZ±xûìíî€[íg9Ä$)-Ê®œ³HÖ=gæõ¡<1ê;¶é»ªVcû`¾9ÂÒ»Ÿ; “çÅ´Ùö¢Û£½#‡Ãí“ãad¨æf Aª-G~É@º"ÙÉ(²îMI¯×K\¹¨ŠÉE u‚´ŠêÞÌË÷ÔG¤¶¡Cì>¶íPÖišXÌÌÒâÊT ÌÂu kCô³͇ „Ò$Ð@Šk${BÚdÒãçabÁ9¾¹±±!Q¥öYD൰øÃ6ÔËÜÿ¶f{ão9™Ø¡sïfâEq"K-‰gD¸céi‘û6˜Æ ·K‚i‰I­ìl‘3‚iÐ™ÞîàÚ`oK¼4m™Z[IbÇÑ’8ŽjI8u£e9íÉå‰>ûíä?ÀËÈ5Å„£_›=þ|V•äSm¦B-¦öã%Õ~ñçmƒ~’ Ú+¯ã!¿½òËz“½Î(&T®{X,¨X T“i‰x6~á·‘EÎÑQ1_žôóíüz4/Ç—~¡‡Óˉ?Dë\öÛØ§§IŸ‡Þ=ªeÏìc•³3Ÿg›Ìüù½akcë¿wvsG©P¿ƒìæþWüÚÿþ©í´ß8ÚAé× Žq9×â(ÕÊ鏸À>®‘ƒO2 Ö€òDÿ¯ýûÿø?²%3‰®ï¾fo! ô¨ñá'öá'æ}Ÿ­½Ü=îg›ŸÂÿfƒýìÉþçÞîËÃÁáî°¹½§¶½§¦½£×ƒÃá6䕹ãÝí{zfzÖùâdwû`gˆ €uxtòöíè„ Ï~jŸý´óÅÎîÑàåôRdOŽü”¼ò¦fã³°Ïþ¡óÅŸNŽŽ×v÷i&·Þ¼ÝÝ®|ûg¶…Ï:_ì¿ñïfÞ¶8øj_SìkÏýÑ>÷ÇÎß¼g§‡’¦ßøÌæF´_6:_¼ö„CýóððÛlopøÕP2„[šˆ·œßs{»o|/eÏù~œnÃÄ ¾6·íAÿWhãÏ~‰ýä×qtïààë—Ã×»~GGÃÃö­¹íMÿ×¾;l UÛ~LÙ1´% ¸Ó2X¦æÖ¢éÿúâPž³áËí¿ao5?mDÿ¯¯‡oed¯3ñ?ÜìeGÛ‡»o[†íLÿ—iŒO)6ûÌOû‘?0¯ü~[¹Ý6£ëÿ2m¾8Ø;ZÃݯ‹Ùðî\Z ¾)V4)î…q‰0E9«w >ZRô'GH:ÝF¤ñ´¸qR×Õ*Å3.( p˜ˆ:Hj{‚ýOŽ>`–­Õw˜#ïªbB€Ü!MMŽ|p_£1WÕ’1Š479„ŽdŠ¥ ­wƒjÄù­€;[è_£;Î釽&I=”²Ë.Nã™/§ŠÜés-› Nø«#& "‘)·ÊO_]r±mX@ر­KZ9³ VJªzçEÀÒjÔkÐ%ŠA͆#Gq2}G_™»q úr ÑKÄ ©„é¡^¬_Q(¯œPé6ÌyN¥HÞ.„¢ôb.Är’ àx#Ìã˜õ_~Nc,ÉДBY/ŽÆ3)´I(ŠxßCTlœÏÇÎOBàÄotžIÖÿx©*G{2†0ÃñNS—ýúcíI¶¶vULn,yˆ8rt%}ÌL64žÈÎlúxvqÑѵ$¸Qá-kºwÖÖ ò÷ó°¶æ¯Qø£%—‘*¢â“ÉyŒÚ ìnmGà@€n“ˆ›KÈõ«$Dñ#½X ~:~3P*§ €‰©—ï}*BPûA\×¹*€³Â_ÁPá˜wFô5f„ñœÀÿx#Î#¨éTèÕ‚^,Ì5-¿Q®œjæiÓÃféþò.ÌF®Ò–8¾ëþòO~&ÁþǬ«ØÈç-n‡³IByÿžk¿æsX/ ƒ‚êŒ~|-ŒÏ•#x¸5øM”ö ø¬Ç¯Ö> 4~ßré5ê7$Ï P +Æ5´„÷4 lóSU ìÇO¶H¬Ñ¡æ `9±eX~þG%U=ûùazª`)4p&"ÌóƉ`œ¼5xÜ¿ÎææaóÓÇð?O¶ ·¹Î…¢C­™ âd¶q¼m$ÝQå…¸øÒÌ7ZHFƒ,¾ìOëŸ=Ù™Ä ¤Rñ¿Ëg8M¼±s¦y ÜÖgÒŸt¾ ´{Ân µɃ{ln\øšðnÕ4œpð€‰RÛ ó §‡(SªJæä‡÷7ÊÙ^œeGL”†þm?;½éãMxúF¦ƒ†Å·Ào—à)3oP‰Z~±·´õEûc„1a—Y B„t WÍYŒ Jî-ºQã„I¨¹ˆ;¦À”óÍ~}Á·m³Cõ£§·¢Ý@Aza¾ëèÓt·ÚÝ„+¸Ì‚ûvÍ4‡gû­¢¼“ÖíŒ'.Ú·Ûoû&§R®K^Ì8¿pjÔ?ëÍöÛ¶Ä©O¿"°«i§Û)縉)Zl$ÈÚjuô¹Öæãö] 8\N½Ø—焳HA¤|ƒë®¼’Ý„á*ZT u]ŽÇ‚ø@5žÐ“Ä€i^J Y¤BÄäžã‚¼l}´78z}¶gŸ6®k…¶HN~N—Èƈ3¡fÔ`ÁÆšòN­mË%'êñff l÷x1` $ ãœh•ŸÜµl‹?$ÛâÞ˜uØòÎZ9¥Ñtÿ´{ܹ?WWª÷GkGX}¿g‡u-é$ü§·BlJ¯i/h9¨)!&¬?¬é—zŒD"ÀU. ¤¬8'è-Q´!ÞÖ´cû\_–K³ç³Ù9¤ß®ƒM Ùž³åhÑG€ï¦þ9#2Z#ú²Êü\©šgw·ö?ŒÐb½`ž(8_áyÈÅætbcŸŽ8|°T8¢à/Rµ‘à%0ðRŠª ÷ÊéòþD5yÕ‹õµ0k”ŒÌΛgÄìY„p)ί¡ìȹÐÞ/ƒI÷È G$á „ùÉÏs†X’ïhr÷øOšïÎ{«^q’*L¼eøÛì]~{H…US>N0‚KI£ NYÂEiwU@köèܧ7‹„ϑВ„²Ò,¿’hXÓâ·»{^­ ªÖ8!¶¼È\¿/ÑÐÁGBq Ô×´¸`}à«°ñYò¡÷½¨Í„º|žÏç%d„ ÉÊö¡¢0ö# A8ãÛ×Êjí|þÖGt LÛ›\h‚:ŸpU•€ÄÊ:•ìØ¯MG;¾¿Z¼ìdÆÃ„ˆvÌåI3r Ž™ ‰ù½»fL8Ö²íýW0{1ŒÿŒ¡µý³~ÁS+½¬úÍR"šÜÉÅϘ^ÁÑØpˈµò}ùôξR¸ËÑ¥;Ç«¼³Ë)Ô2˜Ê.²eB*?#}?hôãäxcÅìñÜNøz6`¢›ŸÓ_éëê^Ša!ûD:JÚPò­ ÃJ5â^q+8O‘íJ)UŒ—øÏÇY@L@’9¯ßy“ô“—½~öêz𮳠DKÇÏ·ýçûý¬ ,89ôÅgÏü{GY—ûñ9¬÷<ùdkcë3!¼÷?€o.ç9ðÕ$¿úcOÒ°žE.ÿ•;]N7Áþ‰ï#[9PUÚãƒbPKÄ¢À¦h…%À¢"ñ­} “°Ì7¨)6B¸\„ÛÞ75÷ p1EÁuŸ…ÞköÖƒâ†A)›²3Æ 2=ñ®CôUÍÐ`IÛr‡¤d ‰Í÷+Yºœ’ ‘ÍÕÊ ´zãâ†2щI*9Á¡ ŽÎi.'™ýp:‰Wk[fTÍS¡a÷@‰„éeÁÔâ¾~0ÒÔýA ï Ù¿á³.¼Ðص¬ÔfŠ÷|_hX·oz± q”1â8Ž©˜‰à`AÃM/Ð) j#»ÌbW4þ 6üzr”Þ¯ªŸB‚Æßq@7X,r=pþìÛ}Å:òg(ã ‡qLÇÁ?êµÓ^sp¦RÜ„¾rH!­ùuþ¡¼^^S™i…éŒ@8‘N?}šW°B0…ˆ¾^x•)i1cOú)1œÝey™wƒ:ÒRxR*r+f8Võ\ý[‹ùÒïÁ”*ß©»¥ÀwXN“…WÍØlŽ7/þá\BÕ(¤ô%»š=2æ<þ¾¾ê5˜¾ÏŸ|Ì­ÏÄTäO’€ÛV?{‚§ê)U¼ÃˆBjü¤O8 VƯú÷àA¤.‚7ûƒÒÀ7EY¡q ””òSÌ•i’ÃZÁ§2È·?™åcg‚¤X6ˆW›uákí¾uÅG»¸2Ì”Œàž 8º·¬pxa~ï;•Î8šè—S@wh“iæ½IÞ±©á: 4‹<çf\FMhör=]‚ûWÊ`ýi+Ám3»YÏÞ.ªU]ƒG§¸—Ï!Àˆ>·kø”èÁ¸èBã~Ûžó9‡ «MŠj:O{^ɲ˜…½Ëå»^Ëj07ó›217ý'-nN|©¹_67²ër2A½‘DCY%ݱGÐÝsq|k8¨ÏŸa]ÓÏ ® ‰",8èVLÊ´Ü™£Ý34œõÛ.L—uŠAéÓ" LFÂ*¿rç¡^wUä7R;ÍʳWwºZ]ì Ææ¹á£I€`¡H ]öUôY7,n ’EÌnø¸Ìðr!ך5SöøáêX+¡œºwå¨Ä´À•aŒÐM(%$R^¦Íš%›Õý£6+½¼ëe—ÌrŠã oK7²±Ú±‹êç¾÷e ›7ÖàñãTàºû÷¿Î¾._FÓ$»—$fN½“C9mÞ_6Z^Ǥºqõš‰¢Ý!h .¿ É)j:椑uîÂíoú¸¸ý@îèy8Oœ2x…Ij~xþ΢]ç •ÈÏ7Šáž)Ò—Ã%<¿½6ø a 7ÙNMÓRæñ º—Å]`†~É]`:`*¼L²˜fÄ@šlE‹'âDÝ\!×p|Ÿo~¼\¤~×Uvsøè—ަz.ˆ°É7n_[<'KD‘ðW tx)¥Âµ­JçR^;YK•€(z˜S˜¬ wS~ý¦Seú#ÙÊd‡\—¦ë{Šº¢’¯ð!3 ÛÝÕ˜(& CŸ$FÈ+67ÖŸlHúµAëü hBÕy;ÖcRãñì°Šß Ñ¶=‹ 8¢r¸èP(nG‚ë ‘DV`§ýndLðÂ{1»ö¶a¤ÑjNfšŠ ´—DR$÷n›>˜&ï|ÁžEðWe4 ˜f=5™D^ù¢ù ‡IX0„‹·­‹¢æqÚ†\9–M7•ê ŽŽV¨ß¥þû{ÅV~}ämdñ7£{JÚÂýoÅ×Ö³gÎ"iJ(~È@@òé!wÏšöDgÄ’MÁ^qÙ£N=º«Ç- Ø7|5,ñžE»óÎÑü˜ ðEùÁ¿×°ò†uA6‹'+™M"ÓÃ-O@K*‰è4S$ä%¸a ¹ZÁ‚³™æ0DAhZd†Š#ŽÞKlæ†#¥”v›C‚ysÝ‹ð[Ï>MyU¹6.®7Së&IFX§L9óóÇ’ö½¡×Ï×á ¢#éÂ-b9šÄàh{w»[!kd69ìçųÃx7²ð4•z¦Ó™€“’²+q™<ã$W“X-¢“žWH EÂI¸ä»ÄQ ”=×døÁ §Åm<ÁóSi·Y}˜ù7ãu ÎP· mSü›½¡tgÌçlL‚w%ºÅƒT© :ž©©rçóY%GíD.òæ‚¡ yŽ +XÛàz÷ûnPÓñ†Nœ˜qÕ¾4òSóÊO™5—¦$‚ŠæñP&DÚwŒø¨8³y œK¥GuD’š\PÎùô/ª¤îߊóGïò»Ñ1{pÕäдÐ!²“ÁÄôq¾rŽ):íuØŸÏQ’ÆÊî´ÖíOGOB„9?B«Ñz®íqD%Œooûl°·÷ùÅüìÕa}þÕcˆŒ éÁÚÈ›-˜¬é”¾%1k .ºˆFÌ)¢x¨l£˜)JÃzT<ü ç LJŸÊ-qxœuÈÏ 7\ÒÓ(“v T’ÑIiÉ‹d+ÈÂãÊ«ðm•óßnÖùÄ¥ÃØ\.%0¶ÈEà ¨šKnIʤ%Z„@ò©7ß*•bÌ v'ºÄh Îh)«Ž§ï$DÓóºyàZ²uƒ}˜ÊsÇ«Ýw~¢é_múfZnЈ¾^ÒR²iRýT’XÛ—”Ÿ6µ]4Å›²/o?t7†ÔfC£õU7ƒ‹S?Œ“0W lMpÞ³²¨GÓüÔSïý„ìð‘a¾'•tÝQ8ƒgÂŽcE C1:{[áççR›âbÔ¨Ù¹Í÷Ø»éì–fZn5šå†NƱÿ›Ý—o틆imrz)¦èÉÀñ†ä ½@Qö ôÒ) ²?Ÿ«ön’LŒ¢‡qPêÒï+”!„ü#†Ã & ¼Ó4AªºY¤‹°†Žw?„5Mœ3´ â,âTe!ñ“¾ñfãyÝÜxú‡zwýü] P8ÐZ†ଢ“eu-Y fN %nB w œbzÙT ÉÂqÌôÇ›Ÿ>~²eÂsBýEþ¦!à‰ò†ß£…ÀÝ@…˜´Q躣_1T9@/A@Ü(:Þ¥)LHÖC~×Ëá7û5œ,ÁhO¼ÊÜ3ÙXS®Äá𤠨{…¥Ñ˜"z´Ùy†6>l>‹j•´n0”!ˆW?9~;o|Øz¦ŽºlwêHŒÇÒì.œÔÆ,EÞ…Ó àr’)Ë´ôHÑO9¡¢6Ħø–,/ÏaŠMEE:d"m|Ø@Òÿ& xû=€ÓK"ó&Œßv˜•~6Òšì½"¾1G%eÊÅI(IQzGcê3‰nßÌÆ‡Ïž¥ƒYTKur’a ÷T_Ë›S—( h‡üÀ:¨•ÀÍ÷‰¨ƒ{]Ùd6Ž˜[™éànˆ7€.Œ(ŽP<¨ ÕÓ…g©ÏâMÒs¹•j=Ðí¬©Ö×ô»Ü“rE!Áþ÷?ü^CnÂyÃßëçì…r« .h6\¶ã1ëYWï?#tß`x»çm©P=¶Þ3g‡"lOŸz&X^y"jrYÙ.Ì-âïÏyq Ù1vnÍ•Àd¤¬y"­pA×)B?GNu˲¥MEl$â¹íÀ}â~.±Éº>.ªE/‘j¬t(si3î$]OʦmQÇÒÒ±‡ƒZ5¥üÔ«Z¹—QR0ÃÔV\g–”{;Cª…EäkV_&_Ϙ×v;CŽÖê9úq{ ÔŸ8 øº%‰D†­ìbpá ;mÄH¬g¬Á\ñ¦,]ÐÚºœ¬P1Öê6qZ³KìJÂ4+œØ6oü‚¯M…Bà|Ó ¦2sB¢w)§`.‚áÙªÞ#Z:a¯Ú¸fá‡I Qž]Áõ“ì¿´’å£qК3ÏjûhÞ*œÂòçâfÉØ¼¸ZÂXÍœXšƒYñ³ÙsïÉï¿~ùS#¾ÇúèF ÿ½;Èdv9PÙ«ý½ÿSŸ°5þ&9-¸o® Ç]·~ãßó1y9U¸H§€|ƒêóðeR4åZªX™ýõV×^϶£´â3Ûïs‡V*ƒÇ´í›´Ô¥뮎­{‚€ü§!L;Z^ðM~5›KsçÖŸÉÙmGœN„›„§ h¶§è³×ˆ¿„sN³bÑÓ¡ˆV÷Aù`XU\m^ó½ñ%ô§q´]kÂ$ò·À¢ì&FÛ9Ü- ¶û¨SM^÷y“àÇAqpɪ0à«tm¦š²ÎÈúâé§Š»o¥"–ÓœV©| úd8à!º‘Õ@¬ 5 !HeÌHoûàN=8RCZÀøV€@ठó^ÿô!¼ ?Ð¼Æø€)dQ±}î¥åÔúKl~ yñLÏ W])Z÷Z^š$N±ÊÉ ä•£|wÆÛBŽÄ²BP>fÿÃ2Ú€Ò0 ß«¯Þîùé;¤ä1%¡2n‹Æˆ ´fêÌñ´•”èâ}¡ñ…8 qJ«–\Ùpò÷³rL.XN Û™ëWf\\WHtñòh‡š?·®‚€ô±j#Y¶ÇÚ$^é¡BóÊ}ª"Æ@èí¸Š¼YÁy!V’ç–Ñ×ÂU«Ý 9¦i6rÝ3ᢦ»Åº×²Ë ª©¼žIŠF¨—h‘1~# ‰ö8iéÌ’jF^D 3íîþÑñ`oîX¦šK÷V"Æôà£Ý9”w‡è? ç‚%àRtëi¤ö•fÑï!BU€d‡\`lb¾ZrÒ¸½0Ø,P…ÍfD“åœÏnæPT¥î±N k4Ü=T÷¸2 ›Pó½¹=ôVFW£TëöµºSâ #¹!Û…ÀÏîË£Ï;k“)Í…vÒ……D ­GÜL‹IV!7‰öºL£ååƒÅ´MÕ†/)R8.Ê›ŸC‘ŒûH?[Pu Üå HQ]ûÀéÀ^ó6È¥­´LãøÆ› O_zszüàépT¯~/éžÇç3tÙH Ð÷Íß9©ÌæÈÙ¼¸Ä¯!kê{3guç‹=Ý”SãíL,ßú”cÇ-l†ÀQ€?«„€¼° Õ”5b72žÈ¶yM“ÛW >§ó9§˜¸Ô@¡=?U–dæVä%¤ârðò7Ó9(PT”ª(:˜ùšsµ,‚¹°ïë(CX–E9J@ß®˜¼zsýSdCÂ8œZZß Ò‰m«•¿ì¶YBk~g.Ä (hèù9dž¥ù9å`…Yíñ ‹Ë½‰C=™.ôñð>G»öwœ¼‰#h‘Üs±­i&VÀp¬ •¤3¾ííÁöëáaj ?ß”ÙK°Z-NkŒ„ü¬q_Ù…™¤ãbŒ¤¶d!íNÅÕ „€`…°‹Ç*ÀuȪp‚Ã=ܔޒn r8bÈÓ¼ü!¾jܼA¾Ù-L!¥àw´8Aè…k¾åbÑé§r ½° ß0BE‚Co­èSg½y\ôšhtPáÉšL(þbÍ@™~Û—ÎÆ³G ~Þ:âoÃk ¢t{Ñ)Þ´Qéwm­œOŠ|ÚÔÖÜKÚ÷Ü–2 ÔX’1°1ôGPÒäTð®x?þ°ííZ¿<ŸÎz+{Oíó ÐIu# €¯œ©à:uu´ðHð«×„À¥Hq å¿ä#ÝJSt?މ ®ßÚþãC!ðØK‰)Âý@ÐÀ`Uî ¥Máá{þ Âîf1‡„3©íÔ¦ôGÑ˫´ÈàPO¼¿\½Õ|pÓ¾)!mv±Èþ\âMt´ð+5CkØïlŸùèÎÎ2Ê¿Å,S4_‰½J -Õ6xaþ ZókóüãÆæžëšâ~ ç'Íï1‹ÁÍIÃ:ÔÞ)¤LòòZRú`Þ­¨qÒ~21pí5!‚so’.Ö~ÐÓ æœx·úf‰™OeÇÞèÒŠ™S¿] jùoXö]Žò\ЯMÊ?¥…ºuD‚ÇN/†›I¾€Ûvpš¯ÛB}mUÉËÆQ†’£rsAìíU¨ˆ]àbùÃx @tžM)‡¨q~¸&QIžÖÁ˜«‚Á-Òò!m„ëŠzŠ¿rÐõÂö?E‘æ¹ @|h˜+B0¼™_¼žÛìFº@KPsžÓ]•àA«£êßúÞÞŸß¼ò óc?òƒi± ^¢n½OòxrÊ`&¯µ&œ ¹6'Î £<~ÉÙô2¹”.¸…@î©|¾ @Ε­1AMÿ‚còKocÊ%crêšJE F;PQô{\è Ãà!øæþO¨@ç/GTaCYÕ.ˆr%úâñ¬ðîØÁ¥ ¹Ðþ’Û*IZ†PqA©N Ê·–eÅ…Uˆž,§Œ¾¤öíê"ÀÅ ¾lce•¿£åäb¤]‰`¢ºÈ'@wnÉ—®ß[·èÂ)—ð*û#Úx h¢Ûé9»‰äòŸ³wªóy{$Dô–\’è%N6ØHÖÛ0Tù‡!ÓÜzä±xàZW¢¶PÀTU£åNESšØÀ­cLÅit3Ñ:ÝÌË#.Z¢ëÙÚ!8}˸ÞRîªéV·Æ!¡[ª;@ ö/|ƒ$=ÊF°cøÔkZK¤…•„YØ»žýöXþ%uV^ïÓQ>H~Ä‘úÞz-‚£Kä)å)]£œ¿£moKz¼r€bFr c óí ø5÷X¿4a5o.¹FTµkd\®¦ªÝJÕÿ¨j·Ò 胨jÿð/ªÚÿü»ÿ•“7~ìjþ×§ø´ÿõÙ§ÏþÅÿúOø×Îÿ*Aÿ½ °Ò‹qÀþz°Gßî¼=Úma LØ_w†”«×Ƙ¾¾Ù=ÂJŒíÁÞÞÁI oeÊê þ~ ÛÝ?¾l7s:¦4®‡Ãã“Ã}ˆtœ ²W‡oV¿9¥r•·÷OÞ ­ÃLi\W°¦|­?ƒÓЮP¤|ü»Ð&ýîß?Ýx'dýÊÿ÷Ö 4tkûŸ¢V÷×Ñ)êu£?ÏF€œ=êgçÎõ¸e+àV⇠LPõ›¿‹ªò-ø¬ýïò ø ç¶¾È2ê |ç›­¾Oû¢ÍÖzeZ¢O|K^œŸÃ ›²ƒ¿‡S.ÙÎiä/€Àq:¶Ð:ÜÑNTáCåP 6Škoäaݲú0.û2e¢¨HÀ©ŽíÄ~réc¡‹&ÇT-4pg0˜¯^>;ãb;Î #cç K¢roe\ö³!_zi|"J%á·.G•¿T–‹4¥«L˜U®^gaŸÙ8Fõ?×_b–\Hr-…çB1¸+\ùkâ2½ˆŒÕ˜•+‘§ç~ÝÄ×4Û1k¸Ú>0“(èzóâr9É! ¹kpºº_n£Xð4Š„ž"¶¢ç7A¾àí‹á+Þ>.o‰Ÿñœ}F;Z´'“ÊëB¥„bÌËÖóûŒ+üÜžjÚy=È1C̶c“TñË ÔRc‡€çÔ9À¹PùİAê^:¶¹wòõÜ Ó3ýŸì÷Y'û[öÛìß³ßd?ª€½”úœdëaù ³cbë}¶/Ñ“ø£¥xljâ'Qjß:EwÊLÆ: ýÒq€ŸHÖµVÈ-H‰¡Æ3ø âµ .K¿C6{ùèÜÿo]^N>• p.vHiëôüj˜„Շ΀°ðLîK¶¹G¥ ïÇ)Àrš‚{và×’J4¢ÊBz8DSÈCG›gëÙ³¾¤ˆà!.ÁCÁgSI/Â"4d–@„7 K‚(’7âD*ÎxŸÆ)þk­ðæ÷ê”ü\>é½Tw:Á$RÒ*ቖè®?Ž]?¸?ËI¯ÉLòîw¹V=>螎Üúéïkkú8ˆˆ†‘$;åã: ÿÛåÿÅòÿÿw-ùß^2¤ý™_õå-ã“mÊ‹…©Ad[\OÐÕ3ås=P2$ãÙ>‡Z¾6ÿF!7øs®ÈTàºkdÚÒ Ú¦p'4æ-9mr=;ÂB™,˜,Ã@[ 8Y-xÝ/ýÜýÑOàç¹?©=þì·p:ë¿ø·ÏÇüM’L# :¶0ê*ë¨;qo^WÅä}QYŒ\F ²÷÷¶ÜR[’kÔ ¹Lû­M|­‚o5¹W%/V)Ÿ¹²þÿ BnŒÊºaÝTÅ刦4¤ëY­“æWTÛ¡ºcÃl¹z2®Þ¨W³[g·¦úD°ã¯Wxªà0×`\‚9cJ!Å5ưábŽè1Â߃‰Zžãµ¯ J¢æl²É‚ækJ·áF½Í¹£oóû¹g¹¢üHÂ?—摨¯°ÈQÐ~~¬N6æ b)“î\Û!ÈæqÍr¢3¸¢ÍÖ1>ùé¶× tTñI€/â CuÅ}‰wòø¹¢êdÊM^bµ$§Dc¥:E}†3(c¦2 ªÖQ@$7rþÉw£óïcĤGf뀿 M¥¶Ãxû1­V,²¥AJ?f!¿¿í-ÑáaŸ×o0-!¡É¤a¸Nîÿu2› »¶¶†ú#|ãÿÌ>ÙðzÿË?ÁO¶ðü†â?ÛçÈ[$“ÂiÁS‰cRT-œ%¨Õ©L(|:KQA”}âº1WOÚBy aN%" È6bsÍ–Ç»åMî€vªQg}¡îJät • Œh´•‰†6š9‚hÞ ŽÚ1@—XÖH¤0SÒR‘ˆ1eˆxUh‘™S üØ/\SþŒ~}ÆÏÚϤ¹UûåÊmÀÒcnW…7­/Dˆ]~éoú¾b¸MÇl¿âÒ%l2t¬?Ê– «yôˆˆˆ§‘ÈËô‚åЪo‚ *º¬ÊË)J$°ðHMuèTÚ;˜œ^r¨Lü ¡ñlaQìàŽ’âê~¤ò–U CƒÁðmý=X2] ·2ÿù”,RT?Öò5©m噺†¼ÛS†’14e×µ@Û‚3èñØã-c©zKI4ê. z ×7÷·®³-a¨x2 蘽ˆ?Bo@âãMW’ÏóØ ©øiI©ÈÞb'Â<@ :pkb±>¨{óÒøÅÁ#èØ"Ǭ™…ð½8é‚°=Õ”Øî£·‡'ûü½ûèèëÝ·=SlAŠ(-¨¸àBPðF&:²èÑ5•¼xýÑé8º³n›íRÅ›®Íæ~äÜI/µf‰Ë£õG±”9Ç&ü…¿¥Wjn%ƒc2‘sµWÝ¢bÞô{68¢h0oçl>fe¢½úe‘î¼Qp êáÏéÑñàoñ^‘4—DÜÖî‰ÐzÀóü>Ïèﳿ=hý;Z»~˜ ^¿ª#Gýz†aeÀÅùv%ú5W_†L3UÁŽGA¹²æêtæÀUIØ1Ò•p$ðWðénsýÔºQ™»§á[z?»{ýuæo™Î”_úk…P¢­N‡=˜9«Nº!»ÉGÞ°|Ú;×:Ò—ƒŒ×^Õ|ÎÑ!Å‚Êzó:€ßGF¹K<¬~þ:ùèî–Héð'Í?açZ_Rlúû‚ˆŠ·Mu‚mެˆ‚l¤#¥ ù÷ñ} Os†—ï*Ud6ûióQq%×S¶.D;I‚Å`öeºÀ—?Åêà÷–§³GW&ÊX'©D ŒñMÉköÛy)I_S}âL7,t×­Ï7>¦US:ˆr6,§"®ŒmF†‰0áP=:dš€sŸo€ü6 1—õ‡]káà;ôÒ DÓñdC½ÙýëÐ…*Æϲ™¦Š±C™§­ ú_½¡³ÏÞ.“¨o¿Âý)`'äÇD52¨bè¾P YzU§‹ü¼X6›&ˆµÆ<ƒe¾C@Û2†¾Íê£]o½hèìís]=2ä=ËzQ0HråÄó9• (0ÃÜIH=ì»W:‘44k>¬ŽzüÂà‰4hî¨ÃÜѰè·TÁ Á@ö铌זYÿ¦˜ ¾kÈÚË ø$(í¶#œ­åmÐÇq,¬ÛŒ^òQÑ0­˜G¯'Æ9½TXž/ýT¿ET©sQP< ÙÛ¢#sU3aF„k|égôÉÖÙ‚.ãÿ]~Á¹(}Ñô½`Éé¾âg¨Þžy5ýÞßLrÂ^ù¾‹I~YɯHJÖ†ÿx‰Jçì½i³yò«·Ç‡Ü”¶~ɱñæû3Öí?Dù”­¿a®Ö³›YU.Ìd×~Èìþ‚>r†ä}Ý“é¤ÛåŒæí¡¿nl;Ì`ükú™7mÔxKžJÀûFe7>9C9ÆÍ\·ò{€$¡*¡h.it$Ø™6–Z­l$¨µõ°¶Ý¸Ÿö‰­ˆÜpb)*ìjX¦è˜ÄœY±ù|R¢B©;WÍ`ìa67Êd2$èq.á?`AqˆLh?ºƒC†¤œ²‡.–TP|Aº2ÏŽôõ•$ ëEú’ò´þðk¼ß}eñ``u¢­ûŠG„l* ‘y«Ï¾BƳÚOúÍÛ ú³²·×²ùºPrÑÆŠ7”6Î÷ò–dk[Ïž%t±Ä°°ž]¯¨tä*´^^>´/ø‚ô­"®@ìƒ1¥^ª…7Nïá–9[iÖož›@ù…‘söÊ4N´PE†{`P¦‚ó(­>çàÌò °† ÎH´æïÐUâe=ÛY†(&FÀFÀÅ;[„HŒ¬¤æÑ‰æÇ=Æb^„4%îýjÄ£ºõÕ¹LÆ å·xÅeÆ×³Aœƒ"Ü|2WЄa¥¸* A³œhþ£¥êç):M•¤CHâ€ê1‚ᇗ‘3KÇþ¤ ÀUâuÓJ™À)×cþ‰s¢$ éH^5ÜïÖ6¿THbp‘¿é8Áµ+ŠEq)%ª2·L©›”΢³ëdªDpÌÀ[öŒJ‚ kÀŸÝ |o̘)ÆÁöy«uz¹D€Ép8AÂà Xä„×YroÕW§EFXð=# Ž1ätÍÛŽå|ò*º\¥p³V.ì ñ »°¾T5µ+,QRéE?!œAabþC‡uý¤Ó£ÍápÀ5¡fÂô~¢ÅÒoéˆh™=¨¼œ¸n§ëÄ,çr¥U„<«DZëeÁ9¡Ïi]J/2ÐÏxdáx˜wksš´*koa0Û5RGY.Œd¶¾øY˜çÜaÍ$†±i æü†QnN­ÆÔ:ª»J¶B/9 Ê¡*z ¸§–£9š¶Ì{x+©gÁUM€ä5ÄPþÀ. âtâc,•a·¹035I‰ØxhÒ'ãk2¾Ï„å,£v:êà3ªÛ/iëñˆè](w®üa‡t>úoùt’!˜sÁy)þ¦1“·Õ]A ÅÁÔ¾kéÿ&éæ.?Mv­ÁãÿÝÖ÷‚Èa~£i =Ö¶à’„Ä)V‘bw‡2ZpG†EY´èœµÁ‹¨ª¤!fpÜUuk;?ãà ~49ãhEÊ©Žbã{ª¤ä?}çQY§µ!+ìdÿhxœYÎ6öö yA9-¹êmáä…‚Ô0>…Ò=;ÂD]Rˆ.& jX.Ô2hºfZÒ[ÎU@U“Ù¢bähgÆHëWãϺG8ÇÊj*u]³ÔÍ±¶Ï?L‡ÑGV›¥0%èrôͪr8T‚V}hÙ˜("d‹ƒy•¯"N…øËI„Ñ@ýs§jøOŠŽu£ùlY’c¹cŽ&oÆÍ•ÒÇžs~`g×®r]ÒÇŒØ{u_Œ.‰3œÏnJ•kÂÆmì†Õ{¡¡±[‡wœ–VG×ë£6=—½í˜&$éÔâň‚U¤¾Fá ŽÇ•ŸGKlÿµS>ú¸t(#Ë@!:ç‚ÑÓeÈØzšI‚§§–%É âЇN¯&_°« ßq™[¡þd£ÔD/AÄ-ÍW>gÏaƒ&ÐàMkÒÚ—…k¸ãa]®þ¾&§ÜŠ÷%czæ4Žˆ ”G/É€µ—69øš^C($Í»ÃÛØ+ÆZH¢[¹€WGß™7J~½‰й¸evS 1b’uI”VÈÎEú³Ürà wAHòé@étjÞHª°Éo3 rfG½,ÃjM˜)Øò9¦·dç“YÕÔÓ‚W‘ »K€¤‰ð…ÿ×2§ªR$HD`_ùNÄ °žu œƒÏv9µ%ò[O0”Ÿ¸«¾™Œ†e°k‰µþ0áâà›B99ÝDt7™yÓ¬qš\賤}Ü,½‡.–úíg@P¿Ñ®«b‚Y5crM.Ë ü¨XÜ‚À Ò¦žõ+[¹òÎ ã–ì*Ò‚â+™Ò£áÀ§9ßæseˆwµ|pÕ\ñÎn ¤hûáÜLò;ãt1Ø—’îLƒÎ¥&G÷?+TIŠ5hqÀ¢­1ê/èÌSäXj2¯ø‚í>z38üº××ü$ˆÓºî£ã×Ãýž-ÐȺŸ;ðìÂ¥‡F—qTFõ¦¦É†lç [ãü'j^cáÔOIÖ ¢{Ùt,•tx≃ÎY%Üz„EƒSÆêŒÎŒ¡Ý³•b,Uïš.¸Vý Q˜™[Ó\ 8ÅpÓ¢;™~¨ î±løR÷[:„ ISç84EÓß Ž·_Çi¼•žƒ…Fxã";ë¨33ËŒ¹RèŒP•VAŠ@c§^¶¿>>ôÿ_SŸ”¹WU'“q¡)¤ºwXoç "A‡¸dòu} Â¥{ªÂ„¸ÙÍ$æ@1vÌK°špD¬pÁTè$ÚŽ9Ê”<댖×79¤qtÈᆄ¤A·kžÂì`Uñ‚Z’—’Ðä²)‚Ýä%ÊHw:ÚÀؘ ñJ$‡ÃZ-›&9/#s^Ô)Ë)±.òÄ‚qO“„öHAÌÀ%BÁ Ét #'qyå*¢Å‘ª rwHF¦!AÆï¤Sô"Á–ö_É ·³ù»ÊP@£˜#ëk“·åcoK}O¬eMo¯½ÅÁÑ—Y ÀE¸LÈY£²É$¶¼Õ 4ëqýh*µ•oX3#ãZ*QRT{ÊõcŒAÍa©™'”¥¤—ääÁåPƒG &G!±88rsAÒª=#üÅÏ;Ì+Z, ν‘@+œ8ö PÀ)¼´Œ€ï.±^ù ‰Œ‰²“R›‰Ò>7jîðEåå„ó¼£× õ6rå#6›Á¶áî“)‰0-.‰ËÛ·h½Ñ•ĸÕjFjqäe F"1’Hž}øðxîHД5õ£ŸíàMDYˆW'x“!KWc9'c ¾ˆãÖ6eª9AØÍßǘۢy)Ðû e%×øHU½‡ÀG§O-°Ãÿ›pbFÆ2†ã«su¥‘ìH'¢H Ç£âL|¿ksR^¾Z· „²îè áLO‹FúÜúÝ$ ΋"_š!¯VÚç˜f¢8™,C„h€`Ä QÌI„Jù5Þdè¥ YbÑÃ!7Ô*¿/ïÔ,N¬„‚û[ P2j°‚øµ¡¦pŽÒ¼LÚ„°m=¾MYy.Ý;,ª"fZgÜ·+óä‚f›d'%ÿ^bSqfkMÑâ‡4.lºrª%á­‰[üøžºrÚoHîû$×.TÄ™\·:Ìv=ŽE7¾¼–¾aûždJ´$Ši¯ßêH‚á³¹dýØœ²$× ö<]±þvÙ ü%LÖô§ TŒÓsÆ#Z“CZ‹žGrÊûõZ%r²åï”,ݵç¦f’<£œW œ‡Uà¼*…!ôßëIÄ„ÊÏ€A5¤ü4lظc¡GÓò¿˜e“0P$êo=ÑáKiÕ´‚zƒœ ™dxêÒQ°ZmÃIÖ;:Ô.Ê&‹D#WDÁÝ«9@üñµ£¸œ6ø4ÙÏ÷¸›÷~ÜúéqRbk1 à'þÿ=NXËEk“`ØJ£BÅtÜԤ͙Sì‡@a‹“Ú:õS™ï*s×¥zªBqÚ?¹^w/ˆˆ‰µÝ0娉~&äq‰ëwvS‰ª—Tj‡Q$k[º&w›•›+ò~eÊúõøÊ­O³WÅh¾„›÷ÿfüÊ{ñ‘eãÁ?ÞƒÿødkóOjøO7¶þ…ÿøOø·ÿWþ¿þ‘:ñ/ôLJ¡?‚¬ÛÙÞÒáþöð({9<þf8Üç!¿ÃÛá!è[ÁÍRh2QN§CæÊÛB€å¼°ð|©2¾Pó AT eœÐnÛ •˜JÅŒÕ]Ì~hSýlýÉgëäj—/x­ð ÁlÅ^[™bÅEÕ4ßÄz&¢gÁqí–ǨáŽ0;e“ïQe}×P¹sïU“* Óô¢ê{Ð"•,^¦ö÷ë¿ÇÀh`Q§©áH4Š..+ÀŸ3¸ ùi>˜ZWñØ–Z¥Îì\kú%Û ¦õ])!fù%ÃVÙöaßÿßÞ+‰æPOP{"'m̱dì½rÝ Fñi‰?°d¤£ìÃ\–è%Ûø°ù ^±ñaëY<³航œ¦ÂÏ ½ŸËêµûÝ, %Ÿ‡nh΃ŒÍ±ÿ{f“¶Öyû€ž0{†ýW´¾2 !]Èvñµ$9‚—Ýat 6"¥Ç7 .©±¤|Œ? øGù¥ÝŒOÖ³=p”ÐÃ8LÈö‡Â¸)7ž8’9›F¡<ਘ¾K4òî—ÿæð'?°lÕ©‚“KwBÈŸ©˜³NÞAYÊO‚‹žuaSóÚùg2ËDÜÛÕ›Wç¥ïÒ žqÞsú:óxÀÄ/*¾tûÞ:Ë š‡¾(<ŠÙç—qRù“K{ nox1nóóxè¥ÛórîµN,0³õ){{ÕˆM&9yAf±ÀÓñÔ_0§^öžú{ðtÙw§'´ü§û4ú8(H2°W×áW3"_öZ• Kåκ\¾ù‡šþñä“ñx}ý'û„ÞFáêí#Wv–Ã"8(©Z°í»AÈ7怀ˆÙ§„ã÷4Ç=è$ÝwÂN¼5!#ÑŒ˜+Q¦aâ_Ô^ Š1]»-xD×]ÈzÔPKßìûʰðŒ¬)άdUÂêògƒ½ã³—G'T ýåøp`>gÊe:=¡i_jÒÜ«° 56Ü~38¸‡ÓoPÂÙÊ”?ÐÔ7oªÓÿŠ·¼´¡$KFǨTè Éc)Ë1U?ˆ …§«ËÎNœ¬7G»!")¸q§7ôæ·”õÍð¹lJɃ›îh\LƒrŸì-1±Ïi&ãb^BDÍür0½ÃwìgÝêÎïì»ëlïw@æL#t°j{_ù{ýäa¼Îý‘xYŽË³íI` ôß„£ÍBÖKÇ[)¹ o\Ï0Á‚õ!ß9œyCŽ–m{¥¡Zúä%SÑ“Gï¸*o{€Æ³žH_Ÿhoâ­Œµ7þ´€™hQc¤ÕB˜ž *ý’~ñ‘yåÇâ4ªÖ•i;½ùqìO½ºœ2hJ®v¨1‚L¯l¿Ú~ß^”âSh–@Tv«ŽÙÕŸÉ……øNÿÃ_ϧCÙç0ŠÿZÎ’: 9é¥À’¸G˜ŠãǺ@œÏé>ÐHýá¹~èÈÄ•.ùFù n’ÿT`ÉØ¢QÛÖù å84jÔ¤S"…0º²˜Mh»‰‡ žü¶òÇpàßK‰Ãu¹y '¥¢Ü”Êï﫸áN6#hRýRš¦Óÿ@óÚÏ2ê3}ܨñæRs$?½6Á1±¨M/rá‚:¼€ŽU¥Üt&¼*ãW¡®ŒaYÜ$tŸ*´RƉ… „µF†Ë²·ì—6ÿ„àšLYü„.tüÀác§ÿ‘Îóáî‡Ó¡<Ƙ†ü'Ñ}Ë ƒVÁÏCk§QsòAÔÚiòÄðô7§ÿ!O5¾ß<08}: ÿüIÜÑÂ?>ê?ÊÒþ'66&çL+Ч>»œ¢i‡®‰Þ€1±\à 䄪Ÿ_?Q£HZ²§A°²‚&ø!ȧÀˆPdJ02­óÆyß1~ùm@JÀö€‰ÀÚ­ @DxÔ8Fhð`8¢ÎÃD%1<Êv›þ8þðº^ðšmQÃ^¢HÁS©b€§ÕP&2„Uá"ñDbë 2ÓÑD™‰Oú~é:‹j÷ãélúWx+ ¦1ˆ;è‘pØ ŠZkVêþÑÛßy9÷’o6ÂÜE€»L„½éº_þZÂOˆÚýRþt˜Hp3äŠS kÚ"k5°]ˆ-br¨ÁZΧ®Ž0d™$øYG€>j„Ñ‘Ød|›šhë=·©ñÖm`œ­]õw¦×ÌqpÖ{D·ô×c‚=ƒ$k«´D@g ¹dRòi»\ÔÙìÈ4£D~Jø¨ÚViÿп ·wã™t'Ù±mZw`iUè8wP¨GüòŽªªŽI4!®ëBJ îaÓ-0š¦0oþDõÅ,dˆI$%ªÜã™â;^ˆ7 [€ý2 ‘ ‰-‰ Aã¾R o*UÕN‘ÉH3ÆÊ M7Ø a NÁ-Ji®6‘6,a‡"#­Ñü鸤@ –âïÆ³¡÷cÎ*[¦`[EÐûŠÉÆžò¡ª—†aÚQ_W‡_E—;Ð.;¬Mˆ\jµi+[Ÿç–j»©3~ÔýÐÁ*4Ëí6ÜJÐ\5%'†tmÝ’ýJíû•×H@;RÎ å@&ÚíÝGÛoÞì÷^JÉÀ6 ”¿~ ˜Á—— ôõ·?°?ÛvægÔкX½Áq_V†•¡øðž¼&. ÐdBO„z\œ5…£7’Œ q•E6×äÎNì§ë¹jr‡÷ÙÓÍŸ‘C¤f¾¨RýÝ`ítü=h(ßåkß=——åâù÷ßcliAe|¸º»ñŸT±‹!Äû¦3÷1Îwp•ÐÈk|*ùêæœ—Êp#N8¯÷ÚoyÈ'´Sñ«Ëz½Ñ$Ÿ>£KÒŸÅbþ{NŠP˜ã¬Ù[¢{`oBÇ0€K!<ºf ^B¹  #÷ºð£ZT^YÀn Š4­oŽ˜ÑQV@/FØá²Pÿ'Ü ãß.*6æTÍ@¸=ˆwBÀMü„ÉÁÛ<Í5“ç¦Î¡›÷,³ÂÞÞàðl¸¿s°¿÷­è1|åÍÉÞñîÞîþ0MÿÈ~ã ×c-`q€Q¶'öó;[š¯¬ó¡7£^60~»8ÞÄXܤ¥ÌèdC&R‘Oùâ†ÅšstQr€à:£Ö‚qKC—Þ³o>7óp²ÿÕáp¸#3 ©¾E1£D‘:Bô4 «CÕ<$2-¨V•ã}á@ SˆÍŠ«þ"±ó:\ÅÙ<ówú\4cã^J–ŠÑîR …;ÅOÊ(£Ž‘o cg—‹J(lyWS]fÓ*z)w|ð±_ìõÃ_Ãø¯7o¿5{L>: âÿ±“ãýpÜI3”ªèÍôæÓÃ Ï WÎËó…é´G!ˆÓ€ ȱǕ:õò¨¾…/X~Eo½ìEèÇ,* PNϯI¦!ßAbçÕˆd8¨£Í^ùཥÿÊ‹vLßÀJ¾˜l‡®¨C¨~çS×Þ3ûxI礲¡ª®ÛVþÙÓÃðAG¬©©ÓÁT¬QdIÌ&¡ÿÙSÇ”ºBQÜÉ¡Gµ&mrIýþÁÙŸ¼% 6‰ jü1 è`l`&(•Ð"k÷¢ßÁZ‡Q‡ßI‡um!æÍ^ ½Âšó]‚åF®G¼ä>2˜+Èr‹öÓ™´ðL¤n`7¢þNzƧì£ênºo`ÚŽA(¢1Wd‡‘*Æ]rdåø3CvËs”á™É„U:½üqë§~ÝKlÂ'=9É Ít¿ì>íAæL-jçUÚ±ÖŽ ~BAµ§¸9±P˜+˜Õøt¢v3Y’~]N—¦G¥§ŠRD¨”ñ.8iÿ¸g%}@OÐ"P>Ãhµ®é@bù`å ™_]\»~ëWçÕóGΚÝWê4DEZH†²[Ac6ö4z™ø–«’›ÝÞôÃÄëM>$„Œ¯¦4`¸ïQÛb—´ 9•¾àÚ=÷®(nDEñÉȰF!k©Èo Ïõÿ³¹ñ[$VǸî"ÇZ,DKCª†ówk *.Õ‡![Õ‹ÜÛã×%茂ê¹-Û¡óœCü·­È±éã5¼—áËùrJœ{u´°2î~ùüïÝ/7€ÇxÜó2î°÷÷Óze¿ÊV6Q¸Jâ”>Làï@#αŽUÇ)@¦—õjÈœf§~Ô¼+Ê!òšXÉX윬HÄõDüU(žcµdÈîžùÌoóëä„Èؤ?¬üá:/¯ó‰Cþên6¿zˆlÒ°ùÕÇb Ì‚“ai×ÝÀ¤4Šçé—+áOØgÉÉÂbNHBÇs€RÏLÙÓºU .êYêcñæù¿±²o›Ñ` Æk áцèÏn*2¬9æê{êL&]ièØŠFCËSU5:¬Ðûî¼Cyš£²8÷O­‰sRøæÚªÞ6¶²?-ýüsÅÛ¿þÙ÷×ÿ¡•þ‹ W×ÿmþáɳ§µú¿O7žü«þïŸðoUý®ü{ õâ_€«\ÂbNÊP%ÑR}4„úèá_Þwß ÷{ÙÛÁññðp?Û>ØÿóðnìÕÉþ6€ÔAÒÚ–mm‹yÌðácøßc¯Y6>÷Ä>÷Ä>½´ñÙ§öÙ§/ø}ÀiþÕÞÁËæŽ>³=‹z{p´ûzóÓŸÚ§?µuþÁþôqý¹ßm¸$IÉúfR²þQKrùf.°KŠh%ƒ‹nćËuÀ1^^N;A»G£N¼KeœèIž2…é@Úöy‰‡†£;‚&"JLY$P¦¾½Û™ÒS8ÚËÉlDö­Xe‹ræ[  ¶š÷ê;5Âa”%œ˜3±ï5~|vŽÑ©nÀM¢Ÿ±2<ý¿Ë/.ùF¥~¯×Ôjo­= ¸,ïïy-ÆÌ›_r1/Šî/h: Z¶;¬äDmÔàQ)‰œÿ 5rÚûG¼š“9gó_øvm§½9Wê(‚»C×E€AfúÖÕTgL@EùMVÚÐ –‚ã…Ž'¿¤ê+ ¼)Ê´\Sâà·9U,ƒÍ9—4xö’Vë‘Ã$ðÐ>ïûhØ. /7òÇd×Åõ ÝíSq¡X 2H*Å(;O M¨êrkB†j>wáå.¤82X¯«÷#â´ÒI ƒˆZxpâ^6™%‹Ú‹Œ\½˜}Èΰ¼£`‘ ìBóÞÊ–fO”,>2ÇdÜs@àÍzÒ}ãEäì@)CbµQ;a ÏXO ]ȱ¿éŒßçLyÙŒÜÔP 3AÙ2¦C öcª»Ô¿hë٧똙®§¢e$!X‰ÃȆá×Í[Öc×6þ>Ãïû¡EÁx–âšI{Ø€\'#àpâ„Åp/;;ƒã'|–ó&3ö¾´\=OZ¯žš²Ó(ÈB¼Íº†œ1à¡ ²,þ«€ÚÕ"ÂØÛgŸ=Ù~=8Ì-Á‰êõlà"n9H~×·bJ©Rzh©Aˆ£iDëŽK“°¦T'Ñn~/ÔáÆä×-˜á8w½˜”•u” Ù·ËE)°õã¥Pß-º •k™ñúÅN‡˜$Ó÷Å»—gEñÇ»H6ÄT”•Í2Ü2 ’oî=«€$Îp?^7ê!îQ⊰ÝÛ€ÜóšÌ@Ý£ÎRi­W}os áɦçCÄ¢=$ñÔj´…²#Ö“ný÷BÆ>í)pF©¦Û@D@HIç¨Ƚ}ŽwæhÅ—ó™•'âLGÕË˫ŠS/qIL†`~MJ¤xÍBLŠŽÛmŒÉÝB‰çjKtEÖ cVfý ¬Rå‘âO Ìȉ8d÷1U@éwÊÈ ©/PlÅ)šÏÛÆÉøtRyšãk¡Î¡yŸ^øV/j†•mY¹Ÿ©IÊJ R $"Æ5ÐÑ_j☊Ë&©âWê Ÿ:ã§VâL>MA´\~AuþŠEóàÛ¢¬µ HjçêΗ¡¨0ÌžF`Í e?¹Ž_ù«`Ñt$®ü{†Lck¨85pÖCæ¤U+¢ìI¿¡ÇçþÙ*{$õ”é´p? ­Áæ |Ç—œCp#ë>zÔ“¼[×åÑÌpûE U=¹¢"¯/ 5iàœvx„I½‚×aÛ»¿~ÞÕð —–Ç g„ïX²ØT¹´*úbv‰UŽd/XéA6¡^üNù…õl6䃰 l° ŠõüºS©$¬À1—àé Uƒ£;5n[ÑvÒ¬‰ö%í‹:ãk.õ¶ÄÎiæ Côä$xÃ¥ï ̹ÚÚØz²:ádó³%œü7ü»/ÿc\\Ï~úó}ùO·¶ò?6ž>ýWþÇ?á_{þ¬üsòvá_™Ç~>:89܆HÃÎPsÁÛøøÑÇþsjpM;Ã7ûGÇD`”½=<øêpð&üÈ?ò±ÿ;ß3S’ë 5t_{u÷rž#†ª7ô—ø9æûÿ€ D -™Î.|‡ElPµ'å©vˆµ/Û–W„ì|Üvå×óîsðŸÏèGXR“Ý.Ux¬#žr°.]莬(Â-Ð]¦u8x¨Ý~ðvW™¹Ã̶%s¡€% >è–ƒÖàùugB˜êG¢"j²ƒI*X!@ÉPÁ ¾&w[ŽB¬Ô¼@Ka‹ûlmT.¤ÓQù ‡/Ø‚az yc²Aa_r½ŸƒŒŠË’J\§ûèäøUÏ›è„}µP~3åçŽm ÿëµÏ¸¯bØgL0ÁvsçÔɰ…×ÍO«WÒ½–òa sœc,kÙ–Žïà†(wYuW-Škg–6KˆËˆ§W‘ PTéLÓ'âÐÅŸ;w~ž­}ŽÉpaûO&t§–­ÍÂÎíš^’=azj(ÖÐÝgkFKQìQž 0IуeËÞ¼»\CdšKoAÆOY]£”3a~Ac¶®_8ÚÿcÞº¶vŽT…þ?ü$CçG<ÿ§>ð~ÆknìlrQJE¨» ¶2ß·ÖØ}¼¬ rß_¹:[Û3úže§.ËÖ“Ûï°Àe´ånýNÜP‡½0°Íß3I«ôJ)U–Pcr!Qp.X1“-Œ;—}·DpS@š£ï¼ùs4ó2W=½Œ±üµ&Ô½„Š$¶µÎ³çº ’¡R-ôz!ÞŒDþױŸüõ çï Ç‘0Ž^û‹k[¨ãÎïúÁ=pù½9ÙÍÀ˜.ZNÇ–/±oz—^p!"»3<;Ùß=>ûfwçøµß^çó™ÚÂÔĸµ‹ë™ÌÃÅ) _…j 2Åv? øãŒ~ÖÏ6?Å0ì“-v”ÆrçMŽ:Ny<1Zkâ”&7¥ï` Pè²Ï ÁÍO#<ñ@а¼ðzeÉô ’L³ïÌÅ/Ææ§xµXWáqõýª/a‹ðO¢¥#Ÿb‡|’ÿÅùõM·jp.üoE'ˆÚvÖÑJúؘàNµiŒÅ –7Ä'0µE° 2ˆÎ9æ§Â³1í¥x#¥æ3ÿ9Á¿›,^T‹qéí³ß].^¤_`ÁyÃ7¼™ð ÷34ÃU*ãkÖr¹d‰t+Øþ Ôp'ªÔåÞ‘ ¶Î%ë’ºs—7~CSš2¤I´ŸÞT ÛQ¨å·ÅëÜ”£&ØQ^Šèí'0ܸ\j*ý:¶RHÝAãYÀâ+;†ŽØt& #!WÚâèį ëϤÀYÈÝÓŠ>tY¯×@B¦îÝúÏïÁñaÊiþ#Ÿ_ž÷ñäeù?Þ÷ÜÎ’‘΋Îd'±¢ö;楟ùªŒè¬¼‰t,˜%ßó«rÚÆàoûfŽ¥«(è0>ª ø}/zF¼MÚ‚y†çóãQTø?à™¿rúŠ^C.Bú¶¤ÿ™ŸûÇ5¥ EÜòñgg›w¼þç&… _JñÓöóG3BÔ>äÏÎ&yµønëûè;ž&jô/1.SdÞÌ…ÿþõOû+p½ÂVû™ãN¬¨ñåx@A—ç›ÖîÞl-ë¬Ó9íóM¨FÓ`s°Î)á«Æ“¶²¨÷ñ¥hÙ7œ `ƒó²à!«¼¡-¦Ï#+díÒ@óhºçþÉËhŒ²ÇŒÀŠº^j×mߥ_<‚x£*\éÙöàh¸7<:Ò¾—¦ïñ|}ÌHVŽñWû祮ÌçÙÆ —Œ?Áß-ýo¾ÈJ¼ÜPZù?>ù¤çëýÿ>(_ï ¼¾+¿ïãVëeŸû6z™yËæ ÿûbB¬¢ •úP­3ñŒGípßm|ÿ~í÷=€þÿÖ5:'S]a­Òo«Ói*ðùÞ |€s6鯟äE#o㾃Ï~Bsp±`u_SïnõÒUì|ÁyÍš6¦¿œµ¡5©IÍš*+<>oìøùÿ·Ï³-™u×°éU!WÝ—ÅFö_áGƒ¶C¦á ¢8êK/)3¢jFÉá’I;Ž€ z`ðŠœ³[æ"ó: Áö²wøn‚Þï8s†n Û(jÑP&Å¢˜bÆ1có™ß06šŸ/'†é‡pœ-hÂÅ òyf‚{¼E^8™Œ¦¯?Ù ?àÃüÎ÷ ççÇÞíÒ]ßãßö~Ý‹ÃË›ýÙ­LïåŒ{p4ñƪmXr¦—CÊë\6%Ú YFÿ’Ë/’ïÃ牕GB†ÿcFÖ?/ ¤IÚp~ÊÄeEeó‚áÂZ“ 0¿m°XDõÍëØÜ”±èþ ç~çÍ´F-êG]EK3L!y†´š¶gè[ztÝÞ‹ÚJøßÃé·¡l M+'‹z?fÇlü¿ÏI䘄3IM¢„Šr$¬ÏçÔW6Íœò¿Ûzöé÷ qÚr—¢)¢gúxTg]ú³‡ÒK$¡ë¤‡@9ÏËoý(XèƒæÝ³3ŠâžÛmŠ¿îÝ•¼ÞÐYÌvì\8ºç¡üý0¦ ¶yH³MŠNUŒÿ®N›¦û„k F=Ø ˜¤ï4u±œc@Ý¢Ir¦0â–2,é‘§)sú%yRæËÀ’ŒMQoü@Ðõsï­L&¢:3TóhÛÏÈYE’©B°Ç4×h€‰ÊÍÅIgc$ÂnÏŸµ* bÚ)¾@51hJïex†Èa?©g5À—(¤T”WÃi˜vÚÕñ*eaÀåI¥Ââ 0¥6vo.“ˆ5/Ý-Äc w*jãåÂøBWŠØ‡ËãÕÿ )sqš¹Çá|nÎlò]7üM²ç×üf?ØÆb’„(×àfdÊBÙüx¡œÇíuQ¤7 ‹ÏprCª ‰\>qýÆGâã=ÀÚB?~ ΢–Çñ¹¦®Ás2$ÞFŠ“¸úq¹$—f¸ÿ:áÊÐñ^u%WÉŠäzÀéöa„“{X¯›s2M6ä¶©nKXÄù¹µ0Èk‹ÐöÞ Ž·_?×dŸ3?Q/?tÿç5uPž$AaéI À9ÅŸâè3bx…‹ÆñÛ1^F¾£Ñû~ÒkÑìn¬HŽ—Ÿ¨C†ûa—›–hê§¾54/šuƒ,ÃÓ%6IºÏשµºÅð†rNå[ϾÌÖ,*ÁÐ: ò¸ª:&=ÄuØOâ¯eÿL$uÄgÃÍGÓ⢹]Šô€ pSÞzüõõðo Šmaº\š­gËeÓ«šõž.hŠ'á6G€©Q <`àô•ÊÛah+i} ‚Å·x@†¦„³àŽ3"Dq¢ R-+1Ì¥ âÍM1í[«Ž@ÍQ×¢5ä#¿þëV’ ÿÁ¨•³Ð‚Ú×ÎH%4žT3íd^ÃÈ#¬ î@ø@Šã‚Ï–Œ’·=c`K¡®-\6Ëó„šqïà›³½ƒƒ¯‡'û;g/¾Vò¡ÔI$¿ ­MÖ£WלyîÕ|¡yöѶ!/¸p÷B"»_~¾~úuï1>í`Ô4ä|j %PS{*…ûs*r¿v©»ä¤vy¨YWP¶‡¥{36d­[;Ÿ°ß TôUˆ¶ÎÀÐ'1cC¥§n¡ O2ˆ‰{ù»ÍïS×Í©/ì*%j8§óÓÍŽ~'®ßax_tøÉè‡áAÿ oõ¬?2víäší!YAY&Š®¦Oì¯"³ëÐ/n>ò÷…· ÆâQºÿòj¹’ï–£+dnRqF·ƒ’åF"CÁ_׳ƒÀå…QL/&Îæ+n ˆ±R¹]ð’ÇÍ¥vï5­²:E7Ô):]¢qp…º}FëòyVŸÒ­G%ZÂqàSG’ùõ'›vÝäqY‘ßnÍ‚—¼æi‹ý̸¡l{¿¾ÅKQ=d±!J)AìÀ¶ü§u½HéÚ ZIû­nй_œkü ȉ*ùÇLFQE)E.¯à¿è^f±SÝY]î‹V4•jxšûGTÚ+rÊå?÷jå»ÒïJɒĤµé]ËýÏ€]³âòæk6 5ZíØ7ÂÅ–³ì†oé|ZÝ’w¥¾>WÓ¼Q‘¾¤$„êòb‘ns{œ÷ŸvØ-v¿ÜRï[V(C{aìjQ sfJ£„&ĉ; üK`GfbàU0¶EkêoŽ«Ú¶®÷®mmu/÷†}y0ç†ÆÆêªRT:1zîYÙÖp†ûLJ߂ÜÇ {ÏL×GÂàax÷Žì±† Îû<·¯ð‹Þ'·²ö¡oü¿â•Åÿö=µÁD±Ø óZJ1¹`,É]µ'€Š Ýç·3ß;Á 7ƒüÌÇÔ/d£ÑAñ÷¢M9Ȳ†Ë9¤È-.†z¨1ÔÙüøÔg½ìïü’ï6¿»¿÷²ß>²z•¿’µð7ô“¾tó“lKu«HÛz4Moóé÷½~£–0•¥4úy= ¾þéè²Æ$V€1]Ë–ãê±ä¬éÙ”_ÝäÝÿY:æÏððÿ|–Åsa^†_Ÿi£? ™)i_#ïþ/òïÿl?þDpn¢ ƒ¨‘37ÑóU;Tvo‘ë®Á¿ß°mâ0'ç7ÓX­¶eHÓ‹Úýúô³‡øCZ="õ¤$ÆŠŠ!¢!D´ùDS¸T£¥¾ÁÉÃä˜&ä‚W¬€{ ÞF¡%5Îï•Ù,›92ú\ãå;9&Žô¨|Ü÷Ê7Q^Üá® ›]‹ =ÜŽ˜ä;.ØnGÞLŸâI.ü„j¶Ë)&fY(ÌFËK¥´[‡¹}©Î¾¦LdñËÝëM¥sÖ§—ùù½,ÏÑKZBž:5t¼~¸š=È|tçã÷ùô"ðx§¡ß7H,ò¢~H^â’Ó8¯”^#4ˆyi~Jò2L¯ã].Ë1¼›ƒ[óh± *Bo¡UeØE¨ìqŒ–}5œáëšÑ[ï©Þ‰ÿ»cû¹½IéÖÀÿ¯ö|½Ñè÷ÚxÖØ¸4Óë5É€ûü¹ˆ©@„\¸¨ÈqÁ“ ŽÓ{üªÿI²Z+Éjs˜è%(Šjá?ZTši-‡4é ɱ¨S?xÈ“(ž ,œ†ê÷ ÷_-øƒ÷ýr U’sO0$k †À >&2¸©› AFa¬«¢ñŒ`¾·aÛm¿Z9ø)À’Ä5]·F¤¥r*ÐIÐÇÑ™ra—iuxåcäÃC,ÿ€ ˃Â,ÿL…Š‹äØü±Ñ—à+× œ69œeaWGTdQfT%ãüÞŸSùu£*<¿Í㸌)½yJZüa÷ù‘áô™ÉK?Þoö+yÎ~ßÙ½Þ3òŸ±MÍ™!éS¨$K™Ìý¸ÿð6xÀYm<§ê¦päràÎØbhÿ¶á÷üOüwþÏ弸ù‡âÿl>ûtsóYÿçÙþ…ÿóOø×Žÿ+ÿߌÿƒ]øþϯÇütôíþÁۣ݇;í ¶wß¶’2¥„NG'oßg¯³íƒ7o‡GGÃìÕîÞ°ù…)«ÓËÝýÁá·+Hø(”9Êv÷?ŽÐéàm;ÇUÊè4ÜÿóîáÁ>ð3eîB|·ùÉÏ쓟u¾Ø~³·»ßòã?ÚÿQ»„³78Þ}¹»·{ümöÍîñëì«ý“ì«ÃáÛÆv67¢uÞ-á³ÀeÑü\¼?ü99BpS8¿÷ýkéįè`»ÒÜH´oü__ _ÚAGgóÐ7£ÝãÿúbgwðÕþÁÑñîvËÑvñ}q4fƒ½£ƒæŸG›ÅÿµŠÁk3Úþ¯ŸÃáeWS eÙwìÛþ>û&³ð'ÛÜô_W›`ƒ_meëëëß·ÅCø­’ÛÜÒ ./E~ h¡|´4ùAÈKωgÃáTð¹2RÓ"@AÝ‹ÁV*A9õ7h _ÊU Hm¤n}†î„[›€Ånmú&¡û¤‡‹KNßÿZ–çïÖÈÓ÷Ín~gØÈ¨<É‹$h¿I JÒW\ sµQ@XÂ+„N.I?³þjѤ‘†Á;ƒ).lì²YWñöª ’æh ‡gDg`P¸JG¹(œ¢õȵ,¯®K Ý»ýøj9¯Æ~ß<.ç¯g‹±°_pU’ÄTw&4AÆôîx9Ç[ÎÚŸ~’ Œ4óWÓ Oe•,Ÿ”Ó3=±~@æ_"PókI,N+ܨXkñ¬¨r3*àCHi„°‡ß'ñ¥ä†ÏLà5¿ŽA™"‡_\çj_òŒqÐï®PÕ¥ÐÒÃÊǨœé>fl6©ƒÀŽŠ†pGù|çPÙ…EFD{¯ÈA‘Ð!Ur¿ ÐN «Â“a-mG0êH–ÊûåÒçཬ²h›¶’‚@?•dgA²QX ³xMÕ_ÆÑ²3r>-¤@ÝÜÐ9%*Lß魯˗¸Å7ß”/]ÄÊö–¥:dˆ¨JlOš>ÆS ½ÎAKÂvãËêXkÐÃÞUÒ ˆz ¹:vQ^ó9éð‹`";}ˆüaiV²ï;£ahJ \uhh ¡i‡äªk„ߺ(n%^ÈhI¾+í-Ê6ª€¡ô×\&¨Â(?΢^ÿöÞ½¯#[>×§è­É™H‰ €/qì‰óÊXN˜``@ĹømI ôXHŒZ2&qögk]kUu pföÞï9¿ñoï ’º««ë²j]žõ,»LÏä¸ÏYgpçùäT®ñKª¼X^ðquw$&Tѹ ¸!-ÞÒ §Ë ¼ðÝÁÚð >;~q´ó£`‘ª‡ 9Єœ¡¦3_w|]Y)›d‰«õÏz¸¡lz¸õ„Ö?ŽÎŠSM*ж£½´9€AÁóÓñ™Õñ:L.lHJr6>üZÑP£tÈQN™‚HÕe~,vd$B9ª­Oö#é|e Ð”ëHñ”ëÌè[Åx gú©ìë•ÎlPñ˜‰Â>Ø¡æßàoD£´Gû’Š˜µy ð»¹–Ö 5¹áJ4FtÕÚt 0Ô¸Q`ý\“‹‚þºxó•ñk: ûÑ×™ô„6–#ãž°úBlq=;iBó…ªþmÖúñ¸•Š# Öƒ]aq=|4b!$§ÒNk†¤ßŠ\ж«MsXN,ô§èhu+Ö2£Hq±IÏ™IzêÕ¢Òºfz¼ÁkŠ6J8+*¾óäEД>É™;Ñç:ufDåE¢)n|VÃu”‰î%#ÔuY$¹Û”Ñm[2kþ4 ÓÑ%Èy[ª/Þjg˜]Ë+„ìhÊ)ÃUÂrk²W¬ZÐŽžb1ꉟS@X˜Z.8 ¸¿(ÇcbVͧ³€‘$æÄ¿/Œz K̪_¾Ô£Ï6ùùþ¦µ³OÔ×{Çèý•êWΠúRƾÁΗcEmbe"(ˆðØÅ0Ì„—¦cìlÓ¹¡J"/¾ôÏð >“dv*Ý]Š'J¨¡DÚÊêÊR±Õ®–—żóUû"Ÿv¾ÌÁÔ1ƒÔHôÃæ¼â¤æ’ólÍ)•³tŽRrεð |Öû§´žXHÉ ÎÞ‹Ïwºñ=Ü"N¯7®ØFV%ÑÛó|€ìnpˆTé9±=øá _ÊáÀÊÈùæuß«ºH‰X’a>y†¬Ýu˜kçOªê«a´F×G– í4•ß¡À{Y­(5”Ö©¾-†|ÊDÁU¬R¨Ù)Nü˜ÀU{øR|}þ*ÿJ¿ò:ú8üu ¿€fÀABe/Ðå VÚQWç³Jì»b*úÍú™mk[Jjœe?Xâ"ðfŠéˆÒº%í-@o½ÐÕÒÜ7ú¨ÐêúÄhIÂ8U.ÔM‡0¤¼˜9SEØ2ÚʳÌÎ2:Õïâ¬sk‚éÞ2bNÂØ}Ê€‚ȦÛÈd£^£5G13£H•«*! *d@Th&Gü(0mxÞ»Ð)| ëšÚ#®Áa¦×? O £ºF^Œí’[ñlŠl,w+#™ÆÂŽTAžNN 'K6çõ|–#…ŽßÍ­û¤¤;èÚØÏiι¹Ÿ]ëÉ -”=°N­þƒ |ÔXÿÚZ•ÐîÞñnWL·®jCÖƒQ†‡;è<]µ„B¦c2Ź*f6{ðBÔ0+ëH¢f.Šœ‚2J7BäÈ<€$.›÷w,¼xS ×ÔD“#‘ëÁjL>ŠtäÊéc|2†=ÎÌ4*:L¶Áküøä‡ *3_õPlÇ‹ÇJëÆv‰:ã®õæù«DwZ%Îijà êÖUn`q¬_^z…ƒüÌ~“,pýˆ.Äbf¬Âœxç&‘wÎ4„83vNÃ8vÄ¿R3ÖÏ_¤ • á)!÷‹øx/]Ïñë”2/Áä`s‘2Œý¼¡AèXÜO mªðà2 WåˆÅ uA«&5äÕV¯ÏÁe½DIIQëÌý$ÙË.ø“)EX ÊH†‚¿……¿þû ~XQ‘·n7J•ÅÊÅØKrç©“ogÁ‡ü96 0Íe¬ »hxYÏfï… (¤ËÂ`ªçö€‰xØUæ‚'ÐÄK¹npÆžD©’÷ìá"úKù”ºù¬³Ý=kœ¦õ%\]åöI1$#ú‰]D€ŸQÔèˆPlÈàwrtª®ÔªFR´ÙËÃñõÓ&±ØêÉY—h☲+Ð/p~áÙl½Øä]Á"­UC2o¡²n©Ðòjç2FX0Ê S'B/ÜnöÇz%Ç"¹[é/ïx+‚ A’mè\[k¡o™ Ó‹+œ³ùly 5RÙ_L)Q6†*º‡—)gKÈŠ “²1P{vêâÅPVÁU'ec'9m:™€Wìä]Y¯H׬кæÁ 87žZÚ· u%§`¥y¼!Öë»LQ\ãqû¥j³|šÊÜ“k‘kmX½Ág“1%÷ì°ä°ã /Ô^M¬Oį߯˜´NH35½Ù¤.Ü–{á$÷‚'âñªØä,;†7‡™^÷nòæÏVJ òþ‹D»?\fhŠ[$7¬ŸI%é“®¡'F˜d,L\³0Éþˆ0q«…IöáÂÄ5 “ÕÁ·›„‰[)L²? LÜ*a’ý1aâêÂ$ ‹w¥0‰$€,à+¯Ñáò=b „k6õ&øÃÄÒ„»á-º£…ó$A°N7ö{‹CR™«fÓèI&Ë KPñ¯\ë™1)0ø3‹‘ñ€±sFÄ8s®ªwÖT«ËÞ¥TPª.šË5H^ÍíJÇÇëæ†Xô Ð ·4ÑðÙ~;éw×z§X%䇞åó!‚yé` `†ì4¯×)°Ús¿S.[`R b‘ã¿%m6 ® G 2^yö‡7¤–0íp™ß­CÜhý€ñˆUÀœzS^BvÁˆÁ¹@x ]`â{²U(I#JR[ó!JÛ ³ødÑèl0Óç³ å\_@â"5oa[µìî!{2‰³:àNüãñ{m¯<§n= n;šÀ&ãó çd•vëu 5w° âˆ]÷LuÝ%( “×½s³PùxNÅyPÏÕ.¿i”Ÿ­•îE?ˆ’¤QKä/Ç$QÜPtü!àCÖ# «à0[ûýV$0ÒXD—3C¿Fm3ë#⺔€þðòÎr·ã1\îN=–S7”;u ÕÉÚ¬îÃÏ϶l8}Ž †XA Ã?‘}lÚ ±±¡ûíÈyzÌrº#ð?„q ª”Ž-ÞÀ÷ây­ê=а ÌüÜú/£Ùî¢.Ac)®_¤$]d³Ht g œA/Cg‹|Âç`ŒÅÂìãÔɦ±Ój Æu_?q7"ÎoŽŒÎª"rMã{PxŽÃò4à8*ð-ì FVú޽¼}F›KvävìiE¦Y}qgÝ™tvBo’:CdMð&ÖòìÆ"£%m èœÖ:4‡LFe(ïƒw €‚·G-ÁUÁ'ÑUØ1¹ß¦ãšúNš_Id%J¢H”B*Rúcdµˆó´âú£hbŒÊùhyŽó‘ðU¡Kd¦xív‚*÷RÇÒÜcqÇð‰Ô©é³ Ò#©ï³k§âHU¯Œ•Ô«»Š–žxXÚ¨H8'ˆ+WGN;"PZ$ôjG‹B -ì`‹péMpl)Kô$ØëÄjÀÕJÙ–I–ŒœªBm4!÷ky•onT40…Ìô1X¿ÌÈqç5ÕK.!zƒú½ƒ4To÷ÁõMgÓ"®wBv$£¼ÂoÄåà\Ö…xè©Ë‚'³È9…•LrJ#‹N"‹ÙÔ ôz{wÿø°›|Ã_DWÌæ.úîÐÖû5š,\ ½€7C±= © ­55Á@þÀð„£,úÈ%¥ùŽYšŽ_Wƒ§¦vàßÇ"bJüK Ș(Ñí:öþŠ9'G‡é—¼: ÉÖEõe —óÅâË–³þ\x´>b-<›æNÎ(€;¼Â<ÂùîD2Ä«zD‚ر$¡ÓÀŒ/lšÈäÀ¦}F]Mu0³ÒÖXˆzùc ¤8C<­ã—gå‚5ã=©'Gw¨ë„[FýëƒÐEcû6ç*UÞà˜©ƒ¿|)ÑAáÃï2Ào©È2¬¾I ð‚{PZÌ•Xç™bï>–FÎ0G“wB<Þ]äMÁþèÁVÛ|roS-W8ápLéçbä#ʲÕÃl\¼-GÁî¿;‹·ÅÔqÔk¦Þ•£aœGj‹šh™3Ð+ËŽ†¨æ0ø.Ÿ”c xÀÞoA0‹òš\`¶\»*A=LJÿ,p‘óNò¾ãÕïË=-ïüÎwx»¬ùíÜ]Þ„0"q‰r;ù2Ð:ÁÑŠˆ(~—^÷Mj·ð­6;-ì ÜA)Mc™­Ëd‰M³¦žuä vüJt›ÑÕÈ$æL’µƒ¸#/›‹7¬ÓRï™”zGG1>/C®a&$”…¢Äç€(s^6z%u 'x”‚T©¨bò5¦ÖÌÞ`ŸS pìÅûùâ¼Å)ù |û3<\Öh“÷­jìGi üórDÆë+Ââ@jf׌‚¾MÖ‹*uÓìxZ"OÐ…ÿŸ.ž½£ílR,(£í[LA8êp,ó:¡”ûƒ¬ÍŽ?ÝÚÜêù;‹É[ÿP†©Bùñ§›Ÿ¿pmÄ~ûmØq¬W Y“ZÎ38ŘpŽú„J1G —Ý“‰)€Ò ïÐu;ÒeC#„l-Ô›òë†é7 ;ˆ,¿ÒáÒ ª<™–BD„&QªŒÀz¡"Vü|Ùð»:Kƒêå®q¦ÁK­”p„/§N5?IBëVÆ ôÛ¬-l1 à`ôû…ïÄ-ã8]Kûe QHÖ˜ŒEl2NCyUg@×!Ÿ6ã ž Â»2_ΆévE˲+X‚WAxñºB¬x÷€ïD‰RIã/ÙQÅi{5¼@„ˆ2Btº±^g‘¯‘_ª )£‘ L•ÅTC5q×Ý¢– ¨:}*¶¼^ tb"²ìÚ|îƒ6ø°˜|Ôï&ÐØ°VܯìY19Åìq>ð T YH&ŸD#S¶‹•Æ`½Â=j£‚#ÀbsjgóܪÔp…DÉ|Ùj‘§È©¡°RѬ5fDöéÝ (r §%=:ü"Èù«Ø•ò.r¥ŒgNÀOÌÜàªÔšë¨WI=t/ˆ˜ ¥âŒ˜PIbä„¢ð0ò%B=±9mõ5æ¡Ã# Ý»ü½YPi:#ÿ4Ž7¯7«ÂxÁΈšqÂ]ãZ]ƒa ½„N’CÚèž Ì”InBšìEÇÚØõžK0‘Yåb¹ ƒƒaohà‹†a㥄abÍÄ‘fòq%'k˜~›c(3xޤ‰ªÂL­7Œ9›æÚþGEä¨ô„ ‹]Ü3Ý_5Ê~·4I…çFaû`)%R¬/Üßr]pu6(ÆÎNPVý[FÕáጀº“‰íNw'B%Zn’$äöpÿIžãþ¥âÚqÿBqKIÅISº‹” …G"ÅÊYvNúž®Ç‘01ƒå'ý]1^cø%¹¡…„ ˆ Íi2äè†#œ¶‘iB”u P¹KL¡2vqX%7аíh¶–óËQ57§27È–°P®8„ƒ‘bÒÿü4v’åÒæ<–óÙ„À»]AVU­GS®ÃQeB%ñ)fõz ×ò:ºÞٌΠ‚ªLù?$£/Å~éw¼RN§Þ‰…§H –ÌbKCM£›SôÁã9_=Ψ›L_<ÐÕZoªy»ôå$øôd¼vOű‡ŸI³k<aÝ5k•]ڪŜ‘C=­“ˆÆÎpB)âbI:Yž”à(%?Ú-‡¨»õÍÒC4p–äBVsB ÜýÁ“už—˜ÜbÙKüz™³·¢dŽxõá$Ÿ¾1QG±»œ‡:wï„Ê'¨)z§Ô˜ß„šKœ³>™œRò\Î)º.”3¼×3Åœ£7Åâ¼K~ooð¹UÐnë„7Æ—:a‚5Í •U͵ÛÁ‹U”@öGÀ Z’õªh"%~Íì"VÀ{Ü3š+ *" òïÐZkQmÎÓP_7¥:Qk6²îŠÞ…7qÈ$XÃ0Êbp³0 P'"ƤCï?®Œ6®!áé,[iF»0£ÑJF¥ŒäsqD kJªFZÑ—’Åž„“€è³î½×@c® E4KMéjá5ÿ`¤…7ïøì†ïVìx¯8[¿)ÁKØ@ãI‚E2Õ "3Z<yor#nÂïÁ? >ÎYXÏ>P⸕§iÕ›¨·× U{câuA=ÍC`Þ j$%üý÷DH>ÇþºúëÐ[´ª3áÈNB‹¸jBí^rð¦AôèÌ£Ck:S€VYqr)Õe¨M@“,è]@£hdpò´ [G釾âä:ö{B{K"ÿp¨9OBX‰WÐ=P£'HgÁ¹kŠ0Nî~£²b0Œ! ‹üìœG¢À_lÖ,+ßÖ‡šuØmábåðcÖÔÕäm¾1ƒ‚ð¡ ¸ýz~1›èÌA=´2´A¥;hß‚N ²ÙiÊ–{ 5d¿X.Æ…æ¼4Öõ(Ý ŸX `Ug³jâªzÂ!0ƒú¾ :Ì¢;"ÂW“0‘‘k@ìªÜE8vˆl ½]ôBù$b%Y Qœ€ ¸ØàfφÐcP(ft#,"2¼Nj¶š“ôl ±k’tç<¬¥I´Pwo0UÌM°b£åwÄ@ƒK² FW4]²¶ÔMÉ1À¡–K–ÞßñÂŨI»Ô܇.µlÅRsl©e«–šûK-[¹Ô"ðÙ ³n$Èn4ë“f}í¼È/ÿ5±PÍMÁ›SmG?ï¢×ýY(a¯bžBù¨„&RLT+=®8÷ÏaÊ2g´›ÕP? ì¯kbÊ‚Â:~À»$½Ý!=‹`íœPê2«J³±¨/*¶Ï÷¯WÌ?3qÖ(^Œ;$M«H«(Þ­ß‹Ù*qÙ›3cžñ±LDE轊X®p{¸rÊ’L³ñ„¤ç²øj“HKM(ÍPÆHn“[Fú®ël?ŠÌmòš*ŸIÝWc<¨agÇù"5Ñ»?û#ì[=×â“tÿœç:޹‘ÓZýkî;­Óè–»-º•}htËÝâΚ£[âÿ/ŠnÙxÝ¢[ÚYãjnöɹQ`KTÛ&ð‰ºŽn6ß’€Â¤Š\z»dIÝ.6úÿYùâ’å–v¬9x~Cü«É׈»…Ð)þåî,Eîÿrw‰Ý=œî>T”Üÿr·‰’ˆjBÔ6ªÕ,Dv£¨–$="öb–¸ŽŒ8 ªËÐrMu ^C½†YyHÅ› cukfÑzÖQÖDNLþšYDý.DΪ´‡¼¤ºJÍ`1§žÈ{¢jte­v‰ÒÅx¤»UªñùUãIã Ù´žõ™¤ä?2'Y2'.™“;MD¶z"Ü q¤Ö_0ï³Ëʲb汆éÐRã0aÎŽˆ$©Ê¤7µuØIƒ1Ä«  c"ötG¼mïÑl2€0ŒbP„,<"¨ü¬eyg]R=ÂþÙ3¡‹[ H’²¶Ö³ãŠÜÛá”Tï—¦iÛÕâŸv΃{§3WØ=¦òMÚQaLö~€ÅèêÛâ&?ÁÚ$÷ÖŸ‹ªòØ ©%wL/¿FI"J<Ðh‚KF¿Ð"]`ŒÚè´"ã]$²»»ZWc sìä©{¬»¨×ò1u¤“#ܯª c° ù˜° ¿H€%UµpWYá§ïÒŒ«îåéu„˜2ÉsäëBk]ÏŽ]~6vú)ä?çæ$Y4!±fÓTLä•“À[×´ØÈ3¹¸š­dbº.’uCd¾*qÌh£l(GOyÞpµ)G‰×ÕÄ.©Ë•1"Ä=…€FÀI ÁÆW´Ÿ+u9*Ñ0b¬F¨Çì>Œ®åÒ9\ç5Š‹tgÔŠS€ œØúþ·]«h®×;±îp!pä…P)ëR^Ì.í;Òþ‡†øÉˆ[*…`M­©ª„LrX&‚ =9HIÒô¬²˜Ð0#ªr§\+¤ô@fUØ|‰Ë˜|50ÁBÈA†FI €5Z}¥r³ÖÁŒ‰CÃ|q6½*@‹Åi¨ðáĞɊçPB¾ÅÇÁ(5É_\JEFÁ­¸*ƒeŠù!cc þøyŠ,ãµVd ®¬¨ÿGßÙ$„g!·fЉ·§B‚4H–âAX…ÈCÝP ÖàŒ¯yëŸEĨÒ–Pâ×LÜ‚ÍKòÃþsË¡5&&Òc„?ƉZO‘%¨{UßÛS8hhYU¨¥I8ÔàÕñqÙON²žM¢çl†+{&Fþ½t%êàufL/Ž#”…Pa–s¡ÉYøÑà"r#¿À«r$G·+#ÀtATSªÛµœRÆÂؿ˥_ÈH,@z5d¬“vŽ~ÎM×àºy¿…®"«E×ÍXf8&³Ù¥èuŽìG®×8¥ákÎãbkSãmjÆn—åaDßøá$¿{{9-)›%T àjHRH,T„ÇDeÙ8V«Æóë-aH^òrÅp\A!œ¡a>zãå6í÷K¿v•2nN•ˆÅ4P+|hùh¤—8ªñˆÝêÍ(ßZË…qô:ÒùFÁRSægÅT³Û;2¼!OCü›o±¢%9¸ ô/ëA2;% eæ²"jXhHú*9MK®® Ñž5.[…0ªÝ(¾ žˆP–Щ5rgPÚVjÑbR×*#V'DuP‘ZÎb¶Õ ]ÿ52ÌäÃÈ"P›Ðb´1Ší‹ËÙŽéÕÝÚMÕuk%••^å¹ÂÝ;åòƒ2}j$\ËÉ[ï©ZFºð€ÞŒrf@_6\åŽÊw™Ö@­é-DÝ¥ ŽðYQ¡íqlGÍîPjE†ÛÁ>¼¥ôïÚ^¶}¸û"ûOc^ê7Ù+Q%–Iåøi€Âu‰sõ‰ ÌEDбHå´œ V0±œ’Æ—kk®˜²Ö€£ÝQÑœszmì±K*ÿ¦Y{”Ïç%œ¢Ä?K™˜»À¥âêåK䨯QÛ  ω–·ÎFóÉi _‚ƒ.NkgUQæ‚iþ°Ž&t¸+`'hIZ9Eý 3¦×N(ap¬¸æ©ö\&çE«1Û¸42r«¾¼“ñ¡. ~wA« 3®&Ë*ûnµß‚C ê\,òaˆf66žù!yñK²_d0D]‡ßoûï÷ú»YÛÌðãþ‡Ý£¬Íf!CsáÇ­­GìÊ?8rmøålž_ž×®ú""}µR¶aÍUÁè7VÃXV‡j(+Rÿõ&‰t¦0¬u?¸ª#*´«²JhüŒS¶¡œVÿªù›ãc!hô5šÝ Su+c‚®ùj¾A—ãŸÐ@a, ¾ÇGCü;½Áÿ•ŠDùO§ðIõ}ÿÅÔëøˆUOL)ÿ5éuùÐÿùþ´ÆDÔ­YãÄÍî8sºì„oßëDä=¢˜/ÃÈg£…ΟR““¾¯Öå²OìãÅ‹éÑ1¯À:‰YÔBÌïAš[æÏ˜ìªGa;è[åMÄé˜Wb¤¬l„ñy×8>ï>t|ü/Dƒ¡?òМïòxß4@ O˜ 8Ã1øO ’‹)»Ë õ´DOxa8/tGŠ*XLNñí@ä”#7t³>JFÎiB5 ·ä`ža^Æîtª’ÖD›=p—ܦ±‹èpMgæ?Js·ˆJs7 4f„óEÀ3ÖlÁ*bJŒŸNl—Ó·|zwtt(D •ìàH…ÀÙY1-ЊT™¢CŒÇ°…—XÇ®S³ù¸&X‚‚¶+,@&^‰ƒj—[3ôÁXCÝ‚ÁÀäQõÑÒðN·!d£ý‹q€XSJvCSº¶5ÒHôl”pêQ+8ý™û“D™ˆ¯c”U6V܃Ã)nQ“ÜÂdeäÖgû€ÒÂÇQ¥ÞµÙÅŸÁf7R@1*XÍÅL=¢EiJÈpþš* ¡¶tÜ»|$|7×aC••‰]iÁRjÏ:AœÝ†ufíÚlCÀTRÙ(´ Õbt"ž… J†—Ýõi‰eNBב2½ú™÷T=””q7—”9µÀ¢µÙ=Ø†É ýr‹LÀô ’J-ŠçDŒöw&UI@{:Îi ÕÜQ|„án^ ^/Þ.a˜ cxƒgãîV™“­9‘›æN4bïu7|6ª¹ÁtHTÏ©J¾0Êá9I’9 ]à`72@‹s0qk³Mœ@6]p€C”×ëzÅ`ßÃÇlâq¸-ååCF•¡ÒÚ^Ø«îäg„:8½mayµ´ÐA"3jÜ ‹•6€í¾ÅF­ØûƒPÀ:ý`£¡#«iv1:_ài–yO µqdð ´zÔ x¡’†E=¤Úß\«(îôQ¹¦³µåˆ¸)ŽÄE‡6”倹¹±~ÿf<¼ø,R7­û?œ‡K‚êSÂÔ1=LÝ]¯·Òjké¡Á˜ ©âöv¾'`æƼ _aô%aį’…ÿÓcÔ£ÿáå½"]ܦƒë@I^Š«Â›Á‹.+eòïPü‹Y­‹] ö»Ê ae uVç“ œŠÄ?ÂÛW4@ð¾v6Çlháe2b=óD c™¦ãòm9^Bò2u11ÆÙe0u\…áÜÀ*Û_å}ç*ûé1P±úñ]$¥ÐÙ3·é„rhN®‚3Zcr\ÖóÉÑàI÷\3%“QÖ»:5X¢ u?ñá»~¡ð:‡¶;ºíIŸ7š!W®ªüYžHW$Í & ý.f³ ÄQgÙ›¢¸Äc .%TÊa6|ث٤8”j ø‡T"fÝAWPR+$øà}\†üž:“e'CaŒ ÜÌ5›~Œ§;_,rØŸìTÒ瑹þ© ë‚‘ „Á"é‡ý(||2ÿ¸ë¨"` µ…$}Ð+0:âð…×RR©ô#•þ±, .8Oüv–S—•70¯õÌæÊT¤§1­‡²‚D ¬@Œ à„! “Jò‰4@Óo“Új£·ð0ÐéÞXAG¯Ÿ*€~Ô®[äo(UxA9Mœ1)«4~);=>nóÀrR0©r:ʵN ¢šJѰ҂tZf&34†5S)'¸ÍyN~%D—ý76™\XðPJù¤ûœÇÌ늫@p†ý7¬¼•Ðëk¯]^S®Pd‹8èšàCŽ”P¸‘9˜’UñÁ)ëŒNO!‹× (¶X{bº†:)òB̽f S1¦V:ZrÎ:ùxÉ ÷¼ñ]7YÛ H°Üêfªí§ÑRvšIÊ.§/fy±¶§©3›Ì®Í- )9‘ƒƒ ;3B6d_wó2sx¢šÊI´ ë2HX˜_£–N xév£À¨¡'”Ü–vE]'ô¦eš4Å…wã®ó€{«ø0Í §ß¡½EÞ'š8 «®Éâ&DXòc.…ëÛEåMwN-Ç\½Æ<úÚã.› ®k ö½ÝÇ-Fð‚ë»E$óy@çSêlˆõ6Tˆ 4bÔùT4àUª…ÉÛŸ-Å®%S˜zí¨×Äî@Å0AE R²n—fÝ.x°»}b¨@¥új]T½õ»<éÛ§0 ‰@N~ôF¾½µGâìXÏz“P—œk’9¬ È[t]çØRñ§“ ×QÃͤo ‡…P N|¶o±Æš¨ü~_P߬Ò+UÝèRî»Ttþ”&"FŒ:æÚÝÀñA@“¡}” í^ÿÕîÎ^Óh†ôv FvT€£ÅéXM8ŽbÏu‰T°jš^T;h#â¬þú{æj¨3À,™ýIedäºy¤¹ÓÚf‘Ÿs^NÁ•à 8×Ù ·[ÕÁwÒç¸?4YTÿ4ž1ªWŸ5@„ç6Y|ÄGW°t–hêÚbè½ ßá?a#Á9Â6 Ö»K‚õqÒ à7dûû°xÔ9ÄŽM¬óê±#èTc“5e#@ôÕf±âcöŸdÿ =©yjDcûq à±@)«+‡ù‹á†óœý!uª-ÎønN¥¦­:T*›d®kNMÄ|‚²3PÔU…²™âÛâÃ=‰™EHÌ(ƒ€§dm׋‰ê5èüÈÄ‹Ùí™0szíÛfAº™Ò㣽¯ÉôÿØ«—½ÝÝýãAö¢·f,Uk}ðÏëF$ø6ÕÒ ÐÁä¬,"ƒr5š——H¦œ£s¤áQÕ@B2c:ÐÕ59ÄdGø‹ÅõÚè`Èrœ' ±cºõJ Ë3Ø¥(›˜ó—–£dG:I=­WbRçzö0Þ¡ÏaŠÖƒBP®á°á(Ì?ØÉpøk+xù’¶l¹ˆñLZ]Ê:käíä-(-@Þ@:Ý (ì”ú=CŒˆŒuÉ`Õ YY5ŒI÷†é$;-jœÑîàâ'qQá"mŽQôô=Qp‘’o yXƒ¢ýÕ6&ùx 3|:1¢8j•+Jœ•À4ÿc9[Ëvs¤û’DÚø[ö×ÂllÒYÏöð‘…[“¹a"ž8Ô¤ôrJ¦^Æ¥sÉÁªüÞS×ç-”§›È_¿Ã+&”p‰¼¦¨}v¦ w¸Iš¾½)©ÊEÂñ§·³r\éÊ€ë’ÅCN[= Å¢¹Ú˜Sƒ¯P~Œç•¡`¤wÖ°îµre"sÝ­t{u?~wÊ\–J9\Þð5Ò£ U_*ˆ+ÑÚB#Ê…Kr[«$G:ñ­‰ƒ‹#t( méeŽýYœÏÑ\QŠÁy–¨ë~êQœXsäSÝœ©È¦HyFV~´tÙÆtŽI²jâtšÊ'~È 0&â;³B@E`O¹ÄÂZûxãcÊä¯ÐÕ³Ž>ËêÚë;ržhC6n”º é¶Ðï8ýšøoL8à äe)K¾öf¶Ô¡xÅoÄî"Yj‰ZšºƒòÄL¤Ÿ4Éøxìc4MêGÓ[©ˆ>n¯wÚëëþ;^¶ÞÿôÑæÏÙOmÁÿÜûù£i«Ã¼D¬‘½¬W a¥e ä¥EjhA(gLJeˆ9ò¼IÒòúO@l)<–4:¼… f­qâ¨ýÉ‹ÞÎnÇŠ¹í4 3•‘x±ÀáÃßÙÈžFÄV‘¹éÈßAÔVHނէ¾Q:}r ßÎëê2¿š¾½lw,nôÊï^u™“×_9)‡áÅ饺dH{½=dŸ¿ì ßÎæ;ÀSÞÊWÐ9²±±Õ U_'MÜ øh˜ÃF2\»8<^m 2!hKH m“†cñiSYVë ]L`7\}KU'Úðq^¸@'`éñ¶Thì54öÞ_² ÿ³õ~}}]¶ Ê íJ +Òît"(T‚¡Fj›¹^H©•8]5ÄHt× ÑE3 äzW x’¦’Ýp$¤ÞÖ~»³4×q©Éðó\ùéy@ûNUÚé wQÕÿè#ìþ{8Æ/…^Ï\Âé1­‹LPX²µ"kåÃѸ8™nnÝ»ÿ •½7²ôÄ_–y‰úÕ»NªøˆÖÏüñý´ò¾ç—Æã,–´ðåÖcߥ~ÛüÝw¬ýÑýN«ÓöÒwÍù&¨,Ìc‡­ñý¹¿Ó÷Åÿ¯ÿºý}îï¤Gb7íåð4ßgÿ¿÷õòM½_Ǻ{`_]M×êCD6BBÉR;ú݉Ü-ˆsMÔ4 ï5+@U=¼ÒÌ;Ç'µšeª’£ÉJëËwÜ/¯å<QàR5üœ’6'BʘnšýO¸³ºànS²Q@ŽŠAgÇôA"ÁçE^æ &‰7ÁÉ4pmV04 ãÆ)¬Ä£}<t¡: œàuíU>­Ä'ð²7ØþÜýÃÃýÃ$`Ïd?†gM½RM®hÌpBŠ¢†b/0C#/4¨ŒÅTqôjɪ¢fÉäm!¤¬p Ÿëeá˜77r0>ÎÚù§ONƦü¯AòŠ—üãP‰ ÒÎä‘9æ`Ie‹‰Ž7¡:ã— ѹ{‘<_°ð¯åÜKkŽ”3¬·Ñå%Â^jzÉþJÁ½Ž¡¢ƒf†ãsDzhéÆ`¤dã²·<€°¶6–C»©¡OäÁ_^&º¦(– ÖšIè¦*JøÄÂï ¸â¡µ´Ó,¤ÝªD©y3OI«é!‰W)”SòºàhYU¡£5cu¦ÔÁxä®Ú]÷’Ýõ|§÷õÞþÑ`g;ÙYýw%j]˜ÞTe”áÝ”ÍÔÍ6áGS3Ïþ‹b }N‘Dì"F·CùÒT¿ê1w¶Ôd–¬Íy(®þ $¥“aYxè’ôuu|v(X„ôY,BV§Ü4ôK´TgæÛ¤Ò˜E‰è\8ï–hå;½‘œÈ©q}1œMhÛClýõá¶ÕÈ·”dªa~¶,«se²”s{ƒðÿø÷fgÕÚ¸Ÿ¬£~?ëíí7û]µ^0"½Ãž¤i®}mÜUð½6ÆWuíAÒµÞñà›ýøcçÞ¶ºÌ¾É-&”'Xì“¡ÞjA,¹·¾¶•¨ý¨˜¿-G]¾_ çåøÌë«ýéÙ$Ÿ*{McŸ&}:ì·s´³¿÷jÊ ,/Ç »<ζîgͧKÐS¶6¶ðsg—×s¬‚òç‘ÿóI¶ùÅŸ¯ùßïÙN{1 ”~]â;.çêÃQÇ!DïØcHç~ãO°³:Èý¿þýïÿ´¸kÖè!‰þóϼ¹õÌôgøåßKòÿ3ÏØðÿ>¼ÿõÿ’ÿ>xððþÆÿÚ|°ñùƒû›ŸoÞÛòßo~þùææÿÚøW½äMÿ–`¾úGÎg³ÅM×Ýö{úrÿ‡üû L.ˆ#oñúÿ,ÊŤx*3¯.w4aþòý n(ºz8_gÃ3Œ?zÁõÿµÐgë?âäöZp"¿Á¯9¾wï‹/àó[þ¼åÿ={Ö‚¾l†ø—¥Œÿö_ ¢ÔyßK¬íì­ v^ös·³Û?ÌŽŽöûIÛÙ²ílùãò»ÞÎnqzû/4õ¦ûïÙûïyM`çåÁn?;>êóÝwÝ·wÝ7–ÛÑñ³¿ö·Üôvö໽ïz»;Ï!׬±±¶±­§Ç{ÜáþóLð6½½çÙAo0èîe;ƒþˣƖÚ–Â9=8ö7øÇ÷²‡û/q<¤·m|nÛø¼õ^äpwÞdðMŸtÐÛþ¶ñîGöîG­§zuö¢÷·Æ;¾°w|Ñzúâ°ß‡gáýíãÝÞ`ç»~ö²ÿrÿð‡Æ& J‰0KOûß÷p·÷Ÿ÷›o‰×ß&õôEïhÃüMÖ;Øi¾/ZoþS¤:Ö/–—ÿdÔ¹úÅѪòŸ"=Ë‹ÜG©n–¨fwÜGAkûk332bܼ(}{}U ÂFÃEù+9Œ”÷º É”½òç¢DRL)3µŒ¡ýPrÄX@/‘çyTYCj °›E!=ÆŠ‚³LËœ žpè%ßiiÒÈÑ‘k‚ØRoÈ™šh.!{û×Ô¶˜Б|^Ës‘OéR¦6Üâx’rŽ”qiÊn°Ëà‚‹Ë…© …>Ãaw`x ·ÒॆWp«Q0óp%Kêù²¡Ã×uÜ'Iá%õukEžæËüZ˜âa7È#ÜŒ0´bô®ã¯a ÃÈæ3ëÑÚXQ6ÂÑŒ¿·…Ú”—2âR°M7%‰ù¥B pþ;ðf5ÖI÷‹2ª¯%ó‚T×I¾’.’ç/z ž¥RŠ„RAhªÂ8ؾÁ‰+Qåáuöãl²ð+å›b>úµ8[aÛ¥þ¾[Î*³G“ñž*"*;-È+°êr˟ǧå™ÿ¡%\KkkÅæÔže’û¶_ÂBd¢0ý€OG‹U!W/OJòr¡›^JU-)˪Á¢ó|>¾B†ÖI¾@P|ˆô_f¼FÚo?'ŸÊà|y1Üêð¯ïïþÃγ—Yuï‹wþ«Œ¿š.ŠIöîÑCin×vg~É÷ V˜Þðrçà¨ñÚ(ã_¼ñÇãíµï~âÀ€×ª¢Ñæ| äʆdfÊtYð2 %áMée£ ”„T7’ß ™ài´µøªr. ¯%¢^ˆ×´48F©±<âßò‡ý‹¯_C£‚„bÓ·aQÖSG+BÁÔŒé MÆ'”ÔœRÏãWŽÃ „ˆnسe>÷‹¬@»+æÐJc9§Xw®cú‚ýi!Ž-»X64ñdNÅ[Q> q²šdTÕæÿd¦°õC¶–¼StF„8 ¿è;'!—÷J:#´AQÕGˆMsvôŸ œ²a¡6 `Õ-™ú³u01GK¬Ù¼´[X3Œ/Gšoe,X*˳;®D^x®éü3ZßF‚Q¯jktòjª¦`d§æh“„ ##é5N»”0(o »_!/"þ¶ªª„&zþ›qb”¤Þã‘©}\Š@“—y¼)Õ.˹xJ ÷¨ ­RŽy0d$*“VÇÊê^(^Ëϧò!ÀûR¹6í98ó¡88O1ùÔaN¥¦× :• 1¥ 4– /åf ò18f‰±3ÆÑôÔÄY7’ûqÛùƒPV~$8©" â;•ta"ÔóÍŽqÈñvæŒHÒP¯mKX#®xаÀ7Òö*Æy~é-ç|Qȶ…V0ßEá|ÑÒöî0c8¹ÍM7œF°ðù$FÏŸW¤®j‡J¯Óx„áH{«ë²ØªëP#Œ"ñ¢À ¹ŒÎêéñ°Í„$«³Â%Ð$9(±]d![=w¥UòlW§°›Œ€â‘’XS]g¥g^DV¹UUÆÅkø™•$£(°¡—äž‚a\eB~!V¯*ru^ŒæåÐà- ÒÁ Ë ØA›Åó pµóÙÄk´Ûô×ÄØít„‘†‹vníÜÄÌsè{£D‰J×kÙçÄ”68Ä?²3c¦ãÜÊܹ {ž  û¯²ãé ðev„ù9ÇZÁwÇÕn4MØþÞ‰}eo€jÜ.LP] Ÿ?¹¶6J8¾ nßñi“Ï©â(]J/=™`OT«f^Ř›šL½û×N} Î…×eFpY› Tà“ÔÐVp˜»úKAá7²ÝÐö£ó†PJÌÄ7,®Ó éÓ°4Ð+Ÿˆ‡ôTÌ¡¨iÚ,ÜÊí×Pü‘¾‚ºJ|”í…\*­¬Å¬Fe5²=k]‚W˜Ô(6O|MÀ ¯]M®ðo¯ÁÓÒìóÛÙ{±’þhçÇ~(ã`®PcfçŸßÜ;¨;Ã÷xi¼A7ºTAn0xø¨V2g ¬YbTfÅ©¢÷G3"ˆ+Ä‚ÍzÁå'›¾™(&?Ü:%ÕæEMÊÑyjôt+Í7‹?Gâo…‡ ů}Hü98PÙ‹Tþ˜¬7¬«¦šÇñ$¢¨P°­8Œ.%fÙUR{¤Ù¥ $µUZÛOv‡%ª—º°ÉéAS}r²Ùì~B.âBcco,ŒÍ¡ÚÛ‡wz½ýMûÛ¤k°}O­ÅÌ£8'`€ã 1îÞÚ›ÏÞÂf ~¢ŽÈC*ð4gÓ8O† nìp€$'Õ=((0ýJ’ÆÂúæÝ’Ù¶bQ n;4çy…T“Ùì2]ta^”Õ´62Nö¹(W¸»j6 L¾T «‘—ØßÈ4Ø®ëAVS”eÈú(.ó×¼žÍ¢TH­#þ»€ó9:—1ÓÅ­˜Vã0Ó~£öÑe.ô‚‡Ô†ô† N%Ö ÝPzn‘Ã^û¬u'ºŠg¨EåЃû¹BË^¹c°0ÑcÕõè—å>øPRãƒ_¹£Lñž®°Ê 12f†™Tq1QAŸJCy3£d‹+0\%øKôœ#ᇬ€„¸ˆé¯iuEÁÚÚr0¶šö‚ñrª•¼öA®,;/.pçûa>]B0vÝ©¬ŽTL’¾ â<ÅüÞTãs¼ƒ–'SÂ" RU-¿íýƒhHúÏ_ó¡ÒUÙ9x¶¿k>õãO/?ˆoT>¿î ŽÞôì6ÈßnƒO†ÔþºWÆÊðÞÞö7û‡~ˆ‚…Ûß{®ß&z_àIÈ¢“º®ÒiC4‹|¢Íþ‘…dµ’Ë:h˜3J)5RÁTw<ÒzâÅ‘É/v²µ™>[k„‚Š gk‡".Jzg=ÈLª?„'h 0ÄA ¿뺂|B<gS2-‰ßF?zK붯ÐSêÀñ[i7©'‚Ý!w­I)@GpB/ÃZ\/w–³IÎhÕ‚”…†ü3ÀøhüÅkÞv„¼íî¼$XD™–ãÊlb K"³ •ÖÒOûéi9*1Íî¨(þ9ûŒM†8×&ˆÈäïêd;ÍÿáwqØŒ/z[éT‹u*¼þõ«¤²àR¿}[±ƒˆÇfg+G ˜Jj BÕExã»òby!Ÿñœ ûj¢µžÑæ¡QsŒ^@­OF­q„`>œ¤@ò8‡;:¨H‰{7w×%¥ò2÷J5XË‘ Ü×—M£ .|hɸv)ø‹K«ï¤ã¼®‘çIR#ÑëË›ÃI?(„TFM·ÒŒ.\]a›V–0YDT¨ÄÄ&Äu:Ö³ö öixö|Ê~Ç È?–s Ò÷¨Ú©ã„$A|q‘£‘÷]9c~[ïd½0øÞ$–ù`7¹7p7_úÿ²ê•àWäB¹u‰zE¢<›¦ƒ,\R„º#²K¼K€ŽE —ÁGê«„°…ÎñײR³O.øO½Íqôùò·¿˜•²ôß'Hìg²þ ›3‰Ú•+yÕô\[©$±]P*ó:µ‹+Ê0JÃÁ†iû:dAj€ *Œ¡i%µ…˜­^ˆ.,ÄàΧ"Z˜\cÅ+ z‚5Îx˜Ÿöfë…•Oeȱþ w8Tʧ0Úöû.¹>˜{†N"ÝŽ¦§éTJÈú™‹S|ÏW¤YRIjı'ÉéoèñÖ‡ö$êµýAÊBÓÃ’ÕB.Êȯ3;U'Ý{Ë@½¾·ª×¡wˆ=¡~„àI9«³ï”WQ!ìU¾:pZÈL $LâÑÙtj•yÍZ2›þY Vu²:¢%ðÄ8¹À0£v¬Í`Jçük§Bølà R¸=´áu¸'!"éÌm·Dê™X6u”Ó€™w©¼÷õÞr¹Mæ1¼*œDµDø1e;‡$Q=JÔlà$܉ ùiA‘±`Ó™w*Ð-­_#ÆE›9‡^=Á³)–`•è'9 ¯ÙAƒô¹|pDã(Ú%“a„þ€H̽¤Ù­´ÞÔJëc*¡u¢–S®5‚ÅEyƒo,D|‘‘@mu™"7ª”<……ì‡Å?°®©ºlÀŒ„á6¼)Í'ÑeªÓ­ZVHØ5¦ÆÚEÕ‰£Ò9-¸Û˜¬AJ]7‰VZÄÛl,ð™ãU<¢è—×Èdôúm>ϾÌVXëëëWk ?CC&SÚ:6pŒÒ2ƨPz”8sø¦ èy)fÕ†OÐ ˜P3â­o5áÀS7 šÛ+]0iõ¤Zkp»€6ûêüºpUg#ÌÙWœû ÿCÙ2mXDþ*¹ÊYw3¢µ!£¢˜ž!‰%!óÅkÃ~A4iadˆ› =½Â®JrÛ¿:óª,«s„‹â‰Jb>öCcH¼ë±)å‰=cì‘fjAÓ ø›²¨×]ptÛè⺸A_ ZhókFœÂ°§$ǰô‘˜|u°½ÊF”ùÙEØd)¤VÀ±™ÿ~0aIƒyb"±ëÙÑÌ]Aj+t\–ù$ÌvŸæª½_1tþ:diÔüFR¬÷/!5Ì.€—~¬çÓ†âà¿÷«¯ôÖ;gò=&‰ òÐhó·ä‰'C?CCßèhæ_${E•^YuÒ^s_/‘àÇ·P"TÛkùQÛ\HHfƒäôÙ`KRvxö6<Ö`[âö€yž/ì4 Õ ØÖvæÁù@°tzIÇÐÛt¢?x;–E”Іy…L«£Ý÷‡<>t¸‘“ˆwz £$W|o{øuIöF./Gv嘕pVÂ,ky=¢jYýÅÎ.†j®¦t†Fg»5ä«.gjh9.MTg6W‹K´’ÃÊÞ/µ’–C}^È\°2j¹½²¡ŒÓE%"òAÔÔòR¸¸N£Q9ÄÔa úƒ}µÙ7R~”U'ºB‹^ØÁQ+a T Äaè/îÐxPV°â¦nÓùZ±­«,oVÓº&k‚¶ƒót#ÂÎ.“ûrñ>ÏèØÃ‚@ŸvÁ(=yÃňßè`ÎG³È€``v9ý6¬Ëú±uÖ|gà¼û*Ûáõާß@®«µäBR™Õåc ”åMFäf×r|àND+mã³ÙlLù8< .‚¹¢ä 6x˜J} âÉÙ“šÆ-ô­Ûƒ¹·‡T›'8«&]ääÖ@~Ø´!R‚pþŠ(F€!í[.ZE•PémŒԮνÍô&zëuÉ`@PÜw.¬CüÓ,Ï;Á_ ”ŽKÊåA&–±_r ©@+eXéÐ ÌÈd[U@=<•ˆwõ]K÷8ÌÞàÉlêè=Ø?Úù^Íx¤œÄ=‚;­R¦P<À yå(úÉÐQ ÷ú»c}ÅÛÙ~":FT‚1 ç56.Ưi6Úô#‡+5ô‰?EÎøœ#'ˆÜ‹ÂV N™ß’çòI b½IRûƒ8iÍ;«‰¥l%ö0y #*XØžj8Èí 5IjêȮc]W^fùýÍ·*'Ù†¼28„ í…l±BZ•JcDIƒŒ±ì7Žy'ŽÏ‘}›DŒ‰xäOôÙ…ðÂb øÍáâpÝ]ËÔ¥üO'§¾´)ÖTq”Êh¤ÂjhÒêg"°¸r”úònʯði,(?"F8—yâåÀÖ@°wÂ2óÑZbhà“yñ$ t¢öIø;ý]÷€ÄAŸ¸šC'ûDÿ|^¿ñ¿ÌbÈ$5Öû±¸ÿzÐ?|¹³×ôŸw³.ºvþŒïJ>Å.}Âê›]œÞ<{>ŠüPò.õ´3¼Cz®÷Eo&>,}@x­•þ®{[ŸlnlÝïBЛÿÒÛW¯/t%SÜI/ .†¹ø²6=òTxÅÍtHM‚ß”ÝiRLÏç0¨ð¡¡®6òÙ'ÙeGHŒê“Ï\´`ÈS7/:M«†~ ŸkÉÓuöÉA;"ÁéhØé6/Vñ̦dfœla/?3E@I^B*Ngh…@Ó8¸¯ ŽÌ%é(%ãÅ ˜9ºƒO UDˆ¦ ü*2êò”Ìf©]Œt><ûm™7Û¡ªWõ‚7 Žoÿ®ÃäßÐ*wÂnQÈ>ãÌ0[ý N%RqîB}1Â`<ùŸ0´ä ÛNƒd#F˜8½ßÕMCÖž %Wqß—[&ü¶ ¾#KGál¾Ð ôN‚ZÑ—hJ?‹š‰Ü)\#¨ölèü4@VªÆ)Ž‚5®6A „Òõ¬Ò“|xÒ,‹Å¼QÜðzv@Ä6c9©ætXuÇÖSëb‰êjjÚ5Xt.š½¢ ªw³·êr²¼Ë‚Ü_ºÆØœµ9Ùª€AU‘f@ªœIfXC&°úNVzº&™_Ž1 ˆó9´ eî ÉZU>źH  0:Q¸ Ê¢Ë&ñ°—§Î®ã®AÝI௴:hPAhé£iS„ŠöÚ :9¸,hC‚TÉYÙ„¯ .p\1~Œ¯µ w¦!¾ôP“Y\êU!#À¾Ö9yÀ‚ÑIà:“Ô¥ep =Hê2„xžDØ¢¤”${Ð= @çRÕr¨œÉ¡:Ãäs ¼Í”¡„_>V’ö¶ª&¯·Îm8’½O±ž\V8™M) «úÙ5 Wð®F«C0Ížµ¹Ÿ¬^„Ÿ@»„Ó¸¼dNÁ_lnüï»V:¹™o?¿,k¤ú1yþK>ÜÆŸµ_ôþV§oìüwpê§)œwâÔßÊzË38¶¼Êz ¥þýÿã)õoã§ú#ÿüÍüïŸ?Øü<áßÚ¸¿uÿßüïÿ ÿVó¿så™ÿY xîÄ¿YàïÆ" 9 “qðMÿ0ÃÌŽæ7º(•ѦÌ#<Ç:W*dÐwÈJ;Ÿ]Š^‡ÑsŠ–^í°|G 1YsR¼Í£Çß'ä<ǵ‰¾Iü…”'÷ð~î  «.kB»Tô#e‡eþc¥;†“[9uë)÷ r j…k2ÈTówú¸^vUBå„KŒ¢†RaÆx\Ì—l Éüþµ ƒþ0ë+ð YD¶íŒÝ=PŠîgmTË™T”Žh ®»þJ¯ƒ¢ãÉÃaÇÜï`¶›h#‡ýÞó—}J€.î’ŠSA oð“ã[Øýâ4g|~’äŒßÝ^MZ´¸Jðî¨[# Ãøé@1Ìz𝻨šCRtLBc’¼P|sU™EXÇÄ™]4´¥”nÎî¯X½¬øãúå!’Õ”u°¥Û^å'–f¸Þb÷d¸pQð׸w˜Ýã ›MƉkÑmäÐ\•|†V‘’b7¿]»œšíÖá·­Ù$dA{FHݾ—ùµRDJàÆ„ÔHE‚J™„Caƒ,B˜®× òŠKï i.è ÷ŸíÐ~gƒ T„ûŒ9âmpF”‡€¥¹¢D$æªûþ º[#þh/ Ùú.TÅú`þ±„å{ZBéHµ†{øàÁ½‡ŒN$ àרòü€ƒiÔ÷”âͤ7ÃâØm4Ÿ¸B¶A $ÓµH…Œ<@6íXÒ¹ßýïüë[:”½ìr ìÚ˜†¶+|QÙÛè}’Ó¥Ðø0XI’oBOT÷?]*ðf.w¦ßl¦gY¬ÐñAM´ÿ´ ê—Ö+^4ÕºXytÓ!¦ñTDl)Së!Éa&Ï‘C*“CJ´æç†ME7Sb‚(§ó×'AìÀ-W¥r¶ð&*4òÛHŸ“ÄÈA¼‹¼ð <C$N¬=ôãhräåqÿ­å¸kÜ*_ÍÆ=ßæå¢ÀéùwÄ?òï6ÿæ¬ý ›ý?[>ߪû>ßÚø·ÿç¿áßjÿŠ¥ÿYPˆ<ýÛô/®¨Œ†½Ý¯÷w߬(y—Öÿ;ì}¼Û;ÌúßöŽˆ:ë(öûÍ ¤gåhÐÛ{Ìàõ^Ü© ´ÑÛª.F³Ý­™´`ïùw½½AïëþÔ}H½¹­´à󣦹´*à eìÒ€¸ˆÝŠ%`¹d (úƒô£ØHÍ'g~Í/Î-T"$zšži<ÆX÷š™BöÄJÃGºWá [+t@ô7LVVš”¦ÎDß´Æ[AÈ¥CбßôP í㪉DkÑ£@ÅZY5M3¶©÷·…Û˜¸V¯ˆôš ³p쀓"½ÁýöwªÞÞà|cw(wŒ¢†=Å:5bîïh|WŽëø4"›Z¿jqz%e#˜µCõR¨^ª“ñãy1qX0h ^f*¦îïj¸ð Þ=Ê äQ_D‰¯‰»Û€›RZ W!††qu |ˆ‹JÖ«Ø£œ-TÞÕ}dvƺtcZ¡+³§Ã5‚ΖH›-Œ¹Î6a>½¤ Sº=Ö Òâç\@Qk“8ò—?ÿéáÆ“õOü¶žHÞhâd{ÒØ"˪܊w"V=6|‡ÙW?0TôÔE¢ãN£Ã‰õ f¶h¯‚;.º„Ùb+¼y3Ï4Hý#ïXnð¶£1&“$_bÌîjè0›«I0²8/˜L´p!Ý›29¡—D­9tJ.ˆaE[¨#úF$:4ੜRý1‡„ å÷ѓֳ—"ÖlkhI7 ì¬Ídü£pb!Ħ#/EÙ¨8.ä£E†;­¶SûIÑ].¼’:÷8Êøñ0 ²|£® 2¨æ~/gS-ƃ)*zF…i…U‚¼[q©;è;aapÌ‚Ð^©>CSõ¯ÞDŸ×Ù‹yYŒáÎfo²ÖK,úÝ<äeÒQ§V×5Ë=v¶·ö^ô—-Ômè¾`} ­Ô\±ô‚°õB²#ÆÀ0Ÿšòê$«A6ßní:…k+k£ÈLñ § ËÀ½ DO¡È]Y+‡£Í,ï¸À0 èÙfƒ‡Â¸œË‹ÏžS lú=ï >$¾Ð“ç(nFÁÎùbÇ3Qûð†Â—¢•…GŸ°bYÃ7æœú U>àf§ ¤~;›@WáÙ˜lz™µ9#˜zá&Å©ß1q½Zui‘‘ë¢ WO&#4|¼ÐÝq³ÿé ²”Îe9å¿§Z.!Ž˜æ”ù©&ËÏ!!áŒakqµ¦æ)„)™‡Ç7™Ùj1»¬(ѹ«4tÈ]óÔh"†¶@"¶¶"yKÐ6-r"ˆ¡bQ§äÅŒ; ÃpUÈÓ˦ ˜‚“œKÇÀ¢ Ùåè·RA¶@¥÷ÌÉã7«ßlÀ›i³% ß+l•5Ã:_œ@¸KHkãb–¬µ›6'Küy1ÉÉ3b<·šWá‘:$Œ…M7Ãä(!Lùp¼@Ó#Ι#0³RÊJª°EÁ ­ ­J¶v®•œìx–„HèûnhVmµB\§0±»™–‰ÆÀˆÐèÌi:ʲ#9ÅqàèZÝ#‘€Ñä?7Õ(çÕ›l $8òÑÚÅÂHÝcÃЈ|à ‡)Ј†‡9íRuÒ ô­Š„«ë¼ª­šVUG˜á+Ô›†cËk°$Qè æ8ÍZÏ£#©›Eä˜kêX‚‚àlµjÑZHÆÀ4írÁaªãX¡–%üO „Âw¢°.?7&g\úQa33¦¬ë $+H”èD¹d¢X-Ö+î©= ‡”@òïù˜¹õD}9§-„s‘œxçʯ±U[y2-ŠQ!ȉZµrX û iª¦œ\@õ'’hGE0ȇ08%¼2Et¢ ¶ Ö Õ!µÎMg$Ëñ-$kÏ+µœ É'wzY†ðRÁÆ4;ÊØD~uœ†ƒKŽ+¨‘¥GèŸjç‡8…š!¨vÄ…åìÉÌá"A¿…غœâ)ä×Î¥_>oý¨Rˆ)Zh¢Çã£ÃÈ$þj‘sTŸý©J1^í1%Ñ…’Ƥ­è¨i€'oŒJI>;”n½œÚ5²7[FÏc ÷˜hA0­…+[Hêý“#Ô þíî•1">m Æ ñœà!ÔZ5ÇUT-£–bö¬ý ¥-èGì"è‰ š4¦öèñ["²§½L¤´ û4Þ’ çsä Yj5â€37¤¥³'ˆˆ ¥‚LþQ¾hóö¥7óòyç«ÎWw2ü³Š¨©GwÂߣsÓ­ö½ +^”‚–¹Ñ_N[´;àC+Ê“ðf§åéâÜ…-–,´aÂBÖôâØY5%2Zý°ç\4¤ú8,›»dXM\hÓj-hv ¶?X^*iž<Á0!n¡¨¨¨3wßbH­–•!¶Û6ÈA®ÁQUg‡’;ZùÉøÓV„~Ì+æfÀ¬s¼À_WQ" iÝȌѯpÍÕÌWé‰v©=°¨N-Íö%ò»fãòLª6:»¼…é/Pö×}j´‹T’Ü’€½2 Œ`¼Ô3Ý0="˜+Ëñ „itÓX¥Î®£ðU«ƒê;c@4;§w<Ø}°tÔ?:I‰ûUË17‚·lÑ{fœª4=åfxh\D84±^Pp•^LkSÖ<Ò° $ʺ4㡸өÕÌ;m®g6´é,‹§« ôVƒã‚ոœaOÐÀãÝr‚rÄ(¸Æ­†¹bX8S]¸~o0Ñ^XsÜ+òq·RƒjAÌÄ0Êiqd°Û S:á5HÛ¹yßXúJ)¦€Î fÔf†”ë´ÒÙÕSB¿$ÍG`Iù†°Nªð—üÓOO®þ#hcLS\|´9Zyžÿ£…=løü-A–\)¹q@"abxWkïgG^¼ùµ t¬&è;èÅk9b´šk¶Ú§Z}±$ÊÙE5±ì²«ý4è!Å(ȈŒo [œ»–„ /Ni³ß‚?iàTßb¿Ò¸È/†rð¢7[=±Ý`*šÖ,åšY̰°±µ¥Çu•ÕE*k7d~\{(—â)‰ÚÎ>ÿÒ—h"G_)6µ‘ÂÓYc×¢Xž¶{A>Lgé ÒP7ˆèO˜F{ÚþcãÒÎ;ٳȆbv²mS&§&R‰—7röN=Ðòð‹ÄlO솕Æ0zy1s¹ÀâÑOcø)Ÿ†Áˆ¹:r÷ÃÈ]0ÍÓãòWd¨’h=ù6ó2.¿,´â„È»¨dVË ˜AÄK1µb>kƒà( %tà + œžU§[Oxïò€jÌr\ý*T‹!d6÷9Óqm¼ö6rŽB9ú ýsèÎß XÅU·NòjÝ+È}‹[|HšàÉvmÌXäµÅ³Rs’w¤½[f™‚¥"k\õ))›UZ‰ºåVGž@+—BÍo`Lú¬ ›G»ÔA23Æ7㊥—ÏŠ5fFëóõ¬O…–O²ù¢·³Û¡Uéyì%F0gÅòJŸuEf]Ú¢¤]è¡C§¢-Gc1-Îx\d÷˜~>²•„V,\‰¬bÚB^Á^á4LëÉ}ò#^ µ+kYè+ïj¦Š——• ãÓmpÒÌ$x¥àrÖ¹]SÅd0%þn×LO¤òYŠ¢ (q6ùséÍd9> Ï<‡…£ÝZ^I9tËe@ æ1A™Ÿ;gÞpA%¨ &9Hüí tÅƘLm¬´n»  ¶QÁɵª8ƒ&\jüßRéíÃðFñªk^_P ½„¨ §v„­x; ©Z”•IZPü‡„!oÏ C”+jöÛ•¡`n—\ÂdY*‰ºX˜Ø¬-»g‹ßV\Är½-õér‚vJ‰ùµË²bC£éù-ܬFÒìcüžÝ¸TÒÍd¯`ƒ¡ S˜¬G{É+ƒ$³X¡“Q!$¬¤ý.T3AkÊ/ÜíA¦³9IdD€GRÊ‘”x'(+ åÑ ðÉrw¹$H†ÒŠr‚§´tÊU¥ªð§ñ  p¯@ÇJH‡aµ•°Ô“cs¿ ’ ÉqX¤3 ÕCž*ÆFç­;¦ÞÕá‡Wdh¯Ò;E˜pímtÿ|5I1#¸ü­=£WЃ1M¾— µÄ-]ç°òüÚ6!.*(ËèÜèa N|Úžx~MC`Ü)UHÊîÜ ;u¿q#Æ.ßäG -g3*Äç«›¹±cMÓiw\—¥9àìÁ”(Õ¥<3FÊsBg#RêTšW¡äû,™޶ɨ8gÛÏ1í"bfÖø|ž3ɺ?<’üa2´˜DŠaTñ (-Dó.¥ƒ5 JáÉ·›[÷>CsG̘tÞºÿà¡¿Ú_ûîú×–]þ(²SÇ‚yòzôbUþznÁÞòͶ‚Èó¯j0U-9ò;ùp*âjç,^œTYä¤yÐå¥Ps¬5AÈþ‹%Ƚܠz2a.ƒf½_9:ôAh¯14 ÓÇ‚£3«;öŠ,Vä½D"ܬcÕ­®ry ÉßÃ5‡ Íð•£ç¶Åâ'éäêÓïßgg?Ø#édy ± KƒwÏ·ê¢MÆô_u=‡Ýsc SjÉA•_× ‹âw…ýÅt¢â®‚ßÃÅòEjÚÚöJ‹{,Fäd§µÅ0°Y&[>ñ¿„åÓ¦ád:WÓL-z“jíÁ׺– ¸÷Èy›}¦`Lt2A$ñžˆHS{ñj…¼äŒW“DjƒdV^ÍÜŠc³âs3^×7Ø*·L 2Ñ΀«¦BV¦²û8;ŽÕƒoQˆ/™ãË 3¿uŽ\7îBnV *ø'e1O @ÑsKbØaþ.È›1!‰××úÈ‹|l·hpLe7„-¤3è–vÛ„¸•Ú’T2¯÷]×l?؉͇¬(«mõÚ,E˜i“ë‚™|Sr>ª $1âÁ±®®EtÉQHeAé*ÓYâèÎb/Àm‹+Ôqr ZR}m€›£ym¤ÞXõSºÇ©e@Ï«Ùt8£XI=J@àÄDò» ‹ÊøBY°åùOt–iv#Ì`´¶ØJ¦vËÉÿ‰çë Ÿ†î²úZÂ)Á»#UÈÝ Tc¥­a¬gû¬õÂ8¨°ÚmðÁ¡dÒ”®¸UÍ¢hž‚0‘Û0Q'ÅÝ”¼qH™#Õ…õ3$–A½.¬`²¢)£°³¥ÒŸYq¼câ; UÜgl¦É±~9ɉ3‚(:¸.n8ûB ·†$¡hB1ɲ ñ¿YðüÔ«Ïj£¶âŽ÷r—YÚª+ÈŒ…Š<Žv…©…×ñØŸ–¬À‹“Ÿ×ŒõºÑ;ÄWÛ¹¥R¢¨u`¢GÐ8 “b*ÃOT´Ò‹Ù˜ó¹àwjñ5œ½\8 åhwEÌ\b8º¬¢Ë@·kØ¡\´å +o7ŽÝ®(s§Ž+—xAZ{5.ª|0”c´;òm©²—`~Až>€;†µ5L‰Âë³_NÆ_ŒÛϧïO‹áû‹|þ>¿œûÿ^¿ÿûrêÿò>_ž½¯ŠË÷³Ñâýtööý¸uNÆ'ã`‘Á˜SS[ü÷N¾¼<‡`¤ÊÇ™WýoÑå÷þ¾l¾Öÿ^øw¾R< ‘!¸uKú¹º•ã˜BºÖ$¶`&cªM+ÎC¦)<ÿåƒêoظïß¿‚Gl<–oàÓæãÌÿ½âú¦Yà[yô^ñØtd$'²œ="ò RiÁõxíÒ6P1eO89¥5´¶th1²BY¼…üåƒe¤ìßBë ú+V0WxÈ(¸¿Q¯¦5NWÒÏ8‰GÐçm*uÌ8õhÙud'¿)V¤#”ôD(0 *ÈÈRb,,Pð¹µ€²äúÎFIGÙ%ŒyI‚Äw©x«I!vŸ‘»\­}Æ~qa¤ƒ-@ÔW"a!-–èò÷PyœpÕ—ÕÞ°Àè3qÎu¢ rØ ‹ápb¿-ÇKÄ N cCâôw–ãñ„I-x<9b[ÁêL•—)wŒà3LÂh¡|˜ÌÎÊ‘F™,ý VŸÂ3›ðX\c|çy€y14k½é b$ÿ£#Yýõ‰›òÈsà´Âƒ^·$¹+-wUl@"kV×+â 6ãkoðlW êµ³øI¿Ð/Ùúæ«|²—7aCÝ®<¸m×ÈùÉJí*,,0#sÍÅ]>wáû¿”OÑH>Ì_ÔæÄ޶Jº³Rs¢)ŠPƒqÿ±yXI†¢ñxùã§K|¸¬¯¯³3'zëÞßóUÇ÷ßóÛîœn~A¦6+'ãüÚ_uò%×—›äü¢kåüʧr1ÍL!èÔ©x2Þ~8Eµ#ÒpéÒT_…DY®ô¬:1CðÝúØâÅ‚Ê.”ÙëU“ã>k¦qIŒÂe4«Ð¢¶Ùä„vÊÑÕz}ÉÈsÑ츸ĹÔ@Y\Ai6€Ì»BM¤‚?Ð,Iƒqfïœç“SMnm¬jä;ÄÁ Çê>^‹Nâ·áõ£„dj(޼ [É£æ8b*)…M•«×E+Œj†·˜ÎÌ 8>8¸×|²iÏ›Üx Ð8FºàZm-` 7‚¹4Ô '¬ËI~–méjâÑþ÷ÅrŠ®®z²)mß Œ+Y¸©lšd¦iŒ·É:t$ Ì)ÇÒôÚ„Ï+ C`9*¹,ʼÀkQ¥2ëVÝÂc§gN ±ÖÈÞïïÚˆ²ÉúډǦ#(49Á¾ø…1•T¸ |ÐÌôP7ûÊÊ[Öut U£¸EaAåæc$1þX^Û7žƒg¨ÃÚˆ¥9Aš$r«ý6óåæÖ½N>µ"aùîÿ:‚híšÆëb/Æ£Øtø‘—Qi¹[úËÑj]Qýù®æpÆUé%õÐÏèl>6BÌc@=v$éÅB^*:Àß4l‹)Á¹M–aèÓÛ2Çôv$3u!Ä[)T5Ø/i!ôƒäÐ!.r*£Eca2V²¹`<틤RÖSÍ <’T[å/bˆ%o+#¡T¯TÐ/:?Áp^ø]-¼"ܡث٬ŠÑ6Ü>â¶•JšI•ª€ºTÆŽP‰R[àxò>€‚¼9†z1K:‘ ½Á`6µá¯g- Œ²¦©’Ó.î¥$ŸÕÛE1¸XÖôJõË^”Õ¤ÈÇì b}JUÔУ— ’ u¼77ü¬×ð~o 3HzéÎÞ‹ý×/{ßïîïû¬ïÍÆçÆ9Oãž–Ý2‹ x÷ë¸è"Ù(Ókk{˜ šÈ@ ßÉn ´ùã0uFÃÿýa'ï´¦3Pê dEôcì\~Æ:À G`'»>„ pPs=-‚02Ã1¾PÉlN®^ÌsFÃcÂ÷Ôùû×A ðÇæÃˆAéM"ñ|5Ülã–#Œ÷i>$C,θú3E-ÓäIvCðdQ+]LLßU¹ò U‘²ÿÕ.6 mPs&ÈbK4švnVÃA¤6× ¡ºÛbb(ndO»pöOg‰3‚§J³_Qi®ß NíÄ4$£˜ÚôÚÕû1hÀê+Ý@uÌÅß*#DA~ ÀéH éJd?;»zªèlåI`hm›5¬¶·.Ê –³%h†žUaT;mƒ IBV¢…†˜¤qÈÓëè‘Æ Ð+SB¹tŒp܆ú#’Öz8̵XÒ0ØÕÌÜOíió#'³ °ì|q ´ú޼!œ˜z3(1g‡e|4IMÄÑ¡ ŒI_!@{‚+„v­b“TNa”Ë‚3äw4,Sú\Œ7”bÕó¸8Y Û£‘ö¯ñú°4ðÎúzöƒèh—yeÂP:ˆ“!‰jŒdhPŲ#ëÌÅàz≓ ýžèÄçBµÓ˜«2’¤µ@Ê ”Àà®7ïåì$ÔƒÞ²SòlÉälŠq×Oj\ýW‡7Ðåämã·¹¦èjXæ€D8¹•üO6€IRV.ò4¥ð«QÀ4QDùUµÁ{b]#¡%ÿ ´!øÉDŒ³6÷®wä Ý›-È—#Ò lΓ£pˆÚë˜W† $¼*?}ÂZšgl]‚“ë`è¯%6¬Br·lA­LÎyÆù‚ÕS¬ ²˜Õ™£ ˆYÓ:D]‡xÊ0,%aÃtmŽ›‘# (‹[¹°Ð³Äê¨c´&a\ hŸÈVÃ%Ú$Àt4côŠk©‘ÑqâýFFÅ„…wt3|Ñ›ç÷ßßûüÑrÑ¢ùà,­Þ³m¦ÖÜÕæî¨Îˆâr)XžÝ3ÜßÓYÃñ³Ð ½m*DÈàÔ°¿å´®ž£àTê˜:]tºû!Úh…§p¶–‹!¼ÌgUã²Bd›2ä›Ñ)€‚[Ïž#¤ò¬Åˆž(É,“ý#¯-ü‡S%17Ë!ƒuƒ\˜Š! q0Ò*/ËU‚F߇~“Áïx].8¥Ÿ·,:Xc“UîT*CsÍÛ ÁE.*T;‹˜òläA«œ¨oã7Ô 8ï4!ùX¹î{zˆé*üKùtŠàÂW¯²#´ Yá-ñ嶬êcä’rv5˜­x˜aVFDB65£a"%8Qß>Ý\Õ»ÿËI¬>ÏöütK1åû7“Xm~ñÿ«ÿûÃÿnçÿ¢”üÿ2þ¯nÜ¿Wãÿz¸qïßü_ÿ ÿnâÿbçáÿ0ÿ—˜ÿ›ÿë_[ý¹^ª2{ÞôvvïVºÿlûùÎv¶íËÞö ˜mï?¿cù磃þ6¸õð_Û±vÐii¶3è¯(AÒ~éc²ÞÞóì¥ïxøêNT_ÏzÛßíöŽšùÊR.¯íÃíã—/vûßãóžïïú¡»g׋ã]xÓýƒ¬}Ð?ÜÙÞõw:ØÌÉÞ¸¼Bý± œÍ»}ëìxogÐxÿöþ/üxÿí¸wØÏžùáù¶? 3óæáhÅÌmnDKgïþá®_2ƒþÞóþ[‰ _ǃ£?m>úàv¢5è?==Ø?Úùþ®wGËÐz 6½ÁγÝÁÙ‹~opì‡ =^í>ÏžíCÅÎUíEkÒzú]ÿp°³íö³kc3Z„þÓÓ=dëÝÍö°úƒŸâ滣Eé?=ýúpÿø`Eï¢uè?=}~|°ë{7ègx[¶wüò٪Ͳ-Aÿéé^ï%ÌSïÇè¦G«ÏòºçA°3P2ºT°DkÌzÚì¿ô¢‚ËÞ¯W®Â¬Æ~5ï v^ì¬êüV´Üü'Üë‡ýýÃþÞöŠÙÜŠå›_[°’¡×+nˆ–“ÿôtoo»~Û½ÑÒñŸžm÷üä?;âßr´Žü'ÿáÎÁ ;<^uG´v¶@¢íï=ÇIñ‹ï†éÜŠÖ‘ÿ»©oš/Înâ¼±”_qc´lü§§~#íî¯xνhÑøO8Çp0~þå‡û»Í·FËÃ’£¬¿÷ÝÎáþÞê—»­ÿééQH¶ö›/Ͻ{7ò7Þ‹–„ÿô‡ïp°'¨¯½jóŽB ÅðwÔ}c¡¢ˆ:Ÿëâ êXƒ¼Û\KÝòjücYŽÞ¬…’Ü‹jyq´5îéš„Œ¾T.vR´h¸¯Å^óÛzun4™UÀ.D‘Q>]w†ÃŠ_•Hã#âô†ÒÜüÂ.¼Õé¤-‚ËvÇâG„†%Œ€äpA/KÓœøû®çà ZßëȽ?-Ï–óåEn.±Ð!¾°»Å”%Í 6XTSJ]~yðFx/Kˆè?~\5®¤Új‘´ãHãç:Þï’·ü’wBŒ¢`XHÀW@•lD__ s—З4ösr‰¡vÛVëõÛ·U×Î.—ÃIYAðÑo‚ý‹æØ—æ·.1F k÷ûÃi.9<¬eå úoÓ1å‡=0Ÿ90u'ö §):м¹CÚXã&çÁPpƒ–Ó¦à^“±«Ìz†Î!ì$¢…¼±½¤,‡äsxÚ 6D”MUb†Á6rmñÚ@gçZ8¬1I/]8õA°†j ˜ÕOhªñ^<®€‚¿4åÐ?Œ9Î\BIH=âšúwGš¦Û]–Ù1œ3ÑAÊË´WT!åSK›ŠÙUœôC ÷RSªµÀ:Àe!b)j„ÕƒYŸ`mÌ6t°YŽ,O=Õ<ÝyÉйY¨Î&H ¢#¤`(G{ ¯M¸C¶p7{àèÒQ‡;z7,éˆÄBʯr-T·H¾µ˜Ã0EÒ±X˜Z§–<”p¤ Ú*’45ÍüI†èÿ@Ë 9ÀXp…9“¼C‹÷‚¡Í͇ø'm†I9œçs¬Ã—ìÊ!á Ç’ÉïU¢´bX…Œ†¹)Ež‚Ã¥ëøÕ½-^OޱE`bü$õ轄´UP~6¥/°XS>A–E~B¹ò Kd#+°ÊO«­LÃ=ÅA—僛”žXh[<°¦^4ôx‡aøtl›æ¢ŸyG’ϧEWÌgá1‡ }«NÁ0«Ê„UÊ|ª®æe%1퓦}é”/±ý‰o¢cŽ à÷cÉIÂøLª4Õ^áéå+´T‡ã§IÙNÖ-@Šùþ’p­Š·T‹~’ûùq5 ¤J®•­CÛ¨#,iÊ¿mÔ AÍ¡µÉ€N¥‡æTË ¨b®ƒŠ‰i4Èž7˜z¤-+;"a„xá) EÁ¢D€Jñ«œØÿ®H³­pëÛ„o—gPS(æÌ¬Š‹ÊÒ³ˆ÷a•ÖΤ /|à¢.æ@X-I9¯ë‰ñ "W‹~è°ïúöA‡ù›Ïsƒ?#¶ÌpŽ›í°}Àkþ1)Mø"Ò/«%~Bùí'WB~ž¼ÛÕÞ‚)æeÄlŠäì]xk0éãlZþJŠÉu-sf„Uñ(g¥ä!¦P¢ÐòÒ-r¢Ä?tì6ÊóÏ¨ÌØˆëÜ“b† qUÇ‘®© ÒæÖç\â•!X“¼\lIg°jLš|@gä8Pªlyâo,¬f„iÍ ¯³Iê{³|òúÑ“íÓúfVr£#ý—oË»oC]eÑ6t7lC¿–WmÃlÅ6t7lÃݕƭ:‘*Âu?)İ”ø%Ñþdoßk|ƒ°2xøøº7@ݰӴïUoï;¹53ÓÆdÀPç wW³…)5OØû&”¢’–HID^C #ã€(Z9cì…j锑¾ ßg"S0òÈÅø4;öÏ‘_´©N·U²¬LÃf«0ôQåõNW‹®sÎwSÝv|“ZN¿ûµÔm09=Ž‹vD ½Þá$?,HÉžB†“B„VºW²á ¦ ¸3µ³ª€S6X˜@áM@ A¯«OYþéÐÐ\!ýܧŸézLghqW$Nrâç—erÚûoš‹Z6Ï/NÙÚò2âÙ¯î<Á¸î_ï î2»Ø]½uçåÎýj~ã¦gXë;ˆÊ½/¢ýÑ=¹ÄèµÆ¼ÿ£ˆ&•ˆÞͳò|ÒëÞÞö7û‡7M«ëµûÍÔ¸»NÔËIšJ¦ÆÅSO wx°- Ö‚Dý~]óêxáML8UÀsö…Q÷×?ÉÚ YŒŒ×|îm-°³ŒþÐi˜W÷_4¯TKg碔h?Ò‰õ7sñåP/ÂÔDGW‡÷2&Á½"p•†ó¼¨Wú ¹’7•¦¿5úmÆöí¤¼Š&Êz5ÊŸôX˜×Ê’Áм p6šs®p®^_o—Î…2ö°AÈóðKû 4sʦ—¶×:/É…‹Ç+NýJ6mLÀ¢:Â@EÜ8>¾¨(ý˜ßŠ<¿˜¦  Šö”·w¦ò ³Â Lî踸$;wÊ¥¡¢ÂÜÆ£„+ÆOgMÓîA1EŠ]Ú•ó"¿Þ;&‚!Å2¿È¶œ"]9‚it ‚u€Å<«¤0ê¾dG¨õOh,§9@ž+#àÒÙŠE„M +ü|yf”¨i^«‘Ú‹Ù4ª»+yœ ¼œòPñÙ[ÑâçºU/RÖ“ÙA?‘ª3;ÏtH¥l‹0ט谜‰HÓÍ[ qÂfkv Z†’»Ï/4ë ýÉ®?㯿é÷¾wÌ7艿zÞ?àWœ¡ÀÉJŠ\ e¡½ •Çå:¬"2Í&{‡wú²Z8Xjð…KáÛÄÑ#@‡oÛŠhÔ• âCzKµþè B† ²¸¯fóqÕÆ‰üœ¸Z¥^5¯d°Ÿó¢`O%fÌä%¡ñ.b`_DŒ­g$eP‡j\ô ê =™ Š áv¤Måw]pþyõ¦–Ãëp‚¡§ZÞ„²ÂøeÇ`çåŒ (/ÜÜX¿·ÑÍÌ<# ‘M úš!û{¬·û°bF±èYHü2’*W'«æehs1G›f05î¯7¬ ÿ…2^Âr®bS^€ÖÔÍŠ'¤¹ùL$*Èaº¿M)æQÑK£uÎ>Cg˜#Ñ8ã@Éê~Êàb½BzZ£ÐêPrYjÆ'“ô×>ó‘ ÷Aߨ ºS‡#Œ† QÊ™„¦³s0ë+)D§Ÿ*ö_8»e„‚|39œI}™¨ yZ¦6˜}8µç³‰x†ùdCG”öcÝiÀfZ\M€½¿õ”"1¢FìÑ÷„Œ¦†YgÅQ¾‹Bgz ¾½ÀÐc“C/ÁßÀñ)TnÁ¯J^ýíì=Êç󦎄wÇfïè…»/²6´%#;¶º¼öâj¶Ü}Ñ¥²¥Ììê•É‚óÍ9Úq­.G½]Ú{Ç»Æ?×–SÐ`-æ³®¨ÒR+íí7ý)ÌÏérŽR—cÓˆ÷ äCðAÈeœâ|v0D¼ÉoΉPéŒF¨+¼I6÷j¡~p› Hb”Ó€Ò'@ü­æ’¢k!Ô€RêcsÚnv„x'Y"tξПeaðmúKr[7³yQÑM½½ä¾Úz¡‚?|•<,žU+§Â‹ý²‘‹oYE&]¶"„yɼMê«à°œDAíQà~=ªC´ êô€lnèí;Ž·sêôî‹$¢Ô°ŒäЧ&_J¿ÉY+™üº|ï¶a‡ä‹8S@…·“é0ð¬ï²WX(¸um¡j—ÊP€UƒŠ8[Þ‹õ®æÊZ1ÊAóÆ Q ü¢JƧ“â×SœÔÇ êyယHR蹸]ÖÜVŒAãõß…u;Ò©µÞÛÝ5ÞñŒ ˆ(³Gû˜J™…õœOÝì²@„·Ë¡œ±Åw„CœÜWRŒàä0-d 'ôç <“@P“­ˆ`”49Ä¿ÿN¦ßœòq«Ž-‚¤ {‹ž§Å ËâÙ` Xâw¦¥c *¢¡åòÊÍ×þÄ4Íî鮟£ pÅñÞ€ :zê5¹ëßodÞ3Ê,öc:Í÷Ý‘œøÖ´‹Ni€øE6°ØøiQ€ZÁWpl»IqJÔ_€ÆXÏÞiHš"À„‹ª˜pq ÃÑ¥Äø<çvLLKq†¶_ãÐgß‘·/7SÑò}±^†’ôtöN¤¼þXžæÊ¶¥Ô˜5œ·¯ŠÉ)™ùÔX4]md>Øfíà ÝîõwCü£H_•/F§«€džä逴5HF§XÖv«Ïxª±„º>Ž eD÷-ŽøQ7#¢ þ¥³·œg@eLš 0†ŠÐ…ðÛš7 ,‘ züéÖæV/këçP ÞA6|ÿÃÆæç/\'GÌrÙÓ À‘&ÅD„èD…t‰A^Áÿßÿ~pØÓÁÅ,ðÃí 9–hÇDƒq[ 2ÃÐ&šû^9H[¦øßWóÆ™K" Ô¹Áñá·;Gß@'!áÖž¹Õ1Û³¸ÙNCt¹ƒÛ‚ ¶ËWU>FCƒåü D{aÆz^›+½ö1=[F5Q;.q`<¿ŽIö}. H5gÀº]• ?Œ3¨È ¼?¬3ÃÜ ˆo!JKìè›Cìh@jiòÛ0ð_ʧ‘ÚRAv¿XÂ\û¥—K¤¹è "h¡x‚qvÁq\å‰ÇÃTÜ Æ&Vù‚J¿Q³Í¯žÎpt¸¸âaxÅâÝÈ[˲ª,‘ËÜÀÅB1 ¶QgÜ6Íw­gûËE…Éis4ŽúŒàB¤"Ã0f°|NÈhh>kgFgñ!¡4DâfÙ/l• ~\š,”‘%´œR,ÂæP-¼ø,?Šnfžº»ÝºN·†`Oè&¯èˆí€<†¢©§ÉzθZ5„h²ì½½Žù¦˜$ö"tœ`0“|#@&l®lŽÁ ®ºäºdCKë†(´ÿõSúu³á×'¤²´L¤:ü,´_™–7ë7†/¨È»_eðÄßè.-†Á_õÙEþÎvêg ý[uà7\Ì¿SÍVxØ’q]~óCÚN@‰ØqÉlp"ãäì·­ß¡ß'o~½êwôIådÖC˜j{ž’ÝaY¢îšŽ?ó7AüôW-M‡Tã‚åÂ<¿AûÂX,]%ÛFkpð‹b*ðTÀ}vM 04É Æ,Œ:]ÂuÁ™=ŽVªêdçœ,[__ÿ= ½ý²w„ÆH’XÄÐ@ 1ª¤ˆ}´öëí¼þzü}\ŽvÝ<ũկ€mtëùžcüÄ ÐÐì\üo‹Ú¼rðÓG©-5X\ˆö¥ò+¸`ýå­d»¶½Ÿ×v1Zðö±Üƒ¹¼³° ¢mZœåLKÍS ÁPY Ó˜¹unUæiÓÅ9ØqAQtúmß²5±é*Êè!ö3»wćXXˆ0µb8ª"¢¦Z„Œ6Y”Ñ-¡ÜffҳءÜåè :H¨ünÜ®œVyvò7¨Ð|œN˜'óìO€oÂó«>›â‹@…z—´“ ®ÊÊéíMi&…0¶òMhå>‘>¢ÙäÑËaÐöOFÅÉcb ÕaRµíõËýÃ~C}gG v7Ü Ì/§´ðÆAt¹•%r t ”Óæñ"+ã±rÈUEÊ÷kDZ×I   Ä„W#ÚŒN*=M#aîRýp]@ê1kFYêòTŒû¯ÃX0Ÿ9’ÿbÕO¬#¼Û‘,¹#ãpDTgïšÕ©ƒvžW‘~µž½ÑX¾RÊFž73à6O.§ .-i²$ÐG´·¢•I` ô#^nU"IVb' Iè7¥Ö´D^ë1ý²J§a•Ôl37b®$ 6á_cUÏkJ&£ ÎN>Éb+OH"rvñqÓ(Âücu#èÒj¡´Bâú)‡Å;ÌúÀšA¥­CXå§àhs¢iÔ [’8Ãk"4·lêp¬‹<ï‚\m#°ìVŽ™¶J#ƃubF~Äù!€s&V¨†æ“%Ãjy’4::,Az÷“ ‚uY7ˆ•ÆÝqT™UÑ’¬R$®í{ãŨ!ÆÎ©<ÄèL;?ß›”à^¼v—KuV^(CòÉß\ß=9S‚¥ŠD¦‚ÏÝÊ3Vˆ +fÜÄ—1öÜ ,Ô- s–Ð0cvzÉ:ÕGØáÿ‡•ÊMEzz2SN:t–ËPÉh¶«íQðJ͈ÏÑf˜M˜h©ç5à.uõÈÖx¶ô—­ýc9[€Ë"¬ñèF,` Qý ùtìI/&:êyç·ØµŸÊˆ-¨» ’÷)K‰±œ­@1@h!Ó™ú£Ç qB·’E­‹ÀÊ ÉHzæ¦æç`±[3£‘/=¨¦ˇ£Þ]ÿê» Q?úÂ|Œ€­†ö\+ D-ÉÉG½¸òÑÉßä†úSõÚÞɳÐ;øç¿H>âu'ñUªwëÇ“¾%íMWcbÓ|À™ÒƒÍ+«À©´Ç#Ë`9?Ùvwy9Bߨ $wú&¨wìÌá¸í§4øJÇr¼ÔPö‹Žjû'”¡Jb(Εá}¨Ó8uûGc]Q–E ‚m08;%uP¬ Ò1aU¥È43ÂW£ ©¼E¢0N¯mBÈ Lû¾L(Ä«UÐŽÚÜú(ø­h q)I]  >wáÖuê^\Å û“³í—”ا}GœÜ¬þn®r:î²T®¬´œ?è…‚¦¾ÆJ!^ÌÞ8Žz`'Içúíäo›þ[¿'ùvÑ‘¿Ìµ~Ûô×µ â†Îq<¡UÈÕÐ7^ ¹ô÷/â@ŽÍzZÖšþÇøOG.l£|ÓÍ–†©ã·¥*˜NaІâXb’QFß°€ÜЧ4”—¹ê{5‚©v¤ß«~²—Šõq °Ë CÊÛÌÞ”‹9KbZ#Ž$‰dW.Ž’fŒºÛë22x€ V~£¦Ô–L ËÆ=‰4¥F'n„kîu­‹n¦"zò¬ÁA΋wÙÆçàS8½Ó[ì\{×’bdï( c.®Ë$lmáá<$ø„Ígø„Óð+Ö% wa/0Ǥ dø÷þ>¿'¾ìy‡`€`F¢á‡·-Âm`QÓ¥_àOã±¶;ºg#°ÀQ9õÁµã»\ë/Â`9–«QЏ}ö›ÿ <{·Ü¾¾W¿;?_ñ0è=^{~Žþv~~ÞØ¬¹ðœÝûíøS¾:¹V¢‚zQnÓ|@÷²~ÅïY«tÉ@!cµÃuá²ÖSmÉÈ Še,bØ+ ép‘–^ÅÔ®b=¢æ-å­õ®åŒE)ˆë ¤5 ­$zȵã0m•¥l1‰Š}µSØÖõw{b”nJ[XÝée˘Á&°ÓcZ‘šL¡_ÓÊ¥ëN–r®Å&`žÆ:‚Ç¿œ}¯0dëÕg¢—üYE:#¤ùõÏÕ«ƒ¹D2¡~´_?!ԎΚ*ð™0"yÉ ¡()RÜI]5Ø’«Ìtƒ Õ0ÛéaâÚ¶g|²³V•)*ðcQ©>\ˆl8ÉkWðŒÆZ¥­'hpšþ2®XBв¬a¥[Ovåd¯é‰i!¦®}Gr]󩦿¿;+»ø\ì:p$eÙ¤8ËG×1MCÀï¦c~2'±ÌÅm3©?!Ómÿh»wÐþzûðõÎÑëÝid鹋Âz@-εåO¦êS,¡d^œÍ#%϶Ý ÑQ (@G³f•Lð|úÎDœ‰z¤ccè¤à!þ÷=K-, 4îotH€ÓýpÇÒï€QGyô#xU¨È«7)61 ì^ÖîÁ}÷7»Ù Lô:$VNF¿ñ=^zïYÖÆÃéógÿœŒžDW|î¯xWÜ{†Ê¥#oSM#ÔÏ•5 |ÐYüÐú9Kœë»à?²çì å”qL7Çš m 1KQsDÅ¥Žò«ÿ%Äró¼Ê”ÆÓqj”$ÙȼEOfç£qÃ@î¶-çãV úêsB!çd;Øà8Y¼Ö$UÔ}'œ$x¹2b ´âΰ+*žÊÏ?ÿ\˜W8Í—Ìøc°jcéEõ°<[Rù°1Ô+žž-‘ 5³Ðkë!G™tlemH]1¯=I‘@µ¥ŒZÖ…ßÞ¾W 6R‘—Ãbæ A™¦Õ\&HïGÎç“ ªëLöOjþøÍô’4\ßD€ˆQÇîú«¨„…ù§AÞL­@z„CT(ŒÒ…›Êê6ñ»â±2¡’$ô ÉB¡M¯Ë_:ô2CâPã˜'Ca´#dú ì4|£k‚…“XªúÉ#Y_dIŒÎx(Ñ ZZxCë‹– >®tÅøD£‡Óqí¨Ä—–‚17ï‚'5_†ë¼\\3U)è6 6“€Av‘¨j¥•FÑÛ_h|ãO&C÷þƒ`}¢Ú‚²Ž1Lv•ü0øfïõþö ·›qê½ñm³·‘Ø¡?®ìuóåD¦Q1hjÂü5aðG¯Ò±T1â ¢¨¬%:B‡PÎ’êßÎʱ=tˆ@†y$’`«€Iƒ:FßædFØ6´†éO£Cr Ü®+ùt<«Ý 4{2Ç^×1:/1ÞVÐæÚÖÛÍ|…¼w,Pp6tWá+ö‰YÑè¥åHÛÜ€HÌY)ú´ ™$¿ˆ]èåeÁç˜gnzŠúÃðì“S9.ŽZdZ¤^íP)u>>,£ÂËR&òF¡‚\yrjEî ãÞ¸¿‘e´78ÎM¡€$fÎJ"SpÞ ù‚`Ev ó„Òiq%ëÎß°b| ¹Ï3nŽy¼|à’ÍM¸„"QŠ® нÿ2¾&¶aŸ~¸G? +ºÄÕAlÝkQ_îÝÜ5ÚãÛS¿²oš»÷ùçÐ1l=xµy…£ÏüÑæÍCÈîâ`ÙQ?˜·ù6]”9ËՔϔš¾tÀsÑÆâãåHä>„ûáz8!Î DNšÀiÖ°uì‚y²Pj ÌåÆë›åÆNÓ†mÜ8ªQLNpÚaÚ/"þY´Lí$’JORE™]x–D•õom¥°ƒ)g"DÒÏ¥]=÷« ’°–åZéãQ;p5í 1iÌði${²>ü‰»öwI"OSÑÆåzŠãÓlnÕ–bfV´IÅ’ŠP– •éo o5š}iª†1»O ïG¢8YŠw^kF^l|;(vìÒÚR_8­æHCoV”ñF¯Ü´4f±;OUý9¢0C·_#I©Æb‡Äš,®èç÷ÿ’•m¼;=…Z¸›®nº/g¾ã;]ηÀa,×VÁ«ß²¹7\Ÿ9‘‹APÐÓ•lÉúgTZäØx7~Df„ÿ žÒFtêl5º–·æ3@ˆ·l“¦¡:/üjäMCŽù™H}×@‘ç’5¦Ï&þÖÝýW¯Ž÷¿î úì@:J mÚ/AاÄbí0ó8«q¼#¼H1à“ƒ×èççV6ÚµÞOýúå4Õï£/ºW¸(›0À9’=» >ÈÝŒˆ»8›W‚©»ÙɰÁ®â;†Fs`ù‘%ñyÕœ1»3»Æí)^ã&@ýº;yæ¯=dMø{ ¥ž_ ßU_¶[N­;¨Ã(Ó8 ç´Ð"P²VÍ4«¡½¡æ/)uÀ~ØHC?ž†B%5EDëNÄxœ¼ðÃá¿=ÙíbÔ‡å8IÄ#â­Jüí?›“Ã~ÅΖËGÌN³pBL°Ò­`ñâè‹%H8M¢†I\Dk3wªà>6NÞÖqËÕà ,Ó$ÝVa PEœ.… jÒfâzÃj6Y. Nùœp^\dŠ%~·à?K=nåÄPýÛ.§ü·h9ô¦X#B¼o#’Œ/²²sé ’ 5õø ‘¸¿œÒ-pQo^r¦Ù³ØMUkùÀ5¬s¯›ù«È,âÇÉŽº0Ä•¨B)ÚOp&Û¢VµéA±ÙÜiu&õƒòâÅÊ œ5o ¿$¯õkf*$Q:~1WÑ’Ym¤†—„BïÈÖ¹rJfòzá&™Ñ`™ˆ7¡mÞ¿Ã~†?ÿéáÆÿ«ÿïÖ“¬­ƒ.óχ¢ã³¤%Ãë̦×Þì¤Ãìb²þé yÇPPà"Y  @M×Ãì>̲Áù¡jZŽ`#‡{Šñûš~O©Þ˜ík¿’ìã›>knÌXø„‘;ŠªÂOÏõ§•y+é-çz‹I‹jLL‚«¿¹õwieïÖV„ƒÅ_\éÅ+Û;ºµ½•·¾Õ[!þ„´+¯ýîÖÇÜÞÆ•¶ÑÒÅVüë«ð+ÈŒô ‹ãÞ«B# €æ>²?Arg‹ÖS¸´µÞŠójpù‡uu¡ÿHWŽ.Òƒz¤epœtÙVÄ¢oRÜ4îìjZÎzvt{¹€fˆnk*·%ïL|>kŽÏM¶Ép—y‰ª EZQ…Òhj]çÁŒ!v.2K<ôd—ÃF^žÿ}Ò@d‚(Çl^):3ÈE-ß2?IÎt3 U {ÐnK#pj& @Æ6…É*üR îªTÌK̾¾ !ý‘7ý´‡zäg)+ƒïW–ՈϦ‹)ýt‘úyVƒÌt›Ýêœî•àAxRÙñ†£ë›AÖþ¢ÓELÀæ†ÿã;ÿÅæ¦ÿã|³åÿ–ÄÍ{—v$.Ú÷¶´tÕ #ü[^%©ÂøR­í–_+^äHüsRVX+ŽÅj¡§üëšTªÈyDÈà›ï&$t;Õ„C¡„¤˜®ýhYëìä]¢ù1œÈt›#¨SŠ!Ѫõ£b`Û¸E,¢&(YÑYNǾ…‘¤ÿ7JeIÎÌ0¸Ž¡Á˜ù¬0Œ¸í„˜á’Æxlv(pJC¬¡…<¶OFÒuásºÎî> g!kWÅ*ÞÉ?ñ\øðbl?‹¿j–sÿÒ6òn×…ÙÇwË ôúÊ[œ^A뺪œurE}fç)ÿþÜ›“Gl6¾B‚ŸóÙò윑‰¡Óã.-Ê9Ï6·­AôOÓ›–Ø9f<5™‹²v”@Rµ ÐܯýiHCeT³mÈá&çp$+$µ‹Lñ“kr"ŸúŽ”þ«Êâ„‚8΂L£üK‰ Þª¡â’.›ÅÌ­.½ÔœÎ1nTéä <¹ümoü»†gH(tX/½ù¾) {Žÿû–•¿›oÙý½‹O¤ÿ¼œÞÚÿy0úÝjJoz^˜µA6ƒŒ¥’ó7%v˜(Z.ØCoèéÝ¢¨þj¤)"êOôø¬í¥àÔŸŸÀæd¤KDæuxid§¬¿ÇÇÒù9E¶gÄ'u‘q §Jl‚ŠŒºÐ »õËsì‚"3IŒ¥*äÞž\ÏŽaÀ”/ ¯(x=:IOJþŠèòXÂ/À³ÃâêГ!ñ'ϬÛ÷::áaûù¥‹ïä{Eò04BÞ{ÿ•å¨ðûî:«He4Ê{àŠKF7 ýÌ.œäÅò°Ö„;sˆ±e,å0ÄW9Ò ÆüúÙÑónã×$þ\ÓO^"ZB¼¤X“)ŸÀNø‹É¸sËr¢«âõ.Œy’ÂH7p^´C†S’ý’tÎý^ýÆÿÿ[–èßáá‰*CNˆ#\<Æõ‹ ž3< )G¡)èÛ~;€€êš—BkEòûüý…?~H#ᣦ_ ñ<]EüË#üå ˆÖøç/¸Weò}fÌFûýÖ ý|>Ÿ]ùeP›ƒ­tÉËb\.¡6B9¹/Âe÷d”wÆTz¸ôË–6ç‘ú=î°”¨Ã»š}¸ûBÑ%¸'áûNרÆ6¼&6¾·’çk;ÍYÜ>”+Ѵ휋hëöú»­GÚ©Ú*Û¢‘?ð_âû› 4òIÝ®_×q‚‰pÝXU1ÊzrZ¡ ìþÀ{ÜÌïßÕ¹÷7Lì ¬þЋ+¹ô1Î…µùå‘Î9­ü –‰:í #üWè>™ŸLßÃÿ½Û¾?9}2÷>z`XÔK&ªÖº5$Þ[¶®B«+~©æKÒ= È3Êy|J Ra¹Œûã÷×\›Àz´S;›¤æ4ÌZEI]Þ%ì.xk6C×Ñ.a‚føò-ÛìO¨qãÓé`?ü¢÷ª¢ßŽh¾hkxëï™j%:ÈvTo,Çp7SkOÞÑóRóˆ‘E•WzëlMbœ`ß',¼¶*k(Ë,Ž›ÜV²¯•ž‡Ì›¦‚”~ÙP"+MM¨ë”Ùß­bö7õ!žDX·¨’õÔÔ=´Ó ¥BâÉ6³tqèÇ5 ç\W«æbiß´Ö5gVÁ?èHµ¢Ü ÆÙšâ4î„zw¦°(^@û“ A§P —öÀT‰êÅ«úæŽÉ´Ê½Y±HÄ0Ì æ©ß.&‘8LU'µ}ÿz h58 Ç(ɸ%¥Œ½m¥è-0F X»Šö‡é<m­å¼Ò‚¸ÕŠ*¥Hi<­\Põ€ž@ºÞàñÇóFjõîL›}]Û¤k†éá`‡óÀ÷²#^EàÁŒ¼gØ‘šO&ö—„ÙŒz3…zÄKA¹¶¸¯`éA9g“`P&œtê²hÎZÕð’Óè÷s€ÃÑ‚Âhæ ãr‡ìÔ~7BPápTýº8›)4sZ":Qøq¥áJ5%Ì y,¼iž¬=cÑ×K½3º©šîÌâ:·D¥ÆE&¼w˜é²LðÊ÷šêàÄc G“AÍJÝR*r»uÞù÷ª¿î%Fô‡¡—­sö^þö—òé»w·¾“(ÁTd˜^¡Á7ß)åµ›oþž¡§¹.ÿ.€) ŽWÎ ˆLü©‚à+7bC2„±·È¦°— žøÎ® :Lm ZŽØ°žbfˆËß~Ù]þŽZ°%…8øÍ«ºT`镬œôkµå—´)m×"p|—½B&‚f’½ºÙùµ›)F‚ 7¢ UBµ°b[JtaN„UEØéIKlÔ7tŠÇhÀ»Y°d"ãá:ô=V£ŽŒËs¢D¶‡ùCû‚àR^ï`N…Ê|­ åeÙ°¨Ók¶ôlB{ ÎÂ, ä'zåœÜÊH\ Lg÷•ÿh¶UGD5IÏ&%ï¦$VSX±"–s? UIµA1ë~^àÄÂføBÓ`Í‘l:è:?{¾Eœ¾´ÅAȘ0J|Å… ¤ÞYÀT¢Ü Å¢¢¶ƒ IŠa9.Q1ù2ŸüN_=ÛgÏüﯷ1«ãqÖÛÍÂ÷kã’iñ¾Ìzúáà·ì—¦Ÿ‚nE!yËÙ¡jMø6]ýV˜ÇÙOmU×µzÓë–²xÿ¿ gAÁŠ£W]ÂK¶¨$ŽùÇÚ×EõÙtÖ±ÏÂ™Š bÐqaÖx[q 6iÄ9\T±‚ÑÛœh@ÆBSLS¥Ý™¾\V°ûŽ®/†³IÕ `f¯éè‰â&¿ù±ù=©ä ÆsÅ)-<ˆìÌ(ÅrAY™IÃô’âJ¼†c«AÑ”Q,ã…,`ášàù_ÏA#'tÌú Á \—ªÆXäkù@h¯³§¯ó3ÓbÂþ>HÈÝÓ¢ò2R?€ù œ²7„È9VÞŸÞxn~*,1gŽjô¯ø]×`M‡Œúí…×køÊa#ï’Vbª—·8ÂÆ©gòu…¾Ž  -'ÁØ¢pv1w'ÜÔoˆS ƒ®)T>§Ùô$¢º8PAD×Á­ÁÄ̦Ìoeä€2¤©ö‘Ç=‹³œ`.h%×èÃѯs<Jk]‰˜™4_hôÁúÖCr7á®—Ãâ¤æ<zµex&䌚l°U°Ú¿\·^øæ7ýÐ=¬ê·t?í H‡Ó£àÔÆ~ˆªa%0<–e‰×òâ挢P ‹¶q{´8g‡0[¸ÌVMÒÕa¹¨]å<»oœŽñIÆúÝl‘´™ùr:ÕÜF$ŽÃ¹…à m¯í99]‚¨‚®:8®WŠ-<±À‘”CÐ n;‘®»‘†êrt´2tɾ0®s”3Ð,_PÚ"k8û'XÇ+ÀU¡ÔÙ9§ÿÜp.ÒT¿}¦ç`-S®˜ÕÊ|X •‡hÝ]æò&ÍœŽ-}²©Y?aø€U AY¥z5E®#5d—ôŠ] ‰«ç’HQ*fh—BM¸þáÓƒK„ƒÏ§ˆÊC½¬ša×ÂW3Œͽ޴@|‡Hæ#Ig"ê] ;áøÂGzN^)æ ¾œà5)óürAQÒ1ÑÛ†ïgÚyó%rt ›6³ÄîÄÿâzIBŠÌ¾IˆW &ðeAUá0–¯§ûµh’°ß{¨8ÁGD³?R+áëIó­y1þÀÓÀ)|'3VG¬À¯ôPäØÀ·ÙÆÒIÉ/4åŠJ~)1<Êô%Éo¦ÃÉ/¸ö½ýà!0;)mð‘ÞeæÈ“úý›hòÃ÷´(¢h®þfºÃ_úo¤š°ç“Æhè—«¡þ·JGQ¢Ž*˜2V’(1öôîŸEw€ `6"¨%”N‘M 2ž¬|@¢[0Ÿ¥‰nRAnO·¿ÐÁ7²H¿»ìú݇æêîÂÈjÕ½˜ZQrÞ36Ícµ^È\A h1ÇIÌn"°—XíÒ8}v!§6(*~ø¸xU¬™¼lg¡€\31DQn/Æ•dTb¡‡Ädl×j&¾*/ Û* ;aZ¤pEÎg·9§œðÇŸ>çdbÿ—×rÄÉ™³§¶î ¤—ð e½åS³¾m¤Ÿj²4Љ†Ï®c?j¬‘MJèͯ;†ƒiaì~N &ô,™¯ Ç‘h‚¥ z æØ™hõOø[¦CCÇÎÑ Þ¬åÿÀ/,¥¢D9^{ûPgôõö7ýío³?Œ!Žçë›rÒiü:ͤáVÃd£¶ÕûêOvÜS¿Sy’Ôp•S¢ðã~ °Ï»ä½Ü9-ße¡ä{ùlQ¹iíT–$io– ‚@ž'SEîgþào'xXÅP5†Iy‘Ð)CýS­v+ŽÁGˆWí¬¸Ê<åpÅ5Ý=÷è¥^”ºýÏûf´è0}ðüE˜©Ù¥?çæ”çõÀS1Xžï¬¼(tõÐ vú }†ßvûÍ¿Er¸»³â*ó”Ýýט1 ÀOüÙÕ  à•¹ÀÆJ„WŸJVÜìn²‰—rð8¸: !HDˆ<Õì®zàþúà‚ß`u^kº"Ô/ÆDÃXÖ’1v‡Áš²}¯- ƒ¬ ž¥„'ßK¸ÐºÀñPÃ(cÛüw¦sé“ZŒù *P KN×Àe«Py5 v‚+¨°BÐy¥gL¹³‹Ko‰.,vaˆ)ŽXE$òÓ¸< fµ5KEæx1Uá«Âë6´¤{€7eùW×ÊH&^¨í8@_ôH òù8ëyKö]¶õEÜtôÛ ¬G´¨¾×ºNØææúÆú†_aþö™8ø8/ª¢¸¥ÎŸs¿ÒQs”4,¿£g‡DUÖiÐ?øÁdðªµp†˜eTJ˜·CX¢¥7ÐX(ÕÊ€„ŀߋ*æ)5ÜîÐØË&zŒMíÁ" ]3ª0*ù¼ =áé°RÎÜãнÍõ¬?ßšmj^hk={Nx¸Z¢ÎÛ‡d×½°4ñpDM‘ªÂ4QFßÓF çý ”ªŸdí<ûv6Çã’kTת`G|qÇH—Sô³#ý@¶Û;ëfo‚~Ç&èwdð²ÕnXlÆÝŽn…ûÀ’¶éžO@ì~ßwK3^5pé½üú†›qÉa ƒÆ¡»ŸÌ¦¸Ñ¦M,3‚ØËIŒ_ÀT+ÞÚU9^œ;H­†Ðá¯þj¹½³íÄ?þvh¤eL_Zæâðt,\[7)ó¢× UÕ—à“I 7<Œn`cwqðT‰ÈÌ¿YÖ®½qÇ®§ÞÔ\«bŸÃé”’Ó ÓªHxÝ("¢»2¸¸ "ÍÖa¦fM;)%$ôÒ€âÅKnæ®5­¦Ï“ëé$?³5kloa‘àæÅ«dTåü2‡;»"cSorÇæô>´éDŽW6Pø®Ü ]1“ªâ È3¨A—Žaƒœm‘}¸Á_"‡\CfgBÄÙdA€bŠ]Î |úËÜôw}]!¯ÙI%üÀõ>E©¨¤ó[t•î'‰Q~YT"JÊŠEZèžµP')›!#.öÀ#ïûœï@ìU¿µD#ß_V| >¯•|_]Ê蟩_p5¶ÔØLXõþ>Ÿ6…¶CÚ$TìJ¨ŽHÖ½¬M˹ã‚_:/M.âÜš[ñG™\-KCâ\åþ¼hlwkÇEj@SuRò «Í¿ÊÁnºũ^@ø‹*¨×Þ€F;¾‘#œ¾§àò:ÎŽx¸õVí©`™t³K¿»­_† /§MéÄðð‘kN$A£%^A!îfÃÕl#¢¿_ŽnÆæ`þ4ó~ËB‚°5=v³=Äx=ëÓO‰‘DœØ^˜_\€¹:-È/ˆÊ"c“õõQ7ûºÙÿ›µý]`º!AAGrü'µó§‰ 3 Çñ f'¹¬!i²ËØ1ÅS(ÿeÕàÞ°¬l<„(BÑjÑ9Øc^R~q´W BœÌ®•,¿ñÿ0š|ü ÿsÄnû lÔªûĵ› ˜Ë ã$ ¢a-Œ»©¤@‘¨ó¼Þ ‡æÿbcµNO¤ÃÂæ¿ÐCñ˜úp ž, ¿"îÛPí5ƒO$Šd5,Ç5S1½F\œÈ§D©À·hãâö%A”³Œ¹AÆŸÎf'ßs³²KZþÿu‹d‚1<$¥L H1y| .[‡7Ó9Á3Ê¿'NLG#LHp¤ßʯ¹hLÚ›_Vu'T@²&‘eg—csÎà rtàí ¬¿Èò³kâÉ+a$)]€&ôRé;õÛlɘÁò¢„T>o¦çˆç¯*¯Q©”ðsëi€å±‚he• ÆÌ€­±þq£+Á@á%f>LÂÔ)pPÚ,Æ.¯h]ücYΕ¹©ÿ˜cû¾6¥è f‡lˆ&ŽDæc±ŠJ‘ã%<ë„òK‡ä?™[Ö%môÀÊ3L·À½WÛÈ I¹t^ö`ýÞÖúw~D†å¸²Þ _Á åsðÄAª(ÚêL´õÞ#3­•6û>VÍHw÷÷¿íîï=ýìè[ £ÚüŽÊN&H:ÐLAŒé€kÅ­s ý²‹Fóá¸Ì1öO‹·8â'Å•–cøuyé¸boˆÍ¡¤"ôUF…Dpð¼8!y¢Ëjäm&]ŽuçöW_æÃ“o;NQˆ b¡˜æ…QÌc‰±…ÚD%MnóL=ýLs²—­G;‰ DUæG+SJ( 8‘t˜©¼ñäË“oa©›…¾{}J»äsœzx®N=¾O<§©I²‡›žrRç=Ú‘×X+æºHd²págöX¨Gì¢a×É ñ‡í|>)eìC•5sTb«œ·•?''aU¤çíQ‰iÙá‚ÄáLGà*L¡P¯ÒVЧ¤µÀݨ×”¹p‚¢Ž§ïEÎóÜær3;,!|Á®t(Ìûò¢VºŽ‰z†iÊqqSuC˜‚8á%{ªç=,Ïì€F©è¦ŠAÜVœ¶3ÄȇqæˆMÑH\ó,ºæJh³›/î¥ F;Ë \ücÓÅuW¨ 1·r;&”ôóÆN~f“O›¯ÿº©stÒÀŠ–P)*ßáòr—ר)ŸØ²€‹sCg•#=5&§ÒîØiæB¼Md刑n•L»Ÿ¨¬­†Ê «^4å¤Ê¯M‡Vá ^IÑ)© £}ßPB2Ú¯¼Î·^¬S¹1¶U™öh¡¹àJŽõŠø Ì:œG3Κ4¿P6âufKàe‹Ó-W¥²¦!':Ó”Í25iþ1#¼oÉñ³‡9Hä×=kË)m5þÌ¿ì)!(ÐT\´þ$Ñ)ké&%‡ `Íx˜è  { ä¢Ùx›Îß vZE{ÈVRgQ0å†&=$''î«yŽá(w2Ìu°[y«ál†Þ¤•U{~GýÈ4J¿Úm@Û+ÈbëÊ3)|@)5öý÷’ި±SÅvèK±,QŠ?“ÍÎÇ'té*Q=ÉÂGX1Q--«€ÿrI±LlUsGœ ûÀ.,©½ýÁ³ýÝÀdï?÷áó%«wœÎÏœ_Ž*Ccñ8f<Ž;pB¬¿ |N!RZ¦;ŸŸ-…k®QáA“hºFńعM»$7B¹Ä°*?žãxx›âsôÞ–Ša35]8Ã`CfÆuâk Õ¿µ¼ù²æJ6–ý7·O®.|W\ćP@Ê‹²ÍýÚtvAcéføÚ¨¶˜²,{ZÄpÃ9&=àñã¡3ª7G‘FEEvf”!û'É7hxYoòs ½¥b"`uÖZ¶+K@°©Ô¼|pÓ\2U ;Ú,A°tÓ¿˜¦_—€5àR‡ŸñÞržŠóóF àýPÕÈ:Ÿ}~N‚UwºœDàÁzò¦„C’¶àÌøºËYö8­V:‚Pã?®OfBQfrzIá—¬_‰Égöafùê¡Í¶–­¢5u w°ÿëŽ0Ñ æâÜõÏ¢´~ôLü} ™?rìÓîÆ‚ÐO†¿‚·!lŽ« K•œ‹„‰m?œó5{÷´z¹¢ÁÏEnw; Ü9ÙSJ>ëÏ3¾£E=ÆTó1ÃFýÂwhs„§)Dgë©ÚSGýí‡-±ûÛ›­§Û;‡ÛÇ/_ìö¿Ïz{ϳçû»»½C2³ü* î"¯ñäÁÚÈ¢’à£ÃÃIÙ>#{)Wfµ6šLîŽ&§÷4tÓ7çí?aK u“JNaœadCS6Ù:³‹L Sr:=øVÒví¾¨SW«Ôï dm u¼ ª‘ÂÊ 1% XóEûôÀgÁ¹tñ³„âínu[y¹ —pœØb çQêÉ"Îçp¼”§«eVw«¬AéUÚAfw»v@¥:#=Gx‚Íúš(ËÀ•<~y¼;ØÙÝÙë›zÇË)*g+ ;« ÝZöÞ˜òÚ6s‰èvx°‰IáÅ`œÖέD%žG’"ÞÎ&o!ʉ~½ —“qÜúâœûˆˆ³5c@XŠŽ¯ÖgÒƒŠ”eõcã"ÎA.’M;™8ÀG4©…¹™A㲪=Ë5ºÎ­áß´%·ÊË1;„ÀZ¢[SZÚƒ€ Ó‹ã¿øÐåH¢'pr¡.u{K³Ôäz'© @ù_°õÜ5€ sqQŒAÜS]yui tb·ƒÃ»£É%‘A!@…XÕq\ ˆU OD'°â°18(é’3½®õ4¯øìÖïâ>€rQ\H ‹VjÖ°Òµƒ°é§3'„ RƤ¹f\4í¦â‰¬€Ø- ÑÆ?T£P£éqazº)•ŸT^ÝàuïùþÞî"àjl~ uÔØ„VÀðÑRã{T2wV7ä=K[o­IãbŠ| øL.ÎkÛÇ¥ö•ùÄT‡•Tö¸ÁÃó×Êwi×n‚Ï)k´>§Þ0“W‚‹‹¡9u;âJ@•ÆôŸ(ÿ›¹Òz“wñ9AQ;£T²û).R¹qdã}öK>}ôYäÇLœ‚-/3N¦þ²VÖF#ÉLC¤Þ(Pèr‰ý´_apòº9»\wrÝuRÑ/Ó¬!·YC¼X)ÄÀ, ]9î—àJ1ͤ½" !f3©‹Åðw:5ƒnÖrnõPðö¦ »C‚s§5µ¦FñþJ:Ö ÇåEþ$+j"Õ.æzH¤¿ŸºUŽgÞÝîë³ÍANSµäUt¸Š…‡r¤);Õ”“š%7Ùþè¿ÆX\<ÛM’€%LëÝõ¯­X´øV†# )ÆŸæyðEáÆvÀù‰ïưÿ&ðt½^‘±ÉÙŸz ¶wq4¤î{ŒÎén` ´ G ¹1ìô±K5)QhõrºÝªA¢÷ž(zÑirï±Èä6î¤Çz˜”æm·‚¤¾aQ‹¡Õ.3AÇØ–þ<±¥_ïîfGƒýƒ¬}Ð?ÜÙÞõöô ƒ†õÉ^lTß`lÁq¤¾¼¦E¦ÅU«8'9•Œë²ŠVô,âÞðB›FMË-–ýF¨³ Þ#’4:]4®ú#·¾÷¹ßš@JneðZ ™×ã=®fucÀ´ Ã_ÜÅAOP¿£üÚ+ °`Nl‹ÚÖ]8YB"…ѵb˜ž!ùrÆÀ¯XA™i|¦z¥e9!'< –n€¿·àâ¬~æ@œ‚$£Þûâ¡MœÍ(òÈÙdŽ„«¤S¼êW¼iÉ|1M6£ÿiƵŒyq`L/T퉕 ±îõÈÂê‘^';fåéªI™òÖCq‹ƒF²áƒ”höAûÊa±»Ù¢ ‚®Lë `¥bUÖQN©™ŸDjÉåQ§nXÇT<Öo¥óòRœgoâòxhµ·OÛë5Ìâ^òßXb—f%¾Öa?ŠAC¥¬šâOYÃ@ï±eÇpe¼ ÂKð3f¢7‹>\Ê©ró…#ëþ-éþo(™€’ðeo°ýÍÎÞ×Y/;òÿÙígÈ–~¼·3¸óé·hZ]ÛõÍ ² 8ÿ!šîy λo‡vï#˘ћkýnx½(žÈvg¶ ¾C” ùnÓKc:¹Ôñ×p)äKÒªÏpÕû—Jr 5Bˆ;0ev]´&pÊ-31 ߈¿°ÞðBÓ‰H©ÇÎ:tNŽ&PDó|vÅñ7M4'ÙÖ­c“Ç÷Ózüý—µÂŸæá:¼U7øvaÜá; ¦ù¦´sÀ²éÿØ|HÓGE•TÑ„ú‰ ”2ŠÙËw‘O°PóA”¯‰…é(W€2_}{^-ª.hGœ•GÚõ(Íת`ªkÃcƒ“ˉdžèRšÌÚ«À©’:9{É‚(ŒXT4 {ðõÎÞw½ÝçpõDûÙ´*VoJ8£À_<™ÞdŸ,(×ífS¯ÿ]ÿðõ³Þö·G»½£o^oË£ªåòàÿl.˜à#œ…ŠO²•|ŠV:p0hÕ®Ê4‰5ܹ¸T"–Aº)гº+[Š]6-S³€Ðø¼Bw ä†•QvX>XׂÊVLŠéúÒ’ð›$Ú¢TXQñiÙüSÆ/ýug€Óráu»¹ uÚurUúu¦³ÃBçgäñ¤G®k@^Q¹óS¬|W~‚Ð -Lḵùd‹ø•Ã2ÊhÜi’¦&Ô ýÖCO[•¹æ`)X¸£3„§8Á[}z¢¤æ"Lö½-g©ã.3ï^¾‹éù…!e/¼ò·³“bÔ­²ÐwÖ“"6xiÅï™_>á±â-Z‰Vk:¡7åš~Î@d”@Y}å!XÉh˹"BM ŠðÄÕM@s’¹Ôzä;ŠøºaM @gFÇ"œßû§“wk'ï>?ý¹Ó>Ùîdï¾I¿=‚ß~ûüôôwú¹á’ßmlüWAQsYÓ¥X/Þ”#a5àüã,š°h–L»DDLPÎUT.7»ÙV7»‡1 û¤d4”R í2%UJ´¬®f‚°ªo6!øè7aŸ£&®ôÕ|‘¨ªG;îö³g‡þôêŽÐG³ýMÏô³mžõb¥µ´þêK4‰o40TT-;F”žØ+]ÜȺWš…×2i>öê¡nΛÉA€ÊªlbÑàÂÅÊQ~¾u!|£ z‚l4maŒÈJ椴qÖòT è”j&±¨rCMÖ΂ºŒƒx8 {ø‘ÙJM¬ÈÕq‚‰€|™þ˃Á¯qBënƒæ©ˆ· ê’ ÞÆžtj6q/ö†ó%AÖaâÐd¶Ÿ©ZDNÖEœ¯¥ü-¼ex ƒ’èÒÈ~4o¦9š4ѬI¨ùYÑte}5éÇTM›:ÅtÙ B¹C¶½Ã²,¦Z>êÐ¥éÌ¡¥ë .¬­°âOéÄý”ålùsdqN!nßOfYS•Ю¨åO¿¤·M&ivw”Ö”'‘€©!åøEKð øW uÐØ€í)ÍY¥È´™`o{˜Œ/h׈ ªÞ£¼É«ª~”¥]£–ÓsÓ (‡Ž`Y‰Ü[ÉRPÛC ê¨þAi’€HÆ2Ô±)ÕͶ5CqoÓ6LÜÕ´4Ëy”&MjéÉÌ+˜ï0aÿdï·ãOÏÏ××—a]VppaZê+¡=8GƒXQ†Vꉣžhœ’Ñ4f±þkOT‘ Ï ,QažËóÜÏŠß|Ø>>­ïÓζ߻oËùlŠ 6OSŠËζի†#?\öj¿¥Ú0Îë?† “‡êKᦞ” ,èA(A(3dúÎcIÄVÄl`Øx4×.^qZ„B°½¾1„îÆóÏcÃMÓN¡!/3/—ðZî*ŸKpœ ò‘Ah•§ˆÚâT°T`?ÎEôªP-ÓK¯¼/³ÈíuUn„šHêhoеè¬\k°Èà‡lýÜ’¥1 l…t¯FñÓ«µŸï?ü9³•“Äâ$UŽú+ËÿïÚ­W\}j­ÕIÈ!¥cÓòm·PMË“½ÿ¨R¿‚_Àœh­Á_uG¼xW8F4], QÀšEƒ¸Ë“[^TƼœ¡B¹ÔW³SÄõl´È¡˜FD¼¤†Œf˜Ák@Z„僩DrH4aÚi—kÂ/3XÆe¶Ffœkì +¾iIde•µÍSÉê¨&›¿LŠ¥yÍhüÑ÷>ÿy=ãîŽÐÇÅ=YÔ¬¦ pi)²³mwHA%ðµfkðx`HRæ­–mº†»«W£˜”!£tãݘº`tüŸP•W…Šñò£onøýŒ§jùÖgŽŽ÷¿î ú¯ûGÛ½ƒ¾úÑ8Wq¡&ð'wÌgi®»ðäÝocpâƒç½üÏ ‘ûš„¬ËˆLT̵ÞB’’Çúk…N­*bÄYe°— gÕ1sè±FÃã“òÕÚ·š1N3÷ÓÏ?œüòúÿ½zwýk>ýÜ ¤]üø “=£BW[.’ã°—®Ë^È낳ù¤gšF~TGüˆŽ†FÛA¦8ÿ̾‹•&t<¤R¸—$7eÁ0&*t÷DWÆ jÕÛ7!{¿Ã§æÁÔ´jã Ïug¹è~9yõºQ»8 Ø,í¸³îäêç&ö@<<„´(õ †<9ÄÓ¼ nVCÉMû‡Yôa}}½Åž¥7¢fÀ-³·?0—CèÁãjß`+µL‰(¢©¾E9­Û„ô“s¥ëXh q«ßɹaœŽ¼Ñ:6εk‰Q¹*a4þÃH´ÃÖBê‚”€:nì¨`°§ÎhciT f÷‰Wàc}´lL uÚ\ûgJ*'y €Ñí„®öÚn¼ 'CRF^Ïú MÈŠfŽUëïV¿ŠYÓgˆå]Ph:‰i«ªp«^¯¯°¯Í$˜vÐ?ÜÍü‘Ñß{Þ¿5ŒÖP„*¡ÙåÔùöW?ù ðs'Ú'å¨L+‡ ÒK)$•D¹s‰~pðÉi„ H\Þ–¨­dßqEØPö‡iÚIß,Š¸Ø“¦æ&>Ì&&£Õ9}CÁ u©M çN0¹5óêµ ŠAÕêò[Î$ïWmÐY«ÝiµéR\Bt_dEÌ N–ÄgïÞªî6Íëª2àü¿~¹Øï8©55¥½.j‘¾ K+RÀ|)›¨ä£€^qͶ³±u’©ÊYWÇqáÃ2 ÒBËQL ‘£Ù=†¼©غ÷{·væ³­k­Àð‹ûé1îÚÇ?Ó´L©Ì–ÎrßÊüwê²(!è¤%çÄ?g¸ðüÊ£>¶ÊÇ#ü Ü:!xj ÈÓëËÞ„ÿ캑L¦øø¡7 K›'“ äHýƒ;›”·@Ût—h­ì= ®¿døÒ0P,SV‚•½¤Gø’EJÄiÉÌ ƒ ×xº`Ѓ©¹&aàÍ¡%•¸åK»ìܼ5Â÷®®£Ÿ’v³_BP›(TÜ·×,ný© ‡ÊÅÐx‰ƒpšˆšÎµ1©ÞFÎÕ¹œH“ÆO«¬Á1ný)UƒDõ§fë=ñA}Ú‚²eüÝZ˵I¦ ™‘ÐÂþÅ_R]_øµÇZ ÌéXrd¬_ä{<•Ì9;x0¸_ÏË38ÛÚ YH–¤¨¾´1˜äÏ:lÄ„Œ§ W³Ù;-¤¦Û2z]Ìíúß]$ÝCš•ePª…mkÅé¹™œžÇƒ£?m>ºóù90‡Aºˆ=›ªX'g«“%–K!Yñ:1é¼”taC ç'‰z|¼.e>$žDLúk&3oÝ"ó—ð2~ Ô,Î~*š¤ÛÆ@ã›@Ç1ãIõÄæàÀड़D1 JŸ¸¸Ï6Žžî0:-ã‡Xø¸l'\×S†o¡Gè|Ä?Ÿ2­ŸòŸÈeTó³…v5«û͘ ¶ÚOLÖŒXV\v*ùÂËpÅ:{Ûâ‚WS€ÑQ HNçwÀLóÇ ›=¨Pdw<4õ¨Ã;Ÿüd £xb`MÉÐä]tC:¬Öû÷~Zþs«ëZkk<0ÿùŸ->ö°çuóeX7Ò»™‘e]t¥5‰±·3 ë™Ê„ÎúŠÇƒCRR´¾½€ükP`ƒ­zb¶ };¾ w #äuΟa‡ÃzñÀ™EPÙA3Ê5¨ †°"¸w :öÚÚO{õóÏÔ!M9#‡J×Ò©ý ‡ý•ŸÙ^Xk)w_Úét}à "ùÞúimmóç–“¤8ì)§»˜Â¦/0?o¶Ã8¸ÑN´¹cdÖ$'v¬¶[D·ŠlA[‘µ˜±ª»Z8ÎÒ«4TqØQÜ“NO½uõg‡œóÙt¶äüî8™[ eñ;Ëràé§Íé±Ö¿¾äo‹ªöxÐtŒg’6!ÓÀ„¼üu'ñÑ:ûóŸá¿ƒó¼üýý{ÿ××ó¢xóûÏ>¡P]]çp¬,¼…KUU1²%6Q¦Á !“õ«iÙ¦ë™ëùÕ–»“p}v(”ë÷x‚) ^ Œ"¾‰ºhïêî!Í9ª *&Ç”.óø½iú:šu9» ‚ïïËw‹\C–ˆ2ASÃì¯Ñ¼ÓÊ r-“ÀTBObå<ª ªÚäÚQB»Ÿ-ñIgáÀg‰|£lG&®`,|æûÄö§‚Á&»X†ÚêDÞy—jÁâÞÚk_øEõKÿÑÏ?ó«8)œòÿþ³\ÐT.Ä"¹š+á°¬nõI1~dOµÕ£°GmLT0ÒàEùU¹–"9x—¼ïŸÿülmmûgq1À5$!à§Ÿð7øÑaD#2(Jˆ˜Üb~VRÑex»ò+N@ÍÇ^¨XˆpLPÏ|4Ÿqs^œïœ?É«k¿ /[€[ö×üm~„ÛRAä³·Â7ÍúÛ/{|ÍÖÆÖý'îàzáÅšßf­yÑG…·u?+\"A=]¢û B¹½Ào^Q)Q–S9Xoõ$ ‹ÊS×|Ÿ/Q×fQLùz¬[/OOý„‚:z¶,Ç9(ÅôŒ‰eØ©iû«î$¯;¸C/"éýøy Yxôd^:¸>(e(X –›OjÂÐ/ëíÒþ©÷þý³?ÿ™VŽv…$áëŸðûŸQ⥽–i#ùÛ¦û§Yü661MÈ,y ¼Ö©KH¼yZkƒVÄ6¬`Ý|‹+vQF uã*}B&—ìL¦(žý%ò´®LÀX‘s)¸¢9^Ê_€QÓ‰\É€íÀG Ê=À„/ò¿£¾sFùÙä =ÝBUåUI€DŒ‹]Qù‡»jî3Z'|Ôj©Â(°üTý¹&³"ö”¯Ì«ØÜJ}Áè»Å†Ë°£V„·EçU&%æŸ`m[§"ÞäOñµÿl º zкjdàžP S:ÑÕ™j€NõÀØA'©M?mlªçïÿ\+Q²6Èf‹ÐÂciZÿ»Åø+Mu3U€]ÄËŸOü‘C•ž)~‰ÌY˜YŽ¿úG˜_á«jT–ð•h@øeÙZ¶¹õ¹¿d8ɧo°2ê£Øöê(–d÷·M~áþ´V(´ŽO†_#,!¨K|ªžŒ;þ2*î ¥¡ë‰î]®L†Ó‡lö‡³ÌÆ Ã+a#+[ Yi ‹ŠÝáéõ!¥DGn†F'.MÑt}Y&*¥E÷hýÞ}xyÒ²Ì*áe02ÿÒrwv¯ w2Ø5ìfT°]âü-ì`+ñ²gß ²ö.°|´77üßù/67ý/à›-ÿÇö¡ÿã^‡m]zÍ{[DÎQp:帵¹’è$q ªRc}à¸JöõØ{ÂF¼TZ-®(ˆ…J$At/Ö³Ö½8O*Ë5U‹=bt&#‹¨Ê«ÄÓ [L.@… …îþJ)z[¸Cø‚¯÷ŽÃï Ù=X¡N·q+¨Îa€Ø”µ«tÍ€£_lñƒÓ'cuðUÒgsë§Ç¿àxüs]ú€àimµºBç1ÆúÒ m£Rá»ÚI(±‚°WùOë£óõŸq4~úrtþåÏlݵFç<.­–àö*Ha/ÔB½»à§S'åk@²ÓpêB6ârоEËO`ÒÆÌšÂ󘓣ò?^Ê ºŸ)ó”ÛF¢ÈõI>aÂ-2“õ]u pšÞ£µ­(š}Ó†9‡Àñ‡ÌØ4À5180&PŠØ$¥2BìøÒæT1y¢(IµìIÕOÆÏ« à{ë{†kt^ÀÞÆ´†(†#O ßDJr¡S©Âñ‡¥?Àüñ­þF°X¿Ï§¿ó¯x”Æ¿îÒo¸ ãßÎñ<¢Ò›¶GtïŽøÇ½1ýˆÇKíqú…V­§—ýŠÂ¼vë’~y¿Å·^ù§òÝÃÏØæÿˆ‡íñ/2ÈÁq ¾z`I¸IìJ$ep‡ÚÉF>!˜lre îNד©1þÓc<’ÿL¶ÞåTÏ&×—ç’-’Ïß° 䬠އ*R8…óA‰.挢n&ËR%z·›½ìf{Ýì  ùD~{mŸšj·¶†eXNÇŸn<ÜÜE€²Þ<úM¶K>¡—¾·xÕæ£¾¹êålz6›”^4|ù}Ù‘Ô_Å‹·6>ôºþñE–}ÇÕè[LæÕªœÌ¢N…t8õh²g0L1>ÕJM’BàÁq•?P»*ÃgÜ4|?VM¼}¿@÷Iû•ÌA˜jŽ9ÈÚ¦k¨LÛu¦ÂkÚ•¼Hpf?Ê[&9ÊÚG×ÃÙÄTáµÝ~ÇÛ‚¥IF'‘Õ• ¦…Œ¨Ñ¥<7HVßr²ßHPÆoÐåø¦ «Z3äøÓ/67˜ÿ¶äŒHÅ&^a5Ì1F}鈵˜{+ªí&*‰ÙÛ‘ ÷“(Y55‡ŽQÃ`mô󛧤†à—4?9f”¥ÚnÄ07æœFê ‚« Sãk&°@¢Âí¯Ÿï|½3T#‡1» ÆQÑ属½J2Ýb[8$á$g‡Ä•öWù€âÑí¯ÖüŸ6Èhû@o– `Q®Êk˜ÄÃ` è6ôì ôÌÿ™ô³I«B§‡ Ïò'îµ±êkÈ´Õ†ý½´RÄþ˃Þ`çÙÎîÎà‡ìE¿78>ìg/ö³Wû‡Ï³gP’²w¸“šúŒiÀ‘Xßâjuù4Peéö°lï¯ßvô6Ʋ¥?kTãüé1Fôš- ~ÞÂÏùÅòx¢P¥uªPsgÚküFÔ^N¡Ñ$Ÿ{£®b:Oä¢ï´²“aû«/É0³=k¾+<^)ãÈ>—Ž€„Òwy”tÀI1â`«ê#WØQ®þŒœa³7@d€*5®Ïiœ fQ“° XÑÆ ²âC‡ÄÓ¤°4єɡÄdÅQL.!ƒTpwh ¡ür6!‡±Ð̃xÝ*d“N‹+ÙQ„æd¨5Ü¢x¡@O5hˆ&tά•lÕêHZFRƒÖ†w]«×[·`¬ zॢYäIpšéP K­Î?|JL—­„ñõ@*ÅSR¶‰‚äGðgGc÷äÝáE“‚ü¼Á,fŸŠ×Cmêœ$…JVìuL¨ÊÈ7Ð01șㇷù:" ·u¤$ãáL¢#Í?q`Í.ý¸½-&]dŸ “êe0h¥8Grýb£?Ð@ßX¹ú _¡E¯Ï–SêÞÞ4îW¢ñ™'­’ÂqÉIâ\·¾£ö×Hôoqi vMI`¨T/åÿrr¡=kÉ,Æ3XËk.8äªÀZ(䃆¶€«EÏÚ¹?Ô:ÃÎ(UüóáˆNˆgôß©$ÎÓñ|ˆ—©ŒO@%n,¼]trÝ!SAæYüƒ°¬N;Q<‡4„)¥õ…‰sZÅ€Pr†÷«GùýÞ:µÈ`>„Ð`þ þwÄìa­íV\i&fvò?‡ËI½3,óŒT~v^B|T†`’ÉÛ1ʉ‹/—¸XSÑ1˜^M­Á3 Ëp]å|ìLñ‰…2ªž¦xÏK¤9¸Bǘ’Ò+é-4a.ŒIV¥uX³=ÈÂ7¥Á#ÕbeÖM"0`‹üûq‹á‘ V ż5ܺåã òLÇùµ·d§þ?üú1L~í»"G‚ ó27cçMp,âïã¯ló´žš˜í¡wõÁ±Þ*ñ °cµÛ -¬üõáþñAâ GâæŠ­ñIé­R,j¼=÷¼âÔ:Év Üöº,‰¿çR3k´€%&~³ÔÁ$(H,Úñpþ”þgÍX!`µ\6¹uí$Àá&g™Ÿœ6)߉“|þ¾~¬ø‹ðÌ2kUÐ$õÃ’ýI&vl²ªøwsˆÍÎ1x1ÿØŠÂmÂ%”Í—îq~{útÜ„~î"ò?ÄŒÐGËÚ~º:Tâçÿpí?üš½ÏÚ—YûlÞ¿l™µßvüomÿk'ûì>tÓ@2³-û×½ø[úx_6Z9ΰô3‚aЊŽG%Dt ‘9ÿúˆ Ï$Q–Dጛ0žœ´(/jƪä`ÌxKßÿ_+H†Ï@4øŸ;ï!Þéœl~fÊ !Š3¯°‰ß„þq ¬‹^ïz÷¥–¼bÅÚ½Ó ½x¤ƒ %?-‘[ÞÆ¥o¯~›öW›ÏÂøS)Ò·E&! ×6;¤Ú¸ücNÖ%öo«£…<–Ÿµò„‡Õl²\È`ðûÄŒÆkL%üõïÌ€ t˜››úYa—õ¿0Ât8,§¥?|ù‘¤ë@Cpˆ )6ëQÔ1÷\7üy®šeRÏÈU,{”i»„»€p†•Ük­ÌT‚¤2_n¬•¡à¤³ØÌŠn½«À8iYOˆ+=Ï8Ÿ596v ìÌL‰6:T(LYqj¿r°Oµç\øMQ\: Õx£åÉBÑ,BRfŒÁó,çàn„Œ Ög-w ˜Ä[6îFínJ®w¿#±Æç» +´-'‹ënÂO‡rÁƒ£RƒEUnr6ÉÆŒ‹CéMÚ!€¨Fëœ3ë‡q8܀ל½1ÏéóÐM«E•x– ’øþúF×… {Ü¢Ð\%${媱ìWŽï‰˜©ðþnM ‰_ W^iYóKÛU3F9Â%ˆ†\__jl×þêcøîcüLE爋U4ÜÄa'׳=H‚”ÍÜæÖ#St4ƒ \¯%8!C(† ïq!°/&ÀkNã¯!œ¡œ7ä¡= Ω‚¸¨òpÉjö#Æ" ß +Îqš)H Ô1>˜+öºSñËÖK6ØÂÈQëØWÁ…c1…ÑdGaÿËO¯{k?æk¿þ, Â''¿b®ãŠQ¥û0;çgþ/%ÖÐõûà>@ M_6Z#‹’€!E=²¡qׇ Rü)&Z¸ÚkKÌh=Õ?é°¿o9W¸5âŸFe ãy ÿ8YSŒ0‰fƒíáþI^˜œøà¢]]õóD¤%œÏ®Ú¸[Î2'cžÈ¯N„ݸ,pã‡4pÚqñƒ±ôÎåܯ§y ‰B$Ý™)‘»ñ„ºø¸œðI™WÌ1HP ¾Ú é³ÞÁŽ@…«´…§bâT’RWHµ¶ *Õk‹Ù'þ¢iEuÏ3$K¦õ¡rÆa]„ õµ¼bgÉc›|68qi…ë3-Ø?èv ï+vx—ÅB‡#ª$ðeNÖò¼ <‘šeqU‹ ›µ ô‚qÙuFŒS~þþd;%¤—Wýð}ÃÈÙT¸4LS5sìsZ˜#K…8~`#¿ªoŒ=Ä$sB¿…Ä×Þ™J›6/þ·ÈI¦˜^Up1Ë'LD0½d2âRF·Ì€©[Gh{:é±P(•<“é6­Ê´WT5QD¹ 4BÊRì×`ÌãÉêÍgëâ^Î'× ÿËÚXE`€ Cvtôr\äq´RÌÀå8‡ir§½ŒèWáB:|Í£¹¶<þëo[Ýû¿×~¿þ è§_ñ?pý R‘q"àÃA;xŠVüm`‡P9Åvc Ìh5´KÃ@Éçèâ Ö-”(¤tDZ>QðOÔ¦ µƒ ˜'Ï)Ó<åSÎÏ8ÅËð ï!°Páíßîuk£…P (æxO°´±Ä¼ø—s©è{›”b\ÏJŸp2þíQ­mq>b2\Z c+ç%†¸0í¥ú¯Å|öDUT*Õu^ØÖõ%NGíÞ÷¿ù…ÓPžðûß6ÌŠRz)É3‰x,™,²»rö`ýÞýõ/&R$âŠò)±“8È7 ÑÔj&†i_ÏöaUù#÷l t£&º$Ü­… ÊLš_׳úRn=⪹1)Y'ÈÍz¤¹¢[)‘ÔÚ=…µò9é›Îä2ýÖý†=)o©ÁœÆ2Ø”]9Ê‹_öæ @Ä:/ì ;I!‰úK e!‡VÜÙûíøÓ{÷üŽÜÖo~ƒCü÷Ø/gŠV›S™ÒH™ÒÙð’U¹éý/¶bÄ[0œ$¾ÄS«¶Ce ßÛú=P E¥D»/ªI¢Ó š‚™ôw¬ ¯æÔEÕÓ÷푦®ÙíäºëN¾ÿížyN‚4p„TRøv&~GÚžµdõŸ)W=‰›)åõ„ØüÁG<ñ+q^u̪‘•¿mü1t1¡T‰ ÂBŸ'n¢ïŽŒE˜t•Ò¦õzlc`èø‚;'Ñ3S1u“q2¢ë KtPëÂ4ÙÁ›tTÍÀ¸ÁŸå›&j„ÖÓÖsø£!ˆŽ„ÔUAL{b€KÀVª[Ïú!¥³A×B$=ì @¸•ã$™Q†‘™¸"q”Tl9ò‹;„q¸_Çj¤4qõÒ"× ­¥ñMuø€÷¤i§¾Ó]`Óû´ùÇMüñ«UwnêIì5¦ö°bÙüŒÂL,à œŠÁÐ,Ø,Eõø¾‘’žEJèB‚bÅd•K7ÿªó‰ô´Ÿb~+jÜžPÂ}rFµ‘X™Mܲ¸!P€ô„†L {ÊÈ(ñž2q–R¼Õ©»”°Wʥ̈́âçþ¤F!h~\‡¸ž)¢l:sVrjªÂÅì-f4ˆ†Š0 ÉÖ ”ˆNÊ¥L®C;i† 5¤TØ.ˆA!HîbæL³¾ «({tŠv­x{WD¢óààg~ÏŒ¯[†ÌE» >öd¹º6"8V‘BƒÁL—ªÓ5Ðþ ‰!QÙÅ¡ttú× ûmºr¤Ñ&<@tMœ!Š•]ƒ•Ú˜K~½Èÿ½wïkãÊÖ„çïý)ª•ž¶d 8ÎÅ>±GÆ8¡ƒÁ8IwH˜’T@µ…ŠVIÚÎ|öw¯ë^{W H:§Ï̼Í¡nûºöº<ëYÀ÷Óµ 7ûÃé¼Öú^1Büá}\×÷"ìÝ„ ø-}{<Ó½íÖ  sÌZ¡9†„o†æ ¯M2b ÒÿáÑýÕûG÷à¦yňÕ»î ]½šÎ ô;ÜÁvG¸EÞ‰ë%l?ȉç¤_&3MY Ä­À%G’zQVï£?!.4 ¡›Ó5ˆH¢È™´oiÖ°,%Ê@{Ë6OìÞ°ô(»D–)¨0>ÙxdŸ›¡¥T5X˜D•pQІùâ ˆÀL÷¿gN»¥˜­,7er‰>á8ÈîOÒ™+àuj¸½¬xþ Z/<DZâül ¨LèA¬“ÁÆ.vjU‘àÌÿšâBrÜ0½jãòžW ÂQñÀ©±ôž??ËÐÅÕH*¬„àÄ=Ãú‰c=®ðÛ剺ª%ÈàÀñ/b!AØèø4욘kÂp¥ qHs¯¡áÿÞ/|òÀ×#6®T4½´ #Ê1"hP9PMC0€7.<NnÄKèÉlæ± ˜BÆ ë£ÄáN„j C»{«4Ër,_–=Ce9‘o¼Lù©1‘˜ž’|Qö}œþ?×Qú–ÖŸoà` ‡lVi6!Ë2`õ–-n’'âgÒrë²l>Åê}x`´²$´l><ùÝ ‹¹PŠðaÝ3ˆ¸EJŠÃSOÉ‚ŽS¹!ã\!Œ {¨ˆˆJØ{4Ñ mWSU/6šJÌÎ$wŠ\# Å´"U¸wVÈáçç@¼ç|ŒÏÑêoùx|FSù™Ž’4%‘ FhÄ0’D?Ä6°ÕájMEI…0MZe $ö)Œ7y.!kLÁÑ[.BÊâ$í¦þ¼üÜ{íÓÄ¡ˆ©!?‹Í=¢‚60…”!ój:•àXòøbmµˆ> ’äÈPHÌqÏÂqYKòMkQ0íP¡ç"öo/³û:Ž“N0" lôŒßݸéwO(ñg™…°z¿—GGëÆëm[ Ðñ«ë¬o<òwùÿí°®áÕÊ`‚ b2ÖUô £Ò(TòºRd¥Ùrä2kn»ÝN„<6R,L±bÃÌOÍ^’/_`k [(çëÕQNÍØ[7ñ¯kÇds¬³eÙ]B¾ÿ<ï ýhySRAÑÉýIc t±i!•SürËÄ›ý·»[ÂEpðíö.¿ÀXœæ–Bäú¸aöŠBI.r®·%6`Ĭ¼»›÷àp°<ØÝüfo÷_q?;ö{ý˜¿Wt{säãHw¿yÁñÞ«W¾­3Êgnžqt“aE®>gÂÛ)ø²L±xDÚôwo¢û“_í±$ N?A°-Æ“âÇñâ¼øéã_Žêû½2•&ÒšuøNc&ÿ,ŠŽi¢ÔRh&ÏùuÚ1ÏÄŠxWR}/ kÒTIx, ýW¯€µŒ$AxÁ4³¾2¶LoŠücwØ 7‹8oé¦.m½Í:C›IJ;ó6®Œµ$Ê:8Ü{½½I™%Û»_gƒÝ—À–u°up°ýÝVö?ßv·_m72K¿W,(j+å?OLiÚG¨ÒȕŔ¯aˆj’ÿÃßå‚…ÜG9±˜±‰k8¨ôHf–=R¹+Zýd.ÍŠ•/Ÿ -eYp­‰]àùž‡BíFévÆH™Z¥àJÀËéoÇad-¾€)è>=_Ì‚¦GàWˆM‚bR"&¨–Öˆ:§´gДv¼ðŠÈ,5@¿¨Ûu#¤±BÓÍ:[ϹXÇ;?8©*:ä¨ý•Å-h*ºÄýq÷éãφùLᨨj?×É>³¥œæðfè~ä¶lM‡ñ¨¸ûF‘¬jh TƒƒˆËžœì±|$b¶õÝqvæoã#ŸÒjx÷%õøGÏ™„¸šuæ ¬£ëæXRÃf‹þ¹89™×Ù+ÐsAÕVÕ»^ÀÞÏÙ–&ÿ2…6avˆú·Âsµ ‰Rª GhåhÑ‹â×]Ò1˜Ç W®kbÑüË““iqá5ýób\ÒhTËfÌ„7•,Ô–Ã ×»’èß…ûÉPZô3¥&átq<û9ùÈBóúŸ×žo@„^¼ºñE”ùŽÙiŬD0ÊÄócqž~ü~Öõ¦×ÇJÚÚ³ÂÛ~^’˜FܧÁ}’4}œÜáV+µÜH0¼Þt³†å_ÎÕ2p¸2؃¡‹‚ˆ>D~ ÊɈbcMdG\Ã׊„/ì_/ 4^ÎEÐi\ÈOÕ™œ¯Þ6y¹1̶¾<ËÒÒ–¢à[d%üñú¢PÝÎ0H¸mTe™†$ .ð=SSq‘›ŽÅnyâDa]•°oó +›¶™í“ÙEÁK’¦"2±=F¶L1å ð*vì5!£’¬„´„3•=ÂL·KJb@£™\uäÁZuUŸ¹}ñdök‘ê«<Ï(¯€,œØ6Vw\8Y`‚û›¶Ö¸Düáþ©¾ÝèBILAš|ªUSU˜‘ËÆ×_@ø:ÈJ^ÌêB³óÙ°ô«³¥LŽª AN®t³xíÐÐÙaB>S°´tª0sš4ƒ°" ¤¯*É ÁÌr\ PŠ@j[CxÁUˈ“àzëX.8ÃôPÖÒ6gˆU´ÇŠ·!£9´" õJ«ù˳âr1ŒiA\<0¢-Àò¬µQ•2]t0:ÕnÛðÛpôÑ[ϽýG¿¨ªü¦í’¨‡™ù¤`>eÍ™<%U›“Ô')}Çaf2½(>ªŠJ.;œM&ã~¤ ãF·ƒgáNZP#Qí§úYÈñ™i‰Æ¢OÐ4H–pá»OÛg€…·sBUÁý9ˆ…[Ð>ÁŒŒ)’%…ùÜá#ø MiŽ•"/WüÖŸæRdÚ‹ð\h±ôd¸HŸ(ë ð3 Q­f¯¡²ýëÑæ¤ªßùWC¡{Ø“è#Ժ˔®Ü‹r2ÏP% ^{mô.?-l¢÷¨º(é) ÅÏ ¤±;A$IpÖã™IÑàyœTžp$ã;xuŒÑæYøYÍ%AP%Ý:ZcVš%+o# Tá:xð‚Ã$¨|üŸØ7ëZ­„¦F×€Üc'Ñ :ŒH⬺(ó¾%‹)ìA©+ÀF&ûE° 3 Æöîê±/Š œåT£³GkwIKzmaorÌbá‰ðɬB 2ùÐ2å³"z< Ûq­%òV%ž¶fÈÏËûª“÷U4q RÉלØP„¨SÀ¢®mí½|𓼘Ç#¼wÿÇ?èÝ´ëGp´ƒLHe8«ÞÓÐ'FÂèBø“6Dp¦œ Ëý„뉟ðÅ`óÛý­W[û[»›i¹½ÅœE`’ŒÐçXMí9KÀ&B®kxü;Æ/\‡|ìt¼·²L‰­ËaÝ>¸°Îâɼ׈…Êix/'_L¯ÕðMðŒmq1º #oÅ( nF¤´Å¿Pk³QõY¬*9¢©`gÅŽîj.n{åQ+ŒY5M¥K#ñó³¨,ò'*të¥ñ2d•IYå“›O%LW³dÐÍ.~(êb'öpâ¨6ÓZ¥ÄÌæ¹rú¾š¼Ç3Öþr»×:Á°Ë q˜Áò‚ Á ã< ‚Á`ÀÉ5~ž—uÃÐAcSC‡÷…VR7|S¬P‹T5º—B¯¯QwÄ|ØyRì ,÷Ñ<Ÿ¬f…ÆP`ØÎ®—*X'·´…óêŽÉÒþÃ@†®ÝÎ34p•ÌkIn™&“ç‚5Rõuó³*H¸—Qù5é±RN¬‚Rê#…ÙÇ.çÏââ™.c|ASÕðn ©Rr.©_²£óóayº(ç`œQ¨7ësÍ®»H pJ/ú§OÓ40V ø¯’âISW{;ˆ(±t ý[X HÁFëÂj[õ +8 ”u¨™C ßõ³£uûËiüÛ‡€ñLÓÆÄ9<Ê($…-ÇUð9ÉÙ\MÆjƒFuÁ,¦¦ôÙp‘|žQ3ñ iÒ饡êVÏRóž•=?+ë&µÆXftI>cÎ2Ú´bÃf MJdhì½› :Weßñà%ƒ8ö¡g] Ë»ä9-å¡éêðìõ§SŒè>b*mèÎÆ/L?LË­Ûú¡% v÷®ƒ õ½OÁµ€l‘Zò×-¦óÖ~qƒp1(™ {ò,!Πץ[_Dü¼i› @QnÌï F@€Ø¢lc›<[‘,#¶Åýžý[Eéóê”2Ofù)!cÉ„dÿfø¸ãž{Óò}L×׃¥ë g:^dš3OkÅ 8ª¬³*ƒ—úAè/©^Ή¨Ü&„ÆB Bp–ó1´&&ÿ&¹ûdÖ¬ å*Ä0áÑú`IØ+å#V!i9TQ©hØHÅWÍ.)%ñO£hA J³iL^ã"Ï<;¢KÉgÐN’ò¸­é/©\Qgöï!ù„m>—Æ•À5z´¶ºnX÷ G}$¨CÝ£Â{Gë\÷¼L ¥ 'ü{t"ð;è2ÿ"wôMBxEr&DBŒDI¡ÛP¢Ç¢ 4Ùhasp>цi¢h1÷9*TëqY& /Ÿåg½£úA€qi§ý?¡gÜÍýÁ7™ÿÿÐ%úÜWgÂ-An͉k@ndiIË´ê€ ê8),àÐ{~VR^dÆÁ^Œ4ø0‹luwëÐ8j%[Æ-✄ËÝç_¡çU£ãNºC;Ѿ(&‰¤T@f•ÌZ Q Û] &¥Q“ÇÀ&Òl¬fÊW~È”9¯?ÚÆÔ€~ V>:u6ΛAÐ=k…Åäµ´ M‘LpßãÑ2s¤h†í¤H6Ÿ¹A­CÒÍ82½öôbÈ.¸wöÞyïbý^tLJ‹õ_ðÊ›%/ñW¾ºXïÝøS|‹2·K}cÒ aN³˜§VË%/ IA¤t9sX"æPkXðh›˜Âiˆvà!*¬Ñ4×BåFÝWN¹ÆÞ(µ,:}†×‚(¿C…Äkz½£ E󪚌 È@ˆ¼ᨠGcRÒ׃ÃÍoŽßîl³%ð7è½Ú| S.€Kè1ã¬MŠòh>T”p&ÓÔî(0djp–ÝhË \W¦@’d!'Mv’Ø»,O^Î- Må#g‘Z§}ò{K!§Y`ãL<€ã`h©y`èÇâ·¡ŠUT«8ž ÎÜfyCUDê‹^Šæ+ µúlÅ}øEÇMu$IAJN~I²ñÇý¦üÓ¤—Fa¡OyT(Bůz \nSƒ_DU-Y펼%œ(==Ö¹ÄÈC4œBrÐ ˜Œ>ÖÍÖ{åj^®L]lêÔª b£4fÒZLfÉVúÏ6 •yTÞïÍ:(é»ìã†C +,æ#¬x‰ÙÚ6g2hm}uâ5•KÔEÔ£°~+Þø&p”¼oˆµ `3ù\òd±£Kmã# MÖÄJtÓExÉ~84é¥P4’y¬¸SMoÀ7×`”z§Ú€öÌIær”N‹qƒ`Õ®¯­n0 ˆü•T¥fে¥(BW`Ó¹\­Ö+_žÖ›œò)x÷à`k’‡<À®ä…d"q`ʺ |UTUø%¨àyÁd5’¡ø^E˜¯2š µ!BJí£a?;zÑwGÿ߯ýÿÿÕÿÿ?úÙÏ8nä’|BBi’óõkÇ…è$‰7Z–ÒkÐ,,5½iUAãV´%åãQ VŠ%­YÃÙ &:J¤ù”œ§´_z§$)£fœæ£er/9lt‰•*µNk˜:¸p1«€”&Nïк™-Ôg,º¨Æ´F‰ÌvìM*¡~—f7q:V®‰ê{š žÁ›¸|côvZ;Q3Í š#Pý{,,lÒ—d_ß tÏãt€‘8GÈ{{ê'we˜×Í•âå²Â­Ÿ€=Wóa ÜXY~F™íØË€¼9ML¨øEÃ⬜B…òz5hÀævÛ²NFßð'|×PÇËf w¸á€ÞßËüÓÜ<øl–<‰¬r)Ÿ âŠÙV’0‚L¡ØäRu±è÷SF‘7>JÛ)x#§šRÆ_?ÐÀ[µ&¤AÜ”»•Oxà9Ò:$ýkÈÂóâhR6õ~³žÇM5c«)}1Zè»m 1‹\©µ®5€—ÌA$ÚæÃZn¹$ ){àôö-9Ób«l$„8 ™xªÏv_ y¹•¢ñÚ¤ˆƒï’ê a©$ñX^C‰gD¥óäE·€mÓu§xØ!"È%Q•±gB e ~1ò` ¹£Þ¨tøñÛÊ–¥TJµœÚºVè Ò+¿N®]S¶*‹Ž1Ê5”¹ÖàäLŒ‹ –ûYåèCÁT KR’.œ¸½–Ø S˽5QÜ#¡Ù¶ƒsoôQ¯HaA2z'é†ÒݼVä£E¯ƒÛ¾KÄ]ü!Òð¡{w ÙCq CX ˆ'¤Â º¤ÁO)ëÒ°rM«–Ã-›„:!j$<ÅàÞ5ÄÀ¥öuš‡D­ëK k7öÖ¶V´P¶§~¢\çáØ0«NE­‡z1í:16Q_û̲ØÐ‰T ÂðBH])Ì€‹$-á¼eÞúͱ°s‰M…AJÔmáµIN a¯ZÔ)ÿ]äaéÚC%aü%Ã…CÒ™Veb‘F‰Áø5G¬î;ÉeÅÚÆ›Q3:EêÉéþ¼ùˆ'¬ 'Ý1ü/mKí5NòTH«#þi2æÏ47­ÈŽ+|ZNFQñ€`$: *Çi‹2b䨱ءüð5X\y-±oõ0¥!Z*L 8;OM©›e#+;Êð—@4!š„H\1±‹²bw/óL"¨A JyøÑc±M®# ”3g\Å¢£5RòÀù\±h²NYçz¢Mf‚öúôëz„Ô©0„TU!8ŸCék ¨¯Ï‡•7ÔB•wS î+J½&WöW‡%¦>'ɵ«¡:ˆ¾P—³)_Τ|E¥@9Ó qB­¹^’!0™˜ZS®{ßÐ^ùÖ“xdäP?…h=QÑç0UZÌÅÁ„úÚ«‘×–¡¸{_–ú1Ž%O2¬Ùuÿb’?‰¡iTñ)ͧ¦­Oý¡ù-²[žÈ·†-OÑÌ5?=:]þèÄs©7Ô3àMO“EGý„”§\ÇP ÒZ²Ü‰®(1_‚f˜¹4ì%‹– Iv ìÈ`Z¹Ûe[¦ –<Ò6¥o…? èi‘øKbšG—üKŸöP„ó%øËºðvÕá£n!FY°…Ã÷ ¯ØYT»±~Ô¼o)°Ø·9^cbyÉ DD¶MÀ ß±X<ì/Èsãe`M$œMÇïó?À워ãÀ9 ¶¶øÞB3³_ša\  JÃ7Èòßyй àhë¾4¶ºjú…ysÜRŠ>ÈTTÍ@CÝ)e|%Ž:› *ÖrÀËˉ}^×(Þ3 ö‚ŽÍ&ó¾*áH{ÇÐJPM1¡ \^p£¨n(¼o\1 š×ùzÑG¤dË_W®y(3Š[ÛCösú¶s*„¦ºUôc,¥ýð²åÕ`{§G’éŒYìâÞ„¶GmüÈK˲ –T4®ÇÒ€¾›E Ê_)ä±¶]r—¸xÝ%¸!˜Ÿ0äLºÂ‚ä3..âãö­øÇQÊrÔ1©SÀøÖ£áä¨ë“#ÇÀÛÆÅ9•ŒšõjT uEñ ‡ÙpM˜CÀDœHÞM JÚjŒœªZ9P3µÆ'ù1^¦4­–ò¥æÕHÔ›C‘Ô¶µ„<|4^XÈÔ­³Z¾½À‚gÙÝ:ËÏg:P4m•–ô"­s¦€ögmÄ´£X=Äx¬9ÿM8:³®0ßm<¶+Èë9o£$4Ò÷]×ô$;ßïÉÞÕÙG)øGIˆ§E'޾ÊrúöaOQVuž¡ Œ‘˜žÖÜ*[¸jÂËdARý=¤Ø}n1w¤×‡ýÁûÈ¢¼Sšñ•/pQÁ¿Ö?Îñ¥eÿBµŽnLÝjÊ".nBv 8¾¹‡3§À˜Ö5Úwè;¦Œ9ÈŽó €V[Ä]m¬*„qôô¤šˆŠŒ°¾S†›šòä…S¼ÏÄG~Ë›rQû-”ô6@âþÖá%åCoÄXut¸>ÿÓ½,®¶…ÄUx­)Š#–‚ æå¿ÂC')±ìïTXVÙ~!TúDeN8÷5FJåo¯: 9¦®±¿Ò¬ßPò9Že§×h剿üwÖ)ôŠ©©äznHC>ÃB‹›ƒvZ9- ø±AŸ04ûkS¦Ð¬X¶€1ÑÝvÍÅñP¡m–h\Íö„ÃA¢âéft ÞÏÙ³Ì)§‚SæÛÆ"­Í,¶¢}!Iü¬ È¥rq¥šâaqŠ^í1$7ªK“¡rŒ`‘e «R«ý˜ßBsÆ!±œj¶7ê?+˜5ˆqôXe å޼Á½Š˜R3RµO@[Á>)™/¬‚$þXÈÛ‚ÖÊqÂp¬¼n&شן»Ï¯z:v^E3æÁƒ^Où6Wï?÷=Z?f½¿ØÀ\Ì ¶ò;0 ë8ø¿ÿþ´#*9´˜šñeÅБUâh¾{è{õõ©±ÌY^Gj$e$rˆÎUG™¤Ä;² U«IPðT#à8‚1ŸS&b®J·r# 6e~VH= ?n¢ì ”ÚªÌN&šwë”ŠŽ˜]èíáy9i˜*æ Q 5úÿ±ô¬4 µL)­¹IÞ¡a%ƒÑÂ>€›KÅÒÕË–vX´ Y€œï>„l4ëÅß÷nv „Êïˆñ¬SgØ ¤œ«ai6ËrËáÓÄr8Øìfo_îcá…e¹\7åú,Ë}é‡À“ ;9q.$\ÇmúâÐTn,ç’Ó’…VM 1ò5 ýVäƒÂ š†J ûÑãAV/ÉŠÊ`‘|çf÷>ü±/·šh¹Œ¬äLÔ¤Ó…´f‰ÕøŒ*E™ŒÃà˜9.ƒÀJHÅ1¯`òCï¦RuŠsî_¾}³;x½u öz ¢!޼SàÀã°WŽ d˜-“F’i`c\˜H:˜á°{È0µl “€›â9ÂF ×Ü’EÕgR‚æè€­TM åbŠ´5LP¢iW%9UÚ_\} áÂKðSw˜ !Ž9ñ§¥ÍÁ)«FÂ4ç^0»šÃ"›GOØÕíõI%¥DRŒi–3¯Z‡FÔg¾l|¥øa©f4ÓŸM}Ç G•‡”Ÿ"E8.‰Îq¶z°x"9 ìGÚ 5öâb·WZ˜ ƒê,â-!¥º‡Pçô\!,cÔ)Ù–mŠ­@x©7–³-/±Êú¬ç,´pìtfgW˜.Á"N‘½Õ³³H4Ð.¦M¦V(7Jå4Ú’¼‰Ema—+ei“cD¡QŠø ¡ôw¸Çï¯/ Œ^ñ±ô48Ùi¹²ÿŠ1”¶}ò]z>;;º¼¤¥È¾ç Ÿäœ')ÉÆÚÁ~ ÛrärFb®üuŒ¦dtrììá8+9•A&|mbt¨ÒŒ/"ϬÆù<çU@æ¶)ÔEY0~¿ûåã¥DWLÎÚV‰Ålë ×ì³t#`ñ2Y<ª Gš*£dzqš.›CÖË«î(„‚uÂÚkÏ=˜Ëý_ Í]] w¯ˆ´":9Û8Í/7ó§³é~SÑp2#Õ쩚’m6L;Íå$‡ŽÒ‹`PË™”&ãcÎKadÿ Š[êRÒ¢{®]G}ÜÐQ÷·ßfûoS­t `C¡õ‚U]€…›]Òf!´ùáá, ÇŒÿº{;-¯Äo’¹Üñêbd_ÏŠâ]KÁtJÖŇˆ»’ªÞû}Ïi#D®Ç ö¡q™€N i¸HSi(2î…)'ªÂ]"éjÆÜ[+À”cÊÝp$r¶˜HeKÍ ©wKŠQM^ЭžÍÏ'ŸÐ›÷3èqÔö’NÌvúò罡ÂÊ7ÿôn|t\˜+“‚íN,ŸOå«Ê+Üå°™ 9Ǿqìo¯gO¸HÜ K5ªù$q=YoX>¦D·˜µ¹ ëÏkZìÑm¯ØÈ'/}ôA›>&±;GÉwQU'„ì˜# ƒ|i³¶"«™ÎxX¸È:C Hjt.òk/sVýÂíp%rz’ŸGõ¸O§ÈÕ‘tÑÊ•”—£ýC½yíU© ”Là ðVëŒW`Èè ]è‰53à A:w–l§ÈµŽ´±F˜3³~€ àèàA8ýIO_ÌB¢ÇuS0PgøÜ ´àó³Ôø³Ï¿:ºø€où¥×lRFrå*BZ0ô}ú–}RÈFsM¤³tË%Yb¼IÐÀªŒœ]€Se‘ÛEÉÕ‹qHw¦—€ŸÉµûÕrV/¢^›àùÔ4¢xo"ùùU3æW$4 *s‰.‡ƒùãÚÊ—Ç«?ÝoÔèm{*tb4n­+N YžÂ*Qe/AËá-žQîǤºnËHj2*M‡4Ïè”m ¾ˆÇØYæ Ô‚uJ?¼vRæí¸!âò:®çu¡‘ê#&mýu]ŽQÖS£ø‡aê²²îÍ‚ŠA¦sð /glà´†}[ßÈúÃ~QY6ªÇ y2úrÍs!qæ3]’Àæ{V«AÄõþI´ù)Þ­œŠÄ· Ý€‘åår5`€ÎŠî[œ-îÍþR÷“MÞºV^n2 pH–õyˆ²F§Yäpöïÿ>ŸFø_ +¸Ýulé¨F TÁkOžH<š¹X“)¦­D v>™¥Ì ÐC±…˜¹âÊ7Òg®!…\Ýv»18Ƹ@­+u¹×ó³D£ÜÜÛ}¹ nÎÁMKDXy™‚LZ“F=„££!@œqîB¹J®ÈZ©¡EV€ÃxÀ•€¸^†šÂ”ÉÂ…ê$fòð/ög3ªŽ¹@IG jý,‡š„Gï Ÿ¹LµuY…î*ý}3ÛÜ/1Ë,ÚÕ;z×E-Jï†k§U¸-.[±Ô~4jÄ’QgÞ uXžšº´ f†g]¿‹™¦½ʶ ìê©Ù—ÅDá’Í'•»¸“U¾žxÙUg’Ù㹕ÚñºÎÛ$([yH×i¼l0¢kƒ±Xl¤1f®Ïɳœg˜žj¬[ùA§ßcR9ò4ñi@¹M);„£f% ž=A±(ùE¼“Ä|„" ×z/ë>¾ø¸ÙË>fÝ—ð?Ï»½­¯à[½¬åÄ?Ôi9Ý„DZÑR~’Ãi îèª É´Eêb1®VL`‡3D^n½ÚÞÝB}æ»­ý/Y˜„=dEÐë&Ë1Æ¢ wëPØ" –·ÉÒsm‰&#÷ã -.ûâÉ; “K€±¥Ps-WeK!›JTÙâŒ3Ü’!Aw5½Ït®>©=cF,RCŽø²„N§I‰vOOõsrak’ò°Z›Ò ¹ï-ÎgÄ€±e²—{Fãî8tu1Y`漜újºÒÊvŒYĹ€­‰Å!!à1}|åŽÆšâT3µÙÈf&¬ii¢•JôS2û½·²ÞãŒXƒæ“r}£×wàÏð%oPÞKçPGgÎÅÐåâÏRÜèð¬½VQ‰H7ÓæbÖW÷Áz/©Ppº#PÆôÙµ{¬]Ò ‘K¯xWroJï–æd¼¥©@Š7Z³4™±H*õŽ2÷¨˜ Ä R$Á1¾8%¾ ©Ë)E¥ÜÐEäumGÕ URZ‹T„©G ÄÊÁ›u³ÞóÌÿüøs·÷ÓøIã#¹ ß9:d,Ž—K½àôÐ7‹fmyk5²nùÀœ'†p+¤zá¡ .ÄG Re ·ëô{`FïÁÙEHWѶ€ä°š7›IO8#$1(UFñ.›…/´š@ÞÚy¬uSëÊ:ÎÙ×ñ ï¢TÃcÒ€»W€M‚` YÇì2¨0åqr†ÛxêçpbW þ(ñd<Fµ^»ûë½üÁÇîóõÞ0¸|CAŠ‹‹¯\«xÒ7›³l˜št¤ŒeIŠFÏçB‰<y“±;3Ðù3…äÂkDèºH‚ ‡@@CË*Ìö×Anç¤ °Ý_g)0V”Ê¡Ò6¼2`úYc''g àvÁØ|0ß,/~öÍáѳŒ>‘¿cÿOzŽÙ”ﻬ>³gÒ%¨v<ìÈncåvMñËE .kÚ~Åp2F#|¿†%2¥ÓÄf%,GG’&ÁÿæãÈñq”ýÓÇ‘Ããˆe]ë Z,è<ëÌ« êE§/|Pµl™q¡;Ê«%…Åî.†T#5%ñz %$NTV ¹¶U%°{ÃE´T€“›ª×"Õ”¯lú?qΜX*©¶E¯kñ`Ì´šÎ>”ó°.^o^Ú0&B-MlXý®¼¸€Er¢<³3H®fE)N–æ…L¸*oçðvÑ•!„߈µÃtØ•îlºPy(üH]Â+˜S¾ÿmG·ù…0VR‘^ʬmÔÎÄšfÛoÞšy™6ƒ„ðftÖ¿ÜX]ÿì‹ÕG«Ÿ>î_Phð¬KIfqüh±à¤ú±}W÷"éÄkG$èðzÎ%×6~\[ùô§£qö1Ûxìÿýø'ÿ¯õ£1þåÇõ•/z~4= kð8<êßs´*ÿî}xôK°l‰k!IÞÀÕÈ“)%)èHyàSor¤Vwà+ˆkà²Ä‚® N ñéïWìT-0ÔN†º›‹_.TŠÙxüY‰µ=Zy“¼-Ë™¾È–@™x’!Úˆ³•Ó¦´„̇ñæÑס9»·e¯Žƒã,”àAbˆq5_© ß:è9í|mz/ Of±‘¦‚’ê9Ÿa ù¼%۪ЫÛJ¬>kŽÛ˜YÊé;Ñ2¸.O9œÁ7`3†Ã‡ß2‘iËB<Õ×IyÊÁTz°V\Ì ðèEò)ŒêÕìmÍ\UxŒr“Ë1®œòáå#‰öÁ—Å0¹¦ ËX3d>¢ý!a"„(;Ž£" ¸æƒ KúÑ[Ôl»€sÔ@^ØÒW)Uäæ‚WñÛ°“Ãk[ÊÛèc*<ä4P©q]ÔS Bf5Š;sF$ÕÕe»ƒ;ÿ«»–¤i\HÍRçF"„?@D?N«“ú‡ }Ñy¢õƒa{ä‰BûÌ«¿9ðjˆŠ:ä5×0!Ó4?+^â>ÉY£“ b¶ÔùÂŽuó!Lœ¶Mhøœó¹A¿#®'*dsã5#‰n“Ôw[k%`qº¥ ç¶5íG[RA“Ÿ`¼ßVd¤µØIR4)®bŠû2í˜peÝà)@*³Ø7˜•ZŸlÑr|þÕ?ç+ÿøéþð¿x>?lü²‚¿ú#iÍü)ÆÌÿÆŽðX• 3i²/g™„q—7¼ ²K’„ð¯M×j97&ל?jyæóò!'Ñr>°\ã\R´Mš‚õ¤HSð|›·‘ùÒ>æìc4+IàXÆÅ”ƒ0ù(0Á¥qãñJžç+c\åþü?F(fþ ÊE@D™I¡ð4*Š4È~ÅÐæYMK¹h´Øoh’a㲆-5$Ðßnëu@9꺯õb]`³üWK•…f9VÓÂ`ó8ÝVÜXåo w^¿ÞÚ=L N"ò])Vl±ô¥f•oJ3ðpàíØ#2O3j¤Œ¦¥:$#V‚Nnµãý+ûí¼'…68˜`v>Fb(¬ÔÝçó[ M0ý\V®‚?ôâ„GGÂ(Äí‡×V¡–ÁbJFYnËŠ½wŸ°õh˜ÂË5Á‡)©¢Kvœ²¯Õl— .6¢á;ÁŠŠÁý¦BªHÑ@„¦ãì3oCP¢Ž:ô£oˆ‡Ää5Ý‚B¿?ÍÁö´¸œ ×Uãž•!f ƒ=˜I(›°Žò\ƒßMÉd!OøÌ3†*³hŽ&…³-QëhŠîª-jK( G6”úeɸ¥P‹LÙÛIy '8VYŒYøC^Ykñ!Y^%ñ±Î‘(NÆYKR¥~„m˜åÕ9"DG:±:½LSÈi9w ¥ª QI$Ë2,<"nåic ÀÒää]¸rRX™Ð#/qæ&Ž2©â›+ruø¢¯ìÁ¤0„U¬2³ô #6ã„ÛªàŽ© ív˺0Déº$Äm;l’LT>ç°Í9žY~}‘œFû[›o½YóÝVöfpx¸µŸ&)-#s ¸dqT»OF¡Œr(²3mˆEª÷V1í&OZèÚàM¥öª×¢Ùe¼… [ÙÎHNc®ÑÒ‹ b‰ž’gütBAl³€`ŸP5ÉÙ°œ£ñÎÐ;’jaø *-Ž¡i›1è=Q`æ¶B·ú¬8Å¢ëÅlWŠ#+hà2ç~±‚Ö;'BP){èXĹǥ7¼fIZM(ˆ€_ÇÄ¡˜ðvX¯€Cæ èLé"öÀ1¡° O Dr€ï6Þõ˜©^A–dõ°ãrÄ•‘Ô©$ÁýñUö÷Ù‡£njƒý)VŒpÊçüM¿ô²Þýì¨÷ËÕSkÏÀÕÕÕU•Òþµy¾a|£Š„u!\+h@bh¡o&*3‹boÈXCaæe‹ÅDßn4nà‘Æ!ølŽ4?åÜ)¶lˆ¢Jr®qD#oR§¶¡õF11œpeÞZ5R:è4XǾ¹övÚw!Ä…i/)´Ëh8 Œ*iFw°£X•„*u=^]_k­Í‹(Ê—bC»Ï³’•Hñ¦ _QrØû6ýŒs|5ŠD•j,Œ*\ Õm.Žù´2|>—˜@wlã¹$?æ·¹ÛÁžik¢RÆ›<¨†ƒ:+2«=:Íì¨vŸï36f­‡¸3v4D–J«4ÐÆD…†M\&Ô’†&,²À`:°Uv $–ÇHC˜Eâš3¾~Œ*y€’bŸ…„ðq‘÷؋р¬áù?ï»Vkå$°(ÔY(% ®Æ¢%û/†…Íìêcã4T@ôí]ñ?ªfö=¹Njqkcz«¾7³ñïVû¤bÕ„OÜÜ=’uùä﫲µ<»j Í>Æqfˆk °1"Œl—š#‰ìr†¥èô ´r¨^F ƒKÐGÍE±Î‹"8¾/ÈQ~ÁzHóó*Ql¦cJ¨sP§ ÌAÙPÌcž¢>âÍÑxW¨à"cUu /aÖáàdC¼»&g”C‡ÕXËïq—ªU‚ÅÖ8‹ž5$YýÈÄ eìëÅöŸƒX±+½ýl\•mhnïþ@ç[س'u šê¦Á³=ׯkeß ”„è“ IYY%ÁAg5å[k\˜†~×^‚mcíJ/.PRSk:Ïœ?>)x‚È$\Ì¢Ë-ãŸ(^ˆ,TN¥É±ÑTh)‚¥˜ŒÝ¼÷±;RÒQ欥¤bOQ°Þ?Fµ²†TqýHôU¿è×i 0,Ôsº ³ $Ò´J˜ŸK<îý¥ Æ1.ÞN죩ù3ëÊSZ”5zš¸YðWß J^•J Þ±¤å±÷R‚&sA^0}0§*8Û#¿M@ˡܬtÙ¶Í2ŒãߤօÙ†—."¢‚€˜+2Ô)m™©‹×oÆo:Ó˜P\æÁF/æø©_^a4“ÏiÆAcCšZkgMÝ“|`xïÈóûO«@u;&+Ò~ŒfgËh%€`IR¸¹°GÕèÝsµÞ4AØÓSÒŽï²bÅ÷¾AãïÒi4夾/èàòÃJ²5Ä×!—K¥ ©½˜* 6>áþt1mœqÛg;µf9)‚P…݈9I\©ÒÔÈ ¿, ß–8],Sk†êpTñ¸ŽnÖOp6Ô!*Y…T`+½ÆR³9…á¸˵œB¦•[gÇYÄ%¦±Ó,Âs…©ÊËOW§Í˹벘øc­3å8xÇ€?ó3ÄC—‘I êÊ Jü&ÀI»ÏU«I9å³÷è§7Á:±I'¦R_F$°ŽQò†¹“ë`§µ¡‘S5—ªª 'BŸ¨Âuê…÷æ+äLy-‡ÃË”b†§P€÷Y6¥jˆY«h°³œ?ƒZ98tóPÒÏ–% èê6)eøé„R†ÿÚN)£9¼Y¬£5Cœf »£q¯8‰À™”O&`Êé«+· ZW:Ê;ÅI'XŸD«!Zz#à‡¦Y(V§CÔÆÊRiÈî?ÃEÏôÑq‚•„5‘оÙÑStI3æy6á`3\x@½†*`î ¿6gœ <^¨9ÍŠ7 íeÅ ¡ÓÉ¡G›mh㳕`+ÂÌY×Ј¶b.Ä…ô0K ºËàSmx&Ù¹ls<ØI2®å]Ƭ1&Ž.oAr:'ƒ7 Û4XNpçðÜêbÓ‰=w~<²£±?”N÷3^Áë§ûìÉÛ÷êéý ÿ¦çÔ4zMÙžKp—}ž’ËÊH¨U!‹=(DVbÕ ™Ò¹æš¾Î,…‰¯¤Í  50²zà A5•†$Ešœ*èsï«)+„NíÊ‹£Y66/l£ Ý¡’1À¶"³ç„Ò4É·¾¶úh­ßÞ¨R^Ëd,)~@8|nrªÁÎÔ¢ÍäýÅeqµ„ò®BsŽäí"ÐÓžp_ %o~¬Òñ¸ƒtp$X÷@­Ã?Mˆ²ù5­ÛVÄñé´šu¿ñCYI©Åž ©Ì@XcA G“¹”„’繄­¸ö™h§Ä“ebyH ¼QeZ·ž¦20htzù±˜âQ“?°®ˆeše­-—y3ÍcêO»”S= ù5¥î!iT|ÌæåÂDQØr1òlîLEN©¤LáÆBjñàÆjx±tŠjb¡•©Ö’ªµYHï u{¤ ¶f‡*¢o«•¶ˆHÊ1­÷Ž6>®>ïýÑÚæl ò†Æ9­à)ÕVýt΢X¢zp„‡Q+A¯?ÇãàÎŒª8Q²NwxÌñcEð}§Ï¡M>6âŠÈqûÖ2—l¹úEçŒý—Ëà8¸‘󾡜먟'܇vÄ/Îfü"¯âÖ0€ÖěθàÔ•hcK êç£ïï?€YÄÿÂLúÿúÙ„ÿø…ÿüÑ_oÒ½@îîÍÁÁÖÎÖÁV^i_FÔ‘ÀÏ9ðÉÑõú¯oh>ñòÇÿç<ÿC§éÞ%gX›qpÿ+wöñ&#e£·¥T vs®¬‡„øŠ”êlŒZ²Ü{Ö-“(é„(0è…uÅ6 È5X°Ju¢y:åêšÕEd÷³ƒ&¿»äˆÔL <Ü2% Ù›ö(ÔÄf sÞm¬žR-ùs@Zãщ©¿dyr™ÖË\9Xl¤±BþH jŽ®ul`¥KÌ5ö§@@xƒÞÆF›áZô€nÌryÂTészÆ“/ˆßÓÈ"1…P튵ÂÍ˶£õ90¾"=̇†7‚ÔáâwÃîg°Æ¬ õO¤H\ãhé1u©É{øy×VÌJ§j¡:DÔœ0 ž=ã>.Yù×[†- £²&C´2,’¨Ž[M6ïng¤¹<^]ÛøÔSü0©Amõ§Åšhk&n nü^V½Úi/B»d}œE¯$VÎ.½ÈQX÷<¹dQ— íóÌ[:’ObRj®È•ÞÏa¹xaxºÈO½jö…;DbË&QxÔ‘¤æ—fDQ¶M.©4Êf`*hû`ämIYf–L 91VÒ]xËùxNæ½ÆV ¯¡m«ÙÀ©å–³Pl·ÔU@wèMÅ VWWµ fkžcÕ¹¬5ôòʺ½þüþÝ';|0U¨ú!C’' %>¹l’¶ ’ß?ú³ÿÂ/ñYeGë̺ШkJ™òT¾Ì‹!º‹v\‡ßA—ù¹ƒ¶8ôÌ+’{ˆð„cbwm*þIcyÕ÷•ÑŸÏÒÃÌ]“‰pÇ0ðç²rZ}ZÎ1ÚR™I&J“4HpÄpîÀF Zo¿iXˆ4ÂØb0ÔXòa祿‘21'¦KÝV¨ñ1XÌ^~Q*ãÏ 9ñéI*SsëÆI³í½s&ÔüI®eeùT v[u>ò¤“µ ôÔ• FBÕÈ2:×Õ£åx{Sú„cUdfÅG{Ÿ^/ß Á]ðõþcâ<¸‚ó‰õý¼Q>Á}¢¦*¨¿Ãÿ_' ËÔ!‡×/6;Ö,5…ª«1b#Ôðm ón€Iä`Xœå0+³8ÿTÃ;Ï¢¥Õ?¾n!…‡©à/ÆG[+Pæ°ïpîî<ë¼°Ÿ¦’KTŽ¢…½ÂæZ)ÇGÂ\Q‹¥%(Sº›¨x4RÑæ‚¼°Ï¬g¦ ƒï1ÄÄ%îµ2K¢¼húB,=}Š|eŒkÖý$ª\¢(¢\sÔZ8¢™ ÇÜ z7Ö`ÖrÁÎJ—|μqNé>Ü?Õx„oS–½AúAIÅ ï½G˜tôÉb]´y#0æÝ¾·©àxàQ×î¥ù8`…IÔ ¯¹»bId¡”Zo§J­qº}/îƒÕ=0ýí€5èJÈ>ßïâ[á½^F?ɉð,}np3÷ß3my1­>h¹DWVÚ®¾i‡øÆïbt6y ½=„eãË*#)%5˜’±îè£ÀЇŒd}NU.gk`Åh‹«¸k-,'ý¶Â5–»ÔW²®”6‹Õƒ(Ë–P¹¨æ¯,jð×8‘/Q 5÷šJñnœ_³1F‡ó¤T$‘’£Uq\(ɤIXB 6Ž]yWO²O2›æO ?„LLò(Z° >É^ónoþnçÏhß¾NZ9€¢5þï`KÏ@øu_«Eý€ÛÛ‹¯ò ¶äÑ;Œ_ ~ƒèÇ3W%ôáó×àœçÉ;ügzØ¢–K‹iÏ_¶7v“;¤«ÞÒ‘3\zÖ÷ÿ >Jèd%tɼ˜Úû¦¼o‚Jà{žG¹I0&KL¸Ó{ë÷Èu Aµ£˜EË ›'iL²M‘6ÚÜðÑ & ãÏymø­MÝžá/Z2÷o…I–šÕŽN1½ ëš%ÓãÞÆK¼›nÂÓ…ri°ªé5T*aEôð,‰\XD3É%ù.YVèË4ÿt°³³÷6Í?Õ¬•\÷6z !C”/É Н¡hŒRb~“Ü‹ë j‡ôQs´ ËÅ3Fõ7€Þ¼Œnɉéçü ‡´-Ú!'ˆTD¤¼ÊËY«-j$áô€‹b^&2†¹꟢0ç%´ŸÇë·BrjIDÕƒ ȳß*žù RÙvé0¤cœH3eÐ0M  4ƒ4|Å ø‰»ÐÒHçç?©3SïdÒ¹ˆä(4õÒ'³2ŸðCÄ¡!Þìd À¨ÛœÒBCDEºšO‘‘ᤆ½ÃðÐp,WD !}“~Tg¼OIŒaÑ,×’*+.EcÔA—€‚ð~?ž—ÿ`¾¤|n¾(z޵•‚¹k#D3¡æ”Ù¼ í¯Ç°jõæzÏ«—þ¿=¿<Nc:4o÷ô´8™ä§áø‹NÔ(¯½ËEk1_Ì+¿¢áFŸë9émB¦3ÎŽM!<„ÏwˆŒPÐçãǦnLÌ/£êÉy gE\­#.ü¿õ2xY‡{ügÿFüN'„U7/úÒGÕ÷ɬ%A_ÄWˆA%¬Нç›_zà«&ëãØ€e-•ƒ‚¼…´2ü;S‹X§´`©àˆL–n€D$ÛÕ?Èó7߯ñDf!ÕT.v¹=7Âa}š°Ïä¥3¥Ôbâ¢ÿ•ÝË:ÙÏÙÏ>Éþ˜}дq.ížc°iS fßO”ãÂÓôƒ-yEö‹2¢´]¥â|–ôÕ ÿ¤áãj1œp ¿¶IÞ¼—³{÷F÷îeã{½«ëø?}€X¨œ¿ô.þ>³8,|>fÅyõ>ì¡ðýx§¶ PãÛh6–²5r)NÎPz×f“ÝøzM«B&æU¦ŠD)‡Ð‹¹ à3mçðæ¦4@܆œbKáˆ~Càa0:+:šYÚ^+¬4° ëIîÍ‚§e–a9Ñ$;Ò\‰‹%°(µu]‰\ê0QÊœÃ÷„ÏùjɹfÞÿvô?ûÙÑ'8)¶NH²Ž®>¬¯­ýÂÊ9¶¬“ȱP¹XÍ6õÏÈ&D=±ê£±#âf?ÄqæLk'y6y05.'ÞwðJÜ¥bsýOÃ#bP–ƒ\tôt"ú¦eºr73]‰Ñ7³‘Lͬ†f-œFø“%N£DD©«ÇRŽ™ô —iž®¦¬ˆli0¥‰IÈÛ´h1ÍÒ-Y¸Ò»$&~ž_•ç‹s¯|NO‰¯&È ¯ŠIƒ¿X!\‘ËBÓ>{üø‘\vëŸáuøû£ skYÔ19¤æBÕÀ¸¾žcmew E˜¥ˆù³‚éz‚½”kEj¼ŒF¸ãªC¡XRÁ¢ÐñŽZ‹ª n©:á´(ÜÏ‘µÅ·Ú¥OÑtû4Û8ŽÊ%1ˆÀnCWú”£,Å?,÷6n~›L@:5$o!xØ,UiÈ)0$fÞ>ìgªÑ)›ON«™ß˜çŒ¿eGŒ øî àxÿÕ`{Gs‘è 4¤ÌÄÖ$iì+zR>æ"¬Ûçàs¤Ú³'6­[¢Î/_ šåbo~D“âÏ+ Á |ÂÎ3ú¯ Hjª˜go¤>tžÚG©I’¾aI,·1‚/è&j„‰À ¸QìZ%AÚÞ´bk½‘´9 è´ m3l M,Õ4± I-¥Ã´¼jV(ŠË/pX€†Ðó°è3wø䤮œ¹WQN(°œê¹Ö[ò#-:íûè-j5û “_@Ì |´N‡i¥:Yaö–¤U-êÐîÞñÁá`ÿðxïÍáöëí¿Ê9ç±÷/³ôMxùæeEdá|àÄŸ;Þ{õÊëÊ@!ƒHQÂèªï@Kܽo[ܲdÇ`C4ŒåÜŽU®‰¬ÂÖç%:Œ>Q.ÇγΦò:ªÌᆱéw’WŸ“ÿËÍþ&ÿÿ[W^'+Ù+,:¹ŸÜÓS¥™¤oU¡gGܶÑ÷¹ÜÀ;öù{±É < ª“&{Gœ\ÐvÍÊ4RÂV¬Ž¥Äwdá†5œ½F&F >ÙFXƒ°®i5Ú…˜û„­bSSí0ú…,±ºŠ ýÔ¥‹NpÄ¢a ÂÉb€kÔÃîê<àäLÝrœ!¾Jñÿ”d‰Äe3Ù¯uîl„œkµß1ŽŒ‹¸a ˜à†Mû©kÉh-) ¬ÀYéÉLä&W0Á$`ÿ§¬Q/9oÔã‘'™èØ´cé]胷|F£E0¸%‘A·ûüÉàã ýÈÇÍÞËxÒ%:xÑéûÿ¼ì ìè 6_vžêÄ%·½èدf0Œn;OTÔO¼YìªHb›ø!4HÑ ŸÝ M»Ó™ÿk½Ì$)Å–_•Ä7’š?œ§£_g}½„v§}Ü¢$CMÀ$_]Éé{9d§$ÒàË}3^Tßs²x÷>[oö\`<è±G¾ƒY-”–Æ@é¡L:#},A.>ì:Ü¢øy³l¼äÿ>GÙûÀð¶úLéÄÄAz)QWìAJ§ñªqèP&XÃ4\È›ž^)yæ:DÀ ûΗ 2–r°ðÏ[Äk3éܨ‘Ä .f‚ÎoÏyM¹|8¬»˜2þƒ=‰ÆeÖºÏÿÐÃieº0çã@z¢˜æjQhq˜,É7Ú X³yüº´öZ÷ù‡_ ó®ûþ€PrÝ2zžÄ …H‹Þ2©±d¨‘ {Zäh·›n±ôP¬à2òÚîXåûlàåóÈæùÒ¼Þ#‡\¿àjé„ T¸ýÄÃebI"×±Cź!Z²®4Iìõ5ʕ쵈IZ?”}b”øD­7¾{ÿõ`ÿ[º¶lüø ›Œá"qb}9¿§GÎð$úF1â5 r4Âû»)£ÌQ?æg˜ýˆÃ«2¤a‚ƯÂ0RêCv±˜]`º7Àiì€XEæT‚UÌçÀtS-N‰ ü,o¢|?p˜ÀAÕ:þ&Ö7 ã÷ùtqƒ„H a/PÆuï|»ý¦Ç²Îîô0¦´Ýã­>¾_Z5êhæÅÅ’€Œ-|Ri¹aóŸ±Þm-ÏѨ‘Hû~pIùؼž¯XËøñùÒÄi Lf@m„œ‡¿"í"6ð3ØyPl¼…€•žý[¨úLI…yÃ9Òïc/MB}\Ÿ#©’-Û}ÉØ*š ‚ð˜…6T”@ $CVPÇ.eŠá¸qÌB/Ãó˜D¬ÙR„°±še•F<÷Q¦Š:e‚)kØORúØEP$Ç’©‡”EÚ¸œÞ²,™¶U™Ôdg3ž5Æ®CZO0êàïß{±˜Ûhbšß¡U‰ô_ ÿ™¶ùSLChœ™DX]á €,Âp>ü÷ó ÷—òソ>„ú;á9ºó‡¿ÀƒkO诿}âG"Ë~ø«üõ¯ü×Y5^DÂBëC“+)•JÉu–’ÜB ´ï8­ÄÓÑ·Q§µ!ØÀ#c\6Rô@¦™Iÿqz¢êüçdU‡¸W¢Áè\†R>!NH? RˆÑæ~`&`’H4²Ž ù«ï ÏXkG,wÆja™,ôË\À–ÚDL|ÓfåéYº¡ˆÇ$åQ˸® ¾1õlÌ©¸šm1ÃceuáØÀ]v²˜\AŽhR‰u>©‰:Ùw±e‡ÌETù–½¿2*wóIZŠkÃ_Ç»U‘¶ìôªa¹NöÙ@«É…'8ª§ÎL#q³ûŠpBèü=  Ý¶{x¯®ò|Ø’ pnŒr$çÙÖJÒdTS &•w‚_{M6'N9ˆ·ï½/äPG&„mŠïAðúlµsC@8^XZîÔà~±—Ëaœ;2Ä™ 0B=ÌŠó‚®Xú}yÆ‚% ½¥¥ {Š_Z{¡‹#§å õ1Tp, Oÿ>Ù>Á4„°Ì™Â⚆>‰¢´¢B+‘sseZôL]Miï9Aq„Åήéà$ÆÔaœÂsÿ;  ± Ï0ò/çj‚€ÓE>ËýÎ($üK·i ×PLˬkÓç q†O¦ëÜâ/ÒõR’Ö¦#Pé?÷ê›#¹˜0C4 ÕÉ z½‚v9U 1ÙetT¥†j«®íχ£‡‘Ò}uýÿ7¶é_zÑ-{ô:ƨ’×þJÑåµ ¡J­r^ „/€ˆ¾¬âéµ*k2OóNŸ ®¢œ[lÍjí°¥€R‹ñ³Ëè·áuLè_Ì%©„ŽÎ‹@Z½eÓR20y§OP¼>j"™¶• …#ĸ¨. #K㪑–‡5Ú-ÅC’ý#n>ÃQ05£-ÑoößîŠSÿýkb´øÕ„°Ê|+Jñ eso8Á³;Ÿà®œ78«#›Qò°gçS.Î/pZ:|Xkf ÖÛÔFØ® ѽHl’aÁ®²môl'ãÚ—¥Y2ÓGNº+–Ž- ʼnðš”|šø µC¦9ö‘v `4«êZ_ñ7‡|¤…-áÊlŽºü'¨ªD\ØY³Äp­ü­P†÷ó‚8"ìw¤öÅÒ„…3ºr½ '4¨ˆÚ"ìE}•ó@¹L†³Ä›`bѪ¿])Сü?A'U@}×® Üpþ«@—nc׳yHyZÁýJ…Jÿ…µÊ‰\å&3°Œ¶½Ù¶)eÂÞ4¥8®+.š—$Št!ÿ­¸¨ÁåYîÒQ® ®„–þ㳄á)AYNŠ•f*üXš% O¹/E›Œ+k®ù ñþXƆ©-D‰¡Ö8ÆG«««p.h6/ñ1FÄ”]sš¸–“HGŽê|™‚Î!*Eç×`Äs¢0Hò18ªF[›vYÍÕߢh¢c—@^Gè§ }4ÚF•t,ךùh0¢²@Òf~vH4>&Ö’Ç&ñIG4ÐÝNC«­¬-B’¹²¦ÅeË™¨ž#iæ6Jï”ìYˉHw5y:ÝN/ݼýÔsÌ™Øw C“ WkÚÍñ‰ªB:@Ý«ä™H…G¬7|OÁ$zÿY.‰zÕˆ,@æµÆhyŒ aMMÊp·„~£Fó³®—D%`é)±¡Â™âPêBå‚ÇfB(+ÃÏ.×…=ßVCp9#¸¤foÙx®±Ðð˜Œkõx©GX—šCâÒ%ÑÈ£‚:=BÎj­#Å1åFÑr &c¢Gªñ±í»ó°ˆ^¨1"Ü4GºÛ)°Moe«1geíÚÈ%òâÈuŒ\GðFÂNjٶ DìùEÎ9žÁÇÛˆú5ÙLM”3Q ð?ôz¼Ò`Cïcwµ'Æ–ØVheÁ×é¿LßúäW¾qÈo ‡ÃÔÈ~“AÜhf•N47¢”œ-Wƒ#é2lXßÙhøe—áãd5qX-~K ÌTó ñº€–!*“LJu+åÞÖSqf6Ë?@5RñHhÙg_&ÈC]LµP“”u€Qy‘° j;V7(¾–N\ÀSbØ[øÂdx(-uQGa­LÊxé|xTzO3Æ#cÌË®cR4ÙmÍÖÕƒMˆDÙØÑ¾#Íö‡}ùÜÉÇñ0.Œ¨£Á‘âýQ…i.¾5˜²ÓÊS‘‡€=)Ú~ÀSÃb+ÃäysåY–P¨DÒ4•QDk…´»œ¢82¼n¶oÃvºÝ¼Å&ü¿c݆ Uƒ÷W©Ê)O~Ê>Z«HüjßÑtI⢙ú§&ñ9—zXfº¨ùØ-P"#iqx¦–O&iëÆµ(I–ÆWqK¢÷-¯0âÅ|´Š«Xðá²çOfù)å®ð¹hx¼@ü•íbÇ:f4ÜÖ}ÁýØV¿—FÎ h÷á×5€¼D¸o4¾=Í6ûA£UðLØW¸ÍOUo†Tê}QGçƒ8}¹êlyà ª¸·€ÐHŽØ†%2$ûÑð´T$#l4&°O›Ó_J¡#—2z,*û WPGt ’tÍF|U:q£ºŒŽË@5DWÚá‚%ñ—§s•ÎS«¶ÑÊö¢ÛW2%ä€(ƒŸ€Îú.àx{ï$m{]èøÇØùµÁ˜hMƒŶÈ“*xÒM•’ÕûÏ‘øå+(yì?9äÉ¥US#ßÎ0ï$@±ò·š½àþÂûÑ™Fi(}‡¥ªJÀM®5'¶¦,8SS›‡.îpƹ0:PlD£¸¼U;£O‘_„ʃƒ¡â›6«_Ðdp©¡sû¢˜å â ?Å÷ß"¸‘?RÌðG—NZWÔ̹®A ™7+ã-‘ŽYÅZêBu5,JµÛ´W—¶ï—© X†ÚQ¡ ÃÈÙ}…šˆ­Óvx&¨^¼ìE €H&˜ûFêÄúrk”³u¼£2Å¢_°w”²Ê–ƒv}Áµi ¾O¾ýÖWÁæ{ä®Äqô*ˆ@ûžJ R-›(ŸÊxÉNð\ãªemYú£Òb Î1NœÃˆcnX$àôòç6)IA­f¢&Ü‘áVS"5E;kFh—‡qõaAÃLâÑB@„;S‹…`²w$-ë¸à™p#}ù!¼§TXÊí'=·—ÛHøœ•‘$pW'…–ÛZm-LåÔ%Y²ì<ìæSÕ{ÞòßìpŽ›l0†¢ `¾;aü˜bi\¯ÎdšE5YŒ<ŒüpÔ¥ÈÔwœŸ&B¸3î2ÁÙkæ@ÒÙ MXåÐ;vJÓjç/âbã,Ë S¬ä-à(¦ýªcÒ/aš1Í!ˆÑt OŽ(ê&$6JWتr¶§+#$3¼µ%WÁÈG¸­DËp­5þ¬Àžô4äQ §uΘFÉÙézñäMl$w¶§`¼mZ[zèÈ’V:‹W¹Có6¶DÒNJkª½.3ŽB¼]¢‰2㿤•Qí ”VTÏܵ&Œ@kNrpÒQôDÃÌ’ö›Á„i щ‡bú“GÎAåPמý¢ö¤#_' B€®‡O_ëV'i™¼Ì±ÊC*èÄ‹,S3ç"8Pµ¡Á™F” ¬‰‡!ã)²MŽiêµæjv”û;üù{tâÿ ÅÀg´'ŽæLy=§ áOºYu1ýůGB_©éÑȱ怎Dap†œ…ÂA#N x/À¤ü¯4yˆ“DqK<ºM@Pñ¢®H;á+õÍ_ùž8œhú?úÙ¾_ýì§¾û¹ŸãµçDÞJG¿Aͪ÷Õ»‚k!Âx®€S†ØB%IƒfÂþ¢å ˆQÂr¼ö44 g˜ N9œ r°ÇÏ;Ó¿õ•ϲîYq•­­cqÿ¯õAï©ö!û™&蘶ƒ³ñùÊ£u‡O¯¿Ð§_±˜;=Ë ýéÜ  ãÅÛ_½B@Ì—üëãWq ª-†>P'ñoê³ò+ÌÍÑbAWd2&’8Žòî’Ÿik 6··áÛo§%Þh6 |Da–«5·_ˆK NÇí™x¼ŽF_k·¯6­É>—ˆ¥_¯/¶vÀ…F͇ÕKü/öŒ‘)ÏaLëá‘îú†- âç¯zQ£ŽAª…˜±þ‰Ú—8K>¤F¨ó*‹Ecîo6m|á-^ÌS. ? ·½4ŸûÍ '½Nî#è¨ÌìÐÇ Ã½Wa«4~vù°[zª±l+VÖtoö¶Xy±‰ç7=êûk˜#¯  Ù”5a¸åŽæ]r½h0ì4ø÷>¥w\–TÁ,LT±…+ « —Lí ž(K«æ×sUØÈFæÚó‡*5‡f툪@hS)ŒÞ¤q«lΨáß*CМU'âA\JÌo%³–ÓcxÆtž–ÌÉwà÷ŠÒw“=ôãÙÊ»ŸÔá˸™…Ÿ>ħÎlUÓ „3@ïð3kW_|¿®]}¹Lz\;[_ÇGœÄ§è º±´Ç‰E1þx俳rä¿ñHß ü7E4ì2˜v—”!|´‘h [[Ù`ç`/VV¦î#¿)Zª E—X‡\ЗP‘¶Æýü‡e }”4tðöð›½ý¤Zâ™_7Ù7ù? Ú˜ÁÙ¼P¸{9콆•Èæ:˜ŠÙ{¯\Ñí›ùùpVŽOýêØšžNü\®Ò…ö6}š´ië»íƒí½Ý¸U;\Z\ŒÁÒ~’­=òŸ¼˜#Ú+ÛXÛxÌ_®.®)oíO#ÿϧÙú—_~¾â¯j›í—’6QZv½\h’f¦^&`v½b^-Ö¦à/ÙE~Z@y¨ÿÛ¿þßýÁ­µBÿ •ê?èµÐ‡°&⽊ üQ¸J~ë7ÖüÏgŸ}Šÿõ?É­û«ÿmýñÚç?]ÿ|ýцÿûÆÚãÏý·µß³£Ë~€œðŸœUÕü¦ûn»žvîÿ’Ÿÿ€‰ÑUäcÿôc?³3ê,€öéPè‰a5¾Î†§P&bæÝ+üé`ŠŸÿ†âñ ãO÷é;üõ³Ïàjο?zôå—ðû{þ}Ãÿ¼xÑö¬Ç­8æ2”KþÊï Ô´$6ü=…7Ñsß¾ÞÉnÁmÊ[½jìâ‚mŽîeuI•"¨ÝI6(ŸQM¡ð2ó®õÝÖµDߎ҇î#C`ÎÊ{,˼oŸi¿€Éœ”á“GŽ!(­Ë°¼ÙÚµ·ÿz°»¹E%’§6ìSg›{¯ßlïl½ÌÞ ·öw³×[¯÷öÿ’½=|Ýþ†Gö ¼îp8Øü6ì¾Ì¾Ù¼¡³Áa¶ÿv7;Ü~Ýþ’OíK>õßßÛÜ:8€JZKŸylŸyluÆ­ŸÙ[?‹h¿Rp8“c=u ´§)í J$fE‹ƒ4ƶòÀÆ/dBO¼µw^!Ë),LÌP÷¦“œŒqðÀégtÿg â Úi}Z ¤H± ¯€sáñóe%¨Ó Ô·-£hIU7¡fx-Nð–C óºšWš²"ùšo1úî@[í»š3ùÐBãÜz-ÑÊŒnX|\p<|Xv.@öÐÇ[§ÁÛYw-î²@OM2•è‹d°%Ëd*@Kß?î¼åsS®é‚OalÈÚu ¯ù)Æ]f„X[‡Uð#ßRB õHã²PI£‘á§šÕI9Lɨ :Qü°ÑÿôÅX?‚„ap6ž ÿhþéyï¹¼±{XŒÎ¦T/¢O˜èzLp; Õòk\æ>¸Bcëcïdµ›ºß¦0L(ÛbýŒ°0ðÐWXU8Ý,53‡Iª3EB×ç¡ÌfÍbÎóC¦ ¨O…Û¤Ö?‡›WJŸ /%‚Nq6ð(;Û'Jʬ璘-Nê0ø¸ˆ,q˜ÏfÞt'¢)!@úæ\'[)L¤Ÿ­Þ‡õ¾×ËÖ~Á¿é2 ‚ ‹=^û¶|¡Œá´0x3*qʼnÆâ°uz?®zðŒpñ=Úü"Äf°iðTöBtx=: ü3n?.lJ›‘L5µÐÞ]LËP ü ­®Å…¶´ºVŸýïemhDs8†ÖÃNŒG>Ì傎@´yúÀ#ÐQ>]åþKý=i1WoÄu0k @Í!òEí§7¦=&DÜBC"à¤4‘¹\ÎP§„39¢øe8>x)•D‚éÛhÔ¤½)7~¼©¼ Ûvù¡¼]E8 fÊÕÆêÜÄ~☷)áv–`=²F׋¡¼À/ÞRë<ë„ßép’Ð ´ší+Ð=iW¥ ç¿‘ ~2C¨œͦÎëbr¢w.Ù>$¨hpôÃ&ÆßB«ð„ žÚn¯*„…ÞÈ=Ü€cMú¦ÈâŸs ³DÒ1Ùe÷;½ŸsÛZaðBj€B%9Z;IulLNEgQ–äÒ-|Qß’'Æ-¦3-êòCQQR¢4 Æ ÒM:ÑÄÂËœ”ù%Á¼d%™j80¼ùÕCvÐXC®[ø7a¬fÂXò±Á9ŸäQ3ð;p,;YH0hʺ)QÙôۡЄ­äws¢x‚ŹPg9?åh®)'cï BФq²ƒº~YÍÞQac’yᤠùfÒƒI¬‰þD‚ ]М§q0g˱:–bƒÐbxáÒ!׳Ջ¯AÏ«Y°Ap—ðy‰‹pZÀpçìNié,ÞÅ Û‚#¡K ã„Ç=˯Ãâb~ÖÃÒ¯M AßRÚ4Ð[¼Ù¼ù+NçZ¡ÅòVè›}©¾Èˆs¬6»dà–øÈÒ_‹w2hs›æ'FLj¸è.¬ç, ‰âR“kάÑ]‹ÔNÊð¤æi0ŸX-~Ì‹²ZüDb3wLÙJy½+ቧÈìücñ±üX}\ Ý%{Ã'”ÞLN…š@¬óÙb(Y8ÝVj»pñ¤(ÙO¼'xì XOú³šýÙÿ{V\ûµ_c€dý¦%u˜ ;Á͸U¦Ü©£‚Cœ¯R¤Í탱tEcrhŠ8óå/« MÍ¥¨Þ™QžPt Ü'_]€ÌØ!ôü袟½aìÒ‚4¢ô[oP…´|r) 4Ef›t$/'ð:)ÊF@%ú½Ši~%ÔÄ@®–¿ºWK#®ñdd/s°Ç$¥ê?ˆx> _[MA-Œ(ìÀ:ah^\‹ˆK‘'è¿ìhèÇdìÿŸÉ¢Ž.ÃG„Œk‚VdÁþø$Ÿ\œåO~²Þb™ÛTpÁÑYƒ€ôË|6&¿§bN‚«NÎ$c“’CÛâ7x]\äíæSöC)c-¾{ßßÖ—Ìeî#7¹uœYE Ýæh#€ß`1ÔŠ.‚Œ:È!'ƒƒèrEµl;ÑŸRcMÇ'´q¨‰±/»µ–¸–A YÁÿŽ< àô õ³°GÃf´`/ÂÄo®ÞWr2N÷±5V§TLÃüÍ) hn2>Ñ˳ïå:5Â,4œ¾—{‡ƒ-šŒIMÄhœ4 É œº郠¥0IL_Z³ftiåû4ؘaïã–ÇÂ=ÕÅ ‚ƒ5;7ÓµÃìLh.¸5ùP¼+¿6Ÿµ’ÀÊF²ÓÚ5¾ëPwæx°»ùÍÞ>Oª(Q0T_Wr3æÅFXzœY · xýXW*Qw¼ã€íJDhèÆp_á•'Ý9*¸æºæIéž`QbìQœ L3šÏ÷ÖQéÒ-Á`h4u ab¨ snX*ÃódÄÂ’¸Cøfõ>å‹GSðk¶'´E¦Tcîîd] zM)¦Ö\Kìd9½~jsZ>uü x”.8‡ºHh­‘t‘Ï'ðêÔ:Ü‚ŸÚ§(]5Hrö„D ¿5P‹¦¡ #Íi’–3ÏšƒFºÙ8, ß:)aý¿.H9 ™óò5b…VX²‡xœôÒ#C#2š§ óÌkhcʵ|‚xJŸ³_ÌEB„(Öü2W‹Í¾äçär¤ˆ(bæs|Í P쨃 ¢“OÚæl£%·±fy¾"ÿ×9ÅÙ´ÔC]M’ÙÅÆâ¤^5Åê…ß–¼å¾:™£ûB–â·Ž¢•¾ó—¤8 Ó$hnæ'2|C?þü§O>[{úÓGüO÷ùü0Ï{½J”2Wl<¥ëÂp³}‰ç „A!XPšÂ˜uÖÁ×Á»:s#£)ž‘à„Tuþ ƒgNâ8ÓÚð°à­kpšýðzÇ” ánQ2@ëÏEa) ]áô ˆ³ ?ê„¥Ûß¡’_„Ýn íFŠAûi6'E(0àB8¨ŽÒÆú6ó/b©×³¡z‹ VÔbB“úó&âN±êŒVöŠ0E ŽYô8u¢ˆG,T¹6ç2ÜpÕP¸w^¨ßJ<<œNâÓêkæ-Ö²Î<0)Táøœ“›Yãù9 !ÎPX¤!àÙ„¥¸ÇÆh#§±ŽÓÒñ½Óë³ðïó×G'“ü´†Ë=þ&.túŸø£ÅU1êÒëïôi²›_cñ?>E•öoÁßèÊ…^ùñ§¾´µ¸±­üÚÐ\àÕéÊ£³Äõm;[û5T{âŸ.NèáÐzúë1üaY›ÞWå8´ œ­³Ö³Ó}KŽ`"1L䓸VA9³œÔóë 0¯lâT”Ç Ôq)•¤šòAÑË.gàþ˜Q@SJ‡SêÖ6â, Uo ´“¿Âbã†^ˆãQ¾Í0ßIÅJHÑùX™e¤rLt‰vÜöë7{û‡ƒÝÃlwïp ‹–“7]7ð•êÐø[½Rç'dù»ú AùÆÿ¸yƒµ.b´u %+_²ç•3N 6' q~YÛȵ¾ñõ‹Õì-ŸlaT$Û½µí¼çÕü?Í>§Rmp.›5D_pþ ØÑ3ój~}Á@oŒl†ÄI™f|Ÿ„Ñðß,'…d‹ÁHøï UÏbZþ}QHi% aÇ@‚rÛìSw×p€ÃúÈG³*ãlè3i ¡¸ÁÜð›ú¯ˆpfËÔBvãkXš}‘†J?W7xx„1jsÛÏ I£PÁ¡ß³¬ß—?JHÇD ?!zC˜NT¨òÈ5@{ݦ¦i|µ‚FÊ(¨ÍŒÓù1ÃVéûìÿȦŒ9á”ëʱ›+1î€Ýã1Wµ\™$ˆêÇí\B¼Ò¥œcU#Ö_Ê÷´§ºP§ÊkM¸9Pýpˆ žšñضæ O¥1ùÞ«½à_åé ˆ “½¸}èòy¹³“‚žy´øó€¨õƒ Ú1­ÿe\ìÃñWµ¶^Š»N6”cG‚À ‹Ù•%HÎ$  ¢¼Ä^Æ”S`ªÃƆ! Å[÷øx\Œ&`¾tÇ/¡€öQç¾K^¯,üp0 $Nט׌ÒJ:”×VV”Ó6ÙÐ×D)d?¢|¾ÕGŸ%#+»RÚ|šmä–7%ÈB r_kÆг|vºÐ4EÝŠÁV¤†ùlA(c8„iù.=b¥Ú±¦Ùé©&ÙYÎ9 ¦iBã æ{H‹™!<‘Ò|¦¾Oó…Íç1òV­á™ÆÍ¤í2ÀQ#ëÏZj‡zŠ¡™¦n­U€Í •_a¬Ñ\S"p]q)+åPâ3– ‚Õgóõ>7klÓ/m“±!çHë9“ƒnF¶"°Á{1Âeú(ˆK€W£²l# ¥OåŠ3¨6„–@KÇ«œ”9SRÒ²*tÙ  `;XBy4ïHõhc¹B^Ù$¯)M(€¹/!æ@o,X;¤ï¼úȪ$h¸² M'ç@€‡ãjt?«ØúÈ Í|Ý5Iþ±x<Ò.e$ªÏHïGùûæ,¦EÜÙßúú¸ó”ƒãÅ/8.‚5R2Vå pB¥ÈÝ–Ñ%úðqÐŽCɶy‹¦ƒU«nUiƒµê™hdà*øë-ù Þ0á¡È3š",!ëЋ ¼UÒ`¼éÆÆ5F«áû€QÐ =XõLÆÞ…Ý…pkRc,µ%ægr“ºõÃáÖîË­—ö(ÁJä‰X±ÃQJ4¢ýË2Ç(®äæJ›©P!Æ)YÈ)S¥ïrIñ´zBØd.ð{Î;·ÊM¶vxXˆ|áp×bõ˜|Ü$/Œ‚˜'çÙ%´œ:Ø`|„’Ñú/jIª˜á–"$zœÙ¯–Ø·ñº“"§,Ô÷enÄ爡Á™(6/^Âo_ï¾]jü$쿤ÒñìÞ $ø:Ø)¥íz#Äçp[1Ë-²R±ºâü# Ÿ¶¥‹j·.&ïɆp”ÝDø>8‘œ2ÉT1s‚‰ÃÕ‚q2g ¹`½!/ÐjÖ MΤÉ[èJºˆ„ÅWhÕñ’ †ƒ-ªz²˜È‰mê<(RŸ A Ð Þ]ÇãŠxè%šØË1 KDamâšz¦ÇpîO*Àæ7“é7h\†ƒj]ôc4ž= »b‡Xkí/(övR^õ­Í‘jgSÒnIóZ⪴îŽÐöe&VX¼óJNGƒU&’¤©‹ŽKoG$‰2Ü™g›Š«-fœ9O¹©CÿËìÚaÁÊ.Šº¢@™ùÆKLšªû‘Ç*”ôrIv‡f9Q"Ž)mEȸž#Wî>¦rŠÐ ¹¼Î±EúAs—I†›ÀaÆœx±`löÄk1~wqO–5qÁ–Ýòy ž€V³…ñii•gF '_!Mu5gSá¢S]"âÉŽÑIˆü¡ˆÇ!¬L*ÂÕMÀ%²Ð|â'±3â7—Cѯ`@Y0žc·¥t—g¿„\ñ#$¶Ÿ0ƒoÉ€5¡ì§“_ö ×Âq ‘7±–j²÷W£æoo¶š­‡¿îlüg¶?j%š-yývçpãÿš¡œSò¢—‹àÛ®HË>/s c)kƒÆ4`za§™~d]‡ÕÃp™^Òñ½ƒ7[›Í~ïl{q9øÏ]@”¨IùGÈ=É?È …-JåQS@‘@d(Â8-IXÐ*­ChQÖYý¨}†ÁÀkº8ûrå틾J0ò*Âoo_¥;ßÒÜ ÙM;¿ ó¤Ï‰´Ž)¹p©€¨‰H)œ•—n!y‰ÌÊŒ0§3$Oľ»0G"Ѱ༪ Ü%¦f°÷ )ÀwÆù\}¬>» ¯OÍØõ²±@™QþåîÞñàíážoßîoéá+élÂFâ|k .JA]úu¢ë‹œ …T§Ô¼Á:ž˜Þ¨Ê$ƒðC¡(*~|‹éø‚†·dâ‘yr:ëQãºâ}¡¶€ …»z¡üWërõ^*ê‘Ê^áiL˜ìHÃ`¯žhïí§'í UJ(Ä–Å%×ÑL m®Zü˜†ö²QX\ì÷¤Ë9³Qì{‚ÆQˆ(¤Gµ1¨µãÅ j9ÚÅ•7éj#bâ FæÅM†Î¿8¤ eíÍÂK¢XŸ³ÿ 8")ï bñÁnÚxµ¼Ý|Ó”&qø?On2òöç'4“¥]ŒÊÅÔìË>º(û6‹àE>²—JBHõpNôïWJ··»_ïom½üKË`ñ•¡ª¢Ÿü•ÊŠ—õ-í?|õ/›ìycÓr]Ä îDIÇ Ê·N|Ûé[¾òE¦~ºdŒ|_ï2Ç&ŭá­Y¨ÂÖyI…R«f–Ôç”Á,®š‡ ­ÁQ«/\P.Pu2«pÀ%‚¤ušÜÔ7’T/NrqTÁ/¿î«IA£áÿdG/N3 ú£ú¯+ø~ðtàa%÷VZ‡È(th[i¦!üñ×4XZÉ aë¡™RݵÞCÌêFÛSªç9¢QR†ŸóŸÂ#½Äê¹Fm‰ìFŠýJ‹v‹þ0]¡ s¦\u©Yl4PsÊ ×ŽJ_…V hbÛ’ïr‚zÕËpÀ”Ï«ãb1œ”£'| êyâçÕLƒ—q jÄg3ÊeÞ+Bì;2^iׯ6¡3Æx"dwlW¢´@u׋oæù…7à+uã öËë,UY—-Á÷Âîn­$.”Í>ÂäJ"ÚäŸ1"ÁæQIL7ŒŽf·¸¨ü¤?^ðÃuJøä6y ¥ ý\û_ñ¹9§±@ý#Ô›€9UßøùÆÎÎ`ÿØëž{»;IOi9†ÞFãTRCÖú¯~Æ&ÁqRd`{åI£pyêÂ5œðÉÙÎ<ðY_Ç]¦!¾ÿ†9àa¹áþÖaŒï¿}Ø[}5¥-ºË{ó’ÊE’9x¹,/ŠÒ"ÞÈzm%`½Ùú©â¨×¥¯FÅÅ\ª™ !«0ýLV§lB ˜!ׇX1ë=×®$`e.ÊÌ!úF·9ÌŸ9=d°·AõîfÍmèêhm=ÑŠ§†&ëgBXBœª_±øÓñáî`€ŠºMe*•-9¯^h][9+Æè#YÔÂÛAD¸œOÐ$û”0ïÕËŽO¥§³–•Ñߨ.l’F&¥Äxf/ˆäÊŽh¨­j¦Õ¶a^r¦Míøè;Ä:Œ(ŠuÙNÊaî¢ØÃ)èH€9ƒö4‹!»¡záPwVô hØÆ! 0: aFxN̉rÃzW†H«ûIâc;|±×â,§¿·™q#ƒAºðɵîÀ)±Ä§ì•·×o[l^¹ò;|±á{ä7ßn»)àÇÉ®·¾.>Ä$`xÂ5<ä’ÉÔìÿ’ÑÞúýG[ÖKäB]æ½K <&BÈçñúÍ8õˆþ¸öÓêìü¸®ÔYŠLÓÍG²ô‘¢2{A`¼‘k8‡SŸªÄ•¶b2L˜0ªŸØÊP‚¬÷}&ZŠ6Ÿgh“Z!”²™e–a¨ŽzQÀßïé÷ÄÄE4ÁVi@…œœÔE0AÄre/ôlr| *2 ¥$v$¡]c÷ÌÌæâÉ!ŸÉjÖeºA­[6yr[ ä®ñnwÛ\Kï”(›´sFÉR-rÊðžéY“Z¼›°PïfßêÉëïGSFý^”nomme¼½ÝúÚÚ£Õ¬K’ ®±Ûâ Ín÷†ºåÞP#ò`Öƒ-­›E݆tA?×cÎNE‚(I7´Ü+R§ó3Y+„¯=«.â „ì,Ñâ÷#%$©I¤£Îvßú³ý'‹9‘›z½n² "R$ûÃB»ß ö¿&wDÜfÖK©hiÔ¦ñt¡w =éÄb£¼ãÅØæ„[9ü5ÁÜíǽ ëd]VcÙ¦Eí‹B÷≒qL}@v«›&±¬"o„ø÷éÞ¸¥|#N@—ÙÃS9åÅDï©RÎù€¯q]ýš¡3økq<1>£šYæ+ø` ùÌ.ø+™\Lý( ¦ˆªö¹ýˆk% ]7‡S}2$.!vÔ@cöEH ˜›Ÿâw‘˜f._`v÷è(kuø-…šAek­@øR¦i%_E$Vìž”Iâ1[Y·D À­ñeòÂò7øç˰0¼¢ òi"OãR˜Œ /¡™SʢƪÅKõfÙ$¿ÆÆ”xÀ$]R1,B1ø>œwS“ýLÍ@¼¼@M¦ú?ápÄ#†öØSÅæÿjKš‹R‚üìÑÎ#AŒ¦“¨C)×QŽ3[|$±Â>O¬°fºilE’“ cãð¶µ=Iñ&"Œ‡!%0‘[bÂZJùXÔc Ò1~y*”ò™sl5€,î›Sµ\~¸k ”´oíÛ ¶ Ñl¤U |n­/ÿÏ£¬1©ãwç¬ÙøÜ+äæÓ—%ÿâç6þ—£sÿÌÍü/kŸ?~ü¨ÁÿòéÚ§ÿæùü,ç©™©ï¿”†ño˜»1À€è¦æ ^¿ÙÙÊÞìï}½?xí‚Th”Zª;z…ökµKDâçz†°<:½ÄÍ@þ>åþ«Ì!Ç¥4–4}ðæÕ)šT_ÏF&€CuwÂÀ»q vÕpAC>À€4gËSmˆï“­•_¿Ó5ÀŸ–0ìIÉN™#u4ƒ-^¶m¦¸™38 ¶"ÉúU¯&¢96™¶é`CŠç4”)AòΟt×à UJâŸ@-Ï¡•6@¿¸(€“7€/.NQ"?iÁï–Œ!eäµêÁÛ'Nƒ‰hc)œÀô¶ŸWmêV§‰hü—=&^Göëì@U í0/qð6j+§ÆO+ªÒÊÙ˜ÖO„ˆ¶­¶8ï#âë¨~ú³N³¹ÖÓ yLhè¶¡ö¦Æ¦^: 2ŸT§åˆ·\²¸Jü £wVpºŠÒÀU«Q ,}1¿V—ÿ&fô‡ŠÈhBá+çÑ:".øû$ÞkàeSŒ/Z–0P9û Â&Â;œæ;nÜœ:á§ã‘/9æ+®êI_ ÅW£B1—+f4×DUÀË<-ƒ\59.PÂA\Vîý·‡¯z>9W¸r´]” p9Â>ö™aÞtŒŠj4ZxÑ¢u[l?õOpSCN³àÔ8 A@dái¢uJ"X¬ƒUŸ‰Î·:ØI|¯½8á ?_*‰(2ž›íÁõWBHt4ÊVªLHf–J¦¼ ßÒÑbR8xŒ8[¬`ªÒñ83$9šéJ®:»k“z)àðo†Ðò ¥( a¬Á…ñpQÏ‚Q:!O¨”ƺã@e:Pîµ²>÷Pæ6½sƒŸðæpîJI.A æ]ÞÆÐ(ÓÁ•€P–Às.níêÃÐÒ{^#ü8®Nïe÷È™ %Jæ":½ð¹—<àålòŒÿ—}fÔòL‰Ï´ß¿98¼'Žè¥Ð²…c”æjVœAÐë}æö—¨pK¢>ßnõò€òS¬À"ø).K.{ž*—Tšãõ1™`¦}œÉ‚µàPÊõ™¬ŠŽZb«ÒJ‹T Žá¸A†ÑÌK˜r:¥jd,¥A§‡-ÒÁ560X6X³”Ÿ_Leb\UõZ&S±w$(°^A#çœn?DúRŽ|,ý«þ€<¨&àŒì…•?¯ÖÕêú“°Ÿø™ö z’)“ÐpËÚxë=¼à6ñŠúšP-kidŠëãÚ  ®†¨yí"t×Uߤ=Iæ.ýKµpFBjÓWöc‰!îômÏ0¡P!ÊFUVõê–o—#—–û—ú³œø¬ÜR‡ÕÙ«b8[ÀØm¬m<¾ÙaµþÙÿ?V·úŠYéÍõü3. ›ý??ú<õÿ¬¯¯oüÛÿó/ø¹Áÿ#3ÿ_íÒvüÛ ô;ò¾CHçîËlk…hŠÞìo±ÅÖK!Ð#¼çÝØ‚ýÿ¾Ýß>üK¶¹·»¹ô©”3˜>|Ó'SÊàö¦ßô†”<ø†Ý”'ø·ðëþêQŽXxËéüц²ÆêFf;o1v$ìM„û@ØŠ!ê„(V^˜L5:®NŽÃœ&¼ð·}Á´¯€ÐHßB_âŠÊÇ\Ýï>å_nàèmíRÉLØû{tD»€ä¾òñq[w-z°ý×­,¹[â¢ý¢Ë†V7ô£­ÃükFÍëbÇIï»7Ì`ãÕ¦>¦psæSËíj69׸j-$¼[A®%Æ[qýmJ( âºçX”Xw²0Îä ‡r–ư>ç*ƒTK²@MSK, eÐÆeZýž€üã•rº‚¯ˆjÞ1;UßP!™¼+òê‚ìÍž*'ŸÏŸ·¹D™á€ƒƒ+t­Œ‹ @7N™‚æ *ØUS¶IH àÍPÞÓó-a*ú 9§-BFŽ^WÏ‘ÿûx~Æ®^ªö[§@ß²2ŸN1ÁQÈ|ð1§©Z´)i“¸N´Ý:èLaòdö¤g(æX´—ZbP»¯øìSó *ÓŒu#!1ÔÛ²zs˜Ò˜ùÙä4ª #[gºh×1*”¹i‚‚åÀaœ¤èÏv2ÿœ¿ÏÁˆ[ÝÝ:Ì¢O0w˜ öfƒ*ª˜Ÿ#þ 'm¼8¿0i —g×R!(v˜Œ“ØÓ÷¥?ë±– Ìš{=b/déWß7˜,M±pF2 <çÿ=`tÃë­ˆž«Jº™„roÊ^1Y™¸êä±ÌŠ 4\)›Y‡WÔ£ræmðÅ «7•¦<°Cy~¾ÀJµËZ\œÎò國)y«’¤«“†*¸×$yh« GUs] w’±Ëð¼gˆëìJƬ$ˆ\` ÚðÞ'`»å´†lÔO¤€Ÿh  ªlRà0Í·£Trå\UÓ×;KiÞ,0]¹•‡•@Ø:,ì9øÁIID,òñ‹ÁË—ƒÃei‡/F%䕦c†¼ Í7¼|½½‰o8/kBcûçKšØZê²ÆLTékv÷‚Н¡1c)êùèŠOžy½ýÃÖËÃÁ‹­ƒ,VÌ’Ê6+é§ýLj&<ܺî7Röh6¦úïf˼‹û½uH¦3¯£”\ †Ý«é@ƒ@%Ò"›³¯š1õœ’ ‡­T^Ý?ÍÌÛ¨|À¨@q3&R?k“„k±2èXÆc+lWP}XS(8ü k!ŒêÂþp  €[.+c"A‰Y(éŠÔäçÔt*ë ÔßXyÖðøˆèÁÉAGHÅV‡åŒw£=€z:m'^ñ¬ѽ!@6/ÎãCa GŒ1ªãSW4󉃎UŽˆ¾˜wÌBïŸú?¨åŽ+þ©‹Üx'¥½$Wðn¬Ç ¬„¹º~Üø ®Ç[û)ûJ¡ó<ö¾ TÝÚß;öêÌëíÝÁáÖË~¶ÖÏþ¤]S#û¸Æ{ÍO®·|’PF¿ç7CNÃW˹Æú4Z5GÞT°ø¼ð Kô%oÅ*}O]p›'Ýh‘m%ƒëiÀ*m«;rZèÈÀœÕìñ²ºcë˜õÛ2žA{;‹hÌQÞµ5BԱ쬕ÑfëäTLÆjúõ¢¤Œ5V“Øxpb<ˆ9ÃF‹hq&£¶©£y³¦»Ú¼à‘pmæ…š4‘Ù·Ìîp©Ýi»Ãg&O*Àv˜ü*y(¼ad"óÍp¢¥°ˆ“:æ¤Q>†õò6…åwZåx¨/Y¯MM€u>÷-U¯.Ph¤˜" Ù·¸‚WJÜgÖHrùp©j>xOâEN[‡X.¤Ò7>×nôÁÕtEÜnñ¹_cñ±îfW×Ý ½efžØ-Oî½ÜJ Ä÷ìar³Wºù’ƒ­ýíÁŽWœ¹Ì5‘OÁ ÌðmJÊM Å_mZ›d’š¥-è•°ƒZ–x=ûôb0hæ„ø Çdp™ÒÁŠè¼âµ ¤˜íÕ¨WÄXª'Q…Ü4.­ Ðc$IÑ›`ùý–u3(Szs¯È!>ÅP‡ø ¦â³ Yk Gd¤ -‡¯h+t¹Ä{©žFü˜‚Ý1î>ÊfÍ”&ŒÈsSž'ØÔ[¸¤jt¡Ü£~ñoåµ—s 5?¤Ø“ïÏõ<¬žöA«¤ÂÍÄeÄ™Ú  ßÐr™ÏòÎ$¨ÿ¤)§Ìç-IÊë_üÿóinÅb9¬ÿÌüßÏ?ýt½ÿ\ûôñ¿óÿ?7à?©Ú1ø“ñoäçï‡ü¤îío}ývg°ŸmýðfëÄjvð—ÝÃÁÙÁÛׯû¹äó¾Ý;ÜÞýúN@ÏûƒÍ­—ÙöáÖë»;·6oü1ýö­ˆN½=;üË›­ögRhç×[»X“hsp¸õ5¨ûoö÷Þlínod¯öö³£ <ÉÞ´¾ísû¶Ïe„¡TÏöo~çö_øÑÛÞ´¾°¥KÞñ¥}Ç—g›ûÛo3åsý~ûð›[^a¨Bˆ8äÔ2}±ýrûxsgpp úËš³¯Äu;Uø²%“µ­:ÿÛ3ÿÅL«}Þñ-Ñzô¿ùÅ;Ø=Ü~µ½la­G Òÿöl°»é•¢ìäÁ6&ØÃ÷µ¢kóÑêô¿y-æÍÞþ¡o6qC½ÙÛÞ=̶—î£õh±úßž vÀM;8T,rúD´ ýoϨÐÑÒ/D‹Íÿölp¸÷Ú› _ïï½}³¤cÑâò¿AMÄ×[»‡ír#ZFþ·g{oQæÜÐñh½øßž)!ÿÞîwþSËú¿‹)¿`¾ÿfp˜íÓ˜/Y Ññ¿=ÛÙÛûvðÍÖà%N8üöbËoœ—·MúF´püoÏv÷vWxLñ¥~\ïðšhíøßž¼}qpÓ˜yѸžoÇñø¯ËH?¨J ÿÍÒÿ}QŽÞ­I½8?ÇègÂ@}%OjÈÝä?#`>ÔwVÒÐ)±Q”sâÆµµ‰x M\ùä?Iˆ¹ß‰v ˆÖhv&%…}ÂGWŠy!~ƒ+)“O.μý}^Ì m†<®à¹ÿ¹ººz„Î\dL€‚“ /† !¯å™f$ýò¬çÝ:§5°=Ê;ác“Ëüº¶d ü¢>U&.OÄÓj …#€@ª?ž#^]ÃöS K/<¶ðõ„º¼»–?ðs&­XÂmÅ6 K*ò„Âm(Åß°žÑÇ€È;ÂVS•<Ì4TÛÃh‘÷bЧh¸‡è5Sö÷û/œÓàwÿyz”©B-QöaðJ*A~ØøœÙGï>@[éó¸û·>ô>óöÔ?`wB ¡K™AhÿùFT3Ì0)üªø%*Ã)D¤:ƒÛÂ8àçgëï T'¥eŸá­Rê|ä3qýU–es¤9$£ñ£Å?ù¿l?Œ`ºmi.!,…ñ0‚úgÅ4,ÒýÁ±×õŽ_¼ý—ª©S8Ͷ6_PR(7£Ú%³à4<µ¹ÛÖ¹#^ ÝKJ!Q<èÄœK¥þ «R?Ф/8xš-¦f¼ÜË/è ¼¹°Äˆ l 4¢‡G¹  ÜŸ(ç}v‘/öÅÖŽÁwÏŠ«líó<7RÉÕy?«&+W¾•bÄʹÁãï_JßPséýë/ðý'zòFüD6~¯OõºM¡«¼:Ó«£|6+Á7AȾë%Þ5€Ã|ÈW¾Ä+kc©šzñŸj4Ǩ³ŸÜ:¾Ã­þŒ1EEMááꃿKüæ‡WWáæÝoœÁÝÉͲ&¨°$‚ᾬ+Îá`[`ç®ÎÎÚ[ @ÐÈ3¼ï}í¦ûVWål1̓ví'ÿúXñ}²q‘/UPüQl׳“ܹlëÅæK¯êãǺÈõ;{ûÅkĸœÌ 6}ÏÒÛíâ‹­‘O¢ˆi  @™û® žšÜW BwaYf®ãÞä bD뵊—¬ÛÑ¿Àèwz} 3k°˜Äj]ÉbÅGo#,lÿÎÛ\^œñ$.ŸšÄÅ&§å&.q¢jGW2{v?ô¥R:DŽü›óq1*Ï£Vž–sÉÑËÇ}‡ó?Í¢Á·jäÓê€í/£zFÚáLÚIž< ¥ )©’ˆÄ‚&չꬺò]A$ó¥×6Y7m]¯­Ç€»oi›óC/HÖ½À^,!MÓ?w¼’vmb¨kiï¢Óš¤‡â*¨mù¦âƒ@“lH¡z’×g¶GÎZc³¤Ž'Æp‡ÝhE’"Ëoй>¡>âa¯î<ëìú!Ù5îLUD:Ë“D~ƒ&'ç‘ÉnᣆC€‰g1cešP¸?‘ÉîŽÁ¾—iSé_Õ½MÜzº/¹¾hOÓòr ®æXƒ¡»ñÃNVW V¶ßÔ§–¶‚‰¡&.î½îHœrȵ.Æx>ŒCó²hyÃÅ—æ¢ÉâŒ/Äû7:3ÔZ‘fðÍ>r—÷ìÞá=<ÚpûŇÿ(Ÿ]]àý—ÆS–6›î‘Î×ðì›Ûž­E°äñ}ÓRQhDZÀõÚ\_Ú݃;twéÃïÍØ7ºid¿»Ã§nË¥yK粚;ñõïíuO-÷ü`îQåøŠÓKOgùÅYéÝÈ÷œ©²²‰èÀNÌ@G1Iè`° ÚšNÞÅŒ´ÁízÅè*~è0Ç’è ½Œ„¬Iئ8(1µ²&˜{Ò·Ê âPêK«qm}·x¦Íovßo2SÆÑPî×UTé¸ê8=н‡øUwžO}·#[Ö`lغ+–«‘sNÚÑ%Wy@E!QèëH´ø‘áÇ!ç°æµ@Ïf0Lþ¦œÁ‰–ÄTí¨X$â[ŽêÐ&¶0©qƨ¥ÒIª‡À0ïn}ã‹•Ç%¢¸¬0òOú]9âz©<~ÞÌîL*ÀwJ_:ÙlY±Qþ³à/Êqy¼ 屿Ê'¿Øz ü#²¡¿#£Ú_yE/ûåŽÅUd³yè‡9úFð§‘þi“¬døc0|_!aü-»o§PëtŠXÉÍJÿþfV¾‡1H÷ÂqqàXuê/AñÙa—ís ;¦9x'x…–½×Èuº3ég; šÒhÓΟÂ'ÈÖÃÛFpi¾â7öŒBîýà¹^~]ÑYd.†.á0™+ÁZ?èDúÖE#/$âúë¯C×_ç³wð—Ðñ¿0ÑkÉW‚gb oöZ˜ Pakû¤¿4Žl—ÒFý?‚Bõ’5£©^3c…m5—Ò¡à+’ _y^oªí¢%5%¤õE|‹i ØÉÕÐõMð8¦—ÍêD\Fr¹ÔËÛ^Û,›7¤}J.‡u»y…öª¿ô¿æÎ‡¸_Lñ¬]gµ^|§u©…‹fæAðsCÚX¾â/ýÕ´H:r?Îðg3›¤Á™kaÎüQ3‰o0›e¸ÈZË+pw›RˆŸ>îKQNÅö°¤³+Þ·âËu¶îuåwíK'ý…ú#&M±ÛxO¨ý(ïA[ã†ï%CD=m®½,[ ùI?‹†)š¡:§«²ªÀ1qé/\™áh„–4‰v*ü•4¥‘ÊÆg¾ží.8gÅÁ‡ñ8r0Pø¿Uybd¡0™ÿNáC„&ÊÓU•¡—š"Íbº¼=<ødý‹àËMÞWÔL“ê`Ëô ¢BY¸Èì׸ët ‘>0JH½€… *ôƒÉN¿úÓŸ~üù·Ù-m€mtõñãuRs¶bº{û°eý«¢‹”rÏi]¯tàM++ÑMá„·d»{‡xÛÿþßÑmÞ=/Àõ=ð|øf ˜"ÔîoÊÃîs”ˆ½,ùAëbéxás^:<ËË_²?:´;þÞ¢ñ4Ʀ‘wì^e+ÙuÏ?÷ða Èœ¢IIü§³jq=ã%ò£ŸôK=Gœ0*´Züž$sô3ûñ nú'?ùÏþøŸða¶­ v¼Sø´ZÌqÑã{ùá£1<õè§ÌŒ‘@WÈy<¾Ë‹þp4õí÷mÙû„Þ×|Qé^×öñDR'l-ÞKµÆå`èõwz®ýë~võà:}gË>hÜsÛžXþÀ²ýñóòGnØ+Yö‡«ÖçðAâîDÍ£‹ßQ1ÌRîÆõÞç•V{ µzŒ¸2ºíß…ÙO´×5˜HÎlçM¼bñÍä¥E)¶™ƒÐÑf]—.“ºÖ/Øq²çÈ?dvûà‹nÉég?#€\”®ð™i4ÉïNnvtQ!!óì&õæ{Ou¡Úê‡Ø‰ïgK[¼Ä±žâ2“Ì”¦{næ{ –ýzßK¢CTöùƒæE³pà=õÏŸ7o˜äÿ€gï§/>Ç|p}÷ýôÝt=zýýôõtÁ¼ [oùƒ­×£/%@?¿RÈ;`É1 \à5ÈUA!øæSg ƒ5AÅI`ïñœüW7&è–kÀ‚_^† #Kƒë%@u>¢pÄ7,[Æiì©‘mÛf·F+ˆDê¼:¿wÛäݧ‹2ÍKo½q;¤!“áÛÖÂOVmóFTd8ëÂØ€n r£wã7ÒèG3I8|wóŒ,= ÇHX®ÉóÂÄØqDÓ0¤r1I?gçÙá3«¦Syä*«“îyioRdÓÑ8äÀÀ:Ü|#ç¦ä ý‘ú†G¾oäò†GÞ´>½`7»¤–¿á°õ ô49þn}G ¡ýñÒŸÓÑ­.³ñ‚ÁÛ,ÅHdàíçÑíªŽàµitÍkÛ0é"wðŽYt‡öEQ°FÌÛ<Å3Ü0ø ¾ Ž^ÀÌ`”ÄCg’­o£Ûä0_LIÝκ ,ÓWÑtF~$†V—Sem’˒޽ªøR8[QáâWj6f …·á+V"¡²˜"Û¾FíhwkjðÏQƒéÞò|:«¯tCHuQ\|È •lq!ùæ]ú§ÅkQ{{|ZÙzÎÅɉ×Þ¬3çbðö-†WSÿôý+ø”ü5מ׽UÀ*ZüÆÃûv*(Ö+è«+êbµ¿!Uó=&4ˆ¤ázW0X•xDwYîÎË+²H¾Oo„ }¿¤>úݱrÕ3Î/‹¢dG1úI¨ApEh½¤ ·ú±Ó×Ú±ùâç,3lº~^~.§=L½‹±™H¥lG!O=6ož}H~+tš´ÌE”6”æ: m;ø2ŸN3͵ô]ñ,–ì‚ý,àE!´oÄ?¯—iÎìUÙkµ¼ÃËÎM ‘œ%®Ló´TÒï@7ùàæà`kgëààx ¸ 6ý^û­eи…`b`ákv÷·^¿9ü‹‘á5rñ†çއ‡ƒ}8SšÏÉÅÖço÷ŽBÂ7±üŠ8(„¡Ê«¹üÖøyÏË=üÊ1ùzðžÕû~sŽÎ¨îSx<¹S^ðçíÃX¾“¼Aþ?[^NîÇ>{M¦§'.ö¥ÛŠtáãú”Ÿè¿nÑǽ)òí6àèÀÜÝ‹GŸ&1¾¥e$½2œÆ>P|™b šb#ÜÂRÀ­œ2N׿fóMÛkB¨­»$ïôzQ1©*ÂÌnêga0 0,ùP%Í .s†(*©:ƒËŸ2™”Y" ¥4‰80L蛥ŸäöZßQùq`­&®óUn 3™x•²«a]aÉ,Î#Åîš^eù]r*x¦ ã<Ú¾&ÅÂÙ ˜1Íëä?i>@×Áég¡ÜFDŒ™êâ)à {'b©‹»Ëyãa$=åÐk¶S‰47òws?¶¿ã¤iDס¸Œ=œ ˜˜­×7÷íékl¥<‹ vÿbž$êWnH÷°ÂžÜh`­Ð–¤)/5Þî˜ÛáUþ/6¡1†àƒ½Å¢Jƒ¦-DHÿ™Sxû ¾8 +㸹ï7þ+„êÁ_ôŽ·»Û›{/·z· ÞC‘YîÈîÔfé~•8~ÂIê‹Iþ¤ý–^p†¡kXéþó±þYÞУðnùæô†oªs-þ¦üyé7Ñ·´´³Ò×áÝú:,ü)ÔÒYú;¿Ã~xi¥ÃË?uØ|8êqòa^<[à—šW+¯íO ·yJ”ã¹yy}°XHκ–œ–ж<%!ó¶`ó‹á M ŒL ¾^åH»»*Ït° _SÖÔ JâÊù4l;ÿœ¡T¶Á˜&¦ªÍ«šÒK…¿`ñšE9™».˜àç 5ÈÍ÷°T¸—›à¡TǃI‰%¤Œ˜©Eáô‡Ô!«Ïr*¿8æ¡i(§(õ||à ykyBÀÖj8Äð û]™ó,æv…½cµå}£WÁÖ"@úÜlä`Š»”-ýi›/†Z¾ÙcYÓ¼ÔK§ïÆ–€èi{Dz¶ ÌIH…K|¹÷«ÔJäRÔ¢8BÔ[»Ûb®ñôÿœRÚ„7´ÓL·s]¨~†ËÞuQ¯ðÂìÝpíã´ ·Ñ}Ó†Ù¢L_FÏîÙs†ø“5:psB¥,cqNaRËHîƒàÀ±nÒ’ÖèÛ2T öÈ\Û½ï»ûâÉîàõV¢ãÝû¯ûßöPÔ£^ ¥vý,CbÃu_G “rÐã©ÐÐ|²êŸ>øvûM©¦(C±¥ÎO~ Kñãù ùmw+*I¥…]äD„ý’:@äå¤ôÀ9%3_Wx¶Ý uÓ;Œ./À4¿?þiɃ`4FPùãÿZÚMÞôLŸ¬ ³áÁËp‚D~šüÅ< GÖŸÐ7ðY&·ƒ'üýíSFí‰ÛË•²ÀÞ¨‹É{æÆ+®.r`+°¢'NdP5©¸äºÐ Æ… –)#)DÌVf3Êc“ÿûÈëWIé­èo¬ûÉßõb 4à?,ki#ú¿¾\÷£fFíêušíæèØko®×½ñé¿ëuÿÞ?·Õÿ'Ü?Wýû–úßÖ>{ôÙZ£þ÷:\ÿÝzyÃÏ¿ë/©ÿâÿÚêߨ„×þþýjüewïÍÁö’J®Iqo©køÅÊ‹íÃ>”BðÿE°ô£ üçÎö‹ýÁþö’°iýïíÝ7o³­Ýͽ—Ë*þ¦ÀÁ}‡àl¤P2ðÝj€¿Ü"„Ù²Ú¸iýoû¡ö/¤5¾_û^AWE½S o*ÞôH£d÷ÛÞÚ<¤¸á¹fnù˜4tIçFMnùâ-Ï5jrS­ò1|·ˆ_½ÝÝ\^ªºQ•ûåÖ«ÁÛÃlïí!¬—Wû{¯îëtÛgc»ZêvcN<9xØ¡WÞ±v÷U…›…»½üf{¿_¼CïƒÁwØ^¿²¡ù{û zýf{Ç[þ7–RnÖ÷¾±Lq³À÷ eŠ›…½C™b+Êšº9ž?rÔOÙä¼9¤§½.¿üôèÙ& hŸg`NÁÒ‹Yu:ËÏ5ÐEGEKMc­Ãeãˆ\ pSª¢˜•pÂh¢Lóe5üÔú`êFakŽð5ZaÙ64.}—`væ ÆÎêK…´ß£ºò«æ×iÈ$ŸP*£cÜP~;M\koÍo(vÌùȼ L²_<϶ÐÝMŪÁÀ$CÁZÅÙeº¸N‰oìùÅ|UkHÔ@äuÂGüï¨u}\«MØ€;L]pM©N¥Nø,ψÄ_‡ ¼XÄÙOý»1:È]¢«Ó9ާŽÇëUÃzNŽséW_©`CDDWPÎü¦Áâ3èø_âåø7iµ=Hç%Ä7’ `áârR„åðë§Üïlté8Ñq À]9!NŸáEé¾pƒ¥¾Úùbtæ Ä­š6…Qϸê_³˜NÊw”ÆÅæ/Ag˜$C»Ðã…JUw+ùýëô½ s_j1RVN—ìwAêCæ8m«™qDºàùᱦhºŒ¿€ê[}.È…‚\K«ã$@òæ—\wiBfm†D¹J`ɧEµ¨!²<­ç‘¤L݆”3 q?ã²Éyæ[ „;ïrêHÁÊâOë_J™ù\¶hBñÍ\ŒL»îÂIɦ,•Mð²8A¬ñ&ú¦´ –ÖÒ?“.[ÝwoÅNúzðCÐö‹dvPêQ·m…Ú©H0¶Á ÀïНý“¿Öhõë‰Ã!ˆ( b-ñc‰†Z9ÂÑŒü§ÁÇgÀqÁ;¨Ü3qôÑE °aépÚ_½89)¯²ã/úÙñúg¸"môÑÍÒéWn9œ|\ÑP ìm¢;TioN&Š ÊvÛ¦‚–Hj8}¹/~ëáµâz¡ƒ›¼œ®½ðo;9-æ5GDeı“ïËœìîá3x È¡è}a²è'å)±òJ¬¸Ž2ï{o“ñ- þϸœö gª+Ç1% ˆd:=¦•oÝ ûƒÂ]îù$,-&Ã4~&(-.ê¼<… Ñuµ€‡à¤¸ ‰ŸÑR"ZÂaoúA“à²,OlƒÒƒ wån;ÈÝ–âƒL‡¼IÓòjd|4>ýt>°..ùˆ„˜‘àDÉk“1 ¤/XHz Ž €†ä™I)‡ö°L  ¿=PÆJÆIt$N¸T8¹æ…º×I¨ó¢¾¢‚Dg_`G°±”¶ZÚŸ*Œ\$Œ€ì”]è¤q½%¸\²“|D,‰¨x‘æ"*{D2i:²HjÑ<Û’uÄm‘— vÄ]sm]3ãÎáG²qÅ–¸¡Ì$8Û= ô7Æô°ÝŸ$ÆaåSóœÌ¾ Ç™Š“§°ÀdEm<~œE°ŽÆ´¸øŒ ™H– ˆja‚kEŠPØE‰!!*®ÆRg1?Á] *Ö>6Â'¤ƒªÖyÖÂ$’÷¹ÕT©r3N0]†©¾Ók8kîŽê¨’¨¾ ?Ïòi=ÉùôåR«\tõÑFóÈ™óŠ9È€áC&Ô\ ¶•7ÃÈ|qŒk7 h\y¾€“ÎË<,Qc<ôà0Â$a-1;¢ï¦¼î\XwçX²{{.2;ÀeƒG‹ÅñlÓÐQAM¹ENUD;3²{ÿÕf¶±ñù—=Ùˆ9A;@ÉËšDU¼võù ý¬f˜èáu'4„Žn.—*šX+Ýì? ›ó‡¢­³vߢQAH_Ø-ÕÈ›0–.‹:ÞEpÝÖ_­çî· îb¨ ÎÊDòmÇß–¾’5”c|#ë¯þ¶ñ„‹ÖûîDBäšPä r (%é´ Ç.@ÜL%ò¸x¤ È£_†S K@m„))§¾½å˜.K‰Þž[»ú‚£,ŒW Zª~ÅŸÇØ×Xñžìó©O%d¬–?5ÎÛ39%·)hiðu™›:rK­| Ѷ=fd8oXx ‡¶Q?³´º¼£ˆÍKlŽ.ƒ›ñ0ä³¹§%›/‡usË`,`uš5 ­^ÿÌ6›üom·´Ðݱ…‚¡£jÿâV¸;w0kë࣠ÛÁx ü¶N+ÖÇn|Ë’¾5à~{ßòöíEA& –ÃA‘Èæ3.mào†pÖ±)èéaêP%D¾ÒЏ«Š)?äÝRU¬qÒ¶Á&¶mP‹?Ž[ËÌÐáð§4¨ùö‘>ÀK¹9ÇÅ•?p—uÜf1ÈŒ_øDñœt*iððîcy²˜L¼âFÔŠ§ä´õWúÞXAD|RBªÓÌn‚ÒÐT}IÚFc¹G7Ï›9&mþæªôªoþ>÷¯Eœn —…“L²8‚»Yõ?VsÇê&cÉg¬¿ºê­Ù"d¦’6îäW^ÙÄ—­ì¼fóAø‡5 ñ4F«¶1˜+} ±®ŸšäBœ÷0©¡Îf–mâŒh5²k •M‚‰,†#¿0¸ "|±þ”Øz±ùr{Ózô‰• GK™ +ºñizM1ÜÃênºWgê×læ¡Ï>»b~åðáédãñ¯øðîNÖý*¾8çÚÕÆãæG»•àõ9míjýqß.©¿•¡8;¦˜­”SÚøâš†yáè¸+˜n²æ}"DŒ%÷zãNîMNöæ½_„µüÅÒ[Ì}‡?B„×Úܽ&]é2yCü©¬¥ú´ut^g㪠½êtáuj/? Gg(Ç3Gl>ŠN:,ÈÌ)ÙÓyøhSñ?À‹ßÅU1Z 7|v^œW`vê‘“uü-_µƒžÝšjèPXÑ[ŒF£ùIÙøu{†Ù>ac­eØ};hÄÒ\ót¯·Üʉï>&œ-íƒvCŸÅ[Í"zóÁßÑÓ`‰cáCàG†ãÐ=öC;ªµRV~LßM¡šqÈ{Ax_uBߦºf¨mƧÉaû#9D /&ùµ ý#;½¾æ"çæµ¯$Ôˆ>­ÚyFÚ9ŒŸ|ž££Êß -cêLu ºœ‚~Ó'‘òó¼Ä˜‡akäq<+&Ödɳá¬, Ô“ïï욣µj%XÓ"ySy÷­ 2Yå­{ÔµíQŠ+Þf‡ýÃ^ËÛ“î<~´‰¾ÒÈù\?~‚Wm6Rb¸TJO f‹Oòú7´ZžJ[îLüïÑr§-§]Û”cá]TœððR8Iõ§°e9¯]í8ë4‡Âoûòäú×Fxî_=p3s†Com@ ÞŠ +¶ñÎkìãPi äIv9ƒÒ#/*¨=Ö™/ƒ .Ôh—Jœ¥þ€ì.þ—ø ³²sÝÛô dwò ì¼ ýìôÍ0Ù[-döb´q·ÝïÒmqƒ¸ÿŒn„n³{âN}fD"þ¯ëõ9*êØó­«b6«þÖí µAyÝ\á"ߢì¦bD)žçT —^àˆûL·‡ 0imEY±2[L§!Ó/ºÛéÆE; Ñ_°ÿ&@íÆ˜…ruT,—´/–ûn0š ²È–]ÉFeå1Ǩ’utê¶O>õwá—<ÕM®ÈV%­7CUóx=~€ Šz3Q_×PM¸¯þôs òu!¶ýœù+ì{΋a‰PЬK`%ÿÔ\¹ ¯ô’ưü5C[¿bhçªãk¤|ƒ®0³V„q~ál3ª-:ºùBµÔñðe ‰š&'0ÿm5ûKµ@×`Cãý9ÕR÷²‚¥¡H pýØ8¼ŽŒôYø‰M„›ì Â´èÄèÊ´FŠ ë¬Ìý”¯­u¸%¾Ÿð+u™Üµ† t[öxm­nLfî§Nbî¸LC»¹)n\ ²Ï…ž¥Ë˜9ëYÔSúsò½CZŽð¯×üeФ9„’|žMdnd#ðÒ7õñ(—1ä8‡rgÜÞÐp³ê°,y¥40ðMØe²ÿqe 5<ì]øXÐ X¼Ù6X_˜ñ ×ãðšÚž”€ù¯û7Ú,¡ÒJÄŽ&‹«õ=I|8M„M²‘".“6Üm­ùe…Ç´ò|vº`,X9G„[RÎèØ‚ÏòpD@U¦¡EºM¨»:+~À³ÍówÅTß49¼ß°¼¡ZŸL™´‘¶ó‰ˆ…ÐÆz>®àí†\%¡œÆ9~(Ì J«¶Öq¸4×8ˆþýƒØyº€„@‡eù Ø1N`˜Ö±÷Dkñê€cÿ‚¬ÏRøB¹Zä›ìû ›á^}_# ܲ-‘Zsþ*³‰]^qòO ‰1ǵ$ÜÅŸ8Ü„4o6ÆÑÅbè;FJ Rš &œ÷‚‘°¥ûêÿ ­ ùe-Ä$1†ìÀÔô¬[žªÑŠ÷ %´¡ ‰$5ù)œÌ,™%ûiÃb~ ¡x¬ Ŧ@Ðt±Ÿ¤xà“Ãâ´äì‚O¢jsT°vùúx“C¿¹­VØR‡Ô’a3°ê‹Ùs´ë3‚ܪŸÇÅg’¨D4Õ¯€’j*b Ž‚X5Lª>Kfƒƒ®§ TE'hg ‹†7,$ópaØ:›B©AâôÃ4EçAÁ 3ð‰Oä:¶ˆÓK÷~´¯ì–jƒïŸ_0×<¡Çûìãì̈©ƒäkøój.Í¢ó¥ !}kuGkmøÌRQ>.^( Î*~+ ;GÔou!Ò=4“>d†e«ÍG¢ôK¬AY'tS‹ ^Oç“k”ô‡&tå…—Ã2«+TöNõ>Þ‚ðÎprò‘r)˜ª T1(?ŽfG^u(æ£U¤beê0ÖÊ’qø\l}U™"¬Ñª d.-UKÞ†]¸– Ĥ§ó³ÆÆ–.ˆ±°N #ïí˜Â%kþô»Ë&zÑï#%ZÁÏ ÁT~(üÃÅœœ­¦¦–T²§…"ùB°7  áÒÏaYúÏ—ó(ºˆo¿6®3)›iô9Ò &`&úýR§×b‰jÊ;Ô Id5# Œ/m³­(ÄÈ…D»Ê ïr8=tZ‘u</Q©Ò"„m›‘JéÌHéœÄs-Û®…VÖÙŽ$zT„g´§Œ­ß‹AwÛœ½Ìçùì]_°88Œ~%™Ì‘‘·â1 Ò@ÌZ—éF7ÿ˜hΈ±NYjvpþTí"V>¶QNAZúíÐißÕ”Êä6ÞÜ1 µ—tkÑyF*%öÛþÍ©J÷?ÛK†O2;z/“hcÞC>ŠÕfºå«GÙßùnÌ2Îϲ6bÁLO…èõø„î‹2BÕR\²83óÉzʱ¬ß‰†ŽþŠC‚SH׿o–Úë›å/j…_ÕšjÖ³¤yøé%m¹Òæ; °}XYfRLjJË !x sý¶¥Ü3š #ìã‚Ü8 _ž•^ŠL™†Ú28+JŸTÿƒ‘`’@§î (…R-ji’ ÃQ+ µ?oÿæWì\ò¨ùiRHb%óD³¤\BÚ§Ô¯ÞÆge,ÎÐ7߸D_8ë]\:Q÷®NÆÜÜ—¢§Y!Ãåã‰}ÝXS²Sd Ô&¤#íŸ__Éûâ‚pKñ7iènL`„Ù#5¼¾é |“XˆŒÒÿ!Kö¢,Ü'Ëw‡‚Á­u¬ÐN-£BZ+µ€ãe,(3€É¨­åZræICÙ;ØþÜ‹°ß>t©M§Â ãŒ*ùÖšÓ4.ëúžñïÄuÊcÑ‹ÒXÀKa舗O@C¾–ä%ÍS=Uö~´p0H÷4uy~V&¤D¥"—#n´Ù¹:–Ñ5®Ö6ë\GÅ&—ÃcÅX­˜¦Ë÷,&Š:ÔYè¥ÍRB®±¬$üÓ2èö2<ÕêÛøÏSõk²Ëä~U—W¶N8ü~<­¼ÐC§œ® 9¦.Ù'™®mòš¡` j–Q-Újº¢£eNYxpD¡¦åg&Z?áÚH\$ 9)‡\׈•cëˆ=$ˆ|Œã`-ëHÑnÛhvßD­“]Û¦£Ê™Ýêðjú”5¾ÝÙ9=‹þ)Â‰Š‹ŠC^˜ÁËÆRuסL‚M‘»ZS ´Ê¨ªn©kÎì7¢•¡Œ…/Þ{xEq9 ÄêÆ?ÐÈképFô"Nír-AϘÊå™FK‘Þõ‰×j@’L+0ß‘HZ;`ªvú˜WhË“ÚxéúÖÚÄï¸e§”æN£]Æ:Ðr-ljB8HïPƒ¦µ® vÀti°.üæmî.G}@k»A6€œ Å丫ç0X´Ztâ­uä(­{€¬|äYálðWSr4³D¸–¯ñ fêA-•V ÚvÕk˜ºJX½¤‹À©ºä†ÛP±sA´oÿ—òb1ÉçZªcô}È©Að_h^À ¿Á°¨™×ƒ ‹¦í„…µÅr |æî_Ú5Þ·ÿªs q\'‡AŒg¸Ã‰àT­²æ_]]…¿"V×èyz ¹ÇÂIn#ø¨ V—}eó:0gƒL g*Þ‡ º"0¦ ¼T#As“2å¢öpÏ\Öñ!ñ8΄ܡ€ÃÉeô®ôJñØkÉ\šO(|Bxü•ú)Ô›ªÐdý‰ãݕ͎í…òˆ_«ä¨™ÍØ è\ÖêšùÔqÎtÜ$­(‰GrÈÜîü¡³Ä]›;naË Û×vAiƒg)"ÛЇ¼"·ñC *£qÕú>ϼÆ0Lø«ÃÇ;¦¬Ãás»p3l:@clëk×h>SÐûæq+h=¥¼ãiŒIÁo7Q4¨œgh¡b †?¦ŠïHQ¤N?0p£[v.‘Bš (@§=%Î$Jo0ø5õÕúFg5ûNYüÂvb¨ãÈG4Djv­¦<Žq$VØà!¬Kþ®pLX €t³úü¼”Ó76-äÑøV’:+Þ£k€E ˆx îRv¿ÐÌÊjTVU‡ HqsêMèH— ˜ºÀ*ÔÁxqÄFØ7à%4‹@]5#¹ ‹ðób*n¢Iévੇ¥¶µÓÃoŽ&9¸8¼.4BÏ‘Lìʳ“ Q–@ÊÒ”ˆ¦&žA0©“t¹kʾ¹‹ýº©—× >L‹‘Œ³F\Å-r§¥éD-öªÍSð0Ž–§}V*¿Íú+ç_=ŠN=t‹GÆK¬2ob  M~8œ×°\×5쀇§œ^‚ÎŒ¤cÎÃP'\jyäÁÈ™^"*ÓÜM’`SÆ/îN,ÅB°#­YoÆã×å¥^_Ÿ«I^9ù½ç^] ôÌàgÈ:Ù½ìe+ÙWÙqö${šõ³ÿžý)ûÙÿNg ™pciß«­&Þ2òÓp@]¡M˜ef‰Ëðâe¬ó‚j”ô¢fªÁ ·ä“ ¯©Qɲ>GÀ‘ˆà‘ö»à¢¢nñlÆwV3È7íí'12¤¹rô.¼ì²š½“Ùª>2È\§ŸœU5 GΫ|Åä„"f±|‘©+Œ1!IÕ3X¨¡Òc|.™¿~,ŒŽdòÌý NRWw“l‡1Vp\hŸbM딤øe(lÊh‰ô#'FÜWP}¦ `gúÀ㘬?i~û–%‘/Œðò Ú±èô‘lë`ºc‰ñ|Ì[óŠßÆ¡nÜߊ"ã?•ÑÑmOÃ"Æv%¾+V5Q{-¾i è%tëA¿ ‚Ì›’lî®ItìÛR”7Ù¯¢¦ûF½^>3r騎@<÷B2°ph› ²÷t)7_ƈìvàóî‰Þ„F„8ÈÌR¶Ç.d§ð2e©É£v—Шd¿/I ûõoÊ}å!A?÷ ã<ë¾ØÚégGWkŸ÷LÕ)ø •§ºþòx¹0d$Jýµ zô$\CiŠñxt„—§á²œ)p1Ç‹»Þ>8;óBëMÈ7Eªb¬#ÐYŽËS/­ðÑYxï(ŸÍJÈÌæ$px?–§>2¼P .|iËcÁOT" îâãñX©F€ÒT<1 =â¿r‹žðˆ½ü kÐ)f@Y0~*N-= F?#âhNõa<ÆqJ›’mÔ/¡M¸î›í±Å•ƒ ‘ˆ¡©ðñ«³3yƲ7"ÇF:?WxbãgâQüÂ>õû4W´€éû ±˜vüDÛ'èôÞ\Ñ$ Æ&Ð÷±J‚¤ù0£‰-¶G`66¶¢rv0¨ãæ-q8±L'Œml¶4¨Þ1AíãÍ\Ú®RqT0SåU †òêšt€!ºa‹ Å·æ!ŽCIèæ T“ëÌGŸVKY¿@ñ Ìq¹÷qoõÔ§‰ê6.¥Y>WúÕÊêžOIóiƒÿzKÔÅÚQ¦,#IZV.3ÿp×Á€èê¾ k£ÅÖâצ‹P»ŽÆ"¢_¼"ŒÐ4ôaLΚP®o|Ž…a Ý‚±M)ï84‡|z3:a¥Fó Ë€‡4>bl×.Œ-JæÐÄ/ ­¬C`0iQR:Ul?!|hÉ Ÿ„M ’ÎÒÃèf“UéµLûÖ?ã‚þé îj¬o®ø88¦€‹™5ÄVàhûÊYÿÌݲtnhzÌM5ýцm: ¿Ð~˜Âß§ù6îÞüÃ@m+è‹ Û¨k!‰Òt®–¥¦L ¦4ä0G —(Bòþ ¢ø‡_"Ë·µ¿¨£oDa›8^ÑšÐ/gŠ Ì¢»Ä!rô£W¼úðé/FxÞA1×ÿëHÞÿÕ¼Þ”†¶³Sjf-¡Xÿ}S̶™8¬{Èdæ vŽ®¿ŒT÷0A7¸!⸆ÌôÚ‚U hÃaÕ:T`î|å;;¬&}(" XˆZ’|H(޾ºæáy]ž—‰×9pc®™1}usŠ¿Ê‚[‹ß¶*ý —Wj<ÒÅåpÍGIê0'(Õf–è5pá,}ó³‹ ÄžJSá§©#'y ¬žF¶Œµ±»lè(xDºh—ž:ÅQEÈ4± <\3 ¬ÅÈ3oz?C'ŠË‘ÞÞ ¾ëü4©j ºØ6ULª€IÊÈ Ý­"ihœ`}M¾o’< +µ„½2wMX¤OlB4Ç¢–˜Ý¦ZYìôŒŠŽ«ûPs,Ä HØ4ß±”…®{̱²@\ÉCÌ—£ª¿ 8Ÿ¨Oú¤r‰ß6AkHÜ/{\`±çÛ0Fñ áA3¥áWŽu\Ø«9 £.–|ØT“h°œ›zž¹(Ï £|l»‡¦a œ1ζ\RZ1ãu%e;ü¹…½ »€TTISZ(Ý+YËIJÜóä¤'†‰àÒføÖ‡ûR0BZ°¼^ñµ9•8E#ÂW~g„À—!B ½âýOâªjð®rga%zɇWO8­3m³+šëgÚv-´ÎfàËuñ ǯ÷ö·¸š5Æ ¼hõt6æƒRãû_§/ö\“ „gl/ æý‘ þÚ'”óÄkÌÃûUU·H„‘a=z„½¬c@äÛñKð…ì1•—˜Tê/Îûþxëõ›Ã¿oî ¢g'Uõ.Ÿy½l|<¬ß¥Ïââ7ììí};Øß{»ûòøÅÁ·ÑKê…?œN½h=–ÓnÙKÞîïï}=8Ü:¦Jö¡1sÿýÅUêˆ;rè¿üöóȨœç'“âjù#›Ûû›o_¿ÚÙ²JjZ­ä ‘îÜúüi ^á?Ãäjâ ÿ¾È§sÆ×5ßÛßàÕ»{ó_óž%b”U̶²z¿õim·ânïX"Œy*üœ­ÃRÐ:n}<4AVÖòç…Ù¡µ\v´È>ºÖ^B;®">5V¼.ã•bj¿_å–âgîâ—24û% ŸaTœ2Û*ÙXЊx—»¨\$xŽ4eö¬Èß—Þì°•aCŽRØ™_dWj; ¨,™ëR? ÚH$5²¢‡õì«óéõh69ùÈaðŸèL\v´Ÿ‰CŠŸ‘HÐÿ–Šæf‡‡$ßÑý³)Ž!.} -È'ˆÖ &É‹_u|:©†lf~EJ&†ðWAã„ÒÏ-O2Œ¿šÁÃú¤þuéÃÌôc»^ÌåjÆ$?t“l~ õo™§L¼0^}SÖI­¡ p˜·üð¡õAÔ­ßQWÆ/-†Ñ ŒL+0¢SH¼OŠïàƒ¡9m¦ëË,®‡ÛYÖ\ ÑÓx™6Nš±ÄŸ?+Z¼\ø³˜þ}îõ„kñ4üŽ¿•s.0A@ ²F晴D4ÜôÝ-ߤû2e÷O9wã þ3<ÀHú#Tô˜Ü$Ik|ˆj!â­jÂ]óðëxáOWŸ¿^ž/Η¥ùáåËMÐï÷ q´°»DGÛòåöGí÷5$¯ å¹íûü) þÔaáÞ8}]ô>=ÃýñÖ¢‚(-Æ«›.ƒ8U{ÀýøUó4¦¾o äA¿ŽÙáI¢ Ú}»³#‘û¬ŒMô bPAk|Xl!¿¦§õ1DÍÉ^¸q¤ðn<¸}‚²Ïo{‚º¼¿õµ·åÞ¾,곬õ¯4ÊTÓÀù=zg^‚™¤í/`õÅõòG‰B%}}”0…ÄÈÒúü75D¿Ž Èòq$1úAÞ‡gMS0|ڌŚ˜«XµÄ&óãÚÇõé®N„¹Ì©öÝiŒÍæI?œþê+l¶êK°9¹Øjúj;å⢺¶nY#(g°4²vMùÞB#Õév¥â8à$ŒB«s^åôúLlÂtŽj‹he˜Ž•Y©·™|Ïq=ºkF¾©ð¦ü$B¦Nâð¬Ô²ë°6Õé;ó,Ľ…Ã*¥le´ ÙaÈ3ö< t~:£âc¦%ü½„Ýeóˆ°”ÎgV(˜E u¤ßA6bL|ÁiVå!Ó¿´°¿¸›‹÷-e‰‹Ÿ7ë/ÊÚn¬šfÅ%†~y“ œc‰P§:ÁçYkEö¢eµ.›£ßV½S=.ð%/¨Ü”´Úaá–Öïd莅cIv$Kä~@¯#í„;øÜjI±á¬³P}KP4@òÈi5Gâìw„Jח娫Œ«Ù‹kvÅcÓ×ïºYq* \Ä“À{D,¥ðv[®9òËj§ö)™×›Š9PMüGù  ˆö5m+ ˜£Ц⤤19f*R&ð:ÌÓz+´¶.Œi&xôLô®Pì…swWÀŒÇ4»Ú(H$‹5^Ë‹‡¹®P4“œ‘ØSŸ³‚‰Q=á«”L`ß:Jk´Uô°™0ê)Á¸º DÑ„'’¢_«Ù7lR±˜Àˆ6­K’Né‡Ýçe¯ûsþñçaïáyÞê¯o²×þtV-.¨GöU¶W¤T™§OBøÃ_ÜCdÐ$\Ôð¤½ë—ø •L¦ á¾T@^ˆ“2 Š!±H+‹ÄÙPØ¢fg0Cõ¦n¬µuƒÔ¿ZˆÄᆾ´ôà«ì^~Ïkò|èñ;yzÇ(¹ãÆŽiBm'ii‡\ÁÎ>¿/Uxšuª¸íDÙ8ʈk`vˆw=LãÅÈ®¹¬Àe€„rÛr/ŠôéFQùÜ:úqJåCe %êFy[LÉZCöõx5ë$ƒÝ« e‹ohîSgn³I3ø(€Ä»×Q?b0Ã:þ£:}N¿‰­Ë1Õ0»Ä0Ìç´eì’†ŠmpºL p•y³«LĘKua8tx,`à\(-†ÔwÊ‘mW® ÙX‰ü’u0©M ì¤‘,áð!nS@½2ŒÖ¿Á´^ÎŒ“fLT{\¢C‡Køéá¤ÇK¢c À•å¯aŽ1Ü}-¸ü,¶…/p ÃO•&ýá) 1¹Î!¢ ‰èö¡tq®:[q$…)‚ñØd.{ïG¸šmž:ŽmCj©,TžO‘,E¶)6Fú ªˆ^ ÏŠïÍY‘Ó›Že\Š å)jŽ­uCÞùˆÃʧpÌ…ªò.éª0"àP·uZ¨DAÍöB‰Ï €úJxàù‹}ac„’y˜@8—Vœ³cBQdE0 ]ªwÏ“Qßð8vEÍwéj XÕ¤°‡€•¤Ï‚§clËQÒi‚ÑÜ>‘:ÖCÒD6iÛØ0Íi P^„ÄâϽHè[9ã’|%UÄ Lýn‰øZ+ê¢Ö»a”–ÚÖwÓè•Í$Á<5SØÀ-i»îµ‘ÀZ’ÿ‡É HaËǢº“‚¹ÝÚß;>ÜÚ½½;8Üz)9”U€‘w«Ø/…®>d–aAµGoÆë€bQ9²(lݯQô—™šj_˜×¥¬̧ ËØ£8<ë çIÅ*7ŸÌpÔW ŠàU(U—®ÄGë(ƒ6I=L2YJ-„ÂiŒðG_3 šûE{Èa`I¥™-ÑtÈG Ìî^¸^€ofN0rb"]ÿaieT` —ƒu|~6+ÚSæÃìÑFöøË‡~D%{ƒY÷&(³FE™b ¶Ü ²ìßôÛn3ep2 ò¡œ®© êÅ«(nj‡?Üñ¶-Þ"‘ºdþ%ÙtQ‡üÓ@Šu˜£„¼•¼©#ˆÒÝ›µÌõ­(­n"9_p säA©¡¸mû~2Ký^-þí°…lì@© £šž$e0”#X­±Ÿoìdóp¥qÔêr!Á½'X&Cò²ëš&ue1GåU” ¯ƒ¬foYâògèϵ‹Ët›uZYOiPeBø˜q¢Ñ…€ú’±EÙíçÚ˜O+¨ÙžÀ(ä—³Uà(ïÖñþ úØùzçYç­eOv0dN,dE€»ýÍÖîKÂXÖlU Ë ÚÔ’µ—kRXñ7ÿ®%kgL¦P³€ ËœôM)ê)å²qv¥“/K´¨´GJ/“ºu°JÕÒÐÔLS}¥¬¡vX©µ@Ý ü¥cÔM9 êÚ{›ýßòˆ_ëëÊnÄ©âÎË»ˆ±6‡’ªZ˜Ÿª†Ô…Õl'Œ5ç© !\Æ\€s޲Ý-N¼P3~ž¦ý³Ç=¶'(,zÍ’‰¿,ã¤÷–¹fÐRvl/½‰òÊB¤hK›„2J§Æ,ËaU‘©Ð§±*ƒ Íàn6ŽpW%6pô C‚E¾qœ#ú†3F¡4hJtZO¡‰ÀʦRL iÜÿ¨@V½tV ÊP¸Âû˜´¦7}/ìPCbØÆ¨ôjZóa Ï|¥nÔñI+ÁcÅX¨Lh³ ²þlkÜwý}=£"£ h»ëË¢<=›GˆÃì‹ì“kçEà™/‘¡¦Õ·£"ÿæö ù7ªây3rÕT4†f²†ÜW,8m(ÚBšŒb=²V¢×uæ@.(eð3N†•öƒ)Ÿ<±¤µ‹³BäÐÙ"£RëÛsäTÇ{ÞM«K-ä‰TsI¸#7Å›Áþáö`çø›ÁþKSŸKþ|°÷ê ?WLZÁgoà–Kˆ$páž¼æLSÕÓÀ·L9ò¦¤Â4ëH´Byb#Îlºh §¨ŒkZª¡WÄQœ›·ª³F7Gž³¹’ÅœYw¢)ÊÉK),Fa’Q}º`Tvm¼ì’|TQ×`>_Eº2L¿Ö’ƒX`êLkl h”Ú õpð9èT  qa²Rƒ½¿@U4$cÒÐuB³¨;Ðß¾±äöº:™g-÷ºäþ3ð4î7Àå]aq+«Î̉.,ŽÍðø][ ˆk®gL¼èpbR·Z{ ×é“q]ÚÙÖ~É[>ã¯PA›nü´¹ppõc ‚~›•CŽQ±/$æ˜U³Ñl.úìˆÑEð"S Ï”UqþjtdÅr»YK#Tþͧ~R‹˜$âãÂÆ)\Èeé˜u\cˆ"ka°ð ­êc›››t³v¼0dž.U?wH™8Ar¢åÔ¢\à]yQ[jø¬Î§@߆ɯz›Z;½)ã”è0« ¹ñüBœº_FŒSÅXJËÛÎÛ>kfDà´@v9‘]K†“Þ7 èÍ0-ÃE!aÑ¢Òý[¬"‚Tê›ìŒ½ýìý{{ו&ŠÏßõ)ê û2H‘”­8v;y(вS¤IÅI7N(’eƒD1—óÙ{Ý×ÞU’’’9g~­™¸%µk_×^—w½«Ñ•ÏD3ʬóPª£µù¦’-1ŒöPËîáÔy†bBq,•°œ¬ÂÒù¤›]„¼+´³¦ÓDì’Ûd>=†<ƒY3¨}#EŸÇ G( VaP«)®™—˜~ÞQ^î)/âS†ö_ÌÏ^yü5ô­N™ÛâïJÂíò‡!ÌÉ„&—Z¬¾Q…Rôé!±VQ(uq…#v¬ Fš½A&Zƒ$™À0!Œ1Ž ³ºð æm‚>Û'?“1šE&üL8Ø«3Õp¥¶‡Å.²V#âÐqØXªe)£²Ä¤ OÐLZ”Íé†QßÔ¹bšb廇üƒæ¤Ï;b&,Õ¢Õ$,—c*³ 1Õ5ðô¤UKô䨸ôôîîðÛƒ‘øÿŽ‘r~ }'Г) ºù§2«ñƒŽ§òFç°õ‹‘® Màš”ý(!€ió4:¸\Ñ?Œž‰5äEÈó×4ƒÆ`n2JPÁëàÛ|k³ýG¢…„Ÿlþzs#“ãm뾞xä &[Íjš‹ßHìH"ãTO)ª.TjÚÏÀNaî±ó²°ÃH(°ØKxðŸ8<ŠÎUfÎm[¹Øó¥3=’a×ýs;+[¢ °I[ÍÙª×T•_ô1l¡j.d¿×ÑR9a¼¥îYF–á̆¼S%Ôb…ÀWbRHEE†ÒÖeÈV,C„þW<Þü¬¶« 6wŽdAãt Aä}(F5µîÇ)‡†ó'g®hÈÕs)¿~ؤ2²ç³¸F”*èåN–!3]Ú‰Õ9ûäÌý f÷Ì dÇQÛ8óxE·EhÁOöA'?£jA`k5pZHS™Žåûªèˆ;{îhDáêŸÈœµ¼œ£ÉC×$Ïšé…   4ÀšHðá¤ÑVÉ县JØ–M´Îv_ù~ÇM©šQ—×àßÕßÅ©YfvŽ0±Ìt Úl³“H‘IýlMC¾B£YP†]O-ŒV0¥{@F•µ²íàŒïþÌô:-Sð¢•Âøº…š~%l$ð+†á¦uæ%"ÑJ†‚m켑BƨmÝY+W >zòêyÔëÇ4mxˆÏ yº1ëJN£Ø’{ŠX´9ãZð—QdLZåšnS g_xá ’îÚP¸e†Þ~¿µÑ43V, ñv[:)ïŒ†ÎøY^d3ºE¬rT¡Wl-R\LŽ"Cq˜[«í°e4ÍÂÉò)¼:þ¼Éߊ†xT¸’ Lº ªq `a¥ˆj¯ÏcÃÄ/òÿ§¨DîsWT4>ŒqO`L‚¼=¿Ë`…!:+u}ýÓ0TS8{>'H8[ùúÄí*}'•6.K'á<’ÚíèF} ë¦Uá ×:3¶GYûËé8HÏ–¨yÎ7þV‰ÏÏËÞ¡þŠ/j‹ÄCîMKÉEÊj#!ÊÜácQu4¾œ\Qf†â‹ˆ“)¢"àSÔÎù$M%<Ò¢¥ nÎ|#øí\yΩO÷=Ǥ’µ=*Ÿ´¿´Âæ3œ³ÕÕMРÙ€ü;ú¥= ;¾uˆö¶`2Y«a'a?R+›ª¿øG.@ýô2Ï;Íó–'àÏUYܸô±fOé`ùû­ç7’x[ƒVÅ·d–xJ4¼¦L6ówéï“„pQ ús‰0¡ Z‰K®3ìcnӿŬ$·…‚¸¢>ÉÝÖk‰bòkT.š\p xºún©£*Ð.™ûõ}1•Uwci¶‚¾©ß€òîÚž­ãZž­Ë 4Š¡öö¼}q|²wò¸Ô£8y¾ÁÏÒú|Ìœ®£çGn}ÙuÛÞ¹’È2Ï„-­þ~÷è2Ìïüpòc³·Úgxeµ6s´ûf{g÷õîÁÉÓW'í@À¶õPÀñ²¸_µ´³˜}D;9Qnð5Õlu9ÌÙ”Ø;çúíÁO‡?r[# èSÕ•î#2e, à<uZ’o­ Rt×ȹ/ ;IA(4C!ü©6²ªâI æ—ý×uq¸ýŒiG‡Ù”׊Äiøä¯"ÚPdeňŒ|M{‚¡×4G.’Ù ºï0ò± •1ãª# x°'³ô† ßÚnÑ,‚ÅŸ–ŒÎ\Ga?„I,JÕrƒt+4T^±˜r's>&\ XªIÉõÕ6Æ`kE&û+£+„nq­©ß®Î¸¤OšÛsÓ0ОA'S‚ .Èv“½!Lj-N+‚¢=ëu`çïF˜&“:F cjø_÷…¦þç¼­&c£ízðç½ý—gÇ»o¶¶OŸâeçE]Vtã"g/¶÷vô™f!¶gœšªJNòçíTjÛXÑ-¨ôð©žTu”QJá11œ»Tk¸oÊ.< WN5œ‹$yL‰8 iIZjÝêÍuÛ½‰Í8—½—@…hŽ9áí *~Óüþt© F!4µK8dê«P @NBuAãU ™,^QÈ6´dùÔW>0Ò"爌[ísdAŸžÌšºï‘=ŒR@¦¸’ê8{#ØÃ™‚l¬~b"=ZÿF8Xð¶[ádo’p'øÖeÄEGâJ¯Y£ò)ÆùÉlÂåiáŠiÒEûµmç„nDá§Š7^Ì"œ SM#¿ÉMáakìQ §o˜qÙ>‘Íf+‚æK¬Õw5ÀÖçTDB39Å¡’¢ˆ›IQÄ`èünwçdEQÄ´˜`\þ0ɨ¤£–j×™×®a}ogT\±ÍƒÉhÐO/#è“Hc ÏÇ…ÿîóÕ¡«æBzš8 ;Ë™µ×3ƒ?  ‰GáL&9}fçðÍÅ¡pÆ+)¤áE¢VV‰‚¹% ½|µ³¶NÜcH•Y6x³ãÇŽÃËN£ò%Áp-è쳩ãžÛ;Þ~±>‹·GÇ»û‡‡o¢r1A.ÿÒ¨ˆ–¾<[cøî®K³º0 •ö½÷M'/÷í ç_è~‚Ü ñ3gÅ"]ˆæ3gÛ'~!àÙ‡ôp÷ÐLÚé ³~À¼¹4žð94És˜6„ÏÕÝÏAVN”B•fʼn†—ɈÊ%8¢¶»ŒåÐÅ\Q¦Õ´A„inC\±œè\!ÎÜù@Ôp˜ùÐhjåSQ‰§5QÄu°™¦‹£AÂgÕ ØldªÐ?qWXÈ¿Ñ~< öàPþŽ;…’OàÛ¸dM‹æ%aÊ‘Çsµa8îo´UµÑ•YmØ•¨[;› ;ˆ25$ã7@aÑâ×Ꮁc±x¦]€G­Œ™èÿë[üÇ5eêGðÓŽKz'ó˜§óhù4ÁÓ @)ÅD—?¶N³µW6è[_º]‰ã‚¡WÌá¾@Í™6Þ´lfäQÜGø~b¦ðeѳæÐ)PÐ?†®Œ¨G#ïÚ‹¥+UÄ©…èmì<×SÍÄOqúáoÝ.£¡y6jÓ3®=j¾šfTn8hÄ"£@,‚´mxÈjÁ“-Ä;‘¦óq•iTr¶”¥±ƒåYwƒžcÙW×Q%jCax‡/EU£ƒLƒaÖ—½¹¡tîˆl.‘‘â–,ÍLÝÊ.ƒ5â1U"¯ÛÇ~d4öヱ+b±]ÕŽ€jÞ±…)Óá ¬®˜î}!ÝÎÀìê¸,üžÍf¥C©÷ó²›âwàL‡fG˜ýl3 <àÌI¬OZBç^· ÆŸÒ©Òþà#i3Pf´eéóUŒøù‹ W÷¢Ñ xÄ CHCà…›ÑþHê.ôdŒ˜Ú¯FòœÒÄO¨ HÜÎÒðµ-0/®JƒŽc^å±qቴŽâ$ÑúRþ ¥Að£ÉüÛ/±S“Ÿ¾¨¦czoã ÂWñ ÍpÏÛûëfa ḉ•_–‹{&޶ÒhÑ=y¡Ž‚Áú¬“'îùú~ÐÄ£1ƒLÀ§«—›×[“—p^9Û£ÿSTYèø‹„_t /¤xï½»•æÁïÖî2Cô2?Ì%h¾÷ Òû•5ƒ<€Ã½² *â~š Mœ¡ååø°Äuã[`*C©~¹ XCK«lßTÂ?¼rJˆ:¬_%¾ø èa'qt[æ·óý³ózÌPqm6½»f ²J‡#u> ¨c8ü¾žß®^ ©@×üÕýŸO@ø|*Àçñ=Ÿïù4tÏÿ;Á=ML_mÓ–6:€=Ýmà=*!f{$}GÅ·¨Ež1§Ÿ¾ê~ ÐçÀ Ý ¢À~<Ó<“èÔ*?« ¤…¢÷ó–Ò¢Jw‘±-ˆ€©q5*šHƒ°”_àõõ4ûÞ`_ø00&MLÃ"¡Oûz={ Eÿ·Øì÷7™Cõ§þo¿ÿp÷×ÁSHú6ýhsëYø:|¾úêëç§ß» ­m|›ë÷|Ca£öúdë;ûO× N¿¿¹Æí¿ñÒ^•åéŸä¥þžCŠ a²æZ+§pžOKÛ “× oê 5TÑÒ |Ð]†,€z¡s=bš sµ£0´DñÂÑÉÍô•HI?u|ÚJ|>`v;?è×”ÝBzxuhYØ5¤jô«dnØ¢/¸+òvž»í:´j‘¦KYÑS‹)ÄsÌ‘ì=ð£qn2HáJ\¯j ÇOñC–…ƒU6’¶A¼Åht¬‚"î$Ecˆ{\ÕA¾+­ŠWÖ2٩žhEnfÀ2 æXÍGËë‹IùÁ§ªá!%ÉRÌ'HÊ㨸[Ã=ãÌùèô§°­âÃIÇîô{]W>‘ÑqüóŸÿ,§á퉃›÷êg;¤; =ˆ—‹·éí,Q!Fh´Ð¼MÖæ–¢òs-$7ÎU~ßFf2Mnøf¶ ŽL5Ïvsnà.Ï!†%$Å¥Ä>rU]^AŒLbT¡7ô±¼P}3£Jd|\(U–XÉâ|_ç§ "áœæ¸ãµ èx:þ™{'ÔmC鈦n¡ž€ ÚŠH›ÉØÇ#óòÕ¶E†úªÉ8Êe…¾äÏ”àp„ÜÍj#9æ€ÊîÕʃ„áÈy׊|у-°\É߯•¤aû6QÜ´)P”þÅBm,cFŽˆ·”!äÐ{²mêŠÊAÝPZ8#­¨&‡BE™¥QQ=}SµC½ý ¤ š¬¾bÄ@Õâ3 ¥øÉI›âK·Æ°•á0j¾,¤€aöÎrJÙÀ= W”ÉÝšŒ¡Š+QÕ7)Ž ¯)?mµÂ zÞI’¿Œ‚€«ZR;‘Á™”i {+»f±vU˜9:TdcLÇLJçÛ,4ܬ³z‰º¬ÑFRÖ‘fÙ/y´Ðé:£Cæ-’P3s4ÜÜ­Ö­„=v!šÈíL†®¥)%ÐÏÇÀÙ¥ª.?µ§$Lº«EYW t{[’|ÈÒ‚ Ó†uW´º¸óìXo7bQ„ìåô^‘E±‰ 0£3“i`CQðCW÷ÌGÆâŒïÆÁÂÐN×M('Ø¡fËÚ]•RVÂáœv>ÅðÈyyYQ¾Oæ^M°™—V·Ãx Qåjd½ìð\ù¼™¿(©E&Y«Æw9¯Œ¯Âü/‚éG¸TÖ‹øF¼ßN¦5!B×D=² 𪢛’Ø”i¿P-òi»z"Xáľ÷Ù+ú \ä¿ 'eDÏâ¤ÂwiÔ;Iv Cq!ýô£±§ÕÂ( ú½Ò5#´¤eÊLÊ·ÅýTfßÑÊÝh{v•†²ÿ¨~ÃELÑU¥©5o£‹2Û£bÓPê‚ë­ò pB’º²,“X¬÷•Ì®×üM9Ÿ ¶2aŠñ.2›9»hÄKóMâ¬å61/C¦&Ô–â:oùé9ÌÊé‹A ;ý¼fp° BÛéŒO¹ŠÕìlfæ“â’Ò*(BŒ¶…n!Ü÷S¼&ˆŠß>_ƒ+¹NkQMÓM×ãuµ(ŒFƒ¬1X ª[RÖ_A(X ½öÄӤ轥ì+«Z4²Ëšb^=v¯ŽÒ’šºœ&áñÖ¿,cÿZ\ÓÝü³XºÁ+1îìÇBïäò ݯÂ+Ü´o˜+w3ÈúrÊ#ÖBØ 9u‘ˆøæ'’à9Õí So|ú=¢-6‡øž AðæcÐ_4ÁóF`ktNËÐ*gÎß?…Œ…•x˜‘¥'s9åtWd Žø%Á~ø~G:Á0ì Šbú°g¢ÿ€6)LJœü>|4fe©éÐ œC¼Ùˆ2§eÁ`°j…xÆû«îD4!¿-M·Îµ¯'J¯±›sC¦Ê"WTѬ5”;ÃütCî;M‘OMeåÔbzyîáŽÏ? ÖÈ"{Øúº­Â\5uãcW[R«[btê1¤eÑ07ˆ“Á¤Z¦ Ulz –ÉDy(ßKrÕf2 &q5梻Èë™Ì¥UÀæD6Îð÷ò¤Æ˜+¡lÇPqÒìöÄ=ŒŽ¡–÷’ ŠsXâÂd”ˆK öcEÝi&µ«·áF*oOCsÍEEµo–ó°[ÊôZ¹/¬ï„jèj,V£4³AeŽ¥’#NMî¢(jtÈF$É*ŽšUø•UÜ4+€+«8iV VVqÑ<ª² ¦òˆÊ*v—{«X]ÂèÒ^¿í#‰( Ñnß¶¸žüÝÇF(mgö Uc(aKUNÌ5ã&½Vc I׈ÞQ‚°èµ™Î,r¬1Ȭ¢åRtWåþ°›dB‡+· `sãûð1þþ½ùm_é¿ý÷§ßÓq‚Ï·øwð?]Ç Hó‚4W×; …˜—“‚’™ÈºÌûå­Ðn}ýÜÕ?4C¤Œâu‚v×Hw ‰6.>£ªgA4ûöN ” 㠖ãiÓ-âMn1V3«»Vÿe ï:Ÿ•’Ѓ~g)<-)ì 5§¨ “âê)H|;h‘ÒΞ±@,^›¹¶Â ì¬P H9¾$í'Ù)¼ü›[Ï¿ÂO¿—½ó_›úÃÿ“÷Kø*ü#üwÅ¿æß¿*°f3!¯}õÍ·¸µÁŠÓª^‹‰5Vf}ét˜…Iæ(gËûþõîëã?šMnDÔÜÈ Ïî“£ÂÁ©ôýó;—.FÄM2:RˆÃC…²š":Œð.E¦9AÉCW§¸z%ˆnGü>±ÂxFßßeâ‡Ä^P—‹¸Ðˆcêöu ˜OðZð² 'u[óÖåúÜžDì“"žÉšx=3ñÍk…JÜ€H¤‘é„N»›¼{>Ç– '`#Õ«¨Xlæí R0;x¾ Ú‹çC?ë¹Óç•ä@Q›½s :bRö{ç`%ÑæÄMo€vfÖ¹ÏÂ¥w>ÿ ýGP ´gBòK÷Ui5þP†@EMF fɤ¢jŸ"h5ʼÛÙeâêíR‘(S M;zÝMXú Lâl¹ «‚¢Ø+1K|"4¦k¸žT.ƒ=Å.2À~8Âä·D\"ê·ÉÝnJ'7¿dEä½ÖšN>Í¡…¼™ëFcãRÌ ’ñxŽ ŒÌöÒâ[­TKš ¯Q¡Qfmϱ‘ßO]<¨ ¬b²’z °6#˜– Å=ÕpþQ8‰¨Öñ|ù:BË•œ¯´Œ[Ý•øÓIyÞ2—zÈ$N{©å¼m\°=4ù•²q¡ÕöÚÁMFQO)X&×n„â°”~\«\}äë꯴V`¨_¯Ø•’~WI)"x3ßO 'Åa×ù»ê¼¢ª—}2fÙæÆÖWTIÎ¥àM3 {¡¨*WqðÙÖOÕ‹õü‹Pò° ‹!Y¥”¸<(øçf¤0=$¸ÀÁ©%¹ v†møÜi}•™G±µ ´¸î¸P‹f‘ /;bjÛ.Ë}ØÌTolËÞÖÄ.—± ¹tÖ$Dyºi0ñ#­ªét=3Æ×SÀj«ð>—Œï`+Íý¦0TXW 麚âoLˆ ÝôÅTØ~ùšÞ‰Ì jŠÊm„ÃܽGO>%"ü^PÔLù9Ý óÂÎDpg¦H[Tn ð „Kw!þd—¬Ý`âY¹ uVä=b:_pkô|õF×,‚T¼@‡zÊšfŽì@,ì9K2ƒÄvn–0hÜ›Ð/LÒÇ_´VóÉ¢ò£.ÜŠcâ­dm Fñd³Kc­Õ´¡TªJ<…¤Ë(© t‚Ñv1Cƒ4rêƒÕ×¼‡Á,¢K÷gì‰`Â!ÅþrTÐ0õ‚÷¡±'õŸìï½Þ;!ïÇ÷ëëëA‚ÁÔAø¨ØB«dx«šp•Ù³$TBúúïh{qäûœÑ¥YÊàÔ¾µ©vZê¨äql9H™åˆÖOr2ÌÊY3ž£ÐÆwt%ó«ƒnø5Ñnš_1›XŒ¥öýÿ*–šÕoœí‹ÑÏzI˜W³Ûìf‹ý=€)ÍPï€4ÿqYÞðþÑÊ9ùb^–žük€Ñf@ˆ{ÛÒCa â+Š gL‚ð¾d·šºHðèMšEá”p ‘gœ)ŸÂ²÷ææ¶Ô)†ª‡=^š¢îYc‰î®îÙ^(æLÍh®I‘'C|pЙIɉ ­»°Â™/‘>OˆÑ x<…ÐØ2ô~ŠÐ§¿@5c¦äM*s%ÉGÍ• *ÒHÏÅÎxBMõ~ÍWˆÅ„|,ÛFï ¯ÕkÚ͘«ÕŒÓâæ®É¢]“Ît´kP“4rÈ„-3$3M7:Ö`%õ) l»ªq_Â.ky›Ô§Gî\áX5aŠ5À÷A {aTF;3ÙPسw‚Ü/šÛÊkIº«œQ¤ *©™*©¹SR‡¢ÙÖÃcqÄðq¼„Œ™×ÛG?ȼ­$óz¯ú¶l}Áÿ I3—cÃp‡RžÊˆ>À³ù4ç¿m]ƈÂ['3«º­™n°!²ëF¹yÌ\ ¢]@þìÒÄ„Ë\“ʇæYˆúÖÓÎØl8ôC¿73‘çx•ÞRYš-¼ÕäŒÕƒ‹î¶™g„­©Ì KˆüÀJ‚B~9æþOïr(3Bj¨Ÿ#HA|î³h¢˜Èœr°y6TrhÚ#Jå¸"nXèèPLŽÇ, ç(3¼BÅÊZÆ¢tÈð:“Êò$b ç¦Øu¥Æá ãV.ŽýàíÂåÕ0^¢ä@I©@=±}˰ŠN³·íS+1±w¾œb4ê¦ÁØçÙb ›ÛW}—ËW—ËÆXçIîøJ²0·g8Ü?ñ‘‡6Þ¡ÁY}Jj‘jöhMßÏ&ïƒ}.¦ÖjiÖwxíaJšFüsH|ÆÔIÕà/°Ò‹º/¨GÞ –äjv$NX‘ë«Ï“P-XÚ…Š5ÒœHcX ùˆ•!ÅIÈ&9×Ðʦ°iM¾ŽàCsRø³ˆ-Q˜ƒU’ð•ÖEíIÃhqûi†³QÕ±[œ×¨Å S%°6ßHÑ`k!É£‰jCX¤Ì%]H¼œ4ˆK×"P¥–µúµ,¨?$+l¥ËÏ:@Œb]oqÐðØ²ƒ•ZN• ^Ãt{J¸‘%WÂ<Ú ¼Uuûœ€+º'˜²kŠ4ç\(8Á¢-Z¤‡ÉøµÿƒÊswOÊq¤Ø–²&ºuYŒcñäðÞ¡¡ çå´ÄÂ7]ÞØ|“È5ª-{Y’AI¢Ì¢-FîAÁ7„µ'¢óZoœ5 Ì—»F¨|}†ˆ•vK?ë*&ÎÛ¸òp t¼PQs¬6ãJßrI….= ñðIìZÝüÚ"Q@ÊP3‹¹]’II`Y‡@%Åžlå¨ð)ÆD°È¹;’u‹¾ÄÆ»B[úª¡†8ãŽ)û@ ñ¥‚ ‰g#Œ‡ž.-•[Zú•€¥ð€–ÂÂI21¼9\OïFßb~Ü~œã~³p^暎šåIAÞ11 iR¾ãKÂn°èÁ"®ƒõ<-qS¸=±> ~ɸõ®Y¢7…ѧ¬ä?“SÔQ÷‚8‚EBâ æ4Á6i:_1C—Bûˆ˜×3{n!w¤Eî.fs¬7zê ñpÚcÞ·‡27ð¥ÊQ§%  ëÆÈNh¤ÿÜ=:<;Ù=z½w°}²û’wmêäàÊhJÎ5$õ%ÊYè„J ÅåÏ•0ÈOùì"»qkÝ‚Yk.{ÛF‰™Q‡vé >ÍOmÇ Æªt——:mÔåpØY6Æ!,©†Wga‡nãC¼WÅ ÐnžkTMÓˆtr3*‡aÕÒ%ŽTŒ½DÿO}¡ aElSPb’˜âUkh‰æ¬vÏÏ»]ñII‚ ¶F^}Å*O€ëj¥ÌºÝ e"nâÝ&‰x˜—«…KôØÂ‚µT؈bC.µ½XÓVR¬éäÇÝ|{?ˆ ö~¿›£k~ïà‡üÕÛƒ“½Ãƒ¸x“—›s`å+$àA囸vSQ+Z ¬ÎU¥–P$0¢ÔéÌ3Í·øùºO©AT ‹É2‹—… Š|¶ ~jðƒB£y%Ì—¨}h:yá+Q#ÎélÔ&SBÔ8‹óBä㎂mÅhÂ(»÷ÜÊ©2—&‘þÉÇ®k§QÀ”~JûlO$ß»fWŽ%Š{¨UÚ»êÈÐBãHR2Âjª<Ñ„¨Übµ» u£âNw‰gÉ™x¹ûjûíþI~øöäÍÛ“üÕÑáëÜíô¸˜ö›&KÖ9b*TL¿O»ÿ0 ó(Η^¦¢vq$³ ×Nïz“záx„|ŠóиΨ2)êê ½½šMŠ òŒêË{bÁÙD˜)—$A€èÁõbæ¿^#e˜}½#lq¤ÿo Š­¹$„žB mOÁÕ´f<6û]W¨#ßQÕê;Ip³x…%L–©2ª‹„ÇR"YÃüô§ð¿s`°ÌO_pGȵ>ˆ#àõô¸Ë{vÉTMÙ';•ËÑ!ÂIOZ–.üèæjnsõ“©m[`$½ûôPÌ>%¿¨¥…²±¯•†\²ÄgR8νšD¾V$"s™B3dØÀ ³Àk±9æùrjõ]þÝŽrƉ|¹TµÜÜXßÚÊ·66Ÿ¯müjmë×YÌÃ÷gàÉ<9hñqf±ïñ?(í(ú%ñòÉ‘0b>˜Ã;â…1ƒFäÁÌ•ÂA»\dà3ô v9««n%‹^ÂhD€ËŠUŸæB¸¼PÐÖyŠFê©Gá¡'Pï˜.¡ jëxȼvúØôd÷ìö4ïI| —µü–& ìŽñD¨áÛr펯ÿc©Åàïýótµe¡M}{Îßžó·I'úzžÐshz¾ƒP€ûô&|³PRø÷.‰ýN?\]e\ªJÔTu‹ñ²SÂ"*5’7®s ¬^*¿ñYú‚¿]]­¯¯ÿC ba…KòÊêœŰšjUßDÌM]é`öJ‹ãî´eÞÈðö¯„yY›T‰¬ùp!AuSJ ¿îm|ÙË1AÄ~+ãæ¨X<ÕÞE ¾Á¡ð:‡âß¾ÌéS[×ÔéÏyiˆÌj àÔ«)pŽH5cŠ»Ú/¤s2Àðž!œ¾¨ú§·§·ƒ§—Ñ^Wá=áÿßÜT<†ð/Þ­ô—Žnnø£ð¦»Ý+ÇŸ ¦ß…ú˜²¥|Ý–ôIÌ{\ÎH"¨h7Ê¥ñ•É<-/ÆË¹Ý³È9RÔJêܾA­Ø \E¶U.gñUøf—²í¶¾Êû˜ÉF}Äs7ÒëÙt á±RŒÇõ$çbL|Vh¢*¸} ÑÐc }P“a2=F† ÅÁ02 (q;vÍ…}ÞO”¾¨²pN”f“Ý¿ÌÜéT¸(€¾ä4hö§óÓ hPj˜ÉÆFX饗è®h× Kÿ*ÑŽþH[Uò¸V[>«ŒDà ÖÈæ tH”Ê.еp¶Gd†Ìü½pGA,¥ˆâ_õùD°c”Ò“(zvEp?XÜ—‡ÿ”aG—ð·äÞº+‰‘\~rú}.ŸmýO8ü›¯ªðWÕSÔíÖeÊЪ‡!à½J¶#Šƒ´Ø£4®É,¼¬v0V»¼Ù„#£’& ƒwÂE9¶FÎZÔzÕ|ÝíZN-Š Q¶Ê¤ðÑKg*ä¦BöxS!_e*d5·y‹™÷‰Å5ĈÀ? "ŸÂý˜#œ‹ÒÊï6À Ñ-ÿGnìË•;›0á_ô„¿Øëö#ûÞ>ôÙŒ«ý)B ¶IXñ–ȺˣSuTqx"Rñ¶’lˆë¯K ~T®² bsûU¥ùv.GåéÇÈPt“Ñ©U»2>–™K&ŽœË"“#È~%9†:©pWI1qCrPàÁhy¤AŠÅ7XÆ^(n%¡ñ¼o;þùtüÛÓqÿ—bú÷‹òüï×ÅüïÅÍ<üß»¿ÿ²œ†ÿMþ^,/ÿ^—7ŸŸÎÞÿ}\ާãÓñ¿ÇòxëÙ/a_ÞÔCÚšI­ø6úùtãkÜÅC×wÞ—á+Ù—¯ÜQtáR`—].ò´Dvgm]ú]Z]—>ítGʦ3rYÇÍ–lÊçɦÜÙÞß7ýq¼ùöb6N-3Cà.ÊÂ㋺5Ü÷)ÂëÁ$¿àñË™FÛ\Mv7r nLƒìf6ƒW9ó>dLÓçÄ4.`Æ’òŠ.ˆ°ð™ò´"—bFÌôø‰†é÷0Š „yÃñRG·íÜ÷ŠáÓFv9ëè[¼šã:=ZÎÑç.%IëCesQSéb™ H¡*Èð*˜_àeÕqª×ÖÖ$é”2Bñ¤oÀþŒÿ?ü9u5³Ì‘â,°ãá…Q9Ѫbþd)ΊΫóyuذêHáèÁ­(g l…©o„wŸºžÝüä8?ðði˜™ß-9ïêV¸^Äk•7×J(Ã!Q–Kæ`—Ò_JÆlíZ”ï$†¥)·Ìeºç6­Ç¹Æu «Â¸õõרEN›’BÉ}ÑsSM$w0­Ìw/k¾ŠðH”9«—ôîØcå—¯F‰N9ÑÛÎBŒÒûÎórQå)°H²•œÞ0þím¯íþéôÉSßùèVÙ}âþ#ÿrƒ÷~Ø¿ÅžÉØ~ôMþg> ðÌ—›ðÌŸù: ͘¤hJïþÀŸp¢˜ô7·¸]ðŒÕ¬È‰yVdR,HDl¸j´I¢TW¡}û‡Áù¨{¦‚ˆpSEÿrsEîÀ/7e^rmTæ‡?Çà> àuÀ·ùð›0øƒþ{ eù”½â‰§é°È£Þ@½‚ë÷ÈΚ„ÅÓúË2ONŠú(ðFã½8›»uÀXŒÜ†Ï ;æRg9|5UoJò†cÖ½§ó:J¯³çnJ+J-E âGñ"¤PÿÓo¸ÈØL ¸. ïÄ»³ÍT¶ñ…0c÷¬êòjÈ][¤8GM¡“þí—½"(I“R¸ÅZê:‘‚‰ŸuYøÒ1<ÙJ=·8ïÿvç ´Á¿ŒÆá=ò™÷åE#þnO°—xÍòþ¯ßæüp|jø‡tÉÊÙ¡M¯om„§åm+ϵÒ Üã±óÍm&K7NöO“Á ¥Z„çUÉû£bމÜzòANgªÁÉcƒ%'j]§Z‚3ñy72¹³ŒE^*H „z½æÇ6øRº ¯gs²Ûë.—·ÚÂ×=W7çoÈ«©jW£j¤æ¹7“튺Õ4ž5¾ÄBJzÆÕ=á†h¢åÕO¥dÂËîû˜òˆè\òi퇎€Ët „×cNÕ黮 OggèÔk›â®[W¯±ÝȾ/½b˜yפÔnM)r7¯ˆPOÀÖ4¥\Š&jRiæÌqtªæÀš8 µ Tv‚Ô˲aÞ;PÜ*?Ýó*Оj‰¸Â®% dá$ÝIázÔGl1WZ5ï–Õj b:òBšu×UìDì̲Ù"âü [éªîÉþ°ž]/^’- ²K>»Èä—ƒóHY†-ÇU<ˆ"£„Oð‚)1Žãdv1:ý>Ú˜N'Û ß"Õxú¢ñˆô¥j‹ôÑÿý•þTÆ–¦Ÿ©’¤O:¥É?y0ËÛfúÁC>Ëäß:y³tDþýÙ;ÂoÖŽð¿±#Ÿ÷EÔ²½ˆþ/J ³`±»[ y╚2 ÀÀ¦¬Ì *a“Ã}w (DËâ³Ü¨åÉiž€œL7¯8^89i,€Â~T×Á–C†Ëª(tî¡„lANL#ƒIL!ªHonˆ!É™ÈCÚFÏÜÙÅÌ•JsCò§¯u@AYÿ²G9ÈœÌ,Ü3øâËž¼˜èÒ< '-¥1VH~•aÒOV-BÙFÌbda„VúÑôª#Oïfi¾ ÕÉ•~ÓzmÜQqÑè&µˆ¥ÊÙ­VE…X$còv&iðHæq7©z¦¶ù&iѼÉ]]‡ PÿèÞöÓ4Ô£ˆ‹ŽšÅŒDºÃ¬Gy­£)ßoñï×ø÷A¦µ¾ÒŽ1]½É=î^#V^•’·T,2Š3º×èò5&‘^M}¦Å’ŠÂrìÙõæ2y.†fR‚+! œÈ‚¾5_ð4I®l£X}ƒ°-q²d­Ãh¹Y/v·6ŒOô(ùX¥;™°y»$ÜÀ+¶(²¾Bõ "§iÔÓax®€¾H$ô žãÝÞS|Dìi zƒç•ÛÖ|…m‰ï`¶§w’º„·‘q3Á¼dœzòè’ÞXA/\5ueèx‚®ÊɦpÑöiKEÌaæµBg.—a‹†Šú:¸WJìöUÖ ˆHœw°¯FB~•DBÖÞí`€nçÇí£í“ݣ㖨\côª—’ ¾©¦Á™tœ9ÏÜ0#^4·¢Ï¶Ö6·žçn›/0Û —·˜F)´ó’ä):0‹wU~PàXbýxM‡kסDÞUŠd¢ÀÏDW9©K4‡\ka2+ð ºÎÀ;7xeعš>ÑÈ1ŠkYAðnfú»šaô‚U·ft/ÐK!?™¶ùrª<¸-ÜyÀKk˜©"DI\͆Ƃ­qrÚ{‹~€UWV[¹ÁAš ç˜|ï?wóÅÝM©Em›³(<0NhýNúìûyUL€þx(‡b˜–ç©á¨^£‚Ç:Èla&…Ë××Å]¡M]ætÒå(¿“‘O”/ÆmÛ3\©P¤É½ ɱ—о¤ëÄfh[Dz>8J…k`sã›o„ 1©Ó£ 6í%S=¯ÏÙU²à²¨´ËwrêÆåšû÷ØÝC2xôÉ ŸwÜ *6$ƒäÖ^En"‚­}a »í@×ê¨lX—ÍT°…Ø“¾aOÐä!,¼úÞx_µlPØgÓ šÕX©-§Û“ਿ+Þpü×vO0X>s®ÀÉ3¼qÍñxѯg?–â®ñ" GŠgx µmÐgSqÄEŠCc‚†¢…‹ ×±¬¯šš¬+ä—ɘµ°Xx™køˆ”BÝrV|½H%q$ÿÚb±ìá5À7ÕF• Áœ˜I?ðfG‘Å9q/îˆy)èðV§.ôTëa6Ü}þ@fiïÅ4‡ÑÁЃqð^¤ål^]";Iœ£¯†¸ZùØ+SÏd¦¹˜dÒÁa$ù½ÌÎd¤ &ŠÃJ­/ð~ÒežÕÕÊ¸ÅØ5“T¥p«z$É…‚\´žK´ÏA$F#T9àYÒN«½ôKµǦºHV ¢f(ôT L™È6^zuûýÞ¶h¤]„G@ÔQ2»kdq‚šöL–Uï q,ïvÜR#2£¢›ð&ZÞsH0ëlæ‹2òóÖîãÍßÝýpúÇÌ}%é"xÏþœâ¸ë„ÝÉkÉ?Ïl`¨Ÿ6„WDØe1¸0&꾺ÿIЋ·å*…c¯Å¢ƒˆ*ßýßnÂ/yìâ¼½CÜÄPÍ’0×F–çP4(ÑqUQ@€¥´CôdYCÙ¹«pˆRt/B[Ò¢Á(õ^¹Šw[–G03‹$ÂpQ誆ÓÒóÓûMãHágÇJ‹ÏÓ”ª–-«‚ âÊFKô" ÿÔ˒׬çùl: gŸ±€1ÁëåŸ`$ î0›‚Q VÍÔŒjиqÑkN±lq*”~E¼Ù‘ÒÄz(áÂdª…­j´OàÐÕV£ HEILç#‚¿C>ÿ$x{aõŒù`7‚aþYgòQNÃs–cø•(Û´^b¨àN„Çñ:T!f’Ê»ŒÚð)Ö€WsKnäÀû¹²,†™»­¡¯ÇËË•..Â…4»ï4çÎû¯JÑEFºˆD8‹XEÝã&žt=w­a0Ü&“Ì“Ïu™ø¿NM°]Hc8>Œ,Q ãýg®Ú׌>s®ø\þÅQp7’È£š³?v-ð ¿TÙðMÇ`·6’Án¿=ùñð(ꛫjRÝä?-'TÌé¨\`á-Üo§ÚeA¢í(çq9_JúùNq}>¯Æ—áÔí;‡¸2TkŸ6èßï7ÒEöÁº¼ƒ|…ÔÍüp´˜j²µ±õ5¿7ì¢ÊùŸ°m¾Ë7ýë_­mC§ëtØLÚAé×úÊe«Šô©¦ãòÛ ¤ã'a÷]–ÐAžèÿñߢ?¸)×è¿›ë_ýêi0­žÂ4>Ńюeà“}ÇFøóüùWøßäÿ~ýõ¯žÿêl~½ñ«¯¿ÚüÕæ³­ðùÖÆ×ÏŸýÏ9Ю?Kf…WÎg³ÅªßÝ÷}:¸ÿüùXX8ëA{ ÿëlüƯ¼`¶‰%ô?¨H~â|6ºÐ%ÔLŸÉð ÿôÐáþ‰ ¼ i¢ÓwøÏçÏáÛ‚ÿýìÙ¯ ÿ~ÏÿÞ ^¼èA6ã^„»Šrøæ3È%€ÏÉÓo ôôÜ'¯÷óÔÑ@  ×Hèß5§×›ôÛ,ªZ“ërZ#™\Ð&²› ²šC^Xo ‡‘Œ ÙÈ =Û-’¬ÌgÈ…¤ðÛƒ½Ã—»èœ„åã·oÞdîæ ‰©Ùz~¾¬& õ{+ O !£N¥ÈôÑXöú Ÿ‘÷$´ŸHüØUÔ®Oªó9ÔíYª]LoîÅ™¾˜º ê.Œ'X½4,‘tÐfPê⤠¢mÁñ¯Lò|`iٕŬ‡ø6Ÿ%•{íÙ–¸`úüKu`’'r μʕo×àìzè!zÈõèÀ »¤/ª”ˆ±€š…ê %›rp!¦\K¼Fºœã ÀØŽh¸iâÀÁƒj=X‘sJ“tvbÖœƒi•ÜðåÚ35w@,Õ00áœXêXȸV=® ?qô±å’øùäcòô£‘ Öù}adU …µWäPñHæ{–lÙþ“ðàÀÕ¹'4,+“[¤À9Vb•A1IéÕ»¿ß=r€"»Ž „#¾æP$’°ÀÙ¤Ie) Òc”´Bžp‹Ôêj´®`‚ÙÙÞÁï·÷÷^º.!rÑd¬µb ÷Þoш³ö9!lNÅ·±ˆ]¶iZ –AŒÅxYg…‹ý]\\}‘Ulœ[Ì(Njïžs'ÖU³{q öâžBO„`Gh­€fŠ‚pîæ;j,ù@ۼ̰—~Qöü–OCæÛÇ;{{«/îÄ£Á锩§£_sÔ—¶.-(^©·%Ô Û*ÜTózŽù}[c'-‚˘Ü<+ò4¨ ´qˆx/k*4iY°2ª)¨¬„Õ¬=EõyÐFÞá¶¿†HGª\P*]:ÌÝF(‡ÐÏOè‘l¸b@hCuuÄP$³ÊŠ;JQ§qU#@¤) @˜=Þ“;QŒ„û­ 95C›M«B£¾mŒæƒŒ¦Ï2*ñOâÀ¡D¼¬öH‰[ ó¬äAèÎh!O7›p þȈÓóà ¹ÀFe!3Þ¿÷˜8¹rŸN²$zèÙ;`ã .ÓÌq¼í0Çt‚!¦£—Žk:æ¥(]žÖåT£‘õ¡tÜrF ƒ¤†žî ɧދì–\»yFÓÓš£‰ýC«pH”–d°C¶V[GQ¶M c™*²„] VN_„ÿ…^¾ ÿ «vzþw˪ïÏŽIÝ©D®Bõ\©îçi:½=Bª,ÚÝzÁÔ¨õ³´Â95!´gó±v^^Ç˜Ñ ýíA‘]âéRX…§ ¸Ä¬«)®H–‹™rÚ4LEãÏÀƒW$rÎÝbÁ:\oAÈܺtV-æ3»¾ž‘3©nÐñœà;èçñ‡urðò\TSò åô–×÷³¤1d‚§¡-|[‘–kŠÇ,L<@ {¸ ½a”ëW~ðiØÈâb6„éðAÇ<ÿŽ Êàtf–C7ûhç82± ÕºnnS ¨ÀC–䘨fŠE‹U• " פ¤s)0ïlÁáV îYM¡_ÉŒ£µÁ€½)ÊwÇ@“ZhH’´ózú7´ªô tuï7ü‰›üï¬ÏuÝ9ɰOÄ{¢/9°Œ&¹ú|ÂTX÷F¦ŒG]5X]³Û5Ñùu”é&ÐtMÆæ‰{6“»v¦u€#S”*A iÒ|cÿ 72í.3wP‘ê,Ø`Õ_ArOð×€C¾°s·u»¤¹þiØ:§?†ÿ½g1ùûJ;d‰/ýÛБévDóInNâÄJï÷ØÙ>Þ]Ûý¿ßîý~{÷`g7‹Øeؤq.ºy£Õ¡¯çMö¾£¨¦h2”ìpþ]grZZy¾ê÷¬.#iKe½Eânn}“‘ײàB3°§ 2Md«u¹ÓÂŽ±â¾š€ d€8c- ]f@›±¼‰ÈÃ*" =ÍÉVõü,!•òòºÀžd¦‚`_ÜŒ½*î ÂxêÒ{Ò¤Ú9h|RÇ&_’¹lm8ˆûºV/î&ôªÌ­‡äÇöF €ôÍɰÞî¯muº¥Ñ€ð³Ñ?Æ1ü4ÀA¢É/©³|†ª9?…û„JØ@µU\Fìý4815úà~Èù%åä=ð|V—AÅÎŽèÒýfÑñnÁº±3â®=k‰:””s…õqÔo}ú0çðüáähû Ñþîññ ÆövNXÊpÉ…¥¤.á:UQ”ŸŒ %þ„2ãù˜Û¸¤Z w’üªè4®‚Ÿ£ÒÑÓo™-à‹w_äßç_üÿ}ûåÖæÖvÞ÷-?«ñgÇô³Í_½’¥è;ùBþwÛKsòhµ¬U L;¥MEãôÛ{šJùH§H˜^.!ŒxQ\W yœ,çï ¶áö_Õ:Ä rWÜ’òµVaô/lÈ÷ଚ/ƒÔfÆßƒÞx¦p[ÊÏÙÉÛ£ŸöŽ„¹Û;øUK´«ˆ€Ý@Bwø¢úb˜±þC†Ùw7\<{¤·‚ï2ó9*?ÛÌú¦ƒoQ´Vƒ¸:ÚÊwRWµÂ¥ØóK±²?\bêpÞì°ýy@;ݹj÷vý¾®Ñ<¤ûªá¬Boy¿(³òø (®{¡±KÔ|é]ˆF "H€‚|yÏÙ9ïîäýeÞ7ï}Ø2û(€ElóÚ_ä}Ä Ð¯8N3ñq ðÚ×c~É@R1áÔµ# |½(,'C…*þ¶Ò‚è.då“~З3_NSv½ìxçhïÍI~ôöÀ{{= •bKp$õŸPCg¡¥o± ;Œ¸ÿ„ÊeŸ%_2°–]ãøô‹ð)¾JÑ‚DHµ¦šÐÁB? @ù=’Z@1øBÊ|»½‹U·›Îâ+̱<¦iÓrˆú¡Tçæsº"ê›a¤J1Ö‚½Ð©ªV´ÄœCÒùУ°s7¯&Á–eŸ\¦ÁÊÅ”Ûd Ž5Ðo­ë½·S@>L{ Au¢,¢NDi]à÷ª)ó•cVðÎêÍêå|>»,‘Ò¬‡Éÿðlkí¼ZTcØ®ogN߾ēÌ)^d\°6{ÿí—› h6:ŒŸ¨ÚA¯&ªóØ?¾9Êâ¥vq2dÿ¹iÚÁ}–ÌRËžvÛc×´…$BŠÜ€‹ø¿‡yy=û¥‚˜Tè}† xÑ_ŒÌoš»»>ŸMjã’"u‘ ëâ—Ùœp±™·æ We5åŠY$rI%8ÛJðo꫺Ԝ4ïØƒ2۱\Õôá? 8Æ{“#ɶ…v¨=ý’/ö’ë1³ð¶”¥ à]í5¤Î‹p^IÉÆáA¨ E¹¸B¤WŽƒœ4g|¥+¸M]@9-Þ“'"­1ˆ‹M¸s¹+% t‰N㉤SµÐ.‡SÁÒ$>Þïñlƒ9¸Öu"¢òÅ/pœ"€3âF¶£*UQÑôRØœ ÑÔ˜˜WÿImÆfD†;§Y;.Ý5¸p‚Ì“uãQÔˆ³bÒR»+]ðy¸ ²äÆ)Þ\Ð苺¹íôÄ3¿G%él;ZIfLüp×ݰ¶Û>P«¾ZÄ´€,¿Ro¹(囄EÉ»‹$ën Ò”o“0£DB=@ØCÛV 9ª¥`‡“£ T‡¡ë˜’‚÷µð£ŠFœ‚5›Ì.ï†Eª¢Q³äJ®ì¢»Ä옭Õ+&ÝO“„(ehë•tQqÖ»œÍÂÒ­‡!PA‹e“òËoRæ¢s*aúÐ<- SЃyb5üòÆÀCÑŦêÍzÈÈ[Gµ„Q`³°¦>„ßAÝ$Dé1ù9—Š‚;NßRÌXÜ'·×HR ³Äµ:yþ´òA¤âå݉°ÎÒ]°¦‰4ì©UÁ²fœ-ØÉÏ7vr¹¤1M‰?~ù•~Œ+¨kè ]‰lî*ºà’½ÈÏAöVU~4Ãò®æÇaŠºœ\Å´øNb)3.`‰÷ªS’6Öó`—‹†3‚PWÏuÁÔã†f·]„?‹[³!aS(\{Ôax’ºë_ ñ é>µukÜupÒz%„SÍpÜßv( ¦¿øJÎŒÀ”c 龋«¤ÄSÅmôÅMoÑÒ§?VóâF…®Ü"(­6Ä:K’^ºö]þSØ’7¬áƒËåDÖè»ü¤¨n©ý×XPµâß½˜ÝÌ®g³Œ)·*YeaŒõsüÜæ²ˆ®wvW°ÎüB3™ zº ~2Ì{ï«9Ö-äÑ øYÖ‰1K€ÛA;aãÈÌ uZ†2Ò!‘ùëLd­ßË X °qÂ>!5PUmÿPæ¦7}^pv}d1ô݀ϻFµzRŽ®¦`ÌdÇRáöÙ¯ó~Oôêã2ØT ê¾.!ðZÕ×ñ»Z,n¾}úT2’fó˧óQ©Oóg¿~:‰]ˆlA9ÏŽ” —Ñ év»zD&†/ Íôn­¦.#S-‚X8?HŸÌJUþèʤoÊ\HT¨$‡––Ä*²äåjD½¯ ígÇ‚CÌJGïôæ(ÞÉIìE¶Ÿê _ëJæØ&5Ä ÌTŠÿZDT'#MìOb¬ñæFVŒ)FÈ”ëËê”CœûÞÉóÃW”Ðrt;ÞA§õUÒ4ˆWÔH«méìT3ÉÑ=Ó70É@uN8ˆ¦G;l ¤ksµÙZŠG ¢˜f Á÷5=•[lèÙɨ èˆk Ñ›ðH 3êòkÿ8W¥¡S#m!1WËÄSD º`uõó;¬àyÀ΂p%Ih1®ôì¨ñp]oMRcÌ…ÊÉ(ªØ­RÐPYň î0Çtš;Yx'oÈ•9„ 2Á'þ®ºáp®žKµåƒ>8ŸA¹Õr޹=XðïÂHa•Ù«¨Ù—‡†MB.Ö±3ç&ÃBËñä+Ç7±&‡°Ïv~ÜÝùI¶£QVIdÏš1dZ¨Í¬| sí9>Épíûzæ*Vj²Âl÷|ÒðÀ‘ý£€IÅ`ÛöV“âÑùSF¬`ýì“PBp¼p]%1yó¢¾ÊqˆYö\ø²úÈ9Ž IÆ•$jC5: ¼ÁÈÚ§D’’å@9~4Y’´bæW9Õ(.Ì‚…Üš)7‹YÖž·”sZ=Px-‰ë{V®ˆ[:t²¹äfQ¡U_Ûæt3ßìKeHm5ßDˆ–+œŒŽ¾£Ž+àRòº"ØÕ"¥­ø]Ìb Ø1”‡ vx0˜9~ƒ™¯ K ènIšŸÂ!ag­5¿sfÈiCºùa¥KÿÓú±…Ö"(Ùe¤dŽõ6’ÙfL6¦5>XÄ¡ÿâðõ€™Žµñmq%oNò,¿ê’M…yYaçE‘=aó~„nZq(‹äâ‘ÛŒë#hµkaVÏI„ž{±lsÌRé‚í S‹sÜ|Èu©¼åt¡ Ýn~bÄ!²ßvÁ¸;Ÿ¥«^<èhàà\Å5z¨¶» «Å§«A¶¨7`¡[–Ê.ûòÛÞU„¹ˆôÃfuT—úK8û¬­üŽò,MÎv­ÎÛ;š–Œ<)§—j”jÑ@×+’‘5Öƒ.'}g:ñU<,^ К;êµ§=ÏãäF— wNè¶T*Rÿtª­ï Ïk³ªÂ’óz•~ˆ.›;a¯^"õf!J«òVª-P:ÁÛ/1¤#Á-äîuоÆÚ@ds¾ž­q¨ §@Õk€Ø`:©½RC¥ÎB™Ï«Ë°Ó–×ù¿ýšÁsaéGð X𦾳?4áë;E.?èlïX#ƒÛ¡·=ŸfMa›¾g½³Šî$:Ó²«wœ§j^Ó¤r§m„( 8Wɇ³0•NáM1qÔØØÞÏïA§pªAÖ¤GRd‘/²µo¼¸W8ÛzÞ‡yfÈÒÜ^Í&>fºBä8ä¢_Ÿ´ã%Pà.–À-ÕK§.oìÕ½Ú—1{‘O•E½lýõI6«¨g^ WR’\תén²Œ©'ám¸ŠžÀ5½ÄÉÖnfª),ûÃ߯ßllü#ï­ç‚½cµ™+ÀwýóÙñÛ££Ã¶OvÏvw¶ßì“M£À9çW%NƒvSn¬:&\D€öp²x/ZsÒã,s+›Ï‚d¹¸ø†/éBòì7Ö³®íÝü³Ä¯f^ÐëÏgŽð[uWkÐ|¦ž(<üäøëfÇç[Ÿ?ëøü«ŽÏ¿öžWÖ-Jˆºò-è"ަN«¬ûŽ]F- ‹³[º8ˆCóÇ+ÒDú›°×¾ ¾ŸPóG¯vògÏ·~­ùjuúá=ŸÎ$#}+_ *§`óñÝUy…¸‰´cr§Ù AÌÀ˶¶~õëAÆÈY˜'ù\š#Í‚v ú @cø.¿R:NÚš”œ´ý¯àzýZ‡I,³+—ôyÇç¿êøü›ŽÏݵe6üšBÀX¼ªË)²XñÕßÂñlAß³yøÏW@éû5ü' é9óDE•é1õæV•—Ù~9‘š‚gç›P¤ž3¸Ø=Ž. `'N:½¡hRñ§›ƒÕ“¸Ùu06·dôÛ>‚M:Œ<“-ÁešÔݯqh-qã}—±k"¹Þíj¿ÓÝ|O¿ŸY÷¾Z#Ú×ÊDÁq6>ln\„?ßå­ýÈ>¢_Y?ž­êG¤+m|€«ÎLø÷<\L%’¥ó£ú†ë—êĪàØ[Àòt“šýH„{Æòu×]Gm³ë¬mv¶Í_Û|m­…þ÷Uøß×ktZÒ) ³ÒÓvOÏ¥4‚z‡7ÞâŒ&ñLzgѬ]”·˜òI}w|‘Ä@¼äá¸Ó¾Ýø0 GkãCA7®"ŸÑ[ÈC(0ôËä,C1žò‹TA…†VOýÖãd ÅÁD¬Ñ–‹¤IÖ*MDŒ¤í£À°Ò+Ñn›cTc2ZôË‹' üSP§M¢³üyæa}¥Ìbø·ÉÂ{&g³Öl{­ÎúÃÿ½Hë5ÀŒ@¹ãSjª±~³ùüA NP~?³†c-vª8›Ïñlåùk¾>A5%3,;Ûá èéh`+Ï÷øÅq³ºª‚ºa–\G3ÏB3õl‚ÚNÔNMè³­tBãêŠñ¼š?êsÍ«µØ9¯Ï¶x^Í´íÖO¥ø «0¯;‘UÑz)¹Ù‰™Šš³³õ› ½ž€]ß;ÈÙ÷Ù ú#›F5v(!Qhg,r±§XÍN'û½ËyšU5ü´j¶hõŸßæVæ=D®\uf/öwݾÎüç{œÆèå©`†˜µðAIjU'èÍÕÆ åjÆ+* 4 ¬Âkº:©E™¢O»2gКo‚/pÁ¤dÅ5¨D½“%&.;ç4A$(ÓÀPazú£W½–’’¿T ¿™§š¸»¡dÕº˜"ÝF«üc4oªn4B½ !j.À±Ñ» ‹&üøF!¶‚£-ø·ÙÜòF¤ “XßFnåØ-Ñ\süS´[˜íös‘ ]"ãRª‹xÂâC„ÇB®Ñ‰`k•2YsÁ÷ñ»…B•‡“ȳ ® 3%•›#Š¿¶3$¬>S™T”Š7Ãï¼°ãGÀØ©‰j2ãáM25ÃxI­½œn{åh –µ¯[d8º‚ž-b^júøôæoÛÓ»D_eÈY@ßë„uÈÕùó_þß -¶ÍÕÍ•Ã6¨BSâoŠBŽ:¬ ¹N@wÓí*ŒÓtµ@Í-äÕ‡ Eyð’fË”°(nƒ´sÖ“¥"ÒZŽæÁlwk"— §oTÓw$ªZÕA^ŽßƒüXðb^\bí30z´sÃ|\ ‰îD&ºº[±àuL³_qšÆúéhðß5ÐÈEÇ W§C( T´«Ra]Äã±0¼Ñ¸Þ\Z.›¾$NýÛâ.JxÁi «HZ‚Ëw9‘£èó°/¬åürzL ½AGù²ÂjD5Sö£Í€Õ2¶ ùš¡ý:ªæ£åõŤü¿]ª˜'XïóŒî¬Õ”)ìùҊǰÒáÚ~D'°¬#ߤvŽk„4ÜHþŽ6âÀú<´9:EZQ*»°y¶ý¢>t*–VÃsƒ=Étð‰¶øW”µá2ÏÔS|þóáÑËÓóŒèK˜òiŠüV¥¨åð õÆ ‚½œ²ã¢õ˜û3ûvU %‰âXUG§2ó`,B:TÈ™!†|c %KËq¬S’#ƒ«KF:i€®èVä«ËbÎdH¬kmù¡-É!¾!QÇ4(V–'jSÕ6Ÿcj,gyQTšr½*¢8ª‘ª)ÕN«° »&Ø< èü=¨û‹8—ìâ@\e Á¶éÒœÁX¸™ "·„µ÷ˆ= N«zYÁ<v“ÃÊkÍN4ÞΩ²Ö1ú3¾üÏÊ RbèÃODóÛ–«W¾ÊùÇB(˜lµûWâ fó ¼qäÓ6Íâæî_uÉEo}­ÿŃ»@y:‹Ú£½¸…‡õ Šõ6ûŸ6ûð 2Š?r|©¤$þ٦ǩ[´ÜçDăéÕ¶àÍÜ7ñ9ÿøcÞ&öêàOZú€Ÿ–^´¬wó÷-ý£ÞŸUg]FÕ1h]©€yIh”È’z釽´øU ùƒü¸¡ÇÍ·m€¶Ÿ¬ÜŸÚ‹– ÐüÁŠ ð‘ï/Çg|t;{ü¤£úãÔþz@_[½^?m¾ñ5îhˆ]ˆ…%qC|¨ÿòÕ¶éïßÙ;‘É‹e|Ìy3x@¹ÚQ÷nûAçÖšV^»FóÍÜþ“;øÓ{ÑØ?m?èÜÁóþ ˜8í ’a füòäÛæ›€@jxrÞ#ÊJÚ~Bž¶öò2€Ûß]äý'¯·~ PíÁï[ÿ B…gub´}ß1jˆ ‚RI Ò$oÿ=™½Gøb,ýˆ¾íîÿ,çŸ=êÅ,ç¯æï»&Ÿ¿V®zê}P ƒÆÛõ›S/¹Š.Éãúx¹5E¯vŸ·x(9ôÚ"1Wø&þö!“ïƒ}¶œ*œ²ëÙü®Ñ¥æO:$ý†€ˆü»õ¡yoè§-o|³¤Âò{ôã_‹ÕäψB´ñvÿe‹Ï?çö i>úõ-r?ýr…Äÿ hˆüø«Naï_HýxÀk1Ùb¨ÙÇÞó† †œR õ ò®˜Bí¡«¥Séi~Ý©ò0\êÁW}ÒtsÛ·ý`ÅÖÿ´÷·¬úuçÎÿ¸7ãuÞ9l÷í½c~Ô-ßhþ bçg-Þæ{~úˆnEÀÁ¨Ÿ`¬þᆄëEÇ"éw÷¬Ð£æ ðr-gÕ>îVèm7A2\—ˆ¼ðy‡üð½û¬%f–~÷QÁ³ÅƒTyS5½˜µv¾h{?2IåU#x[BeÁÆÙw‰| gìlv¡íWýðLøûGøý»æÀþë³Ëe1wö)ùݪâ®é9>ñØ—7‹«3 k7:å¾kïˆ]$³Ò”)Ãs9?÷ ^\NfçgDºÑè…û®½ðaìÐó˜×%܃A¸µ¿[¿^ñzýÍ£{pU7óo_=júá±GÍ>i(í}pßÝ׉ǽòƒSHzž¯SK:»ªKT§Ã¸¢>*P•¾ÿ]ü˜ž=¾C¥!µö'úÅýÝá5¤Nq]h¡ñ»ÆŸúæÔÑiy ËF÷øóîNñá‘;«c/û/»ßÍ™.ÙÍŒGjT¾h[1Mj*#Ö·zÿ0kq†…’ê0›u׈¿è¶¯º4e(ÃcæÀn®ö®$ß7;rx^Ï Ê÷·˜Úq =²+äÑ ÇaZ\–˜3ÖÝ­Æo»»hI²ˆ•裵¸¹±þl#ŸM1uo y…ômA_ EtQ-–ÁˆíRÜš?éØZ¹þ’Ò>J›‹ÞV?°Wõc»V—Õ?}gÜýøÓœU¤ÏðYßß)~ð{h„pçwfiö2ýE·…J%‚õ!øS:ãù†?ªShÉÜÓ-ŽBuv ¿ÿŒ}kŒÑW£qBëÏõV°þV®’ýà‘‹@÷‡ï[µBþ'_ ì)«ç*úMË‚Aþœé>ɬ}doVMTò«û{Ô˜²Çuªª[<µ-ßwìe©£Õ²§'{ðEa—¬êÇeÙê—£½¤ öîOÚ7°ÊhÉŸÑxGâu¬¥îG}żQ¾ÈÕCÚî¥äôA§ñŠMþ¬-ÂÀH˜âÊ3Œ}à‚iôÿÃ@™O)a-»?µí¿ÿ<à.^#ÿ“þÍø³ÍO}Çêüϯ76¿Jó?Ÿ?þì¿ó?ÿÖO~$öÚÎáÁ«½òͼ·µ•¿*ÏçKÈÊÞÚØúº—÷Œ¤—­ÿ˜l¿ÞÍü6É×,­fÆiï–g D|úø‡oŽ÷޳õy­×7Ùúô"[‘G æÿµ¶vQõáOðWÈ÷ÿæ|¡?Ás½Üÿ _Nªóú›?Éß6Ÿë_Ÿmé_×0áO½ÖF“â²þ“ýÕ~}QeëðÿÂ8^îR½`Èý–¡œ^¼ðÃ8½xóÁdþ1"óÂg¿I˜$äg’…Ê®ÔÐÔ_–Wò·fágž9m¯£ú1òxFýF©^R‚Å©<"*‹d¾¶ÄPj!ŒR.ãõb<-ei1±—+¢äË©=©…Z2Ç=L¾½%@½zQØ©ªó`þÜÓJ—áW€wÓɨ(VAvOXìg(ËG `YÂôµV[ÒI”ŒÕB“a ·Õš#—æ”àþéÅÞÓe=‡µžM¹nÐ] „8Ü¿{Š(úEFÕPè­¾#µtxn(n÷îñ4F£%Y•ð8:¢ •Ng+;ÍG4é°$úYxhåH§'k{žwÿžÖ)åHy(è4k;V=œ)äê›OƬ÷‹µ òoZ}ÐìÜæóJï˜Ñ£»{øÞôïÙÖ?¥-4#qÿð½è‰ßÏØG*Æ.iÁ–}v;/°¦}[g¥yÇúgíý§ ä3õ…~&d”Á*e׈.¬¸“ZÖTw z±‡ý¼áêKHÃVçç“ø«¦ÙŠÙ÷×ß¿` «£u|Ù½ãkì.¾8zÇ»»ùöþña¯q}÷Ÿ `´òKæ•‘_P?¦’ –ßÀ?¥üáPëp—Þ]þ Á¼(Þ…anäey^…Kð‡ƒ·O÷«éòïdeNW¼/#ÚJ”æV‹yd,bÕ\ŒìE0,e°l9d™XŒòì©ÌAM!=EmÇfsfI"“õƒÌH£;,ͦÿÙ˜™‰ ±ÖÒ\õá!#Ûò“ÌÍæÛïy+ ›Â¨Æ¤ëéË[ÇÌçÚ#“…ºÍRµIò¶Ità¸û›ÏÿùÝ¿Çj5“õñݶõ/ì~»Qkíã»O7Hç™ügo(1¼ØòBÓKm/a³¹~dç~÷u—®ÌÖÐÜø¹ÙÜÚÞƒmÉth÷¬%N>ÊØG˜Î=àŽEm6'Û˜g§(v"¬˜’ûw{&†v¬#;|Ƕµ|óq¶5^84±d^Ksje˽ºžŒÙÈØÜÎŒ÷U¾¼ÇÈÎ2GiÌYø“>‘~ŸªÛŸ®ÿ¯°ÿÖŸ}zóøgµý·µù|k#µÿ¾þjë¿ãÿŠ?ÿËŸ="ðGŸ®å)©fE™'Õ`{'G‡/ßîDa3Ö)IgC €Ö™/rׄ:Ñà[®ÂЋ/ ¬ƒòk UbõuGJj+²žwåhúk¶¬µªk*7²h!½|¢!û?LÇîT¬£MŒ÷R§9û·/BËÙ´,æ øÞÎòq9*ÆR’‘›I}‰Ü±à#(°Q]œ9L­Ù Œ! ‚z^ÐI¨]ÞW–&ý <‹u$°JZ˜ ¬‘9d$°5ÌcgA°ç³IU_é¨ ²_æ½z±ßõ‹ëy̾ƒé–RɈ’Üb¹˜-6Bé-0ßqNuc¥`g°N+.RŠÃCœ(4·É•!õ+í …6ŒÍ°€Ø*\fÆ{Q`s ¹LË1MÆl2Ö« …Üf3ªrÙv+iäÇëÙú›l›*áÈB¯!wíŠíÖ/Ní 1À†û7ÌʸÀÞÜ-®fSe֥ƭmu“ïô!œbH ŽËÝÚö䙎Š/à©ö2&;£45èÙúÁî ¾ýp Žˆåu‘ñÖ®(vi³á…¢Àóàu`äóu5¥\Ž©2¢Î(,LC¾»ózû¹óþïBŸéïÍkFÒQœ`X z¶œxµ³.å+uaƒÈU8.±Ç"3…Aq]SÑ•nH ¥l:Þçf‚"t…Ù^j‰¤vs…9ÔNUž•µÃ¾åª4ÌË”±Ú{ÎÏÉa‡’A0`fJÐ oìcõõ"þޤœ¾¯æ³) .®R]Ï2ž‹ZÆëª„ i6¼„¦S©ˆuBþ:Ÿ-®2~«€åryÂÙ*Ç|Nü†½ ‡K=ñ$“þÙ¬7`+BgLųÿœM‚2œÿXÎG- O¼s5¯Âþ*pÃ×PŸÄ£hVÂa¤u`47®—ÆÛÅW á IN}š?X8Ú)ªxNÅd¹Ð´ÔÜf±îp *+NXÙKŠÃÏn€Qä½üˆ„AtŒÂa²‹Ræú¬TcL?ˆ´ À®À1Wf 2-Η¼Ðâ[åä„RØh¶áePÔ+ á.5¶vé$ˆ¤e]ÊiWõ*Q¹hxHÐñ®fíXóµÙ ´vr´œ8}ÜëÇ$W3Ì*\÷àÐæ6;ûf˜ŸAqÏ0Ëg϶â¥Ïû¾œˆÄë4-ð›>îÜÔÁ}†%²¬ÈÎáËݳ·{'g?ï½ •;ûd{:‡Þ‡ª4ÁZàÒöm5#à)Eƒ²Ø4<.v’¥ÆîÝ|L.öƒ´YÔõòZ‹Žpµa,Ý »Ï$œ‰ñ¸¢l fQM44eô5šV ª0eÅKà Svœ¾!5QTj&A#³¤ÖæÊ°Pè˜Te£ú;T×…µžÖ×}†—T1~4,`Û\Ï^¡68~(p%Þ Ùúi/ÿñh÷•ξüc¼§½Œ#¨o2ÇgöØŽ]xï¶Üöz½ãì°QMn^W›±šÚe£‚ÔÕ_ž^é.Ô¼kü†–Ù¨ö*€¨­LöÊÎÜf3ô³ÆÄGºŒÞ%*k©öîP«ðâA"­`Lµmõ)ÈA„´õ‰ûé†î àq©AiÕJïd"Œ&UIeéEnñºùõ1¼É@§š}§œ¼çe W^ÐRÎÕãÝì îhŽò—ÑÉ%v„óˆ» ™‚³%\@ÉŠòœü$<•ÙT6Š^ E•}´»ýòõ.De{¿Á¯_ ý¢/;$zøàð`mûíÉáÉááþñÚ‹·{û/[Zjù•®CÅä< SÖ„‡és~T7hÜuT! ‘§ËÕá›Ïmß„O°òÐ, ›!¬*èØ®Æ1¸ ÂÞ¾ð÷©fÎåÀiù¯«ñxBB:»Ænµ›l *ÝZ¤¦ù¥}±½óÓñþöñg;2EVF70‘È‘³L* ñ„ÁñÌ pC³’€i‚Mñ§ùKš yºå4Pl¯Â»­˜¢ˆÃ= '‚¼ŠS®Z[Üé-(ÂLFvEJYáv1 †>HÚ,X'—%—‘ÌH—Æ’Ow&>B ŠU ^ÏJ¨Ku©m6/oÂác‹Nï‹9“™_Ϧr!®óÀAשÀ]„†[ø`?â…ï·b”™éž§$â¶K/nªX÷¦Nhì4m„K´F¯tl ôJœ˜0ç™ì&DªÁ¬hï×°`M)±3—zxðk§½=Þ=Ê_î¼}½{p‚ºQÏA‡±ñùŠ2b×7óŠd¹)ÌVíº¦I¥’ÇЫ^Ø,½œOCrKÒ ¯e6Ô}/Ñ˪Ÿð0Úül†ÏÆÀ¯‡ˆNð)*© ÝL°è:PâIsäÊ¢Bx>¦!«‘`Þ±Ò,N%øŒ/¤ßVS6<’eÄLÁ~ik„?Oý†`nZI?™K4[ÃvPq+-A=h˜÷] ‰»˜Azphl`Nœ ‰Î\"ZtuCœABØ)ø §ÙAº¹µ÷äi&A¢ÅaÙÏ\б4GìÔÅ ÕÛo½.Ž£ò#û.K°‰ô§†J-iC1ZÑ줙pÝ›ÆæFIJ¯í@4J"±)bkY~#„†#•FX1H]ÐgÑ%¢ŠG»*ê‚öå'7Þ¸ª\™<Œ„ôOñ€âcÑhaKûiÔÓÓux2Ò'Å œiì—j‘»Æ¢áß[%L¡:^- ÛZïKžÒK¿åÕ+\vò¸Ô×êXô¸ø––ÄÃKâw‡{Ö -ïí¶¸- D=uìßk…þ†?-A>}]Û­Sí¯ôª®—¥=…È);ž\Ë{lw¢¨wTKZ¡WíËŒó¥ûRD–<¨d–]~tžFþƒµ¤djµ¤T#xÈv¹ÏÛYžç:O­CKŠ;é¾E]Jt5ÂÜ=Gng-œÀ¶ÐÞŽN³ùÊYÔcÙ  hIÝÚ)ìœ:(±õz’1tÝû¦sdyî<© ÅÂå2›YþsX ÇÁ1TYÏ,j†ò•®‡2½«ê[Ûj[ÈÿŽNtMØlœ"tBOÂôQ1f4Ö(e“:ÿ¡Zü¸<çŸ#õ¨4¬îdáÑ hÕà ªó•Ë–‡M‹lC°<ß¶85¯‹›úÛ§O/ƒYž¯‡ô›~CϚɻ8ô*–Ÿ’Reå½û£ÖöÞì®íý¿#kþë“øÏ*ü×Ö³ç_olüªÁÿðßõ¿ÿ5Ö>çJ‹¼*Wìô7׉ý8w1 «MŒ.´%2gK´«Ádidt”ãj1›cÔIÜùˆ„ÁØJ†ÚÖx†.y’júr ­ÏØÛPCVB¤²°-á®›ÝÔ‹êû‰kCüîqj‹„ÈÀÒ&4À™Zïg±eáJPKŒ¦û"Ú€iŒpeÚ…Ë—h ÕÇ?çú2€µÿ,N£?û<êWÄiæ‹ñi%ÉûxXa–E Â¸ÁOjîUŽÞZXwoÇ=_¨èf˜ÌÐz׎6ÌÛІ„”öxCÕÂe† ¸‡‘ã°[°‡ù=ØCiîQÄ<† 2^>Âã‰ø8bÁ}ÜG£Ñý†g\šóðÄOÀ'JsÓ`’? ¦¨³ý‘XEëÌdk þ&õãa‹ÚœG/æD/Ðß§m Œ‘2Ș?Ȩÿvê!¿Á½`ó{㣫Qz* éWúñˆH!Ñ1(Í162ÿDl¤. A$ukáöã7˜ä½8Ii®.™?.©ûð>Üd~?nÒß]ÅOæ«ñ“&Σ̻`”zè MiަQé·Ÿ^¨QdåC¡•:AX怰$ˆ%¬!,c”%Á, òkàYMà–ašmžóG£-¥¹U Ë|èRÕ/ºItKµ¡/m>¿w©²¨ ~™üRSÖ?S^ë°‘ÅÔ%ãÒ§‚2µw†ÍÌóGƒ31èmì8æ,;þNp™(Å?™i*Õ"šr3à@M¼ôÖô0MÄi6z®ÎfTE¢øÃCÁ˜¾9þE< Ÿ„Â$0‰‘¦}‚5@¦aæ÷¡/õ’y3Ï “Dœ×:K0+™>|tüR›CSâá@ÌÜ1sBWæäšÆ?-(Éü~x¤퟈‘ôAä‰ÔNôêÍãð’*'"ØdÞ›$Uî:0š?0Ç)¸Ñ6šlT½¼……0†š*ÞË‹nì"§ë!ÿh ©êÇ ž44žö“® !KÙMmØÒ\»• K; ¥©†Ù€a#k‚M5Ôó ìÃxRw£1²Øš¨R…”æ‚”ê`›ØÒ,k‚Jc?‚J?U–Z/un\_Ùˆ[y$ÐÔyX oJQQm—ÞaN%®áëœ5Ç[9Í#Èi„7EU-Bšªƒ>öÄâÊ<nj`þ‰4ׂ7Í…7ůìP=ßö4WÔÇ}¨Ó¸¹ü4qjæÑŸ‚êùéHTßÚc©þÙ{p©þ§ Ošx,J5~øãÀª¾Ç¬úVî…®Ú¯:@«¾µOÅ®ú¶ aõ<’Õ·ò‘€Ö´‘Ï gå?í¨Öè½·F*ÆÕ7ö1P×èùÇ"^£‡|õÜ‹m€v’>›Ü”‚%»oé|'u? +ô~DZ²"6@…} Vï Å&šô'#c¹¹ÈêPŽ’˜¬àd(›'Îø‹`fqQ6 ñ)Ý_à%Ïs¼P°eÐæ ¡åæƒ}<Í¡ÌÝcñ¯ŸLè§ ÐeŸü¦è· ªZpE¿¹&>ú[ø7!ìüRå®~“œ 1g„NÌ N‚+.0màÖ ë°ÁŽšTas>§D¦!vr¡Ê•jÊmÂJ!´h.A¤…†HRhã=œÁÐAnÌТ‘icÛå ØB¿ßÅñ¼Ø>ÞÛÉ_½=؉=çâm Só$ö¼‘ïàøÍÉ‘¹¬ø³½ÿÜåR—Žˆ{Nð³­³…q¡‚ëâ zøàž¦©Hö0‘ëÊWS 6Ì“ÿmðö=9Öy¬…Ù÷ƒÿºßÓWdï¢SêIúÉ€õe߯ñ¾Ôèã4¬—Íþ=ø}T ’g¸o¯š™§#>¢ 0ýî¥ý®ÝB³Ÿß¸¹âþ#<Ulî„ælØßÓK_éÈ®Wl|QüŸ1:÷;<6€’ªoŠQ|lnktŸµŸ·µÜihï´ÐÛoÿ°·¿·}ôÇüõöÉÎ-â ÞˆàEš¿»÷mÍ÷ hÏáÀ}®¶®Êâæb‘Uj¶})V¼@—Úš¡°˜ÍÏp>¢£OšM¡·œÒ¨q«‚ó÷#Vý‡ÝƒÝ£í}ˆ­žìþá¤ó’hÈœÖEŒÚdã}Òr3¯ÞƒÀƒ$‚Ùhз ù7ƒaò”=;zЧŸÙÏù/”ržNÔãzT²Æyˆ”u0mÓ•-5—dçðõ›½ýÝ{—¤qS¶~Ü\’ÇÞc}OÛ$>ú6ÛŒ.öû[²«<Îçõü¾gÛ$ûûb²,;ÕËJñº¤à=ß„×<¡ç»_Ä-bï3¾n>f(·݆x—“J«gÏ¿EBÍòºoáãÞ÷¾˜Of³wçåU5· ªþ¤ l¨JðùwÚM0ö§uh¿^pØäóofnj^Ž–è =C¨Á#^íõŸàSgbÓ T‹nÈjˆÅ¤’:î’dœ|Ì`©:O0¯Úå*©5÷IÕDEkùðÓ%êCÞÑ&MïWŽa‹$}ŒŠ»„œô«Ÿnì ~Êí ^QþüƒÊO:om`åvPÿ¢Z,ƒ’ðy»ÙløŸÑãúñÝv²¯­÷¦£{1ÙR2«ã{v~Ü>‚¡~La¼Ÿ8GdvERïQ³Zêeðȶ(O}Dý37íÃçßtS(Ÿíü‰x´ò°E0ºžÀæŒʧ³ó;€›®´:š æ#<6Œ÷ÚùB> ÚAû¤4º‚Ñû‡vFç†kïLëæjé•“ºÖ-”¸-­Þ30è>ç¼ò[o5·Ü›Ï8µ®?Þ¶Ž‘ÒøyfŠÞK->øµŸcJñbè/Z gõ¨˜v9¼î*|ð䢚׋ø£IQwhÖì;¹,qÖÛ‰ûN ÄlZŽÍøü¾uGÃf}ÜNà'„¦_¬”Ço_Ÿì¼¤gWoñæÿÿ¼¿Òwt^ÞLŠ&õ·wv÷–'ª»­´á'ôhç ün¯M‘·)ÿ¥R#§6&§uAÿG8™ÛO ŽÜÙr €º3ò¦=Äq½š ƒý8ù@¬%pž-hÄI`…¿ Æ:~ñqþ7{aQ×ÕåôÁZ’Û)A7=‡1È_Î,¤oÚ+~‘¨¯­ýp&—›ýk‡LÙ=ÚÛÞßûÏín]Ì9¥¶ôCØŒÑ&ÇíYÇ»„‚–}F¿H=Sçw‹è¹GEZ{GiÐ-'èá}ÔÞ=ÑfÇgiO½ôp?û„mecÀåŒçè#*K¿mºï‹É<,x;.ÉqÐ.ªZ<»-ŸÞZ¼›÷6d‚FŠÝ Cj(8݇ïàhØM 0™19ÚïÊÈ ûÈ¥µçä¬ÿ(OnD—Þu¨¼¿½* ‹™WZ[º  r5 ‘™ÓÄXê“цî÷u¬öäq†l<°t<Íí~øâøp÷dwµ ö™9,ÿ)ƶ5ÏÁ¥ëb64¨8õÉ5&¬£kïŸþ:AºåÄBÚ `B•-'‚³<ÛÐ =ó’8srŸJs{ƒs …yN|Û$B¯—ÖEH ìAb–æÀþР뎘vÒîë|GHnÊòœÎª4#Å4GŒ#8ÈÕ?(ƒp…œ"“ÛâÞD -ç³dvÿð&\¸˜9°Ÿ¿Ù>9Ù=:ñïwŽÛ/`Ýà€.nÆÄ¢?Gìíaïi½%ÏŽÞß|‹‚oh*>C—“ÙùeNÝÛHkØ ÅxÛêwp¦ÄlþQ¯Ñ§»ßd+lø3`£Ú"]Þ±>iMƒ$£hÚ×ß4äˆO®g2{ÄËq~*709ȶfÒ{#Û°ÜjýÐçÿ0—.”"÷YdŒi%¨Yˆ|›àáçjŒBë©*KLŸdQÌo@:1cuÞƒ T÷¤9L4æ²àçE]ø#"+ò"ÊQÅ3·®<ŽKC+š)ºß…ØûfíÅÞ êÄÿ»}ðØÂßóý½GÛG{»Z˜Y»ˆ‡ZPæ„¡€žaQâ <(âY2KÙ–†d#±YXö—ÒÏ\•ŸœcVÐ0^ëWš¾+°H˜ Mƒdµ%Ôb(×€Yr¢t „@jUKä:$I!Ñ€(—\ÝK¦ý`Î.ÈS[N,=§˜–³ec;œæ€¼ý°6©Þ•¹R]]eÅLœï>ÄÁ­}£ƒÕ€·‡ªÔóHÝC¹HwVûe4[+?TÂ.‰@åè8„3Î 4ßÅìCfé°d»2G`ÂÑ!Y…A›;HïþîÙVв]q ¨³>ËŽhšÐ·[ÂwÇI«o"á îþùl«!CƒJ'ûr;Ù?Ã#®‹a+ Hä4o܉@Tþ¨ÞcŒX –/n S<ØzA¥Bò¥:"jPž†¨Ï”¼¸Ä²ÏôŠ1ÀÔÿÜ›ÏÏ_ý tP÷,ä`DÄXͼÀNd*ÿ² :ã攆‚Ï ù¦™ÊÄC˜´F´š8Vc6øþަÃmfÎÝ(Æ1Û:’HwÈÁùÓü£³¡7A?.¡'@¼tÿLSÖÝŽÙ'áòe@B¸ˆÓ;=7 %’ÓsBù§Ía–~EkÚãÚˆC0;Ц“"¢=fÚ…ÒÞMŽ.ª›¶@ú¼¦ÌŒ.Ïu1šÏ„á‡vÈípFp¹=b’T./<ãM.¯ˆ‘¬?àûM÷þº^ïü:G ö‘ËÅ_Hsíôe°ê¤Ø.Êö%[ã¹5“/ùþ/¡!®w½… eVˆU HíôàmÇéëÈ]Ç'¹Z0 °¬åJóöl+~N¦Šr|i|•Á®œÍá¢[ÌîÉsDœj.ÝoML(‡:ØÛ8áË)ʦˆž‹ŽÑù¡v/’4Ó°Ñ2p±^]FȬ#Z’Ñê´ßÑX$?›fZ¨·0»}1V¥l²ßîÙc y,§ï¦³Ûi®Ô;x¥´wRMDÚTý·»XÂé²cäT +æÌòó˜(o ¨jøä.lÜu»íö.¶{[&ßf¿Áª0gB…Ù¼¶Í~¾R’¿œ8!0Ð#ÒÜ»SA\¸_»cäÔV$vr´ Ù0s„é6Ê4Ä|3(â¼€9êN²vT®øj¬¨$æmAiÀ"YPÂg.EÈÔ.D°PÔFWƒªTS7¡qÒ@æ<‡âÏ”÷áиܧAû!á?Í&b6¤=¬ƒÈëPq<Ÿ½/}yQÜH$6\úÏ»'-8Îì ×T³¬ètõº·ˆî‘î˜H@¦Ðy$EÅ©êä3JÐ/÷ûÝ£ßïíþœ¦M!3fãy>Æðˆ‘„§unØžÍk‡Èeq;šä¹xk,[’³ùÜXSëð Ë$Ús-4ˆØËsš…;áÀGFã¼Áæ×)œ7[¼ÊÅ„3õ83SÔ|a0·¯ÕÅù¾Ô—ÖMÛGÁ±q˜¿`b¬pÖBU)µóUâ~Ú‰kº%|6¼2ˆ.wJö°ÍEЏzñB Â@F¤Ÿð@œ5h¢Œyò$klrsÎÚÓÉ<{½ý»Ã#œRþ÷ÞÁáÑsEÁ|¸1óQ³i¯ru¼:×Í¢b'ºŒËP‚^2“°šÓFŠç¤isœ´ß–¨‰\7MØéÈ‹¶óœòÙÓé jJ $¯XT ^ˆ;J‰Ó¯‘æüU㘉«q8hv}$Û˜¦¹©2ôŽÓ»Ub_0}‡öÕG–j4+˜‚pU³¢+‰óùcÖ‘u hþj(áâ¬ñŠêºÄ bëî¤K”‘3[$m‡6càdˆÞ2¶± Ž †yË—è˧¯Ræ¦&fG6ìˆ)_¡K0j¸Ñ¿¨åà-k]»ˆg~©{¶¦¯¢ rñU¡üo:“êçXNƒà®c²?x+ 8iÅ‹‚=ˆ°ô¢0r¸‹|EóQ\Cí™p€Øq{¸X°x·S9­#û®¢)hzÊyHާðšØaœOLF¢:Q´.@ß“ºÿùûm‰r¶¡ÓŒZÂóÀ)ظKõ25§ݪCf7@Y.CqÌçL«i:Žõˆe.©…c»ò4èî‘ Õ¨+«9­ ŒyEraŠC½$?Ç^€t­ýçtëÖ§­ã®t¾w ׫˜#E5Hþ9!û\żª­Ï h¼B^Þ n@ÖReqrtÂõßÂVs×ßðÁ3fx²ãªÚ}úÕª4H˪3Ç‚žŽé,’_j¶º}Û­JÉ{úÐÿºZqÚ„›“Bݘ‰Í† ˆ#ŒDµÌ(ù YâÄ‹«e¼QÈ wh*bÈÀ‚Þ4£í) ¨EW:ÁŠ:¤þý¿º·5E0¯úMzÐï}o,_õËÿ=HÀ Iîƒ7Ú@ÞÖÐT4Eœ–ã!mÊ kéµÄï)ØIr0÷.¤J‹Ð06ï×Jy ¹DÞÁÛý}U_‡q|R #áâ¸.Ǧ»¢ïP}(ã;ÉP‡è°¨¢"ø ×(2õhÁ"Ä“€Ú¥NAJЛ;U%X,òaáÚ2ü =è½K*WaÙ2>NÖg#éápÇ+}ŠoŒ ÁºxïäT³ð1áv_S9©KôÙÁ:™c5Ü <ÒÜu ‚¢à°59˸yàaXG}Èõ«ÆCŒâ:\M-`½m_j`Æ”çWôND.·¡[¤‹E ø C€Ñ~±¹·5R™?ÑC%N‹ Ÿ’ç·Å„!ãTl»`&ÍIá§BH\û(ègVû BY©µ•§UºEù dœ±¿{ðÃÉÇe8|õêx÷$æ;3#*"¼9ï‚QˆŽG'6ˆ 8ÂÀšÔó\›ä=–RÊ\FõEjvØ3-'Â`Èw7¥Ü ã5%ãKƒ¡¢Ä‡†ÂÕµ¨9ÌeLûz$ :¸^h´ƒ¬T-8US1<˜Ã9ûxÃå Š4÷ÿ8þŒÁÆ€ táP¾§·bd ãéàM´Y’øe|ÙŠ]†‹>Eœw¡üÉGÄÞÕ‹è†&I&Í]…f`·0Á8«ø{¯‹Õõòz=?˜-„}âÌFV%h.Ãüí—/‚Ñðê–çºÆ9àÏwÂç»ûy x9è}ñÍ×á‹ýcš?V ¨b%ÊzÍýe Z1‚z&H±ÝO zcv½Š«=C %ad.¹ РűpÇÁ~s³Ó”h¡aèga Å™ÖKSÌZç9á©—`h=Ò:ë¤L›‚æ…Â59R¤u âBF˜«m„kkÓ…P”¯?1Sw,egÏùLÀ(á~ý%êˆÎQI_‹-òr!õ!bìKü¬j] uij¢˜öÍ©éÕôc Z­§•î?zWti!«u¯sH;Þ‡ê´ÐèKRÚ%• M¹4J i‡Ž`:IQh—_¦š3ÜZí0wë%-ÃyaX%>Ž‘‡B°ˆ×‹=ED÷;‹èî%JfKqŽF2ÌÚ«S o©Ô`÷¥èP·ÝÀÒÜ;ºö½4m÷çãƒîB¨«‡Rì(Ü?Ks•u_—]—VþºS¸ é™”E<¸ ¨@“>™êa®È_si”ÿª­‹H¡Zà™äÞ=W”c™V…¤üÀXï#(u¾´Ø:î_!Á2Uí+­„ƒú^¯¼¼DÀ¶›¸éGYVp0PBq K˜{¼Š¨BG`â…€‘,ù§Ó¦(oRy¯©ö“‚ÏQoÇe†7 #×á‚NØ;¨{s[àþ¦Kæ¶¢ÂT,ž±Q­çî _ùl1›  ¡µ}·ã•^c²ŽqÏBS‘ÉÃЫóË\—Œf¼ð^?¸V±R/N2Iz»B3 š·Ž/êŽ[è`;@œ€ ±‹3Œ‚Ö‹ƒwZŒ0”T1 Æhµ!E¨`Ö‚ ³0,ˆÅðPº £ÁˆíI"`DObYHZCžAÁDS°À´gés¾ƒ°!Œ˜íî²oÁÊ ‘iÇÒJ§q•9Ω’ý/¨Ý\iXÔ|‘PÔJkvú󦊧ˆÔˆ‡Qu+'…±É^~1).Ùg) UE° Ì'¸ôZ\îæÏ(‡ÿ/þô¬ªÏ°[ŸY¯n?yCþP9­?ÔfÃ'GowãýãŸ#Û÷$§.1F–Q"&æyËÓOÇ ÿZeý›r~UÜÔ"ÜY–®n'aÌ•1»À²õåt¶¼¼²¼x-6gGn^’_otŽ6øÈÙn58Ñ)4õÎI"¼„-nL`æ´'x‡8X ˆô„Àõ»Â¦ÏŒ+oš'õS㈪1z8z;SÇ Òõ±w³s—òˆp0³"§@Å“© ÞK×ÝÒG4Ïíp&2Y…1ê>G<ø>ÐÅ>Šùl¼ñTËzâàyÕ4kQlj>#’ ]i Ê%Ë@È4ü0JÁÂFŠ=d¹á¡HJo$‡,˜ï?Ìg˺†4b ÓáÚš…kòŠYá;VBB‘ª`)kÈÓ2s ØküX¢Ít¿Mf”§µ…¸:}<$ïrçØR5U$¢TóCˆfMЧ»ÀÆVz¾§I`jr¿Ùãb?°[Ø.È ¡"µH¹à"áÞi W{ƒ†&%thÑÄ ޻XÑ2)óN8ÅåYÊÔ@Zû”*«Ä Pí\Û€YœÞ‰ˆ 3ÐtdÓÃW$o|/õPWœ£…@ñž%~-<˜4?¯ÑAÙr°Z¼8Ëý˜«f‚E‹Aù°öd4±² ¨ÜIàt1ÐHI¯½ûVòmØ?1mû¶ sÁƱùŒRbðŠíŰÒÀKûO^oý4¿ú:…Nh6̈¤ú“È8 f’«¼¢¥«0½³ëŽa§âƒl8G±( ‡Œ:n"Ø:_˜î®ÃqƉŸÃܧUÖ›ÕçÄ#€gó1ã29˜3{ÿ4ÔãjO³#Êg±O4Ms@õ¯j¬vU°1…([bÂB`Cê8Gk|Ô‰ü &$a/¼+ÒöüÄ4bBY£¡œÓmÓ¨ªÈW ES9 Ð ¶$Ì18ØØÔ‘Kàj6×±ˆà@ÿz’€IÉ V;Ѽ¯9l¡ãÏèªÐ¤åXØÙU3cRÈC>üŽC©Ç÷©%!Rt…{J(Ú°Êãüñ@¿ÈÃô]¡å\X¤že4‚ÿuò -ém|#du]Tå„}hCŽÇp•æÐÉÅ;Róƒ–aÏÞ‘ …]”Ñ6!Cß\²¿Ï¹6Áv’5„Ön0ùAä9ÜŠß&8¿ÿ¯Õ‚Áµˆ®Kw“ÝHKz÷˜y&hœg/‰q§Ô•xmcü.y$÷CLGh£H?j5¢’¨?fýå ‚‹H)¢wCÃ×4f7wá.öHJ2„´j–"%Ñ;c7Î0o{ò’z/Ô‘X§ lhÎwKafL8‰’X n=ï‹kÃ+ Ë _^,' ¬8w‡µ¦³ø”¢¾–œ†a޶oN—žljA&¥zœ—ëÚeÉ¢\9uÆ|ô+*D;©À•Žhj¤µ(nî6â»[™n¦ rÕAšë`½¯(’çÑ.ÑH§“@0ë 7â»jʺ3}¬B]¯Ž$ Ç+¤£§X$gPì= Èd]“×–ÓÛ 2Ä×’Þ„W!6X»ÅÐ~7åæ CKÑE S¹§„N7 $aë÷cEßÇ”Bí>Á:7Õö¬ŸÓD·÷÷3”¦â–ö.«é€9©B FN FGy»Ó.ÖÛÔ4òô+¯c¥y¶b4€Ç÷kMÖ:eHù+NÏ1EϽ/ )bfbEò^LU|ùÀˆÜÄ€„5Ç ˜i”þÚø9†[WE¦«¡;GCDc!Ô%)Žù‹ºa1Ø/N<.«Œ§^zèñ”""X’¯˜šR-ãGÙéHy¼ƒ`Žñã7 Xxýé m Çí2ð³×H”…迵wgÍ5*Õ=û£Téf¢×/U|z¥¾Â9™F@j|ïô`3Ø6• ÎN :›4I[¼§û¬¬ Y‚ õžDáïÅæ›J¹ÿ®,—¶´½bÒI½Ô$ Â[#$ÝŽ»‡ƒ×e Òû\ãcuŽ´(NÙ0§„ TIºæîÑÑáÑÙ‹í—/·O¶1`ǯ ƒÃù¶·þ)õóPûfÄ»b ¨‹/ŽÎ¶þH(d0~X_$¢ÐSÑŠDaȱÖÞìçNkk–ŠD´4'B¶ &H^Uöçf7Ž…”s€Ço28 ‡ÅÇÕqç×46Sy[Ó÷þee m$Rgñeòäá¶¥+²ÁÌ ÙÉh0E4o‹´Ø¥'‘º`æ1&5Õ ŒÕį»è‘EDÀ Ÿ¶ý/.°¸]GD9ã nOf7(œ'×3p6qïg[’ðŒ7 :80_ÚFÊìTðDJ¼ÐrcÓ&)"´¼Aס6G6ç|I ÈœúÛÓTcUöeü­­zn¤ –6Cõásêz >–yøEø'B2ò›ÚÑB²õ3>ö”п“$ÍAÒÿPc›]\ TÞî9¬Âõl RÔ4¤á¤¿0Ü…qØ4£Âg)žñFb[|]€Cª·‹ó#óÈôR|₩þ&Í-MV¢  ãtš!Wš¿K4¶È0«RÎ-ïñ['S!B4S7º…;ÈfÂv^“éW©[1Eß ÁØí‚ÖÐ'¨z?±ƒûÕVèd5Gg8ã9-åÁ¹F$_‹ã}ôÂx² ÝK9\àŠJ溑†Üíiˆðçô¡ûÞýçIu›Âí Š „=AU5”B‰•^fYRÚI_"k~ »ìK¼ohãØÎqnQ‚]ñÓaÃh.õ¡¨´‘ _Þ6Pº}tS¸]$¡Á&1#ï$|$";ÙEêæÍDkNÛ‰º\\CYp|C€f„ÿ/ÝcŸ½0n¼­RsP¶“£aµ<—Ù¯>%ù7`5f‡ÆÔÂuk¹PL9Qºý‚Ø›ËÀò¾^g:îG­n"?ò ËgTF8Nì^”ÏXJ—B2£äbvó°ÊÔÀIJ˜“€4:XJ¥Ú ì‹XoQ Ùöe"Jš<Û z·&2ZÜ íô_ “$ŸRøÚ¾¾ÒGÉ–ÝI”dEÑÎÚÕh‹­ˆH©I ŒÃ€ïk{l–C3Ùq€¼²Ò\üüÁÛ}ì;øâ$Í‚µáój (R¨‚[ÙŽ ý’§†¥U€g$¨w~G |ç~áˆN•„èûO`:€èê!)n)i‘Çp.ƒ“Û¡ëô'»/w_æÎ`ýƒî7úîìõáÑ.ëOI…>÷Lò¾H{ŒsŸÀ¸ÃµE‹lŠæ'•ÉäP/ÿ-1ûȯž‚v™¨ì.ÏiF)Ôßa+¢‘o_ÎTôÆbÛ‹ ‹ñãlÆJq<Š/Æàý>ýk€ÃF%m2š¥s‰[uëë @­Ñ‚˜û™Ø PòT†â\ …Q ¤8Çú‹<‰‚±ð$xî>ŠÔ%¾ëñ»8BH7ä¿’ã~iå©ed Œ„Ð ˆcåÑCCyŸ,D‚Xƒ‹vÎ4"ÝzÙKÉ"ƒ$¿ƒ"Êæ¿ì=*Dfý"æ6ïÔ! `íóÑWMW* ö­ËQdí0tÌù¤¨[ýï,`î=q’p¿€,Ž@°Âw:"!UŽtC|áwÓœ“¥Ø8]2€ƒ¥+Ø*L¬;΂! ,¿;¥Œé´È®÷ÛÞ€ŽpýFlùY s$¯¯bŒœ‹ÚPT= Àø  h¹’€M¶üÀ^ËùrdÌ0è`°òî'y&NnO4¬Êam¥vï…Ÿ†¸\±S¦!Á(€ê\"ÈÎ3!„‰˜V ©v@F2hඪ¯Èg $pç–G©@Ðh¾×¬é”(MTøÄ¢óÓÑ;uçA–\€üS˜Î'æDRÇ(¥šãX!5/î@•‡‘$R…©òò/:í7@8³ñnQRÝ„äé´ä­FÝ—Ã7'{¯¹ êÙ«·ûûƵA˜FXåGõ6A6P«zEw}õûvõ/ijº;¿¿Ñòöۓó7‡ÇÇ»ÇÇ«¾;;|õ*ôS^Àl/³5Hnå ¾}{0Çê:øË2ˆf°hWš{‚róK™ßãa‚cň~ñå9·âKüŸsÝ3õ,C¹@ i{W˹fÑ…v^F‰Õc­—ÉU«/!í°uÀÈ}Q»ƒàµ»â= Þ•áü#ßÂ2“‹tü1¤ÀÁ®Õ l˜DLa ÷ý$úr*âynœbÎ Íâ°–Þ57ÅËÓã“mˆ‹íüxx´úÛUƒIƒu0j`öˆ•Úõ'î<६b¨ †Ì.òs‚N†ÊuP ×&ÉÈÏçÀˆiTÆì)ôë’íÄÄ‚j`èÁŒЧÛHOñü÷ÏÁþ&gSª‚ñÎæÊÍQ]ØDmïïËoÄJxa…5¾œÍÄ4ó@XVºfóÉ£ÁÞÿ3=µž°‚ô.‡2mÅh×Ð?@ô"è¡árx¢ŒFˆü§K¾…m[²zîr]‚û .™}È^&[$h…×§Â4逧‚4çú]usãR/g è˜Ìhžˆ”ð—7…z`bùZ2= fçg_B rI (dz/ΩL*b: Ræ%â¥Ä\ÀqÀAcUý'oŽÞìbÖTÿÉñO{oÍ£'éDäûîêoWµX1 #–úi&jÀ9*bf˜˜Æ= – "åøîäì,ðõäÅbþ†4ŠÂjM9íôÌ46*9‡úv`IBêÉ8aãçÁ»·¶»¡ È.ÂÌ˹£¬§Ÿ#&«[Uì.6½/SÌSÍ&Ž»_Ù˜H¤ GœnØþ“Ãׯ‘‹]™¡iR\"ˆ5á‡Y ¶#°ÿ`Ê®ÍݲZPÞ…¸˜ˆðXC+8õÊo{žcÈ[2rhXñÉÅM©3,ÇÜÝHÀ£¼‡ï[[ÞôòTm÷–^¡$ts# !‰„ôd¡“nO]‚gž¸mÌïLÞÈÝã’¼’Ëá °êbzÚ½…kº&<¿lú¤Ca+¬'ÊsÛûÄ8¥R^‘JÎþC4¸@gÞ›2%ko]Úp×c&1:‘Ó³t%Øtù]/«F¬ºqÂÃ%wTÎl·Y„›ŠÚ%FÛ$Ø,$Ó¸l2â%½\Œf×ZÇ*Vp4‰dó<±Ç~œDÕo¿Ø‰½Â Æf‹Ç”=êè«sî^¡û¢3ÁP!Eä´fðœ¹û{Û=àfàŠ`ËcyÞÝ{¹û*t¬wÿ~eÒñâÖ¾±!“›‡·qõ‰%Å“¢ÖÂáKâ™bˆˆ'O”É—Šàï*œxZãBWœ-¸]E>ÆQz¾©ÄU ÔOÌó ð‡8Q#\Ô>'•·í‡ÈׄM^²”ŽscÎdzq%8f)›ñ¤qWt”8‰½—4ñ·º§èæÍÓDÌ{ôì£&v±œ£’$ð/r䆮Á^¬Éñ4Ãô¡‰Àš`ËLgQïz.C,èå±/\P 4LB% HØÀ8í —l5åZ¤3"Úºˆõû#Hšo7/øo[ƒþþþÇAìƒëè–íLXÌPѲº¦æõþð‡/XHötÙôÑ^r SÃ3ôÄ—¢vùÏÔ6©S›‹(Ö…%‘«Ô s&…ħàÊõ' #¨fŒéÏ.³ 9´´¯(àôazÒó¤^pI++9Á­Î§Ê¥Iy±íe9'„dÈ£s^YK.^ƒûS™¯Lk÷Ðiy]Ìß‹B0ô‰£S—b+¹ŸWb€¡–a"1»Eîét3­¸š†®ªK1´ÅvK‚¹Ðí #¤ÅÂ5J&5LE¶Q8Ž\%8N€Ù:[p~7{¼OÐbå(¹ )]N/i£Qy@ƒ¤‚یĭåõWH®¥¹bù¡šTHLì£Å$—n[½¶™}¾"ýÁ{ÑŽÉç]4œëñOÀ_€”Ï!A3-i "pôùÓ'èaf+5DÌUYÜ(%YªhDM¨ãypÄI²A×)6ü×™ÝetFZ¹O¹Ö/90b¼FÈ~ (8®ï|n-ì¢DÀÒˆán‹|Œ²W?/þŸÊ\&¨üèÃOÇþ?äm¸ÿä¹ë•¨ÿ¸=‡ù¿¿•–Ãáý4ôâŸ%Äê9jÄ‘ù)Iæ N9ƒO:s{µFˆÙàd­ gœŒ ˆ}b˜fáø ÑÖ¶J“¯2+Ç›7/™ìnA¥šWü‹¼x<³ƒÓVÁ)žM+öñ™'¶Ùð§Í1Nñƒg=ÄŒ)‰aÛן´=¾äÉŠyö(jkáÔ;F7-o»‹Üƒ°Žf­~üš8LfÛÒX]u½uÏßó‡žy»óãö¬ãÇ4QMŸrȺȡ0êù®þj¸Š§µj8µ8€WmÒ<ãÂW¦à¥ØúÏ´HÕ‰`OÚ­IN¾Q‡â¢”€*¹(æ‰.Åñ!Œ¼ ²0éш=ô®øö!o¡ƒãÝ&t¼ÑÒh(>žÅ׿Vµw¯·Ov~Dß‘‚&Œœì´›iȃ֘µÌÊ—_ÏçÉUÛ^ñ¤ïЕ@fT´à®’N(÷^çÅùè©cZÖ »½Í­gỞx™ džý¨7Df±gCç8„FãùÂiZEœ®.üIãFß·ó5˽ú˜*ŽñÒFú#æ+·Õ›‚=‚u>™Ö„,|™4GƒtXÒH JðžRh×áî]Eb´K ðùöc(aožíï½Þ;ïb|o¬ªù ) ø#&)§·rèè#.W ëˆç=ο“mU°Ä2«hÉhR UÞ‹Å »Ò"IZ’²à©ÈV Õ…-GñZÎrÂüçA—R>3Äfh¶ Ñ8¡)Fõéááæö‹Zx†ûjïèø£¢‚Ä•MÏš þh‘P&ç±"Dt,q„«öºw†àþœ'òÓ20Bž .2ï© ¬ÝvÕIÕîðì°CÄ˸` L§t‘(÷¶­=ôß½kß}Wºáv W>T=}R×°‰ Ì‘ ˆ’É ±]­š-\–ᙃ¥I0÷~M˜þè긟¿~ Ž_ê:z ¢ôÍMËKª+i~$…ýøãîöþ•+Æ%ñÄBWÊwÄY=W8ú΢ÛmÕ‹rw±¡“„eAèаî VR,³™/µÍš•8…pÓP§`/áÆCãi¨šFu<Âô=VzùuäµÇ¹ÁYú~<›»žÜ¦yøŒê‡AŽªë Ä)—ÊÅu()ù¬xI^NgŸÖ}„* 4ÛÑg+ÝõÏ^#!Ï-½XuÅÙÜÀžà £7ëÁ›0n›&Çͪ¢ÇI¾\¦”NÜ KX†èÒÅ˜È ‘´Ð-‚Áû©ç¯ü0ÂDÆlÕëÊ $ãÅú„$ ±±vG[Ev¢" 'VQ[DU¶éŠõ±ÿ”Áð w§DnÒ|½TaômH§ ël¢*n^(‘£Ã•K—16­óJ¢.ð‰—ùÿß›j*'…e]º†A3tÙ»²èÐtw¶"܆Ÿñ~t º ’3E1S³°í)”#bQF.ã+LgÊx#¨›K|"hGœ-êo›è’‘do ]Θ&»I±øÌ[ê„™eSRŒTÉ*"@\P®3Ù™‹y)É{£ °*Äù nGqØù&ãñTqFxì‰::ÔsjJîpJµZ¶2k¤šŽæxM…6ár±cŽ>Uó†k.Fú„}ƒ—ï@6…évªUuI5ùaÒ!«¢x_bÔ–¿¼ÐœC 휺ðÚ+uü3ÆVß$Ž]‹ƒDêÀau°”GÀ ¡½›„4vjZ† ˜»SšÃã¦elKÒéUP儵`V«´w­Ú/¯¬+|ëü4*-$zš0˜Ù(í…ÌpÛŽ !!6̰±ÂðÑ*]mðˆi& h·•ŠÐì‹ZÐÿª¥b\r¬Ä8ò⇣¤@ Ê=~Hÿª¬QwÀ‹õ}8ËòÚ0Áh„O„ OB™0'ªbJÇV ¯…Ê…:óþ9ÖAN§`6¡»é¶a¨¾‚ ”Õt™f‰XŽT7z˜®FJ€‘hˆš¶¹4Û`õ›iId‰ÞCª c R”Hè-€Ê%“#ëþ%ú †6…U¬G©kª¯56Uÿ>Re3³¤éú›$è£Ô¸øªÆì绪+MËÅ•*Kœ ŠçMî¦ÄÄôµ†¢ùÆb‡+¦Ç£‡ÉY ÝáœÎjŽ1S'ôNµ³ÅL1&²©eäÎ(r³bóî2YÖB¡ìÇ Õ9‰[Çß)Þ7¯ªew×M'|ÅØ=ÈêJ˜‰h@anË 2º€#ÞFÞ€ðí$e•Ä,ç rs|§¼Ç’~zø‘[CEû¬-i—çgÄ&¤=Œ†F-Ímn¬?ÛòijD˜-)%‘_âTº)~@ô_¡ØŠÙÈçsðèÂ¥gÓŸºÔo*®á!xt„Â..¿F¾%¶BªEìÚ“ŒHÙªuñøß— ȇÎݽ̉a`vƒ£¹rð F€˜¹á×ýL²w‡É¦L›–­»Ž¤MD»zàâoñzP{1O|´øÈ Ž»wõ ‹Éà¢rÍù¢‰ Ú˜S«„ä†_‹¶µªÅ>¹‚9|º@ ELœë:X¢ã;î  ÎÒRN"žÙ½õ—eµp¥ te\Å Ž5è¶Y±_x£€'âl ÂÞXs[©e:['­G<ùÑ‚pqÅÞçX°–òœ,ã9mnq'[å!¼&‘ÑbfÐÎÚv#U®+Fn?í¯÷»5ôû¿Ýü}ð4®0,Q#,fJG!éÌ·(ÉRaµàø‹BJ@Ϫo‡ ÕžPØì¼\0»2ko§:W|ƒ'Å¡JZ=̃‡¨t^¶+vFÛ DæƪR ­«š¸é̇*¿»˜¹òs¥†Äû®ÛWî|²O¸1RjŒUjX~ÞÌ{¹ûæ„ͼ†'%vP>J¹lÓ*õFlW.±;ÿ¨\f;?îîü´wðCþâíÞþ˵“½×»9$c·¨žA©¼¨.•Â+Öç+qY!ÿø€ÌàÄ+ƒ¢•&}‚œâS•hK² ê¨VA¡¦—4ŠÊ¦LÇœ_=´i|Ók:±ÔartŽªP`Z­êââÑr ƒfâæ¿*¢ºåµ.ÇüÖ{X¨>^<ƒ)é”ñøÊ%R¸íäJ)bVPG)ÏRÇK­Â¨+ÛÃþäA¡`/3þ¾¸ŠÔCóûÐíጿäâ`ò;Ð}Q¶ôÝä´¡3÷™LŒ¦€ZÎk*˜Aê2 õÞw £—°©Ž+6Ô¢í2Ù* †Íg7sΪ+&Th\.JÄ>š”-ÖGŽsn«Â‹9Eqz{æH¢V/<¿€Ìÿ)vÀ•øÜÝ< ª‚±Ü,‚AmH¶Z„!™®Y*AGFŽ= NaçÔäá㟠bF #ZÏËÂÅ~£’‘€´S•ýÌíÈGŸã“hì¼ÚûèŒxÑrq³\pH%’K¨ñ‚,©ÒÙ1Ö–®©r—&%HsFøcjä²öœ£0s‰ÀV%ráÇ*岨ێ~9gÿ9ï-Ͻ òvÎe-êÁwZºQ9å]´ÏœJˆ¢…!Z3EÇL¬Ò0Ú¸œJ5'—^¨°‘®Ú9|ýfo÷åÙÏ{/O~<Ž!´X«Ö xéæD]+ ¦†ÌšCSdשƋ«0¥·è_¯Ë •âö:¨ÑX7×Îᢕ½ Í}ƒ³Ù`´9[ø1üë«è¹|ó¹~óŒ~¶îŠâó˜ÜuΗ©VÙØä.U YAËRpJTj 'hƒ†Ò™pmÓsM»v˜Çq4.¡æ fkÞS¯å¯¿‚FÆ ,zºÛ=h"ªêœÑÝW¯vwNö~¿{¶¿wð ¾ µê%&ÌÇ΃ø™eå‚]0íj6†cü,‘Ê©&óòr µZËPŒ]{ÆÖ;onÄ÷RÅËÄ­:û•½ýf¤ÈpÇß õ•ƒ›WçXð*žßÅó%³Ô9¡ŠPhÝ¡÷mPÖ(ž&²«µJÜ|QCf¢8(Ú â÷6Í:}þŠsùT0Ò6g°m®xÛ<˜ ÛíÅ{6áï’Ùº²Ø¤"µÀœ †#K¤Ü[€c³ô<-üC5³9bHÅä+1Upƒ~GØ,àçÈÕÌp!,ÔBòƒÙ‚÷XP«EY‘Ä TG!Ñ®ŸÔ{·’=á–£æ.ˆ‹)€`ƒ° ¨A— ¨tjÚ¨fÛÍ32‰kž\ŽqÁ“øçâ†á ~¬ 5“j¹¢èÄ“$AÜ„B¹È£2k ²i@ÓÃ…N®ª‘TÔÛö ­Úx'ÛG?ì&‡õVŠ,Š•ÒP‘ƒ¨˜nFå0|þUãæ¥ÌÓ0)}l¼ü€l/’2« ²¡MÒ ç–Ý0ñé2õ•BœÜ]9`²¬p$ÜK€×Veζ1zöDŽsU4l. Y?X½ Å«(}àìrsÊ¿FaX6[Ñ©ráEòÞ‡ožMþ¤Z,&¤Ã…áéÝ ly zëRV\Ï'S‡ySG <2Éæî€' 5H8øá2+¹¶­/—”)¢ÙëqY£PBµK ¾nC&o¿aþé÷0\ŽÜYå‡^Ìê}ö÷3e¶õ[Ànfç ñ½ä™×µ¿‚1áÕæ“x[EÕp0pä¨1¸ž‘Rw:‡®z KÉf/Æy÷‘ß…‘_U—Wà3CÜs‹jå B§c1{h+rÓ£º¸¥ûèÕ¥Y­Ö™ `ÐÅE5ª’¼Oiü;漚F]aÂÖQ$µMPrÆÇ>ò²¸oóç_ýìkmâd†‰Ù”ÑÜ’±}ÝŒü¥h{~;qÓúFt "CÇíÌFà&U¿Árä%"I¢l§Î°9²šw5œîøg»Ý9±â9z÷6•üKJSu=Ìﺬ |Þ÷äïñòkÂk3á_ûÝh6û{FeŽ6Põp]`·•©¶0徂ç#±+öâïwáNÞùéxûøÇ³Óõ¡Ò)@ÂH^=ÊéŽÓ"Uh1¥ò­Æ.׿ãhUô[~å-ýfûh÷àøÓ†äD¨Ï‘ÏjË+ xß•Str•£qs dFc7œX†Þ`LcèF®ÐîÄ‚pºé?–$½ª¥»­¯7šÙ Þé‹ÈEbùdm xsíWðEû÷.¤„¸çSq°fÑcMDÚ–Ø0{Oÿ´"^Ǩ(â“ôÇÕDÎ];åø$ìü£Ý·GÇ^Wžä>ücv^Ï&å‚’ ø„’9¦@HW%ï4î½'Èj^© ÛÕá“íû»Çgû»?œüøÑ›Ûtc_U4©ºæðÌV€ 6 …Œ YOa%þ¬MkšoøÿT³Mm…$‰7+»›Ï‚„:öÂg3·þ÷›bîñ I œh•›Lö#—zv&$ "éñsIYä†Jjµ᩼IPlˆö=]°4×ûf}c}£7 — Àˆ$H²Òps–ž6•ªéö4ÓíS-7ÞLuü5î·d\ÏÕàíº»Ø;•´€-Påò·'ªTðw£ù?çHðÔÜëqò„NL¼=‡8¹k²² S߃z>jZ1¥h3fE¤Ãvþfûäd÷ÈVMæ%ô,®ëè&Œ|Ùñp…?Ûºy¹áÁO0 íGOÓÇ”øêÚøÈ»ã2®¶ ƒÿ¶”öã—DDõI?îá3ØRõÞ†NÄ'é\š†„£j¯^¡ÂãÒ\‡°¹¨RP©°r$âƒ<À¡ýïC 2©±Í!xyo«¸˜ló¡ß¬.Ùä¼tJ`!¨ÿÜ=:< [ðõÞÁöÉîK€@!†B‡!–üŒ¤w¨câ xÁŒIðÈ‹¿¾YÜéu »Ü{x,iÝÛµ¥ÔÓI¬Ç­6_¸þ!½éqXGäskxF±½œ`÷3eè¢.+¹°~afù܇Ц–ãRá+Ç& *þš¥F£Ò_åÙ9ô=æºFW?Æ€ü-(¹Ù¹…èY º(¿^¦UcpÖpÕ窽ŠÃt{8ôd)Qà \¢‰†A„²ô5eð UXo>‰9/Î=ÎUÖMY¥ùFL¥ìG·ÔŲT•"¡É¢¢/@@ûÂZ`eã`M»zÁ=œU”¾u0ÔPíjˆ6?óflu‘± V¼Õ1EW¨jÞ|Oçw ·ºu¤üÀ…\l(•Q,ÂŽ7iDf¡äQÊ—þöÁ;ßÛ'Ëð˜_æwòNx Bˆ¹™vÌ©)åè&•„¹C®+ó2,,l:¬’™yà,)!z Þ´ªö¸»õü¦74;AÈb Ë%ÒhTÔ\,62éEû=´@<%¢$KY¡,[ö`¤ læÂ LÜ3*Mvàd×´‘ÎgF·1éÊÂ’€ëÍ|ÄÇ¡ûV“™å{^ ÊÃŽo<ûš¼Ü\kÂç€_x-%~Å…àÛuûº ¡}ß.-³—P7@ØRÜ+%Ov¿•äWD>~K¥}ÝP´ššç±3œ£5ÐbîbÕ¥’B¢b¤6åLÃfÊF¤å6ôÀsÕþÂJð\¹N;®óLXtA3v%-߯/•ïEpÊ…¤` @ƒÅÌÙd¤Q,ËĵÔÔk˜ò pX?Dˆ5V" 1Tò¡,…U ã+àÇÁx¶Cø‡«RÍò7¤0Õî˳ã·/~·»s¢„JVÏYš3 “Pâµpáâã„ 4$6ǨzÉ­ž0Pie{ÖF=’[nMU¥ÿ(Ÿ Á;²ã¨âÞBœ a3Iý;ǧ{›sîÑŸ† ‹®I1‰äÑ[±ðQº†ËùJºD'Iq°’…ˆ„‚¾†žÂ+ðLC©g"\ jj ºk—­%ûÄÖ'9%Ås—S¬5ÓGy»Œ­Er¼>ÁÈ6ŒèƧçGuw#|ŒóU¿" J&ÈCp,÷»šºÜ SÀL Ǩ䀰 LÈÄ¿jl—(¾ˆô´):dêÓ6ïƒCᣓCyÛúm¹AË‘z¡aàcÎ]901[ ¿%C—,‘.ô L¨¦Y¢dþÚÜØ`³'Ê,àc˜v‚`Ôµg¾Š*‹o`4Îu÷Nª›3Ng°ÁºÈ75… :œ¥ĉ‘}pz„­4k+§r¤ëÂ_ÍUL_†S%PRðë6 ª« Ss¹¸H¤{ñ·d?x$þÖã¥@EŠ&Ô%œ¹EÙ&Ä[Viè¯Hˉ‡ÃVýò:œ÷â2žVó¾xgv¤^úâ ›9ãf¼MˆWBï›"%¨ñfÛàáÙ^NÞÀ0ç” p±V~˼äóº…‹`€IqóX–ÜŽ€<“˜z¿Î!WÉ3uƒXaýJKjDqYX §šP²°gzD…ÏÎâÉ ø|N›ü(YZ¦;š»4é•P2V/bšÊGôOŒÅäÒˆ‚v6ãB=T}–xïTjh$+h?²"äñ‰Êc¢µ€"ªð´„ù ²vÂlþˆ?ª…D´Ä45Ÿ6-b+À•°žÐã’¦ Rç{åìÚÊgýç WoõA3¸è {AiöÌÔg€Õ9ÄÒ*.à‚ÙS/¨Ö¾{ þ²ù\õkÔFt•pt³ ¯qP†–•Íîz±ù’Ûž†P+Ë’På³EMÜ^Í&¦Ñ©‹ Š…%üÎIMv?ʈ!3C;ö\ª—›cÞj¡‰ØW“ ê¼Œø}3 Ï•ëaÂT \ÜðšL]BdÀUêJ-L'’Pz]Ç. –®D°#°Oóâ’4Å+À#Ùvwƒ©a! (4$ äúžÜáÔmÕxp™ÞÌËïì ½‚•Ä9r_ÃèTò¸ÏÃjŸÜÓöež÷þ¼½þä?{Ã<ùóôI¤Ý?yêj¤ 5C5I;×êË›#ŠiüàÿtQ½äÁ Ñi•Zž£ _÷s¼ýâ'A­|×ÚÕ©U¥×ˆáÓ —ôuaÈdJ’p¬1ø6ƒ~ÌœÙëï.¯:¬_A2+L|Qµ¥ZŠ¡áµfrí¹õdÑP#3¼µ'll(1f>tU×E[~JÏÛX>N`©¡"'Q̧yå‹]r¡#TsÝÍqÞ‡ßöbWHoÀáj&¥s6«Þ«ª|Ïtæ¾ôµÕ36LyÐ6\!$¯òà À»MÕ1‡ ê–Ê×ûû‡?Ÿí¾~sòdzýícË|aÙ¦TZ,tbVsFzÐÞ'3 ¡ÔYÂ>8‡D¿’êê¸ £Â2•‘KT¹fTUW”ò) GÈL)8QuŽ±ÞƒG xzäבÿZšÙ4'Bõ»L}ý5!…3yò¥µLîÉÙ‹ã·ˆ¥2ŸN¹[cÖ¨Õ!Ý2º…ÀíÖÈ®S."Š{)>ÌyÃ1ygÕ‰ww^o“k#X«ïŠüwÅûâÿ=Ð §Q›Ñþæ ?}ë‡óåÍM9''\ïmϦæ;ØÀ"Ã#5n„@È-@r¬»ˆ²Ã#>a­ƒ‡“ |7ÿNƒìo…®-­kœÊK=[ºž±‘‡GÎÛE˜(iî*¨cÂâ1®.™9I +kµýJ`+,ûâsHÎzÖ Eä¬ÃÉÒƒuºŒ&©un\üC8§Ü¡äRé¬ö“ô,LÒ‡ŽIúð I‚\¶IÒYBµwÅ<ñ4É,¥“¤¸§–)Âô5í³ïê‘@RPk$½úôù9?ýÂèúœcÂfÌ–çà~‚vÌ %vc‚0tútÉžFňB½¶p_ƒï'GÛ*Ø}Ÿ‹h {t?³[9®Æa7ˆçZ%Þ˜^ °ìP¹"ípChsÊùVC¼ŒR#5t§7¼¼„_ÕN‰cÓšÁaO '»7ÒˆpT}¦Uhîìí¼}ýj×D'Ðc$Ýt¨=‡}ë$¿‰/ñó|TÍGËë‹IùÁy Û÷z4VT„ïóáP÷çÉ‹Ã}§^È ‰UŒx[9î2½3d;×[C¿qH„ƒ'ê›ì®êØq?«“®~Ш´0aáæÒ&‡ NÌ¢÷Ùk…Íq·’B#m‹Ø¾Èá ì¼Ü}™èÛòѲ 6¯¥«…—5ù9IFÑ´@] 8©õ]¸´u¡]ŒÂRJÞžÿÛæ7‘ï»Ñ!9Œ`^ZÚ*ÌñHË*ÚMË 3½¦uÚ{ýßþ×úúúŸ=î”äo:—vY†ÄB*(}Ae müÜþPs[@ÉcŽÔ §¢O³ù˜²Yòö§iUünɽK]g8‰Ýy4”XÞ²F)AE‰Ìýïw^l¿Þôχ©Ÿè¾GæÏ)µp¨ÎM[Rßחך¼ð¶ócßYzŽßiìÖP`†ã9”w§ùjvIÅõ)s‘Âs†ýá.†+jyd†¿«ÅLrëÛ_$6¼ å‰ö.Â!µL²ìm1¬(ƒ‰[ë°rW¬öˆ`fµÐ;œi2•¼‹jѵ3Ž;íÙ7 ÷±&ΣØn(ß«žiÀÂÑ8Ó9ß[¸Â§*ts^.nÁ1”Ÿþß$—Ow§©÷0y)Œ¿8{¬ÒxºsÐ2­%“±;}ςʈ¹)ƒÖÞU70Oз[ ;œêƒP Vòÿ†^`H,XèÚ߸‹ ’êqÀÞžží€eôö$ÁE"u ì>2’Ò`‰¢?ôA¹µÔ§³\^))”¥ƒùaÍlë믇BJìç à  ‰1ðf!ö¡ E_¶ˆoÃ)¨v“j„lˆT!/ Ó`ÆKU\m€š}Ç FFba=­”ÅåX%&Û*K*ºûxw×Ý[m‹ ²E6Œwº^Ñ»OŠ<) ¨–[¢òbÂ'Qò¨œ6¡vY;Ø}㈕7„nB Ö7ÃËl>- âmØ÷z¬àœíŸííœØ”‚†> Ûl ±¢‹âº‚pðÉrþ®ª¯pÛ-çÕu+,~u;¥Éá2ÅxW8˜^NJuÎa€ñnuvõäíÑO{(»}¼wðCR+¢pjfCû¢úb˜±þ³ýl#ï™^-¹G‹4vµÊ1Ü?Ôµy¶ì7¤?"szà¶QŒ¡m‚¦qãh-ûè ýð '¡‡£¶ıЛ#L7v^§Z¤Ž«*Pò©]ÝÇÜ|t^£“e„¡[_?§ñ‹ƒÿ•îc‡ Â7Sá]-3›Øt:æ„mÌÔ@Ž¡ÇfÄÍ' ~œ {|scý«¯QÍ5ÊØEB>ÂqQ-”µŽÃ—RTމ »c«ºÎû§7¤V¼Xa´Hàí/uœË†ÞöÌþÎñmãsht?˜œˆ/‹¾Ó]G´Î~¦öw`›ÖÄßúB‰:´âÍûìåáþþö`~öÿ¸òV+ÂΞËDlD·]rˆ`u¾›ZØRågNX˜·Ô½1²“Ë(‹@T†•f3ç½€±åÍnÑ6@E§ÆmÔo+ÆSå”C&õÕ;÷¢á™àÙgÈG¢í`T6æˆÜpÐ^ÈìÀL¼û\4îò¶å= úßýÊLóâa f©qYG—>Eb”³ÈÍÿa¼pü.1ŸzI9|®}Š¥^èÊÐE:Ó ~IÞ@v%'û(ÂÚcÙ\F䈘.Újô¨` òžx‡ ÅFä½ûÚ™öDVTz¨vV7µ³m@…8Å\ä*õÿúsñ'qŒÊ´Êé𠎀–óÓ]Š”Ž4i¦`Âפ1,8PrÎI‚ »ZÙDio¶ìÙ·ob—@›0"[J8Î*x_uqÇE1J¡„œ"N3ªÏ}êl¤aœpÝ4Ê`¹*'7A¯³G/î@à#­Ç­K¤¹wSPc!77¸r v+ˆ‘;¦NÑëp«£BÃŒö)ª QN¨{ R\`KÉ0Ñ%üÚ3R;¶Õ—sm〟÷ÆcY¬‚ÈŒÍôn0*ùu_5¤ñ#©qšeì0EpÔ)<¿£Úc(åŸlïìì¾9sMO>þ ¹ÌYÄ~UÂ``ãD/´ˆäD\h›LO«)®s¯ìPT+]ë/PîÌ1ñ“ž"€6+ív{wVŒ<¹õ® Óà)Cü}»•#ÖVDSÕ‚õɨ²ÄWÎK©#¾3C䜣 `XÉlxÀº®Òß××ÝÇð/·µÂ±P8ùÓk[”ÉÒYdIs=,1‡L«Æ1û¹È¶^hœî}ŽÜ«Äò„›óHô‡‡ó½;úqh—¡IˆçÃÆ{ùj;)^ÛôlÎSGLˆab4w}<ð‘À|Ðz1ÐÝ AɺžLÊIt<͆£T)ÃÑi‹:’éµ3ˆ. ÉgçïÍ94[Öá)ز¬±µ‡EZ{õšzkÈìæývÎ0Kt!4Vf.‹=d\Û][xS°Wp(.ù"õ•#Y«w9x.×××OwíŽ'ê¤x¹Ž1GmYƒhÐy›ZÐÿíoDA[Ìgãå¨Ôüç}2-Eæ£nQ®ÍíÈôÿ²,àú­Ð²–×ümsøìApì ¹Dõ<áTµ@®hvÛjá8ÉÞî3õô6Øä'…kàËT1Ÿ{‰T~A¥¬×u»í ¹‰;ÕºÞéÖ¢ÏñlÙÊ&z݇†^—h´R/š~ÕÉ7“ø¶Ñ•lÑ»°¢5f4»e@ Cù+©›ü\¢Œ~i.Øþ¹Vż˜——¤‰'~o")¹]K2AI¼ºê¼ìtPJµÛ·Z“ À.’(òp,«_hì~ ñŽ”ÃôTcñ\<õä©ó$¼C¯hê§¡ü™³éÒùÚø°±±ñkŸÅ9‡ñßæÜZ<ýêEÞ‡|U[Tm››sldá²…×9ëžÿí7_ç}Ô”`à¥ÛÚØØ óY^,ÖœØÓ÷êÈ1.jYäa ·/D*ªËKä¨tWê6gqa, D;ò^$7gC¡†Ä€§–}äE¿Eÿ ÈŸÚoM–í8½°!t 6ü ؇9#E]Ý@ª>›²¸«82Ç·7ÌZ·$Ø:]-ÕG@‰ Ö£³‚¹9"³š„Ùš0Ä,íXÕø®‰4éÓonÊ)U½?>ÖÔF9€Œ€^ G=–eˆT -ˆÿUü,’Ú§T5xs…=ápI#æü‡k,DV)Èñr×ä97×C :Gš(OA»å(BMå.g÷@|³)ÖGLÕ½9Ÿjœl{ZF>·P8v+¡Zn…†^q%¶†ÙÁO¡þ‚Aw" ‡Q-19;,Ð9oâ#\-eg¥5ÒOšAÆÛÂ>ÿVT±êÚ›£\²$–ïÃ<ÄșҪl«“ÎÅr ½wmñû†Ú&²6Ûù§yä>¬PÝdÉ_íŸDDÂâNI€ÑþF!(¾„vïJê¹F’êEl»‰ h-7î”bïÿ.ˆ9•×Ú‹p¬ÁÜ— ÕLÊÒØä CÆv-mF2¬˜K µk‡ãŒ+ãžd@Û-÷JåQŽUµ‚0Þî„Ó釻¿öY&ôtjâ„5 S&¥ÓbùÕ[ñ:± ª‡Æy+t[@ÏüÜ8³Hb×i{†¥èå(ÞñîÙá«WÇ»'gÈ¢+ך㹹võy/ƒ3GFzžl%Q‚Kß­šÏ*ÓlL%éÉV64ƒa·-ÑQ×é¢@ ØqÐs—CÜÒjã~¹a RzJ¹ æ 3P°åJj‰:*ÍtOÄ(•‰OSKI‹ý½“Ý£íýûN*ß L²¶Ú9 ÌÉ©pIsD ?ÊkñãÄ_Ô)Û[³¼O¸â.ÝéÁ jY)ŒöèI g›X¶p¾U34éåô-Å…QHG¬|6§ ‡E"&–-„×p,¼otG Δ‰C@Ñ´Îè$+ÀEÄœ¼è?ǯ® ³š‹œ»`qwD¨,^CbDOSŒt)ZXšx©a@¦‡$i™EÎö~¿½¿÷"îCC ‡ñÑÉÔÔx½÷Ÿ»þ¥RHšÃPÇm?îLçÈë¼Åq´Í}Ó Mz¬}õóáÑK—ß.ܳëÄ«î@Fø€ùûœµÛÑž›h%Ün–s`ë¯#¾™ž*³X8kŒs¯ŸöX°Óµ\·©ÊåVµ„¯P BjBeãE…Õ ³ 5¹µ˜%²‰MwŸö7ê]Éèÿy@ÂRXu¬¬s®~\¡/|ÑÓxµž4Ÿ÷ÿ½½ý–P)¿ŒwAÞ,Ó·èæ}úú”EÒèn&H )Yƒu–¼±àå<ˆì§^0¥eˆëƒR,pܹfyFɃþ<Ìÿ.æñl1@zø€Â7ŠÍ™ËÕ#â0zç.µE2ï‘F…;­™\‹;tÞŒ’L¤ÄU–bŒua=¾Ý,âõ3C3¬Íí¤™B•¥œ k|wàäº=pâp¥õ}ÝÄÃÄn8šXw4ÛŽSºîK¼jàV$¨ø€€miT‚À²¹3êÓ6,‘JÄ‚`´r0qü"Iïü ?eRÑ<þLNƒggRn5éN¢ßêެ«¦Ô^U®Æ_@øWç\ñËÑ„^î¤Æ”¸ &Ò T•}ÆNRÄÖnäE0ÆÕˆ­ì‹#&R —ÿÁäˆFá-U’;:)‘œÐ@ZTyp˜s·zÎ2¢JäþcEx) `E[ ²³+–bÏïä…a¶aƉJl‚rWV3(– ºewƒÚwe€:Vªkéßî¼iõn¶6Ó’,@÷º¥ÄŸ¾PÛèô|˜ŸsítþL²Ó°P§?‡ÿÝ99ß`½o÷þÐÌLº@Œãx´r°’š â8Ü›FT†8˜Ã¿ˆJbÜr6OÜÔ¼:`ÅÇÍkÒçw÷ã‘[! ·ÿ$ôi°ž£–=“l•Ô±-C½²Mc»†lK=ªpìÎñb7‹M“™”ºþ)m|çVé´ m³h\B‰ "_KM'yÈç×B„Ožm ¹l!ASÙK&5 )™.ôµc}õüáBß»ÂuX*Æ`ÍP¢äI÷Õo{—Ç‹n.qXì°Ö'¯ÿ|épBñštm5ð#h,oøìþå=gÊ›“·G÷º¿!šfµ”K¦pÇöŒÂ2õ¿±×‚ F|:¡Ü%hC Ë»‡Ë·á$ˆ«½{J„ß~K@:Äaúâbp÷Á¢¾± ÏhÛ;å§aê0–50ÐÝw¼œÌNuMP¤¦ª˜°F&cl ›‘-áš`_b ¦´™ËuŽÅ¸h×Ó b„_-œñés51,¢á€OBÃúZGá3ŵ>-UÐÅÀ MO÷ ‚þ8IÈc «?>†k‘O ±ézë¸&h ‹pš";»çw šðëꯅ^—¤±(òæ_žŸWøÛ—纊@›<æ¢#X¥EÁ–5×3a”’ÑÌ@øUùûÚ2~ÑÆäFqà\æ‘‘4) piúUÄ6ª÷ñ:ïʰ¹þÈ*,Q‰ÆN– v cÚY¤)ù«‘jãfÏPç„Ø`ÐÓx>Nˆ0`*ý±œR¦ËU£wÊéQÕè'ÛMùZ‘n²$S]üqQÂJ‚hš`ý®²dGV‚ö˜­]‡YU¹«uídV; ¶ø8o4¡¼ƒ™÷+¸sóyá«êa5Äúh×pûÆÇ‚óDR—G7~믩T ¨¡kå˜\a¿Óx2 ïúÕ]¯#«[†æîŒtÄ­Ç8óà!gO}㲈ŽñŠ›£ídz†N`GѸþDä)…“ ÏO(ò>D£s1»Y›„S0j«éYµ9g2‘£šH )|A¿/YÍ&ã÷ExqØ¡ø×Ómg~œþŸÿy]ÉÁu s¢Ll­Ê {rÁgÁñP¸<Œ!îèö¹Daœí×ùéöšÃßÓLÀÖÚ|é-Ã× ß6Ïyî £æÈ]¦:uF‹æ—‚TøZðѮ˵®,þÓ}^DZÀ0Ò|0W«žSÞìÑ×)hCoaL±r·ä‚0 %Ó<„\>HIyŒÓ®‡~±t“ –r‘b¡H4Ö…bˆ Ánk4@ pP7ªi³Þ’êNt7àèÖ@šG‹A>Ùûx;óµvÃVFD^!T»Ë'U8é:h;ã%Šic5ëè ‚ƒPÝ”s¬_…%Î!´ 5š¥³ðL°…;¶% `I 1a™@‚·¦íÚJB>¢üÙ9|ýzïdÀŽi¢0匳ø£ò³‹û öë"®?ߪ×hp¿-$v´(|ÓÃQ+Aj¾8•&º‰Až}¢v‚‰…ª1X#yŸw~#±jñ¨Ø¿‘é}*Ï6ÒkÌÕ£À!]ªSK;¸kM9cµLájaAT{0B@TÐÖÆ*ë^ÈS~FXxÛE¥$Ü™¹kšÙœUƒhS#«w—0·D¬el uÖÎXOè79»R ›%ÔWïÒ‘Ð.qƒ JØT¥šfo6Î ˆÜËpG¨X˜å£9Ð?!5Åì&aIÉ…üÚ_\8Lâ»;Ç„¶” ^K¬®@°˜ H÷¥DpÍ6_Ò[΀-Wi™ü¤òˆE‚Âi1|)p=pɲLõ¸ü$t;_$,êS‡ŠšKO{ a‹)B³Ë¹cO/Vâä pì\T ’eCïÂÉ€x®ÏÚéo|³±3þvqq1à[»&œ1ÒqÆÌXÕ{±zúáoÐð?îßðÂw ܼÇoŽØ>Ù=Û=ÞÙ~³{œ —Z±Ü"Kk/¥4™žs=½Z`ãÞÌt*•~8ÚÝ}ùÇVÉ®Jä'·•ÜXU€VÝ t Ê @O-–´$6vEðl"«~ã‚…R6;ÀÞž1…5 ¥ ~§1‚&ŒUäÅ@Äcòêêz{³sf\^K)é̸ÁDKŠå‘xñj—,bˆ"Ëîà%CвÜ1y¹rJ:¦^Bd´ŒlÖ¸ j¬®»ü.£ù§³åvŸÐMÖ¯I!ó_2]æ ÙHìó‹îš(_Oõ¶çÉw“´hwÇТè-Cq¥Ž›IèÌ©ê.q¡…Öì«ç/ãB•4WAúÚMú!‰¨ˆÏ†—*.‘!¦àkĵ™Sgýa­o~?裱†§ds·³ù;v‰´ªéqÙ_XO†ßæ Jú Œê¨v¥ìÓQáAâߟ¡…qƯõµß0ÛAŠÔÍÂ4ÞrÙ?<üiûèðíÁ˳ÇæÌ9®Ààs̃ϾqÚK=çÕx\NýzŸþ$"X‹98>ô¦R\V¯AóO°tX¢„.Âûµ¼œuŠ^`Â%|/¾•À†‡¯ Lü¸;Ÿï(60¹clMÕžõÚm¶^%ÂKƒ‡”Ö‘¢#êÞ‹ „6[lTVK}Aì7¶5P³ È SM}ÅËN~ëéQö¶7°…‹-´ÔØ6sf»¨¼Ü’¾,fèˆÜœêÅÖ¦Þô’ÐöæFøã=UðQxß…¨ƒÚÙZFò…–¶ÁŠÒœÙH}sÕŽ¤«=Ýø¥·“Iƒñ  Ý ‘ÓƒF³N&5{ƒ;Öû@ŒªèLYàø ÉT(ù=ñ¶W÷‘ID6xÀÄŽWJיē8wˆBÇÎ+:B~½¹õ&cTæ!Üÿ×laôóS9åä8NH˜±Ûm¹)øgb²X]õÐ:ÂpâÊÆŒY¬RhG¿?¸B‰º{âü§“•þK•ÛÞw†×kâ1#±–ZŸáH¨¤`¡À7‚¼¬¦Yeà‚@}ºÆë1T d÷ë!(ñ¹Ò¤h÷`vâ2>vÎ"PLgÄ5—«\š“ʆœ8®Ù<èż~imõuïÀ*±Ä©©¢hr €Dsü¾p q>~„Ä/ä4l–"–¶•)6®]3ŸW—•Õivv,sÊ£nkqœ¾…BHqšÊéKçFê3ØA+Ò†p÷->.Ó¡·¨^Ïma| A6øR?ß%žâ¤JÏUA|SüNŠxu¨Lê¿éòoWWWëëÿp"¤ˆ 9¸2^S”ŽIÅ ‹ÆÊƒ|×òU«>„ÐÛ—*>§cž¦•òÈ÷ EŸž£7ΈC¢[1Gï!R šÔ&íÿ¶x‰¶jœäÖI¯éøž1Õ­cJÉ'ÜèšîKÝÃÇ£“è…4Fy|?uD<¶ŸW-?½mäÑÿ«ÇöóãÆörm–?ÿ¯oqK~û'”­ÿõíþ§wí²œŒ¼×Z½Œ2ôâ­Üœ ç{ØNÓpò¸iÀ®šÁ2u¦5³ÎŠŠ™hr†­[¥u—Äž{‹ÅðWàîc&æLŒknÁXæ'kšÕèÿ©»vÞ+qk^Në圛éÿv ^‰i¾4‹4^ñíb¸S]ib9òѱX/¶_²îp¶wÜ Œ ³YQ KPÀô·Ð[eŠ :@RéÒ-€¢jkŸœ|ú ø‚”‡è3ÐâLÝ·þ¶õרÆ@®t'j®­XÖÌyu×­Sâ/„ ¯Þg"åÀúV\õÚRu°3ˆÂø6FD‡¾w0_¨õKOHΧkÍzŒð¢0Ä õ 8•iˆ!å႟O=n†#Sêý@/–„Æ0ÙÕðòcæ…dˆØ³Žæ~´°ò†\lpö7­Ch aeÉcJ÷”ìRVì´´``Ä«;At-‰²Äï/4«l$m±ÞÂRÅdÑ0òÛàÁa&¹»EËmì&aq½,â½ï˜˜ô$ïáïzëMì\¬ 80ûâîfV“ÅÍZ9`.gˆàýޤXÌ·œJ¹HÈ 'ŒŸmD68Xa1~åW?=øÛŸxq§9ä›L2ôæ:èš¡!xj=(’z²ñ<ü´iÅá×*Ç/o-îA O£øøË2¨¹ÈÏvzàÑ.)>á|ék# ‡S7«-¾[Öóð.áÊÿ—ÄÓEÆyvÞ¦°C#y"µç‰ÁRq!ÈÊóUMÔ~“]”s@¾=iNܹQYB;\ˆËøHk†r+wødM—B)õ‚Òb>6}xãD”#(‚èþQ'Í¥·0ýèSªë‘“¿.\wXè‚*©oR o‹´•Ÿ:[ÙÚÜ*âÂC­Q[ÅÛ³D‘(FÜ&å‘/w>«ã¹Ø¡§Ô<÷c1¿CÐKa‹ÉÈQ’Ü.2 ò¿4»‡"‰ç2PÌwæ¦ O?›Þ§×j €è2ûO[“í¿§º]§¾@üåÙÎJqY‰0 “ò²ÝÅÉ›dû¡Å™œáü”“˜äcxI \+èiä x§ó(ƒÜÉ&qÎÍNsÁVU W bÿ•'µÕÈŒÅÎ@!Ù92êZá¬MN—n1ñ(1Êo»ŒáŠ­ÅK¬fHOVú`ø•W5ÝÆ\G®é¡ôÊÔÆËt-ªÑ)uXeˆ6ßñŸÓQ–´ÿ8ÇÈ+ ”%c$‰š"(Ÿ`J$5¥F£‚²å–ïŸÁš‚¢8!üF8¯Æç·kºc´VÇ*uS­ÒáÓ´Jj„JÓKorsUœ— ’7A6êP:lZ·–¨{·ÅµEZb<œçÄÌ.Ö”×MŠv•ž+ÂZÊ7R{,*Äð³oOÉ´˜š?S•µ”úr¶a9ö{^ GÊ–Ù°¿´wZØ3ûÝÛ㓵½ƒµ“½×»yÿwJ³søúÍÞþöÉÞá®(O´…~©|ÑOD¸UžPErù¡-!x%.‚!Žõò9îŽ_íï˼^Ï_C'ÖÛüÅ´Ž;5™)ò]•Åû»ÛëqøA®`bNV0º¨¥9œ}ã*ZPžQT²;L2ŠÐA… Âö¬QpªU`5¦TPrÁN­PåÙ£)E;z.üÔ„ ½&‚Ô¸L·¨¤¿ºå>G1À³4°þó¥bLt}4ç™N²ýà ìæÇoß¼9<2•„ä!«oÂé}Ò¨ŒóQÇØž÷ç§³wŽ“îP#î%† ÊaY'^M¿·,ÐFâ OH’\¢Z6]÷C‹ßa(#ˆ:´ÎïœÞ‰LR”…úE¥)?Ø~~—„Û¥è^œ:”"T|¤UÅÇ£2Éq¼‡ë%¯qýç¨vjPV U˵¨N} #?u ÖÏÍ­¥}¨¼¢W‡Zæ2¼9ºLOÌÆ›ð9bÂi%dXŒ¡ç¸ÜE~ƒVÍ!<ÑOPÄ^'‹ßåŽ`Wš ÃÇÃ?¯‚…Y !A’Ptg\† ÊggÍ‚1´=Ö#J3W®fe  i²¼ i© •¢ßÜúUG¯+ÖEm[qR©úw÷%í˜_ѱ§z‚ŸÎd)ÎQæ!‡¿¿ž! ä±djº•½Ž“lÔô£¸@ó2Úˆ¡³<[΃â­IˆxbÄŠlìÂÌçs™m^ž¬§QåŠ]8ÜO?ÛŽÜ1Õ‚£ÝÎÖ‘f”'…n§F (ÞX†vCÄ¥à9\u„ ñÊ×OÉ ÓØ- ”ŽT#MRB«itÉÁÎo6ðQ{¤ß‰ºnD¼¸c|™$M‹TVYìŒp£$‚b̹doôvz<éZ‚þìåpP¯­>Ó½çšÑæŽ\ÑîÓÅàîȵÆ8' 0Ü»F&?©¬<M³ƒ(úŒ ¤7ãå×õb‡–ÔªCóP}u#L u§¿¿s¶sòÇ7»Ã¼w1?{uÔ j©þŒ‡ú}sKîð¿‰úû}¼Ô¢‹©>·bõFº©U_ÖÇÂ$/꯯¯µ±+S\‰ëžÞ¹ Q¶_V¶wðêðè5òí‡oOÂ^¤àÂîËüÍöÉÉîQ[„çY5½˜ùA#Æp‹Ì¼äFÆm˜\Ÿ-͹QfŸÒÊyðýüš¢Ñ2ÀL3}´-ÿ=a ¶’ŽåŒ9½Ûçài‘CUZ]^}ÒgTõ¾­l¬{¾m\P2³vS•$¸ÜÜurö‡ý¨-owŒÔîˆza¿€;Ìã?OŸˆ¶ c0KøÉSÿ0­(|ŒÂñáÛôhÅÏüOêæà;ÿBESi )6û41=ØUÅ6§ÙTèùÌe€ŒÃÖ¯¢Òï÷Ñ༻ü¸ýë£V}ÎXùüâˆÔ‚ šU¥fÏðÚ|!!~Æ-$b’•dÜ~ÎUÑF½EÊ­·÷SEeù!¨œTï9ÅØ±cë#XmïföAÙÓ3 |§¾42ÅI]Ô䇖 äÓ;ÇÎÝò‡?ü!"*wØ\««‡U5äøKÅ*•ü†¡]ÔåäB/㎥ʣûÄgû™a‹d·ŠÉâÍרÇÓ¨{,{JPœžú‹YÕMn%¬¥­ü| sˆ]( ?9„ïÔ06y¸4næ‡]KõÛÊÅ"„ž™!8*÷ãå±Â®“š¢›ôQ¬œCÉý˜çs ¯¨9¿ž÷fƒ Åj³ 2á#-¡­IUÎ…¤vüÖÛÖ÷h@Cäœb®L»‚þü<&_‘ÅG¿?4Li€!Ô7"EÔ/ñþŒÿÊðE4êŽB=rû\²¡Ü§?´}ºþþ “‘ô:_Ë•¾/ŽpÞÇÚ?ä驨®·Þ”üéó^%Ò±¯£rYúÓû`sqUUǦßõ«û öý%—çD·[I¯ c¶¯8”©ÿí‡ðR þ©qðóÎNA|é[…Z¨ñóüål‡ÂMô«H×§µ À·ÉùË+òP-‘­>tÂIƹ±p¹Pî•]$YaoM|"þ€«Ê¾ÞþCz£½¦é÷ð/ äƒ&˜Ô–5^d‘ÞgA¶³ìÔ¯…Y+në,¦Ã;Lšã‚=i9!W²ü·µZD5êKzÓm1ÇÉ9íc #x28ÂWG¸ü0¡bÁßwÔÙ( À³G(#ì~ƒ<nïºKÏ—î ¬L•‚¾µû¤ÿlPüý| Xqk.å‚EV¹ýS%5ãºH]›èø(RI¹FšÅº®`€‹”jaT…!Œˆœå–")9«KÓ„):=jä1 |{jmQßB·‚Eµ·sørW–<š2ÕÌ1%#çjú–ïpRû ÒtxÏöÁwŽö_u¼EòÎÑ0ß…6/ü´c.¹ˆØÎáÛƒ“ôHÒ)Ó-±’ÃÚʬL2Ç̰Âýßþ]„øÆŒ¾‰^úý4üDÊ’Õ/KJÖ›òí!#ç€0錎+µíHWðbQjt4š5V”xÂ"•œ²®Å™ J­zâê˜<ÇÙB´Šþž¿bÊ“6€ Ò’l§‰LJ¢(›1Eª$'­Rž!1¤¦H¢ã|ÿö»×³^÷ž%·é¹½WŸ¦–ÌžýºözyÖ³¾`vß•=¥éc+ºƒÛø=êxÅÒ»…^v º•”Ñ)ɽÈRæL³ºçÿ-™4±äm)ÝT?êêÍ’ÔI #õ}Ћª E|úñ_(G2¤Å÷8«¯¡€p´0ý*¦(EÛÖ9@ƒ´*Ú®—rGÒ].5î,¡˜r83£3U‹òèÑ3Ÿ#Üyùw?ë\€Î &lFºK(Ò^Jæ¾ó{híi³êÚ#Áu®¼¨G] ï×ú>rQ£Í¹.eµ”[ß·Ü=)ñ’×ôƒÔÕÖ¥Ñp Uߦ®q¤Kü§ËÅ»ô¿»$eÆ“êQ\wOãe®, ï^šdîB¸bÎÓ5~–‚$(ÃzÇ!O¨š‡‚:¢nkJ)Ò±¨O¯°|8ÊÁŒÙX¼*«'ž^ûXKéÉžÔæ‚«\ÁܶÊz?Oª‡Ù~þÀF¤IVLQ©>~r—Jw« ›Ž]Až0ìçÒÂ|óÏ&Kà^-!Ë Òæ,5(»ž…¤À"d$íV 7jí2]V™3)SLmÉL“Ò‚D“­šî<Pè7§ø­[nŠi+yñõ³+ùÀDVÄh%rÈ›¬òK¾Nv_ìŸÆZaÁxCÔgDD – òJ´&ˆU¹›i#QËbUÉÖÏSä8[X ÈÌÍP¿ïRÏþ÷G 8öé÷Å=Œ1ñ¨TÀrnƵuaFªÒLsÞ§PIí\{¹-–¾àJ!ߊ:”TÙd1}»{jEã÷ÊÅ{´±æ Z ÆÔZØþõÞ$¼‡?óüX<õv/)’ÑA¥Í#fÏ]ÊYw•€Àl¡+Ø?$OS{z>®l8µ)î¹ö@xžõ(Qv9eöÇ;2‰Õ*‘­ûz^D+³Jv‘Ä àñ^6±í M+Þ0×û»/?ÂüyÓÔ·{¶{`öX`uiåÔæ¡ýL“',…Ó0þwŒ·v2ã VÏÏ0{z!T»wþë6•ã›e’yÆ ý ‹çC¦Îö¾Ý=úfÿÙ}'lôõ„“eû%)‹A! žÓf~æ©Ê\rA>è&¢®H™9ô»’®6¢žã)Ì]œ¢¯^ÑMeÁÂî51®C)4›¦æà,»â603=á•£É>x%IÎnPFèn5¨i2Ö¦‚F÷ åç´9Â8ü¬ËìCÂ7]›ÌŽÎ® UìϹ¡Ô<m®õqK° ½o»U¤hƒWš% DÖŽˆ{gSz¿BzœI„žú+Í!R¼2sVB™ªx»‚Õª§Î-›χuòtMÔaBU4js”v²Á€õq: óh¥q¬?·þÍŠ¿Å1ÿ½~=ýäÇô¿O%Ú'žZѪ,ÿ­·ÜîÈM¶ C³#š^‰×¤·lx‰6÷ð›tÈ$ñûDâßc“Ú.U¸7û£¸vCWé]Æ. Ì˜¹gä&MoáО}~à”ƒàeÿÅ˳?Pä´]!»JêÍÍ-åÿÅCËVØ_ä“WG=4ò‘ îDlçÔJpR‹WHßFúPëÕ@Ø.‹9U–\ÒXGЙ­¤˜ìð w”•@b ‘P:óš’W]¨/PÞÓ´tQ) ÐÝÝ·=ý«Pp‘ŒRÛîMÿ›þk XZEgoßUûYJ˜Ç[þkžç\snÿ†ã9haf÷®çÿš¶NRìƒ?Q!”§ûß¹R¶‹"ͪpl%L’…NT• v¨-ËØÎ,Å{+q#šä¶aT£‚û{w<@{„OM3’ÁxЖ™aÑ­²µ™¥ãNŸñƒWê#A¹Ë;ƒ~Û ¡ÔŸÁϼ Wt©^_pžôÓ¼w-—Ø&Ïj36-DàðYštìæw|çrRÆÁ3¸vë²¹n;IµG•Çåz¸÷Èèvµ:¤™³NòïV18Z{¦×\Q®ÕOAô;å²`Ó&n·»æÛKÕ±v ¥ž í9ƒE}BWëÎÝL˜¹Bÿ»¯júõøràisïÛ›õMœV‹›õõ ò—5ïˆ_‡C‡õÝ"÷¨³À¬—ySEÛ|¥þ§Þhy¡ûÍÓÃî™1ÒQò[­WEQ@Ùñ¤„£«'‘?m–`“‰ðÍ¢„E:öTÖ=âo§ÍÅúú¹Åb¶“g bE÷r êPû:†;‡·Ó&±wpÄYÙíG{ Ë`h.ƒlÊržÂNb;Ha™RNµ­äÀ½æaýö¡,”}IP~Gd 8:.ʘÇýYæ-®–ƨ#Éæºñ2f—E?ÖeÃ=Q+fZ¢‹Êež’ÔrÑ[€ìBøÎŠAXš»Í¹íÅÆÝG>>lúvÿèìäÏðlúr• ‰hò1—âds€‹"lKh€£è#öe£uH2 ùoóè(¦R.t[SZ[{ugh׿4‰³ Tý·b Íß6ó–‹n“„ßòX6•ÄRœ_7«ó‹;ê鈋ag„ž@Ú^Âwd¨%:ÇÛù‚vì;¡V¤:'‹Ø¨ÍKS^˜¦A\¢¨³75†]äÚB·pô ð™€3Lj[—Ë€'”qgn{½M¿!™§*Â8Ϋ´s±d"û6¡«‰DÔ½>*Êá߀°—h·W‹méíM}òÑŠŠ—¦‰âaºM8ìž§§6*®6°êÎ4G8·Ù•öβ Ü-¶åí­8;Êœ^È%yzêÊöO?U ¼ZÓF¨ ¾Ì^ïžp"°)˜êDôÊ#ÝÆÌ …jòÌ(pi×`÷出8ñ¦°ôrÃxßñ¥ÙUæË4ÙÈ´—es]å© w•êW¡g)qd2¼›ôμÊ'²Æëeɇ1ÖvðXU›ÖŽ“ˆ¦¦ùM蟖"Ü™û×upÊ/C£”|„QsCS+EWIÓ̵Pë eCÈt²ñíÚœüþc{±éõñx-ÝþÑý+yä$O(ƒ;í° '¨±g‚¸òƒê"Ÿ07B¸‰Ô&H,ׂ©+Ò­Y»•0Q³ZNR¹y“ªŽùÖýJìS÷=1‘J“á7×bç)•W‹Jpj¶GЙ¾íÙiËz¨¯ ?UÕ3ÕŽLÏÀ¼Ñ•#ïTd…VЦ+ªA,úl꟭uxÞÐÐü¹V¦À¼Üd` š²×3+Á+Þi–D`‘à— Ð’¶¿¢‘ƒTÁ!à“¯¿Îð…üàN¾íýàóŠà¼is£‘7ôaþƒÇô,\MÕR_‘Å’ªwË–ùà™iÔ5XÇ$«nhižŽÿ>¨uö”J,¤D—Ûš™éÈÆû¥ö%ééC »› ¨ýï‹J Œ?˜i¼þ¤›ö“>¥Íó½ùx//kQöNÆ›¢Zøs(õ2ªÑáó¿‚~à“jfÓo66°{ôgþx·Dô3 ÿžçøÝô\š¢ª¿é±£W‡>Ïô÷"Ž„5‚4ŠxüIаYØJÍ‹XBGR8£’ BÀ#­”¥…6uV÷«Ú)¶%¼5pð ņ"Þ½èºâȪœMÈ(#“¦Ð|Ó¨Æ Û‘øwîíh W‘¨ïÊnB‰º [ÖÒ1w·iÒš)Opæl‡N¹±¶ƒäÂ?‘&´ñsêzÀq:Íׯ`N;¥€\ù”Žß{mN‚,ÊX7#Ù®l¸ïß1÷ÉcKÉ£oá©ôÐë»´Çx˜œÈ‘S9´¶ax£™¬ä|‘wÁ%È\‘¬`Ó"E¤£w0€–¡ƒB)Q˜¨xUãÈâ%‰ì­R¾xãeÏ„HœîŸìü«Hƒ£gÕKJ“#¥XXC˜â¢{’Ⱥz»'Š˜dÜ] ؈g‹ZØÛ„ÂK#Ñi™f,VXåù|³@É›|ÄaC±+aÙÐR·”®KϧYÈ•8$ùnÆUž+ìþS‡Ñ¼k§+æöà†1Ó°êìÇN¥æÉP²AÃÓܼº»¥R®"G2.Éh.Èý@’&%ÝuxY…µºÚJ[¸­g¤Ýl%1ñ° oB§Ó¼ÎBî9RL0öéúæVν{É9á”ኼnçÑ5l9w@<\ Áa½*n úÐ#~p1N,ä.ÜU÷{]Y`@šóh±„0ä÷u^2Nz7°»á?wSŒbdàpЙ¯*,O»çhÿ,·³o÷+`Tªg»g»ÕÓÃã½ïŠª±`Hù‰’…z±‘·ÍeQ˜ãçVùˆ÷Óê(\%Púl*®ò_,"`o E†Ë§„†HÕª€Yr|=X MØœ"#çªoˆDPvÓmýŸëF³ê&Ì·îäKÇÅöïEà·v*ÎN[ŸôCº÷Þéò8òN+—•踶L%®B2¥7Ž=¼´kÈd ?ê5¢8©KJé.øÝnóˆ”ʵ+ø¤Ì‚µÌ~Y‘ÇìL A‚a`o"‚®ìl&B¦}‰;ê*NŒÜa^ˆMÇg¼.sBØ-t[·L8àS?QDYl7S¿Åug›íBMî–«'ÑiÒ 6c'q?‘³p¡,Çî¡gQiõħªTغËEÓæF²ÿV<ŽÂ°¯…b ¤àöš‘]£ií[R¼<Ô¦Æ%"ZöG_1qƒð™~oÕ{8”Ng÷†fR¯«P.ÔB@²ähXÏyÂPÈ÷cßjSÞ•µæø„dÿO*°¤rmdgÏïü"Ágï™]áD }L{ ³f²-ååîÉÙÁ„A—ãæÈlè$}_É\Teÿ}Ä™¦.)ó§¡À¼H±Tx{:ñ€ÐM:0s¡;½Êv¸‰ØŸ5qx”¨Þ¶ËúáV­%+çuÆçØßñR45Hú;'t¾(Câ+ÖLa!¹ä8ofÉ]üD]"µ¢M!/©j}ñ[E6›n´×™žÊCÈj\ ŽwôSWqÇâT©H‹m¢¤“ #WØr…R‹:¡A¼ÑàöÞñË?KŠÐ³óÓWOÿ°¿wfnµú´¹ ÒÙW4E[ÂD –˜«âN·ªè'<¾½é‘Ü;Né+Š!´« „ÒreUéú&Z°¬Ç;V™8I«×–ï$[f\zὊ konš)•v!L¢²LœªÃÙäóx±ÿâøäÏÕ«ÓýêùñIÏýqZ@ÐàSÂ*vž.ñu |¨-Jõf¾n¶ôŸ|ðg×¼°·v…8Ò_Ã1;ê­“äïd®¶{¦"OÊÜ@Xœè;C¯åªº¤Å>Ì/Ž$%º¬øg½#iÅל¯½? ÷Ñü\“B0êÉ€!È2è hl؈’#·ïE1Ê”Äw÷¶®“ÞÃl÷Uxs=Æ =Ù¹w«ùìî`Õ‡"£« ÅÍÙE4×|¤<þ]“;3‚h9è1!õeó–àóõü–è ‚j—)i2ÿ¼*O42©2È„‡2ˆ·h˜ l¯‹ª#Ë@“ÌBYNKôÏ©gÓåøº4» —bñW(,²³KíTï&›…˜‚œY­jö‘,ÊGýy,›A“BëÈ…z’%œÀ*»+½˜×·2ŸY«>».zg\.›ÜŠA´ã_4UR¯ZQ!.×K8-¢ÉOuL³Áé5vàmÕâݼËömõqbq, ÜækÞÍîÌèêÊ$â,$s¿:åâ¼w·\)!Ÿòâˆ+ I\X—‡ÈŠÔÙp²è†•î2"‰,pÏß¶ËÅœ£½£÷mÄ\t|š™šIBáå iÞM3¬·Èi_H¾œúy¹¸áóqÑòHwÞÁÑ7iÿ²¢PÀÙÉî³ ½íVÏ_ím¨ˆþÿo¥Ìqwœž|WDP»©Ê=5š«'˜E0ýõlºÀày³›Ï^9‰2܃Îþß»”þEº&E&!–-`Ö˜Õ:Ìœ•víc\,}ú5+û¹aY7{€¶³RÙãmÝ΃ÅS_rÍ/MP|9Ì«ÈÞ7g‰¿Yθ(Ü Å>—,3àÝJ†\§ŽåÓ ¨)°yÑQT&éÙ_Y&ˆ%€}µ¬‹{\N¹û~ã>cŒÕÖ˜GÀ­pó”mi&úÎÆ4,…ŸOª²ÔÙÈŸ¹·pÆÏ(›±…²è¼K¶¸hÆÀfËŸyô¨÷ºUpyo ‹B©æÁ¯Wÿ V’|ß°-þªôÜù7ÓÁN÷Dwþ/Eö”±²ØzÂÓrÒF–nt±dÈAa„šMÜr}žmO˜Ä¹ÛžY¬`Âú_÷OŽÏÓ]ñâàh÷lÿÙŽ¹ÈT´jøß2ÐÒµ¤‰ò‘`)í›E8éV鎬Íq…„)Ÿ]Œx©žnšYôÚ!޽aV ¥KìjÁqök塌Ñ8wºç›ÊÅwyT1( 'W_íYµôµ^~$ÌjÞŒL s%þ˜p²ÆOXsä†ãK²JL§j EN pTx"Nöú¥ 5£TÿMžÑÓK²Ê7eõNÒ|*† Z8Úh…zZ C$Äûdü;’˜À2®Ñk;ñ¤ŽÈ´»ï„NÀ¤8 $p‘i ®ûI:SÖðóysô{øÁ8Ú tf'ϰ¼!¡ ÂmRlUiN­î²LÕóç`æÐj–½]ƒÈ'ÃÂV!Ê‹æºeo]Ù?V¼ZÂB $‡âôÓ’!O†x0CkOyôk$aOzý é´"h dl?å{2c÷Óï_skŽ¥#hF¢OŽ;Ò*IMà½yÒPî*ë 1¸Œ“µrøf@ª0^5dp¨»%M˜û ]ÞeQZÚ}Èbë #™€ÅÇKi¼¯óพSÓ´?Ã;2ƒ9ؼº%'†xy©Ωळ½.‘‘NH«´Üé<¿!NêÀl¥ ö|jxšÿöôø0"ÈxõÝYÂV(¶ªsâ3,á®ú¡å áœîÀ™ÂÚ%ëõÓ¶ë^?µO$-Œj2(/ÙH¾”:|[éÇ[ædo§SÖéÞ%U<ÍÔèõÓ>§­E{[‰YK=E¼4vj°b¾€´qvL@°GƒMTòAùç³`Ñö­©“ô··íVU¦Æaƒ„Çìøì:bþ‚ö}%d*Qô«81áJàYNv²rÝkN¼àªeB!Âï-'ÛjT;˜•uÜ´„¤ý!å9¹l¸7±ƒYÚq¥ÎnS7w_ M{y¥VhëUÁIÌŒ´ÊÝšÕÖÁ !"HKÁD’‘Ç_cDzÖe{íÒy@8ËòQ+{m P¤%è7iðÁÁû–Õtoœ ?à!’äqP£¬öK¨4& Sux¹-;]‰œ­¸\¾÷ –”®r¾^ Öø‚ó’JjðáV[1u<¨ñÓ/Ê"‰[ZtGqßï<(Ê1íF$fÅ^ÜùüÇã±×ï./\'Ûl¬ç\{=¤Y1?õÁôZ°¡Ãõ˜¹œDÐSoÁg¨—¨¨ØÍ/Lt¬±“cRjsQýkÏN‰BáüdïÕÉéþáññËóô»½ïÛ·Ïü#"9,z§Ÿï¢xÖÙÄ¿ ú×øÏ¤Š{¹ë|ŠÜŸ»{ò,¢×%¢~züüŒ£2í²ªÍ¿T8küÈš–Rl»ÊùîŽl:* ÃŦWo·œ„(ª¡!qºÏ¶Ûù6~=¢€”åLár´Š_ð£{Ä´³®òdÿÁ±‹!0¥˜kûQ z|¹vÀù¶~/)Òìçu3@JÜPÛÊu=GßG‹ ¨‚³;ÅUñ- hÇ$”ÁYIf¢~0«Qç?;Ãrl]1*9q/…²å›MÉÚaQY‡ÁÃéâ$VK\RÝBl*Ô8¬Þ¶Ë#Z©£š‘3:L!l"Y®Í­çöx¸âhSEÞEU],åÛÕ ¼Ÿ:ì¸Ís>$Lz}§~§¢K¡™j(•=Þ¼w7G…ˆ½o…çp*aò:Mƒ”€­j“"Wd(â•]e¿êª‘H\™´8ž&Ø’¤€ž)@Kˆ¹ #‚’(áx&g¤-µ8QÈÕœµW(¹Á©Jþõ:YŸi®“š"õ|]Ðe¡\wïù5s{7ÜîÄ ¨˜¾[w+¤ü-ؘ—™®´‘„[<›1>¬߃rQ!XìÔ žÆâçÍ;÷´•[lÐÇŠr M=5tŽÇBÚd…¿9J­Æ5Ã9D÷„a®«–U†§j¢"­ÅP$š÷Õ@öq-“å4¦UÚ”€°ÙYt ‡Û«áicâQ¨¸òÁÚÎï ×LQ…—Íš·Dv­¨çbEœ<¿øðUÌ”'¿²ó«Œm ÜRº ¹N[v{^$«œ~`}l® ²&*äÈl—[bI¨í8ªm5'D抸V·Î)ÕÎc¼I‡ÄævUjÿª¨º¯°ó%spà‹»\žzÇæ{8ÃmÑÖŠE·X‡I“ð)%$u!Ö‹?¼ËÕÊš(¢ßJ8ȼ%çãÔ¾.¬k‹ÕFÆfmǨþá² ˜Â• ŽVÚ«R•$¬iR&Q5RIïHk˜‘1Ã஦ƒÌÝÌ,`£H”BžŠžäüÕn¥¬°M(z{QËÉJH#øŠÉó ˆtÉC]dr{b?-ŒØÒ,…° z×ðJÏÉ‘z‘Õ³HBŽÈNïÝÉNžé2´x;–ckÑœl™ ÔŸØÒFÂñ¢ŽÔK^q6žÕ‹æMM ·ì Š `÷#X}Üî §¶äit‘ëÄYn,‰-Îáþõµ«a[uHÏúX‹­©AaÈ™­®´°*Æ­¶QGȬswÔc{R ª7F>tÙ./×7W³æ}:òT2’K(®6>áíjÇì&ì*+ùDkÌ%UW:L/¨]Õ%žçK’:Bo°MkÏ·+Eg~²8XÛ`––·at¸±‚k¬«3 X ý[ {w‘*oò#Ó=° ÙzL³$V7®…*_+.…ݼ¿ln°9g$ˆp(†1Žì»q ±ˆ¶Ã{«Y.f½\D‚.`¶}6¯ãðö¦#^˜Ã«ø¯pìü8¼–Yá…ÝÜ£¨‹¤~ÿàéeô¿Ì½à”M…ÀO(z‚‚ß3ƒ‘”uÊ%]žë³·PÁÀ옜ެ½æ±‹²jÁ—Ì¿Arl»s5¬‘{ÿÂ,Õ__8y#%VÀ5lxŠØR‰ÂåHê-dPl]lMÔ ¢»p³y¾Çç¾S}ï>=]05 |ªe"„—G(W9öX'°ÖÕÎÎÅÊ¿ë£Ææ"´õ¦µó5qÄÝ™÷’..T‹ÑU­MϱX'ó°,nÊ\€ë|­ñ„Ä•nksv»å1©ê‚H͆ÁbF]`hª|eWVP‚ŠnŨg¬*::íÿéÛ¨Œ%Ç´–t(͕֨'€kzYŠÁýÙë'ÅgB,?qD¤ªÏ|ÄÊeØßÝš ¤O†|rЛ6÷³¼«a9¤Ôò³§†2õÁ‚¯6L–³“ßì±âdóž`+íÊ´á+ÐæÓSc¡¤^´¯y,ƒK*6jÑÔìB\PX$f­F‰KNé+å§ÑäV*Ò¾ªåz¦~‹tp—‹.>Åù!B/R:zÃ!óÍHòª<= í9:w>Ù­F(Ž°Ô˜§ªÓÔ`³x=„wÜC]m½^¾žïnŒ]qQq+ó•••& 5YqWíâ9²vZ-1Ø©tú41iÎ ìqhÿF}øËn¬öÇh3å³1ˆ=×t*‹G#UöŽíCnñ®'\ o ]Ü™úš×ó ëÎn%9Í;Y\'Û«¶S¯èÍg]¹¶ÂäLé]K¡f_òmL¼ÂÅ>ͽL?pƦ×ðh½`™ ÕÉ” ~…Åå ¥¤b‘•* ðú6øf’¼)N›¬þíßÿô—´æDAÄjM<8ĽN„à"•—µ5˜¼ìš‡¹ú{%S-J!/ϪÛÒ„ ¶zy>m´Ž‹4ªÐÝÈ­@‚œQ¯°„Š•6p8ÙàTyhÕ1¨›¶Ž6§8zVíí¾LŸî?«N_=åüÇHœ—BxrÎ1ãÿâŸý¦šòñäÂJ©7 ê‚n/K=L{:Ä“'¦ ;+‘H,#!dЂZ,UR|[8íáþó‰iû± øuºÄ$Fµ( 7¼î¨P4’?¤³l¬¹çäaœó"™Ÿ“XýJ©¡¶¬Œç×á °„Ô;R‰g½{³$oþVVíg«[€”ƒ[Ì×w㌚Ä@×ÎìY—·¯xÛ[ èE*Û¢2©ø,å2û!&ò°b¦‘PZœb6¬$J íN¬";Hÿc| ‘È„H†K}³xÇ>fmT›“ÊH ñ€â/t^Ü õú}º¨•êÄp˜ÜKõ÷y€»°±”1iIW«+_£,,àý»n8‘'F½•@ÆrS£!ˆeœPáØ¾ Ìk²‚t÷aÿÊI¶R®5É÷B¯ŒÝ£Ã4PX†«ZäÈÃÉ\ºR\gAY’¯ú|É©¹Ò¹_Â9i/ñQ¯ê&É—76@LÍU¦„C,ׂrÝ#úv¿×‰1‡Ü÷ÊR­Mvš ‡çм`e# 8ÙÆr8Ÿø‘³6ýù·‡sE?xô—±à%)öl;§1׺¢#Æ fwʺìÑ¢ù@yv-lÜ,}üŸ¢åÐOpðý†™`sH¥ˆ×‹Ý² ÍFX/V*kT±WdNNeþÎ¹Úø4Dât3°.n¼á a%Õkb!¨ÓÒb.0ãAxÓ^¿ aV«ß~aXÌp…d÷ÕNÏJƒ•™)5äw/O3w©lYKeqúÏ hùDÃ…U’ÆOB3ÒˆÐù}x4càe½Ò•Òæ,zø\dÏSPU9$VÉw¥•ïó%‰…þ¶á0vý&Yá&i4º®ƒ’Ô­@¸Ð”²ÈN‹l³6ó©mT kÜg\¾þª¾xýݘS\±­wL¼UmÕ„?ó :¬gH‘Ë#g'‡¸xœ]xswv]Ôð °è!QÿòDÖš®#Š0MkUf5,‹äæ×´R’Ì*ã šõ6Ü£x‰‘!–,ã}UË.!_ôêF N#í'¿{ ½§GD¼¨”^™[ºÛйwp5¨æi( 5pÓ‚§Ó>)3hatÄØ±B©ˆN¹P˜ ÂÍKYpŒ2¦ÓÎëa„æR´á÷ «Þ3ÿä‘'f#Õ+ÓßB„šÃ…œŠÂMT Lcd%ªup’_âà¡È% íûË­¸-õ@dç§þiôãx<º¸GÁ9³¥LÍ}Î+,jÿ#Ö $xŽqŒè±‚0…5Ó›k!h“•NöC©7WÕN&«Œ9"#Í&'ZÖ‡’U§ï’vDü6¶bÇÙa¬“6ì­ZsÛv=8ò’Š,±È†}÷o”\qu‚³ãþEJË3z?ºûqüõøkíãc¾N?å¦Äã{Z™¬©—­Š«ùxbNºp¥VqŠ·6]NRà@®œ>£âê|Ãö"oÖ\ ?‘±<ÉD,£ÅzÙ5A‹‹xŒÁåÞŸ5V:1 ¿ÌdÎÖßœ‘e×Ã]Ùz@*ÄnDd¦Š·ñŠu'ùè|IÅÊMÐeS×ô_“8ù‹íôê0,:»ªF'bÙÀùC^ôÜNBRƒ‘6ÐýÝŒ €O=wóŠc…YøAtZ3°g.Fs$í7™¨_üâÇgßîŸTC…=á+cDé_—?ü·hµ¡-õ±­ìΫI÷£Vš,¬4‘ oÈsJ%]Š{RRéèX3%¼e•˜ç>U³Š¼zôµÛÛåâvIîJÂjä…ßX;)‹{’(W!oSŠVðM"Áõ0œ§g¦ô ”2 =¶î`þ2 »0ðœ (¦YÑ€ŸGÝVU!ëR’§½3Ö™õYö4ñÅĤ¼d£‘j+Œbè<õ¨ÝÍÜÎ38‘åÂpéô]ˆM%~ôàÅîÉwRb2ë;ãw¹ªhhxz'D]¹*2í .GšQ½sËåâÆo¶¼‚Í@˜î6°˜Xa5ˆ"aÁƒ§)#i¶žª¼×~Ñ¿Q!ž–Õ"#`ê r…xsb²âÎÖ|VÎÆJÙ(%ŸÄ‘;» yý*;£W5ï2à îÊzÌy°v\SW«z¡ïc_›%Ëå9áQƒE,ùê@ðnÉ5¼¢ý`.>,B¶y| ×Å´Kq=§äºËÑiNzÑ[ë‰Ýs¼—¿Ü¼m§¦­ÆÉÇ6{IY«¦?M-=ßxÜEñò÷Üå~ºûìÅî7{¹/‚ :¨Ÿo#B»uS_Ó‚c?l æþŽõSl‘Éa¥“‡DÔw¢ž¶–ÍZ'órþƒsViº83ãyëÙ&T]”•¢Õ}c?~¶Ÿç¾NìW¼` f_“qëà©t\’Fšù,ù¥×KæËô€˜ïÝ·wÝ»ÂQr{GÙ!š/‹°wé¹gr˜z=ÛËC)UÉ~õû}/{™•éÙ%L3•¾žHt!p¥þáàŒl²½ïʱÇ-™ß×°³œ±et«õ”œ£ë.æ Ä‚’xKÑ!.!Q´Ò¸jzGz\»Yòx:ÁœmNG7ÆŒvlçÉžû’çÙ†‹&dCmÜ|Phú{$ÛuB‡ò±;&iI¨4:\ÿЈÙ#®,–eÁI"TØÉ—,ºWæáϨ*#ãi5Ò'ô\õZ‹0›Tg•ÕîóKWKž¨‰ß÷y„º¾!ž³ J¡X0á4R0ÀOàÎà̕䕑àƒl¢:ÕÙæiÉ™«û69¿=ÖÈ)j1N²¼é^2ðüÌ«¿äï 옃ê”ä«iôn 8%›t×:%å]ks! `>äS±Dj$(“ÏÓép-¡)fìJÈbì¾Í£Æ†G’°‹t5Z‹Àq<ðο‹Jqª\(´ò”]†(…fl›ÎÁ¾|¥ ¨ù䳈¦ sÀQ±<íŠ$E®;‚¬—YÄešÏd"\®‘À¶†õkOS°zG³@À³¯Æ'èÙzÇ”Âæ[D²¢°R}z¶{pÄ5Ïöÿtöj÷°bÏ‹ýÓÓÝo\÷:}›ž¾Ã'±T㫽owOªkêìp­Fú.é¥1fÊ.iX³é\=0ÊNrdò…æ©ÉäÛÛĢ㘡ÂÅÙY‡”I­uÛ+M“Ñ‘xp`¸C ÚL±X‰×‘Dž n[ž@„úÛN£„wœ{ƒXO¢Ô( á)üF›“*] $s·`6Ÿ­°¦HÐM?ΤApV„.t†­‹‘bØKv ÕôQ£ð"ºžAWœÝ‚&~BïBÔQXTÀt¦ñ5‡ˆ x‘ÌÅ?ÓSp V.ŒYz‹˜¢¼C›ch™Àßxó¹!›LãùâÝ\SW{“ÃÖ;1zP <óÆÈdu_Ç;¯„%²Á.ÓÐ1Eà+àd¨¡Ùût ô3;ô®ÈÐÍt‰»û\:‡@R"ï@YôÄ#ò2­ãûèñÃ8û$HÊ’ì9HªïîÉžã?îŸT”ÔÈwîé€Ð!ذ\MY¦5K‘‚Ùv®”#–…õàVŒÖLIêæªî~` Šðò*U¸*p'o]ÏõlËe,']‘]¬—RŽÙ\ ˆNa+ålJ&¾›ž$q0k{ßDÜ\ã÷gŸ„ÃýuÇXÝÙžFaywU?£'Lî8ÊSª~Óy¹ž².a?ê;" ½I†P}QÅßy"òȵ÷¤›_*1¯6÷èáÎç¿aŸç$]'¡´¶#ñ{©p •Úã¦5j–RjtÕ(S{Ô纡Ž9qŸ|:–|™ùäž¹Ì#“bÞ:†¢Ø6æ)ËØH#nÔÄÛÃj´…JS[cgô‚=m8PôkúNVh8¬4®G©±$P¤­¬–[˜UתôwÔ#m!ŽÁ𬬂FKC»–¡AˆÔ¡âqï­F|£qí^ò‡Â|ò &?ö…và g<ä¾ííy´sOsÞKwómØæœ6Ë+Y®Ð¤vçg´FÊÊâæ"00qªÜÏ*­~¥¹Õú>Ç'=Vpðä z9„5£“‘ƒâTÄ“’øiV¤ì ß¹†Ä:4“6±–!¹¥ÁS#&‹S¿ÏµŸ_U;;;O~ÄÂ6üîá“A‰Ÿ­Tþ«´‘RGÆþQUý5þc°Rñ2Úgò—ó1(fwKlgðOæOÅx&ÕàM¶áÿ¶_wC¸ªF4„¯Iu±lêžP`P°ª XRÙjeõaiõwÕÃqõWZ¢t¥%íôoÙ«ÓÇBd’·×µèÉÊ0ðêŸòÛúŸòIó™ÉÇrOïÿ– «yÒyeasœfBœC^1Ä"]sK˜@žL5`¬Û (Ã7U )s×KwÌ9]Úk¥pÆg3ïÙ³½^ª…íè/ÓÝ9ê­ÝÚÜwÅ*Âè"‚õ›i)Ó ¨„ÞŠúª1„ª—k£å²éà7\Ž-ÓFÄ2èøíá÷s¶7Ëï‘«:£ ^©êž£Šjo= Ù|TN î› weõ¤(×D+!â%93¿†ÞG–ÞaÜsá•ÊŽË{lv…ÈN•I¶#ÓUðNG²µ ¡[gâ´¶¸aíè ‘»×ü½RÒø¦©±›”¶cÚ[d ˆ˜&,ýÖD/ŽB=¢àÜ2iýËš"xm9\´ìBâºàÓˆ~Q’aôµW-ÉÒ8N8 Œ‘]·n8Ò“†h®*f®‰÷\¥*ë Êà}P]Íêk[Éý?ìžïÚ¿??<>þn÷äøÕѳó§§ßMxÓ!Mزé¶ǽ ž™n1»HzsG“ñ2Ëöæï¾Šˆ•ð¯Gɸ{õˆ ;™v\Íã€Cp¦ÇOVe€…€-”vw‡» AäþŸ¥ ¤ý9’l$ª³†–<Îô(I´N×âµ ÎÍ@lëÞSäþÜjÊçÄ6‰ag ayÌÅ®wYSÇÞ¥=EèïE›šôª¦MY.—ùðˆxþ2螥8ÇïÅ1btDëyŒ¥“©¹gÊëJjôX,sä$@ϱÈi®» ‘ÍDË™5ZQ;¬ËKçС)"ˆ+e “¿¡â¸L¥·ÕfÍ€jY';!ÍH‰Ò‚¼¼FâÆÙtàž$§½m·0w~’LŠödzÆõ­¨CµªBšlwš¥¤xËcì SßÜ4sIrÌÌwÚ@,%Âþ¡} ¼}»wÅÁKõôÏÕÑ«O÷O|––xÎŽ»ó‹;¶Ë?Ö•aê/?6É|ÜfÐÿ†^LÂþ^¯ýÇgw¨WäeýûvJzu»úøŽ½]´Ó^ÏPm`¸á¹½~¢zç)œšD¶ýè°ù¬„¤•¹8pÞÜüB ÆLn­Z ž¬4ýõ*Öæà…d§¤ÔwHÇ%‚$’(DãÉzE™ûavRŠì†_I†üg–àÀt”Kºt&dXÓ}†Õ:qñù¤^xÞB3_O,šùŸ§)pšAuöz<°€¯Ùtµ‚mW6C£qÈb ²)0wè#ˆÆ:'˜÷*)1 Yx.‘©䎟µo)©©áõ¶ZdôÉ{È×#ÈèÅ;ÀÚï+%S Ñ’žkŠ@Ë"QhE›c½Ö›¹FÍwŠ íxÎØm¡³\nñŽ\•-Źrâž°g‡™{8c§Ì¦7tÖGðÔÎJðÿ)A@øüJ,ÔRa%x¿¥%xœ“(7®§JL"€·‹ÇFÂXµn$[mNü̲‚$ H$P5ÌÐìtNWR0¾lIÌ€+;ôù$Åa@⵫~Doó%lªRV¼×‚îL(W¤È•™—“‡6×|‚< à ÎeÓD\·lá/Âx25ÑÔÓHÎQP!)PéíAÑÿîMƒ#L,©æó÷Æ/ °+a‰òY‘+2ôÖ¦¤>83À÷&•#ð„qÖ.2aLóú†F~Ns€c'åHDçà ·uw¿B1öëïeájJ¯ à˜xدföË ücQTœbnò3K¦žYl˜‚¾4‘6Xþ²”ÈîÙxZ†—©Å߆rî‹Ûµi=úàÚ•]‰2.Ħ7íå\Qø@{Ç‹^­o§ˆs‚µžÓ(áá¾:Âc[Ex×Jq–ª~Ä»ùþ¬Òs²àϦmOaA¤Ï„ùÅœD•΋zÈq“‘J·Xtß±%ýààÈtßÜ.[!gˆ4etTaø±¹8 J°‚ôÅBtp´ Åj–Áš¸X?Ã%ïÊ\„x qq.svLR_øRŠUnè2O|°.ÌŽÍH/…µ`œd¹DÉ«ÊìC’Ï,LÃVŘñyõU õ ÐM†ô«ü­ð¿ŒÝ„!û#m®{ò-r$ᙟf’iNöƒ™ý€Œ›)è–éÀèFˆ««ÍH3»‡¢XóE¦øJX¬^‚£WÍIø7ú§ª€Ñ‡7Äû±©Ó¯Žvÿ¸{pH•«Ëü–lÃP7š 'ׇ^Ð@”Å6ªû»ÞÍ<]FUè=»´J¡‘tã@KT¿7dxyÝÚ[ D& ±y7çꚦO n›Ÿ„:vîE/DDnî-×·Ôà ’^Im0‡Û¢bŽ&ýýˆ1@ÌŽ½B»ÕáÁéYuüH–ûH€=Cm·¢ðóÐ-êõx@“Ó#óuˆk¨K_|Èß×÷h7<;¤çYÏ£Šg†Dvi1Û‰ CŦÔî`qÉ=¨¦ö RÚq‡ˆ¦çIµêáh%×=8.!ó§f€¸‘ TMvAÖUŸèA1nì­ ó¹¶Vêæ..*h1’˜ í0º±úæPfmr@'e¨Hv·!² ]¯©©×R>«§æ `k@ Y Ö–ë„n`¨Û“j½Nõu—A†Ût¯åézÊ+k4ÌÏ^L5xÛÖ•c+‰5ÜfÖr{²Ïäˆëvc}=ïø¸¶–?É 3 ©rMÙ_}‡nºy:­ÍùiÝÑBkK;"ƲÁjppµuVl»d÷9£‚̼–òj R'ÃêŽÇ VïEßL$Ð\Ò#\ƒu9PµªïÚf6í1×¹¨PýàGdн!dáarp¢m§ž²‘ÝVz”vX‹KÙ×_+O¹ÿŠ«KÎÈRt33zàQï75þóбúŠÿFHé¿ÿÒ< ô_#ýÝz¢HÿCÁ£³àoÏw‡4û‹P]Oéôë®[\¶œ9’¶•SmÓÝ“û–Ùù1ÌY4ª?_Œ¾þÝû÷ïÿzúÉxgÇEWn)@Êg%Q ¶Ò³`ezl0v¥þ<>ø;.à—øÏdÃˤ<{õ’Íi‘t«^GóK7JJQ¼çžsÜ;oãèë_jê¯- ‡(ÝõýÜ"_m9gY¤È4/p¬ì²jè,3 ?™²"냋ýÑ»_üË«ý¬Á• om°Î9×~åí¦=ôMû¶‰æ¢/‹nØ8Øhi[ Ó¸“œápÉå½¥Rv«Tº^$4sÅeÑ•qgÃ&Øb°Úbm ì,œ—ÞÈ ‚ΓV—€¹BÉcæ*õP^Å€]šUŸª-¬x P; ž\˜©oœi¦P &™ô<`Ýe=7š?!IU8°õÎXKx[‹o-œïi¶š¡H‹pѳ9y®©/%Uxè|ÚÃE²®l<¶k³ldÙ&RÒb¬²ì5+Kpƒø´~¤7dƒ÷fgœ3¹·Á£Pœ³¯ê½)hf:[àÅÐ{n–a›ÉèÖòè¢EGG_ÿ¤%jzNû.½Ñ “îÚtõhÖ‡ ÚÞ-tOY¨¼ò#÷“XgLêÐí@¢ƒévØüXä;TNÙ§Ð#ÞXós+J .õ«¦UIÞxS W §‘ó\J”]ƢΫHfÅå¬5• ¨D2ƒB4÷ˆîê{æÙC;x¯%DÙ¦¤®¦-²+Þ¨£ýïµ*Õ÷gß²ÖzpöŠh=6ú¢ÚÕzµQAZ“Úƒ(Ö3Ý)–|óþ#õ·ø3­œùàFþ–u”s­¯îì2ï­hl‹õêv½ºã”~ÂæþµÜ£ân*)ž#EØKõ@d}ÞÞU…NÑc,Jç&ë`È(ãYì j–b¦¤î¯0/VuIî56×yÜ5½Ï¦©Çp{¡"½Ö¼ÿºr|~¶òâàh÷,L\òª¤•Uƒ²Úõ||I‚¥ˆ aI3Š}m;qWÐ%æ]åìPXH³O5¼Q‰Ú3k“´ ÍH–›¬ÜÐåSú ÔîèÖPÝ\ÝLs&;HãþùÉþËÃݽýûGgçÇG‡’3æJÉ.©Ý±aùFÝ8¯;[»º¨n›%ñKkshˆ®§l ù…!>gÃÑ )ƒ<¤p«"A-)ù9}í2‰íw&à›Ãã§»‡±Ô+HÞ¢Bá¾ÇI_Z Ž‚ µÅô Úc4—õ’ÊÁÑadžPC«GJÓc`ªH…hda»’Îä;1ØBó*ýMƒ¥‰R›Ì ƒ; b¤¦0±¨á|’^(Zœ‚»’ARƒŽ±]57•Õ[⩤¥—‹%¨‹B°¶DáÚ *%è™0³V:#Î]ž c 8§'Û“˜ ËC î{¥x/Lbèµw—½»M½Lb+„¾„¡IÝãB±âw ÿHSFPÀ“i´Õ´ÈF»SΠ‚sqWú©&u¬¸I~ž@U¥ÊEà n–wõrÚmÓ·éÅí¬]9…Ç1ÊãÜk.Z{ãÎΪë#+§‘ãLÑ·åÕ¶Æfá«£0~…Š“ÇxãMî;P–Ø®º„(Œ/ˆqî;]›‰Ãˆ A…ã¼ä¥mWæiÚ—:Âl_î[#'&+phóBI«Q‹7è1À‚Ìâ «ƒWHT˜Ë7‹E!÷hwRB‰Ó®”qA¶Q)Ý\ÕP!3×MÅòf½ªWZD /YÅtªàDºéÀzb‡Ç3k×X<¼l!y‘ÈH$ÞX_5OЧšhuðu’¦%<ÉÑß…æ'›0\Þ&#Çt܇D(CôCtÆ+e·L2p H`)²M6p¾ƒ˜«QOp˜lQëJ Wï»LEÚM5³[v”Ü¢¶€Ðr°¾N§IÊ«dc%YóØ,e®²6´hXYÏŽRn¤8Ï•¤m5Pó#™NÂÉm>÷@® ë.úâ5nŠ×*~mTî³FŽCrC ÉvžÏXï)[öiã÷š(8&róÎÕBôØrÄUGÔ7®:'Â7+#ƒîÝbfÙ[â=+fê˜:"ÛU$ÎþL¯ÕI©D øÁ¹ô‚3:ÝD å‹»ÂÖ ~bLÁý;’ý°‚†@ÖöbJÙRYàgZ=SFU›ª],{R,sQ²‰¸I¥Sí\våtÑ!Ãa»Ç á™U³&¸W ÀÝ™/YÔq:y²ì¥Äo󛀗`O׆¢¡®9ªWÍŽìÔ=åBá–¾cåL¹„“+Š’»&Y^?äÖ»×+g#žßþ‘-,LXáÛ|e'†(¡Á %êL2¹ïÅ…Eðºs¨Oá®R¾(l =é*TJxÚ¼S6ŽÌ¡¹Y|Ïqxn µÄu÷“.»–Ia£åÑBc2’AÎÇ|àfQgD»*ÀkÆ‘ZkTäjð.g/‘#à ¼¸ZÕýÔÏ9ìÔ£’6É·Z_Ã2óÓÙ‰Øè~ÔOËhçî×<…ÔÃD!L'‰ýbÁ‹kþÀÌ(yþd³G¸(rÄ.nÝÆÄ …€òT‹[Q¼¦ym—ƒœáJíÞÀ¯×?1«:NË]ú°£øJ0í†KÔ.]€1Úµ‡>5“¢8:j‚òuÄ¡Ñ#Jß™ËpCÎL™?¶Ü‘2M6dÈDfAüÚ`׫Ý[ ~e˦WF8öžÝiC#€YÑÖU¾é¹(oæÓŽ£‹ØêîVâjbÒ°tìîÒàßk…ŠVidlû•Ò-›D×gž´8´™Ð»àä óТ7±ZF|¤O„¯d" ÂC+0p¼RÀ*äÚ4 TÐäIZaw¬ú¤‰~ñ9<ŠûGßœ}Û‹èðõÁT¨ª%zDš;h»Œî¼'p1Ìö¶ÿÂÆDèÍM3%\ÕèPð¥Xå®ËyÅ¡ólfÁ‚Ø×m¾¦îµònlf[uN&—ˆO…$s¨‰ºÊjÑ%¬ð®“M¿ß ŸÇÅrÊ*ù×+ñÇ2f1w ¼Pè*{Iáô’]¢Zö²®ºÛ´qÍ6¯¢âíÉ^G¯e›Ù!o,¹§q$W¥€Ô<¶IvóiѲKÙÉgªRÞ CÈÞ°åêNÊš|¢šCUƒë]-¾BŽa4(_VÛÆIÊtäHÚpÞ»Œúe¸:±‘  “uBÂsê?ª²ëž 1¥jõ®¥XÏZðK#ªžhP[!wq„ªÕ\]µ—­À®Íw\ g½ûH‡&wwvwÂMO QÁQ;©r@’(ÿÃçÛzz™ž7AØ=ôáÛtxµ`T©Ù[Ål¬Ÿaö¤–GOùÊjY¥íÎývóºJ‚Ûq&7TÌ„<³hÞRN55êTÄë­7‡à¶=4]jà ÒkfHJ²iƒóàŽv÷UN´Â‰&Åê´3gD£àá8Þ(«Á‚~ Iú‘°M£oiW(—W改P 6ˆ¿B?“j´•]wR½Vʆƺ·é{:< ½wIïúï÷ˆÄP7«;ì®­ØY³Z"Ój\V¬"“šuM/_Á°¿üeÕûÃó10Áá1ðžýò¯ó¿õ+Í8Á<…gâÙxe*=å>4ðÿlì³Ëž``UoÍÃZúÕÏi‰gu¸¡ó{’1Á§Wõ†óIÿY}OKqùmvz4V^Ñu’R^RëØ˜¼ZøëßÂÇMŠÝ\Vg¨óêõ‹ð †„Ö\ÈžÕ<׿~ù ²¿$¼çNµ·^%UähVº;ÿsÝ.5ëJbǾy f)Ãï4I¥¶1ÿûí°e…H¤ËÆôŠF¨=ˆÛ:jÅVoÉ“¼˜CU.Æ—™‰e¶¾ª/.¿Ú’Ë«od;dë“_>úåÃ_>úÄêæ*ÐÖWŸ\¤¦.>ùj«0¼ÿP¿­O/—í튽jÕ/G3ðûIÐÛkÎË«æÎ,Xs½†*XÜSh.¹ I¢cdy:f+¥o° ½¿²AeS:ÈܣϽòÅ*¾©î3´s|ÄnP™ [VÜ´ºþfÛUZÛ\q@J ¤¡‘_–F]î …wQƒízöáòøí·v·x6i&Ëg¾|jêºÜÕ|EkÂÖÓ-Qf¯êK€)ÊšŠ‡ª¤ê‡­uK®ŠzÞ€Ü4‡&ì‰lÁ·jhEx¨`ìÌx ?•ß6õrLÊ^ó“|²X’¥4ž·ò§×Ùõ_©dò&0õôd…߆/YQ»7µÙJÿs€Éx¢èB@.L¸ÙŸ;уI{¨ß¿m)»z&WpyÛ®Wo;Ëú0Ü)V§`~C‘¦µã pIøYÄiÙ^nPxÊF–âoyQÁÁ"9–RF¶åØë*¨öS+Luæe,i4b‘8µôùN $aW–¢Šƒ§Äß&v‡= „Ÿ«‚ GµY%¾¬Â/ÌØÂ»ÕâÖ ô:´Ò«>õTBâÏËÎ6è] /HÀ´™‚NÔáöòè|•ò«<úl?–¥–’2È­/ˆRƒs檓…*¬h°Ã~¿ò©!ÒÑMK¢›®™ Úh¾ðZDŸ dìí†ÞƒI™ÑQ‚è²îZºñ­¤„Š×z†[Ž ,º•¦ìºm@TÀñ"ëÉìή®b²} ´»rÀóp½îôŒ<&+æ)²Y.‹¸4HÅ ©}½M’¬âå­.g­Þ¼ðêbÔ¡ÜÓ¡›Wùˆ*ðv"¯è¥‚ná0AÏù]oObvŽ–Wß ts’3š€4§àÕæãÍÑs¥þdBJÌ ^w…xó²ìZb‹Ò\\ë3J"):œþâƒ+­”ö­Â•û÷[v³= ·Ö?L’dŠÚs´ã?Ü}ºÿ÷ú+þÙWŸMâï¿zô8¿Ùðóÿ=Ý+¢•âœsf— b ñowÑõM(< …WýñuF†ÈÙ–C‘Ö[“¿HÏ(ç‘4V*؈j.ÅQw\!’% ±1ÓTðD¥á_ ÷¯ßbM=Ê‚¥ wÆŠø=û–ö Ѻ¯ê Ê)czR%sçŠ-—±¿ ϾµRn2ÎVV]•˜ÜšWjçŠq”vb²à³µI}sÑ^¯ÛUK…ÌžqñÝCš±ÒJóQ¼¼KGŽEõúúwóŸáR‘aÒ’\á4´¦pBQXZ¾, ,óñN-ŸæÙ´“à9¸€ei?«TOcøì÷½ÊN@ßÀoEÄ”%/2CÐÓÿ.í5XV9ï¡ãS#U{ô }„%\'!ªÊ¯‡°Ë&êS {\r%4ÀPÆämŠ–ÁÇkê½ßÉw¥Ê¹›†ÄQÛÝ`ã¬Þ,ŠÒÉü’®ìË0L!]ë¤k„L[Dj9´ÆßÓ¦^ò7ñÜ…™dÈ“Hº#Æ ½ûËêõ+>¡‡öÓ¿–¶·®yß²3˜Ï«4T2é‰Ù7ð“ÕiºÊ™¢¹·ì\\èƀߦNÎë5÷v&3 Ze ÊpMFÁå…Ó7F—ËãØ˜+ê‹BœëÕÂ]3+éÀºîŰæ) €®‡d²)­BêW]ñúQLDTOÏëW’ÇÏÁ¯Xwæ„ý¥hËîçÊo1܉9!ðÁ*“È‚®¿„¨7‚:%µ+b$‘­O7Ç–;:-¾—«ªY1mddZ Ù²Š%ä?Âé1vˆ­7Íáábkc0sëõúõá/¡ÇUáH}Þú¶I³¾•LEL òåì¹ó™¼Ú{ÉõᛕãG†2èì4¼š·ð#kÉÈ3tp~¦¢\ª$á9ã æâè,7³¬ÎGÿ9xq e‰“C¶âlÊ>­.xø`ú¶ÐÞ^QÖ>IÒçüÜÎêýJS®%ÉPQ÷¤ÕF=Z“¶g’"kÊ^³ÍžæmQ-×Ä2¬ ‡û§­Û­BCdÏ7IVþv}Sjê¦NÅ—ìUºÞ-(ñkD÷vD+a¤òT6ÒSî׺Ec ¸~”ˆ—mn—D¦à½â[@¬ÃyÓ…C±%¦¤0” ™o½~UׯŸ>}½yùz‹£ »——[Oä膔¦ô>æI¯ÍŽ”´Ç•Z…âC¼wÏΟž¾ú“HiÍÚôÄ ¤oÊo4ÛÇÍ]v›¸‹è–äÕ‰# žñÝ«¹Kõ.RÈlÍfÍ{É8íå*æÌAUI‡,‹©d~ÚðO“B˜…Úÿ:ÿr›ô·üÓOøÓG_ò{­¾ÝN³R Öèýyô%Uiž?¢wõøíþááqnÝçƒ**[q¢v;©Ü»4±ù¡Ð>;á6¹³äF1'ŽÈ 6ÿ‡Ýy¢ÞF€V‡ÞßÍ<nÔM†³MÃ0_R¸ÚƉ¸5<óôÝõ|aÜÚØ¡ÃYÕ@ök½€ºftÞËQuàÍÜÓÑ>û™¯ú´«Ñ ÌORŒNÿ`MæîIs0ê ž›¥e÷SЪ½~³‚Ï ô± 19 gtÂ)ÿžœXóUŒ“ÌÒ¼&Y8†<¡Ã]émiR2;,‹×3Í »Yœ .­õœwu¬aóñŽZs˜±Ä—áˆçƒÆXφ¦ä-${At¥Êy÷¨ý¦UþÝ‚ÂØ*hçù•6xÑšÕßÌ KmŒ‘–;žÀ`”6GüÕ0 :[/‚.Gز*pªºE†n‘t `' F´ƒ BT KËIµ–Y°n-a>æ7¢iJcËX|+¨ø¥e çæHÇ 4DP‹•X¤ÊxE„•Œ¢8òŠn`~†ÀüQÞ·ÞCî–&ÅžC/~8 ž+ÔÐèçdìæ7~0mñ'úC’\E}ˆû»œÍÞ†HM¨e…‡ü‰¢jLÎ ÑÎ={ÚÓW‚ì¨s`”À”ï(Óè³55$·(KĹÐL-]u¡Ò–ò ÎÚ…œÂ¨×®ääøÌûÏ=¢ñ¢X[5+=Äø¹1 =ó\œçrñK† tq=p’ô ®œ+t¡4S>lš¹ƒðRúë¼LCt'¦Z©­Þˆ§`Ñ‘$Ì+jéŠ4˃'DçË*n·˜){M®>~>'˜£#ÿFæ%Y«A*(í—Dì8I¸A+N"?gtª{+RuÙüGsY.ž`ˤ³ñ+²¨IkõÊê!Ý‘ Yý"ȇ'èQ{Có0RØ’°n@! ºÛò†ó9çˆÔ*òÌKSÔ”Snm͘]m8[E8?Çå¡FˆtÁ¯/É%U°þw>þЏ¸»‰x(4_àëê‚4»hš iDs—:údø[ê,öcø>PrvÆïX9îÉT¢œ4¿áµôí†×ÒÓÒ´à°º{ü—\ ˘x†òéÓ¯rÂwžx¦ùQ³{^„€z¸“¿HZÓtDÒ7Ò½ZõØš ú/SíM§M¨÷Û"à©€b/8Go\˜ß•5E`ú^Èw¨­ÌC›ÑEꆕñI›œƒGš;énnÚìvZ[n%»ïL¸¨Ï”“^èC±pBÖ’¦Â£L¥tEʸ*(x1tïåׇ1/ð%!| Ã¥3TÔÈ •ì›EGE@.ÃtœI;q³†|2oëv™3nÒ‡Jy0›¦¢€{õòzùùa§W^ÓËû ßSæåÛÀ0Õ6A‚D¤$³û -Xê÷È·²pŸ’îXˆ•xµý™íž Q…P˜OZ5¯çÕ3%»ÁÖÓ`^“e©€{nί”»8WC²¼€íHvØ—Ñõf[™~Izsn^¹!±$¹™²BÌ-0¨:(ã:'è °H=äE'éñŽšÄË·‘&n†Œ,A¨)éMövõ¦>¿qB°1Ç¢ôã;âZe݇ËM3z“©!ËûZô""l÷±ì›N’N^`‘Ÿ nä }™2Ig"ºàíÕæ5\px!£êª^ZI]ó³L¥îçÛKár2›üZçáùüɈÆÿkM¤ñþ—Œ³ÏQ¨â7lž¹5õ‘æ€ iÑX Fš$…²ZÖóÎ 8«\FèÚgÀżkæ(åN>-c·Ë¼¤á]µ–¢#åÂp•kr¿m™®·è=ñriˆ-Ý:W %P•˪‰Iµõúõ«_>ÚšTé_9s¯$1ʲOŠèH†û>ïb^2{õjÖ¬Ç4±œ{È‚Y°=§‰pÁ£Lɳf›† ·« ¥f€Œ=Ø{E%1½ÚÓ’jÿiöo¾Û\˜ÄOÛËu~ÊsAìÈû¬r>¡"c“¡‡²r Ùs¢«]ַŃ̘tÎ1|–X$©Î©ŒBüå_óÇ^í“m¼ÍrY}U½â:ðx>齯ýL^U}õUÿÜÛ=Ý??<þ~ÿ¤”¼_Wëó¤ž- 3Òñ…AéTùükõ?¥îËö¾üp?^½|yO?^”îïÑiï¬]ÍšlïŸ`ñœrêœdç‡î©ðþra®ªÑ«ó织¯NöGôNV£ÿ3òÝ3~X>)¿Zfÿ-·€„óîpѦó:÷† è]]®Í)xÉ©ñìpçJû=uß•R=§g2>íú¶¾LWWØsEiMmÇY@nÆT(ÊR›vßFÞ¨öMFD0¨Ö½áGéï‡ûçÏNNÏvîo¯Žzûëø’b+¥§@š»é S.te;‘æJ¸ôìOócYÁN\¶X¤pŒî-½ËûR¤/;yþ³»Û7Y–ï–R{À ugU+:€ŒM Ð x‡õ7Àåá'£¤‚šyP¹ÅMC€¤0Ñ"’çÛßHNmS•Ë©Àïy»?Á Êú<“0mÄæBêÏ’¥Ý€3ôÅÓÂgѵï‹ða¼ ÙzuVß@ƒl lFZh²%]y98ùY©JWзhl|Ë÷);ri‰AR6ùRYi¢ÅQ—7 Ñ4Ñéû⫉µym—Œ{NܸæVÝCDIL×>»÷¦[qX³ÈÔ7òq™ój¥hãîDˆ]Ùª™ë“AŒå.g3Ìk¶­òÁòK˜_&ôUkN!/Q É¿Ö;› ›¦õ 1¯y-L±ÿ‘ó¾ˆå·° ¹”«pÝ÷ÝñøÑ$I}¢±™×¬w ×…÷™²uU!6˜Û̀컞B(ù6÷‘*ËI&¦„I#X~àw‘Û³wÉ"ÌSY èõÆn\ ä]9f8}ÝÎØÏÂ!Î"@Nq~µ%åp­lýtÛ%»åaØX壙É*Ë™£¥ö`²×b¥l¢n¥ÁslÏ4DM‚'QC2Špáè<>D”Œ™ñ5@ؾ {f8½ˆÃYb„[KA‰ˆÜ‰&0ù,~¡9P% æW’Ë 2¸ÀÆ_jHƒx2l +ÛÈØ“ Ó {8V}pɽ µÓmüS¤É»¸–b“mNê[P #›ð ÈBˆÒÛO˜ô½cK‘`" M\Íû[¡ùÔX2]ëN„޲ahÎk . j}Ï^½<<ØÛ=Û×ÚÒÕ7'ǯ^¢¤ôÆ}\ã–Š?9'¶âŸ]Q:«÷:Mþ×®eç ¹v(dä‘e«hê’9â"®(¯d.É$©mÇIJÁ;Õ³¼ª”e29€ÈA-©=¨¥8á¢õì«`#g{ôõO¦­qmLJŽŸ6ä“n¯Ø³£ùiKîÇ¢ö.'ïÿªÈpD¿cʇV'VŽÄŠ–ÒÓÓñ¢ sc^ÀÅ ­Æ¡ÓYVí?«*wÁ˜-æùfûœ=Ø>º–Îs)¤9æAê™d-î…†jŠ3²ú°ÿ@+~‰¨±2 ¡è¦V2Þ&¢Tàš‘h“¾ `SË\pÉ\µ)T°óš-º,””Ë,tiM½¬MÁöj!ÌŒ•{zWeíiÝ.º|½ † 0zÙR¥ksJz+XnP„ï¾JÒ>weYѶ° “jR. ” |»F­ÙÁš|/´køG©†L8Á&ÕXMàE ü‘*Zˆ]«zÅ]ÑÕü(j©v©ÔÎsȽm5 ½S¼è›@¡'^›#Ë›”çGÏPMøð°zy|zz@°Ñ|ZížUÇGûôùWs?Vꀖ.s×|zLÁk)dõìz‘ Í77´í(çßI¥ah²vzž.ìNcç©eíx+÷}I@¶SJB¦ûIsmµqL¶h^@øÏ?È®^2ˆ*Ž‚°×®%^o×5B¿͌É@ŸXÓ@Ôtëu¨‹áÅÑB‘¡Ûâ‡Ùzz ˜ïú–„BRQA"Ó5=¬dÕ~ÛrßõúÜF ÍõUL¨Š÷BœCÎêz7RCŒ^{ª=볋½#VƒÍ Ή€rð~ë;e¿A\╇«I…SõH3œÖõ*Ùx¤Qs*»i’`LèÖ)ɯW36—f˜eÞ×Iw woŽmÄü…0ÁîÁHÖ¡³‹¿p)pÁY}»ŸÎ2ý}÷ìàûÕóWG{ÙÙu[czUËËþ½¸ÿŽF÷àÝbÉ”'YÞ18¬—Û~*ç$VÛ‚J©r W«Û,äk‚(ije©Ó¬»¤Æ_]¸½dnªMÕ`¤žó%{Š4;¥ï¤ªg™Wîw)ÇBt¸5 õ’2a÷‡W¸7¿'"­†Gcp©Ó€`Ü}ä«xÀS+7ÑŰS.nLb‰±Æx/õÞ™I¥5ßàEö°¸$ØPâMC™IP£Ù•þÎ*^þв²ÅÉ’üLZ´P*ÔiìÝåºëBp—ø×ú +lC5ø˜Â·1wwoã"BüŠDÅÔîòFÙ ’iw»ª©ŠOÿme€,2öl®|;[w6„oçÐÁ¼¼j¯`\¸h<Ä7S2ôUýglAÉØÅïY1û¼ã ny dã‡P%†D¤;õ`IVöí¶6X~kFukŽÚDE„ðÝ"Ôq Ý'seÉUÐÕ£…ä¿T裴Öq¹6¤§?~X5 4èȪ©VÚÜMvU>ô´ÁµL±Eƒ8ÇJŸ¨ÍO‰¶dg½@ªuÈ=ûܳ6«®agQOHhuγ$'Ž\bÌÓ°·üÜëJG+Ö˜*ÝMJ$c㈴°—#P‚n‚wèð¿=~ø—'ÃW‰Ü8Óê«ÞÇçìE}ÎÁö¬¦¦——öŒw ® Îÿ|ú ’UÈU‹K"ÁŸÆG·@„Årk‚G±‡ó !æÑ£Þërkëƒ-<Ì ¸D[­uq«‡EÎׇ[P¨“ò`äÜL;ݫŜ?ÅÖröT‘÷ó„³+™îî6îFùþw¢%„–h¿#‚ˆ­.g0êñÃñ“¢×#ÓYŽŽÏ8:GïVM‡e¦†ŽY°\´«(ŒÂ>ΤËzÎdm(c]Öl¥èÜZšUAnX}“Œr€n1¾_…øähïÛã“ýgþ`ïøåŸ5–|ùØß;3cýè™=e…]ΞZ6þѱ§ìãsÿdÜ—ŸœïžžížœÅo¼XLÑ»—釻‡çßîž<›ô>==~ŽfÔµý|÷ü4õölÿ”?NJÿÅÉ>^¿C!¼™¥2Àu6^¤®"æ÷ÓKÈ”Å{q tÓw4ܸ·Rߨ½„R‹W ë '*Ý‘1Ç7WÑ]|挛:__ÕÍÈÐKC·Û}'2OÆþjêtOÝ»9KêHŠ‘4äIêÍ|jaàR™vþsõRñMÃu«ìj%ϰV€CÖr†Ï°R¸ûs R ¸RªÈR˜D; ~n`Å«a© œ›€¬âÁ©£åŒ™óE˜–ÜÏ‚;ó·Ââ—n³E54£¦ª Ml^!UæTUl Ÿ/6 Ö’€~Ö°þ—”â<™Oï·PÈæØ­:Þ9¥‚¹y80b¾+4u<ãº'ëž*˜¸‡rGIqq½tiÇ‚&;˜œDÃ}@¡yRͶ»æúƼ–÷®Í‰6ÔMŠh ·²Á’nöå©J…ø^ø™Ò3¾Þû5–á\-n^ ˆ¯z yFmQw¬æ€,iæÁq–óáÇ7A?ž˜u E>[•°Ä_xùâŠÓ‰×2ÿ ï³àR,J2 ΦܹϿ{¼AWJÂyœ…i¡sñékø„û ˆí\dà¤=„ƒ×®,á$Û<&åC²Wo,ºâ “‚(\¯ñI–¾¢´Ì­ƒU4ã…ú"þSV Œ?xïBU ×à*ÐÐ?ô@OÏÂ$àý³æjeb7¶Ô€3N¨0Öæ†|ÊÉð6È®£{ÎÙ©‘¿ÛjŽœ!ÕnÃ^äBgµ±¤ê»¼áâç”õ;/ QDÄ›ì&B õä8p$½u¬bôrm‹kRÞÝùl dùCFHFq—åÇa}Êm1“!ü(’@ÈÖÕ$Ìë`‡)X¬áhþnçÁïÝÓÙÙ¼©kÎ/‰ð¦1ü K’¿O}×d\Q¯Yþž.7ðìÅÆT´y5-æ/½ü™/ú¸'*­P  vì[.+x"[ì™~V[²éeØö«UïhêªÖ úC±{ÅoãÁ¼DR-5Â.}ÊûóÌÏx|Tm—Yj³Ùÿ²Q¢¿Ô‹1TËç)ÉEÇ-%ÉÚ‹•î=i:»eöÒ)1Oªñô]ú:I4ôMx%þt59 ÙÿŠ¢Õh=7nR{ϘóL]Åð ¼Ü6:GýÌ~÷H:¶)Ø›;ÞŽi KÞ;¼Í,gºƒ2Ø­Ä|²ì(y¢vp«§DÕÅžæ×±¡Øôæw‡œ »wCûF%B+V¶³MMÿ>‰9‡3J5®.#BfB+ëmGJ¶ó—¢ºü*³-00“æAŽÿ+I¢ÚÂe}ÓþXK†ÒšÙ!Œ\›s8[¥]Ïs ȾkHµï ;»³/½PkeÊõÑ­úõô“­ ŠF€šæšðÉ_i/f·MË5‘Ú.Vý0üT®ü1·3Ì, ÀÆÃƒ9H&0BÉæ@ uŠÜ‚ðÓÙÌ4‰Ðfz›£ùªŒñcøz (òfÔð£ãóÝWgÇç”ß?=U½ †L–ˆší¼ÒÈŸúXäìþhÀ£ ²>hˆžL}ƒ”½º“2ž“ÅúN¦7¿M:—…ë˜ÌçĈAäuNB \ɾaïu÷ÄáÁÙþ‹0ON†Ç¯`Ú«ù³Ž\}xÕÜ”š¤Ö¸$m5ì¹#e] ŒXJ¯÷8\RÖUf:\ î™zÝ·WÂðöŽžmžXøÐàHÚËjÐ(3ψ ?²YÊž›p¿a¯]aߢÖ5l1³ xGÜWŠ rRí{×õ軇ÏÈY˜_†ÿè=Ì1˜^&ò¸¼¤;wΗóÐϠ͆Ý`Q¸ohߟ"!ôç x®¦Nš™Fxæ™÷Ì ;¾zîëÉÉþÞ«“ÓýÜΩÃâ’¤[_¤E\QY+s†­ÌË òÈn(F”_×Ì®*¯Ï¤­¤ÔÞ.Û·@©K9xË­Q3TyÓ‘i6ºò…9£'-õ MnA ‘]dÂ~)§*æ‹‘ÔÜ þÀu©@Ý%Í»7… =|ø° Ì»o®ÁkøQ.ˆ€eè%_Dë_1ݦ˜“»’Šp®ÕWqw ½ƒQR$r¬_’ùJ¤O‹4 ßJx¦;¥`@ÏXlÐÏý¡ëHnü| *sºO°˜SçFÆ]¬ÛÙtôÙxbŸhfYülšv‘|Åßé³!ÿ~Ë,ºö½ÿ³ƒ–ãÿ^s_ú€º˜nûoOœUóMšîÛêÛúÇÆB'ÍŠ“Åèf5oAÇ”–d/É›5Üx§Íòm{iûq¯¾¹X¶Óë´Ýöç׳´ñéM'û<8˜ Cr¹ –ôËêÑo«ã´+éªüðñÖÖâöޱ[£ËqúÑoÿy;}ýyìGZw{#½ˆÑî|þÏÕПâMC?A»/Ò$ýbûïúGû÷ôÕÁá³Ô|þÞÖs🛓âzì÷NH RbD0ª¶hÙV~Ö™·×`.mÞX¾CÛ#Úódd¥‘R;h’]h$gZe^KvH2bUûÇ}|Õ^Ó É¡£*Ö Q†ìøh&Ïdœé¦…|¿=k -þm»\Ì9é°ÆÝd3$ÃfÖeN=©€xa5åRû§ÀªÑqj½è ƒéÿï½@ _$ÞGân%Û™@¡èÄÉþî³ûN¥ñ«@Êux+&Íîv”½PdžÇÛ¤9É Áµ¢UiyÑ¿e1j›¤%êrõžî. í¦+ñ3ÎEdï†Vx‰»án`Æ(y­:¾mæ|qj:r ;Ö¾ÂȘYôMS(™/WÁ'„;œøHŠfÍ)¦9®Š«é ¶.È{9Ÿn Ø×Oã£m2vÎŽO·±ùw¸°ª_€N°‹–ž TXj^ÒÌɆÀOZ6åjdwIŸ ?vo³g•¢]x¡3Ûg©Ñã—¤<Í ('R“ û… JZ¾R©˜]@²qëQs´ò I³á U õ²cêÆ00?u×­%+¼¨i_ŠƒXú¬ß#¾Ìýͤâ¤Q¸Õª_P¡$†5a‹oŸÊŠØûÄŸ4K%âT¹ ¯EW‘W0+Q±eÒ@[Rñ4æ+šË¯° âV™‘Úu÷ÞðŽáUêeרÑQž™4ih{¢Æ:w_‰–°¸ÓÔEsÙ-¤<0Ü‘7Ø¿0¨ÚuÍÐ̤]P’M³ÔB0êôÇÆXNrº4uCç+ÛÆ£U¤¢­Ã“ïÉÊj°ßËî&;uZ/m)Òø¼ž~`“`„cé™™¸YMÌà XädËìå•ýÔáO½kÛÛošÙmÁ´aMÒè´ï`󸵘º¸ºÚ²‘£p”í/$é]4×i2qslo7LB›æg{;Ývô aÍz%Shƒ¢K$Ó"Ñi-)Y"Õ×â²-…ø$]–+“X$tÛÉÃðLƒ¾‰$¤&!$ë…gpW38Ê£++5Imí(hI¼,Êã,–ˆQññ×*2ñÌóEÿÙ©v 7¡/ r”ˆmëæ†Æ¢é ò}Ÿ¼—“õw¢²ô›í§g“êѯé¿Õîѳê³ÇøëáÁÓ“Ý“ƒqûÔˆÿ'Àç²t•ë(ýúùöoèE$ Ò¯DÇÈr\rþË´WðÂ@* Úu¹¤Å¡Â ›DŠE3#¥Æd'ÛôÓ,ØK_gÏS-Ì¢eȹjU®ç½[hÅy)ÊÉ—ƒ}ôkNÓöX3"Ä6/ƒ5æoÛ0¾´-ge¤u ¿F†gÛn½zEÈцøì“½9¡Vœ˜üYÂ?–†ó)ýç³Ç¡–ªŠugy<=L UÏ 2:TZÏŽ›‘ L:`kt,êáÞÖÞøÕgËKF*†qþRzÑo0ƒ²SÑÍìE"8¤¹ßØwrúqòZ£°u+mð–|ˆ-¿S…2Ñd@>ØŸªw˵[—g}„³]ƒŠs¿NZupp¤eægÒ»N×!ö¥Â}Ñ¡?À!Á7Ï7J¨ƒ¬ÍÉŽK½‘ gCËäÄé·»'ûÏ NÏvÏö.¿ÚY]35RN;:ÓKèG®5`Ãtigw6a£ 0p¦;T±ãKÊ>™…RN†–ŸÔ.™Ó 9Ðî……A«9¸òdß '·6¦¦r3ï>¨l6‰ðÎsØL•æ|€¾vtl‹áK"õE;ç‹…"º 8ÍæGœz=†ÌómËQBµÜI(×U&›Ó6ä’E³vþC£kƒHî«Xט×>ˆˆ{^Vd.©w”¶. IÓÜ^.}MAJŸ\î„”fOYÄæ·Éa¶J律}åWxþ »É^Ñæžî~sZA)& ÅeÓá3|õÕ¶ì…B—*¶EEpÊÛ»Û7 TªJ›Ù©ŽI^/»F\qPsø¤ú‘7ž4'lâ–•¾zÒ`ó]T¿­Û™eÓ°Ù!þ‹WG{ÇÏöq˜‰úòôÕË—ÇÁ/zã»â=‰…QãššUV-$õGÓ®—âî#£[O{»2#Ú8å4”³IJ‹ç¯w <ÉZú±¨Å\ÈoóʱeÜ]ÚÙ*¡1FWfEG1þÚ-bÞ¼:ȘQcêYŽ8L›@<ô“rN<Þ›PÌ`:âÅïX·ñú¯¸ÎUçùì1nòéc’ù¢,ü”Ír2â&Ô–T—6ÄUWvFD¢LÐX-Ô¼Ò$î^®jÁçrÔ„lL‹ì`ÖGÒËÇZ¾,Üa‘Ó”üK”ÑH>ü7wE!Уý?îŸ œô‹0a6ß`MéÂ|ÈþQ™é¡|f”cNùõmž>|ÿèáUúcK@̹yÈþØKä‡÷Kÿ’…µnú2;2ʃ¶»î¬ÔmruTkǾœT¯oYáxý'¡ù öÕ)H´×äP /Ò‡×ñ¦>J"Uœ¨°j”ïÿ†$ò6›¬’ëE/ÒwEubïWû Õìï)c¿Åû2½›‘ì¯ß©ÆèZ1±Ge–í´Þò=·Á†5F¹,tûÅ]«T±/Cu™W¼·ù¦.·5ÝTÙþÝKËgþK/auÇ;È»# kt–Ì›ÓÞKQžœî>=$%¡_îWÇÏ«×{™Z÷z¯,ý¥†ŽÁ•øÐï&à'÷a}Ÿ„Z@ëyRÞ¦í%sFeµÁÁÓ™ñ·FÌPæ©.… _)5ša63VœzW˜A™S¹\SäR‘~œ‹‘€9ÁR<ÝÝûîôp÷ôÛó=ZÍÜòfü‰P‰R2àiÑj¾r¶)ÛV¶ÅqÜ×¶ÕTØöÕ'&# `j€¿ko,«EÃa™˜c$˜EtF¼«¿øÃ«Ó³íƒ#vàî¿xyp¸ÒSþìžívέF88›7ÍDYkÎ#C&ŠºÇþ'½ËýT6ÒÿhWyˆ>´í”%8ÞÒ¥iZÜ)¸ª+ªtЮšK-ñ¹p@({ëõ#$¡F*Y¸ 61Ñ%2]ù—Wgâ; Ñ.Ö+’Ã͆a}Ex2ûŽ×‡¿íª4¦BÉ‘‚ 6,ô6ÈÉ?3Ñž[àÞ†š¢ø.Z¶eÈ´ó )ç“Ö/ÈîÿaÔNôðâ%41ôR¹T§û‡í|ýzz´°Ý•j¤Tú|–¶»†®ãË ¶12_›Ë›æx:Ä\&ú¢ó˜bæjÓN @ó…×'CšR%Q¦“Œ½Œ× Çû?Ú‚ôCÐ/9vsDÕï$Q ÍËšš_Ñnœ´qnÌ ¡Ë¢$vEA¢Üçò ¶²óµÉ?CRáhÿûtGìW'û{ÇßåÜ6Oé¦+,uC©5o®ˆ]pt˜48ן€pWg$#‹›žtÐàÇL’0oÞÑwXI±Cv˜:¡±Cs¨Z*š4“Ó]ÖËeK•y{ïÄHf&yËN„a¡Œm·ÝöåòÓZJþùpSÙ)n½{›÷tYµ”0èîi›j‰%è<ù}·‰NÕ,bñTãÐàÙdq‚N\°›q*ò‚8ÉÈÝöQe¡Ú;9|N3*”©Â”ºvÂt¤m¡’ÄN&Ûôm×· ‡&|võ³¦\™Å”1–køÀ»êù]ö:áÀ‘„/ßUIå]\Ï £pžlêÄtif&iðä6ÐÍUv0äÈ2Paw&Dÿ¯õÝ~!ÞÐ_³Kì i§5?¡Põw>6³ò˜ÁÆrÃµË Ï@‡ñƳyÛD±«þxV(é’D±Š%Ûø“‡>OªçÏẺ©®@G‰Ï÷ÒçGû‡I ¢p9õÆ âôýo¾ DÂáiÒWtD!¦<ýàñÃǿѱ/O«}w½¬oß„ßysé׿eõˆ²禩ÇX‚ùzVlYˆ£W©çbz},g“ÊÕ*PCÃÛnæƒ,ã9Ë’ô¹°“$û@ÃC9öúÛæùéE܉ãy™Ôk®ýA‡œéIh=ƒ­•ôbƒL3ªP “âö£U ¡‹éûowϪ×'JÀ6èÅ☪Ȣ×'l“d5Ï'¤\¹íí1»‡fsK½“ä…gõ ÙJŸÚDÖ~ûUùJùYõIë ì‹nÙ“9! ½æM=¿n¤xgêJ£ j¤K–/;¼1¼ÚÞ[)M~ßÐÓæ¥Ïb{åHkõíîÑ3XšÉfúsu¸{ò;ÒpùÂ}ÏL8õ!”pjHÕk˜†ãüb4ŠÝߤcÎÙ)—;¼ñ{JL+*´®i☊ ÑÁU¨y$œøDÝi§-‰¸ÛDÅþ…ò4Èâ!ÎÈ‘J”J"DUï›hQ.zS¿ooÖ7YíwÖ3ˉƒ&Å U¿þ¼"—d‡¼0ã¦u‰®®Ü*c¾|Tæ%g¨š†Rˆ×íuM,ºæ¹+ù£à²¥h”2u½_=j«å:íÒ†T;†±rkß÷2~­wê]ŒŸ‰ŽtÛð¤.–¸æå’Nç *„œ’+ì"ÊŽ!™Ûä?ߦ©þê³Ó3¤v;­4JøxR}†Sø¹0c „â<`InSn%-àg”´ˆiaák¤FÀSO{¤¿µÖÂN†äP|Ïæ”È‹ÕÔ,­ä’ìÄï‚dåÀ^Fgl¶¨§1 2$6ˆxFn8»ˆÚÏbŠwq°VÙAŸkª"üqQÈßÇìA6)Þ4õ­¥f Ó¤2‡³Ñ†yäx„n¦Ó˜£ kþ{+†kùb#ñ“dÔ(Ó¦¹m´”/ê†Û™TÅDëÒ1ã8 vÇäÉé¡îrR£%m¶Ú‹ØʨÖ¦G„”g(¹Ÿøå<ƒ½—}3»9#“ Ú5½k”Ðzލ–mêÊcÛêŽCà®`×GÐí¿û›–×·waàóB<ð†Hû ý¼ú®}šÍînzØui.™H± ¤\¶õhk0 ©·ßý 8K¸)0½èçáIâ§@•”™ã±ÿ _tÙP¼ÎeÓ7CgN@•oÍK#M·™lBëÝrI‹é=Vš??qê.•aG ¿˜Õë[1ÉÙÉŽÎÕ…'k™FÕDoà+-ðìG-®/úà…8v¸V¹amb;‰ÍÄ}ÂuCþêÑÏ•°<¾uÎd¸3ÀPISË=&7uî·ºË>I5w%‡ŒÜ6^÷¤au@ùÒ³…Ûº"HðVÅ&\'yX¦Ý{á&%p‹ é2ÃqRtTz¡_$ÙB€7Ϥ ÜyµÞrˆ™³5Ùua¼çÙÜñÔ3 ÙË<«Ô1ƒ†È»=Üùì¡BØC޲k÷’]Hm™Å'+x =#GQŒ"-ÙOH":[QÁq)+GËrc}]ÊVl2òb+:7x¤á <¼tW¯7ÉB ŽK{j¥ð®–è½>åPqógÊæwOvŸîoK ¦Ãããïžî{pô¬Ú==Ý?Éó!S§/š7mÆLƒ—BZR•4è9 z:gN¬L[ÇÓîÉ@ÒMÌi@ Ð|‹j…ø’úDŤô0\B‰ Aýw‘î«dçͤWÙ…o¢ˆ%‡ŸU5XùGiøø‹/28æ2• D˹àˆÿðÅšÞ¸&hf³L²-S»¢JQèPò/îŠÈ-ÙKÍž[³6ùÔ>mÒ¬)™Çw•L\౫)£é½oê Š| Ác¼FТ±eYpm+à‹ƒ&²2ñA;6E»Ø±T«vwïlÿ¤:£‹À}V.é ¢Ÿ\äAˆbÂÕîE:@‘ ¯Èþø‹_ï|sVkÙžU^ÎÃ$JHî3"¤4uËËO%螺Æï\îÐ*P¤ÍÐ j÷tïàÝg]Ê#Ãшeá{Í"2Cß½+ó]Ôiî@£Rµ‚€™®2SšÉx@Hì­ç¢‘,Ö.ï’…)Žx¶0iðóæ]>ã^"Ê*DŠ?¢ƒÍ Omµ‡*o-¿šx–S–þT›MñÒg•µ¦'-2&$]. „%zïc'SDA ‘¥‹{^WoRÄ2·¦2­çe¼âK£w]v½ x7LQVzBzò뀮†b{¡Dº9-PÅ«…Í/”Ï›kœ+K^©ünÊ+ xlø©Ê “¹âC§Éz· ‚h¤ÑÕ„µ±øŽ–霳ê‡ätÞ¢:™¶ 2À!E^ó?&QgÙ——áÍHSg3:3H(s—_ë¢àßP…\Û M%2"˜Z8KG²€,éô#šRîAˆªçɾìL6JE‹;š´Éõn$ñ‰s#v˜I{dÅbZç„fs¸OGÔ¾²‚¼Dü”4ƒý§{Ïö*‹j€æÐऒó  }T䋨ÄÉ}ôëO?{œ VI¸Ê£üß„3F]y­ç{ Î$A Þu|Ûò…Á2I+ÌÉKD³‘Y¼z’$8?ot nÖ+fåKë?[“»!÷½KŸÂªp²ÊÔH0OÍásì&HÀ)G߆m¬~½‡ï}‘¥«Yæ>Ñß.^§"—ÑéA'QÇ%ÅùøÒÈ%êK† @SÙÑóYjT¿÷©Úò×<êÍ ·½ø]WE-W4`K©öÿ„Â{‡ÕéÞÉÁ˳!üV@>ËË3Ü·ðIekQÎIÀì0¯¯eYfì„77n Τ\M*pÖ} ,+'×áÞ‘{JlX…Z\Â$žÊj*àHH¥È­ÍeH9<–ìbk2ÐYœCE–z2$‡Û2Üí+øEPI£Q‰èêJÏÑ´ÐÔ.fòGõ6öK•È<¥à AÞµ¹{ºá1ŽI%e’e5˜å€9RÈÑìÊ#4€aJy/´ì+­í…Üð¸9•‡$~…M&ÔCØd”År²zºÿ¬z~p¸?”ñêîÇð"ª)‚"êB6•¶óíŒÀDÇänjMjµÃµ0kÈ0µ4ÁNQ&þhpä«ëiéw.~|¬ehñâ Sˆ÷$©Yøiú/~y &e†»±0ldWÀBR›úAzÙÇž:¿MçD“­KоTšG ËA“ƒ$äY q-øn¥ˆ þNµ—%®ÀØ$C“ºWl=‹'<ßO_=N©L‘öÓ›X翾X_ÉEýf1£š„[ïÒ©Y¼ÛRïSfeñH*I9‡o¯»øO¢µ–Œb‘[¤ÛÂro¡òÂp¢]Y0‚«úÖ‘4Ü ÍèÓpç Vè50  pö$þΨ@[€Š œÍÕqRc“,¢¨y 2cð—8Íӗɨ0’‰øÆ˜_ê”»¯×I{Hó É|KHÐòÑ+¤{ØL:O݃—­Vç8ZF¦ ám¢»å¾´™æým­õ’¹é ÁêpùÕžÒ‹^ñüð9Žà§íS­‹œ-Ì$è8m<ỖºxÃÎ`%Ê¡òIVjrs|ßr%Œ_WX@ÃJ¯6çƒâ+t{›—HK‘…ÛÚ!ÿ|1·^àÕT¢d!=ò(ÆÃ·.",Ùß}†,¦òðÈÎ;H‰¤ ‘H$ ñá›~Gdeæ,ˆÄÒ9 †š×ò¾*Ôq’æ0šß¨(ÃÄãØù­€ h‡§MuC‰ ‘ÄJnj%ÈÊ¥p ´î3„Öä0Ypí„ôürq»¤ü:sÉmBn™9hÇ2âºa\YºU}-, •ÈöÈnTMõ–ÐVZ‹’\õÒ;HÎ ®ƒ§§_mmÏæ<;Þߘ+(˜¦aÍ3Iüƒ£½ÃW`ªz¶ÿôÕ7ߨã÷Çî§ÍÅúúcÄt¿Ó3×ûäÈE‘ëîZ$$¦°‡ò¯WœòDû‘Ô¬ 6ÐØÅA®x0Ä-AÄå£úþàìÛ껇ߜ¦hóE64ÌtÝ^'óxúAe~bT·I¿¦¾é“öÏ/êth“ÜÛ2ÝJ$F‹­€/éµG]ÜÚÙ4X~a>dʲ•Ë݆ªåZòËÝjÆmn_;ž¿BJ°$G¾ö7fðûz >ˆ¼MY¨¬ßüÃÍ ]Κz>Ø\zô&ýŠÛSÑ5í-¾EÐÚø‘G㮥ö¤IÞ{;C?Í»{"3:ÂéfÒ üÔh }OKsìmS¼Gm .ÎÝ=ع¾œ/Æèay@f€gÀÍ™õ‰/~“ShÀs}ö¹æ³ûŸ×$õaCþßãÍéœþ,pµ¿Ø=ÞóÅñ³ƒçû'qçÞo[yÊ59 àâþÁ~Õ}™Î ŸBȲÈÏsºÈÕ’(皨›Û¥CXOU±;ä+É[‚öŸÙæTOwp¶‘ñEK»ÅÕªúc‹«êt•–e‘¹ÔÎÏOÏží'U€êyœŸ³Œ‡;«•ëÌpþf¬çH‰ÿ¤vÝ{ôÛßþöá£CÊ2º†H˜¦•©‘¶]àäõ»lÌVŽ÷_³º½Q#­Qfrè›xîlê):LsšLÂdž®¶tI@¦º¼&=ÈD¢¯â„ïy^£HTúÁ?®¦5ð?®9•óNÒ«M0<—Æœ˜äÕӛƶԬ^Ñó¨K¢GÏ_ýë¿;Y±ìÓ2%[Òß½Y<3ê’‘L»ŒJ”ó]¢a¦˜žØVÖ ‡;oZ!0ÉS²ävΈ¡ã *0ÐèâŠvç™»f6ZY"ã¦NHvêˆãäKŒvJûÃóŠöÓB –PÊ)ê›ÿøâyzI³Ly’ì Þà eä7{Á 9§E%­ / ţY3â÷ /ªuk¥„Œ–Ž+ÀXÄI…±Þi²› Wå·’Á„8äz†+ ‡j²&Â'ÐPçvÜ5ºßâäX¦RA`ùò‚³˜„êÛ¯ñ½õÛó ï/MºS¦ó€EôwzÀ–æG¦ã !wa¬ FÞÊ[—™y|Z¤ž†6g¸ž -v]ÕÕT¢øGv5 =ÖF>/ÉO—o3\lé†+¦¼“xÖFƒµìÔÌ粋å %ßX·ä—â…ÒØO/¾°­¯¶²¥A™¦Ôb"8ñ¤ê6=&þ®%ò^ù¡ƒÈõ„ý¼&iYû‹‘ÐÊ™åZ·Ç/ŽŸžîŸiE7\çÙÈ+t»l8q’¶²Z«Ìk¬§¬IÚ¾™51U.Ëï¥&ç¡(Ê!sê–Ü­HÓ|ù‹¢vï6ý‚BÚÛ–™åi°L}9QG€ßm§©k;Õs:ZÄ„LÐOŒ›îÕwI—éò,$P»i¦e½û0.~ŽùÍô Éò¥ÖPïõ¡ þ$¹å9YTÔ³_<ÛgLPÜ¡âq³À|âSÕkpKÞ¼•!ÇZO¢¶ ‹%çÑiÅ ÉV5ϘE33?˜ðÊB„–™£U±e%Dù,½p » =ÃñV¸CHH&+»­àøy¿bX²g(jMÆqDЙ,ï1zŒ ‡TþI›Tƒ¼]­W1Øxpˆ+$(­G¬¢ÞdT­¢~À‚©í 8·Tƒà¼éÅÿ‘,ÇüŽWðGò•<‘(¦—Óæ¬úëÁ—i%T©1ÓT³À[X¦³_Uÿ@OªÑ×{¿KêÆïÇÆ˜Ø©R P¸áδ ‘U5Pžmòê™åxè$J’eÎÑRVŠ©B·ÆF#é¥Y¦,®ÄY³BVÆÞ~ ãï!ÚNK’Ú05KBs„ŒRÙ?‹  ýÕÒh“¤þÊÿSýªÚªþ½úÇêÿª~YýUôÆ8wlPz‚!BYkkÑk&z_“Yø×Xç-5±íBñº aþÆ¿y˜T5]´Oâñ¾¤ÑùWGâŒÍ¥•'™õÆ…¼ ±bÎbÆC‚yý‰‹6¾´ù@®4VØÑ´«çGy!Ô¤­šm‚êªf9·(¹õÀv4JD8ÞW¼_Ñ>«òýx¬[”3U«Çó ¾<>=Ý?=­"D°¨42‘üÕ²3©$%aŠæˆ’=Xˆfs•²F· [kBiö?±%ä+~lè+ipà+}ÕÇì1– ÷n-‘]˸®º¡‚fÂÁ‰ú:i%d£ÐŒ~,è{´ì¢‹¯¢ñ!§lÊTÅ.v+»Í뛣‡}ºöziè™þªWÛ­ í‰7Ô³cÀ%[q¹*„[sºXÉMΨ I´Ù–8é]w¹9À£Ch g]ˆl6(3+^"½[A¬’Æb:¾¥jhº&«Ì$Dâ¹ð5Â$zÍ2â{%›„ñ ’fÐ÷ð¼Qö5Ž ³`ÄšõÂTJÄP3••Ø 3üŽ’|ƒ–‹.²cx Ò½Á«Ï4Â{Æ*oͶW¹þMÛ)©`G7ÇÀò´‘W1½dS/ËÂyPcµOZµ¦§Œ¼N4!7·«NΔœïì¤HDuíUÅéÐU.¥ Ë©ÈÅxÖítwœÆP‚Bj»9¿ÙìbKbáôl÷D´§ 7Ú"™”kmøVËÛ ovv¡•”XájûÿÖ’RÛòyÙ¶´R6RõÛÞ²1˜¾7ÛŸKÙ]CV¡ ÎVrÿI®kS“¾ƒu9¤°ü¤Ÿ|UTK6޼ÎLû ½óp=Gž“u>½Ó¾±,8îõÄ™Øø»ÂrENÜòébNçyk.o"{ Q!—éÜ)|J°¹G¯R~2ª/’‰þùøÒQØlŠÀ¾£:¿s5D„\†"Isí1„euÍøèbµ A‹¾U_Üý¸¥V쌂žé¬§çx¨^Ù‹ÝIÞtó_­¸F„xO-„-ž DN¹ˆ„pšFÌS–A}˜B|*[¶L0”ŽÎuê'å;Í]DÏBâƒã'”U/$­–Î)…læHßsÌIÝ©:hÜ‘:]ŒÙÍö E) ±JúÏ:‚øJ¶¸`L2DUžš9M‰4&?[ÏU–šL2“™ D/7B¦'Eƒ)ö€fr¢ã\ kŽ®oÿ ¹78 M’˜gç8°Ãþâà_÷C6Ò&#%/3CÃŽB¶ ›í5càE ì$ˆÇ2 s8„ÜŸ ðêóÁd <-ÛJ¿ ˜¤ZÀGgû'Ïw÷ Qϳ"A¥d¨IJ\­q%¥9tk›? üh­%¤ ªPf= õúnp›yqÁæ=LÚ¢°ðœÛ«/³9V£ËU©º ?ÑßLÊG8zux(Ül™Àr‡vØ€ùƳfåÒC¡†ªz¸ýø‹/Œ‘H®mN)ÍYQW—;(¹ê¯Þùø>úßå„?ɉ+ˆo¥²2×TÈÛPµ¾œ@™€ÁÙ»Ÿ‡hRLT(}D Æ'W“η"; 7„µåLш9¨JZÔipö¥¦D ¦$G¨º¸F;I*Ku”( õË“PØ»ôb±l¯QQÕ?éz¤ÌƒKš´2Àfõ =+Z†llÚñEfý"Ja'™©`I  éb²S­ÍÑ⨲ÆC (5.֦̗õ®e£€p´ˆé@ÐÐá k¬®µŠx”6‡t9Ä}C´6Å9YÎ|É¥×"ÊzVwÅ~ø·íGQÆQ¤uGÏÛYéÙÍ'²½Õ\5oùÖö3ŸØ¡% XmŒ"lñ ›Ë"ª¶ýU˶ÀL:èWèE^¸R-æàJöñüz ¹ÌCÁ7¦¶Kr*[ ´Ø}`‰ÔYùÅž¤¼îL¹)Š—ðE®¸q@®”ü f¦Ý›µà?ŒÊ¯X¡üË×L¦µQ´®œtÔ…­ÿvkÌ›`ÄYÀWÔLJª©¾Ì¿å3¤é¹&öê† ·ÜMaÿs~Á†r$ÆF ’à¸lbA”çÜ æ}%ƒÓࡳ")u¸´ú•Ãr;fXQšHÕŒ)GÛŒÏhÞr¦@#$–?úº*l)/›h锦ù¤“3&нrºÉ$ƒºQ‡’)t®/– BšgÖ”±ì@†RÀuêÌÑ­“ýªá"8" ÞÅÊ9,YŠ•‚ÆÍš!u7×6Ä=”z/åZÓã:u¦B+»…·$«| Å{<úÓ×RäÍo’œ È ­BZí}_»"ô …µŽw]N|¿k„¥C›á µúÙ´¤i}¨C1E¼ü% ˆ«B¹ÊÎ5[ÓK§ áfuÅ¹Äàì¡9y"U<ƒÞÝ Œšç·–IŽQ=]0n <ˆ¥OzÃzAQ áób‡„Ä9.ÿöø/8úÏß…~ÿà1]n΂sån¹nN牄¼ËUZ 117³Û —ë9"áªfW }ôñ7µ×¯Û™d-¸û¡í‚‹ûŸùÐê "†š7^µ×»Þô³¦tÍÕcñš@¶š}Þ)zÁ\¨aêYÆ4%e þp¾bøäøäüýû÷êB­›Âçœ-8±Gè—GǸâ¸8è„,P› ÐHš­õ’)i96f!üؤÂî°)HR.ßæUÝ…±­Ü«Ý«4Éበ×={Ô¿òŽý£W/öOv36‘ÿ…¬'òÍn„¬„·¬_ÿ¨DH*3Õ8f æm¶Ì;8»k©nªVÌ *9nËÝkÕbçÌd0¨–ÞŸÖq@#ºépm4EÔÑ’52‹_‡áÚ­.I˜J,®“ô%ËOeFÀ%_­W° Ç{N'ÃbrB6긻‰’95<Ì!/=doÞº;I¥a@FϘ yO¥S®J m2­ÔÂ3žA25o{M$˜"Ü¢nÌ,`ðm›Þ/:ݽÜv2*І ËÿÝ?û~ÿHÚ#zð—û'‡…kȘÑT2?‡zD)¯ÊÝΗMdÿȃ£R/ž'R¿™pt°ÏÊ–u¬ÍqÞ2.r¥g¯Ð›ê‹Ï~³óùµÈ¶Æ‚ÓZz'YíœËD#>aˆèmcÏJ`A¨B,v¼ GŠÊrë«Q^úô«$4;'¯Ç,øè¯·rĺ¿Úù‚S^Ž—çO¼¸Ô6œ»}O?Ï.ºFíÍ÷±¸º8§ZÓÅ•§Ä2šmß›ï'dvZ¸Y³¢ñ]µw2Iÿ;|®>q, 2Ÿmi\d„q8÷ðy5zøþáîØªMªµ ójÚvçZ|„¹ç*ç\:½” PÙ9Ť‡\æ–'-ÍæL“ÞÝ+|îõ¿!5š¡ŽéúÕ6h!1Y„°îãÙä§dbNy…ÓT¶…ŽK齫gR-‹Q@æàDÄÓ@vGjD-”N倽n;„eÈ–CÁ{f°p]c >tý؈Ã$w)šæN¹OhG0cŽÓ÷®ûC¡NŒ¾þ‡¤=|ö7w)jÆ?Ü2®`ÓJJŠGf¥ðgµUoA)ºšåª+ñ/Ë–Ö˜r։ߟ¼¹I½¥JÓOrbÞL)¡)%ièîLBOHGIË!žáX8mx¶ín-u“È6©^_<¨l¾©(¥ùOY„pÀ·ÅüŽ is¿}nɦo½0°wB›l¾í ¢Ð'ßNŸ3œ±&b‹Ë´;¼Sÿúhòøoz¨œ|Q½¬«˜”Ëkš•Q6jMN× C-DcÝÀ˺•Š®UØäŠâ7’Šu`æ–t¡³qSuÊþ-!%SµûcíììŒÿš4ïIRµÿÆT!iïüž4ï ¿PÞ‡‚‹ «õ^)Z(¤ ìÿ4)C«ƒ’H\|*¢IFð·:þ4n§Uë>þ›FÊÍÛX`a–AŒ(ˆH‚^h¬ÝuÁòD>¦XEeXê‚~%¬E(dZæÅf¾Û|)ž«Ý”´H4ˆOöZ(æ$ÜÑâdðÒÔÎH»nëj‹ÀØä®o–Ê‚cuóJ_w›1 V‚Šì²@¶'Aäa¾e÷º?I±ÕzÖ‘àÍB*õgÇxYtZ—ýÞ—í2©n.ö)ýµêWßDó‚cž…ËÆ¨•ÿ²zî·×ébxí÷óëuúç+Þ<¯x†r˜ˆ U²ÐwèW .EšTG‰äY}.z_B!~Ç__}2îìü-„h‹Ú½«ˆi6‡u :»uÚ‡IH6c<êäNËÕdËÍ=P£¥†dòvªÓ˜Åo.uKåÏ4Mñ«MY+框L§WÉîd^°¬Úó,ž‹Î󤽾ýë!þ߯}¡h‘&"X2#,¡ Ãõ–#[!mò«ö}~žÃÂrù‘ƒ.Ô®û^«YÀçõ¿$Ýâõ¾ Ø®EêÀNµgŠ‹BƒŠ1…¨1ŠZÓe/®ÌHGOÊÐe>Ct'ö¹RŒö—²9ÿoÉ6ŒŸ¬ýìEþECÓ‹ fÇÓµ&£H‹ÅŒíðQ¡¿F\›>ҥ㼛z!J~»Å„ÛÛ˜¶Žq ]: oòö·’$qÓñΫŸ'òõ¿ðÁßgum‚œÑMT¨,’:´ì&À'¬àƒìé×ÿR_\þòýݯ÷õ#ù ü(}’©aüŒ?1·‡^ÐëÆë¬úAÖ×Ãî¿þåëчûßn÷õS3ýI=NŸäϼΟHõF™~’ù õäë=È.áËÅõ8|[r°¬˜ÿË6ƒé‡$øiA)o Ò|ÇȼÜçÞ$v ¹×¶rJ=œöhL©³Ò¡wNÏ€f©X—01¥´÷ˆN6Ì?(Û<:Ю½1ªñc“ÁsØäù«8È2JJT²jŠ_sMÈ’”Z•V¦õò2„ªjb‡5I§ãÚ¨ [ú†"ý(,T^›,ö‰JåéÈD×§ßþõõ¿Pl] Y’Y:Hq+‹”áÖmÌšŸ––N›û)8­b7ä‰lÉzÙä¥,éª*¹sÙÙ.þ9ÖÊ$hÇnÒõd™´‰³ÀÈüÊÂÚs09 sI™{c¢óîèÁÞñ‹gã§ äßã2VŒ™£Ÿ‹ôõ5ÝAök déÏ‚j¿Í-î¨cÂFmJŠ4ïŸÐ“7\é  õ,æ£5sDH8 ¢e@§òÆ sÈ1§°Ÿ)@:Ec\ÏjcE—ø.Et¨‹q5Ï$¶œxöÉÝÆ°TH&TÞí|QJŒqQÖ[¼ûºUˆÿôßGõèbüõø“_~ªRtwòbV¿|L¨ŽRXõŒZÅþ§Í±uîâGŸë©ùUçå1„©íT9ù²¥Lϧb¾¶±ú ­‘úh¹°î.åà•4ÍB+MÖ—zÉg®@«+K=&…F¨Ö“NëZh°üªæ ¿$ºÒQôXËŒ£¦Kco—Ñ´ W<~}ý»ú÷»Tuæw¿:O* HÒeî5†öa»9Ç“DҧУ‰Å]à Ž+©È«6”‚kqgÄM£è®ÝÀ¦hß `„ëC('ÇjºXÊoUÍ‘šð:ëì¼nê[Æpõ7 x,Tjº’‚¿bxvíj][¡š1B%ÓÃþBTm%-rýœ”_… âÐßÎj;ï¹É>TÜfb›…–l„©ÿz ÐÃ㌅¸>}ïp ©jùÍmC¶Yºg«î6uÌ^§¯rNÚ¸…;öuB«3…pTMíÍå+Ái™6”lJâ‡M›eÎÞ Çí…ˆÅ(IÑOHl*‚¢[svæþ×;¥ X„c&i‘ÏØûå®x1þJçã¿ín¿žþ…³«·ÿíËi{Ý®¾üË_@]qÞ†EÈÞÜݦO:6O`8•üH?7dQ Ëz°ZÖªgÈÄK7Ýæ3AîÞ¤#Dø¿0Kÿ1\w!hÙŸÁ>Ötƛ姴+–¬ýù<•^Kø_׬ˆÎø€; ½&1R+Û±$’g͸³ÚÄ; ‰ñ,z ‡ ªeâ•ZdFß™m⣊Ç´ õŽx…# äþ$#ýO¼½‡äoW.Æèá±Ìö,Ú7‡—Õˆ¾œJ8$Ôyzô›¢þî;Ÿ=&è ßš ª”±t ­¿þŽ:”Eî²=”½¢¾¿‰RÄä:y2,ÀaVh0(¤Ö¤~›¸l¸Ê¶ÓjHZ¤iM––îW®ñéKßžžRµ?ã îVxùõ8RF’9Brˆ'üô¶Ü‘—*—<†8? ýîDI'l8NäŽZµÞ¤˜*Nßá‹Ó;öf,d+IîÖ³¥·¹‡þp+SZ{)Ü<¿Q/=ulÂ#ºÕÜ4QØÜx üoèÀŒÍÕ(¹Ü *3<ŒnL#öN´ÏÑñùÎ,[Vó.sðgp£‘°"Øwf¶û4hÎæŽ]5¢âl"ÃÄ~ÐØz&D¢Tf–Ïï T`B¦Wîô ½Ãf]:^lÙ}‰ £²šM]ˆ¼¾þëã¿M¢çÕ›M¦ýtôõgþrðQÙ$~6ú|L¶ÜU` ”Ô3Þê¹·BŸÿ„KÛŸcs‰à*¡ê›Û¾8å°qogk)ÙÎ׿\x¼ù€C(áGѨ,&‰Ç:_x‡¹«-º¡®ÁV²¨aaoX, iÒ9Ìý5Â"¿Og¨»ì¾Í1acv¿ˆ²Ö¼Dž²#Å;Bë£÷Ýõª$ÀÅ<Æ’{,YÚYðC¾—؇¿½áÖßAÖš-P¢üNû Kƒ¹DZÿÐ4·­Vù€ðâ ±ÝØÔ·ÊE“ý=üGú ì]§~0ïöUd2páq5‘˶IÒ\R•ïª0”DÒçIÝÍ…­oe¤ C:vƒFhº ­€¾\®çü˵[&tàÄ*ñä†E¢˜Ê«ù,À¨ƒ©Båsp'»¾H‚S}¼Ë“z9¼o° Q¡—~©wZ%„]•¿˜üŠ[Ÿ¢$ЮAúF{€Dç;{”ßW{/zO¦šÌgšŽYVu$¼j½õ„•|ÀvÁ—Ä’lëÓz‹°—³)3¨ÌØR&Un:Ü… e(3‚ô?° Òû6L6muº×<*— T|´u2ªà·#™ *Ë&lèÀ^uGÁ*Žì‘¨°è5Žd5}”®KpŠ“ÿÊaD3„ç?}ýåO£¯RAöé8‰Ñ“ñO¯ªg@G]Eï,íÄÜM™>´‚´[ÔÖVÆZ2¤õÙ`@§õ4ú·ÅÞج¯ßÿÕ€‘LB•tÆV0³ôc[|àfÅí‡TNª£¸D:©YVk¹H§å†É3Ù‚¬çÁ*Þ’„Ãût‚/Û›šÖíZ¼iWtצ¥£ÌÀi2'—y×¼»€†l™Z™ÎC@9‹s‚HЩ^þß0(Š!»ºA2,¥ÄÐ c9ëSûyßGAÞ%îkéäºJoQyŸaeµ¹þ,0¥ÛšB÷8­à“SÏ«mIöÕyÑêwÀ1Þ ÎGņbl’2YÓ´ !¼C¤‰Ýo|qÿ/Ê0|ø¸úÃ:©ÿ³Ù…Uöž¯‹ì½ÿ™ìÂ$rÊÔÂê#³ µ‹ÜÄß1»ŸýÃ«Ó³íƒ£í³ƒûMÃÁáþIuúêåËã“3[¹?¤ëj»•»U" B"”¶zRÞÞ½k,+žšž ꯺”.ÍÔ¤wö!éŒHFcÂò’vqZ|&\"å÷®”“Pî 6€ŒÏEh{È¥Á~ì -*@G(¸……ÔC“× a@ xP@h$Ž-'–š7^jQKNqzFoI­ÏÊÙ™­ù¤_‡0âÐlÕž´Ê ¨ ¯:GpB+d%/á&…EVPIå~0p¤Dëz¤Kt˜æxRTÅ+ÐLðÛÂV¬wÂ8[êžÈ²[V”|ÉÞ·˜7Û‹+ !Ëu»ƒ)Ήöœ)ÞÊnèåO³}Ñ’ßïѯé/™æ³Çøˆwþ §¯!z‹Ã©¤j›`ÄM›Ï*‘”§®¬Lh4¨·ëi[©Ý;¯›–ñõ¥æÀЧÍ19Þ™&UÒÈã´ÐÝKE—V\æ_³UÚnß6ËË›kHþ?îî>=8<8ûsuü÷z6¹÷Ð]RÖ|q¥Æ ug (’ëôÅ–üT›ÛfW}³ýiÚG3ô$Ú½´Sù÷c.”y¡ÄGï<7º8#pJG|Ws.®ì"©j绤Àõ÷2DÒ-;}dM²-IDdðÚÝ“ºaFoÿ™³7IË{<ÎôëÏéGþÙÁÓU÷Ùo¾OßTù7éæŸUïókm˜Ú,?\¤³»L²«|üÅÁËÓûž| »ìåÞ}¿998ÝÛþãÀ/ô'Wùª‰›}êÔë¹céuÒ&rˆ…šôv“eÑ‚ÿk¹¸^Ö7LZGTuiãî5Cã­€/]ˆ‰LKb'Ún£±ú×ݹw|ôüàrˆ©ûRøI´T)‚¼·PÓÕY®Iè/:ø ›Ñ¯SÀ)$=’ø¡Çq>]FÙÉ¿^àvÕ((É2Œà$àÂb¡¡Âã9¥îÄ ˜Í‹àNJZdµ›‘`7ŸúÅÇ–Ázz©4g¼hÒÁ£`°Sá3,Pº#ä5G˜8´Rº°s®˜“ë†ðÁv^3妹¡”c&¦+—l|õmo\"‡‘––sýlbMô:·¬í©6ãú`8êÖBª'4°ãíÜÈ …}-Ñ2«T"pÖŒÛ2‚·:Má]øå˜w/«ÎzžÎàHP‹M »^oçBìòaHퟟퟞwÆ_ÁfiI…¬+ãRõí âFÂ?js0‚ž‘ä'gÃsEf`ÂÃT¼sû/ŽOþ¬ç<:xíM\d®¹Ì€Q¥M‘ï…IÈfCÓ4®WG¶sä ÛVŠ”V—¼iÂÕùµ$†ë¹XPÅ»P3åoAè· y L¬ù×S\›PÆ*aˆ¹# <°÷@y+#îiRÓÑ¿º¸*¶˜ÌÙ7̤i9Q¼Û˜ˆ`cÐ2;=×%X•Äíä6Ǹ"@Ï9+‹†¬±eŒ—_zÑ ¦³/ |™E\d %»“0z³…Áªg5õ2j~qzðâåá~õêt_´O²ŠâÃ'ˆwÇw€¨µ˜Ã1™ ´EÒe¶‰÷­QkÉLgÏ«$ ÷o·F¶«5W}0K¨îaFqL‹RËb)˜–GçŒpÆøeˆW2¦Ó$¤]Œ*¿iN Òß²yÇÏ—¥PÍ (í,-Àä©GV9š(p¿ŒÂ%™‹v Ó íO—/wOÎvÏ¿Ý=yŽpüêôøy¨ürp5¤~f{u",[Ît—¯BmN Ø-<  ¨#OwŸQ¡ì㣠Є«°ä¿ ÆX^4„ï{üx©^B~[»bWøMMº}“å:cÉXÔ Â.tx1y×2QU~’AfÉE×@´f6æûúu²Vƹ&ùiªÉÆV-¿³ 7Å\·û„Z†raç®á˜ò¤Gš·û dJÝ`ìá˜R²]:¡‹Ž•¾LŽáYf£æIDHÁÔ'x ])Í;¼M™¡ Š'vJöw„§‘AêÁµ–'ës|+„3Áj2mÊK± ýÿr1]_`C›Y9ZPiöšá²\xÍ…öÐn¾ïZõYÏŽ#N!Ýò]t½ Êš»̪݊ŽR­(·»¥ ¯ZZÄ’…Ù›NbK¦ãmÍ™àûÿÊãWe)@z3³¶¹ÐbL¿VJ4£_´Qm NÕwdf¤¿Iy{ñ(G„zîx3eSænWâ)sÌ4;ÔÎ(R”ƒ¦äŽíª‘V{ïW+Ä lPýטkùžP&uKMaUßÚqÙÚBþp¬(z0ÝInºWšE!ç‚XS·¯gOìøŽ£ê\vmãUy“D1îhq‰¼@0m¬;ÑG¢¼ó-† ñ³W&^-¦¸¦¼øÊ¢«Èð¸“:ªèzËÔ>|Sßs¯á%uæM}Û]¬RšK·5¡ãñWÖ†ôˆ˜_ÇáÈ™x¡¿gø ÅX·ç™¼ì¦æiTL¸MZvˆ#¡ŽüÐ’zjç,â$3èŒ.¼›·é´ªm4µBŽÃ<ÃÜZKÇFˆÁ5ï¬o$õ]A3_ij×D½tDèþÈp¾§¢§B1¥ªç –Ú3%&(_ÿ6@ŸœÚ;§ïFmK9 L/̪•FnV8è½Ø±qg tÇöѲ <§ªç6¬TR—WÔ×-áˆ0¬,ëWt…n‘ºázå=n)@¹ÊàB›¼Y‰™U`ÿCðž[íû °*l‰pT×iÓ5‰T¾&ÄŽÓï_r¡!w‰g5ÂÙRRC) ·õ %¹¿ãµGĉqGBÙæÊ²ŒgÏèÏëžç&^ei,\;ʃ.©¯cÌžë˜P´$ã¶ý9kîÞy¬<&ϳ©oB÷¦Öœg˜1š•Ð\ í5Gu% 44À¸D†V¤5ï ”ZÈ›Õ⢹SŠ:Ïò ROwžn:ŽªœuiBÆÃ;Ø'zXÞž®Db½+½ž´_‰=„ø´¸'F §^³÷ÂA²þö—ÒNr“R6Å&ã£'j”—ÜLR%'xCŽžxzð¯û¥'pn ãVi ò½¿§;§‚G“ð~X>_¸b‚!'Ž,dZ@b[ª«Y²Ùm4 X_°wµ$ ø?”VfþRÖ Lß8õi/ÇjùNTÁ$ËKˆ.\ó;ÐãŠRVÀ{V´D8­€©Ç¯‚Ñ|œL%OJ9}S¾zú‡ý½³Ójïøèl÷àˆ>;8úãîáÁ³êÕÙsÛÖœZ’gYÚMVìÂqO& º‹·Žñ'7ï¥Ê.GEk…D\ 5iå㉅)Ž9gà¦ù±á2cÀw–;æRð_1ç­wè 42o§¨l2h.WêÿS 6 ÷|ïÛý½ïÌ¿!•„ýÐå¤úV£,Ý`?´·,_àäCNY²`— ?¹×kb P…ÚŒcÔÀÕSMFï¥f …,,u%^4Ì>·Áj)ìUî R–‰É/¸xùf×zO_´N{Ä9÷>œÅxβ#çzX‚/³²cHÖžãUIO£ªZØX4¶×{ÕHxi5t–îgóQÀ±¡¢!'ÚÈœ§Ì\ƒV?çF`ã¨b¥Y˜¥#UꃵÎb5P/½ÝÓÒáíà›s]?©¦Cª4o'MÅ ¿ó¤£[J•DXªÏ×>Õ”,“¡a"':/eÅÑ+Sc€øœ×‡Ô”Xvn°è]~j\%Q$‘WÍŒÒÃ3xáÉPba˜T‰kmÒKJ{} ‘+éï6aZÖ®îütx”E¾®ÖËsðÙy/Gn,òóªL©Ç¢yæËñ“ø|÷_äÈî Ýô¤9á‡ç—Hþ§Kß¡„üY'î&™ª_Faç,B&9r^[•pÀTQHÿk@Ó3-«–P!¹ÙÁºžº3½œ2Ĥ&¡>㌽Ðf,Ïk¬QQñšj51©ÀWw·M971÷UK9;AìJa.f•ݹ™)3ÇÔ³\gÊ.è|´ã¥e+3¯ê 3¸šelK§cWíÄêFOlß­<=z.7D²xßÌciÛçÚM xðÑtJÀpaTi;Ãß@^ßC ù?¶KrrîÒ—;¦ ìV¶d¸âýâ$EšG/ÒEñ%Ì´u9›a£€"¿L*Z„¤W´×ó¸ ÊÊÑ)û>w‡sQúJOPEá L¿ì÷Nð4\üç¶ÃÜÈ_ËßÁv1G®×3ôß̧üó€ô¯lÔ¬)È œt#p]˜9™•w ÅÏýéˆ7gÜX/‡<&TR]§µ§<ØEeNŠ¡íÜôˤ…‡&•íçÞ†öP„” ïŽêA¬×Å‹>äH0Yö¢ÛÇ%=i‚­“ôò аu_êé‚(‹¯?Ü Þ^9p#úÜœ<Ó²”µÚuæ”3*;Œ4æo‰¥ÁG?Üqºù¸óøDÕù[Š­Äž[×Ì}$å ³º„ùvÏ/œ¬»Ÿõºë½KZúÆD…èG(S¹YLMˆ;bh5GuÏmòN‚r( ¦ð;¨d¢’dÀhF&Æò–âMà¾Ø2Ù†xüi«’E9Z*†…ÿŸZŸÝá¸ÇDîÕÀU±ž?©B: ©’qºÀKØsw·óÌ9&Ù=¯ÄÎ`Ç/kQþ`~*„Ñ£J&Ì,€§”¨Ü=´!`,>/BªhÊ.6xއEX}Õp8ÐÍL™Wа3"Kµs¤º•…Áî`A§›ÆÛ´]6Œí¢ Y1ñ(^ ;´ùB-lêuÉËØ4/#§(kðºH’•-÷Ô…Æ» þÏc6OÅ-‚FÞZ¤Á`ºMjN°”ëÎËÉ»ñoG‘“Ô÷ëœN0mâ;×1-NôðÆ)#’Š;£ÞxáPsvëD_SnsD”ó1L_3zEÆ$ Ká%Ƀ¥¬|ÜE!2a¤QáôÇbV@]t†fÕ—DŒNqGæp›6Ô$†é9¦„‘tï ,aTg) ³X3„ú!Ý:°w‡«¸ S™°!·„ #Ÿqßѱ§t©[˜#Î^1.ŸòSÐÕÐOZÿ¹Í±iFÐwJèUŠmáX­ƒ°}PhK6ÃZwÜ3·Ùs£'È9œ;Na³¶Nd{+zêù„±jú¢mÐZ(±†`Iª¢úÀDm¥ê÷¦Àp7ÑH2Êf‹ :•I–½×snRsEÔdÕƒ]O.M¿Úz™uЗ{5& 5êsJ >[+å4fMP®9QKN£.ã§ÝúúZ¨¡è]®ÈÎR¼ËÆÎ `zòHõ«`\ y=„|•ÀgÌÏ¢‚jÞ’0g¼JùçdÍÎßÖËê«Mw+‡l|Aó>æ_õïg˜–å»bs¯ ï(3r¦*Ù=¢lί~æri‚)^• d|]J<¢ñ܉f§Ã"t¿øÅ/ÌEEÎ §aI*÷÷oPPð]Ã~_¤¯sk5¢DtF¼CŒ)bBôœ«7Ûlqµ%ÍæUW¶“_sÀj£Xr¤q°ns»îÞ !]ÎauÆït¼À™‚toWܨ‚0êÿ gQå¤B¡“ì ö883`g‘Éà”ÍN §Ì ûC¯Òlš¿ˆyÔÅ—Ä"ƒ|È|¹‡ I*ƒâǦšilÀ$¤w½¡í;m¸4xÛÄäAË9]ˆFªt3D7Nàáy¬€( ÞI:Ægüôœme7ø~4ö-ò"Mÿr®jŠuˆlHµ‚yK%/8CõKÕÌÑÔ5Kð8’ºù ‚ ¦Œl_\Iõ=“«‰~gýæ¯]_7¡Níßèc™ð½h‹ Y½$\™¿7‹˜K¨Þ3lÜ‘J^‚É/W„JS€ ¡¦Ù¢ë\²îhŠqI¦~Í!u>™¢WtàÐW2µ„2}? +­áºÖM›ûÚôãqô€sú×í´i¬> ^æØvŽj×'M¢¹Š; f/™"0ƒYvÑ0Œ÷ëÌœjý¹þÓ,E$X^šÆSè<%7…ÿŸ]PÊ}óöwÁgÓn\sàpböŽÀ’¦¥µ¢uñ9 òXäÔö5¥Õ ¶Ä8wíƒð°yØ»†œ)ôÅ]ÌŠXç`Ôf3)$ è,0x©Øì³l¸g8íÚw‚µäç¦åàéþ7Ïw_žíT#.&o§ç|îDøÚ‰<£¬n‹ *»’Ÿ5ïÁš¨eÙ0ÙF?áÆ¨Â¦1šaq˜´sè×q)dƒb5pÆ•ÛX7+ÇØÍ;PëëÉ6üãê”›:°sö©lh ¬MpϤåO9Åq8ë^fÇÊÑ"ܯ„ÆQ2ˆ®E é@ Äêë%Õ7õ["»¢Ð_Kw´ü ®¨t§Öââ׌ë0ßW ª) 8ZÊY³"Î³ŽØGÈ/Lœƒ+ÍËD„7Í ÷étÍÛ°×vvU+}^Í\ÆžÛé=®Ž¿›ä÷ÒÐu´ÇÓ¤ô£];ÕS"u‚ð~Cõ¹™Òæ)eRÛ@4N%Ø“s%Ÿ^á®ýº:ÓBÿÒæ~ \‡Â ´”_â}á EÍ–ªIvò”$¹(^ìÊ…™Áõb1å¥Ñ¯S¤{{ÒhÁ9‡¬ Mz§Ý0²u™F©Á ã-æW"ôݛŠ^.“á{-&8“€Ð}Ã!C½šðó¬!°ô¥Ã+âàS– Yù+)L†r°£îM2ÈF7–ºÅ”¥¦©aètЉûvúç±ÒCÊ(„HKO›•[ Yãˆ&È™…ZíóxÁú­¦ÕLŠsM^ÊpOßΧi˜ð¿<>=ø“) þÆ9ƒ,ÍÅŠ_ÌÙ£‹ú0É üXáiiÉp|~²¿O8/÷÷^îžüq¿âTGëT·žiÛœ¯çôþs^0!é•°´Åì\Ë߯O2ÕÑÓ˜ö@Ù %$ælf†‰ p˜P¶ÖÀ¨¬ÝüãÇZnO’B틆-@ÎĶáÞ,q;iVtëÿ;mÅPýTZïÝ ¦¦+Y³¢ÔÌù³¥Æ±ŠÕ4–C11×1Ä÷­Å8´²Ao¥uÑ£N:ûh»ÕÂÄ"À¸ î ðï2mªý?í‚6`ïøÙþó vζ)§bˆ³¤ô°r­9é|gŠÈò;FSÿõ AZœj2È•.ôü R'.Ü €ò°)hÂb\fËË'eìQš˦÷¯aC>ð¿oø™ q÷~gN«êýõIè^_PY¹°ú¯û'Ççgû'/ŽvÏöŸMª‡¼ªþ ÓÃÙ ÿ 5Þ'XþqèÐò2sÇéëHõ!ãƒ:8{<¼zôÊ×ùÈ7:?{üàÑÃÇŸO!+[Ùh¸1MŸ#‰öƒ¬ß¾”_õVWû@ÃôpÃ<±G?1ž·Y3¿^½¡U ÿóö&6M±­OÐ%K93ƒ|ði/áÙ˦?öÐeüÆÿ½é·º0üó^ úSã²gòùîé!¦¿¥[ÇzýÔé h¸+´¾ 2#s§$SÕL‚!‚5ôS×ß6sx̯"J0ÙÂߦÍAë1”ÔlRhÁë—ñ+e0<“Ï\o[ƒøåVN,ô\{tù$~‡–:ð¼P÷zG}b_« R%µøgäí  N0:cŒõn7FÒr,yŸƒ=êÉœ ¡@[  '_žE§32²:«‚¦¾Š±²HUŒiCrFó¡´µqÝÃ(0Œj(kÒ[0ï* ¬@òØEvr¦ÿpt³Ã›º|Y8Ç+_HžŽM\F ãÓºGa©ñdX¤ëþ/k´#éU„§G^†V¡ã~?‹Dÿ˜R9Á)ÃNÀ€¾2¢¸R`Äa×ÛT"îrTl)˜é~3TÕÈeØIhû‘€ôÕHð ›dʘaÓ îÈB%÷ɸ¬ 0<³”~LX0Èa"‰õÈU“\%AbL˜ã`ètõœ˜« ¯`VÙTýd{Í#‘M¤d þ+ètŠÄæ]ÅÛ‡³R'L;}t;&©W ºB€µdüzŽ Z9~­P —Á‚±½Ô;.‘Š9 !Aè`îØ°ª¤Ù2Ž#ä9ù2Iâx½Y&‰¶ŸŸvI1×eàä7Í%ŽÑy;çÂJhÓ­Aˆ&Ü+ïS4–´Tÿv/ þC”ÐKâáÂè…ÀlÀ™ÂF© ý ‰ð´aó«)ˆ:ºè4í„¥±²~æI”/c˜;N¡ô[þŽ&Ó è®ÖSj¬ÒK¹LKr|b0nÝ„ŧB•`VHÏ£‡ÿ¶²ýýj÷ðôøÙÐêÛvD•;bÞÓ9ßÃÇ]žïþKŸËÕp¸ÿïðt?~\í®¯éB *nkêïÏÔ¿hð'‘ û†©¹§%Y÷G1uçÏÿ™º‘¿O ÇgßîŸTxÅ.Ò7qv ®Úž¹¨ÕðfqKÁ$êÜÁ™n×{]çÎAŠâ¬y[G?3”‡‚+WW`0ˆIZ ,J¿å|±_^‘-Ý…{ÝSÅ âû£©:gcm&y u{‹œö(ñbÀ̤öý@!MÎc”ÜŠÉÅAIêk¤BIéçîã¶h§a~ RnÍ.ê/§éÏ«åÚ½ %Ò§ñJ"!éVZKðè9Íòg$ší<ŽpM€*U½ÙŒÝMÒ4N8›è^¡BµÔõÏÇš5pJ'û»Ï^ìWW-×¶Áý ç=jß& ‰=Š™àdžÖ,83d¬p^Z:”¯PÆ „BÜìvFÑ’í§TwýLòHÞþ4 5vs Ù±MĦ³7Á€¡Ìüçù~×í.ê \°25º×]Ÿ c@GBÅ(ÀGm¶«F-0|g}¢€I¢s}+“†øÄb6Í•x»h"XŠæË´eDä ¶ØÆ"½ŒËòÜ7ÊQ;§s,£î©O伆Fb<†?stáÛVX¼Î(GËéXPZ åùPqk¦â¥†ô]ZÅó;!u4 ¯aõÿ3ò÷ŠÌª­[;Ÿ¶ì!æ M:ê6ÐÅÖ»9üÚVç…ÀsÖÁ‰±“V.6G;—Z14‹\–‘ë )ôÒ¦´úõ_|öë!¦&Šk ™R¶y2È—T: ÖBEÑ.š7í¦®q äÇÀê žŸy¨ åÕp®Ú÷iܽ8^üˆOÝÀá™û+:Œï‹ð<l¿ô÷ÚæqÃ%¾“^ªê©¼»çÐÎ0ž5³QÈg¥æ‚¨rbQx{¢?–²¿øb¢tÇ´¤ZWÏ æeÈ•Ïò™¥”EzM¹Ue3!S·L×ecר4éÊ«L|V‡Ý(cY=È K=û²×$&ÌyÂøªêbVÚ±ÊFÿi‡rR5ä­diި斤ÌyúYásš0m._7Ywlàæ4ULð¨ÁþŸ D‘AGšîÎÇ_<+z•!…‘‰E%jÉïÞÌiŸZ<Ǽuç4“çø½0Œ4«xCÎ]½²$°ÜPØ&äÌàlo®á›—ŸžŸ9ß[8ü¼/Ä™‰Š9[ G»Í|ч¨X_dVdzôø7á~±gÍäýÐæ¤;ôüÃôg“^ªç›5S~9c<ªÑƒ»'ß*ëÁË“WGûøÛéw/Ç1Wtô éÝGcÊQ¿ Á§Ã¼YWU5ƒ­J9XY.bþ”hiôãLOÉ “Ü7 ­k¨6 ˆŒ¡¡‹÷o±¬µ¾1ÝQù­jWñàÆòsHå{.YÛŽóÚˆ‰`€ÜO󶞨wXOg#;]u*®7_&?ÆÞ™ªßåtMbžŸdF]ìWE¬ÏR3·«‹óá²XŸý7ŒíÞ«ÊÆìÿŒ±­Ô¹¹ýÆvùôß½,–1­í~s|rpömF°ÓZΕEŒø åzX=»^,“ƒ(‰—TºVéÇ'˜Ñµ %¤Laö;5¥@ÆÌ·¼K* ´; ‚j$Ã1£XÒÓJ©, u;­4¹©$ÒD â­(¸º¡–’géñPÀgk™r„œ~í±v€1#¢Ê6f©æT5âN~\¨íp¥»9ƒm6µ6¡BÒ«íõ¾‚9(Ù* ±Ì‹IOî«&Í‹ÎDSn[”ò˜’ãud ·]øí,#! A,jÏÔ“±ÙÝÜ5 mANñ}ÆÊ.’5ÊGûμÈ.MÊ °*k‘á ô´…37µÇÀ朻^•Ûåsº_ÁköÆàêÞ]–¥qq­ât–³Ñf¤ÓZ˜Í`å¢þ÷ßí<ø½ý»u¾"=Ã<éˆÀùS¿³ò¬¿4=û@HGü«"kÞæœ§Da‘uß2ã©®UPîS‹7ôJªéðÆÊTàXÒ›ùÎûæÕáîIµÿ§—'û§§L^vZìïçœel&ç„X ™+ªÉA«{ïñF¦€&iFÁ»ºb*!ãAõWS`|¯Œœ*@ë}ïý âÚY\yaZv#ºS•Ójü0ÉÈ&Ë£HÕ²ÐÔ7þHRCåK%cAèl,#öÕ&<掽`U2 zîHî)¨àØ’T:üÚ#€ôÀ—U–oÅšì!¥ô³(.Ë4á·TMD‹ä½[dç–‹Ù9²Qk³þ‚HŽNÏvžQ±€þõ3tñ $u/f‹kè>HÚݲI:CÒ›§tñ\,?T[/PSƒ^"§ÚÇΠlMl¶ò,h0ڠµ‡Äqbr®ûrŤï™ÑÁ{ç„+ÝB™tâÁSÇ@RȲš÷jO§ÃÛ̽¨Ž„î¹ÞV¸ñ´Œ^¾<¶:á:¡ §EªÆ/£ó)¿qvzÀ4êïNEøß+ø*Z6³ü¨÷ÁjY“™ p¢ZÁpÜ*ÓaãDÒ+ßð.5å’®vMïi`ŸK+ê…Öaç`ùÓ\cvºZ@‚á¤ÂÝçÏaöéÐZºS§7Èî!1¢ ||ó%r–Ùåx~Ëer!›UC·5ÿBnL7â\†5ê.kÙàÃEtÑ*‰¤SвMP®dâ.n0Âë?ä°"!-V¢žp¾ü!iu½Ä«šö1ëQ§ÈnôFÃxváÆ9PÀ×K¸õ,»?'¹úÓ¢BÁ;(4±ä®ª]+$àJÞu5ò {Ù›úŽ¢V)ª]K_Ôó ¿Èˆ£ùѼˆ¹¼M q‰†BtÕ×gXâ@.Ù–+«K*ªõeãn´qÔ”¾›åfTÀ¹4Iš€/ T#‚#‰A.óU.GÚÂ!î…ÕÒn€¡6—…Œ³KÜ*ä]À_ÊÒ‘óæbô´cøÂYÙ±|A)}äâ\#fºÁ«Þq’âÍ´R]UWX`|i¯)¥ä›´w%½DÔ*ü‚â:mkøöÍÆ¶•ÍL¾´·®².Ì›,èÊv)Ýš¤á4HÜp ò5îÁpýeWXT>Ù¢ÊJ\߈ TT)Ók1SZøÞSŸüÊ4#!¹”vâ-Qñ¼MëÀŲ*Íür޵ôƒï̘#û^P “ CïXVò ŽXQ"Ð\ZÉôx“9n=[íh±j‚ö+ȧ”,œó*ö¼6tã³ñ† 2t9›\ÔƒxÔ»Ê =¿²Lo´òÕ«.dÑô°üç$þÏ#c9=F>8RLù7#¡ùzi^YB,@ѧo™t:ê3×^¬>^Ì«à`ë•Í›î ³Í±B¼&‹ ¨YœÃàâ çܘÖúŽ’Ëz5j–£ÛdD×Ëñ×!Ù”Ž…i}·IµñE•¹øaúûåºF¶"kZh·Ýq @›Ù ϧ§øŸ[|­Ò?¶Tßá—™ˆWíi‘~9òO¡Ÿ//ÅŠJ¾NJ@àÓ„ 2ÙìÛœ£ÉÎþ* ¦‹y‹šß&C“+ RnåÞRPhÍ{°¥qÄÝ'03ùD„{f¢ˆŠ[¢{n³dpT ·ê×ÓO¶20WÝIn/ ñƒO¶bGg9ãä_Õ¶À•=qq,õns±A¼w¹NgL<І<¥×VC.%ÇrÎnIȤ{~I “,À´®"eŠÍ˜‡ d¦¶N5^¹ ƒé|‹"bž©##LÔ×[c;ÜsŠÞ}uv|þòøÔ (ªä†zaUm{ð.âå£ð­@Óç(Æ}8óMgûDµ‡ê"~;G]t4µºGçL§kÑ5.›òwðžñâ1WQSòq>ÚÉs‚†\›ž8©×Ai ºÓœ?{9ð™q¨6¡¨¾Š°$ˆ’jÅ„É6¯5B˜U5x¢'ìíD½?wË“>"|T¶w‹Þ1JIþ{Å® >i5ŠÌ’qlVœaÒ´go›¬9ÒQ­¹yÞqðS ¯ A€Ä…eAN§ÆÓ9²†§œ;ªù›YÐxÖþ%ðG°¯?ùäõ»ÈMB}PÏßV]×ÿ°/-ýû¶7jyÜÁôµ¥ââZƒS±S&É›Îq-RrHêsºÚKÁbÀæ*†!6Ù`¬Åm9‹¤’…WNôbëÑE‰†(Ì×bƤH`Õ· ¨@¹F²û–ì#Gï—Þ‹ÇBq2Mò 9r`t²˜Ê°Õ™[g“>Ãhé½PW{*H+LË´b©8)Ðkšéü™´þI¨ò«Pƒ/K±m2nô47·+./^)»}~aÌÞÝ!ßJ,ö©ýlÇÔ|‡YáÅ ’gÏe4y‚Ö¢²ºÄö?£z\=Í<,žç;ºW{¡€GOÐsŽ^æ QöÄÊÕݨ@Ú`“´ð»c ¯¿W§I¸Ý®Pç |1¥/ê¹OŠ›ÆA/úÜ'ðF¨Ç‡v£ÔåaÏ‹ø×ßUI¬Ö·«Ê8¶‘§(Xr:¸RyÙ‰]M‡´ 7OšÌõ*Šø‹Æ äÐ1áT¤O‘’Õ'!ÅN2ëlp_ì Pñ­²£Qâ/«uÞeÇœ“¹–DnÜÚˆ=rDVö´><# ?ì¸é€Çúµåy½WéZ±/•¦£ÖxЏäXš,­¥çGžïŽy§fÊ­_ëÅK —yóx#,a¾¯*mVj•Ùf‚:[‡[– ÀuaV*ÞΠ÷ü7±vJ?GLtÑl6%ù©ÒK=ç6 ,€ïzöÇÝ£³ÝoöO«ãçUé%rCÓBPQfËm|˜¡<¨ü“# ®ž{Ø)¹]ÜE¸ï•ø9˜¤±ê´ä 8 Ä6áeê–mWR²/«1ã N*`°¬üv–‹‚`z þÈïú¡j†ÈP—F|ÉÛ]s}½„´±žœþWöÖð¢"N¤%Käßoï ¬óe´Tòe8õE\›bÚŠÞʲM—Ðí/B܉&øcATHõÍŸ š’¦î×7Ãz+ºu7¶âŽî‡LqÜÛòá”dÓbT’å‘ *fw,f®"¯iß(Ì”*ƒjÐ>ôú”¸FTÅÚ|ï~¾ã1„¨Ë÷náÔ“–MwS%ð5ÔÈÇà2H£ŸxRÕòþÍ´Í{7OÏÀþ÷ `?®ž7Ë5Á?? €ýïd›–o*¾îLÿg°R¸°H7ý˜lÓâñ¿'–õðéÁ·—Õ²ç2ÀZÓ ßç!…j3ëkæ.T˜XŒÜ0³†¬øÌš_Ýk”X·t‡zQa’+²cì2ИÇD$¬¸ÿ©(0ü’¢¶Œ«PU®Ö“H€GÌTLš:JY’©­uÛ½©2cqë6Þ[ðìù=¦ûY]è4ùBj‰óZÔ æ}“§‰È\žs.¥UnK}:4òŠŒ—»Ÿ<àd ›dð@®{7­0Þ ¹ó.gm=cÒ ö×2š¼¨3Wš7pú/,=®‘ÛÌŸŸ9kÒ-N×}ßÓVÌCa#œQASo5ßHê¤PNÜBò6—ë¹8rëXÑÖv[ÓyÔ˜-( ïž6éŠÑj % k•uSÈÿ`1Q$Ü.KCñ#zúp¼˜g MòRÝ=3F_,%EåëS=æuûÈ’[‰b½+sƒšª™-•i–© •iH±F°PIË›µ+!ûiª2Æ-Î×t¥ÿàèÑD*»À[U¢ÔÁ&µ ô<FàŸQN2;w‹r˜‹}|áË!™£¼Þ’­/ãU• _-,úŒµ}Uä}©$XåÓúâòSó« ÔV}±5ñWGŽ7U‰ÁsÐâ ŒI6•m “¸˜±´¹70 ¾±¸Z•2 «îàÎ-„ÄÀØoÛ'÷Œ­¶¾ærIå§—:¬{ Ò_] mÎㄺ(œ7@b8MSê]À¡Äl)ðÑÒ“!'b•s¥"jö¼sÕ³Ö‡¿MB"zÞ)%/+Ž|5Þ釯œT¯ÿ5ýï"ýï)6õ/ƒQÆ®ùzð¬íÃñJJ²Sšohe‰~©²TÀ"«ÐóŽÉëD•Ðøµ@º5á¨Dc´æ–ëšz”ŒåÝU%m”~v¤»IÑÜ—ÒÚ»á_áË“à¥ísRñ1CÚ¹tØüÆŸª4zR W¬4âä´b1nÄ1óù`9P„náÚ8óBüŸ•j7 øvË*)ð·Nõ.¢ŒÄ™?Θ£{>mó¬Èæ}Û¡L,K’`懆òu§4±ëÄdp^þ%B ͬÄÛ5Y/ýe1 ã¬çš'Hdõ·+sKÛýoEÓóœ*¼cÕ¿‡*?œñZBÛé1¿{AF–3 1 î2ÓåöÒ0ØgÔ&k: î7gF`~-}¯œèß&¡)|€¬‡‘–ËË!©’’.5’×·‚ÞæYÙªš–}aw¯‚ãxé`è0B¢÷^Š5Õ&˜HY*:ÇÄE«@ JË»hlc ›óA|¯C@sÉî­!oØ«SúÿYZtAÆÙ3IÙª¾5ÕK¤9ö—.m¸{ënèåd¦‰Ì/ƒþåzQèAÙ×ìrêåúØ™  ™ŽAð†sá€R¨*@ +óºùOá‚äâüNùÓOÓÅõŸ³VivÒ`~¾&<§Ÿ¥6hƒ:<IJÀÙtpeœz$ƒšyj+3cÅ".î Eº‡D`> tr…ZŽÌKõYÜh¿P‚Þa@2­Í«Qœà‘ZK mYiÍ%ÏžD4XöÞÞB!©Oln’ioHÙ‰þY)©ú-ÊÂöNÂÕzÿ6®•†¹c•q ™JÅ”dj¡Y»¼p&ÊÁFk™ºì@ÜcÈ}`]ÈÛ-ܵÃ4ÃâÀSÉ$ÛJ”ª¶/!)¹ÐlTí…ÄÐÅ„(>»Ò9 U¥–gm¸ñ3OÏ[PKq^BaGE™E ¡ñHöÇú&÷þªñ>mÔëÖ3š‘©0¡Rê1ZñI„q¥ KÓúeyP`±id£oäàj80R¨~÷{ åNpèj6î` ÀN0"œ.\ß ^†ùhÎ@˜/Jõ(wÀ îS‘^{> uV\a@ìo0r:Å –‡lú7»n«BPíJfñ@Z†V§- Äæ¨pÉ5`õð5|»XokêG€«æ‰íÞÁpöëàøêzE,Í×hæõÓ ³åÇ |¤Ã’VÏnÓ»¾i–TË1„ª#×M?`µQ|ɺ'#iíÔ«e½RÞ£¶eÌMvÏ&9?ê.Ó»ñן†¾ØýÚ©gVnþ žHw*ò(×/+Œªû SÀØ,s}‡áU´w6«+K3#=fÓ?¨èÜŸÙ6Ôð"´/4ÐÏ|@—îü¹öZ/›xzn‡<†Ð`1uT¥m2àh…„´äÐ|ˆ‚Ü}Óª…e+Æ™ˆÅétôlF8"úª3ÆØÎc†ñ Ò$=ˆÅV«j y‰¾6Ð%¨Ja3XÃÜûæýí¬f®&Ò"|C7ºP“ R&‰d{ò¤óPêOu'“–ùé¦éÝðàOúð§ù]H—™‹Ëb¾x²ãñ W4~—#¥¯Zµ4$.Ä `AXn¨ßá¾FŒ…rEý¬“ö)ëç7‹©dùH+ç/ŒHùx3f²7ùáúÆ„j7®8QmàäXFqD‰qHé'Y^ë`mŸ*ž KФÑpm{ýÕmpìd°Ú/«¤ß§Ÿ”~öë{ŸJß<òù3êÈÉż#–b+æÄ4ÕÚ¢ yØiW.¦°ls{‹a tAýÊûŸŸýôÌÃÏÓ¤tÿêþ½½‰+iÆÿϧèG3ïDY±!äIØÆ˜‰'`3¶I2vËjÛ=È’G-ð~öߪsÕê–“yö~®ëýqÍcµV¯c­:Üu—{Ñæ}ùÀýrë~‘~µ¾ÖÛR;ë.u‚»Rc";!*]€Þ½ÞŸëhð2Å5sŽŠŸVšUO ÕJr,mµø“g/žïmíþÈæJýiïøû5¶t’=˜ü²¨ÏëS¼3W­å”µÀÙp4/k@œrszA£ÉI‚#îSmFÊË·ú—–K¸æ­ú¶ò`è“Bçupb-´Ö0¸ÄÍ2(KQvÝ5Ë$S9IAµP„Ʊ¬I0a%c…ôñ”SI¾DDÂp½"V1*Ï[´Ð,{X³Ÿ°'ö›Q¦Â’CUÀ÷QãñÜvVEê 1Öÿ…2 p«ÿbº¦äÒBg–„ÝàM=Y™ÄPì!Z­â²žL¦Ìg>)˜\ßKå½),3î3a˘ÑÑg8 •Ú;¯O]4OZƒESgðv¢SŒ£¿[ïXÚ*3êqÔu2b‰*ÃÛiMX¦•®/¯ƒ[Õ Éø•ò ó”] 1öZ«(±> Û4Dš<}ÿ±5' èÇžŠ%ØÂ’4ñ  Óy,qÞéx'‰ Tëå5Gñ¯§gc$TgÁgìãKänÛHÃÐeÅPƒün…o;:¶Œ5À‡ãê3Š–ìÛ¯i8ÇíW&¾ëhÇ ÷ß¿àZ÷Ûh4b—+Êó;wÿUþŽªñ¯ò´1ÛúšüLË;)¯ÓS'ßÒ~»u/»Lé+ÙeZQÓ¾T?_ªTQâ =m†·.‡¼ZÄb7qòAÆ KÃLÌ f|mm,ˆ¼©‚­Š¨XpN íŠz¾§ÅfÂå¼ñðøõŒÁé×Wœ&&,S±1—HæË·./ï&ÊA™*G«ØF¬ÓµCxQNÏr„¿ eäL¥"2qé ú"ÅÞØùóñÿØKs\6™éZ&š±V2ÅŽjÙdø?Q1œn#œÍýà8‘€G®KG/(-»ë3[r!'ˆ? D—ÛÀ ×´WÎqß¶¬æÑ±@ÅYÄ gËT¼\úr5CdÆ¥ù‘%ùP™í Ü×TxIR¨r`J„MtK*&QÙ”f×üÑ4ÙêÓšJ¸« ¾‚ ¢“wÓëö 9ÊÜ)|r#¯"ZܲÉ2ôñ.™z˜ñ°óü™ˆËËhZœ‚†¿¨[Ž”FŠEŒÂÝä-亹šÜ•l?ÄÀbQ!²0›.¾6Ôç>ýæSÑÍJðÒUÜU*îÈÃÔ¾zý‡ß|»uçî ŸörQýî]ú¤ƒˆºV׊{|Ú¿!üùæ›oôõ¡Èìºîv¬aÍb‚™†ÌñÌðqA{’6|ZÞùbâ¤øw<ÀCšÔÝÌàc;B ˆg”èáR欫oêÒK™íç{’S± Ä[j¤­/œ‚ú8ÆÃ€²8Unª›D›Wô:F”Á®rι>ÌÂá’œ¡+á£ù8./\•jÒͤt{Q¥#Ð,“ö ĨØ×ù¼ ø3ÉU@üÍR@íTù/«Jcèg%²Ð‚xÒœúA¤&ýñ©a4H´Îy@!ã„­¥‘e ôR1¢L’鯭5ÆòÒ|+‡®Ks’|m¦‰· ˆG:º¯ÀëŽ4;ÌUsa[NY+Èdžç¾hжµ#Þf`_‘´msãLÒßB؆, ¢D£–iÓÁµ½Ì·6‡»Ø9×ÜÀࢺº[fs•`lëšÑ QÈx¼tZñz¾"˘«ž˜…9,ʸ1!Xã>8 )bÒ‘.Uw¤ð'W DÃtâ³ ç0˜u+\¶xȺ@\pUlHX¿ ÍÜhn³­pfNn"£`ƒËÒ(—¿“jñÇ|Ö]±Ó-q¶Î‘ä%]i¤@|¦[yl!ZêL^@?!Z†ÒÓ húzèሙTeXØ®x‰×TŸ µ3X]Æ\SÉ$5Õ" ðÕáîÑqšbV)FÅ?ÀJ^á9nY1•š/^s*8±†‘ºs-yÀ‹Ê³¹à~pz/Õ’È<¡èÊFŸ.öñȬ>wç2ß6ñ™Î†$ðCöK¶6Ò…q]å+—÷®ÀWýv¡÷/íò¡výàló}NàÓW¢‡/=ô И4 ‡¥­*BQq4”9XÚ&¿\I0HÌ î'l—èƒzéÍ½ÂØè䘛Š,— ó>÷¿š 4KjŽ%ÑMØqDsBBd ë­LYÂÜ"º­’%3{ „êbqö™TEñy¦¹0Ï ¡F¹¡1#) Í|„å’ó"l(›¹æ‹Q!>ÊüdÀ4›×¸bijÎZL9L¬º…‚= Ý[\³ÐA^,rѪr-Èjx×YyJªZQWhªIÒœ‘[©ÂL Ë„Þ1GcVÓëô÷`Å[wî~þáî—_}!Š­öƒÏó©ÛvgÞ [ƒ’ZñD ü.¥4;5#×ÍÎ}~¸Öä)¹ù‹º¥7f Å’½f1É‘Ì;šz<¾†d\Wº®’Ü;Š5ËÕ‚„NI /Y]g¥?õR úZp®K¢6¾_öi ØJÇê8Þóëte¥Ûc´¿{LúëÁ ʦ¯.Ë‘c«gFr@œ ·U3bïrŠAç¶ ø|I#¯D ¼nî4p—lIåz;7[k'IBO × .®f\ ÙÔÀð©ØCnþd,ÜØ cÌ!ýžÂèèý:_¡6Ç:[º`ZÕ; ?î¾³k]úN†«ÕxZ7\`ôàÓêFÈv¯Y;äKst°8Å&êJü[BÓÙɘM(ãÇæN"ÄKéÎepK­=íXJ»%…Á›½Äè Î¥#‡7*úŸˆþÖm月ÊÁЃ§Vä¢×rÖBŶ¦Eje÷†6©TËË"¹:âýÔƒãsw\ÍßÑ›ŽC«prqçÍòý¨sË•åH©(ÓHÎZpå° Â™µVi™ä_ tu[œ:àç'Vˆ °ÖŽ(UG¢blUÄÒÉÕaxùm˜Å’.úÝG;÷vŠï··wÒuXìG-Þ :ùöÑÎÞ†'f5†×j–~ ^òòžÐÉC\iCZõ@g%†)-“v)A2õB1 "Ò‹ÞCÅb>Ãó`ÙÝ0PòžY–™Å £añ÷=Ãýn  ”—\y‘‰× $¤úlS±J[ÃäÙ DlïjÏ'ëƒûˆÃ‘Q0 6CŸQå7¤v¥säúÔî¸6a_=ßÝÈ ÚO6XÛ+öŽwŸÙþÞÖš6tׯlCðVÒ&Ì9ÉOË™ U“¨ˆ“ᢔ…&Ö´¸(YܱÖS÷Ä&§IZQ¬žÒ ʨnaâ QèquR¤€ úr+ÌÐ3oµ çúR¡ûdR+ò›°×ˆð3„Ç{Œ‘yxí®qêÌe¢мèk% œüy9·š9ÄïÈp†Ö¬yH’§L£ý’H VŸãþHj$b»„lYI·Ì+K…1[hrë ü‘¶ÿÍ ¬ ’ÑMŒ)¤:á47“q­ò ò1•®>eãu±YüÕ]™¼ ­r¬¸,9ÈLýƒ²)’¾Ì)\5©¾S‹ u®:sGàv!bS•ë^„ ©×Pç³ú7òßN¯½l¦"PÜE¦Âˆcšñ;÷¾@„Ñ—AÀ¤$fä3Úç<¼6>£’ §X ÕsŸ¢zˆ{yíˆh úH°’LÕ‹µ3êa±uçË$a°ž ja°1y³Aˆº`¥Au5A•9øRºÈ'Æà¤÷æƒÔ@2Kб‹Þ×m,Šƒ+Ï.ʼ±=ÿã'›v<Âz‚÷¼Ü惛¶¤\Óœn:¿iç+¸szÓ©Õ;ýæÃûtNÌã€g 4cJK ³¦A—æ›6FÿÖþARLŸÿË7Ú?_m£ ;gTw¢Up<ªÒ‚»ÙòFå([.%Ë9öyéˆj.^ÑE—§kDÞ¯¢£b©Ú9'ùX4ü,L\:ì|¹g ià¢Iã¡„Ã 1u=F–[œí®Â‰>j㘠¹ÆVEëfB¹ÌÁPë£dÒÒ9rôjv肬™xLLðKß~:Yø›h3ý{hëÕÁ“'É,\PV4»£‡#pX¨ ·j¨Ðè+7¶ 3 xØÙ¡-¸^*hüYDÕÌû¢¼=Îé,nß3“Ç¢O RõXRᤔWut:æë‹‹¶‘ŧ;nB¤¶ôRZc·Èx^?ÆÕ¨R^z‘ ‰Ge‘‚ð!Á-EMƒrb¤ ;ÃÌú´ïÀ ô‰Ÿ´Äµ‰;>òëÓÊñJÇÍ<§¨t™nEŒT£àí|1áœøN?0®ˆT Ôeâ¥qnàËŠý·P,kÌ_ŽœüçãGL$sJ³f"P¹œ)í&ß\RÈò­ùOi‚B( %`ÐmÕš$åëz\¯!²îS”f[ü‚\Ä{Q£÷nŽU+t•nmŽîn ·70½€íúõáî΋C@rú¥TT¸…IÜ,2ABæm‘¹Í ŽÎ-ó©(Â4®¾Â´< ›Ó²0ÂöªÂ[$ BE­\µ(#é¹î’:ãØLŸ¦BÜ5I¿unbˆéUD ²¦Ù4µºMXÎé” rÑëô&òWTAÄ]™T%3dò µdÈÑ¥¤½ç«€^rÕJq­ª¯8u×såêDs_/z­KM‡PÿÉÆD¤`6ƒ#¡ð ð:•tÙ»ŠTÁUT ó¯IbWømÜiû£çM{F›m¿z;EŸÚ|ö†\À¦×‘hˆ›ú[a÷§-ücƒãt5¼¶àï£ÉÅ‘bç°èŸ–‹E +I×à ”‡'Ÿ>)úа+ ÂÑ= c]¾o˜{P¡;‡OŸ ©²Éäå”ôβï9tt­~»OŽU¦6ÿþ‹§±šó¸ž•¦ˆüV-æƒP„Ôht‚úálµ@iÌáxL¹ƒûƒ_SˆÞ`ÀŸ Í×.VXË<\ªåY›ä'Có–!zi>ª¶ê!„@PÉ(éÍ|?\Õ;‡ ÒËöA¸ŸèSÐ1Xû؈>52 `Ñ®ïnïÿC¾ÞÚ ˆtÍ–Ž€¶n£4þ;i§Èw eØ8¶oxÛÐ~ÉTM@-¸¬¹L„ÈœÝf jÍÞ/®6ø#sÂ̱"ú,i‚2°¢óô‰@"ä}6´V…{¯AdKZŽÆú+ò;K5ÝP©Ë;‡p¹”Ë‘ª *ÐÉlll°Ø+ÓL…÷S÷)º#͸ª¬f4ÄüC¯JN¥îLFã+Ã÷=—8šQbP%гiõŽ«uMv…‚<Ö°#–ìÅŠj.’I­A;zO—>rºxú]»ÎE€<o?}ê"7ø(A'û’PíÐKzJˆ¾i`„vŒÓF­"ÇÔr€¡OÞsr¨ú~VÞFÓ=©óOxH±¶à²ÎxÇŽ£Ë¤Qqòê·¥ÓsÄCú…ˆ±‡Ýx’2 ÞÉaRјH/M³ùÔK,ì5BMPC¢ê€i\+c]™×ªB£9—¿ì ‚&=µ-i¼Q¶{±®”ô´ºäQ“Ü9LºíTÈ@ñÒ",@)o1™6‘.­eLo§¯jr*Và Å.Xy|C1MºÌصêmCb­£j*…óRÅî%÷öuÉ8ÒíÚ ù‰û{ºÍâ6ЫÑtv@.€`tN‰!˹Hj¾Ø"ËÛû‹g»ÇÛö+-êÀeÖMî+ ä’œ‹ªSWµdòåCDóŒì?DËŒ§gáFĮ̀ÈeSM™\ÝEšÈ¥ì¼,¸ý¸…5D,i|¤Î½ t`Ìj_ kÑä ‰ÏæïôS¹JŸ'^æ¬êVCþþS"VIv_5=#†×˜Ñòv†z Õzæi Ðìlí>u‘ŒÂ=¬Õ´jGSCÅ!1¯aR1³ˆ‰Eйð#b/ ,±šÑ½™3  Êp…ކ¥äyÈx «…Æ«whÀ’†@¡øá†Ã›°'‰¹4÷âö­;Ûi‚~HÁ@½9`3æÅíÍ­/Ÿ¤ѱT '/]9e(›4©†#B÷™÷~÷çãÃm]Lð9ÜÛ9ö:J5ša€¬áház°RV¢k4—Ô´JƒðŽ©þý‡‹Açšghêéñ‹Ã´¹½£ï¡ë3þßí¨¯F†7XÃÖµ`f(už:üiý©ßžñM)8_ˆ;^-^C4–w;i¨uÒ–fç+€)G5é 7Â/Ú°ö4„Ê¡“KΖp °·õÔ¨˜JôN9í¦ö©Ëò“Ü_aIÈëx´)‰ìPÏBþO>-&5K™úVñœS!Û"”Icðö$ªx\&”‰ÈbÁè¨ð(£Ï'z³µ±œK«w÷ÉíaÞe¼°¬ z›bY-võî´ºZÊviþ½‚@×{]-¡¼*ŽÕ9³Ö40*VËÓd²–½^‡C%Û$¹/X‰'ô—d‹°ri[e•€ÖÀ/c_ý•þ"ŸŠù’ùÒ@J°H€ 0˜¨ÎZÎ9‡ÿÚ`f˜ÿ¨…‘;d¨îZßy!Dãë[tÜ}ÿú‹ºŸ ©ýê´¬¢øà¿×¥K" 8¢3Øü³èfÂ`(¹€-×1¼±! sð;OÞ¢¿6µ”šá ì¡Ûô×VÇCH ë9‚}èˆëº÷lµ¿o¿ šËi׺÷¿§¿´º‡MXzø³Ëòïµ|íXD^zÇå#m`xéŠEx9SLPvèCBÞ®N3»P¹«Òn?ç# çäõ{ð"D§_9Pô:P¹º32Í ÔjÎ&Ÿ¥ïBlý7>NÉÖâãÚïÑkÌDˆ2´]s$Ï8,* hT&RZu»kÂbTQ‡­ZŸx•QuvZpööˆyx²z?>,ÖÂJ»;϶ÐjËRñ‰êIݼԢìq­5õº»·Ÿ'õþÅÏ­B£ðZµ…9!–ÑbGõ²¢Õy@ù+šŠ‚…r‰@Ýße#EÑ]\¢Ö´r.^™¾ŽÂ`+ôtáõ~™Ñ£-Õ%h°ÁÜ´Eó [ÒwV—LЋóY‘›ø>Ú-lÐ_FŠi]^x£Yeä󃣽Ÿ[ë§÷xG =Eé’Nξä#Y-Òùμ±µè!áúÀ䤌S/mªÝýÇ»o‚§wˆrÈpïé!ÇìЯUw,ÙPnà²8ù;p(k²²9­!àÄ\Señ'ÀØáÕÜ^~¾õ•b6]J†aÆKŽT¶ #S^s#–IÏs!8ÍÀA$Aº(nù`<Âäç™Q²3–;›®f”{©¼ùmW´‡H+PRÑaÇ­ZÆ‚˜NTד¨ý’€8“,9VŒ:j¬‘x·%°èY°—j¶9DÊÞ(¸{‘ýälåµ3 ­µ¼†&˜æöäÄÖéÄyvŽ‚ ,V¾"A$AD·WØ*‹ŽwQ)=º}<§kûN&(A}f©s-ø$SHbpD1¿¬òÄò±aJðaÔ}£ç±´ƒk§E<™ÃzÔj¥ŽéK½OþN‰(»#©# 5ÇÙ?Ñ]5eb˜™_BÎ˲ºaš-¼÷çÞ æE·¿RCä¦MöˆašÕÁâÏ^cÿ_8ÅTt$L1<Ïz‚KÉ©9†4¤VéKFÃ[†h£vð¿H‹ÅúŠ%1YÃA›ô6M3R×P5îMæ«ô˜‹äÌ—àR²£Àú°°WõsÌ?Ó…¢N˜’ƒ6¨"KGƒ@Á³&æaÑé ”ÊL>uF‰ƒŒlîb:Ïu¯µKˆ¨—ÊÑ$çü+Ýšê|Ò²v£ G…W§Ÿ‹i8k’=ßòÊC=i"þ^ŽOÿüîú·Ô-Y~ú…ûgP|ñÇþ€uÊÓ• g/? o—_dÿÌ¿³{òç“¿Ë÷Úο²}òÈÆÒ/²úÇOâÃj®è?Óö 1^9&L¤öâï^Á¸ ôáºM]ážñ _+¸iWù#‚ïäïÒœo𠘣Jº¹¡@X=<æYY{§µ.àHŽE´¢›ð&ìÔü*82¡1ÞÙd0rlw6^Ô¬ÛÊÐ-çKisõ´ž-Õ„¡ 3R ÄFイHä´ƒhÛբ钎‰×‰SQ™g×>á ¸G—Ì.ËP)Å'ƒþQzÏ•5—NÓí‹a¹ëÌ71¢îé—â§ AôÓ‚bQ]R‹–ƒ f@~•ý¼B¼ý Ë)Up«tÑ—ûžšôUÆ1¥yU¨(µï†+õPåôìïOþ¾•Þ{çc–äw²0¿ßJÏõ³–”±«ôëe Eº+“»µ4e­#_J±å'™åF¤Õ V¨6êojá|žÍ`‰Ž£Ý1bJÐÄmÕz­WnB.Xžcv[™Ž{Z/–ò`¾W`Ó¤L˜yRöf®<*NŽ"e"µCvë8=Á'Ú"®„°KvLkØU×wír´b5ÇÍ`z©˜ÔDå©c` 4±^&}ôrX¨ü‚>Ú X«‹ê]±ù¥ó÷œœ¾ÓŸ{ìÇÞx×c=¨xGayX#qrÓ:U'•u…gß·õÈ¿ïÌÂ2¡Fã~íøçœ2 ˜5~lÛ?¶°Ç2Ü?ýx@ð\À ¥í¿½´oƒGƒ¾ñµbs2Ñöc´e~ Ž\ÅôûÊä|%=Dn)¨} üV®•ùûô8}§•ÑÈ}éÝÅÅšWÃÈð+þù÷/qÏ_„Wì¿q›¿”}Eö´~•ÈF©“LÊq"ͬÙ‡—ýÐKwXv”Êõ¦ƒ”NJcÆ [Ôâº0ä~'ï‚^ⵌ÷CaÅ¿TSÉùöj²31ì˜$B_¬M©.+s?°09Íž‡úÀD}ƒnñö8­ÒIt¡ 5á:]rÖ@œ]µÃéÓFŽjcI¸—üÚKGØA›CŠCBíÔ×v¡÷)]Ÿª«¶G ˜q¯–\Æ¡0T™mGå fÉ;Ž>UAÛ7âüÇóÇÍ5íö†žë¼–Jgt¹‰îÛñ£[*·hƒÚqÜ ]‚ŒA*­A<“¶a„‹47íHòÜs†´WæXL`‹(äÊŠw2mck˜™»´Œ^9»9CÌž¼›œ") Thâ4CŸr¡»wï'§1Àur÷îç#W÷ÊHþ1l7)a}›`'#i“Ù­kW6œ4G´À”9u«+@ \Œª_¾N÷äßÒCô‹¿Û3ŒeCuŽÞÎ%’±éˆZ~Yë‚h|¬v¥ì[ÍÁ”dàÒ÷"oLu‘+í2:öÞÖL ɉ¨Ò9T E½Ù9Oi àÒ†¤½C5]ê µ|…¢|öÞõœU¯Õ/‘@.çMÄ©_G®†ûÈœ+–ÜJù ¹jlTÂŒ{ò¤=öÎàà|–lºáá¬üpbšGõ\Cü’­}:(|(ÊÉ†Ý à:YÉõé2ªð.VÆéí§nVG“až­˜“מ$Õ«™ cÛ†‰«‰ÞˆéI(nWGÚŠ†„A¿\c¬híð8yŸÉ£¤˜a2[H3X 6’$Ì[„¤1æo­.åÎð.Ýk"9Ø:ηåŒ)m°Ñ˜y³d?á‰b[Sf¤w!¼â’%`vP Ǿ¢… \a>aú‚£ä=®ØÅ“}–­£ÀâÝ£Ò‹~X¬P”3®aÕÁs™¿÷÷Ð👃9’bÁ´9äì´:/O¯#á%äKs‚ŽÜt‡8ž ¬#‰S+žŸÖc wv¶Ÿï>~µsøjïèÕÓ'ÀZ¤ñÉ"rKQ%„tçpA꓆@±4”-lΧÊlÖëcàm¿òwÒ¶¼ZS˜zÊ ùÓ.•Ó‹mÒØÖrøS&ðW´BŠ»w`D[w¾àjRióƒPd©¾›ÓwìÉê0'Q»aKÏe]ä.Ÿ;Ç/´²íéÙ/DKÉÌÎÏ7‰]€›/®ÒÉ:ÝÆÅ8ý'ø½`;¥g¥¹Í-Ìãr»èoÃ×?ßÿ„îmH´œ¾ç¯6øèÝGEoØ/ =AEÕÉéƒ"<úezô›‰„íûj•Œ iãA†…ø]ЮÉnækj6¸†Zxr)óõ!¿Aœ¤ è%“X´²‹©-Ì0lU›®3žN¾¢°Ý×~K¬ñ5;…¦÷U¿×ûºçÂìë€SC1õÑrdR?]a®Âyû|“nšKÒ$øiŒ)ô§æù?Ž¿?Øu°s¼ý´`fdç ³XøàÓÆ‹€b±šÊŠ!à -{XêõC{Ý•bD<µî\ie"ê*ºy¤} •#åͼžøË.@|x‘¢4„Ö êCC´Næ„QEoý؆„0vÄï4o0Ò Ÿœç_Ï$*–ÂA0z<è¢Æ™mº­ +IµÍL¸|x<x`Qz0ñÂWIøœÙÃá–åsÚŒ–|"Î}§+ñ-a-(JÙ,©Ç%HÁ¼Tù|‰Ÿ·S¬Êuá ; &/ÕŽ4§úÖÖ.Ü!‘¬Yó.VÌL‘3¼XŽ5Nf¹€f^AT ´MçüR;+³ƒìhp£Vï’…‚d7øØÔ(-iWî‡>¨"3'¸ÚGGdí£)† q…k¸õN7ÐèªÖûÓZÙsT¿@¨Ð1øT F4ñÞ9ñÌ•²/u}Ç‹+ü¡oÅo‚~"_iô·íonmÂ÷(+‰ËØÙpÆ }$¾È<ìDuÀÅüH›ï&_‘Ý–~rÝ£tðf¾!‰5½d°-æÓÒ‹Öô€¹/ª´9C|ʇ›é@']ÄnE+í7*Ðã]” â¾zðÓ«£‡‡Ý>Þegá‘7ů  ”†£ÍQ ˜`*7AKpYMå¤Yçˆú°¡²æ¶Øy½¡¨ÂµÐç-•Õ'’BŒ/TvìBÊ àöÌÛÂîÌ%A´±ïU™H £aSC›ì¾“qGàE/“˜Á‹¯“¨nrsÍ+.á‡,(t*-öÉ£ôC¶'~ÖUÒê3mdž~õiýÚˆH<¶š àÇPøæÞmɤbLèÜÜ æó’©zd¥ÑËgQ{öØ7RAo¼V|íB.Ç-tò$ÍLúíÉÓ!Æßp†^tä5髊_H6(4¼ £’³šÒ+MœtXCÍI—”R<º¶[ŒY™g‹ Õh'K}>άnô 9П9º4d§L YÀ/ps5:Š$¼p ½.„ÈÓ·ÊÓ¼øŒšmë 4¼*Œ³B³TVWp{Ü̧«eÅYþSN\ŽžEï–µËyî­ÏL†½šñÏ¢¨‘ŪQ•ÏL'-Í´dØŠ7¤”~ÍkºÜ?ù²ú›þScš¨HÖ>§øÂèxKj±6½ý;à@Ô=­IaLÏ,‘o(MF¼)]%.µd%.¸îÑÁ¶A¾êþ(¹*±x Ä!.;ËvL×tV3˜‡¼,õa œYWéË3\šE²*ƒËæ¿ YÏÐc¢ÀÎçgø%¥^š¾ø D[οI|Wôu²ì)Ç×iæ®/“->â´·Åeµ ‹–w«,»â¹+ñøÓsÙÚÑ2ÿTÜ$Ÿ³:)-t [“uåÂçÝMÆ„—ã:râº'ëkSæÖ|óB¿éÒ/;sÝ—¾ÿÝ×ýíÿnc³È–¾Óèw~¯õ£ßmý÷Zx£-@d½‹¿÷•÷¥¸©·ÚTh…{ýd¬Èôr”¶ìj6IMœ‚ÇÝð]Â^òÓÕà[pX¸Èx:+G2„g›ÁÞR¿˜"²Äáê2-æSösHÙë$6ÐNŸøî`ual-•Ú`¿·dE€½§ø5‘Q½PŒ°¼ªU¼”ç€G'-W˜ÐŒÅз.¸Z²®w¶xõä[êÜ©3–¹"0=Òsðu|ð§z6™¿ !ŒQ¢ # ÉѪ݂Š9n¡‚+– á©WrWf7[ $$n.}‹ÂGšcUO¶mÈX@€|Ú)«Eš‘IÈÐ-àÎw7’»£Xð‡¼ÉäoÒ“EI³tò–ÁÎ_þüqúüˆ-ËŸôíb¾:¿`ä­U=ǚǾm±R’_oëÎWFÁ[:;ÿ¡w¼§.@ÜÓmÌüq­k 0o%óìÕ Èé ÌZlÐrŽ©ÈJ«Ü)TPðök¼¤; ]ägg‚=­ÓkÛÕîÚµÙ =a ÎtTئ¯U¨•¤c,¿¨çœª0®án›tªšrŸ\½ßŸ|ÔÉçj~ïëÿ¤¨ûþ÷MÔMoþæÓC|?ýõlö‘¶åÕûç§Ã]§Äš øá“E„>m*´x=P"áE…Ò«^ÏϨäŒSj°ö̲j0îÄ4³ëGÔ‘t$™:K9ˆ+¨7°*ƒ«fÀ–Ü‚m`Ç]æÚS•\Fϰ°'¯¨/9i‹Ù5ßRÞä¤& ²*…cxo—jÇjOtòQóÊ‘ÚÂ=pòÖNš@E*!“(ª’J¶e`©€*<Õùj3s7Ëo'†y·µwã¡° <*T3*4)D”,é àpSOINŠgRÐQ&óhÒÍ]ŸVé _ )ÇŽ½ÛxOãüˆÕžcŠ„@sÞå+ÌŠ ×ÄÕÏùàðÁ«GG‡¿>²ùŸM:ŸHBÛó¾J-sy{ÀˆIÚ9L |°,ZÔBÐY¦ ¥Zx„梈®~G4©Ž£NaÚ`éÀŸþÿ†ï™Q±ÃÏ’PA4=äG5÷¶™–X£šÎmæ,/´qU‡ñ†+‹üîANÇe 8a—X½×¹2LOÊH 2ö¶·777¿Æ¿œVýïñ¹;:)Ž">Ù¦OöE÷Íñ*/no}ñ=sp~Q^r·@T†‡¾Ú$¶†góÙù|Z§%~“ÎÆT²Ïç ÿôÔsüqwiæ“ì³-úì²ë³;ò½V?Ó‡wå‹]~Î[hQU8Qu?v|’®Ú›žú‚æ3)7OŸád¹ç\ ‹"üC-w¾ñUÁ9jJ0x)ƒ-ú;÷ìÞâd5B»P)¤X*¨l»!²7ÎìÈÜ»E ”؆› ·~^Z#´Ò†‹H¨ØÐ8js‰s ™„ú3¿;YœÌ>ÀÿÞmŽ?œœ}8Y¤¿ºç‹±Ô\¦BËïÑ]Ôó¥™zCqº!šO䎊7“x'ŒH‹£¢÷p@DP¯®¤‘΃4·s˜ç BE„’€‚ Ôy¸¼ÑŠJ°×õj£Å›7îÀ ù$± GÙ †rx Ý:yA:X:&Z‹‡Ñít"’-'dÈç&™äÔ-%¯;ÃMøŸ"¡ˆ/8¹-n³/¥ˆ1TLÊy€Ä³Àp9Š%ÑâÝ&1[ÄÙɺG”ɤšÜ/žÑع²h sâyúü*~›YzšÅ82rÛ’½Ý³ ɆÅá‘ÔÃ7®|>îÿd5-&òŸÕY}ñÕD0i#Öé§Ïùø–ã1 _鯄 éµyïŠÃÞh@Ç“UÕË2+Á“)Ç«zº|àRvÂ`µ<m%3ǹñìX¬Ö y×Þªï*N"0ú½^ËXûÈïÒ£äJ-ÿ÷*wùú*(ˆâòÞÈçZ)RkkŒÿŸ­ƒXþpš#Óå}Ϩ{'«xCâàÓÊ, …?4¡ö<Ôóuìë±ªŠ¼:ín@‡z–ÒfPº×š²V—”JnŬ|+çò›pbMÝ¡S­QÔ®7ô€qš†”$ÿ¨m,4Œ#„æâÖ€2iqƒø%½u}b¯`0ý[éVÇ‚é§ç] Û‰–‰Ð•·$à¬Ãì@·¸[1UFZ…¦`™”¡LpLðB õeæ0‹°®( ¢ËUD4C …ð(Pc¼g¶…Ñ·¼æÐjéwê,wÝsÛV}Žq‡ ³¯&÷iì}­E炉!p¨ºÚ³iù=àehÚ®RÛ•ü‰àær‰‰!’Yðz_›!øz²!“N±™yÜ%ÞJ®'jPŒ)-MV0`NÞ1^V\Q›»ãajOxp{¿°Éë;"F âÀ“ Û4í`B+aP·–ø™2Wƒl,^íkM°NrÁâ|œ‹Qú´L`G…ãƒÅ+ÒNPœP’4餎ZLˆ€ä¬Fà­¾ûSd´¸r0•å5—ô«A-"Ûc¹(Ukjía‰­œLÈó6«¶ýÎFW;ÊÒ``ÈnÅ\Jr¯Š»/i¸ÄëË”9ïš–yò%/ž\½@Tf $Tæ³{—F¼æ´rÊŽ-”ˆ‚œbÿêý»wÀLÒâEB¾{§ ¸¯<_ó•9'$tëg FËön uª;–ÔÎ ÂVÓtO9¨†SË€a„¸D?#å ÎH­vüÌ©KôÃÞÐò‰JD$úÁ'?!—¾ #Rô¨+÷êý¯OW}®î°çïÓoƒ~OÕŽ‹ÏËç´­{i÷7Vˆ½GÉ'CöóQÌ6º7ì@‹‹ë4o3Ò™‹?кk\Ò6õ¢²£D·;MZZ8GBm5qzãТ{$v/öŽÖ 95úŠhàMG¿‡å>G;„…Œò0‘[eD¶Ø/iD$˜m¿Æ Ÿ4‡Ñà¡@J1ŸÒ„Û÷ß+`.q(NOhF¢Ïœm!ãLº`ÝaA“¡Å® 0'Eªûªë¢j§w¥– Lěǥè„I+ÔÔpáP˜aI) ÄÕ:npm;hr.5 hV¯h 'Ï©[Þò±%G²ù’u©Œ7áÀ¬–0'ÖkÉ$™¼ד5§oËéÇðÉ£Ö¯ŠGééW;˜ƒu¿Ø~Z´>Þ˜ÔLÛúm±= Ÿ?_üÚõ„¢„GáxæH#ù¶¤Ñõ(åH$ü£BÎöjz¼·=»î £¿jû&¦X7èž°‘ Ë 8JbÃì_WÍg³ù ¾·jg 0ºÆÜyê$Z¶^±Ã™>dE"¨Ë}Ã󆻣·7{¶jà`]_ŽçÓ¦ç™ =/À eK‹“fHWK!_µ«Ô Á Ñ–ùA­„àŽ9Œ\)¾Éû¾ƒZ‡Ô`WMѽ—²á…»‡7Ĉàgi7Øi‹Š:AîÆe.gU¹†…Ù›‰Häi§ï¤õéñxvážD·Þ€î.QÄ”1——h’!öBøß¤¹íÉ¢"Üï^ÄptszŸø¨[´åp¡ÄÞÁ‹ñk.œ m½Ë õ"=¼#¸Æ(ƒ{J×U½ õ€¨ë`¦Xà@MË=êJÏG÷øwî»=ñH™*„8‚ܪ¦%"æ] cö=5vˆ~ O›¿5ÄûãÐâä'°2EŸÊ™î&º¨”„S´¨2v–’»ôšm$¦ÏlаŒÏ<†½ƒÂ Zº\j`ÿÞè΂ÕÜúß´kû…Y¾œÎÄ8b[‰m¤Ž˜vjéô$ýp)?1`#÷b†¶NOO+æÛÇí&w«Ôüp/VsEµBN ˜«Ë+œ®sŠ‘¢ÌÛqÐÑtðzœŠÇ¸I‰±ºåVºÍ2mïÏÍŸ¬ÛÍù Õ-8ƒD&)ºXÍf’)M,Ù³‰¿]{†ÀާGŸàÐ9¹±ä²ÝÕ-QÂE&l” ÌÈM¸¶Ù!ž%®v‹¿)Î@ºR0ž ʲ6…w³(|Á:Á’€ ËÀΗú%çòµïè¨Iz¸ù–¸-îz·ñ0’s•ÕèrÜí’ ¡Î{äõSöˆ,…î ¾°3 ðŠ%Í¡dTë‚P™>õ4¨DO×”8Z¿!ˆÙÂrcû7P´òÀßPé—§ø_"«v¿FÞiˆl–.»bgƒûdÿ}¾HŠâ²ò4.é#Ln8’Xס§ô߀(Mÿ¦•bÝgSüoNºæ¸„ÿ>ƒ; @m}<×)h†ìÖÇ€_Óö Goð&~ÀžxFÿ ˆ…g8œ#ürŸabõîŒ+äŸâlïg°1÷:Ê4ÙG}ÒýÓk3Vj–:µ9o覇?³ŸÓ Bà>’MĨ³«Î‡¨_Ȫßù9NÆÖ¿ì~€ö$ &×·®¶v][»+X£´½òžíu<ÔÕØqÇsK.Šá|r´§?S‰ë$Ïç˜e„µÒrã‰þL«³åÆr¾±î8÷Èán÷#E•†1™8p<¼·æáö«Ö<*ÀgR=ÓŸó {êÀM6]¨­U{þø‰þ|5¿JÌ‚ž“²|–Ù©Ïï­}¶5šC7‘8  Ë=òt·û‘®‰<|º·æáö«Ÿ¬y´=‘n§¥vŽÉB;í'÷œê©™*…M§&wrghæ å ¬Ú3DO•bªhNÑ·BËS†e¢J*¨ Rθ¹HW¯4GßÉ-ô.™w·•XŽø=F6©áog”äΓËéç»ëBÖ{7D»%S&„~,ŒÓBø(]*ð|ªýÐ[%ï1Ê‹j‰.=; ¹ù=ŠUšëûHcŽj°Ü*v&µmB™VóË«yÂaƒíK2žj¸aJ¾{¤´îjʲ™GXç¼Ä¯b¼;ܲÆþåtÌ DF.(Kéšø%[3¤¾8^²2ˆÖ1˱’8îÂr1)¶g³ê]qçkáe:ò1«?¢SDedÝnm6G›iû¥†æâæ|X È #jfhÖÙ¸('¤"ã‘AXÜåü_ucêù:•WK5;X6ú†šÝ;FZ"ãg†Ø×-ý¼>]Zv»$M¨ñ­˜¾\¢QÕïe  ¢XôRð¸¾1yÒ"¸œLÖÀ 5jR­w„âuZsS'¶FÅîlé è´Þß4Uç(&àiŠì’ýüÄĈٓte*ÞwÚ*ëh­ßIã”èò}2)WÓ¢_?Ìp¿s¼`†Ë”Š-9ÿEÜÇì|A a®%ƒ‰¼)Ò‹>ÎŽ]š£)ø½¸=s_Ñˇ¡1”I.ŸŒö¾ÈžW({r‘˜Óü¶ä’Yî8ºÔºk.nEìôÜ›ÔYé–ÝíØ_ÚÄÓS6-Ïý$‹ ;ñ_q‰<$~Õ9k¢iŸ‚öVô÷~àZ=âɪLœ-ÍÆôQ:x©â‹©*‚Žå«‘g,¯ÇB–Y“™sà ñ¬ò6H)“ ·t™qõ }a^ ­¡’e‚\_Rq;ð½¸L®¨Ó m¥S”(g\7RÁ¶ÝËQ¼OQcQ…L çË‘ÓÛ!%ÅÜ‘k2´¹9GªZ]SuFµ£ªP½£lK‚v¯ÉLëŸá†A#$ØäR]tZ?_5üä󃣽Ÿ×“sýÜ\ɃèC[ûÜÛ‰®Eäõ‰ëb…u¤$9]ÖÚS):á á­~Ö†ÝAéCC€qIó˘±xjÑ$ƒ&¤µÑ‹L4ÒáßÕ¨‹§³16ð7FCØîa&ýfžÀ§êÆe jäÁ.oÁ‘zê¶ØFd2BÁ¶æÆ%Ô-T<„d„«é§ßì•·rX\MWN½Ÿ7zT½õlÖEp^Zˆ vRÐ$£ dŽ ÿýÀ‹*ÔAðgÓÝ ?¯NµLb+îÓ®«iUW@‹Øf ªH«ªA±Sƒ„?;·o2ÎüO½H×Éå%šRSÐïÒ–j”†ywüìþyXü¯añ¿‹~úÞ‹æ yÏ@èn¦­[±‹¨:gÔ1·šóÅ9 ÈÀUÍ)=uÓiñr\Ρ¢U}D̆» Ùøio¦ÍÕ·itóˆ‚CVpåÉêûô!/¾ç?Lpÿ=ñPµ*7ªŒ ÉZ°ì4fØÄ<õDxøÛZãR°t§Œ(Gé°òiÔ2BQÔBÜýÊã¬ÙÚ³Æ8Îþ`šµéþŸü°}xðbÿñ«GG?˜Ïéù†`çÛÎ+ `r÷F5C×!¸Tf-(µ‘úº®ò(nÌq««Ô‘·ìm’Ú†”±‰ÞKðˆèö¢b½®9Í”Á;šP}€G¶o´8X]Vs ÷~[ŽO~zIT])ÖT]úBT®á°–pß”7m‹5çŸo2ºS¸9Ÿ#lɱS®0ö"! ›L®“M?¡Þ9¨L[žö~óíÉplü¡Ñ:^"FqÚ핸g ´Yp”ý$ç9åó³3¦k½ óš´ñ†¹Æ3™Šiå&Tí¶ñŠ ßÜ=‚ŠV¡ËF+¬åbZ ÙÊïâç&fJ¬’C) 5yØVŠðL¼n×ñcKÙ•&o=/2À²£¨ŠêŒéä ²„—þeš»AæÆ Â4¯Æ€Ac*$vÀê²UŘ+HwøS‹œÆÈ5ÕÎØ{ªÚø*2&§Äætªâ×òÜÆqØ8d0:5Èë}}+õ2nüÎvÞ¼ž·ÌÅì¾óÏ®ï´Òö ùƒ'U¾Ç^åÿ# ü^íYnüÚ_»zL÷# nh§ÕA[Ê«~vðö¤5ZCQý «½Ì–­aï‹E)ƒZ0›Uаñ[–)šÙÒŒ¥SÀ¹SsmŸLåîežÊ¥§1ÙŽ{…lŽ5“£|d¡¢üá,‚vÇ,FjuõôCq¦a »é[4‚~JjéȆÁmª´”oÙgK?ø‰XsÜ^^Ø| \«DkÄÒ¦H#K„÷äË;sʾŸ\Uë?Àc@—©ržzfÄ ¡dªüNþ5kB4Ašn->ìÑ{§`+§íŠï{”4vCQ¿gâA¡Ý,i¦EO庻t)EO¹Á€ZÞ¨§Ôá÷6In,R§%vQª‘]8uu^B!6L8¬ñ’í°ÏÎ%ÁNÆ¥i³e¯(_QåIE ‡Yw²Nî?™Õð7¾è3-î ïxuØlŸ¤YŸÂä,>*ÈÚÄ õú¥ØÓ(¿pjÂå«Ù°Ž^±6îçæX(^|Í»j)õäFé1±©Iä3@!|‰9ÉgSÁF[Q÷9’Šl•r’‚t<~tðÔjè¤ï¿©ƒ™¬dêN è÷”ˆ·´w7ÛZÍ óYŒ²:?ºXë*ç+áœÚÚ‰F:Au9\Aç¯twFê¯j#ıÏ›œQ^èƒå=SÏ­ä®b8þ3ÛœÁmÅÞ%Ž«QìÊî­ÙÝ~óܯ¼}tî,aÞSóTU¨’¿­»}3ÜjºsMÇ´¾U•ù#:xúå–i:O2Í®·"8ÊxZ5dœþS‡Ó²o¸ãPØpuäx ŒÉ‹&5ô4Úiªœf¡(¿­xóPÍãG×bDf[ (ÃHºÕÄb(k ½ÝÞÑtÔ€ˆá*ÚŸó‰Ò’ó­µ¹« ãD\q|i§u2ã÷l5õ¨Ý¦o”ÀéµYSp‹ý\3A¼a­EŒ…‰r,6KÁÄv/&f´!]Ï´*X ½jqüâî¼méÁøþövWµC×ÞÌ77*b¹‡=kºyXÌ=™¹¼Þš ]]^AœæQ “AçÏ¿VŒ1aßH ªD^+¿øY–Ñ< Þ&•tAóŠ62 Î8üëÍq­í¹ÎÉë(ɵ•-õUާòé§+—¿Ñ£0ù5Ì¥IÇœ¼&`Ùž£f/O#ùdgïpçų'Ow.¶÷ž>Ý>Œ²ÄsžP…Lü;¼ý½±iÍq oB¥f¤Ùœ´i7‹ ª6ü‡Ö䱿HÆŽ‡p@j?͘]€k¦GCW¤md»ÑÜ'aoP“HSÆ«S½·^¶kx!‰$ÐvG¨lˆÐv¾Y†ïœÀ(‹XV·©ÃOÊe¬àâ…Xÿƒ_è"7Щòö°{ÌŒ¹ÈôáGu+â­7­uìuk*–ª}“ÊBª ÖŠ˜U9 ñš=€ eÓ:D_¢6ž½xz¼÷toW\¥5)Q¥ƒx­ êŽí“6`¥ù Ó¥N¥Ð¬e%ßq"X: ©¨m–¼½? ÔgÊ=âˆ^`’Nüf>}Aqˆ0$iܤ?Ä—,/8(ƒpQ=¸Ž.?4Fõ¬O )þ„ðμñäêHÄ»BAB—O6¿N_Ô äTË>•—åFG$Ä«tùNÕ…!u•4¦¬'ì‘C’_½47®è[qq2I#Uudu*3Ø\ÕÂ9üj}4ˆ×ƒÜÿÉá­C©¨Y_1ªÓô‚wyYM@e›^‡-LuLnôp‘æÐ·XÆ@3Òäksh?1¬¦S;Kk¢¦ S¡Jfjv= Ê g•;S™ÿãäHÑK âvÉÅ„f×ñ ௕)†ÏÒHú Re6WÊK%®ào=PÝÞ°w\•:ÞEÂÿÉ®¹,ƒÄ¦ß¢­â²C:Ý7¤ç¼ÚÝ|°ÿô"]MDb^Œ¡ÚÚ’µ h1ÇŽ¡57[Д ½TÄë¯ÜŽæÂû†®Eäœü$½¬Ã%˜«]Àw¼º¥$[n†‰G#•J»Jóþ€èTkcèûœœ›Á7_ÚËñÓ™çCÑÓûµ6?¬³nz@*/Ó×4²å݃P¬Ø©Öì)Œõj»0Åg¿–ãÓ?QÑÝÛK²êd–S_`ŸÉ™aD:º½¢‰$9Š®júNºP ]"Ï”qö)Œj«`p 1 Ú¸xÚõÛºJ…ʺ*\ÍäùdÑ(·ÆÌˆIL]f1•ÚKC®Œ¸aŠ$.¦îtþžN¡¾ûÅü-G¬`;™PZω•CWYj„¦aQ’^åRcâ´ ]?pãÁÌ4Ö_VW‰´Áë._§¶¾ …§r˜Ž`J2­C^¼ª—år2Ò$ÂN IáXú˜òu(ߥ4IkkòJÄIÔx ¦ÞF;cw]M4èFÛeˆë#ë(á*€oA²º1 Ï g@r("CŽ á½n£»í†–õ[t³J.i})ÃÒkèѦï\²»·šÏ¿XÝÖ3(Å01úÈyy[~s(!…ÓNNÉY©Žòþ¶wŒks™”Ñ…Þx†Ý¥éªR(g$<°é(.’I¹Ó7À=JpÆì¶FfB T÷…[ä… §˜gD.V ÊÄ‹†B “öYÑ{¢ f2Ý9âa ڤѫõUj¸k&í~`X%kOÖ|ØŠc_qîôCàÍ'Íe÷l»wýp ³éÒ•›ºßº9HÒ²|3¯1£M!U ~SÏœ‹¹ýê¥ÐSÃwÆKÌÓÆ»D˜™—§aw6ª5q™²Ê Æø£¬Ëv-;³€Ü¤ _6r)£ÇIê‹q`áTB”ýA¢Ÿ:(²–\l6ÏJ.„û #ºÔ1àäRürònssãäÝ—g/ý“AñÁ¡Çà‘¯à‘÷_ž}¤§Ö?ùþ«ÍÍð0”^rOßð ¬ú„ßÙ:ëøüà·N”zËJ®¸Iº0!ØK C¤rÔæô‡´%/A¹…ÝHZªH·ã§äjx¼b0}ñW|)qü6½(IÝñ˜èÌS­s Éö n\Úv,”ffÙ#Þ=(W…ZªË[Ãâΰ¸‹ñ¾Ï Ò’†c8’@ÁŒ[qµŸZgÄÎ,Ñ‹˜Ò1(Ì8—ÒI¥ P¶þþbûp·xt˜n¾Ýã#t[í|¿þy¼{X줻ðh÷È_½b„4ÿ^¡s€8¾‘§éÔÉÙ!ĦŒÎs7ǶFIñïþ$sg¢ñpejš!© ‹ ¬i˧á ×l•Å#1ìÅ`îp~Äž(b 9¼ú1ŽÎæWávð3±«Ó¾IŒª Ñ4Q`è5Å4Öý`ǸÆaÊzf†lõf¢~ Ñm÷Ùóã¼Â CuÃõSÚ¹DF(3úصAnöoç;¦íÿkM1+©°YÖ&ùbÅGÊðe;xó1•‹O¯5)¯ajhµ×­46cÈÓ°¼ÖÞ•MÔ쬻¼\®Ë]4§ÄYŒXR: Eîýþ.ywë]ÇcMkÓ¬ìj2×H.fhÛ³¨—í ‚ƒ!6˜¯ï/eUÏW/ƒU>5júÝ´æu£S†EêÉ>G ñ/¿æ_ŸNs²‰®ˆ3dr¦ Á”%»¥k𡤡³Y>VvkñpÑáÉu¬¨aSŒ!¨ Ô"üVÞ’ +©Êb,Åдq9ê²r¸”(–0Ç–RÓTüF<û:D¡1{ª—¤øšûQÂh6w„TC| eÖ€RöÊñsìœò,Ž@;¼^nR OæVòånÄ“ý÷/n_\ŒFeÞW ÜŽ˜éþ]ŒM¶Š0‘šeì›Äžiš\Ô)+KZ›í×7.½¡¡ìZJ6ö:ö&ßü½íž‚¨¼JÙ3ÕM»Â}[6æO­ÊžÞv¶šJ~µªžp…"у”z;ç*nKùöàhÈW .ŸùçÊxß4GnR¨-«€ÖXɵ ûm¯‹»ðÅí;[w¶‹þÕô †çÏgT£*‘~ ¥Ô™òh2©ØP¯\-WMM"¢Í.òñœ>ö¶œI¡bìþg>—ƒDƒ³qV]Û‚*§&›Å!+$—ÜÐX‡ÛÊÿêp÷èøpoçx(Ä>„w”›w&z€`/©¡x ¥Å“ú·ZÍR߇ ¥Ÿ7Fç)%™v‰Ä´’½"5ÃÙû†BŒ ˆ Í%¦ =ìù;W¦Ã[ÅÔÇ>ÅË{'ÛäT†›DB§Ã¾øœJÃ}G:ÓFjÄÝd¢YȰàܽ,r‹Úû5Ór]l íeÏ3……íÚ¥'“aqò8ýÿ"ýÿ{(P6DfíCdžA1Ã7ðŸá?oy.N~"f,uuÅ›gÈ5¤zÆ0EQÁýÍ §1ŒrèOñËÉdûÑÎãÝ'/s%¢¶éfÀBTçÌÐ^\IØVÚá2ƒ¤á,Aò¬&qF €üŠ0ºä§â è”„ ®ù 1zŸ‹M·áòàÊ_;×Y‚+£î(—®ì˜+”>yÄÅϺ»øÀ£–]Y‘’Ôo·GP½›±?+¢É ×._aMýïQñCJúÕ]ú›_éI6®«+•¿©w\ñ¶HîîB€9›¦•ñ²,ª˜ìÏU2ɨXìÀ÷?bQ$ŽUr µ2ßRW3꽿L6._fgAêž´˜ ªÈ|9$9Þ Ñ3êöÔñMV½Þ4–¡ÛÝbõ¬3$1Fï$„¥ÍI¶¡Ø~$‹DšhP¸œFž«!ìsàSdã sög `¯/·€ÐL)Kmwþe¼1ÙøÍ&YT¹P©dŒ¼É ÑâgöÌo9Oh@U,û¯7„Üa¦0Ž«e:ߨ<¾¬ØMpoŒ©7¦~,æ3L¾{€•m} ¶ÇÏÃãòcã\bnLl­}GÝnZ/±ŒYÒÍ]‚ãÇ %„0FQ½S›Àn¶Æ³âÕ‡ÿw3Û·ÐB®0ý´qŠ'Û¼.ûËË_NN~}õ¿ß¾»þ­Ÿ¾jö´tfÊEØÇ¤uveK™·ÛÃaih¯—Å@M^@<µœVRõ mÍ4ñ§_¥I?¿Ì­?¢M=Ùxreׯ¶÷éa®š: øâIýȦa·C ÜAuœ£æŠx]ª¤£Œ„k-¿7¢Æ5†í‚mÎ-ç4æÝüåדŸ^E®j·¦ï¡½Gè8UÆNk®ª_NÞ¾ìâ¯ÅyëÚëÆÆ¹FdÚv3PÝ(Çòà°ÿFtª`V–;j ¾¾pì¾Ѱîß@c¹…3¡Lô9K¨žµ½²M¢YYp3E‹ê §[*ÙMé<Ô|€”©ÛòwýwÆ®æ¸QðW©#ž…æÑ»[Ãtë£ —™JÖλ›ÃìH¤ñë¶S]{ÏS—Þµ'1 ï¢f_êûc~”€Ü¨Áð™|¨¾ žÏª®TS/vA»‘ü}6ÝtâQŽþ+ÈF¢J&sÓÀZéeÁ-nÈò±Ë˜[¹ÏwŸéÚݼ{S ·£n¦ÒË{ Óƒý‡¿¤½þrPX…™¶âÓx4£w nËÌê$ÂEÑÆDÀÝ&·Z,Â.fÒ¼ã´d‡ŽÞYøJƒìá´ž§Þ¤ eY9 z˜>`lAJr¶ .*ƒ7”)Sjc`×)t Ü1.Áì”#jzCžƒ¹°(—;ôúÝÖªÁaèž@¾0w"CÔ1‰öû>´ùÙ»wVEUšë3m¿(#ª¹àÆyõìàpw ôư V´ô’×ãÏAËS+Bq-énÍiŒf´›kñ7DÀk*¼—ΠÆÛ íiï ñ¤?Pæ`FÆì»÷[wî~Fí€nW|Åx;ìj¯ ÝG)pÿ%­ìŒJ‡ê#Õ»ì¦Áš£ÔÎ7›Áv>™)pS§]Mplœodø@(ÒBðšâb\/w‘v§Ã¯ Ón/zCNᮣ‘ZS¼˜Ž”ôWZ0:¦NöO:âEg¢™·œµÙ ¯Ó Þè*ÁÒf’úôrÆEy›Ð¤ŸlÏÄLм\–Û³0˜(¬æ5É&@Ï^ÏÔBß –h‘ü„€§GaÕêð°øÕz…ºM¥NŸS$ü{ÞEñh/På9šNq4Ï2Ñ7x QTŽ 4íq˜y‘mÙ æÒ¥&úhOôþÒƒd(ØGÌq7,zȽp»U\ùw–, ÄN°¸Èˆ‡N_Ó“ÍõeÚ—põãÙ@¹èpÿaÉÅ4ŠyR æŠu è ¹ß/ês¸‡ûKˆAõ &Om¢½Å´Íx/S1#Ý)X1€iûyžU\7­9̆L¥þW >À™œ-ÊF¢N5Kßlºô_ýië«?rí{”ϱÉ{‚ùèm@´ÔDáðuéÒ$­ÀmbÖ d–R›LvGÜ<.½‹÷WÇ6dAÖu!ã̓]ÒM⌾Á© Úê³A¶ãÑ% rjjœÃQ{†yF×TéyV/Ð,Þ­SÃÂS('žP¬¹°1`LãhbD§Îžj‚x×Ç—:8xá§X‘Ý$?~ƒ^¥«7ó¼^r¡õ~)yÙó,_áŠdÏ#¬àuEÀßÉÈ­ õ—'ƒ¨¦ÄÛ×ë—¢Ôà핾^˜ùü²bÅËÄm§N¬Ú ÞnéÔÌ•éÀñ{ú«Ô jóŽB?òÐ LÏÉ/Î<ª€ý æÚÕyç¶Äµa/œLì}ø`èÞ_þyä½I¨Þÿûÿö”²n6_¶¡U(/‡…—¨Úœ“›tgw‰ÌŒž1ëzNB2˜Œƒýãt_!Q7:2€†ü2P¡ 1z³÷­ŒŠF™AªÝ*-2‡ð€û–ïŸ\1£ÎÙ {ˤžyú ó±]½úqcã—¿ÿôRƒÚh ö4Y–ZCv%£?åï8¥?A=ÌmÛ5½nú|8ùÞB7]4½_66¶^")éôb\ÔQÏ£v램º°ÕvEñdŸhÃ4‹-m§euq’›‡*qò/ø¨~0+²B²…Áz³nFâ‰]%m­\r„‘o)J†ÎdI»7–v1ŸÍ-]ŸER ­ª;Jåø-HHÅÞ;qÀȽr´_ÿòøûø¢¬?~ø~ú뢪^|CÐêçcW[±¤‚oÃÖÄïrÎ&ÂÅÄö  E—é+jpÏËÉZ"Å™¸r×)Þ±0`ÈQ5‰y(jòÓÀ•^ÙŠ¿5C=”dR }‰>•èDˆáÕûÔ] >PùåXà¹é†·,¯æ/AŽŒ…¥ð’j\üž4¾Z˜šú’¢ $ÄõécYb®øÚ)²0–C‘8…{07#7C¨,FèͬÏRÙÒâ,j´BÎøÔ¤oNç¼XÑÙgPä¸'·7þ¹¹ñuÚ”¿î~õò¥Œ„§â'^Ê#’O“£ˆ`XzÙícã뤷K–ÃWîN~®Úrˆ©µ¦ª‘x.®Q_ÖïP5³œ ½©kN¨baÌÑæ|þò—G;/ÙÒÇBíxâ|ŸÁ8™·œ(аþjqŽÎVz!}NÐ/'I²VXÿyBðïòt1obÑ€EuŽà¤¤4×i7_ÞÏ‚|+ß”Gxêµ=Œç~öFZgÅîŽNųm~øÎæÏϯ—Iº¦k¡·¨zàsZMQ›¨o„Êtö³:a G³Ä@•'øÉOó‡gW3¹µX½],@!DÍkCŸÍz(¯ÐˆañN Îl¬¬ÎÎÒ^þ|UOJ´òªÙ¹çõR¿»‰ºQU:L‚›†Ÿ¦´ÖÑ0ñ•ÉQmGz~ý¼.d¶(d¤ìÈ7_h:ÛL¬éÝXc³ÿËö‡þò—´ ‰1©\4ân‡~ÁÏ^âõ̸¥ÄnÂû@5¶^bci¾ã€Yö*øåt$EÝýK‚S”­êêxíî¤=µ{ ¸©ß¨ò•öÞP¹ô„²8Ÿç =i ƒ¤Ø³Ãʲ÷S±ZåÎÐú³à‡-5™Åت¥°ܦøJÌ̱܄Ëò_¨õKFñœÜïÅèxÆV7MÚ¨5“1jû–«ZãÞ œÆN±F5­3’wNÇšœíŽ`Ô£,ëÝTÒT"¨Øá74W¡kÌuL~›ù¢…z—Àôür»vÿ¥7˜è‰v`IëÍúŒk×1’ßT Sã¯jñ"|"WlÍjRƒfòÏtD6·Ô§ûÿ¼l×@ÛLú5*Ù¥”%xX„™õþŸC5¥» TyYµŠ÷”ÓtÑÁ?G¶ˆ©6þ¡ôJ÷û¤9­køÁ­ @n‹Íb£Øºó¥=9ž–³×8™¨…J#)á.´gNgK°=ŠPá=¢=8à‹?xÄ/h€\”õd2°§±~4üÐÁE2äR˜¸  Wö5ò­!ZÝ<6¹¶mCËgmcÕ?Ð¥öŠA[ã=1å·¯ŠÌÓ}Ó¾þjt÷s7?ú/¼þÓ(F'áO^LØÏú[×ê;Y¤2;æ2K;Þ˃9ßý¯C }êom¦~L¿ØÚJ?<ßܨâºs˜þ}—‹²ò,ܽ3@ˆ+a-68js %@‹„¡è«iúN,Î7­…‰#8kb‘^ÎØÕ¿?«ÞbˆUò|!ðýËQÑ;¢ÁríkGN“ÉXа+𒙨@âuÀï¿Íœà3Ôù Ö Q¼¢`jÔ1ÓÃÙ£t¿ÏõJÄ]_½7ú ‚ñ$Ûcc¨Ñ"ÊRéÆr:Œ€#¿:IA€P|̧Àz¸NDmsÂ¥´!šjIøJÊS¾Î<‚]±ñ¹rÊüŽd‹g[ÝÝű®4dä%ÚºóÕÆ{÷šqÓ¼€€ÒJIs†öœ±Að*†ÿJ½>WGÏŒ Ô¨'LYðU{[¯›*}Z¶Yg$x÷‘ò‘ÙMi©³h/*"˜‹e°’ŠW‰NO;E¡®Æ_Ì ¤«9i-æŽ>¹zÿs9ûB­!>ô4<‚ç<>rá?Ç[7obç4´Á‡/>³? ÏàUÙêÊ4<ƒr´5¦«&<„WQ«¡UxÄ<z›z$Oícxr"é‰àr×øù¯2m`ì<×X$ý\¡½ZdðqAaÿ ïlrK!ÎVw«-å/÷QI/Ãc¾²<% m…óéõÕÿÊ´³?ëÜÝøòÏê°!á‰÷¯ÙÕâ2#‘c¦Èvs^ ÀKŸ‹gÃbX<Brf:ó;gî@ø*å~ßÚŸ·7¿ØÚq¿Ø^”ãtôŸ’cðY]÷×¶¾ÚÜu¿x6ŸÏ§u’i?B–vqDEßìrß¾³ùÅIùľ.ŠËÔé1f/i ¶48}²4NoQ¶C[V×2© P¥'SÆäO ¤gµÈXµm„¿i‰óvsС6º®#?P&ód5émwùÀäó¢_^•›âÞòÂ!–ÐùåC,?RåÞÓø¤Õ»s+GEÿèúr<Ÿ:ÇöŽ¥N»½=—s郜>õ¤u™YÇ[uöÇ/|èá°8OOEinó€ŽmЙ8o:V_f8›­Áöâö“'[›îá›(ø»íÏ[,Î>Aé3Vw¯cÔÉ1j…¬¹µdXÚ| ¢sYs$±É šÞLë\ÁÂSz-vžõ$àrok) â¯×O$Ȧ ÇËN§f»,Oáa¦›ˆ²¤±ÉW÷þºwÌŒÌÜ`Wꂺ'S«?1 x ½*4“ífpT*é–šÀÊ40Ùý‡å1AKú7ÒžJ½³w4< ÅöÃP-%Må¾RÎ\Œb^Þ0´Ÿ² î!tö¹uö¹šzÈo£b& †Ò"SJ“ÖsÕ´ž=ß>Þ{´÷tïøÅ“ÝíㇻœƒÃ⧃ÃÇÅ#(}¾}¸ç¼C FÂ!îp5cÈ£¾JªŽn1DycáóÑçŽÃiä²êoçÜGá/¿Üÿæ>ø&q~¹ÿÝ}r“+RUÕ5EFјòUFÅìàÌ:šŠ­Ñõ¤ Tô&‰%‡âdÜøm0­¥‡ÝÏ~ƒËÓ\> ˜¢Þ•Æ’s#~0ñÇÉŠ®ÿRb?Ç/ѱ=6a²bpÓÍbFnØ€d•ŽŠÀ/$¼zñ5­H°Py ÊSªPÈ«¦W@Àß`­’œóILßÎDq˜"Ð(“0 ké Bšµ*ÇÝu§¥¸œÆ×ÑCBho.EÞU’ÈHÎâÏ s£Y^OšÆRÂÀЂ÷ŒK¢°…Ô$¯æêÖjÈx&mž‹Â˜³²©ÔAIZGÅá,W/az¨X«´™¸2-3º†¿*RHímñy·sð£D=”l'o5V+ÉÌ!“–er¤ÐÜ+\=aÍço¤ƒmt.ˆ¢w÷v¶Ÿ\=¿a2Nè«\äþ(Íá–Âýf <ê‹î¨`âÎþy=§~h’ÚQ¿)g-÷†Äzü$Eåñøe®÷Z(p”Lw•Rj5÷2xeUÁš€rï«à£ÕÁ¯èŽÁDN¾´òÒ˜IòÉÜ¢Ïßû ®<«€”Ôã‘–oá%+ÜȉÝJp½:=MÛ×ñg0Eº°vQ 1ö•ãŠ==i±ÇhƒPÅ5ç? L¦ÔžœQWë'ë… ð½°Ëööw÷Ó.;x~¼w°_íïíÿ5K3 b‘†ýàþH[P®Ñ¬œNN±8ï\^}È‘ðt¯ÿárƒžhH*e ïí@ùd²Ùjº âòÖ@­Z^ÕÅd~еdÊ ©J"@ÝÜ10QSܘ$†°ÍØÇ—þc%Y±ÏgþóýƒWÛ/ŽR3ÏA×pÎsÿQ¸8'¶ÿPFîãw#©›¤¬ÿ°¾HC)é„C_qˆwŸgü¥´o:Îÿ&]+ªYiýíÂ@\zÁT‘xz9ò}qmxŸ¤1ç)¸I»K½¤õ]½'Ѭ^p·(+¶½àØ9òŠ’ØBærˆvO9åš…sÚœ;c§¸Ë^4À‹Ñíà`»| ˜×æÝ@ÉRñ[* â’HyÆÍÃ(8÷‚›Y}d¹‡¶RšïJZ ›rà?•œ‚<E&UKuQ–,c§”w&JëMœãœ^¢­"˜Û"íåe2Æ$=ŠPê ò(WƽEæ\ºíÊë¡T˜Íy Cb/É̼ȥ ”þÃÚÂ%³0¹^pM“â¡–"¥˜Ópžò†Æi¥7ˆw׺2k‘r2o#¶·¨6ÀïW.¥ø_éWÌAô¡-`žì5"šaàèGº¬à·usILs1DpU¦YCfÙñ¡ ÚÇQܨY˜l÷ÔÑÚ§œð,ZûÔOî©çkž" c*­ÏЄvm¯i#{nQ´žk1ŒÙÓ bûÅóýíg»nx/üÇ/öÿz¸»ûø:•[0ÿeñéâÓa±qvú¯ƒ¡éÕœ:îÎÄ€AAÙ9[$QÄ•b>-?Û&ÖÙâ5.èjÍÑîm~FÇ€˜aáÞè#P ~(B…œ!¼ 3tL{Æ9õ*ø¸4">ÑEæE¹Á á*öb‘yŽ tj5C*„ÂìÄgy{1·:y­Q„øúDmÎÕRNDWî*rû}›ÈÊCÌ=|SÅ"°èZg&G%8­Ê‰Ó±ÌÏi&CÿÔO`Š~ÚŒ ¸ÞŠ‹Ê÷îJœEuæ¼¥øx«™¸ŸPq~LŬpF Ò¡pePGiN«j7=…#¯»Ð’qvëÅñöÂßz±“.Øõƒí ®ÀP€­inóX12e"ŠÉ\F€E1]j!«á+íåž½› ;<ù![•v誱$‘PÍ\ùZG.‰Z!ë¥H6¿Ã×ñç£-ùWâ<¹*™cL6§ê-ðùÝaL Žâ³ò”kL^MÉmó~¶šž%ó„r¤eY±£üF¤p‘æ –¾2*|„~~¶„R_ ±fÛyZX‰*ºJ0¼5Ѓe¼MÚ?Â:DZÈ4± n5„:Åæˆ •;‚ $Ü‘”@5':@Ù‘æ£H"í=è¿5wyµÒËËÅKR+Þš»i¯eÕLüž#ô5n”ÿx¿=¼ÿ¶ã»q³ÑÏa·á&Ó?¹#Ñ›wõåêÒÍIœÎ÷îݽTsÌÑÿo+ç¤lEÕ|fž«àæý§j–ŽòÿY\kLzƒSMIsøÙ„CÚ$bÖ;r÷.Î($S~òøÅó§{;ÛÇ»j^Åþ‹gv³,¡{£­McÄI[IÙÖ¢ „LqGQ¢V޾ƒtsúÉuCþ–c4² „eJ,iŒ ©¨m¨6Æ’(µRMÛ{Z\9É=¢d&ŽvîvžË¬d[?Mß`µH¯’H³×.b*;=„ƒ)ãŒI §|¾0¾€F:ü™HoÝí"N`·ÐÉbÅJ´=Ò^U™’æ´„ËC ½-ÔTÍ*Ö›±òº’Ž ÅV–ŽCi켕ªnÌ m¨l“÷Ò»Œ’r6D7¹Ë5u%n ÓˆÓäKƒÔ\g ²WEÜU„'áT±LœÂ¬Z‰mÙ²|‡uîWR|”Ä YP%Ý6öA%æâžy¼Œï@jÕ¼àæ‘0"¤b—¯ÓÜ«j‹GW£Á–Q +§67K'ú}àÆ6^AþA¼ ±P VxIr|ËyHš(Š?‰ß«Øˆh$8çî×E¨¨VŸý´È*#ø.ýã:ýã·âCÑ¿*úÿ‹ü¼«¢ÿf>ë§OÅgï|¶ ÷çŽÿénü-ýós ÛaQ q Öf÷3¥?">˜Ê! œfSB vz›à^*ü‡¥/$¯Ÿœ\5õÊñiúAN&ÕYú_ÏË¢Ï@¥^1œl}æA{ˆu.,è–Îwz㲞‘ Ô5)r £mrW3—GÃÂÚ‚2àÞ*dü.´¥Ö ­eÌf#„ŸoaÿáÖà3·>TÇþMUØIšAÿáÆÖ€TRKž¹Ïl¾,˜m{T¥¨l©SXxaÜ̧«¥Ì1R+-!¢—pz”GÏŠôaHoÏj©Í1]O«Yîtí6Oz¶%u2Xµ£Nð´—*(.JÕ{C-e'•m1Q†uSIO­÷XçÀãØóE—óÀ?ÑÚ›€(œ°ŠÚY>%8rA½€0áã‚A EæÜÙü³ÜfúïøÚ i$²rãìbCŸöE¹0s=uûuU]¡ž¨3'ìbºä¡LrìÉjîØK$06s#òf}At›“ah´b p¤í?' O‰³ô¶c}ºš´_RÕCöuš\¦ Ë "¼k3 Û·%Ž›0D¥=i£‚UµmÄIÿi¦Øc" ®7“þÓƒâVÜòÚ^¤4úùhsè "sëL®…6<)S'ÅFȾê„~}ÈÒXy`sTÑÝ´Ñዊ ˆæH»¯NƇßÀ£ßF#®—õ)üûSü7—™´?{îæ±—:²}Ìèæü<ˆÜÍ!éΕ¥/ Š—ª3­6…ð­÷÷¢M¥uò&1Ö¾›¥aì·j7!9†B±z—˜Ùî’tG€ÙåT¡„ƒ­ßH/Tl@&EÚ,¬ÛÌ¿‰•¡ÜÊRà »©ã,XiF¡çd½„8³SAüú˫햿½”€qæÖÉoGÓ»æ=|ö^òß”VGßo¾*ß=¬”›K¥‘åÀÐWXì1Æ¢‡ Q'”×3È{Qt »ùª\/±„¼¨ra$$å«H`KOe§‹?áaÉ:Lðaƒ<yæLF\™¡šØ®ØÖ™H,ðXUls Œá‰7Ž :aÙaÐQȪ»,5€šî…ZýܵJ¾Ï§u‰~¸¹³â`ãð—\ŠG±ý|OPí¹\A5j¸¬#ñè‘hó^¬´Ãi¸Ëù_LéÙY3¥ Ö  %ý&>N—­¢èÔ•J¦sf]éòAé ‚ü §Aô:÷鬙¤"Ð+~¥KºåƒRÞM9Ê.w`ÃÄÄ>a ù‚xT!¶§G÷R}äæhÆ$Íȧ»€±¸âD§voS)¿£ú\Nɨßa+>˜ïB¶ yPñ50ð ç¦ÿÃo¶·¿+ËüôèÑwã±óúQÀû™Ó÷?mÕím<ÑôʆŠ‹/µ-‘dØKÙ&„K7 ˜Õ(‡¾Ý뺚Nl ÉúèTƒeIjöxìy|0—KˆòPr§-y¶"DGFã$õ#æ"ÎCü˜‡w)å.â&¤œ8’b·²kaôj”æ¢çhãÂÃ¥qÌ¥VõÂB¹i«Î¯*ö%á(BéÖQ÷&Y¿Ða·-7«}%©Œ‚dlò=ã Ê ~2T9™¶RQ¯Q¤×eÃÙ<¢åoá]½¼`Ó»m!â¢êÄR:kH®ÈÁÓÄÝÂ6+$ylÏÓðÁÎB²UZxô‘Ï +P!IkËrPÂû&/©r%vo:Šé§°L°«¢­Âª²ž©ÕÀI|_ÄÕBë_<×þ#ÂQ WF°ÍÉÿà›Ê ü·‡&É©ðë°–ÚU&÷f„*è½GÔE(èXë8yŠðÄL¡:…IÎ#ÜÈ(»4Ó°QÜ.à…MÊ|ªwíI-Ñ î†FÏPw[U¯'€cöåo‹»µáB)…LQª ®ÒÉ€ÖAb¨»:ÁW%\› ²Êü}ä&•…wÕoïO¿ý×|·ÞßBdâ›Çûß=›Ï>_¬ù\Òéctæf©¿xèΰN~é­–n34X³²JùÚ¡÷ÇÊ«*¦©´u¦bR.K•?I$QI”xR§3 k\rt4õyQBÔôvÀ[õ‡2(!xÏærƒd—M²q9ÁhžÞ2›°c3ê¾"^™4Š~æ@aïP3Ÿ¾QïIº°’¹tîÜòìT‘æØ·ÂÎê.ëT.ÌxfØè—%aͼ’™É»fH­¦M…_¯(—Ì#‰# yÑÛŠUˆ*€"fLèêÖ‘Òñ·ú]_£× 3ª¦Ÿ8¾È“ÌÜ¥ØTG°ŒIð(Ý,ýÑn•nFYÑ;›ÏÓÿ8@;.c€·HÙ*øtÌxøžÌÏ<Æ ¿™}—>Ã+gö]zp08y~úÄ/”[§N¯k÷JÉîŽS‘ÌzÀ"Ì–,?üÏ^ÿ9r2Çý„pÀ´Óª«ï­ Óþ£ äý†éùMå|ßR@ ¸[“àñl |¹Xêó!yƒÄŠć­ª™‚¼¢`qÿ?º>` ]µ]JùR;çP?Xºm ¹Æe+5TÁ1X:;Êè¶µ¤i…óƒ¯è¼~CÀédí{Ïÿj1½VthÑÇbâQ 4ARI׿,c´TL!ÊÐ#‹1:_¸R{1r&_1ŠP˜° Ëu2&׿.üöþÎðs£×²¼…ß~Ä…ßèo¬aðü¨$„d‡e¾À) ™Ml£ZÒ²ÔѳòœßÍ6®E`æ4פ;Š|LSä‹°ûoÈ´ã„+Dî>Pè`x°Iï¤lUy7<Ò½ef̵aÈ…=esGÐ ÏRVI¿|wØžg(VA™ë»â‰Óò±X GFÐ%È„K_Ó½ädòþ«ŽeÇjñ•p&Q›Ýø+ —´U_‡™µðºL~«óªISÙÏ‹Ê/„nMñÙºÎþü>í¹ŽâÍ?¿ßô›±Å¤ØŠ™t UHu¤÷Fw?múŒ`iy•¸öGÒ !UxMÚJø+/™-ÍÙ>x….ªóÐQ»˜“6s4ŒB]^ÝwgÆî%bÐp—tâ$á0ºâô1/WiEé«~Ëv­qÔð ¶PŸš{kZbs]¼~¤µÉŠ€£Î12W$;$©pp\Y_C»gèâÞó˜Ó†É@®ëCè(’¸ììGŸbw¤ßUÖiØÿâöÝÏï}tn®“×ïAŸù¼˜£Á,Š¡×?(†TB]³$ݵ¦ Ô'ÑÌ_ÓI%„'ø*ç‡b%ÁÍÍïï|4î²·óHN€!·ÌšÀª%Æå~IßÜ_/ú€:tÎÆWš—~”Nª_f¬Þ}òóû»®¸˜uÓ(2æUàÿš¦sNǰëÓ4L"æ‹,ˆi$0רsœµåŠŸ¦£´¼h7í„õûMÜzk1G\¼îL¢"ªð*¹šÊ°YôÒp/iG¢Ž™êÊñÑ€‹Œ}Å1$U¸ú¾¬…Q=^Õž3¯7l6«E•CdúpA€²­ÉDmwßc HA}%ƒZTqŽh0b:ƒ ü!\¯v0*v-©:h‰ªy±âÏ‡ÌøK\7F/­ÀÈ$œ¥÷<órÃ9ˆÂ;áQp­m¯áz¦¤#o´ymƒ/˜·à?u“åH¥›É1•Þî~fË?óp];[vÃí-9£A@ÉE‰bǬÝnã9!V ù$hÕ`Ö‹/”¢œÑ/hÚKÉx‹ÚÓ0Eêr—·¬òQû…³K±=$S Y¦T7·. Da`¡6ôŒFd\)Nޏ‘¯Vâp¨Š¨V]ÕÃØ ëßj±.Šq‘ Ĥ‚>Ë•†ÄrS—?z”¿pžNçäºçQQÌ3m5X;†N@Ÿ /ËÎg“™•× K 宨Q ÙOs $Xݵihd‚¡•\ŸjȯVçÙĽuŽpkvË6RýjqÍÎ_ˆ"`¨ƒÏvàátS^6\MT-˜]üÙ-<-·>ÿ\„‡†ŠÅ ¡ðÚüLë(3] r¸,upǺ8¾¶<`ï¯ie´|vrktëä–A$ŸÄè¼%t1ô“Ðâ¿á 6Íìm÷šsGqŒwxÚa MÐ!1ÈÁÍWg“9Šbt‹ž“#uæw¸9ƒÉç6žV%±–‚t¡Î9J|x}ÅË`Û°ò¯‰kæý¡Ÿx QÒ&’|·uå + Ï¿aÆd·ËÞ¥#ˆ»U‹g›!A`X7JÊÁBq<а˜¼3œsJEùY&sø2¦…aŸAD‡oÄÉHñ,àpG– Á¼E ¯Ý~ÃyÆóËŠ2ÝøØÜ­ .Ke’gÁx~øðd¢¿Í•VrŽ%s ðÑq±†D—†Ý¸Ð“úL„]c@ <mhK"ÅÌŒT7Ž yñ-ÑGÞ‰®—7é‘¿Ì ù@ɹ F +³´‘a|*ЩԪʜ¹«gÅa`„ˆÙ7M3Ah«¶è¸êl} vFê!à ðžÒö–"jïgL1ÄÏë–– ¥CœH7ä$ÒµJ™„&$höbðxñ—%#œo£!áMÒùJ_“þ¶ð7'¦ÂItI‘ZƒìÎÅ\“‚YBÙ !$Lµ*Ω×ÈV‹ïŽì\¥S(iIPÁ óÀôÚjhXÏ~Ëiö£–ÊU:?kùj¬L³xÇ!0É!úYõÖa}gU3l)8 m\*|¢˜ØaòxPËŠÑK"%ÐIò%¹\Y-Š8c§gvóažØ¹8 Æ4×ð­E%·¹‹·°Â²DýIßQžkBýi¬®LÌÚ£ã™dÀÊ­·NÕàÝxlGD©»¬ïâ7Ó¨¼²±fùìŒüÅv,ùõÞBš§‚UÂ>ñ4±’ÆMQØA¶Oë߸XÌZ˜è2%)Ð ‚CžXæ%íy¾M#¥q¹_õÛÈ·owæ—5T¼U`8.+jvI_ÕÛ„ÁÀ‘üØ·o{¹jp›²è\à%#M7 ÃÇ/<>ýðîú·Áû;ûMënokyœ™„´ílçiß:É-8æ×ÐzpyÝ@* ̳EØÚp­qĺôÀs™z7¡(å§‚ÃPQh‘–uó,ªWááñµ®Ü9YõXL ÁOè3&VYgt¿Òèa.˜®¹h¦ x£Vˆ¤éî7gí׌€”êÐ|WŠ*ñÐ|ü°fj ¸’Ü™‘±AèIUhÉy9¨*é¶c¸{š^8| JŽŠguÏNw¦óæuzÇ´Æü‘%ÆÒ𦸤+»¦À~a«5^ÕÓeq´š%½ôoåpb¾.Ϲ!NçW5}Y0*‹ éXÏÿ Q)ÕÊkÒ(M×X,#2÷3O?ܵÁmÉgt•¶C)9Ê*Ú“òÈ&uP(k²@FºaUòoß~Dœ/l’Zð}ûvúÈ€tÎñ@A¸T¶?µ9Aã‘\ª$ÿˆ\JBñ:4…-k’@Öþ|År?lù •ýž‡ICÅk½û)6çÛŠ>(†;C«ªôf‘ _е+ëÙ åÄrËDŠ)–Õ“¸ë!Jáf¸œŸÚ.|džcÏø`­­,ÔL€‹ë/Vô£k”2-ì›y=!w»Ø3×._ÓE†ÁñY,2…f“ŠårG<»òøö‡oÒ5õÝàÖ/ÿõ°]õ}íp3Î ;)¸%<1s—²”‡MëÈZ––ÊJ;ù›ï†!ÞÏmý.ûÑDÍ Púà$«DëÓ×Àzíýrd”š7Á§›ü7þè×!ÌÖ5±s"l’æZìõ´æÌ¼KV¥9Ä”n"Ž I²2U`ôD÷µd§Õ’Ý)bZK/Hs· ÛÀè:_œ{%®z¶¹¦S®<×XÞÈŽAcÓ•#5h°A¦¶ò"&G5sQDϸùA“8‹Ò—„/yÕ@_€ÛQíCò™ØÍÞ¯‰q¨‡ˆÑKÑ h¦õ…"ËHt• ¤(kôÐiõ§]ÛsèÓLaÛj ! ‘úER¶öÔª‘×­‡ÀŠºiPøÀÐx|{ÐyŠ©žÏ#> Ëó×PŸL·ÂŠë€á·CõÉ'Ÿ<ÚÞùáp÷ÉîáîþŽ«{°Z²ŒÌò›†œ×Ô¤\dXÂnøè¾4·)E(‰s­Þê÷€2Y±Á8U=…ÑV”= R½Z±A+~Š·­z᳈ÅìÚ¬€Ì&n‡K9÷E¸‘øh†›§Ú—v.¾ò8'®†Š:»öˆZ$Ά˜wTïKS³f¸_Õ+ñŠùÒ +ç#fë¬Íç]‡Y^øJ8R85–Då-Ǻ*òí²}‘žT#Q\8}’ˆe³ò¤;õÒgoËÅ$޽¼.ê{B@ÐkкfˆŸ‘†Ë7óéô¹Mü8¨£ˆtò%JǨ¯Ä« óÌ[ÍÂW>è(BB•Boƒ¼§ÀõT>*ôû—QG šèJÃoø a)è.6Â?6D—­ÄFM¿¸·Ù‘ÿãϵö¤ŽÓe ŒæGUÕÊôo!Þ÷“à¹J’¨ÔÏÅ$âåœSyaŠ—Eó[ÍMãx=B’ùC¦$?LŸ¸¸M*|‰Sv¢;e«‚Øa¥<íuN¾Áœ::î¶}œYpgu¥ßZE[Lf; º¿ í©’[^ŽëóU½«æ‚bP|2Y¤ùиy×´p¸‚â$5͹¬º!”9ƒ>PM‹“Æ¢o’¹¼ÄX'~"2Ðbr*žÚz˜Äà[±Š”–Ìžá†Ã¸Ãâd«ãwç¿|ï ýÛ¨À†^Æ ¼¿Úúèxž5‘~óíÕÖগœc&h;ooÿ =š«dÙJ8Ôu"'"H8­á4½xè)7[ ;¸Â©Hôœ%B..—µ(…3ƒ”—4ž.8\µïxÑ_fi,¨:"Oƒ“;Ÿd­qê#fHÖKI±0dOÙ ·No|‘š>ìϵé·w¾õbÿh÷øû¸²´ž ¤z\rftrAk‚T*©ÈºÒzBþ¬,e·/Æ1pÂÝ) ³Žò ÁòCº+!˜p¥…Ó!Û+YÁ´Qîº}­ž­*Ía&ož™õCN ÐÊê'¢Ø“ÊØ•<:ãÚÆ±#£˜sµûóñîþãÝǭ”òÁ«g‡»qé˜"ƒ…Uïj®J4uÑKØÇ¡ßé\T^tWQ#I1Ùá¬>ÉÆx\ÚC¥YŠg䦂#ˆ¯£ŠÚlHGóJ,E=ón…mèJÐ6è˜Rà x™ŽØÉÖ2„@ l% Z²z‡Ú†‚*®ØO }Åbn1‚pÃa§¾´áÉÈû­Æb:Ú -Òí‚Ðå!þ53nµ<ÅBÛÈx{Î^îÁ›Ž€¯[5FíI=^š°Ó‰Üxšc¨äúžÀ†Î$M¥#ˆA§6*C=8åš;DëhÙïj CU$ŸßÃÙ):vG T³sPqlÈ—§¾Þ–^(˜¢¾ 9ºY&_šbà ŠJC>¥Èyr·6Gwîµn‘œƒý«c›…+º%VaŲ-@ŒhѾ,›5¡V1ÕœÏøÉöÑÑî!ꯔ²¶±‹$Š8 ]fð3¬€´pvíù{PM…ǃlåÜÅÍrì\…6}¡ Ƈ$0~p2'Òÿ·ÓÿÿšþÿÏôÿ߆ů8ÆKÅhM3žâg˜éë®øw‘:«oÌ“FE†3£ÚCïAò€Ń]M¤7Õ\x,¢tbœe(f©zT) ¥/…èÞbIjPÏ|s¶ŽðùÕb´a!ÓÊÎF¯¹yåkÃB0ozk`it½çk‰HxL9 ³T‰4U-Âeq¸*ôê‚ü}Šê£Ð'·œ|‚·ÓyÂ8±ÈðIC¡H½Å °U¢o‡<áçi7ÆeSybC®šŠiÝ0‡Í}0*öËa¡»ò¢*U^HèÀÀ¯7-µXl±Á±e_À²ÕKá › m-ºX…£—¥û¿ïjœdõ*Ü·D\­*,W3«ÎK÷mc“ƒ­ßtÂQÈœe0Çnâ»Y#ÉR ˶ÞQSq*­¨G€¤ÒWuµÚÆIŽp½‹QaÊÒ4Œ«Eúžmê&1÷BÍë*’Œ¥æ¡q£ñ”6 ­¯‚ÑÓj½“OƒNQ(ñ˘­FnaüÍà+°–’¨„³…×¢ Î&ŒQ{ŽpÈ6e ýÂa¨ªÖÒO*ÒÔqæk-¨ysŽWE¾Š­Æĺ åÙÎ3xÖ:¦,v×TÒ¨©bIlIY-€Åž|C¤R†<ĪÍVgÅË)òý½Í•ˆWãa,Ò±N|§Vv2ï 0oÖ­T;¼n—0-\«à8šÄ X¯tò¯ ú"SUiby ˜óx¥„_¥ÈG4$Ö_7ÚàÔF¾6›Ò&uºô ôËFá' ¾V-™ûà›‹ï@ÈÌÄg¦`1Ÿ3Ü"D$V§qÁS-Œ~ iöA‘s-Îæë ƒ©eÖl_f»º‹vÓI=šììxèY#™ÓÌÐ8ƒkÌ›@7Ÿþš×h‰ Hcº…¼%hè¥ÝUNÀÙšýk›5ÇŠðÀdˆQf`È̾-UM º1ZÓJ¦ Ú?uƒ¹©¢Îw-öÐ@[îœs§xÍnps-lÈݽwÆgkž0ߌcÕ(Nb­Ln c«Še¡#7¹x$lâ lbÚæÏ&°7›÷²Áæò™f”,Á‘¶·!ƒŠ¢s•B‚^5-‹7ØDKfV>ÏÄ‘vÝ,ÔñjuìÎg“²©gÉÌ¢S|$²€ÌT¯‰Žâ,ˆš‰‚ÙÜ ’‚ƒæ¢G£¢jÜZ–‘l>8)ç ;–L¿²ôƒÓ=T™ ›)È1J} ËÈXèØÞNð:ÆS»NV‹Q®1oùÖWä“— LnÌ u ™—æ’©~÷÷ŧ7˜kKX3œ°Åœ• Æ>’Ö N ó^£yF.…ÌY tÍ"Ç+ŸÝ”Î_úìsf‰Ý¶4I›j¬—cŠñ¢”ÙD~Õæúr<ŸBxÃð’V]ö[âtxøÍ·.1?óLp¢l·r­A™;_ùüNò’jЧ“ò!×3TçÜNdëÌî”ü›éÔ2kP~qÿ–ò¢aù"’Ê ñ‘ &ò!ß4Y8Ó*HåF”éPÊÔb4ÍuR̯#½ÿ–\3¯pŽÀR»°þôÉ´¼ª$дû/‹jyÖùåÿZûæq–Ü}yó¸ãË߬uøö¬ûÛÿîWݾ4N(*’}Gö( Üž¶.ï>#n\fÌ™Qo”»Œ´*È@-;å §2Å®IRׇ¾ø($¥m) £ÿòfpÇå³–ÿäííÔúƒAÛSŒÔ¡V%Ól>Å$ú•s¨1ü†µ—ʱ-ãÓ¢ùäÛõ ­Mê?TƒéJ“ðžkAcCRÍ Îw Ðô\õó ¬ßŒn±$k›$R!êÖá;ø_°]<÷l…x#µ~ ¾R”ä¹n+Ê®f ¯412‘¢i0˜˜‚îŠÏv´Êh3ü°Ý^î>¡ä0¾‡ º3P#Ì©ËasKs<Û…ÍL›«*)`›§ê Tá èŽoU»‘ c »h¹4 ˆ’[Ó°\\Îyö™Y 9‘g2‚/:-ÿ50l®D›Äû˜fÅØ¦1ü©i/5j)’º $JÇ mG Œ$¿‹Ô2þ!'Æ’cD0':–âé‘_„تJm£mlÀû¥¨FjÒïïû³@\~ËùÕÆ4ý8 Ä&xÏêw©ÇôæÀˆ'ù[­«ÅøË OçD¤ ©ëP]å^ C£“2CŒÞFÌGˆÆæÂ’»Ìá('Õ%Õ†\VM,΄J-ãõìºÕµjƒY,²%ȉi}~—QQ P=¾%Ÿ@*R˜²$'gå+ü¬Ÿn¥wRëÐ8ò¡ ù[ü SǺv™±]ÞëYqÆ@ç:“ Uœ×ıI@ÞôÕL’üÁ-ðpq©²…uB¨­¹íX7.È”!Sï~ɸ ˆÚp¥NMC%Þç¢/<¦wîùm–t®`¼8ûŽAÙz黑'“[9þº7Pk3u ôæhûâäò`ì,@¼†žIŒÜËÙó×atSçiØŸŒÚÏ-Ÿ5O‘ja×Qi ÚÍðóÖRxcm¡`«ÀÕÇ]Ö²â<©;Aø@)…/à­UݘÉgf«ùGÔP#ó¡Ë¶I» K 4ቈ´ÔöŠ’žüLÐP)¦¢Ç†ö0ÇÍ4DÒ!µ5†Ìp cLGœµ¼Õ¡œ{G xí\«Üûœqz‡îâ‡ùyUÜ5,¹{ÊDÄvK(âŽ9¶×ÔÚBΙ™!¼$ž¨Î WOî žéƒ„„”ªCr¡–ÓdÛO®‘t p­C–åï«ÌË`qj]ýÓúL2÷‹à[•Ò„8‹I v5äo‰i€Kª,‡ñjËz6·ŠÁZ5C€Ç=+ÚØUm»a`iÝüÅÜbºÔ±–³º‡„@FA†`çÒ A'˜Ýδ5JºÌËŸVu#Þž5G@«R'¥ JX‡ðà\n+i!Î=˜ÆÕ9†&UœUtÔg½³¡8÷OÞ’Áxnž“-Wº½“™#¿ÐÁÉÍLŽ'†;ä0ã{Ä ”L‹ú´QK‹æÜy{nÚÙ;eÎ'Á'Þg°O'v é‘7¯¤Sη³aJHkb"B…¶œåˆa¨&ø1WÜLDHgI 1NŽwcÉL‹¯ë4á`•zIW£`yöD ¾eµ:]*µ•¤ ôëèVœ#lÊ·ctë†JÐ1^YR$讋ŸPŒÛ6šŠò¨5åª 9F¬bNCQâT¹çè¼ü&&HÚÉËë$VB^CAd\$XŸSàÑîõÖšËÌqÍ=C÷[Ij¤ã=;kñ úuédDJ«‚‡–&·„•j-P‰ã¦oRÕþ]ºsC?˶7w&¤Ñtm·ÑhÔ¹ãpR0ŸÊÆeGA#{‚÷#ùàÓ¤øY±5­Hhe^>:æy}õ:d|ÑܢÐ\cY~gµÛàUr˜£š3lNç—ãzÖÁ¸M¢s•¥ÿÿÖÉÔòÿfž²à%c?qM ‹Éòð ³NŸùä“ýƒý fÇîýºÀãâ‹Uÿÿ1"¯ËqÛ ÍS.bM|ÃÈ•¾!Ƹ,ßÅczù+zé«õÁÆY‰áF4šoý‘oÇ_‰!Cüö7VvOõv‘ÄÉ¿5g \0‘ÈF0b…N§¢›«°ÿ‡ùE­f]M-l)ì«iepí M¥3÷/FTçDÛ®‚E'Pto&?bp`Ù¬‡ªÄÜó_ûß t~“zFØíÛƒ²"n=L¿9Ù:ƒ÷w,wŽ`Ø™™!íù2/u×ô¼Õ‚EÄi'(KPÕf9š(œ9ºtYÌ«Q‹PÃw\”CÎ ³ AIÁØ3®Â <>¸TH.­1vXÍHé)ý^²aÀæSñÀ¥÷ ¶Õž%BÄA´¢8-¶Í˜P‡†þ¶; qµb9ò¾V¬žì'Ó-1_ù9¥ˆŒeŸM!KÓ&7ô…ê&©BÇŸê`»JCÿ ´GÈcgÀ§%QFÛÑ{;7tZ£ÇËjÉ ³ <Ë?ºÿâÂ¥>@e8<Á®È]Å0\kcÁ.Qd"<”gJ¢«ÄæÛE+GHµè«¦bDÑ‹«§TA¤•ƒÚ“(ÉCtŠ€Yâ M5R¨³0 Òµd£~SÎìëžq¤ê~ 4Øî6_-N3bÒ aÒ+,.-ëÔÁ2Ûõ†à¡ƒ]Ú¿µ½³³ûüxPD j­õù9ë(d’P1@=§·U\…g0³¡?#º ZÑ#¿Kçh'«aƒ!Œ½îèêY\×5‚ìÐâßöŽc”béÒG8Ú­lïh·Í\ù) Éœ#gM¨T>%æÇ8[Á}4ð¼FnÌôoM8q‡ûŒŠ~w&›4!@¥‡Š,™dílïG/bÅ ŽŒHÍ‘âwd×¥ -âGôz„ãÈ;L2Jû®úFcWÚ¹^fÅ–i´É–·oì )öÔ ­²±,µVþ†ÈÿvѬɻê †8R¤þ-øÖ+ýÖ}'Ñá³æ¾)r37eâ^{¡ð/ö•#mî’ˆIj€òô3P…ì‹„¸-Ë/;Lÿ½šƒÂÿ¹Õf¸×zFàÚ!h¸+HW¼WÉÐ\»c­ì*¶ iÖ_tìo÷ç8é¢m™Mi ý ñ‰æ~ãN÷ï?Ý~ôi÷'[Cøl(_ -®^’–ÔÐ~¶Ä4®N!"já0™k퉮òýï|x³J§‰•ž93ÍÅ£Ÿåå¹vÜ‹çûÛÏv”.c&ü©äÒDò<ô}rh7ưðe)5B¡6u¿bºlÌÆ—‰#¹3’…#[ J52àjÔ@¦t˜ÐHÓ ´¯iT10泸§œÑê©æÖzðžI¶qf˜¸…ºmzãU’„è qK£l×V¤ãÃñG¯íÂu\]&yDÕC,¤ZjjiëËr‚’Z)ÙᔎaAN=Gš~iÎ;: 0<ÌxÙ¢­¦©Ê!eç×Üóè.Ìl„É&GÉÖ[Ç]ƒ ç‹CýKðÁ85¾SEª2Ù‘NœÜ‹JÙ_K°zìÐ á¯62„—L"Ÿ—tHR)ñ€õíZßMâ´n.¡€p€õ=Âê¸Éð2NÜ5"—£Û‹‹L ‘È“l&;wR¯´·YhˆºDFI8ò²ÀŠÏS<‘¬±\à&HöÏ›ë·F'åf}f›ø•– Ñíƒ@¿„ˆcMC}¸¸8y{ëĪƒÉ<ªØ¢ù]æTÎÆÃñ‘Æí•‰\ I_””ÀŒÏ^7Ìs¾'ùámˆTw P¦9Š, Vy‹dùU1@9)—eð1²Õ#ŠÔd¼%)“6a’N•“a´š‘F8²Íér@• ãRˆÅ=µ7]´Š¶&ì©-¼³ðÅÎÉåä5 ͯnCÄ0öôâ2CK†¯uØïï ?Þ>»}?Ùó¢nˆöçoiN.ÝI×]a ã°ˆ,YLrÀÌó…Z«%Š?$ )еx}êéå$jQÐRž Ìx½à¢zÐ×Ó5Ĉ¦Ûž­±ºHO?Ü{~\¾pšù"bÀ&DÓ ‹žAÙŽ68iÓÁ¨&ÜpÁψۣx1«$ÇmÊ:>MŠ%Pè]TÕkzKzÎð» §~_^â}À©oD>Ê .vazªº<ž@äÞvnNy¸,¡I¢Ã#íDƒåüÚPú†LR|ää¦ùtú§¡hœŸ¯¦RéZóö4“}œ?L)9pÊW@; ΰ%V<§“ùé KfÀÎ3Ïfh ÕÔ¥ðxÅ«´Òþh÷Ùy¢v|‰±^®*"ªUFÖæ%F×6iöÐÀšßn#®ìYZ0‹NKôQdÎMÀ_iê…rx‰Rïj>?#èÏ¡:äLi—Þvꀊ92ܡˤÈ9X(ïÁÆÅªÂ½«ò:‰šQÚµ=X¦•<+/C­K£; {*LÅÀ¾d<[R –N,ÓÎuÒé¦JtŸjÖ¬• ++ãf®+hH¾¹ÅçÆ:¸¦®öA*ÿEcWsqŠsÏ"ì§“£ÛNÉ Ócµ¨´o×*CÔ+Nã“AÈl™.È­Ö½i~S·èy'~{rõ›ü8èè²êJAHœ%](\ÎÓ¥&¶:ò|óGŠK½_$lu0WàAZ•>ÚTs©aóG*Cµvƒ²ä;p¦à°r.eWêÓ¥Z|õ™‚’}˜öÄé|Á…&&s¼†;.CqŶš‰SþËæÆ×¯F/ouN½»v˜ áôå®ì.Ò0óLbMèu˜DÓ*Zéa´/ŸR‚Ôt~mLaƽ'U™ajU°GQÀå#Êô¯ËdBÖÄÄjàQâQ÷ǵVc}Õ’»e“—mM¿M¤•~ ³uïÓgçÜ\ÚŠ£«Û —µÏWTÒr¨Ê‹Eâ$Z#Ó^šØšzÉ WÆô;Bkœ|æ­[¾I2V ¶]‹H»ŽLœ!è×ÈŒèÔ,¸øÑ ÄöP”Ô:HO¡ì²Ä<JHRé6¾‘Nã´þ‘ªåVÇp.5¼šÄ/œÎ}ËïçKC]k©²jª$I,q·n.-0Nç&3å´\€"z7»9ãc>ølÅi+… -ç³Üߪ®kËÊ|ŠÒq„ZJå…2&AâÊö0}õ¸% áO$©@'Ý9ؼÎâí§TsÞ©¦. ©2u&ì#êÞc¸QZÂÂ…ŸŒ@j©_ÌÁ\Ñz\Àžã\ÿÊk?dæŸ>Ë\cZò0dUL·;*œ¥À˜O32á cå“ä ÄñÍT€oç6 Zû¤Í‘öIdOîë3ƒëª#gðû|˜Ííi§[²§Ñø š4M  ³ÉptMÀ§°Ã®½ß#ö ðsœI¹|q„™Ç õ͆.(åYx1ñ‚=u¬v„u–Ý—Ž–‚ü¸ì.ž’äDùæ]vI"v»¥e³ÑF kn =ξƒöØd.,ô3Ú9U7Ëg‘…oÈ>TÚÒq+7…P^ IR¼Ë Êl“~aW3S¯áš+•RN ÕiÃûÙ„K¾Ë¶éÖ èoxôagP|(úá?ûw»žÀ/v…ÓŽuýÎà€"Y`8÷3ƒ<Ò±¹î ü˜Ïo‚óÖT«É|ÃÅÇ„Äññý]Ví~Ü=A‘ $±£AËó¦¹óÑ£‚}òÊ_á+{¥›•k'OˆïŒEŒ{I8Š“Œ?À  nÁܰ¦ºÒ¬Y‘­ƒ«ÖâX—^»qéìîJÅsçVtX¸jxQ~R4»Ónƒ b#L• ´^“‰É[÷…úžià;$­‘M&‡i˜,ó‡o4‘ûY®ÎÎÒ¿ÖÇ >ð•è#Uú,§Ê´¦•$ [¹ÿD)‚(ù:Ò¬q] 2pŸÔ}*·ƒ ‚ï÷©èýkQ4 Y”æÖ¿‘"t‚GBL7QO”ÄÁ«±ýPÒŸË9¥§ÔƒýHQ@=ˆzŸºŠE…ØßcÆ Vƒ;'1ÿjZàæqñI<Ïà°ÓÚÝÉa•\åüMæ¢8 À ɈYTΡ™ËÉpâo‰QqXI-&s´H´—ëQ–\Hˆ&øí€Vã‡ß<ßÝÿnÍÖ¤³ë‚mQ‘XPRhà5Ó‰”¦EU³nBbÀˆˆkd:uæ˜é­Ä܇í1û ‚´‰½+&N3)ײeœ=Áxè£m§Þ?tÃJÉXfµÌhõ0o¡%ÀÜ0 yêéŽ]J„¨Hiqm± gy{œÕOïn ÊÛú·cç6·28p]Q!4¡ö©Ïls Y £d˜`£æ°É$ý ÑÀaR‘]".1”eàû,“°…”gñœAЦÈ=Y~-Å ˜ü±Ž7öâBIûH2øp+ ÙÂõ(Î u’îC_:’Ø{ÜàðMÒv0•ßäÓ0S“ ÃzôLw¯ “eN¢Ã¿èEI²#Ïgs-a'Gòíëå6¸> ËýÖ®utÆâÍ4%ë‡xQ|2ãp¬ D¢±Ž0mŸÈ‚ÛˆžÐ-7úÃW Á Í "W_†œýžö®uïÑ…Çò¶sÒìyYô–ó+Wo(lvŸìŸs½¡·/©DŒ®{ µÊ }ʨÁÞ¥c|íŠá¼ÞäÂöwùö"_y§®ªXÅá&',ºNµÚáäYP…?2U–¡u¾)Þvݲt¬"uÆ*Ù¼®¯®*¤’àИX3¦K·³ÉŸœŒþÒö{ÖŠêhƒ- „¼¿ÒéI©;Ùv¼NX_©Ò¤â€‰ ZùÖ·T{‘IUi õÌÊdáHÒ);+öž¿ùdÝ V# ]>½­¯ïŒ¶¾øjtçîèÎç÷zv#2ChNPÅ ëSbg„Dk ~œæöu3ÈDo+²ãëeõ]qç—ÍÏ_žLŠÅ{éç{/ÓO['üÍ/[_¿|x2}W[9|;5s2’Ÿïï~,ÊñØ9Uós+K›”—’ƒÄä†c®‡Y°ŽÙ ‰*|^Ø£…€…žŒÄ@TWõù”öñléÍp¿áJØRôKñqZí°;÷¾pµÕ°–h†^MÓl;¯vmE³Aʶ—è%¹„À/-&(ixœ[Z@º2DÑþŒ9ç“Èê¥Ûì¨ÕðM•:Œ€N!Žø„=J—~ºwŒ²Á~Ƙ¿\ úyP’9žYêß{Õ,ibKÐuÚ¸¯E­á2nõxÃɵ+Œ›ñ j`èÅ»Ó žÕçý·T6W Œ—‹s„««öEƒ¤(X$ëŠn&OaIJêdN‘jtÚ—§á…~ LezM1±‰&…!CHÝŒ(ÕÈ@bsÔÓµíI‡#7t»7|&eeêaC ½šsWôƒŽ‰L…¾[ –)ÉLd¤Ä_+?wÐ,jÉ)J X×몙 ŠtSr®ÔtçO ÐøVÅ@}÷-°.µ—tÀF²<“Püšï¾Rˆ˜Í3œTîƒ.öDÓ  ¡Èy‡6eRÐ…iƒ†w É‚².@¬,sàN¥ÛÍŸï8 –¬ž_¢+„+ø"+¬Hܨ¸‡Žˆ ^þr)ÀG+æ¨ V,r²&5O!cJ—ᩌ­åV±+!ÁÓq-]f«O×.,ͱ]´³‘-G¦+ϳéˆK’7Î fs<yDÂ]!2ªjQ+6=W<윯Òlƒ>üö—_Ëß^Þúþë/ÆÉû;7ð·é.ÜÀéåܳhCTïli¦m|Jž§˜_k øö3¥ :³<<ü­y¢Åm0Y³ñæA7µª„аŒl4ÅüvNáÏŠ:A€`b¸¬ˆJ‘A‹¸5Òl Cs£H¿®ßWsvt«œæ“³EêîôU‡`XAA`—Éd£,ËÉNFúþO ³éŸ s޸ʼnãdÊk^µèÕc$&T' øvÌx`®RBi‰ßv'Z‚¬fÔÛ—ÞM O„ñê´°«ˆ(6FBI ÒÞYÁÌ¥Ï 0§_m\(‘™¢è¤­9ow„îœ!Ú‰hS8qÈWˆ"ÃF¨ÞÝÁ‰ÔA„±§î€™ÿÉÎÁ³g»ûÇGþä2üöŽ8í’¡òÍ€!ÿ£å´z§Î¶–¯ßãdö-ÞjU‰fù¯(:ض†—×°cq:-Q›Í]1øËz2™V‚ðáØŒ“αÞu$Áô"j´tª9^&\K>¸$Œö*ͬڗÜ@Ù—,1R 2fÒ´¡)ƒut—6S‹Ž§ÿðOœh&ÓÞ¡ioTìŠÂõÎHñüv°pTì`ÊG4æ*Xå‘€S|ˆÆ»q·w•ö_NzRí#≞j¯5k”¨± ¡) Vîë{™RäÈ!¥ œa*fÕ[4/í¡²RÖ2å‘ÍÐJÒÁŒtrX.].\C™_AiÈä(˜†s¢¡x*¦ùÖ„m¨=ß½Ô“Ö²¸yBYWΦê¹wÔ|‰Îê­‘VãÜ`9”#=.Zœa£5ŵn´pžìEþÖÜi1uÚýG? Ó¡[e©¥ës†à¢â85¸D¹Q¥}XÍ–¹× !¦x›¢éÙº—m§ŽÐàë¾Ñ¹ƒ‚ê:w´ÏœUœ"‚[d@^R*”âU±r|ZüI&íܘ§Æ¿Ðçf…a«k)=ú'Ï€+#c ¾A2ØÁ}5‡´cÐÁ<áqÍð`rn–ã —tBÖ?öJÖ‘¨:ÇÒ²<¯¸ÌJíª-± ªðÈó˜Fi0SJÀˆX;íCµZ”º„Ú|·YýŽ¥Ðë(¥þÉáî΋dwý¸[<ß>>Þ=tYy$”s¾˜«šŒi0$3–ðè¦UXí6›Fp &;Ι‹˜Ýoñ ÒžïÓüzXwž oñ „Œ¦3c=÷¹$èamuPWWK¦rQ|c„àoy88$[L©.ób\/ÑOÁ_ ÍÅB˜øR@_ GpA¥¼1ISÎ8LOš&Õù J3Uïàð†PžCŒ ê2mZPʗĺú첸Öxˆ¡^IÜù´ô%XnÞØô> y\ž:.‡[œä†ÊîL÷eAînÓ;̃¥ž×! 7@uâ›ó7¬ìB^wbµŸ˜gÔ‹‰?§ æÛâß‹÷'}TYú¿£ >"|^½O|ƒ[ÅÉàã»Aƒ€G£Qú˜8@´“©8ì{kjjç]—æ8b¾˜ôôZ“ hÃw´Ðâ8Ká`ÌÀW!EgW“”—F/y˜CÜö¤°}â òˆ‘ÊÍ• äŠd8HëÉÍȱ#¹ ½EªG–Oã•.HH –5*Ǥ¬Ø,Ý*[Øîóë$fŒ‹Æë¨ cÞ‹hÍ¥™Æ™ÀÒUXq²¸7ÚÚ 83¾\хצÀ °:I,Ò.²tS]¸GIx‹ž¶ˆî„ÌlM}‰·‘¬Ùñ°CÛ;­åˆ3I(Öf)hqãåò;õÁpìHì‘:úåàC ”ЧZÆx?$ ¸ô=*;¦2W臣§EÝ¢Cb«ðÊg…àÇ‹i¡ûA[)NüpÝvÊ3füJ_pÆ¿n‹ y…~8Ã㣯ŽmàSþ·5mˆ°#YO !ųüvbÂJ1¶>?Ðt¶@)£ÄÉ<´{"ú\Ýæ€GþPŸÍ~Æèáȶs2‡!'Í<˜hºÝ\¢NîEGƒˆáÃAìñEaþÃÛw‘ ¾Ñ ï¸rú\G=ÚPA‹"|šïX=Ä.)ˆ‚‘ê=å"„ª‰›WÙ—ÚíÅ-Í¢rYM¾,!M Á8Óš@ÑnG—+dBxŸ ߢ5Î"Áç0TýSãžW$úóïð]Ó6¥ån:º,‰ëe ú]JÄ+Gy_;kߦ¹šµïÓ=‡©ŠY…Ù„Š½TÙF> õ~4ÔøÂú|o+G…Ì.¨Â3³±N»ê®%YJáNˆÕÉëL^i¢%ʤëH9Á¥„Ú‡‹%…Y¹,صà= ú”7ÇEÂŒ?0s9Z,R| _Èò¿ó§o‹›Äæu]MÓ­Ù›1F¦—æ%é@ìKN•ÅÚ¹s¼&‰1ÞqR›‘Ä܆D>çÒH˜¼âpAK‰'é„͉—Äh~¨xujú6®î-Yl‚Ç” è:·\X53Ò§´±˜m‘vg„8jc’fy)Äm ¨‚ûš6×/GH’‚¡'»‹0‚"es“ŠJ´“äUµÀ›Ï ¦¾Fö|Œ¹éèß²z›gái~Cõý{P ‘«ó ݾò%%±Ê3Kö¢ÕCò¥©»rÜ? ª³ LîX‘†¯›b×9Y}U:HmèUg=]IÏHtïÔ6 Óf…•kUp+‡â³ô<=¡\F„y¡µ!újÎÀd³,Ez)p$Ì|IJ¢ÖÄpßw¬Ÿ¢n… >mý+„ÚAªÿD×ëJ6Î&{Ìx,†g+¦r ã Î .t̸`mG vÕ«2î]Ý&~4o@Êøƒc­H3L„Â&]2é,y¾ñàçÞaväû|'ö-)ƒF»˜­ØÙÙo©Èö:ÙÒŒ>(É%EÖ8éÙxèx{¸Ýû ;IÓ”'“t3 ô×o¾{y‹¦‡I«¾U|¬½–C_¯;­VxÈ«eE9MØTŽ@PLÓ!¦£ û`Àœ4UÏu[po8tbß À`n-f‡'Ó‰]M;á? gú'“ÆctCàܨHšÚ‰k®ûkÕ†ë ZöÏ[b(‘Õ[¹µ9º»9ìîR-Íò '$X±_rÂY­¸ÉågUtÊ%;ÔQë„Q¬½a¤ª¼%ç¨Ö.1ÙP„Æ92Þ]áò%Ñ`Áu(W¼¨6´‡!¬ñ ®“¾ û72‰h‰•Ž%Q—ÞPjTô¿Oó='†ç$Lªû8‡r*Â=`'ÐæÜ%NB&³Kþ8‚-®XËîEkOy#¬ÿïóxÐô—M»D×àzCË”¡EÌj†·Ý:¥È [>-k*N°ãÅ´œ·-Š|ô•Ä>A4vñ/Û†‰‹I+?¹Ñ8Õü 5XÁœÉLiÿ9oZ‹ê Oi‹'LW±!âLÐÝ­Ð !xNñk9?u‚’Ú™¥­t®©s¬íÆÊU}¨ ¸58¹óaôpðç`àÐ0ZŽí§£¬yZø…·Â,«…a¬ÖËdb¾ãPs‘(œ¡¢ü²oÈôœÑ íný3aŒŸãvpB©¶é°qÍBÈ}iVÒDou˜hUަ¥72èýú ¹_«‹…«ZtþD6þbN° nY¸mòîGk~v @CÒ–"úp=ùéÖmØø7l…ôwÚðWÚðן½é qE=`–ØÙ>Ú}º{t¤%ÂâíëÂÜ<Èà BD÷6ؘŸ2¥¿S÷Ëié¯Ëò¿zm§;ùÁþ‰qgݺm¾÷?èz÷EŠ|[C€ÄcX;WŸÅxbÛåêìCR T+¦ú@¸GÂ.•×K˜Znæl™ …MgÀêû,qOœ£1?ãº×ó+ï2a7WymÜì¶×ì$¼§‰W/Ü“)½4}žÇ1˜€q–)â J¨KÈG@•ÒûÃÖŒ°R¤|4zŽUXÊ §‰¶_Üá0¢²Ópç§+Ì#@ e[}ZW ЗÄñèÃmÝ¡º,ŽXµ.[Ä?æögNNC¿Iúžl}(ûï ~/£`\Ž{#ç+î¶Ò8g¢7îy~+)ò!M4]ñ ÇúO'[L`¬+kN‹¶æu€ ŸeÏ ¼r°©áô>çÕÕæÒËdôÖÞæ]E¾î™òu»ôªÀÕ˜º }×ý&²Ÿô%§è鷺ÝmÞùôq|?é ¸œŽO±|É´Ës$0Á+²´«Q‡í[*ŠÁPÁ½‹ÞDoïÕ¶ÛŒÑ;·` 9Äq«†±e1¶ Q'áÜ èúŠR›.ñ '9{¾*Ï…ñŒ.Ï#ÄrÈû<(R$SY¡˜VQrÛ”ôÄØß­Ç0×[¢X¥C²y]õ†sÍ`»³dµ³E\°ÓíD†…P@·v`>ê½°}.”WܳKDŠýh°ÝÕ7ÉFZ'“°á±°Mö”–Ò§6¶:{x÷ÎpqO««"j$Ë +™Ìz‰k¸2>$õå*‚Y¬'[Ìã¢ÏéuÝ#j *šD=G‡³Ç­ÐÇüy÷Aº–²G‰ˆ‰£¸¼× ©äý®vu n‘ÅÉÚwþ­¦SἊO$¾d¥yd÷©Î9žZ¼ˆx5š/¸ )­RˆºÕÎ>…3j6À°mŠÉå 4š¿l™øIf5•Æ#wÝU™é×t•µ³W{Ï%]m ¹ã¼ÏF¿‘_?´ùH'o*# 6oZnäòBŠ“&ÍC+Æóõj© 6wÏ.B:§å€®¾aòèTè0ß——W:Ì|ä”]>œqä’¬VµÛ¹ÏCQZåµVuÏ·ÇE@®õ#Ë€2ߎÛÓdŸÕ÷QL¸ÇŽöÒCé=UºâöéƒíG;=ïÒ—ªxÒqº#‹¬Mêÿ©Ð©›Ž£quQ¢¡á¶W¬ÕWϬàZSBÚÉyÓÚ×bÝù÷É{:šc ê¹ÒeÄ9øK .tÎe×ÿ¯IõnHÙübèý2]lµ8Ù!2ȹÆyʆgAŒ"—0e7C'ÿuƒûÂØÕñ°,¨öµjÒ+%¿±XüÃÃ>6ü[küÔ;ÞfñÍÍ:š ,Ú·;žlt=@·ƒ_‡?ÒŒãg­…wQ?>±¶ö`¶¸EO¿Ö³º¥£-àƒ¬®~W;²°¢‘¦ä–u¬´ Ò¬–›Õ"ÔÔHaªA“-nÝw÷‹?žb„À®È™–‹ÚÒùàÏŸˆ ‡ qï{Ðߤ¤.÷²0ÚTVK¿wNjæø$®‡ÒùÕ‚;Ÿ¾ðÙÔxHB³~'ýäõ7ˆúnä[ˆ,'ÖïüCôà‡ôµ`wܯV³AúPQbw˜)H†9*ž‰=.£¦zH‚ÀÃIõ²nþÅúÖçwCT‘ù(´Ì«l­x…‰£ƒY}¾Z¬.K¹¶NοIöÌwnžOÎ?M¿ù´ðw´ûš]¥Œã‘ï­!£Ô¯2õò|¶þ.}ÀÎÛf—ŒQå]ѳÈfÍí3V]$»¹ñEI’Gí>Á[ŒÞÛs¤9´5S…—Ž,\`‡;( ÊŸC>Gk©>DÛN#ÝØú.«"C"íäÓoоÛO2mê~¾Ý’~«úÙuÚ×PêŠýyÅ%xâ0œbÉ\ÍÑñ¶Ö Ù~úôà…K×d®R*:3óJå3’9±H ™F 4GùEÌ>®®M3·ômw9t¥Hx ¢%¬"™„lGÂØÞ˜6 øãMÕ®9©)ÛÂ-„¸«²FÓÄ[ª.Å)WÕ²X›Q¶s9£…b^—5Œ‹ç•ë—CÆ,ªQ¼"†!Ö]ÁÙ´ÆzR¡pXÑl6Œz ê9OØB‰uœùÆý¢µ0ƒbŽ Ð¶4B2Rx7A° 4¶¤î'Ö“y“F«º'Óþw­oÌ¡”ü,|ysöÇ/KÑà;h׈߃4qckWL¦R~5Ç…†S0S48fm£ä˜ôÚýOŸõüT›mšÓ¶Í(-î”ÀÎl{h.?Ti›Ô q!IƒˆNÎ÷ÁÓÏäÒêi.Ïáö«ýÝw_ñÉeãÛ%D«H90ùA¦»óM¹8ÿn€ n§ìÎÀõKŸþ˜ïZŸ´ß¤Ö²»W¨„kÃ8Þû6V 9–•§:+Þð?£%éŒ@/JÊ, "9>i ©+¾µ9Ÿ®{©>«w/ldn:*­B˜«àD¬êæ¢P(Læ­µUiu»ÞP ©œLØÑãÜlw6)pBõ üí!^RÁO¼ð,·`‹pˆiNôç;×JŸZžÈ;Ôó9s2‰Ëì¢Ùoµ¸•‡.S^)ËxF5ì7M¤`U9%üŠšògóÅ·EÍ)¸ùåC í2ÿP€~¬Á˜ç’r¾µ¼oN‡_®&”&ãéHE¼Ðƒç3£Œ1ºÇB뜧C®‘Ñ&‡’º–œv‰+~§ñ9špžà´_Ö¿•ìHÔ|p¯¢a/!ŠþÜ…ùä„l`MlV‰„•ë‰äÏ3#ƒ$ºÒ`-è¾Ôoa93 íÉ%M¤º;½dQˆ›œ3Óê  °F\bÊj_±©ärG–MÓQÖG¬k{æžpkð"úÒr«Ìõî\yز֤íŽÌ‰ž–, ‘?ªQ€i!®Œ3‚˜AÅÊéÀ»á°ú ñç-É¢{ o£!&Çu³=º€–²Ôïä•*»"Í„kÁŒ"óE]gk´Þô÷AÚ¸­KtWm¿8>ÐKêlZ"§·dlC›?¯¢êÆ,WËyÚèð9š%);ÂCÆFNn_YøºÐꨆK¾wo²#ºŠ‡˜<‰›·xQEÞ³P±þ5ÑÆdN‘ ž1鿈|îl¾® ¥Î„ȣȴu CýWÂ"žC$¡…!ë¦;Ç,­â×É~ù¶„%ý0ñpoÏõ¢¹ Ä«Œ‰>@¢ÄÓ¢ÝHÓ»Ú•ë:@ÙEo§g޹²mðcÓeæfÍçÔãPú« ÚÔ•#-âX ½xÒ¸ù…’2«ßÿ.>-zůÅÿSü©(þ\ï ©© –0tM^˜kŒ*vx˜Š‚ãÕÿÞ*NMîO×ZpG®~¿/¾JÑ:Jíhá~ÃÉ|5Æûw-yåÎ§å¸øôÓÓO?-&ŸÞ]ÿ–~õâw W\ý{œŸØ “ö/ªËù;—4ø…€øü)z&ÙD*ƒiúh{燤îîü°·ÿ×bç`ÿøðàiÆZÆ8¾xEJš~ òìpPéGöôŠ>e€y3õÓ†ùjæÓùùõ€Âù¢.˰Â×Dpiý!N¤+ÇÂcz^Í”_É0Á‚/ú·’.ÿˆ˜ðÇûûÛÏv“¢zäJ¶S€ üâR¢R†°éà=¢÷X!R[Tdf¦Óƒ¸àZáè¹òú2s*Ñé Ç2c{19˜ª ÑêYèr5«ÿ½ª:è܃†c*¥ŽDçÌú†;VS*€ËõwÁÒ@¶¦GÒªu9ø2*N]Ì"™LŸ^ùVü¶ÌLjÃ7••ü&GŒaƦ¥‚;ÈqʼnTQ$}7UåK1ŸƒáÕöÓãW°=`wfrÌÙñ\0‡%(lšÍ žg•/PÐ9°:߀ãF,ÜèÍ´LFGë‡\6·OeÛ̘¡0P½é²ÄIRš¨&ŒœgÌç©R›Ö#¸ò=¡•ÕNÿ:ùû°8Ù ‰c†Þ”ÐÿÉ»÷[››y#‘ëßÐÈè¸"òjZõÞ‰õŒ†çÚœ0Á~Z”xÖÉ¡ÂX@ÞQ\‡·)vh%Ûœêÿþ;ßF'D…/š†˜ù¢ ·°ƒ8±ÐEÞg´!b! ¿¤D "UòÌ«á6ƒ±‡Ó±úÓ†’J¥¥Te‚+²Dæ EOYH©E>jQœ Fµc œ¦Yž¹Â‡Ér]\ÍPî: nä1ãeù®¾\]‚Š=;_^°þÁ&)–¢7~µ1®—ÊüâÞ½»÷2ÐÖø||÷ŽûF]5±Z¨rP˜7Ö ó“ÕyÌ<¢/ršî;f$3#æ?XÚø90PÅ£âÛž¾E ®x[Á½„ †fªó¨Ø5eH«ms^È%2e¢²¢ÈlwŒHá_†¦+ÇùÄÒ” OxU¹›z(TYm©e‰BFq.}—ü^’dþðÔz»’°¥¥8Ç¿í‹Våò¨K”Ós«Î·H2àRøäDÄ©v¬þ­'Û{O53”Fðœàjp—S›ù–¹èÖp¨¯ÆêÌng8A<~²Ýzvp2UŠ–Òð>”,°!Lý7^\b&3#1€Ø¸P{Fëq‰.£q±w‹•¯%1(¨œ.tÛÐI·pD™û_3Ý)¬£¡…ÕûH[¶Õ•c:Ö@Êb5C¶ƒ%šé'ZÁ‚’…|ÕœÓоpĊ׀Óã8Ì %™ 2í‚ä_£ëвï€>¨>×rK#S+CUIÔ1Œ$½ÉgJÚ¸ ¬ÏÍFÍÌnÉìÌÐÞ!Ï<“9},Cêëz£âL’±Å9Ox.7ægL廪*T¦©ñ­±ðêèxûðøÕÁóã½g{ÿÔ«%‰oÕïaDìá*öL¸•–€à—Å7½:xòÄäW!™PãjåzaFúvÿ–ïô`¤v•$‹ðU>± ·‰j°e·£D¶ŽØßß >¶òªîò¯ÁŸÝwI§«Ù{}¦êêü¼jµ Pñùœ³ÄŸW.è€(q‡…€ƒð˜Ÿq„::ÅÚö!õìG2Èð4À}i7käçQH_S§X)·™*n)¦a'‹QQؽX¸K’ Ä Sš Ç`Íy ñbRËÙj 0}ÔÄ wYîÕlÃLÃú>õjñ]Õbúd…r Ác»ÇäqD* \-ô´Š}e¾íañˆ—ñ[Rã Í6B'ª7ošõ^,+I˱0—¬à£´`hÙ¥©;£ Ì L\ìIû¨¾ÆÆáÉs¦2pžƒÛagí¾„Ÿ’ßú· ÚÀ^Ztã-p¬£‡W5Bé:\bÐ AÏ4έp?cCÎÁQ¢|¿ïZi.”ÞPô}v]•a…|UÉwKO˜Š¶:â ï23áäKcƒá¯“z£À|SsH•«=ç!=I}ø±Kæ{‘ßÎÇ­zÚJ"Ï<åe{Q¤Œ¦1$R˜å”Þ> +Y, Úø_ÜLaè¹K0Å€¿Ø‘¤ÀêÝQøw\f- $I};Ц¼]Ž ¨ ç¸ÿðýGæ]…Ÿà=‚)aÄ ¥aJj†Æ4!þ¨U ˜>^h'Ø;X•èhpc­›èªFcØóC"è²Ä* ¸t$g”·¾À ì# ^1.òš÷€ê©gÅñt‹ÛÏÅ“¼¦ ª еÄYÑÏâAÃbk“myM;²§ÜV—3N F:ˆYîÖ³íÃèhA§‰Žy«âCl»b–é­˜K(ŠÈú‚/æ £¨ yØ HvÍØHÏ!£ÚÆiA.0q˜¦+êÍl‚{ W«ÅÒ6P¹4šJà_²5ÃŒŸ…3ÙßP:Žc¾:¿@‘N$BÖQ*,8ƒ@žP駉—€î+‹½)g§"?X8‹FO°®ý[G?ì=°ÒÄæ›DJ&N¶ÍßNÛL=ý¼YÚÊ! aNlÓý"XÁƒko ¡²Êii•+hhž/ÖN+jû ( ?\j– oñgè´G“µ+o(‚WÌ´9X²—*™ašËXØþ™€­Ë AÈRÒU]p• Çb€ýÔèà¡ýÏšwšY›sHvŠ5LWiÓáH #e›çüá¶Pà<,;•Z>7ßÅ&Lho–í’£Á^²e¤Œûô<Ò‚ù¥žÏºW–—VE ÖN[›Ž331tìC&¼ff&Ø"tÞGˆ–všâ$I¾*V«ê¦v¯VKÎíÁ8zÅ‘[vù½¹¨ Áù àEfneÉN™[0üí-}W|ö3éíÁ?>ÈÏÿü Þk׿+~þ‡ûúæýðïg?Ü/¶íŸ?ÿ3{ôŸñÑG±¨÷QdDz½@£4TSXœ˜ô¾w8 ›’f€G £2ÜìEÖþ¶L^7dÅ Õ$\Sâ 'Ô=4TM<ßbë„Ó8ƒg²qj‡mš J¹\k ÿwÌsûÍþ\zŠ¢é[w #[z5Æ#&"(–%J_ÅU±Zuh%´,;ñÚR»xËÑøz?ëÍ¢ ”"¬³¹Æ†ÔVï¹ãÚ ý9£x’èœ-;·TlÐoË… YTò§ÖIEê³ôÆÐøë _ƒ’O¢àS€Ð<®œWŒÞr>‡;ì0?Ó÷¥96äÔ€àh)â·ß)‹±OàÕése?iY¬u»:‡+*b:eF3 \³Z¸¢Y´6¦mñ*‰ï/ó-Ò4x#îF#Mþ©¼ÀjûÕ¯7¶“sèTÿE_ ™%@ä)¨kbxz[™ÂYNI,Dë‚ÞYpúVÆš8ޏ±×*-8E) ø¤1`׳¤©šrÃYã\ÓI 9IU›"7[1_DÆ6,hº€ÚŸmן8°Hncò„U±šóŒiîÐÀ1C ÚF"BõÌ$Qæ«oh‹A´ƒiq4¨ö’dDC¡øW×ÈǣòA¤³C—Ô£ˆË`iÌ}'XEõÓ´@@è š)AÕssÏ4R0ÃüÇÝ'5rd‡p%\Íî!tpæ2ŽLï$yŒï»Ø¹ì²ƒwxm…Œ}N!&ÓúRÂ&„[v¬ü‚ã6VF†h>ƒ¡&î2´Òè¿çúŽz²#á2JÝ\ÔçñàR= Wi­EÈuȰéÜs´`”í¨ØebËe(–ˆ‰ô2ÄŠÅÙjAX¹’ ŸXŒY€öILMØÔõWfë"‹Ö³«_¦Lµt EÉÍs(``ÄŸ|ÌX­Š¹Gx‚Mke¤„¼­EqCÅßa]4Å'¯Ñ`ÊÛ:ÆñZ'þ»we9îÑU Ä9eyZ"óמ•#G…²à¨ÂñrAŸÉuR»@àªQ(`ïÓ7•h!Ès²GÑÝ4ܺ¹õÖÓyÄÍ+Gh)¨Ø_Qz^'ƪ^GŒÖ†°ÀFø²b@7–ÄMËümƒß™¿džrëMºpVi!V!B¶)9jŠù$Is’°4#À2Ÿ ù$Û½[z¡8ÌKöHZ~¤ìo‡McÃé.µ…϶ ìäpDÂ"˜ðÏÕ/Óo`؉m½|›ÓÝdë )7ç«rQ¦cV v€c”€^Ÿ 1'eÔ¡lÛ‹sðCé:a»ÝXéj.ãÌ©vŸ6ÅÁâ}'‚—ùÙÙÐÓÏ\€Y­]ºbÕKÐa“èHÊñég¹òîú·ôëhއ_àcŸÜÐâlþ ‡£Úìï½Bl&sHüº¹×ÐÑRg×~UiAHoî•FØ0äÛϪ¯QêM8ªÀ Èž]_‘AÕu-Ìà:‰YG”Þ5bR4«ª™‹ly‚m¡­•f9M©iw™l3ßo×ÛaŒ‡ š 9kû8zïz’·Å“Õ>nr7‹ié¯|ñr-8Y® 6¿F玭Aõx~øb_üÃøóQ<âû×_{œ–—Yõ²ØÑ´ ÒÅ?¦˜Ä¬ ˆX™Ž’U<º0<,.!O`¼º¼Â¥ì©‚|$DêÎÕ9“4DÓD4 àãiU¢Í‘Ž7ôÝö·"ªçS¸,r“AÓ0Æ›ÜKn`_ǹªª¥zHà`äút4á¥vÆÅe妎3ƵuOyo¥}ÃSÄóë¨ §À¶ì2ÅûMov¼ª¹3ê&*Òåõà=íùâö¡ÄT‡<ò¾sƒGQøû€†’à¶ÔÞ ø´3ŸlíŒùš{E0Àa¹$v“U›N3Ýf¬œ!@x57¢+Ë #—më ìŒj‹±Liú‰¥ô¦‹R²ƒç§„±aI¶l< -{Š2˜ÊSž’3Úu^Í6¬0¡b\ty±À]… é¼(æ%öYùªêŽÇå — ¥e¥Ý€.Ukî ¢r×ÈU©=Ê‚"n¬»kÜyâÈwG–Á@sW0‹wˆ…ªvÌû&ìË ÐÅIÐfU°Î&¸(•.2×kh„Qç‘2—Ž‚™Ò.ÆOlø–;O •Õ¬“ÑéžäåUÉn‹:X¼‹ãš Ó²ÿð;V^~ ø¤ü àŸÁ‡þhY¿™¥‹¦¯ûçVø'EÈ;^xÿÿè…ãøBw×ͼLvuT,,&©iÎu]â ÖˉU|ŽoMX¤¾ÊÁv`N¿1)I÷¦nMÎ6^ês-–¬ò5×ΣbDR¯ÛŠ5B,DìÛþ½)py¶UoBÝØÙ9ìÛdǼ͞«FÈ¤êÆ‘p§˜8æ­[Qw:šÿÎngE”ØTBØSb.¸jr¤À]ÇÖäÒ){C)K ^Ÿ‹÷¯$)M2f+Ö¡Æv»Åþ€úÎJ¹7#Tb=ôtðsþa]þøûÝ}ö"Àë“Ô‘Q¢öLm¬(ˆ—‘7ÿ@ä§^røã‡Â¨vZM¶ü$ Ñ`0Q?|p¶h~ ´£Zûqœ¤ìôGq­xÔ—èºà…Ü—hœžm€#a#õ²"¾¡X.}ç`ÿñ–N퓃ƒâþîŽþîÑö!ÿî®ûÝ?‹Aá+°C„šË*… ±]R'sÐa“ÔIÃlk½hL¥×BšKÁ=ƒ…-гmð à´Ä˺£Õôx Bõ^8á Kcjv®%ëÁ±Žxèà¶ãî`k0k ¨¥©“á£rƒnÝi×KS³Êß1gPÏ¡›Òa”äÄ«ÕÞ¸äˆQ ïv•ƒ²ú(+Ǻhe5 éjqÐZ:‰)5â2+ùF7…Ø?±ÁÎüº)øþ·šù¿æ¦Øæmé&8¹3-ïoY‰ßK-p9$€ül·eìöcn‚Ƹ%%½G šw9 aWP°¬l„ÎmË eꤑ?ñȸˆ}»wQò­-*j.ÕòtD:iÈo„<«ëu¶(Ï)Ÿ•XÆ éd&9ý!¥àz瞊þ#èPÎ>öo›Ž:öJ±æKij©”Y±34¥—Ùë/†bAé²ý@È”š¿©šp‹¹és™úõÈBE)¥ÍôÁyrƒEgªÏ蕼odzn– *ïã|uoZDðJÅeY<æ¦R¾cNu–²¤uS`4ƒfª3c –óµt @èÜæ w'JEù¸ŽTMe>ÔîŠëœ¯m—’ÕÉ ¦’å:‚T\˜]hÒfèÆ¡üEp`muè3—b›/ש;ºEiF æ%Zq{"o‡¶:<~¿Žn=D¢°oËŠº1ïŒÓV}y é`í±^V`2Öxàè›5ÖzLå2*¸éôZ˜¿ç+íÁÆue’±§Kç8±+ÛÉi¨V7Q*ôN{Âø3’Bá.GäFk똌ðÒ!í8k12sU-.Ê«†Ciz*ªmt{LG:Õ‡y±sëá#7ŒiTÐÙkOâ`¹¼ZÔ582½•ænTô•#+ìæ& xhå¢k¦7ì.,Ç¿f/%©d£¬žÃð5èS…‚£ÆWÉé5Ëò4=&™ƒÜó¯`з»ˆ. ÌÄÎJìÒK°ºGš€ðÉåüÈâFdÀCEO´5wMfo´ü¡´1uj‘Q°l[ìý3B¨9T2/õ`äÝ[œ0¯á“Â'ËAóò6†‰D$ŠÛ¤ŠEžÝQ5Ë$Ô©·!‚LB÷ÙÍX—à&¡“;²Óø\?‡’A³ÍÑÅO­-`² z"ÀÕƒIe‘MÃJ1‰”È pk´#Éý±¨Q°û¶uBõÞþ°ýèq¹Å¶ÊDØ$¼  òÈÇÝ´´qcËJ˜vR›Å®xJÿ]ó*S¹éX¹÷å§%1Çû¡Ô뢖‰s”Ñt'…k¶¤2fª,ÔȇT‰ÏñoÞ³jî”t5CEØ>m½ŸñÀ°_8tFTšœúLòÔw„²ñ¯Ý¤‹5ÊTæpTë“•Q­e²‹žÚÆD¸øÿ0Žw®4éÏft-mÒ%x@twÈQ!$ß#)ìÞXÕ Õ‡Úr Ïï ÑðÎ"[9¹O^èAy‰I¾7V^rp|íØþÙ0­7­©£æ×ã³~ihËÁíòô³›œ2½½Ç¹ÆŠÅPô´ÅÖì3ì_4á,UÁ|žo(¿æ¤«w¿Js4Ô肱4Øî…°À€Ëú¥Äs6à FÄ! Úà÷a#!j[æÔlL£µ¼Okmof°l\F§cqç„õЃ³ Äœ}J1dMßêfÕ¹‹²B*¸t$n9IçÒT SfæY3޾VÄL«S$¬¤L"õ/£[¦¦cS-L¤GùE„jñÝíb.éHÐ^3„/»¡ã-h]<L?E  ¤xB‡V¨„\¶–—2,¬[&Çbá{kÊFN iŒâ-‹®UƒŽ•àz%߬ÎTš6[ [D‘›pØ F’lD±I€<ß/D¤kü¢ëN%pÛ’ÓÀvÑ»m¨A\Ïú t¥>þÔz§®KL »D„J9K|ñÒC®pbpÊ,¸þÃÕËÙä4&ÿÓ,.r‹ÙÝL+ˆ4Ç.žh—|AV:9j2¶Ù3 K/®¡ûÏ»ÂÅg«YŠÍ MÈv7~ðDÒ*®ã¿eéŽtkZÊ Lq0¬½/ùÄe@¯!–²¼lM/Òâ­¯{Ù–¸^ôöõµºpÚLeMïùiu·Çg¨(-§ñ´÷0À9ñÓ‡•†ÆŽô‰NO¬%¬,r·³Ûk¸i:·Kk°µE ½î|@…ÅÕë̳ˆ7Z> B’¢ró>¸ÁÁ¶ô”GD®ê3´ÜVßóAAqI ‚‡êûæzxWʱsº+†¤v1^©æ¸ªF¹²ŽÉ\Žb5hoʧµ uQÏ3˜EN2áĨ‘r‰Ϊ‚âgŒo@%>Üö7^à|k•À£çBZW¦r÷q¬Ž[[Ð6Ô %QŒZÆp?™ë ë^s‹ãŒ3úxñàÈŒ›‡KèÓ‘Û !ë¦ÉNê­C‡¯×xs U_E;€µ½áMBÙ¿7)®ŽÚ3Ë)ÔØ0æºCeTçsÓ9*ÐNº2+þÜMfç'Âý6xy°\öQÿ\jî2rÝyòb ¼fõ‚G‘r‰Qˆ:+#幇C¸Hb†R×TÔ™Ï >C&Ò¨ðxâæYC¶F4’ئP£ÂÅ4̸0–-3*Ü[õ`Ù^²!Þ®…ÙRù*‰†<†^Ø3èÐ{†ÒW:ÇhÕö|^u%f4¹Æ"Í\‹¡JïaÖ§a —·+,€G¡ßL#.ž‰Á7é;SO7ÏÀÄŽd瞘Íéâ¤v •=Pdû2C¸>~g¶>Ù}´óxo§ØÝÿqïð`ÿÙhøØ‘ÙpŸ€t2 š9vKáž%½vÑÑ7õb>£ReèË{#l”ÁV9¾ã]ºÆ•t>âB¹Ôi¾ÈrPëû.ç“$AOöß¿¸}qqµ#%,á*uk$ñ¤LÏÂógéÿéZ:YÐý}²äªKÚøéF\̯xŒøEHp/5¦ÝÍ{r*JúO¥@°—*Š.qÌ º“~®Æ§“¤Ð& da@*¸Â:\÷yý.ʃÚYéõðËí¦‘lü6tU_™Jø ‹_ÒH‡ÅËañë°x…—ÓCb$'!f¾pˆÌ_£ö#“íN'ØÑHl=Rl'WœHÝø_(…:‰YQ€ÍÖU§^K‘¬1!ˆÈ7ㇾµqç‹¢Q½+6·°ŒVúik{ð HÓ•MrŒëùª£•;_nÜÝ¢f¶i3O¸ÀâÉéÃÀ_ˆA îÔã÷žgÛG;{{Ћ³‡XÍô ÁûÆ &¯×$¹¹¸iwPÿý(¼‚ý«:Ù´ßÆV«‡¡øR"Óiû?Ú} ½¤.‚·î1ý‚ŽP l›ç¡½¿Óߺ“Ú…9þòÉ ÜVM‹ÕR­ïôEƒ†¹ZȈàÞ ¥B(Iuw©®-Óöó½yœHËÕ !‰ÜÔ€ÄO÷À›2É W3Í:Ôfë‰ÚÍÓe¯¥Ùއ»Mš{;–\¡ÁƒƒŽc¡êàÏŽö~Þx´ƒJ5“fÄoZg&}À$™$h(]C›¢=#9­4e~Ù¤¹¯ï= ¦ÞÖT¨ÕÖê‡Q1+“S$4÷˜áÓüC¹yBw¸=Ñø2 `§n˜¢°B ^-¥4ÈP jP" Ô+‘L2¿êL óZ‚]±®46ÕåñW¿³]pjÁÜÙ,ÖaÇÊ›áßsbMÈ|ñ¿\l¼~©>t¸#L\ùõDbæåë‘p^ à{oÛ|÷ÕW…OëØ|÷õ¤™Å^¦ »µk¼ø°ÆVðÁÚ_{3Ïâ· ‚RÕÈ$Í/'éÝ'é}/A¬¥âÏEòSè‚BnÍÑîn±ýôè@w‘ðöïÂI Å ùWô;‰…_RYYøUh.ýÞµýâøûƒCóV]¤¥¿*¾/«T'>¬–ȉw@’ÑiŽØ°BGûQµxS›ƒl§¼/êÉyš‹ÝÙù4­¼ép÷ǽ£½ƒ}}×S`ÿZ]MÀ†¿_lÞMÍ\-XÜÙ¼sO[›_]SškÿtPl}ýõ—éãÏ}OÒbê;áUt¦·6GŸYtüi½*û¿þ|ûøx÷p?MÓ'ÿWÿHÿžï>98|–^àßý”+ÅËtM92ñ ðÐgi Ã3! [ä$Rï‚âß‘kOÖXbÕS Tì³Þ—ñ¶E6t5…þé#­wE*°­Ú3-¢¯_¢¹nJ!»p$¾D· —wtª VVª«@%k·±n]V;ì$¨(ºf,zíxŠ:ÄB*^þ¼Wò‹ýAkdX “6 ´âU÷Gù«¿lþÅ)òݸ•RyX°†}ÍÓf1ÁÙÏ9ÙMá¥1—`NkùÈåóPzÆ™’Zbä=¥ uð?±cÐE `\EH®p;˜S~?èmùØ•NÍ)¶O-ã9Ú`#„壪ÈQùu¼dx²ÄT3‰´y}8púÐà WCÏ“r×ò™¤=zt†¡¯ ("ÂáE4Ù‹´QOü@õ!6ïû·Sï·ÙÔÍŸwë»;;;¿ôá¯}w`‡b#žî|—¼äz/r„\È“WlÛ«¾çÕÌ7é˵‰Ì€)OVÿ'… Ê|q;D†\á½àÍ‚ ¶Šënv*‘¡@2O¡/¯fl Õ%sÍqM2•tå°*~9:‰\GCeµ1i7šw”’åú@[EÈØeöɶÔQ¢ƒmg^ ŸÅ#¤¬ü¼@²Bì=Ÿ5–GøÐMK‹!8‡|õ‚07É—Bh×S›õ•¥Ì|Í|o©¼SOÓXi$5w˜Þúì"áŸT9qÊš¥Òðºd©iF€‹6œ-m#F}”̶ܷ£•~ü‰òâñ®ýeoóçúþðsÂkÙ…ì¹SŽcä3…³­ÙpGò ï>3×@ð~`õNfì·K;‡ª3Fð‚  ÀƒHìÙ°Â\Aïè(¼Y' ,A±¾/è‚Ûßy·Á_Œ_È]FXÁÌÎÄ ø¹õjéGØ“í,j­¡½(¤Â3u¬ûãæãEáÙXÉ ­bŒšZ¨-Ÿç¡;$È5ìM>œºJÇ^á!at©òÇXNá-;K?‹ÖÎb¸1½¨tA¡H ׯ4”{ÉÄåû;F:EœÒœŠ z®…X±Hä—7s``A§Û8ø.lœ†¯›3âÂF7lŸŸ„ÝÖ±è^•:­³]ÜIkà›N·¾7/ÏÔÂ{ ðŸGç‘O˜û53”$¿Í¡äx>cÃ4Ôó a¶• AhÇÎUçTÖ¸mq@>YPÂb4 ⑸dÈ¿¡hfTØ‘NvÕHtù`Ù"Ô„ÅBbÙh°ó   ÅÚH²†a Rk+Úô-³U"°N1ñŠMS#[H þ¥LXŠ2øº ù²\ 7ƒ™š ”‹½Òœ«@YÍ Rª¤Ãû~yÁ’8qG¨ÍÊ?{‚ ·Þ¢1â ¼4N¢\i&ÁBxÍw÷¾²Lø2KæºÈÅí ƒšx††ò‹vÑÎ@6²Ç)DÕv…'I‘`rÊ{ñÎð€Q‚uef¿>‚>ÀêÄä3 >x äæ3SÊÑp‹Vޱ‘E’­ÙTz±"\ô¾D:’îÁ€êô`ÈI)$h¡$‰ýn{×TšÃÉ¡ôI#Ÿö«xÄÒWq4 ùAÈßP±~´@ø¯‹S²9Åz£OÀÁÚa1.LÌUÒ®WÊÜ#6ˆÙOu´üÍ5êB\2 )8£·¨˜'¬Ò/‚¶B!ýdÓäÒ"Ì¢ÄNy²<©8|%ãѱ.à…¢é¡yY1;ø’E'ó4ˆÊ‰‰æyõùf|–«KS—ÐXh÷$SH¥¯#ò¡Õa+ÑøîH{ný×8QÊ/}>(­p±Yæ"1ñð1ÂŽpĺ]CtY¤_‘LÛ¬ktB5Y:t8*ñ ùãÄOñÀ‹úx·´™Žª–» œU›\š9†yÛÇ©õR_g_: ª“Œ&ô$”®Áß·µýš;ØêÊç½.ÿ #7l8’¯°â†p<>‘›¿«JŒ{H&õPéÕ±Q¯2,÷ÆÙ²…8,Üœlš\& "(v_`T!]7œªl䀃ä'Âé×Ùô-•¾&r›Ò…˜´ª,G¦¨Â¨‰¢‘µâ3mÿ·Wa5éSÛ uo+›ÇpÄ×§0ºBÁ0}耆!7#y–-ïsáÃÌ̼ R Ô†êPð44G½±ÆL´bØ@/ˆïCÝò%ч½1þÝQóB•`h6Lá ™FéA°¸C€i‘ñ˜ ~Kbê•WžÀ6‡kÂfdë3A»$@ƒJ舯1jX°Û òC>ËJ¬ÀðÉ×͵ ¨§“‡ ØÊAØñœ‘$¥È-ð½õE¨j°goqš@ÃÁÔ¢/6?÷!ýÍçzÅf6»Ï”MìtÊp-[gò”æðô†Óh’`è &{i xf*x@ß?—Ìg7‚z¸k%)ßöñèO‘8ÛŽØfÃZíÀ%c[tËGà`…Ô°Fn%ŒpQ½úÚ_ÿþÇ¿ý뵿üo³î³ÍÍ/Ü2Ì”E©°d V ^à³JT×<Üø#4µRJ¯=ë´`x"£Yd…mø¢è×'ókYÝ2ôj¤h;rþx|P šT‚·Ö<…(ÍKffGG)„1¤ ÀD…fã´wð‡þ5¼+ b£(±ÝNÊs™{É7u¿”f¢ëùØ;Ö1E‘‡¸­pç#š0'k_še‡¾h<Ðê+ ÒN`ÉšËÌŠ-ÔÕGätŠNdâýäç×a1±Ü( Ö`²­êð}-Ò/¾¨<¦xeŒP”“–N† øá¬=à=.ä%9dJ_Ä…In#¿æ´%”xÄoFj À”ETÚ<åT›ÝR>Uó†#&qmu£öV÷$©bŽÖâfF ƒó±ñ’Üú:P€ÏZ; ¬FÌü…2¤fäð-`pYI…-}U¸’çÞòáðÊ—‚oâª2ЈA|M‰×ó±UyµRÉ S3/iÉÁ-au6ÞÏÌE`)®¦Ñά¤®û’D„œÂÁlHªu`^q’~æ]¯E8jÎŽ*"M«ÓìvÁÐnvNÏÛÍð¨uÜRIŽŽ«ÏÈOa£(¢1,)nš£‰DA‰3R9MŸ|:¯(D€ri7ˆl, ]ô» mÕJõ”›ÅÔ–Ç7ˆ¢i( :š§à‰‘Ø ë VD³²¡ML¸h)–œ÷²)/æÉˆ‹Í“}ˆ„u<ùÈ,¨ˆ‘æ¾÷´Êaæòʼnøe$3´=4 Ð,bas0®5ú5V–9NuP–Wظ-Tã›™-.)!~«¯¾«ÐâÍ)¸4dŸ£1¸ÒÈTR˜7ÀߣÚ ª¬Ó}}¥’o8 ž°ÅؤO3o%öOÍzä€ÜœÅa–IdC—æ0BúâÖÞ1Á…c¬ ¿N £n>­Ä–gáaÜ·É&{Né®ÊkÙ{Ÿ¼–BOÅß‹y#)¯¼#…¬–õòZd„ÜÀÌkéütrzÖi9šùœoþïHQ7ÛWv‰à¶CJ`š‡ÎL‹—ñMo~nz¹$é™ S™oX” ôT …þp]æ›/ª›oâ~ÚYÒ8Ë\^ÛÀbÌÓ)ƒ2šwð/óÕÿøëßêØU\ìŸ_tC€Üç>:RÒJÕ€¼ÎiXæù‹ù°.-Ò?{ð/ÕÝ»,¸Î îÈ_Fx48lvÚ­³®¾Aä)bchŒõ GœÇ™ÏnGpÚrXxJºf‹ø]ä¯Û¼ž‚h3%“/[Ks|Oµ—@¬_Gþ¶pdUí¨?MØNv‰ìfW¨™œ!Ó;гÑÀ¢»”ÜVF;}íøì´ÝmœtÓÓnókRÎíª:ì(»æ1‰ÝÛÊ£!;’쀯(N•°9öâAUl $Ш°@…ö„ÜØÐi—ÉÍ¥´•ŒÂìE9ºÐœ$9í}ór;<·~ŽÊ6 ö ”ŠÏ»™S 3oµú{…ÉŒÉC Ò.+qÛ ÂÙ%èùœe³Û Ç(¢-7¸´æPŒ4QvPR­ù½Z˜±™-a¬ŒÄ„Ä’Œî˜ö¼y»mtw!È& l4T<åLXJöºp|2±ËLÕžÆ1é3C¢iÑ ºáÒŠÀÔ¼d«Â•<…“5´Ë$ä‚JŒAϸ/fvè–bGD$x2¡ƒ‰¨à•,ðÀ!#mŸ<äC 'žÌgžÿÃΌѷ¶¾8ä9+©%ÍzQ¦,eïðí¨½ ŒåLòÒ\ˆ—ß%†È2¬ðH+'• ´Ô!^ÿÆØÍ!;,zəۋ±aÖ•#P äûs¡еàÕ²18hAñ<Ò°¤e­ãEø2ógúk(V!ù8¿¾–3ù D®ðÛÁf:½j[‰on\LϬ¥ˆÃ³ùR°]˜Vë ÑiVÌ ¾>jv:«æ¥¦U=+=)¸-̨0¤“æ†ÊT êøü¨ ¨y·Q­±ÔUÃòädt]I¤e¢àögWÎ*HKí¬ +5£0¬axÜVwÞ¼ºÕ0^Z‘ÓÎYóÀg´"G-C†Gáû.È»ÄiNIè†.4švç6FÙ†„H±0U¬ˆ|ìH-%ìM’ºÎHˆòxÅK¢…™e‘Ú­‹)ö„×9Ï_Ö¥d·8üó¼ûªxÁ¸AøféÝ_~Á°³RîˆKŽ˜qëR ê@çüu â9ž6%¡ßºûq9!2ŒøOkäEJ.ŸÌlñ(€0 5RŒ2 êÏ÷$a‹6W b%Éxwg{oÏÅÂÄ3÷¤i4맆îœuÏÛM+&dïj(X3Bò“‰2gÌS²;S"¼_µÙ¦ÔäÅ-ƒ3áÕe³Ñ˜ö†Õåvõât01L@ ä̃á`ÍK~¿b Æ Ï)¸é*mÄxGPò°æbQBU$ôùS±v.% M¨¢¢x< ;r“™ ` Iø£ê&Ë~‘X*›æ*¹KŒ©è¤`;üåMwÝ"Ý ܸb¬˜„S¸óV;ç÷]¡¦…õ‘sEÊüê¬ìëø—ÞE©“P 6äzh³yðf¡Ñ ý—)ÆaYË8"3$y²Âô}²º==?ù¦ÝlþTÅ å·‡à†…©HÏ"ß]3¬§rNÝW÷âÈR_X%‹@F´…á ð¾[Ö`­–ö¸T1z3—­¯\r7WXI3ß;ЇÅ]èz» zz—Vj ‰@㼨‹bwß®G±$—,x|ãAJ’'ï“ÀúåNyb;Ë6¡n¸jVœ• )À @H/›~§W}4æBÞÍ©Ot[·š-–ùJJi±”Q™‘å„j[ÀGgu!²X(@IµmV¢À,%‰LWnÍËOhôÊ¢Ô´13-Qµ·¥oîÀfgÿ=ú›{eÓ×o‘iX00Ï:l(³åA%Lâoñ'¢ívd€ÃÆØ0^áÙɈ‹?è¡=ÔG‘IŠeb„S2‡ù“ùt2¿%ý¯á»Ô§ëΖÃgéÐÕdí0"›çB5Yë[ðâ¸åNR%Ö1 …|–-»¬o=Ì(þàÑ1Oœy$³&1Œ˜¹UÄoõ„€j(Ù„hn¼²s{Ñ $6‹0—#(gŽ`†ì·5ÛFàì(L\ÃùÀ¢5ŸTÇîÁk°‰¾wðºÑn ­£Žb‚+Ù”à„†j+óáÝ…Žñ^c&—‚ïKâëÜÓ?È Å!H5%9Ì í2ž9fŸÑQ|#ÖL0ýJœ«?1„/úp –;/¥ŽRfQ*rÎÓ|&¥TX\Á £¼[®QI-½‚Á•jÍ¢Ï!“dÄóèwt<»÷¶mŠ‚tl?àm «SìmN¬})}nÁôLF1ŠhÖ †ÿißy™B(¼ûoJGGvψ˧'G?-xLÓÉPPK#¶Tݽú÷;¿êZæ6o“C(Ø¢h;WÙãÐçô#ï¯6Ýa³*_[²S¼\«_«\åÊ×VoNµi,QÁ„\S(RŠýpzå\¢r]ð 9q=4ñ÷zhk/Õ ³ç õæm5)ul¬¹pÈÑãhZCÏ*‚søÁyBë^à ]Hfì4F‚Yšûí¸“=dìáWljŽã²©ìFà?V-°ä¨8J{ œY‹ˆ¨–@ Öšð pqf訤 ¤úV6›*ÊmŒ¬¶2F¾5ÑBS“ލ1³ŒDE‰?y¶J`”…(Ù’¯@ÃR1ò¢LiûZ¯ìšÔ­ŽmÚßÑË®*¯ÙrªVžWî…Ç›×õ]±EÍó] ´F y{".A"›¡•b R›cgC].¬C«äµBy B¥9Ïc0&]çµ*y\E×Ð]Ô€¶Cv˜[UwѹaD¶—§UÎ ú¡Jÿ쫨"DÝÚ;B åUˆ\hì7ÂâñY·R—ßJ 6áê!8 Œ©À"ÍÝv"®,R;TîQH«€*&!ÚJËŒ0è}R®l¼Âne rñEŸVµH‹¶§ùQ·GœoÀÖ3- Ù)Jªäc\†|g!8¹açoÛÓq<›¨x!l°ÿ‚ÿdœÉm"ûmNÛL ýµh9÷¤øPÅ` k“Tº®‰TP¿5"z]ˆ«wIqifWSu$VEô¤Pˆä¾™TGŒrñÎ å"8¯…Õ”-ɆÃ+è]ÝótÚ°¿‚÷T8•ôÑæ%LPžNÁ‹w"d/¶S!ÿŸ‹7® Õ/dÁ¥0§ûK1ÊÀý$ú^üsÛr;³´^Ù·‘ ÚÉZf(PývÖvç¹…LaÉ´÷QÜ~kÓ€•Ũ7ž»sb¢¿¶Ê'¢,{´>¶© ™¤6Xo®·»/Pî ôÑ:bÌj׺R+­¢¶úRÉ**ͧH¬E!qµ‡iŸ)B˜*·‹ W¶Žsk×a•݉U¦ÑÔÚªšæg³ ð#œ£) %˜Ïë‘ È|œ£g¯at)çâá­æNÕ õ(º…[¨B ™kæÉ8á¢MÇOõÄZ×ãrAu8WC¬ãÎKWŹhAt_Ø Q¢òlŒ&²X§V0L×]ÎÑtTmÆ”FÛ@(#WæxK•‹ ÙnŸ¶ÃãfJ“tt}ÓbOå'|œ…ƒÑiŸ5‹@ká@øïðú¦ÔrxÖ>ý¦Ý8V<ÆúפŒ—ácD§'EF{ì,‡!j°¢  ^ïÌ,sFNavãòé õí¾EœöÙЋ€L…ZÍ6€Xs1'ãTf”5A*­r=’î­áb ;§ÖiØAƒål,¢ùf&·~Àžî¦ÚR˜“Ì€^O‚¡ö‘Ž•\²jJyzÍ]r8Ýô|Q0‹„Õ«¨mb N:&žp`ãkÙ\b…†œ€­±–µÙÏJáréÜ…˜k•$Lî/’D¬Ô 5l¬Ùeœx ÊÙÊF.ƒ…Ϫ¸¥Ôþì8ˆ,'i”]&}Šôãªm€Õa追µ.tîŠTdʹÇÙPY…±”èdvk;9ÀLuW8å5(—a#çÜJõÑ„oHŠ·D¬$ ·‚Kõ3kòéç?—â¢[#aBÎÒ[SD¹£º+×sóšseAÉËg|>fæàæ“ Œ° FJ"Ò1/ÛPj°‚a=×™ŽÚds/e·Ö>?ï¾Úܨ“nÄ+únª»³(NŒÁ@=ñ#T³~n¨™Ã”u#ÍÓ3ú¸$;)•82°ÁN@„èÔc ž¸”z8áBˆfxÓÑG1'ÎÀ'F:‰gÆ€'¡†>޽ 2%Gêò½%"¬½6ý~¸•¹3æ6‹ìP‚£÷çò×–p0N‹áÀFSHî,`XŒ0ămǵE€ : XTÚóѸÁv|9ϧ_‚˜:ªÛ’"•«WX4ÏŸqÇÕÛj¹^¿”# —ô½°u¤7§¤bÅO!†O¦@±[Ù£Ávžmï~í†ýµÙP3ȯÏWðÈÎ×Ð|жÐÈŒ‡Š'äÖž5u¯pøp7‰FÅÂí†ÕÄŽþó颂htÀ!íÙLC«‚ë`;UÚjûÃU’WñЛа"¹ÆÊ UË¥ë±RÚðWá«øb:‡%3:êÓ¥Úðî³÷ц =•(h›X¦Ö›íVã¨õß¾:¼Z.½ü!1ßcˆËÉaØnnÈY»I‰ÛÍCÁ¶¢øgÈLÒÙþžÅÌãi€ŽqMÂt Küüs´¾*ô@y—¢Ž{Ù°GOpnÓÜüþ`R9{÷5Ê5Ùz …~~Éù‹•£ÃLü˜Ñï7F;ºÏm³ƒ^q¤iÑ1›êǨêúÓPÀ‰nh<ó×h™ZÐ+Ì¥VµÜª)±\z¶m͇S WJU¡ä‹ÑŃ‚àì(äŠ{–G%­ÆdýˆÝŠ…OIÓãBB‘+Ú¢d¿1׿ ê(à}QÃW.ßyªÀ¡’bUxò•¶’t‹ê’y…ïCØU„V£i„@ƒFYDZÍ·­.ÃÝ«TD ÖÅRÜ[T \c‹'@÷$Ñ(µ$^B7æ®sš š¬8 I¹V l‚¡%]üÝj`?Ì®|ôl¼¤¾ÃÈ 7‰Ò³ßW!xIÀKT]ËÉÎÇZxQM`ÀMÖh$ì”E­¢ b‹a¸eÉJe¾©Þ–C”õ°3×ÈÊù¢¾àʘ ¹€xL6>Ž §ŒÅbx Ö›°Èÿ}tØÁœ¤¦o£wH*Û'Ínèõ$'ÄÑ+Ø ‰+Sc\¦áEè ÆmÌÇwx}…ùFXr"ñ’8g>-¤²Ä袵‚ìÖ Sb}=ÄBɯ1ýJ[7¡fÒ4XNhÂü…=TN$ ^‘q÷'ŸI!6·õé[1ÊFF¾»Ï|á¨ÛZCc&W¿µä¶ÃCÉ­÷+™Yu>E˜oÈÜ™òöñxNE ¨‹ùÄHé µÕiœ·[ݟƒӓ¥¢¯„4ªè˜=#‚!˜ ¥ƒBú9û¨> %ˆŰŒN2…Æ APø•°/ÎЛ»Ê+¾«±Äè üC¢6}oŽu¬ˆ®!&´ +猨æòང )DnáÕܨ'*gŽ•V`¨d‰é í»ˆ °!Ú"k·gÆ:°u>®Ù4|“V·E§ xÓé|2s·‡ Œ‰(²Kî¡„Ÿ¼`¹`W5 ÅyhÁ_j ]{+©#Ì äÔYã—ghËpènI4Б‰*™:r0‹­%\À3¸uNâs^Q¶ã»òIã8w*>³•/ô”,éð¡±ë•éÐPúɸÁµ ¢86¨Ô°ÜÌOáîp( (ð*…­8n‰õ‹o¯Ò%¦CÅè\a´Ô«1h7›ññæ¡ágàä¯Ò>ÔÐ…€.ÛÜè'_}EÓÛ¤C„†UL ªL"÷]VZj˜ÿCý0¶ gUa—[Z]! à¡-ÉË›L¸1úÔ^Š¢YZ± £"ÊãªÜ @?ÌÙ'3»ÎTD…FÞj†­ÔùÂúÀJ„>$ú:W’ŸÞ|'Pn©MDvC+§.ž54$ %nwð8hƒJfyúD`0²Ã¡Ô÷+„? ±L}5º”e‘ÕR¢€’Iµ/\‰$Cyûæ.@Ò yûÇQ]R¤•mé´ÁÜ EŠŒ1>€²¦ƒal‰¡LÂŽË×xp w±Õѳ»« 6®l¨Ê-´i¿ ñR[HÅhÞËÆáa£ÛpGÅu­™-eþN1qaCÇoZtç’œ‹áÄÎA.µ‚|Ž­œr(Ý`\SÊ€e"3Võ«Ç­›‡ÝÆË£fÇ‹_ÍÅÅ ÆFÉ”EH”fÁ@0–S]¥]¸œûÓÕWTFŽGT4ãV‡á¿KPÀiˆŸåÄ÷ÀôX†Eº {æ•™}Kà'Ýv2¶½* §$ØmûføÈÕ9â³QÇPLð¹¨=ÄÏS,Šƒ¨¹ˆÕ­:dÈÍk6iç‘ØdEB¶îíëL)sŽ„a¹¡œ4[œU5DY¬’¤°Ò#¦[¹&wo¸[MBYDá¡‚@÷’ï ËVô¬sS:{j˜;_Æt«–q”aj¥žô­ÎáúïöÂ}ï(^Ï&*øE¡V?€ïbi)õ»¶§±¦‘¿îýM=æÿ´ó·ðO…44*,ÛµáÊ 1üw³}Ú3RÖqë¤ÑmÖ¡FéÙÉÊß4:^Í…Ø­E(|¼¸8Ä?-¼AÖ¡îêÍb!…û°¼“!žóµîÖCýâp ÌTž£¨J¶æ8Cü'>‡ž`‘ ½ÚGç ÷ž> å†x·àÑœ¦ û?âjÜÆÄ$̹TîÙ5~d¥[jDˆz[צƒØÃ"[Sú0—BË ÎyYaA‚EíâBúÈ*ƒKè&gVœb\•pÉœ"&RY§ÈuFubF•åÌ⇉ªMªªð’µçCkn‡wQ‘‹§T$«"@ý˜åM}ï¤/RŠE‡ZÜÀéa3,4à¼S’¡D&G6õ/lËzÔyZœ¥`€ç¨T*U¾@»¾¯Z®i¢~TÄe:¸£ ‚,èÐNv,Ø“†œPö›µ—{Þ4v£áIu˜KÎ{§‘Püó%T¡˯ îqصïˆ$ù ‚–ˆ‚Ö- ±‘ˆ¬Yˆ ³vö š )§‘+·^ôåÚØOW™—’ãBzMU$e椛«ªvǶcÛ\ш\´5[ Ú•}c ¯xÉHD¥¤-"mˆº‘¶Âa"ß%-‹ô³zæ†!Eª.LŸ¤vÚ‹9Šœ^‹4mŠÈlO· *Àþ)®ÙcU…Á1v8¬‹]Jk`I²òæ+o¿M¶Û†Ñ #Œ6!WÐp²v{mGÇã¥3§Nÿ* ¿1òwÖðÀªBÜq(:(Ò’±\§ª\Gª¨»ÔÿG2Sh?ŒÇK¶oâpNú§xŠ$| $œmbÍù¬ÜIøœZåî h_’‹&yÛ‹’áuéþñ˜ñØq¼¸’ªÎU5Ùî„`ï>™´Ý?„ßB´E…-ÏÆÚýê=âÏŠ=ù?–#¼>pü™dcýtÒm”ÊòÞ!KÞÿàÙXíæ7çGvØüÑ(Ãر: ;çÇÇvíа„ Ô̪sƒ<‚ï<ÑÖyF—‘+¡[N ¤h¯šùBÉm;:¸‰ü“ÆeùŸyÒ»åHb>Ñ–ãÃpóœác¸z5åcx•«®dÁRJ§Of â zÔÚáÒ©*2¶V Ž€œše¢vÿçüjÑ+9ñÍý“R/n­3M®Ìi æ²pP‹ºQ¯ÿŸííí7(ÙaNÔÌepHT G”Ë«Æ?£‰cž ãOsÈ)—F¡Ó‘Ar/Â-ÕÑfeéêP-©Å%ÐíR‹` 1W$(ê9ŽÑ1|É£d¡ãÌÚË0ÁTŽÂÒúœ9o/Âæj WžFä—ìT†ýzÙn˜É´ºÍcgWŒuT •AÜ;À º@ J-þÏxË~!%Êd!qVº.ïO$vJ©Àxíq÷ÍåÏ{¿€\úæíÏðK×дÿ¥ÓV®²iòO¸=€gzQJY¢{aF•M1:Ш©fp… zê¶G Y6àæ@9†‰i¼Îa RÊ£©ðbev j3ZØ_" ÇæÍüg³¯¿¸H*" ôѳbä =æÊ•.ìd»Ñku{/;ç?ò±T öiØ<°âÁq£ƒ—»PBS‚ÙÅ «”›×äi؈ƒÆ™95‹iɃ/pn;4Îøð: £Q0u³´GÇÈ-°¾;JC—mixÙ?#CÝÇuñ`‘8ô²y¤äêÚU|î<ßT¯÷-ÚÚ<ÍF[7uM³‰ä9Ù&UKI”‡½í¾Ô½ ퟮ:Ùšu KíŸ-I5ôCSû§òŒ4x)p3üð¡~xfÿ„ËCüA?°3dR·\¨ÿeý¸Ìî™gÔƒ5Þ0Ï Ê E3,§Smd?›'àR,oc{[½sòóùWWðRá9døòñÂsaM~Ãà"é‰ß\]UOÖˆ<ÎWúñŸ©ïeo»ªF WôÖ¥Û1‘à;¶5ПËÙŠ|A÷ŋב0GŠTj¾<84š?ö\Ë‘!­—Çh²N¡XÛ¦†ózs¢ haâ9'1•(b Pü·1åÚéŠØ``@¿"ºÐÁŸ×›žŠC¤Ê)‹ÙZI¼ÂÚ†ývjcÓ+\îLT¶ä£#ÚBõæÜuO«Þ8ßPOͯ®xço¤·óóµv·‰5p<¢… > "ñ¦ëø¹.UÇÀnŒÊŸŒÁA—\&3‰äŽ^­9,ÞêAëÖë¥eÆB›Ò¨bÜq¨9åéwˆ¾½ ±P´(lŸr´­8'ÍmÜllƒJñ6&À-#S½™‡µâ€7«Öâ®BìÛ²âÀÍ:A[…#E-FŽ…¶ûÄ/9÷ƒwÖ%¡0“pc¾±]!b"ÑtÂ$Ü K¶8‚ äKñ|Ì¡ö0LQ_Ámµ0?8J)æ#€§R2\èj€qäŸ]íÓ‚ûàubÒÆjEØž2yÙ0Dæi¬ñ³A‰æêîv"Ö|y!ìþt¦°ŒÛ~ÐgïÔ1÷SNï“ÀøgXD Cü6 º7Ï@xU—øÀþ‰ùêb(&©„Ò!xj?Š%­ãfÁ¨¢¾™ê™CõŒ2ëql Z-|÷J½«„^­]T‰¯×èòͬÑozkòóÍÍ/¥·¬kþæFJݪ—ξ$F«ßk«!Šœ$÷]=–«ÇVͺ³Æ¬WµñNµ¡Íý5–ûû5:^»±kÕØÆu6lT>öƒ~ hÏâGTZYþ†s .§Ñä*†`é„ùOðƒï`q‚Ì£š@¡ÂâÑó)‰â, é­uÃpöHÏè† Â»ÏÜ ‰îêˆ3ðH`œŸ&iÎVt¢\‡Ál¡‘›ß7Á½rð]ç¨ÑyÝ;`ƒm.•tÎù\^¤ê¤†~F1½™ƒ<ŽR3a "sÊ{ªA5°^—~ysÍw(]ôœ)®.Ž]5z§Bý) äœ)›šîç»Q¹­`m›“-B×(@Ë9\4;LÖ–i¼JU'”Z])ŒüðROó»{_mí=}*po‹êœ±§ºŒ…më7ÔHTŒ©žÆ P¸LW,+–‘øRÐkîüŒoœI* ¦®Ó*”šÆàIlÒ©8nœO.”Ânû•ñœÉœ ¤_Ú,ì› íË™W7 là™ݾ¯n'€šP*ëÀ4Þ7ÓåÃG¨$<¹¶¥Ô)C³o^5÷ÞÑaBâÕ†œ¼QÆ!™æF8cz…—GcøÉËdô DÓŸ¢Ñ/vŸýúæ¹ðÂ<ȵœþd$Ëð=¾iž`iÓƒF·ù øfÏÚ§gÍv·Õ섯NÛnm”PâD‚‰U¿ôÝŸdP¿9Õþ¦ä©Ÿœ:ž0ñeªÁ™ýólš¼ƒ°ày®Øc`C'³Kó„®‹Àâ™G¶Ôx#°Žðº8Fì!SïѨÍi›Ô°þËõKz+>ÝWO8‡À‘¡S2 Š£Û?³šÕÊϸ5À5/?à Ý ›ª»šÛ?Ï aòä;vKvMߪÜ‚uÌ!Gû®ÿ€3ò4ѼYñˆÛmÅsÝŽ{ʉWáÉ\ò2ÿvæ!‹ˆiñµð8¹òÅåÜgngà ²êwï°§3©|R ´›ê‡ÜÊ Y¸ú)u‹0&µú©ÄþÙ2Â{²ð¹â"T?åî×)½ë‡ÜSN24·a|¡¯~G­ 2ýÛ0/>óÖþi/AéuQ"ˆ’£ôÕòsÅiñî‰ÿVƒ…$ÖHÈ™_Õé!™¹üÈÄ-ù %¼ÊçmB®àž‘‡^»Váô?yZ—êÄTˆóuM‘ðæ+„/Ðötù¨ÌP$çm…*Ë­;Òû#{cÊ5õµ£J88Â÷OÔÛ»\^Öák«¯˜½È0 £žÕÃï»õðÕ«zxÐVMävµ±:Ù=Z˜Û#ÈiÞØ"Èe˨¿Vy×¥³@­žÆœÉ!v Û&ÔÔbÕäDì™\[@•$ ûW3€%6sÀ"(U8©Å–cs‹Ç Ü×–ÅoócÐ6¾ïRæj®äBz$£™=tO·w¿B§Wë¤Qy$ëD ‘ %›ê9pH•€¦ {w,”ÓÁ}iE õC1ŽR¸êñÅò¡”càÌ™r6a’AгÜOЯ›3Ò™²‡Û܈ñ°ªG2 £‹ ð²Sž7D?JsúÌM€¤­©'+Ü::ƒdáƒvë¬ÚRH?´º¯+ÖðÄe’Cù;—@\3–'[Ä‘ýAUÌÉY錀—÷¿F÷BZã¿oè‹R/ê”ðÇ=d×)Ø'a ã¢@1Ããæ0Fp>Í!B½°ò‘MT%‚æ€å–ŠK¥+´.\³ŽY³îëfø²uØê-²#ð§Ç/ôÅÞ¯ÿˆBíŸ Ce™¬0®è&>ì7u ›í˜×lJÚêb…Ýü‘βžzC‰£it‘ôKBZã¤ôHQzy©:YÆ^ª¶.Ù îeÏgÊþl¸²bÞpÄ¡¨j¹­¦j«9‡klNEqdÍNÅCUu+ž„oýà«NËþM±ŸF1ÌfPq RÐ7k:œmͲ- IR´›Õ„€ú<ÐiðpkÁÃå®Û§ Í c˜&õìIlj×iQ¶¿œªÅ¦è‰Ò®¾²O² 㯖䰠b¶>[š³Bò‹™L¦¥9jV?Rµí£Ö‚‡Ë].x´¼ê¤™vIq=å“öƒzNéçžÝéŽgyÿ«!RÀ…¨²ƒoõ©È_ÿîwu“>}³u+m“E§VŒ F—™5 (ëú_ÿúõÍÍÍ×û›WYDiÆðvïé¿Ëãv\ŧÝãÑÈ\gû·õôæ[ý÷E<ó~Ïû‰(;[»{ÏÝO£(!Ÿ$’ÚÜýt6Ñ[ *Œ­äüá¿«}Dy÷Ø×S§‚F˜„D'À>>Bå\ÿ]©=cK¥V]‘‚B«¨'-Dõ ÓÒÐGWûÀwýwå`A´mŠèÚý~£–±äCÕ©tŒoE§Æi!Ip±L¯Úð*aÊÚm ×X•@/²6Ú3°or4§³Þlì…²EÅë·í;—ç]"×Xøë¼Ûùݯœ¿Ðœ_Û N‘T”&‚€>¥·#ÿ¡q(>Ž2O'VVŠ‘|yÕ ÿzó_ÿõ׿ßâ_1,õÖÍ¿þuk€é„´µÚi[QÓ°÷ %¡1TJÍÈ]úÙ­-ïYt‡OBErýôÿûÞÓFÇ`ÑõÞûFctÓfû(´„ËÈrí/H˜ýhÜÕ¤…‹¢_7_÷*J~ ÿ d¿“Á/С§šeá‡E’ÍÖ{¿vn…·›æõºaVŠò0å¥]N³ùx ÷ªaû³ý†ô:1 £¢3c..éOåÁ‡ý©Æ×3ƒøë?ÿ†m°f³Ç…üåÙ|†÷›÷Û@í–éÙ &ÔKiýï[ä,hTš«hû¿IÍÍ(|Mã+7ëö‹Jô¡iÞÁèW ¾êƒY\LIѳÈYsã!ñ±ÖBžróúÆÜÖÛ/n‹},¾=¥GíóËoÒâ÷Vܪ¿/~sÉ ³Ïýï›Ê×ñ}ÂC)ª†½:Àué%«óIÎ’„ŠúÕ¤”¢Êê1oL¦ñŒg°Ž›;ñšžò1FŸ&ßìG!A3ßA5]‡„›Úrñèåuw[ÊÞ{ÛÕt×yÛM¿òzÖÿcØ[(u ¿<˜ôZ‚^ä‘! Ú÷¤Axà6_Ø ö ›w"\Ezf7Ùd;Š6oœt[¯Z:5 ÿ¢6|nÈnŠ%Å3ð—/ÊÏ€ãBZÞ)!ä/)?7Šþ©Zú¼ØÛ³˜Š~^ì«êóóbŸô¨ß­j.Ü]Üí_T>VÕí©|ÔïöçÔÙ¤rxª®å£Œ!¥&Åz—cÂn5×`\&¾÷Åê÷ªÆïþeõ»Å‰ÔíLÒÅë}Q~lÁ8dúÑB·n}(/–ª–Ä­HáÉÊÎÝžÆþƒ qrðú´ÝAS§…õ@æhw[§'úò¼¹°’h-Öõˆ²Êp$LõƒwÏq%_¦ b‹¸×c}”wÝ]Âz~Ò*ñãl°ÈtÖ¤[÷®ŽC=hµÎ_5%êTGv5Ö÷ªÞhq¹qÆ€ 3Zîúò]–åò}”a¾ùçêÞ|ãžá“'R«Xރ伳Óv×ÉT_ñì´uÒ ;Ín1¹è;×.ðöiÌ!ÓvÛ°ßå‹þ ÚDfËS/lè k”eo#ÂËÝfêá$þD)-:¡ ¨ FèÒül›;:ý¡wtzú]£}z~rØ{Ùù®*Ðe¦rŠ¢âœ ÊÙŠS âæJÕÕ¥šñU–fs®ìc-,8?ñ @4qt€à=ØÀ’¥„\kîS³}ÒèêdJ‚õþ—ýÏö6F€6κçmkæ'­çpµ)Ò-´ÔýGPÃÿ,O³OK?Ö`É7õ;ŸÁcŸÝí3¯£êwngfù¼·¾ö¦™"‹&ò¯å¾€  s˜©/2<çë©âã5€Ñ>XB7!¡€ÝÒ¦ì\‘V˜­&‡FNu.º\ÅýñÅ ¢@ê:d6§\1r¨—<Ÿš¾måR(Ò+÷²°ÚÖz®ƒp &ÔuÙJiú6„ç±{zÜ:¿1×èÌWªÿì­¼#ÇàtX²WŸÓ3²¹ ß0Gûôø¸yÒõºûmÝ_Ÿª…59H¸p]Á,pzÖŬV&oüøÁ)vÎ%Åä¼9â‚ÖœµOÉú}ˆ¸Â„tgŸùxÀøê¶7Úȳ6€ÂI›^¨×„êgm Û›Ëö‚óppV`FæÍNõ›ùê7¨~ózõ›g•o ÙÚÇ>¬• u+¢FÈθnS‰·Ø¡Ÿø¶¸Ùu8˜s“%ºîú­±÷– ô#©÷ˆ“áðÑN½ítm¼†y‹:ù Lñfà?t;¹×ÃeP6…í{„ôÜ{ZØð<%9¬@ë½pã½@¶,ϼÅIIjw’LÉŽê5äµd4VlØ ŠDܲÍIÅ :רniË£3óñ­?•.T-÷fñwoôJ2N§ù½€}N4BeB)<–f´PøDD&B¾ {šéÚkñph, ðu–XŠô1ê*Ƙ)@4oÛÑö,)X9g»”·ãT?ˆFÞÛVÑgÞÀ†ÜÜЬs¤øÌüsn„ê±ý™c:2Cá<ç('7H‘˜Z†±Îm?’hlnßÖͦ2ø©øÝ‚µ-.-C¡±0*j«o˜µµ­ëöX1›*Í)¬<ø:I7·!é•3 ÆKSb± †ˆKIAÒœÇ|ê…ÖäV o/i®˜N,°°PEõ(¹Ar5Ôv-%\©¶ ]†0 ů¤¼ÀX)õ¡EPIWÍŽÕZP,°³a ´zHW"GX)Å%±}~Ô:nu{‡Í³îë? èšÉ…ÃÔÏ@š‘"F’ Êo¿n6ÎäeûöUMZʽ~nôн'„\Unõ™â((²¼ºûƒF§yÔìtzíf§Ûn˜¯i¢ôÙÝDÅÒ­œv›ÇgÝŸ±q­É«_ï5ºn£ ì°üºü¸¬™^ã¼{Ú3”¡cÆb6±¡-1n %k£&û¯š;<Å>{dæØ„æ¶?7׿EÅ1\+…' í|Ûêú쇢éèÂ>…×p¾=#ÇñËiF÷h‹5¼’@n,òš½[]sFþ»é ÊèKßµ 夀 ›þŽÑþû,^v(Ÿú¤¦ ‡Úf½ ê ÉIR?Ý´vpVlœ|ÎÖ0·¦ÂÛ Í¿qiþ³¾3û´Juoë¡»†¡î®“«Ac4Ôy¡r †Ú…?GÚ7]´\†‹MW‚áÄ‘}„T„‹PON÷¢ÃH~¬sÕCÇ$PÒñ6® ]°†ü?@á.ò X÷ÔÃz¨é®N^’,"ÚUϪ/[c&¶(“ ¶Ù&aóW6­&¯¬;P¹`X'ÍŽZ'M(Yó½Q~´ ‹*ËÚÜF#Ý ¿A63ñL-6F4>á)ÂR<ºÙö >2 Ä#ÎÞ͆† ÅÇÚúÁb£:aYšÐo7N~R ¸rž<},eTx^J«Ô‹³ 9:?RoAÃæ}ÁQ«`&íó‡×.°n¼JÍÎClà:û÷²4Zì m(À+ î„oŠžŸ´N››+V)мfˆÈ!Âá_/›¯[æÏJcxí/*§ÜÇ#Ò“Qôuõ“›Î¶†fD#2xgB~íÙ_¥¡Mo ÿ{½¤Kbív•‘_W ä —¤°"ë­ÈElØÔâ%¡Ÿ¹©ÂH®IaIÄ[’òH¼5Y0’&ØÙfæ Œ¾2”ÀG#Õ(Y¬°éÐü°>.©ì`¾ë"n1Ò Ü¤iΦ’Ö5°VŒA ‘wöž>ÝĉS©F¬ Y¦Òm¾ìAÝ…i»%/LúÙÓ§ûOÕãÈÔNO¶Ø„è¬ñU‚)¤5™bçɺ"owÎ¥è 0O¾îó…w|áÙŽSuÌYÊðÔóMÌ™½uiÐ×`i|‹nß=ÇW¼†Açü%h=Fðí4NÜ>¹]xRB¸Z€¶åsžÜ\­¢åêðu •lHؤNs,"Oø ´úMäå÷ÔgQZe§$Œ-Žô…¤MÈGذ­n Šœ@ÝO@w– ÄõA´À'Ñaú’ñ\:ŸÅa8ÓüT ¯zfkgÈ­B÷-yhø[›VÒ>÷ñç”~Ñ›ÎÓâqÚ”ôó[]`‡­^.+iƒMMH︳é¿WÑó¦8\ÏÞ‹ {€ó (íæ«f»yràÅü)´/^K‰nº°Uì$€:_$—ól®mˆo.ÓUïë‡u(Çʇ¿ðš.ï²"Q=ŒŸpMo„[k·ã õ =Öû÷þóÖºí¨·Þʹ­Z(ðF=ˆoÞÊ™^ûK<¼K+߀⯾_óOðÃæ’>Ø«‰4Õp½.¨vN;ÖË£ŸBÖl¿oú ÂS¹@m€Ô*È{s˜Ú‹ôlH¡¡c3Ú!ãP¨RqSjùÂ{¹â]»»åw·ÞãÝÿÒkXõnåv™Åÿ³~qñ{EÇò›Kÿø-|ó45a:GÞËþI¼ãËLm·kíÏâA|öAÚùãz@«÷m91øì =¬÷mí[tl[ï=6-J ~bä&†Ü¨(îÚ_SY¤)L©´S#¨è*Fq(†½’ñC*žäW†š@Yê’ÆßÌ#¾±ÍYædHaÁó©Ø«ˆ|  xV!Â9xD¥Ÿàµó…ê¶’Ãí« Luž z᮹EŸ%›iÈ\Å6}ZV~b³¸ëë H[US+ˆ4­ð^ñòŸðOXYZ•¼eOb ¾•ñê",ÝL°Õ¡«@±Jçz¿AÙ÷àôä°ªKã¨\ì ö¡µUЕ»yç[|p7W?ò¯4sO{§%)µ¼¡mÓ{õ‹Ò»•}uù¬m}ÈÆhµuƒ.QÝR‘U×h[îýº'!¬|²Îµ€ðŽ~[íÒödè)òX½;íÒ‚ZËñ YÝÒgäZrQ(+›9l¾2ò¤n†`äö‚u¦âæ˜7¿o¢å¯þÛŸÒ¿nÿ¶bNý‚Z>æ2ÉøÁl¤Qƒ+8œD©â´ø@jx1‰¿1ÛR=hîå!Ûr‚(pë‚øë"¨c€Ðú.a$ÊuáÔò©I¤Á(~eRô6Ä7 tâ}‹ -ƒÃÆâÔZ yy]û5Cd¹5]Dˆ¡ò šö¤ÜÎèìÆ•Ï¦9³|Â=ŒÚQx B’£7 4ãnÛü‡ªÐŸtÛ§®ÎQÄ í­—ÌYÓÓ…a¤@†Õ6¼ÄLîå×PJ8¾r~¼ÚçÇöw›ü4JÁPŽÐì7$—ÜÖíê`ÎUΕ»ÈA¶ÍûïZgö²ö9XüŠ*.wbßð*C©M”ýX…ÑÄù¬:ŸD¯ “¶5ÃÑô*á*„ðΜXZCwhd` ±^ƘahU@ΩZ”ˆpǀ€ ÷µg i4­sF‡e*ú€;œ8ÈZ=ÿªÑRN(zÞnÞ ëõ4zæBØÚ,õŒ§…5`=À·Vhž/Ô±ÓÄy:Èümmèbúò²ÐòØw§¼ú¸,ìÝíâZF<±ÈoÉÝr‚š:îEËX‰9¹È®£é ‡&m¸hðÂ7]øÏV6ä8Bø*‚§„ùî79ýà×ã«}qª.ÈA¸‰;†‹Ñ Ž ú·8œº™³ö¹"ævÌY˜žìÞ«Hk—óYñnüg^d$ø¶;$êm›I5Îâ|ä t‰ ëDÓQ/ ¡Ö§ï¬(APÏS®§$ÆKWJ—ý¼ûºy⦄™ê<ÈÉ·ëcã²Â:ž+ïB¡ò˜Iœ ùårSÈ­5C3:ņ†¨1éPOÁÛttzÞõẽ’Q"jTC| ô|ÇSJx¼œ÷/U…=>}°µ276+^#ÑŸ*þé’;ù=&¯cOþßð³p#ü{øÿ…ÿþgX#ŽMeá#REÑ“‚îk[4N›®T¨=Ŷ›ðg‹›)9Ò\L§Í=ú‹¹ÕYH5°¥qÿ fÈ2˜‘ ½ds¬¹;£RUgGƒ&Ä—‡äëPE€56*úBZÝón³wÔê"âe!÷#ª(¤W…ëfJ­ ôé1=QÊ6ÎŽû…©•,UK¡@RŒF~&4<40$:ҹ̄X Çž¡®4W|qìépÿ©³°ø“¤ ëAh õQAƒþcþÓ3ókÈf¡Š+ØKÌH8 C½ëä–½«ä2õ>ætþç-xTZÏZá^úÏÿ»pÎ|Ñy[©pÕÀÉ] ¡jé³»´$…aªê-mˆç”¤“¹œ9õîåwåeв4"·œ·¬Úâ'ãà-—æxÙTëHÖi·ñÏ_ÔÑ"$+áüÚ+>†!ŠK‰e,ˆm‘(SWÚB]<‹ï ˆ±$oqYJmïòw²w´úÒ– ð1Æ1¶Ú‘*¼~Y²fÇŠ1Åz=lTˆîÙ6Bvžy%4lDÃö~¶70܆¯Þcx(LøFå}C#€F½7_ýžÃ‚Qïé÷”Œ§«C-èò|­W+{S¿ôê²‘âæ§(3âôJѵᆬÚÀ†UŒQé=fDZyN`9ЪwÙ$½|øfÌKŠ¿¡’|„L,™›âÞÒ{¹¤Aà¤嘒5j4r€ú†©E :ZsÅ”Îi”U¯‚ªÿ!çã,‘žŠ÷¸^(±%p ª®¦M£+"Ö&F"¶jMô£ª¨|3•ý?;A|;<`"æ•åc£6c%8eÍŒ2ü9ýz‹hªöçºÌ™!nÚ„BÿÍ/èÍݯé÷° F§„Ík_ê—µ,æœ ‚†”Ç£wŒnßL"@ÑØVÔL»¼™¥mÙ#i ®8Ã*û•Y@ê4›aã¨sj‡£K™Ôö'ßE“„ÿÿdS%º|ç5g¾ø´ ’> Oû³ ¤ï½½§¶­ª‚¤{OÞ« ©ßSé÷BÁÏS”C: I×)HZxý$åF1vB¨;çg¦î×â&qy:ÆLL lóª’ñ·™Z\w…”ª {@ ~£RTL‚ vSM”: ͤçÅ×1û× ºâ¬2FëÑ6Õw, ‡)coÓìÚ¨——¨ÚbjE)Ú¯”€C”2ÀB €.G£Üà­¯ê\¥ƒäø{O‹ö`½ÄV”2vÚ"î×É`vµY¶~Í\”¡M+:O1EQ,Õ¸Pœed²X•)§˜@× ò§‚˜jVëÙê"šJÕ(©… pÞäîäŽ2Æ ‚¿$ÇB8[¸Ø¦bç Aë€L¼jEVü#tETœˆxÛ#”s±MôÅ‹5»t9Æ!Å ™#R â´ð¯œÉѵñÖW ¹ê¶­¹VÙØÈŽ¥äå(((­‚sqÙaÔ'èæë@H\.A£˜Á EXÜV"2€/óØh¢c RN@¨ð+:õ`*F®ëªª´clB’M+”ÿ"ÍHÃè{­“ïG­C=LW'Êã…,òåíÀçÉ܉øVɧb.|l0#^#Lg™ð33{¢Ó&í!»„ÒÃ3 %Am‹ßB'®f°¹+z¸ ­ •ØS‘Æ[p&·ðLêhZ¾¶!¢0&s6O™{£l麠VÄEÌAW>ìÀ°ŒÛŠ([4å"Uv8ˆ.ÔxE®¨0vÛÛ¿ØCûæ ÿIÛ?jiÆU]ªD„ K¾¥þm‚½Uyé¥xS*¥J;ºð‹ Ù,úQÁ =žeÉm.F0ÓV~ìyÉqй¶!¸ /3â£F"Ù³Gs” ޲ˆÊ dá„€]]Y3#cÛÉ^HÑ‘A<5âÉ@·ßHo)±«o. ›÷þ‹j?º­Â€KiŽ`+d`Œ!m: Åér¶üMÚ>í\ãkp/O¶< u±!þ€$%qWу†ñ vŸÙ¢z^Ì6Ýg^s ¦éˆkx_™ ãY¡ H±X]ŒÜR¼b‘œ£_tÑBÜ(Q•‡"p]éYüù—º2Sxq5ÛFÈšÂU%+3_8Vu*€¤F”_übfJà0ãó1m£•o,…Ê Ÿn?Ûæ{:Èbåãb…²)ñ}¸õ?´Ì•w +’RàŒ£¶¬Y„,º÷ô™\)–GªÀ›á²ÊˆÕ®-ÝDMоª¨ƒ©hFmèmÌÍÏûTÙúæ´ nî(šÂ¦°º…Ù!\Šû° n› Àß©‚¸<3iŽ ¿Þ<þ¼ª2ê Ãi±;@í‘éC3Ðú&òÔþÑ/U`Æ:¶t4ÿüKYyŽR®ƒŽª²g Þ¢>[–*aÍU½^”Á,Ï…*khS%kÅ€DŒfãógá™Ì4§†Ò¨Jzc~å-ú’Ó_uîˆêjM¸]V˽&7`*Ì"7I¹œ Åy})fk'(H¶¯]ùæP.²Àù&Æ;d–:§‰ŽÇeПE¨=~ÝÙº€MÀÿ:œ êƒ£NÎAÑŒ(éKÅy²¾`mº$ô†0Æ” «5c‘\€Éæ¼0ÂÍ[óš5| & ‰*JÒ@ÙŒ8“­šÆUú\P&öÎQ£ §n VÞ‰(YÙ™}IƒÛ‚äY‘ ‘]’ÜÉÿ«ÁT˜"péøˆŽnE¨â²ƒHè e˜™di2½ªH½×!´²5*X~*±é…äÂÏðΛ6Ú+ŸX μ Φ€¨œwwÈJ¼ï{R¹Õ4ÑU•G¹c\k…‡].‹·¦µ]5Út'Y!² ï²·È`q”´ºTŽíçt÷‹€–¥YrÈ; µ1SöóbèU(½ŽŠÕW°¼êŽnmdóHr¤››nâM´Cý~ R5s޼ÌD¡¥vici®N–S(¤<&ŽYÛÏæºáì^Š-ÜÕÀ¯ƒ®ÃÜ–ãŽÙ²è{ØžT˜óO Üî­YŸñ]ÅW K¾`’*#w,@‹ªò‡èðÙtéà¿Öo„ágo? ÿ~öü÷ü‹½Ý½FXÓ[Sx:ǧ;ôôÎîóW²µ›ÅÜoþ×Ub;b‘¸PÌx4\0àbÃÞØùÛ K§¼72²Ê@‘†Ñ8‘¨;Ÿ¾Mò+Bþ§aüu[H¤Jl¢)RyHfª"å(Î%¯M!@ög¥ºMy‡¨‹± Ôg/ÐgÉgõð³–ù¬Ãþ¤ÛO`-ÎÊþT,ŠOï†5ô°ÂCÈ ’MXdÅô‡]< nW«b»ª‡Éã»Û¡X8÷Y¿¹ÒY_c‚+ç³æxi©¬ä0³!ñl4.™®äN[EØ^½7Ë.Qàq»í#ÎSÝãÐsi°ëDמ‡5ç[Ù„:ÈÒ\Íq™M©ÔÖf¶ú¦•]•S<*}¬ûÎÙeDÑú:-?ç4Y‘b³)BÛæ( Y¹&·@zt•÷’Ôs°Û•q>Ñ®‹£®;¶`z¹ÂøÀü- ÈQáöÜj_ßZðzóp¹ÒhÃsÛ,ªƒœX÷~á€M§° Ô‡&rÂf`ÀA±ar¾¿« ¯Wg²rqZ”ÔP'7·”õA:‘tXôKÖ€™DæmR à²ÝC•N¥Vâ£å¢Ù¸;´(íò¤1f°²7¾©lô¿Â †-œ¨Üu””G·‚GPTýÌ™“Tv‡¨HÓ7´ÛPwþJ£3Å…^»&#£í+Îà9© ”O"×I8wwç)ÄǤž^’™Qê’sƒm2Nl.B,ÍIšY>ŸN³KУTSxÂìí ÷÷¶.ÌŠsx§éº ú‰çâzÊ—H¦ µ« `‚ÕοØÝye>ê^Ù Š“½0RŠRŽÒ‚‹z‘‰²RÎke/f·–xV7B-+nˆ:„® 4Å8–º° å<"ƒK<Îþ‘€×" !¿&ýAô…òŽú PÜ*gu6Ê]„5 ¡dü wàØýAM¤•š3õÅs‘ó¨ïÝ2œ¥YEWM l¡u¤@Ѫ=Àxx¸F›•8¦CΓ䛄öÝB—¦'7‹;“bFõcÌy÷þ©Ub:,.ŽZ±øÈ·l›ÝVí×–æàtî5pp̧6'ÛrTnö(ǵܴ‹O9Ð ‡À>xx”}¼^Ùt@‘Ö`‚ÄxÎÁ1x÷ß’Á«ŽIšVÁbå,v˜‘Ť¬)yé’Ž‹Nx"dÈE¤¶¸n:èÊ×MŽIoçö8úG6åÈÎ2Ô]îÌþÒ&šRrGgE#…o ´xÛ•¯QIB§ZvÇ÷°pkÀ"`\˜7ì朊 îddáX” D€µhrÖ‘öð£|ÜuN1(º¥€ø~JUdˤäNÐ2\D†@‚÷< ÈoÄ¢Qˆ¥l$Gøü½$/€y¼&9©d£Ç +Bka“§"”>Òwh{q~` ¯£Ôn)…©hqåߥÀ™Œsçj¢bž|‡$m*–É/{DKù×II>¸d.i;Ô D‰öh ¥É­ÕˆJŒã©4!cŠ‚6ýjZdf£í¢¤4N,¢½>„]qd G¸!i…[oã"ltNñD‘3PW´ÙER鯓gÍTµ{?ËËÖº 8eŽÝäDEˆã8ެ§ÎYêÑ£PeOX(.·¼,öLçqQ*±CN]·1†–:ÅäLFò¿ ¨ËK¢¨=LæÇ¸Ut”y‰Âœ¢Ž”ÅNµôbr™? 1öþ‹7Š$÷E$€„*/ï*ÎÀ?ÙÉm’²ËÛºób …€åãqc™ E¾aˆÎEuXÇ½ß –‰mFyZXÉMÝ…˜n\f™Ùêm3¡ öMs8†æ­0ÖRPÆõè€ÄŸ˜nhëêä>J$:à ft(ÅG:ò¨©Ùš¡s[þÑê,‘OiLæù°Š Ðëò È©m_æ%}í á@Ѯ걭†çhâÕjé9vIvñøS ,<9ÛfIÜÂq»Ì×¼ÎÉ9ÿbçÙÎA(¢B#ù¿>±¿bta>Ëüä®uRñ!>OMÔ $Ã$lg ¼ßFõ°s«hCÔ§3Ñ½Š¢4zÁ'à>°y””ÄÙÖ Ñ(…Ê‹bžáŠ%Ä2ì&áýò@:2“jG'}` %U‡ÅfÅg M›–Í„Ì<0aûÂά”Èî6™µe™n%çô^~Çl' Cš5‰˜HqÒpH/Tžý[EÄ5ˆüp` 9…Ø1“rôm4‰°G À»ó:™F—8I툌”¯fŽøk¤Ý³DmFü"üΜpªŸÃ—ó‘ìê‹°%vᯩÓc€<™&üÂËl’³a&¯l Ê1kÅ\Õ=b|%²ˆ½ è—/¸ ‘Éò }BƒK)tËîãÆ»d:Ç2ÏéàEð¼-iêªCº6ï—¯«{…£Í¹ª—3h{S0=*įdæ¿æ©ô\ðº Ô©%ç¨b¥êÌ9íO…‰;¯¾ä9‘ `eðáŽ*ú© UŸ©”õÜ…¨c˜ál·ÆMÆÛõƒ­0O#D7ÙÖ[Å ²~á8ÍçSA„ü´€ÄŠ=”ötþ:$Å ¤Õ!Írœ‹ÙL‰-.y¶Åž« ,j.sÜð:”ÃeןÚ]@uíž\š;‡ÿñ²Å²Ø`Çq®Çü n›o2uky "¸%ùj£c‡ß0ÃßÐa»ceŽú;–w1‡òÖ'æ HèÖ941í3!Œ'ÆêÓ3§ÀSÁ÷¤‡;7°æ´œ•¡³Ô,Ê6E')˜rßEÉÙÈGœ7N^va¹[_1Ùa~äÂ\Ía®µÒI†”öʽÛýÙ•˜ Ÿ”¡K"Õaîl æ·Ù<%ŒX#¹‚=g>áñ8î¸ípœüp_Å H:Ax=Muïj"â´ë¡B³5œn…Z{e;,áÈqÝ0øÕÕ&`¥bZ W]/å2: , ÈÖßÜü<øjgç³ÉYŽæØÄ¦A|ð•‹æ®ük»ÑLÎzóvûô›ÀÉu¼­PçÓÈÆ×:#=KŠðÿâ¹¶Gm•IZy~0×ÌË¿ÉcIEvÙ£eøb>£|\èÆ6a¿r—¦ÇÒÈ‚úÓеN«§´«›¸æ´}Î,|î.ÿyoùÏûË~²üç§>.ÉN1%°ä2›Í£4'Kg_ˆt„ d£Ûóu§Ù–“&,„$­Ú.Q¨×qOûÕA¸ÿlï6í7÷“}H» ØdA@ZÆU«YžšòU jm-3ÄÝY9á_´?4QÀ½½çØtÁü¨Pvú3éLžw×v@0z^Å‚‚Lçšà ÕBÂS»ØàöŠÓñlùÏÏ—ÿüÕòŸÿ°âdîxÇߘ ‘RˆMdˆÍEB†P˜î@ïO̮͞êáSø™ñ3s’H¤_ØcU…w´l\ç•üÅ;»;PHÅ"äH*’ùªF„eûŸIÄ»»¹jÑwWÜÉÝ=å-F(%9[68œ+Êp¨~Oqqüzëp¨_ˆIñd‚¤ÙåÖ^˜•3ÙW#}²…ÛPŒb¤uáïÓÎÍîÎÐ|*†¢¹ÿ½FôDhÙˆD†`Œ¨àSdh3ãè<­ÙaIWΊXjœVÜ"Dïe¹FæÏ‘@ò€*­œâÓ¿¯¸Ô»+nõîŠk½ûµÄ{[æNšÿbþÿé]È⪛3¹v8}*=A‘€Ï)¡*tEV5ÄrÜœŽn!© ¡1f.KEàͨF™1‰!†±sÓ7·wç&"þŠ¿2A¸Ù[ª Õѵ}ÔK¸¢S­@žšÅ«vmïŽÔŽÔ`&lž,„̺v‰ž• Z"ÅmЯ]‡è­¢˜2²ÔíÊõ8h;¥–<®1)ûýùTÂãØ­Œ~h ²ÍQœ”›ÁLø'dåÚíVÅT¯MîíåMÍÿ%œË×Y`V)Œ<ô—–¥¬*ÎhË%:'Ò±LÇBÇ£XGG^[b·Üõ]-áí>à †ÇÌôA,WúìLŒ$EpéÊvö@[§‘øíˆ‡§Ý×+ZÛ7­åÙˆJ´ê悊Åt†Ä…+>ŽâêÅÜßãÅtµÂìeþuZ;l®hgO£,¡Ë¢Ššµ@5$É´NB6SW:b- \›]Ppsª1ît/‹Rþ•Y‡óó ÷°lï&uæ2»Åªn¯y Öo[2ËÛÂNm笇ÎEým«[¶)rô€{QÛ¥†]¥¡_y²‘Ý´`¦ dž²¬:ÕÚc¥ &w‘‘Ћ¾#?®W˜¥QèrѸ)0„}šÞ^xDhN4R ŸQÞÇÂy {ây||" 4F²B‘ý‰â¿ @aÙB ¡Y‰«€5ÿHfÖ^­‡n'„&G)[¢¯SŸƒ…³zQ—8dqkÕÎ5lªÒ-ÕªQ~7›È­; îünxÄЇ™Ž %‘1\OÁe¥ùµfQ¾!§¼{ÖzFTµ„ªÛ/•µš!Ü 2xÖá*ºõswü6îs x†JÅæT”HŸ Â<‡_ó\@kØ1B*Hî`A-®=Ðaòý§þ}®¼’T‚«Þ+Ó;„« dHC¸º 8˜=*ïùöf2ýHþMª¬ HpV2Ö䯠<àuS ‰»öPí¨¥ÎÞ¬á¶Øs.@ÄçbL‚ª%Q îrë²qT—;‹0`…ŠH"Ò”eöT°ÎrwšåÊ^!ìŽSÏ’ô-Â$·2'ï/„ùd”*8–5‡òk—€‹¢arìHë¶ÖÌ€N4l.nítª"P")r<™R“ÄöŠ&ùYÀ9.€BÍm…0ï”)_¾pìå b`˜^ã"E7x)é\Ï!0 Àu<ØYÆp8I›úÚ—¿dy ëkŽ‘Ê Z(ÍG¤ã2ISÂÄE°Þ€ršðAÞÿdÚŸ‡£ø5ˆR7çÂø ¶àAE/-yqØà˜Ú0$tyÚÙGUâÑ–ì=«¬Ž^ä«3‘¼EÜ &ìÿ ˆÔUq•JØ‚TáÌtZöÌíƒ=bn?êÊ)‡ÏQ4pôªܽ™wËíF‘,QåKõÔçÈMŸi’%i?œ¶Í‹pRDn”zið„5_¡"L¥Á*¹´ Eò|AŠbOÅß‹>xAŠÿõøù}~ÑnÑñx~9Èú_²†Cµdz1–84wb{ÿ^}ì˜Ï³gOðͧø¿ûOŸìý¯Ý§;ÏŸ>Ù}¾»¿g¾ßÛÝÛ}ö¿v>ð\+?sàó¦Ëi–Í–=·ê÷âä~%ŸíîkA>9=>k5Ãýpco?<ghÑîópCQ¯`»ó:Är3÷¯3Mt~:9=ë´:Áö4¶óI°ý2üÁ7ø#Àí«?ÛggÁv:„_A‡Yp0k˜ÿksÓÂço†-øãÍð¬/o Öð{ó:(Cæ·ÍÚ‚{”þy=|—î÷ùf}ƒ›¡s3ðˆÐÔ óÄ0 ¶qz‡M…î"3DyB,,œqQ¤5*ÖËÎ@€ HjèµMÓc`ÛÂ|¬ñ¢JŒC?@ ¸Mâ‘•íëfXu Ü©4TZLÂ-d*µM/«yø×8·0t ®—Ž tSuÓþvð[hÄßj“TyÑQœÏ0$ˆXÊ©ª¢44Ä[P^FoøÝˆ#ÂMˆ¨y:l„]{æ9 †°´9–„3J¬¡Ñ$ *kCœê¦¬–•ÂpV\KÜ_;ü¼ÄNýZã¥×eQègÝÊ !O š +.‰OƒXÆ¥[ÿÝ„fxWzRfØ5tjS>Pý‹†*'PjêÁC=Ššt Q%T]§!™É•=Rù°57"‰í§¿fKj\nHry¬‹…›8ë¶ËMèUv§ÜoÄm³ó'çGGöô±M®Pá°¾¾\|6å4CX7üu¤O¼i`„öèþ{q„ à¤!IIØÆ&¤Í0bQd:ÅŒT-À]É&uW)‰ž'ûŽ*s.ÆkS Vß0„ «‚J¥®AÔÞŸ… ÉnøëÒÁö›ðu»ùÊöMXó}0\?ªžRÕ"Bë.k ®Înlû­—ʆœ›ÿLnï)÷Ég…ü·ûôéó‚ü·ûüÉÓGùï!>Zþ;lšÿœý„àžVHwŸ}2B ñ §t©¸ùâNÂ…u}™ÜÊíÇãlzëR£’<£ÃÒÑú¤Þà /ðÜðk\§¨yä•åE ŽÌ‘BÏ}- S“ÛP×Á˜Á †~ÄõŠD?PU7£Ô',¤7IÀ*/üËÌU<…""ŠFËÒ÷€Ð÷èqâæ qXb˜¹·B£| ˱Æ;…ÊÀèañG?6dËô<²—Ä^VÒXü,ÿï?}R–ÿ÷éÿC| ôÿU»Ià¯Âoçi Äÿ«O†ø£åµHîIã[ðLêd©³”DÂzHˆVéÁêUDž¡4S>gª5ƒ¦ÚDxt¸ä¯d­a¥-í@}†¨º¸Å¢£Qà™„ŠëuÍÕ±‚äÄúwAûŸåôØ{RÿUôw×PýýßÝߤÿð©ôÿíï„§ýY&ÑŸ ¨’þIö-õL‘°ùnk÷§ u¤˜¹$¾ôø f(ˆ#Q7fd\ó»x½¡õÀa¾äNü{¸ ¹9 µŽBКJ œD™eSŒp5¤{ÓÎ-{3,¤±sué®(Ð^صQtó t>²Ž•™Ë¶ÅÌþ»Ù>íu›íãÖI£Û<¤v܈gešŒA 娿 ‚Ü-ì >ùAdᔨT%_»œûhá ô ûÝn)?ø%ÚYö*ÃkG?}]@ôAÝ›u\Ú€´A_iô=G69…Wgv ÕËýAC ÷ þ"W æp½g3˜×‹ã‡xrÃ×E{L| À+ƒJ~}C/³1‹ øh8LÏúÔØEÞ€®oä4j‡u~›ƒûÏÐ_€hIþPk[¹Å,‘½MS€x„sØ»œGÓ¥K*#‰‰|Ù4@,D‹v:í8&[:û?Àª¿‰Û6²°&¨ F‰ÅW*¦Ñ®‡G¯êæ^áÒÙ’]ƒŸå%! ~ë^Ù&Ôïø&Ox@)•½ÕµX0®Y– ²Ý¼É5>$b¹iW’·^º-{y!™rV'åk¦©ÝØÆÉÁëÓvóPy§_AŽ:Û}¨Å¨\§õÐ<>ëþÔ;8jt:!cg×t¥ª£z¼Û{Ù9ÿQõÐPe•"Šã ßÄs#†Çç\Á1¾ñ9hµÎ_5\ÚÈßá’a#îÕ˜ˆ…k¦ùc·yrØ<ä±ëfàHcàk¡F%”è™Eþh¾o¶_¿ìMØMt€ææ+ªú.ž^Pms÷òy÷´w‹xÞåõ8àScM'ew¾-aä>‡™+$¦ ûüáéÑQ£Ý33==9ú ŸÿOrd6•3e!ª»fl^¸Â¶N³`«Þœ¹WÏÏÔŠð&aÞ9EþÆ\æüÏ‚ i0£-žÇ3©¶I 2•:icëm+Ü^5ˆ¦¦pÝP* çë?锳èåW­v§{Ô:ioƒÅë#FÉM¼„öõ£–á} oñìøýª$X¦Õ gŠÕå*…MÄö³E·aÝT9cÕ\hâü¤Ó4w®qðÑÂð—mžS‚ã91ó¨¯ÎäñùQ·åÏûï¸Fÿé–\"20RÁ&5ÍeÀþ:æJ½î„ḠµÇ*,$/¼Ž6åc_·Õ7ëa¼m8Ü»$ kŸ›o_‡åZô: ë×»¯Ôë§r#Ϻçm\€CÆõQÁ5“bª-·Qꕦô5*Ö›aN…à$•»5:o‡¯µt T` ÀC@6rļ~Ñ\ÑN×\nº+þ‹D>,ÑÆ#³ý¹~^íöNXz "¯}[•…g 3UÈ=×-¨Ì/!D$ÈšœãI/‰K×-¬áÍ\U\"(壹åóN }Ξ—ªJcxþÏ7ñµ93¬ŸÅœ|Ón6Ò¤"…:à „F4÷æf<p3uËpÞiöN_½‚‹vd(9_VÿÓÌDJÛÊdÚ;¶ô邀牖T8WÉ«¤O¶&)®T<0-ü²é€9;4âDU‚Zêꢸ†¾Ív ¸É"ˆeÉÒ;9SWm ’(\½J›Ž' "\TÏi hè;oYxþlXÒ`¯= ®`TËó€¼ † „ óL‚3ß¡U7´éxÂÀÈ[ï0µâ ©4 Å³طUV¾º¨†Hb`úƒ’è}¬?ÄÕXЍÊ2.,} g`\c‡‘¸;NŽQaUÈ–UIxSJëhÙûÑî`7ã“=îÐh#߀¢kqì2LÐC5ËÌí¦ MÃL¬•iFKQWå¨4h­8EÞ¶‘â\‚ icÓ|ËñwÕÓwifº×@÷êFÐèÞÇÒZW5A¨f½a3† ÓÍ©¯k‹­?c‹Ÿ5ì¿bÁºw(à*ÿß^EþÇó½çößø”ì¿æOºF3r¡€O•1x÷Ó3¬¬‹nícšg%J„â(n¢d#¬sÁ5çl«² …6¬[U7‹Vr™¤»yÙèežxñ)¿Ó˜†ÇÏúŸ;Ñ´'߬Œÿx^ŽÿÛÛŒÿxˆÏúßn6ºÍßÀÃëó‚Øy<àò=\tØ¥ÎA$%ÿT\ÁãÈAvvV Ò0!ºäåù‚ zãBçá%ã*K~™Ä¾pz«˜‹Ê äéktTÅX ˜N3):÷È[~埻Ðÿû†®¤ÿûÅø½ÝgÏŸ>Òÿø,¦ÿ¿žPÀò)­­)ã߉¼S䞢‚4 3n·RÖ‡ÐÐîZäjhEJŒFFÃéÈ>°ÿAS!ÑC§/H1$‰T¬e™]S™4±gÌ/Í8 ‘‚Iûoô³œþ§Ãäò½ÃÿVÑÿgOöJñ†üï=Òÿøhúòªõ Püý°uÕŽèé'CöžÍšßpN4±[„t#Ü7ã'™Ùr#’ã3„)ýà„…xH«É¤‚¡!ÖP2¶Tú†LÿŒæàLÂôºåªˆÈ;(oÓ‹Û¿c8«>ž9úäH¡B·Tõ‚‚R*ÐÄþ¨iü?s@Ð’÷ià}‡ep­äfˆjÛP1ôöå¥L†øÑ<80oæ pfš àæ¥ºÚv…W “ˆt™)©±4ó%½À½#ЂÙí„àÐÐíF m¶„ËkÈp=!à¨4©¡\¤‹Òû¶Õí6Úß4»õÀûžaº ê°ÅÈoâ=Á¿ÀÐ벂‹9`½Ú8.s‡.QkŸ˜®²Ñ@ES²ˆÐ G››ÕI öš€òñ¦ IÆs±'Ô«ñC¿xà/;í¢ ºÅ…s:f:œÎ•´ýz¹7Ÿ?Ô•éC–ðŽo5N~‚½â Y®=ìýÐ:ì¾Æð‰è¶ï¾Ü}ö% –³ç%-ÙêµsØ<ë¾>}iz*n1vq`Hçùô‹M4_½jt[ß7{G­“ï0Œøuv],c­¾#€JÅÀÈB;¯›3$v(Wq4‘ÛEcaéÛÓÖI±‘oõëôiÐ9°uh ,ÂV’R¤‡d ¬³+6’`÷O·P£áOi¶¹l t‘Üû-uÑkrÍ7¡>ô\2ÓÍŘ­3„j×88ØÅ–®3jŠÃ±[ã>ÈlæS…2ë6'¬íÕÃýzød³Ø†XUŸÛŒaÙÂÆ*LE¸”!†Ò0Eâ„‘R¹Ô+Ú“æ~¬cÙËBðµ~¤z—Ë}ôÚ÷xéèÕ½zº×k†@Üï­{ögGq?ÎíæIÇ;r$tì/„#°yÕ¡h7Α¸fN/ò ô±¯1€nÙ*¶ÓébØ4&ĵ®£ÛÜrï…·—iµ^…")Ä­³’á¨îѲтœ¥‘®Ý(6 ^”O×Êa¯K”´•in ê‹êµZœo@°€A¨Ù’Rú@טxÙ8 X?ⱂßnüÈ#kyÀÏ]èÿG‹ÿØ+Åÿí>ßß}¤ÿðYLÿ%þcw?lÌ/ÁOñéF€”Ïim]Aÿ¡‰üÊ(’ÿo Šä‘À:Ÿ5è<èIe€ûq€ÕòÿÛÈÿø¯ò)Ñÿæaï¬Ñí6Û'¿>P8©5ÉO~Ýh38`á±O˜(d?K™uª®T¶ §2s~Ÿè:K´$”`¡:®Ï(êÇ¥ûE0)ð Þºž•y1ƒ*= âü,£ÿ¶>÷ÇÅ}öôiQþü×'ôÿ>Žþ¾jPÄ"î:’¿·ûÉ|ÿçjÇ/-ýU(áÃð ÿo<`á„9±™ù¶Ø"ô@U¾+Uá˜Ü?uúQ­¥Œ’bŸPÂëlúÁ‰*Fz#L½RX¹iyI²K§œrªk, JŠGú –{vhY‰(]fSCûÇÄŠ¨´yEîˆ< 3¨9[‹oúñdF•W¹Ü)×|aõYW6;ß,¢í&9`€˜añ”"ÎIñK;T¿—^EbWáÂñVr³èΗG[§4š;¯UïÖ¬‰ñÈa¬xÃ?Ú¶²V¡”z$1®XÛ $ PSÜxZlôN¿7•ˆ£\‘5ж$ ¢¼^Àb,¿n5fUt‹¢[Õm)¾úÎÌ qCü##hÁ+TŠ<ê3~¤»W4Áb:6¼Út¿ FÌ{öˆÿôŸÅôÿׂÿTuJkkÊøÿiµ¬_ŠÜS±ÔY;\}¼GpÅo›ž=~îöYNÿ ö÷ŒYAÿ÷öKøO{»»Ïã?â£é—ÍáÇÍN§ñ ÿ'á1 h|Z¹?. ¤\e~[P·ÑÌÎÂ0øy§÷×¹è]Î7æ†øE7ÀÅ€åhÍ\•Âí€J{‘-¿'k;¹þÞ‰[7…]íåÙTQï[ø~¿¨(øQ …ºŠ^!ŰfÇ‚ljw“^´KÊ΢"x”ÎýƇáw¿\"ã ÕTQ2 ƒ†(ð_—ÕöÊŠÔÍ9ôÀ ¦Q2¤‚z ­AÍ[ûŠNN›Ç§íŸÄtÆ#Mò`–eaú—`ÁbõRÆ–+±CƒúŒf&X2§v1‡ Œd4âˆMp›¨wGªS»ðig—©Qºþ%m|½ŒÂ›ÙËÆáa£ÛÐÅUe†ßúgÿGӷÒþ÷¬èÿÙ}¾¿ó˜ÿõŸÿ7ÚßqÄ¿³ø}BjŸŠæôhmuÄåJm¯Áþø>ê Ê ?Š/¶1UD!Pl: ¼ §Ï\’n½"(,Ì«†ü,ÊgaísØÍzPûü¬}~Ò¤B·µÏ»¯›'›X Ó H—ÇPB;8,GH¡“‘„¯ry©-í¼043æ¾bê&n—k;Ûæø³çýx@¤™ù"K³Pž´ˆDu6ÅxŽì- ç!ÀLÌÎ\Kr·rX˜˜†[hvµJËÃgeC qu×–ZY;Óß ƒ\MÿmX ÄÓ ¡ˆrÞùú\aýß-çÿî?{úèÿˆO‘þCQXcòUjô’Z\á«OÓ¤”·un­"ò~˸›ö§è©náeëreÝXT¼³eÙ5ewyÀ¿zóøùt?w ÿw#ú곊þï<-Ç=yÄÿyÏBúo‰þsþõ‡_ ÑGJÿ´‚;Søb2‹T!摦?~>©Ï*úŸQ¾RU ãÿÙÝy^ÂØÝÛ¬ÿúŸþŸ~ß<èž¶{§ç'ÝO9ø×&Þ.8©—òë»dŠy ”fM <¢ýà«Éƒ‰Ê¢ Š"§xd Ÿ‡þ¬KÿÙ<ùQäÿ½ÝýúôÑÿÿŸjúvÚ:é6ÛŸ2Pòÿç ëÇc%ƒ½Ë$Vàh¨h°€ö£Y½ÈX Ùö‚3 Á,Ä ? ÌøÀMñÈH?k~VÑLU…„ö÷p¯¢ÿÏž–èÿÎþþ£ýç!>>ýÇ4eŒ’úuPþŠsú!=ÁÊûøNá@ @wu “û•=¨ÌVÌÿPÒ„`L(d„ðý¥LùX) Öø~΀•Ñ fŠ hcf‹êá¼[Ìgþºó7‹ê!µA RŽƒ{¾M\A)çx-¸Y¯²ëøE'™qØ"~T[ËÁçjV·4„‹¡ì°; ™ôg I31¯×Gþh?Ëèÿ?’™”P~¯ ôÿÉþó’ýÞx¤ÿðqôÿÛVWj%"õßSpŸñw¡¿êtZ°ç"ú[5>ÛE~¬•«ª¤['º[RXY-¼º*Øe8Ÿb‚Gãøhkîæ8‚¨fÈA⛸?ŸÅy0žÂ>ŒòU %‹ScBŬ¿Áæ@=^ÍG£`°6²‡Yñpš Û ¿éRdÌafTßµJ—‘jí¦ ^B9Q´ê°2J¯qttz€HnTôU§Ë$—i6…¨¦ ¾0ÎÈñ—> ÊŃÍí°ËIa_°^Œ’bj:\ ©úUÛ&aœÁŸM·C›‚~-M- .5 1ÀœÏmÆí9þLID¦›„•8?霟VÌau¸@În•f]eYÚ…Ã’´±ÖpE¾±¡Vð¥#sh‹{‰ûHQeÈÉc#& ¨ ZÆH­i0Ì0IûÄǰ¶çCf •:jv¹æ `õ¥®¥ä!t:÷¢Tz1φ³ MelTjÀÈdƒr˜GŠú™«q¥E9Ö”N«ºj|ß8j(òô1ÿë!>>ý·øÿ{;Ÿf¨¿oþù½ø8Hþ¨Ö‹N©<£Û@ÌSV¿t¦/°áW— %œ\@ý•*'0Ãàè|–†Ã¼r,[˜¬µA¬aÔGUÉŒM `\¹¸E_ 39Á]ŽRÐ|™ÝïUV±h2%¬².ÙôcsZQÊ›‹èˆØ$—R†çJy;Eœg€¢D%^Â51ÂC™âm•¡Å2`¸T$#G’ ‘H“àKD03=rYà-þ'`ŠÎgäß,”íq’áü‚bFf ‡ZÒ¨Êé‹ HYÔ_’Ýç ^ôfa$æi{äiû…´­"ùÞ<„n7œ/z.KÌ>’ª}Ða±ºÑÒ*»ç¯îýе+=©v¥œMñ»~£”äîÔ°Öý½ï’—å±qu!qL{[{ÿ>ÃSÑȪœ3’¤b»Æ‚ª$>%o²# ŒükcËôcÉá£ïJÕ¨àZ¦6—¯TÆÉ#ÚìfëÙ9HÍÀÇ¥¥©ù[à¯ö çSàRt₱dFÃ@Å"†09Ï•lèŽ=ˆˆPš*1r”P˜¼«5Í#ˆ¶Û$ËÈÖL±^Åœ@=LÏvXa[ô )m}Ž»@5ú¦ ‚”ùì:ÕË ò":–Yh\" –ä­ß‰Ir=ù¯Oäwú¬ÿöžTÔÿÀßï×ÝÝ>ò_Iþûµ ¿Ûó) %F@îÖ~ÿTòŸûuÝÈo§<ˆB@§¡ÇÞM _,d¡ÓZíœäø’W2:ÒUâBX»êJ 3¤8™m2žé 3"Õˆõ隡ڧٵôŒh —VÙeaæ—zµT©½H¾øÞÊĸ^UÑd%Å@*šfýDŠÒ&°T\ŒÄ«´4}б£±h±ønbø6V:äµÇ~¥6äÓ]dòft»ÇÀ쯌¹ÆøÅi6¿¼¢eé­+ãÈ0ÑÔ‚اŸÿçÈ’ [²a‡ó:¦"Føˆò,UX\×Cyá +ùèoø³ÿ¿/ò?}VÅìï–ðŸwž<}¬ÿòŸ*þo‘ÿŸ…¯â‹©°ÿ§Ÿ û¯´ÿ(Ü%¶mÿu÷hŶ¡yOÉ·6jbèÀV¨RäJ8(•¢X*oWàýëÙáý[²<’íÇÏ‚Ï2ú5í0²)¿Uúßîþ~)þãÙîcüÇC|ý?n|×ì6^5;Ÿ4í§hˆ»øªg‹}¹“úQ‚þ.æÉht0Uò%uJá|öKÔI&\eÌâ ™A˜Iò{OŸ¡’“Çeý¦:ޱÝùQ¸<Û"ø¦É ö,‡u7¤$É0k¤Î èO•¶ kFFÓ"-a‘2¥Ô»®ŽÑŽëH¢YÄYzfÍzvmzª5UÅí‹ÉåÕÌVyddÌW!V9¬Vg‹]·À@ÙœZ]³\Œrˆà©rš çÄàŽ’Ã TëÇé‰àkï ùr|¾² Û´B€iÀ2 GŽüøùðŸõøÿû)€÷Ñÿží<â¿=ħŠÿ[pgßÐõÉ,rèŸJ,œÒõ1¤ ó5uï Éû†#-HeîtFÉšþKìÿsíôû¡ãþß'îAø~°(|?\7|Ÿm“Àˈý$b&ñˆ)aÈ?`Äv‡ï’É=jljÑHI«YEOœ+g¾¼+, òMa9ËS›·½½]vÜÙ1ÙŸ©pGÚ §Ù¸q#G@綦veØglœÐýÌxiê஘¿b"†jX&ð&FYwaü»è´“µË7ë©–­ŒA¨SR–nIF=t¥°Qd€ýÁø"®"XÐSUtEésÆL'±[×*½ã®eÕ;~t>½a/*÷räÕý«zÿÁaxJ8ZuÄo8­Œ¹„wÉ©ßS[ ‚ðÏ«žŠÄ:°Gr–s&¿®D¹°òukk˜–¼¬¬H Ît)P²PØ®"ûÕ‘`4Áw á7uûwld®<ÄF˜S}I†&¨e"6ŠŸ!dnf`DI¡1®zj`´ ÷ daýzÎÑ€ñ;ã öb EzÇ…C §A%;èB‘”óÃÒ{¾­qÉ+†Ä Ò ¼K1%j{¸lU0[i‹ÿ ó3+¼ÂªTÂr¸D ¥qrðú´mº°Ÿc*a›Í‘ˆBÅ:qKéÕƒÓ³ŸˆÍ7{ó—ß6ºA¸ðsš:,PDÀ45MÞAä„L¬ŸMnmó‡­¨½vóà¼ÝižžõLWß-íƒÂ DÆÜÈ)n`T¼À ¤ÚF«Šm'͓àœ ]$¨ª²qа$ÂßB/óF¢S™ô…§3¾LÒ”®ä%i¬Ûi®Û¥¢Èëq-4Ò0Of·…&$–“Ï·Q†¾=m”Ú‘ü r;ÅUEú–ìNu÷®WðëÇ3|vSÓ-NyÀXF§Ã{í<ÂÌ)wËF)Ùxa w~âw@îIi[ñ¾$éE6×(„Ø¢Íò¸}üø´Ëx/üÓÎýßÈ'Ýæ]”>eàJíyѱ­ªø÷ÁTî·¨p§®eº"._ØI£v9^AE€¬‹'BK­H´Fñ¾Äè[nÌ 5 ªÆCЩ٠Á<¬<~~î@ÿï²Òÿ÷¬Tÿu÷ÙóÇú¯ñYHÿ]ȯžP¦Ç>pzu‘Sùl£Ã 7ù§å 7À@O]ÞÕz.SRšÆ ŽƒÍ€h}1p {Q%½ Ñ+ÖOWÁZŒ*hÖ‚žÅGîòÛù¬Oÿï²’þï•â?v÷Ÿ<ÊÿñYDÿmÀWá·ó4þdñÊgtˆ{>*:˜õûóI"fÜUÒ>¼® È}TE‰ÑÞiÓñTrXý?¸bz(9y<«Ê!X‚%¬‘CðHÚãŸÕô«)¿Wø ú¿·¿ÿ´DÿwwŸ>Òÿøé?ÖþVÂÿWª Èî'ÃÊa NlÍ Ôx÷ )àWPÒ¿vþ2W–ž«l4`¦¨ªE\­He|[Ê.u« ÒÂXï]-™²˜Ÿ£ÏŸ˜Ð†¡ûËCÑa##6µÎ@^= $ÛSñ› ̸’á­{b;ØýÏB|!Ç|*æs ¬·ÙÓPø}¼`'jKUÖE1s8"«MãøüfÃH§e[ÿC@U§0„#3Ü:bÌ£i@!ØApÝ jÌŒc:#lÀRÑ »såÙ/å,Å…œçŸ’è)æ² ­¹b]†jÅNÌ„ôó¨æýn>wâÿ=\{=°¶0°Šÿ?VâÿûÏwñÿⳄÿðô¸wÖèv›mBÜUÂÀ§“¸¶0àßš—°(Šôß ‚°,Hª[A&PÚ^U9IúÍ7b A%o*Fì+Û Fpÿ›—A¨È%2Ørf ûÆ´9gä•Å2K(2K 2K¨¥bÕäµd™ (Ë„ï!ËZ– ï,Ë žÎYY ˆ&"+Îsô¼éQ^¨«Ùid—zírÖÆôº÷DcN-52D4('~dñżîÈùÀA™ª9æyCåLÞ™\)é„Ë%  ép!(ò®Ù9`»ÂµûuËEkòÿ™ÿg˜I©þÏÎÓçùÿñ©äÿbüÝ}¦þ§ƒþV2ÿÚ#ú!Š?3"«ν€³JÑa‚[qeƒRÅòEFYÙî\Šåp}ƒ2C¬{‘÷KÌáÚFæ¢E€Ie E rÈ€/ƒhÆ]ÐØUô.F4ÕÙ,B6 QåCÈed.÷‚¸v¢«ÔR4µ2¶ÙçQ¹8¶,¬ÑüËBüfr[— U5Lä»}6/°pA%¿Ë£ýÕrˆÇÏoù³Œÿ§àRûI «øÿ³ýrý§gûõ¿âãøÿ ¸}]è“ð8š’øI©ú.ÔÍ5x~EÎ'<3ÁtˆžËîtiø³®~G Ÿ2G<BZ>:V¬Ó¥,µJ¹P'\Œ0ºI’Ü*.Èò­²U’N,v¦q’މªNML“)Â¥Ú§ï(á| Â*ì‰d(Lïb~)IÐBe‘9;xoÑ· åËQv6œNmË~Žä4žŒ¢>×ã¶Y ~’®\n:šÍD ¦ž¥zLÆäƒ ò¸³Yð“›$‰¸jß;amchX¼±é%s¤få…XÙr©Ò[[ žÓ.t6žÌrÔ“wM3³éœ[‰ÒL=èÐaùUçêXã‚4ÕdŠg¢—ŒE»Û‹ÛsðyÕþóÈÂA2¡VS=àÅÜ¡1€ùÍÆ äcöH«£óY.`œ=GÞiûQ[ôYÆÿYa³ç»x:ûXúÿ“Ýý'%ýÿùÞ£þÿÇÿÙÐ`ß7Û]Ôÿ÷Âoç#€Ø}þ Ê…óYó!ø× Lö°ͳ^7Úáç@¸.æ`kÕ(‘âBIˆOçùúïÞ I~ÂIœ€ ~3‰§ ˜!ÒϰCbw§žs…}x 3 ³iœ\¦öŸ©F!ðßM)ØC;Íû(D F®âš‹øn?0ÓcüÞ+3üUê5“Ó$¸ŒØŒ·2»2m¿”µo7”:;sÐ{ …îô¬Å±çüáž•Þâ±ÝÔîû¯D²5Ú~cýË+ÁO;ÛNX‹oàꈼ" çðoU€2{àº#Ú†7´íx«R@ø/%ŠP¹%¨¡r+Úg€Vu^ܺ!`†f-ðÎà_˜¡¯tÞ–ól@û0€³ ç9BTp= ÊlÍ7;Ã#Bé0½5æ“È–Ï p))6Z¬“¡¨`ø èÕðú*3cBøÿÄŠ©ï"#hé,Fm’*.¥F&`æNx;€I;õ¬ú´ðf™æ)aÚ©œ³M/s[G-µ€rPïe£Ó:ðº=àCOrÒE”'}EªÚ0ªjóäPƒ øm˜C§mÄo曣ӗU+°) U¾kðCëè°×iž5ÚîiÞqã²¹9·“8_ø&¤æÃÿ»¾àc®2Y{Ãu-§ÎL‘ßI–âGd­#¥8øQmöbÊ2>ú‰²ÖýZ–[y$"¹ÑI?òx4"þ >ëÈÿPæï},€Ëåÿ]ó[ÿs÷ù£ýï!>eù¿uòê…ÿ'üÂþ,+p@WÀÁi@É”ôïj{^ƒ…à2¹-Ê êaFNQF³LHÖ ZÁp1 ›'>óä°…wH Š‹,CH¢ï|Æ‚¶}S±§~v™¹e ØI"ª©¾evNÈò+…Æ·×z¦¢UÐÔÊ}qNb¯qtD¥¤;Ä5_a6¼…Gà:,auéWÛßx¯žòK+àÖýF^6¾3,ï¸ñ#5rbM€ëVÖXx¹c¹½Û7q[̇_/ÃbÁ3€m™fzç'­ƒÓÃæ×áyšàñ$!À‚À£õ›iœütÐ>zõuxЮ‡G¯P›/4ÉüAã¬{ÞnœžŸtý™»Ð¯|~!…Ë5ØÊaó¬ûú¨u,HA/à}%Ò(°õUSqñkèæü¤Óìú±ÝPûß¼1ÝÚƒã xù4°ˆ³¢wÁrµbU¯ZF¾{Ùê7èú½Lfc£Þ˜£ˆ!0æ”Èb°ËݟΚ¦®‘'Á °[ÙpKŒëî^®'ÀÚ®zx·8N4Ó¯~oÏáJqŒH x3ÓøÚC¼ò§iÎ4œŠW…^1Šdiè·ðnÛ°4·Ð§ÃÔ<9 ðß{ÝèÀMî5:¯Aû`°$„VT‚0¨Ÿ¹¹¡ N³iæÀœ·#ÑŸt3†"’¾ÿAÀ<÷|ÕúÅ7In …˜/è¿Ù8S—)|]„àûà×èۃדoœª¥g\ûË·›0ÕÚ_¶ÌmQx¿ÕUÛå6LU“àÞãØñ_6»¥ïƒ½ Uo]Ä[¢å¼Qq*ÆÇ9<Š–äê-¥ 'hŸîXZ`»håì4è[ÝÌÕnó²ÎÕ:v0â$-êôÇ£ÓÓï^6_·Nà\1†gÍܺ¸)F.,“•¯ÜªQ–½½ˆÍÆB˜fn”R|HݶNŽš'ß—>G™¡ÿယ)»šõ4rL¯ß¼–!†š'âìÀ㇥›'ÝöO|ä¤Xõ­>æ O“¸â=Dåç•Pè^Õ&‡W­oz'ÍŽZ'òÊ ¼’[ rH5Öûñš·Ø;hßíù£¥À{Uíßõ #ÐÜù…»÷bxµ¿/rid ¾<§y†Åü6ÍÒÛ1.x¥ä·ãÑÆÐ‹RÔž M´2ûòJñh!#¼?k⌠kPjJá(þX ŠeË/ngq®cŒÏ½Ûˆp Æ3q¦†öAÁUÓèþÞÖsb¡ÒKÆKçfÝ0¿¾å|¤PH¼Õ'HÓ¨ÛúyÅhJk8e’$7ȯ²ë´B¡(Ji…˹• ^qE­jùVs[¢YaýŸª ö²yÏŸ\´<»ÏLÃ(ÅR Ãü—_6ßX³,fRŒ£Ë¤Ï6”0 Ko“œíÞ&óe6Ô»ˆ†n4Wôn˜¨ºð>]eJ$¤ë)T“› ÚAžã/AåXS`ç¿÷¸€eö?ÃE Ȩ7ˆÑrüqê¿ï?RÆÙÙyôÿ?ÄÇÙÿ:Ív«qdh”áU Óbà^ؘL“Dî}J@ä"Õ§´¦M€bÌ•½OY‰ºõ²aÏ>TQya¹tÃÎ ¤ÑSù žÑÀV*H9ê»â—ú˜ #û&ï’Á<ÙçØ]A™Ùä‘€‘ Êð*Ë-69TTOmT¨ÏâÊE¹^ˆ"TjN2˜]9[6‹,Cà!À?°oÁ*JS;¾¯«h àá”Þål¥CÁY°ï›×V0§:Ì~úL´YÕ%ÒYô,öHšG‚jGå9 U,`>ÊfΉ‹-rpÝ=®„Û`xT8Ó;—^p@Å+R<¼ݯ'£i‰‰26FfmJƒ ŽnU¡ªbÉê K’!–¦Á,º¥„ªdaþ‚*”Æ ÙMÜ–31ã(¨mI*á X>ƒnƒDpÚ dÄ©¿î°Yu:Ü3t®—ï M’N† å—ÒÉaä»…˜ùÉïØfÑnAÁ½xÌ[Qi#¯ÝŒüiWᢣfeÀ)V](»“œÃ‡aBG —Gˆ…’—~׊Óx»1H•™‰BQö<=nŸ¶ yœèRŽ0as‘°ª/)Æ5»Ã«‹\TNNœ ÚXX{< ˆŒÓé|B¿3.A£EÉéãg YsY´ŽBý{£FåÈû8Žù†í¹“¼¸žüG×ý#ÉOö*ðÿvvñŸâS%ÿ5ODþÛÝw  Ÿþß"¹RÙ|1Ð €ð®c?½’0XˆU ÖÔÇ‘i²¹“ÿ*8 ˆJȹþc\Ä–A‡%½ždˆÓ€„•$H¬Ží-h²1,Ãôþ6¾ÞEÐÀöI³»Í1T¹"fzNtçÈfJãÀä¬ü*šLât q5\,®wWÃeâjpqu…ì¬W+åUöTÉ,TבT+xˆÊ‡DÂÚš\KD×òÑm#¾ eE“ÂÙX,ßM–ï54Š`{PŒi  b"!ˆÉªÙŠh‘f䑘²-µn ’1¥ûbžŠ‘€ ¡bûmvõ]¤N=’ Á3|_Áó½eÏp±ø©†XòP3"=R3ë‰Ç­›‡T¯Ø3æP:I•‘ó=Œ*¤»Ìl¹êväÖ"=£p$WË¥F&ÍÃ8‘fX{G÷YN„ÈVûcI•^ùa¸¦þ-µPZ‰+…ýäÕÇχý¬'ÿ¿üËêú?OËø/Ož?Öÿ}ˆO•üoá_>Mé_Á¿¸j•Ñö}¡¾mLrS.n«Øº’ê€:€›oÊõ$ -(¾q.ŸC¤‡'1úo„ òõZS%”I¬ôüŸ"–÷#wø4?ëѨ—\ïÀVÐÿ½Ýrý·ý§ûöŸ‡øTÑÿoš]#¿l¶{§¯z` ê|Âì`‘1¨âÌÖûöÖ`kºVªI¾å#ó±„kûXÂÚK°Ø„Sô±lêxë8¡¥zf…ž¾®ê,S=ÿí^ «úyÁ2n‡GFýûù,çÿ³ÞE>}?ð¯ÿµFý§bý?ó¿Oëÿ=ÄGóÿ.æ+}Â%ÿ\æMëƒôÕÇØp»*˜ P¼‡×…ñ©™ %"iÈýdšAp&®Æm„´6:[ý¯SYÌÇÌQKÙZäBe‚!;\¹>4Ó"0—K¯2ö&Bçý1$yÀÑ™`I¿£Ï*úŽŒl~ì'ø¬¢ÿOvËùß;õŸäãÓÿȶ=ï2ÈOüIÎu*þ)¯XCþ@ïö„²/vÂ?QÜç›ÖÕoÅå ‹)}_&BíbLNxþ^5APüŠ€ó›ÕLÄU„Š\»Ü£óv¶4õ¨>$•e“èæ¢Æ€n"^v—)TT*ÀRQñ¤øÐ# ùµ|VÒIÈë‘ûôcÔÿ~¶W²ÿí>{²÷HÿàS ÿ¯íÆA·Ùî±gÌ~O]ÀΧÊ §ônzAÙ*H­Ü—²G:X…Ë¡ØrBICl}ð…‚gdœYM¡Üv6 Ø_O ÔZªâaô›/s¡â7—¿C H«·* ÆÎhÉQ.àÿmÌ;°É½æ1«(Pc»È†åÁr¥QÚÇ`°1•Q/’KCÀD-ãjZŽñú•T›lhåg%ýç+zFÑ3îÈVÐÿ'û{ûEú5áéÿÇÿèÿéñYë¨IØ)=O!0(gÚûT-B•‡õþ6"¯™{3ƒÁ YÐ"ÂfôbC5úPh‹Ÿ]es¦)›‘B„q%j6ºeôsýG#òÕ˜>ˆºã$‹—T„„¤µï‡€24Ú§ç'‡½—Âxl€_'|È…h À`?º¡Îy»}ú ”4kÔ8ƒ=ièæçÁW;;¿ øüc8þ²*ß}Ì Î»¯¶¾B¢ íï!{X20jžÿXj©)‘Ñœ\€oÿ&ž×ÍÎ Cí1™i„Wæ Š{ï´Z¦ÿÃò;ä5F°|gvpVÈjöé”ÉïÜÈåF®—4²hU±µÃÖ7­®ßÚ_¿$—Éìë¿áýõëù'ñÂþôÉ•x8îC#»ëÀ¨3ïãõ_lvýñ¬êÿeã|¯Õ鵌$Ý@c„&¼ld ¼MàÆÞa9 Ô†ÏÎáj…¿Ec:htšF”ïôÚÍN·Ý:°[v˜Pøý8¹" ‹ñ% †â_ë ã†T¯²Ð5-Åaï Ëá@g[ N`hSÀ{§…w©™‚1‘ÏCH‡ë«lDhhye?œ¶‹÷¯ØÄÆu6ä…×OšßEHLbê ‡äŒÍ,h¸)"Ír€·S±j¶7ñNX»˜Ï0¸×ücÓàÌÿîlÚ:û©ûúô¤wzÐmymöÎíì œúóCòeýY4*´Ð=o×꼆#Ñ:ù¦ÐBw>}›äWaËßQŽ}x¡›ŸuåÿiÜŸcEïrMwÒVÈÿ{{;åø¯½§öŸ‡øTËÿݨ÷ÍyÃOð< O²wñøw /8¯wS¬“ßõ]¢ ÔÙ°Ywn#¯OïëÄC`aõ…®c(Ç`Ÿ=U˜ )~/R)ž1—ÌÐfäŠ6s¬—”ð+ë Ls—Å¥!ôìȘO1Љ=³aàšÏC3­™­ü¤|Ï””5UX êù@Í*IÂÒ>°{Í'4¸¢“CJ 1‚:úáx]FLˆG#̱±Àè3t—÷c¬£Ñj –14¢Úœø- •g¬—é:UEI°÷@ö.JF(Pq€—YuóS>1Іmƒó×ðÀˆU ¼«Ú• I/WŸhA×F»G{×ãçnŸUü/t!?Vý§ÝÝrý§gOã¿âãóD)ì¤á¯$@лÄ|ÐX°‹E˜ÖT[¦ìÖ/Æn=ÒðÇϿ糊þCmšÙª>ýú´ÿkèÿÞcþçC||ú¥ŠÈj÷+¨ÿW8ŸVÇ[^p¯ÒÓƒ `Á¿§$Ÿe%4íÒg½}A¨ñ×Àìs1øŒAp“6Tƒ´öÄÛ²´Å7©~ÔÆ7§,7šk†Vp‘2hp!(aïé3Œ„˜_/§€ÿõûn6´jÏ<mè‡$d×e1q`¦ù(ʯÊg¾.øÁž±Ö¢ÿy µŸgÙ=SAVÒÿÝýßÝö(ÿ?ħ‚þ»âvÀžÆŸ\Êg‘Ø#ú\À¶ñ)0XÆ,ÅÀ^ÖݸÂ:™&Ø‘-¹Äô:šB$¿uG‰Ñn6Èf%ânŸ 1¬¤íÜA°ˆ¾—qÏ×¢ïA5}éûÊÏ*úZßÓü³†ý§äÿÙyòlç‘þ?ÀǧÿP^È™~´ßÏOÃøƒõŒm?Ÿ_Ëgý§ûôqíÿ;ÏËùÏž<Ö}ˆOÿ%èÊÙÿyàêˆþÛ˜ÀXÕM[Jø]¶EðHø?ÿöÏjú£êÎŒMªå­ÍVÑÿgû%üÇ'»{öŸ‡øéÿ¶8Ç‚ö¸h¢á;…à“MYr^k^õžU¡`Üû=9D½2‡£ÎŒã&ÏÇ„WU“Â{›¶ž_·O€%Å@„è¿ ùÜâ +Ùû ¿©fC~Ò_«ª ›T‡—IñkéÉ&¯Ã¨sªæBó¨ÛX+`€„â=“ú+Ê®ó3gê~ 6C#«]±€_‡ËRgdLÓ@<Æ}à£Ûpž"_ŽM*>w¡ÿw$ûö³Šþ?y^²ÿïí=}´ÿ<Äg1ýWdßSžý (?ü;ý>,½Ç‘ŒTácÈ*ÂÚð¶ð±G†%ùš‰þJ"p‘iÄóX”x(”Ñ<>ǃ²âÇ‘bjKtº’ÌÖÍ@me &âT4 oäjäùßðY‡þ›rÕµïaZIÿwKñŸ{;Oë>ÄǧÿR8Œÿ»íwoÿ¦ùÞé|0@@úrΔÜVY·•n”w•² 8# „úmñ›UåëKäœÈèh¥Uì<Íê­ÌiLÆÑ̽E¤xïéÓº+„å¸]ÛáQE§>> / ×ÞçA‚‹ 'Ï'“l:[Ά©ù¯á³Šþ§ñ5¤Ö~Lü?CëËþßÝGûÏC|Óÿ?|ò±Ÿ|6ÿ °< »ù“ˇÒÇU<„?ÔŒàôu÷³Ë“ò¢\:È%Æš¤¢ƒù üC{^òã£ð~÷Ú’ ~M cºŒ%‹ªð•w™üGfpÃè+žCìZj¶ÍÄÿÒ¶êÁ» ÃFz+´<ºÈÞÅUòàÑó4Á TÙ0¯Ò~ùµ“sɇµ‚¹ ªNûÚ´ ÿ»¿WÞø{ø¬âÿÙpÿó^«ô¿Šø¯ÝýGýï!>>ÿ?}õ þÇì…x2³YÿO?QI@ŸÒ»Ä|8›RVÆcÀãçWóYIÿÍiô}ÀUúßóŠü¿½Çü¿ùè¿!sÇ@ Ë´ÿ“õøË ½¿8H¦äŸ퇖§ÙHÔ¹I<Ųè€dËc°ëd45,"x“@×üÒn‚vdo¢» n4K #¡ŒWn뚇\×܃~AY„è—¡œ†þܼl•D·Òo~3 ]&As`¶«bœ ÊÄÑÔŒ+~ÙêTKô¢º§! q2 ý}2[õ ¬Dî(¿£7Ò·ivͶÑj¾f ÷å"æy<œÀÅ50l³ ‡†ÆS,ù­7¬ ¶Ø9A!uLÓÉÌq…#Œ"AníºÅñ@bÎ8†!”€5ù*5`*½WTj¬™¢Ã iüÃQcsífõë'§ˆ‚'€}¥÷í[óî)Àvš.R:ϲ-˜ÜÄ!cØT¾R`¨»[úæái·Óm@©šƒ×§m¯Ëd `9 "•5¢Gÿ*›jœ@ÿmêYú]ãuxWQ-Ý9bmÍ'…•Žf,Á]ZÐŽ?Œµz”<ð±#ìˆÕ:WïåKNÏ5E¿*imÿG§¼N÷VWêO÷Êþ¿çö߇øøüÿ¬Ñnžtz'ÍN÷×^:¨ÿ³ð:±’†Àhæ²[¬´˜KÀxlÞµÇÏÇû¬¢ÿuîþ&À•ô·ÿ½ûžÿà³­ø<ÒEÿî§Kýôý€…3úÐI@æïì"ÏüÉdJ”0:œ`ø§ñ5ùmØrà!©º.p¹)¼€þÈRÁ®ó;U \ÕàÊèÀ;T üªÁὫåªÁÜæßô¹ýÏïÇVÑÿgÏËõ_öwë¿<Äg ýïxL`ïYx÷?ùh€çõžAa‹9?tÖmk¤KþW|ès(· Ìãî ˜I?4ÏÉ×e€ÈR`3rh5åƒF—P~N¡ XòùlŠeÃÆY þ9ºÌ¦ÉìÊQþ<'Ъ!ýp?Ë1ŒnISP“ÞŒ èg›RÄ=Ô‡£Ô²†Ô;†~]C/בMá¤æÜ²2¯ª²;xŠÛR~.ÕÓìJ¸Š¡Þ±¬|‰æAÑ+vwm2eéúsô^ñϰyå”"Ö‰ñØW`¶ÎhzÇWìÒS3îœsϧ®²5=át:"2à¥@ýà¥%_W‚aõë6²¢ø®5J+YÞb~­¸œþj.z­pнÑÏ!ýnßÐWªøÆÈëÖŽX£´|XÇð¡ ©bo³¹9¯T±Ï\­ l*4‡/ ÁjLrT%ç(6¾H”ö'Øæ;êyXb„Ù<„4sŒ¶ÃFA\:2¹2¬éW!òoêâë óëÁU”^Æe^…Ƹä)U¨‰{êaÀ¬ cn9·Üor6AÐgå[‚ŸÀ8l£s]!îK=±Ã ¨Cþg"`ð¦Ë”âuáß;‹p@ª¨Ù¨Û |º¸¤¡}“A¡µˆ§´ì¸IFÏ@1É2Sü‰Ã‡óQG  /€<†;0¨>âàJßH$$ ÿÓˆ²]©\#ÐÂQÍF$0Û0 °—#`éÀ»±Ôc.qÕÄfô7Û§½n³}Ü:itÍi6$?€.·Ì6Œ¨ ?àrŠ-Ó¿rÐ/…±6KõÞñsŒ§/BDב%î½ÚæÉáâ†üVb3Q³ŽÂ1K%ÀON»/OÊ­à§Ã«…u`hDñeÂe)Dh¥ŠȸÕ=6ïÒ#Ï ¢Vª&Ð<>ëþTÙ\# ãñdv+¼š›]wÜTˆ/õâŽ{ ŒPö Ý;æý$^™ ×ì_³\º7(7–Þ·­î‚V3|snôsxÈrêŠõλ¯z†`|·¨*g 2y”Æ’˜i&é=¦dQwPgO 887ßET9ˆEX3.#Š­Ù p @ÏâpLˆÕv1öŠ‘5ìš[§ï›YCäÍéŒ}R2™f@ä*WX5•Tü2ímj„¢÷ûT0·ï‚·×œ_ôŠZ†„y]v+å,Ù”Ò–Î@x»û@•x#´oÅ7 ôÕ’ÐÌõ¦@DÏ?àªÛÓï›íWG§?þ\œ²P†£ìºŽ; ö(+ˆ°WµÓnž50t¡wzrôl€E4¨X–Z^y0ÎO¾;9ýáÄüo§I7°;͉â4”ðršìy)æ¬U·–UMÄ:ÙÓ žÅ†hüÉ#(ÈTZ—l2Õäz°|*db[:XO’Ë4›2ƒ­i<%Ñ_Ð' ê2Èè/BЬ<#?Ï<[‰‚R¶JÑq5sÔì÷ÿHfê·M‹wÊÙQ¬cÕ-Q"iZwÐuüDg©n©øgËD眹¾6¬èC2s^@~rª¥yI IÇÑ­­ÆF0Ó8 X%Q–=Ã%? gŽ@PSò€C òYy›™òÐŽ9D¸ðI¤0@úA9ñ4¾$;&A²"¡Ò~ÇfÑßÍg¥ýÈQl'½‹ÛÔ\©Ÿÿ³oþ¯ÿ±»ó˜ÿóŸ‚ý·Ý:ù¦wpzöSïåO`ßåpåùû4€ªNjm ¬oõdã*¼\i4uæÒ¢~1üc})T€J0ÑÖr¾ä V2Jö£‰¡Ç ƒÊ,ëa2¸©!'À!ñÍc¤ÜÒP‰—,2T–Œt]kãPÖ%É}‰Í-“éN€×ZKÙÿÌo¸ô’²‘Ñç%~\Òoå¿B«Ê¯8›µÖœýdSdÔ›ÖöÉÓjó¦ÏÅF^|³´k˜%h…oëcI »@AF©Ú{„‰m&é!÷ œF}j/h2V/ (ƒ²mȈ¦°;…—ÏOß7ZG/0G-=ïŒÈ¦í,Y˜CL+ïµi›,5""°4BÂï ¡d(}˜ô“ ÀOjƒYi"[ìšá½dø"1«‘fóË+‘‚g"‚ ’¼•¨w›ÒNçž®‚3®ÀƒÖI`t-Þl„Þ©t[ž/”ÌÍya³BŸë®G™éñó+úÜMþCòtg p…ü·÷äY9þ÷ÉóGÿÿC|–ÉçÇ/›TxÿW(âY½ƒ ¨ùôò pËüaEAOê >®Ô'‹b¥>këxh¹ï¢ž•yâ{ B»~î(ç‰,x9ù•Jzv$tÑe¦Óg=þ¹k¯þóÞó§%ü·§ûüÿ!>UüÿU»ÙäïWñÅTò=? @ t®:£µ…ÜzóÅû³bèAøLjd`Dà¢à{—dó<(¹/Ü0/ã™Ø§Ð›¡¥§H†X¸œÝþ:Z[Á& ž¡ŸE¸5Ÿsyi TøwøYþ»C{.°Êþ¿·Sªÿ<ÒÿøTÑÿošÝ_«ù_Q×kýwÌ„ëþÍ€­þ¨þPõÀð…>+`Ä›ÞO ü°V u5ŸÃn†Nñ>¶@\ôLj:È\Ù°Ž_–$& |Á¨Á!8Î ìZ‡ HÕU„y ðݜ™Ä‚#°·LJ&L…ÊÝ­àö(º 4ÀŠsNc‚„Š> G‰…\ÚB`:Dð耀ou_c6ÉÙxt@<Šq¿ñÏä¿û™ÿWã¿ï—ôÿ½½Gü×ù,‘ÿ~æOsþ°ÖÿOQ$0:H |/À£ø»’]Š•’àoQ°ZÿÓõº¯ h•ýÿÙÓ2ÿ²÷ô‘ÿ?À§ŠÿSæ…2í=óKÁ|:ž€* À;¬Ê dy¼Íâ¼k.¼Îp¾èÈ–…®Œî;Ïvp6~ß8ήÇ&Y¯È4·\˜‹„º)a:6æb +FU”¤( Pz¬ I5@^ £Î­QFŸÇ½1±Á±;ao]#hÌ‹Õù ´{mÎÝ£¢ Ÿ»Òÿû¨€«èÿóŠúÏõ¿ù,§ÿVÜÛû©€…Óú¡´À'  k÷q˜@A¡+0‘á³l l ±€) ˆQ'_»ëo§²bدžy¬Iÿ“|vÿ  Uô°Kõ?ž>Òÿ‡øTÒÿV§û+ ²µV²ÜÁO!(ŸOhÍ8 Â@/ãÙºÁ=h¥‘ò„¾©,_7Ú‡ÙOŒÇñ ‰fñè–JBèÎ C;czû ô{úÜþ›Óz¿ÐôßÿrüÏ“ÝGü÷‡ø,¤ÿß4 öw÷“/þW¦©wµù—6QåÞq‚.XˆÖÜâ*®ðó˜@B l]@’Páðbžo¤*×O°ÀÔáXÔ€³6Ms É‹¯¢©sbQAI¦5«–¤ §lSçÃFA1QÂ; 2 #Žú’v16Ò6ΓVfDÔŽQ0ØÜPlñÒ–e¯xþ™ÀúgÌ0ÌÁX좩ܢªÀ\'`¬òÓ„?M ý4ÃÚ˜=¨U¾±b`0î²Vãr÷îŠéq_¥kè§*N¸Øæ7Ïæå\_ey 'h<”À"«©pYgh’DþÊU¨.r(ô”f“䈢G”ʑ ;ÄTÐÍHf¹–¸itº‡uÜlN…èîJ‡Sø0ÃaÒOP^âyz”Ä?ñ³žü®€Üà^n(Þ]¥ÀòßÞ“'åüß§Oýñ©’ÿ@ ë6^5{ƒÆ ¢{F€Ý?|Òb X—ƒƒ¯åúƒ¯á% è¬úa±ia-spµ4˜¤PµmˆË"D´Ž'R ý†qL¡|½¢A™éâe„Ì4n—‹xÉñð|Î1äñ±]‰c}°½»äIĨpbô2D ¢ge+,È%áƒæ íܲðÉ»«_†gù]˜ÔgK«+7OÞrÕ1ë!VR±ãG²Œ¸vu#Ï,ª[9\Ø #8¤º•gÁ ¢tKÁJæÙíðTìÓu&/²Ù•¯®¢w€Õ§„º7S"IPI|g ã8€Ð“ê­ IÆ… T_ýó â¹H§^›m–J¦BǘOR}]‰¦þ(Ò¬÷Y“ÿãïrxïî!@«øÿîÓRý×ýÝGûσ|*ù?º}{¯Ú§Ç= ÚÙO²w¿pñ¸Þ_xo–N4Õ†ÈFH_u/1dˆ“DSCæ®â<áÒJe1`2ÍÞ%hVAÃ{ ‡zHx11ÞÔa÷dí<¥D1wqõ.TŽý¥€ySöøð#Ü,d?CÇB‰—o‡ÈãóÉ(éCì'É7`¬B|«™%û…ÏÏà´vؼY/tOÚ¸®õ‚~Òú?çÍj.þ”ÍÑ&DÚ»5¼À|YÀ l¾Z°°?z\ar*ȳè0z4 <~>Èg ÿ7çáýê~Ég)ÿ¶·¿·_¬ÿ¸ûlwï±þãC|,ÿ‡ëLÙÞ»î×b®n~¡v‘¨AaÕy#ss½Uö|‡«œ˜“KîoëLj‚ù/ Øz™ w2êO'Ž«i™1Û:*Ü)bÒ¿K̹YGkåIôHlÛ,=ðJž4º­ï›8³—Në |u~r"EgÃI=$ÛhEþFn]ó…–Š>+¯0ÍŠre FP„!RÅÒiø†?20ºùݯ_ÆCó*˜õ]'”¤hëUäôDî”já œlôRÙ§Wü¦Gýš7Åwq?Oþ©åÄ)ù¦y‚uKNOºÍ»+y^‰$V~-ß«Œ5›'Óää1†¼Q›¡ÈruådïE¸ø=ê^qU–Ék[±Ûw›B6¹­Ý“5©›]lV]ï•í­Ø»ƒÓã³ÖQsí½+ •_öî~\yÝ®Jk|OaÅoÖ“[V´WfbP­ü"Ÿ®×@•ø†åõ±HhÝÖì¡ù ¿[WÄZ¡Ã¯zôµ²´GnãšzÌï?C¯™eýŽ£¼8ûãnú\tåÂêîÄH'ýÞå˜Ù÷Z¿‹¦£,{{_%é jšù‡9='¤kð{õ€Ö¿Üt”ÏzX†ócÞns÷çSPK{—óhZ¹~‹{„&‘Kà»=Ñ‘OÈhª8Å<7w°Ì'üÂ1;áå‹0H¦TÒÊ7\/ ë$®­KÔ 2jÅ—„ ¯ÓM‰˜¯«@”á B¾¢­‡‹ ×®ÓDé(ñ»þaâ#À?QTäç ÄÝȪ3æj¦¬1—{øXÃÏï5EpOÅi*šBÛq¯øx1Å÷iÀLú,)¬a½ë ­CXA=º{'w¢ÝÔâÇí‹AÀ>–’^öºÛn Õ]B~?Ý"W¥eüTK0”¨ÿ]@£Ïò“Á]9ÄúË^ü»a;ÖÅCäŽ/Ç¿7ˆqɸ>lhÅ’«¹^*ç’|àl 5‰¾­ÔªÉþ*ª2ÏïÁØ]˜…*Ó¼€ÄÀC¥¹8Rn¥É|¶’a˜Ç¨‘u7*­¯Ã³¡<±øìm\õÒVnWìø·ªÉ¬Ð„Þ<…œ«Ù`×7tj]Ú2SÝ¤ð…¨²`ï§yâR‰î×qt#¿½ ×õåyr™ÞEUÇÍè0+Öào­ÞÔ}U.ë•ÃRz²Z<Óý×:öäN³Ýjµþ»±ZòU>“<ž&Ñ–|ÃA÷®“œþÜ×V}vl4¢ž}¨Â¼yq;£ßüSz'ïlå€ã\¾³÷¶0¼k»ôJƒ/P8õè‡8ªnrx&ª–Ñ#`•ëÒia޵ÅÛrOäÝ"*1Ù”–ÑÔ"í¨l¡¡}bk_¯5GÛa10¾Âд<.ãüö¦:"£Jª¤í•Òwa…ʼ=7ÁÚÔÔ3«I#wp@Ý×á ø$f+¢fY×W‘îÕÃk§\Ô—]bs^Í\V cU³ &µ-®a'[iG6ƒ&—µªéVMtÅ…:}Ù9=jv›ëY'ÌùuÆõk¬qý°v¥æÆ€˜xËpa}ù‰Í<Ÿ1lENç* -¼ˆûX^ã"Ï0²×yÛß¡ðÜ)DÜqn<âÇ@­i8i×ÑtJ\^2Jf„}æW:ËדcíàðRz3e]%yÀò7¦_»È䂹 ’_PD3 T Ãhƒ«ˆ Åꛋ‘ÌÂhtÝæ ²§7KsÍÏŒÄpÜ<é6ŽÂ³F·ÛlŸ€ßâûf»³\‚°—â]<•ÄÞ×Ƚ^Wþè‹@4Þ­vHûízéU V_­ËQvÑ‹ó~4Y·¥JÇ-6€èe÷;ËãIdè_6}þlK»t.[ìáÃQ.0-³Ž)åëœ#ÝÉ$+-›¥Ç¨ AœnF¡¹¦çÊï#0`–nÑýä¦8Ôþ‹EÃ4pB"Š1A`TbÔGbÄ'¾™QiGHí4Ðl±¡,H¶†sLfe˜o‡€oå1xP6àxåHz(eá"Ê“>6eÖ2N.µ&—‘ÚÚ°Ž0}„Ók¥;ðKo ‘ÂÕñ¿_m½luëáî3ú߯Éa¸¿‡G­—íF»ÕT„¬káÕgW€-BMŒ’‹iDùù|2ÉhG¾ÚºHfØ0þ/LÓ4lþ&ÄCL󬛵Ê'ä%–ð:»ŽßAêªÍYýÇœ‹Ö\ÅÑÀÐïai±2Óm8ªÛ6éɢŸ<³Õ³lv;¼3ÄY 1Á5¡C…áÓ/m&Ø©l‡§)ιεQž1™s‰Jy2žfQgóæpš†çir³5JÞÆA~›Ïâ1g½JÛ¸€}zÛÌÄ|“Ùú ïþf÷~GF½¿'_C÷8¦h”gf ¶âHð±Y=Ù4¹LRsba«Ü¶ƒ¦Yç[Þ@»Zæ `6Ïu½à ó1`®¤1AÚ.5v‹YâævDóã’ºüKÕû ¯UÕ/»Ïþ´¿G?ùGgZ ¡ßˆô–Üo5Ew¾òÈâî3®ú Ææ eÁ‚7Ô?é I5#ÊF§’¨Ãy ¦“x r›%o)š˜Ãi„5È »N³+³+¯… —²0P,"Ï,)”m#Àü_ þ»Ïz³ÏŽÙŸw³V U„(u€L9#ÜÂò©‘׆9ªÓá*6CØHÅä0ì@"½B D9ãEḠ±TÔÿÌ!_Ñk ‰Ä—à“®³€ ×£ l9«ÑêàBÈf„Ù6ñϵ‹7Ý¡T EзQ€L¸å€€pºÇQz ƒÁ,?$*FŽ%ù.Œí@ùŠºI¦:Q³nºëO³<€¥rø˜Ü(iƒTZ„@Ã7ðJ²Į̈’‹¯±‡—'¹#$Á!ýFÖã“wpzØìŸ´º½Z‡Ý×ûHè,®^ÿ-^ª¾£(Ä(¡MœÅvPÝ4§8ʼ/ðŒG†®šêµ ÇÀør%³Àœ&³E_ŸÁíÛß3ÿÐËâ÷¸¥l: X0Ðf ©~¯-ÕìmCo+^ xÜGR(l°°ˆQ’¾•ŠïðB`_ðN?á4èi-Z}ht‡§,˜žå ©Ý_£HŒÜ†ÐÔ̪ÞÒ¸ù²óBrJ3f°qú.™f)æ]¾…>0‹öÒ0w€LNE»Cнt8µóÔÌj6OÔQL²<ÇT.3¢ræ€835òÃ,+Ž+¢#·½ ;ØZÜm,¦Ã’)cŸráÌ`°½Y樋ÁjqëädØI2ô@­§óT ÉxèÑÏV²9ßpŠƒE¼[Íg`ö&£3oŸ&³‡}vµðÛWR|ºøK¸È­ÔíòùxÌòÔEöŽ168ËŽ]jˆg%ÀÀÏŒ¤»”ð“"B"ǵw¡ÿ ñfbàvȵÐ}ϤS$3W»)ÉÞhÕú¾Ùþ¾ÕüÁ ÙôX'×]§8 ²À¬ì ’ÔŸ'Òy–¼zy‰òSsA‚v‡†ÙJê–3ôâ$s0Ÿp%oRYÊù”4ª šø-ì?\*à´aD sÀð)!Ñ"D¨T q‚,nš¡t ¶òh³È߆µ½}½'|™‘HœãBZ p'ñ¨(1ØŒ7—¤v«~ NF½JÉ0;NÉH‹çÉE€…Psw>«J³)ÒÚlíI½ ´òbiðqãÛÓ6vÆÿnœ¶ëÌÑÿ¢†'©ùKÌv §@ˆFè±<àeL¹s¤¼’'Ëš"+†¢úÚ‘ÉÍÂ’t]çš§”hR›ÕG¸glÂ:_N£q]ÂJ8$¨ýƒÑ¨ÈQ9ÒµÓmt[%B´IÞvwOÊVjÅßOc[„Y‘óƒ\ªJKFŒbþò8JS—l9RqYº¥ƒx 2ý¡´PpMà!ÐÿÈ@bÉÕa$®#I – NœÕC[8hr»Ïr’Ë!γù´úˆÆæ²ãj ˜¬ PZùs¹‰º©¼§V~)¿C+Pù–% yx•]“²ƒ[E2ÂÐOíÆ.Ø·ßÓ¸Ÿ]¦É? )Ô¨õ|©YtºL`hôiâðò”Àœ(:::Œ²#"d (Ø| Ô«@¤ù¾9»†¡3§s'Ø”9;´/hù.Ï kƒMuùFXcjb~G« ·Ž~C©u½ˆGÙõævØÁÓxš Ów0£hé ú[ÓÃV’nÍ3åÚ·­îfhÅ'!V/«2a¡ù̲e² Y\µÒaÔÌÁ5ÌGÑ”ˆ/Áz3&f FÕ™8¬]͉§ë9ïK²™Þ¶Ã3:ÅDüO&DâDy)†-¿Q‰˜¢cmˆ0ØÂ$d‡д€ÑY‡s {VâZašd1ʯxv 5K¨…Åú$^yãÒ¹“iŽ“Ë«ê-Eš:]„°1öôÞ,½ •M1bUFklj{Ö‚0“Í¢–kš¤D:'ý,—ó;ÏÐΜùÍ^g8\ss‰,C™í½Šf[ì»du£ÃŒPzØ;9íAÌàUÁ†½…”õ¢½dõÉ^›##®ÒPŽ1PeØ u$#’"ÁâœÒFàPòÈðýÛ ÷ßBQ´v˜¦Ëj7ËInI¾D^2k¿ÈJlT_q •H¤Ú_—û¾©$ÖÝ Ü¬n—I8Ÿå9H ‘²æE£Ëljäé±È¨võ¯z7ˆä2õ,"\¬i•F*e”‡5 ŒÄ“4f {ãh´Mâ;ÜšëïÅþl6¥æËÖ÷MµèíW~Ó³bã„e|re!R°Õ]!PÌ« Žf×™ÛÛ`.¼Ò(#Ñà‘¡ÌMÈT`’Ü}³šKÛ Dg{ÆÓ / –ýœ+÷   gL‚Ñ”·œ×Ý"kYà«. ­¾ ¥^TbÞH¶é!7”7@¸J©tUMœêQ2kW'?íØ‹R?§‚øW>´ª-¯¦Ë‚G¼ ÷už[Õi:Ø‚‹‘ÛÖÒ¿´±'u/ÄÁ‰+BS·pø–kp™d>Epvä ¶†aœ £ˆ®_®OxšHdF#£À‹ÈW]â&T%n‚ånd¦k òÏ£˜1eP‚°W B 'ϲrÿ.àlëö^щeÉks ¾$8ÂWv´iú"¾„ÚÖžÑÇÅÕ•"0ÞVÄ„’CȳÀjò-Žu–tGY$¬ãÀƒ§4 ëGhŠáS ` ð^†øÿæŠ†é‹ Ë È(ÄSÖ켈.XúMŠr¹3Å7ͧÔ"Îù›pÀ€FrkMIråZSЉ¨­—¥UŽi"²Ì…ãnWWªAÑA§¨‹2“Ò §(ødæÉ¢ÊÈÅ)T¿±ƒ®åÓW¯:Í®ïQ1 ¯†:»m1ê›\úÖ§äùn@§ÍëEƒ„rñv%†IÆ÷À$o'± ~PrK”Ö­Åî'|ºn”²)'P‹ÚQn8úÀÀ¬7¶h„Y!£7d”ÖÑh°F™ŒÔ=LMŠ‹ü? ²¹³I€Žæ6½#}3<„ƒÝ‡(Üö‚cÊyÞÌò™ ¡ q›\©`!j…‘Q¹Ï!y¨Wæí¦Oã埈ì†0Ü$ãùx;<Éf<ÅâÞ¹E·ˆy>+6 %¾2×–¸ó,DeTDîĈ\+Ïáø‚˜Ó=> ÿH8§Ú`|ãÏü2ú3ÁÇ58j4;ó+‹8††€Œé$SGyáM ¢f‰.Œô–N#mÀ×Î,Ðkýhjèâe̬a3´¨u÷àÑ«°­ J¶¨'XÜê;+ûMMãG¯êè4™=ä£ÄT;Ð xœ§ n¯…mŽí¢_ÿ‘Ú¹8ÓJ{Œæb‚Â)Øæá÷ݰ†a:†Œ~v=<ÿbgg祑¹_™‰Ia¦õ¿?0ߟ4ÂZ ñF0z᫧懣­LhC¬àǽ½¯X‚?ë5øÅh¶“«ÒSØDòÚt%€8¸c;Ôæ&¹Õ͹«&Å¡dp€Â~Sl8…þ€k}QŽåuEïEDŽPG(SôpZ² næmpYYmº?궺æn4äeYú_Ð1MŽ5YÔM'Z“ŒáIÅã8žX/œX—À÷ØþQ¿&w˜nÌ1Còì:ŽSn‚d±BÐFÒí'f]~_#Q‘p¾TÜB°’Cin°Tðâ†ûw*Ce˜då †-çD7ºÉÄ’0zîlÀž[WŒ“6„×GLDd:v\T+ƒóÈðÄ92r8ËPðŒLHóW€ÔH*÷ 3C½+9‡¶lnÅ»h” Ȧ&Ds:£é8‚¤;4l‹Ùš`¦mm„ÃQtÉæ/áÓ²Z%¬lÉ1ð®÷%hÿ›ÿÙKòâþ$mASÒX¸’ÄÙ'l æÑnû¼É¿þò^„°…EÎÏÑzìLw4‘O=JÕ•ã¢6‰§WÑÄp½Èî ½«&zqfN\l~yµY¾™@Èñ&Læ$º·]m?˜:Éx äª(5¢‘ꂨøÝ™®Ò1ð0)CDéBõùdÙ«dä(†n@™hëpgƒ’x%]ŸXƒòO^~U™f®ÎceîjŸMP˜±7âÂ&¢KDdÿNØ#uÃ7¸£e =±¢ £ö Jì4ÌûL©“AÁ0T ¸yZ Òøñä&¶d &.DÅÉÔàs1öÅÁ­âŸlÙo ÷€86ÒoÈîß7Pä¶3»FÌŠ‚tšú²CQ•Ïm„h[Ö­¤RS¬ŽÝu1€QFé'¶’ÑgÝ»èsÎÌ/ˇ_âÐèÑÚ±Á¶‘éf™<¥v;ÄÔˆðƒ³õ˜Gík®†é:$ è·е\û¯»ûkçà- š}(XÄctA˜Û¡§XÑ;}Jê‘XÑXi0Ì//©# “Ò? Ð#BÍï9†*±a$(Z+à©ûpŒ6©ªÛPˆkÉåÍUýwt^šm•«Gr“r@ ‹‘¹¶@^KL=«­u¯c³4QnÃ$Œ€¨”ˆ6\Ì¿¥¼öùq£ýݦXF·Ã¦SÐha$SÖ¬MF#GP‰›*£3ô®òÍu \Ñ¿\ë3‚‹à_»:EÑáD%Ìøpæ £Uº82}€ëì…gEz†ne«ð. „ Øšc­îÎð:Ã[±JÕç0jÕp0g‚H1|à¿ã:Î D¢¼3ˆ‘­ Óus iÚ0Ígãq–‚ÝÙÞ ?ß­O‘Â+§*œgÃ*\"5f”’0P ¨†)ÅX¤ò©¤–lÄÕýì(øÖnWä0¢8£5íœGÒ«šÜi˜ª¤};"á”T[€¯`+&lRv… ?ãØVEÞý‚™0V],jš-ÐA²Î|²„XrA•ãðÚy¿,e…Þ•¡LeqÏ$ÕƇ«f •ÚœP³Y$fÈ›x`¦p¹—EôZÎÁîv27x>m/(;°û]µcÀr±¦ãÿåù|š"qÞì G ‰ü¿4œÏ@÷@ó¥Ía' `µsÑ- ‘öÎæ >C6tnNÙ-&ˆä¬ a®ëfä(^PÇ[¶îCñŒÀv`ä)pš¯3¥;ÿ¹T9d´‘·k­3Æê:Þ i£qø­šä Ì…_„z†ÅÙ½h.p~’´òk"ŽPL±)ÆšHaqˆ·ÔšÝ›HÌ Ñ ´^†ÿéh-ñèšUsõF…¬¡®Ÿ¥®$)m2 Xé¶/zûx—¬n€€{¸d*@­UÎÙk$°]ÛF“˜‡óˆ bJ3ÿ "Ã(œ}®ðmï,½MÑÜñö&žžÒ¦QéB¨È¦kF Ä;œ€í´'úZôñ‰«EGPÁ6¢‰±1Úæà(ï™;|"ðb0ÐMËå€+½MR3ékKs­q%`ÕÎ[z;Irßp,0?V¹’øÐŽÙíÌ6 K íh˜)èeMˆ¢¨‹ËB{LØWÎÚÜ{¯{íQ$¦YfÅl'·Ú4^<ìZˆì¥Åe¹ª*­"ÞÒ*p¥xËÊ!– D8!ß™V!"Ò’P1ËÍâØ¤V0Pešñ¢ÆšÔäƒÔ&’lªÔ$ Âï ÛÈíÚ`É w ~(øŸ!/Û‹Ê¡çƒvÃO0*Ä{°yá%þ,/ âæ§®Ž@)Å^ðÖj #KÉìmë1›~1ʼnŸåÀ3…ô  PxÅbx¯ÍÌÂd­ZšaxÎLÁ lâäô{©AÊ‹–kûÓÔú @èY|ЭP<Äp7ðnŒJ½xLì¨N'zˆéðçž´ny¦Ñ!$¡Ï7dEª)ËPu&KD×íUG¶j‘å}ë±ÚVeµ-&gË–ždÞÂ=ÆCtËU•°VÃE?~K+6Kìü¾’}ì¢Èå•Ù8ËÅÔ<1$…¼¸Ã˜@f‹„Ò}Ž1ÇŸd™ˆ×K"ŠLÙp¸‰éÁÖ£<ÎpÑá^#pÖ¬ çØ-ªËî.!8ˆÂñf`ºÙhÂÜÅw#¯nT….Rþ=XÁ(a‰o6ÑXnÐÞèDV· |Õýþ:—#¿-HcbÊsî,ŽApÖ44,‰ÚŠáU„¹™Œ A5`Ü?…Ñè!.ò-Íüáx“™ ,+[`Åpʧ'c'Jœ0¢dŠÆaŽas‘Ø3—æ!ž(ê"P+*¡ŠØ$XiUØ6AÏ¢OÑ,ö·”±>H¡Ç%[N&r³á˜rQ·2,À2¶®¡ë0OÏ_=?g_f()  -?è" ЙH½.:%ÏÒáÖ;áòÃFc(™ "·µÇǨJ¯^Šó| óò1ês®¤ öd(˜=¯²n£@æ»ÅoºÁº¤êÒJ‡¹®Èªld¸;ÇàK—·(¨aïéSå®4lRԷãŠNs›©…äí›,Ng -Ý„[¸Ô[zN¸ƪ–CÔJYäˆÁ@7Çåh÷Z~ÙÕPÆ@ l©^E*Yêÿ Neâ'JMÁ3, »Ì¦@e6±:CGæèU© ÖÀëb=XUUŽy’žZ”ç´©ÔyɨÚ8@ð|…^6VÄBéE’BH»†ƒŽ­C‹%­Å²ñû1-V’‚ìˆ ¶Éž‘[ q×>‡ oÞ?'ÆÁÖyAÞEJ,šVóÇnóä°yèG¾éŸ¶›I.tµ*2&tâ Ÿ< ocŠ'åP€—Ìf£øëðõŠ,Ìv¤¥¨n4¥Í/hñÈŸ¼Z «”±`µ2Þ]ûX‡5pÞ`rò ñB,Ѱ&Dsïé\Ê»A}vú“Y\^›¨ƒÄ¼—Xd>Ë&y8Í.ç.š›ƒi•'Ë ¡1gš-dùÄ1Á–Må¤Zlù6Zâm!ÑÂÈþà+ÀìñÏ"6´¥^Cáû4J3;•šQft.¢N9@bd´4Ñ!èN7ážYdôjK¨½Òð`)i'’œùj’IYãF!%nèÓÀûƒ­†ð!”Ä蹊…$Ä碗 5EXc…§T¶xS¾EÎAô%bˆ˜‹zgïsdÕÄÀÊ–œ».ΦjÕ— jyÀaê˜ÿó¦3Oz-꥘ó&{b?8)ž$´ÖH1BïCð¡¤þ_#(ó Æ%n}ÓáA 7Ó*ï’ªCåZ\ï„&¤-r]¾¢YMÕÅÀ—†Ä’•¹—L¡cÁªürõM±Ø)åa²Ùœ$S#¦ÈP0²_ˆìÁßÀ×–À™ÈøKîíG*Xn3Âûœãsk» Êç·n­ÁØr–>³Êò÷Ê„RÞòé2®?ÙL¦ñe| En:ï 6¬“Cõ¶¿²€X•ÙG/”ÙÁYÈ@^Z¿H÷Æ7‚¸iôü0Ð1})ZpF–BEã¿Nò+Ì~IrЏ’P=¯ÕÂ:4W@ˆÂ„2 à…©Í…¹åÃq=8æ ׉BÙ1Žy‚S €ºMb+0ZÁ<2$×rH 3œÇ­p„È(çR@ØÇFâÓéY·uÌEçz¯ÎŽð×&…¢Áš[X¼…§Lb ó²p{q_'§'Müõ'¾fg^‹óîiïì´Óiv:•_öN_½R3úRVy0Ù¶ ¯`/‡Ì¼6žŸùŸ¹¡‡ ×L¼ùçH¼¾`“Y1~ý¿Ñ|¾À¿Ü¦’5JÙí­\›/B›@lâ"ö²uÊ5 ç[f=¬œ&†çêÌz¯RGÀ /ù‰YàŽcaž¾¹:l•2Ë€ BÌS!‰CÖ£)¬$£aŠTÆãïîái·Óm€kåàõi{Á׋v˜í°­’D¡%$Ûm.Ç–Øäí⪥³ ÉÅI#9nÀ ^L![Üc¿:òDÂÕ豘ý®ÈÓÉ"`úË8¨ìMÜ ”ìoàþn4¨¹žT ´yêÉ0° Ñ8:né ˆÄ8/¬÷¡x!%ÔH ü±ï¤·ÁßéñíðÆoè#þaÔçèGÐU)õq‚P`£v¬‚@4ÀN=cœrj2·|ǯçwÊ[ÁÛ[óÚ7Ý÷Ì®+K+Î`wO³mIw0Îü§$?ç5µ„âµ¼ÞÍéÄq“&™ø‰¶L*qÛTÿ¿'‘˜Oû‡·G÷@h…Þ84À_=Íp/O6Fä$ù¥Q0á„3Éœò]ó¥ÈD»±r(hTü?„ñ—ÞÞÆåÐ6¿Yü_5Õõ7ü—Ï:šîaf¡Î½Æ1.bùf½}úkéž®³0„€º¾_½14~âs?£ ®~Ö:šä³öå ,¢6yP×î‰"âïŸÓ@9[þWm2.(‚º¼ŸV¯Sz£R•#uW~øæqõ\áÿ}›‡t¦(÷äCwÌšŠ H?7/€ˆXÈFaÆ*Ș óØêh­€›‰ñQZü-Q^ æñn;>Ž(E¡‘¦ÍIÄjND†j{¥Ÿ¼Œö^cÜšï`q˜ÆNAöÐÎÕQOô3¬¨r4€\„ÍW áƒ)Vþ=D'-=Ñ$Sëÿø8¿ºþØ ffB¢×ÙÞyé¿ëð(D“v¤È÷—ýÄ ×0)P Ïj‰‰¤9¤t òa¢è5­• FëtÏRGÓYƒl`TˆùM*;4“‚©R)£ëÒ&nA4T5Cîâ~Ï]¾ E’¦Ý¸-¨ß¤y(t€¢åã̘KZM‚]³¯`ïJ²Š¶2ÄRN«¨¯ÃSš–†_L]sÂvR-È3i©‰y®³-_,ÀŒ¤ìÝnõ‹±‚{ês¥n£«('ø,ò\Þ \àØî¥×ÃÁ©Ê5ueEj†/2bdľ ê6JʯyFÈ¥UæW”ÓÂŽŒ£&ðî¦ã"1‡rv½À;Ä· ҞȈi.ž8ÄïÖû mÑf¢K¢2Ê=é[§TPc¢ …Ú±w Z8(Qù&½%Ä&É”šVx‰¸NƒV)šhˆ™ñ˜9);®y©Å(–Œ`h`»1_7Š-Åé—à–kµ˜#}%{†¾â ws:À÷!Ï"æV/vƒýÔHµ›ò'Fû ð1-²Hª„£3è¥ÉHW…ð jy%ùÍc‡¡»¥70û¶ò¦¥àÚÏzh°´Ìkƒ¹OH„ÂnßÌd‚ÃÇtø0¨ï÷-3Ë*€*„»·É;d¢ëAå뼩>Ï!"ñœ0 ½È…Þs­¾æ˜nom¾Ü’21Ãm+v'4!€‘1m䎼ÅÁ$˜®}1—øtõãX»Þ3¤>™ÂMBD·Yt<¤$;º0-p‡ZL¹Œ½MéÎUå…ü®°5_„b™/²L¡3Ñ–YÂiÔuÝ›Ych¯õ³°ýúÉÆ‹t{»ýß$YTײ¨;<ÙÔ ï »šN¥ï«{¯¨820(œÜ6^›}'ˆü"4¨9eïrÄ Ÿ.±<\N*³ŸøžàÁ¸ .¶’gêoýŒ"­aQ€Êí¼¸XGnB ªüï«rip«uÆ !}¯üÓK.Îe¶wú42§•ÉD5ŽM£Im’ü×€ï^iº=6x+>%Žjî/ÝÆ¢Ð,œûqw³ûÕN¯×í~µÝûGïc{ Úè4 ¯G¾ñÖ&TD9ÏÓ¸ðÓ©3=µ æ]åÀ´rU,—…ñÿr T¯ëÐCŠB\hÜ–š‘Ò®õØÉ}J÷Ñ"´5„œ’ ʯÉ㲬8Cœ¼¶.um‰‹¡ß¢+´M· Æš+ûÃÓ‘˜+©ÊeÇnT.÷ÏR¹ðÝÿQ¹Eïõpï[à»Þ½8<Úß¾fP*rrl õ#Å울À­’$x~4¶sÇ©?m ñ×Tœc„å2ä=’QÂE¬Ó’«ˆ!á­Wõ¾HÅäuÄjnAígc®˜¼†ÜCVû¥vÐ ƒ…ÁÓ««ì4X–Yäòº 1Üšý÷yÄZ2vÀ‘æ´ÕNOæ‹æ9KTl bªÝjõtŒJg˜Yü∩¹%f|BÇ’ &(|‡ zF§]ÞFJVpM´iŽq—äpCwEuÑ—RUPÐW${ËŸÁbQÒ­ ‰b}³'( ‰÷ë+Ž…PÓìáPrõ~f6ªÔx㔀žß{é~¿àŸ|Jr4w‹C}Ì¿ã$í²‘Mœ Ô??\2:ü ^’à™01“$¯ãÔ\–™pO7n¼fê2ŠóàâY->±;Ø'!µjJw²¬ï_Õœº‡+4E/Ù·Z¶—ï~  —êáôgè~Å[YÅìè<æó*tŒ¨‹+¢3©£õ0¼vq–Þ†º-.÷Ò\J+ §-äX‡Á™R¿².ýNh[«!4c„PO M7cùŒ‹™p`4Àçl6MøÞÉ›Óãáþåw‡û£×ç2ù~´ DC%Ö6Þÿî¡/oDYg§DYi´ÐëQ¡]³½qU.Íz~޳ºL¬°’;ø1üõIôƒlû3ýæåNô[pOÞ NYãLÕäy“@>6E¸ˆ#w±NÃxÏó8dÉOÅä3±ÅBˆƘwQà ðOvÀ5ã æHpQ%²Õ]­ƒ†ò“D¥qö†ýÑᆗG‡ÇßBÖÌ¢ÖÀÆþа“6…W3ÙÆ˜5,Æ?l߃^š{}Qܬ€Õ­x )lÂ.«pƒŒýõòÎËn©ÚâoÔÛ«¨|þo¼øÙ43t‡^”,Ê+¤pš²«GMˆLCãliøC·¦!höA¿¾óœì¼fûk•:­Ÿ¥ƒ6îš,욵ϚMóÍM@°jÐÅ?Q3†lé†]  ,•öJqQy/½¢Ü(oÏJÛ8ÞÉÙñ|IûÁyÅQ®nyaÜRH[Ð0-uüBÂyª®(¸)hæ8L›jÆÅó¼ÞÖÖËøà1. °63aÎ2bõdL1ø9ð€«ZHôo†2´bkZ©]®A$§1Hºb<]d ¢²ú'157î¤ÑàìëáÈÆGUùSeÅjäB¸ZAüB7˜"Y}ö ÞbŽR~ÀÇ€T)0{P¤ÊJŸVñ=L9…M®«¢‰  Ê)ír˜è}.õÊŽýt€¸>I @" ¡Õ¥”"ha “½C¦<÷ö¶¼¹/ ˆ‹'ô º_\ #Y÷±ù®ì¨bö¹*Ь3êPÉ_/TÇ‚¤â¢àá¤"§%8GKLG :ÍÆŒ& Æt€™ÙgŸ~úòS3G›ÙdIYµI™‹¦IWæèršø‡y3ÐKúê=r}‚מy n4ˆfð‹”c›ï;±úÆÏÕ5l‚Íʧ~¸y1v( ˜°¡:ÕÀØ¢mǪÃY»‘žÕÀl韽Ѷ»wÖ«=ímHúçH`m»GõÇÐØlh´Ÿ)n1\k¿ŒZügÐlé6ý€Þ6 øÛÄŒ­=0¶øLN„i›u-’­®Ÿ,ßé3p2€jt=_€­7'¿ {‰‰SW 5‘RaXê»jÙ9Âåµ÷íùÑàüõåÞ/QZ—!ìm±‡´^ۖψwM±ˆšŒäõ:kS×OgÃãóŸp%™92Fa¹-â*¤AN´^;î*\Ùw€ÖAzaŽì¥®%€jœ›ÝS,+S¾*Z3D<¶9åŸwqA¡k&”I! /}´4ÂâÛÇà}€>%b еña–ŒÓÄ>²–?ɲi±ÏG~‹ž ÷.ηM™špUͧŒLY=9Êa+É ÄN6‹kÝáébíf v†ç—GÃã¯G¯Öv Š^Ù˦«Šú‰i- ë1¹‰ù©(<®c#ÖOl›ÔËùÿ£gTûEªÜê3À^ÄK/OνüÏ2Vvþ÷+‡C…W©^n uÅ-[ RÐ÷C¡ÐçK§Ù&<&!k¶ºübçóÍ­Í­€d8¯y‹¥x©M.Ëϲ5Ä‹LìƒL Þ¿äJI&8ò²?áæ¨ýôŽ//FòYc¯ÿß³[­m"ƒñîêãÜmÈê>g/¹çÛ­Oï%Ç{i U¤JaO ŒN~²ÓÁh4<;6Ñߘ)Ïw=æ¬3UÖ'¯þ)a ¦%Q/p>õ1Ø Qd ?ÁÓÆôKª'ëûï;¶ÅÏ$Ë1CŒ~I]€`vLågçb\ÆÑý‚.as ÓÙS­AJcRY¹ÛB}jsâ{YÝ ‡Û$ à N k$W؈q.û1ÞÐD[.1Ï™³Fk*)9(}»ëÅ/¡ê›×„iüyxvré7é›ÃãÁh¸9ŒGKÃÒK©@ÓSDÐÝþlæˆË1ÑpŸõf ¢øPŠŠ¿Ñ.a€A+LéÔö(äV 'Ó¥ÜÀ6y…ôf”(Ö³°&­# ½OB/°S¸ë#wB<'>0Ä"“›»‚º!t5F[ñ»ÎPG×/Ý&ú#¤¬ZJº‘¼.¥0I| £ðìàŽXUK§œÆÜ^ܳôX“¸ƒA2:™«‹I 0·©íwµ€V"_g C:hÉ·=/FD‰IÉ‰è±æ,zr¯“;)“úïx¦Ù»Ϊª>ÑóEyæ&÷·4Ž9Õݢ†š¿J'›Ôäÿ,—æÚIÐz}Ô‰¥1›  ðèB;Ý5 °\¸jdƒ‹~z$¾ÈD¹§ºn†-œ« Ãæ†ì‡—Šk äU‚iŒ‚y›×Æ4ÊI²mj[(,%øÓŸ·…HùhíQ{ºwL=”“¯x\úÏÀ+Œ`u»;à˜¢OŠqÌÅ–-ŽáS‘}]w]åÍ(Üo6‹ÙÙ|ÈÀNˆÜñ~Mø,cã85¯8åÁ@ ÆŠr¹1NZ”=Ì}ëžØfì‘¡vÎÖ\°Ô,Q°Ó1­3£¹„¢ñ6¥· Á¸]À^CnJLŸDÑÄù uM“‚´™ÃDû¶ ¡Ó¿Ð ÿ¼bÌfô„ȼçuj!I,va%\w”€Yó~‹tÜ{ºå"  À}½/‰Xàj®GãBßmfÀŒLAü ´Ò\*(_ð‘v|U…¯qÒ"än‚lC¿ÏÓrÝ6Ø*mျçLÐÜzØOFÃ/ú2 øxMÜÚx_t =J§#ìÛ|ñy‘çaÎHQ|%`/2Üš•ëáEP l(A)"«ý ÔRÇ5&n€ß(L»§afàvoØÇsjÒÇE×HÁˆdnj’øR3ÙJƒt:P`Š(RP*dŸ3|ûJŠ–‡Ê߸42l€¡é §¢ðÉpÿòüb÷›áÞ(Áÿˆ²IZá¼N gm”4b'`Lø5›_¿oc’‹¨‘›7IQ57£ª·Â>ã{'TµR2ª˜ž1sÒ¡úüÆÎy‡™Iq–kïm”‰³™ÏïB+]o¤MRy Q³¾Ƥšúä{mâ9êE ”Ÿ Hb¼‚€¨GèOR XPq5CöH% P(º™o‚o “Bï±Û-ŸA”eDô´èžÆ"saR/LY¦ïNøã tç‘F0Á¨‚Ï—-[!Š…a™6¯uJû­õH<)LÓ1Ü×¼€ãýðQà§8>¹¼\böº“ñ™@6¿ “²¢ê9Z'ø7_d^Àc8g¸1òñ¸dbÝEþŘI?Y-€ü«³‰ZÁÌ"“xîb#_,LÛˆ“Ò“k6Y9 âNM·®·{u 7`þÂÙ†Lt’z„Q5¼*Tža})‘QØ|¨íµeéjÎW-™ÊlVyÅ7¼Þ@è…p&×}Š9ÔmrœõŽRßÙN®Z;º“Ũȭâþ€åÙ×£ yA´f{k‹Í(]Zru_"†h£‚‘¸UѨ$ÏŠj²„ÈÇk)ÚB$±Éd _ŠîZªÂiÁù r¯4ŽˆËdõBU¶sÉ_oÉ\M‡'×Å¢¸ LdEçf0‘rÕ.6 Ë­¥ƒáô5¬J\Ñ §ì#zàΟïüFV¸Áß±´À|7Åò|É?NÌ2íl†´œè•ŽÕx+߀ñÉ35³§'ÜU1lï½^2+߯7ùµ¿4Áë›R’Ú”+Ë 92¨¶ëäQòa}¯ÙâÍ[tý ÚjOPiQj’'Dr›]kkGxìÈœ¿í€Ð`‘7/„ÚÏ‚®!àå³f™‡¾‚±˜Ã^ÜPïÔ N§n·Œù+ÂÖÄúên Îýºæƒ¦;+`š¼¸œ2º4¦¸TK)Uu–O0zÏ OS/;MÔÔòÚIù¾³s“YIhg²èMln)¦Ãæ”@k讑ërfeÎÆç4 ÿ±ý™*Âh«+œ$ŽEÚÄÊ‘@¿*ðz„»{[)술33üøáv> 3§Ž,à°ð+òЧ¶Râ?Ó;ÞhWB)Z Ȩ„Öd`Ü)apM¥>JÌ@Õ¿tçƒ|¾#ë’ @ȃBQ9Ù¼wåx¤!O ]òÖë!R(?.oDé74<ÅÆ  ƒŠØÉ©Ù}¡«é4dÍÓ@8)8 Nß$¡Ž‹çá%ÌÃû–yxÿ¬yX>Ìÿ‹¦ëôÈ7´2ï ›#TÝ[ Fˆ.Ò6Ð/‰®µ¦„SŸqJÌÖþ \#ÐFpˆ©“£•¼X±eßF~ÍC‚ÂÑœ™ËáGg=²ä>–óJ†Ó?ªßiuc‰|Ïô 3Í‹ú /¨N6ÍoGQ©>­íÊ/À­•Ÿe`âö‡glõÍgn5#>nì^¢|R7r懭 ¦ìI¥°õ y˜¯Šå¸ÞÿAÐb¨inzÍátBÙNåo3eÑ,X÷\4Yiäѹ¨Ý̰‹ Òd6 &Ô…Îüۆ߈jF@¨:êSÚ,L[%ˆ«€Îšú5âm1:¹ÜÿbÔjè5;¼ã˜ý´/°o„«†Uq×GÔ) 5ÆŒ’!èåzÏ´¼Æl~Yâ[ÇÄÿ²º^U;ý–·JÍëF+(üÓ$Vš=8 ù.hš¼)¢ˆÕ IºŸÐ-KÚMD ƒx³±„ LUÈÉ`A¸Á™Ï.l¨ùο-îùÚ=íj“HÄ­¼Å¢N–~é¦p°ôÀêçÐÜ‘·r0«&úNP1Í,¸£=Ø_Qè!c}éhiõâÛ`ÿäèhpù 'ÇGj½r¿#§PÍjW„¶™LЦ.ÅËà"3oµá]Ãýšgý0'у@©»ô(ñ…="ÌDUÏÚ*ñ\•H€ËIƒA yDqD8¾ëÌ茟â™sqÁb˜fÉ·Ë›Ÿý“‘×zÖ®Ðòy˃ô òPßç¹p5d«¼Ù\ÆþO\sÃx/1¥‰üºâ$¦1Zk]²%\0Ç™†Ý·ÀÌó’rRÛQ±–é´q¿ºV5¤jVC²µjˆë~UÕÕAS“5)8±ù[þWqƒÉœq/½á%Mòmq\CK~N…!r ¢ÕLt=|©)¬m§d‹]œk²i“‘~/x9%¼ œ<2Àv!°^ëպ³òo}q·ÅôBñh£2næòñžÒueŠM}Ä÷3¸É)BË—ÔG.s6DÅSð5Ìž'8¼6{%‚ÀÈ3üi2ôÕ½B}[ÙÑ>ȶgÖä­N± ƒëÝèöÔWˆ“ÆÏ‰÷ÌðRRE$˜$”?WD‚"ôÅ`oox:ê‘£Vm|| &vÅ'¶2 š«#ONoÌõHÖOe¼Rˆzì…®ü>†zJe{_o.µú©'fxN‡— @S åâh ÅÇs˜QIº˜õ1ñÚåZº™íÍÑ«´à4ÐóeÀÎÜÔYÿÇæ&ü ÿâmSc  ô“µ­ö•‰Púì\wV˜K•U¿ö-Ò½ÈYêm›°¤3aÉ쟖t&,™qX’4ßýƒAµ֚ëUï±u¤;Îc ‰éjÄõ>(ƪ–=kQX0¯s+§Ób*ó%¦•/„ÍIWß½l®\¢,¼›¡‚« „QIqÍ[.'âÍi“%ˆþc=4ÆJHVêù™ÖDÑa¯Ê`ö÷ôÙšå©‹«õË·Ålnn¾-†Š7cdä3b.Yñ Påâì~õ{:Åxu]hwð–ý ÂÓ[ÒZèýû*‡»ª„ @¶4ßòÛý—?yaƒFÓ#éà”K´ Ù¿¦°ÞX]ªñ;Zǯôñ,ùÂü&û(Qµø8 ÄkòúRµ™,u»åýÏt¢¼¯i/Šðk º¸æ¡$!é¥z÷ =òRøŠü"‰ÉÚj/f’é&Óü憔ÇÄñH•øI! 0µOvÇ]³ÕäoÚ}~ !vS'J»Ëþ2±Çk°x+({ÖûÔ²ý¥!÷9Š´@Hê1à±蹦ˆ¾*ÝùsêËêiÖÛ¼]ÞMÿMÕÕ‹<Ÿ!Á¤$qHä©nÔeIÖÿÀtIŠbDyâ#¼QWÃ8[-%ì–Uðš¦Í¿BS$’¢&G§ áÆ$ð‚¾¶ ÄÕ¢ÂÑÆþ‚5cµKš[é«e,ƒ"Ò‚Ý®Çß5 éJëáNŠOú¹mÑ~ZÔŸ'7ï›ô³nÊ‚)ÙI´8ÚÌ(¾R+6±ßYÉO˜ÒÕ•ÙÈ;i”Æè} `9&•xÎ+XžÂcH…BËPÿŇ؞­@pRÀæðrj'[ŠFâ4 x`«ÐÊ&‡0´ ÖìÛböþñ‡f-àŠš9òìŸFßãWö̳ó  )µý0)e¹/›§! ×e/)Ç“Š8 r>¼<988Ž.¸P®Ëj jÍ×爖Ëó¨UêPÃ]댉À(á½k#¼Ï~Ὃ ï³Tj£›„†}RçM|˜ŽGóÁѺ£! p_o¬7UxRŽ»K“„ùÎU£ýRÝF_(1<ãÔº€Së/›³ÏñT!§‚í‚ßÞ@ÂRÁ¥((vV“¥É[Cí'òß0÷äÉBiûú‘¥\QuÍÎ"f £UC Rô2ö!:Eñ+$÷ m…CMll-âº>§æµž|Ñwqx©ŸÊMù‹Ê/ÿ08:܇ ¢üòø  ÏF—¶ýæðÏú [VÛÁHªßk>|ì¯2Ù›U¸GÎÜ ”W$ÿ+‰Ü‰îC€Ö‘¡ï$â GVè7B [D$&Ó¾ÅQãîßz.DuC•Sœ†ÍU”b‰GCKÒ¹»¿êeM Öö}Êeäð~C ´ëZÏtcÔžSÀÉ¢IÅI g# ‘*߉B㵉ÙìÕòÄA΂%¤!òÂßúÙ¯hšÆóe/u÷hpã»Ælù88øä–r&ÞBý«YáVZ4%,¦ òš“™BÈÄð1–)é•<’ ' µ¬ÕÌkåãòšù65¿Vv|‡Ð £á¸¦hZ ZRÓEÕiÚ‚f¬ÓØ€Ë|9YBAsdq\7p'€k¹æ¶‡*ÂOBÁž´Êt°,ÍÅ슠ˆËé˜@]øµÔpÀâwm3ß´‚{§Ï[¹†4Ù ‘pUÒÛb*à®àöûî-ïçð?@iY|ÿóÐç‚ÉTwzr~øÇz•CìýSœz(%ÂtˆÜª –>Ý\€|‘bg.É˜Š™€ØG¨Y«ª jàÕcÈ#°ÛÏu÷…ïûðÝ/\ýLVßéê£w/ø¸WxéÍgfðqHV1m\ìó#,¶z†h"²µ+:`}>^}P>rJ/¢”1özK•`ø®=µH.^¤,Z¤ÊO;ghÌÑ^I:›¬–KWktÐû¹gÕ5¯V­–]&õÙB?ƒq©KðÄJˆU}:º8[ël„25ò~Tö¤R¡‚¦0Ee$xW83½lÏr‘uT™ÂrM1SHúëΈ.†ú¥CšÌè™/(c3©ìË1ß{™pË™Žvs"R~TÌOº~VàÔ<䲞 hâõØ Éôý6{¤+æ÷0©_®Y[U†ËLmñ±¿týSK $ñnwjµøhÏä¢U‘o6˜p¬ßø©#B4Œ—0¥wãöðbó<-ÚèŽÁ-Š!ªÞº½Ò— I/˜ð®ïH]yÉu÷þŽ)ÈõЉˆÖ¼JXÒ]1^÷Gø_¾çc–s§yQ•<–)ÜÛLròOœ«Å5,·^¾~ÖØwKD‹—KôSz$nf"Ì!ÈÝ ¦2Sýæ1º%e!åæXÍx†üíDùu‹½šQ2v(ש´¦¹¬Ð!ç÷†B«áÅÆÜ4b7 `vs –&PÔ•ÊÚ!Æq!¤l1Õ”tÓ° PxëpìϪíð…qèñÞZ¶ÈAqJÕ—=7oJ«¾4ïÚ%Zâ°Y‹1•J,bM×£©}ëͶoîÇt@µÓä­>p:²·óg§¦ÓbjŠÍ"ªÈõ4¸gTjF:ür~¿1õÛu سë[Ò?CDðÊxw‘’+X=$ëר¿óž¼Þ5@@½âkø×ß>êq™Ô*ìOèú„w›D gu/Ưߓ̂µq4‘8¥d±èÆwê¥è¾8=»8bIc÷Åù·‡§½€j•¥#@¤%WÊâÄÇ#ÔEg@‹JjWàM0P 辊JØÑ_(¿ñ×éßèñðà$¿æ˜¹ʙР­›”q®©rn&5Ûss‹â® {3;‡VðQË$af§]“5¥b’ò#¸JsÓuÿ÷HŸø,Âqu\µ½ÙKÏm)jm¸½P…d) ‚plŠ T¸#Ä&”$ªéO¶¹{hÇI¤øÝ²rlc™ ‡×Ø‚‹¾Ù1YóƒÔˆa>`*oáØ±|Œç‹E¡ÅÌ L´k2¥£cº?$Ù_ÑzýcÒDÞ*äD=è[ËçBæõÂ!:­ÿ˜lXüÖonJ<£Ü÷ÊÙcDæd®?êMô-[?uÐF# æÊ™NªMï.guÕl†Ÿ’xv!&ö'@Ü—}òÐÅ ⦳¶ÈÕ v%a”#P7æ $ð6=p<¡Bf!C»€Û•&o–—” ó¨æPrpIE Èw†G`ïäÍ›ÃE·U §ˆ T «AUßÃè˜ÄÄ›µ+>@òÂÆ³Š†¤q¨*úhÝöÍ V)ˆÛø2A´Ò¸ª$ToWÒMÞЖ¹Äa#Ê\Z-'Ÿs4Í&/‘«‹¿ ¬Ôg¶¶ýYKsŠ„ÈíªñÌ6_î´´ùrGÚ4‰UÏ”a=oSºÑj6~ ½ñ5˜PQ°AááCg ˆ5íIʳ¤–E0æxc¢(wDŽÂ%\áÅ«ÅÎÅÒ8²ìæT//lP—Öi:¤ÚQÚ@Š.íÔ0çgˆòÒÁ‘Ž;u1¿ñw^8 €¶ÀRâù}­=ÜT{®!é/ÆÝu­µËy¨ú†Þ×acáÇ|u¡c\ƒ•/ßu4¡ ”v¸ãYKÄÝH»B”U‚f£¤Ún’àˆ²C4į1)m†ù—Å"¤,ª§%ñáøæÌÆÐ©V¾'~«Bj3pÊI%ôÖûñç[[0eþ¿&“IÍaìEŒ(6ô¤é£Nb´o‹÷?Bs?µlHA¿¸¼ó‹³³“¯£áåð|op:<§t §¡™g¤gþ³Ñ²,ëuâ‘Æ§ ¼\,αLÂ&92Êi$.c'0­šUFE3ötÆ÷I“Ó6$Pz˜x +—!ØS`šyã¦B¿¹S¿yöKýæÅæ4"Ó‘¢FÔPWP‹÷ráš 1@hÀ+±ÞÓÔ5„{k¶•âÛÒúÆã˜rVë¤5À³™½±eš 4ñY7Þ|ö¬Œ`ÔáËkè8VšÚÆßY&xdí–T~Þç7… Í;”šºMËÊ”„0¢râ+³NeóŽmjsû@ûÔæã&s$&"Ëð©¯'Yj 'ᛄÙÿÇŽ•œ*žŠ*$€*T ð âÙNV½! Ë1ANƒŸ@>W²²õ¬Y†c#ÀéR˜¡ôò Ýá‚(¤M«&hDo”J2½ä:ȯä\\ž¨Ð…XëMý”{¦¬ýµÎM•Àêktæn´ÖDQæßÛPj¶Ðo½x 7!©a èL4„ã2 ÅódYªÒÏÔhRůŠ5¿€¾ó0_|_µÑ!7êÂLŒ|Þ®TXu ¡n–˜[­îÝmc%¼ÅØ­K~_RîŠ>DÁ®b$vkVœ|;8;¹8Þ¿Ü='—ÌyI¶²"3½üÜ(^ä\•ãq1³*ÒÛâ[‘®=•/Àà”õ¡ê?9Ç„§ÈJ‘h0ˆÃ3·AiÖ”B°(Þ7XHàÿ=”C Ix5 )c%Ñž²ËaBH7œc†øãÕ|üHnóé#§K”õú°v¬&7Ãà!°œPh °)ljQl ñyvarÕÞÁï9óNëÄð’:ˆ*°³ÕÙzdoDÛ'5aƒµ¥%…÷ùíKHvG³Ã¶‡0ÙkiÛÛ[[Òøö–o}ÂîVéXÅ.\掜lìQ/ØÔÓô–GЦԴP(,="_“wÀô¦’ìN&ñ—¡q8áÚˆV)& ô8r4â5¬N“+–-¢8«ekêk›ß ê•šŠŸ}¿ÝÞù©–nc?ù‹ùÎÆÞm& å\pµŠ^nÁW¶šã"F­Ó©¤ÂeBaYôÊœ f–˜ÞŽÅjá ¾¶+eÜŸå "?rÕNh9u©,v„,þï‹Xå:jã'2G£æúP}à•æ‹Syj¨ ¦ç çËàÑIY.ÍÚ/å¬à\ª9ììz¶Ð…"X€¡"mX¦<]ŒÎ.;áØ¦SAÜSåJìÝ·Å¢ö÷¹æý½$G!l€5 ¸y¼¶Û†:ÿ€üxJRoë_5bJjwk5À.{l ’¶*ІÑ···››?‘?Ø@ð;ã0B)O5•ø´`:‡0`/ q5ÀôõÛo+mz[ãI!kY(jŽ uAmºÃgå~Sú›†Ý¯òýõ¥¼q¿ë—ªö»jìwЦ`FP×U{ñGpÞsÏÁwí#xhÔy6Àx9Ù¾“%pO`ÿðëÓ—‡°Æ×™ýå ÜB_üÏï_¾x/.çîçì¶Ö¡ºµC=·áHÚ†*é&­)Ñ™1¹ #ï7.÷+ ß}àJŸ¦ÃW¸4²…3ZTèo¨Ú6@”=X̪ՂM©îWð¬o«0ý‰F%Þ>ô)cÍ;ÂÖ`w°Ï·éåáyTƒ¬©#Ù¾½_\Š·ãïÈ„êÒ D é&ÚòŸD í(„æ`¦€úŒÙùá§ğáŒA¡¢üq¶ÐÓz€6ÑÆÁuôØáHq­“éJ¢>u#ò_ÄÐÛ¶âéÎvúê µ÷ *ä.ô£ù Õáÿ§•‚Cp¾ëC¾˜QQ¨µ´Ñ¿wàÄbCå¤oÌŽA³llthN¯—\†ŠvÞóÃc&éÖ†\Љ߶Ibm­läH± BåëÑÞ@Ç™t¹¦tƒúef¾†iÀ`þú“zœ 쪪ñKdy[ÿøWJ2Œ0jìZÃÛïîñÒáó›^Ëù«°pÅ£ý ´&Å£ðð_qß™  »ÀÒð÷•×Ûù VMü?£ò• “KEK¹dNœp@SY>GÈ È‰š Vó͇”–ª{Awêi.1ê8s­I°àÐ9›‡ÂÉqÆR0 Áà‘Eøj[ eÀê] *ö2ÞQ%:Š’êm2åèµÎÎÉ‚ˆ_õ!P? õì3uÑ¿mýñÎöN.°÷˜¦›”ŽHÞ¯ãÃ-žè¸1mº^Ì+:zøþC´è G9pâB9^¼4}–&âb•WùJ¦‹ü¸A[8äž¡²áýý¢¶¥(Ýö«EªÀ5^©$)÷/÷ÎPZŠc;ŠO‹›üú1®°!»­œäx½% jí)V‰Š8 ¼HjMSMGÚNFÌVâ¬à[«»6 (ä<ã÷_íeŠ‹ç/9Ö·@~lÉìÑ뉃BˆQéð¥>ïŸ `\yÓ†„œ«LlíÿÔ´Fë¢f«âR†7ÙÝx/y÷q¬Å˨{Ô:½¡d¢Å5"ḫ–T¤^…ªˆº²‰ER‰*{þÖýê‹Ncz´8)œ “tz¿ê˜š]xóŠRMIÜšk%xÄ]F)µ¢Ðz &|üÐÉY‡Yi_%€ùÐUzø'¬R‚—xNV¢©hÞ„¡´–;YÑFnúо-®`Mݺ5Íâ5õ?IWU-–ÓIÁ†b¯eÙã_ƒ†DO¶[š–ìøÄß[í%zYׄ*ÈqÉ -ŒÃ@‡Î¶zÐ-,ÇtIí-%¸¨|Ütß,„LB˜.hR…©A¾Ø›:~ú§Ñë“ãË“½Ñz &ò˜‰†púèuùÙ¯+bLÁTM ÝŸðr×ìƒ ?ÑŠá:´ïÛbû“¾æ¯¦c0EÁ¿h|4¨ü:”ÏQÂíÿ\† àÓA½@l§Ç"Î&º©Æ™c,Í…Nñ«¾Œx爛ïã<;;Ñâ¿ýû÷Ï»G„kJGOêXi¯˜›ÖA~«@?)ÝÔT`2"¿€5$röåŽt­£àô¹ªœRÔ™ÏUÓü%I0µheÀ¤š”Í‚Z©(ÆŸÒûÛüªX’ÀõògmŒÏp÷š÷¼ÇõóɆÂàâÄT4ø“N…zõÊft Þ}ŽyV\1Ý'Öuû˜%­àr„+©9ŽE];]Rc˜ù?½-1C/¿Î:ß\œ67F‡o†Y÷ÈÕß;yszx4ž‡@óælâ6wA 0}ºoPí`KÈþvrÈÁó~@~òò¬øÏ{¯¨Å´5Ú‰d’µµÈÕ§£3î£k™ðšw³NDï¿÷[êfykÈ_Ĉýÿº¹¿ýÌœ”Kd¢†>…?möQeJ‡§ùG&*gÍ LEq¹šÁξ¼+¼˜ä©e Á¨ÅÛ¢4ÚòCô‚óEòÁ%`w7ƉSšY ßÞåïå»ì™]i½òHofÝgLS?šQÜn^,áu;‚ÿûRB1ØE|å û5¯ÏSÝ‚™ïÖ&Ï7¤ñ4OÊz õÂ,Y#Ì6–X³É)‹o;EÀ×ÙF9C %…w’¾rˆóº²„ÕÖwÈjÁqB¼Š÷Åõ â¥á<ñºƒàY.mñm"'7ü»Ãs¡²éŠ¡ÇϾpý̵]¶§.™ò•Üù»Ç‡!¹mõ’zë¡&Š Mô›B¦¬:©(Ý-÷j×ã‚ Ëà&/»'ÁèR †JppQ¦7KÔIy²hQÛÄ.])˜&fâ¼Vœ£k†‚…†î ÀF* •ß½ð:¾‰´ª\®ž0)ˆÐ(ǽÖèoJÞgVx•a˜_œžžœj‚›Ä*¸ÏýÉ~Q½ÿ@9cQhÄž¢'Z’ÃtË?DMÉ‘¥ã&B^,ªºc‹A¶ ‚ £<7I&<+}'"ôº{qˆ–ÂÕcí ¾1õb2c¿%pµâتKÙg( ’¤<É©ünçÓÏâèñæmïŸùá,Pq)Œ{P²@'y‹ Z ÞOi|ÍÉÚ6o¯¯DMâ6 ƒ7Yë¼§!?BôÃSÝ·ð‚P1§®†òcr×Ð|·N•}¯2 eÃOødQz3±ââä4µþ1$7 'b¤®ó¦é“­_›’Ù]MÔRÚá oïü¦¥%«¬•dÐ.B¾µ™[›ðÏn8{—e¨^ ‰èŽÑm¾ ¤ ßÍÇPê‘R¹åçéN“õÙTeIo!ß)(‡œ¯^ÿGè¸j øÿ¹E:Q$.{DíÄ)ÙMS"uÊÐ8-ÈõQ¾§ü‡ùf( ?‡]ò4ð¶È4íVì> ›¬ PF®âSöô,ö…\‘‘ÿIq÷–‘›ù‡¢9¤ÑéÔβø:¤ÜÃ-%!¬áU|]. lçIjxg¯Ã3)8Zø—7`+¤>R…Çð‚;n1Øæ²]’ó¥·ŸÇ‚òáú ˜·Ó2܈ּå­:r\YN ûí„ÝÁÚ :™!n‹Å1CŽù?¬ÓZJ¹æœnÆû Ô s)Dop&¥Ùú°Ç¥où!§|°áûx`ÏÐÄ)¹Y-ªœ}É_RòꆅÎ7¨ti…•ÍÆÊ›œïä„WdÁ=rnd×^YõH6 †Š®ÀKéäô]¾éã‹£#Êã¦íƒ¹ÃŸh‚ÀŠ4”·>j…;m>Y3¢³ úG¼¹qõ)6Ív†«Aæ6Nu–ƒuig˜k%PXÐ*¡h"3Q”3e$ IsÂêý„ç!–M2@Ѹ•ÝÈ÷ùõu‘&IÚ|ØÚ=sâ wAH4/šËWAˆòâJÖ¶+u¡{´w¹7úÓé°Ÿu&‹Ëƒ³Ž×ö2Ê—5e¯ ëŒ\ËL™Ek&ºŸØœúƒ5K mõùÅø¼cÒtwss³¯/fµöw„ÖâaȆƒ;ú¨œ­Þã2fŠ?Öï7˜öjõŠÑ¡Iz˜»ï¼Þ7`®&l¸q ‘Ã`‚ŸtTö…­±§tß•¹õ|Ë^íµòª`ŠVþNT«&¯y@äE„4#bäÆZ 7cv%Ñ´a amÕÚ6¹pB µtLT#µ™ðfšfTAœZ?¡`¥œ…Ç_à”²¡¨B˜<ºtQÝC² C¯&ùC¸!ÅW»Ô8ðl,Š;ºïMmKIÉÀTOFˆuc(DRkÆIµ.°1¥²T¨áÁ{vMƒ'óˆ<­$lI¯q$d+dT@vÑY½™Î¯‚¸¦ñ>ä’•™,[PDrN4Ù¼Qé븆„ç'Ty6‡æø˜$^/g'BüõˆbÉá $$´þŒXN;àZ_;%óý‘EVˆWÕñ&Á 3¢÷|ö üÐò\ÏïÃï[)–\Ÿ*_ÚÚ:S¨3L°ÀÆ‹õiU°4”·bgˆÀ•Übøfg3¸:¹?6+W¨ÔMìµÒÕì[‡ÙSOðü ¶.[šéÍå7À¤¼‰‘„áäøàðëËD Î/†Ç_^ôTRÕZ5 bs\‚T¼vRdeƒõ ÆºL‚¡õ¼§ŸÓ¬+¾$E‰´š0úŽ7ò)ÒPë^æ5±ù#•S³œ7!ov•i« ÇwSE8µÎ§À”ʸðÑF×ÊÈ€=Óè )g“9¢À°À³>šÃビ³7èYÏ»'#¿ƒÉÛ>ÜÏN£ÑðlË[¼„WX?y»Ó¼±cwvêË K½"®úœQá‘Å].¥P ãê%:LŸ x‰Uë²ý›Î¤Ü3¿îÜå7å5¿²ƒ?$”\¨A¬ýðªüÑÖ_£ø¤ IŽ"6Á¥cIÈ w^'Ô¯*L`ðùèÍô°d̰q-{i»ë©Ä«†  ½´ ä+¬]ñŽÝÌ^ d9¤"%VX¼ös‡ÝqØCŠÒµ%ƒÈ2ƒ\\ƒ9ÀÑ)úÚ×jD/s0à‹ÿùø…QU;{ñ1þŠÖä5Æ ûø«‡ô ðÃÿN]é½²¯à´7oBs†?Ö…SX¶í´Ô-‘5¶ì’¯y^7)®‰8¡kêqqS€[ó<ùüìëÆÏÑ_(ß@kg¤xm« ²çú×°æp{"›ØwG)l á`gÈBDÌfsÏôÞñæöõ’ ç,ÏaR?ÁK¸e§%„I±5L-ºD…*söhÀ[»/þøÇ?¦eÉב_2úfÛüëøAîÇ,WdÀè¹Ô»Á¤L‹½Ÿ¬ôP†5?G Þš}LƒË¯®?¶Îù`¡ªó™ËMÊèêÍ\N¤¬’ŸhÿÖMwÒ<ãY÷«Ò¸µÙWˉeÕ€äé‚Hhì¨þ¶½Õ›/2¢nXÝ >t1¥¤~°ÀÍ ÞyßĹ¾ìÓS÷Tãàæê@¡µ/[¡n¥Pj-‚RЄD\ gK ÒPfj²è-,Âåo(æ89­9ÅÒ?pÄþªÎÀ¿¿ŽþÞ|ÂT@дÊ62Å‹ ÙîOÁ)÷yÔט„Q ‰ª­œÁÓE·ÙªáÐ;`G0Û˜E<ó›“ÃãÚsOà ;¾êhÈ*pqÉåaŒÄìŸ8戇¢#Ï<2oÁ4G«ðÚ*Y¶?_Â~5sw˺ ¢9)*´É8jÀì…Ù;°È Áå àí²ûFèæ½ ¸0œB r$똧q³~Ç1›Ú›Áí…>;­r…¿0” vvD¬–øéEæÚ/²¬õ";F€„\ ¥90ìI`9Vªžchx…/yÈãÊvÛEÝÞÌvc‚ùý„pÀo~„ª~ “# û4¶UÛ<1”Í­•Ó’~¨ †Ø’£½ð3-”¦oƒlî¾ìåÿ¸B2,a¹‰äþ ö@iöIÜÀ„S44m„ó³P-Nð̨ ª] ª+”ÆSžtôÒwùáPɳ,¬ˆ®â¬VÅÀ‰%àR}Ÿºã{â•úý“ý¡¥-ð¸ò¨±LÌBgriýÕ&¥­Žÿ´wvt`˶ kÕÚÞY?;:@{ žm˜)&Ù;¹8¥‡FŽI,âø(5Â]*60,V÷«8–7àà ø ¢´œÛLßIrZ~á ¬ux:z·cU†Ð±”ÂV`\Ü/o¾êêÑä0(Üz5.‡MÓ[¾œùbOA‡W…ÝÜM ³«2ݹè˜ÍéXQ£ çµ h‡ÙHZÝÿa4K.“«™£±ï¯¬. ³Šq—‰oL¬.PÈoÍj![޼…€W†p/¹ùef™É9¨£éš"×îáèÍ€€:9Ç6¿ªÄQ­´‰¤:q v`=UJ_Üo‰=2¡6‘ìùßî|J˜‰Ëà!+­B¿%$ ‘£Ò%ö]ÚÔ8T#)ú ú*a®`ª&%MüūݕšKf” €iß P¤  €ù!ßfP¡^¹(š¸óé§œÃÀ…ŽìMšæ7xUC÷ádD—¨ Ê(ñ ˜ZˆtpŸ’ì—Î1±%N"z¤¬ó 7Œ ‡C}Hè¬yêà4[šµ³µRwÈk„Z‘Xwa6-%2Á?*»@IãfsM›íyãHÄœ ŠÆ¡\ŽeØuÔ)†»‰|n%.ë\w('"ðfè%íïÁ\Ïüÿ?ú³ßëgÛvꃑV\”ü`¡$È"%“êïÂQÜg/Ä:­:ÎòH‘V‰;A;Ci#…†‹ùé£ãN¼³ŒçRrHkçýlËÙ­ÙI0èôrÕýÙ›ˆ–(ùtɶm\ìÛ¯(Îgˆã:[¿T¹m®dý]ï7.Ç¢#¬Ya«í$°¤ænë=á{ñ8ö§Ts3‹pÖÒ†¢„‘÷]>›ð?d’†‚)>2­a=Ïo†çÂ?bÖÝæ]ñ›÷dUÑÛ7(nš:†~}bpq‘ÆAXs\2Þ”•‰—7s€»®©)zß;ús$ ¹Ucù‚1 “º˜íVmüs±+dè< (ź¥ÿ‚°µM©†ô¤IÏ=8WRÒ=»*Û©£*¤ùͰ@q™ GêÛb¯oŽÈ/=ÜóÊWK?«ƒZú+Úü5xfG˳ïš;þü‹ÄêÁÌÅïÅ<6f)²åÌI/údf.è_³$xcêí-À<„u~µ† NŸPÛo‹ü^¨¯Cëÿ­®ÿ©ëßì½=Üo< ݯ¾a4‚ojàÊ’Á•ÖÒëp¿øàû!˜BÀ—ÆL’)–=a§Çp(wµåÅnùáH¯ŽÃ–šgP=b„è{õ¶…-»£ÀÆ"¹‹Ux 宆éâß@ðõg\ëž—ÆM t¥+-Ê*ºÎï JF¤KPˆ† A0Þ—•˜H.Õ«)Ñ7+—]ãéý¥a¨DA ÇÖk}±8@³jÛ-|˜cK‹C<5U™×0{¤)4«ž^çfÚDLaöøbŒ‰ŽJi%Ýèc˜y êSÜ21:ÙNU»àã¿åo‹ñG?Àÿ|ÌÁöÍ©„Üκhwv~èï-^· ®GZ>¼‹Ú‡æÛZßZ³ÏžT¯ÿuû¬+åäùjp¬“GFƒR¾îjy¾âÐÃ7§£?­Õ<¨²Vf.=Æãþ§(FtRòšÂã˜^÷šc½.ßGT=‡æ„å±Ðb/MôÆe(î×8¢M©ÕGf paCyߪ¢üì\x]e¡¬?B µÍñÊ uäÕlø¿õ’ÿ"½äÍà€T¾;|}xLÊÉᾯŠ[`T¤qo¦V çZgŒ Ré©Ä¸p g¼Uˆ]).<‹L‹i99æ?ŠWÆàìŸ(`ê>£Á:Œï„‰¨wϼÍe+8Ý #T°,6@«{•þŠKøv%ëÅÿJjC„$L• è×mÓK֯Ȣº¿vöˆ·”£DëMŒ cÈ`QÜÂ!ÄÍZ߯„e`ù ä^ÜÜ m§"¾@§&´$™‘7°²Ëï·r£*np~…‹ßʮͶó'mF¹\¡Ç)ÊŸ äv¿úÝ—9üÏUÞ»îš;ÿº÷åÝêÎîQ?u R.Íz È;C~&ó#³áà<Ì#ôÐK*¬¹·dׄ«…Öi]£¼­ïW˘ú†­ÉimN‘¤Gà±/)ÝÝŠÃM׺Íðôಣxá¥Ãd·qqµº¹!†”ù4IŽcü)ȧí™À¹¡~„%hÞMç𘲳åÞð‹ZÎhQ)NÉWˆÐ(ba/:¦—û(8ŒXwž·)U´úðର€7 ×xDvd/£¼Qj>øÌ ¥€r‹j:Œç™DGk”h ¥¤^„ºâ”_òÕ®X_` @§‹dÃ Ê nóÑ€9^„Žüù“I‰6ëe”z[≜7î0;)^[ûxx<:û𙵝°"#ˆc<•õÎ0gÁ&%¬ˆdºÙ¹GÔ☸`ªDfÖ½Ðêp±AH9y”ÚFÓˆÖÁ@ÕMš 'ó”(¾+f%Q3*憒hMßêŠf÷ò¦X^^=Bç¸npQİjDº‚¾͈ПW ¹àÇÊ„‚ÍjŸüóàè%Zæ)Õ"¢ B5ŽáN 1tÅ@ÎÑìgÓqMIXL¨œÉðÎ^’P¨C¥ö pD»‡È¤cÉm‡.´ê;(]Â:V®D—>n,çÜûüÞ”s„7’–…¿ñ›Ã›Zòæ•1qE!Øpª1Ö³^ ¿XîÞ´¹ ½ÕÅ"Ñ7‰€õ½Ï¸¯Ö –ƒcØ –W»©Š«% ¢k``lØŠkr…Ç9̨½øó€›HËÍ“óhnô¤njê²­R0—[ ¤¨|à `åR ڲὠ״¦ý£BJ/ϸ3Πj%( ÞÆv69Z¤´Ä~Xßáî3€=åÂlaÃ|ÓOW±P)Ep%¡#÷Ä;9ÀôÌwº¶wŽð®Uýœç±4gêÑ„ÍÑGœ#[ŠxõÉ N Æ<Ã{”h»u¿ú‡ºFCÕj! ÇGZUHËÅrBêp#µë³h5Ç«{l—ëê¬jp2üCXR§}0¿&-ƒµÊV ÃÁɼ¢ð¹îPñ›Ït è}|öUù ‰†K_ Aä0KŠ{wë´”eÚ×Ñ…6â,&šó èhêߢma·cVÍà`6ª–&³Ù¤Üµð]%åŒö)lÏGÊ ÇJ•¦„­Äò‚½$9Z¡A¤¹}…Rêþ+²1¢ÍÇ?„9’ºür*Æ8©T}è°Š2$XQÄ!%ÝL®L…Õ)b$ÉúÀœÌë³$¸,¼vÆ\4"ÿbP^¼-gfA$³®·Wwiözàä™Ã/ GÜ ƥà Ǫ®z”cl’ˆ½M畆â÷ð~Aß}[Œýÿõ¾âgôÔ—6·¿×é‡úA/A`žqÙ¬!õ”eËÓš6ºQãkÒl0ˆ"ü^¨—’J._‡Ò“>àB¦Ë½¿ Pù¡Ÿy…ýuìs„%PçÈ“X–ôÕW’½µ•mmgãÌï…l™e~òÕWüͧüÍ#¾ù$»Ë²y–Íðg·ð!³Oø³…´¦ ç‹r©  FÛã¾·Uš&™³–¬§z”„üŽª ¼èê*¿/2êª0eƨ·6Õp5™ Ãï ´ÍƒmJêoÔx’:"nñrïŒSÚ÷[ô¦îÞY¯öôÑ?}Ä ÛY÷è þæ²64ÚϦú;x¦þËÁñŸèƒæDÚ¦ÐÛà~"’,ÙÚóÇ\PÓÇS—+á —³çžì’ÕÐz*1mô}^Yzn,4*rÀ,p–%(XãLhMJiCWÖÏ.:1°8<;þ™üñ~v u%€lqxüu8æ‡BîyPüÓ…nð­Gx,}ÏNç9Aí8eÿ¸u¯ù ³¬a´·n爠¶Ex!°2QÓ¾ÄbÚƒì>Óbœ~bUëåÊñò–zŒ­á¬¢•£Ø›¾î>ó³é–÷PëEg¿>Y‚™ X6ÌÕ)#ˆhPr×ñ[³Ì§ mt0äüóÁXS¦ìDa PpˆãÕÝý&!n¨?–ʩȾ*nÊYâšÔW_ŠK¯hñµ¾Ò9e]KH tû+–ð³v»þ¶‡ØÄ¤Ù-ÎÏç1« ÷®>ñ; V4-DýéCa÷nGqÃm÷)Êqx íe:z=Ì0% ÛŒÙîÑÉÞ·µ«³ŽQž~"8lÊù»â:ÿþP˜ïg¿øUòºpÜû/€7¯7°Äë0Ü$ÎaÚÆäæeÈflþÖ#oຠßW:T0ÜçÞȨFñËà»ëå­7 &ĀׯY z½ü­m M9Và3ÁVWާŠË“£hšá¡UÜè‹p÷ðogäzïÍé…pyÁ$ЏJuK8a ¤òè €-¶)&®‘ oŠU›£ú˜ldˆ„Ø­Ê,¬S¢|Ü¿èÀ0h‰ºË“;ß\9ÄpÍ8>QŸô4Ô âÌÌ l-jÌ@@¹Öȸ2+)ËoöRÙ‚ù¡HŽÃtøq.8 ‡e«Õ¤izÝ'¼€à†yä#à"¯ƒ¹h/ÍB[dv“?2«J"ÿµWW­Sï6¦Ø2S¸æñ…Èžß =0!§.e2oã!UåóÄv0¼È+ ”#à‡îç›,yÿ%_¯Â’OScý“ ï6­œ¬;¯5•y4ìÉjîÊ¥©¸±š•É žcušÖÅ—¾k "rÍ¢´XÒµü.^š5IVIψïógŸ~úòÓW’‘˜­ůiôhÁÛ F°YûÔ*¨ô2+á”T[^ó±UàRÈÜ,@æ Øc”ë÷€· ŠŒ0ÄKÈÏHYh*Ä"ììP¥Ôö‚>¡H ˜ô‹àÑcø]‚iÖÉY/úâ+;‘ƒb+ÆG,:­¥îXlLØ%g‘'¶‰ÍAΓVqÆ¢ÇGö9åW7ìëÍìOVœ‹Ô3Æ”÷ï À”£O{í&o°E+Åvã ät]‰ [­©u%S‘¯yöPU2¸›Qn)&s°5E½nvcuy'!¢!Aý‹xªé©Å¢µ¤¶4¤¢5uÔU4ã×HmHڲͮ£RÔú›)d#Ê”âíSÃ¥êfˆ¦"ÜêZo—šöeâ ïÞc6¨KNŠ`‚O£­L†ØF(< [Á4pÏå Ö˜Ó13¼Ïlµ8O¥³îBœ-ÎPŒ2-re蟠qÑ><œ¼I/p|NÂØèçWÆ ˜rY‰Æ0äó,ˆi¡‹œ7áæ¦CìT©ØÏw_<)&hQÇ/þ¡~ÈšIÐC P ’£”:*|Zµ}(ä¡h[Óqp B¢yÇ’U«˜¼…S{a3à7ìcp¹äŠ©~‹@ƒ 5þÌ©Éh+¯ Né}ÈÓS4Ž«;_õØC‘ï'™¾#Œ§~ê!¨O"õœX¡)(piOÿÄ û—ç»ß ÷FêoH0Š+„ÆÊ%È’c~!®Á¤vqáé´IBú½=‘²Ïü9 °6K\¾Cå@”™œ t¹4 !¬–k5=Æ¥»C\¤¨J¥Ü+ø6É*ïîŠ1 ÊCÖ™ÔþŽçTZ@YÔÆA÷føæäìOÙÅù0;89«yêžxS„+FøÒŽîçgÚÔdš?Õ TqR½4µÝÀ§ÖöŠŽ…²•(SÃ:&9[6%š x:1£Ù5.ë£ëÙ4µbø‰([gB¸«$ÐoYà ñš„¿—†0k ª› [€.Ão°ÄÊa¹%a}¶@Î’¨1fßX–¾Í/†¢6é]9^y¥˜ÊÄŸ®wõ ñˆ÷UèAêØëjPÌÁ¸d_ÊI»6œJ–¬ÓäñI…n£hIáž#ñB$;*_^›Bå2ÑÏx%h}Ô(*sÜO.ÿˆw"Ub©?*ÏËù<«@ÅO«g„&ÆôƨŸg)_l´úx§º§\H”²Àô—Ëœü s×tËô-“1&O{5cá¡Æ·±ä¡‚:éÄj‰YUjÖÈk|O•hŸ“’5€ëÕ5U+¢EÈ"ØÓüüÁOStí ‰F2ÿ€‡Š‡é£A®ö O’%@•ºçH}÷xO‰šô+pz„Òœé| ª„´æ½£›B¶WÄuƒãôÂÑ gïÊÅ|F‘J*h ëOÈ=t, \“ðàÊŠ}öEѲ ½ç'ÄÅsLg×8.¿¯ÊèÒ‚[êðøë;þ"_øèl°‘¦ÁQvpq¼÷SéÝÿ—xEÃEX¿´Ì Іò‚×ôI‚®ÃºG(ÿ•©Ì7Ûz§©á/l7±ÙІúÓ&Ôÿ-géGyôx¸÷_•8ódtó…ݸk¥6Q×BÂÕ)åúXÅv~i“üšhJ$-\R)†Ì :ö2º‹Å”¸hî *¸ QŽ%o_U*¹€Ñg–S¯ÎÙÙ¤]7]bãIŽ¿­©Æ&SWÕñÕæ„!|f385«“ëK›6©$ ÕOÉÝØ¥Î»Oú™2 hxüp3,øs@Á;ÚK[£Cà ‹ÞÞ®½`YËúkþéV‚XîJøVù’cDïêöŸ ©› «ò“wãÆþÕd7?NS=®ˆ\$^‘çŠðá`¯ò‹+=?lsI!¾o'ŠÕAJ÷Î+¶(ÿ<<;¹ô›ÃãÁØÑq_4þ­U?þ ’Š],%ö‹{7Ÿ:$eÜ!=iVÌN'‘“ ”²" ‰î­6'wÇž«0Éü%ù’0{PÓæÎœb ä€jŠÉ|ê3ÜvbÎkn=Ý%¨„öåÖÑçíår,§½IÐr¢¸ÚUHv·ƒü[ô,8ز ¹‡šQ?"¶p–ù×FQž“®21郂i‘ÖŸ@Oj•Úl :Ö7PXY ¯ûw‰Ò3MöÛóÖIt£ËÁÓ£y…çñÀ€ÑN«œˆ~tZ0ÏòÒÅe^Ã68œÔšDlj žF×BçU­½!Þ­I]—iˆ¶´³þ:“¢Æ˜qp€ð´UßL•3“Qä‹ë[®½¥CÄõÂü“ÜØ>±*ì[+±¼o’sÔeŽØ{ p°4à>‡U†ÿØþ «VûM½s(f4#VŸ .Éâï‹Ù8þ]E³sô¦ùÌBÈxÝÞ_öi6Üþè'¦Ð0 tÃö6³#L'4.⟳/e8Sˆ&™Ë.tç4¬‡S£ýE+¢…3ëâæ´ÔœäµMf“•D5a—©Vé³ïtÓ3 T}{’ WQ$A¨K î ñMg!ð GN°¥¤Èy´{r”:9üUÜ]•Äгï©ôÞ…ø$V¤ˆ š”š·ÅnYUþñoRÓ@}­è„2ž·ïCÇ?ÖQÇt9“õà•Þj3ë2C(ÕÇ"gÍ[ñÞ¤ú‚@«`CTí÷Àf‘Z˜†•-zž¶Îßø¿ûû²câ€kt8Sð†Ñ¡ûs½mBÛç3Ð0<ˆ^.NŠŽ8¤Qù èHûB+±…ÍÏ[ˆ›Oü +Ü,ÑH“.ŒNæ/0ô–Íus£4X–‹"2¸ÆbŽé.G0²yö -L-ÇÃ܆#ã-— ù„X vlư ‘\SY†,Î’%09ŸXP˜k”‚È%•4JœÖX^¹ÝqŽù½ G)F†AìqMˆ=ZGhSo6eƒÓCŒ©Â†\Š™VV¯²5>¾%ÆCT.hBDÕ4Ȩf«(¦‚;%‡ub“—½ Û3ð$`µƒ/ýDóœ6')¡UÈA Éß$P\*t¾^zÄ]TQÞÌíûïEî%]&??9aŒ¡\d¹ºU ϣ»;ì©E}ˆ™Ä6Ñw$מ‚œC°–®—r¶u!z"î*µV®’>+ªÙXV*…cËΆhH+[p‹ÕLPlZΓÂ9ÀY†;"G†MTxì¸îü Õ¦éc¯o®L”FBieÞq³ÚQÅEf2“z šO2BrUã†W„AN7Ö7k)8צ€)Oi¥’ó€Š5-ÍWK'–Q AzW.–”¬“rŠ>ÃÄ1  ÈP¶õw¹él›)nE<Þa¼*,ºjžÑ¦ã‹ì>ŠÓ$AÆO47‰ÕÇkCÆÒ‚ô[ód¨1MeÐL+×”ÔÀŽá41üu¥Ùi’Å ¡qÇ) þæEô“¡seƒ×*8!mQ BKäÜ´œ eT‹OùÍÊ›K~ 9NÏ¢U‰ãi_z[ ÜF8ÍjP4zØŽK4}– ©ÆÐl*Ð-’îÂTK’GãôOÖl•6¨Ê„•G>5F Ž›çì ý"WÔßÞަɧ!W˜G!ô·&·Ì¸³ÒئRIÌîš(ž[›&Ç*ZƒL¬Ç5½©œ4Ÿœ· ÆF6lH9‹Op«¬eÀ,°õiñQðªo³“'×\AtZWÒAZókò”oáÊ›‡Å,V>’|E‰±ÆÅø›dFESØ%e>ƒD»%äÏïKÆÕûJf®oöAÒa€1q°¼Bf üAº9½794°Ä£‰ù6$Yý8?æ@2:1ÊÁÉ ‹…»’!ïð.ŠÎ0ëwÎqËF~TMuW#ùº’\!?|ŽPÏ’µÀýP=†˜¹ÖœSmIßk¸vŠ*Æd\¶Êñ*@m¬(¡ÜT—'ÒKØÜØ…m<€¥P8¸®D^„rd‰/KlžU$4-Ö ,]ÿR’€^’Ü À oâ[‚‚Þ‹87°rbÕGZÊ”3¢¡´Ùß>D\sçUNk¡ínwŸ·csX€E|FhÃu 1œT”¸ÞFÞĵ S£…‚–²ÁÅ'Öl£ážÔ#Z43RÛk"'Sã›ØGÓ¶Qâ+º9QsDSP‘ërq½º›L‹÷þèAÚ‡‚„\j¾ð´¹r 8n2Ö²Ò<%X3$:VËÀ™kþ0M%²;ónÜyªWÆ8=ÙFNaÞYã£üežRNÉŒ„W–*&MÌ=Ma3Q*Às“AÃn1û;ÎùÁn· =‚9߉c9Ƙå9È¿º"›²2\ Ðá&.g›ðÚó\ëkÈKf%¤NIUÙZÇÐwÁ.“ùÕµ4ð–1ÉÆ=Þ¤Q,Á”‡rÅÀd¼ãèмÄKaàY`§æÝà3$îNP « “}ÄŠ¡!Ÿ" [3fû™&g®c©‚ 8×\R–†7g„¡Uwçp²‰<ò02‡ c2­èb÷¶ø6^ô4¤6ki÷€%þsX-XÃùLs)'ÉÓK64'èAèÙÁÄ €•Ò+¢QX\ VkˆÉ Ìü@5’bQ›*õ„Œ)%²f “ÊUEz/Ç&HVöþÇ.ˆ6Ô¨ ,ÈR2Ûw?à­9–ö`‹^ÿapt¸lƒ®0KÆ~\| };ªiª'™ìRòš·Ví¯Å©¹fŸª³é¶à¼ ¯¯w¿£ãÜòØêKI1Ì‚¨áŒŸ¸Ø5Aý¦„[uó¨ª.$'†1·á„Дà‹‰à¬Þ¶&†lHK¨\Ð5Ø7^VÜÇ8ŽžŠ"g(+Š}#™”Šš°º®Œ¸atà­Ž û¯PvK‡ /¨ Q‹én¨¦"h{ÿh•ȶ²müŽ[,Jr9Ê«Áh ¿É!ž ª£¡\7+n(W/R‘‹ b;æWñÍ쳊‘áHb.Tb14œl‰!G1®'©Ž¾£^ÜÝ…G³õdšìËÖyerˆjà åM¸¡«åäó†ú:J¹à/ú”0ÿ¼Ö¶?kinû³¸½ær½Æ6_î´´ùr'ªüù"ŒJ{Aöæ#¨Áæ2gM 6 <øST¶ú¾¼g í¿ü½µ ö¤Î9$î?rέ°W5ܬᒅVXæïR‘­tCœŸ’(%õ¯³±ÉíwDãÒrÙ”¡¸ù.Ç:“EqO%Áú»(WmnÑ|lZ Û×0µþeßå Pq¿€÷\Øû°ùbk¼~cüèåç­ŽB™L,pg 6­T=º ñp}¡|RQêiäèê˜ÌM(e@1s³Èï(g‘WèNÔää²üÛ^|ÙÃbŽSŒtÁ±‚bÃrµ!&'Ÿª: Ìå2YPЦ=ûe\-€T0þ.äž¹'­ãE‘3tCÐ-¾¯\„» rs' 2{«‚ÏÝ—Ô^„ ]ÀάgD56Üúó(¡‡ÁH8—*øHØA= ÅM³Âª’ú'ô±œÀƒæ Š'-JF œ5,UÖE¿Ü|Ù°¶='.])èt9rjÐbÉå†WYˆZ›u3;a+Á+:¹Á’¸R¸á8Ï{an9 B¸†Bäkq®AÃ@ëîÇ´?”¨Uf¨¬Þz©¤6ñ^¤½4×ádõá8ެD}JÕgÚš¿š%ÜÆ Qmòšs‘?æ%ý!þ öL£´4ÎΤt 3ªÅË! JÓ/fšÑѰ§¢A6t¹æL¹CŸßØYxW gZ\¥Ï´ñ@£Æ „:ð˜_E^ŸËµPãZabö“hÕò‡q»p Õ 1lözp¼XvÙw¯‡Ç™T&…ô`ÕÁ8®V%ÅpÅH/QY×Ò«LÀ³W…JXM†|²±}^.[IîÑ#‚D3Ö•OÒn£ÜryS~ßw )êrÚõ¦ÄMßýK˜4S°8%î…MàÉ“ÌT\´„«¼û>@½€q·@Ó×äƒaé7³ý´Þ’c²Ôòí¼ô*™¸=[<žË¾qG“Â×ä­pná²§Â…n’½ÞœÉã“´O¨ÆïrŒíGhh]¬6õ“ÿ`ËœŒ·Â¢5÷“ÏV¹rp,B³(MLéQ›z©$L7J}kíFN3é4ÒÖ8zHrEÈg1jB@Mü§–£ëÙôË&’iÞçt¶kôWæÚ €J×ì5ÎÚ‰,,tYMO,É«©øü ]ÌïˆÝ uÑïÙq•&´WÐø÷0õ BµÎ• Ío~4Ⱥ2E6/8Å‘jÑ/i¯!ÇÖzl;o‹ÅÛb6ЮthMq¨=g‹K\ŒŸ Îñ¢Þg.| „¦ ]õ-V—˜´¯“Z¼æ¢¶š… X‰5E-PôW¢+ÝsoAd#HK';P*rþ¢·ïÜ7~S-ŠÇìÜ}Ó_WîÊÛv}ÕØ8ÚÐQl‹aNçÊ»l®šÛøÂ;)O'ëBÕoFµóéüæ±!C BÇ Ö%å(0LQò2ɘW(rñÒMó=•˜L²xV(¿…IéP¸“€4“Í‘ŒÑHJç@Étì €Á“;‹ÌÛO¤ *ö\˜BA°þ|>Zé7®“8¦‹"ñõŒäx>"äáˆÓƵ`ùÚ¬¹‡¼²5ëËÕ!‚ÎÀ¿ È·1 —¦²[5ñùÌÒ¾ò’¶º;Љï(NÈõË·åÍ-ò4 Õ)öû/Ù Wµf1=ÌíÝœÄÒ_)¼HXwÝËZ¤¶éz²¿æßr®iX4§N¸í>âp]çK}­–l^NKóŠ×D¹À„.²¾MítÕ0°)ؼÈÚ6ÿ>¿»VÍ}GýçúS]CM|‡´´ÀRœDbÒXCKµ¬Zo±ƒHq±Â¡k”•$û®5SžµM¹‹§ÜOv÷}÷ñ‡ÞW½¯¤?;f:Õû%¦Q²*Î"EíD,`z áX÷"y®¥3ë"ïD­”XSDf)†m8/µ¾ï.xµ¨ŠžY®,]®á´P++wØld?]¿Fæpqâ+è#Læ +ÜŽê—QB¡Z+rÆ1%Ai5×|MÃ|ýlÇŸñ¿  Œ»Y}àÉGºiXèÁ{»¯û¸xԚ飻ÍÇ¡ lBq­ÈÑÍiX Õ“Ì.åÌdjÖV8/s:xœNF¯‡gYz Úp_‘WÚ€.¾ÿå`¯xû‚5ñAޤA`¤·VjjŠÑÚ” 0žZ–G뵦fÒÀ‚‹¹ô«ªÊ+yà èô ²óû„e¹.<”ä3ÓH°,–ÜGO'Ñ•ò@VÒ;Œ¢^WÑk¶N‹y#{ \Mzu‚íaË`}‰¡ž¯_ÅëŽño]dZã®èÑAœ™KÛÚý’S>M©Úž“à}JL,¡”kahá|,æS àºbË´\×}ñfpömøa *j)½“HéX Â_£;£‰}…~‚FõŸk$Äm]#98Ä\œIÉ,öÔ_õ7‹‡e±–ƒé„á3é9ä¥"´¹)ñ fA è-×ð8…ôÒÔ¢˜>¢Z8KߌS"÷&mâ\œg„žØÀÚDªÑJ]jź!7:ÀsƒÖ™E1§K£D ¢^±þÜÃE˜ÝF7€¦I[™aÀ¬ª$mKGåÅ!hH;ð‹A¯ûâôìâxØ3£ì :ñ²ËÌtf|*±~!wIvŠÎ„?ï+ÓZ#Ú•àñ\ˆâßB/ù¿v{ù?®z×!{Á„x:^)JLXyù€¶î.­‘ÿ SyWŠ(‰ù bVº±¹Œ1R£%а˜`Db%%¤îô%̆Dáß –w®Þ·uv·)%ÐV,Hï¦ùdCì5/¥™¯­ \u^B`6ÈV0,Ê$Ÿ‘‘ ùZ-…; œâ¨j{7jðªQŒky 4ZÓ?éþõ`cE̵®…‚nµ†Â^ økGdBÚ1¦–ÒÌ‚¦Š±Ú$q@‘_I3‚=a¨>¸¤‚l¥u3 Ù!5¬˜ã“K¬Ý¹<9¾18ÞË‘úúùX‹Ó}aí}Øe›V-ñº+×ýnýCŸÃ~ÚëÇê ™«”=÷ðþ IÖ2ri[²õ7› õÒ0`²i ½‰B…5‰T Ó¤ÁËew´M^Õí–’"ñ/¹Ä¿Fœ¼þ6DúKe—Vü®%ßýà¨u!@~}[«$4ZØÌ[£í«ÎÇ ðcŸ^G {œ½kYŸÚv2åû½ºð§gfcŠR‹½€Û@…­©€UÒg'oÖ#"µÀ·1GMiU,-{ ƒÖV]Âþ)ÕŠˆßÊÖ¹É:[Úx#L8Žáò°0ËVʨ•GæÙ}†µùt¤ãaYÎ’r«èú·ž+~£ExÅé›%NºHð‡-¬zÓ¨ JW·c{= Ææž‡åÛöªSð$I•ýjtŸ73Ì$¹b<Ã¦Õ ‘×Ò´—8É@P¼Õ*Ól•¶˜©­!à0®ˆEj H­gx0†ÝHϬWE±ûžr¯B±ÛŠ)/ëø³tÜ#0àI#ºÙ¥Š¤ð{zÒ÷GG'£†]M®SEtig\¦ä ¨ÒÌÌ"Üò žÔ|±Õ\7ü™½¡#…ãu&×ÉM²F ®#­·R°iÞö‡§£×GÞzûiVT8OÖ¹4.îýÞGø \z.?jjñõpp7 FÏûíá1˜ð'G’r)*6SÂG u0fq)sÅEȸÅê÷ç $®“D'Rï%—Â6»«zøÍá죽oíív‹ås’‘†ßVûWËÕÜ|JJ…ðÛ…&ÍK å<ƒ)U X·6c(¯‹’êqáÜـƚ½ôŸåš}djO7êñÚG»ˆñž³¼"‚ŒløU/žBsK鸠f<ÚÑÝæì\p›Åî˺ʱ`2Ùž‡RisÉ9¦hl<ýðnñlÜ»Ê@sQÂkc |‡³Ù8)ãfË¢×Q Jy”ÕÞ¶šH­)뚯*¥JXS-R¸×pÊ@úµ7´¸'OV“ %Uî¹Û†%Ÿä“¶!KXmϱr|{­±#ŽøÁɇ 5W„½ûüjdŸK¢„ÒÈ´]ø¸d¢“¯ ‰`|ŽT|t0K1wÅN¡ûv0Uâ²]&xŒ±Ê rb0¦Zq-*É×+/,ÜÝ íAIåò É=AÇ£@jßÀ…jOÍ2@…b± FôÚu5ãÒDêvGƒÃc¢» ÿ8ºed’¿žŸ¾®¡¸ªÛÃð߯øaÂru±÷zp†!·«Œ²•æ ¾öjaL-5 ß#E:΀2•f|ÁÃ+ÕÞ4§É»½5¼O™ýÁdv¥UÕMås ®°Üò@%DÞT¦ÔNš)&nª !Še.A¼¢àY‹æ ²gb,Èšò±­Šµ$$|iÛ #Êe"fRèZXϵió:Ùâì t›J˜§žëãšóeMW †2 \ÙF% Jw‰±å¼Q8›?̤p®Ž‘XÈXj¬DiXÖǦ@ {aùÂŽUÒT$‚õ¢ÉôÂ$<Õ'{e…ܬcKXL@s×ëdò •6ì²ðnïlÙ9arqmÄŸÐéƒ9ôêå`"ääó J¶è®¬—Ù)˜|Ë<ƒ®.(à™{´†. d–§à×Áþ‹$ ש-óŠbÚ/®e†—Þ±›éü*ŸvBìBË)û.2¼µ’ Rܺƒ^ù“>-CÈA®&O§6ñ nD¼ )<(‡s …JqA„™ÔØ3 ôUà+ ±_=²E¦ÕMæÔf*9ú3”,Q±d7èÍ^9¾æ]šmom~òYIÕ²_«² ìŃMÄ)ë·]·A91Þðq–5'ô¾ë!Üû¬ß:oqfA?™%Ô1jJ™Î—¤û‰üÚʺ$úèô®š¨¤8h­5JÒtü…µíÛðr„›ˆùnÂL5 ;×C·Cð6ng‚{¦-MP]ü©—d]ºsîòG×ô.‰z+4XxÉQ ¬è“èBÐ ÝÞlo/ô3ø¶H Ö¶.µx-UÙÙÓŽ|@c 6Ìï®ðjW¯º,¿–ŠPÁ2¡r#`å1¥·y»ÉOv J— N›~#ÆfĖŒÚB‚ëãŒò •І3Ô÷ýRúúe¶¹¹ùÊ~KBÑ<°õÊEâÙ.Œ|í÷‹ïLw»‡Ô~?âÿ6R%B”KKòø?.§pbm³}—µýc;ÿ¤³¬âÁ]Ó=ÄX½Wîí¿S'YúûeãfÏ®¼ñýý+ )” =]ê’ÈûEé¹¹ße[½ìG˜ex½ï'yÿ„‘DT(ÚžüÏšø2cËþ=š­ìßãyèõxðqŸ›zù“%xUx{ãϳ޿T–R@Åzô¹GY†¹²Y!hÙ²Zé€'¤Ú£(Ý3ªÏ¬HïuŬZ- µÚ¬¹ù…¿£zu£gå3Šçܺ®{eÓ›‹q³˜Ál¨E â£îÒ–$Lg…Wz÷º§‘iAï&©ðÀ~ä¤LAŽ-*êR"Ov)ÜDhi¯B Q¿Qü ÷s”Ž››Â7Ð"xjä¦ !NÖkŒLƒ¨v`À`Q¢^‘ÉäíçÐë%¾.ËÞ7„Ùb½L}xWä¸ Åï¿+@‡fééÈ~¬ìÁ^ÁT§…וÑSŸ1x©5%è¯"8Å9èC) W“ˆà{~ï«C0ªF¡H{U­ ø¾÷´Àcfû“<íÉ4ÈPožŸ .Á'ÿÝåÑÉÉ·ƒ³“‹ãýËÝóoÑê˜9,Ô d°n ºZŒ;TÀä_RAA•„)#9ý»/³Ã`ÿÚþ+9–bí5†$^@ê°„µÎÄE?Ór'ð†ìY¼ÅÑm\ãA—¬À†iY·µBCp=3ù… ?¤èÎÓ?®gÆ›‹ÀÄ5Z#Ó»h³ð‚[©áQµæOÂÅÒé5…ƒ™Ñ˹̶ ?¾Aƒ»Óª»uödÛšå] g`‡kØ^éDC5×+?Q®¬X“š„ÞW|ß%B?„yça¦ëúò&æ©ø zX(Bc™›lSt„ÑÌëUÈœEn—¿læ‰n¿LCˆÊ4.[Æõ=fÆBÙ—P‹ Ê*¡¦ú2¸¥¨Â2mJ %z^“Ìc€c´Âž –çKb ‚@ÇÔòâ‘æ)2!XA`Tþ0Ó7xnèÜ#Çt›&öÍ\Õ¸`™#À‚çÓ5×'v¾¼jzUt—“_—^¬ÄÐðØQè¾"€áòò®59 ’|â"‰t¡ÍI‚~tr£“™¼î‰­Ã°…M5»á:Az½è]Ï[ ìAZœfâm›0ºP[£•›Ê†²ºçœ|-ºL¯1>ÞðÓ`D¸—ÍÖZÅjÄl\`Ý^1Û›Rù ´tBqÀc 3À)XµÃcc9—,gØu!ÞG0OñpyFïî%», r”¯¯ÚÓºz{ª)ò€t Î’‘%v)8½‰¿ðêÑ­‰J—˜#ø*‚Œö¹ïJXM¾í¸|TBŸÎ&é%Ì2¡ H;•¥ü›tu×®šè>Ý„PÕ™&ðã8ýæ!IÒoÉ )Y£pÖÀ#p5&Í»¶~~ûœài™¼ýÞ–ÕåBð–æj‡ 9‡L­Qé³´âû•v°„Ýk Ì)„æ]MÅ1’ ©¬¿©‡ǃ? €*Ó¦ÉGkïÅNtç<õÒ|e µÿ¬šÎªÅ«y|ݵ2«Y»Æ!ÙÜä0ÍÿÅ £ò"·¶Îü)ÔU‡ÿ€ì¼^€þ „àF턼1|©`Øû›Í…Âá÷ën›²/ÿG°®Ãcž²“L"xe£Ó£¬–°—?8±@ uôløFØN ôàõ¨èë§ŒtìMÝR—wD†z‹Î¤ŠÕ¥ )ƒË1âÞ ¬€‚+Dw­ˆ(‚®#1ï0;»WZ/üŽtT‡?oyö„Ól C/\_={çµ»ØIþ™Ï`úåðð]à¥Aª^Yt#Ò‚4ÙSÛú:œ¦¿úi6ìÂvà))/ú[áUàEâfk)ëdˆ"Âd gšŠ¯[ò}šîiŽ0 e¬†dXÀÀʇ&åâ{Î wˆ<±:'ý”Æe÷$]ué1à $¾6͵~ž´GãÁ©”Á†ž¡t¬F¦” µ’˜³Ñ{Á²x$ÈNãóG1êC°ðÒH«Œ³k¸ O+O‡FÃ,‹©ë–GPà?`VoYd‰ƒ#d|Õ—9¾FäíO¨®ø•ËTø‚4S­OØB‚\ð€*Rºä”¢ü·Ð„ùDiäO€bIÐ!ÅÄ éà|û§0±âbÑ„%*¥Ú‘›UYÝJÁ|y+s¶NŠ0X˜¹…%Q„Û"üp‰~Á£Z $TØpÞŒW®Ï5ê±x2$H²¼Y—&úCݸ„¼„×t!Î&¡Ô{arác÷8`Á’úŸ=íÆ‡·|p‚aü®_õø'ö¡)æñKƒÿüîÕBÿúÇÈ8ãsHH: æÉ ƒ°™‚ WÕüº$Äö D3¹êÀ&Ýü£ÞU÷«ß½ÿþ÷o‹ñG½ÍMÒÛc;/‡H¤ z·ÿ!b´ì¨u+è!˜›LÀ×ΫR÷v4OÀþÅ)µó¤Nð1õ„òûÙ[^/×k'3qnfÖ¹¹DÖ¾¸¬« 9XÞ]¿3{Bs‘ë³ÍÞLó'éGÆÔÄ•VBQùýÅñá\ ›[ m d65¸é¾.ßÖÀ 3.;.v±h(M à…QÝ£Itíh ظGX·„ÏNëѳ¥a†öÊ{‡%wZIcãÁ\7½’ÔOTa¥åºà CcI°ÖÏíhÛ@§\#SJ^¥ûÖ”L…Þkb6E=‰œE‘ûLƒ<°G¤ÚìÂ-Zwû¸JÜÔ𳆞:h`N`îפf‘¶ƒó‡2I¢pêGL î)C‹$öQÉÀ°ÛpÐÙÝŸã jíÍ[@¢¥TU¨ÔÕ|5“%AEJ<{Uë~õaôCJ¿kü+••1Á›ÔÉDsONéÏåpòÛ­#ò&'ݵ‘ªúÁlN*K$å‹07Ⱦ¥‡fêÿ£Á+ª'ÅeÞØfðL švTÞJÓ1[ùð$’O’̺D¯†Ë2YgV„Ї«P¸•Ôѵi¦x|Ëå ¥ÕLýf°ßèxøP™|w8zM êáèžôAÛO袉ÚcJ4kØTCì'_$›†ü‘‹ÙÏž¡–IöQN[¦§ù†QPÅ &b¶ä£ÀCµ±=l¾ZÞ¯–OfßøÇ¨ã1‡—5ƒû‰ÙX›ÊQùò˜1û`jÜ v£B#K°ƒX“^šJâe!'Paò$0ÙŽ\É,)›A‡`«F&ñ¥»vÚ(IY‚øxoäBØøçáÙÉåhxöæðx0ò–ñ¯4ç°Pš«cšó@A^ïdY±#ƒhBgÄã€çØ™_áe¨½…*ÖLâÃI½-á>‡Ë—C6Ê·ÚÞ¯„~QVž”xóÈ^ž O{Ã7ÃãÑåÉñÑŸˆµ¤gà’sIÙ: êv·êÅT…yÐ;ç³ShxX£iˆ:~ø`£Îã.Z@ Hµ¬œ\U¶KUË¿>:ÙeŠó„ÊGð ö…ÄÕR‘H`º°» ƒ8;8ÓH|PR´€ƒæ¤Ë#àGžae‰ŽëCb}Ê h-iTRË>®W‚†Â‰xÊèÈ;’cÂM¹,î2彥ĚÔ•/›àË]Î]Hµ|ò|a2wQÁcFÈE ½ÎCÿ¨Óx-:ª§ˆ¸oëþ¨ÃØÝ˜¡·±oäz-ò…"¶š€]ÄM- Å2X)#@æ¶eIi3ëŽP­&v>3*ûy?Þìe#$Hª^$ÄC¾WðßU9Ev:OfÃöBz¨ß¦ö®IR0;]p¹PŸÈ«ÑÖýäÃý2-5¢h) âu&ó»r©ë^«ìz/­ð Ö ŒàS l6 )è^U _sñõ9`ÁNÝ»|æ5C˜grÕÄráŒ0ºÔQüKº$:‹)& Ì…£¾ÀˆrDÝÇ’³ë†,€jÁ˜'z±Ô=#dȃh`ÐTë„dbÕØtš­clïkñ» •; Ÿà.ÔM°—šûrMU¸ãBAn0¹Õµî0›mc+OIæÃNˆèBBb¼ãdLÁŸÍh¥…V+5B¬Hçlr4E°çÆÿ fÒ0½("{ £™|uwG!þh>ÍE‘kò¼“ß±–ò$ֺúéN€åp¥åްäm»Å²?”ÂùŒ®\´z¥-ÏßÂæ§bøÓó©—–ãGãø¡aÚ¦=Ò¼ñ²îšâļQ˜¨Ÿøê3=$Ü$òiO}´MxÀ ÐÇë`„b7LnELVKƒ¨µõÒU s^E%Þë Õ®l8+ Û%^Ø*MkÕe5û¸úNAL<<3V…±Þ%I)m„ɧªuk’Þ“#O"謶ö rÑáX*ÖY_¸¾Ï)ª<+õ9`@ªëœiyL†!ÍIeb%s‚˜ «eNÐ\ Ó0X'9€ÉN…nÔ¶£GÒ9ÐCSp.Ÿ¯bÔš¾æ¤“É¡„ã«…@ç™V`Rqy aBŒS§ÁfCÄÚÅ(Dý®våÌo¡Œ´ŠE™-§ÆîfG% © cò+l{foKU_jÉË~W ƒ<-pïGËÁse)D$½E|*‘™Ý_4¡jc2ç+¾>@‚hrµ~_Š]¶f%Ti"o¶¼BO ' !oXñú>Ër 1­ÛˆÓë –šÁÕOφXYñŒÖ¯¬ƒ ~¡èþ-¥ ñQt^äô·!Xˆ/ 2æ«å.ÄIt¨¾[5Ñv“Ü8M]ź,ÊêKçzìuÐÙ¸rªóxVÛA†U~dï༜Õw+ÇNQíÚB%9¤  Ïì!7N=|9J=rWÉäÛ¬§+¥LìnŠi1ãD®|Ôñþ—°u€dkóR^Ùú©†Ç_^Ûðï“ϲ'€ˆ×™¶0À‡Ç‚™“Þ¬ñF7Ã(qÞßÝ]1†D€n?œÛN°®Qê([Eëñ‚ý\ÎVa¼ýˆ4F”ñ:'›RÐÅD{ W<3°½•³ ⯷.—ˆÕÊÆ|1¦ûîûÕ’½w ;Çó"ÇAÒÉ¡†p¼Ô¸º˜f‘U÷~Ÿ©™hŠ/Žxƒè6bo8,ñŒ@3 çDÄKÑù’ä$nî,×´@´iòŠ9k˜=-|5¦ÃCŽ·dí [RØéA‘äÄf ­bäÈj\æzÂý€z ®-‰ €RÁ’õ q€lùPÿÉ> Œ2q»˜p\É ù2®˜LÊë’ó`Õ§˜3²)—'›_®»¾1ê]‹Ž›œ8SbT—RšÊŒjà½?IΎʸ†ƒæâϤ`µ×ô“H^D@íЈ.\ƒ Án=ºrÀÍ^›ï  SÉ|"lmFŽjñH|‹æ[ÃLHðýø=·1Q©ÈÈýæ™Byt€Š§è×6‡ÑÆ€AK±~5 ¥6ö<*ÀI¶bQ€ÿV¨ô2¹bνÔ0Êö©›œ^†ŠuÑ….váÜWÓ¼º%N¤I†í0Å8É´—²~€'Z™ Hªß¯~UG£á6L< A¿úqöSíùÔʈÈ{á§[øÓoxU8Ëu}~ù·vRÍ´…±õ‘ßÑ7ñëi‚æ.iárm Ü}tèd¡ç­ýÓÔn(YzœN)„8#Ðn&ZüÏŸÌbÙE<ˆ;sÎçæ0Ä¢è=9×qÕ"öìW;^ Ùn›ÙÞj!€P ÂÃåBŠEáP·aØÁœ”ïyfsÞCOC’%fãºgJ—©kÚDlq¯«Ë»W½k €é/ó«ë/;êáhD~µý«­_m¤Ly‚ˆÑùò£+ÿó«¾ì¨\ÿ&—Ÿ_/Êû%žÇìW¿ƒqý¾oÊœêì”FU¨Ôö]©HîÊ¢¹IgR.ÛÒ~ÁùwþÜ:Ø1ÞP´‡BJkˆÇÕø[ùCý¢‡Ò¢20I¢þˆ|U¸Œ"Ñb›hC9'r ‚c÷ J,mA:íx-g‘¶\£Ô!9cáþΠCoéIóÅn/¾¾$u¹³Û!EÌMòk '¦£$\0üºÿ—ßù¬€v”¶Ð'gšoJ”ÙeÕrzÖ5NqÌ>æ>Þù¢ºKñþd¾=½7(Íoú¼K¿ñÀ ˆø“ ‚Ov¾È ¥Œ~ˆ‹œ„&–ªÊæG7Í¢ÁKÒw! ©@€fÝ*hÙjô|õGª‡°'꿦ÌK‹þÍh^êa…^c>¤®„EyƒÔÄU˜í5é rMp93Ü•à²?\¥ÓbþA‰b‰•\g¶árØÉ¹¿\¨ïQÉ Af ‚-u%Ä­Ä’á7•±`“€:½ §r9¿W“.?6 §n—ýÂ켉ö0îªÇH”Rp¨#²]ã¾ÀÀŸz»‡RˆózýÓ:E(œ‡–Ùz3»(msEÔ\–Ð>øÑ¹P&S!þ£àöl\ŒcÑÆžôÐg œ4Oûð£áñþp_zDžÍÀ.&©×œÈÀÑ̺eµ™}Ç’ÚL‹Q ›|9œ6N†>ɵ<ê¾!O”yËìãÙÄ#M©ZkF%~)Hì„ +zƒ%µè ¥ƒ¤Vã¡™!µT“+uæÍj®Òl)õº.ø·ÅûÇãñO©"^+Cʦ ¡zè* $ûœÕÖÙ# Ú|zïlƒåµñþü}5_JÜôq(¾'ç L@† ‡øßÿ±¹¹ù¶B)‡úAˆ±c‰ű„Ó<À(¯(P_¼ÃuJf v‘²8&t£Ão€þ1w—ùEP¹:hQj’ks oÐ<-XÐ(TvÞ~X*Ï*çëºÒÐö©ïˆWhÑúÅŠþüY•˘MžOëÛPW¥#8}ôç„¶µŸ¤›ßÍ>ÜŸ€*˜  øa‰Ã(’Ð}2Ôï@ÛÖj³^µ¤/>rlY¯ 7{– ï/o '´ð ÉRJÊÿ>f}Ûÿ*f§Å’®Í=øF%ÉS±c?<6Q? Wå[¯3>^~ƒ¦äÉÇSRT:K[:È »$FYݹ[ÜÃE¨ ¡¢úR®M‡q’®ríïÄŠË@éSØŸô)©øµY"ÉD¬—(}ü‹¾ð½½àƒu¤OÍù5óµìâžØĹä~°]¼Ý^Ñ„¬ Œá?x"œôH Þ‘›ižTLxéùÛbů˜ò`Eµ²~p¨G¥ŒV£WÏZ½÷KáuÄ)‰cÖëz {Ô¤M`WÑ ÌHvÀ ƒ?Õ¤å)‡O]ôƒö¨Cü5©‰TŒºÅPóÅ’'k noü`i5PþÕ8³:ÀÉb0}ßOñù!v2ñoQÂŒ¤á†k[ôB«»Wéûm} kܹ-ŽŽæÖ¸NÇϤŸ­_mw@}œC¥óºðsÔ‘ˆ‹&¢ŒÌÅÞ©2$k”º©Ú£Ÿ]K:¤íßÉäzMϳ‹mg*âÐÚ%ºP[Äì°¢e{ç7Æ€J›ÐÜètŒG‰3༄%å~!=È~\ô‹Íå{%æ%/&yÌÃdSšWþŽÐtj[QcZ¬ÎQ ºžC­k84Ù×^2}ïGps—+BÜ]9³KR0@æ>Ì¡X¡‹ƒš”³P¾“Žèœú±‡Ýà1Qêk If?ȃ ö\°”e'ÇûÏÅan£}ú v‘ç~‹íîú®¯ýÿtÈ<¸ºº¾î¼â£îAxAë82þ™Éï$ ?Óæ.wÏ/þhÊF¤Jˆ¿„ö`x‘‡¬~ ªã4xÄ{°V?eŽŒcO¦Å{)aJ Á$Î> Ú@ ¤—Ge6~(ªÃ¿“› ±"ÈÙ/]2D†8ˆSmTSW3ÁAÿ¹ÑW“I€§±¤3ˆtµ)Du a•>‚Xí²Tðù®*¹‰ñ Áðù}6àö›RYÀuìcaд}³( cOô’87@¼î}eQ|]ü6«BÙt$cÿ)?XïÞWÝ«ùø±÷qð+^бk"&Û_|äÄ^>üôn*!ò?…ÿÜþx§ò14l¾z=<::Q˵ c…ۘ«V¤_.òŸ™[å Ÿ¶J¾—Ä£Á§0XùtÞɬlvú<;Sc}§úk4ýæj;•jh÷-4*~t3›/”øü<ëDi¡”} 8 9Ð áGžQ}œ'„¥Ž &†äœÔ¡ìÀå,üR[¬0!€IY‰˜Ò˜š¾ÐzLˆ k3¦ÆéÒÆ©À=¦ïÁÕa³sƒ!Òwm‰ƒMn®ÚËk(B[L®©†Zw[>s¼?­+øœnªåѵâº4\ÚÜ=s›&^Ó³‡2øÜf¹NG+9i"$Añ•7^9‚ÌCÍÌ}2ß2ÉulÏ&tœ2WÖÁ/“ô?Ë=òç¨à! ¯$ ÖÆ U°ÉxŸ¨EѨ};£»à6@¥ÄD#£ 6Âtð1¨‚ µ‚p._õ=©ÖÎâbmr!ožPžV¬•…›‘_›@7„>jÇ D„ àVmÆvû& Õýݕյ¿9$ !5¹á&åœMô9gžüŒr€ëïžï N‡®+Ù{‰…Ø‹1ŒüÞžŸ{ñ±{æ;žu¯{Gy$«Ù8ù¹¥¢ÉºvhY9 w AVFAS+ö£æN#¹CD>ÅD§Æ®+H7²Üòa k@\ ÄZ2W‡›‚kÖ0;ѺW>5ƒÈ°@d(å:éIÁ²Ô|“i&àyÌZÎܧBܲÔLrÆãlbk§-¹–±ÝÂC%Dç›)Ÿø=Ð{øW¦j‰°KB£gR®£‘µB…R 2J/f}` j‘ŸQÕøˆc#ô@[]8¢ß^ÊÜ€ÅÙM¯{yÃ%Uõ½èV㋞"þÐߦ=mŠõÃz_Ð%š‡‚4»îsLJ'ëˆöµš_[­2Ä¡p3Náªýô iÕ%âUG o ;¬5g‹|)\}ˆDx¹P:ZY†ŽÁ9Ÿ§PåÚðv,`¥Lˆœ2 ’@ò2Ô# óÙÅ íϼgŸeKc„7­qÀ5RŒé Jâ;F,Aì’‡Ô6æ·¡"áÊÆ²&i°<Zvìîç÷8 Ú:Lóë˜òÝøç÷ðê;€W»†_ÊššiR÷!àå%ª§þ‡˜ßNÀ ×pq’`]ÿY\§ëà(ûj¾˜üIM”Zü}¬Hðû¹ÜˆÌ@-€äoÄ•w0^©ÃDDxôÙí;ƒîZ¼ìóë¥cŽT‚ˆáXlÖ²e&ô/&oˆŸf E¯®Á›’ WIÆë@A«>{ª¨Š Óh÷9¬"cUQÒü?^Ôøù¨Hb½ª =ÃíÄ_ä3ø“›¿"5þޱÐ^pÑeó+áˆWÂoC»œfRýeç¯øXŒf<4-ñœñ· ¸,Í6 6ŠqÈ%.ÏûEÛ¢C”´ e6 bößd…î/§£NEKƒ¦$¨iÖ)Fg*–ðt «î£Å 1‘¡mVÙÚåáÑ–)Œ•UIDwõ¶²ÑÆÕM¿£åAä~R! .<³òö£Ë픪,‘*Š»Áôg¾úÄ@êfá²Wœÿša¿ET™íîæ ‹]›‰0¯H¦1j'Læ}^2´(®hü8#}qòa'©í4{ó5f¶£“a«Eu«è:æB[è½Nqu9µ(d'¸æ-ZBÓIjU3 ®ñR>Gòé6HP®®ï«[K°]7àfXˆw” "ÿ‘"õ ¯Mú\vñ…)UÇ­âúÅ3]ém…KÜ\Éáµõ³Æ ZaC±†ÇEÔ#ê¡Wr–“Þ¡‡{È¥¦‰Ú6lëÜ@Xµ¥4Ñd;éK˜[\X Az$DOKtÛPe BÜ›ôÞäâ.³Å‹M(d¦Ý!¶žd8²I¾hsï¡Sùç˜Õϲ'Ì]×nV„‹Ö¢ª ñÄ?øèÏiÀú_a¸Tf½¸¼.^ÖY/°÷k‰‚…³7)…¨*Ür‘Ï*5k$ù0uœÃ•LQòYUÌ‘Aøi;N¸ñ5UÌ÷b±ñ®$¼ÀäÍ!¯” g4ÑP9P):]VâÝÜÜìC(òmqñ«íN?ó+p D´p8i$þîÅ)ù¨ä Ü]Hä~°i±¤4€¾ãrP(þÜ;e;GêSL8’¶§Å8Œe>k{w¥‘7ì‡vÅö„m¹D³E§í€Ó—gµ‡%`'xÙ„y‡8‘c¤ Ã4èãöAgØŠ›_ïÀvx@ühÚB¨ÖUóû[´}ÐväÁåÌ»,‹&´kÛéÖƒØ7IXÒ„~Mc¯aƒh0„M‡{nZ^-€ËGŠà¾PÑä|ü³¼^ŇÐYqZ=Êå‰?–~ô4 ØÑXá¹ÎïåQqIÁZ’" :.ï—‹>ò#?x1wÑX´Åb‘}™]è/úô^…ÖÐ’€ï¹ÕìË/ëÖúÞà|xé­õá™±öU¶ºô Ôh~‰ ]é¼é±L@5cXþ»ïPOúâé7_œž6½ùŠ~Ñ›¹¡$Ù<³¡GåÿP.AFõµ¹äóFîIÖ½¸<]œ »ðMOг»ÿ¿nX÷Þ–þ„¿^Ðß?YÊ66ŸÁÔˆõÉ* ñÖľÀWJÂMÒÃ¥šê*Ri&µ(nf~Ÿ_{qoŒý !V Ä>Ï¡±5;®!J6…a¬J¿÷ÿ}4¼<8<;m¶4í7Ç Â+lØU+™RÌü¿æž€)“ç¹Y³óQìê¤kîк¡búvç™4l}¼¿5¬[æ­Ð¤aºÞñ&ÍbiŸÀ<$cwÂXü3L%˜ß€«Ï¸þ i]0‹òrhBª¹ñi3¾Â{EÿØÚÒ*pä  »3i§Þj‹ ™K Ë‹ÆÁïT•ïÍN+«ÁªRh¿åÜ=[3€`MSv…A,Q™€¡Ðýħ†³mÄÓ· ÌËÁ!‚HvÈ»+ÿ~ä;k“ É苨qi¬\Ñ\ƒrï&†1ò×rà[80 $Ôêke÷‚:E–b‘²SAðµeYÌäy#6–Õˆ¡$NID¤IU8'¥º¤?N*ÝL?x°"š´Kj«$ /+~êˆkx¢§5a“8V:Øç*v¶p!%P²:kðcG$OÝßP•&š›jlÔ˜äºBr7¤Î–±0:j*#BjÎ £«Ðà]zÿO<žÒºÀŽ<›7›—SªÑ§pVÑ„,H³2˜ÇZ°wWbS¬’§NŠP–šžî-«Çd½´ô]Ú ãalœÜê7jòÌ$YÓ Ï½òìšË"“Žæ*Ú4!U!â_ná`é†(¸¼™‘º ´V/%§g³mFp³c¹Ë3¦Âz²p:ørÁ8<\QϘ)GÃë˶ÅOK!‚ŒéÆV†MÄ]­ZQXeiñþžÁ$àâÎ^ ¥¥¸‹jbÔÄîàý‹Ó£Ã½Áh(Ô„Ù×g'§ÈHø<²`ˆËâ龴ŸOHq«Àðêoú#b>ƒ–9²'ÇO™´ä°â´ƒ!ouÇÐ>%B¹Íl_é‹k;~sN͇=¿–_隓Ἀ ö›!nÉ5.fé,n£¾õ•Ç…mÕð6èç@S0«/3ÅÁNx|Ü0ô4PR¡ÂËL±L‘ÜÝxþò˜q‰Ã†a«,Ãv…ðOjçzÃ?d\>]4ž_¯Ô,"XÀUHþä³eš|W£•¤V×ðœ¡w4ézF/ ye$ŽD »Àp&©UìEeìšÌŸªèš‘T4ƒr{ÑÖ3É0œ4Üfur?ñ¿§ärfñÍñ€™Ÿ&ÿ:/êÆ\p6Ÿ0-AJÇé+–úÍ!}ðŠðJã$”V Ф.»Tþ0ŽEVÉÔPt†"ÃQ€"¤qF)æ4VN¨Ÿ˜ý¹8ØÃÆŽúÔl¼ «‹…jDåŠjRǦS ~tB˜ŸQªÎb5ãf-® &;ã÷ø• (Ì0ÚåœA§²Øo—2.-®¨%äaÝ^$ ¼ã1F+EÝ!–¥ÿ¬ÜU¥¯dÄ_é{½ÁäG7âFá‰&Ö„Æš’ gS$xÖ² ß]&ìx A—°mýewh’n(×Bï9ÌÌ!nM&wtšÃœŽ)p¸ZÚMC_Jý%WïÞ‚ó”U{>Æ`KÕáàðx¹ãŽŽ²Ó“óóC J¤„Íól0ÊNއðù!$îM]1‹\h3êl!dkçZ"’OoæÞк½ƒÕ®ïEtÂ0/—ˆáPѬ"mh÷ÊLSBž*Á,Ê!A€B,´>ŠÃ‰à±kˆ_DÉ}ºP žáv·u¬õ¡#»“s±ú+]t†â0m(ÐàÈ?]oÁ‹£+´@0­U|U_×ád fÎG{#ó×ÝÈ~B 3Â<ž³##`ɉš‹Éç ¶©· äŽB‰ëÛSÊú»œˆøÒ4ùA*$R^ˆ°É¶eðXÒÌšÚŸà’‘ÔZ<ºÒŽHS²8¦ýL6§—¡‚… 4,ˆª¦· íB<¿ ÿmüŽãIŽmXjGüQ;rºëÙèõПVøïÁèðÃìàâx/>5=ß7Íýûÿ»cÇävÂwóUû7ôôA³o"6F£èú†9LØ'–—§\ù ä€PùUªÂ0Ñ„º ލH••râg޾kòw†\Á¦|㊳§Õ1¥›ßu fx57crR´4XcMz(Ù.Œ'pçÍ—5Ö¸ 6³óù:´ØjBý“½YbæÔ(ê6³c¬¿¾- uÁø\9|”Réû’d’NwˆJ{¥— r ›½^U• Ô-殾D|»æ‚èÅÒi\»¶=£x*<@)še³¼³]8Ã. ú£hm¯®[ž$»Ÿ®*ÄB™Ì¾Ûµ¤]”…ç¢,øP/ìjQ)œ"ÅÐ –}{„±z,jï9:_CñEY¯åÂÑ›"Ìõ«ÀŽ Ñ¥‡¹!3ÓËÕLeIàiŠ ýžyÄ%úJ4½³•®$OË@¾/ „¶£[ R]„2 IAÌý yÞöy>¦ÐÇ2ÂÍ–cäé„J@@K#ÆkÈ”›cv£(wl4¾|Ÿbù#T‡Öì&I=ñ6”lÍØÇ¿ìlýB‰õ;ànœ}Yûø’œ-ÝO(€ŠQIhlq­‡7:ŠWö£(èÇ/lÍ7߃(œ»½ìÅÇø›¢°¼íôñ7F‹Ç“ÞÞ®½ ¶zÚºÿ~J¬$¹P¢e[‰®»æ§’"5äüäݸ±5r(~œ Ðèñ¤0àÕf\:èÅúFZÙ¾mö$žp_òÙàÇw¶z¯’†¨‹’¬{|2¢(0ø<.‹ —‹s¾Nèp_•ËDÄû/6`V3?âk€½hª¹Òà^@OLàÝ£ºw„xJo¤_.ÏQÌÔÇTû%Â÷éVlìŒ$1¶Õ/<‚ÔÚG©mÔ¦j Æ‘¥^†LöXHF·r¼á°¦Aü+Ö¼àv$ Œ0E˜ ˜­â±!aN¤z7©3¬ÐBfpˆŠH@Ã^”qˆE"Ar1p{ƒ@•¼3…÷DJ©(Ç«g*üW2Å´ ëª1|0{ÇPÎ3p;üÌɽ2ÐÎæµÁ$|Ø2¥ný”’ÀˆA5¢&dÇÞ† ‘Ó¬jõ_XVß@W-Û(¯ùR¢è¿ >7®Ã¡ÚÂ/à £H)–7"U'è%Uqƒ¸ !5{Vªþšˆ6Õ¦âš#lÅ ~qÎ'&$d‘"é”_:1³æè|”Å9Ò¶‰³”æP× XÁ(,È Šgê½Ñvê_}Usm9®.Ào4ûžÂZÉwÎlšºãKò"jsÅ"8`¯¶]^Áçí$©›Ò.", „A—dÔò ]²iè„CÃl¢Ñ$c~­#w_–QÈäiJ‰*è•zeŒLp‰µ/µ-ÁÊWåë €D>«&Xˆ¤‹FMIË䤄sÏ)u~"«sÇ•‘:§ftÂ0¶5ºKÐâæ‰ ða« ŒàtOjEk÷ G»+åÁÁ¥.„;b¨„½Y\t5W-@ ¾ cß[ï¥ \¬`r\¦Q Y׬Ù'<Ò³ð¤‰ʽJÜì&¤ÅG›QeÅäYÇÁ§îw›/~ÿYbqüiÎKôï0) öïÍ#kyôñ•.~7b5A3J4À˜½‚ÆÇ½úÀ<ñ“øk|ÇÉL ’é>&gÊ…÷ «ó 5,â­Æ1­¿NEÈšu\I3 šÐáõE]‚KNfŠ—ñ ›} Í^Ñg…$ã €‘û}ªäÉTg`ñƒX ˜ )‡´/üÂMUlSÆT´Ä÷„.žB¤ ïtæžÍq©›É‚¡ƒð5‘ðzLñø–³îj¦7m½§ SHÚ9í¼ò½`—Úƒt­%¨›†—ú"xŠ”quFXp‹#%›ßCd£¿"½¶ä},ªUM]ªèn–3xZÐu2ÿïì1IùÒ¡Êmõ§„΃¶Mì¤'³Ó[3êžd„x ï š«_WY*7àê—î„« :xõÝ•?äž[QAt: ð½dLUI8'dæ„ßCúm¥É€ÓÇ^"-á“_tò·Åø£N”Ó?F\NœFzâ£5b©RÎÀƒkÖJ¢B••ôé 6 ŠMkÇJ®Ã¡°³ÀFÂIDx"/°Šñ£0™ ´ õô«f¸Äó­õàbtr qÔá¹d'‘¦BæÃ+÷4VD|à=zŽ“·‘Jª%Ð Öé¦{cË” 1¦ÁAÜlêæOͱ=p×¢å 2RŸ#8FY“¤s¡uñÜ'Mv¨Ê(ºÙÇX“e‡£ážBÍ#ÀÒÊ’Ô¶iUV#¢±[Ùë,ÚÞ”´¬‰lÂ..±¨àšØŽx[쑇\¨ø Ü2Ǫ¥›mCÙ;9ÞÿÅC Í“cr’D_EÝP_·þ OÀ‹hÆLp #ó AåäNW)ºñZ¨Š†(NëŠÿapt¸nªŸ5Ú££$»\΂½Zâô\šW‡Úµ¨×ئ連hmÃøî‹´~ÎlÄ™]ú³FC‡î‹¶œ ÷.ηAÅÏÍŠ[]ùZK…$»ì–È|6U^ýpå²*¦“À|árŠlÞ/ÊwoFž!¡_ ,¶ÌÌ 6izÊÌÎòÖäœuXâÚ5l ”³€žQÜ!’M »ÿf¼ÉÛ[[[}i›?„Ìz¦Eöœ^ÙþÑšmlѾCçØýÔk€âhCFNÅGÆr1ef×ÙcEÚ%ѦÄfUªÈÖgj¨Çà˜¥·;¸"د‰É:B.ÂùI¸Ÿd^®VåtìGÙ}Ù Ù›!ã$úxì÷ˆÿ  Ñ³ÁŽ?žWå{þPÛ¨PI]Q}Æâoî×'gQÅé­_ŽûìuþC1ugÅ’JSàš¾˜•#â×jy}aËŸ‹wåuá5ó»«E9¾ñË2œÝLýVߤÔ~ÓÙð‡ç‡'ÇÑ»ŽÀMȹ|_dÛ¿ÍNü6…{gkçS·7¿¤›îuÏûÛßløÏ?±ýð˧/¦÷ýÿþç¿äÜUô¿Û[›Ÿüæãñüúãp 6_þòwx)µõÙgŸà¿ý?É¿?Ûùdç7ÿcûÓ­ß|úÉöo¶_îøÏ·?ûäÓOÿÇÖ/õÓÿ¬À'ã_¹˜Ï—ëž{êûtpÿùgsôš®ŒÝ‹Ã£ýìeÖÙþMt|;Y‡2YpwtP@ýÅ-² Ì‚Ù0©1‹â†@ßC|…–s¤7ØÛƒÓÃ^ÀøNÈö‚ÖZÅq ìÕj)W’‚ù+bRÞxÝ ={Ä6j1ü­70š8Rp³òýÆ´ü.Þwåb>£mÈx ÔÛÅÓ*⹃ˆ`5ïŒöK²Rý½¢²òwà»)á±$Ö·½7ù÷ØcÚ †œ˜†pòuÃäl8Ø3Xyk˜øfè q®*„DËZ¯vç5 Á¤ñ^Ü[ž¤´PN‚ÙPÒÈy¡\—¸íù éÙáÞföòÙ«ýøï*ÉšŸ†œm?Žww½ûë Tdž …ú²ì侘ýáÍù¦3¡Hþ@WîšÑJE"!¯áâ83ø€Ý[o£¾’È1$-w® “wz2]HÖªÖóøäxÌîÑÉÉÑùž‡†ÅmxŠjcýR•_P09„üñð^ãëPŸüÏÙOØXI~‰KÁxÐh(qã±2ÊÍ;v}ctøf˜œBÞçyìH<B‚F”4OàŠª%Û!à¼nO~!î(B ØN˜¾”WÕŠ+¬C*Et. Ë:TïUÑðKäªÐ¿®9 v›Dq(Ó(’e¶ñ–“bùGîx·Á!},À¤cÈ©‹¸M€úâ’KÂê q{Ûzy›(¬ñ:ÁUë¹H[Z[¢#35Žyf¤í¾²ía× ôŽ¡`½‡I¡·oÞhÚ” [`žsJõª6Tì ¡”w³ãµ_ÄN ìÿŠã)` q—¤KY1öPE“)¨êD͉´K¿rùbìüt¦üFgL!¬üÃSvé« íÉ„ä]Ç;MÇ͵ÙÆÆm1½×ƒ¼Z\!ø¬MB ÅÎ|öñ|2éè‰Sk·ÜUqã÷$^9a€úØØð7*üÑ®¦¼ÔèHr¤Z[­ÍH$ìÿZ 1ÝJŠkãÅuÓñ/0ÆQ‰àdH ®RÔ(o,€t1å-¦“{1È[ ÄÈ#U8Ò×ä)yU#ö]§jDAƶ õÊ# ’Jeó› úÖ织£~¶ýü;{Åoÿóèp÷lpvh owÃ`s¢ì'ð=óŸùð9»@øgY±ŽŽ%cµD&Bš*?ÏÉ·‹¬ÃCº\?ÂÐò¶ÊdÅ<ïjt°ñy ìÆ[Ô[HTAÂ,¦ì2Xò7Œkû³ŽŸ¾ÜA±EG•=Nun”–Aù‰¿*©RÄOüU¹4e ´(X’‡·q¹c~nÉœæ ³°ýÙÇð¯—;†~P瀼š!ÂLpì0) SøºØÁÍ1¢twò=%¾l9¡bd~VÿìåÑWÐÁ¤GTåÛÿ'ˆ7vK[æãÎÍ|ŽŸóÑÅS˜$%CÏ:H­SÄ=s X:öG÷°È‘k­ ‰êQ0¢#Ñ/“@ãõf>~íð'ðqãï%Hýgzd›Pˆ5‹Äz@nã-ã{@;&lÚ¦~þzp6ÜÇ“}>Œ÷šNö(²vH…RÍŽ·49ÕiãÃsÑeÛ¢òÎ붘˜ Ù×fz¯Tv„ =†¦‚U 3žKd•'5 ­¶Òü¶è#|+e¬Ý‘›™¤^¥íyQ[…œ‰0¿fmà¬%c$3檜ѳzò—8S®g9)iöd†»yLÉ~XîØ-ÕCø×i9û¾9ÇP!Þ!–Æ“–Ôi¸Í ’OR°pc(-ç_s{ÔnÎ0ÊL†ûàMÕ¨nö° “€8PýhûGo%‚åw´p4øúרT‰¾ D"«™×„Æå59,_I©ã\U¯Å6U“ƒ–¥2m)¦;Qz;ô$1 š‹Š—©$0éA8廃½oÏç¯/÷â!BÇrâ̦çÃÎ騀2W±¾Sóè6 ~cŒDKíõx`$Ê’LÂDFtYóo.ÎG‡Çä‰Ü;yszx4<«_Ðßxë`£œQO»ßŽz"—*–Jõ„hÚ+Çbù‹ð?½¯I¦© S ^‚ PþA@Ü/à!~º½\×LK|HîR‘«š:Íù°¿ëË*h¢R6¿†<ˆM°Â ü>_]-ûÖWïú—¥‡ŸÓÔÓ7UægHõ)»]µëa°à{‹cöàz„ßCÄ›ÓéŒýâô8#AfÚe¢*+oÁ;`ððN )œÊÙê=>¢J²ÀrX½)LÄFIzó놹0›ëM‹ë;È®‡§sÎé„WË0’ÚrÇ1µëCµ\a¦@LólqÓRí;Úx!pfQœÌó¬X\É› Êo y bæÆÔâpa¨G!k"8ým<4¥'ã E4œåãáw^z³³áÞÉ×Ç ÖKƒŠ-Q`fÅpðºG^_ š f‡"Ö£ÈA¿µÐ(ÀŸ„¼*L¨&Ô€Yñ0Å<¤€kã÷â}/žhQG 4í:_,J`P,ã½3Ebéû¸&1ñÝeµq½x¦& åYc[Ó‰fúðö~G Á!ª“È.éÚD4alªÈîQ< ø³!Ì8›sNn¯1ƒ3͆7ò6Œ Ä7r¶wvt3ÖJTï9µ\˪ßtº£ N>pJ$K0þ,®üš7å³G}™õ¡F·ˆ×ç73Hþ2Ù¯dx"ñ½³¾)ºAqF¼ºo6sng¨Œ MúûŠß®ï èæ²#¤¤…$ߺ0I䥑!lÈñàn²Øø<ÿ0ʺP7 rÈy½Ê›smmmíöúÙÁºZî² âç{þóãáQÖ œúâóOýGçY—ûá$̃¿øhgkçs!vôÀ77‹ð “§~Û“7æþÉõ¼fNg«i}é/|÷ØD€DûŸ S#)j:¶Cëšœ=@CB’'ûh&bµCÐlà4ñK{£ojáµMäW}Ú$F_,;œA•˜‰ƒiã1’#]x;!è’¦°5Âÿ»×ƒ‘WòÎõ«YòS˜Œe<]Î"Ãõ÷5û˜&ÆÅ=tv²ó#rª¸ÄªZµ<Ü+2¿aÓ3–Ј$;áªZDÀ.mY1ã8â£ÙDúŽZWrìáçU€Ë§—5{æ² ¹ƒY‡×ƒã}´¡¼•ð§ìhpöõP@ŸÌš|'”èuH!†Œà™B¦€WM-«C?*(dìн§øÔñù¥â0°_0?Cý… ¾…€\ÃÛÕzNüiµ{†•ÏÏ5PÃxãM…KCOÔk§½æ8A¥E_}EUGʽ»ü}y·º£$^RÂÒß7C}öIÞ¯ +Á"REa%Q$qd¡÷ úã¤Þ ¸ÇÜMy“,ªúRü!Êä-æ…2VÅW:ËÅÊo±Tß©  jCÁm“jƒÂœfl¾ÀÿpR§Ê 2T‘Êþ =* o€¯u&ï˗Ͻ—²¼'õÙég/ñ¸|B•;°·£e†¸ÿÒŸø—XWkâ× ÝYðC"]¯ »3(¯ˆë1exzÍÆ€3K$ÅByU8øì~,¾ýé<;žÃ¬h<Á¸Î¬›Þi÷%œ(¾Èå­¡È¢·ûDj ÑÉcOý+ó¼ïT:ÛhëÆŒôþè¾ñJ·$ñy5üüäâl<)ƒ¯‡-µ?Mu?HcÈYdWz<¤Ü7àÄÅù‡Ü}ŠJp\Ìï7³ÓÕRU›;pcÜ:7aعЯtŸ,>§?CÈÕoÇk>¿°U·HQBßicÑY‚²Œv9"îaÏky&ÍFZ~_6{íð%æØÞÊîÊéu5:áe•¼Þž$·ö$á`6p_~Љ«?# €öC,±Æ£p&­ÅàÀéíLý¶ P¢œ‚ÄaJجH$P¶ ×l-Ô£n‹ü^*:XOõJ†‚Ê©7Ý™@›!-aô2@jX—mø>ëbÅ}A¢„YöÞŠ™æ°Qîƒ\Y»aÆ®-\«‹—3÷}yUb6µ2îÏ6$Ò¢¯JÓvÌ’íèþYÛ‘^ÖtrMx3>*Æ=ÎŽnUcôb—Ô9û„¤‡E ÛÓ(ÇøYzžq‰ýÚúG³oËÝhFdƒR@}îÔá –³Ædƒ°5H*_Q‘è±Ø*¡ãòŸn–bFY¸.ÜϦ÷Îã‘~'†SÅn1EÉÎß-´½$›ø‰FÚ3EB§.J…1ö<½‰öð=Á5í­âªOSÈNYĽ-–+tÃ@r7Á$°T$™¤0vˆ.'Ù|*ê°^щ&Ø*æ6pp_n˜¬£×Õds°èIGsG}£B=2¹ûUDÏÆJ8Ç]às(HSêh9:HtìddTRn¸&µò>(Ôqí»é™þHb*éþwe„ÆôŽâ¨yk‘â\Öv@Ù"Š@B®¡&ñvyÅöÖæË-I´55ÁRñM¨Žm'‚\L!ß kÜ%Àa£³€€ã Š‚‹Ž–&%„‘¸ˆÅ‚)uÚßF|R/—ó;¯˜Ü]ˆfÀd3©TpAçH„Br‰6©hœv†Ltròíîðõáñ~68?ž%)ÙG¾¿WÅmõÍ <&ÕÄ«›3´Dጤ¬ ¾óntQX6rÚ¸B9±™¤Ò™q Ñâó›Ï]9x#fʯ: 8Ï1Gâd²Åû&1nÈ{£!õ"„³ofëýçŸ/û<ªk¤ % •ëÓפâædʳ$n?x˜{Uæ¹ù>Ûr+›PÅña+]\p~Šàžt0#% ¢zŠðÌôY€IV§rzc?zsq"·ú†·+<-—.ÒªýïUã&€–Ù+×ìS„Mñ k,{f>†—Pr)4°™uõV3Â%°k„b÷¼±J{6{æ¤pq½-Ê`¶[¦øZ³ÿkr—°cÍá¯ÄEqÙvZ¼gBÖ‘í* ëì:û”Ø›Žä7·ËF!&æ"4¬ qÒ¢Zöñ˜¡~IGðc®ÅM¤KIù˜ ¢Á×gÃSÉÎNβá‘Üê(;ß;;<5&¤ÔJ¹QÒ(ÃM1qkZ-ë ‰‚_Vý|³b*ÕÃY„ª/Ði‡û–J–…˜ç|S’©Bçß–à0¶x=‰¾bb¦<`qSb'hc‚Æ7Bð¦ó6w…ÓúGÂ*$Cs­÷ì+ØÜkÞ :y׉”ç—Êt©<\àÆˆº“¯öÀ.œPØUkÈäÑVÌëh+1*n%ÈK?žŸ÷³ƒÃ£áúú±tK/ò3ŠßÀ÷S˜(IðrjÁ’¨“n¯|ÿÖðc‚5y½7o~@ 8Ä/ؼúê¡Éyíß R“­wª4Oû¿äy[ëlÒ[ÓÂã¦Rb\[h¸õÿ’çæ‡Tár› *4L‘I ‹k©dÄôb[=w3Û‹r×ÑjBf÷k©£q/ì^@UÂះuˆ:Yg¼œ¥¼ö¨=Í@<ë<ø33èˆW†°\ð4OÛ }GV†ûË/ç4–  Îtpu;ˆ™ÜÁ ·J0Y‘_æDY5n©¿‘ ÖòVÉÄ1HÌ¡ZùP€ÑîƒôOâCÃk š ´‡«:NDSQÁøAs×Þcc dÔ\$Ô¤_âRšUØ~±('%²ÏÅwŠMb¦=ò³v]Ìðö‡„EFšÐ8”C‘_Òì)™4ž±’’Ê’.Õ•~¶8´M9JÕŠ "hGþn^ŽÉóÈU⢩:s?òl‹Kì_wÏ÷©õk2ª€Áº}c=¶¾ñi´º÷‚õï•ãT ‹ÆMàˆñÁ¥!ç‘£’QÝ6ÂU¨ ¹ˆi¾jÝ‚wQÓÝbÓ«±å„*Ùîæc„ú'PЇ߈fèz=NkEÐþ¤Œ×NÂLgtx|>:i¼%™I!ÙP¸PTA–uÎäÅÁOî·ÿ5äÿò ]Z‚}@…^Yô<`¢  he\Ñž êŠMËö¿–t(n/L6 Èøó9aÂû.æ÷ ¨ŠQïQÇH§Eä¡’³¥d·#³˜¼Í¡/º×¤0²¯5uÛAh: »Cñè˜ C8޽“? Ï_CÁ Ì’Ÿ¾t¢àÓè…×ס\,¦ÜÊ|P k/q\ƒ>B} ç¹` €V«rY »ˆ± -ÄYž¢ò ^:½y{ó3„²GVbo),‘åÎàÙÛõƒŠî~¹€ K©©‹­·¦œ7Q^«Â´îõèH%Wg°¿ù¼äÓô] ¾)!%i>Yf(ñ¶8_úe˜£è./ÏGû{—þêö€ËK"QŸ`!Q-VZjq­«áïК8Û¿ýío·¶\×T3[,?i~ïXx\NµH€VþÓ=ÍË;Iè‚y·âÂIûÉÄÀ UG1(ÞT[nü@glñÞô!»ƒýšc¿Õè²‰Ú 94ÿk‰HÂÿë‡Ußå(‰nìÎ$gS JHÍW?8¤T¤ßOó%üÐ`˜¸ÅÁÅŸÿœnBɤÅA„f£¡r¹àÃm¨„y²úá<È|9ŸQ>I ÛH|7XÏGUp]~Z³ãˆ°QO@ML¬g(š{.àq¡=ªÈðZ~ëfnóÖ袀ÛZ­XN`T€ Qƒe9¥ggÐX*èã'[ •íÅêž"¢€Û°¬ ¿Sµš£„?ÎÈj‘l¢…|½p.ìÿwökîÿ–ý¯ìß²_e?ªÍ&»þNR3„ºõPh½Ï ÚÝ?Z¢¦&~ŠïÚ·N'2“ßÇ.ø:D°Z¤¾Æ«[‰ÔösxŽ5€|š÷×”©Áí÷slßæ]ò›sÅDL.U Ù\a¹‡àÜ8KÌÁOž¿Â¦9B§ä|6¼—¥Ã1œg °Ù€JÐJ&œ2ˆCLëèäñÏŠª“)Ïe‰µ#œÚ†5yäÒtè²£àleÔ,µ 5’ÜùG¹ºþk\ \{,ýøééöá­Å̱¸•öœ!ï½>ö„(­ß7ZjM§\Ó¿HpÜÿÓÉBzÓÆÆÆïá3ÿŸÙG[^•áòð“ü?…1øÏŽÙŸäI8xÐp(ŠêsYÑ• ÙÌæ)ꈡ\×`äééY*Í̤¸Ä¤þ^¬›ùJ\ÓB²Ld3 ‘è u'"&zH“v9Ô£ ôèÄ 3„ŒœBÓzr~>ô;¶­tEŸŒ¤ó$ õzCÔDj£bˆìŒJÐO~öJògô`ôÿÖ~&͵î:€kŸåÄ®/=­*„:\~ã¯å¾X¸úBe Oqò86™ˆ ë›/2@DÁB¦–»Y$Ú2½9Pà[`eŠRªòf†¢ì,Ò]àm­‚vÂþ ¦–ì–thh<_Zä¸j¤¨¬é¢e• ­ÓX0Q–ŠHÜǦu>#«‚®vU\µ|@ªù@«¥®!eãŒëÞÙJ‰ÍUøäú59³9?Þ¤€R|RLJÑjúæÖµb‚Œ{L§p3bð!4ÁµÌ9]B>¼cSµ¤zB‹Ã hDhããŽÄºDDV¯ &Aðoz‡ðæŠã¹KYwÒáG¨)šÝ§gÇü½ûâüÛÃÓ^L÷ÊJÞî.Xð ÅTÝAÉ+7_㋽‘šU|Ò”›n ‰æ~cæ0‹¡TòÄrgóE,MÞ"¯›%æƒÌ|P,^Sy¨£ß|ˆ–àõZVL°ùÄnÆÂ`&›š/Æ,ì©ÓsV¿ ÒÝv¼lzøCy>œñíü¼[ :ùማzÞ=ð¯Xh‚?Ñ&ø'áÙßž±t„‹-[?Ì/]U€ñ¡^3p>àE»ýš#-CŒwæ¯í+ô†µ gs~@ª—®„ø¸`rÀ§ºsÂ%sRëEn˜†/éíì2õW–¿K:3~裂”¾*ì`“¬;Ü 2Ÿ_yKï“ÞõØ8‘ƒ>‹÷ŒÞÄ|¨Ñ ÄɺÐ: D²K—~â:ùÕã, ¦¨"àqÇN²¾¤Õì×KÄ'—Æ•ƒŒ@‚2h¤ E¸ýûÆø>ʼn¥éÂÛu )Ê2‘ý´áùUñÈɘ”¾©¡eä˜r™(p‚ϰò*dfäé¼Ñmˆ¹ÑÖ®ç k´ªHë!ir~¯$;aFHœ‹Al«2Õ|™cJO1ƒAƒ¤ “5ádÌ+².ŸžJý  >\ü}„j4[®„ ›Ôh´ÁSçÅÈ Ñ%DóßþyèB]I»`³l\©†ëP¶i£>” fë´³£É$wx’p5Z¦l>.”1zƒn…fØ:ju£I~]Xè:Èæ“òðx4<;왲‚}BÜ”Þöm† mië®B÷iŸ3:êQœYF¨(‹%’·!¾ôÈ…nö9&ð@Lßí è¸EX‘LTÚ¬º¾M`Æw¯ L˜Â‚Ó³X<0v’“àÖ†Yy¦P˜¶™¦džåTÕ4nÛί€z”6ÀÄ(LÔm-Íni‘!:1–çùêz¹ œÎlhªö¤,¦ 7@Ò ÅPä²1ª¯•kxågïåÎå’¯ÓÉ!gÀøþ¼júZ"Œä¶n µÑK¯O?õÈ4GMmíË&Óü¦â‡èÔC-²â—„jùÙåã‡NGgÜ”‚´}Ç’­©}óõ%ÉÜÖ§@šP~OÛ#LBvémut\¶=DzèÉç@‹¸3É,ÒýpIóõ̇›Z3?ŒO„}³“hKÆûUŠGþ'jŸÅÉÕÈq]¦n“ç¡P›â‹T“-‡ƒUÚüìÌK“Vªä Y µíÅÝ´?؉¸Úgޤ®†††^ALÜÑ™/¦%* ”W@^ ¼æ ¢@HæB‚×#–y GÈ\ñáÖwH_/-!ÿ•ʺ&¤ØòähéF_™9°êK„*)ý4aM#Pà¥uªzu•P(#u°ò1}ÅwžoË4c§ˆIúW…¹iÊx÷6Ï×z–~ãÄš Œ-‹¤aŽ…F ²¨ •ûE¡ZõõÏ’o€uR(SCn'®‘'›Ùþ*ý0Bì4B,ÞÑ"7dç‹òi¬Dcãc}–ˆ‚V‹(¸~D5Z.ÝñêÜ%ƒÍ`öÆ»GœÑ2ݛ٠Ι*hÂdQ(’† ÙNTõ«•*Ô)w'Í”¤ H`]ÕÂ{Ç™•cOµéñ²iòuK+”Kqþ4sµt„è†k»é/Û•¢vˆñ;öb‰›^E,yK)H’9e2&Ý›tüœ]“wŒã7nÙ+zøƒ2«Žw\'øÞ˜tJ”w¦RžzI²Bp« úTsÑr™j0*¹¥ê«Ò,,>P\–ãE3o6êÉ‹è"•DhÌ嘌 0¿]¡T› +“Ô Ð$¸þL0ä0O¸3§G:=ÚK4†špºG¦Ì°#J)=K'B+%AƒåL¥pÝ©ÁÌïk`õ×N]×ùk‚ÓÑüç^7 ÿp­®hl2åЃd^'1aT‘kÒÐ:øó¹,ˆ‘O­”<ä«KƒÈhÒã=$¾³„ )Ãu:Üྩ٠iãàí¾ÿèU(^ný™†ü5úïïtr!n2ál ‘˜IÇËè± Ì'¿¤-©¤V à§nK‡ ºúXdljU©r(QCV .d?êW.Âk­Yµñ†ÉºÝ¼×½¢œ,ÆHeß5÷~Ïoc‡?Ñ•·%¼Íÿ²óWDyâ¿~g~þû;p§HöÝ K‰‡(àÁB™¸Ã,‰Q”Nkà%S•Р3;n„Jù´Lñ/–lÿq´åL{¿õW*¸á?}çQᦵ`¢ùãóá(³¼*ìkŒãrVr ÅÒÉ ! §a|Š¡;ô ƒô•¶¢àWL5P_Ôh¶æZñU.T UÓù²b$Jg† ¢xÿ``|LëEo¬p¦2Õ5ËÔì)™këì©÷ÃsÏc½¯YÆRÞ)Gµ¬(‡@åcÕw:… "Ò”8HVéð*×Tz9YM£Jßÿˆ«L£jR‘¦û3_Ë- —py n¯1æ4óó[8µv…­Þ1Òj‘JâÌ¿žß—*´„³Òhüë7@ôòÈëÂûKë좛„UI›qÊm̧‘ aq7D1 Ò<#ç?:ŠÊÏ[Äéú­S*ÖxmØ›Ê@¡Šúâáké‚cd!M¿ÀÃRKdíE¼íqdAO § “7ÖUÐq(_Æ §P "P2ߣ— ’‰fC«»œŽ¯‹'1ºÖë~®¦«½}A¸”/^ ÖÈì‹ek^”ŒN ݹӈ¦LP6¸¤Á™·5¸ÛšÞÍ&íº•ÚØ®®MâD¹à…ŒßCß™7Jy½‰{P™¸¢–Ô8i…ÌP¤0É-ñŽp´$É ”E§vˆ$ÀšÔM±¦ ôª—ÅcxI­%¹Wù"#zÚé¼jê¿iaÜÙ«fâ7þÒ(,{ù˜”ÔOªÐ^cv—õlˆ‘¾™u©›q9³%”;/1ž8«¾™Œ†e°k‰e 0áâv›AÝ"Ý1të˜y“‡qš\賤}Ü,½'Ž‹ôÖ½/°£KaÏv·ÅóOÆä(\•Jï«bù21”z~«” åJ#²›HŸ‰/YÊø…žZÌ|?/”L5ÍÐEÊ-oè@²Íý44>:c®œBõ°ªQö­½ÊY3âpD*?¬Ý‰ÛÖhƒ Aé!£B“1Ä—f÷Å›ÁÙ·½¾&ð@´Óu_Œ^{¶¦@BÒ~ÊÀà ÷Ú0\yPÝ™š&›òy+ O‹„¨y %S?%uñŠª½ÛðŠïæ«J:ŠÙ.ñ´A笲î3À)cÕDgÆÐähJ\û±S¦"zw+[,B£3Ó¥&{Rý4JÛ†¥v2ü›&P¥+b~d˜w‰É‘‚ÍA] D#«¼Ic­tÃ/5^—yY‡™™Kf¬ƒô:g®ôª´ºu¸Ôú³;Øûvtæÿ§Ö%ÍS Èd'he†.Ö¶y7ˆ«Þ!tŒ|]ï¾€ÆGYª÷ àg#(0€ÁîØëg]dWò„Þ¡‰—£ÀȳÎÕêî>‡\‡y½),èfÍÓ–¬ÉÁWe^R‘QÊ™l:6°—|‹‘ÔØÕêN°T¡-káÐ`‹AÐ~&ÔÊ™ .r~‚éMsƒvCAT|%–ý£aó#q¾tåÁ#‚—¢r>HA¦!yÄï¤<òò3‰_É€ÀdkØQ†‘‘ÔN‰i MÛ’¼‹V¹k/qp¾¥A>ëp ¶B%àl†-Ž@Mn\vJGmÁ×J1SFq6]œþâÅð<;8;yÓPQ1º uu›²‚Éû†,8Ùj…ˆã(²gÂ%].`'µŸÄJñï¦J‹¶+Ú?§¤H Ž[ç¹ oG7(#ñ:¤hÏo‘5H³(a—¨Oás£ÞD^N9y9êpp›Po#gM~ 3³"ðÆ5\[2¥pÎgÅ èaûa}TItX­X¤èDJ•`³uÉåáÙÙÉÙåû÷›LµM?zìøoâ»@!ö ™a¸«A9RCœ£¶)S5Âkñ.Æ 5Ig_)]¹¯Ç}J&¿ax|ñfx6ˆÁZL%þÿñÕôPþ“ÆŽ2Æ>ªn¤ÞHM¡XàÔ¢òJzSkîÅ”ÊY‚©[4d‡¥¶³¢‘®>«—.IÓ‚ó࢑¦tGüΜ…eâ™L~TìŽ`Œpß/HäIå.Þ;èù éQÑC é;H?ÛâßÖP!¸’Õô#³ç)¸]j %ÍË<¡5»…±®Ð}Ú”}æ’Mc9ÉãÓsÖćèÚô0Ñ5ã<äŸ]l'N2qm9Jü› Ùƒ*ÐF»¶Ì%þõ‘zOÚ]ÏuŽIJMT`™¼ ·6Êö;ŽÑ6¾:Íf°Oš¥´Ë§z ’ñ|!Ù/zk'Ù>°Ëé’ô·ÄÖwPÚ¯&MP_5†:f:GPë&;²RŽ¢Ç”ºêµ>¤_É¿W¦Qךt™EÔí‘~œ¦¥æ@XÏiòQìí¢˜|Ùù·z ,>…y°<Œé“$pnkڴлYùwæ¿"l ‰Š[go8áRý3« W>犪z’´Í_ä³ Pœ$o£‹X£™Iƒä"—îTÈÌ™1üﵬ›¸´3¸Ù½öq7ïý¸óÓÇI¹§-†‡Güÿ}œ€Š &‰®°«® •mÐqS6uMD(NaŸNjÛÌÏdº«®ËòTâ´uruNˆÕuÖ0×øö~&¼2‰«u.ìö8TUõ¨†«mëTÜþŸ :–B&ý?ulþ:ýrø¯'ð¿^nýæ7[)þ×gŸ½üô¿ñ¿þ þ ø_'oNÿµµ“}³òzé¿ú«³ÜVÃã=o0ïGß ‡ÇlŽ@òéðìÈZÎ¥2’ëŠpÄ+ µ:ÁË}]X8­ 5ñ¾Ï„ÙØ_Nþ3m…J2eÔÊFTFSÚMáÓÍ—Ÿon‘õ >9ð3àZ‘ϬsþÎ"vu ihßz’õcÉñÃ+,íƒQƒàAù½m)`¥ö·kè5¹w¿öWS 0zQ}0(Jà)“úëÍ_c<*ð[Ò¤°ÇE«—s¬ñq†y £û½¥f§Z©õêg̵êXºµ‹±ïJ‰ìÉ“ #Ve{g}ÿÿGâU§žàíIºÆÇo=:pÝ­÷[ƒžr®~,”¨1q,¬Ö1Ì%ñó"ùê|Ü«=r¢!Ž˜#&Iš ?'ô~®ÿÕ¬nî t³€<]ü=tC£Ê26Ç.Ê9E]w„Ð\¤Tµ™쌠••®q¶H % \ ÄÙ ›²…Û Æ˜óWáTòÚl/7³#0‚iœR,‡©ÛTobzÐ[ û¡0¾Ê&<XÀbS_í¬ÐÙ÷‰ÆÕýêzëåO¦ê[uª@áÆã2…Ieª½¬“wPig÷!DE¿uaÓòÚøßd–‹® ŠW¥¯{õσøQ9i—±°azƒË _ º[o“%MA)7Î ùÛÌÌÅ™do‹«™:ê*ÿT…ÔhÁgÄ"K= 3owð­k†—g˜5Û™7¦¸>áÂþ+?Y~qÍOEþq»¿ó“E..áÓbÅŽ<á4_¦b‚jþ{²ñy)€ßè-Ãö½Eƒ‹˜ $hLÇì~¨™hÃ@\wss³÷£7!úÞfø‰  üÚÿLˆ~f_T¢¨ÿ-ÏäÏ Ïªœ}œg$8!Ú›{ÑEß­É»„Y–!pW}I€‡êqœU“â¡Ö éÇÊ/ƒØÌôï;¨Ýôê«A?Ð9Øib@©ßµqñ%¹:ã¾ã\.² W8§7K계PrIߣfC€çâĽ*Šávxe4"… : zùœVþ¨ÒŽ‚‹^Œ›û:z)çôº\xE…#¶8OŸ±×N=AØX’ÁÄ“ÒÙ~áöœï)üÏüϪïÞ\–SÓè㔊 ºÀa°‰Í‰¢ÏkH&j;8Ür´nüÇ‹ÆãÍÍŸìOôš ·iqÞµÓì¼ÆÁIš>DËÙ²%Wk˜ *.'T|`SÇôtöNÓÍF¥ZD àÉ ÊéOF¾ßN#"]™"¿j?áñü©W—Næ¸ÌÈg 52³„u÷Kë÷è¤|Ÿ9³^ãpXup.—R™y[ü‡¿ßCÙÕ0„¿¯æI¶¸¿ˆôZ‡IIz"œ<…ãÛ>Næ4Š)¨›þ„<)tFá’–|{ü wÃÿÅi嘹 &dÔ¶õBG9.ˆê2i»±â1>èó)­`7ÑÏPy“g+âþ½¤w8|¨C`­8)åT~#߯ wˆÞþ1|¶$M“ŸeGÇsHzK÷d¼·€ô‰»JgLl#³ )3RI‡ѱJ”›î˜—eò2T†1¦†›„îOEuR×Â…ë‚uC £dÙ){Í?B™H–(~B×7~@<®¾99’_¼-’çáÓÚàð©P„®ÇV´ÑÍË´òcrˆˆ'ìŽÕÿ;(/× Œýbùy¾Š¤,{ñ'xi‚O‚ü oC¶ãa:Ø}à÷]ã×?„"rlxPðÙZ ÄBC€s‰& ‡ƒ«5`dÚ€ŸêD!¹.ûÜšivr të ¥ˆ´d;™ŠæOÇ%‰>°?;W‡¯ŽGœV0º"¾n¥‘b× ùKÕmÃ$Ϩٯ©ó¯!M f\ÒXi{ÿ’xºb:w³Ì¹PMD¡2h±ÓÜhÑJ*î"æ–\¹‡†eÍ„’WG¿€¶ LÆ‹D®… mf›ý{[û¯^í ž @{ ÌtÁÓϹôô„¹>ËñÿØV棆ÖÄ6÷|Õ8÷òãSøæ9ÑSÃ5¥öL|Jƒ/ø0-.œríÓÜ>l'šŠà›ôá)ïÖ®(Á¹fJj†:ä@qö$ú+.ÔçÒª„ʵ5ÏjÄ÷Šã¢G[¦YDä¸÷ÿÒ/úǃoŸÝ¹/GTTp^ÝÙÈ—3´¯[—@§Ã=Þ;¦«kýoé»VÃ8‹ðe´¸>5Çs6acJüøâ4˜âÔãâñ ú¤ôÂeyRp"šC×j¾äô*CEÙ•-§gÉ 5†)¥Ú -Â! J÷¢T¥Ûõ5þvdWÆÐÿæçþ7__o!ÿWÇ_? |í‰Åeµ|`’;B@!ÕY.œQ…/jäÉÝ.¡g®~#z_ZÕav@C¤‡#óÙ%#ˆ‹›³òÁu¹0¬ÐÒqЉq™A.âyqA¨ 7´ŒÇ²Žuº Ò­ªPS-–…òþ‹÷ˆƒ,íàv{̪¡0Š˜> ê›ñì]L =v±2…üV_BÖU+Ü™ß$¼è8&EÜÞÿèñìž‹L`"N¸†òæ"ôA_ ýb®!gBô‡Aó‰@·~ MK¡%À-=)!GÎý@:YŒ|ÁÑ;9Eö8 ²±m5¥¢ä럯q\*åõ²C›GîŽÁ¡*ðŸ6GoËÉŸAéøS1úÓ“IuZ-žüùÏ:Z€^ gWá7Mìd° Ý¬Î>ÅÉŽt§ÀB1…ô£,]¸ê¦ŒÉ<ûa4 _xÅŒh±Bøè1Ý{áè•óû°ÂsÒjl*œ“fw‰žÝ):£–-øêÈ×z°”„ÂU¿]“˜{”»· ’ÒCºØ8ÍÙ¥ÏÖeììòN„‡[~ žWCŸÃÿØu· .Ëj1¥ ðN½z þBøp’‘/šÊT¬Ù*Ñøxíá„ôéz©—¼fl<ã‡ß–ßC/,ÒáÔ˜D½Ç/ýQV©™t2/”„zækðÎKª›jIôœÖ£š‚&¥VZ’ÎöÕMTs´ÚÂì8;ÉÇTeNªNg¨']­zá}ø{9Z 3*ß„ aœ-ä6nEN+àÌãµõFØ„K>N¹¥±SŽfF•EQ8@/2 ‹Ã îNÿ W— [bª5 _ŒK•3­ •ž†Ó‚Wt`òWõ‹'ißÝÝ”¤8hìÎNމK˜6lV|î'ñX³ †5 ²™¿×ïñ,Mí‚–F…&’ÊÜaè(œ.EnfN2¿8k÷)4©„¶xÍ‚ô::3öÝ£çû»Cûi;þéÕ룟Ü^’_½ÛDâð£LÂOÌd‘#… 5üÎzçÛò Ã¸ÀSÅææÕxá¤4mCå0$°99L¹?ϼü'ø€å¿ðt1¯²€¸6}sÄ7ʘ/€Ûè˜Ä2¨’i÷ºùÌDA? ÂA˜¬À· u区‚Jr1uùE«ûD_¬è‹…•K$'õWäÈ ô0c:¿iÎÈ–3S­ìŽ_ý×z†Ô߈"K±EUÍ¿·uÀÙÄ{ûïþ#˜¥@ÌÑÒ[”Œ¾#«ÅT™ûc5\®n2ÿ½ÁÆ]}/]Õ%„p4» ôêIcO̘"ß^'r›¸¯¸ Ä—ÿ¶gϓˊ€ÝàžNÎ&Ps5[€£˜4)mÛ2\«EHž Ædd‚„ã@FÅ”ù–°•y[žþçÆ »¾9³ÐˆXÕ0 ‰vúßô ÆÒ ±u„ö§·r싟‘Ã}ô÷"f;ókŸ?´ .¦K²‡Ï«Ù²A˜R»ótQBàCÄŽÏ©n³ZûÇ=«¨ôuw­DÆ uN“³Œ-̰W}\¶a§7ãæI†“2 £œfF7“ºêPã•òž‘tã)µÎÂE¯—¢äôÍ•ndzö±\|Ï%Џ•QbO¯0ÈÁÅ»à ¨ì}Y^ˆVˆ‰'¦@vKY\¸‚±ÿ½þàß‘o]ìv¶2³“ó[ÇéŠ*‘@œ+ ŽBö*E0‡Ï+Ðæ„Ep!ªoÆåÜ1®N1Ô†|W€:˜Œð&…çËý0†b dô°4c4ÿÁ3›¶ÁˆR\o6S‘@d‰™K{”Eb؈ˆº‡<åbÇWZŠÖB•ìë݇z›)½•@¡¬é½t÷ð›­×„K“Aæh¾œM»¶¼ì=¥¢hxg§­÷î=ÀKQQ60‚Ɖ¸«ÐONÞzO¥4n” š?Ø™„:”D,ÁpÓ…mT}tË€C‚´Ò¶d–g 7TG²øÞ7< úñáWá®AVWaåjÝýþ7O~îóЇNAp ~~[þ}p_6©ì_³ª)ô#çÀ¸ËzÐJ/b•ë0úx%àyÞ 6¸¢×ÿSÑM„Ó SŌΠ$Ö} "Ï#$]Î1ÝÌpyR°c^‡m}nÄ3˜ÿM†Ãù1¦qu^L3ô>àS'pK…•C¶†Ä–W÷†OÐ1÷Ò_®e›4(îž19mpˆÿ…è¦Ã|·?Ê4œ®G]«¼ Ô©¶cìã"Qc%Ü 4§åÐâˆÇè‰_ ÛE\eº™È²å°dèdæÐt?¡')-LS“ô¡3,xÏýÏL7ò)¿.ÕèÚü´²~}Ðõù?ël¬·ó¾x°±ñ¯üŸÂ—ÿ³÷Ãö&­?Ê÷‚è¢É6þ£’€¶ÿðzû`çÕöÞÑænþzóèhû`/§~ÀþÏ_¾ÙÛöÛs !gPÞƒ(’ƒ·tÖçMu:ëÙ‡êXOÉœ ô|˜ñ§IÀX“t^¡îÆ~G¡4_'—R²ÐÞe­ŒÐF,w:­I?y½¸óGÉ6[¢áµ ÿ= ÷~‡­A¸pðïD§¹—üõ»1úFṵ̂@ϰ½l_}{²sÊ?ã¼îS_$Wü¢Î!‹ûCòM†I·{ì”þm”öŒÒØSa!ÞÑMË–„ÚBË©„Ï©wp-ÅO¼Œ<õüW¼OÛˆ^©\ܤjµ•Ú#O*|ù¼4ÞA.:Æyt9×b ˜7µ… /³abX Rþ_Ò ••Þƒ•:´Œ=Îà‰Ë‚rÕ@iš †’Möf-²Áá@18mÕ!0›^ÑÁƒ•7î r‘‘Ÿ—ç5ºxfÅ)¢Ì¨”Âj™ú¨¦`Š"}t”ýÊð.L’—u»UxÐ9µ1pŽ6ž*rÙáÖ*ú¶­.––C ëµ@/u•IMoØtî‡î;ËIV¿2GÌÕÈïr$†Ê~ "¬¾Ê(Cωc•6–ÀLòÀÔCìK–½/sù5¹L Wæ€Âª®Cœßïú˜¬+¼hãñçkAÔƒ°b$æüÆaä‰a„ zá$[5þ<ÇχÖ"Ž`R-¬–¤+Úžs õ9‘sR9³:¦ûy¾ùâÅæÑ&#~ªyŠÎ„-†ä¥]¤×ÐøUo¢¾+:dD¸¯]í¢ð‰rq¤Ä›îko¶¾Û<Èï,;^‚Ï>6×2>`mÿ·C9ÑAâýuŠZñíÀÒóHýö°žÆ„ÏÓ“H4Ò@+NR‹µ-é)¢…áˆÒïµ «Œ$hدðÇíƒýwA_zµ³·y´ýB ‡ÛŒÛ¡cœGÎà‹…H1` ¨fT¾5sôrè÷¬h [ƒŠV%©ðâçööáÑw[ßmo}O‰Ìàóá3TY…'.Üç^Ì;zŸJ#܉Mv”[œýíŸ5o{ïÅö ª6hɾñ5Ò¸Tßã2Ln=}Ì5ûÜN[f››'JvŽ–õ•Ô‡'ÈÀz7XIõ(\‰x Íq²µ›uóëáøPq¿Ìï+nB?nŒúúf2„¢È…Ïv‡”bhgDÍCƒ\KÌsg!}+sQQÉpš~?ôò˜k8‘CpqF°%Ììvw6)BÀ×òü?'±A̰NS“ŠˆkùfÕIÌ¢¾±BJs­q0, ´ÄxÖ2†‰c¾Î_qnŸjY“dõŲ–ˆ²v˜F4AÆ—:ò.Éöz–/ž$¯“š0pW eÇ¿nÅ À¯Z´½ttVú(ã4ñVåÉPöÎ>rësí¤f ¬ÄD‰ŒÔD ËW<0pÚ ÆëD]ýH¼É® ­“Hc]Ô/­!‹šf«;Ã`Æ2Ä–ˆÝÚÇ@Ä? 2—ê¿#XHDùÝïÐÁ*ió`ânæ\ïZõUÑ„ìb…HJPiÇxz:¯Ã1çÀ Õvʼº<=[£/„§ò-øÅÉ"ßú1[c1Þ²*œǶ}åíÛ{ýó—ü=hû|¨àï³+üÕw?qs‡ùè‹l-ôñþ½Oý“ÝsŒ ´,0{‡GDÒŸ¿>Øÿö`ó•=¾ò©îg¡g.[1^ YáL§Kü=âýÂ?à¢#¢…õIF¹q–ؘP–§Õ1’ËSÛ›DYÔF¬‹‘,À=_ á¾¤&û½ ëäîk=q5ƒå—Ywð1¬' À(tD)Hï Zô‡;ÌüòŠà€š«5°¡5øþZæ‚xê°!D-5Y±ŠÔ̬£å–AKÕ©“]V“…TH/ÐRÊ™|9:®ÒéÍþ¶A˜ZK€Sr:™l=çQø@ÂqyZqªvÖëß{sôrÌg"ùXh…­ûÛ áéÑ—œêÐp†iæ~0ßÀûtqTÏé{+LkP¼ƒBóq„ð´˜ÀÓ±ZÙƒ~iÔZƒ£¹jåyæ–6‹6ăªIœgT¼‡gšö8±}ƒ–ý$ËÆã|ô#‰Ö‹4üfJ×ì—ù¨¶²lÇõ’l×SW*]»C¶]`´Ç¥ò¼ô âÛW¶ìÅûӦ蟫0)UsŽæ’œ ÷ÊSüÊÑþ?î­£Ñké„„I†ÎóTü?ݹ€÷óÕ‘ìlrášÀ²Tž#ômå ìÜ_6õ8.¦÷9‘,íº_†žåo×gtÐúíªÕ;(q]¶Ûnº‡{¿7ÔcG ìó\0Lº©+*+€ë=ÈhSÙµìaܺì,%Bä‹’h`2ú,Ø6‡uº9äRüxt Ù7Ùs€_cy5ïÙz¢+"è (6yáuÓjö>ÞœŸÏNÏI˜ýµ2Ôâò‡”8Ö{š„K1.œßµ3Ê’åFw´!¯•³¤³8ì7Eª?¾Åþwê]zÃYLóÅö»7{;Gï~Üy´¡ób<¯ÕÌ¥&&+»¸†u˜ »ÁÚD髤&TQn»gôËa¾þ92n° rF9ïrD¥Tc‹Ä|v-o°/87¡—ο„×?¨V zyrR+&< Ì~æn~¹1Ö?Ç»Å{ó¶™S8¬ú¶?-Iø6£#dHá‰ñùE`ê“ð`èQÛ™÷‚’SwB]^„íKˆ+-"ÑqŠS>l>¡æ´#ܯj %,Afèe'ĤV”=l/nëÈËõìLjã ª4Ážç8?£Ò¨-ŽzAxºŽñAŠKJMS.Ї¼–¤wûªöÊ?aÇU˜J_Íúðb~:â9ËïÝ ?|dÿ™ùúZóòiæ;¬—=ÅŽYç>ªâj§@R‚|3• f)tÁ}‰57m#Ù@0Ǭ"kwT†àa4Ç mµçïžÆ§4JŒüPöÆSüøòÞ… f¨‰þäì£O+úÏ|¾®P#h‰\ŸÆ¿{LÂWï€{<<îàEøR O>õ¿¿Çuã£_òï°DûŸ6þ}]/q¾O,-•ß³?ýÍOûKp¢ÂV‡LM±^ÆWá>EAž$7­ß½Áï¨Þ&íÑ”IãÙÕŠ™ŸcB@cÆ^«­<Ê•º*zFþ#‡×}Ì[Ü¢ôGµ¶¸R £SGe øÆ[ü‘1VÑe9u½Ò®û¾K¿xñFU‚¶w[›‡Û»Û‡‡Ú÷Êõ=ž¯OɵcüÍþ)¤+ó,ð4k‚¿_…¯?Í«ü+Uá_Ÿ}6:ô†ÿ)ßä ¹þTýyˆûl? r÷Šõ§áùrJ´_ªôKžÄӵà üéÁŸáËwGwHmùŸø7«½73:!F€–èß›·å¬À{l`ð¿Áx€uúé¿äMÇÁ }¿û/Ô.7µ°Õ.õʵk¼`¯b­”¶!šжŸ¥d=^4À`Ù„Ùÿ·gù†L» l;õ*C¶¡ã´üÈ<Çñ+`ø8j?fŸ°®b"¥³ëñŽrC¶HzKÈÙØMeOŠfaçoAl]r¡• ðqmXòe8ãŸò}éý™•‹o5 rZ”i¹(gˆ³eê"÷ ³È„ ËDë'eîw šqñy<ËDvÀ{äi&“‘úø³u{€/ ÷\èÁ ÌOø}¿OWý€Ÿü¶÷F7{õ¥LïiÍrÝÌýTþŽ•’ÄBÀT;õ§ ryÀ ´ižÿ‚+,Rèó–IgB†ÿa…F6|_—-í•òчѶëÅc±º×±mü,ÑõAßûÓˆ†Q7ÑdóuaÝó¤Ì¬zž>¥çAÅ<í¬@xN8e;(ÔšÌæ-ü5»_±tï’5Æ%Ø>T U°.Ϩ,§<›puÚxüùŸAÒ¬EÓCßâ­Oúô㥖ˆ@ÉFiwÝŽÑXMÆ_ˆáÈòuüÞƒT×à{Äæc"ïA›lêú¯Ëµ  :|Úfx?mG¸ †s|„¯»„ZwÉŠÖ ôʈ˜èúae„±³È›¨÷Í8˜$ä®i.+XÁùØ[È}许Tû½?öyIê°iúÐ]üÏwÔ"ß4Sñ’ €SŠâØs ½CE£ø÷ ÝE¡«Ñ ÿK¯E·¹`ß:]až˜•=mš„¨œ:cn$jh^¦uƒ+k0¯½Íרµ®¥ðаŸr‡­åßË]%0hš9Z„fV*2Sù'„}Ãv§,»e"¡#®n>š–,šlëR¤8€Û †ão¯€ÿXR om¸Ïm_Õ¬ð|AS< —r€WPð,›!”ìIš‚ü=æü6ÚDhJøšÿç8!,VíîhY‰ÑªÅ;¼¸(gCoNÂè8èVh TÜÚKt=8½²¶¾ù°vF’}é¤ð¤ºigÆF<.)^P F1ZN>hT $q)J6Á–’‚zbQ–è­*U»û?¾ÛÝßÿ~ó`ÿÍÞ‹wÏ¿×r ̤‡LBJ†cPØ2÷"Ü­ÅBÁîºö¡-¸r•‚Á*hól-Œrp¿ž!ø“]Ì¡36)&שSHG<§ü0ði—€+Ý!u–„L vÝ@¦f»ÕlÅz—v1e§A¥TwW-3ÇÓë|Tù²"u™LÉ¿¿òŸÖÿÜöÚ@9•ïqci­„ãfh=]îèt’ÑÂ&ÃK£‡$=\ð€ž´o†wÓgíž7~|/G¾—C®w#þ‰¾H§ÏüS‘ñuÖ·8·F0 &êPºù[q3%¯˜Ã3¬T¡B. ­ åÝ[Ë÷­B F,ƒ˜fwleH%ø=Át;d·ÇË·—š¿ç´Îê}@.Ñyìã*Ôçw´,Ïòî„nܫЎcü5u"¹§?[÷«&_—õø÷‰_¼Ýä0w>(ßÇÁooõRD9Ò}xRrèX/VBÖô2¥«ÇT“"vZ]”s(ªŒ€9UEÿHÂÆ(¬LÐPÔò þEw3‹…‚R»Úqd)l®Z~PÑܯ8šb$|Èû,—ºœ³ð»·øçptˆú¿?ˆ³í (ö/´¿èôìì½Ü Ô­p«¡;ï”å¨Ú€9Ù4ÄèÕãÐç0Öù_ÒŬ¹$×J|ý^GvEû], !¢Ð•‹âøb1÷‡y/ýõ ;ƘKJ6â]Ë*¥¡íØã׊ %™k) $ë ŠµÕ ÐÈ»2Bˆ!W¾Ø­h¸6®YÓU«zãÊvÖöhóùîöP¾XL&sÇ(Mcã/þÎbÑ-›ç†uýg e{ïèà'ù¸Uo˜åxTø¶¡Ý8ªû@ Õqᛋ=$²¾è\¿âŇ€®à"WlË夜ž°&Ö§ús å”îðË:4Åî/Hnͱ|Ë‚‚Ô‘ F'$\‡dçí ÙÐr/‹3ƒ¡j  ¯¾Ê¿ä?sÛZÿóÓ(pØÿ÷É ÿ÷{‘î›Ö„ ùáPº÷Y¾¡ŠT¤nmÜ›µ/ïÙŸäR0“x¤4ú¬ x€ÿëè¤F¸«» «R†e-ĆB@9#:¸sªÙ’½¥¨ÊbºÚLJKéi°»v0kl JM!C¹îF@ju¡YDThN 3ûø}%Šè{줶âój?²!ã…H௬6ò,/Ï/Wj©ç¿¹ãõ¨†Cq! sOѼÂM­²€½DÉi„’(‡_µ÷76ÏáŽû7 âDÎl•ì±Có?oéºrž+´RÈ{E~ ±‡ní¸â˜™;‘+éºzÐõ~Eím¬1¸¿M–Èn]_Û“Iš(<Ω级÷Š@E€MÈÍêzºî?D&ÆÓ§-“mPÒß ²É±1±ãV´(p¶ÒRp¤’\%©Môl˜ÊosŠU¥"cÎïhÄ9Ìs8ÈiÜ3Ö½7ùw~áGîý€„5{Di$ì´ÇœY=ŽŒ‚®güÊ”ÿi’¿À—ÿ˽ùyσ{~`îѤ7?7ôI»¯‘ÿWyò±/J˜h£ k’aä¬Mõ\u“ßSä¤K8óÛf?h2„AІ0w³×^ãxB@tŸž»Çc¥Ï£ ;¢A\“D™ÐÈLŸc ‹jT448½ôRÀ-øîÀƺó)JA6PÚÂN©Á¾¸˜c¹„’S¶B''TÛ5Jô½ MT'W¸'È.Wh?´‡›A¼“’msqÖÕúHÐX Ûç êP]ΰvTÎæ.b—§Zçg æö¹:ôRHcq¾Ýè3¥S6¤—…ù=­Æè ­0“:Þ° RûW%=ú€‹É¨^^Âb(·}„ØÀôof¥§Ôõ¦EóHÑjÀ~?åûÉ%U À°íG%HÑsN˜çW’5³-âq.D„_­iû!÷ ­…c"õ<µT4öÊSEN§Žy½Å’ƒä´T¼€7&¾—nµè+*fÚœå‚0«…pW Ïó¬fˆ [©Ú>ÌÛâ3thÒˆ)J‰úH錾º,þá˜ï_E™†¡ +/“ £M˨œ³«‹0•D¬±òD×ÉH†}_÷ü÷!>ú\«A¹7n|t°°8¾âeSë4ž è%‘Œ ËÑLø Ô½Öòø÷ÿ2Ì+7á¯?Ò‰€†êâ^݆c(mÙ ê¡=T<)ÇõEEŒÑŠq¦xõsbôÀÆ!™HÐc&K:+Á ·Úµa«Zø¸žBrt\«¦9kW–b `X¶÷bFËX Sç`K¿–O>ØI‚BŽÍA¤Ìx•Aè"¹Ìm!žÌ1N…½‚\š×Ó© 7èÄôÊ6FÌMŒçB sĹ’ £ïà™nV¯0H㫎ªš6g˜—ô ­üÑZá9lZë&©‡\:‡xÈ2¡b³8V;€2Û0¡Oˆª"Ç%üP àH [#ž—v­(WÇÍÚˆšÁÅ3“áïÏ‹íÏx¢Øïr^E(dDX#ú®gR‚ñöÆe²Ïc}MvAõï õMXXäí ºÉi9×ÊD"MIoOÉUfe0ð(,õ¹p#QYjM^“,Åå…2÷ã­«’X1-$Z%Œ†TDµ›Ò/ƒ[*VÚ:da ¡È.Ø÷ ñ’Éçä=tM Ï¥*Vèòƃï«ç¸­×_Uϳˆgk¸º"xÉÓ©B†9*+¡QwžPèì¬Î¸âp@ ‡U®¤#MÓ³«u ¢jˆt=(L[¤Ç¯€ ì ÁƒŠØõÖnï‘§‹9ºÐØ£Õ×, ×%kΑ™ä¤¼¿+I„®¬nQ¶+-‚^Ã\þC#8s*éýžw}’‹¼`] ;+¦'òLØDÕùòœo¨Nˆu‚… Nt¹@¨UÉå#e[ö“ÕÁñ~ ;!4õüÍËÃ? 0 ¹ ˆššáu—ùZÆÏURiU¸5•) ÷8NÇŠ›J*Îõ£ã²p ¢§…‰¿ïTµó)ºLí‚͆°)ôJS§&fÑB9X$bPm—û…4€0‰$$GäÝfË‘æVg˜<†Ú£<†Síµ`¼ª! ÚøA»ËŸn_ÐÔ8׿1C]*ô‚1‹¥¹Á%½Äz(}žüÕ\jvXyLx-Ýš.Ê…|áûÀn6’‡TùXqÆÃßB×ýosé)n½`„êÔá†5ÃfJu›Š…jì}VÖñâªtÐÇAÆ Äôb²œ, Ä¡rkjnH8k\qn¨K­¬m –ã3,ñ­Ø»Œ¨Áí%=gºÌYPZÊF‹¥èÃ¥’¢ÏT#àé5Êœcn/¹pµë{3õ%DüèÑò&ß•xŽñ‚ÐBúE+sòÙ|K¸ÏA‰09מW€“€ðö5~ŒÒO»Át"Ay£°W Gûƒ³Éž‹BI™mÀwLÃjBøÉ±Ðã2(ìð¼šL¦\c¼6Äe¼c|°l •-º¹á()[,¢zÙëbÖ çÏ·{oÐá„»3ì–)@¥‚l×8›T¯`ý!ÀØó¤Å.'Lý“–cQ|¨ŠÇ;-F;2©-HG Óú3b¯Á[Âj<´jÀGWT¯ß,/Êùà›þy1|1˜YÆ49P])ÌWØÝb.“þXØÓŒÃ•#ñŒUR¿&ëáøÎoé=õ.œ¤ßÖôÅŸá+bú½oÅ™ñ 5È)±»ùjØÝ‚*êÀsþyëè§×ÛðÇh„SœP×qoª’(³8ÜYäÈ>ZR?¹þŽsV ;°1#zÞÛqeW£µr5Ò{‡o^¿Þ?8Ê_îä[û¯^ln¿È_îìn»r*D"RŽ@eSó脆 aè%ùW/Ľ þ;ÍVF?ÿ}~†6ÀEAeŠÎѱf6—gu#–V95díÔµ´Fí´ ©ä?yÒðŠ ‡ ˜Ž-,±`MvÇñ&=Ch…@ ÂT!˨êü¥û°»¶ªŸz>yãØCE—˜º>2ïQš"Œ3*L£;o¬ ]úYPÔitYÑ æ6ƒT4£‘DH*|ÌJnYÄ‹ †7uf]Âw°V¨ýaŠp·°áÕð^x©ù3œÊAÊr9qì¶Óf‘Û¶}¾³·yðS{›FÚ/ç©‘ÕXðZ›½íS·é^\°ñˆ”ä ^= ‹B*lá¾ÏþéÖÕ)\°½JczL,_ém8hwïÍîPÌ¥¡ª)ÞKPÙË3*É O-@3 ¾ë˜¬`!å6Æö=>ˆz_ãÜ4Ô ÔùEQ«ô³ð=¨¸öI8²%Ý] a:ÌwöRe™ävâânšJE ¥pÎ GÖ¶{æÕ Nïå¥&‡7¤%À[Žn¶sÆ[§ÊäE&€z²®´}÷z'N÷1–u¨ã=ê)Dṳ̀âf¾¸W:¹_­€7ÛžàaË,"Q³^¨Þ*q]M½ëÊ5ƒ1nöØÂð2vJÿ¨`˜ü°¦¤mT‰èŒ°E:ñÜzY‰ï ;Œ;@‹g›‹—Â’ Y4C<  Æé±æ_—Õ˜åuAÉ–ÉÀú`Ð5çà¦ñΔV±0ïãüDÌ«!¸Y)óH‰è ÂcžƒÿÞÃZµ¸Ž^‡ÏH4Á1¡tÙ„\µ"—úÁv¤B;`óY!G˜{0rÎYíÍ¢¹eí•Ý äH§%Ÿá™Þ!ØNêgwRfÎ2äòvæ¦4=™^D¯ip8ÂMØ;oOvdÆ!ºDFŒ~ïŸÉöI墋ÞÂ>#ïe¼ðªl‘%ö3}uB®Xë&4Xv†°ç]Ý©ta)Önk^¼O®øã²œ±—,ìðá-齺ä”ÀH§N:uPõ²ZV&¯R[³€;à èoד ¡÷“ãXsc'|ä?ÎVúA;g›Š$zÎF£ú\¹6l¹¸„IÀå8×Ë ¨Æ~TB[ûÈ¡¨AŠœ.–•¥{ÿH5Øú$‹¶BÕ˜?KªÅM :e2ý?²ós4vŽ…¡íÌHà-[Ø.åZâÙ(=­‹ªQ…‰ü¿× %Âô,u!†m¾Ã-ÚÛFxîFÆà1:nÞÃ;IŸ‘³ò¸âXÛ*ÞT]˜Kä+£0ÖHÊè>@ã ­­:DäMˆÎLtõíGÃn“ ô±üÛ¶×Öu l}6æç+„9É~ ©Àî¶O ŠDƒwȨp ý.ëvĉ‹ü“ÅE–ù/Ùjq‘²¸ÈRâbu¸é:q‘­ù/Ù*q‘ÿ"q‘uÄE®{6%.¢SÎ{ö2¨f°c9²qÎŽšK0—‘˜rðexS¾ÑÃÅ‘¨Ï`»ƒÅ[§„õ,z“Êc ©Úžõž;µþ+X˯ÅGÄN –3è¾év6PoÈ^˜¶T]²0“P%ª"ÂÛ³’™É“^!ªÍmZmñÔ'ïu&½z«tüÒÓb~\œ–"Ä`»c*ͬhW9) ÂÊ‘ŽŸvç‚qDä׊Á©IÁ]³sÝ$°Ù.A!†§v‚‰³„µ†ÇÂÁ<ÆÍŽv XmÈß †Îûêâ‚ë©×ˆÁ Š=8‰ìWŸ³>Ïö˜ÀM±$µÛá…ìåC¾14øh†ñ¼žRRÖ9$:pèîš­×­nŽ&#À%+£ÉÄCªãÙZqýÜpïÜpã€ùÄ×®À*½4K* j›`;ªŸˆ öœïg=(ãlHc?Šå •–T8‰—š:¬fñu3úÔÔLú.z”…Z"Ÿ1¦à¡¡Û  ’½aÅ8Fw#ØkØë,S1¡5zšiy5™{ —œCdž¯§†±]·ê°Ü¡VÉ,”IÞ×ìÀ™–xöåLÉ(‚va >ü üpìÒ.ˆ ïG~ë/‹a¨-KÀB»ª¾üÐã…Dèù[xíªŽÒ© ¼ð¿h‘‡¨ÐÊ:+¥i:繇ž,bÍ ó†.\Žõ¢˜ò½ƒ‡0©í¸Ò(a3‚ùñ¸c¢Æèæ(`Ý”‘GA¡(Ž4ÓDãœÀoÁ˜9‘6t€›¤|ާIÎÞVäþM¤£hPUÏ ET3Éin»&dÿ€,¦Tkr€Æ2¡'-?DIo šCÚ‚Êxûñ› ÆýÅIJp K~®Y†»=±°D1ÓWë£È²ßcõÃÐWóñòœÊcá¤@×D­àÅÍ ke÷¨Sí¤#q‹ð‚ˆXéDžóOˆ<#Gßó«L¥ªL9y©#^Ó•º_ç)é£&éA¬´)928ÑÃXXÐzäjïa÷z´î‘3ÅyÉHÛ¡Á‰¦|F®2ÆvG ÈX¶™ª¿N•É^!;wÙ„æÆ¥ƒ¦RˆH_ƒu×ÀΛ˜°n›Á®ÉZ<.Pw/ª*NL.bà²d5üä ÌéÍ ¢ «ßS¡ ÅB%²ž<,D®TÆÆ’ÒZ&´Æ’Þmíïî¿9¶~ÿˆž¨çYô»_´c œ'²[!ÑÆ„RyfiJUuƒw`Ø“/Î^p˜G?r‘%i}àvdÆ£Õ¡«_iTºXD ¼báý ÆaÆnWñßäpý’‘»9{çͳnãóÅ3È0G*¼Z_1²wÓÒÂ9åc÷\&C˜G¸Ó¨S.OuUHæf,=Hà»ù…#Cë¨1,z¹(±¨R¹-FÛ\" ²ÞP왣ԙ€®MªÓjÁ:sX‹Œ“+ÙŠ3à)Q—ö‘uQaÁ¡Íy‰JR0j5ÿÊÕ¾,ããø#RB-4‰NðhʈٺìPÇ"†¡åYSòöGР€º.š Ì«õ§×ÕÔ„kn@w¿`¾@* ú“òC5V»\?Í<þõâ×d4Œ1tE³WÉYZ蹋.¨¼YÅt[ýÅ´šHhÎz"BdÐËè¸ÁVëeý¦‚«üág?œ l˜“UÃä.V·ê-•§•ÝfP ,€ï€K‡¶JñŸ à[hÿÄsÇ‚.šøhZMûÜ;@YL3˜¯˜ÁÖ~šå©Ž äžÍxDtϺ©Õ æåœ©‚¸™ ‚ 4Ó ¬¹T`EQF1´ 0¡àÖÃê8àBÍ •TožâU "¤¡Ò†W˜ÈQ¿'&Àà:nøÙÆì‡ö|)xãp9ëCm£yÛia^Fàj˜Wc´4$, ä;aÇØte²9TAÃú̘îþâ=°y¸µ³“OË¥I}€÷ïZ´Aò}WúÍgë›á›åôCxè³T)ôÍgÖ¿x™õtZôq8DY^‚rLöb5ÏávbªêZåµUv¶´y”Uø ݧcÝ'4A˜s-²×J•:T'œ~±Õ؆q€\zSØz”, ,W‹x±HxÑùT•¦{G¹PåHø…•Á…0×Õ,SýMÒšÄU¸+hí>!B ÕŠ—oâÁÈ8HûåyQlÓÙwedßͬÜYæà¿fž¥qOQk]™€åcÝGÂDý¼R)eæ¼ûHx†{;ûè±ê"> ÔõŠ=Gd°u‚ívU ³ˆLƺ™ÇcF£>äBJðI•3ˆÄ]ÎL7UËL j%°L¥i0JjÊAWÔó€ºñE$ÐþÈœHP©ád‚ÂÉ0®$RÝ¡ëóÅÀ&A+ÿÚvR;+Ž?™Äç4XCÄ;gÓ"Rœ»ÕÞž#Xf–—Ð;èœE„ÑYf\Z”q좄ìŠDŸ ÃË‹1 ³ Õb¹ û€]h‡‹¦à#„ô‰k¼ßmä´wYj²lgHj¤šÈÌ»©˜3)µÀj>.#s½Ñ+Äv{™ë zŸ˜Üp4ºçÿ…S¸>ù¼ç­ó&CÛ¸§ºo w"èšaxV™™“D·’±˜ÝFVúu"ƒ\Ùo"2ì=Ùo'7 ‘ì7”°}Tn¤’Xv˜É/8x¿eÒóÖ>üõRæ(,ôÇr2ª0Ã$Qž¤ÈMšqÙÆè#ð6‘kÆ÷Ðèù),Æß8ûÕvƵÂŒ1Z¤åü¢&–ÄtÖkWŠØÞ¸¤€ F^I“ k7ˆ·HŸó%Îê)¡Pºk¼F©jÌKÄÉÎ$ÛÉE'âéQ´*å!!XàUô|æQøœ¢„i¹Rp!¶„GÄâ´9NJ=ˆ%¤ˆ ŠOÔ±¥!¶Ô±Äàá ]áx}7O¡+ê¹Òaeœ÷oº±µ®GưGW£@ u³ž°á®5—¹•¸ó`›¥5Ã!ÈrÎ ›M­;„Æ®i‹W"‹eå¬ödæ°$¯Ö ·cvã혷oG#®(„¦ämI;:ûew漨0™ÂSX„M2/Ïë¢/ºÜyúñ´˜½w±=±“ ûB},®Bq€Ë“’)‘fÑ Bg6Ïj—™HnÄ9¬Ebr&ðšufD¾‡0W<ì`ªe«`ËQýj³›ÔIbÆ/çè5ÎÚˆ–ÅZ‡eãÙi0èjùf†:—HÃx¹3£sAr x7Ê2‰XbBï{#.bµêÚÌjzÃÌá™u8ÅUCð 5`avÅDfÁcLĉK,…¾ßmœN­×Y¯´|³O°|ѰEeŒìÚ3ñ †Óñ¼¦ó,%IüE75´›÷·FŸÞÂ*zhqRèªÓ‡]¤N§Ox~Í ÏVœp”3MÉsÜGA$W6~Ò2³Ä®Š„Ô¶Íoضo[ö&¨`Qýȯ!¹ó@¥ŠLBûÃ8á™D㬠×ñ†¼äüîTš‘À!¯f“äˆd9;¬b´u2jòÍ"òâÛæ.•ZÝ–2u{1“­3­Ín±å ì©RƼ¦‚š[ðÛáR$©üî†"È[Æ4¹ºë»hT´†s¡ l…òp·XÅ;r¼¶bÕÑÕFwÓ¬VlSÕpª"çbÄŠ¢¨ y Ðç™ËœzëbÃE:¡Ã›^ÅnIhoI|ê=`Ó™:iaþUxÝöí„v·ÐˆR)Ò6Fu RŒ rÀÌI$ζx¼9KBñ¯Ø¨Û—CmÏ.ë£[‚EEêmÀ±š^'ziCøÎfQ7^.¿¬çcºKP—l›I˜6­J0îÓm@-»o ë)†PË ûâIÞ²h<Æ…¡ÜG-ä¯'ó+¶‘Ù!ü ”ˆˆ™…åɸ¯Úïtg*“ä^Š^+8zs¦ûhê÷ænÒÖ°‡a{ú-wÈ 9ëñ3—´D²ŸÔqÈq¶—cRÖÚJøåø+ëW +ôÛ+ûÔ핯Ø^Ù/Ú^ùªí•ý‚핯Ü^t뚥6‘±ë—zš\êÑYY\üºX£$9‹<-¨ØQXåñÚáºF¨lÐO€&J„ˆœÝHïNXË0=–S£]…F(,Óq ¿rR97 ˆõs¯züm„áþÔ¤ ; ëÊÎ ½ƒ¯îµa<åü¾‹\FX<í|–s%¶wD1¹ îjw Ìs¾T‰˜FB§—yîþ¬šñ<ØŠšo¢åíÝ!›¬íÀˆ4Ê+J³ÀìÒÐ\@·q×yì`:‘%L^K%´èøNœÓŒ¹iÈ!¹‡‰ 6ûÅq¦_à;¾Ñi,®Áì×9ã8Sö[ø‹ÕÓ•ýbq;‚”ÝAÊ?1‚”Ýà Î;$q:ÿC"H.v‹’vÒ9yÓî±ì· ‰þpÓª=U_ÎJÓ*öÝß,=øÁ›%HÛÑÅfø¯•#Yksµú•D_bJÿ-1q«p4…˜²[K‹[„˜²Û„˜nšÎ>MdÜbÊn·eå¯ u„Ånì|§„¯xéu s*ÄY=CÆSkìô"Ëä™.Lѹ2kù6ˆ¬Q,yMêˆn[xuU˶L›ŽÌxªL!/‘#CõÞÆ›Ó‹¯æH—ÍVè²g7ë²ÓÔ²¸<•ßzU\ªì/Yˆ¼µYk!n3ûùêÙÏ®™ýC5ÑÌ[Ôç2,b=1CsŠ#p{Z9B–®Ó§ŠÛÉÌ S_¥¢l>öu*ÇõN;AûÄ °Œ"¼¨žšgÖfÅP±áݵ-;HIHkù›†¼ÊvªJ²Ž æÆ¦¯ø¡§F€ÍùMðÕY­r {Ç̪q³5}bÝíº¬sÒöûhZMì9Ñ`|âÏ’/2æó^²OÒcZî^4ÌÒÏÚ‰íŒ_(¿ÿ8à¢6½È¨‰›ÝJ=k³Beìké:†‡¨ 9®)õW“¿9ì!SXàeäsŽ ØñÁ„«ÓòC/çXó]žryC5Ë‚8Ÿ-gï-7¾5N¨š†â¯Âü1çœìš¥LlxœÖdJ'BÄîÇ‚’=ZBÌŒ¢^ËÅïYk­K‚ˆYg€=OmÓ*¬)Ä4t@ód=:±A@²T¥²‹ê‚ÜâP”ï9,;Ýž3بD̰¼ ¢g&ÈFÑ z÷Zæ Zâv#h2›}œz_PÈÀ%L®H"ÍÆÈÙ/¾¬çï³Ù V³*ENÐrrÿ–‰ÌyžX­¾.PaB"¤¬924Kb6.f­èc·e1}йs2Å3V|‰— ’L¥¾:×Y;*’_É>)*b©¤+¢"J†»¨H~ST$»uT$¿>*²"wò6Q刄ë~%o M0QÊÖEÑuVí,ìCCƒ’.+õ‹*cfÃ7KÆ=¨:´ç¦ƒŒôq ²+½·Õã1orÖ¹…n¥÷¿2SLÚ&²”ˆˆu€¼ëÜ×A7/A‡’I½! « ®+L_OߨãíO‡“73‚ 4éU@¯'.eË ë¢ "Ÿ(öà÷eÆ$—ØcW$ôŘ³/Æ}½ð ý©aL-¢n —–™2óµÈ]ÿ‚ºã·Öjæ˜Öa`D †Ñ3eRÖ†Mß}¾"æ^lmCxìIËÍuLE§œ¼ð6¼Oíæ#i8ðŽ\QN„¯Ù)¹›­¹Š¾™µ¿Yb¡q‡Çk±\6g—Èf£ ,„‚­XꢾðC¢c §ˆP„ެ¨ šÀrC3Õå˜ ¯Š¥ºW ch²—bÞ8G §b%#O0_0;í –X÷Kܬä@Õ6² Ú¡ ƒoÑN«”¥³ ìky0’'x»?´XžXńРöÄÄ%Þ--2'ñãÖ¤IúÝRêÒ9jü÷ž¬&bŒø8Ø)Ö–Ìs,0 ÜOŸN É $Ù¿ðv…‹];¥>ŽÑÇ›ïµí;¤NÔ¸tðÚ+„œ†Am%*„|ïÊ’¥™B°yÁ÷ï/0ÙZcîmÐYí ˉiL”qŠã@Y ¨ XˆÂyB[©‰ ñéoxmrÝx~k|FXç— ¾—ñ=ò`rTÞf°›+²å´Æm\‹ ~Œ>³ 5ðOfnì.Ù'²ê«R«¹²,Â4pQ­qØÍM5–+8«"0—¡‡­ŠþÎ匠ù“0–‹°m1Å”bH¥&ƒé ½œ4­Û>Ü^ó °ðe<ù¸ôÄZŠ•sPíÝt@¥eQÌ22ö¸’Xj%*ÇÒ[ÄÕ§ZKáR:é<Ô6“ïÃ4’û¿œU”£a î\BFÊ+YM5xKT¦ŠC já®Ø`qоt7&Òàrºã’ã÷A*Ó‘¾›eÑ(ãL ?\ºož@‡6Eû‘ŒŠœ1X÷¥9eké›À ç,9(£#ØUJñ«aö¦¾¹sr†6‰ý¨?`?ò79\aÕk¢>!ö\fI"òØYHþ)\,‰=æu:ζ÷Ø¢ªuâ4à°Šl™z1#?%^a5 ­¹s¥Ò`Ea6ôš{!åuå² jS=º‘hos$ÆâÝ&Ž +  ›Gƒ&T)Š’‹/YniÌ™?½‰‚vzˆZ5Ö”ÊãP©BÚ:ãÂk²^ªÅ·(vm´{¢Z‘ê: ˜ƒ#*ºáY÷™ì°ú˜ke(Ð}>@ÜZj”¨œÕ :'fÖi¾‚Rð1þ ÎÛµ%MG{ùÖÁîËü.Þ®¼¡;öDTùåŒÕ è°![ 6pŽ9s­ Û.#<Ý s›ú® /Ýá~Ψ€IÁ)þu惘 M^Þóy7"ÑŽR¾à.v„ןÑÃR66AÔt‚B¡ß ÆÓx>=éá 8ª‘i]¡&ÊúAà+-Ö „ -I+'¨=aÓì*Þœ+®ç¨=Ë“9Y‘ iÂv'ÍŒ|UŸÉüPP;;§…éBÓe“ÿp”÷?€_ª,Šã!°™+®@[ˆ^%Á^zÞ<‰­ÒÆÂ’¡Ð¦t0¯œE7T$.f&ÆF$Æ,e“…Ø­"×7æóeŸ¹Nçóý²„y‡=¹>kïvÅe šÙ-R†–¶ë©f·Œ¿k–DÖ´®sP#¶c_c† Ç–&aÕ¡<—#ƒ»ò(츠âùqTQÄꢱ4j²¾‘|N+O ûg†•k°‹w¾"¾Ñ¯á&ºóŸòÓ‘_åbZŒíêî6)/¦<ìIØÜpìè xšßùÖÆž•§Åø*¿ó`@_f„:úû‘D¼Ål“($bô^á_HÔ%vÝEjÔ™údyPˆÈ.Àîy*Šö K(»pçÿ]Œßc%üo 䄟Nà'ÕÇÃ/fŽ %üˆì–©~MZXqþùþé•}îP-N}Ãêè&Zô ¶‹†B¡ „®Ç ]#e–¦;a•éÑeŠÓkã4õ5.[š‚ûÜd°'zŒù¡.«Iß‚¾5ÁX›Mh%‚ÈÌÄÇh&>Þv&Â'Dœ ò$œË;Þ®×MÜóî 6ÜÌñÊýªéÈâéȯŸŽM-ƒbC™®'KT²rz‚ã!QÁC?ÌïÜiÍY¦Iº$ŽìʬÝ=Ù’˜Ù! ÂRu¹»—¡s,ûDh9ûYê>ûÅ8«ìúÛêqVÙ5ÙçI¨»Ýý¯IÁ3ð35ônÃH[¿š}`O<É‘€×Àx7^7ÀI² Òi9+ÑQc%\5Æø:±€c‹R/“z¾p^>ÁQ  ;Œ‹eO‘bæqÅ*Ç‹õ"1â+˜ÌXT?'M0LêÌYõ–õ›Û ×ÖV¢íŸɶB+,û çÂn) ™—œ)IX‰€zƒÒèñƒßÁ)ÿ¢Ë¹`²*òƒ³†.%È}AÒQ}>â;ÓŽpâ&O¡XYœN“ìíCW´ƒó¨ôn·¹q犱0¡\é "R#ÜÑ:ŽÔœ÷3dîØu|ÉÑQý@`BR9F¿ª:túŸ[GoÊ>îvYåÐÁð?{B¥úÑTÙÊxd×—ñ8ñÀ™Qý\kW>Û ½0+¨4R‹âKa¢}À3H¤õh¿ÆyUVf…Msz2Òºü¯v¨ü©\ºcü9[W7J—|…t‰|!7IElÅCû¹Už½U'S|L”WrsÜrª:’¡À¼µy¬SK6ª×qéØ|À©µ.(·ÓÕŠi~ˆ¯YÇûnzÇCJÅ‹jï´‹&9dªzMeWÕà:ÎèÌÊÐõ|,Úyý‹•ʹï·Çÿ¤Où‘•ºƒÎ>~w`ñŠñWó  «,t ½X& cáB¡F€§Õ®(xT瘫Âhg_»S=ZŽ/²Ãæzƒ¡œ½õkrõº7G/ïGš¢÷™Ûå¶D9%ì¼y+lÏT´óÍ–OéZ6‰»€Á R«!{½¸óBPàªEfІ*ZåMkÿé *ÀOþaÛdT‘í³Œe–$MB«g560ç²Qjuq¿Äý_ÔÀí²pŒ„TœO+4pZ®m ö^Òø}{t:Çl[a~d:Y½ÊZH†ìÌ&Õ‡j²„ìXêbkÂ@–ÃÊ1-þ™Cö¿)^tÌMþ§'@®¦wÑâÎG—ÊÜSÊìx[^šOWXL´ùÊh©¸#–$$K/ʧVFį¯î¾ B§Ï=–¡^oÒÈvÇUª÷9r¤›£¡ƒQÑE]O!ÚXçïËò/$ŒRTP’„qÅp¥a§ê)Hi`ͧ¸deeqz—P®ÈNð{w…|“.Ká Ga‹éÁ{~YÏîâ½Í1 y w6ÕN9ALix+è«`ÂÊ`„EzÄá²0 wß–ó»ÃŒŠªµ£$A³*F,B}^ĉ¡¿™úÛ²*É»  Eü l­A7©š`^é=ÌeHçbêõg „UXƒcàäiÇ¥Bt!•6€×>æzZלFí˜%¥Ÿ.ìd½}|J‰íª!`˜Nè.‡Ù¢xO © ¼'hFÚLÀð;9ÔñýYXƼeþQÕô5kQŒØ§ê~°‚”nZÓ#w$uû¦ œÉYA®e¯–ó6±t",'USÜæ¹ _È'QX8hÇM°Æ(|Ä+ÊZI`“ˆo,“ÉH‹„¯1)u¤‰îCÙNo=T¼Ó@%Å ³j“H)0:!Ì ì Ý+æ†X.fÔY €vëf‰õ½ å F³pùßõRüàñqER©Ïõ™(¨t (׀б­º´­º\À%í£|B5¨­rv¥Ð‡p” Ë>qpOHDɵF# í¾GD0Û§Vùœ]’ÊÀY÷HisÕ!\R¹ì9­Éب‰år Ð÷AˆLü¥°P•(ëá$PϼÞ*¥±èQî¹OËÂuKXÖ4¶”'÷M4¹#T¾FÜ$¦ò5~時!¬É¤âÌyâçìG©÷ ($ªÅ“„Eî@2DÐa,ª¦üû|JãuƪŠM9ýVð™HH.à‡u—dþü¤ËÆI1¦º]8Ø&K<)Œ½õÒrX=.æÇÕcÜ€¡uq1ÐÆ?†›jÛ :J1§ÚKÉ&Æ7º!¬ :ÕsÉw>E¡×Þöòï¶_jÁÅ%íü°2ý‡ø8›ÔctŒq¦æ¶Ì¬S¢.©ûxù—RP‘Ë8öÎ Nq¸ŸCrí‚¿ AÝë4¹™=ŸÌ5ng†åÆê ÞÚI0Êz¡9% ¬ó‰]þ«£ÓIÚßêdUq¥@­¬ŒqW«KF62WêœÄS\iY¢ajqH‹ÔOò½´ù‚;‡Êe¥~‡æ¼±¥:j{òÑìôðâêÅ  [g Ee²c˜Ø QR •“Ø,ñ^SWQ 2ެ÷¶<îó¤“çFM©GÓâáÙ^T¨ùÿŠܪ¡¿µ’ö»U+ !:œ4•/>;W3+ iÄäX³L$ûPóT0‚¤»‚™¯á•J@¶tÙŒ‹‰ç‹všlbõEØûËʵW¬-ýîÂ矲ðÙ ŸÚÂg7-|ÇXë,ü¡±œNQ ŸÕ*RÙ™+™K¢R0Cɦˆm|ïÍ®Eh>ŠyiMFw‚ša‡ü\ o¨vœ^óËÒ x Àá†&”ºÐÑTñ´W¥Õî ;½·šµMù ÿï𻼷½÷ÃÎÁþÞ«í½£ü‡ÍƒÍç»Û‡½lmÞ(ÔÿX ν]w^·¸¨©Í›N#þí=ÜW–³ÂbL3äS‚Õ‡4bñ¥W“Ô$l *hè›x~™œj˜ü‹R ÉÌ07(Oó·¥’d’×Ýënã­¤'Q3Á™ZÔl⌧v©i>/[ùÎý}BÝà úPeâmÝ1P©Ô%c ³ =Fäœm;& 4#ù·+gÛOñZŸõqÿõÑÎþÞa¾µÿêõæÑÎóÝ£Ÿòw޾ÃêÎP\Ýdå+wÓS>Ú25…ìÎS&ÔÝ& ¹ºÀ}Æ^¾$Û+ˆ¶ÓyqN9ìØ´ã1°ìe??~t aÚ¡È@¸‚O¯šÜmÞ1Rô›(óéZñ_uüazOµK(kµrïh¥_n· ,±8íà`ñ·Qªë0Å£»ªF|‹* wó¯c.êõ×ɯk‡C‡É¨n—M?[8µãË:/Œš‡)OLª"í˜iÙý&ÃL`†…,Í0N¤¼H˜gé¨7{ñ"›‚GïBªƒÀŒ‡-ÉÝCR ÝÚAz•pR^R` õT³vÇÛœ*) ßq·‰ (E~:­QÄÇGUm©]ñ÷iÿ@k'U€ñõ•›&¶)ðÃ(š<4öÆý´µXC+¤@©CqNò!ÊÁ<Ì{Û|6Šöé°3©pCB½ñn¡ÖÙû€4É.‰dö¡~_ú‘Û—õç8ʇºš4ºèð\kÝané·ƒ…hA¢”© 54 CCe"'œ'v´–Ç‹EZ¡§ðݺN¿Ž‡Né¦RåòŸÁÛ;r80zPõ™’¨åT§ÔYgZó5"<ÏåOãEMÔ¹´¤wf7ÀÜí¯ úkkáïAp½ŸÿtgýÏùŸîlÀ_ÿ|gÖÜÍ¿B¸™Ñ¼êVB°¸„2ÙÙIpÉJ‘ŠXÚ#óÓÆ3qŒ°,rN PIËgÀÊ´ê?š>3%Ss‹üFñÓ¿÷rsgwà„ÚÖ5ŠK•Æ[c^¼ðn^$¤"ê Hf\sqï bȲg`·©‘î”çËÿk.ŠËÙ‡‹þÀ¦HñûáÕáÙIÃÓêø>ÛzR } îìÓ[AÌ…ÇÞÓ·Ù@¨Äþ tL¤©˜= ™§ê3)Æ^úËÌqÇÅñŽâ¤„KŸj j/uw]¶BdÅJãù|M†hüÛÃ>¸>ª=t¬ãô^‰òÃIÒûQŽ5õšú9<°mü¼¶fy“Ö‹ŒT¶{2ˆ 8-.’ŠÌ•K¾Æ-¸œ–R=î±Àκ[t ¸ @l=‡·d[p»,ñ±·£n-¬uÙÛßµå´È 0JÈÍ:s[¡@x—Núô;wp?Ã-}!DeáfÂ…Y[&‚2’ʼW'åÛr¶¾ñðÑã^þ³“–oÁ&΃ÐüæãÀ'þ¤çýp;߇v~Þ ûâI SøåƓХ;ÿ¹þ_¡cý;½A?ØwJ\H‡òœ[)Â÷CŸÂßáÔÈÏEø>½»ë‡w†®‡¿éãëú8ŽJý-pªÎKŒk "ƒ Aä ò Â÷Rp•-= ^i§é†Ò_|«=¥Ê5Z’´É.æeØc˹•,5G;PPº$}Î[š­_Ì¿Ë rÙßZ%ÈnR òOQ @ŠŠ)æçôqg"·çeÑ€vˇX‹Ÿ™pÆ- )›ù ͼqf£àÄè0ÏtQ—1çA™v¦ú«Í£­ïÀZß>8Ø?pAi¦XqôUêJ9p1ÿ‰a„­ôÕ°,ã ˆ™¦Xlµ1Uñ³bú¡æJ¸¢O€(°Ì˜M4òà=ÉûÅgƒ{oåÖnCLŒk£¸k5’0›¹¬"2mŽ—T•XJ[Ô¯b}à¶ úê wƒ}Nó ËjD2„ÃÆÊËT³æâmÕ‚¤{£°ÑŒ#kFT¯ÙÀøÚ‰ì3 ·¹6ú&¹˜ìˆ6pÐÆÂÐaév‰\ßË õ…%b;.<Öþz‹Û§¡”?¬ â(žPO¾‹a3:ƒJ)YDâ6u/½¤åä±Ê/A©/›ÆúÙævU]‹TïR;1/v6¿ÝÛ?<ÚÙ:Ô³²ý±B% S[šüeì¦2Y†ù:|èÊsùÏ`™7н‰°!Wð@1h¬à¶1&FVšâ÷9;!뾨•0ȱJ4tIúŒê4¾ÛŠ“•š’!ëÍ2auF¢[¢Sfn%]~n3„{ÂʹĘ<èÆíçP6…È÷«óãzJBÆï¶2ÑdB ¦ÌR­ãÓeÕœ)ÿÀeû$Žÿ^8y¸½oîîw—VT´ÿÐñfÑêµk.!øuLloÝ|sôÝþ¾qmv’½> FËEþ]ñ÷rš”dA0J,š-%>,çªq™mçÇój5°·ƒE]`>ÕI¥o:Øþaçpg/z×.Ж//&pï?É7åÿQÌ–pÇo<ØxœmÕWs¬Ðòõßÿþ‹QøýCßpÈôÅô¾ÿõ¯?ÿüƒ{xDCRò÷ƒr_/µÅÇů~ǃðçóÏáßø¿ë_<übýÑÿZüà‹ÇÖ¿X¸~¿þù_„ÿþã»ñϬºðÊy]_;Ò›>oîÿ%Tà™™·þ|‹ì2SIlòW D¦­§| Y–ím¾ÚÎø#ÇmŒ)bᨺ½×!ÖV æÜ-]´Y Mþ´·ÿúpç°ÛÜŸ8zl*ðY¤Ó¿ÎÖ1™t#_[[ûshðÅöáÖÁ†ú³n£L˜î¾ìPAu†­(¹Ã(h P·¢‘æ\æòX¦mRKmx#¡%MUGî•ñ %Œ¤9J‘«">]¾›Hu¤Ä3ªÍáÔb¬,¬@þ˜²:Ý®0†èB²ðøý(Xk%2'„ï.Ãp 3Ae“¹cÏ}Cáþ^µÖ ¤W>)É6uP,ú¢4‡DæÁžœ-ª±Æz{ƒ†N3ÈÓûEö£®’Fâ´œh2‰¦žsºª©à¢tJh> ÐP¹z‹á‰öÀoª£³`ÝM¹_.Æ÷ÏëÅDc· t÷üb!„¶ÖzËÿ ½—s¤Ä¤ϲ4Gq¤iÑœqaƒª”Q.8{S\ðÇf8ß0=n#cB,)B¯ÿ €Fˆl`ü¨!÷8¢ÿ¤îë6Õs‘˜xç©"2(ßK"€Tëð±nä ø¢(š×ð88ñž;qìc’DšSÃÒÜy uDÕ©K¤ŽLs~àÞ#_sŒ·h!(ƒüC88}vü0$¢}c„»hùÎ8n9¯Â`9†Y˃,¶I] AAøE®½‡+ADð7Z#x§&NAO´9>5`ØÅqH2€å]`!õM_-9¼qÔD'zpÐabó¦I‰ì– àš?`Y‰ðÅ.»îPA:x[Ë Ò>r“‚‹Vé1È–jìËø¹$˜á²Õ’æ(#¬ÀG¢3B§ƒY×ü÷¡>þü*7”wÐóù"ŠkJaJ3y þŸ­­1m Ÿ©äÊ Í:_Ú_»ï„ÿ½Ý„¿þ8ôr8û÷ Ã6Ø®k˜ò¹j”£„Æykôp #Œå n‡QÔi7èºO›ëdÑ»‚N­¢èÉL8šMiN݆0ϰì˜ÖÙxÙ«‚ E”j€¼êªÄ¥Þ$š£W¹H fc† 1g¸ÜdS ÒD$ BïQ6£Á„¾S:!â,Ä\ð¶)I­ª’uXQ*Ò¼ÆÂ ,kG{y_Á»… ázŒ¾ ¿ní;n¨ÍÒÊ¿G¢?丗F”Yæh6Ûä_.L‹Ñ(MÓŠÅt§˜Œß¡!zrFb}ÛanfpS8§: £œrÜnd`¹á»Ë6Y}ùYRü¹ãqÈ»0ýåk›n`^ù*a%¨ÊòÀš×´ŒÎ)œí2T"š ½*‘a÷d9'ñmƽÅI9ˆ†Âé 1ˆ=<ðÑZþØ-¢U<ì°™·°ÆÃ<ÎûŸ%‘ÇÌ{üÈk@‚N5þåõ\µ±â6Éûl’W/Çÿ9¡ÀpWN½ ûBôDahsתfNïsS!Eðo!ŠÖ˜w•]P~“›Û!ÓMØ&÷ûZ™éìkn1j¯PÞ°@¤ c½dî|álÑ”=lði§^€½Íåø–Ö¢21ø0Š*úÏè‹íVqs×éEjëPê5@ÂE#žKñÒœBGÒœ—•C!ª"YÚ^0iKÌ*wiØÑ>©fÌž†)²ñêAgºÏ(Õ™âŒÌ§3D3 ó Á´°14NHŸPlå—­&“)«O`nnA ?èÌÞ®”&`›ù’‘EÌFæ¹.¶|yä"çŒä2áþo3Qr2©¡ÕÌdêÔh¨ÍjìÄ(¡4-^JÚ̉›Hí!v‰øOéŽA Á8}ÌŸ·í;6Ù‰”Èút!ÍÕÁÓŠ›_ïÏ^¿1 ò¢œ¾éŸ³Á7=G^P6ÊE8Aâ—°ä ´hs€Ä7‰¾1À’J ^’¼×,/@ß å#¼²÷”$IIXTk²#±)ãø¾)N¬©ãIóƒV‡ž*ÉÒ’iyN `…Z!ÉÆ ä¶wÀÃì¯M*¦ÊÁ{¡^ Î ¢ÛüÑš”L6'…ªG'Yð‡Y¨R'ºíß¼~½p”¿Ü?À¤àƒíÃÃíùËÝíCéñ‡QY#±«OÄLþó‚ —ÛüBÜ£¡‡Ç .üãøïfÅã–£2иOæ„õb¢!Gk´¤úÚ)6´Z²êî [Òá¯Ïíp¶~'Ë»dÎÏ’nåØ9‡öO\‘B9 b‰»]‚ £õwù (84£w¿w¨9פ¸) y_Î ßr)ˆ³å©²,iœË͹y%°á<‚-xwáVHœAF®I2¯äGö­‰ÎÏþ2#(Ék£Kî; î!3Æ£‚ì.EPq`Yö|goóà§ÖŽ4I^;”Ÿâ`."É j‚ÄrsXV˜”||;€—Iï.\SÔô„ù M„Ó=áQD¤µ*|šZ_p¹Ou$ˆnâE-l¼—ç,¡ t]•ef½M{a&öúŒèñoJž.O.õ´ñ’Ñ6N³Ó®žRöB¸EûãöÁþa¾³—¿Þ<:Ú>Ø;ì^{œv¡¹QP­|á³Ã¢s£0J5IÉ]ÍL8ŒÏ5>?Fµs†ˆ®SÛ²P¯×ÓœJ½†`ßhyJC)»÷£ôåLæH‘i™]ÄVKûD” ‹¦)c{Xce³››g¦y3ù¥•ýŽ<„SkÓ0BX„]ëœÊŠ8”ð£¹P8³aÕ¦JÄŒ.™¨Ð´io±„‘‹yqHÄÒ`«ˆiÉÈ~dó1¨¯R¢Á;¹9Šû-.«1{n©_Ž€…HŠö‚^æ3Óì&¨‘»“=xV]r¹Ê´;JìG¾«[ÃjRˆ—ı¬qU¯Gѵ çE@Ú¶ÑWè©«qº€ý¹E´aUqÚÕ@óÞhÔK ¶¹™+F‘· uüVïDBà‰Þ‘Æèé²^ªkN}r“¦š¶j;åÇÄRX] …™Æ´ê´È¨cÆê7âYÁ«ÓDs¢5ñ£Ô")8Ž0_®,¹ÆV=Óô†ª0¤W­yFu MèÌ´®ßSýÐÑqó¾û]²wfäè>®&õËÛïaŽ­‰&ÊjO-ßMŒmY&A>™ûðJúr‘§÷#¿ØþÃÑÁ&Øû?¾ÛÝßÿ~ó`ÿÍÞ‹wϿϕ5¯ôrFä|Xá¹Ó\øHZ8#0‡=´ ¯›¶çN’OõWˆÃH²‡öÓÄ¡iÔ½b‰¨â^*&Æìýy"Y÷MÉÈòKÄ&JMa¾Œ\±_b¡yk ™è]JhòõìJK§¤‹€ØŠ°Ð¼mH„äŠÁ:© BÓéÅ „ä#î ZžDïHdæ†é¶R²Û\RlÞ #Ù“²Ÿ¤f8R‘UÉŸÇÐ3$î4"¥À 1b;RcÏàÈ•ë¹cÛŸ5Ñ£ À‚l0Œ# ’&_Î^°ráÝ)‰oÒL€¥š àüÊ}Ü¡÷ÜÙ†_ÁÞùºÛûÙƒÆùçÖ2†ÚÖíÑå=ØÐ=‘|éË×]!¸qßT4 σ’δæ6q[ªÑÝ}þk!©a_ì ­_a¯)›Çv#»åe˜ÃÈÜ’ ;wï´˜qlŽJ*ΈBfV4‹+60âÜð-Z¨ »—ÝŒ‰æ`ŽiåíH(îîýŒS»ãQ!ö'=Çì¡R6Œô=5ˆ8j§©€ˆÐû„ ë²!AŠQõ\šxï2XéªÛœÄÂæl¨Š¿!ÊgqÇÖ +¯ÄÃR΂ÂÌI4¯§ èó%2LœsYÁqt›[ 츰%qKÒ…P¿ˆ…ëBSÐ vÃÞrzÁ-‚¶* wù D@ ³”VÈ\>V Ò ¢XãØ|ÐTÑ ñ<±k;¾(óÝ(Ç4<("ÒùÞ‹Ú—¡Q©ëÈM¼óîëT?M)tY«œÄíÂsf÷;„ˆeÏ6–Ýè®)Áª8B!j­,=ǧ?h¸@=º“_]~\A"®)Xq½’´õ b?­„Ádç\ƒÍÊÓ86ÕÖU ·Jbîè&½ÊûŠó8.ê-}9þ£ïy(‰ýW Æë´ÎÎĺ&î h_ fÙ8òDK Ö²îÇLJ­v~SNQÉð’&St„?$d+ffx×~„f¢&ȋԪl¹Ê{p®yª£Å*wÞ&X‚/×”)›[£È4ßöQ¢¡Á‚$Џò"Q6VR¯\Yâ†GXt†È¤†…S]ÌK­ä _£ m‚&G.ø Wö..9í® } ’Üɺ¥VWöʨáÚÒ/¡ëÉ+ŸËEÝ[£7!¹†&ŸdšK;Z:ÕhW"‚ç²;ôg(luèÇ„oÀÍ+N!EÛ5ÊÆVð •ýXas¬(HÎÜÈýF5<Ÿ;»Ý"-œ2OðœUhúÙcp’:jx,¬ÆRMñ®.ê\;'«l]E©Ç¡OÚy¢8L>Ì1›šë«;:±…0„t¾…ýz8œï§™¸ÂñîF=7çþ&ÕΗϵ”Ô¢‹öf@òLÍ®‚ôÕ¤õ*ì«C%”®tiœC¡Áó2cÖº´c’EšsÍ€ezB¯…%[ÑÙ"¨ g(½ï°®±Ö(C —ö°sh6uQ•ö˜ãûh³Ébð@´Ž1¯ð ¯(å`ÙÖ[û»ûo†­ß$,x"úJ˜Ÿèw¡†X¹³rü^ÎW‘8 81k’ü1+5åï™9x£äôË5yÚ/l½8¤¨Šý8;hBñƒ–Ó4y°ga"£t |çR_ .‘ŠL¨Cåy…þŽÒè0–¨…VÝ”ŽnÙ$æÎ…7zçͳžÒóEø‡çBNê‹GÚÉÄIÀ=JŽQÆ0”ó<èàÒèçq¾Dò^‹—#ÅGÕêwÅbv•›™îa·¦ 6h‹­P¹|—/Ú»‘±2ÌË E©{žÂüá>v$9dþ£F¡³ ¢2»RÖw‘TH@É­"Ú—@ÜYTV Å‘¸¥–³iˆ‚ XØâ‘ü W[¤¿¢N\üÎc0D,­ _ Þ Øcba ï ò}9·:Ê+¼l ¦»Pí1©Ò‚¸@A );zÉÁjEW7¼·þôázOŽ 1ŸÄÊØ @Å£OhB€]¡yF¿IoßBÁ&R“Á š“Šn-D.8âã^1^¡#öœb~šÑŽ7ï,f§‘ä¤Wª(–?8AÂï›jJdxð3+K‹3g—Œ&~.¸÷Õõó¡‰$É ½=úfrIkí/7î¼5rþ‰q&ÕT`Taî>¿˜dHð˜´] ~ `LDc—œVÕ šTÂÝ5gj0LÍyb·úEhíÛYžê÷@}‰«_T/·z¹!HІU­+…†K/ÂÐØ)ózMã’}Š 1eWÀ›;] &çÈn˜K¾lžTä§Jg,L)/ÐæŠÖïK%VòF†£û¹Æ-WæëQÇ͵ö‰/ÐÑmåGÂL6%sÐŒÍî#Û[̓Yî‹«á î6•qÏûߣü?0ÂE ƒV%wºyRZyóÙÆúÆfh¬œ~€²Ô¡GÄŠóæ³ë_¼Ìû”sÞaF'€K$°ï¦šç OÌiøÔs®“ŠFX\ãq•Ö©sØŽž,Ñàeî‘|V€Ý³•sgÌ †A.HОؒŽÈ¨Ói© ·\òЈʼ¬Z Z uqô2ÀKö†~¼Î …ƒãº” —£A­94«ø g.˜[vLW‹A†K–^&¼!¾Š\9 S«&QLqæ6rÌ”áëè øÑI,o\±òß©ìOœ,„ø zL¸†@EPd¤„J²²!]ÐïKä¥)¿¡ O0˜?r°2è7‹å“"IŽž5QþV£è(Kµ£EZ±MÞIÂ3Ð&°?à‡C QtϨˆt|ú=„1Nÿ++&¶Oá6õjmj•ÂÁ]-Ù^8uüFIÖ\©û:’dC+]ÉžUSD… —êÎëŠÓ)¡T'A:ºÕ7ºOWG7±lv}¯RÄÜI¢þãÚr«5ØàiÓaHR„!>ÝÛ¸¤^°ìW˜‰n€¢OÇ÷ǬöôwsIhÀ ìo­¬xÝ$±ËV*+‰*Øo…‰Ž^RÝ7µ¦«Ætõ˜yQa.2Ô%ÄRÖaèþ¼þ ·« tßO‹Ù{‡.gTbî > C†‚BWFÕ ‰€x ejË7êi µŒ6JÔY(í¿9j )?³^³L½N.\Åsn‹n\·9L‹óIç2¨ó#1·E³ÊZ_x¡{Þ4NS0ÌBÏñ ¯«ºkA,¢ª.²Ñ0ïîôw’íÃI…=4E“żv$ÁY‰hòÞ¨Gºí ) iàV‹Wü:'æ×Iʪz•Ç:òåä\¿pTR}L&åcÙ쀠+=Žôz·qFŸ‚Œlâ¹S”ÉoÚ‚èéõˆØC>©ˆB(aaòóV„jÅ7‰_UUP;¨e]Å^E~â[ËÉg*Çi7¤¤yW¨&á[HY'TMª±šÊã!³Ð!suÞJò%vGKjͯ#& ƒå ƒÌ*©‚èÜF¦P´aHçò‡nun͵ÇWyn±éS{¦' VŸdã‘#“šú¤š-[0Sº9VÅç Ì(#BìW#& v\SäC 2#¾øFk°ì¡áÛ­Àœ ¡„®æLq`•U¨­€]¥AýÙ³$1»©=c"ôh§<ý"ª)‹–ÊÚÈ+`Û@Tãr¶Âe–2±VÝ”Ël4-ŽËé³zª'X²êÀuÝ(«Õ º¬Ä´qpÔÕ¯òÎ]\h]É!PØs£)LCøÎ ùc?‘Vwß@td:AÂ^TmÜÑckÐŽ¢i)mÉTÁ¸d¨ZÎþÉtÙ qw‘Ïå¼Z”W¡cñÆžã"žÊÇgËÙ{¥ÆLô.bˆŸ”äÀãäS#Ç\W¡×TÖÔb3¯•€¤IÍõ'ÆLçú8Â|6Ÿ¤—ôÇq6ßšhj}9­8Ë>`S°RY<‰`¶x¤ÛVΪ4"×J¤vÅV„3fK´:$‹%ÿEuA*Ö&U©Ô¡%ó#./x%©&^|`ú¢zU*l L ˜þÆÞæ¢+(:Ë›ËçyþŸ•ÒoŒ…5¨k—õü=‡ô0°(MŸvó ÛgqÇŸ^«HÞ*8,ÑáÛ…‡½ƒšíÀd¸xé« è¦àX1éü-ÇwLÀ~ûnsýÄÞ²˜>Eú¼ …k{àd õÝXøÎ•¡‡˜eáVAk‰Q§Ý|Ÿ´muˆ½]sQÌzgeÁ ‹X»uÚ‡ðIkžNúå>0K­Å«ÛD6.\ NSEgôŸÑ5·q—ËG‹´n䈅r$pgát~X"îàä;+—bõRPT§ ›6Ã;ï°ö¯êÔ”ê(‰æ°`ŠŒöq¯sܱ·ÕãFÉÛ?±D·Q^Á²©ì6²‰ü À¼:FêwWÊQMÛõSA•É1Žpô°=íRaR»†OŒQÜoQ«Ú ÕÄ}1q–`*-ªbšW¸kk ¼à*ÈLëvÜ@¡ÁS¨N«ÊGI± çx…ž ºN§3e|¨Ø5‰+LjAÐý-Õ|¢0¤¿°3èŽÿFB: Ÿ²ÄXiCœ]˜–¦ôå›ö¾ÕÀä°ÛŸs«v{ÃŽÏ—F€9èJÓÿöiÙ™¿ý{NՈɗ$^BÐpl¥Â,-'Í®Œ2¼úí¦µk5ú ,.«ÒÚH‰Ì,†G×@EI\*"@˜‰@+¤;>Ãì~Æé¤€*Ò¥D q¹¤ ª×¦#˜Æ¿ééL…8å¸E¯6ؽ–Yd}–~»Â‘…Ó‡”XVŽׯê“ÊuïW5WbaRaÛg&ã‘J O§SUr4§ƒ9N¹/~îðëíTðÄ#8ÒX-gI“ÚU7$Ò.ÚᨢÉÉѲ Am‡ A%èM¹Ù.Ž Åg†vv€Àõ·¢]ˆû:e‹­'òا¦œgxÅ>“9•)¥ M¡qfEÖ¿$ÀÒÑMNµ!M«û7®g]Sq¬äà.ÎæÇîu“õzæ¿‘‚,òT멦¤aÞÚ …Iÿžo³>ÜÍ¿‚Á}½bÍÞ6yvÍ…[5q³+Æ?üÙqX$Ýmàø†fùixõ¨šÏ€Á©pª@¾°õ*¢û-Qf'v€me(~–êÝdJÑ”Åe=²<‹ö–]±µIM*Vq68 ‰ÅºrÞ&ÆuAD‡ñw~וq[RÁ?øØ•ÌN ¡lõªUDåG"Áþä¤WäD`8Qw%)ó*Mx⢔|3¨§ç+ïWG^óËÀÎ%û?öóxGNÂFk Y¶kS8Ï 40F£ r5²hQ_øa“x1û”Ö¯ƒ;r–Lxl)ÊÝ·È£¹ÎÌB²"ÐXÚDãÛÅä.…ÚXQ@楖¶5\ÉRížÃ“% ´2@æÉxvšŸŸ ý^iŸn¢E ‚Ï~®T Ò˜ÊÞQž,´ó¿OhôÕG®†ÎÔ `l™”ì–äKÖMé螨Ç%1VIGV@$ƒÿA’8÷ÂÆ÷^¾u°û2¿‹ŸÀ,osAaÖËcKù„L7â‰ñ•Çó4O ¥~í¤ .ce_íÃ!h®+«…ès 3ÚñŽT*¼àÌwJb]Gªöuæ)ï‹ù¼]ˆ* Øý&0ïCOO‚¸ W ÕbÞܰàrÈ{Åìj<ŸžôrÚ[t»„›¥NÒy‡Ùxnƒ ‡íN{h^r]tN…ýÍ÷hÑzºX™å!´)l©¸"%ÙÚcP§¨Ä1W'Cæm•¶l.e¨£ õ;§‘ÔZ.¦Ë 78 óüÚP)xQ–õÁƒçaÎ_¾Ìûô)ARâï·Âï÷¶w*‰ó\Á“_>Oîò*ºä˰–o>Ûx°ñå@\½¯ÍÁÓ§óââÌ¿øûd%A›”RFÓ_ÇËŠ*¤ÛuÄŠ®Ab+ز•¤e +`"2{u5Vl…E¾–©Oð4]VM«–Búæ—Jq&uP×&—r+ø—¾¦=vÊSW 3ÙXÎÆ5ææ¿£l\¡u¡á•²™Ê¥C„LÌð¤X/õ$uëŸ7¬šKVŠc¢ Aô‹¦JxûÄ öS©ÉÑ ‚fË¥Á…OÉgqÇÔ¹1x +Á‘³qP#!Ê“¬å{õB¹ç¯AÃYï$„. Ö.€JëÃ6)c¢wTâÅgRˆ¾å g|-I.Í•¦kê$1èf_í-ͲÚrµä x+bcM(uX0 ydS!ÄVžf"ã“ñ9S“Ž#»äVF$wÚ Þ+ó*éš(W9Ñ’TÝœâN qÂX»9§üyÔ%v-Ü®ð²¦[è§GE‹ yÜWN×Õ”{•ÔÝ׼̖árù²1@7í¿Û\’ÀۆĥJkÀóUÎ#&ˆŠ¶†Öø_Á¢âÒ±JðÚ!yú$o=¸Ã!Ï"åí[úÄ“‚,(ƒúº¼ÐM=ð²?Bí¥¬{ð\Ed‘ø}¿,°²ì´W ÌËi°0« ÷ q }nSÕµ3™¹œ~ñìå)ßÃ|9ã&wx㱌%Á€AM€ þ›\<‡H‰‚ò¯‰….З Ö ÙýPiooÜ3¶˜ûHX1TÒ † á(ûߪd†‚¯ò¼p9DÙª¨·¡‡ôÞp×ÈÍ‚pfšÆˆ„wGt<‚ ‰S¦%¼Z®îkxU£–vtJ×uëÔýR*^θr“¤(ZE¡)GJ·9åLñ(³a›VGtÖX*&2ŠTšSɉnÕrÇt x+6J›§P<½>_"5㺠mÇÞFÍuaÍŸÔSˆ˜Y弃‰5­aïû#,Æ3éa#Áñd rò¥a©…caÖÔšA°ÓRCºóÕ5ú®„;ÿ)?ý«.¦Å8¢ÑÐwÀK’©"s*^&fÇš„³rƒņùßå}ÆîOËÓb|•ßyÈíÀ‘p")†x‘Д£zb§s*/œE ;­@Ý`RÎG›1_=ž‹×v2/F‚cüµ9„ŸNÒIÞœ%\¢çîÎÌqÚ†ï`öcËA~Þ¬`ª& ÙÞùŸy{69†:Ú1õŠ-Ê·„N7´ÄÉKÌ(%Ú1õx¡ÛEK2ë Œ;È€åEòH‰O-pÙ®8!V4I”ö@ Q"÷ž¯ÿÓŒ_V“ÓA~¼¤Ó³žMhѤLg¬ ºIþ¨“Œ³üñ¶³>If·6ìáçiŠÏÊE|.“pvSv*}®ôL·':íY¾õDG`’&C˜ú[Ï3À ØÚ¶9„ûXå΄ͪrz‚³Ò¸CÜ711wî´WG©©èfp:S=l_k /-ÔÛRû¤s¬¨†ÊúTbû8!k1„ˆpJ a„Z’ öo¯—´‘óIGÈ5Pzœ‚#ÃΧŒù™³“ÊöåŽ0‡š8¹Ï1ƒœp ªdâ}kkÝEw´BæíÒ¶ †éÄ;±äðÒ*g%z’…?„®­Y/Ѥâ"«‹yÊÓÌ -À&MŽmMñ¥x?ÿFzß¡uÂ=ŒØ…=·Y=\ ×”©}žáð‰l8 MFÅå„|ÑYî|yÔÏ´O cD%ò%’t~)EÝ먜.+¨vh 5ÝÕÈ©ëOpî²ÊI¤c¥gÒI¹’å"¿ß ÃññƒD`5©Ày˜†k\jxùd#•h¶&ù‡*4@Y0ªÏG¢8 ÝÆ¦K 1ìýM<,6?nÂk¸báLi¡YL°à«ÈÑXбÅ^…•ÌYE-šN¥‰@4ÆûIœDÀ'}eêîÕDåÁzÜÁ" Mh‘p]R÷GàÔl!Çj§Ö¸UëBL ÕŠµ~–Ìßœ¬+nÝöeÄÑ?“$Áapqáܘîãó³Á@™úœÜÝLg¼ª>6HZ *ùŠn'uGÞh#Mœ£×M˜¿¡üÈ~½€’~d¬ÐˆÑòR¿Àî–º«„lBÍW'ê*‘{ÉÚ!9—4bC‘#¯ÇÐ~6c(­« y¡€@$—Q SŽ=ÿÛ‘¿v›ã„f N—Ø¥FD¸tØ9£zÿK&{úˆ;ãWÄ*B©e}H/^ÏÓyM ô6?$ŽÛ‹þàéA>û{µk£IÆ$FüH’É¡öÅ\½†ïoq+4M„§¡—h$[ŽàÇZ½º‰ÆVŠ% ‰A¬V±n´VUx{:Âïºp1d¬¢öÀÙÜzWK@×eÊÜŸ\ä‚ÍÔËqž<æ ´1H›õkÉÇþæèåýÈh‘¸g’XPÍ%ŠÁ7.ïÝ›­×î”.ùj²Xdbr@›F¥jÎ_ïîü‡Jt˜Ô(e°ÛŽە6Á%ü’;Å?=ASîÉŸ}ŠC·9™uþèŠmà¤ç¦Ä)•Eêpë¡Õ±l´¸¨ÀT⑇ãjEES7¥èaæSáEf¬,æÓ i\í(I‡=-Ãù¿äåètNäTŠW¤â^¢£\CVHVòÍçC5Yu ®³"L& 8LP*î5)¥r9Gçû߯:‡MXT¨)ÖT'Ž+Ù¦ ‹²Q`òß^ZŠ5¸ .ò†¡áïåH·FÉ*PB‹ä^#BŸ5,ÄeÍ·tPª&„d ‹ cšdœ²@qédMPÙì 2JVœrp„¿ž¬§Îß—%•…ƸvÞN=»\O')¹k)Ð,®m£ÅtÜ£–Ÿm!TªŸJfé@Ðm†œ\.§õ²žÝEÅŽ£Þ“dnŒØ-Õ¡—¡‡_úƸn`ý1’¯t¦ŒI¢Åî¾ßfn Λ²­‰¬ ´Ð {¢EÁj‰Í]]×Kô¿DÿÛ²*S1(H§ÁÏ:½N€IÕ\LÃj‹r ÈòbÁö“ã¦"G;¬°œîbÙrŽâ¯¸E( fAä8V-ç2)E Éd>ôÓÚ´K]²Š»~{Jdx—Oç@IÉŸ!¤/`vˆ¾ú¤E칡'<‰ñ$ÜIDã™â”³ÁÛY”â -}U1sViQ;p5É}=‰U—§/DÛ³‚œ‡Z‰…ÌD ½—&Çòò^ÈñÌSåúÌFû븩ƒä bú*˜8WD!Æ×ˆçYÑÄ)÷"›Ñ‚¯3‰³ëYÃìë„Ú#då|ôäÐ0X,Èú‘%lòå –"×i €K&8#O¡TÌôd2$ɶ"fZÖ¨e6†y‰F鉞.´¾”UŒDu›ÎÃÕ‹zQL)ùí† ‚æšgã±ôúSBùî©D0ÔçŒT+¼~áô²~ȲbáCéLáŽI'5†7ÌÒí@|-òHºd»¤½à èéMÉUj¨z¦ƒƒŒ= I}"GФtå‹ü Ì°˜Šà²ËoGüƒXÿ°2]¯Üe…ÉbÜM]˜6€¾­fÁÞé$;˜•8˜yíRxäP¸³zGûG›»Ozœ´.Mìp6{1×|„*9£1º¨„0IÅNuVú"š‹¸”*N1û¿8†ø¨ †JIÎD^QÏ VÊb =PØìÔÔrq’FMºmu RŇ › cæJœB`“ô%YF^0úR¼—kÀ“bcÚ‘/ÙÕLè‡ÄÆWî.c„‚\tâÀ¬ð`ÕqNÃ'ü© ˆ¿Ù‡bZY½ËpX±ã×(ntî ðµÑwy¤\¦ —'vc³¨’Ô8ÝÄ*°9q¡F¨Àø‰àXCÏ1Eh “IÅŒ|Tž“ÆHNqêæ+›£ðÎ!ËpRÉ ÔÂaôNÔΤu‘ ¹ ƒ$jÊépié}B ta$‰º“Üðf=)ÆÁpX\‘½Ó¤žLÆ¡! ¡^žž-ÄÚ+æÇÕámsæP$`r~ Ê‚BŠz‚V7`ÁüRxq¤NÝÍ*𮕠fu‡0TÏbã–thûÁª£Ÿµhqýۈ햄ž Ø?Ââ 7¿ƒß1YX ;_×/]CÅ'ÆÅ%´¶”–¸U•ë4áÛ,ò0ƒ°ßjöàk‚‚œ£V,T:0 ð%Ìf Åt\Ì@jåGÐ’¹aOyb21«˜;¶YâËš¸j…œsõ°W‰~>¥·“Ìë¸tájÂÛa ¶™¿ÄªRá~ ôiù1þ)ᢣ SÑtIÕ_êP•…^ÌÕ(“·/5À7‚­¼„­¦¼GR” oå²"*ý••-ÅO©Z¾+CBF3Ìyïíqÿ›'š“nsø6MƒDš”ÁÛãžcQ‰¯X-CSrͱ27‹»Än¨†¼BÏË#k0FßÍ8_(}JWÖFnSÉ~Tмnûiå–i°&8ïz<é•ÿ\Sj‰ZxÀ7å0׬|B/àŒóI'6÷´²‹)ÞŽŠBøÁÑÔq™¢[m^¦7Þ_RûN·Y: mÆg 7¸Ó#äk÷ž«Á½òwRí¦ܲËÂ6ë6§[n¹ñ(dÍÛ,É»nßý éå4Abw$¾:V¼É²àH 0GˆÑBàQLDÝ ¡Äã^Ý{³ëTÄq­‡‘\Û¸QÒ¢©qÍžð­a;§Î-gHè5Ó„ÓËSHÀ‹ÉÙ§DóܘÃδÚ,W*ºÛÊè±Ùk;ä²l{ý½WÛ{Gù›;›Ïw·u‰Ð?gyTF) “°‘•a’Ò{ &´ ñb›f=e’ìrbôümµR^Ç¥ÒOp^jsój2)gš¤Ä\œ°îpX&)ÍÀ½5ce˜¶½íwwöZ35ÚËû è9&½·›ÒæLʼ͠èSŠiVȃkœµ1ÊDÞ…!F!3Òxâ»IÆf¸ãïŠ›à‘‰Ë½Ks®ü²‹ý ʲŢR"­Ì1 κì&Œ™ˆ¡êH(dyÆGå„0k/ÊYWßÕžK Ð¤â…Æáø£åÔÎ-kg%yvШë9ƲÛtûÄdt‹Â0$ •=Y$Êc¡V$Ü€íž ¿CÀij z¢K~”ü°ä<sHNÆÀGXLÉVö@‹9¨céiTD 5h´¤4×ßÜûIZ ÿ`so·›®…qKÇxHKí;دŠv³“ƒÄéz^E$Â“Õ ‰±aóo•¸[½ß5{X q(Í5PÒ3xò73D`0u9»¯´ £ 1Ej:™–`µØl…yí½¿yõ²1¥§ksÛQxLÆ_ñ½Œ‚aÎù“Ð<¾€EàV¾s_ÛZ'¾í:CîĤ‰†?lKÜ•4 Ÿvq³Ý)q®9+ÂÍÔ^}_b)†á}³ž—ºû¯vö÷ó­ýW¯7vžïìîý”ÿ¸sô]þíÞ›üÛƒí׺Ù^9…È@Ðb­ EqÒw›vë@e:ÿtöá5¸ƒì<çDµ†­J}à>~üÈjtPB—uw ~nûÓ«¯½a=6.µ¼O×–ÿ¦ª&*‚è"„HüHbÓÃ8~ܶÔ"Ðò“ÉwI8ŠˆƒègWˆ~áÁžü¼05òQ· ÛtÍá‡=Ǽ14hÃ0ÂÌhï(‘ßW˜ ŠøO‡è¡£[ÇKçWY7Ý`cTveC °á…KóM´}^s8Ò\±FÄîh»Ø¦àI>DI£¨Vp¬Ô3í%’êf Bò’ Ì è¤0 "VdmjR¯¬ó;î6p¬\¹™Ói}Œ‡V6¼z1I2—ºO¹…©DÙí¯ŽQÕ²lðΈ:~<¦E›¶+ž ÈÍJ‡½Ë¦¹‡VC¶9{é‰zºný¦`§ÓŽŒ¡H<½ AÑòbóhÓßaÀG#A·¾ÞYÅÌï â Jœ —Ü"ìX,ÑqÇ8&ΊÁVÈ_L\¦®ÕæÍ·qŸàp­côr"Ä<ûðBv‹©71åÌèä>‘ïÇ€“ÑIî~Ýõúj9J£º• ƒ!3‹ñs]<¬!Í ŠWÓˆ+*¡‘Úòäh(›j–øÇód [!–Õí€R]6½0’K‚]pcðÈÞVí=çaÌ}±‡¿{£ñ©9º€˜%dóØh’ŒµóÞ›¶½ž(õŸ%?J-,`¹À@µ§X¤Š¢ y³DóÓ—ÿ4æg×ëŽmx9„`h qT¼é‡Ï£j’ÿ7g ½8G9h&¡à6¨\ nMb‘ ,õH-Ù‘.’§û_ªêËþ7]h"Z6{Õ%c‡ðÓÂóÕÜEÖRt Æ^³Þ¡‰Ï}4“à‡¹0ñõ£Jœúœ•g·³±eˡϋ)Š\+÷ÛDÔRü0 g¾œF¯“8j¥6ìýVc¦µ«] ׫ôXÞé‡r)XÄ5JHdٛýoÉh¿t¿ÍÝÝý7GùËÍ-Tÿtr9Jh`˜{ðçPS4¨ŒzX;‚)qyÖæ|£f<¯.°¦Q^ŽÏj‚¾±¦ È ]óºÇQBÜÁ³ÌËKÝ($ȂϱµH}Ãì9ê©äŒÔpnQŠYï0w Ò&¡§/a€kùO@æM:3²€òv!å+Ì´çøL{¶Â—Þ|I‡¸Z8!ÕEoí$Üj2XiŽÆd8Òõ¡½wW׉j@èÉ1ù{pš’£$j„K¡3AªŽ®^}Ch6‰ ë9÷Á%]Zì£Z¤#1›n­Qº‘þzS¡ÿÍÖWAûzÀôï(‚ff‡]²£+´µŒ­þý·e½°ý(©€HdÔ\AÐL;áè Lç6LÙ 3#‰-v Ôý¸â t•Oò:¿Í\° &ÄÆØe5ëÐ’$ÿøÈa`é+ªˆ•DÞîI×Ç.ú­)gZR…¥4ÛƒŠx̧FELt)èî ºösq6GƒH5(F¶zæô†ÈIäî6 “ýýѾ:^]–sÒÝy€)á¿‘ÈÌòŒZ¨ï†i%$&ë9!"¼Öí!d‘þž‚ñ'; 20~œ¼c¶aï>¸Km]£×ˆBã”QÎae#hÈ5L”«7ë;ÞAiY°°5Õ{JZ3{ç]sQ\Î>\ôfLáôëC7A™VÇwðñþ@1¤“È©Hì–Ýj”Ô‚Ê›zþ>4_¬Ðø7tJ$vdö%n5H¹÷—QXp¸bþQªS²`•„ê¢í2å*G.á.æDÅÆÍ5œD"Ô“héE‡Â’覫‘d°+,"oPJtmûÃfí¾ƒv­Ã_?¯­Å!ëVŸ»í¸kƒüÍ’´‡‘*MRç°M$(¸–·›¼*¤qs¸0†‚¹ÅÛ»}eø]xÒ5 ].ã_wU\sG°èÁÔ‘B‹°ÉŒx3Áí¡~u†h¦Ü¹ƒãût gÄl‡pe Ó˜™t]ù *V>*ó^q<ž”ogë=îå?;iñÖ‡¨ïö¿ù80Ií?©}?h÷¡ÍŸ7ÃÞz’ÇB~¹ñ$ôôήÿWèoÿΣAoЂ}äºD…fc®dn­í„~†¿Ãÿ¨±Ÿ‹ÐNÔIâËГ0ºð÷#ýòzûË8þÈà‡3}^bºÖ[&V4ˆžs=H$¥;£\-TB;6)îð´6×tƒ>NMK lˆÀSw0Zæ\o^†ý ”òF‹tTÖ;ÇŰÂ9qÈÇ…|Ø_·æ5Qu\æ îè(õO¢„½OÐvL‘PžÚÚ+±oñžå8Ap(_6æh*Ð1céæÒ:Æ40‘å] M·ª{broxÒ>‚`;I¬Ì­X€â`8å'à&yµy´õxJ¶ö ™°ÃùʱyèRÎ{Ì…EæF)æQ›æ.EW ·ÉD!¹º=BZ g%îÁ@›Z2–ÔhÅã(äK©Ò¹fŸäýâ³Á½·¬Š´AN·Ð¨û]¶Bg5Çã9yöHñêµ9YÎÆZT§€¥5qLS¤|Ùÿ¼“¨W¸.æBQìjnˆjŽ•ÇÕl²3pׂ›Î„#]Fòà©•wöL'øêItB¸(V ãK R0ÕQ!JL¡oìüBe=<‡ÃN¸dy»1“Õi"lr‹—“HŽÉ&ü÷ÕÔŽR4Ík>È‚QQ:ÒZ© ˆ ZÄÂ<XËßÛrÐYÅePmÇKÚïg‰ ¤8¿}\pµ8m/v6¿ÝÛ?<ÚÙ²“¶í3›ü±„\%òª†ù:|8«SŸ©Û tÜ Rs#ƒpˆ3ˆ‘ NFédX€ˆ *—OFP™þ­“½ÐТ†.jꥳà©+kùµÚF Cbƒ)p1äŒ1öÚ?=i ˜¨‡)<ˆ£s²mHÎxaæKBl€e¿I @fcTvsu~\ë6D©‚w[ªº…=*¶ 8¤–Us–+w0bçûâüÝ:fÙáöv¾¹{¸»ªY8ö ¡.­±ýÌ×”ý²  ÕÍ7Gßíh›¯Ï‚!w‘Wü½Ô!”‘eLI°’0— {[X( Öí°œ¨Œ5~«8?žW“ÓpÅnÏN§fÓfÛ?ìîìïé»v¡6êòbšÇ“|ãQþÅl ZÆÆƒÇÚV}q5‡Â•y<È×ÿû/FáㇾáàéáE$˜â‹<õ§õ¦Äºˆaê³ÿõ þàDèoìÈý`ÜÇŸÿdÓÃ_ÒfûσðçóÏáßÖo¬o<ø_ë|ñøÑúë7Âï×?_¸þ¿ü/¿éÏ̬ðÊy]/®{î¦ÏÛƒûÉŸµ£ïhiôü·±‘o.OÁ´;îQ/ï¹=ÚËÖ¿Ë÷6_móÎ寃\o7¨È ÒºêUÁ¾ ·Óæë6ÁþǛãÑÎÞèhçÕ6bœvv·òÃ7¯_ï…—Í›l­¹ÈþÃ1x;ÂnÄb„KìÃÕe‰Ç„ñyõwR֕Ŷ mˆ½4ÊÃd 4¢ŸÚÊLªR~ Ѝ÷Ëj­¨2SC÷¢œCdë×ìÁªÎ覘mÏ¥´¢±îB#§XÔÙ±!ÚñB¶%¶rô¦˜•Бb^…qéC‚üô©5py‰®÷TÀšîä–£ªÖCSáó‹…+Jˆ ¾#ÃîÀô2Rr¥‚¤*éœìÇYÖ~/pèà);0}ÃŒû$ùæsT-|(r#\WRGö«¼"« ‘%—ü~ê‚p3`Û*_ŽŽ¢µþ9ü¯³‡øO™ìN¶ö:ó&²€3„ò8‚úÝ>í{-Ûéä½èöxñr3¡¯WRÃJ®ám3àû‰Lñõ4hÈàÞÿ½< #ÿƒS¸ùÃæÎî&£ ÷_â¤uO_k&g\ÏOJ2’Ã\âtQ—zãzvR†zÂ'>•3˜}¤ð‡8¿K.Ùz[Œ)­Ô©§%ÈhÄ ¿xÁ^ìz)¥V{-Ü3ÁLž\.ìéâ"Ÿà(ó|óàUÎkßÿðYôGgËóãúù#ø4ü°óüUÞ<üýƒáW9ÿj¶(§ùÇ/?—6àëú…Ý:låM¨ò¨_xµóú0ùìk¨:†üð`çpkôCâ#$Þû‰fÀ.e.gæ­–±Yš’Ä ¾;Ú><‚¢ý­¬549VÑEE`°†²K©Ç\iPÅ!‹ÂÙ—¦èUè {··ÿjûÕþÁOɦ!&Ç®}nÓ;í2Z\åù&a oöø~Ø~Ñ–¬PÈâãºóIs€[v>ŠŠ$Ôªš±KeaY5"E9Õ‡Ä:Vq–11 fÆT’NC€;$O íÅ …bO }Ž \EëÁŸ îG¹?4+X•ˆNF§gÑh)æ.ÎnRC84I\¼$Â*ŒTføJÕÖÆUc•²ÀlÛÀ)ÑpLT tòr¡¿Dš§Š¹¸ßCïGCq*ÁáΫ׻Ûù›ÃmVL8ª±¼‡‡GëÏêÎk³`ôv8­p_ª±†lv8áu†¡=Vá8ÉÑ¢cEqèf‰N““%8RMñ/¢ˆpçpb `ñ®N€–Z˜Ñ‘\Ãi›•å–4uˆœ—”*:i$c“¯Õ@@Æ´òŸp¡^P”($,&ºd¬¡Ýí£íaf¿{½yp´³¹ûî»Íƒîtú÷_áÚINرðôêUÀtK¡8ƒ¥$ ¼þùæ BGä5 ðæ4øpÓ˜nÝä§æΡ·€ 3C;èÁ¬ëâZ° ;GЍ°Ë=…2‡ ü¡Åï.þª*§(ÄT`Éc1Æ2Ò9Q@x¡©R5ú“VÏ“.òL¶ì0ÃS?+Oé‚!§ ¹óÂêÙ]DnVÉ‚°àT–Êd0X·Ž€?ÒÁJ3À72$s¢9j(¶X}Y6’@‹ÃÍçKI…„Ýà‚À.r{•!é6wç”D…FèÈAµœ©ç³ò2²»:7[ÌëÉr ×1"ýÕ Öãêôv;7\–ºÚp&»'FàŠMgw‘Cäùj8)0-SÛq'wƒ¿•Ñ•êD6èuÀMˆ_Æ¿…S©_X,/6Ç‚Ã_HkÇËÒE2¤¾©æHÙyÁ5h,µ»;'´Hõ幉h\J/$knÆØÌï§B)@-Ðd}:dpŸ,dz†h^ÉO.æ‘­©M(%2)U  LË™UÇ6ÜJ[À¸%¤´8ãûE°Á7Ü?1ٵű‹siâHŠ’‰‰HçDPÝÂ\¦÷—Ÿ[KØËÜ-ÐJbºò†ÈZQ×Ll}ð_ôƒÒpV\¸X”rL¡DC+Œ"ÚѡӦ­Æ+5Ýtâ¾ýÎW-zçÄd"5oU;H¸ÆóaÓÑîQ¬y§„®×¼gµ¿J)÷öŽåÄd^å^ó4ŠÅácj À¢p5<¡ålY½Ydõ’ʺˆsøÆõ…^Oàø8Ä[¡ÍvÇ<mÔ™yÙØ^ ™”ïàcÒ~P`Ã. Ñ&±0VÜWÂ?>Ö˜/ʉÏ«c©îR« ¯ 8 ¯":Íëi¤•nÑï¦Î$§{‹´T´WÝ5‰%?` )A"ÒP³ŠS¶0jeÙ"²ú’á¹3½qH…nO9/„/kÎ9!Ÿ`›ËhÂÀv„O·Àºæpõ5%o°>ئމÝ`ïIÚoUPV ^9½òfˆÝßB;šÉøÚ)æTS—¥y˜N±'ªG3QY á0ÌejíŒì¾3Œ¾f€9œe7+ÌÄÂo¡­0¥h‘uÇå¤I8‡ÈŒ@'•.#Šâ2CÕqye¤6Pl§TC¯((RZ1óJ@9í> '‡Ûg-¾£Ä€oÚ=ʳ 2•$(-„)1QpÌ0Õ]ìWïÿ»Ä4±¸xt¤ÐñUÖ>üÙ;p©$Ý|;{/÷á8Üùã¶UyÉ`‘PqfŸCq]ß9(Ãß ²ú}1kkË «‡ïqµ –Òš;†·òÊѯGë!mˆ§Œ„n UmZÛÅÁ±z7¤¯éšIù.ºkÎ{âzᘑptÆ¿"ªß<ÿí­# Ø;ÚÜÙƒßíìý°¹»óhÍ'€ ^¤ÞÇ|›¶Â×4ñ0Ž÷Prº¦|½lt 1¦0€&L …lÚÅ5ðZÏÐ?DÅu>GѤn8 Bò§Õ7cÑ„Æ&Á>/$æBÚÛ‡1½Ûún{ë{+-î,3pSW֢΀˜1¯àÅB°_0ìæõ8iæôˆ˜ÃÕ]ÎÙü-Z3F5öWXíº„ß6vPAÃ.¼³=[&McK|ÎŇvá¼h0kyZ×ð_«¿u^5TŸE—úÞ Q©j(6T=Ó À•é¬Ö“›ÿÌ_F†ÀVWrê¡l?ÖAqk¿ã=ì6£:†¨°móan%\ÁÑÕ‹Xâ,½œÎ¦½F•³¶WŠ“¬¢Â8¼§“I¢µ#½…Hia?€ÕZ&úI˜d¨%U‚ó¸AÛ]™°<4£íbÝè—¯ÛD7øÁöK>ãr` p-·?#ÿXrDå<ë°áW«ö4Îzpë&."*³@¼b€váR½;T¢¯”ušQÆV˜—ÒÌ…’Þ?‘û¾³{2˜?Eùb¤š*_/…]Š)÷æå9ê0•'K–²¸uJ¤<ëEê#jC(’½Ã]H6÷^ä¯7޶öò£íW‡ÎG{vK59N]a‚Q ·­ý×?ÑØ·_¼ã;a¨âïèùþ®ûi;þéÕ룟Äy)?¿Û<:< –ã0!B‡ O éí]_ŠÛ{[ßí„Ù1u{ï…þ¶¥’e6îè2õÚ–öÍ¢’yäµL:4’Å„{ÒFµ€EÜ@ê^iõŒlà ›Ñƒ©x:¯%«êÃÁöÑ›°%Ã!y³}˜¿<Ø…K´Šë´¼ëgÍÁ Ñ Ûa*Ê‘’;#QÕžRg©u"?°ê&JQ]#M@îLóÕ>é8ºÃöÝú~wçAªN5%ÅTFdÄ ªX…e=9©Æf–É8ï¯2Xsw€ßúÄub ¸TÝj6Øh¬¸f8N*ºaaÓ) ֔Ŝ F‚/槦a/ÀçqZÓuÂ[öB#áHD2ï¬ —ˆ ³Q.8ñáù‰ÝzâÌ¿äàQO2Ñy¥y/8h /¶_ñ@ÝTÀûД‘gÚcËš®´<—Ð:hÔû»» R}·M˜ØU­ã‘V‘¦2`ðBøàxZ‡5½–v‡>1nL6oæµcŽ ä7¾¯ž3Ýu;p¨ 4'h9ÃVF?9«™XžÚ݆­̓ã 8™«)â÷’’x@¿†iÑÜ#ô:«[Jˆ)ÙÎXД‹S«0› Øo<ºÿ ¡;m9G‰•Œ ýÈîâ/~²ïë¤ø[txí ¾Üü? _W¬á“ïÆX”d—: è— ;ixžvFmÕd„7i„OÂDCÄ~¬Î—çò3ÞdøLµ”3Z#4ƒÃPe“2•â.õ%ù‚çܾ1@=Hœ®E¦ÑTÒ/Š ÷‚° ˆlqu‘š1½ñgud•åЖKÌž:D#Gdh ?–I&qqÓæ¨Æ8šT•›[xz¦¦6,¡*w¡1ׄˆ˜l~-ï¿dWB°+Ïfìù;‡œ É¹˜?›aõ1Ò¤ ¨Bøü¼@ãë‡j>¾MølmoÚúâ6“pâãu<îÁð\þËzkDÍgÎ N乸fg¡:µfWØQa}Ç~ˆøGãÀYÑ~%·lÃqqÅä¹ëûV¿wÎÿÔЀwZž«k-<œÐü=ДT_& @Ä —û½*_ôRj ÄËp™©ˆE½9Ä]äx;áÃìB-`Œ7¥³çS»¯ìl¾|õæËló™["zhöiŒ‹•­(æ2kÒ²4ýõtîíÉŽÌ6eð”‚d Á<»_ÉÁ¹út¡ÐæŠÔ}Ô¢Ef^5qí^’&é+.È>5å$\ÑÔåOë2ÜEÔm÷{¨òËZ;…lr]ÆÈ¿RŸ(2’¾{½´×N?\Ñië0VaW¨#æ¯'±&sãfnLE~^å2Z²ªâ¬$ÝD'^yWÚ1w*á—ȶ£[»#ÚO³i¡ îÞF0N€ß~)6“{öÖß5šÛS‹ fîk×È™&°m¿W3ÖgmÜãÝÎr1?NQv™Š*‡2 !‰Ìc~[ö¿3êF¢jOèX²eGÐ~qRRÊ 7r'ŠÒ’b5ô™ôé8h xÍ %ÖDV0 ÂhI`r ×eÊ (€¥4QdyÚBE/[âP¢­‚68ãBi“c¸ÂšQ?f5c*w¬Mˆ±p =Á´H5¸e=2<_fps<Ž]¡Xµ63ꯣaÓ'¬43ZIÜæk– òšL¨±~Ù $*\¼;Œ‰ ¤± [Q5©ÙRøs®j|Š—«o†RÈ’ôB$xÑÒº™í.+¡uC§NÊ;ƒvf0rÙêí3pÅ1•…½÷Éà-8 crÄþ°%جºÙ“,©`;RÈ´´``Lëc8/Av|Ÿ²Š'`Î-À, ‡j*÷Éü8ig!úŠÞȇJX»)‡Xá:Çl ôšxX›å/†rz (vL€ç<:0Ž|(F·i‰ƒNˆ9l4ÎEÃ`’hK/(/[dĬ Â9¼ƒè“wÈ•ðîC1ÏŸå+n¤µµµA²UHÀÍ4Û¶mµ_ m¼AùùS˜wß¹62wǶ۠{Qª?ª…ÞÂ`ʘƒ#•P_ëNAƒÚ\)ê:a{šÝ' ™þxv/»,ÉCaËó >Bé$}Ø#á£í­|;Ì)ž ƒrvŠd^X¿ ;ôÐ…ÑÉz`…ÚšDq)Ëæ ‘–xýbàˆ%2´Â8ÂòÌ6Ù€ŸAÅä–6\3¨GÓ— ih€êXt °3úÚø ¢jºƒáò§lfWó+oÀ„—‡ô•˜“ôz :Ç$ÞÌðÄè&²m°IÜ| ŸÁ¾œ”°sÁÄp‘͵ü°Î.!÷†3®} [†< xZAe§µ„ºÓ— /¿²´…ŽÏ‡uÛççø*S´æ¯ÂôÎg‰‚ÀˆMû¬ †6g´=!  ]óä'›œ*‚gpYØ’qßó©:!+@Ú]îäR„*D4ý ß ]WäOp›^˜Q'Že‰•aèÅÁ6åÈ^\ü‡°øuÞ Ú@ÓóZÈ7j¼‡è&Œnößi–ÅP½ÀÔÄrR¹¨J=WãË’;É_ÊBXU:}ŸeeFïíkípF´¢&y :w>ù2Vô¤»¦ãq€gÀ u»êP¤zh™™\ø}x-:GàœB²¨„ðfg^xx@ÓA‰)À1„çü®©«²aX7V‘Ö²†.Ÿ€N€ ×3‰@£ñh@nA®9µø¸$˜$íQ¼Ø×gEÈv§< ‚5žÁdä³ìr©íÄîÒù0©3”r4Ozh(ÔOÇ%Å10KdnkZ<­Æ¦SÂÐ:hÑf(¯dr*óacCs,MÅçn SìÑ#€´Äà“–)+uñŽÅáP;¨dÅÖøŠñª¬†l¾:ž­Ãío_n¾Ù=ZËû›Ó¦Šáyfm¿ËvNÌ3µ¤h‡ œÖ („y‰iì™Ðĸý@V¹axÃs¨|þd}ì B¼¤4µl>Š ªÑZÈ{Á³B{÷ñ ?¤Vvô˜Ü÷#öw25xŸò¡:™µ6~Úí{µgugwY]#›½%—‚¢ÆÉhÄšcgMŽcñ}á¶*ØU)¹•n6OÜ”-‰ø1Ÿ–‹»áhƒ}Yƒƒ²v4ÁN7¬’jÃþ úNù Þû²¼ÀùÌ„GR6:Mêçƒ|ÿûa| œ L 6et7>±–?Ç àÅBxªPª+?Ó^±Æ2åX*tî¯oòÞÛx›½8·Ú3™õÇÄÒ¶1êC$)˜sH4«E„À¥‡vZ¬§u=¡É‡tžyŽÐÀúP’‚L¼F…¹ÄÐLº@ &)Kغ¦íùz,µcªd`n£éT¼Ì>·£iá ‹½eH½HÒÁv\‹ †P•8ÓeúÍY0jÞGpqñÖd@ô9t ¬ÙBø·Ãs£Ó’²X/d6ÄP)<9ðÃsÙ‚\ /¢:C§ìœÓê=ÞuLüŠŽÏ×û‡;P³¹¦ð,à‘FsT!<ÿpÙ]fpdè¤DXÃ*9dÅ˃ím£Åóz{ëÍîæÑÎÛ9%B™é³6;ÉÖžSÐì@Øï 0c9yG³Ü§9ò§¡•{á8å‚L<ÍÖN* „™Ò“%ÙRsI†aÑ+RÅMŒZîä‘_`Ñ>[Øqä{ zCRÛSM»Âl3NÒ‡&‘ÚÅ{ˆ‚à G•¿ª•Ö¹âç@ ´gÙ¢Æ[ºŠT„ø‚¸ð\×Nö v‘µÙŠºùß8\Ãõ9'`çØF)|}ÈÕžs[fû›˜É»µÿbÛãÃÔûÚüHõ7) Cš¤†ñ¼Ê$†@:†¢'4¶£‘çKRX¯X!/ÝeEËm€­5õ€@Æ|üT#|èQ¿7/Ÿ¶‚‚hùܳ·?×-1çYÇ?’ßÓ>åׇSû,AZD™0 Ü>Øw´}ðjgoóhûÅ0@4v¿ÃÁ’ƒnH?a¡°!.ß^?GÎyH†n¾~C:¯ß‹'Ž!}l¥éáÆ½õ†æé×WzÏu§R´F .Úr<물†¸þ = ¤ÄÀgJ4-g§‹3˜Tøkh¨SÜ¿—¿&ä¾DvîÝ"Ç–5/©½CÚχdŽé9ÿò¤—ÍO ä¤3ËrõcgÖËÍÃ#@v~âßísG« ··ùר’Nœ1d±˜‰ù|’*k¥DTŒ˜‚ú«èC=qìp>!øTdWè ‘|ÊÓ‡8Q,rx÷‡ªHªîV'(_æ"IÌÍ5Xãk:3CäéìO„d(NTÊ|Â;uDÕã6d cŒT“‡C0žLWArç"P˜Æ¨œwè­=ï×Ç’ªøå¸Ä5Î fz6„Ìg¬¬FRÀ¡O¥öÙ,Ä_7Û)È^Íq‚Íüü ¦É\–ÑîãèEÒy5+‚µO€Ø|põ–LÕ(`„õÿîIq˜ÏÖ®di»¸¨B³ÈXÛMŽ ¿Ö6˜¼ÖjžÀ6ï¿Üü?]®¾Av{FÛ•-šoÜ%µõ}hÛFÜŸYšÐöÑjB[xÝÿm>Óýù´?×ðÿùo@|=ÿoøèÁãÿïçþ‹ÿ÷ŸðGù–À¡r±(ñŠÞé 0¦ƒC6ÛþÑwÛ9ö`sÜ¢Œ6ŸÝŒfܘ…²ÎR/°\3^gõ…hBÆ¥x(¢–¡áfçMË;æzjøxr¦h8®&ØÃä¶þµNÒ*ö ™²Š3ÇÙD¢æ4‹FÝ9ºí ‘uòÜcjÌ|-‹­¤™Æœ$¦{À/l®:ó·êxäkÍ#‚ȰÚâ£Î&e•·)O…lRScÁH”e˜xq‰JÈ„ŒI¥ç²ïðlÉ3z{1>SO'-“Îã£È·"›±Š&lœ!.V «_ÍÜqð0;j:xÿQÅú·ìä>­„W#óxð ÒR pAX‰# VèÝ‚¼»Ò{Â!K´?ûï¾µ?xÀÆ"J&œ¤E ¨S‘?vãŠjG˜vúü`èVd¾Þ ߨ­f\N¦çoKØ«Á¶žþÑæêóÇ~ÞâÙ(á#£ $H¬^•9p†S†@0Þ—g@*¢£ R¾Q“žEŠÙ%‰·ÄRÏBÑìaˆfRj-£f˜-Òû}fm78Çî[(õÜ#ú¦L—?ù2Ø=’@oTó›_Yfoç#EF•àMb”ZÑIp~Šãå3¦dÅúÇH½§É–-†8¿²•< G†Â†a#Ÿ¦ê6š;9/åe³:3«‡'²¸À„,ùŽ–¶J"P^7cA}’Åo'VZ•Ê߃ås£¡§oå—WÊÝH1Éb¥n?±©%àaª“)KŠ?¥Ò4‹¡¿veñp{²GJ#–‰91*DosÌ\$C ïp>šw0Cïð±þ@P¤îr™eªkhªÑjkE݉g²GK´p‘3GwF†ÃÆ¥ÅeÏ/²µSToÁ<Î6Ÿ­—‹Z¯Ìx®Ñ.ÜÛ/wö¶óW›xú!J½l}ãK'Èu?iög}ÏV´¸µÿfï([ ûÚû'ý{¯6¾zÿÞëƒ7{Ûø¯Ãïw^0ªÖ¿tϽä.ƒ»/œF×Û<ÖâøÂ&âu:,ÝG»µâ*+¯ð¸~4¡‡4MŸ5‘ÖÝ&o;+—;Kï·öí2’Ô\íDÐ=ë€HkLiª‚6Ûy¥µHëDHÙå¨AZ¸Ça–ï6©Ôb,#Ao©º²øŒ&ôQçÿê++õ1¢[D ùÏZ,ëú¯Õ"m[³kƒ;ÂÎ —7OLÌÁMäÊ œœÞµ¯•޲JÓoïêö‘Ò/;hZÅ àú’a † 8‰¨œ_ø.ýØoðÛó¨„àstJ@Êåšm>âLjÃ!¸$< {@ëm´v¤èã‚í*ƒ1õ¤¸óá RÎtNlêD¡›²” +aæx:0¯RRȨƒÀ±…§VlBF\dJIà £ñ—¯Öî}ÿ®ŒHÎM$²ÛÑÓXÊAú_»#`?ú“zPËVª»Î&™¡¨Ýc–M]…ƒ”ç\ÛUêô–e~N„7…WFüHß¾ÙÝ<È·ÿðú`ûð¸¼ó£ƒíí…ø1=žKfEHJ`±66/™‰(pÀfC¥Ú@cF5+ô,ˆ‰eŽUH{/’“P͸f-ù ÍçJyô¦µü•Èßê³)Aš÷9a”?Ò dP”x„óBŽ$RnrœêØ‘n3´´ðIêÜ“(¹ Žó1 àä7jž4€©ŸCðz¦µ Ĭw‡'/£¨–­:ümî½jøîUg ϾAòúÔÓú5Åÿêð¼¼Ê_ûaÒÿ¸®ßç½WXóºqÀÛ`Û®ÚÞ0KË!öpõö^nÚ/{ÈÓ(É% 2‹h‚hî„Þ³:ÁѱŒt,cj%RH¶BN|R|u˜)P™³D’i™VÎhC…åªcYß$åLgteŒ ô­ƒÿÇP+éÇiy¸¹ø.8¡8”è…"X8 cL— g4¹:èÏž"[àƒƒ¢ƒ/GJ¼ˆà/œßú)_8õÉé±R4A¹0¡è"ïs¦õ"›–'áDÄ•öÔp$ƒŸ .¡'Eï wÆÕÂÐÝIÚÖ;´:&Û/güï™–{ƒÌ»(ìy€Ý)N4ãqù>¤±CÃ}ÕÂa\ñá<18³­5mõEC©kC¥B⸘?@ñ»’L©uÚŠà×wŠÛ›÷©XÆ ¹¥~d„…£iÎ^¤çzÎÀG÷¥Ðu/86éÃ!*é Á¨¸»3Â1ÍÄ’˜j·`Þ‹‹q0L±2æÉz+XAºÚ7°d,\w YŠÏËiA–7ˆæÌØ .#™¦¥ ØA«­c‘vÍÁƒI|meîÚœ–”Áð…j‹ßPë]ªF+d¦€¥"/Þö䡚;Õ´Dðæ.ðe2lþ)|щÅèžH]?ù¡Ü\Ây’ѳºû#¡¡hW(¢=.x_¶5¶§bèWb ˆ¡9®Ñë(?ðQÂ<6ÄUš ©–Ú9º)D7Á}sÖtö-›ªL¤bÅQfv¹« N†@Ëß#ÉøIÞ{]3Ã<ÊÆÌ*Wƒ .õÌWÐMc‰³œݯœ"  (>€t÷ˆç©àƒbV"ªrÀñ~36¯^„ùc5s,uov:ÿ$t‰²Ö±’8.q v"ž !Y¥^ª=„>aò¢ ‚(œÞ`ÑL¡%ùrk¨Â×°n9.%¸šEœÞ:)E2‰v‚’M<Ûê!l(Æ y|I¢&&b×—´ª~“z!OÞOR¿2(ô’û/A,ÜoAùät¾Û¸­Ã1ÛÍ"gq„qb/p †!;.¸ÓËÉÔÃO¿>’š½šU‘÷e‘ä&ÉÝU!žô…\¼F©YÍðN »æ"lœaVÉuÊYó´ÄòÓÕâÒ¹´+ª¹áޤ‰ö˜R-캣9é+tÀ×ö÷Ü€Òç–3Ú{õ¢tšÇ÷¹¯”°ph&ï–ÔF¶®B‡õgUf‡RµùÖtaº¤ÔçÉSžý7MDÞÉ@xâTÊ(}7}†}£ B(&1k’ÀœIˆœŸ| ž_:¾DìçËõÚŒ1¸XèŒÈPƒ瘙¶<‹¿(DÞ(±VlE‹E¿œ÷/‚ýUÌß ¾¹Ù¢Î{X„Düü{|‚¸×FBÈv–k½ç¾§{tà‡^.Ùè6¨“êdq–Ù•Ë:¶m­*rT˜´sÚëp²h6õuXöÈÊR[•°paõ Ás°”N8˜×‹^è— ÏXl’;žQp]­ –‰÷è»°› :àêsÈ7zÅÛròY/ §Ób!=‰+>Pø—´ed ç%æjx«œDKÒ_JTXVúIòòIu*Õ§2¿Ÿ…?ÉˆŽ»¾)­N2CPGTI bü‘ÞØŽ9 C~\‡ïL·˜Åªp±Èú4 ßô¨wsôTÝ›oŽöß½Þ?<Ü><¡ˆ'TëF¶ ¾/Ó~4 j¾ ‰Ö=0?£QŒy°[<ì{ °^Q¼ˆÛjTœx•G³¾–ûä ÔU¯QI(‡„Å‘™q·Âö`M0s€qu0ä†í²ä ÃÔ¬ú¥žÏp$˜¾È6÷Š@.Ü­¶õ³ NG˜ßv G0²@I:”BßùHß{&0¡šFŸSrŠ.ÊpÚÞì‘°Æ&”´)™“QüsZ½'d€0@ý¥øì³·åå¿™‘a^6: ½¢(Žÿ­‡N5˜høùßzh½TÎVçD*§7Éóà ÑÂ>;H% ²´3:­+_­L´XöìEšzz¾Õ®ôQÎcBasÛƒë×­§‘rH¡P¢Ñ •O#æÙ vúL‚Á,6°dÍñœ6_bÀÕb똴û•oÄJ_»zhé¡CK)ºëŠ Â.ßÒ%íŠ Ã=¿@ó¹*1~ÀÕÉ®E.œ°‡&fuûQib‰>4ù!\."Pœ¶L;¸_ òç‘MŽýãA¾åŠt&F¶¹`R43‡°2‚³H]bÞ«JÅoòà D.H‡Î¿œÀ/‹™ :B¤…¹ydssÎÇ©íÃu;Èš$aù¶ü>b«¸(µ „Cȯ gþír«3M,¼úâòèx¤Ò”ôØQ¥È)øW±hOŽO&jDSÊV‡i@™Œ—¿cÖ;‹;ïÑÐ. .†Ñ|¸gAãÃ-³b_áD}±–oS±ÇD½ÜÜÙЋ”3vÆ"&©aèd£ø¥® ²&mFY7:ÅP5ièB*ІWheb=%ØÃ/}…„•5“V¦œ©¤õWlnóÅ›{G›ßnBÑñ¶·.餃#;Bâ°²iW†‘Õk+DA²-œ{4á¡£oUi4¿ulÿ{qG/>"Ë¥åvàˆmÇüCž…‘œa»¬úûérr ºÊ{¼)…€–L VuUÏÊáÂòî¦ÞdUæ/p£tqœ¡šÆœb ÆÕíh—|•ð:Tc(ÙÅ7jÊSh"s¶lœ;‡¿hï¤w fAçE#펌þOXñÞIdÌ?×JäÝu3Ø+Œ=GÇæ°ÇRd®±ÒUà ˆª©ûzèîn– º¹¡·mE«ÚZéC§t^UDöÄ®uq£ˆž°®õ"úˆ†‚aÅ•ÝÔ£¼èA /ïA¯ºv®½ðþЬFUª8p@v¶c0q!^]üŠ–wî._¹’÷­N‚D—ÿ'âÛ@®åtþëOüçü'Kç_Ÿz=þóÑúÆç;øÏÿ ÿùOø£øO.°‡ðÏ/ò½  ¨ùÑ? þɯÔxìÎõ%ÅPeX©Ç„ŸÇAA™XCݲ±NOi6çÄ¿¬±4¼º4ˆÁ5Ϥ{~?UÇÞ>ö9«¬8Ú\¤g+W§èÛØ¬/½We'"iÏNlˆP/´» sk–UÃJZ/Ò›zè?Å›jŒìŽ¢¢.g…Xr¦P+ Ÿê²‘)Š„h†ŸE¿ï¸Úå $WVËõ²ÖÁ¼Îê+a%ìþ'é1’þV(' /…¯ìâÝ@N<£ÌÅcPªáf;.—&x·Î‰qL9èæÄhȈᷚAÜÍ 4ä.‚”?P-jOú ëÙ2H»h6'åTÔ¢ã¤Ý¸íÅð5W™' ÿ=aΑàþ±CÐÉ7*eÐÂÊ ò«­Òß9µq¤þÖÛ\¡‘.ÂõÖÌcpE 1yk_Óã̵ž›/Å™IeòµsòS¢üç~˜ÇUpuÚPÕh%{ˆ.‚‹,¶ØwÚ™3}r„΄Ç¢¸j‰‹éAÝhwW½ño2{ç„ èú‚¢È“˜)âK¢°<ŒUðQ.ÅYÇüA;,e³ÒYN¸r%‡—Ö)«Öžg¤û#èÐâÐÌEmuÑs®?;cÎ3€;¤)Û¡Œ¼ÎOFòÜ9JÄÞ)¥3Y7”Yd´0§5£áæË2 %’øj›·úëex b¼R™G#mJK ~#‰°f˜à1G<ò{Á×ΘU qkÒÀ0.9ª“-/⑯³Ãôj(ŸŠ#hýX¨¶u¢¾d±J²È ß„hD«ÛƒÞ‡ï¡óK²Ï*ŠO ÑáX‡¿a3›PqÕ`#B_d$¡‡kЈúÄž§ÐfÇn|ïP­¼ñxëΰŠÚœÌiÓ7+| x„;Ùs-„!]c`Ý!ßÝ13CÓ¾I tÈ"þa.†© 3ݸ21¼yµ&LÙ/iúþ?ov¶_mïæ/÷òÍ'b£«—íתC&LuÎéÕÎm7B‹Ê ²8ã»Ã6ßÈëO$IÀñkÜ/ŽÇ÷Õ)íÀF½â¸7Lõ8ìü ÷­¤pç Ñ¿v¸ hL$ÍÎÐÞF}âb;"æ¯ÐãÝ:´Ñ6VŒà³kFPäñ%•±’À^EqäÿâŽÆÉœó‰{JksÆÃ{š(¹agãγæI;M°Ý=9ô”fQ7„‰§Ó¾â5<ð¶üû0üõGøëþzŽûð޳(ŽÐYªý׌#O½¿Ä‡ú¾¨Â¶r%:˜Àrh#-È]0’˜làŠ‚Yüv-çräN #ÆÑ/p“§I%H[5òòcÕ`=M:ËÎtßïšg>n§ÅG g§v ¾L%ïåY=u£±ì+àt¿X\騵¤sœÜ‚m/Vü½kGõ߬ðàÍbH[¡ ›Ž¾DJ€;63rl4{Â>5,8ÙµQ!ÎfKÈI‰¤ŒD’@Ç@ÛÀWÇí…DX+/±)&ÞÓÅVmðXe<ͧÁKA–"”™ò“·]ÜûHËδÀ + Hk:.Û+ 5c,åŒ ÷øÖ_áÛxsG¹Ÿ­’ß«UC‘šw±,_()©ÑÑë|¾¶éÔz)n6[¾“­¡›¶UظνOå¾Ö/‚×$<'ðž=ñ¶`Üžð{3"ÉÏoÓO1v9¹#1Ôî÷ck\‚OˆäOæaÖR»TOgÔ¥×Éuó‡‡Ëô"øÔú’P!šÝ[3ˆ–s^8Õˆr$Ú`k¥veÁÚ øk›ŒªÉ|ûb±#þO &-æSy‚ðoeÿ‘½Ãt ŒÌˆïV~ âO}QìAÐâB³ë‰”{Gì‰60µ÷èñçáÙðàÇ«¿÷ü&GÑÛ¶çå¾’±Ñ¨“ßzç€µÜ ÍöLtÁ8h£'÷UÆ®4\ˆ¸ØdryÅ{ÒVñ8e4=ê{&ùk‘'ÂåÊTÒÓ|ÁIJ) ]Í*®Kz6bì fýL—ãvµx#+@ð‘vûWµ¡ËBº/ :¸×5½Ð´=¹=®ß#auÞ–—ŸýáçI}ú“îÉ%IB˜c’¦ìaø:L(w>ëóùÔ­k'æÚ\†¶¥娲„à‰Ç gŠI¹Ä9/~ˆ[ä÷C(Yؼ+Ø=h‚[‡«/J¼‡ »ôÖ–çÃ6M›†kƒ+©ªEíèÐA¸üýt­ _íaÞûËa&oŽw|åeæJê\®<ÆæòèΗ¤ªË:[q#6|%Ê^¾Æª¸aáÇ­²‡“æSÇÔ{8=†µ©WÓ]¤•,‹ó!ÐEÞ;C²¸'g&ºëCƒÓªœ·@]Y0²½e|!°· ¤‹Ôœïçå¹¾ò¼˜¸ü ÚûLº÷I" ó@%ôÇÅ"TArI‚ºv•´Ò`ûßë ‰RÖtg öÊ\ƒ]!L!¹ Õv·&¼Á z4tà†(+¸uç¸* Ã>«[Îä<¶ÓoÚZV K¨@Ý.ˆôÎhû `Gt¯c)Å 4wšRƒë‰….#€2CÖí›%ä*jÐ ¥Ž”÷?ukL+¡—¢½ÅVLkñOýU—€ Y ÝvT·±ä–ªK7öã·w•øóÝìÏ´iÅEȺؕòœÆðøƒG0îÚðD~?­?ÉÿS§&¿‡ª7X}©k uµÊ}"² ‚mø×ÝöÆÕnuLv@“ NZCƒIç“ËG·u>s•½z³{´3:Üþ‚dæ0ûqçè»U&ôSËÜÔóê´š193ó`Zªà‡64ƒ¢sl’:Åh~¾ö©|ƒd£Ý4#ù¾\Q6{Àê7¡›X¶kãi»0Ô æhãÜše<³lÊÝ'Yœ(„‡¬¨H `=U…’ûÓCæ<ÆÛ¹T ßÕŒ}âþÁD›Þ$ÔUâJ “c÷PÑ›^ †â'©NvCDNÄ"κÜè‚À`<ܵªÉ2̹¢…0Ú"žÁðÍj2™r:O'G=-Ÿî4ŽwŒ%ÌGFyöìOëÓj¬ÏLg𶉠&‚cº0˜C“ÖR #84Ý¥ê oY¢ítcyÜ6xCëi#¢Oü%žb ̱6tµÂ‰ïó?ööžïïŠB½Î<.C êâUf”S-vœôR<Ûßô„òäãI,g*ë†Ñ/0knÑ!ß™ TvЩG¾¬Ó-Œºî®õ‡…×i¥yš1´\Ü{löŽËèn]¿î–°Kbmmk¸´ÿZ¬¼xÿZ\÷µÙúïÉfmbR\…§Bc4KÏÖË%DË%T̸Þ-#„IóüܦXT0â¡—*-î¥eÂq9§x2Õ•h!kï튷Š!¿5êÖ$Dw¥\ãZ 6NÝ •ësA ñS Ãóê‚s|DcŽäcLQbq EDPÌ1!ˆ.‘AÎS™ÓÕþÔ³bz"“Ém£ùÓŒC‡8t±NŽÏ¢«öƒ ?Ê8¤XLâÌË´U€£B=!¢axÐF1«Ý2¾¸×|}iÏc3Šy­Ä‹ó>[pUˆÏ Ž¿žc¡S"#]WJ•õ‰Vñû*†ÏË☆êM¦tÛL L­-€;j~HÖ‹†I‡‘4 KE’M2¥=™]¹Øs#qTÈ*ªÆ3zÏK|u"·cÕ5;Éôf‰£þÕ6/’Áò¡Êú™ìîšx^a9L_1ÄûÃBRQ9ps†vÇ.«š`òvá4)Tê‚Âqhu—»_Ý•‡v pÒ”®Im’†|±äíõ¿ùêÙúÆÃAq<î©<üø1üª8FÑ9tÍuÅ(>‡­E¾úê+|MTûäú®EEV¥–¸E4í+®*ùKa¹êùÄÉ 0PÖ7À3t7iè.j9aÏÏ—ì–¬OP^•Æ9™m!L7ˆ™S6ìW!Í‚|²cÜÁ,+Æ‹d- V¹Ä'múV‰‡Sfð˜;üé¥ÊÂB>3Nð¨R¨HVt<`„ÿ¬ »µY]8÷°WuÝ…[Æÿ‚¢ RÊ©U^Á…šFo¥Ä“žžpsDæ *Žƒà &GCpÞÝYõ+#$ˬ耱”Z$¹¾â^J¦©iÌYôùd5­R÷çyÕLËbÂnG“Ö3ª|éd ‚²ÃÕ»2Iø]ï`|> KG:åÎÞËýw¯6ÿ°»¿ÿýóí`ç½ppšövU·«úTÕtRf\ˆ,‹Ù•·Üø)É+#ûbôà ×[ÛåK"$üïߎÅ G¨,í”kZSå‘p,Lm¦8#ðçu±FŒ‹Ñ?´!'ƒùÕpÕrI‚î1ý'¡b ø.棹1t–…トàëŸGùÁÈ@ÉÙ3¨3â÷ ë6÷´¸ÔîØaLBа¥å †ØDÈa£!ß²˜UÏLÐU™²-*åÏê)|ð×AÃ\X³i' ­¬î ̺&´uS Iê¢â{3»guË ¡F‡u¤uŒˆ˜çÖnˆ›¶­¶vRCN1¨ÙUÖíÇQÅâ¬eb1,K²U‚"Ù|ļúŽPíÝÇ.jö²4×$XûŠG@e˜1%¨ŠoÒO;†Øªz‰U‰?FAEIï°ƒK´B<¢ Z ò äåm`E7hò££.×LgdØõÁðˆÇ°9Êz¹HLsS»oÆËyÒ ‘Ã63pq±¸&üI~äXJú$bˆ›s'x*4—BCùöºu˜ýF±—…2hG*G¥F/°l$#ùpgëDÂ:»ª฻¦Zë|˜5Ä©AØÍdÆ»ƒíã0¡ZÀü'Qž –²½ÊOp¢QõD4Uì)²‰®·ðd·XèMD§¾êgÅn‘tìäšQšäš™—Û+ó‹Ð ýbK9c%K0 Þ–Ió‹W'lÕ!†®óìÌ<æGagаËä¹ Ÿé­KÒkoÃÆîA# 6²À<&"’­éLØSï~°–Â[Ú )ˆM&¹¾ì&ÈU¸W/È_"'ÜŽ çcQä@-ãiÁ(<øA»ž=å| Íê1Ã@·ÝôÊLêQ ÎVŽ¥ ˱Ó2–œ·Z,ý;CJûEÝ¡äbÖ`)l·fÕ•É`ɇdè3ªœìX@M1<îÈEƒÞV3F$¶×Ř<»¨È_ ™%5£6DIe‡ÌN&Þdäk‘RޝêËøÑÏ¿øò÷Ñó°µz£·ù|‹°—ÿ¯ûvįaùBê[æÛí¬NÜ& \û¦Ì©Nz=A ìÛ1®êÆÙ¤ cØ— Wñ…îé0?zöNÊbïðº)c(’…y)Ù:MF”‘'Чµü¢ç(}WLÚ©ò.2±5R=Â8'†‚…]Jõc6Œ…«ÒjÀslxoÙ£êssj:ô˜LîŒ7ã‚óÂùœ¢yÎJ—ìöQRé„+Þû-Ä/€¬bND>å¼øâ°ä”o¡^À½F80ÐÈwɵBÛ—•n¿·';3䵚¹ ¯ÎÚŒ@d ÷ÄEÚóŒ¿w+JÕU’­â¸…ÕoÐÌÍ… :à D]ûl}Eçþ§ÒÑ´ˆ%Òt4ë¿ÿÍ?íϵü/”>ýåyüèñúã/ºü/ÖÿÅÿòOøãø_Ž€7 ø_:U-ÿ±õÿºu±òÛG›;»íªXW³Eñ‘lÆòHׯjv\Ë×Ñâ;³¸ òíƒÃõØ|æßß–ÕøýȸK¹Íòü¸GVģDŽï¢‹ÕW.$ÉO0ué¡…ko< jÂôŠíñp=¬e.'žÇEä|©]¢6¿‚¿.vu”……©2¾;Þ]/™ ø*Yiº^ñNM-@øþë« é=dmoûˆ,ŽýT^žž ©9Ù™ÅÔÃî–3¢ qLNXÄ£­š]Ñ@ÆED*TD1ÕßΦŠˆÆP 'ü~Ö¯JâlÎ’½ðæÏ†^ˆQ9GÅ¢×àØ «q¦3«äA9éTÿº©ðW~±<žV ø‰Â^ß¿{PVÇÁ¾¤G]¡7 v¶uh.Ø…§ úɈê~6¡l ;*U™ƒaµ+_ÈSIӧױɪ€ú áV³”›&¡(•–ÃÑKP™Ç¸ åuÍÅT¦’ÁÄL€‰Ú¤ Hróòž@uŽh™L‹Ô nQ"œ†ÈQ¥C¹—¯Ìâò• ÞÔ¸¬(ĵ€(±r䘨þ#¢*sÏËÜúºJ.J#Éh>½íç[/v¶ò­ï66·Â}”oí¿ðÕ_xcŒº)ôì©Íí |Ì*d;AN—Yøgœ¦îº»ØPÑ¢ã+©IíCîZ;^}nÌ‚¡þð‚Õ¼žQ¥nÉ#E‡øz´Ô ùêžýç¯pßžÌ $úÁʬàwÃ:÷Xj)c;d!.¿/ü„£åäO˜ýöL<å¾R²¸Ë­È»ÆþmÓºæ½Oœö‘!£…Úü߯ãÇÁ*U—9 s…›m„aŽålFÌLûMmG$»¡Íuôj7ÿªÈÏ‚ØyÖûßåñxŒk¡é}Ï}u¿ø:ëußÐôpòÜÒrI”·:Q#äUµŠze¥ºì6óáëí-ˆç ù7Ú9kçhÛ×8Þt·Ctññÿ,í¿4ëò¸˜y¾$Ä2ª‘2ÄÑ¡ä Ft¤Ei‰›ð¡V¸D½ST^`¹¸³4ƒ`^q´±6Zyq—s y§ØýFP ÎJô€»¹9»r“„/ÏhlX{s™5½óJØ­0uQŸší¹X¸Z,ž;ˆbí :‚ [ö!OJ­Ã¼‡d¶t=uêy~‰Ñ\hqýsü'mþiu¢uÈ Ûñ[¯y[?!=‡!=∱2o™ámy)”†­±¥, ¬òçùŽlq˜YŽ,¢ÞNgÕßÉ—=½êÇXÛ/cÖ4>G„Á —Ù¢ ŠËa6ÄŽ£È¾OÔìc.©GÚîÃUGÊ‹T’ZÏúÆ\¨5Ø’¼]0hM׬ªAŠÁ¢kpbô)*@ž†/–^ÝÁ¤ŒEPDSzÔci)=;üY¾O;ž©âó<¢·?’ºé¢#™­>’ag¯:’ùŠ#™­>’»5ñÂBš—t‰æ‹Ï¦Öyµ³†›£oo?hv¯~Âeöã»Í#Ô©3á n|å« o7æJ?âõ²<ë­A~)aöÚTÇ-m7Q†kNî°HúI4?V¸À™àm}¦¬/'›²8DèfþR)â|&Ëó™Få¥6ÚØÄGàC-¨°Ràe~²Sõãpˆcøö;ae5ˆcÆ\¼Q;ïö_†‹)Ì f‡²c…€6¤ü 1Ôix«Q–¹’^‰Âd„еÕÓ~ ·‚ºÇW«Jyñٱ˪G¾‹Ï>;¦ç1 ˆ‘C<ÝÛ½¸¨’•=’‹‰ 4Z^Dü™ÍmW·ø»ý×G·YJì­.¥~uçÕηÍbÆ-%—SY[E—ŠF‹H)ô O¯Œ Ñ… 9ï· Z¶†³Þ"Avý¼ØGAónsoë»ýƒëÖ!ëêï»uÈn¹BpÝj©µY¼ñüÓ†—ÕÂeÙ_bø=œÄQPªË`&ÂU®;°œÒ¾v/ïsL82@‹y°˜ÀZr  ±ˆÙo³ˆ%@×ßuÑê úU ßåºPFë英0 •  ²¢…@MÞYÙ-‚bðkø£Á;Œ~”‰š°!+ì?èDáªÆúBM:åßÇúõrs™0\eM¬ÁŽœK'Í08€Æ…=| Ñ*¸­¾ã @^·ïG\äU¼zC¥ZHËGÔ ¾}hÉh\3˜†D>Ös„a¤]ƒë2ô̱$3¯Ä‘CÃOÊ 2KgLÚ• sî|]9yÊåØgtLPøVÖîÊYY\H~–L§¥ÒÅO(X2gHeQ¡P}…fÁ;«„•‰T F+Uì¡ôn¤1­ýrVjÄø ØÝÖïÉÛoç¶õÙòÔ©#P] ªŠÃ¤ž×³¨þA¬žq^ÃrÆ“”k1_fABNŸ˜Ëd]Ðá@ÄŠœÀÄkl òdà) ´ž+^i©…¬åȃ–vàyGƒò;ÎϬտ·.¬£wßmo¾~6¸ß û"þÕ‹í×Gø+ø.C: é$¹@©¥BEeå*ÿG;RÍ5{ÆÖ'꾓™Ä‹rÃéC‹¬ZPBö*³Aw&ï‘Á|YÏ'Í0š!òCâ•]\ˬ‘iv~Èó’=‰1,*Â’Ÿ‹Ñ’àÌÓëÒAŒ!ŸÞA¡7Óø£ð ž@:Gá ™{.H¥÷Õqu|µ6ôåAËëP® 9 x漪‰Ù¼Zábô s·ºˆ¢g½Ÿ~}°½õæ"í¬ÅÌà:‡·/€ÌE q–H l C²‰ã¾ÊÀä 5³QûW˜gê0-`E4Íõ…ìPe£z„rZ U¸¡ý.(› ZdNéû}Ê“‰ÂrA𠨛p·A( 2’5+VvSæë„ÐË’‚ê ä¯c qºIxí2_™ð=è•|ËÔ“é¦{[½µp*>¯?5ìmÈüj.ð¤t9¶8¢£"lmŠq8Q~\ÂRœµ|{¡ãHûÁú€sfÀ6|Ö›•—S`ôì}þ TöèwÐîò`61ȆCCT£(–~ÈÙ§°ØâqÙïáªúˆ'V rë ï‹ù¼‚%$y=ðG}p÷eÞ‡Ö dËÀs„Ãð—õÈü^êÈÛ:Ø}9¤RAÌuh)ÆÃW™ø¥xR\iUö7ï½ÙõuJ«¨¥/çõ`EF§z‚tú„KI];[œOÿ·­‰9–N–s”¸ôåˆ\VƒË@¾À9g`¹B(™¼Ú m¯iÄž”öüXÕ z5ÉNFN¶›† XÇo#…,ЦpW¯ç½\·’ÜÚt­¾ÔeKð×ô“Ö׆¹’F_ÚÜûI¾×Ù)ÄàÍOÉ;Á€Yµg|8lyø†ý#:xCÉ^s.©˜«GÃdg¦àúNœ…(†Ô5QcAßY8¬ñæ|’Ý—­Obë;ÁåW¥X;ÆÉ©ª5¦e„ŽmÀ™(qh‹¯¿-gÇF¾¸Ëî[¡çÓ-…j@̘«×=«TÞSª«/$—Ù*\E˜£ôà1P©°“iù‘‹šL+ã¥ó¼Ì€§¯EÒÔ¹øº^§®9Pƒ¿(léáìejooîî:¶…D-’¬Ñ{td©íáb–Õ%†öƒi eÃ<°Ânnr \ 5éÛò ]‚ÀxTŸ+LÃ(àL¬– î!¢Åz‹W^«¶'ÞÜîÌ)ÁÉXÌkâ°Ã1(áZ/½Åòo‘ƒ~¯}N½k,Š•óûDÙ4xÊq¥”W…{˜ß–Ùæò8ÉJ~0ýÐ2Oµs/P¾´±ê܇çÕ‡ŒêÞÖAP:_â½" ´4´S§¨~ÿáw²n8tJah¾™‰v=? ĬXˆƒ©§ˆ-Ž6”·£ˆþŠ ¥÷Yÿžkšý8Òݰ\ „à‰7{;€Gèícšò0ŒoT€5%c„¹±Nó÷4DN‡ùæÞ‹üÕöѦýÊ#CиȲ›½ÍÚ)¶¾ælZž7@!ÖrBSYˆ ÓBpÞ”S¦Èu$J•ÉkêÇìZŠ“VÂ&†>‡Ž|€XfDñËqŠè/ r—'õGüD3˜}^qº T%äÒc"¬vS9=!»=m-R7›«oÌ­ÍÃí] `@ç›jà"uâ– (‚d7¼AÑÄÔ »`½†)ÒFÆltÞ·<\í{œìÃaNg#Kwl5Ï5ªÉè¯Ì Aò೑ƒ ˜³÷æ³õͼÿ}XjÀ³I2ÃÖ¿x™õÑr8È=É%‰|ú(ÁUÉ“,rÆN™~ûG›:¹˜s°³uäBš+ŽàWÜ Ì1ˆV|ÐÚ S$î›yráZHêÛÑ›ƒïw¿ƒ>B:ñËVâ²|ÇâV‰€ïÏYew«»É=UŒ†åËÑrþb®°^›Aa«‚ž1;]¬SŒ Ü\ïwCgK‡è,Ïí@8—Õ²?Á£’9ÜáûËå¯ ,ZràÛÜÚj–!:Óð|ÊIM~&{{²)(CÚr¡”WYK^‘OWõÄ@˜s ªâ²P7†cÖ7ãÙü¡úVÔ‘'lË«¯Ò®,®`bc+?BQvYöæoKäCn¹Px¥o4s^˜ô·Öòýå¢AP~»9 ØF}F’)`Q¬™·%Y‚[gíËi… .$¶…×ÿ?{ïÚÞÄ•­‹îÏõ+ªÕ½ dÅ6¹H‡-ŒIÜ ¶—m’ta—¤²],¹UÆÎo?sÜÇœU2¤×嬳Ÿí§;ØR]æuÌqyÇ;òüW65P5§$ aä*ª€0ÙPÃIàwüSt3Sl|Ú­ºÕ2ÖL^Ñ»†é…¡©¥É:ιt˜¯yþÞ_ GŒÃESŒ úC0¸H.à£)¶± ƒë.¹M—ljé+‹‡oïз[-ß> í£ãâÄö%_=tOÞjÞhP-ŰÈàïè.å}·aW}vQ¼õ „õót{ì¿Ã…üÊ*Á›V ¬ ;RY ¦E˜ÂC›Á1”!¢èìÝö‡)â_¿wÐô4Sdíã–êõœ’]aR¢)˜M> wA€ó7ˆ M Ô ¤bRîwðáD“Æ’í¢,£²"7W‰z¼ÕEéq—] m.Âc1 DrN—¥dÆ_p¾KF UÏp2c^”«wƒÁàƒáZ¼ólxŒÆF’oà ¼Ìj­¨ ˆý®þT>= ªèóŸâ’R÷–LÍ2Æ=£·.´Tvä ††å’ x£XÆuÆÅGµpqŒK³]*¸Ì§.ï$µƒˆø¢±ÑL€~ǦñS¥œÉ´YyV0×%>"Ž„G¸Ü­t«ÒÚ¹.À3txp¼÷S£Ýðdo<ÓU”áÒë%;kB‡/Xz.=¥®\™[Kï’%±»ÿx÷±Æäqw¹©ÎcïpŸc+èò JZñÛûrDa¬ÿ ©Ew#We&Ä9EþG€á±ÕœKñ2 íͼOÚHiýUéÖÎh"…êÐ"xD“)¢îaœõN¥)êˆÇ@u–T?Äa{õìàh·¥6[Fùfb.SÚW3Zw“YN`å‰À@¢Õ¬}¼Èš¸¯¤u™’9YÖÏ$-0b…«ìF'›î!6w©>8x¡zÁÚ!Žº@ÕÓ’ýOÇ.Ÿ=’^âuOd¡"ÀH¬˜ ÿh¸ó·ã§Ããï#¸‚[ˆQiO¯B ò' D)§E–#ï™[Ÿ/VPø•V/™èO#j. £ƒV$Ê-ЕέðZdú°Ë„{lí¦L¸†"ÈË:C€¼,È™-ˆ†y€cѪ¸:ëqA rÅícÐ6H“Ûyl´‰§Gv~Á:Ž<&µãcg¾Im"=G©|iÍ3 yÝÄ#©xåKŒÔÅ)¸Ä2Q$š5jHìÚȺM+[0˜"?ä Åìµµƒ¦O¥!“ÑzQr9Þ È£@{œ*±(5xž¬ÖXÜÑw&#áïy«¸d¹¨Ê#¤±b{‚’îeTdIQˆ¬,h]:ß[¼ վطTXÍ=Áø9ƒ}Þ¿ëìr¥¾Ä %o GãÖwc Á†à¼¨#¨¸îlí*üt5á‰Êˆ® ÕAÏ—'q˜Š]±¾ô'lñÿÂ!%6úhðàÀnž¼”‚ Íecây†÷õ‰ð€šQ ËhÌ ió_ÏûÔÔ;“ù*\¶ñÏÕ| Î[ÝÑXâ—ú=XæÍñ'—øò"\Ø^×aB; ­€¥”Š‘ÏN)Ó‡a“Ë©' kNÛË>+ì@Ó’e­KÁK IÅMòK÷ÃyLì Ìi¬$yPÂAõ׃½}TDÿ­ÿôöú7hŽ„ìè÷gt€ìË?éÌK¬.ä9ÄI{|ÇÖ#zÇ©}EÍ Ã­Ø¡+Üù+h¾`H,Ü¡cmøºÇ=‚ Š"Ý·´ûÀ§k¿¦ï6'}fìŸÁ~GÅ7\„O>åâp†Ë‘€[iSðþù»ð%x?rÿ`€—¿=?_ó:è^|~NW¾;??o}°»òœ»ÿîù¾<¹XˆzqÒ­$¨€¿âŽÖDÉW1p¨Íê‡ìzoôã‘ÛG ßv[Û¿å™è÷‚Ý=ƒƒ²—ñød “v¨2ÂFjƒ×ÕÞõ%ü0ap Ngb†a´(ìù®cR‹T¨æ>¨k|ìÈ$ íàCéв„èÞL`ßpçT~Ikâ¤ÌÔÌ$à+5P$ôF>Ô%Šô;Æ,ø(Z1£NÇ3ÄÏ¿Erûe¬WVe­ÁÃÎýð|NÅ˦s4qãü–-£Âª[ž„³rˆïÙ<å–Ú‡æˆBów<Ç~›9g/Ké,a+(Ò.©’ÁLXó=_ÄŠEœ'ñÁè´.ÖKÃù›aÄ™I¶`xúdŒ4PÙƒÓ~¤l(ŒÍdÌÁ™»w?X=£ËƨÌ$GòFt®Íˆ„!¨¸˜ajç%lJ@f¦‡*©6G![鯋ü¯áú»×8Y!+ÇŽà˜ú£5 •ø^ƒ"ΉkªŒµ×ôßÉŽ7M êÝRh€7bd¸Å"@0ìei{‘g—:ãÈüYÏhø§DÉë¼ídΊ`ö }ÅÜÖRö|É…10;‡Ìš•ÒZ1û‰ïÛ)ìæfç8 òÖ·zÕq¶7FŠÚÂUk?“ù£:ÃækïgRã£+6‹4|bèŸÐ/ß%®˜ž¥øˆŒ"}òŒ^s%dfØ Ù-Q(mEíÑETÁ—‹I’¿RÊ3¸Š”{ÒR׳d3£Ã=ÜfúR}ãÑyŸl©µqF¥r2+*F‚ëm+éqïÀ°®w†úb)Ï.cÊo MÊr†î}w”©Qî·Ê )=5ëFß“¼Öb¦)ìÎǾѾ!Æ"äA;è%ƒJP€M˳b|3,È7ïTGª|Ë5¸–s!ïŽÈi˜w÷xgx¸ûøÕÎÑ«½ãWOŸ¤Qªä§°Rç%œyÍ•.A¹fee‡‹8ÅÁ•¶_íe7¤Ið±•$1Ç­³åUMßì‘ȦûáŽ,þñÆxü3x\¨\U°0¶0¥ L aÞŸoõóŸA~~1ì‘8 7½ã›j¼ö‹GÒWz}vqŽD—|.y—Ü}„šdF`¦†r¦)Ì•:rʼ©*a€ÃÔ%žü/ûY° m”‹IÌÇšm ±SQADE¥… ’¨ÿ³8ß$úÕ)µg“Ô^‰“yÇ[­õ„t>H ÄgËñÀhìf„c¡hv²C|áBœ9^|þ*›îÎ¼Ž¼±ZscØsOëæW_}%,*œôK†F| ޳å² R{T­¨Ã ±ÍÎVHH*ñê°žr”l'¦Õ¦”gº“äù±SÊiŸUS î½`3~¬iNÅ H•{tFuä! éÂ~Ù¤judõ¤FOØVÏH» Oƒè1ãd#¤+ afá}\Ó¨éG|ž ウïãc¹vX;, /¾,œI"ÌKdO üe†žhÈ+jïdœn„Ü|F1Ã7fmXr’Ϧ¦¿(ï±àú:O¢‚΋™9ý s¯ƒwt¾îP s”¤/†&Z:œœëG$Þ«´œµ¸)ø<¬ù2\ÚÕòš©DAµ©)+#ŽÐ¿Ü}s—¾A/vLvCÞ¹ÛIÛx÷æ6ªuŸF¥×{©Ã3ã—Üýê«O{Iô‚¥²GlñEÞå½C®ù{[™«aT°mÌ]ŠŒ ›‰zË„ãêÿ–Ò¤,p1 "“ÕXÎ)ª ¢Ì"«Àù¤i£noxÏ0è3âSY„b<–F¯n”F{mb u;ªfâÐDæúÃcLD`5óÓJ6É*%‹á}8ôÙ ÷ çžiá?'  ´õ<,‡Hn{bk¥~Ge#k(­‰kް#ÙáÍÑO< -LÒ‰˜N%Øt”d*ÔÐÁ­íÆ:ÌÝÚvIaAÑÌÂ¥v Ž!¸Î@€€ kbBdœûÈaVù6(ßH€€OJ.·´v¬;Om ÓÐÛŠr^íµ»ƒ–Æ<ö ª½°`¦þ V1°.)¹x#FI¬ÉBîŠ1‚𓬧|óí)HI&VN®n»/g¾ãOºœo^®­U$5oÙÚ„(‹€9‘ß‚X¡×R%K"Ãé"ÇæÛÉ=²DÂoðŠ.gç¬v‚²˜v½ãÙcN«ó2,CÞàxä°q¦)ʨ…|'ÊgkÍÍMܶO~|uüüèèà»áÉ.»£ŽÓ”kŸTLØú1Xg˜{H|Õ8Ö2¥ŽØîÉÏáñ‚ •ýµ[ã»ih š¥¦‚_é¢ÉÙõÄ…ãûH¶J:wh¤ìf4FôÅc½ä N»Q‹+]åvŒÙæ õ½ž•þ˜C´ï=§âunƒù‚€{W‰Rý“N…2ίŪ?Uwx¶šy<@fG%p¦α¡ ¤­š÷Ö¡ ¦/©iÀÞ\¯ì?ŸYe‘ôý›;Á&—‰ûÆc ÿyÚ§¨ Ìó$3ȼjñÚSnA–ç*„OØ`.1?Í[°Ë ÂZ¹AâÕ/àÏÉpšÄ“ðЦö¶æÕλüÜyŒ;Ï;ž ‡†e•&hèÖŠË« ƒÓ!³TæÏfo8ªçÓÕ²äìÓ)§êŸ¸Œ”¹ØÏR]u†5·Á˜åßEÁ¡®bõñÞRI²ÐÈd/¤1H·ÔÖ s€ÀFâ>˔̋耹Êéob?[Tfå¿#fâæ™ º[¸x‰¤'a4ÝÜéB\XÊêEÑÖƒSÛרjN"r™Í™Ö\Ro+¯q¬ÜR\ÓÎ ÆL‚`Ín>-û3ã÷“.Ùc‘]H£uêsR}äÎÛ\:jw7gÆØluktÝ ôÄãñMøêÛ¼«Chß/J, 9‡ÒÆÐµùìú"¹¤.€iNˆÄz@n9 ;Y·Vj«¶vÃ>Æ®À"X‡KD-·ƒ`@¶xIü޾K å›ú HbEf”s”Ÿµ?Ëü„å== ôâwõ»µI;{Îõ—ÿÕš…—ÿÑW|Òcö?úaŒ«k½zý?úÄõ÷¾Ñ{!F†dë/þá£/ú„‡\éC:@ÙI¾þѾ!“^bhôýF°6)h2M«Ú!÷(À'ó¥ßpwgЉsŽpƒøb²MZ&Â0’N]¤ ÁX ídÒ2bnZ>¿ISÔPyÖP©ùñï¨WÐ9öœHk1ÇD1÷† AL´üïÀdg·ã @‘Þ…ŒÀË¢B‰"ƨºiT¸©ka†”ÐP—¹ç?2üŒÌ!¯p@ü5ò;@d…HÕ|úéWsÈŒEû"Pþ%‰‹ÐÌ4Ô‚”H ›ûXºD¦Ê hßøL!zò–†ÔŽ»„¢‹ §¯/ ˜06iXV”€ Z×.…!­®%˜´HôÖNWC0sˆÙ¿óãÖ]Š«g$Lºw·µR•%#Ð^Q'™ÓØŸÎN',“ $b;­j¬Û’½Á²¡§üíûQÆ#Ñ’j j(Áè … ÝN%çP`!‘%æb@;:Þ"|Q¾"!B¹vsÐwF10Z±aX79”õ¥Õlî ÿA«¸–Ìձʌ™ÝJÇÈ›Mxp€ûN!tŒ/gï—§(ÇZäÿf$†êªëüÓ' à ȻuY~”!“çƒëøxQö¿q%~‚[W?)áæì5'¿ÈŸ€.vÎÍׄÎéâÕ“£:AfÕÛ Ÿq-Á>° À}xÅÕl2¿’*¤q ¦YØ&"áÍ Ö²ªóÄ(7 ב[ÂY"„Eˆ$¤šR¢‰ñ@óš¸Á0û1¬œÕ"ôš ~U¸ üiY¦A•y#Â8pÍR®Ðj1ûhå’Ç`¾‹™ú#’ÏWg猦$èŸ{iu È[·µ}o¢x¬Þ´ÌÎA$ãéÉ<›CRÆèÙpô,ÂúŸYÂ.£ù˜rD49»€õY´}也^“¿ú44¤ /XW’ÇŠñde«JÔ[Ðb-¥ŸtÝ,çÙúP­)*“VuO¿åå»ýÉ ‘`è‰âú‘;æPò9ýóF´ÃÜöôCŸ^Ìÿ>›}àuùîpüA5D%|@= ¯Ë» ¡AÐRÕƒÅëžr],J”2p$ûÙ²¬ ¹ë+Ó<êWüö¼$â,œ @m„«+„öx‰Ö¨ 9¸Ë§Ó©Í9CBkðkédÜÄ©Â#;ˆ.ü.4à}VÞfd¦ÅL£ª¶Te˜u'9¦OÉh  jBP´“T^¨-PBÅÝR^L x»-p!I}QŽèœ‡”Uçn¾ŽŽyØ„a×4«W"'ÿ#•b×cF'f5.Ãþ»ÎkR:o­Ât¾ k|*y®ó^¶š…—íÎ §u"nччÛr¥5"|zW.>ý?=`îFJeòýøý“p\µ~ý%DP•Ú¾%hÇpœ•ñ7÷ð›C“±ñ×_s«ªäó!Í Xþóí'4úÅb1¿ ‹ 1Û›_Ð%ÏÊIµ‚ra`äì°ËîÊ(ïMJ(cq­Àaø\RÉGWµõ©¦V>}"ëg“’úGáòúA—׿¹¦m>±[ÉS¶“æcîÉ÷hÆö˜F4~û»O{2P÷´Q¶Mƒ~>Ä®» 8vƒñä¾Ä|7îqvŒ'ÝXç1JÙÊ(ªCu>VÁxž›5 Z¢K7ÀG‰qÔL8ò‡äÚ‚mŒÂê< ø„*-= Ö‰ ”ûþá·/ÊÅ‹röžþÿvsþ{þ¿€¿î}!”ñ³sk5’ö_C¢Óï B¹Ô®^› J77Bãb_lÄ4ì’—Ña÷?#ÛK2xïWÆlÖ.™; ÿÖQZDŸw{Þ¸MÒÏh÷°Aóšù–v94 ÐÆéa;ÂfzdØѢі &â#ÕYtÜý@ßX…@}®" ôó¤¬ãœê • ð˜OIŽÑƒëJ´Þbú;­µ`(9édRNîçOi@m÷yÿ“Ê|¾¿lnt¾èë ¤•£Ù_:+‘Üá ªÁë.¯ÏªLüÿƒý¼¾Õ ä ‹t4Ao;û8ê z¤ð³¶vQLУ¦î²8© «r?ð¹œî;]ÉÌÂðÔ 2¬.,Tåyͬt\èÜ7,YP­¯å‘-ãÊ í$î«â¡·]ÏøÇR2èUÍSÞ÷üÆŠÿÑõ2\œ‡A‹AÓpxw$êÁRÛ*Øü 9±/Ê %ñZªF‹7‡®ºV(Ÿæ§SÊÞiÖVã‚ÒH[J_ä•«yu/ÈÖ/p•1DP»¨ÌöÌÕl´†ª(ñ<Ë]Gâ Ðh®÷5|±ÌpZ…±;ë (|žz± ®QçzMÎpsÂðgIiâ†n$s8bÕBÁdÚWÆZtŒ›;;æryÙukIÉjâZŸ%)’…©¥æOâR¿­‡ÌƒB*2xICc\%º ŒT Þ¯¦âoAskµ¨µ."n¶²NÉ`ZO©Ìô>`Ã'p°z¼™ZÂ{³6Taß?2k‡ â`ÛaZÙ_#0å`UIÞ5ì_-¦SdKúoNz=ƒ² ļA™Ã¸³`BiÄ´`N8u]´gàjuzIÓ {Ùy´”0ô9½"CÆî°!܈€<*Ë›/&¤9­©/¼Uëk¸4OóAþ‹`—'«Î™ômUè™ÞtÏÜÂ2¼D§Æ&ÌÈU€’L8[Š »ZåDÆ g’CìJ V æàyúÔì î NK°a— 1_¾{qº÷öí‹ÓCàp‰²eE|Éú$¼ñðÆ¥Ìwû½?1âµÐµ:0fÀþ=¬„(Â4(_ƒå!:©=F>ŸøñxÏ\á#!è ãÓG¤åPµU”PZ\¾ûõéê*º›Åá»ð±¨³TXI£¼L «³±«Û×!$~Ÿ@.‚æÒÔúùùu”ÇFÌ{ò*aœ­Pų2 ƒL¡Þ Š {<É‰íø–6ñz?73%²LîCŸc‰ìÈ!b%Ü& Í]õ‚ j÷±¢¡W%äò¢Â®¹Þó)m"8öþ¹&KRœ¡V\p".Ã~4žÝhTí¤%6ØU-µ!=€”x½ïHŸXaý‰XÞÃð×Uøý« }Á.KÜš=ßKM6À…Æbè°Ÿ…‰ Ϥ‚Áñ#O,3Ãéé5—·b è´à°DJ…ˆ›±î%èšT¨„ü¥˜~àÏí¸?òGáŠW;˜=r?>ÍÝ“Š ÿþ’§üÍá»ü×¶ïX‘¢@¼çQe‚N ìM_?vöÏ_»UÕÏ:ÃÙuGIGœßßE²M<°‚ëh…JÌ‘1ŸZ÷º¬?›Í{þ]8SQ%:Ü"ï*æ´5çä8\]7\ì‚Þá2‘žâž®QÛ½Ù³U {ñøúb4ŸÖT+*ytMçND9|ÆëCRž8/ ðŠGZ8Ù“  ŠÕB ´\Œ&͵“#L²²#$­TLAýÐÕLQ ä…,k!ÎàU1ÈM#'tL” Ã|—ªÂxðm™MH°£¯ óÅ­ÏvádBö¡•Ù‘ª ÌéU¢ƒDÆÈse.N¦àâæ·ÂÂË¢C¤ßÇK>èÒl(QÃûðz geô”·ÉcbÞš÷:âשmÎJí!Ž u'‰Ù¡&p¦4·Çnêˆ$SM±)`‡¾ 9™cz ËT]}*“ÝM쬙¸ÓùŒ)ºœ|P8UDЏeq’Ρä;u8ä×ÿãPµ–܈ÙX‹¥ÆD¿lIn&”r£]‘AÔtÅç¦Q{nlÂѨ!ÀvÛëÝÌMûàIøé1‡£hîöa%¿£»é@ ;œšG™T3€VCóZ–7‘­..qHÎ(Âh7G‡“†½…K,à Rº2¼p¬ZäŸ;c|º±¦7H$Ýf±šÍ4«éPg9Ë ƒî§ÇÄ¡lB Ú¶î¹^/°PäÄ¢FRAYøØ uÝôÔ¬@‡*C™|gq}£„Çò•/2‡3mĦÂ"Δv¼à¤NJšhóxÐßô&¬‘âê2³ŠYŒja"í»/=GA¥™à±…O¶4Ëà싟¯ª%(¥T½¦(¶WLž²žñTƒQ–€°~. %€ÊC)΄ þcd‰ að÷©D¡ \ï _¨mWøhŽ£EP¢–èv€Ïò|,‰tü¦§vÂÑ…?éUE­(øpŠ×¤žIä×CSø©ßGu þDüã(±>žÚð¸O]÷øCæOOƒ§ð™Ì^¾ßÒ{‘L8þû´ƒe¥’ohú)•|Saˆ”yX’ï\›“opa³3ú‚zDxÒÞàOê ÊÎq8*õó×ÑB°ÏiDA]ýεˆ?¤wþLïtQП§­ÁÑŸ/×ÅEÃwµ,”2‰—¢²*X3V•(ùv÷Ó?‹þ›Á;o(BP/+(/#;d=Ùý€U÷ ?OŽÝ‰ü<•B¨ß‚ÑôýÓU?ìD´bŸ.ÜV%@«5•\çýãsоq&í…Ì„Pðfn‰9[¬“%¶¼4N¢§KKî5]% <¯Ë —žyˆ W´ ÊÇ “F%•˜ïV}™,ñF]TõX©ØU™Ø³ ‘‚+BŸ<èÇùì„|~ç1ç3‡ß‚ž#Ω=óÅ!µ€P(ô=Iœ÷k#ÝúL“µÅI4|v‡ñblZ…ƒoqÝs\RKçànÔ’Q»$˜Y.4º¤h— ‘3×­ àÁ†Ùаstá‚gkµÀÜCð Ka¤(/§ÿª­¾Úù~wçoù'Èe6±ž+ç{‘f¯JÚaä0—L6c×<­á$Ç󪸤fªÔ™KAâKÀ|.Ùó4îÓêmn…ìëÈ=‹ºLg¯&f§ýyºÏöO惼̲ÿÃ1ß5/·-U(©ÃtBËH¦TVSáTðêÆ?áesô^§’>ZëiX¯*˜ñ…µ÷\¼wX(A»0Üg©tyñP ùi¬å ÿ;;¶I÷væóÚ¦ ÞzoV[s‰®’¢)÷QùTmþдyÑåKêãZ<û´ô–ûß Øþ\Ú–yÜâç4,•'Ž1³ü|òCD‘uãÆi3Þ_?|j.ŠE©î7¾SÊ×NiA;ÀîîÑÊS„3+WK`L ȱ}M>èî]w÷î †=,}ûîqË·Ñí'-,™¯xr¼§WPÉÄ <çx¤a¥Õ¬é “o,çX˜¾;Úmÿ./C'àÄ«öÖ\åÞrt°æ‰Ñƒ¾züL/J‘Úáë7ZtœÚ@>~b35¿ çÕ‚òß‚&w*Èáã½µYSÜ€`¡­ÐføîénûwÑ€=Ý[s•{ËÓƒ5׸q LüÙC¶ð£»ÀÇ@0ó–ªkÜì1òÞ~ xrôטe3 Hˆ‡<ÐìuÒæáz󮞯>‡4] *3cÒ`,êy†ÃŒEß@]„•ë«]›ðß]«#Öˆ¡qØÏ»¶Mæ7bøÊ#·¸@ìœDܲôEÆlP ¬¥§8(`°ß¬k ª @EÀ-h2üÏ/.ƒ…¹ôP„æ0b”È“6dš»fZ;VÇ,ð>â¾ÂÑ0&ïìd‘€Î³0¬ˆÜkmœ’c,ôìè¯=Z©b1ɇÁ6}›oÝï}w(ÕcÚTòl s¸µ5Øl†nŸ‹ßŽÓŸj ¦1©\êÕ9+ÕAI· Û{þÈAe=žF8&3€Wm´ -ÄÊ¢²É¼=2]´‡U0¹.l SпÛÅaÙË:æOuŒó' WKÌ㘸ŒKDfíÈÀ¨”}„Ör\gŒÃ:S8i÷¡e[ƒ|w6ùh)öb{?&L\'Qä#²Êžx¾z¸€ ¢"Hõkbë»ú8‚iŒ™Õ4ïùßæ <$¹"A}=¥ú1ÄÛdŒQ9E9RäOûùýü$˜Ž?°éøÃ rù’<,/ãLíŒn…ûÀöÉ›@ <ý>ÿá#Éñª“,½÷?¾áf\[ø„“dÐ>Oæ“Õh_&Ø“9aãåäÅ`bIo㪚,Ï3H†@àÏ?þÕsŒç;‰g=åðŽ3Yi9‹³2c‘Ú¹Aa¾ˆ:@kªBÁ_.Å .ý2º”MrÜœæO0؇lï<ô&ï6zÙó«g8sת€çˆ8¥Ó´¨¬ºÓ_µîôˆ×Ư®bƒ?·`uhé±î9)É$´Ò!â¥J&|{ÓâµóU²á¢=g~ˆNÄFšø[xÓg‹òŒ.*Ô ~“£½ž_1j°™&wBùœŸŒ×1ž8ø®}/bC-U{A¶×ç#Ê ìã¼f¾kAö¥°9µZ22"%γêz(²sIh(0ã2—Yñ?œu•‘W /q³UÑE§;*áܾ’þÄ`.J‹ QD¹S±Së1â×L²,-“-ö‘‰ ÷S^r bˆjûzòŸ.k¾„k·7ØG~ª/å ô­4/¸šø  %ЖŸŠY[ðÙâÄ.Ãá©T˜ê‰ÝÏ»´–{™9m¡åòÈeœóQÌP. ¡¬‘¶€ñÕ­ó×þ Ž.6)Ì[“uã:¼-@§ÞÇÓqúÂR ]y ¿-X´8ËKˆRQ øFh¨#œy©ésŠýpjÄý¬/ôšL k¤Ÿ_† î½*„³x6kKþ…—³öœ]Àè~LyÂÎÖ¨Û-N&ÿ´ß §Ár4›uÐ3:ÆÃ>…lÞ0^z¶æû® Ô;D"¾å ½/.À‚’–Bí!«ÉÊúS?ÿ_ýüçÝp˜dH(Г¬üiãÀiãÊŒ¢åpŽ‚9IþdHiì3ÞK¡ÊY·øž Vƒe›GàÜï"Â,:Ì‹),‹îºRìñ’¹´€öîûðCßçßóOFÌ·ß+F£ŒP\šº„Ù4U&Aý¤àg¡ãM¥JBéAoÍY„¹»ødŒ2û$¶£Ò'¨ÐÛé"O•8Ç»_—´ö7«AkÄäS‰óx½*ãj®˜„@ƒ/~àS"Cà[ôéâ¹%i”V9ó¬º"ãOçóФQArV6K'|>ëPÆG¤”Æ1&¯îÀeì–Î P¡ œÛ0C/Aµ‘U«¸ær5qS~mo‹U\ò–ާ„—ÖbuvNã ˆBô Û„¤_æÅY÷¤?¥ !%Ò„z„A¸Ó°ÕV õ«.*Ȭ &wðîQyŽˆîºéÚ^ Å®‹Ü ¦‹“˜ eé €ÅÍ–À¤±Ls£-±;a2f"M‚Â)å°épWÔ´Hþ¹ªʤÜÖ'Š£±ýÞœcO™Ñ!Û㉙=p‚U(¼DΖŬÏ#!9.aÊ{7.\Ú%è~•ç»m‰ ®¦˜ F7¹v_þÅàîö`“ÎÂ06£jR{?Žþ Ç«X€ËÅÆ«¦8iæâ¤wïùh¯=®òÉó±ÊÖB,üôààoãƒçû_=:þ›@}îÇS§H•µ³cßF9Cóœb¶ìŒÑ<6®ÊŒÍÓ2Sœâ¢+0pºº ß\±÷CêöP^ºÁÀ®·Q!1D¾†ÿ&4NtYƒ—Íå¹±VÝ}ø—bZÒËD¸$&ŠÄiZ—Éh¤èØŒÝ'ô,Dòô¶oñ½4ÓÇ4±*›r°¡T'Ð|´]1-„Òv#1Ø}øÍ_B`ËêÞ‹½<•_çN:×’IÇîДsv™didóÓSNü c:zlͤ‰LD>-Šn_Y½ä,nwH¬.ÓJÆÜ*¾¹³³œ¬³ ëpŒNmmø“ø¸ÂÌj÷eäp¦³qû¥0°×éCÐÑ`Ò\PkTlÆÄ6¦Æã±|Q¢ã¼ð©×Lõ+;ÚÏÜ Ó¾ºhÒc.£?ž#ʸbÉ©ú&\…ëÒIÝßUg~P×$“»ºñ㣄œAœ´@ ‰åð¢GÑEWÂʽæêaúÈh³¹!«n»ºéÍ,bƒBXn`G†²Þø„åoÑÛ|Féš¾kkIް¦•UEú «“7ñ¢d¼ÁFùÀ/\ž;¦ô¨TꩳR•\ÇO4×n#CGÜs§b>ÿDÃí´Ôj`î¼hºI÷_Ó}ÍkV™!˜\DÑô')S£­/Ð= ËÙÙ ?%qP¨›¶Bj´Ô¼n#¿ú‘Ü2\DÓÍŠ#4·PÇbMæJd`‹ó'×妦!':ç”ý,¦bÒ¤bm$uÏò /B´c¬zgÜPüøGá\fÿ a|fâ@ %(‰MyG7*ùp>ÆcEÇ«±rˆÊ¬Áp7ÖYmïRÈ‘Eáu”šÎœ¨¸³ƤÂ|Ž óNÑi9´¡=®üë¶ÔÏÂŽô›ß´ÁLD{çŸKÓê¨Ih~8œzÏ« Ž19l>“ňcìs9ê|ºB›n  ÕÁ“ÜzD ƒÒª6\W–`Á”Uµ’ÄgÁ)Ï‘Ào@ælMíœ<:xj,ùáï]øû’Õ>NÒgn/ QGUÑáañ8æ<Ž#pBÚ¿¤„M!ÒiõU,ÎVÂ&צ ¡Í4Û òDì §MR8‘\a\•w<Ñ]‰<êD0@…TØMLO1ØŽˆq@ĬV™ÜÊ®ÿ¬‹®b >ûÈ•5EqÂE<%¤²­Üomç<Ím†ïœº‹)&«21ÂE·œbòv?:§sŒi\ÖdˆF9°ÿÒ´"“-«R0ÚXªS4¨ÆƒýzÀÒl>µ®Ü/—L;Âî9Ïÿ+ ½ÒŒê À\ñ³3ÞRdTQ}Á.ôuR«óñ3b–ÞéjÊ(Áf†¦M’Çàañ]Ÿæq>½D» AmÜœ+Lw-£Ñ8ÚÔAa‹T_…¹dþenÍê™Í–—¯1¢UzÓ¶yšþ2Q ­åâ\û¢<}tYüc©EãY`¡ÚÈt’d†ÇRtF†‘YQn!¶ÚFÙ'ÚFœŒÓÒÌð¸`è µ‰ÁÊuÌk9Wq ‘³L™`› ,2ìL¥™éQ¶–Nëé“&é´Jñ¾€Ò&PAœ)Ü¡å-*ó¤X±#|œ÷¿KˆØ>V+–’õè@ ‰_NJp¦£žâx¶Ã¢:]wT(z¶Î¸Ó9Þ[sÒçîHÈ>zÒSÐHcn_·îÁÉs'GÅ•Ÿ=z²÷to×UV^ÍPÍZk¥yµæœðhTX4¡¬Ò·Ùêú@|ÞÇh?wìm@ø%5ÍælÈx[Õi”=É7Ê_x3Ÿ¾ˆ'ºñ–€1\M'ñÓ—çìâG¬›¯"Qw5+“Ô¤«×ÓhÂŒÕé4ÓP|Ô@— X¸étŽªÆ»²V§¹7èÛ¥¤ÜÖE5a÷˜Á&Ÿ5÷¤{bP 0©8Œ/]%‡—÷Rç¶<– Q*¦ô'yü°ÿ²ßQ‰öÍÅE9ý NM]4KŸ@gq×<Û=͉,A*ÄZL&&C¥Bhx*§½—ÎÁAI;ØÞM}¦}­ç]ëY¼ÖѰ¯–å…³hæ-k\{6Ï„oAj‘´—™ã wKdîc_H³§ÁqF“ÙÄôSš=)œ Á«ÝýÇûOÿ.®Á´1+·ÆFŠg0b4d”t¡–ødCºXùŠlmWPäÊÀ÷`úoÑØ3YjS™OIu?I ŽŒ)ûì×b4þÓg‘'2qîu‚ˆxѨq'“…?-Hï&tšÄ Ú 00 d@*-×Ç^÷3©÷—kªHÖ¼%P¬ô^ çÓ¶ŽŽ—ìWs†¸Ç¤­"Îfi°…â853µhnÔm>æÅ øìM»ö…ÝNÊŒ#aÿQÔ¢ý®)òGYÖqý¢Æý\»ˆôÓ‰ëjбÎÌ›<»Äªl ÑTOyC­‚í(Ž”äL•ä¤ÖÈMf@8ð¯1ìO|›@`AÓy{ý['–0á)£1 㗋œK¸Ã3`åÄÞ1x!ôÞx×+²$9ISÃîÞ2o4]‰Ñ)Ý7’@R4bÐgOÝ£I!K;›Õc™µ¨P4=òD‹^Óx·EÖ´ÛzàЩ˜.•êKó\C$ß²Â[ƒŒQM20ƒùÉó§Oó㓃ü{¸{´wð¸Œæ“ZÏ/ÊýOb¯†Hít钣ť8G8‘ åòúTô.âÜ"•N+2Z­pfÁ°G\ftžh*[ý´ínKð½ÇHFüÆED /†7R\¼žî‰˜È†6†n@ÿq¬Â}œäü û(,ºŠÐîÀö0m`Ã…ÃÅ2$œ–Ãô/Wælú𔡯.0+-Ç)yÒátð$È€ö%,0¥¶ý)H0j}è?šÑƤŒ¢Žü+&ëp$²æH@¶Ä)XÅ»•Œ÷Èè’zða”Q½X”gà AõX»ƒ^O,,Ø)t²qÖºŒ”×n ‰xc$¿­5ÖˆæÝ²x PW¨G7_Ö&Û*+T‚å‹U5G™¤V}bY&—·†‹ú¶v©TlØ8çÕ¥øÈ4PĵëÐ:1ïN[ê_10š¸Ä} ÎßXç“ _ p…œŠERÕm1£¼eÖÑõë9*²*ž{k?¿c.Jo»ØÃ•k Íï©ìØtÊheÇìÿÀÊŽâ~6<Ùù~oÿ»|˜‡žîæÈRþ|ï䓺eëjÚiî`UÀ®ßèÌ.Œ´B¬º=Ú¢÷<[E?~ \>ÈF×Ëòìifºà;Dgá6½4¦ÂK3þ.…´FZå9®rèU’Øzl‚ö©ˆw*’„ÞÅ–ôœKpÇÊÏ E¡÷®»TkÅêpÔýL9É\)Í(ýùí­íaÞý[9}ƒ±×³5„S_A%Ià;îe^ç ëÔ§¼h¡¼ò `·œùqUÌ–\@[ûL¹x1ð–fb™cÁë‚m²`Q|á é(SHh_íŸííœô¥…ñ’“ —6ã'€R)(e}ª™”Y)îíÆã¨øÚÃ…ÒÚšMžìB­éaÙK¯·“è Xc ³":HØ!‡nq˜0££Ë/ð®.o*U3Êv—¶^l¹ÀMϯh€:j«•7ä­(‰Ÿa/¼LÍÀ¨0xK” =OX‚TSMÊ–!yQ>îGŲ/ûÄú*´¼(¹€6ÏÆDI¾A~õ`´fKM`Gá±ÜÊKÀÔ¹?€£“/X?“á£Ç»O¢“.k¡NØ3^vÎ6*wIŠÏ2Féd<˜_¦Q±ä8ï …€µ¢µÐ c‘Íoˆz:UE>îaç …ç!iXdP}×:ÛÞ»NöTÓW½6—NRš]hY®O²KØá¢Uö+$ÊÂù ³r¼MÐ|›,†§è…Ö„½–’ŠFÁ)?Œe‘šŠÔ®9‚(AbšmúdiÄP]ÕlŒªòÕó-1Ÿ(˜ö:V„é¬M{/ùÉÆE¢ÖÕ¾¤ÎPí»‹>‰ÓY0Qk¥&FXIÕXMã@£I4voßdNÅØ¨ÛÚšçB™•/l~1Ä–¸ô"ƒ>,H á|XmqK WûY‚Ã>4µÑÆdã77§Ü OnÉFX·¬(šÆÂ®Ã'ã{vƒœÚÛ ûøMµ˜Ï0%æAƼ޲Ë[ KÆaÄümÑöny¬ó•‹"+Lª}Ã=­–XiƒBÿBf|t„‡”H¬ˆæØa¬ñÜn\¼æXqÅq‡}ïHÖ]P€›ÇØ…›æŸ"FAœ^® cÙU±ø.8äO†ŸÕ‚“"Fˆ_Áš¹Y0¬­†e@A±J&•Ÿ×WÙaUŠÔó gAíJEÃðîr­Š"o]ë¼ìÈêX ´ÂkzØ ~øåÇ—Ÿù2÷5ŒÄ%M4+ÏÆŸu;?r%¨N/!{”† +<»ƒú;X¢@]ûGø ÎüÖtY@‡À˸ÆE¢™^‘tˆBÖ,ÂËC/_”é'(“E5s‚…R¡¯æ-,ˆìùxY@U‹ˆhIMMƒ~@„§Šƒ¹DæG60ãG´Ó5?—©‰ãl5_¸2Îdu¶‡Þ'iybe‚õ5 ‘ùè¨8Z¸Lª–¶´‰êÍ»_½äÜà1ºº¸­1ÿ‚ZÚæ,ÅÎc‚ì)ÏVÝ;6߀’òluü£»hËgÍÂÓʲ@7ßN€— Æ'ü ÅquX¨&®Ö¡ç¾; ?çp£’ºMò˜ãçGGß Ov_íï wÕÆºšë&¹ç8ËtÝ‚àwŸ€S=ð0Æ^&”mìzƱ>#/Qm׊šPǺ…n…óM¬:"¶YgÂWËÌ+bîÀc³ŒÊvǧäcÜbÎ\]γ_^†.¾(}õ¿¯Þ^ÿVŒÆ/ûÆÊÅ ˜2A3ªqÉãÊ©8Jà rùtCȶ˜–âýA£ Æt|ÆsòëùL·¬ÛHuêY©Ä<ÐГ@¢¶Rÿ»@ÔÅpcC%ú‚-Íœòµ6 ü–'Rá‹æúp*·…6-ΰκ: ©Kè¶èÝ;­OB]Ê1žTQkù.( B’¤dÕ;IÔ¯fô9B|—ÉN‚ߪÂÒÊâUè `‡»GOópbìî?Þ½1ÖR*¡Ñål÷îÃ_ÂúÙ3údj2*–ʤÄx b Ù#Qð\¢WœCrá*A0&³®ÛŽ+²Z-ö©ió»Ã°,ãbKšp›˜ý˜#LF:*pÚ7E ;©OûæF0a53äu ô@Ýésÿæ’Í«¯v¡ç¼ÓíuL )¡WäQs|“ÕðÙÛ·F¿Ý¥¹âÃ_õœõWÏŽv{™Ôbš¹¢Z(ŸiÏ ç]J*y' L\³Áì줂õr> “fÏŒb­¼ËÚ]3²»Þ¾ÛÚ¾û¡ß8êœÖ÷Ÿ}•ýr÷âý—4'3ªq¥Sƒ¬¶2ù½¦ÐIX7i½=øç—]Xw§ÇÇò¹_(ŽE1¬"€¼¾¹Ü]øÏ¯ÉVŠÏê’-lžJf#5ãym»^TTv•˜ç/¹´éåŠÑ:‚œ²ÇL^؇,D"VJ¦p¡ê¸ÃÓå‚ÖÎÊ5I`ø¬¨º,_Ûgçæ•(¡Ax¹=%­ëç¿Z[Pu(Uvw¿,^ýYfR†ª»ÐX‰p–ˆ—Þµ$©FÁŲ2‘ †Î§ÇªdÁ‘íüùQMr†ó°óžHšît ~¶Ñɺ@ô…|EhAÿ.©¯/ÂZ‚Óɘlzží« …¶ÎÇs;Î&¼ü«çÕQÝ%D,Jä½F:Óð4"˜“,cDmŒªefW³U;+¥¬Ú*ê.&iý!4ò¥GIÔ„zéŸe‡àó“ã?nÝû¤cðÄ!NL„FP¢Ùl+‘™¬Bª€È Ç À%]ðÑ„j9Inãëu¢,!i#b/\3ûɶ„;áVP¨õq˜h>6·Ú8[(ªÇ/·—6(Q$ MPšö4‹ÛìƒãéÖ¡£/~ ¡ ÀÝ:å˜2xx1=\g">¿¥bý/Å/äëiø®Ùƺš7^Ì@{èæSF<*.6dÖ­®óÈå`!\ð:2yÉt‘)rdaiÏ5ÇÛ±žù% ùÁ३7úü¢ü…¬˜ãø[`ð\¹Í¤:€q6!Ôyÿ>ô¿óç?wúYgcƒÇäÿù:|ta£›–Ê¥~¤óõs'ŸúèýjM ~mof‹˜JXcòD9Ÿ!+(šÎ@+@ÿ<Áø©ž}]DZŽ}a𣠔ËEâçëqˆ.87ÿµ4§ƒá8$œWªLolüòo?¾|I-ÒÄ0r†ô=wÙ¿á¸ÿ&uh“¿‘r䥭N×®Ú_66¶^"ÊÚ «8¶énʰñ ¼Ë[Öð n²¥>oÍ(q zLÍXooˆnùÄL×µœ³¢º^™PÍ*(&T©8ûP¾“FNí̚ﶤóùl¾â,lI¹ÖZTÜOY<é´[#Ô»@32ûMY7^ §¹ŽCEÒGÈØ3.ÜK7¼ºþügüå伨>¼¿~·(Ë×^¶:r¬f)ú¹á.XQx ׉ªc|Jl]ÌÌ ¶Ž÷ƒiUÖ%fÖšÂËUôk‚]@¸.{u ›[áfkàuÀînn ò¾îR{£Š¤b:hØçò]xù‡¶ÙëiVäüb$л¬Þ. /"NuDÑíò¿Fðîª.È LRRå½u„µé¨¤ è\ÓëŒÌÃL‰ÿ8·]$²yr\i±L×ÿ,´‰Õ}ÎkKriN õȉY!ò 5»ÃŸ77¾Kê×Ý{/_rW2)fò ÿR.h+äá±Xí¥iX@wvIýG‡Ø¡*~Qx¢1ºç‰âî¢z‹êˆ\ƒ˜HwYKzúç??ÚØØy)>¸†„|õ ~_fw`ý‚w-gU-†W°£½æÔÐb$X‰åý&„Ë,Æ‹9GåYù6 Gv}–ÞÅ}KËÿZ¼)ŽqêCPïøìÌÍòÝgC¾f{sûóÙáõ2Ȱ°­:‹²>…`˜"h~ñFè=L¿<]¡ Ô=އ=ÁO~¤Ø"ò“¬f"öY+$ŠÖŠZÓÔk¯P“f¹KÙu¬9¯NOÃT‚²y¶ª&ZåìŒY^ØýèÛ«žŸ $dGA*RÃø5 ym°äº_^V2 ”›+ÖÆÍÇŽG=eØ–wB‚éþ2|ÿþÑŸÿLk&·šâ…ðñ/øùK”pikàÉ´yÂí/éþY÷¦gyX·D‚N©¿‹ËŸœmZï‚Ö¬à±|ƒkvÑ5 -â:•‚—ìð¥øš”˶ztZÝÅ0Qä2w1Gs¬ÚÈ 5‰È· ¨ |ÂÐ Ó{Qü5š3Ê™>$ÿå)h/¬ë°œ*b¼êŠÊØd¸Ÿ6è>§XR(F­1‘$\æ @5ß».É!öh[Šy¦n0BãRå¨åà-yMˆIX$6SɆì—ûØþû/½’O4ãZ½Œ<þÜŠ%J#úµR{ £À©F{Ì(ßè—Í-uÄýÏ—q™M0%¶:„àu0”ÉÒùŸ>iÖ™«¤›92ûbŽ*”LñC¤¨Â„nü6¼À} Õ㪂Üä.ßÌ7ò­í¯Â%£i1{e„Q±„ rÐ+±hy¸m¶ Ó÷§å6áéøfø6÷êçdP3zá:*Ž ¥•›iå}.ÿ…‡üï9Géò܇ë¬OøµO3Ôª< +w}ÂÛ›cJÙ†üž¸œ2…²­·ÌJëíÞàîçÐ{Òòܫ֌½ÀOZQ.Æ+xÐ[ïžÒü=cï`û:‰³;lê¼ûu¯|Ý­ÍðËჭ­ðËød;ü²s~¹Ûcƒ•zyw»‡¨5 [ÛˆŒš sN‹1‡R¥}Bë¯(z=Ò°%.%KË+ ¡RHÐÙ‹AÞ9¦.·îEY{>§Fø—œsX‚3^©û6—|‡*J*ÜòµrÛvpwðßí?·ïT8ûbp‚$Lã§ ‚†ÁYW6®V 4£|~õõN—œ˜‹µµÛEÎÖö/÷Å™¿ÿ29 m:Û¾ð¥@€1·´,»¨'„Vö®)Îâ°þe0>¼Äøå/ãó¿¼d­3>ç!éŒ7UIj;–êmÇš 6©<Ø€lÚq )«:‰ À¥j¹E„G,ç FUs‚X€=“Ñ)mŒo›¡‰bÊ Vdå% 4>¤ÄëO0°ð¾{Û_|AAä›vÈ9ˆ°ÃÐY³ ÏDžÀ¸;©ý’Påçê×'¼£Ïf*cZBÑ{eË“*š dW…>´6´ 梄͌™Qü GžV»‹TÂ_RËiÇb8¯Â1­îA´8*føk<5“¯ŸÒ—¸ó’/Ïñ<”·íŒé>ÞÉ·ûúO”æ+§ô-Jªf{/kúxóæ} ¢¾Ln¾ o†ñØÇ@Ëħáˆoìþ¯2D„q¨¾u¤+¸!$F$`p‡ú)Gò˜ròF ØMWU˜Œ“Ã|k3ûå>Ã÷_’ñvcÒ³éõ幤n‹×ìÃ8+i‘ãAŠöçÛ@=K ¥(.-¥ LãaðÆÅïh6´ìÐZvØKÛÎÉ›u©ÓChbâ„ÓõzQÞ@{™]¾sðìpx²÷hïéÞÉßó'»Ã“çG»ù“ƒ£üǃ£Çù#¨Ñ8<Úó–:ƒ°Ëƒm®ÜVÌŒ{J×¾/óúùàóGÇa7QŒ*_…ÃCÈ_î4T£_î{Ÿ©ŠRí(­É„º7Cã'¢½rÞ ùÀ[~-¼‹«¡Ó‡,ªîÿ°=%-ZsÙ7tòŠq!ÈÉ|[Déê퉒€óT'µ"v lÙè%RmÍ_Câ?*¸ÞfqÆ”Â|³’&;U͇‰˜iéÉ“)ßAù¼ סœ^B¦ ÔÐ|AI”ùd† 3µ ¢[kKÉœ•W²¬£Ð$§I™²(B'pM Ó¡¹»½Ø(¦èЋmÕ•¶Ó¡ÿõòzê«Ò–Œâ@ǸðŠ<™& ÔçmRS rt‘À•é U*üÞŸèiŽcFTyžB lZ@\—ƒ¦Ø•5Å!Å£M\Œ²hëÀ Ù’áaZzÓE0 Òj´ª©!º–Þä‡Ý£“½áÓü‘/Æòƒ”j‹ÔÇ ¹uRpÍKlõ¬+ùÌ{ø¬šŽÂKÞ×áT¯Þ³ÈÊe/k‡/¢à‰\Ùcüz{¾¥Á’‡CÉ?|++—w£²,t1åãðcE è B Œ«ýX+8Çpï ]ð±°™síf%™oZýTSŽ™D´Q@ó°1ùIµ»Jªáê;wä•vFÝ÷ty`¤Ê&s$°jÓ~Cž3¼~ÝQ&ô|ú£loÿd÷h?¬ÀƒÃ“½ƒýüx÷ädoÿ»çęܨñÕ`ZC.Ÿ¦ w|š°N>Yû@g+ž@ó9³ï¼Ó}ÈgS]¶&J`Pø˜Dæ¶(ãD³EØì¸‘n·âsC+z3¦„ ìŒc¢\qÑE(üÚÓP8yXx½XÔ½Åbçä‘êTWÇ93–Iî#IÅrƼ œlb‡¦Ó˜Émx·‘×!Šøã4x³Üh´#¦•D[FÆzâ|š_†±zSN!zÇ~6’ìˆË%õɶzJé $¸ÅŒ¾pZÞ°q-¾B 1¯T¦tµÃYÜ®Dks.~ÎÉ$Åá’³Ÿ¹¼zOµw®ðzqé*g8þHIÕ€øÏ0å»ÊäB’‹¬\rîÃU‰´ý(ÇM¥U>KBTÝ"œZ½QoéíÅhLòÿý;“dp:<€î¯æúŠñù¦¼„å+ *N¯{¤éË‹K–×?' n€½ŸQJšÍY¦5=’e¤u-¾q×Þ{qä­Aè­xÿ3MVg§H‰‰ŒÂ×v eR¤ Æ)Ü<'Í\›Ÿ²qÙ)NßÈâË%úÔV/ &UóGðHÂ2RWeµ˜d®†ÂR ¡ö‚ǤË©³Çã3ŒQB%  …%œ|1GhFYÊFiê¶YÜ®4u¤-Lí´eu#ÂÌuXaÇßïw?¸d=O¬Q¥Ž­î×9)®ƒá9 ÿôðãû0ãotö#›Þ£yYã€õ¬ûûÀžlNYö·á}6DÏG[ñê|>Ui"‡ˆsˆ“©’p[5d¥Ïrg¬1ˆ´DÀÒ=®ÅùÚ¸ë´,"~-ÕvoC‹f'†E´z%Të¾Yp¢à -è{ø{„|9ä«€Øïcª0€ãä™=>‰„IjO”ÿl­ÿ¢MO‰—|EDxW÷öó“'ì½½ý|'QÍÞ§Þô ½ÈnKìqiŒ i¯¸·WZˆÑåA©/¨Á~늦• .vžKõ‰ÙzÄTÇùÇÓkcq‡Ö5'u!5 }vB¨yÿÝÑÁóÃcµå‘e¸f›yZ3„T î.Àç­ø®^²Æ<ÈNVÄ8s©‰%Z]ó’YÆ`öÌ‹gUw mO æc °Bv´w»$8Ú¦+Œ}mŒ÷å"ì½i±xŸœá ¼Ï €0Ðe߀O:P±wÃÐ×´?á[ôÓ'$r[ ° ÛØÅ1"'ÊA|È4,Î\%(†´¯Ü€ùB˜Zp§Æ…¢¬‚=ƒyi CZÃÆe˜Ñ–²ø¡ü‘€ÊkŒš6Ⱥ”ZÆ:iKôô墰4¥”öžHè?šoO…f£P‰ZTŸì€ ÉÒWµLZœᘓúÚøåÉÏÈ\åóÆŸ¡5åà„)ˆ\ “@Y`*g2JÅYfËrEq× 7½Gˆ[/ïÂÍïÆ.gLVNó¼٠F±Þ†©›úº>þ.*¤E ±CáÒ­~¶MßMĘJO‹1×_NÉ×hCzºšž6®L¥ÀpŽy9½Ä:ôî¸=]®.„ P27"ú5­ö­3‹^ Ìsˆç–4°˜³)ŒW+‘L– X®¾-y«r”S¤ù‘Wi†‚;´f´þÅJóåœ{{vy+äw.‚3â$w2Å||<¼ÿ¯¯ÿNZ$ô{Û*A¼ß¶xÚßV« ×ù¸·0n_~ñÅÝ/þËTÔuºh~³.šý§‹æ´€¨™HjQMwànZ¤H¢d+’9›—*݃_Àšê;æYQrØ^cÛ·×ìukZšÇp~v¿é Ú1µÿóHuÖ)$iñ <<~~øtogx²KJJ¾ÿü٣ݣÛþÅ`kÓ2úa³ µ ‚%¢%$ÚÇŠÓ))±È û ½ã-%ˆPCŸVˆ ñ‘…ÛËéiÞºh¡€H Qºâ®œF7Œaoµÿ®Âîc‰_=rf'¬ß–Õœç ­âÍ‚Ž`tHéÞÅÀYÊ!»>+i›8í#©RiÄÈP–$+–-bGƬdeé¥o ©¬ÅÝ€¸ï‚0ùpIö€‚ilPAkÁš¥ìŒZW²^)Z¢ñY;Pc ˜6]ËŠ[uZS ®ºAÂSkFß9œ>åVš÷ÝOt™ÕOCdn!´x93}wR3Ú¥Úòg;:G÷¦1‰ŒVÑÍ£Óy¬‘ÚжÂÌ KŒ úâSÉ7âjóަû˜+Ýæùgy7LV*̼ \‡?~ËßçÝ˼ûÏ^¾èÁïË^¾Ê»ozá»nø¶—ö_ºåàˆù¶ÿínü)ýù9UAV-,$Œ84[¢#OñhB,ôaѹ$¸Âê€h—óØÅó’Ö}…²¿XïŒ`‡ÿuD|!|Ù{Ñã^ïE¹õ™À‡ÀXÔXù"ì½ðª%ÖZE‡s³éR· ºW³^žiü[Œ}iœâÉ@+ã#=ÉÒžÀïëzÒ}¸ÕûŒ‡j\¾)s{‹ÆmlõHA3€ø}Î/%ºi¯t{9V0å R[Gõ|ºZÊ8pW„n°Í›¤U£ŸæKà Gyñ¹·ž9WY¥³‘¦ca5«ÂùÊï'MÇr/³–D­äñ/t¿Ÿª,jõ7'P±œNA„áfÎ>éq›urW}ÊKe­8çó„5»v6nït˜Ú<Î9’͇sƒØ-Ï%êãHa#UÍ)çšÏÞtžsÙ×e4]ðChÕ++¿D:Jóp°—Õ\~ÚÂj¨'ñ;x°&ýèy R’Ÿ;,yFsñŒ„¦Â:¬Æ«éòºŸ0á¦É ¡Ô8ÀÃNõ•‚ͧ cÆP*“fÇ× ´'v†a`Ì ? (¼ÁÎæ¼nhÇ–WŒ*<£)ûù`³ŸY¹6~¢Ð'%tm‘äZ£ìÏïa¾#¼³ß5âÂ%U¹PÑ¢ÄZiõý°±¿¯¿ @¥œuÞ‚¿oáßT½Œˆ °òÁ¡»˜¿Äæ ò}ÈÚ“¯ÌqÇ>Þ}Aùgß^Áú|u¼÷ón¶µ}Ïճ̡¼W1ÇŸ…>˜3×»dÑ¥AQ²öóšAÂ?Éù½È«`¥ËY p¢4 ‹ /—Ü0t,»°³X¾Œs%Aº ú€4´\éÕ¸3ÅÚ¬àëëFOǶ 3^)b%›Jú¯¿¼nü\lüöR~ýÛP >àÊÑ Ò”xòR~ᔾ¹y/Ü/=*5ÙÖ)„,M b‰*b-2Bý÷â5oøÑ¹ ýøÂlµ< h+Áû{õCº ,ëߨð;‰, ¼ìä|E1¾TœâæÜǽ—ŒùÚÁѺ$®ägNÈ3p ôÕª…äi–´¸60"‰¼ÞÄ+ Å…å9Ó®_Œµ`.a .*H˜¡3Yû¸óŠïËépŸVEÍ\w„›à«Þ<î ø¶¶p èA5S/^B °%DÞXÎ7ø Íj*¶#S/-)­Ø2±¥d#fÕž‚Òb®±äµm®žA‰V1 ¬P$G$ÌÉË×óÂåÀˆBÓ8²c Ók”%‰ qVëÀñ©Qü õÜ’PÉ4”kNShçŽènÔ^âå%$ï–ɇÓ9ÈvÚl^á YF9ñÂaÖüSÞP~øÍpømQôà·G¾Øæ› /d¢7z®¯á—ê£GÈ-ÁkL¥ì–Ád‹ ­k0KQ0öý³®«r:±Ù c +˜Ù¢ mx4bªd Ïa..ÉÙS"7aXG§+J…m­Š‡ÊyD2‚B »žð:ÇKGÐì¥Z„ìÏP<”,Ãî ÃÆÁ-.ú€õ¹vYJÎ5yGœµ85l®tš†–ŠAÆ ñ¢Î#ŽÏ GlŽ*E_EÌdx!µ EdU0Á¶ªÒ[xÄ.¥oÓü²)êCµµADÆ–Ÿ^†³Í& ëù®Œ™Ožå&”J¬ý§pX2¡®kã,6­<¯uÂx!Àñ¹¬Û'á7XñÙST3ÕÀ¥^sRC:ÅlI¡ïÀÅ­| ³ûð¯=ÿð2ÕˆGè¹evñç=þ.? æS|¦íq<ì.¸ [FU}Ÿ$²æ‚ÓDð #ÉšœdMe× ¸ƒŠÆÁûµ,±g€ò6Êòõ¤¸îg®ŠX~wƒõºb4±^+”ÔY…=ÏÐü c†‡7fòF>˜(jížÅŠl*,óí‹ÿ¢lB[çó‘­´¿’Ëü›Çûß>›ÏÞ?YTïÁ‡Ù}xœæßë·'«>­“,'ðñ¬L¿Ò¾X¤Ÿƒ§4|ŽçÞCYÓ|˜œ"C{zš¬–nòê\ê’iýž(ð†}ÒɃ€UEX,J"äæx,{DÅ!Dþ–.ÏO\‰C¡m=^7¸¤Š%Ë zåDÉø¶Bã‹' ÌÃãgvÕÅg3F¯‹ 5u¿®Îêùô: ¤Xµz ^;ØÚâ%ÈR•ƒâ´\Š ©m~6ï!1O©`å´.=W´arÔɆM¥žëVb åé—XC\PÔ˜#$nÍliÊô Lj˜jl›<_ê-óÎ>ŸbÓŽ5 nsÉéƒ[´s:Ÿ‡ÿqpnT,F%`wߎ[_•~Óaê›Ù·ásñ³oÃEà*|~¥dêtü[Ý…í3 ë’ú6Å‚Çs`‘ãØ>ʘ*£Ä²Ð%ÒÌXÞÔ|w=±!"EŠäzÊA¼W]ß×ZœÔ\[P\g‘-¨ ½ln[gÁµ›ar…³bµ´GÖQÒZ]ˆ÷S¯ˆsálUné`Æ"Úyíç´T¤×Š(ÆA Ò†M5sÝÏi5XJ#@)Ñè&2 ËQ¢ (D&z¦Œ =Ùå0KÞ²¢}¶gœ1n˜ð m/©ëTKùÝÝ~°²Ýiÿr ¿|¸îÎ-:p˜DÅŒUXX˜Y~(e?ŸpÀ1ø<õµ¢‘²hEŠçRò`b¤Ý‰Z<ìÝÆßwÓc,lM’S ^9Î¨Ö ë®‰c· ŠSÃ*¨ÃÝ¥˜±/‹|x.©%…63õQVôJI–™cú<œÕˆÃmë§!TÕãE´Í晥ŠÙ¿˜¿Ah¿(¤ˆ A‘ì>ãÔˤTÆôÚž“&I(Qk@jÀ‚ˆ¯.ç™ËÆÕ^ ‹’C±E§h‘Š‹µá Î&ÀIŸ…=2¹î8B8ÂK:ö.øø“5šuoÀÁ€+m–…Ù(u¯ïàî&™!å6‹ãÕèÎ  C-·j¬…ó9$Ê…âàqj›=žóÌAd±$ÚpʼnØ@ИÐX'#mö,vj ðiæ©Mq%Y]˜¬•Zqôx#Læ+ˆzQÁ·™YtÃÀMðϸÅÉà0š¨QX Ñ«§¾¸:U÷±¸ü3pË H€+:8Ί‰‰•×ì_Þƒ&ý›°ØÉ­BæZˆ R1×ÒҋȬˆV@÷ü|fq2¤dv‹Í*У×M_„<À Gø|!Ö6².¥hwUUnj½uÙ!tQ~¹±«”ÅScé.Ƀd‘Þ§púEþ¹Ž—´$xÙS‹¹¦Í±ÐÖg!sâ–!+¾Æê_k•{—j0¸ —@Ï2@ž'˜á ïšv•YU¹Ïꞃ•­j«*'žK=%$‘7NK† ‡ ÁC 0Þ&8!©u !@08&·hrÚ¨®LšU®™I¼Ìå/Šü"ðÁlN¬›pí¢”Ã-Œ¾x´ù˜^¢ŸTŸløy<#ë¨üsÌpH:HJЍ"6âfåBíHr¿(‡bêzÅŒ0ÉT.RøäÒ”Lbwl¨É¯sùRcf×ÓÚQ¦"ü0ëÕoLxTJÚƒªl¤aü*¦õ˜ —ÀìQ‚€L)v'| 6ÐÄÊg½Dס§0nQ8 kÉHiͪ1›Ðº%b×ô:ë®/±Ú8½ù@÷E÷„ÍŒ{Þ„hÍÀ*íºþàv¯_”[â¯ö-HõÛëß¶¶ï†kÂ;¬üACxyr0~ïýy‚!`”E=W<¢Ûcäÿjî3Æ{“¼D7ˆz²)Y@.LlÔDI¤¢¶³V…ʪA³äT…0`q¿þ®ÎàükŽpÞžãômÐ?ŠÞHÌ>Ï鑊‚N>$õÃ2ác³@Še„µ;N„ãçû»’&ü·½C¦Þg$Ksç Æ{2qc[B±——Oû-âÛÝ?€=z|2Ü ´LÇ»ÇÇ{?ìæÿö|¸²÷d/Ê—üQA¨bT¿!åšX¹´AP‘oV3þcEÓâ·pUfÆk÷ýjÁÖ§£;ÒÓ”™ÛH“åú˜hŠ“E³(7J¥b)œ¥”õâ£.ps‰GsaÕ¯vœ93YÀUªÃWʇ$”ŽgoA}¸žYÆ ¼\-L=#”'ÇèÅr@±' T+oê\PÖ.\Êš]b‘jó Ôíj Ò&¡Ež¼Ös*VÌ‚1rçt>')/R_ôM¡ dð 'Öç_|9*hEQ72—LP¢¾ôµx–ðPètäG8J‡˜8ïÕ\ÆŽÌ]hw‚ã„ëXöê yIÄu ]É$âË/Ç{>§jÀ*÷%è+/˜¦‚Z8»ÄeóëX Áç?þµ<=]”×ùÐLA9Íç¯{†_²¡K¾] -¤AìÇ6U´e°Ê‚¸Ð—ߦá¼5=‹ÜÁVÛ±„;0œÞ[‹† ^-UuÏp °#A§Ÿˆ'D@ *©obCJ„ûñ³†‡ÉãùO/!]-E’iŒ&L͹’Áxx ™̬ݖ"èÉí*ÑÀ=Ö>¼¾,UsÜ™Å"õ4f–ÀÅ”§X‡]2I‘ëŒ%juš‰V+j%ÁÆ–&›fõÆíóT¤)vL\N6‹¯ K˜w^­{.ÈÈ#ñ"vP²Ï€6˜¾uE@|4bÉKFΣAv<—bõxÜÂêãX“;sÊ}ŒçkMÔf§KDp8³‹ÔÛ|Û»Ñ?Ôׇ^”³)fêÈtU\ÐØðZÁÖàƒ ™vµ¨KÍ+£*,MLäqI—™E™Ö>&ˆ2}Îq¤aæ8çȳ(ÌT½åì^Æ4EúD_%P’Ô€¹Ð¸€c^Ê í XÁ7Êhó{u<›˜£$¨ji[æ¸8ï´RÙÆ8…ç–k­ˆb¬Òj~ó¢¼Z@°`–{øÈ;"Ã,Ö_ä­}ˆÊ‹y¡óÎ8NGÁl­Ñø}°g{ï¶ûw?b{ØöxIÃrÒ°žKîŠy›c23Ç$•ÓÆÑe¶(o;ªOIÎ2œD<`16S›É).?|¬Îç±öãæÁCZ3ÁÂ’þUýÜ’TZ3¯€è4 °ÿ™½÷Aûä K¬0>N©ìr8+ QüöYµºéxfJ;>Uøp½§I¹±räGØå³Bjù1](¸íž i%CBÃp64£Aþ j†?ïLçõëðh(!›½sZÞ–Žqgƒy¾ª¦ËüxÅh¡®pPÖǯ‹³Ò§*ç—Ý%áìE‰i§2aNq<)ºŒÓ¢•Aböy«_ŠöJTœ]7?@Å:Z÷VšÚtn#œS :¼óˆ€³$“B†wÂGìÍZÕûæIÖÞboÍ#:pH¸ ²(k¼%+Çö°Ê³eÈž ¬{ CZì§:%üsb—çôdª¤ù³ˆ¶¤!½Ø{¯M®P¬Ä"Nw>v•Í&‰í3ÏÚ’|D·'±0®‘CŽ£Ä×ÕŒ¿„ y3¯&äõUZ#nTp³ JÄé` êY®%¡Ëî‹òñ÷߀ÿ¶wû—?<ŒkG®i·ËÅ^³µÊç\¡©ã5º|YsðµÖ¿ù¶…ù€™{È>Z‹u¢í²XÍ6ˆÀñëˆØRK¹›m)pèáoE¶À´C7ŠlÕ…I35iÒí¼»âL3î*»ãÉ¿$),‡9E¥¢ž)óÛ¶Üò"›‹3¯’ÁYÇŠ}°Œ©ÆÚ\ƒƒ¼{â´ô{À3¤à»MD¶h½åÌ…OZ2¨4ËZ¤9D°¤:Xbt ùFMÁ€£7›‰|Âpã‰F®BôLh¡zB®3]!¦ZF…°ŠÝé²×¯X5+<ËÌuÊ)³k5F¼_Lb€·PðöŠbÄn,*_TïžDÆXïtèÚ¨·bnPÕÍ(öÏ—âWF®ÒÙ=KÃ|hÚW§^žG„ïȶ§ F¬TÅ+U4¤ôc娦6”ä¸þò!d{-®€ð&êb'¶Ð Pð’Y­;á_ êý|úHÏþÊí"°hNI®.ÅQÈKÅbè´²mî@z Wd&”0Ãë:àH€±$¤£T»§å§u«¾"#®d0ä/6©§ dܶ›”\cz¼,¦ƒü¸Ô˜cÚÙ2£¥nykÂí>Œèúõ˜QªY",Qkò¤41Ê\Þ¦Ô ô]Ì¡hpáZÆ«×DÐÆ*5±ÕI1‡€k©œó‰Ki¶Ž;­KW9ŠLR*)éP²³‹‹Qu¶ª– ÈŸ“‡Ÿ7+eÍNg‘4àTrŸ¥ùO¬ð§’ì Ô¬¦'pbEú]òåI?FãÀ«O„‚dŸð8hêíÒ «“&}+úë,ùó#]‡³´)q ‹–™ÀðõðlLÊ’»óéDMǨª“§VÔd6?Y$¦°¨bÔL¬_Ô±bùî@ϵ™AQ÷û‹P+Æ%¿Új¶líš4‰KÑ3?»ÜŒ[eØëò•Œ)‚7lsöÆ ÐðVÔì,J46È`Ê ³¶ë?æ³_ÎÏ(‡ötQœN”l@vBÚË8õ"؆o(×XZwÖ.-œäx}iz7-“LPDU[„ Ÿ3bT¤r(§¢F»ÐË*DÔWNIkNÌ:aÅþ¸ëdª „¼“€Ò™Ð¢;‘z§nJ‰-ÅUØVõ¨A :ZKq ³óˆHܳ³ÈwŸ·|ZOеÈ[N¦‹èÄizɺ*¥I éH ƒ:÷WXö/|8Mæ…èAÀØ«¼²øA¥zO@‚ºWòLoqUé8ôOÚÎ08æèÎâç'Ð×ü‡\Ñ·Ü~{Dr ¦BCY‡hN´«y# 6ëŽsÉ(‰ÎðùÐ%MF1Y¦û8ç‹rK$þ8õº5X¼·CõYŸŽ¼!œ¼=ŽÖ¼©-M!2hLO‚Éêá¨ìå”`§Ù,º0?¯©0«ª‡­ÒˆFk-‘Ö=;‚·ÞI ¾wؤµi߈Uìã?£ÐÞ•Ë1*ÄôdŸhŠY_=tMýõ õµ(ÄÝÁ0…g¼ ´$×(æKÆ>àXbˆ›¬}ôú ÅkKk²f¢.¢UK¶Ç‰ËŸ„ªL‹¬H™ùìtÑÙEÉFq® ¨öÀË ©¸Q¦(ºøÍPÝÚlÑä‘§w|fÁw˜Z$¶g0:¡1I¨ãÞÜ‚ÄÔù«|€7âIâ@?v`0S(éDÍÀ&ÎKXD‘ÀöË AŠ®u±WgF.ã<ìÃããÝ#àø±Êe€m’KÉ®C–'bQ”µ¶ô (“¨l¥'Páé’ W$1@¡¼r0ÿÅ4Ý@qbÇ~ƒyûrDŽÀÁó†ðÛwðŸŸá?¿õó_qþW&oM=­€Ä™H³ÖÕ3Ð2<á¹k¿â†µ%›ã¡J&-nÂ~—ïkGé?§‚)1•^))7ÊÝg¾h‘Ó+÷\a B­·i³ _\.æÀº"¹Z Q`|zµ÷Ô˜É'ñÓŽ¿H¥#ph–§%ɘª~àÛƒlpÝ}¡@h•>«}v;ÇQËÝtºQ=y,F Ò—d×Ð/ôÊãÜ€õ žrО…9ÞusÁ€È¹šãèÖ÷Áh«ùÜÚ§¼8§Dnì²ÁõnÎÝ"c)~Ш<¯f¡¤Ö 4Q ¿¡Ya£w„³¾ëHÉe›ÚÕ.3`’'ÀYáî2—5w"ý™ÑiÀÀm¸Ñle¾"JL®V‹#xd?c>$r²GùéV‚1©)Paäõ øSkªÄ?Y¦{™…_Fš‡dÃayP¸_¼IJ·ÝoVø¤r ó½zÍzßok›[ëJ%u­»dZX.´MŽ·æ IÝQ¶»Ù¿Tò£`F>l¢€¯!Ó/õÙ<¬!uuî¤l¼ê&%éï༤²:Ä­)É1žšOb\bMñlº"kûC„‡·ZúúéZ:Q è«ÖRP5KeRŸVµÔ«¤‚šÕÌH0މg,ý9½ÎšÂWéeœÕ®$HDg’²c¤yZEf q‡'©Œ¤M]!6·suq­è@'Ö ó@&îŒ0:ûñŽ™'ú¨€¤ÀH+µ£rP…³bGw·¨–À`ÎksIÐ{‰¾Š_Dê?Tè6ñ×H§`1ı€|A*Ñ¡Ã@ü€7ÕlÞr0ÒРɳ€°&Š„G×(Ó³fƒ‚Ô¾D Û6Ôº¾Ô,ÆñÈ&ÁLöÑ9­Ô’½F šwaç‡[j‚ j=êk;Í´ù<ÜÄ_D½ì3™`CGR­c –<|J˜H Z·EËŒõ›£àg#: 4íI<÷„Ï%9F%…–“”d÷ä7·…(-QñçÀTZ…*‹c õuÐ)¯·{[–ø+0QîçX,êöå´¸Óxâ]"&šwÍZïúCó]dÅÜ—wZîú¦åeÑm³öÛþ€½‹´êp{'×Ë£ÎÁJ²­Ã&j-)âÄØ“Ø1¦â#•ƸdôÈ­÷§2€± Ï+½í[_ Ö7Òá5¯û? ”ië­aËåÕðÌqÅ÷a{ ².ƒÝA¢Aƨ·ˆaläð5Ȥu^š"7á†m¦õ†û5¦B—LcâñÍB÷ŽÇàÙ~IŽ› åj"ŸL]¿ÿ.‰¼F¢ æµøÛ¬È/-ðL&H{„çË\9È7ßy€™àhë>´²zÞ ¬³™Ê¸™_$'¨¡š†ZRÊmJ\l4,ÃÌvN¬Ï€›—Óé‚ Q¾aj쉞&^*_pà¼a~Cø Å£&k¸ N8׳qTgž7™3ø™×ôz†WŒ£R2й¯çYó¬eĵä‡[6qú´ *Ž¥A:¬º¾ž#H‘'ý§=>O2Ì2÷!´}[Öæ@}²¼ÿÓ™I@ãëX|ó1ðÍï“pCc[|Ê–`èºn ÜL¼g9ŠY‘·®FÒmIA­WŒ3>òX05«%BeÇt®¨ýL©¦·Ú"K %‚Šduö>/pbþ]Î/7¦á×iKe˜ìÓêmh½- ^Ùàý$ÞjñþYh]yñ^¡th&–|Ò€£ž±>#R-o"“ëOn‡K›”TxhYÖƒ¨ªzâõµáÏšP‹´D HAMa J•j œ“Z5Nó£&§Å+ü“£¢z—î™H~Ó·»ì+§Ù¶hTŽÆ +0ü¹ukÇã Xð¤f7LêÃ…ùD/V!H÷kÕ¬Øèr­p>ëÖ w3 Ã[Ÿ‡–“Ì„\2ï Ûö~ÁEåy”ðEÚyÖu€ô×Û=Ùœ:ۨ☫“„sZáEù·ö¡©Øi”BÞªEûc,=­¶8RlUi× €¤¸å¸ l¹ÌHA·=Â{Éc³:{ã®,ømëKáÑ^[Ε—èÆŒ„€|¦Ä¡—&H–0\ã£{8“Š|i]ªý,âÇ|Í+Uo1l ø—D¥ º¡ê¤þ…Ê [è)# •°W¢ì>“…=ïJ8D= è¿€(<ÖÏ;¼ ¤sq8#m›ŽÔ‡þ©—ÇÅÚⶠȃØi&iŠZÅ%“Ö¼;6x$%%fú¿Z‚T‰m!Zfݤºœ’ƒ¥Ši°x'×€…ÜϬ±!- ×êÇñìt$´WuªI¸®²Nd‹KWàó&ø†xF¥–Íu‡îlžiݹ÷ ‚pÀÜ A_»:x¾aͨ¿ª^‰^µk.¸†Úl³Üß ?þ‰ ˆ›%x=gµ2Ûš Y™|ˆl)¿®¶¦(‰#•·TÆ"fƧÉ•gè¶ž@.¢z.Éç¤×й !în°±z`gÝc'8÷í ï±…FýCŽX|Uû¡è<%ÔØ®¢X™¥Nr¢¬ 8zÒ¹"ÍéÖÊ¿”¹:OþÄ®1kg¤:Â4¹L2õ(u]b¤ºœÔDFé^à(!.(ÚH†‰P<à Ï%S%="V¬,bØòˆ›a>Òžÿ:¸m‡ËTÂêƒÛ7C3mc4⤼Qì¡Û–ónk4t´‡i|j›8!4æ¬LE5\¶”0EtAZâÁ¡ë¹-x¨‹‡#Úl·7´ò“ÞõÙÇHÜÇsœ@L¸¨.ä#‡äé©ÀUc¼a´q§À{mZxQ’8¯„ÛÂ]1SW¦º¾âKÁn.óõ‘ñ+}vz´‹JÎ} )„ÇpˆG-#ÍÞ©p¢‘Æ´5 5^*2ÕÜÆª¹^Øx‹yËk~õÀœCw–ŽSüö ©8eÜy¢ˆmå(Áb„ŽY£Çì>w²¦‹QHð,–½œã+Tƒ¤æOJŠè´j(îs÷CLί¿þZ¹¦(NoS’›Ci~8õ1óá䪮(•K"wJíóðvâ`ä% ´ð. '\2YOˆ̬:ÿô¡‘V¯ °Z 󀊫õãðE˃¬ÛYTr×à‹Ó½ð=˜PžÃ,r[Uo#)°@`¦%V(žê©ìX€`s¢ËÜDž×j‰„Ù-Átˆö•œC¯äO$‹½n,‘Á`ÐX%ØgÌÛЖ;svgÛ„ŒK D¥ÆÁVb:{õÐúO•SºÀ+<Çí›:HП :9'`<¿U³~Q7NÎmþÿ[J’ÑpÜüÖî˧dEÜYP…•ÍǬáÛaº®Æduâ<ÁœÉ\!õùuÂ}ѽìtÄÞÎøÃ¬Á– h«û­LcìûûLj8ÉÖÓ'@™NÄ@¨þ»cšÚ"œ¬ZJžÙ±.]ˆ# .-‹·Z ¯yE¯yµ>Ê4+0΄æßío‹#?†Œð¶o¨¨ŒKž-5R«™&R£‚²éyÒ@+Þ+ªðÎÈ’7XÄÃáêšHe8AI™P1yÖ’åcáì++5ƒŠº%ìo¥¿v¾íém“͉;wz=$”Ü~Ÿ£"ü7ï½Ûþ ‘°Â4}6»;0[8Ûøß»ß? ­naüŽT蘩p$_?ü»ºoúÔTfÔ®#òü¸@AçmGé•Äw±¢…ªYP?S£¯ Þ)]P~_}¢Ê‹¶g© ²3hqä…sê¥î­åO”cµð`dØ©£\ :86’6ˆ¡‡Èj ã¨5ºÀ `󬪚í È@À9‹µ”æX˜!JZ*îT­)Ý ,¥Ê6œ`¶tGKO•fˆµ¨ùy11 A?ÑœÈÎà·(• ¡–Šü£ñ¤|y«`$ £ÏsïHZ˜X«Ñ}Þü€ 'j8ì:® Rü ,hÇ7ªCN¾¾GS©ÝÀ6gé† ÝUH%TñvµOç-䨋iÿ ý´•Ýši,^òã(è#ãjϸ®æÎW¦Þ¦‹rÉyÎm¨_Ž!Ò±x'ÕSoú„ˆº´"³x²Ûg}ožãº¢ÈW9ãpHšP™†¸º»íA¸—1ÌvÍV&”Ùk3K3ƒÔ9è"H­O„ôådcl¤Ùp6bNL°†ÇF5@Z d‰•þdÐ[ÿÚ΀ݬ{{¸³³{xÒ‹ƒ·¨{Ugg´Ùb+‹‡76àŠH‹ËÈÍ›êgñN¬Æ\&ˆ¶V¨¶*®Qn]t-—èZ¶.ºf¬ Ñÿºw»‹—p3å£E3Õ€0÷¼ 'rµU„ój¶§+ç=_å]‘ø·¢Èݦƒô¿Ž—¬SÀ¤mÒÁ×XkÓHÌ8ÞîçÇÏŸa€kàÆLšui$}‹ú¸˜O&Ö~BäÛ¦Ž\å¿j))s–Š3p »Hq€ÔUµ‰#>é„3B@ªóM‘Ûa^¯É°‰ª,‘ç(b÷6ÜóJï=ƒëû¦ÅÈ¢)34Ú{$xÕUNT‰B¥—Yù°ÌÛõ€ŒÈˆØ÷ÏÕ$†háo)CN9Ë„GÍ\:t½Œ¤"Z$2f#‚G H“0rUŸcmðÛPB‰dS2TÝ-´¡ù«ú~wc;ùàÖðѭ䣭>|Ø—K%\-ƒ*I5©j–À,Ù"A€Ÿ¡JtÄè¼3W lé?ës$™}]›Ii#Îgüüpøl÷X³×õÌCc šÀ‹Æ±¤1»0Q.ï"×h Ž0óÂ:f|jØ=¤bZ·„%K?›áQ~ÊV ×ÒõDPŒz8:=çªwYÁFYᯆ%I\ãªõ¦Z¸sD«G 3ZYŽáS ÄÁ–ÌÇÕi=sèÇë…0ÁåEÄH®¶À¨Ì—Ñ~I×s—ŸIÙ™¤Ñ¤a`õ‰¨C™{·9+ñÍRÙ4Î_]‰@Óu£º7Jù HGD‡4Û1X…Œ}ÿ’6‡~M':†‘Ø=•–ˆ5KtbmT¿*ãœò*t^Œ¥"µÙÓ1±- &o¾$TUŸ÷2Ïn,ü3Åy‡0 ®³"HÌ- 2¡7¸³87a@û–¶•’Ü"Êhò¶½„ÝžœÝ|U!ó@9äpMÐ÷ß\_•âÃçù¶i™²×‰qˆJu‚þ<\œ‡n‡¿¨2ÇÐ$3â"Éçu¶ vƒÔÒ–s•³ù evcX"zcW G0É «¤2áL[볊­”/>ˆÜišË‚W™Í®È@–ÍÈ* Û<, ʸ¸nÞ¶B<ÌØø‚¶ž1û4"ÿŽáÔ§vºhŸ+RI†'·²‰ã}°êPBÌUÇd¾µ×Î8šÊwÛýw¯nvù†¨9¢ÙÈQÆip…›=[;ŽûyÌ艻|j̯]‰|§a¬iâ#I5”i”vCZ-¤ÖoË‚èE>,ÓÍR—–tãhj™G{‡'ùÑs¯WîaˆL4:°ÎpJ³“ØÍr› NF;:¼gÏg‚}øI2QOƒÞ¬ùw‹²|ÝR2›²Xñ&"l¤jçaOsæÑÊ1o¿iRc “‚#¾¤‘‡b¥F}‰\shä÷Dµ K$6ÝaW[˜e\î-VS)†¨I2–„öñL[ÔxW4XƒóåÅôô  óN2Ìq V’g˶6>òh÷‰ªÏü°p¢áe“ùx…Ù"†R;õÄ7ÿV¥Ux¸a‡ÀK_…ưó»^ÜçJ9p-,Á¨ÐÄ“õ”¼aݸZÍbŒ™-¼ 0±·B£´mb£œxa‚LÑ}Šô„„éåÙå|~Jpˆ%¢È[6 a²Œé¼†eˆ«Û0m¼r80OÒ sY\A2+¶ÃªÙiq2jJ‘–cᥠ’·RÄŒ6 õÎuЋ¦ÛqÎü2“ ^z–àˆ4ë‰+7à»@Ï6w–¬ŸÈå$©NØAXßÁùQßáóœtíÕÂ2®›â€zÂôQ€f™SÎC6£w>üË‹òò>åC/m’$rå$‚(0<ÝìžC2§ÆKÍó,ÙQ¼üH¸À‚Œš›_‚dUø˜AÅåíʉ¥ùÒCÀ%”µ;¿ Ö¹nsLj^DÉ>Õ°}0rÂÔŽç fÍžÌIP:äb»b†CùËæÆ×¯/o¯R‚±2Ó"t[Ë^Ø! Rˆ>%f„eµ€¼IìŽ1%CLç×’I­?…kéH9¢Q-û ÜÀª'Q]4å@]gR[ìUC¨µ/@þ€3¿‘ÜÕOÃw½¤¤¹Ie ÇTå…ÚáŠÊíŸÙå‰^–S°ë­¡Ö–1Gq~ì(j'«FÕpá/B’Z®x-¼Ä|^ ,ÌU¾fqDÉîD뜢ËÊHl‚Vxl¢ r†cc^:ÔóØâwì¯sù¼¥k%š&ݾOaU_Xl3:¯Øùüc±-î><–j»·•‰i |Û£“o`®äÊ,+瀟TfërXmcÄW8VV¾uwôžkH–P³ßjŒ1Yç”ô>OóCîì?ÞÇãð)U,õŠ"á6"踌{Œ©¬IÁ¡ÐÞ¯ ¥¹œçì­|έTÂ@jØ)TfÌy-œ11T…?'&âB•ãµ}^@…‚I£o…R智š[w•¾½™:Ö•qevõûÞuY‹-Ñ»á»÷³¹]æ WGd"uˆ ¡d|¹Û¥HÈWÏÔC{j°ìO…h¼g5E†HWN%¼üÃb®kI_“2‚]cªd%®'Vö¡¹¤ìxE;Îxím‚FÔºÝÂYÏk‰×K`ð›S „Iësv('Ö%.ý[–„t¹éû˜3ü@,ö)Ù'å7ȨY‰ÊæOH¬Fî +Ì¿M\ å[·®¶zywøþÑû^þ>ï>†ÿ<ìn÷vß?v{¹žâ':§°y*Z¹÷S5-É}ëhGÔåj2ßpQNˆx¼ûdoU“vŽƒaöpKý3àç‹'Ž}¢hŒ÷æHÈâå¹§¾d¯NUÿk©›Ø§²í-Ìl­\üÃWÖ,´°1VÜ0¶1¨í±¹'y%Ì÷§@Ï1=O ôvî‡xâ>1ED¬Ìp C6ôº<ÎI$ŠöZOó r2kÇ’"¤Z13 ¸Ð,ÎðÃ0QD²3;LÓ‘q@érºÂÉE5 ¿œ¸ŸÉwŒé°™ÑÞWnâx ñ˜}ÆJãì+5ÇÈ&|fåâ‡JlÓ‡m¸±ÕãDXšî•òýv˜xgÄPPÿÉÏÏ%ǰU†Y2Í?úÈ,,…zNÎÛéï‰Cº™63Ÿºw¶z »}ÉÀ“B×rô±VIG ă†='ôwSŒGE°É,Ks_|%Žh4Q GÙ¦H“ôšÒبÚÀ± â$ƒ17¥Í½¤I+(8DµÆÐáôꌠž—A¤Ü©jRW WÙL¨nÞ{˜‡Ÿ_~íö^ÞßH"¿(Eîš‹],Ë¥JpVhœãDs”‚­|`÷ ¸V-û¶•ëPåІ̢%²ÆÚˆ?†¥¿ çàFoFÃÙ*AÖŠ¢~óe³™Ì7äD&ÆŒª(åó‚°vƒCm¸v¦ËºEI*ߺäªJ­n,)äsx“Ã…@ ©I®hZr¦8NšF­´•¤rJ‚ËþL7nrÖV¾I­¡O€ƒ ˆ_&ŒGu/D3KçAÉ­ÐM¸¤ •mñjüDz'‚-L©—«ÓÓð×ú]²!Ûn2ß áp¥¨rd‰†²“½ø6Ø áß§R„³× $ÛAK ÏeâÄm¦ZÌ&¸o— Ð'Èâ]/Ý{²Ö÷+G`ˆ¥%-ß”`x‹ebX>NÔÓ}Œƒ¢Ã4n,–8Ç—‡σý gà«pA)ÜnàIÒò•[`­©²rÀä¤ÌG«ÌÓÖ8§ÆÑŸõôÒÌæOYeno¤KM­vØyÝÆ süâtc4•7õ½B%%ao®!šˆÜÞ4Ӓ«DÛè"Òïù8Êø8ÊÿÝÇQ†ÇK³Öá$Ìå2ï,ç—ÔþN_Øjßyl“s¡»)håZìjD%==Õcø„à0QmX-X^ÙI€ñm8ƒÖ irGõZ$—’oMA·'f•SÏ—Ô¶…èq-N‰…©Áù‡²ÞkÂkÍÃ9†‚UzĆկ«ËKX&§Ê‚º€´bÖ‹â4a^Äm noaW\e÷FdfŸ—¹j=¨@”a¤®Z‡¥³)·ý_8«ÝÇeð’¸ò{)%´ÓV8Åi–ï¾ù<òl±áˆèl}½=ØúòÞ`ûî`ûó/:æÑ‘­Hw){+€+°£0ܯ랓S¼˜@vŽ®—å·ùö/›Ÿ¿|Zý>ßþ"üñÅËðÛVø€>ûekãë—Ãï “"˜ ¨fàÞà‘òGïÝݹ€ËB’!K“gVJùQ‘ò¡gq”‘JÝw $«é ÈѼs²?,ß™S`3än!~7+‚²ýÅ—=&„6¾t´ë.§E[ŽSæú"«\¢^â>†("ÎSA;ÔsŸÄ;I‡&\ìÓ–;1ǘՕAF„É|¹Q—¡u€˜Ë´óµë½,1<Å>š jq¸ãbLû¶k›~¯¾)1øœJt[‚@©f¯E³à‚3Õho€}i'?¤#óvY”4ŒÖiuF!Rzp5\. „„ôB‚êAþ¼ff&¬)ë ôŒfÍiJ).°þ¹4í^ìãX¦I+RÒ³ó‘½*‘£l •Δ+ꢚL¦¥ .82à¶6b„ªœÃ݇ˆÅ£ m-ô\¾D9è1a„ŹŽB(gQ 9Ú ‰BaŽdÅ,‚²ªšeÇ»ÿÈòh€ì±šCC«L‰g[ò«A¾OÒÐè› 8ÅYýK%@‘Ñ€x9'ùÝŒqwf´¨­}Ǻ#V­ë¦5:0W#ϳòjŠnS [ÎϘ f<ê`0@Œ#!'Ââ.A~s‰~6% ’<åã@Ž* ¢i„öØA-ù(J©¶¨-[ËNc(Tó¯TÎâ&Çå²dŒ€\T(ðucYÀ˜=ÞRÞªZ«ãÈŠ«ˆ\t‰dh2ôZ.)õ$ĺ,¨A 8v‰Elèaš½J ŒS|(U\ˆ’!Y©¶‰¶Cx„g“’Sdá›ÓÒ ˆùõˆö]4˜b4Î¥ mPOÀi2ü ^tsÄøS±½ÜNp|Ï Z`Æç`Œ‚ÿe)† Á°Ã5³ÑIWq$/ 1ÐslLR±ä`Ͳ8+‘6Þ'J.}!`ép!N ¡·Ô…²áÙæÛÍ"ï‡É0÷è=õ|7Îf ýy´»ó)/‰æxFÞupÁ C®‡¸°|J%£j‰Æ8ßBÏКUøp*€ae‚‹1 ½°H.S>¡‹|QžaYðò-ìFŠ+âÀ-aA‚ »$ÞÐ{è-ÄéÅÕ5ºfÙ9ŸRߎ‹„c(ötX’æ:ÝÌ|"¦¼áPÙ]‚iâ³×E®du×À§!|Y7ìsIuËÉFÿS8þ’ÿsñB¾ !t~K1_?>¼|®øÐË{@GÕûðöZ%ðÝ`0ßQÒ¼¶+¼Ý¦1 ÑùGaÕLcžÓk%²4ä„Öžfâ.\#F ,;H¤8#úh£¡¿†4 qaK$À©–™r2ëéEÿ( $‡Ç&ì “ºÑ°ç¼‹/ b¹hÒKÄÖª&fAò} xxv笟Y°" ¦^Q–jÄT -ŒÐ`G±TU…úb°µ™‰ÅIÝJqœÝ‡‰AÈÚ¡¸DЉÐ5ìw›úÅ™²xN¢¾ Q”%•Y³Ô=-®õ´@y±¯~w¬Ú¥d¶ÖjûˆÃL”¶V+½¹ËGjh-¨¥±ê2èщåºûðˆñ-›=„;¸ò£¢‘¯TZYäŒ û„µ™8@¨ ­W¤€Ãî5ô]¯Øž«ˆ0¥DÀÖ³L§ ,råÄ‘ˆ¢¤ãÂã±'¢-ã}_ç ³Aõ½8 Ë–¼»¾µðë™wSO?‘Šwç;–fR¤¤0´6¦7ý#X˜Z·"sV:øˆ-A±c|Nñf^µV W½²ÙG £˜@ü™%Æà-Bœ]iŽŒ¤„Ëùgk/Ó;С²1\-‚ µ¬…-Y ìÃú±$÷%ë&Û—óD™M(Õe¡<D—#«Vpb™‚3¤NDs^—å%êªHæ4?ä–ÐÐpdÒ^_“)C/ÓD«¼q6•*N‚Ö¸ˆ0$TÈĴ]ì­Åq ¯ƒ¨œ¨Û½ìü‹mèê,ÞëFI[ú'õå¹Zšæ™ž-kçpòÏn>t'YF…EILÐÑL©ÍšŒð(lÐ+°7cD\ÕÌœ¬.Q$ìÒÒou¯Bs¿Å+t>]-¤K:ºÂø’˜µ`™ Ù ƒx$ìåìÛ–³íÏ—³ätÛsص8)©5I!~*‡È¬FÀˆºG¥e‘‰}U:n*qx‚!ÖÕòϨ˜naõoVEpàÕÓ Ú×i³6"ŒxÕKŠšqk9”$*èÍž¯ˆfÇhf±×+bÉÌÿÊO—æ*µëªœ†³¬3ãxu't>ôÀiaÌõÃãrsúF AYׄR'†Ö9W`@¨½Ã^,o71(áEFÅÃ3ïà|ÝæZȤ‘Œ‹Åt¸»°šXŸSW@.'"ÔŒaìŽÉ’«+[E¢aä -¤|'†®‰'ª˜œºÓƒ‰ )KA)ÀÒ¢\àac`<Ï>4aö(åìèæ× Ö ~šÕÒjÌùÚ8–ì­ÎÎ% ? •’EófóXýj†u‘ºãI¯<5¬$emIý‘j6ÃÒ¼mcÓÕÜæNyÚ1Û‘xI ZJOÏ,·iŠä˜i¬õTŽú Y(²èž>úN±&­æ-Ñ{ y†þb†á!Ç$VŽØÈP±+‚œ‹oÁ¹·“•ºxÓüs\IçÌ‹9;•X‚°†Š¸€–bÓå”R­¦úf¿½5•<_Å0N|´0ÞÜä ƒ¨eµlzBÙb%'²9ê‡Kä )€þð„ñQHy“cÀˆŽ¤@FR€õÔÂmЄ(I^³°±mÕ,2>fy÷û0ˆs"å "¡¼Ã“#ÙÈc¬† ãèR­ Eq€µÒŽa5+ܬ}š)^™LL ¶n”íX‚®¬¢ Ú‡AN¬fxæÄl ¬ãa¡“fadOÌÝÌŸ˜…c+e FŸEqMiqH®Ÿ—Ec¡0¡ö…¼9 µó¸ÓŽs)ï¶±„ £I§¥&n6Ðwj­=1RŸÒóÆ1GZ\k¢¥rÿ…æ°:hU/ºPûg«÷¢Ü~?xØû“ZÐl¿ Ä…F7­)å;Ã$.¢ žú[„uPií…€6œº“‰y£ºA”›…“l·e|[iNêô>´œg¶;'6BÜ®µÌ [™a©eÎJÇpÈ•™÷7Ò¶7t+âØ s„ûÎöåùÂà'ò(n ³au¸G¤­ëLf>W‰þ5ÂG¿¾(¼}¦~Áy ¿Àdâ/aFñß?‰­Ñ Ýä‹Þï>Ý ò_j…´¯!ê‰ñQƒ1CØú”þ --¦Aà„.Š?tšîWò]µ©õ·ï€…ñÉ>Ød¨|8µ’B´Ù’+¶aìA´"œº€ë –lñžCMË,ÊÌA®Ê z`=gëÄ,X¦ºÈÎКœqÆù%[äìA)®- –œƒš¯€çX®d˜*2êiŽ0Fm9™5Ö8©üø ˜ñ”Ä|Z2¹¬çU¡Œ&>8G.ùHjâ«w6`ÉDLàÍz26_ØjÖ’ &cB°ÈU¥Ú\¦Ç9¹lø9\ WGÓ¯U“iA¤½(·ÞPüö&ò¨q uŸÅŸZ\YmÔÁm 6”¢ç‰ðˆëH„f0_¤®0y? k«…µ7µ$G jÎɉFžÏH‹+–CáùÞáà ž(UªËŽÐ¥Í´¥B¢4£³Uó·»{9©(_ 6·?M_LG襳ÕñeJ纤Ö}íüR^Ÿ–å C»c7L'¨+Tæ`äÕ››7<§¨¼CêE I×pÞ9D r-ñ X8Až­Š³ ‹=Cé1S•I¤U#©P¥ÙG”ÌRH¦ŠÒ8|mÌ€¯PÊÄ‹I"J6 ït9Àrι2¢ÂØ ÈÔÚ6ȇ™šÔ¶°…Qº¥f:*×ñ-5€ ‘ðÁCdÔ—¯µú€~½±å¿xÿŒ®£Ú3uNª¢%$zr«!É•~¸Ieþ>œú—a÷J®ü½ÅTqÑLJH§:[AÑ%´á:üúšÿ+hGóÍ="¹†øB8rõiÍ„#ß·“×y_©êYæ¬}'ÌÕU9 ë #p®æ™-–óKF´RŠDGÆ$ãRòöÇßSØ4¦Þö›¶ƒH û™ÆÊöˆöLÊñ(qbÔmÕl/ƒ…d•Rr^GË'Oå¿•Y(—Þ“fªµåBŠ|…³[ •ò9fÐpªHn:i^¦\:ºab`,$gè¢3\Rob Ÿràˆl¨øïÓãå]‘q‡ñÿGÀ' #ï›×nL‰ê>îÖžP)Ú‘6‡ÿu Õ¥®4ünøh§ãý´Rg~êUÆK~hîX˜gM©'Tž0 ‹5iœº`{ëC2ÑbŠÊ÷;µžÃ”ðëãs¬­ò)ÛÑ2<%Ø>ò­¡"BTu¡…Âå6)§FÂQ‹S_•h¿AÖ—ÞÓF+A ïâ2éZt&Kb±höÂû=Û½ŠÏ{å[kÖÒ5%*ÛfŽQ˜ŒXÖ´$è&'c> —;kÐBª\]r® ^瞸¤Œ½NhØÓT­eï¾PRí¹·ŽW,íµœKœcÒíÛ*XG}w+MyóKÜýEÍCRµ»`´Æ)6¢[Ü "÷w}ì”Õçµ¥Muñ™ðÄ^/§AÊDH“>7´™WÏ™µ<‡øIï´|Eßl´}C ¦Úß‹áÒä1ôtŠ“Æ_õDTI¡d`;zuÇØ¡ KèÕûT©Ê|ý¦¯áá ŸZÇ)|\~ų{‚bJ”rL±e¨ øU ®˜LDG÷,‚FR¾ž×lp‘\á\#•6¤Ìhm—̪ i"“°+ c ìíýü¹Ï‹'¤"¦Åt)˜÷?æ‰=÷-¿µM §rh]'‰ˆCí• i_ðýÇ7}Ý—¦jiÚpågÇ@räRõvÜ‹òõ7ˆøv1Ý“KÅ·w~›ñBFüËC¾'<¯‡¯v­f½ðБõ¸5;Lo!} &ŠœÍÒô~ø…R€¹é៎´èÏÖŒ.¿¥×ë[Ëe)W"hÆÐm¥fÕÙj±º(DÖ¿(Ͼ zü·ðúðû­ðû­è8kX–syÄÓҽ– ½Í¸5Ôez/ó]Îg ˜Bu)¡+SЮî,6L±2d;ò[®ÏËy2gøÊy#Ê_Cà3ŒÆ±Xa\ÝeÖete£Œ%>}„ÐX–3Ÿbž g̈°ê0{ð•‚3Ö™Ug·¶ny‹…Ï{£\‘C?È ‡û„ 0NÔˆ”'^ÕÂ1« Š c¼Eíˆþ¼yÛ–Ò.ª,ôjcëÛ” ?|Œàû¼ëÖDO:H«¸›.p›i1.˜Ùùìjg° Š‚f(ã#'QžL ÉÞmD'¬òÍÎðéÓƒç.¯R34 Ý“èls<Q6 ç-»†o1S ˜xuT^›Fki‘N†· ¨ÅíD•3}Ù’ÿчW…µ^^_—ÄPÉ–ùBŠR5Õ"‚––µ=0:þ²\VŠ˜Jj°CT㢂–óˆq}OÈPC„Xf0ƒ™ß›ƒÄjBƒÃ$:Î'³PÊ×Ú ÈWHF˜²K-­€ltá•J‘SHhÖ] ùFeÓ`Ǿâ–`VXß|F²ÏÈ&xV˜½× €š±¶X*&$MB“±FïdÔžª¦È“¨;„†¯Ýþôi_®¡okÕ*9-I4êjJÐ\.¥¯ù Rm?¨N‚…¼A9®Wh•ë _íïþ°{ôŠ7Û¡¤K¡ƒæ‚¤ÀÎ7ÅâìÛòόٗ˜ xI"§ó]IÌŠÔj’ic;§NÝgDq¡dVœQ¸Px’íš\KìÑhm/§<¨ªiâu³y¦¨¢8y¸|³ÙRm/3»Ã¯€1!~™UUŸ+* v;À òã¸u ±/&“R*Õ£÷' Véö&¹C‰8Ù—2Jâ–e¡ÌîØ9±ÆRy•Lêr1{š¦šS% – \Â-PÄßy'k®ïòE•ЪˆWq?šôÜMz&ÓÍe($ ÇXºÔ»ÌŸåöà‹ˆßA¼ÀÉ’§-Ѫ%å7Z½“j£$×pƒLƒ‚~*ЧGìLÓźŠá=œìrÌ’„¼â¾]¹¤a§,«šÂÌçbySÌ–YÔt0U§/ÜP(1aRŠ&ÓÉwJœá~Ú­¢Œ•š•püï‚íy†'ÝÇk`p.ñq"Xâb @ë¡êѪÏR¾ù*EÖÆÅåÂÌi²s ãíA÷_`*íÎV/è{áßí^X†>êDòøüä@ÿé´8³“,:}¢ußF)‹Ö[±ZÎê¥2èèì'Õ€c0H¯Å)ž… æãøÅ®*IÌo¢ôÜÉiwg@\"®(Mô2lu†kÂkÿA4C§¸vÃb ‚ŠÑ[Õ%È…‹%a\„“EŒ ¬Rƒ^êáÎ×AÿKÓô~"°PÏ( Pe!§œ;ê#u"Þ#­Y)¨×üuk>µµ/WnÓ|‡×˜S‘T’þ8°Ó÷tX_ÉCJéÄ\9ÿ;¿•wò_óÿ,ú?åï4¹™‹Ù} v•ê^ Uì‡ùšNx<¾^5È?(SGÛ·TÊÍs:ä›4|2_¦\ð­9»;·ŠQ~ëÖøÖ­|r«÷öú·ðÑ;Æ€Îø¡wùÏ…B’ðA €X”ó7¶oìÕñælŒëÜ ÍX€1<îü-h;ƒªõ;û'GO;-ì5þ´RЏÈu¿Ã„À…ßÉ»œ”ÊÄ­0cH–0ŸÎÏ®{lßÌ'àD_&ÁŒ8Ô5‰5’˜:+gH,¬De`fæÝÛA™}D9±øë}¨t9„oRtÌfñ]`}!$P¦µ]E7¨Ý®ZUJ±]HõpU"™¿Š+f“#R(b´0)¿«YŒÓ6Û†æpÚîÈ!8·¡"Äp{ÑÎŒS$JÉÿC¹\—\*-· ÂATÍ2xÉ•xþ¬ôªÏsºññšÝ@LÙKá Ö K%œç“êéÉ+˜M*ü.x®'~R1",ŒÎ†Á#-¤Ðö@¡<¥WO‹ ¿Ç $GÛ Kˆ&6#E“È>Œµ§­ÓÊR[ç£4® Ÿc¯‡ƒÒÓ@ò<-å¿>f—ÓoD&„L/Ê·ï¶67?°ÒF®^C0ª ƒ|G?F¶ê„Åk_@üÓ=ÂKzGkyyò™!—ï4|nL±B?2ò,+¯Í¢S§3ј=µRv3µ’(ý}7MQ&úÌM+ìbÖi€ÿ¸¡]”'¥à¼)0£[a!mËAšظ–S“D~]‹V3г5+Wz§¡á‹âmu±º*äìŒ(RLHµJšzoƒ?ÄO úò‹/îÊ×ÙÖ—ø=|~wÛ]Z•uLˆ 9¢P_.®ƒçS[ÇFåyÆÇáh`†³o ­FŒ_£¡œq}@…}Z¿`ëPƃ4G -DU6wUCÈ´T$#·/f vEpÒŠ§P±<X0äò ĶŒ¡}J“•2žÃw¼†F]jÂ7w—ç½4€¼cÊúëÞI?oÕŒŽÓbz6_„ýxÁØR6ÖaLÀ‘Á¶ÛO†{O5†NDÇçK]Mª¿¾båeY„,`€TŽôÔgKxõñ“a³‚h+æ!šŽp0µB (ÑÍ£ èASÔýuÕÚFKꙿד r±‹µoN@Iè³RÏì&*† x ÖO Y%Û^£òÍæl—Gy0‘›ŽÚl£ÃQŽdƒRZHË“¥žÂÞ€µ{é%¯¢ ‘å €\ÈuƒÇ ÍDÿAYÊcV‘ÑõzFU0²p®&ÂβL%›3‘0û x,ª1:3í@duÞt7ÔŒÁ³N»K%[ù0ç^E©Ž@³©'ashÉÑ‹¼2ê|ï£ãWT­Aþw¦p€ø8]3¦ù铎$­jQœö^Ÿ N^žì=ÛûYŽÅL¡=pýKߨ©óÈÅ.KËsTóé¿ìÕÁ“'A›Þ„OpUMÁÈv>ÜîmßÞžx†%:Æã¡q,‡|@Ên a/ŠËjp¾¼˜þQ)#DÒŽêÉÑdT«·)¼?|ÿH_ñ~§÷ØÍ´Â)‡:ýðßáã ŒÎpçqçÎVrÙ£Ž1ÀçlHSF£¨sx™]‘xv±BABf:a&:Ú}g‹0Ü×ú5‡ƒ¤ºŸNa»ÙXªÌpÆŠ¾=ðõr˜¾¸•†Ú‹‡õvðcrt ûù#;â¨ãÄžPˆâô”ì 9kƒFv! TãG;aä¹¶%-”>nF.î­®Y[Ø®µ$„¿`ËïÄ‹èGN…îÞV当ž¯ÎÎN÷&w@YÕnrUóœñ¬¬xsÖáÅ÷·•–·ÇüKá³ö‚ðù¿\žÖ©ê$>á×›„g3½×׸‘´ NdBï-yeÅho±pÂÛzÆ‹+uuþ¡‡SÉ„V„-&ÆÃŸ˜Êk%n(*8*éħÛ+a-N [«ûðÝèyÖ}¿Á þ[@·œN…G-ÃÒz©Ìž+©Y䦞•šð®[,,ÔÙ*؉¢öT (ðxqbÏÇT?Ôe]QÑ\|†…rÐòËÕâs™ ëLcô2'pÆ/¨&]±&–ùêŒHBÁËBx#Jo§ T÷áb‡“àŸ¼)fãˆÚ „‘@QÖ½}ü·½Ã‹4Û×6ž´¹ÝÆš¿—Šº•y=ñ¾'³I€‘ZoÃÄÀ;¼/[k<¸Â‰$ï›HŠŽõrÃöÀÁÎWòlD0Ó€ÆùÀ¹ ÿ•ƒXÅÇ÷aÿA[‰ô|¬LÅM*­Ã®“ö/jý„“¸×zȨ$ûÊ&@2¶‚¦!³€9ZD3µÊHÍã2ðëØ“Lášl3^ÐÃð¸%iêv¡´k¬bYºxÄÕ(³K9±aƃƯ€¹CZ¬™wHÅ£­ÊùÎ-«‘¹B•ÁKö2ã@cäöüTg ˆ`à½\-}T°­ïPªB‹®5† ÈF|X€fW DÍÍ,(‘ó€äÿ6ÿì'Þ¼ÃÞßßËïz?¯ WÁßæ?ýnؼO¿<ûÛýÐý<ÿégùôgþô‘‘"óeï/‹³3Ùòp©Õ••nzNd=¢–™µHŠº%3…ú¶ü4ÁËÓ âV0%@3È•‘”¼ÁWùÍ„¨6<¨’²zŒÆj'ˆ´J•º2œÛ/°5–‘êñTV¶°Ü­O•ÖMþhžY›,ãÁ8ZÆ\ü§¾ª‘Û¨\®„D~£Â…RPg·”¸u ì ·–ÏÕØXÔf'‚_zkð\¾Ó ZÑÀ¿k͆_÷çÒ Üøáj€Yq«kà~µÒ®,.*WTFu_:#ÙåGÏ’òl&3 ¦óS§Qè8aŽ‘çÔæj éºÔs)L‘ ÑÀ8sV¢ŒZòad*-Ãc9ßS"ÏK„ïð} P‚ë«·ka b€ªLòúÜÉh¶Á"‚[ÉÒÈT#æ8H?êßËVŸ}Ôq—Üq×^EËÌv¤¢Vƒ¨ûž‹è¨©W W!ƒ–¨é/(% K—iEO+²ä–1öÖK{Y1.`~zŠ®¾ ]ÍÊKVC‰¡™(×Úðb4þLµé·×¿…¿ÙÞ£ßð‹¬í®Ùü¶VÕ·æcD1×ÄO)DÍ €Âø8—õ9»öSA#J&eÑé3ÍR„ï÷U¶¼ ›˜³ºŽ±ǬïåRR3è ŒBþ¤¢{N'%¥’§q*…Å£&’íàÛ9w£¡Qÿ˜a—ÎU&8¿ÈlxÛ‰x®m%¶…%ñÈc/F¶\à(¸ŠŠÑwgíáÑó}qöáïŸÅ&LIî5QŽŒÕD½á(Î?ù(Ϊeƒ9²ý$Ãxq`áÑêâg¤Ã§®&x`ÅEm´3ph\ìQ¢3¾ ý¹š²Ó’3Ô¾¬ÊŠ9& Ò<±:hT÷œ5*>×ÜÂ\ú!Ó@K»þ>^Ì¡ô:? "_²`–¾|'Óê2¯ ª1ã=’Ð剟µjà@IÁ/J¢0ðï‘*lÌZö¨è¢ 2œà™"KKÛ†ú()ö€‚—ìƒÌ‡îÚ1\Ñbÿø¯ƒøßሗ“] ú~Ö~²ßpœóæG/k¼ÕÙ¢£'sŠËÅp<[ œ÷À…Pr‡whÛm;QÆÞ6¤+¹˜ábâjIÚˆr«ŠËÁ‘±-½äšØJ¢þƒ˜G w îqZ¨óRݿʭS+F”ÎBÜ m‚­ª¹,€DÖ½ŒÍEŒ|V8CrãÁ`G€¦fÑIŸXD…ØuGÖrèè QÁ'W¼×Cttq ><’Ñs ã#/ƒSiÜñ¥GוPU, çelÀuä~ÒF^TYEàg­YvžGƒ•‰‘6óã°C¢Â1E­¹u)E æ¡€î*D…–XU{´!ó1ÍÊ«–ÓO=N²,}N’^)‰¦žrŠîÔbòH0VÈjÖ÷2ææëÇ[„ÂouíæP†8éŽÊÌoPò#ÄÂÂ)?R0‡}^HÂÛ|LÁzËÚÉ]´&„n&¨#¡ý3×BUÿ¹GBø†±›åùIrî³ ”M™¹ Aêõä"¶n.("L,—µî^PeNPI+Þ§ñ4c™5 æ˜Ôê”R÷­®¯ i1o”X”è/· žG”9^¨µ)†é»ªÔ04LòÅrT¡c-)Úf% ú‚øb4vF˜Kèæ¦P2=•! Î•ëc†ÈçÒR¥]=¥)±;¬`ß6¦T‚…€:`Ó¨[J’ÉöMÑ}ø-Ý?õz¼ªô@ï}wÐCIl#´’àß-ú—oþi÷çÓFü´‘ÕAiírmÃÊ Å‰F…’ •ÕàÞ¹²š"Êá§ü’!„™¬£eî y™±<áïzÉÊB%é©£„©ÒQ~àÇz*ÞÅfÕ(5)ží"{×üõ§K§JŽª6dRÚ Pp~óiÁÃDùñþàÅÕ‹ó +ÌÓ”œq¤V®€ß¢ô”éSseÀç á«øDõOÓ_I±%uÖâGú$eòäûÝ}6$á×›!apÊF:ÖŸA¹í õNìjé⤤Ë)å"Šû5j­KwäCÖÓDÃÔ$Çsè¿Æç£ ¬Þ8 ¿RW$j(ZEéÝhÅœn€¹ì x°ê’;û·t¸žäïñ³mýìÑðˆ?»ë>û9ïåÂÉËú"=*¡àîã3é$"š…ÅJF†²üP±Ì(B¡…'P|ŠOHïA΀] 7ùuKZ#4¢zùji°é^{ÙW£¢mÁþ°a_,3y9>…‘i42ÒC¼>ª cÅ—š:›gTÀ°²Ekbgj ŒaQ¸œh®*Ê õBš£**rçMhÀ>WKÂàFÔ:ãÔ6ÐÇmS|ùÿ9¦)¤y:¼JNÎ ÓôÞ›5â°PÛŒ¦HÝt?pYÃ…FrSD ÇB ‡“s5]æ6áȪ6©%Hʬ4~·$zÞúrP§.—ã®\RË>?]g”ÓÁ”EÃäßû¨~;¹æ¯ø¼ûˆ{±TsE¬ i³á‹5TjÜ&Ižå;}SLbÛwõ𪿀¢Ÿ¿)ëHò»qpÍǃÌW¯3ÉÄ¥8€n<òWÄn+¬¦ i„.³¾m @Hm8`_6'½’ú7>þ,õÓX(º&)S4t ’”ÇFöVDmÈ,Šï£I`• I°'RÆ%W·¶V±Ü~ˆä'еá…#žÔqTù2òÃŒŠNÂ}ërƒüwŽ>/ÊËègX¶¨xÕôZCœ˜Œá ­À*suä°mè~¶#,³J0å­ÙwxvÂÊS ÈÞ´9üC“Áó…ŽçËrq^\‚4ƒ¬Ð’"ÌúXѶï³$žÑº`¼LfZÎÈ­ §<ˆ·E¯ûˆQËëÉR-¨«ÑHªà¥½Êp=‡~¹ªy•U²J!ŒºfW*å &¼,Œ`Ú00¼n vêå3@ëáÿ ÜŒåõZ ‹iLœ`¿K`p\‚‘¶ Ø¯²%’¥òr`npÒZႾ‚ÿÒûUñm¸Ÿh!éˆ![Q#PâögµÞ™Ã=ÈœõÞÁ9…±Ÿž'ç ïáï9 ì–VùFh6h¨ÌžPˆF„&°®g7¬#®­·kŸÁáâÜh-ÌXÛVC(2©`cvÁ'ˆÔìãꀚC4=ÞÞ=îÙ/Â&ý‘4±Üolè¨Ð¬¨ì¤ôªõï m@oÈÚ”‚СÐxïm`ë†WêÝ)ÆŸ­×„×u8íK¶?lÞ@y0Ž`B1.®]æ2°¢ÂN F~4êMdºg.{©e.„\âcsa>Z›Iûc3ÃP°Ö¡—ìJ¦5^„𯹇&SâG`ḦUÇ|XÂÊâšCžÙø„JShL_”¦¯UÍLSvåhÏkÁû;ùèЫsQ,2£:ç”± =°,b¡a.+(9.Ý ž‚éŒ|×™`Ø)6î›Ö–smYÓÊÌ#G>¡‰F­D(´“€ê ÄL8Á[%š7ækÚÕ8@aE¥ª³Öt hÇi¾6Šsè0„1YÓr7Œ0Á–¬Êã \þ4‡x­9;6ýéFÎJ<„§[œ¾–)NøÂrYbÕ#F5Ð)YnžE\ jƒS3Y&׎zK@† S°™\³xÚŒFU, ðSc3- ãпhO"ã¯RŸ°u¢$FÊܸ€÷oE(8Ô;„VÔt62ÊSªµh­±‘ƒÕ®œøP|€C -)2\…>Xš¨Pxåt¢ØÕ Y‚õ¥ˆÂÛéåNÊúôÀ}k]$‡‰ú§í‰ÐLmåš§G]i>Ë‹H®£±´¤“3]˜©lc\ =G© W¤Lx9ãëx‘Ë^²‰ ì¦Å¥ôê òËÒî8¯¸ÎbLéèÚÖ=ëk—Í þŸ¥§h b7Ÿ`{@´·È]C¡uÕô-xMN BsDÙF±áÄeCIn*MêÏâ“\}6ÔN‹µç²$¶ 9ÃúŒ÷”»ª;ÙG)ŸiÞ›ÐÂ<×ëb\|G/ì‘{K׃x±{}xìe7<8Þξ¡‡…ëL†W"ZRòú-ÑŽ´Ê›DmókQZñ©ÙΆ’%·^1DÞ°i…­õDIbèB«™ð‰¹ØR[‘Ü6¥ËJ‘6kqymÁ}ªv©lܬ׬¥È1ÐU–VáêîœwÍ@&íý€íKÚ žC·OÖ6”H¯¦%øyÊTñz÷̓ò1E<‹H@L§·4×#Ñ3ø¹nÀ ^//mºä]!HÔú‘ŽÿV¶$uˇò"j>ÊP©2gÖ­P6 ,24üœYÄÆE¡Ðñìì]7Ê:÷½ØB‚ŸP»x4q‘hÇììËÇ1 £u|É"dR›f¸²uHZ÷y9Oªq9{S-æ3¢Ýv”Ì»vïíä»û?ìì?ÛÝ?9¶mþ8Mì/±j(WJÖ蘭„Ž`üd÷⌜Yo$‘š21JO' rh—Wåšµö§®(§˜ÉZéË.æ“èj÷ß=¿s~~Å…øðÖª‡ƒðuׄ3õEy ¿aèEŸ+-™í™Ë®‡sl1¿\àîá· ©­Ô‡còE9ÎX%@W¡pC*‡ÂòàÇ<ÐKáOš€/‰|¡Ø#É.¨§è QCH\…Wã§ÃŸC6~Ã…“3ÿW?ÿºÖÏ_ö³_ûù+üò!Q™ÒÑîp;‹ù›9{çÝÏ 1hJZÍH·ñÿB”ÙIÈ~7¸–¡‹ s©‰&†ÓŠAÎõø™ëãÖÆö—y÷¼|›onaɃðÛÖ°÷Àº‘ÿJÓôŠïö#´ýÕÆÝ­ oßz¤·?éÉÄŽ‚Å„NsnÔâõOž Œåkþó‹'¦_²Š1 J¿ é³>+ôÅÑjAc2"’|‚í†iƒ wööàµÏg^è¶ ¼Dqóª5ˆG ÇMšxµBC¿Ó”(n`íš“%Ȱ`í>?µ\Sñ^îXÈ|ß8”öT¸º»µžc÷Õ“^Ô¿¨SÜ Vk¸ÃbóC‰âô~õ°Q½«h¼³ááŽ<FˆåjƵ—–“":î7EØÉp„‡¡äîúÉĹºqaˆ£ç*†”†Î¯)ñ®‘l+–ZÌŽ÷~Úx´ƒÇ3Ýúëר ã æA?Ù5¡¨å͹$VÑ`Dóü€rUQy-›!¨oáj2Øòœ"µ¨‹…Ìüâ*ñ¨¦£3?l`'výáBU…€²Îˆ ©D8R%œÖ¤K«X(„ž*’BŽÊ‚U"¢ø[ËJ沈·ÒwÁ4•ÆÆ•É{àï9e¾&Ûç—ó×/թˈ—•Ÿž>Ķg™Û¥®4ç(w^ãk6ßÞ»‡n¾ýzIã¸,s¾µ…·dB’žB èÂÊŸ$ZÖxÄÛ÷Ë‹2¼h#ü÷ëí— ZBGè [ø1"¸.ñÆZí»Îñîn>|z|`‹"¦ êÞ ‹¾Yù&úXBü¹>*„¥WÓßÖ„áó“ïŽôõƒÙivxfý2ÿ¾ø­œfGå9¨P"ÙF«†% áz}ËÅ› òd;ÅÅhQMÎÂŒîÎΦaüÃN+}ÓÑî{Ç{ûÑ»žBHgu9»ö~¾y7<ír‰Ø©|{sû‹lg~yMy[Ýq/ßúúë¯6ÂçŸû–„iÕWÓÿÇÿýùïõƒ+oƒþ ¹¿ú,¨_ŸáßA+^¡ÁÝï;6ÃÏ—_~Žÿ†Ÿäßí/¿ÜÚþ[_l~õÅç[_mÝÝŸo}VÒÿØüèàÇ~V€¯\ÌçË›®ûØ÷içþò38ùžÎÒÃÝ£'GÏò»ygóËüq9Ö­¾ÝÉ;V²ý«Š ð;³wy£áÇoÖ. j/¤³€10<Ü둈¥ÛùÅÃý]çXX’¢ŠÂK}ß…‘R gÇý ^Ì‘°8#¯”9:2PßIq£ X~¸]ðûBÑ\Ò5m9:R…°=Ù\ôöBŠƒg‡{Owç‡Ã““Ý£ýüÙ£¿çχ߹Jñ?A2 É6º;übðþ¢žÏˆzHY¿Ë(´­v8ºúYÍY6¨°qr«–dj$,ŸÆ70\εx¼4"Cq=Ÿ58í*âsD%ÇÜ¢¡F.} ¥€Äg‚¦ Ý £zF9G…«aò›„£àfitYÂæ{†ÖÁS¶`Ž?È—TËâý†°ª-ò-(x~*¯š{Ó‘tõ{±PØ»íþçðCouS½ HÞŸGr‹ýÒüèaï!Å–OÊñùŒJà7ó>³¼NQ|4aÝÊŒ›ë#Öñ0ÞFª»+IëjÄP™pâßãH*"¿ž`Ìæ¦%ÅÕ&¥ÎÙX_X鸚q‚œ‹ƒ©áP¡™e§Lµ9¾7®Œ>ÓÂI¼Œ<èà;Ê|o(Mª^J’\´©«`ÙËØ¨X,‚êN¾ÇŽM·†æ\'[Gf/LQïÝV+Èñcøí.M;%sä‹Í¿U”#—‚A²¢*/œï'îšL¯Ç6¢}N~ü5‡ýÆn†£ë¥¤®ãǸîÃTd¶ÿ|b ••A=w5«¬Hí=-0õf´ÀLŸlUíRö0cdö†Sçv³ ¢T­1H± P1½ ˆÏÜ©;%-æze¸¨9Öµª3„·è…i…3 ÷͈Hë(ÂDÄ PмDqŸ¹.|3œ¼Š*¢ mD[ÿ`F'F˜€ f¯ŒZÖ¯9ª+¢Æ%éKÉ’X>–82¦?YÇš*7dN­W#yRXº¾½ gÚç¿<-Æh ò£rú*M'­¨ýï>Üî½Ûìýõ× <ùü±Më»+¤Ô[f¼e¿8ª(ľõeØ’S;¨Cµdü€€&AŽoãV)%©~ͺ‘EÏû.:‹Âˆ ÕQB;Þ!3i@ôƒq"+Ó¸‹!8J•ìË_ÂÁ)Á¤‚’ŸHÀÅ­äG©WAHR¹hXZRĶ®m½ TÇ%’I!põ^Ъwl-ˆ\uÊ£µ0 Ÿçu–d-b%-°Ó§×êXä݈8÷,C}ïîfÐ宅z†%“£h §`Ë 5œ&j@Ÿ wþ–÷çßïIʇ'ùÑóýüdï™Sž4ÞÙçÈ„Ó{º€[ø+D¶¹{Ð÷¶Bâ(¤Q¸‡-± 2£¾®¡jÐó)^´î¤î5{`9+óDkdŒ€i\R¤Œ¹DäÍÓ}Ž%^IËHÍ|ÈÓ‰‚C9ɰ&xê& ÝŠ ”%Ê|¥¥P§×™Ëc ó ÞS‘؉8µO¨ç¨ÿ’OÔð/[º+äBo!0ÿh}P:¿3,Þà‘5­®QbbJt{ñ­/?‡ƒ(ãi‚«©QØ ‚5ù‚5SÒ †skûެÈIŽ5J"Yü8‘3X¹gëK¾FæyPq¦~~¾Õ'Ì æ1ä$Æx„ß­¸l J£r)ƒ‡ýÈxQè¬×K¸(&嬂|gÙE8þ«å9ðöû ç5é݃©ðkR”I{A ß:Ÿì¢Ï·ÒÄvX#÷€"((=ÏË).¢ó²¸ä«°ð®ô?çnòOÄåÄñm`ÄØ­°J æ:Úi_ߨv¬òûE­GEãq‚?7ˆA›Ëdè‹$/5+fäHæLÒ¨Oßlé².§§zecÇP¢QÑWbl‡Ô’p -û”$ej¿þƒ`k»/(Y¸™t:ÌX“Õ°v ¤·æIq®ÏôzN-jk!ijJ)phÑLÒ*ó¢ì‘ Ô‹(8 é>¨ïyÇâÓùõ úQÅ=" ±aÃéîÕÅéXö°L*W’n_B®®Œncb5ˆ yº+þbz„kbnÏö·˜«öÕä´ð¯Ç烸_wz ДQWé4¢ˆè·Ã õÄÏætÍ–ŠÞaÙUgèÏîˆñ/Ä-™ y0ë@)Æ96Íûj¾xM:IÆÙ™@ò̥둈 6S…gqH„Š_›Ðªc©•ÁÙ¿m-†®q=>ƒ(êïr¾0k÷‰¸ôf%ŒvÁ>–¾âU<¾°8œ±VÀP tÜy"':¼ðÊËåyÎð1‚ä’æCi“@7ñJd°åçg:ÉŠó“§B¯üCõANnCør͈¹ÐÆáÑÁÎîñ1ŸŽ±ŽÁQŽ<¦%4Üa—Þe!þ˜¨~zÍ)M ƒk¿ ™=ÏV‘†Ú(Oü—¢¬æ«—$‹ŒÉ )•nÃ)Š‚,Þ—ï«÷ó÷+d“²Õ”QH&Mà±åb56~Îs“b\ã#J¶ßžš‘þ ò¿†ßåuXÓU9 Ô(lf«áìEØ .³Ã­rö2*…Á Úœ2éÒQtÖ€rå~"so> ¢×Ñ9Ô\tƒŠð úƒÂH"ð⤭Q^BTýPÀ?IüŸ’Þ‚¡c°dòcÐX¦š°ù! *% <€…ˆ‰6ÕëÀCÙ7mÅ­ZÚq§[éL,ö©}¥ÐC=¨¶N!9iJùŽÐÇÂèiMp虀rÂŒ`@&ðŸZFåÊv/F®³f4YÖê/÷‹éåyqÿ¥wÛÊ<ø†‚oŒŽÄ€^‹I—(7š3ÎR$ϲ¬ò(f1¹ýóCGg¯dh± Þ½.ë‰Ãäªë›Ü:ÊR}½Ö6˜½É|5ÒE-…4ˆ Ì•Äî;æHÑ[ÎèÔX×ñé«2d¨S±S¹µä­Öï°”s„cÖ3x#­È OåÈ—ê1;ç 6¾np[I}vïKú͈Þ}–i~é2­ÐÓ¿(ùýnáÌ=>8>}êJpCõíÌÏhÙbB±¤!ú ^‰1æ‡Iz±Ø:%á:þ_i!ꔤ°éq¯cŠùåBó‹KÕŸ3Ä×caÉ­)Fâîˆøeù•Ä16k3-Ǻµ^ ÷w¾?8ÒZõ8ŸA’¬Â¸‡QÕh}HÌenÒ2f†E8¨äóD-ˆ:¨q®ÞMÊŽÍŽ{߉ˆð+›ÀueP‚t»¨¬Zê:'yŠu/±/qò½5œ¯­£ æ3”RRںȨ—¡˜5¸pümv?Ÿ°><ܦ|=üS€$¾4_”3*×vò.…›^O ÍkMošéõSKÑÓã{ÀóûÙÐQ@Á°˜ 5™gdbE‡"ºn}(BúJnLZ%)DBQ&H‰„h<Êiâ)_²xJG ¶xÙæLq_ŠØ/Ó¾ŠqŒ…¦’ü× ÂÈðd*U¤®&Þ—¸Ç‘tªF´+ù+qAF°,1TÚ੆嬟Be!££¶¼B$Òiâ~—™”s 2ظ%ç€Ö’¹¯ÇòEF€ÃÞ³bj8¡šÆP+çÅzBBZŠ[5M7Jnq§wÛX¾LdrQÁÐä­/¿œ-ÎKH.4ç‘‚E•-ŠË Â¥ÂÖH<+> ²ÿè°-óÛ’k¯Ýìç[ýL¢tzà±™ó2Ä·ßp:†QóY‚QÚLîUfè ôÙQ<´ jÈ|K†–…AÀ5Bé•Ó‚Š&ãüH"pG%Ó,=ŠH†QEöS6ÀtÓ¢Ýi88¬”‘+[(ÖÏD1—VLìÂøåkLJAy7‹‰ð@ók‚¼d|Qwc+uJ”ë‹9\ aeÒ+aØ59莋´Ž»×$ÒÍÆi訅Wqíõ’ôÓ³2(‰ŽÄ—âòyÓ~ˆ_”tÎè‘ ‘Mðƒ ¿º"4§¨˜"”‚2,—ì³Ê"A ^aÞÛÐà ¯¸p.¹)‰èÔ³À(ª» ”Hþ³Ü§}͆.šeÛ›ž'‡SÉRóz>]IbT}Šˆz%ü­ k#ZCcìõùéÝ#7r ݾ*!?hÝ%™r3Ç2vüòë7/ßÓ}ø‡0¬Ë^ïÁo­ä4%¸ÁزqˆGÄÁ]_¹âluÞùÒÉ9»˜˜ýðÈW ªƒðŽ•·‰ H+ êöŽºYþÓ³§Ùiê.UÅ\±ó³5J`k7hQ¼àK3Éóý¦C“¿H^0|A{‰Î÷öÏí<Š  ç=³ðKe_ô}¾LD¼¬Žyf F,œÕ”:%%Œ]lÉαÜZõ„ð8 `Y®dêò÷”•Nu‡,„¶pqPÜtYª—Iü<Œ™zÕÓË{(ZNwî4.å Ôˆ"ûÞr³æ! •äšÄÌæïtê+Î@Á“‰¾–¤/UIgçQÞjëVË*G«Œ¥¼½"¯Ð‡ù)&qÃJ‰é´ÂŠçS¸ya<ÎAºG æð&›·D¥–÷âG¯ýÈREî3#xÎ’ó ³:Wen`=€áí’tRYM¨Ãó17X†s”y¡—˜€™¥º6ID‚…(:,`:$†‘h­ak2÷•¨$.Ïàx÷ä|­G»ÇÏvvó§{Ïö|z™}KréªÓ½¸€¡ÃY1AD§;ž-¬‰ûK±‚ÆýÞI,s&þ˜RHœ¢#u…±-¸Ú)žn@­Õ œ´SRİ|ù%æXp¼À|δϢTP£U5]ªó‚.Æå:âÒMpu[g¾XçܶÄZC ¸˜JGjŽoœ†ÁæSÒ0šµ…¡a“ÖêÂêiù×*!ƒì*h„áQHG.ßþku%ö’€/ÑV\ÌÏ‚Üæ˜±ÝåÌÓøO_Ñ,wHÒ@/ÖzÔŠC/§•’2OcHÞÇ«—Xˆz)<àŠ­+)o‹Çѵn@á Îbg;уÿ»æF$xé5©ÛÿS#nÂÿ=áí¿ýÿ1üÿÝ/·în¥øÿ/¿ØÚú¿øÿÿ‚ÃÿCœÐÿÛ_åûÁZ’Õüùúÿøïû‡Ç{î<ÊÿÈ™Xù7n ž¹yxˆ/\õZè /‚׆gŸ•o_-óÛ/N÷Â+Ï0TÑ=<¡és’Bð<¤u ðQá»ñé´8«ÃW½iHô–òm9îÒ?å]¤dįâ¾m†2ï ÷ãôÅ¥|ñË˾4­liZ‡Ÿe̓Ôä®Ü±X@Ƶ«­Ék™6;Ü9ZâÖZúð|·âͼšX/Ó6½"LÔ?Þ=Þ9Ú;<ñÒôäœù\¼¶@lÁ™Ÿõòz Ù¨{Æ…«×ZæÔ øúÄñ G»Z€r» ײT($P4ªPw·c|ô k‡u‡3»<‰)éR,Ey,C§V!ž|Œ4%‚‘‘)å G~xõ޳ã“áþI¾p² UÉÁ¡£h M:áJÆ‘mÔÅ))s½Î;1…“Vƨ4#;"ÅMr0–óÌ马9¸”}|²S·cû»Gƒü9#šl8$æàÊ[§à9‡éÚýédwÿñîc ˆœ$’¬Á΢ˆQœ°Ô´Y†8S"\Ì'ËZ!3 -eÔ ]®È›YO °ÅÜÔFddü…WIòÛ¸¶ÄøtÁÁ箉&ËZ8®ql—N+’siIJVd»3˜Vy"*e-ÈÒnÂäÅyˆJ±ƒ½Ú`•qvZ”Ló¦*œ ³`sc·…äÑñcøë»ýç-¦IÂNF*?ÛïÑyðP÷‚ê/¾iÚ< çK7“o!w •Ç(/ „2V‡u›ç@Lu9}CŠ~F¨m‚@À ‡Ì9Ifƒ SÌ|‚œÔž-Pe23®‚`w¬É¹4¹ãyö¥‹È¤ö-•:^¦¦àûŠM§«©œºÎÍ¢hE²Ó É—¸À@¸Næ”IQh+.IŒ5ÄAé­Ôšú¤‡hÎ ÜIðòX»i Û1f&B]­´Û´Kºb+xc ì#¨/qZ½í!jƒcìcÂÐCá\ˆ9µikŒ[”˹a›EL ³,:Ó‚FŸ®¥ÈwMT.8™2hFáÅu†¥oº(¶Êåßa~4Ê=æÎSŸ‰êzôlIƒVerÌÓ‰êŽhÒɹ. “‚ åC5Ã…3f±1CGxsïl_B‰Ξ¸\qŒFûôŒ°g¤í-\±}µvNÌo3"8vŸÖƒcŒTòÒ§T“Ê<¸?:–%Ü ›@‡Þ»1ŠI|˜HDW©iÎ<ûhÅðÖ€“4sB·‹BbЖ׈5Œ!õtù®GóZêZ‹^`iv§ÌVq _@éЖÝáKY[+d]ý"N²‘®å{;ÃãݤáðÑÓÝããÿ̦»&ìïþdAÚˆgÏŸž€ŒØý/À%%^@>Àé^?X5àl`e-Ð@z ö“ëCÞð“­8ö¢.îî$=~ºáð?wÁPz á§1ó!Ì1ÁáK…oH¡"W{…bí(£& rè QpZ†ÕËå'*Š6ø.Ǿ|óüQ_E¹ìà¯ç'OÒ•ÏOi®ü|ýÊÇçk#‰þ{:Rüñ¡¢¯ü]:HèiÓOžü—Mò²±M¹‚Ê÷ž@ÉMÖ o;CË7îåêK†'tôSföP*Î#_¸ÌPh!å,rV9C«ª•Tï‘a,ß6O9Zñ&SóÑ fôÅ’ù†ÙÉš£91ª)³Ì§OB…0ñwȦµÛ» 'Wõž!˜6|¹M«ñ}þªùÀËÕÄ‚Gq¶LD8ãšÕºý4öá8_oÖóuÎ{ª |p²{_ò?>Ä2š”W‹z.о‹Ë`kÏÕ›‚x?æÞ^§Š@BeÌiŒ…­ LIWUÇ>BtrÄÀÅ1®0MDwÉQ—Šòì§m/ `.–gÓïÁÃ"–ÉÎ÷ãáN°0Ž;1t# d¡™µTó¿qG›q·b2Žc©ªÊ+J¶ÙS—€hA&•K;IçA³'ÒE‹t‹Óñªš&¥ Ä:ƒI‚Nv&…6œ¥ÅéèU½$©®-ͨ9+«„¯G„x»ØÂîb¿¡Abê¯ûyÌò2Ïw/K:§Oj¼I‚‡ï-7ÈerÊ ú¹â}KæB‡Ã-Ò‹!ß²X¢Îß#/yútxô*hûOÿÞ¸|‘ÕXúÍSÁ ys¿ÿ&]mœ½aaÜ›þ”*©5 ‹çŠÊÂwµÎÙÑ$Šh"êÆ»O%þ=Ù{õ¨ŽP£t2UÅ8Í¿ÆÓ’Õ)Û£P˜Ðϱ–FÌqË5jt@É2sDÑó‡Ç‚,vgóÅZ}•%ËÊEwDk»‰S4µ YÏb¶¡ ¢¹@zÏ’O†ûAê/•§Q†Ä¢Vw<¬Ù¢/cUK¦0õjpò@‹ü]¼U¯9•ÕÆ[DN cS®Iæ»K*†ó“^†N+šäf˶1n;è~O(Á<5Q(ARöSrÒÌ»öÏ@£Lyá±-j•HFº[Òˆ…€¶.Ž'ýÁ‰Å1-QøÝb°ÒãëhÙÞ\'R§4}Øf\ y?§×ºæ-aµÕô¬g‡'©ý)ÿ¼¬áîã'ܘRxK&›Øûš`Ð0VÎþs‚+šü%ízÛïþG±¬sX®ó™%Ög[" ÌVj~'Sä/›/‹‹Wõ\\“H$Ù¸!Oo(ç¶ä¹ÓˆV0uªIÄGüÅhe!FÁ…Ú¢Â'­¹ÎÈUÛgr†hÿðQ„Æ¡$)åIî¹ êØ‹Æað°i߇—½Aû¡eÜqzZ—fˆñÈ,RqxMM_¦##©"ùtÐfÞ–,šrW ò.'œ ¢Ús¿’ß¡dGg™aîš2`FU8©$ ÂExoô4ñ}ˆ3Pbß­ÉÝOF»C-õ !÷vwwócÞÀÙÖææÝÁvÞ%Å6×Àjñ9æ÷9fë}ŽNÂfWƒ9+;CýˆíËLÂ>ˆ—_ÁÞE(í&4<¨’¢‰µûØ×Zø˜ÎH+<ü†P⢤×öYºÓfsϦ½€D¿,\1Ù‰KUüošÎž&ÿßJÿÿÜÿ_càé?€àæüÿÍ/¿ØÞläÿ¹ýÕÿÍÿÿ/øÑüÿãá³Ã§»Hp/RŽ+8ñ Òçnù?~ïáÑÁwGÃg¦u 5œ(õw‚ês”ÝdK “c„E?‡˜šäÛQÖ(|ެ&¬ús’Ö.uxò`Lɱ‚sªcs¶·ºaÞ²IúöhEÆ!Æ 9g€xÎ,ÌJŽ“uÄ.ðêvfaºæ¬ ÒdÂh\^ÇX=ßÇêLú-†y©iȸ9Æs»‡n „K ht>Íê5æ¢  M ‚pFK( FÙ%Þ†õ@L ³Âfòð¶Ä \ÚšŸ-žsGRÅ€UÕžöN3ì >^N„5—;¬€p²Ö­ö²xÖ‘3Žå Y…Uê~|×xî¼ÓdãÌùciÍ̵\!&o%F½Ïæ%FÍ©êº-NW‹¥Ö?±¬ 4vÚ@P®Ô4÷/ó¨Üéü¬“SŽ«*7B¸`üÚøÄç¨ár\¨ê˜Æš|—Ëkußî`ʱզ£âïoƒvõNh-¨#:«\’®Û»ßÇü6BÛŠ¶aðŠL“¸ö …¤ÕÙ¤ÁGNÖ9W\¢·X}½AÄ“ƒaúe}9Ç8¸g¥ÝÈ…ëb*jöºãJêto??yÒëôÉ æâ}~&ÏCÖgÂQ×ÐQçãñ*ˆeèöýpL׸ƒ!ùR€?ìL&ô¦PµÐÒ¤ôg‘–”À’{Ä †{ ý¥$¤Ì +>UÁ /׊ MnG0Ó¶D®Æã|cžëºÈÝ É5…^pÃ-},§u‰#Æ0ÐçK¦ÂšLrGÉ¡™{ä’ñ{4!Åßmƒ¶€ÖÀФþ« 3X·Ÿ­êÅg`ÕLÑÝ%>qˆr¢,"8þz°·ü}Ëhm¸×~&Óë‡ðEIð‰§îÂ0÷ÉØêšLŽ à{[ßbëð43‹.°—@)óÓ;øÌ{+X|ï'ó³[ù-r`7õRdf:·’‚€Mî ¿ù{Æ-÷TxOûõ;Ó[Íd`!Ý¥Ò»s®ö»(Ï!Œñ¦ŒˆÙú>nªLãÖG½€ìLÐ`æ  ŸÌ…e·ÁMÕšª!¼.‚! IÂ1Ϋ{ Dë3¤D£åp¨â"dOÂp_Œ =“W.%²Ý¬á8µH© ¸ð²q03‘2¦2Ê6ò´êRÖs5»ùe16…j0¬f©»6ÚeP¨È£Û A”ÂK·0”å œnÇó)øz²v§“A=lÝ· u?Ì_hÎý\ÉIîÁ%›÷á™3tÓ=´ô= Æ ä†ÒÄÅ%™jŠƒƒÌ/­g¼|¨ê-aH‚ÕÖßç«ÌÉ:nõÆQ¼Ó©b±&ö- Š&‘„¬—S-+щ±ðS·Gbö´»=¶¾ü?Ëíq“ý_.ªbZýöïvÜlÿooÝýêËÔþÿêîçwÿ¯ýÿ_ðcöÿîÑÞðéÞÏèØú:ÿk1“­ðŸG8ü±WûÃÝ Öã]JðÞ},¬NÌòDÊxw[‰ðt¹'PÐg»% :Ìm ¤ÃŠcå“Û!øˆèòWóÓWz'~­ÂU÷˜Ó‹…zö"ª´Àü}G)áöä(¢ú’ÓyA¦å_÷N˜3ß%h ÎÔñT01`“ŸCí„ùŒUgÊJ¶)<ªrú¤§ˆCŸƒc'Ò)À^ë÷j †Ï'Ësv"Qù¨: 憖UÅìÿeï_Û9²5aøùœ¿"·ÜÓ[P@¹lwú¡(•M›(»Ý.[“’R.!a¥TÀ¶=¿ý‰uŒ‘‘‚r{æÝó^ÃåH‘qŽu¸×½¦ž"ì X,SL>­{ðæFÊš¶['Õ7&ƒdÝÔÐ3Ò3€ib íö̧9Vò~aŠçqb´>ì§4d²Ä˜U4:²KpŽ;ž¬FFBÃQ|F¨bˆ(§-‘dûâ}2ææaï,^Áì+zJ°…ŒÈã,„aŠb*pºFËË+ƒi½¾¸•Ìbè µdÌO™É*(°˜ÜŽÍsökŒm#û#X;˜~ ʹ_@¯À¤Ù®M§ðìÔ M db8.œ¤}x–hMâz˰/7h ‚9r>_^Iëð”dz/óQTYUGg[ïœ7¯¼¥”A‘Ù<øŒŸäwò—ò ÍàˆÐ­˜÷Ûà_MfD0Õ`þ»T£»ÔW »¢HÚòÒUC®b hsåpT¥LÆËÂKŸt«óIÄ¢| É™fØà i7 (û.'x ºåF@rÜ¡Ý„Æ ÕˆˆÛ\s JØ.±OÀ¼Ò:VØa€­`zD™†ekèœÀ´òîØú’óЯÓò@ID¿:JD°"‡*ß%ëï6‰€d#pÿÐ3¢äÿ{©šˆ†¨ŠÛ›Nc„Fû•mˆ¹\Á•œ.°½×’?þzf€›ée¬+IeÉ®iéù1èãÚVvYˆÍ\´™G×ÑÍæŽAf$ÏÀwb£°tL3†+Ó-ž- ™ øš²«aç`ÓĤàcHݵ“?iÂ`–½}2î »´ ÝÐmwª2P沘ç-4œ¡Bža_J@*7õ—«Ñ“êÏ0w¢¤âh"ÓÕ{€“h *Ò¬?[³¹IAiB4%.Ú‚âļFbbØú/v_¾Ü=Û¥è9ÿ¾ µ FEÏ‘­YÃëݯö÷°†Ëªæ\¨ã¼¢Y­%çOÈíWsxÄ'¬†FŒÁJ(™£…/*ózÿŸ½—g»/z§y(J³#8>Ôø<‰_í¦QCáÑm·‹ò‡ó%4 \&29t’3–pBS«>®éšÒ|ìæF›Í™ºGù ¤UåTÝ9ÍÈ)&:–xÄ,‚ùÓš$Ž„ZÔºfñÚÀ$l³+È—ªSæ C’TAPê ÇuˆûzftÈ^9ƒWõ’M Á€¹“–9.@UCb™¹lj_N®ìŒ ¾°îQª¦-Ä«œ…zÖ{Í@7ÅÙ›¢ùŽ£4êðÌ.“ÙP%ûï­ÁÐ+Vó‰û@k\åO²ÀN€Oì9úŸÆûåâV$¿ œ“€6ïF~ãZù ¦ƒ¡jåTh¬©ï8"NÐÜ<)&%¦¬EEr^Ã-K=uƒ4[R¨æ¿£\TL:(›œ-’<@îT11½0EË@æøyéeE¤ÈÇ ²Ám*¤wÄÆ1"|°>9u¸—œFÄp¿êNvû»gý§oþÉkÏéOóÞÞëÝSÜÄQîF÷9Ƨ6O[–MKõqº·{ìVC+­/™±P¥!Ú¢œ‡®“½ÁiŒbêtiÓEwäWyÖXEDÛ1€` ØÔ£Ð£pçöeW\b$%¿èàÄÚ…;`¶¾XÇ‚C=k:pÔÎg“›Nמ;ÄGÂ_r¼uxWj/½aû½a¬ßDÎ 5Eaöè©> < ôõ.}=ׯtï¤ÿs!KâÇ^Òc ï¦-üÕßè«­‘ÀúA Œ‘ÚüÜ<¸gðÙÑ=žuÏ ÖäÕÀÒ³_Ýw°”W—ÞÜħ}óéÅ<=-‹ƒr gžË×ä‹Kø¬êàÍÅEºÑ0 äX¾ ¥÷­zp“V•ml¥[· n/K‡Ò1k]yÉÔÕ*¸ûЮìL€ÂyïÅÞËý=z×ÖÜÞñ½ ã9¤5[·)<Ë{ÍN žŽp‹„]òÜ•oË™7;º¿v%hô®ÞbT«KðöUçÕB ÈŨ›áÌOó`l°ZµGY,]qš#çÐ>HgÊϯOàq ÈöP禳™TïJbh«@FXækqûÖS}¬R¢q™¨ ZT ¸ÖøT<ºë5÷È–%¢Ý³Dƒ—L'•´ã«çã«@ö'œ?5¤µÉ ¶HL Y hÌŒd#à9IÕ¢$ 騟x¯k ,ž®sèÞ„S¸EUúè¬ÄÓ­Æä>28@¾iØ:æQ>\ìɃš nM$° åÖÎϾ?¶L]@Sî¯S нƇ|O=‰YÐÁð6[`F/D4„…2[Ï@&Ľ¼§Å¢Pö’‰.  n©µ»bÞãrD'þÈ70-~ûÒ|k“ lEôS¢Ô…)eDH+¨‡÷þ×÷xͽ*:¼GE<æøüÕ¯oÇû7Mþ÷F)KV…H² [,z|GQŸN3UúÄ4T„9ðÚ<ÐÞßÓ{ô·½ô{SAÁÕƒûí=^vj®M5ëÙ|Ô‰øÎ>GPꡚ‡T¾a4ýù¼¸º(!Neøö9Ë!˜Sn&ë9ˆ&–´Ä¥ÐͺœÓµ/Î’œØeB<ý"ʉÜÁƒðËöç¾tÈZxbŸ ƒ): Yî°õ„ÖJ<Ýû¶þ£½oNvO¿îï1ÇAÔ¦æ€À~ާñLkæ-nõ]S×1€Pv7â#µTœ÷J’†ƒ—ž L|¶½óåÆÎ£G›’I¦%{À•8\s6EŠÅzczŠQ{n1ŸœZ«Œ™KïèA ³ÏG-Ȉ 8ÅØ˜HÓ&a¿'7QbâpÚù@ S •KyÅã|äM­\Á“Û'ùÅí0(t1c^]gxÍл’û¿¶ÆŒÂ)†®¤Û’CÎîÁcçôäÎdntéG'Ÿ/1@ õ€üE5ªú{™éY1ùÝæ®ÈÐÈqõk>p䔼陓âòßÍíýUïuîížõ¾¿ðñÉÑqïäl¿wš¿::±ƒaovéRÖqøh¨í‘’ z­õvÁg^Q}3òçó)ºœ÷fúùñ¼zÈXˆwq_øÛàÔM³s÷·ÃƒŠóƒrA§ãiH6» ~CkÚ‰dw<˜tóƒ%ÍÙ4ëà¯þ-¤¤ácCøjâßâöí—W __êׯg#´ç˜/}¯(?»ÿÆ«ÚgEµ.ý0¹3 |)õþµïýëbþ>ñ}?u‹m…ü·.ôÐ@f¿ó32gmKÒ›¼d‘ZÞýâ…§—,Mõ;3bØbóU< ü £3ü‹ŽÁvLy à‹`yM ºr>bÒ|ô­€=°Æ_›•Š §èëJ¿Þ‡¤èÍânE_û5|èjû-õÜ 3ný]pûœšNã­<¼Íkýò~©ËÎiÖd02r»›âöò7Ô˜™Æ@xaáF>6ÓJ2›ùîÊÏœû…ð³ñ`ô_ÂK_­Ùðýö¨+‰&èܵ÷"]RáÓkf2ÍÜ6dzü÷öö?üÐûg¡ûd×8ûCÅÜy˜T'?„bWÚqN转±ì†auóÃnþíY7õª›ï@ÙZGÓx}HÑ¥.ö:êbƒ˜£õNzlÂY,ëbó’¡ýÂ>¬•A^*–‚áºq¯¼­ÉÕ4Æ=õÊ$¸¦'óƒÃA±×z—mr³È·ßžQ4a_°°*²b¡«èÑæö—Öé°¸›žlà|&[„ µDã­ÂÐñíçÚX‰Í¸Ffî X:S£-Ñ(4vÒ›ÇIH“N3(:2©aÇIËf}ºÅÀ Uתy^ àߤ˜YBk€;Ù0€ç±…*" ÔÆÁ±WtN÷NöÏrÍIôÝþÙ×éÁz òÉPHL®ŸkÌgtc…­Šû,cNR©‡Ñ>øó†þ®ÉÏh?®ð6l@½Ê×47Èl³q6tBk ˆéã â,5ºþ1:µctöu/±ÿr¿¿çt”SYYß·¯«<’Ù?E¹ì9(ÑÞ´•Љ‚–Jölaù¹w%âÃ6³€_Ð:•žïkw^ œv¢Êîaã;½ä_˜&]%oƒ¦ôX™`OMËåü©îº3×!̪¾tÏ”î-aÓ¹IÖ·÷NßÅÏÉ8>ñêt_Ÿ УÓ8fx÷Ì SA({ºA/6³ ÄüÀw'½ôw90YîŽOí·ö“<§Mˆ£N·¸‘ñŸö«A¹ /êa%‚ñÖÆöÎî³Á¤˜ŠdJ÷3‰(î«¡S E‚G¨µk‘~b»* <ælïRJ ¡ùs{4ú™$”5,ۨǧzP@_ñ¾hˆ¨§Í•çKTÞègÙPär’t©rÊÉ·åµûæÆŒGë"¡JLPCsHB|럶…˜ì~ä‰"ˢbOZ :ÕØXŽ `â‹2ƒw!L/|ÎJ&œˆè¼ _§"æ¿9;ýhûKoߌj*kæ@Ê`¿t }AQÈîÑxI¼H¡Ap îBâÄÙ\Sâýpó׿þðÓ-î°;ZÀ%n~ûíÖ: V ÖŽN`úڂ/)ȇ)Öœ €mly,>’ácÿó9Õí²ƒXPàŸðb„«ªöÓ;9ÈT´òˆ[û;rëyôƒbxë8`9NÎ.Šê÷ü¯(¨Ž~‡zt€Ÿ„)2‡Qѵ›|#¿]wÿÓ¿Øm¦(¯Q4Ðù|¶¼‚ûB[êNÚ‡?ú·åT–NiB^ÐJp;dwÓÚü‡Ç¸•ÿè^ýÃþˆ…%©3[šÉ'8[.p)c½\5ý8þ ­3õ1UØ¬ÉøŠúR?àM£»ß¦u™ÓS««YnNZ¦êdmßvó›Ooãjë¼ñÌ]k¾½@Ûúÿ©½Èнçÿq“,‡‰ %…5|°|z­\÷]^kµ“´QúFw#£ñ ÏN…†0ù¢uF'b~ÄóˆÎ^³X3§d„óu¡ œIšT¼Lê®_Á 7ÉÎërÂ=ÝO€Hƒ7f-[¤›ÿ„hе)VF± éµ™lË×”®—ú¹¸h$![¢ ÕvP_Ħk7UÚb£jý÷7»‡gû¯ötXžÿÝÌâ¬çí®; ÊrŽÆ¿Úü\Fàé~wóßÿÞ|`Rü'”ý$®øCJ´îOâºéû úOâêé~ƒ© ßN¼áÓO“ßoøôïÉgø ¿N½j(9—§øy÷R¾®µb¦˜ûð’¸Ý2½4MÁŸÞ] húûÝ…´±]mí41ðý§ÍïãWÊí3òßkŠí£@é £¾ŸÑ#á{|Ï¢ÇðUºhw÷¾>:9E;Àé>¦›öälÿèð4´ üD¢D(:1~iÔiöjGüdÖ’äWÕÔ yôCSŠÞ™ÒŠœ8â!,bÉ(cülÔ0 ækRøÖ²X°½ý“½7¯_ôùE`‹Ý•mü‹yQŠ­îCc¥œ¤þž¥îÕé·¥1ƒÿIMz[þçŠ:ß–_ùo…S@½ðÄvÉ{,a¨ ŽNΜPGYöŽöÏòÓÞYÿ™ Ä.i¨3‚/LZä~‰å…µS¯ “¼/ÿì]A<Û mÏÉ ™Û‚…Ñ,÷jè ÷niÁ‹}×?8:úf÷äèÍáËþ‹Óo²„·ú Ì‹lÐ|× ýl”Sòõçm©¦3îÕÅl:[rF Õ©M¢ÉyZ1ˆŸêÙ4 Kt[ wr¸ ›ÜŽ=ü¦ÿÙÜ´ªÝã³7'Ñ\­¹G¬üÍ[HþE©ñ)hxÏå1¶ìÛ§ò5ßu|øcøþã{>|T~øváŒ4qÎÆþ¶ú™'àÔw ’j'SÊû)y6(‰N{ÌgZLpWcä7«Çð€¹$•Øòɾñß“vNŸNïIf d5aÒD3¶O{ÏAí©;Ä® ¨`Ý.C ù£Î\ ÀOì'Xƒ]^gG¯÷÷ò¯Ün8Žt¶çÁ; ꌲ©éø„¾”‰k}Ô/ѣׯ{‡gáû>Ú´/R| ºÒì»u_ÅÑñFTÙciï‚ô5ÉK&¦-xA o/l£f9L–3Û¢¡Êlj3‹@Mˆf™ßEϼ´)Àä-[èyX{Çr=¸2§-eêe¾k)s½¢Ìq² t„í>li¯á,Y•&3ÓuTÁ(ŠW¿úG<À³ë|´d¨,´WññËàq½wñ»ið“aÖeÃãóà 틺‰!ˆÈáx–縮ñ¬ *àÐx ˜ Ø)jo‚Çä†[NIXÌ×@Ô£'o‚'醌Œw­¦:ÊèâbÕTâ4(¬n-¸ROÂè _V±ìþåÉ ÕíC‹}­¦&ÿ4™ž­.§óúFwæÖÀµ‡Dm•×'EÖD,x£‚–8Ù”D%掷wû‚IXÑ«éš USç´þ |º5§IÓÝ+ÃŬ}´'¾™ ðFøæ†zVc¶*ˆ`{q9c˜:úŽyt†%§Ï.«<‘’j„/–Z¿D‘¹m±q³nŒ1ÈÆfIÔÛÁÍN¨1hU²ºQÓjmE,¡»©Ê ;”›‘Ÿªé:†8…ð8ÂRؘˆLW4Oö.!× ÝÀ«À³®1q´˜P K¼y‰ôk¸šë´É"ãÂ?É=Z¼ºæÌÏ9É5šnæ¯UWôµ]šÎ&ÎÛ0P7§½†I Ð+ᓃý×ûgý—½ã³¯Ÿh/Èvk p‘#ÍÄĵa$#SìëÞî±”ÒbeqEä-¾Lþ‰“›w>#RSJéñ{ ½po÷´wÐ;=íŸôNÏNö÷Üö€ç­€Üx„,1šéª9<:ë½>>ûÞìz_|¹¢\÷ìôl÷n‘f9ù2Y¾¿ûæì¨ï¶ê©kâº?Ò7D¡ DxMj ‹H=/ð-}ҩסžÍOÜ®^ø/=)ücÿ,<ÑéˆAî ›¢@žÇ>õв®w®õ †Û¬þåZÊMô¿zôr'Û³æ] Ÿ[GŸ&1|$1’v/ðÜ2<¢è œY’ š2’ÒU³wœªÆ{sÖZ\>cܸ£¼\ ×£xg³—º¹ß!ŒËò Þ³í;jÉtù”Û)qñS¬‡›#1Êœ’‚2AK3Yûh\˜¯ºeØ&6â»»Üä¶œ—=ÆöS4ëlPÏ™c󰫦OÄ»w0;Ït›GÚõÂ@Û3 m‡ÙÒx9þHqØuHÉÜÍ= ¬0ÁˆT}Øûî`ÿ°Ìüß:=P:ÏP¤¾÷ nÂÿÍNÆ Âf­$:¦õ`Ý; uÖ0ÔáPx«n hÕï÷Nìq56èLÊb±ÝÃïMIŸŽ;‡IäAÓ«Ì%âQÜqðæÀ<U¹Ol,0ƒÂÀh4žï¾Þ=Ãë×ïôåÌÜ51/NáD”áÙ;q[õbªà}âÍáþÞÑËÞúc¢=D»ŒÛí/ÑÆ ½è}½ï~MÛ9×þþ,²jø:+¯&Åãô#ëÞ(ƒ6&wáÒ¤ËÇ}ýXjX××þǯ®x­ÚyÂ×ÊÇ«^û´µ»ÒÛÁýz;(ÝMè.}Îu˜÷¶öWºÛþÞ »æ½Aïí f1»Ú˜81{a›Sâ¶+LMdãàìÑ$ëÈm¥KË´àcT1f%W ‡0ÝÄ…ç¶6Ù|hIFÒÕMu¹¤ÃE\ ¦¤vÍ =¿àû(ue†ÆËÐSa(ê†Bg¨ÆPºÉÂĘ4[÷²Xø‡w=ZÇ.Rî%n‡óQ˜öþù±Œz÷ù£G…Á/zun°5ÉÛW“;—+µ…RŒŽ,-$¶^$ˆ'¼5æ“Ö­Ø\¦Eûq`V,_Ü$a»_ûdÎêßç`xzŸæøÖ´m›mM¼uûæñN<ÝÛ=ôsASlL²ÑBðáüÚí¾f÷~¼†jà_×é­5¦ðm¤ç²u³€ùi++¨RÐn0âBpvÛÑ ;¨¿U² h`½׳{Vâ@ª ð Ú–‹2·ÄŸò·’¾5ørcÕ—dî&K·û“låügŒˆ>yÝiŸŒ¸?_NãÕ±.¸h÷]Wè(UÁD7ÂbFuÌÛV–®U¶Ùö¯[ ®•h­Ö¬9²<é½êô÷z‘[r–ò¬QM}#hÅârP/gËš¼}çÓ»JÒcÖI½â±O§amñ$ÚÑa„h àÜâölÜ»nا¶eä¿nÜ·|þ¬ÂÔP€@4îYY¢÷xöœØîWïÏB26v=ƒOÖWTË."{º¹;æ Ô¿àÜsNÕßqð}Ϊٷ½õPh t ˜Þž15aÙµÚ0 VcÂö-Qb šDØÐhG[$$œ 6‡&OŒ”âO¢ÄùÐåF#—JØ¡¼õ'51î”I¼s’æWëñÌ­l œ,©:ÚÚ‚GJTÀžáWë÷Ð MÙ‡…ä²Îî’+™Iûÿ@ñnïèðå>ÈÚ»‰¬ 0¤î—ü[ë·e½Á+k}Åw¿Mgþ1­fÚÇšý͵>*ói£PBžÐ2-«emãO©…†ÓÖD.Þtz›­Ñ¸x¹àÚ¼³DŒ n™š¸’“Æ ÏÐ81ÇO4æ'ÑR•—N\qk¯¨â¯qã}Þ-Þ^þeï•“–ly I•M ¿]é®È·=´nÿðüÇgÓ6/\Ï1t1Î'àž$}>ô;³†oÚaŒý"ä35*š»i°è>¸Äð´AÏR¦uò\û í‚Qô©š¹ä± Ÿ&J³Dm‚¨Ú{wË#[ÞTP¹|îÀ[(ºD¨ÅÔÅcçÛP(ÁïPR¹“ÌELi VzîÊØj%[/_ÌläAlÂÝŽ!6C5ììÄý‡ò¢žøóg®Xë™”*÷ªº²ùâE†ÈµO\o^<vdNºöÉëÝ“oÖñüEq’¹é¨õmWÃjN²MFæb²éJŸ~³¼Î|/ W¬¤ÇWaÊWŠ'k׆ù˜ÑcE’$¼ RÃBW _š­ÍmŠ´`ÊQf®B|ÄHK0¬“)݌LjaLb( žÉ˜n˜\«B½»·×Sÿ4 é‡@…ÉÔ ¾ÚÝ7zPgã‰zŽÜƒd*‚q¦‘Ç-ÏÁXÀqQQzÞ“KýQ’VLì3 C<ÛF%чҚú¦AJì5{À΀…Î<êBV`ÖRð¬'ÌPL4Du†Ž‡ëb>Â,È>D}ô¾ü×ä#ÙMJäQ£$ ºÿ}¦š^ôãú :kŸàÌ{lå¬Ö–"Ø„Þ x©rUaùã“7æàÔÎò©»Î|(ë*Q(AŠUë1Åüt›b Ú…,'e}Ç øgÈ=[Ì'U™8ÚôFŒ˜—SN× …íáã§>9ûºwè[´RfjÍš 1P¸$òÈ(Œ¨RŸX§.ù1x);9êõšß$>¢5Á©•¡ULÂX8øväŽÌbn?Ÿ¦óCÁý¨:Ç_läÿTSƒ?U Ï£ ö/Ý’ŸÇ 2ŸªíÞJ{åíxù8]ÑÐ8³ª¨‘a  †ýå¯-AÑ2LeÖ–ÿ—ÿÑÚ;Þ–XÞ]ÂGÈc‰[ÂÈ=–‹¿ñš7÷*½iÉ/£R«†'Ñ¥(|1 ¿¶­¸o¢)Žubq&Ç(‘Ôç€@’oˆ(j¤ ¡AbïQè¾| 2 ‚ÃÈR hñÆ ¥>UºR7ª‚sYo²‚oÿÀ˜±C’7™ŸIé “° £ÆˆðjÕ´0ÂhJ>}JÆç$¬{p‹´oºn”€kMø•+J;\˜EíùZ¬€k±õŸ#öáf¾ÇJÑ„‘ut£˜m^.¿NoБfÝ\O>FF,|á"ŸR‘íÇôÿ,Ë4R˜;»\<°¥D` ›ÊIY@ô¯ËÉ{¦ *o® ˆb¶GM¸í39sf“'}ÆÀ’ÛÒEõzùîÁé‘—šŒÔkܦt >byŒ?Ö D控¿ÿ«f ó¥3‚í|ö3‚ÙŸù¿ÀF´¹ý'¼ceþ¯/}þÅÃFþ¯‡Ÿ}öóýoøÑü_g½Ó³|;ïlïÜ/û—ahƒKj>;Ÿ„õ‚akß#/ííÓïŽO÷OýÞ~aà:?0@÷Çü’W1'ü”ÿÿøñÇNpþA9¾Ö 2Åíõ*•,L £9I‘4r¬±§‡r%œª :—â@SÝÃ>š@G¾ÊÈ禩ËlCÃ\an³Ì&Vó7MWR"|hÚ²WÍ7Ñð˜]óÃma¨3EN·¾yE1Šzá5°ò`òl¦ŠU©Ý@˜ám ã”±>ÂYJ}¾&D0³Þð ÒøÙtŒ·0é)äTž&Q…É]³Å•Öb}!j˜k ˆ³q†¦@FMºÆ^^-6•<¶vEpõ``<ò˜óïAëºÖ|W;w˜º ^dš;3#Ѹ.ˆäS‡«2ùL©n´?r—è[ˆÉœñ("§ølPA`»”u•ÍÊgÄÿ¹ç‰~ȆžŸ¥½jÁíÀà*ŒOÃäbÕ¤ô‰ü  ÄM¶Û¨(‘f"å‾E9uµqT†×¡+}áK…Ë¥SŸÁr®Q2d¢½ôŽÔKÊ"€:üê‹ë|ŸÅ¸ÿÚtYƒþ*ˆ;-¦ålYƒUzZ/ФIÑñö—;RqUH²ä$»?(×ÓŒX8¼’içczé"Ó- Oß[ ŸI@{žù{!LÍ:ð·œAÏ£7j¢wÉÅ?ÁöÛøÜuÝ;Áó$®´R0ú~MgÔmJ5•C‰•@“§’¬|¥ï¾k¼›z‰Éüà²B¯…·ºQwªg½æÅμ¯ |Ü=Ï—¤‰,}œÕ¬L4AêÃŒ†xb}WMGpÝ9ƒ¼IaçsNf·»n’ï©“.c&8PéÔŸÎ\ÛæØÉKɲÀD½žêðB<³œÚ's§!ج k´+ç<¤çÃe˜¸ñƒ%ˆÔž+1`Ëê÷+Iƒ0HPèO¡?’„#£!‚~ZÝlÀÙŒL7šLGUSt†ŠSF½*›LM#aüŒ ¡¸úËSuÃ$ArHXxK¸ÏQï÷„-á­Æˆ1çæ#P‹ebY}‡>à  Ñh–Øl,ESTÖÁ¼2YpÈg«û$ zAÛPóq1ä„“ )‘¨!2d`A²;º‰è4¢i“·ZJÍ«¢i!ìZ–êšW½>OÝ&VÉÑØ©Ô/&Ûé]Ǽÿmç§%ΰà©q™Ì½5ü™0ç˜i–×ÓΣGyàjLJžü4ÑBÁÌð—¥™žÆJBy8Sñ óúóQ³\Œa ˆX„YùÓ>"ÑQ¥§ SšÔÓé^XQ“²¥QÖÂ/ˆÐ³2½5¶¼æžQ(¥ûÑKày1­'ß²œ‰#=ÜiÞÇè\rY §=žM‹ãGéË>®â`°‚!– ­—K¸ÑÜ©‡lµ5šC‘*]»+Y`•@óS^™_—˜1o!‡v£ï}%z˜<$ä÷Ê”1K .èÈqŒ©T-9 Y7íÚ݃víÖb£†2ž¿Ó ´ÜÞÒ|¨’›Ò/oÜ­ÙÒ~°]…®rRTáMà¾É¤?A[÷Âñr2q’œü¶OÈê¾ÌÔøÅz7£H|˜YVçÇ$s©ø´ ‡ðˆžL CS6&"rrlñ¾pu"lÇBV „{BšÞ‚«âˬ#5Ò}¯b¼ò–Ÿ¥ÅÝU‚h¡ã SבD)ߨÃÊ6^³¶€PO¾©1)+p Oà£m ÀbèMftì±q[TµµÆ#e3úYÉÀ'Y_„Ãɵèd9=#íšì?^®‘Á˜™éC¥E`¦îÁQE1ýä#J,>`·Þ!1P.^è10Qô'-2x„ȃÖvºùCTÇ?[‘þ5Z®‚:—Î|îw~™èyžÁ%åÇqÕÂdÝœy"ðlËᛃ•aSÖ–{hPk¦yÛa©€y¸¦,Í'ÞÞh ¿Þì~½ß››¸Ùhê¶I=ãL[ø¦aê¦çRŒ>À9— õ|Û{”¦Cƒ”þèaˆ™f± ÝšàæË1‹ (RÙ–µÄF…YÚ„\×Ò”“‹¢>…;WÍD×¹š›øRoMçwϘ+Ï¿x:Ùyô/><ÈמåÀ,âžÜºÙyÔ|éZxÛ~ÔµkFêçÊgEDÌøF5¥-/Fc˜s93ÎÍÚ–,¸Hä¹.„sAžuú˜<ÝßÍg¿ô ùËÖG—Ì’‚?B™’lnÈ›„èúެî"2*-jí·ùhV’Üt¾t"±;9ÊŒîKö YëSü²‰.0ÍÑ,§bA€ëÉË›r¸DæÎü²¼œÒp¦·LÞqó³DÚ¬Ú]k¢ò&‡ÓôÌùj#EºÕi&i.²©¶rì¼/âÜ«y¦·€â:òÖ¸²;Z5ëç!L8P‡ ŒU!~!@ˆ qc÷Œ ¶ï 0" LŸLßM!/™Å¢iº«ŸkO]‘ O¢ë¶EpSnç‡åóž=¥£® B]w WíóQà‰1²º»¡,Ý3cû z¬Ù)¯&ù‹•®>§¼¾BjY ÿã’n wO÷¹b5ôˆ®H „»³Ó_`+¡–Ì*èßèÞ"Û¨,ϛš\¡èÉ »FC† [—¯{oO´iˆE ÒI¢œ™o€#9ìȸHw%%cÆEØ›Þr\‡¤Òòã)’3ïW÷UYŒdñzð°k_&htšìd„Ž^AªG´ý¢=¨Cv€5á“r}ùF¯³NgBç#×ÇÍÍÍü#Àž;û‰#;²eEÑò¦æ =Ÿ»u´ w ˉ$(ÿÐeô¤Ä€–ïA¥ÚÇóÒéP¨ÏÛŒÇH(qxlh' Á4±Y*¶ Ý«Iqk|èȳIµ×œŒü@Ã/®=Äú&íœm:y=;#•ê ZÆ4KjÏË r²M+´g¶oº/‹ ]Äîã‡ð¢œ\áºÈóª¾y×Ùù-{FUÚ·*BPMuï= [/\ÔÉ͘¥6#¹ñV+R?“÷©½-ñ&£¦=T¿ñÊÌ«ºa]`8 <¡8Â] Îz½PâÖŽ‹úÃ[Ì…âVg&2íÏhu¦­¦Ú<­|]”ððP)\¦$¼“Û°ZÔYÚ í¸èÄÃà6x5¾ýàÐbÿ»‡fNGè©õJA­Ø®*Òi^Cÿ Ž^óë9°@{./ºX3ºŒºÇ†P‹³øliUâóû(ñY¤ÄƒÛcãà&x¶©Ðç÷Pè޵óž3´Ù{ÙNPŒŠ¾Å}Îþ”>‹á"ûóû|ª}f‹Â½:$Êý?¬Ë—(dC·{7å|º}´¶.†”q˜S?ËYdC]‡À½Ë‚rdQÑè®°ž<"” íÇC3/7|ÂÞ2~:ÓÍŠ ¢¥`σ{žÚ¾›ñQ¤}á@EßqYqD¶éLó=N5F ÐÑF÷œîôà5¿@e/g¨¤ÌVÙ cHHLøM:P|}žrûÁT„rÅ'Ô·5¥YCš£ì¹-|Á¤¦šËrP!l!_#À+´×Ÿxîëõ |ÜÝ4ƒ[éÞ£¹éëú\]Mf]w*üÁVføUôËèá+•PP`ÃʵÅJ&%¢q’ßá±JŠ~Àb4MnWþ̧ÕÄd¸— Ò“rjgjöU\0TCx½unËÀH—…:ˆ"y¹Åd™ùÖ¢?™H@qU…í­­7Äuþ¤“)Õ°abÖv*<ÚÚêúƒY»„i_6.Mm3ÅìAãŠÎë…Dâ!rŽ[`i“>ÞuFKÐýòš^ 1{2Â7³BK­kx?º& ßzúQ‚[:fh 7¨ök‘—‡¢ä|aGñ.ǵ,L ˜³tl}$È¢:v÷ òÆc4Ç8¸¥Æ‰ÃÃØëî -€¡È•°ŠÈbŠ+—ëËQ(ÕûÍÓLµÅõ †ñ_Åü|Éè©jh°š 5Âýg?^Áþf-ÊCvô˜p_t6:][ïÊ©ÖèE/|khm§fx6FM¤½9–=î›X/F3¨Ü„<‡}sTÓ°PÆ…4n¢Yì|,ÔÙ`11Ä›ÁmÞK™GÑ7Á†žß  ñèòÌØˆ¡)½t˜±[ÞôÔeS$ÔŸy#™ÙÄÔÁj±ßW¨ Ol@;$G‡ûèLDO®ÊÏÓA[›dͤ±ÀLŒÚˆÐY4šâF†èÎЇ,@BAƒ°|Æ¿{³«vÚ“nnꪖpDÚÐŒF CY0«éBik0Ⱦ-ö P£J÷!…БˆñânT>Y¹.Äl ÊÅ5x³1‹ °ôÉоn³€%åyÅ ù‚D\ ëŸÌ]|(C»´ÍëÒ \<‘Q%°ÒËùcÁê ¤4 oÇ%g ø”_Žx‰ár£ä3H\…ŽZá}Ê8ÁëgÐ3LúZy4ºü¼G’7Õ¸Ù.„ÂI±ê| ‰Yˆ3Ç Òާ%ÇÀ>’*tdµæ÷y°ìJ Õ/¯xKŽ2¯Œ©t— ‹yù¼ƒ$%ø8SIµFµÐÝй·Å0±_°´6! Ò¬ %¸àuÁH¥’Ш‚=ˈ¥.å䦿ÑKp z)û„R°äúh•Wàø.&·xv˜PÀ3w0e˜tjƒ²=ÒÜÅGðê‡poJ ¸1¢h óç¥=wOt³r1ÜDÎ1fá`Ñ)òº®S µÍ8%“‚Y«”Ì#‹ ÷k‰B“}óKÜõx¾¸hìð'~½dƒ%±ùÔQ5Mh\ù^ÌÜ¥z QR^íYˆ2H¢€:™¹¡p…ËY7MÉ`IKDâ]`8<$Ö]Âbt¯¯è:8ÎôìÖÄm.ù„ŒàEwü”—s·5êø»ð Dy 4àèT&Â"€Ù^ÛÛÓ½â2¢û §ÆÝÌp5è„"%f1jYš•ÆA››ƒ¶ —ú¶–­” HËlC#¹'@ìÙ‹Âæ*C§tÐÑ‚í¶—Åü]W€ØyvÒ¹Ê'ƒJÅa$šE¨œÞÎ nÀܤ ªQ¹ã'§ž¿Á‡º‹˜¶¬È¢&» áaz $ #M8¸êë8•‹¯/¬É¤hAiÓif‰µré߇2Sx qD©«Aüu£ó^ûŰ!ñR )\æmé.ž·åU—ަ VÃÞpiz”‚ÏJ€=ªUPn¨à|_sÍ”±±îV]Ô’ãœpF‘Çše#RäÜ}5¯ÎÏÝÚ÷õHAgqëêà(¬—s^ò”('‹ †·¬ïˆbS ‡H8ŠKB¤Q„¾ zž%Üôœ0(ÙMÙ–XcY´ÆhWˆÚkå™Ù€ùqYœá…ã®ï¼é D}òúŠ;ùÍ÷<{¾AÿtƒdÖæ‡ú¹´8É­ʽ“¦‹ÜdG“»‘€¯¡×²v£©~J[u2s2ûSQО3Ǭl™_$@qÏŠ”‹páȤšÕYÀlÃÊHè¼€¢Sº0à] FR&°FÍT©f–Á sâØ½³0-î\&F¸w"ù¡ò"@ËËUûm,!Ù2ùµqŠHË·WæpÆ=pE¸ðm4üô4Fß J¥a‹™-b‘7¹< Óz!ú¸m+¸®ïNQ“Æ4Y†/^øUí/Z€ß2 œUr¢zá(KÄh“ðÉMw÷a“!”æZÌ/ýƒCçGå,2p57£i[¾æzÅ7Âz}Öƒ"®´bbí­ÄŦ[§²§l|5HÎ ¼“èƒMiL™¡Ú¬£‰gF9Cr¤²;LÏun>ÊJÓRM€Kš“Հą’˜´?jF5¶ìº×)¼šÙtÇú¬®nLÆCø³?¹0² äºf³`¼œÑz…G1ñZ*T;gÓ *½d< <5‰+u_«6 gžöùeú…åE¤ø,ßf^6ø(üyŽ>¤fàŠd$ôídû‰o˜lÌ”)·oÒØÔ0èm©óK*ж!‚@ŠyˆE\ʤF{Qq5Cû“¸h10°â$ñüžÀFîó¬Í(†;àX„+<8áM?ø˜Ï×jîÙBÙ鶘¡“®áN ˆ*2Õȼ=b:ŒÏ5;ªë#¹}Uá£ãªÄÐ;"/ë€jÙi\ï ¡nMæ^cëZýß“µ]=΋¢oY©^‰Â=¯¹?O °.ªËzw{hó4NwºÜa=¸%Ë9c¤õ¥|î ïr5”“+`q\ÀXÑ"Ñ ·JMFñØë9XVÆì€[}ªSJÖJƒÏçP늣e®FËJÃÜÍ6›]9 QW‡éÃáìê6úÂ§Ž ´~‘“Ý'ÕÕrR,”9rªŽ›ü%u¼¯"P3q)M3оã™<³ÿßv÷íÿÒã>²Gg~èï¿óàw÷¤&ïponn§J‰M¿'óÕRh8­ƒ% D¤²-kQ{ÊH8ýâœS™Á}…&t;CaIJÕÙ²PFYÐŽBY(­(‹à‚¡¶2À3Ø–Œ:ï*'ÙŽ2bÌXHóéÀñ¯òZ% òù jsH²DľáÎÆ^ÇöBœdÄÉT±cÊFœx;®ëÁl6)‹iÆQ»a“4ÝÞ¼>v¸óc.}}ôrÿÕ~ïHÙÎvÿé ¦¯íZ3‡ ^ŠqKÁëx±íÎ…„I(N‡¾B;zZH5ÊΘJ]ŸæîXE׆ÿ4ÊÃÍPÕþ29Ÿ—¿[ì!¶õuÖh>S«ºæqbh=Uãíd;Þ.Ž‘#Ñ‹‰¨@¢uΰµ#Tü®§y®)V¿²ÐËy0¶ƒÑnoŠíˆHx:N¸wkæÙöNg3ÿVÃÖÝÂÍDÆ‘øˆîêV5mãàÄ`Ý„àÅ»2ãˆxÁV›Õ忥š.¹¡°)1'õxŒœå{ÔÜùt!Wƒ®eÏàM œYÙÈŠjé€óA´ørAö㪃CÓM¸j:èl H麴ƒ* œFûÈšB ‹rª ‘…c­¥TÚÖÎ:¾s8)ÀöचÁúŒ f=.™Òj€§DÔL‰Ufj< „Ç ]ãÅÍSlY͸ú´0-CR¤ K»Ç–¦Õ«¦"ÿ  Tç]Ÿ çÝŸ«Å³‡þC›tӻƄáεŽw@£ÌÀ(†Sê×@¶æF–ýƒsŽŒ@3ÃÒ7~”#ê7U ¯ À$[R6JCÕ8þvÆ㜑—šŒ¶2V¶5^Åõíå`6©Ñ!w×{é$Æ _d]Ç5ÿ¼“œÿ|#–÷óÇù“¼›ÿ·ü¯ùÿ›ÿÏ`p£i4ºîǵRwSNgÚ»x,¸ š Të³€ä#Ñ¥%hF,jag­ÛØçp.³mŸµoÞo¨îÂóCº¿äR %‹àµ —ÏLàlA/1ªï Ùˆ'„f…¾-8éé)à€¿ÙGØó,f}ß vºj&‡Çó2sGÏ0êAÍŒsdù(&WN ¢]ö#U Á!mϼهrƒ„3ÃoæÞØZG"Àcˆ ]Õð¯ìz6'3áéçeˆ™`Ñ‹Æ4 18™ÐÊɘQPx«µÌ^×0oi2ͳ þã|VSlH1’ÀL¨9"m¹5’;Ð'»bå°B:‹±9ÀV¦¾P0kfÚÏc®<ü+½Qéø€‚iðæHìÀ(tºÈl¯W¨1Kd1â yõ±Ãwµ¢gH%Ͼ€­ùgP†ð¦è¬^5—Øž6ƒ¼³ÿèí×K|˜¾ îÃUá/6Ô‡Òu­ÃÅÆåuÅL§£ö;'D‰[dFxDÃ]ºÏ7hƒ ùâ´•›-gæ;Vò¹7}Þ í˜A€#”YœöÖÐ¥™)|J)Šà$QǶ(¿¯èHu+Úg™(|lwáfû2_{Ñ;—õÍÖë6Ãüø,kðÀ—ô@ixèt„ow¸øØ‹G$úO°ø09 åšÀ¯9—ìá¯o>½¸p‡ÑïÕmò"„˜>à3Uçs_õ°˜Ï+ôåxb|ň3ñív¿ú[–~‚Ô øÌ€žFÆ?h±¸‰ë!Ê {ð¶ž‹c©šï©âdý¸¹9·|qê; ‚à±=³_G#¯¸=á`ÙVýî…û Ù ›ÀG©zçÛŠo¿¹¸B–Îé¥xDvuó+OqX(È/m±?§Á„ôy?Cìa°Ö®¡Í‚;rúñBÑ,EiܼB7‹| $Ö05†MúB˜.ÖŒ‚ÊìPP·!ªXÜ p!¦L¼XÇ‚ãaö® ÃÛëŒ$n³Ò0è+%Û¥Rêjì4<Àn鎠´¼RDgáý$ôŒ…gU(™ –è×`"º¼PÖ¸ÙcôÆÈ>k½K;k]Œ(Cã2š åâœY©ò É5)®ÄR«dÎ@ÁóÜôW˹+\"±×ÚJìî¿0Ê×/@í9Ú‡&éÁj¦¾ƒìebªÎˆèn{ç L4FôJÐŒý^H®6§[–i8Û° xPÃk"ä9Χ ãqâytcñ»" kß OZ”¶§tc‚IVŒ‰¸°t— ·a“™S¹™LÓ¶?ç¶lýÙîn§k©Ø"ؘ˘å¿$t2½n¶?ÏîX8ÉV‡ì&A«îØVãygš3÷ç´üáÎ}Z~æÉM¹àeÕþ#o·¥jºBrwxfÂÚ‹?<õŸ>ÿñ×§›øüw¯²&{…¢,š*„í³ U d†÷}ÁXÔ¤}Â5ȉÎ?þúÙï"†<Ý Wë?Áϳ·\u(¯MiPa£fJÁ«){ê_–0‰¬R‰ÇÚØˆzd\XåÍ£—,zû9Xaî^+Ì– ”(©@ȆÙ(1B¨¤3éÉÀçW[w97éL:|—@eÈà`<œgœ±Su5¬»I )xÔšy:C}|Ð&ø–½; ƒ£8^ FýLÃÄ Gˆ,×ì„qŒû±S‰hB¸SFéá`Ws”K—D>ë›hUO²[Ì™7C…–lÂORp‡ž'öT²ïàºÄN-hŒÔ~o½ƒžš þOó;Ø©ýðµÛ·}Ç âµ‰i¢L¯g’MÁ]BØàIœT0E'Òƒ°X•þŸ ‰`ÿ&+8Ñx›2ƒœ{ÿ<;Ù%™ÀžJõ [¨Í5ñ·èG½q»îÔ»“ ù "ÉH=ózdãW7NvA~Ib|pó˜óï™ßØX7×¶kNNÙj>Ð}tÒ㌇hwǦ;ç#^Ö˜ÜÙõ¿Ž+vE®ËÉ\3 3úÛñÒͶA8Ú’óÉ1È5Fˆ­ÌcD‡ ØWÖ FPú1Ôâ4'Œ[n}<-û”(R~`©s£ù»~ïõñÙ÷ý½ƒÝÓÓ ìd6{WÌ!1uP¿‹Ëâjᎎ¾Ù=9zsø²ÿâô› ’zén™swTöåÚj«äôÍÉÉÑW»`óœúÆ,Üû—7±^vä̽ùÍ?M‘a5./Ç“ò¦½ÈÞþÉޛׯz¶ ÄM…£ÔÕŽÚ¢lW´½Úßúmïä$6Órì“]ÙÁý¯ÝÂ}‰^W¤VUn©Tø)e]È‹°Ô n¾©1#PÚè˨d}ï’§QÉë{—ü.(IŠË}J¾Üÿjÿ,(‹HÊ{•E\¤”5 Ì­Óñæì¨Ï)ιؠñïWµˆÉW¾Ø}ÉK¼¿*Ù¶ab«<Ÿqc´L-{»§½ƒŽðƒ¹/Ò—XÛÖ¾JÁþI’ïIÓ)vß­z´($_úòèà`÷¤ïVýÑá°¶>¨¡à"µ£‚gnœäMË«æîˆ ¼9¶»Ãµªeƒ˜î¾4KáL¸=<ÇÙ'Ká pRåþÞ ÎÆ+èÚMî£'W´TN,r£Eúh‡Y]¯!i+pe÷SÇ\ó  Ž9ôä!pË _ퟜžk„ËØ…ÙVÆ/IøA¨ŸzMܼ׻g{_÷Í˨(+C€êL¥Bû‡ßîì¿„°« ,BIû :ÏÕþ—}sxÚsã²»÷ Ü£¶ôõlÞ˜Àt£¿;:Ái¼tE!zøŽQ}ýæàlßt¹0û*á÷‡‰2CÍ)or²Ì‘ŒÇgotyKIPp“­YÒç=½;\ÉA½ÕhdjdŽÜ¾ØòÅÜÁâmŸNŽô ÝÁtzæŽ4:9|Y”‹ûps^¯w¢,<ëCb‰×ûÿ2ucÚGxë°Á˜ö÷¾î퉜t…¶ûäDYÙËãïϾ>:ìíéætsñ®‚W ½¢°›‘oöaÙížî~ÅÅSë&.î×Írz>/ËÑíʧ¿:éõ^ ¯·Óóú„ ëS\{ªÈi¯ôêlâ7ž²²Së³QôŒÂvvI8G÷’ì6ñQ°†V>•šHì"“I¶Â÷)é7ƒÄŸBujNÔ®9#=DMƒÆî\Lþ²½µeX‚àUࢃ$j[;Óìܵêû¢I~Lš)tVQRê ÁN¶ä1]福[¾ß.gÌâì‚ÍÌ‚+5á’Ȫ!?lU…b9ÇÀUĆÑf$u0¬’O,X`²eEËBÏ%>9"¸ArH«-Ù7ô!G}ÌÍB~Û+£kcRŧ3¹;¤/w–o9 áã þø| +üeYL PkÖ;ŽkpÝÇ‹©§åää?Üò~l~’,­íàVܝޖó—§Âéý€“°”´|“Å}dYµ—GF‚¶ôÂÁ K&ó(Of®³Ýf_bú·{˜øù{X˜ ¬ËV \ÐstDSx]*‰EŽˆ…°Ý’C)ûÀ¤Ÿeñ¾rJ…M¾éƒrd >x‘眲%uÞƒ+W"­%´ØQdéêù³Šéíp>ÿÆ~ç©æÃ‚´bZâB’°ºŸx«ˆevt¸ Y™ž=eû¹”…ó¼(†Ý¹ÔÂ*úç“Ù€uÇg$9 Ÿ Æ'ÓM”dxûl…µ¤~ÚZ˜¹el—Ë…|›3­ =$ÛhÚ”+ÖÆ©kð¨ŠsVíÄ#D2\uêÆ˜—EÛ™ƒæh„`¦” Ÿ“Œ)XÐ7'U0^XfU=ØÏóæÂJã×´_âP~ýE™0]áÏrúË­ä!˜ÕW¸ŽŸ«ÅÏžžãùA5RJúç¨9ñ.z.Wg_‚˜˜%øc(ðBúÒ0LJ×j¼€’Îá#ª‡Ýôy8ú:>ø³Ž«Í}_]./ÛÆÎüðru¯~NÅs!GZ#ÒÄÃ"ö}ê¹à*|Fc[»'Á:(ÝÂI5A=z“úçÂ-CY*«–¾†ÓQ•3µ?L0Äð^^/Üòî³ >|ƒØçZsøæà@lõ¶¬ŒE𒜗k,, ‹[£ÓºŽiê“#ƒOᎪ+”QŽ~¬AʶDßU‚ºzÒûÊ)Z§o^HËú"Oþà7 ÂúÙÔS7ß™J0 2] 8„¯nÛ‹gG\-J8<¢IVƒ¿#ÁŽ\ råqâàa@” ] ¦ è£l:׈˜>Biéö;®(÷Ë¢&ÜÕœ'@‘JX>[þ£(Ú x]s~%ÖC³ EWˆm3³9_à´ û¿WúšXïÝÀÎæ^ §nÁ[’7l†Çg›®I„¥…‡FñtQG¥Y,8ö€‘îHêj†CšH=b[4Œ*Iæ>" á†(+ÏííŽÑ+°¢,wMüBD±ê^,­ 2üà²oO/.æe*ÎæA1ÈîäþöÀu?;Æ`qô¤ÍYš"(ñí»lLã+;6~m6 i8¼ y9ƆÈÈ‹qáò±­ìðk;®½ÚØ-³.q“ËÚ‡RzâHdòg ¢pVš¦9 >oÃEë0§"O‡]ÑD]q¹äÜÎHÔQCvÐä2«ûãš·¢ t7‰‚=—:$ƒ ²$Ò‘‚nqÌÃú mp£L¶ §`FA­þD‘e|ZZrþG•^Ö8ObËñGÌœôqåÄ‹Íü Ÿ­üú¸ÎBZøµf—Ô©µ®d™<|™d"¢y_t˪ è‰ìî”_7jÍðÔUÞR}=/ЄëµZPà!¥Z½ùAËéÖy£(“FeÈ G¬oë¤ €)ü¸wø’À‰5kÇBa‡FþÔºJ¯ÀBûÙp}‡ô· Ǭ ¹×…<_=¥ wM>ß)rqè`&/Me/’õÜæJWBãMFªÞ|Pc#g‰RØ4G(}r4¤þv ø%˜¦¥ˆ[ñ;éúnxŠ‚e΋¼ ±*2a"$ ºTZ<êÀf~àš#9¯F]Nq¸ÀcM&™˜æ\ž¦üóG>²÷&,ª&=é×U½íAFp®”Q¤¼hy†B«|¢›`W›˜* ÆØÂ•h¤@ˆ!],ºàgC‘›m#´REZ ܶçoábì„°¯ÈŒEP"ó›ç¹æP§˜r1{Q fp烼FuëŒ@|¡…ú˜axš:W°Bó,Ô*ý Ϥ6 ã+6oKc–†‘E[,àé1Å¢‚ñ†¾½XT\*2 Kœ!5€Œ™6Ùƒ2ýÀ´À+}̱H–ˆ+ÔìçI5µ^¡Fê#¢ÓV´än ­-Áqùœb!•Æ­M䀚_Þ+¤FÞ’Þx6Üf-Ü6¡æõÊ3Öoé‡Ý?þúùÖÖÖïœÿ†*/Òî‹Ý›››üó ù#ZQX8ŒªÏW1eíu– %Áì¸7t|´we‰+äôÏ;?þÚ T׈±2ïþV¿IabS­ùM=Q~ ³y ™ÔcÿÐrZLå\¬?Á¤²Ü©!+„6$B´!FE¸œÓ^Ê×µFèá `\. ×z÷"¿Ž–SHtåêÔÒÊ ,$¡¹ý2‚“9ÒŸ-ïiftu$¨ý y¼¬ Q¤mÚÂ&1¤mŒG—A™5_ª°­Lõu#cKl.ñsDù«ø ?Žþa3„¯¹ÇÖ8Œ‚€Õn¯Ëêüb÷|ì+JLn3w¬à÷Êsêiäx+„ܯnšü°Ð,» ³ yÞôpÉÀQ2ÀüRš9}rë-IAé쟇A¤õn’ÑÎù*)‰äbÛ÷4t®Ì)Cõþ9·ñ™wÓÙµ&UD‹' ±DŸ‘Ááx÷äl÷ ÿõîÉK“tI>>=zuFitg̽À÷ªg8‹œy w *fþ™¢æ K¿ÀŒñ߆Uê¤>æ•v4ͱLOfD´¬1›†‘0>a4l¨ÃªÀ˲Û©pWEë8·¦A“3‘V•_‡êb$•ùHçtí4XÖRô®lX>u”B·`B¾ØDÓ ÚrŒAÖ >±’¡i<Ü}³ ‘§5 è$ KN´¶è™hYÌͽ`Á Ñûþ„quˆ72}%Ðf)•¶7!e>¡ š$¬ɪÝäýâFáô€ Púóµ˜æ§ñd8Z±6X>pGS—FÌ}󚆀LšEAèü\œïl§IÂ=²ý·í-|ÎôÆ‘î˜Ô*ƒ_iLw#ì!tNS¾œ y7†=PRD¨=‹Ð1…·Y½˜—…ßyT‰"síÎö3ãÎ×£ƒ#nÙärJé9XzXƒ62l9"m®§‹cgK®xV=«9k¬Nlšªdb“ô¹ES-ìVÒ¶‹+ö]Ê~jDî´Ž0‚<Ž«Ë S|>ó*$‰–H™œlÅ 8y…»ÍÏA|g=¨`ýäÔY§lû| ’ MAP†ÛoÊ.šõ¶±“ V4Ί•ã(ßk@=ÆcY\"ì„isj!ZÜ„Õ 8û·‡/·Ã—Ýcø¶¡7ÕG×®v¦F€äidÃp˜¨1HƒT¹8 \z ÜÒž|_-aËIŒ8¯Ý+´Yu³æ«Ù¥Û55²º«¡PSªpÒÌ »ÎMa![.ó‹ˆÁ×(ÑÀì/'wšßrU*NÔå%؇õbÙôU»>%£Ò¨Îñ$6}5yõøv´]VüƒÜ< æ%¼} MÊ’¬08¶½ï˜&Á…ýþ æ…<%¬ðZãäÞâH’v`{Çò'Gú¥ 't–äÔÀ¢g¯¾”¢vÅ_ì×>7ñ§&ý/Orÿ2 ¬1ðHIÅ,)Óu äÞ {Æ'F[ \'ÝFKŸílyú_†bÕ6ø]³yâbθGhŸå5€ £>kRH§*C]yÁŠÙé1Ÿ{†'^îka¿¨R ’÷Îàã&I(ªÌAÆAJh2]†‘p‚)•d—;÷ # Èo€~ÔÖ6Çc°áПa„º:¸Í½„¾0φàic“òȩޚÝòâ,Å1™ ÷Ì, ÊW„R6.m[ äm˜Iÿ!›ߢýy9\"-@ëƒHîÁ ìêRD¡;ÁÙIÍäÈ/2C²!óÐŽ–&$‹Ä­g®ážlõP­ûÜÏÖÖ_y§„&`Ï,jæ»Æ Ô áL_^!ó àÓ)î"-Øa†BÔMhÌ™‡Ì‚9vX" 1‹îýè6𠉹ëÇ/s(éä>Œ%1ì“C½ˆ”EAš²ak^c=bgã # ÈÄå—'#ãX±™ VmÃJM }M¼«èñ¦ÁćB’/ ýî[Ýl»›ïàð½*KX™dAE5c³Déf¦$<²vXBݦf~‰l›ÑÊöG6æÛ¶n¿èÍ,k"dN]ÍB%^ÿŒÐñ¸@2fÆ‘ÄÕ“÷†Õ=’g‰z“¾¦Ü¯sî\Ã>)µ÷ßUÈ-n“äõñ™e¹™®ö ÏãýÓ£üË/ýÍ‚ÐÔ(2™#¿-?‚?ù6©X‹?uSŒf\ƒö"˜ÙP½tQþˆ/)M2¤1–܈™&E¤åÓ嬎ݼ\ ÝdЫ±”(b²­?¾©A6åBû´€ø < e¿ƒVØÐË)¶¢;A¿#™³Ñ¤ù <b„Õ7îjæú¢Ñ—Ó‘;/>霯ñ¯}ú5&Õ”RBí ×ÞÏ )‰|záEv;z³{€SÁÐÇfƒØûjáNXr*õ±m¹ÿ˜–,ÆëøÆs @ÄïN¨gOÝ)·V<…<…âC“p ™¶6û I=‰P¥Lõž¢CúÐ ñQ¿'Ì… ¥ÊÖa‰²u¹¢‚ó-TÀ¶˜7/NÏöÏÞG·ç¾Ê7(F’åCŽÙxþ,ïn²8²¶¦Þá‚cd/gΑdñ£o{'¯¹¼wøÕÙ×ÍjÌl÷ñvJVsÒ;>ØÝë½îžõ™9ªœ£Á&€Âépß&Ê-f÷(—C_:ÍZ–S€gM‰E·u,ß~sxôÝ!ñè¦*AÒn´O‘ð"•¼\‡uœ /MQ´%aÈ9[*é¢/4=ðü©ÖÑžõ"„²ËÊ üYµ~ß„!i„¯D‡rጳÃsd‚²¯hh”'ØþMŸ@$L¼ š£ÍÂ@s”OM>#‡¶Ï)%ÊLò±ãØ Š«–ýêIÂ×Μê[°“çš©&+ ™XÇJ|¢¬~.N ­€€ÀÐvÀ¹kòìTäœÌ¦̵YŽ$þß³t0FŠqxàDuÒ+^WjY“c0 §á„qab¡@†ÏÄ'ˆ8:tòÍYÿ«ƒ£üpŸ +àßö‡…Úþ5¯«ÉȳŒ¶ünÿàeÿ´w¼{²{†|êä¤u5\ÑHôQô_ìžîïi™fò…T#‚ª€ý¼™J>Á¢ËÒé`‘ŽÏŒi¸Ž”B|l'¬S« ¯Ê° 'ÀôÆ4ãѱ +:Ö ê"¸“Zj„5«¼‰§Ì8¶ÍŽc éóV5a¦ ìmÓüΈ¡3àü ¬±µãÓRߣ^–5¦¾*#JÎ$ÄÙùXùÔ²ä{ cA pPÉñׄ‰ŽÆJmëHuExx8¾8cì–õà”ÙL¡+>[^tT¤\ìž¯à•¶Â Þ`Ñà&ðåÊè3rZ„É:³FZKt¨“„“PŸ4i‡ÍT¦©…c÷TQ¸‹Y³cÂbD£7ˆÉ‹§›€Ü>ëfœÄMŽ_/ëû° بok 3!6ÌÀ˜vù7ã5ØíorƧSáÅ9ä¤wQP çp%æÌJÌ0×3ʨ—0,2`òßÎg€òtë§²×ÿñ¤cÕ\5«]kîªtò*øÑEÔü¾Œf\fïèø{Ñòû<]B&ÝšheJ ~ÁÞZìå«]ÌŽ´{rfŠ!cÙàU‹º—¹¢RŽ"<سåDìÙ•¤1åöOw_€!aïÍÉiïàèè8È âÎÕŸé¯â—»ÓÒ3@·'!Y…„r±Þù¦³G¾„1 ´— ›@X¦_,â‰h–éïžÙ‰€²÷iaïÈ@¨!- Æ]]¬7JØ ‘¨ÆÄ`¹º½„øÈ 8n&ÔÔKb{@oXÃn3>mÆs`VSC½è-ŠIâ“ IB¨µ±Z0^7³nÈ&ÉÆá¡ØÆ0:6DdÖNfÐŒŠØs”`…¡FAáJPð?FOh£¿«®+¿ãÚ 2ò |f%I ˜ü£ÀS q "Li âÉ•ÙL•*®4ÿr2UòÂw®ƒŒ¡©‰Á‡ªì9L{ª$ªò?½|þ£ÇÀXhr˜\9«<+$‚Ð Ü’¯|:tGcåDUZ[™€¾µi³•­Ì©\Å.fiaMËfyT„0Ö€L ››:kö¬¿M°}Xγ ~–ÎQ­üI‰‚”±©œÿ2SÓ@yó+ZËÆÅÀF&pnÕWÓŒrÁ:át¸Б/Ë‚±25P°I÷H%(ш~‰,#~·XÆV'•øð¡Ë Q°‡/Xk+9&È‚¬ ëÝ,åÚ¼º¢8„v§f.î†â掴¼Lmº&>eÔá;ûªY ÷ôhþA‡æ÷g®pg¶9%[|’ùœDÅëv캯§Í-z—W´Õ·¹Úµ ?BâØLJ'Ù[x4ð8&—˜Ü¢âà Œ<•h6`•MPcÙÜfRÑü©‹_ÑÖÑ÷â#q1Èü˜-ú|Eî.?vgZøÖÆkáŸ@ ‚Q/1ÿ#£ð~86Dô×v4ªhdH”*–¸ï|DÙ6ò¿d0À@1ŸK­® 8oÓƒ,é¼ü·wƒTþ ŒÊ¿ Qù7*ÿ@åßçüׂ§4Q&|ýLe#ˆJ{Y¼ßÄðݬ‡N Ý~Ý{P¯œ?Lʦ¯¸òòg ^î¼P  ‘õ5¶!ØJ´)Ip®þ‰y‹(NLõ°ÖX3e7´!%ÝD˜I7c –÷Œ<ÉãÈ“ìß‹»úe9wÖþþìæö?×@ ©~ŸçÛ;ÝWî÷ñg>[>3‹ªØzœë|÷<}úÔý÷ùóç©Z\ Wݰ’c»Â|}Yÿ¸š½áX_ºÑ¬i’˜ÿ|hŸ…Ž«ºÓU#xFs#(6sñÙÑq­éݧë!æãÁ Á)NÄE{/ÓW")øÔø•ir•sz)ÈlÇѸ'ÓM$gxækùœ2‡ÊÔ+Ž ]j!ê[°>d혅ÖõYô¼ÐãS@zãy8¸ìÆÀf‹GªÂÉ9Í„“ÿLqç(tÅÇq`Jƒ¨r8“‰²vÒPA6~³ ‚NÓ<ªj'•Þ–>'R–$ÔÔI4W³ `€„ª«æÃååxéÚ}˜î3:Šù W r"BXèDC7n-ùMF»Çí OÞYÁ¶úé§Ÿ°¦7S$mmÜ*@¥WEÃä`w8˜¸õ®g‘ˆw/rš…FøÁÑêM9”³«I_bŒÃw¬\f5äj¯f âYÈôš·<&$²P˜]OÁ7L!¡dÀIüÕù¸ЉÖJE zÃæl©¯f”lj÷T¥Tê znï…ÃB½U#¼AˆM;À¾23¯„¤WOQxÞÐ÷C.iÕ¸3^¾Úõþ5tHdìÈñi’ÖÉà'þrS—Çj¬_Lã“Ý)+»ƒ„=½-‹&4ÃóM úráöñÚöïX7aÅ^¾É ó)¦¶âcdh¸âxµ@Þ6ö‡ U”xÉàQ§KHÓÄ©¨dèaåAúwSNE @TÙMo6ðqè\F¯°$„xÕKê2FÜq`ø°âUÑM² ^CuŠ…$|ËܲYN °4¼Ø‚a¡€8k׬ÉRZx“Q–à€ò8È’Vó*’èVÜúœÒ;Û6Ä@Z;·Ü1ÏeÆÎŸû«rC»…2Œžw ?s¾ËǃmúPÂê0áÉüÑèÚ©&8ž_Ô'HÑDö_擊›‹Ô7+âí\ˆ´Çs&]Ö~â¬æÕo$úÒtU§êSBqB⩦W3kZBGHÿ€•’ÀM+ô™-g~+ï6œ1åÀO9|mJ05SK©Å_Õ]“7Êz†âã‹°Óžgƒ„ì­šP”2°üÌ–µ¹ %õ øx9yŠnƒAy^QIfތȎ—>‚'•CAªK±çÇ©-¡ƒ˜•1×dpáÝãÍIÊeàÍ"‚G\OòNXš sµ>ÙÒF] ¯*º2‰æ––%-Béͤl@Hcðùþgh©”³ ÈÖ@RNLN±„ORooˆ«§ 3–FÚMÓXr†}öù­^iD®‡e&²‚V*ÉŠife®8pÄšœ.®‹ûœ åX…Ä´[Èfäu\pºJîŽÅB¢‘@8–±7‹ßkJÔ†iÆËùåˤŽ-8 a ¶hI6]NÉ0#c¥èâ"óƒæïÝáQ…ì¸;k¹\¼I Sm 2øp>-§œ pTÊë‚n½ͯ^»`}ƒV„myŽ_$–Uí2 "ÌǓ✰èäoEEBW.ö)ÞÄÖoïŠMÀ¤¢¦y¨¦ñÚ‚›ò²Z ÆXAHÌeÕ,)"ˆo%ïùu5‚È­}±ô¢í'ñ^ÒÕAv±´©Óé$DOžÓ+jN3Z­ W’©xêªk¾(HC|µœ»eRú ä®à£5sŒºF†iÔ´žJÑ!acZÛxj[‚Nœ±Š¸d$daÉ ,È*¢’ U%÷@¬B~Üõ±ŠäNpÄ**;i@Z“a݇j°:‹k3aH²«´d­{‚ˆ®xUäð†3¶µê@H¯Eä}âèDÌtæ½³êîËjà¿-EüT’ÍÂv øKædv:ÆU :Óî‹Ò(ËŸLÒfèrãËNŽÅ<99:qùëÞ룓ï½D l@«Ûˆ³Îî:%…O#®×·&n‰(}ZN`+Õ®wÛ;ba5°ëß9ÜvÌzÇ Ý‰b­ß¶ß#`£h¸ôG3úþ6ãázh•Ño¹3<:eËÇÏDhC×d ÜÑuÍk–iü¹:QmØ|D,‚5Q6fb]wzecp=öGÌÇm<Ííð§,U·ô·bA‰„°ý;- 75áã`Þ¬Ãf37by#ˆ]³w†JEõδZ•èW鬣¶˜µ­°Í€[¸ ÙZ}¶úÏ0þŠ;&C”ŸÆF9­bRQrD°í§”)«„¶µ”8WÛä ›BŒ^vå¦Û‰…8FÆ›%'Q(ŠÉz·bœœÓ œEJWÀ\㸠¶\»©Œ çM/IÀᜓÊot¹K¤LàcAÞbÍšc±üMþ]Π‹uKÖKT(F£9FÒ1éG—Ãw*–>xϽEOˆ2K•cµ|-6IpŸÜÉJckˆCÍç·BþÔJÓ~ œwñþ—­çÝæ0KXØ`wÎ`xõ 3¶×¶×ó#'®lå O”–×î¯Gyç©ûóye yêóüoæ©/óí‡Ácsüýÿï Nê|St"›Ø¶p4;†Çè•ÞȃiS½äzôÀUj£aT+_‰ì\cÚü.?¼Y4¬Ç;_Ï ºÅSW'ž¦èGfG¾‚ƒtEº™Œ¬ ÎN\8ÓE­îr2}K&…X·iVR[Â/9:kæ>O:°UÕqíøzŽ[öLR3½‰A6xpŽL/¯gîEóEˆ4N™³)ô›j¼H2¹O2M–¦qÉ•Æ%½/¥³ŸnGà/|•Mi 9ùä6nÅb†­Ê6¶…n׳êØQ#SÓ¼üYª{c[rªCŒ)Aa L@ÇÈl‰ÈU‚ýÖ£ÑæžûðÍqÛtïç§ßì÷^®:>Ï··£3€Þ£'@ó個â¶ïÙ ³#mÐöã°G|Ñ –Bv¿²»Á>“5/Äy©EgÂì!YvÂ-$p#—6³K¯S“»©v—g5Ä«ØZ|¼W“qŀ߯ïº3ë¸8ë¹=3[wÞv…®¸Â$—ræÛàŽ‹åô NŽàÞ´á¤Úi]Ÿt£Q»Üª5²4ÞÀ[ä+”PÝLž)Ø¡~Lwf­P&wÔ¾ãŒ}QKž„ºcýZ>¢{˜“! ˆ«€¨6€x>”³x¤,‹»Ð(A"Zûl@QÒˆNʱ{ËT,)¨Ü“2F¤á’0Ç<°,4Ø•™†;2™µÉîh ú äkÍ, ;P~¶߃„îšÈÜè¥Ì ž«$k ¼™/^âªð·ñ»jPQ¶¿5ÒAfãl{kç3Ê«e õx_ÌKL¶.vS“xíáÎ7Õ‹ÍüØâ)TUºˆyc|î‰0'"ØÄ«£7ä>@ga3_›ì©:þ¼Û4aÅÌ=HüY*=·œùBƒ#ÐDPÌ$V…‰œî6¢Ÿ ÄKx’ ¾µ2&¾2ôhC|hl˜çÀîlª"3ݯŒ„µDœš ȽÎw{dG3â»qö)(ª 鬦¸°ã‘ðlôÒV^b;i ‹@æ±] _m¸àܨ½GÃ8l"^^ÓIê<>Õ4k !©^ü,’9L†cf”]ÐËÀ=a&—yiœ8õCÂf;0|G‹RnPÛÝͺû 2þÕfÞÙæ‚ÐON¯›y‡ÎK ›¼ŽÁ' wŽQGs4Д̑sX]-ƒEæÑ£m‹ÄuW$4 CÁñdN”,Ⱥh|”Ø%^C¾DÖ!jŽ4f¢Ð«5K0$ˆÔNáÚÒIªmN´T¼^@b4 ØAÉÓtCg|·~g/”Ö†Ø"m}°¬¥÷óêóü9kŸì¿Þ?#«Ã³ÍÍÍuGÁ ëŽr»Ë²5„0^žþ•qóq“„†µßѺbGñ€‘˜YLá“\Ñ”ÿ•d”àØë•å&Nàü¥lx®WźxùÍNL&“‡ñ}ÅQ!ÐØ6üíx?:½rŠÃzIT…³ëìFŽS¢ñ8ÌF…€0óQY^ñŠÑÌ#ùb^––äi=´ÖO6¶Ù@!â;Žr©fsÿ¾d–Z%p«MšY³”A ‘X&›iø~—ÂÎæˆsöCŒâv‹ºZxMûh»N„WSÛ(/ ª`0Æ$–“ØO¶.hŤd r5–€ó%2  ñ¤À&‡)ºÖ€àÚô ¤k¥S“¬v@­Üä(p¢ø@™ê¨\hå&h0žWP}%pPÄøc± kpo¾ƒ0”šiùb(§fl£]›«% VK4ÐÁjY@2ÆÀPâ–J—t.]@hÂyÔO$÷©_MKFpYËÛ$×62˜BÅ'M%>|ï§ Ë`EêBÂ6½«ù=n.§@öQÕPõwÚ©Ø™©Ø™±³+‚Ž_r¸Í®Þ!†Y.Žy½{ò a¯½Pâ‘f@E>)Û¶'¬sa*r#7 ËUFù(?•`9% ¥%eNÃÎðÐ/ˆªÅ<¾¢™†%¸“bÇõŸö›ÀûÊÖA·!JY(nYp³VœŸ‹;¡óú›Ç§¯ 4¦+X“Ѩy¼·Ç0 6BÛ %Ìd!{ãÞ8™ùlÂáK!»ldÎÆØLwˆ È­‹Y˜kà3â²,ó½ Îº» ›¼k×d&7Þ•×”;‚Ɖ]X5YEu§¢ñÜVÞ®ÁzQf:%lm ï@¶³ÃÒ§·9!sÙ¿‰¡èâ{öá,&f¦ a =*4ÒOá0 ¨›hhWTˆûº áxRXy‰¥°ŒOÎ.ƒÍü!,%h7÷[KdŽ?ò2årž±9:©·G„O±6ÄÅIðÊ€ÉÅÂb7 Ü®%ÄÈÕùrо(pèà~g‹u]Õ6‘µÜ³:S¾ƒu…à€µ#sãZ™ƒÁ¹eÕÀÕñµ7ˆiSHïíekÔôýlòÞ)Ù¢;­<ÀÖ T¹ÓjQèú"{1fP¥ò1fÎP5ˆã(<±%XP{œ'z9;AÐ&(Ot‹æâ.RG5nŒëâ–íûGñ¾Â°W@z a>Â#È1v>+Èdù`÷7T§逋‰h ޏ¾âè£<º¨-ÏMêZARßlXµ¬’uçSrxˆÈp›*aÙ(b^ªÆ¶ñ¡"Q&ö©2œÑâ­û ¢²uvC¡UI‹”÷‡wI«Ze©óïG¡¥ÝMëJGWÖrªüÜêÛWþ‡,ҞРƎÉÝUÕéÃqGàW¾çjÍ>°g?tLˆ6gï"O~ü–ò·ŽÚH,9"tÉò™IdÝk»/ /§%æi1 &ÐH´0›“”ˆÔ•H:@fÁÚ"“žÀœ|BÌÓµÞ%8b@`.·Š³Ú€Ÿ$Tö¬%'˜[à ¬±G0áB!ÌÎÑŒsOÈš# t,²g¡1tû}œ¼$áe2æD<‰À{-*}%Ùnc iu%Ø8Zbàãè 1EãbÁM~"}SW}ŠaûFä€ðê@ ½þ}’%F³Yª‹`®6F:Ý‹Ý%„Ðf´VX2ºk|íZ3õXfªªå1Až+QóhLžð…ào 7ÙNí6<-q1˜µ°¹N4“QòB†ƒÝnœã³´Ómù“p_Ûc7€ BtÆíÀiL1•<èˆ×lûf«£™ÂƳ¹‡j7xÁ (vxÈ2Ö4üMÓŒr6?¥–öôÙáùWïä¨Ö;y½¸{Ö{É+¶…> î1Ø%š'e‹¼áM€²Ú€EÝH\ÆÃæBx¾‰bz6ήÌ'p]ÍÙN,.³ë/„pi~"²Èå[¶ˆí›ÖfZèë¶¥æ0Ðß«E›ÕÀŒyÏ@«.!þÖ ÁTbÏua{ 3Š›±w¸Ð¤ÕB_giB$*†$¢õf M—pšÊáLŽƒõ˜QÃKk~Óײ҈>oE)xP…Û࢛ô‚Ú?–ÕgX‰ÙU[¤äL ×–Ä—aL©æˆÐÍ ³”Èk8mL4%­ð¯óÎÙ×½|÷Àíg·›÷¿íåh ß?ü*õæpïlÿè0}öūڧ _eNkšÄ’úœæñH™I”Háæf¼ˆ¿™%üNÞZ÷ /”!ˆÛ3ï¤r÷ ™PáÁüæf^ W" â\°B Ñ Òòtò€0}‡ëIëšY9ÞŒHÌpò1ºÂÒqûJNÑˆé æýq7»0ÜDÜ@Í~“l©¡ÛŠ¡ìÈJ§QÚDZ¡g _üØI¯¶Ù,é—½W»oÎò£7gÇoÎòW'G¯s]¬VÆfÑPÈLduŠ=·qJw.ænxÈü}&;ÿÐkz¯ÐhÔ CRc#i»ž*‹rÀ’d¼å‘A-”“׳‰ñ´ÆF}yçP´%?^mŠ@úpZÀ)šuBޏN#>•­§O b"ÑÕQž~§Ïq¥×û…oJ ½Ö§ƒjZ3€˜ o¦)Ô'”p÷Vðì¡âµK!’Dâ…jQŠ/¨ jðŸÐW·…Ì=›ëbÎ[¢®^tj48)„ÁŒ&ŽÅÑt\î¡«‹¹»TÕ¥Jd~çrdã1Ü‘Œ>‘•jMÇb°ücúº¶šÎiÍGr{f"XfÈ×€WXU£ËóåTcüÅïÛŒãÇrIÊ·½µ¹³“ïlm¾±õÅÆÎßB·Ÿ€+ñm9út=`qãXbnã?(FŸ">7ÙLèCàñ³&&]a¹ ŠØ%?3iCPë<à,\^oP5~­"`‹hrKáƒ/Õ<¸R(ô·§šN.<Ýáxþf¨, p9ŒÃ/°8ê2Eßi¬ß±¡swšwÄÈÞÉÏR÷-QÅÉÁ…oɵ›á¬®ë¿­ ì”Êl vR¿ð7þ†_ÇhÎÅÉhD·€¹ñÊ}ò’Kô69ßÞ–7gì1PÍI<«‡¢…ëØ ”žÅø†¬ñ†_/.677—Ä@˜šì˜:xN8«¦šŠÃöÀ¢îr/P¤Ù{­Xahý4nexA‡Çû¼¬ý)(ÅîrÌ‹aéžîl}ÚÉ1ÀŽðˆ|qX,h³t2ݧØ~žS÷'þöiNŸò\Æ&q|Bd‚Ð0Ô˜¶Èèä%¦?«íèC  ‡w[[íNøÊ6×îŸõçÚìו{ûçêªâ–»¿x=Ò/-]]ñGîx‘¹’+Ct ªÓØïÞÄ ç:EH\lœëE<‰¨wÉiÿ™?º4£ϳµIg1¡¨•ƒ7½Ö£Q (6‰_“S|æ>îQðÖÎgùÆFQËp[áýé%á,R(û³ù?"î"q²P*Î5 ƒ†ÝÞyÞÉœ\ #fñ\˜ØóÖ»NB‘¾nëjä!Øøé÷n"kEa‚Cl40éÖ‡Ûã`ºÃ—¹ ÖPPÀW9 ‰ÌÔ͈ç ,ŠÒ‹tQ bi`­èûžÄþ¬V'V(WÖÎYp‘„¸n(¾YÄZ!Ëøê˜qyaÖ´h¥ºR˜óÒf{ …¿ƒ¨ßuÍi¨ç¿ÁJ·*KøÍÜ(·%ñ?Ë×nQºNòÆÔOy{Âß|£¸_IVP[S›Ò@3éš·é`¸—;P]‡Bƒ&3÷¦Úà,ýʺ)g4Hè”" ¼T·h–¤UÜ4g¼«9–á$3Ù*!Þ:åŒpž· çÙ‡ çù*á<»·p>èæ)¹<_cÒpÔÂôÀí¹ÎzùÝŽa âhÊï"wöfEãÔ æþƒWòyëR&€û ð§÷Kñ!‹Û?ä¿÷ª[iµ!¢‘¦Ð¯ wÅClB²TÆÏ¢tˆö9•I€Eq±y™3‘3õÂÉ·ûʇùn.ÛÄ=ÑDD»Pµ³p›e²Í˜º;°”ÊYm)ÖÔ•ƒ’4Â"Ɉ=Ò€ÌæžSE*$‡GxÓdláZBBÅöö“Ó þîþ]û¹˜þ6.¿]óߊ«¹ûÿío?/§îßÉoÅòü·º¼úm6\ü6½ÿmT×]÷Ï_ü±ºóðgXmWu—\Ä(_ë³Ó­G´0»¦É¼ÔÜwØÄWfG¯.yœYwUêNz´Íþ–¤ËòdŸš$|o÷àÀ]º§1_IV%ÅÁ‡(pHX‘jÿÇu2:˜Ý‡1„辤ª`ðÊùDk!BM.-² .I}»^£³hf ^ÍñKÌ2ïõ¥<S•;cÜgJ}‰Œuñ}ã#â—Ñï¡p3º=¢–Zã¤Ù»ë íî»Fãëà[Rz 4y¸œ£ÉXòÖ1ƒro.‚ª :Â#â‘™RÆ$ª'‡ì¯äÎÜØØxNù\Gp§nÁ~ÂÜÏ[Mä5É êm·\yDéÍCð£¨YÌR2žÁ¶3FŸ¥O- ì° @EÖ€(>µ•ðšS{«—Çåµ`7$ÿX²ß×þ›žŽÃIÊ›“$¬Ì=ɹB°Mñ“FY›å;ñ"€¢A(waÑ4œL™›’@Ð"¬‹VŶG°q+$p&¡ ®“šÅ`D™D\U §Ö»"6”RsÌ艿Ï(!)=ÉZ§DK­þb£—”eI¢$;  d+âûUqýý‡ÝÞoËOØvëeÐû„=þ’ºÅëVÃßñ“‡ò V„}™ÿ$»J}º ¥~â+ÄUÄtÑ<ž×>ìò:.:< í +†1ãå/+r"1‡9˜ ’ÝWlЩãfe jÊ㮆é¡qg ýf‡ bŸnË8äZ™ æ±jòk×äÇù?ñm/|`ˆïàãM§*îa?©÷Þ¦wJ§àÌ,ƒ™Ý67Ž! @ãQfÉQ Š]¼èfs3ìèz•Ÿû•o±â¤|bÃLØ$;d¦jÚÂÓY­¦þ¶‹%¾—B8•¹ñ|.[!ÌKâ…FÞä.Æ‹]qº(Þˆ™&\xØ´9°â£‡ñ36Qªø ¯†¦E ‘ÓP*iŸgYò¯˜—îŒ&§Db3ÃûÐÀÂpYn- ÕŸµHÅ`íï{£jûñúpäþèa¸³^Ž{¾»Aá‰Ê×¾XœsA¿5ø!º&eƒÐÊÖ‚;[®¤¼¥¥h®…K¿àÆð†hÑøxÒp4CÒ›\ú–õ"_sŒÐÕmµîŽÙLÅØV¬$äD%Q4èÊ™†Ê¥×*9%$øíz&ÌÈp¥®&Éå¤Zñ6ɹ¼° _ýHntÛvé<¬7$œ€å‹ªÅ3º—|‹òµ§ÓçŸ^>_Ï4mQÜæ ¢š!ﶯNäu¼æ$ú¤XdäBsÕêä4ÆáC É#¡ÊN'¶Úöusã!òŸéÜqëgN0š/x$ª±‘èºÁ‹Y/²T/štYÞƒš-cÝ>pÄ™Ý+3µÉàÎl_yHw Ùˆ¤‘öƒÁ›'¢ýÝq»rŽ—qG]ö¡É!á½ã%?«Ñ›ÝRÛ œcï`ôw§·z‚7Š'³s‡ì’QÈE°uï–úH}@sV55é±xd.ÊÉ•†ÞÐzIë!n-3¤E®çK·$ÝŠDAš »«]þpÊM–thx›«€Þ?è½ÌwÏÍaÖÓ~3qEXðºQd y8†pÀ”“ºDM²Ë¤ï“Y÷Âe6̹‡¼P(“!¾·€xˆÉE£Ç€w3õÙÅ ­õ|M›É¡S›^ ‘Ÿ,"Í—Så-Áù7+¯”n¦"óa ê ÖÆÑ@ï½µÔ¤ ÄÈÚíröJdX K1Cñþ¿zùâöªÔü˜ÍQ”xyè'Ô~+íwêò¼*&@çÚ•Õß3€Ô°/Q&ƒëNV¡g„¿åëËâ6 ‰&&5jR(ßJÏ'‚ ýö+ÑÝxƼ³R±y‡¾¤Cߣ—PÓô ËÖÀŽ(áÛÛ[_~)Œuš DC Ò9-ñVŸráQ$ÊÇò•ì¬Q¹a>ÂÅu{Ï }KúàÖ3@B®}¥¤ºáem‰ìõöY§%Z]7±Ö‘6aP p³¦xÍ$¬¡©ŠjLð”Ó=FÈÄï ØÚ›‡½3ŒéJÜ3óñfÃàXœOÜ:4©ƒ^lv{çÈJ ÅPŒ9m6[ßÝñ˜tE®•cXç|Y_4dG“÷+“¾j""WI=xÛ}šXÿ6•œÖsxíý‰líô0_J•(—bþ0öxÝŠñEF#½¸%.š¢6é¬\C%M^à f·X·]´[ètÜÉàïåü›Í«s$oƒšU™UEå¥#fN56¯œäö@Ë椣 F‰ò†¼íNH¼ÀûFgxVW7µˆ®W¦ì‰»ÇàÈzŽË,2Z1n…ÌŸûê aßÔõxí$s\FÉ÷àŒÏ».æÔZ?Œ Å,ç‰ã•µØíç³ Áµ\ ¼âqÀò='—®(a6‡¬Äåf¾/(/6Ž£€ŸÈ;”\7¨Åjó¦Óˆ‡},‰ÛКÖ:å{3þèÊ=ÉÝ5_¤±’BZ;BÝzF0£N‰è©rƒz­}Ä/ø –5Ä÷ L®3<0@R"hÍ*a’ê‘+X«máAÑuåÓ†¼îKå¦âF&?ocá æ7’&¤¦QVyX& ¯7Ä8 —¨¤#φËŽÕíÛŸÎÜHêGt˜øÖœtµ+¨óÝl j+èÓd7)»E²—ôÕ†8là-$O¾ VààÒeHÁä‘­sjÔ+`ãÐmV£9EK;=„ߜοÓÁFRXºïì°XA§t¿CüoOøÔOÝœ–#xP\çÊ¥ë.Ñ/pBQ¼U é2§ï6£*LT+€ŠUEòù³QÇ[¹ò ÷™¹£õD„÷â}e’™îšƒM—wyÛW â"#™C¼|E(fήˆl÷¿îÆäÕçô¬É$³<\¢}Úhûé‘ׄD p [{hôP±à#¯ÎÃÇZògOGèÅ=ppmdŠsâ§­ê¾ð}Ø}söõщgɛ޳ã‹jR]å_ÿYN²“r)xpßL+TˆÜá´§Œ§åü}5,³½âr0¯Fçnkôœl_`Ò÷q¥o:é}»ºt¼ël~Ë«œ‚— 3v¶ve{nÚˆàcm¸žoÿío_lìY i‡›T}1½ïÿù3~pÐ6è¿Û[›Ÿ}ñÀIíTÀÛ\Ü,þíwl¹ŸÏ?ÿ ÿï~Âÿ?Üþâ‹Ï¶ÿŸíG[_<úlû‹í‡;îóí/¶¶ÝóBÿîüY‚óÁ½r>›­ìé]ßÇû?äÕ¡³ÞédOˆ~¾Bñ¶œQuþº˜.É m Y–î¾î1’ÕæH1†9UVHƽa$Ü”AÑUzúýáÑñéþiÖ¬ùÎBøcþ2ò£øà>e§¸ûãÇÅÐZfS½ªU›ÄfCœ˜1˜#csWªsõ(\‘!DT"‘swf…꜄';ÈÕ¡È#Js)o•cBUù¦?Éñm’HªsO²„Üx%šŸêròžÄãdŽUmF±!Õy]”zˆŒFçÖÛñ˜d%x®r-œ]ÕÅ/w—GY{ýØ”9¥\àÎFS©aZh8k̈ R³¦Ø´·¡‹B5ã°yfåªfQ5&®NIØÉ¯FF^ËF‹ œâY ëÁ¤¦:6ÐYVlpÑC ^«˜‘n˜qô  –ê¤áØî€Ü»n‚ʨs’˜æ'5˜¹\’vUýÎi[ñ _#°ãbᣠtOÎgàGsÍ#$ ³A=ÄJéo—†Ó Ic4I À'¹ T,òõ ^Äj®Í?CtKQD?™Â(llÂpn]:sd·u‹f°dS¿XÛq´6ó|×i™4‰^”¦FÊêv:WG–aì8Ê‘èLJšx,4&ùÏó7#œI8.ÐMö6ØÔôƒƒ[üq¹ñB¶?‡ÿ£=üáþz°ÿâd÷d¿çÞ—>ÑÙŒ[V8Ëj‚z¯BÀÐHêW““t ’\KX0åÑÚøåÆÀ ÷Ð8ü¿›F׸pÀ)k ž¡GWÁ)øiû@1©9kµ÷9*•ÐBp¬b˜VédoX;ÕÔ¯†‚lòä¹5R6I12˜‘æêLp7j×S>ÑLÚ6>oЙ}§Îçl~tí@6D;šVZk4>¹c;Bóä³+;°¡s¾B6‚2j• ¾¡tR騅÷;îN8*<|ºF]ié)N*ç‹´g¬ †åï}aL‘xxsy2£:Ä+ÝM< @Ìî×!Þ®¹:úað$W ±ÛÝ< …%Ã:kÿk”Ô-·Ë%j€Éa–zL Êu“÷¿ìæýíÏqÕöî î:/üm© R`ÓîBÌqïpïèåþáWf@ðv„¡ .G=…•›²p6±¡räxØ“êxÐÜá0>/õÚzÀO„+‹‘Øp&à"€iäâ›fºè”û®šŽDRNßWóÙ”B¼çdçó| ü Û»Êk‘ER±uÙ%¨Ng²Ç!cÄaŽ•}…¤´G’,ý÷3 è(¦\i¸I7%v 6‘$e²﹓„î>âË5F9¤Ùb¥ÛÅ)ân‚§ß=XÖ˜£§ Þl ïÁ[W§ýΔùGª‹ÕÐ^p@´¥ªØMÑžbho¢uðœÎK3àlôÁ^‘Ìi:.v3æ¯'E}!þn5=¢A£ZNV J†ûÏrÈNý1ݸ?ä\Âýà·ÞmH©ò¬ CFþbûVHYû”³$ÐÃ×_´ `puóŠãüÅÈÕf$W½W·yð¥:\!´ iË‹æÂÇ5ì†øÐEû],4Îxsi˜q€¬½)5˜è¾Á•cvžáèù­Ã¤Œ{%°Ãìco ø>¡c'*Z]p†Ã4i–¿½q…Éc5 n|Êg’à¨MÝr1ö¶6€àKuÊþKÇ>sדÜ®k‹¾·”ð¸xÁ‚­­c*¡æ–Q,9I—oÎ^m|é󹂼©é&ÝÒR<¶ý9L$üöpaBWöâàa$Aü8²@˜®‚¸ÿ® Æ—}ZÓœJª[d•—K¸ùܹéÄÏÉi_PÀ†Šº¬ Vp·±%ŸGf+)FV$’øÀt¡¦­ ˆvt=3“à]ôƒQåhOΡ1-†ÃÙ|D€ÁÐj(~òµ“Wz)îì|ñ·õ ‰Á·ºô|¹¼‚:·n¾ÓÏfÞ蜄ð Ãì“#”øôØØ”~±ÆÛ‡A@TÇïvÜÖ ¼ž“’*½µkz¬ûeAC²†™šêÔH¬ PÖí&ô’’j r: ¡ôv©NA­0#Áj ãp{„™€¼cŠzI#›ñÄO|°WS]ÕÈú„ëά_Ø–R\mG¶Œj6¸RÁ0|šˆD‘©kv5¯µº) ߺ{þK¶âãÖiçßæDêû&ïÆhÑ*s‰…’ר•ƒšëô0˜ ÷Ž^¿µí`ÿ°—ÝŒWÙܼòϾ½ªdàÔ™…º³ýrŽtÞo躔êüœ¥9°ù –Ö7Ûß̉êV6BV¯_³pàã]qŸžI­y•hÉÂ[òVw¢Y½·l˜êü l®hªÖ'bÍêîwúë°ÐÚ .÷{NyrXì¨L%êaeµxÀOºQ‰¶3ÑÌä C¢iÝêA)†üÛ âE¦Ì©œ‰Ð»u¡6L'H‹W$¥ÒHñDyŽq%fÛR, Ã5‘蹓}³w÷ø·]ºj\?è­¼ô"TÏÔ%6Š`w`ó=Ð×Ü ‘)6!ê-vl“6àÌØGüÇùq¦#yôîñœ;s½ íIË*‚‡}Æ!VT 9"˜+ÁF”“;¿uü#Ûó†Ì@~DÅiK dR€>jp a]ISÒ|•5qÒ(Ž\ñˆ{ó¿×p ‘Ñ„]otw­+o*Få ÿ¤D»`¦¤ýÛº‚4«>2Àæ/?xÍ:ܸ÷âE‰aœÍÖÕœ‡šùpv>ôK0Ê|É(ÛAáQ)ÔÌ‹ÇÁÈ'¦$pÞ6æ Ç, Š&^ J‡ÌÅôã0™€ëe”Ĥ¹oN–SHÃ-fA/}²6 ë &‘tUTVÊÔ‘ q2'¸'˜Ddô8k>›ù¢ByóΦãêC{u À#„]ÛéæÑ\óÙzª²Æ8Q+8öAU0®.UƒXòà’3ìy¨1=¾óå{'ÝüàU×ýþ»{ø½þ‚Í?|sðaígêVªÔ žË¯¶ÍâÄ¥€®Š·'B"vwû¹ÅÐV÷ëlk³â|ÛV×6iþó%Z"ˆ•:€Ø#§QÎj°à$ó bÀa¥¦WÚkà,|»'ÑÓÄÛ¶W4$W(ÑŒ\iå`è–5ÿ¡è6ŠÐË{/ö^îïYÓV{Õ ÿ‚{޽S _h•4 T#*õpÀ%Ny±~\{#üÓ–?n4LøéÞþþŠO';°ÁÔ^ºùýDmÍòµgÍê^¡¶u³óèí\Ãyn ‹´u³ý¨Hç©Z~u[ÿ°‰ÚÅ}ëU®­T %!¹º‚vÚv>ªÆÍ÷nnº÷²;Š ‰ñÍÃÊš…Oþk^Ü « ‚æi題™Zš$ur'ç˜õK/Ú°?c€V¯:¤ãÞ`Û£”`&4nï¹oB_s³º@”NwŠN“æœ2óûF'vc-Nóö–„ÏGN{ /pØ(""qÈ Jü`¶]O¸<î9f$C‰î˺!Ü ü¥ǾTIêà5ÿvP™%S?Æp³Ò²ì«Pi½’‘[ǼևêÍî:4ÙêÍ„pCǨµç%Œw±õ`7m2~šöÔ²w·!ïàØŽx v¢L ›/îµ..4H¢”Ž{Ý3ÞÚÙ¬îŽáJ–<›Xèt´Níh±ñqåP©~JXUD™%}5ð:ÞMÙªÿðHµ D>R—¨¥¹ßz7å|¦œ>r²¤Y ý[aˆ’f‰hÜ”n@õË‚Ìaü&ÿöĵòA‰L˜T« š{Ãr,´Ï9uœ28ÑêDu%u–J%™ÌŒ¯8í?ôÁ ULE¼˨õ¬o»3•­º@²… Ô—ý"Õ½D.ÙÀøÍ> ­ÐDáçJ¿TχËH~9ÍÙø}dAqõmM<Âbà´¹¹Ý<ðuA‘pIO6¸,áæÖêjØÞÚùìøÒ/h[äšþàAî÷{²Úå@ÑaŠWºýü‚2 I(qáfývÓ’rwñLy ŸÊ_©‰ò¶¨þ/Ô¤dB$j¹è9×fpµ‚VCTI1±½H›(à]üÐfþ=3°JÔI‘ÖWAÆ»–3ÚÃ5Fç\§áÐPÓÓ†2 sÅkHÞ\4ÒK䊛)‰F[¬nÍÆóLäöÖÖV'!ô.8W*|O×Èž°@z,´µÕõš•rÉ¿‰f„[Ľ7 @^ðÌPþù Ë va1Eþ“¥{Ńž3ï=sÿ¼¦÷‚†$>iy;: — ßuW‚ô&.VØÁÌ%=[¸C 3ú’›SûmÀ0ºöo ûO#ÜV¥n@á\ŒÆë OE¡oﯴ46šã¢gHA²5L­î¶êê\>ò‡i˜—‘—f\Aö²wºw²  ‡p¦R»žåÂià)×0šÈ ÐNI;ŒÒJç ˜ä/¿"¡³b[èþÅzÝÛ:®J™@¥:|Ê)ôäfK›•PÚë›+Õ1›aÁ¡€acëÅY±Ã”¬¦»îdÒèQ6ÄÒmdˆJ¡nY‹eü©„VñaäåyJG—«¥RhÙG ¸}V8M–­£},Ôº*0P»1Ùåò¶5õy*}BÒ+ÙËWWe1|DEä7®]&dŒSswÉ‘c •ê·´Ÿø0ÁòúBô=Ùà9|'Gþ:Î¥$Õ!å`Îɳ-HÀ‘й÷ üœÙtñ2\DÇNâéPõ-ôa¨0pè)›ºAAû ŽÛc (öÜ\I=:èN‰`ÚíD”ANLoÅ¥ÝÎëPWmÒ¼3/ŸwPÉ㜊cÌbßøJ7Mé¤;F6¥ƒÕ¸)Qß$ÂþH0»@) A RåÊœ¢KÅ-ÅPsée~hzN-J‡«Ò ¡§„r4º7NnñzZcŽ™;ôrˆå«6°2–(¹QÔÍ”±ímU‹¹!}ÀüñV2Dæ+2DRbHâüÂ7êŽYÊ•†gQhcT5¡–¸cô-º:.Înãrz¾PQ#>>ž˜56XBˆ&.µ€Í‚„íT)nÝß‹ÙÌ5ÔÉM À%!j^Û'"û…ÆZk3fEªÓ˜ȱu” 2Ý+MÑ<Ä'Ö¹†¿ÂLQT£V?S/aq»U ë«Û•¹„dØç¹‘)Y&™” \Lêø»dÐ¥½‰"*]”&3¤4óŒfüv0 —7>xœ¿•ÞxøVx¶è܇K.r{÷>®´ž÷œKÚôµìSƸq8‰úä.ñmŽ$·oï/7ÀPxU 'Ö˃îQ°RÂt:†Ý5‘°Eø”Õx6$IuF6 !Λˆ,Fà#7kƒjÔ_.Æúéér@û th „Í£Í‘Ó aœýÃÞ·½“>X0ønïXí\öC«ÀPè±µFh[³«Ó Óò©©-²`¯}⊬ã§î×½ãõ6ó‰åm3 ZxaÁƒî±Ñdß/ðÖ’,i\Z'(~‰3˜a6:äiŸ+ÊòùO‹N[\àŠSa.CAPàÈQ–t"Vÿe <Õ‘Ev7WhNü(°Á×XùP`èn?Ï«ós·°b3R™DctaOqÌ?ÔõrÎÛÊÌ„XqÓ´e¤*U×pˆ¹¸qaiˆç¼åÁ‘ñ]ȶªlíeÎQiÉå鯨S®ú%‹û_¬ *Ïá…>a,ÐáB„)ÿˆW]8>=!I_®of z²Zí,%†’ÕíóÖ²ŒŠ3yŸ©¿ÞÙF¾Ñ€‹¢‹@&àÍÝÁƒ˜êŠ&3O°ùËÄrIP?>_ˆZaB v>V«0Ù²†5Õ{Û…ÿhaPKç”.ð¼"æ~¢ãdT’új5¼ˆ8¾Qì][f˜¼µ…6§²ä®F^’,ÐÖ2N¤aŸWîØ™Æ±{J¨ÙÅœ|0~‡¸pñxÃ[L¤†ÍS$;!àg·ŽÊÈ*ÕaEˆƒµGÂ2Ô3öÆÆ×Ѿkr»HüÐw";†;jtss„ÆðŸ˜K(ŽÂ¡]ËŽÙöN`èÚ]ÁmҤРÑX“²ídÕÆ¥'lO§©ËbÖZ‚6o¦‰£BÂÔÉÊEHtíZO¡žî–!; HxsŒ&]˜.¯ÚpnP [“  vkmL ‰¢|uÕÈ%ã¤AAóœ¶\dA±_óU’Ÿîÿ ²]³ƒ4bÙnù™0–J.`ÓÔ|Íu”ÿFFf+Üã(­Áž )±^J.éîYóoEÖô+[ª3¹Cdžˆ T¨9,“:†¯æûáôÃ\9õÙãJÇŠ1‹5cŸŽ¬d…–‘Ƴ´¤$õ¢”\'¤¹^ˆJᓨäîÛİkäªÉ´Ï®=SH«“I#Î ÒYҽ´›ù®kÐ|Ê@²$£ð‹kùXs£Ï‚ÖÜÐn q( Ec/Ðù‚)Cdå{ y¼ :YG/¸Édµ< \‰-78êþö ipéaRfÄJ€„$|.õ½¦0‰™d­àg“”…àÒaKG¶í_‘´í5a’o#ášR¿$ ‰pÂC•öÆ+"1Š»ýÊÆ}´øö\Œ~ìĬIö6®ÓDß¼Ž&Fqz…ËæB«4l˜ °s§mŸ~ÀŽEbÄ“Þõñƒù€¯€ZM>â²ev„¡S1ðöìÄrú̽®WúiÖBõö‘/ æLÕ~$¢„|ìe±bAòàœ$õ¼Ê|'’\æFñýh€×• °ÑD×oìÓ4£>݈O5ÀÕÍËIùèxÌܰ 4N{ §¸ð ìávìøY[`1¹å/'#]7£Þ"@p]x‹“‡º²Œ«9Ô)O8®“ë9ÇÆìag»¤w;ÍP×Ù³M…º"ƒå&¶v4hÛêÔ°])ñP´gWN€ÖfþJV~o䞺4iï_G4Í´ºZW‰Ü4mÉŒ8çšhªLª3ѪòZÓ©M1}x‚é4•©fÖ.R™ÒI#„”ʬŒ»º“ÖMP[ìJw‡wõÊ[Äw ï‘û]$)”¼E"¯At•„H—ø>&U>¾Yܽwtør]Ùúñæ¦ÁòBßJžZ‚ìŽË’ošÒò»š±6n#‚ûK ¥SÈDÛe; ¥O«<¾ŒëVWÞB]ž›¦u¦yx7r´&¶F˜Š‹¥wÁá œÜ›ÃìùU¿«œ?b´…t‹Î,ÿ.V¾=$t— ºJ-—& tÞøÓÙØóalbg§6®%.l"œm€¥²L’f³IYL…%l. þY0ðSáÉY:ÿPæìõÑËýWû½“üôûóÝê"xm×qíO#¼Ÿ¨˜ÀèÊúÝ%¿åêp7Pê;‰0o{h×h}c$w=›»ÃÚ˜ç¬EñpÛ’$÷×)ø^=T˜“ øjeË Su³WZêô¦ƒ£!!Iëìýw”–ñ‚³Ï±ã;ÈV Z ºuàÑå6H€¼Séèzґ˟غØ~™7òLHV0!Õè«!ICÅ|X,c‡’Ài°¤tÔHƒÍ™ƒYš6^,'j^˽ä”X—3ƒ Df5LÁé$†”ruÏ VÞ©:øwô| :ì  \îZ:+A ¼jjp†ÃZ’ä+ Š ÚµµtãA¥­ï¬Û•6œ`¸ñ`C‚;ËæjŽ-̘3…ðLJ"¢©V $‰xãx?E~-ÉéJ¨kdâ5«á²ÆIˆÙBÖiéLÀìý*mPÁDÕy—eâgÃy÷çjñìaxc#b ÀåR¾¯ðà°¸DvÁ^ÞpëÁ„ë˜Á]sC›òÁù:KðhÚ€µá»áz&$2+U®Â;O`… ©0åÍ‹Ïåݰ8½ä½ÂF'ƒ€M5_£Ý o¿½Ì&u—˜æF¬}é$ä _t=óü?òNþqþ?òüYÞÏçOònþßò¿æÿoþ?#;çbˆã÷|\[ù|7¿Ð§£[råŽÐ.âVÏ{ä×7@#/ä2ʼn ë72YKóÜø¿Øòt'ÍL…Â&I–×ì ³wæ9[Z'ˆ.$Œ(p¬!`­(ŠUfˆ®½’x±Gkýí'k>°Ò3FDÐJ6-†dˆHÇ—"f…h›ôžg…´rš:^KÖœŸs‚ö—brå$PwÜÍ«a—!HTH  ³º=E©ICYšÃ5 +„£Ý@³æNQtØ¢PZ9H뼞ÍßÉp¿ýïNº}ÛÓY@ãeLõ·^ßB„Å9)¶œŒÉ!S\Ÿž†’‘É/«kâQ'„»“Ûðz6\Äñ±öV?0Eœxƒ¡¶:9ô0Œ˜N5ôÕm‘ñšÙýÙ*ÔŠ©¦B"3“Ä `Óª¾ðV€Æ2Ö‘Ž×®~ …5% j«MÀöxîÀøtteH†foÕpF@&™;%¥ƒ6ðQۂКçKO+œ@›‰ã—µpZÃÛdMŒ ÄjŠ98Þ¼øGo£3x¦‚MÄgÃÝmÆ…ëˆh~dDÐNa‰–¼`±:”§ÈzéÎVÒëì^‘Öp~{\º bæfG-õ¤Ï»§)¥ˆMˆm–°½Äxx£[÷Æ‚ˆjKŒ:ÂûŠŽq·òí]ö¶Ð_ÝW¸ríEï ›¿½ÙúÂл¼øÇ°Ï8Xkî©/íS¥ŠOa÷ÈNPÑØ?‚ç1úì ¢¡}jêŸc=ªÎÝùfk˜û· ‹ù¼¶ æ×€·ì³†ÔfQ ðû¿Ùïßûï•AúàÀ>8)+Äl± B|¯ùSní@¾±ÛE|¾²ðÇS&Ë"tzny“Y´ƒ•ÉTù1Ù¾ièì×ÑG7nh8´¶¹¿ûÖâ.km©‡!í)1, XÎwÂ4åæâB~·ü×H¯Êã¶Ó2Ç7¿ò ‹†ƒþ¥-ü§öAÈÍŽú]·xLù&Â…>ýx¡è%ãKÀ_ãÆ2‹¼T$´1?‰ d@&K‘<ƒ~êu—èÑ`½†øÞ@’¨°×² GÓ Xå}¼­a©”å“›î{x¸Ôi7rL~¾€<‚Þ'×¶˜d¼Åé@üå©•JNÉ@,Å0[]ZYk˜ªÅcsǘˆ†6O—v¬®(M7ŒÊ.Ày±P†|øPÆÖV\!xrH,t˜ª[À¼Aª««åÜÕ†ˆ]¤}Œ6©î3pú•R8éñêÕÁÌ—\CpqÙ¢1:‰½¤¾Kp³éGÄÑÛ;_¸…§%€ºÀ/Õù žˆxNw<¬ø`• ß˜Þ˜Álöq.[‡~ÈÝrrcòÝ8ýu¶¬ýÌÂØó*'o#@O]1-b‹µ*Œ Õãù› úžïSðzÊÉÎM&Wìg¸;¥:ì‡ë‰²w“ºÂ;„¥ádz»ü¼'\ס{ï ±½K!íZ׎ÿÃî t泜3·Ä]¢ÒöèÏè’{÷}»tæS$È‹{j¶!Ñ\!뗣׸Å÷æ—m ‡ýðÔñüÇ_ŸbäùóßCsB²Ç(ï£5UþïQðy¬¡õÔäZ0¼}³ÍÐôö§rüøëg¿:Lë”ý§#ñ@Œ0QeU`©Sx‰3I:òád†·EýËfž•X1ÛÙ D<¶€¾¼½yôÒ*+~¶VX‡Á9MÊj’e$T÷¹Î3Ý´¶ŒèÏ\ÿ³I×ý18ÖŒ¼TÞ&`Êéûl”¾kí Ì|!î[ÎÜÃ>,˜¥dVñ\&D•&Õ¥Vó€4 kÞŒ:ëŸðŒ÷áX™¹²¶’8Úð±éÅ\aÀèb9Ûˆ©ŽlyhsÅ‚¸]`Ôr9A'4sº{8$±€›Ô[zë%÷¤£ô5å³C_*Õ­ñR S0(ëj) ¦Ff°]hýºf7vn³as’ž.´ ÌFd ¡_TÀ¡Läaž¬ ÄE”ÙÖ$:¬Ú,ºâîõN¤ÀŽE3@ö`¿L¹êšCÝàÈÑ‹á q#E E‡³àü5ÖˮҊČ €ÔêÊ8#š6b¸‹µQ‹ñ4º9ÈáGöY‚ZÎLV_ÂèI¼ëÕÂDžD©®§iøØ^r€`—DbãêT;zµã–¿_0bv4vJ€^`L=¢îæx{÷Ä;×%ösA¥®©¸´šV¤¿ @°Þòá_Šˆ †øÃRkäO{ ©ªÕ7hç3`*8ÅÏK5NW ,KMPF(dð’ ¯Dª£„lÆé@½žì’Üåãýå5Šúªõó 1! vàpȧœ˜rÄ1Ú“ ì“ÉÕǦDõáwppÈ¢ f<)`ôÜ<&³&ÅÝç7à©V4í[ïðeï%AåÂǬÑý×G'=æýš’¿¼s~ãWó/ø¥Ñ¨Ž_â _—“‰Â8厷<”£FØ çb´&˜@¢¦À[MKia:Yå=D+}ݘ .Á‹–iÕþÐCµ~SM=Û=88ú®ß{}|ö}ï`÷ô4UÅd6{WÌÌ7êêwq¸º¸¢ƒ££ovOŽÞ¾ì¿8ý&UW½tÖ¹;Rûš¶ª¥®Ó7''G_ížõú½Ó½Ýã^£i ךåMÞø±½;síxóÏfÉa5./Ç“ò¦½äÞþÉޛׯz‰òjlX^^r`} ˤÛÞ†o{'/ åt\|JЃ•?ÜûÚ­ø—ÖÎËXU}ÔÔ%ás¤ûNó€QáAÝ|oc ¡7ö/ÓÔ÷® î8Wp}ï ¾KU€úܽ*x¹ÿÕþYª FUߣ ÄDGUØ,-Uì¾9;êïÁ^x5`PŒx÷ô«Z%žT^ì¾äÝÓß?íì;™`×d'¹`%j*ÛÛ=íôì\<˜û’}áOh)ß?éžìïEý¹ µ˜÷݆"ñ¦¤JžöúG¯^ÁÙqàF>Ú4©5ߨáÌ:î’¶ƒ%¹°Ø¥ç)Lnª0³¬¸<Ùj o IÖŸë˜"ö…Z^Ù»Ïâ§3Á&Ô £dÉB··¶PÑ•Ì Sôºª©@BlQ .爄L»µ’`]ÁFSô¯Zî$î~ ŠÝè¢Mx‹Ÿ‰_Å›9É=Ð r9tÛÕ7òÁGTb)FI9S\FUMLÏåÉÿI›`Ÿ&¸]2«“j KSŽÔo±u•x—a`çå¹S¹„×:ÖXíkú˜÷¸m˜‰àʘ/´E+j™Îäš“~Ý·š–ƒ>ÞàçâűÞ_–…[ÚAøZ³"ØÁü±v?^üêZNpþSaò!£Õæ'«*ÑVq›>¨ª–ë€'íj^n(É:Ñú_U‹o,Æöj¤žSæ8k®ÅŽ 2› ,„ÈZÕjd‚Ö»-ƒSiËkyŽ Œ¼3^ÁFjÀ€%FÜÀèÀ³- jê»(‹÷•;ß”†iâ¨h'õ¼Àôì>yT8i€Eb ÉI %.¯háêù³Šéíp>ÿÆ`Š©æŒ|{¢†À°¨äðÄ\Í&ˆ0ÙšZ‚-ƒÏž²Yã¹~#cG¸Ü¼exÊL¤Éšúç“Ù€•ðg$à Ÿ ºL/¸pÌÍluhúé]uÐ0ÃQ.ä[¡I yÕè‡òù¤~ôCÙ5yJc ð ÁõÍþF(Ñ€ôòÖm¼Cs)ƒsPÁíÉ¡M©UÚ^|.‘§1È¥Ú,¯ÎæÒ|°O¼;Éá JðkÚ†qLdؘ‹2aÄŸåô—%zG"p»5…Uý\-~xö” `Ï ªª‘4ºñ8% i¾™Ï5QF£ g¹ˆøc(kÙôéÄ&¥k–6^GyËñ‘Xw½éóÀõ}ô'ü¬ãÒußW—ËË;FÙüðp yNµä<Áùñ™·¿?,iß®q\“f§OUç.l°J·JGR[P^éþ¹ä¦¤„l©^ÒN ¯—†”~$¼æ)8ò‚É€VX–¨œÛ9}öí„ïÇã×߈(Q…zíH£^ú­±ŽH‘sËZ÷jA Mrðð)¼¢ÁíyYÊ K?ƒ©Œ‰‚±º ÃIï+§•ž¾yÕ³¬/òä~ÓÈb4›úÄÃwͺ0=]€®nï¬H¦âzl Ää@\T«jÃHN"þ†`üRЏæLU¹åýúÌ›~xãhtv"àúaë·íßv~{hND°B#¤jAùéɦòܼ-á‡ã!OȆ¢¬´ÕС¿ì3×iøCâd«5ùé°á· #Ïaô^šä€z–ÌyG#îÆHLö]XUq“¼¿÷ss„ýqDŠ>jÐJ;,»A¼««CÉè•–I˜¤ÀŠ/U’kYªë°äçjñ ˆý ä€1ilƒ ,·ˆ½n² =/25ÂÍqÖ$vïµÑ å•çæJŽgÌŒ6/•µ1EKÊ•‘5G!hÄÇlŸ1V I’b¥RK·RaQO÷9um#&dð¡SÁ¼B'±ÐØñš0@Þ”Ì Ž»Èt ƒ’‡ÀQBzÒJÞg3PlZj&Žc˜…J¸4Ÿ&Þ†ŒpŒþRPâÒ¬%Ž {|’PAðÒ@5æøÒ|äê. ”œÆå°Vœ»‰iIÉ4&ÕéÐ3hšfaÌ&þŽ‘п„óéjëU%œ+qËìt‰4ÀéÄæV„QĤœ»Äøƒƒ'Õ1øØGKƒ ŒW|¶‡v¾œjT¿lġݽ4@4>9“âðx*²IîU¯ êPb°8à{ÂÎÙ U]¬ƒ4†¢¢³éвšØ dMxÿù€U/~y ÎÍQS£]{gÓõ i±m€«LˆM}ê¶„ˆ¼ Ïc&)Ít]>>0& •àö „Y¥(ž; óÁÚß«õµŸŠß~¬?¸ìBÅþ‘=öœÏgË+ÊQ•?Ë·Í’u‡TñÇÞåŸ9BdÚÄ?£^êÄï8–̽„#ÂaGwhG#k±´8éPÆ[›ì2†³ß£³[+:û ’ÏïÑÓöþ=Ë?.>vZ ?ht’ƒ"~p˜~peï}|~Gš/Íëä$¶uõ|ŠÄúIÞ™…}RFÊ…ñ± ô¥MAËÜh9´Ë؇‰ Ä&ÌÙiÉuåìíòV98;Ú¿F‰£•¿œ(z¥Òé;Ÿ]¤ìм˜c¹cŦk&™ZiÎ^¥ŒO²ttÂk„Â&¡ €z d‡ŽÚa½BÚÙÌ;á¬w°™¸ÿýë]æÖŒC·‘xa»(­áPœÞŠD(g3ÜŠÓ¬–N¡%ºz©.Äo2g–& –QƒnlVúÄ*ØÔh2˜£"Åæ#s’È<³>ß,žŒO^„Ò w<Å>Kþ$¿<’TST8¹Nå¥vGá ¾B’oÎYO¶Ó[¼eËKŽpáuŸ#š)ºšñȱ Ô ëxq 0Æ›Kq“à’_€»J¹s9“ÅŽÁÐèxç‚Ï)Fîlò!ym»É1ùÞ úl®ú‹ 0ØO½½1u‚¤ÿ«.Ë'È?%g5 ±Ÿ˜ãýZ˜7õ”( ª±ÏƘhž»h¬C±>«×u39f¦¹‘JÖþZ»-|¶–¢çF˜ÖËÄૼüTø€}ŒßÆÁb~%‰P¸]áä…á’Öyä,zÏn%€<ÀýbÐëŠuÇì˜1ù‘]GÞpˆ<`à]4¹[Àµ(áù`-@ónpÎ.¢{/02yA WP¥+“DNíÑzð?†â*m€Z×Ê9'®8m“¬Á¡Z„T'Ê É¡ëÉJ©B‘á+è– ÜÂÐT›ÑG›p2Cæ'!qS]PÐßÏhSˉG1šOØ$:1*.yéÿÕ;9êŸõN^ïîžõ^Jøµ±ˆðŽÊ‘í8JÃâÃG1“jPÈþ1rßùDƒkä†íå ½Zµ(SOÈ£Ñeºdã/Cþ>v­—SˆÒ"]‚-fKr­ÎB«©>xÔ¿ü¬xF&7OÇ Gd•f£À&½2ˆÒÙáÍ0iè&©šì«€&ÕÅ! " 3±¦ß…$W`ÆZP(1íQ@T’f'b¨˜²ÚxÀ$qç¼l |P ò‡;ù£¿=(…|~Œd ø¾z‰¬{¹Y×"ì±`ÛtLs"{¾-IÇ´š†v”Ýñzæ3ž¡£‚)cB’Ÿ÷ecCš-óq-›[Ê¿¸•³¢køõ ѳbI¼ip‚(Õ-&S?°˜)ÀÂTØÒÀ5nUÀ¢`xŒ˜BüJ[u4渊-BÄ:4s²Ð•u6ó7|zGG}]7òâxµœóñ5NF>aJ³¨r騄]zö¸° |²Ñ]— -AÄ´Áˈ5×´Åón¸S PóWž5Vù3¤ìÏ` ²ÖàÂý&µß¶‹å鮂©ÁfD.V-ÇÖ ô¦XwÔ‚\ˆ·ÞS†áÚÈÄÁ>PIÚ~Ô@ bh£±vè/†]@1@'KräÃu ©6ð™wÓÙµ¦ÞF‹/ ».*ö#áäx÷äl÷ ÿõîÉK“fP>>=zuF÷ß ¯}å8ðŒ­¬÷*{ aT ½§·¨%.<8Úçx¾ù…ì®\ñä(›7Kö!Ê™Yó­ušxµEÓ3³è·@6¿£¢UØ4Å KJW:ˆI?=hƵ“6(cr•&Qº˜EyÇÍQªÝ2à’/˜ê™LH¬ ¹|1e"0ŽR‚9¦f)³–´…˜$A ¤i²|­1aÛƒçh¤F$b  Gæ7¢/µÓRªžy{±ÏZŠ]«QÌÞ”¢‰OdY‚?WÆÐÎÞ´9^ÿ¶“[—àP·sÎ"á–± û™ìRôØC­‡\ßw B²¿QŸó«)ÛÝÏ‘³‡R¤†Œ¡}Þƒ" 8 ”}êG]»Ó”oõ«‹9Øž;ñûTü Ù»@7@ƒF6HÖ·ÐÈ«à ¢¹Se¿yvq* TX<å K½øZØ•L.Jù‹­è¶à£’2¢Ê±Áñ ]MîZ tˆE8¶(^èu2c·šÐHVÒ&ÄdнI¼Ù‚ÌO;OHµOäZ@çwÖQÄa¨#ÚH~ò +GPG˜»½+G œ‹HõÈÆ"¿ù"kŒ=]½èÚŽ‚@bI±þÚì†`'}56H_Ã6‡« }([&ÒúÌgWó ‘Ž€,òìçK5®³«3™ žc™Å0Ö˜«¤™Ò©‹i›b œ9üA¯<“(­’ÎŽ¿àˆqJo´±$P«°0NXK(.ã"Pè| !J7º~a i·†"Ú㯣øúÉ1cd>Kð<Ó©mjBÜÏumR‹À^¢ÜmFãûcÌ4] Ò)qóº ™×Ÿ5 BÝ¡Ia¬#`ûí"6IÜG_7¤rñô-ãÙôÅÚ%+²ä2¹-Þ°»fLUÍ›[·J •™0% º‰½ÄNGx¸C>ž`cÒû×Tœ1}±U7‹¼ƒ¢}ÇsĹut„“°s™¾,LÓÖ¤£CΞÏöèÝM5«lQY:ƒ ¶B5¬|@ù $è KL(D—LO¶&U}Àóø€#FÆóþ«“à]d>â7欃 Wš{ SÂiF2·J¦2=ž”éNàí"ØH+‰ÞŽÜÊ‹ ôŒ5ÌI׬W|H?ŒSapºa~5zm´!<6"„x71¿ñ$p¶2=íÐ÷5 , 3É®Q-˜ÊŠS³v®¦ºB9ÐÌÑNÉÃÆ&gœ˜ªp³±^H"Ÿ Âd»Mó¯ˆVOÕsÈkjr Öǽ4½>| †F3 ù8ô Í&S~Ÿ™³<ÏÊ:ÙôµyEøF±ÕɪÛ@OoŽà3c:Ñ·‡¡šû‰ïøt‚Dt˜4£Ðgânêž³wµD êU:ùµø:¦©]Ë Çbm°>|'#Ï‹~ýš+LhHQRèƒ^œïl¯|VÄ÷äöß¶·2|õø0Wi“Œ*/qàAPîXæG˜‰™‡ÈšCu•ZñNAPÄfþb^~£R A·WPÈ-¾)XyÚ@zþpH>Ã^ä0 pü”Ó¶[aÙp눨8@MIõ®G;;["R°.^ÍYÒtÚÔZà.âTÈõ²ZðFÔÁ·ÇIä.ÆÝ؈ K>bÛ 62‘±i\½kTP1Öh£zP²%våä¬xQ—¹Qó`z”!õŒV»à Hr~cÁÚœúþH:ÝÿWÏ{0á…ó$_ƒ´‰SáႲ7l=1”²9 ¿S€¢T`äÝãËØA:Ôv‰0déÍIˆ˜qV­r­.Zì8˜v‰Wu8ªv¥ºKõe7½Ý!’ˆáR²¡}6µ:êmT}i ¾¯ »Mš®uK¤½}Wéšù݃ˆB@‹`Å]SKjHa:Tœtc¾Fxÿ<à“6±_³pQÊ[EŸ ¼¥È•;ìõ$§©LR——`“ÖOð1Ê›¨n4‚4ÚªµbñfƒeÄ_´í„©,UQ¿U½g¶½š|u0ŽûÀ1çŸJP\áh÷¾ 9­Ôqð±ÅáŸ5Ÿà®fä³µ­bÞRò¥˜ªšÜAXÕÞ±ü¹,E9·M M2¬áìÕ—RC°C€y6oh"T²âî :¯]+–O1•€ß!Ÿ ÁšÅgAP']RZ,ìÑœ «)¼1Å.²n£ÝÏv¶BâyFÜ~ìV¦igzÌŒ t9ÌÜmU_âêJ£¡‰³QˆC¿Iê¦ÛÛÿË)©3ŽòׄfÔöPS$Ézâ?hòBcVµ •´{›Ï‘5»¶éÁC¢ Œ%5x”¤„{×5äCtt†˜OiµßÛé#ŒðatíH(äÑáêሆÎHN*ãÑO`Ö.o¢®¨‚mLFœN#™ª…G¡Q_ÎÌb!SSÑlûkž­yƒxêQÀÁ;7ú~@èôHX½ìÏËáiFúX)˜sàâTôŽßl ,uoaãk³Í1•d†eØ@ç t¿Ý†krž{æa<σÀ?ïTG xç¡+¥ò 32[ÒB‰»á¨¤#TúMà D[¹Ï!ê"…b©3•£¦jÞpÁ*°:÷²#¤¶%{‘ ]CÐ7•¢)TÌCÀ1 S˜1kRˆ‹êœæ±ÝÍw0Îø!z[UC’ÐLÉ%ê͆áÉ ½lPæ){ŒÀJâQu‡H|茼¯NÎ}<âŒ{5jË³È l1èàô² Ù2$ÉE9ÄĹ€G rùsìjc.´ÔvÂõ‰x™žêâá^Á9éÎCì¯ÕÎñø ñqÕs/†›P ð¶©…LÛ½«Âc~ÿô(ÿòËG3(•À×(9™#¿Ã?‚?ù¶Y˜ãV¸ †P†Cu¥F9™¾$ ÚÈ$\hh"¹rcC«°Ë©¬»y¹º9¤w> b›Q:Æ‹Ôë3AãÕîw7÷q>xªÕ¥ô3j›F°5–59¬ÅV¶Ê&ìbî²xïÏ/6/¸Ó8³„%—Ðt:rmm…lú„" ÉãÀaŒzAý^•¦Ö¼ &ã/Æà,$¼‘¬™t›!2ϵ^GÕgØ$ ó¥yüs±ðZìYD§!nFó•l Þ|•»š?ÈÄCBçq²¢âVr»£8ÉÆ„“‰|‘n¥­E9J¯­í Æ:‚2éÉF°q’Ý÷ïvº;±`ö”@î³$G³½£ø¡¦CÿS[kÈóö‚ðsQW6z°Ñ|Ú]˜HÆ?› ¯£’ÙŠÊ…ÚuÔ±‡ÌMéæk;Ü„¾KbdƒT wò“—¯ ÎýÇ´ 0>Í÷(¬²Í¸ãñÙSw‰Ä]WN!O¡@ÔÊˇ[[G|P²ž€¨WÍ–þ¾˜F«Ãt¬Á â²~OÂ043QEÖ“¨¢n†x6êi0©C=l»zóâôlÿì ¤¡hp©GÕ4HŽ’Õ$éÉã ·¬îÉZÛ{E[ ÞvŒÉ;8b0YËÑ·½“W˜¸£wøÕÙ×­µ™UÒÇ+5YÛIïø`w¯÷ºwxÖYú£êÀ÷l,ø œ8÷m{ñÅìÅsb¥á³µ²å€Sbeoî7‡ß}wH¼ì+êm†ÒXµOq»cÎ{»×¥µÁ…‹)Ù5SÑL[$)挋R‹^x>GT—hŽ0vyšÎ•²ŠC´ºñò£š¼"ÝVX2n1Ì!uÑ×j«TJ( ô”`YæSp5Ã6Yi•EyêAÆß¨ A!žå±Üä]¬„’Ê&ˆúžÞzp °ˆ ›A9û¼bª½ƒïºJÛ§4UÈ£ó«šfflRR«p7wÚ€¢1™í]¸ß 0E{õ™ÚcÆø^™h Í†Å”ãT½4ð>¢g»0!elá'JAp¸(oa¦š·AÇp[IÜø•X‹”G[m¸PV ¯^–›°îw£š4P‡$û&¡Õ²‡îð«Ûu1{ª[%¶~2ݨtùuU Cà9snóÎ) ¨›s)rÀ#º¹kHÆŠùz0§lb3ÉÈÞÿ`f•ö@,,ÜŸ€ÜAL™+茭B ;z^¡©o²¢Œ‰û­„c/&â[ÓÎÀ…'lÄ2Åp×»lÉlº´ÇÞ•Žvb¤Þ°?~<=ˆ\ÞN’F“ž¸Öă.fïaÅ6™%m­9ÈÁœøá\HG‡Nh:ëupô",Ógžø·½ŒdÇ€›å¯«ÉȳB·•ÿnÿàeÿ´w¼{²{ft rPÔ•ÏËÒlz”ú/vO÷÷â¢Í”B©¢MAX…§èçÍT²Š¥)v°XÇ'è6”lšpblñHÕV«kEs·IùïN6`.Ïœ…çÑ ™†âÆ$kHÁ‹ÝåØ"4ú޹”y p-+U!Ʀ’_Y[ŸÌÆ2Z bÜ‚P8H²¢›§S¯˜2¹¦ƒy†àTjCø¹MËbp¿ÛblÁmX’ Au€øsÏGA\&ûÒL¬ò ¾IÌW•œESái@AÄ•»,>‹‡ÛÁ÷;£É»„·­?ÄÛòc#ô‚Ú…ózØŒó45i&ùàŽÎh沈XNSg‚yžÜóx&²½Ì²Yt%«g¶µÃóqhÍF}[MqRaZæ,sšÑ?z{géTµQ^×()mÄÌé¯c ÇŠß0K×3Jyš_d›8¦iÊŽ.ÝA~Эpä6 }5òõªäŸ†Ý´š {pÃXÙš re*H<•œ $Ö†¾ê,Qѽ£ãïÅØÐç© «iÏ…wŸdx0 wcÜj[é—¯v1uàîIœ9ЕF Ú²A}–>u¯>s5DÅ)ЉýŽN¨Ÿ]IZ*S|ÿt÷ÅX7öÞœœöŽŽŽSy©Üûs#§dÜw~6˜ûÛÓaÝ+¥m¿ó½g/Ž¥¢½ *’EûÅ"ž¹fÑþîYbæ Šû4»7›CgúÄšåÕÅz£  JÇ`0,^·‡ðªí…ŽõÑ“vdc‰‚ƒÈBGÙx®hßj³Ð²tA+hpÞ†ˆcw1 Î.á7DMˆ›‰`%Å }t¸mˆDß0‘xžP]èØ“[—]]+]K`Ú½—› pgÚ:·J»Œ£å#vù Ó`)‡—ŠÞ¯^Þ”C‘‘Rp˜;p0Á]Li'M"ífÖt · ™zp°½òOªF’‹ª6ad¬HÂÆB´^|ÐÂÀ YR*Š?½|þcˆ–Rœ¬ØâlN2‡¸.Áf6˜ÜÙ¼‘éÊ,âÅ4 ­1&* M&‰¦`‘ƒ3,Ÿù|Ƈ¤ÞF‰–€íYWlÙäDòêÄ4ò¥z2ŠMÙ©Øã¼oŸ êRŽÔ·îô¾½d#=FãŠZ1N ÄÉ#œðûUÀ&x(=’RÓmÇDýû¨? õç¢þ<ÔŸ‡ú¯Œ†j¢™øîœ¶W!¢Ú«À«: WhVGg–ßV²™@bQ½œLm©úš¾´µþsõ'B®îD\vÜ׸¤à+a=ÖnÆkcúÓ³ûquèµTõ¤þ¤ÁŽŒ^-ì†JžÒÐQÞ-V™îJÆð–0€Ì‡iýH²d™p?Pþ›ƒ" ‡kfó ȇkz ¡áâô3áëd^JèÔbñTN„÷…Qµvoháôˆ>ClrÑS>GÞ[™L𠻸-p¢ætA¶¤²Þc,ë„LÏ®*Ïs׊gŒ/¡²ŸH_¦C͉n…g³™‰ÊÝŒ6o$RÁ Û@Á+9M8­ ŒV7"ãÜ,Þ h]áet5YÖT첑Q¬~ÓéÅS«CÛâ0ø ~‚û̬}SßÖã\ ïÁ§OŸºÿ>þ|EÍoŸ]]t“ÛÕëß¾"|[d+ê«n4ýš,«0öb;솭ã^Ó¡kÇõ4Ëê4÷,e×ÀQ;»è`^:ÜÞ*‚ÝïO?2Iê íÀ¬A$Ï\À§˜_ìåÈtKËÈÓ7øVËn‡Èë -GysDß³LX1Ža¢ÌÅ‹¹‹éï$/¥ñ|nhÏÍó^ì_ÃÎ' ³æÃQ?]ªÅÏÜnUü–é*ŒÛ&zÞ)XSí$¾‚¼Læìxg¸<Œu~TÕN\¿-MJÁDÌŠâvÑýƒOÒ˜¦ô«YØ[¯Vóáòr<)o›œŽ¨b>A¾*C¡O4מ™¾wi0|û[›N{÷í3]áîNmíŸ~úI_ðfŠäßöjìú —WÑé.8²f×Ú|„»þzI¼wQ~-4.o¼£dšu|—«E}Å`6[®ïj¶ ^¨Ù{“PıÄOJýîmð4Þ§¼ <ÂsßEu~’":†[i÷D/ZÃeõÕŒ’†Õ1+ÑùúØv6ôº“å+ êö¨B§:FJˆcµ 3ýñ†G@¶tÔ‚OQuzÞaaÃ"âˆlÌVÒxùj×Ь’ÇŒ±Ì>‰à:YƒâL~4¢Ú`ÅÙlNõÖ= …“veÂS th.§ÐëÃRh1Ë…»[ÊÆšbhÅŠ kô¢fR6‚œICÃèÉ벨bÈ«_ÅÊŠw®tÖfrÓP 1£-¢gŸ²!\“$·°‚«Þ³àdÓ9Öø0â£[llÖ”­k nXx¡]*ÝE‹Šð€{R•la3°.§qR ׯ¡4Àø..@×ÖÉÈëÎ/(YE‚Üo .âu…ļÐ$^Ï@w6<”S8üž»=‚ ²éÖ(r¿ (mœ»WaŸy 0&â=ïp¶R«æ»ã3f™ib!ßÍÜ •êxбeWL°Nâe‚7*)öÄ4¯û€ÇþEÍõ¿É m0<£‡ü¥îÐ]!ƒ#iy P¤±^F=fj©VŽÔkåæ5£h™} ÇÓVR²Zé·„”Y¿ý5,4œÏ0rB1äb"•» _!Á¼9ŽäAµÀ³¤# õçÐÁ†5¢qÝ\ò2¾K{BRà„'µ  ZWyX'DÑ,k³emndÊ&L€Éõ„ž8 ,ÏaI[9ZZáÖæKN"æúY$ƒ©öxЄE@Ï[\T{¯yc ea[R#$—˜øK¯µNÀØcÍœ2 Ú(òª¢k–˜Îi)PÎ=’¥ÚSDqø ‹ Õ–b6]YiHL²9‚ËWŽX¡à|, -ú±4Ðî§ØiWsâ à„¢¡åMKTò¢°-µi°?,sM©­E“¡ooenDpþ—ó\8X½€ –Éi¤Ñ= :{س ß5CÒ¡­N§ OÒ·L9X#\SL¸œóãr®%H#ȼíz̬ îsñƒf±ÄS²iјѥˆØý"1v|N6ÀLU­”¶X-w %jÓ£ Ìz©ê€cj{;€{ûb=€ƒ‚¹ Þ2ÇúP R\&ßи© AiÂqº€«ëVÛ¤8ç$‡äeG­Fî)Þ!Äc¤g>A=åâõvFš;98‚ÁÍÁ¯W,“hÝa)ǵ€âð¢ÃÖÓ°?ðÀÔ\¢ýÜ©,^!=apÚ«éR`A´[”cCqkœ—‹Tœ…°ð<`zÌEFU «ìßÜܬ‘ÈlŽCüÚ½„¿ÕѾÎ~:”mù!S]³-vj¼¡¡h@<Þs¸+ÅnÞJç *æèí3ÄÅlwñ»€ïøj;,Ça–ˆ  Í£Ãê¾g,ÜUµÍéX—~ˆÉg4¸µ©êàx8'Ô_úÈîé†a‚ÇxÔ»r¤’æÛâÝ„ctÉáA†)ü‹zCc¡+0‘ÈëÆèW^iža5 \Id*@ˆq¼·z)r*dz·Ø°¥Ǧžb&¯«WR鬨s ÿª‹X~ÀÞ¦$nWÓ¡XC Çvzÿ\žâ?᳓"×ü5熆թvÉâÉòžDÒ¡¢lŒ5~Ç·æºb†¡ Vý§áNÑQk¤W—êphJHsf€ã`@k(A*˜QšÓËêq2MzpxyÉVt ãÐ}¤¿§üŒct>ŽÞHŠkô³(šI"ÑÁã*móį[Z“Œ1†bÔ’ÍO¨ð´¨}j]&À,PDÌf磜êB3R•,64Œ\@lõBˆó`¤êeIòòÍgÚºóya²Ç)mEiƒMX‰Õœ™¬é8…t¯>4‘˜­,…ÓÓÄK ñ‡iëûŠeF@¤-ÒM¸rÙÂJßuåF•橉Ùl˜ C_fm£jæ¹§9*º0ñJ¡XCÉÎX£.êS¡¦À:¸„ÉÒ˜ÊÀíÄ¬ŠƒÈâ^8©©º#Çy=“F›ÛpÔ9„ŠØ ~¥xLž4Ç“9$F…ØÎ}y5ºæ(x´ÒC–Ú‘ËqB®ÁQå&²petà¢c×鯵ϳ4ØÉ nAn%‡«·ÙuÒùE¥]ÎÝ"+£,E&gY™×ÌQ]LÂÃ:2‹s‘uÊÇÔ8¥âàú6f¯ÆYñî´Š²éè¤UTMwÃ’VQ4ÝGZEÍt Ò*ÒVÑ݇³Šöè^”GAJ~ “PFù 6zß/ä¤á,¸oY™¦%n½‡$å€mÒ‚àVŽKo?2c]«Fˆiµˆ¿UÜßhSr[$pµÁ!§Ž^È P­•Ç‹°iTØ‚stê@èÝyæ¾ÅÍÇÛsx0þØ>ýöíCóõ—‚ý Ä•èqš—··á½º”y9)(*Té|m\^G¼¸;>2±3|,"@Å´ã(¥KެPR¥ÄÎÏf\DZÓîo5®qÏ{NùÐ^^h‡PUÝgœ¬YÂY=˜íÊ¢ætp6 …œY+~ÊÂU°žkÓ¶°ÄMíúÀÁ‚“wb²š¿¬  (}ìTYÖÍT,„7$ÙÑ9Ét¥® í‡îC÷ß·ÏdMþ°½õã?¿ÿW¸Ýî3÷ß»‹ÿ-,ýªÀœšÌµ¾ñÙ—Á€Êm"9OèÁr¸åÛnaJXi¸táwrtÒ?\Ù½iSO™2:Ålö ˜GƒÊZl(➺3/”SýT ÔÀ„t‰(–VmlAâûÆrÞÕø–¿l=ï6'!ïÎ?7˜ó]Ýët=Å7²›ßÈô"âMFÖ¾‡6®Äé¢V܆1`eôY‘¦™˜9«uëát0×Ìa%vè”]-êÐ ‰·´‹ù"<áLÅ yœ£í“òÙÈp\ÏÜËç‹mÃ"ÊäÄ&_ßBËJ" „e¼¸„„Ÿœ`#N.’<¤:O·Cð Í”Êô4+N_«&ÅüÏQ¼M\]¾±½)D¾zR£I&Èyù3øTÿÆv”omj†Î 9â»°*½Ävá)™”5tÛ$¶ýcÆ*mÿ9çN~úÍþñqïå=ΟÏóííôùC/×Ó§µaoŸÅáRÛÖÖ³£¸­Ûî›;ÑAr))ìjY[МÔZPéS˜Ú#ÌWáVÎ!Ѭ|Г¡£NPJ0©k'TC5¬ñO÷j…å û©WuZPGT:à0ð\¤Å‚ºqßx#4¾·×1ášáFÑcBå­‹åôN‡äÞ½á¤þi †(ÿVãm":ÔH,|bù %?´ä+œR*Ö©³™uþ¡88}(mòH^vÍÄ"ü|Hˆ@ð· (9JZé~+ÇîuS7ÍÈDY½ ÁÜù¦z¡Wï1Ž9†h,"‡èæ^Ê r<ƒé@jhI6+¹oÐõÅQ/·-yãé¼q}J+áÞIÐ{ƒ™Ž‰pJJ•Ä,'…Nˆ0’'X9†¼¢Ûdž”HO·Ð ˆ L¹(…p-tùäü1ÌòèbN×­ Ýý B·ÔÍLƒ– c6O±lú•b<Ûe5Å5õ\Oé€$8™Š~‹*0¾={J‹±…!á /²´÷èOÍTw=´%ÑEÓ“+™[ªH¥<÷øjsçùÉ\[W}×m¦ÐÞå¾33 LfNzÀ2„ ýÉhÖCä-JË  ânð…0½!+mmÖ¼ÀI¬'wîg ÅèÐ2Zq°Òtl&]*îf©œŒÑ²¾ éŸ#SŽnîÝiÀPä¡ÚÍõãçš‡ë ¿ i£°¹ 7t(ܺԨ.I° 0S’)ŠX^k&oÃÀÃÚ]ôd¨Bˆyâ Þ°ÒT3bE¢LI¿\Ì€‚hˆ¡ÐÓ…½Î¿³ð°Ón1yì»°à8¨5nÕ«º:˜“m퓃ý×ûgdçy¶¹¹¹ž &1‡fõ5,³ 3o>ÆDáµíeiÿ€ôເ¦˜ñh #|ºL\ËÞ tih„@i“°^-‡4é>:gІ&É Õ<¡«ž_î¤VÂÙîg᳆¡¶öö*=b9\mÈ«å(HJÃÊéá!¹Ào0x€­Ä ÊòJÂë$A™Nê¼,C²ALm9 Ð-aÓms•ôNªÃõŠò™3¿Éû’O6`lðÔd¤Ìøº½wóháèÿ{ÿÚÐÆ‘í‹Ãç­õž7¡Œ‘ÄÅv2Á! ÆØæ ÀIf[ŽÜH ôXHµdLŒÏgÖµjUwKà$3{ïóßÌÄ VuÝkÕºþ–ƒLirLì„VÚJø‹´WpX[°~c˜ˆÝü«#ùÞ;sÿY8ù,b°,Ù°/ƒDBw ;7羈žJ“¡y¶¹¯p`)é=ÛJEÔ´ºèä?1y=lÒµº«)¿f!>™˜NÀ˯g.(€¦˜p0×HŠ­ aƒzªF=ò>U-÷ÞaPI¼õ“r¦¹èÿ½ "«|wÙ¥pÛKîÇ)¦©ö.v&z÷W“åM¿ëiuØrO4G¼ß‚Áègqžg™ (ÐÑ?0éåÙºƒßA§ç²õÚ`JÜÌ;¾x­¹I—ý-9aÙäÐðAŽ“Vj#šùç¦òj~ÿb ‹1Eý³Û&DVÕȲÛGãP‰JMŽY&^R]â%¬‚܃s¢(x0“§a0 éo4,¿)lWÞž%YÓJlxÌ]ñóîk¹pFöÓv!÷ùž¼q(¹]¸Øåð]M¬#ñó§×»ÀΉÏÏÕ´T}ñ·Íj;:TŸ3o¢`ET_r³W‘t-„Ýu!,Xþ"¿~0Pÿ`tî .6”ÙxÝm}F&“ü¤l Oï3¸&8¢šÖC„I jp!Øm2Ÿ£Á„=”@¿Ëe#‘Hšáþ O’âà^IB(ž0±€f¬Ãvç›Ô;dît‘ùTÛv°#ÇöÞaÒÖˆà=†×âo/î-)Œñ”<\ °”'òó*ýw \jGx|PñSR™L ΩzDãPÊ3„HÌÔšø UVRˆsS\Cq?ŠjZ* Ù‰g;‹¦4LùstQñuòŠŒè@/Šÿáå*Í  ÑF3±å{Je šÂm¹Lö“Ù@ ˆo6ÎQžÇ€Yk¨>:Ödã!Ϧ»÷Ýêùg:Ô±'ÕLu̘:&.†qO¡*Ö`­Jvû! ·ÓáûÑà=Ç€±l9$.›X…æ<ÇÑ„•Zp'`ˆ²“@Î(µ–ÓÕpßBÄl+‰Ï Of[ùÆ%ôAŒ©ÁæAQÈ׹ΪŒUœb:‰Îy‚NÓU|íf\Ì98(g4FömŒ¸ó¨0ºáë]²E¥€z"'ûЇ)pTi ø1j2ù7Ji-RKOæ³âò/Ç̵ŽzéœmÕ8bÍóâvkr…3TňC{ô$Í­™ãÐ šŸû¬;t¤ñ ‰[5öãXÌR ŸwÊh²h9GÿéûÁ¸†Ͱ،–^ÐJ(®Ñlè’o8»)²AÇUL;•ˆ×ÀwŒÂÚÏØš*Ja.RËÇCGUtDÁJ«j¶ÓÀ I£Ž‹}ÛÌàcüì`Cì¡ó) à¯nqn{¾(#&‰Ê@?BM54Ýô®+8†d˜PÖ±¢žºÄUOÌÉáªiT²ÇJ’hj&7£À‡ƒu¡ê’"R‚IO2wAÑÜa‚½ªì܆Sù$Y.Íg˜eÓ' Íg¹7êi6 sŒµØ¯…å1~—ñû8ÚàŒmRáŵŸ„šæõ‡Æw7òö£uðhì~g"h˜´b– UnÐTXéÏT ÖÞÏ °û¦Ñì´Ý(H¤˜þеØtffœÖn{cºÕYl~åÚí÷MØX]äë5–F½ºŽæ<çÈ¢-q¯0†ÔˆàpãQ0ifS q¡mZö_.O|åzç9J¦Ô2oy¨‚-ÏÛ#¹jÜ}„T¤}¯2F wñ6j7˜$ú¥<^rð^Æ™u‚¼ {±ÄÂýy òÍ)n¤ù°öS2âòyí™%rg.Q)k2˲Åù~!9øIKó\*TJ]¼ÏÝ!‹$ì€yb´ÿØ=:ìžì½Ø;Ø>Ù}Ò1%Š5€–$ÙáŒô7<‡ïÉ©\ɰàÜ—¯’(Ø…„bkÚuf6A‰cq?„{'nz–ß§ó$ÏomZ(—ŒM±¡Ñá$áyËïZãà-œhÎ(ad=‘¯1C”¥ó±ðdä,8î– €¯K‚QÙ)^È4n·é}(\pÒzÌóø ò~²)›µ$ŠÊ3êêªKz-TÁ& ‰«tŸM><ÐgJ¬Æù¾›ÆǤ;¹ˆVjBúÔ§©Àh9+·  ¾)BÚc‡»ÚiOÐàO1.c3—æHøÌä¢Â+•ÊÉóÝh{N<œ÷½Ÿv#²Nì<‹ž¾:Ø9Ù;<°ÓSL»ÛmZ 5i²×‚Å/·×zŠÉ»ºI:V§-UÑÉÿâÆÉ¢åfTM[…öʳNœ^1=ð Âjøåg;ô`­4Òœ º˜tn’jX=±)Õ! |h ¤M']Àô¥.Ï&Ê»Ôb‚‡ÒXø †Vå<Œë!>ò.2lÓ,/A£¥Ä@çáV%ˆ¦§)Ò[Ÿh¯Ðm‹ƒH>J>¶Ý…‹ Ê£J$ ¦ä)”ðÔ!mI‡H3¸ÝŸì>Ý~µ¾:yùê$zztøÂX®ƒ¹Q”]­¹ÔÅy„©ç)ßêÍШ™» º4RcnÁ í+BP65è^¥¼M/³…ž}Í{—•óÈ®.Fƒ¼2 n¯˜% éOõÀ‰wnn¼œ7/h‰`T Tà@«Q”‹¥WÕ³b†ÄÃq,hÛ” }ÀÝúäÛz ¥QNAbLÝÞÕ$fâ}/ÚIÓ=îâÒùÝw­±$òÑIÏ9¸XI˜rt:c¾ Ô‹;j¼kF¿Á§M{‘ž±ú«Ýì'¨’µ>³Vqo·ÓZ‡ŠÁB.ï×R$=çh#T ê3¢žšî8Aû2&uˆ Œ#â ‚è€së¼ (×Âh¯f G2ôИ¶Æ^ ¾«&ÁZ&ÞTœÅÎPAi©3qt¡3é{…¾rMA%3“„ˆq[F±V¬Prw¹ügåx €¥r°µ‘¸MÄ{sY œïM•44ñ…FU~U5ðprC ~ŸOZ"BÔÀRÇÇ9aFzwNãáù þ“ÀNð¯âEzpŽ-ÕÙ‚Á‡gÝ}žx|^™ðÄóW™Õ¦(nÄE ‹ÖD%ªX5Ag»&#èCfœ£=³!¢-‹ÞLYÈÊ 9ìPŠ@'àÌr™ÐãXssA#Õ0 C•0ÌZ¾w 0›ÃÅŸr…=fƒbTQPûLYJB·ålzááŽÒTzæà3CÔL’ŸÜÞ/ŠQÑ2ç 1™’…ØïÏ»> f´—dt³^zëT\ ßÁ~ù]¥p›æO »¼À§kÊdã?zv o^* m¤–¸•œ7ç¡Ù¬ýFÑÄ-²¸FøÀ 'õ“üß8QƒªU¬Å.wÐ’7²Z øÑ.¡ "™Þ~ ´;ÚŽôìýÎéz¦ùÇ…jG>þN:÷‡Ú'·§[’sšz%¼¹,Ç ¯Õašo¼ ‘aÅÃãrØŠãÁ½´^6Ê™ÒÞ(xåhUkoñ¾ýµÓÿ¡Ó_þG<¼9KNo.ãÉM<žÀïë›̆ðßà&žßdÉøfÔ›Þ GïoúI¯ÑéwúµÂE°qÿ°ÇY3ØÃ¹ì3X(ÿâpí!mü¦B¸O¡D觪ÇÙZ³)_ølå¡0š¹´ðaÒ—¼¸²³½¿,Âq^#ìÇ5ñûß±UCS…OÝ…—˜0S÷»›ƒ3n¥ü J„< yÇg]B’5ëêÏçܼ*în:Œ–Ñ*$DRRÈxIÌ…«Â¨<#téÀ“‰kbšSYµ 5ÝaÙmäpb\DËò; Z¡—çZš £â•›ߪ³S€Yý[o6!û„æ´ÎògeŸ5bŒOy`$Ä’º…RXÄ2<¥ëjî9mµZßsÂ&›=¾køÏ¯ôøéôC¥º®“K!¤~"á°¡r•„¾È¹²fu6ÂógTƒ¥2O³X'vµˆ3¹¹¤c ' m}²e•å.LžÛü¨¡€Ùûß3akMÖ/8¦V¿É+£+KKMŸÂ5‹-pn7hdxfj/T§V0$ôãªóQÿ$•±M^ŸåÎcJ7>ä`+† PU ½r篪Œá4½ )Õ‚ó$…ל‰ÖeÎs·ˆæxb'h]ë.{q¾å»Ö™zíá ×|"GžCâ}ÝÅ€¹›~o»Åà{½ÝÚ}ÓYYµãÈ_3»+á¹²Ÿ£¯Öä(Á~úÁ>¿¯Ï© ûÍ_£_åô™Š¾ZÇŠ~ ¯/hÉ\&qñ*Y^Á(†ím¢×ööWu«±‰…©mbI\‚‹9ˆÙÈƹ¦Œ$Þ=ãwpó—Æioá¡ '9x`f9P¸~µ®S¹†rS*_½ë>ôŒt3úÅ_Ç ¿{öñÑË‚% 4³é­ÌîJ­Æ’˜î´Êjr8ôrŸ0|DàÇQTFJ„°ÆÎO×þh’ØŽ–]rvÇS«³¡*}5çbí:S5_O^…n 8Ò`É›¿CŸ]ÿÇn;iŠžðEºÕÙŸ£IµcNâ©ÕY r“!6ÎßQFât”W®µÑ$À¡wojO0‚sš÷™uñ¥Ú]7ªÈ$}à4E²†pŸxøÂ²{.»àu ^|¡:äžµ@K·²èñéò;uRKÔ½>|¨²õ£ÚHÎÊÌ]À)¹O7Zþ¦±I5…#¾‚?¿ºƒœ"WÛÆT§¹S}‘«1)œAdnìVôbãb Ôæô±0JÑr/ž`‚c‘Éþâ]lð;YL Í…ùF]±Ñóæ£ñM<‘`N…J’N\HzÍxê\O´uu‡-uCQfÄIÏš2a’W1åO'|,d¶Ì>'ã€ó_ðAŸ®0¾ôì±6P-ÜŒÍ(g[D›Ôhà~Á®»Èªº…|o ùÜÞK.Þ'0Xͧüb¸þªq0[Mؒȉn|B%Ð+±&6¹ â^g+ØH¾„[íOŽŠÇs·å㦋úUžkæoöñ÷Ø0rnvà¾ãó5YÃ’ç¬ÞïŸxn:ôq~:´›¹Îëãw祛ùÎËcÛùOw¸áBwø±íNÁ ç`®D4¯žÅÊ8âU-t w9}á•]Q\§ÉÙè¼2 §Ñ¹x(CÏh‰í.œH1bhuÎîç<¤ÒKÖ ¬È‡j5= &îô’»†Ó2…O#à\±ý›ÂüR–Q ¤Xc™´:Ì-àçGOÎÄ‘M,À i¨WŸà®ËeŘs)⥳) °º>/26„{:ß™la¼.Ú™Z;²€—>Þ?Û#s‰ƒ7Wle“ì¨ >CBÚŠœ¢Tw›Áï `ör̨ÑÙh¡ÑÞZ€4̽šf.Á§Óˬ³ÍÌ-’KI´†üó, ²aÚº»®Q`/N®ŸBޱ+ne¯Fêcù»á÷›ß]~ßð ,¥c¾g¢Gtœ ¼Â5;¥+Šn>ÄÐÙ½¡·ŽáÜ’¥[ Ëo—°}H¬v"›Qaî¼…ÖÐLIÉ#z»S2y¶<å”óªyAHªS,QŸ9žUy…v0´"”¥!ŸI ž£`U#Êe×ñ6½Vqƒçµ#ì;X¾ sSH1ªV˜0Îæ†ã‡óŸdR…ã>!–§©{¥ª¾\ºæ€7޾pJ…Nù\vŽÑnýWkÛƒìK"]ŒéVýfbN é„eÓµ|ïŒxHj\¶µÊRÉ$^$ƒ±‹Ëd¡$ˆû&ç_Á ô Âï†q™3ØátŽ"Ç[<5skac›¿Ÿ²$¸š¨Q¯‚aíàð õòhï€ ·;Ï·¶wNvŽC‘Ê÷Û lcEU–Üg8rsVÿà‘QªºÛˆÁgÌzÜßh­o|m7ò”Â8yqæ¹*ºs‡zyu§!íóQ½H>8ïÈœíÙ„”ŒG÷jììÄšâ žë·8•P/o‹¢œw@#¦ÃØÛÐ" Ó°PEÄÐȲQ>5Zöò¬¼çXäM$ózGæ»sÑÏ ƒz>K³‹ÈM°B ž¯9TÜ3ÇÛ?‘™ÿàI„VÿÃ#Ú;‡/^îíï>‰^nŸ ë–1ÕS¶á5à6Œó‡cs`‰M2È’ùÅhgân£˜/”ˈëïëÆáª&‘ WBH"wCçéuGH/Fd³nÀ¬ÓÚI‚­#n²gÄxNfá¡_nñÍ1 «Éd¨á«!ÌÆã¤jÑ_«ãøA£ËF—:ät3ŠÃÕ@Hf…½ÿئ×c`V8·»#/…9WœlçÚqž@×Òx€Ðñ’¶‡ âòpƒlÁâyÏðà^ȇÈ0j‰?ë×èÉxZ‡W‰bdti!®u‚„çÒGCLc_Ý€ñ·#íeMß”sÒµá]Ie`z»œzDaÅY_ûë_o6Dîwnœ*œ!­8Q8­½b ʼviK9N˜p×u.Á°ºÚÒ·ÈÛìD]ÂË£é\ N¯P}G54ÊëÊW$^ŒŒw™Ì@6D8“"2=³G6ÆRÞ°GUí^ÌIÇ¡çXâÔ–’j°¸\FdCÇ$Xöˆ¯Bv§þßñû Hû`÷„`³˜“]émg86r´âtyÙ)”ê¶,‰(/¾N¼72£¡*1-O`&­éÁ§”¤óf˜é ¸Z›˜†îéxÊPLFá5ädžræ-²gÆa ò«ÇÉS$j•Œø¢6÷ç’3‡ëDÎÅ„ƒÑ(±2‡Ú÷6z|f[œiVè1¼‚¶ÔÈyJ8q(Î ïõ>MÒs‚" Á5@š7®.,Ö{oEòIv —@²(k/›Á ’ßxÎc[:É)ÞpÒä ¤‘ €À@yØí¤ÁÀÅ7zôS~Ź˻æõH­ËzBݶÉËläóƒ%ïùFdiÚ 5ª¤S8_˜3µtÅk„u ÔrNæça¤Kt«wå‘ò}_ñ“ÆË-þÓù>é »ëÆîÄÜz5A¨Ú¡9ü´s)Í4¶&H^WñFç6ƒÇA’”’‡Q2  }ö&NBˆ.–tæFÌi2aS5®Bª), ÷2èo–خÂ-ÿéÉà!Ú|*·M}î1÷$Dyƒw0lÚIš¼÷îÍKc(i©NŠjE”%°QsX@7„P‹{£š¹@•BZʸ›¤ÊŠ‚̧&¡/Ñ'd }p´ÊKO‚§fK—“A7­x˾üJç ׯ zK¡€Åé;‹ˆ.–ó#oÆÞŒt ‡4õ Ó¯îpóÕ$Š#Ü­#‘ÎÃÕŸ¡z“­¥…´Rª°–š§\Ÿy{3nšGlœ€%H“k tY°(‡7LÃTOEÆj"œëto¯zI‡‚C20ª&|ÄäѸùÓWò7(нþ†‚æ ikž"Áí›W­? FýyúçA‰h[btÑ:V$ÍFlÝkjC«sÙ2¼tçœ3YŸ@—ê‹ 4Àè×Ë­Ó.ÐíL Fç¨>×Ã_¸MK„øsuÜŽš£ãó *˜é;„e«—sÅÒâ]’¸‹a:LJnÄj,ßw‰ãqj>‰ Â<ùGêÐ4ôzÆoƒêÄ1x¹¯x0Šu_¸‹a·¶_~l¿Ø•­ÚŠ^&“AËð½%Íh-ðH·_î5¨Šª6‰º% ‘>~õòåáÑ 40É*íl,õ“=á§¢ÓY:w·W¼=ÕïÅ£Õž‘a±O.~”ó3BÒÏ*ÄA øD ~&ç%Á3‘î-=`²Åó夈‡g®¸†¹›È$ 9o@©‚áTk½ÂbØýi÷Èt  Ó-iØÛ…w)Ft~¡ôz|Z©ÐÓíÈ‹¬²YZMò¨ H¯îÞÁOÛû{OLgȵŽçóäÅ~ô]]L’³­ê’Üû°*i¿ú=•øn5þ¾Â^x4Ű³Ñ&í'XåÅ)ucoh¶‰éüjd–CP÷¦rI|Ž>ßÓJÊÂödÖkN':¾¾Oû(¶Àîkáîkщ³Ø ~ó3šâi±D=›…ÃÃD]f££we¶„aªËCñ' &ÿg‰çˣ×»G'/RO²8º˜r&ã­Û4‹:Éøc»ý©Yé$/éšßNò‹Õz/FJ{MôHò&…E$ܨ‰ë€¡‡VÍÈ9<}’¨9£L6!^8Jaºw˜÷e¬ÏkÉ3 ⎣Ù×n@&·s„^7MKÞšÊþL/8]_ƒ„&PKt´±}àKQÀöÕV¶‡×4cû=8×ÃÑðú2ÚÿKƒË»% H!ÑkíI|š’eäy¸ÓìûOì"¢MP”Ç©2çK¬d.©;ì¶"ûvzm†À»$#"³Bª’ÉÀÜ£Á6r Ä쟳˜pð[¥Qq JDLܨb®!^l‚h¼q™`Úˆ)dŸ‚úíWœ%Mê/V¯òäú.'\Q·Ô–ÂDxûxgoOìžÞ*XÁ¨ÍÇ;#ïO^:º ¯L®;n˜IÖƒ“¼`íwò&+q†ŒòcF›ÇSAnãUfç`à\LåGKöqË,Ðö)pïhS_¢Z7Ïp°ß"ÇÆbìèiq@h>'*ª3NJ¤z=–q|ÞNÍ£ÕO32„*a$ZFs%›mp­¬ ard#"º@uú0Ñ0ÔVŽLqª$ˆ°ñ–fP(þi.z4ójT]@SºA!ŒïBøÏ´›Ð˜9Qȉ,…dŒ¥)w:„iV:]±ŠìÑ[$¶°ØÎÅ,ŠõgQ=z.î%š³™ƒçP' ¨EùÝÞJí‹éå`‰Xý´‡D¤Ì õò™*BwÙï¹òˆ>ì3ˆžÞøpôòÇUŒçŠÙÏ–c߉ހë™ç ¹­Eä 8½ó3¿ú.PÜ”ÔÞ´#—¼Yy~bšÔOÂE‚¶ ©ó\ N>^A*ý iö€J£ã aqÀfA?&Jg¦Õ-w’ ¤ŽÏñŸ÷J"ˆA àPë9%r–üÍ®—oGâ’)6qjf„§¢D)±³}¼ÛÚý?¯ö~ÚÞß=ØÙõ œo‘LŒmR¨³iS¶³$n ´Ùâ…QFÍjä8q'QÍ/*;jY:Ë Û•Ö®oüµÂ*ÄXòãà~Bë#µfI SÉÁnA  @.t]2Ñ퓲a¿Yá$€#´¸}°Žä³L2{qªez6IŒ¹;¿Œ©'Ï€P_Ì<¨SØAç£%VÉU‘­„¬žfðñ“¯A0~m$‰³ôµ•M¯ÜTŬ‡F­†²D‚–ÙÔf~µsÜÚ(Ñ“p`çaù˜zÿ· $v ·”ó“Nä-Ú!Ú!~ð˜Þ–ºÅ‘sS1bÕ‘4’ Þ#Rgzluåˆ/zeÐyþ|%VW—öDØ5à®fÄé`B,•G„'¶63”$¢á—“£í.žžýÝãã.:Üííœm±éŸô˜à6J9ÄNréP…@R‘ù˜øqiÆé$†E¥H]‡gmŠ?;cN?7ÅìYW¶¢úßðßW_m¬olGËvšµXFÅŽ¹ØÚú7Oua®ÍÏlP>—5*Ž%kÆÉ9órUë-UÁ?¢Vx>CˆÓ³ø2EÎâd6y—²Z´ýÜM2DÂsX-ÄŠb$ï{T.Mf@ šaCÚpA20{ÈNÓÉ«£¿í?ÇéÚ;x&ü#ÉOt¥U¼Ó‚êi½Õ÷àí}Š=§xËì1sŠ*Þ;[¯,“a ¿%*š6‚dn‹¶NØE·Œ)Íýžû…½¹ãšrw£bwýÏê)lÇEƒ¸µë·uçy‡¼b‰¬©bÈÂ#‚ëU™ßk¨ìœnw"ËOÑ „@HAÐÚû0ÐV‹2ÜÜ´û³hÙkËawìqU’,Ûe-OÓ©Ü 1Œ ¬áµäøe_‘°6|„3R±“Șæ0´²h˜ˆñ‡´¡YçHxÃÛ"ƒ¸Ue­Ìd6–ØWbgŽwŽö^žDG¯ŒJöä"@¢ãÔÜ Äut¡’MJz#_^áŒãÝÜ—ì Xõ5½= Þ’ÍHœ—<ÂáÔ£Õ‰+“°ÓpÏ †W’±É3Vã¢ýGÌ"[Ô ¾‘’ª9Uòµ.Y<0Ô°ùÒŽ¿Ít¥ÈÁµÊ:¼íxƒØ—àŠŒá5fl’G±v2ïDO§‰”mè¿&í¨ß4ºQ¢é´µw)3yQ©{A`?Ç„ ˆ‹p%›M&£óx°Á.Ï2ëîo´NÓ©ú@4Ë9èŠá ÏéKˆ—%—ñÊi¿üê«õµ§ðã2ÑÈM9eÆÕåM…Vã˜D®—&C÷MÐíªÜü”ì`³iÈDÌFݸmwŒÊ(†ÕnFÉåè)¥¿HÄ-°‰¬ÿáÑ {PÝõåéhy"fYO­á^ù–û»7„¥GËäÜ.ëö±Ç€7? ¸è ˆHmÒÂû]Èhâ5C…‰˜@A`r.}¼ÕÇ©<•ˆ·á5õ÷¤ësÎT=gRY4¦'ÜÈ%C<¡·¹säñ¯Æì^cñÝâæ@ÜD»p¥î •ïUvÇ誋¬E#ì4ÎQÃx^êék*® ¿f)DY)mÈGk"ŸÝ4† §EÜP¡»¦È¯Ð›ͬdŸ¬˜¯Š)®Ä÷¤z‚EðH0—ñ?@Ö'÷ÀŠ•ÅÙ=)›zäº(ò¢ÒG£EâÁÏÜW§3ôzÎîÓÙ5ß2ä4«`Ä—¦àé°#úÂÜ1‰Œ-0M:ì\R® ÑpƒøT˜YlÍ)ˆ)Œ¥Ç7{7:¨F)µQg±èb¢kM…ûdÌw>p4X<‚ÎÚë\ ò;#3W¶º·Ñ&¨äntVÃY#O=+n4wưHÌ…|š ñFN£âëñ. '[>DŸÄ ï{Ôá»Ø_iÒÝeAˆ+“‡DŒkg9è‰ dÿ h›uz6„mÄiÏï Ÿ :ÈLà£hþÓaeÁÁd˜ò¡Y§'Q£Áèüºém>N½|æt”AÙGê’d½¤€Z¸máä\À‡/ìQ£„}K骞F°hmè<' ð–efeEÿÌ Zp2Õ\ÕóbH‚y:|²»°¡Ÿrx*)UGUB•Í‚dÄDœ…0s Ü#4¸›cɯiqÉ …÷™k^ržWaŸ`Æ^¬%Îäï”™sˆÿ_GWx@és$¹’_ù6LsÔGŸèÊW»)q¿^Û‰ô"¦€yüä{L~J˜Ñ Y vÜ`¹­'/7‘Ħgit4Bñ:nFÇ0KqV}#ãaüH-#ÉrI§áru´£Ç(\+ ÓC+Yñƒc ÃðóMûW´këVX›Uő߾>î0¾Éݵ 8cƒvŸkÀ/žêŸ”Þ8¡ÜZü^ÌñF2£c?ü‡âÐÞ`/=£±Šqz´Ü@ºÐЩª.Œ½Ç1µB‘€Øëçé$>Ç1‘¾5nÔ0«¨(ÈMA×Eƒ½ÈƼ œÏºB¢“8½âú_PÖTÊ=G—£³QEJêÕÉÂŒ}ä ¾´×=w¸è„äVì2 ©£Ù ¤Uß§JÂ!£!Š3ËrB¶80KÀíeú¼f`ÛèÌ4Ý´4u¤MÆa±…ÝLTJ¿×ð5à¶]Â\žã¤íK3½ù÷Õ—m™‚­Ñí!Ýà=IzC”R*Çš÷þ·ÑrUÙæãÄ$äd_$h M³Kt£»˜NÇ›««c2šœ¯Nrç\Nî»Ú@"+Q!Ò.¶œÎ“à6ô{݉ùÊ$³|"wÍúZþM‡&¦Ë‰1ìú`ÔË,':þŽoGþ¶á"ªs„4™¶#£ÔœPÉ5î$¤÷)FC’(l ;8ÔY•/r#[ù’®ßœyD7Ÿcr œMNã·¨wÁ™Ê»_M8†Ž&T‰‹îúZ%îÿ#î.ªU«|Å÷Nþ>åÄ9Î9-»«÷*·Ø«Ê)ú|Ð>z–StSˆ*iX–½‡Gñ•xÈD¬!BCMœ8V’@šPÇq^7nââ»iA“ó‰ö Á¥È+¤!°ÈÒ,|’hŽÛL`k ^¬ÓΆnÎGBéÖOÄÄ]áüt€°2:ÖHþ:MÅè”ÄßH~oû C¬°§’°YÜIE=’±ËúIÅŒ•¾¦àæ]®Ñ¶`¹yš5¾Œ§½‡ÿP—ý.‹¡–‡Ž£“Ï0{i2¡°J¦‡7c$*= -9h•t¡[ðÅ3é€ËÜ+sú88ÄØÝy¾»ó7݇¹Hy¢Â6h¿)>9œ óš[‘;q½cu%‹¤Ë6™¹£&KX~ÛyÏEïh+² ö÷"'~-ìÔ+ŽË,ŽKGÉÝ,ÙWO­¨ÆÌsÜ$Î."rü£P]*œ¢ !>ÄycU$‰¢w.4B5¥BÃ1YØX ÀÁv4•\t‡­’¡³¬â,x«X1Pe:*ó‰$‘‰fDZ8Ífj²`ˆÃg™Ðåá VHPÏü®4_ìŠú;J„ËË çÁ:¡sUi§‰‘UçNÖ”’!ÎR%‡0õ( xVß-"}…‰5¾X8cÒ‚IÅ1+wÔˆ,`h+òÄÄÆÕL½q#DOÔrNšq^41p.“kìÀèQyØ$²*w‡›Œð6+¤òG ˜“Âñ_~|ø¢Á«ÊØCüH,¡lFÖ 2² ±ˆf4⤊Œ+E83T=€=Š¿8w«èU%èû.±µu¼PÁܸN‹¯„°l–‘Ïs•ÅË#S•,*ç=ÏAò]Õ4«ŸföûmëT\ÜTBµj2è@“ÔBsfÂsÖ='…«'³jbñ+è3‚ðÊùmrm«î¡=.XÌj`:Ù½R– Æ!¾y4 7Ôµ,*ïh»&“ ’ṓ4]Ú;ÓŸ€¡RX¾~\›ù‰OÃaÉJ ;l }&ÃC¾çQúgãÃNŧì1yÓQ4œ›lß{çgYTÇ—²ò€ÂYt ãìwÁ. €M̉§ÙÔñì§ÿê+2¼¨ñ‰D ÷îlaÈ%Š|žZ¢Ü¯â péÜÆp*¹¾Ä™/Ø1™¤ç°Ëf—ÑÒ·â®ËÞ °ï -Ù…ÊñPMÓN ¬ÃnVÍnúYµ‘ÅŒR›ó½pr†s­!×~ôÚ›k(L(d<Ò]?6:ÿÜc {•µ8‰†ƒÍûŸqe}ß¾´CJ7Ål¸ d›Ÿ\W­¿Zâî\ÇÚÑ2kX=0"Ì|áêb4°ÖÌ©ºÄ@µ1üúÌ;¼3¿;C Íé g0)`BN ³±oºÂM·dö ¼jrgÿÜej¯G|e¦³"1wg„¸’ U‘ˆCÇà¸äãŒ2šr%£õ« ”¿¤Yd.†uy—çû][û-Ç¥Öà†ó¤9aöA¨ÝŸ»Ç¯ŽŽŸmŸìvww¶_î³|â¼ÔŒJ”93g[SCoaÁ)¦!ð‡ã$ÛÐ >6M³Ô²þõ<—ŽÙôì¯r5;ŸŽã¨Jyœ3ß -èɼ:³D¢³”ì\í˜S_Ÿ*?-R1ø+þ¹>çùÆœç÷ç<0çùC7á&´ÊÍŽN. <Ëýu4î‘èú>¨0C6/ Ær¥ ê”yåuÜoä>ÏNéGOw¢û_o|ëb¿²|#Â%U†#à$EÉÆX”Hd9ü ¦]$—”všj×.~ˆ 6¶±ñÍ·Šø¨¤°Â¯µ:æ&x:ѹ„GÑ…ýãÝɱœÀÊ?À+õ¡&ã[.Xͯç<ÿfÎó¿Îyþí¼Ý²æ–­s 瓞 ±!ˆ8Á ea¼îOàŸˆ2úÿÑ|©)‰eø=M;Îö=υij½kít} ³³K”¨¸Iù¨ä:s¼æHT’§ëEó·>ï8¬oˆµÒ„ˆÏN|Àt#ˆÝé%÷ô!]`ˆq»=ªˆš!w™û‹üÚíá…]¾/={Ðb8Éœ7O_à³öa}í ~E¥]¨|vHî/êBÀ­}@Êçþ’® rJÐ2*ùYqœ…é’ã2HÀ@“ $i¦²ÂpKxúãá¼/æ«õyçj}ÞÁZÿV¦j£‡þ{ÿ=lñÉÈÏLHÅwÜ.U!ˆÜÑ~º°Å½Ã‚¸Û‰'ì,¹¢ˆa"CNå&WEèÙB÷9mÞ¨kzpŒÖ>Ä|ÇÐÊyü°Aè(ì„Eª•HH%Y@P€l8U´hÖ7>ƒ¤°ÉJ©Gl´€hTJ‰†R‹|ýD|Ö66k!û䘘• ¯ ©ÑU†Ú%Ìž¥ÖSy5jêáûÊÁ¸øÙ“¼…ó²ž3>–; ÖäŒT€ðûL-N·@×+Cßã>“í§È*,à_Ö¿¾•÷Ïå`|…sX˜õ¯éPEÑ ¹!‘áô¬$¬»ˆ×âc3§‚ „Îåfà ÔÂt‘Gá…´9Õ܇j²Ñ€š êüÜ™½¿qëÌzÓŸ4³¾Â93{CfÖ‹|~Û-çÉwc^;gŇҋhÁü„8=Þš”—è3¾w‰ ³ÜˆówÍ«>H$Å(Çç±Xáº×É0–‰úEh © luŠË`a£ÌKfÍÈ[ücÓé©NgÓ Éí×sõ–ÑÏ·è}I“’ÛŒ¯Rz¤Ks]ÑLNfŒSpà­tCêk$®˜×=ñ¾ÏÙ“d¶ifPfÆÊT.gl,™³7Û\ b" ±f_#\ÆÞÄpZ½=$4"¾cBfŽí“ÙkîDw”ü)ÇÙÙ$>ç|I Ò¸n5£~¢`´ûáézÁZ €ºÇ-©hжAŒ¾üíì’Ó=6ÿ»ïÈ·S b©±Wœ‘‹Šì1IW•ÏhÌ_2pöU|“P\±7ŠhÀ¦ºNëУSØ è;eÔkîP²CÜó”žd‚ÈMRaWDæ“«„÷h/ôf—gƒä–ï£Orþ§Vw)7ÒBTQ[ibY±0¹úÍGú[]:¹ ý©ÍÈË`¬A1Þ"´ÄÖÂUç»îÔ%–#òOú©õ›ÃÍq30–pö |ò : Ô‹Š›vz¥ÌXF˜ð-¯æ=ýùðè bq0º‡À à)æH¯‹8• 1Îx«õí©N4ÏW‹,ëDÈ*ØcDe ûO@þÃØ¢ z¯4É&ëŒþ.íaÒùCÖHH:º€“`v®âŸ\"®,‰'$—»b«&’ÞŒÉð Ó3Ñ}!yæ@/Ëx®õ¯)B G‚¥Ø`Ì!S)ÿPf9Çùd†…™ŸÁnùeŠãßÀ¸Oì4Úpò"Î&YÆKð_læTÉ„fæQ( ÚþMT9e³gx(ÆÊ»i ª¶²óíáY%@Ö¾;¤v–vû,u-9TmÛVˆ¬G#®|6¦66øŸ³ü_õ§ˆÿMb0heVˆ‡ýÍ7çàßøÍ7_çñ¿~½öàð¿ÿ ?K_¬Ý[Í.*K‘¬|ÔrÅêóÕta#NóHùÄ1V²ŸmÁ)\k­¯·Ö´×ÖEK@­v*P/IÛbÄ™j:×_Ö×FËÀ’­É¬Š­n¿vvá¢E¯€|.qú7 N';6Vñu´ü¡· ŒÎYzΙ œB^7 Ž~ ‡› !¥Ú•%(dHË‘–Ñ/è0†zvIe^bh šãµ‰¼Ü—0GCÂÌÆ¤3‘„•!Õ#å½3 |9•\$’¦ªSÖ6M¯ˆ‰c~ÔKI©€ ñå„êUt 7ªˆ);‚ªú °ÂVè—ÒŤ¶²‚ª~MÌq,X8_4 ™`{6#N—Ä‘¡ð;¡Ág§ƒ› »ò$a3¡à%™Ó¦ä[‚Ú²„¼5ÆiâËÚCáÈF’¢D¦ŠZ¾ºgW7šwÂ0)eÆb(3ÄÑË…LÙÕ²ÛI¶Iˇl0¹@›}0ä ÖÎZ8öK,_e1ÃÙ™rPYlFÅ:è)byÂ2 Z‰³ˆ…£å}vò|7:>|zòóöÑn´wŒ Î?í=Ù}U·ásµý¼Wð«“Jm°ÃôöÁߣ¿í<»ô——Gˆw—ôR´÷âåþÞ.<Ý;ØÙõtá̓ÓhïÅÞ T{rHMJe{»ÇX݋ݣçðqûñÞþÞÉß›PÕÓ½“¬÷éáÈ”/·Növ^íoE/_½<ñ¼v»£a—iÇÖY<È’Jšu§È0A¡.ƒè&×[â7v]©Ì0×áVµSy…lFµµèõáK¤àoÚívôºuò&:>Úyº×Ë“ãüK£I¡¨”:Æ¿aìîÀõñ÷9e[S_ľ8¯xßßãrñÉ^gÓKæ£\Oá8KgÛZrcÈäÄC…‘°hÛô†öȽC¾>=ÞY¶•ÊáX8šjµ0M9ý Ûx@¦ÄÃÂSR5}@o)«9]Y}€yÙLq(ßêÙôSË¢iGekÇ~£t’ÝÏŒMay,Þ&ÑÄùÎD…„zzª«oë깓D›%M‚„Ò©~XŸïŸGÏŽ_½ä÷kŽXåN,ÝfT^º$HþȽ$'£ì%,HïŒ{8òïm+{ Ò;c;8 h‘/[É•Él™š#Sùz©ìqtüêéÓ½_¨,*\/ÇœÁÍÆ VâæGRS2Q7©{Üú‘¢ÝìC(wb»Æ‘œäîJ–qXjÙçì£ëN8ìžÝðI9ˆÅ@¨º|Eš*¶³»^"w—DîâˆäžˆøfˆÜM1å‡÷™ÜG޼W* ôäR¼uFïTÝ:{ÄÜ‚t­ŸHl4×Ô¬¤Óº¦5À[Ô€´µÎôj%/]:4{g¸Dü£IÄ"úÌŽÓ¼p¨œ«ì2Èì\æ—})gç-Î[ø.ùñ|8ÃHÚve[žD´7&’‰·ÙæêêÕÕU[ ®ªÐ¹ªU¬V€ý`[1µ¥¨5L¢µGÀT"Ž-©­£ðCD¢×ˆ=âŒx­F”#ísá¾î7"½ ‚çç”)WPÕÊÚFÕ%uÌ.Ò³©{ƒ¨X#BŽ(ªÖèf¨>"bÕ~p¥.tynÕ6\5ÜûK¶7úŒ‘ÑJ=ª¯D7ÑJY°ªü œýU_á/ë?Èï×õ•†y;Òž¬m:µ9¶±ÉMU£ïÿ²Çž®CG݃,îÍëgG®àª¡$ógfF£ªxVu_gá.jOAÜ×Ç(`ªóšúI(¿½ÅRÀ,p£bzšº§Ÿ°¶Hc_Ç=X÷ pr7)§· U*×µ…ëõz«³Üi|ñ¦á:Ð^Õâw[ƒ“Æœ’ñ×oK¹ÝÎ\mõc%›´Õà¶\Ë”HÂ}½Ò(Ù[l`‡Ýµn-·­è ¼ê*s£ã¶€¿Oý9‘h¶'ó*8âx×â¬Y÷@}§h™¡ VeÁX°¸áêî%}´+øUjFñdhMÑv×ÈÔÔÆ©—#ò,`9µö#VDŽ®ôßësÞÛÛ®ý¨w÷l²ß¬" (ÈP-žœë F£îÙ³'Tk?VMÍú=îY¨™ÊÐ3Xû÷ÑÐ}ðG©ËÊrWª"gŽN[~K%ÿÄ+5¿Ñ+;v£1»Ãx6e¡Ý/{ù>ÆØC¦äb‡Éo®nT-­~Ýi‚tðâ<Û~=K¦ ¯SqUˆp;_¥æ×‚á–ÊNÆ9ô8º¹áÕZ)­­F[‚µe&F+ùÜœ-é'O¿ßŒö3©Œ˜9”YÌ‘„òõG]|o«¾Ì4~’LJïáoD4žNâqT…[ëß>‚þð+UjË|yÍ~¹~ù`=xó~îÛûÁ·+´œ¨L"ñŸœôUÉ eß–è éhÔ"‡/„•ä43T èªÇP§$30wã#¢c„ú.öd]TÝ®”q^@¦8qƒ4áô"|y}ýà²1¢´X¿_ÎÔÊ7š/66Üu÷z­õÍåH‚¥Rv'ÜQ4뎳¬;¹ÚÒuGEDñÛú—ÑÆÚšBR ñ‰|'Þb–Û¨¾\0—YK†ùe´¾¶¶Õõ¨æêz«Ãø—t´9ûjr5·›Ô-ßÏàަܓ^…(ý£›¼ÔP™Bz‰º! •ðËw¡pÛ‰ j“ð%ý€Ú7<Ñô™ßßTM)Ä?™Î²­Ú²ïžz“Xéðæ b¾RI:nT¦Ôôh-X'ϦW=é •’vŽ1Ë!®°—/f|é™Ðê;=/{+^¡ÇY¤ “–Ï Ê¹'}MF<˜\Ï®,o"ðEo#Éüï’ª¥uI—Œß‚öž Jº§zÎñÇVxï±¹¾v´}ðäð…SªˆJ0ú¼œ´ÏÛͨ+Õqæ¹þãÛdØ>æb](:æLG‘dtHÚmÔ]õ`Âî ¤£òñäÅË'{G­Uxð ½K¤;­Z­¥ùªWî¡ÒsŠ[ÿºÄ…¬Ö¸†Õxõ´j>ù¿¹û~µŸ¼_Î|ѱ‹•{u`£q%”¡Ê»£WH9 nv} ¢í;Æ>»JÈ@„è×£É;¬‚·ÞóA¿E|ͪɈ¬á}ëÒǺ¯79Šª[3† Š¢„Ë °¹|3”¥á»‡ÆZé?Ü$÷`g-3CjwÜ$8 ‘<äKÐo3mZšóJ·ÆQ«.B#òÓ Sÿ—uX>ÜÌ÷æÈ`(”|ä–èäì8Ð#Î-†W^Å‘ŠCfÔºl›—ž¿l½ú%Z_ooܧõÙ;‚7¿n?ŒdB.±§äöMIT['âß&‹Ö‹–ë”Qm8Óƒ=û¤ä˜  ð7¶O'I‚Vê¯ÛëÅFÕjé6“ÑÍk83]9f»ïYwÐ×oYÔ 6¯×ÂLñì+t±Ü‹ú?ÀOë‡ j½œaˆÉÅ7kkxɸ2­²2røŠ¨~RBÛmšpƒÍ +òÇt™œX¹íww}þ`ïéo_À«=|Ò]÷³øIþ¢ßS¡UŽ nâS –ŸC^*÷ˆßÃM *wDãó 9ÃóÊðB˜¨¼—â–’;ËÓYÖö­çnÎX{& þiÍ#iØa¦@Ϭ^Dø$¡ýÁS½ì¥›R*¡ßÖœŸÃmT äøb¥9ÞôˆSbq?£ŠÎ…£É%^tî›® š¶¦eƒ©ßÅXõgä¡G˜ûÚkKàbÚqw·«ÂŸaòäAuì&¶Ì¦É˜ÐËàwÓÃ%!ñÁj3Ž ŒÎGmíw“ƒ?«p 8ùV}µnTÞ¯["”™í rAúM=äæäﺮÔàùŒWf¯uf>°šOºhÕ{¦ÌWg¦¦V¯MI*ölKZ¾r€#×i:x¿À’ãqû·Ê1ép–VƒUãßµ¾û"`ÝùÛ"Ëã{¢OrœÊTfK*ˆæ]¶Èçïî–”þAE*òâ>¥^\ˆ =Ì8Ü3qØ"bÚ: “‚wc b”Lƒcoé•Ð6ƒ?+:ì°Êb¼ Ç5¡\5[…]Û‘Ÿz}õ¼úÖìP©È×"¯çŠÖ` µ=˜‰zM*©WMY':†­­º]8t›,àžµü^ú£KsÛ6JÞǃ¨Ú1;©c·’ëV–ÓŒ¹ g•¬v™ðƒ†ÝPâ4BØmâÄGé2…¦ÞG©?éPÃ7Ù–¾ÉÏæ¾Y­•ŒÆ5hêÜbÖÂÏ–m˜½§Â†ù™è}óv:­Ž½É5|†È¶è*š\Ž=ñ«¤œ–W£íGztùó’ë§.î§v­Ö¥"“Ë’“Kú^úp‚÷5ª‡ÁŽÐ¼8âzBvï)Ä×; ?Ðq‚4Cª¶B1ú(“W†£láýÀŒÈÕƒ›Úó:ÝéªÏtÛüc™U9wçp'"U5‹?.#soLW=)¹0ú’b9tSjR-V‘&™Ê°)ì+]dB –_÷6ru›Ñ÷~N–¢ƒÈîì¾—Ø;rÎŒêÓѬwâQ¤l›ì#úÂO*|ã)Ñ'þÃíèàÖM¢(ê\xOèPgÂqwbüE_ˆ¶.ÛÙé–½³ è ‘—(jð3Ÿð)KhZš$ ž¢+ÐTAû( ÷}ÆÏð[Å–åJØqŒ†Ä“×VÚd¡ÝK«bÈàפûòÔùúWõD.ЭÚ}1ÂZ~7=Zðr°Ÿåe}v‡–ïFL~-[;Mñ>e?E¯9˜œO«Ñ =JO°ÓÖBW s)ý­·û;%¸µ¡üÔì i¤F€xkÞ&WóÞ£Eœ÷s¡¹¿D5è%ìÎfmc³ö`³öp³öu± jÙ  ¶¿ àW¶ ½T}ùàݪùº&Í:j?ˆ¼~‚*ó CŽºæ•§´r5ë¿ãÁ…E]Md–ÃæÓ {;0~`d¿x Æâ§–Ù•«Ñd¢[0¼HÄš8øêò½#«‚²}WÎ%àl‡½9Ašg™d'“;²/Ä¿rUYQ”_öêF”ˆùºÑYqàÿhÖ6î•íÊG=0­!àÚaXj‹%Å&Æ]ÄãÌÁ]Â\õbœ))‡Pû i¬®KGKQx%•P™“å9²Û Ih=Åõøh8ÒA'¬-€VXk€(LŠ} ò˜’Á¨Ì©¬1ÉŠ¸#cK™²²ƒÏa#ó€gCÔ\*z͈³ ˜:²ëŒà.\r&Ó&õƒ-a§°©gÙ5‰„ ’í«€Í(…C¤8(•4eá)r:Àèp]gìe©€W¦*v»` èyÂJä‡QŠú9ðÓv3Ú/Ç-»‹Üêçl(_øãüC Ü–}5'V~Ì·U|åQ´ùH úù”oߣ$D]Öµ¼…¹Cy×GvŽXWÏ+;úöüUd7ägÖÜqÍŸÕŠmò,5ì¸ai‘K%Š¡þrû£egåMx„òÕf´÷û­‹Ñè]Tg x+‹ß'ò½×[°I.Ç  ÒO-BžØŒªa m5,ÄÐØPêËÍëÖ—k—øO¿ ÿ<Ï•¤?ƒ®BáW';k¹¯“a¾ \ünTÊâ¿é©|üº=îµÓáŽ1Æx诿~0'þ{m훵õ|ü÷×îßÿŸøïÃÏRôîLÌQ¿7äÍF¤ï—wç-Ž«®TDÝñ#ÿþ±‚âEWš?V`÷ ºúGþýcEãeñ™ÿûÇJåÎófd6[åIÂG¼[Q£EY§lÜÝ$9Ÿ!ª :Ý$§€ÜÑdÅÑ2†Ïl¿Ü“Èïõ¯ÉbâAôäæ«üħm3úñåöÎß¶ŸívÚ=BŠ+û»¼‰}­û­]®&J}a £=ám(zšmF­ýÚGí§¨5ÐÑü¸¿÷¸ûò£~ù‘J¶Ç“ô=ˆ—ØèÉó£Ýí'ݧûÛÏŽôà¥ã+;gƒøkÞ«}ôsö ŠèÊñÉöÉÞ¿üã¶Xpþïoü§žÿõÿ9ÿÿ†Ÿÿ*çÿþÆ¿àüßßøO:ÿ÷7þ8ÿý“Žÿ­çÿë"þË×÷¿þæÎÿ¿áç¿Êùÿë¿àøÿõ?éôÿõ¿Ëáÿ_ Ï?Y0ÿ pÛùøÍ7ùóÿÍý¯7þçüÿ~þ«œÚl9€ìá'”„3tª@¿=O9þÕç™úžéŧ”ÜDôŒI¬„'¦ëÿÙË_vþ§ÖòçÁ¿-Ä[ßX߸ßåñ߬ÿþÛ¿ãgé‹hu–M.¾n)zrHðQ»OöNà>qÐ>Š-ÐíÕÓY:è·âÙÝ6‹µ…?„'Ѝ±­l4›Àñ}¿±¶þmk vÜ·íuÂE#1Ñ2FˆÊ‡F´Ñ~Ðþ¦Bñ(ïQÍÍÒßìŸïüõ€sD³V;cèÉ !S~h#èÁ³Ñ¤”íE<ý-=—cðÝ9<¢˜ù8m_¦ÓvÒŸ}ßDÔ·¯+eXp_·°ÛM¡\GÄÉ ò¬ô¨JO ï•Öö†= ÙB¨plÿº(ÀM<,;¾áÊÚ‘K— ‹XEñQæ®qø„¦ÈÁx¡ö6¯6Žgz_¦½ØEÍ6I<¶[Ä §«d@ 8˜šúDlö“K‡x†õ?ã‹^2”PcÊ×ÌÐq÷‚šJxaÞl>Ò|> @²¡Mì+ÎaÌ-+î<Û±d°`Ô@y“A¶1jB³‚:ú¯*åùÝF€4…Hòsbp¯2—úÒá&R†\áNуUdîÙ© ü˜eð)•åJ1•»IF0=T…».PßiâyŸ‚¹5ñ«d¨àdîÏCnø1õÕÍäb4Nœé*e<Øå K§ñÜ«î‘ +¥MJa2—œ(T÷0‚s/ý®­EÇrz ÿ8Šò-vF›tBñUh¡ä!#´¸Øoß #×SLqÄpŒ·o]Âü n¢€Êœ’KÃÑÝñx' î-Ú†À"f«ßì jÈÑö‹-¡vá]Ügáa¶ªD£'Éi[ô¡õ Q½õjeÌÌ[w’¼Oƒ“Hf‰p‹~¢¥%ü@¸Imùà¿ñ͆Q½½ª˜á5ê4 D#å½j1ÛÔÁjÿ oÛ¶çþ¸NarÆS!ÿv­ ¡Æ²°· ëÂSMyË™aEßäÑ£‹s7qR¬ÓdJ9žúIL jFOÕbTâg-;è`ÆA#IÓ%TÏ'Î@ÆL&ëX… HM4Ç2j9ºP5799)ËâTŽNC‹p7 ZFšÀXÆ“3èèÿâA`Æ7£ÚÇíW'‡;‡O·ªˆå‚óPýä¾x±ý·]þgà‹[Ifþ˜ï§äƒ@›;€ëÛ—FVåz.!®Ä SÂ^µ@nâbB†À™ÖÐE¾…½Ðv™?˜”:ûb1È Â!NÈ+À‡ÞV½ØÝŠíB/:/_k¸ƒ_«¤€wˆìÿÓå æ^ž „)žxâvEžÁ;à§vôS<;‡m…|ÄÚƒÊ<&!¼ýçÜý¿“„–@Ýb_ {=Ö-m*dæáé:ÂûbF;‚HZðÈ#ß)Ü+C^jKW¡ô÷<—Ï^îÛë~Â÷¸V1®ž@ ×ÚÓËÁ÷0ƒ×Täœã³¼Ð½Ã.júGÏÌfÓp<žæ)WBÙZ¯]-â)8ìÀBúÛéÕÑ~ÆÎg.yÍÜÛý½ÝƒãÝ·„ÎéÀdKÒÍzp»ëUŽÞÚkB²Ïh«¿$DdÝ:q¶tE¢3àýéhÓ®À9tyvÚ*¹ ÓÇ«,h®:굚fÙ,ɾÿ¬Ûd“ŸÅ_4ä¤Ç(µq_pn >EppÏ1ià Ðyu¤5&ì{ÅÓ¤;x4Ï7ŠÚ‘ºŽ¯¡×xíãñî“ìÉOQ=»yýëꛕÚÍMý­‘U°vr…Ê’¦ÐU—L‡=æ}YR‚VFðÆ”¼'C§9f˜$.áép‰äæR_¥»Dh†¨Ž&YPZæS\™úc¼ÎˆFe<–6Ët:Høg ÷àã&Q°Š•اèE¢õ˜ûÞq ŠkïŠdCÑí…†Jµã{š`ÐËjý/*•'¯¶÷w¶w·ÖÑ߃v§>Bg”]þvŒgàöñ?ŽŸ«ç+˜ØOä¶œ\ÎDës“{äCy|)øpðjçÅ“-ü…Ȥõ ½¡d…HÔd˜‡2ÙpÎ|>„M´þâÑ|’û†jHà—™ùÝi3>Ñ—ü9‰§³ 9CÂúÁĴΣº«±¾UÇß(£Yè{÷Ùþáãîñ«ÇÇ'qù¢Ð‰·Ëä¾8j„Þp`VH)µÒ`ÿÆÇŠEyL‡¥è`ÿ8ΠgM°‰þX™¦lD?.IS˜2ô³$œeƒV}¦¹íJ÷úÃOºèã5H¶ðsŸ%î3.$<ƒã€uío<£^3±Ã&þÚ9ùûKú¼s¸¿¿}B¾€k ¡Ÿw‚ƒt/ึ¢NµSûXãÚi3tŠá88¨®”ÙêÔä/ë\%ßípŒ-mD-OrãëT]]N*ïÈ“GýeJwªRƒ_ÃŽ¼a¾Å7ÎÒ*{-IÆH\)ÄÐ¥ùÇ‘ò(;pu-;ªUŽ–6P¨óб—tŸ¸¥ (zoô’]XçSÇc\azÆQ E­ÄvYõœtï´F»¢¾¸]løS&7·üÄ:º±÷ôXØñ .2¢?B]+Ùx«…¨Èµl|OA‘™!"XÄ1‡ÀÂÌ?!o‚#SA"L(×Õ9õÔËí“çÐ"¼OG“/*†á#~Õ=ÞNiûäðHhÎ[¸n³…eˆ¤,ã³­:ªÎá?õGÑSzTÃE±Ô‹6 䊃IÉÎ×°ùY58w¼\·`´ôkÃóO@ùÃ^wF[ä§m„Šï ä8„þ:r¥ðØc?L¹L(§OݨcΤ)…‡"œ×{  3lý–LF’¢¯DÆ;€i†w,ZU¤l¼sß´ 3©É\Cƒ¦yš$'RìS.tÉx”f#Š—Â ¶®/DéÈ«W'š‰ÐáªcRµeô¡¥[޲rÁe0›¤ˆ‚Äá Žßs€åÞ“Ž‚™çåF壸â=«­o=‚Ë ÿäµõÒ ”@‡ÄÍ}0IR3‡gç íc°B挷½þ[ŽÊ7Ót,¬/è&×Ö]ûØÜm>ýôìh÷¥æ¨‚«#A‡Vó&~ÝeÐãã[ÄHaYÐorêe{t›I|ncŸ±©;ŽßyÞ›Ô'"àPgƒ¤OjGf~¬Ø€[Fn|Ó?ÐgYz5]Te˜ÌáÙqwïø$¢äƒÝ§¯v¢×8áoævzîPŽ)‡qK¢õÊE ÷ñHÞ£6“"‚÷ih†šx¤úìàU•Dd4|J-PMo¶¡)úÙ i§™çË£.3m¥“˜å}:¤Cžñéñ³"ò§oL4r(Œ]VÓ Ž¡îÁ–I1”ÏDƒ0HÄrG5šz ަ¹ïJú=ŽL˜Nà[J8Cé¬ùLP2,Të@x3»uë^ÆL®:ÙfYÝ–À·ðIxóéVm]r?ð5Å8…‡LÎ?ÞoU‰¦£êEë°- Nðø 5à‚„"_ÒM­!×8F:w}µ6Å­™¹2§¡òâ"¥éeSg!¢‘ߦ]Ïn©{µÔM½$¿liÁOË#‘MÅáxIîµz=jïþ² ‡¾%m¯Öl+5©Ãçn5XTŠ}ráßþ=f®óeýéAªü6°¼'Á%Â}!{n+¨«l!7£\P2F× wê·N¸)H"šÛbùîçw‚¶ráϵbï\äxtß$5÷§û£t÷ø½SÞåªg}Ðj8’sOd¯øžÂ•qÇ03,r/½#vÁ„$æžrÀL¸a¯OЫ["¡HÒuZc¨YSþÐGšáõµP!n0I ¦Í|—Œ='“ÄCRãÅY¡`Ì“nJ¤c– aj‰ÝÉå‘Ä¡ú­¸®‰¤(aLÌ`ÉLÕ›°öçÕPH+‹ö"#ôI*|Œé¤;޾š+…M)„3+º¦Œµßs¨(áÊ"”k»â×q Œ;#éw™]ÚÊVãÛVOoûÁ0{!=)®ãz´ÝD£¯£o9 ›®A’TÜ–Rðm.‡&åÛoÿ}ÞÎ(|.l)|þhâ›Ë;ò±@çñqW¦è•»`ŒÏ $!^¹^ðQ"µ5çv’‹äN¥ ;PÔó ¢÷IÅŸKS±GTóƒ§ ?“ªÌa<ÿÛœ˜»œ„‹×êôgkYb)Íp£Uÿ ô?è6 DGíÿ-Ò ún·˜àü§8KÀ¶œÇÉ„!‡«É3È‚’²ÈYYz6N“ÊÙ›æ$ÿ¶Ic|§í²0¨¢f!0c¶9TëIjj?Fu`biSðÛ…MŽßÇé@ qbHÕׄ@ãÒˆ›ÄÎË­*˜–zGìî'²Ž{^òÍÓwܯ|%‡rÆqP*br “Qº–Ù®¤^HHa´Ù N)› üUL~9YÝÖmwÕå‰ìÙÔ,È;ו+ЦÀ×¹£^ SJÉP<ª¯•Û;`¡á gd«xæùMÉÕÄÉ%ô}‰‚®òÀ®3³ßVµ˜Xè ñuä+¿¥}çþ~î%²NóØ4ƒ³.ƒKTMsš‘ó3cŠ©§áã‘€a»°Ó`)ÛÑö5Ä(X¡*»é¢DÐuu€vBäþ% wžó“ ;¹Ü—Oä4Uª„ ~gˆ<Ìãˆr¡ˆ€©0Ù;é¿ÚÙÙ=>ÞZãO·÷ö_ín­óÇ{Ç/¶Ovžo}}Ÿ“ýmEð§: –Ö°Ÿ’eZ­>—iFü~ 㤶¥©¿í½Üúæ›{®¦o¾)­)&%ýŸ&Œœ¨>×m»à² joF 4Ëf—¼~¾ÁGW™!f;ÇÞ‘î}Ò?ÕkýätvÞí]öëêA€Bä;–ÖÛM¼_©sºwN‘ÜãQ¹€vœe›NôЩeäšÚª‹–ü#Úm¶_ì¾^{ó)ª­m¦ÎÕbË-Þ`-ÜŒÿzí£û»UÝí8ôÍ&NÏãk3Þ&‚s¥RŸJ‹A·O”ª`gúBa=uÀh'6epÔÎYÅfe5ËHµ(ÛJ¾WŒùèψg{£Ù){š‘SDɃNÅgd<"A¬|K~¦?[5»—ÉEçnBÆ/¼\ˆås)² t@“ ´£C÷áÁWMŠâà w'£W3»°›Ü¶1ªW/ªŽú È0»Ìx¿—î//Ÿ•ê\º¿¢;8Lâz´ ·gƒ/!‰²Â;Ê4gœgÑkkMèâp65Q! $ê¤eÚÔ£ ²U[×0SÔDåPA’YßÖPÖ'0f~µÝ Í q6l[}zňEYþA‚gâŠà¾@útClVðZ¾'®æu¤±•›×Û­ÿˆ[¿½ÙY¦!l %y^ð-Ê °¸£"žkR÷V¯/¯¨Ñ~|Õ7ex²äûÕšN °Lro!ªû"7çZ‰åËy8&Ê{šBwrúoôŒi¿ˆy;žÂÁ£((¹·1o'–syUã³3L¬F.¸c ¥eÊž»&åfDBÍ I j'¼^DÜbª—~‚ ©Äw8Bƒ£ƒÖbÅ *T0©8µC™mA»ýÉu^Ÿ˜LÍg¸¹NÉÐ,G þ@ûçìT‡cËYáê@`“º˜² õÑ©èPÀɳˆ?@S ²D…‘Ñ¢Äçq&᛹Á’‘izHŒ…q¼çÕ|œ0Ï‘|Ûí¹ŽmÉÕâ’{k>{)Š>€½Ñ¤/¼FÇ©µL¯ÇIV§¨¤æu}Ž©G*¡Á¯d@0­•Ì>Ôá³xºœ fš©ºÄH8:’³Ä¢N†^c8c?,ò.rÓÐ…Ùîúìõ„¢¥€?t¨aÇd}ðþŸ G T–¾£$²}Ûe:¥k%eßÐÙ)îCº!êÅYšG m¶o±˜¢í´+…ÉÞžܦÙ,6îAÑK"’x¥5ޏ&ZæO!±¤oI†ñ€÷ðXi|'ڋ嘙5ä.(ù­s+áSînLÜJ>Ĩÿjo¢>é¨÷Ç›¶×d˦. …]÷ñBÄC„vž å°¤6œNö×»tBTŽØ¨‡5#©«°·R÷=ćA>(Ž à‹Ž²O£Ëê¯FHQ4˜jy· S¤AzJX¢¶>/^ ‹È—ô£ON“kÇð~¤Ý‹<_ûxL ufe—2›¤û›plZ<5ãáXf¶0|D±»ähõCÙÇm@ápe;ͱønãŸE§jÁZ‘Äi#䬌Q! K¿¤‘P¥c[Ÿ÷…wRôòAŸfa¦]ã‚ôûpÿðèd÷èm¼WÇ»Ýíƒã½.=>.7þPü©«ÀÇ¡6=ñeê cÈ\aôÁù€n?JÔý©¯8T²›Ó8`Güs–¸2MI_ýM°€BãIn$[Õuõ¼ôvÕuÂæÎ•,šRÝÅ¥"Vlûº‚S\èÃVýÿ÷zí²nŸãÀÇë—õGü3|ôAHÀ§ß„…' •½ï Ÿ‡9¤g¹zÐóTžô®c.ùµ+äd1ÙÿÐ !›ºˆÍ`©DAYÚ]{:çoI‘žOÖ‚ ¤À·/˜ÿÂ[ûuX“B}:y¾ÌÛ°7‘5):¿…ìDò\¾Ü‚ŽÂˆâ3t=+© ×.(uk=¥õðŠån­éAùìá ŠÝZÑÃÒŠhgÅ|E Ý,6~9heíVéS4ãv.»ìNg}\B0Jâͽ.¹ÐE+†Ò>iàÂav]Rî¬âݶ}´wòœ®6¾Œö€è•ÝšS[^Þó+ø¯Ñ¨¨þ|ut1Í¥]®ÑRÒEspͰcßÂÖV {%”èókÓmñ#©»CºâÖϵ ¤¥ÍQh(‡-¢[s$3BÊ 5 ¡³¨Õ:ádh«œùmŒÂè¼)…{&Ôˆ’1Â@2 !Ä-æÒ¦,McÌ´4rÚxÐdœ¥1§Þ •—êÁtqäA÷<í'ŠLâôWx?ÃF$9vv{£w 3c@afC'XGÙ5p˜•èžnÕ˦l«öq}iieõù€”ÊsÝÆÉ­¬ê 3…y÷ËÕ•Oµ ™¶EsJß×"AÖÙzåîlJÆê‚¹ƒqV–õyv fYíÛ‹¬3Þ‰û—ZI=Äcþ•ä´åsR&Ñ[jVò–¿¾‘3­Óù1çÛ¡¹¤¼Ûú´Z¯À¢»ƒ'MðùÙ~ùr÷àItpxðdï¨{´ûr{g÷ÅîÁÉç…:£-X_FT¤c5ça+ ®7$î÷µá€Ö"D£ß¨Ÿö§½ØÃ¶ mqáLôËg‚ôð9ú³¦%?G/“ å¢W/Î-~DU¡*øŠVs“8)¸}ƬWB\×¹kPº¹—ç¬GXˆmÐ.B=j`iîÑk:›nD¨ÿ †3·ú°ö¥Àê‰'R‰Õz×”×R¼…ÅHÎEKŸ®¢Ä“h}Gœ:`¯ žþ =¶$x¸²n®[ê¼­JžÛGÏÊ™ô6Ê,@mIzà~t™d„sTñ5Íí\‚R|«¶b®u|+´+Ó‰Ú¯A4Fªã Ô’X*“/¬Áœ÷@M*cÚF-‡5| §¨‹7ÉÜi’©Ú#ç i–ýÓÐC}‚–3b [N‚4sFUûy“>¯T ]H‡0íÝõhïàéÞ/‹;³x›/W'æ_€pŠšÎÃýÉú :Dß±¼^Bx¥Rv@Úѹ›¡Vf¼ÐmBooÕÖ™$ðô¸¼=Ùú©„>¸ùü*S™Í¨:oó¡Sõ²a!¯¾÷à³!±ç Bš çÓ »;§=¦ªÙ®òß§”ç“þTUrUKé¤ÑÕò@väOÔªê-Ø6¨ÅœZžÁà¹ç@¤ØMd¸bt@õ­­CæØÖÁ|=ÙMÍ5vssîÞÿž(_™]˜ê[N«¸žÝ´o¢›óú[àœªÑZBì˜l™¦]¤§é´ ûoªYž”ÈÞûsIŠ©4GZÜÔW cvƒÇ'ðÛÕÏÀBJd¶ä€œæS€;‘mR7«Kü Lí¿ãð)¬¥Ýÿµ¼û?QÁa_A;Hëq±ûf»:'-/´9wÌ$ÆgìthNíP(p÷——G»Ç_HlºIÞF½] šAM—àIhæéб3XoÓ¹ r|‹ŒNƒç¬+E¯‘èBú–|Òa3 ÑñÉÑÞÁ³â¬p årº¦žØW~¿-¿ ÞœáåØ_•/Ÿèâz P¹^Dåé‚ZäÃV¼zºÚ{dIçCB’XíõH$ÿ¸ôáSíã‡/Iö„ßü …Xü…¿«·©Q¤õÅZ”‚Èoø8œÄÛ”~AR^ZÿTTž|f-ª8YG}Zµ½’O'ËaÔµËøÖo,­ØGÀ¦ïîœý½E a·…ÄxßIV³£GˆCt ë œ_dój«‹8LÅŸºî²cߺù‚a™¸h,ZxÏzm"Ü_µfœàt%ekQ ŒÍrÐW×-K»8UDøzKíî^k´i•%­•FÉ`Ú«%ojß©Ÿ)&ŸìލÈgB˜coM»fÿçlÊÊüáH~MHÜ/š‰´-„ü³Æ)ŒÆäçÁŒ$¹Ø %:¯5ôJ÷ʽ%}f%ß_¡3ÞBï¦ö`Y·²ÅÎnÖÌ÷6sðÞ™WÜi{ÀábÌAL¡#÷DÐÍMç FàÖ6~þR²¾ëÑ#Ô+3|’"°†sgÀÛ/&£«(¦Pô„¥è›=E™£Ñ87r»?,Ó–ßÏÂcµ’9Ú(3,;¥¹*é¡eØ6AYeilS‹ÐÇ´^ÚX÷<ûcê1sFO9´ÓqË%QŠ—vs/v:áWÄ €´ñÇYâä㣨‡Þ–‰€Ðë`Û‰5ap­ùíMbV§0 ûà ÷ebº NZŽÀnç¼|Ôî4?Æ¡âeÎá„ËèE) ˆ%!6$‹¼Zì7Pè!U~´±s7Œ;T}š¯í5ÌýÀíðÉÞÄ õúñö11$ õnˆMì“ßú4ÅWäõ×£cɆ4v ΪøDAnÁ™µ# yQìŠO¡ƒ逭Q™œ§ï“a3ÒkœS°p´]<µsší¢› Ë ¼.\ã'/^Âi­N/ÇŸVk×[N@úÞN›ÑœËG7Æ©Àì:‹xÏaë4e¼T)Ñf¨¦Õ/Š?îSê=ÑOíe«Vc®–ܹ ÙäÁ’+Ì0£¨ÅJìIÝ8BcE6-TÿV^ÕÍçšúE~‚ƒâhŠÎ…¿¸¾¢?ÞS‰±Á‘#*æÐi'xQ¤ÕGÛO_8Ó †×cØž!ª¥“ñ‘ßk­}‚y Oˆ[ýîì2ÎÞm½¥_^¨¦æ9+%2˜\ñZYÕN[,ÈURŸkR~}aŒ.O‰lŒ†bTF¤ ·~Ç‘ýTvPë¾6O–°!ŒgßO3º=oá%+¸í/Q…ÊQãýÖlÌQJÙ† Ú®*½EGè •ÕX¸‡ØçLTQ~ª¶‹E€);=›Ã”†’]™˜xK(An sÉ¢{ã-*.fd³G«[–j×[.`Ûé¿ H£é³›_o‘9:6\Íõ›zPª/¥¨Ìÿ’ì‹I4E/öl«¾ fƒÊ½{ÙÍj§½z³zƒˆ“HRÌã¿J‡Œl$f|Nr‚§PÌSœ8Ê2­í[¸züâ1E¨_GCm£ø%3QTæŒÁRÛ 7Q°ãWKæ%˜–íϘÑàÅ£.SÄwáa'‘qºä(”Y: «óa¾u/m‘—ª£ö‚T‘³$ðñ³³3ÚæŒƒ&¡wˆIó3Æmá<Ç¢£]ò€~ÓWÂÌ“MkŒ¤‚$×IFqÜð¾ËŒâ+áôM(y,Sôÿ“5ÄÖwËDèm:·ˆÑü}±ìW õU÷Ãó)i1‰Èªëб‹0?÷¸tÌŽÓø£+* €æÿe[Gx×ðÜœSñcŽàñ±HõþYp}º)°Ú/{‹Ò¥lOâ.TÏ¥5£ô|ˆ†:Ôàû·Œ/Q»V÷’„ sñˆ]¶X ¤,Fß×-¬-v;¿%Ô%bánºÛ>*ó](ËJ8”m‚(̈xý¤ÅN[ Ò¾DÕ9ÖU_-ë™Ãw: ŠÅœâ„SË]LHýۊѼGCb>®oeìJ»go°ë S b¾Õ¦³Ño‚R9Œk¾¤Àã°µùÆV‚˜÷§pé¡ô.ÛÆLnØj\Ä6c3Õ¦Z…<†‚ÔÒ ¤·ã”'Œü€WÆë1sÁ©ÂØùØE…OGRÅ•A£@î–µZ›vŠ'rá³Rôøh¥Þ'Ç'ðëÎNÖŒÔTp¦5lYi ­ ÔZ»RÒŸÅÖ½²ç œôcλSÎ_¾qÍa/¯wc~½§K²¸^Ý2tƒrHå’TÓÍ÷oîÍÞ3@fxÁ6–c@¡¬Ô“"¹/í°%õ¥Å¸?!¥“61U †;“0'n¹jX‚¾e ÚÛ9G[ôe¥´3“‘g"ß/ÐUÔ]Eq¯¼ÏWá™;Î[¤À2&¨l›y Eg"¸cÒ»Mu0ŸÁmº`¢n™†à”ͽKo›]”’)XŠžS’<ŽQ&¤ %^LyÓ/î:síÕù‹p[…e/Ý;A-ù Vëws3 $è`t…^¦=ÎÂÈâ3IüˆZæõ±Ä$À‘Bž¢ƒzXT‘,ØÅ·Ðò‡%ßÖê‚Æü:pƒa¹´‰poزҫN¹²B]–g9È º§¤¯wÞÙMQEõv]=™û³=g·Ó‰ü¤µqÖî°B¿wR _°¸ŸŽ¡šCÀŠœ Ç®¹ßÝŸ¶÷‘O¼=²po(±•á­=Ö\z.>3R׎PÙ$¦”+6†ÚC@†®*vóÆ=Çðx̪}‰ µ¸ ¶rrˆˆ‡Ï£4å¬ÄZf øèpù !iÑ? Ã1ÔB©ì‘97ÛöÐáòzC¾rst»·Xô¨?oaunlèÖZBàE-´‚GËIœ]3EkÎe:™i:"¯{¨­—Q”·çäù‚p9boµð¥¥q±Ìi“Å©¤Az;pÃJ•v7°yÝétÞbZÔ79vå)¬¼‹.ôv›"ê4ãEøÓ¦K‡ÈØmÔç2|üÐU:è÷ŽÎäIóïð8€®ÞqŒtNWn`¨¯;+ÂÞueç—©k­?ÿ¬]ð·¹ÂùûŠÙ¶òwn®'£A?²ÆEÙm§—2¥u€¸¾…ÿªu„_6ƒÔidT9Ù>Ù]Æä’/vZ®m4"‡Õ¶\»Î ƒì}W­Âÿ‹LHùÜög——׬D„.˜a-R¥7‚êÆ ¿Û•œrØ+t™_{ðZn"t®ç÷SÄQqùTr3—oÏjí¾¤ g’ãEs6A'×NÇÍ@á\¸ˆ¢Ø/¬™ÍíÅ5rý._§ÛÛ¤ŠËÛ,ŽæcÈ%˜‹Bÿ©ÂGïS~,æ‰%Ìg”Ïþ1÷ª™ 9>ä:æï°»Så¥ ÅØŒ›L;óÙ P¾ÄÞ¾æ oú·8¨ïêà\.„̆ñ Óà–YB´4¸L 2Áo¡.ë*Æl´KŸBß%SÃmþƈqá‚Ø•©þˆ0>쨄  Q/ç‡D4üÿv–:¿vþ´|¹Óè|ì|êÜtu¾ë|ßù¡SïD{o€ØÃV#¼`{w÷Žß­sâºé5DÒè’îB~ÏH JFË©p~ ÊÂÐÄ…À÷B¦/ÒVêè“€; `Æ|EÃô%}¨ìH6z”Ž&V+é°;þÀNÈo—?l=ÒN­÷чèË¢ò#vñýP­}¨†ùãŸä_ê>Ûïb¥]~ÔδŸ`Eõÿ‹×Ž6Yïüߺø=—”·’BÙT/óòj4‹o½¤°2è‚Óº¡W´ ~]Š3L>ÐŒd=&usŒ‚Æ=ò7c`lO™ŽF[Ø]{[r¯ÀÜU9~™2ýòó㽕*•PEóü³§4W#«8ÕÀ¸Zô²éù8ÚæÇý»Gz¤ûSõâðÉnv‹°V8½œG4K Tè²Ì59œ ´- ñŽ$Îè%C“3¥K‘|[¼}ƒQvõfݳÇJ$œ˜ÈRy†ÞÉKžqDnÚÈ Qç@‚VÃŒ7Ël†H0ßH£éó%•ÞXEZ¬?w!jCèXÀç¤âÑ·{ Hîƒäm[½üÙŠ'°®íSÛ>ƒIúâh]¡)*YÝ:Ž®- ,fÃø¶\ ã-0 µ½Œ÷g¿n^Ò$/(sÝ¢;¥Âê/ÇV‡1RÍþ¹H0³=Gé4£´´«G”©º†S™¸Öu×\¦ç6púT¼uhç’Ç-(nmÌó®Y®ÓwÉf$híA+¦:lJâZ06å`SÄQØ» û*xdKfýÌÇ“QÖŠ<@Pnà †”‹TSgzH kƨț‹wÈ.»Ù0 [þÎåµhjƒ"ÞÖÏGR*ÑÏM´¢ý ~ðyÙ ±[ð«9„§ì9½\ èT£’|N…aÝÌC†$+†Ç\µùJwðs§ZÍ•–ÇôÆJðMu¥¬70 Tö7LDö¡U»þ„ “êo[¨€x¢­ÜD¹ÇŸ½NM>’‹– ›‰J–ì&ºÃzÍ[±Ò§…qG:ryŽÛ=¬äÆhóÆóS¥IeC¼E³¶Þ4F2Ms¿ç+Øtß|¡Jk”ÙfÛUºÉ_YÈ}S‡mÞB‹äÁÃ>‡›YL$Ê«È/tnriO™ó£WZ° [ÄÀœix…’´b‡<·óycÍó8wI™KÎR#x "X¨yRÉ3VõL°y…ìL¸Ÿña­F¸T,›ÔÔˆ·÷pÍ6Æß|m&*³|Ö–Œ:w¨Øc-l§jÙÚ¢möXŠ·ST©î§p“…–Å€f_þZ[ÿò˪|À|„µN ž¼µH€¨Ò\…"9‡â*§ðý±óâIôº»¿¼\$'gT²{o1ŒS›ÌÁ†>ªå\¼Ã&ùÚqúð§(“àä—€0‘7$0Va 9 ûHc|üµ·Œ;)asÔ¸«ÌÁ)ø.Š£P.T›BVöÐF«¾Yÿ´…´éX®Æ"’Š_”8ÞÍ£¯Ü'c‡ÖbÕíÈoëæ4ˆ’¢)ïá ÷ÓPtä\DéÆ=®i™Q"Ü×GôAGœ£öŸò®3ÙŒzñ ùÌóßoqÌ8KÞï‘}áa«t&ÉaË'çï¶ÐS÷C^ƒË̲Ä ÷‰Ù…ìɹà†ÿt×}ˆ9³e•{ôÊ­›Ó¿œÅg‰¼œg‡þ…;w:éæò¥Â‡ôA!­)¥II.¯® !˜‘·)üožFœšR>$¢læjGÜsiSa®¤ÖoÛ­ÿXk}Û%%Ö$¡$ŽÖQïÖÛÑÓÙÝ_QCOžÀNŸ~ôÓsˆ±0ƒœSL §O»J0M‚ï×üM™S!¿†½YAûõ¾‹ÞÚ]jˆYén¦z¶úkg™jë4V»õÕº<~ý«©wµ»z^Wc¶ÜZ+ÑüÆäìÌZ$ÔBÇê»ùUÃRieÈÇÇ&3ªÏûSk©¿üÅxTd• |~ y“î°¶x(š¹é6È¥bëü’\’ŽÜ¹¤ÝÝÙ>Ù}vxô÷»ÍÁ‚èg.RYÒBœÿ甂á`˜x l..íÂÍ'„'cté•%κ•ùʸ””Àe‹®^B.‹.*2K2~U‚iZáë#Éç4Ñfб¨_xBReI¡ªE±FbQ _­VH ÚN‡@½S¿Rá5C7ÕCx™H=ç,qÝ+ÌK¾w¦êgͦ)ó! ó(H6šÐÙ~Ú=ZÇ6ZbëX>jýT×…=O†p‡âÇZR;DqIÞcž«Œ%[\MõJi&i6Vª$i­,9¬ŒØÄø,Zo?Œ¾ÃÛk’$YŸ?h?ˆé«­ñýX¬»óL¹úÞ¹—ð-!اÎbNRñ5òÚ+òù›f,+÷gpvФ¬qQí5 ¦pÆã6¦Ãñrø\Ÿ–Ÿ|ñ: ò…Ó…¦zîæè@GÅ åäˆ.t¥]žâÃYá6ÂÕš{ÄúXÿ2ë ñ¿ºS—«›ˆWîíÖ»h½¹>ÄßÍ ú}¿yŸ~?h> ß›é÷×ͯé÷7Íoè÷_›¥ßß6¿âŽR¸2î z@E;¯Žæ†ŸT¤2·xåÓ+¸¸øq ©¦I$¡]rˆYê”ßÅ÷–T»ÂÚ¦lŽ¡!mÛY„MLÞãŸUF0El€>V‡Ö è´è˜·¬OÀ5ØŠ>¼ WÑ/pëÿ|+‡sYGŸð ox/o2£&¹}QtÑbhCâÑ7#<¾ÈFnFËq¿ßºÞEuØl!s/OȽ®†Ë1ìü§–À oFÕõµUnE6æÖ—›×­/×6.ñŸ~þyþ£ÀOvªaôço£!bPÊ·»Ã>Œà‹hõ4®¢/*ÆV©&¹³ós6L²Êcza~5µiÃñ¤ýTtIÅ~”rÉ×V RÖ›;˜½£~´Û“„¹šÔêÄýSdƒ\uºMë­–ô¦®8s mú´½49ð˜3eãÕÀþµ°4SŽ·&¹ Ù+Gòà"ÊšMÛYYÊã*Ä—Ó KÆcýÞ‘Àº_ÓzëBR·Z°—Æõ’¾“«ÁR—0šÍ Æ NU=‹Æ³ G2EèÀ! ¹QB~ŸRÆò|Çqû.sÐ"x —Ù'¹Ü¡02ºöëA®9bnF’†¯e—³É’L“ iÓîs¯ !¾M¤¡áà`fMP‘ºë.w| ±ÛÈJaf§é­Oì„•ã| 5½ƒÊ0rKrNB8±¾â2DðMt9JÏ)`õðãUK&ØqJô<æ9R™cLûu);Œ—þÔÉõ›ß·®i+AÖnŸ_A'œÉ¬ç¨UsèùôzÀ½/ ÏX-õGWÃvIÞD!³A?Ê3& Æ+T„š™H™ÌŽÏ_4‹ÓŠœ/ãŽF>Ÿî$9hjóÜÒ£K‰Oc"Ê”¡ïñ=Ü\ ÃÕÖ¤é3ÒPL;®Î(˜Ö$dnËqz2ÉIçÁg]tܺ­Ú4|ÜÉå):jGvP!ŸlÚ_λÚOL©Ž8µUæSw³¥2O¡6–ó%åÁ[ƹ##‘ 0.”È­ö§‰d2#ý3ªX4\Çå=£¬Ìd÷oWhâ¶ê5Íw½>|y²wxðh{®ý $87Võ—ÁxD<ȨH/Q»Ú—%C($n礥»ÃÝìð’ÝÄ︔áz΂­Öë%˜†“Gâü«.\GH|‚ €øv%<½Bßð•ÖÏMxE“o©ªÆ8¾ÚḌò&£¼B8.˜&§èy ÏÞPõï±zm~äÃàZkó¤ÆAù®ÈÉÌŽC/ ¼/Õ×µñÔÔ6E+§?übFKŠ5FòKëÞ¯’Èã;P2jöPàÓXæ»^ܲ*ØHÿökSù9T9¥DAˆvîIœŽÞý 'ÈHïÊq^zýá;ììÌ`çÊ1p/¸U£PcÂ/$=IÏB8h.žÛi¢y$W^JÁ…K‰N»Âr8NÀVõµké)Ñ µe^B²(º-׋Åh!âÖ£¥»g”ŽlÞÀbKÏÿÖÅwtÐ9ÇáÜ()k±«Kwl:U¯rL^é £¤L5†Ñí{š$èÏKت:Š*§8¥Ê]øŠ~©äµØ¸“‘›œ»h³õj¬½û _ ¼ñÜ6n—h´Ù¥Ï,HIŸº¼êÐô¦C²˜5ˆŽö‡Ö©e1Jýª8öPOGØwñÕÃÙÖ´Ñ®}‡_ãû¶8Ŧ£K®YíPzM~ê2Ûe7Q½¶Q¿¹Á¬vfP­#j£ú§¹¾t·Íßï8vbÄCÀyê:ó.¦¯0­t‰bM»MõpJ­áÔ\Ä@ÝRÁc™´ÂHŸä|q5zò•ž‰54¨äÓLSÍ…¾‚î~ê Ník¬iõ΄b†ÿ¸¡Å1_®Y7¯V…Õ$óyîni ‹?a:6d}`÷\Ådß›N®ÅlØ# Ñrn›tiŒä‰ª$“k 7±‹\K&¦ ¬Ñ¿ª¤G"ýÃ’Ø6¥jæn>²>‰µæëœáùõ•¼Ëílˆ,;ìg)ó)ïûJtH+«;ÝT}Ñöö/„“îUj‹ŽEÎy·\æ*ÍëÀ¤_iè][Â] ÏŠçs81῜ö • 7‘tÂ{ž¡¤Ž±b‚5Ú|ͱXL‚R™#(º`¨â`C¨‚<¾fÎŽìI”ôS†¾VË©Ccz­©¢4v.Ë$‰*á­]rü2ª}†c‡ûit´õï°I¿«}èâ!ý^&¼Þ” ¬~N(¡U^¿uK=žò£â˜LµÓ´Gv_Ú¤p!VÈÏÊ9Å/Ó%ûˆÚ®:R“0‰älèj÷ùâ±ÐQL«ˆº=W…‰ò¨=ŸFktå˜Ô¬0“Ò|Áþs£1A/¹\uóÝ´²9±òǭͰXðÌý¢‚pÍ_¢ýŒ~17nËXt1¼ ¹ [ú›Ëâê¡Kïà¶aŸLø£º '…K.W ÑMôµ˜_þT[åoÃHª9ëÒœ~äW&÷ó»§ÖLÎs˜I¬d·Éy»ËÜ‘2+toã0]–tEBEw ÔRäÓçêÅŽ’ né2 JêùlÃöÇ®£ôÜÏ»lüG.¡”­ˆx=÷™¸—€`â¥F·“½™CŒ±=ýMîR§Jv±év~ŒÂv™Þ˜p0•G‹{'OËûÂtâÎn¡ÌDûœI4ßF@›¥Yò‹?>×<-AçÒRgS¯á[n4¥Gõ‚­ÌQiXËâ:ÂQTdÚÕÛÆ-£†^ ¸Áz`Þœ"Fý[$ÛV^çy…}òa:‰CU=_9èÿOVP €§ûù];S{[S DÈÎÀò¦ãÐÉÆ1ÂŽ)¢Ó‰Þëèÿë„]½tÏ€Í.î*ç¢b…^лÍZ›ø\6E©K¶O^(^®ù[ð„ü8ÇdïJd¢ïKÛV 5ß6¨ú^Õç¬}ñÍ8A}¸/U|m«û éƒûéû”¼„r(+b7›bàG^j«fs¡x­£æ_+`“rýšÝKS•ª„= )Báœä¦’ÉgQÒ¥?k¥•vç”ˢV&抴³wŒÃ·‚éóDùËÆs¼Cô¥âl–Hͼz…²6ž!©)“mµÁö™Ñ¸5HÞ'jkQ'/B¡¦G«ŽNGýëHZ {·Â,ÃüMwwsZ‚^kÓK§,pºj˜{mÛ(½½Ì÷áT•]ZL¯‹G“w娕RØ™ÓÔáºf‘8Û”s‰)%gÆõáEQxU0ÐPs$²C†º€Éhv~aõx•91¨ó‡U¡[(úcˆV«p:XŒ-Ú²O¹Œò^ê‚d<Î$8L|RHÔ«,i¢T/{´ë£€Xz ë:al¡œ5óé sÅ•[àô/*!ñËÉøtÞÀèm >ô[·ÞÜü½2hTVÕÇ»]¢¢Ÿ!#`îâæW2«A;•’¦Qþ d÷?lh3›K¼_Èþˆn’çã&ø:µ±Ï“0• èï(ÂV–|°˜·öÇ…ÀEUòò8›SÊËx õVþ~´¤øb·éãpä܈nì'ÿ¡¦*sàŽ’÷DBµQR8æ…7iöîÝ+ëéŒëÉÏóº ±¿°Å¶`ƒ©Üz™’Þ"œeaJÒ!ØŸ¹csî+e`Éú$&°? Âã0h¥€ìëœmn N ­ 6Ñò§>w™OôAYu "r‰]P•ñ7± ýgñ¶÷ùU tÍ`€{[4"kQ2c¿³iÜ¡Ÿ×ö0„øÍÿØÈÀûeq¯È<ú¯œ’ —y»ìïìô¢þL¿eÈäæ§ Â'[ƒ“b°ç¦IÔý™Ý,à7ûŸðŽ/Ôgˆ’0¿7­÷€Þ´í:÷dž¿:?ÚRnZª f±›TTAM¨s Ê;uÏèè¡+„È ÷9I:>ÝÁÑCÙ¾ñàòllVîµZ+[^mTå@î€0êæ{¹¹*×ÏókÝÁEV=¯?e/Mð¥»]·®Qù¤äÌnzž»so±_Ìéã]mwœŸ¹f‹?4Ew5î¸Yêü°;þ{ÿ}ø¯7ew3õü±9kµ¬Ùf>—›†{70ùê%ÖžMN@|d;þÝÉÄ2ghs¸\Ëýç±9!¸²‘ÊÊÛÉñ`·ò\•œT]úVPù'Ãu –R½‰Y¬7ûµY™À8Oyº¶·wökƒ/ÙÁƒ^²xˆÒ9¥#Á"ÆagLÙM|Ø_Erˆé•Ñ© *Ðó^®ÉÎ÷­RÞ㚣'òdÝßqÅZ?“‘P (‰%.`X`l(8¼Èî”rÍÕù*§B߯ک052àÇÀjk²JmãŠ2õ&ÉUÒg@Œªq(ꬶûËÞI¡£^íÎóÌòþò@$ŒÎ8›ë'¿Ð?žt ¹ši™üL£¬D¤ÛAüˆÐpd(]&ºXd½4m&ä¨Ä>aÆ¢e(Ü-À+•;è Všw¦.Æ1‡†€pà ZR›É7YìmÜaãNµJA¾›b>¬vªeej¾^-ÁB;ñ¹á6cЩÂÊ/y®ÎNÎI1äÅ΃å»x˜žÑT›(Ô¥BøKÕ÷~ÍöØŠÖ°À·@sþÎ5fŒN¸æѦ²é!’±Ú^,²¸¾à¼9ëLÑö%å …Y ËŸíÜËï2¾ædŽ™,ã‚óáz¸«9øLs¦H˯WߪŠh»âSAæá>…wúË_¢eüü°¯ž®öôʦ7Æð ö1ôãÒ‡Oµ¾üru…~󯥕Uú…¿«õ ݆o#×úÖ5ŒâVDÒŠÜØY"Fð¥ƒxHä[“Ãli5ÙEhªEB"›Úu3ˆœÅmR"ármÁ9þòË­•Os M¸ÐÒÊ––ÑW?Ì“‘¶´¤ £·P·å‚<Øè÷p,gybå|òa<шi l<Ãm…¢;¥ƒ)«„ÿ¤yz‹í  0°:˯Ýz³ÒiÔß.œ:»çMØ–›1# (tL¡Æ|O¨[å6t¦F½A Óh©ðvþ¸{9æøùáÑÉáË“Û8´âÁE™üáÄÊîv ç_ú!_ Øšdu·Ãÿþ뛟µ»ï£`è4ýðCɉ '“Žæ‰ùÓ¿þÀü±±Ò Šç¦Õ.?4á$å߃·íp÷²ßäÄ;Zïé¬F};ãÁê«ßÉy`¬N=jÝÔ>¾Ü~¶{ÔÂКOyJ±³E¼IØHÙ‰ý¬qÚá9G²?ÆGBÛü2á[Âȳ›_—€ 9Ú¶ú«‡ÔXýèGчGãG>?÷§Ê½‹Ê½ ð?ëÑwŒ²Eò¹ól0(ì^ˆ~I©× ԩS•æöÙó¯`^1tÀ롪תGâ/Ô3Xœ¸OÀ⾇"èèˆ>Rg¸÷qÒgGÜõvô”i}«u[‹̹¡EÑ”ö’„HJئs&Þrkž¬R-÷Û1Œ¹Jñð‚;„õ²{¯ÇË*V—L¬Þc]qíÚÑô¥ŸRæ¹ ^Ô`=Y¢ØU"Þ%hðIG³Lí£ÎÕ7ù@a8ü”ê%ÿƒA0'…» DpãÁuDÈ™„ó4#ÅW ç+Ëa¼ð;!ëÕes"õ/¨žs`ÂEùâÔ}%gëQ4~ ½Joó쪿q:z¥Öj{5²gÍáN£Bq¯SÌU|1ô¯&Ãi¾áç•ZpÞÍ’a;z>·O…–>UL#ååF§ñ:Zk}Ûl½YyÁ¿À–­·¾}#ȼÆMg=êløž< *è ;Îp ÝœÛᨌrø/ƒ±wÿÏÆØ«”‹åÄêËÏ^!HÈt4€¤Ô~Ðþ¦î +õçjE(ŠÞdÇf!b™ÀÎL&” A„SGJ9‚¢–H; Ìeš$ºI“Ñkл‹Üú8[ä½ä¢¤Vò8½Aª_ú0pŽÄ$Z'‘˜R‹ñYòéRµ2å¤D1¡ä öùþW›ì¬ŽÚ¤z±ª×Ï©¸$ø€g]~ƒR€ˆò7„Ç1+`æ?ß”_Fb›WáVLÞ9 ´<²â ‚(Ïì–0OÕ#>—ÈÙЭšì5b%ŒüäY?þlÂWZÎÓûÕ-Äò‰^c¦ –¨Å?Ù§¬s˜3gµZ=‚’ŠìƒkéY˜)£ˆq/à<üs+DÏ#û“ë¢w˜åN$[£2¢‹™+®Ù¿îš}è_±¢Ó8K{¹1̃ÛáÊ(wNµ¯ ýÌ|´&Ñ,àß1ŽBn Âì°­Ÿ åÆ¿¢áè­þl S8Î" 2-xàZÈ"ÿpëyDÓ…Èæôý P’lU%XIÔr°§ßƒëäÀ–ôw ·¹Ô$í3arèk{üþDÐ¥ÞºR¡m­ÎÔÆ£Ð±ß›ŽWê0a—A¶%c¥:Á5}@Mœ/'²ÊèŽå>ÇŒ&(ª’Bx‚htú¨E«`èB_EŽ pCB)NäHMbÕ¨kMÁtùxÍ5ºd&Ú™ÂI“‚®ýì RØ=u: °áÞÙÝÜ#„*ƒ„J*}ó¦¾8†MÊøö­{¨=Iì:Tô®8ÆÃ{-4„ÀVùúÂïÛQô³"f c|75+uC ëä/ƒÑZ§§ÆW§7êü%%ô@_¸™)!SŠî«í g”A œ„h†;]9Ï6é˧ûÛÏŽíöñïâÛO¢åóáì`xàjìŸÝAßùŸ•tå牌ѓä4‡-bÃ[ßÐ1Vÿ]‡‹¯µ¼]®m¿:9|±ý·]ëÈe7KÜÔ—H®ŽÃƒ§·×Q920ȰrßÁ-9™? `ô÷íŠ(`ÐzFz¥2télU ®â{œ@€)7«9±*Ň.¯á<™byxžŠm0ÚE‡ÿ÷îÎIk‘í5?“x˜‘Ë‚)/:ª·£:'ø ±ø°µã)•,TŒfz)áP`û[Ùj§ïwj«íø0]­Œ6ò…<Âo£ÕÛ­Peyñh˜F³[Ⱦu7ü”øœqë_Â7Ÿ´ þ+{a= r9×êÒ`Ó{hrö÷Ã|¶ZLJ¯ŽvvéûÒ5• •¿[‹üë~AFDáêí^=ZFpRÕ˜7¨¿Tºx²ÙZ¹% æ‘»œÏ§NOƒ)[ùU~¦Ö>C`Ð(*]¯Â<—¤BæacTe¥yÅvmq‡Kªªg7öë_ÛoVj70§‰ÏûE„,çݲóü‰žaó˜ù Ź®á ŽI+øöú|(j¦«*¼|íåöÎß¶ŸíÇÞ›9Ò,IÿúS« ÛçT;®š „SXñ¾H(k÷¯D Ÿ¹È…†7ÕúO’.¥ÍêmÕ]Iy)z¼ûlïÓÉáá~]KbÊì<ñ%¨ÅhâuЭ¶×nV×›«5ß^„·ÉÞ³Õþ#zJõë³f§Ö¯–éã0ZòJxúÂdÿÇßvºøD u5ð7Æ$Ej^«AçPªâÎlÒKXÞ¦éëœ"ã|DZïéjy¿‰œ?/¹åvr²÷&WH`‰]9·ÈsƒLÏ&ó>Ü©üýA|DW¨þÎBs¾ ÝA­!R:†¶€‘Ç¥A’_P\ü Ë;2âÎ,ìž¹ÞÝ;QZ\£ÂJV†›éŠÈ|+ÐéOÉ$=»æˆ/)&!r³:”¨4ò‹$78Ÿ l¼ÉPÍ26\r­:€ì~ÂúS)sß0‡! ²t{‹;Áˆ¨2ÔÇí¥èY˜\‹K²Ÿ1.,O'ªetbÎi¨†ä£Z$ _Ĥ:bPƒ·íµ'qu¬Äá'qhÔî· ã©€2.¯¿hu·[ÿ·~CsÂê›|.õÞO³uáäa=¾³Þ¼€í˜´9´»•8UEmRv°¶¦€?½eK§õLÞœþ "”ž '`áù2ž¼caîÈ¢hgÇÁšQ¡—ñ³£Ý—pÄüLV-±Š G¿ñý_Ö5Ñ$mÜY[UÝcfüø=’J‚Ða†½û8QÌtÅI¬1´Ê¯;tx„ÑØrØìïG0ëÞ_d44„à.¯“efU` ù‚¸9—#™­à W u°)¦¿É¦É8ÛĂξ ò­Þ˜]¸lÖÜ%ð–^e”QSƒß:D³î…®}„¡F8oCÜCÚ{Å]gBòæäl#wj—/Œ ¨·¸6À)žjˆ.³¦—än2’l±*¿ ¼S,e1ááM–é½fF¹b‡$–¹µ83nJê"_¦ø"ƒÉ þ‹ÿÀÊ5 ®Ÿ… "[XæD§É=,úáþÍ¿è_üþ»éÝÚŠ˜^·#Ö–þÍ¿è_üþ»InkGí5‹Ûa[Ì ý¢ñøïæì¶úÅŠ³¸z1…ÜðoþEÿâ?ðßMz[3jsYÜjåoàøïæÖu& Ðâúœ­çFÿÒ?ä7ÿ¢ñøïfv[»Þ€´¸qÇÞ—YO$ê°øZ.äðe2­ˆïòÂ]‘¹ÊHÜ]‚ ¯a>ÂoY½ùþ= J††Þ£û‹¢±ql¯¨óýT”·y ,=L~YÔªÐ9 Tß©AÀ|€,ƒ²,eÄd©$‰Ñ|šX¥ÜbÌ%èZèÝDŽa·‘ú‹þ˜ ÃÞUóñ'°f¾ˆQz†åøN¼‘ß·ôïÏ*ûjñ§¯jþïʧE€!‹â–ó½/8–,îXñFÞÌU¨ÚÀ†Ÿ§ Ì•$­wWž«ÄÂ;®"ß+uÐh„Åꛑ~SϽ}ðß¿[æm˜·‹?YÙ(ŸØ¿ÈE$/M–Cx½ÃåŽÕ…î*ðð—»ÁÜ”õe‡$ œÇ¥ $ ªr\ð®æ¶È©½‚ðÂ[ ä'Œ<\XtñÑÏ´–@(Ÿwø†#IŽ;»øüYŽw^982Áˆ3tÛLþYVÌοµÃâ^¶¸cE ÆqÇÜ:ßy‘çåÿ”Lãsƒñ§ÒCô*\@ï0ˆ…øYySDõϺ;-–ÑÝg€zô¯_¹¥hÛCLŽÓ˜ò€Kߟ(娔h1VÊ"ænñ\-Þ;!h ÿY›Û”W—ñ¿<ì:JIÑ6J)Oÿ;%—pJk®ÂËïGViýéà*sûdŒ‰´¬nAŒ´h^TÛ¾µ0«ÔR°†¢1**Tq·äΟz¯Ócªr“ÌÇNȪºˆê9'W*¨šL`d÷¬ÞRt<Ä“4Ûð‰Ñ]H|Ìàutss~f½ót°sc>ýŸ¶Ö¿~ðpÃoÒ„í¸›ZÉy¯ç*€â¿¥ƒA¼Šü]øD•¤ý­‡ß~ó׿J+½ëó«t¸ÝD+—°rWô×øêþýÑK Fú+“¾Ó‡ün:ÄÆ2Jä6$OuñYO%ST ÎÏ”|ÛQÉVƒ¹Ã®’~Ôͽ«®ÝsrÏ›&}G\y“=í3먕J:ùнZ£¦òDk~lÚ£›–”YÉä{çðÅ? Äd­¬¸óf‹ÎuIªR4Ž<â}ÇîÚx’ߥ°"lUC/äªÇ}O`gDÙ¬ç2³1:ð´ßÍ.&ɇéV§Zã¿ðˆdó2%"QU +Ô2Ž™çaTföyUå³ )ÙÐZiFTè*E‹ÁÈýæSÆÔ¥mƒ—¨.kY­[ðØ€iÆÀïpÞ*E²>g1MAË+y†S—6hÊþ[Ô¶|aÒ Ïó–v£Ÿ›v+úäÔ?îm6ã“ÇÈÝÃMÞÜklí^p•^`Ú?¯bºÅ^rÞ«›Jâ ¦21J*ÍH/Ó„ÄÆùc”t<LøعÞ;L3bµ€f Ÿ•8¡Y&ÑcðóíF4ýùx2 %»ŒÏÓÞVýË/¿|±ýloÇyÎÀƒ:Ù…ín ìþ²ª¼nà$9¿¸zé{„÷Ï€ø¥ñ`k2ŠQÎæØÃa#†j9,$ÖÌÎIhܘ«ª ä˧¬øç´B‡>ì«!Ñì¢JK]ÅJ§IîÉÙ”B‘}%GzGÒ#¹Ÿ¶À¶G¶¦UN¥ëJÒL¨÷Ñ8õ (§üÄøiçµ9à):Ù­¥d)ERÀÖÒõŠùHÉsÅÂß,§×JÁÉ£{†©–ÎLBãqƉ—]qŸÄL¶y~ܨWè&¹¡r¼šå³¡ MöE<éc¤û`–]îxùQ¸{üïÚd¢veÝì:ƒ øðü ›Èö¯½¢6Ñjô}úñ˜)ÀA=…Ê0ˆÇýéÞ>y«ùžz{×m¤ »G‹[4‡Â/•ÏÆgÎT³`6´ÇŽÍ䫿Œ=•ÿò5È'‰ü“¿¢æ/w\˜œÙóýëæH1g2ç,ÃDAŽï³fÊ„ÿý{g+èoÄêrË–‘s=c¥ %Œ»è¢÷±h.’ÇÝG5Çú Kézm~57Ó[–8hYŠmÊcžIü)™3ÊæJÎÊÕ¨:rê\2_4FpÔ ARMÜúact“M´<ß‘9[•Þ§/>íÉíªs´;«ðÿ¶ÁÕ$”úº^‡›†PW®U_ RwÏíAÈÆkøá*†lÁ£ÕÚǰQùþÔ˜]H¥+ñùToÂÿôÓ1ÿH8*ñN7 éé§mP‹²$={¨Œ9âL”ѮȺS×u& òh;‡/^l<9n3 BiwçÅœÂn2CKlòlì㘥H s®ð¸ßÂôãYˆ¡b˜|'À;_TŠýžë’€ ¼nz–ôÉ#B©ÿ_Ž"Íé%U©~C¨“l¬ð(—£ЩÖàW§”¬ê…”]âMz»jíãFkóSô‰{ßb™ú¸tÖàO¸G›¨µCžÆW“KTˆè g>Sx˜ˆ-²P25©Ä|˜Ôn«¤r3Ù3cè!âDà2á¹@Á +?M/ø . þAä“XšMßâjZøeÓ¢_S}AÏ儜I|úòýF“:Æ…Épy£ñEm²Q“ÃóY2«Ss†‘"c7t‰1»Ó%&{Ö£#Ó8woä/ŽUÒ+v:+{m>JOÚ«æYÞ)9Ú,evMFÐÁ—Û'Ïợd<À/±ÃCÛ ‡ß²·(°žü°ÇÓ‘äA æ4 jÒÆeÈ Þc•4ÏÀ‚b<7[¢ãÌù­:úê¢ ¡Ÿ×`}äQ­” S 4ë:çnFhnóS´ˆ¦—B2ÅóItžÑ}˜×„2|¹%ÒDV6ý¥MIÏÚ•Ò~Èì íF·©[퇕ͪy^-ŸÝ Ïóz0›e=Ú‚5¹m¥9˜(‚À=9¹]xk bË([tx· Aã žÚ½!¥¹‹Ïñh†ú`Ц|ШâÁˆŒø=\Dãy5à+¹Š3Ôë÷.@Òƒ{ 9èˆ,ÆUwEŒ2’”f¢ùE”±ËñT°¹¤Žq ÀIÈ–èC0ÄêÌ`«ì‘.>ä Ê´Ù–ÄúÎgìàK&—Qý¼×‹)71s‰Q rvsïdFæÃˆ˜ ´Í;;š'U/"ä'/SÛÙ¡ëíž±i¦T÷¶:9׫­ï3)A‰äÃ8F̘­·¨‹\9wvÞæÛ_TXŠè;|@~´Ö©Çˆe˜éêèr¸$~¤ÅR,ImTfï–¨<Ñ4ÛeCÙê«·ö ^û­ŽÑзÄsr±1B+º¾¾• LæÞ›wþt¦ŸŒf0]œ×0"Û­ä ˆ@ ©e”²Ëd;è謭5ÜåßsÇX»·ð‡c¸Ó!öª¢*bʉwïŸ_ÅŸ}`üüŸÜrÂÃÉ+Ý›¤KdœD Ì/\mm_š|¹€²¹oà±»Š‡S÷¦‹VþMŸ°§ŠÏÃh”j¤=Õ1?.€6›â‰Oé&ËÍm w}Y'ðe$}gÀA÷92ar2ÃÌ"ÎKÂDÉõ‹ïšØzÍúã^˜»½\Œ(E¶Ï$V|¥sY‡ª{'hf»&ÊÞxÍ_W§^Ö«•¥{¶¤/*D\•£@Ý„Íiç·è $qU>rB±Óljœq–X~œöøáh¨ÃË;‚Ë ±RhÄšÁèq‚É‚[mâ*}Õ@À`¼â„^s-锩xQ«FŒFÕaî³ùÝtL‰û¾PFïsa¤¬¡S¯mtXØ6¦€Kب6ìÏNàzà;iêþ¼¦¤H¡±šñÇ·¾¯Xûh'ãÓIôÝwh‹[ŠjöyÔ*_¹JΘU{ytøìhûEDÀ³ª3oø`Ë%4/sxñ“Ãèàð8NÁ…œæ/¡fAÞ ñ½1|§f1Ü´qWà^žôåÞŽô®]Á½ÇoÕüRäß@o'ÿV>v‹/òÄV*>±öâ'Tv„S‡úûD] õsT-AxÛpS“°W´N>ßݹ{=}u°ƒp¥ÇÑÒïiÅ×¹À@ÄIÒÅuè^¥ëNGÝ«ûˆ T)¤€ry›è Ó™çZ(TKeÌxòÇe]¦ðT“{»me)g𢿠¬Ç ÁŘIÀ–¶%ÿ’òºŒZ¢Áµu¼ÁÞ|°cßš^TÆBùªè…KÄÇPWë’{ò¼M{&@¯6‰4úøèЧìrƒ=fß6)GXÌÎŒð‡íÜ>ñ"ŒrØ>2¶¤iŠPÞ#Õ_ E“,½¤¯•;¬«š¦!íÎÝbÒHtA*™¥èzÈLgC‚‹oúù¶†Â©*ˆð,þ–LF2ªÞ¨Ÿ˜ñ•&¤Gñêëñ3ï.üñTñÞ³in£6ˆÆÌÄÐBoÝ¦ÈÆR—Sºf¢—›a+ˆ%%)½3'2Rw°õoh5ÈÏA*[q 0∴ÂèWÜ•ãehGfÁˤeô…š¥.š<ï8¼Ð\‘f^oàr©útƒ¬83®ÇwXÁéåxë­[ÖUÁ÷6¸¨ªµª dü“Õýzß­¥ðB»ûþrÐfwl&òðñêVÀÃ8}ŸtÑ%ÄèHt]}›¿DïÞ-oË%æ±ú›wx¿RNmq>ƒÚ҂ݙЊ–éZOf‰äþ1BkÉ,öŽ­3"» N›Œº¦§Š2ÒÇãcGCª©Tž43„p¢ÏD­ÓáýÏ#Ôù5sšR¤yR’Ü䘿uvŒ]¤ùÁ~"EËÞ‘šç6FÆäA%+LöL•"ßý­ Ä±h—ýÂ+%ûKÑlµ&î›+¥©Í$`ß]ƒYéÍ1gž¶ÞÀoPü7-뜕»¸Þ;÷RºSlKu‰ÁxîLL‚ÚÜy>‹€7w_Š»÷Õûè†Ñ&ÖWÿÎíFÕGŸ1KÞÙX¡Wl2Þâ /&Ìù.Â|Í9Å™Ã5~{xÌí%ÿ=l(%ÿŸ¿—¤òÏÝNxAßm;Åœš è`Ú‹4”!ÂpOb<æi2]å7œ™ Û7܃܆»ÿ9ŽÂÏpÓ‰H~—ývÿ_µß ”`ŒJõô”Ôò˜·ÅObÕë ª¤à:êën¢ å'£÷I¿Š¾ZIâðî0Þ­Þ«”õõ ʉ¼ !ƒ©ó¬!y1wQR϶ªÙMmý¦¶qã¼0‚=ÜðBŸï—kvæ51G·SÖBí~™2gÞ‰›sá²Né*Ð~à;8Ó=ÞÞùþ>Ú}¹íáÕû‚Cݳ¹Ý"5ÏÄ¥¡waÊñuµÕºD“ΗâÜÒÒ²£RÒûÒsÃn,Ø¥¶®Ù#Êgµ6ﻜSU¾Ú ­ÖŠ“e3„›¢à 5oñŠCü½&¡’J‰ÆXfþ IïGïDþ«×ꈜ \³ubôAì!ˆ0œÃ¦µQܪür(X)4İDVB¦ÛþHØoC3ˉ/ŽÁ,hâ‚> ©ÜÝ’ã1KûQìCé..Φ8Š›½c‹ã#S°Ž/Úßþ¿³.ôó‰µr‚c{.3m›ÔFGØÚÒ!{fWLR3D?ÝØãkZauœ¿%‹UX¯å9¬á|®k˜Ó¿»ÈxnW.“! Á2ŒB?{!ï‘÷uw»<ŸV,%–3K'²T2{õ$$Ã Š™ßÚ ˜¾²)»U:\ÌbÏ×2/DC/äÒêï"lV”·˜#q|ÑÜ=[]°î Q’zêÎ[B´Yå’þï_À°ê¢ò‹==½vS-[Wì1U¡tÕê¹H_õ)à0aÑf–©UØjf$O0Úî„·Z{ë’zøö_¸êÁlÎ#Té‡;/:©‹KþÏYŠP“Eå³²›$„pa¶µ‹åóH£ïô¿ø˜—Øy~ÇYŸo#ùW-½Ÿ¡[. ºuí•öjl»üæ8€ÄÎLâYã\ÿÓȹ;¯³R#[‘Œßm{jßåçi\LÌÝ jœRÍó˜EÑ,Pö^Êí¥ü½r'ö~Áÿä{EMÝy)ÆwJ×,›h: KãvcË ZÙ~ ºeƒ.´’þWÙ¥Áú|®¼]"jçý·”=WÀfEÏ¿LÀ>ñw²Í"±UïeàöÂYî)}Òmî-¡P â£8ÉHà †¨jÖ÷(žë]Ó”ðZEtëG˧dë-j‰Á É5\ ŸƒÁï%Ò¤¾$- 3Ó+Cvq["ÝŸS<›%[òœÝ¿#­À*æuEù*hEl˜Òä˜á5GƒËô¯òD€ô}Š0}©d€®óëuQbófÂLÌzF’ýÜ©aClk˜\Ím%CÏZ À¸QA_ 9 ò„2g;ÆÈÁ {Ð@1{L7*Š:…¡FÝ3¯0'¡ÊØÒ঴:¥Ch­êãÑŠÇNð°892šò&¬Iá+}͓ͧˆ`y¥N»’¯|«2¿×w°ä_)p&\¸¸ï$~8ßK¦×…ž7ÝÜPW—ô¦@:Ê4p¡u÷*ßúTl~þ}\¾q¢’ý0_3Wné¦)ö½XE™–&ÐqÏÑÒ¸æôo¾–&\žÿ: š[fëó4¹)\Ì…%—£÷‰s¥\ƒ·zòôa.ãˆ&Ïi  md•+þHÄynN]‡.9,¾Þ~T§†ëÚõGR{ã‹w$åûK䌬Ãx„;,¡ ›ð¿ri“æez9^ßZ×~›ŒS^ã¼Ö>S•lffaLLªäyÝ(ý¦À¹Þf›ªn®@M+›UjT&s¡én¡¢Œ‡±@QžÊ?_GVÒ?ù¡ wá¬lþ«¶j©M×(ËZãù»åíç-w‹–ŽïˆyZºpÇ}®‚NþËt¿_{“ïðÿ3;t±ŸüŸGQç8AÿwÞã‹Ô‘Áú•ª J< ÿMšÈ²¾ý¿¹Ÿ?“90J'O˜?_1Zrò*§E{~óß¿ã7?‹˜§uµ‡â[þ³®¤neÊþç¨\?ŸMù\•뿉ٗ ˆåÇUZÌë7Kx}©¡Èñ7ÿ ñú¿çzºýLϹ™þ?t° Šj.Ó ºýä¬;&'¯J)ŒæÏé°?ºÊ¢'ûû°o tÝGÿ-®`N‡ëau«˜Ñ vŸì>í¾Ä¯Ô¯òòA%×âü£åÊp¯âÿðÔ²¯ú¯¯ïEoVÐYÝ?]ýµ³ü¨½Òi¬ÔVûõ°xgy÷——‡G'Ç›ý½ÇGÛGï4:ËX‰¼F4 ÷Ò?åOµuÓ‘†BeQìeÉ)ºŠ?OÎ1ȪøÅ\ø0Ä›˜ˆ3V­j07Ñ áöÀ’|4-@Çcd“~½UãÔ5Xs®b ïpåb-ÊZ YòoÆl6FexFù4¯“,÷ßÜŒ“Ó‘Ê3• ðß1Ð2É·œ&]ÌÑ!©–^‰þvÁŒì2©•z\1ÄaŠˆR#A:Uõ¹FOÞ=¸H€¶¶¦CƲS¹‡AGPÉÖ]¹—ïõ=Ÿ KÁ:@[ ¢Rþ†¶oßå︟۽^2ž’ö\Ö°ev Ê•p—Z#‚7òwˆ m ·`*Ñf s®G3LG¢è9õÖ¨Î9<0u4öÂÛqàâ#?Îv¯KÝD­3ýýro×f¢£hæ"YMÄqR¸ªb…\gp¿C]0ýè¦ Á&:K&Жý„[ž444Cûgq˜$Q¶&½lÞá¨ü¥_=ªLí38/ ’|à8µó…5³ò>ªÚU¥I)OL3<[KÙÅ ×06:$)Å¥Ÿ¢á ÃP÷?áþEæg)R°K™ Üî‚[>c¼ÝØÙ#pñì¼#ü¹×\ñÓi”øø¨íuR)úœû^éá¡Ù-Âñ6©ƒ–†Õy¼´$÷^n#)&˜´a:¥Ðg…÷óŠd4REÕvyΠ°œÑ>U—R,O7ÚùíÀñU£ ÉÂ&ãéw¤À#»l9’> ë÷áLÃFÍÞ9M õ$+­Œß F/ïÑÂéµ@ôŒ1ÈÐY”ö˜£E9œ,Ù‚!YöÉŠ¶Z]$p® >“Ñð¦¶ã¾k ¢ N©ŸQ¾àø-¹«¢2ÿŠ€Ï;nL’ÐAŒù pT¹#êƒ+“À´òs*ÖûCàËFõ\ÎØ_÷CÚäòvÔ“ÜIÎXg.…‚jÝÝîî® Dè-ü)ì˜ÏV†òŠ$ºÁ˜I¸ÒúÀ&ÙŒ5?‘l[Kê·M8s>Ö³5â =R»£d4;ôÝ`dU¹\€×½§ÇéÙe6zã°8WÚq?F”gø}*¿3þ]šR½¯¾¢§½ýJSþ4ÀìUô×xÌ¿?|0o½>{úæõÚ·o~ ïpkàïÄï¹ÉóýÂNâïìW1“_ã`§| Y·fòU°2T¤Ä‰Û.GùÔ Fša´1ò<Š|åøÆ”äw_q+ áCÀt[†[’%üº´—ßݾ×bUÐÜÇ4àÿè ›íQ è9@a%€¤Þ†eÇì’bè—¦²“ÁJþºH¸—¼î^ZGLD¿'LMC_°Ý —rõ ']^‘牠2„i#näÖòžkrïúꉹ#©f‰8ÁÎ4T9^çö+‡ÂýâèÆÃýR ßT1Ö Á@œÝÈ¿x#X²õ×oþïÒ¯+?=úîûªuüß½è/Ë›·µ×oê¶ jDòCGUÙÿ|áëîsaƒ=_€+¢@øïásŒŒ='õ²ºŠ)1¨,|fϹ$ôÔTšß‚:ˆXÆe»*+~f‰¦‡ü$±û…CJ‰èÊ®›Y±ªdü 㢂yÑ(-Zxš³0æñ.˜Òe!Ç»E“‡—ÿåª}t˜L|¤bðæÂ—|fÕá³K¢‚«NÈIÕIª‰HHæQÈøD™Ð«éõXäWŸMµ;Ê”°øÄ¥.o©¦-qšRN^ª„Ó3/¡vF¡·8¡ú–ÉE€ Âãý‚ÄŽq¦%ãçe2½õ«9<Åsì1×-¼nÅ)ÅŸŒ,豟áxЛ ïd˰¨¯s™žyÐ]DNªhÏ\«xçÓåÞ*—Pµ×…ãœU<4Í1½7[Ͼüµ½²úå—¢ìËNûõ¯í7+µ/¿¬¿mãFiM¯ØQﳺ¾Ö6>ÌïHÓ¨JðI›Šfš¼ËT—›¹ýôa Å$%Ø%I#s¦; ¾Dc‘&‰_‘¬4ÄMÐq¿K„¾#v)~?J1 ÂÂ2 ,ù¼áõYvd}ÇÃyÁM0(आV7Gc4b ç9Zùç8¥¾àÕí^_Q>Ý@|îeÔ2iÚS‡b'_úŒD}a§ƒ„i®kŠ7,Û£SYYY‰vŽš¦7.‚åVÈ6+oÖ— ÀT*[>ìSÎ_‘§ã!ÃÆ%_(ª”&ג펑óäU|~&˺uE•í¹tÊy"pKéTC|*@×'áÉ ÎT½Õµ=êv¦#/.XpÁ« §Ž%K‚¹há ™Í@MúMŒ½†;qØØ¼N.bT ·d…v%& ’“Ò,Z¦­ÙúGÃ… ?E¾•¼+QÖ‰µ—Z® {ù=W;zÕü€Yäæ§Ã5 HÞþM”»ýÉU´@4¾·{'8º·õlqÓaÓI<†dqJRÿÖ)—ßúCËMmdªI ×/ÈáëN¶/ÔS0`”0|ê÷Ÿa]y.Ï_Ì ð+ÿìa†%zõÒ—xbô¸›jÓ1•è§d…¤]÷gz.6Â@…;’‘‡R’tšõ»i?ͲnviÌ·JD’à¾ú"¸¸•øµ²mQM§-¢W-ÑI÷Í=L€@ƒÃxÕM^nß5îpjòC,»K0)ã=]~gtªïvÁÜñV9e1Á‘—6+N#÷?×ÎÁkÇ‘šÿÂí‰ v´ù9 •:Eì’¬§ÖZ òG±d¿«pmóŽØÓž.¸l¡Ý¾ÄâTµÎš:it¶j?<ºí¦ÓF/ÔK¦a›B*Ä#Mÿ¦9yÎÒI6µëßÎ\é»5˸±åmŠõ|"ÎzÈXÉÐ\@ãQ–bÛ­>!Ë ž2¸¸´w»„Ê%_[¶ürø½D¾¦Æ´ðÎøü»ÆqNùq• ^ È|)•_ŠŽeµ<ÑùPný漎ú©2%Û¢´ÑZnTïx±Dþbù]<ØÿÜ&ÿs›ü§ß&è¦øÜ‹âO½'ì8ç¥ba5nYÎoͪæU¤òˆþôÓøj8i^„r Bûa™Â¤*?_Ô8Ü3jIwúUÁ‰È‹‘n蟸kf ¿ÚÙÙ=>F¯ šRÛÊdP?”†c_°€S …j׿BèWʲ⿦*)•죟f°­¯#*BùY1ÀW4yø²\z¬Õ潉¥ZõÎ’ý&íqmæúaJÚô¾¿ûgÈGã¹y7ŸÆÎ¥Ài»B4"¬Û=ñæÞ ‰‡¾/LA;•ê+lo“3·‘–òõáKŒ“~Ón·£V‹´œônËöúèEË|MégÛíJEœ1±7™ _Ù¡˽Јh«U@l¥ #ÍòÃõT:꥔3ˆÔ ´äd·<½‹¼¾zšW'—õ:®j/8Y܃¢e wèPoÕ¢ccTå |8z=Ü+K{- þ¦’™ÑDû ô|0pZ^Û× õ•Ž˜uŠÆÓ°/‰å㶦Y28Ã&¥œ„4C‡ªe+É›Ùá^}ÖJÊAØ9|ñšnI¶j,q|øêhg—æµ²£wÖ‰‚Ýu ³âìê|_ÒöÉ;#Ëec–f\ 1²$›8&`Ž_¼|uÒ¢Ù€ŸL¬øÂ ùàíiPß5ŽJ<âË–Íc«ð _ÎÓt<ÅÇCf¨ønuÚ!ŽíT¡×­R0æß3Eù·ÄÂिÊu×Û£ºú¤äI=O/ÉjUqfRSÑÈ2ïw®æç^óéþö3üÓ¹oEø$Šhvøo>Ãk ¶v“ ;%ÜH|n”åFxöÀ#µ{:2ìÇ“~=Hæ(ÇÆûI›«d?БqIâO¯Y­¨peéÀÉÜW,Rg6;ͦét6ÕWwtã“eˆ]3`RÝRÈõJΆÏešPh0ª—ž[IÍþ;i°¼­ùå£×ˆ ÿ†¨ï¶Æõ%Äã}cç~"²±’­?pXûLHéQÄ?4œm—¶“ŠÉ¦±²íg‰4n ”'¥…®Ž&˜ TœûR¯ ¸–1ñFì\+8_ –Ç$ž9óÙQ8Ý2\ÇÃl@ô[ÓI«×âí"^ ìN¬MÃ+ŽËp´*z€†’©á½Lº9R²ø}Aüç‘yO°¬t¿Ád¿s»ñËÑëý½ÇOöŽxŸíHuY怭äìÒ’×HWvñ¦æhØí¦TP+}ùħ:Ùkê¶ŒÌcËT#ÉO&ä.5ž¤ïFœC=Qô ä(Óhµ€•nÁ9¨kFΔĤè3S‡k€@ÑWû§N~é$Ë4üÎY–·£½ƒã“íý}sÃf–ï,¤óhLQî5å­‚¥‘)l³ã¬×,19á÷4©ˆï,Í”TPÇöê½q= !ÌŠTDÉÔòÝá•ç&þ#ƒk¦"ØÝ é‡lŠèåã_Z¸QpÁìgÜçxqU‚êè&³cä^MPù„æÒ/ìa‰ i:b ?Úˆ|a-Ó5ýøøI kˆ9'“.’²‘1e}o¾~£t[à û;÷¾ ‡æàoÁnØÇ§æ® ÷‚“ý »]äTOáYWü®"Q)K#†~um³áUîAvvDG»Ïvù=M¨:C­s ­}¹ÝO–ÄUâ.qüƒç5ܶÀ*„"n~ìôM4(ÔÜžÁßø6Vg6HL5*@hY&@/t›ˆÐuWʈZNQ§Ù~C®íü†+ì$EM¹²T§Jòì{¸$†"2õ“Þ æ0œ©é¤SŒ’HÆkXU¨Ëò›° f 1´O¢×}•à¨ú“œ¸¤x1í!¤WyvGV7´Ò[_¶Ñ è"àå¤t¥ä<‹; ÃYO2ŒW7¢å!ŒììŒTCIÂxxœd ‘G{ТöoÝ´œ!›uV°*Û¯p¤)óÑîþîöñ®¥u½w¨®Ò˜ò“ñRÆ÷ˆšÍÎjF&âºx¹ƒhm3’_Ní–…ùã×±º£×Ñ›àä ’ÂH c" K"WP¦jw€ ‚8[¸ò×EoËLÐ,yüê)p*T\ELR7ç‰?Õ4f2IA~ñíݱHyרʖ|‡¿³9{à––Jk—{±…‹í¼::Ú=8y½y´ûÓ-¾ÞÜ~¶ûæMi{ºmt2< =ÔôšôzNÔÏJºVÖ°ºÖU#côØQ¾€Šlj`:X&úñ€gq/¹“Öç ™´„ ônÑ‚`±¯•J—§¾Ê»×èÞ¤*¾J~[»ø9Ur!ªdg'¬ÆU’«"7¼¨âüZÞÙiT*ˆÊȔǩU=?M‘C† Xzƒp „ï£H5]K.\ˆŒhLˆÛWYZžI’\%@ êíA\Ç:+æ…¢)­‰‚vbΦc¡¯+9¶T‚oìÕ@¨—ÚÑ•¡i¦®Y!Š’s–IAÄ 54«»mšbÎ#ÊY‡Ú*Ê4jPÈ¥„4º4†ºL“aÏfº‡”w>f©® Eý(ÜŒ‡QaοOÄÔ8‰‡ü.TgWcÚ¥~µ¨y;µ/îžÌ7ÒÙ·:A3¡¼¨=/`L¯K…2·M~§dæÞ¿ƒ)ÄóðÄRÄÃP*ÿÉ(2Ï•Y@*†dÅ/`!ž#¾)œíq"‘I¤1ª;Û\=¨ù+tÉ®ø}Q=£P÷{¢ÕÂ6êlCM~'ŠOÑ’i  É`): UÔ(%õ÷HVN‘Í/v¥ì0¤ˆMdþ®ÄBˆælt3@ œýÓùШ-vÓY?ñëܨ³rVŒ¯~`M¦ö†#´»êã‘xµg:3+qîªÖ!êBBÈdhœÝm˜õw®O‰Ðò°#ÛhÖ²Õ_ù<®W5ÙŒVÇõkiÜÞoÞ)E±®ÆñÕ_&m{‚² láÕæê¯GôaõcåÞóÊ=-¨¡¢µúæÂÍ´ê ×Çøv¼îÚ+/ŸìºoÝ̵W„hu–_ÿ½Yé4 èê“„c$DgÛY§Ê7Wqz93)Ùݨ B€Á¡ÓWÀàÐ/`pxÅcpã{ý.>±£_ödƒ>{Ÿ[DÀýÜH.Q¹è­çО6Q“Ý J//“~džÑD žâ‚AÅM,¥¤`oòNå^É=ªÓ×u­±Ãƒn¥t¢!2ì= m*‘>£!»P4!Ýì:›Œ©£&1ÉÆ«TGŒ €0Óâ\åUêÔQ÷Õøa/hºO2ñ…\ã£.eŒßRo¶Ìé`]ÇïÒ1É10s´\P{àÉÍM9Çòþ@‡5ïû’em E| È".ÖR·Öˆ]"N¼¯lr¨«ç ð0Þ³1‘nªð¸fîÍš4£Åݪþ@ô»0tëFˆºÍêªs‚¿ÇÞ“þÂùÂTX¨hA,4]à!å•:ñ„X 3…¶< 0t¾ Ó¥0m\sr[h|Ä/ ´"@ü¾¼°÷r«ª&H‚c!‡A×A>.H"Ä?‹PQì|³ÌÀ%åF¡À“Ê¿À~¿íõy)hû¯úo2…»”KÒ÷4Rþì›B¥8—H1. û„{’¹qC&o¸ªž£NµS«E;U·¸høõ¾ uª¡{›%m8SgÅ]ÎîÒ%qÚ îƒL­¾(˜±áÈâ4¨Ô $ÛÄb²Ÿë¦Jû8©žÜ…ÝËø<ímÕè—‹ %œj/8 »ÇUŠLp+ÉHÜ­ÂN0¾€FävØJƒ]ªU#ÉœÅ32+ø+Á™‡–ð­0•®v¹«þfÈ“©f4±³jBv|®K™€{œ¬a‹¸n¢Ò>Ò b¼8·ùÞÚó_ÒÓy¯8d¹?8 !gæÀë!ü?„õâ7Å2T«ù3$ ÿø>‚ßXƒÇ2<*Iˆgi."ì‰x<†Fp|;…@”%87¹3ßñþÈè’“|ãaÅŠ’«7<ç>2˜BBFrT¤è7êˆË;¿ír'H‘@Ùm½t³ym!ÃŽXKýR§UÍâùL±Òzo<£^m?ÛöwºÛûûøkçäï/éóÎáþþö ýù† ¥Žˆ¢½Ô±â|$´§·ðP¼O*ðG°þþGŠÂZÙ7©™K>óu¯äû>n1)|–V]÷†Ixñ`îbÒãUê‰ϵÚn“¥½è¸µ¯Èœƒ°M£U‰d?°ñþÀ¡´#ÂaAØ‘çseB$Ñ¿àØË‡¸™¡Pf`úE1EØ©š¾Þí×>§4ÒDZ£(^(â<Î÷gßv”4ÏàÛB9Ø8œkÁ1„y6¾½ÿ¿ç×SäUãDF®zîœëùFüõT¥¤jnó{áé<ùàQÌ ª®â‘ô»Ñ¤Stmà—ªo •áv­f« ‰Gõ7F-hdµ³¾zþ(à‚ÊÞ/%-¤iT™lŸ¨Îüç’y!7é)CÁté–:BÄØ¹SúÊ)õ‹ŸÖ o¡‹PBðU’-ªôz¶¾Ý 8½ÿ*á·1Ÿß.îã=›ÓÝLQ¤3Üz½Ó¼Å3ù‰ç'UªK¥´ï£÷b~µ1>½|ç%|N/˜àGÝøxôâlU)™ÛšºTÁÎc‚ÝÍôo$Õ> E·/çpsÊd `&óexJæµȵÀôqv2Qºˆ;‰Ð4uµóð|ÊÍbE¹j£º'i \èß•:«iêÕ:ó9eý¢ñæúE-ì³v‡JQWè&£†:AbÄò2"?p'UA!ôËu3r;“ R_s;ÕEî"K¾:Ì$'×ä*ˆ^Hh¥š’o'êÌ?g)Ü~°œ%¬ÈŸºø„¶þ”ŸjPç¾X/àæî/ qÅ7«wØ’B:qZøy5?ÅFÝ®-sÜzL m\6b­Å5“}FÎÑctZ掂ÒM²#¹“h›â.ÐŒœ²PüÑÆ"×ÙàºT£Hçe&yéJ0É(¦Q€uõ󩇕¾R6añIC•Ë]°Ð‘‚!R¥jçç¦ý.ü7µe[%Nõð¥z)[Z5•DÚ]& éh878–ú‡ñs{d^ùŒþÈô-î ˆK}tãïò>¤àÞ.®¨ë±%ž&Ì<ªrgÁÛŠet»¼å×½†eêbyƳrF S>¾•ª¥3H ì9Èt,ͦ n„^ʼ³ô¦©pn»gÑj2í­úílÔF$¿’uº¥åpë¹úòœšœöà$`â R‡°­TêzÄôYcH› ¨¶áaÈ÷9  H¶Ñ~ýõ7ýöÍû¼þz­õí‚åä­xÍHÍ¡tªûËëfÔ› øƒ}ˆp€ËEËý$•ª¯jŒüíªÂÀ®|^+e•Ga•2s^cðçß²VåÑ—´q„[X [I‰y¢•šÛ ²•~±Ø)>Ä=–•삦гèî½QFgRƒ4ÒEmL´œ8GbëÉppÒ ªµãç»ûûUŽbq ˜ ú’Lì2#þ;e0î#;‰¦?;xýÅ‹¦ž9kdNÊ• -`óp“­ð+hóÑ£~ÅÀHßn;:œ2 á4 .Á,’î+©0SµU-G.rœ#¯Ë‡ì"=›ô.¶:û–1öy¦‹ú‘ ‡vC¯Pð—Ü+œÊòöé˜7/Ù²Áö™3'ü––dªÅ£®Ù×+n™A ë56À×N'Z}ÓwpѵXo¼µiUºö ÚeÄ&¨9}å6Ôƒãññoç˜*|·Ó§@}ƒDt°fòSoƒF|HyB ê}&ÐðKùr8bÅM§)ä.€º[‚;ûTª a/”jÄ%@bÃÎ3 ·3¸È1p²t4n¿!73Ý:kLSóóÍ]€S©B„¦ƒ T½­s„æG8eJK`Šù"¶¯ST…åV¢Þ-9þžz H¸D81‚ÅæÖˆG´˜âe4|ßgúÝ/Ðo‚F ïCáDçBÝ_Cø·ˆå帀nÞ'böÓå4Mf%sÖÑy´yPê¥ê‹hÀ"*-"yNf"ܵå­n˜§²ö m¹¥^Mæ-ßvŸëXáäA¥´U[»ÛH keV˹x<·`ökµDj.ßrw&[)¯û[pbç-Cy#!±)_ 8,‹÷Ä< Ñob°™§»ü­”ðÙI²µÅP,¨ÉÄihm½‹ ©fN÷—¢c$YÄÉ»\Ù ¦È…S˜ZJ³_Õë @ÔuxþÖ™—j‚Û-ók ÚÊE¶Í&íkc¸m„ÒëjÔès°X”,çø‡yÆŽ*nJÍ^Ÿƒ‰ÍmŠÛA®îy¸×¦©rèlGñHënôÙ(ê•ÍÒ„‚çÉu  »Dé"Úqú³ËËk¶0g k§8æµ%ØðçÓh]\_J\‚°óÆ&àzÈ|ËTè= ìÏê´f¿ÞnýGÜúíÍ&?iÁ÷­Ï–tÕP¡}üƒü{ùlNoÉ#Eƒï©†÷`“ó£¨Þ*aÂ>×+Á ÅAª¹³G‚¨¢GLjxƒÕÙl:›¨–CžI2”ð᜙v[PÕÌ–!× Uîç† ÂäÃT=$|†*TØç<=!õõC ëíù§ÐGºœËà\º¼oœìá³-D`BõSWáîæ»Îi¾Ñãbün¸êx»@È›*ó‰¢òõ\ K:µ|Ý$ëÀ×+UUGU>Ý÷H° í ïj3Ržšc‰&vl[Bû\µM×ÂðY=+¼ZÚ±n|œ"aZÁ5ÏÃÓ† |¸î¡Å¥!I£š§šbægg<¤,"¢ÖO¦Jç t—_ë’ÙN­£néo¼e.ûRæ SûòËêÛŠšz0è0¶*Úr”Â&B±e6Í0„£)¡ɇ1¹ÊóÛUH·úéj rä*ƒn…H =V¥‰‡óÊ0€Ú D÷Œ`}2’&j{Ên7,,aP Œ2¥îs敨‹ÚýjræµB0"2«í6ª‹¢eÙʃë¦DŒ&ïh‰¤·blB¨6aæA<áTƒÃ(¹Æ˜PïˆÊ̪YVU¹uY”îŽ~mª§¬²õJ†ðÉ\zPÄÇb9ÃŽƒn»c¥AdSœË•‹úÐ3ŸŽì=N3F/çÈšÛ‚¹mïŒôÙ—?æÚøñËøD¾»¸_ïEN ÿsZ•J‰ä½&¸ŠŸây7~iz°Øœ¬i}î¢ò Q½S—zá`„jõ÷Þÿ49ùK+<3.yX'^喩έàmÆàzRÆ1¤Uëf_àUÊ î:%V£â’bŸk‰Ðý:?'°ÕÝõ•O'BS¥ØyÒ¿sðû”c÷±^c · Q&ö±ï²´íÙU×m·\ÉQuŠê{jò‡»’lZ•{ ³ªh:•{žÇÒfåe䆀Nµã†vµ«øªÒËÊ?Á”-·TÝýUëç`WèÛ95=E¯’‚›¹]-UºÁ¼ËAô:~‘cÖBZ%ù~pO Ô±î ŽÓL"\ÖÖ—(ll0ŒZeødˆ§Ï®l! ë‹y~1•{ jÑ*Ì&D`ÉòöE³-‹íІÃ>@¤„ rF­³¦ÖÃy|âüVí/ÂUL.qv©‹Òk¶åßé‹\®IwÉè׌“îì{j2«±Üë{‰³ëEµýƒî19׸Mäj%LOFIuP£C¯””}‚ÿ7ªÚÙab–u®·Ëx„ük`tá€M³UÜ4óœaL5êã7—LKlÆY2ëZ€Œ|¸×x6iå󊜲@ø¿‡áï©ï‰ä¥ìÚPåÇ·^ŽXåÏ ãE|í!ŠÂ²0£Q[RÈ1Ю—D¼m°TfãxS¼4ÒC'r9m'mXµñuÃ\~J>Å|tgh``ÓÇõ0#ÊàÚFñq¯`eÈŶà#ݬi©œSdqíÛåK9·~Î8*;ëIÒŸõŠ&0;d˜ÔV6½ƒ©]‚d­ÑëD¼·<ç>ÔÔk^4£3i½[#ºù7|÷ÍèB3yA v׺°Ôämàj­‡J˜üÁ˽ «‹Jæ$£Xä{áJ³0¦Ìò-§‡Áâýkᡱ]À{Ã7ë}:vÚbœ|ÝJ|Þ"‡K™[ÆÒd–·¸Ss¯»¿Y—R¾{%ιªÿÏœS1ÊñIËàªÏÐɱ©‰çYGm¸\(ë”Ùd+)ŒëP¾U0—èâ2Hß%A„Ž$>Ë^ýçÅgkeËâV8¥[Õ(\èˆpq¹8¿\\ç½ >¾_·ÓHåü4–åÁf]¤éV",Iê™Ew¸gèRÎChÅsÓ+ÌNûqV„‘›‰Û¢ŒðGJlÝd$ì²@ï>ÛaånçUÇíßJm¦}qÜ—<2s”›Ä_ÉÀ¸Åò]¨ôGU’Zðo¢r…#áuà¤+ïš B§‰ÉEÙ9¬#E÷ôÚ!ä ØÐbmˆFè uópíȃ:wó (× ý ]î…îê¹9ð™ÛË”ÉĨè§=Þ\üÓɉürQ~RÉ ?XtxÂ'RTR>ÆŠ²Bž×ßæZõþÈ^@ûÂufÞé0" ~!aÐßbNDëâ¹ç2ÉÎ=@GÃfí’ݵxs1Ú™„˜òi"~ÚMr2è\åjYªé=šuáÄ̸W*Ô,™¬b¡…ÿ˜±j@ƒ9â¼!X¸d–Â@l+*”jûõÏT‡Áfú‘Á€~ü²®¹3è¶®Óþòz;…ny+}òa M4±>×4LŽDTYzCOÉy6y×Ê'ÿ§‹p._óhÓöMbßTR,UÁiøÿg(ߨÊB‘|Ì òÎ0nºRû·OÛê¥ûðzÉSá¿ÃÞ›É} Õ¤!Û+ú A¾Q0–>»É M&ªvÀιTÜæF§ŠH&«ˆdRûR1 :ë^­ªL—@Sìb¸s¶ãÕY6!­‰Ê²„<¨Á!Œ—‹ =<^_Å×Ê6XF¸i˜ˆ|+Må+^‹‡cÚ %.aµ6-õ丘Ñ;«#“’R*ä:‰Ýwì’”j]À6^ã-çBµgŠÕl‚Ü@SÐ)› yJ’÷äxüâa(®6ùÙ­ñÚë"Lð[¹HÀßÝÅãˆ×lL'€‘Ò(qÒeB)Ó¥Èm¡º‰Ž¥i?—µ”Ëß%iiq6 i PY®»·‰|²\Ú¾‘q™Ìih z[”g ºÛB»¶TT3c°:âSð5¸“’Ï 9§ÍÃÖiôÂ=d¢·»oÑÝÍx.“ËS¶uâî0ÅØa>WY½Ìï-gÏçreM¹ôÉn‡ŠÞ™s¾Ît5ïÝQ…F MèQÒ°ë:ûÂG6ÕuMA º:àF”««žw“š¬oB¹u„h‘’xº^(MÒsÔ:`&Ÿ´×W0Îr1… Ô„‚-Àv^á_ûè«útÜæôìPEyÔl®&"ÁñÿÏÞÛ7´q]‰Ã¿áSL„R!, ƒ“t‹K‚±Ã ¸qk9ò  Zhd ¶÷³?çõ¾ÍŒ$'Ýݧjc¤™û~Ï=÷¼qsÇSêép}×qé¶ óÐŒz»º©iüÛÕ÷šD4ÏIùhïV¯¾Kœ½ú)nþ²ÓüºÆ|Ù!’Lšàqn@bo@‹Rµëc="4/ÔN3ܰŸ¸ârž/ÆKYdoGS}ï-¬¿ñ‡±FB„± qxA⦞†¦]æ® 6[‚¡óœæØkyYy`þDùî7/½„`Žé~«ËVOý¬‹v¦,áÓxÒnª1Yp š†œVͦ £Ä[“Öðz¹É¢j…¯¾§¿OÍ·3¶:ŽÇ™#g¤Â’öÉÉ¥j ñyŠÆ3&iÁ°duŠÿd~kn÷‚Z˜ãq}Í]Ȧž,2×"gÄÈ&8ªù Qã¨ñQr=C´hm|¦LT=>9zv²óÚÄaÛ™ïþý<…ñ»O©\çÇÝ=Г³¨i2'rŸdä‹EÍR#L8îÕ¦) ¨±Ì rl_`òQ­]5›$`ôjYàOˆ 7ÖÇQmŽ 2:8ë<98ýûóÎîÑáé,àÀÛÐ4»ètpôdËiE ÛüìqÀê¹Ã£ˆ”躌V.sûTVò–[±à&…NÏNöþk5ÛhDÙf=ZXè^è2ta\…gu„º‡u…=?>¾„Ò–âAš8 ñд—]S3UYø(^9`ƒäÂcÇNê‡ T>¥"HËùñ#Ã^ÛŠ¾“£ù]T#DAÈJE„hºˆVbéñø2a–Õ¸ËvK 'c'&s/BŒ(@ÕñÕx¼yx`C} ¦„žlž¿QaŸ¶FÜ„iÚÊúŠhy-6š· ˜å”» —S®¯]ÿ«•üÊ»—ÄK8|•VÅiç/æèÛo¡;ÚnÛÈâ¼Û1¹í¦pgäÞ‘³Ef’iuïÙÉÞqÔ|U¢Õ°¡zµb ÁŒ³ZÐek•wæ[Í‘^f 2hÄHš¿Dº|ÂÈ“²¶>ëÐáÒÖøIW‰ÉEÁý&=“c)ð#ñæMÏ•#5:JÎY":ü½yV4ö/¬Vmý'÷ÄW×{5zœ­ÿÔZ‹Ú«-”ý` —Q-ªÔþì¯b0³šâG讜ú¿±UdƒKëGb~!NÚ{y|trv ýÐ-ÎÊR®ÔŠªaRêÜ€ñ@ÍoЈëÔ¤Ê5ª Äq³¡´¢¦º5 óºõjí§êëv}½ŸõK³öëѺ~¯Âÿj•Zôç¢ñÏ>”®„Χäbn½èÏ¿úÀ”ÀÁ\Hp¥¼Ÿ a²ÿ:¡{6QºñFŠ7“áËèj²\šÞM÷¾XLŽmªëÕ¤¯éí 9™HÁ†,¶+ESGk†tcœÓsŒõ®¼[µ˜Ð \e¤Å´•4|/Ž“ÊÍÓ vt1‰PÛª ëTmí¼¾Á4¼®Ó¶}ýHóVÂÎ%£àu8Jó%”äƒH6Ȫ›rºwa·Ï ¥"Â뜳š&™ÛŒ;^ë£_ ‡Ç¡)42ð·•@Žà7Y0øÀ¦•üâ…Ë:GMjCxÕ†iÄsj±§ £A¿ÛÇì*ÆŠÈÍ”ög$¿mù VÙ^÷ OUu+øƒ—ƒVùtJšÊÏË׺¶¢Ûaæé ÷I©¢«·¢âŠŒðä\¼¾ u—ÔþÌc]ÐÏäÇâs Žˆ¨tîúSïv“!ßAÝ®”RÙíJ´ùíz/y·>ÄøRÅ4÷‡žô_ß¾`ÏLø`xÝY­?ÎÖñkgnñhçÑ{âØO|üº ÔÜwµÿÇ­ïœåqífðïš¹’f,˽åó,Éo» Í"8[@¤ˆ°€…‹Ú‰·xQ<ÂÖ;6þÈ0J®G“;k¿h-\„L‚v¶B Àâœæ§°’RµªôØ/´öÏ8ۉȦÃþÏÓþņ gj®%#®š¡³ã‘¶ætC)l/j¾E¶{äl׿·ØÐ.™Â¾fŸŸ?Ø´àk»À1:“=uWk+`#JìÔ/b¥/Š›èô¡ ´‹2(á-¤Z!ql…Ã5 ,3Z_‹÷¢5Fw3ª;cDå5äZ+*ßçŽÔ>ãTˆÉ-jf¦®ßlm¶¾¡Û­>ô·lG¬oµ6ˆôZk®5/àÙyÖÛl­}p~>j=ô~'ƒ |$‡ªxÑèE‡ß|’Hü€Í^¦· ·V uUM<(·ÏÜêEçÔÚéq•N—‚ûm³¨ÃÞEÕƒ³]Ìþzª"B/(Þ&˜î'¼îBÿïï•ÄÃðºA?? ¤æ JXÎÿ yúÈÎA’ $»Ö}Fž¥ÒaWѳÝݪßy³‹!Áе èsZ¢já"z–õZàε‹¹Õ¬Ïxh¶ØÜð˜|œçóÔù~VñiO€M7ãs‘ïšt½c Ó  h  ¾'o¯`$9ñÜ[ÀK&”Çúù%f™¤  Û½ŽÔgõ±Á /ªP˜/ô»/çöUí|©HµÃÏw¾ù|½ZþäWÎø·˜O®M&ðœç3ùóØ"7/"fÞµg:|;DKlzš±âCY«;ÆŠ@•°\¦xO‘™%štÄb0Eâ^¿‡&+”.Ýï´®OŒ&ìÌ$èfcô‹¸?À3•Ř–ÄÇ ójjè–ÿm:h z…rOÙÎÈ®þ—&¹É§ícASlì)›€nÍt.‡Sä’Y¹±sòlY§ÁöÐ%.cjá—dœ’së4‹VÏN^ÀµôÚ ÖdËg‡/ÐL:é2q˜õ%õ­è„„ZÔä0z­>Ý98…fMj±è,°˜uúFE’½ùÝe½L®G°ä‡Ï£r.|!G@v•¸+,«E««$îu$ÆÞÃæŸ:¯t^Ž׃µE;}Äwõ*ŠºÖÐ¥c­lòuö9÷x=?ýM¶Öæo¶³¶“ϲ±¼¯Ãý稫î<Ù;Ý=Ù?>;:™µkÞ8ÜMc)¼àŒLË+ÊEMlò‹åIh{B‹PƒbµåÌP®ëAJ†)—iŠÅgâ];‡u_c³?¢àÍÞá~ýg’<–üw8ì9ŒÒq-êkI<©y}—W˜•A½©5#.£Ê;a Ó…öâm‰žöÙ¨?±&° ŽÒÃXä>ß|eHÞM}¤þrëS%N-בy…£]­^ó ªn¸zÜ4¦Î¼âlW¼Û°-kØÖmÚ\ û˜âX^òÍ ªrûßhCRm éjt»¡V»ŒÝh‹( 3oªRŒN“(¹÷QyñœlG`•lÔ¹ÚÆÃŸk¾ZC•Šìhu9ðJ´:JúkÍþ£ÿøfµµFóš='[>¬ÿåÃ(iÆãëæ º‘áXžæ7_{`»(°ú^†„Y^ S¥5ü~~б±F9•ºõ©.Â3„@>°°¾üžÁRËKJQó^¯†d‹M˜÷]à#eh¥ûb°%·Ñ7¼/€¶`KFiôUsgŽö‰¦çZ1M»ÑØxøðýòÒÒz´aÎtzš}ž§õAäïÏðWtRÑ[¹(S†{rhÄv[¸QçÅNƒu_>³ëña¨äG%N|²J(ÛâÖà½{mL:‡ç”ñ£ÆEsÀŠ-U¡=­Ör¸†ŸŸ¶5F;:ÞkGûÈewÎàü·æ·üR 1l¤ˆ8è Äž3°3}eŽñoS]“í…àøvÀ‘€²n ´ˆ³,íö‰o7HÇò>Ù€]â}°?|—¾e7„ñšJÚ4@€šË@Ñh¦…Ç2åE{Z$WÞ¡ObñX[¬±î˜µR…—ÏÌæ€Ü€å9;::ˆšÍ>ÆÎ¢É®Î oænð\ƒÁyÜEi€Áӽݳý£ÃÎáÎó=L„3ÚJd}$¦,•„Š#­Œ›1H‹}x uF‹n¿»ùx©ÏÛþpóe¤-©7²d kõÑŽ¿ú Þxòý äë²¼¢!]tÔìA&6õ"j%29ÈëÇ]îu¯Ò,î§dP¾l"­Y°lU!äÀ5Ù½Ò—–ÉÛX, ¦½¨Ñ+0Kx«¨z¥ºY)¸©Y/¶þÓn x»ÂÔµ^­Rõ†S©m­¿7œï1…0¸ŽÇÈLÇ/ùAÆâ… ë@ë*-K¤Û†Ïó“¿âßuy1’¿=Ñ…q‡g”t ÎR‚ôã#µöQÑ Ñ ^jæð¯E6es‘µ´€H:ÜÄwêã‘b XHœe}ëÕRôzÍ¥WFÉ«þëöûÆFûcs³þÓþÐÌîÕO[¯×¶ä Ѭ-dIˆµÂN´¢7Ó‘Ô‘œ¢èPÉ3#  Â1?i¨Õ~ÿÕ£öÇõ/´ã§hŽ5NЃH’´%0oñËç„>ùv2ÛÐzÍ… jf—ÿ3„©›Œ #3Pt DC@fÆâ·Æy%±”4Ì=bmyùƒzËúÏåï–óìÖN{¸¾~i)‹8¹ÒÅ7åüŽ×s54{B/0?tƒ4i6Ð6m¼j·¢öäõZÕ©Œ;«³k¡}üÙ 4ŠMoÄÞ†¼DjÃá<‡¡mpa&¢ëAùJäºÎI$k4§IÈ¡ëÉÄFÉÉñtiIä œ„ï€4Ì–&Z»ýLÇ}tfÛÂŒÅרä5µ)˜DšI}™Ãr ¯gAI¹>­ÕZµhU6P'…x EgáÙÞ/C!:!tËäµáV]ܽ8øêÑ8aÑÀÄdÏŠ4ñðöÑÃMõÇ@4HÔš•öa+ÄþÞÐ4 /i/i‚P™4{Hئ†#P·‹À#‰hqB²aÉ££ waù´6EHв1ç¡l9G‘|4Ú­õÞc<­ø÷çÚâ$ˆy~w"NEKeÔEŸ]Þг…B¡žúõ¡ASÂçÉ$Î_ó¿^´{Sxý‡LjŽÿt¸ß•HE¬Á.0zŸM‚.N¦Ô”Öª E*iÎg2ÓÞ0¯³¦UáýCýÆj¦¸Å €æu¹¬br=grF:ñ°£èU 1c¹¬Hi¸ (Í)®uÃÍóâ¼Ô¨"*ñ|A)Ìý(¥?Æ\ó„$XP"Í„m·ðã =4&pr) =Áݲuì¦+”A¶ ýTù1î“}&žsSEd‹L˜`Шl€Â*¤â悦?áÛUñH ½sÝFíJ;?¿v¥ÎÑ’¡¹J¶«yŒÁ˜9~šN屄ÆÀµ_·ØáúåúrgˆFh8zÊŽI~²(•?Íi7´H­»]o…´¼JN¢–’Ç0 ƒ~—ì;ôJÝŠ‚å]/–£Fʽ™á¼OÒ‘ÈäÍ•›‘ƒÛNj€©QŒK¡Hì ô-ÞÖß·xxÌøÜyCÑýx"°.R–¬2lNŒ"¬„$§ìòìçØ±m,/•gQÒ˜â¬ù5Ïߌnzo*ëúºR˜†6tÏÑÂòZg>ËLÊt¦f$*pºÂsºåÌÝ&Í”ÝKzvÿŒýTÕ´ˆ&TÆÄnM œšY÷è zQÖ𹌙j9®5v´ƒI®­f¸–çÀã¿‘%*?íJÑÜì”Ü•%„m sÝòB<]¿ÅÔÕ#ÙÎÙáB‹Z|ð³µf/K3ßQpÏ: VF*”•¢9²ùW/eSø;N\X…”å& Q‰‹wJvžœ_Œz‘Ž›|ÖÙ2Ç©"k´­cr^u§c¯­œ/™×BÅ©‰…lË¥a€m} *p°|51¶{¾ñÐá‚4;ŽÞ!óK|†pš¼ÉŸ{}zF5áh4AWÁU˜ ÌH-à¹ßäš_DªËCá<¯aEú@WG±7£ si]TísÄtAAD!áéîfµº^4’¦ÛŠqY‘]Apôº‰šîò–¨C°Þ' ¹Œˆ«0J.Þ¯ÓªwìZ mÚ¯®€ V‚3hš.*à3߯w$‚¸IjļŸÃÌ$¬*qùòjD—éd‚àÉ$!çÍí¶êP"ÁBÑÞ`¾§Hg;‹šç 8x¨Ûk­4j2'ÛLíÃyêä©"ñ¥uN4´Í›\ÇÛ¹'Ùvš­Ëµ?bœ½™HB§53f!¾œ$lKd2Ðn¯Á¬pót bt @Ò_˜q‰›UŠ¥+[/ K8H¤žÍ$_ùJ!o¥h˜X{šL»{vVDÔ8ô[¥jÀù£ 3÷‘.±¡œxÁ&Z`9?n¹ø• tFáѺ×ýIGÃT¿ÂŒêÃô5+à =eYa'½Ó4/çùÂŒ è̳‡Æ\BîØÆ•ǰòÀä󋵄´kä…(ŸAR^¯®“)áÈ8¬v²EÏ‘@8:<ø;E{â`ÐäÕË­èd)â…¤uÂâ³Ê…ÂFÅÑpJ~@/&l8êGIzÚ²Þ;é°¹Lçû½ƒ£Ãg§ýÃ*3öO ²q‘')Þ$~‹3Ø¿ˆjÀÕ$¿6Y<ÀPZ²?Bqa–M¯Ýtµ&»Ú §`³• EõêgËœ H"Þ:¹l#j‘›»ÄF¬¶Œ’ëø]?+¿ã ñ:K¹çÃq™™æ0ýˆÞœLC´—W¾ˆ8ö#‚žXÂF̓V§$l ŒXí|D ¨|¯àkFY¨]j¤' Q|žX¸•°ž=‘9@–W‚¤€!ð¸yû±a0/Œ×½“ð€RYˆœ’³ˆ9I‡)DŸEÐ}‘ýâÐá˜ÑéËíEu#BÌô<›ô'ÝŽ$ßÉ`”a†Ä^Ós<.É6a–!î¾¥œË( E ¹N&±U±p#8Chˆøw‰žQ@ÎM Ýð“x5r¸lÏv­<©áx¿O¢ïÓéxÈñÂâIÅ’½Š‚÷ÿ8ý¡#úãÇ6E‰Xå¸|˜‹­^âÝE¶ ü@“¶ÝçO(UóJôì*zÔº%MÉWðW‚¿‘SÌc4€óG@²ç8”ïÚ• ä+»WÔEÃNØ€ó^N³øô“~ÆizIx ÷+´Èeǃ>лÍ˨æµZÛ®ÉW”ÙÀ,ដ:ÏŽ¾ïœ¾øþôlY¤!Ätµß¬"Zj¦u—êo¿Aòalh€yälRóø1_Pýåïþ°};ºü걨"~3ƒw6ž~óÕò“;»;§{Û¦”>’rÏÿzŠ +Gì‡ãæ‹—Ñ[XU\Ñã£Óý—bWbõÀÉÄÁZ˜È€.’e ̲ûäxçìBa˜—au:Ä9ðÓÜ&#¸–—ƒØòí0{»²¬ç2¾ëÓáµµ¤§IN3 GG O^-—¸Qƒ¢ÉmL‰‡üÃ@¡I£B Q ¾>XÙ‚Pf.ÎY)(à ]ÇÝqª¿\œµ0ƒDMg%ú/Lö‚Ç™"°Ç“`?`Cƒ7ãF¶‡³ºY2éàÞX¶Ò]¬ËñEázHäv¬ø°]©8ô‹ Òo¢óc÷,´ø¿nGâgÁ›^7xI;Š!±æ„+_,9Mþœa*Ð)N>æƒrë¡<‰‚EÄg#1ýùσ3ìµ³wôt¹]ÝXv~£v ‡Åæѳ4†÷· X‡~Wô?¨/Î#³m?ec¬Õ¸nò)0ýäj…äŠiD«çu¾‡HÁ„qåÆâR *¯óe´®©„Ì%µnɪuÕ$×;‘!œ¹V S$›áj·NW&©õ]Q¥ÙLš¨¾Ji‚%¯ñÄQO‡’šˆ |ßÙ ñƲĹ;к޳¸™Ørr“ªÂ ÎlE4Ìâx¡?˜^š¼-i/Ú s:‚˜e€„ ã5jº§ sÌHm£…>¹òÏ5·¡ÞjYT}ÈäcÃÕ¹F(n¡‹3¼CCÞf`Ķ„ÕwFäŒÞÅœS†ópNÕrdäÌ”X†ª,G* å;Ï-½hWT~gW©…cØPn¸r–wB7mxÞy²Ý~#ˆ£]yIÝ8lR¤Ÿ^®k¸/×)MCõË/kí7¦YA3Üw ¨¶¨mÌMiÆÑÊíé'³Ú¸C ËÈý­ÛïOÛSޤŽå§»ŠßiÆôb·cz9ìÿBh¡”@ñÒ ¼+@,DßþaÓïaÃïA8ReÅÒƒù:ç@£­ËõuÒë°o-{âB " <4NH±í&XØ’ï[íêÁþáÞáÑVއ,¡ÕíŒÔ­ç…Á×,[< `]ÈP•_æÑ«è2ëáÓà’ÁéŸ÷¬»Sb›xÅq}YòSñ¾Qz{°Ì³Î!PBö<¡#ƒ9Ofïf¯Ä0¹jï^Y á†_oEô~ зß6ŽÂz¨z h¤-¦5ÛEݱÁ=4ÖefjJ ˜ƒ…U›•t;‚“¾Êr^ÊT»ò jhÔ4±¬(2HˆÛ1]t[,³33±˜è ß130}ÕüÃÞÎp|Hü„]xHËŽsÆLóø©Ê„‡+íîe('= Q—t൰lì³—,ê_·ë¿éB¬/° ¡Ù·.‚™\q&íe;Áç¨õs¨f‡ÚnÞ‹€N å¶]•êBŸÜšª˜«BZnÉÀˆêO[J‰<|«¦¨7)`¢ÈÑmWk·–•{z3È¢æ W0>´zEå\óÛh}}Ä#de¸‹B¸ŽÑŽK>¡…æÝ–‰SEMUŠÁÙb(Ú…F¡lþp"‚ÍîU<¼LÜ©¸läm[“)çxkG:JáèliÁ¯Íæ ÄdÁì­WÙ…v·„|_/,ëºâ8,íÌÅó Èü.Úçï§¥ê^dœµµ6Lk ÀvÝ„%ô®\—É(4±íõˆá'÷ræ#»B˜ávÌ` ÷“ùâ€yÍÈé¸Ã$žyq¹ì´ÅäeߪP±VöüŽnzf©¥}Íï†BFÔRÜg‹lêÛ$0¤’ôz1š°õœ 9\óÕO…|tlƒvä­€€gãX€.YÅç”ÃÄEl¾#ÂW<¶n/Æ‘eqqWðÑ”û¼0ƒ—ìÒI¬fïlAïÛp«ÔB¤Vä1C¸DxÞdMÚ•e¬(MhñA\5ß»‡j£7)§;œç­–÷*°³À]Üø¹ýæqÔV*ÄáGåœ~!¼hAW£²4¾à«]m:¥üÜ@0מG;fyÏÿ gÈ/ÀðbíåP ëOž‡*ƒÄF^¦§ƒÔcV „#&Ý$ËÔ¾5 CCùj˜¯É/OA ZX¤º¸ÒÎ’)ˆ–ôÃÎ!+l6)¾¥Òy/yr” uÕ*…ßÔf™a/ß·…³u÷ëè±x ÍØNÜLã¬[pö¼ƒ7÷ÄU$¼ NœžÒaâ–q¨‹þ­Ä:ê¡Oi‚ªh´·Åfl”õådî·Æ>¿´l„6bD¯I´°ÑØxÊAÈü_FÇš6Ï&bî³A¶e$!$õ‚ÄYUm6au{j `K|¹dñƒf1ÒÓì2þD4/C™$3Îa#%ÖÇ/Û~WÀ³ÑëŠIUºÇ:TT˜ÙwÞÅcY;¡¢FoÛâ˜6lÜï¡ÀtÈFÑ^N5¯áàên;ãùË IvÔ­‚Ö&ï7ÎPî=Býí¤]õß*ζ 7‹S)eÊr&¥>­ø 6Y¯Cjã‚~Y «þ@X5ãè©#ÁÉ_‡ÂÜÛ÷}rt|5z…ãvI‚pÔ–2XßÚBz}ÝÒ¢e ˜;‘!9t_Ý ùŒM™yeg!£§à s¸PA˜9^Ôgµ Ruœ$ü•F_4¡0|-_hF̼¤<®à—šõ¤¡ê.{o9sØ9ø&F£*sÄí3íµ 8MØE%“AÞ/²­æ<ËìQ‰>;nCæ~e¸ècPÇÐÐF mXÆN6F |ÌzÎ…@©ÕÔò–.Öêjαy)±xA-ë\›ßà¥tøbÂZ0Ô~Q®=-$*2ñpfTfæËy?;¬ñyì<¢è^†ܱcèáÌîþÆQ´¸µÇÚú2®:[ÎÑ&TàwÅD}~º‹V6\g÷ä¬sº·ûâd¯sxÔy²w|²·»s¶@+QJWúCŠnýÙÝ´uõ­ÿlèY؃)Äs¡Bö!l’ÁSi_’Õ™Çp1COAYÎP›•@ªš!½ØÂF#™O8­kص´››`;ÿYœeÉx–CU¦ÿ¬‹¶£þ#ÀcÃ`å.ºÃÉ hì.[G|úiIø¼¤{OC¸åvO÷€3Ë¥YÄ<‘Ï~|´Ik¦Ëîïžu°*¦/ö9pÿÝxÑá/ö…,nŸ}qÚÙùâô$êÀ—½—{»¹ tÁâ_7Ür¨’?ìümð×ÙÞáßìçGÇ{‡¿*7ç•’}·¶ án»{†äuçùÎK/s&>„gÎK¯yx‚oö k¹¯sI9µÐÆÃͯÜ ñáž¹ïm"<ˆZ¤fK>;9öKÂ[’`ÚZÂ=¦ŸìŸÀ2ïœìœ9ì=Žjë5ûŠVÇy·U+Îg[çõùé“£Ó ÍkçÉ>;>æ‡HîÚG§›9ˆÀúßïIÝÁàÓ¿Ÿží=/DQùIv6ñ)šgg(ÒvÍâ>­ïOÙk |Õ×Â+©x±©ieÿ´ã½”wý —€÷ªÎÐaRÜ`ðnšØÂÛËK«%­RáÂWML)L3)éÔ̯`ìpü—þ ýwÎsËÌqñFaÎ,ŠÚ5ÓP(*„«Jx&;Gï÷wNþî_úÈ9—zï¿|¾spp´»ŠÄD r‰¶JOP+qË„ <¡·kQÖÿ%I/è}÷B[Â`â«Hœ&u4ö}Oç=såÙûã”ëÏÇý€¨x}„²EM´ŠD†{t1ÃÞ÷/ž‰`_CæãíŒê`²&ÙŽ6 ž+~ý𱙺{y«<¶£ŠPâM¡¨u…ÝÑ`¹·@õ¦# AXk™ö›•éLh å¡u<‚É9,ã<$?%Çj˜ÌÄ´†.‡Ê÷JʘMaøZ¤Ä¨ÜóÊ"NF}‡P9©¬],+åºW š#Î.hæëýK1·u·I““K*Y „Ÿ?i_ >oâ°ù¹½Åß! 8å~ƒ*Å"#˜¹ˆs¸3ålçäÙð.,Žë舓¦#¾ãû*%€´Ù€º§'rEVùÙ/ÚÙ}{ÂéçÅd†f:8Sk…£c Õx|²÷tÿ¥$µ]/ºk5‚ci‘ZŽg†s¥´f”ÛÿhŸÉ¡5f¯ A[’…žŽ@ÆŽ)âUÿr:NšÔÚo‰Ôˆ¦\+î6á€Llzö–[|m݇Waá:,Të4€ÊF›qø&‘ÓáH:n*_fÖGåˬVi䘶[ÈH@½n‡ž€f“\C¥·ºP„ù^=x ì5/ƒÆý?.—”G—`@Ö" R׸›¨qG² aG.ÙdÔºp<2>àÂÊò(CŽº`1´c®w̰R\¬ð[°£U¼Øë‘1÷ÿ2ƒ6ú›ê>í¸©iÌ}È— KÀzç„'n÷ˆûüò¼AŒçfeT¡tx©Rˆ/³ûO­du²d‚„åªX ‰H'"¬êD׀އ; ^‡"ªÖ#”?ã¸ã Œî:{ØEƒ¤Q\17º‚i YUHM5N­;bª¢BÂ^ ¥‡z™hª»ŒàŒ¦YPRAv¡BÃ@5øÌªÞ ’Ï,SÉpKW+¤“ƒ<Ô™:Ô¯;Ñf“..1å/5€à<Â|!ÒŒî„¥Р¹o\–Û7§•{¬iA­`)Üž7Ú…n‘„À¯gF²,¤‹ßøl{C*’ˆÙ»æ!&!Æ—ÏÐ Ýþ –Šè&.‘R±‘©Ô‘»€ÿʪӠˆÑ êÿ°j‡“?KæŒcaÌkã¶—–X¯¬‚^L´ÆÎD´!) F˜ðÉEæ(Þ鉅çä¦ß•û3ØN›¶ƒ öáÑ™0TW”sßYê’à*¦ÈMn&ÞyrTÚÞd}1VËLß.ì*}`ׂÃá̾yGecRÎ-“8î)'ÖI3‡c^¬^´Ì^ è®E#¦¨DO´:‚p鮯þÒ¡Ö´^GD{ƒcCKkX£¶^SRïcisîòܳÁ–RRÞ¯„ó+Å4%¸<¼ËAÄQ4T8¼ · F]ƒdB­h0å5Ð ÖØÀâZþùé_£ìŠ+À£¤ (0 nE¡TpÕÖ‰˜å%;7Õ6³{óŠ•@ú¡ lWIr][+±¿^SffM±‘§tM±™M(5Æ6+•Ó „rÒF0%¦rº“P„ߦX_ô±ˆ·ÞÍa´Xn ÆÔFìòÅ.*KËK^î3=_ö^{ÁO¿aÇ£åú"ëÂtŒ±”ÃúHâ¿3F¿š’€S`<òI‹34yNº§3((Mbem²J^Ð Eć’ÊzÄàètŽ;?îìŸ5"{x*2‘•®™2Ü·¹57üEÇÓ÷Ì™¬Ž‰ÀB£FË.Jgxô¹i”½„•èhW`·*¹=óçd¶é0âAWÉø°®›hW$UÜ(ÏpªÂP:ò±‚Ýä­ °±·Nƒ¸RÛÐK‹bT'¢K+ű‘ïâ1¹:«~iŽþ¨Jþå"-?‰¤ù=Þ«üð›eKÞß/F ñ’×É5zÓ%·W€É:+Œd¢pˆ”–gÙÐȤ’Âù‹¡É¬äÙÌIˆ:©MdîýRé£-¹Í?ú˳ìXd9<öÍ;fRðŸ¾í"ÔQŠ#uö–Ù­>fN…zd_FR0AѸØý,Œ®b˜êt˜õ/±@ª"ñ†jLú¾ñ]m«Æ»CM?ØŽ6­½ˆ`H:ì135küÿU$‰Ý†fNÑ*¯ƒ’ N¸ÄóÂ|d5Èf´²°5Óî„Í"³É=.‹°ƒº9î9v>²6 –kƹ@Ó]Ž*÷/xPRaZG¿ÄÅA_ÄЖ“4Ù¼7×ä° èj!*ÐW‡¢Í(lx”{ÐÁ4^•ù$Ýèùµ^´NbLHŠ*·ôʱÆŒðšà/ä¥)[e#tË&È…2˜ðb@© Q·‡Xe]*%]sžÖÚk>°Š„›–cG=Æq»ÿ­Ï¼f"t€âtý u=κ\½5ãbØc!Öʨe“Iz»ÂÕ…?sËÛÓdÐÕ{½alŸùûÙ)ö–˜ÃÒ‚pvÊ›ÄRÉ –>.¾g8×àE IùO4r¯N$ ˆ—vØk÷ôª_¢Œ.¯Mt•)•£›‡@0s¨¨Çê KœŸ¡›Ãûú¹T>˜ìm<ˆ FÀ›afF¦<-üE˜@Öø½±5qºûÙнrÜå°k}l÷glé1–~ƵZZ ŒÞW×~Æý„ª²BÒ5‰t© @‹ÍhTw PÞÁmlA0Љ?±÷³,9óçæèšYZâ ÇÈoÊ »¦¨;£†ß k½$)ø¥F Ç ¡nu-ÌlÌ¡¥æ_¶HÝR€Ë¼Vέ¨Î„—J ax"ï¼ã&# DªZÝêÔ…Ä,É5àN›TÛ4‘ïó•¼y­’&¡ÉÃv gÈAšeZ Ÿdë˜Ø¯™ÖHªLiÑ Í›ÎBX®O/Í@Ôœ‘ÛšE"™ˆ> ¸ÛÇ “T(FùÈwÝI‚Ÿïø®’Ê«ÎE„^‘!; ŸåxÌaÞËCxó|Ê!XìÌ>÷ÿåÅà¤ì2,½Í=Ç2å YÝ}éøPþÕ6h.tG°¾¢ñ·± (ªñuŽc)6‚sIOdïв†âÕÑ Ñ+r¬Ô‰®/ÜJ÷ZÉí‘ñs4ñ*è2Ôæs‚©œB1À9$_—ñ‡LYùþ&›'Þ˜ ²F$ë^ßÁÒl4âÞºIˆ„ô?Àù&÷2 ˆ Àà“xxAFD4xÛõ *^î¦ôkµßF¹ Yý¢@1ª+Ñ7j6 •¸Jt×}[0kÂT'ðJŸFƒäb"“˯üaÝ ŽßOïÅ&n¾c¯¸‹ÒP |Œkb˜J|˜M|4˜¼ÔòÀ’…0?ã „äeÖAÙÎy©iÊÃÜ)›¹Xl¡"÷Fþc8F¨$‹•Ü(ó VBè{‹ûóùaѽàÔ3‘¾ð˜ßig ¥ýØyEçÈ{ü¥âÜ¢ó‚}– ÿ¼µý…Ä~Ðs$”e\¥ˆu$M ›„Ó€s4€,¼z¬äå_íãÄÂæ¸ƒÙŽÐ¾(SàЖý©0º]hÙ¤P—ÙþhƒÀjªñ8p “B‡¬t@s© Š\OÌ;éâ]®3–w›ArgÕyHa6EJ¢+DÇQbãr``òöžfÁªàH·”ùva>S¦ÐëË,爗wÖjÁŸY+Ö ü4·ü‚˜c¦¤òý´ØÊN¶Ô™·#×£0/^¿ÆõÍ.¢œ™¨.Óݨ½—ûg§;û/Nöü©<Ý9Û9¨äçoÀaÄS(p$X.q¼ó4¨Ôfµ²Š%ë•Ym:æ¹­fDËÀShµ²JåëhÝÞþzßÇ—Ï„ô^ÌÈ´N1p) Ú¶¢¶ÿ–ËïD©ŠDªsÑñhåßk7¤Üäñà&¾ËØü7&s™Ý8€‹dؽã0M_8••÷1ߥ4Õÿp«,/áÐ ‡¶uïs³"‡"âVUƒâwp%ÊP@ëöÈñ¹Þ¦kG㎓®‰‚ ^8â§/vw÷NO­€J×]½}¹áÞGç†ü ®œŽÌ0¹ázØ6”&ƒ[ŽÚ¾ø=§Þc¿ &( OL!3žü>hÅa¯ÊêÊë,um]÷ǦLWª`¨…%sÓ Œ¾8–s;÷[(îU&^2RKl:báübZÓrÓ£Cf8`à`§Orô½?š º©ã-Ø¿¸3ëüΉ˜øë—9±ûÞúÅ|¬'%oëvé ¥zCÓ¢<4›„¬\坿ù‹QËàù£Õ^©Y)s1^әޔ£Ã×ßÂpF²^Sñln¼.qűŚM•žÕxç"c¨ÈLð[øâc¸ÝÏ1ü“ÁM»ù¿n¿r; œÞ1œBî1Û;‘·–I-ôŽÄøj™‡Áþp]ÉâiµN^<‡éD’BÊS16£?É’ÁUä€ßn¶:cž­„Ã`Ú…©ì=?=ÞÛ­ƒK Ç ^jŒÞÕ÷ÑÑ©xªì>=ŠÞ=ŽÞµz7ð³”í/ÒS8‚xø8t‰WÞÅàÏ’‰TÚ»]ýÃ;÷6y,*æýòàÐFçø`çìéÑÉs/Ô9<3÷?‘ÝëY–#‰*3oÁß ¯Ü>‡$.ùiÞ‰ä1A<¹cL,̆IvBA kQMlšaaIµ¾KytÙ2 ¶&Š~L؆‘Ò•ù­AÃn‚6’6ÚٌؘZR1bŽ,î¹ÖžÔØ,þ­Ô¢U´¸Â¯ý¹Fê}[«£°;ÆÖ4°:—´iÍè”’UP °ø\Â*<ôÐ6“`]÷±Wrkco9ì`BƒÅ2¼Ð¶ 8rÑl:¦Ø©¼Zœ&’™8`x*-É‹a’u㺧º…¨ØÞÓXí8H  i@ý1'üJ..à€`¶S /7¥´×ˆ²Ü”u*´¬CŒë)îxvÉenÎ+Ã)˜›Y&Yr­»³¹6|°a³m’é†m%öÚA;ÚôZȠᢕV‡ÌªêÁÄô Ío#“‰ªÝæm÷‰>Çh Ä0_kOúþÎAg÷‡“Ó¨Ò®´ÛQûáà øoþ{ÿ}ÿ} ÿ}ÿý±ýpã!üï7àý¼ß€÷ð~ÞoÀûMx¿ ï7áý&¼ß„÷›ð~ÞoÂûGðþ¼ïÁûGðþ¼ïý±’ßÎî_<2qŒ_žbżùÞòtaaÇü¤¯–»p&N¬VŸW\7IWMþçdCL®oìä(œžuUÛo,BÄ o¸ðÂiYÿpW‘ë{Îãýx*È®ç`:L7A‡wF/¡t‰ùsÞ̪ˆ³çãe‡‡á—ä#f1ËK:(ëôÔkf@Ƥ‰Ñùø­¶Õ(:õйDMNIêÆí Э;Õ%—Z½ÄàðÄXÜP²J‹ ‹5Š]~Âö ´îÕy>zL nžLh·à }†ËàÎFT\óÁƒÇÆü"c²š‚¬e8¢t£Œl&xÕÇ€p*cÕ#¡:ÜdHÉÐl{£zàè{¼!øM §´áÔtЉú½h²¢™9çÂ!ao­ e T›Š(›òûs=X=xÑ‚ýf»À6 èý“m¨·Fùµˆþ‰|üi6Õ”D ÛâYÈóîﶃfî¹ñã¢I…ò'ãMDw"¯[ß>î wÞW¾ùe¥¸–æ.œ&ovO(Á7ÊÇBKûÈù¸œHi°µèo0Z'—C }Ð…ÑäE˜>s9[ÿ©½Új¿ÿãŸÚÛuøÚZk××Ûíåöæúò¼o¯¾ä5>m·7Ö/áQ¾×ùÝOíák¨ÒZ[GÙýîÀÜ•ŒéñúhùrùI­tF<ÿ†skFLv Ø~ƒdy§±Ë'ÌéF;'Ï0õëxJ·ü’¨\½–H6÷ííšÀå(‰çˆü`D–ËÚ–Än°dD˲XYHN—´Eó7ŠÖÀ‚o<üùÉ^Ä}­¡¤ZCç¼èÜTCÍô3øzÉ&½N|Þ‡§_|AÁæw©Eg?ìŸFÀqE§/£ÝÝhçéÙÞITE[¡²—XòïÑÞËãÃ'{O¾ø‚2Ô¿KƘá‰K£‹A|‰i$HÄÃrî|¿or‡dÒ›dy˜å¦ %ZÑÁ+'H&)F)¹ ØÌÖD»/_>=Øyv*áìýÙÍYüJ~f6-Î<Âí˨²öa­5¡Õm ³^=lþé5ýÓŽà”ñnCîííWTÞ{<ÀMÂç*MâqN³ÄŒu{¨IüÌ>–—…³è6Ù¦Àè-Yûtöº8A9»§†ðù`s}êÑͣ͵Y‰?)‹o9€jÆùÐ-ŠFGiTpû5rŠ*dN ™ô)æû"ÅüHt¢*…ŒÐçjÿ¡KqX Ço É5E:o=Ù5Àí@ Â{\gtü“ÛÉ86M 4SÑ„b?©3yø.åœ-S”ÏtA&[^ÜZóîéþËç{[ÀCS“éPQOL¦ëÑ8…ºÎlIŽ£ÃÙÍÇx L[L†—‘ŽÖUŒ^YjDÌ1ãÀP"FÑkÚ ÿXíé5• &äÁ¼é@Ã?…)Ó›†“¶GO¤i¤9L›¶×tèe1§¦O7’¡¾ ‹‹É-’1nšNEY2l–5À¸²‹~Òk8áb$‰b8lÝpýsÇÅÀæÜ’& æbAûvu˜%žùulWäMTýŽùðÁx5¡Ëx€ü@øÒ«I¸Û~ç™3q$ƒ¢Ás`(`Ãûɰ›ðƒtÐëäö’æÑ³%¼Šà;„à·ey†oý'žS²:ïð3/oc?Nã‡~Â3¨ƒ)¬è!9ý!ìy)*¿*@^ˆw,STzŽ×ôXÇ€èÁ ˆ:p~£ðT«qŠžNïn_÷»ÁSÈí‚gqr™Üò›KÍlb¦›žÿShbñ€Eú¦©QŸØZ€RaQT-K‚¡•€J€p©J!˜V·ŸN³MÎNÖŒOI‡ ]À›A÷¶‰TÐ'ïL­wæüÊ%áòÃîå­ó¨¬k&­ç¸ü¾Âè`,¾0“~‡Év¶í×K@ôõM¿íØCó3¤xݪ7ƒ¦÷„!¯8h æ;L]uÏ¥&”úÑ¢0 iÖä•i¸ÉÇQE²ÍàŠ²÷#÷‘R%/énÕ϶›aŸ wb¢r~ñ-)-LGQ ί‚qÚÉMÆOF& íÅù‰*šê†rÊΣ¶çU–—¸Õ”[¦f_Žå%“Ó´ Ð%“…:÷­©‘¹±:¦þq¦´äT® æ-š•‰cû  ¬~„x~½ˆ¤L8‹ãp…¢©%“Äbö!Ù¬úô…pƒGÞBQ°¿‹¾;BŠ);³÷Þ %Ãa‚ªóC*Ø& Ž^K‡¢hyhê#íÔìû›‰ní`Táîþ‹‡è,Ý®KyøaöÁšª…pm®gMšKiãâã8¼r(4§{â|[_ú¦%ˆKgÝÊ»j(:x™Ì ]04éûŠCÇéôò*Ô0™¸N’‰üZ餛X'‘s¥º ÄååÑ N®jžK›„[ŽŠE.qÍ'“»Æt(âÚ ždU üL­ø5:ZTb»Í"=ìyä2NAÙ’¹œ8š®¼š4@%b_OŠŒ5Šl€³SêÍ;¼Ø€ên‰l³›ˆO÷}˜Ò­ÂäY¼Zi6#X¿Ì}âM0Œâ gOü]ÑBØf0»I4 ½¡˜¾(}Ô *ÄjeÎmÖFÓþmf¿–›úÌy»`£E+£˜ÜˆýÂfI½ò “ï 9“·#8|~]¡æµeäÇTV„gÌ¡³Ø=¡"‡Œ$ 5,¦¥¬Ì<×2¦» †$ù\üp1BãèÔíáòÂ*£Œ¥QS7Â~dU…?cùÕÒÒ,0"úÖ`bZEéõ³„Bw_LÝ\ qåH{e˜ý©ÎmJHüÄ^–ïþf•NÖaø˜" À¹«u=¼»¦ª+Ñî ÆøÂºg£êààoÏUÌÔ°t(vS^?ëÆãJ¹‰Z“Œxû5T0 ,z©ÜØ,ÉÈ&ɨ5shŒ­ÑÖÛ'¶Ýó”Åïè5ŽÈ݇¤ r<D4‘æ}ƒ‚ïJUëTÞ1–.¯œ7m‡®ëþÀdE` ?ÐßpÛèõÞÄ©ŒSÊ9ʳh-Ûb»è@FâŸDl’6лfpÇyuU棕­þ‡F6ˆQ0"'Ø˱d[t˜õY]àø1|ø ZôàVÀCž²à—³’ ©Ã¾Ü>‰ËíPFy_ûÖï)(¶íŒ øCQ‰ 3¯¨çOG!mÉô-½Ð[7œÑF8§”z‚f+Q6=·î߯vFÉ©–®”¡fýUÖá?lî–—[Di>gÍhF_“v¦³BÖlcD£¸#¢¨áB­dÆ-·E՜ݬâ8œÖ—Õ}ö äÝS‹°ŸZFï[[â·Wz¥9“7EåÐ+ö5'ß¹ùÌyØ?,Ñðça Ls""QK•Õò;´W§<Ç;sIò0 üao÷¯J–#T² ¢Ú6c\Ñ)mEQó(Ëâë8Xér2GHÑc!Oig=à)ï‰=à9RÒ¿æókhWÐŽ~':ÞßõÚ x”ˆ5G¸Ì#{^ÓaÓo4Ýåö!<ÀY åþC;eà@‡=¼„†ÞPsÓd~¸ ÁÀ½--@xå˜ÌÛkZÌ`´²OKK¶ og‡lâ¡âÍ‹*:6½lIyZ`s3'%¦‰·Ý°Ž£x ÃÁÜwe”¼4Çs%:BãBÍ3€ ‡¨˜¯ù8êïšãéP ¦ ¤@aö&>ÇÇ2æ2ŒE3q²Ô¤›©Þn…¸Tsm›ÒÚF)\–\ðÜÝw¢ÈÛ‚¢Q(oIB£ív¿ P?õÉ~–\Æ#ß:‘nda:ÎçVé,(¡5›Ú3"z¢ö‰ý\Öî-ëP(ËŸÛ驨7ç×’·äuÉ‘£ŒÆ *Õ*âø_µÛë¯Qçûj§ù¸ùËë-~RXËü~}¯éW“\ŸÝ¼•"îO±ÜX °¨Âq‰Šåž˜é4l=ó9!­Â'Ô³¨ñÀKz¸ý„.ng÷a„¦Å;–]5ð%‘ä|ø@uJNNft,.;^ÚÄ-:‰_Ÿ’q™ÀMtsÐZó¥)Ì<¥ßôl1Uqå9ªâJ¹9t»¬EÌMÁU.*#œë77Ï{ÏmáùÌšƒŒbþ6üK†÷yøfpÿI¸uæÍÃ-N…‘h1–ÙF»,(ݮ̩RÏ3JP|i¶ ÉUÍJ§w†.ÑÓ¾-ªÙb-ÎTC¼¨ÒìXHËîÇ]¤—L0ínkåÍuºÈ:TBTgWî±1ñnú·æ$0ic5Ã>#,v y ï ¥I’¤NÓ fDZ^* /†kìÀCªÕ$¢@ÆᜓaQDÜä"&͆7B´;hŠÝŒÏ·C ùká̌Ҁ@‡•e†U‹ SZZ ùÅ-»XXƒ”M‘×I†™!Ϫ©:Â'M%e<@õ¢–%)xÉ$Éù$ˆ\aÚ3àhdI¯i͆ÄAiICO ÌéÀ^†sbâe Ÿ£Õùîò’îSî hv¥ºTÑ<(©€ÌS“%¡MZiqÅÊi5äÐhû'û/ç’9ؘ˜Í,jì>ÛZkÀ—ýÓ³­5r™jm­™f0;!,ÚÜ%ª·a„Œ6[@ ]Lì-–²—k3ÉѪy Ó8@’ð5ý³¶µfl Ъ­sÙí®[Ñö0]GÉvÜ¿ERÒþX@³W]Ñk9«u.\ü씊“qÄ [ó Õj†ûòm¿¬Ék H » ÝÀöÁƒíqòó´OnfâÓvžLn’dÕšâüWݨUæ±;DÂ¥IÒD¬Ë2mÃâÐX†œÞaPµlœ¦“Ò9-/Y65¨cÈ™ìŠp×g³¼÷Ðöù¦‹:lLVƒr=²[rå·\Œ^¶ËDä­½„]É;:˽«¶†}ñ³*‚Ú §Hï‚F¿4à ÂZv@x«þ`ÀžWªlO¤¡0l¼ÆlÀ§EH*•%ãw‰–ähüC4IE“êÁ´‡Ž•QgÖg… ¿þ¸Le{O¶Ë•DãRZŒ¢°oxÁµĦ±FÁ:[\ñk¬‘fD]ÿ¦º·ûѕX×ײµuVumJ­ÕÞ˜eÛ RL«Æ»²…õ·,÷µU,±€ràÔ)qK¹æõmç3{¶Üb#±åƒÍAŸƒµº{ÁºöR5w><¾.ºks Ï{ìõy’fîfË㫸ÿvª2º3i‚“T™&œÆ4ÚÅcxË ¦Ð«qeÓî•æO*Ò  ¸Ý³§’ŠP[iǰ…€ tÎã$q~öÆñe:¼Ü™¥êb¿´+Ú¢½#Ö0£’Òõ®ø†ÙzÓ„ó¨âðQPŠOñ¬ÀeÐú¤qfiÏ Œ5Û­W76_›±œH)X.¼üœé‹C¶Pþ§lÜïPWæ"Èá&.ë)ºgonÖMµ6ß}­c…ß_¿ûÆ®Ø.r Y`»ßét'w£ä“@çÝW­Íéq|búÇ„:70yý}|q¸ÿÒ‘:áݘŒ'U7ãÍ€AýÂà$h¡Ky§íâÝcÌŒ¬ ÖêŒ ŽyxÊ.` _‡èm,^sÄs&Ò–!؛͋§eH¥â»°ªQïô£¬ Ù0CI1o.e¾V$©îtD‡u“A„n‚¯)Õž!oÈ\!¾C· hv<0mt(*Ë86¨áå@ým$Õ8ê‘Õ<·N-Oè|r¿Øz“°îõ,–Ód<9'~ÜN5| šš}¡a>4›ò­î¯s^Ä˽K°C@›cDjÁ²ËÄOÓ`8A= ­D›áªnl´¾jE'hàŠKp4Ž» ا—ÑææŸþãë?ýI&®°VÏÑ3pÚ3n~3'4³Ü ‘<)V }¦ç‘ÛÏl°X,]ríë®Â^ ùÐ|Ëß>4ÿª_Fæ]“¿5Ñþhu®ÿ¡iÞ_ *¸}hê_üïÖ<Ä~ήGÛk¿?¤Üg7 õŸ¶ 3ˆ­k`¹úƒ=ò>n’6†ió"Î&Mq@Áe…Ÿ®?Ji=[å3ÐèÆ°-¤ØYªAy%®âî[ô¼C_6ñIff2Oƹçd'äú¸‹‚»Œ“ŸæÕAÃõ’5ÑÂ(ÿ#Ke+5 5gì_SìÛ¤E¨ä+Q8{ ™®xM•å\+\|åþ\'!´i™®;Ê'óþˆÅõ<Ë5ÂöIYWýÉUÌ“²*u¡ÉMá¼Qíg“„—F–H¥}eiIÓVJuägYaQ{rQüQRðD ÝÎ,U ;ª5Oj®ìÈŠPBùÊgžl;’3g(Û2e²i,/ß²a¹ˆO×ãæ$'žòtyƒ0K•¦F¤0øïã"EvÓ¸ƒ$&φѲn ƒ4EãÎ’vEùJ À¿ÊŠÎñ¯*™º£Ì é*4³2ºÈÂöIâ:yåRvaÕ^¿g3Çd¿ƒËÈjÑÓbÞi‰Õo(Ìù9<Tû. ˆ­znÆ)ŠºyKôÒÁ!Äé&Ψó'ýË>FP~É@)ïì¿,[j‡L@:Ç}°\3!ê—&zê&‘káœòìxÔð|Ëûd½ºZÔÀ 9(–þ±Û(DðÜCìb\rÉ1s‰,SúPlÿééãþÙn@Ë)]@ÐÁ¶2r‚Ó‡ï«ZÇŒ·Äq%ÀEz=¢hJ=æªrËê±õŽ?ÂÜEá•®»Þƒ’õüoZï›Á'/ùÂUCòó÷ß«—Žy‰wž¬Ý‰yn—>pÛqÌ#f2w¦‚1Xàâü³¬ðînP\-JÊ8öæuvÙá ßivu»†zÇç  ®^¸~7OiçàJÀŒß¸b=ㆈهÉGccK±³,`ï-;Èo¾jÀˆú£ŒÂšðãdH‰|¾ù .}ßͧÏö ´ÙFÆ60ʚМÊéxN·(ØFýä-'LÞ^›9é0ßȃ';ÐÀƒ'OÌ(fÏæ‡ã‚üìV6p'25òªÐêûß?/¨s˜¼úêë×ôå6늯yR‘&/Ž˜dpƒÏvwmO׉ìñ>ô±6µº•yf'¼x™›²M`#¸é›Í.&û¥dÍ Ø$´›kxÖð+EC)ÌôÖ} z:!¥®=ŠÌ£’ªß‘ÁeðÀ²e£tˆÚe2U0]M€Á˧ãÉ©†ÎP’i[¨â C×¶*¹m]8:61·Žp§.ñŸ‹Á$¥¿7WéhL߀äjòIoŽÓK@ø8|Ò$ûÔ®^÷‰ý1àgÁd°=§Mz@ú¥%xR÷†ç'•â.z<¹›û“þ/‰S›œ¢Ö±7Iz«÷zcÌm®åˆå)ö¼þØ‚@FQBâzãfY+ÍUcýh·â{®‰JgÝþà-,qæ´¶ ¢c|†sšôFôé·è"‰ñ4ñÀv×]QgóǸ‘‡$ŒîÃSQ‰p$nµáUxñƒE‹< ÷AqÕ‹ª> êù€˜ç ¨ºöÁH¹|0¸àCsÿ¿ü`äçD~h>]ûða˜àÅ%üGàúA¡õC°~ÈßÞœ^?¸õÁBƳ×ì>} U¶·ö'_h^s„vEeKew3%†Zt‰ñg²ªïH³MTv¼InG"ж¢Zk­½ oÚõÚÕ€X8\‰ŽN×7EŽÿÛÛ['°½²÷ƒ¸#²­¡{§R &RhóìfBËïæ?ĺxÜl‰Ô:$ºdñ\¥v¸¶jÈ+b"<±aÇÄ>ÅüÉ-Wc3F3R SŸÇÙ`×÷Iª²^2å/>à;Ý®µÐ‘ƒÅ žqcr7L½3¸·•A* Ìtìü4—Î…œ9=ü™wç$õnÞŸSWCçL'QvÌvé´EJ}: Š”øˆ™ ÿ$¯Nñ}»—Ñl7¢Ù^D³æí†¸¿Óù™~.šœZàszv.äÓ©¾ˆ¾JÛñû•.œ9k\‹jä¯Ñ×ßÃÓ_Ñyq*æzpæ/Ç.œ\Ø ÕàÌ!ðâ [-s'Ãr9?NMõYàÈéF ™ãÉùk z1_Ny©3g¸ ‹zËý*wNÞ¥BN Ö~ô^.\á>E‹™ѽWçà‹ytÒ²¹tò¤î‹çaãyø¸È­³—–ûu–iqÑEâý·b–!ò‚^Ö&Ù£… œ¡…†««5ÇÇ£lìÊÙæ:»¨œd2ñEKm¦}Óð÷ª~ú™±ýÃ$t>ôC¼½ø~ä|qœ[l†¶ëšä†$šuM°:jöÄŤ`Tî]±ðÀ²$×ݦ٭”¹Z“ìöÔÊFÓ.¿büG† RGç)ÚˇLP\À@áUͰÀ5†¾JD’¡92Ô•È$ÍAG2  Óú•r_¡R€¡Bë>†·åµ4<–Mú“i ÈƳñÃ|Œür\rþóÒ ÿ >gÀÅcÊ4ÊNžSà;Ç6þÅÂÈæ*‚3ªUÅ­NÔ0Ä‹:'>x!½é{Añý—Änwð˜øœ=¹ âîµËk˜=‹K:^Z$Çð/ >>uYu§zœ¬EXò˜£„²‚»?ɬCIJéc©Ê=ÇFÜg_w¯œË[Ë]ÓA…ÑvU~ùëOëkw`ûüE]1ÁY—†RXMî×uw‚^x1‡ÛoÚlùΜ~Åv%jˆÚä Юeë[ëÑúe»ÖæÅNêÊ|«ºö¶ã»¬“ë&™ì‚„Wµ7(©ì½Ðê²ÑOÐx O€OQöñ~å„gݣçûÏ¢Þt,Üt KÔbÁœvòz:¼äœ“œ´¸°oØ5hõô遼ýïOvNþNée,}$p£$’ŸS8…¤’P?¶½IÚ!^T Ú¨´°Î­Òû¢¦Ýº.€®HŽ6—0gÀ]’·ð”^ëÎһƷhúMì?•¥",C«'ÑÎT*õ2tv—NÙCU…‚èðhÃ+jÐæ†Z"q;j¸¶ ؃”Â3ªˆÉ)xþO§Tì¼që;1M7†xDºìÙÕKN®ÄQúéRÔTÞ¼‚6-‰$O3ÅI\õ”LñÎZÇ[ñrP`™aPc÷…‚4Àqäǯ-á@hê/ÚM¢Õ¤uÙŠšƒþ;Ç¿¼ØwA(Ezs¯*ë0¬No:Bâ2ó“¢W¶ë& ‘i“‹ÅýeˆLAǼɻ*s¼[Ç\¦>^Å~·ÅO·ÍǪ´æt¯â$"·•'‡îYÕQŠéÔG™å½ º°*gí ;k++šFLÃâá1~Ë¥J†bÖõ~+iÁ-u• ò( ÉbL3⑊æI˜´²ÅÖ•°>;Ø í×v°¡¦ÁŽ™¼‰äîm0‚ˆÛ’;; 5pðº6FÂ^SóáÃkh–c]Ø£WS­8à*X %%¼ØÿÃäFOd÷®ã=/¼‘Rd‹¸=L)GBúMRÛ@¶hy몴mî÷hÓ´Žˆw½¹h5Ôa E‚Tä#bØÅyÍ8ø[“bp(„Ö äT±]ÁT ‘á–h~1êsàòªòqUË:y S•’&„KƒéðEaOF¸¬ ÿXcOÓÜ\¶¸ƒ‚è:lÝ#ر7Úv Yj€`ÉŸö¬šþà|˜çÊä^à#“{Á_« ÇÌ#ί›½y"·’}c¯:›¨Ú¥3I…ÜÍ®¶®å?ÒVŽÑ6£=Q´Ow4'ä‹09‹i(KtšH³S4cÊÞKÇ”Þ ¸?‘¼2(ì&˜„Ç`EÎ RŒ»ºAC7l׊‰|A—"EÔ&Ÿ­ÊÃ1I³ Û¿Sèwuñ"›Lj@>døÎ^>ý[çœ}%c£úézäîvù­¸ä—Ugè¨ê<56cZÊ}iqÐ=–†U9T A´Að3c ¹WíqÉCfþÓ®‰°)º358ƒF󦈑´/gú1ÅùÖp楑à{l™Ž²·lYô哽c £O¿¬…Må%GNfVÞ/•s* ðÅ eßêºd¶¸ÐöÐÍD¸ê’Ç‹\nPÖ­#2WÚð‘gÆðc€'‡ïV¢}òž ©¹k#Möéá=£×\^úF4Ð’ÅÐç.ú ÄÎ.¹èǧÓÎÏO&ß§9ºÂ&Žhë_Qºåî€íÎ3 ºé ó‡Ë°.Ržw©>ýð3*UÂŒ;NeQÕ þåº-9ÍÌ cVB¶”¼¤Qùøßð”Á£Ü$¢,?­F*KÑ ÈÕà˜§]¿ù+o—-bj§CÍ£®ZzyiQ‡·¹žoŸìûæã«¹×m|p‘[t¼1QÙƒkÞV_)JÍlv=%W£²´°Û]À6Ø9=¿—ï ÐK6´9+Íøß0â>ðçó…7!#K¤ æ‹ÂÉšÅsœÍò>fš±d]”2®ë2ÔÐî} @v Ù]‘çÏÜýÁž™æïõÇ#y>€N—ÿ ˆÇÄúQ‘|L¤{î£àî?€{t#kI6¦Ò ‹M§ž6¥:É-‘b˜£ŠYÙ](jõØŠm ÔFžÔ/ež¹BðƒHÉvHJp£ª¶¯Ð‚‚bÍã&›ƒ¤opD¸•¶®¨œß–ï×Ã…¤|á,<ÑfhΠqXõ/ò×TÛײ*&u‹¼ “:ºÊN‹Çø£CÁ£$ŠÜx:DÃÛ VÕm’ÍÚ”“ò«—R¼8#U ¹UFÔ=Æ(BPýŒ»šªXpH^¯Üœ Àóßöqo˜cf5 ÷3Ò5ëP~2ލ-‰(ë¨ ³kH>õΔQ êÔ sb[d ¥Ñ ÛÕ}ç­u0R¨ƒ zpÚ’qÂú*NiârÅïâþíñ5|¸b Zá1áã ü¿¥QÄq©z] à™¡RëîÀ‚ò ]Ÿº÷¸AÍɸÏ%Êä“C>_-×E1~ÆSQ ª±íä_j“Z>nOOéZÀ‹3^”®u‰tŠÁ–Ñÿ0K’kUc€{S7÷§oîOá¹xflÍçßÍæozÄ7á„®¹1mþ§Ó‰óVðÿ qxÀÄa^|¸¤ÒÃE–ƒÖ‚Df†=ÊGãùDÈ )Ń<¥XÊ{—E 4U캆$×#*¡q¤ þZY´æžNÝôliÛFªô m»Xâ÷ÀJÆšôþ.z"l‡Ë9X”˱òÀxz”ò‡Ñ᜼“-ü—ÛÕÒ° ¿víæÇÌä+ò9æñΦ"Ô•€¢È˜ˆšû?O=ˆ–+Ó)GïFU;{Nd÷2gК ð¹°ÙlIWºZΊ6gq¸Ik ¸ÈùŸwBó7èܼBžpœqѤʖ4ΛSyYyQƒÌÀ0¼ÆYP›©yùË¥ÊBÑp do‡E‚ê aP&À ö\‘ Y_vbÄýJn žrd\Y§‹^!ëdr•öø½Ž'|Ü9¢ìsKÈvO¢Þôúú®¸âcIQŠE½ê’Ô‚}¥*…u+Ѽوګ­µvóœñ¾s0vcÀ#uÛÀl~»ÞKÞ­§ƒóÜxø3ƃ¥£½g'{ÇÐjÁX*Ñ·‘©îQýî‚mYB˜n»G@ZÊ—,¢Œ™%vJš¾’î2[“tmm-ú‘±ã–<²^÷R?[’ø±it*~+|ݹŒ2òº e_`­ùW¦°&3Æz6¾£¡ŠË'ÙŽÚ!(R×–‰™ÃÖ¸•}LBv‰ñ(>ïúrͼFÜHš5G<¤×ê;InÊÖç7‰&4ô–ì­l¾Eßúí“”kO Àa%‘â7&‹¯L¬ØÏI‹hœÐï^Qå‡DSp)lÍo˱eŰñgÍ"EvÜC߉gŽ ‘E×zÐOÂ6i…8rý?Ñl(rs}µÑÑL‰(þh9ä‡~ ï‚âè˜t-øÿˈ§² –™A¤…¹Žè²ómª>ÇeͶ˵‘î‚û<Õ’–dœ?)ǤÌÕ*t#bŒ¸ŠØCu5Ò †ÍõM:¬swöQè&%{çS™¾]¹G†ýþÌ~nlÅ›Åí.G6·[E¥ôÜkyyy‰¥©6{‚ y9ìyan[×#ÑAWQ +ÖpצCÎÐܳx¦&]Ö*÷u \4r.¢sF+£*ñ‘Æ+ê…Q"œ!Då<©‚©ÒF+ÅŠyÄR¡¨H:oLb—øKgaÝUý2r×~ãKZäÅ z¢Lz´äûRMªÑ²r ØÇÑGØ \2 Š%¾VR"¬&H£ ¦wo™rËœ™tm ®ŒÄ „º çÀ<¸4DŽ€ð|G§ô>¯µñn½¹þí´¯ŠïØË¯¾ZÁè€ÞU‘ŸØ%êŽ{äÓž("û)ð%v+cz)Ñ󈯤;¥|]|{ßúxºj„´¸áÎ"‚ȹfå*æÖ1¸IÞnqãò%—#uÒi: 8}ù$ŽÍµéѨ÷8†³â'„÷Œ8JyK4Qš5¶ÍÛ¦J|µ=¯!×ßÉÜÌ’Î]xçÛå ÈüÇ»¹\`Ð ï}½0žxÀ¶¢„éEœ Û̆ÐÚù⪹»}D¥còU˜Æ}ra5.Ä´5ðo[P¡™ù·î‡íÝÇëuž1X”Gnš÷GqqÑp¥ƒb¨Úr±–· L0†û9ƒ­r‹•3W4 Ç("Ç\a¯ø,mÀa·Š¸¬ !âà×à Ú-j=ãkc’ÊrΓޠ–)ΓªÉXUºFÀ™^ŸGäG84ñµ­àè ðX.÷oLÅ‘95U±™Ï)žš‰xA— ¸LÜËP³#<÷XÉ+ÎaEß½,V¬™â3LÂî—ÈŠZ«UŠÂÕÀ/}ÜmhŒ˜9ñ fò±ƒn¡—WXè³lDq 1;‚yÛ…·šCËUÞ A<Ãg”Ò=*»Š\Ò»2ôË#{E'XÝAŠ–]œªË©e¾îÙ†¿fT²n0 õþ½p·f½E†K0Ùˆí0oeOÅlþš™bˆÎ“¿î<ßßÕsk[™›Ä6¢U­ƒY¹çßûX>G'ä(‡:cÔÂÌ—nQ‚måÅì@-{^>ë3×_*~ê1 ±žšÅÎãd+—sü -ä«M¢å.^÷òÌrqä`Á^ÌÒ}~ªÅj®‹ÅmWsU¶bõ¤{°nä2@…Ú8öbþtÙÙˆ<ÁäÔJtëómô,Y&9VSÞÛ ¹hz¾[ªÑJ YÔâRw[ƒ‘lɺëâJc•ſܸð!Úæ.h8iâý,‹ŽpÁöÌ6¡\*0ÇX‰{-#§‹ð®€’fU?Ý6Ãv®¬cHPR”[<¯Ç’iÄRÃõ›–þuöñsêÜI±Tß}²h]Ðw`¾l]b¡Yp.a ÅmÂUÀÇ `LïÆ ª ‚ü^eÜ¥2kçT›“Íbîr±x çv[(SH}twÍsç2€çŠõ9?›€AYp1+” ©›'äÈ™½ø–¹÷2ÌU¤ƒwÆnòn2É,¿5Sík+G¶B°é2ýP¶6&€ëéÛþÈ §f"÷5ÆÙ«1Y 8ˆR»¡w›a¥­˜#0R- ægǤy”X©ÊÉÔ;;4k.m!·ta R©xõ -Þî1%¦œfOÉÐÅs*h"7§\†0^lR>i(Ahp£Æ¢ö¢pã1~åÜ…&¼ÎáôeÅq½ñ–+CL„ò¨€ŽŸâHrÂ-¼XB³o:/DÈpyPô£("N€ïrH<1'mÉy.‚Û.@zAs„\ Z>¬y‘ì:ì Mz<^9B÷‘y®wv+Å¿ùÜų„cð Ó»:|ñaÒ>Å8$ò‚(l3ö°6y$*9à†í®¦@„êÜÃ.©æ‡r™¡µÀZU–¤h½EŸw sEœ˜ ÌþÊÙ$aGТhOÕH›Œ¡h¯\›øD”ä¯áeDþÍÜ£ï,ZåTP(–{’båófÖà¶™­¥0mìÊÀêž/ˆ¡w’NØÚÈ7ò3Z½â°.ž{pPE|…CÑÐ_XK ‘ç¹»²Ž¯¹«³µMå–g°V…ÖºlðîNk¶H;ŠæÙñ'·IwJ¦÷E6ü¤6¥—2…<ùýëJ:Qxu:PéB‘×€V(•i5rú&”ùæy¿0ÿ&`Ê ?Œ ?Å:¸ƒRùNr;Êî®"¹î…uÑ¿Db>•œ·YÊ™ªñ¥ãÑä]£ò–Ý™ð+š>³–m#÷jÒ«7â¬d½•äDì­¼ÑáÅ'*˜ÕM]¦èÈÑ‚ÿ«’ñ‹I/Ó´‡&!–Ÿ#yä¹mËKÅ">c”š!å88ãW@û˜\ê|µšGÌ%ôJ÷)Ìt¸   f 8 Ó Ó(6jŽÁSÛ¨‰¯E«È§4ךY7}ÔÚ|÷uëaëÕÃÍ¯ÈØL¦Ó<¨ª©™¾ËÞ}µ6½Ùœ[êë#¸ˆ_î¿$ì¬1/;Ð’É¡¯×­WÉÜM=h±ÜŠÜ`‘™]0ÃAQ¾¾A-Ìò¬¢‹³òuÕáO$[¸™Ê³ÓŸ4ˆÇAì£ Q}´Á`‚8³¡~Ö§Ùxý¼?\'WËæ\6½^´é8ýF ôRTeá­èÕO[0ûó):FU¢o‹ƒ6Çå9¾È19ų$ÑvèëX£!Ð>Š_]W¤õÅÁ‰®|ãNwئnœâ œEMŒ¦JØÎ™ªjI,çõŠÝ‘e nÎXÆ)ÞÂK|èrŠ5|eB åÈ’ây•5$øR[£/=0(;›@®L³ÎARÆ9ˆt<¦Ã4·èÅ‚=wµäŸ9èÍAÕÞý³FR˜þ‚õû,k˜VÛÁjCc“÷éeLšÃ\9îLP—eâð3ÉuÔu&¶ —"×mnWœ¥eˆ’óÁ6HSbz/úãÌ1;îR> ±”f›kL7I[N@¹dlämr£n:$ÆŒ÷­âܯVÏáª'Àë[aE+äͼ(ß–áÌM1_/³å·1[?“k+B¹¶æ^2%‚j “7~Pè+u…ö*o¤¬—À-SÁXæ!è»ÀKʪBµTVH1JXj‘“$0cäÐ,!¼ð©6€²T&ópDë”ûdòûÈŸ…>&#|´f #6…r¤¡•3°0ƒd‹#M˜j,£îs£Üë>á*t© |ƒýP¼1÷V1MéÕ2p è¹WÞ{(§ |,Î `¨Ṳ̀ÍÜo"Öü¿83oáeééî.òr®>q0§tpQ•o½=7¾¡ÊÊRz××Ft9M2ŒË^böÙdǼ¯8~%ñ±À¢©OøÔÇ'Ò3\As “»i?í¶*0¸3WDIŽ¢»¢¸™…"yü^7– ²X4—•臄­ùã,›^Kœ dsÓ‹(ÀŠèb5nC44õD>¬jä`~ Ó_Zw®/ì¦ñˆh¹K“^Á.”úÏ–¸´¦,6äTöøžFœ¦ÚÎ\¯ø‘H6î6¬Wد3 "\Ð8,x$c|QjšN jšp´.°„*CcN¨@"ŠVcçjØTœ .ªˆ@µèN ðQë«d†|,ð̸²HŒÏí›õEYª­¨ ¹æ”£¸]Ö ÃUkúÖö‚k­·0j¹mñ\ä¦Ð aEÁ˹LÛý¼ÁËüV}ü2¿½_ÂLgB¯½ü ÀvŠ#3jvÂMànd]¶9,XÊ&ø¯h*ùf `ªÄŒY‚›Qèt"¸eŽÇÁßhD ß` ¦e&¸"0¬ª¾ã¤& vºÆÑ*&õ2j—[9Ž…ät—ƒô¸\.ßõGŽ„Dduv?¤7˜ªÁ;zC¢M¦Yõ/ì:ÁÌH…?IU%Cò#áÒD¼ÁLZƆø§Ô†× ½L0CñH"ŽS©a: {¿9ãüŸM\l¢Ç(:Meв³äT&òÁi– €Ò ‚þQ÷4²g‡/¢s¸Ì`Û9` „ @'¶ê‘ æ;+ŠUÕÊýâÄqÏ£Ùm¨y§u¬NÀž•ó’’0öù¢n¬DQ;4éÜ8‚ à³»îã·¿8濃rÿ _UÆö mûòì³µÒÈ™ìúW˜YóÒrÎ<óÖ½{Ä͆‰`¨JZxÊhÙ9ËTOrs̈ǒ£¦ù1F .lèæÈ~h>·4ÊRd-0¼è¼ø‚"AÙF¼ ä¥Qz -Œ$ülëaß`¸‹N±gnøÐø¾ê¶âˆ$æ{5ˆ½ “1®&'L•åž_FJã廾ääøXê°µZ-B)”Þ:SŸäOòiN ¡Jä}sG‰òŸ{ù¥˜òúÑNKƒ5GA 4ŸÉÙb†÷ ¥C)œo©GÆ)ÞüYÌsӘߜSï.yQ±›”ïv„vlÑ(›žïÃÚ1/}Ê‘ó•8@ ̉’€ß9ÈDcyÏ„²œ›?X î¹i´gB9*Ä™l/½ò @® K?¿wÑgÆ8¿ùÊ鯪£ÚŸðfÐìÝ!å@¶ð³hb[fƒ [ baz .Öš Ê%gèî1“A¥ŒÚ N£IáDg†)®¢“‚g‘2×w‹\‚Øy\y~ø\Ó¸Á[FO[ØMÔaº@Iz&¦#Ú¸r+´œK力MRsqû4GËãºÃQqÖ>ã<‹¤5\”{ã¤Ù…Æ ò ô'*ä´„.™&Yh.n‘ïÀ"rß¼ÌsF˜×BQdüsVRIeWýùm ØÍɲñaË{øÔP±&¬ù’ãBòDu.}liŒ"'ŒAa YÍâÍi9‚+Ø|7ѬRZ³ü¦ ƒ‰óîüô6HõôáCôž™ë2\ ¹¥•,Ï#Ìsž‘ ƒWóŒÞ=RÎp‰žõ¿¦8*`,aÈïïöü.SúxïåNs¨‚azIËOi™ðm¢6­5ö¶0¬‘Ô“LóœŽ}YïÀ¶+í*e;uôØÖs zÓ1…y‹õì8Øg?µ*5£Õ‘þF£Z÷ÔM¨³ŠÈÌXë«1©•hxþêR< ìC"‚õÖzÎÝ9W¢Â7ñ]Æ'%ë¼0 §v2¤0›tönLÌ'”™Å±M²-\'0ŒÞ:ˆïluÄO‡ê™§±a£É¸ß}›™!Îغ¬hþ8h4øGšé^ÖÊÀLÁÖ'¼4e…JÂÀüè€ iJƒm,tHùd.¹Á÷vÃÐØj’5·i¥àóDÓj–øPÛ_ M¸d‹D&)—û惌Ìñ¯»GáІ×z[iŶP?"ðÖÒA˧Â=y:F»»‘ÉŠ ÷ºÆ<Û’‚tÏï¾|I7ü$¾äÌÀ§¼7ì§•ftÒÌ•¬äOo="}S…>›‹6¿ýÆ’¬_ÿüÆ—É®ÁØÚÑ.,Í óÁƒèëÖŸ<ž—e¬ðO·ÓÅLßñ¹™B™ —E|-_Ì·»»a§5åoïÂ#ç×x:¬ùë{?=.í ÷ÎüÊÒ ÚÌ[1J×ó[ÛÝ­„KZ ‹©×[ÓÝ]ÂÁ"À—úÿÅ•,xóÑBüAL’Ñ–\¤ª9Ž˜-R{iÝU £—Mb ™'¸T×Ðb!4º~¹€¸<+¹eûŠé|DA}NR[BHÏ|ömÚJ”¹¸¥_qx?‡[Êë ¤Ò²ÄB1Õ\è(e·¥aÎì$_v6y3ÛA‰¢UÛ×pÛ~,Sí…þæNâÓtÐ`ÒIÜÅÁ—q¢-x9¼$}– .Ì¢‡YV™ß,MµªçÙâç@BS±y­ ç…ÜÇÚrw… jDZ’öŠœò‹z´Ç…ý’ͤYÑ)©°z9c6¹Öng6wrŸ¦€¸½HËZóš&–Y7¿†Óëód|ŸN$ETéüùõ}ZdoZ1CÉ‚Ÿš ³¸7.Û”²ó;E«µò¨GªÓzš’9Ú PÔÃ&·¤f±¡¿ã’©ªB¬›ÝåüŸê(kXzƒšé›sÂ\aÊ„7]7¬©ØI¡I$y\î<ßàÛ-÷œÈ$ư¼Âæp”Åí¶õæÄî^b¿v²é$·òm¿Ã7ò£E‚K%Îêú>ðB,/™ó†£rUîê¸H¡Uý4htCQˆ‰Pª&ã®§†¡’K4bCÖfWq4Šž(@Þ)l’ì™8ª&´B„& X1Iv-Uh®gEK–3Šf.¨† ˜µ¤VŒ_¶¨&Ë¢cҶʆ…²¦BÌèûH¤çeÍ÷1-Í•ÂWå[NT :ñjÉÔ„ÖÅÄ›#¾Å#´ë£V˜Ÿ!xÓw%hR‡B½—ĬñÅ‘Œ2"®+‰v1¨œ¹dñ¤hÃÜa‘Žô׳ï K'ðÝQú˜¢Š8CØ€[Õ6+Ô½SÓ½q‡6½%ïÆá–š¨zL´RÕåá†ø‹¹C\Цù{½ffkqáSG*Yš±u«rVE8k1Ð&®6WJ"U‹¨1Ú%!•­Ë(ÕèÖõšä/dI£Ò•É…„ÓmÒøV¥$^Áåæ Ð–ð ÉÞª„úÈ)éîG.OÅë. Cò–Q"%m ^C¬€Š™ãx,·Õ.>¾f/MJ kNº—þÜþûOOGðFvέKôÿ‡é/)$–ªjMoZ &äÞv°;Ñu<ÄS¨©š.üµ•ô¨]I‹i :t¼â"~ì%n§¤D'¬­AÀ†ÉŠÍ8³æâKØ àM¸¦1)ÇÑ£\Ð@hÅÑ9æèA‰%67N®’á€,k*#Zœ‰ø8€,báøQG"ïl¸úC|´é<'ïú8¹íê#:!|LÎH.ÎÑê阰|ô&ÞRÄôfÆ›flÏU4غFÒ†ÕZ›†£K)‡‘h3@µ³µ(,*½Ã&é{&å#š€6ÂFóÅf¢’üþ¸ËÅ©Ñ+ÏCÓ€nã^`™œ N̬eU¹íÎän”ˆ˜nE#Û³è wìr8]罩‰W1DäpÞ¿„©_Ĩ¡#‘™+|¸'ÉyÖkÂ5ò*~¸î÷†(CÖ§ivñAb3}€Û0©»l\ÉÝØèý‹"²H^üÂxKøVs» š‚*ø5‹ u 1 Ç?o?P…zб;Æ’ÆŽq<ÝNp÷púÙ$Moÿ¥kà¼L:8°NØ'ˆ¼JbP–û¿#=N"´­h:d_-%‡»ÄÕ<ÔØA~°Iü5L©K3W:åv tÂi¢I¸æÈ³|BÂÒA†Yh‹Êé©f¯’Òˆ¦3™ˆÈ™‚…‘œn›w®ö>YZ:»ì$¡¾jXZ—׬¬•Ïö9t¢[sAeÆf%Öyrg{Ã4m{us…–Ù´#'‹B(T±6îÚb ‹q‰>v^J³»õÉh­I ^MIµ–…úݲ¯„HµØŠ”Ø{Š§Ùˆ¸&S&bDƒlTkÕZ.Ø(ê9('–°îpš÷â1‡cÜéç;ñÒÉõælYI¡Ï¿2âû®3ãän1°¶0J*/^­XQvŸNÇ!1æ.,0·¤XeˬùÊÙz`õïq˜jY7ý¤jF¨ðÉ÷–HQ„H}‘¡Ô¼'~¥¤9ÕF”õQŒ©ZÂJJ=”d Vp ÿrtýGëÉï4 C)†yg¡iñ Þá†JéÝSzàóþ ÿˆf%J¹ÖOz ‘Ì¡mŠÉ$G"n­ð:/a¶÷°²3®H‡·ûOÎŽAÊ.¢Â+0éØKìaТܛRÀ„Ÿ§˜ÎãR««:AÍ<ÑŸ•l5'` µsv !­‘Ž}û°åIªôê hÒ‰Êä<2Äå¹\²ÃiéÁ¤²1y¨½Íb]——7xzE‚Ì2&ÀBµª£ÂiÈøè°Q6\»[þ°ÝµR®“ÅI˜®'ÑÀÀªe¡¸¤’™ºúC÷;k-çL€ËÓ›Ž)YîÀXTPƒV¼E/ÖaåI0åkAr#ë_è‘mµÙÓÒÓmöÑÑC˜8;›ŸtFЉ\ ñP‘[S=nAÏè‚Ñ8àø¥M;ô¾“ ¼ U&èŽÉÐÜ w*ŠŠVz»:LƒG 2û g£f˜²âî:‹ŒÚ½â~Ý*°q4ºP±0ü¬¸jThB ¸¨¤„¥¢ïÛ¡ª}fÐqsâðâd5`Ʋ-‘Xø±JZ:| ¶ÄúÕ!þ<1±õ{ìRÀ¬0BÆñþ®ªµau¹Q´QßFuÖõÈy ZNr “M±ûŽx•”vaD;²¾<-Ôˆ#ù¾_vE†¬ü$} uŸŽ ̇ÜKUŒ®•¿Ó› å$ŒðŒ0¿o?fäÝ©&KÖk¡eF䉶GnÑͤ¬ªÛ›L)¡q¶Öœh3ÞWðì’’ae%·ZÆ`›/6ŸvoA­h&Ußt8HõýÉóã¨í.°«þTÛ«9ÐÜÚ®f÷‹9Ú~Ï:‹Uádm1SkΪճq<ÌÈìª5HåüÀÕÑ’ïp A:¶lE{¶Ñ¶ûxóð@¼+ëmí¤ºÞ{ŒdöfJÅ6O߬æÞ Ý¢¤”ø‡³7‰ëZ'…Ù$ƒ¤¢õ¿d 3^tRh)°¬Ýv‡˜Üê°³/Å%öËèËËÊÓ”zš&¬…SµyPVÙ³²uñb±-гgöÖ71©Fлť‡w’^“IEQ+qâ®[Œë4䣳ùÃÏ—Iä‰Ñ 'RÅÀòÉÉ1Avš'Õ¢ên¼ÙÙ 3!Ý3 ’‹!Êc{q™$]òAkÜéç¢CÚC¹v“b˜\ì|*G–XlÎ>çùßZ#£Ž1Ëvm²­µ¶cÔ®®5N-ߤÝI®­9¦ë®ëL°)¶pÕø»8Vü.€û+`ú+_oªÖB<0÷ÌÇKçìçÛ`ôÒÂ/4Y7ü¼ùÞúË;ûaNÝ|ÉæZÓI# ¿l )ø1ºy´©ß1”|=OÒŒ¿Û4Sðø*î¿®–µ0š ‘I²¸;™’‰ ‡HŒL(µh5ÎÈ‘®þ…ÇØA³ã«x”¥½;í†9Ï L”²ùÚôv"¥¢]Ó$Ú—°fï”ÃK¿wWÚ#ûaÐ6—u=æ+ሆ ÖíL™"—¬pŒ¡¥n„~%,îŠ[˜îlÐkoÛG§çÛ¤× ÛÄ#‰Ê$Eœoæ<Ž/ÓáÅàÎn“ð»ã ¶HÜÁ´—ð0„ßžfêŠO×ñŸÎ87MycRÓtÓ¯ß}c;ØEoà,0þëtº(ȵ…qZ›˜ÇMt£?4›þ6Yqlg¢ŒBóÈd<Éx>²£*z¥KB”~@¾s 0»Å¾xÀx†w%à)m¹Ääe ˜‚+£aÒ͆1}Ù¼:ŒÜ] bM(çòw¾”BXuK}iER·r¼QyB¨ÝÆ ëüf‹ÍÙ;h}·-Á¤í4=“_ÈÓÙ/å—£x–æ·è¦å±ˆÄ€°¨]üZ†ÕÂßä©T.-ëæ Ð[wŸlYÞb}}-²¤»£éHw¼9ˆVûøçòzôu]äDŒUH8I± $Xú ü¦ßM°]&îô/fºj]¥(ç‚Ín—zã6¯‡žYÄú»î£¾a7!Tµÿ®»œº•ˆyA$ah{èWÏñd3±·%æk @ƃþd2À€ýw8¡y)Óæ¸ê“>YÑ`rKH¡Ø‰]«a Tžf¢?àŸ¯Hœ¨[)…¸£Åã sJ@€Ú;pF¨5ÜRÂc¬'xµMlä}D˜dìzèüþxtö¥±t;£ï¢³òËb)O~î^{çñ÷BÜÁá‹1>´ˆœ ¢bZç6¯9«•‚´ýwXx?{«F¿GP,Žìbz„­i×´:&€ 1Îë7-FÝûƒ¹î¶ðüáMæ®Å²[Ú 3¨b¯ÀœT2™$cZôÏ|³²DK tðÇe¿Ëò›Âòpƒ¶¢ÈÖd=ã¶¢©BlDXÕˆcÁVˆ3!wÝŽH*w­Š³…-ÃùfuÐ[þzÕ:FA9ÇGÞE·Ÿ|÷ͽ÷ðÎ3³Ñ«¯|I@9ýµã•…Èe áL^Ú†å½n@¯-gÇ1ÙK“„·ß°7œòÒwLD¿ÖÄ8J~[o\Dâ6fåg|¼BÙLg˜âºÓ€(‘‚ù¹ý&»*jŽœ‡Ø‘%äBUd5»Ër!ª”ˆ0-´€\ äÝÅ2šÌ¼¥òÄbþòf°Ó7úb,øªÕ|½mZM¾Õ 1ç.ÿäV»£š—Úèè õ›ô"“¯DOS²–ÉÒ ÆÃ(i³ ½7fÞ¶Yqûöó“GÍo£Â¬äK®Á‚|3ˆ3ÉEb3¸-Ð6e¢JÉÒ+JÐ0–st9̃že”Ž8e:Ópµwïº!nœy­X9!çr¢¶É»ÖiN +cªîT¦¾D²Ü¤™ÅàƒÒvZMê°áÔÁëŲp5ýÅ<†%EÌà,­yå˜ó6¯xõÕ—}\âWØ#Kíªø™ x¼ÞZíY_Ç€Æ`ßVd<7#3R©B˜lɾ2úy©éû럠ꇵ7§Î³d¸{ÑYèãð}Òé^÷"ŒDËÍ´ !QpÕÆÃŸõ ›Úx˜Pml ²̸¡]Ô¾äbö%ŸF›!tË„l›{`üCÃŒbj¶øu-ÓnÚ_õê³QòŸ•†ÿœÔ{žnß'z¼+Þĉ·–&‘*)aÃéI­)Α`3̆d¶éÏî f¥äÌæ9/„\ Údî–°à nÄß×dßlL «ªÖdÌZ`U]Ë3cž¶m zÌÏìƒå0yÞbV¢Š}9!±]G^.AQŠ,FSìåb*9¸Ñz-i´ÎG· žbgÝ ¼êf¤ý¶€_`7£4Ã, …ìâNðX  8˜ÛƒÌ™¦ÿHÄÁèPy$gçª\NôOÏ#žoÊæŸ—E<Ì¥>/K¸=¶ù#üyò…‡­~ޤáa›¿:sxØà§§WtµXêpî7ˆ>]滤Åg¤w äsŽ»˜z†h˜lÜ.Ë™†8(F¸éP½å¸sr#Ñ×åaÛ£ˆ9."ÒÃyv'ó`oiâ\“xïgöàPê éOZ•åÂý)wú-?§âqéh%sÑ8rn¬hSR#éW½d-c"#9-E鸠™>›ªj ¨ÁE¶N(ç­šç”[4¯ÑQgäf‘™ÃDÐblÙlh_ZЗfÀøRxEÌ Ø¶Ô: ãdÒ,ä9Q |ó}±lüàœû0L¼·a¢ 2Xއ—ì·®»•‹4õü-`€ˆÎcöU¯8 ¡¨z\6î}në{eJä¼pÅÙ·ËjŠ3›e¸g“…qÎW(©¨9­^zl1¥‡3Ýïq˜}Á\ñ]21­˜dÈ~2>6¿ìÉußç³µ3¼þ¤›†Oài¦‹gYRªµŠúMjâXÇ3ËpùP‹+ÊáðJí/(_)#šy>nŽÊ\jq+ Ë%®Ò¤U%.IV¸¡9•‚>_À-ÏÄ*¨Þ ø`Pv? 5 NbóßÂÒ’LRaêebRHr$]$óÕ‹³"0Ю±R­ä-›fn$åE­ÄŒæøÁŒe5v·bE[èGjÖF9á4ë¸Xxdi (bJ{Ä´+™›tÄŠÚ&$¥º=ßÜé‹wàà'.Å£d|ø¶ã§Ð¿^øXÚ«ø·[ `Ø3ñ´N§çÙ¤?™ ÌèôllÜWj¾åŠ'æ™èþKKûlŸžœ°,)it,Ž™½c+K,Ý ?2–]CoPd[£^ŠçÃiDÎíù)žm£®€Õ e»†™™·Tgô<‰Äéo»ÆX¯]uŸÖGœ5*ò&h×ÀÉn¦ HÓ× ÛyîæÔ&÷TRÈÜ<“¨*eèÜ©«(Ý<ª:x{dž;!+a^ÉZ˜ß°Þ;gE¼ç6(ó3ÝLÔlÅÍf@dE@¨¶î“Ê!NJ¬ò½D^“JÇÄ’Ð }®Qj´¼á*ñ+bꨂmX))PÕ^˜ßón$¦žÜX2®+‹8@UmÀ¸ÚFq=…J“"huæD 1Q¤¤ã®á[M掻„A‘€n¯gq0³;ö íw5²iÏú]6æFšZ TM.6 ·Yyiëp¿Œ‚VÀ kØ ü„oª§}€¤FÜr–9t¶éŽ Ú*̓3…’œGË«Q*\Àòánè„p3‚Že×S L;A®˜^²Â.ÙX&·¨ç°réjý’{¢bÍE®f©)Ç»™¢˜åL8%‡ë“ÑK.:E« «þÞjÂ1ôÑ›ëðè̸<ÇQ j“ú²=§”%ƒ“9éšY‹,¨ä²¦ô°·ObûcãÄ—¶2É´$LF‹e¶°ì—0­)[‚«‚h¨e«ûoÑ›"£,êYÿ’¢ÏQviv´ñÆö¨s^nÛ‹•ÕUpߌa«$°vê R4Í`£TëöN,[{a¨—Öø1çûÛ0²¯ööó"mó|gN3À†ˆ”+j ‡d#Àz8„¾KÆç˜§"Ñù(l!UáA#B­™ƒ<ˆ5!É‚'_~±Kxá6 €…DPǯ 2FÕþ»f "(¹AVqi!?k”¤3ͼÄùÀ"¸%‡pš$ŒåðšBËup)èz“÷¶¾f r+PÑd>“˜,Ef—ŒÇrüw˜dbõé9Úí²5Øs*fÎLÅ/‡hOý!*zuWÐÒÍ£M(ñßÂîL yvxÖq /tè os\ÂvÅš› ¡ThAù!ü®¾YN3Ò¤ì%] SS(dòž«^a“)L®): ÷ŠdÏ»Žoq©:ôÈÚVéy 4IÔÜxÌ'—ø‡åv#óᔣZrÛêî/dKÙÛ>êUäàm_Ä®ÞgÅr;°öNâmqrD)=Ÿ¢A, ¤ÝÆ +] 4ƒ>GWM¥ªíåN§é¦5¼Öñ¸`çÉt–›Q5WÑŽ³ìª·íúè§«1]ª‡Ïâ1;$;Ûòª¡_ôù?錻‹aŒû gƒáBƒ¡Ò‘WÄü-úÖ[ƒÂã1\tùÍqÔþ\à"9;|‡s-Œ©U1µ©³I ŒQÀÉf§iÉ[¹Åfâx©4î‘öØ gÊîàÌÒàâ·Zds n‹ó=b ª$îï覴´Wž¤ ç<bnÓˆ¦‡Þq4 ”9äéq…×#aq5)†"˵ ôÔž“ ™ŠlIÆyo E¡–ì×Üà£Å­çé<„¤÷þÃg•ZiÏÿVX!ß²Þz®6íóph5ŸdròÖæi,î« ‚²E ‰®7×p¨–¯ú—7ß.Ž·Å»í/HÑ4\Qõ™¡¯¹Pfè^:8˜h-©à'@1†QÏRù:[Ùƒ(ïf\¤ÞŠ/£';g;Úq…$ý2âKZ7FШTÖh†ƒÃ7]p;µ¬¦H%S«T‰u ǵǞÒW1úxµÈ,õl´qTjsC“+´blE;ƒŒ¬?t)¢¬S¤äé(#ÚBtaÍh$%–‡fœ¼UÑ?Óþpu£n†‡ýnBÖ l¥2ÅlX“)tå îÀ!YGØ@F¶é 8ð‘ø=ÕÖ_E׸Êë_ôg ö>h¯¾ŠÚ×øµ‘}ø©½QýÐÞho~hÔ¢?‡,õÙ[±8<§¡û0ßÀA–OûbðÀ$ ŽÎ4<ÜÑÖ1Ëdi ¹ö—ûm¨¦Ñ ?ì*Ýê®Æ1¯,u8ýŠ9ù1jD§nˆB0dTäæ*B5eVdÓi«ù°(º_Öá«7(KÜ  „B[yMl”}“á€ôŒ*¼¢µ™Z*ö:zr´%¦z˜Æìºÿ‹˜Ð@IʇªM#á MKí’n—¿ËÄI !KÄŽˆ8éz-Ê÷¨¬ávÅY»9¢´%×¾ ˜Þ æ` ÎÀ{ôüãmÒ4}ጛPÛ&öçuÔqfZȃò|³å¾°7\ñÂsÍцâЖ,¾H‚kÐyS¸wž2«°p» '»5Vq”Y""§À»1ÙæLG*ÉšC[;Vm³€}!ý #ú—Ñ«Ý^€üpH.ñ^…Ë_Ð3 ÉŒ¼Ù{[¯Q{Lñ›éAŋϰ †?®‚óæèZH7æÎr1¢”Zq…/¦Gó¶H £ïæHæˆEt·Ü!óøNu¨R¦“Ã^F£~ÒM!äVÒq÷—ùO$$=IÜ¢H̶œ\°7‘uÇýÜj¢VV÷/Ø–)É«åHS³æâP3O¸#M\W'eù5³ ±æÂÜ£%w õpe •Џ·ŠÓÅ ”CÞHñâöÔpÆ‹ ƒ3RrŽáºq–M¯U”Lî^hL:&…UVÖ²ùU­˜AáŒY”èIƒ>àfÂî õì’cÖЃ%Ù@£¸ÂˆÛe'·] f$÷’ÄžÓxn—š²âê_~-ÍÀ4H¡ LÎQ‘¸-ŠæÉÛx:6gV^dÂr«thÇÏÓdJ.m† ûÈz!­Ev§p>ZÊ<3 !*8vcç74.Ù`à ÇPr Oè×Ûíå–t×ež€Ã¼6A\Лër8í |Ûë¹²ÃÁð-Æ"u‚‘çÉ)ç’®$°)Ú?×ö_œE«5Ë?Yy~‘¨Oå@ž¥PâÇïç ýPŠàõìXFÐáž‹Ìp–ŽÌ- ‹\.IÍ –?i³m@£¼3 ÉLÛáv—ŽiKá”[l4ÅRåŒÅÈ\s°5«o5Q•‘çÈ.îÇ£ºÊH&} /h®ÌËm¤˜.ë“•èlé;ûœ•¸ƒmBä[à™8‹ajɦ¨&¼,¡ðæAT b³4ŸŸNÒ×"Ëå÷+kÂf“ƒŽ ¨—׉[q†è˜ºÔ ]h¤ÛâÁ5:O(iØ àù±TÓ*béGW%Û‹ê6¢fò3 ð­KŒ{äð·ýªv•”#$hÒiæöS sª.°ÂdƒLL^±fǹ~ó eN‡ -̳éy†>ÃIÀ³' Åu ŽÐ%\^87\Ñ(Í.4èý_)r»êüþowÿÝ&ŽÖ4¢Š]ø`i‹Å£Ô·œ›È’B¸¼çYw( vþ©V#86‹ÏË-#´¦ºnÔ 4KGi·}ëžüJä䟋w=òŽÚªÅÌÅ<À±Mä!¨ r¸†G`+í‰$Zu¨sPð °+ÆÈÞmbõ¯’`ºŒõj÷ÿŒ‹T:G«*ÀiHþR}ïSQMRU~$ÛƒâËïž¶3÷·ž¹‡ýLdĽAˆKåòFÇ9ö3ħÂ~¸~К 1V> CÎÒ¯™ËŽ(µ¶žCëÄNæÀâS¿‚ŸïÃÙ‹Ì‘+sÜ!b°EŸ?á„yØÄ&Ple×b®!×ÏÓ>ãl—¨¸s*#[~)2Š\µ“ÉX;XÛ¡Š‰‚*ØTôÅÖ‘µº)ËŠ… b0é pu»ú—e²8JÇI©|˜W¬ï’D³DÃ0Õ¨Û ]5W'c¢Š#ó=óß²¶ÞJ„QO¯¿*Qo„V’Ë|‚¥(³h( ÇKMJÖÿbsãV¶FþV„ ²|ð‘Æg°~(=¿Î»ּ%šmêÀˆês˜;ä‘ç¯2yà}³në3™>pcŸÃü[ú &ÜP©DÈýΦ8>‹9Q÷2‰(_‚Ïhaq“Ô™¯MhY9µoH˜“{²uç-"[ÿ­•î¼+Ñ‘ž·¯ú*Bˆ¼§ éÀÞS\×*ytp丯:&mH•Cóõ°¥!ÑÄ~F]ìl «Ï´*Pó¡c>ŸuŽn´ht¡æs¶•¢ž{ÏØ®˜YáéÙm2ˆWgŠë G`Yí§m-(°ßðÎpöxhÄ´|Ò+Vƒ…£7Ywñ/jX²YÉ£'ápÐâ},J:Æì§YÂx¼‡Ãt0Q;ªîîˆ)5c‘O’ãGÌ]1!1¸l1Žä£ém&'‚­zÌß®‹ó#m­‚ŸY\‰!ŠK“ùL‰GæX“j²#÷™ðonšs6Ó4ǾuyLQßpgæUZˆðÕX0DïOžÄÈ×rÂslÏ’îÈÞËý³Îé‹ÝݽÓSƒ°vYZCyTŽNžÅÖ‡X}`iI8³8¾ê‰Ôi¸PAêC-™÷sf°Z› ¦ ztpØ9õºq À8μÆwÿ"jJà8˜NSø>Mé„6Ø…Øq±fçáöUjq Ïå^”f½ûçˆ38s€Ìtdå{”Ë™¨{´MÁ¬Ä=ä3€Â§Û§ÀYA¿<~̼-,]=ú" !s÷b1¦¼Q=¸rfÀ´E7–1ªÔ$èZ²•_SŒÅ&Š)¼å*vDnØ+7öS(oÖÚA½Ìà E ûÔèÔך5^Ž‚‹cB9ÑL €v¾zY>—\c·3[;¹GKïúÀT•5$î}M,s6%:iédùõÜÙ}Plìnµi]ÝÔ‡¬ ̪µÈì¬^"ÔñE ø»“P²É pºÈùr`"Eè"ˬIWšqó–DÎÈijɲ6¬‰I7ScÍ w.•0oŒ&Æ@˜4$…µ¹’ÀbO`ÉD€Œó¾Æq*œ£†VFdÛ9riÀBÊB‘¢’“̱2SÍÙ‰BDiÝ5¸âjpL ½þŰòCRï0[s¼¿»Žë 5hRŒ¤f\½)‡&µ°ŸH<†.€ªe`P¬å‘çB¢ÚÈj‘£ÁÁØ#@c<Á#”W½Á¹òú=ä§š?hLí2ë6D W€Œ45¶q®²)ƒ=Ñ÷N„7Lf:Š»I˃uwpà%Õ«vÔ®¾#R9±ÃæÞî÷´_g{„ëQ'_”TÈ3yf§££ö’†L<‰’n² Æ‡èƒàËíxÕQòµ£²Ö¬¹g)÷rþÏÏǶ¶ð¹AWÜQÏe`ÜkÖ€YsÖ$Ô5á5ºÂ)¼ gÓ‰hq g­ƒQ=ÈZÃÁÚ3±áÞY÷X[шÅ®U°~jf“;£# Ψ1Pðp6I Yok Ïêzïq?á} CŽ@{Õpµu´F]ˆQÖ“×´P|ø< ×áÕÌxŸôÉ”–½”õeÁµÂšÆàˆZß—âÓ)0fã$6QÏdu3‹ìøûÏ5€ûC(ÚïEþ­Š‹$]#žà¢•Œ–Á+‰¨O'§Å„¨ÄŒåª8š¨BÌ0…ëŸÄ×#”Vš[y¥„ .­â9>”®ìÇå"lƒç(]ÛK.b4`'â_{|"RãœpȺ¯h|Es…ÂrY*`É7p0RÍð e"À/„ÁÒ=@?„£Y2<ÂÖJ—WY Üëºw[Ú¶§f?ªhÁìj¡)¡ ³ a½¢kösΚž÷óÑι«"áÃFT*é5Á_ŽžOìTGâ@7Ìo`Á¼’£"íã;8ëì¾â¯ÿ•\ƽV´ƒ$%–ƒã.!³¥»V@óëÎ ù³@š‚E’ô9~>E†SË ÞÜ#U ï–o4|uV Ùƒ²5³Q)þt4~˜€2þÅ($”µcdÑ””çaÚ¤2p…Òõ3Þ.ØË ¥o Øm8úûó½Ã³ÎÙÎɳ½³&4üð£ à¿p¯½ö3 ¦û¤bô Æ‹mž÷‡½N<éà9¨U3;1·žëX˽?WPîO‚¾{…«þ4P¼W\þ; vnóþ'Ɔô¿<@vxnœ@Ù.]_Ž!ÂãUP«AäÎL!AÄÑ–oý ¨Ä®‘^‚ê©t—Ôs0”¸T’¼ɬ\l⊂5GÒºJ¼Å Nn9IäÇ|_Óœ• ¹~(iokaÜ`—rUƒ ¹NôÈ[‰áþ¹*‡ÍÅ$,ÿȇǶ°í,‰å: æÇKtï˜Ö÷ŒgíÁÀÌXÔ%33ᨠ“:çƒR{äÀçŠK-ôįMíF\¢g}bTêò Ì3óBa©Ã³ŸJÍ.Ü D£.D½È›ÚR i=Øyv5S»p¹%Ô:§g'ûÇáŽ~4+ ôC£œ€ sÏ'Œ7ÖrËÙÎÁDÊw¸<“…~_7¥¥=wm^…™7{W£'[ì²'ó$lMNH‰Ù=ÂÂ=6èì^Ú7Úmãž}ËZ ŠÅpK»lC—Ù­i6áœö¦×£¦ôöí¢ b›ÚãÓû4c#ê-©9°ÁržÄ%Ø~|¯ÓíÐm—1zpë> LM>.àPAï ˵&‰x›¨ÜŒ=dᘡ;×E „kŠÉnMÊ0úìzj]Ê_ÙªÔ“…äÕN®Äñ‘£Õ„f|?¢W£ªdÖpq¯ÇVŸ]¾3ÊÊÉËÄ>ò^7^/^èQ^¨qC8VÀvŽ—[:ÐÑLŒ§†‰Xƒ* gºCÝ-4z1w¦ekS0…B–ÛãC¤¶9†‹ÅyYÀ]r޳¤ôë7åLr¶w¤9¤–k—ÐHÊ€I€Ù|ˆ¤‚5À…3Ž£ãôºƒ¶Åš›d®2×hr(PPi[º¤‘ÿ?¨gáTõßñÑéþ˨—°3àBã€7Ì-`0G‡4€Þ笼%š;âwi¿g£›Á’³q-”À‡;¬|Mº\õBwÒ‘]³=IÆ7ñCé%­ËVƒ6Ù^°>ûHPÃì¡é0(ù-Ä„¢cnÂd|/÷᤼Ü×ø2M²ä’‘F«Ýé½1(ÞŠ/-FGt©+^9«nøvÙÆ/A.—R/Ëçmh˜+!{+šS R×{É»õáè„Íoÿ°Q/LÃCΘ•n:º#[”dG!éùaÇÍÞš!ÂÂ^ÀvNL þÏóZæú-Z2¬ #¾áXuz“8‹©ÏXÇ7Ìlo¨v-ucç;•<ÅZáêÃ7|>‹3R¯ {ÜÔú¸¬º½öpjx·öª­¿¦ŽÎ©úšq²º¹Báà–d–4fÙtœÝî³·H)Ä5c3F4nOŃŒëa†Aל—!Æâ¿ÙIbh–%Ù.r84ÌñâÒúsÆ0–yoÊO¼ŰWxµ!“Ñß]ã¡Üì2™X(ÖÜ›˜“µø|{b1œµÂVrCQÅo›Ù r„L1'Åì•‚†OA²dEËã§âù¿Eƒ @•üïvÙ‰èŹ+R=i9æŸÝ ™Áä¦Äz(&%8r†SXe6Ú2`˜«-Š ¶ÖÄj?,Fóȇ¨Z~–i=ŽÓ­bn‰Ês_]é'+6¥Ÿ{h7×mþ¾šÍO×k~šVSÀ<­a Ú\H±¨玥ØÙÅ*ÐçªÏg¨E¹@8ìb]èé{°»d¤C‰Êlâ̲¨‰:“mQéWUÚCï¾ãÀ(ö¸E5ÔwõJn|%‹.Iá¨ÓĆæ‘Öm:I¯)d‹ÂN±=NN•ë Å ¬ÉU‘;C‡{Angjý't˜âÐÂè¬:ZS´Ü OŠtÔÿÓ»¡‰Oso—Ò¬\® ¯*58Bk–À꟪·Ù„¶F3䆀93þwkbI1•‡!(äf®ÉEcàÇŒ´…;vD%™êS®¿Ò4ðpã4xµ52>ûÿ’ñÎÍqÖ’Çœ ¡ºÞÞXÕ„( š”ß@ƒ^˜3?ßL>*gMFRScÇ8ò#…É¥V ü óëdÞûÁD´õ`û£ XgÖ~;î†éb)Л7Pu̕`ÄY¾B½ùBclT‹ÚtšpyR8È“ß~'‹2È£`cü8 D†yŠ•¦„'¨šoÌž6#¼½l™9cü*¶ V9Û9_‹®ûŸxú gäˆÍ7²øÁ(ØNÛÌ"{(ûRµ5=S ÁvÑ®éË7Nãæâ,à £Š©—ÆeÉ´—6•óG8ULÞ%C´V2É9 r‡y·˜ å äýI]•KȶÇÁ´àÒéILBêÇt¯+Kâzªëx¡nàóÿ ð¦;x?+#*U¯iŸ™sÁýñÀÒ«v{ý5š.½Úiþ#nþòz‹ŸÔ½gý°‘ã&0×ËA.Œ“svâsMòô;–ßcvî†OpÆ62¹P¬DLq yœl7ãQBÿ‘>ýXs:­Á£¸;¡xv~þ(6lèÒ34d"£Š?„mk8™#q;ü^â“Åœ€wÜkR…¬ÈxÝ÷]˪Œ›áü?ñÄ8“zÜ‚ay¡%½áHQx¼söCƒÛÁ´W0# #‘‘cLè’8ë£e2IÆ×()¥îHg ´é«Ï¦sj “¬Ö‘ªá´3DüttJ¨“…õe]`ÃH£øòq³ÙuŠFW áØ“xh}AdyÁ“èx›Q=”À8¯ˆpŸó%ddˆB(2i:®ˆt†úeÎÆ•Ù:G^iÅjd[ Ë•dg4Ñ<ü—ä¶Ær±!àÖ°¼GCr(4ªîD»"æµAÜG?“Æ0m¬µzП1x,~Ç>ëùw†ä ˆ`qÔä©^½œÒœ)ûÔּ׈¬;D#Œ“œ%É”4 …€CC9 ÓÅI/à¤l5¼#tÍò5åZw–“P›WÁ=Œã"û* xõ*™ŽûðŸ-§ùV 7/lÊÊ-ý`:¬õ0¨Ò^^‰\7Ц£!׆ Åž¥îù]T•@Ñ*¦¹«ïìþuçÙ^=ªþmïätÿèpyjS„ÕèÉQtxt† ÛØ÷£Ï9¿€ûd…—Åöb»*_–ãK8>ðÏ2&lÇÊ›ž¿a‹¤B#ö¡¡ saþ²lm[ü„µOYÇp„~s¨€˜â¥8†»§?èOî–ÑÉÏÈ’¥663%¬ï7TªßU>.£Xàʾ7ò9¼,[­ÖrÑ«Õúò{-àŒóé%ªfxOžS›°2i_Ç×° ÝÄ wâGñµ ÅØ4„Û$ û†gñEÿD[vŒ,”LµÜB€¥€™!ŠP‡rgômoÞn1뉠xžp`ñϲ1¿…%ý’gq‹ÒfoÍ Ÿ›Gà "°ú:é-kÚ\++î  \)õï•2 j¿~!Óè¼Ú‹Ыd0Š*wé”}ØéÓ®áPd‘D‰4¾æØqf=Ȉ#([ä´/>"0Se‰ã — ÐVE®$>™Õâhé‘•RM>~®I§¼`OG÷­¯=t¸•¼›!àÑ]!Þ?s¨¨ÓÞ]¿Úë„Óð"­‰ëE¹&Qœ€Á»€ˆÈŠ8 ¦­™±•Ì‚Åè©4,Î{§Y¼E^¼´tf´4SÊåû¾Ä‘À¢Ïº¡Ó›[ÔüÇÔ(Zy!QM¡èí4T»w Ëÿ8ú*ƒqjÉ«¹%­·”ãÙ2ÀaHö^XÆE9 f\Ü4qkVåÌÚp1^»>ãkṉöðƒr7ršY””ošeýsôâ ¯2bß=‘Ò^Ã@Ø,#†’déÍC/+ñq22ÍZkªó*2¥¸»&É[KI†’åÏ¡ÕJ"‘\l”r·^<ßÄ[Ú«„¦õ¹FÜÂË–‘T¨à¦ã ¬Â¿7dÇ“‚h3›iךÛÜÞ3G§åB3?wºŽÈoör±[:ëÊXKæ…À7§èè¤;Ù\²õƒ|tÕ¶xÌË\l6·À»ÛTQo=šµÅœ£ÙYâ]pÀXå«v‹žR²Â‹¡Ñ8Ñþ9>ÑX×@ñÛ PNÊL»…6†°æV1Yõ qËlî‰ø ŸC£ƒæ™#Ÿ‡Ð Â&·Q>™p‘œp)œ$¹åYiÚ®j=5†È[š¬;ò6—ý3 hhNá ì8%uݧŽÕw*oPbÑ1Õó%wÇëÖ vÆ=”H €Ìäˆ/Fb‹îpòŸvFVì†ÌŽõ Ìõxn3޳3¸m­È`IÞHŽÖW@ (û}žp°}ö|“Å4þ¯…ßÖFv;ð¸Îo‚3M_%$­9ñ Ó-¶ßž8›×Š@&pQ,¸m‹ŠY™tqY¨ÞVå#¸¸õõ /ìGY²fsªkÚkÇs‘QÉy .vcr(›ô “‹‹3A Ç@²QyŠ(÷/1 úÚ€d÷Ͼ¦Ç„ãÏÅYê‡ÀÖcw%Lã.Ó^„xÉÝÆ6¡™©hÄ3eQʬ#3·%UyçÌé}d,U_Úæ$Ë/«¹ Ë ô m´º^Gêâ†\n ´–D=’4ÖÜ-11@ðÅÏìfÎŒZ-Ó»¾'ò,²ý!Ómô{!òUø^Ã{jÐ¥#Œ)ãU"SŽö]ŒmÅ—Ê8¦¸.߉rdá·Ùf®!ü¥-Îfñ£çGOö*8Û8¢±¥©qA®Í+(¬S0‚ù|e\µŠ]: ¦M3]Ú|ì¾]Ž ¼¶iîùeWéûÙγ n̳…Ñ…{ÉE-²i÷ʨ8C.F@<†Y2¥‘/¯8P&ñŒÏS¸´ÞöQ0hÅðI­(zœÙÐø¾¡ºo%ê^¥ýnÂá/S©À¸Ò@4Q …r ò i,S¦ßnbõŒ(âÂA‘§aÆ ŠÍH{+b™í(ÉMœ½•uÔi:6%ˆöw#Çaoâ¸È-\k2bŒ1a ÓAFÕ™¦ Ó}£&qk½F#JÊÆµ RVÿ:µˆÊ°ã"ÔÊÊJôýÞ³ýÃè`ÿ{Œµ…0í>ݶŒq¹ØãÝ· ߆»GÚÝ;|²H«‹‚¦ö÷fF\¼ëìE:L?¦6øOÓÕñfѱrߨ¯J»€þ¦’Ü­åÂ0[àŸD¤@€»jöI‡O´µ ö†½­åÿ÷ïϨ;N6›ü/& üãúõW럹‡ðù㿦¿ð ÿÒ÷¯þñë¯6þ¸ñhžo|õðßü¿¯?ó8 ?pÍÅcè-¡f•›÷>œÜÿ’Oáþ£¿ÕUÒ}Ûy'±ö®¿ú5}àz|óÍW%û¿±ùè ÷ÿßüqãÿý.‹øÿóý_‰¶?ßð*~®&“Q¶µ¾~ssÓºN[éør=K/&7pŬ£×Þ—jõ™¶«Éõ`ù3 ô?<:>Ý?¥Q´ó²³ûÃÞî_;;Ý=Ù?>£ÇOöø‡ZœDÑ.ÍPYêü‚1™á,EÇ×ÿßü'HnR[ä|HfA:x?{&Úüˆ.›~kC¸Ù2jhÉë>ûÝ¢™ù£¢3ÜodmÐÇ«);ô˽î3Ý„–b‹^P;(&MÏQe.ýµdÚG¤zÞ’_@#½ËÏÉÆ²hD²ˆƒ'¾ëÆaÙ±sjXÌq:‚»X{´9Áá‘y°‘ÏáÊ #4²@Œ‘é 53¹õ»Êð<‰*ͦIêÌë4ˆ„ឦ@—"ª¶‡¦25ex^Ñ™ŸÝ¤Ñyæ¼¥èj»ÂSư ¨=Ö•‰~ØùÛž‚îãi¢*¯9Bb+nHkuƒÔr„4 ¶½.‡4¡m•<[Ñš®7€ÎîÑóヽ—Ÿ>€ Œ]Ç“î[^#à<Ä[ÑÆïâŽl™g )±Å”ÔgðÒŽ)î1^q=»ÑÑi„¬B*Ãð–]cN“úŸøŽäŽÒfè+ñ6UrV*ͦ¡ï®q ]§d»ïØ®3Ú»qÌN›Ò­¸k£ø`8Š_ÛÂ0Dw»ä)þ‹4í bszlGÕÕàHÕßeã.z±­s…Öu<’X®‹²^(loçñø~½A…ÂÞöw÷O÷U¦£;ε²Ú­G›@ÄEM€Ã‹v¢’·Iý¹+ß¾»¼Žûƒ,û·NeNòÓC:ŽÃùt";câ×`91Æå‰/Pû&îtà ZLŠÐŸL$ Ñð.ºNzý鵩5Nïâ AcÆÐ ÃÇ”Ã]AYd-̶öh²Œ8@{-æYÚŽ2€‹‘yœ5ûYÃtýSSpû1&Vê÷qÙlýéOÑñîÉÞ&23–VI6$ó7Bo#â õÍþEÏtÎPm·Ñ«Ná7Éî‡éëúòÎnçÉÞÓ‡«¯r;†Ò˹»ƒÃgã§?¬¾Ú}®Çá]L>»bŽ=¡Om%ú–Î wz ËÓÎþÓÕW$î¹­~mG·ÀýÉx´Ñ÷4 jÒè¤;’qwu£á®ÈÔöÿ íœî­¾2Se#ÓÕW¯úà *ënÑÀã×8†×uü·ú(èkÆš`_lÀNT;<:æ¥}]zÃA~‹—*Ü'nlçäYgïpçû˜Œ`±× Z3XÒöŽ; óðÙê«¶“rÁç•ʰÔ0‡ ¡ËP¶‘b{ýºÎí¼ºîHÛÛUͼ‹¯‹^ãæÂãúrnïÝb.°VêiŒª ·;ÊæsÆqxU¶¸ X´ÝXN^ÒÕWrú7Q!Ð/nñ»`—ùì½’Å++±=Úü\4Œ_…3À©"ô½¶Ìè"¬-5^k¬eËšÁUvëu½ÂHh+:•륂OÇIòýé“VtBæq#ŠÜ5‚F·±ÓË·ÔèaÉñÂ`Ò ©ÂéP6ì…tÄ2ÏØ @¹BtÑÝ(ÅÓJ7>e¶Áf."T#¹dé"ršè³¿„ÓGû’é_:Í”úVZ»?ü'Ç4#aÝú4ãå·ÞO6ZiËimRï« ¹©HØqñ×w Œ± §ŠMLP|Ü ¿‘}§-‘åR0m4–†ïü#Ð@“ÞcÔ‚ÑÒÏì8îh%ïãN5˜8î}ü}F@,šÒs÷´”ó¹;µDrfé_Œ\ÑÇHe¸_ˆAV‡©qì¨#-ZÕéMñž(ð'`sk†#TzÞ}c$äœsÐyo—N3ºÃÙ¼ºe;9<Y6½NŒÖ™ˆ’hÞåû­ï÷[àÒ†ìº[7\û)ߊ oDí¨èÉ’’PßÇâÀ­ß"c ;…Ó\<î ¹Í!û_»0¹;ž&RÚ’îGpÇôól2š#‚ ^r-ŸC©Üqx±Ù×F®‚ ÷þ °6÷žÊwX°ëËœ¯W)K®ʹ;¸x¿²@4TÓ,lðóÓg¼ZD]Í "ên“½Ó°°ªS€Ÿ1ÊEÇøº€š*l–ÀÝL%àï¶IìQ\±¢39}ñý)L"¨ÊKÄ£xÌåá“}”—í¬¾rÙN%ç±>§%e`絘[0%,a¬BçÈïµøõ_þ)“ÿ&Whƒõ+%ÿü™-ÿÿú«‡¾ åÿß|õÍ×ÿ–ÿÿŸßBþ}‚ @áíwþŸýp²·ó…ˆtšûO›O^>y…Ü>9<:ã§Àÿ–(HtwÇhF‹âAöºÉFëß5.D’Õƒ#hó”1=Ç„šÊ(!údóØÐíTCmw—Ú€í&‡þw °¼Øuª¾ÖuZ ¦ä­C2&Ei]¶Ð4›kÞ}m·Û¯ïîvÆvÔñ Û% ÜÛŠþ¬/i$ˆi YäHÅÈ…*"{l¼×L •,à` È”cA®Z‹]#?t“ ­èiŠqHÞ –›£°›âÔPÕÙª€Y5;#·kµZö%Ayÿ ‚å¬Â?ŸÚ–ª®îd¥hiŒæ-·Ù2µ• Ù•³;ïõD[\Y52Âî‹Üî®úã[ kó#¬H]•4¯š)&+KÅÝu:ÜÝuZpŸ¿|YÑE'í†êQL1ø÷l¯óŸGû$”ukÆÑ“%C‹/j‰¬·Q¯ˆzÈÈ¡¬¡Á<-cI6¼ËÊ;HYˇ'•¬lWéÄÅ'ï!óõD,Íê-Cý¨UŽOö:û‡?ì쓎NMÿ`¦ríàSv„I-Ö‘ŽÓŒ°ü’PÉžoÌðüëFÍËÙ3ì–ŒÓ ™ÀN‡8Î8Ä÷Ô–Žš®àÚò[ϵ;a;jm ñµG £ J=Nõ‰¼9™áÊ`Å+:úîÇÛ] ã0„×@ \¥ã,z;„+SîåB¥l)ëp¬‰9RSxb)T eç`CÈéå%Ü,˜© J¨’¬å^Ôhö¾›¤"FI£Â»èôÙRwB 6žä¡OÏ~ŒV‘°ºæÈ"lêÑ*aM2§¥»å‡ÏqŽû—i½¡˜ÿÆ]%uhÏ®ÎÍOZFNWt- 0'ÿ„r0f@ üÙ&ãw©^Gf <¯qBQxÒñ] 3n¨ÂšZºÄXè<ÊŸ –~Ã5È!A.¢!\%c”LáµnŒ^Œz§kîh›­oþ—ìI<ì'ƒè¤ßEÙgô¬µ€fðáD§ òÅ£ÿL¯†,úŸ3zôÏïàŠ½n]÷'­¤7ý¶X³¸‘ïê¿ß~×?ýë‹Ã¿¶ŽNž•ÔýSôèN@ýù~µ¸ïì»îM¿5|ëÒvŽãÿÅ8I"%c·úô'FcIQ¥aÃÖ‘¨@Ýäž/NF”[‚Ax$Ú9p$”Ațý. oöˆŒ3)H„ FK(/Neвè?“>O<ÒN¤E:9«€Vñö¢¦ÒV¬Óñ!Oc­Û*Y;Qãtw•ŽÄ›¢?1Êz€€-’vS;?îŸýpôâ,Ú9ü{ôãÎÉÉÎáÙß)Å¸:FWª†*Ï÷Nv€:;ßïìŸýçñtÿìpïô4zztíDÇ;'gû»/vN¢ã'@^ïµLÈ"g‰ÿøËLô_Jᡈ§Ž–øóŠt^Ä£»E6¢Š3J$¢Ê®%aX@§ r5ús»4àV²õoÍÕÈ\ÉÄä¶›ŒxÛ'”ÓV Q{DŸ#R¨eŽf;½ 9~I w¦C2B*Uæ à¬Ñp6›p•À³g9Á”«`IÃ!8‘ia•Ìx袄@bX#òÐ[¸Ø†&—{h€–ú÷9/Ô<ñW ÛcÇM­ÐÞD†ÚPK§—WdcÏ÷Å…tx;‘ï }„\ÑA†cZ³üÙìѬ>;>¨³ÿÑ%æXỵE|O!q)ý]ãÉÃ=åÈ>H<õ'°êÌ úÛéÌ,è½}›¸`Ö‚ÌLP›tf7NèVVDc{Ý‘EѸ¼L"¿M|; øIM±54âx[å§` mJª*2j§p>Ú¶œ'ò;×›2,ÖÀâÑÆòò΋ÎÎÁþÎ)rú†íG¹¨xö;^!|q²÷_/öOØŽ`wçðèpwç óÃÑéWtߣ‰Ü%/N÷¤¯Àò @:é[”óÂ2ü(Ù ð8’""*#&‰.PAÎêD¶!ZÉ’´-$BÇÉÏÓ>Š$ s©,%óôLZÃÒ§ß|…Gæj 6Œ\#$Au/÷¿É{¡5 âpw³ÿëìQ‰9Ôσv­²9ÀÈ+D¬ù\±PÐD2ébؼ¸X ºã ‡–ø @ÃeæìãùÜ2~E•Û€KòX1v‹»µþFFc BæÄQ!'UZÀgâÊ ;È  rÅùîxwuxŠ!WgÔ*åõÅsÈñNs¹P-8ƒŸ5à õ&èvþ™öMw¿›çë݆Ý)–ØôÀQ-S÷±“º-ÄMî"³2°AFë„e—hc?¦€Ú‘$rÉŒU+p¨Mn) ­êˆd4Lm˜®ù¹¡9pVºG[¶rz»~ÙíF«oÑòw s¬7¢ïOŸð$ ,vÓwDXe|V)­õÇp,Æ Çðf·<4•ó˜ÆqMƒyӜԄ³­¸ãwîØi’$àÒ.U¹ž 1Ü0ú àp¡Ì*R¬$C&âÞš={Õð×× ‰ ¬ÃWë «éxbi9våeÂWÁÏHF Œ;›Û|WÕÞárΘ± V‰F¾*éÙ ‘ÂYƒ«¶C,h’áöâ8¼$;8Ñ›ý1~mNO[Cr… 8ë* ¥™:»žT¢ð—¨Èúê–<Ç ½6qKÑÁÝàÅ'¢†¡ ±¶{з¢¿îìG»Ø:rÞ·ˆÇòŸ„EÉV‘}CÜ$©¾¼lÃwRJ†moåq’œg½µº}#y«£T#FΣUŒÁ™ŒÇLÇ4ÆÛúü¸‰tmÝiqàMûLQe:¦’«°…m;ãË£W¯vUÃ2–b°i¢èj4½õgþEœ´÷ÝÕ:ps˜çïv£ò 6÷5àIfì,›O,2b‹a§%W÷¦±Ñò8nUfN °½YÝÑý&Ç©HûáÏqÿûçÑ/ëpÊ G@ä”á‘?. ݃‹±a ø‘z!ðe|#ù€wd×P\‹’`õ)Ñ%*Ω7èZ¶¡q²ÉôüÜ¢cKDüb\ö¦ªçDAf¤ãÅdžœKHCâ´E¡ÝY‹«ÃŽ6܆âƒyØú¾µE„ */fôDRŒ“é¨3šfW$™‹y¤ãºˆX£CÓqk8Mq¬N àr-±Fn®RR+e®çÆeÀºS£@Á)ÓÆþñˆÓÚ¶êHJ0邤BÚºƒQ§ndU…YéUBV†lÍÁk Ë-†Ø( ÀÿG+ñ5“Ñ.ÐZ—!¿ÏxUWyr<S‹;6É4+òÝ3^cSL…8Ý€VŒ-ÆEÂU¤ž\¼\Vô ¬÷3… Ã}gÃP†‡vw;û§ÞpÍq__‹˜üãÞ7[Œq÷mu.áIçfäxÐéDkë9œeð’”íº²Oƒw×ð°M9ãº/š*ZnG®!¢_¢Hƒ4†µ^Ý EÇÅ•ëèT 7PfîR:˜–éB›WÄ@6—óì§Ç;'»uŠúnvœ,1ÎáU6´íŒ>Î5OB@f_Ižß-Ö£¤)»uöZË+6øÌ8|KYôD¦¤‘Ú¬ñÕƒÑqð((‰ í½ÚxmlÖ€þ4J˜óéå/€ðâu ¿ZÝËþ_ú½íͯ¿úæ!VÜ´µp ú‚@÷Æ\½o¾ÙxôèV|äUÌZ½ä¼©W(‹y'ð9ªtáþÀÚðkû«oþã믿ÆH#ÊðF˜±!H ¹y³È“ô’O4ÍÕ"ÙÀ¾ÐÐ;bî^à$Ý*ÛfžÇQ¯ @&ñ[Êàš¢89Æ4ßÑçcݺ sÂÂ*²p§„³ÏM(<¿zv4‘!0Õ%Ù“¡ #‡*DÒí`²@.¢#J¾ôjƒV_ô™úÂ-Ô³%ò°Ecº"9ÌQ@W°)›¤àã$‘’ øÅ pCa”èÓôðw€Œ~I³ üc)’‚k‰-®i†ÛË‘Öqÿv‘V!î<Ý+ngFšÍü8lU ¨^\ÝÑ·Î+P1ôjIWu†ŸEÊ Ì°g›yŒd‚-Å´3 ¡æ ëæäÐ(ƒªçžæ$øJD•‹ëãÌÞë|SîNšm¬å ñ7ä\8 RÌÒš­ÿÄùÔNZµÊ›Ù¢øOjv³¨Ù{¬QT Õ),YõUQ .^³`íî3–¢¹t*(ŠªåÕEöE0…ƒg¯ Ô‘®zÇ‹j8ʦ}".Ãäížk±üè‹ [ζ qÚXƒ74©ÙìØ¿)×ï°â%_qÐãšQÁ«þyQ‹…iPP)¼Õ4÷žKqµÂñêWfIô×çÕ~Å¥ÃÆí>R¥WzgchÕ‘õ‡ÝÁ´—XÁ·Ç–’t.sS—ìαòƒ–VX“.Âv 3èJy24Rµ=¡'#xÒ–l0ˆ)¾‚'Vêßre‰?&yËV¿ªð¶?á|6-dÈþÉþK§™›«¾it$ùtßhxUò¡…p)§©Þ”| žìíFÝqü ʲ€˜Ë‚öæH‚©Xm Ðd7ZÃiÃnˆH"Öˆ žìI#_p‚”´üFj4XhX ú#t`ðäf³£S¬(týÙ€×·>£è|0ñD!ARZCòrTJÈ”H5 BÎTJʳ«îG"zRž’5< ލ÷ðÅÁÁã…*ŠTj•[‰ó¨É~ÞÏxàøÏ4m ’+Ó!j;š£x_£b!r@­ì#u€ifÉÄ©+j4ݵõÙ­ø —¯¦·*mÄ[ZÔwÂ…ŠÞ‹Núˆ>–yGÖj9ŒÇþáÅø“qù}¸_ýÃäª=lDÞ€àI}~ ˆ”V©ú… bYý~] †‹0Vï50S3­>¬#=†-Fë’œ\&°4 ¼v¼ŸÇhãÞ–,åD‘2ÌG¯Îáé[wÄeÆ,y# €-©Á˜Õçärz“]Ý; ø_ЏÓAÏÚg\€u!ÊwCS¬Îeñ,ˉÑí§ßë§Ùݰ;¦ãpß•qWÿ¯™0tÅR‰Çx§ ÍÚlá„Û é”£-–O‘¨œnrVq²Á {žÄªk¡Ë‡úwI Õ†ýûZ#Zƒ,Aä3±-Å"tBi‡©{銻ÝU¢i ‘;ZA+¬ÉPxˆ6Î(ChÕóóÚÜ¢0ožºŠ1)É’+4¬HGÜEØHÀ Æ×öç$ÓeÃ!R>aT8m5êÂm+1™: © 9Wâ,ÒXà̾˹<&×£ÉÇfv¸:\2ÔEš•k° @84ž¥Ð\®V®9äDFMßÇt¿Lî´‚8ÎÁºøËûCzƒ ÖÏú`²ÉmÄ‘pÒ ½oŒÆ0Pe48îüû.åØhÆXJÌTÑ:L…räRž¦Né-0ÅmÃ;zép¤QBºÅhµb’äòEé~dpãô…†PË/¹EËuWp‰ðʲ^R§bmÛ‰…%‹…Ú!ãÛºÍ"¥zÇ,*&Y›Iì«Ùëe6¿<žý‘ÞÑHlrå­ñ®ˆ–/ðþgÛS%Ö:ÊdŸÄ€å¢Ÿòœœ¶Üå_eX­ÛP“R^÷¬…æÚèÙ*6s9„ÁÚ2«kP &úo’„m…üó`¾!¦ sw+q}è…ГqŒ  Ý Ê ƒ™kª—ئ ŸÒ~ÊþV(ô×ð‹væ£+”Y1DNü²S?¥ˆ‘QÖM†Èša£Éídœ\£óíX̦FcÄ Ý¤ö³ÇßÀžJجa1â5Òò.êˆõ 8INQ´Œìg1r€¸Ì¨Ôj¢³º ¡Ê‚ìŒBõ#ƒ3C?‰NFhjAÍϵ¬gÔ çµ„¨Ÿ‰@š’ d úÙs¡]ܱŸ§qvE)£\Z¢P+è^å&t«˜•…ǾbГ—ò–g6R3©¹z­Îá©ã;x&î[~{:DÅo î´ÆŸè¯ŽNñ‡›&îršSñÄ |’yw•œ‹äVr’Œ²hµÕšßF-Àý­¿aæ%JK(ó"²™kM3RK6<“*]´ێ3ïÜd ±wAK8ÿYH6ÊÜ äo•òòIo»–­k«v«uà°™G-|ÀùnÖ/k¥ Q^Úö ?1óïê+ÛÿëºÊ\«~ç¡´Õy»‰­Ù¹¬bc²Q¤†]%ù.~ˆ¾ýÃ×ü¨Z4¢úŒéÏ”JÑ'/Çí©Õ¢æ —¨§Ê‡iSžŠ.†ïLšÎÁ!huRÓØO9Ù>Á‰HÓJuv›ÑénAI­¦€ZS0CЃÅsÙ³’ЊA0_¥L&rzôâdwOv¢å31¸õ÷ÂÛ>|üñuŽÓÏ«Âqxð“Èo6RÙîà'|ÜËá‹û.ìÂŒ&Ïz> U¯ x±ÀÏEΡ.ÁˆËxr²Î"Ó¯ÅJ±f °‹yÝ•Fëg­^¨ä˜ÙSN¼œs_ô1­]È}Âúa6bŒÿ&’e1ØFÙ[¶5G1X`øò?ZŽþ„ãÒ£-ü Í2² 51lô"œÈÊËFt°¤[HŽ ÖEY‘kdg›M$hç³³“{-&%ücÀ  ,¨EiôŠB”ÿi"âYˆ§ìC˜Œ¿í, þŒß—‰¾ [µœùn).Ðì\ 9SÚU6"q‘ÓKÔM~n>‹7Ss›uE¡”’Äœ*ƒç¶=Û³*캺ˆ`õ_/ŽÎöž¬¾*ÅB òjÖ,ká‰X$§Nè# œ"FÍ&lÌüæØ$U2^\Tµ+0óíüÅ:oa)C–_åu}>;Dñ\å» ³íùÄä$Áþâžïíîït8´ââE݈žô)µø¡OÞ¨G—§´ƒJóI‡„öýÞóóýÝp¯V' ¤YR³¢³Ž¥7ùaºðÑ‘ a“˜åõœypæ\þÞhʯC»”3Æ!Fš3/¶¢pC³!bVÉù1ð ïû^"L ÷áú(Ô,õVáGnœþã9„ôìµ(PÀܧvŽ¢]~ÝV,Õ¶(øŽ€(ìô‡€_ú“û!~‰—Z hÛ ÿüàÊÄݳ±fÑ æ ÍϬÞZ‰ž#¶õI pG2¥µÛj¸—Ih:þE ŸÙ˜3 íHØÝÁ“U¹]ÇÐe\èíÚz÷?þôÿt66ÿƒ¾þéOòÇ<éò¿òóvЕ?wßÈ7û ¾Áã²WD‡ŸÚG"{Ã27íÁ¨:Þ9ûAÂ`©WÜ MßNGÅÇ™ïŒéÊœ××f¾_^ZZŠÌaBÉÐ˽ÝgDe¯¾ª¾ßÝýØ# °H]áù9Êy èV¿ß}ùò£ñ`FP2ìÂ#È› yì`/ Mĵ`;uȯ]h_gß(0È‚C/kòåKn“'€Â3Øâ±.&pˆrW¹w“_ôìÂÃÈ‹E™‹½Â %1 …[”–œ".Û€ÓAˆü‹] D]ðj·ø1®Ç(¡á II‘„aîÖ ¢è}kÞ¿À|èh€{eˆ6^+±,é,ÈüÈ׎Z· Ç_”âºE ØÜZ¦Lìú3YF_T7q7D5˯ë"[†÷ïàØÿ?øÆÿšÏüûÿÍŽÿ½±ñh㛯7sñ¿nü;þ÷ïñY‰ìfGÍhפÄS?*.áÂgG͵¦:ôÁ×|”ÇÝz´ñ§?}ÓÜ„­l`ÀÇGMŒ¼ˆ_77àëæ¦Åã:‘ ÷‡Ýc"·!jµŸ¥ã0üÏãÉ/ýË·IÒ N¨w/›¦‘mJÊb&r¾ˆ'ñZ ZÝ@0¸d‹±l2#ÏÕªöóÍ£º+ zUÝ$ŒÒx"'ÎíûûOžìŸÌ]A5ñQ~M8O*a½l”´$  NW1Ú:¡!¢]Ë|︨$âx3ºé½aùÆZ;BWϵöÒš—·ˆÃ_è²M$âü.žErÏ'л¹‚‹2Å]2¸¢f_×Û¥,ƒÕê«#Ê–ÜZá2ØÀ›RÇKñ2 _m¶¾Ùd΄bâPQrÁ|qçéÞÎÙ‹‘£æ‚u>ÝÖÙyñ² ýì¼88£Ö°è÷{pÒ¡dõ!Þ¶Ð=E (} ¨æøEyí'<|z"ÀS¸%Tf™Ø-‹ î']̼ {œÜŽà`z€Úˆ è-ìA’5wßœ÷{«¯~êü ¿Úiþ£óúAÕ D‹Åª J­â€öŽž~€?Ož}¿sÀßvþñ÷ÎÑIçðèG|ðk¿óüèÉ‹ƒ½º´‡cŽ»”nÑ y4ÈLøîË€lÀ¯lz‰Yƒ¿¢ƒ‰^ƒ×_Q@n‘ëÑ™ I–‚B"Áз¼ý<8H²§^vÂ)rúâÙÎɬòjV‘£ïOöÎöü2áŽR<׃³ç;ûR`Ÿžþ°wp €Oß·«ï égsýú³«xJp!Žã1À´ÌŒ›ØPãß \Äà+Y'v†vœ0¶P¤K6wbu}°ÿýÙÑѬêñévu0¡ìšH†°iõ”ÃaThÃhíZu•F\ª«°µêPR]¹Ãš³HgöÎ^cOGh·Æ ¡qù–KîêÇô¸+ö‚ZÖïe[^ô^YsîL¥4à{>£˜½ÍÖWƽ¿¡TatËL$GèM8ßµ4æ”É÷ë\€Í€žØÃÐßïœîî<ß+D‡Œ}t^P—"úU£puP’‹‹†TÊÛþˆß Hc `=fb“¬‰ñÃú·­e´]î8-D«õeö¦"¡Ûžo„¨þ»Óß­U*ŽÍËÎmk¸#z¸d^½j·×_¿¶OºÝ¸{å½âž‘’„Ý®SÈ<MÇhhlßȯz»¹æý†_df`Ѧ1"—Î{†ùßTÑn1ªè4+ÐuõtïITɾl­­ù%0V_þÄ ÊÔÓüòËÊ›åÕe›o(ûluw·øŽlr,æ‰NIcŠ0F¶3‘E_KöK:ÅØ*/:Ö(äg‘¥‘¹múCrÐ@ús’X¬ÂqÓm,A"¥/%‚-‚/Ûïc g¼¯Të]'1\!©âÂ4’̓~ccÁ'{»]»è-L´²û×ÓƒÓ¸`ò«ËÎÏíj L,;GûéþÁÞ‹³ýƒS¥/NKO6ï#ZÒ¿åܾ&ÃsZ&A ÅÀÓl°É„ÃMÐñ!™í>ÌúèêÂaekáºåÇôº^ ×¾ lÁV7Öñv¥;Šš•Ëøûùß¶+×ïìï“çÛÊ{^±@^° ºB|8‹ „Þ Ù7+Öz¸µ^¢­Ê¶Ÿ¡à£C2¿íœœÞT–Ì8Ø4‘ §ØîÎÙщѲbhÒ«‰ƒœe†ùšf 𡥂V-Á_µEGöÆ5óµ¸|ÉËNš9ïóehhýæ‡\P¯´gn5×uYÀü³.êÀâøŒtòøe»2Fͬ êéžþ(F?7œúŽ„UÄ'¢ùÑÛó'ç;/;{‡á ±í<ÙÓª!½Yû£sôaœM/à’Æ@~ãk ™UI+õ¢åNn·=“r½¬m¦ˆº-B å| S½ÂŠ•”¤ýRX p šv…1,lø9¼=8ÚyRüž>Ž ÎÚógûÀÛîýp4³Üé€!žñÖyzrôœLgàGùØŽžtvNvØÿÛ^y!æ­:§þýÑAÉDQˆ%NOŽŽÊxGhéì–kçlÏÁEÂV(Ï<`YQõ/ZÉ$m:d?’aô ÆYÄ›%“Ì[°1=@Üaĉl¢°«1¹J©Lmœ\§ï€óK/¢6PPÝx$öÜ2*RÔ÷¶«ïÿqúƒòO ¿Ž‚~BÏÑá­³¨‹„;Õmä“ÚX¶;zôý¢ì%·œg;Ï(£0ÀŽ2â9 ¸ûˆ$#+dwbC4£Ç£Äœs¼1Ì]7 àÐn:2¹§°“ÚaÿÔ†lnÁîÑ€ðY)›Ó¤ìy©}RSïâ!f($GàkÊw¾%Ÿ7]Bì­ ÿtúÒ§¢bc‹yo–%¸ _òG10Ù9¶–SÄ4ÛB3ª™kìpø=2"îs Ì ‡ÈϬ ªµâZ$ia9à)‡:P'²U‰ øüôo»{wW. =×Z0€Z½µ !nÇË˸QËá´3è!Œ&[¸Kòhy9…1îînWwwù+0‰!ü2)XÐxhÒÝe^€³Î-ƒ6pÇ@«Ý®{ùœÉ üBzïÄð‘ßû£pÊ=áO¶aìö±¹Fè­ùµÊ¡pWUe Y®@\:0‡B\3M4ÜQ“’ÃY¸J{66n⌂ñ- ,…ùµíÈ9ë%#Œp¤1G¸58tX¤s_ö»tôŒÍEÕ¾èt¯{hsQ³ýÔX6÷ ½-ÙæUPŠLsj6«Xc p†—óYF2õÅññÑÉ‘€BV_‘¥IG¤†6Ú'rqºÏeöy¾søäÔÐÎ". d>¹Z..`ÆB¬HbŠ{ƒ²¡lzÎy¤HIƒ(3þËo裼ühà^2 ËxãJ‡@‘w ±µ) 5ˆVŽ ¬BL &%FU!p„hrêuÙu·ïM u7®¾}U0H‹¬ò@ÝòMŸBú Ñ"C¢‘8êô¯¢Q«\ñ5é§Õµ¼®‡lºAZÚÆWÚ¬2n„—gÆ‘#UðŒ»U.E?Ê0¼LdËxÚÔt Y4ø0!æ1;ãO¬®bÚí^o6’ŠPœ¤¶DOo¸!Óæ¦‹s?г„m$ÂB„‡±-BÞœ²† ¦Lá즻‡>ª%o¦3t!§¸¼}ò• )^2)ôŒº’!Š}… "W9©%âšé‹e­±_CçÜÅyJý˜6–øo]qo—¹»^ˆJ)‹Š ê‘ÚF¶—h$ía5Ôóù=^⢉¥a´ŠoPÓí÷9?ßÚÅó‹´? UÀ‰Î,iÁy¡÷7Q§4šÕŒ>A!Ošýw×]÷9½¦›pÇ=gtM¬÷NÐNV½6ú8vw÷VÓÓîë˜&:¥\ì²´¥û¸Ì僶–‚øèø`›k¼{xÊm/‹kŽg¥~áŒúÞ†N†#g¤Í­!qAÃc’Ë{ž#¢eȹ[ÕC81«\W—T7»gq%b“\¢ÕðMbíæ$g•hcŽó±3¥í¾Ò¶q’_Ä~¬Š7Ÿv» ¢ß¾!áï)Œð^\eoÿíûÆY‰îØà?ô`aë‹y ^òÿg{ov7Å.šûüˆ¶x(Z°=ÐŽ ”un<öò6NÁ/û¯à£½³{Ò:Þ£k\š³'u84<ßÝùþö619¢0܈"hÒ¨mÊXDH=Ó ¡ j¼Ì_Á{Ž*“QÐCV¼_++´TÁšÞ¯ ²Ù`ɇ®ÿÈš‹År%rmTèõ¨|¬¶5¨'2L¾¢˜T‰ÉˆCSõÞ@r°îÌ÷~EÙRö†(cÓ]2]¤oà¿5åÓAi¼Þ}ôP8}çÞDùðE”Gv]I¡9PbÒË7t¤—ü´©ÁôóÌkH¥å'Öwyˆ@ü ‡—®2Ë…ÛÿŸUyƒ]&Ê£ƒ¾ìÒøœÅŸ ²x¬]´Jõ°p÷rÈf(‹-Õ Ðj=[*mërG6b½ÑhܪÎf]ÓŠ£F½xˆMT1G{½ôƒ62‹¥=yõôÇÝŸ£>Ψüç1«Ãí Èm<Ðç«´¾ø"²¶+Ýߤ;¨ Ðà8›RóÀ·-9ÒÃë*/N9³UÇ%fµ1 Îj"Î$©Ë’¢ù”AlÉö©b“æ_h¦OD»ÈÔ©¨YÔº5 u«¾p­S«Ý_¦Þ©õVy»¼Ô~ŸzÇ •KÅû ÊG«âÛ-±!Û¥ûh÷J ­Xæ¬,ÁNvV­Öâ{ÍNü Š{ª’Æx Gtöp<ô¦X ß‚ü.ìIMmAjÞLcéSSK ăsÊg.§.уj‚-ùö÷dËfq4§–„Šf5…~f÷¿î{xoRFê´³þ4oHëäxá9!(—~Hò#=µéÄ·²²’¾ÛQ3j"V ƒ?™g¤ÓíÓW'´ÁnãE·…Ü#ÉþÄB'RšÒB壋•ô(^j\ÍÊ+ ¤ :½¡#÷SòZ!¹‘ìe4ô¦T“\Ÿ¡¡SÖ]wP.¡ßMµ)jX¥cP¤Ù#ý#Ô ¡?³NÝv'á(•Ö·ÊÚ–ì ~F†d¥,ÝlñmyAÿo³åhÍÂkÝ}!'ô_išíçx€hTŠž@нõW#öŽ2Ɔ”\ÜólF‘Ù0g‚;:wÃ.¯7Çîdˆø¼{~tÚ¨€ºÒD Žºzæðp%t¦’üD§’!VÉ´mSúª‰o!ÿwÆxÐï|’¡8HŠd~@×Á³+®_(†—™ÍÌ-y fSÄnE’«žU-ߥŒ@n2-ðºo6…Ù>þs°r驃P6–,­"¾³Ûm–£%qUÇ©<“jç,fFö[¢@ ŠL%ò&è¼w¼!Ý’`í¶Êj+*ǸSdíÌý£mH—9AªÝë)^hñ¡Ç &7¼üùâWš+lAAæ44û  ª¼––FÏx[¢z:yUºSÔQëY¹ÊQÇõÈœÅÝf¶#÷²_¤@(qì¶SÄó¯O€¦|D3¥XßdŒ—5-IzuIé’&ãVÂþ4æ‰Sï\èw0 /鯡;<‹ø¦¸ ¨ØéÛ,ƒËÑb‘PíØ|H±j¸Õ.iõ(Jì÷ØÛm#ÉÆâ$öÛeêy5Öﺨjh£jlŒSºÙ>]˜s@r“ù—ÊÌîÏz®1{Ý–V4rɵ£àåÖÌ“vhb䡘kܳËZIe‚ÛNåEfüêBªž„8_¤¨hÕdd<Û“NšŒÆŒ$ÎãjÔCñkµ”NÌdóöDŸw¼÷ƒ¬£ir3ˆ³¹ÅÛÕ²‚¼iÌbŠÀ»™uÀÈÛéçk”…Û¼<§°™¢21ä×»ê‹íÆ—¸…K_)'xß]ïõEÀ;,0ÿ’µw“oµãGê{ÜwCvHæ/Ù=±|„[˜šT‚ÓFáÝGéÎ/ÿp­Y%ÕÔµ%Ö$®†UE™+š.“w-ºp$Y€v0ueiÒe©,=°à ›"·¢‡†q „ݤ£ËR¦jô#RÒ­SmK¹sa$xö`HxØc¨½ ~ÚÛÙÕèh‘{llèØ³7°4æÒ€‚Rc%ñ"žìñ):éÉÕHïŸJòwGëßG{dk)Œ)â\û§Ÿ¥™uú•y¦±R¡q§Q,ß’¼îM™¶O9 6 ¤ÛG k ÐL‡¦M}ÓN^.VÔîG˜+‘Ù¯YA-íVÖ«¸žô«­r”¬¬ï|rt4:‡SU‰ªë&EEI[—Öü±*0d…Îà&çlîü+ѹ¯åå0û¸¥ñ”Û]˜ê{pöÅËú«7â]xIMeü ^ª·@ ß ½ù£ÍÁ´ÏØÞ@´vÈu'‡;m*3HùiU|×ì»ï›>>l|÷÷u4ï3’v\¥Ø“rª%V)ÅP*Ã<ª”ö¸\˜ +©e™L/ËmWYÖö–傲†„‡ê«2ß#¨í($½ÍâJ2ʼn¼<•}M( ¸dÂÒÅnë=»Q/ìÐ\ X$Pýö[h¹žì=+tJí³õ‚ñ¤\øTКid¥mè¤9*…®HU›µE§pf¶î´ª]úÈD³ó–jÅÖgt@ÆoÅ"?è” }/vÞ*Ÿ?òÅ£¿·ø’iÐ<¢V„¢)ë§+rZ]@QÓ†ïpÇŸx—obs)ÊO5«6œ+hË{hâ{é{Ó® DåVÀ…ÒpqU•¸;7™•’ÿ `ÖÊÔñ³‡©ÿß3NuW½L.hL½O¥™9e‰ÿÙ;ÃȰe|¾{¸ ügw‡ éØ0¿Ñž˜Óü#’/Ÿ+CDGô.É%‹-Î"+P¢ðÔ.ÂÛg„¼< è B‹˜^èIêGŠÚ€§ÊÛ“ q¤QD!?"Wû1êˆlí³1!­Ôt\Q<ë! y)2‘òêßʰ¿`ÐÓžK¼ç.ž)âÕŸº×øêÂ#D¢mIâË[†àH‰U2`S)ê øÔ†íçA_â¿° ^Ô™ {¤t¾ …GÜÿ¸“@H‘‹-áUgpè1´š9wÉÊæ†¤XU )Z‘ÊþÌïHƒ©ª‚aÉ›y4eäAËaSfÓY-™±B\9³Ûζ@K}Ô´M¼=Ø=9AÄ•ý£çÝg;*,!RÃÖæ ·îpû®´Ž[Ùö ìY(ÚiÖ «,9›&`É »#€J†Nèİ8Û§‚ôOa"\—ÌEw²Ë††°¯ÚÉ6tÂÞ¿v1»jy§¶0ÚúläUù"ÜG¼Ç’E•üz—£ /î]‹Òz¤þ’j™´Î«*³×”¡‘à)Ì_,¯Y ÁS”üµàØãL`ÒRs`ËÓ’STx‘¡,Ó’¤#Ûé*Æ‹£ Å‹dÏÐÃKÉ[‡ëÂåÝš…Þ¢OPìD¬eÿFSJíÃé§‚Dš9<:ÝÃP*ÚL7:HÛº4Ú.FÉŠìp<ó ¬*ÄÐVºº¦³óÈ[«7›—³”Ðx('‘YM'Á`àµå°B)þt D¹ÐMLßï¾SÍ .XÄq¯@ˆ¯OÞTÚÇÒ%OÎw(ø“øîï 2Y"zml;…2§/³e3â3 ‹ÕJÚ3[Y# „Â%ûÀ‰&D3ú¸ñÈ*¦Ì(^F!À€5:@£PxÅxÌ¥öý3ÑÖP?gˆÞ\¿¬ÁÜ%ŸúSçŠY=×øt‹ÀQ˜ø'L¬p˜TbõÛŸÎñdkåøsû‚i½ˆÉ-îG.!F£ Pïc†¾{>»»†<±Ñ#à)¸Y®j¡pìÄt~þ¾Ôeü 1µ¾kÕÉŠâ0c‡c;!Kœ*…Ù{$ΪzeZÞxn…Cƒ7ï)«=‚ÌGI§}a²V «rœï>‡¡Kà ®/Â<•q¸ÂÚì})ÀÅ.&à ´Åš qÇ!óãÔAËXœÌŒÿ¶]=+LÌÎeíõ3%êFóé#~GÀ«úO ™Î`ÄË£ñ+>a ³ûJæ“óó_RþËôü˜*%3O6ÌݧÜ}›ÞlmFIy"cÒ_)i ¥'¿êÌ'"Ld­ªp¼vŽ+í™Ì0¸ð½ÿ¸*fç&uQáfz™V-7±Öy>JKŠ)jêó‰+û¬Û×X,dy El kn¶S{ù¥lÒZ1À’[§órùr‘be>µ!dîdä+w±Œb JOv¿ª Ó2„Y\¼±Ƙ xxìí2ì­LnóP±|ÅHš¾ò@W#SH° -Š4nPì‚i”„µ†¨Š|çŽQeŒ˜UWdèdƒÁÇf;X¢šŒ \ä–Þ0ÙDݬ )0•8¯LDeâV±D ÀÜ·Ä|]h|CmÔ³ž¶6Yr»AÙg m^H”¯ ` ‡[¼ ­gjq³¶ûhúI¨5_R²`jÔ1·4Q²òÙúV¢%Gû#ãöu¼µVऺªãÕœ¡)_Îâb%Ÿ=É'Í•V #3ߺøGžêŽPþ¸ò™µß'Õ,_aØZn²(f­aŽ.ºÎˆw9l‡*’މS8àQXïDÙ©—iDY@Ù®*ºó‹]<ñ-™†­+·…–ºq"‚ÊvLfPï‰÷Þ¨“Y ØÃ°å†d¨ ø‘Hk5¸ ˆ€Ò⑟øítâŒøñèK2IGm§ëE±.6Äú#JЉt$DëNQK ìÚL~ØtÈõrêõÈrC=E¥$¥¤ª(ÉV¢ßéÑéî¦h]2àÕÈᛯèÌ¡<€—Áþ‡!4Ð O»8èñËIðÞƒŒ,• iÏ”à¼uÂHÀá”f0ˆÌúÞ#ÏåÕ<ø×r.lt!a„~"‘xhá„7!Ú tûCÜ¥8!£™A.Ê›àèþó ’<Þ>þ™¼ëIjŽßÅ#26I DdФ¬^]]OwŸïÆoá³ìÒ.ž%ÝÃ8•‚ts”å³rl&XµÑà3‚q_JXR}u¼Ë„•üÁ«CàÆŒE´wrj½³ Ý¢zæ¢/+ž~FèFu2f÷ “Ü6É\d’åpI¨$©˜$,îQGjE-C=ˆ¤S1ò? !Ëú };‹}¬b/ŸcHlþùüåKX®S–€X%2 "Ðàí}Œ³} O[ÇÍýgÄ‚÷ŸÕ)N3zááöv⡊“|ÆÄyä𮲾Ä=—T¥ZÄ’à$2 ™r"NªIDïÆºÉÞæš t [ÎaP¬‹‚W—7tÆ bÔ ûê,Tƒï!7éìË¥_ËtˆA^U´g—ŠYBF…ÀÞŒwŠ7sÔ'‚†3sYÆP/DCç—Qc6NÍoâeá:0dcNX`Tãã—o ›óž4¦3tòC½ld›Šã\ZxoWCC $¹ë*HeLPà{üÈ„OTJ˸›úÁUÂ„Š‘a\Š;Ù—T’Âá‰A_æªà?‰>CãTŽ}«åpYeìÆ¾Ÿoxæ\ȈÓYºò Y‘˜Ú–P¯Ù,f.æuäßÅf( ®¬¬è–VZÒ÷©uï¾1^¼y#_=byžÉ7ÿtÞ;v®ç­Êw°UÁÀùâÿ°S<ûÇ?ì±×ªB¯]£²üØåÈ,Ju¬REW2zìÎJëíèp€s)ÊWZWf,1Ÿµ™ÍR5›À›Ö‹¬ùg³L=Ô‘ÅžwÜÜ2ÐÒcƈrä²jnN¦­¬Ò~~„'UZσpZž5ÏRÒË`·vzŠ–*×Qòîþ¥®(2 îG8 PpM\ôzˆ dð"%­¬Óë’‰4C_›§W+Þ“n—>Øé?QagÙoª&/»>)QfýAÚ *#"®ªA‘ßy¡X,#4–V<%o†q¤FiÅЃ’ÄøºÁ¬Ô‚Cv˜Ïªvv²·Sè3dúf¡ÓO)”RÇ ÅgU;ûÂB[±2[sŠl%Kl™¶dy(G¡‰õŸioŸµ%hÖ»û¥*Âzš§»áVÖ+…²É&¶x¢‡6ûö({¢Ò¦ë»#³Ø£ìòTEc ã8ea˜icí<6ÆqK!Hd33ôVè8îTšæpHˆ(.ƒV"·‰X˽{U ‘LÊ<"ZŸZ¸ÌÎÑJÉ™šX'GÁ63í±E9.§V?+dE¬k’+]27IkQ ÙîyIŽ[ÆQGJ™Œ7ÍYÑÞ²,èÞ$^¼%n c£å/)Ü[ Á ½-Z"Â@µÁ´•]0eÑßÖy Z­t‰eß„?¡r4ù¨L}.£p¯—RM…Ak{=’“˜$ÊöBy"k¡‚†©ßËö¯rL0£¡â ÄXY4jŠPºlµl ªÞV«NȵŸRsSsAt¸ "ÔKȸšˆÑW$Ȩ¶Ÿ$öop…Já(X¹%ðu’‚úhDvÙ”«Ø„5e¢[.~Ð}z„/÷·OçX!ð$ q«xàǘú¤†wt&>m´X;i8bL9s PÔÃû«äÅR²^i×Lvü ïMIƒÇ¤Þˆð} ‘é×£+ëÑÅ„]¬FQ|ge¤\dôŠ¿dò"ÛñvýÒû¹Üü¥Ôì?Í_ÄÚ½f¿ls'“B—ØLÞè³­·¨3“¾-à}z²fèŠRF+r\;ü1ç@ZÃÈ`ÒË"æËÀdmî~ø°yÇÓ~ÎÀq/å¶ú$eäRG›dÄ;Ýíã×{‡|Æ™‹K {º‹‘¡¸#Ó©œÕÚé%BL.qôoÐD¦ïL®5[:¶OQ5Hر¾7fÄQ‰©Þ;¯·Ÿ±ý‘€~8Ç¿hò&èj±'ŽNěԲ¢.I)©G·£„ìÐ6MäÓV}8¿ ˜§…Ær¸M‹Éë¾7èûý&jEÝá@ž·T´c uY?çžÏA×sQçQÊEÿ1qÞt^1#qŸñå Mm˜ YvÓŒ—Ûº®‰ž´¡µ¡áµbéùñîK‘Ñ4H£¦4_¹[¹S;z5²^Òñ¤¼b6›NIPGÜç SF§ž#ÌoJñtŒpBx;³âuCRf"¶ÆðFˆz¿µ!{c( tó7uàÍ]|a«¯ÉÑxs9_è»ý®Ü#ºAcq2›[ ûÝÔÀM¥Mn<+‹ZD¨‹“!VgaE7Øl>Uiî8Á?=Q§ŸºÍ@¡QŠ”¡ˆ^FýOVµ&_ùö[¡n¹™»Bž>erû•ªø $—ÝxòÉ2øÐVØ1¦Wï!»Ó Ù&[‚ JàYdd¶ü×eRæºq ’s«“‹BŽšoîï=µ)Ì-8-ür (®&sïçGsóRÔÍbháE3¬ÖhæoãÝ•¾5ÚcÎ-ÊXpiûS.–-;ÕÜFt£2wXúvâþÿª>i+ýF{ÞòF³D)bÿÅöÌ—¾L±ËÌ<1r÷ᤤ˜OÙ\‡ÉõF»}}ãLëú ÅÇ™p0íîÌg¥w«\ºÖõOQúp5ü„fè…TVnŠæZ.jÀg§„åÄ¡Öó És#¶[G'o0ôþÑÏè«Û=Ý>~¾{Z£æ›A{áØ!›[[ûX[WîdÜ[«3ÙvûQýkÃ[üK4ÿò£&åØ.šàÎÆMë×ô6‰–¢ò Èšl+gU%C¨*—,Á’Í©äTN/%k³N/Š“bÂp«L™.n”XEM†Y)ÁzÁþ¯ËD È_¹z´4çó[‰OüÈ©òÑø<µí›lò©ÔEÍ„üÀ‰¤t„TÛ`Õ%*M7Ó¥²˜•Š&q!õMR¿¥BYVòC*]dh*#)ֶ֟É`6á“>¯¨˜®1½„òBwŒ–Ê1CSV•¶77KªH0nZØÅkâî°W¥õ*KcFJŒfŠÇ“.{ -H¤-è93ü´„á% „3Ä&6ì£ s–GúT0Ê  ]ÕB”J»x/Á…”ßJ´ ÷„ÍD–µ¾‡˜b‡"˜s±hÒ!ƒö÷š–¾{Õ5RoÁËØ#Z†( 3?¡HâO8Œ8Ê3ȳD2{!D±)–=hË;8£ZÉN0N]V}éOÅÒ¦kºe¨à„Ñ«&wï– r99Hp&2À_ÆÔˆqr"ÍIK̾`ęבºÕ¶å¡‘ïÚGß¹€/kUÍË0údwRïé)Jh#onñY™ÌcNJÉß»“ó ”ú|Xq[ÖTˆw°¹4¹ýÅN ªaªc:¥´ÞBµSâ÷ð/Œh(:*¬"|Ó#Î7vu4Ãq¡~ë”&¸›RÈh¡F5¢”ÜÛJ&-ÆÁû]¢ ‹ê]?‡7C7WýçW@õ"ï@fEøF$üøËÇîDzøèFÛ)¥¿ƒGö¾ÖÉØØ~ûóŒ½k笌®ª»wÚ[w?6Õ2ˆgcµvLûÛ2r^޵:õw®;îŽ'Þ{gŠ}‹ ¼0´>ˆÖ}j§lp}ä`X¯Fµø–Óʤts+¥#ÿ°ö?Ó ç*Zw¢š/Ú}Í´ÏrShHa [J«è’Ç7 ì—¶½÷¦²2ª”W÷1v½pÄÈó½‘3Ô¶$µ²,K1ñI"{Òåù tÚHßý(yO{5 ì ¢¹ð‰ûwX£‹w† EsNP…²‰ÿ(§% 1zðrOKÍ¡Œ˜I` äðô, 43žùž|ˆUÇì4ŠÁ Nº‰ ¶j¹r%özq!)R²%‹Øl ¢J“>ûªKìVÇ»CÈògÎiŸL#È”½,•tßP<Ú©Ñ0ìJ‚²—×Ðö1P€ºcPUrF«Qœ‹ÊwW²1ïº+Eì¸íBÊ,Yl¼`úé‘›^¢˜˜«žñF×6äìֺ埶÷M8ÞJ;‘¥«‘x•iêà%Hó—ûòþ…ðÄÄN¥ý‹8[ëTÅZ©ÙYoª×cüòIRþtV¶îœÆl½íÏFcQ¡uRlÜá¢+àFÒ–Î%°#ÓfkYñmÿ"ËG<~XÇ+e–í¥gßë'&¹ ž.vóÕ=ã–§µo?¼›<Å/ŸX Jv¨|kÂç£&ù³x·ÖB08A]mgùÌÅ=È¢L úÍC/Ò.:™VÚO^Ôù¥Ó/¬`Ä?zÞ%ÄѧۭOö·O^Ìň†³ë±…kz@!i}ÖçK¶d'LtF£8ã °—sJœ³èƒS¯7¢¢€îMµ¿ÌFãñ}¼Ë'„cBAè÷ÉyYQëX˜ˆKÂ;C„€_(£ú¢±/ •+/k%~+PbøVQ1£ã6a˜íFVSã/Û=‰ÃƒO¶T˜í/ýW.Pq„Ü™öςלFáÜ‚iïðy¥}É[CmIlS’:NqYòãòPM»U{S “ û² 6¹‡ß¼­H( Ö‘-TMvñ¶ÛÒxú÷¿³‡²Êffb¬Òx®âz1 #c¹Ý™(’ñUx ‚˜­ã—Õþ·*^…ÒÍKc S0o ¬;®œ›,#7Xˆ¬íÌÀNBóžÅÕKÒ,#BáÎR]9“‹Fƒ—æû–5÷†E(›š Õ~=tÇŽ„„³iHc!Tœµ"³:‡‘‡{,‚˜:Þ=yµZiósE¿2Áø©dÉÐCü’Á wÉmÄu9ED“WÏŸïžHøÍ´ç„ì2 ¥ôáév…œç©ý¿óº×Ef¯ëÅI¢tûÑd#žgÆ' —€Ãé ¥ÏX@Ö¢QøØG™kØÎ!ýSló;ÚÆ´‘ý 1réäO' g/Á«Ð+ÞB Ï‘Á"S}ÉÜÕ‰ˆÖ&ü˜’í¡Þ·H}jE°mj[EøÜøŽNSöSÃ;žz±Àž`ÏÚeSt;aWJ¤Yi«Çè;qÒ…Ž{)ñ+ízWv]¦øáÛͶvöŽØüîÃO"†äM8%#ô–¯ŽHž ,²ˆŠ<"ª“N9TÕ)°6¥íAPm0d-v;¹<È´lµB®$ /ƒ¥!3É((úÌgÇ9tÌU2`ÇA4…à@‡ ¨B d>ÇÀÂÇs%Vcô^û½`Á<È´=#£)ÉpÄ)“- 9K0›3V:`Ÿ»Bêv`þ¨ödœr¸ýt­Z?¦§Ùž‘Vú%ášã§: D}ôÞÉ3mbñõ½5,õDZHí ©)*>ˆUFÚy>qw(2c͇$SõCfæÍ*»æëÐPH„v¥”çtUS!ÈXí…WFÒUAjœ §¥¸­/6£ûNŠ‹ @]M ¡¢Qˆ,.pÏ÷8³®Õ/dzkš‡ò(¡ãm?Ý#„ ›liŠüW"Ü3DÒ! üLkkÐ#VZ•qkñž”MK%å_AKFíôøçî.j(¢RªÆ‚¦&¼-!&\ë`Ç&ÃÎo#sеÝýgõк•/_½éîm?~ˆ¿Ý­…m›@É?LIöø¡N&o¥ˆ?Ä,[ÐÜR­Agzïúñç÷&åâþl¯ž!N‘(—ö÷wÊ¢¨ZÅÏéæô+aÜ‹»þ¬;ŒéésŽÊÊÚƒ Ô’`O£çÈpû;õaÿ“¨ÜáàÁÆy8òÆE| º²vȃ—‘’ú6¢Ô¬‚ÉÊðøá9ÓNÚ¤& wгJ ÈYíÇUªX…iΙŠhi3º¾Óã.–÷>!ÝÑl¸£x &þÅÏO4ˆFÁJEC`³€eË?8yš {> c“qm?%Ù0–ì–5³Ð"í›í×tcËF”0mqÁd»þúq·’wB}ö×êÀ#>ª§<?jK6õáƒoîGä¯éxßaWíýnÓWˆÃ`ªàdH8ÔYበ<9ÂBg¤zÓ™ ÁÈbCnúx‹[8Óá(®xR¯Š~€•çùi‚ûK•2mÔ\ÀÐÀ„½Ÿ'+úÖ„ª$‡— iÄ_6€)øÁœªz÷*U‘û‡ ‰=ñ{lßAú‚µ`…©S­Ê7ñ¹ Ü¢ë=€ HXä4Èp#*jv­,®š¼{Xƒ¬RTXI)ïÁF—iCq+\åÊHNÕ3“Ò:4**Í㇠–ÚµM-|8÷(U1•H©pe^/ÎÝÅtvF\Æù îRZ#7÷EƒþìYÁés΋li½œg `8¡›ÓrçÉÏšÉDçɪµ<˜?R‹åd”Ã^ð ±ñþ‘äíG¾8i‰#8<ž¸äµ(x&~êçèÁ lCça𞺴ãìk×MäQ Š(=lZÊ·¦¥\…”G +’®6À&É’pW£“Ço¤\ äà^OZòáÓ‚'‚èjIûé…~Fí³³þSÕÞ<m62L}ãgF!Dôè¥u93¶±²›â{d€À¦p&½A,±Ñøºq¿&Ü‹^(Öt÷ã»0KŸàVBãBÎIçJ(S=o ƒš|8 ƒ!ŒUøû £¿Çv±%fS̛ǥhwƒQ1¬ëmV¦žzßÃ.kDv˜¥êfª¿yü)Je÷«•ž—Z´âSÉiÙ‘çâ @{7ëxϨ†² …mÏ‚È\|ƒñj‚_#ꄈ*ò“ø(.&îXÒIw„±Z¡òRýÊðm‰v`vVa’þ;òBÚhX>hn8©§7tÜLžßìˆvs¹%«ïØn<è½ ·ÒôIZnj̬ åí¶OÚUé¶Bô‰°N*ÛÇ5ѦÓKmo9“O1…!v^WŠBi´6auöö1³`íJŽŽÇåPb3뀳¨W¼ñ9v…N‹es™ÁC¶Éøý €wàMµrÓC6¡Šrl¤Fjލ]zÈùÇ/˜xÓ}eŠ‚ÔØ ©„ wXlž9…ä `_‘nóX5Y4É𲚲NÝè½*¢€ï½9ØÝ2ÊŸNg¤DàB@D«ÄÀOÄäq,8ù½›OBþÜÂ7ŒÿÓƒ¡¢ÀlI·¥=“_•F«|Ÿ‘á%t 9°¢bÆ‘Z[j„n¨´ ¢@âòˆßÊè¯Ðô2›rÜÉ̯Sø+ L@¸šš9*äàí»„NLH)ku1z½Ÿÿ»ïW‰OÕ®F•êüpòñÝWEúiôDñ“iå?§?$l[Â}W­ñ…B”ÊXÙßh¬2é:Ó.Å«!Åtü©tÚ¥0Ʉٓm†ÅõlK£ˆ„JÀ܇áT¶ŠÛ c°Užçîúƒ™5Í{°,é™»j[×Þ{J:¹/êî¯ ¨ÃAF D‹]?œI3>Ý{g6&q\Ìdàrmk$à6[­(¬dÖnŨ˜ï¦U,Ú^CôCrƒÑ_â¾ù±Qêœ@ª–SVTaò'û…œÎÈ-dKÙ9¤¼JR¸ýÑ’HæŠÐTÚ/ØÜdàÒõ<&“!Œ¦6··nc· €°ƒîÑþ_¥ø‚T:€<‹á$ò´b-ŽX%°nÙ)i‡<8PŸðÞs€ž>Áòe ŽD¶f.·,*m½cpJÛ²„#ÿ»Íwò§Î‡ûµõÎ'±ù÷R|¸Å&ìXe3“h£³ÂÙšêéNcS$²ý=‘­”’j³L6C2-åwŠ޶)ïU­lb*ÌJ5¢R4Rc@)”L »%%/\ˆêP»nÒ÷ ¾tVv*„Ê¥­j`‚zÈC%W­%†ó̈àž€÷tˆFFó&òRó‡­Þ¢ˆ©ŠÒ LAƒ5I ± GøÓx¥äŽŽ/­×f¥|ꤶJYÖfÁ²mtP ôz,i¤¢‡Úc`ü’*-%Lý-f³ªôxfIvŠHep€Åjô>Åð¿q ÙH”“V"íÒYiÃ&Å£ÞD6þòis õþqôþ±í©ÛeŒxû…|{oûĆڎïK"u»ºTïdQœ…ÄÈ)ˆÄß—“æìüÖqê¾o5ëwßõ3qã’p°!§îñ ¨ßÔ ž8²N…øçš&›JzW%y•ìÙ/É©l–C·²×øªØ¦@Cè–Æ˜adS¨bÝj]|b7XÏF²˜aê8É E’Þ–RãoÉõl¾éo Û°¹œÑÂj6&¤õ· ×|qŇi\3ÆU ®i­Ñ<3¶¦EÊB¿ ~™(& ¸†g©ƒí7ÝýÝÃÂjœ]Y¡ÒŒ”)ñZÛ‡G‡{­íýî‹£4m•=Ìpnœko4‰¡ë_€ŒŠ'¥ƒY­iÜû¤Eÿ2¹ÙäßðµeíÆgxÎí ‚Á¦@]ÞÖý;l°'×ÖöÓÖN—”N½úà? ûAØÿ÷Åx,ôtyN±2k|‘Ëxlº™gcôðšâ­†ƒ!*û3—=ÇdŒRÏ'…¤$UA~Àh º=x¤q]‚ïݸÿ¾8¿6$W2ô«f¥ýLÝ(÷g„™`ÔÉãoáeÇ.î2°Ð ù—Œ˜yl³ë JB=Þ¨”8(.”0$´9³ªÔ~ÞZߨøúë'Ln}ãÇèn`‚VÜJYŸþL÷é+¿åàeæ‹Ù¤oö¬ŒO)÷²¾q-Áp»’Ù[¼©b«‹&MCæÛ—FÛäf9jÖ×ñ¶LÅ;©0Àû9 ¯¯?1Z×»¹@ð_¼H»Â/=÷¢×3§ÑkÏÿ溉rIÔ^œE¨xG‡ ìr |î"Lw®j1wê#$?Ãâ0vA4¯ÅÅI¡¿’MöðæL5û5ì@:(ÕíÓtúq ¼˜ãÕ€ôÔ ñΧ&3ß3<Èb%åÙ³Çïÿ¸~‘xÔfRî{Â6Ð1·ÑM‚Р$UWJ8ѵžj¬¨HºÐ½²ùÓwÕ7[Y½Ê1uôCgÌК…¦ûƒ¯?=Ù©QÈr×9¤ïNöÁl‚l%þZ4ÃsÏoB;zS[ŒIoà[3=*ÞA(óÀz Ñ[¶CšÔÑï~Ùby2JѲT:™Ç=x¼² ÃIZ¢°7 —˜ÙHá ¤Xaûä>î \Øäþ¬eÎP¿æ3Qö9±—¢ÓßÞ:óšxðÖ˜Dĺ½k=þ¯]ñÎÇk42jÂ.¼ñxcýáCš¾ »…´‰ÓíŠ^­¯ÎÛæ¾yüøþ×F ‚pØ}®¹´Ìå \ä褹pX„šðΤ!^Àö.vß½s±â%ª;aïd®ŠÐ%£.‡¦ƒ;¶ë{=d(¤šÔZpXŠ)âßt¥VfT—wAH³Žõ?Ì?lˆ=µ9«-Í¢ñŒög³øCŒ,ÎZCFµ ư8a·SŒæ:Гř#ã³›³r®ÈñøÁ×™JöÒ¥–§¸ÑÄRˆú¯(­õ2:á­i8¶¶¾VͲüHä]•e‘™Ù°ûïß72Ý„Øä~ôþ1}ƒG³+5ûÞ1 ØzK\è•ò»hºÓ^[Øì ý&Þ¹ oL;r¨$TÌÃèØ¯rè3gØl¬µÛ+âì¬Ù,çäI6þñøëDoÍí¥·• h¢fÈÖ"|‚˜×´T:E °€”8‚Û5,;ãÙrõO.>ø™œÐè[idƒAb:EË ïezy{AÐP-‡¹¡§­(‰õ%â…á?j-P!Q9(º0žrÖņx ‚€úXüC|ý„¢¾•g¯RôÝø*SöÕî"ù¼o•>Ðg½ôAEf§ŸMZÁ—Ÿ>éjï ¬Óƒ‚;QáËÑØ¹<F¸Rœeñ•ºK“ŠCéÊÆ“~*—Îp $G§‡Rl,9‰íšã©  TFõØÕ%^ü|àú¾yëúï•-µkŠÖªåx&òpÒ3=Ÿâv”0ÛU^*zý<ɽ"Üšâà©1â®’¼=”žšœž¸'Öß~Σ¤Š¾?tetšvJ²œMC F›G#Ç’±ú£(6E±±Æ±ÄTMzêjl³„ã]ø±ÐAÈ–zÎë#hëÞ=ÜŒ…y¨zàs' ñBÛü ÛLÃwIFÕbD'} h¤¢õ(R¬ÛCÌ©ŽCG>:aáxQè)ʑȓ§‡²yÒÆÛVÒ9x©üÙp„OO]50ÓŒÄ>Ì R´™ÕN§3Gˆé} ó^¼éê%Gé ¾—f1MÙbÍ!]AjÌE3ס݅b/¥ã"äÅîöÎîqwgÿYëpq€Q3µeŽÌ/ yýá ç7.©ù$Ú;lí¿ÚÙÕ·vœ{«:òéñÏðäèåîa÷dwÿ™¨Èû•½gõÓãW»5aÿ®¿®¿:iï¦^×à_”þÙöþ‰E u|trR磽Ã,\±å®qb‘YíÖ¤]ÍX}kA *?o ïÊ;LfÓ¸jÄfAZ- ÄÒÎ|<Ðø[÷Ÿðo?èÎ@ œ¸[ëê Z­ËgœMÝ2› ‰ð%ò"†1•O©½J‡zyÅlzV%À$?„ —EchÛ ôE¡æv_D龕3è»Â*l³Þ `¼ §}/ÀW˜h‰ãÓýîóý£§Ûû8ì,~áBÜÙç§++Vê¡Uï0÷ξ‘7=·•DåNOzŸ’P•UÍ›kx²97dËNæÎFÆýíýÜ=:î½V–ö‘` ùCzãxLYd@6BySÚ§†Xkbß  š($j8õ ¾I¶ÆH/ûN¥‹Z¯{/"1‡ˆ•."bÕEÖn>¥xJ“–Q)‹V6µxJ›Zv¾ûFìÄý59p½Öï½Pòí­K¯ßwÉ~í謈n¤sˆ”R>ŒºÃ1Ø'>{U¨³ ,̞ðýótê\Òí>?|ÕêvñìR©TôÏ­-ñ€.MÕ£ƒ½ChoW|‡/ªÓ¥‡8•¶L•*Ðu¦ ôêv»•JÔ¾JQÈ‹Õjõ‰î +³{ôpOIa£‘` ¶Dˆª;Q¹_3ßÇø(UŸ°’G0GC{“§±h€Ž!ß?Ô4•þƒuÐËZ‘ª µ—c#¨Ùª>½7’ šª)VSìF$ãÔ"–¹p1M' qŒÀ öæŠ:ÁÀÌêAH€dܤ'8ðøSè*¥€ç²ó¹*O ŸÎŒÐSI?<,m+ äýºuè0λ•FS%~Bñþžˆjšñ‘™]ä-(ÖÅ\—ôóHÍr—ª(º•ëD?ÃûÄ{9M>^¯Áë1w0M©…²píÙ ô @²0üŸ< ÒBÇDuÙŠâšù8M±/]c9–—-þf!ñ‹rëñV$XÏ»8éæ¾ì²q»N‰* KâdDb>A/:4JO·Äœí”¦Ü û·ë{éˆÄ-e7ynfÜLctdrÆ ?}ùŒîH•ïáŸ7ƒÈì!4;ÓQ‡qHË'`’©ëQ˜QBC“$$n/5çä(lÜfÔ’•q¹‘ñhܰ¨[•vx9T#W´×™,ÒxÇL«Î>ާM"‹HưR®v¬RÑ ‘å¦ô„¬ð]N0Y}›døž[iM¯P*YέۑÚðA›¤¤Î¯3;°ªÈ«oü‰ÿjw»hºËÝ¥iž-'³8WŽóešRzŸ·ßñÚBOÛ^ö;¬Ðw® ™Dµ^¾TX ò½³Ž£h¨ý¾{‰1¼']:µu/I+®3unQß1{ÅBTTj Ù«!BÉI_í^ ÑWå@ÃkmP(ÃI¨w: SÇ*kï)ÿÒ3úi÷1 ¡ $Åô¨¯Ê.ÓÑ觨ËS½Iù<·+_Ú­ˆ´ý¿Â³$•7Ö2geñƒ´ÄꪊÏZ×6’œ‘ɾ®X~T©Yè±~3:—’¡)3ûKw·,ëV½®ä•ôÎ7ß. €C‘ýÖÍ x¥Šh•¬É73V1Ïp=Ù“ü%ɨFÌ Aý š&Ý¥dQhÒÙ²`®¢eg,ªê³lÙõ‰‰ŸFµ,W[•#ò·H)åðJ䙦æa™YÞnFäôÓtšÁ@Íø0}ÙÆôbŒ—™¥e®¸DùRÛ?ª,Öx[Ç‘vx¹ w¬CÛ­ZݣܴE>Aê’^N!ÛÔ{$0ÖƲðÐþÍñÝ`’}ÚX›Žé›Ä‹'k£‘‹?Rç‘ul˜¾3d[M#ŸêV ë¤`¶i1öm ¯tIéNˆÒ¢ë-ÛÊáè"dyüìŒ$Þ) 1…wZ*±®c6ßq…Âè]ߋޒB­oýä_ÆÞÒ± Ò<¡3€¬Öƒl½B{â_‡Ù‡9 &ÍÉ4×a0žðrÌšü˜÷ñ ädË; Æ:t¾§`²ócOÒ<ãI´×`¼ädÊ,?š¼\4Õ‘†q$f÷®D"R‡ßvCäþ¾gÙ>°ñ¼D¿ˆâ `<ðOÂ&ês8÷ÔѰr íÒq´ ê,Zï[q¦a,bkøt2’]?WÕÅgv¹!4)[I²‘qä³7# ¡DG+P‘•ö2ÓhçL" ICÊÊê .$eÜâ tìä1ã’ òÔXbRˆDT3"2ÝEò@àr¤K¨,i%ªUšÐb XJnIJy_¬€µ%…M"ÂGªÓµä\VtvÒGpÑy„‰#¡ïÍÕÄ›º†uqÀ½ÃyPÌ~ïõYNT!8 Ú¼%rsŠºŸz›öÕhèøh4“×p|AýHRq¢¯çVÄ9hŸÕ_¨Œ Ù‚FšCêïYÅiܶìxtŒè½©)G1zk*/$×ÛÇpV(—Z­r$Ĩ5V&aµLâáÕÿ]¦ëûsͺäÝ@üÃ}„õkRÿf¼ƒÚ' œ¢×Ðè½%®\‰nBˇ «ÊθbJ]óÑBŠ–>i3žþsgï8e¡Ç—¤‘ZõÄqÒ8Þiíìây#^-»ëX;t¾ #[ebÆÀËÉœœO;u˜Qlñ mª£Z…ÑÎŽ[‚ÊÑe¬!”lãÆ´Ôx;çM"}´ÜB>~Œd˜XÖȨ́à˜ï1Îc<±ÒÔ¦VŒ-Iå‰ÙäÊ*HÜ7t«ýÀ¯ƒ˜» ?Õ3UB5üôoYEq½*Y{§>Éê#8I8¾Ž"üc0Q£t©Â€RK¯\EEKM\dã5Æø¸òB²?çè>tõÂKÝñ¹z£…<‘a2æÓ–ëôæ´> êçn=¢¡MŒWW÷C¬ Vw,ÌŒ¾˜awß-®ø¾¬¦Œä¥r(ŸMƒÐ§^Í|C¹hÒr¿š7Fz‚è~Es³h¸ô½h|ÑšBÂ|¥{£‘Û1ÞµvMU¥ £¢ØÓ zÈ@u2U –ºìɼ¨6°­+5î qQcAv1€{5{qF¹-hχùîM»D=6;VÅ3‡ð¨iº: |Écèä+5ÀHÛ•iQ‰< U±ÑVÀ®aW2 UMa‰W’r sû¹êå»=7 yY¦Ö $"tKS²’…Aë?Ë>ûEŒ•£ßÖÊŽLN,Ýñ0íÆ>–±sX°˜„> /rHRFêLUìîóã]Ä‚'ôJ¨é¡1F¿;–º‹à.£ mˆ /-LKûT3ò¾Mõrí¡æ–R#”79{|%¬¥(¢=•[L×)XU/**uzTï»ç³ ¾éËL3óù˜X4¥tUÉ—%|ͧRì€b14³YÔq2¢&•N¥×²­HMèü!•àDÕ‚¾í·’¬óµº¶Loö‰q«™Ö }'´“²¼›5îp€¢l¦žŸ1 ˌģ± )–©cÚô† )jºnsv–þzâe¶VŸ£Zº*½ŒJ‚ÒÎlãFê´ï¾Ü>Þí¼:|.£’ïï¤E*µEXòª#´dŠú;šùn—˜-ôVª¸|•i®¡êŽ£¿§Žü¥½šJXÃXQØÙ|27¤Ò¹o˃ŒÆð3®ºÓ¸+tPc‚†Ôk÷•q©nZµd\éÛ„•«¡C[ï’ÄAvô"ñ]Ѣݙn£"3Ú›xÂÙ,jûkéðEï0°êYQÇÐO8Ò%YÀ©v!MM(gœNR½$2/Ï67Ûð¹½y†ÿ¦}IT_.ªGÐPÀ˜}›²oç«U¼mš¸Ê %¾Ãhq!uéèÔlo‹àëŠë^G)ÔÂÞŒÑ]¦_ßêß²v³GÞ¾›MѼ(¿êNi;Å8Íë͵ ¢Q.1Ÿ~’èÚfªT²t×Ól…f³,%ËYØz™q³±–$3·?²ê½lkýT8‹àÀ™ÉD¼Mñ>º ÿŽï{-)-Ñy~ñYÞ¿<:>…ø£å ÌD û0°›!f/ˆ¹ ¹÷ÂËK–™MjžÀõ9·ßDµ¯2(Í¿egu ¹wŸínŸ¾‚M/=e·Oe-­Ý4~Ý«0F ŽŒop³Kx•YA™ç XàêÂl•›¿èÍu³YkîÃDÖ“4;eÙÂÞN-.Ž€Dæÿ®Üï»î¯[åðãV§Òno×ÿåÔÿsv¶Ù©~쬼ˆU ‘§ù±©É P2’f®GxüŠZF¢¦—¨. ¡BÐ$º­•M3CK‡V+›E|XŠUâmÁ°ŠË­_ë<1M»qˤCŒÖŸÙëïÊU¾B cuÎ÷ rSæë3ŒÁ¤u' ¯Ei§°ßàåÑ×ÙDÅk¸ Ø(‹UAR3‹Kë³6ƒaÊ~°>îÓC"DrƒUY¢Â,¬„QÕzçÜ(§7ͯ‚ÉPÅ¡Ælð:]*åBew ÑPÇ¥±SÆO^榼,Ìñ 3Ç‚f‹‘YþíhÂ$(ÑŠ=Á5¼}ztŒ%ä¬[GïjÂgórÖvÉ®RìÐ$i…5¥ö§î’Nȉ›lùWIj@‚Þ‚)ˆÝÆ·oòÔÝhHEøt4ßR~X…¨ÚÛjÒˆ¬wU|6mØ)—eª¡¡OŽ¡„¬ (çT‰]y:fL8Cþ>A*„¬•#ok³1z¦ Ì!ý?Î ÒjcL'x…’²fš=àqâacã{' ¹h-Òš’¾<‹¼@‹Í'¢ˆÌ©ØlDßÔõµ¬çMx¡§›Õ÷‰ÙB‰(Þ{W*4Rk¨13Œž¯2c¼ (’¬ BT2^й%°¬1ôbÙµH­¸„ZY¹‹*r•èL*Á$-÷ ªE¹” OwŸïŠÇ'¸óÏè[ócÇ/>ùDž…þ¬øDÞJ!Ä<¸ÿDŽ0^9{ðàðùg{â;Á¾Û^½^•î‰h\S¢—¨S¦n‰~6ŠUË‹‘ßláóUTú½{Êíí+W£$˜?ª$ÔÒÌo66:.‡E^‹ ’Q¹õº‘¬`~⿟ ºx,ƒŠ>¢ø$¥v›_œAõ­ÄÖK¬ô:f#– jé?•™+m¿þQ”;熑˜Leu!h¡(ƒÀfk³ÙÂ&mG”]:ÜB Qx 57É'Ë,·¹(!¹o}l¦Ê>o-žÓøç-62x~¸¿qòò­Òf’*6‘C¶\ôÍv›26 ÈŸRÛ¥kZ¹ÝÀ3üÉ¿ÊÀ– ˆ¤Âˉ{=å€,p`($¢¾Òâ×À†à…—ö<'!=ã¢Æü™P{kEŒÙì~wz3Æ8_À,”s ‹ÛÀtÔhÓ¡¦XP]Õ.謢Œiaª ¼k]¨Öw£Úšý‰üÏbt—…XšyF¹eýp~¢—ÁH+›L˜vwƒ=qªÒ#䮊“†7bî`ªo|"Œ]³]9<€ h^R(ãíý½§ÇÛÇ?wÕ…ë«ÐÔ•RKGSyîð:9<Çñ®ÐÆhõ>Ž%w[R’Q¸YÖäÇÎåq)ν FAè;Èl“S°\’s°4qÔÑ-ñÅÚí–°àÙÆD¨T çÙ3H_3Ù{#«>ÈŲâÅ72dPr¥ô6TúoàÆøM¥íòsÌ­(QÁš¡'!ô[»ý°þÍÙÙÝö^|ž’AŽ59èIÊ´eû#µõ{Îã‡lžƒcÝÏì OìÁG‘ÕøÞöcFè[vð¸g—^ã-‡É‹ôŽ5Ç öµ)J¬(]ÎÆØ­o5®kÐÓÃ!ôô†ÄFŽÂ¢C*›(ÊSÀ¤Ïê@„¬-ÙÀ$1PãP›LaÊö®(¯þM4Ê”„^Y´‚?®ï*u-/Æi )pùÖXn”kêÖ™nÖyz:‡&턌 ­¶9$ñÞc‚¤}g §=ÖòbçPìNìŸûì‹!`?D¹ >íöýuØÈ­_ óÂ䃌$Œ8ņV‚À JI`‹oþQ-“÷“!…ˆù€Á*ʆû"êðRIÝË`j6PÅGÜ4/GVàÐÖe„pžcÊ÷7y+¢Q1+.È=øgdý­¢]Üѹ‹Ð» ±©nÿè΃—šXÒ:ª~î`„.ƒ-¡¯}QªbÎဥد/£:få㌥ ®Òþ¢¯·`÷’Û“ùBS%ˆÃ*JUï] Ê!•Vª:h\¨ßIá~kƒ$«»Ñ0ªªa)»„jN–Æ%Ã,"C*µ#VmVÄ«Bødå«ë¾Â}åC?€+ KˆÓ@«AX»ÀFÅØÐM,oµôÕÊ#$ÄŒcLU­ÆQÊšîº!¶‡a@ª¹¢% Ù~¨,¶œlÚp„¢ën‰>¨­ß%¢Yý|2U##õ‡äÇKuʇiwå‡d~Q¯cïÖa1Öy‡Ú ßOiÕ%§2̃ôÙÓOïŠJsH]›s4ƒæ4~¢©…µP¬ñè2Jáp€d ©Œ5SãxT# fÔQªnÒTOÒ::§j¸BI—“Á^‚5Âe”{gDâÜ›^y}˜U•ØoV¹Rôx@ã)œglû› "oÔ{5C…ì“A*š'¾ >1|­W)_¹Î»²xçÞ OPÔwF#™b”åYwÿh{çèpÿgž IÖØ8‹®Íɰ+*Ó›Ê0ñ!bÉK? F¨¶zâ o 3àÜEsGÀNÊ@Úí ê:´“ãsœ'è2 “¤P¯ÄñšB”›­„Cb}=¡Dý;kzŒÝ›Ü…ùÝåù]+áw¨WW®mÍ L¡qÞ_Wîzq¾Ø›ôåOÑ‹%ié$E3Åá¨l¹­ã†x©H¥>õ~ÉÒ¢}]‰!T¾%ÉVû…‚¸É`F÷3ƒÙŽL‚NOÕ«ÞzPM‡Ë}>&Uš@ã[ìïð¨yŒåë!zï'‚«‚KLoöm ]´@é^©\kW‘Æc·‘@SäËÅrj\ÕbºCÛ£€õEÆ;g°ãv匠ñS»zÂkº‚†ƒ03è4'46L\Oñ¾Ð:g  ã£éT”¶´Ta!Øt=>ÈËô)ÔË>áßòg#£/q¿ª­a_ÐÑ@o_é½XT½H½W9SÔUÈRÞ¨*z·xËù²p&ÐpI_$ç n{Bj‚M1‘–¹<˜D“xžº# «¤nÏÔÂGᨆ3CÈ`wÝMOÕÒ&çì>h'Ë®ëP£v‡d£ÈCöûÃo8LÙÐcCë±L4“êÇV±„;=ÿl*èòØy±(Ѝ&2óþVRäeÍQ' ð† dçïrž¶•@Ö •‹ˆ˜ SþzñXV:z¬¬¡è±þ•¿„²Ñ_1\ŠÏ—æØR0ê®|„w艋*ù9ÝæË¦Ó«S$ƒO Rá2±SMÊ\¢1ÀÂcVo­;Ø,»ØJª})®u‡yÑ¢dÉßï§IptdXjµâ ïõZM]r¼â8•ˆ¦=?¸õÊ ”Í>4÷H]ŽÍ;*½~´Dù6hÿ°{‚þXº%éS= ªó–lj·Í]Q}Åòôb7Vwlå/\ìŽ\ë·XÃÀ'b»¾V¬¤ëo¥&†T¨F$$C?ÕÏX䣘?î)óŒ ôψã÷ïÿCEM™¤¿ž'CTI…¦<š›¢å*£Áj8gF@ÐÒ~¤û:ÀuXøCøºÂÙ,ÜŒBA’_*jþ·Ò•Þ‰¤J½?dn%ŠHûW–7¯¬‡-.ýá0kPpæ )õÕe8T¯hgT¿iM?eßZ@Ê$@МÄtË#Ê¢,xíXºd´8I=½È°drmئúhÜÛŠÍò[™L2q;Y»Ý8;kÖѬ4Ú>¬=Á0ÈÆè(mU‘L]Êz¥yjØŽ3öŠq÷©ÔH²„¦àùÏ_G=ej©sd¯Í;á}^'XÕ$®U£8¾Z8ˆináXޝ>{(ÓqeìkχÁ¶¢½¼ xØï É4´æÁŵŒ¤+N~j¡|¯ÕRLܶ—ú‚ƒ³pÓ î7V§[ͽê¢Ù­FpÚ%ÄRon•öžÈÇðm«üDu´4ƒÕ&°è 'yN` ³” rúŪ؇ AD´K›}-ù •:_7ˆpz3äûFm™£+Ë»VO𩲉j ÃX©h6[¢ˆÕþŠbÜUÈDŽ?Ðø|õ[è£h·áºtÝ:G@Št—ZÍ%òÎ_zM÷MÂIÛè{4ÅÄLÕ0¯Š„ÞÇPªIMhÙäÒ‡Aÿ†ú-S]‡[Šq}I×DÜZ¿FŠ®´î\Js§b+Á²æ™Ý];?§(Ê ÅLù-­ÉF Îò3èô-Ѹa„Qš=¨Ñǃ5}‡þóÎߦžîn²ÓJ2:ØÍQ²•íôÂr5Pâý‹Ùõbþ_¡v]¤AÅT˜-°ªúç"ðÃÖÿõ}%Sx.°sÑëg EøîhV̦¢¤&›c’‘èÐ%³i´D`U¤aÓ¥QÔð>èßè刂« Ó†aëq¬1ªupþo–VLˆõlëm2JóÑud«ÛídmÐÃæ.×Ñ ÂÄp‰Íæÿ¸Úä#˜úi~¢™n*Éò6È—&Q ~܉’“wBý9+D©Sž>l¬7Öc‰àÉâúËi±¨úlÜ6 Fâaã±@´9%47º³n2n /ïÝìÙW2…i®KñÍ\òAþoÜ‚â‚É‚É1W<8‚ió2¹M¾;džòQÍx„¦îHI™3Æ~<»þ×~Y¿¯¿­Ëmð9™Ò+kf+f­2b°=á”Ê¥·€Cœ³€¤ ÊIAG2d{p™‘öCkþ…3?óÏ¥4sôXӬе=óœU’-hë‹ñÅŒtáZ%/DN÷üÀõßÒ"[5O¹ªü!»ämöH%ÐÀÙ íø^¼|õ¦‹Ž€Ýƒ£]&`Î…¶ºÁ™”lÑ8ýi1F5e ÅȲhéjrÖçñôú<~¸l¤s¤TÝK¾µ¬ ;üÌ ;Ì1aa2"§ŠÞâ²qž+N^@ªÿ_§tŽy1v6îwÕÄèõBóa±°`Vd!M™`ÎŒ¸Å°/1ž~ÃyX$ÆéðØ‘.>1þkÆÔÖå¼xYõEŽP¬±KÔš‡Áœýf<‘Îè#1Bã’GÕ_$Õ•lCI¨öe* ÝêoH¡a&xä$ÃcÕñ™#à†nqŠœzÝÅ2·€ Ü½ ¸ôð‡yÿWÈeqíÞ÷›xи–ÖJë¢òr·Æ—A»ûϪ¹L² ts%/*ðå-üò¿ø Mƒ±Ôñ¤žä$öHëÆ¥ÌJzhPŠˆÓ ;ÔØÏ++w4mVØgÚ&‡ ,¬ 5~Š¢¡±ˆW Ÿœ ¯·õ`£~îMÕ´«ûLÝ·É9ùÂz,žE…Ò ‚,~èB?DR°åª"?<7À¿’Ä!CD~hÚšm¨Îo°ïœ©èظåH%Kéƒ&úié³a¶R’4…ýÃ’UÕã…Ÿóhq6 ï²]Ébü·Ïª:>W{û’VÚ¢R’(ÎhW¡"ÐqÄ^fJÕ2ãƒÅ4qACÒX“}aFaà`Ú‹ûœ'H ÝìèíªÏ ç|<‡|ia þÛxöªØëÓyšÑoI«Dhj… ±Þ5H¶¦¹5EÏóOˆcYDAØvã½À\¡0ÆU£Ø.¼¬U J ˜h!ž¬éN…‘#V%ÀIÏPäcbM]+t:ygtváëqD ÊVŽxË¡¨¿õ÷j‚ýÒ,#ðžÞTb(ìhů`ÜDƒ¬çN{͈¡´… :$nÊÏGÉýžæßžÿ¤w±K 5ó/Ò ¨iÈùè÷Fãá$„çY+Z4¡L&ñ‹GoÒ—@>Y÷\êÆà¯k‚/ ¦-8¬Â¾Ð'ýÇ`m¤‘ÐвŠ\½Rù5s¯{×Ú2ˆ¥·‡ÙRÝ#&áw§½[Â-ìæ¸‘ A8Ûæ)ZtŒÏMS„JêÌ›ð=" ÏÆŸ. ÉŸ` ¦)ï]='ÊÊ(ô=íÒ½øjŽŒL©Ê?~u F˜¾úN…ÕEÄ$JCÜoaúto\ ÊÜ$Ê)Ü',0û‚æßÚÁKš€F\7ÊëcÌ7=Çïlzæ€kÌçÛiqòÅdÑ(ŽØed ö‚ ýýÑ{²“Cƒ+(¿Á™øÕáÞ›5µÒ×fW)´—ydúö·ÿŠ-'/ž³¤SÍéËgŒlG7)õ©3¹p§†Cˆ—S—ßb£`0ô­DÂOæTâû¢Æ·³išœõÿ½D@úÜ9Çšú2‚õñîÉ«ýÓJ»d§=«ˆ…ø[2ö’´Fi• Ñ)$´£~wLº ×±U$×”’UwQ2D‹âüxØóH—²_bÔ«îî›ÝÆó~¶÷F´Ž^îíﳫŒÙs(± +F@X‰Òž#ƒ«ÜƒtŸ¢ZfcçÌ'“§è$wÊ(<í¤ºˆU`¯b —íNfè OoRr)ËeËAˆaoâ§ïf¢;Ÿ4f·K~ èôœR›E+&x(o*㤄9£™ë+ÁŽˆºHwˆ¼£@€Â˜Ôå"(¦Ovéù”,«ˆ•â¸Ptåï„*5­fïá }æího²%Ö+2&®b=Ü7)$ Þ¾Bñã³'=¾]WVh?©dâ 6!—+*÷0h åÆšªQ”à-r4ÕÅ>œ`r¶kÑ~€SØÕŠmFøè¾ªËN…šŒlE*ˆCÈá÷éD%——-jŽö\µL‹’„ÌBÚO0£÷ñÌ·RyEûĴʸÑáÇh¨!JP²Ø ¤§”—BŠý¡Ñå{a´_D–IÚÌ v£’ «¢dK9ÑDû#sq ¢A*_9RHÄvYkÆÂxpÌ-æ‹ÒPõŒpzˆ² FAªß­É_á”Ô6V‰=1tãЉeCûq )§B®y:ðy}ˆ!Î’}Ä[.+|zÉœ¦¯ïd˜05³†y߀XØq§0Bf˜ã¥j‘RVʦl•¸{=z=/}ïGN4MMXm—gÕUòMÀl;?§ÙcêÝãŠøŠPOŽö¥ÔZÁïUxYÏüÃ`ÒÅ4&¤TQ¸^$Ã.|ï?13Ä<ìì>{uXi§•Œ¤G»Òk˜Ó`§uwÑrà¬Ú÷‡ê(Ñz±Ûúqïðy¥=]Z‡¦Z†óÒoø`û94ºu°ÔùЯŸà±¿Ýîtšk×"¾ßÄïgkdwFaËÈÊвÂÜ×<1²6äÛse. g¡5I—ì¼Óˆ¯(îÆtµ¡ Ðí×û³Ñè'b1†0K¦SŠ­ŠFµøSª]-*‡ ­Ãåyt²÷¦ÁŠ'}#/ìZ}òDcŒS[Øl:žÑ.I‰5„nX#JÈ9Цú†^«pÁ½a€0ÀôÿëBæÆ! =˜¯Óq°¹jÈVQ!©ÁÔ5A­†…?«d Ci½ A«lOp*úmÕ†³Ò’¿nñ®m2«DÍÒº =‘>dâ"¤–éŒ;ä"]Îvɰ‹éŽ\ûÏòTì»xEvAPê½ëŽ€^y¥eEôÌ 7q/Üë­·0Š”$R›Â¤Ñ©4Ö:Õâ[$d´ ­]˜ ñ&Ûl‚wR%6Œ˜Èâ#ES%Zµv7P½‹i”1Ç&~°;0kè¦âÛo‘ ì=ëßý}£PX[[¯ Uñph/W;«„Žãré„4R# ±VaÔ-8 à’38™")£vj¦Ö §,⑌=#FF}vVHe…P¢‚Hª³Þ¥±M¹ ½õ˜µPTS)ŽØ²Çgt¦D%Šäh/kU ?edXо¬Ž‰H%"LÕ §0ØÊé²’MŒ== àŒ0‚*⢇jâ뚸 fD[ÏÁµ«Èr6| )'jÓ„Ás.0à™ßoR´p¢q>»¨ËªýpáÏÁä‚O¤0x) ?]ÑN´ í9tÙ»‚~$Á±SXƒ½ lžé®`/X´\¬5¯GüÃÖ~E)ª©Á¶øA$¶Ä 3)ÁkE´_IéÒ½vFÞ?ÂŽ­Üs÷ožiè‰1yCUB|3FñàhȇŒÍÂö«îöþÞö ù\%÷m‘¾ŸWi{pz¤Þ¯¯7:÷Ì(v€¹}îÁÆs³I #é £ hI-Ô+ I%¿tâÄåØúî`æò •’Iª¬Tú{NS©øÄ¡ªäblߦŸÕ‚i/™:¥¢¹cÍ-»(sƒJ­[žª·(Ñ4ßä» ø¿59¸·qÔ“ý«óUÇ+Ìh:ŸJç!ôÁ(q_ǯ|6äÁˆ$ö5Ýnýx²¿}ò‚b]¶Ÿw_ᄄ´—Õ‡}%×oŸt_ìî¿ìžœ“(+ƒ­ëD+mÃ3¥¥Ýgx£^싾ÝüAª·üà‡Íï~ÐmS«Ž”aC§˜~Æy(Êäæc?Õ‡9‡ hkØŸ¯2_-”>pÂ^ôz¢NŽXuÌZ'ƒO¨êœ¡CC"NåÙ߯ß%qË耯éÖêku3ÒE=C×aòӉÑõzHä°¹À‚ŸÎ&¾rtœáÈr¬ ʯšø¶BÆÊÉš£èßiÔrçþú£ò[ c#'·Ö]?7Lf5Œ÷øô~ÃÙÔU2;öñ€BH”pX‘?ÔM%'Q{¡Üäpu2h]³Óè4šQΖË!ƒZ‹ÅŒ¾L§›¤`çåƒ¢ŠŽ~…ñ¾j~ÙCÇgжß&WÖÑɪ‘Äø•X©Š†,³~‘€’5ž½#b­û;$ìﳤŽdLƒ‹bQMŸ½*þ cI‘;uÉA U|èðÏñËaÊ7¬ñ–½eNEð¯†ÙER• ‚„Õg$ð!©Ã£0æ*œùËÜŠ ‰ãs]º§./ægqÑÃN¤™4&„] ëd½Gjk3Û7¶®|'Ùĩߑ]4?f¿œÂ3ÏûÑÁ/6­$·~W0Ö³–?<ųArÞ+÷U`#Ô@Öëò6 ¦)¡ØîŒÇ8û¦è˜‰ŽØ¤ŸGÿ\X¦’ýÓ)½¶Eý}CgŠR0¿õh6¢ï£rpŒÆ—…¢+W†Vù‰1½µd\Kõ÷l~ümK$2œXŠäÔS&óé³2[Õô·ø<ÅAcY]YI0•žØ¹rèÀ\a_NöØ î/«Äx°öícÀ~LþßÏü÷Hü Æ%SíWÚЉ‘{>ŽÝ ˜‘›¶`³K©e”RT†îÉ«§'§ ^í ì,¢cÅþ޾U9n'”Úš®Ü-5&ʃ†ðgBëŒpÀ“7D»jì ‘‘è¶§«XIÇ>TX¯­³„ì²Õzü4‘r&à´RPeÖH´ÒöÔm u$y´ð1HwO h¬f²OÜZ*/`Ša‚ðÒŹ±ZÓשHÖ,²}Éxošx@ošW7Î>JÈÎV‡X ûGÛ;™‡9ØJÑ1 qA¤r«°ôëuñòèøô`—á*øMHzy_]ˆd±‘*‘6°¤f†^ Ƥ!Ý‘ ÎÿÚŠSM’47}Øïr‚2Áçí´[åú¤ g>*¥%ä-Op0‹([QAÈã$L:E+yQ[ãȇl¸ m²ˆÖQb%˜zŒá§Ë…s¹\±Pm Á¿%Î ,¸F8êzü¯¿qÎ{PBü·øNaö4¼j…£ŸæWj’m 2iÚÙÙÜ*íì|*(î'Ýg»Û§¯Žu}e…D«J"-^te‹âÖ`žìŸ<yWÅ2àGƒÑôxÆ"}¶·¿‹æ*õýÔDÑ:e'dô>é5Bå3l„â…Í-›¯0Ê!š*y}vH /]|G#`nž/M|§#ÇóáeþNøåúëÇÚÓáªüHÏvöÓëOŒWL¹ÏØÇnÄSœ¹ÉñÐûcÿM‚÷Jñ#§®s$Þ¡ÎKt‚Ý~‚æ'£B` êh½"DÝÏ—aôú³Ñ¸ÌhÒøÊeÉŠK®ÑBÅ[]„6S8m¬Š–>Ì  yˆ¯ÂWMQ5p§¤VÝÄ⻋1XfôjUüèºci@àLO“½cxã÷¢½ÍŽàaœPc™ÚS?ÈØ½•±ë­Õ½_?®4Ö¨Eh\fSàÃê÷ÇnÝ™ŒêWˆ\‡? ™õÇ«óšA‰4x-}ä]¥ € š?âÄuåÙ¹‘˜-”õo¬¡õÖÐM4^V¿ŸÃì¶Ì‰!šŸûå—¸ ”ZÂ\H+©cÑ›€ìÌÔ(tø¡ÜWô®"E‹ÐE¬Â`@Þ ˆ†š6R’;PÓp ã)Ó÷Ýi9TJ¶óf+]Úß5”ho臞UÞœCZyµø(kóQo«6=ªšU!í'œÿ«ß÷]âMcç"ŽÕxS¶ÊŽ ¹Ú²ÒDû9i$ ¹/4Öb‘¼¥>B†Ë5Qôª‰ÉåŸaw¬±=¶¨Á Â}å«ÐÞ¥åÇG˜ªuûQUX;6/ܺÀàV ÆØíÈSƶœù©¿òXµè¬v[Ô'Õ ŠÕï+¢½rGõ{»¼ÕT¿o× Ûšx¹]?Þ;i ÊÛiÐGù,wódÈ#Ù¾aâ2õ3EÖNþì4â#c-™<õMÔÓpÛO ­³*^îµÈ[ùƒDD…=Àˆ&S#Ñ»ŒF[7âc§á<ò±;özøùÒ‚½ÂJtÕ®ŠUä{ÿ{•L$Y-)öž/„ Å )Øq?ª©á;ìàFzà ¼a¼6¢g¬ãq2dïæç w‰¥Ÿ¿T‰.홈|ýì}îöC¯çû½è›šX<%ò°íEóË"¨»ï^áã»=E9ùN?ïϹ¶ýa~0•ù'D:îâgã$ÞñTHß̇œNÏ‘LÀ±ü­Q¯òg1q°–Èu#ˇ"Êß±Ñm~mƒ8ˆå?Éëjù`ávš.[JÑ’¿ß›,lÑe2Wèþ:sýi5½|:òP t:fßMwŒ4¿»DÕ ¨a’>·rÅe*gÔ¦¸PÒ±•@ªÞ&àÒRC2îÝ"“!T)”ÜKGã§æÍ@…¡5ˆÑÃà|«€ZÅ®ຣ~ m}Š%2Ž)Ò4.ɈM§Ü”'QRk^p¤”!¢’æªq„ˆ×K…s5®«ãmáçlŸ?íµú;îîàÙÅóËÞÞ¿ÿùîÇáþèÀ? ŽÆ/ý¿Éqx2=½zÿÓÕëë77?ÿç_F˜„bØìTNµvšívgDjýyñ¤y!Í1Í›{ê]Ä{ˆïÍi+ :\¥ì¡4®§Ò þþw‘JSYVÆÜ,ÒÒZζì¡¥o‰”Z!åV…Ôu[H:‚ÚÍ·JŠ9)“KGª·Ø–éçUœWΫ ig@ºÇq€ž3”W·.06;­Ÿ¥•ĦµÆì_¢h}û—¼è3r9*8âéÉN/-NêÊÔl(ÁÈ#Õeáð ‡ËBÂ>baI¢âª‘É^蘷hnxx`šàÏ7fŒtŒ’Ød7l#ýQwpo%üZüQa¾7ІÈÃÅЭ²ñ@ø£¢’évÚŽÆ‚Lƒí´ÚH8¯¡qª©q„1†{/ܬücÖ;øK—˜a˜œÇ4ÒPƒ"bÝFùÞ2^æ71›e~˜4U^I7@†ÞcÝe('8Ï7i™¶û}…SUF%õú¯eÔ‘¾§kN2ÈB8RoJþ æQôcåN:7á&R¡m´)$cUvrŧEá]øˆä‚iN'³ÇË!V)C¥«Çh»Ã[%¼xï =Kw†ðæ Ðñ042A‹_í×_êù)ÚN…øïoÝÑxz£|nIŠ÷æéH‚“èͰPÒþ¨é¤¶CoÃXª¨p트¢ §Õ°ÕŸÒ¬UyØ SùO@7“EæÊš™†m3÷dó)â q7 RL™½í•¬Š„‹ø–ì¤Å~åªã·DíÆ1ŒdÕ„XÓI˜HvÉã"¿7ÊæÒÙ°;™UNÅI?/{Ç÷EÊM‚t/ƒØBü†æ }î}S}E ^c¯È+þç?MüЬžÈð)Õ¾%)‹^¾“ÖfF[üàf©å¬là­dkÄî°^)Ƽ*v¼>š°=žCMHß2jtÕOlo˜€e5â\¯{žîÊ‚Å&5,ÏΡ…KÜÌh·E_ÓŠ$ˆÂ‰HKþ;QÇŸEØ¿6(ÄoUù¢ތ΃a(ê—®ÓG{ÝSi¬µŽž=ÓþN’ÔV1›¨rË"\ÛY7í÷&Ncd;/Ÿ™*œML»7‰¤|\Pn”ѶCŽ[N‘až"D\ŒB©Bšƒn/"gCKÐ öoŠP*ÛÉ œž`Á¾j<-ˆ´ç[Eœy¼CÓq¢ˆ±Öн«Mt0ÚºviÊ»"ÌTP€3bH'©n³´¿w¸{x´Iž^Òî¥Sß>Iîädûùnwd©g;UM¤h$.ÂtÑ¥Á¼eM‰aÍÏÒ¨å¨Ñáèt:E«-Ȉ¯§ø8G-‘@jöb¼Öf—aÌ¥;k›%Ï©«U ¦Ÿõ’åÝkÔû9ÃÆš5ôå•9ºl{Rœ(f¥E?Û;>: tø1'n±ˆ`ÂÐ ^‚ÅüÛ)Ö]Ðó"PZs!’7‘îTÊÆ0sLoèç<¦¾ÞÙßÇÝ)ÛRwƒÆÐcݦY$w"BG!ž“âD)´%1Œ“fi¹\(VÅô*0|Xl‹£0Õäê åëÃÈö])¨“,ÄÊm‹ÒsÆMiŠ K\v\!Ú¯ùÌ(uL[ó[u9X÷Pãá nêë¤7µîlçôø@Ó±ÍT‡Ð$)<íy¤8ºb]8» q §i•Q›L²©¢@JÚbïDèR 9êAþʶFq^êEô ™!;É ë”sÌJŸ¥Š‹ÄK®•¸*&ƒ«Åà;÷žížœ’$9Ï0ò”™ÔÉ`×lM*^‡AT9§hyµb½®‰Ñ”Ô¨³­÷Ô¿Ö“­Ñ4ÁRpk´±a¤UÓHÒ"ñW)¾ëò»HÞJ¾•ñÐhOH(v±åú÷åÔ}¤$/‚ä—@"Ñà@5ù*¾„@Òj#Ô[RH¸”e‘‰s{7Óv¬y#Eïk“€9öV³˜&îýÝ—•6^AŸe¢éH%‚ššÀ”ÅŠïTvß DrÒù(1;ÕN…+%éCšcU†ÊþkT`ÚßúÐ"`ìg&4CMû‹T-¢TZ[æÐ©”ÍÈïLU3|¼IF 9L !ªl)Jä4lH{°U°1Q… ÕQwßYvP?´Œ¿ØàNþP²~7\,ш#-K3}öl «~4Ô©áA”Ÿ‘{­7•jÝïMêæ…µæ¼PçÊèª&º£+RkQŸ k‚ÚRŽ®’©1Šz(SKø! !Av¨Í;;¤¬[±áo£ÓV6Ε¦® Ý~NÈÀó¡8yšÅÄí­4¨ëtRy ÿ´}Œ ä»­ ‡º~@üSÏgfX Õ­Â|H ž£½^W‡$¹Ñ¯]ƒ—.±,êo4 R}àu™¦l ·¡›$Fs§ ìá9zyºwtÈ›¾®‰Ö.•Étêñ7ÆáE!]JU†[¼®&ïF)¥ø5‡Ì™hévKËfÉnRñLãÔiä)õÌ-E + ÙwÂNþè‚4› òá@ÈôÑ™Ç7c“Ýòf}¾ô¸çÉÏOöO²E̤ê3'o^¶ŒÞm¿þ1ùÒTHd½û2 f)D¹DÇÂ) 1é.}¹ý‘[¢£ ˆ€-Äj½‚ØsÝâ5 ªè‹Ç—)¾ÿÛßÄ“ê÷£ÔˆÞTP ”ÍÎQj‚6såU‡¡Á0” ¿ðÛV¹Ý~ÚÚƒyvVFbÇèr7Æn£{¡ôÞã*ƒw~äeÈâ âPÕ[D6©­2ŠNÝíú¿œúÐtH~e ¢N• Ú!݂슺VépTW;bÃvíOÙ, k.‡‘yr?ß;9}­)\*keµý ¿¾nFã~;ô”EJwcdˆˆ¶ÐISèŒÞ—FFƒÔ4ÿg&2 Í„;ÇF3Ü”‘Èè/–¨6” av¢<&‰‰¾/âÙáÉé+„·Dòô¼rÑoS¢¾‚õ-QÎPÁäÁò"Èg±¥­I-õJ0çë?Eê¤,TšÄ<8æ‰U&²ÈJ*—ÉÁÐ/¦Ïp(c?ô©­¡@z½EöIö2 ºœH9»ûtL3Êžh¬I´åR³³‡‘"¸Ýÿ7¥#Ó×RòZsr‰®4eìùÛé÷'°ùÍm+¡L™ht4æFK6eµ¡s—DÞÆ§‘èü½³.§õ-û8(ª°e°# ©´ë™ùÓÀê3Ø_z/©uðEzj.׈:k©.Or»×_@—iï?C…É)‚±à/Ø­‚1´}¢´0¦=Q„K+ÓHÓòuçÃýÚzçS™ad¯5Šìª2•ê‘Q)ŒíÝö#+À ¢ÕQ£:óÑÀ¡Lº( »¬NZ¹¡”7\#ÑbQ»E2_cõŽžU²‹j‚ešZD2'1+CÆwJ ö Þ ¯“ðûÎ:ÝáËÌΆ€ÿŠ\àë‰'õ÷H ©´„¼<ò ¦•ÊRû8Ò~æ¼s ¿5²záV87â”MþüÂ4‰dŠÔÊW_ØÑ‰ä–¬­Ìž~›ØŽ’Àö0”öF­{÷(S·;€³Dq?&áûàä'L÷Z-U¾´£›:‰7ù&øÞt{O?ßÀr„¤hóìÇ¿}ªºÔ¾-ùùD¨’xðé‰NÝüíiŸqÅéöÓýÝæhmÅÃIs T… Š´ø£í™™O˜(›ü ¨tcm¡Çzac­2öàÈ]Vm~ Œf­Î¶Ö­*ˆµƒw­mŠæ FRÊÞ¯…~­SÜì«Ðo+œ‡ÓI%ô16ÎF5FçôfLpB7? ”èOa‡^Meõj\ß NÒj Üf#{yI`•ÿö[SYHˆµÎÇæ ýi#î߯Q×®ÞÁ3~²_>žuªk•j"ßoP¡ÎTýXñƒ­Nq§S‚X‘ßšJ§Ú :à›S|%6:Ù©5;?v&Mìezì`‡fÓÂöúÙoÍ_Ú?|¦:fPÇôÏ“x](91Y%Â`þ@ƒ©(L‰w,}·»VÓCƒÔÁõÖ/‡9+k™ëÄ–Ñk|gЩ$öŠN•_É›£¼³È3öR³$YŸ”é0¹ ó^kƒ·&pÂÌœÍ~Y2PË®WG“£|¨ÁUÚá ² |Þ¥ç)5q…&ïö’fZQ¼•ª7@´.§‡³ÿ+HY­Ø*Š…U×±³@‚Zeã•0Æ'ÚRÕäµ´ÉV3_|ø”VÖ'UμӫT?Ål•ò‹Võ üWîWŸ|Ò±BxcÙnuOîî¢Æ(²«ZÛÈ!†°é¨ÖnIÞÍœØÇÓ¢iÌwB ëèB5ßàùaqݾì°Ý>;[¤ûA‰°Ž¨âSÍìvâögúâ’uug^_C‰÷­“uáÓ“‚žé,8‹wt.(Q‚)°rf8Ÿïî‹îë£ã·@6-È£—D{ºWaïWª4N¼‹Åcð$Úå犉©û4ÖZí6hI¾„4÷a IÛéY8Ϥ ® ¨ûuìï==ÙBƒƒ“´· "½UâOLAé3hËÔE™|éË×¢ Å“_°éUs“VÍ\Â̰z†4ˆVU>M×¼”Ö~£î‰÷ªå*N[¦Éyt6÷@ò³›#Ѭè¸mL/›싈i1@Ó“¤M¢°Í—Á²ieMWšäá(’íÁ›2ÞÇ•nfÓ²lë”ôýÝß™FoCdWÓwÏ; [¨€æR$I -èñ§¥bQÖÑÄ0Å;@/ßÑŠëKnPg©‘Í2:Ù 3_ÊõÜtïxÑ9xð2tïªRÅL©¡ËŽyÒî£q»K(HDÎÌ8¡) ñVù‡2G÷¡ë1eqmDÖd €r»ýÃÙÚ –“‚e]¬dñ˜vY.\¦ÆÁ§(^Û‘a}Æs•‘4)ÖuÈÁh†1”Ê?,Ÿ§ôášW+3MT3­ÚLTâk§Ý¼Ì¯ » *%ÊWR¬ªëGãæqäø3‚–¨» ,M½*9·j©žkÉ[Î*ÆŽ7Y¦rÆ5ÂÒõ´ò~^•\À¸‰^­ÆØþpé^rfEb~vQª¸[_bqZtNÈÀ↸ ÑC7W)0³OV1™@ÑHÙ”Qdš;%l _îµrÛfÙ¾äh˜‹m‡æ ;WCiA8/ÑØëåHÅ’©2HT¤Éx»õ†¢†²íÞ½ÈÓ ïm¸© EkåN{i[åó7oâñ6µ­\=¬•&7ë_–Wå‚”H2B(óÖslî°½÷FC Â蚌ùÆ1èùY$q™0"<%rI4 &…•üuª*oÉaó[?޲ î*/"ÿPcGÞ…#¾b=b`¾‚ˆ\¹5¤þVI™ MÉ…sŽ×gÛHðèä¡h„FŽ73Ý¢²Ú}Ž¿~¯Ä³½7»›JÏš=þúþÆ}8k+5|sŒžc 5ÔGD¥¬M&Ÿ·ZtÑd ÝÍôRÃÑMáösÈw{j›Î5(õQA“Åw`5TÊ´uîH14¯x¹­p~p@H/ú7"!5ЉŠE™)…8Òá[˸¦Bñ˜Í”§û'bÝ- NOƒÑ’$ÜHrKˆ ±íÈ¢Kmíóø¢±*ÄFýù‡o¢ÐÜ oÊž“qmä}@]!©8‚AM¸1\yaÄuQkƒÜÍ{PogÄš JŠó‰êò¤b$âï\Ú ¹²’!ª®,–RiK[,§.#ekIUk1óç=÷a«¯ŸïmR&¬c´ò °3—I›MœÞe0™¡ìº’ê µÒ»î]>þš¡‘VÅó Þ¼€Qé°¢¼aømÞúëu?èâN 'U´Àžz|VŸ‰.ùÆò7õŒac¨Ã‰²ut´ßÝÙ;V  G“ó†#J?ìêÇ­~´ÏÉ«Á»&ìÐëFØpŠ¢RÔ-ù­•»±VîJ¼ZÉq8be 9QŸô/ˆ3gLÔ5ß»§0´r–õ#³1¹náóâ²w­hÌŸn¹ËÓŠŠPäSF=_X,u+erRƒîaßèÀvˆÌîkµòt^ìà¾0}BÆ„%ñájøIÆÎ‘,÷· —¿ÏïýKÒå;ÕóÎÙÄäF¼bîÃeµ»Ýû—¹Û«çÜh-Ý# …ç–c^JÑà6hkñõ7 Þ~œˆŸ¼pæ i¡TüÀóBÞÚüDW¹¢àì¸×“?°’ïÍ’æ†^ø#ç.l~WI ’? AÊi‚xILškäìßeÃ.döÃQG¬Š·÷–äZQÕÑ[Û¦Ÿ³«’¢aÔp·7î­ ]-ôÄ£ÏÜ>®¿~Ü}üPceÒ‘[‡äŽmÜýè¦oËk!–zvKu+kQ´x)Ž iž·TûVÑäY¬ß§#)Ú© å4¹Ð¾zÂî—íŒÁuÆø&# ,=:s˾„Q¢8ñ|ÌÆ4z·˜ Ë7+Ú‡o#Gíê]®-çWÞ~ù‰iTçÒ ãK|U8îQ z×™HWT4¶ÛŽ/EbÙß2yB„¯|8ŒKl² Ë·."•Äç2Ê ‘1xs¥:Ÿ!l__´Zß/yDHµm²t¾ùÎg i…Z@ÚÇjÂÌfY–aÞŒØ-XÖÇœ©<Ö4xÉmì"GéË(£—Óá.¯êL°ØU8ü уõ¯bðÍ#át†žÃ| 7ÚLX\AWg_ì¸çž£:ˆžbúøæÑjõà[íÁm±Q^²¹¬z8µÇQI<ì¸ÿ‚ŽØwõ]‰ _7ÖU;†_n õÑh‰&¤ìHZüYÉ{ò×] ^Rïú£¡C¹õ6ó?¡'Ÿ{ß|‹3(î–G'Ïšëi»å]œ<'}Ãrâ.š¡u~ï)4ç@,Å<)äI/œùò9~ãWôm‰#„É…sk\ìÑž· µÞ2SÈÚ–†»\Ètg„=EIÒ¿Ü~Qü<éί¿ÊÖý×çHç‰ë‚Û™'þ ´«—“i-]çW¼º Óœk2nazG]«ìÅm1xÚ5V“ãÈ6 Á¸ä]’¾?·KÈR¨¾#uàx5ïùˆq¹YˆÁŸä³8×Õ[&W¾ÛUD16n1Úð®9|1Ÿ@Yôê¬z&¯LŸ¨à/ñXãü¦/aµ¢a-ᑞ:ªjºTâ­\—w »²”³ÔBaµ`@¥û08½)'J´ÓÕÂg܉cêù_u¹¹(s¥Ò£¶¦µ›AY£‚L_zÞ™aeyæj˜}Šh]ŵª>mÁ×|K*§-&Œ+#OÜ`Ñm¸XJˆ[žÌضð2Šg»Ýï{Ò+HÏVQà*Ö&±2"¸òžÁ˜ÐVWÃÔ¢®†QI/[ÚJ8¦µ„e,¡²"òcöŠRA’ÒÕÕp>{!ãÏÃÛéh,7ê´­Îü¥hìK"uÃþÞá™a—ª–’…«nÁ’“™¢U‡yR(³Lc™Ù»kÄ y4qpL’©cËïçDF–†Õ¢è †ž–¸•yòA¾óGÇÀ„®Kâ¨V¬EV.z"Ç ã1Q«ôxDåýXdãy‘ãØ£ôò`ûpïÙî tõÑÑ~z:DL~uº·‚Ù·_ퟞÜ.Nòü(Ë)Ñ£sF[N„GVØíÑ´—P)íïT£aˆ÷>Œjª1uÙCáñw{£~¨.Ä`xçÀ•B,Û‡ùæ¹~â͉^Ô)—ÃfcM4›ø(»éx/%»Är¼:½á¬ïv!$Ui—Uw={v²‹‰Ÿîïv?ª§Ýgí½³nc­|VHµó°€¨p'˜¿öÊ•–›çA]_¬·ŠRÖR!ßê-’@1ŒóÈA1”\$ÔÉ·DÈLƒfbþH‘y-£úq)CUJ ¯”µYC±þ4zÁùÅtâ:ÓPR¹rw:Ò‰²¬!W RK©°v±xOïE…k»ÚT µªpBQ|]Ôu½Dk röÀËâ{³Ò8Ûó“…&Øe#Ÿg¡¦ÜM$4âD{#HùCˆ2ŒU= P«Rhâ Æ¹tÞ+kAèlj §…žï îµbýe‘hš½­`Õ£k ŽÙí.ÃÌLâ¨Ç„†ùk¥þt|‘¹`œ«w´2>`%*Œº¶!¶¶Dñ´XÅP;уøƒ§ñ¯‹UŠýPisØ´3|õ ¶^ƒ]á…øž 2óÀ#ÎRƒ¤†CXŸÈ´Ð~÷ ÿg.Þú,}áZ1ruÔ[ ÑÅÀ ]¼¼Á~“|³ëxŠAÉyJÈKÍ—uâ#oEýek|1ü]zx?¥Ëí?Åü+mPÖSei²Æà¬Ï¸õeNêsH¢&ÁÄ8sA,ê‡ô ¢‘ÓÝ´5ÌT™öèæÔë Ót ©»A¹{øj¿»w€æ}°Ÿ´Ž÷^žL>Â-ÁVC¤—rÇ[ œÊÍ_(&üóã &(ÎΚ¸/Ò7šâ‚¦x³³N!µšOdXBxÜEœù®‘ˆžÊ_Q†æ/{L·ÿËÚÞÃÀèQIKìÀyú½]nwÏî¥nÄÆ‹nûïÅôðÒuúÝövý_Ný?÷ëßÀ“.L‰']þYªÎHþN7^‹ ÕLyElà/ {Ž¢ËRIeh|þ ‚¬µ[Šj“™?v¦—ñЕȦº‹A€iSb%Ò¡çc×.Íè3)>OÏó"3™>Åà®vùX›^¢åÌÒÅ­[¤OFMekäé‡ÚN±ÒªógY£:ÐÔ>Þ²Fç(:'Æ›¨Óõ½IfÿÅuó0Φî‚ÔÐfÈ0¿Ûâ‰CwŒÑR‚ÉÜÄÀýgawAùá%UóšÓÎ|m(jgò|R½iw‚éÓ馯÷™ÿή|;é(èφÙ3\¾^0Áƒa¿«ÖF@„‰~•?±äª™¦—d›¡3pçÐÕeuÕ´IWÙ?bäÊÿÜ5cÏŒAŠ®ËÑ5Žl9¶ÆìcÍ$§¥|„>œÆÇ,e!±­…| °:ÛÞõ‘8@…Å‘ù æÅ:仚 X ´èF”E¥L–Tåj©LGDd¡ƒ^"ÀJë]B– ϧ`*Á„ë $Ämi8¶#Â&C>ž÷>6Öú Apa²Väв#K<ï•kDÎ 9†¤’é«ì ºÌ\ WŸüÚïöÔkxZ§fÃ3š#Þ;CO°ŒS#8* §›ÀªqSqΫèÉ'6Txs¤xéÀê)EDH^‘xÑHFÃÞ€èá…®aeö¼)6À©¸lzüÄCvKèVh]L槈L\È <ŒÐ‘5¨T9¤X†Ãåøt¸öÝ÷îDÍS®87JEÔC‚Å‘ßý*Œ:'·(7Õ›zÐaÿ!d§&¡DqûþPS˜ÁÞéÿç[|’ãA”ßïÉæúÄvm²‚­Bºò"E²N‹G¡Á°ße”yŠ^( ¸=]:!fu}ºáeì h ˆƒ ÎJ}HÃÑåp©@!tˆïÍ&0n8„NÎFQd]GéQdþ¯7 Â`05aSÑME#c*}¦>˜kŒ“¿¥€œ:ÔsLlíòjž`" W¥4—ÁØmêÊ2´+šËbÇPÐׯ¿•-Õ]XÃV‹i˜Þ¸ÆA%$´Ú¹7xkÉ ¦¤y§b«r353õy7•©±®4©`’Ølg«Þ¢vgHºÚßõ‰ehM“ÏßkÓI^Æ4ƨ*“9Á` '†‘CÇ»â«`z‰C;œv%Èn‰"gq›âÈ6Fšƒ?{f…APËC“X¹lç%²`Ú»`¶Ž½ p©¦{CozC¶Ò©-Æô"¸B^RCVŽï¯œ‰ ÂE?¹Â½w"„‚j2„äÊ~îB7¸b£±þMã†n„mWììx›ÒCån—åI´ØA\¢ŽëÝ£>F>ÛЦ¸û;CuZ q­#:¨bG<…é7õ†a§ÚQµ©*h£ŒDíö«Jç¦Ó.þ1 ¤¬!—GS-1ïÜ| #‚”é“A hÅxßóƒÇ«PìïÔˆ´Z ÞrÁâñÇ7ä'&A‘ðNdÊ‹Lúj1§—fVlKQá"qÒjÏgäžø9°óâî5H5€4†)n/gÓ©\„#I‰çð\(õ·,ÃÁ¦3™x`€´}½‘¡6Ì{ÍæþN÷øÕ!ݦÄyÓ‚£¹Ï‘„.à[‰% §æŸÚˆFÓÔeš²ê#¿çáu—ìÛ¾×7‘êu…ërh… =ì #¥/.KÓTüú1—x®Ô]¢YRŽUÈ:Z–ušDñsTª‹d}½ªë ®ƒÆ“’!ÁE~‰ût L>©0ÂTÚuvľq¹ fDEméÈ¢‘ý'wrH ÇÏyŠË‚çW¹™ÆÆ}”@éŒ@×£ ‘@!7úkŸ¾Ðþù:×í‘`twnÖÏPYé2S™®#ò™Ã(4tTó.fûVáS4 :Ì:}ÂäóEÀKê&Ëäƒ$»;RãIá9º.ï²É 9îÓÅ"mQòk= ¬åEÅ&4Bå\{ p| J´µ¤°e6 ïZJ ¾3u~+í¶^‰âªt=@s ª1Ö¾ˆÊÆåòïï==Þ>þ¹»·#Ö!ûÒùÚ=>Ù;:¥‘óï`r Ç»?í1‰‰ûÞC.˜Êö±€ÿº|žz@ùo¥ãíC„Á¿Uzý1¼—3è‰úƒjæ€/têû–t3‚¥ ½Ñ`'9 ûïLáeÓ𬗇¼MØTÝá MŒ1¹töÍ©„…CÉ?ƒÐ_Ч.`Ÿ;°5ûïÉùƒÎ1d=,¯ïèØÃ"°äÓtX#6i´x¦ËÖI#}w'ï]™×é(œ/  Áš »Ê«ß˜«ÝÑòOÂì$6´ Þ˜SK‹ä5²‘ÎNàæÎ5MÊQhÃX¨‹ý$H Ç­hg_CK~οծgß1曄)ÙæßfÅ«›ó~é& Šè¯‹ádüQÃ9¢ š}»[™Ù‡½o•" Á7±J ·ŽæBƒ·Õ뫌»™~Ê i…”(­É夓Ð\ÊâÑ kõ°†è1…âA­·b~/|¹%ÖP>ÆëF:ÁsL‹MJ:Ðédô¸¿f“Ý—•vl¦œUc} üpŸN=…•¼sÃ/ýì]ª¾IY'•Š¥ÓDÙI#5óÀûM·fBfÞ?v’|î®eôþîÒöBÝwÄ–#Ï×´ú~Ζ¶H^»å¦^NÜë)_í4úi–Ó:™ee)¥‹ÒJrŠŸÄÞáÞéÞáÉéöakWœî¨)çuTÀ¹ú[aEÒW&R(†wŠ*M§˜&‰gP€F¼Ú?Ý{¹¿+O^lïîä& õ¢äîèoƒõŒ“[i³HühÏ÷¦§îdTlös”Œ3ø_ˆGWÿWo2¥/Ùksñ_ToX³jÆÏKœ&eòâ¿&H<9lkïš×YçFñ·(¨°¢²%ŠoiÞ¬ÿßÞQ8mZÆ/ÝÖûÅ'à7Qf,]§[§Ò ûÕng½yýökÂâûÌf3÷ÿÐ6Í^ž%mdÊñÝ’ð'1ÊðRå~–ÄBTÍY̽ã‡`:Èu.Û­¬„)QsÓ/º†©}Ön7‚†xáôÞmªy„àÍÖd¥¡|ÊÈÜ9:¨—JŸÄWâáýo‹¦Ø5±ñxcýáCqO¬?x¸±þl|}ÿí!qζˆ¼½~üåc÷c1)ýgÈïLç·;lüÄE/uV«Ó¡lná_¦Ï§B3Øc´ Êtö=w1"µ«½:¾ÃXïvê½4+Zf¢[7Mñ“'+«q¢|}ÎþÒ¹QTþ†¯ñn¸*m¸^ú\“®Ø]Ja*:PÏ¿ÿ[êÔ:UYgÎmħN¿On­åhæ”ù O(~a:&ú¥–r"«+ð— *k…”Í{EÌš9ëºù-ªQw…6-¦«SìÀ8öîtŸßwŠØ1´‘G©Ñ£7ö¨&S#ß}"l§ŸdúNñ-¯ƒäø ÏÃônfc’œàŠ+©½ Y™ãs?BYüÿ»cEýÀFÀÆÊl«3±FðÏ䨣~TWt èȹ1¿áe’xÝSò†$:0‰lœl°4q¼bݨöÞÀœ¥N>…lœƒ¾ò4J Ã.3gTY‹P<«S ®"ã ]Ÿ‹G†,AA\ ò+fXã9AŽ…`©à*+}×2ƒ¾@¤Ñ£šÚ¦_GïÂË l|‰ùFÕà+sBbüÿ±óùÎH ºÈ~./§œ÷Y(K÷j¼{žˆ|ý\ÿÑÍ?þ¹»91—Ÿ—-ÜΨO `ÒyyÌ‹áe7"E~ WN±üùÚWÍ*â6”YFJñ`19¥rRß?H÷óÍyÚ'(ë7ƒ|º?ºF+†MÖ°4;ëOšs•J Ê\+<.7ÅÚñéÉrù¿ì áSÙñõ°7ñÆSz›]¹¤ ÚÇfàS¾ö³M;W–Ñ)Ô'ÚžSr0Ø8 Èd܃"ìä••› œ¬ö ¥}ˆ›y…›† Ò/Åãæ™k.æ%wÑi¼2Ù÷-|¤®˜Ô䉯ô•å×x<\î—YÞ_rþâ³z?¾~ó,ÞZ·æþ.›bÞˆÞæŽÏw§Ò_…¿Áâ°Žù0?¨»ºÝÝýgÝ.ŽJ»¢®¯ÖÕ«ïæZeLá§Ô‹d ¹°#ug°±}Öýæ+°æì”ù.Èï¶pâI=%‰­—ëO‚tÆPr•~ä}Ìtâé³±Ñi|½Èrì6ö½èŸ£Ã6_7Ö”?‹aÁ*Ù¹2ß% sLxO¸]*Ú"Y•Åmy‰F^{Þ×®˜M.\2Õb6¾˜8}ª!‘Q–º¶Aò7¸MPŒ%¡mŸ À%G©Ùˆ—ˆD†¼$-ËÃŽm‹k†à²<’€AÏŸi,ȺWZõ&lw¡¿Œéà_+/uåÝÞCãè¦cçšèº Ýtÿ/µYäò½À'ðIõ³ú±a[Þ㉇øN–ø¸ñÍzã~ãróeúÅfû'­£?x½GUÿÓ­ú:šJ±‘tC·7›xSô¶v`v‡5´ïÒ»¸$l¶ÄïSÀm(;‚m+™^ã)0 2(eß6âSz–ëf¸È3‘Sô'£ÆOaYÒÅ•{ 5cïkʤi@_>!æ/0‰—F•T÷èœ)#ÉO¯¼žk]óa 7¤ð{W\0&ÝZêÿ]í¬ò ówQìmøçŠbž å[)!߯>K:Å@2“©Ï&n}ê^O-yU[>Ì—[Õ&` ­‹¬Rír™$йÿÚêÿô[½ž¯9`æíb&-[탂ZŽ-k’LŸÓ5Òy€¾h Öå1îyÁ€·FÞÒË:ÄsÏìõhBÇ%}Sc;ܽWAºhö,Å…¸ŒE–}>ßÝLL¿ÓGë¢þ‚þ=?Ø<9ÞMu†J-1²ãA’MÁ=­fŒ 7J¼) 9 kï)íÛlM3‰¢Ú°'º•§7ð†§¾?Ïã$ÃÄ6®£Bü}_ÿ{÷§!$á·]1®™jÊ~0‰[x¡Áé&Ë!,¶YêÃ!ÐØ° äSÙxrZ%Ý&ãè³ù‰£ÉÕ6S5 —1Æ&ò2 Ò^—¶P )•Pg‘B¦Rà¢ñˆX\¢áB÷ø¨a&HË8IöZ˜„8»òã)OJàÕ~Ðuýéä†ßX<ñ³PuWîRwåóñtW>Lwe’îÊçÃè®|6†îÊ-tW–DÏM½ø :—«V”Èûhî hî ž=²&!K(D,`’t: è0àÚxš&#gˆYq•…Ó›¡~Ý@^Z?ŸL “½d¯ØÑ¶æÚö‘!h/+¤‰³´ÔH§0\ÍÆé›xѳTÀ‚+Wh²2%A³öÉ›Ìã ×ÈCàE_é~b¸7¬Öé‹:‡§…Ý H–ÙØŸÌ¨jé][„Öob¦"¼¯ùAQ ¢Öyéà¿aÐø©*TÀè«M?¨‰xCuv.Šœx¡þ3³ß`ëS²Tºñ[ R"¤²ýŠëª*Y /' /+ô² £Â¨e ËÕ°ÌÒ©¬ðýäamMÁç–5§ã2?ÊP˜êÁÙÙGã{cí#IW¤tµÂ}4dÁŸ¬QäjA ©ªèuÍ‹ ØÅuI¦'£ù-¦’ ª¦2(ƒh «s˜ôï¢{=´`1ïc©3å 0¾J«Á,žeíõ[D‘LóY‹Ê‚#”Z‘²‹Q£:¼©)J†ÔÈü„ȼV6†µxf³¹ˆ¬Œ«…M‚^’%yÅǶ‘¯åØmÕ( =.Å” Ó„Ôzž!µÂ? ßÆÍ™>áúáu%–²2â”2N1yŒ}2e!rØG•¶&C½•CqNqHfc]«DLP¨GȈ2ª§Å75- §Ÿ‰3BÝ/!AwÝÉÞœµâkGߢpúÀfGpÎò`k©OƒŒˆ¦Ózó†ú±ÙâîÄÅrqï^4  ÌÇ{¤Äçí†Ô®.0ÕD$f ´wM9d+k\8 ѹwÁe«Al²Ñ)¨*Ÿ§>KECžŸe˜Šr\Þ¼…¯ê"‡"Ô= tœ@æu99€…XSÀSÓ‰£M!’`'xr WΨĹñÖ÷ŠªTð›é$’¢yžàN‡p‹T_å8ㆱ LuL«;G-`;$·ˆûëÑA?Œ yžFaB«DäGŒ%66ø>Á‹øÐÝÃøX¤@ W¶´t §3m0y'Pí4Bî![Riˆ5³•&Iu\Éuzª’¼5÷…ú@ ‘d”5!ÄAB†)&^«£°†`øž¦r—ÔM‘½&Ê­#âÕë MÑÃ×›¦J>J ídË(Fؘ &š#ïÔ(*Î| „eÝÑ‘tˆ½o¼ft™Â¼ˆ §£c²Ô•#œ°Ë ˆq…S@Q<ªïS!]>J©6§Òj9û/Ã÷|~Æ8Âzr‡[‘nq¯’øBY(>˜tŠ%ã—({z.<¨Vcü0×§q‰]]]¸ròö±£´é ib •£Q(3†¹¡™?‘ •&rȦşê,´Ð„P«zÄ[*,ŒV!g5ûË|…¬Q¿²ñ’Iµ–…õö<íoƒ AAÄb‹0ñ¨ñHkUíÓ×½í:jùžºSGIõýª¦¸ål·7/˜ËjUÝzüo]±ÄîE1²ÐPª?O\_á3ãÔ -öVÅÁO"ã±’Ìßïn_™E[]LÀ_þ¡ÿ ‡þ/úß ‡>ì{íöÃGéwóõoÚÝ;Fs ôÏ Aw› t|g›Ñé™Pì&»&³Š=3¶•ïì „ñédtºôkµŒ9"Ê·Áýϯ’4“fA'’]š§¤C*zŒ¤ÓÀ…ƒyB޽Ò%ý9Þ¸×Ó-øÈÌŒ¸—fæ0й°»+:2¢ºÂsv{(v>œÖ ×{—މ} Í[œë«í€tù0jõ½ƒ—À,6‹%ô^ëZô"ŒËá{ªø›®óV^‰Û vnw1® ‚'™ø×Å'Vvv¼Ok‘‘v‹,ŠP²E1†.bf¿4뤌©3Îë&ãÚ›ÌBð†tfq&þ·D‡¡ÎlMŽá.þ0§3°µ·F=­¹Á×øò¨Oê*:Ù«XÓÑ9Ñ0•Qü¹4[T/ :d˜çšó¸<Ì\{j.ƒÄjåK 2Pî¾B¼ç箂'>:þ˜|„!qcÿà85 Ë mLãâÑø[Î 0F;dµE&¦ŽOL36jcŒåUºÙöÞå(èÃií!¬a?ህ¹ÈÐÅÈ2œÊY‰Ìv«øÃѫӗ¯N°'ã´kL_™ðôèh¿›–š·B‹®éÂŒk°LÜkÝ7»UÞÙR.•nlF:ÉäñÊ–’ÏR2Zõ@éÉl”:Go²Þã`ûpïÙî ô,ô‚áÖ2`·£œÈx—„[fd‘u•–‰Äk¬)‰:?EÛÙ¤çn¦%'ÃG÷Ú›Šu»ñ`]I‹q–cñc›w–ê;yî™\:ã0èßXgªíã×{‡Ýý½Ãwá`¹»}úêx÷¤¤ãt.f×Ë87?õË8&T^gæ»®‘Ç£Æ~âºOOvû±AÖ{ ØzräDFèÝ»7™ÞoJs†§9Dð†9„N‰’X÷ðl†>PQ`QeûgMi¾Äs|«^#éé{²ìÖuìd¾×xqÜèѵâ¨x‹l‚ö ÓéPùÇRxFé®òÙp͇ƒ7´~™a^Þc]¨ ï¦jâm†ý8ǰ߭Ëûªxå#’ëÌwà¶dC4¹Ôã }¬g² c«tmé ëê/ÛÓwÓ7‹#ÓÜr= ¹{Aþä±!ªZ´6“ÍdÓcÎÊD®ÖŸ8ˆ¶ê¾ï]\èØ-" E(ÄÙlo{ÿS÷r<»þ&áœfÙ¼´®Vrø,û«á½sR5«C7ýs‡üF•/^§ç/J§8¦¢`9z?¯œLX…%ÛŽËó\`K?§™æÒýÔWË™¸Èñ[ŸË#2`dïbÏ÷!L)ñÎÆlô°ë à¤]í3øÍ率 \„ëëûQŒuº`w€)JÑPÑwÊ$*/^~³ñðуúýu±ÝÀ¬ëûÊ]¬&Œ×Oñõ›ÆƒGëÿxTÇ7ž¿¤”ºƒ¤fàˆâñUÚˆÄÀAgµ$„ŒòûlN÷œºÚeiß~>s¢æ­Á]ndgU.õlu5eþ97Ö¹,ãcê2Îô]æì”ÅV³7÷%—‚¯—Oú`l·º­íÖ‹Ý.ü×ú±Ò¾ºt©*HR;UKå¿Óë¹ãi˜è ÉFy—ÁùÕMO:0k”ƒBr ¾Ÿ‚ï`¸aÆ;¾ôájøiY¬ÉãC@qßìî=ÛÝ?Ù­ðF#Úøxûðy÷äèÕqK?6ß´¶!y»…ò@Q‚°È Æ}DP¡‰;M|qÿ‰øt†í[‘ùÛ­{÷–Ì¡ÂZüã”QyêÏÎ'0SÑB È(éÍï§æÍ—±ª¶<Êš=^ÈTò%ôƒ3ëæU®9Ö¸ÍÅyK6Í[†˜ùŸaAÑŒ—¬b.h.šä.D¤Ð:È¥(,ì¾xÈ‹¼g÷šÙeÉþÊů—Ÿ$ú¶Ù³ gć\ÞHeÿ6÷<éHÖ É,VBz>l9Þ´Ë‹³5}‹ðV”°ÃaNm«ðT+KiUïzúO!&ï!Žh°Š–U‡ÊaÈ_þ­ hÝg¨ðÿ€ë&ß½ ƒðñh,¿=¿7ßYª#×üi@ÀI¿úoQ/Ñ{G.s¸ýEâPUè»vt‚nû0˜wŽÏ¥µÎ84/wÖUü(¾Í¹Àߦ{Û¦÷Y`àkI[ËÛÍÞZúOÎK…¤Ø/ßÛ·iœfŒ·…„©v/wb´øBqìø„¹_.6ËHÒõ γÌl¿R„@ñ“Ø;Ü;Ý;<9Ý>líŠÓÝãõc^x=¨òo…I_YB£oS§¨ÒtŠsCàÙ¶O·ÅÁ«ýÓ½—û»âðèðäÅöñîNnl²8¹;º†eÍOi¦Ø,’ÛžïMOÝɨØìç(WÀ¿ÐB³þ¯ÞdJ_noà°¸ÞÞh­¯ìÄ)Sr+ûk‚Ä’'°¯yqn‹6.Ee ö/š7ë¿ÆÏKæ~eÓ2~¡5þz¿øyX¢ÌXºN1lþ‘)KÍng½yýöGÇJ‰fiæþšÂ¦‰í³[^ƒxŒîIøS=Y’óË]Æ"7‘9ËC-¾ ,­_€Ëóe°™/I¿ÙYKW_¤ïêé`>ÿ…z®EÑtæõeJGþ>½øG«„þÛ•>Æâzˆ‡%ø|´V]YÅ+1ZpQl§Ï€-x+V+ØŸ~=.©¦öýy—èçëþ«9ÆŸe©çÓlãÍŸ‡·ÎoS·zÏ¡.¢øU(¾ ;¿˜¼Ò,vJËnP4ùÄZý#/e,Ö/ ªh$M8ÌΘ$žmW“¤Aâ|e$†*÷ HùônƒàJTmËêãi½GÆó½ëëÈ*HäñR`åËðf©•¤–‘½†¾Ó_À­ãÑ£ J™ðuõÿ }ƒV ÎcØ.Ç2«Û6ƒâèZ˜B7âï[¦åZniïÕ:X>ž½Ê™­~þ [Ðö»u×Ä&¿ÉÐeøa¬ÒOQøá•µ¢º7 Å£Æý"ñÈÑÎÒë%´Ñé ä6*꼊Ä?|p…˜ÛôhnÑ ±a´ì«¬…˜KÓøY£s[EïŸa|æ5~éñ™»ÐæwÝõÍÓ¼kÔè›zkàˆâÎΩÀ~ÔX3Üõùºõ”|!•í†YºÃÃs4\Áýtâ´¿•ÖGlkjSyÓêµ \Ϙä冰Á }Ú†@¦•f·&Bah&î`6TÑLÐ&‹bâQádmu¢„BBœpÅF㱨Œœ›sŒ þ¨±þ}Š‹¹Ï- *9>@ÿÐÞ4*SH;B™*ýª`~q@)£ÞÆmòYÁ—oqS‹Ó¬Ý_gˆÊ¦á¡>ý`b—¿ÂÙC¬¢qÈ ™¯&ÎÝž#£M/'è7ìù[øno ó£[Ζ%ì2Ì‘6º°¢3š)âV)g1nwÌìŠñÇ££±ë¿:Ü{£¼ò½ë× úüƒ¢c”Ön¯ß?;[cŒ©ë+|E‰{ÁƒÆÆ{8¿a‡é0Yj’Rj¸=͹ÿLj-ÒæH®9•½”îÖÇ÷øÚÓ.Ä‹’Ó?þÖÕXBÔ0„š/Üàç_²­©Kä‘9Áå÷Gï裇ÁÔÝÄЭíÃãSr‘š-¼²¸rÅ!.àAèalm%wêxTš’Ž KŒÃ¥äÄÁ¹ÿF‡2 thŠVͲb72'ú}Dšq :îõ.e`tÑØtì]*ISqßË£• 5¼áà“·=B\åèØ"Ùx\Íš ª..UñäÕGpøJÂ6¢Zé0JtÜBˆ:¯œ÷7õKè7ª<—}›p;“}½Àù8hËïÛ–¼C9®å±Óõ·Ÿ¬2‡EZlGþ‹ïþÅwóñÝÙÔ8ïÿéçhs™ §´-ËîQ¢H§Zÿá{YºÎj U }R¼{ØØ0¤?<(¹pK.u )`J¤:ÐÃ?gÕÂv«{pò¼{¼{òjÿ´Ò.ev¤5›3ÓÑe^Ïñ»'( ~° ¦r+ræz›ÎÒœrg·µ_!×þ!Á;â·ûøÏÑPÇÂál€‘Œa¯™Œè0^tŠPÓ¾?ŒÑ0¬>ñç:þsriEºOÒj„A:5©YS8·šìƃ鴥ºtDºNŠHÈLB]á 啊9ÊQ,Ô7tyaµ€8±¸™û*œçµv6%i¥ï!ͰâuZ‡ÄžXÄIxýñ# p'—ˆŸ é^ªNŸ7û\»¬„ 2±IŒ­£V² À̵Á+ccQ+f­ü[Ùõ$Ú$ŠtpbW!Ìû.œìIl£èIu9 RÓØsµ¨"—±T“ì)VßôªÕzoÃÍ{>ÔÒ¡T3¬±Ô”`ùN]„A®šíÒ¡¹Ð#9Ë`JÈÛ@_;ÉëôoÄõ„!¾Šd6 a¡p”wŠÔ ej\&Ír¶Ç56ƒ(ðzJ¿Ñ³<ãÉñÚ£øðµÂŠD"!ö”« +ºø¾‹ü/~T†FÉé¡YlTðPñÓ㟻»?mïWà¹ÌYßéôîdbDÁ¥íeK½ÄG°â¿qÇÙ² „'X&¼–ûÐ_£mY mƒÞ¸R›ÉUòÜù •Îao³[õ÷\¹hó“´­UɲmØjÈ% Ž»ir³UÅLÁ:w :Ê©¹‹v£ó]çï뢣üP:Eš†ðщ|Íd*ªESŠça;×D”˜Qœž¥2K0†dœœÌn(Íëòè&¯5Í©+Ö¿ûû#¾‰‰-›³²•]áÒ2ÍK‘ZäæXˆ‘dxoã-æ¡LKJ¸±¥• 7dÞð^KFLÔ}œbS{éâÑ4ŽG m·*À}ª*€ë3ÕTX•ºØ¨xA%16iTLÆ1¢eà Q„ãfi ]"“‚—­ +È&’ú‡Ê¸ƒ¡{¢Lˆ.i‰A"WóéëPƱxŠÊ°É¬˜V¬f\8àa— X…¾NÛ%{й5âV†Ã2c¼ø´3q¦-ÙªE§ˆö éëáôfèjy0KŒZ\T¦(§Š±˜£¤˜,W]j"°l⌼¸æ²’…ÒH²ÜH % ¬c>ä¦gœ™lJÚÝ1¥´7«x¼"O_Ή{Aß \Œêï–9Š×·1§yêkRç Œ$¤Y M@© ãŸÚc)LÜ"ÿŒ–êý$œuœ…qAš‚/üœ«“ZpB;–Qª‹¨É=‚žI’F8óÜœR@ !‘”Í"‡`uĹçãLïÏ& ÿ>YÊ$(›*, N»8#(;lòÔPë²ƕN> Ù0ïŠleYdNG½ï˜M·‹ˆ›[2s!ks8qiG(‚DPÄö°.ugï€1fšáÊëÝ‹¬™Ã@¯ÔÈ'nˆÇHÄ]š£ZÚã÷¨ŸÔs›/Ô$ff ß»Q³Šª¦Åšð.àøÈ$ð séø.L”qk1x¶¡¡³â%—Tt­Nf¼nnWI„]DPPûØhš0Y]ƒÝÂ*[ Õ²µ:y±¿÷”âgƒ·…µûBÓ@ùs+¥Ù¦c3¸›Xìˆ9µÒ`üÕì\YEÌ_F!Å%P_(8nŸÂK]ºâHZSPÙ QÈW}ØÁ” ‡Y RÍ`£FDÍÇŒ´¤’I«D\#Ÿ*]Jé•Y$IŽŠv¡Ûˆýƒ±Œ%•)ó6•Ímî€Æ´L,ÃN`<€Å¤®¬”PKsUZ¤¶Š—’NØ e1ùµYR rVPP˜—èsÛ{^iCu ˪¨güÁ«]?Ę#4Uøh㼋ل1_Èà}¢}èœ8ó·Ý)­5PfrC×ÈÉ ¾ªB c…¹¦Øî+àxna5~¾2k©Ê’ã”…ÑC`Mƒ™_i'Zýۆגp—î.jgXË­T­ÖV©Õ*(X½—¯N^TZ¨Œ'ŠŠ£ V¬vDK^„P‚°Q`íÞVsÑP¥å’­ê'²³¢n+0o ø™ÔƒHMPo¡üÊâ6u#ŽÒDTÔÙ®«0G1¹UDð?TÞvÕ ‰-qÿIq>}âîqâ´l#Êe¤ŒÁ¨*Õ (X¹_}ò©¬U/0>/÷öw±{9âI„4ªF½&UÌÞ£æÀföÞà쀾d}f pÿÁé‚®XtrIr‘“²ƒÑ›éöY•cZ½lô±g÷Ùö«ýSš @g†¸r&È Âæy€iˆáÎ*;„Æ›]à‰Ì ë>=—ûÛ§»c¡š h ¹ýÓîö©Ø=ÀX€›øäTÅÛ‚Óì’Ξ÷ÈBåÞ0ðd†-98¶¦žYE:$5Í|bbl£sºëÊ ñDËÝŽúNYpÒ±â&˜‰w~p“Ö!g0 u…\_`÷<5mdžŽmª£[«7ºÇ§§{2J”õêå^+íq«{”öøüÛÝ?jýxb¼µ˜ ñüäç“îÎÏpPØkÉ4ÉL/¶wZG;@”eS™BåÞ?z¹{Ø=aD-ªÉÁN—"ߣ=+Ý#»äDG¤Âé +„0™ īޯº³ÀHº±Ø;|N ÙJ†’NyÉS7)Mãw—ñ[G¼?K¡¯ïv”n#•¸yÙ'Lwœ–ò‘.8 ÜÛ{ojI5ÝAé¨ò¡‚ª%,X à†!¥h©5œc(+R_±’¦žÃS¼;ïZ™ŽZ–öÍ›YuªŽºÝ¶¦0‡Ã¶¯°MmÕV±dþü­£hwPP”9âñ+1Lg»ÝE«ÛxhB»ý°þ¶YT•B¼jŽÉ¨ð¬Ó®×­–Êx@²Ë·Eµ~‡.WÚa%)é y¼´„4xq‰0+++«¶ú-žÐÏG†L!ʾŸ<¬­-̪´†#wtެÈ&ùããƒãä€ù!9GS#ë6gdßõË;ù0¾n¬n˽hbsùŒ/’Ð-ƒÄ' ‘lG¶k5yû ßÉΛ³äÒê¶‚ÊjˆRÕk†I¢23è -Õ½,   =‘ i N1Aò͛ܢäm„I ‡÷g'uûÓJÜ‘^îíŸ(áá„ËE‚gü=)F¬°©œÎâQPâfÍ«‰AÈÇ4ë+¢Bï. [wâ->¨¿æE$yÁVaªqNO­V£°Û0‰^Qw´^¾,È`×]¼œsf—Sê'w2 Ø(¦]Lš¾w¯jжs¯7ó]ÏZ©2ƒ¿ÇÈešREë(Ú|Ó$3e–ëHv’ bFÚt[±yIc†˜©I-g§Œ’S,ÍLì¹´,Z³–F8a×N`Üß$«ž¼WI¦I7/ù(ðúÖ±+5*k)þØÌ"½†Œ[sãIJBƒ¬ñÄL˜aMl•Íó˜´æiN,*”éæy;¤zÇã¼ÇÞ‰%¾‡(Â#ëÓ J‹SÚØ™‰Cû*Û¢¾;u'#ºB IîÀ« #'²øÆ«<ÚhþÈÜj`ÚÀoõ n¸õf“ o?Enñxx#ï»u!!šJ‘ ¡CF5¤2Î]2qŸ§¼‹©ë:¡!&tó;£.+ªIGG1%ˆw§qåHz̯?`k›å5óË0tf™Z½eád;kíöÙY§Õ âS™Ë“ñ¯Q´äØ hå†3oê\\@ùÖ®b̉‘Ü0)F«p§Èø/ÒRýå”±s«yî·ÎŸ–B€ÌÉH‚½†Ñ Q+ÒI3Éwò¾dȘËx £ð§ñb[žcÞç”™¿¾yc¼5n¡m›Õ( mHVq⟅Øëƒâ‰Iô®¯ïAŸ26‰Dšª•¯ íŸ0KÉ S¡dfeü“Z®&,¬J¤6«E½“]¸n<¬A‹KŒ¢Pºça`jØëàk½Ø»w¯ø Ÿ¨Ñ{óFŸZïrœSõZÄ.õëV«ûtûd¯JQW Sñ)aú§âkWÚ_^9>‚CûAݽÆð*¤BçCfÄR|ߥ`.!‡A—d`£Ã¼ç3ö„º¸–GÀ„×ÈÖAwžÕaŒ¶öÁºÊ|æÖãu zêP™¯º°}Bógc­ÐD‹ ó;b@ÊçDIþ0ctþÖ¥Û{‡©œÄΤa‡ŒËDXÃuû©KU¿³.¹Wðʹ‹ìÅŒù#éz¡Ô"³VƵñƦÄ÷"Ñ«®"Ô³¶÷ƒpÚ'g‰1üvÇ]e3•â<š+I.ðÈá0ÝHu3ð½çÆWIkÚçà-ëf%Úê2Q¡U4ô6gÊl!p¾)«[­Ãù˜†Ú£ñôÆ ðµ=œÐ3‘ÒöŸ=êya:œöuØد}Oy„h:ûïa6{¸i#ˆ†ŒppøbL܆¨D±‚L¨!ƒ’ã÷<¼P— §ïõ‘Gj0µ: åu¥£‘Á†ÎÕï¡(2ÖÕ‘ ÕÉÒyØ $.Ýᘎç°S i-›—©YÄËâ;a!ô_ÞsB‰ÚYŽUÜBX)ë4‰*è »Lé:‹ É®ÇÀ>  sT¶ùÊÔcœ»÷.º·°P¦øpÌÊ£‡VŽÈ‰#Êq¥FÅ{I‚Díª[¯ørfÊà „F476ì"y¢°çª²ªña@Éù¼ 2xÛ5!üB§(©:ý÷°;®ŠÁÇe+û4dYÚÒZ×á+ Añ—–”°*°6‹úuQtêûEÉ’ŒÅ’H´DR×\5f?¯ „%Gƒ†žC==|rÆV@þ­.¸ðšç£¨ü‚3`¿ŒË!n©´Ü€•I D“`ìNd{”?U%mId¹GŠ6,q“ƒÖmNöeWðÈ{ÛÖ¤qu—¶)¤m>OÄóÅÖHྒ’ºEM»‡è´?%K仞¹QµSnˆÌ 4B¹ƒ}lP'ø‚3쉓N’µ)d—eÕœüѤ/&$çÊ8—‰¾ Sgt`´hlï½l±®Ly‘ýÖÏ'Ó!õƒ‘+¹¹¯"‚4â&{0r‹àâX$ $~n†_âò ^Æç6%)5Ñ#u'±‚,l5G­e HÑWû@ÚÆ†lÚ¢@çµbü~0}@ŠÐC›Vî"ÞúAQ¾‚«ð½^㧪,½& c7ý &⑤C{êfPÿ™t¡h㯠:|Ë&÷0»ôó`zÉÍPõ¯„—“FP—>·°[7žŠ§Ö/(~¹ÆgÖÇ.¯jÕÞYéyº>Ρ‘ßk‰‹>’\”¼ÛÈÆPâVBV~aŸUøO¦%RÏ×h½+Bø—Á¤SÿÃzýDP/þF—Éô§ù›v‡ÇÞ5Ã`/¾…7@¹k_“vÏ»–Ã-¢‰œ‚—´²9¦±‹ùš„¤ø¬E´Œ]ù–éõ¥\xp·¸WT!Wï"ä“‘`†žTjãè|‹û8%–îëa«(ÝãO½»êþÏÞ–ÎmKÄèw”&8©ÁÈ% KÀ²ÙŽ8¸c•ã 쿸Ó<Ž)wS·ˆÙG¡Ý8¥m.Í›øé4‘7-.X ó4+ñ68"!Èhrp»ïÌ—Èõ[Õz0ì³óªw»µñf¡Žò“Bc·A²iÝ»W?É€#¨‘=Ú§¯{ÛuTBøf“.mâIJu‹õÿF2-&se e±C7ñF³‹å¥†¶ `¬Á-&G7kTþ¹SLÝÐ>gE* ´0­Å¨{.{Þf|.A%¸ça¹"ÉskŠÀç³Ùxó2ƒ{ñ^ªXeþ‰ªsêl9¬`L™²@”š14ƒTÊþrüN·Ð*´¼·çl€‘}qO¯“wö !iUìÆ½ç¥ÅxF)Â<ˆéÀ,8¥åknÔ3&Œ-ƒc–wO8>À0qÆ-8„ïo¥ƒ“";E9šÄx‰ä Ô „¹¨ÌZ)¾ ‘'»ÓP7à…æÕ>šN˜¬Í‘ºo¯ÜþVùm|C‰ñ®¢;ê+ª\§Si·kâì¬Ó©~ÅÕètÖ¿º(¾MidÙd8&ˆ%&6aààÅ™7ò†ÉŠ—ÁŒ³ú9¢¯THX<_"úhÕà#ªc±+±jª¥¼§ó#ÍarzeïiКñTÅòoƒYŠIþ©ûK4 æ‹Z¿,Ê¥Œe~»Ç0NÝ~~+mÄÜ>î²®6#ü4úà -%@u²Þ±•fˆäy¦Á—í}œŒ‹»Ÿ3(ÂìPH|¥üNƒBþ¿¸Ün[Ïß*q)qõo ?º27gD¯ÝËIWÊxÙY2¤ÒUñø¡’@¯lQ(}"ÒÕUE22|Îv{£ñ‚­ÖÖ­ÇÿÖKÝ•Oa½?O\+ä#2»5Êù"kãà'‘‹ YI¯Ð¢í3[ ¢¾*ðqRE€qZQ@ð鑹£V>—7E¤Kâ}Ü4Ül¬Áø ÒŒó"™ÆÔÇ«âŸAèŽ/ÅS·Bæ¹Ó»ßþ{rþà‡s4ÎfñGL¢@’ͬ*àXͨ9]^CÆõÝÐàÍ,åŽlOa£„$dŒ”3‚%ÚÛ9PH¾8ÝsŒ Ó¢î%-›Tð<9\À&³Ð¸ á ”^¯‹ŽIT€gjføº} s«…õIÞø$'UïæâÊóñf Ž\Wøe|õ€àå{. ÖŠ+þüÍ›Z¼ö+µÞ“úüRóôü&›tÈ—'?µP¡¼×jñóÌ3Œ( |B€~!´íø êƒiøè73€¯#ðȰ³¿ÆC¢-:ΉDŒÒ¼«a MÞâ;ÍÊܪSOz욥Ì8h:J†—l‚ ýRÏè sôá™I@‚„Rû®ï·0¥5Õ5 ë„>!ÞŠC‘`.Þ»+þ¦k½•?-pYò?ßßGõîK °AÕª å*-¨1‚Øšx’ÚâL®â“ ŽžÒ.#0ó,šPvŒfLÕ…êäSî”Ëaó—f´ õÝ7hÖºÙÄÇâÛ„“a¢2í"^JP]øÌVåüâs:[}ÛéaÕ46WX)-Ϩ¤¡#©u¨aw5Ð…´ÂT/ J &–á,maË ˆÑ"ãÓ5¯?òº†Û!C&²ÿt|ÉbuˆC¯Èâ{—£ âîCþÛJkiäµ€çd¦áTö5²•­âG¯N_¾:ý!ÞÅÓ®1,2)B7tÓÓK35“¶½uÒö SÀý¸ÖØ}³[µÍŸèm5ö€jaTÀ&´Ò2Ä«]J>KÍ«îÅvé01 ˜5°h×(Ö%ê0³ÉÇO ƒp+";»a#ØKð.y3„6!QW©™L¼¥š,mzж蜾™–œ±Y®½©XŠÉÙ1–X`óU´ÃJ,®ùÛ}¦xÁt ã®Ä ÛØàvŽbP[åÝö……oÉw¤¡Cæyg-§2Î$¨SM†hBã@½P— p.Ü:Ê¢þFnu\uŠýr=-E7>äØEöQ£É¸ yd*ÜäéqMÙÊ;¡¢á…O"Dºž¢‘»à½û1æòëw?CÊIDËqJ#$òÈúg  J"UÓò]~©RJrbeRûóϹH1³è¨Èêä«l®­·¬¾3‘'ÄÉ¥3ƒþ±™ÒäÙ>~½w¨žínŸ¾:Þe@Aã8„±ødËðÌ|`ËsÄä¡gëÙm½8E-·¥k ˜n«SÎÝq`þĶœ bÌÏI¿`‚dìÙd™Q§Y#çŽÒªòü˜·Ûö1ò7žŠ×éQœº&¼mTÂÞÏ;ʱÁø|8Eé.@Eô´[-"ÓÅrq”å1æŒÇ.›dbà•Cð“0È4•¢ 0¢PŒX,8.áD܇ݞЊɌîccry‰QÓ†­²Ã@#AßHd´ ‘kLO+Ë镉éhAžª0r…‚ÌÀ m½­¨‰¼x¥ŠBð®­òö ûÿcïÏÚ8²Åqüþ=EG&‘dK^Æ,„­ |'Î"7R z,©5Ý’8¾oô}Šß‹ýÎVÕU½—ÉkÍÄHݵשsNuÃY'9éäv®ÚE¿sAô"Ùd…ëâ yáâúºs_¿Ä%«X'¯òõ”9–*–òO~âØÏ剟OÃbK/í? qdˆùîˆØoÚ-¯¼yøOäK÷ÿ¤¿Œ4fh‚”íò'q³ë§˜‰lOÜîxšT…]ŒÇîýG«÷ÿDW†”Þ+¡‰Šc<Ü™IÉh×ZlcOf |Ö°oå]<#êö,¶à–°CŸÜÑ¥>¯â-¹¸˜AËeáÌ"¹ü[ÎÚØžãóðv_ãëÆ=¥L¦« Ìk2Çe†º‹Œ ÊgÀ¾¥x(q¸9Ÿ8H|@ŽC¸ë³ò ûóŒ9—~±‘Çái>Ù•&>Ë•FòÙ[. Ê}"C+­|*'+Í|" +­Ø¼+=üÜLë_gÍ—ÑÍàRö˜‡q1‘w¦ÌÁ–sì‹[ëï·›_ Ú() Þu6£þoÁµéÉ}…‰}=„œœ^Œ˜cë|ÛÓàv<Å<\EF­œ«ƒ? žWÇÇ+*êÚljf™lÞô6ªr—ºš©2Ÿ¡ÿîžóÒí¾[£xš<9g¥~Å‘ÔÜåI”4xžÏ¼®‹2iൻ)†ÃÂvÚÅ7+¹]È>®‚ ]û2j \Ny îbüqή±9R"—:Ý·¤¿&| „ –÷òÂï^°éL„‚(ñÐ!µ£é*ÒÝÐ=ÇD’û“ã¢óAà¸ï¿Gt’& çS2‡P'V±å‡œøÏkîÀ?ÇPÆàϼÉ%*q–®ª9`_KW¶·›ü““±MQÐQ—\3ü¿,̦ id¯F bq¾”üÌÓ1bÉ}_µPÄõrÃbUBÿÁoŒK¼mû ýÆJÕ§¼œ|}_ˆ³sOÌÜ:DpGQ:8áOÅ@kƒ@æ£mgø•~rŸáºPûõ Z›²”q oƒnëWãDï‚;BZ‰ya“j›à M˜ŠïS@ eæSY#“ïù_¯ääS–ᢙ¯žÉÆ}‰œwÑg$ïËVfÃ<§WHÞÝGc$üεQ0Þ*RÏàßùIÄ?Lñ)ò;À´lFQÐEÌËÙuëNù›íŠm™¢+°‘_ ÅI±…plJ0@3•ì¥-dÄP¬GAÑ)Ã-¾ Št¹_{ý†Cn…<ü ‰Á$ ° ÂþS©2µ(ðìc"ñó1¢ùžžžTOðÓX<ÇBo׃ûgª=<†fü‰Å“éñ¤^¿¿+±ˆ¢ N¨óé47Itဈ”ãlÕ:ú—yðæâ×þï,T^–¡j‚IÍ_ÐoòÅÿµòE°²Å?SÍc`y¿ùp ‡è›•]á¯(L჻$MÜ)EÖçeÚŸ³™i&çÏfÜoÅVK˳™j4{HÕ=ú«)1Š_ñ}ÍÌJ£Y›{м9Oê,kpÏ‚÷$ÁV9æ(†•HK×*-¸ãžÊÒë¥0(6šÄ™UŒ_>t×XBr7ø”y…]d{=>«ÒäȼׇŽÀ˜ƒ2ÿ"9µ Ehõq½xKÅ’æ|¿tn¼ïæ”h|AÝ%Þwß™Ê; vk@æ‡ñ.• 2~&ÃqLJ³¸1S…ð¹ÇåKNÍW½„}~gŠvo±©¥â‚jÃ~ªéí7ðó àÓ6+^»y ’ÿ"Ø;ÙÆ Ñg ,ÆçpÇÁ°&çÝñ8ejº‘ÔÈœ: ¦c ã§ÑTŒ¡îc«'Îñq£öÞcfêÀx–eZ3æÈæ=À o‰ˆ§?l¯Dø ¿ö ²©×4ºšj[!ŽZ-–!Á¡FU„jÁY`°$b.¨[tªõ^Rýmèpzê‰ó–‚«ö)¸¾sr¿ÀÊDé8 ÝåÃý·ÅRƺäÐÒyÖæ¦Å¹Óê0©¦ÌõyKâ$cr™Ïª:ÿÚdtr°¹»Ó~naH¬Ý_hÝn¦nÖNºœ!¤åù7v3÷‚:»Wåo»òewåNt•礈ëýŠÁ=2ØjTu^zî»9â×ݬˆûò¬é-Àò+ñ3lÛ Þ…«Éäþ8›·xÕÇCH·}ã4žOŠté'É:ŠÖOŠôþ„äêä›—Þ€—‰GU)}ÁO—?)¾Íc­LÀ;ѽ2|Q2ìþë.JƯtþ:—µØ|fî³ dát¤,E6v¶:¯w)ù­ƒ:y§àf{ôoÍÿýÍ[çXùeÜJR`¨ÞèðÚ(²/ÿ^¿?è¡gýIÙÁ¯ðÏŠþ‹-Ì7 zìo"¯g‰ê®(°%À9;¿Äȯýü•óf‡å&#g¿Ye;éÞýþÅ)Ujþ×ð]tÂB~) v™4Pé«;îØU‘d¦SÍ…³9bâç|œ¹ƒµYÑ3 £4?›ßÁÐ9QT×õÅ™A12[çÑ¡f°æÜ_w>®ß¾Ï´%øT–ºÆ¹Ê3ÌÌ‘$6Ñ0Žü.¶I rÕâ=ü—!09œŽNœf,¹çÀ’·<¬ÿ”±Ý¹ *j`6”9/Â4ªÙIJj_Ðy~fã+ŽîVüFz"7ò6ªú4–8ÉÛ2}¸™I®ýaðÈþùuyäô¼õ ÉÎØÑòø8 OY~WC9a0þ5§ŸGÛ–¸ð§©#ãv.ƒ)Pã3OR™é|¹üƒµ6%cøŸª’ÓJ¹«S:….ò,é>‡-]®5ÝÜŠ¿+7œ¡ôËr:²B®)kŸëÑU`Æ¿©ûl#÷¸“á“'ïîÖ…ª2wOïoݺT~§Áï¾pÄ›Ôf޼D|à…ˆ)ètZ;Û’K–SÓ|¶zõ,#<æ ãn>§O ³?‰|p8Aƒ´] ËÄ(nGæñ¥Í)–ã(lÉ=ç× |ç†ÁS’bæqI€Y×õ‡F£í^b‚Ös±ÛîD©·&ï¸Vœw»Nm€ÿÁ·µµ¢ êþhöè_#3PÕì(=fXE¸úId¡3î—ç’!BÅÿU‰ç0Ú"ÜÁ¢`¶ûú§íÄ-=Ÿoæ/%š4ùÚOVŒêåþÃ)¾Í?Ùç¡7VoÞæ¥ü7‰iç0kË—¦Íé^”¨5“!\ DSš¥.é2™lßUòNºÅÆÜ-¿GõWðØÁßUùûð›áí_Üð¶(±Lþ¥™–¢_ÂZcniî§ÖͰ‹… K/:F•ÏaWg…"˜·ÁYíXÕ÷äÓ]ɲæŽ^Ë"ïÖÛ—±w±« ÑSò¯â8kaÒ ’EÅo3ÆoI5†áLúNñ‡Èù!:9ÀÃrA§x²à³†@‰sHê”–ù*ÉqMcF•¬Âÿ¾ÝCPöGÈ^(ãüM•¨ÓŸw33—c±ÉxîvJSZÒïng‚ðMkúMk*ZSýJÃïµÏ¡Fý‹jQ“al¾Ëô®Š_0åÌwþŒœK&§”æ•îEåkð:1×äïìx-w]ÄLå/¹œC®áú”æsÙÜ…f}ªõ™èÖ”k2¿ G¬ý{ŠøçS¬ˆk-FêLL]Þÿ:AŠÆÑ]ÕHÇxžÈùÑŽðêc”ˆ†oµ~õU.ÑNoË=íL»~ï«tûïÌ· bÜfÐ<{:ÊÞ¨åªó°~E§µéaÌ(8fÙ€:Æç&?%+dím@þ’ w6\RW¼Û%©šyG9—ÇY „4ä•u­ûKö?öEíÖФÝÉ­V–cœ¡œ•åúññzt‘›‚ý¨~¿’€ú'ŒÕ„±úïUæXxx†Çƒƒ™aODãð'P¥0j/nDHi="§TûÃ14±%Mâø,ª|ï‘j‘C¢³\䔇î5ÜЖëëŸ+¶»ãl{è¨`èv'–ÚÞHT6y;3¢ê\‘Zn¸|ešœ|6𻚛ü»7Í64±s ÍŸjè«ígE÷’¹ z?‰!„eµ×]WqagKø?)pÛ(X÷tJ=DR€©SÈÇö3Ü}sI!.â·ËÁGË.S°’«˜º¡œlé÷å“úãÜì«·„/a*8n'µýKÐXMgg­YŠÖæ-Á—"¹ Пá’÷Ù®ys]ôþMW=u=·³Q6j ¸EFJ«zÿšú0½RíEÉÙÝ;‚/MP\j6€ô¢„Ãú­ã‹o§ïæÓ÷âÛqûòÇíÅ—:i}ÿ®b°ƒ,Xšíÿî?eŸ·-†n¶p:ÃYÛ”Üæ°ÓÁ[ ‚¢ëèýêýéå2]æáÇý±7z½Û~£¼ùW¿Â†?Æ™6`¢ÇÇ¥ÓS|?…W—øŠ wƒ•úòû‡õ%,¸¼J¡¯S»’ǮЫ8±RºÒIo›ÚÅt—,þ’%%™)þP2¹ð¯CXãŽ4®ÈÜÂ[„úyÎhs-•ƒýÆ€ð5÷tMý*s6:ûBOCb†‡Ã|ùþð=FbþŽü6¼5çW¸¨lî"qÇ@|IŽ0÷Î¥ç 1Å'<ˆ€ ¨ê¸é—ž„ÊÂF‡òÍ¡†0xšð<ûgpwt­‚0ê&=(L« ´q—îuD×#­S¡Ñ‡ž;ŠœâõÉ=ŽQy•”‘:Á(¬ ¥„h³;¸†koフ€^`X/º@ëÜ£žš-žh l~LÏ/T§¨/Fï:øÊ&Ù®>FBŸµÉ‘sá¹ï¯k0md íPçó •ù²ÀKÊÚeÇ&Ï¥ôåødï¿A?SZ³‹Ïˆ{;“]9jÐú $úÝÜâý/ŽCÿXtnùÍQ2„‹7$¹×Rqá¦&‹©ž1W‚Û›£S)xsÇÉ‹Yêý¯C9þB´ÃðøI”ÝzÃù5-»¦†e7N‚qíõ|îáYú×M½¿º Âw_W]ùu:Ó“¦o›ÍΫÃÖáë£òñBn+§<83ˆ~nY²Q躣ÎÙÔ§7ö8ŒBb /šMq±xñæMòåΖ¼ÛÙâŠ÷à‚ºùKkóÈi½Ú?Ú;XSOÙ Ìp`p{qÇÑtÀy‘‹Áv?@ú‹ ÃÐ톌T‚ƒvÔŸ{ª-, 4†$ø¬ àÿè{éÑbø%´ÿrĽk:‚»lä\SçÝ(¸t¼+YÕ]…ñ¥K&kèxP¯ë™þvØyÙÞÚjívvÚÏ·Zû‡e˜±~ÝÜ{µßÞitöÛÍìÍÎ^ö‹mø·³³×ü‡ÝâN{÷ðöð%tg¿Á¡lý¶»ùªÝ”RY_nl5÷¶Z8\¤ºTÆè}w»ýBêõ}4À×, _±x³¹±0¤ç®l6ñ]Ò‡ô^ìl5ß¼!ÀïqzðÂlç5dF§Õ¯Œ‡Pžvßwˆ‰Ö­'Éq3©ap.Ív¯®t3ñÓ¬’Ù£Š cR|O§ «ºÀÀN:0ÈŽ†.ØÍÝý½ýÂiåo>ÀB¼…BŸo¿ÞmvÚû°¯­Nsw^Ô2?ð‚T[dàˆô ÓõÑŠ²ï_ªéã| åØrÿ (Š.‡¯·ñkÐïc¼_ìªÅÒH_™›HIF‚¸3>hNè{а}¾;€êp*QÜà…ä×.P|(°‹F‘>‚ŸÈµ«¦Ýkݪë <·‡ªµ{pâ&Nžñ€ˆ]e†x€•&w%‹U`Ì…{¬VÕ ô*¶&g꺔‰!r¾T{sØ®èÇ0i{íª4/ízc±? F”´JëŠÎ®áªƒ|´Í5¾C·Èé„ßw• Û}ð¡¬6ER‡ÃfÔ ÃU`°aåãì]?­÷FƒÖÿ{Ý>hqÁ­Vs§sØÚÔž|µ°÷¢ƒ¦Ñ盀Cv6_B© )W  ÂNüíðÏ¿-3’©Di¸Nh´Ê×XxŰ(ýáw|Òøá‡u'ú½¦¨µ“…~(¾%ª…A?¡ÉdsD?:Y`¯ÏUÆùQG+sÝÂr°Py§Ì>pÛ´Á(ÁL K¯-ƒ`¾[‹„†ÊŠ¥¦3D¥pÝ0b½d²*žNìÑ{­F†Zб­¸T\øÎ$쥗å´Z8†2¢vâôú¨½§µ½ ŒÇái% @3 ™ÊÝs¶ÌåAsïÛŸ}LOFqÉ×/Žù ïpuHÚ[+l†-Og–ÃzŸ 9ž*@ ä×Ìx£™wXÌ'MîÄIW ˜¤$º+MHªA§è†?s˜[ w‹£Ch *US_£Ùˆ1 ¦D‘Ùd"alƒnù\‘â¤k¨qœö¤90…ÈGÏ}MtAòŸ7q<·{A•&î¹Dr‡º#ïù3|Xnë~܉[°yB¿„qȨø}àC§UçÿCÅÌ3CtïvÉÿòéS\ÎÖÞvæå¸ëÊ–×§Œß*ÎІ³´î|,¨’Ø7 ´r®¶»x»í $7žž ü.òœÛ™½ŒCÿ½;ñ°€ éãzF×ÛÏÕ5óëÑô ØÌ ®/ÌM" çlÙH¥µÇÝ=÷Âû«Ž+OÜ%%wö&ÓPÝî²FÕü‚ƒºÛ^4ÿ>טx_Þ*¤G²j'à—"(9sC½4ÞCøú1{Ï^ìÍ7·ûS0⢠UÁ/eìÃAà–‘±Cñ`“ÙÝMUhiÑ ªSDãœ{åÂý§ÖLø ÔPªµ†«? j𶈷<*zyŒÃ…é}\bmDjãÁôÜͨš*KÍð½ø]HÖ›èø}¼¸üÖiý²¹S†^*b:BÑÔï0¬7ߨè!%îôÚèçlør…*xf/슉-BE¥ Ê?Y”©­ ‚çç‚tq‘‹4¢ñ1yzï]tÈÑ„Éàœ…>èµ€5ùâVÛA%Bí€þÄ2˜ŠÉÕÚEBc)ç§N0Z¬}Ø©|,Š’ÀsŠÕã&bÃXà¥\%y0 §Ø>Âày¹OÛêonžU° U3¬æ®_\ø0oÙ …±Ô_ÌHöÏFšÅÚ È{ÊË©iy冼PU¾P”öÛ<#±ŸƒšÀ£ ô%…vqyMˆ“ ç­·u0×7÷®¯¦^ËܲöÊYﬕŠdüŽ·ú¡Ñ÷ëÀDÄî˜ëëxÎG¸n/€)Ù9ÚS$RŠ«¢1ú%) ðcÓ!^ÏÄÖIR9fÿáô\FÎt×ÐE¤¶ ÒBÎD9à˜'m{,Š‘CGÙËc¹=&Éô%32®£ùQø¦~$8̽s=ëª|Ï}F‰Ôðão€m %‰>‚F!Ö}8ä,ÌL\sàÁux:FØâ\xne2n®È¹œË‚·úpuÍ!ì¢]¸×PM,4x!QèºÃb! mî eSJ ŠõϹ ´iïà5AÀG…!IÁ‡i$>ë‘8 øhÇ Ñæì»4]y Ç)C3¼£…þÕññJí'1ŸŠç_9+õ‡ìB€ú8C¸ü{pf‘¼õœúÀS>äE›p„¦XXIm] 3Œnª¢0ñ'U”!”Ädâ¿ÅóŠHŶŽŽp#òa˜$$3)·„~¥®*xãë–“‹°éöU¸_¤°yE;˜Ï,ë ÝÉMD8P%"Òg5&óD͘ÎÝ“ rnÓ‰ó*ú˜¤ïïÏKòówçûïKoÔ¥A.—Y‚“3| I‡òø(ÁŠs9–…Û1HÚI®YâNØÑÔl²º½µ1²‰hëD,nvÀ³ÌÁØÀÊ£ÉôŒ÷£¹òv3µìZ¡Leˆ§åû¬/|/xÚ/± "rJjêJŠž– k):)®¶?VšC¡ß >‡—­ù6i¾BéJXå«DŒ•\g;áÂ7r?އ#EEÖÔGù§ÎEÉŒyäMà}=šžEÞ¿¦pÕWÂJXXÝY Ðs—¡?IìaA™’RRjžXÄÓZÍ÷úðe9žB¥`‘i¨Ca¥M.Ÿé‹*Ò•žád°byÍka6—ùš] Íþ:¶UKfsy¦2f¡Ù–afÉ̘¡v³C€æ”Í6‘›U4a—Yt gÔÙ™Ù³;CŒ/—U*#U»]`ô¦/gYååÌ¥Ï6Ý›ŽÐÈad̶+[H>6«ˆùV A Æ“Œ‚F³Æ³`Ž-¦Yd¦E¼t#:.ì‘´ôè¯Náª0ôbx. lÉ û ptÞˆTˆzú€qè`FT$ªXb¼ÑÇz{Æ=È®'¤—ÑsÖNó3µêÌVÐh ú(¢‹”²gA.lB›T²]‘?ô€· ‡””QkÅ“Û&ÞdY´ŒBC‡%„1¶ y³1ב9"Ñî4 ƒòµDî3ã—ÁÀ4Š’v>B8Òbò[FÿÙ §cQ”GÞDÉò†:6=*£‚QMj„~43h+ A ùq“ôóÖÚÃB²þMµÇ«ÈFyš¹âIZk¢Œ¶RZbᆞÉ:Ý­­m‹û”+ˆîÐèc0¢±„ÒÀE䔄à7qÏϽžM½Hè{cQy´‰ÁªkÛ#no1Î¥"àE‹g®?y£`\fC[#.$¬—žïáŸýÍ£VÁ²?2_P7›H•Šÿ¥¦L6dÄî†çp£IT—5c«£22̇6^Xz6[úPR+ÂÑ,~4ì–¶UjÒzw-'U¿n6;Ï7[¨á†»š*Eæv<¦Ç †,ϲ¥2ÒbÈ×|Ùjþ£½ ¬”ßíD$¿Í£Ë+F}I#À¤éÞi¥Ý‡Rpàâcù¼Lþ$Ù8 Z8C[ –9›í7ÕT»„$üjüPiÊ#Ü{Ò9ƒ´‡¨‘ `ÂvûífÝÐŽWc>3®µbXfZ‰ƒ¬a[¡¡™–—ÖrÕ”>Á1 æFqÁüù?'*ûê … 6jáU@né\³¤µ’—¤*KJbɹ‹WÿU¹úëXí˜3›ñ£Ê¦mH|x¬©‹ß84ÖaËåê~‡ýP4S™§pD ô:‡Uø‹²Œ3!;,âA½ÕÏê€u´ PÕ‹Þ‡«Õû7US.ôCox†ÒC£¨›Ü%l,Ù–?¢¶\ÝùÏ`€nåô–^O-Nž(kµnqœ.ÇéžóJãbϧ*V¨p´¦ˆØúÚ‹êñaÌ`¸KØkƒ†Y¢R§•Y–½„¿þ¯YöþÇšîfØÜÎkÍ›cäj²_3ì[ãûqB|М_zpgáÁ_[rмApûl‹ ši©A3GhÐü&3ø&3ø&3øZ2ƒn¶È`á|éw;<½šÔúç!$ÛûwHšÿgÍoòƒoòƒ›äÍZ±ÿÓC[|ÐÌ‘P«hÞøO¿V霦…O”.|“)|“)|“)|“)ü¯”)dcÄÿ{R†ÿ«þÃ_PÑœ)ƒhfŠ ^4ÿþå,ð=†¸ù»ûÞÕR5Ÿ Üñ_K ¯‡H$´Wߎ¸–¢srù£*‡p0g_hþ™—£›9ïCÜâF4/G?“Ÿ7•>g·jpë¹¼zÉòÒÎ$”Ç“ kr|B޽|HY!ŽOO‘³}_a¬;K8’ÏÅÓ§9úÛòó¹Ü|/[N>ÁÇç°ì)æ¿ ù"N€¸V<ïþXyU‰—ÉÇÏäÓs(Ölæý À¿;=ØS¤@ÞfÂQVÖÀ‘¡6¼Å˶rÌ“3P`òßéð3Â…Œ2}ÞäEUuYuúî ò*H‚ù¾¡hoî%ÞIѱ²ý ƒuhoâeUuÔa×CÞÚÙÁfðÆ1K,e4ãªÙŒŒ%²é%p‘ MÍX)BK ß7¤tb t/²ð[ü¢Ç”saÍ_UHÍï;ÍW[Ùóo^xÝwb‹Œl®•ûÜ™±MÄÐ Lq½“ë1;RÝs¿›µXÒyz±ŽõçÛ¿ké3’Sš3HU+Ò>Ê[ö2˜KsØJ.KrI¦ƒÁuMEŒEä‹ Wå"7ä.æ],P2‰>Ì8º->QQáv´z}¸Ø 4’8ë>tçL0ÃЭ¼j„Tq¨1Á/‚!ø»-ÞÀ?EåÀ߈³¸XL,&µ¨Ò˜‰,!¦Ð@€š‘DeIm v†‹'É't(6‚€þc´²ôƒ**·Û¥ˆ»äuh8~µ¯ Ü¨¨Ü¤ ÖF†›¹Þ.Ž{1²8™XáÞ'|Ð$r卑ÆÑmH$‚‘‰ò½¢ö¡?™HxMÊ­Iw=Âq°2mªFÅPÑìü¯èRÏñ;4&Fœ+•]¸c<2O4âëæâøœ¡ ¹ ©ÊmÁ  µ6‚`Ö6SáÃ)¨˜iˆ$6¡b#ÿ‘º¡eh˜Â C#!Q>ƒ`Q\ ‡gûÃÞðÁ9|©SìgØ© YÍèVèõJtJRŒ]_Æ[×~‰ÛÒÞ†Û ü³îÐ7¤’0²ý̓M¸Îh–“ãÎÒÛÅæ£ÂFÇ0×çtšùëZ€`[0}·K×2ºƒ{<ïºCy„Ç¡*¡L©ä,È#þÚÑr‰H×ã„ndë,.ÄÝ.Í'MϸT„BQXJÀ=öç¦æ –…YÊÒú'µdÜÌнÚX’ï]@ø×ò^ÏYœFáâÕø|uñÌ-ÒæGrà€`ˆo@9„mÑX’¦"Ê&v’®îº¦×upªxOD,’œsj ²æ´Ùßc„ c™8Bž ê©f(R²+´§,‹(2vg×).5–WV>züä'~Ô,:Ïìú&YSä‡,"í éÚ‚—KH‰5Þ8Á+¥Ö{j ÷Oæ×KÐtV®Wã0oÄ ÓÛ3`mÞ./ˆŠ‡SÏn91WÄúOu2ä@cC# f‡_¶v€=mm½†iÌáSPyÄ_^q!kàÁ„“û<˜†p¡ƒ#þæ°­Ç5 ,AHì %Gãȇ@ ½†ÕÀ(ì=kpHÜ,ÊNùÕf{gãÑÒº3¡H VÈôÊŸTœg1f@T¡A6“Êoп*úš~J×%e*æ7Õ{ü¾„ÿ¤'oæ°/Rá" bØzÞÜj7q6›í6Çã8YoþœÀ‚9¥“ÆR£ô–̸7+è<€Åg„ã°ÉÁ<±nmÂ1”Æ¡7!Áµä±Cí†JÊý„i´{¶8 yª‡ûË»;%èódiu þi,—øÍîÎòá¾¼i<ÄTÿÃh1|&sIŒÌnŒ3ÝpƒÇ—øŸ4J&ÈñŠS#²ìú;ÝÐ…ýFÌù޼K‘ÃàRÇMPÒ„þ7¡ªq#Ü 7¡¸ý̃¡N q]ͽÝ_Z‡í½]Ê#p_fu~¶”+$é¶H²{ÊŽÊÄMÝötè×8±‡Ê£2 :dæNõËuUC¡\E°Š!öªhåªÄP› xïk‹¼R› 6ª)åNB‚ÄzßÑB®L—Éãš»*B¼ææîÞn»¹¹Óy¹wx”)È‹‹<ÝÞÙÒel¾þ"¸$©-ð|lƒ®W•jrÀyÝß\MTk[ Ù­â~í~¦}ß©®ÜŸv¼0K¡ëFw2%¶o‡Äd\3úÜ  “‰ðS¬…å.W–Ó^ØU÷úüÒ©ݪm®šß:_kÚ«âçÜùW·ï *åô¤½8KjN_q•¹ãϾÐ#¸/~¥õÍžAb‰©ãéˆeÙ= µ9‰ƒ8Å‘AQrZõ¨R¸Ût˜©j ÙÍ¥x©ìb–8(õ’‘~VµjìÄTüXƒ(ù°JV…öG7a ,hb {AØóG@‘°3µ‡©ÎCk›H×›ÑNÞ} ôvÓ@f 7f (²[\Èî)ЬbI(²_šP”x3ål¼É`äóÿõE>ãnè-׸߯R}õñâpuq0yg}¸úúÀëâ£G«ô>‰¿+«ËþWãáÒ㇫ǕexÞx´ºôè¿–>Cß7~¦Àœ‡Ð%ÆûŸUî¦÷ÉÉý/ùÜs^zÌñ3—Èùñþëô™[8ô± ~P";Çiãë²}—›gyiiµÿ<¬â×Çøõ'üÚhÀ×}]ƯËËÎvèyÔÂaП\"3ºb3«N{Ô­ÓÛ_Cx—}èï—ºó æ+tGÔŪ‘OÏg}Y†û%7ºÎÁðQF?Î9 N”¾MGèãõiŒ|y‰¥Wf‡,ï",RÏGìÙþLª,ªƒÇønÂÐÈ0èù}ŸeµQ•\:Q¦çF,&‡‹šß¥ÂM-òÂ÷(Fk!/ôÝ\ÑÌsXP³ò ‹ þB]ûa¢œtMÅd’eŒœÉ+‚¹2O÷‹ºe¦°·OÈ¥#èñ–„ïn -‡¾Ú¼ÚÜ}±Óêpq¸c7öjh¹Suøý˜+]|éÑCâ{‚ÕÞ è)ÿìœBaÌ.NªìòB£ÓYX†±ÿîÖþجý÷Rí§Î)¾cú°uôù†ŒöxÞD £ :0¬ê0{AÖ %UÊäÕE€@Õ=ê•˜Í •}baiLIâ'¨‡ó¶G‚£›Hrß³ Ù¥œ@õä:Æ“£"y™ÞF Ѿ°|Z!¤ÍŠŒ¢)qɘÎÝ\ {«·òñkŽÇ‚qêe K Ë%ÛbHö­½}ö:Ø®ÁD¡7ø²»w„?æK€8{‡[œ SšÇýã^EíNýJw1—žÚ=~ˬkæàŸú±jðëÝÖá¡T8ÌZöá‘9®OX{Ô<Åxc (5¨?2{§LÙàÆV zaìÙÈê`Ðs·{Á%ö¨Xxþ¤ _øâÿ­°V9ÍËÍK·ˆu¾öÌÔÂR‡´ §†éZl]§ß2ZTa{¬j´q… ŽÏaî¶Ýf«P:l,9"–PÕ$ŠÅ”`ÝáŽËPÛ7† ëch…ÈT< L¹Ødu­ ý‚PK¦êÈ!볜àf8üíÝ–Â$¿,àÄuÃ.ŸR9P®Ü3&¤'¼ H“¤ù) c9OIá#ã¨pG("hHŠàà–)-PpÞÞmÁ7T %ë‡(g£°>,ʆ¡»˜,ê½;˜bˆ!¿ŽÆ¾ý â”3ØLþ¡öçIpÒe#îû˜0ÔÉBñœãÞ {8Óc cÀ8\Çiåæ.ýÑÊr­7mÐ3hi`4ÏÀe8d0âaÊœKÍØ4Í”‚)j½} ˆÔ‡)ŽƒˆÜ4ÆÂ‰Ä]r†S6ïRË5¤´¢sÊÜ[«cÌ=7ÐZºŠË8â€ÒX‰?”`p¡SÇúšzˆƒÃ9@Z{©b=ñ™F×—Ò˜xÇDÈeÊÐæØ Ya÷Ml jín>ütøró€ô67·Æ.Ôº5ŽO‘híhó¨Ýœ§µ±ß­‘mû(¨ãv~mÃ}s¾&ún4©It=,óá© Ys„Û›‡Ø tggžN\ÿªÆW6à«cüļXæoŒžbõHsÙl¿éî±U9&bJ ¬óBĈ¤@nJ7¢^p0P ²ÖÄ||:2jÚu)7W{6_ÍüÓç`«s¸jê ÉTÓÃk ?&Át —DwÈforü{6—¤ù :)Ý51ç“ì,—¿M³£Ä]i7M†Q§c!5¹y/z%àâl¾VÃ@ß‚ös´-ìlíìí·h’T'Ý2É·Ú›/v÷¡ëC@z+/,­Å).[gÃìR¼¼ îœ=å:˜P_åJÜUIÑ^R{ÉHJ‘Øß"s1DíT],8ï¨pÎX­sÖDÈÒŠÓá(_X‰þE„AãnªŒ¦­¥¨>{Ï ZWHÓ:ò'± ¦ŒÿOSÌÉ?Æ—+Ëê{×;ïv)¸–mNºyˆ—qmq›|kš›,˜kÆ C 3ÌÍC²­Ø<Üp£„Òzø'a„Ùàˆâð É­6Þ%©ö—³ N4wëkñsc›k»}<ä1TeŸÆ_Û»°õ0Æ95‘3Îl Y_ãØêÞ¾úÉ5–Ì2±˜›ò1TÜ|½só^“óú¥ÑÔj5>–Â;9ì†Lö`*ð­€bë0Þ½4·—¤ÌˆJxHxq’8c%8ð%Ø•FA‰¯AÓVQv&l|*šºÍÚEŒÒï;jM´ˆm¡QfŒÿÃèqZ•½yðBê–)Ž\‡—­}`ûHÑ”X®¿=]ûÛÆþ?^þmíÙß5:Îeè`A™ßÆiîP©™Šê|¼±ða³ùÍ­šTþhè„x$˜ZôBÏŽ†ˆ±¯D•3 ’/9wé“”>5K‘“µí;åA¯‘¯?Pvö+ÙE¨¨±ÜÃ`Ä·cò8R9=•OŸßLZø'aF«$_”û™¾Æ“&{À都Ñ`†°øfêPÎÐ7fbéôÁøzqNûTË)½˜Ú&»ÁüÝ5 1†åH–âÉŒ#ƒ»‰ï2KX¿Ú9ÆgEÍTŒ·5ŠÂlJ=ãêT>¾Æf¡áÙüÙÍ—°òñ(`N6¶¼‹Ö âKñ|"`彄–Aë©ã%shv±Õ>œ»ä´*I^óUrÄNj兿᤭JÉ18éIµ;‘Œ‘‰õ¢U(="3 :C×ÞÏBgø’¢3BfèmšÌÈã¯KføªŸOfèý]ÉŒn"3T,—Ì$ƒØæ’k¨Ÿ“ÌèHŸYdÆ‘j‘™œ@·ÿ‰T&Ž„ú™¨ 7˜¿¹9T&`JcQ-ߺ¤É&) à& “/N»-…™ÕÒüFï;SÀ6ŸÂÌÑGrZ3(Œ´æ¤f1“˜µì‡ŸÂè>fR³T’˜bËùéÌMÔÆ’ æÐ³L©ÀJYÒÖ¯L,An.2KÝ‘%$ʳ)’Y8I—¨&®ÍÐÿÃã<n4Q™ÅY(‘G¢²æñ ¤#É!WV‘ü»Q¢Ø.íJ.Ùg¢`V³7A@¥`H¤ÌšK>&jæd³Ùi›fŒéúfŸ¢\•Ì-iÝÜ­fÓ½×iº—D+w¥~ÖȾœÎO'…4ž¾ÎZEŽæ_ˆìÝøsÎ&C_I™ 0³I|FYEçSÊÂO¦ñhQ‹õ“9ôý­­àTþmBÑYJ=Eugšä+‚ãÑ$«•ªÎ[n°Ë[ª<›øS¥ñO,SáO”È&ú”éBþŸâøÔ¿Ð{EøIg¥"TrÞ Ê€µaègªv¤²ãàÒ QC©@R*JÌQÈÌPáw/8®ÊhÈÅâZ…; M*Þû=ïTšB~'^6ôÕù¼J2pßÿĵø§®-ÇóPvß¹N‘¸XуŽÇ…®ã”]&ÅÏälñ2õ˜™áuÅ‹5ΊMJ5" Û:8Ø;ˆ­ü4ËcL-Ài%M– w’D–dF3¬™ö—8ά/nvÓ³–ˆ™Lv?ˆiƒ¬2ŠÛAÛÊ‘(dz-ß#‹D08@Ú×¥CØYÀgdÆBx†M tìT1ÒˆN.FÁ—üɥߛ\ã`Õ™„nÏç2ƒkT«„õ€/ ðµóh~U¥º‡`À{Vü]ÅPœp@Ñó •åN{HˆoÛxui§õ¨ ‘t÷³§ùç#tß{þ÷Vó¨ójo«þ 9$:¥Ú–èà?BªÒ’Z™Ø£§ad@pl‡m5‡¶Yeeh´²\á©y´Êñ•å¶ù ÔÄ«ÁðÌîÃ7W BÄÆÒ?pèX%aÎ%ç/­æµ•¢ù=(î“àÿ0 B6(É3¡°RâÁ›‹ÛØ,jâÝÀžÚØÐ²FÊ²à™·-F¨9ÑËÛ´ÆF9­ÑËJ’£Àˆ¿Ç;¹|Dç0ÎC+Û-f JlÁUb󛤀 ýn·b²9€ý¶ŠdS¾ñ,±šRZV< )u"^?É š^Ĥ‡ûèO }[pŒqdöå°ð ÷ï-ƒuøo×0¦ÎâÁªI‚¦KH£™+5ÎYnÕ2ö9îÔ\I®ÕøÃ¸Yë™~†ë´n‹ÁNÝÕä'y©Z:‚¯á£·¡ñ¨€ƒ’ýf œý½êð$-ç¼ùf›Kf]pײ­L 4áƒÙW:=ʯa?㓯l>¢×‚¯bYÆ’bD¹s´µÃ¸mOŒ¤sŒ+8à—BYPÓè%kw¥mÞßQèu§@ÚÞ{lMzœÛšU6rŒ¶çnøV­FÓ3àúñdÜÔ¬QR™±Û~ÛŸs™”hêl;Õ˜YtŽéŸìÈGSò›Z6‹bËÿnçÉÿ€OŽÿo4=wÃÏãý{“ÿociõáJÊÿwiyõ›ÿïWø`Ü{µÙ€\užÝá*]œ{í…ùñk÷kÊXyßèÿûd†ÿ¯öÉÅRiïßÿ3¾¿Œmù2ž¿‡¯_ldøý.ÕcÏ_`üþ`î>Œ Œµ¶/–ëõúÍbRx¿½)Ì«GKUùì]D9>³(nƧ\Úq-æ¡v)J‘ƒùxÉ‹#‡\&`£`8hΈ¬ýÓ—ë–«Nä£Ã²Iž|Ê"×Zrj®Ò¢;n8ÎóȺ ÉjhŸN`oïiSä8þƒ<]ÆÐùÀx£ª-s þvN+ KÂ.£ËÚ…ß'W þ²ð·J…ü-ž5ny91 œn8¸ùú`èºaYù-âÏ^ü3±ó¯Ü‘?žR† À$x Š$Ô©†T 7Õõ¢²q@.ý;ÇIúƒ±¸ø:Œ!5ºY®?ôÁRÜMŒ‡ 'ŽœÒ&ƒëäÎÁÐeÖ§ö:ò<’›ºÄ¢ï'S&Æ@ õvgÌf‹$¼Ó«/§©}èÑHí%Nî,E•£r§”èB­¾;{£žåaÃ÷í*FP–ûâ- ¡ðÇ>¡„fŒð2¡pCÎy3Áûîx0œ’î¯Tâ1”èX‰b+®yŽ.G^y\”6Þ»ÃAÇ@¤Pîš“™ÓüÈGubºÒF‹œòÀsß“4þBªë¬6tÃ1* ®½Þy½ ˇ¯Â¦¢àϨC‚¡÷Ý1Œøúöœ²†*rXL£Þ«êp<¹Æ^’æ@ˆágà¨L´”’PÞ+( èÐÄ}ç¡ÄD­1+’”xò 'ŸW6¡»ÁCO~Ô†¿sCüÑÏ úMá¿Ë‚ääÃ3l„Ãþ°õo”úî6ª!_oÃ_„þ6ɘ—ž¸8sØE¦•ß3"vô¥ ‡8B Q¯<¸áwl(2“n¯àÌ¿GÀø´\À/RBèÃþ • 7’„eáPšÒüUí›)•,¤ãöz¹×‚ŒãÒ1²‚Ñ´‘–óÌY!G·†qÆÓè‚6·³3éwX.Xê©ÞvÁ–„˜Èaî8á¥?éÀAé³Ô‰ {ã;©RÑ´O¥àRwjá¾$Ì!=•Ê1 eˆ§zœÆ@L­ÒwEýOA®ß—Ó8Öÿ—…LÙ<à/6…¯wÛÿÿb8úþ©a&l˜n÷-4¤#_{ƒ—â/ê‘¡àNð$2ye} ! îc¹>‘LÀ'½Š¸Ô#ÎppUÒO8j>I ³WÈNL¤pF ~ÀzWekùÚ §Ë…åËZCn÷1%‹4Å?sAüy1ýι©¸±³=¿ E{½òV» ˆè­ßpKw^ßìušXÕP _––+ªït¿rgï¼k³ûÃ×Ïo1ŒùF%Ýd nma…Ç—^—¾7Si í˜Ç6¯µCÆX¨I Œ…VpÓLp1FeÀ‡zZQbU2ÊSaûÏž˜¬:EF9:À/*f{sç0_5s«OúØd,KÙÞ€ón!–Iú£ôöùƒ‰Ê4S3´ð/§“ÛÜm§¡˜üòÃøZQàK—Fx#|­ }ÚqÕ9Õ8­®·œ´Ã .ˆàá TÕäXÑQyXæ¿\ép/)hQ!>¤‘x;HÈOO7ºþèÀ.ÿnQÍùäÈÿ„ýñÿ–+å”üoåÑò7ùßWø މ7%€*ÚôhŠÑwß}7w ¿y{¦XšÉ ìwØ &çï+õÀŽÜÑä?EÀ÷7>ÛëPâ„¿R¿ÕåÕ‡Ö~$';vCº„ åŒy*$"dˆFÜ”ì-×WëmƒQð õK;YÒ’ªP¤ºE@ýxÉíÈ87JT­Tà§x‡¶koձ걔åWàH’!œ›H ñNŽvJ?›AYU+ªh¦ò‹ž¿ø'ÿÿÒ; pƒþguiéq ÿ?n|Óÿ|âs³‘(åB¸-ê_“Á—”`Ù—/¶ÇÙ  BÀÒ¿Ÿ/l.©¨ÿï§B&ö¨ %éÞJ¾¼ÑÄ'™ «Ê;µ$=À…áÁ%Ú§ô¤Œ]iqÚ# ¯ML´{A¢P²+î)aý{ßÕ&N³•ˆ­K©8Ká)(ÊüCNN×½pGç,¿×¤‡çÌ_ÔP)ŠÏ ï ¥üPes¿M±ÌÑØ…Ðüv ß)÷ö%'1ÅæÎ<\Qµç˜£)˜rºÌª^Š™x棌ß}‡Æp“j‡ž;Šxm¬T*΀'¤tiÐ éì\°GÏ™Ž³F¯õg^ÁF°¸;ÃmÂm¨.ÞyÞ˜­;y¥9ëÇ”‘¤Û㔣“ þ…B[??ÜÛiµòc[ëÔ[–ÚN{÷­À÷»ãLK6»”hð’é?%ëów‰6ÌTÕvEdruÌ—÷˜ôÃÍ×ö@f”Ën‘3±ÉÕw-ïsøíçNÆ©hú5œd™Œ–hÄ;G¯6Û»1ßfãhóÅ/›Ùswé½ 2ñÓÎ`É}Í(“ÓÒþA‹Ã×%÷Õz›¿ŒÍ½WûíÖAîêÙmìì5ÿ‘½ô&cÔ³ØöÞÎVgó ù²ýK+¶“år¶âà7 ä×9lílgÎ&Y&l´õÍf§ÙÙË—Yfö,_nlÑ¥%9TÑ2gš,›ß2†Ÿk'/ý>lrk/oXØ-†ÒT-wj¹f¯|'+þý™Ð—ÊÀ|xü_m¾@æ‹ßå Lñ‹Ý×98S^æW=híìmnu¶w6_¤ÆŸU&ÝÒVk&w(‘_µŽ^îm¥šÊ,tlË¡îìîuŽŽÚ³7.Uzö®½ØÙ{¾‰__='+k6—ÍݾŒâóŽ~?ŽÝqÃÈ÷379 ž‡/q%gù¸ØŒöö`[ýnµò7Q,ÑžIU3Hwêu~uJ©™W™òv¦q*`¶ç›‡-v³M¡wómVeµìÏ÷ðÏþÎæQ+’3Ke´&ÜÍ̶2Ê$[Ò§ŽW?9«äë0Þ:zÁHÙ¯³ÉŸÑ­ífÇ‘(0û”mý«ßnÊÌg"ÈDÑ\f¦¹·»Ý~‘ËÏÈë 4•éàžDSY…rxŠÍ]8ºoÞäðêíŒÊÛϨŒogT~ÑüûŒÊø6gxp½’9üºUjÖ"d¶”Yâ¦1½y3ߨâr³7çæ‘å¶”ìöc®±åfïýcËo)Ù'l÷\c3ÊÍ­Ç–ßR²Ïƒùí`HËi+»Hþ¸2QHú}ö@¶y å2‡aÈhCb&ou¶6~mï26=L7•SnÆý€¹¹ŸDú2o™hÑBBÛù¯÷P°y1¨œry÷Ö›näs^Ç©X6ºÔ¯r«%™jóM^¥l¼®_}ó¤ú?üÉÔÿÑϪWY ø‰JÀì?=Jëÿ?ZYù¦ÿû Ÿ{޵ÍÚÁ)Ÿc«Im©ÞxR_æ K)ÅëôØ£k µy|kVßa3wUÊQeRÌÝA-G•ª¹»)æ°¡=XŸ£¦l££Ñóp: œ—®†‘Nx–¦P¾”¸o€‚ØÁì1RŒ¸†©çÅ!›ê×úñÖl\ø½ž7Ò®Þ*[§ãNdŠT¥ÓÑ¿;r¹cœaø]3¼b¥R¡ :˜G ›¤ B¨2CsçíöÑo&JIyÓ¶HÆÎþY‘'cו^nþÔSל§Ê¯{‰©ó+…’E{EÂZ„>êzpÃö›-‰þêÞûa0"kü³k§ÂûîÈ9záÿïÿ;Ÿzp×›½ÂÉÆ °ÛX‹ï¿ä·°ÝIr?5†;Áоh62ê–”"dàUâ05uÓ6†Ú5f¦1ÈL%!bK ÿ“ZÛ x˜X»%IBµnøU§{áußi8ªýê…!*™`ÒgÊq€2®iHr’P‘¥ÒlIUXÎçöHɵ¹¥ÃX˜·,à(…€K¨ã† \ÈÚatŸÁ˜ °X <ø»¿/ð’n+>j*ú*JÙ]\ÒžÄQ˜ußwº]æÎ%ÕDòkŠN!ëY”áé}â¡ê¹hTN¶­‚hâ8X\Òio·v[eJJq縱›¯ÊÇÇ” þ=À޵mkn;3Ûrî©èžc¶K•(`Döà1¦….ª"šˆ‹¿µ ©•+fưÊY3”UmäsÊQN*”SÀÙÀÀ,Ð˜Ž±dc…FÁ§”x·¤â&©‘ÌìĈ㄰¼\&NüøÌtQrŠ3å¶düÔ@¶ØvD:ó5'Û2襞ú›Á>𳈊ª‚«"Êm²4àé*"^qcºÓ›‡×ø«ca£µñÀ sTìeQBÍq…³>2Ê1‡ãå:?ÇP`® mb´U4 j"Gž2z3Ђȶ2±¤%^—Èb=sžŇÄ“ÒÆMØ«Òó³MÐt„Ö¸—æ4{ª¢/%"_býô˜ÜÈSÑf „B0mä!óÂÑMt^öÈ|4KZ˜-DšS‹hîæR£'yrðžqŒópŸ:†•$ÚÉB€R8*XN!À4‹PÌ=´IΡ¡‰DZa¥õfïG¬vÊecÖþ"¦aÞMqäü̇€³]¿c›¦èzx ¹ãKk£Ñuî8>­}Z{hûðõóCئÔz):&ïk¤ÞòÈ:¯wIð³•.‡.!©g졽!)¾3Xûùð¿ÄVú·ÝÿfÜÿÿ¢¯âÿ±ò¸±”²ÿ]^}üíþÿ>7\TCï_S?¤+^5$T(Å)$³Å°ÇVi}×8ro]ç/à¶Áw&¾õcã®7æp»ÿŠM7ºSãhú—•›¡H”Zšï’ÔÚzdƒV@®pÓïN#í3S8Mþës÷ò#°€àî¡h@í˜÷JÆíî¿÷;Ûí7­ÃørÇœq{Ìêí.®ü´ä”ÿXÜ;¬XÌyÁ …6tT¾·S4ˆ{KAù¸®eÔ±ëo0…p¬À¢É2*ôß·˜sƒ0Q9êÚ3;LNi¶È¢ö¯ w0+xt¾Ñlî®,ÿôÈšòÕ Û‰‹t¤žåø6\kº¯bL¬ÊËXQ=*žœôÛåúýŸ+ðåø`ÿ´øÔ¶Ðxºè?+Ú¥žÛ¥Î¨ÔY¢”ÿOË??݈í#*'åîIeñG´G0±xròãbölìùàeáäGg©ÆéZ¢1¢Í…h½ð1½äÞ(š†¬ ñGŽK‘ÛÏCw|ÁËŒ±¼ð¬3ð¼åÀÐð Ïðß8DiþQëÕ¾S|º8½g'£¢£ †Iõ…°>þXÆpç¨4|Y‚É^†ÁÄCóþ1f*ðNs={§Ÿ>mÁAY/E—~"|¸YD;„wôóÑ#|ëÊï••Ÿ~Âßïå÷2|ž?/âXñ¶>ðjü¬pà2•ÁS×¹€ Ù(Rº:ΦøŒ=‘Êî³z!–Z`?cxnSÁƸb4@J]ŠçJ3¯;í É"Ͻ‘b â‚KÞç¿KÆ?$›$uŸéq×1× ]—Éñý±ƒQG•¾Ñ iÌ1Oºð3a+ªrËP–òŒTTžKÊ9’¯ûÓ³ðY6“w·øt:ˆ0€œ›B0öFe<7U§ølq2/.,+Ο:=ßsŠMr¥ÅB޼$% Ã2ïOºÚ»Ï@Ýs^2²™Ï™+@6 ìó K9)°,²¼øûI}‘ïº ŒëÉÜÄ\ÿ˜À`Ô6ç∔S`ÔõH¼[? ëÎËà´F.¨k‡å‡À%n£mrØ÷JÊW$ÀÐ\ßsÊD©*Žl4Æž¾†;û0s˜ÐEÙXW¨aÝiÃñ€Ü—Ö.=öa†A£áY=öÝCŽ@­ˆô<@H]ìåÐ"¡ …; q³ð+i%1ø ŒhãѯéàÀ)žŒîß¿tDµ%x£n0EöžÔ`MЭݓµ‚ÌÓmaK ã5 >Ýg{RÒ #«™™}ö 0†ìZ•âü¼GEyqý‡(‹¼nlXëòë£þb½ïËZxƒH-þ|ð`= '¦ªà—çÞŽ¥¯tSip8œ wÙ{`+öÀVžY¤*1œç8É,Цýÿ^]¤TS„SâÑ4ô‹h±H7ÊââBï‚c„;fï˜ÆÈ¬[I#w¼íËx}¯?Ïx›ëÌeÀBl¾>Ú{µyÔnnîìüæ¼hí¶6Z[EÒŒUþ(•êAµúJrÒpõÎic±â|à“w½Iöœoè]=#§øò …w÷ÒÍi MQ$¹ª;Qä("a1'hAí\\£Äî0U‰ñ„ÐüÑGa¤b$ I p¦h.ÝÐézEDz4Q\€9%!í*\îÁ}bÑ÷1(NÅ‹ùWEpS1´èÊ•&‘°\%8ß4ÔÙH Êî0±90Ò±€‡äу…ÅEûéâïåŸ×žÖŸU~.ÿþ´|ú ¿OÊ'x/Né=ê=À§ÇõêúÚéÏ ‹™°æ*”¶Ð k"µŽ`̘åí5°çEd~<ü©8ae/¼Ê;YÆèÒ€ž=‚§ºszJWMá¡0š»„@ãî#$ÞwH’ÎYàZ.G†Ø;÷DtB/ϼÉ%Þt aÞÞ—ŸÖï?KÏéÐ ßMÇ$|k¬¨0ws¡#οyßkï:SÚ8¦“Ë@n“àœï*îÞH­"‰ÌìÅA>V¼'®"‡õê:ÕT. ưçGp¯»ŽTÈ9Ý;'±¡*çqî…E3«N£?|É©‰ë@DYw½+2‡â+àóM‡ž8Ñ5!ºð€Wó¨*BßgUSxAöGŒ(!#\M¡N”8šòáËÊÏ™ ‹W]€ÉÅû OÒŒ2ÉxJey÷xð/À‘1CS±Šº¬Øíb ¿ÙX ÛÇ"n4³«>÷ÔÅ”–AÆcn7JBZ½õf±ÞjÑþ©ý¦XˆŠæ°˜3†°ªž:©iQ •ìÑ<Îh¨Ü—dc &¦LÓôî0ý(žxÅô.µÞвÍÀ8ŧ"£U«–ÍØug€¡ê EÄ|Ф=ø/&ôøìÇÅ]8ïöç‹?&‰gÏ<·ŸÅcÍbþdÍ„ÃW±ù±…^78ùx=.óëTíž³ƒgVgÈ q“!jª‹‡ÏüÀ½“Ê~]¦92dRñZój¼fò¹ž=¦&Éæ&DÉ#[áÁ2Y—Ì$ý&¹Â!Õ‹ëùÐzxÍîøn¯P ¢HŒ—¨IAJ&ÚÁæó´f©‹Å÷ÜyM‹ÌÌ(þ+ l6ÊMfª¸¾)‚7Vt³×sð¬½BIdRS”›Ñw_I5p—c‘‘¬U}Cݪ‹æ”IRWk^!\ÓLìG ·êÀ}Š„2ä :¢8¯€šIØH‚F)²<`8ÄäCèw f3$³œ.‘¦ÉaÅž–(Ä È   $#9.T5eºs‹t‰£`‰.JálèèfµÁ' âµÄÚš:ôŽÞ•ã¹Ðê`Ù·Šô?ú“§ÿo¢kÜ+wô9ú¸Áþkeùáôýÿãoö?_ã“Ôÿã¡Ût"­þÐϘs)²ì99þÝëÿxú'šýÞ~¾š{ŠpæEoþeõ,Ç|;|Þ>]Fßo0&ËšØ+ðö¤Kˆ}º]öÞºó e¥á_fÛ»•uþo Þ ®»Î| <üwËÿÀÏLþïèj&Ë3ïçþoؽtþ¯•¥oüßWødñG±ô‘Y%Jj€A¶=âçär'±Ða §®†>ÊÍBº!B[Ý 7t»p!Ž$pB‹zxïüžóúh»ö8-ä[£nÐóÖõ0¢Øh?È¡Q¼²PBoQŸ.™\Ú‚u}Ÿ¹°{˜ÿdPX膃¾õ„, iR¸ë³*3bÚ•®ØÈ¡Ÿ®…îe¾P‘ì{63{ú–¶‰°¨ÐZ/&³,,Âoò]w…s>®bôcpzîÄ]/`V_ÅRâ¨Æ+³¶Öóðo¹H«cÂ^ªúíöóNó`oó$jàlC¹¬‡S+Æ Ì«½P-jñ¹‰ÁmìÍM‘Pd½ÀZ×ä›~™Æ ËtÂ5©5*‰žš³»øÈÞAÔðìÿÇY<þýäj©Q;¹zì.&›Ý FµÍÃf»}Së­ddqgY‹VQÒ\DJtÏÙc^ŸZˆ<ªÁ €[\^ø‚¿O…³‡ï¨Ñ,È”qÁ3NšSÑ”i@m¬kš¨iv]\f»ª´]Ó3J(ØŽ›ªÄea, ûMÔòô“Kÿž;ú:ôÿáÃÇiùÏÊÃoòŸ¯ñ¹Ùÿm‘3cC`ñGaÐï;5”I¬@ n±Ý~ب‚5Ü“cçHƒ Åw’(†À^Pž0ÖnFŽ7風GiCCÖÏõ§ƒÁuá«‘¤(±.¥=r0”_UIoÐ07šðñ!Šâ½ž²xÕ;…k"ù”7$Ÿ[wƒ"KAj$C¬²€z´KÀÙSõ€âG™.d’OË4rH·ž2ͯçYSG‹'W³“ã“Þƒ¡¸ˆh«½Rtµœbë°éKŽVgX¤êõ“«'–o‰®^D6¬ª·Æ+²¦E¬·e¤}B%Y\Kö&#+`‹AmFÌé·xë J§ëÝxŵŽÙ®Øÿ'rÊ^ý¼Ž–¢ÖQæöÔ×$­iÜ&*zza€¢½z¬ÛBádùäò~å¤\>n¬œVN*'Ñ|zÒ8)Ÿ,ŸTRÊ/sãR·d{Sµm0±úV‹ @O¼1ŒÖ FÌ;¯aU‘Ü!W&j®ÕÉP8"@†Suâi©Ý,µ¦ÊJd9ÐTgmÔ»u/¦02JÍŠúI”°r~?„sø¯ln½±55ĉâz~¿ï…hßÁzO1iÂó°IPo¸Þds¬Èó©ÓÀGÚÀÀØ—Š¹ÀRgoíY*ÁbUD^^8cö?ýÊZAàÀóе`¿zdœCV"t„(CÝ¥'N ¤Ã4@ó°Á‚)°KʼèuÑž„š;»vV8bh©µ«„ ãu^QºcŠ´êIT*ʲÈÕêj;£ jbìǪ=+›!A¡4Y £…?‚‚`ÓÛðlÃY1—;Í#¯Äü±uÚpøÄç¦íIŒWER›~¯ éWeÿçSiF{·Á¬êÀ¸\S "%hÎÓÞ›èÙS Ï⇱Fù•Ñé ™ôº1ûõ²ù:µ ÆVÖ`+³±YÚÔmqú¥iî€-›È݆&QeÐ4 Icná†É&{å†4íÑè±ÕŠ:«X¶Èjüip3f$€—pÑÄãÕPKz-´~#ØZ.Ù0bˤӠ:ƒxÄòç2’bIÌZ‚Ž8pµfØbF¡–\´R—;oÝ9®eÅÍEµœÚBf¿âü§ug;»lg4ÉhŒóF"QšÎÆi‰ëª=µe1W:DHF§‡†é¸‡Lšz¦½m pÏ$ë98iN 1@$gë2·+s³äòý—¹nçÝÿ¶yøÛÀm®‰É­Ñ—}|ý } >Ìÿ´¼º´’Œÿ´¼Ôøÿõ«|LüïÞ;ãëÉE0Z1d€Úºó¼Ç€[vš{¿ :YSîÎÖæâóƒ­M4‘}ø¨€q§Ø2û£ZL‘CDc]h¿ˆítZoš”M»UD†Ôxvx´ypT\´žìí9}úë rMÖIA+þ^À·º?êγÄCž×£·…Ì-'è믾†^¡ü$ÙÀu¼«î`JfËQØ»“‹Ê!íb±(ö°®2j#ž›¯”d*Gu{žxˆ ±ã… ’õ©ö^A¢3ÝâÉýúýŸOî/V~^¸y*ø[´ðø¸PØÚì´  i à+om®¡Kd¥Jÿ–«õûlèWªv¶sêìlsUîe^¹—V9DÖ9%ñ•DZwÒ;Å/0øU£_º‰¼1Á›Dgy£‚7VÉíÝœ‚Û»zH¿WO¢Óûq܉à«ÜZyc‡7‰åÞX%‰Xˆ?!ã€2ýÛá B’\hÏC‡Œá¯$ç¼§©ª bƒ÷¦íÅ—R¸§‰‡Ä 1º‹ÁQ@Ïx'B7Tncdõ ¾Á±ª§t¸½Vb´TޤéÃ2Û0[„›½r£ˆœ¡°D}€éׯåJý8qfejœ›‰úêzCŠGã?)—Öà@5*ÇÓºTפŒÉ/´$Aæ–*Êmì²£nmÇ<¬žÛÁøL>¦’ÃÛ‰õî±æ3¬Ÿ*ˆÍrgav›ñóTét»ú±YPdfËñóTétËú±*+O;ö:c а{ç4Ö3~ÿÚÙÞ5V]s ŠMȵa§OtˆknÔ>ÊTP¤’»èêll°@ hàð—,ëÛæ&¶÷p}¡öëça0—•J² yöo8F¡åÑïëöü‘± v—©%%„/íÛ뺼& 3œèªƒGº «´ˆjsŠzHô™;ñ‡ó®wMÃÞ°ÞPpþõ´™\ïžkO+w€UÔ ÞssœYXŸŽ’…&*,'*Øðÿ`Ãi$7'Ùä3g)½5æqÉjDÏà†-¾GJgfÜ‹JÓþ¤A@|2?eê §ÚШ®îŽáæÐKì~æÈ†D;° ÂÜ7Tx~È!Þ! ;؆=±$úLÍ ÍNFtF±¨Êjê”r±ï7œR­DÄA‹V²WÓÆÏY›ÂÀiôÚ „WsƒÑëù$A²Ft·I~f AŠB¨} ¡Â·Aï@ƒm$Qü @c£v¿$&gb!£\qÁ0fœK›g훊ÄM21~p1n?  k7Mâ³CÊ p§ý»ÅîÝe…ïI(eæ®èLG¢2(Üжɖ¬ [rÅ7 dK¶á¶ñ9“m`M^JÉWS¼+Í¡ÔB…µD%1_HÄŽDùe*Ùyð_½.i€TÔ÷î`ŠAJ¸m–ÂátÈ)…ïJª¢ÅÐÙ!ë³ÅWzÀÆÕü ÖU2¡¦›õ   çÕí¨ú6ÐÜÓ ¥)%oBæ]¹ÝÉàÚæ·¤Ø†% %%ÐОèÊZW ²1Oq7hy²Ø¾}SŠÂÑ ÃJ6¼“YN¿øAÆõ&ýÁÄDOFÅÄ8pÛp94ôüÈ==J™mòƒ~Α—På˜Z´$Ý2~ÞÊý¢ÀÛZ<òm§üAûH®lÙ3×°üÁêÊáô>Èmõc±Jàè:ðéya˜ä›)„L‹þÞIq š+L€i<^·IDtÀ_Üà_¦þbíó€ï ˆ{©!ŽN Þ²áå"/7ÀËE ^ ¯[CËK„–‹lhöLPÁ©ü{пuIèÓaäˆEosCH£Ghá3K>¶; ] ‘5f“ÊÐíu0uŒ·åžï½ygôÁn`>h„iÛàfã®0”¸CÝ(aÔvªA,-M^ùC¢§|¾´àó‚às\†EoŸil-|qt†ý~0onóÂÐE†nÀiº†Cw@k0bŽ,ÄF$¨Íêäß<ÀÒZW”>ÝQæ@nXô6·”4rƒ¾8ð`¿ì«à|àƒ³ÁÌ]v;q#¿-Á¨µÏ«UÙ”dàȳyvy©ô‡xÖJÖ¨JÙ`æ§%`ºwXþwéÎÒb¥îF–*ذ޸ºw5ÁyéÚq94¡XË©•+3’ièø¡„ @º Åû딫ÓÁu*v:xïïtŠÜ'.'Z$ÁÉpÃó÷(o^‰GÃç²x£1Ö±?"£Ôc远žÎ:rø ÓÞÊÃr<ÃlJ /ŸVâežé¯‡½¤4NgÙ_Ñ™ÌÀ„¹GºÀ{™1—ÆÌ¹ÌFr fÿع,/ŒA À&³´”ÄPf¥·yâ·ÏþäÙÿ¾˪f0£/jÿûxiu9mÿûð[üŸ¯ñ¹—DaðáØ­¯wÛͽ­–³°·ß:8úÍ9|½¿¿wpTȪR›ùÑŽDÈ”xŸˆ…3 zÓ8ˆ²³]8rawÖ>&? ƒ±[„Æt¾yóF|T$¬>À1ê*Þ»!¦ ªw©…ú…¸¤‘Ó둌–¦èNóÆõ)ð²ÊªàûV ÂswäÿáN0ER_,UÏ>:Úòºì ·¼´Ü¨ ¦1¼ž½@·údn@üÙÚ<ÚtvÚ‡G‡Ÿ¹[hîy{«ítx¯Ñ?·¼Ðïõžû=¿‰oêO WµŠ!61Ç#úú+Ž-‹|/DÀ3¨ÐQmSd©´¹Wøºg~·³ãM€>•ªôf×|³K* ~ó_8¥}Þ»s¨ÜQä=×|Ž×F7¼îìzÓIèøeó^2–KÖlqÍÖ4šìެ^[‡ö»dÕ#ûõ‘D„Vï·ÛP ´†oà æóë´££WpžÕŽ×ŸtŽ‚Îº9Ê›ƒVµÞtZ0²²ªL;]Ænÿ`/]bX¶v‰‹ì¾Â"p_•pWnøŽßíñÒÿ¯½¢û[ÛXk?w¶(Š*]wÐÙ¦ªH;«ˆ5¾ž? ˆ•7;4ëMrþ;ít»ý½t {þ‡<„Cïí„“;ü+À¯¨µë¢Ú®Oñ”(Nüîtà†¦à;Âk¼ `hÛkÊ*I® Ivègw卑†zNÌiÈzdÄ€Ê:#Š]ö¥lY[„öÇA$ì¬he0è`ò¾‚ë A<ÐØ]ùÏ<ÇëùŽ1ûÎóÆ”ëbâáPªñÒ•@ËfתÉ>órpú¿Æ®6Gøäõ´>òzò4 ­xyÉÚ6#||8 Ãà<†Édpé…œûr` €!¾|ÅùBûõ±ÇJqóùŸaÞ§Œö¦4\¸AetöŠ&|(Ql†ì_yø¼EI oFrVjQªÖnßð‡î@üBä Ϙz¶_S2Ÿï«Q|b33à¾0øhú¾‰n/yCIª’~éãK•l6ýÚmú%mõº&¦Þòt(<@÷nÃ3`‡ï¬ý¶^1(¸˜Ò…±Ú¯Ñ˜Ïÿ›e‘}–ÿ{L@ª(Hêu¤ Á¬©N;¦hÑõÝëuö}ØjÄïÆg^$¬Z’cJ¬g“‘ÈI…{Ê}fË/°oè=GÑþ4…ĵBÜ àÅщÅ0ø§_Cž‹_ÃAz.Ùã‹Pw*Âb@ûŒÍÂŽ¹!bc‰ÚOÖH§±ÿŽÌÅ7£èÔ§ä,É ÛÎ+ÐP¸AJªÀ²PQZÖt+%gE` †g”(9« |™pYšt6k0<ÒùakÀÑÉ'×cÏÙáz¿äÖ{œ]ï®w”[ïIv½#gN‡%ç§œqþ¢*fwYj,åU”.¼s!Ì£&‚ÆãÀ5eÿèˆe4^jÈþý÷¯Ïé{ÅÜàĹÁÃÖXÕçka7è›,<»$*ø¥ *σ#Ö9œâ) Îð^´ÓEš“|1i5ôÎ)Cb`¹bMpt0ŸrÕô8ö…® myWÀ÷¨Ê2Ì ×ÃøTe”ŽMÄ#‡cSÂcŒóÁ3Ê4xç&4¿¯{U/í#]:5Zäa“aéwf |y 8c´`¦Qrÿ"ÛFn½óÊò ƒÒ_ãŠò¢uä<ßÛÛimîÆ—JÌßù.*/(AšÚäpưä:±ýßY:îMÎhù°‘2 ¤ÏÆÔ °á—K¿ŠM !ë+‹ÁÄö³ÔÍPŸHj’ö•äNZ'æ.Z,9t[°YaIûÀ ¢½×Â}S )åÈýûlÐÓ>Ìj5;Jäj \é‘éw€TW¢7½z4=+‡¥{õûLJÝ$¥$^-­ÛЗ£IÈ¢x.¦ü|ÖK­±(Ö¬8O7œúã/Šj´!kK.6‘z+¤ŠZb<Ì”cÉIË™UëÏ pU#MªêL«©°E©¨VçApÊf«2=Q2{éEÖý€9=‘¢¢HžäJ\"‚û59H)/zlàM²àl ‡>éÀ}`؉ü?p˸‰&*;+г¸è¬,¾¾hîíì´šGíÝ lálîn9›;íÍÃÏ9X¤ß~བྷ#@‘îÙf¢v'â<õá##ŠnW±îD­•\cœ‚3äNVã§Vƒ¸íô¾z)_Ãã¥ÚO›µíÓ«ÕG1Dý¤n=«üìù£»Âp dÄΰw†UsÀ–:Ÿ ¨ËÄ.d€/Þ2 › Ó×™¾rÀ[ΓÆÝ/¿ÅŒàåƯÂ=àç µw°Õ:@â°yÐÞ?ú2· !¼xbƒCœAèa®f¢'šƒ%°›šÁ* Ä«›†Ùïf<{G±3ÇvGŠr‹Ì‹Ë+‚¼%N­&Ž—N ­xêòžZpæ&&ƒ®ÿì9<ÒŸ’(_O‡®è p3ùøÂÜ«ôá‘ëPÑ)ô*giÉ¿\³)hN–äWOíç6LНTïª*[iûKÙu*ÚÈ(›=,5îä€X™ÏŽ¡{m¶•©ªÂ?+Ÿ:f¹Œý[ÆØšd'…ä!´Ë(PH!…oÒ×6kœEß_’÷·¯¥‘FüûKkëK)¤›¬ïç8@ƒ8ÛP¦¨'ŽfϺÚ§Tv>I‚λ£õbœfkÇŽýSŒÉLð‰P¢–®¼T%ôi‰Ad˜”–.åÒW^1uÙÿšÖÛ¯wá¾·ûÙwζM“ród«¨’¨º˜’†ÍZB‘î9% À«£‹±~Ýé`Rw~EÛF±)kåÀrÆm‰ã!ÞPU ´Fä{H–:ÜaY"ô‘omÈ‚¶ÒýûÎQ`.Ôk=žh£¤Ÿûäd{¸i*Òeјê(ˆtÁãQ7Yð`2kv)|Á.š²E£0YEV Ù‚D±åLIˆŠÎf—é)ÙÈÎ8Eò)b~_Ñq¸\Z,Ébø=^|ÓíÄ¿Žý5¦a(,#kÖr±X<),Þ¿í§pŸ¡{ß µ&°¨þ8ðÎ ´®Ð9—ƒäðªÜö³X€‘‘)< ü³ÅÌÚ¢ ìNÇb'Ä{Fç—¨ª®G÷ªÀ¡ýìQ±rí•H™‹ÖJÔ!ÞÚð¡DšÇI:Œ›6EsÜØ!ñùUÒ—Ÿ];ûþÀ;/Ý?¼ßS÷›ûm çèàÛN¹[q?ýô¸¶¼ÔXFóª÷€Zý MµéÏB¿wnz½ïz—yÍ`*@hf9¿™Ù‘‰Ù.ìtÔâô-) /eßµµ‡6Nk«}ä¼ÚÜ}½¹³óÛ÷ J¦Ú£hH£Š`$ w²øC¤"S²„éUªF:v–(ºì»Ž£WÖb$?î÷d„ à0;Õ?Âôgĵ€m¼žø3Š5CƒÇT{xuà8”øäŒñ%¢IežHÿÂÙ/ÐZ òu ðÑ¢i‚k¤ö½ÁÊ´V9ÎÞ¼pÏgXÇJCo²Æxß±GE´X†C›G¦*!碡$Ñè‘I¡’\€µó»žŠ]¨-f°³S‰V:í\øÇzÞHðv¯† L³7ízYƒQl!éNƒ¹¢R¡HRWmØ"†s&‹ b^軃(^wÚ,J]mLCÏn×ó©¢V÷ bÈ9a0‹ÐV­úåÛBY3°ý ݮרFlHÜ/<%¡. lAæ›D@¢HÍI§Óܰ(èO..ÌœhìuÎ!ô J"X#œ³:zÙ>t÷¶~ÝÜ ß÷ö~ioùü7çèeËiîíÿvÐ~ñòÈy¹·ü'+ š{»Gíç¯öàAqój ¤IØýÍi½Ù?h:{NûÕþNƒÖ6wڭêÓÞmî¼Þjᄄ:Ð!’ö«ö;Ú«b§…t5goÛyÕ:h¾„Ÿ›ÏÛ;í£ßh Ûí£]ìk:Ûtö7ŽÚÍ×;›Îþëƒý½ÃV§µÕ>lîl¶_µ¶êÐ;ôè´~ií9‡/q%f¹÷ënë‡nMñy«°ÓÞ|¾ÓâŽ`’[íƒVógkÂÂÁðvªÎá~«ÙÆ/­7-˜ËæÁoUh³m¶þßk(/­ÍW›/`jåV¶¤ùú õ ‡¼·]8|ýüð¨}ôú¨å¼ØÛÛ¢u>lüÒn¶×½CZ¬×‡­*Y¯bÇØ¬¼†ïÏ_¶qÍ íÝ£ÖÁÁë}äI+°½¿ÂªÀ¼7¡ê-îÞ.Mhïà7l×€Ö¾êüú²Ïa‡w ´R›¸‡°bÍ#³ô xdÌÑÙm½Øi¿hí6[øv[ùµ}تÀVµ±@›»ýuó7бýâÁ¨ø«°UÚH§½ílnýÒÆasálýa[À¾n¾”å®fr¬ P¡bÑÐ’y ¤Y†ÿº;Övÿß\@þ£?7ùyÑäÓ¼?nÊÿÑXYJçÿxühåá7ÿ¯ð™ÿ=ýùüŽ!÷,Ï‹™4¯e9˜ÚQ³Q~hÄ•¢ëi³/RÚH û1$™ò&¡WCnxiý‰°Eª#6Ô†’\Cu²ïÔ¼–6nª¼ó‡F9CÞÒøè7ê-&AÁ»›¥ |£ƒ&Sï@,Q|Ô\~„|}{¬­’b‡SzB7Û[Ë‘÷' )dÕ|¢Œ( ¡«Gç 8L ú΂œMǸ™Ð›‚?¤ÞPK“ ƒ<è較²¸r÷¢ã÷®”`…aξå'ZT?|¤²B•Š''W–~¸úˆW&.–¨„iç–µººÛ‚Ý”ÝRAÄ%ñ<•Ȥ¨7³¨E&Ƥ­b’cEÊ¥+bñQ2„]ua‰TŒ)’1F&'ð¿Dƒ„ẞ‰±E~FG¶g©¹_뉆9_w/`+¸¨8ÓŒG¼©èÖÁ*S=Î+z}ÔïA/Y-»(†{^Xê*Ì·ßÊúW`*4%ª¿Ö›£Öî!ðÎQë ˆ¢Åfp¤ä÷´W¬ñ“'bwŒÊ¢S¸—‘ Ð8xfR—® $)'Ñ¥¦4cÅß˶Ltc‰§³µc‡¸o–­Œ¦tŸm\’g>$@€päÅßU‚‘¨†1Ôa¨òOåë.p܉÷fx £‰ªÓ×ÊbF8åt”äeÃy›Q BÖ—<'Z)ç åúª©¢ó Õü̧­(­¦1‘6"ïçS8[ûé:Ç[¨ÃâŠ|¿owÜšµáZ¥X Œ^ð¶Í .UD “Æ#ÕÂ…ŽqT ¸3¨Sp ÏN­æZ_Ø "fõ¾lõ®Œ± þÀiT¹øf‡£ˆ‡‡:ÁôðŒó~¯äizÓr :8ñ*•Nÿ«¬[sj“Å, ñѼB.O­zDÒÒˆ¤XIÔ=|U-~‹öõðs“þçu·÷©êŸÙúŸÆÒãÆò£”þguõ[ü¯¯ñù«è„»•?q(›)€ G°É7ï’´åКŒ’×K먭 ¡NˆU<23X:®—ÌTQ£2vä:B¯ïb|LRÂ*)héÌ0V ð#R “Û£„^šz5LüÉ{î-£ô^†CbxS4=s+vËÂ0Ch[óú'zsád<¤SÿpGï‚Ëè™$//-=±c™i¡üt|ra eZ'±K¬;›†ƒ¼æ«"Nîù£®çœyh¾Û뉶 ã ¡ÕVÏÇØ°–.ZBîØsÊ.жTBâXaî5Æžä,ôîDö”–˜ESN٫ú* +Y*¢“fn ô–ö5i¦ºÕq*Œ‹—ˆCGËÐDØ4¬bÓ+…Uà·z |U|%² ä9 Ÿa5B ÙsMzÿšÂƒÈ¶3öÁ˜îšƒÑ8XAÔÓ27áN¼ zêj:[ÕÉ1¡_ñ¼M17WÍå ©:f þ•pÏÃúyn¦U'K´¨žÊ °a…À¨‹L­²¬°-·Ä“¯µìP2>ŽDh…ä)R¡¢Õ‚•Ù—€\¯{1’³-ï§|Fé–ƒ°‡1ß¼^Ó cô9 ,]—ˆY$¸B„aƒ®OàI§`àHuãªê÷6-©uZ4Þ .6òÈÞ•‹ùÙ×hÒ“ÉxmqQ´õ <_ÜŸž üî"Ír±±R_Z<ðÜÞ+#åÉ|@¡ó¦×ã B¾Y«˜/ÏP¨S~Ýܪ8µ‘Î¥w˜eâ­ÏBÜÕ¯;½ò¾Âk{ï±óÙ¥•Æ£wŒkØÞƒp0󕃤¢|å£]¥iF‹”=±×öâˆæŒIÖ˜n"Ju€B“”0…ãÆ7’V'å¼r))¸ƒ4…aHðÚr}ICè!ãOþ—‘ûšÞÈó°£åúCl« Cì„pL»1ñ{×<tq€ršîÆo0aìc“8ze­Vij‘ÃÙqCg&ÏëûW8ÐÿNGDÔí<`ôÓ>^ñ.Oˆ×C¸õr›U‰äG¨sG‚¿Î ŠJ¥ŒLÂH&œa¢”e錂`Ar«‚Ó‡nA¸a²%Î=Îb®ØžÎëæ>ŽMª{ÓáðZQ©Ë À£UïÚÊãÐjS_¯ÉÆ„Î.q"k,]fm{Äñ†Ì^ÐÞý,ÊvA X¹ÿ¼#XñÞR°"À]çrÌX”s}߈ N’—h"òÜV§y²“bx"®œ¾Ø À§ë+6æ¹P™O)î"𠮉ïð.>ü(Nb¯#ÅJVèQ‘ è¹O#ÐÎë\œ%z=Í<1"-ª™1!‡>±!š¦™Ž’„3Ê£ÙI2 o U‰A·¥Y^ˆ!ðÉ™;ΜöCeÉ¥Dާ¼< V8~›bød;‚Ùú0D$Ôe~ª6Å<ƒEl‡6FEÞQyßt(ñ…/i`A5`…bKª íf°€:%XÒÝ>n,…²Çã±ØÚi½:ìÀ5 ³ÓÞmÁû®‹çÀEöGØ^ùÇ£mHàA,¯¢ =ÿ½O;r–éw’ jÆ ïŽÑ¼§œ„#"ŸcFÃöh›eÝB'ÏB›ª'p<9¶ÖCùt²„¤Y£Q_ª/9å¿OɆyRÉ=´×çÍ €‡Êù|¥£²®Â^YÞÏ|äGÇ‘bîòƈø/ j ç.Ø=2ÅP$,CFù³Þ!‰Ä1Ÿ)~MIõôøæ¿ü(c´á”iƒ/btÕáԪ̡֞ûÎc>çœDé!:v*..ÉOQzVã뉴“cò2{YFŽCO»=ÉÜU©«HÒ.—®©™Ô^(…ÅÑÜÄ2~>¢ÕN€Öˆ ªšýW“×c~ƒ¥† ºÓÒây$‹ŒBµZŠŒû.‡õ7"™¸&< &–Ò§£óšnÂtµ0¥‹Ž%p0H/\]”JßEÿìµ]â¼PìÚ] ] €Zp†IË™ßÇ‹<Á0šÖß#&z¼ U ƒeùæH×*OøŠÕX~b>†Sàr… 5,ŠŠG‡kc@Š«”ÛæÓr@fg¹¡j…à:¦!tÛN‹ð`˜Ä“N²_:‰,KD@T›Ý!IƒZr†2hKÓƒ¤Ðwƒà#OàA`Ë‘Ú#Sä^=’:k¢;±»w´Ù|¹yà”—®úò©—ZÂ¥ÌN“Ò5¶ß3ÏÉQ‡{Ni<¹^gD£.ÆxÖâ¹Ð&¸Q³Lbñ7t@!i5õêùçþ$k¡DM‡ §ÀM´oUé§’ ¸.²ápíIj› DÉ•ÐðI¦¡§(çL9´ji"ÚŒ¥‹/€™ ›dFÿ|OMhÌšO¬'‹¦gJ†*55n”k«uù$õn2/›h@˜ô`D"$ĄуÀ½˜LŒUAÞŠñØs)€€‹‘01ÔÂÁø&‰ëxËyâ8êh¡¸´§’Ö qš¼ÛMd­1$ξ’$ø$%‹U±|*• ùøŒPVw¶s¨;™J+ eò: ÌyÊBa ¦ç ¦-JZc Z>Ÿ‚K¨6P~…Œ¼Ú~h ‹’ 8+Ë5d.…+¬J$XBJ°Üá‰d,ÌÜ’dÏRý& pÆí5‘-¬˜½™UUCw’lšâˆ2ñR+_¯,ä¸#»ŽÛ2vˆJòQ½‚=Pä ùH/}yLnã|¡vœ–-¿ˆËÃ3¸žB£DbFACOo=GX”T,UŒo&Á ã< Z¥aàNÀ%Ôš©ÍíÁ( DÐΜ`D“YtLÅà§í*š˜[@~¨¶ìOÆp4ù€Õ öH²¼ÞÓšs%æé%ÞF,ȧ“ÍhƵÀŒh·ž¤AÊ’¼SL7HlÜãÆ€{¨ŠA2¾’û\g@ëNYdil±üÙ¶€Ä‰ñˆ]§øÞ‘Q-&Æ–@?d´OÐàd DëÆ(ìµæFN *^eTÈYƒãÉÕ«IAº,5©Gªèª–¾«s:ÒS€J=µ8Jè•™.©$1ê2nK´f·îlOQŠVPžÔ0o¢ßâ@:˜h ÖŸŽ¦ðd-Qf£C‡R†¦¢[tʯ,-=jTDýË+©°ô‘¶–8«•{×t÷Ì,üÓcd£¨Y•©¾l©´³¬ZXyh6!+ºò‡ôÁYª:«UüV[¿'«øguÕù˜¸k.9„wwPs¿7ž9üUãkóóP•ðo,Ì•eWë2W9?ãtHPåEަ¯H%Š©Úh`×äú¬k±U¦î”kKWËK•¸îžfzq±p+WF-Z)Lk}µúdiIׯáŒn¶Ïc]ăª”3â§&°§¯Vé딆þI0†'2$G(ò¯&"©sCOK¢Ô­M !÷¨X)’=Ò*F Älæ¬{1>?É®áp‡ÇlÌ|àõ'µIPãÈSslGUÒ:`c±ì ïƒañ5%>r¤d7i0L.¼×úeâ•ùÔ=ŽéŒj -b‹¥ÔÎã1‘ü¾#;¢œrŸØlÁ@UÐÞ?4âû‡7x‡…r|Q«*кkRI`‘ ?tÏÝ‘+ç8À$+K«Ë6&ùé!‚¥J’x”‡R~ZÉ(þˆšZåhß\ü§•42yÒø)›ÀSF'Ë€Ek|²¤±É“å$6YVØä¥š*ì¾þž‰Q+Œ$è\ØäÓÑÉ-ðI^eã"}&ùDT+žîÿ.ÉÄ%úؽ÷z~0Ã;7Œ.áà5š[KöÁ{Hx姬ƒïrÞÇÅŸ,aS—Œƒ÷ðaúà=Znd¬Ëš}"¹ÌGòÓÎä¬CI+H‡òÑ“'›F…O8•°#ø«ËÆŠq,w_9Ƀ9šµñ•'Y“NűÃ>°†ZLçõ3lǸ¤oè˜:’,j\ua¥ %k ª’‚žo"«•Ì ïÑž;ŠÔ›3Ø uG!£ŠÚĺ·©2y1%íE§×6gϽѹ;ðÑrù= ’s7„ïÿpG#·çò0úGЯ´˜l«”,HÅu‚ûŠ# $4KGÛ¿Ïú¡0Ým‰Ó¤¬wÙÊ<Ê åD–[‰°ØR]2¢“ÙeFZôC@™‰¶9T"÷Hâ!'¬K>LÄ›—׉ܠüÔŽ[ÎϲcšgE¤²žeušieÄòÆuÃìMZw‰vþCD×…W›o:ˆNƒ}‚îqä™ÉQ7>ç,+‚3’•T™šSÎ0q˜-™ÇgJ4ÿUCîo£-Þ‹Ý^  ×hådžÉp`-Óý|S%À(ù–äB sO¶·Œ! ("Äñ¸Ã³‹Fð<¬Q  ‰¡¢÷zæ(³,t²GBź 3¼Ù®óÌYaßQ•qÏ8\4ùÌŒéøšUT­óÎ"aO€h.©§RÓ0Å( ¥fÉ­Žùô°d su‘åSŠâÔìÇK§*öŠTB‡Û bû|Äc—3­é§=ƒä[8Y“)ð—‰ôvh”Dœc²*¥SâüX:n>+6Lä£MÁ£Oþ-F$}ÕŠà‹Zª˜!0¸m;шÑxÁØlí~6B¤•F'XèK²bÓ"«¡7„ƒUE¢Œ*šEŠŠ 2*$̼Tº"·×¡úe¤NwG˜É4À?ÍdF‰ÐXkÄ Ü…i{~_<}°X>þ½~ª"|•ªŽî׆~WȆÓ7“÷e„À\мuݱ kb–“°˜PÌ ßg̱„YŒ“VÑ•ä,ìðcè‹mG ‹ãŽY£÷ûéÈdX%#h™,¢$¡Kø^—°ò6üºy°ÛÞ}±–²àc Ý´~ˆŠÆ’ó× Œ:Mz^òY øÙpŽ­ÍÆ0tµ+䥈õûæ.nèÇå–rSÉ:£ßÀ,;VNÙBféŒÄ³ê€ß*õlÅsòÙTìüÁ¬ÀF|âJª%á"+B…ÕÈÐ>›Ï­õ1<߃JY‡ëÓ*?ã)1°mé` QÜDþÝxD–õƒ•ez°ZáŒ墨qtÍdE³F·À¬8ʆiŠ–>ÄRðíÑÇ+êûêòO«?=z¼ü=¨‘V­±üXõ[[Y~üáŸÇTb¹±úxõÉÊ£Uxª¿?¦þ†þ–ãú#™?>u¯ä©{?¥,iÓ!´…i ˜VðоUìhU<8Ù—ª€‡Wºdƒ#êçé†n')VïÃ14ã ]`vPg\I/1Ù&’‰¨µ›T·š 3 &(cœ€œmˆ ¨ ß ÷ùCÖW ±$«¢Iº¸Ó$ØMJf—ŠÛ{°Á¥9ð¨.£–B¤ù4ÅèKë2c‡*öñNF•Åäò̱ )</&†v‚]dp¥}„Cß\eXEó,Wñ>”‰]h‰U«Åë*R1énȉŸÅÂbïCòyWçi2lÅ ÍŠ ‰¦(Ìg‘7ejBÁgã‹2e-%J‡kò‡?¶*q9å‰(p¢ÑŸŸD}FÑãÉ© 9yP‰oç OùŽ¢Õx.]ÒUÊ!6 ŽÉ8?¦íð;݉-b:»ÌCŒø›à‡Î‡“Q)M<ŒS0I%šá@ãpåø72¸X=6BE°tGð$}ÏÄ–fÛ¼V÷Èt ÿнŒ“ÛOÇJù?òÜùãK1{Õs¿*/)ñf×5`XZVdTõâÁ»ÒÚ*óºóC ·„oÎÑ—¬çÉñ²Q O”Âgä]MŒæ‘C÷º»ÐK3úŽË|«U*$Wã£aÃk¡dÐ]šëÔœ,Ó:²Lwå‘‚ºªc€7ŸÂ%&™qÇÎþAû—²aLVJZ‚ Ж ¢ZÕç g)hŒvÑ<­€LØ£©XÈ„®ûˆ6è‹Âï¼ë¨\©Të)³pðÜlƒS«BlŒ%ÌWkΕÈné`V=o"æi7°tÉq>àÔK?<êUaîh3¾úX%>cEfOè;2$ŠBõª3–.UŒ]d›OTËši<àräM¢2kY!o!Ì…æ€/… õ§ç…ÄžïÇ5bZÅÁŒ{ ˪*°—3 Ÿ:Så<} ã†g?b®aက¸:EÝÔg×ãúIòV”(êöN•«N1Yléꇥ'WS,{U±–¾Xþ)›¶}N=ˆ¸à(Ç(ŠkAfÈkyýé€Ãdã ¸^¤D†¶zˆ°Z¯îpÒCh—rÊŠïþFå)&‘€-î9”«¨6Gq4)&Ÿ@%g3€Í…“ÈJ£2ÜÿWªxydüÛ¨VP˜ïTªvÁ¥%.”øÛÀ¿Pa9YaùaÕYáfGøweU¾ Ü ‘Y;IVZRµ~Z’j«©jPiiɬ¡&OÇšÙÕ¨·»T„Pt¿DÍÆòÊêÃGvå'ÉÊ\3Õ1×U?²ªŸÒ¿}ID‚ÜR báx!6| V!ù!WB½ <¦=Ô a»{`ôÙõ‡_Iúj³½ëÐ3 6Z›G˜«ï“"~v¥hZŽ_,j]´ŠlÁ>¬šWA)ïF î€<7%­µ7"OL2`é'Sž];q˜ÎñKÊtͶíq<=qÓºt)~:[bŒ†Â= ƒ„ã I«#ñ¦d<<^[[>-¤´ÉR .–0 ÀR‰GÜ^*z"Ã:Šq–µ†¿P3'"d¡ 8vÃTk•òsÕ”ªIÕ³•›§jYˆNP»úVŸÝa¾ö;Ý*ƒ|"¼Œ¡IÝÇËÍA®r>=€ä–áÕ4ñH ‚Œ=q±P~ö0JìR5¡Á®:KÚæZUK¯/-bÕ|e{i‡TÀl–ŽùÃÊJ¸¥2`¥ÃP`xŸ‘'á}à2ŠX.=¢Ñ™‰:™q%ØqUÖÖlM…ž|ä™KÑ.yX¹â¥ÌDN讪is­Ô,›S+O>ê<&Ù]¾Xw~õfÇX"ÁºNŒ~[Øk!ö°‰©fMn–Ýh)Wùš¥`¼Y x%à  ¡»KQ|¿¡ì)ZLÕü,:¿™¿ú>[ÛËÂfjúæÑó¡d,Æ9¢Ì»=ÄY"lå…±t€©¿"÷¿„Ýêp_D&­UÊo/e)²bê4CÉM{èù#ÏÜc„NS‡§à%œ‹—ö6drœ°p!—жàãü}¤yp ÷´ÎHdoÊÉPû"bJú¯Vå¯ì;ØÀ“=4É “œfö†;@¦KQO¤á  9c ìáM’ÑeÌí†YW¤—M\ðâq|z*Ï®:óâô,s!ÁéIk¢…tÒm~cöZ1 ŠÌç*—WÞ›?rò\v•bó§{ζÂúiûcí‹hyâSèA@²rºç@85…-Õ`ÁûÄæCÎkŠÔ lh Ý1úëéZ¡'¡˜1‚øÞGçûâ;lD.˜ ¨ÓqÈ*¾:"äЉWÙè´Â¬Z0À¬Ôƒ1ií]¯ø7aÓX{…ŽD(°­PIÁ£Ì³f‘·¨vˆ¦ZF:N…|úVFNlÑù0«É:Ï‚•¥3Ïf{•»ÚªÌ°Sa¯Z.¨Òõ„±¯`6Ã61×-ÙòÝ(Ù¿Ûr%Kã’cºr¦(‚Ö\UR#Â-r(!M¥8Ìlt-ÙÅŽcxŠðÆ®M×ízNSè©…ÃÁ$¿ù[V¤.‹Ì“i,?a-{æèy´2‹CˆÃøfŽÚˆýJqO~õ$¬K@‚¦Þ´K²(} 9ô¦"2¬=ªž ^vöܬ¢´NÀx֙âÇ×:ùyixç9õéFÕÙ·NþÝØÓ»±¦3ØÒ®}ÂW@¡kƒBŒ)8žEŠÐ ?~‹hòý*/‚›àQ„iÁÈE“Ø+tⓦœÍOc×t‹%‰ÃÄ 9òSíš^0ž)iµi–˜ðVÐÌíV7›h­‰@„¶jÙ2¸`܈dû•˜ŽPŒFm$ÊÀyŒñ åé31W²´Ú/k$¨Ö|»¨(®/qóa r4 ZHM c%¦F¹3G Å ·/qŽ:Ê%ÂÆhPýx¢"¨wÄ™‹ ÔÅöñž³âÑÕ6Ž€´C±Âü‘é,§0ÑŸ›¢€X@ ‹Ñö^—(¯"ã" [SS#IT% Û ÇS+Å‘£å^+óT±Ž|Y[BÅaÚê Ë&CEòbH»~©xΞòéÈæ±F‘“qàAFQ­+îE×I±¿ŽQa Ïq!S’8Î5ïˆSäÛºú©y±©bSBNÏ`ÇÄ÷×o<&æ†Ñe—®|K­Ìx Õ*E¾K î7”sjÖ\ÖÝà’¤ì0Ѓ-`a(¿Çä+Ø¡¹È°à¦9ÈQ$‡Âêã£#ÒŠþÆtc³¸”yÌ7sL’3·ËÀ†´“ZÂØÅ-ô¼Ôñ °ÐPMO 7#¹Þ­·½Bb ˆÒžC y4É“4çÊ&›.â°í¥¥éô ©áQàti.ö %o¿6`¾ Št@ΑÙKìG…Fh b¤| ‡n²dÁ¨62ƒ,Òjí ©ñUYChäÊ…y\!œuz¹ ¢¾Mâbqc •BïÅôÇšÛЕؘ‹‘‰šˆÛLHÑ¯Ž»UVgrj =|s ×öcsÈVaÏ.¯IÈuœÏXð†‚ Ø9…( ¨ðø‰yWÕqcKBÀFu”êIÓúÆ`î Š^b;$ëÜ Æä²=Ñ)µ#lš‡Ÿ˜ O<I :FzbÒ”ŠólžSG•Êâ ±“l!“—lú˜"zQ¹p“$•þ cú6I¦ùãBsB¦xB™¡%yuôɶŽÝ`É÷ v^ÐS´AuzgŠwP¾Œ6âÅ3Šœj†©Œ5FÆcåðK?)F\r|¦¯,c²c T q¸ŒI Fà œó¨‘álâYà%j„´®‡Ò,bë»ä€d2º È–ÀG^ ÄŒ ‡Â)Ü3ÚPª5ÿ½'—3lƆ¦>Ìbô¼ Ð9²8HÐ~†öò4î+)£ÌcS©³b¿BZêà¾nÒ¡A¿û`:fƇëØûì”§#-Õ‘ð°:°{p†IÁ"Òç1Þy¥Ýs4 ßùÑ“/ƒ`MøU§`¶±ŽßQVzØÙ|éêÑOUgéj©±‚Wý¼B«ªPƒQ8þk…„²“ãߨÄ'aTȬa¬3Á ˆ“g³ê˜º¥´¯j0ÑK€gš*܇+ÚXŽº«#&OÌò":eÇd:Ù”[B”³X™öM7(ò³lœìã.§CÁ0œBP#0çU¬®‡þHY©áõvè^ѽÂtvÆ@Ê–¸;ûÉ[ÑÃjc©rj;æ[pœ„8oëlïBl˜ô›°Ã’÷D± -d©ê‡µ•ÞGŒðaí!|! 4çþ¢v2Ìem\†7:¬üÔQ+ćÖ\/e!EÏd0úû2[Ç›V窱eÆnX# »Û&â׃6›D¼l9{¯ö_9ÛíÖ綸çì• [ýÓŨ< ”"¢×À™©AÁ¢žì¸"DZ» K8±ÐJ8ÀqD$-R"‰P.É#‹Ãã€8y0ñrëšx茬mƊœё*i¸†°ÕAœûÇ”qkf^çA#)Y!+aå¡çé‹ [jˆèd" vVVB(=4 °‰ºi\&1#³RS2møg¡Rœm5ø{¨æ`ÚÓd£@kEÖE0óÐ*…†«Á¨â,@3OŽ6N×g ãgdð¢évx寮®°ü¹’0ßññ}àÓŠs¢+@½^ßd¸u R"ê®j¬àâ1QlHIü@¸&KV-çWä-­ø%vÒkC¯ÀÀ#–1Réþ"À‡dõ¢uëпG­Ã£‚Z+§˜ ©×k áÛG;ÎD-j‘ H€ì‹U·|½'^(‘!ìlê&öy$YA„iCJ%ÂìrÎÀ£í8e'³dœÒR˜"ä¬Î¼‚Á1A¼ô#, i\ŸðÍ—=–^óªbMbÔꑸÄ$$K€ò=4ÇÀTe˜®mìâÝ¥ á5 yÆ>EÑâ“3`Â)©p| -Ô-Ç¥%—«vš@œ€4‰·;IÊJÌ4 {+ÉÃ6ÑÛýÊ0‡7ðÈÖŠÝß`)Y¹&+§ì'ldò8gnØçÓê’J•FTÙVwšÁì>je„³M'v“KȼFÕ–ªÆÿ>~\W5Åû3®ÇôGª-ÝTp9³ úÆ-¾nŽò£ktˆW¸uyæ/^‡“6ˆ¼ÂÉPsEè¤Âç´Ø¨U$<¤0:g $ò£Ñ:Hí ¹f˜£ÇÜ>­“E6çe/+‚_Mnàæð¤ÚºÏS±qÅ‹l¿­øŽd¡Jš2ÃÝ×èL štöt!O¸ûW1FÇë–S¢S€~ª-TÕÌ©Á¸ þÅkšŽuã9§<‰#µRp¬cûKüÌóX©ë-RS±¸Z{Š8Ã6+‰’­Î8Ææ ºxk“—p*­Ì ât-& „,–®Km‡bÍÂÈЬhŠÁc¿ÍLp„ FIˆ0#/íTK9¢‚Ññdâ =êüÚÞ:z‰ò™•圣JG½cäªó ŒŸ\»ŠlØ¢ŠçÝñë&¿qä5ç½ÁÕ„ý¼u9 ¾¨šÉKÜHå—ª6÷å鯇“Ï+`È5¹š>ÄŸ>Ål©çí­vsgóð°sø²½}T©SŠÃ´¨Ü/Ô,¯K¼zÙ}=BÄoLf³O,üFQŠº ÇPBWe ˜Ü]Âó7?yC˜³`˜÷XéÜI2‰Ê©¶í6xCU®äå &H£EVÆå¨’!¨Ð¸ËA»«¥Õ«jI9S¯täv’áˆ’Ú å}-L¨)g¸ÝƘѬ«*vjiªª£Ø²`öY³dÄŽ±\ÃiãžEåÏW0·NÜ0¡Á¶éõƒÖu³DÖ®¥D'8ŒEKž¿ëÜ5ò…ͱTâõdî‡q½ÒÔÓˆ9r5³ž¹|D4b_!t¬@º1æ|Ø<Õ<<” CDˆ#F•ÄEqìÒvažä,V&É3çžT¦ï·<”F´yÉ‹{Iª<[Ö«"RÎ3 ,Aåsø!÷+DL(cÂw6Y0mØ@-ÍÞñ,þFÎ&=ë(oû¥‚veU!Syq›¹=ŒÅj ±UÀD%3xRà8ØZR¿Õ¨:ó©íTµcÚi¹Üšx}ª`8A‚¤ƒF(ZÃHn%øìknNú™c[ÇÞà"<“dšVr¤”þËž„ÚgШìAÕè ŽCËõ`Ãx§<ÌD¸ÄÒ{ϺJ­‹¼§Z> üwÞàº`/«i|³`¥'Á™ý憲V'¿&¯Ó×Èh6µZÙ+¯RÁêS7¬߉y’0†CPôb=®­XqâÂMƒw,»Ûù˾¾k÷àñã‡ô>É¿–—ÿÕx¸ôøájãqcež//=|øø¿–>çDó>S¼A—aLf•»é}rrÿK>÷¾w§Q¸èuѽwÆ×“‹`´RÈ´`²Âû{û­ƒ£ßBɬr³m€™|W¥»fžÚä“èú•ãì¯Ý¤Å0`ŠäL願e@]Ð#N´Ôð+¡½¿f-‰A­ÐbŒÜì“CD§r„ð1Ë}WÙÍ/7‘1uðæP¡™RÀ0NÈ^7SE|õ\_>­ÃR8ü; FÜîb0b C_7÷;/;í­Ö«ý½£ÖîQçÅë̓­‚°¼³ åØžÄ »( `‰¥ZgQàåŠí‘÷t»]6(¥¬ñ_|édwÔÙÓè`‰Ú¯ð\oî­£Jª²¾ßU½È $Wâe@gx?•z›¦4ÆÝéÀ fŠ7‚Œ)Á&æQ‡URä¿}¹‡e1þ2<‹s3Äb%‘CrÜc‹JJÛ©°©§Ø8œ‰‚ï}Ô¢¡%†±¸HKsl±ôjŠYsRúc\ îgzìeŸ—5ëŠKj¾¢*s…¾Áf\kS#‹üÖƒ³¢Q¦Â,W²‡)J¼"‰Fùƒ“¨{ìŸ&ƒ—û§•[Ì,ë®™?‘λayM¡‡:yä±tæ±TL‚²&šxN×Ì&Ê2Èi«Ô³£IÈÁ2Ó÷\¸¢Š¹ÑƒB³nÅxmà9̺¹æŠq[“¼«ó‚†Id4`Dc mIÁîÊ«N-Uýà*éÀ"°= JÔ…kæØärkʾ"k±… õàXñY0ö\Q¡WM+3·¼)ó¯b:¼Nz%§¨e–ÎYÎó³ìÅL×–M½¸å¢’ÈQRÝQo Ìt%‚ïž’¸ž­ Ñ Á² A¢ZÔõÉS hò "Iô)›†ÊWŸ–&f÷: æêx>´œXŸ[aÚЈ!¼‰dÊ r£`0% Èæ]2†‘– ?/«ñMtðoþÌqÿ?bYå—ºÿ7àþÿ(uÿ´ôíþÿ5>ÿ+îÿâöáº" PæéI»|v¸A)ïùÈÿ/j©ßêEÛfÂsw"™ï¢i/:ï(gñ#_L,¥OèQžº’‘™ñ ûa–¾§„ D9/(Ë(*WРb  mØ­HrÚ^éâm® ¤(Xgƒ!:ˆÎ =XX-­/44Œj­M÷ÛI;ÐEÍØ%Ö÷žÆ¢1Ç„bVЧÖ%Y—ÊmþÂUÉ?Uä&¢½ë“ñ’÷#‰ £›` E¹}&‚ê®}f/ò£y…ï|/¡ñ¸öÊ »µå¥¥Ÿ’KÉ¡Þ{áNm}ù6Ž!p @ðh»¦íýGNëys«ÝDXPîì¨çуù‡ÔÓÃXjèa4–$ž {Z »cÆ*|X_®/e5² \§š(¾©×‹Ú6Ö¸>¦[XYªmŽC€m4nÆ#Œ˜˜h£y±ïa+:¶´¬Z"éË(˜xëNlÏE7zŽÌˆgŠ2*«|2qW0cíÁ}Ã^~TÛöÎBL‹ý­ÄýyΛi79÷ë:»+’›Ã0+j W±$à7Æ$Åaâ=¥PVih±¡\g[ §# âæO¬ðË“`‘Ý{ŒAb3›ä¯-§TœoŒÉ?Æu† ÅR ƒSÒÐæ¨õ„k5~ÒµÎQ ت¶´ Õ´ç©Öj+ºÚ“¸šŽ­ª1€û\Ì>žÌÓÃr½A«ðX÷ðÓ<ÕVd–ôùZ^ŠëæÖ[åz´ëÈL­üw&§+ã‹wl „, 0ËG5…d±_NQN™d›þè}0@çšå\c<›#/m|8¡ŸS°QTå¨:Šþ€ ¹2ƒ½†xè¥È)ÄWÊ˼ȱOÝ÷œE^øž¡¸)áPU\QYLΊ†·ãý£Îa“ ¿¼Õ|’šØgFÓ0ža¦¢RBN °` c-cƒVküŸTJ"ê˵ÈÜÑØÆòšãlOCÂL|¬3í#®UŸ}æŸQ`Mu–!¥g¸£và/ª09Î¢Ž¢Æ&ývòÞ˜%0S*¯JDSL_T}·êì´0kº7éÖ-£Út•(Å[S±ƒ‘±³"Ù /0ÑÑ#%&o1©âœ.j.d;ØÚ›-…¥dãrRwÅ©|®­à:7Ú=Î/L6 Lïd œ¤<³×ê¨Ú–€”ª,ìÜØrpÂ!Ëo;\Á‚ÿ¬­xKi7ô—Ъ`U›B;>­sºhÒÊå+3CõUÚ(Wê¡pÖõÊ¥E«X•"©…ÃK¥SÉr•yìJ…»æxµºkZFÝùu¡o:©¥Ñ&¤úT:û”šµ²Kpí ¨Ñõ’句P¬ ö«J"ö»Ä ;f_óÄ%ãB$<´Re|? ¤ <È9ÙUáä‚aÔÆwì#k„É¥â(Ô»ºRýìîµÖbSã z‚>ÛéT¸îþ~è›RDO'AB[EÝ«ŽG¡f§×±q«ŽŠ²g°±¢ÜS¤DÎU„"h&Ý%’²ö®œ§Žê âù5&ÒãR¾¬À“R;s·UÕrExœ›ÛZc,-“ò[–$ßé¶™å’Ðx)&Çx3–ad®ä#}Púè$õVU8«0íý¦>°‰#Èo;æ=§¾^Ä}åÙ}&`5…¥¥öèÓ}¥ŽnEà(¨7Ö±Í ÔÛÞ…Þç8RÒ¤k:2Øpr H1{—SHfåº'& ×£`t=Äó‹ e6’ `0îØŸP@í_í‡V`Ðô°JîèéÁ&ÿÑlîþV2÷0.:øŠ8¥þEw6_íç•írÙæe¯Üöý†ÿàvv_¿Ê+<ލ0ÿAès¸¿ÙlåÆTœÿ Ž˜UxÚ¥Âü ¿nî6óÊ^ö¨,ÿ²¿îlÉ. Ñ›Ž¨~2UtqdÄ è"’¹LØ”Ž FïÔ+Ç„rÐ6!Ȍִ=„X…¤ B²üüU\¶LÐH™ÇqæëàL€êGšD¶ðRBP"’†iØý[4¸,ÖŒ<¼·²|Bìf»Á˜=(ºrƒ+Þð¾ÔE-ùv×=!>–\Ú>yB8 ÓHç$·¹‡jC0šÈšW³­¨Ãº®ÇÁ:9,¬Ý!h¾„µà:Ñ…‹¡… gñÞ5t/Ñ0P‹ÞÞ›d—LêHàšIzK–W¬¬‡És :*“øW««„²UK*+Æ2fŒ6Ÿã?Ô ›Ð_è º'¦ÌÿH8œZ¯JˆÍ¾—“ßeöœL†Û{ïGb·Fwt4}³LXîñ›‰½8<:è(ÛŒÊ:B‰[E»܉Ϟ'$¸ä{Ê-Ÿ#>Þ¾Dl‰—)Â|) •4”êðX™•NFÑÞ}Ñù!Z"¿-(|¼ts̈ðJ@`­ƒÃÍÝ- ‡¬]¹¸¹Ö¥4ó?–’éäJ4Y£zo† ·Kþá`º•uË·®xr²TTîΆÝÝ.(Œß1;z$ÎrʧŒîÕÁŠ> Ô¼Ä0/•r—æŠa¶úñq­qj¥ô(­—l×Àx©ˆÄMîÆå¿«ä”-kIB,5Iä€)Ý%ã ÏmP²ÓJoqIϺzÓ´—OñMY‘ÌjLåL"fÓ(å9"ƒÎ˜d„×Ð(Žf 1†ýç†yp<Óy·$±#0íc•›ü9õ¶ðªTe²UuÅ—­HF”äMä°’™®ù­Qž©"ïE•›Äà¨*ñoÐ/ë}ÃüàòÌÞZ8(F¤,·‚ Ý¿¥ËKz|3øÚŸ<ýÿüóÊ}–>n°ÿ_~øx5¡ÿo÷¾×ê@í`‹1>ŽK©„¢uú…4®;áï/¼I0ž¬­íñã'ï1<À¿.Åxѽçâ:ÝõZ à`¬¤)!6rÆî9›âs¤"Äý¦ñò¢ ˆ ÚŽÕP™qyåw['É~{¢¥ï$Ý@~Px@#_ç¤èlµ¶Û»-ç)’ÞgèËFnUQ| %‘Ь ÍðÚY@f¿ýÜ , *bfX&]¬×£°»hµïŸ×/êtQ÷»d@öA$ÛN¹½ÛÜy>÷T­‚½÷|àó¶]Šª†nvXN6£RÀÆ­´›sù©´ñŒY™ô/å šŽ(dÉâïŠÃ*¯Máî®vNzì;^>é=¨,ºëTm'óa¡ñPþÂ2?ûˆ}±A–ôDÌ<†ß£è±Q¹(›\„w2.Ø]à“ËÛ4SZÛ‹ªS|ð´(«’·(Öb@½¿ ((á†óZx¶Î„PÈ0fiŸð‡±-/9õº³pª›‹ˆî ôô˜‹³ò?°œ'õ““âIÄps¥VuaÑUQ&>È_ì ƒsH—@Ÿ×å ͬ= ô{ )"”©&©6S¹Çªq N× Fœ¯zÁný¹«[Æ÷ThFâ8R°…?Z](¾ÇzϯS †=u¾ÇEãz'g‹qòú›Þ%àc2€U`Ù{¹®ø¡ø®Nñµ4@“ó8T¤_˜ŒÎÄGq æßf¿¬%°«yÞ»2)jª+Üž òÓI8¥Ÿxƒ~«TÔÉR ò¡úwã~üäÑ ý×MÂgG˜lø“ú˜MÿW—iúÿøÑãoö_ãƒöHü£ múEÿB¹µV#" d6hQ¦f°¥MŠ9€“i(‚ _ÚC:Ê¥%X!Fhô&×rU¦òì ÇAÉ#—3¨HY§QóŒ¸çÇfSu§‡ýÚAo ŸeU2œû¸$¯Ÿ‰ûÎsúnHQѺÀW%š(ÎÏs,Rpx ¥1Ööv² ±‘D(äññT£`v1NGH¡®ÉœîW"‘=ïlz~N–}MÃVbФH¥‰gƒ8•]Gâ˜rtKÖRªe¨ZIlp‰Ä.ç>€0k#1‚Á ¸$Q/74&ÉqØ.¢6 ÜØ2õ‰ÞùcüyÇ:e·ÊZJù¸n¸½ÆîæÊÓ[VFiQ7®NËscõÇþ¯Qi®øOXM»_„Š¿·x­t!ŠÁ¸’@,ÎC šž.­_qi]€Y½åâqËæt܇2v T$î‹ÙÐ]éY'ªéFÅÉpœ˜µZ. 3ñЦÅ£uÍxÉtM5Á*{gÝžßMV9 1¼xù’K’˜ ^âl (k6Ò PÇö²èÀ+¡JKJJðŠ%KÐe ­*(¢2×£FUïÅ•Hî ¦ìÕÏëÎX‰ å°©q˜^8–ÔK•.²žä ¨ÂLcåÛ$ŽÃà½ß£,›CÏ[/ÒÙÎ0L!®]¤ÓCÕÞ«\¤G¦\´0S2‚ú5Kœ<:A4a¡Í:ÝÔðÈn4ðÛT£ÃÁ_a~ú‹Zy~€0³ßˆè/ºÞzó»~eÔ.Ð:n, Ðh<˜FðUX0ø&·…cà¿ÚùÄYrNu@CÎ׬,Š™fܯ $@IÕSóþ…(Bã¨C¿Z…%ûÙ4ã¯Lâ!N#ýHÏ)ñŠÖ-ãY^y\Ëô£Œ>e}3ŸfÏìO/zœ)¨ï¯#¯éEn·^fûJÜo_cyÖÚ{ã~ÔVêL4âRz3âÓdi¢íJÅ( Û—ÀcjÍžd=µUëæò®'ÖÏj·¬’hÎ|¯Ú¬¤á!.g4âÀ±ž† »NÜøŒ‚0 {ÎIö ÍÂÆeá•0Š(€Ë_'ý°bUI”2–* šRè #1”(0z0M˜Zl1 D—°aDok#% s ‰Ù›ÍYÛ«›‹ß[Ou"ål‰¡¤‘†«ŽÙxnAF4”˜ï­e1ç-El°0#Q$n({Ál0°!o2gu?s¯{hOE@K Rqŧ£8‡M…¥áf bw-t¤æÒ ‹ ãhcãÙ¾oÞ$è2Ë 1RAH~¥”›làS@­²‹!„Ë®9û/+@¯Gø¶;v‘3|ï„CûÆ•ÁuñõKx ¸ Ô‚~„9rÅ*àv/Â?‹š} 3„{Ι}ž± ¥20¥œÈÿÃÕI·†rÙÈë¬ãÝ„Àm!‚±_ŽˆñÀª\Á…kÓ¦†¶‘⫳žh™ lÏ{ÎÍñ¯©ß}W1tý¸)÷´c3÷Ó9'sHÄ^YÚÁpºlAý>xÇ™ôD )%§f¨¹½³ùâp£X;/öÔ÷½¥b¡ÙÜ(.|h6×6ºÝÅBûð~Ú¸£sx|2ÂQ\{ÑɈh¨üÓYh6ZË©½ÐýYÃ$4S惰`u_„Zçpmu¤½Šól±ç½_M Ç\ñH¥—Ã^\š+:·ó‚ Ç –p¿8µ_®‹™/(ÁMö«QP `·Þè|rQ›‚ì¢bCRsCÐì"¤´œÝ Ý$³_E.€pö»¡¡!GÌSjX… ¹ÂÜnèÔÆnW uv)ÎíýîÌíÕ”%~ GN15°žÐ"Œr–ÚüÝ5Œ«æ”{=w4ñ»ysŠçÝË æk©ÍSP† guyyΞ6éÆbnº×µ3ÔÂä”à¥&`ë¶ÚXžYL¤³°˜ì‚Æz×H_„á){#Ø(ù«-dñ”öÞ$t¦ ’実)é"‰´Æi…IN-Rš¤üHkI Ä(ºŠDG ˰‚̧Y 1íE4)WФÎ*š£V/’b¤‘ýa«à#žÓ%E—Znd4ˆ˜âØOYO:@};é‚ã ò¯è94(’ëÆ[ïj: ú*ÞŠ”þ°.Vó©MJ­pÜq\q‘¾R@èS§)û ŒÆ×bÇ%ÎON0F9fîÐXѨäð~â#„÷Ë›7ÔVlö×¥Ñ)@ÉIÈ,’oŒ£O [¹#ß;Ëψ SläWºk "À1ØWg«9ðûòqZh’¯ê]cªªWêºÂ3èÞáÆdæ÷Øÿ˜x”ö½ßõ)Á;Í),g (9÷ GÜœqñÃ4ä+ì}†ËKH:†®žç -ÝpÍy;-)L áç£máLÂ9z»URy$Ôv—1éñÛ×¥ Õg‘«øñŒ1#e“(Ïœš¦0]*…Æ9'À9ù‹±)é•÷Á½p€wŠ7Â+e÷6t¥3ô!ž8!eú•Ö.)Ò'lõµ•o(j?”%Ýî4¤ _Q,6vÏÐ:–tUuçïˆSïCR6 |·ª“¹xz´eï]àøØ(µ¨À ² Ž23Ô¼¢ H`X§öÏYðˆEš ?$ôpˆ|dí=õjUü±an|]\<™±Õ'é½^tzêì8&¨:ÏÌ_ ¹ÀŽ×úÖãpD«óijCUî>²Z¿Õ1£¨»Š‹µ`"qܬ–n<{j¨Ê ÝÂ;T¼¾h u5û±ƒ’âx[à=^ùhûYøÄ.ÌØÿ VÐðr w+6‚Ü™êÛýÂj1/ ýAGDKâ‚\ÈQÀGäUôR¸ðNÛæPÇ}6Lˆ·†ZN¶æXrÊÌ SÄÆzƒ§§p9Û* ›!åÁ¾óÇcr{Ñ™Bñi²Ë½­9O¬¬[Ÿsü19dš{E[Áwþ",¾ú”>y¯±/q‡å¬DÈ Â bâv3 ¥h‘H¨ò &àd|èmœ@ 2dÃ@öÖ»ÃAz-âUÍ\ =ïz’ߺá¤Ìâî2ñäd H..B)Þ Ç¨ž ½sÔ6RšG†$|ʱ!TNð»Cmvw…Õ¬Ö27éŸar›bnù1¼Ò?‘|-±0PDD©e˜©GOIŠ‘BXõ¡äÅë­‹‚\Å©‰.‚Kh Ӣۉd! êÀ-øÍžË¢ñØ9¹¯E|p‰@F a=“ï¬yN@ýêë'’B³‰MrûH¿•ï¤cŸ«äÔ(¹¢Æ£XVD'›˜€–Ð&‹[ÏÄ;CLú–—”ïdKJ”ªW9-+Uåì*½)ë?åP2€àÑ×ÕB üóll˜¢óSõqûeÃBÆ›ÛBÞÆb¼€gjCÀ‚œ[ãµÜðÛ}ç¼ÛïsãâÅØ¦ì “µ ®cc—žqå¯í-›îÁ.‰-‰[ƒKÌ3©y\Wúð›IÛäÉÓ{ñ9wÃÜÀ ÷Œ <€^‡‘XÿѾâµÒG£nîætŽÝ¼ÅVêNxÁâ¥ÀݘâTá©ÜàSiÀýÝ7á6=þÛvʘ^<-K‚kb‰*M.¤¢ÖŠ V¾ù"JV´ñ¢HµXø‚r&åV [@N%H Æm±°¶—ä®T²¯„€²îlÆ8<¶3¢DäŒW9<–S‰QjLghéØÅÜ—ža쩺&¨++œ,ê+Ä—qêt¼Aâb"–Gwc,EêJ´Å¼¸k%–F©û¦ŽŠÇk¢%RBpœªJÙ7ÉÄf)àV ‹1‘Ifô[æ?.¶Œ$és‹D/§$‹‚î²ÉalGhBt¬”°‡Œ[B‚hd]©Ÿ¢»“€–õ‚æ—ñBÒ£§XOnµ3·û.ÂðFµ¦Ñ .5ªÊßÕÐsqc%«õ@Kj¨È‡kÍÌÑHç¡G^C^ >z«Ié9\¢X¶æG54{üÄ&ºá§·0膉H3òî, ‡¹m߸$y0”Lú`ð1Hõe¼ý”5 Êi–Žáݛ͜ÎjNÉoS@ódŸib2®arŠÑSØÝ3Œ¤•û7ջ鎖DCŸÍXF¡7AámJ݈lò*~Žý½©¥Ü­½õ˜>½¥Ï¸P‰¦VïÖÔèM-}ÒJ}æ–>ãBÍŸJæD8d f0è⃠r`ãˆxLKImáØ¸Èôm˜Årç¢1¸b¬ÀIŽËä'ÓÈl6,ª†ìß5R¢=Ž2o+~ÖÖR%Fƒå‡ÌfÊö™([hk±fnÄí×ÁÚ¹ežã =Õ`L ‚D #©ÈÚÔ(ifÝÆØÔô&¸;š p,‹‹›³àOËQµŸä~^´¼˜.EÊZã¿RArñšÒÅšhÛÏÞvmü“Ç·ÏsÙI#cWÕ•JªÅŠce¨cn½ü¼çìáýUbU<ޤ:‹/s¼(u©¥dÕüË”^§ÎÀܲdN­·!Q/Àf6CoÈbÙÚ¿àQ4ìÖèçtRC_3ò¡®QXzÑ[EJ¡ŠÆÂ‹ªQ¯6Û»G­ÝÍÝfËá=w¶÷XVؘñ)Ž$¯FNE¢Éxð½ÈŠŽ¡Âø#CYUI‚ª² 1ïæÐ0°B«Só€Ë8P-·Êi}ÙØ"Ý fnîÞb¥`ÏÏ€å’ÔáP³;%ýeÏñ­y$󣱑æWçz [f%âT‰ˆ(œ‚R¸˜xå¶¹PTܮఱØD©¯¡‡|"âýЃYa!ŠŠ-ÓŠßë6”ÆÍõ*;ðÏðe0n[mâÚö{PÍ)_úÑ…?® ÛÔ,/»YÊ^º×*˜ ƒ­¢\8æ8QóËÍæ?Ú»/TL”I0¶¡f®ÀlH¤p1âø79ÌmWN’"Ù!å^½ÚqÊõ1bõÒâä2(Ò» †%Ð:»µÍL’¼ûðVôÊeuF»”=[t [~…RQqdUÕ´Ú£qdL®&™31ùþQôûÊÚÿV]ly“X§¬BIµïÉy峤ŒÝ®ÊÙ£ÓUÍêÀNS_sWœÄjô¦qœhì„RÑXIh§[’~ÓšRÍë\¬qȹ%úS“Ããäþ— ;eÿ T{‹ãÞhHʵ6‚æ–!#»üXS1ËÕ¸BDåFìÇ![§+Ä 3{sQµWï:Ùy¸1œ‹êœ‡ïé™$¯ò½E·]ƒ‡AW•/½3¼>ø Ô€z‰dóó;l³Œú·s {¼ £à8fv #§ !IwzÐFVþÔœxºI4%Ìä¡m,°&^$Ë/˜O3ò`T®EæSè)ÀêÓ®'¯»ã—”îçnéio¹™kɶ2ÑI&<4$ ¦u)`’ îÖDtòÕ»LÄΛ S2ΗžÔm¦”È·Yà‚eç¥Û$ìd§‰ÞšEj>Ê=0æsgØà`:Ree¶Ð†Ä¤ÍDž$Ú¢0ëlqeíd|µ ?ÁÈ©˜$²–÷ £Q$úd» tsžÊ—XXLX)]œDXMœ'ùöêimáB äŸ2&‚RëÌ)³?‰Èú!›.Qà)èÆ"–’']æ„QÐÞ™Jâø€çz>‡Êâfçªõ¨r>Ù>šãú‘ ³ϯ® ³;Ÿ «5¼¦CæÒfcb8ë/·O›$:(&S Š" i°«»]X[ÆC±…L½[GI³ÎÊæ˜ñÅaZ%eW8^Œ©‡Â¢¸Î¯þ¨‡±)¢kØÈ!‰./\„H#Ÿû9I¨DâÙX~sŸ*#ÓƒÄ Pà9 QE@ʆvmhíÄù3F¢83¯$b„Ç4íßpiЊºPà«”š!žc|#5>A’ 4#!/,¥`?ñ3eOãG¨,Âw†U^ø“—Ó3<)bm]•5#¾¼ØÂaB&ÿ½7@í`zÁàš‡÷J°b˜äïú8B¡Ûa|ô€±Axœv·’ñ¡{Žô™±˜+)ä‰qñ™´3;*§8¾?ÊɲƒÇ•éK]ÓŸÄ%ïrº6¦‡½‰ŠY¡k`bùðæ„aHê~†quN¿Ê(S\_éG‚¥Íbf §hÜiéG}r5QüÉS‰ŠÉ"ñ×Y>ƾ!t1u]@ür/•ôʉ摕âsã©1[ðŽ+‡PM•'…Ö›$„H+%Éaqh'^̾‚ÑîE/æ»{G&/ÆÕq{‚¨‘‘ÄÄnÝéÀÕ¹7Ëj[»„¹ñJ]!®šÐN~ÒºôNÚ+~‹}IK> hØN[’aÇ»Œáô€_B0ïÒÙQ„uÐMÐÑ ŽJ¥ÂÉ…=VX¸àXì=‹<ðî;¸V{ÆøUÌ s{ í5Yu­L•yqr0äï®ó*‹(]Q¥®“š©‰'Jê£&ÍyfëUÚ##‡o®1ž~†bó5¢^åB¯5®­v<`ãæØ¦¡ºçðñ¡Q]þ¨,ÌTгªðt(0·ÑèŸ*ä…ŽÊ!ݪ)S¨þÙqÀ5!, èQ(·ˆ¬Ý$4B }ÂH6’9¯Wq:%8¹“XìÁ tàUУP°„8ý.SS—BQúÄ#³8 ñ´wá]):«ŽÙÒUcye•‚ÉjÎJ£^rÇø×Ô‡ ¶Â½Ò@p׳:±†l¥²1*KØÌƲ×xòälµÍà¦#±åØOœÎžk“ÔÊWŽÖ&‰£;ÌXÚÁZ(NºYb6K¦$‚¥_/8Ǭ djFª7ܪ¾ZÑ@m¤b´B@'º˜Mgöp‰™¡ˆH/"m#¨ÛŒfÁºÝIï©–é¾&Œ b*€ðnc„‚¡ëÝÕ{F hÊYƒHÏU|_%í&žqZ+âTUjea{Ìyb$µ2.®J¼ ;ˆãXC¡æ{¼SìWÀnd¤s“©sXØÕèÂý°`%DÒ{AA¨y”fŒ2{}ëšùÔ¤¶÷l¤úÔ]R­3ÏC!à™¹=u' kŠRˆ2ugðjUMáÖ3t™SP”ôôpû.u–Œ˜WOÚQH¤Gtâ° &^—JÆX¢€}iŸf‹‹™H&^—/Ä@Ó0ïxä˜uë{ù[0¥~PZƒ¬ž™²™“©Rrhâ¨Ôzp-.ÀŠ ÊZR®æÈ‡uБE]O%S”®†¢³Z®ÅU¦H&£=KâÃ(ÅjuNÑøŒ\oÌÞs~d ïc„°k C‹:ÈäZŸBî”ÑK|0è)ú‰J’kÙ$$òX¸íÁµd$D‡IgUÚ=| @Åm/ø"~uj¯W¬ç©êºæàÚ ³uÂ7p¿â Ë—$-ÚwAÅw‰8nAÛ)ï6­ O GßZÝ‚Á;œÜw¶ÉšZ€CÃbhÇÖݯ¾g¡;b™,äy¸§ç gá85ç¹ñÑ«Š}ã„n³íü38‹Æ@¡3†±K(…Ub q¤„ýNÌ 1©ÒÕxXlL U%xB o„Š5Ù6°ëܘÊ}ª2 ³I¤©™Ãü6:-ad`qS;zíìPþZÛjýR„n¼¾•æD@šDo"z\5PŸÕMMLjh0>Öu9_ðï{hµ*°¬|ÕÍÈYÄœµ© ùÔt² f§6”,YS5Ç]Œ°ˆOu_Yzëò]³ ’ÌIÕ±$¼G¶îÇáw¨‡²Rô:úB?+ˆ;Ò-ÊÓÌÉ̤æ÷®œº½j·mH/ᦚºƒÃ’èhþ⼉ U†éŠùB›¸ØµAO<Þ¹†ÈSp“F½ÆV6¹nš W˜ŽJ,ÎF+ŸÂ9‹½å$¦dÙAO–{ɘ¸¢<ƒ{–g]bÃkeÃÈöUÔ^´˜³ý×ꨓî’yD}¸ DXÎ3%&”“P?Ÿ¢üˆ€'driïyc¬¢lºjhmM©…J‡«‹bš=௉°Ëø››¢§ÑôÜ u9Rú÷ÿÀí2xžpè´;òÁµ^è3óeo³lšqŠø6cìënp l¨ëDZ¢ørKú ºÑk^w~EÍboÅÄ‹±ÉƧrˆ…PöT¶¬YU[¦m!Д€­*˜ñf*!L8¾¤ÛEåªSü4ÆÈÔj+—žß#]ÖÄŽUF¾VpgÄ\£!í‘Þ‘Fˆ¶§¸\™4ÔÒ8ò'”;›“U‚_`6`+¶ÿÂáÐïÙÌu~›žÁÝéºbœ:(ul 6+–¶Ÿ?Zy¾ºôèû’Ä1×DçÁ¡GÃß,úÞ,ÃÒ–æXÇT¯.Z1án¸hÚ —¢ó‘p-Sm 'S3¦ñÖoí­ 5à[§’€ÎAýÃþ¸ ÖÏÿ ?g,\W.pçcd:å¶¿àãJ Ïœ7kyMý ©nòkS—΂oTK(®\Ð~t2máô–VÕþ¹šw*ÆË€ ("!¤hvÍlG9ž¢Ö.ØŠÃTÎ-„!q•ô‰˜U »ÉDÚ1ƒŒ±PüG…Ÿ+V=AÈÑØŸx‚Ò) ½¶^äœÀüp}¶ó‰¦|Ä-¯ê ½ðÜ Î#{ÅÌ)§Ú°A–ë,Ó0r28Oµì@G\•“…€\«fHMKz,Çg0%ÍQWíÙ®EŒgXµ‰œ"Áä¯c8&e„rúè>'R¶Sþ q¥½×ë „]´º€é–zÍé`!ßêex+CõCꥮÒ[™+Ê }ä°F/±Â„3Gz¸(‘ñ0”e¬!hbà£?Ä%»­NÂk¹ýôÑä:¿tCÑ ã§=šˆe¿‘ë­4‡ý†Αî]ÔÀT5¼f™f}¦M)Úg ~½pIÖ¯vœ65( ²†iNfClT,t®¤)‡ëlY”7x!xïc=àYÎé.Ö¨£Ì)”8Y­BcKkð?V-‹š´²lÝ2[AC³L3ãñô vÑ0vAvf(QПÀzuçUΚ-'é@ ̇QGçSÌ(2ñH.Ûù‰ ‹r}õQ;%ä܃E¸!1ôÕtE®Ú<í6Øóˆôñµµçˆ(>qáåQ2(ã0àmH9œô&¬;ݵpÍEe«ðëAcÍ…¾W©o” é±fˆ¦ùv_X[Jc±ýªqÄýkhÛžžŒ%èþáÝ'§kocÖ´]’¡=šÝ¶Ì)JÒ6mõÅÕlŽs8²¬:оŕì›…?¤IÆ9ÚÈŽ.y”¡†0Å-œy4Ò`† D.GMe{çzt&²B‹Î6#3`“”°ƒ<$¤@ØÇ}å{3c±MÒG ç ¬‚ •3›½õÂ`\ãĺ¢†êí§7ëkÓK²*PæŠØ’`Ò:ò’Ñ1{ç²~Ì4{Di‰$ƒQlÂõøDj3Úô© \E^¥„<9Zªƒ‹ŠE¢å/¸J(¾a•T»›ûm6LÃ@5ŒY "Gž½\®¶ùPkdZà]HKqMDPê†Åö:h[£'6ak  Þ¶ì•Yªcõ ¤Àæã´È+Æ"ãTš3%°#¤¬Uª²áÌ©èln²üص1-\ Y˜H†¡Nsa{Š\c†¯ðœJe(,½ašÊM©[>©,Äm`Ùäöºð €p=$Á˜Åaãé%„ÀóàU ³ŠÇ‚üØ<ôhˆ309д”±.þ‰¨¸uL€º–â1n dCibT]¸v¹éº³g$/eq·BQ.ÉVdÊÊîÆÌuJ Á Ëhìq8±‹xoDbšI—T7@ˆµ]ïù-~™ðhÁ:Ãíf ÑɆ**» Ý>ß —1¶á(ÓŒ?} ýòW"s% °GJÿbfÚHÕ"÷ÅryóÃRõáÇŠñoë°–Ásà]UùÆ©D‚ 6 ö a\³–b€rêù{ö!‹î¢´ ƒE½—Zìã"¸üé9~ÃŒ ÷ÆòÃ?S[{G{/«¼cd´­‚s”:5š2’LCEx¥÷¯Ð¦€§v4 GÎÆ‡Õl‡@íüì”ÉmQA¥Q0¢°@=åÖú1®G§! Ïò–€! xTÊë÷ádp9ʬI’ÆHi½`;Egrß)¶ -€Ê^ãç•+ÂjZ¢mž–D¯HµÛ3ÝϲŸ÷Ë>Äù¿Ø@ $€*wÏΙ³Ûî_“bfDàÈ8?y*eúÃÝAÁë&kóú5æ¼SW±¿ûïÂT ƒxý–Ç_Ì= ú^…˜(5–lkù¤D zƒA¹¸{VΞÓ¤W Àíë[!Üòsa#¾»þ66h±é4#ïÕeÉq)“o~þU~âæAY"‚‚¦boàÆÔZ °ü0VíOu—oU"Á×h»ZÂ’ø-+~Œ²pÝ NΗÿ¥¼2ù@)"îå× *‚+æÝžã] $5êÛIcƒ›T5üôPqC=€7±MØ“Q¿ÿøÃ¨ F"3ÒÚ¡õ•iM~¦AÞ©OÏÑ“öG-ç§T º¨µêÝõ‡À=©µ¢köz +€ËÏÝèžKª~Ã!—>%Ôô]Y¹[iå:*¢ýÕç–§DšuENgmñºjfÈf vX Õ)Z`,äOà%ÑKš"¨°(_,(j‘‘Ÿ?a=ô.MÏ~p/æêO`'å— ò„Æå•œeÕÀHÀÇ÷Ê“C6.18·—PÛÝ”>'Ÿ…ÒKgãHÂFRýH¯^R¯ á4M¥Ô•jFz÷ÁÚÖ'`}½¹Eþã1U¶~Þªù Åf-Õýƒù1ŒëÃ5|û¤üŸÝºÒdàâ ?·ë¾Øƒ/žQ»O8e´²ú`\¨ú;a"þHŸ„¿‘e†Þ|„φ`‘¡Z^úŠãÕ›ï¯_áŒ=yŠ‹…8jâ^ü™Æ'×oN)T’öóͲn·òCôÕü$¯ä1ã–,¬WrõU­>ìÀ©ÈÞbu_Sp•Ñ6ØL뜦NPsùvǵÞm‹aˆØÅiI·ý½tèK ŒI(׿SŸ”ÉpbŠ#û÷–€/ä@x#wÄá|ûÝÍÃÏpì3ö-r?ÔEO¢ ƒéT¡øòæYy5ŸÈëÉä£ü”ðŸÿüT:$舎ßUÁÔÀZ‚Ú+`õ_T£ß½Pôá÷z½4\ÚñÂV7A_ ò’’¯]Ë]€ ‡?Ò{~=»/¿YýÛŸþr"~þò—oÕW¾B,ËÄÉ5ªªT­Û‰3ÏêßöÿøæÍéé_ä.í‡<¼É 7B…Ö‰øýÃÇï¿WÉÉD‡¾” œ¿ùîß~xýÝ_À6Ã?ÿ"ƒ*¯ œ!ùYHúµr0°ûïþ2°þƒ¹ÃS† ù³ îÃê‘üF™º¸Û Ò©\QñL Ÿm‚=”[äÂí;y]w°ði˜²ÒÛŸ†Â^§Û÷k•ù‰˜ý]Öýn2„DI‡Úëa”ö/ò8ñ^~Ÿª©ãên´«÷FøñÐø>~³ÞìWüóÁoÊv¹lvâ»9;”ßlÏ›õçeûÆð-Áþàö=^í>Qß6÷áÐ9 4ŒûojÖ,`}Ò±»÷`OQh^•l±h÷»Wüùޝ*^AXÇçÝY˜,-¾߃ýFƒ€»asm‘Z÷ ¢Ö cÇ£w¸¸áJ‹§4r{s÷^n¸n0iÓý—pè°÷…Ê/…¤.*ë!˹“;Oí—ôö ?ÞÁé÷§•tÉ8+áÅŸÚÊÊ ¦jQNÊOºcôe‰ô©SÜ®dí­ÚF“/´ܦHDº*F}VÇLi¹Ãób nË|Áø^qEò Ó}Üß\Û7$,,¨¾²‘«˜½ïW“þ^fïQŸsãõ†^̃m|`Ë'¬ä' —.Ðè  Š¬ÂJSê‹×-*âÄd¦ƒ']Â’bah¡E0Ú¼ì÷Oý‡¤/¯V¿ù<ôöÞî¡bœÛð$òn•”Ÿæs?ã-2#”ŒØ'd2št {û–rážVì¼oÞ~¯œÊa$ÎK²ƒ'j7ÿÕI¢ø„Mjäßà «Y'|ºaÒeØ1’çÉ„vPí,”Wágùí•Üô `*Öôg‡¯ßÞaˆ€\ á#‚_ðD"7{R´Ž€¿ )ÊC î‘Ù-¸—ÆP•FÈ=þ Ã:ˆÅ?»Z xJ¢m±î-\ëo:A3¤(ƒ¥ÏD¥àéå­´d³ _¿j×;õÁÃ{•”GV Q~éÖ4ÚØe£°b;‰[|H5cÒ"€qÇr’ò°ò¥ÞõaÖm€:ëüsÿFoŠ~cÞ§Ó‡¥·”ÃÕ×Ü“‚ãæ³ á—RäúxK´›çHéýSr­¿X}o\u—†(ú¸+±ì;:mÿxw‹î‡_^¿5¿h¦m qtÔßÖâ4d'çë |Ž„ü—‡õ§ò0ú-–ŸÛeD‹FèF‹Ë— äÂçÚ¥ó `'ÅøÞ€Ó…ž8ÝMcy¢Ñt’öã5¸7°®Â êäÉpÍaÖª€·OeLIÔ–ú#s uy|T\<€ßRŽÎ?ýéOb»y‰zˆ‰®NN0sPþg}›…Êñöž\cZGÀ×_+ptÓ„–`ýõºt ÂEÊõ;”ÿ?À‰ëDßÚ@+U*@Ãnö±ivµ?X dýÍPIûÃ;™7Hì,åAžÊÚ«»08–È:eöèäî{u]fÝÍ¡†wÉ ˆüŽòtÀ¯ïñvòã?*óFIp²[.™ù o*ðæ b¤©ú@Ë%^ôÂÞ\:GðÙ­ØÛ`ã¥!|l†ÀÌ*¦J%ežÖ¿»»»×Qºèx$Ä–¤ƺ>ˆÇ¼®ŠÑ­Ê×pý|‡’/úõžNu¸‘žŠŽ"vy#ô³~éTVHÓýïå¯?á/+¹JOýv´OóÊöö¹‘#&½‹môÝýkøóªÐ]Ic­O7Щo~ÅvõNeâ Ș – ÚƒØ{Th9ÌzÌðŽNnx:—G³o¾SÝZòæów,tŠ•'Ž[u™{ƒ_|¨k±Õùø…5J=±Œ9ìÄÈÓÍÍoÕ¥äµ6Œ×ïD—¤W‚åÄ2~‚wVon„¦Ëg×ï›I1Ýïoî©2±ôâü³wçä8T(YZîdˆ}–m$Ø!³­¶wÝJŒ#ê‚܈©”·ðêù}·m)“DÏŠ´<,Òý§zùÖNgó¶|-ÆvûÓ`~ý¯7oq W½…ÈÖ/òõ©ùúÍܽ~9øþ‚L]4æ›/i:`€mTz–æ¯üòŸæ¿`ý—.WíßÜÔC‡ú/góñ™[ÿe|–þ^ÿå?à¿Oþëà‹ïnßqÿ#TeÚvÉ•>¾7ë«êtÄ×ò ñpc]¶Ÿ>úD`_Bž·ûï C¥‚·µyÓÆÉ,ê*~±¸X~v¯N ËúAR·{‹yþœsÐàRË ³Ê”Ém‚Yx¶'7½·ë+™Ú᫳GïïTͽ³G¤-9øô“ÁÉP”k >‚[¦Á§‰ 1%œ?ŸÐ¿žêg_%¿ý-À`3>‘¿ðç‰lS=S=XýQÈ¿yª míßC\>Z©œ$ê*RüõÙ§Ég«J¡!îÍ=~Ç{ÿãí÷2CÐ#˜ÒW|óÕï±-ùi.H–)5OÞ'âŸ*ÁÝà³—g'Óoÿñ›Sû7dx 'C±½=ù>ù½*òõd—Ј^è>¥&ŸR}¼Ç°øÝ÷š“'¿9kÜ÷®ÖðÌdI@oÅ¿Nqh?’¢'6ðîÑK(Y§3Z};øóŸ²±Søø×mªðé7XSFõó«¯TŸOhè—˜¢ä«¯Ëù\oÚºYðWðã«ÇšÖÿþŽšyÌgÛÛìa=i×Íé–äý³ýæãÍ çrÏÙ«ãg`öª0¼ûc䨙ÙßcùT>»Ø¬/¦Æ¢?ÕŪŒæ>q3‘äÈJ¬'? \©§f)wÍâôýOà'J½O´=99y y0±Îó-Ę?VQ.29¹eu„Á:yÿñ݉,1HµÚ=88=b øŸ½oýûÿ>ÿEÎfñ¿©ç¿t˜¦½óß8ù{ýÏÿˆÿBç?\bÌ,±oef©Ð9ÓÌBW×t‰Œ7|‚˜N@û@…j jª«o%—“×øèäD?¤»aéa½QÙ{ƒÜ'”ÄL&¦—!uêºá÷Tü{µx´`«ÙWå£EùŠ-âj1‡ÇùPïë’ǃ¯„m[øøÓTýÇ@kg·¿6ñËÁ§gƒ3ó»Á?Q%¼¼ýÝàå?©,(¿ütó»o~÷é#]°6ÎÞù v:Ðä#ÊLüŠè|?B"¯€ˆøûß²/OÔ7·¶÷úõÃÇë·¯p·ñ{8&cÞ§=J¿?•]G Ð#˜ì7_É#ø\VgƒÕöîíõ‡Û{]êý‹÷Pz~¥1[€m½ÄÁã-äãOõˆÙþéÎÙê0Wü矮?üpÇÓ““Á[ñ¯·p8y¯^j%Äü[úù_¾|ñ¥½“‡ÕÏŸA?K>Ÿž|†Ï'7¦ëPƒ“X¦U(‡Á„‰þ"¿«ýYVuíd¹K”' ¾ýEÐ2‚þMgðv>§0îî1ù£uæÌC7‚$f‡ô/ê³-•ÄZ‹&n_P7äw¯^ ÍyÜçïãþô=¾Wé2à¢Z'(qª¥óîÓN.ÕûÇz^-)“Ç¥ÿªòì½vøà(Yã̲úÊ7ZDçñ#c—õCb_É]•¼Åg”¿ƒp¶ZúV·½ºIé[°i÷‡þ?Û¢ÿºÿŽ\ÿ¡ø×_ÝF¼þ÷YšŒ†ÎúŸžåIú÷õÿ?à¿ÿäk>ÆÑ žm}¹¦º'K¨üêÓ‡ož~ ¯å]ð·ru©n?|þèW ‘…\ àGOÑz=yr–YÓ{*¶ê¡ ÿôéàß0$âÃÝÏz‡púGü›†Çþòèѧ°,‹MÇË­,kØ´§ë뇿ýòËÙÍTΆ–žØí ,=Ѳ¸6œ7NÊ…•n•ÁÉF~Š58©ïÀ 4»! þ ±ÌbÕ=i¥áߨùâöA}_}óAôaw·Å‰zòRU]ÜÁç@\]w €ý®žœŠ¶ (õäÓW§õÇ·oåäü[ísÈ E Ìî®·ô!Ó“³Ï‡Oÿ8Uü4iˆUkss÷ö7²ÿbTo1nòéfî½#_Ýü|"-Ç*gôäâË3Ý©ú38’Nä°k©pÂãßøý{± ??a‚ɶ[ó+¿Ñlš<}»þù‘Z "8²o‹¢æ4sò^tß ! ?—:™CXOoÍ3Þ™ˆ},cùS{Üj+&Ú¤th¥Ü`>ÅsÈÈ›ÿÅ–ÈÿWÿYÿ)=ûßÜÆ¡û_qÚïßÿ‡_ÿÿþ‹ÞÿþxÓËýßÕ:¸G B;d´¹J³/(9ŸÌéªVwßÓøßq¬f-ÂÇ'PŸá±Œ†ø§O ”çÆt¸yO¹]ñ%£TÙÇ{õõ8~ôª>TÕÉ­ä•1œ÷tkêÛÌþÓcúñ¦+qIMÐðÔÁKL öäæO_'°^äð#ÉýM:~üôsjüó­ -ºÜÝÍ¢Ì] ŸQ@ðŽ ‡ù06¡º£>¢Á¯8±¦}»ª¾u7a1ãb– Z·ßc¤¦ŒuU¼¤¯@Õ÷ãÔ66p&?pÁïßOå¡‚«¤,عu)M,&¤²vÅ;e8Û©ãUQ í®ÉÖ|³žŽÁ€mfp¡— >…§é {Ò•ÿ$«YH`y¹)áê^º"þU¶…÷„]»Iצ<àü­ÿÑ­6ŠLþ—r"(ý£ŸA’§¡§_˜EG>…qèëM£¬ >{øð‹ž)(w ~L镪$þ•>è¶§P&–¬ˆÙJhFÅ¿³ æ5_žj‰º¦m^÷Æ&9ÿ˜dYR”¦—]E×1g=Ïú ”|õÌ}þï9÷¹;÷¹9÷£_3÷ë¯>}‚ª18YªÁ‹ývY¡óKºÏÌÇâ‡üëBZ\a•¾yÿø³§q&‚áúࢿ̚ɸt$8·C–ñ)C£Ò‘ؼ«y¯ç@ŒDŒLß]; Kyòò›7§ßþãÓO¿¡LÓþñ࿊‘º~Ü»¿‡×¼úRZˆÛÔ]ÿt™:ÞeñßÝÆWqùhƒqÅî°àEE¯£H²—B&dÕ1Àábž!eqL»û>>dÄš÷ŸD„ƇEhüÿ&ÿ»‹Ð¸'BcW„¦¥¡ÓõÓM‰·8oþ~üŸý_äü·Å3ÿ'ÀCç¿¡'þ7Oþ~þûø/zÿ«ëâ™HUÂï÷T]›„÷` ûOwW{÷Êö¼âŸ‡¯gMpy^Ñ÷¢Xv ~èÒû‡+Ò>F‡hØ®ý{þþÝWß +\ NªÇj¢~ÿ/zOîs´¸}ÿñOæR8Ÿ’üêJ2˜b„ïa%òÒ©?ÜÜÛʤ$£¥0|îý;-õ Æ——\µMðªÓæ¶ß·[»±9ÄCý¢/h!q±š÷ÏaC)í^ÈŒAôaú5R{{ýÝ,c(Kj ð³ÀwênƒÜß‹õï{Y·Lfí‡z“ô| õ ±à§ÁÉb@ƒ“ËÞ¼ûø>ƒyõþˆ[÷ד§¸žþþüd0ûpý¶©½%½‚Q¨EŸ«"œ2ù&ý»ÆqòÈ~Šä.øf»/¾ú=õúäRs¨2Ü`ðiWˆî›ûß|óRE}û™ cÝ´sÿ_|ÞݳãFãÜÌöÍKO]ÁŽWðéçYäÙêÓÏŸœþæé÷ß|ñ/ÿòM‚?Óo¾øíŸýþ‘šœ¸r~ "c$KÊ]ÿRâøØ¦ïÈß¿“Ó¢§c7ØÎw¯ª«Õöjùï33{f¬(„ìóÉçÓÏ“³ ÿvö§/¾ø-ÌÇ|û›§ƒÀï/¾Ißdƒor˜ /~îÐ#ÄSHö0¼Ýà‹#àŸ¼Ü³oŸ>YU¼þs±}Š˜ß¤AÔÇŸJA{Œ¯þRâêúÃÏ·ï]ã£tÿyÒ¥TA¯Hü¿Jü†¬O¬z&IÞ½‚T÷wð/àϒŸ<üD üVt÷Xú’Λ_ÞÞ~'ÿìˆ*lOé«'/_ Á¹>ùWvòß$BDÔDa@ fƒx%Sh½<Öµÿ&?’‘ùW–ša ðcõ±ŠéóøSsùú‚þ8ùTµxz÷XŽEëÅï ò©8ÀÁý7z°QKa)yü©¢×©“#g/qJ¾g'õ·¿üæ Sg´Ú [õÙ{¹ÿùÛAè%S¹‚ïO^AŠÞ?¿‚o¾Ÿ>ùôÏÿò4 ùê»ûûW˜ àϯnÞ¿ù3¶lÊ?¿š-Ú‚-^µu½åPS²XðW†,J^í7‚¢ÏÙŒë77p¿@åÜV ™±«sR´öc¼"SQ[xC‡ÂùiO¶{߉¸sü/§¿ùŠ€öÂnHucÝ©Ó8Þ½þɰӃÆ>šq>6”3&£Ãê”lí"uA-P ’£pôO(þ‡"€¬Ù´ÀKP½û£ñß1÷Îs0 ø è$<’gýÏÞ÷ÓGÿþ¦èŸƒñ?™8úõâ’¿Çÿü‡ü÷+Î|Õbá9éu:ÃmBQ:¿‘–1ûkuày0NÇôÁ?½yûÖ{^Ä@72(;þåÉcZ®?<Ö‹µþ·Xªõ¿åBý×|L¬õ„(Áʯ©>¥„"šzvwûÞ‰7ž'õ².¶DVv¹-'} :þçÉc"~Îq¡HfŸÒ&]@`ÉL†#¶ÙßA±üLô÷˜ðQ¶ þ€½Vùå7ªÜÉ@¿<ùÓdôô›åíëwP‰jpq{­Û‡onᄀÀ“ß(ÂÎÞþf¹ÿüÍ7¢©o F@|ÿWÍC‡Ä¿Å/u)Þ餯kîDΓ ÑÙ*åÂþRç¿~ûŽuV‹v?ˆJ¿€ÿ0ŽèÕ@e2’—7ÿ(Î%°á»-±çúÖóç“o¶ÿøô³§1øïñnð)DœadÞËäÛ§-¿è¿þbtñ&ÝßA³s»Ág^t#Íš*õÑßWbˆöÜü÷;Ø8C´Äމß혠0‹ö#[í:Þ<ñ„oYÊ a\OOwn߉}ÅÙ•0Ïp(Úì³[µÏ>|ö™šNMÙ°Û%ÏipðH2ùÄd´ÐÛð úwb>jý-™aO}€mÓèµ²Üräb%cÔÙw°Ãøú:ryãgûËšíܯþ/´ÿS·U§èpºÿâojã€ÿÿíúÿ‡éð¿ ÿÆýïÿãû¿#ù_ܾ¹]Þ~ø€‰°Oþô«®„âûÿQž%™»ÿÏÄ©àïûÿÿ€ÿ>X¬û×Ó3ñ?ÁáGŸ  fü—˜±éä,9ÉÎÄ£ÿñáßt›ý?þïÏ¡¨Ü©xC÷Û*·žþ{q÷ƒÌˆ i îñ#ìÁÇë77ð¥9-¤¤D‰\ö§ÛS™ìó‘a¶ƒP¤L4%C ?¼Cl¬±ð2¾¾¾y/kîÝ ~|xøéþË/¾øùçŸO?*Q¾ûðÈõêîûWë¿¶þÄèz©S…Š‘_ƒ…W½¹{Ý垉· ¿´¾ÿâáCžÔa‚_é~5{ûËO?Bý `PA‰Pï Ö [•ÁL]•üQ–ÿpûÝG °ÃŒb#Ã}?íhwxo±T­™MÎ{²Œ˜u£¯7o¾ºº¹×‘‚”Jç ‹¦L+ø /RTÖ8êL—sU~#òËO²v &ºüS_¸Édá2 ܾƒÏÕU¦˜0,ÅÒÑûì^"wÁœPJêÃäGÃÖ»Ê 4¡Ô)%Úó{™wR•þêrÓÊ<*OñO?Éš#TÍXFŸˆ؃üBFï¾—åSeOe #5,,@ñÉ`¥ ,`ö}ÈÔ÷¸ƒøóW¾W¤2ɨ*/…Yá@!ˆˆ. –|¸Å\]½ 9/÷Ÿ+ýÃ,Áïésä^Õ[”ëת'ræ{ðr¾¸Ì³!óD뉃„÷˜VîÖT’rUêþæÝ-¤M~?xòÙo?{zJ„{;L“ Ý oeÆ]•ÛePŒªþ¨$?ÞüI˜’×¢óªÜ™d\S6[Ön1;Õ€a °¬ú‹§Üw%LÌÙKõ¸àÛÝ nv-þ 2¥îܽ¡=­‘9;€÷w&Û ¯U× ÖãSâ¦Ht¼üÀ ˜rÔîUQÈøI“)KÆ|" $íùE†«|Õjr°×$š®‹NÌšôOï…˜ÿîsH¹•7µD<ÜA”6æ•ÖZë?ëÒT·ª”¦6GyóBcBÃOTK?ªøn»ëTß+Ú÷ÏɪȌ§øO1ùn¯pÎA ë8N6vôã-nwÔÄTY­ v­íÁw¢k¦>Ã:±gÏŸL»È5èþ‡-<`o°?¾ƒŽƒ!>¸ªL¿p– ,§ ¥°°Fù™¥X`?Þ¶eyÀÿôæU¨0;M?ä§gð#ù|0„ å¿RiN„ázç‚U—¢Ý‡·7°¿ï%!¨ Š„ë; |°¸þ±á·Íõû×?lîîþõ»±Þ}&ìMGrsŽÅ͇»_äLÏo¡~–ð„÷¥™ßRì4 ¾Ô¦½ýéæý¾¯Ör2X_ß e[€®=i—ëÅS¬1úáî_e²pý%µ±¤ŠIÐïÇ(ÎàIzv6A3·uvï´ÓI¨ðb=¼Ã‚%¿|q÷êñDçËM—õaôWô!IžÂTb½pX—´D~“ 6tã²üÓÉÉïà_Õi¯Í$üþÕN Q¬ìý3V4–%3®eY^ª0ü¹,¹# ”.[{ƒgÙ~ !ÔÎéµ¼ê÷fõZícÞ`žA=|Yí㇛›U‘Gð7È€*ãÅdæè{LëOéÑésR¤EýîÝÚð© ›X÷ñúõë²B„"¨ÕúÁ¨ë…!?âžUÚwTkí0×…Û÷ z°…‚é²´eêWèB†(ôrÙ£!7|»r y…‰ïn~¹S[r%îÆÐu9&¬`¤?õ¸þ–A•¾(A‰Êým¾î²0~ò7ü‡h/üåÿæ“2ù—w·÷÷XäW§§ÉY-þû­Z‘=GÆÉoÅ»t:ød°àõn°f¾ÚÍù¶ÙÂÛ)¾ˆ·›f6w_g%¼Î8"o·'»9[ ¶Ílï8¾+Á½½álÇ7Öëa¯‡µ»ýz/HŠ +Ïù*(tÓ=ˆ1’kå~³¸2ß#…qGÁ`H (“uÛ¬vÍj6¨Ú}±à¶š‰Ÿ_ïÛÛ5íj¥Â 1M÷H¼:c¯Îo×|Çä›Ál?lvl¶Ì®ÚÈb€l €%V. ÿÏá'Q¬°Œ ŠÉh*š?°ÍÙrP ÖÍùFŽÞàûB¿ßpdá• ˜žeBrÄOöÁù°§Ø;G€€hÓÍ™â^>¼|ä§Áe³› ¤f±ØÂ’eƒ‰Ÿ âÛýZ µÜ4ë]_W!+²¯7éÙ‰N$Ñ"Lr‚$'•ç!(``zlá ¾om ϧøØù’Ö€o«v'æÑd‰M-Ùbá¼-ð-ز]íX³ÚØv°äË‚oà}‰ï§v;U˷ؘ±Q*DaºA/áø:­WUsÑlåÛÛÎá0diQsÍG” ñ"=$–‰úQPn—œm÷!±ú]ŠàgГµá¦d‹îe.^2èá@O*x™á°•þ-*>hßÙ®…žg8>T9­#$Þå¼+m¯–ë]»ƒF…qâBƒ] @0ô4l½Þ´Ï›¥°¢ vEyÖ½ ÒaÄ´›Ÿx>ã’ËCìÖ08ô ‚­s„¢T,gðÈãû>ÌAñ™oFˆ3ZK†hÄ ;BäQî®Ô¡Æ6!È=ihÔ#å¡þŒùíèûrÞDAÕMl«ªÙåp_λ&à*ÙˆÑ;“¼æøºîë²E¤F(Þ‡rÈAIÒqâò­x7ô•=íãÑÎühÖð]L”Èqšc Ý\°˜‰‚9N#sìÃB™‹²7ΞŽB9»ÒíÎ=Šå¸/–‹—c”Êñô˜¸- tŽ'GŽÃjE·Më /yÅA£Ç(œc4×û²ä¼Â§hpÍ#XGMqýpž r=väÚ!gÏ2ÊøØ‘q‡¼…1AaŸ8® ºj Q¼'g@Õ¢4O2µ4sµPNPb'©Þè(”W(a%¶  N\TpE”µÉØì3µ”³ÉÈî „R6 H™Ñ;W¡'(c“€ŒYÝí¡¢ŒM —ƒÔnÁÓ9A œ0§kÄ‹…²2ÅÅ]nóŒo*Å¢î^¶b'Ѭ²|Ò0MûÈÎNQ¦‰— ó=-p/ÕlÊ…Øô¶6 éáFnmvbk ÏQ¼XJÛ\z ¢À*Žû‰-ßÀÎOpï²´ÛìA¼ÙŸÝºÝ”¨Ùp Ïp‹%Ï/@6AÛÐ3Õýfµ» Uà䉩ûûU%X¿á ¦ºPà g¦ú÷p´ôJÈ‰Ø ‚$Ì6í~-ÙP਋ÔÙ}:°ˆJV ½„6¨hE'ê"¡Î s¶¤¨iÅÈØ:ÁS`À¸*qE_ìÄèe‰zS2b¢j²f¥Ø9¶|ÙT˜P0Kmµ/w€‚úRNµ<ƒƒúR–úHäB^§l/ñ<ëíe»_…ÒP%Im†W(Õ™ùJ*-¼Ä­ì¹jñ=NlÕ[*M4`LŽèÛUcUá„W ÀY0+œáª°úaî•]xœÝйý2Q¬>àDWíˆ} 8Ë(-±†q¹¬jÊXª+4yh LcÙæÈ,~`9Ô²ÈC~`]´0P©¹³ÝCà¨)å¨ì< â…-+GõçÎëiÎY#8šž{ñœæ\T_>>âà`mH8Š5wz°QQܹ³^kDC%àÎj­r õ‚}vxM5Gµà, '†# o½9ª¯ŽiÊå<ª/u³¦ÄÖ¨5h…x!ÍaÕ°Y Üç‹E³–Ζu¡–öìrƒD¨™å–‘¦Kœ†gƒ¹®Ð7ѡݦ=‡eµFù¯ ޵.3Á«Uï¼TPêÒãÎùõ´PÆëÊÓ#8G „΃(ŠTm-çæ¥ªÎz¿f(]uÞ÷7ýjJ(lõ¨×cˆh¤ëq 1 ˜¡ã.;Óî÷’7‹f5ƒ7S|Ó¹ÞW _‘ßzP/Ú‰øœiz‘"­”v®7•<â‚€zŸ„£ÇdŒ“%¯šý²ç¿ªµb =EèIÝóbZà Á‹¼›Å_ ãm¦@<æÃ‹7X"be&0z ±BÄÒØ1˜1aŸsvqu„ÜB¯kô#üä&>ºÆèþ 7ïé6úÆèÿ‰´ëCLtx¬˜v³k›­ØÎ…Ýôâeˆ—jض‹¦ÚoÕ¦ØÒõ 5±œ˜.L"ªº¨—p±#~ yÜ4[¼éR«@¢ à‚¬…Ýs@+}¥GßîÅÏ„ìÀKqÕØ~‹æO͈ڧƸoã~WóÄ<Æíò÷ÝøÒ86q‹:Æ-êå\Ì&Xé’]ð“mSᩜ-[± ȵIà]²Ø)‰Ñ!2r÷©‘±G66ŠnU%¶ÚmÚÂyà jÚCg7¥GpìΞã†tŒR‡ß0™!$=ÜŠörW Ü€Žqêi¡KïI’¶îY ”YÜ|zZ!¡éç=A7&Ëok%·ÁI #£dòÚÛp·nY}‘¸¿ÅÖ½’St*ò¯Ãá=BuN§^ÉMF61§Á RÐ@ ^À6].THSÖŒ6Ñg†¾NT’îÁN–yÈÍ ÍœÌxê#ì.ºs©x.ŽÑ»…›;ˆà¡†><ˆÓ}•Aò âq”Ùµkaq6+Žˆª£ fÑîvíÒ@®™Óª‹‹Ô)^PnØêòT^ÈjO¦½oè¼;St­Nѵê±$JùTK9Û”æI\sqŠr>íäí£w‹Â>u¾+M:„¢?5Ü©]#ÞÞ LõÂV,Ä› Õ˜Jïñt¬;Ni2p/¾qkÒ¨ñÜ# úºí[ð$žPÓ3Ó¨®Ë§ ç–á…4âº2ÎpBYÞCîCâHÙ´ßsy†‚Û,ᤃãýfÓ^ôVTâÙJmüÚ6ù[éÑ, å`ýˆ‚cÉ¡ïÀê ZÆþvŠÔE´?¬ú« ’ÂUpÐJH¯ü«é)M'rhµXýïÐ=9PDSÆøßÞAEøéÔ¼«qöبD#X&áÖ/ðõ™ñÚvéNñ¼0޾´Ÿ•»Í¦‹¡)ž¦xæ PwŸÝÁâlTz9Ùme;9ìQ-—Ç#DÒµô’wέvÕŠÀã¸*0E{¹kŒÍë`ε´Lˆ¯L@IІĉÀ#€ØÜóm"ÎB•Ûp>‚hC*í^¹lf3±™©ùªÄ! I¨:‹ûu¼ÒŽeÐ](ÔÛªs»øÁp³<ÅÍ2HWwdÖ| Œ7ÎSÜ8Ç=ïѱ =GÃ.RiZcÇjèXÑg@ñ_LÔ‹¾ä£OmZSf×3±g¼Ðº×-Fè9›¢WÒqøXŠw“)Zœf%º Ñ£r¸ZìÛÝ K„,<¤K °B@°ëÁ5+cÞ¥–(GÐÊ5fZÃf'–¡·ަë…P ÜLFȆˆ”‡‘¼MáP1êLÌžX©ñúGÝÕ1Œ;c™žã9˜3b1 Ä2v¾U»DG¹àʆo…€•òŽ–aPà,s£,Æ=Ð~ÂÆÒáhÝêÉQˆm1„Ža´ ×þý^Åaì¸ù¾Þ‹7ÚåÅŠöQqÒÆÎ=F¿É6NêØt†;µ…»Ûî*‚a8 Ã7¶Ç 6šMÎÖûÜn20¦…aÜÌ¡†|Ø 6œß0ÍF¾0Œ¥9¾]œ!rþ+›¥=Ã3*Ã3ê¯l\mŠ_Ùd’!;à0¸ÂÜq[wpƈ3 5:)ã›O B´s«Èð¸Ë&ãH“‡( ºÁ2v0¨Èî6*£ Ôk׃ˆŠ©ƺ œv¹ÊNÊÊçöˆáY™áYÙn/JÄØg1<=³ 1¶Í²Yˆ]MwïÇðôÌ&UlÔA\ÔßéÙqzGŽgh6©n¾?t–X#!l”Nt©à­9‡/äQ Ñ5"¦yf¼@9c•ƒb‡‡0t\0t\è.ʆ*ê`2¼Ý:k3c º0t$ÍAd~á8Ešt–vŒ–d…¼iÞÅGCN£N?ÑüYlÕbÛ”ÙÂÔ²›qqP€‹I´¶X¶[ ¥¹G›ò ¡$ìà¨<¨(ÆÅôàà<¨(çEgm¸>ñ_v6ÕécŠxAŸ”Yžqñ_vŸ¦9¯QòË3·;ó|Ñ^>¤S÷èx@QÊËÔ¡é;æjlô£ÙÔ£H(ÍÒ!æ‹‚ïAÐÛÆÊl Š÷à Œ—#«Ÿ2àµ=“®<ƒ¸å¹ìäÙäÝïÊ^÷ dÍm¬ˆ]öâçíöú2‰±Ç¬ì‰³Û ¥¹,ã-:jŽɬì}à6碡ü—\;FU„¸|‹ö¹5¨ Ú @U¼U}¨j £H †þR†þRýŠâ<:G:G-éçþ¼Ùî¶òaNõñßâK°þ¾–Á,Ñ#4äaèÞ¶ [a¹/Ì' <í~œÑÏ„®7íºÅ¯ÝåñžÃ†?bÛÞÅ‚wÏUƒ˜mÔ° bD-ÓösAX¹ìçü·ø—è‡óBÈ÷v¿©Áû`½È;.ÚÅ~é>,Úòü,˜ý*5_y›Ë; â☰Lüy),ŒüS Þ.[Á3*q˜ØÎÃI‘½Ü’ÏaÁ-íDÂcjs?.í|µ1éCèÀb˜öv—mÿkO9—1Ñz‚°d‚²í¼YDÇi}º1Õ0ƒã³yJ1_ŽÁŸ¾›o¸0¢èÌV2=Ô1øBñ«%J‚OÁ(ö|c/SÚ¡0Béöë5ßX   2…+Zsî/Ì2'Ñ&K8!:š¶Ç,MÿÖ|¼¥+j|'æ•ûï†6…ÛM;Ž…h‹E#”Ç =߯%À8€»·*nLöD~+ŸìZÌy&£‰:³¡ýRàÁ°ðu¸—pº¶òwÅÖ@²Dy µ5+¹ï`%¨›U³»ÂwqA¼Vw ÷M’6xW[¤œv´àIÀü0 }÷Zy¦à`5íP¸ øÆ|³{ atدäCXâUŒ©õ­3¾ìsQ¨ÿ™µgpø&m¿hq®Å^B>.~Ûí+$¾©U ÙbèÕfo®áWa`û “ûÉC€w[ŸïajF¬“øI úyÎË \{™éFìgW%í…ì‘ìe\‘ë „$£[ÖxAÎår'¤O§k†&³n°n¥`±$ ¡B~Õ§nîÁÅÕiU.ö8ºÐÁ͙Ę ©·çv‚/â(³’~ÆÀqÜžûîkH¬¯¦=—ð^F„ã9 ¦.Ãn¹Á æ‚ìWú]á¾3š%e³2^ A€'ß±½ºlKøª7èʽŒP°Âô¡ÖÍR @âØ´ÏŒ‘‚kµ»«õé?ƒý³DÞ¸"Èô·½ kÑ_Ñ\G6—f °ÊöĽ‘Ãr»h×øýN–šðJÚ/„)Â7À¾ßôldðA™ñàWþVðаð/ù¶ÂmÿLl‚V;o3uo_ÙE/ï—õ‚?«_©ŽZ >¼÷eÔtv–lìšzß­.æúcdáÄWð¥V ÀÈ#­ž²6ç$Qðy´µ‘SûIÏFŽÁ'Çr§"Œß ÞÓ^î“`“åì  røV#k|u·Å¦5£hVp¸Ô)ĬÒcí}ãðÉ ©Fð™†õÍlÑ.ªÐ©7©Æ`×,øF,OMÁÈk_ Ñ V×BÛ²ÕödË7M}¨°}‰¢Æ$x[ÿ¯[ƒíæGÖÿ*¯ïoê»·oþŠê_ê¥Ã³$ÉÝú_â°=þ{ý¯ÿ€ÿ>¬ WÿÊO²³Ïiòe>ù2I³%¬ÿß«6øÛ«ÁtÔ|Så1O°T~—ÕÈ›ª:Wéú9©y g*VOòß+òT¥â‡›÷7²,Ö±29â-6h¾ÇŠNY$ 55^¿¾ûðF–ý‘e% Ø*µõÝÍÛ»Ÿ?—•Þ?‘Ý‘…CoÞ¿†ò¾¶1:äÝÊ]¿ó¤Œ 3Íß¼½}wûþËNSɬ$ó„5s¿ò1¸¥’ÈUDUÿÜã[k– ¾ÅY J™ÈÒRP(ëýg0 ï¸y*+áx‰_ƒ]΂I8H÷Ýõ/ƒ>ÜýüôÔ¨¦‹Qý"ˆ¼‡"jX7o>WuQz-H¶¸›·w¾”e›þt }ü\’’]{¼„lªe •åõÿïÿ¼y¬kÞȹd@Ù¨mųUÙ)*Ú¤ŠÞ“gÿÝýÍÛ?¢ >‚$¥;þ¥-{oîn$,áõo ìËí¿ÊrI²jÏý ÕR2‰}.^¾~ûéþ(Æ#z€÷ÎlÇ[’Šº•¥—Ùi’ *U` uR—bR¥WvžÒ+r´_ý;ÿ÷HÕìzø†ö …¡Á´™ £,lwôîúõ·ïoN>Ü\¿µ_MŸ¬­ôO0¿ûíàŸd)ø—Ò{ñOñúýõ»›ßiåTõn°Ä›°h_‚õûk˜õø«êz{÷²^ïw¿HVj‹§ c#€/ûŠñyG •ëõ5¬ R ±š¨Œ]ªäé`)Äà-ƒmò¬‚v÷?]¿–‹ÎöKŸ%1[½€ù² J'kø q ôv_Ê*i×zBûo>à_ üÍÝôÃxŒ ÒàµçýÝû“ÝǸ}=x+ìÕÇë  òš,óí½RŒ·¿ bŠ)îh¸øƒ'„Ùû×§!eŸ_Ì¡0׺ l@C~ï¹"TM Û˜ªq=ƒ²Jáw£âÿÐèÝ{¬¦ü×oa=ÁMw ÚÓ­ªO$CÁ¥{UrQ–¿‘eþÞÜÞ¿þx/ ”‰ã,êÙyï-¶„CÀòN†}’f`/& „zÀN»;èñµ_,@ø°Æ% +K)õ(ÿ8ØbW‹ŽŒG¢©e·Ä»ØÎâÙÝ»[”ª77?ݼGûz÷^ÕÞ»¿Å‚T¢'‰ÿ}w#l¯XnNOvF‘¾»ŸÐ®Þ¢ìßü Ì5ö÷ÝéÓ£ Ç<]) Mö+µz„<ð¬`7úIìo„À«Å ¸i¡ L]üTÖ,u¥AÓ~}®÷²fIı~¯áµÔÞdÿíƒ>;ƒËI,O5J~‹ßýìšÕ dk8|¹åÀ¥—á €Ë. •—\„«nHpà ¸Á‚p5À n„›Ü„à&A¸9ÀM n„kÜNÀ%YxžŽ=„{pÁA8¨Â¥o$\„[\EpUn pœàx —“GÂÕA¸ê—)8pøàÖGr:Ïß×Gr:ËéàHNÇa9…ÚmC’ÓqXN±Éé8,§{€#9‡åôàHNÇa9½8’ÓqXNŸÉé8,§WGò7Ëß ¨î¦Æ›(W˦ܴT´®$žò0O™tdÎ6î]ãa»Æ=SMfއÍ\ã Š,[¼Æ?6~oPd yØ6ýAU¤GuXøV¡ŠÔ§«ÏÊ–éŠÔ§«OkÏXEšS‡5§µg¬"ͩÚӻìæí(·QË×Yu)Y®¹s¶YÃÊ›œ)éOÎ. K&VŸऄsжa(9¡4Òí¬]ñsÀÎA»«¦*9›JXdÊ>3“3Fxa!(ÝûV]Z˜™ÔSsÇ %l¤*%!%aU¶î$ ±( ³ˆ;lMˆGIä`³5!%añþ¼%ĦäàJ§¥!!%—,=qÄž$Ìž™GâQæÑÌžˆ”x”†y4ëODJlJÃl¢ÒÖ"I‰Oi˜OsϰRbVfÖÜ‘£”8•F^Ö ‘¤Ä¨4̨ƽ”8•Ü%è'&¥W{-C]Ëc¤ØSGÌJÓgàîA=hÄáÌÇáfÆv{¨ô @‰¯Y˜¯Ï<|͈¯Yx@ç®eSB ¯” Û¸f¡D¹½v*B /^ [m3µÃ/â(˦ªã>xBxá½Ö‘or¤$yxç´²§|%IÞ­Üi ‡H’‡÷?+{À—š¥ã°–òeåÀŒ6lÝÂØÖsì)ib1™«@’þåaýk%E’G|¶Î’"†­¤Nx!¿YT“N‡dS£AI†a5ÚØ,%wA2 kÐÆe)ù’aØ ll–Ò±?†²uºFœ†9³õ…!qgæÎÖÒˆøqSní!ˆ1Oä®×±(ânÜ9í‹"Å£Ü#âPÄdïíÅkDŠ8üöŽ"ŒˆE§ÞÞV„q'â·Û÷}ɘñÏí½ 4&>E¦Ål^Ì^Ør;&§Dð,†‘Š0މZ¿R¯SÎ#âX`S'1víB+(1uѽòo4À“Ɉ:q-@®š€i•›„W¹ÒÁ”ÈGœp5äÿ_ÁEE2a­ÊnX= ³ºrçˆÔ³ k´N8‚1©©[aK³-ç—`ü¦g618£@xJ{šixOS[㪠~Ü?RFN‘C[.±ó$±]p»CÐ1†…¡q,ö”,ö4LþÜî|I­„m†ú´g àJƒÓÈÅŪ õ×­#–öGrKJ #‹Íny¤ 'a¤Ô,âÿk4™…;µ¶&‹÷&†laÁg¤À,Ì34»KÐwFÚ±?|;HZ#YX£vv_9ÑŽt…¾@òƒ¡í„K'ˆ"¬{kÒ ²½“ˆãp½mhÔ‹” Ã*|a¦ sF6£W63аe|á¨OA*±üð£ E+"˜]æ(@!‚lÔ .–t“”áTÎjIw9Q5hs uÉ—áÑ-àÈM·4Q@O{ˆK[Å2¼°¬°80Ôí8ÊðŽƒ9ƒ'á¯ÂÂߨ(t±‘To)4 t轃BÌ­ÂÌu=æøÁŸÞiWÄ×*l¼hßGW Iuð~À& Ç@¼¬Â¼ôP7I¥·áõʽä´'ÓŠrø·Ë7oS &v7ëz‡9©säšuæØ#NÈÍéÌN¹=wPH#—™­s´ádÌ"×’Ž3ƒÄÅÈU#˜O«Ÿµö>2ð>d«½ƒEº¹¬^`z Ïv.17r8³P5ñvñB_²¶5émž®Ë«—ø¹ô[Y—~IMüÜàõ,³P“4D.åwÆO"9¬Z7šf‹)]»¥‡¯ÝÔA^6¥Ë·ôðå›Î§¡Ü)ÝÂ¥‘[8îo•vާ9µ:!Ü#<çv«tÚ‹\Ë5¡Vé`¹›ký­ÒÎ3rE×Z¥»º4rW·ñ¶J7viäÆnj•ø¹¹Ûû[%¾F.ðö¡V‰¯‘[<òâ¹ò£Ý³”®òÒÈUÞ΋H<\è]µ³9€#wx¶}NõÞ4t§Î†]iߟ.q/r‘×îX¹¼{aRº¶K#×vîzhÄÈÍÝ—’c6¥»»4rwçFwX+cJ7yiä&Ï )q°‰k‘K½^Fì3Ìm„h‘°Ï^ «aº¦K½×tÖù¬Ã‘“•–/6³wD)Ý¡¥‘;´ÒÅ¡3ÀôàUº¯0—’ìXx£½Ó\Tuú¨5ºEK#·h³E»Û!R»: LÂ'ŽÂE&§“˜o^އnÜÒˆ Oùx.œ&?¸VuÝ!mÉÃÝyæâ²D®×äNëëN¡;Ö,™ô$rã¶q$íˆÜ¸]Ù8Y®#Hq`ž 標m¸ØÕ^­Û$ŒX.ùªàtÁÉ  äšMþ½Œn2éÙö‚²M9gM9زåÉgÄY ØùÕ¢o£üŽ¹Ñ³:ÜØÜgä°ÎXîÖb=§àÓvÕnmBhUKƒ8%DFܹ­1BªƒHàFu°”Ìdexh-Æ»}ä„ÜÞ;8šö2<¸vÉgNG§ê¤#„N:øaÈ“uüè†)lÑâjל34ÍšVB–Hä'À’Hi¶ÒKnò¬  9È3é¼óÂV|!éj}’#€&a•N>/ô Õá1†UGA’(“ äN)ñtj™‡  (ÉlÁ‚ çl½FØ‚`‹ ì‚-+„%©.ÂR½Ü`E€a)^! ‰{–Úç`ŽÈ­Ÿa5T % É•Ÿ•gaãd‰lÙͼH’Â2,…Ûf†RHîþ¬ KáŽÁøÉ`–AíÌÎèR +Ã2¸žã¸H˰–’D° ‹ è@’–aD °$eX=æ0I˰‹Ê}dIÜãû,.ö²¿$öYTì+„%aϢŽŠA^ã<‹Êºš4ë,*Ö¨DäRγ¨Xƒ$$ÕYTª%«$;‹Jö9r;‹ 6ÃHNé<‹Š5_,Iu•j¾X’å,*Ë`8’â,*Åk˜bòrçyT†ù`Iˆó¨ó-À’çQ!ÞaHˆó¨ƒ‚’¿<Ï£"Ìk€%Σ" ®‚œ¼êyáÝûK"œGE¸Dy'Ç{žGex+»ARœâR‚“ çQž³M¥>ÏSå<*ÊW|ƒÓMœG…yÛÖ;ÝÉt—i%‘Σ"}…=!™Î£2}ÓBqëù(*§ê™SÌz>ŠŠßÛ0 à(nÛ]S724§`õ|•—E³Û-¸.è«ç£¨$èvld’‹Q”ÉE3#âó(¾¼Rk&ñpåË9œîsr'çã(cÖ˜Ø2޲¥nÀ•Spz>ŽóåżÙm˜2Ž2E!ôoK)o® @¬GYµ?XâÌ8Ê™©štLÜG¹cz^›ÝV‚1qgåxÊó 1geŽ:8çä³Î'Ñ‘¨Wu /;rr\ç“èx ¸iYÈmO¢ƒášƒfœâ«óitXb‡$Ñök¸;D’¿é¡­•}Ç’“8ŸFEQ#ªay¿›“8ŸÆ÷G„]ñ­Ã hrõæÓ¨$¾ð¡;§Qvž3*±se'¡ê´ÍÝ„c§qâÜžæäÍY|SͶóóFmå(œ:gQ®òUœäqÍY€¯ôÝ™@–nò¥æ,Ê˵WÈiš³(3Yq>gp|”rŠæ,¾UÝzÆG|dQ>î<ÒCÑÙ9‹rPpŽa”¬èq¯ˆr¯Ãq¸OQ×yåäÜ#±q²8ÀI¨ˆ‡[¾‚8YÚòyZ#FQFjܾ‚ÄÔ‭E È켈ò±¹Q-ˆ‡E”‡Z°”†(/m*$êlÑ–sÔDÊ>”—Ñ‚6t*Î(§TBy=µPÚD¡äyÝàë\ïr¥¢Èñ¼ŒnÞÉZP[´‹/£Ûr¢¶hg^Æý!svζß(&”õÛ¯ &¦É¬Å!à®5†YFÀY xÖ,˜8*ó‡€!Žl˜ vƒå倉ß2D:ü v%ŒtIäGïAØÀN vƒÝµKr"û‹|§ ó¡ô‡€ˆøf$R2uqxÑ\"÷*‚®bÐÏådüÉäE!à'¹&Ø:{Ž2”“‰‘éŒCÀÍ1¤xöá8*ÉÏ ”~{8Ž òlÎ*€&IG%Yè"L¼ÇQQ^Ê’,£² ¡C wŽ£¢¼‚/h†”‡j8ŽÊ2^N )(~8Ž óN3 ó8*Ì¥$LÒ<ŽJóZNIó8*ÍÏÔ4“8£â¼Án0£Â¼•„I˜ÇQa¾à8Í$Íã¨4ï¤RQZ¬á$*Îì¥èN¢ò\S(kÖp•ç+Õ ’çITž×Í%¬”fk8‰Êó¹ì4Éó$*Ï-Â’ k''cBX“£°d§„4= é\6Å‹……[ËR}昜UÅQXKÙVIXåQX¸Ù,Õ×ÉYU…%ƒ? i-›ª «>ŽÇ¸¤•Œ”‹§\¸!-i?N»pgZ2Ò.~œvídI»øqڵǦH¹øqʵV³AêÅS¯s…FúÅÓ/¹-)?NÁ¾–‘‚ñãLnlKF*ÆS±R¡‘Žñãt¬”##ãÇéîyKF:ÆÓ±Rb‘Žñãt¬T<#-ãÇiÙs90Ò2~œ–É}qY–ÕÇinË‚´¬>NËæˆDJV§d¸e. R²ú8%»D$R²ú8%“_ŽÕÇéî¦Ë‚T¬>NÅêHÁêãì yEúU§_|ÑÈÆHÁêãL%?‘[ˆ‚Ô¬>NÍ*gA¢_'úx~( ’üú8É77‡É}œü/XѰ…ÂæêÆ]üã`5Lú&SH ð”ð¦Ìî2 èœÐ¹~ 4ÝڈЩhÚ¢YñoBx‡ëÉäMFv9Å=œ™¦ò ²$´pNšÊ3HNhKYƒLˆ…‡ëQ†*Kü‹¤I#$[¾k’Øx¸Ä‘ŒÛ1rw $âæájG61%!ž.zäë9±ôpù#™WK#S#9Óx_”d|À"æFò¨Õ}QJ‰·‡ë!©)J¬äP›{š"ž.‡dJmJÌ<\ ©‹LÐÄÅHZµ¹+´)1/’VmnÄ5v$残ds=%¶®ŽäË”›ðŒI©vnfÄÄ¿Hµó>#2â_¤ìѹÇ|dÄÀHÙ£…§9b`v0å³F3sÅ DâfææÂ×abffæ"h2âhæèÒfHN<ÌÃ<\ö*'>æa>.û›ó0WžÖˆ‘lm+OkÄÆH¶•‡ 91/’´mdBN,<\'©Ën¨ÙA<\0©C6mÏøy¸|’gõ[#åEúØÔù!q7RUim‹ß8©Õ±î Ä8{¸®’…FŒ”ÕØôåhHÔWrÑls0$¶F*-m<’8"n.¶dŽsDlŒTëØöÇ9"þE’U𥧤ð™í7#˜ÌÚP}Ä×Hé·ã}"ÄåH}¦g҈ˑM;ϤkcÅE<¬k#ešvA#3&.ÕÔ­Ý™ø«îÛ1Œ‰¿‘¢M½:¸617Rø|2ŒcbêøÈ¢[=Ë8&þŽÃü½0šâí8ÌÛ‹¾HLˆµ“0k/ͤ$’ø©’ri›Î q1R¤é²¿9'‘rö}í˜ó"¹X/=SAl‹TAyîix5 óê¹glįÉáâ`Fktãça~½pÅðˆiÓ0Ó^ôç„nbx$+þ Å€kYÒË™{nëîkîCSÉçÓÓPwý)…û‰9LÀ¼4Ü(zZ§„:¡^ùP 5â–¡º–ÚyŸ‚ÎÙ¢F*€_xÖMOE5,ðPq잟[–Ç–([@‰”ëè é„GŠ=±¾ÐÐeT|2¾SÑã¡› )Åz&Û´¼tÛÀÙÁÜâ2nt…ÀYØvø)ØC![ÂÖppÈ='?T˜òS°XAV†,Ï"Oêæl’kžÙß!ÓD’³ÇUïÏ!ùÐyqP: 4}äçÅAIèÍ™#_7U”êË>y«yqЯe–Ø©FeúÃ…x©BÒwÀ™ .‰Áe˜Á~ Äå’¸\¬ËS—’X]ôcÔ¥$~—}™u)‰é‘úY‡{%q½¢=-ÄßáÁê:!þ’†Ã `O]©Ö£˜’ê$±$##š½QLE5Íݽ֣˜‚Ú­Y37¢ÉÅÔÓn×&@Ê9Š)§§jâGĺQL5= |2У°ö¶ï°ø? óßÛ ›ÌDš 89¼ì‹ߞܮû'h%D+9’V׫­”h¥¿º_Èi?ÕŒ¨f¿º‡ª9QÍu_A(üD‡Dtø«»&:"¢£_ÝSCnü´ÇD{ü«;|ö$$¥G7í¶Gn ä&ÇŸú”¦!‘?ê4ê#';v¼_!@‰…ôçhC˜°ìâ_ãÃÐ,Bjy´o#LXvö¯ñ—h–!m?Ö¦+ûúW¸f$« 9Öe¦+»úWx$yÈ2ýJïP˜¼ìñ_ïw P®CfïWú£ÂäeÇÿzO—Ÿò”Vþ4ºò{ü®užÒºŸF×}“ G‰Vý4ºê‡¼5~š´æ§Ñ5?äÂñÓ¤?®ø¿ŽŸ$­÷it½8{ü$iµO£«}Üä§Lk}]ëãn!?åIH*ð[õDœÖùé±>ÆiHÀðƒùˆÉNëà Ða!]9Ò·&+»÷ë½¥ŠEHô¢†ÉÊŽþz¿l€bÒêãüµaª²Ÿ¿Ú X…,ÅqŽá0UÙÍ_íiä!ëó«<Ðaâ²·­g;@·¶_åñ—þk=é~ºŒVòQt%÷:\ûËh-E×r¯g¡G‹VóQt5»{üTi=E×ó°ÈO•VôQtE:†üDiME×ô ·ÈO”VõQtU?äBòÓ¦u}]×ù•ü´'!)=ÊùÕzZÛÙñnË¥iHär§ùÈÉŽï Pb!ý9Úa&,»ø×8a4‹Zíœ –ýk¾šeHÛu‡éʾþ¾åÉ*dCŽõ9‡éÊ®þnìI²L¿Ò½&/{ü×;ΔëÙû•õ0yÙñ¿ÞUï§\Ð ;>Ö{^‹LݯÇzï{讕GR.rÅÈìLðžÏtÙX×ÅØÆ?ÖÛ}` £øôº8Êq|±aåü ð責8ʯKŸ…ÖØ^kO]qtG6>ª9u1U”!ˆ8ÊzI°8ÊãÚǧòôfû=¨RËýqþ—°Ô—ZêódôðµÌó£ðƒ_ŽÌŽ%¾;ÔXò^Žmìãü=¤óëñ‘Áj$%‰ûøÈ5%¥÷#ŽÊº1-ìG\©¡2Äõà²'‚$èåî‡vE~ú6‰EXq6 [\íšsûB»Êú´B!!Zj^€|©–MmgˆÀÈìKPŠ$KŒ«qo(Gа{âP$®Ž <Ó»" ®Ž‰<ÓöºÒ|Lð•f –àc‚­ÔLs+F'.AvˆWˆxÖ'wTœŽW 8ÉQñWt‰hèÈ¡$À´™·v` ·â„Ž ²d†{sq™˜ Ò5 ¢ELË"'YäGÆ)iqäZÙ‘m’4h‰,ŽC$žQl ÛbÍ0 ªõbÝ6;äðr^k1žI«GA‹]tA7(—ôzdv&(Bæ™Å™zlãëî9°¬×zYŸDŽ#Fl!IE­—õØ É@TRQk1,9ÿèæ´VÇ QceH"GEwy®iq¯ò98øiB•À2ùIc;_Ê”ƒâªZs&sœóÅ|y®^ª*5*Ý+[Í 8 ÆU¹±Ò$ÇïÝUÂFêV- T:˜4‘çËVƒÕ~É7 ]qI$éƒì.[¡vä¾Ï´Þ”PÖªÛý`r‚É=0ÍÒ̰³mžȈ@F~ÁarFc÷8$  Mú@«FNД`¦žÑ˶0O[ êQAP…o¦ç±¹’ JßÕ»+ª¨òòu0߯ª ¯”(÷Ϲ [lí'»›·û­°!vBüžxx©k Z}¡ú×i.7_ðIçBù¿ ø1Á'á €Ÿ|z¾ø)Ágá±ÿŒàóƒðà ‚„¯¾$øÑAøÀW?>?xNð“ƒð À×?=ÿLÀSy\&<Ÿ|BðÅAøÀ§_„_|FðÕAøÀçÏ·?$øú üàIþùaùÿàIþùaùß<É??,ÿ[€'ùç‡åð$ÿü°üïžäŸ–ÿ €'ùç‡åÿàIþùaùð$ÿü°ü_<É??,ÿ/¥¥Êœ–ꫦ›µ‹fç©lúbà 'qðb~ð)Á§qø ^q€Ï>‹Ã«7€’JG©ÚbÓ†q„+¾Ýá G„0Š#¼˜‹Åi‡ãÊø@§^ðvjB“mðåâŒ)aLã TÃðŒàÙø•x*þ$¼‚ðŠx\py`ÜÏøæ1*¨âçì'Š<Ã/ží«æŽ &”:޲¼ÚŠç€’ZäÔbŶsFBŠ‘PŒv"•^äôbÝž·Ï°ÒŒü€flšÝH/òz±]´0³ éE~@/v›¦B RŒü€bìÏqФù¥¨Å”"? s¾AxR‰ü€J´’ žšsÄQµÔÒÎÆzr]”£Iƒ²ÈëòꚤqÄ‚hç4’,Y«;š”ÒDSuŽÓHÞh¼ØXNSp0g8–°5Q? b(4 rã ðô ¸êÓ˜,f$eã¥Õ§1™2évò³rJΘ†ɬ®LÝöRl{ˆ÷cxø Þ„tA~)V¶kß±cQÃÐ'4tù”ö¢©–Œ¾ü´Ç;cË%“µ–§ø+¶”ÉÞʱ~`Þ€ MÈXʤ°~Ðm ‹Ô„ŒžLë}ÁЦNÈjÉì¯~Ø9C+5¥ùFæw7ç;ÜæOi†§‘nÀž0Mñ42Åçl°4ÃÓÈ /Ø~À4ÃÓÈ /Á’Ni‚§‘ ^!$Íï42¿ç¸ ›ÒôN#Ó Ë6Î.Ydn×@’*a—,2¯x.¥ÊÖ%‹Lê¶A±¥bÕ%‹LêŽxQõé’E¦tDiJYdJkM)‹M)Œ¨àsÉ"SºÆÙ§Îe™Ôu†*2—EdVá.“—»“µ°"¼,šá"2Ãí¢¢7P*¥:YiYDæºÜ\­w-ÞŸˆ—Òo·,"3ßuRé ylË"Â… Eœ¼°eá‡ÝE‰GÌ)bòÞMˆœ|ò™–e„O[¶Dù'hYF8UnÚ-øÞ·sŽ8ħò8>1ªŒ0Ê@ã[XöÈY–.±óù²i;WM“Ê£˜4oñˆDβŒ°Éè ¡—Ê㸄›…Š˜TE˜´8gõ˜x‰B¬ª"¬2ÛÁ©¨ˆYÕqÌ«`¯ªãx5c«Yƒ$vUvˆ:Ë*âWá—%QÒÎVıêÇVûжi"¦¢LÛ¶õª½ 8â×(Ê/Dà @ ^¢¼’K@ F¢Œ)Åáöí–X4г¨±ˆE£(‹”ÃÆnpBÓ=‰Nwu “6¡Yž0\š¦xâs Mó;‰ÎoYΚ&w·W/ÐNhV'ÑYÝqËC…> C³;‰ÎîNŽ‚$}•ôÝ¡§4ùÓèäï¶(ãSšýitöwr†¦4ûÓèìËÉŸÒäOã­ iò§ñÉ—òR6%L£  m¶@+÷»øG$ÿ ñE;kJñQ>'ÄHÎ}Q£øˆð"…&ùj  §hÞ½@F€‘2XPæe±À1—ök–{¶Û<'ø°GLÃKÙ.[ð+±qFÓ)ɦ3Rö‘Ag2š¿HG±³ïiö"•ÙÒìE 8² r(nší Þ€GZàÐ\Fª8²+¤IŒ¸õjS’ï[¬ùcÚ÷#uÏ-×µ¥ym$rÃfíJ<ÒVƒœê¡C¬ŠÔr,v5X81,RÃQ9÷çÍÌ,10RÄQÉ¥¬$;ÝŠÉ^ ohÇ8>\dz @âf¬x#ˆ+mÇg»uïa™í~fºì2±3R¬QQ©í~Óˆ#½&>.Ò¸ýzßl6|!ÒƒX)ÖøõánG#µ¿I!m#ÇÑ Ž›v·_U`Ah9Ž•nÜ/M bb¤TãE¨{´G®°.@¸hÏ8ŽTh¼h¶Í¬ÝÍÅZöœvãHuÆÖ°µž6ãHQÆž—s´«Gª3^`%>Eîä8Ø1Ú?Ž#U›-_"uËÓñTAŽÃgÍj‹ÛPèë¸ øò <,òc•!´ŠÔ1$xX±ÇÔóHAu›e¢Ñîx©"¨Ð@9i<ŽT$òÀLÚ!#å æŸöÈãHÝ@‚ÆNhV'áYݲÅNm'&tÿ“n9Z°b´{GJö­Ü[NM“©ØWÒ©hÔÓÈjÕ³±´IOÃR;jJÛÔñ4¬1í‚­÷熤9ÓH=K…Ð"Éá4bÙÂMr¤T*ÐÞ‹æë=ï†Ãh¦#õêÎC¸$š‘šu«.1,R­nÂ%¶EêÔmC¸Œä7r›lÜ? õ5H: +Hx¿û!l§¤v"ËM³Þ¡aZ­Â¨íSÁ ·Œnº#a2Ά6« û)?¤¾0ö"Qàc¢À¡OExDDý™:cÈc܉ڲ2ƒ‘=R9ÇÐE*ã–ã‚d,RO¹ÇÉT¤äÝÞ1™‚H½»Ù¢ÝÁŸØY‚H;‚Ç¡’!ˆ¹#x84•d"%íÀ‡¾nÂþá º$õÔ°c«™8‡³\Ϳ̣3Ík&ÞŠ§J‘Tؾ¦p´ÈÖR=*lWMÂÒúÂß֘Ǝå©;Åžj×?V”´;)#ú§@†cž© [n±À“xD*âmC;ÚŠx©o§Ü®ææ¥"‰Ô’S®®mÙŨHW"åãÄ–xÙ6•„'=‰Š[°eûzu[u–DÖW ìhc=T­ÔaË®í´ b•÷ÎdþªrÎwR“`B€I`J€i°ÀŒ³0` €9æaÀ= p¼ÀŽÂ€3ö˜ ÇaÈs„œä$BghJÓ$N#HÄ9*²ˆ@â$•YF q–*‚¬Âs;'Hı×YG aìT\}¼€„±OH4‹ˆhÎaìT¾<+"²9‡±OH8‹ˆp.`ìTß<+"Ò¹€±OH<‹ˆx.pì$ŸED>8v’Ï""Ÿ ;Ég‘ώ䳈ÈçÇNòYDäs‰c'ù,"ò¹Ä±“|ù\âØI>‹ˆ|.qì$ŸED>W8"’Ï"&ŸJ娳2" +VvJZF$tóDµÚ³2"¡+˜§)Ih‘ÐÌrÏʈ„®`ž¦$¡eDBW #S’Ð2"¡_ïqžHDˈˆ~½ÇÑ“Œ–ýzÃ'!-#BúõÇORZF¤ôë=N‰iÓ¯÷8$§eDN·8$§eDN·HbZFÄt‹EbZFÄt óDuܳ*"¥[˜&FBZE„t ³DEÞ³*"¤[˜$FBZE„ö=€Ïªˆî’„´Š)\`T>«"BºCH’Ñ*"£Î'‰hÑB’„V ­pæI@«ˆ€V8ó$ŸUD>+œyÏ*"ž®`Œä³ŠÈçN‚’„V ÝájÇHD«ˆˆîp¹£bóÈè×»‚„”G„t‡ U¡ÏxDJw¸â$¦<"¦;TfªLŸñ˜œ¢’$¨<"¨;ÔR*YŸñ˜¤¢š$ª<"ª;ÔSʘñ˜¬¢¢RjÀŒG„õ'€„•G„õÇOÂÊ#Âz‰Ã'aåa½ÄÑ“¬òˆ¬^âàITyDT/qì$©<"©WìQ]œ©jvgZôÌt¡)ØfÆvû Ô5@'ô4 ÝtjA—aè@gvO4 [Èû8‘fd;C…3ÎàG——“ƒÂÙ ´â,‹Iý3­%>‹Iü¹d{¢¥=IûLAkIÏc’ÎkÖ2žÇdüBu[Ëw“o¾“œ×¢ÇD{G3¨…; 7ß"°î<&Ü/i-ÝyLºá«?0BZºó˜t¿PýNµ€ç1çÖòÇä›/X‹wo¾D`-ÝyLºù µpç1ᆘk€Ö²Çd»EcžjÑÎc¢ÍÑFzª¥ß«Ý²ïŸ/Rϲô{ù!±…žcéø €âDzŠ¥ëË‹bQè –¾//h±‘½Õó+_^Ør.aõìJï—–Ï ZO¯t€ù¡R[ éÿòCªiÐ6C:À¼°ªÚbH˜ôJÂj{!=`^XÉ3m+¤Ì y.‰j;!`ùRÀÚNH˜Ÿ®ê­¶Òæ…] h©å–‡åv)Aµàò°à®$¨\\Ü5”ZlyXl[ÉÛRË-ËíZv@‹-‹-Ÿ+`-·<,·[ ª…–‡…v+å«Ôb[‡Åv'AµÔÖa©ås¬å¶ËíNõWËm–[AXAk٭ò»£áié­ÃÒ[)X-¼uXxqûVjѭâ{‰D+-ºuXtÏe*-»uXvg V oÞTKo–ÞHvH‘$gCƒzÑìæçû¯ß"1¤h<‰GðTƒO£à:ÓÐ,]Jè\CQè¹jð2^I葆®¢ÐŠøXƒó8oz¢¡ë(4“ e¤O¸–ÐLC'1è™äf©¡³´”JCçQhÎ5ø0.§¤ÖÀ£(ð3æDË,‹Ê¬‚ÖBË¢B‹ Úp¢e–Eev!¡µÌ²¨Ì.¸Zڥ츖Y•Ù•„Ö2Ë¢2»R³¢e–Ee¶E`-²,*²kIZËl•Ù¯åœh™-¢2»‘´µÌQ™ÝJh-³ETf·R'Zf‹¨Ìî$´Ú"*´;I|ª…¶ˆ íµÌQ™½¤µÌQ™}.¡µQ!¼B`-ƒET_éR+f)ƒk lw¾_Í &ƒçZ0‘Æ(©FI¢ðQ2’ne)qr“n¦D”¡FFYIœ‘ÆÑÌqÆg|§B”‰F™ž•Ä™jœéáfƒi vãz^¡ñŠÃ-I”R£”‡QjD©4Jue†(\£ð#P®§Ö8õa8ú–Ú6”Õa½iCëMuXo‰¢õ¦:Bož!ŠÖ›ê°ÞðsDÑjSV&Q´ÚT‡Õf¿’8Zmª#Ôf(Zkª#´f¼œjµ©« ú‰Ê©Öšê­Y!ŠV›ê°Úð•ì™V™ê°Ê´ˆ¡5¦:¬1­DÑSÖ˜UsÞ.¶Å~3ƒÂ[+OuXy6ûªYòÕŽ²Ö¢ê°µÒ&0­Fü°ñ5¢h=â‡õˆ/%ŽV$~„"mE+?¬HêF"juâG¬B¸:0­NüˆUhûq´:ñ#Ôi‡(Zøê´’8Zøê´CAgZŸøúT¢=eZ¡øa…Ú#†V'~XöEë?¬O†r쥬jÕâ‡U«S…¬5‹±,] ŠÖ'~Ī„B¡Çe}„:½@áÓnä²>BŸV;Ê‚‡Eª_ëV}X·öÐd5¤nVªÎ-Û°+ßf³&2 B–4Õ it)A3 šAÏ%h®Aó h!A‡t}&AGtÝJбA/%èDƒN‚  :Õ Ó èL‚2 Ê‚ •-4h}.AK ZA¯$h¥A« èN‚r ʃ  ZkÐ:º’=iy„åµ– Z`'a]IP-°“°À®%¨ØIX`çT ì$,° £R¾GZh'a¡Å|ˆ<™ÐzLäqñR€¯fƒ²Ùõ½3&Q’@‘ð©†OÀ_6ˆi„ìÂÕrB]j„á!„Fat¡‘ck„ñ„½ÃD#L p„Ÿjøéx9¦áÙ!®Á•¨À(4Fqc&gµÔå„sÙ§J#T‡Æ [nÁ5?(Ï£Öõ!F”€Ph¨i_­C+DuH!ÚªB ­Õ!•ØíÝ…Ö‰êN¬ö’…ÖŠêVTÈ¿BkEuH+Ø´VT‡´‚-AkEuH+ ÔŠBkEuH+ÖA«EuH-æÔíBkFuH3æíB¢hÕ¨©†8HlE+GuH9æLbhí¨iÇv+H¡Õ£:¤[i§ ­Õ!õ¸Àùq•˜Lük„ ²ä¯YSm|á­ŸhøäüáS Ÿ€¿@øLÃgà/>×ðùx¶köˆ2Ô(Ã(/~¤áGàÏ׈0Öã~¢á'àw?ÕðÓð3„gž€¯¾ÐðÅøáK _𠄝4|uˆgÏ5¤ÂkÒᵌé èPëÀø\I­ãCJ°@x­ãCð5Âk Ò€9JôPkÀøÀV@ hRç¯U`|H*„×*0>¤­” ­ãC:°Bx­ãC:°Ax­ãC:€vz¨u`|H*åP+Áøð)E‹óiŠBʪ[öH/š œ+&À:ÕÐyzÁ`W!€3 < /›Fçx†ó¿jÐqtÛ¬VWMs7Œe¤Q&A”µkÐi¸#ŠìDò ìFvzªA‹ ¨$Ê4d„¬%ÑBƒVAPɸRCò d‹•†¬Ã1—ís‚•±ð^XbA­a“ ì%»ØDKp–`±ŸFX-ÀYX€Ï {¢Å7 ‹ï-Ñ›……wZr³°ä>SbžhÙͲ y±V mZɈD mÚ¯™š-µYXjg’®–Ú,,µ+5cZn³°Üîä”i¹ÍÂr»RCÓ’›…%÷B‚jÑÍ¢{®ÈjÑÍâ;+Pt-ºyXt_°À¦Ztó°èž¯QÕR-ºyXt!xï“GŸ x[?ú/ÿï¹ÿ~zýá&=‘?“³Ó|üÅ»ëÛ÷_ìßß¾¾{ssúpýÝÛ›û/ª›·¼ySܾ¹-ß^ßߟ>üéáè6ÎÎàëç‹ÿìßÃdt–¥ÿ%ž‡y2NÄ¿ÏÎÒ,φÿåìÿÁqëÿ>Þ?\M~¸»‹ŽèÐ{wpÿ‹ü÷ÉÀeíI2:=ÿz]]?Ü|9HÏÒüä,?ÉÎ>¤É—ùäË$Ì–;ð?þ/|;Pó?þïÏÍû×§âz2¸~ÿfððãþ{q÷ÃÝàúÃÍàÃÍ·÷7nÄû×onÞ]øÃýàî{‚””·ï%úéöi݉¿> ^ß}|ÿðáö暪ï> ¡wˆýñ^¶ùööõÍû{AåþæfðãÃÃO÷_~ñÅÏ?ÿ|úQÉö݇¾@¬Wwß¿X§?>¼{‹ÖŒºZþxýáúµ€y¸þîúþF¼`soî^|wóþáúáöî}¼7?Ý}x¸ÿâáCžñHPøêWþ8ÀŸ2hðä­˜¶Û÷?P7¡oÀ®ÏßßÞ¼}3È¿ÄîìÙóÁ'¹øã¨~=Åa¿½ýÚàŸ>ÜýtóáAÌðçƒïE»·?¼œÂyùéN؈{àÌwoï^ÿá^à~¸¹¿ù äh𽘜·?üøpòpwòöæû‡Áýë·? pàùBÖÞnn±‰?^¿ýxs?Ø  [|.¨ß”?|¸yÿú—Áö—wßݽ½—=0hðÉÆ››‡ë[ ÓïÿåÝ­hBÌàÛÛ÷¢ßݼ½ûù9¿oxøñúAPúþúãÛ‡ÁÃÝ X ~¼þ£˜®÷7 v@÷û»·‚îfïK™Ð3Ä|ÕüðþîXÕW¥ þj ÄÈêîýk’8ë­ÆõÛ·$ýBeÀcâ¡ÙÍ÷wƒ›?ý$¤ÿöáí/Å¡W(B€‡}ï&k!8õjw÷j¬Üül#ë·¿ à D峑@ebbn_ó1>çµàó‡ÛkùlˆÏÆ÷jûñ§ŸÞÞ€âë ¾.jÁÄëë÷×vd#˜ÚTa/nľ»}µû£bü…/å0¸0ÒW7ÿ*Ö#·ÝœÞ{ûÏ%ë¸Ç –¥Ô;‚Z­f)‰Ñoú³Ùy{Sgò5˜t?¾ð÷a,_3Ù‡ý/?üøñƒ|SÈ7•ÐýÅnáþIYÍið·¿¼s— Ž¨_¸>©@ñÄĽ:¿ýÃõ>¢øq©é|*½y{ýÎ&M¸XµÝCºË×(ÀXžo¹þ?@ ¾»ùpïÐê€=Sc–00)¨¼yx¸{'ªX³øf«¡ 4Ë%C—×b/õNXû×`†»%Ñ·¾šøú!EûÙùמ#ä&ð+gwv–'bëp6d°{¼Á'ƒÅ? /ÓÑ·üV§§¬0âÀ´ÆaZvÆk¢d=: )Èÿ;õg͗ͪYñA»©ÈNÞ¬ª¦d»v#ðŠaïԟ˦ܴ2pQÀ…é/Ù¶Ü/B à^יּÌB“%ó‡Ï6ì‚æ­ÕÙÖ9`ÛŠVª ´R»­dI •ÖÌRîTO#54’6¯^&Ó¡—W‡›à/TI ¬¶ (Á9–Øä~½´hf‰=«.¾ÌÃßµ+Hï×Í0yî¯V‚Ù ò,)3§#9º@àXµ­\4å¹CiÃEßê.ßÑ\M§™={éÙ$ÐÇJ•(Ù¦]Åç¯ÜoÄü¥Óü¸ù£â Û]»´!tŒ9“÷2;£]ÏÙæj5ãó¢mJ^ ê ˆ¹1vKUoGÕ·i¶s¨‚€uÝ$ÃSX¾ÄωÑò;˜çé·ƒe[AQÖv #åùé©ÿÅP+€Z™¸ÔÆ}jªkXQ°OR§ãw&ªÂîV½ROÎ<Ãze»þ¹˜êßpl„çn#ÃМ̘wòeh(œ÷Då™3‡ª…ÉÖ-¨Ûz.ô-ÃCh6¶eY*ÈlÃùyï~‡ïDå+Û oÊ9kJUÒ^!á±K8 ^ ¼ùÕbÇ«FÍ„§™>´Õ7é4’ÄÕºq¬³ÍWع;W¹Ë¨sΜ/ö+¶ãXs‚ ¶WË¢]ؽëê^ æø Ù:¸DyçäªÝ ¬Éè×a±…ÐoeŽÛU»`ï³ Ž×½ø]o!Ä®{™ÛîܦÊ_×Ûç•C„CYb&6Ðßý±ýÝÌ[Aže@¾:ä'¡é@6EÅZš"ÍÜz,ˆæ»Ï/“l":oOOuZ»ÜE»^ ¹Î'©;—[Z4ânÞî·ÂoÕþ&Ÿ0p¼¥µÓ‘؇…Kêbºn uŒ/ÜRjgà ö}ÃaoÃ"VC^Õ•Ð+¡¡—5Ÿ ªÃiP¥5¢kß¼ÞIk¼iV3 ‚S14¦b«ÿÈèZg .±¢݈•PpxÉ6bÕ¢›m8™8ãÌ“o{id­¥É¬ò¸±w?ÃIoÔë;wÔ QÿéYæÂ/_«?+~ÁV ¾ÆAÁ€"’l3c€Û—i65rË’0ù’%bû¯æ@,ëíô|=¸h/…è`?Ú–ZÕcï] ãì‚ Ë-³0ÍÏœÆÀŒùcvÇ7X¦ùé•.½<;fâÚ%€‚ÑŸŽôeræãó×^_´%#°n:B¹VSj“=®JL‘MKm;ð!czVoúÝ‹{³¼à{®åc8 JãÞ\¬=saé²´‘Óq´.®øÉbÂkV “‚%—v #˜b('vè›X%2bJ ¾š‰ÙÛæg |IÅØyi1!HÉöÕ~{Á6GŸ'C$TÚÝËYG¨;t;O4ƒN t¦g.´G‡÷è0Ñ–Õ)›8ó’ö ´=+ ¨ëÙ´èõ`Ü#°îeŠÞŠ©ÕÃ_ 8Êb1uÌ{ nçýÑ&aKf³±3cˆÒgÆűažÇhÀÊ1Rš¸”R/%î%„¬+ $Ô³„~B­Ÿ¿² 0à|>à;›VcK¯"Zköq5«¥\§x ¦Uå´ä×ÍÆ#-ȉ Ež'.¬Gãê*¢< =E‰ûÌ¡™6Í~¦ \7‰Ÿ½îx†¤vݪt•ëó(&¿„ ƒ¦Ð˜×†ä¯hkD$ÊýfÃWåÕ`µ_ò 8ÁíÊ!ý¾â+±‹_!Ķy¾ãllÝ;”m]Ih¶[øˆEÀö ©¹à•˜q²‰€ÚÓ¿µ‹êYXdç4Ûo–ûó¹kgÙØYvf¢hÊ4JghÝGû=yc‰Ïĺðœ÷i€ª²¬,K}VÖ…oÛ> 0´,CË2Ÿ¡uáמ±Àij,E=ך§  ȳ%ÐqN³ÑD.Ÿûæ'x6¥.B ð¸±bÞ•†7MóPÚ †›6ÎÝΛÑl]mÛÕ9è1÷\ë^—}Ú8‰iã3¡è»ž6⮇MzæŽÛ„bj£z$y¥6e0^Üõ°©o péðVÐÁÍón~\:­AÇÔJÜþ0ïöÇ…_³> šÙWøµÒ†_xhH­,pnûÛ¢aŸÈ…‡*Td_d³´Û1Ü1ïÆÈ™xC ûÏQ ËÞQº/Rž“`Ø ß^ȇÙú;»!V…OkÎj }Ŭ¿ñ°v›MæÍ à óîH4žm¬‡ÊÔáC–Fð©tÝwàôðèÖ˜_œäg¾óP»i®˜{2j«Pà]œùÎB¾3 Ö߯9¨ÀEºð.ÒwhÀê\àê\xWg ¸uÁ¸,ÞeÙ^»ÝÕ/pA.¼ ²¼p±Qé \Š‹þ*:tÐ/\tä^Ä¡crOëz‘õV7­ŸÁRôG“s<X€"‡ÃQ‘ûG=ÍKç`TäñƒBë#"Ì@1 o$‚{¸)†p¸)†¾ÃÍøMOpv‡(îï-©Ç¿&€*à–¢ðn)$’i?Ì'Òx}ÍÖ– :Œ I÷º0:Ü£æÝ’>¼HàzÃJ4Fp;üõžm*uP¿ÛÍ7PƒNXvó­ Ü߇è^ìØ²Y¸æ7!ÅÄw$ð¹±þ†Ã@—Eßß’9ÈÜAF¹œâL‡.rî ·ò9t{:Eä^·SYŸôÑç5 øËQÖÛºrÛÚk À»š‚õö£=üUÑ'ˆÞª;É=ì5bcçÝÐËÄm|éb£Ûç–ÀÎ^¦÷]ÂõJQ¦ÇÙ{h ¨•¨Ç}?Qæ!Â=DPäJ\úû"‘ÖGzÙIØ„êLÜìÞÍŽÄ0-•ùDY*t½µ1Í+[NVûeBÅW„¯ž€‰¡K¸Ggåð«ìoc€_ìg{s¿Y4« ˜f¼ÐƥĽLéÝË(úXŒÝLyBXöw3™K…»T€éev¦ìïgzè­‹;šw4eï®)¹èëÞ @…Êȶœ´n_QbH[™çîüçºEGaz» ¶ ‡—(åÐk?¬îî¶½lð_ŽAÏØ9[ÛÁº],„®”xãXöñÔmÛ<$DWóÒ»š+,KIÌGRKÊqO/×>vl›ªš³% ô"¶>„Ý~¿„OÂÖᜠ_©}$ÝÇZØ(«Þ »;CX;Í›ô¯ÖþnèqâF ôÞÁF§¬ÎS[qOPz÷ïÑA}Å}AÙwCô ´=¨±è„(] ‰¾îO%ºJ¯ûÀzŸ*qÄy`s²Óû"|ž çDQ=á\¾£Àìb8aYöŒ‹12ëÒ.d_ÊžÇ,ÖÐA¼ó)½w>> îíÊ .èeYG©õjÛG ™‘±=BÆjÝÑa½Š—U…„¸+9iOr,[Ù"ð‡–èS)½>•€‚ý )'h'n2Jï&ƒÐL j?S&´ÆõÉÜhôz…û¬™_°å~Ñ\¹vj¿fÕ|ÉVâ Ð »N-¬²]<=ÓæoÀŠö‚6Íl¾{tV¡ÿ¥òú_–lÁ®$pì§óB[Ð cLªþÞejó^é˜Dû²ÂíLåÝÎôð¸‡~…›š*su åé!´";<šT‘͉;cÚNUxÑPy/:$ç`à}>Ž*!5ßÆÞ‹ÄÄpZr†Ä||/R"¶báÛ‹Þ|Vín°áë9 …7 Μ®ñþ¯¢¤ {7H>(ç°ƒ¥‡¥êÕô¼Šøk:D÷RáV±ÆkEÞ»ËòLˆÿŸÌ÷b 뱓9_DÃws³BÝÔ;˜%tïT^÷N_âU`.¬FaÕ‚aãþ°òî;DÓÀ¹O¥‰«0¦¸O܉°”ßß÷F~>o—{±ýääìÄ·/^°V»¯[ø@©ûsÞ¶ÇX`Æ>™²vȳÉÛë9v†V{kˆšÍ™ÕêVÓ€[Îܳrš÷iy0Sœ»¿•4c8!¯z›ÅK!7+Wö–{9¾ú,âÔn ¾ƒ¸ÿ+a!! üÛ5š±ÚƒÊ¢%Ø$׉¡\kŠX¶‰â®a MkYíWòrÄÚ;Ÿµ.!þªä“ÞtëŽKå¯Oªûj°Ù±Ùv°äB¬¥#è„W†þxqx€4ı#s¹hgíîjÍÕIXtZ6ß‹Á'¬)™’»­à`&ú58k% 9†ÍÕns£®9ÄßTB‚«s9+›Y×’óÿµb0È­!~z­±B¶ ²õLJqþöÚ\ÕVw^ø™ †szžC‚XÖc‡Ÿ­Å¶Úoõe=]=VŠóf°lH²É‘„æ„08ŽÞ{áfNÿ“â³uز¤ç‚®éun~¿¨o_H¬èJµ#cÜ|ÖøuI=r| /³Q‚¼û´ŸáÝAÝ÷Ÿwa–@­„6%j㤷 øµH¬K{ØÕøu`Ýw^i[”®9€=ÎÄ5« ¾Ë´,ç{Å>¼ý¬KcS´u'ð|?Øì!Ü ‡ŸÓ µh›g Ñèî¬Í[Ǿ¾Y8yêQ]µP0@ÊÙÉùü >]®KÙÏžB»BCšÚ)¯O©`¶Ýƒ‘ÇÕ¨®r‡/]£[lÏÙ |h%04»0‚•ct¡#xïŠMÅ»¯àßd¦·3VHCžØºš¸ƒ«úùNjyq"§[€'5^û^¨OýÚ¨C…Â\1w0©3˜gЂ 9V!vÖ,G‰J6–ö|ràÒ³ªiè›óˆA™¯´@ ¾P7ö;ø¤ìÛä,ëE¤tN > ûꬆå&Øå,Öå²]mÛ•8+Å+\ Žû!°ÚQÖÿàøÎ鑚ÁÙ†³ªQœÈ}ë!YN ë®C›! ß——ÖTˆCèNlж½>1¥°3Y:{5ô±œ¡à§:Î3ÃÏ%ˆŒÔ82ë¾ë¯¨—9Ps ÷¢¶ò^—â`‹Ñ5žç²$û(åŽwÆ.…Rlø ãáj Ýõn©2ïø t¾ï:„‰5Pa €s>XÏ¡ÞähˆMøâöÞ]ò­øµ¬/[EdçáOjµÍFcl§r‡2ö¥OÅQz2„¶8´5ö^-ؽåÌ%‚.¦ƒP³9jŒ“7é}˜Ùoh Òcïð9òz’!­¯ý²Œx£‡ï@ò&8瓞QrupöRg’ñMÙŠãJ³ÐÜØÃÛì—¬ý g{Y`mÞYMÛ¨š·S•¡.bÓ°Ó>Ãf¼PÖmŠz>õ^”˜;›¥XL±‰¥iÄK,y8å2?^Gsëj”2ŠØܺû^ðçå¾$æôQr&³î•n¦ø8ÆÛÍÌ[Rúô4ôn.+¾ö®GºÄ+,ÙwÂcXv·RiÓœQÀÞ@#úz¯ïü€HÝûR½ d'¸S;Çõ\¬HðoHü$0ûñŽ¡+šÒŠ!f%S³9#~éë8÷ô|ÁŠFH% n‘ÒÜŽíx™¥ÓosL>#ŽBí–Ãyú¼¹âíùé)ßÍ›v iÈÿð5˜ ×ç4÷­T>”ÆOICŠërÚ¿{)é÷=nRoû¤íƒÇ+nê]q½8þÌq$˜Í0¸¡3p+ÜÇ)¼yŽš`§úŸ&y;õÜß§çØ%4[iÏ×—e>J+o—αKà÷?}áÂ>o—αKÅ)õB4¼ü>îïÓsàwöšùPp%Ž£9kçÎê [ƒàlÏùNlU¶å£¶'ã¤wŒ›±E;³>±žÀÙeœô•F”¿W‘>Ë}µn+@Ág½6§ý6UØ D”‰ÝÑ~Õ¶Vã}ç¶nœÀÝÆá 9ñÓX0´l=oÍz ©C}œ5^«l8Çèr}SYìçMeL¤õ7Ž ó¸çgNðÓ…YÁV—Ìf„õè I€|½G_~á¡f“ñ'ã^àðçKn¹ïäƒfUñ5¤[íÔ™èkpä‹~L¬iDDÇU7.°ûæ®@ÇXôZNÍÛkŒT¼µˆ ˜œÍ—ûs""ïöûs¶àâ貂‚Rã*JUOP2‹\‰[dJ¶\íÅjÙ4ƒóý~„ú'­wÖLH'?gÌà'ØpÏKk7\ð«+Èbö¥m—ûýH„?î2àÙ;‡€F ÷X˜¤zÌ}çk‰eÅÅOä‰z’þ$ñžÏÅy¦¥„ÝáÜyªè`~úIîD¼Ì†&NzϰÔÙ$ïØøŒ][µò³“' "0»‡‰aæé’àÞÞPrÅËV:â™Ê2ñÝ¥÷GÁ 2å” ù•nƒ œ¾ÇÙ¬bKíVLzdy´=O#K¶‚Ë! S€ñšD²=¤°@ ˜9}R;{å—cÿލ½Šn‰T`1Ñ25ú4áîÀ!s³,Ô'C'„)ûxz*ßgÁ ?MÁG7M{áñ¹E©‹×ï=ó4M§H¥­Ÿ•í¾xÖ6rP›v¢Õ{§Œ)&«Ÿf½È·TS´’RvÔÌÇ«’Â!f=Û9ò’ÚùI-€D4'Vö¼.†Q¬(㉴SôGLG•Ë6ü¾7°®m­'PÞtŠiê§ýü'CŸ<Ÿž§#Aõtʜɗ¹`úŠ_JZ{†Yæ ŸçÝ¢½ „¹AQŸ–î×t°Å5ñ¬ë ü'$qä+ON»øORAlSoðŒ‰dNÿ¹bBÕÓêiµÕ¹nOa‰{$‡¯—ŠýLÐÞZìsŸ=`Éi0WSƒ†“Íó¸J)õ.±LJk!¿ìÒì‹ØÐ ÚšŽÂ‚ ®IlèH.0;ã‚b@‚i¾è®çØ0¶kVXá+A‰m¡/ K›Xà  ¬1Õ'`E °¬!•~ëG1' e Á¯Êƽ¢G~‚`ô½áoj+›xcoQ(‘ý}ïT†Ž;æ½oÐX†ô;ôŒ7ŠLëí(Ç=ug/8eR{V•zÓî0€Lç`Yx{i€;h*&Ø•ÞÑvävåœaƒõ¬Ïf’â,|ú*ØB*’Ü«6[68{õ’›¼Ì!5$!?—Ù2Ç`Š,¬<Þ^í±¿‘4·>l‘÷–Úá·^ü…ü`Žƒ±ÕÂ(ì†ò ò©šÆZÀvýVXÅgø(âÌçÎñR¦u¦øœ »'ÎçýÙ§ãø3Ç=C‰ÁreÖ›¹¡&k~6´c'p…û^m¡| ˆn×Òé¦Ð¬Ã¦ùHÊ{™WH¡§™;ï»]oâ« ¦—«Ò»\µp¡/V=;Ë–ýPõ—«rˆ˜ª-ƒõ¤·êyJõ ü¬_êw3ßÎ/_U>¯µ•è•`âȰ¹`ò‰yOnL1j çü’÷ö¥ÂMwÉÄžd3k!­ âB¬ª À(f&š@¹®{ßL¬†æüyS·›¥ôwÙ :}±M5g:¸¬‡HßKi [ù Œçf6A%¼~šCÞ5çtï–ý,Ý ©r”o2%²Æbe.R‡Ü*kRýHn™¡˜^.f¿Ja½¬Ì4X¥—£¬_EË ¬j3í‹m¹iÖ;[ñÑÉ_`9©ÜUxmæ)¶VFË“úÞÝšÉP”˜6Xª1r5u-P–{;Ò¬¶Xel/$×U­“k]5ÅáZæ1óÔT“©| T“ %ÛA9°G‰,nY'v ÄËtªˆ§lƒ4ðE{é­õeU¡ªØ¶aXr®}Þˆ6kŒl©_dÅášVðï&P#*Þ,zóêÜQé•Dz´«+š°zÍå8ÊüèQZÔb£Œ7‹»’zØ«Þæå>8µa°®É5ß4Ûu‹¥ÙD›ý¼ÁÑúa}¢@¤_òWÁžÁZƒä"«¿‚Í-Ä0Ônñ9¼Xú5ÔŒi ÈŸ)áS ãª.r§áaæeªQFYŠZ…ôüu;4h¶%:eWÄÏÒ™OLtïHÌáâwëM»µ›í Ûlìa`¸a]ænGý3¦•åæÈùÒHÁÙ*q¶Ê#g«³8çªuÇwAu® i/Iºàņ•ó+ï8; ¸‹¸;K)*dU¸-Ž´xx”¬j cjîÌ'.ü‡Œ–=¾~mAÛ ¡£ ®”C_ü8jî• '·>R‚ Їg×¶¥(=;ëé[ù½ú]Œ»öý’2_Oz©ÊµÝ‹®¨½œoSØýoÝŽÄ^ l8¦Ö'¸=2vƒþ½$ÓÛ0ÿûÝ£49ë¥"»#7Ö'ÛÝf_vs[Rø# ¾_pùÙŸ8†a¢i’8ê*½wfŸÀ iõQàöƒðtnHSl°·+ h^¤õé©ÿÅFPKû©;â]xH᪨í\Þ6TSNP=zâ2ÎfÚœ0~ç|qѬÔg³^Àº´YOïG;¸ÃŽVàBŒ¡øÙ‹Ð3¡4:³í(°S „wMÍ Ž¥ª6C»ß”àKlÆWfÛžrÙ³uâßZ¨^’c§M?Z@Å(?Z¹TÕ{Ùè3 ^²ÕùDÂÖN§Ü¦5ÄŠs/xŒÉ€Ê41SÏ@t-mÚ%|̃°2zÊ~dE¡ "’ê±>uIé+Yðv¨pÞÉšàD›Ÿ¨È8àÜ%¿mžƒÝâ0ä¥Ûg£I£ïY&V‰TÕR6î¬FS!zk1yà j |MgsRpøÊÞÿwb‚ì´g`4[üˆ_ï™èN>ÍÍBìœ)á²o%ÎžÛæ8¤û“®…fS.üo…’X/̱K&Ç«f¿T(—óFÌ¢$ö(ÀA7˜Þ{ö2BÙ4ø®"{4²û²¿½óÂøN’4ˇ£ñäQŠžû´ÛŸ— äš-Àíú{Ù‹½S¥Þöœ(Ý=.Ç%ÒïyuÓ Û³þ™Ÿ¨_Ydyîtû, œø·ªÒí%ÛêÃíz‡ß\ ×Ï™°$%ÄÍ‹ŸÜ"+\;tËÍÕz×â¦hÍyÓ¶|>ÜŒ­fb‹––°EKmßé«¿½¢³f#žŸ›²@¥èK«4ú ¦-½¦»×zß_ RG|iS²¬#¾¾´»Á-ÃÞÜ›…!æß¨››ÍÍ+¡Þ3±¨©”’VÓ:΄à{ÅœÑݼ0j0§U¤â«&¤?1"¤ Ž —f1õ~D·hýŸeÁ×TiÅ;îcÇíÖKj»…)(ñó¸Ïè0S³ï1P*°OÅq}záÿêìÅ ¤„}:òÓ¾²ôË)ž­{åÍÐèùóÊÿY( O‰½*üàÐOé)UØ'÷ƒ¿¥ç~JÏ%%ìS?Oµÿ«:?¥™ ”õ·ß¤MÅ[üj®@vPSk‚ÀëoïZ­ Ô„dâ~±0͵~QˆÊ`?«&g‚å øBÄO#XQ§¢0”­Vp¡ Ã^4«s23§§ u’Qs”@¥ ñÓÐÛt:‹¨Å‰N“!y'ŸúDØ»v'¿dÄà„á.·²Ôí}Ÿ]l.hÔH£viÀË~‰>ß÷EZ¾;Â>3K',ð%¤‡°LŠí$Þ—eÃ÷å`/ȦH6u*EãDÚ˜zÖä*z)Ì$Pe@5w²6bÀJqÙ§”t®ëžKJá¦Lü¬]yÛlÂ1¾oWÒ4ØBy8ÞÑU0“W.˜hf„Óaž×ä,Í8óë<ž‹™˜ )ŽsÞn8ìÇwP#}S‘£'K'ØüÄÇþÌ ú%&È3·„äÀÔG)4÷+,‘¥%v«tg%qLÆŽ/¸JÐydž±•˜Û+[í¼/9pG4{¹,¬…ÞkU€dß`]>H š…㱯SHf.Á„5¬Ø’Än Ç<õü²è[6×-}vxìJ2å(H¹u8Oc²´;¯‹ór4œÂQõÙù`¿‚ã“Á›‰ã”åxoÏÎûÓ”—ir~ï&"]5ÝF–?$ÂÛXôr°Â2³ÜI7ù2I`©3‹fg7tuµyÄrà<Ëk÷@šãb[ýé]ߘu‹“³Àš ®/ÄÍ„•ÛË+6€ðnï‹g|ä8’óE¼!–BÛU[bÈ ´ÒÏy¡wvn0Ór¿îP'ØÁ©%…+G ƒÕe0zÓD€ÿXPW©øéóñC測àEFfÛÖ2W´Á°÷½Èî1~ѰÜwåF TÙøû¼ÈP§@ü4׿·úsxÙºØílÞ.pÔ‰Ÿ½xÆQX=c‚› á½çÛnGÎÆ)àGÎ…ÇË`„Ÿ¿2BÃÕ‹×;_¶bnÆ}·T0ôk¿ø:3qCÏRèYµ_zÛ¦H° 8™"EÓwÿ‡À‰ÆÐ߈¸Xè[Åóñ¤@ª>o¬ßÉË„Ä/­·» _`^W|cšlWw³ÒŒ©ZÀ„ —®êÒ@?)–†oK+Ýxû»ÕÑ 3y;±ƒœ<¢5\€ÆfÁí3ö¶>XB£{.´ÓÏBðÖ|ø¬ä{ÖA"`¦’98\aäË+¨ãÄ‚-‹J]ôë™@¥[t”Ý”ák…¯"vÛŠ…έ¾üåóø š„Vút[Òøº¡Ý™ºŠ_²«í ü örêŽÛ§mª¿ssêBᔋfÆv{±Ñlqvû¡¹6ÿcW?K ê;9ëU‰¦ž+aîÄ"ÛîÈh½Ñ ˆÑOÎ2$ÛKNs<({?¥(‘R¯Gî§Å?|ÏÅÄ`œ¤nê4Э2@ i¥8ÄÔ÷¥…c~´ì³*G ZáÀìZ =ëñ³ç%Oþ…ÁžCp¼`Ÿ¿à¹¢WYKa#½ ©Ýˆ¢«œ$曵8#óy»¨Ô[A·c“±/ÐzÎfÛ“µõM’û̬ìÊ0鉸éËT±eû ÛÎw›^qW÷ EÜ B`·&ýTEg¹nCÓµ…è”Η`¸y6Pœ¯™æŒmöM;Ó‡ È‘¬ïXa`Uà°èƒ^2¸NM¼ L$ó£>÷±Ü¤OÐÎOÜ# aÅ/Ä{Æ6*g¼§2ïé© d¼ìJ#Š&ØŒ/{‘Ka½ßÎ× Žñ+J¾§Ì»=笢•lÒOñºö Èª¢¿©Âþúª•HϘ°´íÒê)‰ÖÕ#†yfÄOoê$vÅæbUpªŠZ%‹¦Ʀ©»=O'CÝÜg`k¦p?#~úäNÃKþ]6 •òùJ°Sʰiî»kÝðg˜D¢ë„ýЇ hÓ¡ïÓJì*“¦rÑà-;\KšY*Âû<.Ý>{Òêîšs¾ß,{r÷ív %¼x»iVèä´'áê¬Ï„äwŸô^ŠWl(`T¦…»ŽA¦Ò™&÷(Ò´$|`jx+‘À?ÿ÷¾“_' j(`…¯X°Ÿ&$'ðÓ¬a†Åñx‚[ Ð•¾z¨×ý ›ãçØqøöŽbÓ2ArNv Œã4¦ª†z£Af±ú…Ú;­¡hîºÙò–áè«è_ ´¼þT:ÃTiç¡Ré g¦ò©£Ñn^ªÍNüÜ×Â[kVÄK1ŒÕ ü9ö‹{s‡yÌÏ<‰úñERÆÃE¹©È„Š¼Ú¯âø†ùq1öª÷ í´×+ÌÄ`yY]õ»f¼]AÿjmËùÞ¡ø¿»o_jÔ„¾ÙïÏbGË#ßâ|bò#ÆR_þéÒH„™f”A€ §Œe=%Jª]´×}ÄÄ•A/ñÓ·å-=9®¨Îó t÷~Ì͇:mvvk´ÿLƒzâgÏ78ñ‘)ç>:Û-ÐéE>i#ì‚Ěφ8ï·Ù¥›¼§trö¼±}_ú#°éÞ®ÅòµPT¬oÕ7ͺÛÓ1\«ØÈç®u«äÈÚž#êM ôbž«€+tG‹ú´Ø¸\ìÙs³gí cóèÝ| ÇHÑ µ«,¨PS¬¢`T>è•F»ËèFR:e… EzNd•|X3³® †…ÏBì¬*Z!Pa`nr<¦ô¬ò%×E/00 È]4|§ÍdƒÑáº2GÚã.À!ÃúÑe*u—ÎFålnŠø½\øÃþž³Ø±Hžx ®‚Ä)zÏÑv”ýo.ÂH[Üâ° ü%¬ê}QnŽ•¢UÛ•ÑY*/¦Ú®ú‘–ïܶ©d$®ô̻һs(EÙôÛ>oø¿ †‹<ëå°†L K.vò×YWÀåy,ö²@+"õ&’]–^àá€Ì%½«JÀc{§#VB8q,f¸ž³:ñÌ’…XÎy#sëZl×…ÙW8çuX@l´Õ3QËcßÕé6®o¦ ¤l×AQØe»©\h%œž,47Ú«Q@jxñÓgûч»ãõ>oÖiõö8^Zâ<ì¥%ž­ûå&u Ñzá'õ(áEc‘ÀY–ó`„*ö+ µã‚8 Á¢Jxê-†¾"tÁ6›îÃzÀ•òãŒüBnÁ…a)úŸ5ã-Š­Ò¸p%" Ÿ~‰ýtrÈúd^‡ôWùßíe#x˜Âb•Ày0KDHïýÔ;[™6® OR8³ÂF¶²lª ¤³YT0Qÿs§Ð…›•ÌàRàŽ±“n&–—“³PE*È¢DrÜ›qÚcWÏ[×g‡@áHA,C’Þš^+ ¶¯ë°ýÚ5Ð!]oݻ憠HIí÷%] á‚™Ž_AFCA4\·Écöy(=ožßŒ.öËA#þ!Ppq)ü‡EÅ:'ö_È­?~ÔSÂàb NÆF¬³gÚ•¤ŸÍ›ù£j\ 7ˆ½i ᙘ#é|jO®x« uÏ1ªó„ jeÔê^FâÎÏñkÕðýêd#~.:šúíÜ[ëùÉ~ïæ8Vשּׂï¢JˆNÊÏÄüýÓOnÿxýpsòñþæ@wzj=Äß=ªÑZ3'uóËl4’±He»\ ;Q4‹fweD$IÄ(„ ú¨fc¤_M®œ¢ˆqˆjú¨.°ÿöLŸY[Žnùj7¦€^lw‚Z’µ¤—‚C¶/¬Yo •!™J à9Ÿ?ªkê¯ëÌ]² •4D$]6Øvoî‡x!èçH¿·$úè»Æ6úhF@»>û¯x%®({‰ÊzK«„ 9÷ñã‘â@ çaêœ^æÃX_Y¬«+AŠŠŸ½…<õRUQêf»jË—ÍIT4‘?uí~„e#jøÖqcÒ·cÌ¥_¼ÆÄâ§ïF)„ÊÂT9PdH±çEŒPTÓÿ²¢v³ú5ݼŠÐ¼ùª°£ýSf¦ ULCï¬ŒÏ rÐTŒC\q&v…Æ–õìl‚i Ã[ 9AyÇogœ™õä§C&Wí²k†Ê¶x–È ¥ \#wø8@qÈk¶»v+6ˆÛ’î¯*¾Ým†•¡z¯/ÙÅ•è;Ž5•|O§¥­ˆ 6W¥]ÌÆ~ð°eù×´:ëíø k¶…m?Øï÷P²7“†%KjÛôcJÏŠÒ5tDú…¸TÒI-Àƒ§b}Dèy^7õî ©!·²ÜVzæëÔÓ›µ;#ÆiÍšÍn.ë£ç‰#Çú{HGJ!b¤²íiïNÂÆØ°,½ýPüi¤:;¾]ÊÕxÒœdã¡Í‰ùšo–?Vrí§ Ž[ŠU6µÍ|}³‡…Ae±ÃpŸn·{ c|Ç瘀¤j.„‚Џ²¦¢°Ý™ÝòH`‹ûVRÕ{†E¯3,Ý)~Õ=&ô‰ì!.àEÅ|ÔŠý^èñHVAKhb¹£©ìH5´ø{tË´nžçs©oyÞ Œ|Âdð ßõâ2á<ÙYÔk;Ø%Д2“;¼†Èç-¤!í”~͹8Ž·‚ÄêJo7¡®ØY.¹–3-õ]’bnå(¶ž©¢Ùy!iT™56äü–͸çœá}þE ÇRggy]¨¹§ ÏSIi(ç|z¦‘„2¤‹*œTœ'çsÙ0“F¶LC¨[Éö%C^3¹²jeíÀè†^Ÿ7À»á(¨`Ô²Ñ*â²;Ë~™5GppÑìæçû¯û©†OOC¯f8YcÜt 'Éa˜äFë#ÃP>ѸŠ_¥-VÀ¥]ÃŒ3§zÃåqH¿@r•3›:ѦBR;M ϱù2±›Ïuóv!wõЊ/ô_ѪP{YINð‰m„#·PFmÛ.!¾³»$ÖÈ÷bÉZ-©Õý©…dE¹÷_(eI¤H·W†ÅÚÙù²sÐÊè7ãÉêÒ ÌÒ™3Ò Àíú5I’¡‚¾ 3 œ³îõ5øzºÇKnóR=´¿üÜéy÷]«5Ð…)–¿F=EèÔ˜.sü Ò×î…lv(Gk›3yÛÊæì™Ø†À}´Ù ¬Ÿ%~ {ʧ<ê§ßYáã@gA×¾¾ÙÀ ›?q&Û@Ü®cÿiÿ’Âx.Oqˆa|¯b?A ˜ŠÀ°g Üá˜ç1ÚÀ¤¨‘RyÖc½Ò¾£¤Æ$KO‰¤“ÛKSþ­= ]¹(zÜ.]J`9é >ÁÑ'2Dܘˆí/}²Òà{ø†¸\òC3«zmšíª2 j*Í^Ry õÖ´QÖ3RõÊõ-Ü>ós†sSdtæ·,€áZ®mダ¯äxj{ö q*ÛÕ®YíMê8Ñ©ŸM.e¡Ö²°"—Þ¶YÍÙ‚é ‚º^¬ ç¼êü,†¿8ÁÄ8âW’Xª“`uøöÙ¹µu°<{rš&¨9iZôV,ƒÒíGr·“bñ‹÷tO»»ÞSÔ¼4K‘NçG7*Ô»­ î>ÒÌݵu›/‰a+j YÐà—³“éf•¢©¿zÆi ÑHmŸ­Ùu5c_÷æPn7qüÉÉÉÈ&5Lö‹cüí'hEÓÉ$$å.ø\Â3Ù`Õ3Q|ÙoQIÏD|Ú¿Tràå7 ö³IL% fo™06ÅŸ÷IläHØÔùÚ¹³®¥rËœVÜ^qÆßÊ ÊKVÙšã<“ÍrI„{öÝ¡'üžRþån/õìö:$ë[9ç©2¤ÙêQvÖ×#øŠg7ï}Kj=îVå ËÒŠ_¥-“ŽP7CΓ‹¶”÷H9œ%}íp° ²Ö% S“I#•¥Î¶ºO¡m{𼚥(ëYvÖS.|Ý n¬2iž²,;4ŠEŸ‚´”Y&'4s®W†=}sIÁ]صŠÛ¼¥ïN…ËFë 88"êyŒLÈqËòÜ&”{ í½tH,6$8–ûÇMª)öç=@¢”ªž"zPL±×‚lèºczÓ‹»³lèîëõCp Ò*A*"²8Ù÷Ù( 2_î®û]DŸP¡FRGa ÷Ìù"ÊIX.AÙdڳŻýb²;ý³Ý™¾çQw»Ö}¬àCæhÄ&îŽ4Ž$Å`*»_ô/½H Þ ¥¯Eðøf£õt®˜Èްž<Úˆn]øÐK\ ²2x® "ÊÉ,ƒ[¢pwd‹RCKÖSù bR &,:+¶mÎq–ÊRR¯zbì›^½\y^‹Vé^*ÆŠx‹¶]CMm*÷Ê<Àñ _KNyl‹ê6bá!ݸYí>‰±°ÔÖÓyh{ª²J2©š &Ù³4Ò xÞÃ¾Ñ ÀƒJ•gÖAÇ+~inÌ?qrr¹ÞåßY«Â:Òï>C¡Ï¥(Ï“ž¸ðmŸžò<(þïHP.—¥£ü€švŸÄ–áER¡áž)—>¢Üã#"8S¸ígJ¾‡R2†¬jSÎÓOh?Aé2”Tã^ºó*p×OØŒÒ1”Kü°(z¼ö p/!dõ°ûÞŠÃê¡t-«±É(™ ÊÄPtM›g`u ‰Ùd·˜¨óKóäjÛo8\Ð +9ƪèYBgr1íÒ‰¤Á|³‚úà¿}Ú6 ßdtÍÍ÷Ø–\KFžµD¶e~íÓºn„‘Ôµ³cšá³¿;·ÏæßòÂ,Aä0„vç…qÙZÿ”*áMÖQ‹=v®ó7ª6{£"è/³G¨°XZ`}MË˶RNfé1~ˆd™>ã 1CÏÏ,üÔøX¾Í÷åùàl *7X_Ò·ûå±TÁqb³9&•ÍÛ.U)¤1þîôxã$¨ˆå$¡€"TP& QSÙ´¿ÁCT; ]ï‘$ä» C––cœõ™àæ,hÂ2&±µQ\Ý™ýíÒ°+lzpÉWd+0KI€÷LÂKÛ-ƒE¤ÁV„d ’ýfãÌ=çt…ÇXFØ_ ¬ÜCó¾gÙäiéðXÚÙ‰‰sAc1½™•IÎú[Ú‰¼˜x.$´c¦{Q±'™«©šÁÁ±&“,xC$á}::ar •ž:½dLÏÕìzÑs«tÛ°ÂÃ.š+%™HOñ„÷EÎD5%¯ÿ\ à„£NêÔÀ©MË”CÏsŠùtpK4=s„cb“ÃoÍìÎ÷3:¤Ò»ù쨣E ”Ši’õÚô``"¼þc¼€˜&CIÉé}ꥄ—žç»¤…Û©³buœªòÓz¤¤‰™fÎ}ôÈ&å ¿ÿÎ1~"~õ}¥!‚M ² çIîTÊÀRaé aºå¸\«ãeõzÃëæ9Ô›`[¶ ›æÁ`7Y-xœö>að¶×¬„ˆÒ‚2̓n2O3 OÓÎ@v¹ ÓñbO.‡ZϵP¶ç;:EOåîkêÙ}Y4 •ï?W*?•¦iÊú!™bQ­'ñ¢8Z÷ŸZ®÷)C2u¾òTî%( ü?¿²ž7q\Wÿûi%Cåló ÅÖ&è,S”¡–áÃòàW`=´.Ò`ʃþ@ËŠ6P9ë|p?ƒõIu»/ØŠì¤b’…>HL Í ;ëÌÊ{eVzhŽm‰¾ß#m<\±Ì ê9óÐ6,}ð$írA¯LÓ–#Lz¨åbÛæ²,æM “·ý̵ÏÀ®bÔÛxxyVÉ`åùDÙ†6EÉ÷F‰—þ(^Û{s°‘Kv"h[$ùR€Cßy=”ØýÏ#Ô¾ûòÒ†võ3ù™ð‹¼F¥oÙ]¶¶›ô¬÷˜Òc?¸À|+;(ö¹„vƲqn+úÐlÇÊŽ&bQ‰¶¶W77…ÙzK—4‡ë ËÁAð23æ¦. s7êOU1Ø5K¾…à<ß÷¦îÅ~¨@d±¡ªÙbÕY˜Ð#Óº¶­Å ·^­7í‰8Lµ”Ÿ£\â×ܾI’µ:‘ÔÒž}ô!e!jÙ™Ø_gR\²Üro¿„g¿•ašçФÙâj=0ìïÍÅ™XŠÅ<“;«ßHb¾v/‚ÇêÆODü’- Ä­ŽE€¦ð„!~z{¬;Z,ØêÜßÊ¥£ ® @ ¸·#±RP Õz8QÞW@å®!É‘Õå—à Üó ËÜ.¼óí5ÌÎ%£)ŽÄä÷γ=T9”K+*ßó¶X£ãáGøI§ã¶µpü·W.i?Ø[Êd§=·­ {çÒ{! úHÞFŽX6±&u4ujmе~ËOØ@ìXö|°¬áÕP.öükA«:ˆ_Cç\yÅ7ÚÍÙæŸüPGuäÙæoœ;yý·q‰[÷w@«¢AàŸVÐç³vŠ_…ÝßñÖªÕlÛ}ñV#óÉ Ä/%¾7 ¡íˆãu½’x_ aµ™Xæúð°ZaíRçqdj78S¯|WF8IÖ¨ðÄ ­Ùœ]Îó%¤ ’û—sÎ p’/:Y-a?*ðjMü*z‹“…§ÂåÁìÃe¨ÿ]Íùi–’¦“Å-÷Ñ|~%«ÝóæÂGV¾®YSa)§…±½ †m9÷Rm ¡ÅØÕ^D‘f€§/ 27—iÛ0NÙ,»m{1Ö p‡rž …kÊŸç…’ÂbX µ.ôtEÎ ©» ß:äè V¢DGÛù2`#èŸäÅÞ2=òÕ6 -’WHÖqÁ¡ËÐ-ÝàÔæÏ\ùÕ¯/.Ÿ ²•‰*Om‘€­¶ØDï Y›Bï¼ÐÇA‡.Îó½K›Ç8óègιXP($¡ÒîUÚë•t=öú´el‡t*I§ÿ)®ƒpµ_7&ÇbVÒbVcÏA¢Ã1OÎS%q\N7÷ÃDIJDžžV›~Öà%$ÔîÞÚ¹…€êDRŽL9ƘNÏNÐí>—ûÑîè'wß‚èXÒföº=–Qáæ#£èÌ §•Q-omÇÆ¿Ã÷ž Ó #|Cgþ½ÙÁÌÕák,cš²ô`%ØäÄúˆàåš”"‡çEUžšÎXfjtþŒ0«p'Žx5ÛÆê4©Óyó(–9|9b\ÎOz² +å~7hv”ÄD•Ýoç{ç)êÝS6f8ü”óKõñjÙº3eSVl h l8«àì‰NéSm‚Z͙˱<4L°¨p·ß»¹Q7V)\÷Ÿþ£d"7o“²2˜çu¢‰Ar1Í«Ý î†ÏçB‰t4\¹iÖ;Èœçj¾9AR‚n‰!L“ê¬ÿ ñA€êé° õ(aržÅ¯þjë&®'.±§Ð{=DÊCI¹°)ã”ÇAÊJkHLe•lƒ÷MðQDŽnMÌU!%¥HRÓ¥ø2&ýÖ( –÷éÓ«K±†IôëéÌät¨AÃc!³¨ˆ_NR(HAíÅ‚zŸ7’^0 ”?ѺìÅ(Ç^¸YÔ<¢ÓõÂÿfäpõ›^3 SœO¡R2ÚC¨%pÿ±@~·¸H©ÙÉ–Ï„äAͳöªKÓ8?=uÑ]è(É>•c;}/ØT&¤¯y>PeT6Í‹v…Ô¼ûoƒºc»+ç TB!… PYØŠr"šô/p XŒ•ûïÇWä‚¢SItÚÿÖÕí}{ ‰o6›öé¹ïzO¬±¤[K}z±i!{°À :5žå!‹‚˜óLT–$Z*Kn70£y»ßÉ€’P¹ƒ8À A]º`˺Ëj»Åz‚ú XDV««ÁŠï—|p¾¹ÚC„‹ýtÍö‚‹•4ÕY=4ɤMR\½`NEœÔ÷[t©ðåõ¶YÀÉ1ô~ÖnfbNVbÛwBï*é#©Œ,W[ŠlspÁÏ ùÌÙÆ™%¬×Õf¿{m^Ãå´ 7E²£Ü";:ë‘…„õAé¸Å`×£Þv™Udø ¦õžV-l–DKCÙ çŽÅ&%–Ì¢Y¡Ó|Ç—½–Œ×ë /ç3¾e ›a²+··üŦS »»áËvÑž$½¦z ¶Pa cç;Qd l?¤ò½Vmú:ÐzÁf°ÚU2‡”ø•Û#éOÛ¬ùlÖyì×=ÒÆ[pÛ#å)w—o[}}oãŠ=³Ø+ Y­Ú¾<ñ–¦_0HÉ,¨q$ÚeŠC¢Ã¾œ®y¥b…z4ψÕ9 Gf•¢c§J+;}Š÷%ç»ö¢9×)ÇéÖÄyŒ¡áœ#5.©Õ}jKv%“<¤ìg }dU6žØtà ÝƒjÏ›¶’qF$a‰WrCZ7a¯’^Õ*vŸ#ciÌ‘¶‡¡ô1¸¦¬¢Ð5ã¥J¢.—×PŽª‘‰¨Ž‡ª…Ø8Ti{I]Œ!¿¬Ã¢ºá £–qÊPf½½Ñ?Ða*‚ŠƒehZr6úUzïÔ9RžJÊNZÝñ•HÖÅ ´KŽXAV¡bGPW=Ñ–¯5eü¾¢Õ6åÌ]ë•îÖqÃ៚^×kl`lÛƒ~×­™õuÞ êciÆYï¾BŽ 0*ª¸£g²œÁ€ƒCéCévðtUGüv3(±½ßžlù¦©ý’5ËÓ´w`.ðàüº=Œæ«Æl KåW 2ÄD&Û.Ó_7ÖƒüŒ"èÖ1'Ô¦Œ/Œb‡EW¥fÆ–¼]Ik5­M?ÀË!ì’àxp EkÄN{ÑJu³ÝAå'þ’4/9Ä,W oE+Ö•4Ó7˜&4k6ƒÜ ²+›VÚ¶6ÍbÃEßüùœ-`Ï䙳ÚÄ&¾·{LL3oÖ&³¢vïwífÛžÔ‹¶Ý¬ b².Å Èf"h£ú²‰é´µÉL‹fY¨Ó¤º>°Þ¶¥:ƒòõNml2”TGvÇ ÖxØÃMhz+;[$-'|Ò¿†6ÑÕ-ùh _õ ÑØ6@G^ш_ÎNùÌ[¦¸ViÂÁí-ýRxê/ZÜU`À¯[6|·ië®üt¢ÍàV’œ¾Q!ÄRȹúxÆC ·Ouâ`ÿ@øVõ_]ûlã„U¡ªSäg:ÛâÑÿŸ½ÛuI҄ѹ^O!`€º™EKÔ¹1Ó€“tJ ¨àa­Ô $ ÙYÑ]‰ÉÌ(DFõüóHûf?ÄÿdÛÌÜIúÁÜ¥PT°±wNVIûüdnnnnnÆ–‘隟÷Rg®Öù¡cÆ}ÿ4“SrŒ‘ÓÕè@GR+&…Ev¥ÓéÌPQâ_€F#¨@Ǻ¿k(•yL~?C¦óµd‡K'²}'õqsoøÇ[›Ñ/^ž¤ü±ÚD ^€˜L¢EUSÚ(œ¡ïúüƒ*ª¢<£›©Tñáá.‹Ç±hÅ>Qǽ DêŽj§²ž¯â=!#5T\¹ô¶¬ê¶*¼e,Ñç¸ÙA¶áB×ç[‰–Ë5Öb©j±œyÊg?˜ÍDä/³c'GÖ1^f(´O‰Ê­œ€:nù„/’5jY|e4Qà%B=%‚¢J%éÚŠtýq1[.‚°Š&ð‘žàwA°ËúcB7B„‹*ê#P%™føÊËõ*K4—ˆô¿x©Ö^ë¾ôÇõ‚nu‡(Ó0,"=ÁoA°ÒJº Zc¸²Š$ô€ž’‚vŽI!ìž].4*ºåÀOËcÙ^MrEÿ@ŸæŠkæ³¹å:öq±Å“Y¾nó§ÒÓ|FIcçÉ\Ø<ÛûCÓ^"ÒS¡J.à¿¡?2ìåå¯oý÷¿}ùå?~úúéùï|z¦oÿåÝ;û!Rþ‹J^Ž“vŠÿŽã¨o] Eù/OOÿuÒþõÓä§ýüŸ&ûòùoŸ¾|ýß“ÿøé׿Ãÿýí×_>ý1ùúy²™-ç ~þüøêó/¿ýcòû篓_ùãë§¿Lþúé˧wˆôùëO¿šýód6Ý.—³9–ó?¾ñ?¤IùË/Î~ýé?þGýË¿ÿõëŸÛÏ>~ú·¯OOS3¾%te*È_ô?÷TW˽á$>À`FEês˜ê"ù©æßBÕTRvD¹úJ¼´E‡!§¤N—RŒ´ƒ’«i‡¨y²x÷Î~ÖŠ€ÀçÓe‘ؤ$éϯÅ“è´0bô©—®eN÷ôî>~Ât”ºpÚ„ Ó&<ºÇ›]ü«f/®åéiºÆ=ünGÐQ©>Ø‚ñߤ•@Z¯£0„~kh)ã¿ÞƒZ€qW¦ëbÔê¾€¦îýÙð{rðAw´‰¸T¸á½ì¥Fª^Ý'Ü7H„É­®ù ¿•Tt1~ÛülWuuRñfT‰­8iwŸ§)IÈ)ÌL—=ÐhßÕä¡8pF¨õ·'Åf®òHâšä…ÔKLW}íZ@I ¨<5É7—@8§~Pa,Fv$åz$´f™üÐQjkþµ8Ÿ…èxAÀËÛÁd兽ܘÙ{/ŽÈ”k=%ÓÒ—Sãý~õ½Q:*O…K0¤¤$¢ÏmõLòÚ-ÒYî~tDL¿ù®´¥i_Ö夞(ÒÄm ι @ üÿ°&‹½+sèú =_¹ÐsWv5{Ðð•1 ÿyåØ_¼„Пä x6{€ÇäJð›¹rmé·²5I]lŒ “»ØÞ€úó$O)r üÎÜj%nµPÐGªŒ){|Nà‹›à¢gr‘±ì·ˆ¾"ô" ºGL ÄB÷Ì‚ë‘êZPUÔáüYÚÕ^©Û¦eÕŽ›[¡.šZÏ0#PoBcâTD ¨Ô¹U*mß<‚Wì+¡ÝqºQ×­.÷~àP(+ôfžÝ]ù7j-EÑaWomø° –§‹¬ñf$†ø0P+0úÆÊ*c °å­ì5(üTEŠaQîTÊÀÛcXÀ³3 öà!H±P K_TYߣÌw1t»ŠTA8íZf£¼GF‹¶JmgKOOºì+y.³ÒlL=ÿq‹—Ïb¥R»N+ Éâï1]¦B¬DÕJ™2ÆZáÑ57kôîý Cj+—5§õÇJ§ïŽ¢Ï¿1Ý*ÎÛ¦k«Ä%zÌ‚^]¢&7^7Ô¼¼¥ßg]Ý ®?¹BiµM3…›Û½’¸=ݺBå ƒWy,Ú}ÃaEÅ« ¢¤*ªðøÊ¯b^RŸZ®ýëò„3|›©ÎÉ,v£˜©9À¡— 6&ü6§\ï[›‘)Úa¹çßXÇ´FBAv¬Nk™ýd]ahÏñ’%‰þ̽͡O@ñd¼§”ñ– hmÍ9 Œz¯pHÌ gÑFC®O¡‡º_Tªi‹' Ã#ØxÊ1žX*¼åÆšož¹‹ E6ð/Ј©õO¨›.V{É £ê@É‚%45f?n>ƒ/q?†òWЕ`ø#½)éÓšì|[”q³XKK!\ã;()¤ozm>Ãvió^U}û&¨É[Õä­³^Ì9\·ÉìÛaÉVA àÃÞäoÒ}o®ÊzYô_¼Ò²&2W‘Nm uÁ4§ïÕ” »»Ø²i§Ä•­–T!S…å/©‰%Ý¸ÇÆÒ* Õ3ÅÊžk Ѳµè@x‰óB‡np‘aš:ÒmýâE6­µD:Oö¸Äª ÓÔU£a”gå꬇.†¿ôÆ0þ‘êÓTiÈ)§!óä–ž|ëS[N•´H×¾fæâì⥼ÑëݘµjŒ«æ2QÔ±¶¸_XMQB ÝÎì¦`°†nx««¿Ý*ÔÌæÆ…j¦,òQ)eð¦wýi](tWÑ^ûè–|gÌ#uyrš-¬}&êEñ›êèUõa_Qð­à»”.MÕÇi–Žƒ®NË™‚…òwP‹»¾{Á:¦™’ŠYq Üò]ò ­· ¸ Øéè• ìJqîÉu9¹‰ÃŸÜÓw€N\œ0Þ3ÒÛsËqÇ2SšV’V rWÍ1*#5Ý¡C5TÅöœêXœC§RFbúÐ)ö9-j¨Q€‹Xu»Ë±ÌÌ@SÔbšoBÕpÇ”y:Va#Ø0žMo_Wd—c×h#·zp*Ïú «S)ì!^å[i„=–°wsžáÌÅ(ºŽÎÒŸé¯÷°á‘g« èÈÿÌlfñŠ=ŠÓ &&"­^¤[‰kÕŽiѺ9#Ò‡PL¡Ïñf!p—û óF™ @ª’†˜h­(XÌŒ´£"Y™sJûüŒ`¾*¨žs*q‘¸f¥£­ êú FAÐMžshi¨…â°bã¯HÝ]wû®fšm¿8J’sÅf¥À¶žà7hLMƒÜ8ïéÈŠ ŠÌQ¿0’ᾪEsòGÇ¡–§‚.aÁŸÔ[@ sØÇƲ¡†L‹Â·ŸÉãÕ´êª OûA!ñùZåè–§,µrc5ô Ôæä9—“Cy‡®ižâ&5ð~5…ÚÐv­Ð}C•MmìʸÚMYuäv1·DÔ Hä8']IIÒA½²=wqÃ8©ËͽœT4fø-#¤ÊÅ"u.ëÌRY)¿Œ'}–RÑ6ß&=}ŸëÀ ˜£Tûý‡´ß¡bwê'ÓÍú#ýùj>ûœçË¿cÅ~úýÏç¿ÿö¯Ÿ¾<=MÉq~õ°<›ýiç³Ï~§i‚DéÜ$|ç;ôþUwÛWŠão< CŽ1Ð-üÏü¾ÂâV¸á_¶Žò‡ù5WÉì™¶½VÍc_P{’ézz_u?_¼{¿[¯ù+»ù(Ôìöëòpu…_@§BHÒ<µˆØ/$‹mê'È¡ÀBJ`ôckmÄš(Š9ÆÌØŽÅï^Ë×X£3ݧjRM‰î­SÒĨÊÙêÒÒ XÎL9c=72™²6Ëh« ¶~ý†X–߬ýPÕ._gt9t­”ÛféÞ!¤‹8vwãí©:W ÔVZè…rÇ?ÂÌ™9ƒÌÉÕQ¹1Š”ki#)‚‚ÓT÷)Õ&à´Þü#…Góéo?}ùéëg’IjM¦×4ñ¿AÇÄïrï»Ñuˆ4ÁgÒ@qz š^© éJC…5÷0‚Ù`R$µ!’Ynœ¡/i² èº µ¢ Êcÿr)J_ 7¿ž{_½©¯§›}ZÓÈ0sÚ(¢˜Fl¤°Š p_òd¾öÓ—ß~ù}à>»ZÓ4Ú hþ[x_6cÞÉãQŒ_.ØÀe™Ô‘qáSAë Xº ¨ßáΤ÷š¦S¿=xUD9ó¿4'Ö³Á€Óå¦ð¿ò¦Ö (PŸÍkNÖÔé×Ô©p[Iz¹P^Ðé̓º1ÞKó|¹G_ ¯:C*§+·v嶘» Àú¤°¯=pRÃ,—Z³Ÿõ i¸z‚úÿ(m* ¦“Ç”ï†ê³ŠH‹m˜By7?—óȸ´{QâS-ÏÙµw‘OŶÏë<Ò’Ãþ„G:a]Ê#H½9©ó…7®×JÒêR—'ÔJ‘*gM£LréÃCùç±H%/uÛ§„®B„صdXBa¡R5E¹êO[[®>Wõó(Œ„™3ÖëuŽ øqä$b†ê3Cô¡Ã€TíUûvÉ¥?fcZ+ÞÃ- Œ#,ч |™ZÔ›s£0³\x£(¶*UL#òÎPâÌŠÓˆä3 »r’tH9s ‰;ÒÐ@ªº^dÂ’pVqœ^”š0¯cÞß"G“ˬP~ú¶@V³S¥¶"ëúÌ*p-Lu¼ˆBåŠ`Ïékqç]§‹¼sÛ7[>°éÛþ#Nñå§ýåçq÷"ÖÕT¯Y5MruÄÍ‹Í'õò¾Fá›” ¤dhû WõtÂ?Ÿ?ýýë—Ÿ~¥åkFK“¾OVYz‘Hñ¡Óq{ôwš¬ˆ|Í‘ ôGµ ”ã>•ÓãŠ¦ï ºcÆ©™:s[}þIÿ›ü»Ýï…ÿý°ÔaÂé²ÁšÏÓðg<•ý2;'Ö_F¢ïš>m†x{†v¿mØaø"Y/ìMS®‡¬S4ZŸ`ó‘›} ¤K¦ŠVGé¼àúZ8RdáFÕò†CNF-c™û_Û=ë =’æê›‡áîÉðûÂ/¢—xÛî¨Î|VÓ0,Ì9"®ou Fì¹U^û}2è&麮ÇúfxèL‡ôèmyÌUÌ|ÔáÂÆë€ú¹3Ùnåc÷t)Æé¡coüp.ÀºŸú“oèé¼xµ“f‘ðg]3j —«æ ÊŒÉ/ƘŒ70ôµSºœ:ñ¤‰ˆ Õ¹‹cú|äò]‰“\æÃ×> ->‰¬¦Yž.ÂQH÷‘Sy)+ò.å1CY‰ƒS™ç˜X¦"²HÇg°t¸SH™ž´ï ÞÙ•)‰­Ô[ƒûìKw„͗킽Å\{îK•+F¿FÎH™)íq³}~ Ú Ï¡£QNBï=–ô° LïØŒß&)Ú›“Tß7~Ý ¦dôãbéÞTæJØÔ¡Å8É–îhQLV‡”¤mŒ0$ýzß#øŠÀ §º*œ¯Ëª>þv`àÑ$§êç…S}Šjç•$8]ÔŒF_ O¾cB‡a"‚± ´©M™z]´öË?´µx/^“·ŽûÑÃÍç¨mé }g­ÖA)¾`¼9\˜—ªÌ0´PùÒ|œùUwÖ©$ŽݲO ¿ÿ˜¶a÷ÛCÌÑÈ&OÓùÚ—7£L¸1Ⱥbñùzn‹"€2ðÛ!óEå0Y™3Sç¼ô*r[¦’â. y×í&u+vÍd‡.}@ɨŸnQŠ)™[¦ |­øÛ—ѹƒ”PælN)«µ58Êu«³ÖÒí¸–o²5B°¯€“Ú§ÙbêïCI’‰³ Xå YfM/Sf«mdS¢¬¶•ýÕÍÕ–é®OÁ õlJxΞƒ{—:¼â¡(QÒaBá2ï.µ8=§:tê¬kSSô_úé‚ñ&Uºá´¬wX´`¸×n¦þt:p¤h«¼Â :íЃJ;°™ ¯ì…Yvü0:£¦`Tg«²6ët.k˜8O³í‚ÙYkËSÚ)éx¬*ü/9o~€”Uû&õÜ^EgÛ¶…+¯?b4§³|E/nXΤ.\Hg|rqy¾ÐU×*C®ˆ"£ÖÈCû ë[¤i Èfî·”±™¾Õ¹’Üõ=,ð’s©pM¨,'(W r¡ˆ’¹÷ ãcP O-5sÑ”ÂÛ€Þ±1@«}(ý@(û%¿ i<ÕNUž’éŒ,3‹Wþ¢'‹âêwïŒLf¸Q‡ÏWDÄîõÄ2I¼{§Ÿ¶ fÌgæf»ÏWål 1¤Y{Ë0edAÑ4PÁç-C™Rƒ3·²*6Qâ®à¹—v†R·úÎññ™ÅÃnS’ÑŒû6ζ‰ÙÿbSÆÛ„VgâÆnºùƒ°ìPš™wXh×8KòÀÙxt‹ÇCoq3QK¢aƽ¯o?z–‘†5)$SN­ø7Ç1Q„€ˆ),“ªÑˆB¢PX­-©‰cIí8`!ÀyCW,t"CPèhrFTs¯0Œ½‚=„7!‘¶ïå¾ã'iw{®2êÁQ¢Ú2 7>Ø3<¡êg¯qtgÐü5œ« C¸ Ê,¹Ê¸uuRöý¾_ìç1ùzõ0éÖT Ò­Í>q«apÞ8jˆ9¹u¹Õá ½šÌ2·"ä§8Vä­Ü½‰?0ýÁœÑÒ`ï¸M¦¶÷4q掓ÓÌÍÙU¯ç8šæS„Šè’Ê ÉÃM•¡]"fagÌ¥")S¸«-U/eÜ–ª§¯û²q0^‹·S:%öð9E¹R<ýwïœe ï(XáŒóÇd¾ú‘¢àõ„wïÞðл¿Þ¾Ãè¤)ÆW.A‰˜“b6ŸúŠ n Kq’í° ×÷ËÜ|zË÷&“åOÏàÓ›~7Æ·ÁRî-ü0b`V Ã—(‡ç3Ï‚†7QÓªmazëZÔèsi?ªjLû“Ìi›=OÜAS«\uQ§°ç5Rë)¢$„â#€Ü9óŠÖUyM+`Züšé7³/ÜíqïK”L/Z!Å-õ|îJhå÷V‹Föz9Ö=@qG½ò ûñ9ãRcÜeîÜKP¾Ôæ}Ûeéy@uÓ48aˆ(9Ö×Öht1‡Îæ†*ê÷áfž«H,Éç7ƒtö¯uøùvEX­>é®OÿFjH”³7è3&õe:wZHa¢Ý͈T÷Tf¯a†k¬'ú%K’ªËÔÙ«~œmæ(t~ÀKޝ0ýŒ·Îƒ}FáMt§i‡ Óˆ?‹…-î…—ÙÔén µÁ–«ÖŸ1 €úÈ–>~æ;¨9u “"s- w¢ n\©nͼ %3ÔŒR¢ýuk–ÏeA}à.™jÁS$47Gde;R8c…éŠR²Z9ÇÿÀ¹³¾ÂMÊ»WŒcÚ5xE ëô~@Ï8•þLHó¥¾ôŸ¯©Pá‰&HÃ]Ms…fÊÅ£¤Ð”SÕQ} èX’¬Wk·æ ÎWÀN¢­ßxÃrŠÕ†MBÝÍõ*¢èÂ=IkªÀ HQ 4¹gL²è#ꂦ/Ž¢m%n:£‰¨P¼J‘ók£G+°…9Ï6;ç¨ÈŒ(ªu7 ÷srñÉ»Ào®™óòÛdZºf\d輻äoHFõk̭ɯ–cñþdiÙr‰1‰s³Íò-¶˜v¾…PGZoMFݬ£¸.ç]*ÚI`i¤E8øazCÂC[T|Ö©§¾/(Q (æ–xÖÆ w×?œ{ªÁ–ö<”Q~Yƒ“ò‰ÉKho£Vêe€THe'Ñ—Ý<ÌyÑ}Jáž t ò+T”·Or‚¤h¹XË¥SsÚ„Võm®„ÊçꨕCµÖ¢2E|-™ê \e^B¡VYˆƒn¸–Œ³Þ'DP(±åīгwY3~e±:xä±ÅÄ+Üòš6@b ‰_‡Jl IHm_3Þ«·‡&ŒYJüª‹¦u´–‘„©S†2Ó­=]Ž á½‰T?<å h˜ñÖ˜À…ån7Zz(~\²Ý$6êÇݶŒ­Ï¦ÍÔ‰¯Ø[Ò ãK{½H}5ð™eÁ’Z£µî‰³ØÂ#@wK\)2«·››’Š¥bdA_”ÑT*lªwÒ¬&#>ù´ªp8b1q NÑ;–2ÅÔ«‰W4Cþm—¬ôϯÉ(½erï8ß7"§ºÁ à«zk×6vÌ®J¥Í#3×ï®— ¶eÅû«fµr˨ŠV½lÕpø ”ŒjhW"LzkÖ‹:3®Žìµ½9ï‘Òº8hG&ï£Ô‚ˆˆ 1Vƒm@D*¨I»ÔгÝF$ƒž“7¶(ÖsדþãjN¶rÚä¢ÃPoåØW]½;ŠEZ~ËÜýŠKÈUà÷7mÞ.Á-÷îc—ì¦<@‡vA‰ÊÒ#)>fV%“]y.0èuŒÂtÄsÛ"¢ŸØ5X†^p´œmqë~äm<áþɦ¤ºkZ¢¨aU&Q™ªdÁ‰¿©btIЦ5nzUzÞ*/hcM)˜Uê¹P(àñ®wžãQÂæ£êv{c›‘.–„î{½XGlž’c@;ïsM˜™Sc² ÷·{éÎ)ÚÍ•µ[]fð·W^ô‡, «4ÍnÏcR^ã8Z›ÙzýÊ> §{±ÒÃL›Õtëf —«a&›Y Åj¡’ }/n©]×ì³)¦—­ß¤ô Lk”µè[5˜ïxl2Øi–)%è9dxS:{#¾”jøÐb”ê‡ÍÔ¢ISb –¬@™—–Ûlï„ É({GéMŒÐ#þK5 xc2Çå3c¦ðà2¢©ýàà@&©F…W£d¨‘_SU_ö 7ïhê u4åÔõj¯`i±¾imÙvƒíIö«?ÐòŸùKa–{ÛQÚ$D”œ2k½ã' dÖz«@®º9³Ú»¾ÌQúõªï e-JtÎÃCÍúR…Õ£®5—ª)nŒ¸k“»IgÔ'â/Ü›å”‘Ø º%J]Äo™5ͪž&¨NeÓ8ÅÜtÐâ|3S¾ ¤d^‚ÔDÚL]˺˜3b،ѱú[3Z¨Òcù¡“ý… ÙPü[r¤ h?ïºJÞçņ؂s¶GúÈ¥Ií­ôß!(ÐDÆE-ÚV…m£e@sk|ðjÎ^ötN=vñmßþ0©VZ5<8OSyÄÅB&̾Ū½©¡X®Û2aö)võ#´#6n†¨hrSÛœDìÕHcÜï6ˆ"¦i½‡cËŠ¤-O —.b³ÔwWrù*®Í¤3©"FÊþâ GvKùïïü›Vy;Ü O†çÐ2ñï4 múµRɇð2-ªäã3zµÃ¢Ößݰ/’¢¿ .Š9A(ÐH"I¥•sW&/=MJ}Áap}±‚ƒ%5ÂòäUwšjij<‘—? µ½ÿ'fDèÏ7tçhåypdêè©Û»Ð3·ô\8¾E$šÊÐ:˜\D&’qË'rUGb–føuÛF™¯±ùjæCut”Eõ§>cnmG÷’ä,—¬ßŠ®pm{5,þê1)´ÞêÌH¿Gô„ÐnÇàúß–¸õ‰èz'iÙª³fù⥜HœpzwÚzC¹|èÚËH~ËêÀQëAnšîB‰X'‡‰ä_ºËˆ]r cî\ÈXØ'ÓC+3bŒ4IÙb™å¶ŸƒžöAI&¤õ³Ýfï 8åê@^¤@‡3ó™¸yYIß/s³µ²=™ã­GϰMº1Â¥KkQ‰¢¼KI‘;»FØÎcöSP€~(• Ô~V»aèl¢ðoîâÙ„ª-7.jŒwÎôÙ²êàwïnÔZÚ`¸Ù»wðËÞT3H¶á‘,Œ§š¬@¹ôò^\ÄY6hÊ»¦%ÅS+æ°9î·¯€pkµ´-9óémÿPâNc™Gw¯µÌ#¼aïÒFe“âv0$r²fyt‘³4ëDÈ%œEœ. ‹ìæv™Q¾hƒ6âgaZcyâtæ_\ÂK/UÓê` ïÞíd+zÎd®cÙµ ~çúnu¬®aÒ[zfïÕÆµò¦¶#¾ipŽÓÎÙ;Ú\áa€[sŒ=º›s,DÈ̱~Ù û¤"ÎÙ›Ú}ŵ͌Âåjb!‰ÿ,M ëhÜžç(Éð4³Ï¯Š¬=)T<ÏyD_%w{Ýèù kO2ªcæO&Üü*q¹ßQ ˜mrÇR¤åq6Ÿ¯×@?_û#}Žžùê–Ѐ9úˆÁ/;õw/ÊÚ0 ýÈ‹3ê¯wâø´È‘á¹¯ ¯È‹ï ¬}R§%{PTð}ѿŸ˜_¤~)'žQ"#‹Þ ‹Ì=$û¸„q¸Žªù Žfü¶eb5ŰÂvD´A[~ÁÜ7JKÆÿiïlÅŠóìš/xÚ3† †ï#Aô²k Ò¾?€Ø?ü:b±¾¾ˆ«éð$Ö¸mkËL¡1ç§q_’"O¡¯åyra5ªh‹}ÌÁghÈi»%ÎÖT¢~R%îôbWÚfJ>´a8ˆ­X'Ô¾ÄGÄÄæÄ b$ü+Ò/ÑøêH~gà‡5ã ‰d~´b±I6P×Mâ_ŠÆ™x=Vm99G—kOÇzžá¥™À»€bBGøõC½`ó½Ø5Ï1ÄÂÁÌÆ:…yÿŠôŽÞ(±ù“HWÀØðë‡ÞdúT騠­ù©•hx÷Täóˆó:ëK –Ѩ"NBšÊ·5”(¤Èì&[‡2ÚÖOF÷è1G!öCTCþ𳈀sÉD§Ž ׳@!¡ _î‘pqéÓ²Á¼Wbož¡.'qÖÿKÊ“_[ñö&@G„]ùñøTHÊ’É#­U0è´>‰q­é0µ„»ñ•-ü ö¬©±Pñ@Gìm7 Ã«C¦°™Ñçû°(\ÊûYPr*ü€Úžh׬âÜ ¢ßÛÍo` &õ[ßÕžŠ™Sa–™÷çû 룈Ý,M]îcŽAi[ð=LcÍ~9؆ïâî;9Úv¹¼ïec0bA¾§‚Í>GLÌwÕ4Œ±AßSå   #6ê»*ÃŽî©6kGØÈÚxW•C¸‘ÕóžêºxÜ1Ú7ÕÓŒøÚÞ5µlÛeÁžÇ}ÛÜò#ž¹÷¯g>lÄo÷Ö23Ê…¿ÞãÎM6âD¶†áÐðI¿SÎ9¦;ü^Aç#n©u¬ß._èK£ú W¼h­ÂüuNÖÆ®O¥1ÆuÌ]¨–‘ÃaåÄé¤ 3Ø6Õ˜¾^a—lOõµ’O=ôöF{@igZîØ‹è1d•Ë[icgŠˆ[PcFQî2;|4 óèbaíÆâ‚k““†-7°"|ź#*#•‘~Ð[€nAÔÖ¾OÔWßN¤‡Öˆíô +Ø,èæïšX £!‘Þ˜Q¨(ðˆ~ÙlOc:?ÈñøÎ±œØŠ ÙÙ0’h<³BBääd$ñy¼ˆCŽ„ ŸÜyägrê"æÿf$ýeE ðà—Íe¶ÊfñŸQ Ð ÄLØŒRæ@Y2ÈNkhòDLÕs:Þ•÷lÔw¿C<ÎÆ|wÇÌ/4’ƒÊh¦gßÊH6*£©ÃrRpÑÃý¢¬ UEŸN‡:¢°`Dè˜Gs µ³VÕ7ô¦Wb$ ÚH«ÌàëˆÂê4Í¿aXLš¯`EYúÈêŽ'QŠÞ\áü Å*â 6R³zk±Š8WŽ´¼ŠZÐ Q¬Ø°ò|µµig|ÉG…Œ_3rwWc>m&îšÏÏ:+|ñ*?7R‘  Õ"T(û :=7#ñ–Òtû\?:#d]f_9Q2'Hö¬l¤Ó_HÒ˜xft+¨~Öõ+•À=tÐÕ'$lHÅy¸vJ9½ñД Oå™.Ù0-T´¢pºèO…)V0ªÃxà…î£Ìã§ÙTGîe'Œ;<6{­jóX ¨T&çF®èÈ~Ń™!®>²Èe¯NJZºrb&ó¾uŒwUðÐlr:cÀ_ªb6Ö9·Ž¼¯o Œ 1‘•’L§g”-m¶ŽMy݃]¥¨m úšUx=3q04*þIJ éÞÆ°Àc-uuF”ÌíùaèPº^»*ób«úέúãõ ­Êü¡ç¦.ÛÀÞ»q(P]4jE7©÷lHöž t_I¸Òã KçÔÓ).§®ÍVBô-›ˆ4…e¿´¼0D½“ÔWä‹L§‘hJ­)¢–á©ÄÐ7îÎH%ï3‡Ì¦è÷ P¾š‡¹(íñe`K§IÞ£!»;`QÖyü“Y-£1p2 (gÑ>ÄŠ™{¤JüZÖGóÛþ&G•e6+08%þÉœ ¿éó‘»îYûüD*•Sw ÌG%BÈA3Ÿë ’‹€N;Y(/° ”Wx,žf+s)qY/“õ'ØMç8É2Ê“eùÒ,Z9\v—ñ–Ë®z>Àܰ#rõ‘½”'"~v8S8íY–+\‰ø ÜÇLê*¢öynE]þO³|†ë þ¾<¥ ]è©oßUu©C})© à$T¡Wµš£§µY+ V‘˽2Ú`è/ôÙ—m=ÇmkÎ;@ZeÞ*133£z¤t¯P@§#•q‰ù6eõ£K€%xÀ Hq'ú«S6Uøzæ÷WŒ.Püz~' µÁ­ÃŸ·‰CY݉eÄ[²FcmÑø&€P…ăxn'eóïÂá«'%¥Á‚?3Öȇg¡¢ORž”8Þ‹}äº}•(b£„Ãç9V  Lãð'IíÙ‡ñ­NbÿƒÕ´ä^ÝH/Ñòa=Lj˜ˆ3W8[[ØÍ¦˜«ݰRŸ[©„ð0ß|Ù«ÐÏÓü¢ …Š1®­Uaù#æè»Ò}tÿVXÖ£-Î:ôå3JMÑ] ÿ7Àtî?Š5Ø8¨Íõ}…7J)S€Ù€ϸ:ç.¤’ýh®@‹¥ :_ó Ù±K]DÒ—çdp Þ ÜlšYZ…ò5ÕÁИhf¨Ñ{b¦ÑG±°\•Y8ë•áìFº§º+s¤sã!X[uðJJfáŸõÈý÷Ÿ?ÿþõËç_Ÿñ³y÷Îü÷æ_3{ëëW1M"óciÏR$^cžúéfᕼ²ˆ×…M¼Y ñS”OûLGcɉM¼YÙÄÛ‰…u攦püÏÉì+Ã_ŽF³U#MÃS2R–ÈiîÒ¡6¬µ`:m½Ðt5ž¼ÙŒ×í§”h`ºZx0ɨ©¾DãüKÙ”é(mºZúuþ]ÿû¿ùôǧ/ÿñé/ÏøÝ¿àׂÊ)¼rðÊðy_¦%éÔ'‰Êà¤yå·Æ-ímq@¡ƒÑ9:'çhY8…Sø«ÿþûçßþëO_~úùë§/Ïø-ŽóPÂÒ¾äa÷»Ñ[çê9­%f‰¦ \]€†ßÛvâæ¡íøm>~†_Iäníims* ßúµ‡ÿþåi–f´ƒ…?s§OU‚º%‘ˆ‹–h{vµã¹ÀÚë~ÚKÓÊ Ú×s² ®…ƒ»ñl‚©Üa$K‰vSç•ÄLÄtó´\jãkñŒmòLµ9Q@É=@ ”( ¹šß4gæ h¡€÷-X …Z* å=@Kh©€V huЊZ) µZß´fÖ h£€6÷mX Ú* í=@[h«€„÷ H( T¥÷¥,Pª€2”Ý”±@™ÊĵÔš»@y4H("û—'ücÚ»mÉxÄ»‚ž¸;ú4¡òf…#‹§¦0¤ïܲf•…÷Ÿ$.ÁVY·˜ÉGìúå+°…>ö…nÝ[°ûØ8…n¦n¡:+ÀéîóÕÔ©ö¬p¨Ÿ¥îç{L²&Õ€ãzp¨®¸ Lµ˜Å¿Å );åÅìTAñêáb:[ýÔÃóçßÿøÛO?ÿòû¿ÿùôÓ—ÿ Ú!Y¡¦ó^;87'¨ù ‡sF¡Oiy¦S2É#õÏ1VßÙλúÃÓt±el:$QP•r3RÛ²=V&îx±:ÔWÌÅ pÝZ ý {†tÜàõ'¨ýÑ4ó)^‘*+}xý4]na“1]¦¹[ÿ ´IPI^ugLd{ûÝaÔcÚ{O0ÃÝ€RKÍ1:ÿ³(jQ@#—•œ%~Ï%?Ú¸}RÞØöcõ¡µŒAÑõ=µ2¡è±ÚÊh¬õ½íø€¾™ üÍÚÓt…f#ø^OâÖSiU¸ÁëqxQ­RWÝöè{ÝÐÓñžšb´ƒhjØ‹±—.ïª ¹š¢ jAUòÉÞ‹Ó›Ðaô¦+;OŒÓ¸þ†œ¾Ýi$ΰõê7*«<ó»y=¶êM·F›}youÓg>]hºZ8M&ÒFJìRÜËOWrá¸â ì-ÐÊìï¿?‰<ÇÞ”k‚ݰìâ“]åžC;WÖ­§ðëM Ò5•<]Úë'QMqÎtä5 ã¡ØÓtm‡qFIg¨bGI\ö@Ž'YÓõÂgÄdýcO~^Ù‹>è¢~˜Šº–„8ÒëtÊò2¢œHEQK BGÿnºC²–È«ë> ”Ù!°q9*C€ÑþÀ¼bl¿ÖŽCtH·£æ:]ƒÔ¹8·â ]UÙ`VqøÝúUÁÝ LߺD’%:„ÛrÐ?š=â`“6 ß$‡H^ÈQ]±®]kbê­5ŠàÂM²$Pf嘛 •ê.ÀìsK˜ 3.˜”Í£ôš~–º\`5—¹LÙjž0zºžEaIF'£þÍN’_Ýà¨>Ý`Ügøõdu¦žèÅv˜ dˆ¢É«C'¨y¼ÉpêmúìŒ&£/¸y\ˆº)C³YKæbÀõíÔ[šhë¯iûTÜâtÒòõÝ»\¾ÀLØAGêa>wÍ‹@ ¾µ¯:ŒkÐCSI¤Ëî£SJݡŸ´nŒ€Ã¬´laU{“UKŒM;·/e ÌTKªÆ’áðµU H@Õ#-êZvØ'«qWÌtLBÍ#Ç \ÜBÈÃG(`À©<ïàÓ>‚#h^³™ÀôÛ¦±Á²èú‘"%h›1+æmÔö01OûÊ×5BÆÆÊªÄ0P’:Tò)ï­ ue!ï© ôâ¾ÔBàåøåÃ]WŸºÃ¾Ÿ`¹8¨\2ïÞÙoè!€EçM¢ÇDÐì‹åÛƒÂ>îlM`¼®ÁQIÉ£á<¤Š#ßçM5Ù£BÌœ˜YS\; ¸Ìœ3gföëcpsä%°sUâ|µ„DYtí±èúQÆvðËt)EqTæ8tOyz•~ø ’ѱ·ÐtM~y­à„.†ŸèÀ £ý¡Ùsùõž|ÎXžü"¬lªý>:^J=ï¡áy@„Ô¶gŸ›¢<Šr·â}]ˆqóãFË<Þ¨W”}›ò ÛmŽ}ó,¶…µèÄñù(`aÇÆäÔ˜œéX4sh*£ªÙ‚P6Ï æõî]ð“‹ê,duGÕ „¼Ü @Îc}Òî1ŽáÖòÿÚ‹ó3è¨-’¢ñY‡òv¹iƒ ¯Lfæã˾<·{ècIÛ¹>ØÆƒz´¢<ì;ï |t8  L¦±†Eeö 6LSQ›Rf¾mt©Jtù¬è¶½eW˜ Ï1dÆ´f­`("+ e¬y‰uà—1ÞQò˜TÒõ6 \Ð'¶¢‚Ÿûk‡×)0—Lè£&'ÿÿfßí(jÛ™ô(Ê.¶Í$}æçk9yCæ)æ±#ƒy³«êIÝ Uí½m#&Ï—} ÌR¬Qfk¯{Ég©§r•ý˜Ôïe*8VkRÀxà ¿Ìd]²ˆCÀèrD¦jâ„;ãVwSÁèX&+U‡8µ¼ L8¬{j“#ÜÖƒS–鞬KÉ¥(ï%õ[†‡#þ7Ú”þk‹I.§…ÏøñÒ[ô|à¢üAæÏ»UÛ"‹ «E9¸\D~“].ð2f‚×tÌk‚n:áŠfÍLæi×ÔÈA |P‡Þñ£*•ÉXD˜UÝ9+1‚ÓewÉTœÚÙt{Œ5ÚŠ6:³ù9uîŸÆÒ`Ëv_V;¢w)Ï@ÐNZ[˜8‘ºç»Æ´ðËkR ,qÎôúålM“=çõKè³î\¹+<óÄÈš®|¯—Ãq·/sÇ{†(kBY6jb—Šó«ð[æ=F,Ô\à—w8ìO²TP éãD|€-ûû*]³[Ûx}żgÂDe¾"Q¿ò öe‹(T×¹×)´Ð§®k€¨­pq3ž§èpR²uÇ˜Ý -e‚Ü…ñÒÐfÊ›šGáC@Œé ÊÓZé;þ·?£XZÌæv/J ‰žMHô (z]Æ“:~Hű˅Y]÷ éB}刘ºFÉq6î`‹Îhð˘µ¡så)µ­+´Þ~Ö!ÊšPx+²G!” Pæ1¡¯(,¯§ÁH¤È£Û96¬I@e•ç]_%žÅ3HSaÐá—oEÚíTÀWŒø;ÄJ#máˆ0ŸXF2ÃÛi^±À5Yb!–ü>g0÷XèOFRŒou7š¨8`¼±ŠZ5‰³å#!V8wÄŠÙòm~dIÍê›,Õ{͹xÓe"W„MyÈj°Ù̓=®û`U<©òœ¿"1^cþÖ™B³G½_{o„èWå¹!t„º”N™õwA÷¾Ô¬Q“ìØMê2Àêö ôäÂ;¯é§¾¼Æâ´¹ßˆFšÔ@·`Ô%ä[!RŒ §O.«Ó¥Äï©’o§úÞjÅþhï*G©Œzt¸$ "+\ØS‰"$-æ˜3•èè&9æ½?Bwv¸¦ôõqºfÿ4˼Ÿq[ˆ Þ0¼d{áêꡃ…q†hògœ-"°ôÜ>8Æ1 F*B„œW§^`¡V»>ìÜb:šñáÄïaO0 ŠwÄx=0Ú õ¾«Õ¿OeNIÁP#*[¸.wê_èËp*ë’.^$ü`ó‹G3ðË(@k«Ø—²ÄÊ)ËzÊ9PõUÊ#ã¤-k˜Æ@PÄd¸ÑBíÑ 1 ¹>+x®·:¦ÏKnõ—v÷4²–Ï(ñÑ,÷] (ó‘¹FSZ÷ᆰÞß>§]8Ý¢éDãÓœî*ú>ÎÄÆŠª.ÑÖ— 7õª)ãÛáÞvŸ}}šçë°Ö'-WGByÎŽUC ‹Ž¦~gÄ䘙ߩ¶ÑCýáwá×oÎׯÉ`Gtæë§îâwóûûÿXÎË)˜)fÝlp"Õöz‘Y\¸oB†â.Éâ.«.­e^9—ã°9¯š ÌÕJm3òæqe³DÓÔnoH¶þâkŽ¡3Ž{çü=­›¥’½ºÑkn•¾€–»Éµk0k¢À\œÛïÂÎ#x„~=ö§.nžCyV‘ÈÆ÷˜FpKiyÛîXÉ»2 Æ>ä«U¬ó™^zy;&&Vè«¿öšàsôx1GžíË1ìô7lœ{4PЂŠc6ÓØPw 5•”¼ä}HP¶ÚâeÂç7e&œw0¦r+¨Ë¸DZË©3wTtÌs¨>œsLdȾm»æ„9$6Ó˜FmåíRÇ ° ‘‘(£g»å·–cÆŸp°kr͇_ÞŽdQÚþ¡W1cÛ¦6:Y¨4”Q³À5§FÀ¬Ù·µp4\ç¹y¦/6(¡ÄÆò³µ¾Ž>Ófd-öUý q¸ÇZ± ð9¿>‰mj!ü2Bmó£>´üŽ;Ê#®iÕäx“˱ºì¡[¸­û­©ûÊtºÆ5æHw¬¨>õŸ ©zJr=u‚ùK‡ä"ƺ‘oújå ÑàÏšé?XÙa·1©+Œ‡Ö_J€ª¦ )^ÉÉÀÝŠ¦))=yå*Èß*½s_†žKáôècùfºTL%ÙŒáOÆôÉU¾•yið¾ºK¯Û{©î§ö¸q‘,8.ÒH SÞ†LÞ­p ‘¥î¼Î¦Å‚¦i±œ2ŠlSíòR˜bà „è¾TbcºbCNaÅfÉTçuwÝí»ÚA×ÌÁ¾× Z‡#±™ñŵd«Œöf hhò̦‹•ÛâåXÀQû§šõgÓuD,šÅb+ôå’‘vNÅ«î¦Ø+~DP·µÇL‘**§ r63ÎZo%KèÃ¥D9ˆ³ÃRUãÔ›è(½oõ¢Ÿ l'¶’ÈÚkšÏ´m~6Í’pßû²ÙËŸM΢·‡“¿§%{x1ˆàÙŒœ%àOÊ-oŠÄv¹ð¢ç$ ä4÷øaÕÒIˆëUPeÖópŸœ@ÂÖÓéÆÙFõ…ϸ÷GÏoæÎ F`3Þ<2à $þ‘Ì9eOä7ü§È·3rT‚?ž]/øŽ@ò2JÐ P JzVdi³Z4$¼7­0D Í¥dÎͥþzðf€÷f@bœf3‹,Ѹ]›ÐyüñVÀäG‹††v(ºßû’˜jy_Á*ê,"’Õo9Í’<ªIt¹x9ÓNIb&‘žt@ûÌ@æö³7HY#þpì½Ã%ý™_ø‘ý™Ås¼@„¸u~DT÷úôziÁõÓp¾ˆ¬$=…}ÈVÄó•Wúډ薄ºQ¨ž†²  JÕmn¶¥5'Ž„ú˜õ½Î0owuø@¡+/ßWÐØd©§r¬#¸µëê™ÒA³”Se¢Ž…’„´THü‰ƒ®›½ XíÅ$ŸÓDÉýqÆ;Ëc+œÐ1>÷ìÁÁ—¦$ŸGöAI”™ª§Ì†+VF*V,iùÂSSÖ1ØÎƒí<&£lšZ`®X"¢Oð‡µÌtç÷ZÃï XxI‹`¾]†+c“ºs)ßFÚá”Ú·]´ìÈ‚3ãŸ0ÜœwÞŠlX(SUÁšªâ• G7>6šQ(Caá«mK ä†:Læ-bv)—PR3Q»ü«mC)–‘É1¶NëcóE¬:rw½Pò})ëjw¼^`¥)ë“{Ù5W‚A{¾X.Ý…sr0}Ò¿F}òN KÆ…rÙaR¿;Hžf+`(v5K¶n±*Ì!†ï8`jRWÎ0ﬕt¥V”ýÑ[ -jG,úïÚ}u„&V«àgL1´8è({ó sŒ¸zýŒ'êªü*¥þp ìEìÅë~²Çk¯ê(8+O“¶,ðJt'Ìt½ˆlåN¥¨zsï úõE¹ÛV¥[[Ï0‡qÊ>¸ yZÀ\è£ÈU!£¦} …¬Î`uxíBïÚÒl›SJœ­§\â^©»«+fßcÂÉÞB{”À†©¯o;èÞJ¨dEâ,!¨S¢òóÕõ¯ÝUµx˫ɹ|;@wMõõ ó}¡ è¯Bú°ÿ KŸ«Ò½#ÖdΖ ºžJûH€§Zdûse”x‰|‡qÔ`¾aÚŸÕšÒþ¬<­oîåý1Ê«å©:Vè¥só›9%J©”Ç~v!㣄È%&‚WÛ»\¸*—SïDÉñ^ ¬gÙµ”þÐüBþ•­Ä”ðˆ»Žè$&•Ê#‘Vù?Ó#Jü¸//t:ß6ˆ¶‰HíXéÐéÔü³Ä~¹Øª6n½¥Âé3”KÃ4Ãü·á—+Ä3³¦š¤uÕêWÛÿ`H•‘þp«…Á-GaZÑ쭳ØÉûàm_¾HL‘‹)w¨ŒÙÆmÄ2Þäéø^Ä‹Ù˺Ã20ê?üI<=ïF %I‰}q…~Ã’¹*ÓI£ô7:J­[x7ÑWª¸_SH/¤ Û‹rº‰¬ãŒ¤u =½Âj\wMJÙ³qpg´&ÁŽÎ×R$^žï`áé¤Ö1ÈUF-ö<™ˆØ dÕjÝD\ïDèÌ‹8Ÿ®WqÎöZÃh»Ë»wæƒHlÒB!,X„³q…·‘{»ß©Û£Âà=oº¶ÛÚ÷XøÇCÃX½Ç ­Ñ ý³Œå¡EFnèÞ,üáºo@Õ˃8t¦Ÿ›öAj¥<7è§ýª¿%…mh¢…?bò˜VÂn¦Ð ³$'õXm*`>N)›ÖÌiðÇ“èrÞ»kÖ©7Y®¹§’i²ùäž_~ú×_~þóñÓׯŸ¾<=MWSËá¿Nšßô¿µ·_-®øaêøsÿa±Û÷^Aøiî}zùlcæx6fòœ®f>¼Kƒ×ð2P£(¡Qæ}>¤g³s©€»«YN õˆ>Î9ŸTpϽ-W¿øÐÉÆÈ²J(›ÒÜÄ:~žX8™¾]mföèeTŸòC߇¦0>ÆÅÜéj1õytÆV¹W)ø1\\õ™uÆJá?§`¿.P €XÝ·V¹!;ea2 ÷¼Z¹Ýaf,ÒÅ@ë0!=ìs¼ô¯>ÌæDÑ#W}€©±1Û­ Iþ©¯¢9 ¦M*kΦ¬5¢MñTäÔuùÆ›ß+ƒs{¸¶È÷Rê4†˜¯x„¥î¿§áãÃ^ìdP<,òÌ›CK¦&#æ{=^•‘ÍG2isDsÊ:ž©'"¿”²rÒáÄ ìrj¼ D«¹ÞfÄÇç=’ãYͱ‚­N‡…ûç ÿÖ¥Þ½<rMWòú¸ÆÔ^zÙ0• Äš GH¼WHwÅþ8›;зg§º4ºx¦&੹³¨¬üR£Ë®ûFÅèÛ}>ãÍ I.ˆðgqK×Ô™á~N/ÞŽW^<DqƒïÑŽ}Z¨óJcHÆ›I£ ¢E^?µâ"íÑÄ7-È+þŒ­9Sk#˜ÞdÒ9†ÿ¬ÏŠK`K¶u6&ËìÒ³¶Sú¶ÒL#ÑŒøæg”—Pãéµ2Øéf¢Yf"µªþq ‹XÕgž_jI‘Ã'°¡FûC&2orô‹½I~9ŠLî«cއ@•«ÊN?Îíʘ:…=‡N*-nÀÙ/Ô.Jƒ[û,z5û™©YÝ]dâDª—Rf€™Þ<½þ_Å¡?j“9yKÉ\¨Œ£€y«¶­N^Þö @{®Ì"x"ƒcaC@mHÐQA5š;5šy5[Ô[[^+·nÖ€5å-Ú„¤²½ÊéÜ‘ã*ré%OBñ6 §a®[o@FÞ’ðf…3¥×<ž¹Õ²áŒ­'à%462I‚;/‹º_×Ì=-û.l„¿p‡Çݱ°ä°!êõcÔBQo©móÄY@§ñ¶]oµMwÝ|¡à×÷pOMûËxÝ#Å·4?9Q§QÓÞé-·„Ûô¨ƒŒì~ñmC§©uÃßÖpM|UL³ø¶vkbPˆ˜„´\Á¥›#F…ŽRýîÒ¥šmË;g›&nD×ü¸ü¶©Öƒ#;ùCÖ³êò¡Óœº|hÄF]æ•­!eG”â{Pô¬Ô¯î`Ì·ÛÒæ;(PÇOú™µú¶q´P¥ƒø#î“[½¸Yǃî:^‘k·‹ÕHª[eè®^+ñ»¾SüŽôl4DóõZ­!ëì[KÉC“Öød4SQž&sç¸ö8…ÂÙ(Íc³½oÙ;VÕ%TPÑh麡³X¹MôÀÐj⣠«~?Ìe¡&pÕ¦€üU¾;ÏÐ]vO"û3­Q ¥Q‰­SÔòž¢"ú•ù™î4¡:-½³ÓlŒ`ßÙŸ©.Äó´¿~šüô¯ŸÿãÓäo_>ÿíÓ—¯ÿ{ò?ýúwxø·¿ýú˧?&_?O’íÜ–á‘ÿϯeñË—?¾þ¹ùúåóïÿnUÒ:ù(«’EY7-ñmáÿyÓ¬¦ulqÉËsÞQSYOÿåÿÿßÿü÷·Ÿ¿|JžÕïlún±þ§ß~Fø§î÷_-Þ}ýé_ýôÇ?埾üòŸþ’}þò颴 Ð(Þ}ý¿¿ÞSÆþ[­ôþ³þ.’é|±Zÿ—Ùrº^.fëÙ<çÉb¹\ý—évãñ¿¿ÿñõ§/Pä—ÏŸ£¹õÞmÜÿ—ü÷_'ìÐ>ÏVï¦ðÿ`„Aä fÈ;kñ<]>Ïgÿ×d¶ùçéöŸçÉdwjáƒÿçÿEo'škþŸÿ÷ÿ5)ÿÕIýdòÓï™| µÿ÷ñó¿žüôåÓä˧Gô ¨ _¿üô—O¿ýôåþ1ùüoý— iòËïŠü]óް>ÿ¾€äúûï_¿ +BQ°VOè7¢þûªÌ_ùùÓïÊŸ>Mþúõëßþøçú§ÿõ¿þ×»¿kÿüåßÿ‰¨þüùßþ Tïþúõ·_Ÿþ«Qõì¯?}ùégøûá§ýéOðrBÅýåóÏÿíÓï_B‘/ã˧¿}þòõúúe±ø§GW=V=PÿûŸ'§Ÿ¾þ«³ûôû§/?¡"ÿo_>ÿöÏèßöß&vÒŸé“§©£jáSÓîrìt,õé¯ÓM‡L æ—”W 6Ïí^g‡Å8=RàÜá ,%WVï3àer ;2®[»á0}ðk¿ÿº-9~%¢˜çªí«kûqp]ó|*ÏcåëØ÷§îØ–—c©Ê5M¥ÉË—²¿ž£gètÞgTÑ_ÿ¤‡@yúc¢Z}ŠO£ºKSûSæ}Uô{D\2å"þ§È/<®'(¨ }hr« I_…ƒ¸\Ü:ÔûÊYÈ2’‰KÙ¢mmï7èØÑ1ŒÔíqWLk†ÞÔ靯@VSL¬½C}>W{ïguÒ•u)úÄTí°'GÑd:ãê18Ùé;F6÷&”ü×=Ÿ˽Ô%ÞëÐ÷Qè_@cûIö4ý)ߘz¼-éëóõÐ=ÃÑUŸ½d™Ä>ϪÓIÖž³´Î6ce7ƒÔN´“xPK)W/Ã\ÀsCäsìœU²Òç¨sÇ éЇKÝÿ$fË8uZçLK.è'&í,†Üo%Õ…“*—O ±Ú=ÙÔjÉ&Ø’”kGʶbs£i¸ ›mH#-°sïhÚ!ÐÀãÉw$'^™; áì8”µ¦w55ì›w¤­q§¤ŽÁÚ'þƒRR*«`ʲ.l«-RžÙãh6å¦Û Šmû^/3¤ã–±©ìЭ€%>G†œÍæÞçdÖ| ÜÙ0N„ùï#Ï¢ _Ë3ÒmºA˜èbz‚ l©ž¹_ö8_Уèp/jL8éw£æoHÇÕ| K";˜òpÔìEФÉüN¥œRc§ö UÆ#í›h²¬Vp¸îÊ$•Sø}Ý3 îë†5ý#‘Z:ËãÂ×u ó)‚E·: !;S}wÉ¢±@'!Éä<õ‹CoŠ^&Û-6˜Ú<hÜ~b¨¼A×|èÊÝΠ”$eäR¦­”Œñ„…zxhH’ÂcšÉ ˜ÓŸ›´.ö¹8ßÐf£Œ*)ÞÊÅÁºÙ— DΧœî6l™¨£3YñH>æ4¶a“¤ja|-nBǪªñSnõv€ûoñ†%ü:lÝÏœÜäߌ×w6!%Tû)àÄ-gºK1ýgï#ݳê[¹{ƒnÔC=ÇxÉ<{8-ŒÍí¢Á Äñ :MT-]Z€qHt©P|i ê,f0Óͳ#Rtu©En†ÙÊÏÙµ¾§²,2_žÑú†t(=ç’••ª·Ñ C¥Ûªn+”ÉÍ^ÃŽ•—¬¸é«ñº/[㵸ȷ²ƒj/ñ^üd©þº‡Þ½SÔê_HŠòx™®ÒmO:´‰)ô~BŸ¸2)c—|ÿÿf5!BýIÑŠ¹%^•,é÷5£k:‹ZmUÅÂÄ+ªW`!Öõ*Å©Â{š Kÿ‰sÒ¥bõ&Ï»a€”ôB*ÜŸ-óy¬+†´ÃÆ­=ÓpÚÓGg+ÝoÕ+Þ‹¥ùo4\²+’MªJ¤)oR®±þ2cê‘2Õ¼¥)¸^ßÝÅŠñâF²ÄüÕðËi›¹J¦Â6r…nóðËÍ…qµ¸TéI„·¼“kdú¦°Im£[-¢C`~‰·>á—÷ÅP™ l` Š!Š4'»” BN’oEüeE´Ú¬¨œñ"”8µ(¸úŽgH‚¹=.š`©¿á7°±ÔWùË“’œx—AHu¡€—¸AE ¸Î83’½zÂ&{/ÐWõ\ËŒI´¬uÝ^NÃÄÈ®kWuÁõl>ûqRÕãEîš;U½5UªgÞZ²Uê›c;9bÛ,Ìa]XKN¨-³`ô6'€U{üê¨9gÐG5!¦@T9ò+Ы¬.LTqbêÂᔡ›ÃZ¾×’5Äߦ0kW'5è&P ËR¿–ÜdŽÕ+TÐ$gD.eWì÷PÀuyÝ]Æ­¿#û†-ÞƒJ†½†ž?ÃÉg›ZžM{‰šwŽyÞRýÛë³ÜbŒ(Û–ÙÒE¯Â]W%û‘Øn¸eÐ-ÊÛMZ=½ÝÜ!ËX:VRôÅý¢\å0†¦YYV>|ò©µ? KΊ‡Pál•ÒøŒô¬tϰrÁ^=,™¨U¦s.kÚqn7¬DpÖÑã¸`%pÅ€µ…6 YUc WÀŠžÏ…«Óƒé LjÇJ‚»ëæÂmÙcæû«gµuË)èvÝ,ùmè‚Û-§^9 ß– ¢Î O–‘á¶wȤµ¼^ ò¨pЋÖPHTTh±*l3¢RCÍVR3CKÕv•z¾Þ€@óî6wöX¸¸`8 *º¾/ÏÙ°×ÛW]½;Š_~Û¢óŠ‹ÎUA Åf—ä¶mG÷·Kx‡¥'@‰;âmá—Pl­òœU'Xia(ÏÞÎ¼Ž¾ ä2±-¢:޽ã…Åë—V[MÚQ½ÆÙ͇0ÐÞ 8SÞrƒ9—ÎPqu²¦–5óBÿSB1“”9 û˜Ì~ì§HÀèÛ÷uÕíöƾ#ÅÐÕð˹c€fÓ{ «Øö,£M‡Xqá™õ‡,ÊS‘òGÂýfK'Ðb1¨ËæulðÂ+䊕žC¼$ê•速G ÛúÌÔ„geä_¬ï÷×Ë^ž•ï’,06ÇjåAÌúlÛöÔç͆{ °3Ûn™ãÊñT¬muôiêŽÇ×2V1YÌ`®ÁoÀ“q¤qk=¾ñ½‹bÎNÀÏ^Mü6ÌÙó©ÿéQú’E±ŒÚyGZÛÛ è¢gb#òš, Þ¶ä?øOɻٵ Q7SÖécÑw³s=¾rN 1LËFR˜–MÁÙÇUvi×J=0ÔfùB…=^¨&ÆAýÇÍòG{—”bJàþ”ž2V˜wäÍCzŒ¢½X®x›¹Àë™lÑ–°ãR!z+tá@ëD aê,ž#¸Hü¡\bÔÔjº: VßZµ÷ñª|«ÀÝ.Uñ¶#Ôç8øWšnÝñšÝ¨yëá¤.MÓoìR@Œhsª–JZhµyÍWK‹åX¥ˆñ3©åté¶wå2¾E{q€‹ZÚnô2JŸt­°ÅÍrÉóð;‚§>YÎÜ9«bÇÇÈ].sß#',g+ï³™Ûå.¹Ë îû+Á£-ç£%¡Úë…Üç=›¨ÿUìõ¥J­íÄþ+‹ÉÏå —xWÞñ_¨¨Õ½Óˆ©„Bö/—Ó›ƒËƒ¸CÌE½¤˜ý+á̰s †á‡ÛZ%ú‹ý€ •“¹M¢CÙÈv¼ìÝB¬ª“ļì€<ó;~<ðèÏ"=*:Õ¹+ÓíUKûö•Ê¡©ÔEÔ*N ZÏJ¼ë0Õ±ðê8w—i‚±/ðCäõ_qwU5ÂЃÕníI:¿-öàúÐú ¯Úz¶üƪúq­„æzîÕÔëG íIêë@w®çw×Ù„éût=W5]¸Â1À•7;Öÿj¨©•?çºxI¢v½ò*γê=ýl¸¯²S½º».ÔÐßkUíÍæf»á>ç¿j½Ù>ZëPßSzÅ|-¼Fx}ï"~Sÿ‡X^<Ü —ûUÊšu–|óhÜœQ‚¡)Ùü;›¢l¡Z–ÞÔ À·%’^|Ë8TcH—£Ã±¡Ìó_&*ËO”e;y“uå ŸªsÕ\D&õ':ž¤+°oÓ?.Z øhUõ?%b Yþ÷­1¿‰ž‰hvÝJÜÀ{Fû{#~K'p±¿…žxB,~à7Ðs¿œ‹!ø ä\AkˆÿâÞ3 ¿#’à7´ž%ø l4Áo çâ ~9Qð[ÊÅ|‡‹*xÏp\Á{*,xdûîØ‚V!ÿiÑ¿­)Çü¶r¾3Âà·p,Æà=‹ä÷D´ðÿ3â Þ#¡ÿa‘­Âþ³c ÞÓußmÊ)'3îl†ÃŽXÇä C>à‰¯À@8|ŽÝ˯Jæ³ä[Eüú·¿þô¯Ÿ¾þò3a¥û|öóO|šü7èèÿ5þï¯øó=…Ÿó¯C ïi:¥\VÓeŸ fx7lÙV?¨´åyØ0޹Øçoº"Ðõ ÖMäÒzŠ€Âò° ¿h¼ë.'USž ™¡ržMÓe`0ï–Y] ±Xî(ñ$š¬;†ŠDÇåé4_Ф¤º|Ï*þÚÕ#°ŸTšK»StЃ‚6X\,1¬ÞÅ‘¦4ô‘ŸÎÒÀœm—ìß.K¾ ³3ìÌÒôö8( €7_Í‹{Sº‰¿E gÔ%^®g(k#¦aëkÚç]ºžEf4À³lªÚˆÛ'ÜÀ\¸ÇIv,ñ2‚õ Vºº¢ƒvz‹è²&Ù²èÐÃÉt¨uþ¦ÚŸ‰õùX£Oé²øÆ>Þ«–*(c[‚7·§‰u0mû-úË^Ô×óNÄKUfè~Uã¼1ºÚª°¾o®k]”Íž‚ ‰s®Ù$ÁK³Ó$›qUøMß9rP[éQñÓy1DìqÚ‰—u¦I.$ñ ñ\(üâ膊º5ÒE­Š§‰¤6ÉE 8uúŶ‰lG~A–K‹×:ÛgÝ/Ž$žƒˆ£‡·Z~;uï<Éæê겇É:_„5ªE…³¸^ª^C<乌գ=­8~äÂȰ QôýPe;›¯óSÍ~;°Ôó38D^“Á>ùtÁf¬#ÓÒ1uîNr¸c„+ªÚ:X5/æU?/¡äýõHÉêJÍDLEýϰÐÈ‚i×Ö.ÌÒ¿y°ºC¨1‡u@-hõÉ Øå|©<,¿×ÜLæt×ÌÍmúo 'û¶^ìÐ6‹X¸¬Î7!ÅÉè Kš×­ï çCŒöâ”™÷ÑúW¤04̦9¬Œ¤µ`hAwo ê}刹ÑÍ/gê)ü›qÝÖ€¾ØZdBßcºl6Éõ¡º\`¢,ð˜gºL«åÇÙ ”ãÁ‡¯ÛI9jH¡Â¤Ní•Ë&ÃŒZ .稕/—a ‘⤾NzMq_Ä¿Äm9oÃ|4&/ÔîR0^Õ¬i=YRŽÊåfª¬Ê°¨Ñ8eÁ®±õŵ´5Ä%iË”“@jÁ@÷Aå-KîÈheyÁdl泓l%Ö< ‹“a³kQ`%2ž!‰¢G‡RÛ©D‰±Z§zŠˆ Bäæˆ‹HiäÔÕV‘«Ë­rýû `¶DL~5]R@É¥d\Bäú%£ÑÆ~ÖŠÀÂçÓeÁuØ kºk•·u{°>IßµÌsÐ){}>Æ,Ö”yzÆÕTñĘâS%ÎÅ4†ðûªÃ¼±×½Äœ–ôt´i(6¤¬ƒ~rk¯3þ““\f(a“]{•ü†¤× \èWKN/ô2'oã4¤dÍ•¾±Zn ,¤ä™Ù·Wø ˆ§¼Š—«ÎfÚgOv2kûÌô¶ÃÝ>̛ތñˆüï§éö†á˜®;b*ùÌV—òpçÅ´Ú½ñ*w{3‰h®/í[3OâÐtµp&‘6’ÒRKêv—¤Ê]påö#„w>1åôÁ<0¾;‰<~–q/vw¶ñ5qëÚ “ýj˜ÓÝxL'=€–GÌe0½V¯dõ³ŸßÃ÷â“Ý/êš =¢Ôó\Ìg-ŸEdæpU„O> R£â$û¶¦=›zÜ_#LA>§lììÚ£dñjÀ½€(Þ‹>ª~X¿Â3?•¹W¿Sš ”&ët¬ÞìÇ>µ¹HEQË©éÝÙÏŠÎŽ“}QU¦ë°Š26=*ÃV`üë}p¸¸¯)äôšß ô i"“¥q´ƒhHŠXu¶ $ëâŽ}6Q‹÷âŒéÙ¡/6SÊS> ŽåæM­.[3;¯ Ë{Ü ÊQŽÎ˜ðZÌU¬Î–InïÑ3ƒxw´Ë vö˜7¸Ý˦óµÃ´ï3Ô56 ·^ªêm½êÙfU_@VÖ• &ºOî0Ì„«ªöp„³¤:†»pnÖѨ„†T±CèÍ÷T±D„-U.¼ž/•£  e nzrnÄKv{÷yð<çÂÏâøÜ­§x8ÝÐnq³ +©3W PG¨lœw—ãKPàžl}› kP£Ú.xå‹Ô˜¶tˆM*í°z¥¢‘ttTWÝ9W»«Í†ú|#C" ¯ŒÚåŒÉ܇UK-ñãš<\ÄS¦òÍöŽ-œ&½À”Àz j­ÅÌ­WÚ/¦º6µ»¦©ŸÝe90ô—a«Ä9ÊÙM^ÈX…굪1ÒÇsÝ¥œbE¯_ŇG_¢©i#·Á™0j¶Úö@{§É*~GŸp`)±ÁvÚïœ=3·D¹|Uk³Kˤs×¼\u¶Óy°+O}”~—ü¥lD½#jìËíœk)óƒ Ô¶@³ê5ÌY@‡%ûÀp©!-*‰äá@®I&¹¢kǃàõè‹ÞTµGy»`5‘Ÿµæ‹v—oJ°[ÚXoáÀ&Ü…pán —Ü?kÁÍ“g Zk1©‚ð«þ`çÁ'!øK]6{àá“h¡,Ô÷íòµÛ ¯NHƒËé6h^ˆŒ”n8­\ÁzurÓ-ôÛkîÍ!þ<øÀÎŽ—*#§ð#ˆåí*!à°Âì×&Ts«œuD-þÍïYPûí‹ÈTê‚a¨ºnZ¨~Xrý ;z#•°îK]ï‘i7wl–zcÈ0R2åFÕ†í¼ž)-ò^dŽqDᆘiÞ¬nFÄq'à<:ÑZ©Û„6Ú¹ôi‚oq=ÚŠ°îä#UÒ‰jºewYƒS£Cwñ[I Ošp˜°Ý‘èVT…Ð’£bÚtÍÞ¯‰êôIosÁ(æSkYTÌ÷´ŽŒg“€'ƒþ6‹Z¦ÚŽEìY©®yMÈìÒá²»!Ydâ©,%Äð¢Á#V<"NÉ,â`ˆÃu{ÐS‰Ñãg›³'ʹV× cgä4qeHâ[œÑX¯Y€Â@’¼’Qaa‚c”E¨¥]áZ3] †Oež)Îì#j2ó][jÕ¹þ ËŒœ$†üEbZ«QSœ4"¨+ß…®>u‡}?‰sqP!ÛÞ½³ßÐCļC)¶)‡u@à]&ø í,iK6ÐŽ û¨ë 9IÌ¢K€KˆöY5ÃU@$ÑUÀ%¬* ‘àB æÑ…À%¼0ͤ!ļbðö‹cjvdÀŽGB£˜³–÷Ú ƒÖì mCháå†Ak4†k†ˆo BgÑàžãª!h[ ÷M{Ù`#ãa*ø:pÄó9K† Ó<Áï3b :«†XÞ¡ÚSµË…h‘·=bVØþÈö{މ‰‹—w¬_.%š ‹Äš“¼~¿´ååbÊ-‡Vqh8«—a7u§“Ei›SÒå¶MÚ¹¤h‰I—QKŒ='jo–w-iæíî$!-2²Áð‚% ™ÛÓ¸¹=8ØÇ#zÌÈnÏ¢Áï¨6aê0D­8•GW«N#Zõèë2RŽÒ™TꔿpЛ7á(­ãþ2%§ÿ4bÛž;(ÒA!~ßÒlCN*4'-ªÊA9`‹0Ú7ü†[”8(tþo=Éçc–Eõž¨TODÝéìÒ¯né-Ú?SºßŠðÐ:{@„³!œpw¸CãÁ\†ÚÔøé”Ý¢:¹04‹S=XÕs½Õêý/¬Ízvã„ãS+ãŽù¸Û·R–4Ê,î8Ñ“Ž²Ñyb GR.³¸réKf)˜YÄ:ë#U H²ÍfAs*y9t¿•´qÏȘšÅ©n÷øX$3ï1¥Ú£9ÊÛôŽí{Oëlà³{®<2´8&D#ã$~vZoIô±B‚9»cÇË`àúNvÚ,î`Á‘J¶VÄ|¤Öe}²Ö»!+±ª1¼C‰µ…œ˜Ž NãÕÆZú‡Þ²ç„ö]N<6¶d¹ÇÑx˜–‘M8‹Û„²å{H¬ \!‹p·GXìe@*¡ £_Pu…ëûrÿ"Nݱ¼ºòµ»ˆ|gxƒÀw¢ÙB? ÊªCOÓœ.ˆäÓè¡¥áÃD}ûCsÅÉɺœÇ­ËÀ¸æ8/†U''Ïå<¢oMTÖùÄD÷—¡œtô<®£{’Ei“¦žÏƒ3­bÐZ2ä÷(Ún¯²?'];;2ŒÔŽºÍ¾@;';YYê.€jŠ÷œôîŸÃ=ŒtŠÞ”g¼šÉ LRÑó¸Šn‘÷ ë…—¸„䤦çÛGQÀ¬ž¸³« #£û¸£ç€¹¥NLƒ¾ñxMÊ%>^Ä¥¦K˜‡~.έx/@[èËIçT§J ÂÞið.äA_H=‚ß!I5< ¤ÕæYx¾®½¾jVŒ 4ÑØðcƒhê‰M$âùÜh`¯1‚|“ëo œœ.‹m¾œÔ·œ”M¤,õÉEeÝ¡£‡*mál¨ÎaÃò†­óN@b½ƒ³åÜJµÊÔ3Å]SÑ­íÍ¢ôWFy’Œ 2xÄüq±¡[Ð%H˜ïT0‘ÔehóqCê@ÎïFí þµçg˜?-"$T©è5[ºÔê„   E[¡ Ãû-½ìËs»Á)鎩\„Ï“V<¦ô0‾黫¨7ðë·`^Å©: õÁês‰á)Jì|rË“¬[ÞÐùG1\G?TOqü羚4ÆW’›»b>Z”-ÔfE5›ÿ–V .èì½Û «͆ÇÃ9¼b¸`ï°c…)&±MâŽÈ%a…—™¤Àí¾ ºÚ‘9Ç |Õ½j_ —‘€ÃÈ:d8µxT’ƒžŒ;è¹e ¿Ø©)Í%Ö ¤æÒʃ*=$<Ø’iJHQ_®E*î(ðš<•ÖÍpļc}ehÏW$¦uU²Ö"‹ùlmßí¤‘î˜ÄHG‘ðû;¦-~.w;œ«HC×P$»(b« Ì­³;QOjr9VMäe*ñ¢}s…ÅCXáY^Aò¯X„n­«C*M9œ ƒì³á±vAwJ‹Uh{ýq¾ò ÔÁ¶ýŒŒþ…2*Öœ¥hˆ¶ÖºG;}CñAý^6 ÎðRcWE9އ—Âö49o¨·x5»ß¬2µBL–NíŒ+’ãÜ.(ªc1‰/´ëuÌ$šàFÀAnùŸ²}‡ï-oÅ6VkfÀwéûªÄ;ê‘‚†oL ¿Š"( ,ð,fðÞå2.ªú„.q³)e$š&aãî(AO‚ ¨É¸Î#ØxHJPQªžÎÕ–òO˜¶Å1ÇÊ”ÕÌFÓ†O[²ˆÖ4¦˜ »pŸV"iB• Ÿð-ÙÊ£6¶C€…ã‡xµ±Lq@J]>¿«Ë³êÜTgqnõâ!sÊedt<ÿ…ª£ƒ¹£ ×›í© ;bI9ÌGùºAjJ©7]FÕP‡šn¸:Ï s ­“ò¶ìg,Ö5ÀÞP a%"^Â1Z‚jƒ ® ¯_NÕY¹k1ÏÓ§Â’’u¯¢^¡¯†Q?Gøbü “ÝMWwxú¹£»¯ °jy¦Ki€Aów>›³}màÈn¬0…Œ¢€FÆ £ ËZRYÑëtN}_eΓËk¥ÑZ†?ý¯.¯Ô¸5ÈÆV¥Æ­ÙÆùpfŸ`ÓŸ—X(±Á:n¬·ë/…‹v>û­ô¿Úí©™¨ÔÀoÜÖí7s'S¡øµ­bû‰DÞ^ÓÐñA‰i—â7 øëÌ­ôœxïŸÓÀT A’"Öœ*æc^fN`±¥wØøj|Ô‹%H?L>((yÇ‹!neU5ÕCXôÄw‰Ãžô&«ºsVÕs,àŽ}DFž.{LHCxˆvϹ‚=ôu‡[4ØI‹î¼ÃCV@¹Co¶êdc ³nK}?;1q{qjK0ã•­^N°’Ûoè8 A 1{­kˆ½“U½ãâ_ã]›À»}…C‰Œ<†Q \ÏÙߘùnšS‹`ÚÔ›®aà %¢Ånó‡2: HgJDAZμÂUH25‚]mÙç7˜Íh°'ÀõçÉöG4Xîºã$ÛWİ>‡ò*«Ã»w²Ý—Õ£}õ{å(»ÊÙž,¢ÚG[òÀ )~IäÐnÍBâÚÊ=®2Ö¯Ÿï-5‘®$®p±Ä|÷ÔÈ5’ÓÞdûÄ)ÛÆ¨š”9‰Üòe«ù_˨’[ªdؾ‡!=}Ú3[ÉUÍuð½«ÀѲ•.ÖFmúµú ² 8q…IçwˆÉÐäR™wÔ”ùŠ*öš_þÈtxÝ–{»£Z^¨nwd]‰ u¼ã–2tT©.8ËÓEX9 4³‡Ð•á›Üâ³SéÅÒ”S “€þŽ ºAz£ÄpìeÄÁ^êrÖA Ðqð™®7-¾'[BJ _Êú“Œܺs.Æ™pç«Ì$`û/vxý©FÜHçõgÈ_a–åHŽ’7áú©Y­ÑÄá=£9&îXSGJgU¾ˆðÆA(¡j…ƒÂ.~Œáõ³Úª¥9ìðº;tX Íhuì AàE/‰lú B£ ²¡B¢¾}Œ2h¸Ù¥b]‘QaKbí®‚òò™e…¾z¥–T`4òšÇ"‡=Ç8 M<£ž¥2hŠXXÞߦÆY׊C…c*ïIeAD¶_o*iœ"‰Çp»à^Äþ¶ &ªfEt<Ê’A«ì§VÄJQßrÄ£¦E(e“[ ºˆO8)ð,ª]X´;S\õ•ÃX°Ög¤ydlþÈáÆÃQ^ÐLiÚ"¬'ÀEY² œ°Íd3àðFõÎñÏœ^Yäh„u ;ê¡ÓbX³²9Õt¶Ö'¤C}¾–çç¼ +µ7›ß±™ë{Big Âü²ðžÖswÚÖÌá<ËÈÿ%[³8âÂR¡ËPy°b »Ï*äõ†ÀX;¥w]`§jÕA-v Xî2Z…3þ>ÝŸôíìZ—Ç㘾Y{òaæHLSŒÙìí{˜ñy¿dé}na§V¼ÔݱŒ:À?BDZ,¥!cƒ<ú^_A(yO–_X&Ѽ’±¢mð×P1?¬ë¼¾]ï*LƒÃÍ}ñ"NB O%0—&”…‹NÆ^|û ¼½ü¡¤k.tz21>©«Vàშó½.UdÅ’ Šºm(V ã¹Fàî°ÛÄyÕ¡cÛmO3 !3ËYI§ØŒn»áv¯_f‰Uû³Hèðœä^Î'zý û›™l§D£„]-å­Î²mÍ:ËWx}%ç¥ÄŸôÙ3³kíèžah ò/_ß‘’׫zß#èß™¯‘¿sÞ]äOú\(¾ñfÞÊ7©µ–m]GùÃd_¡¥!ßROðóûz¾öûZAëV‹ã…. ðßìe‹l“£ºŸ!C 5*j/(àZ†s•&u°¿D‰:1¾²–MÙ<Í$ñoÁ{{ý &ØzÓ÷®+ªtÿaQÚ´¢ùÌêçKSûd½¹hJœ@PçJè…‚üŠYÔ7J:…[°ø¿Ë¾ô؇^ùd .ø»òƒo4Ó¨V0%[ŸT§2«ƒå.¨Ý¼Ûm´Ýl¬Ýñòé8¦`/R©òùvwÁ^6–}‘uÙ\ª“<—X…HÖˆÁï›k™Žha»Í·¢Q]AÒ+Ü{¼Ó¿·ïÔä ^ú“>ŽýX£kÜ(wšeu Hÿ*Rö äOú „"ÙfŒ?•~½T; ÛÀS°|ƒ Ë÷© F˜sÆß´U<¹¾Y#¿\™e|\W]~äR‰=Ô)ù üýüAõ‹ˆâ¶;»r vdF™}kGŽBíf7ŽŸº=Aw1ŠœÕ ÿ¤uQ¦ì²º¢Ùþʶ|ü¸®my°æTNÍÎCŠ˜!S¨·Û=~«Ë”Ô\^õ[Òn±Sb½¯lAW«±zCŒÕ ð-ÌæÈ –Ý êw6‰OŒÝ èÛo~l³\2½'³sÓAZùåTE„‰Üv¾æ 0¸ëLøË`¤=z4¯Ž‹A]åß·OÉlÉ:Ü‹*µmynÚºËÆþÌúŽ+[hÑT7[Øï Ô+™±>ŠÓÑ÷!Sªeúµ|ã/z¾½$Õò[¯ÞfUž#hFõŒÇ€e®U_ùëßÄFÕ“õÁŠ]æ!™S-ƒr?ð?(Hªe$Ç•‡Ü¤¤Z²”‘ØrzsÏRËì¾…½,N·|’–»Éµkž™Ü1]ñ’H™á’Usù4ŸN#:}OTæåõe¡¯¡pcJ@DƒþÌdǪÁõäayI†KªDŠkº¬+ NfïÞÁ/§9(ýDÇTxeÃV¯¼§ÐËØsBdÏ“Õú½üqìÄF€®å]ˆU¢‰à+ô*'ïžc¥l¨îLd¸£êÕ°ÅÃEÿ龬Û+bFl¨ÞðG‡4âüfÄ}oºþûõYXªãuk¨¥ØaŸX Þe_p,¶9á²S²×¥r»îKUféÐmåöŽøhH^RoÁºX—@+¨Å|Ìlñ–2é´âÀµØ}ñ‚œ\d„në|D|ªu©É; ÷x¬>d;Ñ„š^ÜÑô¤oú¡j¡¢3t'Ï’àÕr<—O«KuªŠá 0è”î£ó°h²Í6ÁkMÛÅ¥wWÑQì§¢RÇÌP˜ÏøÃ¿ÏZâz•ëüÚ‰=€ÆÇéCðƒ|èüQVoPj-Pû\Ž(ñæÿr‹ Ãûä;+?ÌÖgEÌ¿CȧŠé,p=âc2›¢+AÔ×r\Éä`ݱF˜4¯Á¦N,BáC?ÎfÈ(&UZ¶vÑ×ký$¸Ô‹EÔhå¸l†Ûm)]cÿ Z9o$ê÷b© :Wˤ6¼x/¡‘KêëÕ4pûèc²‚}Ä‹0»–ëÁy÷w-²¨T. ¼XÔ3ªÄ,ʧv™y…q8D_Úþ½¯¨*h¤‚ßp–‚„; ·]ô8¯rAõã/‘‹ÅÊðrövoòt¼Š§öí8Uç*#g,nuGt1W›:uG#ÆzUf̓£ZX7ëµ€7°C+£:™Å±´;·ö"®RÈ6Ô¯Û ëJ² ÷kþt¿Êêª!C±Í¨ˆ¨5#èý±u®-™ÁošªPþvX˜¤ÂBê²sGÄíLô®¼C]i@1GÄ*ì#‹×uSqêÆ¼/èriüûPŠ\ W]²ëÍ\”SåÂT»}uzk¼´¿!Ÿ•ÊéB̳3¨s©¨ýNÆ{ŒÃµpùCv'C ë$ÁRW!;ìÇ ëˆÜ¡çXí¨l´³–Ĭ‚QÕ1,âÌíÖ¶3@8Ãêm‚.M ïÒ”w'¶6ã}À© {ŒÝ‰¼D–É3a¥TͨÁŒ7È 9ÇcÅÖöÈy7Ñù]*Tì*œm±,ÏÃïžu‰u”Ë«$PóÞA6Æñ¨Ù4ÃYï®Â8•M‹ XZÐ×lB˜ÁÐÇ‹;GÔV¢ŽaîGX`$\ÄŸ¬®âŒ„|Œ¹…„ò¹ £¼^Ïç¾¾ž7è)ÍõéèÐIÍMþœ¸ß„ÌÄYØ‚ü¡©!¼Sf´ÿ‡“ÜÄNöñÓõ 1ˆÚŒ*/e¿%x6—¯âÚLJÚP½ÙóàZ¤[°7»7äÛw,w¢íjI*ã:æfjsMìH¥{bÃf),K¡úD,èV°ŠMÎbW^ÝÐ1›Èqò˜È¤U~±/¥ sª`8b¦Nb ïø:U¹&Èp¾•‰©_¸ç°P"êׯý–¡õ™ ôb°?sÅgjQ­ê¾$zÙ"¶j„^áÐ&K‚ކp Ñ»£c]ÓÐ;î÷„è+l6©õ6ªÔê²»æùbÝ6qŸ™yãEËßhHFtµhömíewvßô®è€ˆu X5µpGÅψ¹» ·›,”U‹v]­{YGˆº³Àí(€¹f;ðºÓ\»+i ÙwδéÍå‹€áý\aÒu¿{ç~d¼óqBId/é ¨½y¿Þm0æ.üFóð´ïaÛ'«jý]îŽÔΩÙ÷@¾Eo±å?ë• q~,MÖvŸá<Ù&+‹^wUM:i`©Gˆ„‡{b»ˆžžÕò=…m+e?Ú.P8oÙØyCêMeߦÓ^®ryÇíYžt„튶FÎãB#·åAví󩔨ð»o¼dy•U]ž÷ðB’eËúa ×ïÞ;Û÷†ØÚ/Ôa»ã´Mù ?€‰´(?¶ip)Âkùí(ŽÜG8ó¶©ÂŠ^‚­[ä5Ý0gß©{·KüI̵àÁ_é¾>÷¦éÝä[‡®E|šll^Ì•Ç+ð| y Rre Ȩ€è¥^ä¢n ¯Ü ‚vg/ >œÄÑ„w/Kº¨.$Ãû×PHv‡‰hÀÀ{é6â /@*‰ïy‘!þ“haǤˠ)ñœ¼c}òS4âiïHcÖÓzº:ÂÔ2ï.GØË¢=I¢±¶˜cŸ[Õi Åb¸Ö¯~C·glmALYŸüN!(wfð-u'‚ y6D$ÏŒ¸E®Øˆo„é ~ÃÁNVɃã>Ãý@C!ø\Q=[{„>–5Và9ü†E/ƒ%:¬ÃŠax3øªÛ¬èÚ·Ô]¾°ëÐ~£Š6G| €¾"(iÈ"öRŸ1Q%ô8Ø#«¢$±øý”ã*cB,¨Jaóþ†«R¶çêÔ4xG ”pNˆ¹ÿóMXÙ©‚7dö næ5•ÃÉʤß8€wÙ.rJã8’JUS¬Ãž+Áºþ`ÖµÚ‘]ÿn¹¾' ¥“mŽòŒÐ Xß:Ç’ça&0B„;XÁBe  ò‡w0C c‰¸ ‹`L ÚêyëÚ«2Ãâ¾”²,%\¤až°B–ñ? èîH¹5Ð)™'p\0güFóZ;t¥Q}½¡@ q´Ä’õÀš€¢!íØãÑ®[Ij­X¬jf…ƒ4›"…‡… µˆ\óFÓá´¹'ÝÄ@§#7–“s'iX³È]Ž0uCªµÈÑ2(x›²7$½›.¦©uöµÉ#¹µÑ´ õi‰"‡÷„')[YB®rƒÖTæ1ì¿ô™bR›ÛMTdFµŠªî!€®sªfi=„N‚‚ÕÇÌ_!„(:ηâΰÄù=Öª ý&búwk5œ¹£»Y[>PÖg¯U»Ÿ`qw„s 5t0¯¥˜Ì~£Ëšï&Ù¶ûŽsŸ„ç‚n 4¬t³ y΃ÂsQMƒÑVC o<æBâ5tøýFoÔ,Û=q©¦É†`¿Ñ#5å³¥)B’)å¹ôAU˜STÔõùàªÏW0Üí¤†¥×MHé2£Ã'Û‹P4†=ãßé8GY´*ì,kÔ²»¢S­-Û²F`p”«hcq0jUÜ©ÌsdNòœ…²"÷ŸB‡ÈV  Ø §kªv0êÌÇÍ4”]F„’Ë\q>f„+ã÷¹}¨\±Ñ4aô—¦ƒ¥"•sÂŽ'L H Ðß/aÁ ý ¸Ç´’½bEuŒ§š @\e´’èi©Êˆd¾UÍ‚$»êÞ¬&Œ~­ècÚ ºú”¯EàäöÙ:Ì«£»ŒªÃ³}¹Ê×)áoZS¾‡({lõ|•Õ€8>'ÏÍg °YаE8÷hFW5E~.ew~®á÷8‚o/hú½ìŸ[üÛîŸ Š£_ˆPóóÕJyFfÕéâ -e{5ü#Bô @*Äš Ê‘Ã?Φ· "„øùö© X³E`áí¯o[’­?ä.\§þEÓìlް³p„¢Æ+ÜÂ8aZŒ'ûà¹Çb"úêàƒ-ÓZ¾Ž“r%÷e]~@ˆ;Ô~ q©Ês Ì}øÜ\ĹlÔuúƒ@œ[6À¡;W_•¾!WX+…ÿJ쭿˜Òýe se‘²V¦!CMÜìËs¿¶–̪uáßĵŠìdƒÝŠ× Š”Mf>l«l”ö†[ÈQœdîr‡Ÿ¥r’'cAÜËÆÈ6@6µXEa3#{·bæEØî•¢lK+Ê~‹Å¬°˜4Ð` ×ëÈK» «ÙÀír¯”/]Ö^œÞt¨(]G¼f ec<ª"Ÿ‡Ûç« ò±lª#…mSwuû÷=wÓåo*¶íXûlS<9"*òp¿Õb,¶‡m¥Ÿ÷²ç‡þ¯ò ûÝ"¿2§ácPØö2¨Ñ6Áeá LFì÷v)ñ*«>ÈH†fL^P…—µYâ×§i)&ºýˆT²Z`2¹¦­.ZMŠÛ{$‡q¬º}Õ=’V#Ϻ¡Qø¡ 9ˆ¦æ8A®‘ù%F™îq« qTš]Z९¢`/O)ÇPX[‹îxÁ‹›„À…ñ_¼AA *(¼[â ruôè{,d…WDŒ×¸îˆc¡@Ü[%¯¤T…ÞöÛ (æS¶¿i„°ÔE¼ƒ8imËXíE¬òg€G—pø o^ß{2ïD1_5òT>{ŸB©è^Á‹µÞkÄÓjgQè ë½ Èè†PP°)øzå„0D^"´ èð)hZ«çüË ÑsªxþPůð+²gNUXBçapÙ…Á1ƒú”b$ÂoÁr^Ô“Ô0˜L§•ïʳXM0F-@Rªð)š~حЊG ð}ÅCϓɇ ¡ÑúP̱•ÞòЫ)åàdk€¸@h À‚ò°:ÄÑÃnà- KËuȼ èM‰’9úd:y tÈv†Éô{©†qÂ^XØdÛ†Jo,Xýt³EÀ,Ø.¶˜€zãuš¤@ià ØáÝ‹lØ}§óéðg”£ºmááÓ‘1FŸÈê겯('m‹Á+ðœàC'ê%Š÷MÓâuNG ì OgÑ@q‰jN‚Á«BNTÇkfgX´ü€0BÁäÓð><Ãd&Œý ëº9 ÍÕ¼›ã½VŒ&l:ïÃìŒhþCèWLhºÍª%SÓ0ïªÖpª¾ˆ²n÷˜« °f¡eq¸~nã=ñöJ¤‰ªÍ6|”n“Ö¢D9g?„`¦ÀÔ¤§ƒj~Ì×Ë@woTï\d}2ºû¬úÛ~ZRß N‡üù18.Ž7®xèØû¦Dé¬2OçÛÀ´Æøæzi¶òñýè>mšñÿÎÑ3—Å[ ÝÐmB»a{ÏöÔ”úþð•Ç“{pΓÃÉå\A­Já®D— ]g+“i‹ò6ôúPâ -תfêáù_`wuè>ø1ìß½ ½ÚQO¬I}XnBØË0ö>^Sßlø6 ›3C ƒÿ@àÛ…g$dó)p c¿)ì5acæž›=îrÿBõ¶˜nÂ]†p÷A`ÕÓ©f–/¯§í33V½œ¦ ˜ÑC¼^¶O®B¸ª‡3ÅÓEdÚ´U¾7®¼{g? ™³R3y=g•vØÜ͵¯¿_{Ù ïõW« ©DôÓõ2°ê&‰‡¶žÎŒÅð4ÚT¨<òð‡—4ꢡM»Á&yÏÖ¦V×õ†©^ø€?¤òcá§Ú&Iq÷¡šë”QÎ0rꂹž§pò·>ÆH¨¤—>V=,÷奉*C¡;ÓvË®¡âôÕÕ¬«Q1Û(~¡ûq¡}ov½ÔeÕŽû Yà<{/mRóŒè.eE”‚ê1pfªð(\Eh;µ™¯Ü&¼ ô(ààhÖoŒ Aw·ëzDí7Á4g*‚»Åò„‘‡‘EQÝõÀVà¸QÓh³íÍö"ާk-Ïã‹£D.ôžkH5™6‘(d: LÎ$ÇY™.5°÷VK\0«^¿Ùß ØõŠÚ?ÀÑŠ…B 1lâ¢áÙ’ ¦j¦2Ã&<"Þ`W*a[jé(Þós·˜Ü{ª2O·s~ߤŒ&×Üݧš2„Qƒ±M F:<ɺ¢Âæxµ;^Í«µ(×ú÷0Õ›òenL¼4¥‹ø'¤ú'F@ï˜[ŸZ¿]žÎP„˜NoNšÃ^ÔU³‡ßPq¢¤½ƒ˜ú‹áàjPÚ׸ø/UFÛæšà— ÞŸ<ƒß"CðÁf ÖïÒá*‘G­bÝô¡­Æ·–€ÎˆÄŒW\ì^]f¯yí¢ê„Yh!žsˆ‹ø^n 0$ÁÑBã“Òõÿñ‹ª£’rä{‚ĽbSux–‚‡,ã4Úë$û3Ý 4jž‰˜Y AÎUÍ•°WE°oß ô:‘EôLþ”íMÁ© ÿâ•ä–ÈTWKßö6Üàôié,UÂP%ö¦¡ñ£³Å‰1× !ã<¡-`ª´Æ4¦5–g¸¤ðXzí¤«­x$]GVg„ü²¬otQŠYÒ-³[¡¢ Û/ø„¬p\!· ^å7œf ^gù¸ž+^l»ú`XØêþl<ì;Ø¥#+ª´vÓ,åwŸ—3…¿ïÎ;eñḏ÷š13Åð·Úó¥xVŠð[*Ae5›æIĶýmRW°öï®ö‘œý†ÂWžÅ{êŒB'§ôÓœ±… bÜÑ&µ:{qõËÐw9šM‚ù‚4ÝMJc½!êâæ­¨ñV+.ê¹2å+ÞÊ@s[QøÌÃ>'ùIýn¸œ†\ü> Âp#ì.°®+ } ¬I9·‰´[ä2*óthT“MŠ€ˆÆ«|+óAÈc z¥ó¬E(‘*(ÔM6¤•/R+¼—'‘ç¢o¿TVJÉÙ`>Ûð½µ÷^À(]:³›ýŵÒWfL)üË£„Dð‡_¼Hñ°yr¡Fµ¯–Ù ¡ÁŽ×>»›M ·ãX‘"¸©NÃŽ]GÐú(ð˜¤P²¨˜ÝÔPv¹¿¾1oÔ† gˆhLÉ-§…Ø$4a-ÔÁ݉òÁbŽ \ e¤¥är¡š¯rÿ´<çò‚ñ±ðÂâsŒN 5‘ŠMdyĺu×ݾ«™®°_%­Z…bÏ"À.º:\Õ¢9ùµõ_¨¥VåFšEdû,Wsß­‡§}Ç’Võ|­r¨,ž™YjÈž\‹ýÉ5BÔÁãº1s³A=„þAÒä› vxª ]aµ#Þ”VSýÂ~­8•ÇÉ™–ÒE‚žá© Û :ÔÖÎ¥mæ)õzäà^ÙSÙ·uR×7d¸ÒꃊŠQ}œmI¾½†‹Š|¤Š[†o˜Ô¡Jc¸žÙLöÃê;ZQK+ŽùÂd©Ím–2I –Ú¨î£ñÅr¨Í¸˜Úö„“ªV1 ë]“9ìã?ÅÓXÜÜ(ÀÐÆÁvžPxk…çkìß´bñˆ½³p—ÿnw9oÚ@å˜j${ˆd‰‚#*U' Ï1ØÈÉvÿÅIÀšRa)·WÈ {ÊÃÉÕDwë‡#“̔ܙ…¼‹æ«²g1` \BHÉZ!ùç¡ãI¾¢³5jÿ!æq °^`\ÙwH©›È…c6›‡ºiÅÖ¤ª"tÔyÀX,B•-ÎVguo`¦(üÃð¸@­Û²$ÀÛ*‡]“U‘¥â™ÐÆœ.iÁ~é=l–L«¥ó¨&a4[¯nVb¤\÷5µ@IÇYL:6°{9ǾÖC>Îî­ÁûJ@θ8 ÈÍX¡±gœ'$"g©FbVØ^DötÎp3IHÎ(×)üñÏTomYÈŽE¬0¸?ó:Ê•ˆ³ŒüYp³°p†®Ø6Ö¦:Np›«Ã¥.Ñ,‰¡…A4ÒÏÂùÝÒ·þtŒb[×›åA‡¨¡{yÔ†üö!TOb„Ÿ©¤¤w2‹(æ‡}õþ`­ÇÖƒ÷hââ¶„‘´ÃêbÓió®ùHi, e‡? — k»¢s×vï)±m‚!}àÏ<4ÉYÀŽÃ£µ=™' 9ƒÖv´bñ: ôqmW¤®¤IæA Ì’ä¹" s=K¨Œ<@§ú2àŠh¶½?œó†Y©·Ô“a/D·­F9Â^W o rï¬$ö’¼ÉæöµK·W„BU!bµs3¿zmT÷†œÌÐëÅ!TQ¼ìg)am–(|xÁÂ¥ÛûXµj¤R¸“±Æb¡·`ôÈ~Ì\ŠÁêk®°"‡D蛼ÆÇ†B¾XÜfü‘pä”…Zv þ®'±»Qà`¿ÑÏò|O=³$År\¨œa‘9Þ7˜y,¡»ˆ|NPWªZJÁ³ ¸e½æ£v˜LZýËb(µqZÄN*z:W*ú[)ËÞ‚;[ä¡OÛ±ˆ– \¤aG‹A‚ù’HƒV«1 ¥OªÏà U­ ™}|G•l³Ÿ§Š3‚ G2Bú¬n½1¹= -ÜNr>[¨ E<”íbžïï^0¬*bܱjkR—Š—"²ƒ§9eÅÚvžK/u+w5g´,k:ײì?&–^Ò¥øÃ+c®OÛ±ˆ–j¿TºÉ2eŽ€~#K™¸j™f ‘Y=‡3MËœ˜o ®Z¦w˜¡MÚ‘«–¹jbÎÛ^­&N®µ”Ï肃w6Ðñð,Z‰>Ò. ï¨é¹jz~GÓÍnAønßc)ê¢Òl•D/^`1 zÆ?•V»š+îÀ­gR¢r8Ô}F칚ÏXèFðÆë|,¡°R…Ùº„ƒE=ÞÛ‘ø*Æ„¶Š˜öGV[ݱ}7 ¬a¤÷íísË‘vß½‘’Z+± (Ð{gþ[®DpãfÄH>x™³òö‘¯Ait•¸=6ŠÐâ@¢”ªÍ«‹GYöíöxW) « h]1hƒ¦8.½m%·Ç£Îöèu ¥c­¦özÎ!±¯ÆL¡èGnü{”dâ^Ïn÷1‘;!ôO ¢Ÿ©Â¸="µÂ¸mÏŽÕO¥Ñâ«ÀÕGIDÓ'0ÛeÁ{¤°…YW]ÂÒÇ"±¼N‚ívG9šáZ9a¬“ðdê ^™¡£®ÂŸÈyÉ0™Ã@jqPWg›Ði%^)ÌñÂ’!U¬+©²Q'•›ØI¥"sï!ÍÔ:§Üp{ÏþxÝ£ìz4WpÑÇÃePŽ‚k#Tçä( ÛîUÔ”Òªl½[áç¶ÐüÀrƒ~)¯xò¿)¨­[æ¢Õp¼`bPγòE6qèê!-9ò×vÜ´ "‰!­ˆ”p¼;µ`HQ*1éoK—§àO¨a I§xÌó¶U ¤ámCQ²`Aóœ}#L¥ m™K=ŠyW6¦ËÂü+ºa "ÖôrD¦ñRºÓ–Ó~g³•÷Ê>DÛÎo_y0!.µ,Ê$ºõ7BÕQ"*ÒÏ Š^Èä° Ÿ‡³5èã4ÖŠø¶“)XѪ9¿‘»h°l奓soözO­ý×VÐÛ6Vi¾e‘%‹¬Äî–âÇÀŸÐ)Â܆tMuü+ÁÛ|¡ #7|ô]Ùî\÷GÈ%1 – ƒ%Uw%̹=ìtô•ì,[y›+=rãx`+o›uMzËCI'p‹ru U¾‹Ö=÷Žß^VÃ<;‰l¼"OôÄybÊ«2tºäÑÛªUàµ}ö&¦$ç³y‚î„ꉋSð¦'AÜ¥‚ ¼oÊà?1T1¿mNäAFæóÛÞpFvìhïs/Ícz1×}rbäߪ;8ýU&®§Ù/i++î8¾mªkuJ+‹ç–Šç–!ÏtÌ·«ÉlVcžV4 –k…YŸZÁCÒ¶P,· 2$Õæ,ä ]dg:,I²‰Ð¡îÂècôÜ ¦‚rÞ[¾w)2y£sÂÙ[¸ÝXŽÇþÛÛÇï­ÁõÛÛN=)]SíÏÀ„Úí‹"rS&± ›Z*ªH™5 AÛ¶<–‡É¾Ä( (Ýxkµ›ìŽU‹Ê=a¦€B(˺‡Ötì´îܽމÆrù‚ìc?<«ªuêz3ü …d!Ý‹òÐt–#ª÷Ìô7Ê(lÌ,c6gª’kT2 ´†eÉmOå‘Ò݆gJ×ΘÐKjzXu±g1ûÜj¨:e̘°¦ƒ€`A¬ÆºÌ›Ýa!t¨GöÍÂ:ðxmÉ)zÔ²5-²M(~&:.¢]IžÍéî<"¤­BbÔZšÝè(Ö“5]ú¾*1? ƒé½¤-T&n¯oA„«BPLÊ#ˆPô8.½}HÅЖDª:- …X1:ͱwûO%ÞVáR’ éRÕ%eè{³g=¶7z*Lü‰9 ÞÖ쪳}ÒÀ=—ºQ !—½$ZP+B%m%ø'’×ÚP[šÞù|¦p#Z…Mîž“„^šÞÙyXy B@Ô©²y–e›×©ŽÂ|I«œÙsΧ¢×ZÂè^;B0_·=ƬJô÷\l2é{?š<|/+Pr-žJîç+57¸(}Ô·]wÆ4 ÞÜ`Ÿ“í8_­j$èKM.–lq%Á’øÌCŠá<Kn–Ü R ó† Ùu—.¬ëüz©:CyòåL°˜Ñ%<„àwˆkÈ·sr“Áûãªúù6ìì3xðZ®j‘oo$0ÆÌÚÞ>„²ÈBª{²ˆÄ:‰N [P0±<–.‹¹‚‰xOõ4¶*Ç<íp©#÷2RÉ¢\S¡'àOôÎ÷+ãûÕ°"B` ×6öR¨˜†åßÏÕ8ºÅ”lpEà¢mɈμ!þj­šÅŒT˜"àŠÿq¾°!Æû3igÅ\Õ$h"ïûѽcâ>N-…‚])ØH|q¢ôQÍ…¶PŽúEÌQߥ—LEQ~wœñ{XÈÇEz[ë?–Íp qE6IT–Šd¾eeøÇ-êèYw–%fÁN;'N¤D9€&‹•/·Ï¿RÆ?êÜdY£ÁÌCxO1ç;Êš†[ÊÈ%‘wB²\°|eå×=´åI6”Ы•çÎkË[·ÔŸ—΄2­á—P`AKGR¹±]«˜¡Õó©(&/üˆ…*` ¦{ªC&^©1ÿ)±ÿ)I&:50Ö[ôé9ïšñþÛzô˜OЂ±¹’îKET/b?èäç3Ú¥Üǰv¬T¤ÈUsÝ»ˆ½xÝOö'L¹ ¸ë eŠvGãÅ8Dª+9þ0¢¶O¨lè5²™4R¾8àjIMO½šô:çãHñÐÇέ¶«%¬5 ðªAü5±n²g¡Þi·ýØ è¶ÙKùÞíšáõËë{ÀÏU×ä F¯ýMÏÆCY‹±¸óÂy1¨aG½[¬ðÔHlèbÃ3gçP©Bd®”öIͼê`ˆk¯–-JÕp¹ŽxªÀÜ–…(óÚOuwÂ@Åã[;$?À+5zU®'|\ãeìR s/†šÿ®[‰(á@Šãf©ë l?„hOE0wœ™…“OBùFñ ‰|FmÙð÷Z>.û¶¨áj.Øá%Ê2zjîXpžtO}U0é*†C4"l1£ů×Hô@ÇÙú¹‚að7­ê›BâçÄée‰ª0z¹AT©ÆM2Bz>CYص“ÆïÞÁ´ØwÎSB Ÿ`÷q$1ðV¶5±‘ @¡ªTD|ú^JٞŠéÇ C-E®â2Örf»ýÕyñ×J§Û¬ Vª}\Íæ«±†ìʚΎ@O³Z7“»ç¨r‡mTÌà crnŸI :ìËvˆÚª"êbt Zdx8G˜P@FŽa›Í„ øYIÜœŒ 4äø/özIE,UŒ!±Ž±¡§uÏ\Æ(ƒX½ íîb¡SÅ_é,a­)“íÌ/¶w–~Aý«WX)R “uCØ :{Í—¸ÏS_ þ„bbRE–ü›À|;Ÿ‹TÕkµ z3œ0œ7Ö‹sF\RAébÝYaë3]I6c–(*ÿ1 <á /Afüê;Â'1·º¾ß½sõ6ŠBªZf¡í(ìz`çò@)0ïI]¾Ug:…–,F1ê3Ѷ"Û#sœǰ£*UJªÂZßȹ²µ‡¥j"²®•^)ôªºŠè[…Î.”¤rÛS½ÀéM]㪈·có äyÕa^µÎäj£š/–ÌXÊ€F‘ÕZÜ©à±)-[}Ê´(/u>AÅh;„_®ž‹‰ðë™o!”|/¹ûÒ±L|‹xN›BÃY¼ˆ‹aÙò§^‘Š`P?ˆ%US0ö€{ªù>^MI±UE„²I-âEœãE| "Tg2a‘™ †ÑðEèäFX@—ëj…PBNUä’öɺÂûXÏŸÑ8.¹G´p§‹…pqà‹ZÚ®úä(@¯U |Ò8]üF!;*„zi9ãg½Î$qùÑ}ܲœ­T!!†t‡ÂqÙÅ}¥Bˆ%—\ÜЏj‰W€)áøÜ´u—ìq!/@øÃ(Mì¸ðPîèð_ÑÑ^þ„ÆÈe5Ê•¡üW'*0||ÌN>ª"(Au_2Vgvèy(—ø¯ˆ –x~“¯;/?ÎÓh<3XkQ^µGÙ4“÷OX̆Jc®‰+¦‹/šÇËÞ-Êú :I4¨¾jTÈÉ£Û*D½Š ð|ÅÙÀÿÔÛ= yiÊcuÖY¢ù^óSPIë€Èñcõ>×냾˜µ:k.¤Û mRjäJvÛµž«¼\ ÒÍÆù_ Ò^%_3gV‘!»§™87Ϭ˂çÇõZ•ÌiÇlS]Àpsù/‡‚ɽ"_s Ù&»pßÔìÐ@ U‰,ŒæfëoŽy”`¨E„€?|Æ^é Þfx-÷Ê8°deÝ„?!íd쯥چÑ#€ë´•:‘F]¡DæÛvL”9ç|R˶®(ã‡Ú Aá·ûî`ìë2hõA§Çôaiq/f¡IÌ7M6û>y í©RQ³Í²ÒdæEB:dÁ\oU#¸b Ëȩ̟÷’ò{êÍnuˆõ%÷ýÓL*c ü‰8%wG±«ŽVbñ·ÎÌYîð¶/_$Ú³¡Œ 5ã/|œÝ(êMžŽïE¼´½¬;,j–RQÜMè{ZÕìÛ]¡£± d® ЏôDanôžÉ+樂BVª¬»²Ë3eUñ²Š/Èé\qÄŠ9ÙCÓúŠIK›]q*BÍÏë|ú– ^ìwö·¶ätsûÐcl„ƒªËJ¯òXÕ]ƒé¾Ÿ»”Dù¾q¼Ô¡¹äΟ‡4çk)(¬.ÈöÔ‡g½]/F¿xÅrè&+üá;‘0€Bg%EUS¶zDK¸¨ÔA–Üðé>ÎГê„Y¬&‡ò ]9¡7<ÅÓãÀûÕfž»J•GXn9·²0~'rL›æ&Å£œoê•­} ; ÞvñVÄ”î(nOEakò”ª’ 0=°“Έf©ž˜mHÁfoÙш€KÂ…"¬yÜWñ€Õû¢@ødFðü!•âT¥¿*˜bרï¥6•ûB­ 滸gýåw°æüåwðÀøËÛw’cuтǚÐn[¹MÙJ1Æêö+²¥“ã  ?égîê1þ´°§+Qð'üöޏYçƒîžŒŠ æF ,²#Î Ú~«,=kµ,œ)ïhVda0¦çÇZ­uŸ‚;JËCBÁøDóZªÆm}{kv^¡ð6J³ŠE¬çðŽUuAÉT°ôZÊoÈ”"·Ü,À¤|´AF5EHM ¬öùMp2ÚŸi R( 2N™ì)·±"ú¤ù™îL¡:“‰)íL+اögºk‹tŠÙÂogCš2Á $¹¶7úi¶£ïß°¥*d)ä,1Zዜ¨ð±áÒîûŠ]«b™9à{«‘÷}øö„7 ØD¬¸HwŸ1÷-ÅÙûäìí5zjêÀKÄ|J…»LÒ5ŸÆåãb¶\ñqà%B>Áï‚ð7üå‘ Ý !,"ð€ðŒD™d0©YøåzÁ'âÀK„|‚_ V’È@‘ëE+ A¤a|„|‚ß‚ðIqá\`#Ý£hC/ñ))È„"ÐûË…†G?X`Á´<–íÕÄQñOýi®xm>›ó®è[ £Æ×vcT‚|šcjÀOæ|¬{`Ôm°«4qà%B>=ý×IûùëO¿N~þü—O“¿}þå÷¯üódók¹Å—ÿãÿCšüÓ—_þãÓ_&—/ŸÿöéË×ÿýÏPÑÿõéËÏ?ýñ ÞNvŸ~ÿô姯ðÁ¿}ùü¼üuòß&Õ׿~úòçñ»§éÇét-Ôj>¼NŠøÃÁѼž´\¼^9(䩤ë„USD¡òœƒÜo«èÓe~pÚ(³Zùéã÷·Ë;‰&뎡ó; X…:`Áv&“¼ Có®Ò‡h¥µlÊ )6THhr†Ô¡[ÔÕ+jf$Ju 7 útM@מeþ(i-_$‚ÜË0Hµ«Îò€(ëGP2…BΦ²ý\¾»°"RúH ùªdv”O•„§âÜ™=Ä2¹uä(±ŒtoöÏH›ñf±ŒôÇhöÛH‡ƒg±Œté!vÙ1<{ˆgvv'ñÌÎïâä!¶éÛ%ó#ZÌC|³gº'yˆyöÎlHâœR{””Çœ@bœÒ™RÉCœS:ãýÓ”ÎL˜?&i´½ D„od—>ßyù‰b’÷ “à¹8ünHhocײ+ú¡Fnž‡µšHEöš7ϾdœYF¼`´ô2Bj|;È©Ìó£D6@¤ä;†éi¤âø”³ÝÁ†ƒñ·ƒŒ¼@åp¦Ž2î祳ÑÁ,'aü_ ¥ q÷:— ÙSÅ[Î;¤}HšTŽLZ<$N*[&-’&½z®|Üú±\>(W*"~H®Ô67-Zwj—›–-<µ=]—1Hã4è!Nii»|ˆ[·kVñKcwÍê!}¥õêòË´N]b™Ö‘…«‡8¦³U•ÕCÓ9baõËt¶XX=Ä-¤¦ÄãZ7]?Ä0+`ÖñMç(Pë‡Øæ•™Së‡xçÊ!=¤¬¼ÙÂbý²òæï'ÖWÓÍ4„0a ðjš:“fóÐpj”¶º`P @yL `‰¦Ä¾ßlÈF¿tÄȨÇòPñúGn6…÷Øîj Ö›Ëc‹oûâVXUÝ>¶Ë{AÒ-¶r›~_ÆâÙ6Å)Í…ÃÛ‡4f­ÐчµÖî¨p‰ïÑröUrU<Ä­n¸ÄC]~±†M<ĥĿík…Oo`ÑášÄ‹¬`>¼Ò€G´±+ïÐ{LWö¡5¨µœ>´Ýé¬1KÚ¢\íz<´Cysø9¥©“ÎBB¾í‡q`»?P2D”G,&§b‚Fr~†—åË` ï×¼ë{1{¨ò7[ÑÊR‘ŽhsÈZØÎDúvÕó‡X±t@’Ý•òCwÈCãÙ«dý9 ÝÆ´Îü!ñÄböêLþNÄB-§e:ÿÆeš…ÜÕâ…?PÒk65á!5ZD{Z~ÏáÔ å9˜U¹ò¡unçˆJùV½³y\>$mÈC²ÊÙoÈï±ö(g´ð¸uVÕóðZrCAo7¿xˆ+ò7$ýNè@ñÐjæ'‚<4†ÂÝÉZ’©xhDûé2 |ýNͳVÉwZë¶îµä»Î®Ë3F8B›©²&$bK¾fßs.é×ì{Ž˜Üš}ÏI“_³ï‘n;‡Ó¼š=vÔ]³5{ìÀ»Õì!>ëøš=Äg]¨fñYo6­N'¡ã]ÔClÖ²PñصÚí‘ø!¦Ú[KLòØxï{—çã±y‡¤1Ì›¹?L;ëvõ1úG‰Á*ž\ú˜XÈC[ÚÌV•Ì=4Mߨ j±Ò¼ŠFxOD÷+(ﱃc3ÿ‚|Ï >4}ñÐlyï¢<4Y>Œ`虇fHíV‡Æs;çQ>bÜø0ëE|GÝ_‰ÌíË3]˜µ A—½¨¯ç„A|©J5“¢FïÏ2¾Ö…e³â·èþBÇkøåœ?((ÂÖ,¡JØû%Ô‹+ f„šÍB¨L¼ “9}èÁê𰤂TZa® e¨ú9'Ô„@ióEp™baìj Æë¥ÚI áp’ç î8†S„öj-ñØa~ǹCÜGãmÄéBU¸=ï” Pﯔø¢;PaÓÐo”× )ŒÛ|4aÎ £À;Š‘Ý”;Ì ¡ã#±_¢ÒòPüö¶!‘邲jG“ÐñÚ–¡¦Ru®@hÕš+K'3›çËÙáÁpSýÙíéWJ 1e|¥a´ øåæX¿æ( ˜Çé«v?>C¨%A­oŽÆe_:HQ8·×‚ªË™*¿½0(M‹CŒä·W†|äé;l… }_ù;¬‚\åõÔ¼Ãþ—U—Ö®Óì%QßÖ¢9êBß– ñA}{ä9j Ô·Gœ£Þ‰ó®¤N¿=ä|·•4âdÇ›Õ^qòÉsYö³`Ø‘µw‡ÍMS)Ùd‡{C€Û6|އöÒ’`-²P[V5âÜ7¥ÞÛ–­¾V ¼²8],Cº fƒác?aØ.öEþ†|‹;\™xzwî˜5,ÀU´H~Ç´aÉa=Pw¤¨wÌåX¶íQR@1@¹cÅëbÃÝ1±øx]宇¸cnÅkd`Ý­<Ö¡1±¸CwâÉ/ŠüQ6¡(l@ÿ0Ÿ¼í˶!ˆG™DCø²‰È2yF6^?Ê:Ý©唺ê@ê§âúQn1œ²=Vˆõ(· ^le½’/6ö⺮?Ð6k±y´_y*›ªÐ™ñèÑN‘uß»Ž÷öÑîÙíµ »àî¡WT¿ï^ÜáuJû×+›àbûè|{ëñrÙd¬F´GgØö({ö({õ`}* c(–ÕŽ Ù⧯À"$šý¡DDDy”ËäÙï¯;Á\°ÞIàv¤¶ˆGy벪x”¹DzØ‹†RR?=ÊW²aúéQ¾jŽrÔ™PÒG¹)ßå¬=3ï¸óâ,è³¶¡ =ÊY'µÒGk@ó…CúøÚHLš>ÊW#³g4 ÓGyÊò;-»m`¿±pèÇEvÛS,.Gµ|¸Ãù/0¯–&’ÝÞ\Æåh_ŸÛ^aqœ¾>·`ý³Ç„é/dè-¿ÈT÷™¯Ñi¬Qh¯zÇ*ÛÓJ”?*ì‹üQ¹ãú¥!ÖãbGLJªÍÃ[‡áï0dC¶¥þ}X¸ Ó7 ›Q 4Ñ•8o ØÖÂ[â+ÃN¿ÇpÈží:¸¸Ç†²Z÷(KùQG÷Jdq£pCy™1ŠÁTëQÞâ˜áQÎrnž-ŠG¹Êu°E¬G‹½9¶¸Ã6zKµ1+÷(ƒí¸5ÿ7Ç€QÖ\Ï=Êmζ˜Ž˜ô¢{‡Ãc\Uíqeµ½³¹[Þáì2³œÊIN²˜‚xOòa¼)ŒG¹IÕCƒ<ÊDrT›ã¬0¶ F£06 FKw8)ìŠýAîÁ<¼û?šŒ¿¼Ã31`¥Ç}ËògÄ@kùÃFP'<ʨðG9â•Ê~x£u”]K&œåN†ñA´,&Ë;ü ã;îQÖ¸økÉògÄð™{”qú¦Žù…ìQ6ÊßèÀny‡b SôÛ°~׬ðXr¹ D¯ù¸˜aøVô:¼o”¸¦¹•ûâZZ‹ÝlJ F¦E(Ààý$dUïÊ1i2¬ºÏ0ì´o|{ßÏGª:‹rªNpÃËUG2õ9Š´Ô™LžfsŒï¿AלըŒaHW ‚Í3ûæôò4Sù›³Ð@‘§Yä„ F }ܺætLú¦;`Iš&pÉšå*—Z¸ Kùq,§<aä]ÀÙ$&KTnGŽ“(¡ÓœIè4 Oð»ÔJa;hÊ%æt¤¬ië€KåçæÜæ£n„;Ê÷÷Í\;tÆÒÏ)Èw¾ Í¡9£²<7ÝQÀ ˆ»UzÙã¶Ô ì=\ìçù:äØK ÿ†Üò0µÙM~»qµI]˜ÉÇ®û¤®?6=äPo 5zÈIXQ Òé»ÂV*·zãž>ä3œ3õÏpÎtÖí…- duÖw…±ìï `²³ï£ŒÕúž dÊ>1^ÚE¼ïqA7ðz–ø®—\{¿'Ú¥ºo1@=ÄdÒgegÉÇîý>ûWøKmt”‡XmÏTç{¢_š³ñ»‚_Ž–̺÷@ãd|ìBÐÞ°®Mûž0˜6_~W0L.`ÀL>vè`Þʇøéà³Ác2ŒPž?ÄPG¦J…àp€ÌÛR33#Ö·cÚÍ|ˆ¹ŽA!:ˆÃN6;,â©“/^ñÕÉÄðeЙ©ÑClufjô=÷ô-xì:Ö9Èßhs¼·80ÃCåÁ™2þ»âo2šÍ·Æà áõM~,,çÅžD…å¼ø,û]9- ‡­öyÿ±.-R ÕY3ó黢ušýõXÄÎÆï¯ÇbvšQQÕ2ëöw™!I}Èï¹®oªû=W÷- ï‰¯f ÇC¬Ö2¬öXœÏ6(º¿+Öç¨pßÂÖ\‹úÙ…[úݱc-‰}‡G}ÎXÌUê÷zóŨ"åcþ“iïp±g€t×~¡|,øè«½°={ôÕßêmâ©W_2lb¦W¦“b£˜=Ä;?0}ôÿ\ýÝq!ÁÛ H1Ñ›ßÛ[Ê?¸ ~ðÿß\9ÌÇWÅh¨zmÚ—»ñ\IÞákÏ™é(íL>TUø,²ªáY2ŒìcV…'šMyz‡¿ýݘ½ð¹ÃéþnL»¾'Ú™ÜËíÇ‚¹ò˜Ö°?Ä}¦3«5Nw8èß×ÑÞù÷ÀY£s‡“þ=˜ýÀÜᯜ9&w8퇭ÅÐ÷X°íNûöÐUñšo 7.{ˆáxÌžë²ïI Ù÷œ Cö=§(ÁðX¤à’áì{BòYUú¾h|Ð÷˜¬¶Ýq Œ`é;®ÜÙ³ôWîÆ´;à!öã{–¾ãÁݘæ°ßq· 6ìµm”»ãfÁhÃ}Kj4kh‹QìBöƒòXtbÍŽÇwþt~,VqÇLçÇwy,r±‹ÖsÈcŒ]4»¹1 ÙsÈ7î@3ö±ØÇWÛÆðXä«Ïfw\8YýþXLå«­M=SY¹½>¿Ê#&”8"ÎC|eá¼ L‰ß§Á0RѨy*³E<>VŽWžˆE.².›KEÑÄfÅLeœ_† ^±Aoú¸;ÿ»dË·>kPýPÂæ»H¨è$Øæ _tH,Rl{£Ñs*yþ%1ÌÂEqÎe/¨ìÅ7vxEÙ®ov¸õ™×áK*zùÍîîëŽk»ñ+ªÁêk`8‰5}ø(TúšJEÎû8[Ü 2÷"êRÜ*]w6ùì›olªQ5•ZaE|h¢û0PÃ-Õpû]óïÎúÅg$[;AµßÉ*wÖïó°5L©†)@“jx3fáK-²ýõÖ€"?ñ寨ü`ññÊLx«7ûâvޱ®‹2K°Y°çq.¤)ù­\ìÒŒº4ûÆ.§Äå>dëA·%Š<V—Tãâá¬P$N-¶rêp%³éí«1éi$Ôk¦|Ûãu9Šsv˜dÕ¹iŹ}÷Îy0MOùï&è¯Ùnév€æ?U‹FÍüv싦BšÛ³ò\Tõ ºƒvV]QYöÒ<–ÒJÝ…nÚºËz–½ sÏU4Úd¶X!l8¡öÂ…Å;Bý¦Ü·Þ¾GüÛkž¾ £h  A~†8ÿŠŒ Ú¿ú¸®NxY­;ÉZ@ïž‘/&í¾ê˜¡¿y(·Úp_8{J¸ô$:f„ Ñ|ƱÀ;le1^&s2óî]äíÛS’áÞ+É¢±PwG±«Ž¥5V¼u ´/3Ñå6Û×å Ì”ì1DZÁS˜b/`zV@Zb•W«†©"!íÛaÚUç1FõP&ºÞý~¸á @åŸ;0@ß•—×zÌÇJ{Ш|¨t? æ8*ëàâÌÊëhPbÇD—DI}EeŽ®Ø2öâX`õJ?T_ô7‡{€žQœôûÍn¿6½÷ïØõ¥¼ü=Á<™ÍÐÔEÕ~)s¢~,ª¶àÙElpiqT¥?X[–8*÷„0åâbW?TûM´TïÛË5¤Pß”¡Æ ™{¢lÄK¿HþØÄ…¨ñ£èŽDþ؈Ÿp¹¸'¨(C{&ÚÇÆC3ñcà WvOxP†Éìž   mMå>6ÈMIÓúžèŸ‡ œZ÷Äúdˆ;*ø±!.¨»â=?6Äâ{¢vrüA’èžœ…M±ÌÚç Æ )籯Žyÿ#7ÎccŸÕ×K[Ñæ/Ó„¾'8g´iZæÜ3ŠC"àž°œ7¦”cW«¡¿Ã·‡¤”OÈ㜬®ÜJP^ @ùn¾écH6{ÄyŒkÄa*qˆº:ßË4”¾pc£Y=ÐwsÍ'Ã=:¹ø¹Ù‹ ¦Ë"ÇXǬ uò=‘9oµ©Eœïæ. c*O8ñ5/ÔjzOˆÎÒ¹K)pOô8 i$è$À¹'2ç œ+áÐMPÖoðn༊îÝ»þJÆ‚I—úŽÈ¹7¥µ–Lò¶è6ÖÀ`÷dÐÒj/ÊzOˆ'É“À)óÇùƈod :3È‘½¿¨`ÕÍïˆ À“_ÏH}G‚)¾Zòü$VwÜd=¯ |–¿Éc…†:³«½IÄy8fpÕRC k–¿—õ <ÊìT+JŠ£çшfi]‰>û ÀÜ!|X˜³ìZ´„^e 0wÜE¾ˆ4Ù¡G{84pŸÀÓ$Îw3͵C˜ïàUìé;. âÈ«ÆÎ’`ÇÖQÇ4ÌwgJb+÷(O]QØ<œ[k4LI82å®É âQþ!yDˆ‡£*Ä !e”Å C ú‰µ,˜‡#)*Ó¾]©‡Så¯8@÷˜IËŠ¢t€ßöŠþá´Vè^MÞh5{8áSË$t¸‡s§¨ÞxtÞ· Ñ?œà©mhÆ?œÕ©U£ñp*'Å gnj4ýÃÌ fΧ‡S4õöÉÞ½ƒßØÉH0`â^Ô9…ådNG†‚‡ä`býX .¹C%þXí(Ç ÙÊê±{J6TI•z, —<ïø!7éö I ò€·œ¨%¯ ²•u¢­{„Æ~=¦èåƒpú¯¢LÕ‘s8PÖ…ËI» ‰ |,"–èô±«·/HúØåÚ—ášAùV±ãðdà»W{EÒÛB:êª0Ü0¬Ç"\ÌzDù®°iÎ!>À}Oð4#ƒüX`Q¤†i€ßDͼPßs+L]ëWME7§#qÆwE¼Â»ˆñwU81 gu±Æ­Ý×U·3=÷!öҸűêê²Ù#Î÷„³j>te]Ë£J!`±Ò‡Û}ˆÃ>„æÒ£±®êªíÎ9Jêƒ\u'ã!¦z 5ê1¥œ"Ųz)AÙ©Ú=¨>¸Ê?Ǫ¥»f¶ä|,|•‡ÄrÒcq¬^€‰»ÂkÊcñ©JT(‹H•U¨ò­§AÚPp´u¬×3Ô—ÖÁñV_Ê»ëÕò!ç±>Ü8vÿú!¯±uéÇ.iïª!ò9=pI¡¤|,ØR_ääÇ"-õ8È…Xê«7H#Ž­ÖË7·O;ªƒc^…d–G¬×cñŒ¼ô´4Çy° ^¯ ìzÓoÍNíYyð$¸²R¬ïØgsj˜· ß±ßfp Gß±ãæädu—†‚  ‘¦!*‚xl‰ÔB<“IÇÔ®Òcù¡“c·<˜éBûžÀµ>ÚC T‡Ð¾'à£vï@²Ûê€ðX¤ óBñc1ÔaÒú±@3£‹ÿ³;V-åA„‡&TP"ÂCó©G@cÁc!~ðýRA@¡%nýXLqÞËLœÅä1rj× Ð[«xG&Ý0χ0´&¤å?ãFg™Ìcm´M–tmyhRj×ÿqÚ#7’ä‰ÃïóSÄ΋nl+÷Ñ@¿p’Î  2Ä#S‘B¡¡éÊî¶JYÔ3Ïì§ÌŒGÐIw^a5ÿÆLd‰¤ÿÌÜÝÜü²ãƤ±Yœð'v”&´˜™§v0çÈwr„iqÛÅÙ¢íz÷Á¯Î¾„Ž—; Ùf›{T}nÂ鮳­Üqöġ΃Éx^°á©Þ'ú,,œõB`êÀ5^¬ôëY¤žD?p¼ì¶°Þ…´´áÕ "¯%!oÖÆ¡¯W|¶›ØÊKLиÞl ³u kß…îw¡ïû%¡ôz[ß*hAt¬¼&õ¸nÐQ|J›$”—¡[&mV.Í.8Äž­Žv*^{˜"smort½XãTf¸t¡SÓJlJ»>\°»Ú·ýÒÙ,HÌ7+½ ¶è¸±8ÁÇ@C}KøÅÍv (ê¢,4©è¾!Z{ÇÍAß#ú6ë®æ¢då½ã ìD„É;Xeù®Iø›I}³ì›H‡žÓ…ô¶Kê«íj`_Õ:•‡é;¢™+Âív`Ÿ5¹JX¯À¶{‘gø5̨M5Œ–œÉEØrˆžw¢4I2{„ì¼iö„m:æ©"¹­áu~‰Ðy²b©]Sü€6D51÷XѹøÅK$á‰ÝB;%¶+¡ö¦ÊeEv‹mNE+…íŠ U)¾©Wf·ÊÉ`h•Á=Ò[£öWUµ($¢C6ƒûgHÝê*Üå1—÷ ´‡¦’ú/«Šæcj·×ŽèvE›h•m~¬TXä„mýú»·Â½ÛY ª¾½Î¹0¬‰*´Q­ ë}{Üâ©Ö‘°Å¢¨ ÇÍ“¬»sm]>-æÚS(WÂn Ø§‘pÑP²+.MuGÛJ îÎ)7¸»0 S= 2©2Í–Áu´ä• œã.iEç.µJÚ‚Å©ÎÓÞy²8*,òºª¬ûžr‹c“Ë9Ú„höÆÛ.CäÛœÔý,œV¯¡ò@ yXë—5˜õ]8876˜´í‰'þ}–¾ýøüËìoo?¿Î~{ûòõÇ÷?Ï–›í_ýeäÿ°Œóúí˾þ<»|{ûíõÛÿþó,ûí·œQx;;¾~}ýöù|ð÷oo¿þyüköfѾ~ûëí»‡ùOææóòd®zU_xäWžܶÓÚç/€‰[éùÜÙš0W&ÌZ l|T]úž€Îž¨I=µÚ¹¨JÕø&¿Ä™/æŠP‹Æí ^_£"I#à,ïÂɳiÌú.˜è…ò„8Ûi8…ñF7`öwÁÔ’cÍ1ÿFcÝ2v”}[¢è39 ÆQaEÈQ”àL!ÙÅÅD’ª(.&Šl÷×b¢ɆT/&ŠltØDñ9j¤z1Q†Žjc/'ÊÐ±ÝØË‰bTÖ®H@åÈÓ4Ór¢0y1²œ(Iõœó3QüÆP[N”$¿Ñû…ÈoŒÕD)òÛR´-EåÝ ÿ‹O”÷ÙYM”SS U_Ÿá@:)ª~?£ajü8÷êLõþ SÜ“£÷Ï|¡zÿŒÆªÆ©êÿ3'T›Zõû skjÕÍg“7‡`À›ºõϰðDQz©o&—SšË:„ºÏ¥ºlXNµ hš¹) –åT{‚¨vgÐ@¼OuÕÛnªuAJep¼¡rÞpðª…>é™Ò¥Eó^÷k_#Å~…™#6ð)º\°¾N¿¢TÊ')¶**°å©F5Ìã)%KVÔ©¬:jÀQ\‘Ñ©)@˜Ê Ê÷¯Gõåݼx¿^Ò?äû{X_žÓAùþÖ—/RbBW›Чp¤¦p¨œ…©cséŠÛqûÍõ „Ô‹Wæ+×8´•ibtR?aÝ$ B$€ ÃõÒ ­)B†Zºº$×RªÜšš³$ôÄz€ù•©|îʆ“‘…Œ'@•mH"΀eÀ©e)œ¬pÀˆ3Zþ±0èú¸ª¡ 4L’<_Xoš.9Àt±q}\³®ØX[äÅóÓ„@¦ MÒ>°š Û–!Šönº(e',?]râ( jî¦KO}mç§A„hÓ¥—æëýtá)&ÿõ~zËäñêJgÚέ,·pòìß×ÔôÆ‘qÙÎ6öþaz3½b']Ð0Á¦· ¬Üm®Ó‡^VÏ0ˆÓÇáK‰x ; xÓGÞ‹nº¸„nº¸•px¢»¹Wr‡NÓEωwòq¦Kl¸)rWº ¢L—µ‹VxÅtaÖÉ ž{xÔ^ÓåL&šöš.g©fˆévó¦kºt¼òsº¤yšjÝ#iÐv˜jP¦Kš­ÓjÖtA«ðڊúg.%±`×?lœÖtS ÚGqÖ¶ÑÓW—ÈÕ±dÙÞI˜wQÕäS\-®í~ƒ±>-\h»ßf̨ eu3À&°O —<õ‡õ!•<õ[„ÛÉ'‘Ôdf€å¡‘«³Â•3]3©AÖÎt}Ô´OC´{Ô‘˜ùÄÑ[†8e4j Û{F•1à ±BÓFÓ•Ðm YÇ›®‰^4pŽ+ûæ*¨é²Õp>_9Ìì†Rê8]ÄÚ¡[ÖCN:‹PŠ]Ž›Õ!ç=(֦˚N4¦KZÃCoíN—²¦­-¢M4­ÝzÀÑmÿ‚¨Îàt;êÖît‘»%¬Wœ.}mwuÙƒ¨ÓÅÏSì!ûÊuäf€%¤ùXçìcju™.r9È{B™.g„ò’£L—®œ—fºPL£Üq(aŽrÇÉ¢$9ÊG ˆ’Ê FãéfyåñB@wœ2õá°`¶h¼CÀÐf€¥¢±N9ÀHPcL—“ÄÀt y&úwlà™¥tp´`Ø×¥ÊÍf€ bßÎ¥8]T.í™g3À>±k®œ.H²í-º`«h‚s^^p›¶`˜h„°s„;ÎÖƒv­ÐFe³1E"\íkÙMš¢zµj™MZýÞÃb.òD›ô£Œâ£=||4½ó"Lb1`Ko¸†X¾ËldNÀŠj·rMµÛokilÊ‚µ6Å£óÓÃÂÞO?TÀ‰daÛ2E©ÄüFUeΩxгÀïlrãG>Tݦ€ùv™ÁGoÕÓ‹$‡Ð „åãIÞ,-äž&äY“Û™ÖD‹Y«iÒ Pí³kPW´ ¨Àå ëΰ“¹•vÍÕ 'Z‘:šF›h?êhí¾”J£Ý†²4m ‰òUUAKn¬ÝçÉ”ïkþ£€xŸ7S ±;cTêj}_´Êܘ¿›(t²=$ò“@€œ(|n{Hܾ²8œ‰¢çiXº/ze}”Þ¼òv¦P¥ÌkÒ©þ'^í4øVÁûÂXª’:`¡×é¨ñl_È©¾'§º )ÀL”¯S[(¦F¸t꾈dJÇL½T#zSã|¦Fg¬ÏÛ³¼/溞õ33×—!–¬¢×X§wÖfŠúŒ6ÀT]‹úTca&ÊÞS[Œ˜«k¡Š`®åĺŸ(oÏê485°ès{#9ÀE¶ª¦5ö…ëYÓÜÅ꣆«‰²ôQÓV÷9j×¹`×ßТГQÝ…Uo÷Fý]Pж`‹®Ÿè<_fØÞ,Ðûâu”ÌL sЉ¤ï"c?¹Dh ,ˆƒ…1mÉvHˆ´.”o\D}ä—DÞ3ÇÜ2Pýê#SåWD}5šú-ì[ùÛW&úk¢¿ÝøJ°¸.”[¿é·ßt Q¬ß/t ±ø$âv€½ëزæ.+ªÚ«[êÕíh©ªléîÓê3q`#í­ûÕÊS,lïÚ¯Wе‰¢=𢢍ÏûÆrAÐ!‚Îh‚·AÙYÃÛg=IôòeŠŽÞfH(ÆN’±©#Ê%’îè**ƒ¾«Mk’Dµ\IdŸ;¾KÒ8³oˆ6î7m—Ytí(LR¦XÆz|„_£\ý4KìØ¿¤%ïñQÏ‚p‹9Â-ŒiâÚp0ÊOÄéwá×3bá1a¬ˆŠ¾ðÅTµP˜4ê ¿`áþ5]äs{õå<ÛV ìÓ»BŽJ+¿4V„ö$ƒ'X!±ÇG-JÓŠºreLTµnu¥luåq$áµñÒÔæÒÔ# $(VKcÑš/„[ª¦n²Áp«°ˆ£³gav–1ŠB¨PëÑ,õ¢,™ ÷ý‘,Ôò•SyYèÄpÖÖX[ÛÖ’7l8ôñc;À°yÚ£ãÇÇÎ÷ .ö«oc&®q® Ä1 |MTIñ’f3¾¶Eæ`XEÛ‹ý'è/{ªLeI.ј°–Èø¶+BlÖ€$|eL1 p”&¦Œ*Í+ï)€š˜(ꤺ3QhÊÁݳš¢“q‡õ6$ynEúHL5y¾ílebJ0O.NRö5’½7ÖÔ$:…1Qò,’\,`|i£­!¬î»}ù'ß¡òSãåæ‚`jÄ\G9SCæJ_bñ©s“(ÃâSÃ很”¸Ÿ-×­凄Ԗǰ¹!L•U'L“¸Pù©ˆ, €©pF…?$úŸ¶tH¥§ö?FZ…âS»?‚ÂCâøi ãÂĽO[:&ÚS;=ñiØ Ó§—[ÃnHP>mñŒˆOír—nr—{T|j—_Hb†„×ÓK é«!‘ôôêÖ´ÓwtäwiªDS¾A—[@š* v|½¤Ñ1†©^æú|H½ž ziHä¼$RCâç ¨^Ž5Y_Ü=„&†L‘ö`ª$Ùq”àF‚"PS©…™›iª‰“wö±»NK÷ …ö¤©bT«\ Å E´XQO?u¿K)·ñ³›•GqADGÊY@K6Õ—@óCÄš˜G†G,>Ñ41}ÁÂSݶÑ+1¨]'Z"Ú™Hãc¢b…QØ™c&s€› GPá©KX‘©1p`…§ºË=aá©qO•Q¯ÿ…ø/†pª/Ü OùP®ŠìÊžЦƴ).z‹øÐ€sgà¤FBk¼/|R-®¶{j(B,΄¸/Œ’çëwŸ§F…DzÂtr@rrgŒ²>”©N8d§°¹(}˜zq”ë–€9¬Mv®£ÜÏ¡Uµ©V¯4` õa'Ʊ۲©ú HMvR@¡‚›é¤dnj˜“û~j|“…o?±÷¤ÅòzߘßÕ¢8M ÒÊ¡P;Ç.Ob ä¾@͵¹uÀ&U‹ä6Ô߀mª^AE¸d§™ ©±‡ ˆ@¦ÎTH† SßÁp#+ð?dòÖ& èBÁ_¼…§"[iÏi·6•rDvÚ%P-ª•ÑqÊ´ŠÅ9!—iÓð3í¦F´(.ºêKª©Q!ŠƒõÄŽÒ„4SAÀ¦ãùNŽ15 ³8[´›ã!hhw¢|uRU˜Ã»îrñøèº+St3q³ xö<¹08šô|ñò°˜¯ç”×e½Üié¬ç?árKÆ2m5žÁø†×òÑ­ÝYiÑWP‹(G©á]ûüÅ€ºÙê#6jP‹Ÿ`gšz§ìC;QÉã£éÕ1‡¶ zo€Þ˜¡½ì“Ülö96.Yuc~gÆN¤û#aÖ9öƨOLå¯fèÊͳÏ3ÿXZ¶?m µQñ{YxD¯Jv¾Ï âlˆˆ³Õòÿi üCiqÕ€kŸ“AtèbO™}{Ìo£“@~eÛO[ ,…Žžükô°ØÊ5RÙÊ™ÊY:Ò¾kããcÇÛëÃÂÉG©³^ŒÚà,ROÂÝYdüVà@ Ì/_}µ&tt¹‚Žk×cMüÆk¢@ÞßÎz¿ÁÝ7D«¶í1è`§á)B»mwÒhê‚°œ6^;H¡¶ƒ™Àä‘ 6Ä$î5&0ù¾›ÉQ8älãÒ« "ì¦ð(ä mÔÖ¾›BÒM¤ÁÉGŽ3rš"¡“< ­ÍœÆÑfnV Ž‹ìrŒtšï-¢±Ëih'¨vŸ41œG¢á ÌQ4¤WšMÑj¾Çžß,¶9 ƒlízh4»¾ùµæ†"™Àmß·ûCïÔÜìýWÔ7++§'‡õ©ÙC?l¤G³ü1ôÓf=½3ÑÛŽRZz¤ˆqŽ×eCz_Ô”ýW$ [›èí Ë ­èžÚHˆ¼_¬:'aòѾk¤¥ù„(9¹Æ‘gîLçÁôÒÜRx&g»8—×°zftó—DwE}¸Ý ìÃf†7­,¶´ïp¶ûýŠ6~ÉEØÒH´ýÑy ÛÚÑñiÙ×jWæžßæò“/€—K¢âê·:-*ÍöÓÐi|RRÚ-¨çÈfp}Ó}WÑÜÐüBfChG††®éÛŠ6eðtèÔv íUï)RqRóÆ¢±•ê8~!Þ±Bò`ò+˜Ø„ˆskwøîã£öU‚;y—â™ÀŸukDUÁ4’™ˆ;‚it¾A›œÆÖL#„ÖJý'Ù¹c؇Du—SmëŠ6Õ¾*ûðåááßgéÛÏ¿Ìþööóëì··/_|ÿólqØíñÕ_FþË8¯ß¾üçëϳ˷7¨Àÿþ3Œ ÕøyöúóGøf&¾Ï~~ýû—¯ðô?þ{–}ýB䓟¿þüùÛÏ€ï¾üøòöuæ,V,aÏþùùûìÇ?_gÁÛ óö­ÖJ¿ôð)~úyv|ýúúíó/µ?ÿxýÇÛ·ÿžýçç_þ¥þ>K¿üøåKý5xýñãõÛãÃÃ|¾Æ\ÈóMq|–³\SÓ¦–64ì|¾%¼]7^~÷ÑDSž"–êŒ]a½\yöCÌ>ÅŽg¸~èÀàL£ÊZmÙj0cŒ«<`|ÛMç,; L„ì9VØÙê*l Å!jÑ7 mUçÓE*  ±GJ®ŽÒja ÕÏ]µ ­!„‘Ãæ «Ý‡Ÿ‡¶ûÉȯÐm¢ájúÇxS‘b€!׿µYñüùB7.ðd¾<¬Úl/ç{¤S&×À¼MÝŒÛY Œ/¤"4ŒZîJ*¥!˜'âkx”@ï)òÑ»ÏQpjUPh•7ÿÅm¹Ÿxy8T "KͶÄcbøÝ7¨ÿŠÍv€Ù2rÐí&V/=˜µ/®€Hò»´:Äe±¼þJÒèÒ†­ŽçëŸIDäZGdcb»ˆ ¥i ´ZkÇýùkñÈŽÎ*cûîz‰Ž’Ü&1ôá|…“ü¶e¨#`ž'Ó*DžªÙbÛèÜI~ñ»%ð|i¿@Yïàqp±ÌÐ’j†ôôzí×â‘¡,bÒÑ1¹*™lôA…) ¯›Ä,¹žau¤rys¾„ÎÒ@Òn§ÎÖ¶Ï5J¡¤jñ3¬d- eŠ» „AÅ·Úk&¯ZÝ›×7õÔ²"gçZ‰ÎXIä[4Ç0é¤ùÈ’]|Ç^$Ä Iä×v {SÓP÷–¨E——ÍUuº»`:ïnM6«ƒ Ø‹+ïe œ¢Ëd½ÂóͲ­¦?-¶yÎèBƒ·Ðþmª2Ñ‘AÓÄj¾YáÚg³ÑNÐ0‰‡˜æÞçŠw܆—®ôÃüÍ7û¦Ú§‹ÇE Y7›¨ðÊW_¹–]ÌE~ƒ¥ëe¬ÁQFñQW˜:M(îÆvÝ¢n(| ±¬3©¬X˜Nµç®n=º^Õj¤«IùÌG W?XKeÚš'KPÄXÚ!6´ËRÃG ,':\´.VÔU†‰îIìSY[e7Ÿ†¢Ä®\­º¯Ã¨r#khÊÄÌïAm¥+gý€Š£Œ\qi¤ÿ"}’dÓ‘­Yœ6:ôœŠ§–í²jü»Ü¶"ÕÛiF9„–Ò­N~¹´tÕ[7–—ª ™¨µ›öþ2?l6߯ØÝ«öJ¬^Ìç™U\è(}c{>ž”ѱ¾nÊ\»qÈ:Âxv¯¦¯ìwUàèwvt/wÐ Ëj­e¨e9­ß ÄT&¥V!÷W AUoÉ ¶ëjgZáÖLšº–æù1I{¼Ã¶Ã´»)Ö1®w)?ƒvíØb_ðßR¿ktªòÚ8iª¢ ¬¯nU;cÚ«!õ‡Õ–+œ>Õv£Ýèk››Ùü™)æ»ÌØZt@ ÿ©@Aüøc[ë69t”21x¿AÞÔ(é —¦G×jn†ÉFh¥íèf¾"¬lÜôûO5Î~»Æúß3¶Nêv½Ì´ënÞd]â(QIËÝÚ*e/)U€¦õZûÓ¦R yØvJÂmËÙÔröˆ–»i§Þv»}Ú¬?-h]§û„BÒ 9 ax¹k꟔ãlëù zÑØ_Ûvº„y=]Bk!ѧäF&J ‰rGHTmL‘©†*ÐJ•K 펪zÞÞ–®¬JÖr¾[t®´’ à‹µŸná„úœ! àê~›ÕÿU]Aê× ·‹ýû´•¡¢¥s†f§hlg¦ D Í0ý´˜W¹ŠƒÎ*ó@Áo+…Ä@FÛé#TâH1•vÚˆVAcʈ֗ÓE´”á°TK—R ê÷Æ-¸ÓD.Þç„ß#z÷\]ldòïÝ*/Å®Q?ÊI6¾šœÅAqwf Ýk;ªªËJ¡ÝÓÝ‚_TI+d£é&z³›°¢q¡Y¦«ØµgÑO0ÈzSUtìý‹öÇ(Çh—¿Í!QÞçtjÈ÷íMhIá©Ê<кÅAöçã³ä'À³“ À—AKÃxBó®N˜‚c"MW»’Zšh*1õäÔØ™K:ÒY:ËÞCUu2«)oð@ਪçv!–xœª²#CŠúø(¶[ݶiÝq¨žG5ëâ¼!¥ƒîl¹7Srž§‡µ TÛƒMè¦1bíšßÏÂBC@ai ¶Öúák‰8¾2k>¸Ö=pcÿèÁöL‚Z›hiµs}½µ‰ ¦ö(œÁA©¥EÜHkKõÙj®6É¢E7>ÅÉË·ëê n'ÊBbú¥ºI_*§ôÏP~GÌên„>íç¦Û2aº,»Š×ÂÕüj}ר)MnsN(_$) .Vˆ¸Ð$oÚ—ÅeYx: ñŠ ëƒ²ísÛ2òcð·uÝ5Ñ0&6š-Þù¾îÏ»vµ]9ЗW=ßk{òª«½i^¼kJV:_c*O#b³þš§:ŸàÖå,?° Ëç ÜL~À­ùeªðæ°#X±ènÝfwé_ä-‹¦7ðÇÒ@nLž3oU«À-zx78£ê±-kl³–'ÏX˜|²×vkýÕö–U {]l¡1ÑÚÞÔ¼ÖÕ±ÕòT«¾ŒvWïî­û]Õ[ÇÌnêÝÍ>ÉE}!k.ê­Amùb6Ÿè–Þݼ.é­MÚïèŽÞ=ž†º¢w÷ðÝnè›ÜåV4‡Ú§Zê@Ñ÷¹2m8QÈ$™½oy«bÅä=lçUqÚ#=…¢&üâÞ±DwìšorË©]\µ¿æ–¼us·ä¶î0:?›+¡|ps|ÞÖŸ»«QtV¤ÓÕw•ÓZ·Fy·ƒuO¿è뵙ל«tÏÊõzUçÞ÷»ý¾¿‚M,s%õ_V4÷¢æÉÝ]Ñ&Ҩʚ:UäôíöÖb¨ùðªë»Ú^ç´Ni4Ñyô€ý"](°ÒßÜqóE¹;×¬ÂæÚÃSWÂö¡Ø€^.xq¥?J½ívéâ¥eôìÎiÂtš¡¤'/¯L1A— –較Éw¦Ž»¤•—»Ô,ŽôNÅNuüûΓʼnvqæÜUUÝ÷h{MÞ÷r¾uZým×}ám2êþæ.ADÕ`©·xëöaâv? –€Ú¦šHŠ…ÃïE …ÿ»G0Sü}£¬7üÑþêÿãëÛ·ÏÿñËëì¶?>†À6!ðåVæÇÛì?^gìw_*ì/Çïf³ç·o?ÿÕúöúùÿþÁþãì/³ó—ŸóH]þþëWø7þ#ùòõ¿¼þõÿÞ~¼þ ä囡r”ðíë÷ß>ÿ JüõüùÛÿýáüõšÉ¯ûåí{íá+9ð¯(.ÀÎP”"zà¾uGµ¨NýÊ4o.Ñ)%âï ÿ`•f -”š¸2MN ›@ͧgü…IÑ7›¶›¾o* ­ö¯#"vO¿·EO‰(, tšŸ¤çJes È–ÓÑØŸÖÐØž„²ÏÅP˜É4Æ>)_"žže*‘1«›±*$‹R8.tÎÆ&~ò¼ÆÎ_þ¤–M<0í7øIò§ˆº&T“h7Q±mfÙåBJë†JóWÀv ¹¾¢lìø“ ” ·[gT½Xbd¡fyazòÄÕ??ÀZuÛvnª!­àpÇ,bat‚â°d\H¯úŒj)¬è ºc» Ø…è¨!™7ˆ‡ÆþŒØ’Š«'gÏ"¡§çŠX®;O"‰’éžÚªõgQ¸¼¸$Þ®»×ɵ‘E…S‘>K`A x³ÝtÌ ·Ê¹"õ°Óª:<‹§+ŒÈó‹È}¬²m–«—µ"u÷(Jx;ߢÛüÚ]@¸ÈPš“Ö7“0Qœ…àyýbC«’,žÈsOJ\×o»@¢³ ;WáaaœÑ·ÆYÎøVÇxâEÆ‘Ž»³pZmåÖ@¡²ßTžÅsóŠñU¶rG`ûNv›`Ä”×qF¸ÞJA¸]z•Öøež/éµXÓÂ%²¥Àãã³”0Úwón {Û¯Ál$lâß-Z>zI- ´’*.Є;7„­–èêëb Ê¿T;wMtLz·Fº-ýokàœvmãb\΂x/Â+t VÞíÀUßbAG„©( îñ2~K£Rj˜Ãb?¹4Í|ЉGŽ8ÊÄCÈ•¨•oî›.0,<‰Þ6×,EHìÛý²·o,©8uŽŸ`NÏÑ3P0û¶ÛãX–s9"¬ ñÚ½˜]Õy­1SÀX;û”c«>¢ˆÉneµ10YÆ6Z;”2G`l}cÚ/WMp†5Ín+±PVx’¿9bÜϺÛïžòŠ4>nèi¦É×p{t&_ÓI¾pºM*z[#U:úâ‹•w}ù´G›PøíZa¤– ¢i…Hk}šô(+V9ÿííÁ;‰ÚäáŠ8ñó9ooãÜ´—¦*ç {­›ó*íê!_ü¹2)[îÖkÇO.ÆT{‰[Áük7@^¥åÒ.·×wðT§ {ãÈ'˜Ðx°àa–< \uzs+5Yƒ¨É}$¢{᪃ ÂavJ‘ Â{Xw/?ö?XÈ”êÕµ˜Øg&oO~,0ŠäaCÌmºu×Na‡@’Ü9"Å=¢÷ Ûo‹Ç…‡m·*_šêÿÙt}˜ˆTÀrÿÐŽr 7ÍöÈ…û"ì| Jã°¸x²dxr´Êiè€æ>X%G(ņvÉ»{‘ #¸,¬ÊŒæiÙPqŒèGa­’I]*{»´ƒ‹ “GêL·û²Í#4¾çÓ†˜cû‰N½’ueñ9;y¥êpÄi†ý‡16”7ôp‡ªµtÑ«‚”XçJíVíã qw„Û»ÇÑH©F #h-ÖÝ놕8ŠšXJØ ]jq\mÀØÈWìºf7µ¶©¹Ô{§Y’žYWq¸ð{êÍý€Þ|ÓQÚVÈRýÕmæC•‡ PÊiÑs¶©qÖ”³öãœí™Dt’6{€´µa¤„m¨VRë\ ©%ѯ–tôkz©ó5(&áââJo4ªó•MÚ¶6;<}ŽÞå6yוËJk>p€D±šÉǪ§j…ðX«‡»yÑZ+AZ¤á¬uï¼Õ* b×zVŸ³¬¡‹ZJѰ6¸G³6¦¥J4je)M­'ùCáÃ~*<¢!Í0-l¬þ…±VAGQЬ}÷ »ªq*Î~ÐÔ –=ð 2/]ïFìÇ¡c±F»lm{>”² ²cVHïí~å&Çåp°çÝûõIJQ*¸¡ƒ£WŒ{…ñ¸íu×é͈EÙºŽ½Ñ~Š­m¯·Ú­Qµ R‡)Sfïùd»xTaªýJ£ÈîEEáÚp©›£È¦Qd÷¢6—µaÔñÆ‘=t-a+@:µ‡NÇ D)2CoËʪJµíV¨­ÁÅQØmÌÆaÛÝr-¬).@)+5ªDæZ»®Õ€Öú­ë-tE×ßÞ…Þ/¡Ev|?¹‘ƒôj šˆ×±äj`û¥¨_Ûƒñ`ç—«þÌá;ØÎ¤ˆ‚÷rÕuÉCgA ”‡W~;S|ñü0õ k亻¦Õ¡L›»«8G'DÀý†\ËNÎö-Î!þÉËZ̰8ð>DZÛ.Q½°í j6«[kP°ÀGSõh–ȳ¯œ´b¾¯ ËÓ½–A‹iw7Ñ.碰8ógò”3qkŠ¿Ý×C8û–Ä‹<¯ZQÞ¼kæ€|B«?J¼RH/;&@u5p^æ×G‘̬— €Â«?{ÁvpWí5LHÉ1Šgq*r¶ºáõ`i"fï.^ ¢ïb8.øíê2•,š‹Åâ1=ˆßË6‘Èì,1¡PÓðÛ­±6ZðÊîÑ¿!æQÕ„¸fq÷[Bï>® B.¾¶Ÿ7^ƒw2y,[uï ò¡ 9¿þ-2ë}äSÊœ†¤6¶ÑL£ýMqçõëpÀk)·shR”#Jx4\ÿ£tÞaÐn¸Ü¡ë´ 0’xÎYÌŽŽÀL$KÊ%²êÞ]ಚôŒë E£hžf ®(ÀĪ»3·ZTQƒÍgŸ(-lañ@¸ÝSÆò†[[`4PEs@åÕïVc5@ Ê…"L ­,ÑLqö\CבGËÙçQb†3,o:Þbä ú6–þw£†£Šé°£Z·¯ ² ˆ"ý«Ë6óGi ˜Úbi’¨ÞÜÍ$Æpz@aà:ñD­Ï]ÁæûÞ ¦†+Â’Õ:ßðK)¯Hjèê¸.¥„aGYhûôxè¿Gó) F"*ƒ 0p×®KE¤Ÿü»s­68V†o$u2õüè‚N—7‹èÛ<%j 6•½|w!ÚØ/v Ô9äVÜs¤!ŽÖ MV>­oI;Òc»Uï–º) £æzKó”ãŽÜÑw›þÛ¬Ìódëîpפ!Ž–ŸE»ê­Ç‹ Møíµp=ygYJldŒæ¼âì¶µ/°]­AwìTè’ÝÖ³ ŸYPéü´Ä? ÏO±0N+;§«i…P+|βʧ® jÏ-´è<ç³ËÎé^Vc«V> ;ø ÞµÂ"â6Îë{r¦ÝÏ{ïÑ@‘c˜hTU±”y‚<º¸ ¤Â┌Öú?K½Uô~Þ}‹ZYiÜ‹®DJƒ ϯú¹r£ ×­¨&%W–®¼‘åæH7<š7öæ&ÞÓå±%‚Ìõ†m~A Z|$ÅÀ½ÐA‡îåÊ…tXvß#büOÿl©ç¼°k>ËpG€½t­ÂRÂX œèóÂ`×Å à¸>¬zÍÄ ”|\Ÿ`/EQGkOñæJ±ÀjŠEo5­ìëöD¶”wûq†°­,GÃMycNl†nŠzyk©¸’´H›Þ}…U?ž@7&šQôt$ÐãƒÚf¶(zŠR,=øŠª(Ý8C!Å,¶8~Ŷû eÿ“¥^¿ºÔ–û ±Ã0b×¹ Ĉ ˜bI©Öÿäe2|d—ʨáE;?Jo§W7^J {‡V œ«ÚýžŸš-Å*Ý~?‹õO-ãgGçzûè‚[ƒÔ¹Oªng{RI½ïô(tÓ*®ˆƒ©»Dç)֧ŶβÆMï¹´ ìüêß|Aazá·{Á†¶V"È|®*‚lû¶<ƒ&Q^ ïExÜÕÀ[Kµx 3<ŒƒòÌÆêÙ^oj|ÕYÕøªŸý p?Ô>MƒÚ Ìz  ÐÁ9,`PrI«gÉ|¨Õô Ë=:MÌÏPn]Ê#Ú®öxŒ¨(.¦µï½bJ²Ð·Nºˆð*m<@m¿8â},s,Kt¯Ø×u솂F*℞<·Oê­¯³S†”öD©÷(Ãsέ’MD0RF­%¨ŸDï2¶Ñ(å‘OGEh7X$á1€%Ο°¸§ 0 ;¥†½ ‘Uªy‚ÿÃP뮣­ÇêOÊqIáÊBGè…åvKÚJÃZËfÜQ€ú‚^Èpò-¹l4£÷°°) ¬Ý³GÆ$òb{¢¹øË6`a„Ú¤‹ìž#Äe[¨š°‚¬]ˆ/ìö’’Ǧ=¹áy$XÏ?ù0Šgiš9°dÆ`±ÅCá À(ižíô®žŸ`U•Ö`ŸàQÆQ¾=¼ÀŒtƒAÛÁ¶-»”*Äâ„û}çÿ>ûêž®zýT¥ûÇü_hAxöcæ!½VÜ‹%€¼^‡ßî•íNáàÉOD|M²Ê;X‹“Åö-:Ò(Ù5¼ÔA/AÙ×ÖFYj‚ÂŽ07Å·wÀ*ˆ7ûùª¬ö¸pݺ½ÕfDn Cjävãagvj>ãv–á6¯,é†;,Öé»m¬ StÝ0KÈCzTèÜPÝP.]k`€Š¼ÙOQ…~‚å(««1tKº Êè¨$ÌU“^ª©qm‡`»¢S4aoékK·Ç*¸Cà‘Rjàܸ÷†¤¾’ÀåPp¥ e&^JcﺦÅw#8&¹TX|XÎñ ~M,åŽV°^E÷ßYžÀ.`“½K£wN—óE÷°º|)ÞQ™äFÿ‡,JkÇÐÒ}Ns)Ï¿r6¡ôø V.ü¹Âs‘1$#¸”Ó¤ X 1¬ºšëm—WAža­âP`µUq›ûŽdÊà7ßšÎæ+äç(vfté?>ú!L#>ªØK%ˆ²%”®îÎ#*üùIÛ1ôŠÎtãøG<ˆ‹L´™JõÊtRÊÒIPúÜ¥måÌ‘Ätî¡Î¨D¨¶¹Í£†Ä—olòiñöO\Q$“bNl)˜W7EÑþ2Ä$VtRA¶êuüæ;X¾Ú§$@ 2и¦Q™ÚtRq+"ø5^'½êNÇ´µ”¡žëìòŒ‰ßhÌÑþ‘^D³nÎÝîe E¦°«˜ˆûNVlÔ)‹$E5^:êr:jÖÂw&wÄ­ÇÒîßz”i+nCÿ&QW.ÊO¡’Äzél޶ÔÇ[XŒöÐ #,˜¥ü—ºæu«•¨·½K®¸CR’ÆîõÎJ¨L³%µ€J]!uXYþqvEÝ(—£2ͳX­æónS¨ª (òˆ½>0Qk´ÍðÛkú] @vƒ[42Ð÷µ—°Þ“±­l5_-ʪ;0f±)ëxÂð 1lwDZÐ0¾*‚ð ƒ4Rê>‘o·fgë YüöZ­Ü:ü„›màðçÇ∬bÄ5´Hª|ÅëòÑþÍüÞµÊ /ñbR÷Õ¢kcè:D×´¶¨´N…¤¶âãc“V+c\qøí¦°ÒÕì‚Æ‚áÑP9A1ogÕÖ ÉÕŸ%×” æCÌÄš’®ÝÞÓˆÀO²ÛE$Žƒ«€q‹7Sšï%`oçÍ9žD«ÜØB¢òÛµª™C+õôôr–)@Pf»íÎxBÒž;oáÖd¨Æ9ÓêÁ2XZ#$Ð\åî;ˆy—æÍN±ð)¶™¯×ÁqÅü{Hl ÎÕm'Õ®ì±[L]¿Ýö9SÎé¦$ Ä\êÿžéŸEÏYý^Šñ)ú:æX×½M³Ó3L>&ŸS Õ…éž"=.u‡-^~TOCç ‹œ‹6,h\³ ùøÖQç*Ê&PÇË`øí:>ѦÓÂíZÝ…Ce6?ð ¶çG;çºâÙ-©ÞËî£ ]ΰ<’Ž›Z<¢Ž¯ÊBÚäÀÃŽœ(KpOHca¤ßc xÊlšP @e55¦˜8òC&‚R‘hÑêg“©i[ybŽÿÉ c÷ó×f0+ÀXžÁÚ¶ŒVáÀ>œ,*d¨I Ä×”0š;´1*ÓAAà·×GQ=šL¯°±–¯*5<СHe­Æ+~{-é‘Ű‘µÓ¸Æj<¯»"‰=î6ľSÛRéÚéê-I~’ÇÇÓ~Wê *(<¬‹;py`ˆ"s}‡å>ôìö?†¿UÄŽL⢬xTí°ð¹Ñц8 ÛŽ8lºbñ,ûß‹°iZU½j4î ³Þ {à:ªÂÁ;o4y8É —yÚ–Õ‰xÆòÝŸÊòíéC …“]‚"ÆØƒÿ ~»Í¨Ð²¤aÿ#(ÁsÃ&4’ÀÍ/üöÆþhfmÀŒ7Ø«Am!WPrÙxþ Bô[Þ6€Ü^><"Ì@l†9Êàu‹¡sO€ ¾Ù½»Ì)2‡¦S(O5Þ-Ça ÷äË´2´Ã²¸DÖƒ÷¢la‰›–Õžd¶#°^ÓF•ÏO[h>Êž_Áoïv£Q£ùVjnƒ€hõ9m‡Í"”ï1§VìÛ¨|aÀ“#‰ZPôÄ^Åõš”©Ä˜PW©šT µá>PpWH¡gÁÙ¤Píàñ$+õëñ ëŸÑµJã$9p1§2žûFkÓ½ŒkGþÇ€±2_·V»z†`ؾ–Ñ}$¯½&ÇC+Pêöoù»" Ò-“°¶£v^|?#†<¶¶Ýi4«xb&öI“àƒ®"ðàžÙL’Š Âto¿za²f¨¿QF\2X^Á=¸Öb`€5%¶ùû̑ѻ¦|?ñèîø$ •ŸkƒºWYʘ’ù`®ÂìÞ‚Mæ/žE”6"®Äƒøí<¿G³Ð¶ÃÁ;˜¥uO·€ºèž««Ù ì¿aŸ›C·'šcUGyZW.‰Ée/“µ»®r?XÅý×®aƃZÖ µéÞ;V¬A«ìFP²[„%˺õl2*'’ÚÅ~½©Aó<¼ápÝùÀ›pä6‡¨EJ†â#R9åÅkÕv{BkJUwWÓ;ÕJ¶NH\·'€½EIùäºC×M( 9À°su€Æ£HøíÖõäTׄÖÝAh¾2\B¸®ìšV)òL¹À/2íšT}nÁ‹-/®ÐO 'JXšuˆÐö"²iäΈÞOóE-Öv—š¼xÂqK0Òma'wÍ‘ø2YeÿôFƒP‹{W £(­%%É,ç«Ý6÷ìë %‘ fš¼`õª£b¡œé·ß'>ú¥îÈPþl:¤dkZTötFÛ4ë–’¨íˆš57Rû´Ö©æ94_Ê,˜&jO9µB©4­eNSß–Ædµ†WI%ëeŸÿ¬::oÇ<G‰—ª‘5ÉíR÷¢ D$69‰m‰¥‰„4‘ˆÚΡÝ‚âF\{[·REü¹æ‹U—X«­Sx{Æåz¢ùª¶@Ô"v½:û… ò\ȼUeO«ža[a©KÊs‹FÕñMɬ³Dkdø³ënkÀ\ØG ã2ˆ!TÀZ h_§"Ipp;kÙÕ ·¬R°J»¶»¶ ¹eQÕ+¢:B)gù³Û‘A(’†wvYƒCåx „ä¼ìîž»Êßñk*3Ïÿ’Ëlëe½½$AÉ´ç´^êê«b±[³ ´-•µP+'móàð‹¹»&ïnôº±:VM¢£ã‹ú$TÇÇöË|fªÄÎÝ“6t ú¾ª ÎÙõèeqƒP!ãÚ÷és”Û¤ÔóZ¼Ó®iÅÂ;7o 8é‹Å|m”Ÿè(•oœï•O‹!SÀ°©¹Î V³¤yƒYS»u·¼µ™ºWa7ÍEDÒ%’èÎÔ¥7 ´"Tiày~¥.ëkåõ°º4*û¼¸z©Ó~ˆQ.ìcv)øe…©Ü¾ÔŸ%Ô¹F«6(EÙZn,,l/õw».µéP¦²Pz+à0ÀVYÌ—ÝÝsÆéܾ{¢3àêE5›.䬞Eb^Zõ/o?ĈBææªK¸÷ZL¿= q½ bq·Ôg˜ÌÞÃL¦öþbŸ·[§Øã}€ÓÄ÷uXS“ý^éàÙ|¸!7n4ÛOq”.(¾ü隈Ö5voío˜d Q ý?ŸƒvØâF©ruX¿Ê„N^’>Y®zôÉɋޟZC¿õ†þ²æÛ½ø¢âÍY’#üéZ-RŠ“œT •÷M4›PçÒGËNž Ê®‡ÍZí–¨+Ž"•î”ÌÏÂÑ´‰$ ½”]Ú/p+„fO)ÈÕ ¶ÊõÑjÞ3®ðò/-}üÌÁWÕÏA[aìUüÓ³6»çñ¡‹ÕŒ‚\j…ÕzØ4^Vc2Cù-IÚjÛÅÓ®‘K–ô—øêÛÄÿˆ4vy w®6:7—ã» µ‚•·¬m^-Ò¾=Í‚ì]êEÐÎ@c|Wt$†$­!qΰ>S1`ëPØz#°É\Eh…¯Z¬ä‚ÚMvÍÅËV»ÝÜ+?Lã¥7&P[ç Øõªkã#8”ÏÍI¦ùˆ”ìz½$¼u—\­ c·žÖ‚M#¬£wíÿ—7tͬþ¦Ö›¼7}m¬”¯,µê«–pr^¼ÖWeM¦o“Ú{œÖ¶+ámç9Ö>?Rl4xó ëíjØQ4n6ävE IÉt;O®"§±ãªÁÅE4srDa CâÔ2ÄÒÃ*“—VöìXšÂÛÀŸ.qFíÐ,ƒ®…HeíÆÖ¦”¨ÝbXU„u{ZæËwáà¥"ù¢à’ýnÙ3è P=`n>"Þå[É]ßV²Y˜Róâ³ÜÐÌš¬÷ùþbß¹˜‡í•ƒÎ^Ò4î6ƒXTQšJÀ9 «hƒ—²¤K³³t{®ìΘ´}¡ý%ÝÍOQݾSÔ“xÖe½=®ÕÓÍOÁÝÎeî¦ÀlŽ4Õ‡Š;ðÈ´‰!©žë¡×hÏê‘»6@o-Q¬_Wkš®V¦c³< (y¼^R¼îö|GÇàzñnœåõ§î#ÌUþ,‚€Ò–cÈ,–Hw`;é Ï~GñÌ‹bÿ% S¿âŽj²1~ºÁÖ"–öFH1š÷ ´¶¿Ì’TÄ©¾^Í"‹-ˆ=p°],Íë Švr„]Æ8ðdã^OP‚Ýæ;eQ´Í¯ áO×9çªA¤1©´ß¥^Àæ$b+Ð×ÿô¨["I€EáÕíÈp®’ŒJk%Û]š—ÙŸÖx<г Ãk3Å1ŠÅ‹ÍBÿåj`vН/0OÌ¢œ,MéÃò3dd•3ÒeQ†±,4xаª@ؼéfçXØ^Õˆ_`îÅ馘`^~X8‹-.àO×–µ‰1øu,ÏQ¡×Kï7+$H&jðG¿ŒÌ»tß"hÉ£Â/º6^á‚éâÅ"‘O!Mû.EÛ†¯Y‘F-È€Ä&§Ôuœ³ë äD~”W@JŽÑ£<üéÚ®;é=C ¢í‚ñ“$—ÙÅyA;ÖƒÙÒ¥.üé¹Ô­`xÎ’T"‘g©Z Ô?¸ ›~ÄDGt¬n>m6?ÑTûûtå@^cÿŒWc·§Âå’Ù'üoÝæg’Žè0¬ø´™«Ðç(CãyXƒÆ e–Æ"PÉÈ6ÌTgt—ìݰÝd »\p‰9W ÆFÜ8:úïB{„4Aàý°¹¯D…!2µO(íåá~…aåP-Të@8yV:g?óË-’ "!Ì$hOQG‰«À§2í@KÎI\àOÏb¸&zÀÄ8iÍå%Sd³õÁ‹ç?ÉT¹=‘[˜ÑÉݰMžƒ÷¢›¢'ã É-,"·ìÚÂ÷K¼´‡Ø‰-W9±žCˆN¨ž–Ì×dª mszƒ}ˆ4ô¢nz.…5—óU.%/<wW˜­œoQã‹ôùödõÀ<ÈÁ~Ø6B㇩Ü´®°ˆ³$õ»ZŒ2 ±È+¹èÛ†W_œ$æBÉ`}Éb—FË9·®×‘ÙådÌmÙE†¶HèÈŠ¡o1 “é;MPº…\ж^QZìÆ`î)#-`ytàÇ?=ŽÏ䨗ï¹Ò ÖŽõ'PÊØàkÙi†PmjBóf (o£÷‘C剙u3­ò猜[Ï“,Í<Þà±'þé^RšZ3 ”âàöÀ‡ 1€í)Ïüé+ŒmãŸÄ)«;ªç©”a‚ñ:¿*ãøÝÃïˆáO—z@ÏnS¼ÃžÄ­‰Êãcþ¸8°”a]U”j;¹+U1üÑ·iîãeçè½S$ €^.V@°áI¯ùn[ßGÛœØ:|+»þ7âÖü©8b1ô‡?»Ž£ÉÙ§Ë è6È6†`¥òä ̲ói¹žë}ÞwZ§÷åfûððï³ôíÇç_f{ûùuöÛÛ—¯?¾ÿy¶Ü­øê/#ÿ‡eœ×o_þóõçÙåÛÛo¯ß~ü÷ŸQyþóó×¼~ÿëó?_¿þ5xû¯×oþžýÁ~þeðƒoŸÿöãõÛ÷Ùýóíûë *öëç_¾ü?øèïðŸßgŸ¿áóï?¨Âÿúúóë·ÙçÙ· nöëçß~ûòõè¾}›ýúe¾|ÅòŸ|yûú§Ù÷××™³Xàé,yý>œ­«?ÍþÍyýûçýòƒv&~ùÇÛ·/?þùë÷{,ØÓñÿ‡œ}ù>ûñí_¯Àöë×:7øñº|ñÇÙÿúˬüÇÃÃ|¾ÆàóMÏÐ4 ûÿ•Á¶ ô\ú“6C‡7ž¿Lç0Ÿ;ÛaV& ùLI~çbQþ‰ã ËÄO€¶³'Úrí"½¸ Ÿ§ý&]>ธÕÇc7Å|`šk[ø“Ïh|÷¡æQTtÍaÎ;!ê–ÕÎQ…¥Äêžô‘#råXˆÀ6'Ë¢Éꨠ ‘u”¥, ²ˆ¬l „‹ÌJu ,XDV¶e`Á"¶²1Â,"+BÀ"®GÍ[°ÈìQí²%‹ÌÛ]¶dÛ²¤+U°,rëišwÉ"¼^cô.Y$×/2yQòe\¿¡–,’ë7ä‹EhýÆÈ]±H­ß–ÚÕR[†zòß#‹¬¾×ÈêŠEVOÍÁµ:pÀê’£‘Ôá>Я'l¡¼k¶…÷ƒž}Ç (O ¯ŒÈ•viÄüœˆª¶Þ0‚Þ:l½ã„-:lÍ3…‡GÄbÑQC«®Y`¤jÕ ‹þ+÷yùõoÙý&‹ ŒUݰh¿¸) –©:VtÃ" I£X$5ÑL,iMšM»e‘×DmÚ-Ë 3mñÊ"²iƒW‘MêË"±™º¸Ü²HlÖPƒ[‘ÍT5¸e‘Ö¬ W%”/v,›iìŽEn³Æ’xÇ"¶Ï°c‘Ý«O»Ã ä[r<=ru\i:BUuèŽeYúÒÞBìX¦/ªþØãéò¢J†0±¥jÁ T|‘F´¡Š<Ê%øØåû-Udw_E¢‹ g‘¡v-Ä$:AkA㩹û6šÊh:Ív“Hõ°Fum Zä™tf¦ÃrW©*©Âïú¾¶=ö ÉQœÏ8S¨/ûûšÖRÓ­ÇI­žMäœûªWÄ?H†Í¸å@ÑEºb~§È*›Bšl»¯_Š{Á2[D>B± æ‹Ò)‚d@ŒÏ¥êŽM·@d ð!–C ™xˆÅ² IÕ ¡.Ü‘- ÇŒ%¬í(¦tÇøË±hjÈÓÚL…&7Gû®)¶¨±År@ðÒXÌb* ø¨MLí(_Mü˜n ~7÷UÀ©Ïüݳb©ÔX0ØÔšö­¼7ph8À#O[Ù³­‰lh"šÈ²¬¹D£ Y}Ôa9Œ ,Ç€Y”e”gÅ9%8¬v…Ë™ –F¹ÎwX¦-‰ª¥X¶Zd¦$Xvº¢³3$§ÅEµ#jÐ౿hÞfK–•ͱ1#I–ïQV’åÌæÔe9³‰G ’ó@MÎ9m~ÚœsšO49ç´¢hsΩ<›œsJz‹s3¶XË91[lâœEÎ3=ç,rž™8g‘óò‚,:ŸEá»Ð,bžj¡Ydü=cju)°ä1o+ÑQ&Ï%È#¢óœÍeÅ"º/õsš%E[sAÀœæ˜ÕÍë’Ǭ­i½®,9—~ÖÃ9Ôr£OÕqâ¬}ÙîØ‹1½‚"e‡9”áwà”ÕVë%º eW0hÐy‰‘.º×ËA³È§Í¢I®²yÒÒ­¢t4g}èÏõh+cÍL8zØÙKnô¸7ÀÁª#83‰¨£€5ðÓ4-PG+‚>^UøÑšÁoùÇr´rè㸆=ZS°O èŠõèu¾ î’Ãq‰)…ï<69}ñü4!H.!- ÛG´E9¤Å%ºÙ Ѹ$5Ž²Ð©TËŽKZë«h? "Äæ’VÜJ­÷\ÂZ,ÉÖ{®Ít•¾±´Ý_ÞÁåÙO"7OЀÀ\*ã²·l”¯Wó½â¼&» +Bsé… º<©X¸TD]ÆæG×ë—¾x)ñ™Ø )Ft. ñ¢çï“Ѐs‰w ^…G¿u-Û\'B#¸D݉wò‘¢rI¹ Ûí=Údº ^úC<;brÉöE;t—p ë䉄"ÊS;sɵL4íÌ%שfD .‰¾…T‹Kš A —d{MbñI6´yšÃ\’më´¶Å%Øz[ùY|k4£­Ìû£MJÄâ’i¸ÝètlmtdÂp¥%ê¨?ˆl“&õNÑ…1%Ce©[9šÑkÑlÔ`²æ´ÇÖôÍ@%¿cM—ûpK~ÇÚ+Û×ÃT85©m‡oäø¬pìpéZ5rÛÚáÒ°MËjÄæS°bæ·l›èÆ€}`Ôz¶÷ŒjoôUB' ¦m¹Ôêm{PGçÒ­/ðÑýŠÛyÁNGa’Õ~c=þº¢Xi .‘nǬ\¿Ë0n7âX:3 P.!&Ð Çd;„CÌ0Çd;{CÌ$Çd;lCÌ”0GÛïo,ʫ؂e;g êu3Úhßx‰;îÍh;}cís86 +¨¹äò1Ç%‘ÏÄÛ‘B ³”g7£íïû„F9ëÜŒ6ÀïÛ!7à¹DóÒž»7£­ó»Žš4ð\‚+Û!Q6£-õMàÎË lF›åíí¶.h7-¦´žo6Ãñ¯ö?ÍD|–”7¦9P®Öã£é¥+½‡Åœ’ñ͇• ZGÅG­ðñÑô΋$}Œe‚»†ˆ6ö(Èȸ¸µÃÊÖûíO¸Çõš¬`›ÎO {ÏuȆ“ï¦ Ú¶5, ÄzUë¯s*žâ,ð;;Îøf\³-‡ˆ2½Ê“{qåê°|‘§±¡¤]#[´×ƒ¸HÃ*y¼d­¦s ³x_Õ€+ŽY\° àÀ¿¥¤•¼™r¬š»3`ñËp4Íâ‘áh›3©ƒÒج™J‡7€e‘ç¶Š¬xc›Óï;?ë©E%|Nßï~)‚¬itíÙ"w¬ Y„\¶‡g~fX„ÝmOÖŒÅ! ²ˆº§a—3!D]›°æƒ¸ª0‹T{MeÂã=ëÕn†nMÁ™B'¬ù!t ’ÇsöT6 ,ò|j‹OÒˆ“fãIhXfè&pÝ5h°Hw kጓ̊EÂϪø­YdúÜV§k¹>·…dÍ"ס†c±5³ˆu¨9—çÐ(r¬™,nA*áãŒqpƒ¯Ï‘¬ .4+×{“\˜ðË&âÉ{qQ=OÞ‹K{±f¾P€Y=nMž M`uÊáÉ…kÆ?k:Œz{ó¤ÄHÚíÍ“£žÆ$òuÞY¤»ž#¤M‚3Ê’*5 ΈK 0gøj¥{YD=Õˆ:O"Ô8Õ±&Ó¸í*xΈbê·'­Ffnöä0Ê 7Ú/® ¾6ƒÖW£ä´4žjU@PYj¢ÑŽrZà"K¹PÙ³È÷³ºàÉêñÜ>Úv¥¸¦ùö,Âü¬é41þ¨á˜Ev?jÚ˜3ôPãÑžˆ]!èjy~™Eˆ_Ú½7Ú ± X™·F{Áé— žˆ/3ìµÑ¾o}±øJFyòƒÔlç*yàI"ZT}í 7‚F©BG;Ä ¡6gèä¡röâÉ`¢§¡ˆgÀùü4¹Þï£ç†Á—]>Úsn¼ÒÛ£è†Ñ(;z´/Ý0øzv¨ë ]æ¼WSóZ­jjž0ôŠÎfx=Rêm©×ÓPzÁæ¼W6(:›ón¹CÑÙœÆÕVâŒ/®°ÌZ¼Ìy°«´Åh¾.dÃíÌ7‚F9ÄF;õ ¡6‹øë •Cl´Ûßu±í Ø-V±zÔ>ÚpzÕá¼C¢@Wºš'ïN“DÙÉ<wšèõîåI¾“µÕOþL£Žx’ðd‰äÉÆÓD/%’'+O]mμÊ-‰í+8½.8.gó²ÝyÒû\Ûb>ÚE° XéÇÑî]ÈU÷±HwîhñîY‰7 Äe‘k÷ a9Ë‚(º<,Üùþñ~ÚYï»Âç¸,Ø7DÕ¬}æ ¿7IûEÆ~r‰ÐsøY?‹™q·C‚Rwq¤|xã)úè `fIÌ ‹ÿin™hšê#S숗ռ܂pw1sûÊÄÍš¸YßÙMJèî.†”[Ý´ë÷0 Ì5Ò@è±ñEBûO"ΉŒö/A¤l#÷w¤¡ÊÆ–dc{§¤Ö‚AvKFõ™‰Ÿ=ñ34üP—Š£ä(aZ=#­‰ZOƒ\ˆë«îÎs·:Òs,ˆã¡Ù£‡öûpžûDAϵE\ç‡qý\oú¥ã)¶wí—…'6qbßɉ2£‘†éëâ#1â L)°îj:[äöY¡©$Q—w6ƒ¢©:ˆ½HÕù.1àÞÉ€2euõC]àÕžX.FîGÞ9÷]ƒ²@~‡ç*:Éà –‹XüñQ„GŒQ¡6ÇÀ­Ò©*ëÆvŽõO á/˜ @_„³0;Ë ¢P>>¶ÍR/ÊÚ@`?6ÚšŠV @X/ XêÚÚÛk»—íä Ûý5ýØ0L¸öãñ±óýËÃÒžcCÙãίQ“â¾&¢¿xÉ@m‘9šÞöbÿ $Îæ±ç« à)<%bD^b¥rë»~y4¥U}çi#gHùTÆ&ưk@—%=wéSyP0KR%÷‹ØÁŽÈ­Ù©w½ç™iô6nùاO€ aÛóíT1YRº{"pgÂIl“ýÀ61 gaN™<‹$<ëÚ<@f´E”íÉw'Kž´àx²±8"ȹãIÇ"}‰`<ÙX’(C0žT,/"¥zòdbñ@+ÚøêZ4LÉâÄù8m ÈÄ…Ðx$.Y@p<wÆiq|$t-VHX<ò†ù7ŒGÜ"€Ó\ uA¶ÆG2×bÅÄ%>©µñ!Ëõ#J ê \ –c<"æRó3‰˜G`<"v!yj\/¯¤¹ÇG×OQ¾¤¾»`¸'qy$. œò 5\Ù³ãë%h›/óq|Dñž¦(tòø(â=¸¤ÇÇÐ92“>¼u].j£ž Jˆ²ðäÚq”à†•²ñ*»Ü–À<‚[– .»G[,–Ó'ï죜 v¹…–’.ØÖš¡f—ZÚx5®_P½KÓ’PŽÎH0`j+Ô°“`v%Í£MMôèVä ?.•±ØŽŽï`A®¹Be:/2ˆ+8fu‚Œqì—-ËA”RŹa:ïeü„€\Á/ÏQˆuñ0Ó àrÅÀ´âH”™–+f(³Oü¯2ØÑúC[Â>•èlÉ Êdž˜‚pÙ…öš!,£ÌæìbÏË`ŒLD‰šÀÙ2xFî”°ìYXµÌsÉô54¶¼Á•P`:,ÀåbÊCé$—ü¤ ’-1Až’KpQCÚY ð¬ `ù’+°l±‡ó›;•i¶ô©Î3 ÀøÛã4žãq Ô‹—ã±¥€Ã@΀Ç6{¿Ðê‚-ùlªI¾ðly óÖäÒsiBxlÉfÓ„4[†Ù4ïm¶´²¹0²e‘M <6aÌ5ê¶t±å±€îx¢mÊ#ny‚èH9阠y|ÿTh?Ddž€›2<"‹é{ú‚P<á|0~CPï°XºÛ™Hã‘ÅȽB,<º"¼Ó;žP—‚ x|¦±Ê<Ñ,E†P<žŠ'ÀSåÜâ¿D!¾As €çñþ¿"Ot³rÅkW~-€Í²0ï)ò.*kÈU_£P5xÎÀ«µYôJ‰H}Æ¢VJDºîjXrTt v³ xö<×3¸÷|ñò°˜¯ç”Cw½Ü  ºžÿ„ dË´ÕTxzé?>^Ëg¤eå´œÕZ+¨a”ˆ£ÔÔKûüÅ@c³#ŒÀßKc±øiö{Ê>´“»>>š^sB6Ú"´1ò:(Řzx³Ï)áv¤_7íÌ”i¦ô‘(Ö9¥Í@-hB»š ½P6å}ž¹ÙP¥Oè%œô¼,ûí·’ù?ØÏÙ¡ ~ðíóß~¼~û>û¯¾}}}ûöëç_¾ü?øèïðŸßgŸ¿áóï?>ÿÇ/¯³}ýùõÛìóìÇ[7ûõóo¿}ùúGtß¾Í~}ƒ2_¾bùÏ?¾¼}ýÓìûëëÌY¬çðt–¼þ ÎV‹ÕŸfÿæ¼þýó¿~ù1³Iüò·o_~üó×ïÿöX°§ãÿÿ8ûò}öãÛ¿^íׯunþðã-tøâ³ÿõ—Yù‡‡ù|‹‰Ûç;ÝüSkšÚü“Ï)ùfç6<4O_Ý2Ïš-tú;Éc…Ì王¼¹º¤òÞÖZÞŠtZ£jaVd’b{"ébc™a󥃖ðµEx1_Œl)]?æWy¶.À4‡1‹™§Øȱj†Œ`5,Oˆi©1³ØuäáFÒ¼y YËÚ¸æcѱ¸·4#k>Í®(úÞ½ÒQ! "ê(ËjÀdQÙûƒŒJUì "*Ûý¾`SÙM •ŽgÏ£f4-dô¨vÔ’AFíŽZ2ˆiÙEvjeSOÓ¬KaõãtÉ ©õd×É ¨~cè/$ÕoHƒú1ºâФQÈ$™ùˆw—xúG‘f±œùïŠA(ßk„rÅ ”§æê0- ¨+‡s±5>͇ʣA ÜaO8²8çC;EÀ5,Å­”G‡á`ÌPí¦{Á±·nÂ`Äð{z;Ö‚b7i×þáìK )™u‰K„Ítñ¨RSwxD$=5tëšAFªnÝ0èÁ*g ¹”ò±aшA1hÄX•Þ ƒ2Œ›ÒÛ½z4h¡d:¢V†LUgÌD3¿tÄ¥[5é–A>µI· +É´Å'ƒˆ¦ >D4mÌ!.cfê"²#¸åXÈJÑmD4SÝ–A: ÈØÕ¾dÇ  ™Vîä4k,{;bmÆ|ÖŒýƒ¬^u¸ ËËUýu¤o YߟbØÑùBvT³rYiW./}+«1œ;¢$®K™F´”LM†a—{°ÃUvìÁy³"C:JwXÆt.G Ot@Á:肬SÛtJÝ.´ïÛ$Ö)¬¹ØÄþÑKᮎ߲Í>‘a(D¸“ wQD¡Ã¸n܈JŸ#„c˜S…ÁŽHŽcgš¢7:Â.ŽJ¶›/ ·8_¼Ê¦!9:ûÚõiZ±¦-[Ê©úboØT!ö [<³‘Uyq0jÆr^ÔE­M|{ì_ï¨yé5ž¨¡‘üêŒÌF  ‰(ƒújãuX«=­ &¾¨É0ö³$Ãà/Ùå/¹ÁV;Žúû(”ËÎ;»ûTmd£;º<^ƒÎ´(Õ VÎ »hªÃöJtö仞¯Öí —õÍ«Pɰœ86æ-ɰÛ:ª#L2L…§$ÃÁ@ÔØ¿v„Mœ†Ù4wY¸7qú1„ ‚žIñ½ÚPî’¨®FR2=æd$Ê'—¥Šsd¨˜dóô¦É C¢yj£èe—A¢ÊA_aòÓ×B6èKF;¥âÄ©hí%£µ’Â’8Å–üümÉa¶$õ\óY†´¹æ»torÍw÷ÞæšOK6¹æ“ìׯM±–k§ØÄ5ƒ\gz®ä:3qÍ ×åµ d*ÒF0ƒX§Z`™¾FG¡„ØS¦ð%‡uR”!ƒ8½ÔN–¶HÍu3ÂòÎU·hKƒ¤¦I±²Â[r˜'Eµ °:Ÿz¬·5‡±RVeü>ó%å¼î†ÉpNo«;Ÿå èËõ] tMj·Ž³Âê+ Îa™Sú¥&itAH¾ÅKÕHk†¡ù¾‰É02?ÜôRÕ¢ Ã1n²J2²Ñù|kdDïOq­cê=.2œE@n³%r:ŸÝÁ"Y^G™„ÑQ4:‡™Ib{Ϩq7q?öh´ÝúVºåa¥o€ fŽ…ßÅ==×Y‰û—tvDr+"7ðè[ïÀBiµ„<¥_0[:ülË––ß+xÅÙ7¬‹R¤É0ãÇxg€Û¡/Ò2Ïò9µwÎ=½SÞ J7-[ŽÃ,ÁqLfŽO«zª#¦Ñ€k˜¸<¯‰|–û±G>ºyÌØÎ˜— hìˆÒ@¡ÔkÃB@Ò®Cà' Åq‹._냃\tC·OyÊ–G ~gT®et‡ùj=PÏ_‹`bù!ž,å Á¯—¨–õ{¾m”èJÃ‹ÔØ%šJĶ'0 å.̱« æ°¼k€î¿ŽŸgœ`œVV»—«ŸàjÒ²3Zc¸1K®g+ ÊÌë/aY›ê 3qª×ò–ÛS‰]Sÿ$hFa” ·/+{À~Zm~Òö&Y. SV­k9ÙÞrÌ—´œRWÎð)5‡Å°5VÅä²µ†s6ê_8/è[²mÊ®GË„Üèñ«…à T6zkÁªôHTßÑ#Y‹YK±˜£Gt7Ÿ*øè!®·üc 8z”ws[C;©è‘1ñø|=z‘ª»ä`´Ç}tÏ!%¯cý ºQK^ÇÚnÚÕ'‘Ô¤ÍF/Ùµ=è¨…Žª Üžëæ†éK‘íÑìíðèT5EÓåC­E"\;\ŠTÌ|â”iÓÛ|£ò ú-7EX>Ãï€Ó´)ú¼-ðëØ<:ôE=úÄ¿O=;/Øuãÿõ¡š|­ÇßtÁ*íÀ#Âíx£ëñ—†íBi~°UЉ¨a™G–uâÆ#Éxk—GŠ›îiˆÌ#ÈÚëÑw}ËÏ:ã<}Ô­¶F;â®d¬kqénðÐez±¤í’Ó½E)QyDÛk7lF»ã˜(ÏþÌ!@‘Îß"âKŽÈ#½9$Ðd#2Ž!b˜#2‰!b’#2‚!bJˆ£Ýh w¥iÍ 2õ!¹í;c¸!Äýñf´»Œ¡Þ9“Ôx­?ÍDŒÖž¢é3uÅÔVWÕY½íÍ®þsˆùQ(=Š;,ýÃìd³$>>¶žùí:=ð´E-5ذ|<æÄëÉÅ Ó5Àï@KÏíO¸Æ•“l®5õoÎO‹Nšé‰#ÁG a—A€›°õè@Aš]ƒ0s`œ@V }VnÍ Ãç¶Â\3Èñ¹-C½%»`C · bj¸å‹N¦Gd„Ð(dŒiDnñJ*qcàx}îcÌ.¢Y}Þ—aÄ„^6GÒ‘‹:¼9’Ž\Ú†1íˆË Øq{r¤iÂªÓ G"’X3Òs‘ÔÛ™#IÒngŽŒ$õÌ1ùà®óÍ ÍõÔ,m|AÊTIQˆð,S`ù‚´+Ê Ú©F´9²˜¤ÆIŒ1“Émí_óàSw,9M2s›0gâQæ®ÑþbfðÚÌXŸÙ9ΞŸjì#$ƒl?µ‡Ìh2 l‘ò¦\xp¤]yV—YWžÛ‡{~nk·=ƒð>kºŠAl?j¸eÕš¶e×k›ÛÑžyæ˜Z*%ÀeÚ—vŸ6ð;0=Í®+ïÑmFÒ¾Â$2šõG.Ñ®GB™šÚ]¾üíµi¥®ýGû ¦P*ÀÑN`ƒ)¨MÅý»A¦œs8réè)(¢Ä )êÎJov^vôho±!àJvB¡ìÞÑþcCÀë=Ë’A¨­{F{Ž™aÕÆæ»šªš˜A¶Û—tu·\O¡”r›AÊõ”Ö·ùîb êÌæ»íPg6_P|µ}øBâ+ìrFïÁòž*­0ÚYÍŒkP£×S(Ôh¶ÁÔ¦bw=™r@vqL¡.J£=ߺD)V±>鯰«næ¶ÒÁ9ŸšÊ®åÈöÔÄ®w*G⧬­v8r?eµÃ‘*3È G&¨&v)ƒ¡šØjÃ0y“@)ƒ£ýâ`×…e´wœùˆ¢lo޼Q×¶Xv‡3Ã*½Ç‘“ꪮx9rRåÎïžex³ @T9VPŸÔ}|\¸ó\]¡ðƒ(ºhÒÖ¢Ö:èbLBx‘±Ÿ\"Š‚¼ph½í榈ýllµÁqËH’¹i1ü·¯åFùìÆOôÑÀÈ’Yl½ž‘2piOƒ¬ˆÕ]|Ü"›©E-6p²&NÖwuMtö鎠‡å³V×lˆ‘¡iôM’ “‘L/#jÃl‰Ÿí]üÔBãu5Kõ‘‰—ñ2,šö§Åº/¸ô“ˆ}ÑÇKÑ-äxáZƒ’i|Ú¬úHS3P •Hé}Š™i—ö¬-±7<ùF{·fïc©ö©ž³±Trr¤Žu‚q”¨ƺjѹ›8öÛИ/EßÅ•Æ#ÙØÁU!c÷ÚÔ½ö]Ý{Ó×=«ûPÏK×ÞÈ5;„<Â\g`4u'*©¸ñª{› ÇeÑw·Ë…k´U‘VÑP.5ãÔ"QežS 0™å´„åÔ,fT)'ïìc·Ÿ Vy…”¹*‡˜Ö „e–R‡éøÀÕºeѻĬ’CTë|RWXÝWûQ™eµH¿ÀâZvÞ*‡¼*#6_ÇŒ6á1ᆙE±ÈJ\.‘-p¡qu|ÄêÔ+¡r‰múLË:9:Ì}ï”U¨Y9öܱ¹’Þñ15ØVä ?®”­3Ç£;g9è"øÓj_‹§êðzÀ8uCÁrÆdEv ktžV=Ë2|ÛÑ¡L1ÜÏÁU O´JçEÂñħ¼%L~‘ˆÊ” J©Ê<±(÷2~B8žø“ç(Ä!tñ0¢ ò„¡´âH”©ôt´&Õ‚†2KñRà*c<¡/Š·%ìS‰Íÿ¿ÌL‰YD•YH¯‚²ÉhÎ*ö×èˆ †ÀîA”¨IDš)ø…²eN$ªeœG†¯¨L™RÝV‚€Ù •Gh)¹¢C€<òJ€2@@¦P¿xF@AEhSÜPœKØòÜ* Lá}óû7•a¦ Î3vúø[ÃÄœ£ñˆÐ‹—£1å;ÃÉ€Æ4¿ÐZ)sjªÉ*àLIúòVäÑdiBhL™RÓ„tSzÔ4ïa¦œ¨¹ð1¥@M 4&áËõj¦\§å1@î8TÊ#nÒ‚èHÉÿè€9\ýT`?D\Ž•2<"ƒe|ú‚@t0¨BPŸ0ÂÛ™Hão¬6èÂ+\¹"¼;Žø‚€8œ ±²! E†@þOÄáÃÿTù¸ø/Qˆ¦_h àîûWb’›ÝUåÞÈ!Ou"ÄdŒKÚ°:p¾è¤µÔN:‘Ð+œÇ¥ÔóõÆæsÎÌ#˜ä°${Œ!ÑI¤9Bu¿QÉ00K½8ÊŽu/ Â Î7ˆ²ØOKº)0BbÚãp+.ŠëË7Ž [ÅåObGiB‹$Ž8[°‰:G¾“ãqd”g‹v¢.ƒÃXu8XxŽ ‹ãÔÃö`ø[è¡*¬\ ôšní禜”ó*\ íÃàw /d3Îo™÷Òh_$)ÐX¬Æb £ò¦yµDƒ§³Ãw}ðQz®»^Mw3,ý*:ȺY<ûž¶i]d;ß¿<,æë%¦L¯ñ”®—⺠ÖÕ2–iC:ñ,Ñ|Ô¾”ÏHÇÉé`¼¢~‹>¨Y”ˆc[&4O_<ø›Ãñ7¸¨ëÅ_,~š=ž:eü ý‹#+"b "²1ñŒTb‰T¬‚Êa pë±i¢ò1§båTì{"=ÖÕD䉨6å¶Ýå€Û@¯àDíeჴ¥¹ãm–`öbŠM3wp×Ü?|0¶€ˆÅµEFó”ŒuA{ªÑbï /+ ñ `08l?m4Th_?ù×èa±•úgKùÑ;KGºÂwâÖ4÷øh|wÅØéË%OÇûœ~JkÐwLJÆ |Щš Ò‡Ÿ¥o?>ÿ2ûÛÛϯ³ßÞ¾|ýñýϳÅf³ÄWù?,ã¼~ûòŸÀÔåÛ0øã¿ÿ ¢ª0ž~ùñËkÎøìçôP?øöùo?^¿}Ÿý×?ß¾¿Î¾¾}ûõó/_þ|ôwøÏï³ÏßðáÙ÷Ÿÿã—×Ù¿¾þüúmöyöã­‚›ýúù·ß¾|ýÇ#ºoßf¿¾A™/_±üç_Þ¾þiöýõuæ,Ö x:K^ÿ†g«ÇÅêO³s^ÿþù_¿ü˜Ùˆ$~ùÇÛ·/?þùë÷{,ØÓñÿ‡œ}ù>ûñí_¯Àöë×:7øñº|ñÇÙÿúˬüÇÃÃ|NÙÃç;Ý|RkšÚ|¢ŸE´sÇ|Þ±éj¡Óÿ(æVž«{>w\äÍÕÍáÞÖZÞ@¬âË,ÑrUKÑ"IÛIÝÚ¤Í0Æk1Ãv„P¸¶/:ÒMë[Ê»¡H,˜æ%ÛXÌ<›+@ŽíP3dëyBLó }0fq¸–GðHóú|,d-)àš×écqo)!Ö¼¯Í®(úÞ¼Ç é¨é¤ÇB›>ÀdQÙûŽÒc1K±ïH=²Þï£ÇÂV£©#OôX̪ãÄó¨M©¡Çâ–Õ‘z,d½£: ïF·@‘@äÔÓ4k‡ÑÝXÜjœvXß Æ¬çYFHAõC¿Ão,f%Q Bê7ÆhGîçáš4J™$3ñîÏòÁP Bù^#”–~ƒqOÍ´2Ÿx Ô•ÃÊ|]9²Æ§Ù»r4h¡“×s6ÈâtíÿwɆ[)µ9JÜ`ÌPí¦µùŒs,ä­›Ö¸ø_¬uÁç4‹ý%pXë&íÚ?œ]b 4¥3³®3q‰°™.UŠcêˆÄ £†ní°Ò‹YêÖ{½±…á})§Õ#4bDP 1V¥·Ã o,äMz;ìïFƒJ¦Ãên0dÒ¨:ƒd&šù¥Ãün4nÕ¤fw£A‹&í0À ™¶ødÑ´Á'ƒˆ¦y ÃÎn0f¦.";ìíÆBVŠ®Ãôn,f©è:ŒðÆBÆ~x¬ö%yÇâ6hG˱ÈÕ²·#õñ`ÌgÍØïÈ|<÷ªÃeX^¾¨ê¯Ãæq,d}º“¸rÙÏÁbDg3¬yåb5†s‡%ãຘitAÀäÐd¤8ñ±÷f£‹±kd¯ˆ è4*}`Xs» —Ž–Ãž耂¥M—;X°N7Öô‰rÉp¡!\†-SXsc‰ý£— \w˜õ]v¢}9"2 …wò–{ƒ.Š(†!@#*}ŽŽarL-†l¦ô†Å°ß¼ª<2l7_Þaù7|·÷âU¦:ÉÑ9Ø×®OÓJ‡¡^^9U_Cì {Zo4‚æ;/êúSmÀ¯Îöfð^ÝÑMy ºŠÙ¤íA—¤&bÁ{…(0L+9ƒÞjS; Ôo@2ÌxQ’aÐg H†Q_®®Ë«^ò.­¶ƒrÖR(×›ÃVK j#‡†£Ëõ4xhh P?}‚Ü™†ªÇ°¯=Ôp4…rÁÞ ÀqKß¼íÈæ9öªš°:Ry޾+¤§#‹çè[’áD jl\;’vNÃlHÚ¹,òäšSÙ¸èÌœ ÖŽqø†€ød¬TWé/Ç®úó É ¢yô¢èØŽT˜£p…ÉwØ^‹jP /Šc£¢µ—Œ&G~ëÚ¯IòC´%‡í‘ÔsÍgÞÑæšïæ¼É5ßz›k>×äšO²[\sX(ÅZ®9ì”b× ré¹fëÌÄ5ƒ\—w#Ÿ¨H­ À bjdú=„bbOY·,9LŒ¢ Äé¥~ú±ä0(j®–Ïú­º [rX5í‚•ÕÚ’ÃÆ(ªÝb5ÐùÔc½­9,Žš°*ã÷Ù )‡n7L†S[ÝÅ,W¸Ø^®^•è7¬¥—ä³H< ²£7€o~Ô9ÌkJ××$.É·x©©#:ÕX+°&ÃÈüpÓKU‹2 ǸÉ*ÉÈF B##z§ˆk¯@t‘á,r›-‘»ï,³Ð(&atÎa+’ØÞ3jÜEÜÛ÷pOM¡o¥Ê5ÿ¢¿üÜ.ë {î¤;ö/éìˆäVDn ¥7Ö‘ÃÌ„ZBžÒ/Û=ÑØ–--¿Wð û8Èu~<µ}JCæ<ï;£r-*r¸êG©=->‚=Šå‡x²”'‹VsNÏW£M|4)®=Œ[Pc—h(ÛžÀÅ”J 0Ç®>4˜Àò®zì:~žÄ€qZYí^,4’”W“F…˜zc-ˆYr=[Q &¿eE•¾0s;xG$ŒO£0J€†À›”•=H`?­6Ú´ç"¸x¢´.ؾ„ç%mL» ¿Ã§Ôãá4Zs·ÖÎÙðÀ¥MÕ‹Ïoàž„_C»|éäSt¹ ¼u„àŒ™¤(66vúЀ݆Âè[. ZYÍÑ÷YºjcôÍ•6'!æs¬±ó·6Ïh5V%éæXc%M›SîÖX Ó縦¬Z€6VÄôï“„Ñ Ôʸ˜Ý£M](ýr´V§e°À\¾'*0rM,/‰Dámð»cïÌuìEˆÄ1äEø0_¯P®sô^ݽÞÿdˆõ!m 9-ÐAd=Ú]–ǸÑãWŸBG¤6zwçü¡úŽÉZÌZÞ À=¢»ùTÁGqCªšc 8z”ws[C;©è‘1Ç÷|=z‘ª»ä`È7è·Üa=ú ¿NÓ¦<êó¶À¯cóèÐ ôèÿ>õì¼`×?ü×K„jòµÐ«´·ƒ†®Ç_¶ ¥ùÁzüUA'¢†eYÖ‰$7‚r¬])nºš!2 kÃh¬Gß}ô-?ëŒóôQ·Úíˆc¸±®Åy¤»qÀC—éÅ’f´KN÷¥Dåm¯qܰíŽc: <û3‡yD:|Oˆ·æšAŽÏmÁênØj¸eãPÃ-_x/EÈ8B „F!cL¦q øQ‰ƒ·ÀëscŽ Íêó¾<&ô²q8Ro\ÔáÍ‘zãÒ0ŒÉ7XÁŽÛã# GVN8ÒqÄš‘Θ‘£ÞÎY9’v;säå¨çOÉwoi®'(ià‹ò¥JŠB„/â—˪\éTÑN5¢Í‘Ë#5NbŒù|Ø3Èðs[»í„÷YÓU bûQÃ-ƒ¬~Ô´-ƒ¼^ÛÜŽvm3ßÀÔ .ƒÐ¾´ûì°y|„ßIZv]Ùn3’>r¦RѬŸ82ªˆvÅ8ÒªÔL¸nìòe1¯M+uí?Új0…RŽö¢LAm*¾ðÙ 2åœÃ‘QFOA%MQ·ÞWz{´ÇÕð²£G»[ Wúx´×Õ e÷ŽvÀ^ïY–<:mÝ3ÚõÊ «66ßÕTÕÄ ²Ý¾¤« ¸Í àz ¥”Û R®§ ´¾ÍwkPg6ß}l‡:³ù¢Ê«íÃS^a—3œ| –ïðTi…ÑÞ^f\Àíù5˜B9 F{€ ¦ 6ƒ¸ëÉ”j´Ø` uQí:Ö%J±zŒíðI…]u3ç(°•æH€Ô$Pv-Gê£&v½S9² emµÃ‘)Ó¨ŽlH™A9Ò"5±KäHÔÄV†AÈ›JíX6».,é–®êÙGâ¥k[¬Gû“™a•ÞãHêtUW¼IrëýwÏ2H¼Y *ƒ+¨Oê>>.ÜùÀ¨‡®XòA]´]ka_ôÑ%!¼ÈØO.…^¸ ´ÞvsSÄ~6¶Úè²e(ÆÜ´þÛ×r£|vã'úè `dIŒ,¶Ç^ÏHI·ƒ‰´§AVÄÇê.>n!}ÍŒÔÂþ8Y'뻺&:ûtGÐÃŒòY«k6ÄÈÐ<ú&ɆÉH¦—µa¶ÄÏö.~j±åºš¥úÈÄËŽxŽúÓbÝùIľèã¥èr¼p‡y“˜š¡Fššj¨„Ÿ¤XÚ0Àïø=0ŽðÜvy-¯‚x¬"6Û>¡Óòk¿ÖÀÌ$½AŸba{×¾®G9Ôs³%n†'.é‘Ì[åûXêm§±>4EÜñ8J{‰5´¶÷ª[–iЕecãÛÔø#2`w³ž¦×}¨åÊ!uF’ÖëÉÛ”Ù!Ÿ¦pú…Òt¨u†ž×·Nmzïi3ê"©m$ßüÚÑ<êÛÁ”KîÞ%á5U6FÆSVž\êG÷®~¬+螎Ôªál¹XU1E–œž ¸¦€_·!ü×°ðË‹ÆÑY„³0;ËX³(”†³Ô‹²˜b{†üè•G¿ý°\ãH_±oº“7ìô:õc;ÀˆÙš žÇÇŽ·/K—ëK{D„õc ŽQà·¢Ô‹— zÞðÒ™ƒAçm/öŸ “m{ÃÊðž"ÃX"FÜ VghR)}v%Œˆ>/M5üQx‹+„òΗ~6•ß3À2d›?i`Ò¾´a9Lâžoçˆ86꟮YEàÎ<¶Z““ÀbqdêxòÂâÈÔ‘§60Ž\ŽrÎ8’uHÈø ߺìQ†P‰:^DJ5{ªMG°ÆÇïÖ`aºÐ8$ÌGõ‹`"vÂâ°@dqHØ'–ña·5H!!qȦq(ñŠh|m ÐY6[ƒOB•ø¤¶ÆÇÇÖêa|4l TFLqˆ”KÎ"RAqˆÔ…¤s|\kt’NÂZ7íÀ®JÚé» Æ/r•C¢À)Ÿ ?DTY³ãë%h÷¯ò9n|øêÎF(ôíøÕ¨¤âÆ®îm‚—EßÝ:,®ÑÆRZEC9ÖŒCR‹–y®5Àd–Ó–CPk°˜}P9¤Tœ¼³Ý~*XåRJð¨bZk€–YJ=¦ãZë–EïO\@°rHQ­óI]5>’u_íSDe–Õ"-sˆk ØyO¨òªŒØ|3Ú2É„fÅ(+q¹D¶À…ÆÔñ‘¬{P¯„Ê%¶ê3-ëäèð÷½SV¡fåØsÇ~äJzÇÇBÖ`[‘'ü¸R¶Îîœå ûíO+<º“Q|lGà õo¼–3ÎèØ1z°kˆX£ó·êY–áƒØŽŽ(aŠí~®ñx¢X:/2ˆŽ'nå-‘ò‹DT¦„QJUæ‰Qé¼—ñÂñÄ¥d~Ë Ïš Ð ¢û¡¿Y$úƒi”óĬŒ£4 œÁX‚Ufç:"ƒ?™ªÏa1ú„ƒ—#&哟øÇ(õ`¥Šë)Žx”)y¹ª³GÊ®Vr9âQ>BqxÁy˜#ΤŸ Çz2ÂÅüŽÁ·Lsƒmµc°À-ñpÃg°0§¿eã;Ž8ƒ,*cŽƒ%{(¼K<”ŽÈ‚% òž¡—¤Åöˆ#Š^Ø4ÛØÕã#ütXÑ›ÎÛåµE¬µ›/^+Ù“€$_Þ Úbbôi†ÕmèãÑç:-â’f‚9B€rLÁ`†€‹Ü)‘ø2ykNŽ0„'6_ÿ66ƒÀÆ&l¾ÀÐ-lŽxt–Ä‹ãGô¹â*vÇh.kŒTŽ(sÇ JQM µÄóaœ–xxøÃHmm.Qê“NZ9"ljðø¶Åì¼£Št` ¬jÓöÆÜfXŸ%Ý!1íq8â£ÅõåG,±âò'±£4¡EGø0ØD#ßÉñ8刳E;Q—Áa¬:,<Ç„Åqêa{0ü-ôPV®zM·ösSfQaJ,z®…öað;в¾¸Ì‡Šqv´/’h,VHc1ÐxÓÎÈZ¢ÁÓYˆÑ‘»>ø(½×]/€¦»ƒdÝ,ž}OÛ´.²ï_óõ3ÁÎ×xJ×Kq ÝëjË´!x–è?>j_Êg¤ãät0 S¿EÔ,Jı-š§/žüÍa‡ø\Ôõâ/?Íž@O²~‹„þÅ‘ˆˆ±Ù˜ˆxF*±D*VAå0P¸õX‰4Qù˜S±r*öÀ=‘ëj"ò‚DlãÌmw9 Á6Ð+8Q{YxÄmiîx›%@Ρ;swÍýÃ=ÿE,®-2š§d¬ "°ØS{gÈxY‰gƒÁaûi£ @ËøúÉ¿F‹­¤ˆF[J³0ˆÞY:Ò¾·¦¹ÇGã»+†„_.)&<ÞçôSZƒ¾s`Rj4^àƒNÕ¼H`>üû,}ûñù—ÙßÞ~~ýööåëïž-Ö»¾úËÈÿaçõÛ—ÿ¦.ßÞ~{ýöã¿ÿ ¢ª0nÏûågøæö³íþ áß>ÿíÇë·ï³ÿúçÛ÷×Ù×·o¿~þåËÿƒ¯þÿù}öù>ü1ûþãóüò:û×ן_¿Í°þ3ûòõˆã¾}›ýúŸ~ùŠÅ>ÿøòöõO³ï¯¯3g±^ÂÓYòú7|8[=.Všý›óú÷ÏÿúåÇ ¹š‰_þñöíËþúýß ®t|ÿáãg_¾Ï~|û×+pûúuöã­|ù‡o¡ëÀœý¯¿ÌÊ<<Ìç8ÌçÚi¤Ö"µi$ŸlqñqÕ} Úç/@¡c¿Õ¢@ÿ£(b¸* ¡4Ž¡ùÜÑMßþV&þj! ¬FÕr´ÈÿT÷D[·>isŽUº€;)€ÄÇXþÍóùȶêªm‘. P—Œ¨y–Z5GüÁ@žÕ¼dZœ°åÑIÔ¼ãZK¹ÈæÖxä[Ê 6–N`Yr`öíꨠ ‘u”“ @eYÙ ™•ê@X°ˆ¬lËÀ‚Elec„-XDV6„€E\š¶`‘Ù£ÚeK™=¶»lÉ"¶e;É –En=Mó.Y„×kŒÞ%‹äÖ³L#(‹àú •°d‘\¿!_,Bë7FîŠEjý¶Ô®î”ÚòpÂ`,²ú^#«+Y=5W‡ÅàØ@]rtXŽ­ñj>w[(ïÂñ Å )ÚÎ6„ã‘+íÒaE85T;¬Ãzp<è­Ã:Œ'À¶>À¾d±´g3ÝQ‡³K,Oé̬ëL\"lÞ‹gÚ¡é5dQ–QCw„:Zªà ‹²¬²Â1)+&}‹¾ŒUiÞ°¨Ê¸)Í–y=V¥yÃ2¯'`‘ÔD3 mX¤5i6í–E^µi·,ËÑ´Å+‹È¦ ^YD6mÌ¡(G fêJ´#åxÐJ vÄ¡ZªÁ-‹´ ±«EãŽE`3­‚ݱÈmÖX?ïXÄöY£:"sŽ@¾êñr±Ó…ÁíšêõÈÕÙ¦é´VÕ¡9¦GÔª–Q¶–U싪?:Œ>»@Ûw“x»ÇSñÅ~y_³[·ð­†/¾H£ úÍ»Â(Q‚œ9ñQ~ö[ªˆîfzDE¢‹ g‘¡v-H-¢µé^—-XCÐx^ïÆh03s 4f»I¤š›„öS]¨V¶¦U°«TMEáWg*:¢m½B’G³JÔ—‡ý}M‹1O „Njõl"§ËI2¢z…ÁóÙ@²ØÙÒM+º.Òó;EVÙŽÒÌÝ}ñƒ@]°L=‘P,ƒù¢tŠ Ðféjœrˆ m@#}ŽËqF×,–%Mª¶ u1ðRÎ(–ÅŠFÂB‘26vŒ¿L‹¦K—‚bÄ(,((^•¾@íš.«•±µ£z Ô&¦v”/žéÄàÅ«*’ã”S×§U„½Æ غÀ_#*àÔ—ݳj³¢®>ljMûÎÖ Þ84àa«-ˆìÀÙÖD64‘ MdYp¢Ñ„,Ǿ ÚaK:þ¨e9€Ì ,£‚éØòCÜdåÉ}Õ¤½óÕh›ˆ¦9§bp «´`"¶=¡d)ã Ž¤´¨@ó®ºV:~q?¹}¯…¾¢åèjÏÂf-¥{…Q‚ÀhP±Ú´¬R7‡j=ÿ5A—ùž5·­ Æ-nDNraZR݆_i¡³¡u«e³.98àQÐJ º‡ÿ´Ø8 n3½è s5üœã:xÁDGŸáHÛÓ†¥Qɧy É#"^x¯œÆ -‘< –\ÏV”UÁ´©¢xøÎ†ðÎ`•X\¼&îÅ¯Žœrˆ†V:E— 63vRRÐ’´hIgÚØ*+M6úø_Á)+5ú€_­T¡°GáI“š²ŽÙ’mì¾Gææ`c•´ìT°6V¢ôh”ÖÐÆJ”­È]xcEËÔ >IØè£x=œC-ç¢ôʨ@ª~ §!êõ6ÆÝ5á¿aWS] •øAŠTVóçÔØ›I½B§ÉÁ=ÛÃÝ#X9‹¤Ü7ɉÉá®g½4ëRà «2:ÓÒ­R4WI DëÑ6ã&´<ŽÖ5FöR„­l pUþ‰¨£µŽµ–EPGkŸ>^UøÑêÈoùÇr´Fê㸆=Z=°1ó÷|=z_d‚»äp\bêú¸ÓZ6 7¶ä‹ç§ Ar iÙ>#Ÿ Û–!³—èf'Dã’Ô8ÊB§R-1~'èªò<0 "Äæ’VÜz®÷\ÂZ¬×{®̓ñ•nÑtÞ²½4‚˳Où»òÀ+ë=W£Ê¸ì-åëÀÕ¼G¯80Ë.hdŒÐ\z¡‚.ŠÖ.QA×óH>—¾x)ñoAKC¼èÀ¹Äû$4à\â]‚ãE å%ºu-Û\'B#¸D݉wò‘¢rI¹l…¿ðûå¼ônxvÄä’í‹vè.áÖÉ žizÔÎ\r-M;sÉuª‘‚K¢A’Ý¿f€jqIó µ1^,.Éö4šÄâ“lhsLì ˜\’më´¶Å%Øz[ùY|k4£Íüû£MJÄâ’i¸Ýèonm?K©èTW#Ad{'aÞ»WSta²îˆ1=m*4£=֤ܨÁeÍi=¬é›J~ÇÚŽ÷á–üŽ57¶¯'N"©IåhG#Çg…c‡KתAûÖ—†mš¶#6Ÿ‚3Ÿ¸eÛD7ÜèË £Ö³½gT{£ï/:5mË¥VoÛƒ::—n}Ñ€¾éWÜÎ vâø‹“t¨4ëñw$ÝÀJkp‰t;\ézüŠq»Ç”h0ÙÎ- L Û\²­>.ÉnëX»\RÝtCBl.ÁÖ×Xö›è_´Ö™çð£nuær‰øUƺ–ç’öÆ™ý‹œÑÎ}›œ—KÔ½Æ1Æf´#†ù@ôìÏ‚äñò=arÉ5a¾ä˜\ÒœóY€r 19&Û!b†9&ÛÙb&9&Ûab¦„9ÚÂxcQ^ž,Û9[P¨›Ñ^ÆûKÜqoF;JkŸÃ±iXAÈ%—ˆ9.‰|&ÞØŽ™¥t8»íÑ'4ÊYçf´Dß¹Ï%š—öܽíÑuÔ¤ç\ÙŽI³í*aw^^ðà`3Ú/Âhçxl·uA»iWhÕ¹Ù ËÁ°Ú×Ò5ÊÕª¥6jÙ”y@«#먾"¦LIÒöfWÿ9|XÌEžYfñ”Q|Ôñ>>šÞye±mÇd€»"㣗ŒŒK€[¹˜WiåŒè´5åÛºJS­óÓÃÂÞckÛûA!ë>-æµT5¿šÀ\Œ ;Œ—0ÿ/ì´†¥0Y¯jÝ{NÅSœ~g??ò¡MmË!⃬¿rãÝ^\9„z ,?·!.$«¯4y‘ç>‡€Ìâ£d5¬˜Å¯\qÌâ†W~(oȬyDr?¼šË;`ñÍq4Íâ•ãh›3¥ˆÒجyEJ§G€e‘ç¶ Õyc›Ó÷??nªE¦|Nÿÿ~)‚¬IGtíÙ~$w­ Y„\¶‡g~mX„ÝmOÖ|$Å% ²ˆº§a—3I]›°f#¹ì0‹T{MeÂãAíÕ.§nMÁ™—D'¬ÙItQÀ’Ç{úT8 ,ò|j‹OÊ’“fãIYhXfè&pÝ=h°Hw kጓ̊EÂϪø­YdúÜV§k¹>·…dÍ"ס†c±5³ˆu¨9·÷Ð(r¬©Qn.*áãŒsqƒ¯Ï‘¬S4+×{³¦˜ðË&âI¤rQ=O"•K{±¦RQ€Y=nMž”*M`uÊáI®kÆ?k~•z{óäXIÚíÍ“e¥ž'òuÞY¤»žt¦M‚3Ò–*5 Ψ[ 0gs¥{YD=Õˆ:Of–Ô8Õ±fg¹í*xΨrê·'OKfnölCÊ 7Ú5¯ ¾6ƒÖW£ýô´4žjU@PYj¢Ñ¾zZà"¥O¹PÙ³È÷³ºàÉìòÜ>Ú)§¸¦ùö,Âü¬é41þ¨á˜Ev?jÚ˜3üTãÑÎ]ak‰£™Eˆ_Ú½7Ú² X™·âñ~Ç®Sn «+,ô/òDàÒmVpM“ìIÓ'< þ<_f(<£½ûÂB–íÅ“ª¦fEX5OæÑš'ë“Ùh¯À4JM>Ú5p µÁ8£x7•“(O2= E¬8sä‡Úõ~íF8 ¾ìòÑ>„Ãà•ÞíJ8ŒFÙÑ£½ ‡Á×ûx´kaw„ò0çõžÚ蜷{USódDèTt6‹Àëi”R?:(ÝJ/Øœ×ÛEgs^qw(:›3ؽÚJœ¡î–y£Ü×€9Ï—•¶íÊØ…lb£ÝGÐ(‡Øh÷Æ4Ôc=¡rˆv€A£.V£ý"»Å*VOüG{EB¯:œwHèJWó¤€j’(;™'ùS½Þ½¨Ì ‘<‰¡šè¥Dò$ˆj¢«ÍÙ/¼%‘£½&¡×Çå ©_¶;O¦©k[ÌG;Kv+ý8ÚQ² ¹ê>éÎ]NÞ=Ë ñfA€¸,r­à>!,ç©]E—‡…;Gzw>ÐÜ{ßà:ÇÅ@¨¾!¾hí3=ßIÚ/2ö“KDçî‚øY 7éïgÞÅ‘òá§è£/€™%13,ª¹qd: iªL ³"^Vwòr ßÞÅÌí+7kâf}g7)Aß»R>luÓfl˜•Ò‘B´2šØqNd´WÌ"e¹¿# U6¶$Û;%µ³[2ªÏLüÿŽ;,Áö§uÅz ßPpDFÉ–1‘¿üßq”Ôòn,\k‰,çÇrýM¸êc™Í̲©ŠN»²·#öì‘£ßØ¢æÒ®õâÍÖ³©õì»Z¯ÒÇcÚ®*dl9›Zξ«ånóÉ„v»n¶šCÃÖx[µî`žba{×Þ¦ÐO’¨Ë ³’꣓Œ ¯hz—„ƽKhjƒ}ŒØÔŠÇ%ÁqJ :õâªð,£"ïœûúAYñø¿Ã¯IO2xÂËO(þø(Â#ö¨ÐFÕc¬]éT•uc;GŽúg°ðôø„Æú"œ…ÙYÆ…òñ±õh–zQ–@cýØy*Z×a½,tb ¨kk l¯í^¶“7lGt‡õc;ÀÈîÚû–ÇÇÎ÷/K{Ž eL@Sk ŽQàk2?ˆ— äÎøÚ™ƒÙl/öŸ@âlûÇÊa€" Y"Fä%Vj;\t!ñhÇiH“V†“ÆHy@—%¥}é2T9½0K"û“˜%}ý‹ØÁŽÈ­ÿÍHz9Γ/émó±OŸACÀçÛñbŽY©ïO´üðNb›ì¶‰I8 +‘äY$¹àÁX׿c²Ø0£-ÈôhO¾Ch<9{òäFÇ“µÇAÎOÚéKãÉÚ“D‚ñ¤ìy)Õ“'cZÐÆGÁ×¢aŠðx$ÎÇiáxDî$.„Æ#qÈ‚㑸3N‹ãƒ×k±BÂâ‘7L™`<âÔø0ôZ¨ ²5>ø¼+&¾x„,ñI­2¯QUÇø˜òZ°Œã1—šŸIÄ<ã± Éëøèðzy%Í=>¼~ŠòE íôÝ#t¹ˆË#qQà”o0 àòÈž_/iDÛDx™ÏˆãƒÀ÷4E¡“Ç~ïÁ%8>üû€†È‘™ôá­ërQmePB”­àx$׎£7¬”µPÙ嶿ܰLpÙ=ڴʰœ>ygEàT°Ë-´”,pyÄ¶Ö %0»ÔÒÆk|xxý‚ê]≠ˆYÊ#ºu^©ÓÆÇ…ïoƒqÙe·Hö Ð<â[ƒvÞ.ü*ã8_ýŒoD3‹Âé•È|"\ C#îø¸ð½¸WÂåã÷™–„rt‰S[¡†åè4°+im£G·"Oøq©ŒÅvt< sÖ€spˆÈÝÔy‘A„€\ñL«dL=¸l‰)¢”*λÔy/ã'äŠWzŽB¨‹‡É!—+l©G¢L °\ÑKC™¥xâ•1ÀŽŽhÑ-Þö©DgË?Qæ_Ŭ¹€Ë.´× ae6g{nt c2 JÔ¤¹Î–|"K´€eOœ«ežK¦¯! ±¥z®„3˜.—SêP‡ ¹ä— e€l¡£ òŒ\‚‹ÒÎgmË—çYe ßÜ©L³e¼užQÆß~§ñK ^¼-kÆÞ<¶Ùû…Vlù‚SM¾L€gK=™·&—žKÂcËœ&¤áØ’§yo³eÎ…‘-ñoRà± c®)P?°eø-µtÇTqËDGJkIǼÍ㤨Bû!"ó(•áÁXlôÓ„â „ñ.‚€z‡Å$ßÎD—ˆ,Öøbázá¶Øñ„ÅãÜUæ‰þ)2„â‰dð„P<± ž*/ÿ% ñ šÂ< `Tç<ÑKQÜyB3–ˆ(]<1KDý=‹D$"H‹íØ~ì•cW¿àÎÊ0lšµ0K‡Ûåý Ar¦ˆª­cF¾hq݆ê}ü¢WÇQ .Ùi&’'Êk$ÏÌ_@fÉ9±H‹Yÿ!“·få Ÿx2¡sæ^h£³plBçŒÙÝF8‰SÑÆ0y7¯Ãd”ûò•} lÍ‘òP7aåBç™ÈZ¯ôwcQ+%"¥ñÄãCû K€Þ§Ólž|"<¾-B1{FÌ5ŠkžQ´_\Mþ\ÅÄwðžv ˜"©]{„´}b³¬r“nÕx ×®i•‹sBÑLŠÁ´»ä UWÔÁ´3 ?>š^sB6Ú"´1ò:(Ř{³Ï)á^nÀ›Ði¦ô‘(Ö9¥ÍÀ)Ä„v5z¡Lßû<«¸5 JŸ6ÐK¸bð²ðˆ‘.t’Þù>K€¤³!’Îv@Ý>-¡n€%®RÚçdñ b±ØS¾ôÅ•`¿Œ™g€ƒ¡cûi«© :@¯ãƒ'ÿ=,¶r4·r3”æY:Ò¾kæÉÇÇŽ·WJ»0§TËÅj°²LB­† |ÐÀÚW 䇟¥o?>ÿ2ûÛÛϯ³ßÞ¾|ýñýϳÅfµÂWù?,ã¼~ûòŸÀØåÛÛo¯ß~ü÷ŸA„[Ìÿúù·ßà›?ØÏöùP¿øöùo?^¿}Ÿý×?ß¾¿Î¾¾}ûõó/_þ|õwøÏï³ÏßðáÙ÷Ÿÿã—×Ù¿¾þüúmö7Àš!Ø—¯ÿxD÷íÛì×7øôËW,öùÇ—·¯š}}9‹õ žÎ’׿áÃÙêq±úÓìߜ׿þ×/?fÈÕLüò·o_~üó×ïÿöXp¥ãûÿ8ûò}öãÛ¿^Ûׯ3û9€gšqû9½ýgÿùð0Ÿ¯aÊ™Ï7¦)§hÚ”cšh ÓË|¾% »±šËÍSD·º×1 :ýB»åÑ[æs{޼9¦…Dƒ7SxQ wihˆ¨Z3IQ€êi»Ãh¯ÚQ}]§m% iI/V¦µJz»ÖvI?áâh§L÷ HvoÚž¨d÷¦ Yq‡M!cµt‹}X]ð´J$+Ã:yoÚ•K]S£ç±‘˜5ŒØÂTÇ´}:£Æäzñ*†€¨•5…GTqß—bx×Ò·jõé¹#]ŽW =_C{ ܞϗKShµ¥¦±ç”É{0{ž¡gÊ|¦¸>Í3Ûòø´—ÈÁj5¬¯L‚eÚö*âž©Œ@bÓáYC wݪ¦k¸_`;ÁÍ–ä¦t@åP¢-æ÷d ´º8Lb¡ &¶÷,Ë"îé ÷ÔúVº…´¢o€ á‚ßÅ==Ã6±cÿ’ÎPö¶+"7Hû×§Tr‘FKÈSú#dÂïÀ¶Ühiù½‚WèeK)Òœ¦"T•“ŸŸn‡‹ˆe0ijïœ{z§TÒM˖뉦4¨0 Åd³ pÝ—†ƒàêá»æËžëáM¬ñLjG*q?H%šÚ9雼p¢\îwDi Pê—……€¤ú +ù´z®@µ;L¹ˆä ×ÓåË öy_ÌX¹1÷;£r-/Jæ«õ@9<->²£³å‡>LxylE5¾ã|…G$ð;°ŸMÑ7=™ }TרöúçRX ´%rÃç"-¹  y×·÷Ž_(? ñögÈE \"5âmV³E…|Å,¹ž­(PY¸9ºFÀ‹¶23V9j›ã¢]õØJ Īŷ……^” 0Ϋý }[­Åš«âzˆT‚î ÑZ1Ð}ú=°fJ,ï ·+1h²ÿ´œ ÿÚU·Øí¿8寜aD×;Q¥’Æ/«É•³A ùÑ~ÿ–²ê²‹ç7„¹Û²ó*~M±SÛ+ }¼H;p" T±ëýfú´Xµä®{¬Vž5êN5º\@I¬÷¸Fß㋪¤·ÑÔèL„÷s~}õ¬§,ˈ •ÁÎ|³ÂµÎf3ð``_»yh9Xµ[‡¦•Œ„ùlC‡3›ý°“€Õ¡}Ë¡£Ô¸ß¶7»úÏáÃb.ò3ߊ\euUƒ½žéÑùrw`Sö0À]‘q{ìÊÍȸD8‡ÚÁv&¶^ÕÚAWÿò™Ð8|àwˆ j» #5ذ|¼êÅc³ÅŠºq¨žÙok—|šë½ruþÀx0¿gé­éöð*MׇH%¿y°‡ÍltA¤»q”‘W<˜è¿H߃$Ú"gMèìs*žâ,h_LÕ{ÈøŠƒm9D|‚8qåêŠÀ8=&¾ƒà7ƒÀcØH)î€Ùãˆ;ó¥m,ò°ÅmÉYóÓbc¶W¦›©‰É{†d§¨êÍNUv6½ÙizêŒÏN³íÌNÓð݈ì4rÑô˜{šÄclN›îã’¦"cÎi³íÌi3¨½u9mÆg°!¹tÆž¡©‹CþÃGyóšú'e¸:ÛÎL:&}o Ñß"íd:óÎd:õ´^X~¿T:ƒdõ÷L¥³íL¥3H^õ©tøç´õÃðÄ9íCÜ{ç´9Ñ$Îéq7bäm{K½³ëÝQê´›Ò¤Þ)N~»ð ™ý@m‘Ñ%àé¾Ö´«ü<²×òól–cóó4LqÊì<Æü)-Áª7;O—÷È-… Ñ{_Õ­¥PÑ6k3Å Ñxuk¢™[LëooÕì+rHí>-æ&Jæì+ªŽiGl%êïº`~±UOß}¹p‡÷ð€è«zÔ­K‡äÙYN8¬T×võ㵟# d–“*Õ3¯±&Sª,ËÔ‚ÖÞn‡mÖ§áy€ZÓ!™!¤Òtd’Ûlu„Ô3V£i¡çÌ “ÿ³­v4-íø6aBŒiàVy¦Ñ.ô!¥«=’xÜ¿0yðU®öZJªÛ5Ñ~ëÚévÝ=%äNÔHï0pž5Õ¯éD­oPÍQzFw:g6äÖÄ@Ã3z¤ƒ¦=pã>è ©3îÐ9!ía·›æY±éü¥oz‡Q¾Èà!fhvƒ;ÒfÌÛáy§ºSu/ñ*—«MwvÇA×¶ç÷;o5îu~ç-SWq:oµõÀïï¼Õ¶sgpÞ‚]/Qa¿ßÄlö\çûº»ØZïjÒ’îbêÍg±†:›æ,¶¦<Äó5Ú4Œ Ñl5ÍÓAÎhí»ÆßÉ­=µÿ^Îhíü{9£µµêTg´ÍaG„„Þ¡©£—š‚ ‘÷Ák‘‰ˆg¤’÷ŽUP9Œíuž—&*yÏXVNÅÛ3ê„`"2ÄE°qðÏâ"hÛ9IwÉ–Z0¿â‘ØÐÞS=çN®„œý82ÍÚhž¶œ!³ºrzTh6\wC)wyTe´æð¸2m÷ÕÁftw\ö >wGßùkòãó· ·Æÿüücö·Ï_ÑñÛüÇ—Ÿ_¿þøò÷/¯ßÈÙðøúõõÛç€õ÷oo¿þÑ:ò_³ÿ3 ~ÁŸøó+þ¼ÁOøKþÉÿ™E?þùúí¯uº³Ù»Ùåó üõ¯Éýñùÿ×|úüÏ/?^ÿšüöùo¯ø*ŒRùçYòú:ËÄÇÙ¿¯èuÙò¤lû2–D닟;ͽÕ\–u¸·â©+Ïh·-gQìø¸ÁòCÇ·EÅ-gÇ7ô?Å»Ñê¥v‰&rªwd«ò¿§;d“Øïáÿhi{õÓâ ÷€é§„^y5猅eõµ¿â‘>+$n~}®¾¿!kZŽ|å1váx‡Ýº°Wz¶n¨å š¤èÔvàÛ§ ,ÛãÈ äÇümåÔwÐ`ÿo4¤6Ùi½øômkg1:¾¨izÛ¶ `”¤ÑK£¡ôRè¶æ}W”¾x"¾†G O‘éÆÜG‰ÑW²8‘*ŽqüÄÃã!º,üv,ò6³m~-| Ï‘ƒÉqbõ´Çƒ‰ªñ¢:hÔÑ&ÿ?ÇDbÙ&÷;Ù™úSØ6t{›:¤¸š9ÒÙ‹äÝ(©>r­%F;l}} /ýKSͤmêû_K½ÖÀÃ^óCô»“rlÙâ|Z\"—O¶ÜgtóN£t—\æ åa®ðn6-¶~¿ã£rÚr@RüqZ¬þ:àè&ÒÁ7ƒ ÷ºØ˜á÷ò©Ìû'š–eõš)mÍ›Tö¦6RÜd:ÝY*W“æ:ÝÌþ+c߸K-iý¢Ô5rŠI27¨òÈøê;Æ=,&øøa¾EËáùv¥˜·Âò¶ÃÈ@)h"ñÎ~ìÏ®Òæ¨¿sEœÐ‹Bˆ<bÔ‡Ia >oäÕw%!¦"}–2À"(ZEbÌ6ƒ‹y“A·Í×Åh»Eµ±ÝêkJ“”Z d’̬6`ùêƒp˜|Ä·Ž~]ûéphcGÏžE £¹Ûv‘ÌçQ5žcÜ…½©WݦC!‰+έԌÌ_ÕZçÂü,ž+¦ò'yãIj<9¼ñD¡%üæEœŸš•K9¹}„\T`ÛÒj­EhÕ$”xR–÷¦7k~õ›#¬qšß )ãd¬oOOÇðnaé%5*j½/.–C÷NS¿—¤j9K¦ ‡ê³ ,9hYäám0¢®Ñ‰q'4³¢îMÔ$::ˆð‚Môø˜z£˜–û6!ž2µ}UTË…¦¢=¹3é?t  OQíè¢ö¯÷€Åââ¾n§›…KñÅb”W†vŸ·Õr=7_ jïâ‘ÊŠ÷"¼BËÂwqóýÂаxv khÃìÖzwëq*Pkì½<ÜJ6§5yM,êA6¯, ÷ËÞu»,Ÿø¢ì§£ÀÚz¿¦6Úh&×·Âêà [QQQ"ø€»0õ):Í÷4Sï·&½¿hJ2(+uÆcÜæ@¹½L¬)í£ö{͆…8]ëU6…‚ ¡íáNÜM["‘tžEÎy”« ðDEtÙ¶I%ŒÊåi¥ar|Óø˜Œ|òý<~Ï÷¶¡ÉóõL„Uê°Ø 0cQ{À«6STÓÿÃü0Çq{Xô|mÖx;û*o(‚ˆ7³ÍWtÚaå˜Ø)ÕP­ îLgâI@U¨ð¦WM× Gg,›¤ÃV³H/m>?h¹Š Ç°u¡Ç;£2ýÕP‹CŠÆ“ C[>I¸a–< ”#1Çñ&æú™-w”Éâsvòê®ù(Ë ÛS,:†Z³®ã[è0ÚZ.ÍŲc´5‹EQ œ@¹Xu ¸f±‹¦‚ÔThš ¿¦+ WŠ¢@Š5ûJ³2a=i°ðÊPö„eÔ¬DƒEP\$ˆIû®ÛP'ÏÓµ5ئw¤7˹XŒæ±Ó£—³*{ÿqyšEá Ã] šFÄÞ¤'ðP+{# Uźxôã,(ç(‰p$Û‡]Ñ„“&¸àh6]³I.ªÁÕÅ›æÑ5Ÿ4‹]DŠzË¢f·:Å[-h rñ¶¨ùó̦õ¤Á"‘ìŸhªb™F8½Ë¬ª(.²Ýß㌠iRýÇq›ûúÔ \ãêµÅJQ-çæ©gkÞ±Šbÿ*jB¬ü»¶²H?[]úY)*P¨˜É¤tnu)f¥LÔÀ@‘µH#[]Y)siÖ …Õ"]luéb¥LÐ!1µH [F͹i <5Q¨‹úwy™†tZ\ÊX›Ž¥ŒZí¸Õ9 u«ag@ªI)D‹½Œ ˜7jeªC(³_õ•IÅÙÏïç0×¥ˆTŒ_wïS®<òb7ÑVþk‹n_,ãò~ÕÀ ’é‰ÒA˜BsžR&j`œ°.‡a˜ê²l`С€òÄ&”ÞÕœRæ=•É[ ã,T¥|mRNq]mÑ“%Lsn &lÁÊžPLÍÐìŽÈ…@¨F†¹ƒ®ì•2ç&Š~ÕŸ—A½o“’µ»”l*ƒì˜ÕEQyPS³öÙ·jvÕ“M0J›dm£¢m¡DMTµ6©ZÛtð±Ø6Q.­šacÚý®(ÔPq6ZØ:[4}[¤I‹˜–’öf( UõO¦SÌ®€¢°éÏ6jÉe““úÄnèkìì}¯˜Œ§Ðþå¹I¾´üÐAÞHÚ]G%ÈMþOêH:Ñî҉²G"HzÑ6.RÛ8Q ‡„–¨¶a]IGWR—výhº¶iUiw­*›ÍÒF"¹ì_S*ÝV“h¯4lÇtŠºl± b‹ÜïØ´ì´»–†ÞFá4 J‚‹wdÅÝLÕ|ï{OâœþµÖlô&»Ç;‹Þ<Ì:NuŒêòðSí„[{쀇ìÍnìuº4h«¸Ô@¢;¤G•áà¤[å" VJ³¤Ó¯kgûªä8ëÞÍp‹*ÞÆ/èœ µ¹Î¦ÁØ&¶çƒÈ‘U·áU€RâÐÒéZ@¶›¶°Ôòý®®Dð~ggZžlÍ|‡¡™ñÓšñ#òAß"d<˜ø!^EVL_-[š3zˆâÕ2œ±ã=L³hp—˜.OtG„©x/@ ”TÐ3~-óèi@$xïw¥'ß {ÅÓÀ]PAY¬c›äl×âîÉÀ•[BÊ9j!iØï}Zãê „ º4ƒM+êšÓ§ûßúãÕ(ÒÞOvíý´%…V€äE¿¦=ÀV)[ˆ8áiõñ*"D5ÚÈ•·+âgöŒA÷åžZmß¡»Q]QŸÈ+üöO/š%šÉý a¥\Jí±ßuÓÂm£P¿àùòÑ I…Û\) Óÿr݆z߀ à¿È`JŠ^£“F±/¨¤@ 7i8$£H­ØsÑ–ù¡]®ÅƒNÇd×éX³hã`{ôR,•ȳ_+^QžhpJÛ´IÛ´xm|Äé•K,EFð5]¹HǤ‹Ñ ›RxÎrÆÝyÿnÌÇ”Çh•K=4ÙKÃÒ]ëoÆóYQ®ÚŒÃTá.Ù]ãþÜÝê—,äÑÚ(•ï“Õg´qÉ\Õ5®Ö77(jðÀ–¸­Á%ÿ ÞT×êgÛËðýÃbž{/MËœ‹A­žE\¯pã‘ÈhÕkNÔ(uŒ¥HA­¡[cî¬Û¡ eé’°ñ¬¶ @§OB4u­[ˆç(ÌI4Ï- Ý"·½UM&âš+–!]›Â™Úv\Á4žeÂÙå9*€RMÅÛ_]ž‰œDr»®U­ $EˆæÙÞ¯ŽÑÛQõtf½¤ôÚô UB<Ñsj±}ÿV-g0£Qt˜p³Ó ~^ÇàŽvÞÀ¦ÿo>¦¸.žy³j#˜öî¨pB·" 7+3-äù‚ÔÓr­=ø´ZÂÚÕ#ŸXÒD‰ÄÐ'ÿ*1ž˜L=?º uN©à? ”.ׂ;4ƒ®¤¯X’òZ7J;- cÝãvh¥ÐëJRåHí-»Ôž¶¨¾vUoKÕÓ™Œ—ûÙvQK[»ÄâžX4Þ“jYü¨çð#1HqÞ—¦µZ¶K†ZOÄ ®»à·ãt^WRËà‰´öh:ÁÑ È飞Ã( vïâFW’*Gf—:eØQ9CóŸòö·©z:wÕÒ«]ôY[»š¿V“B„¬ §2Ÿ6Úv{ѱî+<™ßQu?ê«~Äš¯(úÊpØüi«eðxÔrè^‘C ¼°ÚŒ¢ñô¼]2‘–H-é§³³¡U‰W5wDsª˜ž,¢¥ç'f‡Xã¦}±Õ/˜?mÑ­ ¬‚¬µóªùv‚Û ÍS[ıOgh¸ºÜn1®öÖp"ôi±Ó"ÀóÍs+öÉ…]Þì ÷Ä´áŽüÔ#ئV‡IØMÞã£òì‚ÏJäa P;Fq*~üDüÌ ‚Ê˧W[·=z0¦*MÇyÃZéX9õå-S/ŠKŸ-¢šºúi€6F §Gn,ÂöLr’)Lü‰ý°ØÑä¾[˜Œ¸ÙGDGåFVy‚«ÄÝ;x·2áÚ8Åi" Ãú! £H¤»McVæùN-åß„AóæÎ´\ÐÍäÑá³Pk§<ºöä®kß,h p(ìHÁìL7#ŒöÐRÙëåüÐA«{tJ/6÷p×·sŒ àrÕ˜—Ïw¦˜:+аXï½s­˜x'<Ò¦cɇ޲=ì×úƒªO+rz1Âmm¥‰¾Îg{ `Œ¦·eo£`9QFëvÌH4i¿3,”0@¾Ijy+Ha“….d€O}·ßwœÅ´«Çd¹©s~’GN6Wd–pÄ[O½á·=½SÒCÚ´á,dŽ®í«/r'¹ü;$†ñ ö¦@LißQG ³ñ¨ãÆÍ}8^ €€(PÚ^7©’ÎÖÏYѵsÒ*â>@çÑo ýÂ1Í៭,Ãw%@Îñãcþ®”´ø=ÐVå°Õ¯½Éé*h¦n)OŒ™…5:Í%7Mô@z·lBÑÓ-À‘`„þ~âÓ:=”Ï9dV•&¯ô7мC¯§$à Slƒ9ÎÏõâµSËâ?Ñ%C†ØšõïÈ£ê,âÓ»åÃBP/‰…aý‹·ÖVvôC™(ÍÚ|†ò$H³‰¾aI… imõ@ÍPvSýÅítMˆ^]¦ºã J~)° kÀ…Éê²%ÂØU*"NtßÚ|Œõ³Ö„¶îrµh; *‘ˆS±œÄßÓ¬`a¬÷…%LÛ@t(ÌBG(­gÄ'Áo‡‰S«ÜÉÓ¡%Än‡–4¨ ð[Áòþ뛊S s-z_ØKC_à‘r /8sÔÄL}ÌØkÊL¶6ÕmÕDIÓŒƒºÚ¦³[õ¢lðeü“b½Û|ÁÚ×Þí J£—ÈÍq[ƒ:gÀQkXÐ^N+Á\sÃQ®ó¸=…\çycÎ8[¬ì0ÈÏM+ò¥Y¹®ÀkÝø¡U<ÆIÔ|ñˉâƒZ´& „c­ 4¯;û¯¡yò£ïFñ9_~ݬ;jŸÄQ*p#bÇ¥í'Ø™Ž³÷†b—R{^·J°ÞeD­hÎF×` z¿p–š9ð*¢#ƒ¸¨‰­ö í,1|¨£ó(ÅÀDÛ•&0Ñ ¿ˆõ’Y‰û—FÔXZI;[ Mé¢àІG²)ëŒäD9{½r[l—m!óˆÈ–n‹þ¿‹%eWÒÃî X·@\yÊAç@m ³ØÆ«)S=½†),%.Óººc,ŒõµëÉùWÏcxgÒ?ÝÑÏÿ\–?íEÎïžÖop—<~-êÿÓ‰û´WT3õÝÕ‘šï^Tm.¾–¬ý'ßkÒÿÿ:Û^KÿGÓë™»¸'Ÿžv õÿQ½Mø;dÌkQþŸJ‘gÖ¿WN<Ý"ä÷L‚7PÀþÇ²Þ 2®4wóþàI†A{ò5¤nÝ… FC¢ !€àV ~5íð«ºÕ¯ho¡„õïÓ‡åbnŒ‡P*¥|Íÿ.Iã̾µ£e{íFdHJ”¤°UÀ"sÙ-ôƒ˜L Faåª2‹Þ8ÆzŽ1oà´ Oª^ÉÉ•….Xè@<›ÖN§CKðòø¨c>D£iw-^Zyueë‰;òcº |ר-½Ür6š*¾n$iÔâ œ,M_RÝô'©¦ oqU…\$¾2é¤mCRdCR"̹!ÓmÂ@奡ÿJo ¬z׌~ˆ»xa2Êb[b1›ˆv„]V;6g÷⛄備7×T“µæX/‚X²Òi‚ïsÚï[É0u•5d¿ÔXZçé.7Út—꣔l ‰.[µäÉl¹ØS[jLò+åu“JâD5+gØÙÍÔ(×jRf³Ô.>-Ðx{PúJí1HÑS<ÚDÆtâ¸ì™Þ·7é%‘§[Imw€ª6&\3gŒ¤¡…N ­‘ºqò?R'c¿S ÈN“Í;r>vÚ[ö%y^M5—Ίª´5œ–oÈÜõCqônwÿh¾ÝxÊÙÙö.ªb­€°tÔë¿äš¯°oO¬™üš–Zº ÒZ¡aÔÒ„(F™D&‰1I°Êèæ ¿£Lèl[ hÛh‡Ö(_ôÆe//HŽ3ò³m½(DSIàOk_s}ÆdÚ'ì¼Xév¤ÉÿÍ ×èT` ¿«PЬ ÕÌû¢ý:n½k}‰¢¨Lå§ÂP[¬V·Õ¢‡^oŸ Âñ©_`îŠ}()¨uu> غ‡ù­Z­Û|ñ„#ŵ ÏTË•®]/1æÏ8šÖXéþˆÉDYéS”“ 4£X-LÑŽñæØŠ.Ñ9r+;D–æ£0$È CPÕO‡uåQîêS )@*8S¯´©nè©a,ks&<€r JçÿQ/ë;ö”µ{¶H*MGi/×Ú+5´ ÞpÝùþ4ËB\è87=ð./ª‡€kºJó…ÖÞæÓr1Çs"•½ú·ùF>RïlS/ñœaÌ »Ö;÷}Z,P4êe,?UÉ^¯ñƒXSàµkX]®ÑßÔO*c0´G©ÿÖÆPxO6õ"¹ ÔUÀRSŪ^¼—P½ µðv®µíú´Ä”mO¢Þˆ˜þ°þ <>@ñ^×$¥L Ãcê¡Ù”]‹©Té9Zã‹’ Úv½ˆ <Ô_“ýR uÍÑc'jezo]úó¦vßöºÒ5mÎYÚï†Ð0[!\Ä ý[å›u¼?…üö`޼Ñ>À±SœÀ¿I"7͙苭Ɏ Í=-qÎn1+І«öï“rKmy¤³ŸEã5A¢£Än±ÃÔ×:Á¦zÚõÆàÕzÉq»Öh8Y™Ëv ε Pì–K¤©Ë!i4=G‹ ‹xŽ.ëŽÃêX¾ÇÖ5 õ ´ËaK(;ƒsž.¬@êŸd–¾;û× Í·I‚!˜dû¡_€v;ì×HÂ2ˆ7zN¼‡Žj¸#4a'ìÞuwUìl`ú@AIµÔ]CUcšÀGMˆza7²7”OY¶i@béd—€²¸ârï wÄ£ÉáÐ⑜pŠ˜c~"·.IžQŒÛMp‚.xj òýÆ´Á®ùäGuÍwHe ƒ3#©êz—’EŸTœü!nQú ¯i‹º×¡Ùž.Eµ a" 9ãhóÜ 8)ºÈµZ®xãb,ñ "T 4„HÐâ6&f¥ªçæcÏèHwžå;ïŒÀýž‚PH~ Û¥˜j)‘)ƒM­Aö,«Ð5t5„âöäË´’ôö-(¤$+‹æžl9Âh¦ðÛáÑ(%k,äOˆø`L<6-˜LŠÀ~ëdQ•*|î`ÖÏ$‰ºÝ›Ž¦]6¡ƒáàâKè–ê­v(/Þ1=vóaɉc¼þµÉIQ2(\¤ž…ÉãÝ•ÎR¦ÒÖ¯²òÃ…ªæ1&öaëm¥,e@‚R¸\ÆíIJÁHu”…7A©_»6P>{Žb§ùɃ°0ÎüvŒÕö]^šz™îŽžGy ÈŽDcí¢Ž£‡„ç¹ . N&È=â ¢óüŽº*µmÏxAL\.÷:êºÔÒç±,¤Õ•¥‹hRz¸ivv”²³r^Ñ|p-öY”à,† F%$€_ÓÖÚ˜Žži¿–‰‹(õ-zå€Â£ZmõYoi¡;›è©vi—ƒR¬dSJýÀ‘H¯7q\§Ð3@ìˆeƒóß§ýÜdE˜b¬\A=X6¡Ê®È ÕrŠšC»Üj¢^’.#³-g§¹ ªl±[VKêÛ ½¨ÒÕ3Ï÷œEhËZäåÞÃT™¯À£w°ü®ðnÏé¦ëPÛBP×äf~[óãq^8„µ|ø.†ßà]½½àRÿâ½Kñoê=¸ä°ï ½ý§¥Ÿ~‚-ìùeùŸ^kwJyùÎ/ûÁ;"ãh½Ú?-æ}d¨|÷ÎáÁµ¨6ZM]Ú’+£<'q›§»å‹$PÌç¿&‡¦M;uYüŒñódæ>J‰ôFÂul“‰¥†Ÿò{•F7C·Dµ·bØUõ.q\jÓt³X¶¹I@›‰Y†g»"Y7@+I£K¾·»ÇÞcqøA”yQöàJš'dWœ–Cßʼn“HbÈ ¼Ôg+Ö ÐWŒºŸ'FÙ«7¦‹æp®«Kª@·{0ã¹Y€zÅ•ŸÖûÊwñdÖDÆ´üÕ‘i.¾:ß#‰-6™klÉY![ãÆ÷Sø's‰85Hâï`Ø8Þ©+¢œ€w09xå¨ÃíæÝѧýÚ!²rüN~ÚäL'gPáØRãÂÅ .gºX!Òàeç¶Ià{ôî¦Ny¯²m% GÛ= ä:lÇYîÌOòEÚÔ÷¢&ßš>uÁÓǯ½h:\9ß´™Âæš—9ha·J´PX¨š¢½0Au}¤¦ƒC3á‚(×ç!†¦ã5ÞŸë fBß÷ºöWs,Bc#ÞH´¾fã˸k™ý‰p!M­hÇV+Ürpè<ö\wÚ=ø]”MW [;@ øín2´7IÑ&¾{a¨jrr]—˜„(q%3áâJ`â§k1¾€Cr5¢ãžíäXõÊ]67­“+ÕËfjI}¢(:±S ½sõxMÛi`W ƒf§¶-wPœ¥‹v˜*×–c° 1UmN#Ÿþ9Œ†?7©³ ¬¦£xÏšôý 4oDÎBÎì.Tö&òðà‚žM0éóÈìûïv‹ gq™le#»…ížáóÔ!Ûôìð†ÐjÐwü(¡A]‹N¬æy—òÕ¤J z‹ké.QPÙbˆþ2Q J&#³éï4V;òÁ½Ýå‹ÝÕµÅ`&UîU_îñ%³$A_Êk‚ž^50+åR঴ÐåH4õHEŸ Q•á2´Ã•Ε})qhöGUÀq±™ŒÎä^AW¹ô_—^×>ve©Ž´QïcyïF.<Ð õJ¬ O¡ëÈÎEÞJ7ô7‚>íôb}MÃ\ä7ò»B>²V{Úæ3>Cõ2˜…? ºw¡NXÕÃÉ»Ø2=l^'H¬êÝ$Q°‹ý~ѻ汾 Uõlªx8wN’®Î ÍXçóg3V–ƒš³Çˆ…AM &±j ^ òu0ÉScâá°Ã1Jˆ:îÙ]. XÇm ‰êS*HÓ$¦+7Ûð‡[O”Õ¥IcciG„R;æ1^Tm|ÁßÚL^òœžÛ’áôŽ|ÄAÄîÇd!þ k’c¯¨P²÷ñU‘«œ×ÑÅÞ°¥Q8 ø³Xl\fâf«®ÂÛÝ´oPø‰Í!¯;¦{SÖݬÐó+í ýÙÆ¼ ¥½T°éj¢£ OqÄòúP\Ð]¸JjGG»´©Ý7Œfw¬=@|²EïÔJóг%b*:WyC7>È’(6Ͳ\'pc‹Õ”‰¼f  wq½=YÍ–iW‰\·HÕĉñ¥!ŽR tf+ç-Vî °‹ÜV*Ø|±—Šr!@wª¬Jš‰_AÍB¬|§°xö m,¼c±¡T­”SnPa èu;CÞÈÑÊÔNî(nÚ)T€§ƒ¨ƒ†GfkzzBŠ jN +V¡w›lj’ë ˜ÉõùúÐmŠqåóaB·åë4Äèêp¥‚çEöPƒŸÈGsªæÖqècvy«(F×ve‚\ ÑÔm ÔTi¤ ¨Ý"à68åggA§‚Ø©çBáí¿D^Êâ}Qp'‚ãW$Ôâ—„dÕ¸L~UõSsWǨɴu§èx¼>³I1¨9l&úÅy" ÷±BTuÃáª6÷]¼’GDêܭѹnZè‹Á0­—o4EªºXÚ§2“iñ’’nJ9H5Å5Å~ÔèéU¶1%­RQ%ë$nY§¬”s™’^¿Üt\¹h¹ÿ£¡ÊŠ/’£s­´QŠ+è•+%ß )IN ©š ‚î¾ã{%:ŸáŠpä*påá|›î¸=÷ã)îëú梾4—¢žNØ<Бù”{ðmšpºÑÇ>Pè öŸÕ£(ûò{<ÚJƒ§Ë=‹/c¡7»s _ù‰Þf¡ó¦øVyÓÔ°ƒæŒ™C04ôQ…‹KF¡ñà€Œ®—`V?Œà®Ÿ?/Ò¤$,éXÐÇ(N½ØU÷2H›¯lжí/=EAT‡(ÙÓLiž©ï—ʦÓFýqpÕÃlƒa<5BdKm¬”ÍLêT!©8X VT@Íá!ßËlšUòZ‚àa¥u¤ÎŠäR7÷s“hº™Å'¤d~`Ã>êÁpDøˆbiä…U…æ7UÓ8!W3øÍôjõú]W›%ÂOñ)ÕÜɃ•½óœ-×`&G‰°°p Ž<LJµÊ­ý6×|MñLl`Nf°3}"wz¸dåê‹|^ó;_Ý1UÚ„"-B*¾ÌcçŽõêç¢o˜N03®’VÖ\±SÎðGH¯ êF´·eM—j+PŽ\·yîTRäõ¡ë6Þ”:v(íõŸuVP4Q<¼ÁCvvgG7(n%`ÈЦd'nåuSÑÚ v@ÈìL3Ê ¬b¥»õAM…ìWxÊ…oÏÔ'©’‚½ÇÁü‹(u ß`é ¡;a\Ø¡Ù#S6~@ _]µ‚ør™q°Fà˜ hÀ_·FTP\nó~¦ÞÒh)…ÀÊ»ÝJ™Tבlm¶šd¯ŠŠ64nušÓŠB|}WW´¬$Œñ‡• Ìt“½PÑ”HªF5XÊ54ªê¡™ñ:ÑL¡q RbáÀ±Lïfœ1*Û¨fL®oˆ’9nÁ¦†ŒŸË‹Pkg##ö>…Vó œëÈ5_./ _PCzê¼0dÍ™MªA;Ó“ÔÜ é¨&ÙKMåÞÉ úºÀQóGT]þÂn2Ð3ºæ°ØÊL9Sⵃ4›ªPdBï”-²tYþл±êþz Ïà-2õ¤ÏLK餻è Ù”MU,‘Õ¼DõnÆWáÃÌKÑgâMd&óXi„Q|,øÃÉCxQu…>÷¬”)l=ÁQ+)æ-ÏD1ú˱K@Š[G!¿F/êzDûZ/D_£ãè¾l!-pQ* þ¤fY£ëHÍ´(R}ΘÑ-¯ÝÃK$5xQ¶2=F*cÁCÊýÚqÕHIkb´Ï¨Æ^ÜÖjLݯ}çábµBD1« àtèúkÿ©ƒ­â*Ìû.ÝÂNVÇb Ú´.µÏK«xö¤Ú”8 XZä\6ã:°K²¶µ›Ô‹±ÎÆ%úäPEý|¹4ô@¬L‚]ÄJÔ(¨VÒ«ÿ“Šß펄°ãÌÌh'k+Ò² #:;Š‚ì|kÕB»šcrÍøFج`§xwçBqœË¦€~ ç‰èWýËh]º#ŒÔyž?RY “ϯ¢:Ð*w 4“÷ªî{áÜ;¨óŒ'ßV ÕOvð‡;”¬eRQœÔO¨\ãÍ¡UèX»\ÀÏy=”£®nƒCèìk¼ÜÓÅíŸjþV%j¢Qö=ý+‘¨^:ÖÄqGa,/檤ÿ[IćdMx1A†hNm-¶!Œ“(êÙ§àjÿžûdug œâ˜NœZ`ªÕýhóræŽ|ÛŸ "Æ¿U—ÄBd¬!>¸xèýa“–ÝÂÔ¢:£Î¤`2½–T1㜦üiË·56‹ —å«l7âÒ7“@Ü NÛÓÊð1„5¦TǕԀ!Äd’I=Ñüᛲ€$ˆ2é]§ iúžøi…NêÒ,ã!ß 1Z;óÔ)ïÌËoÛ)rcpr™A²ã⬓⬓p^ÌT¢ÊJ˵ ^Ý.RGY¢i—ÄÇoX\Éâª)p’kmÔIí½ü$×ödÚÐ7×o(ß^d¿ ÐäÐÚw¾<'j4ï DÄëè ¯¹¨‘³yøèQ×Tî@zí[@ø42.©‹Uá¶­õ-©îiÖ ^ EW–¶kLrÔF5î´&¤(tŸ1 PB)y"w^%1!¸+´×¾–—MQ¢±C‹Ú¬ö›óµî((7¾Å¢ƒ_(‚^SÃÉóvDQ}û·Ù¿G&_KЬ'^®õ—=u÷x{˜) Ñ–—¶7Ž4iº6™’=L†¼]Æ‘” $Íœt·Æ3=ëÒ#©~iÌ›£îŽ»·¬tÞ°’G]~Á÷±,‡hTp®+SªáÒ%AÆ ’×%CdéÀ¬ “æzƪ̤Ç𘽓B·Ùný€P'Õì :my96fû _ .:Mï{Â<*L§mKK‡la%·fü ¹@éà‚Ë Õ#;­ ‘&- ù’î™;/Óoâ‚mò«JBç[Xr®…sX´ˆ·a®Œc•oI«ÉÙãzN4úéü›Ázy@3-gY(Ö­Nq±T õ OÖ¦ºîïù5Õ+¬0:1ƒ÷qÂó¦´¯¤ Ý<^[)=*,¡R|ÃÝÁ^³ªÿ ?:… ã+ãÍŸÀÔŽ|zmÑ«x{U§Þ•B9¤©„ûÓa0Ò‡e½Po Dá#ôNVý¢ïý~ø„t¶ yÀ/¡¸œŽ8ÂÚqÂèÞHýU9àŽn6þÚ‚år^·0qx‡Ïañ¿Þx\|‹Ñª N>®u;xU|Z¡vûj 8jÏ–ói d³ì%Ø)fÚ¸|ìc¼x†-¿¾²=Ãgí£íKpø@‘íøí "6hI—BÞŒ³_&ªƒÒ‚37ýØN–[hX/ZùI€Rwéåæ–£{*æƒ|óÚ˯OnæàÏÞi¢yk&Ñ õÊ "BÂ"O¨ÓWçv>P~G­^OA=ç 2#=—jažN1d…±(ɰg”¥Ö!qoÜAy+6Å Ÿâ(c“‹ÄZF†Y¬+\R´É<(Ë-ø³XF¿D9MÇ׺ݴR¾ZÐêå~²yàe×!9D|d/ ñ¦œ¾öv•ÕPÂ*×àRS·ˆ~Ì´pã2[}—’®-¤übwÊ”ýúöÐ3Õ)Ùn±-N6ÊFtøHnX+§£@+㵄o¨Œúƒ¢ÒózÑLªm{SšnŠ„§‚ÐßÅ}ÌøŒ|Q4‘^Ô°¢8©š,Η›Ìd.ʬY:¸¡Ùëœk>ÛperÈÙÚ#^Ž•bš…x¯¢ÿ»é$b¬êj:  Á¿øDO¯îEâ†NŒNô>…V%$î{À3cÄ”ªQrqd<. }·ˆ8¼RôvÈriì£ 9¤EIîOmò£Úcr5½XVÚŒõ™¼ TËt„y bµTÇéâ•áU½2Ž'Lô¯SuŸhG¹e7YõÑRñn;Eå—>¥¸8cAºÚYÅA¦úù1:&Á?εÍöÏB¬ø²÷TÀ^°8êümPÓ|Gg÷ŽÜ¦ŠÊTQ‹MišîOa=](t`¢x* BF=øOÁ²ÐñlZ.‹³Þ`õJ‚hMgpÄ—ª‘x¯ªµç-"WÔª·Ò¶êMÁ®Ù9¢úñaGur¼Îbxm®ŸS!*‰"°é3gé 0œV‹‰6'Í20^ð ‡SnB ú¯4ð¬š}÷çÏvÒxòrC@UÔ7ÓÇ•u¢æÅ(©Ê[aS¾×4ɤ­õ™è:‘ÈŒ0»Ñ¨O=òJ”i3üqY@äHV¤}'ePÖh͈Ø'…Í©vj=²ÛR¿9 )§iÐ3S²y¶Û/n8éQ5ÙNu(&áJh™_Ú¡º­e1yϾ?øòÅ) ,pƒ¾´À­°ÖáÑ[ þáÄ‚áÔÈú ȰáZÆ(>ê±§*Š…êóL¿ø«x¡NªþÁêÎ_@å/à+ :™}hKŽ]|-_Àð’á—•ƒ¯‹ÇÎHŸQõ–ÆwÀnúÂW¹ ÁS½ýò5%Éöä0èïxÞˆK×ÏA/`Áà£Âç^ /φÈVŠ8SÔ?û€›ßÃS„Ív>rÈ>8¨"x´‡À†°YÄÎPÄ„û¥­Ñ½Š…˜"¹|”r(QÅ,äv#éª÷]•‘wÈ>ûØ ðwfD<ªÁš•„¹k¦O¡Å.ÌÒÆü¤å›%ÛÑ;±ŠþF¡ÝÑñ”‡,I&ÌC^f;ðñå&ÿôŸ 98Þüâûz‘ûþ%[zŽ&·‡Åá=|¡6çíÐÿzãr{#ä] Õ•‹ BV¥Æ·KÕ£ä˜{Jr/‡cìñ<­•¼_¼a)äõþp-$ ÃA§ÆyÝ1¼q}Ç©…òœ¯e'»$GÕG7 ÕC€!CRÖe(œ×+]ÝgÊú¿"¤ A: ßD•3 ê)² I ¤Ó³çÍ­¯2Ý–-¿©ÍÒÉ¥°'Á:)Gý¥UOîUUöî;§ÈJ{ŒoyFœ|í°}¤Rưu–ÕVàH‡âðÇi¸²ŒÇQ6N¤×+H§ñ’ôÜ7è•­(ÞÈo’3…Ì]ôÑÉù†çvž\Iø¹êŒå™íø&ȉðÕ‹Wøêx^ÆÜ3¶ïØoø"vs)/âÒk™ñžRñÖÆ‘ØÂ<멼ÀÈÓò‚tØFE†¦í'çô [e™K=ZQÜ‹+Rýg¸éRÕÖhC O¦½ZÅâår2<ü¸=¡òž?ÉŽš¡}oÐAãù*rG¯ÞøÇùf–ÃYð…Œ ov*eÍ~ÝRÈ‚0Ö^ x1„Â8QkyP”€|µÖ]íT!ÎwÞWþb.Cc¢5ënH&2ÂX{gäÃ8ß³K¹[»3áPð‘>l#‹¬¾þõ` ²ûg:d€x(&sÎþ' ®B5„Ön¹ôT:Þy 0ª?øÃC‡ïÕ¬uÜ39fíÑŠÌ[ÄÀÅûfÊŽE ÈcPG6ßÿ7FuàòýcT'&߯Aûê1,º8¾„µöÒà ¬aœŠ?Å ÒËŽn±œKøüÉ8Cÿ GÌ0Ã2Nv«ðÇù&nE¬Ö÷2tLJ9¼A8¶Íã’¬•4 ÁQ-ø¬AÑMò,ùZ£†ÙpT;{«ùDY™kòkŸ ü•¨ñ:®©EÏ¡å -V’ûÍ,‡v­ë;·s JÃÃ'TƉFàøÖpoÓj Ô´¼¨çXåÍãiçÔ3?¤@¡¤@ÖïGÆƒä‘ õφnª“ŸêFÉÙ›ægªSCG"‡åÛºèZéˆg93­G'Z0³aÍ@ëÈDÄ—PЃÄ09rÖ?v:•s=èø¿;B9{Ô̯]ô;8àxŒ*ÃT.Ý3£iêñàA'RG&¾À/>Ô %ûŠæã¸£—:.€ÄŽ€/ð›ºäL|<£(]™€÷æ¤i†¹`{}¿ ýaøzÿ'€ý)þŠ‚ˆ³üØð_ÓÈÇšøx #î=6°æÉÙI©#_^þeÓýøóoÿ±ùåÇß¿oþóǯ¿ÿùÝ» <œ0óÿþÉÿ!Möý_ÿ×÷¿oîüøÏïüùþëœþøýÏ_ÿ¯ï¿Iÿýoüí—?¿ÿñÍŸÿþ·?7¿üíw(_åoà¿ýûwøÇ¿ýúýÏøùùûïßÿøÛŸ€øoüøí_1 ÿ7v„ú÷ÿgsû~Ÿêïðsÿęÿü÷ïüO«›Í§ÍýoB%~ÿŸíÿùýÏ¿ýo;õíßýóûÿlÿóo¿AUwò_7í÷ï›^|ÛüKlþíÇ›ß~üñ}óëïðŸ¿ýíÏ_üþò²¥CXø£?ŽåÂAÕ›œò\v›wÙÔøæÿ@5Úôo·Zˆ+zŠrå ¡åœxvˆz õþËæ?WU‹ÕâøL-lyl\­íVØ‘ºuÄQ\Èå­¤‡ u“‘û¶²ÊÐo_ÝB²÷ L7ÕeÚÔêåPÝ÷Ù—bÂ,‚ÏÔò&Ú´¿ºª™Òðg‚º.r  :R‡ù‰þûØOêáb¢²‘mÙByè©`»ÍÝåáå™Lá³Ç—cqAââŒßƒ¸¡<…É÷ñ =ôAÉcaÜ á#ýV0Rªmîê’ŠÙΡ˜äy9Äx ñ¨€µå œ•›§×¥d9H·U¦u—…ð 5lÃÿ¼¹ŠõÎÞ‡[)Ñàq¯Ÿéâ JÙýl?ëÏm`•ÎN¦sHà^ˆæQ%` ßò†üs¾ò¬1^ê—m1Ý#*f!ŸQÛ0 Ø:¹|ì V½¼ôjä«l0ΣÕÒô€¥džR¸;6ÍãfšJ4µ?ÁjxwJÑÓ`€?(OR«äÎUž²b[E»®Ø®öÉÔà ®ØØ8‚euFr;Ôì3äÃ%«¸×8kïL[Šgµ,GÁ>ÿ`?ƒT–ànqV+æÔ¹s:ÃIßýHèG×äRsWųã»Håø ³Ì}o0oÅí^b¾95y§%z9ÜI!å*wtW.tTîez7Üë³U]~†¥úö=³¾{}–x§‰Až‘4¡ gî O‘×,æ»öäÃ~“©û%lÎO€ðÈ6“\ÀöØ÷ü(>ü³ôdå1ìYuU·öŒÈ1Ę«êM'¯²Äˆq[b§À¥õ¢U‰ÑÖc®ÆØ‰Ö‡eÝÙ•õMwoËk’³* Nb¿:Žö,\ÿl𢆂0rÐ6Ê÷΂bWgëŒØ;™Æ2Ÿ~»Úñ BÇÃ5¾6,&ÆÇÜõý½Cg ðËÎoXÚÔ’>/aXWv×Z_ܦœ{}i])ڶ݇®ø# ÷#á²òèßr–Á\M‘ƒûçL¶)^łԻPaØï=Rh¬EŽ·çÑ#Ñ¢Æ[™x8È'«N·¯#„½Ç(#ÜdÚ©öø2y»cguwÁ2н!‹˜u6–¦º?Qç$ì‰c®‚óªÐãjÛÈ®n6Cò½.!õ&;‰ÕOÛÛâV6¥qµ=ÎIÑ´”1,Ê‘úuW>å·‡᚟¯Ú‰îMÊ+R!{vîaÓnæåÁ®žQ Ê%‡½K†T¯¹­øêÒ›x}À‚q{ƒ{úí–ŒÃÁ¬£È?Ñy€qÆÃd¨ŸÃA®shô{ºIdžnaì¶ë€ÛÃ"Î87L€¶G 9õ`§¢Ð¨dN]÷ãt²kHâ)ÑIìbpРF„R'l“ùÎx~°Dw *¦Î†jwzƒÖ‡ÏèfWÝb°Ä4cÜßÄ¥íaM*"mñŠÄµáÀkhªàWpƒqÎaÑ™CÏ¿‰,Ãy+÷Ïo«ãZƒ\¿ÇQ)j:È#!±;Þ´L/+¢O~-™îªN¨scÓ/åíÞ=6¸¹¡ƒ´útN “ñn¡iZÈŸšbLÊ ßGBµ^mîkÆ%kþÊÊijçþ©-¿u’ÆÌ9Ç}_ “=§ËY>µo'± 8mŽîÁÆ× K2ë,ͧñ³©à:èøVóÉÏ‹B[Ľ@ÒÀM:-A&©¹ 0!tÜÑ!ÙŽf¢&L"; i`¤1„3aÍ`:­?ò[ŽÚ&Žðv‰BŒV†DZÌ.…Æ=Û£àÕ¬c|²ë8yÇüüðµÕoB¼ö€+pq;*¯ONa ‰ÈËk9A©<@í†iÍâ++Б:©nT—Ú˜ ó¿ßÑéêöè‘ÇÐRÍ÷Ú¿¾ÔP+”cŽèf{ÌÙ­H-8'…3ëIJ­¡U«£XÒfö ŠMs ŒE¿ü8Ž‹.¢L ÚéÕPqXȬ ~æ”…È1’ÄX‡.ÏÜTÓ ¢U'*º»ÜÆ›): HÍM©GJ» ØÐÉ@q"ÆWðËò´ÜÏÄ$Ö#[[I™8c\@z¦?4bK«ÃÐ9V¯Gß!rGú¹ÃªŒ ¢×U÷]àá3GzîÊ*6$ =ÕÒséµÔª1`8*Ù#vüߪd‰'ªžgOß;ª7†S·z¸’_û ×’xG<¹çµîÓ#«*ÓâÁBý•^R©hHTUeÀçìÉ‘RäÃÃäÒfÌ9ã­£f¬­"°Â¯G ì•ü†š˜ ëï³°·9=Ânc:ŽùC ë袘“¨I2LÖ2‰‰h%]J’l©é8¦RNÿyyã`„¢% Ñ‹§¢ÌXZÛãƒÃ¯SÕ¢y7ÐÞaÂuɰ»µ·å^r¤½S7§ì»ÞÉ(¹Œ±–yI©¡•,}î8IM'•©q7‹%{@¨d†'KO¬>¡4û¼ÀæK<$œGex’?¶9“¯Âp±ü Œ¬nÐÏnäy÷é9¤ˆgÈYa³RfO瀅§d§“³ÓŒJŽÒý‘žmÂ#C.¡êT…íĵs{âõêé!€Ex_6”¶Õ$tã´X„W"$^Oœ*-¤a[,kAIòÌ.fŒú¸…%Ïla&ÍûWBËmêß¿Fbkób’i碛ªSê9Xݱ˜= ©½Ð#Aó›¢=eôÀÉ,4qeš¤g;ä!k'vúÌhÍàaûK}v8f¼¨ mˆ2ßõÛ/½è7zxh F›»SÆ„8&{Ó0óŠx‹ØO¼¬=˜Z”‡g9ÂõHÒ¢)ý;™‡®^&SEмæÏ¯§=lÑ703mؽè„ú”{zéS19‹ ×Rœññ;³~ Wêvø õ™‡8ØÈ 2† ^\²1ð`QŒ$Ð'+üú/«Ï}së/Ÿ(eâ²Á­±$_ÞZ%"è3úI:íŒ_[ïó\`ˆ×0Ï[£Ô÷†œ-ÿ¦hSª VØ. (¹¡_´)Up3 ·FQ%·"òo6åi)ò€ÀÐ’ðë1–eêveÐ0VÑ(Dü¥˜ î•ÃWýœgfàZN¡=³›ü5ìÁ‚Ô@±¢N¤Ö>Ê¥ãF*H»'g‘¹“²ÉÈ»¼~ý·‰µÁ¿Ö.*èÊ^ìñC‡Ó¸ôŒiN·sÖ•*ŽÀ\¿=ÕϯO XÚjn$hEºÅIšú4ŠÈÆ“6rqJ¯RŸN±ªm Ô*RÒ*RÙ[p°î‹&â”>%Æëý>ÈñéSr¼N8 ò)Ý,¤Ž›…ñ`} µ—½E*®^)‰Ú©CÔí¿–´=¨ Ûéî@ÀžC#¶ª’&ØÑÐù.ØšÖöÄQ RJRsº"5Oã>-/š-5§d¯•:>ñÌÞµ Þjè†!Ýÿ“Lü}8™ïõõ KuJ¶Ï©O~íúèÇJŽYÓšétEv³ÇÕÇ;ªâQzÀ0Vp=iXÂãg6ž‹±'ô£ÑNÌ8ºIŸ²ï2p,zê´û.ƒ^ ë«'ÏK?ÉÞéŠ}×H;¯×Vо`“ž®ˆá½\ Òt%Q<õ]K,¡ê-Út)‘º¯T°V“ð¾l(ã¤t‰®\"Ø]´£åø©+cðÆMà©“æ] yæ8g$¶tÒ§\0Ä8¦ô†,uØrýbõ±ÓÌýçÚ/R÷_½pŽÓEºbÆÑJ¶^Ä¿$8§)ÿ&ŃY³u)Azv0Rô‹%`ØÄ2bfÞGÝ¢’Æ.6&.¶±,#HÏK“p1?Œ­g1Uðâ;¥kŽtåšÃ±2áväZ´pÕ¢KŽtå’ÃÃW/wª"hGZQ)F}K2Ó†=)'¡+÷8¢°÷‚/eñ*nýµ|ØÛAYqä ò3·Ýæ.åP6 †zÙfô1ÛúM ´‡Q>P|«e~¨ï‘]d+×#¼KZÓ>™Ñ[—̧֜tXÖN‡_nœi:ÙŠ¦³@ *.>é;Yä~·¶ ¸šëè(ø—ðëñ«°ìÙéuX"šaÉYŽúÄ»NùXÒ3;›=†ÓÞ–‘†“­ØNÍä–’Ãf ž“‘ž“­\)°ä½Vß½2Òv2ßÕ‚«ÚÒO|@:Oæ»bpÁÖ.XœgO]5,¦Ó0À»gŒŸ|ˆï²‰.²=MG‡‹)ç\I‹6—Íáñ!ëŠ+uöÔåÅ aetí­\;,gíà7°,} Ö”§lEyò2Üu…!U1Ä+*Ô £oYvªÚ´²#ñâÑs(}p[U¹Ç {ý)íª-+t÷Àí¤]e+Ú•A?.측þÛiFVvr²*y#©GVx:C·“{JÐudâ~Ø…¯Nmêë]Üòêpq@^¾ÆÆ‚’ˆ bEØiß³PZôWpyÅQJ3£?³Ð;êxPH¥ÈRÏbp\ÔñÕQ·|F}æªÉ×OWqé5-¼wØiÕ©õµU^ŧ;ð´V5-½tÂ7Ùð ”×fžM‰/èí-7eë)L}rZaÏ(X®j@1ÕÚsõ³µ> ¨“¯ƒpÒ‚\*‘…DîlEäž8@¹·ž1&cXÇrêt‡ë{©°ûaµ ÃWZC$úK·%ËÇ.&·/%,ˆ° ¥t YâÃKY/™itš“ËÒü蜋ÁnF³o¼õæ6_d {˦ÁIáó6?˜¨®I*2 Ž©Çbä¾gë5yÂ/çúÑ £Y¡¸˜Ó~™û‹ÛC|MKÅ^V›A=O|GŽésßeá~+‰÷Rô§käL¥niÑc>âã½A~rV[97QúäK]¢»#OIÓ7:{‘i^îÞ¥ öZ@Œ¶ÈÍËo2û”×ÍLÇ󧮤æu½ÎÃR—Ý@E÷% ˜`Á6ôãâY NFm^YI¢¬0!,¿µñH¨q\‡ž©„j^$†²ÝòêÉ|2º$.YÈëêÕN¦3¸%±DÚªãaÿ[¡ÕGib“U€ó¸Ó[Tȸ=ÚUÈ£Ñh¯•ZÕ-h]€CÃè8ˆ·‡1­«¶®¹iÇ%[f¢Zƒæ¿h¨Þj\=bÌjIo«%TÒ3îi-ž>7R’ïh–ìüþHnTi´áÛ=¡íýº¢UòÃb¥i§©w Pž)=“oº#`çŠvƒà1á—´< Woª‚ŠðØæï]s«+eṲ̈' u¸DÔƒß&ÍÅEõÄI•‡×毮È0‡gìãí!>‹7X[Y‘·¡uæà±eˆØþÖ€d?WyÐ`'×>¸Èͽ¨±°=æ÷t`ÕøM¶ð§ÚÜßê®cØtùÕýšw¤y[jÞ‘mÞOo¥ãlü§=–J¼p\¹5[ … WUËv.¿:ÔP”áwåboÙгLÄ€ÄïdxÎ^l$²ø‘†ÏH†týe³€Ë*n3§tâÀ§Þk8¦¡L«4‚ETE;óË9ÄÊÃöǪý~[I'Àtõïø §Ð‹,‡˜–—QU#ÖVKÄ~¡Å¥”“Ö}•–WõE„%ê†9 Þ3ºˆQ+dš'ÚüNÏm¥Ô2n?Õ2†MõD;ÇiåZ¯à¥·®T5 xá³„Ì 6ÿô3ƒ²D(BPÃù×ïSØ¢³¬›3¶Ÿÿ:òŠÛï‹c3Ør@öl¾³Øgì„­îà÷g;áÌ÷Á» ¨šîW!¶šç3[ÏüõÜg„éqr¡s¹^uöwÕNjXû‰ÈB*ˆx ñ>§ªÑ¬dBRrì°Ò”láQ*üº#Âà“¬eW´ ¿w‰œ›ƒ_¨ÿI0ð†˜ÄHŠ…ÄR{$a'Ý^,§ÁÌ=!Ru03– Ô0DÞ¡@ppžš0äf**AQfTË´Å;/&5MS’ñ'°9‚»-·>‚# þÏÔ˜ôä*ÒK^×Ýæ Ðcªºû±4…˜¯ÏÅl÷…£V|þl¤Ý1 Ðh¼ž3GX2š¾2ÇõðS𳖙߭üƒCήÕ ÓEQ‰êóÃV%&ò 3¤nÆÀ¢€EMλ!Ý—õ¸XõÊQ]p Ú‹ì@"jÓ—àHRÏhÉimÖ‰³¸Ögã5½‘‚º%…Y‚_¿eÑHhꎩºÕ'@ùîÑæ÷¸é]Üúì^gHŒ xŒ< ;-6XT¢é5Hz}U×F éœøÈ›¯Ìá*B³…Ljˆ¾—´cGZ»‰tˆyÜûÇ.é‹2ÓFÎø7µjO­Ú¯8´%2³M‹4lImGÏ]\ ¸ Õ›09ÊHÂ]çHg;Ç•³›òÊ áštÊ‹(Ê)©akϸfÊFŠâÖ_ÆŠ¨;Ͼ¿ˆ«ý¹ê¨6(¬ù˜—Óµ¤Fëû*ÔÕ¨8k鉠Xt‰sô9'˜Tgø*/›®®‘ò‡ ¥x|Af¹HÿÌQ‰NßAµñ‚68JšÒ6¤HLZŠ’Øâ-ÞaÅ[¿{רä5E§Ï1Fè«hJ%E¶ò*Ó¶S’ ×?£ ´Xê3×áòºo ƒõŽhóIÙ„f“Y©C¯„„ÈûçUºç^GœWÛEZZ”€·óùäùmÑÞñ½OÕ*€×Îã‘ÖìkyKŸF UïÏŸUÞÈÄx~¢Ùy =þ…#sX>G,SÒ8…¡yÞÝî4TD–EÞ‘ðüV—x \h'Bó<]žÚº°yLM^dáÉ)¢~äEùit-÷2ãêÉÕ™@Ÿ¹ c¨'fA#yd‡[¯Ž¯×•0©#XÂXÉ—;¬Õy‚¤ $ñ –ó¾ ¡¬fƒP"3LBµµÑœèÌùÄ_íªéAîða·a¬g¤à­ÉéHH>¿ß{i¼kcR€H›ÀI8Ÿ}ì`bTòM¡öhÂÐULŘFQõDKωa;5è†%ý'Ư“.úwÓíý§Š¡‹–ÓŠí®Nn„Ì]¤ÖyÖàj\ƒJÓ<ºm´.ŠÀ}œŠ.5’þ 嵯ÐÛi¸Ž‹àHhþ5g¢´µÍer˜'Âäm¥~ñ`J³FL_HÀ)ðC,°ÏhÝ{'‹“àƒ=Þi‡QÄãœÑ3f«%±î@d wÛi‰ýSV†~ +=ç2ºbÈ ¯¸02FÂ8UÌ J”@ZÇÙv XÑÃsÎötôV\êIŸ±,œH·@üœƒÌ%1¶4?qÀmFø¬†Â¿òåëÜ´4ÏDè=A{Þ_Ä {õ’›Çëœ/tŽ™“¬e÷Wz§hŒzê| Ùý¥Çbhá~ƒ}úq -ÞõA}UÃN±á×o³ï¹át!û«TË„ïìÎÍ 7!$îH‚&†ðŸÕ[ÔãûÏ0´Àk¢¢#!ré ¿~oå ¾º·µ´:Èâp>»~˜h ¿Vê°> !ZH÷¡åÎ`»Ñ!.¸ŒµCΒϨkŠJ-ýõí^"ÝS±X‰Î|•Hâ2þâfVÔmÊ»¸Àÿ‘b½%TÕ#~“ÞiÉÀÕˆöT[›ŸZ‘?ãÑrANÃRgÂTø{I¹ÉÑž£¹&Y_QHõ•Åê8‡rZ³V<†(j\ƒkZG4\,*ŒÃ òXJÒjº¥C|»x•w¼]ÑM˜i¸# Ïo<ñ'¼*Ïz·—†)âúl*f\ëZ%ZBJQ]#Ïõr8aZäÕ£¬>eµ ýBâzJ2jê{080ÈÕ©Ê!§¬AJ6éÊC´Ð8£Õ“Ô‚“î2Âò,Š‘=Ö]·ì ï›R–Òa Å“¢¼˜A¬Ä¡nd"œϽI8˜H5K;­†Ù‘cBã£Q=ÅÃ…‰òÖC;{h×Yƒƒ•„–”¤©Ôá)ä/Ã]}úhÊ+>i3”¦†µxÏø/º/ØtÒÒÓäIú['^›þZz 8?B+û4!>àãT,-äXò™ ú”N±ÓÌ㥜\Òñ7,Æøð†YK¼ƒžA0ÍhKç3?²%R”ÊC|éõï[™¡<½Á»š²3 hʳúƽ•MiXâ P¼|FÕpÑ\£y*ÅR‹<àG£EÓ`»Fž¨úLÀDnÇEyÅ‚NT?þ¬6ûL­:@­1^ªYÜôÅ+jÃf‘ÏìÇ`W6 X#! s)¿×MÏg5ÂB~+éÅ<ÙÌÞRµOšºxa/š¬Ó»ê4æhCÑ!Uä{ª¨ÿI¥V î–®ûϼg¤4} ºò¢,$S2Ns¿˜fp>v˜:Õ’Õù›–‹ÐÏ\ßkµ0X>z È£oñâƒZÉ« ž¼b9­¤ãr#´5–ý@ f$Ld~©ý ‰LNÌ÷EZçFÊ Š/mÚ”÷Î\ÍÉD&#­?sldÖ$æ±'WA‹ä®oPN¡";úÞà¸GM‚ϵ²#ÎúÌaý—ÁJÄs¾yfë(ß 5ÑÙ55Ï5žóf'ê ÇNƒý—ý­°‡†‹ë^óßWMrØdî›ë8¹Ã¹ÚÔ«d’ÉÉ4¬ MýVHÐRñ]BV¿UZÒp¾,‰ksÇ댿Àì:ÆcÚ»çÐcXàpÂ<0—ѳ÷¶„EL}›‰¶T›ú[ Í&GHðë7ýW¨Vé.þw9ïûpQºÈÌ>ð¦ŽL³ÆÍÈ(Úø¤¾•iã,xG-w<›ó¶ÜÀõµÜ_sÞù‚ªßòÞÙñîÏæÂï²)Û{}“U‰uð…¤žorm[Â#œçìûgáÔ[4tDà§ž™þð8¨fç!ÿ/ƒIÖÏàjÝëàIyw¨iyÂßäÿe¸ÉghUÓ˜€ŠÜ볤«AW42¬À’ ª”¨J¼`Gœy\­Ò²ìÕKû¸©[³¾÷çæp/héÉ_îp±7i&ž…xîÉÞœˆœ}™R_¦?Ý—óú¶Ú“ó§v_®”óVâªð[xYOш´x°mŸ?B[HŒÆÔʨá™SÓÖWìzËço‡BÉ€ª®>Ñi^óù³–¬’/ÊžpÛð¤¤éJz8úž…ùÞ£’ÝGíg6Àp€Ð±v—Û:kæ9¹q|ž¤žÄ©yB‡¿ ’…5Å€W0Ä$}óù”’Q)™Çö%2,dÞm Çï5>ÀUŠßœ‹ïÈ”~Ðú­÷ÈcT-xMžžqöXMþý£ªf¨WspQ¸iëk™õ­ -z]ÉOÙ^Æ"‚­çºrÚ‡”Vú©íš>gIŠäϸ×À1å§}©`ŒÂ p.Úê–H;¼Ò3ÆP|Wª^!¹GQl'ŽU…Žtw¤;Qå=Rõþ¯ŽbïŸ?ó°¡ÏO³¿9ïHîs–;’×…23Âï}zòø=½þdiøT`èéØv/òúZ*Ç“Ÿ?³PÈB¡Gj'÷mWÞè,jxÊ t¸b‘gW:XL$-&ª%ÚŠçA04DÀ žgð¯n®†Ï+ìÔe…'mÃ{&X.RœzQJE{˜w6#©zßKÝa)vÔ$þ2ÄÁ HŒ¾˜ÌÆòUñ_°ŒgÄ×ápBQå@…¯ZÀwjŽï¹é¡USßÐKM“ :ŒÀ7EfRGÕê¾Á@Ñ`~=|Ú “/W<¶+`7ldÆžÙL"£ÆÔ¯¼'õ}gÔ–ßp³’xiy³Û¡®µ‡îÃôè’*aÍG‰ö*ðÅO§ Ú¸ý½÷cSؾaP€ÓcJ%yöËòÌi,ç X€t ,ó‘ãà§UbWû&Zu2Ž›Ø½#/dÐsÀê©L¨þ½Ñ8…B«ÓÆ´-d9aœWßEu™ÊÄÕ']¹½Kž¶ßªœÅ+«½—MÙÁ®}³…Pê]çù#_ómKêBZº¹8›e|òÒÉr˜…Oºá²Þòh7\FºàПrÁeúÞ¨þ§p™U“QÛî[Ó=yFovçB¿l_¤ÁŽ1DfrTg2ê)íé¡núÊwÍ/K˜=g'=BΗé£öÅÔBO´£õžt­yŸ:è'ÌŠŸõÕ¶,hÛbç¡Ýüþ¬ÿ$ŠéÉ%#fBõL~¶žï¼C¡÷w¤zþ´Ÿ§4å݃A:¢¦TÓ•IŒ'¯ïsŒØ1¥šòÆÛ>T<æ…0I=ÊÜÞŸ˜ßxÌo “êé‹NÊ»Sâ1Ï„)©žžÈÐ쫯ÄPãìܲÆ[eRž7¾}‰¶[ŸÆ1Ný2“¸]Ü ¼¾ m¦‚OJÿÁ ¤×ºÅÚôžµ”d›„ƒG@Ÿ?Ã/oB"ÌàïäS[¤’I € ‚ôw×kt™ê:¿ÛûüYÏ”꧃c̱ѡ¤"ü¡Ÿ‚ØYWI.ĵ"†ÌávÕÈüˆz…7tRrÐþ¯sLÍ †rkäß“)tg>€$CÜkŽÅÄT {­8y3Zts‡$ËÔ¢lº‚úî#F–œ*èåMŸ1¾²íG‚õ›g×A]PQqÆ~1¤Qt Äf\§0Tüú·Ï3÷‚{€ôi‚|­K4¤hѶh$ßçÈæÓ‚+’PEØs¢öÿ7Tä©â¦ÐŒ åWÊQ,Ÿ`ÌaÔºu€^ óéŸïJV¿€èÓ”@,hÈžLqÈOÛ¹CCng¼âš”{8ø>T(oe–©)Œ¤)ÕÆÓS7<÷†ÌÀ#äì¸ü™Ž›PÆŽ»Ô´2À÷EQÀ¯aS@‰¤¾×·:ŸÜe÷ÙIU`´`±ÛÍÂi7-ˆ£9êàbÕLf\€²^8L~ ;é¢zý²~¢´œÐÎeGÇ€<—\ú%›¨ÜÀv¨¦ì\¦èmoÂ¥áËeÓWj÷ž–¼OŠšÏCÌ—Y*ˆ-ï| áÃ`K'Ã<‘?ÊYJ‘/öŒÌ ½õHu€Šìœ1_>‚ùE'KÊÎ,üñh^ÄE9±Ëݺώœ´“Ó„Ü*ÌÿècBñ[ŠêTj{}ÐZL¸)ã‹„vî©Ã[—×ðjç«Ðû®ô„êüϸD6È”÷Lt(äU#ð3¬YjV£WO1V†%¾ÔT™ÐVâ`½Z!ç“`ô‚P<1`C¶N7aw%g5`î¨fd?vÐìt­S…wy»>„ËJw­nuU«¸âXÞá/ë¶à}믰ìj ÏhÇŒÿú~“ÐwØhþ˜kzèìÖúK# GT›’×îâÞA±¤gŽº˜†åä6ë c÷°doNËé´©[:æ„2N)•á?ìsÚŢɆƒ|ç7m+û~,MRiG·^Í OמÐÌpšê;Ïû #½G¼õsÄo|â¡ýûR Ƭ…_ÞÉËLÏ5²[mãÔ碾VNUò †#ÖÜHÒ.õW˜­Õlåvýå ¤²}Gô¿N›AÒäì¡BÅgÒÑ,=¶L×Äò[z7MÇ0ÄbùàäÄ©NS>yÆsÔ1| Þ¨°'îi ì3øª\™HvÝ{ì *"Ž| 65•xÃÒ¬¿±õ™ß¬ê?cZŠ=ºx‘` UÔtÍŸ X¯×š­ï•³1%ŠD^©Üg¤Xóþ ¬¦qC¹[ñ’^S÷6ru­Éd›¢Uö¡lnðýèô:_†rI˜9òá½§#q¶\WfŠïùZÕˆùTàûE­ÈéjG•:R¥<¬w|¥0œ6—;<Â>ãØjY¯Éé  4óN § ®©£bT¯Æ ô»•0¨M‰®,äpOØ~W.{ŒwÒ€úÌÛ@M-Æ‘3"Wè» /ègž!)æRL¾¨ï…8·ŸîÆk_;M={.M—œ¬Â¯ßýb+úF´Eדc û¬œñ5@âbû|go àY ^&‚ƈè9[Ä©óÕ4iñýðZˆ¦7ÐM§™­ ð»æ^¶xðm`¥›ÝL"B¼âPƒ0<ØÉJ%aºåyò¯=œ‘¯xL4¦‚Ï~0ºŠ&ŸPíܱû¸†Zlúö.RÒ“æžøüÙþHË4 ô݌۫†…{F9#Æ Rðë¹Ó Ú~EzSߌÊìø@¼g4}Vç+ '÷³ð»â(›¢^ÍÁ±ÕÀŸÐNQœF?½|"Õ–; רSx 4ÏM™Ž¦Ú†ïݦ¤á1åõ!6÷k}/€ßÉ««8íü7ÿüBþýæ š)À§n•'> Âän} 3ÝJ ‰Ö*Ð&ÆD€_¿ûž¼˜p‡@ât ¦òëTS™Ðb]y‘}÷éVJTðìܽ¡–mÕr+l0Džx•wUt&æB‹Ú¹ÃPå4£|"Àr¨f¨ëÕ×4ò,ïa} `˜j®~)˜æAб:üzÜâË󫆚½@Ós!"Ï$ —hõL€b%ð2~=&ú%ZUCoêðëWSÆ¿ïcl¬½c÷¡•<üú•?Žúê@}CTÒ´„;¡Õ†Rž˜ã«qÿ¾ÀóMScG•ò\»Å\¥Ò‚«UÛ"â3º©»V7„ð9ùeä±§Î^qE”ÚÎmS˧­$… Ç ÀxUjMé!¤0Œ~ÈÉ‘ž;ôw,°µÄ ºG%£³¶ßôÚÖg2ó ”ãS¡9Llø˜æÔñ/ªÆftzØv„x†³ ˆyqUáäÞòìÅáö$H‡‹ùMN°Ép_KÙMK7zsÕI$Ïú'êÑ¡9úž7þ° Õb*pt0x,ü®…á3K­ƒú†H´vú̓Ò\ Q/ Éï÷ßì…­BìjRûhCäåT#€„Þ)`¨¢Jo•³¬Ø@xÓ°kÌr#/÷T@Ü%mÕKóô™×—KòPEê{é.»%FdxN/÷<‹±Ÿ²à…¯86Æ6Ìp!®·×'’¢…' 'jô7);YBrr–‰÷L2(ˈúÔ²¥“ë§(ðÈ”êåW‘\}oUÎמ˜‘—ª' È á…Çéœ?à „¨¾`½r’Ì|—rv½& 4)îJÍÈÓøì­n2û,ïâ®¶NÇË"æÆ„l ¿þÍwiÛßuEÏÙüw4C“í‰P=‹še<*¤#j@uuGhq¡¾ó ïˆIv` eâDâ|EBu cÂýÙ§ Ó=I“ÎG´ëѽ"sa›ˆ¦™P1<†‹S ß3ã%2ºl{Øw¸_u-< »ÜÝK0h3w,á©s×2>`¨–~?ã.Œ‡ôVÍÊU!‹¡ÕŠŽ´ÞñÛøjEJoU+tU.oÒ?³Y\ûÛ¦| ¼öœ isK¼÷ÕHMgTÉÚ•NmO-3”¢J勉£pÝ‹‚ôµwCÓË21]LiEY¼dDŽݯ÷èªe ýݪ®êOYOs:™Þ’€›&ˆ›{"¯Í÷ha¬è«RöÕ§~¯3ú”{ÇëŒ{ñ©Ã¿]ñ’ÓÝX.œ±ç>¢ÃA¶§õí«]R^Ëî±™ÍÛ„÷ €ÉÅ‘JâOƒ©ã·k%„ÿ‹ìô’S™Ü%`Œ^€Œ¥{4ÐÉmëÃ1£í7ˆ7ðø­ƒåQ4è H, uS¡§Bßßdåø„ûé)ŽLù6?AÎÔ†S”Mù1|Ø71îu‰¯†{èÇOí]Te«<3]åØhÏ9+Îñ2c[°í! V ÿFKÀFß`à@Gy…BШ=OøƒÄ)®¹IÝe5Ê%zHílüwñ('7ugÙb×âc»|ˆ/ãÔoM˜( Ä.å*n2³Kyƾ݄¹É›²#.æØLJ£ «¶¯ª ÿÉKaCLÍÇœq£NïÒW–™‹å°œÄÕ`£xÑó­ÈJ³¶ “ ÛCJÒ +Äí}p(‡Þ¬lä–N±éÑ|Q´ ~6°jòÒÕ÷A"ôÝ$‡q­û¢î_rz£¿î7ãê©}üS€¯j–©€ Òñ>™‰Ÿ6Vnp+vå;€6­‰^ç/wà—““¸{#[ŒÈL%ß1c2ûG{tôéþùóʇoâõ1} …c\øe[yož3Ѱb*ÄF!á@®®F‘ŸmÓ _DÛp“Qq’瀸EVk\K¿âiZ t¦Îñåüú¥×¼¿^•¿?]tµSInÍs|£Ÿçü3qõ‚á #ò~“utö‹w()ò\ùON5œióÕÑsZÀÕÑÖO½ùX¿ƒGÍ›^ãÔP(ÜaAfÈ}÷U(Ö,AFÙ…dwWC9OÝ^-‘ü¯’—ºÚñn‹´ƒ½¯þÂWý ðñ¥üzŽaBŸyãÎ|åxäžç‚æÛÁ ¹%ž'‡¥,2¦ #4âÊÉC.üúÍ(] ¼®hà×cµáÁtA>³FøŒªžýsUxÐÈ¥UÞwA¹ÑeïF/_‚í–½ÃoâÙàqÍ&Ñ ·Û˜¼v29»Ã£¿fFÐx˜ÊëÞT/5…›¯5bãy*üÁ%—¯ö‰Ç>l7«Þ!¬ˆNþðOæº9P>ßذy¾SŸ ÏXø³s`{;ÜnÞ}r 6ªø^åÞ ¾3ÀéÞ ª¸Cj|BÄX!æ|7sDâ ëß6 À¢Qi¸SÞ«lAÛ$Ñv znÇlÅø„sv3.Ò¦¾5Š’¢Cßhx÷µM‡«Ëâ›¶COÍ)òî±¹U¢Åòò̹âOš÷½%H«-ìñíãc–õêäZ~íåøp+N¤&„èqÄiâz}¤X—yµ2¾!ŽP8ÙÖs¤”¢8«ã˜ }ßG%·ë­<ÌÉ»H»É—a«Öú`©u!ÂתüZbœ©lt39×h™#Žˆ!-ÑÎÕ¾pË!>`¯;×ö6ê.ʦ+0š;€ΆN®•Lj”غцª>'ÑIÛˆc3þ±6Hü3uÝI"‚š¿ÑqïêóXõÐ]67­Ï+ÕéfjIýƒb5þaæïQXãmÛ—ß–¸‰Dj D'׃!Îz4ÿï4èëúÒNmÛÕ\ˆð= x˜z¢¥ãºá5Ô"­ nHcç`fê%\w¢ï™àp“¾¿•màY@à3jÊEÔÞÜ{‘‡.&}懚ƒ»Wíñ*)…°‘Ýâ)ž(£ÏÙ!Ûôâÿ†èŠÛvÎAÃgá-Æš×—»”w¨4€UI"­qïÙ©Û f6ÍQóB#hž‘¦bæmw‰B˸ñÿË8þ­8KF‹bÓ߉v1Â.ç¤×Ö|˜T…¹W£´Çqüº -—׫ixVÊ¥Àvï#…upñ=¾cKEŸ ╾\1Ü3ûRâ¸ïª nM˜âþ½‚æ|é¿.Cã}þìÊ:SgIvÚÇNð½¼ð 7Ô=±B?…ž»B+Ýèßý´SèÜò;¾’v!<Üàï üHàÛy½×mæã3T‹ˆ€'ðÞ\8‘Uo'2·A.zÛ¼…—.dÕÓI¢9‘iÑÓæU¸ Xõrªx;÷ÍŸ®Î íÛçÏf-g5©¯»€¦L‚ïøît¢`’xÇÄÃapG%æ÷®= pÇm iXS*h@¤] òàXv”{“8ÆV-ÒŽˆ¦vðcÌUptÅÛ>LAäœÁÌ’á€"§A4Ž 'b´ˆó¤_e6WQ¯cð1: LBU ·&¹Ü®˜m{¸ÊÜ^¤}ƒ"`¬¸†^Ô;ÏÒǽ)ënÖàÈ=“•öE\ì”(5OL6iM¤‚j¹ƒ.H/\UHµŒ££Â‹=:ñ‚ô‡G+@¬9®|¾iïÔ+J…ŽÝs)bª‚ÊsyÃø1Ȫ(ØÍ2g'p_ŒÕ„ŠÎã À½‹ëíÑÈj~´w•È‹ôSM«C:OÌ*Ñ«å¼O«Ãêy‘; K…œs[áxRP‚+«ªfâWЗ.ß)8'ç†6ÞìÚhªn'5 Noµ5]‚žnH/9>È·“;Á)T˜‘C[S‡IÌÖ²õ„qÔˆœ—´†~Åo ™’RRÀ„¯Ïׇîš—¹1æ}[¾NƒŽñ£·ôÜÿ8•P+aB_+4·Ž+`Ì.o”!¶nvkYˆ¦n P8§ª)©+bËl‘“‘¼Fj¾æ3^ë”Tö†ð÷ Ÿ™F“¥0#]ø5ᦠ—éÖéé‚\y ½…ι†Á, Ä"pÈ 6ø(P tË ©ú!pîÏ™²_â‰k:4-iéÍá2ùUÕ2Цó€À¬¥Ò}Q|P!ì,ôV6„ÐÜɤÓ)”>bÊÕJLOeœ E͹­{¼àÛ¿y–ƒZÍfb\U\ï„Z„÷ÐQªºáŠ(Tlî» ”(*RŸ|†‘ÓB_݇Ez™ñFK«HHæ¼tòn°$&kU-ØB*^•¾9«‹$iäk9{™ÙÁûÍȉÚ'“‘ëÄÈSÚ¢k¥¾œ(¹:ñÊÕe¥Â ”ä˜ì.`ÈÊE‡û?RÝ”(¾L޾=×*®âµ\)Ìøf(K1hrâÔ:* úÞ’3G)Ž\…ŸªAHwîã© ÐõÍE;ìl.E=´±y‰ c±T5 MºúÇ>P}uV‡ØÌQŽ/¿ÇSåTM³”•ƒøb';î\*BEðÞf¡ï0²è[xÓÔ æU®™Cs¡ì¬ —»,Ü)|f¥˜v6e8ÜlQ`´86»m‹Ç³™:UÊ8Ùi:›³ô3:>o8«ËÔ̸sô :W< L=eB Éyñ¶‘LX‹4©à¤sÿ™n÷uRMX r÷ö5ÉXŠV X–©#Õìà8A¢åH‘,yM§M†˜äpRÐLßL'ùË~˜`§'Æ•h­X6ˆêiªÙSÆc݉^)fìéÙn{ò1©S›¥ZB$w¦¬”X€}È÷2›7y-A‰°Ò:ĉÂb6üi‹èæ e³¨¤ÇEæMd™»@ªkÉÃý0ñÇ#úÑB …¦a5¿xÔƒu«îŒ”‚@BIQþ8$’ÜL«ÉL žF»·Z¿ Ç®1T»Iqù Ö$'É\æ>É|ÀÕ¢Z¢YÖírÈø ~S䨇¡„\­Ày°.ž³åÞÎä(¶Â!Ôíh@‡a˰@Í»sî°“Ý)ZŸ(Ü n‚¹Zy)¼S>á+=¦–U&ïèwÝÀú‹¨;ºÕË÷Ì Úäöi¤×\˜²ù ®…2£ëìiLs5£óØ'~`ôsÑ7L‡›WIBA‡ –é‰U4j³òÃaó'Z &dîš!¹ ©ÑÞ–½¿ÌPb“ å¼Ísß!‘¼>ôã¥rJY…„òO:ƒžAk·²4Úõ%(nKßpDt-|òk‰´áÏ=éÍhÏÝÌ.Q#dh¤_ÊâUÜúk‰Jé¡-û¸•×MErQ@ÁwàÏΡ•ÐÍÆ€ay€S2Ø¢E!þa–¨IFˆt!ÅHRRJ°=>a\¡·ynØ\´Ä?MBywtz–)Ýý§>¨©5>œyÍìÕ|Ñ…î²<©òöξ™ÖMWµÑ‘%BäTenå™N$ˆáÆ|ŒÑ}åt¡ówüë´Ǫÿ„Ë  9ÒY¦1 ¢Õþ0>¹è,^^¦¢ÍêÏ Ñ©³ï8Äž ð¨pz³¸¤­Y@Z“Ð_þqž-Í€†·P=­ê/u`êÄßÍAäO&Š  XéZ»÷¸m¢Òú†nצ“nAûñ2ã&hAÈnîS€ rÃé2cXh’z ÷íœ i!.·¥WUò4eÌ ¨;pÚdF‡ sdh1MMPáQA1¶³m‘"4Õµebß ûNHw˜dÑRW‘mY@‘¥ùºÄl]Ê©27!ծ蠰|{Å@e¹]š“Æ!ÜíœMš¯¹ŒÎ½½‹¡ñ7½5Ÿ`v‹Øî•%!>!ÓšuyUUÙ+>t{ÑÃsQˆ/¢Ò—A;©¡Õ88FÎjÌGRc އõÌ¥NÏ‘Š†Ú«f¸7–ì‘qóÉÈÑv—à™ÝÅ Öf£Ú^öŒŒ¶—x®ÒܱV m0A2@q’õ¸ÁŒ„Ã0ɴʼnš s{©zìÄbö,dMˆ´¹)§¹übåâÅêÃA’ Ò@!:Õà5ª£#å±¾ÐI9t àŒ¢ÆDùü[“0¤ê®ÎÓ}µ`ݽhSâ͆s`ZOÒ'®TŒÖNaL}!P{ay÷¬ÈØ®Œ´q™Ëܦ¯ÓÄœºé"¨¿³',F̓5¬õj_ Ÿnz)ê/C(3¾à@Ф ¹-l’LÂá6MORrk¦ ‹›,“„§m o‘JÓ/ i²„‘O^Òö Ixa*@îêw’ð´5 Ø {{ÓnøˆÖ^7ÃÈ­*ÌR¹F;MùPmÐ!§tj7Ì3%íS#F±t´(ž¹É5a8ëB5:.sv½£­Å‚uÔbAcã±d·ëáoÕCøãíÈ^µYÛ´™BS?aydŠR¨JøÎð-ÊtY‹a~ƪ&Êx`Q*»fZB`'&\â?ù,±‹%X£Ú©º0sYö ‡ïKÑgâMdæ:d¥)¸ì©»ò‘t1™¤ªôª—ùbýa2Ô$Õ)*\ìÀíuXkþ*})ôêK3±áòßJöõXþøD;ô}÷*hßá¢s¾-.E;5˜Üuô´¨2Äú 0W¾hÿ„ÙÞHJZI´w+í“”4RˆÞ¼Âj:‰ÎKɽµ`ݯ}çY_h9¨ÉǽQñuõâÍ¡ˆƒ*Â9Žú4áøÈ=fn[~ÃŽjÃpŸ‹ï¹æØ™w§qV’X».®q‡ëúkÿ©+Ïâ*Ì×\ºÙ=q²ÎF,Œ¤Ý2öØExÉÕ´8©Æq' Ó+E–'›qVâä‰*`±ä%±ª'°ŒsÖ„°>g¦Zµ&°cL'Dï7GØwÚý Û–õ @<¡_¹{‚›ªE5uvæÎÓØåhk"JF•hÑ‹ªrœ mh—cIWL¦&cùŽ_~g{ÂZ¶}§.|WÀµ®ï2Óp²'6O'­+u»EänÑ1=yWÓ"{âöÄ$=Ë[YéV>â>¹õMOÚS^ªíŸUR&ã&;É ½*áKé²[NÐù `‡LtT”z9ì¸û€é^º’oú’®ÿ“:m§Ã{Î0®%De-!v­;u›½c…±Q•²)û%ÍÌÝNµoÇ)<㌱)k¬'°P97ñÆ-Ýœ¢)¢»Ý«ŽŽ5NÒÝÎ}¶?qèL8ÊÇ;%÷ív? ´Di5Î~‡´,+¨?ÕÇnïSI‰D—1´„AÝíŸXjTÑó 2ёҶs j¿*¶ŸÀ¹‰ý]dÚa?¨”$²s_`ãf]6LQrzókø—1ÔiÇÎ{}=Úê2YMuc±cï›§­tIܳÆö¹KNîa˜ì% aâ>Ëž—Ê%í`)A‰j˜ó$xÇwVɶLÍQuq²sËጹ¼¼2rôéšzN펲glª– ÎG_¥qå0§™ŒFñïšÙŽi2ÉçWŒ ‚ Ï’éY;u²óÞ‡Œú`¦ ËÀ^ͺ½ðÒâcDÀ²Rhæí <û¼{¾×í{½e2ͼ==ˆ…?>+<†¸g! =|¯äï}Âü↖,4±þ>I¤Óò9œ!™{[=Gcý}òÌ¥œN<³þ^ÍÆ½w6Z´C \=qdý}¦:-s\C6=dj¤ü„vÁø‚x ‰\.¸hΣÎÌTgfÏt¦>3 ?Rs>£žÏ‡Ð·íà‹jýBû§Ò‘B‰|»‘YŒo§×¢H¡ùβmÊ~ &X¢À¸ŠÉÁ»EY3`Ô[žC¾Ù$¢fÎý¾Û«_”3ÔíÕ»½š_|Õ™e™¥U¢P áž±s™‰‹þ•¨”ÔuðJ]Dex¯íãÿƒZnÂå nGqŸ.æ1‹þoešrîs-ÑeIŸ°]ÒHµ‘O ¾¢4¸œH¥j·ï|wAZŽm_L%äÜÛÂë8ÅÕ‰G¢g»dP“žc nÆeôÉɦ,—`´IÃ'&ˆMIC¯,/^ËËEý߆jп.ä”±Ô{ô¾ $:Gµ„‘Չđ³Wœ®÷töK-vT[¾ò ÄN‹ô[’¡+m)7þ­–òXYãÄ^kEgÉ‹DZce‹»mNN ^?ÂÙÛùQYztÞ.âè¤*â3ª6(Õέ%ëe,T_g.÷rèÿþM4é½ì~­ª3ö—þñŒïµ| ÉŸrT| ¦ƒè|¶LØ-Îi;¹G@=Z\Œ™d²z9‘çøãl[Èb’å “®ŽDO)'§HîXÔ,ãQß T­'î)¿šfÔžl| y‚?¾]t鄦ASÂûÉ{K¯Ó[· ‹,ÓLääçaøIÉÄâ ™êÔ'æ’ÓÉãqƒåä{#óò›ÌÔ«`ªÂø.ù¹ /8ž<†llÆ(¢~ââ‹)z ~´|ÑñãrxRÚÈÉ«èÔúBµLª“ZdOÂçD˜¬¬ÄÙ¼fR³–“ ‹š“Óaptb¡% ­öÍ93…?ÎËýÈÄ´¯>ø,ÚCOÙNaûü8z'´Ù%ÙÐ%NÉ(t!EU{µÒs»åt²å¨MhkK?=ã­™¡'½|bÂ-ȵ;ó“|â^O0¬±OÒcü Cí5pʱջ@§hïÚýϾØ€XlòÍâ€)­;²MÛ±¥MDp‡S“ÛWWMqûwæaÌ^޾ïzd1¶Ÿô"õBañ™-Šè‰ eæc=ñ `’^{Ôs?Û€nç'¢¡PvLŒˆª/FW \³_ÒÑ”ð<–šæä²Cúdº­ÏØzµõ£¾%µÁÀ{ÅÀ{ç»ÎÃ_':“o™Ôš&Õþ¨ }¢C,xL:Ýû“Ât®´‹9-×6´5»ö´Ú §ÕNëmRI®R3K™¨‹“ó]¹Vu{BQ#ÎsA‹™tzÂ`Ï Ö&Ð)Vc=δ–}†V# OO˜Ž„ä˜h4Öê0Pä>ÿP ÷ ò#¡Ül–i +}ו×ò²)JôŠÙƒö…²m¿9_ë•G F½ ¥$êÈ-‘N‡¢¯zPå&…D¾"_š‰—k}AÑ>Q¶å‰ÿ-î@k¼k2ÒáM9É‚?N¯§ a%…(/mo<6Z¤éÚ)ùf RîlB5úÈ J•¶ï4|Â:i&µ´R¥Â¥œ§ãÉÖ’%/õqWñ„+tç}ÓÁn´×žeé3÷ù<ÏÒg.¨q+õ(G³‹«æ³°•*-#õj3¹áŒÂJ™ôHg’iìŒÔ‡ÍxÔ-+}©´’¨r'Å)+´2†á 5®3ºÈ¤ã‚T¿]¨¥¶&X3×s²Ræa{lGKO Ø'Ÿ™ôöí´+SÌ—y„i홼‰:–ÂX™{é]t¬%û93©ƒÕ rƹ¶Ò&¢ ~ÑÉÓ›y,µWþ:íhæš=#µ[¤âÓEí)ÊyüñÞFÄÆµ“3¬ÐÙA!³nG·ðç¾Â˜§‹‰Ã¦ÓýQv8*XŸOv–œ^½°å•„KKl攽#.½|á2HîÎâ×y'³·qíGI®LÕêaBƹL_º –}bŸe§Há;Ÿ/ùð—}c«TÙÉc;;½­2 l¹(;=q¥È@̲QæÓ_øJÌ3÷ôļIKÆw™:#ͼ±ƒL:Ó(“3Ì<©.ŸdîóØ{œ»¦£’Du¦ 2ŽÏÖHdŠÈLjOˆ{…èóïÂÐJdå$þøØÿ"Þ–þãÐãÒÛ’™r_¸ÙÉüD9.ÂùÖs ÿË‚lf½|Kçùëå*éåD¨»Úz3¶ý< A,w½ ýˆv&ÆÅùR‘˜™Gª.î‹­±3í·ÔvÚde!îAáú²ÙåVrõÌ3÷>ó´$SU\äògx.Àz¢|B~žÇ}²@È}W>F‰úc˜\íÖ¹w·&*ãýøœ0¬C@ä'J7.‹òä -ðZ¶ÓuéçF¨¢­†wÂd'T°Ò¾’%ÅömQ¬”WP½q wf;­þ€:VÕßdSá,Ñ[¦h ÙȧÀ„½ ©^u*n6Evvá~ÇO.XLËÚ'›®¼Éð¡XYõ‹Ö¼÷ûá²iÅ ›}ù‚.¨Ä æÄŽ÷îû±9Š Ú;v{‰{¥ê'¸Äæä½ísÑz'ë ¢¤çû³s€¢„Á“?D ‡Æß†s½]Hý)´ºZ¢ÆÛeÆ+ÕèIîÍõÈÁ¸õݦý®¦\Ñ[©鱤㨠Ãó´m%‡ð”GŲ›"©HR›|P§¹ÚØòÜ÷Þáµ”]%nX…ù€¢‘"+§­€b¯}U&ÂQ©Sñ1çÞÉs_f²¦®ŸÂe:"½±’»â”‹¬NZZH®f9lÁwÚªûD;×G)zMÑ,„@¡„”ÌÈãÌuÁ?¸¢[B¦€ú5ðÇ·‘^D'. cL+OYÁ ŸÙ—½§2öª îÕÄoƒ$à9:ËÖˆqâ¨Ò2U'!NKÿSpO— =™(.K‚?ÌýOÁ²Üñ‰—\–4f½Á~–ч,xg A±ž$ÊI6üqFt€EЧÕ‘£Ÿˆ©`·M¯ÙaG5sŠfp®ŸS!0mØ Ùòou@a‡I¯VJmº(²e2À¼ =a¦IfþºÁTõC øù³4žÞSÕ3u†“Äýc¾.¿LÞi'1 Ó¦°ãjå¨ÏÐÝLZ “ÂôÇ=*ät¢‚ßÁŸá…EŠ…HûN.Š¡¬1FŸ¼ãq0U·Z: N9Mƒ{-@f ÙiqjÈ]Q¦—‰1äU¦]ÝhøYÝcìeµ·¥)­„ðÇ'àÕ}w%‹ ]¾³•x—*ñ+ÍCÇ7Ù¾ãVU#nì\çºïY Xïh6—æñšÿ¦®hì?vÒ‡ãgX‹HÕÂ¥#1`Å~ÄJªƒ@3Vªj­ä;°_%.³œ×Ôç— ¸ÚÃïÕQßR@«öqKê«èI¢\ë̾72-β÷TàQè´KŒ<v¼Õ×úSà)uü&¢Ò2* 70½)r"‰þ ×)¡*«;O¡ùUœqCƒ¢*1v ª±¯Ä4••¯œkÝ7‹‰Õ¸ÅN“Ù£§˜¬.}…t –ÀT®:÷TÙIÁ§õÇÎ[Ø[µIÐ+©›Q*qßÜË÷wŒûL’)øãs#¥ûM”ò2ÕªßÊ›4+êÜqPñ(Iæf»=çÝ õº˜Rtx’§Âº%$tÚÝïj™˜8Şà ¶ÛŸ ŒøÇÀÂ7 J Çⱄ“T%84Óáö× ’úËȰ á‘hþ2ªƒê A<»ܹù3ýâ¯è…Ê8©2Ý­XÕRùËøJe¨O¸ó/Ãqº¤åËP#NÝxœrúº[AäA+ëQIuÄ‘¯¤‚(|U¬?¥ÁÜo]a:ö¼1 î~ÞˆK‡Aø†.ù °ªN~cÇÒFÉVJ9S)ÔQûÀ± ±µ=(6[ÚùÈ3ûà Jqò¥=6ŠÍ4vþƒJ!Îܳî§)vª«-jTìÕLÉ\ŸÚ®éÓ‹96ôšþpz;6<–=BüW4Ntœãd3e¯¨üW7*Ñc<ÈÎB«&,ÚB÷\˜M~üy,› ø¯ˆö´…?A?¢ÝÖ["ÏÆæ"ÑU¶íæË –Sqœ+Åzþ}ôz/첌ê›Äãg(@5+s, Žr†Ö¸JQÙSô<3;°·ÇoÐ òޖ׺ľãÍ¡x·Ùѵú,›cŒ× ヱœ£ZެS¶IŒ·QÔlGËŽ‘*qçX!µÚ¼åWS‰tl’9#ϰ=ÓPÐ`ÚO­lÊœçÊãQÍêèlcmDwƒù/§’É6;²‘HØFÛx?Õp×`+ á˜r'VOµuܽS=Èñ#ü᎑ØÍÜ»ÎöÃXžÅí¦Š¦½÷ÈE®¦‰½½ÞŒiö­åÞêªnï"•ÆAE&”¾"\µt±‚÷&oMIŽ‹ðõ¦)oèjoN%ìù°ÌãcèL=Í„ËM>U_G¸Õ=¿Ö-º|}׈«Y†ü–– ôƒ²…øžh®s´1º¿ßñ6ªÎ›®¼RRÞÔ·MQÞ)Hk×"jüćŽz­‡hóÔ-•LQi'ÕvNƒšîïu¼ ™NRðPÝy@|>ë[m4†Ò!šz8tp•±ü À‚Ô)üqj&0ˆWthe^@æC¼P¼lb´7Њϟ™o‡(òx8¹°–ìšš¢É«óJ(ý‰§Û xºO!Ò+R .R87¾q²Ú4œ &¢aÖª¯Ò¾¹bi!é7yèT>li™B¹•Ù§Bâ-äxü[_|ÝÉ}ÿHuM|fÚ1ÇUœë+°H:ÝK¼÷Æ9Èâƒ÷¢|•xu …ÄTVàpð¬”õ.o×/Â_\!›Ë *‹u¤öL»Ú¢[)é}%…‘*ÉgmïÅYé@5š¾¥Âª0ŸE¶·°Ú_X^¢Å°ÜFŠ-œÞb›tÒ;:I{àœž÷XåýÒó(‚8²W<:ºéÛø #ƒ¹ìPXò׺éÛ¶Õ§þEUh‰c¦Œ %kM8EÊ®¥¸àºuïEZôr°‚oþÐŒ÷‹7,HõcàµzrÀÐUbâ,…²3*ã¨ÊpŒ•¯ ²Èëf[a‹¶®ïèÉüUV™’ÌÚe°S­ÛyÑóˆ†kzß'J,BžˆãúŒ÷Ü7t:ª¤ éFJ†ÜqódŸ×Õa £ÿ§H(ž ÔDêÁIÙ)Øš0U5>Ïo¢J‹¹Lr_§§<Ê¡dª œ²Å E–*]Ÿ(áÂÎ êNúCÝ „¦ß;-i.å¢\î¸X|“ÃÏJ€”×W™u-R%:Ê0Ï¡åh°¢S«×F_ꌈSU!_7-ˆo}w„‹ô¶ïzìüê²·ËtjƒíéCçíUçí½ö£5(%š#¼x4Sä¡ð¥ þq6;œ¡†&ÏHÊòRâdßçOl„Eeu•m@µàÎ;æËÔÖ¸K5Ò†î9’-üñ=í–]QÖwÜÆ¥«(Ðø›M¯ 5V¨>¿æKês߈3‚¼9ÀßT•3î°S¦ap‚ßдÁ“+©ÅŠGÖÐe ?êùê-⮊P&N2v„¯þð ¨c¬)åE\úrFÂG.ŠFŠŽüÃÖg´í“±âÿ8óíš&Î, Tý-!+sYµvi‹¯n(7ÔŠV'Õ¸kCL÷  Ù‹ì Ûˆey ú|þù³Ê2~|Fˆ;ì”ÙŽ#0"i[ì:¼ãˆ'ÀD³–L¤ò(ý>¹á>WKf T}%¹Ø¢Ó\ø`35O$è€Èädh+ˆ{œ~?<ðy æp‡#ä¯"Gü"é°ÊRóƒ]3%²àË?ø"Ñ JxÂǼ§Á<Ä #̉šítÿF#ïy¬5{è^zˆ |Ö[>4;¯ü%]†&yœÀ=Õ3™Èæ‰è„>˜s!ðxKJÏÃP/P'Ê+lô#ßxœB<3tÎîŸìœ塘ϷÜü“l2# ë?³Á_ĸ ±ZëËÐC¤!IΔmvŠïºI4×ó3 ÇQí®×OO4̳WhM&ÊQm€.«Ú'ŠË\ „öÉÀq‰»ã'Ïæ 0VR—7P/8„öt _ÃòÓÑ©<¹Î& (°ì{K™– ¡f¤p ‘ŽÁ4#pÎJó³A¾J¾äœ·\ÇÓë`iSÿlèO¡ú“‹2æíOÌÙ­ægCïæÊ·d¾â[R’ý©eÀl§’ÐÞ 16h»ðˆ$é—˦¯ðØ7ÛÌLrG&‚¾„‚¢Ä„ ÞƒJö;gŠÚ‘‰˜/ð»£bÇã÷¾OÊkÙ=t áÿà_"ÅqQ9^<~ìNèsž¯oäãWÂ|_T¨£0rÄ+~=9{k vd"æ‹ÜÒ=üqœÞ}„hbE~OHÏ5| @j`’Ãýáåå_6Ý?ÿö›_~üýûæ?üúûŸÿø× †Âݘùÿäÿ&ûþǯÿëûß7÷?~üç÷?þü?ÿºùumÿüÛBîfüïÍo?þþë¿ý þÛ?6¿üÇü×ß7ÿõûß¿ÿ±©òËÿÆooã'ûÇæïßÿñË¿þ?ð_ßôâÛæ_‚=~SÕü×Möãû?ð?7|ÿíÇÿú¾ùóß¿o~ÿñû'DÚüòïûão¿üùý|F õ¿Û÷?¾ÿÇÿÙ|ÿËýüíÏͯÿ¶ùõåß¿C·þÛ÷?þ¯üùǯ¿ÿ¿ÿÁ~Ÿ3~…„³ÿÇ\‹öûwUµ( VýöšôëïðŸ¿ýíÏ_üþò²Ý¢O”íV¹îùÿÎ]3Ý*O÷¼ö¹ÒxŸk¥¿æ0ë˜Æ”`oˆOÌWê6Þ(ªäèÃ]íÔMF~¦Ë*#sú蓽“~2d,ÓF]†à÷ëåÝD›öWWx²ÝfWD®NUW0Ï^¥£ëá6¿²‘mÙBiór»Í]¥¡ ”J]l²Ï–caAÂíG€ŽeÜ@ž¢äûh{ Ò ”¬ŽaE~˜ô{Z@H©¦¹cÔQ¨f»…®òrñÊôQs4¶A9*6ÃNN¶éÙÙvXˆ–傃ⱠOø_ÐÄ#vÔ9{Ì7Dƒ¾þ% (c÷sý«;Gò=VT8:—NB ò{!šGu–€ðZ—)l(yƒÓEëfÓ0¤oð•ÚPç¼l‹ÉäF1HˆâÂ6TQ—­ÐKöxi0÷[|• ZrY­LXFæ,ƒ³3(›´¿Ñ NÏ™¬O qÍÑÄß9_Ô×8+”Ô"õl}Yš²ðf[DFxËrT¦«m2u2ÀxZoâȕՉåOöGâ^ã ½0E#´…_žÝÕ\Ro—,v/$Ú¿¨,s"·âv/±7—õT(ä³m¸DºUìèªXè¨ØÊ-äÝj°d«¹ü ËL¨ÌÌUf4–iëµ'oPstä4Xl²_‚ÆÞñX|î쪿]e5ùQw@þ9j²u~4ùD(Üa¢Ø!=hý`AF«3ØØ Ö‡eÝÙEºç‚·ö5‰ •&±þ‚[4F;=¬¶þMQC1"Âbò½£˜ØÕM4ì#òÀ ¦½/€ç £ow1߆U¼@.ÖâéRßïÀæ;´ØÞîC~çøèøpX¢7ݦœåWYò:.²MñŽd²=:ßî÷N) /P››$3,›I žnð™xü¸''MwŸ#€½2*“GÜZ]÷è}l»cGUwVUn×4ëk:Û)M)‰¬9¶{ÉͶñJ³I#ßæ‹ufZ'^ Ó·û<ä¡h5Èu6l€W9ca°Ù¾‘PÇŒ¸ÕÐÎ:STê@I(¢Űd”z‡€Iôj··ÙeþJÊq9;ä©«¤È.‰nF“ìN¹f²‹¢sRë,˽Eó}ZpU>nÞžÁ²*4÷ Chë‘]ºGÃ/“0‘𣙆Ɯ$ø`˜Îañv{ÜN†°ñɆmë3ÅJzÇnúü¹+„æUåMˆ×Pµ$®Vš„•€íéˆÞš¶GçzˆQ”ªËl÷øù³ö¯/5 5ˆ’£wd7ç‘‘nò€¨‰Åâà÷З¹û`b21DbñETŒ‚ú²¥Ém¸zLAZ yfšÖòEr'p ‰ƒõZ̤öf'ÑýÈïÀ¤$Ç8\ÑÝhJ"ÿ7`@UˆwÔO{nÓý1=áª2¡Í.qýJï´ŒT¼áØÆ´…Çç^Ø< ‹—À!»a0h{ÎÌ™Ñp“ÞÇœz2ÆæVq\ &?;9L¾yMOD+é8«©ûŠ4(&>Q1Òµ¶ìbðrÜZpÔª#–i»Ç$¼lOèC{R–~rTþRà* ‹PãûvøåZÃÚ4L/RM2bé˜^$þYt‡‡éëðž~LõÄôŒ.»â‹YqFÃtfàÕw°^¢È;|†EºÏ?ýù*3¨ïâd+Ð6v+¶Ž oˆËÔÜúKa†d2“ú¡°OEà›v6 9dÁÃÌÎ<úfžM§Â ™i8ùzyߊÈ7ùlº;ÓFê®($,ç-S¯+ƒu½õ}ÄiM.°W -Â&&0ç gÀZŒ°0²-ü:äÝëR\ŸQ§í×§½M˜#í2âȬ“t¢+›R+^^6uu €Ðæ"bçªGbýNh ’”Kßaë’ˆG\~ò­6žtáÕ€G{Œðî16^­áéŒN»Œðî26Ý],±hÌêûÄÏè&Ý•ÁRŒžÐ¸wŸýì•#Þ|bû™è¬ýGdërØD‹R˜ «áÞ&˜^˜â5Ëèû…ÈÝ2î¢2ý;¶"¡%;ÙúÄ¥º)z ãßš¨”Кx×lƒVZX¸X'´X'ÞÅÚ ª-dÞ„VéÄ»JDw»Yȶ ­Ï‰w}6ˆ®6 1lB+sâ^L÷Ì« Cõ„Ò ˆ,>M0ô7üú$³éÍ¢3®K‰ µÊ "‡çdî`¶g:Ò¢8Z%êÄ­¼šûކ€½NE7s¹ñoIºÓIÜš@dH „ØûD€ ‚tí·ºR§&Lz’HÀ<¬Ÿ_ÙÕ<‹7è²FVÊïΖÏl¾+ âM¶ð§ÚÜßê©cÚ¾üêþFå¡§­íÑ+ÏšHRØH´­®~u.¨À#5µ ¦%oY tLű¥S§ÅOÈ®&mÓö†«ºÀ€Ä¿z+ˆÇR—Ý4ÚŸeÝœ9;`˜J®¼¢FÎHÎN†ä€ÎÃÔ½X¯Ñ ôݱ%çTÛÜõô'òÀµjR[Ìs-ìzå1UHsKñí¶¹ó WÉÔ–çr|(™áŽ?øˆBZ z\âMÝJô²x)}Ð.½ˆ}Ev )@A¸ó-)ë—ì+zU i- ÝšëîkÁ:jûZÔˆè6qÙŸ#¥öÑ2z—A––o ù )HvÈš©jí’6aø*IÎÜC÷+[Éo|¿QÉ—fè¼ÐšsIZ±U¼Pñ:~}gø)[Å U1‰ Ñy¢ÃòÉå_ÇoÈ'éºäÑRû(¾DÈ®Žžö9Æà¢!¥²¯aG#¯%-ï±P{Fˆ-Å—¯Aä:¥ùس}÷Î"Ÿ±ùžÔÀïÏ5ÿìpOˆª¢ë0úãÀVñ|fë˜?°Žäh%Š]VØxÀ¾$me"ºD–ÝææèYª-mŽžGEø8§øtDj'ÂvÒí rjxî|ΦC™OT¤†hä înK¡•BõǼ|ˆJ¸j]™¶¨—0©©hš’ÖPü<(ʲëˆHy_‚|Å£&=¹Šô’ƒˆÎ–1UÛuoGoâkPb§ã%«âóg#íŽi€%T0nÆÊnúÊxgÒÃO]ÀÏÚhd~ÃðÞ(rfUÿ1lÓŠF4 I§W†*1‘×sWÔÍø| †ð×®i[¼XuÊQ]pxÚ‹ì@"hS  ÇÀ)QR㳸Ög5­#ó1r–@Ã)#ƒdÑWum ’«éãÞWµ¤/ÊL«˜ño¡íôèÔºÎ<'¢zf¤Aáx½Ò¾Mwe°pRi¹9:oPöx„_ܤ¡ª„²ÊÐÚÀ_QEQþ’õïèmº>þ¾*ª‘\2^w'ý¹¬dkt­†l%h{GçÒr‚•è4¹‚zb+=c>šb}Ñž¨•«vø—ºPÈÒ0pZÓ}ìðÙ‚¸mº¤µ“±‰ÉŽàvÞwÝEäÐŽV\–ãæþ…ö‰$ƈ)‰pªŒøÈýâŸ?/Ò¨¦+5aݤŒÇ| ÂKÁÁµT9ÔžƒDºÖ äô™r¼õÅ&wbŠ.[°Š Ÿ†®Á“髼ãf¢±›™ÕIÉ{nºs6/²aºn“áêÒùDÊ:Ü{c&åÅ0¶ÓjÓcLXÜ2E/Ö­‡:õP‡³}–-+©Ë½áãÝÐ:|l+] º/vN'R‡/%ë°î։צ‡ÍÃw&éüóRЉ›º"=Uœ|¦<ã¸.•èÞ4•¾WÊ6CÉm£À—Á͹FC|iî‹W3†4ßQPκ4wïŒ ù­Ìëæ¦D³Ù>Dû„Ž¡c…&+ÄhZ %ì©ß!¾bضhéºe  ­ËíèT‡ë³— SÑBncü˰\^šjѽ'îe?*,TÑB9&¦XLã#i.`ðSÓ'F|d]ÔÎøÌ勇ô"ÆTïõ+u¦Ø‘OˆðŽQxÖž‘ÛÞŒUéÿ2HœL ʪ%¯Og¿›®E8¥½ØÏÑÑåjt 2D•ä¿AJ ý²²ç_èìèò?6Ì?ô_2¾ÇeÜz2Ñ–‚zÕßJ(;§“²<ð­ûýÁÿ.~süœܔ³†Ó½ӤѕQ°éûNw´(vG­f/¼­6P}­öO"}¾w:ºâ[Ý;»ÜýÙ\ô]6e{¯Ñ= ÖÀý|Åë{i Ž`n¯? F5%7¥ûĵÜOÀŽ}çP¹Ëá)h?ƒªu«ƒåy`Ö¡±òÂÌ© TÎÇÚ첋†ž Üë³Ä0fÎâ52,~I…~¡T!NR£„¯ThÙn‡c÷¦nÍâÝ÷Ëæ0/(éÚ$g e8ßmöâA|öd?NDÎ^L©ÓŸìÅy%[íÃùS»èú9gÝ ™ýÌ-qrÈöÚˆ´x°íž?Ê@¶|tåŘL5:sˆ:Ú:ê]oõüíP$EúÊY¹vLÖE³½K?oæê–—å?ÉeÚ¼ÿ>³– –ÓrêtÖù‘‡Ó4äõ^×?6¹-Ü>ტíÑß’-9a QÜKO¢T€‚ºür]ñ›)¥ò²îìý˜Ïï^Â`ë¶×'ÓßþØ—)¯›¦ÈþŠBn]µ(Hµ ƒÀ1•—~½® ÓšuŒ`Ýù2_é ‰2z;*p¤º#Õ‰ªí”©Ð«[äýóg>£T£"CÞ‘xÝ?f]¨“3üÚ­šŒ_Óíâ'K¡¢’hÌBgãa ¾Èëk©¬?faBçnØNfmWÞH3®þ€*Çâ#çu°XFZ,S¾š…_çõ!º7B‡Fã5dÿêæ*DëeY¡Æ?x ¯û&•H—R±>‡Ñæ«ßK×Üay vÔ˜w€Ì3#’j¾/3}ÈW…ÁÖÅ–Aœ ^6†gâ7¾tÖÔ7´ããÒõ™Ô‘ bÝ·°5$œÂ¯säCròK‹gáE_e ¢dÖ×éCd˘ú“³:RwÕ;»˜¶ü†K¯ÄPÂ7» ZÑZ[è|4L¼4ñ Õ¸žÚ11ê¸ç\e `¹ô˜R9ΣÊpe×øÂ„±JyExI?ø!åÛå‡~ß¾‰vr´Zß;²ÁI†Ï!(àÁs7Lã„È,ü´yÜ;Šz|CÌB–sÆñÝYTgƒÂå ?ß9/7© Q6~qi|òÒZ˜…O™‹šº~Pjä ©(@þ„©¨iS!õOŠšÕ’HQ«®ãö=Y¦çe%ÎÅlX€väV¬ÖÙa]~šè®oé Øf1UÎùœ*dö®5oÖ…VXa&Rüœ1fÛ²m‹­ÆÇçðûsf{iÊ"¦)"Rôœ,ù¹:¾óÖlïï„HuüIÓÂ4åmP!1Sª¥÷Ec0Ê7þJü“R-ÓŸ4€ä/„˜Q]‡Äo<â7…Hut?»å­øxÄ3 FÛ­[,gÍrß7ÂlÑ& лÊ }z­)ÄûHí\|hµ©‡€Ä ˆ1L-ü2ÚóëwØNMña‘JÁ»¢mD€‘Ó[êþ¯³ÛÈ >plä/¦±1x•âÈüœ¡gm,$¦B˜ÓúÉÆmQ¿o»–©EÙt„tŸ6Žc8UÎ;˜ÑºeÓM´ýøùŽú˹@¢•&TQœ5ç¶j@ó56ã‚ÃpÊ–còQ™¨Í&h°CtEOëï‚&Œ¬¤ž‚í¥)TPsÙ7 ØÜ½áïÄ…k®ñŠ œ§èlh4~š*uo0LÇ¥hr‘ªÚ=á»Úý„Ïæ cl÷¥î šZMDÓÝ2^'õ½¾Õùd™TU »0pyrý8í¦ã}ÿð^ÂLX%¼Œ½Œ¢ëú©Z¿¬›(+',öÈhÏÌï¥_Žïñºo‡’ÛŽ¿0CCá½'üÙÎ^ _vtQ&¶oeóÛÀêN?´ðòò Ö÷ä­GšTbçxøÈ!:QRvfÁGó"v¸]Š]î1ŒÛµl'[0´AÑÿ Ò,PDŽ᳹Ði”ùÓC€dh‚M_$´pOÝ|Øò–]!F½zOJŒ-§%Tç _ÇdÍAî8 *>ö4KÌj4ÕcEH_úRSEðl~ÏíCë&ìFQrVâŽjÇšäÑ ¿'𯻼]Âe¡2XÜêªNé¾K;¬?À³-ný–Ãâ‰ÓÖ â.ø ¨bjæÉeÈÆîffoN+œ´©[:€N)•àÓÄÖ…h²á4ÍùM[ç:Þd¿/N+.´üLÄ­Ÿ\ —öïK ò@ _Ò N`ƒÜj¥>õíE1 #ü:, ”3•E0§nmÑ,Ž”“M°ü–^ÅMÛÅ1 ±P6ÄލÓÒ@žñHàZŸ©hŒ„92JkèèÁÞËlv½ûé¬ë_ÝŒßgN™þÆÖe´øè9þy£ìÉET1„J¨’¾ÓþpGÀŒ¼^k¶®WÎú„î~y¥R×åó諬¦ÑBŸßâˆ7%☺–¬Cè¨÷xá=ÆôaëßNW„äÛx3ĹGÚäŽl(·ñ̈-'ܾ½V;öGXžûÀ_Œ~âV]|Mƒü›í©ÒÎûµ˜çC‚ñ A$a2&™0"‰cN3’½]¥b×Ycê>†üŠÈÔ W€JwßO義🠫o°4÷ÁšÉ¡ò^ŽÙĬ™|vS"NLµæî;ÂPÿBïZ—ÍÕ都ÞwÛý™üâ;RÆÕ<Çe!Þ:½(M‘—ÍŸúƒ<®uWn*qžïC¯ÄÛˆà/$# l±$íyÄ„èôö²ãÑí —›‚âv‡®×>¡£š©”0IÖŠÙh…ãK¨{!Îí§»a6m§é.øD㬋ÝÏ«ðŠUôh‹®Ñß}-ÑKˆiÇ.ažq;.ãÐÿ@i™³;1(h=L«†TH‘ëMŒ¾à×çÊN#ý‚‘ê—B<^Ä ¯ªÅ‰=§ÿ1Hˆè«Øh1è|ÀL«a Ox:.N;ßt#¿€f¬#™)Ð7§Á]ú87]y‘}÷éVJ”%ìܶEÿN²nʪ€/`±;Å;,#qñ9¾¬øÃe=V°“p(Oéºd>ÑÝ¡" üÿEÞRRCÙk¦éãÓãÌø/¡Œ„ê#×}Ä˰@€ÒȬ¿_)È, ƒ'y¤Z:+œµ¤Ç:§ùåqçVXßœ8ÐÍÏË^˜®W>õ=îPèn!ÕÞîлlíBÐ &\o iñÖir l}1T"ª³_.¯S9¸´àðZ»Má {Gª¶í…€:|U·è½!'Çf?£88i€±xI‚ê‹g•åëóM¯i}¦»Í1¯¸!òï -·KejUC •X-×s#ÚLóíMNþqèæÙîµ”ÝÄ8ø8 VEñL@µ‘V½}X't› ¿¾G™Ô*¡R¨øá8ƒì8½ $£÷„ƒŒ‰lx¨ò@/‰éÓ'œý-ˆ[:ÿÊf‚•ç}1Þ´cmºIÙÉjÿÓÓ1”e™d J\·Þ11m2(…[í­ªL§`xÓÓ•Ú„ñÙ[Ýdö'/"Aïð뛸Ë»®+zî&ÒkÄ<¦/LÚ’6ËxLHGÌ€êézêÂ|ç!ßß7ÀïÏ]Цiá¼ ¦z†1¡þÜÅhÂ;JD$á+a¦Œâ5‘N\˜ƒJFñÙXÓpƒ9D1à×yúµsÆ‘‡9èÒíú!ÐEöÅ÷;°R»Ž ¾$~pç·=Dç{ÍÔ៺òšI,p=ö÷ÁÐ`©Ò®'ƒñÖåÄE¸|¸<`©HR‚•^_ Ì:s©íY>*¦øv¯íae#Ë­ìèð÷ [p '±{¾’“°=¥eñ’‚s™;*0~T‰éõ'Ñ'À9nÏ>I@MDÍÖgÍ/uõ©ßëŒ=åÞQ!¸Ÿ:üÛ/9=ÿÏ…ã±þGDq¶¿\@ã½Ý±’òZví–Jx¿ð—\©œŒ ÿl×Ê!ÿÙé%O¨=üÊ=Úš3d<]Éíâ1£íCÎÀ¯óýÓ~j{¤¿¡KDyÒýÁ7Y`)ë>XÍ€Ú [U.›ò+"äXO§ð§ý®0Úˆ…ÿ+ ;r÷ô3…ïÎ)pNž¸¢ˆ‘»IÛcbú¯¬îlôwñ˜â‹³l±/Ð~}ŽL­àâ ¼hvWq“™]Æú=• r“7 bGì¶óùÄ7!ª¾òUä.y)ìBˆûv¾@(&ŠR–îÒW’™‹¥°‡/q`xÑã­ÈJ³ˆ§CUD[[(:æ·ƒÀR‹pã°”•m}%›re¯;ælM–ß7qiû1œ¡þ:ƒr „—<=€žšnó¹Ëúx®Å4yÆ(³zÓ†«‘Bk££~ô%EØE·»V}2|t™gNn‡Ý²>ÝXŸ/rdÕþWYxë¬Ëmú¤ˆÂAÂpy–:ÍA™ ÍÐ_ÌBü5š#Ïd£G¡:9õ{ò>.v6n +¯Øôxx-ZîÄÚ®¾NýL¥È­q’OÄ©€:ѽIyµÆ¸qÖCWM8彟oxÇ”ëw% £’ÍÃ*ë‘áêLÜn êõ£Ýú"ÚfA½¾å‘— Ðcä¸ßIöe.ázºí/°òjÔËÑŨ *ø5ÎMÕr´eÌs64ÝôB9y½Â6‰â<ûôü_¼C9;*Ç©ÕpåØò´7Ë8à:Ÿ»ÏPF×\a؆So$±ºrGÅJyâ0m‰ã7£CTêÖü‚$⽯îÂWõ ÐÑà"Ï]†ÐôÒzdë¼¼^ñ’y‘1‹á |NOá×wáâ‚nt‰È‚}K\äƒÂgÖžQµ³¦ÚöY$£Š»¹"7¶ìÝØ%9ª'×[4 ãx¯’ËJŠf“h ÛmL,™œÝaƒ¾x‘\Uoñ€„Sô<0ˆË_j9 7_kDÆ3øƒ‹ Wå|Ø’»I¶Î!LWDÆkø'sŠ9h;ïäãnóN½儼c‘Ée/Gn7ïŽÞ8è’¡•“rÉÏAï h:³„*ÇêŸ/Vx9×½À‘†7(•·Mè–OCò^eÛÂVžDÛ=ÀäÛúlÇšYÍ>DÚÔ÷¢&/©>+³߯½h:\Eß´Ú ƒ—9¨»·J´PZ¨â;bÇ•áõ‘š*Í„oˆ¢|܇”Ðq¼âKpÅLèû>Â`j¶EhÆ­›?ôš/g°e"ô)â…4É¢_±pËá¡?àsÝiv wQ6]. *pìFÓC“Ÿt¢ U]NÎË+“²%.lf"üC\ Mü|=Æ—‡H¯fEtÜó=«žEç¦õt¥ºÚL-©_#E'~–¡?µïÐ; 튡ïìÔ¶¥¨Š£¢4âáSõÚrŒ3"¦ÊÍiÆ!"‡àð‡å*wxÚÞM¼g‚CMúþV‚ª ˜Y@ÐÙ¢Õ#½ =¼k¡Ç)Lú<<;5v»e•ÇsÐL¶²‘ÝÂÔ Oçð…ðmúÜxCl5ô;ÇP¡%d‹^ÇæÙy—ò¨J †Œ‹ë.QXÙrœþ2ŽS *=#IJéï4`;ò³¾ÝåËM×DµEV&U!îUîñ$·BAÊk‚¾{54+åRàNµÒçL4ÊIEŸ W•áÿµÃ•Ï•})q|öGUÂq¹ÁŒn_A¹¸ô_—Þò>ve©Ž´ïcôÞ ]x°ê˜XaŸBçy©‹¾•nìo„}Ú)ìåj5ô¹ènèw}$h¬÷¶Ín|†êiŒ9 ìÞ[8qU/'îrYô²y±#]¸ª‡“Dá.E›÷+.XÕ»©âåÜ=[º:+4۪ϟÍZfjú#NXu*˜d®1‚)ˆàÁ$l‰‡Ã#) ë¸ç·¾0\€·&ÎO© p“(¯<©ÃvqQV³&iŒíY¤Kí£ÇxY¹ñ] ‰6ù8túÜK†Frï%ß“¥h„þcvŒµ©‚ÉÞÇwc®‚^Gç|xé9GLàÏråqÙü›íz¸J,°Ó¾A¹(VœB£53}Ü›²îfeÞ¤Xi_(þÓ6vYÚó›°&BŠG<‹¡Ìá…«i0qtTh±SíZ~ãÐh¦ÇÚãÏgõN½¡t´Ø5o"¦¨•7ôº„¬‰"Õ,éuw»XMžøèЃõ.®·G#«Ù¢ð*‘û颚B1>,u¾T=ËyçUgtî"wÀ• 7_np£^]в*«šfâWPÈ,ß)0Ÿ†6^yÙXª^Êñ:(¼îõ t@ J !‰äh)l'wSï*ĈUUÔÙÄ#³µB=!E5§„—¹ÐçÃM65 ÿLëú|}èÖá¸ù0»Ûòuhtá ÀRá;ÄúPßèG¸æÖqðcvy«(tÛvmª\ ÑÔmšÖTm$ ¨é"`·=åiA¨YØ©çBî c‹‰8À”ü¢ðN„çX Pï_R’Qê2ùUÕPÍcqtŸ$ ÆÓÖ=ž‹ãùÌ-Å ±™è*gŒPì$cÔj_~‡b©bô”ÙÇøBZ¶;— PnÀ·Yè>¼)>Sß45ìjç‡y±bæc Œ1ÝTáB“QèDøã8„FWY0ÁFLàÏŸiR˜t­ðãå’N¨j«;$$Î×¶ELW†H N^²«ÆÒŒSËaeÓiE£>98kb6ð+ŸÚ¡2Fç0«e3“:UI*V–‚—!P¿xÈ÷2›&˜¼– ’Xi"©3&ɨÒã>oRMׯøj˜îÄmÜG=˜øèï\éòÊ!ߺ* µc«5MH2q5C M/•¯Ñ9¹IÁAüÊTÍ¢4¿-ÓÔr!(Ãfé.B}PS)û5ÖràÃUOª¦à¯…ð²þ"J]LJvzBA0ä-—&~|öÈœ€ÐXç§u­ þ\fܬ80ˆ8.r#Š;).·y“S/¥´”B`õ‚Ýn­›L²ëH·:sMºWEF›Ú'óõF›hQˆ/°ë™•„Áâä°V…™p²*šiÕàŒÌCƒ«®#‘¯QÍÞ %f\ ÷nö áŠÆäú†0™ëfmjËø½¼E±z¢2RhRch…ÂÀ½°Ôóåb°µ‘ð•9  CÞFùÚ$9=IM´Žx‚¿/¥õÀ$ûºRÓVÝ-ÃvbÐQ5:k±øËL9S­âÕc8›¬PtBUÀ-)Zté²CǪcwfxœoÑ©œfZBP'%øU­¦l²b Õ¨&ª‹3þ¨ _ã^Š>o"3™ÈJ#°ˆ¢¦ÁVàBsˆª+ô‰h¥¼Ö©ºJ'Yyèd“–ݲ£:£’¥`R½–ÔK㜀ÓÖÑÜØ,ƒœÁ”¯²ÝˆKßL$q8mOkƒÈPÖD™R\7EP†Ç‘I&QõDWEðÇѪE$q•Iï:…Isùä˜bž€¡Í2ó £ÕÃSôÞȼü&ñp±"}'§5& 2>";); ÷}O%ª¬´|ÿàõð"u”4š†€IÆ<9¬añ !Y`5Nrµ™:­½ÏŸäêv­“:êW ï/Ìßè~h~<ßÒ9š"r(÷ ҹȑÇyèaWUõBzí[€ø4ò‚.Ó‹u¸­õ-©6îi ‡ØŠ.Q-*lÚ˜ä¨jßiUœaèšd”°„R Eî¾¥bBºWhF~-/›¢DÛŠV=4 í7çkÝQw|ÝFÇÈP½©‡?ÒÁåE†îßf×/™|-)дžx¹Ö\ÕÅüqظÀ¤5¸¼´½q²HÓД¬p‚4t‚LÉ`Ò$Jw«¼1Ú30=’²˜Æ»vÔùqc—•Î"V©«5øã9SMÎue =\º$ÌXa:ÔÏÐ…Y:@k¥‰ŸñŠ6)=—'«_w(þÀʇêÙX¸1ü8á‰UÚWRů¨­”µ›PiËáî°XĪÿ ÿ":EŒcuãå¢À·ôŽ|zÒ«U§¨BA¤Õ„û×i0à‡eÍÐ o d¡G‚NVý¢%ïý~ø„T¼ ¹‰À/¡¼œNGÂ<ç‡ùtTV…õ§[YÕãŒôFæ½\h¼/A¤ú?Ú±ë^xýUyvÆ-p6>ÛÂår^·0‡y‡/kñc>ðÀø˜cèUžüb\ëvðÙ Ђµ‹øgfÀX{¶ O%›…h/ÁN±ÔîÀ6ácã 7õ•í>km_‚C@È …èØçÎ ˆƒFu)äÍ8Gf’qÝ:(uò Xã×ýád¹‡Å£•Ÿ¨€—^nn9º3c>È7¯½ü øä£þìÝÖ¢·f’ÜðSÿ§¼ ÄQA$<Äñ„Õ¹O§ßñ(@OA•è 2…#ݽ—|aÊN±d…‘Lɰ”¡Ø!ñœ‹ÜA©¹ÉLæ¢Ì𥝂ZáιæÓ@WV0‡œ?éý8âÅ[)¦ ‰·5ú¿›N"Ⱥ^§ÑÃ#©O4ùiÙÀ1Ò®N>?…V5$n†ò3c•ª]ryø<Ž®}·ˆ|,SôvÜDr*ù£ šU¤EIumú£Ú1còf¾\gÚ1Œ5š\e dËtÄy bµxÇéòyäU½•Ž'PôÆSuŸh—¹e7Ž!wñ=Ee™ ?¥¼8ãµFº1ZB¦€ù4º†Á?î¥Îöÿ⬕ø²÷TÂ^•°<.ýmÐè|Gg L§ÊÊTYËjšúO=]*ôa¢8+ BN‡øOÁ²Ôñ[.˳Þ`-K‚hU±pÄ«‘z¯*¶wX?E®°fo¥+®Ù›Â]µwr˜"jô…ç’ Ë͵âs*„%!„îXäI˜ÞjeÑ&‡"Z&È bÊîL(cÿuƒÆ¦õC³;ÿüÙNlnˆ¨ê˜:ÞàJ;‘cœ]åð²)ß늎¨d rŠVŠúLtH dJ˜èhZ¨^¥%ÊÞþ¸O,$òN,Ò¾“‹B(k4«Dð“gu@µ8Ù­©ßØ”Ó4hš)ñ=Ûí—÷§ô6œ ·:¤‡p9´îÏQ;×2àÎgDßyfAqr Ý(-t+Vº@ü“Tø¬¸0œ6¹!R – œ‹ÂÙÂA öTI±Ôž©ä%/TÂI•àxo»ó—PùKøJ%¨Žæ_ “çDË—0¼EüÄiPáëæ1$8dTAÆÇÃø”Ù PøªW!zJC¸g‚’XjÏàn¡ç¸týo–?@>ªØ·ôË´1²•2ÎTuÑ>`§úð&Ƀa3¢|²ª 'ÚÃ`cØŒbç?¨ âÅ=cá4†Sc1¦°šF®žÞ“(Qå,vLx${dø¯h|H÷?Žñ±™ŒG²WMþ«•ç<þfçT’ šï—Çnì¨óHöØó_ìñ,´Xn:~D»­·<žŒ­'«»«lÛ (âPJL…¥lãÈ Ö³C*—Þîê›DÍàU“2Þ™_ÊÐW*{*!K©æ ð/ãÙÔBÞÛòZWƒ×*¾ËMÉ© #¿Î,›bô<×ヱ”£ZiŽŒáÛœÄÛ Dóßd·ê©òvìjà Õ¦-¿šÊ#}";.ê=ÃõL#[QµŸZÙ”9ωǣ*˜cÙ†ÚxîÆò_Nå’uvdL™ÙÛh?Õh× U‡”͸ÚöÕñöLµ {=t´þÜFí]gõa±+Ïè@ VçcðÇ!åmY/ÿ9¾b£?«—h6”÷ù?» ¡¸Œf¨FªÂª†InH¡Í.$¡ÒVžŽÉË7L¶£Ëk“B…ºÃ6*§!Y’¬˜‡QîÀ‡=œ¢ |*äàa¿àëHîû—@néåœÜ–‡ÿxÊxðŃ·Gÿè îPŒT÷62yÅXUR\mî=¨Ò½ÎÀÇÓ´‹ò~ñ†Å#øÃ¶‘„8çuCÓðJÇõR t¿ò  •BT’… I§—¡p_ÑtugGëÿ‘*é¶|UZÌDdʨ§<Ê€(Ž6ü‘nÛÏJœ7·¾Êt«r´3[¤J´‘(§J7ž!ë´4(õ—´A¹W•Ù{î®jX.+íñ2¾Î4RäòÕ³ú‘LãÖYVWX…#©Ã·mÌ2LQ<ØØ0^f¬0ÝFÌKÚsß º¢xs@¿I‚Î4{kHg Nèžõyr%«þ`N{Ç7KNˆ¯Þîªuº/cöÁÝG€W÷7|Ê»¹”qéµ€âx}©x÷ãÈ?laÊáõ‹Tîm䉹m$EégøäÛ~4OïÉU–¹ö£…à­òº¢Õoƒ†Ë)U`Ñv²ÅðâÛØÁUôh.'ÃCÀÛ¬Ãý)Ys3ÄoâÍ:èD_EŽèè{ÿ¸ûr £ab" ¾”ñt°OŬšÒûP YÈê«/ˆP 'j°ÃøTsëÏ‚<Öõ8¡BNŽÀ ŽÑ0`Q÷–1- BÍ?á˾yºíœƒægƒŒ(”ŒÈûUÈ­Ay$Fý³¡'…êÉäçzÒ„rv¨ù™ê×P…ÝÅyþ÷Gñüƒøõè- d6݈™ù z7&GöÉýÇ.@/z.„£_àwGð1kû’ù· `çA@@Ñ=g˜JÆe5šÄx¢ud"â üâë¡Pò/{>Ž;z>äBHÜðˆø¿9ÁK6ÇÇÁÓ7ŠÔ• €/aN:i˜ ¾ç÷»Ðrðà/‘â²(ˆXËÄÝ ßùñu|Jˆ/Q@¢0bŸ‘‡žœý4Ð:2ñåå_6Ý?ÿö›_~üýûæ?üúûŸÿø×M°Ãw˜ùÿäÿ&ûþǯÿëûß7÷?~üç÷?þü?ÿJ•Nüþ篿ÿ×wø`sûñ÷ÿ©%m~ûñ÷_ÿíW ù·l~ùÿø¯?¾oþë÷¿ÿcSå—ÿ=¨OþöÍß¿ÿã—?~ýà¿þ¾éÅ·Í¿{ü¦ª;ù¯›ìÇ÷ànþøþÛÿõ}óç¿ßüþã÷Oˆ´ùåßÿöÇß~ùóûÿøŒê·ï|ÿÿ³ùþ;–û øÛŸ›_ÿmóë?Ê¿‡þÛ÷?þ¯üùǯ¿ÿ¿ÿÁ~Ÿ3~…„³ÿÇ\‹öûwUµ( VýöšôëïðŸ¿ýíÏ_üþò²¥ƒ^øÕ¢ÍM=ò/›êï£iPy.»Í»lj|C‹ÿï5€ßl·zd/| îå æ€³Pº„½ÿ2ä ÒUÕã@õ8>UÛq Pl»‹Xô:ä(jäòVÒÛ•ºÉȧ]YeèѰn"Ùû ¦Kò2mjõÒH1ïô–ÏÂì$$yª¢7ѦýÕUÓ”Ø ;ðÔ‘kÕñ=ÌhtmÈ~R× ¥lË D Ûmî)/ì|hê¾€>¦¼Ë 'ƒ|ø†Åå)M¾×Vè¼ Y„äÆÃ¸…Â×Qú%€¤TßÜÙ?$Z³ýƒ¶®›¼œGc¼ôxTÀa uFîêÍÈÓcY²g¤2 Ôº?C|Ð>¶áÉÿ¼-‹5ÏÞ‡›0Ñà„¯¯é² ŠÙýt_ëˆaÕ“Ná^ˆæQ%€¼ÖeŠ!3òbúÊ3ÈR|¨y^¶Åt©X†üÓd02lEuU·ˆö”81Äç«êM'¯²ÄžŒq¿Œb·@¥õ¤UÑnd®ÈؑևeÝÙÕõN_oãk£* Ob+„cÁM7X¼þÙV4E %a„¥m”ïÝ%Å®þ"Á®2mo??þ.v¶D…çñ‹_'Æã+óú~‡ÑÞ¡×Søå§+,Vjž¥ ­+»k­/WSν¾4®”ˆ­ÛîCçû(Î@¹¬>úðœE,WcÆÔ™lS¼É¹v¡^°ßûÄLŠ~“çÁþ‘à9Ÿ‰Ç‡½ˆ2Í­‘†½s(£Ü=Ú€öø\z»W>Fù ï­ÂœœaÖÚ|ÄXšbæþDý“ð &¼ >,“F¾ ›ÓFv•(p ’ïu ©7ÙIl@â[‰•ði#r¬KJuIC†5)Ñ)7®ÇV]Z•Š˜;Âä§¥Inkúûvô“’A×TÉê[Tù&~7Ñá=I'`{$û”í^:V×ñz}@˜VwêlÔ®r†Ý ?@±DƒD¿€nµ=|m‰I‚`ŽH®^ã^¯øEÝC½Å£›7|~ÕO^‡gf> ©È±HŒ¾Fl×õmq+›Ò¸§§hZÊåëÝÛ+ßúÛÃnË›ŸºzŒ{$C6=ìp%7«6Eôü›È2œÂrOøŽÍv|ÔkÐëw?*EÍ y$(~œÖíeUô…@K¦ËnÀ„êÞíôûJy»w îxèê­~#ÓÇd¼˜Elšòçæ‡D–²Â§šP±W› ›q›?ÂršåùÊ,—ß:Içœî¾/†yŸSŸå<»Ú÷Š“È 7G=aÃŽÐåšõ çÕŸøiUp}t ¼Ëûä²DI¡-â^ mà¡Ö#“Ö\œ:ïè’|G[T'‘†x0ÒÆÐÌˆŠ° 2Û»Ú8ŽòöBŒÑg†DZÚ.ˆ…ÖBÛ£pè.XËød×r ‘òŽÃøù3 =ô~âµ`KÝQ¹¬r ­HD^^Ë KÅ)rßXLãhV °é¤ó˜®Ì’êRsbþ·šGô,»=ú„5ô/ˆdó‚ö¯/5Ô Eœ#ú²Ùs~{RËÏIÍú”Ò~hë(R·™=ÈiSl!(c9¯c4ÇUa&Tíäj¨:¬kV"{/&£l¤ÇèàUÀ<óM“‰º]TÈèês®¤> X7¥_î*`›[$w}Á/ÏÓ0S“ì n%e⌡{ê©>Ѩ-ã aPAXÍ}‡€È$q¸Â$VuL½¶ºÃ@Ÿ:ÒsWW±#!í©ž¾#ƒH¯§V‘ÄQÍÁãÿ^5KÄ8Q}›ýÞQÁ1l½ÕË•üÚg¸²Ä;âͽCKÿ1=õª2-¾¬Ý_é=—‘Š&&E•UæîÞIE>\8L~xÆœ3^GjÖá*¢-üúÔ•À^Üo¨³ ²7? {/š3Ñïí6¦“èØqvt=2sB7‰®£3 Rn&!!­¤ËJ’=•ÞÇÔI*úC9Ø%¡äg C\è©,3øØ6ÆìðëÖÉhÄw˜zÝE'9$o`1nFɘü‡oãÔÃ/»À®y2J5ck^Œjh]KŸ<†Òd×IAFrÜâbÉŸ.*ibljÛ«u¨“€¼ÀxÂxÚºwtõ~8ÈÊðTlv&_…áRzðVö¨‘§ñ·ÑZÀ½š=î˜'‡ Z`iôæbhÔmšë€ùö†iãÓˆµ%¨–à»Iæ¦(ß:W匳¿tÔßÎ=‰^‹‘] *E§CüeXÖø³cµœ–÷Üv> 1vA÷.dAÈ'Bv(èTé 9…u¸øœÌQ@<%-ùß!¹êTÇúDõ ]õ»7%†KÆÓH¨¦tVT±Óþ)J¨oHEã²÷ÉG£vh˜Û¶ÃÀd¸¸jÕ÷ÈÒ{¼™:7!“3£Å”üÊNT-,€†퓽œ=;¹jo–t ’ø1œÍ®f ÃËNVŠÊéèÕ”~[˜z³Hkõ]¤JŸèˆú!æ§íô^oÙ™÷£+t ’õ¤ 2?¥ODÚL5'Ã)«9Ffäy`vgi$ÏË~¼'LßÉFs‰U/°*l*®¥Û“CŸ X”÷e[i»MBÏ`Në‚Ey%JâúĽÑÒÊjQ¶Å²´¹$OímÆà[òÔÆf²Ó¼«%´§+»ÚHmmiL2ígtûuJ}‡³;´g1µ €z$lÇ^iÏ=,5‹Mì™&„éÛ%yÌšÇÄYž>µ1ZÓyØS¯åŽƒ+/êMâ‰Ì{«÷‹ úÈÑ`ï”9LOS¿i˜9F»Z¤‡gyÂõIÒ2*W68;]½Ì¦Ê Iî8Ÿ¶¶Eß×Ì´aS££îSîë¦_ÅäÞ‚ìdKqÆGúÌz6ܤ¨ÛÝá3,Õkˆâà&3(¢øxrÉÏÀ‹E9ð“@¿³ð»r~î›[)Æ5*— n™%ù0×r(QŸR•LÚiÇø"~Ýg CèŠzÞ2í¤¾G4dq¬l–6© Wa•€Mðœ[®ì—6©ŠSa¦á–)06çVD+[¦Mzg‹¬ 0@'üú¬n™Ú]8 lH4‘ã®Í…÷Êà¡@Š Ï·53x-ƒ§àžÚ›M>6gAJ£XS'ZkåÒqƒ¤0ŠÝ³ÊÜaÙddbŒý¿+•¹ÁÈÖî*È.@ì|‡—Ž>0ÚØ"Åþ))Ü$ÆÏiQ){Ÿ°¼[òÇ¥(¸ A3bÿÔ†mÓæHJÚ“XÓž&R}±Õ&C1à×}þeŽbWÞïú‹§|¸f“Þ$ŽsçqÓžÈÊF‘—M]]Dƒ8>ÛÇ@=0ÌMÄ1ñy¼Êç_ú\_([X#=kÞÎDüäæ¡“Ï›©["ö H'­^úæ1$).”L6R·ÄiEH²!¥ ²HҺĚÖeCÖ¤¾‰Þ%Öô.›ô.–p4 ñW²º‰˜¤WNm" ‰WÛ/ñ^¸ça{Uc^RÊ„K)[ÌSS+c[B5ö],ç(st‰ ´û¬évHí¨n•Ïiwöò1ì]ÙS‡‘1E z}"¼:3]fÍyÉæº¢#H™kÊך6åͦRh¯[S§&s¯3‡½.÷^-zrhù;M32¹ïjì`ï-dÇaï*Ý[=ÆV¦`´^H¶OÉ(uS>sN˜lqL’íÊ9¡F>Ÿj‰Ó¦•Æ“lWÎé¼cÿÖÎRy’5•Ç —Îò„tdM×1èj ÷§„”œdMÉ1èîvûpgJH½IÖÔƒîjÑž”b“x‘½…ôj#ôÔn¤ú°%ÏÝzé<4íCIäÕø1hMiŸ²œ_Ð"?xM™ÝÅ–D‹{\²[9x\ÐöcŸ;ÒŒ—fdNEss[vÕ3!¼•MiA[sx¸TyîÖHŒ2éÌ‘_ðpÅ£+µdíJÍÉIW—)üá¯l Cßõµ1&þë3sÞO†Ž@ûîC&FêÄ­¼š{ÒúTªÙ¸q¦·&Ò§× ½ñ0N‘Î[“ño<ÁHè\â½³Š,iáÐü<ÑHŸÜöz´Žtµ…sÁvN„ãkWhá•’‘’ÒS‡¸Ý¢S=²bÊmÖàa× £½„ž&Âw"°€ªP„’¯[ìaZÝ ˆZçQúè¸Aw³h±HЊ‚¢³®E"2PúÔ#%)ÑÒ&æz;æ¬KÏT…&½”O¼7fƒ'<šd`•x5*¯æð¨~Om^ƺ1l^Ï)Rе¨ä¹{1E°Ø›H{IÖ´E¬/ÏzŠZžÓísì!¯ý¹TƒùUê¬$ŒšFJ,©WUÀ!ÑñôS2=cZ”ӭϾv¥’ã¶0×pO5\Q>0m‰74õ#ÝâŒM½êGdJù9¥‡ ©WY Õ6ª )© ©Ïø.8ØH÷E+qAJŸ“øõÎDþô9‘_§œeþ”î+R×}ÅxV?Û á"—³”dòÔ%“&hKâžCÔ¥òtw dß©[YÉ!+ìh½Wl]k{©*%é:]“®§áŸV› Ζ®S²K]Nªx¶ïÚ5to‘î†W&N¿œÙ÷úz…å;%£ìÔ+g‡vôs)ÇÇ9Nwº&p»¹äêc!U±ÐšÈ=€‹ºž4¬êñSÛÑE€T” ÚÔh«fœü¤Ï™˜@uÜš‰™ ELÖ“çí€dôtÍÄl$ž—p+E_ÃI\O×Äu @. iê’Èžz/;–Xõ‹ÖqºêH=w*®Iy_¶•NRº™H×n&ìnZ¢Ñýܽ„1„ãÆðܵ„Éóε¦{Œ(úFe¦ ;UN2Yîó²aï_ÊâUÜúkù°·ˆþ.²â&*ÈAè§.Öͽˡ6lŒ©ô²Íèùd¶]1iÐsùPñ™ù¡¾uft뒭ݺXóæieLÛgFs2¯tÒqY;<¹Ÿf¤ek:ÑB2°¸e¤e‘ç½Ý.`ðj¯£3¤ ȯÏaIJw§Gm‰h†õg9ˆèØï:åcQOmwö@N^FªP¶fº5Ó[Ú› QF Q¶vIÁÒ÷\}GËH-ʼ—®ŠK>q)G™÷ÒÂ…[»pqÆ=wy±˜XÃ0ïž2½Zð#¾2o$:6Èö43]~µœ³&-JØo67†Ù‡¬+.ÝÙs÷!3†}î”ÑEF¶v‘±œÁƒIJô­XCR³²55ËËxׯTåc®)[3Ž¾Ù©j#ËŽÄ“GßñöÁ=vUå<ìùçô°¶¬Ð•·™–­éaÀ¸Ôã6kd [ n²ébÙÉͲäcu$â!è<ÞNî)POÔ™‰ç5¾œµÉ¯wqoÈaÅÅQ¹Bø"@PKJ"*‰q§ÍЂiÑ Ã$G1Í ÿÔÒï¨åu‚!½#K} ÃqQËWGíòö©§´&S\?]Å¥Wä´8ßNËðH®/¶ò*>ݹµÊiÙèy¾É†o ¤Œ¸7ómT|Ihr¹)[Oiê“»ÐJ{JsUÜ@Š©Þ¾Ëœ˜­÷Y@­|}„ÓÔéR 3$”gkBùÄÊ÷¼¤1ê–SÇ»œ«ØË†Ý«­¾Òš"éAzŒg>v1y·)a}„Õ)¥+Φ¼rr£'·$jhôÔòiQßà_…¨>ÁLï#¤Š­ã°5ŽšÝvG°n—C4µ9òe{ïEYu,÷’\iÈïÚøÀ£Ê*Ìw|Ñu~ˆ‘½žtsvåCÜê Ò©f¼b=½0_Òw¢¼ý¢r ÕC×6rOmÞ¯8&"zãütNPL/ÉÖ[:l½§‘¾ŠÉÑ¥Fåó?‹zÓöèxTÆOzR7h;bŒø@µð¯ïZÜñ¹Ó¹F]Ú Ï](ˆ‘oKµá¾Xp×cC`ËÄSžú,ÒBKA,à±ßbZO¤oCÿšnw¤×‡Õ4«-BœÕŠ_Èî[®Ù}ÛåŠeU°{šÆ‰O<-ÀJ…ÕÊ[iøÉA¼§†ºz 9 ÒqPi0©sÙM+ë©”ä£ )b*Ý7Ǫtr‡…C"/ªpm>“;W™­Ìg$Ò§óüïa6ÓRéØƒµÈ õ¦^eÏä[¯z4÷^”ÏTe"ѳÑæ/ûóû#÷úÇ­c èìZŸU€5†O—âÑgê‚ÖùQ›¡¥®-ús e’ç×<\[ 8cA4ÒT/æÑSgFRåØé,ÚMò !†ÞÞ¼#käÑS^~]8í¹éºÔÂÈk”ÏBu­Ø|ºMäxª’;\ãÎÆ-ã€b?^a²;iXS†t€¥7ß¹7©ým ŸL´fDÍf*'§)ùÁ}T÷`ÊjÊL£KÖœ<¹æG÷¼üv3œ}©®·¸ù"[Øãpl6 N¯‡þÙžÅÀ¨@ÕMR‘yL½ûü=[³)~@9׆EÍ %Êœ6ÒÜë†ÝèkZ*6³š ‚êyâ?ræŸ{¯!÷ \I<˜¢»a#gò£uK‹󱼃ÈOîŠ+G#LŸ|©Kôðä)júFç2² Ì={—Áe ƒß¹yùMfŸòº¹‘M{þÜ-׼ޢ§~Xù²(  ¿X-؆¾³`<…‚±Ây©Í0+Iô&¶bÿ\]R—,fµõë1Ó Þ’Z"qHò̓[!¡ÕH©m“kYÀó9\TɸŠâUɧüh½¯·Z-¨hDƒé:Ó·3­«¶®y¶ÇE\f\Ãæ¿h¨æjt}"ÎjQo«ETÔSÎ{-æ>7RÒïh¾ìV$‘Þ8ê4ÒH¶{‚Û¯¨–VuÈÝŒ•¦ÈÞPÌ陇Ӆ;k´ë@©Œ1̃rõ–¡Ú!¨ ߳ݢwnu¥¬­™ô$¡N—{X±†s1S=1Tåa¹ù«+²Íá)Ã}{œÏâ ÖÚFVäPhÑ9ø,&"¶Ï5$ÙÏ•Øàµ.rs/j,mO¥­øo°êü&[øSmîoõ€×1ܺüêþF 6‹¶œ÷á¦Hw©Ãpc‡óvÝ=(ÈœaFõm§p†Hê£Ue­GVFŠèÎk¼;¯g¼ÞÞáßT(Tä›õ•µ¥3;^ñ´‡}–„ÆùÏ(&0V»è¡å<^Þ -Àa¸äM(ÆÜ¨fÓp–ŽÍI•³%È€ïbqR=˜#ÿ¤¥E €û¨ß¡_'MV/’š¬ÑÑÆ5ŠhÈÖΧȉÿ°óGhÜK£ôËÞ¿5³ê ~|(²µ ô ÐÒPD"‘ÚœÉá~§Í†„e$·œIË}žÕr!V ™o,ô":µø+D®u޽ËÞí£mõÔug5ÚkŒD¡˜pf‹,“Â5e(n] )ñ[É%«"²ìÐÙ‹Äxÿ‘¦yFÏ4¸!£úðÃæB¢òeÖ©|Ù¯Ê{"=!¼(AùÇ"OÍe¼k¿Ð:½lc¾—w¨ä¦ Ì–A.ÛÁÅž ï=px`™ÖA€'œñ9;ôà5w!¸Ø«kÝ܉¹ÍS·z’…Š•ËŽú2 ïë­["˜‡âÛl&×WB]t»æ)®¶ Ë.&T½”õ~Ê*¥¾ÜÍD€”¥…Pq{Û¨¯“®¤Ø ð÷ ¾gÜ„b„©TβI5RÄÞs!Íõ%pm, ¹pÂwé–• •‚—0—AEý£\(uƒçI=$m ~õeK¤æovÐö c‚yò(Ú7ʲbD—@a­ž0!,s úOŒÈkäæwÚ<àe õнÍe΂Ø,o…,ž¤Ë±ËbL¹VLÙ"«ÐÏ铟d›ˆB}„$Ãjì¬ à¦!gg›ÁÍp ]Ô=šN“½hÀ8ëç(÷ƒ6 ¾¨ƒ·xJ3ì7Ú Ø!<×I&Ânï =ÍJµzÌŒÑJŠªQ$@Ø4Œ–Y8Æ‘*BZè$ÎTa&*+䌌ŸdxˆðyTc™o%Âè<×:I=.t3hÂwìÖôXv‘U£.k½Ò …NKcóè”ÈŽ¸÷°¨•ÒöG?欚š‡"ö°c/CÎ~ìÒÝ0e|ÉŽxùÀN1G?6Št^ºñß4aNÔ'§ˆUðfÀÖþ-ìñ¾¯_Þ`˯±ŽEgDcâi׃íóÑ7×–ÝïxAÓˆ6-vž{ñ À`±ý“ørÇgt§Éæl<4€Áîh#GB³E Šéºïé6ŒöRÑ3‘M¿Û>n*îyÅ?¯Xš‚"¾þè¶Z}¸Ós-AM1‹<ê¡‹¡£‚s|m‹do*ìpô«²îÈŒiBûdÐó¼ŽßÇ*±]ˆ½«Vm™ò;ìBVF7À¬»"ê"e²]8);V`Y\Î1Ÿì_ö'ƒ"%¨ÝDÌL'7ï$®ÚþÍKMË[ޝ¤ ô¢}K—6—:ÏêŽÝ‘š³Â>üè…ÐÍ‘/PËÔºEÑ–#ËBSz *áö‰èA–™ìc @cˆ$ÈßðÓ®áûE[”Ž¡#ÂŽ¨žÙ ‚S’YƯôƒà4¥îTô½™;wo,‡Ýöðé´V÷CŸHšÐY'™{˜«A¬à…v¢à™É5šIôjâbÞ‡N<“IFæÓó+YŸÿðÚÐ8Ò“lSµ˜Ý uÆÆ¥ú`õ“§ø¾qšqE-"GgˆZ%€7`KÐa1«›µIڨ˜¤Sb‹d²±¬#>ØúíÆ*„Úi±ë™ý1(t¶ÑZ”šó²‡Û€õc3OB è“‚Žý¡šJLt¿3¯(w\á:øPqÁ2¢Š¿ð„¸3Æq—b´BØŒÎß)®žÖD†¢ƒ)ÇjR%‘Ësøqè>™^·Â7é:â$Ì„¼¨~,taˉ…“*yÚ¿mQzî­Ù§ün![èÙMчŒ/:؉bb3hî . ‚KíG[ §Ù¸OönÑ»ÁÿÓA|‚J°¢Wfl‹'eK^ƒpËB »EA(jDùE.='åiPP,M‘lõLŸ]åh:R‚à n¨)è¦øÊ™ô¸œrbasnPDqäÊ ˆµ YGpAZKIžM·éŸZVü—5¦æÕJ¥’n÷„ÓŸ5’_M,òœ7†é6Eà¨ñÆ쨳E¢Ó ¿¤;¢v»½ÞjP§|ý,ë—¬ ÁßH¦OIˆM£¯Ç¤|YkLQ¹§Ý¤d-’Î=˜“%-=¯™$øOºÏ,Æ%wîˆ÷ýdÈ3¼ÂJI’Jç$)]Šòf»9q%ud¬œžÂ¯ÕIlÐe ›7­u’žÎÐjãaõºè}€¦д«¼š”d­4äþä/Ò }¶e…ï¬dÛ;‡ÉŽ*ÿý'l=ëÓd©]ÿ½g¯íP•Ñw ÁÐò?Mh6¢{Löƒ`|I•–YJÊð4›¹E^>IÜ¥ÀX‰–×7”ÓŒ–4?I$ã%QT|°OC+þ}/3¹Wx÷Söv myÿÂÈ«÷²--»Yêç‹$TÍBÚW&R˜[jSL~²Ú$Ÿ2» ±òX=d –´¼|ge…5]¨¦™È¿Úè:¶î¶Á µv}ú‹Wâäv‹vi±/[½±$Šzi`ÿÓo~’ÿ\Ò›2kÆŸ´MÏÐ"€µYÁô“ð4_¤ 1†UFØá= üHyjÐa¹6ÒMg¸H„3G£/oÂB3%+å4Ÿ‘á¬%€&T¨F²Pݹˆ½È@À K‚x§Ó‡ 98Þd±B°Dò–ƒZ;%ºcU¼‡,×û‡©˜‘‘œ÷WœOdÛb¿€2긶œßP®éÒ¶|ô6w'kœŒ´Yhoû‹dPä@Ž&ÉýТÂFvŠ> =àÒý‚ʲr€,d£ýiŽÑ^½Tò÷B,ú–÷mCúÝ¢AMqv¡þí=Øç»Ó´Ï¸l;«ô4ÚÿMÁ‘‰’³ÊM gúåèh¤{äpêzå]4¹Þ.Ñ6o‡->–Èš·ÚH’*jN“7½ù ,³ÓYu©»£ÊNÃ¥’ZN1«s] M|›±®dDN󹄆“›'øy `ê-`üïRÕûpB]æ!·ú=¦§aj{²ê¶>iîeÚkÞSÛCÏû¢m·€cmS@²qð !(ð·}ö}ø³±öoËîÑÜy]"Ñ0Àúµ©¯uS|Ä‹iÏ¿O¼3B KD^ö.ö;Õ8à<þ"MÀ¾ØèâÀÌäW9}% txÈ“€™À_¤™€Šœ1¨þ磹rºk Q`C ¦¥€¦äH4$>šŸ§Yš¦=áò1ãã¶él ¢oçí!Ÿ¦—‰yÈ£ >¹DX ͼ…ª »3¥îL¿¿;GV7Û™ã§noÐa*«‹Ú÷ÞÚËFwGËÒâémýøÚ‚¢N²Õ„:¡mÈëIÉÆ©Áü`Z0÷ç÷PMFÕd1ëšeMÁó~Ýþhð½°8޹øF‚Lúå¹p»ŽkGÔ1ÚÁ7Dí耄Þi B·&¡Ò!ãªkª2:¥›=MjÉ¿PÙÝT›uìöSoLâäúÒõíŽë%Åò‹Ü„àåšpíÓá‹Á@m7›0·Mæâý 5¢}€9C}åc‡ÉNO]Q­*øÀ‚¢?&s~ TüøøÑŸü`³z­Ž·èËG=«òM!Ì™°@ô<­ ÐçG@õÑ@nc»ñW¯¥p·ùñ£ çÒ6&$uÚC×—wR_É×ÇP™èfÛ«ŽÎlâÎljfw ˜Ø#fh ƒõªßCgð¯~$$êWwfY£~N¾µö‘âBÜ¥TyL=½wg” ýQ†&ÔØófO­ \©¦*–Fç's+ù¢þOXÉ"ùVª2D±Šá+Üí&àî_¢Ó3°¶¹£ëáÎ[ô{Ï줞Ç5CB ¢AüƦÃÖEÕÎlQÛWÀ6ÙòÌ«äÑâŒ=Sß<È—ô{·¦®üŒ{Ç[лÛ£v£Etw¹MOA±6”y+†o‘zcäÔ¶ø>¨Æxƒr``¦§”ªŠÝ#mg6áOS5•ªèkàX°þ]@UÔ ±¬{cP­ãÞöèÉ×Ù ÝLù”'TCà)”ZK²¤S…mÞÚ¼ë°ÖwWV_Al†J‘¥swâªj½/×å(Y8YÝ£l˶ó DЪ@É|¼PÓÛߺ¤)À¥«[°aÖ'¶¤–ÞfÛ¥ŽÆœ7FÆ]™•ƒNÆõûœŒÙNDjø>c6qvÔ¼cäö@˜Ñußµ0/ñ'i°‡ÈÀV!‚´M±*ê®qoX¾~f¶ÙBSm…9^Ò«SFv¦FÆBEm½Ž¡ªÆï(úl3F¨ì»]€uµë°ÑÆ ~¿Û5ELõ%#hB”&ßMé»ßQÒû;¥ßïÄ*Mý.Ð aS¢u.à”ÇYÙÓïX¦eJ´,Èc·ü 7¥ƒTqmýìý,@‰ÒhôW¿§(?è•@9Q»ÙY')÷-±Ž|nnÙàÚƒý3)¯«çÐ}Ø­×у‰beÆqyx+Hƪˆ¨$ÿÍ‘VM‡ô)€s%áÄ)$ö žÊo7?ÂoÀâ…„éŒð$[>›¤’Ñ  1ÂŒGÂÎlÒT¼U ?~43yÇYéTµ{Ë©Ž™èÒ‰"vXÅÉ­ºQ‡Ì”¶V&T°£Ž XT éðã°ô†añZþÀ÷n>˜…5É ¸Ê±ž3Õ㿦Ô~š&]Ý£…Ê4µ(Ûþ‰¨Ñ{ 555‰Ñ9}`ÄÝìUbO}ۉРÐÊ®Ø7–´Š.¼7œZJ~gÚ«ø†&‚õ¢1_› 5:4a’#û£ÿ¼LÊ %Q`aJ„Ö8v¯m”Ø“^¿,òJ¯a²’Æä“¶„ÒŒF äQGàBQ¤Es'#àf¼"«Ècsê1F•—Eïe–‰u…eS¢'Ö[»=ÝÿhÉ,Ü0]G¨óòE§aTçÝšºÁ'H»M€·èIóhîM®=sÁqÄMªk@#F²9G\6\öšS)“TéìÕNe-ã VÁe²Ý&diðMît‡)…¬¸œàBžn•KBÿd¹ ÓÙ"rp{Ùã¹b´‰@/‡ .ØO·ÕP‹ýUó¢QÜŸ‡ öd‘ÀÖwoˆ¿Ý¬IÑë¡òÏr”$ø@[´­›¥Þ,vRöáp5_6œ6f¹¤ìíêŸÏöÛ£ÈÅöyä´²'7öã‘‹†ñßpî€3ÁÌ‹šÅÄþ÷dp̰ñtÆ'M=P¯×A÷_¶G8-¾2³cÑÔÊL¨¯b‘£f«œðà‰ž  ü†ÙÌÌ\»Þ¬AߢL‘C…O ‘³%¸¹˜^¯N€Ãñß$ÿ#˜XÌÛ­—ª;s;‰’³@÷D[È¡Ž {]G%ðÎïÕ“…¬u¥toêF„VÇ ‹<Á»bò}¨€(‹Žµ±ûõýÎ{8í±ÝU•~&–Û‡[Ë ‡Õ«Ò/ß?Ø”bU‹Žõž‚g›KĨo{Mö4£NÛ¦#}%TrI©’]Ð&®`m&uóÁoº&FÿX§êb~w£§)Ô‘-8MázaÔ}±'D'z¿xÆçøúÃø÷­ŒÒ ¿÷1Óï r÷Æj®Es°œˆŠêø¶ ll'É÷·æX¸µBvrûáöGš²ûÀNèW~Ã&ƒtúrÇ *ZtOX;Qt£¯ƒùç´bwC>b§íë Äg§ 4äãWT‰ªÈˆxOâÕ § L"é,snE¹ÔØ5 …QåÄšò[—fÃÝKÑøì`ÿ!ûRìÕɳ~DKˆÔM´_×Í€]VU㥸òš’ÍDÂ+ªx‘˜k_ ”µ<ÍÙ /äÙ)l,Çm€zeIÆ»Mý[o+:miƒ´à0Þ£Kh¨˜ÄœS ¼¹Vq{+F%JrQK]÷#¬2ê@ð/V‡ùvHô‡Œó:;é1•³r œ·g]+š'JîI&-StWå´^Cv:êøºIÃW5? 85&dÑ}O†ÊŒU¿Kß`…Ñ {ÚòG9*‰ä Îø{v«¡ÎD{àÞ3¸)ÊVf7‡Ì®«òÊú¡å$TŸâïì»…»#òó:ì5Y†ñõ÷ƒîW`À 0†ºªÙµÕÆ {ÎQÃ-}Y¥Å#†×R¸ˆ‹€/= ~º]ôÒwJù~퉬‘‹Þ½÷“…ÁÄ}é°ï#î"ÿYSÊ´£=€@Aíp§¨ïa|$¤Òˆ²- ÄvÆE…UÜvÖʉ²=øŒ³Ð‚;ÒÖk€]ô¶'„ÐPã¹&ñ KýWãEü8uè$ux·Ð>²»v/ë•°›&žFp—Á©˜|½ÂïŒëÇŽ -늾eöÄ.trÔ›-ÀDöŽzõ^[È£”œt»«It8Ï940,Gn²8¶Ÿ9F$~rbo¼«á¯ ¦kmu€÷忚\@]´¡Ÿ#*Ò͸݃¥tš;ããG÷##Óª1z# 6] _þ(äŒÁ°à7va·µèý‡îUs·ÈS³ò‰€‹ôFaszyÂ…ß9Þø°²GÈIÃAkEv ™@|“‡x]Ö` nr¬ËöHp±K0N4_Æé$ùú²z²Õ£jL|r/Ë.û™;þ–"¯‚#‰v ̇Ë7ÐK dƒv/ËÙ.*d¢ÃZÅø ð;ãÇÁ_¾ÐÀ2ô»©µy¢µžHi}yãCÿr/9žÝÜ]¬ˆ7òæËé†Û°ºÃ±tè±ZÜIÌ›G°èpÌ_GVâûó;°Š”ªˆ-ø@á´Hg¹8xË© ¨‘»¤KqåS&„òàä/ʨ©ÜPMsI)>­‚èéïÆP˜öâY'Àº°ÉˆDɈi¾„LµÏ|O$Ú«'®0e$´ xÔ•_8VjÇÞ°tÔTãW§ôä,‰@-φGU¦¤‹CHâÁ…e¥b‹9 "ŸÇŒì ŸÓæ¹5¶™Ô˜—Ày=u,í ¡êæÊñÊimEeƒéxXUk¹sf,à^gL ÏÃÑÌðPŒ(èø~c.zÅñ@릡*€¡A:c»ØzÜNáš)ƒÃkbømB46Lá$½½ÃïÌi1õ¸~ªöºû;v!ZÏÃïÌ9ÑW¼ À¾!,ÉX$Rˆ0¨5TY¾Ù£,qKaÑP!㽓‡ dOdÅ.òÎ>²ÒÂGW×!䢃l˜®;bDýŒü<‹2;PÏy:J]G»©ã_—1’ÑXè*A]Á:ë[ÆQ¾NW¾ÌÉqV,¼=p\‰äð\F÷ ì³g ÒûÙ¤·¹’a¸Ê+pdNˉØà"Þ3-¯Ó"g®Öõ`fìzÄX4Ã,Œ‘ÝŠ¸ˆ²hŽÅPˆ‚" ‹¸0$ÅÅdÇ~ã: 8™Ñ"òkÉ{ÍÍÑß<²X²Ø+:WþÖ±dôaä7·¤`¯ ÇcåÂïl„A«di4BõЏiÔby;â(ê‰AÍD(°{¢@ó—Pj"m”QÖŠxa6ˆ³ žeÉ­,`4%M–¼`Ò.³\ñà- <-\œ†>]ôtsZ¾G5,K£o)õwtÔaêüYèæh2äêÅ Þ&»‰ª=Ñ0h–‡s³tÇa‘¬Íb‘GQ pç¼ç%4ãɵÃN¼/ñ$Ãña—ñ1³¼©b@yˆ§DÙÌq*1 y–@Gø4+²·‚Q|\Ûù¢yba°úR–“è½ìs)ÓChfÜ—†©õÙ[Ófî'Xá"ç¡æj55ËÝêØ8RÕ“`8`øÙ–§¦ÿ}_ ¾'=­Öd}!ØØÙÄ ›e~XHGØ Q /‚}÷£¾#(YŸ%;˜øS“à[¢v{&àï~m‘øcÛ' ‚’&2 ûV¾=÷Á kÛÑՕ烧¼•ÅDòÉ|ÅÑ%‡”ªŒYËìC¶ ò=íÏD…Âúò‚-™Zw 8éNüâm]ÇÐ+àÝÓ†]œµ¢Bi!Ý—UƱÎè»âQŠå?ì `NDzÄæ—ó:³ÛŒn ®Ñ”ù\äéq„d»0![´Mq+ÂvN(mŠ £¥éËÝz÷ø|Â&)C rž#º=tCë÷ФO\MÞ;þWYÑ4HÎ] Òu(4]¶HSóóà¡iDÿd×'ªn”Ó½±ØÓêW (§^ ¨*nèBwÀêÙj@ëNÖôÜ…Xß<¤<Ÿ`¢¸3`ôÖ ~#ïãÅc)7BüË_%MS€¹%ÌÐ3lOÐ:E¢ô·Vù_‰ôe_5òìGï¤sŽZðëç8Ú‡Þ£åFË&RÉA:†!Ñ%Ђãü8óá{}ꯡvŒ2¿þv>ÔÝ{ƺc€èZ\˜¸;>ÅäåpqoœWÎ2>Ý*jÊ>*aF¶ìzÇ Px‘¶,LU«¸©r.¢gU c÷û`‘9š¸±®,’z$@W°,›   ÂCŽ&‘¹c”d…0܆Ú˜®:ØÕÅXó4¹@Žïáwæ”’U%„Íiõ?íaG!ðœÀ÷!ð/›ƒ|»^½ºå²Yõ‚ôƒÐC}o¡Óm$~¶€eêù‚g™º¦È΀”*žû*2À@jXç½ò$ÙU²[ † …$ƒÎÛûög|9<ú³giÛ<ŠrÖ£c=¼áýa`mœfòM×£k†¶7yÿ\ÝkÖa…yÞ´ºåQ°„þvþN†—…å&©Ê® n`BR#¶è[90ÝqF>S¤fd]vÂgb([Çô‰) L ;a†bñõ‚†J…üÁÒ^»Äìó߬w‚Gìðt€ùo1êY¦\–Ž4MaÜrK¬a·6q»öA>aÿ»6½ñ ïÁʶ/Z† ûM¸­Ú—]¥¹þI…·‚¢KÌÖÌ.ܲ¹³ÿÀ°°€Äþ!j”kR„kyw:;þ,zéÁÛ»Ññµèy;µ¤>:¤o-ëXØÆ,÷‚Çò»÷•X »K aཟ–ôvõ€þtS»n@D±*vøf*€xÔÑ‘ÆV>¼›¤ÔéYà…f5 øoÀó÷Œù€“a¸—]èÙ†Ð3ßÐ ·b]ú…#ÏnžôqVìÅrÜd« Æ Î×-ï'Ï›ñn}Ël;tÄ‹I·ú&è0¦ÙÈmœ?€l@«ŸZ`mp?Ú‹aÛ3ߺC:Ê’VDG+Mt\ï—ygÁ_Ô,èØ•{[ÞôwšûŒ¦Ã>÷ B6°{>ò¤ Ѓª¾À prh<¯|i:)·›~Ø °cpà»É” )£‰Ã¤6·ˆ ãN³o%Žþá$*ñò–òŽÙ·á‡iÜÆCYWêÉU‡sýF/"ð-õÐYÀ_¶±»¤DÇÃðŸ þ²ð^v¬ê‡ žaôw~"tŒL¾ çÝ9èϽÎv„œ„‘!ä"-z<‘ÐÞ]sÒã¶©A‹ÞNí§&½m›K„EO§bŽçÑ…Ô7Ya<šüøÑN ævëû´ œpàT¼Ñ’±zp G§‰Uâñ¸¼“ƒO‡à†¿ÝNðNëqÓ©pP¢SØé(0!$|eØ¥ÏØ°IÚ áÄÆ~:{IT^ÍüV2:¾a0Æ^"ïK(¢TBKâ”x¥DŒU²÷x—HÙ»r+ªëU…Ä#-·¬1ÙŠ½ *äÈnÝ3T¡ôÄ’-ʇg1wȵCXm>mÙôãQœˆ9iŸáÃò¦á/Ì-ÛPYF´ì‚ó£bNÊÞ|ÄÐ)ô¼; Àsì=)ûÙHÜàlxAýŽÖ½Sψ÷9²ªvbð¨]Þ1”NY”úF‘´g¸YžÅÒ:ŸÂ ~°êþly=>­8ÎÊIº 쌮Mê¶šaôu>nßBß-¡'¹š èÜ»?*IÁàÈ\;ÄÚ‰?Àéñò½À Oá­‹‡Wÿ.œ î"Äee~p¬çp®·äš]C¸É=ÃSÃe+@w¡cÐA=3÷Pn&¤$†å’E9taÉ•Ž.¬þæZ=M1ÈõT>0®|ÕCÑÏ×ôÂÿ„O$[£ ¡^´÷ÞWƒÊ.ï5TÂÖ…Àèšµ`mÓp6ÕÄSY:Ô°µoãÔO/Œ²ö»uÆk“Ò ¿¥ ¢ß‚ÒFç~ª !àTûºV¿pž”Î.•×Û1×2¼Ø Í ¶ .º¹™…ªd¶B`Š®Ø„·í3õb~‚ syTPM Ó;×iò« sw a…‚M§8(£\!bq¸Yè]O¼Ô<“µÉ+Ç€hvRèpÉ;‰KÞe-Œ„Jò¤÷`0nå¤Ó㉞JÄôLNÑØE**öZÎÔf}#+ó4¹xÏTŒö£#gMj¹¢‚T DºI{_N;±ú¡½ªÒöV4ZEçÍK©ÓRÑ„4 ì¿6¢†b¨¯BîQÿÄòÔK§b½¥~ É_ÏDÎ¥:D úu¶*2 †î²WmòÒõißÛ9´&j¶Âþª‘÷eÛ½¨ÀÇ4ôfçÂHÍh›°Ãz³{Öu¨ÝÍ„**óJUZ©çB˜Ê=žTòeb1f^]¼†‡fO ÔLÑPL@…oòö Êv×6Iã‡w$m:`–5d*ÙÑ´ø%Ê“Í –ÙìÒ;oe¦“Þ›NÛÍ•ãE`ûúGßLûBãêî5뜠Jk­Ý[ÖCq Ô‘™_Û`7Ý]‡žTÝl.ø ÷j¥ÅpŸü½Ì4¯ãU  '­G0–0Ÿ ·=Yp¼:F¡B¶œdÞ…Á”è.”ÞܯÀûfW ýÊ å)¹«Ú_<i$múÔ%ë6¨ŠÂa߀@Rmx›1i+׿5"X«2竞bÏví€o,Ÿ)¤ä$ºó<*ºK`#+éà¬ÊŠLL†æM<ŤN†*rÁ‘óÍañšMw|OŽ8ŽÃö(ƒ4+ÃF´Ä ŸŒa6`ájÓ`Á^($&nŒ¹àÄù>*·øÉV©eñ:F7ÀvOׄùÁ§yÓÞÉ€árO ï#ºdnÊõÀæbmçç¨X‚}0<¯ÅÐz:ÝΨ8É ùy+p}]¢'ŒQÜ&_®o¾ž§º beæÁuòeKŽqš–u÷éL3„@%‚‘¯ó<ªXâÕÓÔIILª& í/Ï&ƒÎA£œÈ‰JÙ&-+îS†T>rÇ®Odfyí™ o¿³r}ÆF³è¼¹ ûÆ(û©,^Ù}¨J<¾Ê cèÙ½¬V5‰L ö¡“ ]‘HÇ9‘J•GÏÍíñaiéE–2Å+IÈ/›õi‰ý†Ùì±m#Eh—ˆB§ áK?ÐEâ!0÷¡ø ¡ŠÄ yíxF§ý“n WùHTxwæ£!ÂÑ+bäD´—i †Ä·ñ*Úü•ZqaNôó’‰n6&úYô! ZÛ  ©,;J;vBAHÄœàoصÃ:YЙÔÓT4ëÀö€ Ÿð÷>ÈÁ‡ÈâI úÎŽúì´pãE$…îSðOX#5"ZNoÍ´z¸õÔ‰il(³‡Ò¯ÖÄ#QăçãíwSt¶ÛÜÑS Ö–3Ú§§wFÜ!Àyô d•·<ñN3$ÛÙD´¡Èõá5‘ìvŸ:&7U:cœÙÁÂ7a{ÐÝQƒª™Í4šžÚ„µ= ,Ÿ¹ÆhÇ$JÚ»iâ0bä†Éôêå¦î"s¶ EGPsöRSjrîŒ=Ÿ¢i»£‹î²˜ãlLR¹ß‡[5Þ›Y=\É.Æ æøÇ»Ö vn£¼}ÌK‚\"öÚÔ¼ bbB†fäû€ì«M¾è&µÄ 7ÆóðªÖe-ް94b¬W¿ +ZꃳhId»Ù’}UË2ßÚ²rŒ=g³hϱJKSl:¿~6óHÔØ»N m;›Dbyåoµí¨’ÎÄñ$ÓÆ³IÄ¢H|·¢¢×.^ÐÁ‹Ù$íû›Ô{ÆùÙÇùÓRÐÚ¤>6ï±U.ÂGÈæNHÖ)˜H0AŠRêT"ÿLÞÛIVÔ u€FtX“™b:ÊmK¼fÁ`F€Lì%]rAc5XÇE²±Gn²øV&‘¬]ÌJS|/‹XßêEª»êƨӳ%Fªá 6±an7ÑÃì­h>Ý,©ÍJø„×t€AëgëÝÚ´´`—”Wtf’n·ÛT€y×–EIWœ¤ÒRÜniÝlwQyyZxð!’ ¸Ým¢÷^YË€“Âq Äȶg\Ra—“nw‘CÅ(½…5ØŠ½{ë=¥ØcQÚUt;”ÓcÒKLl¡úZ!UÆPRŒQоޤCuL¦à4B1Óz—’€,ÞGÀŸøG¶‚ÀÐÙÁíÚ¯¶ç%ÆNnÉBe‚Œè€S4Ò!ëYttØZNQá8ÚNKí"ÐXð @Þtœ’Å­MÀm4%B/ö·bÈØËl¾ä¤ ¼lÙu¼*;YX\ÐÃãR]~Â<‚%qÁ2yøÈw&®³˜Åéj?]¥­NªÜ–ÄSøþл;¾ùv^©žT*Jû3k7Ý­·¢ž(GµÆ@8Vò(#îÈ8þ„´äâ…Œ,lÜÃØ)Š%TIó}·‰²)€ó &í";±oî¶áSö¬i&`¤Üm‰KìvaÊN°Ç´µ4ïwbÛy÷·P3«)˜ØÒw;1A“6qeçôú­`‰‹Þ]sPĵ‘*~k¢¨ãÑnyZ7ÞpZSO…ÉÁÒ\Ðã½íq'®Ã <É41öKt¨¾Â¢4Éô»½÷lÿ³Ü/<¥/AzGl û$°£Ê/й\ij·Cê½òÖ\ÖSÚ\ 6'Ü– ª²t€Ù"G}-D©"l°ïÉ¡8iTvÇð•çÁa`jè#ì†øÍQ,DïšXk”è˜Ê:Ž¢ŽðŠ:™+JáùcXÙ¹]ùk8‰M$¢e?øjYr0ïA£-µÝ9x9Žû^?TÃK_^YÅìg¾t»‡ÎÉ‚ÙäÅá´‰žc6Ñòb\Dû¼ ý¬Ò[—ˆ7£’¼9Y¢à²&,09 ò¼ÂŒZ¿6†Ãƒ™‚£%‚Aø*GcˆàÛãUÿìí ÇÞ0–œÅÂAíM—Mú´w:æ†À…bSÍ:t½‡5¤¢¢0çݺ9²—'ÓÀ¢Š›ß¼á0ò¨¾Æß„P5̓gP¶dOµÒ¦÷fT>r  ,”–?ÄÉ–\ÉØe¯ü^Ö¦i DTÀ±¥Jû p!øO3Ú¯¾=­x†î ÐexÙOëøÌŠŒõT—xó»Ù{/ôíwÍßL.oþ“:n/$ǽ_;¡8 sŠ›F|d/.Í÷~YMºÜ¢ÃVé~/š¸÷Ôâq‹6´Ð¶-¼Gª¦ZW€cŠqnÝï—0!L­Øý>rW §êXR Ñ{!î÷!ï&IJ bµY¦eYA*®Mö‡è–ʘò‡‘ ®ûÃÖ#*•ÑTŽxûˆ çÌ\±F–8¶rx°¬@Óð'õ‘Sö‘‹rÜÆË¶€õJÎýa­ÉY«BhIöñkrUÒÝi§ÉbmˆK½ÿZ[ï±ÓÒƒÓÚW÷É%2š‰OQh “ˆb|džÓÂÒ2ƒ Ѷ°Nyïï°ÒÛ8±`ÅmÌ>"”lGÐ鵘•c®Ý4¦¹t;Ë]¾©à"^Ÿ~¢#±õ²Æ ¼ø'ú`ÎnŠ^Ù*ùúŠ!te‘¬)KÑ¡l/.YöñKUÄävšd ±,ª_$fdE†sRh¿ÿ‘úxk(Kº·†ÓdZ…zÎ ¢¦€žÒƒÓ:»„˜~H¼?‡±¹›Á!IfØ{;bzî†Íc’E7~féqÄÊ<ÄW¦SXF‘6Õ"8d¢ã²Ðý–ÕqúÍUËù Z*ãhU¼œL¦1:4š-êPs8FÿpùXp°9n£{> 7/6ŒŠããq'`vÑ­ˆÊ9+ÀM£éÜí\T-î¦hL %Í«ØÐÑ œ¢z,¦&-0Ï5Â1z-öó¤è8•âZì轨5™cfÑÂLkñY׌¥‹á•Š ©ì—ʨ˜,¡q¯Ž‚YÐ Þžb¡Ýl ùoasd•Œ“ëæžX©ìÃ)£¬1lÉ$E­ Oe¹h{TS<)[ªöO‹‘½âèÁb6ç°)úeÉпƒÁß­ þ~f@ç¸(èH“Dâ–gatŽº\<€ƒÂs7ò3;Œ²ã&rÞ])Q{o«¨ØÕ$ÅAÏLtxô­‡AÞ†__¥e?qåU_±Ï̬ˆ¯åM…#øh&Š9ߦérÚs”‹×}†¾¡7‹7wè†ò•w+vÚA_³|@”ˆ–Ao&žÂ ¦ùv‰xÄJ<…‘?{’ÉÖæB.1àO¸y[/(ÙÛxÒ…nõ²¡óÈ%,»o÷^Ø,óþªà%¯s±âŽ6ª»îüY44ä] þD¯CØe›FNHù—¸A€ àÜ`L²lË”KTîÿÙ3­„äÌ*ØÞDÇ.ÑDZ-T‚Õ%æNÄ;¥-ÏËÏ<¯›‰ĉøÚ wdÒ[^b¶t^*T”V_r«æ©\–^bø>é~Å/âär‰Ÿ\Ìâ&㚦KÆul÷¢nN@ÀÉÊš]íûfOª¥§¹0²ä¹„½)c ! ÷b‹ýôBî]áOØ`gƒº*þ,Ú[/Ù^€Gý7† ¶Ý+™ì•°Ü´ ÖÁƒu0A¿`þÞMTkÆíìõ—Eî¬=Šð%koRÞ¸¿ð%׆&‚e'~á1ÃäŸ=Å£ö÷˼y½3t÷ŽâÑQú舎h&³uHz¢=A°…ú@¶mÒÃÖ´³0¯rK;à ъ‚A0£^#òNT½s™€ˆ§úãJ¼¢˜|æJ¬l·äÆ3Nh¶[òNa‚’VŒ_ÔÎ`Z²ìçðS™½§¤èå#Â×ëÞ/I±Åbï»ôòœöÉhöÈÔ¬kžÍ=i¬‰|ù~šzüQ´ç¯'µ¡åu8 ̨ å)Íü ¤b‡‹ ³ÞT3pÛYgb¿,l¾µ7:ÂX^*)0¹ÄÖóì~(oï.-jÆu¬i²¦.KŒ­ÒÆRºœi¾vº~YØ11h2'ãe‰-«*IŽ˜”uêD–G}blÌÈK†ð:Z¦ðþ¾/«ò¶*Jô:ÀA Åßau­šOš†ŽzªI„Æ.áaéÇc¨8öéƒ Åùi'ު憀DX½'3oŠeaë!–•&E;á þ„=Á‚ø•¬¼uƒõ6j’fZާä±v“z¢Ý',÷ÀÒ¶žn—Fe]}X*Ž{©×´¶úô–/Mš|wþðá{¬cÞj²»àÒEW)NùqÉ¥‹ü3NŠKa,£Fç ñ£(–ŠÃH?ŒŒå-_Nªš­'Rk¦çp¨ÔZ£Öœ×&ït’ˆ¼‹ÀòjˆUn·#–b;™u’I*†”-‘@‚O!Ö‘×Ŷž·AŒÖ r²$’%–žÒ%—D-/<…/A4¶ÉÑÛS¸¡ÂAÏŒkKÙO¶JÄJ¶Õ! ü‰?Šc: ^]›Ú¾Aö¥s‚= Øð‘m¶ à6„K²e|C¦Ó~Ü!€Û'Êvßl÷<”i¾BÌb·ñò?EKÑÁ6Y„O:ב ƒ™ÔÉâ–:óúô2ÖdÒÑšãf1sDÃuYXYÝf‹d{§,{¹‰Fø0„?ñ+o«´u!èÉ‘<;; h¿{DåHÿ:ÔŸXÅ&KÈ›N—RÙñ$p£>ì½åéyŽ·Â’€‰çfa}¦':¾ γ³ßò\`÷ U(St‰x9‘y=ÉŽÏCÓnqUGÙe'*?¶ŠU0í÷ð•]b¦¼ú-˜…á MÙeÉm¥cœ²èAÇOƸŠ/K®ùíÂdþ— 5kÅd´ü«zrä"äâF‹çQ‡ÆwvÃul‹8"‰ÕWzCÁóŠºS¥l1Ú“:äA@FÙx s/$²há1þD½Mè¡›©·é¤Êc¾ñF¿üº¨bËù:¦ÐÿyRnœƒùšÔÌyðñ-婤éfìÍò Éiyðië—ÝÞ¹9(ŸjDó &r_¦zÔ}î¦i“&€8ñÎ)§¸¦‘‹gªyü™ª‹À=Ä"×Ë=P  Tt‰=¿¶uÈ£×HVæ»\ìãy|§bÖsø1A2 ”zIýÖ Tž,94Ve§¯cŸ¸N¶"ÐívçÕA¹/<¥CÍK G¯¬_œ”9ÊV<ÇÙî¾¶þzGݘ`õpçm)Cˆ¢QÖ&´•OA ‡Õ+ùïEs¨‹Lý¶‡}`¡=NéOV}yçTõòz˜´ç}8ÈOÈÂ#ôåô{@UæyA\N"nNór/ëFEALïáÊ—±Ùì? ÞíC7î_ÐUå+~}>(tëLeÅÚ—óº†í¾Ó^²˜|÷²m›vU4mùÞÔ=z!&¼ ±å9úiŰ髤bõÍOñ[™ax–®—÷Ê;ñêg·÷!Ð^H½¤«€Sˆ–œõ+Tv=k{ín¬Ÿ$éý.èVŸ€YØ›…€ð}¡CùåpFŸÒÀ¹›Ê;êþ¬Ãnýas ›M4Þèuh‡úŠñï–‡ O2 ÔÇ uR)Stl«øDžžäYÚzÀf¢Š°UõΩÂoí÷tkóVP»È_!ü ¿Üs+uTÓ¼¾hª¢¹üN F܎΂°ÅÌI†Ø4ŽÂîè¿á£)tDe2»Ú¤¤Ž¿°ˆ—_Ýó¦þøÑóA¾zøPÛ‹*Ñð[÷VßœàNóŸGU„Ÿ?ñãnëX½êËö²“€ñ¾´—´Ç­¯ÝèÑäíqÍTE$ø3cÚKmÛ^#IÑ• 0]m ë à++ô±¸®QÙí&—ˆ˜ ĈØ0 7úåµ ÷²&²ý‚ßñ“håM%ñ—V°·bUÜ1\®X¶7μ12Æ–âáò˜ˆyŸÄ/,º3JËûª\ô1‹ wD33ñK›pï K¹µ[uœ¿:ðBÌM€oøA€Çå: Àœ$ž 9U’㎀OA¿Ýè!ÝOu5é!F@ŸÔ-Š,M‡5œˆ™%a==í«”HÒwçŸÜqÕÙ¯oŸ þx·¿Jvyƒóy1Á]^édèRßdÇðóµ‰kÃtš£à°D`z½4ýªN&.IÒ²Ü1Ö#¤àBÙ).óë²–àï¤ÊYÁEòSÔζ,ž³2kËI´ž;Fºsíè¯P8 óàê/'ôËV2͸Ñy“ùï¶GBóX¼–Që‰åÄÜÍH”|•°Ù5˜˜U`C-:‡ï9¨‰ÙÐ=°ïKÜð(ÕÔŠ ËÍÉuÝ1÷FKÖv"T”ÜP T‰E 2 ìw0•гiXüeëô7ÇS ì(”yF\.Æ{ŸŽ«©ŒûÓЯJÀ0¯óaõƒ“J˜1ó-‘]ħLÕŽû –ù–,{þI„èZåòð}ÌÅn—çÑ·¯%ïkvG"FFËYVêÝ¢3Ï}U –ÄIœºÎ§<À‰¿€Àvû3ã …Ï}‘%§éõasBÙ9õ†º§ÓÜ–üéˆò°3?`€ëþ…dz_7¥è`5E B…*R2l?gA#é‰o Q<ÍØ&ÆþD·×ëÙ "š•5¬v=¡cÙªä *ñ>èøUJ1”S°É/Ô Õe¢:¯ü¨7ƒEx‹+†ÎLÄ\K6Û€:øËö²™V¬£ñiU*ë ö¸d³[¢+-€ý] 1/ÐÆ%ÞÄáO8 p,?Àˆ°½$"…Û<“¶ãžh‹ÄëöÌÑ6NÈ´ƒäxMÇ{Xÿ‚qëF”›&δ?"Ð4$à.çdžöjžFÌÅÝ$¥^½#¨ 4 GïÄE#À/?NÞÊyS؇ŠÄgèQ'-p²'ÀG"ôw"B Ÿ¨¡’F‡–=ŸÔCY*îâ_~H)Mç6ÁÁÅO9m‹0`f:lñ¹5 û¢LozzðЧ}ÓdÍ€ñ¯Åv—¦ÄáOTúk†¾"ÃSøs…ì— Ñ,Í·¡ës²O|Ç=­®ŸVL4ØÌ®MËÞ³ÀÞo é¬níó½à÷USÓøø1T>TŸ!;AF8äÆXò õißP‰>‚cZÛ[½JÐEkx¶Ôì±z”ïïqölK³àOÔc–é9’ó›&Ðñ;·]Kš>†Òù+ÃN]žÄœ“ƺ\`ä„AlÐï6JôÅÉO¦À(bDÖXAJ#zXâÝda<œ ò–ÝzŒt({ ;?‰:¼‚w@]˜l¦š+UC}uØ„xŒpqg§›3ç°9ŠjÂÓÓÆ:nþ“ª¡ zðûæ¦xµ¡Öˆ‘qY›Å^º¾Ò›=>ôÌþxÏvÞññƒ¹£äÿŠÆŠ´vð'`EgªÏë¬KLÀøÖZ= ·2ëƒæÎQw 5ˆ†e!ö¨H¶'TÈÖ•ÐKÒìè¿þ‹ºŒ› ðGWVM-¥ßMDq†³SMd‚¯IÖª¢“`E'¿/Wo£$N´YÔð@ÛN;Qå>Ä+ƒ5ÛÀéWºJR±d'¯‰Ldè–4N8ÝKÇÛ2÷ÏÍÓIÔí?Ê{›ëB†›ìÿRWM&¸ÙÉÁÅÛlð»špq~8¥^×¢˜ûhMy¼„?^“w{àÎO~É Ë+»ßEÝ´Ÿ¼‘ÃIsqpy/áØvçF›îÁRn)42&Ž3,xíK73xñòÖ–ä Ÿ„¯ÚòŽ®ÇTV‚<ÿ£pgâ%oÆ‚¡¨&Ľ0 {Õt賂}Ë*»þ9-{ŽÇl¬ >w ßf¼Òj²çª/+JÊÛæ¾*ÊÅí;„=/¹!1a«&§~Ꙛ§x¤`Ñ|ïKÛ˜0xÁ¢•.¨g±¶¡ ü.䔽•‰Ñ6R;ªdúÁk:/ø>¸ÀHVè®Ë¾ËÌehV¼ª¡äá¤]Á˜z¾íŨÏ\±&ïÛ&¯øg©â„ê—<6ÈúVNa¤j ©0T¾ ï/þæñN¶JêÖz›Ö‰¯Ò¡­°º-òmøhrôV— ˜{™½¯3•Ò¸¹ÅzÔ÷ý‡ —ð'jîa(D*vm*˜'©¾Õx,Éäƒ÷¢|åx µœ©²MȹÁ—ÍLeïü^}bñú ÞXÙ&¡Êü¾â–´¬+ú™ªžÐÝXÕv'ªŠÚûGfúPŒès訶£¨-j ­­‰×–—h¦Ì×;17Ž^ )¼?JO£¤V^àž¸¸Ç]WøüŒ|‡Fór3Uùáëó»…±!®¬-yòªi‡®+Yý2Ü ®Í/qÜ„Á%÷Û-ê0åõ³d7da¥ÅÀ¥º?DG8Ñ/Þ°&Ñ•›¸UU‡n$“`5”Q%'QIh¼b•MEÞ´+Ø;´·}Gü+.M@9™ÔóÍ^´o÷Ñ¼öÇ>² Ô²$vNhPš+^šßÑ¡6ù–®´øÖ«¥Öf€}Ó[F6æ¿q©lÙ¢¨&XJ¼|);y ƒ Ú¦‚u‘øÆê´k%}fʳ,‹§+,pŒXdÓ E 7pyˆØ|&v ,i;÷3’ä  ·í|ï o¨ÝœÖ ä¿¡ÎÌpEèLi’Ê1Š ÅÊÆ,.^?}j2* ’¢]5)} ¼jœ¤wC?àìE·íãÝf·À$]vàAtà!n¯ÚÀ±Åðhƒ˜v ¿"¾bÄ?á–oG,ÙêJ˜]ÞJ\ù‡|‰M˜U²h²¬©3*¼!:¼º‘ñ^V¶®e­4ÙE'2¶‚?чè¼/ÊæÛ„beE†çÞô†`Ï6êì}Zü:´ìŠ(oô7At&ÐCöÑ4Aô;ÚKDr9Õ!¦äÉoC£"¼Q~ˆÖñu*~Å ÿ²Á—6phˀÔ7vÊ _Û@*DòkàØhDÈÏb!œ³è^jBB=Ü2qçuçV7ùêŽòDS£ÔuÍ»ø-—éºâüãŠel-Ž'ýóE–}"À‡ ¹Èayî¤ÊØyª|XKø¡,c˜fJ; .\#ò׈¢¼å=ØH‘k‘‹þâÞè­zÑ0|PšÚú ç€ôädh„BÞ„}žüÈoä3Ù,µÏ?°+ØWâ!Ã/±"}8ÊÛT EêƒOM Š%¾÷c@/gI•(8jyؽç9×rÙÅôRþD Äb8hó^Ç«ºÉFÅœÜ-꜌e„³$äc çZ0Ô‰q{·EêYY ¦OÌÅÙAû´ƒ$ÌSLÂ(óYS1Ñ(Úù>´¼É†#S7M`bÈä Ä*ØOV¹„éX­FÎôÃ?ºÄU58Ñ è?9Øj9þ“£-WÃá?9Úz1–ø§‹Ñ#™7Ž;á-q¼OŽßQL“ãwO“®oyOVšÁí`üD­èã?:[F(¹%Õü‰Fß›Ab³tßd'ÑIŠ{mæÆXQ¤;GËÀø7rHNbó>ÇZдÈöa4N®˜“؃–¼ êËBÌÂøDλDŒßi‰’cb.ÏB"‹‡Dö!ÊÀ©aÁL~ ÷3)^ù%¨ÍØ&ƒ„} ZæL,M1;…mž\žögRúdBúôúŸ©TPïy´ˆ,j~&»”‰.õÆi‹v©ìYû3ÙÁ¹p£™Ï¹ÑädñêØM»©t,@¹eGp 8%î·'¼gI?ÝVCjãÌxç"Ë2õÖQ@mâ€BUlû` ¢x A?Àïžj8‡êÙ’ŽÆ>R`BgŒs³Ma‚*8œŽ‘¨x A?À/ºvÝò ÏÕ/§=ùv $áôüæTmïÞŽ‘N¥C™€ùa›“Âa›³à(ö²|¯=)«²šH#þ à؉y·ÛìBo1¿ì/è‚ßOñ.6m ôüâÙ{·Ý…BÁ´½;Ld"辦ëøÒú}Ù¢ùl!¥€zVñ²Q“¼=?|ø¿Vý·?úÛêçoýºúû·_~ûóZa´áí3ÿûwþ–ɾþþËÿþú×Õã÷oÿúûŸÿñOò/?ýûßþüçò_ûöûOÿóo_ò¿~ýçVVׯ¿}ýý§?¡Ì¿üþíWLY­š?ÿíëïÿ¬×F¬B`±Å,V†ø¿®Aƒç£€ƒèzg¼&ŸÇð\ÓSâw¾’¹ÖÇMúP%å}KŽãE¤îãz”>¾ø ¶Z¥EÓñFšÙ vU¦ê«™ñasJðrJË;^©w®üð•uÁ[|»Ç~À'ľ öas&«”ó:ûŽŠ(¼j}n†rôˆ5eÞ+r62ÿyÔB2ø?2D#¾|¸Ï0j€‹ˆÿÐ4š§8o†Mè7øÍ—Œr;Ê®èÓ ÍÐHîãGòðÒ7/d5C³l»FGðË¿‰ Wüžð ¸»u4¯¼ma÷†zÐüž·¦Íäâúø±¬_Ë®Ä;”G5tˆyøŽ~OU¿ÿÿ~ÿúÇ×ßaW~A„ÿ8G¢my ó0«Ê®©> ­›{9^çu{ðd"C²p5ãÿÉU+×jN7ð»ŒRa†tôËA^1hs„:òï™Íz}Ó­n^’–³›˜wòœ­ÿ±¶W¹tz\Àïyù¸ã[áqÜá|üh%œÿ¾ÜeâQ°8†/š¤»hÚ¾@?t™Áz}c ³¿b8@º è Ž?è½äN<Ñd‹kœ¾ŸLøµ¬á—Mߣr¨ôQ´¬ãÐ@ný#;]/„ð?hó@jŠT8ŒxÍÚ³+lQ†_‹Ë¯ÔU€MÍÖF#ú¶tÇ̯çä\ð9Õ’/nÀî¸vºz“»-ȱþ3Ó~sÚÿŸ;1]ÿéïÿöõׯÿÌÿ?8üuzHú§Õý+œp {þyTò©ARþ'Ôñ˜Â%Èê û‚ ú·_~&ÑýÿþCHöÿýëŸZ–O¿­þËßI¸ÿºú÷?¾þ×ÿ†PPÅ€øú(ï~ý+DW×™€ÜýßVßìDAˆJþMC9v‡3`½S›S@Žúfc]¶ì•ë·ÒÆãè©ÉìçëýX üž"5¸†–Úþ°/ûÊ2±Ô9æÖ>û’cgªà¬àëʵÕ0ÅPg-º(š¡Ù‘a·Fe üs®ØÄÖ‡$‹µ‹Ì ûÑ›ì°úç!sX™ü@;ùÕ÷ü  ‰µû:‹¶'³tËrèˆCJ¥ÛxOo´ wE)ß×ÛÉ"a÷{X KnÄÓ–’+^[…{úGÚú¼Ã;¥žÕxâÁù{ܰè( ÿ]yÈ‘®Ìª ÿ}Å*ö,øê ½V¦ZWzaa]Ë ž}‚õbëD8¯“¥s[.¨áÞØëD‰û;“®²ÖÇÓzaØ´n@ËRñ‚o);"uY¢Q³-_£SŠ >`Ü5& âÑ…þÁÑz7 ãºiÑïS¡Ú+çûxåG_åmë–Ÿ4~™äßY–aïóUqž‚SÓŽÂH¦;N€d]Äæ¥¿?úç 2lÞ(þ–ƒÉx÷a}ÚlŽp\†Fù…ª­õiŸèh¯#¡0ÿ ¶b È ŠÄ„µ-¿!ÃsJÖ³ë`ÐKÀåÇòßÝp Oè]¼1¦ê­1N Ljzë´³åà¢PQž-ìJDÊ0<ð£XŸñ…%ü†÷5ư––¼†¯*añ:IÈ]˜Øìóv¾ÙGÏÇ'Ï¡7ñM×P>jß™]sgV` ˆîeüñ/„?3ñü U8å¤{jþÃ1$ÿ@ð²!Jþ6]tåÅò¼-SføìS9Nl>¿ 78_¢¼˜:_.Ëôz¯)ìc¡#’â1gtŸ·>‹°á¶÷ñ˜œµ]â4rÇÉ ¬„£0tYG·h ø"q€3“Ë$|Ä(ö3þʬx´*nÄúb„3Š/Ãs¹¦Xßß‹a8å__ÐE:üÎ0kŒøî%b°ZhGGØ¥lÀ¥NLY_DÞafe,òРë$}: 9 ؇Ç-ÖqœaÛPè`¡ZôTv^ºÉ$¼¾B±iä±õ%Y:è†ñ„Ï”þÙ)mG‡[_Hr½¤3"¬=ÌOªß€—N«uzÆds‚ªÛ<6X~Ý×NóÏχHKªh;i&äsã0i'L‚¢”TRðgø??\‡ö>Ü Å2v[áD*É[»‘C‰¼˜¥ØÅåôbÄPØþ;è²§‡7y@àÏ‹•>¿jšŽlŠÑqíg¶×Y®2{BMEvXºÖíò¸+Ñ‹<ÈÃot³Ü—‡9®¸Yâ\9þ!BžA (v¦1=/ÓOxÓá dgÛ [ÌÍl5߈±¹ïÁ ÍoÓdAøŠ#<ͺtɬ›âp?¦ß¨çØŠ ^æñ÷…"p…`ê'‹T’—ŸyöB¡Q‡/¶5¢°à|°ìÎV× VâfMb×»™Ó*Š#ЭwÖ:œÂ“ Üì̈½°ÌÀ{LÓ«XtëÝ…€g¸ùv6$–uýp½=0ÃÔ DÜÝ7>™w}@wIëÃ<çótŒ)Er+¬}X­óJˆÉ&»Ž4lüªÂÆ!‚ß²í”ü+Oì\-ͫŠ\¬+ßtw3Æ ñÝòú<¯µðÐE`\VädÂÿĺKçæd%´ê´¬Ðd©ÀÇÉÒGÞúò½Öj<%ov\ »¸AMíîʰ M:Ð,} Ûð‘å-$ž(6È7ÈEûœš‹]lõ;R©æqàæ¶ýQci°û=ÐÞ‰¸Ùi7–AêÆ§<©¢Îi-Yª¼K…8\AE™9DMÒ¤!ž(ÚØ5aõ›öÿ$y˜¼‹é¾ûØ)9öŒædc+‚'iB.WcQq¡Ä+o¬({,[Ô)‹v"‰Féû0tÐ7(fé ÚœÞÅNuÊ–.s€õâVï¼–‹í ÿÇÈ-Ul.|Á¶9Ã>/aØqt8·"C‰„UCÆÌf¸_ùò;¨“-ÒÈ2ô›Á÷$ð;sYƒQ•÷ÄÖÜÃiÊMñDˆówГÒ܃Øâné6+J[Ïô]Ààz¸ìæ %ŒX78Øp|h¤vìö)†OSàw¾¥Ép1~]Ö7M7YØ^ƒ‰Î‹Er†Ó Ý!zEE”¦‰Šì0ÚÖ`¦oGöWÔa Çå׈f »5=_~*‹;Š bkŒ‚&R „9=ŠÆl¢9}•Iþ†Ñ{8vŠËðùeG vvÜŠ×/ÕÀQdEîÊNKyœ1"úN³}>zò¼|ù(£ÎM(ZñÌ[<л&Ö™Ð[ßÉÿôIÏEì¾€ÙÛé.š½þ*3ý0âYâð…9‹+ˆèiô‰Ñ›2‹~UÖ)ç{ GŒ¯,×3r ²J¬\±è«aÕ–)úÖ²3ðyD}àYM³«| ò jº`©ì©ŒÙ×óld WûdîÔ{øÑ‹­4Úgjfú`ˆ?ÇùbTJƒÚÅ–§´JÜgUsòNŒ*…3’µ_Ê®|pdpŽ ÈMbv8êr." 2†„eüJ?€D!-™“À/~8æ(¿¢ùúü‡×†úGÄG>ÏßÜuè‚{œìV?yŠZÞiÆïn@`Kž,6sØ›àÎŽ…Õ°>[?1û²‡F§i ›W±pîâmA¨>T\L(6wg¤¯:Ü~¹3†¾Ër]–°y‘ÜAPú¬Hga”`@Q½‘ð¥bI‚±Å%ïiîËRoòùÞe­¾ºÁÿ£t9ÉÂSA›p»ÅaÏmPBMÐçÞ&Ég¦ìÎCÜ@ñºvÌ…E§Ó•8N9ÍÞÈ“¨Ÿ­NÀ‰Î"ü5îéÝA¦sÊ„3ºƒx¤su‘èЈñ®iHçT®[+yw­1 [”MJ~ÄÓlþ|ò k*c#°ÕTБFâä„[A¨HùÌû4 )uùŸ†Vüû^fÈÈVx¬({»’¶¼Š¡)ò½lK2|˜•¡š@–Ð~gN'‹„ײc-ì#N½Vœvè ‰ŒàÄÊ +[:¿ À¾lÉaôò¥‚‡Ñ Ò YX±®\ ë>3!¬ŽD !ñÉòñÞ˜ûa“¥"âUüùìÑP{tzzm.üžPÐ{ †ŠDŠt=& ‰u»^ψ~/"õ‹t«´]gä=&þ¼–&£!ƒRh(Ö>TrŠ>2–7½‚îdx†UDæûW¹å ¼ÆÐnt$ ûg³7xMzë*´½‡Z–^;Í1º\Ó‹~Ã"ÎW¹ô}´uiKÎc}yÃãµ™xô-ƒ¢£„@u°Î|†7Xþå½âªkª2ô)ĬšupP(»›jZŠûÅ6]°_¤Í£·TÕu9¹“Õ=€áô@È›e÷a›-? –x-p- v®&h†á:¶sËkçw ¢;q¯×u~jzá 1)¯=kG®›àwÞTûO$¸Wtl"nûQÑof¢—ÓVEóJ~¨€S5ᦩÝTºéÁÉ#ŸÕÈLã]±Y^ÆÂïü=áØA7Ü«aûz)@ººâ‹èצD.Þá“vYkìs4™x™”ùÀŽÇ¥Â3Z¯ïw8x°#¾óßð†<]•£Ï ^Û¾.¼óB9ÌpÜb@¥{ªzF±ŽME#¶˜R>Ø85vÖ…cmsO£—ù‚‰Ï¡¶œºuŽ#dwL ™0Üšê =ê{sûáö x;¯—>»gôa$õÌ5)ƒT©€²ØRk‚Rà‰ '¥jÎ)ˆÖê2zÍ¿óx Å6e eqÄ_ªDðPYÁ0׬çF£Ñã üÎß@ulhaOí[浜tÓ|‘[³s|}Ùœ-ah|lú†ö~ šõ Md¶&_ÊPÏ®ŸØ#%Âï ³?ÿ(/ÞõÕì¬e’”;«'[=ªæQ@_\Ð.Ž]3}±ùvðO¨§¶µ¹2Ñ9à´€+.:#VÇm…+îÙð;–ù]lë5ç ƒog»$s©Q°‹§<…3!¾F@ …dÞ“…Æ0ºëT{¾|WGaž†+I©’y;u”tµ ³œ‘¹ñ÷§ËâÇOÉ·6˜ _j—75‰èØÛÆÐõüÎ\• Þ¹pM²aŹ:`?l·AÄÝücÖ â0Eñ@ˆó 3õ\×TŠN'ý æ7Û/‡>a˜R_g)Ë ãÜæ´ÆM¼©˜_¶”|ÏõÔkÉ{}÷……·ØÝÉKYXˆ«#e@´¡Í_9Ú¤e?+qÈP4‡ßy!Ç)ŒÎ¬t’aa ébséIyü#>Âï<—¸sÞst1ðä¶N _'ò+¡Š|©übÃHFž,ç!*jö@œóg8‹í®Lö`§ƒÿú'›¥î,‡iŸ8b½tÀ@Ë® +‰›ørܾ}ŸûÖ-ÁFŽkžK=åLêL*¿@N¾¥?úç(ýÃo°2ª—Άʙ«:ˆùŽkž¯§´Ízcø£ŠŽÅ£`e×7ÈmÔÛk’ªüaà:R3œv×Ë`¥b?XÚÞ %u»ÓQ˜Ô²™+@ƒ”*ÈÅ÷ñèì“ß4¿+K¨Š¼†àŸÝ 뼬m@&¶}]Y•/C?R¢:¢Žã¬E˜Їêh;ØùŒL5°_Ò¹¦²+Ø‘/ÛEÇÂî iÎÕ*5’›e93ÃWÀŒ¡×Øií¸f\ô,ŸëÙ;°ØÉ9¾œH€»¼–£)æøö.ò"7Û¢fþœfú68y¯Ú¦€é§¼@8ÕRþ¨¡:)Äú¼™»6p2â¯r›c¥f[f'¢%I”ñ Ûåm]Ð4mÒí"@£¬v«A-™&/67ët»lܦû׆ülãŸíÜMBÁn÷©ÎˆŽs:Co-› ™qŸdn›ÅmÃÐi"¾Æ´Œ@wÑ9vö‚–õÎØóɈÈÓnYÞ±®nÁæ,ú.>ýP‡/#=žÐ¾‘cÌÁ êSðŸ1ŸQŽBršŠëe“άumèa’¥—ø†,ÂáOtgÙí}¸4ñϤ{¤E,è“a]6éBiÁ¢®¬ñ y ÒÜ™y¦7ÁðgN«gW‹ÅHR£{Ù-Üœ³ò•w+vÚa2Ý/â(y™=Jš VÀ67Ë>­^æŒNyI"|%!ÆB!Æj«ZC—ýBÍÝ„Ý×ôŒcC¢Ó¦}Vzcr¬]ï‚OóñOtoƒÕð`5Äê/K/eM›‰[Rø™ÃdûÎj–°w4tùa`­û=m‘˜ØëØnNzœ  »œ‘ ¥âä3w…2±Ø.ªHÝ{*L«Íî_DÅò0ŽŽ­–}ùJµï²úi;¤×,œCì Fè½8â=س¹'®ÛOjà ö"`£Ssç…ÕsÜ…w†ûL³Ÿ]¢wUFî(Se×±’Éð^΢‚й^‹iÀ9˜ÈF‡§;’Ò]´ÃO?®’‚•·n°Õ›è™Á—®Ï9TÃYÔ/¸YƒÛ%éÒKwB3„ôByÊ"œñË–.ÞÛ´ào7òAÈ|§:MŒ4‰ ™§H­Q‡»¦â$“&s§+Àà…å„z¨ó ’f{Sµ’í 5ÛÑ ÏâÝÌ1tçyǧÎÙäj7˜i*ܳÝÂvJ*ž;… .#7T‰kÙ>*OžbU “*ÔÏ–2f»|Ë^nb•ebÙeön`¨?¡{Øi7R¼”@&mîÙeF÷©ÕïŒË²Ë¶:Ô¨¾â9íÙ<Ÿ»Ù¿c©kÅi*Nù\\®ä³—+7öæ‹°3&MÍÅY—ÇÔ±õr’ÌE“/½qA85uîªìg³´}hÉ÷‹¯ùßlÍm~X¸ÐÇZ¥l¼Û/m.¿>=×%o›kõ|ÀÖ_¶mӮЦ-ßõ«êIx˜Ûí‘ÕLV+^È&×N-dWØýb¨xÖö?.)òas„) $7Ûˆ¬@o3¯pXÀ‡qwlE›ró,‘ç(làOTñ¼sjq¶Ši^_4iatŽ ßz៹릃 Z˜6^c\ÓPö b ŒÇ„$!ø3' =XÁÞŠU>ÄU]ZÞWýÒw ‹ w¨ ß/”Vî%kÔ«>¨ANÐ7Ç1?ãŽqÌ/Ñ+tÛY*¿Îd³ O“<Ì;Í·‘íÿËqHn]?Ý'…צeïY³ªË÷ ëêÖ>ßa²¯ššL­á(HªÏ’ $j ·Ýy)‡ÃzH [Ý[–ucÔþ&V³Û8Ó€¿|ØdòõBµªq úªãæ]0ûÑò´¸rô~BßR¥'Qiô¬³‹TÚ·üÞT ÉÏ~³£3ªñZPÔÌc¤F6\¡#{qà¢ëÁOóŠ]_Xë)¡ZÏÑe|ŽÕ*]2?¨š¡Eß›³Çsô|ŠT•5e¬¢ø,˜i×*¤sü‰ÊÍûh…oõ*A›ðä©Ùcõ(ßß1j1ˆÒÙ–î.áÏÜÝ¥i„ÀùMSÍèøÛV æ;šá'P#æ±Øžñå€ñ››¿µ%©É+F[ÞñÂdLe%FOoøßeؤÎÉXÌžãËamcß›ögôÞ¢C͇¾e•]ÿœ–°È XÇi¡Øm" îCMö\õeEIyÛÜaC}½iß!òyá¦b"WŒ=M]Tóô†HÑ—¨”áô1nKš“½lí.°3XÛP,R‰l&LÛÈŪgúÁ*ãkš4ðgNÐ0f 0Œ¦*{ãYÈû`MÑÉïEùÊ{Nõ©¾MDùe3Sß;¿WŸX¼Ê‚·Ö‡aÙáÏ6zÜ™©¯+ú™ÚžÐ·XÛv'j›;²E±f:Sˆ<èqk:Š —¿êñTØÄ+ÌÉù_ŸŠŒž—Z–çÅä Â^;tœ^ ÏPÇ†Ä ø37ëgÉnI ; \йôöF<– g¾eKM†š^Š¿ÀŠÕëRÀ׎øgî%Æ«ÓB ¹ýðøøÑL¸‡ÂfïÚ~­fÀVÑi›ºN¸Ê‹“ôn臨îÀ?Qd eY­H,“¨øªÂH(o%ÈÕüLn½àÏÜðàÓqh^yc·Á|Í"_ôœ×>öŒ~¥üˆ@Å—=ÞÁŸè<‡ŠYFѤª2—çCNOD²8gÂ'‰ðçèôþôåB7Ó(²w`6ôSî@Öûð'Ò«_¶ûµÿ¥äÉûTr{8~øð­úoþô·ÕÏßþúuõ÷o¿üöçÿ´Ún.;ÌúïßùX&ûúû/ÿûë_Wß¿ýýëïþÇ?Ä&?ýñ¾X]¿þöõ÷Ÿþ„þå÷o¿þÓêËš^åÀÿý¸zY¥?ãÏ¿àÏøó ~ƒŸ÷¿áÏßáÇi>bÖßþüúO«¿~ý;üû—ßþuõí·ÕOðÿÿûß~ùù§?ùöÛÿýÇ ÷õ÷¿ÿþõOJX}ûÿ/z˜Õ¿ÿñõ¿þ7„úóß¾þÇêןþcõ?¿®¾þÿúJÚ­øo«ov¢ D%ÿ&Š}üð~å[÷ˆÃöþ‡’pÌñsŒŠLÝÿùã›ß@ŒéeÞnÈŒkaüÎØ$L§om›ªbc¡Õíúãsëñ'åòÆæù£ÁWV‚¨÷?SVª±ôÆVûã-;,éwU®J*w¾âå­SÔïÔÒ$ÿO¹ÖÂ~2ªw~•Yjètßø]¸•GÁxtÒ#Uðó¿Ê¬â ýV¿ÜËz –p÷)±5À8ó}óÀ;-r%eqƒ_×-‡,[ÿU^íš¶Îâ¿ÿáÐí•w}ž»u§pb„QÇ'ÉôŸX2¥’®+ ³7ÉW:ﺗ¾1Ð3¼KÕI•#Ô$­KÄs U0~Úš®®'-‰RýAŽ?JÍ){€°QöÙÞôwÀ=D§=»åånÒ²ôÆ‘¨Ã² äøˆÃ‚ñ©d¯Œiµþçújpþ—š·®n,êwÙ£*V<uˆ•˜Cïìne¦7E,EÃuZ6\¶Ë~5XV*Õé;†*ÚêitYÀˆËtˆ–á—6§\l²ªèþS©r9Ú# ;ئÍÈö¡¬3RÛP#ãóõ™…óõE{£”šZòH Gu-q/•ç°`”Sèξ³´¥#à&Ç­(ã¨zR•âKú6m±¡ê‚4c“€HU«M¥@°‘jýþ­AWÕFÅ…”¸\¥ZÊÒ¡78\â÷cp8Ñ?%ô¦úHTG…1 úQV)ºBKí^f™p-‰Ë–@Ê3uD@­WšÑ/ ±¾dÙ ¸³.ªÐHâK@¹Ç¥¥·t $$š$ѤVíëP]A Î1¨)–ƃ2n¤=äÜLcGf#ßA2UKzò)In“èÙÖþ· ‰+Â3í¨É¥Ÿ˜œ.‹²T½”îCÕ—ª”ZI913Œ„ºÎcäî6r%-Â-ƒwóöP›/£6+_ËΠI¯7IX¬ø²¹¼bÅ<•ü½0gC-ѹ«€@’è.¨QR¢8 þ›À­ÕÛ³¤ÜÉËq¨È$Ï:cCsl“x 8BË¢è‰Mô`ÜÔ–Í$-R.V€±{·—PÐÛÛõ9@{ö.:"e-ž-býrÓ¨'ʆýý}­š+ŃBàawË"ýe{rzäQ°öY_9 HwLyK«ãÕ?Mú¡E;6I{^vEÑ47ò.&Î,ÀÙÒõ<©¨øu%|pêKIK![ˆwf†]ë´!ÁoHjû_rü]8’µ/óiu¶¯s¬w­mmÏvZ'þû úÅ’þ·)ˆŽ<}n)ö¸|[îoÅšÔ• 3ºò"_ñÓzawí:½•o9 ØÄÕ¸Ñ@R~ûìÊîêñÌ434tœ&*ÌÅЦ5’ó…m‚Âô´f <œñìe¶Ëk¨0*>Vzpq]DÏC£Pè 5C÷ä vJ‰Š¤A*”T`覶èby½¸'·&ЧñxkOói7ÒX/•kz&¿an(–›¸Yu¸aÁñêGdÙ§Ý6-Þl0Œs²ÞâLPõ@ª‡;o¥nËF%R㤎e¡yêÙA8Rò©hâ6ÐÄ´ xR¼Á¬”‹ÂÓàég„7¹Å­~>š+§(e¼¦.Kˆh×a¤EôNí,Ëj #h>ZjÑM¼MµþRð@¢3ZK‹Øw?ýîAÂÛéO<ìθOïÎÑ@ðƒ¦Sć`Ͼ¼1‘ŒXÑÓ|œVÁf*e(·ì /àXÝ Cb^âœ8Ÿ©Q ’1¬!üÑ•°“¤¨;–Mïg‘Ñö7tØ«@ÔÿîXh÷$™dhǰ´mÑ@Ul‡Uåy@UC]F3Z¡ËY®ºQÏó€ãTWj î"›¢€Üý$Ò—)Ìï.!r ¼möÞ ßšÇ&Ð>ž{¢úq(Ã_¿¬!Í=ÑwD£ `JbÛ¯ÊñL"˜Wò|Ä»¯2áà|ÀëÃ!z ;£ƒ>d‚lz„|&èžÏŸ™ój8Dšçj¯©e,¤îšÄí¶”Gƒäq#7H¸wà#n¼‡³ëõØì‹ýÆö‰ëv‡X_²‡²H“›0é-x¨Ó~PCúË!à§ÝícƒuüDð»_€Ð59¢ „åh1”zÀ÷°ù€QÅÖ‡Œæ(íVßäÉSâèýåW;­g¯Grí!wý¾»G{YôÙd:ŠÑˆ§œ?Ë,CÍR~†¡|¿#ÖDzÚ}EN¡«q²º‚=Ëû‡õq¢äqX´úQ¸}!á*`bµ Ú™J×¢-{"Ö…°«‰µ°Òòƒ«+m7£ÑèX3b^1I&k"¿Ê –J‰¼€ê'n“u3’&ñ°&4¦Ç5'°Ð‰Æ{4-¬äõ¢ÑPi€Sv-ÌÎc ¤ô”£‰¢ã=ðqƒl鸉2u=Œ+ؽV°¸z8§Êk\™áȼG´œYw¡­—Ënl¥~—(£ê=1 ¨—³¶£ ¹Ý’>׈ƒ¶>î£ÇØï¶gýç–Ãø¸­l¼ƒwÈ™RøÄ]÷H{Ùñ8w£oÍVózß“!îúGFÈÑY8ºôuì=D"ª…ow¼êñ¦îx¤ùxŒŒ”9õQ½GË€U2í•EÛÀñD›ET˜_.œ¿±®bž>FŽ=MáYÍ€,z¶vW±«³ø]SR‘Iu.»~S+_Dá j‡Å¢|O„´EG•/zËó¹Ñ0SÄäË.DÕ4©0Œ6Ô±O£ò4øwÎ&E\}_òê]«–îø Ô–Ór™t— ðœ³ðº‰}!PN (wc1Z-Û¹-ë ÎåùÌpZm›Eé~ƒõkÍç$>“Ÿw%9cw¼¬ƒ}Ëæö2Åjø_)ø- —Ç@ ¦øü-|#rB“Eø°RÍvpÒazCÀíbña°-Ê(`¨ÈŸ»°àJÑ,æ´‰óh}Y)04;`,ŒJãSð¸F{ÊúG§pÂû‘(¥¢‚Î%‰Ýô½Ç¡:…ì#ú|q¡•çòwþû‚aÜu…ÃØëÈñ pÝb»pÍ`S?ÑõÏ)[õ­±VÂøo1ïOø4m}ŠŠ®»ÀMtŒ}j€23N9ê¡NAýƒâSXvÔa›Ç@B•Ï-EïiFó ú 䃚¦ÁË®çÿ‰4 §ÑRŒQúšÓ™ƒˆbòÔhæ”/SZR›Ðýôç`9NÄ„$¼Ÿ^Êš¶¹+Áz A]†ži)ž7±Y¹¥Prwò¼X &ÇHrNrÏpK>o–5k,>¹¤x'ʥϡĸÝêD¡Ia5XUYUžC¶‚…Ì~³Ž}ü‡!cÌì?3›Õ°8aaŸ÷TÉ!¤´ Á9Pô‹Œ<—U?++ø Æ­þ´ø¢ÊTAa’;ÏǨ»q9ˆ gí}Ucø¹Pf×áÐÐõÈùº; ïý¢n2èø3-ðöXî(Ø%pÚ'ë’–bäÌù¼ÌFŸ!KÔBZ¢50ªQUeÒZ7J«7D!X²Œ67ÁgF}’Æ&Ð\™õ$jߕ衢¥Õš.Õâ‚ >+}X_ÖQ-Êè Ì ©"òüKÈD™šx€a7ìEýñã4 5*—]ôÌê£Ìr÷Ë"z[©7×`„K@@^} Ù.k·Ãø–vãlïÚ€z!쀼yWF—~d½ Õ€<è²ÔvýÊÙ𩬀¥›Tă({9,“Û „æŽÅðŠçr ]¨£õt‚üà6†'Z@¥yy lŽZ)c†?EÆi᪠ΘG‚ tçhï¨:Iâ×å´Lj·täB¸œârä¯SáÐÅ04$–±p ÅèË90å+µ;N»_NI RÃa¿¨€ÐúNô³@ òõ4T¥gVòÈwðé7üFOkçt”\”Ñ­ ¡Öõr‰4Ý"TÉ;L†­¾ †õ¢À¬™€ÕØZd%ëK¥ì4{L›‹rú%‰ÞŒéåê­¨(­I XW1ííŠ)%Ä_“eÚž#{NhÀÒ({6úØñòæIÅC_óð¸(÷‚ÒlH2{?hãEþžÆ iãx+Ÿˆè&~C¶ß¶ž‰E’Ñ€ðGì²Ïgd]âÂä4ëBJ'Íy„Éví4ÉsI­t™ÄÉžk¶4PÙ%»âÓVÏß õVKŒ00ÂÎíðà\êÑí4Éôé¼} jÇ”«Ê¦CÛò:}J«Ÿ¾iW“›çæ†ü,6hðŸÙbmуaçζ²Ã@?XnÙ¥Š*w¥Ù)ÎØ—qèâã~å& Âá:c›¹Ê-+œÖ9U{bܬØvn³rËbT 7 ÷+¶ÅýŠíæö+·ìÃÓ^@¶Û^ÔÔÙC_åÁ£g{= ƒ=øêì <`tcôv@‡²;›=yè²SGg“tÜÝÈk,üFå¦ý”Î[QøÆ†'®˜Ð‹Ô-œcY’©Ù¬L­Ëš¬ÝI¼‘üÊN!cÞonÇ•mi@ñðÄò-vZf ‹ú¸Æy)×ø„À®AB.;G·g´RÅM®!“ÄøKÙû‡„\v™Û¢]LÂl“d]6+뺘ir’vÙ¬´ë–}°)MPz,ÆBÅŒµi—­Ê{)_§û«Õwä²´ÃP&‰Fh¯uJ—ÏiС˜¿ëûnÒÊ–”`iÜ£—ÛNÝÛ7†ÆMU/IÉJ'Ël[—&ól˜i8ÕHxKg…7‰`±3Iðô´ì]§9¬2”&¦®?E=¸œ4)ZâiZåxw‘eÐqo¼íÐÄ4o†±ýN!ªaþÊk§Ò åkL? w±ó2îC»°LžgÔ}»DhýÎÞ’[HãYÙJ9Öy™É»Mž'’IÓÙ;vUzdxNŠÉñHQ}âÁ¢ãA殳¨é4ÞsSGl÷S¼O^Õ /{l[æÄÀ)Ûà£ÎðêœÇ,²h"eßd'›4‘)Ÿ5ÅrK²)öÑÂ}‹¢S£xýÄFûi&¬1³.1%‚-[­X”žCÚ'y6·¾°ˆ¹¼ÆËÕEfü<ä/Õðܬ`¾Öîü¿¢?òõ»¬2á5õ  ¾Âk­œ8:ÉwZ¡. ‹@¢duP^W÷+Ìû6ôJw&ÁÏ^†»H軂c\Q¬ÏEù&Àô“^ ´¬ËË(Ü{6ÔâJÔüª^Œ-ïhç›AU›¨¤sûHFmy¿zÉÞ‡lÕöìÚ­î––Ð#æ²ÍwÚ'Ôp öÌ&}_5צ>¸ÔÑL’5¶áÓ{øL„¨$µ0tÂê ô®^ ‹X5£ª£‹ŽcÕ„Õf°r² \Óò:ÖêdÒÕ HƒòíìN$¬ÍÈJ+&§+®<$PÔß¼xä펞LxÒ±2ÞŃ x‡2鲡Óº[æê`f‚%ïE¹º—j†íâO¦ý Ç…¥ã^íþð•¾WIÊõÙ q'T_ç@uN<⎗F±¸ñWQ²,ªKDPÂiÍ=®µ¦ö“‰%Û9Sþ®Ò—äÉ|yG/.™ÕRV†6#¤a÷’Ó#ãüÑ‚~Ù'hÂòÅN£kÎ<~U6‡X ºÄ=ÏQ!ÄÏé@®ðŒ’“KØ<~upº¼J9ÞÚâ2p:]¿â¿§Å — RçA—ênç߆U;à´0 Åá ÍšUû 9 ='ÌC'Sþh•·ŸI uÓ®’A¬ó—[ñD‡y*èŸó7å·ùQ3^CƮ݀=I-yõèn¶Iwc/øæPJÚn±eµ³Ùb_¼+HÚŒÁ´yâ«í¹»²DlömvYÔlDô\ó.thFý'ô² cÍ;Il´mBhsf©ª¨!Çöè‚°öEàf½[vè)αttš”¶.t 45k·´YiSwMͤ;¸2öŒÆù¿h©®e³œÞ§èwp´€=è~N^Q–¶ÙJ#yáÍ9×µº®*ûý_Š Z#°rqÄQ~EôQ{˜Óa8Í¥WÝNš¡tÀ#Á¶²ØD4.~c¹-VB=·™ÞOh¿£+Ÿë”~LOì“ã2Sc·O®ì f‹áÑ œGŒÝ¾>F/¿wÞ>0 ø0ªã9˜ÜøêQ4Xݪ›{×èPýÆÑ [½z¼5°÷Œíô«Ç5ñDuF@+_=Mœ"š- |BÑ—X/Æ$^Ÿf/_íVpæ’.{ö«kA=Q–ÓÁaZi‡ÜÞï)æÉyG¸sF¾y‚¦My8›Ï4F!ÑIÀ»üƒ SooA¡œ´ãzY‰/vXÇÂËQ» ÚáÎJ”ñØ€qì©/– ™I6Œž#âl—¥|˜æcÆF†äÈâ;—Ù;f“Hï luÿ.[öèE ñiv‡,Ö;w%K¦NtÒÕ—ax±ƒõMHØÕ>毼i¯>óï5W4ØEiÔHpŒ¥y"‘i\Å7‡Á8‚d"u,)ÊWÄ×Bm¥€qŸã£þÙìÎDö9æFL[Ýñ„õ ‡jî BMì`’È:¥y×Å{tž$<Ïò÷²‘uÚÀI¤™‰€„!{ ޱ^¸a²î&Ý_.§‰‘GC‹™pv\n Z9ˆ½ßµé*)«¹‘ÝX¦Š CnŽåî—#N’6MMYÛ–d8Š: K Dá@É$ !È2¯µÑ? äØÒ˜)Åùó ü€f%žô¤bé-oš~õøñg:özs-ð"¯ #;(Ic{ÜJîEI9þ¸HŠ­´¦ÞeY{Q6ç¬/Èäƒh‰¿ŽÕ÷¢¬Ïå€Ð:FÝŸ`Wh‡Ú w1ÀOSÀÏ †ÊÊü  SÿÍ‚f-œ¯:ÒŸHLxu¨ŽJ€™Ó †@ê;«™7§ÙyËꮩîÆ{¶»ôƼçoN›¨öïØ•UÍÕzçm¥ Êà´ÁEqÚEÁ.S0i3‹¶í ¹uÓX¨èé~RÁ£¼(«òñ@×̾ñ2²¥UkÔN¤=æ:"Š23ºÁú7‘K»ì)zÁµ¡°×„ÕoÌîR+éIp8›N³:%·låÁCz¢Ýô}TtÀ÷Å[z}‘PÖzSÇ ÍRIðjøOIôŠx|‰A Žÿ”PCâ¤P\œœn¸"˶Ь!Î9Ö……¶†³â>Ü ¸†«8œßëQ³=¢†ÄSÍ3 ¼Ÿµ Sv¯¡Ê„¡@иJâW«ç„bf6XöLE¯„l‚þ|¢ƒH“Ʀ¹CpËü"в®ñ!ìÓb,ó‡`ÔÏ^Ù ßu±1 pš |NA&¬çGFŠP‰rŠù£4°dC°{Ñ÷ûmÕ5ãà¹y–Ý_’Y…=€ß¨ggTe6õµ¡8³IÙ’¦_'à³OqÏ8q/oJ  ÷MÖ`¹^Ëaçõ‰(ŠNŒ½IQWÂs<’£gz8;ÑÌ[“Òºl‡+,†ó†½™Õcê’–ÓIÃuÞæ>b9ùew01GÞ9I‰÷q(¿N:S½TÂ>%{¨‘µ r€sè…`ž;ǽTªh¯ošÄ¡Ï!Å»6*˜öù*%/×òa›P»¿ÓöCÂ2vgX7MœèûÕÝ>Z·§Â;«Ñ A“à>yfñ°ßBCã¢U„–P§ÏY$$úOÍ3zôÀ­6Zç—MDóe·ùqU•÷D¾òQ(‚öEžšx³{Ùâ=ËeØU´GUÞ_sçì~—í…¦Íú"@î†äSSbDR-u(ÜIj<.;ê…§÷V aÅÁ‘ÍäúJ°Ô »è–}ôÂö~Ø Qãî¹ô‰Q§ÝwÖ -ôKȆ^Ëœ¢œŠG‘cǸ#Î=Ï…-óZ#E°Ê )—/¡+N1Ée º¿³l²¬Lòr"¬¸ƒÒƒ‹¥®á<©GÀ$&va‘G_ö0«kþ&p A0ž‚'C1u,­÷K(Ö”>åšÖ}=ý'üà5®Kó;}Ÿý²…Šè¦æ2kmXÁ­&ér³(û«ÕÌ´+ôƒ¿F` à| nRÜÚÄsœqG°ÉØãEšUÛÀ©§c›˜"Ý$ÃÓYóËMCîÌ6 È#£³yUÖqaïIn•jÔÅD}w`o&2œTt$I ìY ´Ácoö†®„æ¬Z]fÆh€ÃQCCË•D±CôÌ0 U¡¯}m*\ý,nV2³ÞO@qäÛ,nN²ýÑ_Üì°©Ñ‚ãM";E½wýอ{ÁñßÔpbQìz…v¨Y—(`\ß`™fˆ€;I¢×òøzY#Œ§ÿI-R¶lg ;û$L豫ëHÄÍYŽŽXfà2àªd.ì½Ð݇ÑZdsnA' &“ÿIjGë›då 'ÎñY¸.m½ wRåÒKhéñØyåû±´rß‚h’B8¯&|™8#ÊÙÜ t̽MÊ–Š[¦Lø2¿T“²ØŽ±xÉ îdßHHÉò> =uÒ>$†é g/-^´ù²à<ˆÒKJWA鬩¼„°êf’X))†j†ßèŠÞ¹cÖ÷“AË26ÚDÓÙM´Aë7Ø—m§×v¢¤6Ñ4äˆZ³]]ظ`rÓ¶È—"ü†4sùhàÝhí­»€ Ÿ¶ '¬9ÉD3‡ó>€ð˜˜f¦¼ß@EtHƒoåÑL£Ñ¦Ï¶¬*·T £º£‘£ƒ÷‹þö4 Òd±Ñç½g¯í€q°"v®ÁÐ,4Mhò%‹M1ƒh|I–±fšRsÓÀÄz(¹uÜ"̬¯Ú§µ¯M?îìJ&¸:²¨º_Ûvj‚ß”EW¼2<¡K—z³¼_”Áá¤Ò¾2‘bÞ¢þzAQõ‘†6(m f4ú¥‰«½6Ì:Á÷Å+»3ù¼FÀ0¿P­›»ý|Æ€,øç2oÚ»¸ôÍŸ¨C"k³‚éWPi~ ºæx@–{?#ÝtîˆË¤³[úòÖÒ=F: Ý3$Gðvþ‡MF;oÚ.ÅÚ%‡}©o* Pk„ÌÁûÞŸf[”!²`Xì_qàè†É¶À6*¹¶œßpÃîÒ¶|ô6#¢[±ìˆÛgdù‘& ¢1Vù\ML’û¡EÙ¶fé},Øó!rÝ5xTÌN¸h²  Ó_¤bÓCIYwC…Ïø½tòwɺå}Ûäÿ¼{~v¡. 2Jì÷ÝiÚï]6ŸUz¤äÿ¦àÈ8M¤?[ÌÝ•Ho5ó<`Ó$úy«HÀ†X³åÖ<…Ào@TLJ ¤9á5Æ-ËлlŃ(¼¡Â!a˜lqµ»F(Û´å{CöX k±ü‘ÊGU @½<Ûá½]àÆÇ2mJ0á¢g—Ç/2 ¯U”ùžŠµ‘`D«Ç¿È,ºÇ ƒ,so%‹C ^.„:'0»¨5Òg+‚  ˺žÀ 5ª#§UÅýWÙ‚Äæ¨FÃæmtÜÁè/6H¼Ñ·¥ ºÓaeìzE3"1Q£)ë!¢é—<5k[˜‰uó’´¯äÙ!»8ýhï–‘p‚æÒ£ù_Ãâñé¨úCÍ$¼0$ÂE€ïäœñ½ö/6¤¸°œÅ¤¹º °!}uÒò/“åc§9¹v1&ÀvŠ ðP·¨©.@/á”çVø'`d'ø È úZT8¶+ëaÔ0«‘_% öû>îuO©A´«õ®b]åâîÈÔl,#AòUø¢‡üLĉ[‘«—W’ Å€NØ-¡w1‘åæÇqQ&?¢U3ù-)»[‡&»×šôä‚WOÀ?DïuG¥ ìXmŠêå{YP2Cñeßî pd¢qç–J³8šGË9ƒEÔ‘yJ×/y…ìëê½ÿ·ŒC Øp ¾àhmJý’Kă—jkÂn>!õ‚äJƽ ýê)éS»!ÒûæylA›¹‰$bd™)µXÍ)~CV¿ÊÅh–|TrVØ€æv¥§Ë)¾Qýák-.5´b©¡ß»ìß©¾zPÄBs`â>½v=6ëL›DДMMËQ)¬îö»ÛÏÔí!§'X%x@QÏw¡\ÜÓy¼ûq6ÐAgw§ Pw F¨&l\ 2¥MKN ÓæñA®)î}W³ÑŠ’–¼%Q úáÇ@SêÔåf´ˆÌ9dÜ¢ý’>`ŽYœãÆiWíÊ´¶ÙÆæÇ{ú¢C5†P •kuw´®*m ½º·ÑÅ kÑ"ˆY4~Á¦*#w/Îõ 5pYu¥çWT!­©mt"G¸ñ구å”ô…ìeeðš(.ït ­—ÖåþÍ.ªØ9:K›;Kä  ¾2‡ßè {hƒÝI¿ÖÏà_ýHJü¬¥G¦¬ñ¢]H…°F[à6;êÍ]@o¨¸ºƒW}÷ÃÇ9K»Ž~z6îR‚ŠÚ|ìÝ*:âQ†è$¼Ížö¤Pð[!LÖ~ý‚/I»á~—/ñåÌêXݽÀ)ªÌu%O¬ƒÆ!d|à/X½1HœÌm…Ìü„µ,‹äüh½ú§TmöñÒÚ0^ÞßQpC'6P’%tñ¨Ç÷!_EÃf~ƒGûè%X~Ù­†ê[jhŽå–w“‡‘¶cw²]1&çÆýz¸¦<ð¼Õ•µ++ Z‡nÑ·ˆN¥= Ñ#¦íæHà¡p)è.ƒý¶Í©Â•xÙj'Y^ƒ–à+Ú¿èebèHº ç5$Ð"ó:Ó” ¹>?önU]ùEMŠ|wÛbToµ)Ê`ô)Ï PÜe›uBœæ<ÇiäL’ñŠ1xŠ‚¡á„êÍeŽ% LÿÆ€€©¹¤:QH锂PÔ1?L5<`ñ¿Õ &i_SÖˆZx µðו2@µhjŒ2"‘ÈÅ*h9Ç}aîÍ*ÞØ+W$‘†Ú‘‚³Œlªé,þ^U1ƒ:j²6,°¢ºQ+þVû1ÄðLZOÆe7â¡Ñƒ±'£ní=C”Ã2AÉzìC;‘ãÁ*‚Ô™'".Ê«Ofÿ¹Ä“{wŽK9: ³6œ¹ÇHâI#ä‘ÑÂHÞ{y}g×éÐ*“7O)ÉâÁ Zs ÙZýøRŠÔ˜# EèóÌkœf*¢.Ó.HD€eÁuÆÎvË/Ó:ˆ+†L9õh+®èöŠH}+Ê~„ÌqñmƒÏ†ŧÓç=3P˜+–mŠçì÷U­”ø Ì®;Gß}]QÂ!qGÊ‹Ý:z\Åk“’á³%òÀZQ’Ön¿Š³ôà)§X*~Ûak½bˮۨ²¼jšË, #ªÒ…pÛØÅB‘“Ĥé{à%’LAáäd%5°#]Oí¶¡E£–iß à]Òîp¾œñFºeWš2¤ëãG˜Ðè: âZJº³œ]½r¥2d‡÷"`†´… [;ýÆ d¾*ã(þÑ˽¤ùüñ#¬:Ô)¥ xÕúй»PkCþ¼Ä/[)€™úP`xÖ@ëWTÝÊÙœy› Ø…ìXˆÐýZÌ,ûö$ý¡ÃœÑ\…©ïÔ;D0èÒ3}Sâ;Á‚ׇ—ã݇oe'˜ó‚åõ-{ð÷r Û8âdÄx®.T0ŒšÃ?l÷tÄÝï£ï@aò4©ê;ü/Ét QÞãíéT³É td:¢?b¦™é U9A}ƒ.y>' {tòŒ%Z\uìÍw|¯5=¼ %º¬×“û5᫺í>´Cg®[—zåðâÊ0ˆ‡'óÃö@Ã! «‘¿ÀÁ àçUÖ²7XÞ츺FÛ©FrÙ@ß–´¡–$®]SËVL‘ jžAE¾~ªë£F}K0E²ÍþŒªÒè-œCq—Æ!l»_{E°âÒ+jc(xš`‚Õ¡)OKêùCN&ÄV/J+·¤rlÆ‘&‰ôÓ˜$¸E3ºAÚ—µì ܃^@¯j‡Uõ  âJý&Ê;hª$ºÆÙžŽáý²ÅàÁtüìžÐéôBS[?RÇ«¶×æ§ã2ñFr¨ ón0‚¯ i™È#‘&÷bÔ21HBåÀ;Ð{N'o™˜4ÁŒº,æžÑ{iÁ]ƒÏìÈ%¨ËŒš`z ì;k~cAÇM¾ZÐ ÌpLì¸=Á²=]·4XB¯4zÀåNšN‚ýx 3nSòÕ”Ük4ntâ[ñéÐVO/VÜHÈ»æÃ`xµxºÄ¢HŠWˆ ëWýD—à7†®ôñu_PÊ<…^]uÊ‹€˜oeÆ_¤šÊUßhkNÑL8nÀtJ‰{‡Ìîµr’t™Ðè®$îr"Ù[˜_×N¿Ç8ë6’Їc8Ë;l¨-‚|—eVuT§ÿûQ-®Š!ˆ6ke¦·v)µËe£:±Láàsâq"õl5m‘¨Ù¸ÚOqãŒ5ñ¤-¸p蜥£Ù„² ÒÂísB’~zêà-Ü:§”…n›A ÈN|áÎÜ0ð²ÍsJð(GX&@'¾lËôPB̉ÅÄÄ_ºSêIœÑNEkcñ¹µ±þ`¢—×ë¨ÿ#çÂÛsÄÇï¡‚ãx¢Ss$³­Q8®Ñˆ“Œ‡/›ín8žÎ¶äÒt{ ]¾¡*pƒlľox1ï äËeר”¾†vâz§èà*<Ç÷V‹…Ê3ˆ¹q!B|#µùgâ;ø¸@°ýrþCE€Ñ‰DKygWn¶#οNaIœeÊ;—tÀ ‚ãj e ¼ A¤eQ'‚vÐd³K×9—ó² aShk™1c,Ü^a#&­—Òâ^Z7† T¨Ru6ÇÙÝbj]ÜKüt°œ`«.ñóE­}P"‚ÄÏ6ia”ïàR¬E]÷Òc@Ãq_¾‡O!ù åíg³RÏbI!´e¬K¢Äy[¸Œ‹ ^AÊšÐN¹,ãd’[Ì`¡…â% él” iÒÏàs¥Ÿ+š¡½V¬C}Ç ÔîÙO…E¿çÊ-ûwQr”\„ï¹™ @ ¦ù’G,(¾ì¶? N›ûƒtée—uÙ£ÓÕ¶Dù-Ã)Q2p/ûõ+ʶüzÉ—É™Žê †7Ü,z zÀÀ7e m6lb'×¢í IPÉ6z„œfkAA|ÍËXuÓ˜0“Ë^Ÿ$ôî+‰ÙÚ}Ùn~Të=pG;±r€£n3\ ãPKîEá7jÙm]¼OdX£'áO}RpüQTAWÇK/a"Æ’æ•{Nû“†É½(HÞ»%§è-úÅ2‰‘êh%ëÚ6áïd77rvr%¹Dì\h!‰ÙAZä ÕnÁ±T7_¨›cÇ„Íúð£içGb9ƒÇÓ}'¤ÝÇÈI»´hy‰:š½Ê›Fr>¸MC÷ªè¹f³Å‡õÀ ½a©îÞeLçu€$ Ì`ö§§”êŠ:‘ÛÎ¼Õø4uÅ£jzÅ*¤}C/À鲃—c]–§(ë»+ÌI|îâ;úmس˜2«ô×4øúÒoÁj­O°¾ ÕzÄüÍnkSe«zH(¤Žº8Õõ™‚Kdåk™¡è™ÆwmX),W´ @šMqߟc¿L‰»7í£€3ò•¶MùÛfÛÅ!±í‹^ÓiŸ•ƒá°ö;ÃaÛÑ$kDøÎ`Ø6y¨Îh£ËBWlÂå>Ú ÀB®l]†ÒIZxñk‘Ñy¹*ëòáİ|7ß'g3÷!ß\PUÐ ½ì2Qa£´jüÑg1Pì6£·fYÈ|$>p×ya»»Ý·Ãï÷GNS/jš"jB´†îþ#¨ïþ¼ïï„J´þ’ÓÔfÒ—î²ôˆÞýôGï¦É™µé?ÏÙz#T²Ìbq“¨Ÿý¨Ÿ*Ñš}?­W?êQÉÿüFÞ“ »|『û{_öƒ^\IBòy”ó|‡Æ5¶SAŸø:®p|z0âê‹ _{ ¤¸BÀu¶…:Ò`DK`¨RVâ[´lèŠÚYCß²º{4]éôþ2ÿÒ0Ä„0¨\æpBÙ‘@â§bÅÁeS…Ò ‹Åϯý²ls/»Î©ü{ü£D`PÈà¡°p¨f[Þ'nfÓ݆¿h=Z›©%®g Ëk•‹MxK›pèm«ð$"Oö½hÛÎ$•œ:îÖ»eG=z}/{}Gt„BøUêá„>/ƒLĤ$ç::u³VâÑ]›BGªhίzGbq$sÃíyÅé¿ÉÀ*ç¨ÃÕwpZ Ø©ºÀ…¼èß§{ò>>I-ʶ"l<öÉD½XvÑE¢–;ë]$¾Hô„Ã'ˆ¬BCp»FZ!µ‚“jò„Oh¹›b/ÛBG‹¼¬*-`îiNEo@Ïèë½lÙçŒe"b¦?ã†ÐxRØ={j'ö7Œ­ /êµ)Sœ)ä)Q̪éG¿—/“/±ÚŒª ])# dµÑ" >™ —¸ÚJ«ÆÉJ±žM[Bñ¸3!½ð§-¶µ>DC—‡ÂqáÐ]ÖcÿN†ÎÍxE©8_¦«×eïe–‰»>,œEÑ®ßùFüÑR¤ÝÀ G"_6GÄ­é¡­Œ@¾Û„ŒE´\zöþhîMÞhcô†`'Õ0bÏ›säföËe/ØØ ­-nå“£Ã;8$g°†È‘üÎi¿Ì5Îêñ=@YßÔ‘ÉfÆGÊ:Oôéæ²¥›L­´™0TGk#Ûªª#U=œ¯ƒU¡Þ&Zºn“51êÆ`9eð7éa:Ô vâMJxÁw~ߤýj<„Fk%u)ò_ÝûPâïž:ß!دk膤—ÖO›q!G¥t~¾p¦ŒAäà¡y‹šÝvv 8ÚÎ.äÜVSÝμ5-gfcšU1@M[ª)(t©Éaƒé®²W(Ÿ¹6Ãö1¿ »H ÷/7” 4¦ æ²Å˜vðqÖATùñ•’ÔÇ:ä7…ù§ûTyX(á‚ÀQ §PâJ"ëÚÆ]I¦Ä g(ÔÕn a j¼"aGËPÀ`mo«0œù"gÈDµ=ì¬õéY»ÓâLÓ"‰ø!£äiñЄ¨É»3@R'‡˜P°“EOvåçI'çeŽ‚î–¸Ñ.fe¼Û:|t”Ì ÛãO¬†™ôüøQ¯ zyK~ŽÁ èÇÃe+˜ÝP ®®êE”÷ç!ê‡=Ùtí³¨ŽöHÏÍ?c¬ú»0“.ø*Å·4øž¢ÓQÀü"áð‹Jz œqOVNLêIüMAßî»P[À³§ø6£1ÑÇ ³ØÛ€å`÷cûWÿŠü© øaLÊÞ&àùl?°=J l²Šf„¤ôã?4Hýv¶Ï&䨦RÞ¥ªÎ8j‡D×ûÆ¿ÄAç3ð;kÜ,Gq›ïO¶êKPg|âBs‚ž3À 3·TŠOÒGGNŒ¼ ±ã:dIÿM:à{eæ@?çfB}ýñâ>yš+^_aVã£;Ȉ”h3w‚Ù2üOûÞ‘7Ô ^E 6ýYS¡›~Õ,bŸjÖ–ð‚[²ŠrMßSã¿IõŒpÂ-ÑC×¹ÝMÉY¨{¢î‹º?Áâ+øw~¯ž,*^E¦oêF(±Æ¸}üpãK߇ Fi„™ql¢AWì„èÐ=X4®HŸPpc¯ÏÂËL/tÁ{ÂXb•gêæ 5êæí9ÜÍÙõ1ÝÅ£‰Ô‚NÕàwî¥I0^uA‚ù¯ ~Ó5dÀ;2jUH §¥rBìNn`”Ã6ëß·€ø‘€B›üßä± Þ©¹ÍÐð]üFZý‰Á.–à NÄÞN!3ETÇ­û¤»Š’®‰?Ëzõ(Ñ@ÐýŒ†È EíÃGƒ0Eï¢W@µ'ª<È›T¨.*Ú™ÆjÓz±FmÂÈ?§»3³ÕijNA_œÿ+0‘àœÆ»ŽÂCb4:jŠ'†øøUEÏÁ½Ð['“~ +$Kœ_ñ}zp‚a ¼ŽÎSgØŒ;¨`P÷¡Ã²$ò 6¿õ›ÏÐmc$Æ{èqAʰQÆîž¥):C¸ z±Dònáµ¢iípH€P s·üÏÎðóªj¼½Rù"ÛÓŒIxEm[¦Ã²è•õø(©A’O!ïÓ4œÇm€~e±Ë;èî Ç=íè´Yï•|1ICv"¡ñò­ŸžykÆ+}²<3çêŸëÎGXgtÇÔï›|“Wìã=Lvtã ¿ÑP¯gÿ*/´Ÿu­¨vœ(ɘewÅNÄÐOÁ€·JCz!™†Oþ€èÔœ<¤ÌŽ…¾«£;‚"_A|ƒ5ÆßªÙ³—?JuþÔY¿–ˆu&êC1F‚{¾lGaû7Ÿ¬zÑòŠN(9TNyôÖ™G±Ç±wCr=¡ÑsB]¡û6G§¸UÓ—«N³¥f¯|GUD¤ÎS|ð£6ˆz"ÔÈ=‚°_õ¿5~X_…¸ó6àÆH¿®ó¤`ÂÝR7l‹è®‚ŠZå_›7.<¢ÜÊÂNŽ[oßUÊDCž‰Âh4·K ìO’[^6‰fÞðÑ~£Jú£zÀNw+ëy,êwzäôÞ/„ç½®üÜsÔ|vXá‘*œtfÀÉ:¤ŽÞÌyT,åEƒ®´¥˜vÞÅ#Ÿ©N7QÚáÁ¹.¿,|–C_Ý—ýSAÐùñrF ^¼¢ùMÁ®ÝËC+Ço0Ü´ö÷–¡û¤€1'üF…ø½¬B?s¦.Ât]Õ+SÙ‚e€Nç±ó9ÀvÆÅÀ†–uérÔC÷ÊZ\ NÎkÙ±öÊ7«sȉ¹è‘µ=žŒ¦‰pbÌ„:# `"¹¤“0ŠcÐA9jqVƒ­‡µƒ…o.mìot¿s:"!CͲ…)û˜2’„œs6§ù0 È$YèAÎ$ œcú6ZÅeÀðj$^Ý“ •q–a|Eû##sÅ^Q-Z`Ch=‡îŒµbÉE{ ]ñ(qª9"˜5 Åí,t0ޱ$Nm%g|ÑxŠ‹^(³¬`wȨMѱ[«MŸlÁÍÝjšºÏŒüïÁïÜpߨ“¡i‹5ØN¢ê †ºd— Ã€oRk¢ ÌÅMà æ²å„77ÇuY1'ÞJNôbñ„iq¡ýäò6£wê–b0ñ â섊GŽÖÛ§,è.nˆ[v~³Ô{ÁÄ/GjH(B±hÈEßÁ§-ÐÕc_ÞøÐ¿ÜKއ[7·ë áÉ›¶¬ ø‰Œ;LÔ­üK´'Ôº7øy²‹#¼$1Éh²¢.>òU7 Wõ%pÙ¥÷]Öà˜=pSÔçxóÈ(ñiö&qf¿*CøY ûÌêâ8ÖA3:tÍ4­Ã™9^_o… ôAÊn-öUŠŠK褬_)ýŒoˆ1¾ýõŠž;t†ýK÷Qv¼â81ÒeŠUò€©ÕÂÿnü¥iŸ¹Ìî3º´ÉxœDÉx2êÖlŽQôdx Óöð;` Î@¦Lhjý‚?€Î‰Þ ·õHð³言a5`Rù2šÒqWÇ£ILu< -[²áQ¡^ÿ扨܇%¤MTÏ€õ2Üpëç”d#·Fºsê‘Ð!V B‹›CÊ•cšÓrŒoxÓ^Á@‹´ƒúŸÑÈB!‡‡Úüˆf¦>Üü'Á`XÆvËt½ª©œyˆ’P¦hg3¶ÛÜÜÉÊ:ëÿ©ÈsÒ‘)0’ýÙ>ÂI,2›‡.eªÕÍn³HDžÉö{‚Œ^r}iáÃì:ÄŒZ”ê]Ç×LЍ­‡¹J æ¤4ÄM†Ã â.\…&€©%Ú¨Ñ!qIo¶! 68šy¨¨a$+±|Îé”’¼žX;Ø ÏlÀ,‡ŒÆ+_6mˆú¶:'#~Cã¥ÍQðEM_ ¬ÏÞš6s?Á£d³c¥õu >†ß¹Ýgê¬ï‹Áç ÒĽnTÞôâf™ÒwCô†,b¸ï~ØwD¥ÿdûýn×Ò´úž#zI«Ÿl¿ßõZ’xq“QI÷’B,à/ò‚ç:.a-Æ¢dÕéö| =]ˆ oéÚˆ3Lân èB¦œ’z¼`ÚØ‚Ò+%ú£¦{…ZpŸ1‰È ?xku‘D˜C§ºà¼xûªcÀ5àÐ{;Jžå¥3$ù¦E¸›ê¢w Ac»O ¿!#âC—B!+ñ^—¥·i?ÉW¸ð'ê› .Σ3ÉõhÈ…÷;nðIoª“” yL]µ;øw©[ãrAuŸ 2nÝ À­¾#ø¹S]ˆÂ)çÞjàÜóÀ:ŽTG@×>[Ç“G+ÁWK¢b•¡ý|¶ÜÝ¢Õ 3ÉL"ïþ&vN^bñ¨ÊÝ¿ãTÃ}UÂ@qÚ·“y‡YÜRoL3ĉ’œYg'¾q“GVªhG/–L«muZQ²SB1¡¤Ú–…?Aÿ ¥oóòäÓéiÖ ä4Aä;~¡"uÍhC+ê’õK ¿Õˆ¯s¨b~/=þí‹9ÝFä,hØŠæýGé¾­Ý»%e…›£åº‰~|ÈÙ‰ê ) iÖsuHü‹ìò!'ýyX\ùËÊ4˜pÌ7r×.Net= ovˆ¼‰·Ñyˆµw^þ¤®jt(ûà3/°¦ø©B¿å°[¾ižÚdb£)ʶüQr¤7ªlÃ¥POاÐeâáÿ ³YÏ ÌÊ0>l¯PMÜ)œ¸j—×/“_Eôa1` iÞÅÖêÑm°®(k%“”÷Ê%÷=Õ'»ò;߇Ãoô8xp«êµg)‚që©Øgn=Ëì¹m ;¿;0{š×û¨!ÐÖ%·ê¹p å·Â­ˆ¦y(E "¡|ðXmv.ÖtÄš’p“`~ž'#б¬´«ax%­Mžž¼2¬¬®`÷w&cF2)ü7T¼ÅêÓP<44]Þœp=ºÿîY¤ïÀoÞ‘ü!çø^*Ÿqä læÑòÖzÏÞŠ÷†ú™‚|5ó•ý:#Ÿsö¬Öò jܡԲÌMãL-aK·TTw’ômY5EÓ–ïMÝëLȲøŒßœ…ØÒm-ÏÐÍ(Ànpìw-F;‚Õ>b羫…O¨qGõ†¼Žþ¼¬^zwSÒ“÷ø‡äNH}Õ/sMºdÚY; ß-sUºh¦9ÈÿçVŠ ÿ. ö2‡¦KÈ8ƒ:–y<]D¸’e.Q—4$è jYæ2uQSbÕ,sd¶¤1^7‹PÃ2)oQCBU,“—4Â…žqHý]ÔO°—E]´m׎ùœgëï[ÉðeqH—ïÕÓ–E)ýŽ}zZÅ7žÉçh%Íñè)NêÒ NA”ÿsÌØñKØÿ¹ñüBÍŸ‹`†»4>I8±¿ªw_¸ªT„Ë.tALÛøNÃÛµ»Ó)‰Bbˆ~á#! ISücôdå÷„2÷â@DGjò¥¤H˜¼¢ÍçÜ{+Ÿe²ü] 7 x« ‡‰±Ðƒ·ôO䑺ï6p·í…®»M&ËöƒˆàÞ{X¶™˜Ô„±PéÈÑÛw=Õ¤Çñ¢^zSn$ÊmµbQ”3”ˆüç¤ö¼Žï^îe=àØi’CïÙµè%›M0ßT|’³ˆQ^Óà,\f‚ž¸võg«xÖT•4\¢ŒšŠB¡y±è?Þâ³h«!È Ð Ç–Ôøü4g—+ÏÃ~ •>.ßX×úXèæ<’´‚;§–9å0¡!ý™©ÉѺ~ç\¡#|+3 ëëð1(®óŒùŒÐq÷èjèÆâÖðåèG~£ìÖ¢ÌÂ1¡'Õ¶iŽ¨Ëœ¥§ 4_è§|Äð0Ñ|Æ_ù· ÈÈò¸£rÍŒ®¹C>ã¡|Z±ˆk—J Ú¬%Lj^ð;gî5–7¹Œ‰š5ä¤XÊC¡¸ô…©1¿ŒÛR7•®JæÏ0;‡öxƒ>µñ#ZJh!¿~Š™š“Íf¨cŽâ^Ž$]påÛ€¸‡XK=f¢;œ.ßWù~,Žá¾Çï̬ÂûÅ;Ôµðäë¬HWôÌg޶Ói=Ùkò™ckh]OI‰ÊÚÈèþ‰w‰?§Üs”wóøùÒCÀµE7äºî= ÔxÊ7ü®íK4‡~¡ é ½# æqaÒà Ç’è®Q24î:âÃ>¥C˜BAÁeš§ĹÑÞTŽË nK¼PË¢_¡Ï e:B4ŽMy\ŒÕ­¼º‡|F¨ý:ñ«rpócàUŸfšþvɳá˜éóØ èGª#úÄbmÖáú†}k¼•86pPÓÂS¬¸—hD&ôFv8‡Xüý¤®z¡Fûw,š1y½A¤UzZG/ “ ýŽ_“æyŠ×yì’ aC0,\.Ú”$…Ð{øYtiåÏl°‚ŒÈÏþQòŸü'NŒ° ãó!Œ_<§Ñå!aê ÆØ}²ûƒ¦¤”wø²±qiz]6Ê><[â¥- q|Y”§±d‚Ÿ5¹hƒÒtŠá¡óô´ž|*ü½5Zæãq—S¶Œç¼‚F„RĹ]¡0Ê¾ØæÊo¬Í:8y¶hÆ5feÍ[md!zFè‡Ö“µ]3éRÍJz7':äUã6É'žâûbò‰rlj¥=aãëzOò‡Íz¦sø'‰^ì£Ð€·†Å9F½"?¨Óœýqõ‰xFàhA2˜<úÁwÑøÑwÛÕ ¢£=üA‰=DúÅ"C¢} 3Ñ1'þÉ¢Q>ˆÍiõ@?íá(Fè9¡ïƒèäÀÙGŸ÷@Ï\6ôôpbTø½OæL@úÙB–©ç bžfên˜(;SŠ÷U…Ѓ¾¬ó^áìÇ¡ŠÝúUlÄdÜ`D÷ˆöƒñ+zñ¦70c ¡—yiÁaiÑ®Žx'‚Ýí¼gfµ«Ë¢RŸÓh2 Ëý=¾ «3DÞIä<¼4/#Á\Ü!b è¡FÿË2ãÎYGJ ŸP(wÌEø½èÔ¾yG è8&㣣Õ=­kÏöÎ4ù¦ë1«…ëïÕ½fÖx:ˆÏ¡®")а —X·HŸd½Rÿ‚€ÂEë!ë°“Â}rÖÚ˜í3©(R:“0½«ã/çªÕ¨ÿ° ÎSÈ£†B¢|‡ú¦Tžak æ~gê"#Ö„š‹NP´*êøçžÕDb]Z2å˜ Œ/‘­O%lφU[ Ød‚ŽÆ&2‘ì„avÆ7–çÇ—-L¹´yàb6›§P‹ ŸþfºÁVg-džï»Úm¼«_‡i*Œ7à ·Í@ò48!bnæ6È«hÅ­ažtáÚ!i3ÞíË®ý§„=÷Úô†ƒÁ+[Xç Q«w?‹óÓ*/)•Þ š¼lA{6°K·¬D1ÞN„°ŠÙ?F9®b÷Üáq=‹žzðönŒk-FÀN-©ŸÄ"Ù]Â;2FÐTo Vhª›ÚuBÑ£"Ê ]˜öK ЋŶK½3MPtÔ­ìtœj¦Û8¦ÔÄô,ƒËs 8€$ÀÞ3æCN†8kðYŒêæšn‹3â»Ì;®"8ÜÁ&Ð<éãœÙ ^°ßû¯žÌSå-ï'^ñ¹N‰NÄD¶¥4äoˆ/æä>2ÐtW°Wƒ>8áW?µ¢Áa/Fϼ+Oß#¨¢æ-‚Fw”¼Ì?›þ¢fSǮܣ2÷¦¿Ó´Úg4­ö~>î »ÚXOª@=ˆñ: ‹ÎÐVíçˆÖ^ã¤Ü lýa'ЎᵄS6¤Œæ”ÚÜÄ*Œê̾•8ÇE Þ“–fK@: zO~Yþ/ÒWÀkÙ·á‡Ò3`¡¬+uî‰$©Ã9Ãü–º[Hj‡‹÷œ Ÿ{…0:ÆÿLø—½À÷oÊùqã†ðtj8°Í²Þw'µ?Cô<Ût>„ ‹ ¶èõDbû7ëI¯Û¦y[ôx’l¿ 9éqûaqZôv*æz_›}“†ïÆíbšGÁ4N»>ãËNs•{Ô„B¯;‰ÇãOâ€w:„%ívxZo Í‹NÝm…Öåt Ç kžÈíâglÛ$í„xBt9ýDª<þGëjþãæîÿ"‘/¶ðY>ÖBkã”ø¥Ô_‘/û‚,S˜w—1TÙ«ô¡OqUe²Uú¹U( „ݾg¨FéíïÍ ®³˜Aäx;¢ßNŸ¶D=®ÒíP4'í#ÀsdO0Ǹ…*LGhòþÚ÷jn>rHñt rÂÑšM ö!g8wÜßÓÀwê¡f;ÇÖ×ÎC*ØÊ;{d€âé(|÷ ÷âóá!KïÅådT* ·³ Ð+6êÐ~S. eb@CWulá|Š(cw£°º?[^žB+Žëi’.ûá$ܯ0#Í¥óþåÑ”uþµòŠ-Ú’ŒÐÚœ|AU]DU‘¾:™U™4IV°·óÅ«öÑ7r5KXÏø(“ ‹2Ù;“\Ù;Lô‹|1±M’}©Æ‰ãÌݹ_Rêï‚õ­)g¹vâÍXç|/#¼iëâãkO¶=O\¤í g6|’d´ú"èeß1EÃëÒR8U9j²ÜäžáQú‚ôðOD—x´P­¹5I&%(á.’Ø [©B!tÙU$â噹Ú53!E¤Ý"bdAÒý]é‹<4\ÄB¹$á#Óå8$’¾¡€½°¹VO34J*¶Ä]Ȭ ö%IEÞc®VêN0tÀ^ñWä{o¼Êû¢óTgE/ (õXÕFT¾jµoÅöÞûZ¦²Ë;2°‹D/~I­žHO`̹Êì°ÙÄÏ.‰3—ðº£àu‘ZÔr‹u^ot2TÊÖ1åÌ>»`mÓ}1 ÚXxCýÂ6A tžÓÂäÓ|’z-èA€F¤à4õ‚~˜´±ˆ¼„šîiir÷;M~”ŠCÛGî\lTCMm¤ú&6j#vðb?<ئUzªÈã¼+Ø)®ýGåY× hÒ‹vÚ#g*¤f͛ټǭ‰2Q‰wÖlaŠãêï¼¹JCÎN‹¤$°TD‘|› nÉfnEL„™ôK!Höæ¾3ê–‹è–Kd‹Ýùêp»Å›«%$&øKãÊ;>î/L!HJÓŒ7’X;»è»-£8K‡ŒÊŠ¥È½W£: ´jò ã£IH-Œ'7.µÅ-îìK6¤òS‰¼2¸v `ÀXÎŽ{ [èÏÄõ(­Ä ¢DˆII„S‘7ŠWޱ°ÝÙI!íf²»0oŸhªUQ– ?¿Ò|-RÄ•S_´(Óãk7z7ÿêÌf`m‚&3:‘²ÖáëÑ ƒ \Nf^ü#1â‰8‚%sG0?”u›ûÄ<Ž%‚o&§¸øîb{-gZi}#yŒ<H±6º_XM,0¹ø•‘ÔD¨ôÑ‘c¨@ã¹²Y13ýLvŒ‡ä`˜‘>¦5äÍ@áBUœÂM1&jŠäNÓš¬cB0Ïà©X¸©_÷<’¥÷C{3.@Û[ÑèÛ9o^Âè"-Ã’&Aíù—ÃFTt]ÅݺçÊ&–? hŠ}# œPýMnp¹¢’œ‰J"st+q÷?_Ž9“31*™ÿV^ß• ½¯ÚÅ×§mlçPô­š­p\j3qƒ”ùyú>ÎÅ1ïåüyò~.\5óß´k|èö´PÍÅVÄ4n¯°ìhy“4.yDÐÝfaã\M¥ß©¹ã‡è†Û€M&dãì¼å¡FšÎo: S4žÇX“ô»1"ÞŒQ©h;쎰"èž7{Y@Yo7Ê]kžÔ±Ag.€ý¦nÊ™µ€ÐOï&=‡SJO.¶>–æIãÖwë¨Cÿ  >½2.X÷ßf E6÷äïe¦·^•ùÇNòzŒ–·`ìdI1xÖ pqηpê¸bW­ß«Þæì/žôCh>"ßsPWJ§~žåaËË•R¹È˜ÂÒ‡Q§¥ñ¯„ãJ³Äå3%€–\pË|³äHxͦb›'Gh[a×ÕÞ—X‰÷*ù†NB¹ßÒ¸VOLàéÑP¤ûŽÑù6¦í¯ì“¡¤[{ƒóÆ ô´8Éæ‚Ïçû¸tëï• çLþÀËøx¸=âȶ%?øMEµŸOã§i†<’×»²ê<¤0¬,0ËëÝX•ùY cwSàÊ#ËÏqá»|x^‹¡õÌ!;£â$þä磎´ho›ÔRäø@ž±Áòðzü²¥ GM˺ût¨§BâÍS1iDS}²pÍ¡ö&›£-îrÿùTßñêiÞˆI’uªšùtÔ~y6t;>ˆ,!í(:AW{ÓÀ“°ý^Ï £íÚô…ÏÃÐ0³ð§²xe÷¡*Qw'3ŒM±g÷²ZÕ$½mÖûÁû%"}B–(2F¨ü—uˆozjÑ.‰ðü¢I­l5%‚9“$CŒ¼£€õËÊJTdR •$ÄÀÍ_ËáŸà –v¹P׉P<ܷ⃆j:D†^³ß†‹ó¢ùsc%ª:ÝùsóÇüÓeáQ¢² ‚"μÝvWþ}dI+҉Ƴ㫠˜˜‰÷Ô¨}ÅOK7>HFË,ràOäh=BZ:!øÉ.ìKoÀäzY»æÀj$¬ÃºL´‚ênð€Fˆ<|jÞÒ.…‘‰›;FxÔ˜Œ6ÖiÆÑ$Ïr?7YVÀÞi†\>Á’6‘ÇQx¦L v»GIzÎH)vÀf³’0ùaQóü……wįXÌ0nXØ ä6&©vÑIþxÏÊf(7,j®L´=š"Ö>ÒºÑÄê˜Jö z'Ã?Þn6ãü9=ctµÙ_%a.mz^9Ñ;µÅ¿`ûçyóÞÔIj[ÂÃàøÇ»SŒTaÏBÕyV\Ä<.iåH—öú[´ÔKËn‡¯3ærÜป€–Š8®0x¦Òc?9)Äs7‰óö’湪¨3 <ÉÄu7Iì´>i Ëa7)ퟛؑmÿ£Ý?*þöHTs'(1ÉÓÈ5Ÿ¥‚”+äÑÜ ¢gßoî  Š\M˜4¦óˆõÇ£-ñ†],qÁÑ7Ù ßU-2Y®•¦¸R{R¹íâ7Fýš%‘RÓÞ0£‰céE¦kª´ÊËf¢ý‘;cƦ ZK æ²Gw\Õ/[„æbÞåÁ£" —]YÃÑŒ­X | ÄzCãfù¥Í-©6ÛMüw+šO7Kf²>áÍ;€ÐÞnÃÏ”qƒ·‹Ê[w3Iˆ‚Ûm*м ¨QE]l’JÌ`»#‘}ëd:Š`“Ò’Ä£UàŸÈ©â¨!墖ÿšðyÂË /üÌ$Q‡MúPÈåÔæ³ásP„×™CÕ;{™B {^dÉê-DY&‰k¤²é”9Û΢£"mЊÞ)+b:Ûi Á] K§äÈ)ZLáZÑZv‰ôÔÃí)g[ߊóÇ6 Û;bÀx €øÆ2{e:i‚.ùÌFž,(O†XSBøÞÎß#€¹ ¸©r#Ø­iîÖñuŠ‘ÔÑÉ  ²ºW†¬äQXÙ­4¨ñïeiCãn§¼6©xyI˜4kv›øju0Ò¦[ våN0ÐÝ6rBš¢5Íô»-­·Ý.BÛi‚ö˜6˜dØ`;?ë µ´š¢ î¾Û‰Á[L’ÊÒíú)\!ÐbÑxµdÍ)¥QñE2¢*n®,½§­z·÷nÕb²îô•ÆÖ˜>åüj[? ð¸ÒÀcN2;®:Â%Õ»b¨æds·ÂÝa‘}¡*NBñî@"Ôî¹…98+ýQ }dYÒº<ŠÙêëk †‰Ž¨Dì¬;¿’ZoýP /=œ»*f¿]ò¥;Ä$[Ý¡^ N|ô½³ˆ‰rMôŸÉô+k/NoF%Y@²è€nCL–.ÆÂÆ?ÞwAz ms»4ºÛÛ.I4oðP)4ã¸/Õ¬+oDmJ2í.õÊ,jÝÍ“iìqY쥠O[þ}™í¾¿ð¸" ÇÛcÜl AÊÄN¢­;Üe‚ f‘³³¿ãšûê1tÅ£¼ùûõ ¥þäjÆhÊïwáK!¼…¨ù›)#˜ÿ¤ÎÜ‹ nï¿ÌЕsd-7æá^hìö{/£ÔSÇ-ÛLáˆWï÷1m½žÖTÖ™c{±%í÷A—N´ßEG}ˆLƒ³·hR"€"Ç烒“„þÛwlOïáO\ X†j$HÙs`É{ŠÕSM³T:_¤$òàU4UÆÕ› €Z¤®¡âeÝám¬Ù0’0÷± Ò™Ž¯å.æp®j*˜Å?u£f);èìÁZ¢?“1Ë÷ƒŒÉ„ŒÌ˜Ý™ve}f;ù^CóVºÒÊ °Ì@8ȴĹ–¸X¥²RL}lË»¾u†¯ª]õŸhÅÊJ!ô‹ÆtŠ7hdâÊŠ–ñU<º 0»ɸM/Fw3¨Œ¯ÒýÏ)H¦P·ïúd}-MËVÆ*yc€é C‘‹\W# :l3ýá}Šj"ˈñÛõJ%«T” * °`•ÙÛ‚Lqìñ<òH!!cJ¡e4_VåBÃÉõšÈ):Ö‰Ýeé*^±óŽl®x Jvÿ¿M¾$×¼mˆf"hÚMÆFì »^ëS5ºS4.ƒšhVV÷ö{Mö: á(1†<ö˜àŽxûjK:¤ÊlbNw›„:÷i~•DiåÑJX™Í·?¡Lå ùx¦¬ D}l:I ´pŒVÞM·]LP悲ýS¥Â5„Q,U!MíÊl^vï¸Ñ/ÿ{îë?u¯—º¥ÓC%D¿!ÔÆÝÛˆÎî/†ÙSå«öŠÇú:é„o‚—ÄY£*-®aÞσ[½(EXS û®ghò3Ý€Õ¼Û㵩©3¯¸WÇðÞð®Á'õF‰¨ÊHTÀ˜°Œt C€3?ŽˆcS@¥ã™†I8ÑUú£ÓuT­Í°Œ½DíÜ0‹/’ŽsU¥Ý@NIìfȆk±BïÀêEŠÕªˆ£}Î<3…í:Úá°ùAfZ%?gèÜQôg^cjÔéVyÓ£…‹/¬Tý0Ö‡gú ³“xsjcøS¢Q_Øu?§-}§\[=vkÊ€e&¢L}¦Ãépr§)ÅÅ$¹|,¡Üë­U?Ík²À‚ãþŽ"~êYY`Nh¬ ^ø‘Þ€»ÓËâewæ›®>ñ+4—Â#÷‹î}ë£D$I,ëëž ŸÐʼnʬ*³(Α© y>ÕçfŒ†Zœ(½ˆîƒç…H¹òe‹ÎÅ×SL”ƒ-ÁvAh¼™úŒÁA~ÞðÝíB©&ïÁ7Œj­ûò²…=Åú¼xDÝv]ë‰S&öüÈÎ}¯À¿C¢d(„vÆa`Îm s+Òö<`k?!Å'´¯&ò±±)Ÿ£m`½FB‹ŽÒŠ‚í“‹¬©1ôšõ$ºC©¸Ã„U'ÉMó7ȱG>^1E–°ÜzHøzC‘›ZŒlO¥¢1¬8$ròžrñA,б°Zˆ™15Éç(FÕ;õ“½ì°®ü™m`/ÙóÍ©Bƒ @µyéù'(C„òŽYdÏ%qj'M0zÍÿä$ 2ñƒC`«ØMMf1t,Vðþ@g0ÄÃÿ”ü#b–ˆÊäæ6%®zçÝõî8ø†‹ÞüÍÑ*­‡†W„)[^Í^Í+5ngü– Î~:ržÏ5Ž£òºF’•ÍwaZï¸$jP ÈBýçLC/lÏ^÷›=Ú;ËǰÓÒ‡û)ð¬çt§‹ï@¤üÊp½Ac ý·ŠóÑ/}K*ãPGÿ§Øœ»Ÿê]âsÅê ó#7¬¬ÿ0‚½r®-¡ÎAÂP¬Æ¢÷lË:2Œºø¶Á¿šñ‹ú´é®ÍË$3Ò‰D+lä%:s^×|8>r¢¬÷ؘ¥À™¸[è\Òã—¶>bveê‚8 sœ4<èèØ«L<õιÅ]OCEP,ÿ8·(Nñh/O†ã¸÷Àû)þQ+Óç—×P„v ½öàÃÒu€ƒW‡édU?8åÃt`ŠÔ=el1ÉÝÎ ÏNÍÓ;E‹ÔrATï<>FV]T ³=-êze¬#š¥ i¢ ßúK=§¨¬"¶,<PïøóSªòvàh.†Šë“O&s°Eà Cʶ^„š>aš’ûW93 –Š2shPtI˜ÓÕÅ{±y¿+Ä HD9ZÞ˜bðH-Î]óWü'`æ“8¡4p"ŽE0Õ¸2»Ä}N0EͦMúÙÏÿn;ìéjÝÍù‘Ì¥ê·!2,bŒÆUjô;üUìMº aÇJoç*R\n+R‘ÂC?úÿëguêš3ö•rØÐÇ sÑk\ïÚ6Î)ÜUôݦîÆuâ¾Á¾WÞÑU¦0x-ö˜…SŠÁ;ºÕætµ ‰8r¥Ie’ÏŸaëßVò†ò!>¨Ë÷HëÉKÅî8-ôîµt–óÉ[ν@_Ÿ»g:žöu7Eg 0ú*|xûLd¡Œ‚l@ÓÒ|Ù;„óx@ ÉhtŸÝ3lHò#ƒ¿EŽ`‘ñY‹É qKST…‘¦‡IüÞÈï|Ûœyâ›C{ëÑÞQ~{a=ði)Dl¹Õ'ÞÝŠÕ¼½1ìT¾9õW ª>x÷\®õ¦ï»¦Ý5xS‚®eH¥R¨ KCìÙëh'­ÐÁëª#ºµØ×œLú\¶ý Žb¼Bë  Q±V£OEÄÛE³ŒlúNœ¡{/lí®Ý¢¤YÐòÁÑê™ãhí7ç÷ºP*…[®‘‚Eá´Í–Ÿšcóì-J^€X…*…‡±©BÍ&“bí…ïv5 L˜EA³¯x]F¥TŠþºý:ÉtàL{c`Œ²YßáIæz¤¼@@™S\+ùňy‹.¼L-ô %î-E ÈÒ×Ç„Ñî*s«ŽãpKC¤p$Äçú|í€Ï8­*Tbië´8‚ÜXã#¯á(†Ø…¨«ÞÖ Žy`‡®y©ân ŒW±Êkòâœz ÊúéDùÄncFÁ‰¬ünF3=Dæyœ&äœ,ò+l8æ%ƒ 4ïZ6½¬´A®1~CÄ‚¨>¥³¨(ÞÅ5½ñmS ;»Y„ÐŽ‚½\Uc‚’RÜ”¡>AôS |Ü¡ê~HAg¡1ƒ<öÃì#¾ÄKEÚa½Ã(¦ ±„ÄSJˆÔJ ãÙc¬–AÌð0ª+Ë3™Â^J‰¥0ë¦øê2Ô!,¢Ê2ýµÓšÊ~´Wö@¥d¢c· ½‡…ÌÙ^Ê'*Et|®ßjáàzÚrÕ—"Æžº=·ÆD³u» R‘’*ªßˆîHôDö¶jâ¤)ØsmÍ)žbu&ID.J U b«o§Ž‚cPOD!úc€vTU:åƒrvTuWäÅÂ[ÔBGeRõ;òOD¾áaáRuXT:*©ßoTñid>Iù·Lí££Ê¹Á—=Ø•JcD!?à¡W hÇHOM)=ékáa/•ùôÔTi«‡:Q™VƒZí¼ÔSkˆí £Hoi¡å=5•ôPĔϥŒ™iÊ~­µL=oHËWÙtG~½n>>aI)XIk¸eµ=^öji@sâx%EجίÿÐ N.²ÊåGA@ôMi”4†ª]bª¨øïI%?Þá5[§êàŸ<¾%c`¾õžh1-«šOn`Å,ÚŠÙ¡Ég,F…÷¢:cè.îI¸ÁzJûx¾Õ쀬téY±ïù`–6Þ­c+Ä+E’ ƶұÔ@ˆnÿP‘{á0ÏÆEdƒ#FÁüéüÌ[,;Í|Þ@SŠym¢ŠY•9ÀÔeÍNè²Ï7ö‘¨­Š†g &¿âvHùtË}f·'îšN2µšÿMd A†ÛÃã½²s±¿#RØ·ù›[½Gb• öàRt@•£¼Í^ ]ï[ý®£¯à€zÞõch;.¢+óP94 <³ÝæÔŸËy®ŒP´xË1 ³j\ÇÝÔ_ÜslJD>èœ9ºÄ¬‹÷C7E¢±ÑÃrº‰¼ßaã5´ü†ïXµÊînDQl›²l0‰`{T½žá~)>`KwâÒ»±ië<ÎF\M”CžÐE<ì¾þ¼Û×Íeì(sö{ôѾoˆn*èÚÃ8/ñw}ËvHæÕ@þ•ùR7ú1ÐÇHþ„Ö8–¯œ ™ì´hŸY ùd-ä" {gžG~öÐWì„â7‡úÀ}}§…þbðÍN ßã-ˆK¼¹…"Q’þ80ZÐÈ”f×€º#f¢™Á€n1`ÍÊ#ÈzÅZ7Õ‡⓼A" ¹Jªü¹ë`eÉEì;þ(ö Å’½ÛqAËîƒ#0ÇPs+`qµ.Wäò‚Rqó‚#Ö~Ž`œàÜDn˜7öI œ¢y™(šQXCHOËìœÒ,](E-¬ÈU”Œ1>X‡ÞœZa“=À\±8« ô´Ò͉µýhŒ=š‹ÍžÐ$Œ4=w7 _ôíýÓ‘öcQå–Š*}íjs7™M×5'2ôR‡OûED^åã„lû®iejPÇ–uèþ øÕS¿C=²MÆ¿7y ŒÜ¨5–ÆùZÿ„çQÎ…|àú<}ÓjÀZ Ô%+$à„ŽâAó¥D ÐŒˆ´g‰¨šèI¿²Wåáòå«°Ÿ†”f‡I¯!4Nñœïõ%Éo ÊX!ßFiÏ©ÃýU97¬„˜ ”Qã-ÁIzZÝ5~èfŠ»q­ºíe†fY#2®êŸuT@hUê5¡ÝžÕ8%¹5†¬•TÇj<øŒ\´.£¹…ÐÐIá»;i sÌh_ÂWÐ92Ñ.Zu¸>PÇdn¡sn ÃHDbÆÛ¬Ð 3~ sÅÒò}`ùèÝÓ},gO¶c@évÈljýÏŽù0/¢ÿÙ1Ÿ¦…5+Öª âGŸ®Š9½‚à0Š±à–Ø[®]Ë;²v7®wqvÇïfš;­a• P_ð°gh{@Š=¬ùaè§‚JK,ýdX©ï¤NÐ Š†%ë‰ÙûuEã,+ʬyÃÔIÄRiv‹XQ`i3ûr1†É*Ü:’• ™ŠÝÚƒ|¥:’Ǧ¹ 5nÚ€aaHs*(3+×<G tŽÌÀ Ã÷Iˆ01G™ejX:dÓã<•Á†½){S½•÷q¼yLβSƒ ½ÊD¯ê3‰Y{U&gì\lêc¡.ᆈJÿ°ÈA+8˜4-Mïáj†—8¬{åÊŠ8SÏW £Ú곚\Gµí‰í?¢æ¸±NY{€Æ™ìçfïsVd Hff_‘-ú5]G`μ¦9¹]ž·1ü `¢}Žºëx$ƒ“ønÒX[d¥Wü/ŒFwa%fT«¶tú…‡1Ä’.^ñ=Ú—_•Ðcâcs@E@µ-m½NÉJ»¬Ù©9—*uá¯3Ñ/}£7ý«£_û\%ŽÞ—gß{Â0yÔÛž>Ëûyrb›Bwç)LˆpÞå¬Ûœùñ…OW³»û;&•VRiúÛbtÇÉPyâöêHñ·NìzÀ@X‡áúIr¼E®ü­v9¥®ñ³Ÿa´v5iIwAseðè˜%9¤xíåÝqcU¾G=ä냔LshD.>Ðs ªá¿ïž¼±É[í0™–X^(ÊÓ§0¿ŽúIhA×ÔW aÎ12T üÂ;sLKäŠE Ö(5ŠŒ¾."ÚÖ0jþ†•/ ¦ýŽø ùXüÒ!ùXׇp½ŽA±Ú¦?—È[ƒ×zxô>h^ϰ~$•!þy EÈk·âH'vº€ Âª\`êgóÖ+~j>Ö÷‹ÚªîÞ.¬kñÊ»»]ø³‡N×€Pâ 7’*Ö'˜Äš&h_ èù rï„Æa´À½Ö-Ç] ´°Œ0XÛÖ/d„QÅ•(»²ÁH쬆©Ñ¿³m0Zöæ ³„‘Å­J“ÅgCŸ°#ì°NsO*©O}}î nüŒ6:ÇþŒQD‹c}¹鄯!Ñg?¥ºa³=ëO˜ä‰¢ð‘“&°Ãë* bŠaO‰ÛÊp #éãÝ»Ãl…èq;p3^ðã˼m^ÏÃG‚Öû¯IíëÆËmÃëxnš*qÑuáU÷ ²ú*œg)H÷“û&}A#!\Q_Ï pQõ%8ÖBµ44±F³ÖZUYGÞ[ÚŠˆÆ®¿U*dHª¿~¸Ž›é{³%„h|øÐ_Èmpñ© ’ê£x\Ç6#ïëIQÆÇ’Žd&‘³6KšÃ]›ÚüÊaS[•ÛЬ;4–ž‰Ò«š¸Z½—¨AÁ°¢›¯{Vá¬Ä}ß+l”ö5 aI¹(I¿§˜GP™ü•ûËP,9?à ڃÙ%¦¶ ”ªmNØ6,ªEv¡¯rQP¸dvñ#0(T\ U,2n.ɧ`²p@ŸpŠUùàMJ¤ Ǹëèñ R@g¬Às^_÷èô]‰`tð0šžý„Ãô©¦­ÞíJì¿Ç—‚þµ9–5íÑDL9xØ%i“‡wh8Ç¡’EÛÃѱS­?lNóãÖ<ßšö¬¥f¤!fWIœÅPÖ ž„£ï¥­1+`qB6‡¥¥=ë©i®$õœ;Þá…*¢—¢l}¾>ËëVœŽî¸°@1H9Ûa4ä7Ú›3± ’™L{´–$ÈZrð\iSö=š"CàøŒá.ýu?šZ>aa**ÏLûEùdôŸ¿òŸÈÞCés¡¼Ç Ipåã±?QòN•86¯# ácqYHÅà `ÛŸ 1+qá»'Ž»¹‹@üØ_;±w5 ÃÍáÀ¨bÎ`D_?LwÂw葬Ä$PßÒM*Æêš>L'cÔÔÐOМO¿Ï>"Ù'ŸÑFÃÏ ¹P© / E|ÃG¤ú¿!‘£Ž~ö)æ°‰Hh)ˆB )¦–õ Îô1œÐD8‰-E¾á#R}‚_\#|nέó9 )3‰Jn.©>ÁoEEJZ_Dlé'núDŸ|±Kò+f‰(JÀ°MpúÌkØžÞæ¤;ðî ¼Àìs˜aì}÷Õ'øÅýOàzSÁ½™±Ï|ÃG¤úôô/›îÛ/¿m~ùö·¯›~ûõ÷üyãE~lñã_ÿ!Nùõû¯ÿýëß6—ïßþùõûÿøó½âÇ_ÿo›ÿëß¾þóû×_¾üøú·ÿ€ov_ÿúÿÚü×ïßþñçMñå÷o¿ÿúË—ßþZ|ûÇùõ÷_ÿû_‹ß¾üñÇ_^~ýþå_§‡x·ùÛ¯PÌßþcóëïüøúåoOOÛ,¼ß‡Ì{”*ö/›ÓïÃ'5•ˆ1øÅ:üœŸwì¨ ³•…ïúöÔö*öÊ¢wýG†¡Òdì|eÙM[ߘ‚º²àyh÷µXY*û]¯à®,öÀÎgV*u.Ñ!~ ²ðø?²#ë)BÔŠ¸›âJ*0¸$öÇé;”µ²‘jY#zÁV¡_ëós„ Ižì'ß§-Öáw{Vߣ\m.°½íàçëðc,à 2öXû* ו^çcÙQ lÇÓàm¼õÙŠ؆iÈ /Åû”^²+Fû$§ÎU¬ ³³ÙIáÍÝ5uÈ¿è/ìÔ—´Á%§Ìè°£ìÏM³@/}+úÄîûÚ\4µ1p,YÙè™`L®Î ôØjËïKöÊJ=µ†5jѰ׆UV­wPhÍâ¦?öÏ] «ºEÖÿÅLb¸Ü¿S*W1¢L àÄE¡ÞôN%pæ¯j?„Å*Ì®n÷}§"Gù*Ö²o+ÈñºùŽ70*fnî÷MÂa1f‰¯5ëR eûf¨îRŒfª·¸\œZðl§š«už¥~X–†=PXÅ­s ÷Òù*æÒ$n°@k°¥0eÿ©è:SÒ‹¶”±yÕL¨g¨Å:n[d¼j_†” ®TòÕ.Ï2ó|—óATsaÞ)ë³j/”RîÅ» µoâwÊ·7ñsµNdæLÔÄž>÷°æ}O}#’%ì›#L+fPxÄÙÿ:eGýûß~ýå¯Å·ßÿŸÿöû/?þšÿúå¿-Õ›ÿúõÞ€â·ûãÇ×ïø? $®ÿñÛo_þ Ò¬¿ûþÿ ɵÿióå÷¿m®¿|ÿõŸ?6ÿÕùõë›/lþöõxý_ è_ßôì§Í¿„៑ؿþøñÏ?þü§?ýû¿ÿû‡ªÐ'¾}ÿûŸ¾ýç·ï?þøÓïaø§ØÎ ûMê³Íïß~l¾þþöë/¿¢Šå·_ÿ ¦}ûnì€ýòß¿R³ÿû—ßþíëæüí÷¯Dúÿñ_ÿøšñçP‰yÛ þý@§Èÿ{ïàèjòd–¯ß—º QœøúU ]¯ Z‡»J•cBÖhrŠu˜:mL¹U¯ã0Lºÿ¥Ã þñí÷/¿ÿÀ‘õ¢¶™X4ÇÊN£Ú>Íw–sùv¥HU@›¨R¬‹%þ'-UØÙ„È&ï!{bí+ùì–ZúyŽô3ê –Z;¯YFVõ„ò õM:ho3áUf®o² wYÒk‘^î/9kAo>•ä#!ÇTëH“å°‚|Ý/kCƒŒæ1ð[Ú ú ‚m«iž X½¯}‚;ðÖ~=çú°) D‰™k†ôŽš!Ì>èpElÃV°Í$¥f|£¾CÆaÄ8lã¨Ø Ed–ûD1xØ9*öQCñx$’ÔìG -I¾hHâø³*[9þ*ö¢ç$Ërÿñ8?éŽ@މ ·yðx$Ô‹J û>|¢õ¸ï%Ô£J‹z=¨‘vM½.ᾨĨÃ"œÁyôxËmj­ÔÖÎ^ —ænžxïÁ}Å•šF½X1êÃb=vù Ž{Aã^nƒóí*~žÝ…IËJ¾N˜ÌЇσU‹Š@T–”éÏØÒ0N:le€Š0&’6A­%ÉuQ$µ}hSWi)6ZŠ=ªîéZáÑ<Ÿ”ô#LÕy^ÐT-MÕeufsÕò&k±îì ¹HB¾X·²KF6Y§RQea]Øgû/d¶Ê( 6îI‹"¶a[*ŽÓж…iË1ÚÕë)Éýâ513)ŠÂ ±m´4›iDÓ¶EÖÓdý¨l"SÒ ) 3D­¦4EÆ—‹9B›­âÑfKSÍÙ$±}…YB ¾á÷Áæ\õe2ˆÖ¥ÓÓ|B)ÎU+ËzŸoÕº}ÖŒ²â–´a*m˜´øý¼z†S¹n›s§£®¯%ÉÏò‘ü´Väø ¢Ä뤨äd&z±JÍfòR+ «$ýEAŸ#?²çKMveI½UÚ†õÁK*ÞÁY¢¾ J˜CÇra³ÒV Q )L#%Szoëw˜ðº?Ôx¥½åÁªAT<ýNðמŸáÝ! ¼—äù¾„´Š ´Þˆ«½!é@¸ÈgbÖ‚.kÖ±ú°ï„o0û¼±àùª6£wâ¬Û°Í:57·Éªìg½Æ>ÍæÊOµ¤ôz^•óÂÖÐDÐ˪?r÷FUR©¬×0¸kœ&¦á96; «ò|ØßúRh®%…á»îûÝÊ Vé]$GÍóŽ]7ùSŸoõæ y¹ VÝA›è\wM»i;&ª¤1z@ª»²ÍóeßÓUë~ÍcAñXFtu?¼¦íG~Ý\{¬è¦mЭ—ÓÁ¹Õ¬ÑÑn9Eâ(i¶èœ^jL´mzýÙà Ö+jÑiJ½oè|7öfZ"ÝÌLWÜ^ŽøƒƒB9–À©o ¼ˆ_ °±þÞmU–)õ9ˆuåŒI7f)r-¸…Z;ßxZÒå‡Þk´+Œ‚}1Û®<œSVV,ƒÐEã2ïRøÜz,'¥rh2 DNÂÜÚTï\°³^¦¬œF•|°YÖÆM›×nÑGWèpØ$¢"!ç«ö"˜š*ÍéR#"õ ЃQêŸü7€‹O¸SWB|Ùë#)ZÚw9&UòòÊÆš¦Z=¥¸Ö°0ô" 8k¨tß~’Î<©D¤ó Ì»áÖ“{Š /Åž©ûgñR©ˆœ‚¤}aÕZúÑAŸ'‚3ï ¼àEùà´ðÂËAÁƒã€êè¼ÙË ¬ï‡=ÑÃCwÁmž7½Aóý±oÅß§ºDñ´Á}~ÝÉ%´õNü…ö£§º­)ø³1cÏ (¯èá×¶›O¤ò_ê+kaEP •¾ÁÙƒ¬ðÇ\LõKZÅÇ3j]Ý‚èÌjÕnaÖøÁŠTXK>NÌ¢z01¥ÎC˱#½¼‘î_Ÿ¼’âþ—KÏϱ²‡ì0¸É VÄ"ŸRŽÒ8Ü_‰M¥¿ÝÚú³ø¯Ã—!)æF¢ ù[äaøµmÔi#)­·—Õ„¢[î_§$CŸåé›xúë°dÝ)ðsql®´KÒˆ˜¿Qò*ÊoñUW¤JCf]<Õgüö$_‡Y­«Õµh)ÙŸî›È$qÏ,1&²À#,°²M{Éñx¸]à uÙO§‚y¹ì {÷úzU à÷‹G‚¿h.¤Ý=×÷1V>]/ H:(6…õu?Ô|Ie ê—˜kƷΟ@ï=†záZ§ëñ$Ó ‘þóz·¹õ×§`‹!à÷kç/œh½À*3Üj£J|þÃû“@˜¾cœÊ04j\ aUØõ¸|Qr¼›•1|œ9@Î À›Hø}pavï—1G×óöB;tÚ|iêBäk #Š´£EÀóç‰Åñ*ÐŒÐËÛ Ž,Fç ø5,¨Ë©wwðçgÙ·^Ë£ƒ¾â†%†T®íð¿µ1^›jø»ÆZÏ‚vÙ‹}”a¾¬Øê¹håqœÈ+xœCQõ¦uÎÓ>ìÔÏ•#tOh>KÌt¬ýÚõ‡Wàu˜õ,Ý®:.Ãõ–°? •¤5x=‰{œßí*¡&fð¨eäd ¿”Ö ÙLÎô‰/‚;ÔOÓ+ú(¤‚>¤1úêÊïçæm,EÌR Ç|öRiswzœ§:ш½@ãØÛQ­ÏÐÛË|ØÈïMx§?wÌ“s_Oƹëax¼±ÍåØ\öÐÚp±,²u÷óñYR‰/•3G»ˆ#m:éªa¤Q¿ŽSéûÿ¼ÛÁPË„ e¹µ*c·Ë¸/àh†êH€º=à)Cqà-.3Ù:›ôex²[^÷_Ùëcèj¿¶ë„˜‚E+¼1ZÖ‘ƒPa‡ä‚^€ rý’\Oä""÷@šËŒãXCåý+01 Wñ›]XYœwHd•ü49d iìðêàÈÆ ݳTòÕw6/5ï¦Û Äô±ó‡fæpw.nAfoz$•©·nr%öu· Uãá¦~lHL z3½šÙx½byî6g€Íqî3k°¼;–âßÏÍÒ>|0}c¬^Ø7r>¾þºÙo*ÿÌ.H$ýŸ!ÒDÖ™ éýW¹·ÊŸ]  ô±‡sÎóDa}ÝÓÝÿ=Uo„à×rbÃk¨¥©¦…Ó½¦O4M&ÍÕÖ—hʧßüc °Y*¸§ªÂ½8üêK:ŽéÆX(M¦ìÆš“ÊpNò¶Þ,n¹ÿ/{V_»æ [«ë »7«Éõ§Ӵ±-Ç|)ȸùìE§x~aE7‹W6Ô+HbaÑÉla³JKXrÛÓýüÁ¤ƒ×òûµ®1ÑÄ–L Ù6°‰Âyž ÅH÷aòH¡"Q@l·^ÒÑá¦"\•mó³À—=¤î_çŠRJÀA¤,0÷¿Ü/ƒõQ;*iÔOs»Z9»‡Ù.i‘Üc˸èMní͈X9Záç 9^ê»UàÝ¡Ê3V´ôQ ÄÖǰ­‚“î¦m0Cåè •Ïátq#•ÉòsÇ®Wä¿2&ãRä05ñ9:ØMá ñî¾Ç8ñìX¿Íí·œ.¦àQغëÆß겞M&ëM°È⣈W4PòÊÊ„C¡™Nƒ´MºÂED²×¦-‡`HÞ¶ ITÑÖv º6»²fs±41fÈU? Y5s•’ýx•F¶f  éo»}ß*Å ,¥ýŽ™I =”åm·Þ æŸç™¹›L@Äi)rÜ:í†Ü6òÎÝžñfME´ o(í Ùd[;‹ ÝI‰¸`ü^?3P#2ìP©g½6Ô$ØÁÓö=qμSsцÜ,TP’ dYÓ²|‰vϘÈGP4KO¢()Eæï†»=o+¥e1ŠËEUf˲¥ÚúV¥»H¤ªc¦Ë]ùÃü¡ð–P‰!§vŒzZ wl…ˆ‰ ˜ášEhÙys‘â—ëvqR®y7r»”øË¢4ðÕ5$‚.ØZ'®”Ììu/ƒI< Ó=>¬[«;iueØHtG‘XGSÍ`&;Ö£Ä\³šk°ñ¤¤O{T¶ÒãQ‫8ÜzLS"ˆÍ™(º‰^Ë/½Ö?a ‰` Ë%Ò•0$uô§ˆìH?OWt€œ°m1|¹`§Â´Ë%…¬‘zl›¾Íö Û^âa]Ñò h¬‘æöÉhof¼Š,íňzòÇ%_k„ãúœ~ëÚ)´ÐÖ”~ëª2Ïè”k6€2þÂÎ ¸G]ÎÍ[@Ñåw+£É°Ê1šWa&AqN ó¹d;¥ ”¹X}Ĕ>Q Í8øy‘Ðp ¦.;¡”ÔÔ™wÔQ<‡Ñ~x³°›€˜¯ÙŸIUÁŠÃIˆ2Æ"–Ø(–o%aælE“4T†3‘X³pI4D‚vw¡Eôù?ËI'¥­¶ôe>Ð…àšÂ¬ÚS鎌#½ bkÄÁ˜ßRÇ(§ÚD¹UÅ ÁÆÿòí,è -m³É¿ÓÖVæ_f=‰‘‰ì#£É詜z°õ,WÕsÞƒ“ñ¾7fß{Ê&Js&¶(/1yI³ØTª¯HúÄÁù=5é¬ã€:0­¨f5ê!ˆµ%yd–‚ËWTe–ët^¶¦WeÞ˜\’àaf^B*.Nν~‘´Õ(549[ãܶÙÔôÀÈ{‰·¦ù”ëÕì†TÖœylTð†ˆ,'EZ ‰o DN¾wP_Û'B“ØÕ1**{È »„)Å­8s§–“jöóáVòYÖÛû¥äí «Jl‘1W"7Že¬YQ¥¸ Cgâô–ÙOo‹$¼c{ Vê'ùt˜Ye†s’_£I’6Ço¸Fíµ({ê\2ý÷(º™'ç‚•œþ‹´`eèS3§úÆ2¸± ×ÙªÛGK†cº„‡‰QÉs‘šXžŸ†Ïò …‰eŠÖ­Ý‚”°#¹‹¡ŽÓg\žM@&XžfÍc¨)­8öhÀý,JÓ©1MZÈ—eºgÓØ³=GbT"³Ž>þyJö,†æmÉf&hš¹0ÐÒœxY¥­ŒoJ\Î2óeÍŒ¾:¬TÒî^Âb<³TPמ §ÍÔ€­gd¥¼Ø´Ì¹“1è”[ñ¡×½ŸÎD>äÍÛ¿Ø@žÏÉ«=Q¬ºN6eó.2Zƒ f’wŸ}ºRn‹=×ÄÇï ߨFlPäæM`b)  .c…8T¹õˆ£Áîµ49‘ŒÉ7ìCmåUQz-¯ˆe@¸´ðV¬æLW.0çZé2Xs¦5’âD¢UµSÌU­-Umˆ~5ËofýÞœ?~• •‘[ö|ó¨Ìhú—™]u.'ŸŸë1K€á#-ÍefSN:j‰†:ÙËlM•zŒýÃ+Zqye½­>ar‹eè¹å[äëJÜ7Töû†{Õ%¿¸¿žµ°wD•e§ c$åÕ|ZT«®T œZh½+úeŽ*!ªpݽõ«¬í¬¢53ø^Þ°q ÂUMä»Û¥Cc}ÍÛfw¼]0'sÛ6ífß´õ[ûïãñFôð8„‘iš’­…–ß«“DÛí@”34.½l®k»Ö ±þÔ«pÍþâT³f¼Oœ¶æã¨æ3!®Rüq•™5ð¾°ƒÕ’…(HžéÅ`CW|Ýõ5eÂvUC–Æj˜œq%Ʀª´rkôD»è3;Q8‹IÇÖrVNXFþ1Ôy¡bò"C~ƒ‡ù ‚Çîþrln Y©.“½æ`™ gïñûà…(˜¹’¸¨|Ó²ý9ÄãVô|¾©Žd»¦eoe³9×oÇÍ¡½½Soš3óÂyÇ€H€#V#Õ0›hù¶&zGÿhÒæÔ²bnfE_@@ÙáÎW >ž¼Ò£ðIðÐ9Ž¥1VœÚNÀeÆÏ—–ûÇ`K%&¢Dóá#°”صüÔ4½~Pq%—h'50¶Çúô_'Ž?”Ï×ZÙî9Â"“œŠLÍs5µ9¸ÐŽMߢ£¾—бK͇ÐÄRNÙÔ¶R:˜ô0C€µv=•Fgx˜·¶¡µ´×ó&G 3·œÙes©ßÞ0&ìvKŸ.ïàa½¼›ß°s~˜ª ¸ò—¯à瘹”!ÅH”̸ |Ž0(Èè×¶&-,E.hëÞ*Üß²SÛüïúŒ„IwR2£Âçh+>5=,³èqËÿ™÷]ËŽr!ü§¢†ÉÕÇ’5;ã9ºHN7åmÓÕGzUµÍ –Æ Ù;vW$›®Y'ædÍö”zæÌ‹’ÉDó3ó6AéW\f&)õìË-—?ÆXó¨f*€¶Zsm3LgS!KJâ[bxXw 3fyÐënæWðÖKܸxÛ×/¼ãTXJ…y&ßgïAaoütüÈìåíyÛca˜ù¾ù ò °+¥r·AÜ K±(?EYQVBúPìY02‹ÒVº‚hJkì¥Us†oÓ5û°C?w„ŒË;ÎÏWôõ³Ba Ô,Ä x˜ù“Þ—”žæXWÙ“ »x=y« Â9]_\ÿÛ05`õ±¾ïÛß. VØ[w· öPv>ŠŸ@œ¡?<]qÚçsF×À¸gd.ÚÀ£„í›LÐáa¸Ï~¸Õ;è%Z=?ŠŸžþeÓ}ûñå·Í/ßþöuóÏo¿þþã?o|/óñoª§ÿíÿ_þýó—ï_ýgñëm?„ÉŸþñšû§þ÷_±ñ~|ù/¿}ýãOå×ï¿þ÷¯Û}ýýë÷/¿_~|ýû·ïÿñáÇÿø±¢ X·qÒþIOoë'Iœüo^´M¢ÐK¼À‡÷~'ðýÿë­‡ÿöÇ/ß¡Èïß¾YÛòè»Ú¸ÿù÷/ýоæÃþFX¾„·0`\ž·ás°ýO0þ¦ö’ÍîÔÀÿùÿ¢¯›mþÏÿ÷‚©øËø2¼Ù| ùã_¿N¿ýýÛæË÷¯›ï_ÿþë?¾~ÿ ß¿ùÛ×|ùþßþØ|û¯#¤ ´ùõwþáúh}ƒ¿¾Ãý·ß|ÿõëXTõíûýƒ°ÿíQæo¿þòõ÷?€Ê_¿nþõÇþñç?ýéßÿýß?üÛÀáß¾ÿýO„õ×oÿõ¯€õá_üã·§™U½ø×/ß¿ü0Ø_þË—?¾ÂÇ ÷·o¿üÛ?¾þþãË_¿ýn/ãû×~ûþã?ýø†B9òLjsùþíŸ_¿ÿø?ÿ_†ñúë8`泌ÒùKÿû—?þøõï¿ýÛÓÓ6H0…Q Á0Šß7ÿ2,…ÿ÷ï_ÿøúçþó‡Ò‹ì?.e× Ò@Æ eÜt«à¦áJo\ü'æZ®-”ù+@™ Q°} @aV¬(Jm}@r;qSL²¥…Ú)ã¦âfkª˜Q)ŸUTTr1©\L¡ #À#.§*rnFRp9GÜ ó,F•T.yVÎA«HÁ­°ÜdË7€”’¨'¡µH.à/;áW©¢Ü<RpsªbEåVör+µÜ ËM1lüV6\’qqåÜÒú® 0yf•Öb¢B)&* wM1ƒ¡ˆáWiM$+=ðˆ›®)&%P¼U‡ßØZL¦ Àn–†‹ Å[Yª°¼Üi$ðˆ›aº²,󭸙§àf(t29σ¡Š …k&'Ì3€æX£1ÕÉX£@®Q(5Ê#Âe„›[[“3sVàäÏŠØŠ[(“à 7#\fÇÍT\F¸â–J¹©‚[)¸%•[¦„«´W–¤âR{Ë €”c¾Â!Ú’±y<⮑Ð9Ièœáyªœ‘äu.Wá9©òl /fT£ 3çYj-Î*r1Íõl…>€tÅê @ÊPC“3ßZ#¦hhrRäŒXž%v\•åYB¸ÔáÌÞáLípFu¦u'Ï\…mÕuà·ÀT^XOB¤àÄ‹ÅùT|¢…(·/D¹ºå´å´åêá%–qÕ…(§ÃKN‡—\^ˆTUF®^rZˆrReä•õŸ«ªŒœ45ÅvÇ‚z+¦ !èš¡ ¡ Ñ]ØEw¡Šî‚DwF+Š #]S£jD‚¹° æBÌ æ"Zq Í©« €Ôb ÂU´r)©¸4â$Ô »P/T¡^P/0nüÆÖ®I¡ðˆ»F×[`.Öæ‚s±f/]Ð^ºX³A.hƒ\ *ìäBTm‹b S’\*ÖÈ¥‚äRAr©(íL©Ê%€GÜ2!\…Ód¹@*.qZ¹BÁWÐ^º ½taßKê^º VT+öÃD TŒª—VŠ©ÔbHÚ•k¤]IÒ®\#íJ’vå1T’*׈¡’ÄPá\+#ë ÉíxÄ¥9^Úçx©Îñ’æx™®Š’NÒåš}ZIû´2C,3å2J^¾H©QF=‘¯8Zk@ ÅUæV @Jèò ,¨5…½5…ÚšÉe‘®U9@*.nÈËr §•4ŒåŠ•€”§©W–¤Ôˆ&nYnåɸJ/V*nEó†n˜øVQ⨸Ê6”Ó©˜£ý%üZ{€Ü{‘Ó½ W”G,K¹z¯Â‰åy<îVN÷ <]1XD +Žœ®L9[1çˆ@W¨jAi2pûdàêdà4øšÓ‚Ç‹L @ºbáá´ïæè;¿ÖÕ€”Ê“âŸïse5 \•÷9­&U˜>®"!(š«o«DQÇÊì @r1¸Ùšbè¨Yå+Ö·ŠÎSU±´ ÐçZ¥ö‘<_H©<ö‘·]¡.D ¥Ó…²M‘Ž1$ƒð„Ë ×Æ¿¤âbýk2(ã‡Öb|åh€ðˆ»âh€@º¦FÕ(¢YO¤Ô(¢¥kŠI©˜”ŠIíŤj1)³B‡@І½~žX‹Éc¥˜œ:-,0A‹55*¨FÕ¨°×¨PkTPV,Á ÁŠÝ&(Ö(ð¬5 ¹F¸xæ„_Û™\Ý<ùå :èª4××\ùtY¿k¨â9Ú稛ô¹rˆ äñäŠná7{¼&#‚ÒŒRUø²š”bHPU%ìNüŠ+CÚ˜#Œ[áQ?؆/JA‘;á׿f†@R1¸ä$ ¿ÊÍ¿4“HÆõÐ 4ðVxÂ!‚®X‘’ÐÇc¬‘êU–É5â±R#ô* üg~úÏO,DOøµ-|$ƒðˆ‹´ðk¤àâd`1êX¬.@’JdÜ8 Ü*E\u‡žÊ¸Uªà"/²ï0à×&vHÆM¨ÎIùøŠôñ"(Ž@"oÏ”å”áöŒ¥HŽ-|ääÑ —|äXŠ6a,U56±Œ«Ø„1ršc)Ú²…"LT±;e¤c)*ûá·´â*Ê~„GÜ’ê¬*•:—jQP² U¯ð«,|r?gŠêáU,³ªåHÁ¥öfÅã# !(5o¡Ü åbÔæ‘r‡e+¶ßôŸ1Ñ;e·*°H.†ÑÈ“Ë üZçêò‚ðˆaó˜jP­àFJóT3†–© 3ÖI³Dî¦X¦"<âVØÞ\5e ɸä¿×¶¨ Š›n…¸žÍ \Êõ¨\U ©¸ØÏ¹ÿx£@º‚kr’yŒ;W5­òR£˜p1x üZ¹€\N¸¨ìg Ã[yÎ犲Ÿ‘ám™0˜óðkÛµ „‹ðˆ‹«ü2K{HÁEO›2Áü¼åâ‚BÁ­ ë\1Ôhï­¯HÂExÄER©ªÈ •qR‘*²"N¯ß¥¯*•Ó+òMß”pm!Rq Ä]áNˆ@úX[Š@ú˜±AÃÇË:ècÅ!( ¬*/•îŒå.QÂ.E„®Ê̦±A ·D[ݪDÕgµ°|Kd\EõY‘å[U–T®²Q';ß¿ýþËåã_y‰Óµâx¿¿¶éŠ@rùÜ#Üè±Ý!h¼‚kˆ@ ¬‘Up!R#šPCÛ<¡³cž$ ;Ø”óPD81ŽX®DgôD„|ÄÏÙ {±§È§*€'l!‡siM•]A¾Ãùà`&8µ$T¤z-8µªÈ©× ‰×“Ÿý­Š©ãÍ…tìI씋ÑålÅ®€,þ8³þ¸jgð„My7·¼ðæ|¤ŒÏÕùÃÉÉ ½c »Ê-<Ì•p›Ø•à£ÊÊGÕ‚*ÁGUD|TÅÒ®Ziw©|TÅ;ØL’ÕjÙªU<ÂvA;›JÚùÊÌ [ìÀ*!«+«¬®²Zh5=¡%„ƒg^'¼…–á ;¡”ŒÛ„›ËF ›\ @PÖIòu5ƒHÅ&_×ÁÙUx»š8uéì:x»×PŽã-·¬Í¤bsMþMž¢ßŒlÕ¿ÉúMÏ ¢‡ó6¤ÜÀ^hájRJòBQˆÄ‡…7HÅN¶”1ÜTO¾%ØŠÒãzòyÚSJR¢'xÂ\î[¹Ü_p¹ÐÔzÁŠ“ XÜ9ÁÃrVF ¥¤`K}x”B9ð|¶´‘à Û_1ÊO£5"$`×´?í¯ÐD°!Í´ Œm­ Õ™`¨F|d›Y±U¹„CÙ\`Ûdn°X-„þ$š§(¶ð©Ø‘¨y” ìÂÂËA¤JBá¶í¤Ÿ…Gd«¹ªŸEx-ø3–Ú¨Ø þŒE»1b‰M6ªãà4îéÞHÅø¤”¡;w¤j+‚Ø÷”D°ùcýl±fÖbÖˆ=AP„¶,öxBØkjU µz¬GG ‚-×Ð-ÝRÌ0¾µ¬Ø¤¶@¬£í—ÖQ_Y±HÅ27œ9fëŠÆ´Ž†ò ¯²û ¥¤PpeH|^XØö%¡êÀç…b÷–´²DÒíe¬H‚°TW–H”Q| xX4¤bS€ /"ŸxOÖü+7Û¤b‹Ž…ôCÛ\ŽÒ70¦S,êÌXÍ Cð„M¤x~íý9TŒCHÁ×Þq™ÐXò9¶—É 9)Ø\`ó,'lYøÉS Tl1™`ÃÃbƒ@ 6Æ7Bì”z­J¹efŠ l2©‰å‹ÖX-[5©‰ÅEk\ÑÑ(®¸E#Š-xX,8±"KÕ²Õ'²4MУ–­ÉØéQ± ƒð´;E"‚]Ðb—–[”flÞîÏi(JFg¢á0 ëHÀ>Ö_"€},¼˜è¾–^hBî’]‚Ü’[€ð„lI€(:YR±CQv$°#‹FTl̤‚˜°ãÀÌ6¤bÇa“­0<,lƒ@ lª¹ðÔÈççÒÏ~ ˜¨ä W\Ló3êâò‚#‚-Ž€yAA óB¾ºl5Ha. šò"Í;µ¬À¤b§›¶wð°(¿HÅÆìUð@Ÿf83λ-È]qj&„ÿŒ‘ñHP6m)ØâDZðœ çòyVÁ [ç¢Â˜Gø°,Ó¤` š¢¢MWQÙtf¤b‡›|^ Y@Æ[[õy)Ä /·´E(·¶-ÉØ¥Øï•ž5‡‡EWŠ@ 6À6ݲ—²íƒ„€TlQ¶OÛ“Ò—4OŠå)Ø"†wé“ÇL©øb©ØªÇL)|±J¿Ø6/R±E̓ˆz-ˆ,ã@ v lŠÕ[Êg(eUA [”Fmhˆ`gùä̰˜O´E€‡Eó„@J­^`Û"ëh ìD`Û¸€Ø©À^ÓJ&Z¹ÂÏìã5¶x¼Ö#ÂFÛǰ4â­å”ž‰È·Œ¼¼@vE/Fq·ŒVXm €}¼[A ‚ ×Ô7õ%™ ‹¦Ôž¡De=Öõ ¡KŠ™åÖ”’bŒç• Ù8ÂÃb™€@ vRPO3²k(YÆærJ‘Lµk@xÂfíØˆ`É »”7Þ6TŠRͰK±€–•‡®8eåK@^~HÁxÂö‰Í+iÃ¥è[HŦ²ùv…2ÖCá ËåÉ%!ð”Ìúáa1XD ¥µ)™iñÓ6ÂCvf÷l%m#Á#vâÂÁ•k|eœHÁ×ø\\ãÃÃ6³×øOØ1r‘Ü Á>'Êõ)ؘ8°‹œz­ÜÎÌÈÔƒ)Øå–°K!QJIšeJÍË…D)E¯ñ¦»D°þãÅìcgQ°Ô~îÛ¸€”p?د€ˆ`ƒ5µ D­‚5tƒîãí! XâSJÇe´¹j(„ð„Û0Ø¢¯Â5m E›Â5m E›Â²‡SΣ5\ .ŠÖŒW$Æ+\Y¹(ZpQ$z&ZÓ3‘è™÷$`×ôL4ôÌã z"ØxM/Æ¢ã5½‹^ŒE/ÆÖ^Œ½‹^Œ›# Á&kj•ˆZ%kF'£“<>Ö!€]±¶ ×:ÎWg#ÁfbŽ3É0XYHíE&Æ‹­‘ÉLÈä\8üqž‹ZI·‘:¶ù¢VbÀéVƒË'ÅÐ lqb©¶dšYmm¦™$cWb¿_m3ÊΰÍ,Ê+R±3M;×j›oÍ<@*v¾%ìâñLC ‚-×À––Ô˜•UY-Ô˜ÕvHnÂD†ÍÇR^EHÁö8¥‡ð)ì<,·ý¤`“½SäûZ’*ë‹|~ž ­>ÌE@2vN±Àü<Ťbø03')Ø”îÒ/8ÃäKgæ…€dì‚¢5ø<ç˜i†+Vërr’±9Y­û\ä5‘„ðg?”¸JFRد5\·h«äaÞ2 «/Æ-ð(šc z£*)AÔhŽðF ü5ý|»ÝÎÕ3ž—Ä’n‰à$„òŸŸðáOb‰ñHÅÆ¡ƒG*Š—Ú/»DŠ]¶‡)øÜ{q´ •Ò½jš‹î«îQq¬·ˆ«Š‹su+Èг²P€Ë9¸tžþeÓ}ûñå·Í/ßþöuóÏo¿þþã?oR/‹‚?þÅñâì¾þþõû—ßþZ|ùñõïß¾ÿÇ_úþóë÷_¾üñõ¯Ç¯? ô§§í3›n·ÑCþøo4ˆ˜ùæÈºú¼)Ø¥îØqsä]ÇÛ Ìtíû7 Tl‘’p½S L”6¯u·ßìZö DRÖŒ·üZ_¡ ÜkÂ/Ÿ—AbÕFàÚµÍÁTH·oÚóÓÖ“ã[”ñŸ­ö'V´ aûïÀÎ[þÂ9|r³kÎüð$‚¯Ç.6+úŽŠNß\ÔmÑŸª#ÿ )°wP(›nÃòF´¾xOØÐïܹ”‘=§!/çÌ„ØNCΆñœÆœË ã9 9_ö¹ç4ì\á8ÏiȹÒéNýÓpœç4æ;¹ë|§1ß-»Îwö±þ¼¬G†èNã¾×4ßwü½Âµ¾ÓÈ×»«%!; |­°¼ï4òµ2nNƒ^+8z½õ`å¨×;Öõ-ßÔÉi¬?jÆ:pëƒÊlAæ‚~”—†™ÝzäYÙå{Ð!!§FY‰|ªËòÈqØ€B轃Â4KÂÀû,wœœe%ò½ãÂä=èCÇ…n¢ù¼C§yÙ(³:tš˜<«#§y9î›>‡q»;rœš !9MÍVàÈiV¶êGN"¸•8rà«Rq§‘¾jRä4ÚWµé±Óx_å¦ÇN+o·(ÛiÈ;¥l§!ïq;x//º±Óˆ÷ÊôŒ†¼—§gì4Úr[ŸwÓº™8 x¯à‰Ó¸÷ÊÒŸ8 û«†ç§±¿é(à©ÕK2‰ªl¦c¯éÈ-ÏíÄi¹~[nq§ûMž)j¼Ô_×Â\ ï›æ`hÜÑ5—œµHßmòÂØo®5v=F¨…ßd]Åš ?oCŠ{­‘pF„s™°QÛQµuÁΛÒ@»TÛË‘ú˜^m¤¨ãtm¯¼Ü˜”•Tõ, âáº>Ù=¬;PÂfÔ×cvãG]R7I›t«[Ùr]ua?COœ ¤‡ýÒ‘WÝD¿Búl»’E¤Í& i»újÐ/1')ÖÔˆâÄô©Ó3ñý(jZ“V gP÷Ú %§C¿îÇiÕéäšë 1÷°èpXkQÚÚø´—$'‘•븵¿\ëcs6P¾I-ÈoÊfã±Àoº®ýümo¨|™’uÿª¦…¡pbÃRY §ãÌÏÍ…ÓŽçL(N‹SªètÚ¬eäÒé Ù(ÈNçÌ^Avb³^ÙUlع¼oK§QÒÒ7"¥“¼Ð’šZè´§Ñ’¢û$å´•eÖÎâï¹*˜¶Z -·‹UÌææN5Üig»“Ù;j ²Óo”==w’e¶ÒûN\UjEå4÷Ë7DyÏ€S«¢E½Z¹ÁÚ¿²Ú´¾Ÿg·oHØi8˜zГæå48#GOØïQ' †ž×Â×uÞpðzÅ×¥^}†%·ƒèpˆöÝn÷¸¾&ï¹ðYÖä=ºµ&ï¹XÖä=X­É{8eQ·;ÀV[·›ÀÖT'>éõ5qâ“ÞT'>µt 79?6¯H‰M:- '¹5»="91…,Î}·»Áñ$Ù€lëݾƒ;¤âvÐëÅièßæ‡ ßí:PÝŒ ÷ÜOjUßíNP5é–cß톰™éI:ï ó>q»/T È•Y{u($ïØ –|?PÔL¦Ó [aðRÈ›@³4Â/_WÂpS–3£æ`aØoÁë©·¹Ý±é:Bo.ˆŒ*+?ŒåJšôaùŠnàJ7„NÓ࣊ív-sbÇãæÓ}o:V‘ŒÓhÕJ8±ýMÆŒªú]Ëa߬ŠNÞ1D21·‰µÅžÕÅæÊN—±M²K‹}¬ýíX£µtŽAb:»kIÜðn8HŠeÇËžêÙssE¨ÏÒRHûp-.TG3>hQ#ªdâ-~sªQj($8Õu©NÓ’è×Öµ9ñRÙ j“tÖä oîVñvß= %¿ŠèË ô®õîd¢'µ $ÓñÖÕ䣿G&s`õæz;å ÌÑ ô±Z¥¢=Ÿ_*‹æ¶À«¦Öe¶Π±“@t”)uh.lQiDÖµÃÞBp;ƒ'×iºÕ(üX£¢D®Ì Œª¢¹tÐDuÀ÷œ°L{'=V%L@tŠ2ˆkß´„e=ÖŽw5užihLÝQÓUz´’ZfÔJÈó C©çÐʤ4ÔOPšÔ迊è\Š£þÌ:.&µ2T²ìŒdqú’”ûy*Ùé¢LK¿¸µ°©]öÑ ú54š.˜°HB"¢‘­Åuˆfäk¬uUã% bÜ€}¬»’·þŠØFFT¶LÆÈù2y½QÌÿ¨3Æ™` q¸Â\û ÚE ¹sUã*4Ú'[ú¶¯»+¡ºò€ºTlXQð3²]â:ôý±\GºmzXðÆ)’¸Žö|÷QwÇi¸Ž6nÃÔu°‡¥-L][ â¯í&ƒZÚî‡Æí‘?ÕצêPp‘€k£y;öZã–¹6·ÎMý/Ú‘„+ßO$Æ“G˜¹N‰Äp /T!aæ:ÞF:%¿ÿ—¼E*®3àMGÄ•=LCÄ•=F"¨Ï«‹Ùá;Ìœe!S‰¹²JήûC”Û•KøyÙF{ˆ%‘ÑØȳ ®+o\´,Æ\™ƒå‡=»â™uOýàÊüªéW¾è4Ê\98‘š³ìÜ•îØ _宜±×Ì”Ü3 Oº+UÀ•3 ÔÈ]c¢²œ¬¹ûÚBÌe4ñxÌœM’Ü•'$ËN!À°P¬Ø`³?Ñ›T;Ǧؘy>‰êá’",L¦$Ú0“ “õ„q&¥µÛh×òH¢å›Ì$áå›l#Œíß³»ÎFÛh3c¬ÁIªAé*d·Ç°tùªUÒpŸølSSéΛg…úã,-ö¯8M*+¢¦í®Óý¾Ý™Sqóo"FEÏcÁQ¾agšu?¦ÑïIB³ÈN@j…+K,”C³ŽÈ¸Mj[8¶âƬ)z€«©†+oèÕ•3߃°rå Õ‚ i¸2†Ö‡ 4*¸/òóʸ2ÈN·*V®,rã­®g\¹E9xM*g¤åÊ.{y15Zí<Â÷<‘Ñ^Ç|?Õ›’P]YD ~$\W¾ Ü7ëÊ ¢ÜÙ• ù(p—ˆ{¸ÎgJĽ \çC$âv„k´³1jˆFUí¡;ŸsŒÆ5F}(î¨#£=±ÖÍy†3j¤ë¸~¢Â\Gô•ÊrÞêyßÑa>2ÚÉ< é, eí€2®C{YÊäÈhEc;riȸ<_ú£DF‹‘òí 7ô‘Ñ|ƈXòm v º4»Óœúß-[¶¹T2Ú :Ч¶ÑÑ–ÜÐ÷„€PŽRÏ-ü“ž–4Œï Þ"´óþ7-®#3v½Ñbq©×†‹ëhn´a\GfÞ×FCF{¸Š÷è åNyÚpê ·.Ö [81ŒžÖÈ5Å{ÂÅÛ&¬[X.=Á±ÓŠ÷èž-¶xO¤¹uï‰3"Uá=ê‰À{RŒ’6 V4K:ÐYÑh4é@Kn¨ûè Ž¬h4«t 5F£µ¥}[YÕb´µ\Eeêø÷±Ô@Eêr·d*©±³Ý¢©TæÝ숬_N7·Xd½fº¹$ë #í™L¥2Ž´[„2•ŠÜ¬÷a^Œ´Ñs•ù@Uï‰g2ö‹[ø³Û’MŒ&˜6RÍ/m¦ntâa¨ôüÊW8߉/$üDÏqòØ4̬šŠÄª.æN|õÔïëX‰öÜÄ-ÞÖ×Kƒ–=˜“•Êõ”ð½ñš`¶’%À{ÙÍO5Ô¦©Èhº®±¼[ÑÔ ÈÔÐ€Ê V–yöa+ôe*Udã Wv¯"ÄV°¸èÞÈd—´"üÒB&ÿ••$¨:/¬ÄŒöYÄÆ¶9E”1Ð’Ç(rWrÆÌ¹Ù>B˜©ÜœÊÍ•*áã)ÿÒ²b{<ç‡.+¨œbe9ÒÌ¥|4ã†bD¢áre1÷©cmÍl(…S)b¿—­ ˜c-¨Ý7ò ¨¨ jes¤ iëµ_P‹|sr:á$ñ|íÚ¾¸Ó)Åd&Éû#”Q4çkÇÎBæ>À¯"‚Ÿ7×¢­/ÝDuÿჾ¸=ñ0ÿèQÍFæ‚òæˆØ&W>}gDɨ@¥Ö0Èz”‹©ò-Ð2÷èQÞÅ´‹iö'añè›3uåGVž‡Ñ–¨bVÏW uàÇØ á´è8æ B,Е.ç‹A8!6'ìeœ)}/P@!S¯^j hL£$ã Â̶ÌÔäÚ6'vÞœûoÙ, Æ:ß÷ç²å€]l± %”LˆÂúÈvͱÖÑao=LFãç‚õ%F›)ömýM+Ü®Š'ÛòhÂü@ÒÞÆË T6 +rŒá!ÐÃè;E­Î&£p à ü !ð®¬&s%vT¢$w0‚’é¯aEb Ânw¯¯÷ƒâ:Enß³c…R²HpŠ©ÒÓ 7é×Wvúáƒ>Ç/ õX/uIXná·D1@s ÀU²£(Í-¯9"¹àº6="™jz¤7ÖQýÜ‚oíA*–9 ‹ £pí ÏmÄjCˆæ6dv!,·;²þHhn#vBñhž¢Å9ŽÛxa¨'@r®PÌaP´(¸’æà'Zœ–Êq¤kMÓÊåDÏI YÝÓD‹ÔSAnCTQ78ў܆èBãjŽN¢Wšñæ@$z‘T³#/ºç zÆUˆï6bͱ¿ ? à»]ÑÞ.]³kA ÂG!éÌAH4a˜ãæÀ#ði šÃ¬h€ à8ï](†Ðx_g˜4xÐÜFŽaWÜ6RJÀ~÷¸Ü~F“-¾Û¨³ÃþTc—†âß;èßð݆}Vý‘À»G6bæ0$ú…éùºg>ì6ôó²©óÌñG×½Cüwý'H¸ ÿŒDù‘ðÝÆ_â_±ê˜‘)œû}ÿ& î,0P€N|sü‘‡ø7Âwgƒÿ•–Pn ƳBô b€Ãñ¬ 1qƒñvFO%oö¬nGaÀb£ „9ÌéxcˆéêÍ]¾ñcƒˆ®þÛÓ¹CǾs Ÿ¦£ »új—yû‚ˆ®þÙ§æŒuÙc°LÀ7NS˜—¶ac°L@wõÖ>ó¾C}Ç Ä,6:1<Ž>’³â0RqŽ×3ÆgÅè¶€ÿîA¿õˆþŽ1Åc=ŒÁ`ŽÍUn DœƒõQ'QŽè®L0µ@[Wž¸Ë9¤ñ49ð]™€B—–„ê:þ„ʈêªPOˆê:ð8s 8ÈâÙÐÝãKè®C>hüäJ8G¬-_±ÃÍÚ£xx®õ¶xÎQ1à9Kå7Zœãñvšøž@ÆuŒ:ÑZ×ù×] Ï9þnw¥™çt·½ëiW ¦s`Ýë€ç<˜‚ã‘Ï#èŽÇ2@Nܶù·RÇfGa8é8$ÜÌ+ep  n>Ûü¼C$'ë”î QÜ<¢Ð5áx¤^21»±èY׎˜Nv(æ`¬‡i¾€ˆ›5#7si¬ª›£4ìæÅͶþQܬç_&ûªú­9ã¼Ö2N#Ânˆâæ¸8®àÅdZ4ÜŸ‡kš!t`¿Ë^ÉdÞã? e§¡èo±Î›#"¾Ç7~_ïæò³SÊ%74©:Ò¿ËšŒ¾×Íâ'Œ›—óE‡nß6ýn~ôœØc W›¾­¯{Ä—óõS_·-?Š›L âÄ Ÿ7ʉC>™xÞÕºmºþ\¢$tô}îOsÜw9%.*ïv‹ý‚¬ìæâüR_ë]Óía­ÇuÎͽ¹#ãUYR¹y5/(h9ÁͽùÐÉÍGe´›Ûr}E·UºÁMKâtc_Ÿ¯t0Á6%NWõ#&nµ’òÃø]™pÄÜÙïé'0(À͉v €bÃÍv,ÙÂÍ{vÄÄQss›1‘ER§¸²c7lçR“êÑÖ?(›Ý¼S)€€S£ŠPßMm¶®'ZüJ%Æã‰~Ú7GvéF¨N3yDmÕMr¨=¢ºùÒ°šüXêù½Ùnµ•÷„¹YRqb€ÖDå=á)–TŠ0¦ˆ°È”™ýn db"Cèø²†ò-–‡ëJ樉|ŽÙ;š›ß–P@'n¢½2qÜÜCÇ4°T®Ó¼1©ïœ¦Íˆ‰GA7P¼º4G/¤…psùdçݱ.Ø™m^7ÄáÑJïÃm²[ã…ÁWxka¬!Ž¡ÈFµ8j“RX-Ì ´rjA!·À´ª·ìt%#Ó„0íBÝœ,åù|sàæ¼8¨ ¯EÓ]i¹vóWÄ„ƒM] L·¨iì”ÓîÝÍQ )s°r²?œtƒ!bUùÞ‡UÈñeýøçMÕ¯u‰çO-‹šâíÉÛ†[ ûúÉŒz¸ý7¼åÝ¢‰xj®?|0|æ¯H34Ë`F3€7W¶ãšzjß¿íЊ¢a™‰–çý ç•nè?-ãÝ~ø`ú´ "˜J#3Á½…b‹QŽ£TPÄíÕ}î%fŠWn¦øQÌBA1Rf³ ëf&øF˜SÜ9ŸU‘2v¢Ý÷çº8è8Èú½¿é2"ÒeÍÙsŒ²–Ý4$µïé’†ÇK)Œ³—b¨ã;ï¹W@Ö+ênÑD¨е¼Ô·æÉ‹yˆ´c©´O¼ä«ËV#‚>|°|½=y¥˜AeèeÊü<±nÏᇴÔ9™r ØP[óÇ7¤„D=ÍÌ4|¦šW©*Ÿ‰.9G•aê=¬ëâ:*a¶á–¤„­¸40BäTµ¬RxÞ†X(µR>—Hw¶‹^]¡!FT!Üù®®ÐG{…D7t e³aC<Ûé~"º¢sIh¤vºW;]ÑRð7Ìßê°êxFSB´%n¶ª¸“°«–`§m¤®~ωr"(3[_«˜åÊ;¢\e HmîmSeõ;ŽcäÅ‚r¡,'VLu Õï(©"rš…Gfëg½—ÚÛz(êó ¥p[ŸëñÕž7¸3a)$Ëá!õ´ª”zU)'*%^!<ôø á3ª%ªùÍc©ÇWGTEãTJ=œ¡&‘ˆæ(ý[¥À•¯Ï°1¬+c ¢_ À­+Þ Ùº šà°¤˜|óËØ·®3 VB3$•ÐØÄ‘ulÔú®/Ò´Ç´o.ãÔ:^hír½°‚‹ZBu&ú°ØÎ©«³O"áíe Ê}¢]1mµ‡4Ô‘~âшÐõöƒº¯(D7•‘$§«sIFžÖ”f‚J¤d$%éÙÖ—¸¢™P¦ògöífy)U½¬…›F_ÄÊóLš˜,¬„ƒõâ$q¬«´Ÿ®pr|ú—M÷íÇ—ß6¿|ûÛ×Í?¿ýúû?þ¼ñÒ(ÅOqü‡8»¯¿ýþå·¿_~|ýû·ïÿñ—ã·ÿúý—/|ýëñë_¿?=m·1&æÙ&ãaý·iÚ‰¸Ð4ÞÏBš·o@%—U¿Ý»ÝÒ‡|ä۲²ªX.+Ô–5„yÔ–¸Ìh¸Eoyø­¤ àîÆŒ.ôÚn‹¼­gh¡®ŸÛ±!Ó¡· œq‡4¢ÞÖÔ±fÔfלùq“õ¸ƒŠpHˆèm3gÔYTQÀÏñïaM·C¼·âÙÐ×ÕzÔRFõ†¸”tf€ë0Ä\aÏaŒå,³žç0Ä|ÙÏžÃ0s…»<‡!æJG; ïNÃ]žÃïäóÆx·ì0ßa˜ÇšYRÙaœ÷šfûƒ½WøÓwéyrDuh%ïîm w)‡A®Þ \frÓùõº©oÕðŽ©¢ëˆâ0¨5ƒÀy~S ÿ~"á$ŽÒ®\‡9M±7´Vê(K~ÅÆp êÃkÃUȃLPŒ × —-h¤ø¾3þ49ÛB+îYî.ňp ê½»08üfkÆþ<ë.íÈŸ7—–m8æ· »4ؼ˞*é"ªÏ;Äp˜·2çC‡‰ÛÈs>r˜·SLÖy&g/ršÁ ¡8ÌàVýÈA"·êèG"¹•'Kä0 W¥Ê#{ÕÈ«Èat¯j“c‡ñ½ÊMŽVÞnQ®ÃwJ¹CÜ)r%vá^^tc‡V«{±Ã÷òŒFw@¥,šãþ(q`m*v/qç^Yö‡a~Õðvâ0Ö7¾Ã²û&OËÄaÙ%a˜úãJ2ÅþV’@»’¼=ZIr…S‡!p»æ‚fx€ë2ó0ÒֵƞTü¼ÖEzd¯¶á·”0 kj9¯¬¶+C©’;”#™Ã&£’ª•¹ìý_!Ãvd¹Üýˆ–cò~giå¤öjc"74¥hëݾƒ¸M`îë5ñ ¦O5¸5gx‘ºž9ð±`÷Ú Ã`ÊLŒ¤Z¿ð«ðªÐ³ÑÒ KpÓÔ¤Üa³ÜKýž;luor™;Ý7…×rbæ\R2š&%ÛO½ªíL¸‡¡²%WTú™Bã[Õ/“Úo\ ngì¡囼Q(û#ž ‘&‡ËäÊ• S+¨2¯QP˜­WPFb‘¹l–º(9L-¥q‰.Vw-¡©m´D•«–(-! —n[¯¨º[9fíAî®úžö& %E¸ª&å+ÀN@Üag·“9‘;Ì냂갉o”½,w? \¥ÇñÊÅ«”¡Yò>Ø~”X9Œgù†îc8N¿Êa†ýŠH+¨ãÀÔS$*‡QxÂu׋ÌüW*þ;ÖÐþ;n£ê3¬Ç3® ÷+ µî7ËZ¸+µÕZ¸ë¶—µpŸ©j-Ü9cQ —Ë«V[ —+¬ÖT ¾èõµpà‹ÞT ¾ÕLu`H#Ø¢Ópà‰[³Û#Šì%1ì»\jwž}{DL—cXü6??ø.·Wê.Ñݯ*'ýŸïr…¥Hë©ïr¡µÈ~§â>áç}ár½¥¢Ë Øør‘h··ù~L»;øtAã e†¤Ž7…¼]óܵøáª]‹&µåD:AA).WF£××µk.ˆê¾zM 8ù£ŠëÀÈŸîÓoj±÷¶jÑ4&Y0Çýg6V±XØÜ÷šBeRgÒ!þ³Ÿ(Ú–Ëžµ·óŽÃ@¼45ÆD¬Úºûqh(ªª¯{‘ë 3_QF…µHž!K]t‹“ÌÔ °¶Ø3 âH±d×Ä7Ü àìoGtcM΀@ý$ÊÙ1øY"0)¥Žý3  [Û\o§¼9ŽiAH ÍLÚM­g)‰jv¼uõA¤žéÐ,h1<üŸÓúD?k{ïžJ†ÐåºîžÐd,íÿáד;ÉË@÷V¥70hú¬ÁeDC/_öµ‚`õ Û4Á- rh.ßÒ4Á5¸×‡ ‘LÓZƒtg%£‚@ƒ5VϨ ÐUoày㡌+!a QÀ1m3t8•@1M-Êa(Æ4R:ŠG 8¦Òá WË4DúN¨i„èðT’È%—RɧTPÓÆ²"Æ#÷+fü˜uibâʤ6Óô¾A M"…fÖ)¼q+;%>»c BL8³ #yIÀL+Sˆ7y&}ø ÿP¾¡Dh¼{Öc a@3r¯ ã—’‘}µHSðNª§‘µ¸³@Ÿ€käg{¹2#ƒk‰äõnD4ò¸½ô“HÒSÀ4 Ûи„ë‘.ÉmX«—þÐxÁlhá۾è6¨âò€¼aEÁÏÈb‰ÛP÷ÄqÙ¶éÏå4·Ñ/Ëuwl‚Ûè¢ô"¿OŽëT˜ºµTÄ(íig¦ní½òSM¡d…­{˜º5–©•êG*skön?2ú ny‘€OÆí~h¼°~@`0¨¸ñýÛHåh¸qú›Ž„;˜†„;Œ$P3%üQ¦Žu”qʽ}h¼s7ˆg8ðj¤ƒ¸n\Á!™€ÄZ¾mì€ÈŽ`æÆ -C17f`ùaùϘÏ°Ýø€_5íwãƒNÃÌ`äÙ\ô€›»þWá¢Üöšaôù1qôFL7N(tR!wc„‰ÆrBæ®k±RîÆwF,h2än< ¡/;£0i²ˆÙAa¦‹z»Læ¤ÑjÂ0«ŽÒ:[˜v™4–mº”·ce›t”†vïÙ]g£X Ù]X(¦'¾éˆÂO÷ÒM§• ;6Åž¤ué6×eÏ1ŠeãŽ=sy K× Î65•ì¸ÙU˜Ñ¨>1ÌÇbÿJ½å8MÓf·i}ß°Ìi¸Íí7 £žå‘xÀ¤'€î6öŠ×NhÖ¾ØÐ¥ú»±ÀÒ¡34«f Ûœ¶¥èî€éx~05UpãÝ0ºq‚bÈVn\ Ú !7FКd‡F Ò£åz^7†ØéV9£ˆA3e¦‘*âÆÊÁˆTÙÃÒc´±o¡Fl7ÖØ+Ç€Èhb:ŸjÌ­ˆn,!?¦æ›Àt}Qæ€ê6è„z˜Ž‡>Ä< Ldzb^¦ãá1;Â4Úot3ãÅÍ!;žëŽsVŒŒF#î#£†¡¾Éq3jœÛ8~¢‚ÜFð•ÊqÜ’yßѱ:2Ú_Ø»_:ÙFFS ûNV!â6”—¥”Œvæã†ˆÛ@9òª›šâ6ìå©ù#£†­XŽÚºã²É1^WD©äÈû9ô~Þ°öÄÏ”ÎPs5ÍnU q«%‘ïm)¬Ù¶’Cu„x+É›v‡ø#kâåŠú®>‰ª$K[ù8×Ð8²¼Æ“3j8½CnÀ¯rÿŒ¬1W—c8òh¿œ^ž<ï±H?èÌt”"Ý4ô^üö2ç1¥Z@únEÊ^)%ú¹Üã¡b• gñˆ&’Z~ĘAr,‘n˜?{z§…Þjܰ£(:H-“9#ÐVYÈ—9{´Ëh9°úµ‰ùèñwž’­0‰|w/²»Í ;žÍЧÒ vôc}æwüwDæg3ë] ã`¿Sj:ÁÁ~§Ôt‚{l©Þ e´Ád[ñyr®¼WÁÝðX§îŽHÅÝ|kFeÌwDOѵÈ=ŽŠ°(œ80_²¦P»樖¬ùŽÀ*Ã9pXc¯)Ú=®Ê|V¼#¬Êý@ è\°W'…‹aê~¦&»WÞ=ÀŠÌ=ï³¢sò¸‹Qêaî¨ãX K–ƒF¬ pÔïâø§ Ï­q’7u q`†£Q q’2tàÓr"‡|pZDèÀgMélpÖ”îîŸ$ ž‹iïÙ8xïÜr·OŸ†ÑÝ<ýNd.ßÏE³Z¯‹éb¢26Ê%ÌËEfk—0/—%c½#Ћ„îÀí’/]¾¨è²xr ýÒj8üÑ_æýàæºì—0ó˜9‚©çõpà†y›%!w7%yd$bî.Kº{,©sX£Ó°†KܘÎ(üÞ;æ¾—™ˆ¸»°É;*—(2½¹-ïŒ$É<£ÁŸ™ÈLrÎ%¹ÑúOCéeVDuà—%k-5èCPŸqáp \ó*‹|—¸5¯ËCAêÀ¯ËÙ˜: þ«¦Ë†ý'Mécý“¦íã}[–n4}4{uÍ‚0¾Ã ¿-û‘àWÑjêÝœÞTI¦¾Ci{‡—Y`(ÅEC!ˆ<îr‡-›çwgva9ŽK¶nsÙd4\MiœæF›ÀÕ”ä&ºG PÈ’Ï%Àž’4tî=„®`ÞëFûÁ5DÆ7®!"õµÑ†p ¥±›æ„kˆÌ{ØhShÖ¤Ièîš<¹3ÜyS8ðÆR9gÂAô”F.)ÜCbÛ¦eá®ù5LËÂ]ûk™–.qŸjͨî!(¤âß}b†î~Ô—jo´Q4ãÏh¯¸šÒÈxF»ÅÕ”ä&:°‹žÜÈxFËÆÕ”æCg4x´ ]++EŒæŽ+hLÝýhHígJ%4v±K„)•Ƽs]‚MõËiåoª×L+— S½al]¢O©4Ʊu‰B¥ÒäXv1¶FsÈ4æƒãµê&Ÿ(]âWÝ–la´‚4£K½èë&ï\b` ›¢çW~Ä –GÄvà û‘+8RU[Å›Þ9BDÒ´‡(Ñâ™÷ÂÛúziЈæÉ«<4Ú¨ÄEñ½¸Xë‡<º=AüïZ[ªv/·ù©†#YåS¾Ò¾T_àÁRX÷ •¬*ïŽÁ\à,dƒ¡DJ]W…«º´¡”?»T[t)¥h­¢UMì×a¯C¹¡1•¯*wæájkæd*“òžUrHÏ^ø("Æ f¸}TæÐd\U¥«š5+‚šE5¾]š!xÂ:¿kb.É@½(ùW•½c欬•}.iëDi+ö.XY«GL¡­¥¨®DüÞ{½NyiY±¿=2ä}©1•ªô†>¨ÃœsîyTôÃv›¢Þ±XÚæ*Á˜Œ¯*”~ ì ÙeŽc­ü0ͱa¬Ø4ÅÌbV]à;Í·{ljA3Þãj'…ê$—‘.àä»; Ù ¸ïçÝe gèüºGl—Qf‡ý©Æn> E¿o)(`» ó¬â#ú;GyìiŽ£[^ž¯{vÁpÈ„ê2Ôór©ËÌ¡aÕºCìwŽõM¸ ÷Œ@ù‘°]Æ[âT±~˜cÄðÏ}NÞ½#¾ëøÐxÀ6‡†y€}#lÚƒóåüö+ƒÓØCZ1æ14)K¹aæsÓáó1…‰!ÌqN44òfÏêvšÿäåë—¾t»ñ9HgNѲø˜{FË{ÒVœÒèO¦GºÇÁY_~~b±ÑÛÆgèt¼1Äs‹4P¾ñcƒhn±î¡Åß8b;…j:ªª[ò#o_Í-vÀ©97”¶]ÅÛ-„@Þ6l “ Èn‘μïZ8rÞà„Íb£¿Ì£79+# ÇØOc^Œ\ Øïä[ÈÎc,ŠÆ~3:É‚ ›«¸H8~ Èï ^¬­ˆÜp2;†§ž:#*¶Û S Ú’ÝÆ›ùÄâ ÝçfA P9Ǧ–Cƒý \ÇxÄå+v²Y!d¸ËmhÞöË1¶&Æ?,G9ûF2Ý1Êr§‰è DªŠVºÍ°îJXŽQ•»+Í-ÇPÊèQÇøÉbðÃ%_,ÇÁ|Üìy<ñjââ³Ïw¸i;6; ¼Jz àbÏ+¨Ïˆïâ¶ÏÏ;Dq0ŸêÞÁÅ©ý_ŽGêk©¢g];âU>°$Pò–èƒÂLxƒ"ÓY•Ú°0%.ŽöŒ!‚‹}>6ÁÅ—žõˆàâ¼ñ‚.î/“`ýÖœ±ðºˆ¸xfÜÁÅ÷uº÷š,‚‹oüa~ĸï Ü=÷0 ³ ‡z.!uÑÜÃ%̽¦€€»Ý³pÁÁ‹ä#é;|åÑ.1]LžqZ¸8Â_¤¾ïömÓïæq@ÍjÕ±éÛúºGlwGøë§¾n[~q“„ÃÐzÜŽødân7/ù¶éús‰ÎÉ=¾?Í1ßá׺¨¶Ë½õ 2­‹üK}­wM·‡uW3øŽ,§e)äâø¾À׎¼‹ü !Š‹“Ê]ÏöI_ö¢Á­Hâáº(±ëRíº]ö'í…vBB÷ûc7ì”Ĥ„³àáÌÅ5{¸ŸÂǺ‹kö€ŽÒÃÅ-{,¹ÅÅ'{ÄÃuqÆñsR‡^½²c7ìâR“>Ó¼ÀÉÁöDX.~Ä:¸xC/²uz€œ™)†Û†å¨Jjµ :˜£\| &No‰ñÄ¢Û,–"ãÉEƒ])ÒÈxvÑÉŽæÈ.=t,!º„2Btøbˆ.>ÛCl´&?ÖŸz~o®‹ãöÁDÃ=@Ò’†Ã€·&îO–4샡=}<cL‰(.€B œ¸¸÷ g»øyi©LÆñjÄsàën.®Âx•tiŽ0íI{àâÌλ#œûÏlóŠ˜tCI‘Ýk±ý7¦1s¡‰’CÇ_M;AOÚAé<_‹]Üg íÑÕaJ ¨¯·3a:ÌŒAëw-šîJ˲‹7,&¤mêRà¹DÉc§œ6ë•)Gíü.LÛÎ*Za3lx`[—£í+Ë£eàfÌé(ÈAB»ßæ¬(ì+8 ©”xAY»]9ì^ùØ" ·’ºV8²<¡brÙ7ÝšÂ>3SÔç{ªr¼z…_ÅìVÍ?>æ—AGBí‡k´¼iyŠ|´ À=bÁÛ̓¶Ø~âû§ª a‡_UÊúñÏ›ª?_ëUÉH¶ïoOÞ6ô1Œö6D•Â7 ;aÇa_¨ð3*2ÐD\÷‘¿"½RÐCÏûe6Ô´¹²Ýrl4oßö èDY‚t"Ü»Lt<ïg8TvûCÿ©^ÒØ1±\"™ˆíÔZŒƒåµLa=Ε›¨ý$¨å‚Z1§æ›¨ÝLÄÞXQPŒö¢òg  ×pýÛ÷çú~,¹Äòµ¿bäwòÜ–xº³ºx°–Ýä4oÉ”†ÂK©†^ZÎù-R¯€ÌUÔÒ0¨Ð4~~©oÍ“srŒ)Ú—D÷ÄK^±ºl ‡Æo·'¯ =†QÍCTZKsîĺ=G/ ¼ ȱeÀMŸÞ^ȉ^*l#!I¾*Eé#^£˜h¢jäÎØ©fm£IõL}¢™åÛm­ì‚¨ç¢Æòä ê’Ë‹JXúXÍ\¿<šÑ*B+©*E` mo«Êi‘ Y)bËŒv±Ñ¤.ãĈ”9ç#Úúm Ô#Ø2 õªeX“ ”å¯D5"&Šb+éÃZXW&fUˆ6§>·Ö>Ÿ¡Z¤Œ K‰}ƒ8°ŽÁ ß:MpT’Cql µ¦k‹Ó ’8¥ñ‰™´&©¢­'®Vð5µlº#¿^7‘|!:¯dsò‘Eú‹³é³8˜#Á‚èro.t´l;F}öŽ:Ò—zLW+"œx¡­ÂrŸkª,Œ•N¼XÐÎm•P­Õ`æOAôôÃÚ/¡¦&PH‡’nŸôûšvÌ¥Æ$¢L$cnŒafk¤‡œ%æ@’V¶F©4¬ S¥Æ1Q\á»4îá Y¦¦¡(;siêš¡4àH /Öl0fTÖÂGÎ++‘çÚfó ÁV{*®8ìp•LAEô4±°¹xNúz5_”H)~*OšVú‚ùuÊK1ú¤j ÃI£×#öi¯SùL³* ÎòÏ{>( †\[¶æéà1p)­l< çk3æbå‘”óȱF³–å‡+œ3ŸþeÓ}ûñå·Í/ßþöuóÏo¿þþã?o|?JñÓ_ÿ!Îîëï_¿ùí¯Å—_ÿþíûü¥ûõÇo_ùòÇ׿¿þøñõûÓÓÖS|U~(úœQ…£¨¥ÓÞ0Œ2uzŠVòÁ£†àG¤’»P9¨T¾ mã0dLJ!c*‰Ê=²‚BE4FÍ10cšc¡,‚|dT»leí4¡cVÕmEô˜EÍÕŒ­¬™6€Ìªº­Š!³¨]^xãá¨.¬8Qº€J§r¢3ï/™’^’Þÿ29rúö·_ÿë¯_¿ßň!y¶~1Úëýã~úoJ´oeÍ0^•“ªy¼W¹vÍ(c™­_*”ý%åy|È¢à9C!-v‡š¥ÝÍe–Ï©ö“+Ð?&}©¾ö´ .©‹¦v(ÞAÿ¸/Ü ™—¦.êóQøJ”1Kñ¥Á;” æq ’Ѐ,¸éÜŸx;f0hf…–Ül#ÅNé>éÕ*Š5û¿¥ÆÅáÖH‚å°ééX÷Êù 9¬íðK¨– E¿¿2R_ÏÞÜøþi›T°Yƒßh}>4œ®kÎó¾ûð¿`b å3u¡°ì|cGšz&È+;±&ò²‹ø˜vÏÑIëÖw@Ã7 ¡™†¸ aˆœ:#ÃȦ…ydg][±öZ‹ΔXwŒ’¿°3CM.qÙ`»'`Ì…ˆ– [ÆÜnÏêM±‡B R²úÆN˜ •&”#k64 ˜Üsíd›œÊά}òÔ[¼;ÞawoxÅuÎhž¼T±E—rÆX-÷t¡]S6âÆâ¥yåcÞPÆLÅuÐzè‚“(Z¿Í÷ŠÕb ‘÷i§Û¡¿êC½9õ›®ëË’íP›>¼d{†êI_œøÙûsh„é=…ç©Ïå€Bܾ¦ÃßÊé9j(3:L÷g¢6Ab»cžØáܦ‡Ù£¡‚¿52嵇ÁÐÑâVïÃ=.†ñƒßBjÒ,™©¾ï×›úïè)œØExÿåËŽ‡öåÉ/cSSÑ¥ æî~)Ç)ñmýÆ(²H’Ó¯fλ“¥PHÅ•i°Ur—Þ!ë’ ÇC`Ž šÑ¶÷áü*2/ÍFú4ŠhA‚²Ž>|0~BÑ>ìtþ¨êÖše%Ö,ã‹QÙ×-ˆ>(YFùðaú€ëŸ/ÀZ¨…½6°½2Ái6}y®g8Àéö\N…æcSâLh@W-CÎXM¯! ·áÿ2ióã_çúÑ-“ÕAߦ*V°|œ1k¬É5ZA×çåWÓVnÂ:±kÑ hžb5G“lt1‚ð|˜·ÚÃÁo ááü“ðJNÞÃðÍAq³¾ßüÑ×§­Ÿ…kª"«J# Û½8›#}öÝöt{6[Î^{é–sóÞüÌ8&‰"‚@¨î荒Ù_Ôõ úm¶©'Wí„ïêï{Ÿ¸X¼îN4$:Q*Ó!CXˆfÃÆŽŸÈšDz‹ñ9¶iL4beZ{jÂÌðúà„vÆê°Ü?^¯Ø¾„hNyL†z…ú©‰ìÄ@Â{`§ Fõ>Qsvå´´tv!µ|šfDœK£„G™ø¹sL¼:%&òw ºËoSFÕ.äî =•r>N‚ñh¢Ÿh-Q¶Åž,È$š‚¿_@È×#è5 ~ÚC¯fJ0Œ;{ªwì…Aé„™¦æ §9!`ŠõŒ=©žÞVWÏOÚ*¾4Ùxí‚SpL…eraᢰë~Y1Knb°X宂¯«Þa’¦à ]'ü–r-—=Ú¶š>¡RKRîÉ‚…ÛÍÂÈx¢ƒ_ïaU˜äa5új†lŒ>‚:ü *ÖõÓ ‡}òt4Ú²-ζer 1¡WßžúÃ~> ÔW}°¯˜·d·0 ¢0ºkm™¿œ*tÓ,)à$`>N,' }Ñ´‚º!ð‰Bð°G …ã‘HPOñC/hÈ)‘È’¸jH…—.)"-\R8ì÷º¾ ÎˆL“N¯š$1›’9Ü'Ë ‚YQü°iÎ'5F˜¥ÊLÍõ#CåˆÄ|Ã+¡„:G*ÄÙr¶ªT¸‰JTH3V©43*s&$IÌ4’X…¾°%ê÷œz2×1¡ }ÔPL˜Sª:Z’xÑ 2Šè Z‘Ѭ4í& \ÿY1U¨jZ7Jж]Vq.]™’SSð€…ŽŒÛœD]¾].÷M[ߨŒÕ¤¿gK}N².×È: ƒ+PÈ‘Oê6×9 ´QP‘±r’n¹FºI µâÈR9ɵ\#×$УŠKÌ”“DËUq)È/*2u¶q+)@¢Ëø]®Ùr“ÚE#6K¼”,­Öú±ÅÁMLg3 åËSâÖÌŽqìTe-7@S7¦Ë%V@ßùNú×<Åc®î-•+¨Äp|ɨ¡‚Ú(¨¬p–ªRa_A¥Sšô¦ dÓNDýH ¢uK¥†\ÎM-§Ãm^ÎhF±ðöyMÈ)!3{Ç.p/„KÕ–e,™dJ '—8Õ(+( Ê‚äT¡‘S?ö»~Î0Ò‹™¤*0½Ú¶P%U Òà* d‚Ô'…*«ÈŠŒÒª iU(ÇQ/V‘/‹êcÿF±1À*r£ CeiÆQ¢Ý]ŵ´×)¢NM;0XR0rÉ&fA:B•8¾Zî|)3 ŽVjâŠþ-q9ÚŠMK^ŸK¬ I—Bsˆqï좼™ó šB#h¾ BC¦P7OKôfNd—¤²q*¨–Wž³.çu·9z kâNÛ‹¥eýsŒ>0V- „º¸âFó¶`m[Ó©—Ç8®`¢T1Ñü„{wÍûüÈŠC›ÁÍ+PL©Š™bSˆ~“»ýýä†MÝø ½»à; ÀDT?™BÜÕögÉ6¯‡Ÿf?h…ôñ'4¦ŠT©Ì ©Bæ `V-;°›®Þm¿O^BËDâ)kîÆØŽ›¤Y—Þà•xØÉ÷;z¶DŽÏ¨Ó€¨?7D‡ÌᇼR5ò~_—³JH*ÉäDÙz¤…ÞåìüÊä&H¯nDw‰fW B5Õ„—F¢¨Þ"Ô‘Ëïlë'^ÔçµÑ v؇ÂM`RšÔþ3×aö¨D¡sô“—¢Q©—†Òîs@qb2ÞVÞ‘ïmb0¢4‘—µ(ÐÐ 'd®%4XU I0¤Yê–4]žH–UÃcŸ0*š¯MsÖ•2ÁM[ð>g%ÃÐD)ù²¤Šú4­¥iŠ8±3îê'˜™,5Ú^?Ä?~N]Qɦ„‰^º57«xl§¡ƒ3š¼™Çå&{èZyÊ{ÁZÏ#ž¨zWâ·q<á@äe´5ËâR¦³ý™ÉÈ´þ~"“ÞÀÉÑË(FX¦Ú.D*öèi¡yb–ŒIú£Ï! ß™¿ Jý„DQоMó ݯ=¶Šú<+äK×s¬Ù1xøO4ïC/™ºðCeíáÙòu<óä]ªêó~'Sf]¦¾C†`4mY$uM¹ÉmÞÖ±ççî'Aº”÷” êÏ!Ú¯±£T4;VY}5ÊC".ï@Tè« Ø+;, bþ#ɦïҀ@EîºvY">^Š$Yôá—a¶:©ïØtšåB8RCêhI1#²ç?Õè.&âXܯ9f mÓ1ì¬-÷lòr+Èýª¨– ‚ªt3{?¿Œ&Q>ÃáèzåÉ÷Ц~ÓE’©ô–¯„¿FÜ'¿ (/v,dDz«!N´)A}“ò® )QÈ–Rg¹§>6úÞü’!¶æ(~½j ]¯X!4€ß5¾¢ÐÒ) ¤“S}ò5õyÓŸ’ÞÞˆÕgÕ´(ô:x” ª‘æA£¸é•4dÕ¨Xu$ÖÓ9’êS®©ÏOz:? :TõÊUþÓÓÙ`»•áï“héójà]ûô»=±k?…¦Cáñ4žÃûè¨ÿpÀH!™I©:áŒá)oM[£Ò+ù|–m—>˜Séê‡ì£›Î=–{h:@ðp‡3¾|VEíqÞ\šSSM‡¥–'åÕù (º‰'{[|ÎÂIÛ7.Qƒ®O~ Ž3è/åBàåKµE5úe=Ø(TD¡Zêôxè—=8„@ƒn qá K©>Ÿã(ƒ 8ÛRÎð‰åž†þÒy 9°­7ßw}ö½-ž x„2jÂ1üIŒAM¤+„Ïž‡#6‡ÌëNF½ÝÚ'âdfa%¯˜¤bø·,ó¿1^EDµ·¹TûöhRø\‰¥˜®7ö×[ Z6¨äa#Šñ±! h•¿Ê¯¯¥pbjèuI™ÃMZíÉ—xïb”Ó)ç27âqxŠêsvõGÆ©j\£¸Ò\Ôí4ô!´¢¥œÿ²-R40d º¸6=#ÕŠÆNÿe ïxÇ£*Õ•ÔLu"Âë­b¦w`˜‚j¦Ÿ@Dšµ,TìH±¢ ]¼Äå…¡~•å%Õ)ö:*×+P!¶bñr™S/âEL%Íuöð¥Â†Q.Z–(ûn#µŸæÔšn!Nã·=Æ`JŒzDÅ& îš3z Ç*Èc ž{åÓ0n¦0PsUÌ[fö 1„. “Ö“7 ü.OÞ 0Ÿ(ÞPQa+WÑ»çlÏ0È•ñ2pTs°šôœ©0¹c.Q®´³a%®Ó¬,ÌmvBŒD¢¾Ë%±ÁøÒG[Šœ5Z(µÆQ¼bŸW¦H(äËr¼9c÷¬ow]Þºnßëuð¾AJQZúl/1ÊRO Þ#%êä­©Sù¦'ô†t|Jç¯9÷ÂÉÝx¤§:aj8ø]söÍõ·÷yŽt ª×ܸhÆóШ‘ÓÆêÀ®˜§šô‹e"ÙµÛx‰?­…÷Ó7›VÀéݾÞ?•INDŠåZ<€± VÌæ–ˉÌý=Ÿùæ‡@Z•¢‹¿/Íx8gXrÏÏ-ü璘\‘á Õá³Û?UtcQ1é¦ásÇâðU4§ ì‹óúXw·ÙL Y!€äSÅ¢^fRGnQ'4;D™aFD“Iž>È@%u[B¼ 3)*«*Zš‚Æ ü¨ Û«Ñi^¡^¢¦"Ÿ¶*[…@qsÝ¡Dè¿à\£Ò|c·)ÚÛñ+ŒTŽn´ð«ˆÄH%ÞñnލR>2 ¦P6ÿdÔ?)ˆ!¥· —Fþ2â¹?Ûªt…*ö*iÊv.ý d\±Ï¸p}ù+ÒŽ‘¶dv ß.zòÊÊZ&¼:ÎP1T­C%6f°Ê¿O²EÌ}ymޤmGÌ{y#CÞ#PÀ4€”0žª¯«R1‰g1DFZÝŽã#ö„ÿUŸë®꾬Ái†]ÔÞ€Õ@ß™ª,度w‚eÒözÜÔÜÑp<æý^VÔŠØôüe%® D÷¦Çs>»ÂÑ24ÓÀÈUƒ©}X>":ü°cÓï›þ©â$ø¸æ v@ÕßDùÀ®­nty‚¬Ë¥ˆF `ºª‹^ "| ²Ó¼ÇªéWêf}« ¥9Ê¿FBSRv=†ü¤$³™|©F6ÚÌFú 4QUUùòÂýŽ6,‚U}<âòâôdzjU¡åü.Õ &Df¦É‘#zKïÒ°ÐldIU,×Wñf¡xá)©’êv;0Sä½™bMÖ×d ½ÝæÊÌÃëi8"å³=Üv›R°tÍ—0†éMäJ"‡ûNÉr@‡ëïÇFO/ð7Ÿ¤'²o¦XIéâ-YIiëçû#½ ôJeµÒ!y Yê>À <»Û "za9¯_¤§ço7o†öfšÿ Aa›N6åw‚¡DŽNP½T¢5¼M3¤"¢ßÒ}Ì$}pK;Á{´Ó&04½™Ñš¾½ðëN“y°€¨/ˆúèb-©Ž·B6–’_ü„¸Là–[e_\ˆTÃ3 ‰ô¢ïûmü—^¥\¯Ìò´ÝI,_B;ŠOÌ„óJø[•ëhº™~ùÂê¶Û£ÑðLQ·È-«qºÊ/á†žç ‰æ-JE].¼=ÍZtM’ßÖT1$A6ç4qèQgÙÍ#‘¡óªúöz% 16Áþön¤1Jé„%ÃT‘û;²¶Èø•Ò#K=ÆÒ}+™ŽVÞ÷'ØÆcöpÑ=¡Ô°=÷дáÎÎ/˜<ü„6}3 +úx'?Q®Šø1GÀ¿(o{JÇüxÞ+¨N/X_0ª3¼³d×!ÿš>jÌ‹‰ÌÜQ¥Òíšr?Ó3ø ¿ FÅ¢QIp¯°ˆzÓ¼=…AT{Ó„_Æqˆ.¡ ÍÏ÷$’­7öÓ[Ì$è…ñ(<eÄ ¸x— ‡†h ]ÇH‹cq»´uÓÝÅ#JõÝGròØÞ=”ë0¼!pr×IƒyÓÑ–i~ÐIò9¥`¼ðH•dþ“ŽezOg÷ùöj¿Q+Å“Ê#hŠÄÕ¥>aò5 eŽí>×;†Ü—ŠaK“X¡uaÇÓ­å细ÿÈ1Zùâý@Gž4ãÊvîÌЌ߹^ìZj‹¯5.¨U¾²ÊÃÖ»Ï/""¿üÔ\P`¤˜i ‘2.24žãU ¢Â$bu^\ö ‡C†4Ï+¼AS_w䎖ù‚NÍéàèVª«äüE¸¢W³|.³ÐÐéÄÛ†7l~Ûfw¼Ío>Qs>~/z§/Ó`¡ã‚j¥tÍkT¼·§NGtü\ŸÐqÍÜe[=k›ë¾›ZCpǼ`^ Œ/¾öÞêÛÝ^‰Ið:2…–ÌGA%#*’(À½Ìž.•–¯_DmÄ|b‰º'¢°Mg7<ÔÝÇSœ?b%äf&-¶ZˆynZÙ½ «ýúƈªXzX¡Êl´ð+öóy9Lµå‡Wš,¬ÝÇCåt‰@2%1ír1íri Hý›ÏNš/ÊZ¥Evm¾XÍê³HÈT7¤wbÐ)õ¢yv ¡‚b„óD•M*òþ;“H0}1ÔyæÍéCW^®°Ÿ §Ž²á« )ìn·E8[¤>'`Ÿ®o³ýh{Ø7ÓÎNû 6GÈ=¥ Zúê6•uUoÚdëî&«ä/” c#Ù3£´"—a©È„yŠqë¹xÇ9‘¨ôRH€_ûCŠ‹næl.–1aÇ¿Õå=F% VÞuˆŸ üÜS„¨ ;il0ø)Uj·fPûÎ3QHn NÞxÂ]’m†0Û£ÇÈè÷xÓÇêEÃs;¦í\yzY¶+—HóE¬÷À‡¢@91P÷ýpI¤&5*ÈŽg²F¬Ä–¼ ÕÉ®¯Üøvî3„ë?RJ¥TtX‹þ¶Û÷­¦¥ò‡#§iQ ƨ IÒÍÓ²ëiY¯å1kEömU©{3~¼Íwr™éíØY$iŸopj 'fô Àæ\®¢]dËö§Zcö=|ç>J v¦© [}Îå ˆ%kÀÑž¹™°hˆv¤g *y¸3¦*±¹V ¤°Ku'…Ž•_ì m = óÞŽ™Z8¨4°¾[Ý\ñÓòÉÁ¼ÅnFZž¤õBÑ+Þát—ˆÂdöfϰ*^ê›/Ghà ’¡_0£ñFT½qe{L˜:ï$õ†|@ÔX_Ü|RÎÃq1İxù¼ÌPœÝ[9$˜ò†Æ+ˆÑ·ñrDÞ/ ´¢ ¹è°r~¾EC¸Ã¾/Ù++åAWÞ‰€|ËàQÌ»°³s·ŸOåÍ=R¢SSÈ^|‡Â[+„qäÁ|Ÿ*k¦LÁ­åW$öŸ3¶ ç(À—e3H|¿ ½þÇ%¾àþ ÝHÊÖhAàeI@ Ã,Æš¼?€åk€޵# š *©Z±g¨‘½ûÎ2¾4Àbji¦ðj×ûçdë‘ÉjAÝ{…d®owÑ€ÂPge¢â¹ªÁÖ¢ i?‡aÎ «šŒ´¬Ò[ƒ†aðx°º;À …ðƒùwRg.yÈÏÿ¤ÂÂ0!Ä)r •UlxW–èVî…ÍúPæ.¥L5âá¬ä¶ç…‚ÃBy›Da£Ú=´‘¬áÐqNü%5¡ µPµj#°ÒŠñõî…w„oÕæR$*1UØRHö³ÊªdD‘Bà‘+ý¬SʧgÌç6_8g žŽMû:·'ý AŠˆÙüš3$Ÿæƒ<ùç‹ Zœgwð/>P—‰à^âÍËÃ_lßܽ?Pç2ûûÞ-´ÈŠ‹x¨{Š9N¡Ð#Tÿ^*íˆP_¢~qÖ\éoÑÜ´¢©‘mceY}e˜mŽÕñpë~ݰCßÞã ?!b¦ï. |Cð•'«-¡< <ö˜æ5mj2Ò[Â#V¦’66š÷]'(¿gCb0? FYê)½¡À :™#\Z^Õ?ñR$òɘ54ÈÝ9êhDã–Ñ-#Õçf´ó)NdŸ¢ûg†'/-ÂÙç3ªžÞðÝíҡؾ߄oQÓ}yÙ¿½ƒ#à#V¦•©ê1Ýû‘z¢äGpl®Ý° Bš´a0·¶ƒÁŠ´äŸxí'¤ñ'Fj~Ϫû9Jñ–(3kÑ|ý§(Ø>y±i{žj&¶ƒm2Ýó“¤Ò¼¦È€bã³™õËç(Î7r˜TWþÌ60{¾9Uèù¥¨6/=ÿ„±ýDJwJüu¯zµ÷ê8ÃgrLtNþ'ðÈçˆI&ò¥_ﺭ7<8Íßàö7f¥Àæj¯ä öJ›6ÅáçsMP^טÞ^ôH¾8J)ìÅ¥åó\Ém_4çk»ÆÍÊ\LÉäód~mƒ·IÖtëº9ö*A1êÓæÜâ,m®H4)‰¨´H£•«rga‡yv?ª5>¿¼~¢eH5-céÈŠ?ê–uhü8œÓ»ù•.6X\:ÆÕ\IBqOõ<49 þìï¶ãˆjÚ„ÎAçéÇ)h#…“£à#ÇÅÀFÓènæ»4/ß#6Åè#REÍd”O 0‚NQÍ™Ÿ»gš ‡=%¸’½“YÀ=ºü3ªoÓr«ª®¢#¢¦²@ ãœQesÏ¿/¤ŸýÌ[Fõ|^düô ã–{au5•i'•ˆ¤+ÄÀ¡£±¾j†KCCÀ‰Cªlµš‚¬` ô_ÎHŒ¤Ìü|.ö1J^Åèæ÷Á Ë×€ú„ç¢SÄLZìà<ß_ŽÍmfñGyåÕx8!QŸB²EÂ]Ì„Ä*8ÊjÕmöM[¿5""‡³P7£-À¦”ÅÈTxw¾oš“ŠbRõÈ¢à“Ï4+úŽ/HÓ§Ñ2If‚d¦êÀÕš7¯Šô¥mÑŽ¡¬¶†#®°¤åp6'ë‹:ð ¬î/Ec¹X9¹çÏû¯˜Ï·šð"øÒC/Á2'¤ä@c¸Ø!^‘xhPº›PGû;ØA‚æ"Š5÷™º€uM'ÉÎùß  ÈUýÛ+†à¼ƒªüæVïÂðÀƒ«ÚÃ3ÛmNp¦÷GÝËâ-Ç{  :ÑbnŽ2˜ºÓPÞð¢Wù? kS–p ø„ðP›Kwåý^ Þ7D)”T³&èW õœ÷(•‚ Ÿô-O†XÕãWNd+Ñâj¾?Ò‡ä q臯AV¬|<ÝÐÃvOíhe€;ô³F¸Û‡·hQjøo1#UÎm¾U­Dƒ¦ëpW*lŠÐ-n2u’¾”(W€JDÄ$·RskP^Ù«VÓùC]WHÓ÷ˆ¦¯ÚÁèPGýUÎ÷zÚ#úFqà wÏ÷„j¸j±¢2šQ“$=#Š_êíQ“†î BA[]qm¨¸ÿ<Û©†ªm¾ ·d%¡nIm¨;Ø›††íMß@Æcl²ß±  ;`Þs„m0LÔ–$%ãñ@?~&ºüêGoú03)Z3“Ì++­”¦‹¦ÑHyŽp݇gdÆÈ}|^ŒÜÇgbÅÈ ·•:ˆ4)"a¸ZAbèñXŒe¼f,¯ì³hki”‹wqÖÄCzÇd#©Bá¡ÞÄ?@fkwZ_}Ù6Ò°ÎܑѣþQC÷&BŠ&k¤èÙ"GgM˜7‹Àüô°¢ˆÒ4!g §äb,æw‘JIÅ.aa4£#rlš ãfaDešéLrˆ6Œå€ ¢ÒJyšªL̬¦"’ò3tAÇãL‘Á†}û¦ÚL=&`ÙÍÁ†¾b¢¯ò5}%0v™ &zÎnê>‹Ë™B8ôÊr¢ >: >"¡'Ÿ‘„Ÿ'3۲ϡ‡Þ'&¼ÄBé<ÁoHDÓ™²õ³ï#¯¦@hR® ¿þ™é]“ØB”0 ‘ÎüRðh>¿Àüœ„‰1žë€aøˆtžà·"¢|æ¿þ9¶´^ ˜>™'¿¢ó†_±yF¡oN4 ÙA€$†dFÀÀ f:ÈÏa†Æ†`¹6Þ":W•]°9Çz–¼Ãðé<=ý˦ûöãËo›_¾ýíëæŸß~ýýÇÞxA& ~ü‹ã?ÄÙ}ýýë÷/¿ýµøòãëß¿}ÿ¿œ¿ýþÇ?¿üòëïÿëéË÷ÿöô$œï·Ákäô;÷0Ftl;ãó­_ø†GMÒý½P¹Ùpvÿéi¢…8ü&3ŠB@Ý1§ˆ¶]Ý›9ÍéË¥9´·®æOÛ(ÃtœÑ,O!KD¤ Q38÷žÙ¯†×—¦†·'ÞñÉ¥H·C­ðŸݲ K,¨Ä—›p{$€q£†×â-’ ‰Ld"CÆ ýåÂ[‰ ½>6¯â5ÒIÖÔý1‹{¶ŽŸ¶Ø~™ÔkèN>fcæÀÿö æfa·=æïºÒÛ»t¬ è†9Ò*‰®ï-‚êLè¯ìå6DeÞHÛ8Ù${6]{Œ Ôá¸Âf‰éRã1FÊØ¥÷UIÔ•t³¸BC¬-9äΉ®=ÚV.Q¯x\€b0r<< ‹u…µM.aZ¿ñ¶ÑQ<1Ì[Ä"™.Xb‰2?„Ï^Ó¶H0"TÊ„î[:~º€<ĉfB˜ý¥k. =|ûÔ§íêJ3"W˜Ì0" óO'踵MB™ÑP3 ^€ölt˜^RÄ®¢3ÑdÌÖ7ãS@CÕ<ËYÂRöâßÂéo›àuÛ6kŒ€Fb‡f&j„Ÿõ\GÙ“äÏCJ‹É£W¥¡+“²*cJj¨BŠáÎá7[ŒÁ¦bKW:4—ÑGVy5„AllFê/›¡  —zÃàÝúnNON±›úTÄo0'8ÃÝà ôz¤—=…Ñ"=Ê`R/š{æŸú’aõ""å‹êعÄ(VU-lñNpɽ˜¾ìø©>ß?± gSšU‹ÎØü½ÖML¡’ÄDÜÀH·ãœLÑŽu›rOfàP7'+Ö^kÓÌ$j…©ÜSŽ«`¶•–²ªð@2éˆu:±Ñ¯S ‹=š?m³@Š;cÊÎlŽ8Åc‘)¹?`Æú )àWNéφBä@ÞJæä,4M#µô—ƒYFDÅG ç&rLqgpRå—Œòj×cĘp:‹•é囚4Ý™¨ÎsÚg©IhæüLYÎÔàæ€“›EÂG„6"Y¡¬@Àš#´<š·3ÃZ d©ði@8u_vž¥œ£µÔmT è±}=LrFÉæÙv¹Ûõ-¦'KÉà$ ½\“Ëì ½BÆù ƒ}Ïh6LÑ»uåʯ}Ý#¡„-×|†°Õ[¾Ç9ÅhïÅBEzJÂRoÞ²q`Ydb\E6ì?É~=sºúr™÷;JV»$ZUÐ Íû`5d)õyªëó »å”ÂBçŸî2“§šŒ1Ž7Í5¦îÖ£YÙêx/_‹Šm8’£Q/t£¾Äãzr4èÆI+7c\šµL3ku%̦­õ3Ì[†ÑõáWYmcuphƒ¦K÷ÚŒÞ9Ôßãn+ßšX±iëÓHÐÜ8gØæéÔ'`g-…žÎiÆOángÒv ÿx7—´¹qõ›Ur±<Â-[>æŸØ w,jk,˜L°Î; üJb2§•.׬tÆŠ-ÀÏSßЈÁÇ_žoya:Õ ðygcoùzF}ì¢bk¤Íý®øä®F˜'œVlC'÷,w¾‘ïæøã Ôv°¹—$õ<Ÿähıx‹]T`Œdéå!®#ˆ#"˓⾙ˆÈ½O Zht€žqâDAeЂ´Ð0è²3µ|-Œ[°;Ÿ§€’)Œë‚„3ޤQq4BËB¤(âõðÈVEÝR(ÖðŒƒÍ*9 ýB#ô5Tf½kû ÝK.ð»\ùO¨-b¨P±N<¼É€ó‘(ÜÏ”c4u3ù)ÐLÎÚ¡ÍKÊrç8}ê$ÎK8¿cÊ"]û~.ÖK£XW+<Ö˜¾Ô0½µ¬ãƒºÐØYÿZŸ÷èk¡éðÂtŒ”pØñùÈ`ǔԀRéDT' ³êxë}}}¾Ô”WÇraLÀ`¦ù¢Á.ë›#óÀÔÝäÏdŽIIMöìü ûÌÑP1Ë&7*ùYEC/žP=Í__öõ¹ÛCrÚÚóË„Ò!(¿cõ“ƒ(_nÀ'‡ª“xnjÌ‘5ó^ÀÆ ÔŽ\™?µWÆ€&à›+?Õ’®H`pWøå‹®@„)! ? ÷ÚVè¨ ¿Šò‹ÜÇsŽŠ†’cÚ8*ðù°¿õ¥°Z4]KÊnuÝ÷»+˜N#¡_Ú±ë&ë)OT½yC樓ÚÜ„zÝ5hÎDÁÙìîÊ6Ï—} Ì@¡ÕáWêJ ïN¸E­Œ‹óDA„Ú¾°òÄ6»’a@±!²´²— 辶䙦yÛS(fXZXK†ÍèÉ×tS,·€â3ªÒË¿š-A veð.-âF w×!qxY“圂âfF/:ZJMCç+žå+F—‹(Òi¼ÜR›ªÔLÕ:[*~‡Âð"Ú6Ñl–ÕÛñœ$n¹iÜEz@ eh°}Ý!4 Ĥ”:¤ô©ï¯€Ð5¸ÍÞçx]}r1)ML#O\,Ét}L¢jú=ÚP|¤:ñ1Q˜BÁ`þGøÉÙ±/Ù¼š*„ppP3m™ÌJœ]‡N„ÖÎ|Ñ™Çú”ËZ :¯¼ë‘BB–×4×Ph€B`ÒZ2u™_€†ü—Ë;ÍMðß¶‰ ¬Æ¢…HeÏ ™‡5gÞ²æy¿«)«* –¯{¤“ê¯CÀè–,2nˆ/?õ =®•ŒzòìUQ#òü¼‚CµH©#Œ>È,6«ç¯ìÐtnVPàʱ‰¦9‹q.°X96¥?kÑæUž³ËhÍâ±eY"‘QÞôxò,7 Άüü|ì1?A‹Ò…%¦9?ëÁIßÙÞ.ùa‘’:‡‚£0Ål #ªõC)…+^˜y]pƒÓí{®S“stde…rÔ‰ç´5Öa¯ãE·ª>_IÓ‘k+ún•å ï?ÙQ0´àýc¿iëâÿCÝ¿îJŽ# Â`ÿÝó °ØæD¹î®žAa)‘r×ñ‹.\rWU¿iÞ'ÊÏ äæ¼˜s³FÜjzTyÜŸæ›Þ¾xœ®Cs}ךJqªj°Å:®sÎ@õS+o cÞ7r>yõ~SI½èSÞqø5L@Ó‹tCŸÕw¬Ùaz‹ÖºLâ/ûïï…+*l Tz9ÁFØÂ`=ípw:Ü5`Ÿó®‘ûÌì¡ö‰aº¶²9hs\ò~nYòyuo5ïûVNC4^5wàßZMW6/>wÛ;%F*Ž'euS”¯ ¼ö훳øÖÃæ½}‘ ëóÁú¨Zy@?+»G×¼{Ì’ ¿ó Ôñ ?qÔÌ1¡¾†Ä”ã{@‹±Nø‡ñ¦Î ù)^ÇT«`ƒÇû†–>Ljÿë æ…ű‹ØÊ|üt«‚ÅxO ~ ƒr¿DëTsIuÒJ;Õïì!ê {” Änžå\œIäÃ3);^Dß¹™"sMX(l~®¾¹ñ)³‘ñ¶íÎï0£À´ì°w™gÍãícÖ„áœ#©J#@9÷¼fP'´ Zr9ws Ñ7et~ç~¿¥ïƒº^ Äç²c-½sÊNƒÀ+ð;35X<°9µ53Ì%㹺ŸÉ¨¶;èÓJÉûá>ãäå±lû#úÖd·‡ ˆ€ØµJç^/,õÁÞ€_CZ`= ç";ÊÂÓ?êõàåÁv÷Ku?ÁØRÜ[didŒÍûDö»™aÊþ¡aÕ€-tø›0o0RÝ@ G ¹þBç,Í1ôÏs‘ƒA‡Ç6†ˆ‘ÍOÈ0Ê(Þɲ½Á#e”€¢kiNHç'&l ýðñ•A 38|ˆS¸¶çð†½¿0†Çâá׈}Ȳ šÃßу°’X€‰ÝX0?ë8ÃÐÍ1t„!" óµ[â+—¡Æsð6 ]skƒûàüœK¸á®–¸À4jcœãµùê`¶úXŠv 6áÇ>’'³úûû赌Å(O:„Nz“Ó›:•í ¼D’¢™¿s}f|Œ­ÆGʆ; È§fß·§ ® f^ ¢j€¢x¢ú!t— O½8Þ1VÊÂ¥ªt0¹/ƒv®#W+7vG¸ÃF¸®‡sn;©pìÞf ÿõRdžëô¹v™î­óíµ¡ˆY0ÑE:³—‚ØÀ¯nnbÜkx…åm{ŸÐøs4ŠM?Ö‰—þÂÅnëÐÊÞöÇ^¼½Wpûï'V6mÕ`fÏÞO›0VÙ¥ü¦»!«õÞ{;šÞ’w–·Èw×oúݵ}Är››q3¥)kä¥÷MYRMJÚ›e2}²ž•Žææ’íÅx¢‹pÊŠ“2I±¶ïe.œáÊ%®ÂPv3mÓRy«:߈0 t0÷€ûM¬zð³ÌWêÁ¦å„×¶·¦ö;œ{&$e„I¥Ú#Ë`É|,§íÕéÔßÂ7Cw¸Oe]¹¬â¬ÐË,-ØÂuVÙc^y°WMƒLÂc:Ácnðß¼ÂàPupRSjBÉ¡eø“tèKÿM|+ï¸ÊI½”÷ΜqŠ(LNé/‡)¾7ÞT}òÙíÍ÷ªæý=6¬GKRgjãP,O‹x ±øùK)¦Ò:¸R"£³JÙ<sÏÖ÷c‘½·ß{v¦T‹ÙM›mXó2ïÃXe4Öª3L¯áiÏÖÞ>qˆ5µ¹©'ëÑ%¡é@Κu—É[øH–Ê£ò{Y¹P ¥Jð[wÍð¤?ÆÂw3e²§YlŠ!ù½îëÍRRð}–J$Ì”‹J£ƒ¦>ë§Þ>÷ítž7¨ÈcOæd„?¾Z’ðLp,º§‹NÏ£Í`¬õeª!ù¹¾<HYÖ=:ùåy6ç+’rÄreìñú’ÀNƒ±¼žF2OŠñôé÷âxÚàõ²yxèxáal †Ã?ZQµ>b/Ï N›.êMHÄ·ä¬WK„Rê‡úÑFQÞð´7nJ*ž>VØ“eßsmôeñ ®ž=$®öƒÐÞƒþ{“Œ>mÀŸdfLßÓôM~"‰d€ÏìËØz~è„óѨKÆçN­>”®›KȪ…‚Œ=˜ôÔPR1Ë5Ø›,«UJsßÐ?Ó&<¨RC˜zwÂ&ï÷ôzLC5,© tHûákýÆ Ö|£b­ÕÄH‡B öh’þ¶)¿E¤‰¤’®;"Ò)­¶óÝ]–T“ÔÉ÷*ÊØ,ЦϢó^a.w𬥎ÚÄÜAhL­>t  ¡ƒÌðy "¢ð Î0Æ7í {\Î/†.¬k& Œ0(ŒÅA5ØtŠšHÊ„!UŽÃÐUS·As*Õâ¦ÕjeEÂL_üF޹’Ÿ*÷¨á[i„ÙÁd™¾^›Á,󧛄³7mìí ‚’Åït¾5‹Îi:N/G§)—d΃%T¥µ‡ù¢ŒPD™iÚEã 59ªÕ­Š²\¢ã¦ï- \}£ .’tŠftÒÆ ¹úp—½á®Þ¨|;UųSyOeób¥80õ¿3.Uh‰Ä#F1UÏSˆË"¹qhcúz<í>ÁלÎir‰‚en¥Bz³™£òsÍÇ 2}²ÄŸÎGñ÷óÏ»¡ÌŸß%ÉÓ3›xŽÞQ5>÷=t˜ K€ˆ¢bÂàÓŠI|sÅ=úb>"ÖI¤ažÌ sókÊUˆÏdœ¾¼\Hk¤xÐM²t(/¨“Z>3'÷@ç5áéÛ(Ÿü¤<¨ŸJÃ$&jy<­M½JŸÅÖI]f¢ 7êÚ4t¸³VÆ.ÓøcFZÔšv†f³¿Ñëôñ¾N_fPÂ,œhI(¤®ˆã¬\ßH „?ÊTÒ–ô¬âΚŽ×ê…e,§GR®/ˆ£¬ê´ÜÙ˜ÖtˆfŸ™ŒÈ‚¾ 0¦ÅY¯O64$ì·U´~IuHYè0ó~öרjªð')ņŠ|:a-O+ª‘¥Æ*ÍÈc&:czd)r–j ¥9+„ü8!MGzSSaö†)ª`R–²ê_ L«Õgæ¶=תÿIƒ4¸1VH­ 9ÄÜ6@Æ–§² S$• þͮܩÕg/©4i.Ë{æÙÞ ¬Vpšº7—6\ž™f  ³¢„%’XæÑî¾Oº@×뜴bx`®½* §t¾T]}8ln'4•O rÙ!ÓtwhVBш qi‘ñ0šM¡ 嬔âÈcÜ%˜Œ2Šìõ,¹˜Ëêä…7áÞT#ÖBœÇV¡›¸ =¤­~€©m~Øq0gª@ø.Ât³°tßë’Btæ¾.¯«šž²çgüo,ÉÀ¥Å™Ìÿ.Ú븮UÂ3¿T˜?ã&º¶f¯ø6/[èÝ­Eœ‰ÃNP!dNï¬â][^èQQWW~wÚ½mÄtpH Ó¥êSáÒo"?#d*Ç•†@V!QÆŒËçÕׇ¤¿Œ'•¯€?…¡ÿT°ºj{÷ÇwþÈ…¬P L)¯pÄ…ááV9ô©ÓXföÁ§SùQ`µP@L5ÛöÞAíüüŸÄõòÆ–›8‰ºCüÕÂØûÞ†þ7”Œ~é‹Ð ±ûÄnÚ„‹°Oˆ#õ ^`@̱lÀ}&ËÒ@µÜ@AWÄþàз–ÃjÚ5Ïìš³îš ¥WåžÖN daÆ™Qà¨HÇC3gUFz•˜|æÚÙŠd€¨œ"€ Ú?¾0Ïéô•Éh»ûXJQÞƒŽÃ%t8ƒV‹&ÊPkwB¥>{Þtm‡µX"ô_ðOapˆV ñÚMµ¥á~.k,é'K1¸IN½dŸrkGž3i…¸5fa¿ÙWWœ[°¨ ¡4¤JFiÈŒ†ÇDfà1½±*è‹|,xXc($à2Èï|,:l;E™XWúQì(¤áïýýïVFCüüã_¿ü¢TѪy1œsÿlYÂã*8Á ×Xzu<:‰“e=Ý9Ж¾Àk×úÙÕϖŦÞÖîÏá½4ŽÁÆ;ˆŸGVœÅ u 5OyZÕ™ïÀ^ÎÏÍsöVŸp‡:îÀŽ `*[e{×ÝßYÍåÜÞ¼Á»Áx}'¡ë;‰¿ÐÆt$VÜtÂÙÎöÔ7hì*Ãò»ñN£×_I÷úÉû§`þ,Mº<Û´Oƒì9ˆ¯‘Éàåvßk@HAÇUg^õ’’»§„-×±….lý ÏÊ™03£‡²‡…ŽÓ™ª<<±ŠEO0ã²õ;&j§Dæ‡`†ZË{>¹ÃF:ôðõ0ŸÓÐ’ñœ1k"t¢¥†NÇÔÐóîá\ vB“š| šÊŽéÎõ4y; LKðú"`[!Ìtã=á1³0Ÿ5Ó9³g@GÒ±ƒ»i=öÐ4ͳ̙5ß6³§Á¦¦óôYÓŽG8JÚn™&\åHމ¯÷”áy?çb%MôÄÃZ¢éžY c˜%‚ÆbY¸_û9et¦l˜Y8çëÙçÂ’zšŠŒP̉5û¼²¡@2E.~îgÜœ‡dÙ\îÌÒVSÒÆY.kLeM‰ÃÇzQ (: ,å1¡0hXP ¢Õ1ÉLF³¡¨l(°NY ?7i—Sm†ÜdÉ)Aõ<­ç—îù2§T½ù˜ªwÒ'óôÏÝRNhLÒ›“´Ï-Ò^K<­#£òЧ̵Vl‰™3 À¯1ˆÈšƒ¹,“/Ó8HMä5aË$-¬ø(8ñEžgkðTV4ȱœSp;Ñè·Zú‡³4à…K‚ë»GFe3SS^b‹0421«[vFŠæ~¢9i'nÑNÖÌŒ9’3£ä”±›"Ð…K8P1BÅÕ|9[A**Lû쉈¹´9­"nYEzªèž¼%ݳJÞ8/(‡´7‰%Å3¶?š2@3Á•üÑBnˆïƒù‘‰¶]B´Ä“ {^ 7 ÌŽ=Åߥ4R÷Eýè xk̉,Ìļ×á9æ.³¬'¾Álƒ®àxÇ®6ùsmkIÚ‰e’ù- =ñú‘‘‹[a²9^0 O¾×–)|O ܵŸ_{—À¾jùh鋱ºV[wxkú˳"„8Æ7PÀ§rNŸÁëleÒÚWrf¸Ål³‘£;Z^Ù;»vü^qÌ,:†²&@;f©UevV %&cŽI^Î>¯„%=+VMrÊðj³L¦<©µ`'ðá´d«®;³‹`÷òÖRÆNd©Ô7LŠÐ–±Ó–²“J¾éÖÍ”|ÓÝŽô^ÛçüÄŒ›.Ý`K‘I‰@)§¦)7}{NMé—ÍŸ÷* Ñá6;K -v¤è|8Ðá¿q8ÙÞµFõl’è®æ~tQޖñ\&t†ùM*Ðt° 4ØØ‘¿rÈ7ÙƒÛsY¶øìh4ÔÌ|žœé)çm0.Žôƒé$}Ç -Y#ß¼30º˜k!Õ↢¡)Ñ'›+~WêG´P)¯ëƒê"Sc2¶v,WÆ2Šp†âfÙñkTV™˜+«Ù×¥%ß#ånt¹¸óÜðuAÙ9-æ°ü§¤º°vh )On˜N5§«þ¹)¥§lŽv1=ËôˆWò€pѬö$·Gy{å•+G$%‹ñráb"õ’H€ú#“Oì™ × *ÉY[žé8`°÷¥–›ÿ ì7@èR½’Z®©Ô.žòʱ*Uø/IWZ/æÎøU">×\@UP”uêp˜«Q3¡×ä ÏS€IÓŸ2™5Lã<Ê—¢€˜)D«; §n8°“ïÃïœí©´NcŽ­!ÙMê Fë±ÞáLDÌ\Ræª9çÚ2Wµ¬&9i}'e àb„qÛ±cD nÇÈKLøyÅ“JŒ6:˜m£Ã•F ŠS5JƒsuÃLYe©ÚϺ8ËŠ5OsE)ˆÐ‚ß9CÛ’L=i®jJsÅæNWuÂtU.M¬yw¦ºLæjm)ËU„iœœí9’!•H&A §Ä\–8S/-&ÂX…ËpqK6Ãæðkñ @ù»»?eŸî)&¬/Ý÷‹h1'¦Dœ⹑í‚ÌO¢\D}C‰õêù /ÝUæ§Â{;€š D¿q°ßûÏA¦Üj-#[γy{y¹qŸù†0°¤a¶„"¥L(’H,‡YôØü¾²f%‘ 9r{Ïç 9ðâƒÒ¥¯?“ª 3‡5 ˆ()-‡ƒ\ZÚ %õˆ¼gíõ—A•hç<Ë6kyLóä`¯¿¬hP 3ÈxáÀÓoóÏ{ïÞR§¬tuÄ÷…9÷óÌ–v£”i7|™F#˜… Ìï+kîJDö¨©4Æaûb/3\̘֖áBöÝòBæ„Øû2É…Ù}-å„r˜^}<ñE€‘^üS8ИÑ–”ÒBf?èßN1Ë÷‹v‡3 {ðÇ\—@!¬ø˜ì–LHrsŸ}@•Éu" i$¢Ä>ÉÃçÆ6fê“»&Ç2ðË"YdŒŒîÜ}þ#ecÓ•CƒÍÓK˜|”;‰ sò˜ƒñÝ]‘­É‰Í™Á'N0œKŽ!=;(4†%”w.qsƒèði]X󇌫COä¥ WTÕ<Å‘k ’;c²fé9Ø$)Š=,ƒrC,i÷¬ÝçUV|†¥¥â‚’³ÄTÖ{Œ‹ãeÉé²3Ã:;tM¦¿µ¬rX‰8äíî¢0Õ*&˜Ç븸C7Ò²à!×®±jÔÓ¯n'ö «»òök<ãçÍÓ ú¹_ßk‘ŸŽ«¦Ñ·Ô§FßСîÛ»ÝovÊ‹D¼Zºn[\Øñ5r\ ãÃïvG„þñ§¿ÁƒÛ?þöoŸ¿¾¼ì÷hÀo¿èög¹²ÿ^KB)ÿº*^öqŒq<‡9¤_ËîG©à–=®‚ps\âÛwÀ¸éÒ{BÇf“|Žýv®4\Ó¿%dй:á·˜SÅ^óeö¸Ç#˜ãn@¨Hôg£ž0KOÆ‹ * ãaƒzÁ,½/è8´‡GFýÈ,ýgßUꓚzYz O«Ðê SÛ¹¥íþ¸¶®>êá©õÜÒúp0XE ?“8õ€[z0sUq˜O{,ÔnéÇpžó‚ÅðTD–—ˆ·E4çm°òôùTô°œ`ùöÂôu1ý[Bè(Á¯¥Õþ ¨Ö°öŒ0x{ ‡ìÃ9†aëJ££ö¬Ç@)zö©Þ³¡Q^H\ År1Ç%–i|¡<‘Сž¥'cUj­ÆS‰%¥Üúãí4u6èØ–6Ê“šnখ¹¼‰w¹Ø ]ÖÍžKLŒr„³ƒen‡K§ªfÆZ¿é±Ñ,1Ë,0ôcŦ¼‘زˆjÁZ¸}<ê£ RýaƒBcY6Ç1šÑ–žñTbɉs ÿög@´éRõð4’Ü24NåY_»ÆCÂÁbŸî¬ZVáGcéÔW>£ûÚðk¡ÁtšA#‚ùXâI÷TùkoY7CÝ1]¤j{ÔçŽ;ý*ãaƒŠï¥ûa<â<îÛ‚ùVbe8Gð;Çš›,›œÊ2êQf둺+«ufþ‚pÝŒÅ| ‹|)ºËå½ä†²0Ÿ—I‘ËR“ãš+VfÓN{Öcà?‚?&³^ŠŠÉþnÀ(ÕMŒ²nŠfŽ(O$´·—©Ô÷qaJ¹+­ÉõÑ_È}çÂl½A1ÖTWëK¿‹ªuC{ÖcðåhüÙh¦}G]éO{,a$w" m3 ÄèA(ÇÎÆ0Díu«@}Öcˆeëñ¬uŠBëJÔìyœKØ|Ö:ňu s®MhÙ÷X ´¯H»a Ï3ï3hxsMfk†Bšw4=èar‹ù LØwVÓù±Ò0ÙçÏ{L©¤k:£«öÔ==óy)“\–Í×LwëÞ »MÖcªOê>}ÕŽÑ8máO{,\básNÑR:êÖøüÍ€Il3Ù¨¬t÷hþ¦ÇVȾ³¾Q G׈ï:l,3ÓÀŸyO”ˆáë™/z\,–iõâjƒ—ëÊ€Ì%¤e-ÝŽiü)zxi¨ÅÙŒZf=‹åE‹Sm ø3£&†vµaë˜O{{+'¾ÍóßV]{¡@®¦þô‡OrŒðñ¤Pe|D<×"õ[ŠêdXxIç;å-Œ¯jî,×ÍIá…2!ÑL:2i‚xé“¿Tb®ú´BºQõð¡„gðjF!­S³ç=¦¨ð(ÓPÁæ†/%2ì^åYA 31f2Û&S¹á|{…`…E€ ŠÓœ`>%,ö]ÿ~ €.Ÿýõó×1>z‰2y…Öo¾°øË|Çê ëŽ}DñÃù0—c .YÿøÅ÷P øÞP©Wbù.ˆKö&\5CšCkú#Ìy3d´D˜h~zwBQS~ †u+vEU_M”x¢ÜLUôì÷Úið5þO­wÞ§†Â9ÂCîrOõÞ¤òû'@­lö”&5 ºoðËf4ž´˜ahþôTÖí3:Dž¿*n*Vûî·Œ®ÕPþ{¸ìUÁÀ›Ò,öd9Ÿ>¢£N˜Õåuu?U4ï-&LCJâ&]‹9¯fß4-†ñž7.ÚÇîzc ^vÕv2«ö4%aCÒÀ˜ð{¶öûaVжOáO¤’4ú~(Á‰¹Ù†É¤¹±<±ù!eùóÃXŒØ¾ó°þ`ÞÝD‰<&çb¸¥Ám‹Ûþž:ÛÉô_·–˜Ô•Ý+ˆ·µ]ýúeiï÷˜^~ûk·/ÓNj‡” ]a(hO)N0Ï­%é¡ñêÇx\>Í©!¡7lõ±»€{µ+j–Ó.…ÆOæKjxxݼìÓ"Äàöèê~·D†@vÞÕ`ç~¡´U?׳÷\Ü*J€2«üÓý쳄²Ò$É ¿ 0Û{m¼“îq¶'è6éøõgÔ‘ç1EÝmˆEOl:‰«}ž`v€<1ˆšŒAé± “VAFÛU‘½ wUOºz Z ²ï#>‚Ö0÷å'ˆæ=˜ÂÏð@¿¦^a ¯H•R´'5^­ Ü8AChˆÁïAo(UR©fÁ6Ÿ†72÷E q¿%”Œ¥‡%×Xž“ï±²ô÷ˆ }8\YÝÇm!B3>›º@æ’§§cÔð;ç§1dù Æ3b’ãv½ÄA~ˆvšz‡Óì(Kº“]X~îO1) #0ÛÏÃü Áƒðk°s4oDruÛ|Eö ˆÏˆð@”°¬¬Ê Áü±}FËžwL¶ÂvÖ12_Ø! m€À˜yX²·ªnO;¹•nׯÖ/fâlØ=åàðäÍŒ¾·!VãGaØ~ú#iy*2ìáHšÅƒQ¥É;°4Ùvƒ¬[+ô 1ÑAª}Ÿ(]1¹$‰‹2ô…O5"÷~‘©"‚26+Õ땵¬=WƨZËtþÆÑ*.[º< y2–çrn½ý!¢Ò0Iy¡|0Æ&H]/uí¸?$Tý†Éqg—ë֮аΞÊEƒˆ˜LÑ äÀÇ-39ÄöT¡ß¡  >‡Bá>ŽjöHÁ“z”«'õ2c]€G%À¥2–ùci *ظÁh0Y%»ã·AÉ>."q!3Ht³‹Ò#»>…8f”‘Ûáyahß´Úq×K©žq‚RNù…R•¤Tïaï@É¥®·Ê¡&=^ >8ŸX]á™ÕR]KÊS1X [" ªãzi(?²øžÖ·Ãšb©Ä›jüH¼R"ºðZߎˀ b\&Lƽ2à«ÓlX+ œÉÅŸÍÿMm%…Õ@Í ÜO?QA–Ȇ’g .ìc¹ØŽù…Ö #y“±™¼ièL µ÷;…RyAš ×EF,§>;Rl`6¶7j‡…Þ÷BåÀïÃuW“éßÓªxMYo_xÄm…ƒäÓ#·ó¯|n[ò0'ü õbC6¦P­ÈIyfÌGŽ'@š«‰ÌúxÂçí#_îäF†çÖoÛª¸fº{ž¬Üì¡h8A…«™î š¯ì˜“€É<Ód };ÕïÕô+Ü;P.ïPø†€S÷ìT,–çC,ÎË#YßN–8#U·Ð4ŠO{Š7»îV¶ÃÇBnœ\£™7B4N"½¦Eh„2|`|¥_š\æô)¦ÏßËòÓ‰ö‡2Úн™ý lMähŒ ¢áM=–ˆ[ŠEª®,t\¬äuiÚ=—¶âtȘâ÷‰>ÜçÁSgvn«åy´½†M=ã1ÍƲ‰¸ ×S6ˆôg –€¤ TCø;ŸÊmt·¾L —s¬ð9"“'¦É%ñÄnpÂÓúÒ+2(8l/úm™<¡œ©q”~ß; Mù`ß `öü^‹¢ü•'ã§©pUX»ƒbýˆ]æLv:3E¢¥sc̺?½º°ópsXpª+¸ÏUÛ ƒßmK;!sšXßÌý2…Ðp7>`®nÕkV ŒñÑ—^|p}Yér'mïøT—~™úíw¸eö/ð!GG«Jj¯\n2:Áêºz7ûâï#Þâè®úÖ´ Ô :Б;ÊU$¿ßNçO?k34ÐÒ¶~švšpK\“;£8¡«k¿[ÏîÐ¥ÿøúÃßÿbtO L~úûØ=ì— Ôüÿ®ù—Ÿýúå¯Èà{ºÁáõq¡\^Õ À@ùï?Ê^ñ›?~ø üÛ+þ fOÞ§d A&…™¤}pñï·Œ‹/_ÿöï88¦Å5óŸVoU´»Óã~­¢˜hï#í3´æååѽ¥ÐŽþŒô"e<^îh®‡vp)‘uÌ]뿉Û5xúõeŸì Ç×ÍŠú+üc9U~Ùð5üzú¸üq\wÐû\Â8¸{Éš¶ÚèÂ_î//›{‡GÔŽ{‡½p€MÚû«_#ûƒäËHþzÏAS‘‘ÇTIÒ€+„¡Ø×¶zÅ‚ƒüÄí!ø3xü?&¨€9äœréh°BQ b PÑÖÀ˜)YAõ^Õ|'«Â¢ZÿX6%¦½»_ºÁbÓFПôV{P6˜šcT´…9œYiNì.š—B®iWaH÷¢(R<ù[dz—ÉþþCyÈj5òN'whÖ×ð°ß^¥|IÜÞ¡>5’²Vðë|õ×=ŸyAHgÙàO¡R.¶W¼…y’Jj˜ÛGÈï`ÆobU'ª{™åt|þ*™Ð±=aØ‹0¡-J¿peݪ;ž¤5>è°Æ®¸SÎ@Þôc*ÒyÎLÁƒÈ›_%ÄîÞOàùЬPèÙ)xÁd‹ì(0a3~çS•²}¢R-¥L²Ça©ä0ѰÐÀ¥ ¿³H÷¯?ýøï?u¿|~y‘•‹Ã°7–£mø]îaAü÷¿Ë/_ÿñËçWÑ+õ‚ýñ¥º øºà Š( BG±·!A¸?¾`3²R÷øï%,òK„s)1/H~Ïû–Í?¾~ýòð¯—~À^ób$ Z_à†ÀYÿý—á»Wü »¬<) §ÎEðßïrè¿üåO÷üüã¯ÿøáן¾üLÖ³¦âî™WªÞW+ ,÷Ñ9¾c5¸Ž´š{]éÕOT”„àûîÞÝò¶Ôà7¬xñBÝpU``A0 W5Ë•X34z+vMz«­x¥™þÞ#máEšò °ÛÇòÞTÜÙ^âh§O£Ze—ò<žÙ7!<±ä èµhJPECPð›é}ÂL*ïÕ«¸î8v’1šþŸºˆÖ÷kìOäšd£çÁ^·”/ßxÔn°\íÂGá#æúèŒ)~aV_O%˜ÕðFw €w ¿þŒw ×xãšN}áá™QÁŒ„zöÝMv²ÑÁÑI™K} u!â`ñCm±ÅÞEïéáíy,ìòvÌÀò{Á¸ý»‡øTò²ÿP11bå÷sóª¿þy&Tt²Nn(YnÓ, .–¾íS”d5ËÏ¢E—fñó¼«/éë"`ޝ‡³F²’ywÜÕ r›ÝñQÝ,_Æèp>þ˜§®¾ÉðA!Ðe¯Øsõ­ÏÜ|©Þ_ÓÝ7ÝX¹°~9ÀÂÈf!³”Oßtåå‚ÇŽ¸R=d4›XpÃeN¨`¿È:¹(1êŒß¹¨Gß— ”@wé¯^Çr¡T+td?‰]èc/f¿wUMÕç ÖÕ±¶g¢2ÁÌ*=pô_Cãb–“@QmâsŽŠL?«¶ ™¥K‰ïÀr!o‹ˆ~L[•˜û$@ºÚ°„,ê iÒ@…ΗÃ+ùv´ÿqÇÅ¥¼–àZ˜ˆ]ª±8Âñ~Sz'cÍ0˜<)œ|5í%Á ƒ“§Ý·Obr±ÕÓÄîÚ:7 ›S Û×¥9À,N›„1ZIŸv£ïLÀåý4¥)—à01‘2ò»ºA¡IIÛݸ¨ÉÔLBÓ ´>ïJ´tï»x\šâ·¢Éha”zK˜ôU.ÍÚ ‰.N/«1ÒÖ4¯è¡+¤K]<è¶øXƒ.õ Þ5Ýrªè ‹©S¾¨yÞË㘱7ŒÎ§}Íûî0…kýé’¸þ#f½ÑW¯ð]r'žZ¥#r €KDöSl…qI8É7%ïìÑì:d‘l=%´U)B×P¦`®7‚[lm¶eš¶®ÎA9ÄÚ÷iÂà’ 8DιU#œFn?v¸`¿l é,ì—m"«V %®ìå€ú¹Kô«rÛò\–ƒ²./xÚ ï.Ltñð‚™€`‹l,;iooY,iÅÀmл-r üaŒK¨.¯¦uöRðÀ%é«>ŸYU*WfÏ`:Ë|ž¤úLï÷ÆÌ›ÏC`ËßÏb`™ãsg Œáõ½ÀÕŠ3†·ã4w€ÉبՌ`X;Àl40âSªƧæt÷÷7`æ öËs«„¨\„—Ž1*¶ôÙBÊÕ>2ë»rõm¥ZFãbµkâT… -YÑ,ª¼íØl1¦ÀFFª$aV„ª"mžÜ±ª'+ìJ\ͪ1‰Ä­rrØÅ,Øäd°9¬+^åd.×Ü+YP9#V¡‡ÚƒYÈjyö¬1«ƒD =õ'SÌ •K’Ì -Q+—Üv `5lå¥nhgÀiÿ›Qi!°Ô_ÄãŽ\-OóRôÉ5×=O¬±/×´÷3ö$xµ¬”ÌèÕ²fr„¯ÍŽçñ+—4ÅY“íšÁ(—àìYÆä{=ûXCXËijư¢íËBZžêUQ(×R£PÓED®E®†¡æ€Áþ‰Í3‹)­â¯Ô»vŠr uM ÏbQ.ã@]göà‹—,„[fÉ¥pÔ“Uý$µ< ®€ÕN÷PTüŇúðáR½? T¹TD¨²¸ÑžkUÑ}ºm)¾Í/X3lRäêå‰0™ÞE‹¾®Ð‡ì^¡ez?áu;#ž5e*¢|ÊesÆorÇ7yu½2ü@PÃ…Þ°ÿ½z9±©.%ÇÃÉ{<> ¿Ùìë‹Ýc®ÏkIÿ‰ßÒ¨‘q§o¿éD£{ƒ¤”)u\]îCš»©;Ìs|:2ºIwJ@×8û)ÉbÊõgL .Œò’ãMB9%×’sPƒèÓÂ×ųiƒÙFPu‚isÌÏ®Î÷9+ofÍ%Lm„WÜáטZºÊÕŸ$ŸØ ¯; ç·§"㔎ÂjÔ”û &pïøÚr.ýÎñ Âëašª@¸Žàâõp·+Ýù„ä)$Oj8¿È# ?}ø`՜أ¼âå¹”.ϱJ­²Ò£ñX†L»E§¼TSõÜïsBͨåz/­q4ô§KdûØpQÔ $eáÆ˜4~ ¾ ¾7.ãµâÛ¶_Âý ƒYã˜Q}+£ÏátçN—mò!^¬ßQŒo?· {ÏÃåÞ+Ì—ÐÆD'ÔwÞd’—ûÞWMAhÉ DÏÌÓ‹ÏELR$ˆnÈb¨+]õ—”Ž¥y¿á|<:”' ~…Þ«Ë…À%nóhœ*¾é8•Ùµ¾ÆÂJ¬´‘Kz\u0‡…Ÿ(Ïhéƒñõb\©×á’ν$‰ku+ š ‘l†µ&¸!‰©ˆ%®å=Öç²A®.޹,Pyâ’­}RQº™×׆Ï.¦ê^éßóÂõý=Eá3XhˆòŠ÷¶’­cXj²þŠêv„‰ÇšVŒjZÍõ´.n*žO]_Ýjzu>U×·5÷È4…竸ˆuµýÉòV¶T±<î®Çjwå¾™’ÒW5Ö/9b ™{.¢è{¦dÛ‚uxãpªäÎ.] Ä+¨DWÁ 1ov?kÎì/;wÇ’€]½ÝÇû’2šÓ[ßøßÀ›#ËvWj1¥çZ@Ãuê/枦a£µ¶f´Ã©~BUh¨Í\­Å¹¨þzÙ¶¨a¤M£TîêE–ÀùÂ;¦ûÂ¥Ž¢ª¨Ûm×ò=™A%ˆz?R%Wì`PI%1>¶¢‹c—(³\L›ä½SÞ¯XJfLëÞßñPÖÖÛl¸¦Ñ¤—P‘úDF­t›ïSq¿Sú FåõœÓðr,’šðxÖÉ>ß-U&=±).>ÈÙõÖáôÄAwB4BÖÐdâñ` ѹ‚¥ kÙ£‹“ðk(€X­³–•õ‘©%Ö()˜· Â'ot Tá`á~ª0:TQ™4ï$OÞʤ*–m ©lÛ\+É"ms×I>×­ a<~çžLÖe3 öƒŸôÆ@Ϩ€„®A3fLT¢[#Š¾ÃŽJ5z8¹¨1"‹sçpòÑuð3#y£=ËáÙñÅËB[f®y_©Ú6:9èß3@ŸK¥|›ñã&5^sË( VïgãAïìÖª¨î¸_.¨W”#×ì¨ï¨Ö8ÒËxžÁdÀÌefxÌŠbÆU˜ªò<Þ¹ÛÝØî*ZqFd³—€öˆ9^¼<@±Îh¬.§*Û–½ÖXóÁö TB}̜ܫ¯T›ÓnÛv0s\©:§¾ì%„ü «Èº*†£yPËé©àr¨MWcâ¥O20A˜0ç.ÿê£àS2ÿSsúȆ·ß(gƒ7÷~ûÞOq ÕLʇ¸•O·͈ÆÃ<Ç#Jõ%Ùûì" `®SLŸ øX%ÇÐíjYECÈâùh™òÈž…EÔæABŠyqlC¯†Ž‚æ±Í0AøÈSá)!QO#¾!K(ȈL³ƒpÄ#ý. ع&§yÇÂDò2¸òÔ®áC`» &´7®{cÓã$M2ÜÏ1#üæ3’õéu)×f—iNý˜{Wy)ƒ1¼üXr<‚ðÎWÈ8{†ìZÕ÷8Gê㈉;=Œ¶,Jð0Ãa¸©@I¢ÄÞ›5®nUàq³¶l»‘BȆê@!ò:çßa15að&¬D©OCî(~Tô=JÌ”ÛÜÁz4pºl¯gŸK>Dâ ÏÐKhlñÈ€–w^ÕÕ­lÆ&m§¯ðÊü0¥3J:‚RW‰lL<Œ‘ò[Žáa„¶¼p!wÐkj˜€ì÷œ)èïsÇxš àl<7@·ö}c•GtkŸØšÒ‘Pþ5Ó½A+ëö‚/HÖˆ@#-'@¿öÇ]~-8`9ÏU,ôÛ˜LeyvŽºtW¼–ã [Ž}•ÑYø2Àft½/³ÈHt¢íÜîÞv5ŠÅª8™kS`rPø5œ €ê V7i¶‘¹qÇ\Ø`ÁSrÇú‹A·`¿§RAû¹øTSŸõá(`ζW3䎙ö”–œžÉÙ`§_Yˆˆ…t)›N“Ž}ïfÏ'¿‚Å{ŽˆösãKÁöð?uò°8qÊò û(+ áyøØéô<(1gCýø83ø´ð±?…¡Oã¡"Òí‰ë¥ê!½:`I ø5 CtlÀ«|½³Á­9aâ©=ÆWäcÐogL¡Ã(ë¥AkµÎ­Œ$©OÔH;DRÌÝ%’D|yïšÓ½<ëa)i¼k¿ÀÄ2„bXŠ›ð;ïýX_W.‡÷R)¹+qœÐó4rEdjñ†g´UÏ>Ï=l/7b’R —V1åÇ#ºã \×tB¼¾;è„‹8aÅ_Ÿ`„#XÝ-üvh17 Rz Èn¯øƒuzsªÓ;gT–W‹½ßËÝËÙ‹¶.ïÓÜ2ê!³ôœ%ØY½å~ªàÿJéø¨ÏÏU‰ÿPQ!`VÌu»Vï7?‰RºÐÚcv’'ç;Ž3Ÿ —H±à%Á'¹Úñˆ=n“$2HáÏ÷·§Ï OP…:wÁóÏx¦ˆ]fätÞE5É”õQàFüÎCnvÐ~M/mVª‘E÷¾¹q(ËÒP–ÈÉu“+¿"7?÷¡¼}ö‘u¨ÍÑu$Tƒ}‹Õ÷vµ¢ÅŽFrÖåŒ Øœ ü¼TÏXbM˜Ä;«þ¢ù XÅѨRE' Ëƒã-–Q8ÒÁ¾,’Å@¢ƒá.*e?ôT«•QßQÈŽJ‚8za-úA%"iK»©qüŠT©Ä¡-«µ2fŸvƃuÈÚ2K¦‚š}„õg;Ò¶?«”†\º{ä?¢Þûû,•øñÊn<õ1ô óí„™nA`) YB–âU\Û¡z„fcAG-±º™ŠL¨Ÿ‘Ã*ˆkM¨&OqHaàvã©ÓcHN€ã²)àQ@ ÿp3†,ëLô~@ÿ/m«¶# YF²ÜG}jÔÙn-šåôFôEï¦%X!Ë=c˜=ˆ>IýCÍ3ñþs{ø|eŽþ¡±!áyètáŸÈ´[Á(7Á:®ñæBxX±‚å£G îØòÉÛêÿ©Èâö•;~Ü¡w6´¤\Z±­:Sø=§žñÂúÃ÷y…¨NåÔËi¯> ó±‚0þÑx)FÁU½G^êÿ5ßÅP–Ú»í.­…°íÍy}}]ÕQé.Ýk[ÙE9a<Ô¹&à‰DuXDEô«®ŠWkyßœê²?äaHk$ CPÜÄû8ûôß6ª„²ÞIeF×$´G¯æéÑýÂrq‚Õ?\F`À6šTŽf±ÂúÔµö~F9UŸ‰x¢xÊXƒ¤ç7ù°ðLÿT™S)ò¤økv211«1Û1 œ8¤fb}}c©“ŠsMÿmëdL[ßðGWä먲'ÃSuï³÷ê›÷²¾¨ßyN‡[©ÐHæ`g0À¬m°ÀN.ëìÓ Ã²:’€½Ô˜^Ô`E”Xl'pŽF¡µY¹ b£Y0¹p"ðˆ”¶b0<8½1O•!F%ͺÎp oUZB;žÇðØ)üÑ{qø~÷‰aé»OxBWN¬(¯Ù7ÃÙíW4;ø€Í¥´®˜n ¿VêšUýI<º‚ºZy¦ÆÓ)-Æü™ aÆF%£\+:†{òo~)À¿SK}ºòË$`3²ÑáOªòî^‹¹)1chWÜYD4³O ô§{¡Ü?VXkI.¶<ŒŒ±MU•a|pd÷Þ¾£^ç õ:O¼™*­sÜœSº<<"bõäIfQ˜’ù nLÃÐFkšò*·<†gæá¯Àp<þ)Œufï“jÂÿÖ‚Í=ÉÈ¢)†´¬þ¤Â*‹‹·'²x»,j¯r*ήYФgÀ~ƒ±=jÓRKºÏ À¤²“v6( *’dÁ´RXÔ±Uƒgn¯F™¬ñ]!Ä1*·’Œ= ê[†¶mÌc4àiZÜ蓟?º;F›Ç‡ÆÈEšÈâ\̰ÿÔ"\½W©!Ÿ ‡.¡Šœ’Ÿäù <ôЋ¸,w9ã¼»_ª‡á{ V¦³öþ˜Ó€G‡o3÷±<å‘z½Ç‘kÙTXÊ]î¹Ri„|&ÒÈä3Ʊ¬ú æ1ý½nÚ;ª¶„¿ßå’ë¿þåOÍÿþÛ¿ÉÂ4¾µnþ6qÝ¥k†û ¨õ÷ãQˆþ#d´éüXwºUß'¹£íœ~(ÒÖ-^¯paºUíxµÂs|ƒã‘©º‡OyâøÍyPy_P.m®ÏQê5Ó‡A;>”)ÆØKG—fŽ)/M›x?¦óø‡µµÓüy—‰]]at¥?ª^3<ð¡ßmTZk‰5—þЇïøR !*ó÷ •{IòYÇÔ,=#ßèìˆûˈé@˜6L™ OfÃâéw‹•ô_{Îwø½nø õ£ádÍkÓÖ]~ÞÝ^ñDaÓ]¯ýÿ`NOµÒ¬ÄêZ==Ø•…ó½”zÎ{€t`×p0W±Œ+†Ô4ôg:°?V³ôPo©žÞ_齇q!´€p0}_XðLi®eå¡\«bUÔà2PN¹D‚I"cd¸‡ ¿…•\ÆÅåE²¹>‚6¸kù8Àĵ6Ý<ß/Ô‘|çLJï-ƒ—[7䜂¿1¥‹Á¬BW¬ÁT7§òŽÙªß›Qg<’‚çtŽ´«f•ž §PWÏ<õ~çûMãSyü]éG¤x¾.ÈÕÉœåTïîxF ”ýÒìó]"Žfa '–ÃQðŒƒqe`‰2—ˆ—Ʊ'Ç“OQîÒ:CƒÂ‡Çü¨0øfWY& ì?§ ð°¿‘="‰õÄ[škp›àÄê{/2< ¿s!$‹oòò*n¨ËÐæ‘Vwpx¤$§4LX•ÔOD¤MO®êétUyÃ$-ãÆ­ôxû#\“h)ó3 ,¨K: ¨Uw—ß¡£Pw÷aQ °ˆê„ðcš›qѤtd/=øê¢ñ¨À³&Ø^UÁ&»7Ú$ƒ,PÖQû¸ ¹o‡©~ð¨cÊ­×1†$ä9ʸGiNUWAëbj(âÖ´ÈtúÑ!9л0Ê㚇P?Ò÷–ÕÎR:É að¬Õ >–ÊKÒ\å¿øHËtõGe„ûtÜ)2“ÍÀ&U‡§$G†ÈèÌjº<þ~ÜV”'ï€äÞÇ›I}K[ý‡V,/E¦güQؾ¿IÙW}ŠM[ˆØ%¾ûmqõSÚòc}„ã~½i÷ûþŠ©R{—¡ lzO-^NÈsƒ[M²©·:½™áE¹äõ¦›ãâÒ½ˆ4Ì‹B¸h©œLtøšêæ ƒaÂï, sL¯&}"W»·çtÄàOa¨3YwG1$åŦõxœ{ö®kYå2:œÌ`5#ˆ¶‹±‚ÇK:€\Йqüb(Ö`@+K`öÍ&^´ÈÑp¬ÁA]7[‹®.Äk)ö¶FûäþhWWØoAfF¹^¾‰½cBІ6üñ Žî== õ(X¯B\¥?±Ó`{·ïB\FÑ8~ΡuGýçè÷‹@äÿøúõóÏ?þo5 ¡ÆSú ^].lLeÁ|ŒC°HûŒöN§ÓB18â‘^ACÁ:¦àu¿ïƒnwæúº8žhw¾KP ï'{eÊj‚÷³yÎËp“´ì:†BRº²¼¦t8Yèøæ§UšË\Íå‚—À„/{?G åç‘ö‰¼… :ª$Ÿ”ÌêÉo@'Jîh«ïÑL›ÞfN˜‡SÛ3%Ï0!±³õ˜´ºOgI›gæ‡tËzL¿™ÞõdÞ€ø¶­±r%¸1-žÒ¢ÃHæG<ÛÍ)hôÙñC)U}=§±:!ŽîÆhgüAäES$§'€¥2£J¾y÷è6ä8˜ì'rtJeè@žhº ê¦_Æd£áL00檡˜>ü8òòhË3“_ö‡ƒ‹›Æpt)o,£`¢cbE梜lã,¯™á‡¸Ó^äžÞ³`èFÌËyÏp³ÏH6÷ õ;àÉ9á)–ðH®’ §Ç:6’‰waãx²sŽmz¬c„M8±iÃÒ0Ò?CA ¡cç¯úÖèÄK°Ç üæ3yE×U™ :~yö¿çá©å×Ù—/Œrå°d¸ÜÐs»X–{¿/H+ìQÞvwëb—‹v`ûצ×qõBs>5ç{³q™x-<»3J€ykÊWØ$~RläÀž6ÒîžaÅzæZ`€ez›0ÁÇ>x6Þ£¤ggûá7{Ú#IdùyÞ«>žï^Š,)]d¹¯M ©!™“´Ì”{•ú‹wÖ\XE³(—ÒTŒ™™ú,ŠÐ¥>Õ‡¢Ha O!zméA§ÝàO¡Ò,sòZ½•劲ýtgm‰É1ô÷ê½qž}»ÒúÑïœp²MŒ­åèÆ0é´-~•:¾Ê«ûcȬ-Ý,áø²Ç¯Tˆ!wØ>Û;>åOÿYx🗇¤dÍè¼aª°è 4ñÚõkÁrº @ÿiJlS…›îŠ)ψո!BC4ŸJ‹ðW^ŒÛ“xåˆÅîÓyolf n¢HÑòB9Üõâ)¥-KS'€ó“µÕpbé'Ì…`{uîêÓ–q“XÒ–å§>>饡KÜÊÜV2…[UÁ—¸C륅Fƒï‚NîÓeêK×/à cÚ¯Þd÷×;FOë*ñ²Ø£dOl6ô1/mFãR,H-k“ù–ª‘ .0TH©  ¶Mݨ%cœÐx§ÍkÞ-´D¼2}{§²_tÛ~=½MÔ´y^js<ÇÇÑKÀ, ’O”æMä-Âëðx;YšE¹¸4e×`îÎ0N€0‚Igm69í~ã‰i.Ø©·“(±%Ï%Ä.» ¿áX|‰Ifœžh¼<–-ž‹O½õOðhžA‹è šÁ ÔPâUÄBL‚NÇ×hŒ¦´ ÕãkïäÐI ÃÉÛá3̰å16ˆi_Ø„’ Áy.-$„Ñ ¡ 4K›º7?®–.c*“ïÍMk—ròk¢¢*è›†ŠŽÙØÏS©c\:³FrÏåšzªyÍeEN½3!ˆyŠ`6žyÌvåSy˜e82Fb9Ø" ¿• ‘ ëEf÷§åìét˜n=~ç£fR+På5Þå×õUÈß§ãr‡Ù¬Â,¾ã}QñÈ*3~JgÚm‰}w€QŠšQŒ‹ôûÃ<¡\M0ŽÀ©®Cƒ=Þv¬:¼-'z%•U߂渔î9¬Íñì°dÈÍ×;îåY8½˜îü4H!ã }ÝlI€)úÚD5»‹Oe‡wâ&ùVžTêëâ]Aé>^üŽÚ†¡a à ±|8ŇÿÕOxéO$‡$&Baôäð½rŠïœƒë¦KwmòÌ’õí§?"Þ‰2U%ç0£dõ-î¿ÓílYrÊy2œàrýËè߸;©˜'6@Ù­éHßP–Çq>·cü¨Ðþ»(ü~gƒ3q÷uj”ËÚòT¡do:UÇ05bL¤é³äޤÁ “­à=0yv=Àd‘§ o tİ•àÇ â‹ÕŽ~ç‡0s¤ú4è´aóáà=‹KUËKru;¦@LRäà$Ó×kˆ§ƒ¨ðç{ÉÅpno~†l¸mJµ_ÀȽ¿ø”˜Ö?hVîw~ÓrJûxÇZ‘õ G{;Óerí1: ¯`õ„Qœ^|ºåæg¾ÑAªÜVào¨bk˜‡ñx•Ì¢#ðä\D'ç +Q“Ƴ³Ê˜wˆ%H–B6Õ”cÏ u%âþ®?þWõç 4&³4Ò[ò"Ь/¡Ð"ÙlDJç õùòöx¥g’>Z`@J0·qÏ(o°€ÂåÒä`«”eFè0h×ËÅ7á—é¤ŽÇ ’=îk ¶Ý˜DrôôJ¼—_RÚ¼ˆRûEs Úç|¦y(']åcðìY꺨„Úp}ìãÈÆeµ(q d·öŒŸ :O- {HuðüD§ZµG¯0´ûãÙMÁ%OA\^ðH[5¥:¸¿-GhrgÅ¥kì- ÿOöª `¸â:L)âûRé’ˆ><¨ûSº˜EÐå½±;ësó®i塎ÌÔ£Õì=ŸŠç³Æ iï¢øp-’ ú.[¯ Œð`Ĉ=˜{aƒúÒZQÇÅWdns™¢D5ãÍØý€jÿóÀ†Š‹v‰‚c½1ÚvÇ[²»æN§ë+ð;g|ŒÝÆÓÒÐÉ3e˜Ÿ Dùh8Ü+ é¥1µa0ÌÞÙ5‹ø¯lÈøèåÔaH¬ƒ\Ò@ÞõëªÿWóépÂål=çɦËÚþÒÕKà㊠|OèðLãæDùvvçò!ÐRÒ_ž«Zf4šO§ܘÅ4ðCÝN@ÓQ»L—¼'“iz~®Ú ðENŽ]}“I¤êü˜Æ•Q$…£õc˜-<ÿ@ƒÈö:¢tBô¼û7ŠT>Mv ëÀ7iZPŠfyc70’`ëJcùÈ./!G|!7$YLFÉ·ŒŠNVÛ>ÇÃ×xÖͬڢ}‘ ø¥lxÐù‚…¸°XŸÑb²ñ@ß=&‰ú ^óSþ Î;ø”ãÒ7üy*Gs©Úƒ¨uI›X}’üWMxÇ»OÌňÑ"œÔsH—¶OÝ^Ìôf–Øp¹5F°`ÛGÄ’³2&F !˜ÅfYÙVZ v¤•_´ïÕKÁÑ-)x8×Fýþ˜þhÓ 2*üS·Ãœþì4n Í>¸ö_òÜ%%L؆ĵ#ììqc bÙ:ƒ»ÔªH#pV6˜©œa:¬WÌy„û(ô_B\çýdŸ>±Ý;ž¾\p“Ü¥§MreþwmRL‡ñÑ㜦ÁÀEHNçç•dïZÐ"S÷«N `*è"D1ŽUjEs™3šLR33[c9ºµ ÃYÒÈ Y,õîV¶c¹+˜õHÒöTÖ”Åß"„òwy2ñÕÀTÉpç!Ø“èÏTÕì"/åõ{ʈäK$˜ÿ>Œ‰÷ª’§Š«+°S™O¦ z€¹Ã+:y,¾A;\€`M^²AâÛÛg¸oX.¢–u»úTá÷\¶U¨m…¥ú-›¶jv¼lú滥H.¥û5_Sˆ&Û±ÞþЬ’ƒiq±Ëõ ̼AW\ðèïM¦—~vÿ&‡Ëö1*ùߨG§7…ýk™ÇFäcI'd)k,}sKn:{ã÷Ê¿¯Ý™ªy¼ Ô%EÆâåû;crûM=b{fåÏÙRŠ\&¡( `IñÀÛ·öÛò£-…|]°2£L‘s¸¼¼îÚ¦úÜv¤„¹rLè 3‡ô‰”Ð÷¡*²L…˜†ñA«î>Íè±z=ƒâùð¡êZ™,Gz†üêñr.ñ‰,˜ð…zü— „N•Êh_-¶3z«}òg//(Ña^ä õÅ'Ê t{ÀôvW±;×üèOÁÿ<¿Àz¡®ð}©Cî<>¡Ò»Í6¤ú³Î÷Ǫ>R· ÏìÁªä27&÷üذ› È> 7w™ÓÜs«A¡Ô-0-`K iªÏ~†´Ï• F YêŸáƃz§îÆ1„Ù¾ƒT~¼’¤¥{a›Ã“lø'7U¾Ž¨€1P ´­ÅµºThÒ<û$@ü‡€ðBCÄÀ¬¾‹ã|£ ˜o†Zy‹‘›^¦Êÿ`N¦º¼®„)åÕœðýQ) ‚".A(S)ïÍP‚€ýDã¤T¾ä ?TeLŠåc…0£³$‘¢òuyä¨C-_E!âw ‰`èÕE”˜Y×ãìO©œz #ÐTÙ@É««Ût²œ‹Šrùbq .kMñ´PäEäùzÒÜÓ}-@í ‘)¾ÕӿЙt³@f ˜!?ÕoYY£àx,÷„htŒÚý˜LdhF¹y8KBC=¨@C`GîÔV¥úÜò¦z-.UUƒ=k¨}‡I"0 Áaæ›@ÕFßq˽¬¼õ²ö¶ê3œpqoO”M'’8cc•X¡¨wŒØp#÷1ÁŽ:ÔêíQ2°8»{ÇòS'zÝ2xv9Ãë!Ì¡TÔë!Šï \ÙæÕ·œqƒ‡ÔÁ⩱ŒÑ‹WHA]P>-ì †þv©Å½]Ü-ñTö71I ‘¤ªÊØc´ 3UÉo•„êÈU_Fôë>†ÿC”L¢dBf4¹À}  zô¡%"í_ðôàqLLXì30eŦþÌ!å% Õ· ËËš\bË×`Ãí¹êÆM|Rý޹č¨J¥‰c~é2 «û«ï.oOGãi+vœ”¡c}ÂroÅ.NgsÆ$fçÑ:.<+¬ðeÎé!›~OÇ`é´Î<›N“ »QÒ³áS:ëOìûͦ˜\6|Žá'°);Æ*^c3t.“z!ÇBÙB¨ÙÒé÷ޤî&?Ç5Û€¢(Á>D²‘gˆ‘yÀ†ñXÁí(lÑ<Þ}Ç{#cÂ?‘ŠS ài•ñȆTî0Íç˜{² ¨ ¦˜còÅ#¿P(›]ï°@q®Bùm,ó…Êo3¯`ü]\ÄG™¾ÈéC¡y`À¸ïe-ðš>`-{§üH¼ˆ ‰_s¦ÐqkX‹{D-æ_¨0Oá®.¥R$²KI+lí¡ûzÉO˜?^±‚`Ìßt˜±¥id* L7Ê5—»Oˆ…ÎÁ'\5]ÒtPú˜¬­Ï¡\rŸÉ‹&Œý*£îS_×`I‹1‰„|˜áfùPu ` ‡ë)·ùÔK^!>ü™µgÍ~¤íƒª·¨Ìcr†º7ÿÛ•Ëõ&J»¸u¸Ð.ô¼¼`þÊÔniZ°O^PäZ9DZa¯6¡Ü7NG˜oŸ\*‡ƒÚeô¥ÔÓ ÷¥wÔÙ¸[©|§œäÅôè»>}í¥²=EÒJxjÃ6Ê)(P«RF‰÷JÆXPc2‰;3§]®áx\ssNó“HÓYÀšKä¹)¤¬ç~ αd+±}ͤ’uY¤˜ÎÇhâж ÒD¿K?&@TXÛðÉ™‚Û¯Y Vã039Ó,V)à·HîoJR×Gq”ÇixØÇÝÀP*Ië²DbIL)”1ÜGëûäu׿'üþ ¿?˜üú¨^FòjêÜnð±<6VàûˆQé¥Ýk,Îˆß úœç†5q­ª†ä`…,ˆ›nš×ð¥Ä/´n€ o@ζD¤’ žÀFâïA¶¬L-I'Aû»Và5ôΤLƒ{êИÆéÂø¦Â˜J{p9ðò¢œò,õ)&CøAFäZô³úÄV2·V¿¦¨éïŸ ß<6€g$àPm¯tÈn¶ŒN¹UKèd:|ëšVjt5ÑÔîïYQfíwœ’ ‰·KNåÏ?ýú<¸ÿãçýÇ¿þôågºë¤WYúiÔz„p8MFrç›®Rklø{=q dˆ“Ì¡¨ ¨—kPÒ;’õÍ€^¯CvÇ×Ô@Ðõ yšÈ G—z€eäX®4u è{§ÓÇN±÷H$aÔâ•cÖ4¡ï·›@¶Â— ¬«×}ê3µ´¥•/Aõ1LÞèpÞ"úø¸~?Ña½ Lßß7ÁÔL[Rt àJ¤âù¿Û )~úy¾>2}}üûØW#@þd¤KXÜ+„/‚¹x?`°¾[¹Q ï‹»0Z„z½®Ž!eû.“i—Ý ì-Âmä`Ê$ªâå_†ÿýýǯŸýWù &s˜üáo?ÀÇè~þ A?üúÿýõó/8~ýáïùü·ÏÙ×Ï?üçýë—¿þúëÿþðëÿúõ_Vüoÿ‹ãþÂÿô¿à×ÅIò/^´O¢ÐK¼ÀÿL*…Ñ¿ì× ÿgÿ÷_~ýá+4ùõË—ÅÁ<{oîÿOþÂÉ6µ¯^üaÿf8†ƒÜú×Óòº^ï¿î¼Ã¿îÓ »ãµ…þÏÿEow=×üŸÿû¿îÊŸüoú'»~þóî׿|ÿ}ùò_v?|ý¼ûúù?~úå×Ï_?Ãû¯?üùóß~øúŸ¿ì¾üûð¥Ä´ûég þ¡ù@¸¾àEjàîüüëן>ÿ‚M_¾îÑßú¿È6ÿúÓŸþ°üòùóî/¿þú÷_þõøŸÿó~øGÏà_¾þÇêO_þýOõá/¿þí¯/ÿEézþ—¾þð#|ƒtøáß~øåó .BlîÏ_~üÇß>ÿü+Éðå6¾~þû—¯¿þò‡_¿†á~«"¦ç_ÿìý)ÿë?|¢éÃovì¯Ú²ßýüå×Ýçÿõw ÄO¿þõEàû?ïþºï@8þòÃÿøLÿ?üõŸwtm}÷ÿúöÛÿ÷lâÿó·Ÿ~ùå§Ÿÿã_w{|Ýð¿ÿ&?ûmcÛÓQføªÏ½>Ãüý—]þï;1êÏHh5õgtZOf0ØÇ\—¸:>ü_ÛWSÀ‚®/ûd_<êDÏŠ‡½ìÉŸ†_Ï>õrúmÃÈÄp/ñj­ÐÆqÐ34ºÇÁËæÞ¡ÆÓÄCa¿|éNW›Çü?t8ãDU³ørÛ}¡,õ†6ÙÚ Õ«Rù²¢U`é.Yìj½©·òô‘]»KùP‹\Ñ‘€;ãxÈÞP &ÏÚ£‘z­%=‚%öæ`j©š{-Šò[ ›át=¾yÒ²Šb(,€AL)¶•ÒR—¦Ã¶×Í%„°¨Oïü›t§’2ºöoè1:îñ0^îì‹§«Ÿ\ìýe0ª›"/ˆÝ®ñ¿Qèìu{.¯‘KìÿýßüÊåË__ñ³?ºLªßܲf€‚Oïh™ýþ-£˜Ú·UsÙTß<ÅƒÔæ÷üðAýwúGĆ܆© ‘r€7Î÷ÃÕ.³ƒÐ1xbH0'×x ÜÀ€)ˆ¤Ð1¤„és?aE}…1™Çý„Y3bݵ|>œá“ËBÖI9ìŨ©ü×Çê]\”}þ^Ïkiî÷¨-öö‰²ð;§Ë „(šÐV¯Òñ é¦ÁCr‹{ßÎ?Ø[ÿô×þ!fWû«ßíU þÞ?ÄOûs»*•”ð…½Ë‘ÙėÏ9¥šÒûå:ë’#bJ<‡N”Tôè üRŒ7–7,’Ùº÷qdHþó°B¿~þåó×ÿñùϯøñ$¦­tw¦A”M…[ òLàòÈâ…]Ðaw¥Ÿ‹ÂÑËÔߪW<Ãpîy  Ûð{°vc¥S÷ñc\êƒÃ¥z’› ¾§’t‰Õê¹}ÊI4µ¾îkÑö[Ò¦;ü)l4¥$Ž{‹kãTÂpX‹“Ë;Ìží#´Þ1 ΧxȶäáO`ÕÍÄ=Y°¾²vXÍT}œÝÑÈ0>èî;ЊXÐÈKäA¥„Ùf§€2q,oð‹ÇWØ} x(„×2#}üG‚ñ–Ùç‚'ûîž±#} ²¤D6Û =!½ _c!e2üÁøS̱|çáþ«sØ›X Ââ„¥°a â½Ñ¯0шƮ3ƒCúSîiÿy \ü¯_¥©rűáΖ<«Cç• gx#mxn¹Þú-fØÂäIá!™#–¢jB0¥Ü*ÛK¥¢ßÜ«sýhKx„75ñ~îz<è§¥ô²6„§Ùñ,Õô+Å\HQÆ-£ sÆ}jI•hoìÔbõpù˜"„;¼~\™&ütŠàÿ4 š0Z* ¿¾•Šþ÷: núÈòÖúcù±…„-z‚5¹¤b£Çr'¦G—lÐ7x%¢?x¼ ìò‹=f#,n›i9ÂðVÞ2¨ä%…“À´~ôtºd ðÌd 4<ž*ÌÂÖ²ÊDT0z-›\n:~b×O DØ™Æz¶°ù(uI-1Å@9¢ËNå³xn¥º’É@9 •Ë|8ÐgRGœXÉD?3ÆN  ³w#÷±­mƶ6‡#*¨mˆ¯Œs¤¬HóÁÅCsȇ8ÙÞ*ÌãÁøµ­0Ò]C<ãzo}*^Š+c½=->Æœó/ûÄó–'­wX' 9À€J|Ÿ„Võ“ï w` "ýÌյ8#†sŸ WÈælÐx <Þ‚NY÷ÿnºs‡9ðDF©Ý+qR™á}’b2§’ET=TYRebŽ=¾L&Ê ç¡0”:`ÎøIßa¶¦,/$-J<à©?â ž›¢Â±|çØ 8q§{ƒx úѵ*ÚÞàx àõ#ÂkW<ŠW”¤c´¢M ­O#ZÊPWÎhpßtœag#Âe®Î^ñN"^!-Šz(ÿ7”~•oŽâÚŸ¥v ìl²O^-êÃr@Ñ©VmÀÓ'«pXçaHÿn,ƒÐ¶Ü V7¥kÑ÷ò¼8!n&Bº·)7º¯Ùƒ¹ØõÚKåy­^vëš”í0Õ7ïæ<­€*3U ÍWƒÊë4ݹÅ&±è/üÚeâá{G“6 •‹KÄùdiš}ùXÖ *¦u&²ó¢u¦Ï*Üß6b-š.޾vHŸ˜ÊEÄö%ë»ÆI§úQCº\ ÃÉ=dó”·}` “`¡æ}š=™> t˜»LØ~4€ÔùA8²ÌÒÜ®aÃïmpÝTCÃ2úºF¬Of]Â8åÜaˆ™c`h¼Û‘’£¨HM¨pNèBw/‹ƒ¡©,¤ †QؾF¥eV© s‰wõµ;Ÿ†…ÏÙy‡ €é×µ7ôð=[Ô:TÏŒ–4 Ÿ÷BŸ_ëãñ%„Ïi6Ù…°#DùÀÈÂe¡]v„Uei`!=Yv:j/ðè¬üÚ´ƒ>ª¶¼ßÕBí‚“­W xÖì«•ƒíÀ4;‡…ÙéËɘR» ¾šô{&=tÀOH 0‡K)=1ùdþXvs'+qK¾À-spaÇJÌòL¬èc™‚Äs‹[{Š|X|}Ár@h\Œåç^ŠÞ-2ŠÍ Ή}F)š’Á´ÍöOZæzžk‘왼P{&È‚':D‚$ žÄfP0“É¥±nâ\íÌ€€ÙfÏT•“=34”ñŒ‘EhcgQìb †bŒt‘L>Ä,®ªÊ¢'Ê«3TWF¶Hæ¶Eœƒ¾,¹2ÓsÃÏ ¢\~žÄGöÌŽP&äO‚ 3¨™àÙrV¯gSöÌFès˜dÎ÷Ï:¨¤'WâiÓŠd®ŸÊ\‹i ðˆæÙòTÑôë3ÇDû<´yá2I¸„Ñ&ï{šO‘øy2»l¶"6\Œp1Âå ~ÌÁª—6½9­Èܽ"{ erGDæŠÌiiåî¥5¶^ÂâÊŸ™÷gv»Ç4Áœ?SÐè0õÏ‚®.fs׺üqŒà²cÍÃ<íp ÝÄÅ@vB>·†k˜Lf>&v$g?Ïgшt•[U!¶œ°Ù™ÛŽu:¿)ëzÎgümvMcðááŒÃɰÉ݆¥k ‹/½§lðë´Š* .a‡1ýCu9ðØÃÊóV´3µ’¬ó°öÍe|<ÑjC³q2T¸ÛP±Bvj— f°˜ÆòÌИàL-ÈI"r·D\ìôåÉ ˆgžÉŦ¼ò'/ ”]^/ìŒ Þ÷Fލ9A@ujÅ…½Þem>Nô8·Oqð½ þ,Ú+±HxWßñÉ)í<Ž$¼<2Çö±aÊ@”-*<™ Yft̃w…Øí<Ö¡qçM¶Ý ÊÐxªl'·ÔÇ÷SykO0ç‚ "V|‡>èMËÊó©›¡|ÀÚ8c…̽ȞŒðÂ*•<8—Ù%Qú½ Xâ ÜŠ*µi¡rÀ”ãæ®ÈíÃJ$¦¾òa¹g‰hBá¨2‹}{B©ü1¯õ‚UC:,̼X†S‚…æÔÉÚ+O‚Zí”Û‘aÕ•Üåîre<ÙAuahŽÕTŽF¿hõIÛ°ÝëýT úIlÔ¦{› ikÕQÞDž9vnWce<,¿v¡Y‘·ÈˆãÕÎ⊼áê+1aµµÍ’.—¼4‹ûôá# Ý@5*çU¤6Œrgn€ì2:’ÃÜ‚h˜ã¦ñü›~Cñ ûœâÞNa]ß±­…úö` ¸é8î+žÓÁ3°ûâ™éh”ʹ3~e»#Ç$#{³Rì»cNù õÕky F,àñ ›}’b+6¦ “‚»jûwÀD©ìBS­Œ3©yk&Å ä0íbEA”W·¦º±¾š1ÝUeXBpÂjÿOýî£69eeôª…°ð3ãET(vº°®Vc'o ؾÂò{ ðë¶Ýæ=ŠŒ:¨…‹CÎxr¼L¯÷$Àâè%8çñD”¥ÏéóZz!‹$öµãƒ‚Î.>°‰g¶¦Êm‹åxòò‚NX×^ÖêôöéJLÚâÀd¡˜'$ˆƒëyšþ±j“r^kÚ¦‚­„Ws–äQß³OïÓÈqÊ@I"bxªZà€Å¡0§”ug׎ß+p$X’Ài~Ý»[e–§"sÄ¡†N `f'"êDäÞ+ëN%7º0{†HQ⯰cÆnïlNÒÙcD‡Öü:uÉ*YŒ\ù—w웡|–ùç)K¥ÝsOt”C÷fÏ:Äô4®!KxQĦ<³æ0Mr”û ·ˆT³tíº¦Ä´ƒ¨Ž•çìºJñŸð'KOc-ÀaI<ï€×à×¹Á6q/0[Þ”Á¼¡*` õ•|Ÿ}&ËASOBUÏ1a¢@Drñ° GDCz¨K¹£ØŒ]:ÎÔN›_Pgûï )öÄöt#â¸Ö€#ÅRÉðkßÌBË2qª\»ß|Ö!¢„9wÍf@‚ëÐOT_¸N«÷2ì4²o8Ïô(eï®ÝùŽµÓŽCG¤a¯ ó™‡Ãažs8Yw”äL™3Ü!ºlyP68|É¢g&C¶`W‡q„#ãˆENÇnÄ¡º–x¶˜Ÿ?^ÑbñÓ qÃÎX÷ÅO·xz(Ãß%yÂb\_,¶û»‡ï­Ðê8TnΙzŒÎÙ³Äê.àM xoÊèãO_Ü^±Z"˜d(ÍXòD¸(D7qêǽ¥,˜W¼ˆI„£HÌ~]Fó´!Ÿ×ÓVÏ]ÕÀ‰èàÚHûÜ?³CË« „ÇD<ÌC Û‹'×߇f‹_•·†Â¤@™['ÛÛµy¨…” ñÒíê2Çäèú <Ï‹YØ2—y2.S ¬­¡€{b[p û´‚w²QL,˜9<­è{+0 E„êÎ3¼ÖÈ­Cä,õ©‡VúöìT—ÉEnPÊ©øÔ‰ð‰À°a¡–‹ Û²e?l]8aûæ*3.ŽôƒN3*CêQ ¯»s‡-¨§_î¿Êã±.䢻ÉÌ~#Ëæà¯Œ‰Ò2§iŽŠ4@X,€|/žhí ó€öb ºÞK!J '¥$ˆF‡3üšQ³WhÑfâÙiF ´U…X&Pˆg…ÕKW:Yd´1 ÓÒ¡ªze I_×ÍÏÕÿ¨ùï3ˆàßhÎÞPÞæ˜ÔË>é/FÞó3­MùÐè&w' œ;bgþˆ®‘·•²Ùyæ wZÒïHi W0,Œ;>¼ƒ>=ŸSH ëí÷FL}Tõ­«å¿¯%—·g?Òiw w]å¿ðßµ¬KJhwðƒtÐ2nͯÝêM´–?– «AJÍiïÀ.§ƒÍJ‰UÀþ„/`+'¼aœQÔõ +½tQ`Ùàë èä†KÑc†_§AþTÓf?Â4ê/¤³ÌÒÌÑü@X*98-xA‰°™óâîªâB<¶7xcwÛ½kwN¸=múÛ§ã+ƒØg5¯Xúìî¾ÚËW¦âÉ©œù–mÃÞ_à ¾ðkQcÜðdžr„å`ÆcA°ÀCDórÒ Q7GÔ¢ˆ9Tn Š_†^ÏßYø„l€r/üvDð'’Í ~Å"šO µyÁpô… ÆÑ«ðÙŠHÿÇR´ãîÂøHÁlaóº‡éwAe]yÒ!ªþ™9÷aô†OX¤ÑÄ‹ÄGC~ŠÞ€‘eöúGÊ™7À”?;Š8à®SæHµ€û‚B´ïa>„[Ác¹ŽwŒ•€¹x¢Ãuè^:fOWª«Í»#øá·w=ø³*8»w à¿^ŠÌ{r­UK{òÖÅÿÚ€x*›íÙžÙK!p×~­þ nRÌ7w1=¿íi Ø|Â6w,[Cf‘13¿Ý$ÆL]óv±Oâ<#^&ûÙ„Ê; ¦G æñ,' I%.›ŒóG\š[¯>ëw{¼}î/NżyE)x²H/üñ¡Ü;_çAò.Æ£àö<:|2‡‚”Pú)®ùCUoçÙš=¤…å+ggìZžÀÌùñƒÈ ö£l¤¨O¶ðǦ´ýï5 b­±×CÜ «û,³ÂL¸¬æäQ¾ÏŸÙBgïŒ[%HúÂ&¸087BšÓ¥ai(‹_ÂÇR;Ö`~ {Üî[²úgwxIÿ8Ì” ©ÌUÐ+z ã ÇL l2éaQŠ-kL :gwÌö š*·\— Œ+®C±T‰‘–PØãÂúÛ¦üq'r¢­Z?²ážêÖ:ßÝi¸Ùaq¸z„ÙÔd’=ò¹5H!?'4Þ£t½S¯íj»Ž~Ú?æ¶Ð’‰q`íá0­[^ºMÉùl›á2êA”9c šÀó§J"D—K¬¶à†?aµ˜êê…R‘¤}䢽7n¹ªGJqÙ7þ¤o*¥Æm`ûØ•÷hÛÄñ}l •a^þjfˆ™HFÄÁr˜•€LBÅ*„š€Æ{¹ššÓ+.1)Tí›çÙÞ=B-wZB™lÓõøccC&.ª&"~f—ˆ?Î{=*­8³›f–‘\”xËÃd§jéÚ À/ÛúKð¸S@çÄ‘O 8ñ ˜éqió1m"É+L`±÷‘Ü.±ú< 9H¯ñ`õ¾À¥æxÈʘHùÌd¤ÝÖ‚?Ž`Œ5p²òh˜§4XÖ]j9,“)S飤.E…Õz=1_éÞOêXÙ¶^õAe™oA—õ·6 ÁÓp9à2ko$7ö(­»€9yiM ìx£©‰o4âÏùNì‰Äfúd?I…Õå€Üé?s–£ce³ húºr¼Öís&• FÑ ‰Ü§ŸD Í>3—“ÌË[l+´´3”[“íõ®æ»X÷åGj4\¤ó^÷94X$©Ù"¹JÅ8è–§• l©Äfã­ÀŠmäM«1ƒâZ–ÚÂõ fsâ¨ã„{6céAâM†Ig¸> B…˜9•:ÂÛ ö Avbå¹éô`ÞQµ=íoB|ˆmæSì@,TÄæ¸ó'[€ä¸Zó”4_Îæ²é;Ÿ¶ëü$,yZΔ_Íñò¡f4Åyf3¢’Ôµ‚ÚT'¹4µóÌaì[à:+6AÈ"‰Ì¹Ú÷P×KÚc]'ñ€–·r æˆÑ**›QΗj|“Ëž›‰ à\vÏa¶»»W.t¯"Ìd²ðÐfA%K˜»æ7ùAh”§d¯g¹xJË–§®Àkw{ÃdhsQ’iÇKR‹<µ‡¬Æh§m.Rž.Èh{ ƒ(Hۉ±«xżáó4Fó§Uï$⮨ôT¼Ss)§ÇÊx ¹KPX­Ë¨Çeç0©¬]< %›°‚ÆãØ-øQÒÍë"|¶³ø®GÕŠhyÍMmô&_>Š­üݵ¬ëªÞªºüTz¹<SBåö¢ù¢}m+&pF‹ YA°2<,‡5ïXÝÚkï™ /^ -Çž?W¥t׿†.^8 c·’Q&|ó¦ÿc¹ l!ÀÀ@nÈßù»öT]ÀÊÇ /àG0>ÃÒZ`hÔÓSM!×ëW“îªH/ÀHŸaÙÛa?°væŠPߎ})òkÍòÓ­R½ƒ`¹±óÄ3°ø±&%ü€?±}Μ÷æÁ™WÁToÀÕ"?^Û¦o©­D¶e3σ…¶ÚZ\«K…ÇDŸ~PCœJ|Ë â…†Xwjõ…O©> óÓâÂŽ¯ͨ±ƒmÕÍkˆ*õ×U\*ª ¨ålŽX²Ð¯Ê%ü-,_à{`žcGíÍlb¸ØÎûm—áî²›nì¾»—Ÿ>a¥/°¹OÛ7ðDZ}£î q‡N7â*ôÍSõ¬¥Æðh„ÑZæÌ"¬¿‹°°ÈÓ÷º¤X Ý®Ë+Ƨ§§¬Äzùÿ»¼!JŠ pfÙKþ.Úë(¯UJo¶b‘yѵ5»èèÅ·y ‹ºŒ¨“eûR”%,³Š?vmy¡GE]]A]Ýé¼WÛ Âò4W^ª¾Ñá&ò3"Hå`S›¢6è‡j`”.¯¾>NýeŒ¨™G¨Ù5™6*t=Ô"v¡ŸàA‚ §ã‡®VXVsu)[ådó§Nã±ÙŸNåGÑ jæ@Íxó€ÔwÞ“f>‰ëå-·tu‡Í`UAøãÛŒ÷'Í4Tºué‹ñÙˆÃÝXDñ„bÒjÀ›ÆØ@,ÛyzèÜÒNµÜNAÙÄþ°lQYîh™²Eu×4`-¿*·^µG*þ8ëö(ÙY`§ôp'z›îûÀ$.½ã[øìÉ „ªímA†ÃE"„Ã[0øÇq¼øJ}K‹¯íî>¨Î 5pl¡DºÜ6ÌÓ2¯•Ÿ=oº¶;Â=kücCˆÕl.;2_zdxTXyPžK°-ÅòÀÅñÂŒ¡<³s§¿îÀ¶Bܼ鳸ÕpIÚKC ÛÃba[NÉô/eÑû6‚ŽØÊǽ#X®Xø£¼ùÏžÉÁby+'‹ øöÓ‚kµ}ÜÅ«‡rîÙG1–ñöeïDoˆª²§´ùw”¥æaáÀ”ã½}*"NeáÏ|j¾óýýªNb½«ãG±£‚·ï¥‡ßVÁÛ+¹ÿÆ"äé^»—Øüý‡úù?®?|ýOm·jVðRž=Þ§zš±çàÚQ'ªû)¨~çÞ‰-Ç­egÉÌ’ªx¦„9wc]˜û,2•³J(–¼ eÏ 7~gYNpvðÆ –åÆªsÎfÞ±('Õ‰<‹Íhµ)§`„Q²r˜4EiìXž"±©N:TÃYRXQRÖ<#” ógGYÙQb%ÈUÌnViì©ÆˆSÙNµÖŒdöZ’H8vX×%½FàÐ¥Œº´4‘½R ìÒü9u)O·tɲl•È|2y6•£”"–ÜSݹýòRPêßM A+¤×S/ ÷+Æ9¯H¥*¸Ìî3Pa)Ç]Fè–©5­lèNzá-ÇÀæåí°º•8ÌýÅŽÌ é¨Žù ;’Ç„nL° #2Q¬l‰©lè*:,üEÕnó%všJÊÍ7ôRp=OåTz)N:”μN[·T¼ +/å¤ò'j@«ß5q¿QÖk諞íÕÁ&¶Ja¬_„_LתN¶@¤å:`õb0"W±F¬êï—d0K‹QÉ¥'ÒÇ(€¥îË•±úY ½É=_R+®"W¥£¸J(N¥ù’„ h…-#´ŒÐ./A+xåB‹u´ˆ»ùîÖ‹iõ”}(•¬TÊ>¨òUƒãÞ*´JŸd,&8[(–Eu®¦o°¹5'ÜÍ%ÖæŽ Ú[jê ¼Ù}d»czi,^áŠu„3;ÿ´Ýþ+­׺|t‹¥¤»b¹ª5ÐFÍ*,Èø*‚ecÛ¨8Tc¹(aV"ºϱ Ó*E©Õ\º÷‚"☘`´ÔÁ”¥Ý˹òÍãimœšjãЭë(YÕ’]Ø.½Å$‡ð·BV„Á¢ñ ³*²^o’!Y—mxKÑŒJXªfàéâ„.î$O¥jE-Ø ,{­Æ£ëÎì"ؽ¼µTc–éíÌaÌ+$ØJ$0ÂGUülQ÷E ÌóK±‚ÃìÕ;UP ŠÁ²È´a8OxÕÇ”<¥‘i°@ÔØŠ´µ#¥²yl±£¶Â Â^§¡ÂR ZV§á¼Xs¡¦š É?dpÛW`ÀЏWÈ’“‹œnËã#{iy!“Õì}™Êg©£ZÆå´ºžÈf`” X1©¶ä9”;Gfé'ž¡¶›zãˆ3N™U%\ZÙ$BXqËL-¡ÌCæÛpb¢NJ}ˉ×̈e°—ERÈä62‘] ٹ⡮,3åBÉS9{Ζd1CùPg ‹Ãª\¦Âá«{j0©5¡ÍÀªaÉt-ɪš%haó¤-¥LÚ²—I[¼…Κ•%LGÈ¢çDTÓÀŒcÊ<™VÅ))|kn•Òš[E,KWLèX¦TÉdw––ˆ-EŒ½?2ÑÊ ÁoCItͽõÀi#inDÙÒ[€”Ö´ DÚ(;H”Ù‚À³ {¦‘ŽP®Ñ‹zB”a„±¼Kjf–„Í3””2CI&±-ͽ YYÒÈ´)+†¥¦/ÇÄVX`ZÞ RPÿå1nç†ó\>Ξ•”ÔcÅ2{ô =â•HŒ…xFÎaÑÈ™åß`cÞ s4‡àð¼#Zެ©¼JœNK2úÞ•y£Ô“gcLƒDb^Òñ®œnÔåÈXá©ðãF¯°»-ÀµL²!ÉÅAàÌ…AºÊþŠ&1•ÙŽRîäpwJGmN²vÙÎ¥¿ì˜ç: Vh {Ò‹©K,Jd·%î°$~`ö<$•˜vñÙ%lÕ”Sr…¡lM˜ ¬ˆ³ìcãlE‰ 2cÁ UjIPPì ö°ÀÒ|™aƒœ’,Z¸ /O/:^R®#žò–½Ó YºjO¶½³q‰…·Ü·Ÿ&O‘¼7¿°\“ÖËó]žž÷iº >u¥ øãæþüº¼ ÀÏÆû°Lâï’îÝ›· -éN6“w²†ˆy1Û}jbÅgX‰5.(_M\¾ÝÑ›.>3,«H÷ú«Ë*W–Ž“ûAò[oôYÄ£>ü{éÐÐ…Š¾a~ªWwÎåCTS•Âñy7š¥1UËJr—ŸÎqµåYtíëµÝuޱÁµÐX]ÞNðÅÉ1lÏ~ë°cö° ûqèj2Uh|ƒÙUÇ7örzQ½>˜xá º<ÉcÞc¶ÁˆÊ‚ œTÁ^ñò=Õ%8`“ Y¬™ Ôið‡i@”ÚÞ„+ÄŠ¬sÑz¿ÿ­´¦ÞÞPÛ³Ès8Lä©2<6½ –¸3Ü€àx0œ'Ef` S F‚y­á÷bA{GþºŸ^[üÛ:-H~ÛàY¾×·_´éj>.†—óq§#÷ò- ‚ȶ…› °‘dË8D‡-Á&ئqPù¦`#bË8°‰bË0°J÷¶Œã©Ëƒ-ãÀ"u<Ú2Ž „Ç[ÒÀaÓ8p>8Û2ŽwG¾eï%@ð-ãxà@Š-!¼M|½Á–q @¸e(D¼e$ÄaË8H6¶e R8ˆlÓXSß4l¤Ø6l¥ð¶ š)üMcÁFÂMCAQÄ›ÆB2¢8l ‰"Ý4”E¶i0°V ¾m,4/Ŧ±€ ÈŒÚõOAJñ7DE¶7 F H¼Ç°cɦ± Dºa(7نܘoÇímˆ ø¡¤È¼ý–q«dž¿e ØD¸iÔF´i ØH²eØDºe #2/Û2Žw¢n¾eBˆ-ã‘ùû-õáû›Æóá[ÆÒÁ¶Œ…ƒŸlÊ?Ý2 >ÛÄWØ«|Ë8@l¶ ¶8$¹*Øâ‘p Á„“`¶¸$™$Øâ‘plb‹CÂI0[\Ž‚!Øâ‘plb‹CÂQ0[<N‚!Üâ’p á„£`·x$VG¸Å!á$Â-. GÁnñH8 †p‹GÂQ0„[<Ž‚!Üâ‘p Ñ„#À‡K™eÑ„“hˆ¶¸$œdC´Å%áR8D[|NÒ!Úâ’pÑ„KùmñI8 ˆx‹KÂQBÄ[<N""Þâ’p)#â-> '!oqI8I‰x‹KÂQLÄ[<.åD¼Å'á$(â-. 'I‘lqI8‰Šd‹KÂIV$[\NÂ"Ùâ’p”ɤK¶8$5òW²Å#©QT$[<’š$E²Å%©‘U[<’š8lqHj‡-.IRâ°Å#©±‰-I2â°Å#©ID¶¸$5JˆÃ¤FqØâ‘Ô°>Ò-IMâ!Ýâ’Ô(Ò-IÂ!Ýâ‘Ô(Ò-I¢!Ýâ‘Ô(Ò-I[’+°UºÅ!¹"W±-ÉÛâ‘\I0°-.É™„mñH®ØÄ‡äJ‚mqI®(ØäŠMlqH®(ØäJ‚mqI®(²-ÉC¶Å#¹Âêȶ8$W Ù—䊂!Ûâ‘\Q0d[<’+ †l‹GrEÁmñH®(²-Éò-Il•oqH2äª|‹C’¡`È·ø# †|‹?’!“ä[¼‘ ›Øâ‹d$ò-ÎH†‚!ßâŠdÐßâˆd(øG$#ÁÀ·8" ¾Å ÉP0ð-^H«ƒoñA2 |‹’¡`à[\ ßâd(Ä$CÁ ¶ø ±ÅýÈ`‹ó‘¡d[œŒDƒØâ~d$Äÿ#“ÂAlñ@2’b‹’¡x(¶x ™”Å'$#QlqB2”Å'$#QlqC2)#Š-ŽHFB¢Øâˆd$%Š-žH†b¢Øâ‰d$'òýgad‹3’¡¤È÷[¼‘ EE¾ßâŽd(+òý$Ca‘ï·8$Y†[’†À‡¤aHà-I¢"÷¶x$ JŠÜÛâ’4È*Þ¤Á&¶8$ÍƒÚØâ’@lñHlb‹CÒ¼#u·x$Í;Qw‹KÒT±Å#i@@äþ¤õáoqHþ—¤AéàoñHþ¤AÙàoñH þ¤AÉàoñHØâ4(‚-IC¢!Øâ“4$‚-NI#…C°Å-iH:[Ü’ÅC°Å-i¤|¶x& ˆ`‹gÒ „¶x& ‰ˆp‹oÒHnñNáï¤!)nqOá÷¤‘r"Üâ¡4$(Â-JC’"Üâ¢4$*Â->JC²"Úâ¤4$,¢-^JƒÒ"Ú⥃E[œä®h‹‚r"Úâ¡”ˆ¶8(È%ÑïØâš|ˆ·¸&(â-~ 6°Å)AÉoñIH.Ä[\” ñeB¼ÅoqEHÄ[\”É?eA²Å AIlñAP$[<”Éÿ¿ßâ|¼/%[|7ä¥d‹óñ†b Ùâ|¼‘8lñ>Þ=[œ7lb‹ïñF¢à°ÅûxCYpØâ|¼a[|7”‡-ÎljƒÃïã åÁa‹óñ†á°Åùxƒµ‘nñ=ÞH$¤[¼7” éçã …BºÅùxC©nq>ÞP,¤[œ7” éçã ¶øo(Ò-Îlj¶Åûx#ÙÀ¶xoR8°-îÇI¶ÅûxCñÀ¶8oR>°-îÇ ¶ÅûxC Á¶8o$"ØïãMʈl‹ûñFB"Ûâ}¼‘”ȶxo(&²-ÎÇ›”Ù÷ãE¶Åûx#I‘mñ>ÞHTd[¼7’Ùïã„E¾ÅûxCi‘oq>rà°|‹ï‘#å[¼EE¾ÅýÈIRä[Y%ßâ€äØÄ$'1‘oñAr”|‹’C|‹’£Œà[¼œDßâ‡ä(!ø?$GÁ·8"9¬¾ÅÉI<ð-¾HŽÒoñErb‹3’£l[¼‘EƒØâŽä(Ä$G€-þÈØJlqHÎÈUb‹GrFÁ ¶x$g b‹KrF&)¶x$gh¢ØâœI0[\’3 †b‹GrÆ&¶8$g ÅäL‚¡Øâ’œQ0[<’3 †b‹Gr†ÕQlqHÎ(ø~‹K ±Å#9ƒ`àû-ÉßoñHÎ!¶x$çöj‹GrF€-IË`‹CÒbŠ‘ý‡¤ÁÀ½-þHKyL¼-þH‹LâmñFZlb‹/Ò>¨-΀ÄW¤Å&¶8"í;Rw‹#Ò¾u·8"-îoqCZ Üßâ…´°:ü->HK‚Áßâ„´(ü-.H‹‚Áßâ´(ü-H‹‚Áßâ´(ü-îG Áçãllñ=îÈUÁç㎂!Øâ|ÜI0[¼;2I°Åù¸c[|; †`‹÷qGÁlq>îÐD¸Å÷¸£`·8w áï㎂!Üâ|ÜQ0„[œ;¬Žp‹ïq'Ánñ>î(Â-ÎÇC¸Åù¸£`ˆ¶8w Ñç㎂!Úâ|Ü`‹ïq¶Š¶ø'äªh‹óqBÁmq>N$¢-ÞÇ ™$Úâ|œ ‰x‹ïq"Áoñ>N(â-ÎÇ ›Øâ{œP0Ä[œ †x‹÷qBÁoq>N(â-ÎÇ VG¼Å÷8‘`ˆ·x' Éçã„‚!Ùâ|œP0$[œ †d‹óqBÁlq>NÎìŽiú›³Ïy>°ÜˆöÇTy~òý¬Gv3ä)O˜”Ž#ž Y‰GX Ä`œ< ÖazX»ô >EbŠ‹µ˜¬zÈ^%D§ÃJ:‰Ê†JTˆé@”b+)eíõˆòµt²wé!û”¥øZJÙ E½D§b%¬}¢H%î­¤Ò»• Þ‘ 8VðdÒ«×ÒËÞ/êUˆÔ*âµÔ²«©#Š˜è•¬¥—CIôZ¢8½Òµô²« ©'Š”è•­¥—]QHMQdD1¾–bV¹Eº¢àD/±š^þ’Ú¢(€^Ù~¿–^vuAú°pÄ寥—]aÆ,)â ×ÒË®2Hg–qEk)fW¤5²}LôJV¯Gû4Ƅ蕮¥—aJ‰ZÙ:jÝl«ñÆOF”Ê×Qêf]‰7F¼À‰NbnV¥q{PŸRÉÛ¯£ÒÍ®2n¤1 ÒÉóWÒɺrn¸nRÊ VRÊÚ'ê–Ò˼h-ì]zÈ>ED©d-¥ì„¢^%D§t%¬}¢¥D%¶’JV5qC-‘yÑ)_I'»’¸½K.ȉNb%¬*âV&¬›ùû•t²*ˆêÀ”ò½•”²I¨Ê'ßG:ùÁZ:Ùù‰t`A:ùÑJ:YUÃ4ƒ’•t²*†é?!:VÒɪn¤ü”(ÅVRʪn¤|FtÊ×®;ëèH#ø9ÑI¬¤“áD¥b•¸mÙq\uF¨²`e„Š[§5`Œ* Vƨ¸UpÒƨ²`eŒŠÛõ—ú À(U¬ŒRqëbá´V‚„(µ2FÅ­}¢ˆN+#TÜ®¸Ô#J­ŒRq«>ंœè´2FÅ­}¢ ¢ÒÊ·êNú ÀU®ŒQq»>àR„¥Ê•Q*nÕœôU*Í•1*nÕœôAˆ1ª,\£â6áÄQ6…1Ñie„ŠÛõ—ú <VF©¸UpÒ!#:­ŒQq«>जè´2FÅ­ú€“>9QjeŒŠ[õ'}bŒ*‹Vƨ¸UpÒƨ²heŒŠ[ŒPeÑÊ·+Òƨ²heŒŠ;T‚Ô QLtZ¥â¥ µBt J­ŒRq—ZèõBĈ^+ãTÜ¡¤fˆ2¢ØÊ(·«Ò 'z­ŒQq—rèµC„qª,^§âõ õCŒQª,^¥âvA"ÆU¯ŒQq‡Š:"Æ(U¯ŒRq—’èµD½VÆ©¸CMH=ˆ^+£TÜ¡(¤¦ˆS¢ØÊ(·« ÒqFôZ£â.eÑk‹˜½VÆ©¸C]H}S”*Y¥â…!5FBQªde”Š;T†Ô E©’•Q*îPRk$¥JVF©¸CmH½‘P”*Y¥âvÅAš#¡U²2FUÛVck1¡U²2BU[WbMë0¡U²2FU[•FM:#¡U²2FUÛUF-5FBQªÃÊ(Um]95­›Ũ+cTµµOØ£E¨+#Tµ]YÔRW(JuX¥ª­ª¢&Mq ÕaeŒª¶ö‰zDªÃÊUmU5i‰Ũ+cTµ]IÔRG(JuX¥ª­*¢& q ÕaeŒª¶*ˆšôÃbTéÊUm“P5ʧ”"TéÊUmWµÔ )E©Ò•QªÚªjÒ )Ũҕ1ªÚªjÒ )Ũҕ1ªÚªjÒ )Ũҕ1ªÚªjÒ )Ũҕ1ªÚªjÒ)Ũҕ1ªÚŠˆðP„*]¡ºÚ–ÝW]Jªte„êj]tWZsŒbTleŒêjÕWÒŒbTleŒêj×W©E©ØÊ(ÕÕºX®´VŨØÊÕÕÚ'êE¨ØÊÕÕ®®R0ŠR±•Qª«U\I0ŠQ±•1ª«µOÔ#ŠP±•ª«U\I0ŠQ±•1ª«]\¥>`¥ÊVF©®V}p%}QŒ*[£ºZõÁ•ôAF1ªleŒêjNW”ME¨²•ª«]\¥>È(J•­ŒR]­úàJú £U¶2Fuµêƒ+郌bTÙÊÕÕª®¤2ŠQe+cTW«>¸’>È(F•­ŒQ]­úàJú £U¾2Fuµ"B<9E¨ò•ªÌ¶ì2\u9E¨ò•ªÌºè2Zs9E¨ò•ªÌª2Ò9ŧò•ñ©Ì®2©rŠOå+ãS™u±d´VrŠMå+cS™µOÔ#ŠKå+ãR™]dRä™ÊWF¦2«>ÈHä•â+£R™µOØ#N)¾2"•YõAFú€SDНŒHev}I}À)"ÅWF¤2«>ÈHpŠFñ•Ѩ̪2ÒœbQ|e,*³ § e§8_‡Êìú “ú€S$НŒDeV}‘>à…â+£P™Ud¤8Å ÄÊTfÕéA(±2•YõAFú@PüI¬Œ?eV}‘>}+£O™á¡È“XyÊì 4‚ È“XyÊ*AêAÑ'±2ú”9”‚Ô ‚âObeü)s©…^/ŠA‰•1¨Ì¡¤fƒ*VÆ 2»j ÝPP ªXƒÊ\Ê¡×E¢Š•‘¨Ì¡¤~((U¬ŒDevA¢ HT±2•9T„ÔE£Š•Ѩ̥$z-QPDªX‘ÊjBꉂ"RÅʈTæPRS“*VƤ2»ª ]Q`L*߯ŒIe.e!µà‰ÛÊÈTæP¤/ò=F¦òýÊÈTæP¤1 G\+cS™CeÎ,D±•ѩ̡4Hk¢×ÊøTæP¤7ò}JôZ¡ÊìŠ##LŒ¨µ2BÕØVcÃON”Z¡j¬+±aÄ ‚è´2FÕX•Fƒ:#÷0F•{+cT]e4¤1 ÒÉ[¥j¬+§¡uãaŒ ¸•”²ö‰z„ªÜ[¡jìÊ¢yÈ>%D©•QªÆª*šõê@tZ£j¬}¢1¢ÒÊUcUÍ;qANtZ£jìJ¢y—\ ˆN+£TUE4aÂUQ5VÑ ~H)eŒª±I¨å“ªÜ_¡jìÊ¡‘ºÁÇ(UR5VÕÐfðc¢ÓÊUcU éÿ@tZ£j¬j¡!­à3¢ÔÊUcU é?':­ŒQ5V•ÐFð9ÑieŒª±""<¡Êƒ•ªÆ®H#£Êƒ•1ªÆ¡¤N0N•+ãTC)H­`¤*VFª—ZèõB½VF«‡bš!8ÅVF«»j Ý0¢×ÊhUãR½v2¢ØÊ˜UãPR?œèµ2fÕØiˆcVy¸2fÕ8T„Ô!Æ­òpeܪq)‰^K„»ÊÕ±«Æ¡&¤ž1v•‡+cWCQHMÆD±•ѫƮ*HW„¢×ÊèUãR½¶S¢×ÊVãPR_„Ñke «q( ©1BNôZÅj*CêŒãXy´2ŽÕ8”†ÔF²òhe$«q¨ ©7"ŒeåÑÊXVcW¤9"ŒeåÑÊX–m1âJŒb¢ÓÊH–uÒŒ¢ÑÊ8–U_¶ˆR¢ÏÊ–]WHMeDŸ•,ë‚¡Õq¢ÐÊØ•­?ÔŒZåñʨ•]?HícÔ*WF­¬º4CŒñª<^¯²õ‡zƒ‘ª<^©²êÒqDôY§²ë© â„è³2JeÕ¤ â”è³2>eÕ¤âŒ(´26eC(ƒâœè³2*e—ÿRúÇ•JVF¥¬²Ÿ$Bñ¨de<Ê*÷Iê'‹JVÆ¢¬2Ÿ$~Bq¨deÊ*ïIÚ'ƒJVÆ ¬²ž$}Bñ§deüɆ†°Pä)Yyz³­¯7\_ Å’•q§7ëúz£õ•Pä)Yyz³Šú7’õ Ež’•‘§7»°“Òþ@±§ÃÊØÓ›u}¼Ñú8Päé°2òôfíõˆâN‡•q§7»È“2ÿ@±§ÃÊØÓ›Uè¿‘Ô?Päé°2òôfíõˆâN‡•q§7«à#É ÈÓaeäéÍ.úߤì?Pìé°2öôfþo$ýy:¬Œ<½YÅÿÉÿEžÒ•‘§7›\zC¹”RÜ)]wz³«€7©RŠ=¥+cOoV%ðFZ ¥ÈSº2òôfUo¤RŠ<¥+#OoVEðFš ¥ÈSº2òôfUo¤ RŠ<¥+#OoVeðFÚ ¥ÈSº2òôfEDx(î”®Œ;½Ùi„”"OleäéÍ¡¤N`{b+cOo¥ µ£Ø[{zs©…^/0Š>±•ѧ7‡bšQ쉭Œ=½ÙUéF‘'¶2òôæR½v`}b+£Ooõ õ£Ø[{z³+ÒŒ"OleäéÍ¡"¤Ž`{ÊVÆžÞ\J¢×EŸ²•ѧ7‡šz"£ØS¶2öôæPRSd{ÊVÆžÞ쪂tEF‘§leäéÍ¥,zm‘Qô)[}zs¨ ©/2Š=e+cOo…!5FF±§leìéÍ¡2¤ÎÈ(ö”­Œ=½9”†ÔÅžò•±§7‡Úz#§ØS¾2öôfW¤9rŠ<å+#O¹m5æ¸sŠ;å+ãN¹u%æ´sŠ=å+cO¹Uiä¤3rŠ>å+£O¹]eäRcäÊWF rëÊÉiÝäÊWF rkŸ¨GÊWF r»²È¥®È)ÅWÆ¡r«ªÈISpŠCñ•q¨ÜÚ'ì§8_‡Ê­j"'-Á)ÅWÆ¢r»’È¥Žàâ+ãQ¹UEä¤!8Å£øÊxTnU9éN)¾2"•Û$TŽò‰SDНŒHåvåKÝÀ).ÅWÆ¥r«jÈI3pŠK‰•q©ÜªrÒ ‚"Sbed*·ª…œ´‚ Ø”X›Ê­J!' (:%VF§r«JÈI#ŠO‰•ñ©ÜŠˆðP|J¬ŒOmËNP„J¬ŒP­‹îLkNPŒJ¬ŒQ­úàLú@PŒJ¬ŒQíúà,õ (•X¥:[Ë™ÖJA1ªbeŒêlíö¨ U±2Bu¶ëƒ³ÔE©Š•Qª³UœI£*VƨÎÖ>Q(BU¬ŒP­úàLú  U±2Fu¶ëƒ³ÔE©Š•Qª³UœI£*VƨÎV}p&}PPŒªX£:Û„ÓeS*¾_¡:ÛõÁ™ô`I×Ê(ÕÙªΨG„˜VƨÎV}pF}À÷£âû•1ª³UœQ¢ÔÊÕÙª΂0ˆN+cTg«>8?htŒè´2Fu¶""<9Qie„ªµ-»–!N4Z¡j­‹®eÄ¡âÞÊUkÕ-êÀ4òVƧZ»>hIpãSÜ[Ÿj­‹¥¥µâalŠ{+cS­µOÔ£˜è´2.ÕÚõAû}:¥VF¦Z«>hÔ+FtZ•j­}¢eD¥•©ÖªÚwâNtZ‘jíú }—\€)HµV}Т>à>F£¸¿2ÕZõA‹úp ¥ü•±¨Ö&œZ”M>Æ¡¸¿2ÕÚõA+õVF¢Z«>hIø¢ÓÊ(TkÕ-é?%:­ŒAµV}Ð’>ð3¢ÔÊTkÕ-éŸVÆŸZ«>hIø}âÁÊèSkE„xŒ<ñ`eäén[vw\uÆx°2ît·.º;­¹#O¸“>ˆ0òÄ£•‘§»UÜIDyâÑÊÈÓÝŠˆðDD¥•q§“mÙpÕE ÑheÜéd]t'ZsQJ4Zy:YõÁ‰ôAĈF+#O'»>8I}åD§•±§“u±œh­D‚(µ2òt²ö {c܉Ç+ãN'»>8I}cì‰Ç+cO'«>8‘>ˆ1òÄã•‘§“µOÔ#Œ;ñxeÜédÕ'ÒqBtZy:ÙõÁIêƒø@tZ{:YõÁ‰ôÄN+#O'«>8‘>ˆs¢ÔÊÈÓÉ&œN(›bAtZw:ÙõÁIꃘbOÉÊØÓɪN¤Š<%+#O'«>8‘>H(ò”¬Œ<¬úàDú ¡ÈS²2òt²êƒ郄"OÉÊÈÓɪN¤Š<%+#O'+"Àc/êí“$øm…BýýžïÆÿý·Ý§÷7èXþïýƒO¢®vï%oO»·ª¼‰ÚÕ|.ªâå_þÙÿýýǯŸýWùëí?„Éþö´ñ‡î矰Å¿þðoýüËî_¿üýòÓ/¿~øõýº¹=ü/ŽCú ÿÓÿ†Êò_¼hŸD¡—xÏ}{ÿ²ÿ§G·âÿøå×¾B“_¿|YÙ³÷æàþÿäÿe7Lí«ØÃÿƒæâ?üúù_wþÞ_÷Ñkàý×wø×}ú¯áaw¼¶ðÁÿù¿èí®g”ÿóÿ×]ùóàMÿd÷ÃÏÞýú—Ïã¿/_þãËŸw_?ÿ´÷ùëgxÿõ‡?þÛ_ÿó—Ý—¾”˜v?ý,Á?4×ø×WXÿøùׯ?}þ›*¾|Ý¢¿ô?~‘mþõ§?ÿü `ùåóçÝ_~ýõï¿üëþð?ÿçÿüðž§¿|ý?ÔŸ¾üûŸêÃ_~ýÛ__þ‹Òõü/?|ýáGøéðÿýðËgx¹£æþüåÇüíóÏ¿þðëO_~^nãëç¿ùúë/øõkþá·É à$dû^jü·Ýû_~úõóŸš¿ÿðãg”?ÂÃï¢ïwÿýÇ/@”/}ÅïÿøáƒúoþGÀ¢WZ×±|ú¥ÑÜY.àãCäþ˜šÄÿ)M"l‚­iâV½fµ`ç¾-/>¬ªŽ'v• »+«Ï(F÷>À/sÁ}çyßïÄm÷M‡Vuß$0ía¡É¿ö/. }w¸³šµUPéÔßûøù±f÷“Z¬¡ «ëêÝ$ß—º{|¼ì®@›ö$à§ÌÙ¥Gì÷k(\bÝìx™÷€vÅãG¿‘RñÙOþéO¹ä UÍ2èÂE´­¨Ç¹4×…ô;ÿ{€)Ú×¶z­Ëã©%Ðè¿ñ!¾Ðù Ñùb]d¢×Lp^ÞŽ&Î꣨k àcħ xCoÙTÖÂøîÕ}ÇËZämYÝ`öú.ýïÿfó#'Zöâä ðÙh©Ø!·êö*m‘Öš'¿±w ¦4ãˆÿðË_ W÷?÷ONûIÜ^¯å­k^öÑ-}Ì꫸•ìÖCÁ÷™XD.`ݽïîÝ-o;†³üò +^¼P_A&`ÎnŒcCÒr,ófhÒ;ìã%Èku;Vm+^íš ø©õ÷ 8/šƒ~ß‚­ªËOÕ­ŽÉÊéiš-~éŸ4ïÝí¸ã¬9Á§20l|Úümø´»‹ºÉëò ‡(îïO 2ý{ßó—¾§¯0k WHßÈE)^uh’WÙ¥ü¦#‘„·Èò3`XàW˜!Q‹¦„n‰ÀxÞI#-ð~û^½Š+éÇöT 1ü@ÃEVè»9v/Zdgc4Á^‘æçïì£ÝöÁb7àËÇð%[üòÌZvþ}=• ¸à?Œ!T~};­î@RÜGË¥¨ê+þì@$J4’ñÙw7ÙÝBD‡¥î6Wv±Â×±•Ùõ¯5¡QûÅ))ºËEÊ7 ÌÛóX,€Am=ÆU¿Œ/|üŸJ^ö_‚“]”Þï#KOÿûïùü³[šî™ýóQ3«ÒÉ”½sä¦ô5Eáb0ôlÀȇƒ8DeEæhjEJ$ËMÛ¥K°/2;Ü M‡Õ’Œó ŽkgL9om[ÎŒYqdúxb—BÚzë°.~;Ïiÿ›|‘nÒŸ®à᩽ú¦«Z…õ÷}¡éç€ì^5m] e³e ŸúwdrÝÁ`i‘-úÙf·#üÎ:’=Á9,i®B Œ{XßQPˆ$醞¹±°e,£/(á/ÕûkjÁ’ÑzÌ—„ë²Çr‚.½Öä}#ø ߇4îž„ó¶ø–q;±ˆuãîá]ã.–±ü¤cY7à žÌé€o˜ ‘Ì<™á×qŒlG*Â' ÛB>÷¸Á'Íס#ÆÈ«\]V³ü,Z„~Ÿ5Ž˜ƒ¯djüýT¶Â‚ã #è]p yÆÙCGJÔ½×åu6G€ÜÈ`Ljï.Ê,°«÷Åf zëzýÄæ³Mmñ”Ï>¯Cnù¢O®ýûtÝ:§ÐDø;ÀÞF±_©e'£ÁœÄ>±ôŠæ«c¥8˜¬ëtñ“ ù<ÃcY‡é¼ÿÍfŒÆâíç¯ûéçþú§û?~þñ×PU‰oó »êæL¾A^]¯ ¡Ä(œš]ÓVw€Dv?f:^‚DW— ŒåF\KúODPli¬äFnlêø\êó Ç!ÙŽƒÝª]+.¢dè’¤[ŒŠBÆ(¶ °DŒÀkÙÝYÓ}ó²÷›x |ö¬ÐcجL(`€ßbGßÄï`­øv ö/ŒÉŠyøº§P:Áð=ü²§(Žß<ê’݃ìÀÂòE^ÝZØCĽ‰ð=Š ì"€®¢­2qAŸ8)ØË"]·¬nçJÎø¡ðŸs±ppÔ‡ Z/†Qt]¶Ð'•Ån⛎3hÃþº9•cư½„Ú+Ú;¸Ú»ŠKÅ‘ʶq¶Ên7Æ:h1Ú$ ®ìÆàVP½ìÓ8„^§ñ*¡5#>‚S{„Ní8¢ûðA}"-zñ²ŠI­“퉕»8 ” XÆç»O†µWçSuíÚ—}±?l~[f)‰Ü±k²OœG<¸z Ï_Ç(:žnxiêãƒÄÄ-4DïíC ü®¤ÃõÁn€‡"µ»KÙ¶Ü£Õöáƒö²úâÑÑcø=¬ã<ÑžÊêŒð^Õœ¶Ÿ>|ŸÙöÔ¼8ÞÄh–ý$¼X€; ¿|°¬» [é>)¬ûáƒ|“×UÓh<íÑaø×Qü~*/åýN[–f”׃©®5ÆClŒ¯i †s>]E?Èß>(rv½u0e¹;wÝ q³-tWqW°F`‘x‡½Ý;ì׬ïð{%.ØËÖéAQu5†±Dz ¤+Eõ„DP~êæ¸ûç —¤!’5 WÊ¥Kyͺ™‹žë Õc »ÏØš 4iAú´´%N”e8kú³†µø&íÅËBXNÞX%ðYÇ3†{ߨ•7tG`Uä JA°”ç«)ÚßÂÊ5z3²ð»R¸ŒøîìÖªøï@6Ú€‰¾•–Ì?tëÚÜf'³Ùá„H¶6@Þ]à—á¶°ñø])ùÞxGRO-wG¯†µ>è/ 4›ò…1T¾ð»râs´?4Å!‡?{ÞÖå}"B_êy-ÐÒùXŠŒùkúê\•øÿO±ÇÞÞÚE,ZQÂt?ĺ.Jiþjž 3\îë ËĦ°Œ¥Q¾B?ó Ë“H±]*@#ÜðÖzOhÌÄÜ}y"Úco¢5ÂøHn‘÷"DþCZ²5k=±±á,x1Z€…ï7`AcÜ¡5h :DÉDåД°Y ëòø'_#çî »`0òÎNö±ç½—ׯÛ1vÒ¬Zh²[áŸteÖTGŠ©™ô•@ÆêÄ­å3\»¼¬ó‹ÐÚ?G‡çí‡ßÓ’éÇ DÅáô:Þ)#rA¬Ø#4²#Ã>º_X.N°X‡Ëžå†?ÏÇÆ]É9:OöÿÕŠGl)!åÏTÕw^4!o‡Nø§9“L ³fýRFÜòKÕt`&Cû±\»1oYæã\ÊÿÖ§0Áþ«övOÕî-á~ëfzQwVâT9½òœÁBÁŸ»º3{˜†ñoDdÒ±8‚­|xu…ÝXÆ>á–Ô7«…êâÛß©®>4“Òú`+”. ŸêQª6¢=2p3bÆV±Á€ÔöµÄ;A£d³¾@Ñ–K>Ë×éˆìÄÊsÓMÒmz`{^žxf:”ãÕ‹‘,€A¤oEqXµØ™5 핦)¯…؇g=Œ»^ˆº@ö]a‰²÷IžÓkÌë‡ Z™ðç96yw%9Àš‘‰Ë è>0ÐzPÈn(0–Žt ¯.J·Ë‹YŒ*þ¬R‰×ºåþ§6¾˜ÌçÕS™ÁØî#;i;¦-À?Ï-5`40:ÙûiwÂí59ÈU³kAþ€a:{——WŒ–ˆ+¶³I"Íq}ËÐ(‹¹$_G¾s \¿«ÙÄ%Ó”"%2ˆtO . Vr°õÇ Gå‘Bß,ßä‚òî~©†ŸÊ[UU´œ°¿ð‡­S®ÇÛ;ú¶@Í!£=BÞtÜLóýI…—¾ÿtýáWº:öŸýsԶݵ¸ˆow,ÏÅ­}AwûÃøõ-p—ÿgψòØ胇>ÈGݽ)a4R—ã®ZÿñFÎþ^üŸDrGK~+¨;C,ÒÒèΙÝïfêS¥  UôUÎî%ÞlOó!^ºkÅNô#í±û{/vŽob0ÉöÓ Øò†7^Ÿ6òB(­}¯iKº_ëÑýZ[kãíÚHºß/ÐUié”·eSÒA‰ ]dL¸»ùñ„r’N¯âŽñ (K—÷‰›MÇc«* ypUÇqXÕÌ݉êNd ]àt³Šç ןѦÍÌkVÞpÉS`Zî’8«> ÜQÞN1zØ…çìb—Ó¬c—”—áG4vRÄ.4òP뀦ßwûéRòNc.ì¡öÔäg<Ù|ר"]pUZZŒ4²TÎ…VÕ¡eâR½¿øž~–Û.]$æWèd—Ok<‡ÎÀa=¿öé 4àÔ ÜŒW]}¼Õ=)%¦²j"Áƒžï&‹?ÎÌÐ6ð©µOÈ~è· Œ‰ãDh @„Æ&w]½ºS!šˆÐlh‹ƒÕ‡µ£žòèԈؖ¤ìFhòŒlû^ºXæ^Úº5œYÊ‹»=n¢ïßËÖß ‰”šHmM4ƒÑÝ¡•÷›”èâu`ˆ¼‹¦—ˆ…ÆŸÚÆß ôC úÎjÞÈÛâ=²î.Ÿapö„‡pøˆRøµMÍtçýfG oîÉwR¬‘ýÔ²'Œ…„Ûf¶Œ¸Mø¢®®2‚;tZŽhÝ2¯™ì•¡Ësp=Ì¶ÆÆÉ°Ž ­Âþªb;g$1 ÍPz™m­ƒÕ‡$IUÞ§ÖÌA_P{ô[Š©¥d©%<‚–_ªüü^6˜‚û.÷ðdÀ½Ÿºå÷Ø1\î¢ÔwÞA¥Ô`P§ÔÙ0\•I†k²Óð¤æ…ÖÈñø"íˆ&²©Oe°…SL`Z´C¡K’iÑê½™fk8ç0âtÛ{c‡èæ›®<xA+JlZQm%ד‚W}ñâ{·Þ3.bŠ ÿ#‚¸µyûr‚a+›).UEýÊÖ62@dHŸ [¤1»Œþõ×Ç@ƒVm‹±Pí1â[!jjÆ¥ )£HTËÝΫùS;ñm+n F´ü@¸ÍÂZÞlkvŸÊÚŒ®¡ˆ-®!²ú¡~ø qÈ!Ÿ®iß×1¡4üºÙnâ[ڼﹶEñ/„Æ1Œ1ÑçŠÃdU¿qYű{^ñ{w0ŽÀã.ÛWóK—ÑÄà XæµkðdË…µÔú‡òÁó€R†z”änïK—¥ÍksùÀAÔƒ‡*.å(W#†…¨.\(ÄŠ11š‘N¹7mŠÚD¸EíØ ™zCzŽm…J›wMò¥‚e…–³ôi†f…â›wFË(¢ [¡-}raËK×zÅSÕm…æcsàè(H¢ZO§Òu!Ôåî*.$ЪÐ%-안â7õÑ.=¸-Mk:‰®¾<¦±¥·˜¶g’0á׊ nô}µ$°B/¬Û¡éO»Û~€zQ^ÙQ¨Ý_X­Ÿç8ú̉&’…ÅêêH†÷.@')XÖª³+4 «T—Ïšäê 5™æéaa}Rú ¢‘fg‡`œwåLg™y1®=»»6 ì-ï ëº\ÝOiº°Ù°¾«ÚèSw`[ï§&q›'MÝFˆÑ)7еR‡Õ˜Rµi^Û»)lš®–;ˆáX š†d…ðÒ q¡Z!ŠzTS·¬[!•¤ #Í¥tÒt…dêeÀ2"¾ÖÇ~Gÿë ³ÿ¦|µ£m®õ¶{zšà«}o;|±Â°ÐÝ8Ði1®¨[(i±Â˜0ú¶áh Í$Rè$£™Ù€z,‹C¢A;Æ•²ÁÐ.“ôtpó¯Æ#’ IìhÐ>ek†Ù°[óÚ€A\Øù1IdˇÃÊ¡šÝõ96| q’0Gó!›è6 Û5ÑLv"÷ãèŸÎù"ÀØ<”ÝÈVªnÖç ß˽òÈè"4Iª6)æ¦öíϨLKX¾l©ÌˆÑƵºU²Ðüä†'M=!È!?n<<$Ó jèð@јÅPõìBx#ÂëY<ã€ÕâlÐïìݶWT9D,pŠ,Ü1žÕ°`)oe‹wx3q²73|ðFÇä¡Ð©¤q VÐD,É?‡…I,)9°™Ž.ay<sOÚ ”Í$Û8bÀÒœV XúäÜ(Hÿ)²p¼þ"úz#¿ËñÄÊâ Ý~ç<”%øÈ0áo›êKO˜ð·¦GòLþ6ºôH.L‡3„öe¬æ8µ!¹U•ƒúzÒGr5GWs¤ÁÛa ï{¾Ž~ÛRA¶&4ÿÔ¬ýS3Üs~ôOÍðÈøÿ§úÒ fœkÂVüØú9‹%cÄü Ñæ'Ü[w ½é“aåÆ¿?&D½°Ùg‹¿$?<ìiŸÏ=yrj*q‘Ç¡d'ÿúÓ;ëU=y‡éq¯Ž‹c-ÀxQ5.1™W ­_|ÿ-óÄI2þ¤)пC™ÜFåþÐkÏ®¢GDi9{b§ƒ^³B`íœé(÷—¡©XÞ¡ï´FŸùñ†„7Z—r.Èã¼*^z, ÷ˆ-g$V ÷Ìt‡†o˨ÎÄžêL°'óà©OO}¹àÿª,ö8 Ѐ =”’œó3kj¬ˆiköq”N,‡ìdÕk«w…ѨÂ*1öO¿›»Ø¿~»² À˜( ~Ÿ1“uÑP6V¿Ö]f[<ôú}S •jõƒHŸaCý=g³R.ŽmÈ“Ë$ÓI(MFº_V›ßyéˆü½›"Û•b/’-n]ó‘¡ÆH÷–³[:ê!Ó„‰äcÙ°úˆ8Ë1:ûä(8”I®"±¦{Ú‰Ä"RáÂjÿ±gv;¦—ÆQÞ”`»¥d§á3|p¡ï\ØaO ûÂBú±_Hv$9»ñší*g#6")´° ~ìŘɽ.1)8Жp¶j>ÅL™ð»Bô,ˆ$„³¥®Ã‰}ª‡ôLŽ:‡õ±Êioïâjfüà­V«»LÜŽlÈE.ǃ'áq&ÔåÃB—‡™Ð ‹÷Ãíñ´3šá|Å Àò˜¸Ÿ¬÷4_aìX0tV¼Uëñ'„au™Q0 +~ZWyFxŸ­+;ÞÊŽ'?UJ?\À:0|nÇö$ÓöíSA< V°íñ.‹¤E†eXW~W8^Ç®¾vçÓÀlœåÕô7ô1¯V :üȯŒd6[#³G ÃÚž#Ç2’×,Ü2le­;ÄœæƸ …vÔŒ:êgö”uU9Pc¯£ÕrKŸ,,¦ÖÃS,ðëmèZ‹E¸”.¡3sFT«*zW˜ßÜv ¹=¬šÛ7LÑ8ÂØ-õÕd1Ûe5[«(&¶&1ÌÖˆáÃŒ­çω­I³§áŽÈŽº³cî•­@üÄÜK‚xFZ][GD=·\ÕxBV‹ƒˆh‘¬‘é6D•£‹¸FH$³5"Ù†B‘É‹¯Q(Xi‘Ïz`r09E&ïR”ÖE¶_½Æ«º|0‹e’añ9ø]a™((&»Dy8.‡ÌvßÂ>ó\[ /2Ãü–a©kÀmàW6_<.¹>Ñæ²í3ƒïŠ8잌tI¶¤KtrëkmN.êoF8W¬|eÉlYnž-M+uk'‹VL=Ã\ÊÈÊÏÖXùNŠ_fWev°Ü9´²e×òbjŽŒä~–­p°$¼!ôgq6óÕñÒ98Á÷.ÅÝ}ê,]B (Ã<"ðûŒk NaÁI\‹‰Eà÷×ÚpV6œØÏõVº„7™.߯'¾¸tÇ®—¨ãæŒ"[ûd€'$*aq *NÕtQ_Œb6ß[n«néìÀÈcOÉ:Ï—¬óŸõžšü<{ŠI9¸áwAž±Ž9‚ΆU•¨yögŒµÓ†QŸa]¡¯ç*+VàÏœ‚$y?ÁêX¢6'I™¯‘”nR^–茲2_9cõkn³6rŠƒäkâ ’ÉÞÐOK![mq  ›#_¿ÙiÁ€“£¿”/ELhhÑ÷Vå44£Û2Ô¬î!.o2õó51aí!-幞#j5âÊŠ·ª¯åÞïêÓ‚ã´àøÂ‚3{¦­¸áálÉ‘ã¯qfõ²8ç´èŠÕ®©¾è2^Þ Ùs¼=¿+œû+nG³ËPGÙ…o-èªëž“—Á×xšiå/ƵÏIkñ51¥ …¡¸¬/PwqÒ]|/`ÅÑ9p« ›“ãO}ׄ£ Fýg„{…•eÅQ¹p㤮7ñ'¦ÅÅIyñ5Êk‘—'„ÆÕÄ׫°¦¼••I…ñ5*LC20òƒŠ(/zF~ +c¼=ç Ër˜­…:'âÂ^ïå墴 ¼ÆJð ï¿Ö8„?ãm{kgѶå®lZ”ŸÜ™Òâj怆í@ýæ}¬ý?2èݽpJnݹ„¯ ­‚hUl˜u³çOì¿RZÁj†mOXcx,p…Øí•1–KWƒàwùPíXxðò|„úø~*oí VƒW'1Pܰºì©ÄÞe«Gya•J1åwÍEFÌžmÉÓ¹B E‰g µ'èðŠ,#|+âò¶.ɺ†åÖN?æ|5Áí<‘JÀ E‚ª¨HÄ"$ðkK¬èq3µÜð˜Ôo¢Ù5ÝîLWWˆþ©<úΞ\pæ9 À“óðûL–Û{8VG/ž67°Ê8NsqàØ@úìÌ›75ÐtÙ[Uâé 9¹Øµ C‘®´2~ÓŸTzCrc­É}ñ„¾ b[[=žÛƒ-´R”ß þJ5j,æéã!öýÒÙšÑFêS¥^K·eÑ”™¿c„/„íƒg¾}hÅ^ZñÂJŒOïhÌ1DàSÇžùÄ‘µcL陜”–ŒCË=Ó K@@l˜,*QÝØ­í…àtS™û²¿r†–×÷ŠæÞŸ6wÂæd±Ú¥ ì6Ú¯VÆP¬[há@í<ÍËí\ÛãZÀk×ûxEðÊEœj$Ðm„ÓW$cLì?sûëðš#{ V X ÝÔd‹åpe©¸éƒ³ÀâÃØbB-.œôþ±Wæ–±‚‚¨o»û{eiØñ öç5‚¦QÁïohÞôQd¬Gh—'g°}N;Ba}`Þ1M æ¿bÄŠxûóy²³!asHWzG}¦ZÁ‡Á='–Ñ—v|PPuÃ6FLpx&›âïuáFXh:}cÖéM^u·¼¼È/lfµµâF&®÷Þ¤"¬ˆsµ¡¡á¬;´­î`4w˜5{`É”ŠR§k\ŸWpNgךe‹5°‰ÍD˜£)_¼ÄCQ‘xkâ´ìÈ.ÕÑPÁ–§ R I°-ÌJw«Lû×òÑRª $Zs\©;•Ü@:{†(B™¬#@ÆnïlNÙcDœ=õ+Ç0Ùé*fÆQ’ájJž\ž!‘:ƒÇÀ­ù¬#œ¨’¥ƒƒw:ƒ¯„)Ãnˆè4­q´Úº¶ã8âžôé=WÐòoì£aþÊ#0þBšþÌZÑÞ9þ~3` ÖK³vÄ 9`59gÖwÒhä4ÕOq…ö&Þɶ½Á;”»«¦l±F­¬8¬nz’övx «twíjÍäÔÌ »Ü†ê.Íÿñ•i€§±jdÅý3&0"Ðs7•£kM‰ÕBa¾ܰ÷Æp—~Ÿ@xå–¸¡ù¬ˆS­²ÿ/{ÿºÜHŽ$ ¢ó÷è)hSf³5f-5¼WÏ×v‚q#E2X 2•Ê´2SbJ¬”D5%UUŽÚ?ûß“wÇ%€ Tfeí®Mv)F¸;àp8îUNM¢ý%ô2EÖ¿Ý"Š5nš—ÐWe’+¬$-Àgµ10€/DÛ‹"ÇGÒ]"]cU4‘˜XHŸ#i·]Cô·‰sTÀY̓|¡)Òqn®œt@ÆúýÚf0m Ï}ÕéÔn—F-»?. RªÝ²*J] 4:àî(,ŠI´ÌmË€íáhÕð—Øl¬s»»òd…äúD®ÆÉ—^™1& /–€CÒ}É«Ô:†íãø1%жp9Š–Q•¹ˆtó ˆåºÕë62+t¸²¼óIáá/|ÖëV:•e`ïĵ­Ö6:R-a@4ø¬ã[e¡3un¯1ÌÝ9S ²5êQ}ë¸>Z]D•ÎÒ/Ééƒêª² 4¤*×8íµ ÆQRYéãQ«ö,Ó ¾Y…Qzœ&šdãld’3rjí“›i»ïWN—®º+Æ|8óh1Íw¾è­]õ>ƒ©Ùb‘Z,LQµü:û‹C›%õÞüBú³R!]VHÏ5ÿÍ´"[!)ñ¸’xÇ@\¿·˜¿Õ¦j«’}¾ú®@qK⤱HÇÀsãèŽü1|5¾^úY†=öÊi2Ìcè¯D]ÂY€œKÜ(Û—ˆðCªU»º¹=c­Y-Åå_«ÕéÁŽuÌ(ÛÒ"Ac;#4-6÷Zî¹—á]@C˜ˆ“í2ûZµgŸFAéZ6OZ#«“÷k9B£ i¶Ðv…_Qe«‡FÂ+#ݔȖ“2U7¸8ÛZA9;Nm …ø¯DÎU¡‡9®ÀóHóú¢çÑy |Y¹&¥á8}sV–†¥§Ôš…à«]=dW&ª$ =ò³‡/«v™ûN ¤FªÄ‚v9{•E2Å9áµËyÍÜ w0Ð<¢»Æ‡Buv§®ÖRn¾*˽°î°:¯BÿÜ ŒˆHðx‘{i•4JãÉð‚ ©¨Íˆ[—B!}4VÚ4Úl!k7ótáÏ–cGŒ“L›qí¦ÇÊrbH~6¥=Îkƒpà—uãR¤[`½á1ò½Ýq©Ör#a À(´¨f«*|ð VÆŠ©×pŸÑw*IJQd,Àg1ÂÖMPaŠ k LcÀ Ѽ$ … -LsEuëÕFöM*™‹w:[ímJÚ#«õ@†N[MVÇËäÔŸ¢¼[_²2bŒVÓ”›ç¶•Ϊ¢ ½ANåWzrÛè¡“Ðé~-6È6zƒjw*ÚŽCM©È”3?#[”°ÂBר1ÐËEáe.ˆ:mÒj;m«}CŒ˜Yt^’BÅg4>:lgܱË6áLRD_•)×;’øŽUâ FÑSÅQl3ŠÎm6¡—Uîü±²¤v:uGYŽ®tÛëvÜ{Ýe²¯–¥Þ0£8bj[=5PdÍ.çy¶œ!¥†}QϹû*¡çýÛ«­€+…/ #ÙðC ~9ÛµíÔö¬äZˆøu g ¾Ò¿.÷º6jŸv6=ß¹³)áÓ±xñ¶2ö’¨g ¹2ФQÒoÕm§?N«.H¥º¦‚Ò‚Qª»­¯ª&î£Û;D’®i×Su"’ºi¶ôˆQôEç²PDOÊINõ½Þ! ,(}f~î{Õ"ÉPJ™\|6=B³) éÛΦ§‹’VzHƒxÀ¬l»¦-Lž%ü• Yœë%fS5çü|®³{æðUmÞíaæÛ·QÖðÏV‹RkË«ˆè÷}ç^ßF?±ÒO‰þˆÑwž{ªD Û£Ò+Ý4t tÉb…ŒdEêîa ¨›‡!Ùd†aµù7iP÷ÄœºÍòŠÆæSâ—ó”ÛBee¥¯©|CŒW_ÕGEžµœÈZŽÏÚ0úÕ‹½©N¿8_"—ñYîïÌäË̾ª¤%Ÿ~ïÏü‘ÿ½Ù~^ù‹bØËkÝå³Ý¾oŸ¢ŸKäÊ:²D‘N~»î¾ÐL*g¼Ï&ºß®>.2Õ;˜¬0<×1shT®\Õƒ|KÅwY'u«‹ñAz‘NGňA†§)u~·Ïè:壂o&LÊ™‰ñ«zžµ„•XuúÛÂXÐ\ö‡UL¡|Ê‚ clAk9ÍK)Ÿa]ëF!6W÷8p4ö“³lU<2Cl¤»l¬ìÿb¦W$MÏ¥…а"ª÷„=K‘ZD‘‡AíÝL†ÂÅ!)|_µ8|ð(âô"G†Ðg3Üòò=âוV:ŒÊ`TmªéWTv¡T¶4Fu­5 `ÌUûÜ)Ì,ì¡ËO#"[we2H‰@—ÕËé¦'ù¦«QÚc]… Û$>CÇÂØ{>Pž6NÓ™Á a{©žŒ†íº¦D+¹ˆÈ¬ÊN3½ÊIE•S*ƒ6¡Ýª-„´½ŒU±ŒÂÜ •k ‡°CéE¢R÷Ì\§²ðϘ ÙbªwT”•oö}‡€õ%í#Ã!‰êpè>¶ÑaÉ'm5H¨6+¤ú|´ª–†ÒVk‰ë AãjtŠÒ?ÖÝYèä£(Š©ÍQì<-™bÊr,äòÓ‘í2²N*ÈHçUÌüb·À™nöe“v^Ÿï1âNŸñ"¡¤L[¦1óRˆÝ^ E*‘¡Ò8{âÚæÑE1=,P¡^ËVêœ,Ç*†==GeO<Ã;Mµú>+¦Ú&Ý.cf] cL÷˜Ó"|UïsŠí+,Å5JÃ!Ý‹;uÍÓÄçÊuNí×q‚Ñ0XN/¦=R/T$èbXrIÌÏæ féÄøÿôT ÄDtXíÄÙáD)4¥ìáôèÆÕ‹ã&‹¦P¼ 5ó§x»3Ÿj‹È™Sü⬜ÜP³1ú»‚a]Ÿ±p5Ÿ¤þ¬¦«Ñ$âã1j’Dƒ/ç$wr:øÂs©\ y¿Ro…”Þ“·Ñ2¢T`«ÊNð¡å(ð}4¼ñ«ËG‹ØQv3uf㥣¸ mXE…/ç‚VIÌÁOÛ#l`Q=Vâ÷z %¦Õ%ƘùJÔØ†àZD’ÑLžÅ*Ëv¬Dø€B†µ•B?Ä$CtÓ䨷hC·:6N‘T<4¦]ÆI¥òý{,ªËŠê9‹šExhò6rFo©H…÷Yáƒú…»\ðýÑÑåîy}׸Ú]o»íÃóÓO àx_ý¯ÿµIòä\ov7ûõã-µc²ã/’0ÂS†ù/ÿLÒLÈAÄïÛñgwüÙj:"²H݃µ>‡Vt<6û³Ó÷ãt…¸ÑøŸî]éOa´G@m.ðéÛI¶ $—ÑÌ@r9NË‹£våt'ñJlúÐëQ¦¼9k¬f,4ló1Ã6¿CšG†ql%ï5‡vú Ýü‰ÅCˆ}‘)¡L¿Ýë1ê 6æ0ôF HŸ …#Q äb¿O%…ÆÅ’ZMWID¢"⪯Ùìõ’/é„RÎèË‚E2_‚,L"Ðlúlõôã¾¥S[”ÔÅj©”ÏËÏ‘†gdƒ°ka×H²ØHγåq Lõ•©¢Ž‰(”Ĩ= ÂæÀÑã‹FQÓ\@¿Óo[ `Ø–—Hó>c* êZ8Ô«àC¶½’G^L³Ë‹}[t;^µ€á$ªA€<.nØnµ;¾e8 ÛC«Ô¯¯Dó>Qi{mß6#ZË Ã¶¼Dš6u¡Ùëôû¯SšÍ®v+>Ü®¯ö[®ö|º'hP«i<‰Þ5ü Ùh½¦ jÄðNŒ<Ž€ÇNð©,ÒÀŽ:NX?X-•ÊŒú6Œ¹P’¦IÂÎ.L Þ]ù6씾ÑÃIÕô‚Vxrœ;ÝÑž\ÛŒ™£œúB&;¤KÔ³e:‡2ÊèZ*D;í©I/þb‘žaï[.*LÏgù{,Ó·z¡µ^¹ŒÒP)3ö'qc¹Hp¥šP~£ v¢GI;=‘ô²Ø"º ]* @íš, Œð‚‚X•i–ÉÞ§ UðÙ17Œ¥d3vЩ?úeò쥭«¢.•6²uU¿\Zôn¹ðÇÐ,nñåR10Z#Œæþb)båðܳ^؆+5†wÚÛ4 € "‡6ä|æñ*Yˆ"7‘U¤XKçfžfËE:GHsÆz±u@ø6IÏ Ã¸Ì6„ɧÂQ“n©5Û¨\OúCm«¯5u‹¿šŸû‹0cD¹%«I½Ù©èФ q:Ù(–5/@- s€¥`òÈvϳ•ÒSKáœáhU‰óçT†©)}«Œ•zºˆ¢3¹×Bã âumxÊBxP &?)`û5K½˜§§tÎtÍ@`ÞÔöÀ*é"´I3¼°…?Ðäz±LÎ|öø¨ÙÁìjðiíÁ®1êé2YNRcÄÓyz¶€ ÛºÝ¡³mþ›ƒ¬M²\Ž 6Ī]ß «¥Gµac·&Q²Âéç>ìäžíîŠ(%z^‰ÞdÀXRc¡s¦Ñ2Âʬk¹9äΑAµ)°Žkï-'h]j‘±§HÐ:†‹õ «ðj>'Ѩ=¼³Øìu­u™Ì£©Äþrì/1°ÀîrŸH *šÃ1ä­ò­7ü13U§é¬q:^Íf jÀ. iFM7M®aà’²HW³¨£Í&¯eþ~5g’fK±J“}JêRy=˘-•wN®»ê“‹hŒt|¢ØêÝ–t¢éty¶Ò“ìÆUUÒM¡zãšL!Ç:jöÑ’ÙìwüŠÑœÁ õa~Bçå…cþ–ßEtõîc¤ýfdá7KÐ;öýRð¡,Ã4þ棠á@ê‹|Ûå–Ãj3;K¡Â®MI]¶ãÚk.·a”Šõ w¨ƒì“„4rõ"_vudsáÅQsЬäƒÖ°b¬e>ŒQ2SÐXMtÕ£S£Â›Ð?2`è`HD‡†E¾8¯”zž.`yœ¿Y½—#„!‹ƒ„ŒØŸP@PGÊ*Äþ"KØ(àáQsZ'ýÐT9I@V æÏiĆ*õS2Ë`gÇ ÓbàEüæ ¶©!^Î ž½†„ƒHwÃ_±g,(:Ê­aÛª ægYyŒb:Л­Î0-÷°cÕ­¨oAœ".ž1§AÖ*.ÌRÐÏÙqbè/qYR^ë{·a¿e«—ìÑb½˜x˜û›1HeäfÌÓ¯L \ Ü\ÑðKü=qºZLWgc½D¿F?舲Èm<]½ññdW/²F#uDYdŒº¨oRÚ¥`×1)õá1N *\†zÐÎÓc>]¨£æ¨SÓE"¢¸ñæjpTÁmu­ª¬ ¨áFsTƒ<Ò—Z^P£qËh²:]i­ j´NE“ÅÕ-g>¨¡ÎÍ Fë4 ¬ ‚}ÔDø`°\Ìø„D“ ùžpëFLŠH\©ˆ,“Q„ʆêË$=¥ACÕ:>_¬B¨Þô¶eaŠ•l¼:…M`ÜvO|A‹éè§~Ö½GßžÙEÒxVÁ¸m59:‰d§é¢±Xú¬2V…ÆLg™ùãùx±BÜ9×6IgyÙ“ã.0G]6޲œYÌ9I<š´ÛÅëRß.ÐäiÌ|¿*½@•Å™4C©zDÖºñ.Vu$ŒE…ª’•LðNÏ2\É»ìb:J'0NBP¨NCLuӬхZ k\Õ¸SS³=¤p±–-ˆ–=]A…\æ>%«lR²ÊfÏÄò«-i„AäŸó@ß ÆJ¦z#ÌYâC·ö¨â=“%@¸ku<ðrÌÿs5®¸š‹¼ ¬[J_.ñÛæ~wwãIßK•-«Îön0—º”ÈXÒ¼—ÞA{É>ŸU:Y"k±`O£i2crן…e÷Ë““j$æ×o¹m."ý»ºô¢]è^™çþtÎÓÇÛ˨"7|5ÀÑÞ-ÛsÚà+Ù§«†Z¦hîQž|º;H³µÖÐrTØýPŒLÝLÙ«Û¦1!ú'gfu9)OIü”§™Œé[íÇuJ/¨™Y3ÿ,ż¸}Ê[Û·®Ûƒbö_1"õ§ —D³ãÉ*¹Žóûn› ’:XÚQóeJv^ÜíR)æ€o5U¶:eówh:¨Êæ(–°¼E™Ì;²ëMþØL@†SöÑž Ÿ–þ¤±¥d;C ¯¤“dlËCÕª.ÉNÔ-rkT1ä&UKùºˆªx­QÇ=w$ªF§ôx=ô õ«ìZo ³†t-¶Æ*­‰NÑnâ<åÙ(íú¨¼qXÌø9õý³Ûú#+îƒWˆ¦QäV#XB>#¦s˜ƒ£˜2‚-BÄ3,ÌJš‚Ê+’búMx2Ãþ è AЮҋ 9údî?e×Ö úè8ô ³† a‘EŽ“³º¡±\®ÂÐÙ"úcL›„8û» „ÔÛ(äë%Î~\MÑ);8‡A~†nõAض1VË3<Ö”dœßúaRžD›!œn·*˜þ›Õ‚ýž&!¶ºä'K½b‹ä”ý:ó³ñ4Y$dFó>ð\a@á‘Õ"%‡¡B׆Å[Ÿ=±ô¨5Ö£‚¾Ö~{¥Øí,wdXc¶A¬,ƽ2)¤–Éâ‡%=ˆÝÒEi®ˆ—G@¶ëÐWå2A•8c“.ˆiÀÆU»>­ëĩ֣ò”SŸ¶BŠ!ö š9¹9ôÚÇîÈ닃Ãl5â.yšW6Ì( À±ý‹ü(ÔPþèÔrL]ôï“Ó÷þ©XŽBº‘Úìl…µd5‡Îl'ÊÊ‘3Y¨ÕósQ`9]MµÅeúçYˆg²Æ·ËÕÙ9Ì&˜ÕÌÚï· §ýäå™VÆ1ÓÜi¦\$ pò˜ƒ›pÅ:ΖÑTzºAÁ­>l˜¹ŒÃrÁ8=Õã³ã—ô¬ˆÞŒî#->`ó)þšu&•ÿØÁ%Êl倾Jœ¬Cq«K©ÕK±Ëθ@ shõQd­9y]ªÊb´þ¼ò'g}T¼àÓ xÙÇ4ׯLÝDûú™‰1LWÂ8x«ED™/M÷Þªœ°y ›4ûÏ}ˆeÈ÷,o…æ„jø •Ó“ªê"Ê•l›™ä¬X$ò³ê09M–Ü-ÇÀjûj»/Ì!<¢ÂVù×V’³­Ö$WJþ`®¢O.|þ©ZMr&ñÙ‘Ûy‚y‚­›·b‚`Á¨áÈŽ"˜¬§í ¢6Äx| ØÝ¨UJú‹{ê³tVÊ÷ZÓú˽öí&ƒ×¤Öt—í̩鮃)™f=Óå™TäÓÎqy·°Œ9[E”…3°ï’íÅ.Ç)¢z¯(7£äË~ì(zâ@>8G]ko—ý É– ;¹ÄÐ3¤ƒ:ÁÈd~gòÓàØÎ݉"ÓÒÉÞ­XaÌ4EÝcÔs{:™iq¢s¤Þ†£žÕWÝ ë© ¸½4\^ í%¾ÃDö±oLÈ9Ý$¹ˆµÆŠêÏW3†[ÌúhÄu§{Œ#Tâȸ— ‘®ùXËMºé•MòV¼ºâ¸í¾¯&“ó$„Î/«±¶ÃM@»¡Ç}ûì«Épkjøq<„…>­ÃŸvaEª¦ŠʲE]²ua1°ß#jáÅ×Xá[áhîKN+ÐÂL¤^ìSŽ0øêZªæ)( JÖÛ%#6ái®c tFÚgÑÓJ6«ŽIW%2á{Ô2p×l+è-+ˆK^Cƒ/¿¶>®·ëÂVZÆJ V‹ ¦ ¥{ðU*'×g @ш›)НÔãw¿»ºVÍ<Ê-ýM?bIQ£^…‹Ò, Æ~„Ž$#”ùI¾«5«„U )^3|µ‹7Wh¹IÙ¡½–ÌÊyK™‰ ªÐW¼˜!ÕhoùªÔ¨ÈÂáüª†’U äƒyU©n½ÐêTN¨zržå¡nf ¾O’÷êt3"Ã|ÅÖ1¥9ñâ&‹Œ¯K¿à½._2÷âV3îPà¸[šˆÒ›¥§aâÏ´CÈ¥ðÛ-¿d›%9*È¿¿J"Eöf ]]œŽW‹B|ôß/ÏS„‘œ­f§çš!"I)Ÿ œòRÍÉšg4Í)Œ(þi³,X”Ø_j¾Qæ£>ãZ˜£ë„òHvì¶ žÙ‘Sá?§¾qAñ¹Zý¶«=S˜ °‡)–XaIÜÈÛß (Ü^+¬ƒSC¤ó¬ŠdFá›v63xÌW¯ÝuUHM{'ë㵃@Åí÷¢!Ë"WÑz~;ÞÂSY6‹#Ün[ø¢ö(œ˜PZ7Q¿v't±£ÿMÔ£×cùÀ,õèî ó6^›%ï|ŸeÈë[Æl×D>3c}7gY©l9ßo™2N‰¦ÖÓœ‚‹¹á¥é”±œJè:æå•RÐ…ÞaÈ%÷# a›Òùα܊ùdÅÆMÄrì±Ô‹ÆaXH–5ÊÓX+„8“¥„TΖª™¨8s;n‘c‰¹Ð <–#©¤f(Ž•Z#&-µ‡‚X—%\êÆå¯œ»GÓ b=·Ž¦fráLè¬L0æO‘h}Wa š¨bß¹°(QszâiZòä‚/»xÔÒ>0)DñöSŽ•²$—ZÄv -‡ƒ`Õ°ã\K¥Ê»·T†8þ¼`_Ë!kD¶¤:Î^.Sàq¦Ù|è—!Í´À=’KQ¼yC·$0Dì;ªØ¢-–â «C¤YÖièäb!L®ÀŒµ<ºf=DFa•ó%vó€°Ôµ"îúµpTvµ;”ã´ÝéÙõ¡ëotz;~ïÁ‚~:¹˜ó½n­Dƒ‡fÇ9¨îþbyrR…bˆ:I9xèrœN@À`TPŸ…Éôc»ò0‚½è»þXQ#”ƒ*ÛëcyLb’¢Â—e ÐtâóqckŒpÇlÉfþ¼1OÞ¿‡×ËÃÕ¶Yx㲕ŽyJVy·0û™Á¼]€È– ÖÑô¼R} p޾ì Ñì"ñÏ"ô¿_Áh_E|Ý¡ù =_õäÈóÝætÉïŒ,’Lª"j„N¤ðe12BOœû³`Ìךåj~r¢>85cõv1¯~Yèxä•M“›_ú ìüAK#Ð[6|Ù™5E¯cX`Ï@kOT·?ÐuE³ z«jŠ]—Î2 3Œª'|YŠD;+Å)sóoºÛÉ {\Ú»©£h? `¨åXç‚(Sô,qóZýÁk£æéñã¢?ž7×›}Ã>Î ›j$5ÜêAS V;ŽZO?,–…ÿD yE â»P(*>ñ’4”âëAUwe1 ÐR~†¡FnõÒ6f!< ÷îMˆÆk÷Q§gÁ“Í*ß¡¾ð§éÞWvââídâÊQkд10xƒc‚›‚Y²X®©Óv‘#Ie3Äè,èB#ÏA@;òm£1o¨v ½#XCYº¬j殓àÝ[OÊòä-‘E4ñ} ½iëC‰¢ºó&ÐXE´›mŠ+ÝîšÑq«#}ÿHµ[DóvìàØúŠÇ£³÷vs’'md)ßÄQ·^¿““¢cm©þq€´cí¶ÉI×tž®h¯æ¢üfËÉé‹}à&>z5Ÿ¯Žü^3p¡¼õœ\v£VìÂÕ|°P%=‹æè‡åœa©ì¤èã5ÌÁ€šI‚n]~ß)öläøuÙ"AýÚ¦mR‘Ëל2ŠþF°}ôý¸cFš¯Šä*ŽËe¢ * Œ %— S%öØ@ç‚óbðê®VÙj-ø÷Ê¥B›W±âi²©aU‡É¾7_h çÆ%ÝhĵÊ×FM~úÖwT@=Dãë\ /j[Ê«ˆvH%)´SSi‡’˜ ®8#é=v00­}t‚Éý…á‹ÛDÛ«6Ù^Žv Ók©E½QÇ#«U§mšeŠ—Ò¬1[¬ü‚ÕŠ©Õ#\0)J=3äD-a‚½°D° êi„l¬Ï—ÒPzÕÑa7°MQh«ŽeÓC­zwÿ·î‹LòžoM*{Å´Ñ7E¬ƒ÷f…¾;|­:¯ß#f)@&»ß7û«õÓF1V¯‹‚8¦$©É,¤Ýñ7u©Lý,XM,dxøèÑÀJ¦ÚåÊêØu!µÐÔ6Ú ¯Æ4®¥Z´l+[nwºÕ½`¸Wd!ÛwugUÚVá–Tz‰ÕQº8¥æë*\O5Óù—TûƒWVWÚo"X·Ã!YØDbKmÛ†ÐÍš+²?™­¢¯©oA+j¬ê,ÖþiÅß†Ö harKOÞȳ°8¾¹W|ŒUñ~yäQrø´2Óãk2Ÿ1éG•štÇòBz¶y´]xhh+DfGÒ-Sñöý‘àM>O†#¨L•Lyc0/òYð¶t;ïé÷Ú;z}]??`V­ðþFŒ€O‡ø¬˜ú?—nvÂWßï*܆°•ùç܉8€ÿ…›äÚý5”ro¢ÕVÜÄèWnD·²ºÊIÜ"ˆþ\Wñƒµ—ÃÆ '¶ÅñO<—0k¢íVëuª¨×ê‘LïiócõøX–éi^)ÇG=”ã•°EŽ—“Û¹êKúSòKúNi«Ëþ“³zÍ×¹8Ä%>E˜ŠÙîáêv½__=C‹(ârŽE@“`Ô‡ŒúðÕÔ‡FêCFÝgÔýWS÷Ô}F}Ĩ^M}d¤>bÔF=x5õÀH=`ÔCF=|5õÐH=dÔ#F=z5õÈH=bÔã\¿ŽzlÀ(›\ãwü Ü4‹à&£o^èz½Wšù†z G¶dŸb‚¾Íýæ’%UÏTÇ_ËJdÂþ«Èø+휢9jVvÈ]¨Ì¨{Xe‘RUä ¿ÅU¨Ê|aDŠU Ö¹‚Š-¯T&IŒ÷µdV+$ƒØƒ`Pƒ sB,‘AÃcŸ*éõÑë©§Fâi ÄCÌÕ„½‰k!~ÅC "¡öRxàØÍãëMxàøÍ Nlx”DÜ~µBÑÄ?ž³,ŽaøÕäN¡¦³ÕYBW| ñŒkÌŽ:±d,qŽGíÃj##²*Í[Fኢ°¶G_MkA~¾B3üjš6–¢4»ð·5f„‰è*9E%P­ ×t˜T5pljõx±5jëˆë5›†#‰2ÅàÁŒ æ;DŽùU‹b\=gÅ^c¯RÈÉÊbx¡—’R° bð …?-Eñf±{0oë·Ýk¡éfp[»<æ¤!<tq_¼‰[›L¡.ÝþkˆV  3B§p‘³Ø²Àû&Ä¢ˆˆÔcöš%D¬O·Xƒ¡{¾¶K7ZU­¢x™µÌQíÒðõ6^ â–j±w:£ƒÆ »eŸ¢Ç‹P#…K±JúÅÕ Aùë°}s´Û…ÚèWK"U¸fªßù«¡yïÿnK9˜o{s*lõØŽ^¯VéöëËhZu»b¾ˆ‚ñi”ù¶t!¦ºèo{9&j61Ä|õc—rðaˆé§üSʨ‡vÊÑ„Ol¦éÞ+MÓ/¡“0»mÖû/—éãf¿~Þí¹¥ºBu!#v@ŒÈ=¼Y°²TÜþs#°¬ €Á®BU:T¡ÐU¡­f a*P”²N…l#^¤SîÀL­9j·"mËRÁ,üW§¨ÑÿDXKǶ_ݯ±±Wu¹ÿ˯]`¬ÕÃûXAfÝmnµ÷êFó…¼Ñ«¯h2¬GÉût†GC‹(žDÔQuÚ»H™døÆÍ‹0ø™ ¹;Áb}½½ÚêÉâ›3Øé…$ˆ˜>õ™?2èBäEbhÈ †:™`LžÚ£ã,™Î'x˜â þrï›$H®ê¯E·ag§ïI…T ÏâÉji=òõ^é}Øî`Õ:Ògjõ°ý´Ý\_&×›Ý Ê_æ9ø¡×z¬í«k›ìécFÃü)u"ʱg+Äkí¥0"æwHú(ö›¸_ò›Õ¥ðø=@–¡9 ÅQ2I– 5FÈåµ40kyø¯šZ«…ÔÚXûVç«k„,/þVµG^xߊòÂ#^x_Ï ÏÉ yáõ©¼¡«¼¶³¼¾³¼!ÚBH ø½0®š¯ï5mó±¼DÒG ¢îúíae9­nÇZ £ay‰”à³CÅ Zaåôö¬“›“°½ÂPÊuD/ˆüVU)Ý~¯¢¢ay‰”1[ňV’QÔ¬*¦ßé·­Å0–—Hš)—QÔ­äY¯‚gŒ„í%Æ›oØyíV›Ýbµ€a{h•îUãŒ(ƒî×FW˜¶×ö«Çs«ba4,/‘²eéö{ƒW*øÍvÇ`f7ŸÖ/wÏ—ÉÍÃn¿þx·ÑÜPÉh5d<˜.¦ê5 «†ÙD£$èY„7!bÚ˜Jcå›ÕìT}qÔêðzCÔ=´,2&ÿcûñd6Ž0å[ÃÿY$,¾@×çžÁzï(.Lû¯ýæi³ÿms}Œtþ C§g8R¨Ã*üÇYÂòü5´„]´Hg| ˆ¬sy{‘ž5«ÿÄ­o³lF9œD‡‘óh'ÝŠ"÷¡Ýü¥@ÎÓªK$©€ÛªÇð¡å  šÅÈ%Š¡â h÷š…&´âb ûí~ÿµGûäk˜wa¸yÜo®ÖϲÎÿnò×ÇäsAb¸ö‹†?OÑ­$ÉQ³×oÛ)ŠËoÒ >Ø„2çÐsÿí âé{Ÿo$›q¿o%WÊ=¬ØæÞ¦°ñ€" ¤aod“ H*ÏÀú~Ç@CÊ?&xÔÔtŒÚϹT2½$Éäãåᾪ‘§s%4[,µŒ®ÍN£å]lÏý9K3K§t!ŠGÉûó(;òÚž½åó'ѽ˜I†‚¸“ ŒN›F°å=‹–HÁ·S <Éb`#ó±e#!ÏÌ&(¹üÓ¨ÊÖ}í55 ’ Ÿü*P¶ûô|îž•Q®\Ðn¸È»$Úe ˜6zÞ.E˼IØ8OOa›|vÔôôéWŸÎÍ™ºéõ_UIg~U}‚EšeQxLy›ÞÈ« Ví÷LnÇí•aW´8îF ét{5ð nêœÀèÄÎb•e‰?;^-|P“@($Hµ‹ÍTß`С^fTÞÒÁëfÃ:m³wôäFJ™صƒÐïÔ¨•¹‹ô±¤ªäèmÃðiEÞ+#¯åËáé¢`ôUÄò˜øÅ t–†º/ϵ0LÇW`«Xb'üÇÀåUpÖ@‡v9ºŒuj}û†n‡}í˜{s„‘5Ñ£¾ÚõœúKŒ¶ÈóˆáåkYIÛ+¢Ýíín¿.í" ì/‰þ€B}uXT±Úu¯,¤ A%"*i×-Iãw±í%ÑY/ÄöBU!e,©ëQŸt½Ú}/ü³åja)EK%t©WºÝÚ½¢ts9&*m@=ÓÔîâKu£ TE‰†¯Ú½”ù³ì8‹Il E*'f}×î#…LÅô4C½¡õ‹ú¬çÕî3…Vå|²ÁQ©]ê»^·þ¬*´ nÑæYÝRö†µûsšÎR:àµY|¥Ä-ß.§ëªoìð®°ÀGÍEºhvBËPyo—_´hEÎ˨øDÍÞÀÞ¸RNPË:dUÌ,!-^kW‹Ð˜ Ÿ|Ÿ7ÙÝày×eº¿†­|ôÇÕæñy»{›¾î/ÅXhS¬˜û•(AWÜC¥QIAý’0ršžÇ¥ð½–†#ôÂŽúõȶñžÝ9Ëv·Š ä-oR,EÛ:JÁZþ&Öëbè§Q¯^•)V Å(!»õ'˜ün4<°Š«ÈG*#ª[ðÚºù«rí Ñ–-î+ÏB[ ž:hNëIx™=¯÷šÑ´oXÐ5‹‘?Y…tŸ×±Ã^‹ÃúÚ2D¾PŠÌ¤&̦³¸Ž9TÏà¯¢Š‰²%LL ÈüoJy›Ë¨NòfËšoS6"Ø=N& z^Eâz¾Òç''ÊkÞ]Êk()$¯×°ÎX`^cìšçØŸ 72z0‚ñp‘¦æ4Ûµù[x•æšõçUN`й˜V*±|ةӸI2­JBãä„=×EeË÷1«‘ï;‡zç—BÚ–3§?Ëü%>>[­0¾EDñ-œò]m‘Ì0=J¨Z$g@ô,QâZÞ¢Ý`qžGtð=êÖ™¯’ØÜ‡e\!Ž¡.pòèlTÆ„­GÌXÝb-ûxvÔ¯³àéµlÐef-Ä{>òÏ}J›ƒq®ƒvPgt°ü9ª4]úÇ‹t¤üjvñEÆ0¦ î ƒw;Xz0–yG[{V*¬ü’Oms»¯úKy:c1;&‘F Àm“õ»ÖYX±åY“Ì–Ñb‘Ž€ý@3´Âç°FrŠE¹« OE/ˆ‡x%vŽb¼g’ÎAa¥l ³ÕH:˜ˆ½øú/`ù) 5Ê÷Eí 6lÍäuÐ\¼yQ·w_º=5Â¯ä+½Šíf³þ‚«^XÍkèwâúŠò$ÉVÚ˜Vèôð*!|Ö™<˜æHéVü©7ÌïÅõ×§‘?]MµªÄõ•H†\(}ÐïA[ý~¶ÌÇþiv<÷YlL2ƒ ºúŒÏ|¤ñ&?|ÖaS毠/.¾PìÔ'ªbç½ú½xæ_øcèKoã‚bø`ŒòaàœÿP-%~Æ1…&ƒªžâÝäÈ÷»!ž‡»×œú¸Új“5ºôœççäM§üÌðÙª5Å”\OÁ8J˜’¤=öñV hO«óL¢QmƨGÉQµêOÒùX("J`vcüÈ“®™ç0”º(|ÖÒE«K(Ë‚>uâ¨[¿±ÌcGmzwÂgyÇ ‹{XÚVÆq³¾ ëÃÎeMt3F0:J ãVýyš(ð8îÕoM~Êl;­¦O.µðÕ¯±»ð)ˆŸqbš§¶·ú4îv)’iwX]\º8=¥ý—6÷ÏÓ|ìÁŽ&ƒN7€Q¾3[\:dcájk÷³,™ŽÈ<#žq–K‹o+¦`¯ðÕq‹-Œ@'d ý­U±ç÷PX×[XO©ëøgPÜ­;œFÐFö£ª’ÖêÚ}JkÙv3Ëœßr ŔߒÞA7A(fíùS¦öÎ_è…Œoa ¾% ÙXøy?ätFZVPǶ'Œb? ‰f!ø. Lîš^t8ÌÆ™¦g*ÍÐÔ®²è|‘Ð㜄ål³ÿÊ ­A¥À@8¢¾]ï·ktñ¾Ì6w›+lL&ßT,éèý–B~4a\1ØV‘笌ù_B±ÚnÂ^8u““*®?° ÃSBøŒD);R™ êL¦§=ŒwФx@ÏNùƒ×iš)÷¤½nÏbíµ›Í&ÝÝ:_??oö—ç·ÛçÍeö¸¾"c  ÿ]íž÷»»cÄÃ@ ÊïðŸx†­9¹š©½—>‰xÛ]7R Â{*EºÿD鈤ãJlá"Mwú—é1s[d: »¥É3’™D›Þ FCî8¥^Íß{XûQÊ»òùeö¾2 z&`/{m½BÙ—‡çõªFT¶ŠÌVÓ?XC:SÃ$L†sM'?ÇêRé}Wéóh`æûªFϰôGNB Ú ¹£6-‘£jÑЏ~5®ôAÈ–Ñ"ÉÈcT‰’û™ /_Ä ê¤Ó©ða5ü57¾îÍŽ§ÉlE­‰¨âªbp–(&ë $iHÈmÌ-Ñl\Èž¸n,"wvÍþâ'.œ‹]GÏ郱\pT‰N·|h Ànk5¥ûŽ~€s £}esdÑÛ(GëÂ)L£x¡Ô·_Í(9¤¥ E)âĦR©.‰R)¦ënU—&O–ÄéµÁ{˧{'~×V&-¡“/p‘Õ~¯ºÆRÇ ­dœC¤~½j‹Í¸(«Zf¹°™_ðaÈ#a«Œ„<ê ×·Yð›ŸWN–9MÊ¢ãÅ]üÁëòU‰tð˧ONÞã>Sø¿œ6¦Ú>³q2?òÚw¿Ý´éw™Ôï-¹Éôä„B÷2•¥Ý<ĈD º"ÚAL¯æþ€ŠƒUM×í¦có©&±p-i·ªÖ’˜ø`”.— ZxMhaÔ¥ PâµI›n{Ö $æì23(ôò>]øIP{Š=¢hÓ­¥,ÙwŽ÷I¢‹Q  ,¸šu;[A5çvߪ §0{¢…ŸQ¢å˜)ú y‰ÞšÁ×ÂÛu­s|ÖPM¸“™I#Åk7ô+ç6†Ï§«IH¶™tŽjxúv1¼f—‹ c,°£¬ââWÐTë=È9e5JÑ/e5åæ:6:€.†Ø÷Úa%#ñ|G˜®lŸœÄ« çsH£>ª¤=FB©™¢Ët±L´# '';9±ÚñªÉ}ýL.þlýÔD¥uI¤”Ô´e²:ÛÉàøìÆUkáL@cªM±Æ¬(Õ…•M\&t`â…˜n ‰OUk<[€:Kà&KQÛ) éÑPáw%mC‡/kH¶šñpÑþEÆs 6fþrµð'|kÛëU›•3)"£Óå\ ö±2ý^W?xh íùõd Z)ª- La=ƺÀ.h±”¶~¯¦ÞÁeEI’¢ìcþG$USá¤Jgª­šú §Oüå2B[Dekê/%¢ÕUuø8hYÂ5ª5O¹TfÖ![Ó> £uS§P£í°šn4Ú5Œ*ñ~µá FÅ Üè;÷jÔØDµz'–ë„4ªx6IÓj¯u˜Å6Q.ÌÜT«wlÆÙ¯¨jÄÖNãü·R¢ÖUn:°Ž°¾9OÂè˜xŠVyTÃʬÏ@? ‰8{,‚g˜@µðð زAÊ) G’48ÈØ{LùFBÚK‚:–La¥[ •Ã,½V2hÝéGVãÓ=ßHƒ2(cõ'ÐÀP®º\¯ekšbKØô#G5åÀQã¯PË5êR­íGŽë‰ 7>Y(Ö]ÙJU,ì«úQÝ…­\·©ºëZ©RÚ®B°îšV®›bÝõÌÒµ¶K?ª»¤ÙºØN¹æªV®r¾Ækq ûQ͵ÌPWIÊØ¯ÔQÉTØ÷H½]ÍsóÖž•©#>9=Í­gÒXöPIìöè²α¢‹j°³3ºu¥=ÆSã–×ît{ýÁ‘7$òÃÕê~õG™¢ÛîU³;'ò°ENÛÚòb1?1(qàXô4‘Ê7 š¿p¬pº<µÐ8D²3Z× u#‡xUP8IµI¦˜ JiŠC(nÊtX¥J„j¾Ša´Ç ¥šÆ¯R• ¤^ï¹Ç·—³0ZÐùÈpàƒî#W•˜Cô9+†Ë.,Ðd.†ÐáÀ!öÜUd¹Ñ)§ìµë[$ćØM ‘ýêÆî¶’É š5;ö|‘Woñy#–¿Ûê„Ïö¼@hãv܈ül©žuŠ[Çb2Iæx1"ç±Q§j³Kt>û-G %wا«Ó±² uºTR…½xº]Òs•b ï~ŸèÛ\幊p¯gí`¯N—gþ(},¥¦q@#¬FÈ2­WõfÙVÏ"º Gp£.õ¹õJ‡Ür‘?Y÷/”c=ö˜ô÷;ïåï±$O äj×Ë– .ìüb¶ÌbˆÞq– ®@ôk¯Êÿê¨ûÕwerR‡Ø§L”DP#Ið #U-Š5íðr’—s|EÝšxIÃÙ+ª{k^uÁ5Õ¥¦Ù]%c¬NÍ0%m±KJM¿ÒÙ°ÝÑ6Ø€£o°ýŸ˜¸…y7›ÎkhjTJ= 'Ð<àøeO7NòA+^ ûvÄ×KD0ÿñsû°˜%ôšçËê9d‰FÍeí ²H¤UÓ J1˜O0¡M°Â+ šŽOª±ÜLÈÃ!Þª²ƒ±ai†K»lw-}1¶[5ÕÛ 7)¤RSíò‹B2‡(¹ÂÖÄ•ƒTÝ*BT9I´ËM•²;D.t€ÆArÁFÄ!„œ§j¤“¶WÍEå¥>(ö‹dZº° ä"šVµÛ¡„0Q!'dG1ޱ¼ž¥LµFŒQ´ÚÍvMÅ™.$“â°]óp]ö¸?¸¶…š‡ÈœBy£Åô¶ž&äÁ%£ÌŸÒKº¯É'¶¸hýWF#×pø–óýæqóp½¹ÆT‡WëçÍ‹è6]ï?7D€±žÌs¥DÍ’)®ø3ê3fêiöB}”Ö(ÿéÉ´0Ê=漊_CŠ»‘û£L„DËP…7£á³u<É€¹Ì.LAâEâƒ^ilDÞW°!L²ùŠ¢ò(üÀHÒá+hòøÑjÔ3ŒFýmHñö~Û´s­¸a°ï¸S´ÁÅæj³¾»L®·P=Š6È.àÑ‘Ù)spE¿š€ŽËø±ŠÈj Ì{kÂ×N¶.fëuùd›î®·Ÿ¶›=¦ýû¸}Ø>ÜæNÅÑïû±?}ïF{ÆL@S[]”•QEãs–Ât8¯f3'kð:R쀈€Ä‚ýG³µ¿†.#‚Pù å›R¥‹h,Y§<ƦÃÌ 0êÛ }E±¿È[1ðí±è~Í<„A÷ß  ltâò¶«mSÞûyÑ zÂ2DÒ)·H7áW÷ȹt⯢CÕEBÑÁQýÛ_ÿïñj¿ñŽÙg«yÒéÿý~ Õüûêa‹•>y^¼Û<ý}¾ß=nöÏ_ü»íúiótòüÇsý2šð¯×ëÐ7ü+|{ž×íþ[«Ûìw;­~«íý†¸ìxðýç5;ÿ÷òô¼ÞC‘ûÝ®²I®÷ÅÆý?ähfz×·z'Møô0ŒÒFXš^ç¸Ùƒÿÿ­áµ~êz?uÓéþ÷ÿIo|¼üïÿëoäáêÞð'õÃuãùv#Ov7»Æz¿iìa‰{-qï÷ëëÍ=Ì©§Æî“€d”Û†~’­üÚÃŒzyxÞoa(BQ1¬Ž@èž°_žX™wÛ«ÍÃPyÚl·ÏÏO?ýýï¿ÿþûÉ Ú»ýÍß ër÷é°NnŸïïŽ~PªÜ®÷ë+€A>¬?{àeƒŠ»Þ]½Üo@¹E¥¡º P4vûç§¿?ï;¿ýåíö©ñi{·i`\˜oO5ã~ãÐ~d=ÃÆ\K€%ä ´ða}¯¯Ö…˜ï¦ü¾_?3F‚Æs 5ÿ½~¿Ü­÷Ç›?÷›§'¨7Pãe}þ==?ýMá0¼¹Ù¯ïÖö Þþñü‚ìzótµß>b£Õ®¢RNxÛDåî×_°rзOw0ލ!ëG,#)o›‡ß¶ûݲ‘—¼¾¾Þ>“Þ”K8hä§—;VÞ€ö—ôg´¾º…¾~þ¯ŸÏ¿ïÐÔûŒ/Ùw×OØ7ÐXþÇ/ðãj|Õç”¶û§gøП¨îŸèá6 —ñO·ÐÔ(â#>lÃIž ðË#èiww_ !õÇûÍo[>8>¾¡Q4Vïa²‹Š(dø«Í¿^¶ðlóp…Ò )p>ü%¿<5þ½Ù:i6ÿ»_‚>#þ½õ³týTh«h Ãè <ÿ×WûÝÓ“" Y-7¬a¾l~"j yM÷0 ¿þ5œlÐò ‡Ûh{½½ îÖ9¡/ã,Sqqð\N6Ÿž%b®ë¹±ïo×7('öÒåh¿Y. Õ$i ™v÷›bw ©‰ g5Lᘘþ–<]ñŠ!‘Œäµ¡ú™ uºyØìa·€ì¹Ùí¿‹ ^`2=\}¹Ì¾ÜÜÝ5~Ì®þSN½+bÕZ çª6¸ ú[ãv÷ûæ·Íþo¼³¹0¢{ûÀV1¹¶®üw:¿U,Í¢e+ØvüÐä  ¶î5"¹îãßà¾é‡â¬‚qü:W¿~ö¯Hé!)H²íIùB“¸S´úçû-h^_  ¨¿8zø­aþ÷ÑÄË·Øá¯d“._É¥÷7¶:’ ˜n÷û–syz÷åñöèããÇJøùz Ò&òúêóæùèê“À—ñîîˆ#WA|<Âøý¸½Û>¡Ô ‘«¦G×÷VÂ!¬ª÷»§-·N=>b Ñ¿VÉõfgBˆ¤Ü½„€‹ø%‚‚. ŽƒËY|˜ðø+w»§—ýæèîª ÅA'0y÷¸ÊÈú0ÌØÌ^ð'àÌ 0Ceh“Ã?Ùxþ†*8¯¼}útuôdkƒD.·äéÙ…³Ü>ßmtœÎêñ±PŽ­À)`£Àeʯ›ÓíÓÕæîný°ÙÁ:þÕÂ*Iä¥êò²8½<Ív/û«M$!àÆ6¸±÷Æ÷F‡;›9œx!mÏt¸© nªÃe6¸L‡[Úà–:ܪTA·*Tpe#¸ÒáÞÚàÞæp‹L¬­…Î5¿àoù«ËÅ-Úw— ñwŸ7ð|‘Áà+£0´$KÑð†»€£7ÙÌöf}¿»Ìp·s9%ãès4FmÆÊ_H¸1”Ì@ðÁŒO%²W‘Ä~jÀWó&Û<ÝšaèÕÑÃÚÜ6Ø¢‡uËö^°¶ÅÚŽ—dÏ1Rb¯@´þa£Ç”ÆËèçÍ)L¯*ÀåõÝîkWõõa<±Šú7›£wŸm¯Gw»«ÏG¶±%úÊÖE´+"ËÂWª-ö æûPV £YÒ••Ëå—G˜¬WÖy¬v4 [£kK9%m„ŠØØ‡m´~z¾ôŸ@Ź<ß^Ãæ÷ÆÞÐâäè4YaQ—ÙÀ@î^ЂÈvZG·OV×° €Ý ¬pq Çš'–"@èਫ਼ þú{hN?y˜4'~Σ6#yȪ‘X°4ò«E‰E)·cuºß½<ýjï(H ½³h¹¨ÊÉ*¨fÁåϦº¢j¯^¶WŸ/ƒÛÍ‚†vаzf&˾¬™.ÁêtìmÛj{fE %kÿoušC¾Å¹S%Ýo…5êèÜNù|·¿æT_'ZF°Ÿ†]ø×‰¼1Kx›Y$—ðþ2ÜÞlŸÈ„a•Ö#&ŒŒPìKêÆà¦v8¶ Û\¡î~m€ã*ˆLo€"ˆ¢?®@`§‰•ä ^(ŽMñËIEýsÓ.‡Ñ¿!³yº<¿Ý<È ¶á<0ñˆr:<¡œ™‹) h{+›X[¯âÉm¢,k¡ÈM ¢¬j¡È­ÉõQ¸.ë>_…›GãkZr÷´‰{熛O뗻缡ÿ@!šã™ëQ¸µ¬Q€·]ƒ €ƒ;¡ÙÔÝï~…Q+Žð(ÂñQNãçµÖ0-Åë”ègäQ4ßoŠJF ßK ú›­Ý¤Ú]c‘<Ï·WF=™Ã\_"3 ŸNLr]& ¹ +Aa!2¨q (Ù$.ñR˜¿Æƒˆ^%á%³ÃÀ¦ùù–äÖöáeC‹²ùU%{^ïŸ9QÓ+€7/û^5Zq˜°ÚÓ“0« &J´¬u“]²%å2}D•u·GpóÌgàË}Þ<íüJ‡FýòT°W|©ÀíÏlÇ„œúŠÃ-vÏx8f‚c¯Ž&©eÅ@«Õ _ÃaÜ£Hg'0G$ m(\NaÏZèâ«£©EÆÛÝGŽfhÃ6£ÌvWÂÀ­ ²Ô¶Nÿƒo]*‹uj“–¶Rd¦¶Ù+°‹S8µ x ŽúÔ6ž`6¨S[ïȼ‹R[ PꨔV¥ (¹jÍaFg_ ‚¤èßJç¦åJÚØ£¹}°T¹%ýLnGF¼Ÿ_vÏ $·±˜ ù«£…}1-;e¡:Û}z¾ wϸBgËÍÞhË6d¿>²Á¢ ”Ã\Îqÿõ–3‹É›@ –n[7«&Ó£·©Ú0¥{>:gIMÐjRàò[:x=zgŸ!ïÔÉñÎ>9ÞÉyñ.åÏ,_£?××O—)ꇃ4õ^2dæÃ òŒ=3P-‚†¯Ü‘ßÜOH±Õñþoä/÷ÿ¶úÿÑ ß¡N€•þ^»Ûk–üÿ:¯ó?þßá_îÿ§v­Ý °Ünþ­ÑþÔþÔlþàŸí(¼þÇðO@V·èRdò›9ÜÆ?Áè{bÞv{è¾oç;˜×AõW#öÿ;º[t¹{VÙž×½§°#q´«ðQd”ÿOÅçÛí^ó\Ò¥% „Ûcµãooâ8(™Â|²¤Û´Æz0Òøñêêê?ÉÇnÏ\ ;| üÔàã½Ø5Üoîo ?Jö7)?í^ö°…)râœwr¼%CÏ“ÙÛ‘¯EÇ oGæ=kruZÿ/pv´ùÿq{ü·ÇŠÇEñhé?è„é ‹O†²'œÙŽÖr󩊲¾å‹•yᄾ0ÊUËɇ²gþͦñãúf†Ï4Z'gŒõmë²Å€½“¦Ø»l `7eOPn× Ü”Û5(·sÊ^ `wjT£#ªÑ©QލF·å® Ü­A¹›Sv7°+Ø«Qž¨F¯F5z¢½ÕèåÕh×n3à~:÷E5€xXx(€[M4Δ¦„nÕ€nIh×ÌBhO®îÍ;¦åš[-çVË5ZN–kX#tWv×[Žë–k¬"´«3¿–ÙVAÕisM‚0_õ¤¿qÀoç:ð—V¦cøÖË€¢aýøttÝúªD.La»d Çr¯›kF»1†es:Q°æ #ü2cÛ×Àu—8Ú½<\ãIÞlóûõ;†Øìä9"ºh’±\+1r—½ –´~ÐZ¹ ”xÅ"]Ý© òc‰g¶C‰K›~ò]9yÚ¡=ƒ!»‚€Ò}¹Ü].¶7·Ïkasq1c]FÀ¥kºfÀñUÖñõ:/Ê~«•Ø)h¯ûí5GŸe–ƒ¬}z'lÉä©'á¥îaÁã´Q8Ò@v ¢î7WÜ /&}Z ;9UD×xµpÔAˆGÀ,dÇš8ûWÃ*öïbâ¬µŽ¯×yâì_[ï_×,¤c½´³g¡ñ4TÇTOD¥henÙ/°ì×âòm×Qfõâò§¬-Â5Žs`*80ý 80ý 9 ïhÁ:{óŸGòµîå o?þ'¾üÿÞoAKy¸ù©Ç/''­f ÿŒ®Ñÿhü×ÃîaóO MòEÂϸ¾?¸ÍkYiÞšÚ0h“çQ„"võJÂÇÍÃa ¤@E¨è­¹ûŒ­¹û JÅõÝÚvߌI zs“/ΦÎ.‚p´Û]e Âï®nѶnrXÀ„ÛbD9R½œ[<&UÅ;ŽÖAu€;ôSo7ûÝ ¼§ˆÀ¾B¯àËÓýfóùrúò´½*Õ¡ -™qŸ Ã- :6玑:Çc–ÄÊŽ"~.Í;„9²ø%L››ZsT´9P1 Óê¼ÕÐ@6tÂý¢Œ¯` YÚž“+4Rr싱ހ°£ó,{±øÕ6TÇ» ]¯â˜ð7Œs Ãd a¿û½j m‰и Y?á^ š%Šømóô\Q¥†að£5žšÝye D Ü¿8d"(мm( o¡aOëË·kËhämg ãym¹Þ”c‡Þ<Ü@»*¡‡¿]o??½|¶b( —“ˈ5ʼè m÷¸»ß}²¯v9ˆŽ`q!V䬘\†ûõïêuà¦á8ûõí}ÛD‚oïî죫!A.¹ûŸ`ÃËs\rp»5ûŽ+¡¿ü÷È6¦EˆCë Åå4  é•å1þrµ¦û]þÝǵAj˜@8êíúó½íêG% îÒ'Doðji›ˆŽ`Ó:ˆ6§áÅÓ“}Ùå¸9ˆÀÚí×O÷vf« åÍY%R¾ôÿ$ѹ›z%ºŸ ˆÉÖ˜:˜ªv¥àç•ráÛ«¯¼Rû«šH¹ÛØ®ÅTp3¿+4AÊjš«Aj¤“²Ü¨E*ÐIÙwë uRVKF R‘Nʺ­A*ÖI™ng×%uª“©±NʪâÔ •䤸·ö“Q2•AJCœ]²·hgˆ‚c—e‡\úך‹6£Á¦)ÞÈ·Ñà÷qõÙŠ‚™èâÑ‹éÆSD >>;v3 D¿Œ×WÏÆ-®D ³ ;— ëõ.ä’ÜMÖrxyØlñ¸¿¢¦¤€aÛŒ@,¤»5Ù[áˆ_÷ÛÝ3¿³Œ7TˈEsw9Ý>ì,+ž"ö DUôg¢#X%»¢íO5\“(7Ꭰ¸f¯ü2n`À5ûé—qÃn…Þ¢€péPDö[ˆ™R66•Ð9ˆ€ÿmý°¾±^€Q¬÷uEÙ×_ºÜˆ+º\^þ\[¤Ý?”0p 0d<•ië_I£Ø•hP¥ ZMLÁPK/ …Y–—ŠÂŠ«M`ׯ=¡ì "`Ë~é~Ù¿Ø$ÇÁÅÒZÃA}ÒÄ —ËíXB—ǻݗJû‡aÑz÷å2üò°~•¢,Øí œÀÍXc4Ë"?¸ç!Oµ€¬ÔŠkš ÄŽ¬Í,;ˆ6³"Øë=Ul8ˆ€ÿr¿®Z¸%‡¿ß#ÑõÜ/@8ÆÃšè¯™qï¡lí1€ ¨ ½8c,è¥i"¡lÛ9„{ °…| }[¬rMX«“D¯Ïóív÷X¹Æ ¡Â2£‚(ÒM}lYK˜r@©¸æÕ¹Œ;*àÚWIDcÏéz¿.i9:.pèÍî~óLÝ~»~4ê­E3b‰¹f…¹ðzSm¶ :BE?ª †¢*ø©‚èü¼[ßìî¶v%])¢X ,‚èî k«w „ƒï×0Ç*– "à7‡}–ÖàüU·ì©5BCŽXàý˯xÌn·Uæ áá×õÝúòt÷pm -¡¬ýýËçÛêbˆDx5á Qì„!×wŸˆ1pÅ`[b ¿cì( Ç~)æ%¢B:‰µ®¹“ d܈Z›©ìUEì¨vð°±Ã _ m.H¼—‡]…R"A<^›rTA8øæã~ó{58pðíÍíå|³fkùú¹$²È~û¼½\=mX…†•@N£Œ·µÜõŽá1†` ©‘#¨+]˜ßP»”~ó¼lmE4m‚ æÝtrÿ+=î×F%¦ Â)þÛ©-«Ò«® ©Rȶ_Öÿ2Œ W²ïÙ¯oïÖ¿m‹¸3öD¨6Lm }îWÉ>Bg "!¡ÙMJÏÖÜ–D!«,½NIñèöh_Fô‘@‡Ýgõ‰agëís…ÜE"À??ï~Û~–Ö%xD`>¬| C$ž!:ÞHÁ«83mä Ú?¾T @"ÁoþpñA¤ÝTâ=¬¯+~"àŸ×Ÿ«¥—Ñ*ô- 2¿Ý=ûAqœ­¯j#ò»_Ö·—“ªE\€p’»§[ûøSAÊöÕ¼û5¬àüÒU ¥"pïÍ!:TÜ{t –ÐÕçlˆÀÚýj?ÞæX"À_®×¿¯Íš’ç –¨gKU„aLÖ§/°Ïۇ˖}Þh Fû^¢’¬˜ø ˆ6ñÄüi5b~‰»@ÁêØR 0*"Zƒjƒ"¢å¬„íñ¤tĨˆh9â*!ÆEDËV ‘^M6WU;–†àhP¸Û~ÞX&“ „£nï?ZluAôÃf½·°6r a$ì}¨ R@µL˜@êSe› $v,bD[Ä&»ß+UäF„£}¹r¹c0~í¿–àÓõíúWØ£T€ ‰ðëÎæV#D5¨NaM{2G:˱DÀßÁªTᣪ€Œ‡k‡õƒHø-̇M…óE"PöWæ ‚ xhÏú¾jÛ­,ÜèZ ”«è¨(-êT%J"ŸyÀi”$¨@ÿÂ[ÓTŽ‚«hõ‘ð¿UZw$ˆ€ÇÅf§æº›˜ oá¶×ו˹ð·ë»ê1 ÛLꫲ䳂p|:Q°ëT ä’çÚÔpÏìç1E69rÕBʑՅ4Ûí×°LÞ?n¬"ZH_v0‚« !9»mެžƒpTÉ«Î&†}?§hòÞ¼ü^½wâ þ‘$¬7å; [¶Ý66aJضÇ&ì Ç®´¿°« qH dwÕ5%Íkû²(ÅU† ¡ŠKJB o*Å~¡u%¹,&#Jó @bÚ x•½³œqæŠð$ ùOA´+Ô­nÎÑǹ4IM õËÝîÖœõe+«ƒ$cƒr+A%ˆf%pèÜ=Ùܬ¯¾ÐšÙˆj7šén}¦I[írÇ@TðÊ«ê9ˆVÐr}Cé%+ â þãú¡b‹ŸƒH„êø& Do7`ÉÁ—UËk’#¼ÝVÜÅÈAr„w/°kxc¹ ]ÑU¦åú³õ‡Äþ,Æôr}¿­r£kpºú½)ôøÃÍSõY'ÉÁ_*¼ŒDÏ3wœiJ fÕÎAômî^nª¬<„ƒß®«œNœ@$¸KiF¼ý¸qDYà þšè¬Á 9ˆ@Øß¾ß~~ùW•IS€pw ´r*"QXVé‹`Á-‰ óõÃÕmõ5)"Àa^Ü\[›ºÂp.6ÿ½­<é <÷γ‚øàtѶ㼸/¶¿Zã„H¤_Éq|óÕ¼×eÀ{é×ÿ½Þ_fÿzY—Þ7Ê ‘,_l‘:E5\eÖ®LRp„™ŸÿdšÿhÌì†}<3y¾\lv˜&:Gjý£‘¾­@ wë/¼÷ÆØ·–Bþ±PÆšbr”>žTUëå3,xðÆYUuh‹þv·½R ÂЯj÷Û-zbsèp)‚–%n.)€[ì·5;½Àûm‰ñÌ_ à6ûm‰ñÌ_ àûÝ©îà.ûÝ­î àûÝ«î à>ûݯî àû=¨à!û=¬r`õ WÕƒžèAõ WÕƒžèAõ WÕƒžèAõ WÕƒžèAõ WÕƒžèAõ WÕƒžèAõ WÕƒžèAõ WÕƒžèAõ WÕƒžèAõ WÕƒžèÁ6ëÁvU¶E¶Y¶«z°-z°Íz°]ÕƒmуmÖƒíªl‹l³lWõ`[ô`›õ`»ªÛ¢Û¬ÛU=Ø=8`ÕTUc ª1d¬V±nÈY×jr‰Ô4³C¼Ð\4ÍCI¼äÐBX¤xÉ¡=!Hͽ(^ h.;,CO¼äÐ|èµ,cO¼м&–ñ$^ h!Ó«8/h,¢,Z¼B†è5¡Rþrd * /ŸŸ×W·èõ±¹ÛýÎ"sTP-˜%TŽ… Š¿¬°3J,J #°z„e_üu,ùšã°6qK-C1_áÂ10°aT¥0òjP$W„ñfÁ°l¯2$4¬,€•Qâÿ¡$åá8(+Žì8†Æ¯jj™ù80C;/12 æV9Šò.¬òçæ8jÕ:ЎľǗ Õæ&Y¦Û>m`Ou‡ #¨³Ÿ*ãûªÀÿhü¥¾yÄÆÿ”¤d‚ãÆAÄ‚¤áNZÓø¶•©LWҚƷ¨ŒÍ¿†Vã6¿¿sž^æwÎÓÜÂþsóty~»y¸Ä*|‚B¬8bä|}ïÄE¬Ì︨ĉûõã#çÄ”qÂ[üOà„3¶øŸÌ ™6œ81!FL¾¿TÀ2¿¿TPéœ 3äŒO‘³sä[óã¬ÆùSù±Ü>ßmäÀX#–ÁÀXþÕCfI'F¬ˆ«¿€«¿‚x¼óD~­—ÑWw/h6DÈ…è/Т¿B{×O·ñš_ß{`e~ïu"Ü\)Ý?…å’ôÐëûJ=ÔˆUVHu0–iâM\?7èHÇUKiøµƒ\­89G††ˆÕY fä¢G" ·Ý_UÆÍÃ#Û.‰å°ñ¶ÒÛA>mycã]éæs‰œä€pzÕæ äÊîúÈèí׌\ò°u• Ûjïö-€pzOÎÛ<=~8Ð{Ú1rÓ 0 •µûÍ5#7«rôb°²ßUGªyXï99£kNn÷‘òÎV‘ûÈ©íì~Ï’šSÈ0zÙ}åm4¸/a5ÈÓý'÷/'ï,‡M¹qÞYü¢4rn§—‚\Õ#'÷èŠëðôòÈÈ᪃œ8f­ù @½óíµ«ãj€üްHZZ¿Ü=ç„ËÄùåÅ9¬ŒhLÿcBø—ÂÍã~sEåGøÛ¾yüþmÇ2¿ÛEøShúS^Âç÷oúÖðòÛ7=Z?=_ú”ÁáC¯5~Ü 6ëF¥Rñï?no^v/O £NcE7†aÉžcÈ q £N·ð¼‚ Þ±ÐËÅŠŸ»ÉŸsùÝï~Ý6~¤/à}ç-5/ó;o©©ÔÜKX€# ðû{³€•ù—°@ܧÀŸÈøúÞû(Væ÷ÞGé ¸­Ÿ`¯á²¿¿÷8`eþ%ã@ÍÔ\ÀŸÈüþÞ\`e~o.üëeûÛúÓÏ•R_?þµÂ_,ÍcôÇãúáúé2EãdÐøñ]ŠßðŽýñ}aŠ2¿o"L!gA(Xþ,ÿRœ‰ap&ÇÁ™k ü L8s „?— b œÉ‘pæ \CáÛ3û çaP‡Çø¥(û뻲B–ùW°bO­g-ÿî»*ó»ïB‟TÝíž^ö Hð•6ÙRÙKq§mÆ~x ¿ÑâÏþú®ãK–ù]Ç—¸«À.ÿf·ÿÒøñ}‰o0£·#ö2’¡œíU ?4‚«Æÿ¯|ÂüØáÇ/Á•gYf}ª¹ˆ;Nð““ OÏÀ]™›ñ†ÃFÚÍÃæš£¸»\½3Ïp=F4aT¸$ ©©䇯äx=¹Çäúä?^x ®ÞeŽ6×—åˆ4ºËhƒâ²sFN›#:N.¥pXÏÝ!4Ju¤j$Íq,¬#VGޤ#ŽQ5Ä©¯Aá+ 4Š)~ ?4¦8ߦüxàE»g™Œ"T9RµÅ‘X¶‘š{FÍvO¥âê,i  䇯ìš=Ã19ÛqºŽCŽãmïñ²…þ?×Û›-³㛺ÓãXu©Š4wà4jEãxD**?4æ8dæÈ»9Ž›9 ëù?Pl̹°ž×ÖtåH»ΰktÄúéր舸Úo ˜5º©VÆt\7kÈ£;nÝ®.cº—‰ôqóPFt](kˆëÜ ?42ÙgüÀ%#ã3(«Ñízê@ŽW-Ë4y®áÕXò¸’§.ÏU¤÷¤»y\SlÈ÷(mÞ?âŸ'ïkHLÇ,‰s4Ç)€§ÝP ·†‚"W-Ó®CUBMB•k°¹ßpûÞ)3ôÒÈÿú®Z³,óûjÍ‚ìPÖè$úÇÓ`„|F0'Ü_®ÚrxG0>„_0ÐÈ1"®pk¾\üòÔÏQ\Ú ¢ˆÙËQÞ¹Qh/ËÀ¡(øéÝËæÒÿ„ì}ÿû¯ ­Ž^Ì!]CA8¨ýª¡}+@£„@ìܵ~ãNaó(Y²°&–ð‹Í Ë­B9^hjæî/®á‘ÆE8u†;ƒt± 9{Þ¹Éaýþü @´ùƆ fa|_ó¨(óûšG%`ñøLÀ? ð¯ï-vY™ßUìòrqgºÛ'ðYsÛL×’Yº †TgúËBN9P@š¹ÏÙålÿññ&·D«Å õöNoUI ûpž7 ™»ùã2Ä}NãGø8 ŸßÝÔHe~wSãøË#Fúÿ‘}cÓéï+UD™ßWª$av9‚MÐþ‹ŒCÖø¢ƒ_ßûàš•ù½®‘ ˽ KƆ×¾9j\ø3ذ*3aŘPã*À7gB«ßž —ÌEšEôC%}ûð²AN_sŒo üúÖ̱”y¡Cÿ©ÌÉž×ûçgèi™-ô¸<†þT¶ð2‹cèOaK>Nj¼Óo¡ñíïô[hü)—ã c¢â/hyöW´,BÑÊ}i…°ãkm´CØúV‡0 ™úØQ@·õF‚c½Ý>½`”d Xfª®"Ÿ|"¡6õ26õ2 îÿ†u{.Å‚#À^éº:v'AhÀ¼ß^¾Ù±3ÛÒ £‚c Ò¶P~¿°tÞk€˜ÉL ã2ܬ ²³QB3_Ü+A”ðÆ@¬ìc`(aËS¸ÝÓó§íüJ[%D‰Æp°,ÿË%Dóõ¸2D q~·¾ÚÜâí{[›ˆ2ö~sµ!Öbó(‡n„‰BÎ,sù¢„š½|üÆj×aÀ½ºÚ”j^Q"q¾eJý•¶bÛ 8ú鿆žmÑQƒÁñ’‡ß¶O[44–Jäx%މӹZ¥`œNR(ï‡ÙÙ¦ ÁAÓ¸¬*K…(gÑ^³†ˆÄ( «}.„n¯R‚c¹œÈÄ¡ƒž¿ì7–9Ë¡Žƒç&tN—Ýn?\„ˆ(o,ÒÁ1¥‘ZÞ)b– 8¦’‡ÏÒ@BÅ©ðR 8 ‡YÅt0S€?­÷7UqÔ9„€GÛ²º°>«Ð°®àaX9un«–,õLêhò¾¤T(—³õ=lÙßd3P à³Þ7iÉ­BF Ôu`‹Š‡tŸíލ;Žð(c 5<9iIš­B†ÒŠ ÔÅ(Ü‘qÈÔ ™rЕtÅ@çß´pH(‚pP7ûO9ûë\hd®#`\s¤ãè”ÖéEjÐ+AÏd­ƒxéÑ>¢'nîO8÷'.ž"uŽO¦Ô}d?™sPw÷Ox÷O\a u¼Dd‡tsuƹ:ssuƹ:sªU®9 <‡t‹Ô”KŠ:Α ÒåXƒ‹8ƒ¬ãGÇ!ݽŸqÐZ~éhÉÚ¹û$ùÜ ž‡u³ÿ\‚:z•@8¬Û±åœKµ wÃ.|êlØ…hØ…»aÔÙ° Ѱ wÃ.DÃÜ Û… ê^Ø.V†æ‚v£›Qí)ß@ë¡_¨øÐß÷¸[”ù}»…åt¿{ylüøë ´þ×ÔÔ>í·Wë‡ËxcIn¢è8³ÅûZÑ‘~^[¼“5ŽãŽ› öï×VÃ"ˆ€ÞT;I3<²ñ& ÞŒ6ÏÕÀ „¿ì_žn×OŸ·—›ÛËÑz¿ßl À&†VŒj0 ‹Ç‚‹í“µ›†SK{%Èx½¢úÙ!%Çp;·Çê侙̭=ÛÜ^›»¡Â°NmC2Ç:Cò¶†ŽðF ÇkgÝDÀâmñËÅî&ê—5ìªÖ—k Ö b&PÊFká¨îîo¨»I¢;àËÓ]e<#"œ³g,gÏ™»ÛÎD·9„ÀO·÷Û½}Dë éÖ)„C?잟7×—Vnj gRo¼Á@$ìúºª:„Oaîÿî/Gæ3HëÙ@¢ƒ‘&æª2–­RD›™m8–9Y¤ŒeD+‚”Ð̉´ E¬…›õ‹RfÎ,W)b-ÍÔˆÀzØ^Ý®7˜ënc˜e2âÓú_)á™×àH V@¦¤Œy gi¾™@J¨ñö7ƒð-”ðN·÷Cc¤„h–±%2ÞËÃõ¾;ÑRB5KßH ob⪠¤„9ݘde¤„6{1)œEZjôŒ(‚”ÐÌ7ü %¬ŸwNf"H o±1é~%^«„)ÛWÄ€x¿ù\Ý{ ¤„¹\›¢eAÊhgïˆÍ9!–¦ ±tOú¥eÒ/ß<<©.’@J˜çnÖœXs±3i%ÞûµI—A8âÆ8í4Äœv[§: v¶»Ôw°eØ"ˆ@¬ˆY+ÅÕ<ûu`1û-‹µ+ë7yÅ<·îŽsP¹;þÙ­Óþ,¥ê­¶/6ýˆ0 ¥âÇ[ »Î¬‚0¤Ìäq¡#ˆ„5ˆ¡"¬CÙÆ( 4èûÅXÙ/f·»áÀÏû5zõXfn£Â‘~Ç+á„c°¼Ñ¶BCYº7§K±95K䬠 [ºézÿÑšÿV)á˜wŒµ@Æëûÿ^c)}Wiðâ¢s—ÐsU¦ „!Èܨ˵9/t„aÙ;JbÉŽªª ‡•µ1Û‘Š°š “÷ˆ½Çz©Ü_68H|Yed þýÚ9Äß: 9ˆje7è~Eoý_)~|eiDƒn×/hzfHuÎŒÑAÊj]Õûô¬#Õ9Ê! ¢aÕ»@‡AIöè @85Îb„k –,¥;ýÜùî#0ôî#ùî#‚<^.ÃpÂÈç§õ~ÍÁ]ŒD îãíúã³)3÷)'+ÝÀ>â=r†æ>óâht€!,9$âú©Þr÷C¡»á§†Û+fói·ç ¹9 úÝ5ÞƒúÂz–áîÂØm ~©"ºÏLñZ¸‹¿Y?®6OÆOÑÔÀÝáåx( Ó}®Çâhîá ¤ùs»yÚò¡\'¦àíúf{®ç—=¯hý ü h ¥N´‚«»õ½Â¾S7ã1d»ÇýØã –Ì£*h›ƒº«0Þ|Üo~Þa Ë}«ƒ]>eà‰Û±G¹´ÂqÜ—U’‡' >òÑ–-„ƒl„“u‹œäáÓöô›ÞìEeÞ¸¹ôfÂAÝ®o–Ô}MüÍ[Z'ö®ñfsÍ0fî*Ï6<ã¥{Κ™›5hK•3÷Á²ÆÇÔ=ñKñˆqî>ìæîØzÇÍÝò‚9&ëh?»Ûõó‹È¤N¯ µA¨™{u ˆw›?è :ã¹½pò€ ÃÍ~ êáݓœ­€"›=a½uTæʽ÷’›{Üw”À]Q>d·¿>Á„S#ÈêáóÃîwÞ¡ï]!úDáVýÐ#“Ý mYØíX6,¢÷$ÅÜ`ðùÝ/;R™ßý²£ŒÚMÇ?±ñøýƒ™ó2¿s0ó}yøu}‡žÒ  I,çíŒ5ú1ÞëXNçi‘UÛ¯]ÓAžo×~ãí²á Öé˯Næ¾üŠ™žDí_Ê7Jû bv»bŸ¸‘î4/ós8X  îc1:à× /»€vqA$ùÍG'89Öqð­s* È 4Žp÷Ríç lZap›DÁøÞÉ×ùúvýûíåø¦„Dr ŸÙ± Ø\Î_ÖW·/ }ÿÙ%ÏPƒ‚&^¦ûËBs_œNï®ñžä²6'ÏŽH ÁÄ4{³v®+’ë1gnMõlýe}{9Ù óÝg ñA üî.áwAývíw²{º}¾•(÷n”ûÍ^@ï~uBï~zêÙöÙ¥ÀœÝnŸñÊâýúîî’í´8îõ›S Æ F¹uÖ3UÏ—‹µ¨{É:[o%§&î®[®·t9Q ì\B@ì³KÀÈ–íÉæ±:"«Ád{ïÚ"È‹€v¶ýF×ûK_"¸ÉÂH <¹VáÀ_®\½„ bÖO¾\»Á¯%øt}ëвþÖðÙÅ_ÀWÅŽçð0Ô…šºW±ü–¨@Ù»F‚ G6ƒß\»¢ôÈæÓz{½ßJw3Ðfzy¶ý¼þü"˜µq× 'TÁ.ƒ—ýÞȈ®©#KëÛÔ­ºÊÐ cç4"€«‚ÐâË1öNA öyã¬Êf@—Óõ¡ÀM_î\«+‚äƒø‹SèOaÛq/ñl}ãâ(€\N_` ‹ ×Ì=ðd«nÒfë½K’à’=ÛíŸo/É–%X<û¸vq`¶˜|ÖÌ6¿»&2‚pàÏÎûtë’n³€aÐéÓ‚ÞÈ%%½³¥)È¡ï.ƒÛ­XÓ‡µ«â€JûGºwjöØË—ýg!±Ò½ãÒ6‚l¿pN¦O7.·¡ôi}³ÐUA…9ôýúARqîØ±ú«/7·/|lÏ×N[.‚|Ùo6ãÅ%Õä2Ø‚î½æÝ<ßìÝ|‡÷¾÷÷‚¯ó[çAž0ÜGp*£ÉéX̤ZþÝú·­Äv)øó§õºÛðþpVs·%KNÖùÝÞ¹˜l…f4ß?Ú*²¬Å¯Ni½ØÀòÎ÷)‹Ým=§í‹ã½<¸€ˆ®ÍÖNù ¥I<«'³ÝKQ2fëwY/û5ì „%+»ypm/³íÍÃ9Ôo+—Ý:®^Èoyµnc CÿN¡ÞgÛk'<€HI™mËÏÙíËõú÷µX×Ã%ú´¿»qÖ@òïnÜ¢»PÃqZî7²+v_\!ÈýG>ò'«DÙöÂOׇ ¿ ý!ûr笀x¼Ìï샧܀»Œww×tgöéêSåÍ RùÚ,2\É}rÜɵaZËXnŸï6…2žk•Q´–!ݸ•2^j•QÂ4”±ûô|Re„!ŽÀ°ñݽ©Ìïî(fŸŸ¢ñ#Ÿˆµæá7fC­yøíÙPÃŽ!\cì®¶øä²u).•¶*IêðêµÐÚf6×—2¤LãÇOƒ¼ª•ùÛöѪVäoÝGÊUq“£ÖEŽoÝø:9þ¼ÆçÔ!ÿj¾·èW@NðÙ3yA¿Å[o³ï/ÿ¨Ìï.ÿd´Åt¿„Ë¿ßpfý¶kÔ ¦‡7 6× ~Y½¡dE¯žp·ZÇu_'VqW{ÊL¸uÒ"qxhµv†…|³?¾ï]Qæ÷½ C¡tøêwPçõw9þì w/x)/šlRýˆmÜ I€_žúï9ÊAAÞÎÚ¯ÁvvVÉ‘<>ßä¶É#phŽ cȱІ—ïÿ•¡÷°ÎÜ¡ª¤ëÒyÍ-¨¯Po J S÷™nµŽ˜ºÛ ju¦nuŽ•ÁÀkÅ\ûo-pøúûb‚]1BÍÜs0ƒeOŸƒçÙæ†É=+’aµ7µ]?fÖ;í†ú;vCýÝ_pCýÝ_rCý]~9ý»œþî/¸œþî/¹œ~õëgÿêj÷BáOùthühzZ©á™d¤x‰!ö@¡ù¸½Û>!]#cX^¸J2á”5JL’`·ßP9ìOe¥nwðáâôò4Û½ì¯8©ü·“^j :.×':¶}S ú¦>Ñ7V¢góUñ Yk¢[${U+Ñiè´>Ñ©•hV šÕ'šY‰. D—õ‰.­DWE¦®àêÊÎÖU‘ìT­D߈¾­Oô­‘(­ªS¸Èª°ªôšï·÷ëý•¬þÈEX‡VI/2nj!ªò—‹ T›ÿ9_k«üJ"¦ˆnž®üËIŠ$ƧŒÀøÔ‰>>-"'±Ÿ2tüËIŠ$Þd˜1èGù§“A©ÌvÓí~fõÐRÚu„o«èeÚt„o­°R™]@°ý’l`?¿/D™ß‹ QýÛ_÷ïñj¿ñŽÙg«yÒéÿý~ :Îß¹8yÆ€cOg'µùAíÉóϵËÀ9Ñëuèþ¾»ÍV§ùo­n³ßí´ú­¶Ͻv¯ßb»å¿ Š Eîw»Ê¹Þ÷ÿâ>ïÚãVï¤ ÿƒ†áÂdø©á5½Îq³Ünþ­ÑþÔüÔl6N§Køßÿ'½6ýÿýý­‘<\ä§ t$‡¥Oþž #Ý4ç=ìwŸ`¿¾÷ûõõ±ÏOÝ'É(5¶ ý$;!Z;\G´Øo7OXT ’ÝöË+ón{M*O›Mãöùùñé§¿ÿý÷ß?yác{·¿ù;a]î>]ÖÉíóýÝÑJÕ¢ù°¦ä?ÀìÅâ®wW°ÞrCjuûÍãnÿüô÷ç}§ów¢¿„ö”÷»ÇÍþù ´˜öÿ g~¿Ý^Ý6d¤Ì'âÛ9\Ü}Á–^µßÑç÷"Ï·ë‡vdµk||yf¯×ÀŽ{rúxx¹ÿ F1 ÉÀÍ‹’Ûœ¿!׿ö‰(!+ùÆk|:i4"Ä{zz„ktC‡%¡íÃ'2… öýD¬]ùï?x¿É.à„æœÐO5¸ì!—IÌFO›«íúx…Cèis…Å=ýÄ_7êûÁ‡Åýæ{›_qcÁ*Ÿ¾–Ì;IdcyPpžâÆ~ÚÞaÿû§gìkhÎSøSí¥õÇûÍo[4¹›»:áã˜ã! à‡€{Ë m¨c‡>ìžÐWM„*輈N¶MFðÇýæIÌ ³%¼›ío›‡£5 Îs}wBöïî”!ÇÊÙüñSwû v‡òášÊ*q°o׿]¨ùvÏ9…ý|µÛCeñº64Í6+ô¶ÿbSãŸGÍæ¨¯®Ú …‚LP¤Š@Wóé‚;]Z§kèt?œnqÓµfºHWÛèÂÝ& ëæ»Æ4 ÃIÔÓåQÓjqŠ„Â+PÈFoß‘{$9þ0Á‹ Ó4Lâ$Z4&Ñr _þ<Í–‹t>Ž€f 5‚Øï+þИð›¿Hgˆ><9ÏÑèÚ¿”ª4õ wrR|~ºðßF ?¢2 PòüCi±£²Eª“ôœ—4Ã~‰¦Ý¿VÄÏfšÓd¶ÊYrJ4‡1UЄ^nø£ô-ôKÖP……¡QENƒ‡(²Ñ‚.ÛäÄüÃô¡¤ÓQ2Kf§îµ›­2I]àÉ©‘¯ªNÒVK•¤g&ÉØXpþ¡1å,ÈéÉ"XMãIôN!ÚV‰Ò¼!zT1òW:ÈDt™LBâaG%D¡šŠŒ”SQi?•€u7´_ ›v³«µ)²¹Î¦9¥ëà¬ÛM•„n^L’Õ³§Ñ2ô°ƒ‹£EÄ6–s)D1 ”ñB-¤¶4S‰‹ ŠI¤¬È2[ʉ-¢,ɲ6MŒc¦ºÝã4=Ëëé«Ô¨vlؘ-h€ j#•Zad/º™¨…éj4‰J&(‘eí6]A0NŸ¿²(´ßÜ0‚á·LÒÀA˜7;RÉRà—*Éem¶™zKj¯¨tàÏÂ…?Â’ÓZ.xL>ö&rÉ ë…rµtÑ£OÂ"YcÓéÔ—íõ íµÞ|1‘ËW•Æ(‚e ijU¤Dc=7JæZæÄ:fbƪ‰‰éœ“Ôã+ÚLÓPR³ óÚ“º´À䤣2éƒ*JƒF’k—ìÃÄ­Z99mlçk Üœl%4Z©$½Ž¶R;b™è.¢è¬1I6O§Ñ,A¢Z_¿šèÅ<=@Y™r²]mÅ1JÜj²rù‚Át:F¹ÛÕ:›Øy˜¨àrM®ÿ½6(¾í^¬ÔÑÑô-P|s‚™ÌÙÔŸL¤b~rRùþ”Û×g,.ñv¾ç*0côl5 ”™šÚî—u˜*ZBMe´`XA•tŠ.œP"ÛoG§ëÅ"™L’fÃr’"ÅN‰¢=üW%Ź,õ'É{`lJ•íBv=…´k­ûàýb"úYâ7æ³h5…"Ô^ÌKÏ’I"A°t]Wûš†¥g‹‹e Nw iT¤«å›Ï2Ñ9·û œyþ¬¯`´eËt~Ôìéª  ¥¸n/îR ]|Í.;ý@ä|\Ÿ¶•Öèk¨dÑ4 Ò vW¯U®OŽZn[ðI´(Éæâ iÅ- ùZ³jœÜÏ«(Ãa$všf‚"†â¾PøºˆÏHã c¢›tNué/Ï£h‚ôF06{Ýn±±öÑñ¡ÕúEЉýåFl¨ùƒ±?} ×k"ñÞP!ž7²L|v Ä›‚ø1(_8ä“ÓdÙx-RQˆöbF;›^_gKfú,[Áª“‹dR}Å@7ì”èÚo÷«ãœ±'åî¶Î’M…Ì)•‚çQl;ŠXEÒ"ÐP\ ºæN{é>-]ÅÍN½õgþ©¿H Pޏ· ý%Îüa×{u‘õKóg²¼^Ç\…À䩇{cñd‘¢â)ä EamÇ+øt«žîÓ}ëbå€ëJåBPÝ©6݃kóùVå¼ú–õb »¬^æÆP¬ëyÍ( X1¢T>7T‚ÊÌ(=fóbQ)Q¬0á/Ó祌¢Ù)¬`Zú3Fß§Vø¢Ä<{¡œþéj1]õ y Ô?’%@GÙÈ©%¼I¸,– =d%Œ¨„‘,ǃý}^ÂÒŸ&¼ú„ÓŽQŽb¯.í3[2J óŒ@,-£™ ÍŸ¤°Õ]ŽÓUc )l&…d¼çyuý ®TĈ@0‚&zãuïœgþlæ‡¾Æ ý1£Õìq»Ã—‡DÊb“ô§þ V?¾þŒÓ5 ×GŒÊV.¬O£tqŠJÉìæcPðïeº8jõ"X!á3dT1ZUìÂÅj†z(P0éç«Y°\‘>xrÂÞ€z"TyqÔê·AQ„O®(R|k 2Ja)бxQ (ÎÇ òÍçh1•§¼æ2H+uÐô Ô3†òÈdö°Ay©ÓtvšNo¤‚¡M]<È×= «‰áZÔñŸB,]-p£•µ‚P[æ +Z1Øc¾Ì¿PaXâ´9óÙD%ÓVdG8h#1 ´ JU m­jÍÑìlL´´Él'Sà£E+ò,gã·~FÔ:%jõÛHÔ.ü7«û=MB²²eoaYy°A(¬lxy:JÃòþ)ž#øh& /šGð1[ŠÒNNÌXP¬˜¶é¡:Ùƒ{D)â µÜ3ßV”fD¨ÅƒBQÌØÈµf ¨í­þ¼º7²`¼H£0Z`¡~©P¦˜TBs¡\¶(Œ•HÚÿI.A×I4ÞÂXSo‚BmÕ†Un±„B"*JÕÏ\µ/µãºÔ7l7TAôä·Õ¥z>–ê…z©V÷{Úƒutií›°m$+U} ="]V¾‡BÛõ¤¦¡/.D_´[Xï6wÐ(â”êMº¿ä~±gþ̇ž™Gþ’×ÚúŠ»ZýIŒ×›ý¢àÌ Û,£IÄÔèÜ Ž"UMÏ.¦£t‚%i#ÖH_k¢8"ò³•dtx ¡ÌAUÐÕzn¦ –6 ѶªMÛÿ±¶ãUÛŽVKF“ÜU°Åú€A67âRÚ½¶›Ã!–:ôkvuÙLpæ/}ìÔãq²ðO±wߦ Úõ²t5 y÷Wãþ÷¸„ƒUQÕ‚šUC>¬Z­ P _›OÎjˆùT.Ë ¾ymŽŽÝ‚x§V·œ@LÏu¦¬¹–ónþO \h a¯ŸÜœôªÑéÏfB>ÂÔ<}„*@\´ËxTƒnÍÌveaª7 T€Ž€EÑ=*ú€©INʰ¬.zê ¡Ð ˆíQÝFcÉíLÏ7gè0•žj³/ÿ•½‡mh+Ò”õ:wúçÞ‡g«Ñÿ¤­¸çaå=oX¿Çˆm aaGYòeE¡Øe''¶—ˈJÄ×ëôaWE‰Ó}ÐË~¢=?K—)”6 ö m_™µ¬ü˜µi@m5iÓÐTŠ­53r#o{4ÖäuÇz£¼0ÅóÅ—-´0‹7þ ÔÅ }¸!Ã(ˆÐÙ*—‡¨£2ôk¦ÑÂoÌ|PÉQrîµÛÝ´­Ý?„‰^·FÛÆ(%˜{P=Øå9Œ´‹c”.P­þˆªuКÕ*¶rÁÞ!99áÏa#=OÜ ÖŽ°[Ûqt@ÓÛ­MG'.¸µ —°À@»áÈïõ´Îý÷ð·ï§°ñûx‡>ՉﺔúaP¾ªŒAgÌ"îÑÌs(­|sWóñ^ÏêÈ´±ƒ6w¼S?s¿Sô"¤SµÜå’Ž)‘#Ñn 9åóHºÍòåf[‘H;×™ß@KiúÏaæ/࿳h~‡mýžÏسoæv•·ì´SÑC2$FðI#Èì5:EÝG!¿ak°~³`’œúˬ/þd¼L²tBÎè2ÄÈgâ£$›&T€¿8†ñ„Ê0û+Š ˜¨Ó=9OáZPçç|e¸RÂfé䄱䓣8îhæ•Çýôyâ$3žøázgHE^NØtdëÙš‹F¼œ¬ñdèv€»q¯{»f>pÝü¥iëÇýÃ6Øb–É:6±q<Œ°urWË®¥µN6À`R0@Yl ­f‹Å\iáa%(@vàqÿlÎHž³ÙN#˜…£g´sÁêh|‡ÆròQøŠ’”âð'Œ£à,¯yŸjÞn«¤Ö¶š£*ÐéÊšçw d…ù#t§_^ä7 °^R\«Ò¤sEì¸Æ9½š%KYÞ4ò3”3¨†¸aÅ·Pœ§8CrñEî –âòõöÀA,eí3Á-/ja<4õÔ ŠÜòú¿èDÙu¶ETŸ+ŒkŒal-"äš«]_Îst5zTÁ6¤8‘ÈûCé’Îÿ“P-5ÜJÛ‚Y¸Z.Ç~iu'Šíƒ(^(J‡6èÛ_AíúéVM¦tp'Z­Ùê M[qˆS¾ZµŠ˜ñ)Ì.À˜õvÃ;*Ç-*î þˆð’…M@køØ øj×òTÁ{§hTËÆ¨YBÒâï/ÅÆˆâ¾øs؉Vsto™µÂv<ÓÚýV}« š´@~.)„BÒŒÖ'†òrÍ2í’Nìu±HøªW¤0^–M%~øÝìNæt‚›/ÿoÚòþÕøwPüÏÃÂ~Ê•ñ?»=Ïó:ÅøŸ­~»ù?ñ?¿Ã?ÿ³"ìg‡Â~z­Ÿ:ƒŸ:ÿöóµa?ÿ'ò¥9ò%ú_þCÉ–ÿ£ˆÏ'‰8DyÄâGòô´1•ížT§±“™lo#Õ”Î,‹.*Wx‹ÖÝÿºÚÁPßÝ#è?ON”ß­CSê¡§$á©Í·QšbA^»GJ/Z(£wÁÄŸª>\©f—“›…R?.èa:A/#Ý¥Òú¶ÒæÑ‚b4!8lG”@•Mo`,HXÊÖ!@šQÄ­æ²ýp|3ް) wmA3îf>‘!›^PM–‡Kiêñ®r8qõŒS\0ˆŸÅaÂø ÃDšY@ÝL'IHHm[íaie°XjåÖ|³íâÈVùÄCIyЖf; ”ÈÄ#ìðI”eǨó.?]D>08„4b¤ÑiÚŠÕb±#ņQâOþлænÒNÁ] °&NÞs¶v-]§¶rA‘M[2EÈlvcsQbÒÑMÖg=³äõ¡Í~f«ÅäBiBßÌ+9´`€_‹S¥R,Œ¥ð¨ŸÍ> —¡Yt¶5ÑÙuÑ9$Ñé;Dgáz ´Œr¬È0ƒEaЏÖÖï[…]‰ÛHE^DrJø=c‰Â` \KÏzä/¸_]½,b;_AÛ,håˆQ"x6}³„Ír±6¿àãž·Œ/±ÛÄñuL×NÔšä6^pZŽa7KóbÍ#NĈ‚Y Ú{´e¤åsÿ4ÁeM–œ¾yBJž‰°qÍ‘e: ÒatÊöˆìÈ<°´æX<ÜÑp—ó™•j,¥å9xíš>ˆeM­Ñcš6G]#øä?Dãh¼¬`*hÖ0hF2 ðòjøëæÈ10ƒ(ÄS„4K™DmtJ"id—b€Ð ®;0G´èŠ‹ÞLh9oW“SЉÌ®âË‚= èZ„IÚb”5C³£iºš,“ù"q;°Âäm’åðÞˆEoG­øÃ²?ù—ý¤Óòé$].}¯Ë <"_’—8P^–b}Óõ¼–8Žü°\N˜žÏò÷XP/4ÕŸ|yJŽÅõ¹\¹”. r¹çÊ‘R[ÂâJEž-C[: &Q‰êÂì|AAldØôµn/**|ŒgÝr9Ñ»åOŠNÇÌ}–‘r 5 ƒ%™EòD±<ø ¦YBç´€¹šùÙ1¢\Qa ±Ââ¢ùÍJëÅAD øQ(äë#{Ø8^ áa6pM Ý[>Ã#¥Ç¯öÉŒ6  ¶†èö‘,d,ˆ¦y6K‰‡v§s‘(TÚÑâœ#!²L™^Ĭ@LäÀCZ~I¦{ÍÕ¸U’—×¼ŸÙ*œ.’÷é ÕNÔk¥GˆÖ]‹)ë[öTZc¼ÂKóöWHŒÂ¶Â+\¢´ìQìØæ43<¨ìñЀ="ç#Uœö• uÆc¡º—è0q/˜U.ÃbÒÛgŶ(I¢}ygÛgQ¶:vuû0p 0‹{Å?=Å]i •GÙ°Y¸ß äO®lžÍ¾ýþ‘?3­‡ݸ„Ïâî”ͦnq6áeƒ0¤]†>¥Ða‘„Q)ZŒÁ`f Ó&fµ‹jcÖNèèqe!ð2ªm™¢³ÄPÖlIƽ:вL‹O:­ÂþßFŒfIÉÚ=—zPG¨?‰{U2GFnÏ`ä¾âl+$ôªW‰0æ;à´Óz‚C\ƒe6C|1ÜÄlŒ@_ ¦v,F¡ïJƒD6Á°€`Ñ.*ìêlÑýy}ŠÌFÌJƒyB›Þ-îÕÉW )+´ $Žq`—<±«µÝ“ Œ dVË%3”3ÅüxÝ);_¡õˆ1°k渴âKCŽè{ÄéR‹M#ŒÎnbvWXuP+Ü.ÎU=ÏvŽ 'îtÕ(,Çš­_LÞM^[Ü$FÈËò Œ5wД$KHѬ°ä-¨=Ó’NíÐ…÷£ÆËÀn_sÎÆþbip@Ñ~ÃÐjY–-1õAƒG^D5Çi…™©Ø«´ h•6²¡dµKåh@_öE€d‰ÁøI²dˆÕ…7R”=G”!•]4bP­QÚšk={â‹’Ä]U«äù‘ 8_(÷——þl\dI0™Þ²ø}8Øø1-vIÑcÀ¸ 3ɳœ>”;Ò±œ}=ZVâ S¹Z3Çi&Æt£phÕ23% "€Xjî%ï—bÇ‚¶h¬ Î`Ïq‰Í”Ì rd{¨B¶Ú¥“ *½]˜K‘œK¢ÔH´In´‹‹º­Ó„L‘D—H•zi¹Á .¼Î0:á×2oE±—=—̘«4©¡°(£"Òj“)y¥Èi)Ì1¢Ò?ŸœÄ~%°³Ã¬M×.ª#¬Ýâôb'¶Ù5O€d‡Ö€N‘•l),ÍØÙ±¿€…d5r!k™?ËŽAsObIý‰“;E™kˆ††LN ,Ö›¿gÍzƒäÍ›"9øæ‹‰å7k´:O(ÞŠê^]âx§8Ud¯Í¹‹,g úf°Rù#D´Ø©¥®—_ªÎü)Ù•ÁÒ¥^é;ši8=óÑlû}º‰+Ÿ²ó¼<”RûŽóæ"U²qÑíš ±i¬˜sé¼th¯?¡S{ÂÀ§uÀ¡’tîC‘ì0Šcx2çø]ŒR¨ˆaá§ÊŸ¢1X8ª¶…»Ã*ÐшÜî›Ô´ƒtG÷HÖñøh=ë–-â ÌX>c› "*©K%¥ŒÀáF,bÛÐqlwcÓ:ö¡Ûù¥a*½XC¾š:ˆI6¹™ B7Y»1ñô³E“¡±hÎ’:;ôàјeÅ{Ôõ½^éò v=ÎVñlÅÝþÌôé*CW5Œ´"<ð¼b4®æ› ”>Þï¸öÁë@Ch×”]@m¹‹h~ÜRk)– ;†ÅRÐõ{€Ë’Å`7St=“(YÄ5ÝÓˆa‚/#Ü¥VVÈ¡[”ˆUWÍâKhàeùÕ¨9n©¨ÌªCÎ៽úŸóÌZ£iñZØh4kœ]«D-‡i5*jhußr5¦F MÔÌ»”\/£ÑQê]#f9«ÝhĪB¼kÔ,‡¹¦Ù©ÝlÒˆXŽÔóÓNÏ)úCÓRÙðP†e©ÑdW‘µ[¯€jYWtÁcÁ­#òªÆóá –´3bZäˆ(RᕞLýÓH­²EzlÊøÜ5¨HÀaº)V£XQ4«œ‚Ã|Sª‚ÄáWÎù¦=½Èr>Xä…Û;N%âp¡±V×X‰È"LrC—O½J‚7£ä-r¢výЇåµ~µ-ê«V?]]ë8b[ÔU½2vô:RÃ_J…|kÉ ÄÖB.(ÂCøS‹JØÈ8D‰Lü)ªclŒCª(é¬l‹Ûpè,jî*;tÆ¥M=.F½ö/"ãgŒ>¾Â,ƒ1ÍO'~†â1¬c×?Çeê‚AœZÆý"R ?ç}µ–½ß‚‹Âal:ý¥°5É,H§s2w&³8™%Ë‹“žNœy†c‡ž¤o<J¨^T¶†qn*xœç›Ï†ºØ{$3¨>sÝ`‹¡ÔHüŽHÕ³°MÑ@DÙŽül©žJ Õ_ƒ1˜ÌÑn="ù‘Ñ©äƒ×úE¹kj:¬*ÔÂæ)]Ž•mÒˆ ú¨e¾Î Ò! #xÛ4C˜?™d½ÉriÈá,Š0^¶dÍ­U¤xÂ&çtw¥ñ°HG>^Ìšû“)¶fŒ‘†¥çôb\Ñ”±|ÏÑgL¦rC”LÓxuúï@â´ù˜N¯sÖ×»ôgGg=g €¦TZ¦MCJ1Œ˜%fžÞu‰×n#Eže³ 7¥ßaÝÆ UrxC6â)!CD‡Íšo®Œe:,ÕšOG×a´ä—`ÃèÜ¿È+Óa¥7`M¨u4oq_5iDõ¢šQñ4;*]µœ wJž”>£Ë”äkZHQ ©ˆƒ£Ç§ªæ­³ŒO!Ç‹‹†‰à±2¥°òêXžñ&ˆp®Ñbƒ65¨.P{Ô ãhJÜ€šæÅOJùNÈæ¹Š³¹ÝñrÊÖÍÉjŠéÙ-S´ X¥@í8B³•ó¿;&¡r¸âpÔAGú¨cjë‡nMùâ1váV²,f…V i)'·å¨tÑQjåŒ;µrŒ±%KÞ•8'ñò"Ïô^kïYÒy† °üQ2I–¢›cGwT'j7üá•ÅC2²ó2NýÉQ'Ä6wBó~»G>¼ï0žÜ”)ŽaÓ>èŒÞ½8Q…Eð‰;:ñGY!’—NZ(Ȳ×~u¶ñ<5¹dËhš‡¥†òúTj)¼ƒ-&9ZaU;½9°³=­ƒß÷¨åÛ‹B (ÒaÈnXeÜír© ”¼ eY|æ¬Á¯µœUè ±ÎƒÒe3[yº—R%1¯¡ÊI¦}7/¼½¯LØ^‘½¬M|£Äæ9a­­fªòò4¯È@>´DQT3WÊîòp0ææöGã`9û•*fÙ”3€ž‘Hvø,ùÿ؆ÛÊÃziHÀöéð®”8¼¼Ÿ¬›!¼¼A´§0Zll;î³I.TÀ“zRnpûžJ7šÇÖ“cQ_¹jówX±äíÖ‹³€Ñ·Xvõè+w™Óu„m/\“(?eƒ ûxšôZرí¢ã·<ÅrГ\.¸Û CQm*°t¸rU¯@@ØY" !  C‰Ž˜:ƒIŸmljL­ñS ù F¼îù4¿Å0/uœÛÔ©¨ÅÚÄ;µjl§î8ù©Su«©È;N†jU¾Š¾ÃÊW§úÆÃ íXYjUÝFÛ±öÔ©v‘¦íü ú–ˆ:ÜÜkMAý"¶ž¤6KTNñõ×Ç2i‡Ëükc™vW€’[­ôSÊ¢ ·x°LÉ‹ò ¢Y°³Ño!$ËT‡ÔÒR¤xz–DôÂ㡯å­OZ»d@l ’IžÖ̶¤“¯ÅůKê[·´Ê‹³XîÍ´4ö#vˆB7Grït™hF(íc«ç€°ÐrÄ©Ð\þ"hFiqv90DÓìò PŠ,®Š.¯µÐ®+Âo^¬ui³äÏ4–o'cg÷ÌþÎr¬(™oEwËt°€í¡Å£Fʤ°€a‘eúÀÐR¾Ë^É‚r¯Uµ˜W•1eS4,ãr§_Lt x– 핆§&þŸjmMË™£¥ÿÍ'hžÎ5Ž,V3Sþ™žp ŽÑ=>­î8ÿj9íqþNM€ Ô s<#q³Ku±¦BÎñt®äÏ•ìe@Èqlœ£•GìràÈ‘ Â#¶9rìJØùl‰-yº¼ùùŒ‰]ÙÂr,æÏ§£CŸg1ú„Ãgeje†¨¸*æåt‰ÉŒ—|ºeºee€(AŠO)À:ñ‰˜u©  UI©‘̉"cMˬŽ]äoÊ©š"ÊÑØ³¦jα 9ôŽSæ{ìÚºvQ‰m{“ò)IºØ¶ï°Í‹ráŽäÎJ³KYÀv¤yVš.՞زA0©¥~Žc—P`ta--z€aBëé ó@.—JvDÍñ™+4`86f…¦–/ºÇ±%¯¶µÒFçdt.`4Ô#EI-:G«GR0îÑb›²)á›·c1i#±=¡¹ \éÎ_š\ âØ‰HZ²Ëøgƒ8’T/ÎOîKõ•U2¸g ,þq‘ø/‡¶?E˜ù9ÑââÕ’-Ò0Òeîk@²h- ž¥Pn¨9Š’hÐH¥‰Jªi¹©"•¹ÚÒóT.#–2Yybà¶T„ír ©&æÛ¦_ óB»Yš¿*Ä&F²!‘5”+ŽÝW ®ÆÁ‚1Õ³t_š%ÑAa¼æ…bôFÅoz‘'’ù5<Ä49xóˆÓR[­§”m]¿ðÌ CHåŽxýÄðø¨Õ¤'øå™µW?:EWJ”ûy±:§,EB}¢×n—ð;]I«Þ©B†?BýhyÑXŽÓE˜GZœdlhø0¯bĬx¯l5K–’ð4ò³¬æ§]^ð-Ò²¦£‹WÉ3ol¦èª“Eï–þL¤¸ñ3Ph„?à†ŒDl ­ý$|†y_v¶7ˆ¾)}hé5?F¬á^ÔBê«"/½þ/˜Šd‰‰haS´Tc~i϶6Æ ‚˜¿Ú†ñÚù…ýŽñ|š%j‡yd×ñAA.¬æxïg~Ô R ”ú냇á\Wóüžåiz|æ/ ¯ÒÕ•ˆ'*î¥Èˆ¢@/fdã¡Yý–Tí»ð”ïV²F£v©†vãI¦0¢Ó㷵ءò’7KÇFé@‰X”‰µÐÁä=Ås›]4fÑj5Î+Xy Oçþ fOH©8á+îX‡»xçÊèÆ†*ñÒó™gÉ$ŠÚÞŸ¦‹SÌw¥¸Ò¥P›øa /ñ™|w xúL†#p‘†´b«kØ8rGztzl…V¹NWG”alÐýEE\Ïa^mõ¥–&kÚéöˆtA ÒýV´†Hò*ùH|1âq‰8ÿøA5ùÉûù^¢HÿUáSÛ}’š¿wxõÞTWïŒÈù2kIѨŸU“ÿ™È3掆åžk9jŸ™És«7f-?"l’Ý‚^ÀZÞ7WTU çi' >ë6»åV÷ŠSAÞHÇ -«étívL}RRf2EYh†šRa½úËL&%2¤„uÑ3ßÙÍf2ÅÎ6CQ—ãÅúVØóKsîC»Ó¬,ÌÜñÚ:*èoްˆ•”›EëfÅB7e¡ F§¸&õ”L&ûS™Â̇Ma26„eá`©o½­j<á ¨Xh¹ÃkxÆ&1åäÆDˆÔÂ^l¨g»¸¤¡÷P©Hsbî¬ãªËiHNÆTþA –9© /5Q½¾r‡¶nõ,üì3‘Úoj[â''UÉQâ¹…­ýöõV ÞöÛ¬¶²è´ŒR'ƒËP²¶J&Ãjkc5BJ4PoèÖá·ïÝ(ÔÎV‰I¾÷YÕƒ|/±óÞ )k®„ >¸æ¶>ÐÒÒ÷ )õA‘æAý`›þW4ª8|Ö˜À{E¯8'F%‚lNÐþêæØº*è°Öjh“ÒnIÅ—éäÔGw,Ž4@Šg^´Fv‹êQPÍ’Ú[ÜU“c‹f¤Œ‚>Z£À7X»Ã_øE“,¹ðÖÌé†çóE'ïðn'íÆÞÈ“1ç$”4„²JÅ¥JñsŽÓ|ÿÇÁîÿp˜ Ë55¼2ÔP¹¤ƒˆŒk£Ž¡‚#×ÄÕò¨Ì¿üÕÄ?‹2Â&•b~hÓ…Ï!_Šbßß”N<€rTÙ?:¨ÕÂ_ú3BŒ©fmCÍZ¥šå­“PÓbõºÉ»åø¨33uÜôF¥úQŽ©?~ƒAû—˜™™EÅ®â°Wžcv3¤Õf´†óy“œ¤Ód–2åVɈî©/Å©áq³ÿGÊ>£ìGåZ"3`d_PÐ`¼"ËèièVz£ÓYeHÆ|•¢Êq>2å~Ê ”ÑÌû&Åàž@-`DƒˆbÂÉtɲc I8d„Ëg 0SûfÂÁd5*R…=Ìt~ìµ€$;3€¯À0¼Ð•WŠ8Õ—ªN %ÓÒ©?, 4¼ |î!ˆ.QºÇ3õ³3<ª<“'tq+ê­ØÀ^Ÿ²l32.„0Úæ©îœ0ï¡ „|yå9KŽ‘t„æŽg陼·«<Î|$Ö"F{mËX`5ÃëvÊeêãž×å”Í0ÃV'Ä‚:¬ ÎÀPëá/G[{É}/À ƒ‡!u»}¬J—Uƒã™X¾4î‡o}§Æêè5_"Ý£Û+ϰ3¢P½W¯0‡[éqà'@Éãv\:e GçE0açÚÓ9,ìÎvè: ò󒔢û¹øɲy>€:5eY^Ä„;,F2f¿—¥+ÜÔ‹ Þ‹²bË‹;Ì‹2õ’’-³NRÒrp#ַȹ‘™=Ñg&Ê0Bëj –ìÚÀ2Î/Òã‹}ÊTãALÐáìçPA%™ŸÀ|X´ ýÐT5ÜÚ§iFâ—a`p¾Ñ”²Ò"SÝ`Ëæ”Å ökXcýÈ?ÍXN¢FtA ±Ï?¶häÄ „Ñ;îã@a/–cØr°þEg–ƒ‰á«ìµMáÀAU ’TYøeB|³Ê–LïQSÜŠ¸|$3gB¨cëÈæé”EäÜQpu*>¥½~[5£©_^³Eýt…©·@‘Bp x_ý¸þaˆ µýSv Ã9Ã:Þ3ªâ'^Ø8úúü<¤K:hÅ{€ÚÅ úf’G«†:‡•ñ Àæþøñ§‚ÂV­šy€x]cPÆizÆVêQð9(”n‹•{c_\ň(FÅ®"ÙmTe Ss-æ²z]ÓŒ8Ç/\æîOÚ[?a¾htv”kþ¡cà…êKe¬7£Úc§ÃÅZÞk#3è¨N)œN"{Õüþ-Ò'—ˆ~ßÀ…VÛ(.V•ƒ]úä¡44- 펑f2Ë(°ÅiõtÉç'D(iHµEž£Û±™±¼¦âèÅEµ(ÙS+ŠË“ëƒ×µ®™J"JŸbl’È5@©œ›z.p­“ñKBÆ:ÐÄ<¤ …PÀ]—'£³j¬T‚y ù޶<òZ”ñ£åLRƒ¿F“·‰¸ú®Sž\£ÕöŒ­Þ-¼CEGĀщê`ß2¯…»¯%2Þ øÙ¤®¸¹ <É¥?Â@˜ò¼Á#]¯5(J1ÑXW (Å!Û8hò”XD—Š”kL‚A/"KÞaF´ó+Ö]ó—mˆ%AßÐaä‘eü-¯Å¬£¼"(¬Pa¡IÌyŽÑ÷¦<‰E o‘tD¤ê†giGÆU–sLF‚kM.Âa€CƒöL+r߯·èôb¾L'é)Yè|Øá@@‘"õË¥¹^äÅ*CœE04‰yÏ,æÃÕÔX!ª).∨Åo¥&—ù“e2™¤Fⓜ'…D)•h–sFM)Kf’¥xmÒï)ödPeäåi "X”nÕõΤ~Jç\×õû!•¶|˜x‚™U­‰E ,«mäÍh¼Ñû˜ÍS˜ô Xa—*[\Ĺ¿já–2ñ§£Ð×v~?¦)•~… €²‡Æáe[Ž4üüˆ™#áÓ8mû…ˆq×Gñ"ÃÛñ³iÛLSJ ‹ÑËñƒIPVsZ‘BQ]®|ÿþ¨Õì“­¾ºåÁiÝÙÈ=¥u_3b]ȶO@.÷GÍò–ÕŠ™¹lÉñc+ä­šiM5òXQþ–é.n+)SÌ(­0f[z ÚSÜË6s!†Ù¬Ï†å”ó$ÈYÇŒÓÅͨîÇ¥›,M–ímܤý-…£)2sƒ"‘<¯¬‚›Á8®¿Äž_ž‚f[n(EÁñ8â2•K½*æ™à-¶îVgÐ¥­»ÇKðÉ­v§ûÍæ³ª—â¥Ä³â¤GK˜5ì•>[ùò”ùÓy‚ĵб‚¸ Á(°C‰|ûÛXÀìQµú¦jy–jÍÑéáb‚ù¹¯¤±’e0,Ï7ÕTJfFæbžžb üé4šQóFTÉÐTɶ¨dÁ²†žxꟜN}éòi„äÉ Xtl¬ïhõ-ðçûf{Ð1aúd‰n¡Ü;¼Zn¹„dÐÐÞAá-Œ*îó¸[lNH𩘤ËbqÁáµN§ Æ-)аÞ~«Lˆ„Š‘Ðªn½ãŠðÛXDd*¢gc ãØ/¦YwM ï ªgþ|^ƒ|´é>ÉHÐ82}~y™JŸª›ª5´5vœXgŠ´B®axÆA×…×PMv! ax-‹®öŠ}Wm€‘ð´,âc$Ûë±Ë^²¼ÛÍž‘*šÍ ¬‘Y€8TQ”üäƒK~†áõÁótÁW <\„H›ò¡Ÿ%>ié» Å´æði”¶½:BD+¸ °T´Gíí˜Ú‹ç¦¦,­Õ$N©Èµ¶sPk5ŠU­­.š¹Huk¯¹µ++›í`y±s ç8OiQ…r‡ÆY)¼Ë„‘Ðè[¢R7$~3’‚×1ó4¬VÆÈFËx‹Nù ä…3¡QÇPx·]kSÁšZdÖ s4,ºŒ…Ž'ä+= L£®ï¬L¹ív­d¾H3½hc·T"Š£‘ çÑ(2FA¹êé e($×´¹&þäb™œ™f Ý„CוTÏ¢D¢Á\³ã$’µÛê¶à€nËE£³ÓrÐ"7òÒb77ó , Éë<¥xZqX½ÒMLRõ|»ðƒñ…‘‡9Þ¡|†ÄÀpT)è-ÝÌaEqĸ°šqÉ'¤Ed3×åÈ0è<Ôµè¼+kɺX¨‘£§µFYÓ Š˜AŠ=dä®qÅ4âf‘BÕ= TàâLЉŸqdâ§Ôå°âÚ(ÀSêê½a:ægÒþ¨g4¦QÏæW8›­‹u×ï¨èÌ9_©0ðä| B:høK B§Ýý+ÁdË…¿D+eëkLg~†%õ»¬¤V’pâìÀc`<á`gð|ϬÝ#äžõ@hHô˜#®d¯¸äÀ ‘¿Ði-.F¼ùF)º _£rÕdOѽ$•”„œPÀEÅ:©CCX§IȉÍ@gÌp{ÅIøMC—Ê;œ»>±ôW´Ù…Íw$ê´JÌèIY÷6ÅSH‡’AçZö:™ad‹)óL+Bu;XJÇc¥hƒeúÀ›—GcE¼¬%Ì¢hJ! Ís,A¨Œ®»ýq%he2ﺭÁ+mwtá¦Ùˆ¨°_öÛ»»í•paÄ ÁÚh•+ÞbYˆ4ÏL ¦‰˜³t>÷¡˜06/F6Wâ Ÿ>ü·MUì”pYwxjwäT’%zÞÌý‰·¦ßS¯#ý¾¥nDŸêf ’ž-`uˆ@õ–ñ7öú=@D€Nè¿ÒYΘÂÍ®›» '­ËØ¡\’;—Úº-ž%âþ¨¦ȬŒZ±ÌéÞLK\D³’åš#K7H!/±r>bqlDlV I4šy!ª!^žyT Úæ¾”vc÷åZs %§ ôéá‚ä÷z¡™£ŠŽ|M'¾Ÿü0ïå³V)Ö‹lœ)Í@N†ÂZªb …ªyòöý4ZrŸÚÚ÷ÊÈ›’LÍ'q4ÓG¿‘Áb & ”Ö¶T8Ï,2ñß²Å^$„¬Õ´Ü+4(˰µ“Wg Þ€B˜ÃÜ¿€Å•бõǼÔgþÛ‹3ql= G·¡ q~8*# ß2Û( Ï­S–_|¡q1 ¨Ã0¶zWH)HÙ©c­0Y/Eb(Bø4OO›¨2-®5=1c“‡ÁÙ#ƒ„u®8 yÍÆËݳÞk'Ê&ʈ‹ãñæã~ó»X½0ºË8‚ñuÎÓ­ŸfþÏ{øcº… u[F8–u3¥¤%ûT ­fÁr%FìÏ~Œ¨±UJ­¼…ãØ šæâvöâæ°›úQ©Õg*Ž2"¨ÅáMUZÌž"µöÁe +³¢Êt¨2]Ge(:0»î©V†3^›ÞÁµ™­`žùñêlì#¾‘€¹/~Ætc|aHžf7$Ñù܉âÏq¥‰—YýÙÒ tðy³;H^ã8i(/šç„Äœ¹HÂ0ɤ» å¸M”;&ö¨]¯°#•cÀó«lì_$Sœý¡‘o“ã¥owÓ'‹ägD7Ï3Û߬Â(=Îæþ ˆÆAPù€&²yûQµq+ƒÿÍ¡ÇÅÁÔ-@yh¬£<•/vï’".a%Úo›Ä£vÏXËvqÐôã^¢…‰(ö7¿GØlO#ÌF9j¨ŒÀ8€ºÅ2–ÑRÅ/0ñ§QX,ÀÜ]–ÞžFÓ~‡<+;-c½bq†VTs®ž‹%ÐjÔ)ŽtK 1Ý¿GUÅèo±ˆ»Æçr應™¾(»mžgíÎ+—º¯zMοþHÚ+‹øOk³?Â8‚jºLþŒ’•“ßúK$Ô#Bƒ!™†Ž!³ÐjÁ –EŒH ‰-ü $2$"~ˆ”Cú¸_´j)/Õ+N\‰éé¹ ójJ&>ƒüà¡\Qä¨ö!9¾ˆÜ8ˆQCâb1zC@nEh!ç¹êJÌ&ÙŸ^‹:©Ud ÛM·$5Þ!“ þÚ Ç¿c:ÞŒžNsê¤Gùœ|`l¤ŒÀ‘Ĭ%}º× ©N‘‰3J 1,ëËèÝ’'Fà/`…š³ì`݇¨{Ôâv‘4‡Ú9ua"õ³ñVŒÆE4–ˆ)ì/2zÁMvt<€ÑC`—¾•©Gqz"wå|-Ð+q ^—&@·Xeiò¬—î@l¡ç)éÏØŸ¾÷ÙL H;–^oX (c@hã] axA‘ €˜O$Cc§uòa©e)åcZ±xÐ$ —”h˜÷LݤiTc®GeŠW¤øöúÔ#âXï‘á°H–Ä#Œñ‰oèvÛ‚‹hÆ_ÑïaÇ8ì‹s[Ù¢õ®eR@£RhXˆ+JÚ° CEmFŽa³¦\ ðC³‰/”ÔÔ©–­~a2j†I< ´ÈXͬPMìÄ%ÎÎÅj„öêqò~„بfö¢â’ÀjÜ3ÕXاÕá§¾Ÿúaˆ‚“ÊÁg¯È>aäÒ0Ïýó-6Ï¢>).4rgP.^• ÊãYŠg½hX‹Y•bAúoBŸ*B“)*N&V‘|2EÓ9ì¡q>A—brOQ«>žFѩҔŠêN)"¢ëðk6o‹“`!D_Åkj/¶ ×õ©UÊTApq‡ââØŸÈÌrZE³1Œ^q`)®¢ë0°8'E,ˆ£¸¸—[¶@BEÇIßâsc’Þ¢U þKØšD“*ŽãÄ2÷Ç&®SXïf¿o\Ö:ƒ"CF†E+ŠySM,:ócŽužj Ý€. }Sé^Ç,VIê,—~0Æ+qþrœË<§854ýÙF{0¹$½¸¤º— í[ÃRíŠ}8ÉM~jípò̯òÈúÉÜ´,ôEiƒÏV¡¦êª:™ÈøÉ'éÍ?Ã9œ¿B¢}"jZõYfB±¢Î£\Ù%[' Eʦ'äãÀ§EÑÆ†GË:<Ä&óŒYà’:ÌRN1Î*âHêLˆˆsx¹Fj2h¹*±+ÓQc4ª "4; b£ÊäåÌã&ØýÁ ¤¾·TiPœŽW³îû»´™kδˆÒd˵ˆF’¥z ä±jë|»ˆXP<^‹Gœ¦Íò9¼á‰Ç@šéÿ`UbÃ-…¸}ýÿ³÷¯OnãJ¾(z>믨O;öýàÞâK£vœ%ZÊ¢Xåª5ÝžnïÕm¯ãnÏÜuþú‹L  JU«÷‰8×=/SÈ_&^‰HÔ‰;çì!jÞÊÓ¨ÇM¨,ÖÒR˱}ƒ“bÑÔ¸&¯Sj)ó·È— ò̶ímaõ±glëóTcÁ›ª^“zq•ú<.ªë¿çj¦O¡ ZŒOö 3ï¶l ÒÐruEêÉŒfÂ}os˜gRaô.³Õ=ë¸Ö‰a3Š*= [¹ø;21êkW½Lë,pb¿<¸X¼@A³·êÊ™È[£°ôÊ9ñ…-Û6Dm³ó;ѵ Nˆü_œSþYŒÖG†B.S¢H][W5984:.¤‰±Ãáþ\Ã)èoQâÀ_«V{`t’hÉ1Ôå’çÜ6澎þëçáК/ëá¿§ÈûF Ñ%G—fñWz‹É¦ÍOmk¨I÷vëÄ¥!ð]œ%—Á’ƒ–µñÖ%T‰|˜ö‰0­ñéb9ÉF|Œ‘Ä— Q ÜzŸÁZªÛÏ<Á,C̨!,«œÆ4×7ÎËQÓZX`ÆøÒãÙõ€ýøÎ¨wÌ…6™òH©ñéš¶$„0t!;“–3ñËinŸO×Ê9Ve’Jùí-¯pq2Ïd7$)Þ\5Äaå›piüj °“áY‚±S¤¯oÒa¬ˆôõ1<ÉN•¾¾F¡,Ÿ*á©?,MeFÀäL7÷˜a¬æLŽÎì£sèY=Ë`ì³Ù뇦b°Å']Ä›RuéìÍ-9öèìÍ-©;´qëëµ2Œ 7|©ùW‘ƶYÉÆ_½¢ñayÁÅtP9OYÔH\½¾L £‚^åRVv»î30ØUYwc•TÈ&§ª$0NÓd ä«>—ª<…*Ÿ0f”¹Q ±ïçr^’‘¿_Ë© r#Ë´+Žìø¿ÐÖ «‘XkiéÈK·M©ßƒõ„ ž1è¡!žšø«( æÌã(êw=î™dŒ2×:Ü~{38Ðìl£%Ǥ%Çü:3383v™m¬@&+°|EÚ8Áz´³éêldŸh"â˜6 ³D{๦±ÐÕëç »‰ gÀ€Xö§GÆÄà@1—ã@Ú`¤b%kðóøï~Ø GA^ZÌ’ÿØLa‰®‰lùÆšÀ‡?D:nŒÖŸþSHðËË·Ïz…ψñ!ņÛqËImòWìXƒ¦9ÖÃ?¸¹Øqèø4KËýÐf¢¶\ò‡¶gç Rƒ÷a‘µÞ4¨­»AÌ’K·§@MXX¦/¾LÝ#—ÛbQ—¯*’I.é«W±GÊã°» èuV÷¯5@Íʒáf‘.C¢;MnˆÎìê4~i[Œ¾Eºö¥uxá2Ä-· œ†pe½ë‚ðÀ‡«3Øí™A¬"••Ùe‹C²Äܶ\ÌÏBDñQpÉ–A©ï@çû… Yrudûµ¶‡§!ƒr tã î *Ü?6Á²õàrXâ%WØœÜ `\/Ò$(}°^5LHr›Ï ùPí§ß óÌÝû,Ú‹<ÜX'¢±,“EzºvDw»Z÷!°XòDï$ï à)n‘c%æTáöÊóÛal~²Ê’-Øn²uCµºœùÖæ¢@õ‘l]%xÄȉêÄú,Ú%Wu0;;?ZüÖÈ…ÚŽšá¤S»³ë«bg¸'¸nÂó5rá2çxÝ„çª#.µ°@]cQx°êìô|9ºÕèì àš 0WæKAEòÙ(ñWA–ÅgP£‹¢[´Yhݲz«ïm±¶FmùéË//¿Y­Tra¦b”÷0)­#:¿® •ßín@‹ãrx´jưh•!õÃÖçÉ@Z£¦_W¤è0é*:Õž’«z <ΊbI£Å÷ÐpÒ.À `k #¢9Ds„²É±,Ê€4¹sò ‡&hÓÍå5¯v¨"œÊ‚fžzÌû­ÏM®²¢¹ÓEÙyv ¦™] ¯D£¤ò*M›wŠÐ±íˆÏhØáe¤BEVrÄ7ëÁ6鈯ª£Ï›#¬×E¼a`p{\U"œ7 æà:i¨}ºÍ´AXqš,ÔÑvð®»Ã¯óËŸZ6òãæ2>.(áQ¬¢®o´ç31N°ï Ãi¡\Œ\¤ÄCzzšQ' O8*;î+»/wÁf1l¸¹_ǨrÑœàµõ¦LÛÃþ6Úmè…Y4’uȬ€æêõBÿ¨×zð ܘ bÍ4^Íôn‡='ÎÇéÐþ6Ú‹ .‘OQ•¤¨ªá|æÇêiŒ- Ûè„àý^sˆns”k·/èË\Øo»»í….„1nÛ?NMŠ ƒ±;7}DÜ]‡&0xOÞlNXßM`û#Ÿ¡* M$o¾öÊàùr‘Ž3›ïß~ÿþ÷_­q³·a·Uê¿f»;00 à•õ ~DkÆDTmaÓiƒC…H™G©mpM9™î§a$Ð.,Zb \°=t(\e^2u“Ð’1W²®ó¡ÀÈ`pÝoÉ’T¹u" %1B%·pO@í÷ˆ…Õ®n!Þ‚õ@`õ[ÄZ#Vq;VO`I(;”´Ó3ý~4š3 ÷Xêײ6K4c—PßÁ0a¸ãÄÒ[‰mšŸ¡ƒ¦9"ú½jÑꤎ]ÂÒ!ëd ÜVgµL –E¯k€¡fp+e°ÆÔƒ^Hý>°Ûn©ŽŽ==ã)´’vé à ¦6\ 2=ak2sÆv>Ê)‚iDׄÕZ—öt2U#8 í¬r:ô*Ålöl`¹Lr̉éµAž\’ÂU€ðäÕ¡?QEÞzÀÖ8˜Öz0ý¯—o/:•ùžA€@oM Õbþ4ÍÄlíÌ:ê4똤ӬƒËZ¶®=JÙ2…!9댟äP÷² ¯àº–Q.ñáx®p¸¾elMÂÓ ×pæìƒK\V.‚å>Ò‰ùPXÙ%væ2 @Bí (9û”XýeÀÊ|¬ gŒ² õ/dP3†„ØÁ§›–À —À¬ò+Õ˜l¬¦5&ÿ;N6¸ f* †7>2r މË`Vù=ÉwöB˜,JZêÍsÄa à”UUÚ ˆÔD‚yµ 5e  èÉ®^ý>Ç _f<4̉!0íIøÝ×\j2\É2î®Ù†2Ö²³?#œu ߉ƒ19Žöäh}'Ç&Ts'¯æˆUk¢yïu"s-ÊšPçóLEÇÀ‹÷Yã—]ßuµ{ž¡»Ïå±{WµçJ¬ÇQ‰Œwu‹³èSe¹´ê¦ûöùŸ/fWîÎí#6~Ë%ô r™8tjPtÓ¦¯ñQÏ%®ÈÊeeé _I3ÍŠÖ¿ÍÞ×c¥ZÙ8±ƒÃP5Pj©ã¹˜8Z³_‰k¯2!%È€“[˜ôJ\r•IrKö.Îu%®´Jµ:²!2âÁ…Ø"‚5ÅÍõˆqr+íS|‹§C1MkNL«MDÖ„D Iô%Díš._ǨE"˜!u<‹¬.<¢AÕd`‡¸ÄÕX™® )¦¦µ'E¿ P²ª[: FpJ¶ÕÎj+ñ ¾T‘þìZ±=^šiº¬µ·yË,'¹Û­ânãK•"­o ç³7ưãe¨(ÔA¿‘8¸%L«Ð9x´_®\%h×=†Cà76°ž:%±9oš_ä¤Yæd¿ïíQ©v7Ëœœœ1¬]ƀˮÞpÓ"ªm4I /ƒYÁÚßä5ôqkö²íÿò9Îq}yùýóofO¿°C»·ç* J(¢ÉŸm"šæ2\ç•*³Eu"i¦¹Ìú7ìÙ”ø$Y©N,m€Äàj‡[¥È(€Ô耡(€,Bì ³£õ¥Bˆê†š Þ#,usÏ'—çç |i­déMG!ÖAÝ­|á„XµÐ4ðB¬EppP9•Á© ­Ý%³Ìó>BG°6ú¼;ëáºPß-¿Î} ˜c?®P©…  ”@œÂþŒaJµ|»ÔQ@(Q}C}س]MV¡Óa¥VÚ§–”SNo2Ã%RɶÖJ^R™JÞü2*y<é+§ÅŽvŸ£¬]àrŠõ´²Šd`8†§Õz[}ÕLEw‹5M¥½hÒ v]˜Ë¬Ò>гØNF¤¸E5úà4uêûoq¤$µ&œdÞ±ý߉ò¾»<ŠÙ¦E_u'Ý={˜›»F|ë„nlÛç-0†§áá¯Ê¯¢õ¿™Ýè·Œ†Ýn8ð*ËøN<­ãÕѤ¥‘jÇX5X80=±ÃZàÂÈK¦0xÉà :1AuppvLLà š†h‚“Ýf<5#þZÈ)~뽋ji¼O¿}ÿå»5Xù~Ø ãªt ƒmúÁÉ0*=Vj•:!iýa"™›Àæz~¯–é[SFÅ$U†RUŒ^óŽ0†¡`}0V½¬Ôª×J\(îBŽ­ðvG¥¾Æßb£s1`í[áÚ·RËN¢yØ$'¯L0ùUöÊs¾zǵge¯=í pi¦Õg…'xUêÖ›>ÇÉÜ™Öû Óf…‹ÅJ-^–R`…e®+ˆö)R·Qfä&6pŠ£Ží,R¾ÎrJ¬pX© ƒͬç9 ä®+t¸®ÔÃñ׺î¥÷úÌOïªì¶ {ëtáÝ©Ûï…]PáEŸJ­)bW sƒ50(aT⺰ZyjÇ©&ze8ó#bcÇPKC=™ ’ܲÌOÒp¨òœ¬µ5n”'® Â6˹Ë\íqTÓLª¥€˜"w]]‹Š„´ÄäÑtÃT‰\ àG‡iHñ{JüË0‚n¶Ë·2V¶›íîåË——Ÿ­5³˜¤¬fAWnÀˆh ­ò, ‡;™r½5h•¹nÑN»°Öçin³_ŸàNtqt—À5o¥\vj€ÙLÑMÓ™óÅœÏp\©°‹–xhÜCC‡ËàJiÚ08§9Dƒ³žgV¥WÅúBˆCtò ‡»²ž@Vjaè+ó€| œ¶ìãÇkýEÍ‘öá㵞jÌ’ö#N3 }ÚÊ~b`FN{ÕZU¨•{®Û§z²¦à©®B³©§ÿ6y@KâfUyýÈcŽ U/X>ìPUù¼Ž„ë:€«®&‹€cƒ§ÆÉ½ÆNZ¯® gMïê£7¿ÃG¤œîó±×ç­™ÙëþàqSá‰h¥ND¯CšÓuHé€ÖÁãЊûªt¦{îW„Ç)[-ô'x=g+sÒ¶¿³vƒ–¦ZîÏT ñ¾Ý>°Ã°oŸ\µ?œX !ÍÄ/€jmuÎ óÙ…|æ¯Þ¼­ñZo½ÛüðòÛË?Åÿÿn¶ŽqÃzNÀ~p3šói'šµZ+ZŒ~¢MsªóƒžUk¼ñ[«¥ž ª]&ZÒØ÷'Ì€µZú ‚'0A=Õ¸¬Fƒa¬P°#À.¸'['%Â…5Ž­Z²ó¨˜üVkÏòå;¥¸j{ èÕüq[NÏq5®딨@½K0;ëAòXÖ¸$¬Õ’Ð/z@ ælVãÚ°VkÃÛEæpl{\$Ö)ÕX³ ]ÆTl=ózCglÔ”‡H‰FûD;=sY1¥Èû@Ÿ8á¹OáˆUKÜÛTµmÅœuw †ÂøÓ&‚Ú>ôôêØÊÝ/®qÁ\gܧÖ믉ÚÚüÿom}ÂY›Üù À£ÉP‹xVZ¯å® v®¶LtU°Ëª ª—ÉõŠÒ¸¾~ §Þùß‘ µ^¶jMM¿ˆ9»_å\££îøš)Õ –F7wÞ‰ªöN>pê"D¿Å÷AÆÞ‘ãøÍ‰rêóÇPç<Ã7t$zóÃÆµ½èí?ùUjª„¾=B˜j’ÆEo­½­š¢-Z5‡‚ýcý0NÐ`ýÔ¸€­‹• )yë Rß!fx€è~ð»,°%T€hb[»”û;1<Ê.^³ã…½gÂFVLÊ™”ì„BÏŽà« Ç7$‡ó„\ÓÍ3E¢eÛk\ÅÕY£¨¦„‡€LÍ„Èh™è.Ãöïöl7HJÔ`µ×zRS”æÔÅ÷ìÝ ¢ÿN"? u ,J^y“{e’â˜ìDávÙ #™åÄ F«ëÁ×Áy¤nè*Y“Òn˜e®R`0‡]+-?\ñÔÜc¡U®niŒÞeh]â‡Qñâú¹>ôݲ_•}Ìe IéŠ>¹ƒÀ<]®®,·QÉù¨I*@-`Tš/@ÊîOÔqmH-¿u¡Åñ¬Œ'S(} •q¤Z1'0˜ºÀW¤ºJF2?÷¸Ø`‰Êrv¨â_[v|'ôÓhc$ñ‘{çGäp)Â1_ܱ&Èür¶­˜ŸÅÄ!l½H3B¸Æ=4¡œà®ôæ‰u€¸"ªJÇFñ«ê‰ºÐå( 'Êå·— »°v·Pt®‡3ì›ê"Áz„Añ8V™9ù r;˜œ$×ÊÃÉÊCv_¼2ÄK¯´ºœÕ»û j¬DeQVg0©‚VBôüÐ_÷0¦mЍ1‡èøTh7qµûM4º½–wåobE0þÝ`,7¼Z#/î4—¼.0Û@åòde( |y–×…I¬<ä5Çûôïq¸c„®ì³˜c¯£à莥À•Ûou5iW“ÏÿþéOùˆ´ÖzmÉá †þIXð²-8|58W6Ú¯D“éç$>$³A=ÛnîQ¯ga1à{ 0i³½òÃ¥ßrñ‰WèœM»\eØ¡Ì᪣؈‡z8J¯C3×YÌBð˜ÏnWׂI”Ð5Ò»5‚äêî]ý<Ôwç Ûôw.íUÐSš(¥ÑN$ÚT` Ͱ´ùÕ:Þw›îòtâãzQCŠ2•XêD6ÖÏ/E‘ï6BÆ»w0H`ºF¦…Ët:ºB¾ÛmŸ†Zú¶„ùÖP7¢ˆƒdÇ]C—q5±Câs-Æz½ânªv3±q~ÄÿudP‡øÞe{Å™fçš ­orÐ6èàÓ$^?~%‘ð)*´e‰ïÀF@&¾A÷´²¯‡^·S’Ñ´“‰iÒ7¬¿+ŸÅd,”H{÷ °IV¯aïwôòf´ª§'ù%ê7ÝÔÿ’õ«„ÚrÚ@W¼†û¥gwïNÛ󔌦<ýAŽÐa3óÔa±Ëù§kä Ë[½†»°ý0ÊÐFs¯_ÃÝ$—Ü9vjoøMÏæ{bR9õÎÈ;¨ï—Mê)­É·O)-ås?.ñ  mV…ó·dåáH·xûºG5øèi£]v¬ža•ëëf)—÷¼Æ,tÛ;»Žÿ]sfÅKò£˜_Ê ç XܬSJ4tyΟ2®qef¶(¬’°`oÖ…@O4Âà$Ù ¥ñÚËÓ÷Ò¶«Zwj{Æq£‡ð§5ÙtVGHŽÃQ(TÇ&>TÛaT2k8So R\¥Y! åû®…çíf¸èÍëÔ|6ý&)ÚäMí«“ÛíÆÙtÇÞAdiAߢy¥9:ëÚw=œ£—çZŒ{1uŠÿ­ÌÉ~ÃJi–ÖØcjFsŽÎ{ÎjÀ½Z|rF“œÎ¬Ý;Y†¼ÌßfùGKŒâ¹ŒÕY÷?_¾üþòMïxÁÁ–¨P톦v>±AàÄ%âT.Îä40ú žY•Èþo࿌á~ÀRíÅ úðØ'lI¸d´wãáAÈmKrZŒ)3仫úA]µ¾QËBÐ(ˆ×XÓ9¡M7:˜YÏ.€„Í•\o®ª;öݑϕ‹eM‹)–ÎqFyeûñ«òÒW¹l‘KC׿t@n÷×Í™3¤)öþ´pI§3Ñ‘Ô:µ¾áÂ@`0Dj\¤“>u4[aß^.bÝs<5šH*Î ‡Eëàf(a–‘…3q§à`Þ5‚Ô ýÎ<3PµÛ9¶ § ¼Fx¯F½&dÏüŠÒc5«›Ïnu¤^uº£¼ŸI|/K¬`ˆ«€ŽIÂ}´Ó½ð8ÓO§\{èp«€ õU1½< {æG û&P­Rºù²~ >L¢Ž[[ðÄï”aÇïNÛeÈhE×tìÕô#‡×]Žw§Çn„º]ÑÏuzÄbåÈÍkWY¬œ,–e–. ý.ŽØî¹×î“G‡-9g.Ôñè—ÏϵÙbaý!R¿Ýf¦² /ÙˆBÏjpN¾½ãÐsl®uDço‘_œl b2ÇïØÓìëâŽÄfWuº<"h @ Šè²´J@€i€¿A™×²Ì^Ó5’X{B2È÷_Ÿ€vÌu`¢tõ:c‹žˆ¿TÝp¬Ú½Ì‘z}cûüpÚÂCPPœ† i–ó»ÚbÈ¼ß ‰”6Kl=® œ°ŠëS*–†šWÆÉµ@­_!qA¬‘—VJÑÆe+~¼ƒ"·6€OÝ9*‘›õ{WIŽ; ÷©øÇj¯‡“`Á |“¡àÞ°Ñ hjän‹?”ðBÁ³‹;õ·ž=áŠ&Ô‡*ŠðÐÕmÓr›ù™×ÃIÌáºh9Í«¶ÉØ.Á¼êY‹û–~ùŒ_PÈ+®¹Þ'Bªº¿b_¸ Ñ=›6Ô, ú]Åbpé`š®÷ͽ±¯ÎøK¨v ”W´ÞⴃɌ±.o1JG˜¦”ݦÃó–ñ·ípsÄõZ®wçäqÔÈ‘h o\É—ÇÐY RÒž±Kš”ÖŒ'fZ@^ÈÉa7õ 9“@HM‘ü€ 8Öl`ÄùÖ\¿}äZ·W¤R12 i­jŒF°â 1îbcÜœ£QõÝ7žŒ‘ØùHßxæ-NT:ú㧯ß~ù,w(ÿÛ|4nûóÞ«ة½°)Ä D© ü¶í`ª¬Sÿ„蟎@^¿•œÁ›ÄKlˆ¥zôÆ-ìêhzªHºÿ–¹ÝÄÒÊÃQçÈ`EØà&€èæo”0œfÏÊv<>\DZUyK öp þL+3ATeÜn)BˆßÂÎ,dŒw~â:¾¥‡öØK£Jfý½S ÞÞ;-ê'*¾½oÚBñP€ãè­O“F‘|ƒHõ­íË—_¾Áiþgb‚S®a/X×s8qÞµO¼ÛýðÃøý½ø&è{ñåØòá¸H–±P–"uQõze¤†=ax&¢»LKi -߇µ\$Q"fÎ$Zs_`a÷¤ZÍ›¶¸úfãŒ/’JŸÄ‘ †‘O’èßà*øÓó¾}ÆW¦DaÚ?îº3¼Ð:9‘uwÛA°X!‹<ÈB†æôÀÏP¯›»AXOhßyE•?.ü»´;>\ÞÂA׃þ[Mp<·Ç­È±]° ê¤Î•¯—Õ#¢(ÊÖSž,`;¹ß¶ívQç%b)nGØD#½T/êÞ a¦Þ¥¿c‹½ãâðÖySRéTþ©cbŸ|wéžè¶'(öiûî_¶‹¦Y­iJ²ƒAƒçÁc[ã#ÃÖ´û=D£ó~P*+¶iª€«œF“/DÏÂÐ`Â#xv¬húÇk¸~µÀO3ÀO£È5Õ‡q.w·AGæ<)Þ¨Q?D±º Çÿüõó×L`çBT.:Nwj+£ç‹Âù_?ÀFNŒ{ܱ  âàá&EÙÒ€ÂLŠqs;V—Ì<Àœ H›–qf¬¸€ð‡¢ÄÂáÎrœ½®pÛ@é¶X¼o¨¸Fê“–dé>¢ˆkqý*?Ò~DÑŠŠ•ª+`Bv#)à×S‘f¯pG ¸CË5ò×tÝGZÂÐAìx€·u¬ý W½®pêßÉú¯°x5ÝÿÑ•Ñ'}$Kw÷ÓqÃáYx w[„­hØŒ¬·gxeOàF´H_Uö ]ô ”<‰P@õÈpE ¸Ù6pÏ$Éjl<@}Ž£)§‹ñŽ/bÁ¥v¬Ç=>+¬Ã<uQ‚ãÓCøùQÂשҪ¢'[ñ +”±zÝôýDOßOˆ2V¯S÷4àk”0 `€iÀ%¬_%á†Ü@V‚ ½HC’Ãñr[?äw„,2$# Y×4¤øJ½JÊú™F|@ðÈé«Fôº`wD)ã5‚¾ªqJÚà*K1òÎ`à¯Õí€Û-ÝÜ⻄\KÈò3é f@ •ï­MYKdN"Ç3ȇÀT­~åˆßÈÊh(ü€±2"ã¯'À§—?Ù[£§F nï&Íh²T¿~úöõïŸ>©Í³µè²Õ–ûÜÜX©ºŸ©A[¥©I$ìüšÌÞ.ã õ‹€eeŽC@m*z.C°,„*ì Ð[üÆZLí‹AÕË——Ÿ?¿|ù‘ýû×oŸùüåããþÌ%§k¸{š­âša£º_DCVâ¯æZyV$'a=_Ú}»»ÛÒåêO¡žœÇo¼¾­ì8•Ý/¿bPguÁ¢Ûláò׉Uã^­ À.«ÞPÒæ„§b{`oøÁúv‚o§()Î'›sÃÙe‹7”‘·ýx€¦ùdÑèûqà ì­»H+T¤+>VÃùûc I(}ˆå]iïv¾DÒmEr'z½õãGQ£U³´ÁŽ¿ÝÉ5šÌÏÎ{6lÆ#\Rò½X–uêdW`5Ø>*N»):Î[¼wŽ,Í™wйû¿Ü1ÞWñ}é(Ç…V®£fþúû'}ŸAˆºíÁ8g‡Ètø¡=ÖüÄ0ÚÆõèð¯ÎáF®H3mŠÌ‡Ä’ =оôìƒBu`€hƒTˆ:ØA¨=²ó2G1jJŒüß|¢Ö–@úb#t„¼rË£boxD'°f*º_¬rÈëÅíŽmÛ Ð`1t@K‹»®ÍñÎ Û†b.ï¹ ÃŽí9;µÇ Jëô¼N| ð2ŠAy†^qéàˆÎø.–×b@Kßì¼Æ¦Ö(G¸“Ú^6Èà—…S±Ãq¨îNm+ÖÎÃÀrªvôÙ­A»ç;±öî€f°ë”üé H7eê:QJ,GI±îí¦ß'W·JZ¾ÚŠû«/6{`;ˆa‡‘}€²¦(©î f¡-ƒ E‘´ós^ØDS`J$²ÂR_¤“š4óÆÅøjaŒ¥„ºìÙî®ï¦t;Ùá]9tBBô‹ uÒ©+÷icý¤{“]³Ó;½;w!}¥oUxk5¥ïÛ’‹Ån8Öìü„ó/œ¥MíyØ _"|íÃOŽæšªxhì¬Þoä{ŽÏoHÏÁ«Ù0žðä¡*©þë’Q­NÛëe"Ÿü–®Ê‚Ê£u„}C](7±&¯}ér(Y (Ç ù®½ÁÝ.^ÉöCMÕ¿Î!cÊ|À G# Uc’Ζ’`t`G¸?:I.kkV„žèâ.›š‰¿6ÃB0{_aÚKº•ô¡[U”’Žü¶•¤ƒ»Å´3K~Îxóõ±=ïͼ£kŠ" M«7F6L–õ5Yªýúíço/¿ˆ5¢j;ØzÙ¶gQyÇ),îc€«ùÃŽ Ô¢FTî£þ>ö?MÜ Rfœ³èº¶‚ûÓÖï€m©:Gbü£!„ƒš§î,TG¹Ä2ŠŸòoñ:÷˪¢™ÁöPè·G1e”Qß*”][ãÙºø+¦ˆÑM$†ºÀ/¶‰ ! Vo«ôð¾!ŸÐ·Ý.´šOÖoŒÒ–,v1åá¸{ùóåïF+0˜øÞ‡ò»˜ûÃC'ðì\ ÷ñTçÒdnçÒ?„:Wcu.GVü£!TçÚu!U&e¢ÝÛÜRÂî ]ÊÝàSþr°qN]DaÑœLóÉ­Kƒ°É§K"IÐ-Q× ]¬5„Q”‚˜°+~øaüç£0q»EÓ@\Z‘†Š¸4ÝiÜ"=Zž:t/à±þêMSÔ4“4›cÂæxˆŸ5hø‹¿²ë¤~#ÚãѸ'4÷s† 2É $äó ò ƒ£X!ìÑûÏ`UKVüê0˜Åº™éUèòÖñá¨IŠ.–Š.Ž)jùV MýÔúRÚ 8Ë^)˜©€W)ʵÊI¹ˆn1)`ú—ÿl¿5ØeÌ!œQÌGwÄòë?¾þþõ? Yÿ÷;eÓÙÎÝO­°Äa‘pQ÷ F5èe„` DN¡Öàá·$RþµWt ìNÝ¡ktà3±xr?‰¡‚,H°0öŠmCÛÍo «stYàÊb«#\àÎqõ~wwf5†Ã:ó‡uºõDQD“x놨ÄËm„ê]ßN{hìÀËž/âýÉ›:sÿGØ›­FÀ‚ó­Ù°Ä–Ö-²­½PjkÞá$&F‘7.sŸ7]ÊÑwCd%Ëgû¸ðÈþ6ºÌ>o»h»Qtï+.“e²(BÁ„J(ŒXîÆÍå ÀÊ™ŠÐ8ÌÕH m’ÖecAÀ9XVIJ™‡£lF óNRÑ¿Ö"å¡h6^a\IFÿ`‹¦€ S÷´'Üd5öëª;œDËvß^ž zI:›CÀ.–#‡ºp9DËkt>G]À¹½VÓKݾ†M#ï… Ûu;u Óð$ÜÔ&‘Ó‚íƒÕø<éÖŽ¬õÐò ,Ã!ÛÃå'eV±adĵ~¸žë¸eO aœãÙØ•—Æ9ž«’M;’~°E,êË"¬YÈQ–%UàGÀZˆ4EàuT;=5öÓ‘(ô£€¸¸EWœE6n–¯f€‘*ð#`-DŠ®Y¼”¯ÖNÀy ÕAÚ2 XBáã+Æ1ç™S«™šD¡”Pûk©÷™[ÃYϨ‘t>‹€ÅŽë€(I™Ó=Фª±¹~‡Xpa&ÃÅJÂÜÍèGIø°BÏ3Ëä!2, [FãÆÜ“/1?µÓnq+f{óß\ÐFÖŒúd…¾6ó ³TdK&–ªŠÑߢ,'3wé²zz:/X nš,Un{HvE–!¹ší?t’Zý{rÒ¦÷+ b;áUÅDnŸt¿ýüc+ð tÑÈ ]á’Ütz+T¢ÿ‘÷=Æj’€qâ•ámÐZ6ñ^€yBXÊ(¦åDëÁé‰S‚öݧõb}Ö‡ªôÍw>–bEŽ‚¦¨6_ÿüÕðÑKÅMwÙ¹§VûÛ‰ ëf+ã7¥‘Ñ-5˜¶ØlB°°de¥2`VZx2àá®Mvfmí !þÁöÅ^)ÁÝøÂOÈâÍ‘ÒRÙUÓ»@ýéOß>ýiºkÕb~†è¨îN8#‹:õ³å³ÅC~o}GÔ2Q;*í—_?}ûü租垶Р6'gö3{FEUáÞñô}/”½sóãb™â#1©:p°¥Ec¼Dþtn÷ÐïkÖ·ìîtäÃA,lM6:Ë©3‹Î²X®Rx4m¥â^¹œð\Á{8Õ]§8?lÙá™±Ö–+;ö'2üéÔðNüÜWçötÖoË"ƒà¡E–†ŠBã?ˆû†…º½œ….}j8Ê…Æ×?³J¬¢Æ*_Œ¾TLyTøMÍ*•[÷µ|üíÐìùG¢íôÍNÞ«ˆsÌ~ÂÔâ¢|Šh€N,cö¶o/T9gû‚®LA‰þó(…¹ÒËÚc¯Ú‰ª©ð{UÇ¡j:W>ˆ› ;v†`#`.OO¢$;8Y©Ð«¢âËøl eú~8ËÚzzÎÚ‹ n7ò_;Öoí¹µüwF Á^Öé:T’Üb>üs9Z¿±£ìZãù k÷À¦¶²êëÔ¥=?1±B©ìW^fȰÌò%*A ˆÁY¤Rn¤J°* ®ÃÊàKÆçñHjúuá킨nh=&¬bg`\à¸2¤ÎðMN1ÎÏÝãV,›ð¶OÝ=Or¤ˆµP%Œåå’xhåÁ‡¼å†ð±;¾Ã¯ç~0>ËO / ,Õ]Q²×ÃC;Ÿ:¸$+iúNÒñx¬![8Ù¥?ji"çGÆTnä›Ðîow%«vý^ôiÁ…GW{‡S£¶µ¬0DJ©ÐOãX¦äz˜Ã õÛpzdgxI½=Ê-ÆsËàF>pË€[ìÖ<5ºQ »lßBpõQå™L10IÛïÆâ$Kˆ/Ò€ÖÆª7·}ö‚ÅÞÜ-5}•Ÿ=Ò%Ä)»i¦UûÅï܃Îÿ¸ÿ¤‡+<ðÁ5¹ÙWì/¸È$O ù‰E¢Áˆ¯!k(ÉÞþànc/—¥¬ñ/Ÿ^¾ýXj Ž-xäì|WIËåZ*ÿ±$xÏOH–ñŠÂW4n"¨;XŒ´ˆ~ã“è³A\ÐÀ«¥°xÇèË*+ \Àc_ö©£#åP?‰ö~ƪHN)`¼)OQÇË»ç@U†°ò9ˆeF#§2îBàµ:~]·–p Qµ¢+$ܸaq¸+E~p^7@õo¼–ü]™,³ AõV‹j)#×,“Ë>üò"–ÆA¡šì¯_ŒÓ­=¼Bè~í{| Æpù¶Ð´'ˆ¦{ìεÐ8¢˜çÐp|s©RÙ¢iŽ«§þ×—ÿ4®9À‹Óý–=×NœŸ~øÁùøª1ü§&X“Û\†çmûÀ/Ya,¸e´&YÉpPsHü°Ïæ¹mùyVQ‰¬âèm¥ê·—+ŒžØ«÷Å_i€Q<ÏèéJíÉÆ{zäµ’¼X€Wv…W7Ï«ç*Kߨ™ëcR®ôãÅÿñùËË/¿*M“áC»ðþ˜P\Ƨ÷ ¢Q®œç§'(å<¬ÉÜëYò¥‰öÙ¸ª×¶¯œg<=âé@š6$‹ñøðH;=7úÉÖot‚e¸`:IÿÏß¾þùùÇãË/ß”S6vC± é.-<|nÓ ês  Öίª iQˇ_Z¹ÿ+ ”+›‘+¡åh¹:]½M. ™sA±r‹Íˆ•Òbí:Z®Í%+ß&™Þ1ˆ¦N;Ñp©D‰PDCÉblˆ8¥%S«‹Ü>R ý%Î|.ö¸ÛÒÖ[Ä6Ÿ«ÓŸ¨:5cXø5ÊW’=ÙܧŽ_Æø6àWü-øjN™V×7›TÏ lø¼yë[Æ]&•¾púôí3¬ÈJzñƒp«^/Xßä»Ã¾]üÕÐpè:âà àð\3 ·†CÛoñédÓãÈ·.«)zk—èñÁѤÎ|zyß1³…o\ê‹Î÷y¯úìÍ›p̾üýëË·¯üúç¯ZóÀŸÝ–;al'5”XB¶L›°Cc tЋËÄ—d¯žh:¥`v ŽÝÏÐáÊ$(ÅRŠ3?ó„,“ìfù µqáõ€ÅOVX F3…N‘‹j5 büpf}KT¾E®‘Þ¯ ÁxcÀìê7”ŽË4¢åPŒ‚Ð……xèëm œÆoøÄOüÔ J›¤ii‘Ú•Õ|ƒ cwM+²»¢UáöËkîza5íü.«üÿÞcxÌ2åˆÝxØÓ~ºÐAà*vnwBú]kÀ;¿Â¡3R,e੬ð8è-.aîo9åæV‰¯2•«e@\säž„Íh xcŽí¼Â]+àè‡I4•ã÷ZwV+¹¿2|¦IW°ÁRæ!mW„y®¼|÷avÆ^E‡åÊ1ÄLîw”þëžxEãÝîÁt'xhu˜)&8yO­dŽƒ5õ¤Äm1N…QoU§ü^²G [½ù¾f,7òb|æþ®úþåÓçÿøúm áý·/ÕGÞ6Ýù -}çËçaq:>¤¶â.’°¤áYA oë+VÝë·&®õ;^X¤ôñr€_.ùå©Ë龜&ÿd¬÷ œ¶?¶•à±ùáÿóœÖJB–äQ¨´æªÊÿ<jh¦i굞A:Ej œM¿y÷,ÅÝ3¥ÉN¿¾üòÇ'íú‘a±MÿîÄÌ%„ûM^Ä«,4•HsSŸ}iúñYU¼”'W<ú'¼D2Þì·,¸}ã©ü2‡;‡"U'4ÿjÌììg«§ãd%è šV®NZ%µ~IrO›ŒÆ¿Þ‹aÞù‚î<çêRÒëÙ(Œ3L8o’§[ì\öÏÆë³òÆš€M<³„SQÝ€ZƒÝ±S7ŸNÛÊœÐÚw”€ÚkÈÆÙ£ëàí1MŽBXõ«§ ƒfS²ÝpŠã(%pÝIŠùìõ¶7JÍÞƒ‘˜u wíçÖF6$LN:7G13w¯Œ:ÌÝ»ƒ4鹿!Ô¤¡eÔ[Ÿ`)Q—kµ™ýýËÏ/®Gñ§§‡˜VŸxÅÅÈñØìE)Ïkog›°zѧ~+ª¨ÑöeKŸZû‡MÔÆÞºû T,z…(ÓáºÀ!:ü‚E”,F¡²PM¥ÿ6‡#úÊîlÉhZíâçaA.ÂXÖnñ=C'ìP˜vÁ´‚×äDZÜÔäÄVa|Øs¹ô±CßÖüÆ8,§šº¬‰—x=RryÕO9Ã܆)¬¡{—S~5m©þÕã¢Ï÷Ë’¨O­Ü'JSÅ»_ÇUI‰«’2(ßÊÄcð´#)œ‡íï„ÉWáe÷ª"zÕI­ù&jÓx“wEûáüd1ð³”bf…0›ðÛ:oÔP•¼ óÖþÓ?~úuòÇo~‚Hææõ ë DHˆ1<ƒ¾ü¡0ôƒ #}ýCþfîy ;­U⊥ouúd\c9ÝîÀ&(a’‘ÆΡ<>µÇwuÞáÆV…;;U’“¢NØã¶ËQ£IÃL$%‚4ˆ^3Œ4f׸°wgxb‡ú©‡ðw÷2«´p`§;’Öº¤a~’c¦Jk„q¥ÓÛÈv—À )ö§ºöÜ·.*Ü«¨Ô^E÷ÛÕ¯ŸÿþÙòM†øší®µ“íc q¯¢R6®6¹L+:ãF›û­¶Ê1¨F^ûP¿úE“QYƒ¨œÅÀ8aFoöh ³éCÅXmÀÙûÈhZÊ<±×9Ëðä~µÕÀË n¯ÖpØ ›DÌb Jk r¤×9ÍìòL\¶€¬F¶I¦íR ¦5Ì_ð?í+Ll¡ÈQ㈬‚#˜Ö¼WÌ”àhê¾ïPp|s¥BœJÝ !»Ùÿ¦c×t ©Ýj“mLÈp`nåáç:äŽ,ßß«©2__¾{ùã×?¿Yª³‡CÑ~{93Û@ÌhÎ/ê°K Æ€«ž×²på:uiá6¨÷QÔ,q‰ZQ€ (6§Aë(ò-cçÁ·¯I d‰ŸQø_¡í&绽¸®8"7²è‚0jS-áWc“)?E o²— jÓ`r?ÏÜÜX¿Ñà`¸­#RõÔÒË?_~ýqo˜Xålïöö°q>ʱSÀ VÄ™&·ˆÖ˜ybê|ÏŠüÑDZ{PÚæÐd²w Ü@£+íŸÄD¼‹ì·4¢ÞÒäò¨l|4}ãN*Ã+´¬HG‡–ó§ÿõòE‡O÷›3ÏŽ³vì/¢O)øê>¼ÆÐÁÜF û”~üè 5¡° ¸/ÒÄ…S…¦ÜjÈñ¨V@X¬tõŽùÍwÛC:òÍ‘cyÕ*.ðÑ—ý?­-J¸ßødmO ÃÈúðñ¯~òqKG™¸Æ ’ÕË7óNÄsÅýjC ûÃ0 I¨¾Y&yñ}YÈÄûþlV,2žj·’Ì@XÇùB·õH!ãHaº¹5ß:œðêcê¾|e<+šÂI‚ñ‚(>õ;ýs+:,ƒ[ò"åµÔ/«‘Úz´q„°žR˜`’¥ £†G⣰V $¢Ä„0 |˜„{ñ"Mg„qFò“*—« Š’ áV3R9dûÜ#Àá~8Kc¯½äÍ£äz~g·šüF³ß3ƒ?”&qŠb”„kJŒjKÉÑ÷U½MŽÐÖíOWi·‚6ÚTË­‘VÏÙÕt/AÎׯ9W³¬B€Æ˜®Ï@~ëdë$Ôü~²·2f’4xþÚÛ CEÅ2ãòÿÅãY"¯ÿ_Ì [ï*”€ùÃæÌÙƒœ°Ì ¤QˆA#±Sÿ.ÔÄá”UåËm({DÉß*ËžÝ]Ð2€0 ,[cMqZ8Ý×8Rñ¯ÝHnT–ëkµ¼¹ #Ñ®ƒp¬«è梙š (ã›9”P$|ö•­`K­ün£!ÉÙì5¶¿ËŸìe+|=h ÙãTòšÆmiØŽé²+|*(ò®h\xeœ”þ"ÇzÈiyQQúìvÝm~|דÀ£ Þkr.*Ìkк–XcWA«­ Hk4 ´íœuõ‹ÜFb·À^\Iý2¢IÇØÊƒÕž4vÅ=¶è«aÔ/ŽŸ» çQ¥ÐÇXH!LQ¼üİ¿È𰃱: ØÊlÇ`ÔþV1ØGý‹]H¶0cêD{øüiº ?xüS¸ÂüŽ^,Yéé¥Òê}Hª´PyZÉĦ’c‚áRÂ"‰•)ÍëoÉ¿¹T­!ø¸@4§ÊÍ\)&ƒˆ{0XòaÖiL,ù¢ºb±Ð.ë€<™'ÏÀ™‡$TÀàˆä·¯/ÒHu0€ÆËíß ¬*Ô°~iÂãÀ±y«PóúBÓ^à" «¼Iç:×wY]BáëŠ&µ ¯î“wG£øãGUûÝmîwWu«œ=YcÔ~œBbl;ñ­/É®káÿÿêã­¥td^–Ògýç§?þ4ôv'{àýÅZ{:_¶àäSb¼.ñWcÃhý«ˆXY =ÛZÁ³ØyÃïtmˆPŒ¾eð¯Þ´lCÞoO“H/º$•_ð_þù?ŪùÇíçOß¾þòÛ?ÿñëÊl™‹¶â1OÂ"zÛŠ i³:mムJýò°Œ¢Z0IÉ$™cá·q–DRm©`ÜT&ñ(ì"1oÉ(Ò›5ISó J€»‰ð¡=Ÿ;¸ZvnŸ»#˜^Oˆa©dÐÜpÕÉIŽÂÅëöc|ê÷ǶæbÊé¥á‹,sd™eWŠ‚Q¨È¢¨{¢ðìóFÔÍqº=ó|¡¥pI@Œ)Ú“]é5IQЂ¼AÈŸ8äû-ßx?LÆZ®#½Cÿ;…²½…Θü†³ k`ÛÛù|Vƒ@gÁ¥~öÜDœÃ8nA©;‡OŸþüôùÇÃË??ý]»Eÿ&º£ªšð‰ï´Á÷ÃÔ羇=nÝøt`µÒ°èÍÍa8ûãxÃkBuÏÄ08âY{ÚˆjÞ¢DœÃg³ø°­…3S3šƒ¯;…Qmy»ÛBOµ>3x!vškÜÑh♺Õvƒp|Enð´IiÊß)‘´<$~i=+^r²ÃlFÔ«Ý@;c1û.Õ|œÑ£×gVò8ÜÓŒîá»Î-¦²ÐÁÎîÑ%O®Ò«½H¨¼S¸µâW`1[‰táÎ8‚¬PÎümr>ñYAáI'Éeý¯ˆª@ •VIWE…14+ì.(ü9 u"G‘ž¼êj® dÇÞ ë¯}‚½ÜÒ~Gï¦jbbõ ÈQ³”ê–“C®ç*‹Üœ¯ˆf¼èò7{Ô¬e”еÜ,jÿǧoŸ_~û‘}‹Î)°6ìz´‡?Ãé/ƒ1kØæ§í?„~¾0¢±6N‹I6º1=åu%w·ÒZ ÜŽÊÂC2ïa†~¼ð£~¸ë/óÍV2rGŽ>^§ÿúýÏ_Aøwܽà/¾,&5·‘ehòGؘÀA ïe‹¿xˆÑqrþv±Ü @ä¯êMdó$•æd*ò°ðt{¬ñ!©`dõ·oÛËî]ŽÝûË?}ûü??ý"ºÌéåÛŸ¿:Û£|ôµÅkÐ'v¾l­KÁ²«Ïf’¾”Ý´»iˆñÔYiL«Ë^Ërµã¾9@S);n™ÇTi~ýíå?'‡÷Â/ÌvÏÚ+•håë0—u˜“u¨¸«P"ÎÕ ›ãZ¾ýÝhy=jYÉ`@0L.ß¿ý}R°ùøt¸Xóì&ÝÙwÛN#+á}ÎÀ¤ðVç¥H> !þФÃñg7äku¨$à ܘ§¦'oPl(‰ OMÁ&™Žd¡äQ ÖXTrO"ÓRL;ö‡-b”²$eìsƘP’Äñ¥ñ¿ŠÅ HÊQ-)6PXLbåkMSX‰5 V!±ØõæR— ÌoãÝ1PJœÊÂÑË ‘Æ:š”·ŸÇ_8*tfL׬¦šŸÑ5š~ƒšˆ£ UD2U´é­e°®1Ýõ¾Øüéøo‚úµÒWíÿê0Zx5´œ6€ÿ|™F èÂvwæ°ño¸°Ì­µ™¢7"AþqËìpj"')~²(¬¸”‚¯,ó‚à"÷‡šÛ‰ÿÃG<8ÄÃ+¶¼"d¡e¢–ê§¾¡ôÍŽ;IÈ_W XÕðîO9m’›•@ =@Ä—;ˆ«¿‹ž¼U1Ü› ½ÁëíMBU‰®b؇ëöì¢pàVù"»@h¦¦B„ÆFÐckì ãAxkøÈî`Ãk§à¬¯¿8 GI™uÿíå×ß­I£<³íÁŸ„2")¿”æ,µŒofhÌRK9)$¹E¥Ý|Mª÷íö†} žëãj:‡ žÚýÝñxD\Œh-¥ã€U<É™K}ƒ›B¥¶P¦ÀY2ÿxlü—°»@˜íh‰OQFËUfÑp^j ÓÚò>Mæ­$^cãéð`£`fp0ó“thŒ–9ÝI¨¦žªxªžz¤bMs†¨±o:þ²á‡öh†œYgÖ”0N»Q#éu‡¬7ßÍŠð¹eø ûmõëËß1 VmÙîà_ÅKú‡I‡ER‡EòÙ> §c7ŒTªr™ÆÑ€(ø¨ø«$„Ê4ŠCÛÿaˆõø”Æ2®˜8d©j” I Ö¤­áÀØÓ“,Fb5ŒyGœ[*Ó§Q7E©l¤1pš‚1oª`[XVìøÑ9× )UÓ£ZV{ìÇÁ’⯕_‰ã%(·:Èá-‚å¯àã4¼y÷¬‹2—;ªß¾Â;?Vß¿ýñù?§WZàisÑ&òáÜ·æ©uè'X,,ñ¤þªŽÓ‰£õò=€=DQ{ÍeÛ©˜¾x 53e£9ï»|xñ|¸PåS?·Ø>-*Y‰UˆÑQE-ð̹=ôc…ÇÁ¢Ž‘Q3Ë(g¤"ŽÏÕâÅ¨í¿øäUˆ/oå…] ß}óo‰Ù6“Ÿ¢1'…°~Í釶~ÿ.þ«w@WôˆiRÜ8|~Ñér˜M[¦cÐÁ;™æ¿Ïð> 4Í‚‘~:þ€üršÑkí*WBŒ±U“-}€éÔ`xd½~ #”|›œ! C¦$—J oøÑ(¿9™´´n¨ˆÝ"€F’‹t«Þl/#~o9 ÊD4f~=Ì"¨W|­zäøR¬AñÇÐ3‚Ñ›oEG‘Ü®‹äv]ÿëË·—Ÿíˆ[±Â©){ÀúÅX EÖŽ©ã‚™„†%!÷ì"¹ß6Ñ™/™"ŠÃþ‚ÛvQ9Âd{tù‰œ¹‹øŒ;wQ)gô’S5Tx ×!ZƒhÕ’’.¦¥s+[¯A¢*’h©_eÒ9Øj£)Øø¹; ˆœê«µ rrATÜ…©ˆq!1*ª’LAƶ õ‘ÄÀ$¸‘åV¦‹µ‡æˆfu¥4¿­šÛIçÂÚCŒH„&XÕÐ(_\Þò(_G³6·¢Z¯º°A¦0(ªnÍ(Ö7eÏ´yMmŠÃw [µ.Éü~Õá[×Û‘®ºÄW…`ž;)´žë†êCÆ ªþÒsxêO“1œÌŠ·ï ɦXrÙÍ¿~{ù±ÿúû?>¡HÀ7®SöÝÔ´ÇÛ )‰ ÷ ÜðÔÐ&½ÕÚþ3§õo~·ü[AÌÃÉüòò÷é ¤oòí¬W¬¬ŸQ±¯˜Ù¥‚qÅlç=ÀDEô“O4Í+V_gd©o$â²|ÇH^sˆZUFWá¯ä¹ÏJN wy™tç=¸äK4 Ðêæ¢ }Uæ×Kn¼¬Ê5AaÜÞ3›u å¿ÛJÊ‚ <Ù”Þ V²‚ªÂ$4n¡}«xú2Ó·ß|ıÌðþ×2[ÉåòË÷Ÿ^à©¢ÙoÿþòÅ8¦‡ØÓ*†/±}ÉŽÖý"Ñ„~Þµp°œ­Ìid¥«ÀªÚ‹±%Ø÷~ëá«7Ò…Ë-Û—?þxùñáE¿ ˜ »~ß‹™é‡ùñˆgÎg0~ÑÅþJ]8ãÁE7yçQ¥C?¿S!¡‘‹µõhpÑ9ÁL÷*úñ­óC)ÙËj…ú±þþß¾þSõ¸œøowõpÚwO†;Í?¸ŸÔàs (=vl@iýkjÖ4íGéÍ<Ý„ Q¬‰ &2»\Xµ…5;nÄŠùNÆÙ,+è¹Z¯ ~h©:@ØN¬.Üã?©;‘€]Hlù‚W–¥_Ѿ44þr>ÃâHà™“ƒ«ã€kbiAß=¶Ñ—Î]ß#y-¥â¹^½hò‹X-O.Ì|/lîlȦ¢R¢)Z®“'—uhÛE[\í¤Qú־̤3Hã– ¥ó‡ZK´š¦·î;_vÛþMߺÕ·|aFH–òuØo/_þ´ãÏŠuÇñ¢âÍNª@Ù *ô†Í²¤“e,Y$‹Ÿ(SHëódb$ø¤“ø«²át<$E7Õ£óE õ=¢áª.‰–Zì¡qîÁ¡gGáÚ5‰×>ú˜9D]çáà`ñ<Å_ )Oîáœüâ¡ñ–$²Ò“ä¶rí}y@”$²ºeð5(ó€| ­Ä1†ÓÑàÕÜÊFJ’š¤ÒV’ÝwÆe2r)vs¥Ó9{ Ägl^ë¢øŒô®IšàMp¸žMÉ‘’r ¤ÚC匰¹„]ß^<³ëºŽIIZJ¼šÂKH<³ Û¶p’ѵåµîb$–—°ÃÛÌÍà¶¥~)q횬¢+}Snì‡ËŒ2@m°’£fuMUí²Ÿmµ~%á+JÙÚïpPÖqSà×¾ýà¹Ôä¹ÛÓˆ÷°= üí ’öÖåìJÕX•2®Äéå×—ÿúõÇíï_§å¶ùsÃÚx¤²‚äñ¤[ù¿y€˜=ç$ƒ¶„ˆNnžWRõ x›ò,Lއɱ…úîáîÜm&“EÌ F¯u-s”?ÈTúV_•(Ê䙑t,<õú¿^¾LÏ€ ÛÞ&35–ûIîØGybtj:„WtÖ‚)‡AÅ_™C7]kVt„Gÿ„i=¸-Ít¢¯KÑnØe8Ã+}çP@¶äÍ™tdaU>úá}þé×—OÆ^ÙýûÚj˸wƒËÿáo±jm•Îí§òiZ©k$”Ošó””_ð™>³§öHI#ï?1.^ç+tºZ?Ñz!ãÔŽÌlýÌ9XÔðWã1;*{Ö²œ¨ÏÊu ÙT_íˆl`XÁ›/ìl1p_,¿k„ÕtDÍÞ:€¹ $Ã×òTþðéËÏŸ~Ü}þûËß¿«×h¢ÄæÇšßíÚÛ ÆK*pA‡—’ƒ¿¯–¼7Á"—œŠ“~*ÞF2^‹§~f*ÇG<௭A6´Ô&+Ú¬Wr”õðuÞ|MÎ@ÑJ®_žÎ}™|ºØŠØžÎüÈSÎû>–;—åÎ×.b¯ú¿IÙ\޺ܚ6wÍžgp&2 g¨—Ù’Mã²1vŠõ¸ûõO¿Š¤™±f¬‡ï?VŸ¿ü¸}Ñ!3q¸«Zx¿l¸3N“ÌÏ›}wÁólˆ‹/dr½ùŽ|‚j{™È ŒÝÓ§o¿O·à¢+ Ë? ·ê£¬ö×Üù“|%™Hl…ÓÐs¿÷mhYóvE)_z^–…ÜYüãå·??}ób,À®xÏö²¡¨è _Ǹ … B-•±ÏczŽÝA±¯ª¸¿6Ýp†WzyÀï#,K&yIýã󚆉ƒf –àoW4ÒÛoXeÒÓ.cÒcøóÏ?›O4 yGoKÓ‘Ùþ‚‡C#*+#frd‰\Gfÿ3Z¡YK¼ÌÁÓ>º>á@ÂY‡ˆY¹–°%%& ËIX´O3¼G#þª))ã ŽpH71ì׬´üm áE8Y±™ôÕÎF_í+¢è§ÍjC%“ŽÚYÛP'5EYTã? ,cðŒ.0í¹Úó^³–ƒG$‡·Y-Û¤.ýhµ‰ŽýsæüļÃñrdŽq†®ªöªe[Õ×ÚÊlä îÓï¡hÃÅ›g´XºvÆõ¸ùþýç—ÿz1Ö„ù¿É(|¬¶œo8>ãÚt2ÁŒÍVEèmus) =âé$@{‡Äò<€Ë3 ÎH‘ðIŠx0AíuéÝKïfrz+S“Ze:_ç?߬jS©jÓÑé÷ó·_¿ÿiݹ´çípa ñ‡Ô¿ÌfLeŸH嵓 B·ƒ"rMò?c¤òþI*£³xÚØ'H8ëÔ?µ½um1áÀ‘ŽÑt_ÂtãÝq¤.ea8U9)]9-YÔî©T©©T©nåÄž¯Ý­_Œ‘”VÑmãh÷´Š¥(É-¢(ín}TÚ=­R •ù½Ð‡š®á¨Ï›|Å]¬È¢L>Ùª7i•“Ä{—ÝeRy"•S¦Ü“÷˜Ûòã¶¾ýox™7ŠÖxQ7ZË‹$/ß^¾ü"–¢Žþo0€D§{„—¸6àKÝŠ>rjaq¡Î]706Í ý^2S~:íÜÂZKí»æ…ÏE×€ bÖ‚ÿ}¼¢³Æ˜3Ѻ‰ Tµb6©§s}uü°pV š3S)ªyMÑĆyëK÷Q.wRó§öëWmÑÆðô̶›B¾CDkãßÓŒ^Â`É#srÒÚ Ã/ jNPÿtú,©›7ò†ó(XÉI˜XÖE¹BÀ`G;R÷I¢Ä%s…Åê’´> F;ÈãÕµ qf„\ÆZÈ¥#ƒÅ7#¤ã¿vòÄeH‡ÎD$0ÇŒña,yÂ$€)…¾#ùÍáa}Û@\I n`èíáIj©F#Ú,ÎyÀw$Ñ/ô©Ì¯nZCv!—ÁŒ± Ÿa2ú~åŒ8Vø‹OÙÓGfº¥ùòòç×ßèÇr²5T‹ŠÝž|b‰þ)“±©ýš7¿qº”x9êÊí˟ߌëBMná¦{ôjüÐ`Ûvݤ)ó°+ÙDýNMíoã®_SJœÆÂј#¹·à}º¶¥ðæË‹ò…oñ—<ûþÛŸÆÉ9žÃ û‹ã`A›'^[gÔ6 üq‰äBgÍ$óšbžzÌ+ŸûèBµ–^.„©*t¢r¾áˆ­) ¥Tn} ³,+È9¹5rËîo¾¿&¯î,+¹ÝÆí÷/¿¼¨gÓÁîÉ"¹ƒ)zØF>–îX>c¤Ïàï๬¤çCÕ¼†‘eAyl¬_%“†I& Å䨪l÷…úåZŒU1zߨµ<³¯Ç#ýç_¾<~–rµ‚Û›ãã¹EC`+Äx×´ý"ó°—aüÈY-@™eÒÿÉÅ`lŒÂ¥»;·µBo Õþw{\ô 1RXµÅc#”pñJ6>¾ î6Ÿ‹ÞÞñ[¡o‘M‰l¤£9%þÒfsÀͰÅë»#‡;ù{›ÿ(ìS~ó7àã À5“¾æT1Ö6¾X—ûîí Þæ>rýÒûî]³ïºóiÏ ¿<Šjam%¸˜¾…~að 6œN 9ºúI¬…öòìæ,frà Ì.=¢®°ë„.Âß"§%öí¡ư#Ö¯ÝI¬æ'Æ-€Ó×I­°+yµC”LJIôC}¤E¢`d„¢ôҨêXËN¹.}&Ú«ÝŸÎ2?Ø_ˆë[D,dÿ+ˆ19½’fƒ?!¡TÂ?®ŸEˆÏøò±4B› ?C´ Ù{o~O”Ò¿¨^ìçßäÞ.®ŽÅˆaõžžvf‡}+¦Lù“¥±{˜V*!™ ©½|$`Œwg8¾‘)?» ‚Ø  ÅRïá™8=£_ /2Yés¡§ÅZ« ãËè®Td\b4&†öWíQ4“¨¡…öéc:²·#¨VÒoj"yÑXü%ßûõåóßÿøn¸ûÂ[c[ÖîúÁòI÷¾™«%šh•ô*w1ÿ–ä&'0Ñ&ªb+š£6Å3Մ’ ÃJÎy±êM$qkJCm‚"öZb×4ö*€m•ÔÝ?¬,ï¦+¥uö«$XS_B´ã¾zeÝôzAjÜK¬¤_T•f.±Ö´± Ъ?lØit}|˜tyªäð3Á¦ˆª˜TÕù:®ì«LöEi6Xxju7QZA_õ×qÕß bDÎÂâÍwBäí|ñW$K¿ýôë§/w–‡ó¹zNN¤*²§ü„Çppqqp§Z76ޏ ˆŒÝ1ç¶h!aXnÃà<âôC‰ñSk Ðûñ±í5΄­]øBäO’\¶g¹ôEýoägC4OO”ÑmB9wh+yŠ]• %QQŽG¥ÿûj™¾ZŠé2)Åꊖ¶1Ê9Þø«#¢DrS(Je8Óã§ÿÒ§bXúÈÍ{›æ?噘¼®Ê;5#µ>ÃìÎi˜ûM…I}=>Ë­`ÔI¤K2ø(¸9—Êݶ4©Ý™uRŒ§  Háï©–ko·Y¯¤í*TÛ|ÿò¿^~{qUBñl†ã{¶gÞbüŽÎ„õ*—Àë0pÆÀ€$Ç‘q2®¥ C!ã+($†¤~@E\¯GdN!Ë~š¹Èn¼ÆÐ²V YÝò^Çá Y+nÈÄ {¬|$Dü•†Ë0ÇÁ¯!×<­ sç’,ü±AÜqW«9ŸÂ Ó8¬-ÛðFA¦c±ž¡ž"CZÔèð^KÇòš‘P¯÷lJs½Gý2w§åÍ&—Îé¼ãÿüÖ¦¦oäí`íiÉOì¸ÙA=ñ&‘©aìHÛ¼"¾ˆ–I´•ƒöS“h¢åmm£'o’îÄú¾=”¢L–p×(o¼Ÿå›×Ú\Æ[àùPåçOÿñòùçoŸµwÜ Ÿ«yÃÚúÜzNvˆu2ýjm—>þZâ+ÿ¨îšÖŽƒ÷ïíöðXp)rÉ…ù\ô]«rÞüdúHt¡g‹7?È&÷—uœHoÛ/Ÿÿãó篿~þòË?­÷·ìØ6íÝ¹Û ãëÉ´UÜ_pítdá ŸAà©ä‘Ó<´9ê"aWݲsɶìÉg„?_ sùô@-á}&Z³¸(fËÒ¿Íh—ìÍá)o#·óú¯¿ülÆÐÀ5ö¦n=×kõœOͶ¶à( ðª<¾Õe"Ê5]4!N÷áëî"ƒGMÀÓòQ\J>å%þJmø£vtLWÿ›SªÉ2‰X؈ƒ\R›£.ˆ¯“õ3¼É7^ή².ú¿9à‡|—mÙD:"ŠÛŽc,º-‰_äjê¥к Öîa„¡QùȧÍð¨|®MX×›W}§Þ/lbÓ"ðKƒ,™Up8ö®¥º„ÔÛÊ4ò‚B#ç<þÛ?7“M ÐþÓÁ|6VÖ­þªdÄ8m:$büfCA>j)þ’§ô/”ùò~ÖÚV‡Sv&Ì•#_jóÄßÿj]ê/¤ÏGQ/iè¿% ÍIh¹,êHb&>æä[`P».ôO¸´,êTbU¡Õ|`BÛURUR†XÄA<È‚Ié+ Ý„j&,}gC;Öva§BÂ~4· ûèÁïa$¹á¨Vð8p L¯‘±÷ÛÜÛ_• zf'©M¼s¨ßqõÓ$’»\›òêšr£·ºßôé=“€+ ȼªÏ|ÀÖÇ3/˜4òýÚF^À¼&'„ƒã‰ÆZš"é61Q$‰njFO®I‰~b󨺣öínRôoiR³`'«ÑÕCmð¿­GºG?Îþ$VÑU ‘+µñ8xÄš‚Û"–×vú0Þwl2vMvcá˜ßjÊrÉ“§2æïñå—ß¿ülÕA|Æ#Fÿ *d:”Ã#ï+‡`³Ìôst0õŃZnµ¼ïj$®¤@OlœÅ9ća ²{ßûá2ÀŽp*7sS¹™k£N›÷µµcï}Ÿ1…Þ~._Ë7êjyÖ°yùöòOË·L¨Ä'Û§Ìø";“ f£61ô `IaG—ô¾q dZVHµžId¹Ï †"üjŽ.å5ª¥rEU™ÿÛèL"3ûVùßMAÇU!A­:ÐJÐ/¯Ô>õDœGÕˆ^çJ¹ÌÅÜd5ØõwæõpÚÖæ#íÉz=W'®}C|êcÍ%`cö¿z\’žöCÕ¡°Ä*rüòW‡Ý^ÉÃËUÉúþíû—_~Üýúé÷Éu })σP´»-?˜~[ÔgðäpøâPªô&ŠTÏ×ûÍêÛ›IÅB?SnÂÐaŸ\nt¶-–+®%Ó&P.Ÿ©³íÿvÙvûmw@xùZu”PÕf8¶¶_«÷ÜãÙ[ÏqVR9Š¿dÄûÏß^þüñü¢gŒx/fäËÝ™µnù´ñ'Ðð±ãzÅæTré¥ùýË÷ÿš¼Ê¸ 9‡ÇÉ«¼âüðƒóq·ïv°l*-¿  L—KÑIWš¤‘I”Ò€›ht­*³VíosFÛ[+f™É¨Y#ßøúó¯“éœAìþ®ÞZ¾sö‡® ¢7ßÙJd°ßDnn^¾ÿöýÇËç_^~3lzÜíöûK»a{Û·ün½%‘¬Móžb€H °-3.)y¥&‘o‘E„è $\v!ØËG;“2½p®ãZ"_5JJFLoƒX î !¡Ñe1‘Ok$ãS.ýZHd˜a`·vÏÔÇôLFL¶x•ýK ²Õñ¹Zñ×L¥¦3Eö[ÞØ…sAXý-ÞIªJrªÃœb—“ct?N»NI57¦ l c<¼OªæõUŠû®;‰vBª—¯ÆÜNIêh 0dÔ–]RÏö/š»sƒa’×Ë ç—ñª}"€“šT*úðÍF·‰œ–Í%e¿­×¯–=öpwúí©ÝÑ ž7ou`ÅÑI:‘ïBÑZÁc%S¡ïôÝöâ+Ÿ)‡èà5»„7¢pÓ˜wÍâÿøÿÿùìÏ?~úö)~'ÓhùCšÿß_D{üáËghþ|ù÷ß>ý¡þY¿üùòßÿß?_Çc)þ¬V)þ-þ˜GË8Y®–ñÿeËUß:œK`ö'ViÀÂÍÚ9µËÐÝ…•Ã'1EÄ<ü‘ÂEÜ5\ÌÚÿ}ßüTö2ijûð•›ÿQÀÍÏ¿™ðë8;Ÿ[èwæ—á|¼ûïÕYñp‡Ù¶è0ƒnÿæJÖVI…{·˜ŒØ(ïîŽ÷;©úÂ=–¦<^θ€Ö4á¾îÐ\;Eîð. \¶UTážïPK‰" ÷ü#‡÷¥Äììõì(< ú§cµ=wÇnèïÚz¯)Âc–ð0DµS¤á"¬ìŠ«y£Ãe ÃAe÷Ç….ÃPö—ö2\´ôÞ ˜ ­â Õ¹Û#Œ†q/…ŸÄh½tg«!‚ã‚&µZÞó´SOóFK?K9õëXdEÕôü‡9æÕ¯Ñ½ÐþþôUdìŽNÆøþà_(gKîG·~0Qe~qò¤÷u'–Ûcžþ'*OvâçŠ[â Õ=;ÀÅajÄÉïÙ©ƒ;]§-w²L?¼ƒ’éúZßóìæs÷§?&§{±~::N(Úâ_l·‰?™Äê™ f÷ ¢µ}¨nË{}Nsßÿâ¶fu·ñ%}åþZß˪wxºsú™‚à÷Ͱ—ï­;0¢¦Û®Vùšû¾Û·5àX¹ú=ë·c¦dy?mÈÝ‘Ÿà´Äÿ4Ë$sA§Õ™"üoÊ™`LèL1þ7eJîØS¶ÿ›²¥c6Ö:WŠÿM¹2•KèÖ)W†ÿM¹Vc®¾ý8eZáS¦\eââg-Çÿ¦lë1‡N4e[ãS¶â~ÚÒœrøß”‹‰¾°ïŽt_HÊû^¬¢noK*1úþÝe;z“Ê.§;²ÊVßóÛ÷~ž Šßoày ~¾ŠÖÜ[ïgТ¥KìæB?À1»rE÷`ùo]Ýï¿‹ìû)·°#¤ˆiŠ’¢ˆ‘"¡)*Š"AŠ”¦¨)Š)2š‚SR¬hІ¢X!ENSl(Š)Ö4Å–¢X#EAS´EŒ¦xOQ0¤(iŠEQ"EESì)Š )jšâ@QÔHÁiŠ#EÁ‘¢¡):Š¢ŠlISœŠ|‰ññ¢Àñ‘ÆÇ™¢Àñ‘ÆGOQàøÈããBQàøÈãc (p|dññ@QàøÈãã‘¢Àñ‘ÆÇGŠÇGOŽ,0>ž) Y)›1t`)Ö¢;aUÑö“éµjVÝŸÅ$vîù5ÿkí‹kaÃÈêÑ&ry’f͓ߛ—:*0 ïû¿›\ÁÄmÇËÉ2Ÿ¢#©{„5¢°ÿ~¢H†c-ŠSuge®–bºb¸žšá„Y…J¶cÎýþ7«pNÂtAS4±L8…4A“Èt“AS4©L84œ ÉdºÀ‰„ iš•L8•4‚&—é'‚fKЬeºÀé„ i šB¦ œPš÷ “é§‚fGД2]à¤BÐì šJ¦ œVšASËt As$h¸L8µ4AÓÈt“ AsòiÄŒ…é§‚æAÉt As&hb™.pŠ!hz‚&‘é'‚æBФ2]à4CÐ M&ÓN4ÍA³’é§‚æ‘ ÉeºÀɆ ùHЬeºÀ醠y"h ™.pÂ!hž &S §§j8ÌNv©‡óê^GŸBo/GÌ\ŠBÍNKrr"YòûK»¯]Vê×ð&gÍE•¨ dÞâT9Â[š*GxgÝA”C+Z"ëÉnÞ¾¬ G„æþÀª³ 6Cj7Ø]’—K1©l FòÄÜíGe„G2ï¦ë2ãÁŒÊ‡¿vg3ÃHß÷œ]ÉP"xªñUîäO –Ä÷㇙w:¡Jž}ø`Éýx B€“l™Þ³j¸xÛ^åEvå!‘ÂÈî­¨KYâÑ䟒²RÕ¸LŠJ¦@¶º?µ{A÷H 08Ûćì¬z̧º‡».pP®…â©EeÁ²Ä¹]•(¬*Ãc*¿z£ûñÄʯÞɲ(™è“}5ìo²]”R.Wn³ÿaŽÙñd24hE“< û ;Ûqva?,ãX³ÿó?¾½üôçç¯_d™ïâešÞᑚ(þÿ€ã3’|äQ“< –ïU12ˆ]H;¢s]Æ8…è<«‰]aäÔL“ß çUU`ožÉE‚ÜI·law×8ÿèÔæãrÉq/¿ uIrh:¢Yj4 ¸÷_öþ™tÇeϲ±ök/<5¨§#/¹ÞvØ$³l$ rÀS†*pÊ0r˜¦c‡Ëz–‹9‹ Nx:QN'FNhKbô—›e5ÚÑ‚ žhT æÐƪÁ£Ž*pÔQ =jÆIÚÄПÊI .xù§Ø{9yªið¿åXù¼C5ö/\`º@3;Ìa¬)›C4Ãa¬'\`º@ã:ÌÁìa6›x†Ù¿p€éÍì0¯QÇÙl’6£†Ã•¦ 4¯ÃŒ>lsYÏp1z0®0] ‰ædð6+6ÃJšï¸:ÀtÖ7•Õqº ÑdÕ¬dº@›rq x-­oÀ;tÚ|ÇÕ¦ 4³)'zHøJסš†ÄZ¦ 4³ÃÜ!á+]‡j…Lh\‡9CÂWº©3$d­Áá6'C|Þfî°Üé°¥LhfSî.tËø¼C5µL%ÓšÙanËøjÝ¡šZ¦–éë0²e|Þ!uZFr7NN¾o³ ·Lë´L#ÓåTK^÷¥z)ÓÚ”ë­L}Þ¡ÒÊ´Ždº@C›rô¡{ŒoÂ;TºÇÔ±Lhh‡9¸=Æ7á*ÝcêD¦ 4¯ÃÈã›ð©ÝcêT¦ 4´Ã¼ÜñMx‡jj‘L¦ 4°Ã¨>é›ð¥Õ'ë•L\Nxhûyó½!µ½c¼_™©´éŽ«LhbSÎRdß˯Ì#ƒÑ÷ ™.ÐÄspú^~eŒ¾Çdº@Ã:Ìê{ù•ydpû^)ÓšÖa^DÏȯÌ#ƒÓ3*™.ÐĦܾèz»¢åŸŒz«eº@sœr®“Æ»§%5hì†ÔØOá:¸¢±Ÿ¬:ˆòµLËh9¿w?ž:{·é̆M§Œ¶P ˜Šƒm\¦Á¢Lø(<¦Àc~ÿ"Hy[ЫÙbHd`)æLþß.Äj¦#: Ž)p˜ßµï6Ý‘ïœBÄó[ö# ²È°sƾâ`#ž[S(|SàØ ©è ­äÚ²¸š–ÅÑ2ÇRÌ­ÜÙÖÇw¨ÔÈÁ1íœÊ×yvAæ6,*gÃ"ZXr† 8ÙE kW›SàØê©œç'ÜbÍ€ÀÙ4²(±<älás°‹3·BC|SàØäQµÆlµ…ªÙ2lY¥FJ¥ gß.A5S‚Ç86wjº éµ2Ôf,9Ôt||‡j*ƒ-b¦Š¢ÀüQ¿rÛ³ý"Î9gÔ¯²ÇFLSÀ Ì<0ße׿;nÎwÎ9SðÀ|çspȦù.Še <s§ç»ìÚ|Çù.™"¢/ÉÐóïPéù.Je óë¢ìš.âZE8SDäLás°KÖE\é¢h%Sà1ØëÍÛÙµy››óv„sD4·WäÍÛ>‡lš·£µLÇ•_F 9}Ä }áÌÍí¹úÈÇw¨´>Š˜LC`^ØÌÌÛùµy{ãÎÛÎ9Cœt‘|N©=oG•LW`®ØÐã=¿6Þ7æxǹ""çŠ =Þ}|‡jïc*8Ĺbïùµñ¾Ñã=Æy#&ç Ÿƒ]’ðxߨñ/e <sˆjyÏ…$¿æBbzä |œEbrqyXå˜Ùå68`0.yd;3^ÖׯËÖ/1Î(19£œt¡|N©=^âT¦À+0·l_i—lµ]ã|“óÉöUvÉVÙ%ñJ¦€˜CZúؼ¸vlÞNÇæQŒ3HL_¥÷ô||‡Jíéà˜‡ÀüÑl«âšmÕš¶UŒ3HLÎ mÀ¶ò98d“mË‘sH<ï"äêÚâš®m ]ãÌÏ/¸ºÖÇw¨´®+™‡y!Ï&)®Ù$­i“Ä8cÄsç žMâspÈ&›$–¥9# ÌmxÎ(®Í­š3dŽ(¡×ÝÄÌ_£Žo.h7ì2œù]«ÃxÞØ Þ¨žî=Vq‚“@âL&øo.8T1ÜëWñ{DŽe ðíÿ~Fû³kÚÿ½«ýÔþ ©ý NºÇøœR[û'©LW@ûïB3tym†ÞY3t‚sABÎ.]Ÿ‡CgÌÐÉJ¦À…<™Ø½ð ÷(SÀYhOï½U×öÞöÆÞ[ÂyÚ`ãë2ûø•Þ{K ™‡€³Ð>ÔzÕµÖÛÛ­Wa9èÀ¡Öóy8tfë•2.¡=½¦ª®­©öÆš*áXòŒaO¯©||‡J¯©’Z¦À!à:ò0î§ Op„K,ª.£7! Km"úZÎFDñ0Ô€;èþ•Vß~r‹Òå%O÷¯²û4* Š) Ü?ôˆå×Fìѱiв“'ÇGzÄúø•±„%‚ ,Q(†×14bùµ{´FlºÂrgÆ.«$3#öhŽX ôA —(+ìHX~mÄ›®±¤F?Ò#ÖÇw¨ôˆÅ 2‘‰RÒÖ‡+³\š×wåÓ8Òdq ƒlŃl'â»ñ¦ZŠfÆD”µ(Ek>¥÷ƒŽ~ˆœ(•íöy(¦YXg4×Ö¹ÎHÑBOI ½ ¬3|Ù´ÎÀ07„¹‰BqÓ:zÑ\[gtÆ:#E =¥ÜÐë ß¡ÒëŒtL‡P\6åÉ1^ߣ|ØËÙ¢X”À.ÃýŒ´ÕInvÁÊ™‚Ù¼°P˜¿ }ßÝæÍ= Ö|°æ»[|K¤d±L,`»ŸiçãøÚ¼q6ë-öŒ´ØÏ休ûøÕT»©LCÀN?æ ,Åì¼q¶æ íôŒ´Ó]VIfæ³9o`°¢‚E¡ˆxgrÞí17oœy#ÃujFjõ39oä>¾C¥ç „A ¤(q¯§ûÔÕ“ûÞìS¨ñ3Rã÷tŸºrrß}J¶ÌY`vèg®\=¹ïÝ5m†³DFÎ'»Há5mï¬i³J¦À+0[ô¡±rõâboœ12úê@h¬\ñ­î­±"[ fU`Öèé±rõô¾7Æ Æºè…==V®œÞ÷ÓXY-e §—P{¤×ÚãbµÆÓèˆ.]Ÿ‡Cg´Ç*–)p E%¥Ûãª'ÂÅlœK苺=®x"\ŒöHe sÉå•k¿‹ÞñÇHÀÄñòª•ßEíø¯V2ÜÀ|1;þòŠÒÜŽÿ`ìøË}M:,¤¯ëÜÇw¨ôŽÿj-Sà0q̵ij«Þƒi‰cãˆ:9Жx~Å›b0,ñ•0g¬æ¯Œ9–xvÕ›b0,qŒ‘Ñ!-ÒϯxS “%¾ªd óÃà_ä± 2·=è›øÆaŽè™»0áMiÅ €©à’æ‡anU!K3·ªüUF~Žè$7»\áU…Ë …)ð Ì}:“]õÌÓŒ4ÑÁ@VifNgãt&e <óÆãŒ­uÕÛâѵµ0ªuD%8é2]ñ¶xtl­<•)ð Ì%O3åºzÁþÉ+Î/tS‚“.ו›@On¹V2] ã÷\¹¨«±W/ó?¹WcQOäsˆgz%Á®­$žÍ1‹ç¬ôJÂÇw¨¦QZÈ8Î!žƒg²s6Þ³öWÉñ"'O!|vIÂÞ³òWÉK™ÀÄ3mݱkÖݳaÝåx‘“gÏ´uçã;TÚºËk™rÞÙw¶8$ÈGKæþÞ v­ÉS‡òU¶\9Úr1îǸÿ½œ;ŒÈÛ®ÛÝ`y–2# Êý¢uèÁŽÑ„ëN Ê-ÀcV¨Îµ„&gøjM(XS€-&ð Ζx! Z£†_ÓkMæn ¯S™i(&ĉ©W%â OFÖóÁ€nl·J·[´Æ þ5¹Áo^©Z‰"b °Êšs[±#õÆJœáÉÉ:`§×¯*gmôOœºÖY¿²ÖVÿD½¸&õbýªþY›ý³”)@“¦8<õÇ뻚ï/ôÉú:`_!ƒk÷Áz H.r«qe°œ®öÕö‘xË'–{Ehß:ü-’ðSßîåB+–[sE@‰5¯ê$Í4 <9-È“ÓæƒaŒ5ˆÇ¼E$Sœn^%ïfêÔ+<™.êkÃàå1¿=ä>MAû6>\-ÜöîJÔ¬d P]Öv’¿ìMÖ¾r÷C ˆ8ÚJhÔfEÀhܽªžwF¿“»»Wô‹V’ÅZ¦;çžrÓ¬&k`€N1:Aä6Ğʚ½Î~ñ‘òþžåp#R`؇ÕñS,—åEÀÄ•1ží uœD.0ý²Æˆ ˜ ½¹çþ±mŒnÓ1ºM¡GŸ,§kßëzGí¤ h?°ù³H3dÎxÍŸA"ô,†»lîìѼÓ;ž9FsgŽ…ÆðC¡ÆÚ꣓c6b¨ŽŽ ½Ú;EÁ úðôªáš†?“E*ÌÓ+†ÿI–Ê`•òT«SÒþÐKW49â5*~P¡h€B8bßne¨ iîMd®ÝÊr™i(ŠcOļ‹¥éΘ]ŠÉéa!`ìRW–¥­ÀÅ$a·Û×Є9õ{ QÒ¹0ó૾þŒU¢Z-iµ:ѹSVYÉh¹-“޾ÙwžV¾Ögi6vþǧãÑ®Ée*t(rµÀ[íÛj7S¯§V=éPãÚÂé ãi‰Û9Øþwð,ø-Ò(¼©.tÔpÝuÕŒs Ï{¿d =ÕKí ›.ÝéÜšÙÏ1·ˆ«$ \BÁÂÕµþðæñŸ´œ(­Â®GäTé~ÁkD¢<wRïÉ{J>#g±®hðÀþ呬;~­îŽªî*H`O0üxkÝñkuw´êŽÙÜÉÍÎ#Yw>#gY®hðÀÖ#F¹ŠŒ4wúÃÌ¡§?¹AÀˆa¤"#…O˜1vj™‡ù änŠkeh2ÔhFëàã–4-]ß¡šÊÐÈ8 éŽ.Cs­ Y4·ê¹(‡n||wƒB•ã(FG1 …*È2dW#D fÐ ¯I3| Ë_‰1eHd Bïi;gàwìX{Luu݃iB0|™j´ÚkrÆ™å¬ Ûøœ]/Sà˜HîÎù|}õž É~:©¯q \“û#s|íBÏE+ô¸bA1Îó¡ÓmÞNï­¯ÞÅ3¹ý—¿5¹x˜ãk—y®W{\± ˜çùPë6o'x¼,ó|ðø @‡‘j<³«oŠÜhòµË<÷ÒãŠÅt'iÔzF¶ù'Ç\¦@Ø r#m“ê J¯‡C¤ÕîÚÓqÚg9«ã>g„T²â Ü:â{ ÜÊõ„*w¯n(·@0JŒÏ,E³Qàiž¿)žùÕ±€˜×PpÈ@Ô¯ê†âYq¿ðÕ¥(>ø‹ûLœò˜¡¿x,S`: |å–ÒFo)á#K~sm)ïä·”x*SÀ œgnhÃ'¿¦v7†²Å×–": ü†6|||‡J+U¾’)p˜?uËP^+ÃÎ,nfÑÁàwt||÷`T—a-SàXDu´Ó)Z ³N§étН+Etx‡ƒeƒÎ8v†Ó)g2ó×?% ¥¶ùõ› #¹9¸qËŒ æù›âY^»êpÄb \³“Þ…´{^T^=¸#it>œˆèñ.¥‰‹+wËLXL:<ü{º_q|¯ h‹«ú9°µÌ˜2`ï0”k˜*È-ªÀ¾Ô2ר(™…OÎ &¹ÑäBi˜ù9À½o›f´„BO‡y·1l½Ò¤2] ó )Íö‘µgbºÜ ¹Éëï\cOmŠxܨqŸãâ†])¥FeKÇd·1tÁm SÀ ¨TïñjQUe^« ¥ƒ­ÏBj›"s‰É`j“Ñ/JÈ’õ 4ѯ–ð•+O%Sš¿ý. r1ºö$“]cî²»§×kWF.ÓÅ2¾}Ü£'8¶0`ûƳaÐm({·LC¡@˜Ü|Äs}´B…>"Sº¥› oî‚YòM`(¦8¡6Pw™WwJ7Œ6Pw™[w©Ln>òl°î2¯îr”n.Èl°î2·îV2Àùh€º+¼º+Pº¹Àº+ܺ[Ëàæ£üë®ðê®Déæúë®pëŽÉçÍÃ@Ý5^ÝÕ(ݜը»Æ­»J¦7¯ó‚u×xu× ts/Xw[w\¦0ÍûÏ×JgÕéŽé Ý0K>³î0"w ¹ãPDîa¶î<}‡Á·c:ø6 eu—Êàún¸Rwž¾Ã Ú1T;f{™u·’)ôº¯ßì®äûîÑo°2…CuGGʦ´d6Šƒ) ´ÝeN²Ô“ UýšBÒ’¥®dL¦€ÐsèÉâ{eaÈê˜Y-IœMÒ£OÇ}:EŸ&¡c€àÊdŽêŠŽ0M®1Çп•! —é}ŠçÖ®K²¿ü€S˘Ž­ÞFÎ{·Fî‘*ä£;uŽœc:3¸5Žq™cˆË‡â2?‡¼Ü$*:βEéqNe Ô¡·Ö½;‰¶Á››r š c%û8¶µ›R­d Xó1öýs™ C‚¡v £ »(–›­e HóÛiWÎÍÍ_‰Œ*‚o< ©×16$ ˆ)ÀÎÛDèsOË™yr¢¡á´Œ™+c%S€œ·¨~×xýõ —ØÇ±-6³•¹LV(þ°‹F“p·ö´Œè€Ã³ú¤qj0YÊ`ºé‰>åÈ O:ÔWnÌaDÏP…+O,S"Ïò÷W4,'øxŠ3Ú½û·7jïZaÀtA nª¿z‚e2XÒÀ0à ¶tŒ!àÕy#S #ýÔîåù§ë€1æS'¸‚¦C`˜L’´HtµÜˆ=U£bÂrVʘÐúËfòŠŠqÙYuDºMWûò¿¶\.ÙÞYÑï@*;÷U.>•¾›¯HŹyEEmôH(™,ÄSj3ï²¹hÂJ¦@ê\¾‘jVñhe)è·dÜw ©LŽTxgvèïü—ž)-Êʧ‘¿*e Àt@©Ô½5Ë×µL”T~ÛW´È˜ *”É`éç¯øñ5mÙ°"^ûª^9Å­ÀX˜.08Ýù1^0î¦@Ææz÷"¨.S ¥EŒËg+ÈgOÄ2”¹×IJ¾¿\­‘½ÌbÕ2XR¿°îµç« ¼KÏØšô{$xô*âxÃqH5EÂ𚯒© ÍIu¤H]b"dò¦ãA^ÑÇc•ˆæä2]`<ðÖ†£ã öqÒ•µL›T^Ç7µì‘nYí‘ÞÅLICª0¼ÃoEåL“|5ÇŽŽ™Og½ãJúÝp9wv¾!C?Å9© N[OÈܤÎ{ß™&!­0ErK‡¥–,€ÛÂ%(³ÝiËë±æ–ƒ7™àçi¥2XRÅŒ°MÛoo*ªÊx§¬:Æ 6©^‹¯ =F: !Ù]½.‚QM0ÚhŽV¾ÒýlM* þ5–¾¶ ªL¦ ŒKB™ñ½¨O0*Òl"RÜ ¿mEeZ§f'¦ƒ öv±"¨ÐõFZSoåöµ)ä6V§k:¬¸~ßÂ(#™.0°Hx¯û•ªÞ\‚ÑQ0]à–A4ø´p%•éc€Pt*fˆÛ+ÊH¦ òAP>¼j1ªb†`L¸É®ð¢4™LtîzÑ#ÝcH5’<Ñ$ÍÜȦit@jƒú•]ᙞõ Òz~EÏ6û=ðëP‡èÈe `´ây~͸DouS@Çʱ7Û¿mÙ§-;?7\оFP|½w#‡jäBê ‹|RÔÕ1CákÓ~èïúvs Pø³ò¡=Γ¬ïå5#õ«q>^Ïèõ'VÁÕiõ.÷“7x ·&Š„ÝÏÞQ˜bŒ0åýì"¡e({É«ûÑr“å ‰¡^ŒDˆúÞ|±NÌ TéÖ‹õ²"þ¶:KšutƒúÊw8\q,"²îGß Ï8Olò…¿' ðÊ& Ùî=a :\C¶ûG‚Ô^’ðí>k®Lå/2ÎÛüãåÌÞm…‚’Qa;ƒ®z”ßBEôú‘?ÿÃÄp…ÈŸþeÙn õM'±­ù‰‰‰Fc@]šÞ7žŒ”›üy6”µÉëå÷gûáÈúS{fbYàáQ5’çלžÕo±'¸éuûµñ*Þbg7„y.Ho²µ¤JZoVþø,3ЦõãHk^û‡ðǤ A*x 8`¬ÙŦðG癵rE&MäÎ’oÄ Ó:$@çM'ÄW¨ü)¹)] ó‡!0»BäÅ~Ë÷M ·? ñÀcŽ„ÓX É X¡—íôÕ•_îá2Ù±?ŒÇîøNÍî†=±R&«+ÍB–¼^:AøkÉYw) FÍ&{è,€aôÀ͵‰v\Íë¸`HÔ–;ãJl–rõUwÖ¬ iœÎÒö+˜¦íd—ÎÒ;æ+<íj`è‡\ç1Œ÷^£00ä^ìuAŒ|# 3P ûxŵ£Á,5ëÄWwWjÇ5báºÑUÙÕbìX$ËÚ µ–ë·”"q¹_ÈWÃÏÐ\ŸËíà R!£¥U•ÇúÌÄ?êáÊx72Ž8¦rÂMÌB9yG4S™›¥·T"‘D5•ÒÍpŽ© ìMÖ›ÆE1"g´„Ò&’°ñu9Çì#æ*0»Œ-4žcÆŒ#\˜in“ù-8S×áD »·`¹™G¼ÂÒX`IÞ èå™+¡X0ì­áj/÷ˆXZºù,µ—h§V>«É-ª\YôÒÍUæRŒÈ¦Zwn´³ŽX¶*w¤nAs3x¦ÒÓûU·à¹™%^lê¼i7ë@/÷ˆhj¿ñ%¶ö™KÿHwê)š=¶ôév 6I1"'޵rS]lŒ”²VnCÂéÈÌ\£ã¦Áëtèxå©Ò`ÌŒ#Ž©ïT0’ÙúV™FzSÁûƒ³äæbAkå†ÒP#®©ÔÊs[on´rŽH%5ñ+£í\moÁ¡¹xß-°h÷Ù8¦šó97õ‰ÈæV…ò‡ë“;ÓkÜí¨WU¤œ˜ZO†ƒ¹ÐÌ8☺N.½nÒœfÎÉÔk¸PVKµðts¬íµZbk0ì=·A™}ÄÔ«'\F²'À‹fëIe‘LEÖ‹iü¢\ço”ùÁaÞ]Y•9oÆÄìdîËÙíÛZÌt7 Úï!ð†ƒ»öD½Væ§P} ïUFM2b3zôݪi’ÛT”pÇá|¤•sD2•aÏÙfØïo‚²²ŽX¦BüxËòå£eË&œš nØñqòŽhÄòö¶=#³9˜SkmÚà7§hÒþêg"1ý½¶fäcº#flÉÉÅ´uâç¶?u~lý¢+²Ä#ÛuBÍÚ»E¸òµÈRLnû§K»c Zç/ÍpÌ2?¹÷4ÒŽL2ÉÓ©ÛpQ©]¨Ô,” —‚Uw]&E!S_ùöK ï*qL%ÇÅ ÚÏ[ýŠlí÷È›ì0Eoj+c=x…ÊÔCGaáÛæKh/+ÝeËá`÷ •©LØþÐõY=¢1¯‘ÖnÙŒ£›k%4õÆpzd线°±GôiËüî}'šâ DI¶ôf }ºt¥ˆYäqš8®Pš#ºáçƒXß…3'–ž¯,õº”.ÍÊl¦"®®æêðX['…×°ò™üJ­ÚÃñ2¿=¦ˆÌ1Èú (Öàv„¢aþ¸Ÿ³0™9ŸÛÍ3»Z¢ÊgäšûÂÈõéê¤H b‡Ú<^¡HˆùØ3ù)éVKŸÐ0 V«È§ ö‘)Ò˜j+Ñ#h­BÊk@¿=OIìû+ÊõŽ®‹Ê[¯ÜOæçp†·u¬°lÌ!ôˆ›ƒ<ÖÏWt©OBâíÓ¾eG¸$½áü¢ç‘SE§¼ò¯d ìž2¿•šãC˜ffmP†¸,\iI¦Ï´öщõ¨•»ëŸeç‡6LšZ¦€SY8bJ¿ÜŒÂe (5-Í«à™á> ¼Ÿžh?}»Ì2)í–nè–~ê.DÓ6ثתWÊ5SÐ¥3¢šÃ\g­U¿t—p r¹dþúm~í¶t]Œp8F Áì*pqRD ’VqY&¬BNª‡³cwwá{Þ2£žKëžO²^ÓÐ*)XvM0EmˆV#·"ÿ¨‚ü*§‹U¹0:/Ž8’Mq ’|äSÑ™»C‹öɪ¹ÆJQOÜ*Ù¬œÎ?Ì´»ÚRƒ×R•l©ÀøÃèA4¯«•(i NØZÅ’RÈS[Mc¯>J¦c\î¤bþ0ô`èYD3ƒŠÐ1%N×E`Þ-é9¾Œ‘(¡‰B3U‰ê¬Hiªšïi^)Re³C’¢Ë. Ÿž[!Q• NÀE@ã\fR¹Fª€æ1î|¢‰Š`ÇN'’Š!UISíÙ¡v¨BùÊšIÀzâ@<¦‘”8Ø‹š&9’$8b‹€~øH™¥zÁAÞš1ôM:T|,`è’gµD’Àh;o;ŠÇ 4:(*6,0l.Œª»  š!8h*4,dnÉšÀ1Ãc¦¢ip̰À˜âQ48bX`ÄŒñß|*2ìêÜ©õ±;®gÆ„­‡%?l,0جY`)g¶9– ÁáŠ#’UÔdá›bjš)}SŒ g´õ0] ÝC䧬+ÍËŸ³IÚ‰ÛZ¦ ´(ŠK T¾uåÑM\ ™.Ðú™±]6¾aàN|˜LŸ’´ èžAåAW’ ú"–éç|‚,°ÅàÁ †YŸ m.•égýpç"(3™.pê'(Ÿé®dºÀÙŸîcU.ÓÎþÕ…Þ)Ö2] èjÙtV2Šl´<:&ÓNôÝh1üæY n.´ÐòÀtf‘õ࿦•`@Ø‚!@)¢Z¦ 4¢ÄPÁeº@;€ ÒvƒGÙÈtæµÿB°cK™.Ð ˆÐvð¨"™9›ö(÷˜¨Å™.К ¨o #$ZU*ÓÚa EPf2] UAU¨µÍLhWTI•Ët–Å«§¨Ö2] eAv"-š-˜.ÐB¸meèÎ5–Y0³DNL¦ ´ nžoŒYÆ·DægäWÊt«ûðP¢'T¤æÔJ¦ \Ý_+£;‹^±GÏá2]à ?Ôò4¯+¦‚µƒ€›˜'w)³c­Þ—ôlÝ­êZ©"˜œMÌiÓ&ô< ÎÒ`6²§óZi,œªfÀÃg ð)ç:{v«•f³}‘í2œ˜µ 0–§@DIP<Æë cœZ‡v놓|¦Ç°·ê”âg?8Ãó–¥’»×ºj¥y…Ê ·SµºÖN qm[+Í|š^^éí§Ö™ k¥ºÍ.îªÑª‘)äWJÛ9æÙuô.H ÁšTڭ˵^Ëè™Íµ¿ø«vzu/3".ÖjR-+‘­Ž8`N<䞦8‚ãðæ=E…#8à %!¾sŸÆáL8§¤)ŽÒ8Ãc´ïšKP ªñÌP½Mãn„ű‡ÇòÓ¥l‰‡Ã<ó§ûh;vQT‰¡œ»FîÂf{L8'Ód¥÷àNø˜.pV¦éü‡BpÊÇt“/M‡³øoT©íl¡™.p^¦sú¯ïâ¤égfš®¥è2™.pj¦éžÝ ÉJ¦ œ„].ÓNÃAo©/˜gÑ&Àt3.SÏæã¤`LÍæäQÈtó3GuF&ÓÎÐ4÷Oy`úÇtst€ÎD L8KèüÝ00]àDMÓù'``ºÀ™š&;Q= ‘éçꀘþ ``ºÀÙ:@×t‘L8_ÓtBÎ8–é§lšÎwÿkÓÎÙ1‚.•é§fšÎuR ôÅ-v¼8“é'í@¹{ªà+™.pÚ¦ +J'ĹL8q‡1RâµL8q‡+’´é§íPµé¹Þ#—Uc4 Q9Û_¯w9×£á€é'î@i¦ÙÞ©’é'è@ºEs¶GëÓÎÓÜTN˜íÑlÀtótï¦þÚÊ6hdºÀM¸Ð fí;h}noãáN ¦ Ü‘ `u.ÀÚˆdºÀ½¹À4üžËX¦ Ü” ÌôïMÙíÍ<ÜÄt»oµcmç]¯alªe*ÓîÏÊDMÙËL¦ Üs UÁ ½ÚáW2]àÎ\ ;sx¶r›,—é7éh²ÅÖ2]à.M·' ™.pŸŽ&<’„L¦ ܨ )fJÁ.K™.p‹. ý­ÞÅÜÞUÉt{sö ÙÚdµL¸E7gF JjoïáÞ ¦ ܰ õJ²2™ ÊUx p1"]á‚Ò´#0ÂHÃ{OŒ¸Îš®pÝ¿ i$òøÅ2Âð†AÛ] –zí.%®óWÁEAëqOe ôá}‚}{¹ì¹˜;¨}•®ûW¡mÒzÜW2ú™?%ÿ¼¸° oÄ“g-S ï+”í&$î¬B#^z|™L8¼} ‹0#.÷WÁaï!x’T2”ð¦ÁŽº¾”®p-¿ ñám L0„yx„“×¥RŒÃi`aBñÃH )DbHóðènZêrbŠ1 ¥J*c,S œßÏÛöÒ“LqpçÁÁ­=¾©L8<²GòÑg“¢®÷Çóôc®ßÏîêŒpNtuAJ")‰ëb¨Ù%Ï(1H0[¬LA°¶v·m` ;ý˜-¢úÉCêgØÝb&™˜($¦€ÖFçn8ÖÁ9Ïñ! ¬Lb¯1™@X+™NáíeßÝV{£C8 T\yHqùL®W¦Å‹€)°™9Ú ¦õ[Rl„“°ÀTЭÃz-àÉ›®Q³­CšöF˜©¡Û.ÛnèÙ±VïÔ}µ¹!'ë5MˆUçÍÑ¿Û1_eK"ZJ¡é°Þ ¢ˆÜëø…_3±0¹;ù@‡—#ñ¢EÊß·ûöµøшŸ“øÝîütiƒ1²Òõš"ÛŠ ¯(:­|øtOAÄþêŽó”a4£_¸ö;4ª¡uH ^çf2˜™~hçNYÖ¨fÖ!5ã{2T2ˆ° ág¥¨ª%*“uH™ØÔž\¦¡«•ÍvÜDNðÈ­ ð)P !5ä±¹åÄf‚ÅÀ… 2ÍJz¾Ý\"x<ñÑr+fÎolø›J‚à(6¦À làiãSgòÙñ‹1Þî Ð,BÆ Íä¦ÂHXLͬçÇh«ñ^Øgµ{L•N†ºœ¨‘)ÚˆEð¨‰ày½haŽX@LkØ |~cQ¹ñú`€öa² &7”Í`EÀØÌù¤¼©4ŠŒl7TîEH¹o8àñÃÂa ÏS%ë·»Ö÷“ .uôó±h€Ã)Š ¯8MñQxLGxvâÇ7)EF)† MXÇŽBü°p˜Ojk7LLØ nöX„¼rñÏpÖbþ¬åÂÞTéEWðS¸‚Ÿ²ð“:ToΡlLMxn¹¼Í"¸ÌØ>fÒÀYÑ[̃ ?,¦ÀsÆsûrfHKù8b(EHK)ƒÖ]Å09‚av(óÄðúYΠU³†„ôš¼¯õ\^X(L_xÖØ¾ÑÛΘb€RZT‚åM¾&Á~TÆ2¦só<óáúšÎ È‹À8q”á‰CáÞ4ÅÃ3GõÆN5·ÂÁ@ŠÒ2R<¯—,Ì ˆ)p Ï,áMÆ2P{Ö2Æq„ôŠÌo0—}~X8LçÜNÕ­3§ÜÓÇ(†v­n›,q3¿d2ÀðÌ2ÍÞuðÈŰT0 $¤×fyÏ·+p’2Ù(e%SÀχ7Ÿ‘åôôŸà‡3MšiæyÞ\HÍ ˆ©àZó“2ÜØ¾«¶Á5‹BEÑ+½ ßTÐÛòY‡é6ÊêæÛ(à9¼ð¦Bòer9i§’±=‹|°0˜¯ð­µx¼ÝâºcpOHçW¦·šÚEÆàÃ-ø~v7ãB0)-j×ø©2™BøŠ?¾¶þøÑ¨?¼SQ…|¤lð›]ºþr™|øÊ†bª?¼|Q…<ªlj¯þ ™Bøú†P ;Ö¿N“jõ Ù37†ò†4h#Yì^1k»Ì°X˜Ùû ‡ù:Æ‹UÈk˦ö긖é5X`ýªÕ G½”© ®g®fÒzoéÞ ­Ñn¯Cv;£•ÚÒñA«—2¨°I>ŧ#M9r™—‹k4µë©íCÙ²nu,S€›3¢}M³F#¹ÉŒ¼R§2ÚÿÀô”yÍ„¦mtðL>™ÛN+™ÖÌM²jûH›c,Hó˜$ójb-S 18Ø?êµ×?Ðx¬ƒÆ# §ê¥.Ü>Âd aóq:"!z°w=dAzí¼…èîk.ÆÍJ!nVZ‡ÍÃçñrO<´êþ!°´t¹+—©Àã3I’tÈ §é5;”t±ÆÈZ)DÖJyXgàã[dÎåäÔÕ©ÇöðM ©b™ÖŒwZ¸Ù¼~µ ŒjµµÓjS+…˜Z)k¨.,÷dC%ÅCJʇҲqW¶•L.¬§Äê|3¨ûÒ> ÒÐÁ…¢ôúÑZ¦@=ã£:Ò+‡û ‡ ‹WCˆªŽ¸«³0bV ³R>sq=(b\{"¢ÆâÁ+3AÙÒÚ•­’)À…õÕ@FÀ¨«xHW ôhLw4r™ ¬&¬§†p%n5¨³šÎò¡lÙŒk–2¸°þR€ãÛõtÔ¯4ÅC-ÖïÞQh¶„¥!a,S@ ë²jfŽŒ½I¨AmÖ„´¦åsg¡&•)†õÙæÊÆ‰„BEÖ„…áê‘f%SÀ k0¸®®Ò«.ÔjMH«‘hº¾J·¾Ö2ݦs|wt¸YªÖPÃ5! FòêŽÉКmÜ‘ ¨Ìš2Û79¸’) „õ×vÆA@ ÞjBzË¥÷¤à2],³™È\»îÐ’qi²%h§lös ¾^þËàò_6ˆK’SQ—²e‚ŒCzg¢ô8Ç2ê°ŽAúgšs†œC e¢ô8§2ê°ö’XçÈ:¤4 R÷J¦@Ö@ÇÊ–²é…‰Òã¼–)PÏ85=_+[–È9蜤)=ÎL¦@=ãfô=͹FÎA‡!Méq®d Ô3Î?@¡97È9èØ£)=Î\¦‚z&¨–v“¡VIY„c: i‹Øå±=2ˆí‘ÍDÚRû«´^Í"ÛQÐuf?£W3Œö‘A´l&ÈÖž H“E8´£ÐÐÞwÛ3 ê‘APl&ÐÖ™æ‡ã9 ç3Éo%S œ™õÙ²8ˆ£àäΨ]ËÃã÷Y<¹Qhä~ JÇd tá1ûHGk­TÙ*™Ý̑؞2Xá8‚[šÒãÌe*¨çbgí¯8?!VŒã5†Û @\y0nGq;²™øZj_ÿŠ<8|ãkžoóòÄ2 ð(>]7´³ÇtÓ„'K*S€ p8K¾AñqhÄ“ ž<+™PX¨jÆÓ‰PK¡>ˆCú€€ðdYË`ÂÚ¡~& f1*ˆ8¤ F2'“)†uDMÆ8ËbÔqHKÔTÌ” £}dí#› Ä¥Úlû£ÂˆƒwG|O.S“D÷ì Ï_á•£³žJ‚;Þ§Ï’8HVRá³UŒdIlÓ± 3¼KŸ%iÌ}ÓSR¥H•©xµ¥Èp˜'« Ù3Él…Ty˜É q²Sw³Õ©Š Õ…ØeÌðR|–°p¹Èn¾bHVÉÚ#q!;ÃëïYRÉöí#ÙC*¤«ƒtéŠÄÁ˜ð YE6Gª&Hµ£{1½t$£B•gù©Â#í=%"^lÏÒð@ÛlYmÓk\dDH„ix ÍEÕ1^yÏÒð(<µ•ã0LÃÃð‰ê?xÕ=KãðØ=Rd8 Óð0$Ofx%=KÃãðlQ‡ix’Á*3¼ž¥áx¢«bˆï͆#1 Ä3)$ŽÃ4<{šŽÃ4<8Ùl8Óð@¼ÐÚocgYx$žI)×8³ðP¬¨æÆ›ØYŠO´koYx¼ÚGj†_ãxËÂãmGÇ[oI…ã- ·†f†ã-3†À¡«!®ÈYk4ùؾ¹;·ÇÍýþwÉ¡ÀNì0žÄ\túJ)5_zºN FHc˜ðà cû»;ïlT•Ûücµg¼c>C`Ž‹^"sÃàÃÀû+˜Fïg%8G´W¤XýÞvpÎG^KÓí7‚. Ðhbº@ó&,‰@“`bº@Ž&D{Ï#Ldº@Ž&tßdEŠT¦ 4âh:´ù<ÂL¦ ´ãhÂgŠáJ¦ ´ä )~¹LhËèüH`(bº@k.Ðöþ91˜Š˜.М ”Z®$L¦ 4èhB´ÿ<ÂR¦ ´èhBiz”•LhÔÑ”ÉJ­eº@»Ž&¬¨Fä2] aGÓíÈþÝÈt¶MHHác"{éV—µr²oÀWg–¦&ó߆5;„ɸO&úÈS;CÒ8$˜Xõ<‰ê:‡+‹-½Òï[ÁHð=d†Î 'öÌÏáìîð`0žÄ*µvÛ`]3w”AÎîÛ²›càŽŽ?ïf::s†Ì/&¡'gÈÜñQ³óf&»;>>°ú0ÓîøPMø Í0C瓳h±t½{ê]Xj$Ôº&_™æ~O ×‘“³„M6*cìdÜ´xº‡Êš8Yk¶¡¦NVØq£òeN>ždÆ•“ñYLG:kîñ¹v2^B 'ã“X‘™“±il·cF*ìÁŒ•“Qè4¡&E8À³JTvîdflH\ÑËÉìÜí©ÁŒnGíEÑ„]Gæuûj°p·«JiOt/äno ås{«D½ô¬ni·×Îdu{퇎î Üíµ¸F!sºÝ´1Óí·—À0予!pw9‹õöfOWV3õµÑñÔÖµ0_ÕÅo¬;ÚeÊ5"FAD‘É”žfÁ,#V|Mº+pF®‘œ›Æ%$54i€`\ 4«%lê±²­Äx:”Ф°ÏQý‡ÈÉŽNÖHe…<ðÚº°Ç蜱ÊÙtÝåØ]8Î|bÍGgOàFÌptÎÔÉyx`—@ÖÌ)ν¬ìx€`5¼k5¸• %¿; ùïûßý ¢Õ2·³7Ýp†ØAa‚µèÌžd¶w²6&TšËVÁösvŸVKæÓ\IJLűž#-ïY³Ù²ckìny2UJl㬶êLµÊTãôö.b}…¹=H®rŸ:~¡'{x3nµl¬f?´ý™Ñ9£¥ÓAö{ø?Q²aOp1‰õø5¸7²Šì~>Ò]'‹-2±<æ×ÌGˆ0eâPÖí–ú¸„öp¸0aî÷C&ЃBîónÛ „®îH­¢A0DÆâè›ÊÆ8O|,'ÀžYÜ‘\Ek›¢a¹ãBf.ìÌ5;ÈÄ_K¯"fgÞ±^î|%þi•:3?´U·ïŽtÏŽô`QƸHuãfÕC†ÃË´/†»‚—_1Iž„J gÅ$ÕÇp¤p3ÇK§¢f¶‡öÜbÓîI’È!Ù²œø[y‰[E;¿NýêÀêšZ[á ‚ün¹‚C Ä¢ù(W2#ƒ$È 0HÃ’» R'×#{œÃO×7à Ÿ]‘¿ä{8½uäÏfðpk¶Š°r2Šæž-»¡OL¡çD ½iíd-½~çüÎ4—Âùé¡ Ëá2ß/Œ©|ºS2ë†"-ÝŸ¶×h·±«BÞsµ€òjªö*~žÁ…»£üíÎ nœßIJ–0q•‰(h(««DÎWêì¬ÄI\õS ÍÄU=硬îî·á¼îøìYÈ鎲:˜Ó1¯TNwÀ<_iÊz«{y⎘pÕ¹ãAŽÁ¼îØñ­Ò&—Ǧ®ÞQ(6½;Lúí™s‰`k=Á ;÷í¤ÓÚ#D¾äõÝC€ÞýM¥p‡‰‹1•d%ÕCèÂ.vÒ¨¥CêŸæÊðiÔðIÝáó4sꎞ—Óþ½bjvIÝÑ–4ÍÄK‡ þKÝÁtìº@LÝÑtM#ouõ¸£ ¦eš‡7–`–>°]?œç§Ÿ1ãȨFfêŽ7ßür~×ëчæ²:ñ÷OMV©gh+«œþ>ñ*Õã e•Ó?óX¥Üâîëæº¬%‡g³›?*šliIä™îæšfZÙmÁND¢Ä'’¿jªia7ì,xâŸ<¬2=:FTêÐÒ&Ó#´¯‚¹3;·T}óƒU6­Ú†²¯Äzá" ® Z1ê– åYO…=ïpà‰ a8†W™ÏâìXðhw•é¾ÿÐ=òý¸–ÇuÚõŠ* R]¨1*–[Wj]}7ÿJ%ÚCÅžYÂTz°<²‡§›úÃJ•q¨n7íå»ûãÏãVØÿ›H"Ф;ò‰"Âÿ&Š˜¢Å™(büo¢HH ˜'šÿ›hRŠ6ß&’ÿ›H2’¤}0¸døßD²¢HúöãD±Âÿ&Šœ¤á8ÑäøßD³¦h8x»M4küo¢)(šck6LÿM$z4øY:·WzøÔ¼jOÜÙËs6ÜVz¬ç]!ÑãÚ@VÂØ¼°À~áÊ5ÆÄøØó¾'V†ŠÂ[¡ŒAÛ&wW*ý jËÑIæÏ8wK}2"¹–˜\¬³~ÖÈ3:» yxÄP” éZ.*³»‘‡7H<%s+o‡!wm@Üÿ»a¯HgS3rîÚˆS{car|•["9½_11°äuÍKƒ‹iLp_ç:“ig'wíÒ!¼çbð©n+ŒÞ…²,§Üµhr™F¦Y.v?m‚æÞFÌ »'£¯1NÑÓ>LîíÃ\øÕíæL¦Ó;ÖHu—©%¿¾Õ–ƒcvׯµæ“×øn}º·ÊÝÅì%´„ÿóñ(¬«º¿±~Bôг«yO7×¼»L]ÅüŠÆ„IÞ\.Kĵ«¸Ë«ˆ¥hʸö·³gvBƒªuì´i¶v•¸F uÒ+;y·ôðµ«××V‘xŒ £ÍÑÐÕáõ[µÀ ÙÓéì¶}’PŸT#W©_ªë[N &dg¸¬½=;%¼î” ÔU×µ¿ÝêmÇÒºtíªe“ÐKŠÆÕ¿šfZÑ„®võ 12ä$$ ãêR±´¾µüÎ.ÝèjÓú-ˆ–ÂðìÓáV¸@'%6Øÿ%…~ä\¸ÚTSºÚ—l¬ÂÛÄ¿¾‹OwÕÂU—g5çkøW >(LWžož–Ïþ¬\¸ªP£… 9åq]Eè–üØ6ňïj@_n—ð¯ëúÖ+…C;òtãù¦tš9ª WK¾¿±ã†`áªJ-ñü@ ™Ð¦KáªV8zMS(WÓN8·–®Ž  <·\®¢íYMjQšÚUªõmÜ=KóF{b¤g®&d­_%sô®*T[×ft>e92W6æ€= êTBÃh𑇫›×)³& Ì˜«$®KÍKæ*ÇæÆsÁ«\,©]yºjÅ5³#¹úïk¦ ›ëE®ZÓ„7öBWí®–¤;ñ£qrÇ<%õÈúíÕ£?™Ë€ñŽ„UA®Î½••s„óNˆ¯UhÓ©˜«´n.Ôa=G ‚àz‡¥ØX=ÖÕv›ÐFgéêµÍLC(W—7Ý•^¤QÉÙºtUšŸ}fj(]eµ^- ¹oSºÚjóºÑVºÚI»EÒF«"sÕ&»¢JW­hÂåuµ E?×®vÁsÀ[‡¥«UÌÄ[fG<ê±\Õr&üÂ(ôú£tÌ”ufœxÊCÝØ ®¶·—ºcÕœ0ù¼NÛ» ¤h×…Ò3ª­9­ÏR¹ZB‚ûŠë Xg7øj±*oM@nº+Kp¸fÞéÝ¢ÊÛM1æ\«è&1->®ª1< ¯ËlºZ¨AwÑpߪ\ݲkÏ›mû|×];ô¡å‹Âåê›[!ìåtå]܆bFT® zºÅ;w«rÃ÷qz;ÍÄM: >9IrÃIr FèlZ;SrÙrºÕm³š…ÖN—ÜpºœA†ü#p><ùfrÃ7s)Fðõ,¸áÄÉ 'ÎpI1‚³à“·'7¼=g°‘`„ö¶s·þ¡S` ûúõm„ÝF:i8ô¥Ú¶wì¾™ìXKuîqŠb£‹ÿoåýW~ кzn{£žË—ËûþéÜ2mí€ìæÌN[Ò«5_F*/L¶m$,Ž ­ˆâ‰¨¼‘$¡ø„/1çËÔç1—=Sٷݹ}îŽ÷~.ÿJåÇLwýŽ?ŠZ…@‚œ$@k-@±ùvE ø·0f“¨bæft¶@ÖRW;ïöœï:1†>½ò²øe–¢ö(PC´}$i‰CŸºÄžGºÏ«UÜú;9>¢ÈÉk{X¸Xû‘àò(v(K~ 1Iœ¬vð6éTÞ”Ê+Òs¿Žm€(sˆ„łҬÜÌãê@‰žÔ‡(s‡rK/óhíd ]OË£Âɼ&›GÌã,béd½„³VDÖkÕ];4OC‚çDÖp½5Nî]°ãÆn'‡'.BRÄn/?´ôíÅ}0Ž~‚LÒ0å| ¥z,xçLAf+‚ä =&:aIøØÓ×ø¬I¢+œô¨8 }[…Áõ0À3Œ]pÓ1O]ÅÝw›ôés0îEžºŠ[шæMP©«·M˜ü¦‹ïÚöO¢&E²šY_ç™{¬UÒÎÀ7¹/ä™{|E‰†÷=á9†á„Žë³â¹çX·J±¯ŸÐæ™{_z¾É·zâæ™{ªUz»sNÜ Å=Ÿ/çOS™ã»a4'ºw+ð—}UÛ/›x'­ªÞp$Ï‚÷Q^UŞϮâñ­’*ì'}ËõˆÑ$A5ðÚþïj ¾3ªH½kÓå‹W áy2kÞpÓ¶³íçm„_3'\Ó² ‹ú/€ãþeÌàeÝ f¸Yf‚+\9dœEuµÌ¨¨€æp½vÔ²EdW½úªÜ®ºz8NÞ3cÁ‹˜ ]Ñþ•ÚpÕÜm Wëˆf¹~ý+"»êòUØW%wu¨tÿRÛ…ÕëUØ9a½ëiöÚA¡a¸+AR¯—÷-ôȦZr=æUÎÈÉÙoÙCûÄB{íëØÉó®ë;«ò&NÞsPŠÔÉYsfNÎýyWNþcMHÞÜÉËöm0ïÚÉûÀØC(oáäó*”—9y›yK'o-þµe®œÌ—pŸ¨Ý:f,(/wònfämܼÇÙ¶+Ü^ Ã'€]¸ý¸ž‡v»ñó|v·'_æ³»Ýù)TÕ…ÛOóÀno~?ŸÝíÐÕü`)ÜN}¹wûô6Ø ·KïÂYÝ}™éÑ…Û£Ÿƒ°n‡F–¬Û£{Æêm(³Û¥ë™ÌÌíÏð’8™ÑíÌÏ¡Œn7Kós· £M(³Û?„G5s»ðcX2ÝYÉšvOñûªLw\&2ÎæÔ]¶-Û¹|º¿r^r>—Swסæòé¾Úue×ÍåÔU°žË§»)*ùÓ\NÝGë¹|º{vÂZ˜«ÇR÷M¿”ÊåvÌchÈU‚z×yî›g7†d^EFFíŒyv#GæUläÓ¾•g7^d^%f¾ÉUòìF‰Ì«ÔÈ9ù=žÝØy•™µãÙ™W+#£öI<»q ó*7óM.†g7úc^­œ†¿àÙù˜W…‘srþ;»‘óŠaF¥0dóÙþäUiæQ÷JÜL•™‰|_*¯j ˆÎÃÍ<§1ót™©^Z™è<‘™§f›’õ­¾OêfŽÍÌä#Vy˜yÊPjf:2ef¦K ÓÊÌô>)73‰IŸÎµ¶«‚ÎT˜™ÎLV—:‡rYªd²:Õ&TŸV·j™¬~µ d²:ÖžÎÄ­Ž%´ßc·ïzºƒq«ƒ€vÇz äJl¶t&«kšš[]ë1ÉêZ!™rGòÙº°zØûÿkÿºã¸®%‹ÂÿçSä Žu—àÆ(‰J«Ò·’åÊÊú׫w7p°û†îÝïÿ‘”d‹dåZßA­¥9g9b"c Þ©‹*9¢XYyH&[)<(œœ×\Nµ^·WݾË0Îg™tSÖue‰zñ)Ìk!oèoú?ÂTéP½>#o<·Ûì±·_´Û!Þæ{v¢½òš]ì0Ïâ¦FÙ¿W{HÙê}—8Ôù[xϵ šèä"âxz›÷p¹ê­cÿæë¦›½e.†Møä7·¯S}9ª¶IÕÚù,ñWÊŠ®XƒU|û¸w¾Bt¹¼óòQ519ŽüÕè>Îg›<ðì:â»Pž{gü>“Š[qÅ„¢U2‰¶½ —“\}Î58©sTø¨FyÄt㣻e]lëcÉ`Ëô±:| –”26!w°{\F@Æ£žo Š€”Üq9G@ÈÏ}­.èøv .%¬º£µ”Íw ø§üʨðÁßL ŒÒe\šæx¿õüàgU.gþ0:%¬õ}º´}×kÑ΃š«<ó‰Jã~D-£ÚMÐ!Ñ„×ê_}g´·´Á+£Ó ‰ªYLb‚îb,£.É/Þa^ˆme“SãP.9-!™äŒ4 –©C( Jâ 'µph‚yàÍèwA˸À´£ ¼Yß© ä­ç) L 0j¢ Î ¾õ˜ÿ¬Öuå³üqošMÖ2_‹s!‚/.—IDH¢SÍÃ̉çü®F&’J-4Æ“`œŒpn‡þëK¨ðNÊ`­kÿ¬¤$©“<^ôºí^5¯˜ZêïþË`E(TKE¨1dÔ„1ªf4¬ŽÕ);RË*é¢/5¹:Ý3‚LIewf’Hw{ÕÿnÅzÿø÷…ÓÈÅŠcøŽ‰l10õ€¸û”f.ð~;H2­X¦¹gö7.tÖÓÒ³8då!?ðT\™ еm= ÒÞ0°óŠ[Ì9£÷õã…ã]¥ãÝùpÜ£¢k%¹çFŸ¤úÀ8îÒ'ÇûœæBqÏ>)Gïë[ Ç=KºæP’{ªôIºÝÇÛüúܰ©"ºhú¶'óÉLLÇŸ³èúú é«!þ5±‰;‡$p¢ liÕ+¼d‚ï_}¼ÏôeOLçŸDÐëË8^Nó[…l¹ûR-sOÓÆfûÒÛƒŠ M—Œ-æˆ!wÃ)0d zËü$-{3¾‹²ôv•> m•‰»gt[·/œ´*½Í¢A¿dÑ;œóŠ¢^²ìÜy­¦f7–Þ>Òí"ذè}Këõ"زüBôšL¢ï.Fxä²½"dã¹æÏiO|=ˤÊéÞ|Éé™Ý¾Q>?oeQ_8ISúŸ¬:ôgpãë¡Zܤ9;»%ž_˜D[‡„ýíÿ ¿u3-|·á;9Ëç·mâØÍÔQhƒç}ÓÆ=X’ª÷A›úÕ#n¥÷›ïCˆ/y(½ÓŒp°¹ô>AãÚæõ#î¥÷ëK.¡â |äÁlv`‡Kïã1Ï#œ/æÙ»c=pÂ}»2Ýè²¶Ñ3ò>.ó8»w¼\®„ã†}ë^pý/äz†ÒûhÌpQØ÷/ÁSïs0æÅÖŸ¶áô~Õ×Zï3.è£W>ÿ¸Ë³a ŒÉ¼ï¼(°0½2Ú¯ñ¾äòûq„üy*$ïc.èT{蕽ÓÖ/:¤÷±ß“„ÏÛ!Æû€‹WÆø®‡_ÿï:øhóGï›6~ën¢›î]ˆŽ²ˆð¢IoÔh& Ïàëi ÃÎ öÉ÷ÒûZËŸY(à{ÈÛ'ÓKÿC,/Ѽ°Œ/ò\7^}÷%L \›&z_d:üÙçòJï“(«êû#;®WÿÃÆÒû8 4ˆ+ÞgQœ@ýÉÙñÒû<ÊûÀäÜ8]ëÕ‡AÀ-ìeƒ>ðä°.dƒ¾àvFµÔú¢€éœßø¥ùeÓÖïáé´bx—ÞTåuŒ¼‹ª|~Äì7ØBGv*M?4Çë®ÊÕwBœ¬õç[ß¾j|>@7ô¾0ú†oÃŽÚ U׆ÐG?D`wü ÇÀæ2ø±Žç<Æ4[LÉ`û2ùÝTˆãáÛ8]Ö #ÿ›è·oæœJÝMœ¿û[ °ËÍŽú1R”Œ÷£¤†¾ëaXŸâGÇSƒ_õè.—ñ|§©9p2ú˜Ç´iHtúx~£ío×»îîn}ì¤|~¶c¼gÅ0_ÄÚpÖç§;šûpüšWxh¶2mRàèÜF? sR€œŒ‚;çóû«Ì ÈÏÈw«—Ïx˜]ý—ó gÊç×; É™K ¬Æbéqꣅ™Û¨n‰3·ÁêüÌ…ÝÃiÌw_­º,<²àVM–[p«+Oç Þƒèžßž2«&óâÇù32ÀØÖJ÷ðiÉÃ`ÒÒ]õ;•Æ0\>Í—6R{NÈ›Ñ÷˼Š$·‘KÁ’Ûà=hžÂúÃÜ6¯ÐEÍí´ÁÒzÁÀsúÕâmÂÃÍÌ„ºîq}Н›õS­v»}+гxC?o}]&JÔx§ÕvÏíŸÒ®v‘Ç~{$q¾ß~Š)È#Fâ1~ö7ÕÕT}¾çèÀÓ5ÜÝý€æJ°ÀöZ"(ÁV{ÇP [ì´ÓIISšåˆ)- LšYm» Ik“:@ÀÐh‡j{ñœ_0#¦9'„i\àš¼?°f#¤ï#¿,Rø;3Œ$~f–‘È‚E"oX.¼¿,ÒõwfIú±•Î#9?öÐ9à zI>b$é¶%`¤æ¶e¦‘”ò\03{C$fú‚HÍìý˜éë!5³·ƒb^•…6÷¶«’Ʀ!Y_IHÖW–w$ëš`‘¬kfÉúD°HÕÄ$ê`‘¤‡aUÖÉÎ/ëiûHR@Ê>20Röq…Öö@~È’$Æo¤Š$òÇQŒDΰHä,–²×G¨$é&5ch è&–Æ ô|Ÿç†üqd•´\üÔ_Kco I~î‘&Á÷žîœà#‚g]ð4fÊHãÙC$Ät‹H™a>º‹„—ÞÒi$´‚Ð(¡d" W_Ui~£ ®]æ.KW’¨Ç`xÃÞåŽñ¾Ãüì1MêùS)UÊæªŠúCBãT¥(1æ=z*à3Ë}.'è™=tý!´ÉZ½}“Ž˜³˜Õ(öI3Uf9‘ /?å›hôWuyj–ûˆæ>nS6üæy¤‘™óÜ)ƒùÍSPÃòcÕ&F™ß&f¨…ù8Ö´ÐP7êݦ€†zT¿×¤PϪ]÷‘uŸðP/k°X1`¡îV·&Õ€û]_kVç³rÔ[pä`9ê‰=&ðì@ÎÚ¥ç¤VT¾Õ<)Ór°VŸ¼šÎZ¹Y³¼j¹ˆÃ-?r/'<º—VyáãwÝ; «¼ôá« îU…U^øóÆÂ£{ca• Ÿð¼¸ðè^\Xå5À?î/<º÷Vyãã×Ýk «¼ðçm†G÷6Ã*—>au©áѽ԰Ê;Ÿð¼ÛðèÞmX–GXgÆÍ½CH…?[:­ë]E3]35_êáòÐèdæ¸ZÀ‰$<V !Ê…áLé'Æ¢ÉØEã’;£æã$†OSudx_ æã7éߨÑ8Hñó‹Q Ô^¼“«N,‘™¥5ïÇ˨?ll¾³ Y¨qhiá V¡&sån_Ëó» «ªÇóO––Ñóâª@ÛŒç’èᕉ ­”ÙœÙ/sG€… $ePz8¬\ žÇ-…‡#ÀÚ†çñˆáq3]v.;jµóŠ—@•¸@<ë]¥žA\•Wéd¾»òjMvW^µ﮼zgÓÜ•WñlŽ»òªžLpW^Õ³ÙíÊ«t€ªÖ2“Ò{.+OAlF[x¢ÓÙ"r¡,Þ‰ØG2£ž4Ù,¶ðÄÉ^É'}#O셜3ÕŠ7=UB–Å.vApâ€s%b—=Á¡É±Ë} AΈ]é ²òp@ì„$ÈÎCJ8§!¢ÿæ8›Qâ!/pZCD©oç3ò+OlˆÈ¯!2³!"¿Šð4„ˆü:"s"ò+‰LnˆÈ¯&<»!¢ÚG²ôŠç7DÔúHfTú/…‡‘"òE¦8DìKŠÍqˆ8ò°d’CÄ1€2³¾VÉ4‡ˆ}±²÷òÅJ_ËW+{+_¬ô¥|µ²wòˆ';Dì+ÌvˆØW žî±¯@2ß!b_xÂCľ‰T_¸-‰/)<ç!_Pë]oÊÒ›z46Ç× Þó&_.«)õ{ ¬ûjÀS&"ñC©dUÅ[“&"YUÝæDˆH:ˆ†#w‘î0˜ #ˆ&“"1œâ ˆ—d7ˆHK\.¬G“Ö¹0|ƒíÓü·N¥†&'DævßôMë#1ùʲv°½ƒÅnæ§w›T’§~¯)  øñj q ó£Ðjã‰ÐO\ëùÊe7Çÿ"/\4Ÿyé‚ù €È+˜¹pá9‘ךOˆ¼qÑ|@ä­Lˆ\ºðÐ<€È;˜Å*ÜŒýõÊ<µXù†¾ ìƒáV¦poºX5(w"ËbÕ5‘J2Δ‰"sœöK|ˆé³,({+é¾4¥~ñïjD9¾ºþ-ÊØ¡„Ïĉ2qð¡q]™=ÁÁq]™û@‚,<$®¸²ôYyH< *…$ÈÚC—ÂEÙPœÖeû$L­Kè4›(;Ï>V;¿&p±UÉlV‰g˜S?¸”+_^dTZùúb£ÒÊ?V¾Âب´ò%ÆF¥•/22*­|‘±QiåË‹ŒJ«ÖG2£Ò)ÒÕ¯|ù±Q©ðHG¥"ò°lT*bef}©²Q©ðÅÊÞË+}-_­ì­|±Ò—òÕÊÞÉW • _lT*|’Q©ðÈF¥ÂW • _€Dªµ¯?Òì×¾¤È¨´öENn‰Ú— ŒÖ¾JÈú¾¨}™~Qû2aH?¦±äWu¿9\­[ZäõJÛƒÛºƒh<\mvLÐ^kÜ61†S|ñKý¢IÃ4ÊË /|J4dQx‰ëŽuë›*”)xÀH45äpƒ3Ï"‰Æjp¼Þ®Ô„ éGžðÊ»~û^zëncí]ȰüØâ»«µ=ú–…‹Œ¾eé‚£oYyàÐè[ }ËÚCFß²qÑÑ·l=phô-¥ ޾eçÂC£ïn%Ï׆£ÝJžËÝ¢ó[²K^tÂq¼Ç »Ú–ËÁÚm©ÌMâl€Þ¹Àˆê›¾É´pÏ›Y:äù²Â˜›ìçåÛ«ìzí/Cÿ%^œ ¨wñÚ_ï’5401Pﲚ¨w¹ƒ"°Â†Ááj½+U6 Ž<ëpPVÛ°à@½k0Fòz×Ùh8œ¯£S„ø­£Ä†Á‘y¥Ž1üÖ‘S¹xL^GNí’y9Õ‹ÇÍuäÔ/Š×‘SÁd^GNãAx9ULFàuäT.~×QëÀ˜9é¼ÍÔ‘£2ê®ã‹# Ç‘ $ãí:Ž]3èHŒ´ëØ{G|ô=õ±×pÄGßÂQ{ GTx\]ÇŽ¨È ºŽQáu;¢"Ãé:vD…ÇÒuìhŠH/q$…GÑuâ‹ëÄ‘ ?׉Sÿxð\'Nõ“‘s8õO†ÍuâÔ?ƒ9Á‡¥ºÔëÖh¹NÚ524T®“¥v7ÇÉuÒùP2*«ÓÀÂ1rF>”u;Ò`)8ñÁCã:MJ*|Ü_§%(íG±hKo»:ËmNís.%‘6¥ÉÜÝd ›ci&4j­³l 5¡×#\8ÙâSBwáW»ß1z)Êí½òuæÄ¹õNùZßlPÛ«¾uæD¼õ>ùZ_jàܘF‚Zîµð½Î# Ç£ó:¢ßš×y@ûl\^çKUmÊë¼° |D^祅äÃñ:¯ld`,^çÂÂâu^ÛP> ¯óÆ‚ò!x·620þ®siaCƒï:ï,l`ä]‹èøväºp”ö‰õ[, ëјѻÞ`ýã.E";´ë"A$ýÑ-‹±ªà"uÓW#æ„ndãv]d(¥y»öx`[Þë"Gt5viò7Sô¥”5§œäèî¤ã„ߦµàÀx§]ê/ÑiËÓï/ ZäR#Û}lYXÐ@[–2ÐÇ–• õ±¥°°¡>¶¬mh - ècËÖF†úØRZØ`[v6ÔÇî–š?ßOµnŽìã«Êê"iúÂ÷s;¨·X3֔اŒ‡Ë]ŸÓ³9kÒ¾[ñ5/œiäålˬ[¢÷ér!ཿ¤B¸‡nemªÕ6êÕÃÈEµbþ®L»èvcŰî„]¨Ôd£Ju”Çûû}^óºœêþ¬o>[­~…ÖÌš]dX/šùžßìb Z3kv‰… ,š5»”¼Æ’@ø²…]4»Ü…\áà`¿»Ù•.Œà*‡ÍN¸0‚«\på­Ù5§ištàphÒì:†qÑÎ-r\FQìàà褉Fp©›,.ËȾ4‘«² ×D®tð8§‰\í%½&rÅCFNMäʚȕYÕk"W8xÕD­‹c]i‘áX¹â"ã±&vÕÅ–öš8rdm¯‰]!²Å½&vµH†eM슑½+Fú2®Ù»¸b¤¯âª‘½‰«1<ÂlbWcd‘¯‰]áU¾&v5F–ùšØÕÜ6±+1"ÅÄU¶6‰«/2¾mW_x<Ú$®ºÈÀµI\u±!n“¸úÂcÜ&qåE¹Mâꋌr›ÄÕùÁŽ%üÍÖ"b“´4´ŠØ$ñ8ãgØéH:€&ãâ&Ý!0EGûciŒ ›ìj-QÒ…prÀa]·´@`Š.Q ­ŠQ§þ¶kìÅÇ&€Fζ6iÀÝ ‘ÅÜ&µÕ¯7ÙÊ]­Ç2àG™û ”Uð®GŽÄ%3×%Ûßè¶  ™ÌÏâCè.þõr<â~Zî†áðÚd“»á8¼8ÙäÈ‹6V'›<äNly²É5µ9wÒä…å“'M^ÚP>{Òä• LŸ4¹°Áù“&¯,Ÿ@iòÆÆò”&oh` ¥É¥ Í¡4ygƒ“(MQX®{ëuÇð„ö7Å£.ËoϺV%¨†-m«Ôþ)‡›þŽðó©it¿R@QSzšeÛÒJ … –ô‡g·-­ôSÔÌ’Ycܶµ’WÑl¼Ÿ®ë_°ÝxÁ Së7”›o¸alýŠ%œñ~?ÝÑ2wSîöB "ÚyKÊr‡ýzJ¯2²y›ûž›2¶ÁYœ2±Á¡iÕ4Ù¯ð’2{`ƒ³6eîá°px®¡,=V.T€ðpX»ÀðÜMÙ0FÎv'’@kPj¡ €v×pŒžíNú 8¶ow@bh´µ .Š}(á·Q 䆧ÚH O´Ð™h# 2<€o# 22-ÐF@fdb €ÐðÔ@¡‘É6ÃÓmÔ(3 tH¦Ú(‘L´1"›&hãÈ“‰‚6ÂeSm ´K& Úˆ—½/}7 ^öj@¼ôÍ€zÙ‹!ñÒRêų m ÔKæÚ¨Ï4´1P/™khc ^<ÛÐÆ@¼Dç Ð.i) \2çÐ&@¹x.¡M€nɼC›Ý²½%m”‹§)Ú—LT´ P.™ªh \Êe9ºYpJÖÊ:Qr{Õ^+QÁá`›4.W_{s?nòZ—š%i“µ²7çIÚ¤ÃpxP¢MwMà†³.m<%$˜°q~¾MÓ %映´iAÐ^’ª#¥+0ü9åÑê½2­}ê¾MkB[ó ÀkHîîNzö‰ý6õô”{ "³¾”j×|Ú¹ö¯zx`Û D¼æÐ÷7xd¦Í@Ô› _˜bßL8âé]\OÊöÑœ6[«Ä:2¬þÿm>ÌñM ¿éÃÀ½ôNïV¶*f«» >7]S¢Nëçfð¯Ùö)ärM¯YÊã§<ûIÇknC¹þAë5¯åY~¤jgÙJVÒÂê;'ÙlEý1¨ÞºŠ3dpšƒ~Dx®ÍA"<׿$ÚnÌĵùFÐesqm¾vŽÍÙ¸6/<8ŸkóÒCó¹6¯|t`N®Í…‡ÌʵyíÃù¼\›7œÏ̵yë£ssm.=|hv®Í;˜Ÿk‹µX· µE䣷¡µEŒi[ÑÚ"aN¾7¢-RF ÜÑ1÷G´EÎRܼC¢- Æ Þ#Ѱ1yõ.‰¶°ÜHŒËç#A´)ÐìÆÔ2žÏ0>p’cb`+Î5 0d\škL½“GûŽ üÏŒH(£ý­?+‘½ºÛ«-c›±LÑ~á.™Øðy˜¡³zi¼¾›(sBZÐ¥Á+ÞÀ‡е‹¾À¡[/#C.<„ï<ü1¯vÂG.>PAUìCèÄ«ý@ U©‹¾ÀžÂ/!´/ñP‰xÂÇ«¸BœÅÛGÀ7*Oc'5â‰é n•ä{ˆèiodéÉðCœGñ]¼…¸õ_‚L˜UžUc®¿+LNx²\½a"zú\¿aé‰u•ä÷ÑÓí:É ÓÓð(Äñ¾]¨ÂÓóBÔ…{¹¼ AžÈ—z æØçÏBÇÓ‹íëR S½8¿J´mCLÏ7׉†©¾wÞïC{˜$ày¾¹”k89Ï3×"zŽi•kˆéyæºXÄÚsN«TCLÏ;ÛG °<{iˆå9×êõ®!¢ç\ë× 2ý†ã™d"znµN2Èn@ûžtª7ð\è+„ö¼f¡=Ñ/r8X'¿Ÿ!´'¹g¨ °¼ÆàéýAž'Õå‚,Oª‡Ú×ç#oÁróÔÙ…ÐÏzŸFÇoGñq?³IÝæMÖ3Çò(¾]{½ä„Fí‘>TîzEmƒÔQÛ^5}[̘'Úß"†µ Mt‹™òD¯B„¹9Mu“Z"ê»P鋨‚¹½œêûOÂ4M[3ú²ø5Mñ­•$Ñ&MåCèoI¾³-µ[–fes x¹eÎt~ï½^†´sÖ:9ƒ~èK®|½/LÅÊ1³±²D„À„¬¬ !4'+¢„¦ee ™YÙ F`rV¶šŸ•Q‚S´²C”Ð,mãšÑí¦Ãw<°mI­{F¶ëýÜŒ÷é«;ª©PAÁlá'¥¾²ê z½¥IOIêñäE )ÅYÆ›Óï3=ö臋Þù2° f 6¡ò¿eCCf#)6ò¹‘ÏgN2lärÞ²1TÕ&rdbê}Ïïa+ h6T¸†Îïõÿ;7²f¥k Q‰¨ÿ ¼Ì1›¨°‰>ô*OÈlD°|lY•Fí¹]Ôÿ¸éç™Üà\äV.r1Ѻ&¾.o_ÁrX³éhͺ»ÌÖˆÙDçš/ªß1Šnâ˜LèÄê=Ç &ˆÙ„/4ପÊÜ+¨7›ó⇆]wõ·¶ÐlÈ‹"g•œ ¼ØüûL÷â‡*}Õß ÖŽþ}¦{‘C•ü|ƒé÷™îE©Ôï!=!³/bÌU÷Jõ®*؋䲗Ë3/^äÐ¥Š]æç™ìEŒú¢†Æý)ËŸÙˆ1®J2µ…ù÷™îÅŒë$¹P)T™Äl‹&€ù÷‰{ÑBÛ¿‰Ó5è›kÐlÈ‹§‹·tmbúy&{BGÖPЛŸé^\TS{$>ÿ>Ó½¸0T<,޽xp¼¨îcH< `6àE÷°™Å}¤ëÅ€ÏËÛ§…Á0ð¼_·¤"ä7 `6àyþM—ç-ຠ`6ày¿N Taóï3Ýó{%ÇCåôù÷™îùýQ·Â÷P<³ Ïë/oÁÎÎôóLö¼^·šÕÕ ~‚¼iÌlÅsüë´„wAÕ ~Ss~Ó¿NüÄóü›9VÈ«QÊŒ™Mø>¯þKŦoâCõÚY×”… zq`Jï¥L=råEƒé÷Ç–Äø§ÿø·ÿüÇÿû¿Þv2mßLª³§Å¬%ÌïÞ•tÐʣн˜1ýü¢•‡/r˜ßïÞy8hæ¾ôx/’Ì¿¿jçaÈ( ÍDjì·eh1ãÇóóËv†¼ørU£Õ‘rçS]3 l6³¸Ø}ä¹ùz»}ê‹Þ›~{¨ NÿýtõôÄO±‹¡!‰û*Kɦž‹Mª|ņxÁn…Úw×ÆÒ¼§Ä©zíÆ§;ìo¸¶´Ãèl;ÔlRµ6(ŽA›;õeñaÆÜ_¸?#>ÞÌÏo_®Lêy×IGÖÓE…çs œL`Õ¿ÍdϧbýÇÁÛn„¢Bê9ŘçW#?&(\[£Þ 6#fžG™D—- ÏÑ[êù’ù}è7M JñÚëÓô_ã(>Å–n6æµÞzäªþ¯ª·9ëßg^ó}V$=6 ~œé^® d&¼OØãÇ™ zìjÄ,œïfÌòËÄÌæx²9Á,³häË2‹×@>¡,³Ä&’e–®¡ d™e’OË,_#ù„±Ì ˜(–Y¹††&ˆeV­¡‰a™y‹Ž0Ú«ý ^ý8ó=_ù8\N÷pç&^íâòœ¿E댲Œ-ÄyƒÝšºÐQÀC²Ì×È«8öìø®,‹5ôüNrY®Q U^ªäÄ®,Åz ¼IãÙ$ÇueÙZoòE2)=ƒäL¯,;JNÍÉj $ŸUäaÉ^YÅÊÌ&þ‹áµmYYBjqAUÙ4%´1¤Þªp¡¬Î«ÒköÒ–äÎ$“–Øjª­D ÈVcðu-5v·•®MŠì“4qáË‘–ÂRã ¿·°tHI–^nâ|ûtCÃÞ¸Âp|ÐV 7TñR·$‡ð£9•,…¥#RÒI˜)HL ’Çc½õ7ˆ©'í¬7±`\äâtÏt¸|ìÙ%†ˆæ =OPÇ65u©äzzYg’BsúÅ…‡¤ÐÒ…N#ê¨ØÊÃÀ“\çS¢JX¡£¨²®a%^h%N½ÉS¿âÉÍò²nœ5ͧîºÀ) ‡ñ!¾©/ïaVíÖ—ªâI¦}3½'Îðx“ï‹Æ¶ÑÊcêŸR©o£+ÿðïÿQÿ×?ÿãÿQ.¨·òÒ:eFKk]PÒ&¿ú[€Ù^îÚÿÖ:ÛÀ³naE;ÞÇqë¡?¿5©¿Z :î¡ì*¤Þ&e6¬ò9®®Õóö>èK;hä ßÚß÷öm…ÊÅIªþÕô èÚQ ¢C@!Íå´,òwÑÓ‡—÷Ëøu•ó‰\íC&}œfNxǃxñžŽ+nãpQds³Ð´x Jêí]½æÛ7=Ó2SÌ|û8|©Â»š.Gû݉.ªB¹hua«ò»«Ä©± ŽŠ4(ßzk?T¦ß›þ繦­UÌi(çv?aJ (gU)Ü‚iäñ$s—Æ._‰Û¥‰|šÔvT‡¼.lJêRÈ}»]š¹H|Ûn—æ½Xá"ñM»]Zy¹Äël]*\¤·Ìæü>¨0:ÜÔ{\z²iíÛp߀9<¬4.È[™cFÚ‡Ö·aÕhjTzeå.ݱtÏt;¯pqgžÚÉJe—yrÇë”]æ©Ýzå,ò_9ót+»ÌS;¾s·Ë<±“w»ÌS;¾o·Ë<±×Ö{åà½J—‚/Ýí2Ï?È÷K»Ì÷²¶Õežov™/õßÖ»Õàݪ ýˆó‘€|dHòú­!ÎúÅJƒ~¾ðT[ˆ”ê}±âÎþ|—··Û]÷(ßoY÷1m¶|!e6âÎ-+voû‘ù«,¹Ü¡ >¢p+¿.ølé×õ4é{ž#¥2¶_h³êK¥tHÖ`ŽV¾}êSëΚI™Øvogñvl§uÏM‹‹ g(®OžŸGoÿYØfùæ:Ãò«8ÞG²êÓîz2ü«_†`ençþØô«á2ÒhYØŒ/=ìÛ ”n"ÒŒ“w?û‚¯lüI囃yÛ÷Á`õD½ÑÃý0]Yûœ“RQãLÜög}‰¾"…s·š»½×ß/ýY·în!À%ò®”ŒûH’;Fô3-T;`á9Ž&¤(@:PVÌYï””H뤴}¿Ó[¥œ~æ‰fœÕPR ñB)8ë;%U·ú¢,ÁY#ÛäÑUuˆÅ߫ᴶ¥,äDëøººÁP¼BŽ´”“T‘=‡á˜$ŽÃ‹E<‡–Š8ŽS( ÖEÀ…h™ˆ€ã\))à7W^&Ç©))à7µS&` /JN?Ñ4n§‡ÿ„r»/•€ßéi ¹Ýo§\À$8à'M4àu¿ù ¼Ž¾_ðºo”p:-ë€Ó ”p5vÍYW\ë£øÚбø'|ç/àa”p°ë¥tÇÅŸ”¨®¶šž B®>·âsͼϞ!ü§#}ÜßTWUw¦ÐZTÝùÀíÕ³æé< 2öËNPÓa”¸UŒòÛS“õVßk³Ý䈹+¿šÎ·C|«IJ™‹Ú‹Qct¢=‰·÷e<ˆ6ž4Iâ¹×'Vz‰éMvW¬¦rÑçË@ßZ`ð´KïÆéIáÖ„¨7·‰ !ù†ˆl«Ëc ¦¡í.f‡ Û…Ó:»ÑêÛc×ß{o¶*š…pGXëìJ;©îøÉlܦ:ûÏž›à0ÜÙ{¶l ­‡V¼ ç¯õnN¸At±ãÌH,;A‘ЮÐ6Û›ußoª¢9·Ÿâ6öÓé}XÊù^¯6¿ /¨ùi²¦½Œx7ƒÞ8Ú": þG)Zmá¤wÎ!°$œþqýq›h¾ sRêÐËÝ¡•lŒ< \PÈØEÂÅfL< 3™ºH¼€­™‹„ Ø ˜{@–xá"á¶–™¬¼÷KL )<$…Ö.>UÈÆG²œ¶.=UHé#™ÑÎ)ŒŒKªÌÿ›¨/?½Ë±ÎSãÖgü°áú£¬µ<^>5¾øÒÆ/ ›°H+Kå*°pò}›îÑAЧޛËùv9«1î\˜²5G¼H~š Þ@xíL(¦Ü`’‰ Åôbùû ÅÈBútŒ­s 9`zÎ@acKÏ(lâbù9…N4?g À™ ¦ç 8wÀôœÂ.–Ÿ3PèÒAÎ(tå ù9vôìÇQ“æãpä“Ö6%ˆ}jž@8^1êR„ðÖ…7—ÓU)Q¢3] /]¼è.ƒÔûTŽ©sIïfë7ÉSæõZðÎ2…ôz-ø¦ …ôú-Ï=@ïu]‚_ðU¯óÜÜñ^W&ø½_ExŠïd-+‚B*C$üu`Ū‚,Jóú>ºdCæÌëœk4ºf^]£k2èȼnú„Æ}»ŒüË#è“åCÅî^`“…¶h—ï^`“õÅö}æ]|¾}ˆAž©£å°Ó´"Ê;ÔRþt£ù2}ÈöI;ˆñÐcff~H}Ÿ¦z®õ)oêç·ëçe¦³!wî|ßrèm>Ÿ•ô;Ÿ~ÇýÚÜé„wÖ_˜0Y¼DŽ1¹~‰œ`ró9Åäö%r†ÉÞp[ —Î&{r¯×æs¿ˆL ¯yó¹ïF†#wY‹™É%ô`ý%ÒÃÛ…1 8ø™Hl,VÀÑÏÄñoú]HžËši2Á[xN:¡‰OÞØÞÀISx#|ƒ&s³…7Æ7h¸Ñ_¡½ÖΠÙ4iá5wN& ¯¹›Œ´×Ü4›»+ü¹) w¿<° =÷0hÒò–¨¿ÇCté7`ÎÐOÝ;¥am ìJèÓœD–Pÿ†w ÿ!8PÂáT/ýYÑ™ ˜Š›ø²dxÓËŠáq$.ÃçŒƒ^îç¦?ߣÙâ‘÷i<©?K1ê›Kôè/n+žÿ ÷“¹(ÿ(ôù\âHeg§l“EZ=}jŠ›“U„ƒ*F„À´A•@Bhî J%4Pe˜E¨rÄL%T$„æªQ‚“ U…(¡™…Êq#ÕžÆ>Ôí«jÎÀ®Pá å^QÞp<¬à¬òÌ`½•Ê›f0e Õè¯E+¸7Á0…Ï_ÍQœÌ–H»ý»¼ ï½i߯ý¨ÇMó üyü›·»aE”UcZdh1¥½cZlh ¥µHK -¥4 Y©ae”õ³‡´ÌÐrJûSË ­ ´—Hah%¥á<–†UQÖN¬24AiGqC4ah5¥pjµ¡5”v¢5†ÖR–HkX’²®81ih¯ìæušWsgô%¯-2ÞVso»Á’ŒŒ·ÕÜÛF˜ÉÈx[ͽí3ÎVsg»â"‰Œ»ÕÜÝ>Ïø[Íýíý€ Å8\ÍîNÎ8\Íîv€.—«¹Ë5„g|®æ>×à·3>WsŸûÞÍø\Í}®Á4ãs5÷¹†Ôñºš{Ý/ürÆëjîußI•¯k¸× ×ÅÆëîuÈ2N×p§;ôfœ®áN÷ YÆéît¸ücãs ÷9óõNŸf\®á®ó…J?6žÓp‘Ø0ÆF#íªÒVý‘]¡¿ßNzùÿ‰ÚGêûïµm)ò,Õ¯™ªg[‘±i[±gëý5[ï³­ØØŠµ­Ä³ez3Û¶4LÛJŒ­DÛJ=[ò%Sr²”K©¶”y–L·gÛ”†i[™±•i[¹gë÷kÙú=ç+7¶rm«ðl¯•ü8—|alÚVéÙzíç7,¥R[ªÄU½ÆýHÇw ,B…æ;Ç’3‘ï&…`AûN2qxAǾ£L”€nbà-†COì;Ì“z£Øwž1”G߃VD^W±ïG3/Ycß•VÉñ(“Ö$Dñ½i¦ÂgìûÓ\ͨû.5‘B±1æN(uß©ÒF{ƒ†gKS¾gJÀI|¿ÚÒ_âû•¡ðÀ’€>—fð‘ø^µ¡îÄw§'#Tf h41ì‰ïL†Å;‰ïG”ø41Þ€n™M G‘àŽYÐÐA3ÅðŸÄ÷ÃáÍX:j‡~¼+ÙðšñÝæÁ W)è¶é§)î@z¾­iÁ$SÐD‰3‡û~dô’wê{ÒÄ xxêûÒÄá›ú^4Q¸Ç¦¾ Mþþ¾ ͉„ x‘®î©©ïCS2ÜUSß…fJÀWSß‡æª 8^J:AÏK}?ú’·@ Òïo)ô· ðµ¯rfæ{ÎÊë<ß…\o }_šë7_3ß}™ïPò h*ój].!&èçM’ øpæ;×£KÐcF&Åá;˜JeèÏŠï^Sœ …¾Ìw¯iàHãKæûÖÄèÈw¯‰xß½æÑ)ïve¾wuýñ(á©È(xÔwý9ÁMxäÃáÆè(Õ‹òćâQž"(1›ùX /xˆò@1²`VK„ÅÐʇ£ÂGâ£HQ^#(É@2@ -x-’YéCáÍQÞ¼’r-€f?q^  ×OxuITÁ~áÌ@°’@‘`I€^ ÈU|#…+¾‘Ì"ÁRÃ@² L”PÙÊ 3 „«À$Ó@¹ Ìꉗgè÷‹çhXe›.ˆcŠ/ßH()ŽÙû•@ÈìíJ¤d• {J fƒ&™ŠÖpVx( Ó—Dª¾|îUUßÝý,X i…%o4}ÿÆ…ZYßiUßY="MÓW’þº3MW@ÓÁ@Ô_wZå Ϭ@*Ô¥`%R!e߉@*Ô« –Q¿âΪ¼Bªî™i êžÔbDÝ3Ï­€ª{âZ5Í0tO‹Z½Ý $É4u TmÐLØ{"àì ÔM6x,*Äm†FüP¸`Å)`·™e…nI#½ç` qÞ*ˆ§Æ/ :0é%*¾µÊ/K‚ýDísø\»h:0T-ãð±¢>'0äçƒÊzGСIÈ:b$>£Xnjç#ê„qhÖ)£„fáêŒf.0íQçŒÅ+³.|N Ð€ŸŠ ¸ÉÆrg ¼„ƒ{„'Äkà"|αÎÁ]©nš«_„¦ùà! 5À)Bêi€CpÝ4ÀæpÆ»ΰŠ!o€Glni€Clîíh€GlÌÑ5À-æý •ƒ¸Çœ»PµÙÞHÒWÙœàk€·¬cq @€çlm\i€ÿÌ‘2PY¬q™IÈ×ÚØ)Ó†Û™P´´¹™¨´([Úæl„Ò–¶<1P2´õÙÞÐÒ6(™[àusn.ÔÇ›sˆ¤-p¼‰µ5çßçÛ®zà{) 4àz[›¥Zàt[â>7SµÜnÎ^ ¶$ð¸‰j'%pº‰ÅëIoÛÞ8&«M¾Â+J/ÛÞê#‡my¥žµíøÕV[+WmíÚ‘hHÞ¶#I_/ q \)¨8Öß ¾>ð£yçÀÆOwÚØ 'Í9 D°xRpŽN´xxè€=X¡rï'm®öv¨{øÂro¼ÉøQ ·Ñoš8\°ð¥‰ÃcJ|iâÊøÒVËÔñé…@!wšIÜŸšI¡0Þ¯šiA¥—šiÂNÞïv{©ºÝ—k߼ݾŽGQ%¹H.ÞE ç¸â]Œ°pr.Þ%0$)K8¿ï2ÆØaáte¼+ –ä¸`üŠxW!,)b°¤ˆk˜’‰Y·Œ±aIw‹â㪘È8‚2&:ޠމ#(d¦ä*™I9‚R&ZŽ –‰˜#(frýj!5ãOÎÄRó‰4Ró‰”3Ró‰3Ró‰•2Ró‰`‘šO¤Œ‘šO¤ˆc¤æ¾P5Ž‘šo¿q!ÇHͷ߸”c¤f• ’¤æÛoRÎ1R³Bc0Róí7.é©ùö›5R3þÜQ#5¤ ‘šRÎHÍ+f¤æ•2Ró@°HÍ)c¤æqÕL°P̸ˆ¨e\Ä ”2)â*™q…L°PǸˆ(cVÄHÅä"û8A2¾‘æ/A:¾‘æ/AB¾±æ/AJ¾±æ/AR¾‘æ/AZ¾‘æ/Ab¾±æ/EjþA°HÍ?pA§HÍ?p9§HÍ?H1§HÍ?H)§HÍ?©ù.ã©ùé/§HÍ?X} þÀ;ã TY&¦‘@|²¢CýwMÆTqØ Êˆ8luD6ƒBb›A%1‡Í ”ˆÃfPKÄa3¨æ°È($ƒ 90‰dP"¦‘ jä@D’#‘à äãi¤ÆÉ‘Dj\9RHMJ#G©IYäHøS3qŽäQcuä(ÔÔD9’ÒO‚EíæORÄHt?I#ÉýdEŒ÷“1’ÛO‚EMæORĨÅüIЏ@*Æß… ¤âqT<â".ŠGRÄRñHЏ@* ©xÄE\ ¬ˆ‘Šñ×:⩸!EŒTÜ"F*nX#7¬ˆ‘Š‚E*nH#7¤ˆK¤â_‹Tü q‰Tü q‰Tü‹q‰Tü‹q‰Tü‹`‘Šá".‘Š‘n_‰Tü‹Õ’æ/Ò¨—H›¿X›^"qþbMz‰Ôù‹´èRþ:M\!±Š*¤¢3.Œ ©èLÊ¢B*:“¢¨ŠÎ‹TtÆ*ªŠÎDRùºP\¡`xÆg’â IîŒÅ’œÊÉ’Üù‹•3’ÜïÓ+Ïø Q\¡x&_ñŠRóûñ2ê;ž ‰z¡àbHÛ ¾@dŒä )}áŠHð¦ Ý/\)É¡°ªA^€?% ä¤2|Z@.ðÁŠyÀ+wä‹ôÿAJÉÿƒ4W5Rÿ©‰øƒ4W5’ïk®j$ÜÖ\ÕH²¤¹ª¡ŠH¯§†2"Ýžêˆô{j($Öñ©¡’Xϧ†R"]Ÿj‰ô}¨ÖŸi @X‡¦ ¡=šJ„vi¨Ö§iHØ["|b‰4H"¬¸-óÈîË|':‚3߉àÎÌw¦$¸5óI îÍ|'Z‚›3߉˜àîÌwZp&ùV{÷gŽ¸ÃšÀý™#î°&pæH:¬ ÜŸ9’k÷gŽ¸ÃšÀý™#î°&pæH:¬ ÜŸÙ°¢†k›¬¨áâ&+j¸ºI‹.oÒ¢†ë›¬¨á'+j¸ÂÉŠîÓ¼’¢†5¯¤¨áNÍ+)j¸UóÊŠîÕ¼²¢†›5¯¤¨ánÍ+)j¸]óJ‹©zÄ{b¸_sÄ›b¸_sÄ»b¸_s$Ûb¸_s$ûb¸_sÄc¸_sÄ;c¸_s$[c¸_sÄ8 ܰ9âœîØñN·lŽd'{6G2‰“ÀM›#žÅIà®ÍOã$pÛ¦“\#Uw‹DÝ‘‚FšîH9#Iw¬˜‘¢;VÊHÐÁ"=w¤Œ‘œ;¢f¸oôJ°0Dã"†»F¯¸ˆá¦Ñ+)b¸gôJŠn½,ŒÎ¸ˆ3œYÃ!xŽ,Éà'†:fà•ܚ˩îÏýù] œNýYŒýåü&ÎíÛÏ˧Ôßk;¿‡·“>ö§ßëçÛÉ1'‘¹?àwÙ ²­¬²yÀçÕ’õVÖÏËÐÞ®¢‘¹Rmw?ßnã劑‰•ý“À¨µXÕ«5—ã匑ÙÚE­4zd§Þ#„^©ôÇ]Þ6Ji%Ó?\—¬w°¶ý{?¾]Îr^‘úóÄ ;~^žØXýybk{ÐG’èDýy¢Ý]îܪ?OpëûŸ+Ë™úóK|ë=±¹úóÄvVþ”ç'ºPèõ&Ö -û÷ÃøD—êϹhå-«LWêϼñù~ªõç×ùØG»8ñÁŸò<~­ðñŸúøC?XødÏ<|w±áéžûð¾³àÙ^xpUA<_ÃK®ëÈ"kBåL5­ñå/<¼®( _­ñµ‡?ÜÏí [«ºÖŒU®ßo*€Û´5î7½ÉZŒµTz"'G¸õôDæ®àÞÓ›‚»OOd6 î>}fŸlÇOà>Ôše  ÙÇÇž§{dŸõÎJØ©eÙ‡½š}دeÙ‡'ëÙg=¸•õʲº¸Wš}Ôɽ’ì¯wÉŽ—³8šVðí«ÿ-ÇýM.g‡AF+ʈ!cè?Ôÿ%”ÛAÈ01Źë;Ár—AƇ`mІ%Øtë¡°LZƒ–>–‰4èÎGÃ2é4ºö•}@eRi×¾´¨LJ£íÚ×ö•IiÄ]ûâ>¢2)ºk_ÝGT&¥‘wíËûˆÊ¤4ú®}}a™}×¾¾°LŒ¾k_ßGX&Fßµ¯ï,£ïÚ×÷ –‰ÑwíëûËÄè»öõ}‚ebô]ûú>Á21ú®}}Ÿá[}×@ßnÞø?‹€WFá¯ð3*ÃÊ(¼ñ~FeX…7¾ÂϨ +£ðÆWø•aeÞø ?#]UFá¯ðwT†•‘xãKüÇ–ŠÑxãküÇ‹yã‹üÇ–‹Qyã«üÇŒ‘yãËüÇ–ŒÑyãëü Æè¼ñu~C`#óÆ—ù ¢‘yãËüËШ¼õU~CE(ŒÈ[_ä7T‚ˆ¼õE~C(ŒÈ[_ä-*@aDÞú"!Úˆ¼õEÞ¢Fä­/ò¢Æ[_ã-*oa$Þú!Ú(¼õÞÂÚ1o}·°vŒ¾[_ß-¬#ïÖ—w [YaôÝúú1Ü(¼õ>ÂVY‰·¾ÄGØ, £qék|„írmD.}‘°a®Ê¥¯ò¶Ìµ‘¹ôe>Â@QK sèüµºô…>Bï¯Ò%P:tÿÚH]úR¡ÿ×Fëh€Úˆ]úbÿ„cÄ.}±Âr1b—¾Ø?a±±K_쟰TŒÖ¥¯õOX(FêÒ—ú',£té+ý –‰zç ýË/…3åÝù:ÿòËDáLyw¾Ì¿ü2Q8SÞ¯ò/¿LΔwç‹üË/…3åÝù?A´)ïn%ÂÛIë’ùW‹c Ð<ÿ2oMx=àEÓó/óþ„w¼xzþeJ‚ðLÏ¿L™ÞOÀK§ç_¦t0ï„xÙôü+JwJcâ,Ú^œç °¾¹½¾®yÞ_ÿ·?’î"Ä€3fé.FX!àÔ]ºKš`Sˆ%à ášlºË!–€ þúÖ ª§DœF C¯gˆHAV!yk ck\QÜ 0ž4Mw-߯©”MByÓn# L‹ ö?‰ˆ"¨ûu"„}¿K#è«D zÃ'Q`ÝaáA×8‹Û‡¸öœ}Oõ§tŽUÖ ºÙ&›FÐ1Ö‰t’Çû3ô#è-s@ùÄè)Ë9|³óÒ Ït½žÍ_”ÆÐe&Öû ðNi ]gbÕ*Ÿ—ÓÛA»·¡Ç·å§1ô¡É€zÁ-6tª‰=èuØ->ô®…ÏHÐÉ&R{¹ëu¦@1CO³ÈÓòÎO9Œ}cêY·ýðòÿ4†8Y;õmkN?Á¯H¤1ôlj:å@=úß—óøÈ¶t²s=ÞI¾¡Ÿ.¥ðy~E¿ûÆÐS%¼i>¡ƒö ôBÀÐ5C‡Ä»ÌÒúá•õ¬è€x]š@g»’æ-Î…7¼¥ ô¤+i9èBs0¤$è:KO‰lÀNè"yuèx×cš@ ÛÓJŸ,L§ ”û³A£<¨|²²ž&=9ʃ^peý¥d£3G‰)ö ÒeJ7ºs”‡½ƒõ~Ò'bW! t£KGyÐ[®¬/“â¾Ü:B„®òµÅÂ>ƒ±:‚žóð{Ì^CZò:ÍÈu }ß™¦ÐSFât|ÍcšAï‰V3èsíRôŒ¥èÉùã4ƒnñ`‘W‡ÞïúL3èäRÎ4ƒ1’€›m o(:ÂHn¶á ”adñ6#Ó«dû ¸ž X%CxØ;X¼ÍñdÀ:BÄ®BnŽgVÉô–‘EÎO¬“!Dè*Ë—Ó°Ó`,v@sè2# ‰9vårè(# 9t2àÉ¡s|°¸ŸC—ÀØ¥9ôˆâm9ô|Ó\Z@/ø Ò/ ôç¸OIÐð€ieO.ëK ¨zr‹\Zlô™(j\š—]&ʃºÿ`1µÀ3`ëdúÀ ªÅÆHƒò°;°˜Zl 58» ªÅÆPƒñJì%,8–C N„®²cNÃNƒ±Äe0zÌírßnGñS~©pˆ;Í%t›Ú*ô ›z!TèD6U*^qÁ!¡„NÔ°h_âQC×iˆ;—ÐsðMãi ½¥!¾UBo™£=#UÐUðði…\ÖžVÐ;µ«8åá‰ÚÕF›ByxÖŠíj£QáD¼øH¢vµÑ¨Pv´«F…±k¨]m4*”‡½„Eßj£Q¡D]e‰öœ†c¡ËÜÄWS{tüéÁT@o9±@( »à+¦úȉ(]@9a! è'";Ýb„”}Ÿ2Ð#ȇ$SÝ€KņPtr†/^Àx5t‚‹gõF׊¡'œH@«7ÊÃîÀâY½Ñzp"v ÐêÖƒò°—°ÀTo´œ]e „œ†c7æ® ºÎ ÇÍ/þq7õ K:΢1¥Á vãzÌ™EèAºÉ™¸`k#mð¼ñ‡úá) ºþ JÚ@_ Ÿ+Iè gi›ù[ÊÃûSˆ77.@yÐ ÎÌ+›é[N„ްDJk±3`,oL‹ dcG‹=zþ yÚB‡82×l¡Kàﬧ-ôˆ#qͺþ zÚBW8/kC'J‚?UŸ¶Ð È7åÓºÁ‘¸X»Ñy¢<èGÒ j7:OŒ'¡ö¬$7:Oœ]àH:Ar£óDyØXHntž8» r£óDyØKX“'NÄ®‚±oÂÂà ©þâÈ(Ðmð¥{©„¾rcaPâwÐCnDçt|ý_Úá±5]bƒ”=_Ϙvx²–ȦÃó³$œuN@yx>–„³nÃ(ºÀE³nà 8:„³n£é <ì,šum#fø$¹¾2ç@ÖÉöÍ2|$ÄJ†ñàbî=rvŒ….³à^΀+.>,REóÑ].#K:Îér¹É¹ØàbP†OŒ< ¯ eøìȃõ° ó.b%DˆÄ[XsO†Ø &q ÆÓYXÏø´Çé>gø„þDR†q|âóø[F>²ñÅcî>S>\E*zùT†o|‘ƒOoß±N†ð°—°(ƒxXÉb°›ÅiØi0ºLÝ×ǹ“Šiø”Çê•0 7 Óª vø¤Ç€]Ÿó¦<1Άçàiâ ŸõX€ÇG<†Þ2Ƨ:ì ø0Ç@Üië8ž‹ÎðyŽ«äˆ¶ñIŽUŽ ºÄÀ<Ÿéx¦B‰øxÇ€±ƒwÂÂKæÓ¼¡à“·X×øhGÇtuàÏ/døPGGtuàï$døLGGtOràQdø ùjD†otT0m'BGè0Ÿg"#a|dã<Y $|pƒ|›*ç5ITþÈÆÜø¬Æ3 ‚ò'_«Êð9‘ÔÉù 2R''4ØHÑ c|Hcu8…3ñ ¼DÞŸÚÉŸÚI/×É(Ÿ×É Ÿ×8ßÏâgÿñFê ÛxÈ[à«K$ÂÂ;B)¼3äA",¼Cda‘òÃóµaáùÚ……9x¶Vsî#ã@9à©g|pãküñÉŒkü •ŽOküÀÕ†Ohü •ŒfüÀÕ„Ofü •ŠfüÀX܉Ãáó NÊ·Gâ.øœ…‚“÷Ü¡>q±¢‘wÙè#‘¡>„±¢‘wËïÌ ðŒ3þj†Ob(4ãŽþPi†Ïb(4ãþ*l†`œÉÇ[3|ïæÊðÁ‹3Cã5‰i­ïà3)~¼*±H±â…ï…DŠ »ÆåÒÞÂo|úÂ"’wÃî±&’÷Ã+k"yG<ª^!É`‘ŸÄ8²Þ>ŒÁâ$>†qdý |ƒEU|ãÈzø$Æ‘”!L„Å…OdÁñd‘•|’cE#okE#¯]lE#ï¶±¹Ÿ È𹎼t²¼ô²¼ô²' _Ûá+y7èf+y7¼ò¤áwÃç=æfžÄS|ìcáà·Âg?~%|dá÷ ÞéóŽ?Þá!OÉ_ðz¸wVzÁëáÞÉ­r>$ò¤‘bÞõûÎ ‘AŸX)ÃàõWdtƒŽVò ‘â ߺÈÊ/|ë"+À W±m^øÜÉŠEhA·b{½ð”'‹bбFñ‘”'‹bгX¯LY±0 ŸKyÒp!âã)O.D|6åÁq!â3*O.D|BåÉ"¥t0Å"´ ‹‘ ±2|\åÉ"…t1ü­ö YyHý ß~›ás+OaÝ _†›á“+)¾ s]1'èZï¸Èñq– 9>Õò áÂç[ž$ º™¨Ä§\$\äø´ËBú ±Ÿzy²H}êƒÄN|öeÅ"´ W}؉Àgó ‘â úUËÊ/èW-+À`SÕ² ºVK‹0è\-+àsµ¬ƒÎuÄ}ýÑy²p!â£:O. |PgÅ"´°sá¾~ŽÏë×ó á¢Àç{ž$ :Ùo\~ø|σDŠ/è`¿1'è]ý¹õÉ 7d¬¾Â «°pCÆj,ÜÑ* 7d¬Î «´ ÝHÝ _N“ãÓA. |LèI"¬ {á{yòðÇ`ð 7yø[07Ò‚ásCO)À ‘­9>H´bZйȖÁ-z²H! HÏñQ£Gˆ'ÊÅ'Žž,Ròá¶‹i7ÜtQñ†Û.¢^|éÉÂ%"-¬†ÈŸEz²p!â#IO. |$iÅ"´ ‡5D¾øˆÒ“E qc}‹HYZÑH1†;ˆLŒøØÒšFxa7£r ûÕ#v´C¯‚öûyCèeÝý8xöŠ8øèÞãžã£MçwÇ»ÖÉžøn:³Mñ9>Þt&»âsr¾‰m‹ÏÉÑ&²/>'‡šØÆøœ|Šf½ šlƒÈñ¡&›JŠ ö³™„ŠÏzXTRÛ{ÚÉ=9>édSIñnok'çs|úiE?uŒ[c|jµý²ÊÝþò~§·ÛU4òí$†ýïÿV¸Ï›ŒfàQŽ£ µìIFÊØFï=¼ ,/ØI1À+zó2µ‘7ÑÃ+&ó2³ç”7/sxìm ØŠžrÏËÒŽý™¬£••l.Gò6ÂÊ~€_SËËÚFžîøËÅyÙØÀ÷ ³Ø:%ù.E+H>¥S=ã zxÌB¤Š6Wm.èë]d:ÈŸr¸ÉÖáü3àˆÝ~¸ŸûæNwõ¸Ô_L‹È¦üĨØF݇ûoõxÃJ‘Øè/\y"u`•Ù(ÄEn£ÆÃ}èoâ·ùs‰«¢°‰’Ôœ(mœ8ßTàVLT6örÃG1rÕ ÚFf±v€ò?l“‹Æ/ç÷oõ Õûír£ùhm–ù¢ý·ñ³‘¤ó–Õ9(Ü ÔŽrI›U;jUA¶½¨g«¼¤oñå+yíˆ÷CÜÉö‰Ún#I6Rß"þ®\^;ò…ç)óÚ‘¯Äç.óÚQ뻬/oï_ÝÙuTû.H9Šý¼Ÿ¿_Þ>¿Îgâoµ£Üƒx?*oþS×.X¾6 `•ˆ8R"×p˜çÈø,îmÿûíüÕšÅ_LÈ뎦`5ŽÊÛ‹úGû€­›pÖßÔÿnø” c M´ÇÐÀC3`õŽ¡‹r è܈C?’*hŠ5vâpR!Z-×ȯûýC¥¸öç‘ä¢ZãO÷ûMed¼ˆ3ˉXãÇ¡ïoâʰõ«ÆBã¥aÐÆzÁK-hQ´VTN[ñqè9^®ñâClwk¬8ÜZæín¼‰Ó×åCýã|þ¢ŒhÍøÙ½81h¼†6½-¯;´‰]ªï~7ú~mj•ÅAàÉÉ6³­ý×årc`KÆ8ïÍÛµïß>î÷fXb>ÊU‹ªÅù7€´Ä\˯/qÄ&-_g¡¬žî,Ë–†?.%û#7÷AµCÍ×¼Üý6ôò¸¿i’£C±”,~ŠATœÉ¬FkéYèQd3y_œ€*”‹ðÚþ½ß~K5H8ÿïÉìÎüyB# ª» 22žÈØBêÀ‚ŒÍŸ'2±‘}uñ‚MÌŸ'6µ°Ýå>< ©ùó„f6´ÿù´š™?OhnAoý¯27žÈÂFÊŸòüÀæÏ[ZXٿƶ4žØÊžûUÁVæÏÚ=ÂÄ$-vUÅBÅŠ‹Ê‹–ô™Um]Ä8§ûåkMZÕ`3’rÅ5gU—]Â8µ´8«:íRʹÛo´ªÝ.£™T\‘VõÜå!Ò7·,VõÞA¦S +teè”ÊJ]&:EóH¹ÛíO—óû娯Õýð.¦84ñxâ¢NýõÖß4^A›ËéÄL&+œsfÕæ–Í㲪åá²µMåðz3Ëg¾ÂŽ—ö¢|¢ß_׃òÓëÿF”bE¹õµœÏûå[}¹«ŽÀðeŽÉÈ$Y®ø'½í,¡Ê‡o”XQÎýp¿`½.)}Æñ§jgÍ‚¡ŠTGÙŒ—Á„lØ’—»æºŽã„Þ¾B7Á+s_W^Å ºŽÃ¾ùE©Ýî^HÒ´8Åhí)›_Eœ7€e{hÞ–Q⣠a¥>ЖQæÃyƒXF¹çb>:Ð0–QéáCcU>Ð@–ñºVC‹~eùH8ÇQƱ„3)eœøH8÷QÆ©„Seœ›$£90J x{-}(^ù+ã ”>Þ%]ÆÂÇâÉø2®}(^Q,ãÆ‡âÉÛ2n}(^O-céCñòcw>O2— Ð*žÝ. V2±^&@®x©¦L€^ñêT™Á’u¶2’Å÷_– ,Ø” ,ÞíP&@²xÁ¶L€dñçÃË(¯«– P,Y[- Yr§H™Íâ˰Êh–|Ö¬L€h“²MjÉM~e dûßWS¦@¶än›2º5=>}`5U†&Ê(ÙqøK˜ œd ÚÀq;Q8n R ìÉ:É8dƒvY‚€ù á]®e ‚æ³Iä/Aà\‘ˆ?• z>¥IDÐgA£*ääª×‘ÌU!g#Írr4²!´¬BNv#Oò+ôªK‘V« º<`\V¬Ã½YO¬ã½ýjÀ§æ&àÁ%î-+àZ.—¹e\Ìåff£¹Ôï,ËpzÑæ2¯€×¹Ü¶% à}^„ œÐK—% œÑå2W¼“ó¬"24¼¿³)IÁ{>[N'BŽzÇŽŒƒDÈY ½'ðX7¯5{ÏP¨o29¾›6:ŽK¿•/ø-›+¬áÍÄ<­á½Ä‚€á­Ä‚¡áÄŸ ¯$¾²là ‰¯Ì6¼øúÉŒÃëˆGfÞ@üÁÐðÖáZ*ð¦áCÃÛ…Ïì5á…Âgf^"|dhxoðåÞ|#¶¨ïÛo Âofjüv`bi Ê¿ªü‹åª|`h|ë6¾þºl È/ßûZi‘³ ØÏä¢ì²j_%BhPõg¼û½l êŸ‰V?¹}»l üW‰ôƒÜf^6ÐR-t„•j a åÓB?Ø‹¶Ð 2UÝB7XJóŠ9м¸®l¡K,x´¦lƒŽ¯ó)[è ÞÉV¶aßÀè OÌ´A÷À7:•-ô)nª#B® -[|ͼ rðwÌ¥ò·“¾$t —Õ-ô•‰:ˆ^_ÐÜ^°,$vœéF{團ÝG¿ÞÄ;ÏБV<2Í)¡Gé/!`8t)öM€RBo¹yèIú$,yk܇Ù4³„4i~ ÷èÏü‘ü„>æz£©@ßy°XZÐyf%¿&ôþ‰G62ø5¡VžåÛ;ikdð‹Blý  ~Q設Ã}°å›ÂøÝºà…¾³¤ ÛÔRü\ ^_YvÐÖjZÅ9° yVqòÊÞ«9`ØEv·{ýýÒŸåúö+˜Á!ÔŒð‰ É"©_ÿlÁ 8B`Ý @tŒÐË¢3)¢$A¤‘¤Âüp†ÀWÎøDÀ“JJ>ðC0Óiãëa˜O·ÆÊùüÒkü‡<­ðàtd•ÔküM|ë'ÓšîÖP=¬2_øsÎéTéR%òWs§é¼Êô)_*åÇ] ½6°Klžf©Ò‚ò“,UZZH~Š¥J+8ÁR¥ÂÂN¯TimCùÉ•*m,(?µR¥­ œX©RiaC§Uª´³°“*U¦o 땾7zÅYäà~\ìàX?6K ÙUe©d¸ÌÁ‘žL–» \áâH? + éôd•ƒ#ýÅL¸8–píI/kÞòTe­ƒûIpÒÁ±üuï–®rOƒÄ`îŠpd=ÂÜ“!Á¹*$0Wƒp’¸Ê] âÙƒ*w%ˆ/U¯rW‚p¬_å®ñ,I•»$0Wx?m•»ò#0W}‚Ùså‡/ ª W.£j8¾Åë)FcŒu5c°)ÆzÑKc3ŒuÅc°9Ä–ªu”Ÿoú— öÌyÊ1Ž—OJˆi$ö— eV L)ƒµeÆÞƒå*g–©‚hžJú¬µ*+Ja A¤+kö"4W c0BË,O’atœA¢zŽƒÄ÷ŠzÉU½ÃX¦ wYwÒ#¨ oL –+è†Bz u–+è†À2C3Xž¸o>L}Ã0Ho¦‚¾a¤#WQç`™‚Ρ ,OÐ74dIpÏ u! g™=¼á S•‚ºËt M`y¢­Ë÷‹R:ÆÔü1 u šu š÷ÛPhÃÁµ­«ÕäÙü¯ú#VòLV\ꈱñYUÇŒ€·eTu¸«\§O#àNlÓW&„‚pï¼.)ž”iE_™äHÐW€{§ªºæÕL Í!´ô­ Aòb"ŒŽ—f4Ô9ð‰Åª1wÚuï­s'ÞÚQ50èÎÌ€QwbÀí7UÃîÄ€ƒªÆÝ‰?GX50ìN ø5˪±]C³Ì<å·Ã+ÇCÉÖ®ííÙÍ6„Àg|`¦³M>4ßÙ¦€šõl3DÌ}¶9 f@ÛáCó m ÁÙжŒÐœhk@}ûäºömØ•gÇ›iö]…|8ûÞvü£¥sÛÞõy&Æ;7íé;åÞ>.’Á;öÌ%—íÜ®WË Ú¹WO_‚;7êékæBð܇ÛzÛp6^¹”÷®eãå…ÍiÅ5„®=ôæ«7>eãÍ[Ÿ±ñâ06Þ»Ù W¼{ÿäxåw÷êISNÃ¥!hà ܃‘7p4rަ¾À)Ì8ƒygPGààÌÜ€3ˆpqN`>ÀÌCìô§¯ÞUvÛX¸»ÈCâÙN±‹=$™»@YR‹'”Ä.óx/v¹‡Ä3HbWøH–|éAñ$¡ØUÏOˆð Š k‰÷ ‰]ãAñ.@±k=$Þà'vÒOOõŠ] $‘¯Sb5òuJ^?òuŠgÅDäËO¦ˆÈ)ž‘/Rô5Šg½D´Ò¨» íQ w¶+DD$À}]" ·k‰¨†`Aöa‰h¥³«8ŧ@W”‹h%2ynß.4ìÓ"žÖMW}{EKÄ“Šc‚ÇKM"N<<_ÉqŠÑÌx†á,ï¹ga=.ðkçŽKg9©`Æ™uÑÄ-ãÛfYiüB!)n=è HÃK\"ƒ «G"î<iJ_âú ¹éÄù Hë““÷L|}‡îD‚άcSã@àéë›t0"mÒuH|e‡VçDâk;°¨%,n–_Û|mJ$¾¼Kx"ñNz^‰¯l¾~,RÀi#}exâ[¤ j£@Į̈/f¼Û]¤¾Ž§ÕR)‰Öd÷»H‰¦œhšå„kVz¾œ +™åÀW2\4©¯a¼¼$R_Ãp™Hd¾|ñ‚’È|åâ]b"ó•‹7v‰ —õ•û>H12d+ù6—óírçqÞç,ÛÞ…Ã,ß"Éær‘”zªÑ8¿«ƒ"[i|JKè+³N®¢É- -4§‚çt ЄWSÞ³¿ðv6¬4¼ˆ)§¥œšr$åÜ'ß9q—ïIä+Ÿ°Ï¾€*ÎcÖM?%ò§@’H!zÔ'%ƒ¦¹<ÇpŠ/ þΆYy‰ñœPaƒ bŸákˆ''pDÞ`¸x«¥r Æj1ë ט„h<&Î;¬Œ.v8#x]õãW`ù›ÿf,~Uš¢¾üdŠ(RJ>sðf›kD'1ŠácŽ/üÇá.ψ^Êr„+嬊³2ÎkúfØ'Ô ˆo!BƒòõM/"~ˆ_MÝ:„ŸêþÜ«6±¾®ãå}§Sߘ ØR¹Rôá¢Þksù[”¤ðpQÆÁ—ÀE™`F`\”)ä–ÁE™a _e)|)\”fÃEYBNh9\”äÄEµªýÕjx¨ö«Rµ_Ũý*ÁŒPíW)ä„j¿Ê0%PûU)Ú¯ ÌÕ~UBN°ö« rBµ/Ü®Üg¯[4 +"ýâÃc~Ÿøã–B$n䓪‘n»¥ï6ƒ@·Áj/*c¬ÛX ªb}MÎp…¾°ØL­AªÛné ÿ%N—ô]!¼K°"ñ)…ü¸ß1Øm›T_™[vÛ¥L»ÍÒ ¤u`P}㣥j/÷ú¨J¹é‡æ~êŽò×›hyi‹§ïf|Ò{!yëoßÌH”¯8ýYþúñ‹£+ƒŸçO1´·71 S“ÒiúëQ>^ˆÏVø_ß~=;À°Ö—5>àŸýûûñëí¨|{‹V¬h—«œÎ÷n‘J¯‚^çV+îQ¬7]›ƒ8ö¿ççÃåc3ßbeF3t§æï±S¯ì\…þ6ûAÞäíÙAÆ•Óø%ðì–$º‘WIh*­A_)yúgÔ=××D>K\•ÍÙ>Úþ¹‘l³ óÇû ¯1Ø4³vË£ìÆç+ôs™¿¦¥Ö¬}t0Êñ-˜¿ç&’PLþŸy€/‘ó0YxæšXûõíÇ]ÑßêA4rÜÒM³öñóýTËå+ËaZa·ùžýYµbh[üµ»_÷ÛK‰VÀC^åŠwCfµfEsåV³Ñ4a™÷çÛý(†7Þˆ4íknA¾f¾E­·‰ã´z>MÌïJ$ßf¯õ.!ЈsËn©õn!‹ÑÈF~0pâ€o÷Î$ÔzÇ…®û›8 ©ZoZ ËR‚ £¹ìZïBà7å÷çnzmõ-ª“Ì&¹ç)•ì§T€”*|ç) öSª@JµGVÌAâ…ÅZï;Âp?µ¤Özô£PÿFv#ÔzKÁûéµ ½ÎãKZŽÑÎׯß(òÐŽ1Ø{‰(ò_"J<2ÞERG)@ª¾ØA\Ù²ùîC*#ò}GUÃû…½³ï-¬š#ßWðŽ:ò£Q‚ î»ÞüVG¾|oß%{9ßÈæ‘:ò5? Óá1™:ò5¯ð§ûÐnV¥¯övaŠã5ÀŒ}é·¯¥ûnpVAœjcßð:öu?êµ?¼v^Ǿøñ6š:ö%oÞ³…˵uì랆/yGc_ñ*„~ˆ«€·kÖ±¯{¼m¥Ž}É×B_0U“ÖÕ±/}¼Ÿ£Ž}ÕÑǾè‰'Å(Äc¤/o"…Ä—óM¨ÿ‘ð“ø6pRw‰¯`¼r^'¾‚ñÆ…:qû;ƒTKefó ¿{”¬¼^šZÔKJrÈP}<ÒK FPo;EÊ:)!ëvÿ éT”ñÖïd5·N¤-}BªC$§øt~cœ4ÐÄ£Cnƒ,?å¤,që¿#uÞs9Zº Ѽ¬J?«i´•°o¦fbhæ*¯’É"M8ÅK3Aš+G­|7M©¼bò[‘Ñ)ç¸ Ü°§~;òq¸Œ!†ßžŒ¿û!ÄðÛ̓߮ü”!¼ßºüÖ÷3s‚߸ˆÛ—ú…8~3£''Dß¼}g½¬tå™Fª¥€8£_§å蹜A©ñ:[ùÇæ*XE.š/€ÕYì‚ùÚW%8°ìUg© ¬xÕYæ¡ùbWå.š¯sÕYáK\uVºðÐêVU.<°°Ug+=_ÅyÄBÉê5Juá2O­tûÙŸ[¸RRg«¶`Ûé®ÏN0^ºx*è¬óMsç;ë­äYâe˜:_Iøt¿õöøù˜ÚEqnˆsŽdœ„srŽ`œ,ÈYf¦ 5çÔžqŠ@r´,Ê@ùѨ)Ñì‰pi¼ËVbbM‰«‰Wù.t’2o^0!Ï­¼²iÞ:o_0¡ï×½y6ä‹6Žô@Vw/Øø.ß/ï|N]ì^~™é“›¹ëºoö¢Aî×Oƒµ®2n‚»ùÓÄû…/ÒÖwz³äòí ôy1½ÙÞ±ê <‚˜à±`e¢9^ôñþðàŒb„ ½ˆµz—+ l® } Hž&æ7¹Ù«ð Œ°BåaÅ}‹vÝ8ªŽ¬G²Q¡.¤Õ”ªBÞ¹Ækñ‰7ÈÔån»ŸU$~L (ÆW`¡¥Œáý(¾ÄÀ1b|ö7ÑÂb™¬ð¡Óu™úHxÌ¢.3‰§ãʤO:ÔeáCáñ‰º,}$±Y$É©ð¡d澬}(¾¼µ.J&¶ÊÖ‡²9øRúX2«^v>”L«W;Š?N[WÈ,íU±%³È+™®€ZÉLoäJ¦ + W|¯®€^ñiõº‚%3ÂP,™à­€bYÅ’)Þ (–ÌñV@±d’·‚%ó°,>Y] X2g+Ö‚uŨF ×Cº#  "1•è?èš»HÂÔžN´Šµº×sc*Öø<°È(í‹Ïꊜ²„<šQ,˜‚Ò.Ç #•Œt ÌŠŠ&%ïG3Ä"ĵ, !p–PÔ.úg?ˆél– ªM¨zoªª?ÙU‹öö'e‡"7 ÔxÔDŠzíRÛfuäÁ3fuì¡Sfuâ£CsfuêáC“fuæÃ³fuîÁÓfuá£CófuéáƒguåáC3gõÚ ÄOñ>¢•µ¤ËT£¦‚aA[A¾„V×@Û»*ëè;pfÝ軞…»ÃMd£nýIU¤¹Ÿ!¶ äíš„ÚeŒÔfœÔˆHôfy†12›A:MnÃ>Äp¡ØÂÆ’TSÒ·cŒÊfN\#h!0Fm3HפihŽ£u‹âCý¢¥&]ú¦£Ù ŒÖ‘1éÕ·ŽŽIºuÔKº‡-W/cxêŰŒf G½·Ë}<è¯/“ÁEë(ø|ÂxWÊVÑŒ3—2c8R&w˥̎”Ù€³uDLF-1aHGÄl)“Ñ®tT|&j—ŽŒO$êIG¼x>D:ÚÅM \ô:Ÿž=]{²cD.JÝ:ç\ËÒGÎሜ®eŒS°ðÁðÐr-kiÚo|8ÿݤ± å“ßMš8ÐÀÌw“¦680íݤ™ƒåsÞMšÛX>áݤ… Ìv7iiƒCSÝMZÙàÀÎ~ièÕ6ý'_¾ØæÅ ñê«z›Âé׆ßlóUàDüÆðÛm>_kèr›~ÅÉKÃï^PÏè´ñ‚óD4Þ/^ðþ,i¼_¼àý#Ì¿4Þ/^ðþ;LÞ8¿xÁù¯¸ü¤qñ‚ûÆÿÅ þÿ~À%h€x!üÀ0@¼n¤ â…Ð&ˆb@ƒKÀÄñB øÞßÄñB h0ßÄñB hˆL/D_¸L/DïDC& Ô/DŒ‰õ Qàé&Ô/Cù&Ô/OH7A ~!àêëL ¨_ˆ‡ Lß„€ú…Ðõˆn@ýBøBußÿ¯_ðyìqL¨_óõ¤¸#×™0P¿ # õ n(`Oª3^X¿à…«„oÅøbý‚/E­?ÀÃì—lÖ÷×£Ði?Íí>|áÅ‘& ÍyÄ >Ù4q˜«*QŸ€Ô$Hm̱HLƒÄ£ÔwéÓœ„žé"Ì΃ìvƒ]Ùu˜­†O?e«Fkú³z Üí /z#ç®5ZZÁv`ã5ö:ȳÞEÑÉŒžÖûÃíðSÜH¦Ó5öK|¿ÓŸúVª}»ýC?-HF ©l±]¼¿⧹ɽ×W葲^2}ZC4j „íý‘‘‚ùПR ú#cåÚØt…kø²ÜF„þ8ý·[s.²•7+ÖfçÉ«uö¡ê5i¾¹w“ÔØJžr-Î÷VŒ¡¢jí Ž[å$­¼}^4gãºîF sÖ$=—ô MZÎ9ôïKܧ~è©$PñHËsué ?E@¦`s€Œ×n÷³¿‰á]løšLçY'ˆby÷ã ¯q3”ÜZˆ”Übü §5Fѹ åw›^­éЦ+CóÕhõýrº³§R@^-}˜WCÞOÕiÍmõ¦Ð@»60öªÛñÁ½F®Áù«ï.ÃÉÌ^?ÒÆ©tkâ6¾ÛYºæƒÛ´–ƽ>ˆ/1^Þx9v–ª^àAÌ’ÁpË÷–o”lÓRÐxoio:Ëí¾÷ªé>©.'Ù!ÙYþv¿ŠöpgжüK_š;žª+íx©k"œï ´N¯ð,ÿY®ÏÕýZ½ÕÜÜè¾Ìl˜™ò¥.܉ò‰9ÞìúDŠ÷ü+ Œ“„ªÅ0(n©iˆÚ`Nâ´˜“‡8r<`VdaN(@s áU^)"”½ï˜S‡8Þ ÏÄiBœùV©éƒ)˜ß†ø'Ì‘!ΣÅõ–Ä&r"{+‰†=ÌT!F¨ân}+?Åב ›=Iä’0s³6¢4$P ºÜåŽI9Lèr};ˆcÇ^¯@¤ú2Ž—SW†rxÅœê% ˜t¾¹8 5èƒÞ:íÄ ú ©€6(B’AÒòI¬ßzAè‚æ’Á^ð'曹ỎCœß˜låäoÜ„ÄN÷óÒ7ú ¾ÎïRϦ]ûA5ÿ˜ì¸™FD¸|ÿ®ˆ8kïâtÂ=„¸ñŽâÔ^â]qkW!ÒpÀ~‹`R7’VýÜT€«ëˆyÍþtiû®7;ÃæœGkÚ¦óÿý?ÿùÏÿõ¿Þv»4²É-'KŸÝä6[Rv ’ŽmrÇÉ˨U=UÆkA¢©MŽ(¼nšÙ䘒×·•Ò¶’P+ï …MN)ùÈ¥MÎ(¹äÊ&ç”ü…M.(ùk›\Rò›\Qò [›,(ù ÈN=×Ûj9c…s¾€d;›Ì=Z÷yvÛN™p¾úIg;›Ì=zd;å”»õȶ[§Ü­ýwÞe¶[§Ü­?ÙvÈÔ÷æ)jƒØ›Û±7õ}y¢.#W¿¶œO}‡ž?šã´ÝÉ€ïÒv¼`fÆÚ– ß±' þçÕwë‰ ¢xîT·ïÔÄðÜ©lߥ'ê­9|¢"³£`ê;õD_FÉߎe©ïÚV‘S3vTK}'ŸÌ€$wë{¸•ƒ†¤Ôwí‰Âwn¿ræ;öDñ7·ãoæ»õ\ÏgÿE#§ÙÈ|·ž« ¤kÇÐŒ9õ2ÆõªÇÖgF={5t=+²ûVómg\é™±«;c>ÂyaG—Œù6ˆÇ…SÌ·A4.l͘o¯Ç€ÞK;ºaNþȹ5è*€ùùOðNÅ17#!7ç±óö̱k9úÑ)©íš1ßž†#ó Ê3’ØF˜«·òó`W}ÎÜ}ÊÃõàw5gX‘3·o Ù|þ˜¥º×·f诣óEÑ•…¿ß·#|ž„ùƒË/ì:ÈÓ0ÿîñmäY˜ÿÓã;…·Œ« ßÒ߀Œò"lÂÕÑ߀Šò2lÃŒm Ý;É«°[IC:a °àˆ©FóBw<á˜7ppšÜ<õm{”ocôÏ”Ll8ñվʆ3`Ý«l8ýuz‘]ìûü*NE__eÃ9éáU6œ—žÙ];˜ÓñúýmSp†úöjF28íü*NZÿ~• g¯—M„˜FäËÔ•ôGÆib7Ï\6z~nÚ=±SíôÔ\s{x,!ôr< —û;žÛ,lvO_l®DÐÉû˲!D…~ ñb}ž×<5_†²~ßNzùýzë—ó&»„^>G·«P¿é9(}+dC/o_eC/ï^eC/• ûãU6tìã«lèØ§WÙбϯ²ášðõU6tñáU6tòÛ«lØhËÛáU>tñŸ¯²¡—ÿz• ÛñßÛlQèÎ~j+ÐÓç5HåäÝQþ⹨ ¯›I¥×m„<þÑ®N{¡º¼|=yèôÓôÊëF ï?foÿÔŒfÞéu0"ô¯óaL˜¦5^7CÃÃÁ^±ÃÃýu> ò÷ä€ ð—¹O2ƒj”*6ÖoÀ“=@ªØH¿™Þ¡¹þêFìL]WlÀov¹9èìùŠ ôoÎF 6äï@)ØC4Á†úíe<ÊÛíí»Ý1ñrbOÛ6ç7ÿüYÃØ™”lêoÖ…_¬±3Ã,Øä_~•Ü^¬lþO÷5ÛžÅlÚ/øÅ¹½f'ØôßÃDè}LOÛ2Ǧçn†ËMiîÛÔ"¸y«ì„`“„G¼Wu̱ùBØQs_´têŸE¾hWŽŒYX9=›OßHá(™˜et²evò%ð g:X°X3÷(õçXÎì¨)Xà9¿V{…Ik~øZmìÌW×, Í;À”¿3mW³Èƒ&<ãÂöõš[¨¾K»TkwTà ÈN²h3n{À.¶«×,øèsZþJp\Ú±«fgªväªY¨¡kÂf¯še‚˜ŸÁqÊacÂ_KˆK',–üËN!°òû5'«lï¯Y4ùê®TvHªiwå7håè›Eñ€×FlkvûçWWUïBÐçàä›hyÙ.ø¶‰|¢hîã61^ogñ!áÚ&Yî7Õûº™û“ÄðÁSIW¤“PÍèù›Égd+†)‚o3r? CäŒbÅ0ÙÙL£ôr5ñ6ª¼„VdN+œ©Ø¨ªzůu‡yóý¿ ‘3ZKxæôEÓÍýdÜvuv#d¹"_Þ/gù±bDˆÑ­¿û÷ßâ}£ÚµKõëc~» ×~tÂgOÚví<÷Û: Wg§þn” }Ú6 ›j¶A½pj¾AýÉ©E˜Ú¼5²íGzp²m˰…ev¾åª°=$¥Ü w¤ŸÈnÛÚcÂ&?`¡ §ÍCoÛ†™ôCìm+_ËuÀB÷š…µ wáÜóP&£×ÒXˆ_³0p ¯ïõ…܆“ß8sÃÇÍ*@ßðóßœ¹áæÓ¤eo¸xÍ™®möPò†oOï(Û÷o;²sæ†_Ïcûå¦Éõ2)5¹áðóêQߦü¦û†ƒ8ö¿§{*æijÚö gú‘À—¥Ün#Üÿþêü a™þäL?8 uŒåTw´n#F\^6´*î/ZGŽûõmÍÇF_¤[G‹ñóëcî½è›óèt·º‚ñôDÍÔ§+m$ô=¯pÖáÁ\^ÚŸÊA”ê¡oß·Æ=pÒ4ðgšJsZ©*bs¤Ô5V2ÆíWU]ñU>“X»¿8ž.·ñMþ¸ëê—­W´Ü[Ï”™bR´[õ¿voSåkê¹Uoòy^ýU0òq&Û½¬iž0Ãca¾,IŸRƒéÕ6Ee$2¦à0ô¯³¡Ü6d2cžÚXŒóU/Azâ*[±²¶+ÖÙJL¶àŸoç‘+ÛŽÉŠyj[éf®ÜÂÒÖâd«Ìä ®ýùv¬\=혬˜§¶•se®BÙJ¢u¶ “-|rÕ7dåëiÈdÆ<µ±çkYКF F³Óàü‘½¦Ðu`e¯2ك˄ÜÞ’KiÛ3Y3OmSà\¶\i©§´Úäî3ðí<Ê.u•&¦§¶ÕlæÊ­ÒÔSZkrÚGˆ”–ºJk¦§¶%ƒ¹‚JK=¥u&[pK0dåËRšœžÊXD¢Xk)Ã-«u F&„ác𮻤Võí¦§¶Dâ×bë9m«±]gÍ„1|džš³óØ®òOOm’D³yÃ4'eÜišr[òE&DîÖy4A-‚Ašû×Å\b™33Om’Ä6ߨBæ<®u™‡ÏæSsvWê‹òé©M’8'7ë:óêÚ„¹†9jîQ×™[×åôÔ&I”›šaÌ^bU³‰sÞO,Y9KÖ5,¦§¶F"ô£ú4=ºäOu=uäëü™ˆ‡¯ àöþu±WYöLÖÌSÛ$‘¯ã­Dî¶‘ |øjßΣìr§•ˆäôT¶b÷Þ×r^eÉ4ƒé*K± {1 {Ž‘G~l#&æ© ‘¨wà¥Tº¥›pÃpçÛyäªtJ)ާ§¶EâÜ·¥¥Û–Æ&ÀÅ0Àùv¬\­ÛÒ8žÚ‰l‹µÇØÑ)«r+ÒbÒ|;vY•«\åÓSÛ"±ìÀZÒÒmIcÂbÂ\+v9­k¯œžÚ‰\³­õ8ÍÉ•\çÊD®F.dÉΙ\åLLOmD®>S+7¦Æ&fÅ0f!KœUNL›é©­‘hÕ;š€}ïÎm8c·b·B½ïÎi;c9=•Õ„D°y?µ“·´vó–˜–ÀfÛx”[íä&ÙMOm‡Ä¯)j7R$&~%0~ùv¬\­#EOOm‹Ä¯@¯»v{݉ ` `À•¯u¯;I§§6F"Ø‘—Vã•–‰` Œ`¾G®·´òé©m‘æZ›ŽñX-¤¶à¶‰ g gA“ÿº˜tÛˤœžÚ,‰mÇ@Í6^͚ЖÀÐ YehÕ¬˜žÚ‰lÇÍmãöhÞÞ¨9»žW=Ú¤™žÚ$‰q'9Z/r˜¨–„Nº¹‘£u#‡œžÊNJâØ‰÷|Z·ç“šX–ÂXæÛ±sµj;ÓÝôÔ¶H<;qm]MM=µ-óž+oí'3!/ :D¹r×~²rzj[$â ´}ȼµŸÌ„º †:ߎ•«uû‰é©m‘çZƒ½ÝL¸½Ý̺ º É¥·›ÕNo7k¦§6K¢ÝÀÛ²Ì[§ÊLË`†¬2\·e™œžÊXNbÛë-qõ–› –ãkt¹ÞGoùnzj[$šÝ¸ÞWo¹ c9¾m—ë-qô–ÇÓSÛ"ñë¶Š=ó*´[jÑ$7«ÔL4Ëñ9È€Å%ÒNj[—_:=µUÛf»X¢7ÈiîE¹ÜD¹F¹Å%§f­ÛÊi>=µUïܹÕãåÖD¿F¿-«‹'çž6Ëé©-“X8rñÖLs ñ…*¾‡6Ý5Ó\LOm‹Ä‘{Œ·fš›ˆï^ñíX¹²<¦™žÚ‰zc êyk¦¹‰zøZ`ÈÊ×:êårz*c‰zãV>óV( üðÅ-Ôœ]v«|±›žÚ$‰îþ*/‹f%lݰ&âû]˜µGmk&[æ©-’xxÌgÞºZaâ ¾ôY²r¶ž.Òé©­‘øw߬_oU²0Áß CÍÙ¥·®ß|zj“$òYï :ìÓ ÆÚA ñðE2ÌÚ#6WN¹(§§¶H"ÝÝøC´(î­0A¯À·H…L>òZ;c´BLOm–Ä¿Ÿ«÷_U³™ê\ǾÂÄ>|+mãQ·¶ “óÔvHÜûÉ£qîFã„=|OoÇÊÕ:rz*[%‰zŸ“5{ðºË wðZšP‡o¯±mÚáDÀZNOe¶!v{ ƒ ƒ ƒA“v^W±°ÙMOm–ÄBlö2„+ÆÆÄÄm»v®WÚlâé©m‡hmô2„+ÕÆ„Æ&tLk£—!å6éôÔfÃGµ¶{uéö2$›Ð‘­í^F]9½Œ&ŸžÚ4‰”} &Už L¨lð%ö˜T¹õ^NOmŒÄÊžGðÊà • •¾+WëÞˆé©m…7Ô¡\u^®L´lB[éP®:7WÍôԶ›è`v^š8Ù„öÎÁ:ìÜ:”ÓSkIt¼¼ÉÛÔä­‰ŽmhÛ\8’w©ÉÛÝôÔfÃ[ç‘|Êë:’·&0¶¡ísáHÞ¥N$oãé©Í’˜ˆ £êŸ2¼®þÖÆÆm»v®WjhÓé©m“舭;‘|ÊðÚZ[|{÷+‘¼KHÞæÓS›%Q‘¼iÜHÞšÙ¹iv‰äMëDò¶œžÚ4‰˜çàÖOáí°lMØlaØ$Æ–ÑÃÔ'_{˜˜žÚ`8v>L:ƒÅ)–o™Ú†¨kÌÎßÚ«šé© nEÑÙ$*N™´üÉ„Ó6NE;§kO’ÓSY•á¸ú°ë §L®}Hšˆ*CÕ5fçoå=r7=µÁp,}˜ô›Ë)Vs)M$•¡HŠ Zù\·›2žžÚhxë ZÒñF‰ÒÄMÚ¸‚–tÜQ¢L§§¶Þ¶‚Ây楉Ž2´aÅïÂ%Ê|zjcá­*4¾x§)¥‰„2´S…Å—ÚÝÊ-Ëé© †7ªÐøÒ¹ñEšø'C[TX|©wN|‘bzjƒ$þ¹&a|ñºkÒA ƒ`È¢ÓuM7ÓS[%‘ÐµëÆ—Î‹/&Jü•¥p|©wn|‘ÓSìHüsM¢øâuÇ;;­|®=¹ÛMOm”ÄÁ/¼Õ¦r…Ø™Ð×ÁÐgÛ°×Wúëâé©íh÷Å£7¢êL´ë`´óíX¹²Ê(žÚ‰v_hç?;í:í€!»´V>ÐåÓS#Ñî o%«\éw&Èu¡…cw+Yå(¾+§§¶CbÛtGã·Oy¼ÞŽGo]T1M0ë`0óØö ©IÖ<µ½,?QL ê` rÉ^úÍôÔ›UŽ—Ë%nPÚž21½”åôü+ê”;ÍßÌ´f¨ŸŸ~Òwð÷zLjÝ㈞õØ™«¶:}ÕV§š®°­VÜzáÚJW¶ªé©můäËÄ­ŸbxZÕodG‰Î\»Õék·:%Àr­F®Õzzj«éËy½üò³­Œ6ÓSÍ^Ϊc4r¶ÓSÍ_ÎéUýíz9Ésïd8W¶åôÔ¶‹—3ŒmG®ínzþeD6Ùv×f<Î1+©lš¼ïÿ2Û²4«Ô¶”®-EÆ’x-Ok5ýÏò®¥Ój½ÿeDõRî M·…í̉ZS¯çs’’Íhm25&Û?Ȧc²òLfƤüƒ\Zú±2›Æk˹±ÜýAf±åʳ¬›ä.‚±S®?°éFÏ̉žæ ¯N_áÕE0zZÖÜø™9ñ3ª¦§¶ã§Ÿ7ë"7‚šë¼:}WÁêçÚuchTOOmÆP’_;àEn5÷zuú^¯.‚Q”d×1ëÆÑ¨ž™jƒšBuÿˆ#™‘"‘"‘PÍÛ¶Ö1É\p¨+êÅ|¡yQ)2Q)"Q)\ë«^\27êZú“¼Úa$ò"Sd"SD"S°ÆíœZFMlбŸ¤‡T8>n.»êôeW]Œ}|$ý£Âñ︚žÚöïq«w»¾m.¼êô…W]Œ}{ÜêÅ®_ÇõôÔ6±_ûù´/v}ÚÜ~ÕéÛ¯ºû´ŸMǤëÏq;=µIØ/¹„=—Øí™ °:}VÃ^È,¶ìö‰ânzþed…¥>’QáÆŸØÄŸ˜ÅŸ‘ô‡ 7ö˜[µ^ÈŠ±wbwbw¨"½˜c®Ô*z5vhˆ½x›x³xÃÔhçÐ28ÅÒÚÒ¢•Q«¯›^PLzA[J´òkÛ5} ÆÆç÷ÑÝàX9ÁÑÜ–ÕéÛ²ºǧ)7:VNtLªé©MÁèèä …²Ä æÖ¬NßšÕ%0<:ùƒFÝø˜ÔÓS…ñåÔŽf‰ ÍÕY¾:«K`€Dulº2i§§¶ #$Ê' d‰"ÍÝZ¾[«K`ˆDÙŦÝ™tÓó/£.¨zOŸàV¹A21A2!AÒS§mh%ÍU†ZO¯äµÄ “‰ “ “e>LzqÒ\o¨Åôr.í¸–x212!’«ÒΣeÑDÊ„DÊMMZYµBZbBeBBå¦"­Û†M¬La¬¼œzs"†ËÎ —抮N_ÑÕ¥0\ZÖ܈Ù93­¦§¶#¦Ÿ7ßR7hšKº:}IW— éçÚuãfZOOmÆM’_;Ì¥nè47vuúÆ®.…¡“d×1ëFÏ´ž™jƒ’Buÿˆ ŠRŠRŠPÍÛ¶ÖÑÈ\F¨+êÅ|¡è‘z)5)%)\ë«^L2WêZú“¼ÚA$õÂRjÂRJÂR°ÆíœZFMdÊ ŸßóB37`¬@ÿ¾ƒYÛÊÊ¿³jzjkпý¤ ò•mÈn™AÌå~z—Ì 9³ƒˆð;0ÂØzeO³GäÚJm¬nƒ«ŽGn¼ÛEÌ{|Ä#à-N‡Ûu ©V\Ry·»‚r In ¹m¼ÛšNÞîσ1v·5yLºÝ=§ 5ÓSÛÜš(ÞêÓ7 OßmÎ×B§í|·5ûb¿¾ýúî•ãFnÛêÞ¨÷Öýe¶µmÛrÜ¢Y[©Œ•íU×Mý¶¾1–¶'MÜtk­±ñÂŒ(éÝ oÊØÜc×u‹¿Ún¶«S»f¬þ¿¯YñNƒ<¿ý¸‹vÿû¿ãó¶WÛ˜h/O&±1±¶s» 5¨X@VÒ6:Ñ_F§ûñ ^í›Òí·?áeûîrþ˜–ïoý¯?fû®¿ÒeüûÔÿõÏÿø¥Ü_ïçf¼‹±¿üAáUª8ú?À‹ýAôÃëøzÿ[ºMi•Z'Vó/ŠUO'°YÏ—ó·ï—þ,‚n×è R—oÓçÝNbø˜ GÙí BC5e…ld´Û¾®yÞ_ÿ÷äöÏÑ^翤øÐŸ¥s°ÏJ4–,f¼Ô»ò»±žhçüžjwüží—¡ÿ}9ëˆR‹Áý¸«ÑˆÑ±1“ò}{¹×GùöScßèX¤Ê|ý5Õ…hã3¿X~ÔŸz·¨nLIæX µ¢KoæÝÏ­nÍe‹ÉÒTìÛMÔïÏl›j»þ¿ëŒÍ˜ñ>œeûÖ\N'áf£Õ¤fõ_€Õ9±€Ôk«hvƼP°í\°Äê¿«!sr¥§W ö“Ýbò væ¼R°*4¶âý]E*Ûm–Ÿ£ÅXïëûQuÈÏÉ~Tý“óûý(†· 2U%ÍM±G)ÚUzk”6'ÛŸ—M æë #Çþª?ÊÙÀD1Ý©\¯*æ³7S‘AÜô&¯bãeØÿþש²aÕ^ÿ®úN×ÃûŸºq ÂiDä©–m«¿:µ$STZj§-qÃÑ%4ûë媆Bƒlôû©Rê.ÃIŒãƒsm;‡Ó:¹º( }+—L]¼t2e㇣‹ïög1 Ê{Η©5[7ûM°;’¨üJ}·¬ Šjï穪”mXd`£jÑÆÃå~Óˆ:Þ_‡þ$ɯÉâ?6è!.mÀ#ö.­ q½U¦˜08ÖÂëo½¤©ú¾\²Â=»Â›®°×ã™ÌÎi»Åøè›ö¼pú¦\5¤\©°n£ù|½ò= ÝÝ\tåu®-µu B½ã¡¯{•À—ŠZ o·OUÞÞ¸÷¾õ^·w?•Ñ×9Í#UâµÂë>ÿÛí œö™Îë$¹Ÿ†MêÍÛþ]¿–‚S5¨~ÿE…½—ÀÅn»_uÏEuLÇ7=+·?›.´ *ÿý?ÿùÏÿešB%ôús¶À“uC™EÖïè‹‘ûã¿™©»§í¼²3”Z6´Ç¢ ¥û}ªþ  Êl,³©`†Œ©ž\¦þ@cš2Ë­ßoý/d+ßïsõÙÒŒÙTa›Rmæ+öûBýÆ g6WZ©=™+÷ûRýAæ&Îl®²gÝ ÖT½Uê²f(³1aý®#Ϊ5V²|ZŒk[ µÅ4 ¹ÇŠãhnàÖØ©‹ûm¢ÌÖ»ŒTKztú«wk휴¶®ÍˆIõ\Ϫ‘0ó ÿíˆÍž³/‹v¹Ê³(¬™³}içÓ:ö¨ütŠ$Ðm9æ8¦=SêHQ“8ñ77JÔ,F”Ñê׋­¬ÉŠêqGêoåòU¯~T½߈E¬þøF4z6’¬èn˜o&Ùïõ˜1øÙPºúÙ XsÃUÍ‚U™­Í8¡êon ªY˜*óÕ¯Nú›¢j ÊbmÄ OsƒSMCSY®~öÓßܰTÓ TV«ŸÝô77 Õ,•bõ+ F¡¨¬W,/ýÍC5Be³. ‚þPÙ®x¡ðó7;øÔ›¡§”+X0ðüÍ;õfЩvË£žJ²N$¬BŽ1žÛcí* ó¥Ç·g̪8Ì¿x|{œ^%aþ/—_”6? óoÍáÓ-ƒ8³{CU¶qðÞÁÉCæx|[øUæ=~cóË0ÿäñmáWU˜öøv£U‰0ÿêÕ¡=¤«ê:ôøöVˆª óGooÉ*ÆÜ‡Ë·æ>è™Ñ¯9Zü˜?ÑÞŒ‚Cxß ÷ß².!T²ïtb‡·nç&„T ïBd{½†B¨†Hl)öjü¢wÄ0å~P=iCVcõ,ökGTjÀ,0±?ËO5€’?dð%ê}{1sÛÑ˜Š !ÚýG ä~¼¿ýGÓí[½Cò*+}P'q~SÍÂ9¤©Z¯ïÜB¹Ö§öîj {îC d/îj¨/BeX§ûÃðõóܳžíÙÓR¯ÿ9È·Qõ¬Î—þª^Žz?¥Ðà+–ûQžßeRíûs«'tm¤P•8|ôúc‘aÕ×µÆmߘ²°Ù«ºcÒ*ï¨ÁŒéoCÁ’íöu?6—>ä1%\N@»Ó³³uoú#¦+sÃõ¢§Ã̇EOÿ¾Õ@â|;Í<½gYcøÙj´²:ucþÀ,"Ìvãunµ‹[hÌ¢ÏQ|ió˳ŪÅð ÍI$«$n‡Ë0þy $’®g;^šÏþ¦g¡ôºÂ ¥ÄisÙ*¿Ã~Ðvîªæe³z¶XxŠyÙ¤Ÿm––ÍyQp£î,Ül§‚%ùªE˜m ª„WíXsõ*ÇÇí•¢õгÅfeñ1‹ÿŠA<ÛkWöT_gÄ4ýЕA=êyšó~ŸmHhcZÔä6æßg´¡š’ÓåÜr# `²"w·QÑ ù˜q7Þk^êmF®Çý¡“Îl=ÆeרÚ?»ù\8 ä|ȯF\'…œûU/x>÷$L{®üš_¬¬#Û¼Àùv»ûö~c³P×ËÝ`©W?>h€_,–Þïýø¥—(êËѯ€…³Dó–³r©ÁbDZGÏ¾Õ ó}«ú=¤²šp„2­%Ou¾ñjµÛºÎ%ôbÙ6nŸ’^r³Ÿ@µ…µ2ûy6¿ñ—oá[ü]¦$n«¦ºSVGÚ£0­[»þ²V®±h·Û‹¦¹ÜÏãÛ¥Ûßü] ¹Ù6£·?ä‰ÍŒö¢my3[™.*ZK=²ý.›1l§pìÄóNŽoÊîÍó„D³¨ø‡ù76Ò™éàCɾ•ú¨Ã[#·^ÏËùÙ¨wk;~SxåúïƒhåbJ… õwjä0í>œ<ìf­7oÇ凙”™Ý9¬“G9vöû«¨ Z¡|R„yEfó 5Š<Êá­¹œo£j‡Åõ Gˉa¼-Är¯b«Þ8à¼Ñò{µ”c'T |>ÈÖèT”¹]”+ÊlMì­ÉŽ÷åÑ£VóÂN¾^‹¾æ™­evu¡ÎÛ^¾Í3*Û,øÃLKÉíØø‡!¹¿ÅY[xÔ‘ûò¥ýòË0qO¯T¼]{—ÅsÑAN¬“Ùhç–iï¿Je•éƒá2å,øÃLìæàèh¬,~%¶‚Ž~!ZQ”îոnj| ç.°ŒTóÙÏ™DÕ|^ åûóý$3:¾«¤rå÷vájŒ¬šcÕ•hô_wÀ.×/ôI¶K·$¯În¦eEc!Tä=¯Þ{f;ôžC‚úኡ‹!ÏÅßBl½Ì°P‰‹süa†¹8·c㆔‹«6ÐdRïãÅ «‘Þw»*%Õ¤ßäð³_ö¼>tôX…Ít[¶6+Úò(¯}€é/K51[ùØø&Ýö+Ž÷£n×sL~ÒU üy*"н½êÖ7¬i‰SRì¿ýb¨Ø/†²½òšÆyã‰a~Xpùþr˜§ VçíÕ{Ó‡…æÝ`ûèÿ)Vö"hïÜ¿b­2Öª•µZ_Ê[4oNT&£ÝÊf‚mêfdÓfbÌé­€<ÛO=ûzLo 7’@l%Û ¬Øs |ƒ®ï^(•̼Aæ¾ÁDžíçð dû 2ó™û3{N¡ðS0K@Á4+ÄIcÍŸS)½T̺P0‘ÔJ$µYÓç4*ì?ý¯ê"7u‘»u1‘gûÂ}8Ç`Ø;dV ™Âš>§QÃw0û0·_¢4/Qº/1³çRßj»ÂKSá¥_á‹9—V8™ÌJ&³“±øs*ÒKÅÄËd +™ÂNÆ60§Ó=7SIú|Ïs÷4©]Ïh—ïTßSoú™ 'ú¿:=àiFo¦Å‘¾YQ#‡j¶\êÂüÈðc—?í¶f3ÉÃLlÌ$Ž™i¯5¶’iÁ§‰1ºÌ.kÏ€áfnj¸™Ã5[«uÉ|þà›Átž»üiW5³°˜)frc¦pÌÌ{ªƒf[åÃVal•Ž­i[5)O-Õêa 4*·^ñ™À°{pÍÔK.Ü9²)²|êRµ§KyÄ5ZZ=jæHòÆF7~¡¢Ð3ÙóUÃn}Ïz;ÜÏí [dÃtvO#­1"6CVR““§3Y Æó~V–«•vÊËÓL§ÍèSa¦—ùJÄÈŸÃDóüËø>2‚c‡þFÆd)^,EÓó/ãþЉ"³­Å`²Œ§ç_& ƒ$žSÅ3ž˜Hdž™èMáÈR<#‹ Gæù—‰È Ž1E¾¼Z¾Xʦç_&L@KĹf[‹Áb1˜OÏ¿L¬@YÜY\¬–‹Õbzþe²J"ÐTÏdb—yþeâ T~ßU,2Ì<ÿ2¾&‹JEùþCûbzþe Ö>‰O³µ‡É‡ÔÓó/k°Ðp¤ÊW‘Ê8óüË„âÛh“¯c–‰xæù—‰;Lÿ!{ëèe‚ŸyþeË^ ŽåV3qÐ<•Áô{ž·Õ4osV$ÔQ°t»=æ¥Ü\L/²¦y½Õõ8NbkšÛ»yL­«Æš-6¯ZšîIù8lb]ü¸ÖÊŸ-(“é©É o£ Js6y•å|•]·?c„ø&ÅpüriÙú5ÝÌÄ#¥º&º½•U±Ðâ]óýñ™¹ƒ08ßYÃñµ5±LÇ<Ây›²v€¦Ñ‚P}`ÊÞ?åL(=7-Œh?meÃøûÕFÇûÕ.)DXí;Z8úV¦yǤè_mFºw·þáy±*Ó\ñq¡äzüxxû”·ïW=½æ—M1¥Á;—z}>ÄœîøÌjfÒÌNL?³Â­úiËÙ´CðQ~Z#úŽÅÒÕƒ…žMÖ^m3›ñÊæzë0Ú¬òù)~Jü’:_«_gn»Î%OðÙr•²žF:èìZž¾‡™ít—Ù°¢ÄIlˆÝúM|3À§˜¥hå^ù1žÂìÄX?£èÝ0®h d¶’ÉLfX¨ðí¤^n:½¾¬/¥™y f™Ú˜…%ÆyüÜ—§ ú*®• ,Ï8æÙ(í8·l&e{BD…ëòp¹|lÔ¥ÌV©K`ƫ˵çæx¹\7rc ³•†ä˜ñr³¶Ó®C´ôš"ÓU\ØÝªî÷ï¿Å;÷Kë÷‰_ïOnÒ_Ÿû‹™–-äb.bæž%»ioxž¨êØÓöf]»yôz /äÙ´ò™í4Õ¯V;²7t´Â/¦3œßùj)¬à‹á|oŸ’/×éF´é¤E@´u±ÿ»h¥×OÒ;´Í®z5í>“ úaH–£eo^•L?òà‘mÞœ¨pÊMß\ðöÂÛ×û?ç¬û2þFÿÙÙÐ !ðb´ eZ%f×R•÷÷q¡@ЋÙ.`6§0x6ÚXý£W‹Ö>… ʶ‰Âfà XºÍ:þAùšH.á& šƘp)ƒ¸h¼ËDÒ°ø€[ Wãv½ž/Ý›7ÄMÎtCq÷æ›Ü‹+0 ðHâ†Åp±2|ý°ô‘¡³Ù€ÙBùxñ_½#dWëúXîY6ÄJ,!¦X¡… ·€ç¿¡U!/è9y¡#<œ€íˆOñ9 ¬Cè| ôÝþc黵ޘ’æ¬n!OáÑ;lAï°éÖÅðŠ”½‘ÏvG Õ›õûÌöl36ñ¹1{=8xBÖq/¾Q2⧬–ðtRûœN ¤¶€­Y¥`é<:J(ÖÓ¦^VÖŒS¨ªWOÈŽ5ÿ´i‡¾Öz6j>>ÊçYÖ¿Ï|kê)``žÖ}³Û{ÿþʃƒ˜mXóMA#먉†]Ë9U;9M @Î6;<ìYuÇÈ®´†¸BócÖï308[{àÚƒÓgñ VÀà&|Öéµ1ÉÂÏüþ4@G/rݵù<ô#VÛô‹×í’Å£ô·¸Îľ,­™Õ ²ßs’Õªä·è^‡N ”o6Of¿€;W&khK_z/[Ó9×'›-Þ2±e}: Ûj_³e}' [’Ž¥í†IvÊv9t;¢„© ?Å‘#8}0ÍlJì-“lR’GÍe¶`S°a7ç[8`/ ógt¬ÑKh¹l1±\ÊîFƒÁx†Ô¹æK2¹õ»"œ¯±É¢¾¦‚Ø`«Ld¤!¯ñGFÖÃ=ô-°(³pä:÷¯’ºun_#Å»Ý^ïÄ7þ7×­\õQΣùz@býÁ£±7÷zwæS)ú?8Q"V7ù«¿7JgP{‘··óeœÐÏA‹2ó´›¶õµ$ªèÏJÑ··“þøÓ@ ú Õ\v3P´IŸe#ÎˉɽÔ_ØíôgCÌ?Ë®ÛOÇŸ¦½7¤üõ(ƒj.a\´g‡©¬¬EñÞýІ¼9¦’ òí2|s/Þ¨>2<]ÏK²¥¢|¯?b`ŸÆËU¾W]_Øë!ŠýãÒ}âÇ|7'©µ¾é*ŒªæÏ»mᔧߨš$þ)Þë ¢Y*0­9ÌtæïŒ‚“ú<£>ꈔÅQ·´Çæ¦$h$ÞíC¿Fû“ê+ÜÍœU¦úW–LÄá#ÕÂ6Ïgßœ€+‡ŒA`‹3óE9U}^1=æ&î œ6ŒªÞÁå}~|B,Ö_¼›1L0q5}µê6}ƒ€TOüÌ­‰÷µñãÛZîù}eÆ™%o$'bÿ./ó÷V6S«÷‡Ëé¢^Z±×ìÇþØJ€Ÿ°võM>'0ù¼ â(~«và:ý}š`-ôÇ£^È«êCÊ^;À›mç¬;ÚÔ†Î'È{¹ÇÓå6n%:÷; VÆ…m\åo#•z‰§¡ºmö¦7¶Ôî ÿ)ŽºÇËZµT>p)µMN·_†!*×rüÔW7Bh¶›jZ4ÕëKãŽý©']Î,òóâ¿àÑéRÖI©¿—´¯Ÿ%û  ¢ß,/\Ÿ>äà€V?-øl?òaúZ™ŸÒš~™ñùÔãìÏ[EPLÀ ”¾r˜®#Ò³ò V=®\!=FRËGŠ©¡zÅ€Jç‰Q=yÅVÖÛý£V믷Vš~*m%2ùìgÖ¤7›uA*T¸¢óñy¤?Óá;{íUWó0YvËxxˆVíÜeèßÍwm)4rMnK¤ŠùhÉBÓ_€/X¥ÈA²ý´šÝV;ªü ̳UÅ5}*£Êê•”ªzÂ/[‹•x€_X*©êúÅ%˜ªy0BƒÊª}æÙ}±'HÎu,øî ¼Ø=P‚ѵ]’"^¶Æ‰æ׌Hæíw‘ÎG]Ä3³e2ð{¾·›ô'dŸiûÓE áIC-Êý8ÜÉü•¨ô’xÃzB,s`Öwær¹g5xgKCæ{löÖÍÿî5ͺ•¾ü\·Ñ4}b Y¯« åÓ²)€5¾x5’ïæÒпã¥taø6ëݳŸc> ò6Èc`}·Žž½œ—ðz~c8é-÷ú}¸(™±˜]'Öj»C#œ˜ßŽÙúëq<©øù~³ ª‹}¸9«Ë©u< örÕ^õ6Ný¨¿'§òûý®+ÿí$”;üÂŽZ‹iuPiBA ¦Þÿbñ¦nögº:Yke3¢\/ O1¥™º{nø ¬ë6ËÞ„ÍuÓ&r,›M<·×P›d†z.ЬÓ˜6âx“í·ƒ}“O¥¨â¹å!ÐÌ4å¾¾|Ž=A3o›¥ß‰F_$§O¶½Šcxqª™Ïÿ½ôzÞ­ý*¾Y6f¿JpõðÔü‚–ûæ®o+ÙTOç© Ûå&ây¬n£'jêœ\¼^ËÖœ¶0Ø€nÛtíÇæ ZÒâ·ó…~E¸ÉÁF¯çJæ {î»<'€™ìÌŽ¾5àš(õ·¾Þ‚3¥6b=ÑV«ó<È2"Ve°^{ziâ,ãµ]FkøKSI.Á2Þì_±4Ñî_|å­•"œ³žfd5#ÇGÀ@™«#q6õj Û;Öé¢lA«:.û ×îK¶gð ŽA®?Ø¿…y/Ïã1ìß#u’žþ³Ž+߯{ÁGváq0§®×ùQÃıR[5P5Íÿ4ò£O1ßKÍãNêºÉR!õ\T}$È4WÙÝnjæø.?gærÛÙF ‹Á¾‡©)ø«Êû}=ÎWÑÓƒ0fDi¼qübx¬Lò¥m’>hMì܃ ºü‹¸Öþäî08Ϊ{ÀA^?Ôq6|¡ê¸ë\БíæTNÚ#¡œ¶½T¦`¼luCßx%¢úo|aÀà!ôÉV:;“»ô² ýi#ÌBÒü/•)”<ÇuÇ¢û‹ZâU «j§|ø?E' NãÊØÏåNðIù!Êwù\‚àÐ MØá/3uZƒÜ,Ülä¾ËçÌ-ìöÐçûøšC[£ñ\*o«b’Ô{nàÙ†îüs÷ÕÐ+êï{XÔéÄâ¡®&ý9ôY5¶}»JÑZ¡²r}µæ«í^ â…ÃH»¢^Ògš¨.‹oÇ4IqGž¥îÉ»vwPåP%ë¾”½Šrau)^NWMÿ}Z¨”ºˆ!Êúq‘>#k^ÛöBãé ÁiÙ~<¦_¶Ï‡‘=‹÷RNÉ´¶é-cðëj…Ú¶Qkr~ø)¿ÈëÍYÓíí•×å3´B~ZsïçìÊñ|s]ä…Úý[ŽÉŸäÏ ¼¹h¦–ùðV;ÿcTù0|í†A‹Nró!e~ùìŸcëGÖ¹>jMUøÕ<v¯çýõ|»ü|~Þýed–yÝÁ<æwÑ÷ÃÛýy]¯?UƒÎt//°y¯û.–:ÏH'9–¯‡:Üm]ê65xÁX¨¾2éô…ü9‡=9¨#ð,É+Y6:¿Cª¬@•õ¹eï™:ã†\²ËÆõXôÛè;}óá¹ +†Žø‰ÒüëÙ §µn…3è¾Èïzví u9ºögW×~lµ`ý89|•òî‡ÖyWôò¡O¶üô®bG‡C¾.$¿µ/ç  óû/M¹þyâMžÊ@Ð_K©q7ÓØÔp “^Àê=‡áÙ1›”BSiú´iCÇDM*§òmkzf¸È©™èI5¶U¿'KÚV;1كѶÝÇUVÎÚ¸©`¢&•ÔTQ;‰ºþóÄ;Y<•rx¥¯ì3)d¦‚1gzŠâ5Õxü¤,Le=®¯¥3T5ÕV̤P˜ K”ÙU3=©–¦ªÞªÙ¨×Š™*S¡!NžÕG>j:äÑ¡ÈIMZ^viÔ£“‚oyØ‚™jWÁIÍwš¹G+Þèo‹†Wñþ&ûR8éù¦Žô¬8TÉ?M9^ðP)Îz›¥è‚'ÍÀ£énµy4xÒ }šêF±o¨jø¤ytÕý/ûe5zRµâ”>`Jíbï 9,|Òµ"XÿÙ–—GתMÀ¦rú~ËŠ(tÒK7¢ô[ÁŒ»6bõÄ™J8Ùþ×–Ò/'ÀÄ͘ڣŸíM¸IÉŠoêø˜gó|=½-¶‚& +Âmú›íevSÙaË^¯/˜ÙÀIËŠhãy{Ä(rR³"Ú8rÛ%ç@'=+¾½Úæ¹KG­ÀŠu[½¥ÙS$ª©o¼¼Ž¬7P#Ú!N²Ã>ý§æÞL£(ˆì0ðÁì`Øž?"&vì>„?]! Þηh)SÒ|º¦ÊÜÂúë>­4NŒÆô¡¾Ê`·PÆMsžþ"*éáFÃ*ç IpÔ€ò"~úEFŒ§8±€P–›k<ÈH#‡1àó­x•ï`vEñˆSW|6“Œ˜!ΖꫦÁ>Çû êå´X––jš¸©OïTXÔo`O[-ßÁ8€ll¼×0TsrQê/ú†iÍx­Ë£è8û$ÚPpr0ÎO=A)Ú ùOÿò¯ÿñ/ÿãÿüv8„Ç伦ãdZùÑ4­ÒQ¸4CÄðÕ"T¦UTC_IèÕˆ”†imÒÑf^‰XI˜fWS‰Áîü‰’0 0=8ê…øER%b˜bzt^«²E¯†ú ühØdP e”~ õaùѰÎ4dŒ£}~ò!g6ÐÀ0Ð4Ê×í/曆ó‡à4WeèíȗƬÿˆP0 Y‘0Mx!‰T8IY‘1MY)‰R4)Y‘2=ñJv¼$Jñ¤dEÎ4c•ìøI„’IÈŠ¤ê‚Nˆ„"•NRVdM VŠÆW"uš¤¬H«.m`¤H¼%JÙ¤dEÞ´"JlüeL3prN<æ‹¢iñ5¨ Ïœb°(¦:E7^sšá¢iøÀéÈk2ñ›ÓŒMÃNÐtâ9'/’†[œB^Òïœd²Hr¢¡Íï9Ñt5\åDÃŽÿœæiÑ4|æD#î8ÍlÑ4¼çDC꘼:ÙSœNùÒ7¼Õ/õÝŠÚŒÑJÒRÝEÎÄʺËGÓÍ ¢§,_ºˆ ½`Òû‰•eë‰Üè)6ÃIqì.Lž­Yäk—±!M’c¿aÐlÅ2_»Ž ÅxRûƒf+VùÒ…l&“àØ¬,[OæFO²¡˜NŠcwbòlÍ:7º” ÍÓ¤9ö+&ÏÒÌùÚ·lHf“äØÁ4[q°Ö¥Ùa⣟ȹ£1¸¶l[}Íåã¢|\•'º-æV·³GkOéR@j°(ØEd9éÁö”pZJ8æ9 ؈œtg{ È–²µ€EÀ. È­¾mG_²:np°<@Ñmq:œU»‚íÛxæU>Õ׃Ë÷¦´3M–aãÚ‹ftTËP0`鸖,¡`ÈÒa-#XAÁÈtTËJ(3‚tHËÖP0aéx–Cnç,ÔGÌtÒr;5¡ð{¡Ù ¹P‡ê$!äv¢Aù^ª™kÛùu< ŠSmIŽYð3ÉŒd“Õ) Xéd$olýJÕ“XK2Äê pË®­\°Zð3Œd}Õ dzò»ê’'Ù ^$“«®x’•ÊEr¶jI9LÒVn'fÕŒ›1ÉBñá«“˜ª‡PX÷Ó‰%ðÀ•©Ï€&­£­u‘ê¶ -4i\½æ =µZ “NÈÕÉ«C “NÄÕçùhîêèPu1É®6„©Œ˜«ë7Êð¦2’­çØÑÆ,|ÒO·žaGÛûôO\ýÕYœ×÷^æL%eÜ“|¯¤-ÎT’ØñL;^ bL¥;žgÇËÙ(¥äže9ʉ;§Ì|œ4+[Sƒ®ÓéÒt¬«ìOú’Ñv%\aÍ=ðI¿æZ~G›°ÀQóÈÆíÊ/Å6³ÆMŠGo+ëÓþv7²žÔoküî&6Г:å·[ƒÃMŠl¼ŸÎÛ²b 6鑨>@ö[0OÚ‰£½ßz!xÒfãùf;0°IßpÃjMÔ¤–yZuÃbvRž6ݰV„”Ù8¼Õ.jRcã­uâÜ–µ2àI›Ä]㜸½–»A™Ê‘›ö»†—½Fl0¦RêQ~6Šý~aŒ¥Ðfû=rƒ2•ãÖKݾÙ-.Œ©”`3j­²7tŒ©ï}W¤6°qÜ‚oD;)ǛޱüŒ©_l×èï¸%Le¤Û}ówÃ&Leœ6ýb#ªúS)Ùöæ;Na¦2Üž¾ã”0•Áöû¬a'eÿø|×̉COê¤ÇXÍy,ßâL%‘>ÃèUv»Æg*‰ë7ÖhœÂ´Û¬ÎXRxðú¡ušúNWt8SIG®õ¾gÆ[œ©$ºŽ³¸ìþ>d‹3•äŸìš©cË}ó]^ãb'åx‡ÏxïŸ1•’ìðo)~ÆTJꉻ<ÅϘJ9yúÄ]^âgL¥d;|ÄÛ™øS)t퇳uo)~ÆTŠoαË3 õnÏ?vybL¥ìéWìáÔ~O!¼©Ä=ýËŽ÷ð¦ëÍñä.ÚÃKŒ?ãë·‰§Måqs–•ªtþFÇѦò‚Í1ç®÷ð¦CÆN¿?ÝA›Ê‹8+ýöam*뫾?‘ÞA›Êc{­oÏOvЦò¸™ÐêG¶©íîq´©<·'[iÔ•vvšÜ½žX‚ñìwld“4•…f#ß±—MÒXVÂÇð=©·[mËŽ¶8SIh¾ñ ›ÚâL%9‘ßmƒ-ûB+ĉñíXk -¿¡]ÖT×Ïn^¼·?Z»¬©4§W°Cñ¾a^%LÜõ¯o·Üg*Éí)¾Ýj[œ©$gOÅ OûZ ­%bÛ7÷µÚ>æTj±í§ûZps*µÜöÙ}­éŸ™$t­lœ4=Ê=ƒ6ž´ÙÙ‚ߨMu±“r”÷å†P䨚²YRvOK0£’ôÈéV8ëÂÍÛgŸqû¬oµMžÊf3c ]w {3ën›<•M×·lzùèœ»ÉØrFà¤Éî¬l´–ÙtMjZHònÅÌ\6v«¹¬IÙ,|cuæ“8>Nx76wͧg³TÁÓ/œ¸‚ãn¥ZXOÏ®µÀ§7þ<ñÙUm:¶mTÈŸôÙX8÷FþÊ"ì¤,Ñ{cІ!yà“>»n2G8¿‘!ì¨|šoÙ¾ˆkÍ^2ùuºˆKŽŸ8\¼ðÀ€««ôÂ|8áÇó"Çz/#š›5' >åqrbÕeª=Oa€æ)ñ) ãù{J?åú¬5dº„~¿¦ {ÈÁÙÏSŒˆÝmYŽøÍ—T™%ï–#a¯}Õ+|Ûz³ÃtAùVµ³Á+Æ)¬ºº`Ôå·ëýæ•x¼{!Ñäª;Ÿ!žža'<Éu.¿hŸxˆ2cSŠÅ7ŽÇÙi¯# €Í8ì¹–:ÿ×W¬Øòq È5Çcvµ€TùM)_µ*ªåK¼¯Òõî¾J‹ƒuß$§«t½ ÀwêûŒeõVvvi€ÚLu¥—hÚ¡+}›ê¦?÷õåf±Æ´®nœ+gNlq–‰š‡‘XŒîñ¼tÆù¢nRõÑS‹Çï>‰#ÁL?|™%aó7a¾ptÇ+)æ·º oõn,WõÄ¢š$·póÕ¼Ë;Ý"Ô“ð^B1»º3ëz•×îüüµHq1{ÏlÀÜŒ n—o.p›ýj‡Ø ÄbS³ñÕî®OÂ1SK¯°[W^8ñ_©ÌVwô%Øél€HòßÜŠnHžøZîhZ"Ì7BÆ×xGï’|íõÿpn¥b«=C'Á‚¯//ÈV”ò7†{V¯yÁ6¡]‚+ J¶†; À–å_PÍÖvÇëß!^Ø+нuÖ½jŠr•Hq/¿`ÀÖpGÛÚ²üã‡lmw´íñˆ­¹Ï±lUÛ Ê˜­«Ï­¼rsl†·Üó—s¸ô£N6 ÿü"Y^7ýE~‚»¦ØÝ—l»_ç¿Ïqg<€Ô‘Ouí 5Ÿ µ{\Yàu½ö¸öµuÏ;ZŽ‘Ë5çõM+—ã¦áº9«Æ¤À.È\æÁ¤Ð"Y«Z˜1¤±’Ë ÈG-º2¢âeMôv©$9iKÿkHsÚŒ~ü)×·YöòMµ*[`Û†Z sÙð¼Â\´û¯Ì¹FU}û¨x”€XåìKÝÁ”¹9eú³Î‰Ò7ˆÒZŒõµ‡<šíèE.”ñ0 ï˜)¡E'~Æ:v¿ïdÄcWµ’)‚ú¬XÚSà]1JÚsÞ}1Jfh®½Lx7%„]Wãí×(˜E‘¥G(š~˜fª~޹šxV(=“¸i ßÑÖÆ³¹•1É+DÂþ׃å)o*JzŠÚx«¸,‡868¹xœýa«>0o‡ d€}dØLdln¹Œ‹h€ªï¢GÖpç»O3ìýOž@ö®ª§°ê»è§œ‚ÿÆa³œ,Xäl@f±sX˜w¦Å1;O`÷`+¢k-½± IÔ·uÎ÷U 89,Ë˯vòWñÉ/'‡a,zí^ü?9ùëV<äõ* Ìû¶û¸ þ2îä0Œ%»蘒ÃÜáõOÁ_¦f»õ@Òq¿IÍ]â”?/jMüÑ?;p‘zr:¯z ‘‹¾”m¥BaÛݨäPä•܃+‡Vi½Ú^cžª¼»ß»¾ñ@f3zÊ«¼_:Л%‡y9b§NL ±æÝ_r4 £máëÕu¤A#ÝÁŽÄõÙ€Åêä-†8[tÓ¾UîìúçU®ú}æŸÉq1®KwnÞî,2-u9 œ.âö@›ŠÉ1ËRñ«·G÷jf[_»Çø‘ÎãéÊ%GÁ.;4ƒm£–-ø@¥d#|ŒŠýøð’_EôQjv‰ÌÃyÿ®²ÔžœÞh)Óö qP¼”¯½õÍ8\äQ5(õ’à0[hº‹øÊ¢£¨^¥|¡ZŹhß/àI®7êÁ·¸¼²–æå¥y{\:ð÷S®Ùo]= ʱ€iÙŠü%¯Ác%¦ÁÐ_<Õ´N7½Ž‰À¢ƒ"¯Å£oÞúÏ[Ñѵšñ?ª›at1SÊ|x *-àýÙÕ*œð&ÇôMù†£I ó»¥äËŸAuþ9Ä›Oz˜ð}²Úbz«»‡Î/’ेG zï fa`kÃÐN]ÀFö£k{IÛ@á®XÎÈÄBÞº—^IàÔ«€Ì;T+”Rê—_]Äㆠá¼ÙR?†È bB-PpŲ=Ú\7 sÜÜãåŽñVXåËìŸK~έCÝ{(‡ÙÔ>d¦^¾ôËÐéïÑ!¯å0Æô…¬è˜{^Fä[ü0ÿõº7ÐJ¢hè៯¢Çùkðp£$oåýùB¡)Jóûõõ!.:åâÑ ÐeùS¼°h‘Ÿå­iA¤‰Š!†·%|l•ë…ªUåšÇýuxýMñVÕy_v{ƒª½Ÿ87Ï! cŒêôîF%ŠD eX"ÌïÍÞÑŸ—)ïEÇ;¢Ç±üý’(~Ɖ…|thÅ©,šaìF³~gèÉ®f sw’8³ wᤘÎÀy¨¶ùè…ô=zi!=^Y@ï£K»š¾G¯-(~ôd™€ÞE¥Âb“y5gùz€óÂͼ]åÎ+µåõUøp³inVrž¥nV’ìÏù ‹mnTò¤§1ýà¤íøX¢uÑvO ‘OùŽÌ`ˆR܆ùˆ¥…âñ ˆ‰^Îôéê¿M"U~{ ãµaJ$ž\w£þûŒ•¶U‹þšÈOšõÄÆŽû„·–Pô&tzÈ?äÐ÷ŸF”¾1vª:Ï}È µšþùNŸ¥\øŸi˜Sà8Îû¼ËŸÇ·»$4%*/òƒ-rì!‡[äÄCŽ¶È©‡o‘Or²EÎ<ät‹,xòY¶rèfßnj݈+¢Ï=Á·M¤œÊüê.Ôâ©­oÂ}õ¸~þüOM•†qx;xí ‡ãÁ´‡ïåE4~ÙÓ!¯©Ç×?r\!€+$p…D­@â’·Ø^uüç.3‡[a~tŠÌåt²FʼHâ/,c˜ª°…ŠùгuËü ψOA¢á©ÚsR苊°peâ¯ÃHDúÔ%‡Æâ5[¤žÍ{YC¯³ãÔÔH`.VÜ´r˜…ù0Ó¸t`ª‘EãòŒê[?ºG^a«¥™ºVój!{µýŽgÙ`áå0ñCNsµT4üæ}’†þZí[€?gÃÔ -ëgb­çe;°E.žÝÍb²r¨‡|=~VòçµABUÞ½žjS¸zÛÚsÈd>~•£à½JžâõY…i×e5"ÁÏ1X˜xèe kÅ1¿ žýé®OqöÍÒE0]›S½m®ˆpÁn!£\ç©©/iVeeÌ[Ä8_ ÛõIF°Výóѽ{Ñ©‹^j´¯¼S¾$ |§à,7¾„øQÌßDmæþ$¢˜±›¹N‰(skŸÑU¿Â0Æè6%W [ÿtÅSQC^-¨G§ú(åÒܽ¤â—]]£À[óú5è¨/²ÑÚE¡n){Á©"ÌKù@QE_û~{àÏqþëÕ‚•›" gˆà¯z=þÖò–ÔtµÜ7DŠkƒÖäŠ,ïå_Ͻ÷b¨€¼5~Œúª«iËW 6QŠ!²Ë~ÀŒühêXTyß•¥úÞP€„ËD¥\‹^zõ”ûS½½K°”YÎ=îP™×iû7¸÷¼ä5/P¼³¤,ï )Ô#ÍÛã: ÝË›úÿ« è·B^µk‚wåËafØËe§Ò·/_.;âcAãù X4ËÕÒíÚ1ní‚–b&ìÜ6]Rçµuá$þz)QW[«ÁŽî=ÜÖ+Õ`±º+Qg>Ô©»_šWyAà²Îñ°L¥‹aŠsm*hÕÐCËëM>ÍAºg™À¸ zÏcª<ßažÕ¢?GyÛ½ ³6´APÅÃ8nˆ”íààêÛØŸbúö^ýçc†¡!^5/z Ó‡ïÐæéÎ7i'sÿ[µÈÛ0nFûûUfndo¢E^=ô¾î0dõôÓU‘ç|ã‹”™:}ù=øœ¦ûÞHµÄBobD%óz¨ªè%?rpk*9üÿÍÏM“j^Ü}>^ÈÒå!:ÌáK•´ ŸD?š¶Ë#Àƒ9¼ r¡†ImwO*ZWP|›C2œ^ˆ9›5†|ó,úMÝðørè ø•`"§oÇ^„þºvñŠR j6˜c.ûß ¦cúùstY wè‡èyiäô *QwèežÝ€zÀý~uqïåõ(ÁøCª¯þ‰l]–äDå[©åÖ d¥§€K÷xy(Wà›jI8)•õ0|½›Æ£ÓÃùT¢>äþ]ëú¸¦ M{Ö_Xh×~­P­a«Ì•·K‡¯ŽòZ>Pp¨‡‘‚h®E'À¬±^¾™VÉz?Oê4ïß4J®Oy£Æ÷ïpèWgjU°ï¦­o<¼«‡1L©‹ü—¸«Ní»wrP—Êá«Á¸†ˆ>øÄù©m|”j˜0ÈëÛýuaµÌË×]½Þí`Yׯºóõû­©ëœeÔU¼Lº&jŠZ>?ßú²éû¼¨ôpœcŽÚ°òƒçíl>bf—æ²cæ‡Å릞 Ê*?pN?øN%=$ù’—øvíJáOÂJiþw5ªo@0O§\4»êð ËåX¯|3B ±U]1 `Š£ÂÀ”ùŸ¡÷ëŸ>P•<=|ð€ìOo†î lx[Ouîûóñ`%X{¡óªmø°œg;Ã56õ›À1Ê÷ÙÊ1Îo¯a4t¿6“ðÓÖô˜LŠ;áéœ¨Š§Io–­Kˆç‡”ïž1~z“æ6²&(²}SYt~Þ°ü]ÍèÖ³ãÒc9²%@PT¦Ê¯C ¶ÞZJµ{: ‡—iâ6¥^ÛkÔŠÞSõ>ÔqÌ\áuì4˜§a{ñ§¼¿î‰_i0Œ,SCÐkéi –¹î&Ôvøñ€iÆhY²hFXèŠd Ô$cll|Årö¯Ý µâÐŽ ¨Ëy°Ç©~ «‰Ølà2 „c¦ÉÛ.ƒ £ =ÛÞVÄ1!ìi¦a8Üüµ¿ˆ”¡Î¥QI jþ±Iž{Šÿ‚D–??äõÜ_c‘Oé4 e£Ù‹ü{¡/,-³ØI6ÍR¦ª©Ý¾Y/9¾ZùT§üÌ-¥fýó½{È'˜»¤a½lÎú`ѺÍë…g»™kCÜ}ƒ¾®ù™MmÛcihl†4‚f^ÜÈßÞѸ¢]ôõ4Šóçü‘ZÝ]µ¤¸EIÖñߟ‡ýoàÓ¹Ÿ}ÐÊòoõÆÑ”Bç6Ýð¿åð¾[…þ¶Ì´ôí'Gí<„i$óVžÅøMË´è¸Y‚ýAâø¤+Âè4¶ç ߦ­Ò¿Ã ¬‚¿Ãœ÷}~¿d¯'ªuÞºG+nhY#]òŸ¿Eš'Ðò¯ò*nb7æŸÞšöÕOf,q:Û$-Ë³š’Æ§œ\JX ®)ÎæÝçØyF´:ûÒtšý´ÛTv·›[}W··ÕJ[éïHÌ}×tüü¡2ÒVú;õ$1îbüÝgJ†Ì߯MrÌË×ãî„äMŸÆw~ˆûE/ðlqd›¼¹¶¿ËžçkFÒ7@Æùü§Ãð}Å™&In~ñ @iþÝÏCÓä4;ÛøéæÌÚçEöM¿>ôý?WâçB\¼tZb™ÿà˜KÖŠÊÌ~ÊvÞéùFá…+ñíj”擯ûqã¡Åcx1ò¹UÊj„m¶"³sõ@®ÃWgvd¶6PŠ«TzðTj_ã¤G_möµMäÆôÏîñìš^eHuHÔ¾j„¹qü¶[Èò’!>]?÷Û~‚¸l±I® ñ|[†[óؽjÎ>•:o¿>ÿÚåü)9©¦[ªÏÎP †HU!'ÕÓ¦ªÊd4tÃáÔÕØI9ÛRVKQ†p4üCÂ:éŠM]µ_°êÆÃ?¨« “n±¥;Ì? Ùdø‡drR-7UÕ9ö†n:üƒº;)W[Êzöa(Ÿ†HY®.¤©ÜRnË€³áÖÐI·ÆºíëVèµ³)òãÑ5 £®þ®`Ô1½hûŸý0·ª=çOÒÇmiÎí¼àI:Ø!ÍúÞ|’·åYô£'ñh‡8ç…~ô$o‹s®èOÒÉiÖ7à“|º-Ï;å|’?m˳žéGOâ™OÜãž~ô$î‰Ù»\•ÆŸËzâø.ßÝ,ËðaOtßéÌÛ¥™Ní‰ùû¼{³8ÓË=ýÀ>wß.Íp{Oï°Ëÿ7 [ã@vøNY»:ho`ÈŽß(o_·íYðòvuæ¾Ð‘…»JûFï‹%ÙEsÝá:ÖV›Cýw4ÃV–:ïíç’üµ!Ê€m½:Ÿ÷ß7¢fy˜˜¨š›lÕÜR\ß܃—©å éåtã ó°ïyãi¨/€îêØk}™@…c:`ÿ*zµÍV(š1ê“"ˆŠ§«~•±¨ \!Îo•¼67}ü$»q§¾™3~‰Û±+Ó¼{¬§÷4C“V¨ Nó©ÎCÀ¹6Õ«»?d)õIàÞGVÇŽOk2F @¹™ ã|4~úêYä7T>„¾r±éÍoGAe~í4j\±¨Ê–¦ß¥–\>t½vgMÔßÀ°•¯l¬­:ïÉdzÊuJe5^ÞÁÒŽ¹˜Áäò*ÕF¯úÊ@¬zÌiJ(¡•°6~dz´L™—&ì£LžÑ©c/Þ~u xUÕì ›Àt¼xàÖç;M7 S³§¾I„EeJÏ=¸éjîu’g$Võãi,¯ 5%+>Mg¼PkÈ9ºÏ³Ð^Ó—ÝXNàã¬ÍŒ½Ù³A*Ãm£[ô-ß’Œ6‰1CÜWdbDZñdSkÊ÷à{™Ò«L‡çsŽ<1Å[Y6 ÜŒ+—ÙSàäp{ÊuzÃa÷_Âææ³{@5*ÜìH‡­Ždª³æ¥i 5W ÀU V©Ñ£ê3w^wՎ㸑sÙú˜¯ËwûÁÐÉ µSÇu}¨f9 ½>G#3Ìÿ+ÊQ­ù*½«XñR­Á3 NŒ8½Nhm¸yô‰Vd6n's곃$œjí l3©Óðocú4Ë*ùöÚ¢U¾¦Ø"Ko›l±k‡­Ž¥:Ÿ½ÍsRŸØ?†™ÚUÝþTGܨYr;}Õp%à£Vç†ÌÇ›PtÀ£mxxÈ£c à ¨9€§¨êâñ΀:€ Pw/Pݾíàjx€—¨å¾†MÏŽ®½kBÌ£‘Á8²x‡&ðÈæ=ÀC«xlö€€ìÀ¡á<´|€Ç¦Ðö? `ëùóŒØ£‘ý8²‡öðÈþÚ?ÀCûxlÿ€€ìÀ¡ý<´€ÇöÐþÛ? `ûýóŒÅ‡ÀÃàq°xÜ îÁÓ ìw€€{@ðt€û@ðt€áé Ã×ð”øCÊ£‘;8ò‡ÎðȺÀCOx쀀üÀ¡<ô€ÇNл `ðŒõû€‡ýÀãþ`ð¸?Ü‚§? Ø<î÷€àé÷€àéÃÓ†¯?à) š8œ <œ!<ž"œ#<ž$ž%‚gšpžðx¢x¦ž©`๠x& €á™-†oºÀSR8_xðØ#ù€Coxè = <ö@À>àêv{€Ç À¾àq׸gOǰ_xÜ-îÁÓ)îÁÓ%†§G _‡ÀSš?8œ?<œ?<ž?œ?<ž?ž?‚gþpþðxþxþžù`àù xæ€á™?†oþÀS 8x<<Ïü0ðü<óÀðÌÃ7<Ïü0<óÀðÍÅ3 ßüP|ó@ñÎxN‰ön@<Üx¼pàñ& à]@ðlC܇x¼x'<[€÷"Á³žÝÀðmGð” îG<Þ¼#ž- ÀÀ{€àÙ” Ï®`ø¶%ïK‚gc0<;€áÛšÏÞ`ø6'Å·;(Þí ž#áþÀã @À;€àÙ¢ ¼GžM ÀðìR†o›Pð> x6*óS¾­ @ñìU†o³P|»€âÝ®à95Þ¯φ`xv,÷e(ž= ÀðmZŠo×P¼Û€ãÙ· ߯ øv.Å»u8¾½ @ñn^Žw÷püÛ,);ró£·n>pÉøgù˜Øóápv8n MŸsìÓ rðÉ7êæèc’oˆD9øàæ;"±·u¼Ÿ¶d‡5Å/…¿A<ŸŒºïòì-_¨ý ²XÈêfÌ«ïëìPÝ/݆Tçy9Óˆ›$i4Õk“S[&²tDî»—oy­åªÏñf yÌ€¼äg‡ ê:å…G VêLoxÝ1ÞÔùNH:&Û!N)vºýç;}Gò[šåäƒÁŸž'N3ûЈf>N‰"™TÑgÐFgÞ€ˆÒ5›ÌÚ)rŽ´;‚ƒ[öw%ÔÙXê4 Ùg¸G±¼ 7OZx£Œ‡Z噿ãWÈ‚(§mRâœ>Æ&%ÉélRR÷YTK¸Ç+±ì“ûXßhÿÌ}Âo¼á>ìZóMv‘““^ƾÔñžÓ²*”9®¾SdV…Ê}þEaç î X$v¾…Úóûjpcî«Dxô<Ǿ7®%÷9ÂüCü™‡ŒË.U£.«¼N'j”–ÙQ]ÔE„¯ÇŸ­cq²0Þ+³ /€PB…Œq£©³„o “îÔYë „NóùœM¥Z¸|[Nð½’l:}sfÙ5ø˜"v÷or† ²>|ö›´r)ŠàÇð«OÀÔÊWË‘„ÈBûô^ÞuŽ„:slgóηŽç‡™üÝOÈéÃÿê÷œƒ‘EÇüï°wÄ  zë‡)×s×ùY:Sc×±™ºû“…OZûj‚Æìú|õB^!1qa/eF{—G÷:_Ô¥ˆ,å”Ó£AÊx,Þ|&Ë^§ÇüBÀ‰é,uÚ¢:Rk¬ˆþú謋xÜ»Ž?‹+‹ ƒ¬á}ó“KuB•†Î "ƒ€þÿZÔO®òtˆÐ̵üd Ÿy³Ò5¬ôŽ‚ãƒ§½¶›;>¢‡Þn°Ø\›£UÏÏí›FÇÖò×÷éÑb§.w:ðÌG9ÿßH¼?žçã§þÇß8y`º¢ÎÃμϿÍ[ïÞ¿ˆ›oC Ü|ÿÕ ØÛ6°¡Pï°¿Drزƒ þqÛ66ãíaùêáÖóR87̨G›v8V~ó5}œ1ë¿i  Ú÷¯;O·-ü¿Ö>§íïF žíð®ÿ’mnFÁI]Ÿ?+ú )¶[Y7…ʽ­¹¡Síh¸}5’;½÷ïZ½Û¿þV|H§OfkMßÂ3žšÖ:Óc.¿Äu¼PÉuÏD# ògsjÝÝåC<»Ç÷ØhÂdk2³¿ñ 63CÙâzëúç›n‘alè*šõýÏçE¸®é{âÔ]NŸæ<‹`žòóCЧ|˜…îlguüµ:û{,ëÊœµ½ÒŠõ¬íï´ÌtTpÝô¾  trùMœrèMÐè•[°Ó!Ÿv­Á×sÍyÖ1ÿzkçû£û;8è:;&îùyWçù^Ñdæ4ºÌtæªu32{TjvšÏeÌÙ¨Ù)6‹Ø:‹5;%V[G¯f§Ô|^]Rsgÿ¸Ùéd²Æ -,s +šVŸþî/N¸Å9D¶Ài]À>„xŒÄ*?Ôð”/²œÏ÷RÙB+\¨:‚ù­Qs´ût¼9(^zŠŸE¦…ÌY‡­K½]"ÃU';쨎ùL\]²ã|T¹y}úrº;_p0Ÿ£ HlA“Wª%×µ_ðZX¶ž×[¾Y‘Ýk_Y<ßS±È“Ù2“™¼ÍT—-7ÖoôÖé7Όβiè¼Ae U³BQ˶Ëx™qQÃWsþç7uÉùMŠþ¥î'_ð|³€z:‹³Ö¢´,âP÷tL1Z'àUkY¦€÷v,“¹ë¹û0Vl‹òõ”žëG2qÈûûE>¦Kö=²8BšÄ¨›_vnW Îxøa‘ÙKìã±1‘ÜEJò®¸6¿_Òÿt+!gÒµRNÔÔtÅôÕ+âq{“coÒ´tkмxHgÿ5iÏ‹SÙ¾œˆ;Î÷]qOÅË¿©={f…ß}õ7¥—k2 ²ü/WÚcõµÚX»8¬N'o÷ççœÃärFL5øãzæ (ÜÜÈñ\â‘!eš;K>bD‰S׺ŋ§éœÔLütÉr‰9•àtƒê¡$˜Ÿ§H®Go/[…7¯”Ê 1?&7J¡÷uõE®oq­MØŽ‡,¬FÔ3Çæv×Û¶`ã°(—ê[{Ä?j¼®/@±î|f5ô&š=©õír)sœæ¯á} “¯°V?÷_^Xy\æ`€»EM÷yv*Á£ËÐb??:7ç¸ß£-·HÑ4žþJ—áVV¼°œü!-Yh¢Z§éAfZ™.Àíýáò´‚ÝaÞ ËrÕJêÚ¦ ¯ËÖë…gžSÏŽjVx™÷zZä»H.++"ªïzïßÔ-½z^hóüp!¯‹;|‰ëcOSÂ…9­tÂè°0«ƒ} ÛD´+¨Ç¼è>žq›Ñžô4p‹3okoÂé.è‘Ê·^åÏæ6xÎ7*›”uI¦û˜.Ýëqäø¨ïXu·pSŽÆ‡ºäsš…±³¼*›W,(7«›/›¦¢;´ {q{GeÞ´ew»ÁW.Q7móüm6øÃðÆÕ¨„G®­!óðÖʳîkì[qkJ€¿âù¹ŒŽíع˓eæÕØçÚê#V3m}î@>ZߪºúU³¦ûíªœ/’3ºþMéj’þIærøëC]qûXS¾îUÖ6c,ÓǨ\ÞlÿúÈâ§\)¾ñDr…xQ®nüYÉ«ø”ouì\ŠÊn}­•Ñ?á|l§ŽúŽÑVú)/ÿM«™úNuÀ욺Ôb^ÁÄ ¬u1o×x0ãnÓê’*åx™({×3ëij‹ËõKµúšt/õ0aG‡CÞþÏåN75tônqŠÃ‘Ptç' œq²A 'Ò«U³®e+Ø{Á«8D|sâO´©‡Þ2›òiŠjbSí‚'Õ£{ãÖÜ-ÂÉ" ´Ï¦Jíji‘ýÕëÚé‰Yÿº±^"j öv7¯t{ªV:?ÀõÀâPæë†3Ô­Ê?ýË¿ÿÛÿúoÿûŸß‚ (È­Wåz˜¤wŸ[…«QÕT¤ù‰'¬ˆC½rÄ6Ô>à8—“Dq§Û¯ëØ,õ«Õ6ÀG’>ça¹š™À©{ls :ÿý.žêKR•‘ñvïÀÔEC eåÒïÔŠ\­V_³]^_zPMä=üØhé±01.ú{qL”M©èU‘بlRJlMFw¾<[ù'ÂÊYZ !˜áP¡è0°ÁúúZq,eÏ&†8V9¼+Zåt ´=óÞhþÚJY(Õ«ojÕõ nàÀ°îÍ}0.@8r„G÷Ë×ìAëþKÏ*¾³0,‚2µ݆9Ð_o¢Tו{é¥oÍ\DSŠê­ñç"Hø2\ÊZFê´Ç«èËaàóT(çDIÓ¦¬oÅHY®¿62[°ºo‡³Õ…ÃXÖ»'?AéæåFÌ©ŒFhZcÇŒÅW–´YƬÍK«ó?ƒY«aÀcütÐ;ïá!×k÷ë0|x΋Ø{V ExÄT\u-ã7‰sý&û˜R5ô‡T€æƒ+ö—‹ØÚínÿ0Füo"\÷^`39ÎÖï/=/. L´oÏSD!S ?#bưb³Jë  “ =®óÃÑJHíJM5^ȸÕLpß»—'çõfº (5¡x$>Àç—k·û…ø˜›“ë=ú o^ïb„KÖÜ–“Ä…"‰c=Ó_[TåNlÊ'˜ JóþÚÝ5TéÑø]§oi5Vdf6¡Š5Wq¿ï{á¾°aìPé);8èHÄ…óʶ9¥[±ì?æqå¶'9SÔ¶àÆqíòü®äKÚ óqÚóGîÙ ç*ÛO”„ˆ¶Q\dvÞUw*½¨}Ë~Rx¦wIluûÃàCî$&Ö~Óž™F’K{ÂGršW”IÞ‹Ù2{Ž„IæS¢_x•ýòÆó$kk,ksΔ”yßܵî4|ôÿè¡·êÚóã%Ûç¾jÉù%j´7‰C$Ã8ÏþFgÏà})+=äC¨{t5Ã8Q^?'•¡)ØO~V÷•Ô26竚š‹#ÃМ)ÇóIÓZÁ¥çÒߌ%¹‹·‡C(–ŸÊV{´áÝ ]ÓëÙØÕíY­j‘YŸ`èã.)ÿŽ£–º®j©ŒuþdK¥ŸÍÿÉãøéII5Äu1̺{= )ÀËŒ¯½[Ókå09[¤Âþ`k7¯ …ý~ AP…Å›x¼ûÜ(-™"÷³+£àÁæ½ö ·v™û‰µ¿¸5pøZëtØ,~§ÐqouMÅû%·(äzʲ¶×%#OþGy êûXG«$n÷×ÇH™ßå‡sé]m§]sbõEÙ\øß¡ÇFÙ;½P}Wf¹—•:%íY¾SŸ›9…í"fNy»ü¢Lû˜…Sâv¨Q_§9Åí Uó·0:OD¾\tmµ‰œYcvÈ^Z=ïg2'-¨ê°¢Æ¸£­¶ÝWUÞÁ íÃ6êÑÓ™¼OSm6q•½5IWü4šô+%ª“7ö݇Aš¾¥eI„ƒ2Y.¯ò¦ÖU1NqÀ猋Jä÷æY^êîñ>-@Kõ1-ÿù–¨Ô¢íÕ÷ ËÛÞr¯Ê\I› “ìÞax²Û¬ÊÛ®¥X[Kæë‘ÕoOô=‘¨ê 7žàJq‹žúMãÔA·5ŒÊÌOɧÀýUç´í5}Õùz´ýö@—ËÈ’vƒÙÅšçèlQc¶Ôï( 3¡ùÂñœRͺÉ[1ŒÖS$ú@%¥/mG²<ÙopϾ±ÌÇ<È|Ëb–ot¶€ËÀÌo[ë¸Lï‡êNw¿²ZϦøO¥Ê S…0˜ó÷'1ýɧæà d½Ú˜žP˜»>ž9U}ðð<;Zõx*®ñ^wp‚Üþsߥb¢sî NZGìÙyEÓªo^æô>P`Ìr¿Uçd–÷DýŸ×ÔéŒÞ·€SŸ~{§ÎØÅ4kWÅßßׂU Û,"Ë7róW}¾7²ÒÊé«î½l´mµxñž¯E-§oR7?®u=}Bµ“P¨éÖË[FÖôÑê¿spë.¨mx`^Á³ Í;‡¶áÖMŠÛðØ8ÄsLö÷¡“åÜmlji»¶nuÚ†gf“oÃ…ÙäÛðÂlòmxi6ù6\Ÿ-3ž=¼‰enI›bëÝ•²ÜÚÃ]nâ˜ÇËÇŽBGLõ—Xg,§MŸ¼³”ТLŸ"l²"‹õºß—»l–³d65bKøÎf¿D’[_ê;'°¤Ô&¹G°¬“ÍÚÕ¶™ÍÙÛ¸b>‘qþŸE-§èΠØüçôõ—oô »ðõ¤?Lcžê-ó°à0ÉnÀŽóQ,ò/*˜bñ¢ÂÜLÜAˆ¬0ŽÂBã z“Uóº­‡°àù|™]àÔV^Ž `Á'[ÙÎ&åñ¥úk!,¬_·˜*±[.Gè,oF^¯Í½G„j9›g'A®ö>hü𚘼ððÇÜ9Tò§ð8eö‘>€Ÿèaà”ažEHá8S^‹œVøã»À«#ó²à¿}wÆ›:ßÈ÷-ÂÄ'罯¤Sž»ïVâ"<ñ=õÖ¥ÄEè\[;u+ߺW·Ýãã‰Ì·²Ø|/ð÷",w‘¿ópÕ7¿õœÒi5ÿ=jEXû/˜t²ùft`2÷Ö_DÇåTöú‡}"ó¨S6ã$½ç&†" ñÍsp:¾²™K$ÖK˜åë•iŠõô ÏX?²n¾ÞGIýí¼ë"‡":¡».¾×Ò×Ǿ—íFƒý×mQ±a*;®ü(¢r«v©˜÷qÍŸÉÎî??î{£óòü¼n3Ns}Œy¡¾Æ3kœ¾zXñÁO©ƒÐòh <ÀÀy€ó‰ˆäœ$ÿ€9Ž&ùï±â|hû?Ÿ;Fºq2A»?ëqzfLÚc9éÄ19#Iü,ïdñ(³@Ã[WõÅ@‹œ±™õD”劖<ÌÈxó±Æ.”(}¥/Z@µUƒ="ÃX×á½>x]h*‹Gý×µs)…†&ÇõþÒo°¬kj¿C =QËdzV¿CŒ—E°ï°sÙï;ÄÔ\^üñd®~‡˜™kˆß! ŨAý½€†³ƒ\úìgß×ùí KãnfJ×)öMͬFMNæú›:é¦ã.‹²ô ÿõ“·ÝØÏßôf?}ÛËüümgóó·}ÎÏßv=?ßçîDŸÙjdU±cþ}M¯¿þ}YŸÿ}U™[xñö.?ÔØ&÷OÛ^ªnþ{½âiˉײu†Æßè@O;\]?ÁßEœ¶õcÈqЧ¶ñvâk¾=©§…öðOÎþ©}„¯é2²›ºŸ)ÌÇþ.¹p6f÷sËÞu¾~öqß0œjCjÚrÚ¥%7´ô u—ÒÖðAmžíRÔI•ô5-°±˜ãŒ™>ÐeAAÞÊËáQ O*Êõ÷ìãx“]/_Mm¬ ±kx¾FHóþóVt×·º{ŒwWŠ7y•åÐM´M |*;»?ukÿ¼ª§w8–«>Ò¿ª•;}èèP:žØfÙ¢5®Ìj³ç}GK°õ2ä;bÅ"¦OšžÕV×üŽØ¼Ùô÷ÚhÞ8ý;m"͵œïÓç=Õ¿õØâ°oœ¢÷‹TÂÒ<@ïøM½õ¡`°gÌ·»zá·Ô6+çë¹9Aoþ†ˆwEwÊ%߬ÜF^ŠH¿[½-ÁÓ|½Áxºûj8óEtÖš7+‘ù$ܵ{VCسì¯DvV¡´Œb[CÏ#PÙf±;¤¯ F»z$jo%vi¨kèæ+óôòî´‹#÷tßE`ã_wŸxè€}Ò‘ÇKwŽmð4æCè„‘¯dá)'îÁŸ– hŒ^—­sgñÎú‹l¹òME}ñá|8»J˜îþ<‘›ßI›7–€ÐQ C™yw â–wC-¬_¯êȳî¯)Æé6Eϳ^e‡ÆýuÝÂÊCnVïM¹õ +/äú?z¹LvOFVɤGu¥0§GùQ$3êugnðñ?FBr«ø[€ü4‹Êº¶d§ÆÉÖ ;l;E²a r¾†)È0Ø¿‡Œ³Àame z7ÁÊ¡¢¹‡~B™ö­§:ú!;)_=ˆRe•Ï×CþöœJh±<øz)í[¼j¹øk>êøM]:_ŽÛÑ,CJ\ÊÇS ÚŸÓç-,PAÓ ð¦oÄb!ú üg·ñ~«È‚©IÆ&P5À%®ùƒôÒñ»: S~t½| ÑSH–‹~Бèï"¿|žøç"¿_:½Æþ¹¼¤ïáŸç$À[§>$¦Ê°š’̯Ïðzh›—œŒ[«‹Á(x°<äåëÞT å1¿ˆ õ72È¿$z>æïÃÔ¿CŽrqï†Î ©ŒsQÝäò“üÏëZŠ–ŸæêîØáÑP Ó†F°Á‰ r¾Ôpzhíç<"Ù•î- ƒ±/×[îHe[.èœÇ:¨±ªu¾ù_T²>cø¯ŠÕæ,ý¿¦¥ï‚kú1²t-,úú·ã^­nI¨¿ÖÃxüÕ÷:.Hí’ÌççNëcš³êmQ§¦ozÃì¶ûƒ©±—úûå-7ñ’‹Æ[rê%÷ÞA[}ò’Õ8D–¸èÌ=¸f¹›súö‘åéÃßuŠ. ¿”ê[ÇMàüiê¬Êï¢ï·Prýpu¾àýLàs×ùE^¯}9t¿ú„ø.^êò<¬_ùù:¼ë0°(ßJqoÔpù*ŸOµVüõʯÿg`]WRP†MæàcJ­ B+>ŽVhZék©_òñ‡å–š[y¸ïâmäJ3¥‡yýõªš_ì“JM®=äÛg?üw–\+òÑç¶­è/ÜãFÚq>ÇíZΔ#í·GŸßÞ»÷î[¨öÜ£Ïsͳg©Úo>¿í¯ÝîýDÚo>¿}þy¨Á.ÃÕŽ{ô9îëm&í´GŸÓÖó²Tí´GŸÓ^äƒej—=ú\¶ã‹Ô{ôyì3ÀHûéÑç§ýåÉE—H»êÑçªÀ´Ÿ}~:ty ëã‘öÔ£ÏSû [[í¥GŸ—~‚W¢]4ð¹èÀä*k |ú)ž,S»hàsÑ~˜Ü©Ù§µ›>7ýäž5Ö>x}Tg†³3†®ý4ðùéB7>èa„´Ó>§ýäœ=Ö>ø|¶™m¼Ï¡ý7ðù¯ºÎµ Þ^wªƒGD»sàsçºaÝ2Öx;Þa¤òìY²öéÀçÓ*Ü›’#k¿|~­RË^Ïa2м±Åkï¼ýðà0­P«+°Oµ«>W/Å«R"0ÎÄÚéCËé§/FÁôÿ°hzø­èÁ1¢ŽÃi‡{èá1âŽj‡Œ¿?ôèq—!µCÇßz„ŒèÓ Ú!Gãï=FFäiXíãñ÷‡##ò2°vèÉøûC“aÅÇ¡µCNÇßz  Ëž×û4þþЃeÄÇ7èa2äZlGCŒ¿?ô˜j0Äbüý¡̰ͦA¶Ã.ÇßzÐŒØã0ÛáVãï=fFÜe íÐåøûCš} ½è‘3¢OƒmJ>ÆßzôŒÈz¸íPãï=xFÔyÀí°ƒñ÷‡?#ö4ävÈáøûC yt;ähüý¡‡Ðˆ<»v<þþÐãhÄÖo‡šŒ¿?ô8Q§¡·CNÇßz(ÈãàÛážÆßz4 _2[l6þþÐjø’³<Šñ÷‡PÃw¤‡à·è15|E¬i”ãï=¤FÔ¹{tØÕøûC«q¥¹:Ëñ÷‡Xãî‚}AõøûC­=\¦ÊÁaüý¡׫‡ã÷8þþÐkø¸Æ€ÜQÆßzˆ Kgž9Çßzt Ë^³Ž@4þþУêMsXîHÅãï=ІOÁ„ƒ è±5ì­Ü¡¹#”Ž¿?ô8ްæqµC?¿?ô{«X&èá6 Q ç´èѶgà0Ñz1þþÐãm_¼Ðƒt‡^Ž¿?ô`† k˜îhTãï=Ô†ý¸3PwtäøûC·a "CuG¥õ¡¦*Õ™3XŸº¨ì!wÀŸè÷ð;*Øâòi-’Ãø«4o-¦;1õwèN=A¢g`êrFNã>â2~¢CÙÇ*Õ(õE'Ç~xæÜ‡`âÆ\ »\ûéÁ0ŠÕ¿ŠŸpüùtôùd-($Ç_%”ò1\ɾ”ê|Sî]êøðËÔÄ¥;¯2•DÆ×á}Gô4\}êÖÁ¥;uÈÆ_%QðuøÚQ=!OJ®.Ý©C1þ*‰Š¯ƒ¸Þ™å§C0._%’gÝÖïÑ93¹5ÏRÆØBõj[ bÀLD5Ö f)ëþ¬Í{]k»­ôÖ[ ÜþÃó´K/¸¥!W®Å¤o' Æ_ÅŽ<µ._§'ëÿRÙ ®ªzm-eý{&9µŒÇ_ELÙÀ0Ä"u0êÛÝvÕd½x:¥¡íž¥SêHËØÒF#xàAÎHf½¶[ L¡=ÏgC°³ÏZ£«¹¡§Zêâ­¯¢/Íýi×âW~ý7Íú§ÿü?ÿ7u©æb,~•ߺª©ý½áÔƒŽåþ1¨ÿëÿ¡ÈÃ0Î"F…ý‡: tãNV üök‡Â¸¡u:äew綯¯5·fxÒñbøXv¿¥9Ô*O‡ñWñPÚŸ¦bKÓþ:ür¥§´`üU¼”v·[œ^~¹â&’S^4þ*bʫĕ<½ð=üråM$§¼düUÄ(O6ÜBíI/r¿\išâ”uM€²úŽÛÙ8éqÕðË•¥)NYbüU´”õ%Ø5ø“J*¶°‘ã”VŽ¿Š'AiÁ®wŸ´ç ¿\i#Ç)MŽ¿/Cþö¼È'»µŸiËx›Y´Äì0þ*&ò¹F õ¹µÓe¼ÓM$§¼`üUDäuïâΧ.ãnä8¥Eã¯â!Ÿ»Š×•-Nû\ÆûÜDrÊKÆ_ED>wãö52írïr7fz•Æ_ÅBײ%i‡Ëx‡k¹’Äø«XÈßÞÙ åL»[Æ»Û;·ü••㯢!oãö3íjïj̺G&Çß$ŸÝ¹GÚÇïcwæ‰ÄaüU,ä_lN”ÐÎ%xçâ6|D0þ*ò¬¾a»3¡=Kðž5rœÒ¢ñWñg=ñ…ö+Áû•¦8e%㯢!¯z±Ï¥½Jð^õâžê4þ*òªšµ íU‚÷ªš³ 1þ*ô*6¿Hh¯À«¸]QŽ¿Š†¼êÎz°Ð~%x¿ºs,äø;Ð äY;(´k¼kuÜH 8Œ¿Š†|«j„ú&þç}sÊš+VûYÁûe;5Æ_¥€|N}Æ5ýE4-Wí}ï}”íÔ •òÃòñyvçÇ0.þÈù í•€SdüU"ÈG×Ö=|¡ýµàý•²œÆ_¥€|wÕ`ûÆB{qÁ{±ÍuJã¯â#¶›‘¯vî‚wn—ïÔ¢•ì?W‹ލ¾)a;5ãï P"ÿïÅí\KJ>L$Z^yÅýíŽÚ¿¸H¶XJ>Ø\§ô`üUüþ* @¹@¢ñWI `ˆÈž[D*µû—¼ûS¶SƒdüU È÷ÅûåÖ(³}m ]¿ä]ŸòOã¯Øö|õ½*Wíûå–ïl§büU ÈûVDUÐÎ_òÎïÐ:”㯒Øáûl~b©]¿Üt}n/µ”ãï P!ϿΧû°¥WÚÿ+Þÿ-*-»:Œ¿ŠŽ¢€Y}Ö+*>P¶Sƒ`üU ;"Á0ýçj Aµ4Û©A4þ*…qà,Úsþ ªÍP0 8õHÆ_%‚¢!S±ŸHT:T|8 l§§ñW) x`…U~VTéˆPñÁå;µã¯ÒðÅ„öU¨/±`-tP¨pP°ùN-ÊñWiø¢Â¤2¼R®:,T8,˜l§rü$œŸ\ ¤ L›Ö@Æ_¥à‹“Æ;m•::HL¶Sƒ`üU Kt˜>·{ü‹Œ ðÖ¨y?û}™LöîÁ¦Û“îøì·”'‚ÀX:£ÏvñÔCÐz( —xBÞ=.ƒ,©7]eɾ?NÁy‡Åø«Tª]5!VêLh)wÔEYY¿Jgñ˲»¾U·m¦+/oÿ3ÂCÞö7»1ëƒKêïÊÞëßD—L=z¨WÙ6=¦"÷+º‹àð°ÖÞWóÞGÈ´©ê`üU‹[¿ô‘úÝ=¿sfW †3^ññöû%{}T„>Ù§ ],±[ dÆKÆ»R€·iýúdõ¶ÞÎÛ•pü¿g1É­FYlîÖ=Ô¡ Ó'ľUê+XÙ=κ»²Æ÷ÎÂÆñ NÕ¯â¯`‰ÇñW@<³Ä`üUÄÕá.11DÉñ¢ñWñbÀûã.ú ”xüUĿؓñWS@|²m“Ž¿ŠxD¶¦§ñWñ2À{g ÌÆ_E€xNà@ã¯"€xcK,Æ_E,±usÌJ9þ*bˆ¬ÙTã¯âIÀ»³ÊñWkôú/,³æ9ãC8Ë{ÇCqycϵjqyã“«jŒ¿Šˆ¼ñÅŽ¿Š‡œñÎ6N¿Š‰ÜñgÆã¯b"<_ØæIÆ_ÅDù›-29ä0 âŠ<¿Š‰\²ä™Ùø«˜È'Kö)Åø«ˆÈ'¹I?¥ùdÉËñW‘O–ü»¬Æ_ÅD^ùûrüUDä•¿x#¨Çß ¯¼p^YÆ_ED^énúŒãø«xÈ)/î*ÿ@ Æ_EDNùÁñÂñWñS²o£ŒÆ_ED>yé¸ãñW‘c}2ï¢LÇ_ÅC†#¸®µ¬Æß8Œ|ŸMÝ´â|YІðÿîÌñ*u©£ƒ,xhÀA/<6d°gqÐ Ðp!êQŠJÞ>î/ž™0ÅhÊ@+z⠠‚ÅáÂËOZ2º5­è;•ô©²;cF͉ƒ—qÖ  ®9;ö˜®u/Ïœ£GàŒœ÷ÈÈ5qÕ4<Ö5êµá…3îß<Ô5îE0ox$gà_ Ê®}‹‹8Ÿ…ãúRwDá þÊC]ƒÿ7ÊYzËBc×Η:Ÿŵ÷…Òòñ6æÂø‡2þ⑜}?x(g߀å‚ö™}±kØkëŠkàâÓ[Â{Êx°L=¨ÁŸ<”3è'å,ºXΤŸ|.vÿá¡ÜP䃇r6Ì÷x ¥¿x¨kÄOñ!¯Wy“OÌâìù `{–<’ Ó4ÞM𿊢׿K¬+|$Ó_7»)—/l:¯{‹ƒ¤ôÔ(½ìÚ¾kEû|ûÕ5í¸~›9K°ÕéËç¥éîzáý:Ôñ*ß®ßžŽ ø†À~ pÈ€{Ž8ð¡c] p€Ÿœ2àO ¸EàŒ"´`Ðçk÷T+êˆS0œ/.p…À†hÉ !pͽôâ3δKˆælûÑœqߘ3îóù 9ëÐüÐ-ã¬{@K>’eœ}+8‹\ ö=_oÁ5`ßóCÁµ_ßóÏ(ØàЃ!»`£CDpí7 y0×z}Ïw‚sx•Ä‚9‡/KÐxœ¿—%h<ÎÑË5çée‰su•ùÂ9O/K¾ñ Îò¾¾øJœå}}ñWp–÷õÅ7^ÁYÞP PÎò¾¾@ãœå hÌYÞ×h<Þò. Ö¼é]@óñ¶wíÇß5 o}Ô‚¼ù]š·¿ ß†%g€¿Áº]Éào0;+9ü fæ%g€¿ÑjEÉàïOÐ|%g€¿Á¸ä ð7—œ¾£Æãìï5g~ï¨ñ8ë{‡Çß;l<ÎöÞQãq¦÷¯â,ï/ÐxgyÆ«8Ëû 4^ÅYÞ_¨ñ*ÎòþBWq–÷h¼Š³¼¿Pãq–wFÇYÞ5;ÈFÇYÞ6gygØxœåQãq–w§óñæžòóÑ\¯mY¹Ei<•ÎÃC<œtTéì;Ä;_<ÄÐC¬<¼ÈÃûòûˆ^âá½ ÌK=7”ýOÏ+©}žè)Ñ爧8Ÿ#êS;1Õç‹·®U¹ ÷ËÛë+ø¼R­OC¢Ï/‡~ò|~ÙtjMRŸù>ÿ¼6ÏçÐi©Þ ßç§óñpìsÖ¥ò*òpÈ›Bô±0ÏæùZ–zA¤<-^Õ=õÑz»éÁx‰’E(¢|—Ïüþ¯¹s]‰<„S<åÿÎQÆëkÙÊùËšnªõ3Ù"“ü!õ¥º¨íqï®b»-Ò™3÷ ê)Ÿ8ãµfó•o^N6¶ŠÍð·Çt™<â°-QÌO5ÞG*3^Fõ6A»[Ó÷ÛÕ©¦ê@[¡aHY5Ïî¡N=.;u½x*UçjËBÇ«`އ¼î†F®Þ¶¡ÇõVžÝœ ¿|Þ»ªý³»‚Æ;†óÛïÔ…EH*ÊÍkƒ‡'çëÕ¾X2—J.ïâ9étËÑPÓkóû%߆§» ´ûçЧ¼i‡[|áÑj#š—Ά—u½©wß–€Qò©ò–såCöêõ³Å«Ôk%çsÙÔ£éxíÉ‚ÕÁ]êµÞ/ÑK¿gF$Î~Ò¬Öð ¼µª)x¼ÒЇñT“ëô÷åV\uÑú•†`î ‹{ˆ Ð7{wÛÍüŸ:Ôhó^»þÍîÕgÂî"’©ßj*ù!>û·×F éÜk1¶€ÓÜgiwŒC¶ÏËh¬lÙÒU¹¶‘??:eý›º'XM¡ äþjËçK÷9ÀLŠ|Æjâ"³Í,§KI«ñÓ}ÅU¹ºÈSƒág%20®<Ûþ Eu¾ØëtFê¿1°PŠ¿×±W ùG÷¨ÌííñèÕ¡¾€±\I<ŒÛn º†¡1h†øtâ¹°^Þš²»¢f‡p.ÎgiÞ:yÞUà©mχ?Íõi•­þörüÊG_DË£µ ÿ”·A³¿ðA\¥3ª{e7Pƒa>å45Ùü\H†Õj=}ó—¶~€”ùGs>_?×ðxmZ¬Ãa$¯¾#{]_7æþÓ×oFÆ@ÃcQ0‹ =ÂÏ™ñ3üGL½:ÐräaÌ¡Y\åuW/ÍEõ¯þ.ÛÞïQ¼vüªk|>ßÑS$v¬×ô¿=ýc”曜rª ]2Ê–ç|ªàîo1 úîÚT/`B*añÑÜUDñxNTæêJnùGjq™Õ:¤}õ¾W04˜ŽÌý›¼ªO?ZÍAÃ@ú²ãS>r}ÉÐI=ŸŸfÑÿ¹×âÊøèò´émÐT~—æ‹1˜,kJðãpmKùWy7±ÑÄÑÊØÑûÄñ4zoèžÖá×l''ó(ÂCä:û8Å.ë)÷ä)—ðÙâ°®ë±9œ‰›ßÇ¢74±}ýûÎrJ‹´·¨*ß3QgÌþzf§•üy—âÉÛ¨:XÖ€–צ®2°C/9^éÍ_o+Õ².ÝL,Õѱ ÞÌ.Õ¡±á>x?¸§Wªcb hÑýp©…{ª=€H¬ú"%sEJÂá àl–èylî® Ä~¯a„Û¿`Ðø ”¤™Ðð± ùñD³¡Â¶Ûa&8L¨p}k ë[84¶™Ò¶Ügs– Ö¥m·::HþŒ'YÚvû1LÇð–‘ ÆÏ{ü>$ÌÔpÈOžÝ¥,_•™‡w‘W0x-mc¯»dY`ýrÿV‰šêC èWÚ¦¯€ž·-]0~Û¶í—Íó“Vž°}†£"cä®=ãŠW †¯B\ŬÈóêzžE"y÷òÍF«„Aãç !½^PÙ^P\_¨|Ù?E«–§¯jŠÂP%<-«úyžåq†ï«³ê+2EÛ†gñ¼ é`ñ«¨],ŽëÒã°“¶?\àÌNX}ˆ”=ª”íli;ÂùÒõ¨Êžþ nИF&˜U4ôÔ©'b‹+ªá FÔ ~"}=šHoÔ4O¶oü²Lå/=¾áaU¸¬gçRz‚†‡VãÒª‡º¡çÕçñòÈ`êõx¢u³:ð4„çéXo™²gõ0·7DêÃ!íù¯f[· /R)iïHyz'!ªëWMb@‰•1l1xabóBÊë¯Âpj“I1r˜z!•£Æ™M)U_ÌÇO±ML(Ñ æ&¯´y©Û¬lEy'Ê»ë.¯6/sÊ“çÞ%ÆGÚ¨‚¥Ê ☠išÂaªu~–YØÌÒ5ÖZº6Èê 6“\Qr©ò%8fF,ORfS2–©níØ€µxn0¥ý6®SÞ%|ÐÚnߣã™zmaħŽkÞ»¶‰‚Ì~Ͼ ¨A¬m;º¾y70Wfx$鏿¸]äi©ðhÿÑqÒKS©ÙSÚþõà- íxvt<ö)ÙúGG›çx,³©aÐc;Pǵ69 bBZÜq\{{Ë`::Ž{4̹ˆÁ-l::®+ÎæÂ`–¤}¿æ)O&îÇá0¦´˜ŽßúÞk2Ìo,¶ã½j§€+7=Ú¡1p¼·//ÝUpŽt’¶#Žóž™n#Îö« Ï=wCÿØ}3“mûAàx¯µ5ÆÔÔà7 .–ØÍ8îûѱ]Vœ¥ök ¯-/Í•é$ã"¶ã[à¸ê£ë8Ë/N„èøjÓ–œ)µm¼ë¥jÏa–bDŽ›ªm;ŽSp¼´ì÷ž¥’P8NÚ߃³qÔDÚTÎKÛ'ïâêÊe‹ì8êWØ~G} i1'ýèÌø,VßÜ™ÄööòÊYƒúÊâ:>:Œ¶ ÖvÕ·$Õü>8•©ýRCwð;Ì­ŸtËÕ°]aœTrSË4í@Ÿ8^ʧN 'ÛŽ·mÊ÷aRÂŒÓ8³»‹„qØñdÙr-¤ä9>ûqi¸…YÙL×Sß¹I_š{HŸ8ŽZ5Ür~šäå:ŽjæœXc¨É®påxhË®Td5ÙZ«ï´>¯0ˆ‘íc•ãœö§3¶Bå¦0Ø_=Ô“ýJ*Ç?=_%ØÁ¤r7b®/v(Y“Døú¶¶VÉ1YC¤®d¥>XŸ´Ú˨­sÜ¡£²RBã1޼Pð M‡Õ‰¶òÖ-üNÝ M_5£šãAl¯ÇÃFÙ:ñYB9÷m:ŒWK¾­æ{ÆôÛjêűӷÅ^*÷Ç'™ýMIŸ­ˆï?³Jú÷U³Ø!©¾­¸ŠYIùíZùž±ú›ÏèÓ”;4‡ÁkóÕµO½(T_Ç#^½Cï1ôÇI„‡ƒÚú»š½}©s´>úüŸþ¿ÿúßÿñÏo‡ƒÕׄj§Å$ÁÃ褨С‹&f°½¦«f~˜WÍSpÒÚ‰ò_â.T¦íÛ0-z©ìÑyÇO¨S;?oEÇ~ì>píÀÒ íå^}i3ìà¡ÕÇ#þß¼Ú×­Ð÷q<º¼].d?øéPX¡ÏZçœU_£,§0/˜‰ŸY‡µóÐεf„u*ížz°ÐI­°Ï¬ÝS+ŸÜt³:‰P›ï­M óyÌT‚­ /!ÇJèl†}Ua¡“Z=Uˆ—c«å‘;N<ë¡õoÛgS¾®b«‚>©Î'@cY¶¢[²A~&‚j!ìá&ÌÏò)|ˆéìÿg÷xvM/ÇUøàIq¾I²ë—LL£Ùý^ |RM-ãÙý^¶dOfe¿Õ®^ʤžY•þVï‘fåíã,½•&ÐI­°*Kå<•äåÊüC¨“®Á9Å¢ZOöú~47¹ãÈÞ,s/ç§Ö‡ß~›7Œ çµ—}mà1¿ ÁüëÒ½Tÿ7t±ã÷àkÿw4À V_9¯àÀ‡ XŸY±ÂC¹p}€ÕŠŽ tÌ U¶ÂŠŽ tâ¢ûæ/œà”ëY÷ O øÉ…Ÿ7¯ð“Ï\xÛX žh{,ª¡3$äøêÕe2C8 —É 4{¼þh¦hòŽGéwñxºÔ0`¨öˆ\ÎÊ1¥n‘—z%ó6&í_ZDGnA=“&רC Ê¿?=þ׃ÅßE+¦3cñˆsh – OæýÓ5¥>]ZMB°DˆËœf{*šçFß)~S-öÔdœ?an’—Í£TiܨaY¾ íĬhÁŸò*Ç ªÔéoµ”æÑþ¾éBÈ8âsõÚ¥ÓwÙGc\2Nùülø“c«]ÿÀd .Ð5ž­V‰C“]¬þÍéNXæ7Ñ¿ðü&Ô§Óë ÖúÑÐöø¦jš2L܆ê=;öP¦gOtuîݨ¹äv;Ã+ZHœ••Í—¾é³u¹.xàÀ0ºÜ=›»5†üÓÿçÿñ¿ÿõ_þÛÿP+o'Õ7žìêêÏ2h lÞq8ðŽ oÏŽþÆ`tù  ?·°á]>ˆêO)l8¦@—wZýÁ„ À èòLaðp€ ‰ÒAš 8‚ éOˆ8xÒ7F¹‚1uý1çßIqpÅ`-˜Y@áš3»…kÉæNÁLl צÁNáš³¹€S0 8cØü -\›6p fð_0ÖÍ¿ÐÂ5ls§`p ÆÄÁ u­Û\À)˜œÂµs°€S¸vn.àŒ®ƒœÂµss§`ì¼pí,à”®› 8cç¥kç`§tíÜ\À);/QìË2¥kíé¹¹€S2 8¥kí`§tÜ\À)™±]éZ;XÀ)]#7pJf†[ºÖpJ×ÈÁNé9XÀ)]Û 8¥kÛ`§tM,àT®I› 8%cÒ•kÒw‡bz*×¶ÁNåš´¹€S1 8•kÕw‡Bêãš7XÀ©\«6p*&†W®yß ©kÞ`§rÍÛ\À©ó®\ó¾;R×ÎÁNåÚ¹¹€S1Á¼r þîPH}\Ë 8•kù`Gº–p¤kð`Gºvp$ Ý`YFºFŽhà –e¤kቆÞ`YFºV®Uƒé3XÀ‘® ƒéÚ0XÀ‘®é‚éZ¬wGºv µk·`§ví,àԮ݂œÚµ[~§v Ö\ÀL'_#˦ڵ\ïNíÚï£ã’L_W»&üÇè[jf‰£vmùnkfW»FýLjˆ5ÓéÕ†uOŸ©K^Ø<“š[t¹?:uæÀvºTmØüŽõ•Ú0üõ•šŒ×†Ìë+ïÝ:Ö³ÖWôôÌºÌ <â¼èîÝ­«»¥Câ¬áxHà¦ðÆO°æ™¬x p€OX8@Ö-‡Ò^y`åÏíl´7ã|Dc®$ÔcÃüø\–* {¥²×’3òùÌî&1êÞ•Ø;+VsbS´Ôh„ÃñâÈc3RD4®áqd­ÓŠ4žÁ¸`"®Ã±î“ 1DBr$» ˜Æ™O¶¤Ð&Ñ óÉÙ,OdÇ‘b›DÃ[c >ù’R›EƒÁ'[”½ÆSog ²£NL=ýƒmra“¨OðMn•˜úlÇ’J›D}ó“}¨Ê&Q|qis¨§}ðï©¶YÔ¥>¸g²ÚHÔŸÖ…j“d;TBê“{¨Ôv¨„:”dI¶C%ŽC±Õ³ý)¡þÄrlwJwRŸé­óf³¹íY ùÖÍCÉÄégU7f5GÏà|äLªü¼úìÐlœ˜Xƒþ„zç( :ø’²FŸP÷Eï¢EºìÈhÔ-„:¨y[Gë ;Qù韖ì˜ÀœbXOÀO``{—lw>ªÛíÍO`¼#¼Ê31pÆy ˜ÊÀ¶¯Øw:©»mÏOi†ö{4-깫 10¯=[NhøÒ{8;²oVs¬auBÜ(‹š…óªFs§4NuÅÍÍŽÕÆ×è6wê, ‰ûÐb¯Íu޾jÞtØêFïµv6„§êGÖÒÇú[Sõ”ÆÞQºPÀ;GaË…R<=ÂÕØ)ûê=¤î4ˆEà`ÝÔ(Â~ ÑÇ"Ð$ÀsQk ’Òx>µ:í¬oŽÂæ˜?¥1}¶Dä–AáiÖiXŸKðNªÖûI5(Œø óág€®áÐð®eQï°¾¤UÍÎ?¥!}ÃÙÃX åZµsÈ:V5ƒlJc·EV=ßîĈZFM#7¯EœÀz¢q[[ ZˆˆXïläLªÎTQöP“_’>[zΠwÒC½VÍN·'Q³ß:Ñè¼(ã¶­Y˜Å™6¦z p¹ fZÛ$ïÇ'v¸"±gΜ܉®o|³1”Ùœhtþì~²« 'v^ðÙ}ŠY‰†c­ÄMóNìT@IÉY‹ÞA‹›(ØÖûìšY‡ÆÔÏ×O~]!cÍôó¥Ð“–3ÃVZœk”JjV¢ÑsPâž.ã›üµ< —â!$÷î26ª‹ë0K\Þ’Z‹{<Á¶Ô(6?af„*Úv>m°¿÷åŒÏÞÜz|m1øÓ€“ê I舄¦sÝX!ùh •…7©He9ªžó?ÿÏÿúÇüó[$õÆæÑ”kžsÃg!Ò{~t@車k`굋\åÔùk¨‚ÊÅCSp³bŒÕm¬`œè{+"Kp©akØÝ­W`ÔO×ñõÙ½f½éMÉh¼ä<æY$ŸŸ¯Eò„$‹îùìn¨–‘Ÿm"Ü<Ÿ/>ÕE¸y>¿ÒÍó9ƒÒÝ<ɧ.͇ÏnšOÇgm 7ͧC¢n¢OÃç 7ÓG Q7Õ§AP7Ùç… n¶OÃ'{ 7Û§=ó)D‚ËFCpS|ªlÁd¤ñ•-˜Œ4€t-µ™Q…kªÃSªÆZ7­XÇá<<p>ûµHœOD-Rç³µ ×|Ïéšï ]ëýú䑨,x)LºÚt ø ™t5>ÒŒõò Pòò×û[ÿ|tïò½!`MÐÇ õB…&ª€°È„õì5*6Q—¯/Kl*3µ`w€:Ùb°92ë 0NØzèäQQõJû!`±y “¤XÔĵ‰ã¯u8V–±]È2¶€,[MQY¦Ö#”eiì-ˆ@ÙvZ¾Jmè“íf[0žÊ²±UÌ2±;j ËÀî¨^–y=‘AH»)Xm·¨¿´Íë/ˆ;R›F@ÛÊÊ2³ßÙuCZ±Ý Àfåž+VúWñTÿݲrd¾`›¾ÛâGºÌwl#ž?áÈ|Í6á>üŒžú2Ÿ¶xþ ï#ü®ÿ&û¿kã¿™>2ßµMxP÷£¶ Ï÷êÌm´û9ۈ翯=ÖÌÑÏz¬Ýï5'p†‚Ûð†ÁA äNe™2r8¶ o¡ 9Y3VáðVËþÙü^–%ŒG8Æ ‹ì­>2íá×Ëk Úì(™há7 uÑÒÙéX3öE˵’«Êï—j+Ó×ÿõ?þåüãŸßâ8ªmzÌÐß›¶’óÐ5IFB¦¥-‘0}y麫CNâSj“S®|u~¥¦Å‰Tý´P§{éu®^;]Û=^` Œ¹]œ"•ufÇ鍨 £Ž1©ãtÔG1£‹Q¸XçsœŒžá“¹„ VAÅzCkFŽØ‰KàáëΚìDIp8ph°IfhÀálÀ¡iÀNL™t ‡³‡¦;¡e–AÎH.8• •ìbÍÅ–¡íx§ŠãZ»VKRcÉ=¬½K5qÕ•Í­¹·kïJÍÍœí¸ŒsÞž™Ý¨ (›Éù.Ùuš¹§@Ø\Îyí]¦õÕÚñ2ã\×ÙUšßnÚ‘-ãœ×ÞEš[*:T6•õ]ºk4¬úI‹Í¹/³K4ñÕ‘Íç<í -O“Gà<™ìͶmgœ'÷²|Hw>›f•mÝëÊâÊøcÚ«ËëÊ’%Ç™}Ú`qÎÜ¿š§(zv }sÆù³ü«”׫µÓµ„NjæœSß Ç ísƒŒsjñb'û®“RÚM.8ÇnžÒâg§ƒíÙ‚ól{¯eøõÑ6SÁ9vÙÝ]׌ö-4à»ìYº'…}Pk 8Ǿ =œ[çå…™Ê9v9´3Ó]¬Ç)𔡗˜D9¿v\uìHpž~•5c3•´×fçßÝÍ»öV“äüû&«¦T=½KI­9Èksf÷°ŠÌörÁy9Ù¸]¸ yjÞÉÚ9Â$’<9ëåÌÆìbôbôœ›»±Kh/ɳ³žîl¼.-Û¹à½å_zv´÷ý w3e\pEKýá¼ÔCÓÂÝL™TàR8/õ‡Æ(µp·SF¼ÔÎKý¡1`-Üí”Q.õ‡óRhŒ] g;Eoñ±ѼÒoîòÎFʼGÈ×"šú#cŠT8û(£ZçæuþȘ,Î&Ê$—ù£y™?2¦M…³‡2ÊÀUþh^åŒ Tál¡L*h‘?šù#c*U€ Xd¹Ñl¹‘i¹î>lç7Üh6ÜÈ4\ge”ÁvÍv™vë좌2Ðl£Ùl#ÓlM½·Ì ijٚÛË¥}ÕS^åSõ€ªÔÛ/Ѿă˪ ît¬Ÿmg5ãÌæÀ³ãDÍøßƒm;NÔŒÿ}°íBì“ñ¿®]jbŸŒÿ}pÏWûdüïƒ{¾šØg½{…Þ$š³1žp†FRFoqt²š5<fº¸ at,3M >•÷ªËéëÒègFZ5ó&¹ã"÷x]^n-&9Y舧þï‘ȼI.XäÚ»„jµºí½Æ@yQÓ´I,\Ä„a©T«4lv‘Q„I%šUš¶iϬN¤»Ç¹bó}£³ØÄ›äâUÎ~1­S©Î|ÐmxHf•—±Žmˆ$ê'ÓJ¶Èk<‚Ki¤‹!õ¯÷׫bmá¤G|z8¼DfK.ôI÷´èÊwÁ¾ÃÓ,%t£•DOÓ&±lëÚžm{±4;©–&L*bQénX¥4zŸEE&•bVy̓}wÅüçà9ËŒŒI§\uâÉû`¡#·jíñÁ™8 V†`÷h`Õ¦ªÓæ3q\&ÈçῳVÎrÔÀFƤS¯:í5…rqgIuÚ9‹/<.AëÜœY©µˆBs^Ž«@Ë·\|Ø‘i—†9.ñéýóZ·q zäMráZ­Ç«âEÎá³<°µ‰“à¬Þ›kW•Ñc.uRØI 6ί‡àý¥š_q˜ •zŽ!0i'¦öMÊgLJåE\¥M™©ˆÔ,â9×Z@ =láOÊKTƒ‚›Ân†ÌVz²fŠÍÏï¸ÚŸ”—0÷þz¼¾$0z6¨¢\µˆ…?)†r×ó5ª[-oÌ•ÔÄIpR²½XÞ= ì#cÒYCß`-ç@E¸8 Ê#eR’«RwçN éUôÙ4cÒYb^/ÕŽœR<7üô2l¹™8 ‡Up4¼íÅë¨ue }Ò]bb?ôMüȦH—8Ælfâ$¸GõÅ5‹â ŒmFƤš:ì›XuN®Îü&‚%’µ±)¢2662&%&V²ç«LßÖå´EAöË-¯â#^™1VP­a-XÂ,Øè°Æ…`‰]­h¹ö,Õ.I¬±“À²ÚŽ©¥DtdL:K€ºˆæÉ¶D={Ƽœ6댌Ig GÃ\É:ƒÁæ²Ð'ÝÒÐeëgL‹"Gj­ß•Ša&!Ùw^-¶'¹ÈLœ—àtoÃg¥#Jð6ØÙ>såOÊõª ¢UÕÝŒSáÁPb_Hô¶®rsë‡K@*¾"!×PÍZƒ% 3ʇ¨ØÍ4 {×Ñf‰÷/ôI7\u›†76­ºtÔÎ&Þ$·Ä¥âÕ÷ŸÀ<’¹r:‹”{ô™>éÆk5‚‹º–’›ŽŒIg Wùþz‚Ésuš­¢Xf†´‚+R^âØ]öl3ª@TÞUc'Ó*Ð6.k =¯ª£)“R¶>äãÅûúi8ÐX4R&%aÔ‰íf*8G“ÎÔ¤ü‚6F4Ç4cÒY‚X1Œ¹Q•-:5±(͘t– vïb«9ZóÑuäMrK+†èÃË•Kƒ¥‰2)-!ëÂö†UÁøÒFkœêZ>DTËÑ÷¥“Îq­ˆÇtŒnÀQ`èàç)Ù‡ZŸj‰Q7=zdŸKÚÃNâg3qŒ Aþñ9úx#cÒ‰WË…5ÇuìPSËü©S%«Îãõ+¤íG8Bš2)¥«RÛòm.—Õ‘7eZfOªKhºéfdUë7kžD'â$˜­‚ìj“V£ M·u)¦@âø¨bHèû\ø“òªn’]Ñwº£±“@i ðƒÚI ogâ$X­‚h]ac5Á^Iˆ–põ)%d´È‘(12&ÚÐá«¡fÿ4š<^¢Öç‹íÛe2þhKi¤²Ä¬GóDÍ$wäši&N‚Á*ø`-A¼­[P«Æc¶„x‰[×]P·ÆF"2š1éD«Î«à²r ¤ztå<ÙDœ—¸õì”[rsl’U`èÏ’}kËú§nì‚{ }Ò]ÂZß«ZæŠV¼#í¢®˜ü’æ¾ÛšÌuxKI2HïHgÓšŸxd$w¤²iÉç[Ë€‘Ü‘Å6JêDdF4dDË¢:-™ÑŒÍj¯fÃ…ÆŒ¦Ü©©R–É„‘¬÷JêfF4uE“ù¾ZTÚ˜)œ®èŽ”_-Ú6¼fŒæŽœßÑšøg?_JväþŽ pEÍz>•ìHž|J^yË:ßJväO¾Õ<žÒSoÆÇ’‹yÅgKvä OÎV{µ§KöÆZudšO›ñ¾doÌTó©sn¸7üj7ô‰sî¸7+wôŠs~¹7 'nñ}pͽqy”þ z»¹çÞ=ÉÞ¸èÞp=Ë£^0nšî ÝS¨G €§¦ëÌûîŽ9‡De‹ë£ú’£M\F«Ë‹ÊšDâ}vÛ”u}O<¸btJúQ'§ÛÄeÈÙýáxµ“–¦Ë ó^2”T7BhS–ñc5}uK²ßu+T6ç´r¦ƒ+wø)È£e†@ù*6é¤ÎËT¶yqÄ(c^Ã2I]¥.²é¥;Lje¾%Á‘ŒåÕð‹÷ŽÊTJé”Òv/&+I‚ÊÈÇÚ*eR™J©œRž¢Q÷a² 5>DÞ*f–™Ê‘N97Ù0‹‘IroIYûJE¦2–qÙ=îÝÃ>%`)@ׇZ}Í-Œ#æ¢TÐ0Ë2ÅÆ‚NëBŸx·{$"›‘3|’Y¢ ³½<˜«d–]åÓqn¯7†%CרIÀX×ãJ¯8úB^ÓAXrÁßòš Rp‘O“Éû{1“×Õ:–\1äÛB^"Ô™%§ ù¼—PU'XÎÑ7!ž¨ð“Æ­ÞHáUz7¤ÖÝÚ_B쯞ÉKk9òhz„Ü.äÒ0=†>™¡kì$Pg$¤ŽÀyX¢É¡¶ëÐò&ÞYrÁßgr¶¸þ|Q®mAj€’•Ó9‘‡gÙ£Ûpï«Æê÷| *¤q[5Öì0^#EçUc‰OVcüHÓx®±aŒ7(;ŽGº>«°“À Xgª8úB^‡+,9bÈÕB^‚Á;pc—ü¾—(Pß8rbŒ“–^é6“¿oY²dÈíB.Œgè“çÑý…VßgK¯8úB^ü¾dÉ!C.òšFÅ’ †ü¾ëµÚö0“«¾1Ê\Ÿa¡Šâ°>‹O1DŠ¥£¸D‡Í*:µ£Rk6©W«@‚ïŽbh4 1ÌFÍGn&Mj‘ÑxP-Dj%Q[È¿jN­l™Äh4¨S ±w¢¶î“.uê<PÁQMìTm"Mj'ªæ7‘E•5¢0±%vêkÍz×ñìL^Dù‰s$ÞW56±ºgc5n«ÆžÎ¼FŠ4ΫÆ¥‚kÞt™e'${ã!–Æ”†~ÿ¦²C`Ò®]m5ðe0vÁ¨ëtÎth­—IN±NrX ¹]Èæ$‡¡Ý•ã;¯¥­Š5lÿcè y‰RwnÕD?wLGØfò”ZvÉE2äv!'Æs3ôñ¹)]c'5ú°¥W}!¯c–\0ä÷…¼&üá7ñgOvŠ7÷ñ‹uvóÛž ÒäD^g7yl{Bn²9»aèSÛ»““E`ݰ¥W}!¯£–\0ä÷…¼Žr>ümïo¶}¹øûû[wAƒ-ÕaØÕÐàIÂËðªŽÄÍ”X¿Øc« ï;’sƒdG,2K(~sÕPÑ1%}Á€œÈë8…[G(tpRÎä%”xxCzr޹åÊ1(³sÕ(œ#:;k]©“èJww_«MkÁ´5Ëyk¿\—k¹½ÌJPªy¥\¿OùD}sJ,b@Nd#íÌÓ>}Iñ*—€p¹s%Ëú„|ŸÉK@hÜÕÄ¡ÐL‡›ÜÌK…ëY2ïï\ÉzÆO¿>zŸÉÆ”ç­÷æÉ®"ÎÔgaLbë²ÇE–”˜ãûtBX-!áÊ:#7k¼Î.X-ÁàÊ6`É4àunÀj ׎]®)g£¥Öo4 «%\ÿB)IhyMW,Þú›yOù8ËŽ~Z§) ÖÐÖDóÛšEctX£æ4ºEcÍ•¾0ztÑ„ÛËL^ó¤9CÐý2ŽÊ÷Å$ÖÉ«3^‡u`ìú¾j¬Cn3l” ™Ú™¼D„ž#ërJÈýB^"BÏ bM&Û~ UKDøàBhœ2–ô1‡Ðj‰ÆØÎn´ÅÉÒ-Ø»mÕ„‡]îØ~­Ä'ÎÁ¢‡j‡rGÚŒR„Ѯ⎤­ˆ3°\Í 3J'`¹’;e´$Ì¿r%w$È(I˜~å*îÈŠÑŠ8ûÊÕÜ‘ £4=ÉW®æŽ$¥‰s¯\ɹ/ÚŒ¼©W®ìޤýô[™W®òžô´'m$^¹Ê;Ò]FÚÌ»rµwä»Ìžµ‘våjïHv]l+ëʕޑè2¹ÚFÒ•#]{r®\ñávGÊ•«½3ðîȸrµwàÍ„+WygÞ•oåªï ɻҭ\õáyg¶•«¿3TïK¶råwFíYô„ðÑzoåA¯ 7ÝÈguÎä©ûù҇½e€¼uoPõQÏ ‡Ý×§ËDÙapØQ}TF"‡5Ε¹rcã$מëø«èpÈÿ©üõþÖü÷üûÿã?þÛÿú¾ÉÿßÿþÇÿüÏý÷ÿù&þ/oõ¿þÇþïίcU fTµ—yýoˆXò‹üK Óý¼È·ò!Åsð”·‹‹É‰Kñè²”wÍ4nÒqˆM¬šºnÊ×õùù&žZ¦ç¦UÇRÐøì^ÏKýR¯í:Ÿ¿ìp"›ó!š'. ¶Áe×Ö×f¾QÃA'nCˆÇ U$µÑ—îZ ySßÐ Ì`l–^x{Š~†ŒÔjx§F }—b¾FÁ¤*ê¶³þÙ\¯_ÚøZ^¯Ý‡ºÇà+VÆøvïú^öý’‹ç°¤Íºu•ìŸèÔ6XÝHÿêÑßx|E|DÙY÷³"žñÑ=ÞÕEßÊ0*YŠO#½Ô&Ï÷û£%ð£*t¬ô)owó^#‡B¼ ÐN ¦±Ý댊‰éû€¦QOèï׿©Kêúr@"ñÏ×ÕŸ¸Á%ºR¶°>gJ>¯©5#uIcÙ=ÔÕë€R°öúêklù¸v%7ŠOåÚæÝi­böux"ÕÎëumMÒ¦«¯/OÓ©^]ɃóU+ð‘wðôÄ’¸Åà§ïC·¨Äã]ªÎä­«uc]×aŽÃܶ­sA½Š$¾Ñ݇8ÕxÚ‰8HWôÏÇ«ôˆsTò:ô®£’'JPyÐ5 /š8G1`ß½±C4DÝÆ¾NÎ 8Ä-ÎBu‹Û]¤$~q }ŒºÀóþ! àJ鼿‡¯—‘µkõ|µãºë ¿ìšQ•âu­0!dxýÕ_*fè2ߥ¼+¢îÌUèkŸ¢A%GÔÎþÈkw¿-W¼9„Ø-ð&OUâM ÃqTñQ … N™W$TCÀ¦8¹Œóðר´Àrj:¼H¿ºa$Ú¿]Å;ªq ªéïC¿‚ ‚¸¾âÁ†ë’ºs«îqz¼ÐP¼&>3+wô]5qQë;}»aø!=õ#îSÈáWnѤ3+òÌ„²º¦3!<û‡Aú³f}׫ºÜð­yò¨£ú‹G6Š…6èΣ"%A½bKŒG¥ªv²`Ô,³Q bÂFñ Âj•êÕ+ãQ’ @™µëø¦8Ú&*v´MŒ¯×Ѷ0P­£mbÀ(޶‰ñ6q´ ìã•_ÿAÙöU/:¦*v"0•h A`À“ŽÅÊ•ÇÃ* Õ³ ­Þt¬ Œ¯\p 0u$(¾jmkò¨ ¤8Q(Ö¶¸8U@LUŽ˜¨±8T5brÀDbr¼…Äà€ÄÞ^ 9ˆ½½@Õˆ¹½x±¶_µXÛëÁ)އ{ûäŸ4$æö %æöÉ£ˆ±}‚'%Æö‰ž4¥8f›Û„Ë0#0P¨ 0UxÒ’À€‡Åñ0Ia XÛâî Fã+ ŒGÅW-²ííŽÂ`Q‹) k›Ü„Á(%0P9bq nÄàPÕˆÁ‹!)"LJ¤ˆØI±7’¢šâXXLì „¤˜ØI118>$ÅÄÞ@HЉ¹¡ÇÇÃH„CC¸8¥8Pì‰âxXFaàiÅa\\8@PÁÒò¸ÊÁ*’® åâšâø &ŠãaG ã«—Þç’Ðò¸ÈÁ’I‹Ft 5ATAj‚ ~ÔQõ¨ ƒI¨ òö’Pæ’PûQ4¡öÂhBÍ£ µ>HSj}(’¦Ôþ@(M©ýXšRóÁ4¥æÇGÓ”§©m|-ŠiJq z'Šãa…ê ŠVšÇ•”\ k©¤8PÁšâXØé@a|õNG‚ÁåP_½SHq<,¢0P½˜à€—Ÿ¨ù/?Qóã½üD­xù‰šòòµ?àå'j~ÀËOÔü€—Ÿ¨õñ^~¢Æ¼üDš2j~`Ø”Ùæw¹°‘Ê )އEÆ?oSYây\êà@É'a#Ë(TPP+( T¯$84Ê*È㤃%×–8P_AA-¯Ÿ ª'¨‚€%¨‚€%¨òKPûKPûCKPûKPûHPûã‘ ö‘ ö‡‘ ö‘°íÅ!Q_jq 0u$(þY‹€À@ *BŠãa…bmËC¨H T.%0u"(P5Ûè†Xê&(T® 8VR¨žms(BÄäPåˆÉñu+‰Åª•Ää€)•ÄäxK*‰ÁPWƒ‘®$öƺ’˜ˆs%17æÊÅñ0bp`TV{±°$æÆ‡Â’Xˆ„¥ml5\¥$0PµšÀXTu (¾j•ml5ˆ U@`|ÕªÀxTDP j¶±ÕÀ÷ª„ÀxTJP LÛÖjà.UF` j‚ÀxTAP j%w©*ŠãaÄØ€»TÄØ€»Hbm¼»HblÀ]¤ml€»ÈÀ@Õ"ãQ1Aª%–heJq r'Šãa…êÙ÷x³, T®$0U¨šmo@‡+kã«VŒG НZMì ¼«šØx5±7Bjbp „ÔÄàøRs!¤&Ö†BHQ#ÖBHM¬ „šXBjbm „ÔÄÚÐÔ£®)ŽƒI]ÅG¤#É «øˆt$)t‘Ž$‡®â#Ò‘$ÑU ÒI]ÅGš#É¢«@¤9’<ºŠ4G’GWñ‘æHé*6ÒI"]ÅGš#I¥«ÀŒâH’é*~Fq$Ét¸Ž$›®B…ÖÆ¢H6]Å®#I§«À«' uÿæIB]^<ɨ«øðv$9uÞŽ$©®bÃÛ‘äÔU|x;’œº „·#ɪ«øðv$YuOàô$©î œžäÔ=y§')uOàô$£î‰œž¤Ô=Ó“”º'rz’T÷NO’êžÀéINÝ“wz’R÷NO2êž`¹áHRêž(8œº'$©î –Ž$«î‰jGLUŽ˜¨±8T5brÀ”HVÝX18`H$«î ‚Iª{‚ B’êž|!9uODHNÝ‘DHV]…†$«®Bc’VWÁI««ÐèäÕUpø@Rë*4~ ¹u@äº Hv]…†$»®c’]W¡AI¯«à(‚dØUhARì”L:X4à IvqDÔAý¨¢êQQ äí%¢Ì%¢öBFDíÄŒˆš4"j} jDÔúP؈©ý¸AÒíZ7H¾]‹âɸkAÜ w-Š$ã®…qƒäܵ(nœ»…’s×¢p@’îZHÎ]‹ÂI¹k‘S’Œ»9%ɸkS’|»9%É·k‘S’|»8eB8eB8eB8eB­wÊ„pÊ„ÚrÊ„pJ’nwiS’t»ÊÇà Ï[R¿:y$ùv *( «_E’rwi›“Œ»ÇWdÜ 8R¨ÙñoQ¯ORîÇ‘=ÿÄ ’r7à@¹ÔA@H©‚œR äßoJ-½^j Є;àG4߸M·ã½ˆfÛ'¢ÉvÈ5h²ð šk‡ƒ&Û{§¹v¼¹ÓL;`í4Ñ;Í´¶NíЗæÙ— iv¨r¤Çu#‡ªF ½{bpü«§ùuàÍ“ô:ä2$»®](I®kù”äÖµ %©u-ê?If] ºOšXwnOóê®Àïi^Ý•w|šVwžOóê®ÈõibÝø>Í«»"秉uWÐ+Ò¼º+ˆ4¯îʇ šVwq‚æÕ]Q  ‰uW)hbÝ… šYwE'Çè¢b©C ‰uWÞh^ݘM¬»‚P@ë® мº+ µ> µ> j~ Ôþø ÄcAíßA<ÔüØ-ÄcA­ßC<ÔøÀ&â± ÖvI~ $ÁE?’`‚I¯C±d×]Ñ̤×ÁIÒëP„$éu0@’ü:I‚ $ÁDG’_‡‚#I°»¢’ac(I±C!”äØÁJ’쮨vÄæPåˆÍº›CU#6L‰äØKRìPˆ%)v(Â’;`IŽˆ¯$Å…W’b£kE Ž6$ÉÅV’d‡B+I²‘•$Ù¡ÀJ’ì`\%Yv(¬’,»3«$Íî Â*I³;óa•$ÙAX%IvgVI–Ý…U’fwa•äÙQX%‰vgVI¢Ý„U’hwæÃ*I´;ƒ°JíÎ(¬’D»3 «$Ñî Â*I´;£°JíΨvÄæPåˆÍº›CU#6LŽ$ÚÅ‘D»3op$Ñî ì$ÚAô%‰vg}I¢Ý™¾$Ïî ¢oMí ĤšÚ“H¦Ý;ˆI$ÑîÄ$’h÷ÎÇ$’g÷bɳ{G±†dÚ½ƒXC2íÞQ¬!™vï|¬ H¦Ý;k’i÷ÎÆš€$Ú½ó±& ™vï †$Õî!É´{1$ ©vï| H¦Ý;ª±8P7bp¨jÄàøL»wÞ’’h÷ÎR@òìÞy; HžÝ;C’g÷ÎÇ€$Ú½³1$ yvï| HžÝ;ˆ!Á‘ÚC’iw›€¤ÚÁÈ& ¹vg~hd»3Œ$Ýî F#I·;£áH@îÎ`<Œ»3$åîÌH’swC’€$Ýј$ Ywg4( HÞÝŒJ’wwFÃ’€dÞÁ¸$ ©wg00 j‚ ~ÔQõ¨‚¸PP ä 0 ì/ öbK@í—€Ú]j ¼Žýø8öÇ’…wƒžNòðnÈÓI"Þ 90IÅ»!&¹x7àÀ$äâÝ _’d¼òK’Œwƒ~IÒñnÈ/I:Þ ù%ÉÆ»¿$Éx7ä—$ï†üäâÝ€¿‘T¼ò·ˆÚ𷈚𷈚ïoµ>àoµ>äoµ?ào$ïòèÐI*Þ€åž(އežWPÏ$OAKÈã*ªH¶*þ†¤ã 8¾‚$oÀñ°#…ñÕ#Éx—¿Ðdã) ¨`äy\ìà@© ¢RD¤6êGmUÚ °¬˜š oX15@`W4ö„4!õ„4!ŽyiFê2iJê2iJè2iFê2iFóÒœ<Ø·Ò¤<Ô·Òœ<Ôe’œ¼u™$'¯]&IÉkQ—IròZÔe’œ¼t™ 5@d.$‚„æã!s¦éxÀši6°QšŒL”&ãñJSñ€ÒD€!‘¼ÞHÞ0$’€÷ „dà}!)xÈ@HÞ*õD`<*#(P¦mmàÍ“¼þÍ“ü»ôæmkû‹$à}‘/IÀûâ¾$ï Œ{IÞ –$ï K’÷…z~’ƒ÷|äà}_ )x_¼/ ¼/à $ï ùIÀû¾@ð¾/¼/,Iúݪ±8P7bp¨jÄà€‰Ä»/ÞBHÞÝ0’v÷fÇ$éî LŽIÎÝ?7& w_`jLòí¾Ð̘$Ü}‰1É·ûâs’n÷Åç*$Ýî‹ÍUH²ÝŸ«\»/«\»/>W! ¹v%ƒ$Õ®a$Ú•|$iv%ƒ$Ë®D³’eW¢pIÒìJ.I–]‰Â%I²+A¸$9v%—$Ç®äÃ%I±+A¸$9v% —$É®á’䨕(\’»„K’cW¢Ê“ãëF2ìJP5’aW!)v%o!$îBìJ.I~] Â%ɯ+ùpI²ëJ.Iv]‰Â%I¯+A¸$ùu%—$¿®á’äו|¸$ùu%—$¿®Dá’$Ø• \’»/4l$)v_hÜHrì¾ÀÀ‘¤Ø}¡‘#ɱp f’,»/8Æ$yv_hI2í¾à(“äÚ}¡a&ɵûBãL’l÷š$Ùî 4I¶ÝÌ‘|»/0š#ùv_h8Gòí¾ÐxNRûã߆¤æ^†¤æ‚¤öÇGIÍ„I­ÅI­ I­D I„ IA’ÚB’ŠB’ZC$ó®Eaˆ¤Þµ( ‘Ü»„!’{×¢0D²ïZ]Hþ]‹¢ IÀkat!)x-Š.$ ¯EÑ…dáµ º$¼E’…׉,ÉÃkÑL–$âµ(\‘T¼Å!’‹×¢8TSïÚˆ/5µ?6¾„j|| Ôþ@| Ôþøø¨ýññ%¤„$+¯³½¤åõül/$Iy=ª±8P7bp¨jÄà€‰t¼ž·’×#!öÆÏöB’Š×ó1$‰x=I^Â!IÂëQ4$Ix=†$¯±äàõ ’¼ž„$¯äßõ(’¼„A’×£8HòïzIþ]"!É¿ëQ($ùw=Œ…$ÿ®GÁäßõ0’ü»…C’×£xHòïzIú]""É¿ëQl"ùw= N$ý®щdßõ(<‘ä»ŧšxkÔúÐK£ÖBTHÍĨš¤Bj| JEÔø@\‰¨íÀQÛã#KDM„–ˆÚŠ-5>\HòÝHbIòÝÈbIòÝŸÆ’ä»/Ç’ä»/” ’ä»/¡’Ü»/”¢’ä»/£’Ü»/¤’Ü»/>K!$©w_ M!$¹w_~‰-$¹w_ Ÿ!$©w_|BCHï¾@FCHï†fÕ£æ¼<¦æÇ{yL­xyLÍ FbÇþx7Š©ù°Sóa#¦ÖLJ˜15>6j~ l¼»… ’wW¢°AïJ6HÞ]‰ÂI»+QþSHÒîJ_HÞ]‰â É»+a|!‰w%Š/$ó®Dñ…dÞ• ¾Ä»Å’yW¢øB2ïJ_Hê] â ɼ+Q|I©ý¸‘RûããFJÍĔڊ©c€¼¥Ôþ@ÜH©ù¸‘RóããFJÄ”Š)µ>7HÞãâÉÂpÞ)5>à”‚rJAÍ8%ÉØëÑPœ¤ìõh(NRöz0'){=Š“œ½ްIÖ^FØ$o¯‡#l’¹×£6ÉÜëÑ›dîõ`„M2÷z4Â&™{=a“Ô½°Iî^FØ$y¯G#l’½×£|AÍ„‚š6 j} lÔüPØ(ûãݨ¤æÂFIÍ„’Z6Jj| l”ÔøPØ(©ù°A2ùPWNRùPONRù@GNùP?Nùà ždò¡1=Éä{ xArùÐПäò¡AIåc ’ɇ†$‘H84>4n Y|hØ@røÐ¨dðAÉßCc’½‡ ${Hò0ä=4^ ¹{`¸@2÷ÐhdîÁÁÉÜCc’¸÷ ì$’Ľ_`#‘äíýâ÷IÖÞ/°H²ö~œÑdíýB»$iïØl$9{¿Ð^#ÉÙû…IÎÞ/»HÒÞ/»HÎÞ/»HÊÞ/T»ŠÀ@å$ñ¨š øª‘t½_ Žl½_ Ž\½_|!™z¿@!yz¿P!yz¿@!iz¿@!iz¿@!Yz¿ø8BRô~8B2ô~¡8B2ô~8Bô~ƒ8Bòó~ƒ8Bòó~óq„dçýæãHD²ó~ƒ8‘ì¼ß ŽD$9ï7G"’›÷Ä‘ˆäæýq$"¹y¿A‰HrÞo>ŽD$7ï7ˆ#IÍûj—¨œ 0U¨±9>ŽD$3ï7G"’˜÷›#ÉËûÍÇ‘ˆ¤åýq$"yy¿ù8‘¼¼ß|‰HbÞo>ŽD$1ï7G"’–÷›#IËû âHDÒò~óq$"iy¿À€$"yy¿Àˆ$"™y¿ø!ID2ó~1IDRó~¡AID²ó~¡QIDòó~aIDô~¡qIDRô~¡GD²ô~GDÒô~¡!GDòô~1GDõ~AGD2õ~ñ£ŽˆdêýÃŽˆäêýãŽ( &F@Mµ@2j‚(fÔAШ ‚¨P a# ÈÇÚ$W¯EžNrõZäé$W¯žNrõZäé$W¯…žN’õZèé$[¯EžNÒõZèé$_¯…žNöZäé$c¯EL2öZäÀ$c¯LöZäÀ$c¯EŽI2öZà˜5@à˜5@䘵@à˜5Aà˜5Aà˜µ@Þ1#jÀ1#j¨K¨ý>¤ìµŸÀÓIÆÞ€å–ÇÃ* Ï+)x:IØS@¾‚$eOyÜÑÁñU¤—×~"O§·×~O§××~¢>Þ_û B½¾öU0¥8v¢0P½Œ>¨5A:èõµŸ|è ·×~‚ÐA’öÀ9–IÚÇXF$g?Å2" {àˈäë¡3,#’¯‡Ž°ŒH¾8Á2"ùzèˈäë¡s#’®Ž}ŒH²8Ì1"¹zà,LjdêñG9F$Oœä‘4½¿@g@Òôþ}ÉÒû‹ï HŽÞ_ ' )z¡Ž€äèýú’¢‡º’¡‡z’¡:’Ÿ‡ú’»’{’‡:’œã?ÉÎûDkD$;v$9õ$7v$7õ$7u$3ô$/u$-õ$+u$+ô$'u$%ï +IJÞ'U’”¼OGHFÞ'ˆ#$!ï“#$ïÄ’Ž÷‰âIÇûqdLŠ{ˆª)ÅU¯Hö Õµv4a× ¥îŸáa¡ ÓcI™8uú ‹M˜úàŽ‡%&L_ÀãR 'ìdÂn¨ÐÌDé÷yœ°ÚwxY<¬0aEñBr¥U9ø¨• ‚’&êˬíG}9aYÜS9aYÜY”eqê¬Ú–„Ê´ ®ª^à5Ëâ #[$µý½.a™ÜóP–ÉA-Ëàôú³,î ÅaÜ6°ep—jËâ>‘ÓËâþ ×PX§R…x˜epß¶Å»,,ƒûž³°ì­…æ[ÄöËBO`ÛzWEj« ã)g™ÛzËÜ*`”…°ß|W–¹]aÕJÛŸʲ6}¤³Ì­DÝQA’+‰½¡WíØš¤ l9X¬ã. éJËæÆÓÃx etmÞEiYÝ;@UÃÈ£é_oWù|ÊÇ[Á¦°EÕÑBÝ*°Q|mT…¬¨ÈB=*¶Q¨ÈÄ‚ñçàGUj¡ø{ä¢êd£P‘™ûPÂBñGOFUa£P‘¥Ý°üIQUÙmÆðU’ÀP©µ…»ñ(iÛY P¶ñ—1GÒ¶3Pi›ø&;’¶6“¶›"iÛ*Ò¶3þž‘HÚvvAb¶ÕeÛ:z$m;Co\Úvö P¶™‘˜mfdÛ˜àWjÛÆÈ61ÉOokÛÄøu—Ú¶0~_ÛöгÍëªn[×ë£lëꀖm]Ï®•o·OñöõßxæÂ[ñvïx´àÅKe*¾àñ/yx Ô+þK½{?YäýÕ–Ï—x6]ûVv·!°Ý¹†¬]týº#‚ç0"`ñáÿÆ€dßP|8RXËãwAz¡û@¸ÈÁ‚cxG‚‰+` SD¸“»A`fßaQ3¬ ðHILñŠpÄGL±B8b‰-SìŽXbŸ˜˜âÂKü‚‚ÄK„#vø ሶHìðሾ#±Ãö|È€"Ä;¼!±Âሶè‘b†ìh ˆ6|Ô ˆ ^€ZJa@ŽàË( Èó»9b}z b}€Û»!µ=T=b{C8ç!5=„#¦W±¼?F ï `Äìž ‘CbxÂ%‡€Äö®FLï`Äô*#–×"1=þ¿8$–×£g%¦ÇŸ¾‡Äò¾±<þŽ8"vÇçñÅ1;ïGÄîø}â8"v÷`ÄîZp9xÃC0bw7#V×±:GÄìØ‰e«|XŒ Ú$HÌŽŸôÆQEa@Ž˜?o£šÂx¹˜˜¿ŽÇÄì ð11;~ñ0މÙÝŽØÝ;ª^ìàÀãRÃ;£’‰éA±=~±%މéý0b{ügÛkœqLL¯B¸Šâ¿ÇÄøø¯ ã„N7Œ†<„#¶Ç/Æ ±=°¤'ÄöøeÀ8!¦ã„X¿®'ÄîøEâ8¡!áˆÝñ sqBìŽ_玓‚Âx/Kè ãÌ/ŽÆ 1<#fÇ/(Ç _𰔘] %%v×±«yqPß()±» Ò£‹-;8P0±¼;¤k-°†Äø „#Æwƒ@j~°ŠÄ‡ðÄ1˜`pÄÿ ]l¸±Â'j퓳ւ€B$1Å+ÂS| n ±Äéb ÂKìáÓÅ„#–ø‰%–GìðÂ3l!Øá'Â;|¸ŒFÃó!‰!B±ÃÂÑÅ„£“ôÈ1Cvc%Έ¾ø¨™ÑÕ v¢0 GW[€œ 0 GÌïäèb z b}€Ñ~á¨íê b{C8@jzGL¯0byŒ®¶1»'hdá,¶\JqHlï `Äôø#gbAL¯0:ïE8ºÚ`ÄòÀqX± «-F,œÄòøûã‚ØÿI]\Ðåe„#vÇ'RÇõÝâ8Ÿ‚»»z±:ðMQ\³ãC{A¬ u gâ€tµ+) ÈÑÕ^®#Y”|n‘LY|$AÔA–÷û%{OzwI“ø†‘ÙíK&4‘oóÛ? ÍåÁ`m6Y2ú†yÄUå:‚]2ú4îãb÷l,1amæ$K6ŸF‰¬g ]2«f%LT‹,,X×!\i5Û Á*«nPMÚ¥þï´6a¿Ú”¾W5çæ9„Üa¦Ñþ÷uÐÿVàÑvƒϸ£þ·â÷üXõýoÅ…&Hgd¨ÿ­ÈÈ@ÖÝë±#ýoÆ&°ù³*Æúß L  ºrtÆ%úߊKMœü3Á™ê+òd es¾<äIÿ[‘™l£!3ýo:ݰra~?5¡)}#˜Ÿè%Ñ!/?ÍõÚ”o¥¸7OõQàô¼]Õëÿ±Y稙ǕÙßÄÕáý‹§‹Ò¿ŠÀR«/©fÂn¡¡.4…N4§Ì`üUÔ–ù^磗•R኎uÑ1(Úf;5ˆÆ_¥À4Ý“méT—œ‚’G–Sb2þ*æ ·ó/ùøÃ™é"3ÔÎ#Í)ó4þ*ª€eÞº¶;?ÄýòözçŠ.tÑ(Úf;5ã¯R(a ŠG'ª·î&ÏlsWº¨€EvÊ/Ç_% aù­|=ê‹k5îp˯uù5(ß";åËñwˆ±OÔ×ÛGó¼ gùªkÿŽ‘s´6ñaüU:Ø×ûmêfðœOu{ƒ[íò1ry›íÔ •ÂÏWËÜn´ãÇ›Ž¯ÈNùÑø«¼~?>gޱöþØãý ×)=Ç€òÚ©ê_›çSokô\%t<ˆQ<`$œºœÆ_%ƒcÃÐS “Ë ÕB‡†…‹ì”/Æ_%€#ÃÒš»EŠ Ÿ–S»rüUz8n|¶\-t¸ˆQ¸P§49þ¼G‰Å°Ÿ=×&:>$(>ØlZƒä0þ*ú®~ê5 ·p¢Sn0þ*2Žš.¯\¹:$(,D§ÜhüUdFú+W…è”›Œ¿ŠŒ#€êSË×Uèo^ݲµï'È÷-²SþiüU¯o¼åk¯O ×7¾òÅø«°×WÝk\,÷VC{{‚¼ÓpjSŽ¿JÇðò¹!_×g³’™az28ywx˜?¿-ô?_7ùÌoÿ3ÂavÖßlNzà8OÙ¾ÝÔÿìÚ~˜ïœÛüöœc9öåÕVÁµw)lù—îÕ‹v§D˜÷Wñ§k¢è‡¦jz°|’F\aó÷Õï1üE´oÄÍ{LK<´O/õUÓNÚE<ª©9=óÕvØa¦ð0uò\xèãRKŽú.þ|¾{HGº‹á»wÌ2|s*€·6£Ï5õ2"žp'[}pÝÛI÷­'Ô·j .§Ãø«ˆ¾‰5_ îOOx^Í–Œ¿Š‰;Ó¯ _¢îIO¨'YN‰Ñø«˜¸-õ½Ün‰º=¡>td9%&ã¯bz¦Ñ_ì’ÁI÷œ'8‹þâ– N§ñW1q—ù”ãäëÖT•Îm鸹ôIw'Ôu²"N}Äø«„púä_²î3O¨Ï|²ï¸…Ÿ=_  ŸÐ`xd9%Êñw`fØSŸ=; δ«fÈUG-1;Œ¿Š‰}õÉÛq¦}5C¾údí8 Æ_Åľʻj¦]5C®Êzj¿Šèð‚µ§fp´Ë—˜Œ¿ŠéñÔq˜Æ ð2í­ôÖ…é”|{lùèz5b‹Ö~š!?5¨NÙbüUô2¿u•šr>â2b[ÆÓ>×?ýçÿù_ÿø~;¨“îs£¯Ê*¬²vð®Ji«HOG/kØõfì—N¨ñðMòBÜ^7ïñC‰8Ú(°e&Ææ@&"$bÙ0þl‚DÄ6 ¥‘ˆÄÆ=ù3”‘Ú8~b!N6 |„›ˆÌÆ”°Qü‡†‰(lÿyh"JÒ"`WPT‡šN’êI‰µ¼Adq ¯ƒ˜‚X^[! ±½ö—Pó{Iì ˆùõ/ÞL b|qRóë/à­ÄþøÏû“âDõ$œuRì!Xá;8$)ˆ¾óç¨'1Äö|®¨(‡IúŠ¡ ±ÃÏî7‹+´ù’Kb…Ÿ/ GŒÿÖ2)‰¶à«Ü¤ŒhKƒwW+¼C`BÛ¼ä’Øa Î[JJb‰wþð¶¤$vøp‚> À+çK%% ‡àä?/IJbƒüYII ?Ë!©ˆý=Ðk«ˆ>€áW5>騢x~ÿQ,ÿárRÅpN,ä;Ù*¥–…žš˜ ÿ!TR ¬;>ôWÄùC'’Š ÿvRûã“I*büÉ>IEûbÙ*b€|:u"‰Þ@Òh"©"1ÀÂÑN˜o›3g›ÕcÆÁ?™C+“z6XïÙ–I-µ¸•e!ñZQþLͤž µ—·Æ£4Û)“(iCÓÃÁ¥^šVör<ô³i‡Óžóþÿå®Ç¦‡ã[ ­í¡Û…C Hw”îãGÛÅÿ~n¼£lHN¶ ~ nº£`H>9dù×ó!~^šóå­ê†ÿR2…x‰Ì‘øY8ä[Síä÷Ú}ìäº+:ãsïWpWsÜ–»Êúù³ÊÛ–˜ô¶án™Úך{UŽn0Ze·Š œÞ­å†£­w«¸Ñá{|7:¨ÖÝMw„jŠÝt7D¬í¹[Äëxû#Ïñ"ñ`÷ÙÒ£'±¿ŠþnXPŒK÷h¾ºöé-Ì ÃCê…§óå9ô†vø?CXSŸè°ndxˆF­ó¾îoâñè>Ï ¯ê>Z/ÓSþU^‡¡ÑÚéò|7Lü¦Uog¿”|S%pC@ÿ|ȾS™Úk”¡ñF¸žoUm<Ü ¿•ké¿<ÞŸÃðæ¬ÍT\Õ1÷t­? B-NÖB?'@VüUáúW‰D»êÑ0iciëjÄ;ªÑ¸)dªhý«4¾ý1ˆ[pª N¹‚GŠSV2þ*Ú‰/ëùÅ•”é’2®$EpÊ9¿Š$@9ƒ…4W.5= ]ZÁ–¶Ðœ2Åø«¨%_fùÏ*´Ò…V\¡Ï)µWn”:nƒ{¦µ®@í­€%áÔEŽ¿ƒÌ0›ef‡ÔjsÅ_о}'Õräÿ܆Ú_CÖ_óÁ|B†ÚûBÖû„ûñ€׿мOü-‰vÏnÙÚCÖ‘ˆS1þ*!à™â“+[»dȺ¤"8å”ã¯"_\ri˱êUÇ$ʧ¡vÅuEVÁ©‰•èÀ×ä}¤=e÷Îìܧú£ õËÔpiéúàT}”FÀ?'…ªç®UÞ «¡}6b}‰8õ Æ_%üØz"=nØQ5íæëæ;ôœZFã¯ÒQ PÌ!>r•ѱ bcÁJsÊLÆ_Eá:ù˜ƒá¦Ð"b#'àÔã4þ*1¦®çÚ©%•±Y»Á®¬çê/Ô/SŸS/1þ*199u°[B"6„XL§ärüUlK:®ïÑŸ©_®@¦ïÑŸ¥ê3£4‘ânÙòóòè^j©@ö¥úHƒ Úúƒ#õËTbSÖPz”ªOÒD“I³¾v¯G£&ˆnt‰Ù0â°ã¯Rñc~ªß¯æñêëã†óRý’úõ4Œ-áÔ%• ˆ¿¿ÿ¾tðˆÙ౩æÔ0•"ˆ)¿÷Fý±’úÅÛŒ«ús¥T}®”Æ ¶ ÿºçKhíVA‡’˜ %Ï)UŒ¿Š "Çãuó•«#GÌF‹é”\Ž¿Š "ÇŸÝí¯£IÌF$âÔGŽ¿ƒP"Ì.†ë¯’Ô/W6«õ‡H©ú)M@œøÓô͹{^šò›eêO‘Ô/W¢EuÊÆ_Eâ9ŒRÛ1—þ&IýrO—ïÔ"•ˆ ŽÊ®ø ¿YR¿{êµ'Fè™Rõ1Sš€ñg rUÑ!a#ÂHqÊ:¿Šü_rƒpý±’úå–U˜1·þ@)U(¥ ðø†ùö0Õ_#©_¦œÆýÀ0ÕŸ¥êÓ£4A3þŽ['J´3'ü¿cV†9þ¬Ô] S?Ú¹£Z|.O••²Î[½œÏÛFtÀ¡¯Íºé ¡#Ý"4넞}]·€,Þ›úÄ¡8æ×öú“4ίR¡™‚µÂ•GMd(Jÿ*ná/•[AMK]jé+•Y8ŠÒ¿Š[ùKu×-UªcH œçùz´z TíI)ëI.Ý©½‰è'n©?(R¿¸lfب?)JÕ'Eé tŽs¹@T¤~=ï‰ óú³¢T}V”ž@·8³¹È¨?,R¿žR™©?-JÕ§Eé tƒ3›‹ûúã"õë)• ÿúó¢T}^”žÜÍ+µ Q6òu«¯ò¯7Q=ã“ß 9¹Yc¢…ÞÀ ®~r·®ú¡C~¾Éß/q¾Åd‰À[{q}‚ê“vÖë¬+Íi—büUTà«“Ùºó¶C0ŽˆN’íÆQÇCÃݪê«'½ÖRÈ«ó†Æ§®I¨nÚesD/¤1 *ðÑiÐã7é/ŠÔ/×÷8tÚrúÓ¢T}Z”fÀgËùܶtí´ë´&Ñ)7™í6'ò] êÂ~l––Ñø«TX¾l«ŒíÃ6'ýúã#õË­‰mMúõGH©ú)ÍÀµÞÎëÏÔ/S~íÊë‘Rõ!RšAëŸî*î¯w}å¶[´¼fìàÕ$:åŠñW‘Á v¦wl¹z0›±ƒY“è”[Ž¿ŠŒ&­ýÅ–«{䌟¨D§\9þdüü<¾©®¸6¿_¿m¡]°Î4hmÄaüU:þ…óíÚhç¾uóÍÚã¯Ò½w»·6:Œ 6 §6Ñø«t@Dxì­Ž ‚ @éM2þ*ú½µÑQB°Qh8µ9¿JD‹Ë¼UÆ|]pÓóµ{ªÿË>¯îÓ ¶O7xN©büU\à 3›±ƒ´m‡íÑ žSj9þ*.ðЙͥ6º?/ØþÜà9¥Êñwà–ÀG»kõvï®Ã˜û~;-u@*Ù^ܦ:ÞÃø«è(+¥=_‡¹F+Þ>¸¢µÇ•|zŠÉtJÆßÿ?eç¶»Ž]Ñ÷|…`#º‹„ƒKåÒvÝŽ¤²÷k#OÉC ÿQU®’´æd¹áî:ÝcR5o¢È™{ݡº³­{QÙœƒ<Ø ‘&dë{-‰á??¸~ܘ¹’¬KœFs‹®y|ûôpmæ´à¼Y0%Uºåõ×§F&Ö†.gs»Sé¶`J*göúëScM·¿>FÏOíßõi³Fû§ïˆê¹‚¨aÁQwR_§„··­÷BÓrÍ» Œ]-ßæ¡‰®¿> ƒ·m#Ækq‚nAÛ½›ìóëHT$dn[¹ õiàôX3· lÿ¶bu³Åõ×'Àú¯ÝÛáÔ5øÒs#Øà>ëC§®j®¿^KÀ½*ø>´™[¿¶~ß"u=¹þz!±ùUló£ø:šnÁÇB·ÄjµF”¥«§Ü‚O…«!•¸X‹ÁwBêVœÇk1©Îï½úì[0ù6)çQA[ "WêmÙO—} ßuçnÞðw±ÑX׸Oùðþe«gR¿ïb·~f›Bˆ“M êIÕÛíto2õ¾Ý<+±M$ß<ÃoÏ¡­_É´-‚{I¶¸êçÊ3V6Ty_ž¿3.[Ç•óÂ)øMlÙ¶T&}½“éÿÂë™(z¾¦^]÷r”·¾»‹0CÈDÉöóá/ÍG7|H?o6§¿º4Q /?Ý6Qaø9¸‰rÃ/ MT€¬ïdã8çÜ‚œ—0}ü‰µ‰ ¦ñGï&²ÇÇW™H0ͯÀÍÊñ|N5¼><ÌD ¦Y†ÄñQb&j1M±ßG|¤‰±ãGr´‰È7øÈc¿7äD<c˳ÌcÏÓ¼83„Ɔ§9ÇŽÇg¦™³hblø3ËJq|䢉±ÕÉI“&Æ^?[Lhblu|Ú¡I°Ó{’x‚ŽO+4 ö9)”dcóÓ§Ûß*š×Ã?€ £‚ r*¸:,)¨Ä1II%§Îׯöç“û¯ùs¼_Sƒ QMb¹$!á’”H*.Ɉd ×ç·ŸžûQF÷¤}ô{,LëÝÔÿi¦ÎHÛK=˜è¿aýë"S¨=Þ­ÿk¶Æ\ê»À+]²Ð%X7ŸŠó}Ña¡NWWMùU‡îïѹã¸[]:.ꌫçslÖR³Pæ¡\߯¼Î÷êÒÅ*Û}^¿@p¦åŠ?ï¥v»Ó¾ jÌJÓ_ÎÎÝhnÜàv›¥ãØ_‹ô·Š,z=ïämøu–{ç÷I³X“xç,“% ÅÝi3 ·$éy›,ShMÈ\“,§…B²Ô9Å;Œ™Ì(t$¤Õ$Ë©(´!d¥sJÈZ‘x[C“5šdu ­Ù*ïDdríÒq ¨¶éHvx3¹öió‡ Ú¨xg*“kŸþa××Fe—×>½ŽÌ ®ÍJ¼šk¯ö„Ô^Å[eš\[•>íUö\µWYšÚ«ÔNÅ#ì\” íSc…\ÕÊÏËÙsÜWª ÂãÉóªd8á áIî-à /„tt ¬z&#ºú‰neÍ3Ñ9¢soŽù:bVÁÏ²Ž ßgÔ Ã Ÿ²ìàg_¯ä6(èåÀ^+Ô¹â—-ü§^=‚Fü^`dS¯Êþ6âx³*úëIô\ºŸDÍ>Öüiqp}<ÿ=ðDããç#õdþ{à)Àý;„» ÿ‚L ÚÓ¥¿óÙü÷àsÀwôóùïÁšº¿ïx1ÿ=ðàîÃï|~”óßC`´`~Õr˜ùï!°ZpìÀÎwÞ-m܇åMúnù¤ÉnâÆÅ!©èT™„”þùSeTÎV Ú,¤]A¥yPê B¥EHê½B•eP9Û†jMH{uÕÚv6• –Þg6¨° é±£ÆÕA!?Ô¸&¨<”.¨<”mPÙseKâô»çI’5- Ók‹õ!o½ì×M^·šá,õ|Û“É¿6UÒ…ä» „ÊL)o ÕOȃ—ö5 ”aÙŽœ¹fÚ2(¼—2Ô¥=_†Ý¹{Ç-rk—ü›œ§úg¿w=†e ×Ò»sÕ’ó3®ß a\kOt~X~Ài7Kü·tSÇ ¯ÛlÝ+¨4¾0Û.Ùe'ì ÷l½¾Ë—ì^öÝóŽŒâ-Í»16J¶0ïÄØ(Up  c£l‹:06ÊÍ»/6*¶4ï¼Ø¨Tp ëb#³ÅCÙ-è¶ØHtpvÑF•&q$Ú¨V(žÿ³Q£H2Uh#§P<@·Q«I’Ó8R(~™mãXçO•Ø8Q(ž³qªÈC3}}BæŠÄ3V6.4É ªT(n2ll‰gíll‰gÀl¬]Чžl¬]Êž’6)ž—±±6)~ãkcíQ2½icmRB&Ú£x~Ì&Ú£x.Ý&Ú¢Ô=ÁÆÌ&Ú ð­ŠM´?ñ‹›,üym˜.dñ¥MÊ-JI£e¤UiÒDe‹ž¹0è|FÇy:ï®ýòñõ†¯eÿ%oþô" ß^;]ŸðL+›´pØ}ÁÞ•úÀ½ûí 7+i¼áHõŸ&޵iºI…šfŽÔRi¾½0አG*Ý´Üp¤ÎK͆#õmj7 ùT6~fÓj{¿¤Më Hšã´Ùp¤êN݆#ÕqÚn8’¿lë@Rig[’z8Û:ð@ž\¶u ;ÿÒf[‰ 3eÂ/òø²­ vwáú¬³2`VkfÀ¬ÞÌÀBóQšU´Y’¦¹nP®)íM¾‡²Ùݰ›w:Ç7¢È#¦`‚˜z&Hˆ`‡fÞm~·ô÷„û?¦Qĺßçàêàá‚¶ˆ^ýé{—½ÿÎkp~Ë÷±{w—ñסs8¨µEÌ4çIsÆš„i†î4`IÊ$õt™k2¥é'xÿë½ûr~G¤É‰f¦DxÍ&Ö”¡‹…„†ÏÉIà1I({]ÅÊ]ÎSù]ŽiÍ.IÑEÀŽåo7ýã}‡E­Í…2S©ãéª <ÚRÇÓUCK ÔÑ4ð¬ø5ú{ñ=•:¨®ÊPA”:ª®"¯!T³…æ r3”:¤&öøök~ZX¢#ê* dNÇÒœ¹Ù?!¨k؆ \GÔÙãç]èB:œf8àEsÖ&£öÝ‘_ÉD¯¿åCæÃI¯3µrô瓾±6ÔÄAíjygp²÷Ó˜…µ„&ÝÀŸÓϔؚìûW&W`7 >ñØšÆ`©ABE· ÖXže*ÞÞáªÆˆâ§¡Øô?÷×3¦â‚i,0|JCn¡VB<õ`ýTH’N‘xêÁ´ $Xr ‚ËÏÆˆ?\zÒõ·‰âÉh¦€ ¥¬ÍÌÕVÛ™ 3­¶rÌ„v4ÙXíè)NCIkgÿöëÕwrî…Œâ-p7_Zík²´ÓZíä }–íj²¾ÓZmë }–¾¶ø1Tœ¢NnW´ÅÇ`ÊÚâŒÔzŸlNHír2‰#Úåçàj—“ÉÑ.¯‚)k““‰"ÑÖ&Îíl2g#ÚØ½¼ÈÛÅ2Šxíi2Ë#ÚÒdþF´‡P‰UÚÇÃ3UÚÑd¶«Ò^&óIÕ¶ã1wi^F·Ÿ§JÝU©N^L<ŒÒûòFý•*Ç ¿o=QPñyٳɪ¤Š—ƒÛw¬—V¨.ïôJ–*¦+›ËÈ„B nß±b¨ ¢éúk“ ×WÚª†ª³;;šµEDl¦bÞ]ÏeŽÊÎîøö.p}©­Z*›¼‡¿Å²õ"`Î~nât„ó?õ*HÚ©s7Ý€ïÓáP½ˆ”ëÞOøt™©Ú÷k-ÏÍ6èAòž¢Î7èþ²»À5 ¶.6èç¼d¢åËMàš[›m&W$»Ve×n1+ÛkÜ&+@ðz{wÝ0õæw^ü¶ÛsM»v\ïKÏ¿7‚[±ÍÂÏW£4ñ–¬Fi’-XÒ¤ ­Fi²-ZÒ䊬FiŠ-XÒ” ­FiÌ®Fiì­FiÜÆXc×O=Çñrp£ Ušv#™luüå î¢×Ã4¸?ÈâX9²Ù¬‹!N¾:³.8ù–̺âäS+ë2ˆ“/¬ËïøíUíòIZWÜq}rͤì]s9û½ŽýÌ>ŒDWnó7J7õïüG6ˆr†kðwÚÖY.!ÃWÿj†JXñU\CF¨®HØe®aÃ=¿ kØ…ÚÀÓ!ŽkѲ¸ÂÓJ¶©,PÛ¶ UªÝ6åªPýÛfTªˆÛœË5r[PY jnK® ÕÑ­¡º`eÝZª ÕÚm ºÈ·n¶ Dq}ˆ.fú6]dÞ‚‹TµE¯S“pN K¯ 8A)Q²‚à”­Dé ‚“¢eë<‘ëå+ N†JT¬ <*Q¹¦XY™†kl‰ìšb‰É ;¾]HaTŽ$W¯0ÒÌKÔl0ƹ‡[ ‰Ú5E‹×;îÈ­Æñ†#É%Œä.^{ ÏøI¼6Yô(ñÚm8Ð%^ÛĶÄk¿Yy¬ý†[:‰×~#-¯Äk¿áÙA‰×n;3lí6²ôVâµÛpµ%ñÚk¬¦Š×f;BKÖfÃ3Š’¬­V‘¬%k«áž $k£á GIÖFí‹$kŸáå²’¬}F¾ —dí3F­mFŠ?¹Ùló•6êK"Š% £$©4JÙZ±Ž²bÉÜœ$N¡'²êK’V³hæIÒHüRYÒX“,«i¢ïŠe5½¹r3YögÊ$Í çÕ$Í!½g†H È2>[qÛù“>àKIÉb€Â)|É€âé~ÉpéÝ5$߸B H–¾‡–¬@Çh Ð3F @á—V’Y€Â=–$€Â…(’Uàr ÉêÀó8°ÇÑDp¹ ä7ç=*J/I>:”Ò“¼X’|p'y¹ã9ÉÍ á$·K40j“üæ…óåX—yVçeÞ"o&Î$o4Nw;ÜúÉ ’·Z4öÝ9(*Ô„Þ4ð8ŒXjFïÆãõ R¨)½ož4ñ…šÔ» H»P³zß<»@NdŽMŠ‚Èr)ÔDÞ]Àò¤¦ñn Ö‘.Ô$Þ]À.¡f¾L ¦¾Ë‰ðj~áÆ“_¡æn<ËšXøæ™@ÍØÝxbTÊG(lgpo§s¸R²ðÀÛ²JÉÂF)%‹Òß/Ñqz;½õSýpSœðÍRæTònîË‚*vp³”¾Õi?õKÇ©ºr×{9\‹l.¥Á:ßðAÞbÞ·WAråYé>Bä¶ óôò.½;ÎߎÁ¦½¬×’Ç䘗üJH'¢l‚²_KḚûtóa…ÿ剛RÅÍJF¾½ú\}tn¼/OŸä1±¢wSÃLñ'ŽÏÄ“’ÔŸ‘䟳ô™ €À‡ ‰)qò 70ñ#Ã-Nò“Ç物pê ¯q⬒:ãL¼"¦Å©ÜbÇ¿N,Oyìy|dXby†cÇãÃŽÄ¿3»œ$–ØòÄï„fv'8v;>ÀH,q;ñÛñÑKb‰Ù޽NNjKÌÎxÁno MÌÎpìõ¡‰×޽NÂNˆ×޽Ž‚šWœ8ñÓñ¡TÓ#ʼn3;ýƒÐÄé ÇNgÞ"Ng8v:‰Ï1]-\~ÿÍÉuž mJ%ÕÂä×ÙP¼ºTɤûdI•nÙ ÝèLªLÁl—©ò-‹_^TÅ–#EUnŠj×ÑÍܤ2ªèf_RY]¤`E‘¬Ô£"ïnªZ‘x T5 Äã£Ê)ðÀï}a×y _´îòuøãÅ‘)å:¸ohiú  '’|³(æÛˆË/w…h­Pží¦Qð0"‚7N¡»Óô¸ÈSšd¸óÿ…¸_ÿæÜ躩¾Ü{x _ý`M~í€Ù ͯ}8›ÃòkßÎf°üÚ7ˆ³Üg³W~¥ÄYòß,™‰ò+Üή~uÂɼ•_ضğné,~]Q\ØK6¿®h„mð ~aÁ-ůj£—Á’võÎuï;¼è\ÚMˆÿÜuj). Þ¤OÚMÈñ7^yÓn`øÚïÅO÷þk#ÚM8|žúægœ–Wà|i7ñÚv¹ŠâW7îºÓ¹«w5…\ÌTE ¦a©UQŠiÜo©¢ ãxûÉ*Ê ŽéÓ°~¬" è©Æ ¥"˜&¥Raš•JqV* Á1í0K%F^iþàB‰‘Uš?¸Lb䔿)’¥ùCJ$F>™h #›4py$€k¶Â¬JPñy`‚ Ðã¸T„sfHnP!zžc‚Šqæ1Ž Òã¤( ÀÉ¥*AÑYU¤QpV)D›S6H>PhV+@™a˜žè©¦žô^Æîx;±ñ¾ö¬ï]ó"ûy­ÚYŒd25M®\ók¨wŸDšÀ+î¥~tR‘. ä”H2$q/ŸÝ¸{i÷§Kß ;¬Ì‘rïŽÝðÒbECÝwçñåízɺ? ¾p¦Žü'RÂË^ÕÝq*[®Ý^þ|½ 8HàöbþÐ5oÀº}CŠÍ¹©{ÿA% ~ZRª®áó>þ¸ø›gÖŒ]ß_Î~íÒ|Gü7=Kk9wþfûë5¯¼î– ÆûUzºŒ/Ó d 6,…‘~ q’a×ýƒ#ƒý}ÁŸ&ãûVK’\àþ–|—2©2Ñ2¸}ça'Õúr³ÑdéñÙƒ…Ñ|ñÍÕÏÉaT_: ‡‚™i`ßnsþ²{wò‘!) Øz§.$e•^½ 뤺]Ò¿¸~!Îhu•œñÁõn¨sØPÿýóÀ˜½ëç 9ÛÀC…q‹äþ»÷e†5Lñj=^40Ä¿þ ÇV¯÷I•ï nz.ó¿{þ(ëWõ5꜉Ý<Ózáø·ÿý¿ÿþÿù÷)“r­nˆšu6éùŽ×*=NoÝ…Z'%EµN¬%‰é@Ûfk ÐeJ¬yßÉË—Œð‘°^èN£Ïë8°b¸vFˆÖÜf°¸?$>ì(ò×·Þ-¦>WMîéàÞˆÆ|óÇ/Ÿíå¼»µ"nê ´{÷7¯ö üãðÏ'«[uÝ#—¡D,qÖ-OíMÓü?k¶$¹®]‰¢ïþñwY9{ÒRVf †{†7‘Þd®È7IUWv¶¤25§ìþý% º“˜ ¯:•VáÚ{Ï1Ñ1у¶åxéx뇮F§âÏu^;8¤N‰ëaì¥Å|Q–*JÔÖü`9•Ñ"ów€ÅætM= 6XB`…{@bþ°”Àî–š¿,#°Ÿ–™¿,'0—÷="7\ApW˜¿®dé¡6(ÍßW1j„ÊüpŠáP+(ówÀÕ ‡š¡6\Ãp¨ówÀµçÆ­Ñš¿N3ªOmþ¸ŽáP}væo+™òv >ë­ù;à˜ôv >ëÈüpL{;PŸulþ8&¾¨Ï:1SŸ;iê©ù;à˜ü >ëÌüpLTŸ¹ù;à˜þ¨> ówÀ1ýP}–æï€cú;¢ú¬ÌßÇôwDõ©ÌßÇôwDõY›¿Žéïˆê³1ÓßÕgkþ8¦¿ªmþ8ª?ìÌßX1ž”3óŒ’fkþ@¦Àh‰&2Sà ´D›¿Ž)ðZ¢IÌßÇx-Ѥæï€c <f7™ù;à˜ÜAK4¹ù;™ÜQæïdüáΪ{Hiþ@&Âî°¸‡Tæïd*üqG•ªÌßÈdøãŽjµ6 ÓáUjcþ8¦Cguº´æïc2¼¢¦Ðæï€c2¼¢–èÌß§˜ ¯ !Ú­ù;à˜¯ ÚÈüpL„WÐ mlþ8&Â4C›˜¿މð†p©ù;à˜ÝùFÈÌßÇDxC¸ÜüpLƒ-h¿¶0“à áJówÀ1¶¨Ý+ówÀ1¶¨Ý•ù;à˜þZÔîµù;à˜üZ4þiów2ýÝ °5 Sà œZmþ@&Á:µùÛk¦Á;é­ù;™ohð¤#ów2ÞÐèIÇæïd2¼¡p¨ówR¢À¦Sów2!ÞPdÓ™ù;©QhÓ¹ù;™o(¶éÂü€T‹(¸éÒü€LŒî>q¨ÌßÇÄø Õ©2ã/T¥µù;à˜¡mÌßÇ´ø Uhkþ8&Å_¨>µù;à˜¿P}væokðÉÐüÅ‘ºÁgCÇC­ÈŸ=àg©êŸ=îáÓuƒO‡âwwêŇ1ë mv{øCÝೡ7fކ~ìÎøìIƒÏ†žÞ™=>z£þkhÿ‹5T͇oy`ûÚïî„ešßá‰ìºé 5Îy‹ùþ¹# n1áÕm,×-¦ü;T‹)ÿæsþBªÅ¤'Ç¡ZLúï„Ä-9ÍÌ1çß'[Ìù–ÚcÎ×´*1çûÐ7ì“]ñw®êSÿ0Ülö °úÈæEa|*/Ëáä‘ }øò¢°8†¨ä…a‰x+P^X>"uRŸèør-o,¼S ?)­F :Á^Ë‹ Ô—¦It=ß)ª¤¨»'ƒE áibŠÂNäãµ¼h`Úkx1¥–w ÷ãÛþk¸7„< ©Ïûi²†'Òå‘ÿà»Dµ<÷zŸ¨–çþCïÕòüø½¢Zžú¾[TËãþÁ÷‹jyÒ?ôŽQÝàyϨîJñ½kTw‚xÞ7j¶Ûo·ûûýŸÿõ··ëÿïoûûÿëoÿôÿyëþùßÿã?ÿ;ˆ+m¡`ø{f^?¿¸÷}xüôÙù/ŽÓöÖ²>ÿúêÞ:v­¿Î ®ºŽÑ@ct¸·N¡5ËvæZßy!sd½g…,@Nî4ß%´&©\c}gõ§ 1+c­±q‰çÖ5Þÿñ¥˜¹Ææ$'´&…l·kl ¨½§Ônµ{×$€Ú½1ôõÆ€ÙŒ{ ൺ(­GÀlcOêdfÉùa>I?(Ùc†i†ï(Â÷{Të¢üßtí1Ú‹¡ßÉì‘‹ ‚Ú-‘ïJö˜È‹áŸBí¡1…²µö „ƒ<µß¦Æ?ÎÙÃ2¶æÛ¿=2gH¢÷ì¡iõÐi{hÉR5Œõ$Z1¤ù’«‡¥­òC§Ï™b,ПÁ~éëø™V |Àžß3õ•ˆññ%b.üÈÑÔë(ŒBœ>Þ;4)j ƾçÜC€MZóÇ1(ѹ5b*ÈЀ&Âx¨¢ ÖS#@…Þ/U÷ ¾å·“=…â3HO-ÙMO4Ó@qcî<5„ftàÜ=ˆmþV³'jÖåkõ{㇡Չ“(mñÚïÆFˆ§ò; ²Àgµ{PØâ1ªC3å÷ôáRØ„ 7u4öÄru@fO˜§„@jæÛž‘L@×PÚüQo 2{|››Ò°B{€< )‡Yðéßþõíóßÿùÿùûÿü§·ûüÓÛîŸÿçÿ÷íú_ÿþïÿö?ûÿê9)nþà ƒp3GFè²Oü/&Üu~(Mtœ÷þí¯K§ÒÖ̵ÞníòÌŽŠïJQ€§[×´¾óýã­9?Õm_ïûÛ×Û¾Õçñèø£ÁÔ¶e“–66 a£6Ï{[Ø8„Ÿéêá8Ñ›„°ÉœçFä9 aÓgžõp|f‰ÍBØìMuÛØ<„ÍØlÜL_b‹¶x`«®jll–[…°Õ3ÏU&êJ…°ÏÙnÉz®CØú™nV6¶ a›9Ï’ÏmÛ>¹õ„…Õ!ìs¶^äyec»¶{b»ÒæFÒo4ë7O:ÒoôÔo9,UYØ~£Y¿eg×sÒoôÔoOO‘ç~£Y¿Ã­,lH¿ÑS¿yÕ66¤ßè©ßbÛÚí…ô=õ[Œçš–Ø~£§~Ë4imlH¿Q5k0íÒo4ëwøæž… é7ªç8YŠ6 é7šõ›B !ýF³~‡×y,lH¿Ñ¬ßXr#¤ß¨›5Ûm‡ô?õ[éÈæFÒoüÔoÖf[ÒoüÔoÞi»¼qH¿ñÜÿf(oH¿ñS¿e•Ûm‡ôÏú[ƒqH¿ñS¿eÔÚñ*é7.æXÙñ*é7~ê7“ãœ8¤ßø©ß¼ˆì~0é7Vs¬ÚCúëY =fˆCú›9¶7‚Ï!ýÆOý¦]i÷¿qH¿ñS¿YT‹º é7~ê7‹E|NBúMžúÍÓÆæsÒo2ŸÕp´z‰ é7‰ñÊÖ~ÒoòÔo‘k»®’~“Y¿Û­Ý/$!ý&Ù'·vû&!ý&³~óÌædÒo2ë·Õ¶~“~“yü\ˆ1Òo2÷¿u.Ò é7™ûß¶³õ›„ô›Ìú-KQW!ý&OýU!òÒoòÔoÑ*ÁÉ~“§~ËDÄö$¤ßä©ß^޶Ó~ÓEÿ+Ê›†ô›ÎãgÕÚ|NCúMŸúÍÊV¤ÒoúÔoÖÉò†ô›>õ[4¹ÝFiH¿é¬ßmaÇÉ4¤ßt?ǹ­£4¤ßt?—¢MCúMçñsÓˆtCúMgýæ'Ó~Sµh_{¼‘†ô›ÎóßFÖUH¿i3÷)‘ݧ¤!ý¦óøyxÖ†ô›>õ›w[Áç~ÓyþÛÆ66 é7{ê·Ð‰ÝFYH¿Y4·oj³~³Y¿qk·QÒo6Ÿ·¥H7¤ßì©ß,jíØž…ô›e3¶Ø~³Y¿ÃÇe-lH¿Ù¬ß¶¶ãFÒo6ë7óÐ,¤ßl¡_1—ÌBúÍžú-‡µf ÒoöÔo?O|é7[èW¬od!ýfíÜu¢žCúÍžúMub÷¿YH¿Ù<~®Åx2é7ŸÇÏÛÈ.oÒoþÔo‘ˆuÂ<¤ß|?g…ݾyH¿ùÜÿ&b^–‡ô›ÏýoÙÙÚÏCúÍçõç®¶y•‡ô›ÏëϲÛ7é7/fnlíù~ÒoþÔoÞˆ˜“‡ô›Ïó߬°ûÐ<¤ß\-úÁ«~ó¹ÿïÏçdûÿ-$à|^À*3[„yHÀù<€.Ää* 8ŸÐi*8$à|^À¾|²Ä!³€k±ˆ\„\Ìè®¶EX„\Ì XMi“£ ¸Hæ=Êh»@‡$\ÌSàXlå! óV"¦HEHÂÅÜg¹H7$áb!ae³²I¸˜—°¢qk#^€C.æ=¤HÌ늆‹y «,m9! ó¸}R’pÑÌ ,æíEHÂÅ¢ãÂ"$áâ)á*ã†"$áb±†ÕÙä(C.ŸÎÒÔÎs’p9¯A²²°! —óZk»o(C.g g(oHÀ弇ԉqRpùp1¬±Z؀˧€ûá¥Ý–!—ó°ë¹eHÀ弆¥+[ eH¿å<†Öb=· é·œçÀqeuÊ~Ëy 7öÚJÒo9¡‡gÈ,lH¿å¬ßN̽Ë~Ëy ZöºLÒoùÔoUvÇP…ô[Í]p¼Ø~«y :­l^U!ýV‹=¤ØÖ~Òo5¯AGb¸R…ô[Ícè´Ø~«…~ÅZRÒo5wÀ­8ïR…ô[ÍkÐ[ѧT!ýVó¸‹m-T!ýVOý–©¶õ[…ô[ÍkÐ[Ù¾!ýVOýVI*ê9¤ßjBÇb~U…ô[µ3V‰<‡ô[ÍúMk;>W!ýVóÖVœIR!ýª§~ËR¬Qª~Õb Z ÝUH¿jÑÿб™ éW-Ö ÅxC…ô«æþ7)ì~A…ô«æt-²*¤_5ë·I6¤_µ8Ã!Ö’TH¿ê©ß^‚vÜP!ýªyüœw¢Bú¿â¬Ë¨~Õ<nÅ´N…ô«æþw+Ö UH¿jž¯5.±!ýÎÔŠTœÁR!ýªÅ,ÑÖ!ýÖ³~·©Ÿë~ëy :NlnÔ!ýÖOýö3ø!ÝÅ,¶ ¸žaâ \pýp?þØ€ëÅ"–Xü®C®gWBüuHÀõ<€ŽjQÑ!×ó:¯EyC®çE¬­¶'±uHÀó ©"ê€ëYÀ[±™S‡\7‹À!ê9$àzî€q ± xþºPžU¶€ë€ëy-Λ€›y)“œ&$àf^„ÎÅä¹ ¸™Q¦â MÒo³8DYlH¿Í¬ß®´:MH¿ÍÜçbÝ­ é·™'Ày,ê9¤ßæ©ß,ƒþ&¤ßf^„.Ä€£ é·YÂêìeÒo³8„•ÚÚoBúmæ °·›~›ùGºuÒo3wÀY&°!ý6s\梞Cúm›Àâ@SÒo»û#±æÞ†ôÛÎ XQ>h!_€Cnçp,݆ÜÎÎÇÝeÂ!·ó6ð6¶kº )¸·ÛÈná6¤à6Ÿ­í^¥ )¸§ÀX:kC nç5h9jhC ngG©Ýó·!·‹%h1mC nç%h¹=Ù†ÜÎÇ(sÑó·!·‹)p,Ú7¤àv1Ç8Ú‚Ûy ºû:¤`=/aåâØŠ)XÏKXEj‹P‡¬g—ÊîÍtHÀz^‚nÄ>éW/–°ÄQHÒ¯ž—°2m8tH¿zAw…Í Ò¯^ƒÛ:¤_=/a•b¬CúÕ‹k b Y‡ô«ç%¬\ÖUH¿z± ,F²:¤_=Oµ˜>ë~õ¬ß4²Gg:¤ßùcžEÔÚ½¨éWÏ=pZÙZèBúíæ)p&Ž«v!ýv‹cXbÉ® é·›§ÀMfÇØ.¤ßnî€ue·oÒo7/abK¥ é·[\Cj쾬 é·[\cТBúíæ%,%Ó é·{ê·¾#laCúížú-šÊÖ`Òo7㈑nH¿ÝÜÿnÅl² é·›·€‡Ï§YØ~»ùƒó¼<]Ð…Ü-B'vÏÐ…Ü-6K…*tXͳx[ØØ€‚Õ|8Ó*·±«íbm_‚P¡‹Àj¾\4­H7 `5_ÎjûÒ¥ ]VÛåEBmc VóEà<·×¡Tè"°Ú.FÐImc VÛEœ666 `µ]¤L[P°š/—U)òP°Z\Ö’«ÅEà(ÝÚØ€‚Õ|8Ë èWmѳ]ýЮš/[¸Ð`5_ÎÊÌÖ|è°š/Û¸fçË¿ynot«Ðå_5_þµq!½Îm\H«Ñâг}¹K….ýªÅ¥ß$uÒêâÒoÞlH«ó¥ßb¸caCZ/ýU&ÊÒê|é·¨ìœ ]úUó¥ß¢²/u«Ð¥_5_ú­ŠÌŽã¡K¿j¾ô[4µ(oH«‹K¿½á«B—~U„õºð«æ ¿enxV¡ ¿*Æz ]öUóeßRÙ—õUè²¯Š±^C}UŒõºä«æK¾Õ6y éu¾ä[m;»=C—|Õ|Éׯ…´:_ðµq!Η{m\H£óÅÞª´/3ªÐÅ^5_ìí%jÇ•ÐÅ^µ¸Ø;\j¶°!Î{«VŒyB{Õ|±·ÚŠøºØ«æ‹½Un_ V¡‹½j¾Ø›vö^£ ]ìUóÅÞl«Eº!­Î{ûq‹ÍáÐÅ^5_ìÍÄyºØ«æ‹½YlRP¡‹½j¾Ø›%öC1*t±WÍ{³¬å iv¾Ø›‰ Å*t±WÍ{³<·ùºØ«æ‹½Y)Æ–¡‹½*Y\ T"Ý~“åÅ@ÑF!ýÎ{{¬àsH¿óÅÞ|[‰tCú/ö摬ç~“Å¡ÈÒÎsèb¯š/öæQg÷³¡‹½j¾Ø›g©cC{Õ|±7«³*t±WÍ{ó¼²uºØ«æ‹½y)泡‹½*]Ìgí³*t±WÍ{sÙãÜÐÅ^5_ìÍ»XÔUH¿óÅÞ"|]ìUóÅÞ"¶wÏTèb¯š/ö©ÌsH¿éâb¾lß~ÓÅÅüD”7¤ßùboQÙ‡mUèb¯š/öâA-ºØ«{+ûºØ«{+1']ìUóÅÞb¸iaCú/öU)°!ýÎ{‹JÄ«ÐÅ^5_ì-”èSB{Õ|±·PöEºØ«{k±ÖºØ«–{íÑ*t±WÍ{ mŸQP¡‹½j¾Ø[èT”7¤ßùboѶ~C{Õ|±·ÜníºØ«æ‹½e¤¯Bú]\ì QW!ýÎ{]lH¿óÅÞ2µwWTèb¯š/ö–•}žC….öªùbo9º·°!ýÎ{ËÚ¾C©B{Õ|±·¬íKÐ*t±WÍ{ËF¬U†.öªùboÙníºØ«æ‹½eW‹º éw¾Øë̵C{U¾8©EyCú/öVEg¯B{U¾˜ÿŠ5ðÐÅ^5_ìÍ·ö!nº×«æ{½qÛ‡"Uèb¯Ê¶̪Ð[5_°Mµ}ûC….تbq¸©¶ º`«ŠÅDT ÜClÕ|Á6íì×Tèz­*/\¤"Ï!!‹Å^™nHHóõÚ~òl»ÐõZU,'ÚÛß*t½V-®×Ê pèv­ZÜ®íÿŸ i¾]›‰Ã¶*t»V‹ZÅ$'t»VË ò¢®B:šo×f}„¶±¡Žp¾]›Uö10º]«·k‡X–ØÐíZµ¸]«ì…*t»V-n×ÖbÑ-t»V-o×¶"Ý~çÛµ=ÖæFèv­šo×f].°!ýηk³Î¾!«B·kÕ|»6ß¶¢®Búo׿‘}„L…nתùvm‰Î;t»V•‹£‰bº]«æÛµyd¿ä¥B·kÕâv­\ Ý®U‹ÛµâÆŠ Ý®UóíÚúÿöítþå:ÊŠtøc7p”zéᛦؑ}B½Ž2¯£ý 4×䨶åÔÑOý‹Mƒ¢Þý©yÑZÛQûm§ëKŸøAßnúòöunß~ío»·Ýþ²ÿaÔwù¶Íڪע¥ôüyÞŸnoßï½tÿ¸~ªÓþº{û©.ûõíø¯ßâüÛézüf°b²™Üuϼ< óµoÛÁ׫áÿ÷aBíæLuñ)kµh¸Ch—Hú¿§ž’?õ›úÚŸð¿ûÿö¯c½ØÛLu ¿úˆÔ{y\b] í8ZÇ1B¶=ôæBš èN»8» âá>È«MÅ8CÀƒ:>î/¡v è›@»ýIzö]¸M¹¸@ð‹¾îÜ–)md‰7õÓ*Xy8ñy¸_ß®û÷Ó·ë¿ô^ôõéF¼QÇJ¸¹îú87ªeü¿Úómæ¦ÓD¶ƒš;ÀxA͆â[õÞ×à›:µN^º:Ey‘ÊǾ°+‘-íT¯îŒ+!Øv ÛQôuT·«„Û¤H\½?àGõi…°ms9‘b¯õmY tÐRðïû£>| ðRõc¬ øà¥úw—<X~ªŸ$å  e ø=„V‚Ï^JùFË]´Ôó³×rÐ@K›ÐÕMâCRÉ]´Ôñw ¾x)¸>ì´vÑ©TÌéNZNŤR1×>ï;âˆ&•¤7Õÿ©‰ ÀûTòž‚ñSIÝÛUµ{‚ÔMeÿõãLš^-‰?t|˜ŸJæË¨-: —Ô¿1Ñk@úT’þ2vçžÁ2bس”Trþi/ªÓ2Îv6VöUOµ l °R+®ØPÃu¤cçb’æöØÁˆÁR¶íGêªÞ7v÷¤®õ¶¿öÕvë…ß/Sí©~ÄþÏÿñoûûÿü§ì]æöÖ`EÜ›‘‘íêüó¿þýߟXø©µÞ­Ê="ÊäÇŸá!…99ío{ÇÇ?ÿë?ÿç?c/òÒ·’ëä_þé‰\øø\Y%öºDV7þJ”`…'pªáB9uº[W#öùÈ:«¡#oH ÎK¨V¤›º Ô‹t¢…“þÏÊŠ)ìiIÖaO~¶Ø>r_¹ Fø‘‘eòâŒð"ãÊúª±Co.Ëšš.ddY[1 -ëêE8‘±e¨ÝUÕbw¢¹ .£­2º˜œ+Ex‘áeôªáCÆ—ŸëªDÙ+ ¹Œ.?C5"ÈØòsM…H'2²ü ׇt!ãÊçZíØ# FŽüub»(dTù\§éF•Ï5Ú‘NdLi¿VvCvý2¤Œ~ü½ð #ŠÉI°^d@½„ú áCÆ“ÓÚ:±— ONá:d<9­«áEƓӚ:>d<¹5kÇ+‚p2¢GþZ.dL™ò¬áFFã&T/‰3^œ¬¬{©®p,“+ÝØNJgÄòÈO°v„#gÈ29 ÕpãÄ—Vízøšê±W¶K'ÂOþÚ>œ³:3öijtÂÌŠ¼2Ê´÷u9±'¥ 2ƒ>„cúz]—{©¸”Qfôãωð cÌ÷u:ª„a¾‡4$Èør¹¬Ìˆ½PÊ3úñçDxÑåcõ¨Å–2¶|¬µØ.*Y>VŽZ„W>VZ„UÞU·ªVì‰C%CÊàÆ_'ÂŒ'c>‚5"œÈX28 Õ‡p!cÉû}MìËxu%ƒÉèÇ[#ÒƒŒ&&'¡*‘^d,½êDúÑäô~^Y)¶+OŒ#­2¢Ly V‹p#ŠqªáDÆ”Óù|z{ßÝO§U‹¦öŸº’‘eéÎ_G¶#%ãËeô´&GöR£’Æ8òçE¸ñeÊK°½„_Œ›P{ '2Æ ár\cFñª>ÿÔk*ɾ6P+t€WoI2 þÞÏëFbó\É(ôôåÏ‘ð"#Ñœ£P3JO2==ZRú‘iðÓžU³S×ÝQ¯jFû©ÌZÉØ$]úY/œÉ(åä/ÈáPÆ+é0¤áNF®ªµêGU«ªÎ¾L]+¸Þ¼µ&üÔ2n-ü˜í;uü­Ö Uœ]ªe4ó¹÷ç[8~Ƹë×±>†“(ÆÍ·ëÿm°¶}ìk}8ÿ"ö©°¿ý:˜«7‘Œ|)å´j'˜VÁa¾ÔJÏÝíOïýúuú¥.­?ÕKž|yRÂSw¾_ÂPS”/­ÆáÁ½> g,/·}ÓÓ¯'§ß²&~x8|ys­Wà}éwé«›6[ajNƒÞÔΗÁ&¢(O¶)G³ïìI§•£‹ž-kæ@ö’H+‡½ÿHàå@bÈEp$|8 ®ïÁ ð ‡ ÷Uã{­ª•#†{`À!àr˜p^70³[9H8‡b/G_ëªÂ^iåPà+T/{þû_ê QÃr°rèk¨[Ùñ‡º6^; !ûËûnÿ{m{ÛÇßµ³2{óçJø‘S–‡Ÿ•ío/°h[Þü¹~dtY7²çZ†˜Ð@GÀetY1•.dx ]¥'´ìû)òpÔê·úØ=kwrÃòìxmŽEÇn<¾ªöµŠÈÜŠˆÝxüt»:»È®ŽÛ‡ßÕ„³‚ØÆí«Õ&±ƒŸnWÓ!wé»1¸}¹zÁ\"vcðíÅ‘ Ü|{5>Œ~evÝüûe¿`h»Xí_ ;`™€Ÿ~Wç·ùuðûîõƒQqìFà…çÕyÍØ ÁÝ«¶49vCp÷â8Þ¸vp÷ê8Þøµ•œ¸ñ·{ux9úÕ›¸¸û«£Kãß]&n î^\·öà2qãðǃkk9v[/qãðÓíêZŽA-»qøé÷åZŽA-»ñøém-Ç –Ýxüae{ßq”RØ~Ýxüô»ZÓ`¸–€ñ«¬£µŒ‡nWk Ö0~ø=¨õµ`?ëÙ$n,þx™Ä`˜¸‘øã/“8$v#òÇ«$N‰Ýˆ¾ºì‘‚™RêÆâÙïjbd€n0>¾¼ž’‚9XêFãÙñËÔÈ5ܸ<'°–à†—Ç+¯qÌS72ÏŽ×6!˜>¦ndžý®æ˜?¦nHž¯æ˜@¦nPž¿Ì °ù”¹ÑyN`-7ÀfSæ†ç—×ÓÂ¥Fæ†ç——S0õÍÜðü—WQÏnx~uñظÕì9²ºšÁ<5óY—]°{“yN~¬ÖؽÉ<'>V³Lª374ýeV€Ý›ÌsFp-+ÀîMöô†÷£ßëýS_®Íeÿy[=9I¶ýŸbk'âéË#ï)¤ál«ÚÿrbÃÛ±Nb`±y§ÚvJ¦UÇ£º©5—,·ñP_é°w’Ev`Ýy‘Ƈº^^K£uÓÈݾL£S=Ö' A`1ZVÔú:€äZZ@¶ ¸Ñ~™À_`Ô”àpþÊñŽà›ãÁŽD”æ•c¿‡ÕÆIÄv¯ #îŠsev¬Í_9¾¤l’Èí$^9øtJ®É==<Ô³";Èçžó a•€Fn¯ñt¸‚5%`ÛEØGmÂ%IÜáéq'JÀ 7êãc;+< ¸±Þ:°³Â¡Ýâ…Øoë[\¹-^€S/´¸r[¼Ç;^hq0+À¹ŽZ\¹-^€ƒ¡ÅÁp®pñm}‹ƒ\öw뛼M¶w/´y ÚܪâHOØ¥lt7zÎ.W´z ZÝ —ä|Ð ×¢ÙÑp{}»ƒ3A…8ñn“×3Úg*<Û„Á¬¢¦ÂŸxËÆïlÖnü´6kV8´³ZºñÓ^˜÷{4¥@­‰°C±'QºñÓÞ“XáÑ–RéÆO¼±Â³Ý>¥G?Ö·Ø(Ýði/½û=‚E÷ÒŸxÑ}…gQx7ŽZËí+ŠÂû–—W°3ìô-,¯¨P°V]ºQt^. vH)˜¼”¾Eäp‡”‚ÉJé[>^Qn09)}+Çá)“‘Ò·fü9Áä£ô­‡Ù &•:W,Äø“K0•ç2I˜]`„[yn¬ áVžë!+¸F¸•g`µÀ·ò,¼À,0­<ëabnõʬ߬h¯º6&Ö³«WfþãBôºTìåíê•IÿÇ ÉØ«ÝÕ+7ËëëLòò•{å«^·4©ØTåY#XÙÞàNRåY'XWïàFRåY*XÙšà>RåY&XÙx`¡D¹{®€UmUºm¥<ë+Û ì5)ÏšÁºZ;Mʳl°²­À>“ò,¬l+Ð(ϲÁº¶R ­|K+ó fæÊ×â¶JÐ+¸«¢Üð,窱r+3ëÆcqñ#èÜSQnø·3Vy•yõ]úX™YpGECn¯æÜ$Q¾ ër‹î‘(ß}UìB·H”ï²Çº`€îÔnˆ•wHV¹U[{®z¬Ë+8Uƒ5ûâÄ:¯¢À6š}mb•WYžK+©F€µçŠÇº ¾Ú ²í‹Õ ÆwµcÛ« çj°L«^éfÑM”Ú°¿_‹.è¾Hí¹×±’à¶HíFXqób•W™W¹£¢Ú°ÎM‘U~e~=÷9ÖåÝ©=×9V‘ ÝiÜÛ½6†C7DÏMŽuÕŠî‡4n€µ/Z‚kçöÆÊ¬‚KgÝv%@×ݸñõãµ =wãÆWq£`WÁÏuñ>Á*§bå¾ñÜÕXÙV`0иñUÊzGò7¾ÚGò×9må†Wq WÑVnxÇñWy•Õê×¹Ö̸ŒS{ÆÕ¸‘U•ºå7´_›q¡cò­[å1ùuníæjÝà*ɯr+Ú«u£«»¦áÀºYëyés%wÁºYëyØseálë{ÍssÁºYûÊÓcÞ³¡¥uíF_ÿÒúª4ì‚h7ÛëÊ!Ÿ`b¦Ý8l­*¯r)²éY¨]•M@ íY¦]“M@ Öhw/å,¦jßíšŒÖ £nä«R§hMJ»w±.Ψñ)2ê†Ýë‚‘xuyáuMVÁȼ°lMBCƒéxQÙž.¬ò)ÊîÕ®ò‰ê3x³-ä…?ßù„m„F¾‘WåÄïóÇ+² âxñؽœòË.f€wŽÝ‹«œƒKàc÷RÆçèBxÙø¹8ùêE«\¿?ý¯¼h•€ëwà%ãçÝËÙ®@¶Ý¸ûô¿6Ûȶzk‹/gœÏ/RX›up^¼><÷D/çœjì|o¤­Í88ÜØ³Ý_Ï98’Ø¡ûk/gMìÜp½û«â4[ŸVÆ[ðVñîEq·ÊvëFïySùå|7 ßn,ŸX›ñdÙýë®AÆÁ ðË5®AÆÝ(þÜ|™áîC-xiøé-¿Ýw ZðÒpû—³íÇlÁ‹Ãí«ÙvÏd¶àÁá…ÞW¿Ræ®·à©áå zåÃuîq ^8^ý‚Ÿ»NÜ‚ç†ålbuôËlÏÞÀ½òc×£cûlj ž¾¾ì7~Áq‡ÝÖºÍ\·à¥áöU·îùï½4 c÷h)óµè©áe[áÐxbšüžÝq^ Þ¶K+Ьº‘˜ðü¾Ý±] c».Ev}‹/äÖϵàUa{<·Â£È¬7î¾[w ׂ'…Ån…K‘]7æâÁ„ÿ–·ç„w«†Flàa2bó»c5ð’°=V[áQdÖ ³d”æw ÆgàájŒÌ|ï¿ÀX0&/[c²EV=O¿U0ó½Î*gƒå,,W1öO‹±× —ö¨ <,G]+|Úã-ðT°o­ˆTöH <,FZa—bt^¾¾àŒ®ÀÛÀÖè*ÌwéТíz‡`D^væÁ“cˆ™Þõ…uG;Ñ“8¯Ï /;3‚U~KÁKÀö^ÈÊS¿…í­ ¿èÖݹhÁû¿·Ïgº;æ-xþWœþ^³$èÞþµÏ~¯òis ¼÷+N~¯r*ˆå §«ŠÔÞúêZåT”ßQWURxJA½°Õ)å†Õß/ùtw«[ðÀï8€˜wZ†§¶üc©1«µí–ÿ©÷q6–³}÷°¿ìßwðžã½¨Ýþ¨v÷¾¥vß®ÿ†pnØ»¨v?azì‰ÝÈ&J¨½$ô~$P7D¹Pš®ŠðéÄÀh‘²>°õµÛ¿ýR(uس:ûJ§®ôÞ”bÅF#ðD‚o4¤RA,8¯og÷vïKpâF€÷¶Ý_ÕÛu¹P^‚…¿©º—µ=V¶ÖC½ÿ3ËÒvïbE€ˆ©Zõÿ݇R½ Y „sÇ@Q½ªÏ·Ú72_èé§»™no¹Z4WÎv¦kšn×Þt%þ×^ix޽z¬'ϱ£—/Ý©çL^$â¹,úêqãéì¨-°]î&²þ-8Ü‚·`A/ÜÕç‘[ð0¬Åºiõ$ P 7l²Ö^a‰„nœ¾²ä–\À{±Àÿ«‹…`±¼kñ_™¢&LêÁ»©/LX“G»È&ñmÞü•EË9%YgÁO•­\J»Ð{±$µZA"¾Yó«qk‘ŠÝôèáXÊŠå©g "ü¢—cY /”C¦&ØË˪+[<{*D4†gŸÞþ€áÊ»Æ ÏVýK ‘±*òÎÂíðµfŤœ‘¿º’S ïâ¿°÷ƒ6*ÀC±r!ì•…`ÔÍ‚§cykWÝ@2áMþ×–ŸAsxO_8MÆí>ZG/îv -:ð­}A}m}åd8 Þ¤e ¬½ ñœx¥,Hç„^­Åþ×.—‚4B+±¯¯É‚Š3¿0P\ø·C xà־꾖N™j‚oí;ï¯$kÈsb÷åf ‰xŽíþ•ñô"![Þà\ùHÀÚ S¬,Þ“¼¯J1Ry¿¶ù—êK±úò¼«ûJ8œÞµåy^÷ÕpÈñ<¹ûB8œÞ¡ÊóðîKˆÆ„Sà!^ëþùZÿlLžåuý¯{¥Sôºî_|^uÞàé^ûòÿ S¦ô9:S&ðŠ/KdE)PžW}_Ò\Jäà{ä÷eÍÑD<ïý¾¢¹”h<ÿKü¯}ð¤á{øÅÕ—tžø‰æö}lîÕÖȘÀÝ.$VxÆîöbâ…æÈžÂÍáö(‘Wª Œ¨À3Ãb>ör«»Ï̵àÅa”Ê+e"¯ù¢{åùŠÆe‚~wu…=§v…GA"/=jêË÷dÄ«’-‚'A"/>hºCðT°xdmO’­€W‚i k©¸a¥òj¥cðP°¸¼»2NædèžF ¼úš9¹ƒg‚¿ˆ^Ö<À Z%ôDÅ+MO ½ ¼®=¦g„A{¸al¯û ZJ¯ ÿ/~D1×÷Òð+¥HEùÞþK§¸ç„DABÏ[¼P¤Àà‹Ä¥ H€à‘b´Ñ¹ò(=*‰ÛØ#­WKÒ~Äû„ñ_ª³†Õ™ïîÉ_¡Ùt¤vœõäuÇñÑxÚóÖÊùþ¨˜G!ÂÎß¶Ûx‹èþøœ |ü¤ðÜéÛM_¼y› ä×¾ÿ{ÿGÎ÷HTÔL)OùüÇeI ”%é}ÊFóí2ôCÌùvýFÒ¦™S°Û|7n=îÇp£.\Ôî¨NÓÿÕG|Ááð{½Sê4ÜIú¥Þ¼—Àskê÷ïáÑXhÒÛí·Ÿª/úmßwHW}ÐÍí|ù#úvü×Þøt= ëYÇÌ:FÖ ³NuʬSd1ë YçÌ:GÖ³.uɬKd]1ë ¶Î–™+hN[³†æ´9hNÛ³…æ´A54§-ÚAsÖ¤}•}^ôUŸn1„ÞáÏÛO}¹í›^ù͹ïc¿}Nù»ÿçŸþý?ÿùÆq×ÖÞ‚Õ}}|í[}~¿¨Ï]¯Eê7Ùn#ÛoüŠßî~8Œã$â;¶}'áòz°ü‰²}¥!_W}ÜûüÕ¶¿,äOÿÙô=†ù_êòAšITgrû㮯ŸIgû,B>ÇÛ׿vûñ"ö©ÿïî‡~XX_Tó¡oÏ›ÕVSE¹FJÃÜØF‰|4C"ÿ„)ìDªP"»óeÿûÜÿï}õûÏñb¸[Eñ6¶³o¿õ”¯ûéØé}±B2TËNºAŸqÚ·À™¢úñØžïõA¿Ýö‡vU¢ îI8]€ª¹ôõ¸"ÉÌE­I,_Àšóéûyéà ok¼Õúpþ5¢c„.ým‚W ¸h’T9ÐõÉÖžv a_ë„À­¯B`½]ú¡cåoûÛἆUG¯`Wìo¿Î½@n}VT«/$Ls€÷Ã×çÎ ŸR v¤úøÖªëîÛç?‚䢔&÷ÀMé;V}ò¥“ðtNV:ÁN¶'@¯£“þöù ³É:šÐõS5CÓÞOíð]™óE?Ò vÆ¿Ôϯÿó„G/nêÁ®Û}Äíû®»¤8ê‘ÔKSâÁ÷‡óÙöÛõ¨ÖRhsýöwÿñ/ÿ7´šE“½g¹sÂ:kYþ[°ÔøÄ‹uÆ,{–ïio¥'Ö9³|²'ë„3Î^$ÌŠ Ç—-ç"Šj)P9ñó¬÷¨&Ÿh͉þ×à«LM&žùÓì´Z:åó¥>î-2J¦EO¯fN$³Š&!Yce–ÌvfÇ-Ê.tÜ.3šÄ<‰nÚGæÜ;AÈ´U„ÐÜdN*Ceñ'ÕMÖ§û±6h‡ýΑ–½É¢Q‹dù#2¨ãðY[uj•íuàüÔµ]û+d¿-¸ü>÷ë´û/CÖ¬ `‹:O&Ì®#èÓÇýé~5²±avߘ§Ïƽ^ÿ¸íÔi‘ž-îÆTòø"ï­ú‚ù±ÚÆ>Šî;óÕ¢DV1ᢇî©o×óaßÞ¯ >³f0ë¾á¯‡yy*„Šö|¦]ó^·Ýöv€ÉÕ‡~ˆR&³aõ3Ø=rØ\W7çÔú䱞߅yáEÜéDÂÄŒ ÿèì~ < õ#®_ZÌá«gjãtçTäí4ž¨>ÂOîÉ<Ï_O|© ,ÇÃÏ#d.ǾïG/êýØ7ÏÓ¯]«ÏSEãç_ÊM sóðóH ·ªd½wÍÛìÁÛùé•W¾ré¶Ó´RiµÒúlw¼‰žÙ®lß뾟iù5þ@¶•Õœ«³my[>³]Û¾×}™Óòkül?ONO]ïæÛxyf¼ÞWå\x6AÖŸ's®÷ûzõd1Îùàäẳ]¯Ê¶p;L/žK1gŸÌ'ÂלQtVñ&ÐÛäpôô¨ùų)&ùYóãØæ£äkÒéŸí3¤ñH?^•¾ÿ0µ“²1÷¦›Ðt—c_Sng‹ Ö·L?]•¾¿ÜNÊV¹qº™H÷—úõ׊í¬öÓb÷IÎò/Z`‘„ì8Æ$Bmà$ Ú`á_vk¿;»¬¢GDd±â!Ž{«–Îe±ò{nþíFX$¡d±æÃ^nv#,ýË^båǯcg—Ùy=ÚYÉ~"ü™ ǹ_=]ËNbÝ.ܼËQÔ3Ù#¬øV™ë^Ž•žÞe°öÓã±³µ.jÿc‘ˆì¬»î­ú_:—ýÀÊ¥¸ù·[`™„ì Ö|/ÎMÀnƒ¥Ù´jÕ5ÃØ9N Ú U•%{‚!  8έX¸vûuÙOœ_nOöLÄí BpÝËžìé\vk¿âZTº<[Xöáï™:¾­ÜÏžeð{¸´¾&ó¡•©ÁÑ”H-»€1þýËOKç2þwÕ×” ´Æ48z$"{€1‘Àíwo –Îe`JþèI -“½À˜Dð›þ´ô/ûóªÕšV-yžÉÈžÀ$x*ËßK÷²/˜Jþ:E¨%–‰ÈÞÀ$ü|h -–)Èþàºî®|Zˆëý<’ýÁDàI43Ì®e0æ>ü˜E¨ æd_0$ª~ǽ¨þÙ»ì Ú••Zlç$doÐ+߿ܷp-»ƒvUå‡õæÙ´+*?°t·ð.û‚ÛºÑhZ°›W=ÙÜÂ_Kñ$f×΂Ѻ¥*‘€³:´â»ÅŽ{¹$ñô.û€ß++?´ØØÎ[ßì~k߿ڸô-£ÿïUÕZn\¦ CÿïõXo\º—qíP.´Ð8¶÷Ã9ÿºâµŒûcîÃ/%ª‘€ŒûC¡ÚwÜÛµ¿ð.ã¾ùôÊšê­‡ŽžÉÈØo’ |ÅÅÛ–{ÿ§R›!´.ºL¤•}€I$ÔµQ+ÙtëfdihFÖ=æM­ìºðãgÞV˜=Ë^ [³, rn7Àì_v]xMÔõn×ýì\öÃ똫ž¬ T|ïç‘„ì†$¯…zk~áZöcîÃyª~‘€ì†Bu︷ë~á]Æÿ••š7s2þ+ß? ^¸–ñÿcUå‡&Á‹düÿXQù)ð»ŒÿkßÌ ÍŸOCéVÆþ!‰À“šÞÊ_¸–qÌ}øÍÑ@åÏ hó‡B•˜ó.¼Ëx\¹“†¦¼Çy£AË¿âISÿ¤wé\Fýµ_x ´À2 ø+6bÜì6Xú—±|ÓqM#„¦¾ƒ£G"2ú‰^‰ô6ÂÒ¹Œÿ¦á„°LBöc¡FL€—þe°r[8 Í€w.^Ë. ¸'ìú›aϲXµ! r.÷Âþe°b7Øõ.·ÂÎeüNá­z31Pñó‘;-ãÿ„¿æý“ß…kÿ­O)¬)Fpiþ>&¬ì^ø¾M`Z‰R“Ä×Ji„ægÏcì!V¼Äï-ÆìYv_«¤š•ÍþeßðµB ÙìÜó ý_>mÞ¶\<ÚJzqD<ÔÈÜŠGÌמ¦™ò|$ñ/Ÿ©6Y[°šfÎó…Å¿pàšd‹œG¥™r—¥™Z}2Ùdí¥ãÉ4ž§þÿ±e’3~v™æË}nÖÎ×êj h<ŸŸ…%iÛÓ–r÷í·¾œû¤Ú>­Óùú¢ÕÇx'EkþGŸTýxö þê r¾ 59^\tÛèÛp]ÛàùåæÿýÏÿøOÿݹÛÜmãúÇý|óbc›,°ðêê˜ØÀt„÷ŸÀÔf ¾úøDf62_ Á…Ù',·aÅöy¾Þ.çÏ¸ÂÆ• ¿þDOwÀg ½Þm«…™ç.øÓw%}ÓëàÝV-‹ë\~ºTvaëe«¸·„Ÿ°Ú†5Ë<Ù¯ÔI½÷m{°ß2_¸èì•Ö~d\<âÕÙì@,öÎ\?¢â¦`%JR½ì‘{³¯K…¼Ü‘{ÿ®H…¼häÅÞ–ëGQ!/¨vUe{i‚^¾PõjQ1mØ ª-jF‡Ý BiQ5]ÐÍ å¦± Õ\7ìöõ>øû¼ [ ïºíçÝýÒ¬ÄþÅ¡³½íWDž¼A"Ûr(bRØÞv.’×ÞE.RÒ¶´ñ0¤Ìã`ooø¾xò+ÐH…/ž|À´·q _(ù€UhïÆ¾(òê°¶ƒYá ¨kÁloì@•XÛB-¼aUbmK´ð T‰µ¸ o¨€•(xà °m”(<<'°m”¾PpC•ØØ<(}±G8;”¾`pC•ØØÑ ôEƒªÄÆ¥/œP%6v<(}ñà+ÑæAé‹'X‰vD/}ñà+QÉN°µíÀv°}ñ`‡*±µ{¥Òv¨[; ”¾x°C•Ø "ùâÁUb+xà‹GT‰­Ý •/a%Ú­PùâÁŸì½úÊލµP*_<8‘—̓Êð@ÒŽH•/à!¤‘*_<ÀƒG›H•/\`ìž©òŃ â¶CZå‹X6•+_<¸@Ø!­òŃ ¬D;¤U¾xð V¢Ð‚/œÐ¬ÑáT0ü<ï›Ðx½­ ÃÂpÒèUÞì¦U˱S§÷ûðhÖá /n‘¢Ç6‰ƒh”~;.#×à9šýÒçàùñ˜¾À÷G1µ»^ûÿÈSq\Z¤• óÇu¾¢´’5%zÑSR)5>íõp,JìX¥2¿‡?šþoƒüdþÌŽè·ïýßï¤ò@R»þï%•¯IÊ §¤ j|Ûèû ¥RøSi÷ïúþX\S¥Ÿ<•r Ÿì´*j}éË|@©TþT#nr¯üîÿàÚP+RÚ¨‰û¿G”V½&-ƒž’jI}ö?QRÍš¤êþoýHª $Åß®Ii©wHè6¨àE¤×¤uàĺP‰}Âĺ5‰™0‰Õ S±cÁáqÔÓŸÔ28Ô¼³aìKí!fÍ{Fª4Ð,éTód 4@ÿab‹•ï?ÆDqSÖ«/K³$nÍ»–„=·ªyç1‹y t¦J–å=ÇÐ˼£4ìU¡šw ¬/M²­yo0†¦èLMX)ñŽ¡ôÔ@9ú“½)Þ| |ÀÁÔ[M)ð>€GÊ4ÿ—1²æ‘ŸGÇ4ö­¸È#>ˆö”¾áÁ Ìa¢ÔžÃ4<)0 ‹2{6ßðƒfÒQfÚ†‡/œ¼=•oxÔÐ`eö¬áÁ&n­®Ÿ/œºò./˜¼½ˆÐpîÃÄí(Öpb£©o”Ù  §í/ÜpöŒµác3„ÛSÔ–s-ŸDö离–“¬\D™½ðÐrÎÿÂín¯;´œô¿`Ùm½·œó¿ÀÂM”Ù‚o9çÑÒU”Û‚o9é5„Û‚o=œG™Ïm½·œómË][7ŒžWYK°b7S/¡}Ž )'’[ž:;o䕲٥—GÌŽª¹ô¶Îy^EO OˆÉ×ò”Y}9èÓx¨ç*Ï^?öOkpH/Oœ}é« ;Øéåñ²_gŒŠåο^޵†Ëà×á^÷îöÌ×\”G«ÇÙV4ßr@5œ“ù¥.íõM].ç_sk<áQe^/ ÿ mºë%ÝÇ4!¼Èû’ïíù×) \ùú šéØ;ª6%ʽŒðæøÓp¦ý±b»ª«¾íßjWý@âtzÜsW§fw¾˜{ö†¦ ”b¨«þTu£Àšûÿò¸?yÍ·sý]7··‹þìëGíG¿}jM}ÕµßV[GÛþÿ}›2ÖϘ¾Uô[½Ý–óðL"HÊyP"1Äå €<šGB@´ûKÈp¡£·–•:‡ˆ4{kY± œFñÖ²r—¸i¯-‚¨ "ëËÁJ®0¢xûÎJ^ã’çoßYÉ[ÌÁÊ¡q‹goßY9:ˆ(ŠÅa¢§é⼈@`¦çÅ⌋@`ªÛÅ‘À\/£Å1Àd/·‹VÀl’ņ¦@`¶ÉbV 0Û£l±ç)˜íq²Ø§Ìöm¾8å ˜íqº8T ˜íÉvqB ¬¨xqî@ °>²lqVB °>¶ÉÛ'+9ÑGüöIJc}$ÕÛ')yŒõEý0” °>²íÛ')yŒõåo?HÉc¬¢|ûÁJŽõGo?Xɱ>’øí+9f{¾]ì‡ f{\,¶Ÿ‚Äöd±e.˜íÛx±C-˜íq¾ØUÒD‹SrAØ^-¥ f{-ÒÙˆ³=ŠçÖ³=+gí‚°½ZmÌömº8I&˜íI±8ý&dì“-› f{^-È î ²t±z#XE¶Xt¬t»Xg¬4^¢Ìö¨xûÍÊÙ^¤o¿Y90wãíÛo’«s7ÎÞTL˜»iò¦‚ÀÜ-û4H›§˜»E?eM˜bòVÛÂÊŽÙ›–o'F­Ó7î;¶;«/Ìß¼ï=™SBà>0ÒVÁ NúxM›S8/û€ÍRÁ1>Ïû(Ä ˜öeThSbÞWÑø®„dõù0H«$Æ2®ˆq ŒcRØ,ÆCX…Æ)0Ø3dÌòœãá¿„Æ0Î g²³VÀ¸`yVÀ¸dõ\#c–ç³Úh‘1És¹`ÝtŸëøV÷ÿC?}:H„!C¿ÁA1õ“y=U˜c²á¬}K@) ³¡b™ÐñízS‡ÃþÌŠ•c`Þ½iÊ‚`Ž} ;L‰1E7|Vî÷³º`E€Ç7?Na\Ù'xþE05ÁôÏŠ5rƒAU÷ÖЄZ‚éÿÞÒÔ,~í4­†ƒ¢a‰ý ¿0ªÂ¢Šã·óax¥ƒ°¬âäíú¹o˪û4_Ÿúr¿ØBYÇóé –‹ØdµJ1¦|ί² ++Ù¾÷¤¡*¬©~†ôkÏÖ)*¬©„ߪ„eé‡}ˆ`kU…AÙÛQ³e…eÔÊëËùÄÆÀR?{?HÜ«°ŽRVXBi?Á8ŸYÃ`¥¤ª°v†q2WX4Yô¶;_HøUX3)´ÂjÉH¯«pÿ“‘±‚ÂÉú‘åGÖGFÆP k##ÃD…eÑO¹›Ãy>n#@¸¯ÉY»á&ˆ9VD?—xW—a‹†À°$òA±ÇáÑTŒÂ¢`£=…E‘gÄë!'zPX9iêë!'M]c)ädÜWc)¤‘k,…‚4raAE0¬¯ŸOŒ¦5–BAÚ¶ÆRè'¤·á¹^ŒÁJ(X‹a%¬Å°Øì¢Æ (Y‹aê—¬Å0õÙì¥ÆÔgó—S¿$mÕ`ê—D‡ ¦>›ò4˜ú©ÈS¿ŸÊïôá¨I¼j â~´ÙÏ·ëv² ÔBÜèjuÛÝî5A5Äý8ëú©ÙØ»šˆû‘–9³€AP1j5Pq?Ôºþ:_È`¦ÒˆÙ2D¥'$7Pq:ÎôA·ã)ý™5-”JÜÎü0(™8°·®ÿoH$j €â41YÆ Ê(N‰ŒZ(£˜ ïÚ…ŒæáNœútY°…bŠS"[¬"¶hÔbíd$æµX3lôØbµ°Ñc‹u’¥o­ºŽ´X,k1,¶LÖb™°±f‹eÂÆš-–EÆÚ Éá§¾^õa¡²#R:½Ã !,_•øivºùX|ùÂq^<,§/9–yZFKÓR˜Ž_’yšÆKÓJššOÇ<“¥±Ææ[1OÛti[KÛñã0OÛliÛÛñk0OÓ|iÚJSóù—§q±4ÖÂxúÞËÓ¸\wÂØ|àåi[-l£­¬5+Ñvi9¡O·¯e{Xæ±Ó û‹ežXæ‰Ó$¶ujY§N£t–ufYgn³XÖ¹e£–±ì Ë^òylœ¥yi™KNÍc™W–¹äu¯–·ÝýÔ^ú¾lÙRHò»× Å6H}T€%6Lr~Ð@¥6JÒP@e6Jê oHÊmÔÃØžVX°XJclV+m˜TÉмUÙ()–¡•o»ó}üvœÕÌLŠfhg‹LªÇ´4&(…4¶5À¥'%5¶6Àe'¥5´7€å&%fZ ”b3m€¥JÁ­p•À9šÃùŒ¶'Egb1k{ *•gâ2k} *å7ÆhÖþRjpŒ×ŒKd"e8ÆnF )•8ÅqÆ +õhb:c‚•š4ñ‘Á‚>éþ˯VWýv?íoæ†I%¥°ïö—ëííz¯=˜J`®º9û¼ %@gB˜Zf®Ã}=/èÉëöòõvÔê:|ÈtM±ž¬>ì‡-/aŸ´~€VÕI'Q+*¥ļ÷¡öãm¸¬ø¹;Ÿ†wßnýß!à7Ô†ëT§¿=GØÑ[ŽEÓÈn­ÙØå9}Øö¢šÝQYð%8a`3žQËápšrÔ8\[À–:H3_jsgº„[øÜ‹Ÿ•h9°<ÞœS–ÒŸ uè£Ñ•Ö]ÅÐcá‚­±zªù‰[øÚK4Ó8–›fMCâÜX~Z_vAòc9Ò«˜Ardy꼞®·áû‘´u3†Ö`«u3Lë¢Ä-¼7?vëf4LX­‹óc9¢qc9¬bŽ,Ož²Ô?)œí‹Æ’!WÇ“ò44!;}Qú~ëæó û¡{$a;AdøŠÃç¾ï¶Æe‚ác7Ü(îÿ¯ý¹oUßAöÈqýfF.û§ ÄŠg^}8š¯‹>©ÁA?šº¶+ub‚å°  n—³þ­Çúòõ‘9ˆ è¸CØ‘ƒ0`CßÔ¡gçiø,ýøAyê „E{{3‚ÀqX’ #ìç÷Ìgà´Ê4c­e¦Ûj)߸$J–`O•Û¾°´UȈO×(ö2$ Ñ•ös ñEõ[kFËV°|±/4·n˜—å Õ­pÔ¿¨ÊU.€úuùºÞÖû(@8©?_p€‚Á²]ÑUôŸv]¬: ´ú`¾4ø=Þ2 &\ou›õåÀ­Ä¡á12¯­œæ- {RTäÈÞÑ0…?‚YwÛO”Èãÿ¶Üy(²7B™f|.*±æ}ÅCï_Ãæy@îÂu›¬×ô!ã©sóÚ>äznÀø ÛE… ÆW¯µ¶*#lÿÚ¸ì4/ši6(è¨o}Ó~ã‡T>¾T/Š«Yªñ²8ì{>{-8ßO{¿éƒîêk(ÃÏŽïrSµ?«ÏnîÒ׳?:[‘~•ß._õp (\e2ÿÖ—³£¥ìËz!ãIS@ùKI•J_÷§ûõ¼o½9yÐzj÷y™çi-×xÊ~¬w>î¯VuH£jûí2Üðz»ê?oêämº*šlï§ÆÏ‡*~z=†“Eî¿m:Ù¶ûã¾ü®ÀdÿûaMÎo›?ü÷ãöËþî¯b2þq߯°.ŸÅì5r¹…Ì«GNîŸç¾µÖj²V~³z2Þ^»_öÊD«æ›ºŽ7Þ8$Vêݦ{‰7u»ìÎĺÝ~ûÜ©ýõÖ‡ªvmL?÷©Û¾Rúü–¶DîÇ~^¿Óª%°Áú™òí|ölÔçm˜AaH !»ý¥‘!€¹n‰9L–1¢@ˆwu?ÝSÂ:Û«‹"€ ¦Ò @!@MÍkd~Ýí5­Ù6Åá^ûÙ÷í šƒ¾ŒÆ˜žZÍt° Š”[C¥ö¤ÐJ¤>Ÿú¢NïÒÏ>ûøpùê¦N„ïJ¤=ö÷#A`…œ¤Y4Èõ°§¥iÎ}˜ ’ÒP µÖ;ªs õÑÓñ“ØCyŒ×ß°=TÇnß²ü@y Wf¯oÍj +D‘˜ ¡@†‹ÍØjC«÷+TF{fmÐAiÜî§Ó`qhæÊbƒ¹Y„QP?÷LAÔçúüîøb”Äå|^`%(ŠÃþÀª Jâüg?Jf­ƒ’èwš'¨‰~èþ|ÃÑA@U 3ò¾zwæ[°²¬AeüR?¿ú 8‘ØÛA} ‘m?~Ú÷\Ïa3fxÓõÛñ_¿ÅõëÑö÷¾¾ša‰A>.ì"a‡ofÄÃM/Ë_4Ї+^¶¾Ÿ—»,Ãwb— ;|'(žZ°ìð•ëxx^Á²Ã÷˜âáIËî7±«„¹O&X†ß‰]-ì>ˆ]#ì~»VØáë@ñð‚e‡ßšˆ‡7,;|ù:®$Äa%)xb%ñÛJq%9øIì$?HUW’ƒøÂ\\Iâ÷âJrß÷‰+ÉÁ3”$$ï¬Ä•$¡f†’…„Õ•dáŸØ®ŸÚõcÁp#llc3ÒÞÎÝ­G³[蜴»¼Âõh~ \ö—7¹4°À%ãÂæ6¶ât@èÂFc)‚ë]rXh¬J÷–׃# ðP÷çCû¶¿©CïÀ;¹K¶°­ñH/ÙÆÀ˜||"Ù&À˜|k$Ù¦À˜ÙfÀ–¼Ñ˜ls`L^ñK¶0Þ1ãߨu¬ñ`,Ù*TͬkTsxFldŒ§˜É¶EÆx>“l52&sÃdÛk<ƒM"Äfò ˆ$Bt¾²F‰ ŸñÄ ‰ŸÉC¸IùŒ'dI„MÞãI"Dh–eÄgýÁ²ýIëúƒZ#JOW@cHé Ë6âtC3‚HMfEI„HM&ŽI„8­É$<‰-V÷á]_Ô¿QIJç$qŒüâ}'8~ã=‰Qe~‘šQežú¡ßN_No7òeŒ$FÕz=ß°~Üù~¾íýߎ|­#I"aZ«ýåƒ,×&I,¬ß÷5sœÓV½:$©Ìî~÷“¼œ$™0þÑg¸бläÂ|'ŸÊJ’B˜îÔ;éJ’R˜öÿ÷l´$I%Œõž•M Ëû•|*Ija{Pï´Îa{T'òÑ¥$i…íIõ%c޵0þÎú„¤–wöÚs’Jö~z[8• ~Ì"þö0^N"’TRø¢öä³qI*9|Uwò t’Jßôþ+¡äð¯ý‰±2•îzu(œJïßßi$…w¿új&¶’ÁýP¬$‡íaû¢Q–­’™ás¸1‡…²×äQÝ$‹õ»"½^–ëö̬S`M‚r–Ûß;ê:GñØȽ"ß*J²ºßSû س¬(`ûqfs¥¬æÍœ7Àú¨Ogæ½ö'½ö?Ï´Ú;`þ©YîsÄó µFD¿²[Žˆ~cDÏÑI\ÉÍûQæP ÉÕ¯;Z‰9âúu×xˆí_4?ˆì_š|ó,É×É-G\?3cÄt6ÈÑwDž9bùíºg%„$g}wŽ8þŬ Dñ/öɤ@ÿ"¸H Äñ=‘r(þEª¤@ÿ"Õ] ‚ï™ñ°ø2ÇzGF™;¦ä{\IY8¦¿yU” Ô¸rŒoäñ¤TŽí×ïJ'eíÖ°"Á°lÛënOƇeëÔ‘ òKíXÙª`Ù¹ MG•ËäÓd¹r‰ü›ªÊ¥ñUÙ iåÒX±z«\“»&•Ëá«bëÛ•Ëâg&éÊåñE]™ò*—ÈýÔ„Nn+—Êï;^.™ÉG6“Êå2éï*—ɬŽ]_ÉÇJ“jAÌñ=Ñvÿsßö]4z4QÏ.úºW§éV v¬"×””LÅ®)É®J\SÆ`•[æ7smߙߨ2¿…kû'ó[º¶ ³­\[¶ °eMQ»¶,¼«زzh][W•¶,¿°%y¨yo,>Ô€¾,òÔ€¿lu³î˜- 0 P5 0ù¬xR³Õ˜| >©ÉGÝ“˜ šk@àŸÌø'Ë/ 0[,¬Ù4°f£Å˜-¹7€ÀäƒÄIøK;ÃøJsLF¨ûEÕïV1 `ÆŒùôJÀ‘EóØòg_Mjx8`ÏøØÞ´j÷¥ÔmÝ60þMZ&À£Z±n©Lªï÷ãžå©µéîý[›SËŸ«³ËÝ·6FöÏç¢FûxiŸ@ûÇkCÆÿrñ·MqæàÑœ†…ÉÆ]f¶N gkZ}Õ}n<ÛjÏ Â¹Ÿªöæ¿ì ë1qi ‘ª!´2ÐØ Uª 4ñCw[lêÅž!´1ÐÌÅØÖ`s†½îΗ©dm°…‹k¹3ØÒ…Õœl ¶ `a='‘+?VVlÀbpbÀ «/K ¬e°áZ–˜f°_wË ¬c°/ ›3)F\D¥ŠÛ¨4¢*ý$©‰FT¢5Á}FTŸ7‚3ÚŒ¨6[‚3ÂŒ¨0›UFT•ß Î(2¢Šü $3jŒ¨ß1.5JŒ¨‡ur3Œ¨ââ¥FÕŸ¾Až¥Fz•Þ´CjÄQñ ¤Ìˆ/¢âûM’3ꋨúÆãigÔSõýfå3Œ©‡ý3ú‹©þ†Ó|fäSù +xfÔSõ 'ü̈/¦âÓÀ3Ú‹©öΰ3Lôb*= ãtj”ÏÊ3ÂÅçoÐ ŠÌÏÆ Y8Z#t4ýl̨…£BÇÓÏÆŒ[<è‚'ÓÏÆŒ]8üŒÐéô³1£³égc0þó¸ð|úÙ˜1Œ뽘~6fãÊ/§ŸÈøà°æ«égc3<¬;5ýlÌpƇøzúÙ˜q Ä‹l¦ŸÚ@ä0r‘íô³1£ˆÆB.RO?3¾Èq8äB»égc9Š(ÚN?3ÊÀO˜fM?3ÐÐCãégcÆ:zÃÐdú٘ᄶšN?3àP3@r±Ùô³1ƒˆýŽ¡ùô³1ãý€,ŒŠégc†>úŽ¡åô³1ÃK.²š~6f‘?qQÕô³1c œè ±ž~6f„)A§™~6f(„“½"d;ýlÌ`"ãDõô³1ã!’(,k7ýl̈§ŠËo§Ÿád/M?32ÂÈBÆÓÏÆ Ž0òˆÉô³1ã#Œ×–f´ýMŽž¥¹ÃÜé“:ÄÜ!ï÷{ûÎŒúþ"§+ÓÜaïNýA–õÓÜáïá|À‡-ÒÜ¡ïqO¾Nžæ÷øØIš;ôÕ契s‡»Š¬Ø§¹Ã]Õ²fs¨{ƇÒÜaî¯ó™U–ÃÜó„¦Üa®b¥rˆ{9+|F0Íⲓ1iáW“ÃiáV1Êe÷ 3u({'¿pøzV$Š]Ïgr13-ºžÉ%„´pøª~1¯._Y0(¾žI»]Ù‚´pøªÉ»iáÐU].ŠÄÄÂ!¬f,,ÆîÉ•ƒ´pû¥I/·ßÎý°âô¥ž¹=3¾iI[rà -ciIÎs¤e"-ɉ’´L¥%9Ó’–™´dg!Ó2—¦ýœÐµ,¤-Ù·OËRZ’}í´¬ËÝžœðJKåd––«–¦úbniKv{Ó²•–äIZjiùC‘Ó’iÙ9ÍEm+‡®ÅTP9t=Òª­žî,ÆWe)¢®Êá,k°Êá,9Ve™¡ÃW1+‡®øìJZ9l%Êa*>µ’VOÉ ´rXÊ&•ÃR6ÌT3›Ìƒ-Ãw¾þјnÇ ëHX‡&ãhü·0Ž…ñxa2ŽÇ ãD›gv&ódü·0O…¹ybg²NÇ ëLZ7‘'ëlü·°Î…õø´ÎdœÿÆ…46ÏêLæÅøoa^ óéIɼÿ-Ì+anžÓ™¬«ñßl=´»ö#(gsm>´fûg8o1p££5›?ÃÁ; ‚»1­ÙûŽàAÜ×jÍÎÏpê .•ÙøNå!T³Ã(³í3œÏC(½c8³ï3œÕƒ8ˆ1›>Ù=ˆÁU¨Ífëpz¡pö´ÙjŽñAÐF™Öá@BA^h³É:ìC˜œÙ`NøáZ'0³Á:öƒi‘R™íÕáØB0Èì­6DWG 2Âjˆ°Nd„ÕaÁC%ÚȪ!²:&]5DWŸ8{FV ‘•Þ˜ÑUCtuÅ #ª†ˆêJ¸ndÕYÝ ¨3ªjˆªôŽÀŒ®¢«.WgtÕ]õ‰œÑVC´u#Òu5D]-Aq5D\ðÜPg¤Õiý iµDZ${F[-ÑÖ;AqµD\¿1Ȩ«%êúM’2êj4´·7Áju½~6¦{E0´>^GÓÏÆt°‡VóëxúÙ˜NÑNIL?ÓÍÜØ'»ÀtúÙ˜žÇîÕfÓÏÆtµ8õÌ.4Ÿ~6¦ÇEP+¦Ÿér Wj9ýlL· €8ŸÕô³1/Â}A š~6¦÷@ÈšzúÙ˜þÀ>`rÍô³10l Œl§Ÿé„QЏ„zúÙ˜Ž×M?ÓÜášíô³1Ý1À .š~6¦K8t¢‰§Ÿé“ R­I¦Ÿé—ðæ3~6¦c†Mˆ‘Ùô³1½3@^!.Ÿ~6¦F8¨Š¦˜~6¦ÀÄ•ÓÏÆtÒ°ˆYM?ÓQ£qÕô³1=5NCëégczk˜&®ŸfúÙ˜ [ l§Ÿé¶†iôô³17€ý‚ÉuÓÏÆtÝHû0ŸívúÙ˜Þß10š~6¦ÀßO?Ó‡#N0™~zàð–§>ÔêºXö†‹.Ù6’†ä ËlKK²ë‘mÇ’¼*—mSiJ.gÛLZž¨iî8¥éÒ”¼§’mKÇ’VÒ°c–JZ’-§l[;–ß™i#MiÙ[iÉŠ®¥!M¼“–äáž,rz`–CÔÔ¡(ÙÆÍ"‡¢'fé0”Ü¿Ì"—¡¬ž"‡¡xM4‹~’<³Èáçfé”lÞe‘CÐ 5uJÌ"‡ ì™Ñ,rJ÷Ì"‡¢ìAÙ,r8ŠWóء(y+7‹ŠþÉ,†â­È,vJ¶x³Ø!èoVôØaè;5uÚwsGrE8‹š²M³dxŽÿÞ¨ñêêA§åÞìoÏgIäAÕäE‘,‰=¨÷=~¨#Kª%²$õ 4>2”%™ô[]ðÞg–ä¾´ÈÎb–¾Ävä\@–”ØMá'³¤ò ²ï–%ʃú:ÿ§©²¤ö–Œ%ÖxPû k²Öƒb׫³D{P²gš%/‡'²'™¥>‰ýIù‘ú4Ö~±L¦>‘5äüD–úDö}wÆ_ ÊRŸÊ>hb>™¾öDÒ©Of;ýÅ`>ý gO²Ô'3EÍd©_fg–˜OgÍŽŒSŸÌš/Z2ŸÎŽ ÷+K}:ûA[Ú§³ÓùWC`>¡µ¿iÑ2ŸÒú`€Ope™OißÙÑ,ó)œíË2ŸÐn¼d>¡uŠt™Ohíoš˜Oh}gA„–ù„öIÜÏ2ŸÐúñÐéÑ2ŸÔ.4>¥]õcˆOj?õþ€g–ù¤vÛÿ"ªÉü}‹"™Olû_¬þ}Zë£>¼“å>©ÑãTYî“ZÏ~2¢È}Rû¤™ûÄö±gEƒ5Òìoê¶?ŸÌ·§ÐkY±ýösÛ}Üì״ȪÂÀ" «ktR «JŒ9ã*ƒK(®Á8ep)Çí0°6ÀŒ[Œk .ç8’`k€jtL!«´Á•aUÖAœÚœ¢¸wÈ\Cqpó1S‰ÁµG€©j „Õ©2ë8ì;®˜qÇ8+¹’ÎH©äR‚GF2e”Tr%Áó™2J*¹’h¤Tr)q’J®¤Æ%•\I'R£FI%W:z’)#¤’ é'g”Tr%ý€õY%•\I˜^m”Tr%]1Î(©äJºâÈT%•\I7Œ3R*¹”n$A#¥ŠK ÙÈj£¤Š+é'NÎ(©âJú㌒*.ôÆHV=T\¿qrFÕ‚Ö¡“C¿n~6¦ïÅȱ¯v±Ñô³1ý/ÁBh<ýlLŒ¡ „&ÓÏÆtºƒØtúÙ˜Žc[ͦŸéŠ '›O?Óc¬g†ÞÞülL—L YN?Ó)cd¡Õô³1ý2†¾C>©égcºf E»ŠCÏo~6¦s&PŒm§Ÿé¡1V°ž~6¦‹&Èï°žºégcºiŒ…Ðr;ýlLO¡èpÉ00?ÓYc(:&2ŒÌÏÆt×бÉô³1]6ÆaaÓégczm =Ah6ýlL¿M ¸Žóégc:oŒçT†‘ùÙ˜î#?a¢åô³1=8†þ€5\M?Ó‰c親¦ŸéÇ1ô ¡Íô³1=9ÂÀV¶ÓÏÆôæ{ƒP=ýlLN 8ÙnúÙ˜NcÁ¡ŽaÄ`~6¦[ÇÈŸ(Ñ*š~6¦gÇÐ?!4ž~6¦wÇPðŠÆ0t0?Ó¿cäo˜h6ý Ðfûívnw—ýb,€¦ùM$íÈU Cr#0kax¤–©°$ÏQgM& Ù^H“ Kò tÖÂðD-Ké’&^ Ëù¼Gÿ¿¶ñÛø1S¢$„¸®…¹Ž—50$7ü²¦•@-µtI.nfMçød¦­ä'«ÔVtG]J†’­†V”:”ü$OÁg­ä'yŽ9k%=ÔRò“m·’žìI+ÙyúζÝZÉJr‚¤•¬$O˜g­dåf(YI.Þf­$å…ZJR’º™–”¤;®Zròº#·ž3-II %+ÙÛñ™–´¼/£ŒQFK~’çÍ3-ùI.^gÚ ŸÔRòóOZ.‡ ÜT”ì"hIÐïÌP”<|žiIPz@;a“Z: e$éвO¢fä(»Ÿu’¢ŸL!ä(¹n;|²ý°?iÕ'¦·Òëí6"¶°ÅO–çÃïØ&Ä6¶)±MmFl3`›ÛØͶ%±-mEl+×6Ú[lY»ÕÀ–µElYµÀ–Õ™vmcV¶Ø’²E€¿q„_*È#@à8»Øy¶G€ÁqÌr(Ç,€Ã1i»p8N˜c@☈.$Ž )"@â˜"$މ"‡Ä½)>•G€Ä1]HœbF€Ä #& qBê7$NHŀà ©³P8!õ §¤bÀà”ÔC œ²zNIpSÂÉð7eõ ø›²úüMYý‚ œ±úüÍXýþf$@Ä€¿k Àߌ´Eø›‘¶H3Ò àoFÚ"üÍH[$€¿9i‹ð7'm‘þæ¬ÎsVg€¿9«3ÀßœÕàoÁêð· ºŽ"Ö.…#6VL ÷¦dXºŽØˆ.u)±qWêR8J"<3ËS—ý1˱CâÞŸ^Í3—ÄQND—¹$Ž BÌÌ%qÄŸ¹$ŽJÒÊ™Kâ¨bypHœ°Ijæp8aœÌ 'lŠš9ôMØ 5sØ›° jæ7aóÓÌán¦§™CÝ„ÍN3‡¹É¶"ÄÍâö¶„·™ÃÛÞ–ð6wx›°IoîÐ6asÞÜamäi“(!•;¤ímI%ä.i£„U‚ËÚˆð+wY~å.kÙ\>wY˦ò¹ËZÉs—µéWs—µ,æç.kÙò@î’–EüÜå, ø…KY6u.\ÊÆ¤µ —²l’]¸”esìÂe,›b.aÙ¬¹pùÊ&Í…ËW6g.\¾&¤µ —¯ k-—¯l"^¸|MXk¹|MXk¹|e³ûÂå+›Ü._Ùܾtùʦö¥ËW6³/]¾¦¤µJ—¯)i­Òå+[.(]¾²Õ‚Òå+[,(]¾²µ‚Òå+[*(]¾²•‚Òå+[((]¾²u‚ÒåkÆZËå+[Q(]¾²…Òå+[O¨\¾²å„Êå+[M¨\¾²Å„Êå+[K¨\¾²¥„Êå+[I¨\¾æ¤µ*—¯9i­Êå+›!T._ÙJFåò•-dT._Ù:Fåò5g­åò•­xT._Ù‚Gåò•M‘”Ã×´Ÿ ÿ$tråp6ÝFs‡·é6ö˜;ÜM·‰ÇÜáoºM=æ‡Ómæ1wxœns¹Ãåt[xÌ>§ÛÒcîp:ÝVs‡×iäkU‡ÛiäkU‡ßiäkU‡ãiäkU‡çiäkU‡ëiäiÕÚå{äiÕÚå{äiÕÚå{äiÕÚá{ÆÖj‡ë[¨žglm v8ž±µÚáwÆÖj‡Û[¨^glÂ_;œÎØntíð9cóòÚárÆæåµÃãŒÍËk‡ÃÛµ®þflNÜ8ÜÍØœ¸qx›±)iãp6cSÒÆå+›g6._Ù<³qùÊæ™ËW6Ïl\¾²yfãò•Í3—¯lžÙ¸|eóÌÆå+›g6._Ù<³qùÊ&ËW6yl\¾²Écëò•M[—¯lòغ|e“ÇÖå+›<¶._Ùä±uùÊ&­ËW6Ík]¾²¹[ëò•ÍÝZ—¯lîÖº|es·Öå+›»µ._ÙÜ­uùÊæn­ËW6wk]¾²¹›vùÊænÚå+›»i—¯lB¦]¾²ùvùÊæCÚå+›i—¯l>¤]¾²IŽvùÊ&9Úå+›äh—¯l’£]¾„„Úå+Û*Ö._ÙN±vùZ°&pùÊö”;—¯lK¹sùÊv”;—¯lC¹sùʶ×:—¯l;¹sùÊv“;—¯%i­ÎåkIZ«sùʶ¨;—¯l‡ºsùÊ6¨;—¯l+²sùZ²ÖrùÊ6-;—¯k—¯®×Â=°;\'¦._+\¯…{\w¸qŒM¾Ž‡ˆ¡©ÃלLÍ ÷¬nN¦f…{T7'S³Â=©›“©YáÔÍÉ|«pÏéæd¾U¸Çts2ß*ÜSº9™oî!ݜ̷ ÷ŒnNæ[…{D7'ó­Â=¡›“íÊÂ= ›“©YáÏÍÉÔ¬pçæd»²pÏææd»²pOææd»²pÏåædnX¸Çrs27,ÜC¹9Ù®,Ü3¹9™Fî‘ÜœL# ÷DnN憅{ 7'sÃÂ=›“¹aáÇÍÉܰpOãædjV¸‡qs2‰*ܳ¸9™DîQܜ̌ ÷$nN¦;…{7'{e…{7'{e…{ 7'“¨Â=…›“½²Â=„›“ITážÁÍÉ$ªpàædfT¸'ps23*ܸ9™îùۜ̌ ÷ømNfF…{ú6'3£Â=|›“™Qáž½ÍÉ®Vá½ÍÉ$ªpOÞædW«pÞædW«pÏÝædW«pÝædW¸§ns2‹+܃žý ‰\¸.Ü“žý0é ö)Ü£žý@é ¿+W¸g=û¡¹P\¸‡=ûÁÒ¾[R¸§=ûáÒþÞrá÷ìLo߉±#õ~Èô†.,ÜÓžý é ?-\¸Ç={ã?â·¡†{äs°OÞ„î±ÏÁ>};0’8êìó·«{ü³ô¼áWþ ÷øg?ìyÃïÜîñÏ~àCnPîùÏ~èóv>jr[¼pö 7U†»ç@ûAеv)o-„{´ï…Þô×+«Kó$fß#(܆%›±¸' K6cqO–lÆâž0,ÙŒÅ=`X²‹{¾°$›I…{¼°d“÷xaIšåöÛñÜî»ýp=~ºå:¾}ñxkØAýŒ\àýS_®Íeÿy{»]öêô~?ôyh·áI[ãäïþã¿þ×?ýûÛÆÃ÷X,‡±×áNº5^#á5!åvWx«sN•S»¨*á##>ê·_ûÛîmw>¸^zéÙ^ â¥ý=|Äõ¢>w®%”A'&O}»œ»ƒþæNÕ¹¬§j¥ãæ><„ïä3îs§ï<ÅM…›š¹1™¹©=ÈL&ËÖø½ö+„—6ìåMZ˜©¨­$«5qwÑ?{ÅèöÍewÜ)m'c÷á<¸xú:êt¨m‡‹%>½{ÚM(¦‘ÅN¯}M]€ìsÑö&–rßXø`¡ãÝ×ò¹kU(†x½UµðÆ¢É$°k/Ü·©¢Xð±Ê¹íT5‹I»¡¹}U$3CãÒùvÐ×ëÛ÷eáF™`Ç¥d‹K‡«‡ŽJ8aÑèà ½²ÝX,:˜¢Õzø^ŠSQ²ÆY,z¾_ɽEm·•ÕÂÒuc½#ÏjG¶cž}Å”p˜øšj(«èS‹M·ûåÔǸ/À&‘-ÅâÒÃ…¿òE¿¢X„:{•¼íDW,J=8q‘»™¡AÊtÓ Äq#„¬Xtúá–£]šbiªÝ‹©–~Ð÷Þÿï |B·Š…'ìp¤w˜V²öYèºøÆÃsš–§&/ÝþºÃ¯eÁêÁ† à¹è±‹U·fÕhNV Z7_–e¡jv²rè*)ËBÕM_}cM醅¬Ûšlõm *­fáêçäoÿ¾»A_q#•U‡ÆB(öu‡eÞçÛ€¾ÞΟÞ+™!7Ú<Çš/xÃµÚ >õþ ê½ÂؾA£+Yën jõéFDNíÆœƒêÿz<ȺqŠ:üÔçqÊK\ÈŠp£ÉL¿ÑÇÚ>TDÔš—+½›ÈŽQúMóõyÙŸooׯCßBýX¾½|¦‘kª‰iìšî‰iâšž‰iêšÞ‰iæš~gå*-Ë‚rm?˜ßز k€-«±زüj`Ëê¬sm¤l Í”-¼9²E€8R¶0ç@ÊêYÙwެl9°ee+€-+àä‘•­rmO¬l€¿'V6Àß+à ð÷ÄÊøûÉÊøûIÊþ~’²Å€¿Ÿ¤l1àï')[ ø{!e‹/¬l€¿V6Àß +àï…• ð÷ÊÊø{eeü½²²þ^YÙ¯¬l€¿7V6Àß+àï”-ü½‘²%€¿7R¶ð÷)[øû‹”-üýÅÊøû‹• pòO–_ÀÉ?Y~~3¿ Ý~“ü¦Ûoûã§¾ ã`uQGµoæ‘¥þÜTDQµ¾1PLAïû£>TBQmŸCšXJa;RÅiF!¿_«s09ÅüV_ûAžÌÑ•tã Š‚¾Î-) úP”5ÔQÓ´ ;ê#Á´sº³*×sí³÷Á²×qyÐæÍ¸¦X÷ŸqA]UË›qEý8³†Ê¸ .úÊ@\N×­.¨T¤qÕÍøÄa³Ú| ÑAmœîÇZßKÕßNOL´mL [ÞgP¼m<@»‹^¦•,a@˜>-3¸]¢€8ž9Ô§Û×2“(d®·ÝýÔ^tk%kÁXðÛî|¿ª“À[€læâ2KùöÛ§:¿.ú¤WtHyäšóž(]kO”'®¹¯ïÉSמI8Ï\[ÚÛä¹kìéfòåƒæºt­yÇ’W®5ïQråZó®$¯]k_’7®=í<òÖ5îö§ž¨´ïȵ áÆkìëa DtÚ¤à9ëS ÀrOgR–ó^¤çÝGXÎûМv…MòîöÇçyºíOïoÝAß/çÓ·+Ä-é>.˜¯.™ìd åZóÞ¥¨µ§[)×¾;ß/ ótiÞóýÏ¥÷li®AnxoUt¨¨¾nªìÿƒªÕMéÅ7ÇG-zB}¹ ŸyÌÒàýC™¸uêZ{z“2sÍ}½I™³0%—…‹ ¶¥kKûŸ²r=ýO©P>h9kך÷?eÃj…÷Beëb<Öš¥À{®²s1ܺ¢ô÷õvà¿×ž €ö‘à?7ôt¨7ü÷u¨`?çhøÏ:Ô ÐßÓ¡V€þ¼C­ýy‡ZQúónµô÷XúÓNX-ë<Ø'ªÒµæ}¢ª€µ§OTʵ÷ô‰jYïÍåÞì»ó叨€txgªZP Þ™*êÈ×™ª¶Ap²§·ßvêvYÕ™êHØò^QÇÂÔÓ%êDØšþðÎ ¡Î„!íÜt.,ûžhCNê´JaÊ»4] SÞ7i%Ly'£kaêë+t#ŒiÔï e[ÒøÝ Õ¶ôoÝI2²6è$mYÔî$g=!»“¤åñº“ ä¡´“¤q´{6V0ˆv0õÄž®¶žÀÓiië:]çæ8rªþ?|îÎú´oö˰ÓÁJ©¶°î±Žõ»:âÐSm`ÞŽ‡4¡y Ì ›ªmŒ)¼ÓUms`ý[á=©j[ÀŒ°l—ÀúF­+`Ý#b­€õ‡bYë>$1ç 0gA©Ú¶Àš¦j«õU?ˆy‡HK4_Eˆâ$DUbx¦˜9¢ø3©ñ1ür&=k!†ÓØVEˆã7ÆñÈâx(ÆUQÌy쪢ÙûâWU8GÁ)˜ÅVQÌù0¶Š,ºý:_Úž›Ÿê¢nç‹Ù9ŸDí|µKvâV^5°ìjb »wb—;"æá1ËŽð{xÉÀ²ûIìraGbåð†e÷EìJaG"ÁðzeGú–áéËŽ„­áÝËŽhmx´À²Ã{úÕðbew!vZØ]¯Ä°†¤ãH$IH$IèJ$;I@RŽDðÆ "¨H“$’‚šJ IÂó(YØ»gã-îÇÕån¥VÕ_}9ïoûæm·ïÿ¯÷Ã×çn±íS.üú`Dêeì‡E÷v}0"ŒáÆ®öÅ —ùqä@RUæ~\ÍpE÷GL¥IŽ*VÃ]ŽM­†Ë¸>9öY ·oý8ZÂ&€dLkC8š¢ö#ÉÉj¸AëDZ«€É!èª ˆðùÙiáŽB$G,«* Ä+¯›€ÉAͪ h‘š¯ª€0\@‰ä€fU”xã5Ð"9æYU-Þ¨2ª€ÉЪ h±euÔxý:ÖçÃÛÏ}û ™HVJµPcs¿\÷?u 3TE6P1E.P%Aj]¥Á:>•QëóTN!¬»S…°þJ•º*UQ륔âÖ5…°~B5½j)„Æx¥)††wÕQ ‹ìµG-—f7žçcP.Õk®Ðk.Ëk®Æk®‡k®Hk®CkÀ¶î¢Ì K}Ð?‡óy¿ô¡»í®ËÅè¿EËõŒ0ðéf\?Ösøÿf¡Ïïç÷‹:¾]ŽdVV#6>Pû#™'5€Á•§P1¸ÆÓ2®Xéi!ƒÛU8Ü ¨@Ë uÝÿ¹åK æ4ðe+–0@Î ¦‡óV X¹„Ð>ÁN{«Áª% D÷ð‚aüªeÄùgSï/0±€@~ÏÆ¶q©…z{6wgá2 ”67¸…Ë-ÐÚ²Í-d±D¶\kÖU[®†^yÛp.‹QƒÀAb;à Ôð©çbt ð™çªé ÀsÎÕ3¶pPظ´yVÀqPÚ¸¦ý|eã¹´V>¯Z.±AÀA,p­‰pÁe7²xH….À‘GÀCf{мã˜äÂï —€‹B¸àÁÀ° ¸(… F>•ðà‰ «n#TšÓO0VYNxd0}ã•儇‡±ÿ`̲|ð1ö%Œ[–&Æ~…ÑËòÁ#ÅÔÇ0†Y^x¼)”Ò ɰ“J:áqcÑóQ¾Y®xüXô‚”u–+H¬‘²oé¬ã1eÙ;RZ¾xxYö””–/g½&%¥åŠÇ«¥Ü´œñÐcõ¦”£–3…–=+¥ªå #kþ6Í­)œ5ì@$zz;Zw  Í.LWë:I„‰žNLgëúH…‰fcwëúÈ„‡ž>Æ×u‘ ¾¹ù•MÍ áÄ73Ÿ:]×I)œ€øótbº]×G%|€À3·.YfØZ>TÏÙN«ô]¤ÕUm£¥íÏsïݼo¼ÿvü×Þþt=JDLwŠHâç¹Q‡¾ ŠÌRSDNgŠh\ÄAŸÞo;³áË`í6&Ñžïæ•ŽÓûðdáù×€cˆÖZîןê¢h‚ù¹¿ªËûˆˆ„‰ÈŸŠ"dLV9Uëwfœ cê:Ö 3Α1u]kò¤”Š*`|"Ëþ*RÀúF–:UTCkšï˜·d¹RE-´¦Î5*'YßWQ‡rNŒcD@ZÊ12F¤eŒYã“]#¶~Ò| º’=#¶ÖÔu ¬ÉÆŽŠ·µcDm²3£bÄl²'£bÄëŸÌÑúJ«±úJ¶QTŒXÍŒÄjò°ŒJ©Y¦Dê±Dê" âõƨ1û'unÑoìŸêás õù§æ=TR9¨FÝÛ±O‹½rìÛó-ÔÝ&Vëþܯ+ Ö°M­Æm÷ïû›½ç-7=T¹æÖnG¼ÜîPi Ìí}Žd¹Ñ¡ÒÄØ;ér‹C¥VWóUš!{ß:¾JsY±L­Ò‚ƒë“*µØµzÓLeVk~ÞOÍí®FhOx˜OeƒLo¼î/ÍAl̰^TBQ}mú¶¤D°)ÃÕé]Ô‘à2†;œo÷+å´6ûÖSTð&Ì>lIsÙϧH.óí·ó¡}»žïý¾Q×ák'*8ÆsùKå±/-rkMå G±‹*O9ˆ^¹RyÆQìZŸÊs¢×T^p½•¨ò’£èMI•WÅnŠ©\yŠ¥ðºÊk¢7UÞp»\£òÖ“”‡MÚW,voOåF¯ªÂ#¯Ž¤Uxä¥eW…G\쎣*<Úê§´: ¼ø5\Uxôåy¡B‰õ3cZ:Æè-YUx4FoìªÂ£±¾&=eóèŒÞÏU…Ghý–hºðíÆ5S ©…N¸¨)mʼnU ­õ@}Ù7oûS»oæ+J2«¥ÑÛé|A] )_qÐ0&À Ø“’b)%tÔ¬3+SŽúAîAª2ã Ú—•9é+9¿ªÊ‚£.´ÒKª)¨â )o¡"‚ª9Š]>UeÃA§ó™Ä޲õ$ʤ9ªïɨóÖE‚Q•GU«öÊ£*ÞUY±»°ªòȪeUQyTõNµXydÕwaä‘UßÑbytuc´¨<ºúÍ“ò kGËåQÖå…GX7£+²~Óº@ v\Vxq BÒZµF0 U§}³[÷â˜ÎŽ:ö|ø?œuÍyw?uì=£ºá ¨k¿ó2ðÿ†ó¡€M‡S¡Ž1íñ†Ã ³µÙ›ká»|j8ê8毓©áì§k¿ójøî±o½/Ö#­v ÌùÀy8Ñé˜ó!l‹XÏ'‰-"ýŸÜ‘¾ïL©="½o1£E¬ïGú¢ýÍ‹@¼§k-">?·%°öMe[Dε±_yìùÉ{ªEÌgóé±Þ3×oíù¢Q‹hÿ'5׈ö?vÜñž¯iÄ{¾ ¥í¯{Äzº†¤-Æ«º¾èŸûÇ‚ëå#´ß¡s?<°‘¡-F»}Ýs~ÓAéØ{ÆZ#{ïÀ@w¸Á̓Î"™µ,c‹ã]Ä0×j1,f°ÇŠõÙ|„nïÙFèîd:õ  $cá`Y#Ëå]ÎpÃ{O—ÃAãú­ûR?u_ÿ×Sêmä2ËØ±Ä÷¸êmâúd¦©cŠƒA½Í\§Ì4wLqô­·…kÉLKiÊ +ÇY*iÉj©v ™e#-ñ…ÛzÛ:†ÌRKKüJ½íCb9ì$n«#‡žä“2uäÐóÏ/fêðóÏŸÌÔáç;³tøùNM~¾“áA9m˜¥ÃÏïÌÒ!(¹ÃYGAo4£EÉ{_uäP” ŽêÈ!éfÕa)ÎÕ‘CS2–«c‡¦5³thZ³2ÅOOŒ'±ÃÓÓ;ãtìõôÎH;T%÷¿ëØaê‰fÀaê‰zu¨J¾ÿWÇUwÔÔáêͪÃUjép•Ö©CUòý¸:v˜J¾ìXÇSÉÅñ:q˜ú›Y:L½2¦&SSS‡©×«ÓÄaê•gÁa*µœ™âŒÝñsu¢¾Ýö§¯ç ì­Ÿ˜ï0\ ·¾þ6}÷ø¯:h¾Ôå]ÿuíäàñOo+èE†ãÑ‹,Œ§¥W¸èy1ÏL‡aÃWÛN׿²ÿŒÔáíS]úAøšåÉzøv›K—*ëá n^(_†¬‡ï¸y±žÆzøš›ÌH>|ÓÍ d+õðe7/’/-ÖÃ÷ÝÙ¥%-PºÀWßzóBéb_=|ñÍ ¥ õðÝ7/Ô³JW_ó‚ÙjZ=|΋d+kõð%8/Ò³ÊV߃ó ’" i– ¿²`ùbY…KÎê,$XºÊUg!¹Ò¬: –­fÕUNhm©Î¨rBo~ÔUNøå:£Ú ¾ÿQgT:Áµ®:£âY³îUgTAë×ÀêŒ*é•ôuîªjwP?÷+:ÂÜÕ•åý`îªÊBzºÁÜU•õõ‚¹++ Ë‚@îjÊÂõ}àCÜâß[¨s·7´\x:ÃÜí E®iy]E[HÞæ® -$ï sWÏ’w„¹+f éësW̶ïÿà‘:wål¡iW˜»B¶€¾ž0wõkaYoVëéÌŠ€`y¯RK;•‚Q0اŒ‚Á.¥`\Ñ£Œ„á¥` ÷'#àªî¤`,|¡7)_êLÊí·Ï«:Œô]Ý”ñ¤ŒÆÓu” ù:2e(&³2cˆE™3°§‹( žGZ®’axp/+†áa½T ã èeÍPþP^6 GƒxÙ2ˆ/|—š¡Xà.;ž ÙUÖ Ó•Û°FÓ—ÎëÊmÙÛýrÒí¬Û¾ãSã*Ò°!úÖ\ÎW¼KYWn# 0Û­•[Ð`O¤Ürû å–oEï£Ü‚…ûåò7Üã(—¾«úå’x}/ÓlÍAÛž%ócÅçËÇ®ç Þn¶€|éÓþª÷û0XiÍ6áyÃû”Í6õ¤Ã0™ò–ó¬á]Ùf[x ,™Ò“5 ª9á`{Ô¤ÈvšØ''Žòè©GOPåQ”>á÷4±OQåQ”>Æ>Eq”·‡:‘h{z(MAÞ.ŠÃ<”þĘģ©3Ãx$µ' •øÅ0HQÏvb Ÿ¤ðWµšÄ«(òjÏ0>=QGNg†ñ©‰‚|Ýþ²Z“x{'òtNJ3o¬‡?ƒÖ$¾®I3o¬GVƒšÔ;Ö£(_çDA¾ÁGùº'ÈSß´‰‚˜žuÎ@HLsÄc(ß܉aatfÐy(é+Dç]Ð-\êì„Ñ¥AW¤!¶2XåÇ6‡óUÊx¨©cpmÀMÜApcÀmüÁ­ëø ¢µAwô‚»\t½GØÖèº èzÁF×UH×ß!Øèº èz˜©°‘uµÂ`#ë* ëû £¬«¬lT]…T}€,i¬«€¬‡YUW!UŸ ØÈº Èzœp´‘tôb¢«€¢Ïl]}Úœ×ú~yW#î* î˽Ýû©¤bnŒÊ«€ÊÏ8¶µFæ* óav䂵ѹ è\1Ú]…„~`#túuw¾Ü˜ #wêÅaOªÜU¨¿þ†h#w’û ‚ÜUHî'Œ6rW!¹ß è´Ñ» é½}Š6‚WÁß!ÖÈ]ä~Ç`£wÐûB²w¨m¤¯ÒŸ%KÜå«P·þ‚ÞU¨WÇÄ3r¯Crÿ Iß½×!½Ÿn\wêsØ>Ý¿ÃÐßí×íßq6ŒöYs¡`žpüÍBšIŠùÙ˜ùƒñÑô³1S~˜v¸øxúÙ˜I„/ý#tL?3‘ðe AøtúÙ˜©„‚²égcfÞ \‘ƒ|úÙ˜…ÏA‹ðÅô³1s _ž ƒrúÙ˜‰…/^M?3«ðÀŸÓ׉š~6fváËÄ×ÓÏÆL0|øá›égcæ>ü;·ÓÏÆÌ2¼ø/ä@O?3Óð9Ø!|7ýlÌlÃßxµ~6f¾áƒC|4ýl̔×ýïO?3ëðá?>™~6fâáħÓÏÆL=<øq¾â:ȦŸ™~ø p@ø|úÙ˜ ˆTÓÏÆLB|Ž_N?3ñB„¯¦Ÿ™‰xñ°júÙ˜éˆÇÁÁëég„{#Àâ›égÄ{#€˜Ç¸®Úégtå öTÆõ¤§ŸÑ“7*œa\¬ºégp ½aa˜Ð8xµ~F¼7.Œs×A4ýŒüá‚ðñô3â½ažÙ¸^’égôâ% >Z¥Óψ÷†ùë ›~FþðpCø|úñþðp‚Šégtà7$OUN?£|hP¥ªégtà wWÓÏ÷†‡;Ä×Óψ÷Æ1éq]5ÓÏèÊ*ìyë©~FOþaÃO„×Óψ÷ -»égÀwþðð £ÞN?£|s ×Y4ýŒÎ¼±â3O?#^2,t´é$©‚ï(5äQðpfÓI¾¬xV¸é$5^8—ÙIZ¼rê¿íÿÃNöÝþírÞíOï_j1@êðl‚ 1DM!1ƒ|RH 7 I)„c2†ùN!9ƒ4R0ÈŽBJùà˜Ša: Q ÒRHM!Ó0Ì…BZ áÍ0¿)¤c+ƒDT2WÚ4Í…PѼSÍB¨hŽB5s¢ª™_B5ó±?”H•óE!T8&-¤ò9ñF¢ú9ñt¨~~Rˆ«óMD pÅc{p¥cwˆ]á€fW5pfW3ãkŒWõñ¸pãb\ÑŒ˜¾Ý‡ ”Ó±«œñ‰ÞºÔj§¾èÛ‘mì hDÞzز]M¸“å iB]¯{KÜÆ2­ú­/ço§ª¤·ÞŽÿ0·ÉŸÞz "ûã[mâ¶Ûâ \Tlƒ«MÜ–³>ÄõÀ%ö§¸ÚÄm¹å÷¸°Ôþ"W›¸Í6ÁÆä–ÿ0·Õ ìºÿsFåã¿Êmµ 5| wÆã¿Î~7~üvÆ•ã¿Î 7|ïv†Uã¿–n¿õ£NõµŠid{‘Æ–­—ibÛú[?M-k›§™mìmé4·Œ½í›¶­¿UÓÒ²´eZYÖT“ñâ»øjV›Ö®)¾)Õ¦kŠo;µiëš’'0ÛT[¶ËÏûþÙw“ýõþA®¶ÙƒÂ+ÎïµÅÖ`"Œi0(2 ƒŽP‚A”PŠA5¥”aÐw Ê (Ç +åT`Ð/ * ¨Ä •TaÐ;U¤0¨Å e@5ý‰Aµ5ô…Aµtàր4]0HP‡A'’¿q§½Í‰ž:* r"¨AåDPŸd•Aí0È*'‚^°K#ªœˆj’²a刊|´–?9{>]Ï'uº½½ëãþ´xÕcŸÔ=ëýix“oxÐÿz›7õ|T;nìžÔUö¿WeøAæÝ×ç®ï6?‡¾M>Øæö^t{ÿ< _æzº†Eñ nèTÅÐe˜Ÿ‰îÖ@\4ýlL€¸#ÄÅÓÏÆÄx€û€¸dúÙ˜0p5Ä¥ÓÏÆDz€ûqÙô³1Áà®—O?ïîÄÓÏÆ„|€;@\9ýlLÔ¸wˆ«¦Ÿ ü×Bœš~6&öÜŸWO?þî âšégcz€»A\;ýlL'pˆÓÓÏÆtwÂí¦Ÿé °C¸|;ýlLo€„¸húÙ˜à>!.ž~6¦O¸Ä%ÓÏÆt ÷èB\l:ýlL¯@°¸œÙô3b ùy¸_ÍÞÌÅ¿òÑp}¿á3Ô}í_îGç›ÚjL|9‹Ó}}/,Ÿ/nŒ–ÖN÷5¼´œßÙm­œîkua;¿®1šZó7ÝWâÒô¹Ó3šZ³7Ý×ÙÂtœ¼=-­¹›ÎsËÒLÝž¶ÖÌMçÅÒvš¸=m­y›ÎË¥­™¶=M­Y›î‡£©ÜRÓ0biªlÓÅ!Æ:¶¬kÛz·¿ØÖ‰eÝXÖÝY§–qkÏbÆ8³ŒµeÜ7‡mœ[Æm<´ˆm^,Í‹­e>6Še]ZÖ‘e=4‹m]YÖ±eílà=ÈÂ$¢…ÎÛ˜T´S/„JlT&Úë~A Ôå¢Ý~”2TÈöC˜ÜÆ”n3"Ta£*·5ª´QÊiUªlÐ$òÙú©m—ß­×E ?îêÒÇoµ [E Pƒmý·eT,´À <1W‹F¨gú—þ½oŸ¯LéÃýR÷ݬmJ¾n û~Õ6$jé¾#†ä%-Ýw¶%û°„î;JÛ’¼¯Ë\6{üŠƒ. i¹£¦¥cÊm+a»{ì:–JXþÉ kaȾú©ËFXþ¦–­°¼°Äµ4¤åéœÄ±a%ÙùJn^Éûjº’ä¤O±éJÒ“}¹VW’žìô¼±Iz’/4èJ²S“Ï€ëJ’óÏ·•äìX>%72CÉÍŸêm|‹ì¤nz9™T’©ì«Òº’LeŸBÖ•¤êÇŽšJ®¾3K%ÉÊ>Ï­•dë‘Å%ÙÊBÔJ’õÎ\J®²h%¹zf†’«šJ®îÈ LZI®~‘ËûZI¦’—´zp^±Ú©ãoå_mÒªqqGÕ¶AÜ“Žf™jù‘ù«ž"N j°`µ¤Ó×ô]º¾K»4÷cwÐúðMümü$p3G¯ƒÁ?? òS_nû¦Ÿy~M6„[âºI„§›ÚýEO©ðÔkù¯yꚇ§¹ù†O|ß9˜mzÔ|]ûÀMSîó¯·_çK;œ%¸)úeGÝi‚û¡®¬#°‘j×M¯2^ÏïíòC ôÅÞnz“Qºýðn°#}ä·›^d„ÉxP)Bñg»éEF ƒÃnz‹fŠb „aA³›ÞaæüùßnzƒÑ)­"…ì鳿Ýôô¢°§OþvÓ«‹ÂÞóÜo7½¸(ìã%ÝôØ¢0g[7=³ÛŒ‚"¨Š'ÈD’Gé£ÔžÐ+‚bñ<-ÜEP'¼ù#¨“y`äAB­¹VA¡ðÇ‹»È£ Êe[_÷PIÃãÛænÏ»ß]EE‡ú]EÅ^\î"¨)SH‚Âz‚Ö׋-·Ð±÷.ÒÈž¾~ÜE´ç/wñ!ø«Ç]A=‡ßÅ1Ì=…ßÅ .´çyä.NqÁçPSr “‘ÆÛïb[_dIÉ—+J],¶W·ûÅD ¯(úŒóa‚7uI$­çnÛ5Ž¥ñ¢Ïv­i½#'@»$•¦Ïž×µÍ¤í¢Ûu­s7¼|…4ž;\׸”ÆsoëWÒxÙÕºæJš?ûY×¶–¶ÏþÒµm¤í²“sÍ[‡JžšÖÒø“6wçf£¥äHB?{†pH=÷ ®±Cêå^êPºãlJRžoô¹Æ3«÷§VêþÏéæÍ÷ÌlûD‡ÿ›ô]ZÜsº—$QÿI.­|‰†À €›ûå§"kŠ ´ÈÝùüL²eÀPŠçµè „€Ù¯·Ëù#XGÙ,39<1l]ŽO²XÏ»™ÆxÙmf‰c½ÜÐV¯ž¥ /b«gJƂͲ[|‘tdæsŒV«Ëô‘ GƒY¾þ\ࡎ èhXÙ9hñ½ \Ò\+Ò¯ ‹a„²2…Þ¿Þw÷ËŠŠ"ö|É ˆù8úøƒO¢‹€èœ¾HµgJ_dÀþ±Ê@³”ŸÖ0ç³ú¢æ¾I}QÓ XÓÙyQkߤºh€Ít‹z§3ÖB{ú§®è{:³,ûé±DÜ?м”÷_êwË„CѽL1tm¯]f|(}K)˨ÔGTøå ®,dHtŽã®ôáæ°éà*†{~ëëí·fw¾¨ëqÝjn{³‚ìCÅÅClsÏ¢l{ß̴΀éµÎ1Ýu¬ûÞA·P @ž€_W0ÿ´¸ ˜óP_×Àœ‡úºæ¾P_·@C}­5 õu‡øé õ ­ùñŸõ ¢=ô ¢=ô b=ôEùà"^“s¾†×Èܳ„×”àYÁk*”_kÌ¿o9®©q WÖôö›>|Õ¼yè …:’Æ<êXÚz‚ N¤±/êTZ³ð§3iIØΥ©'†éÂÍÍm)mé׈;]I[é´’¶<ÌéZÚúbœn¤5 p=³„)n½œ„©/´éÎá%mÎá0 jC`ÏX·sL¿ÆÙuy¨ìúò8Ù9¦A²[ø±Ì=RøÆ¡ñu›ú¢vǽ¹3Õ¨>X¨~„ÙÞ¿ÿ¡·?HûȲW§ûõ§º(|, 7-óŸû«º¼+â:±l¿ïw?Õñ~Ø?žypìSËþþÙ7äQ¸}ö°ð‰ØåÒŽÂpOìJiÇ +ax'vJÚ1ÃZþ<7êÐóãBìfÏ-ˆ½fö Ð €ÆvÑV6©ã(†gbK‡¤Ž£D~ºD©4Ü1KÉÔwf(©úN]J®ž¨OÉÖ†J¶64qÉ×ïÌPòõ;u)™zb²$EŸÏ[9–’œ·M^Òòù˜“´Œ%1Û–9%5Ÿ¯©8–’œ¬H±$'-Q,ÙI $ÉÉË#ÙI‹#ÉùÉ %7?iÚ’œ53”ܬ©KIÎ#3”ÜdÔŒ%5/ÌP2óÀ %/ÃDÒòÊŠHV^¯ÌR²’JVÒ´%)¬à‰då° tSÇý¡ÇP$è º°¦H$Wg̉ê5yòvùl5%0ïyy»í?/çÃÝUº§Ö5²ææ 0¿SëYss Ìçñ Cu>…¥[ì@Q‘Åa1€ij ®Ð6IS`~¦ÖrNÛ$} äçþ¢Ž#ë*d÷EÛO ”Y¬•"HŸ"x¼|à±}*`¹üÜ5sÌ6<°@P5B†‹¤Ø¾AöM?Ïk†3Ïåt×Âtηû²'aäJ×ølÃòÒpoœãç:×h¼¼7ܧÒx^åÍ—W‡{óL˜Ïk\£õòöpoKëçµÑzy¸·.„õóñh¼¼CÜ—Òx¾F<š/¯÷æ•0_Ü$Í—7‰{s%ÌçËÄ£õò2qo]Ë:´r²\Éë§uæU²5·Jò‘®¹U’‘tÍ­’”¤kn•$%_s«$-éš[%‰Ù.ÝFWoýßZ ˜¤)_ª«$S/¶ÿú—¬¥ë•¤-­>ÉZZ{JÒ–Už’¬¥• $kYq”d-[ßS’´t}OIÖ²õ=%IK×÷”$-[ßS’³LJ2–-*)IXÖ“*IÑŸKÚ© ÑNI®Ò¥>% J—ú”$(5”ei×O~Š%2Ô)×0ÞÛÙ2ãÓaG"knžs:L«sT!t¨.€ù™”²D®ÉŽoý$ñ4Xò„keŸîÓåïÙ>¹¬êú¢îÍºÈø\©ŸDÖý8R_‚öO:?g¯½ió?é“ÏWÝ,^€nŸ”ž˜ÂæInÏšW ¿>[Dêàbiƒ*d: «¥.5\ÔÛõ|üÔÃ5ЇØwXÄmíoÔ>†ö5µO }CíShßRû Ú¿SûÚ©}íO<Ծ P{íRûÚRûÚQûÚ_¨½†ö;jßAûf¯±¾S{,€-°Æ  æXZ3{,€=3Çü¿3sLÿ33Çì§yÇÜ?*2íD[­X„ë"ñ-Åu1Bøäº"¼Ër]Š0ÞŹ.ƒß]—#ˆo¡®+ »\וã_´ë*„ñ-Ý +¸ý\øã¨à¢ºZÑc" ³\6"€Ø<ލ}ò°÷/ EÛTâ•”h› ;¼@msa‡5m a÷AsXJË5­„é;µTÒ’;­…é‰{m„iC-[iÉÓ×Âô;µì¤%ume¡¾¨i$Lo7j;¦<’¡mKM%G‡åf+yz:QSIU^.IVO±$[y©$Y=…’låe’dý¤–’«ŸkížôVw¿á“ÝÞõ•(yr»×é(@fø$lx%…mìGIiÛz†¾QR [ß 7J”míîFI-Œ=Ý(ilcÏ7JZaëÜF‰¶­½ÃÚ(élkï€6´¡õ¥(}ò‘¯E铌Áõ¥(}òñÇ]_C©Ë€{ Ñ1ÍBñ*o”æ(Äà•Û(•ƒƒŸ,ÙöÛQíÔwu ìéFYäX’qy;–ddž%Ž%›g©c‰÷M£,s,Ɇh”å®)Y’²Â±%˜QVº¦Ôm娒íÎ(S®)u[;¶dË3Ê×”ºm[¶íeÚ±eŸQÖ[–‰Ü¥,ÛüŒr—´t3Ê]Þ²MÉ(w™Ë —»ÔåesÉK‹æ’——Ì%/-˜K^²Aå.wÙe”»ä%›”Qîr—mSF¹K^²Qå.wÉd”»Ô%{Qî2—Ü2ˆ —·d£0*\Ú²(\Ò²ãúQ± mpK**¼]·) ú†;êbÉàÇÍëîBº•rûíºSÕâU-4’,#8 •±mï; •ÉÓØßs–©cÈ,3iÉê"w ™e!-I_\–Ž!³¬¤¥ÿ&eT* `ˆš!ðÕȨl(€!Z‰ CR;ÍÇ꺓–dŒRm—¤®«HZ²ÁL;–,fTsÙP¦r¨KG2•Ã]vÂ+ªö²1Oå°—y*‡¿lÄS9ü¥žÊa.ïTeép§rÈÊG;•CS:Ø©¢ò±NåP•u”CVV.å•K9le¥RYi¡”ÃVZ&‡¬l£®Ò1ŽrÈʆ8Êá*á(‡¬l€£®2ª*‡ªlÄ ¦²rxÊN@GÊá)2)‡¥ì¸VT;,eçµ¢Ú¡)µtXJ“ŸYºb2_§ÈšLæë 3ëYÓR]@sn_"ûÐa›¨®¼0ŽS>»dÕµÆq ±SiQÝÂF§+¥µFöìvATwÐ=>š5bxüX;ý‡o•k+ÇÅ?ÕûE1n7bTzŒ$jz$jf=œÄdVg©®™Ù^×kfß43û¯ú³ÿ?ng|Í1jfÂ¥v{ïŠw£ì óÎËIîã¹Ýwû±gð$1S[ÿyŽŒW[&>àLòë}ò ]ùýyÙ_wý@à¨4Ùi:»ö§á­[Ý®™åµ3óW¬ï·‘°ö-ð·±0ö­ð·‰4ö.ñ·©0÷®ñ·™´ö-ò·¹°ö­ò·…4ö.ó·¥0÷¯ó·•0÷.ô·³ô‡"± ­m²\÷Ã@÷ˆIÙÎÄßiÕšW¨‰ß™êÍùtÛŸî¡€ÐêE@˜×;þˆˆy‡Ícl> ÛŸvêШK?ñéû.ñÝä±$ìp„Bž¡GÈ’¶Ã1: ™¯C %y‡³t4_Š1K ê0æy5zÄ,‰<œªƒ˜ç鲤óp²CækÒ#hIêá|-.K %µuE@ó•é³$¸VFÞœ6ºŒYº¦ Å jÓ²®¡¸ÅMjÓ¸®e¸ÅjÓ¾LSØ|³Ú4±ëlqÃÚ4ó6q$°åMkÓÔЕ¸qmZÛ¹Ú7¯M‹[8W`ìöÔôÚU½‰ý€/ðçŸ?vçïý½xI;f C¼oa‡—¸âm*ìptŽ·™Ì K8†x.ÞÒ!Ëa) É\¼­¤!SÇ[%,ÉZY¼­¥!µl¤%M¼–l¥.ÞjaIêâm' Yâ‘ä#Y¦‹#IÈïÔR2-ÒÅ‘ä[£‹#É6ºDG’ol….Ž$ãè]Iαõ¹8’¤£E’œã%’¤£’œkyÙ%éxÑ%éhÉ%éÈ"Þð¼0diÇ’td /Že¬©¥d'[ë‹cÉN²ÔÇ’œŒï±¤&Yè‹cÉL²xÇ’—dí.Ž%-É"[KZÒꑬd+Œqü¤ex1.Ž[`ŒW×âX#[fÜc6‹ÎÌ»Ölé)N"TB¶ò'10Ç"ã$A®ñªSœ<)»fƒ5N2ËܳF'¹eê[‰“²íçXÓ‡oaž ækCqòdop)Nž6ùõ® ÅÉ“ÅÁò8iD.V@žl^·¦'Ú®»ûÇýD«NÜD€© ¸fµ‰ ØRDæÐšrÜÍ÷Ã-xr-.#iHòQÆÒ ËD’1k™JC6t,3Ç’ÅÁ2—¦løV–Ž%uª¤)ꕵcI6Ò” áÊÖ±¤¦4¥Ã½Ê¡ïUIø€¯rxBG=•Ã>Bª²ðáaåÐ…Ž+‡.´ Ç’¦ï0‹–ªr,©S‡ƒ´LÙЯr(HÇ~•ÃA6¤« Ò1r(ÈuÊa £µrøÇ†uÊ¡2)‡|l`§걑r˜GkÉa;Ä+‡yêu¦^¸ãÞÜØÝ[õKµ¡exqÃ1e¶±kKºŸá½ ǔ٦®-鬆—6Sf›»¶¤kÞØp*å¶tmÉ¢Ìð†ã–åV¹¶¬Øplq†Ç5¤1ëc‡‡5[j¬1ÍEçÓ•šЗõà à/íÃ@`Ö57€Á´o…ÙA¬¸$¦Ý~XL;þð˜wý `2íÐÀeÞý7€Í4 6€Î|´Ð>ÓñBM+ð™×à3«ŒЙ¯|f¥kÙØ¡t¦£‡ЙZÀfº~Ô6ÓáF ØÌ-à2“T ¨Ì¸Ù"³aG xÌ-`1;·€ÅlœÒS¿K¯ZóÐK*¯XÒ¶'«L:&æÌ>ÁötaJ§ÀFÐÕ,“*¢ ZºÀv˜*Ö%I‚—¢’-í]ƒÒJš{o¯ÆÝ’ás+q9öž“+q;æž³+q—¸æ¾Ó+q—:ßù•¸Ë\{Ï –¸Ë{Ï–¸+\sß)–¸+€÷KÜUÀw’%Ùn¿½_Ô©ï §ë*ÏÕ>Æü±[@¿d |ð T²mÈ™@ H¶‰mí»ì’l³§±wn”lsÇYÒÏ’mé2ËJZâ™C²UŽ!³¬¥¥ÿ²K²m_DI¶h<åJ¢­S·¤"¢DZžñ|+‰RÇ'©‰È¡™k%‘Ã6ÓJ"‡d‚“D ØÄ)‰°iS9D “¦$rˆÀ¦LIäP€Ì’¨u,©SíŠ Ö’Èa›ý$±C):÷IâHÚ²¹LÇ®)uëp•MM’Ø!+-—CV^,‡­´TYy¡¶Ò29 $Ó‘$vÈ&#Iì0Ì.’Øa ›[$±Ã@2³Hb‡€Œª‰Ã?2«H‡RdN‘$¡ØFq’84!“$qX¦IâЄ]EI‡&ÔÒ‰i4ùúÛ<ÖÇ oµ>œ‘k’Ì\ Žr“¤µ½7’dfLxâ“$²ÆÓ˜$ÝBc6aHÒÙã]í$¡1³Nõbÿ‚R/ˆ¡ „ÒøP}’–°úYÖÈúü<%0&ÿfZÕ60™»Ì dòH²¹½É‘ÁýÃDÝ{•œÞo»éj*o&Rÿ<ÜYo’9‘ï§nûfz°1ʉ‚5íåûÁ¹w¦“ÜéžW “Ò|q» U[îeû¡òEPzà³^öjd’8L9®¤¸aÌqÇbŽT9ÎŒ9°æÀýO_Š seŠ+¶÷œÖqXÄa>\Ìq'.ḟ{.å¸OOzåöÛí~¸ÿqÛ¿«ƒºv“2"æÌ>Æöd W&Äüi?úâjS hŠ¡dbWfÄü¾L)RªkÍ140G.‹ŒáJ?ŽÄ¹² À®Æ86?/5a„ÕdõØd± ­÷Ø´½bä[¶YµEì¨Ùl¾"D¤súŠÐÍÁ+Â?:¿¯ëè,¿"|csýŠðŒÎø+Â06ﯱ§ *Ò5€ªÁºPµ @óDèNWªŽXŠÈ‚®(¢ VjEÄ@ ­ˆX™/2Q-1[EPD t-A1°E´@×[]PD L ŠH ½Q[DPDl)AÐ…š¨€.+ÔDÔž¨€fˆˆ€®³ÔDì|CRÐï—'µäõŠõ‰ZR{Å*E-é^«¨%ÁÃÛ´ÃH‹bèP-™¾f»6©%ß_8…Ô’ü¯¼ï‘ÔR /¼ò‘4R¯¼õ1ŒÀ(š-¨4’•pYetŽy¤([g1ðž6ÜÇÖ»›º÷5’¸kIIÝÅ^ä°‚qR×ýQJ#Ù¸bS²‘\ oM6’áÍ÷¤‘¼1‡óùS·Þe¨Vr®9Ÿ¼pMZ‹/švµ­ää»>îOj>¹J¸ÜÊxZÐje<æ×[’V’>x#&ia,>ß>ï×Ýç@ “Ÿnó\öûRËJ6+m·áŠôÀ¶ýÏI´fhÏÕVÝ(6.Zë_-ñtÙVÌ,¶Ìð²@ºMl+f–ZfxæŸn3ÛŠ™å–™rŸn lÍÌKhާäé¶ÂÖÌ\YæxÞžnk»X6–ž™§ÛÖvÆêT[fdòn;ÛŒDŽ4²™H&ÂidS‘ͰÓÈæ"›X§Q"ì¨C›dâF6!Ù|;lF’ivÙTd³ë4²9È&ÕiT ;êÐæ›t§Q-ì¨C›{lŠF­°£mþ± uÙd‰mþÑrÄ6Y1b›´±à3³Ùw¢îlú‘)tÛìcÝyÛô#æ4¶ÙÇæÉil³LÓØæÞ‘º³¹Ç8ÛÌ#¶4¶‰Çî䤱Í;2›Kc›væ.±y÷‹™Ù´c3í4±yÇ&ØibóŽšÙ¼£©N´ Ï>Ó$wLñ2M ×’™–Ž)›,¦IåÚrcå‡&”iRs 5Ä&€iÒr iÄNp¦Iç6+;Ÿ¦[ÇßÏOÓÈu‹O&¤éDçðŒ(M“…iø¬iš¦ ûÀø4ͬ|ðÉ\šæ KßI”4-–ð-ó¤i¹0íú ÕÁ¿ùž¦ÉÉIƒ4U‡}KF‹éÄc>MJÓ‰µÁ UšN\mÎÇ#3™˜ù®>û2¿?¦+×=f/Ã'ÔÓ,Zšz§§Y¼´ôœKO³Ä²ôIO³tië;žf™eê9ˆžfùÒÔs=Í ËÒwü<ÍÊ¥­÷äyšUK[ß¡ó4S£\àŸFfÃW …!³Œ¥%ž°d÷ …!³L¥%ž°d÷ …!³Ì¥¥™ ß0$†(O ³á›†ÀJ"ð42¾e(šÕu#-ñ42¾](\²ºÖÒ’L#³áã…Â’À¬r˜K&|YåP—M#³Êá.›Ff•Ã^2Ì*‡½l™UÉ42«þ²idV9ÌeÓȬr(˦‘Yå•N#³Ê¡)›Ff•CT:Ì*‡ªl™UYi¹²òb9le¥RYi¡”ÃVV&å•L#3åp•M#3å•L#3åp•M#3å•L#3åp•QU9T%ÓÈL9L%ÓÈL9<%ÓÈL94eÓÈL9,eÓÈL9,¥–Kiò3IÃÓȬÞ"k<1Ìê3ëY³a|V'МۧÈ>4ÌêÌ ã¸áð¼.«+ج¢²^ÌËúÄßLËÚ¸¦r_+œºr’•Õ­ L²²ZÛö¾IVVwÒØ3ÉÊš­mí›deMdû¾Ú•53cù¶hÖÌD î¡fÍÌÒçí=ìF¬3`]+¼©š5s”½èO}Û‡>–5Eà¯eMI AÌÜ×§öíܽÝôŸ7¾Í—5jQèùÁÜ·_ûÛîívÙ·útëùÖ¾ÝÿècîpVú|9©cÿß^‰Ãz¥Ã¾Ưý]ôµñ¸k<î.êëúНö_ýÔ€Ký‚˾ôŸ+\vØå”¡ËþôŽí6œóE\Džâ¬«‘6ö·ÿŠh‹wÕ^îk¼¤/½Ào«œd'ÍþÒ´ibOæ+]Ü~{Ñ6‡óõÞgŠ8+V:–[ÂÞÜ È°¨ó‡qô¦ýuR7ÍÖZwVòë¼íŒÿ0šÁÝIöC¦ÆíL–}öF:Ô¶ 2ßn¿ kõ¯÷äÛȶbf±e†+&ß&¶3K-3\eù6³­˜Yn™ùWwòm­™y Íñ*M¾­°53W–9^ÑÉ·µÝ@¬NË ¯åäÛÖvÆêT[fd'ßv¶™šä‘ÍD²Ò’G6ÙâMÙ\d+7yd³‘,Ûä‘ÍF¶f“G6É‚MÙ|d«5yd3‘-Õä‘MA¶N“G•°£ Û´c+4yT ;êЦ[›É#›|´ 6ùx9lö±bÄ6ùh)b›}¬±M>²“Ç6÷Ø2LÛä#k0yls-Àä±M>²ú’Ç6÷õb›zdÝ%mæ‘E—<¶yGV\òئ[nÉc›ul­%mÖQ3›u4U›tì‚xžL¬ /ÅäIä˜âƒ<‰]Kfš8¦t ¤®-7ÎãÐÚKžäÃA±Mø<)9†ƒ*ÄöàóD¹ÍÊNÙçIíãmóémïc•ŽÂp/ÇttàgœN‚|ü+¶ÛojwŠ/¶‘mFºªblÞVlÛŽ™¥–™CÛÌ2› P@nȈ¾Ø¶-uiÙ‘ñ|±­,32J/¶Ê2#3Ðb[[flF[l»©]kÙ‘p±Õ–òÛÎ2#ô"²éÇ&ÇEdó•!²éǬlò‘‰dÙäcóÈ"²ÙÇ(儤`³-–‘`µ³éÇV,ŠH‘Œ2^Gsšóéz>©ÓÍ ‚ºÝ«ÃÀ<º."íѧq‹¨ó¦¶ï‡Ç§÷7:++â‰sËN*Ž\Kf;¦lÂRĉkËSǘMWŠ8sm¹qîã³ãE\¸Õð‹º-c6+âÊuÌ+B¹ÆGj<ÇÑìÃ<…7 ‹d¢Cx°U$ÑÒÔ3®*’xiéBIbYúFKE’.m}£"É,SϨHò¥©g¸S$…eéÙI¹´õbФZÚzÇ+ÉÄ‚ÓýX½ÙƒgLŠ¬ÆªmË_útûZÇ–q³àËõ¨‡ÇQR8Å.’viïµÔ ËËýÐÛMaíúu¬Ï‡áÃNWd–Ú&Yï.R»¿dkÉE ;Ö)¤¢Ïdf*:MÚk¦v¯ÉÖ‘‹Ôî6Ù±–²ȶç÷Kà-ª²ÈÚfÌ.¶íðÎLÙcm3f—Úvxg¦ì²¶³Ëm;¼¿TöãW»°,w¥m‡÷—Ê~üj»c¹S¶™T”ýÖ¶#\)û!¬eHFLe?„µí¨Cm²yJÙc-C¢·2ìc£ñ2ü#£û2üc£µ2 dCè2d1¡Œ2iHÓ4dQ¡Œ iH] *²¸PF‚Œ´4‚Œ¼0‚´,‚Œ¼(‚´$‚Œd6ZF‚‹l:ZÆ‚ŒdÜ^Æ‚‹læPÆ‚ŒdæZÆ‚‹ŒŠ± "™k–±`"‹ý±à!Ù_*cAC¶¿TÆ‚…ìg R;ÁBš° !Ûˆ*ã Ãs“2n][¼TƘ2Ûεe³2Ùcn¹Ö¡³œe{@•¸(¶1U&)¨u6c)“̵fs¡2Ék^A&¯Ù‡,“riíÛ‡,“Ê6õ·,µ´õíy•Ƀ×ë¶°Jµýö«/P?oö·}ßí~îoÃìþÙ]÷²ø/×£š­G>0FFû¿öhâƒ~Ý!41ÐÔ ÅN 4óBÏšhîƒîqYs-|Ð;.ka ¥ª!²4ÈʇÄ%­ Ryù0¼\°Ê`kö·Mm úsÜhë­¥ÓĶ«ýDü±Ú`;oÃ6ÚÐÚ«X}:!lk[{{n[ˆ5’­½’íÿ@¬ÑlíÕì鎙ÑÕÖ^Õ¶­QmíU­ºA¨QmíU­:B¨QmíUm UÛÕÖ^Õ~b¨‘mí•íncTk”[{•»;0ØH·öJwwnV°oíïNa¬QoíUïõŠdkä[{å{Åq¹5ò­½òýÉêÚ¸±lÁ¬÷oÔôÒægcºPЇàhúÙ˜N”‚‡n×EÇÓÏÆô£=ô¼.:™~6¦+åh˜ótúÙ˜Þ”£ÏM?Ó¡Rô–;Ÿ~6¦O¥è;,w1ýlL¿JÑËégcºV †¥®¦Ÿé[9U† ëÂÕô³1ý+…¿Ã«§Ÿéb)úf½™~6¦“å•6ôË.¼~6¦Ÿõ0õ;‚ëégcúZÞà BwÓÏÆô¶ž¼Ÿ¼ÞN?Óáò&úhM?ÓçRøØM»ðxúÙ˜^—‡§;$ML?ÓõR|‹HS§ÓÏÆô¾œ±7„ΦŸé€9úˆÐùô³1}0E×Håu1ýlL7LÑŸ]N?ÓS´é»]|5ýlLWÌñc÷íâÕô³1½±?ôà.¾ž~6¦GæxáÍô³1}2…›~ÜÅ·ÓÏÆôËã{­§Ÿé™)ü'©ýnúðÚ|x‡³Ô@x6:K€g¿³Ô ø¶=Kˆo÷³ÔBx6AK„g/´Ôø¶DK]ˆwg´Ô€ø6HKm+.¸OZê|Û¥¥n f·¿X˜Ä´ÓmHjA4„ì; ’YAú†´ ùÒm!dhJ TX ÆÆ\bJ #ÌК¦²0vyȃØÕ°ûÙÓûú¦>î—»´ö@1³Ž‘5ÞI¬†ýP`̬Sdw«ao3ëYã}ÒjØØtñ.h5lFºÆd³¶$5Yÿ¯†IלìNVÃî$°fÎ#H¶÷YE&d´Š MØ>hA¢ÝÐ*‚m϶:«6>Ûð¬†=GלmfVd ÝÒ¬†Hy²X û ó̲‘mrV¤#-)d#/(¤#+g ÙH6?«’‘mV1d#Ù­bHF¶ZÅ0l‘MÑ*†ÜeÔ!u¿¨yÌɦaC¢“]Õ*†<'{«U YÎvX«²œí³V1¤9µ†,§Y,gª²ü7±Nl–‡wk«$b¼[%10DÂøi—*I)€!2†À‡L«¤ ÅJQ2Äâ¡â>#o¦l¬M¿5»¨UÒ¸˜ð;ÅUÒº°:¨Ó _%¬›Þ=Ø*±ÙøyÑÝþOÝöQ÷ªLm`^¦6/§ÓÓ_„“©ÍÉý©‹š#ÚØyŒœ“ÝUš¸äÛL®R›Á§yªÔ&càÓ°UjÇàUoW™]¡á¹v•Eá™kWY ž¹v•%à›kWY ¾¹v•eá™kWYž¹v•à›kWY Þ¹v•Uâ›kWªoΞuû“zW¡—M*Acf#k2R 4fÖ)²&ó(•Acf#kÿç•*¼ †RE&xª†uÏ*¨AÖd:¨ZèšUFÖlò¨:hÍ25¤#›ÞÕtòXCBÒÉc )É&5¤$<Ö”lòXCR²µU éHçšu‰Ìé\³®°9Í ¤9›Öè|nZCªÓ¹i ÉNË É΋ ÙÎJÚ@²Ó‚6í¬œ $;››6ëtnÚ@²³¹i¹Nç¦ $;››6ëŒê ¤:6élVÕ@ž³ÉfiN'› d9l6åÔ²œf’œN6[Èrv*¸jm–¯˜m¶1CYW›PC¤ AçLmF!“3LèäpÕA(Ç*†e§ˆ«¶¦­ÄÎWmÃ0øáÖªmi"dÊÞÚDsbˆè\„ïtq¥·à›ßêdÊ÷YÒJÇ.Â÷JÛŒÞiÕ^o—óKjJçÏËþºë»·£º]YçPÛí·ßê¤jõ[õ1åÇ]]´â ¶‘‹XqÍXmc/îÎø©¶‰Hq©ÇÓ˼¸3æ~ Å^ÜC…NC”~ØÀ*/ìÒÏc/WÝzR1}z¿í̪×”odÚ¡¶ ‡Õ©mK1dŠ ¶šCh2Ű©ˆŠ¸âÈ|DE@rI‰Š€Üü3¡æ*" L:Tšy¨ˆ+0ýPVh¢" «ÀDDE@SþÙˆŠ€ŠSqñÐ*àâá5ÀÅC+€‹‡LSTÄµÃæ**æÚ!sí°Y‹Š¹vÈÔEÅ\;72TW±G;lò b.ž–ìú¨Ø£ß4!.ŽáÚ¡yãÒùƒA¸tX˜Š¹rÈäEÅ\9dz¤b.2uT1§W›Dª„+‡B¸rXÎ.œž5 ®Ïoêø† Qx(¯ ¤•›h*‚’Xñ*:óT¶ð´Ò Ýš=D•ñ§M*úk÷á¹·?{qq%@¦ígA³¼}Bžâ½BôÑ(•ýB?¹ çG5³?¾Ë§R êás‚ËS!(P÷ø™Â¾ëÑøë•*ò1}¨j ˆ{ùÅKÈzDÎ}é|¹Â~Ô§IõÃ~øt@¨†€È•û’$ñ{ýý܃Ù3P*Û~»ž¿ÎÇú˜ŽgÑÓpÍ,<‹‘9Ÿ|g ´§æ)2çÞ3dN'ÊY͹ûÙ“*+¡5^žRY…¬Ck{*S>ûô’Êj[1ÕÎI!6ÃÎZÇ’õðÙÿŸ´[nY×…Í[ñ (–‘Iìba“)kØ–<µ±GÕiwôQÇÿ‡ ¶D*ó¡¼¢£Öš£ ÄG‘D¾@fÞ¯ªqn›‹5õ¦]ÑØ9zîš÷«jÐÜ…bMþýø~U ‘»C±&ß´-¾”z§]÷~UŽ»¾\•Ÿ`x¿.GÊÝX®Ê·Š/¦aa7ŸVkÕ_«h­üVEcõ—*Z«¾S_4Vpû¢­r`ÛUãÙ¾h«ÆöEcÕèµ/Ú*­}ÙV9P鋯Ê!j_´U2û¢­òM‹–ª!e_4Teµ/ªú¸}ÑN5nì‹vªáb_4SþøCÑN9ІÊ5‹vÊ?_´S‡·†z<þçîËÏéûË·;m„¡½,xù1­_¾O÷.xkµÿ—#•¡ÿ¨R[u>ªô¶?,Uå[“?†>þR·ê- óõBv3†åzá½ÿäz½reaúàO²0_/œU8~¾^¨;¿Ncs½Å1\/dWqŒ× Ÿ¾°òðA% Ûë…7ûŽÝe?š°ûËõ¯ÎSŒo¼Mß·v¼ËÓµ.óø–»Ghã[Ò>7óåªôŽË嚎’Çõ²àÇ·u±Æ·Ô¼ŽXOóKßöŸ~ݾôé?…1›¾'üÝü×ovå]¦Ïó.¨}KÖ¶Cü~lw{ýMƒõÖõõçÏÿ³lÃöõø¼Â¾}›æ»åië>?ß}»ûúéKýjÍin>(S]¸^W¿Þsšãeª;\¯CšÛÊT×]­{úò¨Ÿ¥ÿ°P•ÃG•úiÆ U9}T©Ÿgþ°P•K­òéGýj‘i^ë«ë7LõÕõýs}u|öåóÿü˜^>-w»@ùˆÜMKS[[SK¨­­®Úkkk´´jkkº´µµ5dYºÚÚ,}mmNž,Cmue}kkó½§êæá›ÏµÕÕ«]–ÚÚ"/kmmÍ-©¶¶¢K®®­¯¹V›¸¦Öjç¤ÁZmãÚǬÕ6žµvµsm­6r­\mãØc­Õ&ŽýÕZmàØ[­Õö]—ÓZmÞ/ú†ÕÖ}§µ«­ûÔ“þ’j?•|EIµŸJžQRmì§’ú¦Tmð§’ºý›RµÕÿ>y†’jË?•üBI½ùŸ>Ø-jª!8Õüƒ’Ë <ÞO=?ܧãy+u*Âú—™xÚúÉ_î>Ý~{xÞï¯÷ôü€V“†«îôÍP:²ôZÕôѽZ=ת?ú-aýõê¹úùK¯U]†êûÝzó-ýLß®|Æ|ª‹ßo-oÝ-87WþÖ‡ß/‡kÕ× ßeíá×Mž¾}û‹$äÃÕJµüyPÐ}üù®~¿þzýµÒÁ›Òeó~Côs:»&Ü'œçý†:••Oë³ëÉëÅá¼ø4+öeú¦µc}íßëáAñPÔ¥ÿ>§û5­Wÿ\ûAÙ‡·+ÞàW:=§p7Â7Ûh+]ý=ëwšûqýPÔ¿^pýwo0oðýx¥Ruím„õôrÿòkz|¥¤Ÿõ¾Ó¼¯Þ­û<=aÀ4oëw+§¯õnÖ¼­Þ­z÷}ª+ÚyY½[÷1Õ;dó6¬z·êËó3&eæmTõnå¯wõnÒ¼ ©Þ­Ša༦ޭ9ýøyšyL½[ùÇ]}ï4o•w«ÞÞa·°¢Þ­úeúþ¤°¼_y™¿ë[߯|?}Áªéýªó‹¶o~¿êþÑÛ®EÛýö0i2¯Eë}psX‹ÖûôåŸô­~x™×¢oÇ\Œ&çµhÁÿLõƒó¼-xÂ8^‹ö;éH±íw}ЄÀ¼MxÉb*n^Ë&üEA^‹6¼}­[4bÍÌkÑ„÷ §÷-šðò%}›ºµhÅÛqå;ŸµhÇÏ_Ø~RÑ¿~{ÐÞ2½µãâúùPßµç·wýøæsnÞ­}åÆsïV¾rS9Ç÷+_»¡ÇœïV¿v39·ï×¾r#9wïÖ¾r9÷ïW¾v9ïV¿zóŽ9ïV¿vãŽeëÝm‡ü»¯O/_?¸mDzõíÊUµn(×­g{ÙúqåªZ÷P®[Ïɲõ×ÊUµnW®{ýVËÖs‰j×Ôw©Ëç©,©g}ù¯•·Õï˜Êu1K¾|Εu±ó]šJ+Åei*ÍT—ÿ-M¥êµ4•–ŠƒñÒTZªzKSi«¸ pi*mU.M¥•êRÀ¥©4O] ¸4cme~ŽJ3ÖKSiȼ$pi*MY.M¥1óV³¿`¥5ëû…Jcæ× •Ö¬o*§´–PiËší_B¥1ã È*mY— .¡Ò˜1æYB¥-«)‡JSÆÉ‰%TZ2ÆžK¨´ctœ—Piƺêj •V¬kÖ–PiÅ\·ÒŠù!ÎñÇwÌXâçúúKlPàŠP¯XbD+õŠ®§_bûA¡+»ë•ºÀj‰C½P a‰#6©ñ©^!±Ä¿øycÿK÷¶Äõ}Ñl-1½¯¸vÉÖs¹úâ{¿öásñq®Ý‹c9œ7}ß q9œ7øïç¸Λû¯‡ÇuKüØ~“ç‡ú—Ãyk»ý#®\Zm}õú…KK{þ«|<6\Ú¦XÿÊèpiC±ú•ñáÒÆrõk#Ä¥=ׯˆKÛ–ë_%.mW¬eœ¸´}¹úµ‘âÒEÁÕ±âÒŽEÁÕÑb{¾sø}×þã{m ›k.×>n¯×µ/¶ÖRYû´¹^׿ØXk¹þik½®~±­ReõãÆz]ýbSårõã¶z]û|KuŸ+kŸ6ÕëúçªkÊõo©×õÏ·SÊõOêuõóÍÔÅÊOÉç^,Ý¡¶®<õbéÚÚ¶ºòÌ‹¥ëj[ËO¼Xº¾¶½ü¼‹¥ª[ŒO»XºϺXºJû¿ú¤‹¥«dàês.–î<_^¶cZŸ>½Üßý¦èçñ¼nû ÛëË—tÿÁIº¥o^×¼~MðÒ‡×5?Î÷±XS‡Âþð~U ¸ûöýš›÷ÝûU52ïûbM~Òáýª•÷cñI56é§÷«jÚÏÅšü¤ËûU5úì×â“jÍô~M &û\¬©:|~¿ª’Có~M ‡¢•Š-CÑLIÈ–¡h§"dËP4Ô_Z³h§ÂfËP4Tþù¢›-CÑNÕL‡¢™j=ÍTÃç¡h¥þñ‹fÊMZ4S¾gÑL±âøÖ þXŒõlˆñƯT}qÙÁe·®j]u¥¬sÙâªþJÕ•o6¸ì?®¯|3Þ“c'—=»j¾Ruå›-.[]µ^ùf®J®úáª|¥Ê_lúì²ÙU«¾»êJÊö¸Ê®Äì¸3WÝ•œí;v•] Ú/W]ÉÙ¿W>ã• ]ùˆWƒçX,Ó•¸xJeºÞ¨f™®¤åÚ»—+ÍãJ\®ü­+qaÑü–w³¥X¿©­_¿%È2‡ÚÊœ›cmuΠ·Úêõè.óYþfâmî.×ÿxvoý¼ÿ”OÛ{~ÿtûp¿~p*zýÜ`u­êë×O®Ÿ#V×ú‡úúõÓ¤ëç«ký®¾~ýDðúyÀ£O?ÖׯŸ^?Ïx{}ú¥¾>F’ëçë£[·~Nõ ×Ïëë4hœŒ® š'†¤kƒæ©éÚ bxº6h :q¼6h¢Õ® Ú¨N ¯M¯~&´kH^4lžL^› _cäµAø­i¤ßaðWFô€¹5 š!X€y‚5 :é¼„Ó k@…€(`ü¼$£è5 8½Ä@cï5 :!½¤€ë#ü@±¤€÷Ybðîñ"‚ð¬íß'áo:k|‡¿8ѾÆ÷™ø›“ík|Œ¿èx®ñ}:þæ¤ûßgäÿâÄûß·Ï¿èñ®ñ}›û›³ák|ßòþâŒøß·¥¿9+¾Þ·§¿ék¯‡÷êòD7ŠÞ·©Ÿ4¸Þ·¨³ž=ÿÌûötùÄÇê½MÖCÑž®ÝJw=¼oH‰G–ÃûíãtóõÊoÛ¾ß"ŸÑ^Û÷ÛãóÚkû~k|xf{mßo¿8»½¶ï7ÇÇg¸×öýÖøø,÷Ú¾ß$žé^Û÷[æ/Îv¯íûãà_œñ^Û÷ÃÏz¯Ýçÿ¹}¹ÿÏÖnÿjpÚ5X]ë‡úú®u«kýC}} ׺«ký¾¾~Âè´ðëèãOõõq#”µ›ñþúüK}}ö»µ¾¾z_]ª¯¯îl—±¾öj=Z§º³=š§Æã=š'Çã=¨ÆD=(ÇD=š¨zƒ}W__Ã÷Mš=Ú´iýˆõù Òz„@=BÀ ˆ)àp¿G <ÜïvúA“"‚ÀI‘IàÄ€$xb@8Õ4 ŽÈ;MÂÀõ‘ŠdAµá}>¾PyÞÇáÃé÷uxŸˆï·ïCñáãä×á},>~ ü:¾oççÃŽÆ÷­ý¯Æ?ãû|>þ©Ÿ.XÇ÷møã[š¯ãûfüWƒŸñ}cþð*ßu|ßœ¯/Æ÷­ù¡~ó™uz¿Qþb¬0½ß$¦÷» Ç ÓûMø7c…éý6ü‹±Âô~þÅXaz¿?+Lï·àߌ¦÷ÛñoÆ Óû]ÓÇc…”ö1ã×}„ñA¿*¥æýšØÇ§Þ¯©ÃAJñýª8¤tx¿&z¤)µï×D×2¥îýšè¤Ô¿_ÇД†âËkÍñýšèî¤4½_}„”æâ¯c`Òò~U®¹¾_Ç´ïÎ/×Dç'¥ü~M HR.Z(µ)-T+¾5ÐéþV >¿µÍ¿˜ÃLùP[]Óg)·µÕëM¹«­\?ž¥üÖVLOOwßçíKV¯—Mù­±¦ûõÓCÞvKË~ëßêêùóçÿù:ýúk“?7gëppÌŸÃÙʞ˟ãÙz׎ùóá´æÕÆ?·—kiµîbµúè?î/×ÒjÃÅjõ¡~þ<^®¥Õ¦‹Õ®Cðüy®¯­Õ—êêuþ?¯õµµzºX½>“?çË „ß´ù|±Z}º%7áb-d?7ñr55Ææ²‰á0—›Ë6¦yn.™›¹¹lf8näæ²™itœ›Ë††ƒKn.𯹹lb:åæ²mi,ž›õÝzü×íIãÜÜäwëé Ãe›ÒiõšËO¨Õ.¿G¸l}úá²ñù[\¶>~‰ËƇŽX—mûépÙøÐ[Ëá²íiÚ0‡ËƇ.]—mOM/\6=ôgr¸lyèÌäpÙîp-}—ÍNç³s¼lu:œãe«ãj—­Žõ²ÑñDrŽ¿›ÝÇ9¶åªß¶w¿Ÿž“‹º¢H®ûr]¯<+³ëÇr]¯<+tR8ÇTÔÔ;9æòG¬ÏèäÃçòMù©ç½³¯G'»¿ka‡óáwZî¯>ç!~7!à|øÝx>¤Âùð»íüx¹_ž_N¤øÝ;=2°TÃùЕuoî¯Þ¡/ß!Û~R­?T>éiI¿õ1ªÆ²j}xÆÊSmåÓOÈš¹¬ùý´ ×,eÍr÷¸à‹ù°V~ªýK¯×ËRí»{œ¾aý\ùX¿Ÿ/y­®ý‡'·rÛœ¯zeN+·á|Í+SY¹k^›ÁÊíá|ÝkW¹m/V½2_•Ûî|Õ+ÓT¹í/Ö¼6;•Ûá|Ý«“R¹Ï×½6•Ûél‡ôzuGm×5oõwO¯·™þGÇ´åóÿþôoßõéœ_¿û²}½öüë^–_~ß¡ú¹«Ûùr3ú‘ÓVûå¦y·eÏK§ë¥áJé\ý¸{ÙeÑÅG]ØÞµ¢ó¢µþ»¾þ4—?êåo“¼MŽ_ñ²öòæj¼Ëï>ëùÞk­Æw,ð–úË6{^U ê—é[~·ñΛêZ å±(¸¨äé÷øý /‹X¤q}øuÿ´w÷ÛioËöûîÞý{m‡´þ‰æi™¾ýÏÓ¾îÃý»àÚ¯·¤ŸwÏ/Zµ?_ušþý2M_¿ríá|í—må+ëŽçë~yùùÁúÓùú___îï´ê|¾êéùêû.—Ÿãëõ·^/>Å4-Ûûîïôü~Ítù!î§ïZ3_¬¹ýÍúzéóùzûÌéôuâÊÍåŸß/ÃwJáò—ý÷‹¾}ŠŸ }㊚ó¯ôüiyùö|÷ówŸn+TÍŸÖ»>þó×5Zò·ããή¬øÚŽ·žÿ¾5®®ü§??NëÝþöÇòmô»ç«ec¥ìõ>.ûÓ°——ÇÇtýOüiÙû×}X¯å׆ýã£wýÓ¨ŸŽ÷Ó¿²æŸF}·7Ô§§ôôôÑzmÜÏÛ.ð¸3{|ø~­"¾ ä–ÞãÃL±vsНӶîþÄ/¬þçãœ~ŸéxNÿ­‚ÂçÏŸÿgy¹Ow[ïèûï=a­{¹­Ø+~z¾ûžžXT0O+J¢Jn§û°wª§¶Âƒ ë½å­¢UÅÖwGI§’oûm÷?ݾðãõªüþòT½ÏùV3¨æiª>%c+‹’€5§bÍkÎåš¶ûÓ½ý¢õå>^û¥VVÞÖom¾Õ¤+5×›Mf¥ÚMSæe~k8W¾YSæçµðû]õH[Q™¡ù¬Ía›5eŒþT=}IjpM™¡?U/ûóCßþõe¢æk¿G™¦Í©)ã3‡×}É7Å¡)ôZöAÃhÊ$½–~O§Ÿ!i›U²^þ)¢ª’³?UÏÓתʠa×Ú”Áª>éb[³ŒÓ×ß$=ÞÝk•Qúúú¥ïž§Óov{§ÖÊ\!î¡ Ò·?{$•”1úS²Þ}Ç7 eŠþ]ùeˆ¾}°G enþ”|ÝŸÎW/*ÓóZ„ÃW(Sôím¯€š2Bjxà ev¶.,Ö-³ò-ýЗÁc¶uË`lë~øuË胗!ÙFÑ?÷Söª(ò:±ªzU,cqŠÒþ¨ŸO?~œ&†Ï—âÊØœ¿ÓÓ>ŽOØyÄ2?÷üc™›:¾Å2.ÚƒÅ2'Ûº}ýÑ2[U”ǯ:pÆ2"Û  û‡XfC‘ˆe$ž¾|ú÷n®ƒb™­hûìW‹ÊŒlE§†¹ýËóËm8ý×ñßÞýçúCP¶w-Ótþ®þÅe¨jÅÛ(tuÛòÿÅ{—1d§4–|úÂ>Ô¡^ý¤þ¶f,ŽoEŽæé{øC£yú2=âËŠ Í:Šm«ž~g×)ºÒï:)šµ›>ÚVÕ åP¤hÆ¡îPDg¾»>X=¹y­Àжš"¯5ׇ‡"³Ö,Ú÷üò{S½pÈv(úYÑ öÄmÙÞ_Þ"©Ï×–mÿåÛ ÚE[¶þ}å?Íue´·o˼(2m‘ƒúµGÛšEë_ÕöÛ¢ío«n]²§»ïíŸx:ê~çN­-BQ¾;>m’¢øJtÛ"8e52× *JÕ5i‹ UJ?üÕŠP•o¢^¤¬RÊfT¤­,~Áñ +BWÔjÔÐÉ+JïÐDº"‡•ÒÓÏý ¹ïŠHoñUãË®ÈhQ[¿öl+­Dö}©>q-ÃïKßÚ6v÷q¼¿½TÒVûq¬ëO²ÝJ?õÖw;}zv⺳ý„€tgÛsÝÇé~ ¦”²îãts@ÚUâ­mT 3RÔW²û¨Ù¾’ÖÇ ?X_æÛ¥/cx‡NA_¦î?B_¦ìîûGCç¾ÌgVú2E öehîö““O_·>ë˱µ-Ñ–ïËÜxÝ2Ø•ôe~÷¯XQFàåJÿ°/ûËiæöÇí¾lâ/jeù3Ï›¸ãÊÖþ¢éÚ¡lìêÚ eSáÑr([û 6æP¶vu|‡²µ¿Ü#ÆCÙȯŸÎÊ–þ§àZUÙè_î±³Ê&ÎïP4q„y(Zxz;Ì ¤hâ锉ôéþå÷ÔØ=·AÑà“¾BÑÐS¸ìWùý¿êÌEûOᣑÞX´þךúƒ’·’"¯%OeEÞj´ß‹P¼Ö uE6w¿cŽt«nåX„#é{©Ð¹”±HBº?;ƒƒ¢"EWfÏÆ2 *¿ë÷/£rÿ6næ÷*Órÿ6™Ëª2&÷×'nÇ2.|÷2>Ý3•‰à±c*£ð¯>ÄTFàß×m€DOeÎj~d”¹©LC­øu`¢·)ƒrö6ú²ebÞŠ8‰8•éy«úàx4•yªÔ^{ƒ2[oo ±êTÆê¼èÚŸ+ÓõVy}’m*#öVzê@¢°LÙûÂë¡›ÊнÁ úS¿·* ˆç2†çE6Û¹Í?U8´Í×2ªñ÷|-¤/ØsÌשnâ\DQóNs‘¿Ûkq.‚w«©ê¹ÈÙ¶êåNe}í¯à-ФoÁÒ"oE)/rš‹ÄÕΧƒçé-ž5ÿ<É;{ ì ç"tg5²ÍEÐ.ŠþL*°ñ‰{+çÞw)w^ô{Ú¬N,·â"ngÅšÓ^Џ]}ð‹Ø½«‡¼©;«A³Y*¡{«ùpö`©$ñµ\#Ù¥–Ç?#YlóåJ0Ó·?‡{Ô^I¤ú3Ë•(þm¯t¹ÉJ¯D‘£åJµÛX®Dñöc×åJ·¢ÓÖÀÆX¯äpŸF<?áwY¯ñÏòÏt°;¶ë•d~Ñ^g½’È­èz\¯DóËÝïZl¢õJD¿p2g½’Ìë°õJ<ïž¾ü>„ýþ‘¹_¯–§Ö+I½Öõ[¯¤õëŽë•xnEŒ?Ö+ ÝúŠ¿ì]Ö+Ieº’Ô.m\¯V!éJP9!”®äóãé¤t%—õ;=l5WbÉ ›t%ŽOÚ½¦+9ä2]‰áVô»G¦.Dºŧ/jØéJôžt–+]‰žÏ¥+ÁÃî%]‰†éJØ^~'Usø©šµcCä0 U²¦ËˆR%[óô6•äÊ\I~€\ÉÕúçK¬{—àÏ %åJ´Ž\IÔ·ÿë¿WIØ7½Ë•diÕJž°7É•ðhZ,W"sµƒ–+q¹mVü3•¸lUgm…••Ô觯„哹ާ/üEËXl¬gMBç2§Õ?¸ö³)mº¯M‰›nÿ\ÊUß!7¥nz­¨oê¦ÄM[ÅÛ&Ó'+€îtS’¦½}jJ¬)s°Õœ}*Õ•¡¸Ó 妤L<Ñß”†éØ›g7³))ÓVPo¦M‰™öuÿnf¤)QÓYñõ˜7%k:«õ_,sòVõgxâê26oÕè5%oº½S÷§)IaDSJ¦}Ýó–ÆÊJnöK™¯ÎÓ4¥f:«bG¤)Ó©Œ[¶dL·Z³ŒÌÙ–¬*³ƒÙÒ¦DKÛª •šR+]ýÍH¯)íÒÛ{¨“Þ”té­èéÏ8x¿,åe¢^®í&JÕ¤ë š’2m«^î$xÈ)Ó[­‹Ê½üé%mÿòíE}¬¦„M·/ZµŒúðM‰˜¶U?¡4%cºå÷­dæ±Çº•Ô<ªM•\i_Y;–*aB½)™Ò—+£)¡Òµ“\Mi•4yÔ”@é öþ%Púòz <¢áŸ× ˆ¥Pz-âι´H¯5¼@«)Ò—·Kôõ‡ŠFÿZóÝͦ4I¯5Ü™•6鵆)eÒ—z%Oú¢5‹ p†¯)qÒ¾îõó5M‰“ΊØ|KtVueb®)ÒYá77™2.oeÚý—¦èË XSš"ıäDw˜ÙnJO„k:›’¹^r¢}ÝÓAæøo:ÿÔ”´è]嵓áM©p cS#vmKa´wPtíkS*£}õG½y‘‡}íÓ×ÝþåéËÝïI‹ã¿ý9P«5•éz_ª„HwÈDÉî¾ýÝh¤ôGwjà%@b+£ðýÃîv©Ž¶¢×>±þT©Žööøçê)V•iù í–ðˆwjhJyÄ5ËD y¥;âž®tGõ»}okaøzýF.MIŠÞ*ôË­þ¬äOƒô½Õ²R¢¯Ým¦)ÅÐYˆTSb¡³*mÈ"o5Ø •4èµÄ—å5¥ z«âoWz ¯o·ÝAI‘Œ³ì¯J÷óõïîîÓ”ìç¬?yé}Îk~Ÿþ2Åk'™›’û¼½‰¶›ãåI¯Ò÷œý9UªJM {.«ÿbŽ¥>oo¡âÄy4W2ž¯Ýv©)ùÎ[ võ%ãy-áDHéyÞjðÉJÕsV‚N‰{^kpâ¾)•Ï[ 6N©}^Kp!sSªŸ³’«§ÆšÒþ¥Ú¸%*JŸõ4œ‹nJtVòûf[Ïì_T;g€{MI…ÞJ4–,±ÐkÍ}/ÇêQÛÌ©ªß[+qª¸o*ÝÐ[f[J?tVƒº„Dg5Êb ŠÎŠð»•²è­F#›’½Õ¼|Ѹ«ÄF¯UÏü¹'}§HóÌ%9z+Ñ/íè¼|[ÔI‰’#½UëˆVz¤×š‘¢R!}ʼný¦dHÛªoZ×U"„Aki޾N+Þ¶ÄF¼sTS"£m] ÏJ\´­ÛbÝJ0Öö48¾RU‰Ð¥/úÛó¥7âDS ޾¾^EÏD ޾ïªúÚôÇ*©€™mJg´­«ÍViûž[+UÑoäp¼ÃàŸœ6äÅ"¼]%Ç·ûÝþÿyë2=Õ”BIݸÒ'}ýp»tJ_?˜¼-•Ò[…þH)ÊJÄùíR}õ)Þ}å ¢ÄE'ŸµËМ4ÿ©\«,c£ß¼ ÍïÖvqb£¾oYfK%$úú‚Ä–dh[u¿öÝt¿? ã }}ÁЫ¤B_uª°TAÛªWö¯%úªÎmÉ€xV´Ä?ÛªoÓ|®+£°õÔ™) Ð×_/±°v\fÛ”È7lmJës¾7Ô_(bpQôWʨ)¹OåM8ÉRJŸJµ.}nJósQ­ª"*UjwEP.ª>¼_SºŸó7àq¢?e8"•äç¼J·$iJìs^†‹º›’ûœWi°?—UúˆEÜ.Êt$,©Ï»²ß •õõ4¾ž¯DÕÕXò,gi~.Ê><™\zŸóúë]Ýü\Ôâ0RŠŸËªëûÒþÔª5UU" ójõÙJþsY…Ÿ¶t?e:’—Ðç² ¡¤>ïÊ~ÿ®wW'¡Kósþ.WŽ*%ø¹(d?®$?uØŽ%÷¹¬Òot5™š¬,ÏeÕUÆÒ”Ì碚s ¥ô9¯Ó`)|Ϋ^ñ†DES"ŸËú‹›kÿþâ>CTòŸkïæãaI.ßGý­’½¯ûsn†ïp5ÃüKt^ö¬Ó}¥ º,Ó™í’]ÔýÞèÓŸmÿçNÌx³«IÆ*ÉÐå¨ûÚ>§C•Ú«hJ=tñáºûkJGtQŽã|éˆ.ªøÇì«W”˜èø¬\ ñG7$oJ@ô®ìƒ}G‰Š>xTISb¢·Š·‰šßÿÍÏ]:£oÓΩ—¨ˆc†}|—‹¦DD"DMIˆ¶U_ØØ¸%&º(ú-ôõå˨¡ÏSâ¢oº6¨dEßî¾×µäDH‚Ò}{ùh¸T:¢oüÐe4^¯gC(ãðZ£ÏJEôVÄéÇPŠ¢Ë*ZCI‹ÞJ¯_)JcôVúáe¹¡´FoÕ:„};ó8aJvtQU]V]?¤„’!•×3JŽôVómúè–¹:+V¿=”Jé­ìƒ®m(‘Ò[-:¨¡ÄIg5jhWÒ÷t÷Ñïr%†Ow_w pÏñP¥·jz‘PZ¥c“Tz¥}ý×s:Ú-…R+íu¯³–®«fïZ$”VéXrå>¡¡ÔJß0æ %W²C ¥R:®ü»Ãp¥®¯cÝÛïåÚJºöÚë?@%[h¥%PÒ 6”Iw¥CÚVýó;©¦’—·šu(UÒ÷zÇ?”éûÛEë„R!}¿â]B)‘¾ã|y(%Ò÷ ›«ôGºG~(ýo+JäÛƒ‡Òa#”öè;J|„Ë›BéŽt¹r(ÍÑwm­¢mÿ=`EÑÄ¿ãþ¿¡GÛªWšN‰¾¿Ü?áQ¡dFß_Å'Cé‹8JW´¯{õ|M(]ÑYÆ¡”EgUÿêO• üåϳt®|©²©_T]žÖÁ\E(éѱöõÈyåï—™ØÖÅá©HÇ•?Øe@΋~Ÿ2CºJƒt^̪J|öª+m¼ˆê"=÷Ú‘–þˆO %@:>!ìî~kÏꌔéXô:­w¥«UÒ¤Ëg›]ù¤E¤î9J‰t¿Òï_žï¾aJ’t‰ƒP’¤{]ËJ¤®yi‘îÓõ&^z£× Lš…’m%W{Q%=ºGó/©Ñýõk„RÝßéw,Û¿†©%4ºåIŒ©Kmt^úøçùõ÷(Óqw¿*¬¥;:­}ýw( Òe™ö»%Hz_÷Áx®tJo ³²¡DKu¯×ŽðÛ–i:E«TM—e8;JÚtQ§)ÑP²¦÷uN pûVRW}n§Jñ½S%¤gïôÑì~(AÔe½êJu§Ça‡C© •êþ¥i°nN5•R<í÷®;ŸÁçÁª$OïK=d)éÓûZ]îJðT)}½ûÞ_¾g™Ïw¥ÞÜeF·Rï J õáÍCIŸöš×îªëÊ4¾«ûýßNšàÊTÒ „CW>{Xô•‡Z†ÒE½¯ÆI¡ÔQï+õŒ—P*©÷¥<@”Xê}éÕ«aB)§Þ×{²¹$Tïkqé_(%ÕûJ“JHõ¾òéîž1JJõ¾X#ßRR*ÿ湡4UÕbœ&%ª‚ ¥¥ú¡%¡ú¡ƒjI§ôˆ›P’©>ÿSb)à­P©×VJ õVä—>êµD¶ÔQo%ؘ%ŽúñAo¿¤Q¯úXEFÞ*ôå‹dü¸~±~(UÔ[6x©¢~œÝÞ¿lþwv•ê¸òë® à’B—iß[j¨ó*Í<•0êTõ:˜¿öõŠÈà®ö¡´Qjø%Â}?B £pÊ>”, d2”(jë­^Ÿs(E;¸¥ˆÚßýꮣ¤Po%ཡ4Qç5úÝ‹8¼áBÒPz¨·±°P¨³"ͪ–Bê­ˆ§aJ(õV¤)ùRC½Õ°kY:§·"v³KïtV$JûôV¥|„?½i÷Xò§³ýjz~×`#•ꬭ¡Qg5›”2j/:ÝH-…Ô^ãþki¤¼ù+Ù¹tv>mU2©§é^7µ¥€’þ¥€ú¥€ÚïÎuË|ìwò¸ºã+ùÓY ¯ˆ)%ÔYo§JuV¦ÎI£ÎŠx9l(™ÔY™îJ$uV…ÖXR©óškד†ÒMm¥Ö-Còešµr™/n³J1ÅÙºÒEí³c¸€1”j_û÷MÂÒÿå=ÏCé¢.ÞmÛ-Ÿþcÿ—¿x·J°Ò툕+ÉÒ¥F¥ˆ:ž3ÀÊ• yðTú§ãÚºj3”ðÉG¼’;íë^ßy”Øé¬F§Jê´iÝJ>^O2èCUròZ3ë8Qš¦óª—ošÅ)QÓYžJÊtVÅ&["¦³*Ý'(”ˆé²êÊq¶Lg¥Wôh(ñÒY!/*ñÒY¯•(íÒYû%]Úªî5+ÅÒ~“C¬[ Òã•ÙÙÒ#½»—âþ4³ãé^”¡¤IG±‚•+¡ÒG«dé÷U.N{_)®DJ ¦¤GÛºþºe|ÐøKdôt­Á—¦è‰M¢ÌÆÝ-.+Qоîï-¼ÿ›˜ÒíW‚bÝ2 ž-Ý Jêóô» °¢Œ€¦SJ³­ªïW¶rÞ&(”TG$”$g[•§‘JóÄÏP¶ê—Gt1Jk£ü–ÀæyÚF1Ïéñî “%³yþs n”JbóüÁmÄB©jž¯]ïX’ެK7sÑÛ»ÿ}Úû»ã}²OÿÁ;f‡ÒÕ<€šBék$ãB©jž_GÍšS.yÍ[ Ï•¼æùlfø’ÕœiKy+ò¥å%¶y«âw*ãËkKr£û…ÒÜàîy¡”6ÏéZ.S¢M\†ã΂Xêšg ¦X’šgôMbIhžïþœmæK=óü§â¿T¦à¬æÿrèKMó¬ß­ …h,ÝÌóK}K#óŒ£I,iŒfb ažÿtõöùw:ý;N*ÄÄèG)šÿ w+±d//û?X¹hÿ¿»/Ÿ~üþôÛÿþÅ.Òñú>O~fc)_^‹_>=¦íßžÒŸÛ‘¿þ7ÞªÈ:f±„0˜®%}ÑO_b——õÚ8+–Ôåõ©*𻋥uy­Á=–æåµäoÌs,Œê½«¥‰ÙÞäÊêE¶^Ö«WoÆÒÀ¼U|ø£– Ó…±T1Ú•”(æõžvr±d1¯U¯w¬Å¥1g¸ÁH"–6æµÛ¦„1/ßg̕ĒÅì·ÆÄºe€Þn£yåf±T2ß3–^g®b©e^ÝÒËh×Wz™moùzvUe6¯g£$4/˜MŽ%¡ÙV½¤8ÙKSS”âšÿXâš³Rmô2(¯5úˆ¥´y«Ñ‰ËX‚›·"íÚKvs^sý:ÒX:œ²c‘Xzœ—Gt K„ó‚«bIo¶U±C)ÁÍ .9ˆ¥ªÙV½:?KNsVâ‹c)kÞêô„ƒXÊš·¢•Í¥’ ?E ±ô4ç5@Ij΋®]]Kcs^Š_£Ô6gEøC¥ºy«QHKtóV£yòXr›³"oJhsV£p–àæ­Þ>–âæ­FfÄÒÞ¼I@Æá¼é@Xrœ·ÍDÄRäœi*5–(ç­JcÂ’å¼Õ¼\¿C^,¡ÎY­j®Äjû7u¾J¶seåîW¾Þï*ÉŽ.㈥ÌùrÆ’çœ;NÔ”úÐ~Ææ¼|üÓXjœ­ê¿X·LŽNÊÆÒÙì¶ïzç2*Ï/J}ij^þÅ1³d4ÛªÑñ-ñÌË¿ÚVE41Q2˜¯ÜC4–êe[ý÷tìGm¡”/ÿbb6–îåßI›©”/ÿ&lÿ¾àFú±t/ÿþž¸fEÑÒÿU§©Ô-ÿâºßXj–mÕýŽû×6RÉUþÕ`¡ä)ÿÞý«_¯hâj~%Hù÷¥~'ìX”mÕë;¯R›üËó±Ô&ÿê\{äÎOéÛôýSб4%o÷RT—±Ä$gò%EŸ¾¿Ò£¯š¼(éÈ:Ý^¢†? žB‹¥!ÙÞíºT#ëÛ£ŸpÂ"–`d}™?ê”P$ý›î?8 K$rVå¿U>“ú̱þ~ÜôõÚÅc±$"·ç8+¹Èm Z·òhwµ‹Ê#E¹ùýŒéÞ?™³3évñÊsvx™b¼ò 6ƒ+ÚùøîùñÊwØ»¿òÄõÓ¯=pç ®Ê‰×ž·ƒø]{ÜŽ¦JZrq+k K]rv¯§&mKdòî^tWïÓKvrv».í™Jtò]Æ’šœßYC¯’šÜOè—²ä^ÃÂ’–l«Ö/eˆ¥-¹P̺/–ÒäÒË£ ”ìdWÊŸž§ýú¤í=Òó?ŸÖtû˜p/¡Xz”#a»~UE,IÊ=Ê0^3)W/‹%MyÆb)RÎfþQRŽG0z<\œ’¾ù¾ý2Ëïôëá8yÿÿýSÎëÖ}Ù6É»Êx^T™^ßÎ # ï~¾ÿ‹íyáA…Owÿ}W××µ¬K?·îÀee^Ù©2ÝÝ~y~W9œWöªÜ›ü»Âñ¼p¸¾AŽWÎ`‹ŒW·È»Ê‹M2]Ý$ï*/¶É|m›¼+¼Ø(Ëõò®ôb«¬×·Ê»Ò‹Í’®n–w•Û%_ýq_ðË6Ìåñ—}ÁÏÚ0–ûÏú‚ß´a$O¿é ~І‰<ý /ø5òøk¾à§l˜Ç‡­êöx‰ý[es^É<î{¹÷•çû¹†y<Åê}íy®Fò¸éß—^l~GrßüïK/š3¹7÷•ÍÀ™<6ƒ÷µM±<5…÷µ͹<6‡÷¥M‚¹üÓ$^Ô$˜Ë?MâM"øùÚ$^Ð$óùÚ$´G>nþiÚ+ætÿ®'D„ïʤž¾ëûÚ‹ïʸžÕ^>÷ oÄô´÷ŸáâGc|?ÚûÒ‹éÝsô¾ò8>ï¥Õ®«ß}‚‹fpýPý®ò¢0ë§Ï~þ±÷¹‹­ƒÏà×ßh; á¸8þ ïs|È‚~îð>½÷x£O“Þéz?¼òN3ÞéÀ]Æ~`¸x£m¸6â qpOýx¸xŸ»-²GŒÃ÷â.~¢‹wònï4ë¸ 9Å.ÞéåéI…÷(xŸ¨7âæxh¼üfï[öùòp}|^y£¨wâGïtÐ;q¤wºhoå]Òi:èt2±¾?|°ª”Ÿï|×w>•ê‹Tz—ó{vè}õù®øÀýÌï)¢÷ÅQæ®åxÀœî5,m¯N¾½+<ÿ¥ÛfßÞ•žÿÊíõé·w•ç¿pëù·?•:Ò^¼ ÷ §ãåå8ßH-÷¯•úose_p{·N—Ý£‹ŸýJø÷ÊÄ)¶–aß›ÈV—¢Úý·‘÷•Ÿ–YÞÿæó—»Çõ}ϲù?ÚyÞþôñ ʾéå;8ÒÇ.òÝŸ¿oÑþŸópµÌõÛ·¸<æúûxÀñö}ø^ï¾ÙÕÌN_ÞÍÖ6ÿçüˆÔ1ûûì×É<§÷³áÍÿ9RÇÀ÷u«|úgÿ&§ÜþC_¼ÑùOÜq—P¼ÑïÏåÏÄ}Äù·º}¹òWG_¦o¹(?oô{ §Ë3Þš ÛIçÙûßïñÖ^Ø@:î+þ¼ÉöÊó?ç;ÉóAXÇÆkù]¾(o/ʯOésHt±%®Oîó=Î÷µÝÕi~¾ÅEëü`ŸorÞ!í>˜úç›\DöúI¾Çyëâ: /÷ËóËô|÷p_ÉÛ¯‡ãúçݺîGíäÝÅBÅ›í·r¸[¶Aÿòðíá﮽Ãz7Ý>Üðñ¯Þáyû­®¼Éá¯ÞdÛ¬WÞ¥¼.äü+_w(¯ ùøá®‡òâi=»ÎEÅiíùµj½úÚCyiÈ<ÍîL³þdqBû¢38”Wˆ\”áB…Cy•Èüòç>'þ"n¶v(¯Y?|Ó¡¼Xdý𖈇ò"‘õÃ{îÊKCÞŠ¬iåÅ![Ù«Û©_År(¯Y_^ïvÉË©åe"ge¸"åP^0rQôizþô-åçzqy É[±î”t(¯%9+ÂÕ‡òB’·"?úP^HòVws(¯9«Aë(¯9¯ÙrËAåe$ç¥Úlå%$oU04‡òZ’³}±2`/u‘Ë¡¼Åé[å•Ë×å]NÏêéò.§çEÞ—7:}_÷çÂÍ+øJì¾M_o>‡Ï(¼=ÝîPÞüô¢è£ª¼ êYùË—·¢£üJ yqð¡¼#êY.à:”·D=+Bk-o‰úV£C]yKÔ·ÜËúPÞõ­†»çò–¨gE×’TÞ5…·s‘¾×ÝõýPÞõ¸gýT‡òî¨Ç ì^©²ûAåÍRX_^ãéÖTä­R­ýYyCÕJñõ[yÕÊ[à‰ ‡ò6«ÕbìjÊ»­Vªq]ࡼëjµq,o¾Z©ÆÝÃå=Xϯ¨WQÌÛ³ NyïÓCyÖ·º½ÏveË =«üËÃ^y›ÖÚ{\;ž”÷n}{‡ôˆ{”ÊÛ¸¾U©§SÞÌõ¼æñêCå½[+Ÿð¡¼Uë[ñ—éš‘8”7n}+ýÛCvyC×·÷à‘·¼±ëEÑG{äòN¯gåx2Ýë[/y(oüzûÑCÂå_Ïk~?Љ+ïÿZÖªç\Þööì1]PÚ‡òްoU”i‡òް·»û¿¸¬üPÞv¿ôêùîÏÎ {…òî°·w¯Àõø¯¯‡Mw¾Ê›ÅÞ¾=´þêN©¼aìíËúÖ×ûp˜]Þ5öË ^û›ENÏÕÌiVà|Iý]ÊȾº<šåPÞ=öµä+ö)å­cßt‹Çöå-dÏL JÊgŸŸ‘˜O–ÀKÊÛÊÇŸëRêPÞBö4©?îíPÞDö´z]dÊÉWì”·Ž=®ÞjõòW×g/áξz‡AyÙãêýøçf§ÿpã.ï*{¬ômÊG¡WoÎþÞ ¯V>}_}ÄW+ï.»¯Þh³”7˜=®~лAÙWÞ½HÈiõº2:”7™=®®ñsy£ÙÓêh°å½fO«X½‡ý¡ÏõÕ«qØŸnX_½‡ý†õÕ«qØopR_½‡ýî!õÕ«qØïR_½ÚøwñX_½ÚøwìX_½ÚÞw­V]½¼åì¾ú~U}õj{ß/¢©¯^mïÛê¯xuÕ†ÿVÇiæòV³—…Ûàý·a|ÁÏ]ÞxïðoUMÌÛ[½Þw ‡ÕòδÇzíóË{ÒžVG«-oF{\½×»W#tP«-oE{\Ͱ¡ƒöÒå=iO«ëÃT#´Ï:×W¯F¨ÅïÞ–7¦ÝWï>×ãß–7§=®ÞÔ7S[Þ ö÷êtýÚòµ—…BÀmy£ÚËÂõåþôTzàÛòö´—ïñ™iË»Õ^bb¨-ï\{Y§!·å}lßÖ|mySÛË:L™·ånßÕi«TuVÇ;#µåÍn¥±~°lËÛÝWÇá¬-oxû{õ׿R¿éJ[Þáö²Ó.mysÛË:ÚòV¶Eá•&]ÞÞö²ämy³Û˺¿? ´åÝp/ßê8›ø{úFŸ¦Ì×·Pó+ï‘û®Îͯ¼Wî^Ú‡z¦-o{\]Œ¶¼ î~Ïãîéƒdy?Ü·»ðVùmyOÜ·ª/˜0kË›á¾é|B[Þ÷¢è¯M™Ï×·á”E[Þ2÷ûÝéý;áHUÞ*wŸb; Ѿ¿ÝL±.oš[-×ãÛòº÷J¸:uÝ–·Ô}w£5‡òþº—…¸‡H[Þ^÷¢ç_Úò»e_yÒ¨-o¸{Qym6¡-ï¾{QË3—my3Þ‹ÂóVŒ7(ŸÓ~þÚšå“Ú/ª®Ýš»-ïÖ{Yì]y³Þ?m¼~eA[Þª÷íV8aÑ–·ê=ŠgºzáI[Þ³÷üažÚ'”7íÝŸÍç«®Úò޽çϧCMåÁR¿çÀ¿¼à2­¶¼CïkÑýô]E•§Lý.Òs*Ûò¦½ogL>Þd•'Ž|=üù’õ;Wµå}}Ÿ_ÞÅví&¸mywß·Ò³[iÔk«·ÉþóT-Ô\¹?¶º2×îñ»N¸©{{íþ¾Ç¾P‡òµ{üò¨]Þä—ÇÝòÞ¾oá4çò¿o·|Û\ÞÞy¿‚íŸ7ßïî¦ß—œ.ß?®ÏåýâµêúõŒæýºµêúõöž÷ Öªëׇúy¿X­º~}l”÷ Õªë×·MÞ¯N«®_o+y¿.­º~½÷›÷kÒjëcF9ï×£U××ö𰾶׬õëƒÀ¼_yV-¨ç"ïWœU××NX_,c}l€ ÀY¢#¹(õ)É­@‰¨ÏInJD}Rr+P"ê³’qÿ¹Q€-”ˆú¼dÜîzA}b2î?7 °¥ƒ±¥ƒ±?ý¶^¡@ÔgKãþ{£m#(õùÒ¸ÿÞ(@Û D}Æt+P êS¦[QŸ3Ý ˆú¤éV @ìϨW(õyÖ¸7K 5E%â Ö‰úeøqoe*ПP&êÓÅqof(@û‹ŠÄA=­¨LÔ§¤ãÞÎP€•‰ú%›[2QŸÅÞ ”‰ú4öV LÔç±·e¢>‘½(õ™ì­@‘¨OeÇ=(@Û8(õÉì¸g ØÒ%¢>ý÷vléƒQŸ{+F¶ôAy¨Oǽ£[ú <Ô'Á·å¡Î¶å¡>m¾(õyó­@y¨OœoÊC}æ|+PêSçqÏz­`æÈº­çaæÈº­çaæÈº­çaæÈº­çaæÈº­çaöȺ­bæÈº­b樷­b樷­b樷­bñ¦®bñ¦®b/ÐïZOÄ^é„¶‰½bAE= `WÏÄÂØÕ3±°võL,lN]= ›SWÏÄÂæÔÕ3±°9uõH,œDéê‘Ø Ð:ºz&N»tõL,œvé” M»tÊ„¦]:eB“("¡I”N‰Ð$J§@hJ¤W 4%Ò+šéM‰ô „¦DzBS"½¡)‘¾ˆ•û×¾ˆ•û×¾ž‡•{²¾ž‡•{²¾ž‡•{²¾ž‡•{²¾ž‡•{²¾ž‡•{²¾ž‡½û™¾ˆ•û¾¡ˆ•û¾¡ˆ•{²¡ˆ•{²¡ˆ•{²¡ˆ•{²¡ˆ•{²AОlP ´'íÉB{²AОlP ´'íÉB{²AОlP4¹;*šÜ•MîŽÊCÐÄÿ¨@h:xT 4<*šM Dlô­•M J„¦ƒG%BÓÁ£uâiT$4<*š@ M Š„&'EBÈ“"¡ äI‘Ðtð¤Dh:xR"4¹;)šª”MÕNJ„&^'â SÜ“¡©ÚI‰ÐTí¤DÔC™”MîNJ„&w'%¢ÕèlR$öÛT+feb¿›A½B¡ØohP¯P*ö{Ô+‹ýfõ å¢ý\Õw[…‚Ñ~®Â¹­BÉh?W!âV¡hhz~V44=?+­æwfECú³¢¡ ýYÉhut™ ìsfFûœ™ÉÀda0°Y˜ ìÅB§¥B§…B§eB§EB§%B§%B§%B§¢S?vQ"º»ÙE‘èzìfE¢ë±›]”‰®ÇnvQ(º»ÙU©èzìfWŢ뱛]ë¹Hœ´Yë¹Hœ´Yë¹Hœ´Yë¹Hœ´Yë¹Hœ´Yë¹Hœ´Yë¹Hœ´Yë¹Hœ´Yë¹Hž´Yë¹Hœ´Yë±Ø ô'ê±HœæYë©HœæYë¡HœæIõL$Nó¤z$§y’¡iž¤Dhš')ºäI‘ÐÄPR$x`R&4•”” M%%eBSII™ê’'eB“OI™ÐäSR$4ù” M>%EB“OY‘ÐäSV$4ù” M%eE"ho–• M>eEB“OY‘ÐäSV"4•”•M%e%BSIY‰àTRV"43”•Í e%B3C¹žˆÌ.G®'b/¨ë^"«“ÒÀKduRx‰¬NJ/‘ÕIià%²:) ¼DV'¥—Èê¤4àY]ŽZ"«ÑKdu `‰¬D,‘Õh€%öµ¾z"²º ´DV—£–Èêr4ÐYˆZ"«;ÐKdu`‰¬î@,‘upo€%öl9`‰¬î@,‘Õh€%²º °DVw –Èê4ÀYÝX"«;ÐKdÜ`‰¬ƒ{,‘upo€%2Ï,5ÐYÝZ"«;Ð@Kduh‰¬óD ´DVo –Èê 4À{~W%ý‡Zb/ПP$p.ª—È:Õ€Kd‹jÀ%²ÎE5àYç¢h‰¬sQ ´DÖ¹¨Z"“ 4ÐYg¯h‰Ì³W ´DÖÙ«Zb/ПP(p¾«–È:{Õ@Kd½j %²Î}4Ð{¾µ2±ß=¸^¡Pì·®W(8#ÓLd_i&n5øh&n9”˜¸åP`â–C €‰[%&n9”˜¸¥‹n &n9ø€˜Ø ô'ê¡Ø+Ða&n9À™¸åfâ–˜‰[p`&öýNõLÜrH4qË!ÐÄ-8@·àMÜr€4qËÐÄ-8@·àÀLÜr€3qËùÎhâ–C" ‰[p€&n9Àš¸åhâ–˜‰[p@&öý®J„†D ·LÜrH2qË!ÈÄ-‡D ·à€LÜr€2qËÈÄ-8·à@Lìh ·LÜzH3qË!ÌÄ-80·àÀLÜr€3qËÌÄ-80·”Ô ÐÄ-‡D@·MÜzH5qË!ÔÄ-8P·®@MÜr¸5qËá ÔÄ-‡+P·@MÜr`5q« ¯ ‰/IM|áHhâ G@_8’šøÂ‘ÐÄŽ$€&¾x$5ñ…# ¨‰/ìåCMÜyËÕqç-WÄ·\=wÞrõ@ÜyËÕqGóÛ€MÜy[×qÇ-6qÇ-6qÇñØÄ¯yiÀ&î8¢›¸#ëlà&î8„›¸ópâŽc@¸‰;Žá&î8„›¸ãnâ+c 6ñ•1›øÊ˜‚M|eLÁ&¾2¦`_:°‰¯ ØÄW†lâ·ØÄ7n°‰otó ÜÄ7n9¸‰oÜrpß¼åêøæ-WÄ7á&¾y[×ñÍÛºž=ûd+¨'⻯͛Ø+06¡¬lõL|gëšØ ð-€&ô—­  =Åe+¨‡BqÙ ê™Ðs\¶‚z&ô —­ ž =Ée+¨gBrÙ ê™øîƒ)À„žþ²Ô3¡Ç¿lÊD£½ÀŸ³U( îêÑ€LìõKÖ˜‰½¢~Éz4±WÔ/Yo &öŠú%ë ØÄ^Q¿d½›Ðãu¶C]¸ =g+P0u®'¾s‚pâ;/n'ô˜ ­€ÉÐDÜÄwN¢ƒMèQD[‚¡It  =¼h+P,4%2±àg‚™Ð’¶…B“è0{>“B¡iw  =Ui+P(4‰4¡ç*mÊ„.3n€&ô(¦­@™Ð´;ÌÄwN»ÃL|÷•H@ß9Q4¡DmÊDTjb¯À!lBO¡Ú  €šÐs¨¶eBSû@zÕV Lh¢hBÏ¢Ú ” ÝVµšÐã«¶eBSû@ß9µ4¡'dmõHÜsÜ4qÏ1ÐÄ=Ç@÷!MÜs„3qÏÌÄ=G0÷!ÀLÜs„3qÏÌÄ=ûû0÷ìïƒLܳ 2qÏþ%ÈÄ=û— ÷ì-‚LÜ«ï &îÕ“ {A}?@&öŠú!"ÀLÜ«·`&îÕ[ 0÷ê-˜‰{õÌĽú~fâ^}¿3q¯ž\€™Ø ´é ôýÐĽú~fâ^}¿3q¯ž\€™¸WO.ÀLÜ«'`&îÕ/ 0÷ê—˜‰{öËÐĽzYhâžÄ,MÜ«_€&öý e=¹5q¯ž\€š¸çElâ^}¿6q¯¾_›¸Wß/€MÜ«'À&îÕ“ `÷<À&îy6 ÀMÜsr?NÜsv?@NÜsz?€N+ÐB€'îyJ @OÜs†?@OÜsŠ?€Oìh‡à[:i~b¯P3A8¾©› (ö 5Äã›:j†b¯@3¢Ø+°Í¡(ö ls(Šcš"Å^‚fG±W ™Rlê}RÜ¿poI±W ™€Rìh&°{š 0Å^¡f‚€¼p×L±W¨™ /Ü5@SìÚæÈ w ðÇ 4^ˆŠ½Í¤âX¡?‚„¼pU±W eUìhY`{Z\Å^–W±W eÁUìhY€Ç mFD; ØŠ­B; àŠ½B-‹ÑºâX¯_ñÀÝ"|ÅÏ‹îG,¸°xà^Àâ;Q‹÷È ,¸×°xà5Â∠{EýÜo€±Ø+êç~Å^Q?÷ ,öŠú¹ßfñÀ”ÅOP< X<ñ0bñÄC„ÅO)ÀÄOÏœALüäð"ÈÄOö{!&~²ß 1ñ“ý^€‰Ÿì÷Lüô<ÄÄ^¡ßI©h´™øÉÞ8ÈÄOÞQ6ÂLüäe#ÌÄOöøa&~²Ç3ñ“=~˜‰ŸìñƒLüddâ'{ü ?Ùã™øÉ?ÄÄOú¬1±W`[CLìh²{z {z0{z@{zP{z`{zp{ÅP¡d„Ï_Q¡h„ÏßP¡lh$ :ñ“#IЉŸI‚NüôHvâ'G’°?9’øÉ‘$äÄOŽ$!'~r$ 9ñ“w­?9ö„œøé±'èÄOŽ=!'~RñEЉŸ­‚Nüäq#ìÄOŽoa'~r´ ;ñÓ³×À?9¾žøÉñ-ðÄOŽo'~r| <ñ“wG‹Ð?9"†žøÉ1ôÄOŽˆ¡'~òθ|âG¸à¿8>ŸøÅÑôÄ/_Y>ñ‹ã#è‰_OüâøxâÇGÀ¿8vžøÅ± ðÄ/Ÿõ‡žøÅÑôÄ/bˆ>ñ‹ã#è‰_‰@Oüâ(zâG пx¥kŸøÅqøÄ/Ž+À'~q\=ñ‹×­Fð‰_‰€Oüâ ’"üÄ/Ž]à'~qì?ñ‹}Lø‰_ìcÂOüb~â{Œð¿x§ˆ@ñ‹}LŠÿò0@ñ_&(þËÃÅ¹Ó Ø ð3Pì¦BPü—ŠÿòÀAñ_Ÿp¡ø/Eÿå¡‚⿾d „â·§z(þñÄ: Å?nõPüãXÅ?l0ÿ°uÀPüÃÖBñ·5Å?ÜÖÿrËAPüËíAñ¯'Ô!(ö ä„b¯Àt Å^é$ ŠÙž€(þuÇŠâ_*àFñ¯Ûl=ÿz¯ Gñ/[9Å¿¼É]„£ø—¹£ø—¹£ø—¹£ø—Ýq0ŠÙ¹£ø—]e0ŠÙU£ø—]e0ŠÙU£ø—_0ŠùرF±W p{v€{v{E}nùJ±WÔç–°{E}nùL±WÔç–Ð{E}nùNñ¯†.pŠy‰óžb¯¨oò@Å^Qß䈊½¢¾É {…69ÓR`*ö mrÆ£Ó&¯ÇcštÈ?€Uìõ=Ï®b¯¨ïzp{E}ßs¬Ø+ê;Ÿ`Å^¶ Y±WÔ4ÈŠcš;lűíºb/©ÏÐ{Eý€v¯Ø*pD;ÀWìhY{Z„Å^¡–UOÈ^¡–Å„à°v€±Ø+Ô²˜Ìè ,ö ls0‹½ÛÎb«À„ËÐb¯À6‡´Ø+°ÍA-ö lsX‹½ÛØb¯À6‡¶Ø+°ÍÁ-ö msæ§ê{…¶9ói‹½BÛœùÀi®ÌÅ~M ŽÏ0?ÓãóÝ2}ûôŸ‡»ûôø?Ëÿ§V[OÊ—‡Ç»îŸ?ª®§æîþiûÛŸ¦çOÏ?>==OϨ¯gè­~~x~~ø~õ-꡺üé~Eu=`Åðà„ÛÿmúçÓ÷»uý–PZÞœnïî?=¥Ûïé^ß¹ÀíC~PWáÛ·½úq뉼ø¡QYOæûÅõž~¥t¿|{xzyÔG®Çuÿ>ª¬ÇöôWMß¾¥ß¢žãýÿÝŽ|¿{||xÍߦûú.x’/Ó·|µ¬æí+>zº»½GU=¿Ç?öQ) âö“|XŠ38wkú°Ï‘}XïòöŸŸÖéût»mÝ‹½Ÿ61[y¯‹=¡Þ ­¼Ýõ÷Ásiñ÷£Þ Ï«­¿ß±ýàgú4mYûèâq·úÉþ¼'ßOÃõG½öáððèkMíø?~k N¾?}õüà-ñ|êÊ[^û†xf5~¼éxPð»áÖÞ®½!xýî U^'#7§Wªû­º¹9½R¯¨n‡›Ó+õŠêo~sz¥^Qý]oN¯Ô+ª?ÜÍé•zEugsz¥^QÝÇßœ^©WT÷ä7§WêÕõÍé•zEu·|sz¥^QÝýÞœ^©WTwµ7§WêÕ=èÍé•zEuysz¥^QÝÞœ^©VÔáÈÍé•zóÑ#u:rsz¥^Á|ôÈGÝŽÜœ^©W0=òQÇ#7§WêÌG|ÔùÈÍé•zóÑ#u?rsz¥^Á|hþ±îGnN¯Ô+˜ù¨’›Ó+õ æ£G>ê‚äæôJ½‚ùº!¹9½R¯`>䣮HnN¯Ô+˜ù¨;’›Ó+õ æc@>êäæôJ½‚ù:$¹9½R¯`>ðøC’Üœ^©W0òQ‡$7§WêÌÇ€|Ô!ÉÍé•zó1"uHrsz¥^Á|ŒÈG]’Üœ^©W0#òQ·$7§WêÌLj|Ô1ÉÍé•zó1"uNrsz¥^Á|ŒÈG”Üœ^©W0#òQ%7§WêÌLj|ÔIÉÍé•zó1!uSrsz¥^Á|LÈG•Üœ^©W0òQW%7§WêÌÇ„|Ô]ÉÍé•zó1!uYrsz¥^Á|LÈG–Üœ^©W0òQÇ%7§WêÌÇ„|ÔuÉÍé•zó1#u_rsz¥^Á|ÌÈG˜Üœ^©W03òQ'&7§WêÌÇŒ|Ô‘ÉÍé•zó1#uersz¥^Á|ÌÈG™Üœ^©W03òQ‡&7§WêÌÇŒ|Ô©ÉÍé•zó± ukrsz¥^Á|,ÈG]›Üœ^©W0 òQç&7§WêÌÇ‚|Ô½ÉÍé•zó± uqrsz¥^Á|,ÈGݜܜ^©W0 òQG'7§WêÌÇ‚|ÔÙÉÍé•zó±"uxrsz¥^Á|¬ÈG]žÜœ^©W0+òQ§'7§WêÌÇŠ|ÔíÉÍé•zó±"u}rsz¥^Á|¬ÈGŸÜœ^©W0+òQ÷'7§WêÌÇŠ|ÔÊÍé•zó‘ºA¹9½R¯`>òQW(7§WêÌGB>êåæôJ½‚ùHÈGݡܜ^©W0 ù¨;”›Ó+õ æ#!uˆrsz¥^Á|$ä£.QnN¯Ô+˜„|Ô)ÊÍé•z󑑺E¹9½R¯`>2òQ×(7§WêÌGF>êåæôJ½‚ùÈÈG]¤Üœ^©W0ù¨›”›Ó+õ æ##u”rsz¥^Á|d䣎RnN¯Ô+˜\ÏG[G)7§WêÊG =ÐÖQÊÍé•z…òÑB´u”rsz¥^¡|´Ðm]¥Üœ^©W(-ô@[W)7§WêÊG‹ëúÛºJ¹9½R¯P>ô0ç¶®RnN¯Ô+”·÷jë*åæôJ½Bùhq{¯¶®RnN¯Ô+˜ˆ¶®RnN¯Ô+˜ˆ¶®RnN¯Ô+˜ˆ¶nRnN¯Ô+˜ˆ¶nRnN¯Ô+˜ˆ¶nRnN¯Ô+˜ܱ±­›”›Ó+õ æ×÷u“rsz¥^Á|àž¯mݤܜ^©W0ð"mݤܜ^©W0ð"mݤܜ^©W0ð"mݤܜ^©W0ð"mݤܜ^©W0ð"mݤܜ^©W0ðümݤܜ^©W0ðümݤܜ^©W0ù¨›”›Ó+õ 润­ë“›Ó+õ æ÷kë¼äæôJ½‚ùÀ=áÚº!¹9½R¯`>pW¸¶NFnN¯Ô+˜Üå­­ ‘›Ó+õ æ·}hëäæôJ½‚ùˆÈGÜœ^©W0ù¨ãŽ›Ó+õ æw‰oëŽãæôJ½‚ùÀ3Û:߸9½R¯`>ð”Á¶Ž5nN¯Ô+˜òQ—7§WêÌÇù¨³Š›Ó+õ æ÷mjëTâæôJ½‚ù8 uãpsz¥^Á|ºO¸9½R¯`>Zä£î nN¯Ô+˜ù¨»›Ó+õ æ£E>êO ¹9½R¯`>Zä£þ¨›Ó+õ æ£E>ê ¹9½R¯`>p‹”¶þ¸›Ó+õ æ·Hië ¹9½R¯`>p‹”–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?Zø–þ£…ÿhé?ZøŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øŽþ£ƒÿèè?:øžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøžþ£‡ÿèé?zøþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?øþc€ÿè?ø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‘þc„ÿé?Fø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø‰þc‚ÿ˜è?&ø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø™þc†ÿ˜é?fø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø…þcÿXè?ø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?Vø•þc…ÿXé?VøDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øDÿ‘à?ýG‚ÿHô þ#Ñ$øLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#ÓdøLÿ‘á?2ýG†ÿÈôþ#Óäºÿ8|–ÿ8¾R¯@>ޝÔ+ã+õ äãøJ½ù8¾R¯@>ޝÔ+ã+õ äãøJ½ù8¾R¯@>ޝÔ+ã+õ äãøJ½ù8¾R¯@>ޝÔ+ã+õ äãøJµBþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþãðYþãøJ½‚ù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>êþc[Î|ÔýǶœù¨ûm9óQ÷Ûræ£î?¶åÌGÝlË™ºÿØ–3uÿ±-g>à?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?úþ£¡ÿhà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?ýG€ÿôþ#Ðø@ÿà?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøHÿá?"ýG„ÿˆôþ#ÒDøÃçÏÿ3ÝOÏß.K>MŸaÛrUÔ·ùa[®Šú6?lËUQßæ‡m¹*êÛü°-WE}›¶åª¨oóö\õm~Ø–«¢¾ÍÛrTà:ýÃçÉj&3KÔLV¨™¬¬P3I¬P3ɬ@3i\Úh\Úh\Úh\Úh\®~h\®~h\®~h\®~h\®~h\®~h\®~h˜Ý™óÐ0 ¸ÂýÐ0 ¸ÂýÐ0 ¸ÂýÐ0 ¸jû\µ} ®Ú>Wm‚«¶ÁUÛ‡À€àªíC`@pÕö!0 ¸jû\µ} ˆN{‚‹— ÁŎÀ€ ‘ Áõ·À„àzçC`Bp½ó!2!¸Þù™.„+2#\Nvˆ .Ä>D†b"C‚ ±‘!ÁÅŇÈàââCdFpqñ!2#¸¸ø™\\|ˆŒ..ÞF˜¬PËbDpqñÖ1c¶ùÁÅÅ[rU f·/ ló‚ fæÌÌ.˜=˜\0{80¸`öp`>:íM H§½É épuêáÀˆàJÞÃÁ•¼‡#‚+yFW§ZFW§ZFW§ZFW§ZFW§ZFW§ZFW§ZFW§ZFW§ZFW§ZFW\î{Uh›3 ¸âòÐ2¸âòÐ2¸âòÐ2¸âòÐ2¸âòÐ1¸âòÐ1¸âòÐ1¸âòÐ1¸ŠðÐ1¸ŠðÐ1¸ŠðÐ1¸ŠðÐ1¸ŠðÐ1¸ŠðÐ1¸Šp離BÛœùq‰ø¡c@páá¡c@F\g{è˜\«xè”÷¯9ôJÈVÕ+"¦‡{Ed«ÐQFÍ(÷ÊÈV¡?¢4š„î’F“нB²Uèc)%[ ú@½b²• Ô+'fÇ{åd«ÐWQN¶}¥Ñ|¯œ4šƒï%~pP BƒƒrœìW;‰AÑÉ9áÉAip“¤ÃÀ¤è|ÂÀ è|ÂÀœè|ÂÀ˜è|ÂÀ˜è|ÂÀ”4 ÖÀ”èÄÀ”èÄÀ”èÄÈèÄÈŒèÄȈèÄȈèÄȈèÄȈèÄÈ„èÄÈ€èQx‡‘ ÑY‹‘ Ñ)ˆ‘ Ñ)ˆ‘ Ñ)ˆ‘ Ñ)ˆ‘Ñ)ˆ‘Ñ)ˆ‘Ñ)ˆ‰Ñ)ˆ‰Ñ)ˆ‰‘˜?LLˆÎZLLˆÎZLLˆÎZLLˆÎZLLˆNAL ˆNAL ˆÎ'L ˆÎ'L ˆÎ'L ˆÎ'L ˆNL ˆ¦í'DÓö3¢iû™Ñ´ýÌ€hÚ~f>4m?3š¶Ÿ™MÛÏ̇¦ígæCÓö3ó¡iû™ùдýÌ|hÚ~f>4m?3š¶Ÿ™MÛÏ̇¦ígæCÓö ó¡iû…ùдýÂ|hv|a>4;¾0š_˜ÍŽ/̇fÇæC³ã ó¡Ùñ…ùÐìøÂ|hv|a>4;¾0š_˜ÍŽ/̇fÇæC³ã+ó¡Ùñ•ùÐìøÊ|hv|e>4;¾2š_™ÍŽ¯Ì‡fÇWæC³ã+ó¡Ùñ•ùÐìøÊ|hv|e>4;¾2š_™ÍŽ¯Ì‡fÇWæC³ã‰ùÐìxb>4Õ˜Í['å#hÞ:)A“ÐIùšQNÊGàŒrR@¶L{%%$h:)!A“ÐI šëMJHÐ,lRB‚fa“8 ›‘ ùѤˆÍfEd«ÀÇÊÊHДjVF‚&;33¢ÉÎÌŒh²33#šìÌ̈&;3#ÂÉÎ̈h²33"®<É̈æG33¢ùÑÌŒh~43#šÍŒˆæG3#‚ùÑ–B$`~´¥ ˜m)DæG[ ‘€ÉΖB$`²³¥ zœ|K"0?Ú’ˆ̶$"ó£-‰HÀühK"0?ÚRˆ̶"ó£-…HÀühK!0ÙÙRˆLv¶"“-…HÀdgK!0ÙÙRˆLv¶"“-…HÀdgK!0ÙÙRˆLv¶"“-…HÀdgK!0ÙÙRˆLv¶"“-HÀdgK 0ÙÙˆLv¶"“-HÀdgK 0ÙÙˆLv¶"“-HÀdgK 0ÙÙˆLv¶"“-HÀdgK0ÙÙÒ‡Lv¶ô!“-yHÀdgK²U  @0?ÚÒ‡̶ô!ó£-yHÀühK0?ÚR‡̶Ä!ó£-qHÀühK0?Ú‡̶Ä!ó£-qHÀühK0?Ú‡̶Ä!ó£-qHÀühK0?Ú‡̶Ä!ó£-qHÀühK0?Ú‡̶Ä![v?Ô!Sª-uHÀ”jK0¥ÚR‡L©¶Ä!Sª-mÈV¡‹ Á,lK0 ÛÒ†̶´!³°-mHÀ,lK²UàÇ"Ñ3[â=0³%Ñ3[â=0³%Ñ3[â=0³%Ñ3[â=0³%Ñ3[â=0³%‰šm©CôÜÈ–:DÏl©CôÜÈ–:DÏl©CôÜÈ–:DÏl©CôÜÈ–:DÏl©CôÜÈ–:DÏl©Cô,Ä–:DÏBl©Cô,Ä–:DÏBl©Cô,Ä–8DÏBl‰Cô,Ä–6DÏBliCô,Ä–6DÏBlIC¶ ìhCôHÀ–4DlIC¢žÑØ’†D=¤±¥ ‰zJcK¢'¶´!zò`K¢'¶”!zò`Kõš–2$ê)4-eHÔchZÒ=±% Ñ#[Ê=±% ÑcþZº=毥 ÑcþZº=毥 ÑcþZ²=毥 ÑcþZª=毥 ÑcþZª=毥 Ñ£ëZª=º®% Ñ£ëZ¢=º®% Ñ£ëZ¢=º®% Ñ£ëZ¢=º®% Ñ£ëZ¢=º®% Ù*°[¤ ÑÜZª=Á­% ÑÜZ¢=Á­% ÑÜZ¢­B?¢ùaª=ô­¥ ÑCßZª=ô­¥ Ù*ðÕÉBôœ¸–,DÏ>k©Bôì³–*d«ÐaF4¥L¢Ç¥µd!z\ZK¢Ç¥µd!z\ZK¢Ç¥µd!z\ZK¢Ç¥µd!zXK¢G€µd![š ]ˆžÖÒ…Ä!~zœ>=<~z¼C)£2à™Õ-…ˆž8ÖRˆè‰c-…ˆž8ÖRˆlú"ÌŠ&½IDô²–DD)kIDôà­–DDÞjIDôà­–D$ŽñSº»ýòŒ:&FóØ„"züVK(¢Çoµ„"züVK(¢Çoµ„"züVK(rÐ 3¡ÈA3Ì„"Í0Š4ÃL(rÐ 3¡ÈA3Ì„"Í0Š4ÃL(rÐ 3¡ÈA3Ì„"‡æó§9ÝÞÝúöpûpû8}ÿô}züŠwQf¶w™>¥ûõoÞ„žä yhz’ƒæ¡éIš‡¦'9hšžä yhz’ƒæ¡éIš‡¦'9hšžä yhz’ƒæ¡éIš‡¦'9hšžä yhz’ƒæ¡éIš‡¦'9hšžä yhz’ƒæ¡éIš‡¦'9hR™žä Iez’ƒ.‡¥'9h¶—œä Ù^j’ƒf{©Iší¥&9hR•šä IUj’ƒ&U©IšT%&9hR•˜ä IUb’ƒ&UiIšT¥%9hR•–ä IUZ’ƒ&UiIšT¥%9hR•–ä IUR’ãõíõDó°¤$ÍÃ’’4KJrÐ<,)ÉAó°¤$ÍÃ’’0Û‘’ÏCÕK˜LÝv´$LÝv´$ÌÃv´$ÌÃv´$ÌÃv¤$ÌÃv¤$ÌÃv¤$Lªv¤$Lªv¤$Lªv¤$Lªv¤$Ìv¤$Ìv¤$Ìv¤$Lwv¤$Lwv¤$Lwv¤$Lwv¤$Lwv¤$Lwv¤$Lwv¤$Lwv¤$Lwv¤$Lwv¤$Ì]v¤$\AÛ‘’0ÿØ‘’0ÿØ‘’0ÿØ‘’0™Ø‘’0™Ø‘’0™Ø‘’0™Ø‘’0™Ø‘’0™Ø‘’p9lGJrÀ4bGJrÀ4bGJrÀ4bGJrÀ4bGJÒb®#%i1aב’´˜°ëHIZLØu¤$-&ì:R’v%I‹ »Ž’¤Å„]GIÒb®£$iq}gGIÒb^­£$i1¯ÖQ’´˜Wë(IZÌ«u”$-æÕ:J’ój%I‹yµŽ’¤Å¼ZGIÒb^­£$i1¯ÖQ’´˜Wë(IZÌ«u”$-æÕ:J’ój%I‹yµŽ’¤Å¼ZGIÒb^­£$i1¯ÖQ’´˜WëIÚú¼Z·ßwüöåñåþöÓ×/éûôé[z~NŸª#»n¿xmí¯Z=ÔWÿ¢õcuý[­~¨¯Î·o«ëßóý»êúõÇžwûͬ««óã Õõÿ£ÕÇúê|û©º>WŸ««??kýëó¬Õ‚µþ”ìmý„õùrµà'Voê-_ß·©7}~ݦÞöõm›zÓç—mêmÿ^«×›þ­^où?øiêMÖêõ–?óíëMÿ»V¯·ü´z½å?jõzÃÿ¦ÕëÍþI«¿kõ?~¥oŸžînï?MÓÿ|ÿ¶’û§ïï‹2‹îT>»ÆE ‹^ÞjŽ_ãÓéË\–—×ê·ÃÜe}d}ªýùü®üàòËú0Vë[o›»ÚÇÿü®¾cýÃåŸoª¾wù»úP­üñ_*¿øøc­þ[º¿}þr:C¯Vó.ËÃýÓÃýtÿ|úãßÓz7}ÛãùýÿUID˜ÿ¦ú§ª—¿©þ¢êwá=ýX÷/O?§G¦1¤¿ù“Wêså>yøöåáû±h¬Åwq^ïnïž?ý»õÿçþÿ}úfŸÿœ•4µ’‡ûôZÑÿ9«µŠç_o#ÿ9«ˆÕŠ/éí¯Äã?g5‡ZM~xy|-9ÿ9+i«%w?ßþJ{ü笤«•<Ýý÷µ¢;þsVÑW+ÒÏtÿZÓÿ9«j5§KÏþÔ ÇÎjÆZÍýÝÙ†ÿ¼– [/~ž¾¿|?;P?¥›iëÚ~}IŸ¾ç‡ûêÑfØúóÕºÛù.¥O. õ²÷Ç?öéÇÝ)}?¾ Þ!þÕ; 1l=ÿú÷¦kß¶­W=}yI÷ûÿ©^¸Õuõºç»ç«®Ç‡ü÷jÕ yw¿n?ÐVÿŸêe±[éèõT÷fúË÷ঙëoð}¯¹ö‡üÈ/§Rý¹U-º¿}AMòGü™^þ‹ª¬ªû§— ߪA0÷¿3mGÎé;ȩ̂ôrÿ‹Ëûç‡ÿý‘ÐÞ$ñkzÙþßó=,C£~ÝÚ)h£¾`K5HÞq¿vÿozÑ/è}›~Lÿ‹änûÏO__°gh¸ûçéÇ–ñI¿B¶5Àí7ÿ"ëÇôô…Í¡ºý²7¿G–!T?¦ïWþ–Rµí9îoo÷?¨_ɺÿ÷eï.éÇÈÖ˧^þw;àsóŽ¿Ééÿ¢’ùÚ¶öö°µöt‡Aà­mÇ=±ÙÚ~¿ûÿ<|¿_Ó Z~@Ⱦ?<|ÿÁ"$ìë”õ°{Æö¶øK… Ùúa¥fj‰áÊÁë+w¡)»¿ÃÄè0…? \Ï[cU RõÍ%‰Ú†/ÿÑA'"NÏ[nÓË/ýfYÚ~éûpøˆxW橦ᅩžÐèªqÚšîó>=ù´ ÕÔY誹Ú*×—ý° ÏZ ×|ž†ú ÈØ;¬sÀî•Náú²eeûZú1”°ãWú_…¬CÈŽó³ÏWú$c¶wh¶ÆÌ{‡ mk¹î¶}2EØaû½­±¿î•¶ôòg{$îÛ6 Q¬{$îÇô¨_¡GÒ~òw땯Ûã$Þ§ï?Ðß핯}Tµmc4©ûå‘Xh=M_=SÓ+^ìõˆÖwN›ôHÕöp·Ô#R§š­A<Þê)Sùîå¾Gšž^ôG£ïóvÔ¡¡×AëḗFŽäh;$Žc¹^îo¹ai”›«Þ€8eæ|@œ¶8¨A ÈQÖ!`@‚¾^9: ˆÐ÷}ˆt‹àx8 FÇ—ÿU¢ô¿´“äͪ$=±É)Aúìôi["=÷·š5ªÙYþœ¶½rÚk¬ægÙÏ-¢ šÅ³c57˧_ÓþéÔžÇjh–kþ±šš­d=ž£PÆjrŽ¿ö‡c5;Ë~Á(»×c5;˾KL_¹ï«ÁÙþÒ3âóM;™Ç¥kûá :XÖ/§#Ó6 ¿¿UeFŽNçµi¥í§SûA”²Z÷ÌcOÓ͈ѽNÆÏêØm鯝¼ Aóö£ÂÉÙŽnj Ò³òÙ ZGºeæ?£,Í7í7$fÛµùྠ5÷O/ÏW:ê r³ Ÿ’: ‹Ž<Ú‡.êÂÝêB¶EÝ7Ÿ+[—­;àmƒÄè,È‚¸ð2ªEqá ¼•ÇmÂiù¥K.Vf¶ÍÁŽÿªÚ?/JðЍl£²×Ïá®ÈÌÖüõ·˜•[F‡˜éÚÌöаü£ƒìª°¬:b®Ë~ ûäayJϼ~wEX¶3 4ι2ü_˜kç¯"³ˆx@NHÍ>@T ró•C”¤®Ù>Òûq·p™^~i‚"©sö! mØš“:gœ°NHÍÓÍ6%^î·ƒæ/!5{QžžïnÕiJ옩?“vГŽ2üœwˆfBjØWʈ̳d®Æe=Σ¢š–õÓ/íÆr5,«U@®†d½Br5#Ç?¡Ÿ«Y·ÇŠjFÖcõëVC²î½jþ•jJÖßSËJc®Æd½2ŠÍÕ|¬Ç[ú•«Y“¿*©FdýtåûW3rü#l`Õ”¬§Qò3g ǺAZ>T -O¾{¬Ó£½ÙàûŒuj´ò,ØXÇE+;îcÝ­ŸösYjcc­{/®ÞÆÆº'Ú¾¿9òò={“(/«c] meÚ/ ©ï”ƺZ}µÿX÷Aë§'_ˆ0Öqжaɱ.ƒÖß§É´]˜‡çÓÀª^XÇAÇpò|ëX—A«.•ë(hÝç³ë˱.‚ŽëìgƺZ÷“¥Ù—YutlnúCˆÍ÷Ûù!£ƒ9Ö9Ðvtòy€±îö†ÃæXÇ@ë~&\ÛRѹ¹›­3 õÓ%§Ž€ŽEGç±.€Ž 9߸Mšã Û¤.~Öã@HË×_l“uå³ú:ß±|Ök×ùŽuâ³ò:ß±î{Ö+c±{VÄÆºêY?=rçWW=ûw×ÄØX÷<¿w{Ü—×-Ïé`¦lóüncú‘¼±ŽyÖÝÉ¢Yù±üøUÅë˜gßéá›×%Ïzí2Œ±Îxö­Â]K]ñÿÌ/Æ¥.yöÖ¯ÞR]ðl?²zKuÀsüªÐF“cc]ï¬W®mëxgýDs<ÖñÎÞ³Ô«˜ìó¡×Wç;Ç{Ë#(Ï/ÚéÕñÎêë Æ:ÝÙ¿<ö+u¹³ï#´Eê^縻LJª#õˆÝþ£8Ö•Î)Žhu£sìç軨¶Ÿ«T ‚r¼š%ìkîu¬õÓ ;։ξñ±>’ò˜î?=|[Q„´p×]:[ŽÛu ³’ÎŒu³}; %ß|Ô®óœ=Š.ÑlVGJtw€±®s¶÷×úês}ÑïTç9§ ìë@gkƒ;Õζ¹õ5Œ-~(P‡ë™ ÁøÁBôÃj4ÿE¡¨œ}Ü£;tQûX÷7ûc¨ð'êöæ´ÿøþ²|A•Žø­êøfß| FÝÜœÆI¿oXT¯S@0g?Ö™Í6ì×x¬.l’OÛuZ“¶½§Æáu[“®\Ô8ÖaMâå7cÔ¤O?uЬcší/økT#’v؉‚jBÒ'zël&}ÒÅtcÝ̤ã‘_¡ª‹™}‹«·Tç2Ûçq¿Že¶6¢~xʤã´8*ªÑHŸ¾þà‘ ndÒ§_84Öu̶µ×­Û˜týv+cÇ$‹á±ŽcŽDâñÕÍ„ùÐgB<®(æ±böß‹ ¡{ë&f7ÐRêæø¹Ä:…9%_¾a¶´ß}×E|cÝÀ¤+gËÇ:‚I{׿XÝÀlÍ^;ºº96{âÚ±Ž`Ò§+_9¹uç¯N_ÒŸ©-ýHËñr¹oèÔÌÞ2Ñ”ëþåxÂŽ¢.`N»vúë fßßã<þXW0ûÞ{¿pØ3#u³ï.ñ}êf?°è/ 2ûýc¶Ãj~¾OOO(åf¿ z¿ÈÛg“Ç:‰IŸþáž­®aNm‡Ùº†IÇ[ ¡úÇ#ò:„Ù~r8ê fÿP<‘Z—/é“yèXg/é8§¦_ é¹â ÇºzI§ tQ‚ôüâ.§î\ö®«ZW]¸ì1ÀúˆÍó¤~b]·¤ã9GnǺmÙ“^yZ¸Î[ÒÛŽ"¤e?ï†í_÷-ÇA…¾:gÿògCXT×-Û=kXç-Ç€¡Yùª›‡Œuܲí&tdªÃ–tTÿË·4ýL(DZþ9ë²%O"a£ÔeËñx¦íX'-éx—*• 1ÿp~´îYÒ§oW:uË’h%Æ:e9¶/íê’åØÒ ´ºeI¾à¦ÎX޽r¸_¶í‘Ðê –ã1UŸ YÁ-Ǻ]IûÌŽ¶ ¢òƒ;Ⱥ]9´õ78‚¹õ«ÎWNÞvF¿D’ƺbÙw“Jd]°ì} M¥ÔýJò¼c]°“‚ß¹XïC:ÖKòEÂc]¯¤«§Dêreÿ"ŸÐìëneû\?U€œüxѲîVNû4ʺ[I4%c­wªÐÈEwýënåw‡¥.WNü™:]Ù'l¶Ü?üø†M_,ÇM¿Lß¾¡QÉê‚ÔýÊqŠ@Ÿ IÁN²ŽV’OŸÕÍJú„!G¬$Å£.Uöþ¶>Žâ±m½o/“62"v:Ö±Ê^ ¦n×>ºýþϧ//OÚ„ˆ ¹ÂX+Ǩ #Q÷*{P¸³«k•½Åq]]«l%ÿûéé×Ý÷ïwà—c]­œ*—öYëfeÿŒøåêbe/ÐWB`<ÿX÷*Ç^…*4TÙRÿ)ýxй¯ºZÙÚ¤HÏ/¨¦ÝQª$Þr¬C•$9ÖÊÞûÀúˆÊ#·FÝ©ì'rðêNåw¶pàªK•ÄÇçu©²ï$°'®K•tå¤p]ªqé{ZÿA™Æ(ú&ʶ`ª$ŸH®3•-²ú¥ŠïÚÍÕ}JÒÍÆ:NÙ××7@(žRQ—)ÛWÖoª¡;:ýSÝ£ìŸHEÆwžêe4Õ-JÖ4§:EÉŸê¿éT‡(Y×?Muƒ’?aÏ7ÕJþ¤›ðLu’y­ÔT÷'™—>Mu}’õ8¾©O2/•šêîd/à—®F!_¹Rjª»“ÌÎÞT7'ùØw«WÔ±I¾rO†©NM2®ßšêÒ$óú­©M²¯ÇšêÌd«ÐúÁóT÷%Ù—oMu\’9{5Õeɶ%Ô¯ê²$ë ±©îJömí?\üƒCÖTW%™W¡MuR’õXΩ.J²oï=ÕIIv7vªƒ’ì+ã¦:(ÉìNuN’y)ÝT×$Y7[™ê’$ëÒ»©I²»—SÝ‘ì-GÒ:#Éûü/ñŸê’$¯wFb¡æT7$ÙWMuA’92ÕùÈÖ>ô œöŸêv$³k9ÕáHV×rª³‘¼Ÿè†«»‘½A©‘@gtª‹‘m}}$‚Llªc‘Lè?Õ±HÞoE‡DâiÒM>¦:ÉŸ~êœÐtøÿ‘ö¯K®ëÊ•(ü>…à¬8Eð&F9‚`I«t[ºÌš5ÿÙÝî>áÛç¶ßÿ#E•JLŒ‘€¶{µw­­#Ec$Éôòº=î¿ìÉ/YÛ"{´Ú½¦æÑì“<ë"´Ú®‰,ŠâÑŒÝqQ>Z‘ÃólQ=Z1£úÑè@¶·ÅòÑì}e™]óh·²ìiØù 0oí£™c3fáfç-‹RE÷h¸ÇE[øÙPÑe_ÑÏøANÓ°åŒlŒ÷åŒl¤_Ж3®1£ÕŽÌjÆ4ö‹¶œQí¼òìúgd£V3¶±X_ÎÈFƲœ1EérF´ecÔÎ͈•›“›=²ËÈþt[ÎXvöïØ¬šØÿ™b[e–ʯÛÊ<*?Jl«üÑPû-b[¦ÚOÛª|´T~yØVÕƒ¥òƒÃ¶ª µß¶ÕòÁTýya[5¦Ú¯ ÛjÊÎŽ?z€£8…Šni7^3¬_^Ïv÷v²wÿƼ¨3i舡‘†dR¬siH–¹u! -»ÆR²k¬¤!»ÆZ²k\ ßìiÈ®ÑJCv­4d×è„¡gרICv^²kì¥!¹Æ¥äãš\ãRòqM®q)ùHÞ„Ù¥äãš]£äã…]£äã…]£ä#yçd—’,5\J>Úv‘’öƒ]¥d¤ý`—))i?ØuJN^è€KR^èˆKV^èKZ^ؘ7’—ýzg7 òÒ6’›ýîmqa¬o$G‡Lùxìɳh$U'{ú”›€±LÑM@Yz g™ø›€´ô9HÖ^ÖL[¤í`ÊîIòv0e—*‰;˜²k•Ìݲ+•Äݲ딼ݲ«”´Ý’k´’µì}†•|}gµ<+©ÊŠ@Vr”½´V²“œÞl­$'+QZÉM¶ò·’š,]²’™;úÝ’˜ú(%/Yúm%+YAÆJN’§ÖJNÒk”œd¹Š•œ\±2G+II %)Yá¡•œ<2À“ì¾Û€“ÔR’Ò1CIÊ3ãy+YùF¿\Òru¦OSòòLJ^þb†’—¤ŸÖ¶’—ýnILG-%3É/ìXwç[BRë²¹±–×:3·ÕR[— [5»uÅÜZMp])Œµ×Usc-Íuµ°U3]·œ[ëÉ®kæÖj¾{mÍ< ¶?íêž@ìØ{”kW¦°fóÞµSØ’Þ:{íÀ¶Œð׿Ka»m™ã24þ\3ã*4~³¸«Ë^;.…qG_â^.åƒ;PßMhý'©Š][-…íêƒznCk6_›+…íovxtäWŽìµ“R>:æ¸m?¸|ù á•Ïä"< 2[Px@åŸì•?=+>{Àe¶¦ò€ÊÃ(1s@ff ˜Ì 1«†{@cöÔ‡Ù‹e8ÌL…‰šûG¢¹ý¶]1öm±ÂòÀ¡!ÚnÿuœÍN[‰Ë n³ÿÐa¶ëN‡åìÛþˆB zƒD¯ö‘¦ýe³YœÎû,‘¶//¯C´«Åj;fñ?÷~³x÷ã߾dÄþ'±7Ð~ÍÜçØœy/ ¹½0÷%±gþ+hOÝרœy_âgɼ7Øœy·ø^é£o‰=óï ý~ÏüwÄžù÷øz>˜ÿžØÿfþÅÿfþÅ2ÿ˜ùìñd˜ùìéd˜ùkzõ˜ùkzõ˜ùÔ=f>õŽ™Ï†6Ã̧#K˜O/ž0Ÿ^½`¾ÛïNû݇€‹gÌ6ëd7$Ê ähC!=ƒ¬ļÐK£_c2†9Rˆ¡_óN19ÃüÅo§`˜O )éCãO b˜-…Ô âøÝ,éSS@ ½ŸÅX†9løµœÕDÕÃ/Žª‡"¨t~Q•Žc\Hgkï ·Þ.Îà aXœ™Á XžµyFP§½2ôîO *g¨ÕÜ8¬`Wx±[Vظ3£*öíEƒ 5Öo»!rŸçñÛàZ7_2ÈieÛ!©V^Øàx‰n5ž/…1–^ß8IcLK0=ÿ ¿>ûAƒ¿†µÛ ¢:Š:®öã)æ¼gßÓSL?.D!¨x!OátÍ2þA2ÙzÿçÈØ–` ùšÝñb $u»¸©º{9áÁ,J³óiÿsqÜ¿áVН·e† J=¸- B(Uá¶Ì!B« ·e0Z…¸-KQêÄmY!ˆR-nË"´šq[.F­·eƒ0Zý¸-EÐØ]ÆU7œ^wwºd³Ñw²ºìº£ïæ°®c_5FÝËÉî$x÷¾]o6ëý.@α½vÉŠ™—ê…Þ@«x˜ûȰ£ê`îÅ‘1ôlXe¡‚ä“ÔòÚ ’éîo« XÓÔ±ûãt¶o^A¢Iø÷ÇŸãë·? M«½q4õîþZãÖ”¶B³î/šWhÂÝ/ìÚÑdË²Ä Í±ç_«qVr´^V¡Yö:“O´(W¡iöÌV­5š_7{|¤`[éõ¬Ѥz]ÚõHïav=ïß®ÿA i\—ZÃÒs\¨í÷dpj$‘ëäù‹ j:ßaqGqH0#îpi­PÕH-#lwôÃºŽ€Ì~6vwâñ'øØãÐ5,¿ØÃ—)гY“‹[ÊêÁ7Ä2-eõàŽ#ÉúÁô΢àR–îáCö5²|pÇl/–=Y?ø ½Y?xT­–²€pÇV# ßcdýàá¹áÝíR–îŸl"XÊâÁÒSˆ,|sšBñ0.©tÞ?ØýSåü$Lë†4ç}}´cÉl}›Iv—ÓO{ÄÉG7ä8Âþ¼ßgA@c#®OöøÆ|çæêÛÇnHiSҀРùLhKZ^º¢ IS]WÔÀ–:^†Æ¬]¯+šÐ˜ô!t’h©JôDN-U‰v9I´T%º‡ ¬'–ªFw9i´T5z„ÈI£¥ªÑ=DN-UZRêI¤¥*R<¢“H«¹HO[»yœFÿy†›&ÞéÏib¤àg·??¦¹‘‚"°¹ýù1MüÀùíÏiz¤àiJ ñÅíÏi’¤øß\Þþü˜¦I 'Ö]Ýþü˜¦JІàúöçÇ4[Rð—·??¦ “‚߸¹ýù1Í™Ü#°½ýù1M›¼FàööçÇ4sòÇÀîöçÇ4yr¢ pwûócš?)øOö·??¦)”‚=÷·??¦Y”‚[._n~L);În~Ls)#Y•æöçÇ4›Rð'Dç·??¦•¢7\Üþü˜&U þ ËÛŸÓ´JÁ+$ʲºýù1ͬ=ÎÅ!º¾ýù1Í®ý —·??¦ –‚;nn~LS,ïEK{ûócšfù]#p{ûócši)øˆÀîöçÇ4ÙòëFàîöçÇ4Ýò€€bQéo~LS.'8÷·?#x9õcMã^y¨høeì¯5ホGs̯5»¹y4Ï‘ùTÓ¸òG@SMãn_<Ú—ÈþZÓ¸Û—ö°¿Ö4îæÕ£y̧šÆP?–p«iÜËG@SMãnÿXÑXÎõôÝÒCºŸü²E¿7‘ÍFÙÁ/ùð›ÙƒÍfCÝAÌj}<ûù7ÍÆÛ#Ô8à5õ¢Ö½=}ó‚@ÃØKÐ#š ‚Æ‡'a4h |è#ê‘ MŽP#$ê‘ ’Ì à…Ý cgÏãË·DÐ Ð hŽ~ôÉéªoŽþFä˜ûíWj}3–¾ÏÏ7bÊúܶûÍz2ïsUù_nc·Ã¿[ìWÒ¿ tZÛØÙŒýK63#/¤ú33û\s‡ùü{É[ þ¥˜Ù‘VýK97#ïhú—jfgne׎»­gædo}ÿ²œ™‘·TýK37£îìÌŽ¼4í_Ú™yÚ¿89&ìÝqÿÒ¦ÌÒÏ/‘Úõókd™ÍiHÞºöÙœ†ì¬”> x¸£.sÈj>ç#w[ ;z©sF2ds&nÈÛØ>›SqC¿¶vÔ¡ #÷(èÈ ôH¿»“.©åœ¤·¥Ïæt$ý$½y‘ôaÍœ1³9ÿ¢_<'#kxé`!k£éM‰ÙMÏÙHÝÎÙHNãéÍœŒü*aG Oä%o“£xz3'#ëÁéM'ìè%ŠÈÈZ z#Bãof˜läNóLÚ*~ç¤<úq…ã;ÍûœžÜnNO:JùœüJç¬üÍ¿¸ŸÙ-ųgvMøè™éœšÔlNLúÅNÜ1³›Ó’Ò<÷ÂŽ:ìaÀ Ž‹ᘠ¨ÈäPË9/É9;}!&n|tO_̹HCK1çbK­î‹9Oä׆ú¢£†s.žqÃM_4‚ÚÌnÎÃ#õw詟ý{#ô¾[÷ëëÿ8îã»8ûR.ÖNv³þ}Í3ðw•ÙÃwÙÓaì}·ÿ›ã{Pú¹_»ñ÷1$GèݘñØHD,ËÐ’™V¡éjElëЖ]똲§Ñ¶{biCKfÚ¦ÌÔ…¦Ä² ,=±ô¡%{T=0%ªz €ÿ$¶Y`»&–&´$t©r`Jn¬ ùº¦$¨BÊ®ÉxU!e×dª±köBÆ®/Ä4$,•zR–y {a£2öBG!äì…BHÛ »Ü¶OžmÒöÂ.¡iK^‡´ýdÒÖÊÔ Êzf’ÖÄ6díqÙuCà瘾ž™†ôývO !-{~!‹éX‡4¶„BuHã=3 YLø^‡¦TÞÛeHáÏ yËÂÔmÈá=¯eHâŸd¢Z‚ÐË®p˜„%¼{öp—!wéóºÃxÜÜâx}kCVrÍ˃åyˆXgÖ¶ÝÿôÔÒ n¿= #¿;ÿñò’ã blqNŒsd\ã—ĸDÆ1®qMŒkd¼$ÆKdÜãg/ÄØ"c6‚-2f#è1Á³ôȘ`ŒÉfˆÏÁ ñ9##˜!>gd3ÄgCF0C|6d3ÄgCF0C|6d3ÄgCF0C|6d3ÄgÃFñÙ°D|6lŸ AÄçœ âsÎFñ9'#hŸs2‚ñ9'#hŸs2‚ñ9'#hŸs2‚ñ9'#hŸs2‚ñ¹ #hŸ 2‚ñ¹`#ˆø\°D|.Ø">lŸ 6‚ˆÏAÄ炌`Žø\ÌŸK2‚9âsIF0G|.ÉæˆÏ%Áñ¹$#˜#>—dsÄç’Œ`Žø\’ÌŸK6‚ˆÏ%AÄçŠ âsÅFñ¹b#ˆø\±D|®ÈˆÏÁñ¹"#X >Wd Ä犌`ø\‘,Ÿk2‚âsMF°@|®ÉˆÏ5Áñ¹f#ˆø\³D|®Ù">×lŸk6‚ˆÏ5AÄç%ÁñyIF°D|^’,Ÿ—dKÄç%ÁñyIF°D|^’,Ÿ—dKÄç%ÁñyIF°D|nØ">7lŸ6‚ˆÏ AÄç† âsÃFñ¹!#X!>7d+Ä熌`…øÜ¬ŸÇÃE±1àsÆj2àsÆj2àsÆj2àsÆj2àsÆj2àsÆj2àsÆj2àsÆj2àsÆj2àsÆj2àsÆj2àsÆj25àsÆj25àsÆj25àsÆj25â3«ÉԈϬ&S#>³šLøÌj25â3«ÉԈϬ&S#>³šLøÌj25â3«ÉԈϬ&S#>³šLøÌj25â3«É,ŸYMf‰øÌj2KÄgV“Y">³šÌñ™Õd–ˆÏ¬&³D|f5™%â3«É,ŸYMf‰øÌj2KÄgV“Y">³šÌñ™Õd–ˆÏ¬&³D|f5™%â3«É4ˆÏ¬&Ó >³šLƒøÌj2 â3«É4ˆÏ¬&Ó >³šLƒøÌj2 â3«É4ˆÏ¬&Ó >³šLƒøÌj2 â3«É4ˆÏ¬&Ó >³šLƒøÌj2 â3«ÉXÄgV“±ˆÏ¬&cŸYMÆ">³šŒE|f5‹øÌj2ñ™Õd,â3«ÉXÄgV“±ˆÏ¬&cŸYMÆ">³šŒE|f5‹øÌj2ñ™Õd,â3«É´ˆÏ¬&Ó">³šL‹øÌj2-â3«É´ˆÏ¬&Ó">³šL‹øÌj2-â3«É´ˆÏ¬&Ó">³šL‹øÌj2-â3«É´ˆÏ¬&Ó">³šL‹øÌj2-â3«É8ÄgV“qˆÏ¬&ãŸYMÆ!>³šŒC|f5‡øÌj2ñ™Õdà³a5ølXMÆ>V“q€Ï†Õdà³a5ølXMÆ>V“q€Ï†Õdà³a5™ðÙ°šLølXM¦|6¬&Ó>V“éŸ «Ét€Ï†Õd:ÀgÃj2â3«ÉtˆÏ¬&Ó!>³šL‡øÌj2â3«ÉtˆÏ¬&Ó!>³šL‡øÌj2â3«ÉxÄgV“ñˆÏ¬&ãŸYMÆ#>³šŒG|f5øÌj2ñ™Õd<â3«ÉxÄgV“ñˆÏ¬&ãŸYMÆ#>³šŒG|f5øÌj2ñ™Õd<â3«ÉôˆÏ¬&Ó#>³šLøÌj2=â3«ÉôˆÏ¬&Ó#>³šLøÌj2=â3«ÉôˆÏ¬&Ó#>³šLøÌj2=â3«ÉôˆÏ¬&Ó#>³šLøÌj2=â3©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸ ©É4¨ÿÙšLƒúŸsR“iPÿsNj2 êÎIM¦AýÏ9©É4¨ÿ9'5™õ?ç¤&Ó þçœÔdÔÿœ“šLƒúŸsR“iPÿsNj2 êÎIM¦AýÏ9©É4¨ÿ9'5™õ?ç¤&Ó þçœÔdÔÿœ“šLƒúŸsR“iPÿsNj2 êÎIM¦AýÏ9©É4¨ÿ9'5™õ?ç¤&Ó þçœÔdÔÿœ“šLƒúŸsR“iPÿsNj2 êÎIM¦AýÏ9©É4¨ÿ9'5™õ?ç¤&Ó þçœÔdÔÿœ“šLƒúŸsR“iPÿsNj2 êÎIM¦AýÏ9©É4¨ÿ9'5™õ?ç¤&Ó þçœÔdÔÿœ“šLƒúŸsR“iPÿsNj2 êÎIM¦AýÏ9©É4¨ÿ9'5™õ?ç¤&Ó þçœÔdÔÿœ“šLƒúŸsR“iPÿsNj2 êÎIM¦AýÏ9©É4¨ÿ9'5™õ?ç¤&Ó þçœÔdÔÿœ“šLƒúŸsV“AýÏ9«É þçœÕdPÿsÎj2¨ÿ9g5Ôÿœ³š êÎYMõ?ç¬&ƒúŸsV“AýÏ9«É þçœÕdPÿsÎj2¨ÿ9g5Ôÿœ³š êÎYMõ?ç¬&ƒúŸsV“AýÏ9«É þçœÕdPÿsÎj2¨ÿ9g5Ôÿœ³š êÎYMõ?ç¬&ƒúŸsV“AýÏ9«É þçœÕdPÿsÎj2¨ÿ9g5Ôÿœ³š êÎYMõ?ç¬&ƒúŸsV“AýÏ9«É þçœÕdPÿsÎj2¨ÿ9g5Ôÿœ³š êÎYMõ?ç¬&ƒúŸsV“AýÏ9«É þçœÕdPÿsÎj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸ V“Aýϫɠþç‚ÕdPÿsÁj2¨ÿ¹`5Ôÿ\°š ê.XMõ?¬&ƒúŸKV“AýÏ%«É þç’ÕdPÿsÉj2¨ÿ¹d5Ôÿ\²š ê.YMõ?—¬&ƒúŸKV“AýÏ%«É þç’ÕdPÿsÉj2¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹$5‹úŸKR“±¨ÿ¹"5‹úŸ+R“±¨ÿ¹"5‹úŸ+R“±¨ÿ¹"5‹úŸ+R“±¨ÿ¹"5‹úŸ+R“±¨ÿ¹"5‹úŸ+R“±¨ÿ¹"5‹úŸ+R“±¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹b5Ôÿ\±š ê®XMõ?W¬&ƒúŸ+V“AýϫɠþçŠÕdPÿsÅj2¨ÿ¹f5Ôÿ\³š ê®YMõ?׬&ƒúŸkV“AýÏ5«É þçšÕdPÿsÍj2¨ÿ¹f5Ôÿ\³š ê®YMõ?׬&ƒúŸkV“AýÏ5«É þçšÕdPÿsÍj2¨ÿ¹f5Ôÿ\³š ê®YMõ?׬&ƒúŸkV“AýÏ5«É þçšÕdPÿsÍj2¨ÿ¹f5Ôÿ\³š ê®YMõ?׬&ƒúŸkV“AýÏ5«É þçšÕdPÿsÍj2¨ÿ¹f5Ôÿ\³š ê®YMõ?׬&ƒúŸkV“AýÏ5«É þçšÕdPÿsÍj2¨ÿ¹f5Ôÿ\³š ê®YMõ?׬&ƒúŸkV“AýÏ5«É þçšÕdPÿsÍj2¨ÿ¹f5Ôÿ\³š ê®YMõ?׬&ƒúŸkV“AýÏ5«É þçšÕdPÿsÍj2¨ÿ¹f5Ôÿ\³š ê®YMõ?׬&ƒúŸkV“AýÏ5«É þçšÕdPÿsÍj2¨ÿ¹f5Ôÿ\³š ê®YMõ?׬&ƒúŸkR“i‡\à}µì§­Ýl'w\äÊ­;ûã“ Æf Xë ¶OÀö›%è—d‹m– _’<¶Y‚~I.Ùf ú%©e›%è—dšm– _’x¶Y‚~IÚf ú%ii›%è—d©m– _’´¶Y‚~3¢ß,A¿Ño– ßŒè7KÐoFô›%è7#úÍô›ýšý’ZAkôKJ­IÐ/©$´&A¿¤°Ðšý’:CkôKÊ­IÐ/©B´&A¿¤(Ñšý’EkôKJ­IЯ!ú5 ú5D¿&A¿†è×$è×ýšý¢_“ _Cô›'è—TŠÚA¿žè×'è×ýúýz¢_Ÿ _Oôëôë‰~}‚~=ѯOЯ'úõ úõD¿>A¿žè×'è×ýúýz¢_Ÿ _Oôëôë‰~ûýöD¿}‚~{¢ß>A¿=ÑoŸ ßžè·OÐoOôÛ'è·'úíôÛýö úí‰~ûýöD¿}‚~{¢ß>A¿=ÑoŸ ßžè·OÐoOôÛ'è·'úíôÛýö úí±~]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÿבý¿.aÿ¯#û]Âþ_Göÿº„ý¿Žìÿu ûÙÿëöÿ:²ÿ×%ìÿudÿ¯KØÿëÈþ_—°ÇÄ‘=&ÝËËëßÿá_ÿ÷ýçbý?ÿéßþ÷üÿÿ‹Óýû¿ÿó?ýË?ýëþ?‹þÿüÇÿýÏ¿'àe¼ù‚µý¸9Íží»ÝÙÅÆŸ‡Ë\l×»ÝpçýÎÿ1 Ï¿ T¦¢r‚2*ª ¨\E•Uª¨š *µ$¨š¡vöd7ëß¾›ðÁ/ñl4šD<›ˆg#Ô&âÙXu‰x6j>ǯ}y 5`ƒl×nÃñ€È^Wë£}ˆO1¯+¿;Ûõ ôŒƒu­a´¬ h ãã`]Bë=1¯€ùš^x ­Ù…/¡5»ðZÃP>X[`}¡×ÝBkvÝZ³ëî 5»n­á¤3X÷ÀÚ³ëÎ^ 5¹î,ƒÖäº3DpÏ®;C÷Àåí`¾gc™!‚ïé3AüÞÓg‚øýNuœ!‚¿S!gˆáïTÉ¢ø`ÎFq|0gC„H>˜³1B,ÌaÖ1˜#šæ0ÑÌÏs˜[´/}&¸ÎìÕG{2®‘}°'Ñß º¿Ó(jßßi5ˆðï4ŽÄøwH ¤üšÑÆ@ʯm ¤üšÑÆ@ʯm ¤< ¤< ¤< ¤< ¤< rHù {î9dü…=÷Þ³™C¾Óy)‡|§SùNg¦òNM9ä;›rÈw:9åïtvÊ!ßéô”C¾ïÿx_{DøÎrDøÎrDøÎrDøÎ DøÎ DøÎ DøÎ DøÎ Dø Dø Dø Dø Dø Dø DøØ"ü‰FìòFìòFìòFìòFìòFìòýÂYB¾Ó_B¾Ó_B¾Ó_B¾Ó_B¾Ó_B¾Óˆ]B¾Óˆ]B¾Óˆ]B¾ïé­B¾ïé­B¾ï)Å ß÷”bˆïg:{”ˆïg:{Tˆïg:{Tˆïg:{Tˆïg+Ä÷3Àâû™Fà ñýL#p…ø~¦¸B|?Ó\!¾ŸéмB|?Ó€]!¾ŸiÀ®ßÏ4`Wˆïg°+Ä÷ÁüLja$< ’$< ’5$< ’5$< ’5$< ’5$<]×𞑦†„÷lrª!á=ËþkHxàkHxàkHxàkHxàkHxàkHxàkHøýGøžu°G„ßÑ_#Âïh„_"Âïh„_"Âïh„_"Âïh~°D„ßÑü`‰¿£ùÁ~Góƒ%"üŽ–»–ˆð;:™-áwt2["Âïèd¶D„ßÑÉl‰¿£“Ù~G'³%"üŽNfKÈ÷õgR×[BÂÓɯ„§“_ O'¿žÎN $<Hx:;5ðtvj áéìÔ@ÂÓÙ©„÷¼“y¾Œ§HO'2žN d<@Èx:4ˆñ+áDøð~E#¼E„_ÑoáW4Â[Døð~E#¼E„_ÑoáW4Â[Dø¡aãWü…†EŒ_ÑÄ"Ưè bãWt±ˆñ+:ƒXÄøA,doö»7æ¿ )MÎÓueÈgÂŽ2ä³g¦!“Ò—!“/,º”!—¯O]EHçûÀ0HÈë ö2$ö4†ÌuÈîýžù™Í‚F2›É» ™ýAâKršœêëÊËäˆaW†,þðĶ )üÁžArxgOvÆ¢Ëí«=¹Å*¤ódÏ®=äôdOžvòúà»õnXŒDHí/™m«Ù·Ã¾‚ñ›^ßÓ|Ç!Ëîݬ[2Ô¤°}¿þ5àúób˜$Ö¿÷»óð„OÞÙY+Ö™Do×]2ØHðqý¶Jÿî<¸òýÇâ§?ž×.-Ðe§AK ] ˆ­$ÖžÏÖ­|§Ãj Çêñ'Á¯Nu²¤NÎv÷æ)®QpkR]©-ùax÷dÙX·¶Ö`.vk xðÿ:žÖ]ÈÏH»eÀù+â| ÐýŠ{;ZVX ¿"®´ Ø}…Ñ´s‰)íÖG·a_0yº²õŽ_ü&¾Ît†AM̆ ŒIŒåˆe åS†¤±*6M0#ŠŽcŒãh® c ãõ²è(6Á(Žö|›`C4Áç:†Ç#[ª4ò?­ß†Éq*³¸ãþtz=AÈÃZì¼Z»÷ûìê7Þ÷Ç×í¿°Ýi++³ni7~±µÇ÷Ñ®á¾õôá7ýùž7Hvƒ¸aÚ?úgf޼ń$hþ:‹#I˜â†¹-*ž¸Ðòñ© Ïñ8.ØuH5»À4L=¿Àgîmy[>oÍëwN¼N;[€¦aÚù>soîñ Ó Ý ò<'ýùÌuö³Ç’„)†|pPéÉ?Nôýz³aöÙ—ý}ý¦Y›×1ƒÛOå5{^Ù³[©˜üõ>µ&"†ŒÉïR/©¼'Þï0M¼{3Z-ú£Ýz:M5²fsíx¦Ô˜ôÃòwXÑ·ötZï<[6Í-H4·¯ýæóš?Ú‹ûZO¶ÞnÙ"·hbXâê ÷j7k¿[l÷»ÓµŠpþËŸöƒ:p›ýi˜"4ˆ¿AN]ÖÝô çñ§RZSL?Ãܾ$†*_n(w´íµÔpŸ‡¶š+3QÖ“¥ùº´ÃºÀq«7oÌ>ŸÛŸGoYvSâñŽWDùZ–Èšñu<j–±‡YÝŸ§ÕúÀ õ¬$“XÊD7ÓˆŠIľŽÉÊnúÅ£û!Ó`˜öÓïöØ%ÁÜ7l&`4&Q×”ç¹Kô3Ø3WÙÏÉ:žc5ã„| ™l»ß¶ ’Í8‘0’ ˜\p"R¼n/§Õq?<„!^\˜ÄÆC­æ2X÷t~­ª¹4Ó: ¾f½”¤×Œ›W?ÕêìçØB:²‚™ÚGÓ!ük¶ík»±c©Ûßüm¡1,°v—Ó|5wòn,R37Ž»™Ö£‰~:îg¾RŒøñÊm]X‰~ú›Ÿ¿œã:Ã:6BõËl-pÚÙ÷a‰2ÄùiÞ¾ÎyÛa4V Õߌ6óµÅónrû›ñ…zû·é[õP* _é ÅE­>„KZüÎß>§×aÒÌLÀÊ0“€iE°I€¸×Ó(?.[®ä?quœ •¥QÝ1¶«=Bݦ3Ø+@å2—CÒt>®_Ý÷Ç2|hwo4 /³;îqÌb(sG‰‹ó;p>z1ÜCq~c»ŽÖ­—åcÍ_7­^?Vë³(·.®×Ãõ 1ðdùzþئc™vXؾíücçÐæ“áš/ôû˰ ßwcp·›óúHs…¥E ¯Ô•¢Z„𦉝a¡Ø»¤ì0)žùëÀe÷z}q0d¹“ç᪆>›Æ—Ó›¨‡úü~ç×UÀêVºßôÚõîšw^=ž¶v|Ï|½æ¶W‘€i^¨7d·Sä¼>ªë[ÐñÍ8{ à&'•(Ÿ__C\—ãšòŸ4òÚZÓŸö°Œ\Âmu¨¹hb‘àÊbûäâ´]o®Q†'(¶•5÷t¨ƒ_šÙi ÔÃ/#¦ÅQÛã/ÂÅx ºˆãã"m<’ ~{ Ö@²ýÆÿ\ŸxÂÚæ˜aq`ï3Ž+ñMÆXÑÛµÝ~{¸ð ×-'a—ð>“  ¾Õ$¬…wëVþtZ¼óÊqÛâ[±bã8¢×8Ð+wø×Å{J„^»E é°6€D™ H¬Ë xûÉ Žè2ĺŒãˆ.ã@¬Ë ×kØ=«È;"Ë(Ve ’ˆ2ªjr§Tœ®JªêREêÊT¡š6öƒ²]•¦ì4ej8U˜ëò4¬Ë»qªUOGÄ™ˆÆ M™&¢«×aé2æÉÝbc‡Eû؉¹¾æÎ_;¦¯ÀÍëßý¯û×ÿüûÅËK‘ uÄEº0ÂÅ2âÂ….rᢉ¸èB…pa#.|è¢.Úˆ‹>tQ .ââ-tQ ]ÄÅ*t±.|ÄÅ:tÑ}ÄÅŸ¡ ;wá_".ÞC­p‘E\lBN¸0ÛÐE'\ä»Ð….Šˆ‹}è¢.ʈ‹Cà¢|.bñâ¯Ð…ˆ>/Ž¡ /|,^œB"^øX¼8‡.D¼ð±xq ]ˆxácñâgèBÄ ‹¡ /|,^ü ]ˆxácñâ3t!â…ŋߡ /ú‡xÑ­ßÖçÅoÜ¿îþçäw\þò:ýóÍ$t¿ó™½Nÿ< Dž?Ðwš×éŸd WG¾5þyÀ;–¸´xþy€–tý}kù:ýó­$ô´þÕëôϲþç€ ±õëôÏv)±×÷»|þyÀ6»[Ãm^§îÐîååuzñ±wg¥õ½{Éæv¬½{1sCÚ­Þ½äsKÒ)ݽÂ#5,åWSËJÜ55¬…Kn¹”ˆZ6sË’ÙYñÝÔ°_M |@Ô²“÷M-½¼ojÙÌ`¦™`eA 3É j)xi¸eЈš’GÔRrS1­&QSIOÍV´bv‚ž5ü4Ô°•WI-Asjð“Zü¤–!?™©y‘´£–2nrË prÓ\ÒŽZÊØ©˜–í¨iÒŽÚ Š–Ôp)õld¼£–2„*¦‚¤9·”QT1í‚àHM}©m/Ã#³Ì¢rÓ€©Ü4¤*· ¸ÊMC²rÛ­ÜVÒµf†‚«†J®rKÁÕœJªrK9ÝsË`¾ç¦‚©5”<å–½$³,$KÓLÒ‰ZJ’*¦y@&j*9ªÙÊ9¿¤–rÊç–ÁŒÏM—2¢QKPÓ ¢*¶­ SÔRU1•3¿Ql}{¨©œüÛò%Œ=ÔV𵢆’®ÜR²•[d如«9·”ÑT1•ñT1 "ªb+èZpKÉVÅTFUÅ4«Šm')ÈMedÕlelUl« ºjÆ‚¯%·”„UL%cÓ€²Š­ä¬bV± X«Ø†´UŒ%oÓ€¸ŠmÀ\Å6¤®bpW± É«‡ìåÆ5 ¯b- Kf(ëÔ0(PKY  †A1€Zµj–¨© mA e)€[ÊZ· ŠÜTV¸ePà¦A=€›†j»,-©¡$(·” å–E¹©ä(· HÊM–rÓ¦ÜVò”[Då¦S¹iHUnp•›†då¶![¹- +5ndT­¨¥¬ pË ,ÀMeU€[ò pÓ þ¯Ø ÊÜR2V1 VŠ­, (¦Ai@± ŠŠ­àlÉ-%eSÉXÅ4 ,·µò=•b*#¬f+c¬fDY͸±‹›JÚj¶2Òj¶A¨ÕŒe±@³•ÑV5–ñV5"®j-³5µ”uXn”a¹© oN-[lÓà=+7 ß´r[ù®•[o[¹©¬Á*¦ÁŶ–Tä¦2àj¶A‘K± «\б mÉ-%aSÉXÅ4 ¬b+9ËM]@ZÅ6`­bÒV1–¼ULâ*¶sÛºŠqÀ]Å6$¯b²W1ôU¬+n)ù«˜Jþ*¦[É_nÚüUlþ*¶!cÉ_Å4à¯bðW± ù«üUlCþ*Æ!cÀ_ÅZ.JÅÖɰªØo4cùªA³ Ê_бË_šu&ã¥b+‰¬ƒ¦Å½ÉåÖè].·®¾™º÷ÿüñ´'»:_ÏŽ|J-ÙiV—Ýx’z>^ç唩$6åëÉfo¿ž:p䨰¤kWÎôJÂû„/§WÞ§}9Ã÷/üð³+žá2õD²”ûîM² zõy² Ö–ÙÉ.X‡c_¾n÷ûÝb3?°÷;m®¾žÀ{LuHŽ0¥Ï¯L ‰üËËãÑ×ÓÌïGL‡Ýh‡µú—¯ nwø´ó,o®ÔÞÏvgÖ_Û®îWÞþü¼}‰v„‹)/2V¾†¶á¹3?ýñ3á ÿòuÞÐÃDŒÓèÛæ¶wÿáЖMá_&M]év$Üü7@®¢§ä_–¯ýȳ~l|ÖΗ<{xÿu|ñítà”çýØ1~€}ðÑ_ð_?ªñÀC¿Ù¬'úHÜ£’ÝÃWŒ‡Z7`OãÈþñ»žƒöøD¡ûaB—½<\,ö0nöˆJä³ìñÚÿ[ž ¹•Dxþ(jpDSªŸâ1¦ü7ü”蜨Tp…~bâîoŒ«‘#çüØaq?νç ÂO¢óY“zšû:tyþ<øÅaíŒ öè°UÓáf ëöìÛõŽŠ2ëô/=îÏŽœÇâ3bo÷¸e>„\%糆yቨ“–NgϾÕdì&ïÂñ¿û~A˜Ð˜Q:ÑÓ<' ‘)ØÕOÑŒ3Ê”!ò CoµÒ¿Me„©#`Ãf Ó0¨Ó ß¿]åJƒ]0s UøÃ6I¿Õã 0rÇà@Âd*(ybÙ„± ‰ù{­4ÿµ!sHáÓêg›ãs r1Eê ÍS%þÁ‰_÷/†ÒþF‘2}ýúýð눜ê9Ò¶]Ÿ|â8å@çßjû þê±? !~'K» |´žNùÁ*Ÿ“ðpcŽƒƒ˜ð =’xЮ€$íæ@úÚU£nÑ=4 ôÇ/Õæ‰":§OK‰Ýü·Ê2P9Œ3,L@ð3ÒÓçUÑ?"ÕQ*€ÚÅ×ÞíãO>@ñ³ PG ˆ}ºkÖd:W¶šú‚h—}AÔJ7[ûHôë²èò ῼå 4_/Œ€o×Å@€‚J ºÛ}0Døãz'ÿkzÛ áoë}Aè·„?­wÿŠ Yï ÞWþ°Þýk(&ü]½ûÝPLø³zß·CAá¯ê}ÅÊðGõîßC1áoêÝï‡bŸÔû¾ Qï>>þ Þ÷QPø{zß#DAáÏé= CU/ÅZ¥ˆbQŒ&! R4D1šˆ(HS©2¢(EG£ ‰‚4%Q*%ŠÒ´DAª˜(JUEérb°šë‰ì²öµ¢'ŠQôD1šž(HÑÅhz¢ MO¤ê‰¢=QŒ¦' ÒôDAªž(JÓ©z¢(UO¥ë‰Á–ÊüD1ÚEAÚ EAêEQÚEAê$EQê,EQú4EaÚþ@ûí‡K¦Rþv¿[Ÿ÷ÇÅz·8ìç£Ò=®ÇÝæ?“ꯛðÆÞºanÝtãOF±_7ï_^^ïìÖïvŸã5´S‹àØô³xÛíïn¿Ø­¿ï§Åûñó÷Êocãíø&kû¯ƒÃÝi+=fÔ㳞 õt>Ù³âóÄ{‹ù)"w×:ún `ÌAElíf?päççiwSS7©–ÔÀß'<Š&íNެöï«Í>N½©'œµ±û{—û[”5µy0—Ý3ÒÒ]ù¸¶t}º¸TG@‰xÀù–—î©/Ý8É.x¬ùV˜îGEbºKþo< A‘éÎxDšx|—õ’"Žx$: Søn·Ÿ9¤nx J¿{î>¦K¢x¨ù¤ÈEð3°‘+‰šéŠ˜ÃÌo¿á0V†UñHr´?ùM9Îë÷•ý´ÉF»?þÖ½ï[þ}\´ÍO^¹R.Ö«FcK•*ä|MLm¾ù›jÃóâΡ`/§ŸþÌU—CNÎGñÃõÛvþø[øœKªó[:ÿ¼þOq?\`ûóÉkÜËU‰¹•=­ÖtɵuþxJ4ï† ¼ç¹ú®î”áê»!‡kÚhú͹ ÷cº»â‘?W”¸?îÝêÓ.v{u¹&Ï{u¹$»Ÿ{?‚•„3§=Ÿ‡»ÿí>jû­ç¢æó¦»úNE|Ò¼†ŠƒAàV½yPñz× wpÞ©£‡@p8®‡о[÷ëkõù§ßüa(6bsŠ-l·7?^·§nÖê¢T\èO¯Rãv\‚+Fkç/[?~ÍåþÃnÂ8ƒÆ×…Æ' ß¡½oÖgbŸKûî§]ü@r³»L\ÖæóâVĺ”Ö¿í(eÏnº’ö§óþ°rb_3ûaá;*¿%Àeð¨üqX.tïì› þûa?|ïç°>#$Æ[z¥×/#vÒJ'ãP}^NgŠp!%6Ô¸ Gëð9¤gô¦¼¼í7—vÓ²–ñ´ç0…ÞU ŸoØ´èaÀ@JßÀëú„á==\çmià´~J\­‡>²ÐGZúº§{äÈ@kwäõJ90Ýøu—ðŽâ‚ÿiã÷ˆ:‰Ý Pè%r?L¡“øs ”zÛ…QTèu2þ8nŠI½ Ô;,|[;«@¼C»]oöÄ<íךš×XVĨôô>ü×Ï1DF†¾„ú ÕÇ©túŒrhõ|«`` ÕÇŒE›Pëp‚¼e:ËëpÚ”^Ræ´:Ð-¾ýY²ýv2®Á¯‹‘x ©Ãù»‰<™@·ÄMÒó ÄLœ=<,â)Ðöi3¬Ög*¦@ÜwÀ°2š‚ОÌ]u ôoìo;¬BÏ{ò­Ë@ôßúUˆÄP´ÜýMT° ô~?'0 Þ¯Ïä)/õí¾ýÜ0ëpm;-1K[{f¾ ÛÑ::xËP“_@ýù‡2”_¸XG\€%îü«‘«å7¹˜xGõ± •&pñJìëêr±k7@ÛìBâÞl8¹NÞÞŽûíÕÅTHX_»‰"y†ê¿;{¸ªg\²˜ðu}ÆbÂüJ˜Åti˜eÑâê2Æ=Ëâ…@Ç⇠âÇÖubŒÉúö-d°Aœ¸¡¾¨È¦J‡9PÿÖ 6ÌÁщy`!â|ü´§ýÛÆž”˂Î úú_tö§=K Û@îWãHþÒºžPÑ\¶ Ô;¯Eç}BNÙ:¾9HÎJÛ@Ì¡‡”¹«e þ¾dâ}x‚´lÞpñ·Äë–. æ~ÿ¶ÐÝÒCxÕÄ[/Ðë#~ØÊ!rŸi±½e‘Cz…ù–Eî(ÊZ\^£ Aty¿ôëÓ–˜»0¾´ûNª.ˆ+Ý¥cžƒP²ó[vÕ.‹_‰u///¯íço;žE:Ì—ÓôJüsÛî7‹Ãi½)ÖË8¬³'¿†—6àŒòuþ¸>öÃu³/Í9xÿkøÎ…ïÇþñõûW§x࢈¹èÖzÓ%ÿ´Ç´ ¨¢>´+¨9úÝžWëÓ™!—yúÙ_š.-píVô;ŸÎöçqÄ ŽÎÿbr6Šœ¯3Ö:rÛFõ4ãD=èÒîü1:~FÑöàâ¼òLÜF÷û–Rœ¢î#%FÑôa=~]ìNMŸÙ7úÍŠ¨íΞGš±¥ç€V„=,Ç8NQötÇËݰ"î/[?îG¸òö@ ^ï?v·NxôŠÀ5†)êÞøížLWF‘v÷ ×üÝK®¨yܵHPŠ„ÏþtòGT”û~´ÚZ W{] «˜g7ªÈ¶?¯öÇØ`æŠ~×Ûõäƒ@ Ëí¸æŠ}»¾Ð¶?íÝq ¨ù0¤ §3EjËíÓzH?9Tóp¥görEÄÃìv ˜±G¦(øh<åŠl¯ù…Ýø¸øs}ŽþÊRb^Qñ×vk,aï†ðMPаC̤ϬЄ}é…ÝàÆ£®ˆû[!®ˆ{ÜÓôö6Ž6‹,…¢ì·ãpñ+­ˆûº¥!©P4}[ïs¬"ç©nÀ¡šžÇ1fIh¡ª™×¡¤¢æé+÷jæ<Î1š¦oáOydŠ–¿Wû|X1Š¿RÕA©úS©Œ•I94¿÷2%^+«nˆŠª'E䟇ýñÈV6¥¶äžF³(Z* ¿?R "î)±e—¬h{ˆfÃ^ƒ+â¾ÕäøCÖÔ=å «ü>Ó+pEåûqŸ)»]EÜ㧃<öL×¥¢ëÍçeâôÌïVôã*:¨Aû³)òà‡øPÄýþ¹á·_iª¾=sÝAÊŒÍï]Q´_Š袲RÄü•ßñ/V}-;˜"çûr”©¢gðožo4‹V¾UQó¯õH/­\Q)b¾odñ_)²þ‚ª­´ôyº¯Hüë¢ÓT~»‰¨“ZM²¯r#.Ák«òÛEèµ_ Ãú¼òt(k-÷N€kjŸ"]Š­<~¯ÈP9ÔZ>cÎëëòÅŸ˜­öèàs „«ƒa=µÙ_Øí+¡`@ŸïcÝôZº$oDjmý~­!p+ÑÀïºa¸£Ã¦„ÏÞïÆ¯fL W(],׊ôoenԖ雩Üʾt©Èüúš)’ë/µÉ|*ŽÅ<ÄËkJ½TTþ…¦òZ*¿×ä9ZѶ¥/è–Š¤•÷zKMÈG§éןʅ*Ú}ßñ½r^*’Ýøõvx¦ÃBí4¬A'¬”½TÄ{sÒ}îo>³ß| näºmµ~óâO'{Œ:RKäWGëíúä£F‘ûí©š”7ŠäoøauàOçõÛv¨qž&kZo”Ý)ïé%tëÉA*qà InK æ b^ùóWâqª=2µN¯?3%¦X¦„”ÀÝZÃ*AE*Aží߯­(×ÉꄳF (“ƒñÛ‡‘cx-áÿÂ3¬Ö sÅn=qÕ(qã }b߬Ċ ;„€­(¾ÁÊ3³Zï{дKPÂÖÏŸÃS÷ö ¹Äøj­¬în†EÆ:Å—î¾:ÿ9æº#%Ì/*É›îÞ’ÅîN«>¸û®,ó¡ˆoþ<ükäb”h:Úø7s¨D‘»Ã?J0ù¦åƾ­#~” ²>Ù÷ëí éÕÕÉX°§ŽÔ^»{Á;Ñ™pz»™¸>M«G•Jìùv³:š—V Bß^:•­‡îÃõÓ?ÕÁj“cQÜUJ<úâOŠRZ%( áõ¼ºÕ6Õl½ÕÞ)>:óîE D~g¿ÖSÚk`øÉ–¹­‰ÆÞ¾ÐnõÊõ‹)V 9¢åâ+,_®ÃîB‰87úç<÷}˜|È  UÂMà„¿(o•hss³³ž)q&¸’ŽLê­_&'§÷͵Ú;9»þ ñ¥yAïðx€îÅi1F:ùM–õN 2á ­•¬Ã)y¢™†SÂÌÍÑÖŽ{+¦ÌuÌ©Õ8êâýHÂ_,º;%äô«ó#nZÚëî”È#xus6 {Â,§ÄŸ/µ ñŒ>{µ½ø¸·‹ßŸoLfN‰Bx|ÕÇb˜Sb΄>Æ}6ë±’y[ SÓz»?Òòž‹qV²`lãì®|!Îôâêõ’†%®~AJôéÖ‰>´¶Åuê£éÔÚëÕËXž»ºº}çßi?O§í$šCž¶»Ž®êAÛ !< 5|Ä–«^ I§óQu¥Ä¤ÐÕ˜LjΔXtwfüym_ÔÜAä im›ÂQäi=!ÒSìù¨o•®qÁ.ÞàQTX .Âð¼{ƒ ûjmSäXÁ&È+!ÄßÇM}4!òZ5ø†¥‰¥×*Á7ðûb­ |òTÅk5š–e(^«ß°,1ñZ ø†e»…û”}××M[ÚƒÐk¯ˆºHÚ+âÙUð¤ª×^?\…â!º‰J뵕¯—vÔAöòòĈë ­=~ÿ’X€Ê$êv Ž2կdz·uP.A·B“ÀEpö´dUE•Á3ŠsTIÐõWöŽþàíyx¨oxµž½ÔÁý]'-\†æ éög<[e/Mø8†õo$ÛÌ^lX8{`æmðàßN»=>ba°íð½#Ù¯ß.GÿGF€>4ØÇ€9f ú±ßƒ,˜³,PÒÍ|ÑúÍþƒ€!µÇáÚVדð $‘³þt!oß³,N{´ŽP? ô2¿{x û`(e¿óŒÊû‘úž œ?öqT ’ë5ÆqRúýå‡zé×?¾-ÔÍúWhD†ÕáîmÑý¹ÝÛcG° ®÷—Dõ¶pC´#Ö’&ëÅþ|Ý«g7L&ÒÙÚ>}t€²rÊ%špbÒ¬)õ©7¨ªO¾¡@cÝñ²½¢Yì3ξ!$ꙀöÛËæ%úy@èÉ^ù†€Ô_?){¾þÒ4”< ø ɇ&øíöÛí°–ÁdîÈ^»ËY³'˜êò`æˆË-æ¿.ׇñ§©q”~Y  PûÊ@>Wí)‚Ëñ|Œ¿í«!íL¿:Ìz¾¨ `ùqE»Ò ‚¾£Š@CçÕúxþüãäÝ~×iÈPMÃ÷}þ1N‚úW¢±ºìºã°2< WüùGôv‹@`¿»ýÙ¯Æ_¦Æˆ@Y‡Íå…ÚZ‡ðÿ¶@d§qØý6m}& -¹Iðõç  8\¯}ý^ô~9¨_zЮ!bèášÛiWH“øÐ®#kècʵ ÌœhW(:t2NDê…'>”ë(CÁ£±>”2¿âG»ž l÷cÅ%A%eæPí[ƒXðuõ÷C$J“2ª'íš‚ˆ1v{˜Æj³mÊ `üܯ»(I.»Ëfûª ¸!öŽs`Ò@‘ @kÄ€v,ã@ëÓz`ü"‚„}]<®´þ³*6ô×Ò@—^Z¾M›Ý_Ñ^ á>-°ƒ^8¤;_;@'õ‹pˆx¶ŒÀ>2á#P3_Q`‡F8 gýû/¼Û¾nÿǫɪ€ U áÜáèÝêÍŸlÌI å‡ŸK=úí~³ÒÕí¿¾fÁïà@Ó!ØPp íœS0¨ÛìÞüuîW Tò$׮€xål©Ì Ý~=±,‡W©Ì¡Çé§y P™7¿~Ô— •Ió´õö¨@•)³Ô¨ Ã%ñúpÏûÝÛEPEÌ×Ç .M×»~ümwyé¸ „|º´kör|H÷71 zX³Þ¬ ¹õ¿I—EÖ„ï÷G¶œoB}ýÉyú8š@UAM½o¯kÓa’°'øv.Õn·W¡ªÎGb¾$¼‰Ê›@8ëÝøæãú‹ƒÂêÒ`«^|XM,d5,öÇëïœÇÓûöïôMwˆAÉ:´ $!dÚêÀ‚µH`‰6PŽV¨Hk 뽸$À@YØ`˜J¼d °I¸c­ìåp>×[öÆJÛùaÎP!p]¹ï*(lYñoG¯†«ÎNc!kÿÁç6«LLcáXÅ*«ÌÕ´Á)he•yÚÙÃ0©üþ½¾/±°@”?6ùðÎÎ]WÄp¯ÔJ¼ŽbßÕ:|Û ‹ßq¾¦± $øák¸6Ðßõws¦{g×Ò"Ղޱ-»²ðü`;î­&ö̶ףí‰u °Í°bƶÆ:!é“ÏÚ@T'¿]O­–ÙÂzÀ)UÌ6Ôv`õ÷_/  Û@Opþe×+ƒðpµ7\ïÍÅì>¯‰ m §ÁU8è"X9ÑïuJ¶“`òÍÈíJ¡ñ×|zïÎVyEéÕMÐõ6–N&Ž(@wÔR`oC£@—›ß#ªÀÂ¥¥ß.§¯‡9vÖ ÿw8î7×⛿?eâ/|Óñ÷ýè‰Çpmšx…‹n¼ÿËø![^ºp;9¿_ÕÓ |Eõ}á+Ó'|¦<†ðuêßød5îÂW­ãU» kIÇýú6î¼£Û/ Õ†º.œçï8­µ® ¢Î­w %öA ù¹>²9² {(ö=_È$Ù…U ÍšN©]Uœû~¨û°â³"·ãÅþè.jDƒñXè‘? (üXôÿ‹âÂæÕ¯;×q¡Vo74FáËaà1C"<øÓXÈ9\vîLG(PÖûÚÿŒ9PË tK]kϺ¢} tÚ·À_Êú@<7à0ëñÍÎO¯,±} ¡:ö.ØZºƒWÂÈê†{||}i¨,×} 6ê„å >Pà×P}¿<^F Jæƒ^E Ó¯Qߨ»9|¸$ßíPÝË!>êû÷Ñ#ÒÚ¼¼¼ŽóûâçÞMÄ›ÞNЯ™.„e*Ì0˜Qa9ƒå*¬`°B…• Vª°ŠÁ*V3X­Â– ¶Ta ƒ5úp¿0œÕq”'­Ž£Dq:Ž2¥Óq”*^ÇQ®ô:Ž‘%‹Èޱ%Óu—1ºdºð2Æ—LWža|Ét鯗Lמa|ÉtñÆ—LWŸa|Étù•ô¹èú+ésÑõWÒç¢ë¯¤ÏE×_IŸË—þÖ»Óùx¹v›¤Ï*™OAÓ{íSÐìÊÍK šÅ“¥ ™ªIA3m›<陳‡nŠ$8{ê¦L‚3¢™* NG­N‚Ó¿L‚Ó'ß$ÁYp56‰îôѵIpúè\œ2>Ié†M€&Mêtà’´nؓϓг(ž'©=g’ɓ䞳G—'é=g.OÒ{Î8Ÿ'é=§O>Iï}òIz/è“OÒ{Á—'é½`’É“ô^ÐKÒ{A.Iï¸$½Ó…Ož¤wºþÉ“ôN—AEÚäÎÆ½HÒ;] tü~W;9úÊÐÇÓzüÖÓW¶fà"Å^ÏçÑÑEÆ›ˆ ¿¤þ…™~1€Ü¥{y}·ïçýÏõûb7<£q‹ëoÜ¿îî%—Gó,4ßïüƒuöhmBëóÇ£oóhëqkÿƒ}þh_„öc›þƒyñh^óõÏGïå£yšŸÖ¿¬«GëXûŸ~÷`_?Ú/CûkAêÁ~ùhß„ö»õìÁ7æ<ÊÙÅd³QmÁÕlÄåg³‘uhdýfö8³Ùèvht×Çq‡Ç#f6°Ä̆¹GÃÜKÈãPw@·½'Çñã-AƒÞ9\]`¾¢^bG,SÛO»KôX™žÙr5eè™)—òXxž›*:«Í3cEÄcQyn˧Íð ²íúè;fÜãÖkdæV˜¿{˜úõï½c!¨•w¼îØ_sþd' ötÝ$C¬;a½?ö§õù~Îpˆðò¶vçVãì/ôkzêüغ0Dæ?ãão8•ïb›p1 o~çØhámŽø.p5°`üN†1³Þ¹£w'û\ØËïñ¿k7RÈàß1Ê.$€uì9gR!«ý¦»îì¸wŽ…©“;Œÿî™KôûÍfÿ¡¤Nl÷Ó*£&uræ-e¤BŽãæó³öR šw)?÷Lw™ÔÅ8RãYœR~× ¡u\Ú`€ $p9¯=£²‘ôw+»{cwj$ñ;ïÖ§›@F’È–¯°ì7å¾Àa 'ç‘Øø7Åy0Glö'õ&$ý‡K9­Öf.éÿfÏ+T._ÒüqçÝäŒäÿár\Óho$ýÇIN»[IþQ.DTÀÆ~Œñz»ï<›µŒ”Âð%‡ýŽªÌH!¼í¯ÂÆc\= u¹ÃpûË ¹#»÷\ b˜q~²kÊ¥ÞÆÃ•'›K1 «1;ÌO[>ùæ¡ÎÃõ3jçR/.– B.…Ðo®I±–*øiO篹ùcøwNð\*b|×Ì8›KEÜN™cæRã/&ï¸$r)‰‹f,õpí¥\ŸVÚ°II\CL7HâBUKI¼]ì±óF¨@_‘fX”L!E±µ§ºB*Â:wÙ^6Úò¥ÂðÛÖo6ú#+¤8Æý¢ÔXÊâÞé©¢nW™L ©ŠõnG—ì…EçCz©ZH)töøîwÊåH) ôÛ*æ~­ì外Øä•ÕQ!1þ¾ûÁÒuC!Űx­°º—IÛÃÆk· u0ÊA)%ÐÛõF1$ð6üëOM¥TÀõÖÊC-%ýÇÓW~qM`Fª [÷ýÚ§Ò%_,•l;,'9¡Ê`’اq@õòze¯{Û÷Ý5¶Ž? 0ü'- æUFA´@˜W†ƒx©0¯r ãEü*8Š–óª¤(ZHÌ«ŠƒxI1¯j SŠ‹yµ¤0^fÌ«fŽò˜å—G”¥(1Ì3TËQrœg8Gqr g°ŽÃÄHÏ`žÂÄPÏP=Gɱ~ÄÕ/ ö —Qœí̼9ÀXu<¬Önq¶›ÍçµÙ\Ñt3 —t]PŒ¢èºd(EÐuEA\Ïõ0ß'Ýûò5Éa1–sÇEÛð×÷¬×üØÙÃz|Íl_7ÿuýÝÿú·ýÏ¿_¼¼óSŠñ(¼ áFÀw!<ð\w!¼ðBû^ x©Àû^ x¥ÀßBx-àµ_…ð¥€/ø:„7Þ(ð?C¸p«ÀßCx+à­ß„p'àNoCx'àß…p/à^ïCx/à½?ðr~4`‘izÿ+„ ½gšÞ!\è=Óô~ áB÷szÏ4½_B¸Ð{¦éýgzÏ4½„p¡÷LÓû¯.ôžizÿ áB÷ß!\è=Cz¿¾U瘞ƒ+É9¤ö ܆`É8¤õ ìB°äRúîB°dÒùö!Xr ©|÷!X0Í Oà·,xfÂ'ð* –¤ï ¼Á‚c©{ÿ‚à Òö~Áb>1HÙx‚Ålb®'ð6‹¹Ä UOà]3‰AšžÀû,æƒ=X0[®ç¿B°Ð³áz>†`¡gÃõ| ÁBφëù‚…ž ×ó% =®çŸ!Xè9çzþÁBÏ9×ó¯,ôœs=†`¡çœëùwzÎ…žÇ‰fÈ’Ò3“¼TÄs“¼Rij“¼VÄó“|©:ˆg(y£:ˆç(¹Uij”¼UÄó”Ü©â™JÞ©â¹JîUñl%ïUñ|¥xQÄ3–"SÄs–¨âYK‘«âyK¡ÇƒxæRèñ ž»z<ˆg/…âùK¡ÇƒxSèñ žÃz<ˆg1…âyL¡Çƒx&Sèñ žË8¤f3Ž©ùL‰cAjFSâHšÓ”8¤f5%Ž©yM‰c@jfSb§¦'%–oj‚Rbñ¦¦(%–nj’Rbᦦ)%–mj¢RbѦ¦*%–lj²Rj‚§+¥&ØxÂRi‚§,•&ØxÒRi‚§-•&ØxâRi‚§.ž²S“—JÓ{<}©4½Ç˜ %çOg1ÊÒŸNe*”®?ÏT(o:©©PÿtfS¡Lþéô¦B)ýÓ9N…rû§%ùOg;5ÊöŸNyj”ö?÷Ô(ÿ:ù©Qaïé ¨F¾§Ó •úžÎ…jTó{:!ªâK<+ªâK<5ªâK!¾Ä_ø„øÏP|B|‰§)>!¾ÄsŸ_â ‹Oˆ/ñ¬Å'Ä—xêââK<ñ ñ%žÄx%¾¤f2^‰.©éŒWbKjNã•È’šØx%®¤¾>ðJTIÍz%¦¤¾>蕈’šjõJš9”r÷öÍJ¹{Žf ¥ÜÃ=ÇG³…Rnãžã£™B)wrÏñÑ,¡”›¹çøh†PÊýÜs|4;(å–î9>š”rW÷Í J¹±{Žf¥ÜÛ=ÇG³Rnïžã£™@)wxÏñÑ, ”›¼çøhPÊ}Þs|tõ_Ê­Þs||å/w{ÏññU¿Üì=ÇÇWür¯÷_íË­Þs||¥/wzgnüã/>¹÷'ÖûrÃ7ö_õËmÛØO|í/woc?ñ @nâÆ~ây€ÜËýij¹#û‰¾o)åÆlì'ž[ÈýÙØO<ÃÛ´±Ÿxž!wkc?ñlCî¹Æ~âƒÜ·ŒýÄ×ìrû2ö_¹Ë]ÌØO|ý.73c?ñU¼ÜÓŒýÄ×òrs3ö_ÑË]ÎØO|]/÷+Ïý¤®îå¶eä%¾Æ—»—‘—øJ¿,ã^âë}¹y‰¯úåŽhä%¾ö—£‘—x ÷G#/ñ<@n“F^âÙ€Ü-¼Äs¹iy‰grï4òÏäjä%ž%ÈÔÈKpGöóoUà–ìç_­À=ÙÏ¿_›²ŸÉwe?ÿ¦nË~þu Ü—ýü;¸1ûù/pg¶tí9+áÖìç_âÀ½ÙϿɛ³Ÿwg?ÿNnÏ~þÅÜ¡ýüÛ¸IûùWyâóOþä© ÌS<”'/0Oñ4Pž¾À<ÅsAyóOå) ÌS<+”'10OñÔPžÆÀ<ÅóCy"óOå© ÌSâ »<)ôÏÑå¹H¡xZ.E }Ä3qy"Rè#ž|ËãBñ|[ž…úˆ§Øò ¤ÐG<«–§ …>≴<)ôÏåùG¡xº,? }Ä3dyòQè#ž˃Bñ;¼àC4”‡û<^‚ËA„¿$>-jWÐ$!üñ)×Û#¼d ü ñ)O›&)é@LRòDŸÇ-±Ó%ˆ)Jžçó¸6X–ç­˜ äQ>;`ZLOòŸÇý†Á 4oÅä$ðyÜ5û55Ibj’øÒ]yŽp’–êʃp„“„dW€#<$¤»òèÙ_Oxå¡7ÂCjÊ+ϼn’^yÚð’öʃnIS_yØð•–úÊ“nä%$¿òá"5ý•gÜÈñIH€åñ6ÂEJ ,O¶‘W‘ËCm¾¦¤ÁòD››“ÄDXžc3+§¥Âò›™‹¤dX^3oFMJ‡å¹5ó‚vJB\Ë#kf.SâZžW3o½JHŠkyRÍü2âiq-¨™÷õ¥$Ƶ/ ÈóSÀ.ׄú€<4%ôòL‘@ž˜¶Ê&U äA)@X åy: Ø›X3Ç¢€K(ȳPB/)Õy ¸–„‚<õ‘9¥Ž ;yôó·äi'Ÿ¬(ÈsN]=UVç›<:zª¶ Ï5™=®ôƒ<ÍäÑÍUy†Éìj’K ±ƒKž+7ÄÎ-yªä;µä¹²CìÐ’çJ±3Kž-?Ä-yª;²ä™2Dì¼’çJ±ãJž*GÄ+y®$;«ä¹²D쨒'J±cJž(OÄŽ(y¢D;žäÙ2Eì|’'J±³Iž)WÄ&ù›J±ãIž+[ÄN'y¦t;šäÙòEìl’gJ±ƒIž)cÄN%y¦”;’ä¹rFìD’Ä’†<‰Dºy¦¬!O$Á¾’Jò`ì*­¼!(Á¾ÒJò ì+µÌ!,ÁÞ’Jòära åy~ ö”Vòç˜`_Ieyœ v•VúÇš`_iåy¼ ö•P‘gœ`G eyÐ v”P ‘§`G©åyî ö–P‘‡Ÿ`G)ey öôLiDˆ‚=¦•GäÁ(Dˆ %y< ö”Z&‘¥L(•ÈãR°§”r‰<4…\SBÉDÂHŸR6‘G¨H_[éDª"½>Y>‘'¬HwO•Päa+ÒÙSeyîJðøÒK)òéê‰rŠ<‰%¸ªä’Š<‘%vŠ|ReEÒ;I>¥À"m‰„žTg‘'¹Ä”O*·ÈÃ]b‡Ê'V]ä‰/±c€SŠ/ò ˜Ø¥&Ô`ä¡0±3©“J1òœ˜Øó)yrLìTø¤ÂŒ^¦‘çÍÄŽ‡Wkäù3±c´ãEyMìÄùÄÚ<¤&vî|¼„#­‰ŸPÉ‘§Ø¤ˆ(µ #Ï·‰BŸTבGÞÄ.8¡¼#ÏÀ‰EŸXå‘gâÄÆ?¡ØcŸ‹¢)5û\M)ýÈS|¢zJ©És}ˆÓÄB<ãG?˜>©$ÏüѧO) É#€ô3Ö“ªCò@ ýŒú¤"‘±V$O ÒO N)ÉC„ôËL¨É3…ô㯓 HòŒ!ýØú”:’©œ$O!Ò›Oª*Ƀ‰ô#çãÅ%yP‘~æ|¼Æ$Ï,ÒO뎗šäFú!ö‰'y®‘~”}¼ð$O7ÒŸO¨?ɳŽô_ x¢ %Ï@ÒϵOªFÉ‘tq'¥ä Iúéö‰µ)yj’>ä %*yŠ’ê0¥R%ÏTÒ¯0¡`%ZŠH'¥n%^".ÿ¶ò•<—‰8²Š%k"^Ÿ*fÉó›ˆÏ§jZò@'öhÓK[òˆ'âñ‰ —<õ‰]cr¡ žu/ì¬q½¨S˜rÔÝ…¼1kÁÓ˜ðú<¬˜Žû×ÝÿðþÎÝ——üåuúçÁj…›|ìw¸È^§¾]Àƒ™&çtæuúçÁêy»¹X=ºŽüuúçÁ êw›œôûËø(^§| V·›õOtåëôσÔç6ù8­Õëôσ ÔãvsáàÐIý:ýóàõÚNNüúmuN–¯Ó?NP«íäd·†i^§|IwûK»ñœÎÇ‹{–°òø&ä,™¹6î+™Âm‚¯t.»¸·tRw Î’ÙíãÎ’iÞ'øJæ»< yK'¾< yKV€’–=Ë{y ö—L~yq—ªy6v—*yLñ–¬yTö—.yjö—¬ y‚Õ÷þOêAža%¥*Ad%ý¤j@žføIg?ýÕŒgyO<ãYÆÓßÐx’ëô—4žf9ýE§ùMYã9f/_^^Oë·ÝÇq}^ïÞ+»ëþè×§ób½ëü¯×Ó¿]“×ñÿ=`²ãÖG·ñ*ÊÔå Bò²ÿ9¾ÏW0EˆY ÿ¦_[‚ìî-rC•öè­ß °ÖŸŸ]’ï<¯.ÛvqàǸ“F½ð£]Ÿ|·xß Kä'.¬êb×Ã0õch«B¯cÅ .ºØì?¼‹<÷«‚õêWo×]GŸUùZ œ©ú¼A•±Î€VCü|ÈOÄpèJ¿ èùÁà Rœ‡$¸9ºˆ øð^Ü~÷ç~ˆ¤ìJô Du™¸ ù‹>‹Ä¡&ÛL/uõèñåë¸?¨ E€¨"NXþÌQñ8¡XiÞ¿T¯½C y‡üp—êH×d~N™yâ‡2ˆ5œN«éìšÌ{ ´q’&Ö@^×)=:Ö@`W`dÄ€¶¾Oätq®K » EÙ=|±>–K ¾ ÁÕÉË]œ÷7~¨½j[ÒÞŽyüë­öð?G¬ßƒ˜'½èU¾.Öð÷dûÐÕ’àÈ÷¡Ã%Áš$¯W -–I¯>ÆoU-K½Þ÷è$’¨/™¶ÿW¬Ì7=ŽE·ÿ !jÉŠzÈá‡è뛆•õ€§aÒùÉî¥aõ¼G?ûóêZ ÑÞ˜5¬ˆwsÄV/ «Ø=¶5Å|  zY ¢ÁuŽŠá@X˜4²—7\JVÃÞÜ|p95ì]Á yÄþ¤Eô†à¾\(P:©'`Y ¸Aò9â€ê?ÙýlÌsÊǧ5þ„ƒØ›„evµ¼­3L× X þð lÒ{Hmвh…&gÕˆ`^Q]€˜0¹às²1Lêêצµuont? "Ð~,Ý[2\ge>­Zºò¿ƒ@jO–Ábzºßg/§ÞrlÍpuÈf ËÖ WTÊ\Ѳ põ  FËcB BÂuZ#i@ˆCY<¸"µánYûÁ2¶(lY¢ðè#©Ù¶eK„c$GjÙºà TfŽD‚«F¢@½W >d±VθX[»Õf‹=‰ -ZŒO¸`³y‹ÊØÇš]*`×…1öâHm.ñ‘:Z(HuÔÿ87%=MGAêU°ppÓ"ŸN}‡¦é4b1Þñ A é"J™\¤{(¡ìX =ÞwìØ„?›\ÕQŽôq«XÖôX P Êûlèâ.`ýý¿B'4€uDó©×ÑQÑ'{ ªG·ÁdßQÙ/,Œv@úÌ ñÀ3p<áîÈ›3ä%²ÀèØk5Í•"ÛÕd‹ýñckÕÁHLyæ¹ÑªC¼²Ki7Tq¤æÅëý„%ôë¿vkû¶ß±÷?ÞQx‹Â‡KRÞy½L1{-uûL/ýz½Y9TnT¿ñ/xZO´öÒÓë{?î.~~çÚ\1žõüMÎR:¡)krŸÒ­½ëõ¤‰ Zô¸—`^¡¤/U=}Ç™ˆ§¯;ñ{dòéé Ïè÷‘Dæ¦bþ®¶$2‘ònIa¾HÐt¿q!4 ·@›Êz‚¤>1õúÎö”=B=Kc’Z£z&ô„žž ›ïÌ"ŽÒ¶xEßÖö,«™û‰.{¶øx|1wþØëmð=[tÜ´ó3ÁICOª˜]Êx^IÄ[h<ú‰¶ö7è8 yOW/)å¾t1z#Öl5AÚˆ.®ïøEО‡Fœn1¶—Íy} @nT#ˆ¹èߎötЯª€ÈUYѯj®æa!¶~÷úe9„ˆ\W‡0ú…ÍÕØ/§È ö _–8pb‚¨W%Ž˜8^ZõšÄ1£yäŠò _Ï\§Ë±Æ™Ž…%úçA|aôï™+äô×Åûß~ZÆèO †À¯ƒ¯àRùÆÈCl”ïŒ@-†úá_nÇ+CØ\Eý°úOy8ÀMG¿-rwž~_Ø#`䡈3¾žå¶›³?îì™Íê8Ra;L2ÛáÛnëÙa9}'É×Ñ8D8à‹áFœŸ:ˆ>€Bs0}}ÌE™rS}"ճδ§SkÎnmŽÓß“[ŸN{¶¸G!Ü} _}ØØÝ×g\Ÿ­#ËqÂÝK¿ÙïO¸±±‹™„ù}4ˆöˆÚgm}·¾l‰7÷¬7 ÝßäŒ-ÒÄYÜÝ`1n]Ü7º8ú8šNµÕ+F8쀻‰]ON¢Pà(ÏrŽ4OñË#!êÛ)ïÐhrž¾ÁÃ2í0£çÍ„ø#±*ð½+§Gñ‡N‚”æ)~yÑ€5$Þr¬„-äÑ@uu¡„€<Üþ¸¦v#јtó¡ÞJ4Ýœh7 @7ÇýyeòR±É£áÇ­üך »(¢¡gr¡=‘"u&Ê)¢á¦ÝÿRï#ZFê]DãËèA»‡h@ù½~ûmÕeJ%7êDÃÈ͉v3Ѩqðöý¤ÞK4lL.Ô[‰ÆÉ‡v'óÀ1L?ýæÁÁ—Ăٟ¸sO»›fJâ®{Ú]tG pŸ«Mõ–ûçýi÷,NHò½iqö@àô´²ïlt°=n§ÃúhõLWœ1 ¹QŸO‘ìfZ7$}ûöÃ~j.I0š;Ðä[’H4÷ ˆ·$a8`‹ý’„¡»‹ó~|{ †²’„¡À‡ú0È &p¢=²‚Á>è#!K˜»—¯—Q†u v¤>²”Áž”'T‘âˆ=¦Š¬kW ªÈ‡úÒVE;Ô™ö¼È²G÷E‰9ÁL“T‘¨HR¼©D#ÅöàHhŠy£.^J¬JT$ZÓs¤,Q‘€ú‰^ [¡§è<_‘Ø¥ºŠ_ d^•ÒDE‚×ú¹ÚDM‚Xè0vc5‰a¡§Çǹ:ËtŸÑ+%AíÁëX# `ÅÇ/Z¨ãÁ+¡>PǃV¼@PÇCÕ5§&èxhФÓu<Åòé:…" u?ñŒºŽ‡ž„”ºŽGxN]ǃL4©®ã¡&žU/ãá%šV/a¾õàáÙ,s s°ˆC-ZÂl,â0:ÿ,ar†¼¦ÕÄyIþÔ»®ž÷¿é:âTÍ®—ÑZÒÔ¤ù×ÅÏzˆ^FkJsWª ¢µ¥¹/M ñâtèŠ-—ñ*õÕÙÊnú¯MÚ#‹×«wêc‹×®Ú£‹×°±;öøšxEûÖ|ôþ¯‰?Ç&^åæ~µÚDkß«Ëö ^Z´ø}õ ^D´ú}u¡ d-áB¿hñûêA½héûêB»h°ú¾ 57ÑPõ1DÑi¾ò1åáD£UèN}RÑúÓ[4h=¸ûJ†”»­Ðz·Ñ úÓî61hW~I²mZ¸ênÇ3(Ï̦¨/OÚãG†<¹¤‡†<¹€dž(Ëæ ˆÔÕŠF¡Û„´>_ úã~w^|ða‰†¤kdMv—Ÿ’Ý¥E©dw68éÛ4.¥;t©ôÿçd¯©‹¬›¿ñ'¢¡jÆÍS4Jͨ¢xj£AjÆÍSö$A4_Ñ(%¸¡ùŠÆ,D ÍatAu}d÷2ûÁžWZto£Q øÓb|sÀ¡2'¶ %«¹üz3þÕn:^ÈÂ>µëŒ—¶æ{¼Luæjã/èyê…V=Ç+aÊ5k/‰ÛxyL¹fÕs¼d6?³kÖÖm¼Ž=Ç;ÜÛxuM¹fm]¼ä¦\³ê9^áŸç¸ì\¼À]*ªs$¾†o·„SâŽ,÷@iîʨ;þUŸ ïæ ÉñP‡åÙ;yÔF%_ç‹ÓïKÔ9ùdŒ}¸PÝï“vòû˜nª!Ë=fgîãÑÅcí|íþ𴵨垌´O[õûdœMfÇ“Q6•]<ÆÎ“™˜àº'CkToY±ò(xý_ˆ³xH•¹‘â,Pa^¤xLx›zVÚ¤ÆPm¡Û¥†MmàR¢jiº‹‡ÅÉ‹Ûo[º™¾é£ ö`ã‘.V­íâÑì*ŽÓξ³§\“ å*â1êêBÛ>Q”.ÎÙyö-¥' ñ3ï$}|½v+y YÜqx–l+º¾H{Oß•è&š?¸›$¬û‹æÀÁå©>š‡—§ú‹š‡_!ôãúãÏ2˜ó”'LÌ{|áãñJ.êCG²ÈsQ½Çƒœþ\Tçñ—מ©›÷©©>èø[ŽÐ¡z…ñ•ÚÌã|ì”+í–jÔ±vÅ}ô%È×¾Ú«ã“~•Ñ7³Â™zeñþ6á-ýiÆ»ß4×êUÏCn÷¹³ÛµHܬÆßSæfqdQˆU&eqjѶ·lm%)úœ6{ü3h8’è pö»»& G¿±¿ØZM?t¿¬õx‚Á00û é)Ç !`|a Îúrâúãçô«!‹ózËn×CðÛÑvv€Ê´kÑTÜÉ׉w :éõ\–n}ôn\Á.ûÓúú/»ýÉß<ŸíÈWær™îrüu¹ãtN4óÖü-Þ¢×8þÓ·CD;}7w_ÚF ;þuCñ.‚WŸ†ˆGo·Ÿß>n_­»ðª‹ëÓ‹ÝB¯ºhPw ŽAb·ÁAœŠ40Ó_Yû^ƒa_'t0XŽaû÷ñçš®C}šÎqdöeh;ĆGbÜfRµD,ÚÍp#_ë[Øý lÂ+[õGô´øvQA4oßy "§ïÚ=®Ä(¸ ËÇðT¨¹—æ{JázO šÊÅQHß ~s9K%6Šsè›ýퟘ¢Å9HÜÁײ•ùÉSý<®¢˜³@‹WgOL÷&P'ó»¯@²ÔQÊrOéöÛt ÈZ^L¨[~ý¸þЮ®t·òþý´8\ú^ùÒa"Á_gt.î]ù"±·Ì,¾«a„(ÎsÜí„R†ì9rL„Lœ?äíñDMçú¾®œ"N%t…DæLqPÐr›/ù•³~{Ó sQÚõq˜•ö㿇3T FŒÿ¾¦!UíóõU·×WÕç‚Váóõ‰à¹ÆÚa¹t^ W:Ìm8ñ³â°žÂÿR²wÓ¼e‡¬°=@¿öePY?{€Æ&+e—k÷ÕšK+8k玈®ä‚3v¾¡Ú‚$8Vg„õGeÞNѹ#â×(«SßPõeåi„]¯Xσ³rî¸È˜äÜÑ;”Õù;òú“Ü %Ëî3TüKe]}ÿ´Ê`ʪù:æ¯V[mHŽshüÊ‘.…õò‘8ß×'Œ $É¥Ræ»Ç s*2Òä4ÍF®²DÚœú*B*³Y†ÎÑŸÆ(wÞ¿ù±ŠG±…ÄŽËœÎÀ¾ ´  Wû zõB¡H£Óžg:úÁI1#ækÊ$—Á!13¬¾œ§Ãœ÷»·Ë¸„^OúàjÑ[~§¡77ð8TÙ"ä ßÏÛPÑŽ¡~«ýz˜éõaP7r󈼷™<Œiïiaßìàê<­?©ƒ9pCÎ|œs Î{™;Hyâ”—³÷Š­ m£I¾8­eíw·K¥¨BCÅ¿´ÄpU⸕&þ…5·ë³×¿2º›åOKÓ–„S4ô\»»ñ4f*CbM#‚8éÄÿrÃ#PŸ›8k~µ¿lÆŸ9X b>Ö;²â–Ì`_um’ˆÓJ·E=8Ÿ&Æ‹ÃIfM&i2|í·²û¸ìÜ—Å~cÁŠóGÎûãi ;ÿø³['¹êä¶UŽž8bʼn#þñ”áú×äÅœGL3k»ï>ça|ŽãϪœ©€Äi#›õõ‡ÁÆî1~n¨§‹\A¿{;¯þÈbI† ŠÈ ÂRDA-E”á(¢"ˆŽ"j‚ÇÖ¯Ç7ïÄt.ÅÍÞ»¡Ö‰S<îàGA*è ¢+O÷ªZqDÇó±îÎDfâŽ;¤ó )Ø•]ßÑð0-ŽÒ¸¯Ú$ßUaÈ8ÌÃÒqý¶>“(*ŽÄ4·µ¯h)^i^ÆnŽóþ@¬Å¯AøíÚí7ƒ’±µ¨*–s­ìq˜”Vþ´>a{±?¼_ SûnݯýqÐ<± |ŽÊ)ªSPEI=¢JŠêTÅPwi&<²•:á©mÔ O†l¡Nx:o„IyBUYSdA.)rA6ÙDÙ …â-ÎÐŒBñfæ(§Þ¶üå<êbPN$ƒr&á®ê(£Rÿ2D£ñ­Õ­¾½ñã;ÇE?LºcD>ÚÃݯÇêÉqïëæŸÃèÕ¿dÈÅql|ë&'w\΋767ð 6ùpö°>'¬^Žã/ã2l®~ñ;AÚ7n¦ÛmýæLà%úÒÿ}{PÃ2ø¸OÞ›~)û¨ÛÍ~F¯ Vo{:‚[*ßzœ¾u˜Ò†™Ù¿-ì®K»•:¼]¥8Ù“Ë7Æ]>]0›ö/-º$º ÐmŸNkä:\"üzgãï¹?ò¸oHAûùÓXï†á=ZØìÏ#QÇUMÔI/¨>%iã+›4{IÐ%É „›²úõiÅIíFuÍÂÑÁfÃ…(ž`px÷uøüc2Ÿx!0`Ìe—à†Œãü™¦Þ ç‘âÏ>dRî±0Á áx§Ì"_ëÉÁ@ýý»OFŒ!û'.F‘ð'ù‚‘Ä=áÀ#§X 0¹ÝÛ®»?¦üuøú³òíRwó´ÈÚÝÓn eO»Ä==íröüœÿ2¬â¦BÔ¸ü{ÛØ·ýfX º/ö÷e\ÿ™<\ØLŶ—÷OlTðOßyœ«àÛ' ¾Pñݾ=ît©¢?ýé¬=µJEÿ^­ú³vïKï·›?­oTøú÷Jûn«ƒwëñWcNZ݉‚tú°ýé?5x§Âßí»6è^oþ¼të?µ»îUüöó4üwŸéBÝÙÓJ¹õL—ê~§6Ó•zØ¿ïÿÔ¾Z×êyž4´®ÔÓfÿS´LWêùçqÝip]ª—wí©Õ*¶î[Cë"_ù£ÖvZ•øéÓK˜[ך>3]b§•vÙº¼>Õftm `åª.­Ïa’VÀº8>µ‹Ž(ãº,ø¼œ:½?eÝ뱎令‹Ð™Þ®ß"øÈ|v»’¸}jëךh†¿*fw²Žu¯q/àõ «µ¹.¿þîÿþ׿ÿÓüýâ¥@s'YÌIë—Lx11/?‘#¼ä1/o+ä&nŠ˜›y)„—2æe¼”ÂKóòÞR%ÜÔQ7ÈK-¼,£·œ,…“&æäÑÎ /6æÅo€—Vxi£^¶À‹^\ÌË8ñÂIsr@#Ô />zCÇÐK!5ÝG½œ€¡é"^ÎàŽ ¡é"_.À‰Pt /¾^„¢‹hxYæBÑE4ºœOè¹EÑðâP`(„¤‹h|9Á›¢.¢ñ庖 ýAуî©N¢æ]Šd0Ýï0hÚjÙ?Ñsr«ðŒ;é(fÚO¿Ù/§ÓÚîþ¸¼í°.°;”Kɦhôù<øR² }Z{<ë½¼Ûh úÞz³".–ÑXt°›½[¡©ÇI_ÃÒù޽´·÷}³‚Ö£—D«¦ÒD}Ì–MÿˆMeuò3t"âkYDÌMÿˆ–LeõÒ…ND|Hs²ˆðZÖQ'¿Áý= ÌŽz ˆØZ6ñû |I•6êã=d›X,•mÔÉlµôh­Tº¨“}àCÄÔ²‹ú8„UêÏÇïæ$ÈÅIÙG\‚ôÕKüBúÀ‰ }&«`€åš¢Š‡“ù¢âÑ’¢ŠÇJG®(ªx@9;¼¯âe5ù1ö¾ý«x\«“Dk“*Y†H9½Ê¸ÆžÒc#HXÅ£L”þhB¯â±§ #X)y>ˆ¦¥PlO³no’:r~ס$ÅÊáˆ.‡ÆA½½ÿ¶î}ü¯áj­”C]}/;ß´†×Û ÏËÇZŸðlVÂÉ^†?×ö}|?¸X·ºøÅj;5µLz‹šF`žO i"ÈÝ™!óØw2`®°Œ]+Và/¬cßøÎËÒ1`nÐF€”mø›]ìéЛ좬£Wë#P:"}Ø`Såî“!c²Ü2&ËŸ SåîÌÈžÅtÉ‘1aö &}>1aþÅ€1]Ò±ŒérG¿2&ÌÆ„ù‹^lT™ô;cÊìXüÉbÂÜ(4&Í•]a¤‰Î˜ì;ML›ôjML›o Óæ‘ÑÝĤÉp1aZŒ sMp1]^.&Ë=ÁÅT¹gÀ˜(=ÁÅ4é0&ÉŒË)ÃÏûÿ£å«Éœ2üŠÜ*HÊð+òOI)~EþT”âW$kšå”äW䛂¤,¿";Iy>¦°ã ‹ƒ?žö÷¤QÀ)Ýïðó¸7Ÿ )éïè¯íiÄ%ÿÝÝ­‡\†À©îð[Ãw{´ßo…„ª‡«“_Ãÿ'H:E>7{ýùÑë¶K¿ûÎç. *ªëF¾ÅoÜ¿îþç„|¹þ󦺚ÀuîØìúÏ–*kž?¾¿×\ÿyÀRmݰãÏ ßÑùõŸ4Õׄî÷—ã\\ÿyS‰ÝÀëŸßß\^ÿyS•MàÓú×[]ÿyÀRݰþ§ßÝÑõõŸ4•Ù„ž6°~¡—×ÐTfz·~èæúϘ¯†öoû·£ÝŽiß8æt=4•ÔÙ#ØkêMóòzÞŸ÷‘•¥i²™YËÌÌÌŒ$ô¦Égf$2M13#yšiÊ™YL™¦š™‘ʈiꙩ˜f97£ßÚÌìH’j;3s¤¢ašvfG–ó¦q3³fÖÍÌþdf~fF¯­Ÿ™‘¥©±sÆ‘E³±sÆá壱sÂMçÉ}Rë9ïÖxmil2ó9ÿ˜Õœ~xÑgl ¿šYÏIèñÒÕØ;eæs.2«9-»D¿›šÏɸq#äuâ?®O·Óyx#²q/¯vçVßž‰k—ICbg„ ‰.†¤Äe\! YXt¥0d±ÇUÂ… W ÃÓ¸[ K&_×CH‡Ç!¾›¶ÂÍ.ÎICz7°$e'ã¼0dqÜõÒ}w'É¢o'Iª«¦“”da¿“”$µAÓIJ²)¸“”$A£“Œ´$Zv’‘l6é$!Ù¼ÞIB¾Ó‘‘Œ¤†’‘$¨u’dzê$骢“|dQÒq³a7ã%YAÝxIÈ3/¹3Th))i-5•¤ä–’•kj)y9&ÂÐPòÒ3CÉËᆈe)Y˜ö’˜úí’™Ÿk\5þÎÍq]œ§ãÞñ$ê;i»ãï&÷3ë÷½fÛK[Ís§j<ù6}67V’mÓ›¹­’\›>¶Z2múbn­%Ϧ/…±’,›¾š+ɱéka«%æ_έÕä×ôÍÜZKvMïÝÛe7uqœþÇ`ëÏó±.†irgßÛË®³Çµ>½ÃT‰ŒÄÚ@ë ±Î¡õ'±. 5‰?Å0sŠaEƸ4P 3)²n‰õZïØm6ÐÇšb˜X5ž ‹arEÆ'bí õ0£b󚟉µ‡Öì.{d'èÂCz_±†ü¾›ôßxŒÈ` ù=D)l ù×?…‡ìö;„¬ß§3I“qáûqºœ/+:ýœôñI¼è3€Pfò¢7 LçEŸ#€6§} ÚÄ^ô%B(³{ÑW¡LñE_#€6Ïý@ÔɾèÑfür˜Ç÷›aÈìFŸÃËa—†XËå0KK2¿–Ãä-M8²•ÃÌ-MÙ•–%ž&ËaÆ–xj/‡ÉZâà^µ´ÄSz9ÌÑÒÏ\å0?KKºÊar––ømt9LÌÂÏ÷å0%KCfËa:––x…WSqà“8õ?×äÉû€ k<}”> (^”> '™¥K°óBÖ8¥èyÁKÄÒô¼_é‚’Bé‚âÕAé~z¼È+}ÀOO˜ì~z¼¤*}ÀO¶.)}ÀP²&)ý7Coó4 KßÏmÕÙ¶ì_æÖ«}×íw„ý7SãslÙa­Ì¯eŸ cen-ûBkójÙ—Â\›S˾’ÖÊ|Zöµ°VæÒ²_Jcm-ûF˜«shÙ[a®ÎŸý7MlÛýÏõtæå5u§ìúÚÙôj½?Œmæ_}«).ÕCXƒæ8dÕClƒæ8º×C„Ãî¦Àö¤Yª‚¶'æ6Ç3}=IJÐüír´o#Š”Ùë!°¡/ù`ÈbszË-±'濇-½&¯Ø•õˆy7Ô_ì«zÄ¿;ˆ~¢á7Š€o –^bäD¯ñò†z§_…ØyѯªU)Ì~£×‡ˆ}ÑëCüþF"ù ÔÓësˆ^Ÿ"ý*E öUË——×í¸Íiñ¾~·ï—õ7tûò’ ŸN°£„e ÌÜ_Î0£ÀòÅû…Àr«ÊÅû×͸‚ãšG`%‡ÕÕâý+ pÇËG`5…eu3<ö0—ÊÃ,lèVÞßÔ0«ÀªÅº–ßœ`tèÇeËŃu lx&tè¼2tÃCa°ž]3|Ý…ŒAÆU—ùpw §È®Ê?NÑ]Ñ 82è^–82 ™"¼—z±ýJSœ¢¼—åbkNQÞK3‡ŽKï¥pžáé ã¾Ý3×^V¸ ½A®¾l9Þ ½R®¿—ìeÑ2Âpù½dÙ½Ã(€qù½dfÑ’ ‘qõeåp‘,Hd\~/M}=·ÁŒ¢¾ajY0\}Y¾p¦ˆ/ËdŒ2ç ‘Œ €Q„—• òü —]Vå öø W]öò²`(eº&súð¹ä²¢^0”"¸¼^°8k¹åÙ‚…/£LvyÉaÊ\7,SXL0Ê\W/,"eªËš!‹'0EkæåÞ…&a¹²¾4ÙâD™+R«ÌâÄ(™s­eYµ81˜6Ï 0FÊ\‘Û°t;1˜¢·føº5{˜Ê4gÊņ ]®ÌrÃlþM™äL½Ø°¡SÖ—Ëb±¡C§,0ë|À˜2Á Sê†"ºrø:Ó˜/_¿âA°šòªEdžOQ^Vß{s%¬P”7¬ ;2|…²ÄV¾BQÞòeѱq(é-³G`ŠòŒYœÉ³,”¦Éï}¼L^±8³g©¯ÉÆ_%8Eyey=¬”ÉnHÏtåUÍ€#0Eyf¹ø“ ²´4ͽ÷8€)KËüeñ'miY/þ¤C dvâíO+•¥e5\%‚RK솯c0Etu9E#ŠU˜Ãç“ _©/7÷¾þ¦/ÏŸdøJm‰Ù,>Ùð•Šò†hôÉ`Ú"sx&tøå™G`Šðòbѳ!P„7,3{6Šð†ENφ@Þ°Ììé(³ÝÀÍžÁá DéÙTÊt·.“Á”…æBö¬øV)Ê{Ɇ1 «ïJS]=¾x#8MvËÅŽ~Ÿ¦»f±c•‘JÞ°èØ±ì¢Ò²»áûXe¤R”WW‹‘B¥,6Á®Øèiå”áÛˆ*ExÅËbŤP)ÊÖû+S”W˜ñGiN™óÆËd0e¹ÌÇ»#ƒP+“Þ°®“<ÏZ™õ†5øŠ‰¡VÄ7¬VL µ"¾e= ;Ã)â+‡`b¨µ•;âa—ʲ“ôþþɃÝeXÉŽ? ïw'º¿iÙIš*^²=À¯.»îè;͇$~x «ýådwª)t#IŽä´Äî(É™œ«gÛñw)öÊ#n^^^m·±Û…³‡õùq¯èºÝü×\׃½1,ðÎÚ±…àò g0ncíŠ –cØv½Æ°r‚6®‡¨š@%Ö»! ¯?ÇW \Oà ƒ´œ@5¹LòUÍ„ZbÔßœ@ á/j'ŒÅ˜‘›@-artÆaÌbü„éWøêú å1Š nþ2¡zŒú·KTvEeDa×÷†5 ,#{·P–ù$¯ŒÈë>Œ|WFÄu˜IYQÖŸDù¤­ŒhË­ /òITâ|UFDõ—%OpRUFTõ†¿kRUFTµ#Ï}ÒUFtuÆ~ÒUFtµ#cRVF”õƒ&ieDZïä«&ieDZ×Ü>D“´2"­ßã™5IËi] ,5IËið}“´Ì—´æ¿ y&ÿyšfÕéÏiêÈÛLB³ÛŸÓô Ód"ÍíÏiÈi¾ ‘ùíÏiÈqÊ qÅíÏi¸ÇY3Ä—·??¦ÉàWÝþü˜¦Ct½ø ëÛŸÓ”€Gx£ËÛŸÓ´pðëšÛŸÓÄ`=ü:{ûócšR§½ýù1ͶG0wûócš YWð2»ÛŸÓ €dÜýíÏišÀëœûÛŸÓL €×i5f/·??¦É¯3kÌn~L&ºGôl2sûócš4î‚`ùíÏiÒ°?±†³âöçÇ4qäu– åíÏiò@8úYuûócš=nškCd}ûócšBò ~ãòöçÇ4‰¢ÑǃÑÜþü˜&R<ÃѰ·??¦©}!~6ííÏi:ÀŸçn~L*¢)þÂîöçÇ4§¢GÚ")fþöçÇ4­àuýíÏifE—z@áÆ¼Üþü˜&W4iÀ{4ÙíÏø%Åq^<üà;š¥)¾Døsÿá7i/¾ùíz7ѱµÇwñ%¼•Ýþ¶ŠÝ}™9dçûÝ_¿T©€šùåøçÐ_BÛ]ÞÏ×K«‘Õ—¬vö4<Úß7}=ÈNTùšò‹kòLšcp&MSf3Ûû‰4ÇàDš¦43Óûy4Çà<š¦Ìç¦ß§ÑƒÓhš²˜ŸEs ΢iÊrn{?‰æœDÓ”ÕÌö~Í18‡¦)ë¹é÷)4Çàš¦\ÎŒΠ9gÐ4e33þ>æœ@Ó”_Ai½[Ÿ×Ã"ØÿrÃ}î(ê6e/`]üIǸ:{]ïºñH…õ§ýë«4u¯Ûëy Ù#À À½<Ì# ‡€ï:ðÉ!‚|×'Dñˆ(!â^žå#¢Bˆ{xT€¾ëÀ¤~„,ä¡ux ¦˜a<Ê~Ž)g˜ž æS=b–/t<ç¨z†‚z¹é ´œ fÆAƒšêf<³ûV…žï õ3hAÍ …tU+çs0ÔÔ¨[„-æX(¯QÁ[αPgÃð#h5‡B½]Y€Àõ ¥w%/ç`¨Â‘Û̱PŒ×“âoo&9f`(Ê‘lªsâ‚ç…zeBst%{åB— ¥;²+†žx‚ീC1OLAð¥€CA_¹‚Ð@cM“+Ù2CCQO³eÌÌTö4sPÎÌ@y_gÊšjü:£PÞÌðPæ×Ù…Rg†‡J¿Í4”=3PïÓ¬Cù3s5?Í@”B3P÷û¾ ¸3ƒA½0» 8ó´s©ˆi«}›… ·Çý1ÄÍ‘PÞW$ºÐ9jûpôýú—ï´µ´…²¾#•Eµ…’þFj«k }ÇjËl ¥ü UÖÛŠøUÞÊ÷©­À-”î«.Å-”í«­Éí\¯‡u~µßtþ8ý4¤ÇÔ9;×g´îš¸Sú_{<û9ƒÿßÙ¨x^ÙM?GÎhÔcä4Ÿß¾ø4#Òì›Û¹J—ûÊôú#Ám¶P v3|˵d¢h¥… ý†*bi¡@ ‰3a;—ë·ƒ¤èÔ½d¯ûóy¿µ»Ôd»{1Âo¶{É D ÝKAJ,è^J‚áA {©0†«¿{© D‘}÷²Ä MïÝKƒAŠÐ»Kž6O¿»—– ª–€w/Ž ¬–‚w/Z% ï^<\% ï^z:¼<ÃG˜§â]Fô¤'ã]F4¥§ã]Ft•’wÑWJJÞeDhiIy—Í%¥å]Fä—”˜wÑaJjÞeDiÉy—i¦¥ç]FTš” wkZŠÞeD´iIz—õ¦¦é]F„œ˜¨w†H:1Uï ‘vZ²Þ"ñÔt½3Dì© {gˆàSöÎ0ͧ-U:CDŸž¶w†(?=qï ‘rêÞ’“÷Î0œ¾w†D‚'øÎxžÂw†Ä„ô$¾32. kÖ£=.ÌJ:#ÃÀ÷’7¾Íe ÁÚ’4—! €k‹Ó\F€­,Ss)ÿ­,Xs)ý¬-]s©ü®.bs)ü®-gs©ùpÌ”…m.å‡,¾æÈ¥èÑã¯r©|ÄÞ”é4—=•¤°œË0ž«w¹Ôÿ ;†³y)îÿ} ¥wm;ä®[{^ùñU²ßdãûiƒÐú»ÿõoÿúŸ¿x©†Èÿü¸Ÿ€Û¯Ÿša—k öOÿõ³3°à‚;»Ø^`Kˆýøúõ¬Gl!/º‚ØßökËØ#x5sp Á+‹žV'°Kˆ=#l.G©ØO4J…X ±×®»› l ± ¸(ÖAì²£(¸ƒàÝ~F©¨ØCðÉ{4Äò–{¬&HfŽÍ°{8L™Àb!ž¾~¹nö½âieXˆÁ!”ΰèšsy;æ~Ò‚ Vñ†Aê «xøWn«øËØ 0‘ñ ®a4cwp«3¬ãß0~ˆ —a¿­0­åÃÆJîöç?ð\QÉdžýå »•‚…ýåêÌJÎb}ù€š©Äüc°V¿Z³’&Oƒ5ûå#m5X€_N  1·¬†»”¹Í`^ùHš§ æ÷—¤ùÊ`žùHš· fû—´ùË`º9I›Ç ¦û—“´ùÌ`¾9Iš×r<¯}ùHšßr]3Ió\®k&i¾ËuÉ$Î]9ž»¾¼$Ía9žÃî>’æ²\WoÚœ–ëòMšžr]z‰SMGøl×ß%Å?’›¤xVàrs‘Î üÚóþx R‹õy5†õé_Îöüáýæõ4žù²Ÿ\=8Ä*¼;¼»gAä¢{Ö¶võçøÃçõÆ/¼=Ì®›úDCûlnÚ_Î+`æ€ù‚|n¿Û#_PÌ㡽ÝÑŽ¿ëCåðv„Tâ&Vë³@ê9dìÜÛ÷ ·²c/߸Վà–sÜØ¸˜„kîº içÈkçf°À±å? è‰Ö¿ÒpÀ]›ü“^ÐüÚÝŸ„ì׉™½@´vüù ÊàèG@† }–ãq  <èT G<ªÈpG`5ël‰:‚j°Ì×G·ñd±ÆuPË®ÃQ·Žêˆ´u”ǺÖA=µ 3râº+Z‡eDÎ:J(ì°¹l™©PÕþèVk6w!¦‰kÌXhÈ­ŽŸ'»'~~5RB‡ãz÷ÆŒ…pN—íök{h,äb/çË–M†F¨d˜ÎÏܳPÇŸûwnÛÊèÞ‰é°ÚìöÛõn?Y®öÇõïýnùNCÑ'ï5}ò=Eþä &¯+Š=ù‚ëËð'_p}þä ®/ß|Áõeø“/¸¾ ò×W®ëžcس®_8†=ë:#e©Ycù¨ ÍšéGYfÖL?Ê"³fúQ–˜5Ó²À¬™~”åeÍô£,.k¦eiY3ý( ËšéGYVÖL?Ê¢²fúQ–”5Ó² ¬™~”åä’éGYL.™~”¥ä’éGYH.™~”eä’éGYD.™~”%ä’éGY@.™~”åã’éGY<.™~”¥ã’éGY8.™~”eã’éGY4.™~”%ã’éGY0.™~”åbÃô£,¦e©Ø0ý( ņéGY&Ú—×ÃÆ~Ž¿#êì±Ó–‡6››Zw­jŸ¶£Emkæ˜Û[“ Ì×KUÌQ_ï tP)@·W:¨šƒno tL-0_/ tÔrŽº¿ÐQÍõõúAYñÐS.¯cþ¸¹9è}—vSÝö×ŧ\¡_6þ[ Ôbž¯¼=ž)ó\Ç0žë(ÂsDx®ƒ0Ïu 㹎b<×Q„ç:ó\Çžë ÊsÆx®£ÏuP?M-Ú{0‡uÑ­ív?þv5AaeÄPL1QG Fôƒa…ÄPL#1SI Gtƒa¥ÄPD+1UK ÈôÃÅÄ`B3íf¼?M5VÛ\Zö%–Œ azQAD,*†(EÅ`™¨¦Ä¢‚ˆ:T –† !ºP1T*Š)B9¨¡…©aQÓ‚‘„Ûo˜©ÍùxÙþ`™œ—йZ³ÎK±\­Yöæ dÍò6_"k–±ù Y³\Í×ȺfÖKd½dÖ ²n˜µÀ4:,9÷-4§£é 9ΚÓñôМhÍÙˆö/М iiÎÆ´‡<ÏØ öèÕ2ݰQí!Õ Õñûïß ]ô—͸z˜õ»×¿ûÿö/ÿþcSûKþ2üǸ àñ7EÙ£·ßn-G»m^ï¿Eª€³øñ7JpþzÿuRlnàÇ_-ÀÅëÃï•*ðüüÓ^¾~ÿ‚©‚.nèÇ_6ÐÕë÷oš*èò†~ü­Ó]¿ÞåTW7ð㯟àåëÃïž*ðúü=ÔÞ¼>üª_Þà¿:Àíë÷o£*èæ†~üÍÔÝèÝ[kÏ·¶Íq«íîôÇÉ×ýìp¿É>c›»ãwþÍž¯ÿorÔ½~á®´¿îµ8mìiÅtæï»;¯ÝfïÞ?Ö'¿°Çãþƒú;¨Ûo6v<ùm7}Ùþ§?nìzª jß<Äÿƒ=ú±[ô´þ}Ý1~^ãnë±òöƒÏvBoÁŒCX\¥×ŸYŠÏ–ú4ȧIñé¨ÏùÌS|vÔg|)>=õY"ŸeŠÏžú¬Ï*ÅçõY#ŸuŠÏõ¹D>—)>×Ôgƒ|6)>ÿ¤>-òiS|¾SŸ-òÙ¦øÜPŸùt)>·Ôg‡|v)>wÔ§G>}ŠÏ=õÙ#Ÿ}ŠÏóY¾Ÿ&)~þE}¢øi’âç‘úDñÓ$ÅÏõ‰â§IŠŸgêÅO“?/Ô'ŠŸ&)~þ¤>Qü4IñóƒúDñÓ$ÅÏ_Ô'ŠŸ&)~~RŸ(~š¤øù›úDñÓØ×óþxÞ‹žÓʉF{–.þœNÕü%+&ªæã¾²¹ûö¾V¬]týðþãüó?ýýué \¹$WGàª4ÂÕ÷:Ñuð«¯Ë ú^+~üF_R_Ÿ± kÅýásãûaeÿ¹mY 'ˇÌqüÑÇøJðÿþÿþëþcºÌLøÈt-ò!Mntù#•çºùO;/tùäËKÝG|TÂG¥ûxC>já£Ö}¬¥ð±Ô}¬‘¡õ¼Ñ}ü‰|BçV÷ñŽ|´ÂG«ûØ Nøpº-òÑ îc‡|xáÃë>öÈG/|ôºðQ¾Ì}‘øñò!âG‰GäCÄ"?NȇˆE$~œ‘?ŠHü¸ "~‘øñùñ£ˆÄäCÄ"?~!"~‘øñ‰|ˆøQDâÇoäCÄâ;~¬Ðó+–è!~Œ-uô!NhÆ)Ñ$_|‡„¦*âëw 8 )^îÿ!/ò[úhj½.*äü:þ𫬓é‹Ïñ-Á›D¼#ø<ß|‘ˆ÷_&â{‚¯ño_'âW¿Lį ¾IÄÿIð6ÿNðm"~Cð.¿%ø.¿#xŸˆß|Ÿˆ?`|•ªÿ¿>UÿG‚OÕÿ‰àSõ&øTý_>Uÿ? >UÿŸªÿ_ŸªÿO‚OÕÿo‚·¯G»>³±»¾û¸ç´÷ÿëßÿé?îS²œ¸ªöìt ˜–+wU \ŽV™¾#©wõØ»'ßâT߯‚V—ñç!ûõÛåè‰uý Û´d_à³D<™·k“ˆ'óv'âɼ]‰x2o×e"žÌÛu•ˆ'óv]'âɼ]/ñdÞ®›D<™·k›ˆ'óvÝ&âɼ]»D<™·ë.OæíÚ'âɼ]÷‰x2o/SõOæíeªþɼ½LÕ?™·—©ú'óö2UÿdÞ^¦êŸÌÛËTý“y{™ª2o/SõOæíeªþɼ½´¯î¸?ÓèÇ ¬Éœ±š?ùm ô}b¶@Ë–Ì{K Ûr½ÍWmÑÁrhj¢ÍwÝÌ‘Ð×|—Åܽ‘30ú®{õãϳc£ïÂ̳֚ÍwÝjç —›ïºÔŽLwÍwÙiOf„滪tÚ“¨Ñ|W.‡i}å¹OGÝï[{dοKE?™ïïÂÐÔ/ÆžÈC-È»ýnøãÆSF‰õwhlac—÷]õ¹6›1³ï ÏÔ›Eììw÷Ú}vدw×þ;bž=ÜÑØ1³7÷äwçÏ?Æ[›@ÿÐ7!Ç9ÿdÁ~sòúcêÓÏÃß¾ˆ‚duõ´µ›ØÒ~ÓvEl¿i»êÈLh¿y»Zÿqô„^ö¡à9ÄÍñ×kˆá7UO+2ûØo®^Vìö¾yúsÏlÆ£ Oï‹ýñ]§è«×£DfÇzìÖîzñ‰¤¾ŽCI´õË8” oâPòT¼C‰4|‡’ŒÂ»8”DWßÅ¡$¦†(”¤¾CIöпġ$¶õYJæÄÞÄ¡$]èó8”Ì}‡’˜Ù—q(‰ˆ}‚^IjÐ'è•ÄÂ>A¯$ìõ z%¹@Ÿ W’ôÿÖ¾lÉQØöWøŽ`SèIBÂf—¡ªÝ¿pþÿýd \UØ^ÂuâFG÷Žm–!嬔ô†¼\¿!¯ÀaªßWà÷×oÈ+pùë7äõµ·‡_žì¹ÕIu*8÷—ç:’$Ì5ýó°H‡ßÆEÍêÂí/ýåy=; uâþyh?·Ÿ^½]ïW]ãèÛªþ»K×ÔsvmÕpþ“Åâ¹’Åý¸§ÐIuš?Ñq?îéÄGt’êyéÎý¸§“<ˆy.cIxÏ뾡8è€à›Äé¸÷tÒ£)£ç r?îédtŠÒ&OtÜ{:ùaâòEJØâ¨8%^ŒtÊ#ÆËîû{~2ÿ¸§£èäÑ}ãÏ:îÇ=}ÔŸ´|÷ãžNu4αx^ w?îé˜#:õ >t?îéØ#:œ x¢Ã?îéÔ‡ã£_Ìÿ¸£)œÔ}úÓøDý‰NnDü<ïæ¡/ŽNžFÏ¥kîÇ=äHN+õÌ?îÇ=#ý“õó8»÷tõH^È»Hûs¤²:z–w÷ãžÎ‘þÉâ2}ahʃéŸ,I_ÐIÒG:GúGØðyœÝ{:Gú‡š<³ûqOçHÿ”œ {¤S>¦ÇâøPÿ›=Ï;ÿ¸§s¤„ŸåÔý¸§s¨’úÙ~¹÷tõ¹V/æ=|°ïÉ‘þ)Lþ<ïîÇ=#ý“Åéów¹÷tõOY¼°_üãžÎ‘þÉUþÌ?îÇ=Cý#Ââ…Þ‹:Gú'ã[‡ŸÆ‡ÜÓ9Ô?ù ùr?îéêŸüÅw¹÷tŽôOž&Ïóî~ÜÓ9Ò?iœ?Û/÷ãžÎ‘þISýBÞùÇ=Cý½ð[Ü;:"Ä[ÐÀÇÏ;Ý6~ò¼Í!Ño_±ÓÁ»Wð“W¯ˆÿŠ|?yõŠä·¯Hu¾‚Ÿ¼z…øí+r>»êå+øÉ«W¤¿žîŸzq?Ýñ«]-±È~ý™ÉÁWГW¯È=±yÞ2»Î=yõŠâו¦à+øÉ‹W¤á÷ž;•@™ÕÍêôc3&­ËÛ˜F¯T•æçÖ‰}ð€³PŽýÒN˯)“ºƒzy/³è¼…ðø|:÷°AòªÁßÁÅkú‹êN¸QúªQ¥>!籺Uí׺Ñ3 ’u:ÝÐãXRk^R^®z$&R˜ÈõHžuSþ¬ÐEm Ÿó¹t#³%bWúžY5ħw<dÄDómªÔ`5f™À¹Îa[ºÉÎë«õÒ´|4|uÁuiFg$¤äõؘ“{¯û~TòS¹ô£ú€ß¡åGßVª7R%|_Ó^nDΗ‘|ÎÝ98µ½¶]Æ~°T=6œ9»k¢®–ÁpHê=zjÔµLó¨Ú½! åŠv¼ÁôM£à|G\óIlÑwÞõ¯$ŠiLÿº3WF;U¶›ßi”Ⱥ§9`×í.7÷÷œ­ûez§M*ݱ.o 3¢Þý’z.[õ»o(îoùÍX•r‡F0õ=an†kU!ô«á?lU½øÞÃFæÇ‚-+†cXÍœüÉãÈ* 8ãtîûùF^åÙŽ×þJ6‚b¹¬gH’[‹ôKœÈõÌ1ú ßMK»yÒï ¸0/‰Óm´=7ñã3€__ÈʵÌå›Àâ'pê nŽËŸÀ–•s/ãKbõMŽS§ Òñf›‰V’oÏ ôÆ'nŠ<÷d¯0-+gUÁnÔR/ãØÌñ?ÛiîÄ6œS°Ö´x\’XZ2•륽óWÙÒ3.‘ÆVYXƒùp|A{õBRY©j^ ‡m°Ãņ‚ïyi›=.xdÆñÆÓ4M=¸Ï1¡˜yì¡ãA‘ð¹ÑÍTá®jV+5±îi%úàL:Ÿ@xUÍ?Ø{G‘õ† ZÒWkð”iWéÔZŧ²‡„|«'i#E˜XÖ¤^ˆk| Dº·ÕíÂk,/Mç¹}:¡óºL籇Ãåâë‚BAÁZ4qt}b Î8A§b'Y]m í¡(W_Ï‹Q$Ù݉?öBÓØ\1âÕÑôÜȈ«æ AxáÚ^<'ú>…ƒ…fŽb1†Û瀀–&kPÍ»;L¬IŽC@~ŽUðø¤ ר²:7Wô %ùæœñøh¬‹?+;²‰44ï\!Eß·Á¤frÄЖ ûÄfYwuT éž’1Nnqt3°EìðY¨MJR¹ü¿Å®Ú×EKh¤ÊŒs  Œ[pµFÁþrÅ,¹8†+c}òYQ8ýv±7Ý»ãÛ¹ï,e°%¹P‹iúàÚà gì(–ŠÜøKãÛ6Ϭf6&MK½èztÎ|R’^d!§Órœ»î½ïúúX¥¹·3öw - 4…ëõH­!¨–Ê\›ibÖ˜^cBP2£÷ËDB&†Ö*’5Sðy¶)/ÑPŒÉGA³‰FW%ÎeãúÍ|òNAæÑ´ª”ÄŒdŒDäÅŠ—&:{…Ïs–ã}Q!IœH1ƒrÁG†ºÈ‹@R¦”[kãô 6BŠô¤›@ôœdËÖl œ¨ )H;’uvA¾x'QV~ðÊ_pRP£©Z2*¹H êW¶ä½])ÐÄ!µ&/°!w”:Ž:¤cÉ] ôŒu"9jÂ. &Ðé°àç™ðð…©ü)ˆEj¢Í†“.ïÈ­¦8Býõr°.äiipzZ—OŠ!•tÞC®Ñšf¹oaNWW_¯šÈ¢Â9.[Å a¾Û˜ žßhKN65˜ À}aÉ÷¸ º–Ó¥q(þ¯îaÌQ…ä¾L$(LÍ5 #ŠŒbqŽƒ:0nŽ‘1îúO7ÖP™U‰üœ×WÇ?O)®§hiòÚÏ*s~ÿù i.Öß<²X*R^ëzbÇQÕìúª¤Ï:‘Ï„#]úÙ\±“Tiù¹nÅl›Û„ª’§¾õ 1›û´àÚÏýÈ«èˆ/)Rß ”¦Š<¼ÑiÖ€Â?àCòRpKbçÁ‰llËŒGdoä;ùC±Ë<5t×ebr5éM”eÌfC}/Ž•ÙSäÐç¾ÈМò¿˜‘LÆLu^Eþ Áäò¾²OŽAGNõRyœtS+“GrX`ÊïBQ’$×¶ [«QÔ€£b ¿× é°Ÿìˆt’1Ûó ™(8DêÚXÙ97žÞ8(ùÒ…³2Í‚’L6”o}¢6œ›»ë646–}]»dèÍä;°ú‰‡g̬k%„êÞA§ÔßÉ”€çÞÑÀÙ\ªÅ­AX¾Ëù§~¿Ä2ÎÐ͵¥äÕ˜À‹qqð‡íÛÑðM36£Vo!zÎlÆ¡÷•þ½”Œ¬UEd%(Ðnþ©‹º©ÀŸ­°õ÷|VäÊC][‡ßSéFÛRô@jKA‡·¾¯¯Àù©>X¡¬D=F¼wèJØåj®ÉãÔ×ÙÖ»׃hÈ5§Z(@ëfŠÏ~zBÓyád'QÓ’]öÜ™’ÔŠì<9›0ªµ´×þ¿† á²Ã‘â¯ùß f¶‰Á|쟈/)ûŸ—«ÃÆ jj› ÔÔ6MQÓú°iöº©Cò%Šs; šEHÚd·E˜lhz©kÕ‚õ R#`–E˜RpØD˜ÉÖöŒD˜Ó·i‚8®è¯ð·—Ҍꄬ¸Ýé7 8R "$Ïð¬ðãŠ\Õ)¡áÇ(/+B+= ÖôíÀ’ .ëá—óN׳µ ¸QLLÑ‘;‡žsYj³#"âL1»¦hh£TÂÁ7Þ4ð!yb=ò‰ETHÛÚá Õ®ˆJÙ“}P…à͘C3ràÈ%Î¥É!„}¬¤§f]}Ò(e,"Kº×ÜxI#Õç›D~¯±ø`WŠ|ú±œ—w#N䙳¼Î1æ)G8±.¿x1©¬Ç¾›ÿÔkèsÜ ãõ ¤ø’Û"ˆ¸—^!Ÿ_ðå}ÐDLŽùØsÄ;Þ\ÎñJL¼B>ÍØ8Ã#/©o‡3î°Y•µ§Lð¥d^}ˆzÕ¹>LnzÕ ŠX¹zñ¦a½ „³˼ºBX™&bËøh¥›æò‚2V>^DÎÈ‹(˜Wý’ H¦ù`¤•üìÛÚ Ñ©ú©ðeQQ^ŒqÕÁê3‘ðUNŸÁ0’_‡ÔcR³j® V„ ú†ÒˆBDü=Œ%¬ú"‘ž¾s1Òc®†‹”l~/3]†õŒ«UU^Cçƒ4,rƒD¾µ4ýg÷Û¶ÅÖÖ]÷ò˶åÖvt™©_6Vl=8štP\f"„¾Ç‡ÈJö—c”‘óy¹ê‰GÚ‡³wœW²^î}œ|à”~#«ð0bçï>ŽIl¯ª›ðòˆHfuW ÅÁL_]f´6 RbÜ?.7™üϽ"ÍI[TŒ!R² ©Lä½§­5—¦N"U÷q¨Úž¯™B8-‡û²i%yF4ŠkEj¸8•ü‰ÔJ׉éÜÃWÔRÍçÖÎMåƒe¡<“@ýá5BW·…‘ÑýÓ'V½Èªg_œÂ¹4>Y"9KíU½ùPË4s=ëÔ´ç~Áñ»ÈR‡Þ“Õ#g?Ëå©á×<ðèa¹~:zLJH]›¾Y3m—)pd‚s¿f`ð¢F•äs ¯öM¸qp¢ÿn²‘ýVôÉ?d­²zýö5E©—®»nayè¶}mÍ cÆœk_Çé¾…Üw^(R êG˯^œ MpUHÚóäLn¿†S— Icå²’n ä™ ÐÓ\þL¶» á€ç…dé©°®ËËïŒ`B)H‘«oØ©×pQäZžÎ£Ç[ÅeÃÙ4ÒþGN£’æ¡ TÛÀ¸9·Ò=®<.x,j «MYpY`d[D²éx}­Ë1vâL&sjKb¬ÑLxš‹„Kl±°B¶ÍàÖŽ"•œHáb ¬r9ù¿Ä”Óôµ[ø•K–— ² WG6j^mïa4ÂÛØo¼½¹Ûx”5ÙÝiúq˜í3¤Zsôë¡mdä×4DaåÉ^9ᎠDQ»Ž€§ex¯£Br“úe¸—?ºB-%Ch ^eÂqŽsb½tÈ Žý…õµ•:Åî ðë2¹–¾’·o¬›¯¼°âg¥š'»-Jr«ÚÅú©©m£„¤åͶ-Eü^TÅÞÏ’e~vßWâ&JÞçñÑ·_CǸވU6 JÓ¨«;kù̯×Q$ÿŸ]ž©1ˆ…UÄI?N°Të¦<2·-Ø’$T,Ý.ï>U¡¸"ç i9µÖºˆÃO&%éhIc5cS<ð½!Žæ'ïñãÙ­÷lߪ •;¨”¬£Öý+=r ¹i­ýKΰ&g@­4Mß¿·ƒ7VôÖVçÀ[ª+‡‰¼ß`>Zy_?Ã[â„".ÜΘvòäï¥9doHtä¶ÆØ®ºñéäg…-ŽY>n®^W¾¨S'¼?Ú4³+ðB áÖŠ¹Xk•‘›õÈ:}À¿Ñì¡ ¯zä >SÂ󢯮ØÁ?q‘„Ð¥¤ñ½ë¥eødgƒk®y ‘þ}¾’“…AºÖ›?MžWÕ_‡ÛZ]±nëJÁ8Vy¥`Ù4¸;HhË¥|Ã@ÜРC%„®e?Ìë Lª"…ù˜¤âZíÚ9á¯Ù7|ƒøi›[b|$9•Xq[ m(—ç´4ƒ0ÝÇåbd8þP˜As.ög¼ª2j±c;ÎB½ÑF±ë¸vâ6­ žêGQ±¹žÎŒ<¸’ÌÉ׌ó¹ÄÝܶ,ªÚí„tVs\àÞ axA©!%·°æð"#2ý…Û`V¨î\˜X¶Öà¥_ÃÙÞÙ2)„_ˆmŠ6ƒ/)Ã[W†­Ðøˆg«dø ùæŸù0Åêçù ¥¤^“õð‚”T8˜š¢£+ïª3Ð R#×¶£ç¤ºì9†ë^ye•¯kmeÏ×N Ç6¤(í¯¿~IØHNŠ+Ø´sO‡¶% “´h¾Þ]—ê øÔò2NØ„Ëg×íáW{Ržªfa…ì—Y÷IòÑ)9¦’Oõñc2—ê‚#S›KûçÊa®×;±½‹lwÞv–Ì ¤XÊ;âQ¹ð$PºG§ «î‚Â}â[Ͻ`?Ë[u,¬~Ùr»‘Ï×°ZÅî·ÍÌ‹fïô““yÓ wp [;€r[Kš­ù–®ÏÉ©Zá2ÍVÖÇiu¼CÝã0ÒÍ»)›=;ŸDÈFÛU9= šj±™Y„LIÏ?ÁH Õ™ÜDuKNâ|gÍ&osu±=ßÐÁW*ŠºÜ6|ø *§À>\,†0|Û¤i¬«õE/èàlzmÖ NÃØÿg¹”á˜ùƵšsy¾—˜´ WZY…ÓiHús]Ó{dØ$b1­.Ÿ|rÚÏFäY0‹­ÿç$k=Sï€\ü#·9•Û©}ŽÝuš@¦aòã=?Zg¾üº÷û,˜e›ÿôRÉÉí>¿ccäSåi˜¹Õ¦÷ñ¹Ü Û6hœUmÛUÚÉ‘ëQ1YÊÃúLbʧ‹þ$Íó09'0—†jßh½Së»&.‰á´&œãê;§3´¨Ò* dÎúóµú}U§®©Ý)Ïô4´ÒøïÖ’YeýÚ¦sE¾…w#øÝÖÔ¥Q$=c÷Vô4Y­Ÿ"¤†Åli”º§¿e©(ûòô"—¼?ßÏÓQ±jÝ@/óŒts•\Dµ ã·69ôbÒHINü¾–÷E¶ÇÛ羉mÅoP#ïûëÔ¸g“îkiÜ.Ì]ØúF+ËF›exq–Ýö%VüSñ¿¬]k’£ºÞJ6ÐUá å_LÂ4 ¹º§gÿ ¹–Ÿ0éóãÔ™™H–%Y¶õ(H3y£Ìãµ÷yëÚYÅÓ•^Hƒ\áOÛ¹Al÷ûÚ]RÃ{Åèÿ1|4±¦Tú5|Z4ÊþîLàFâÛ”¸A¿ÇV“Õ7×nH«+à&®ç:;—#pSqÓ¾7ëó™ï<{nn<.D‰¬ù1þ5Nü ¨l~ù·¿¸¥ŒV»Í¥4yc9J© ¼ãó)w²˜©:•8Ý1ðºëÈ)UE]´wb¬oLôº&±öË{”S´öE%›´óÁí@Ái®xÐp®†ÇM oÀjßÂè®åd€¶¡,Ew{nÒ¦G¤¹†Â³L¹pûp²ÙWúÑÙàå‹oÙc*Ñçs÷ûÇý,5!Ö‹¿Œ…ìí-TÿY\ÛÔ$Ñ*¥ „vÄjxà•Uñ18ÂÚg@œï ›O˜K¾ì¬úÂá®´Ué‰OÜɆM¾ÿ 0°c7…@L,íîwº¾½Ág€à*:ìz4M /? úÀ«* Nc¡Q_ø=Ü—Z(¿ú7=£?ŸR¦à¸øÚÀ×ÚTAt­±?WyªaHmà+qQWm†Û+Õ·Iµ…È`˜`ঠþüs**Çþ hžû3cÆø¿3§ÀÜâ¼)‚©yÉÃû3xº²æáƒ)<í†ä¬/ºöP üž„…)ò=•èH¨úøp+¦dÔ˜ê0ö^85öu iMñEu¹t:¦,¿ -mäéŸoeõžžv÷²¿·ëJº˜ÿÒGàƸ•ŒU-¿>†Þà×C‘ÓEý»²ùAD‚¸ XÅÃï‡o™Š‹­˜èË ’fºÃÉL-5wq}ˆícae+‹C |) ¢|P‹ƒ…ZÊ% ¨È'.B)ñ²G‰“)Qý²úfjm×9ÏùïbÕ«áwS¶c2-(¹÷J.›‰[AB)¡æ!Ö@öÏrÿÜhÛGeÉúLBÍÜõÚî»$Ü' ›ô± ñ^6òȂĢ|•¦ Ǽ$x‚?§3\Iõ³:¨¿ÚMÉñ¬ÂW–R•½¯jïƒÞ³ËGa$ª00 ‘[ÏD|e&>*HôF¡÷‰oùs?¬å$²¸Éw‘“È"Ë'r¯Ç;>œ.q÷|8k߳ɟ ¨úåÚ÷ìÕ’]Ó¤S³XbΗšÃ•Ç%¯l¿*%掯Žw¤{ój Á^ù˜®?à2áî ¨¶Õ'íÎ|àg Cñ(äJŸf*¦2½w~Õ:LùJùƒ:Ò[Ùg.1ß§J¦Ð[&«¬«$ *¤gNƒíý‰ÍxÓ@¦ƒå؇•õè­ásÑR\¦×Ä´8CpÚK+M×{¶Hd AV“Î.Jz4É 6ΰ|6°®h© ót‘z”w°Œ0Rê9¡W€abPŸ‚ŽEŽÂt(3è$¤‘‰Áã âY2 J­²ÎÔöê§zßC°r¶¯¨·Ü¾ž¥éo<¦¾°l>…mµë•b·Ÿú@„ìO:¸˜ê £î8ÜïÎ͹“Øg½T¡-MæõÀ&ÞF½™ßÇŽg2Õg[´”Y ÔåÖþ0Efƒ,œÀpº,š"ÏbÁ}.›’bëé0”Qà\6Àq_Ë'0pU”ØúTQ ~Í‚#Ÿ;â›JY÷Åe;V=ÚàNî€cP>ì?¶Xª2_‹òÀ¤M\`3ª ÅEþe!"чP÷ —áiÈ´é³ÞEõ:§ñ1HƒrI!º’T®¦¦š‡zàü»MžR»³}(™  …bžaPcçf ÂÁE¹¦äyþ¡}´@Ö`ˆíž‡ì1ö^i¯³¥;U&%"PÔçD&¦¿I \ÁÜ(¯Ds›Âò‡Ý¾!ß–‹§QÁ’{ùTáGê*š6¸Õk âþH?fÎui o&Õä®yX¿h œõƒÎú!?’øØaŒ·yvÐÃGŸÆÉƒbTôMØ‚rþê|È[±ƒ¸»Gp^ß¹¤=<¢×û¿#x„×¾`yk¡*‚Â[áC›-èèuà6hqÏm”¶ L!U ]û€AD8T“¦©(ùíE*LýèCÑý¥m‚"mýùSZœX9]¯¶yo¯ÊTáÇ"2lƒDà&4 z€?¨ wx<Š“öò¯|;ÐðèÌÁÆ&­¥ÉxÇUºÂ£+žð”†w7FEb£¶¾Õ'^Ÿ’‹r…Ô·›Áê ÊZ 6Ø&“©ü†y á1Ü&Ò’ÌV?CX/7¤h…ÚI ):û¾nPY§ð˜Pߞϭõ—+dm8šöË—_ugns*@^R'VÜÊ,.–wyãa¹µ "Ti@É@¹G*‰Ñp53C×cNŠ¢þ~¶€<“qOo'[þ„kåùêM¨mÊîrC[ŠÌ™“j.ÛØ$7¤zžß×;˜ëºò~Þ ¯•B¸¢c ‹«º’ !ûÚ#<õ\j6†”‘opéóô98zzìòêç`±´JìaåØâœw\%i·©{ΰ™Î¦C/è– =WH*–´¹žž6×ÕöØ'ub8°`¨œÂÁ„O6åàøêE–]Tn.q/])‡^üôÇ‚¾Ö†ØKÄÇÂ[ôžnÉwSd¨ûù*¦­ûàe‹á~ku#’ñùc£™#nj*§;ØL¾NrHEu› @ÿ8Xˆ-8‡:S›å0³kÞ}ÂOÝ+î‰îFo‚æqŽƒœšpºfÚ'?˜À_ëÃ‰ÎØ'uÇ÷÷¡N-Äçt4ÖOL{÷$× ŠJP†¾öË•ú¸ÖꫤÈ\?ôSéÊxHœ´„N…–lmó‡¡SÔž¿pˆBègbÖæBµo)]U*åjr…~>R¥ªYYJ _Á/fæ‘#çJo†öÎë†tVÝÛi|ƒ©ëa ÕÀìöîð %m1¼áöþv³w:Áˆ¸wVáü‹öCæ_´GŒW×ê‹Å9´duÁ6Ñäêªm¢¥«K·‰– YoÍ0ßš§š}yç°‹Ù—÷!‡ëº—vÈö„ëªÇ ¬kƒ°®x ‚Ϭƒ0+Æ …ÌZ1h³J õû2u ÿוU;fÖ ÕBïŠa˜°X&¾y’ረ转®Ê|ß§SÉöËý+CŸÝÔ¸ËlæbLžæá†Â6 …x‹`!££.ĵ%É99PcjžA‘3 Â~TóìÐC—ÚÅ3Õö"ŽJEa½ UBßÄÄý›JSÚc„BƒÝ?îª)‹ÃXK±3$ûÝ)«/©E©n'Yú[T#Hõ-rñ+9Ò¬ßLÞšxž¦N%ù|8r:Œ=ˆé(oï¡gâKQÄì`¼´j£Ka”Oa‡(Ú-%Ì›ß&:ŒŠ1*÷`«¹1)aUf5Î c}vÒ‡Þ Õߨ/5ÕŸCÅûVßò·u c¿o@@Ϭ”G [œ†qð9V›¯*­¹¸[JS/^†r$.ªmÐkE<>ß5°·YHõ±[îhS‹gÔ¿,ŒSó+Ç'Ê\BÒçú߆i ”¢.Y¦).†)è3TB¼%†Éѯ`‰#äE¯ Ž ×”Ž8(Ê«‚@ÞØzs%ñŸßÖç ù½1&á“6ô&5I+&~’ÚN´ Ó…ÝÐPöKK˜Ó&Ô·*=¡Fè’+IMÓ{=kJò4¨öP˜d&®Ù† õá¢Ìf(ý‰câàòR{ÜÝݼæÔ[°òø¤šQÝ0TËœ2íH8m¼Î¨:h(©Ñ5Gö‘*a“õá@¨÷mSþ«¯m?j›Ñç!Œ¶‡>öÔ ~Ñ&çx„jýЊûáYÜ¥ŸLkŸR9AÊêºÁΡ¤ W(=2¥äC½“ÒÍ#3ÔLÜ/õçVñPæDÎT *kS•­ ¾Êö~¸U憜Å#O—GT:=j÷eíúþ <´£‡O%4ì1\‘–Lóô0¥ª‡e*¢m J¸ŒiðT·MXJqËûhEÓÈd>ÀàШTqYåJFàk·4¡ |Ѹ05=š¶ÁRazÔ5Ú”Ó¡£ O†êU•°0}˜ª¡m¬¹@‡PÚ,žqÜM˜©€z&ÈókÛ”×0sÅMÞïT‘ú¹“€ =‘uz÷¿ ÕÊ(ët¢ È¬’%â]ôQkUg`T(ÆÊ1ã•yÿ,Ÿi÷Æu‡Y$nM}.ÓÒHÂF…ª`A›Ó&/÷ºk o’QÃæŸ áɤ鵕R·¬½«$jQfÙóáLfttªsΗÌr’–¾œ^ È&eêÜiH&s=̴LJRöBе6³.¨³wæ5𥿗ÔJ/ E^c¼QI©¼Ý ”D sSz]3 ýNÇ…kÞZu¹A㙇âŒ:ã„yD5̾pþQ˜g&w§‚]˜Â<'þœúæ÷ öõsÊÖV¨wR˜¦öïáC£:µÒú0 ¦¬ZH§Ï¥ªÐÂ+Wh«vÈ›i¸òôv¡9ƒ-å?Î&q=¡ãU©pV²ŠžìZz”e£¹ *š¡mAÇ+u±¶pÆê^[pÕ=]pÚH;ñÄ!W”*‹úTö„•MS~á]´8>‹#çy‚Ù>©®ÈKuWÕö@á™Hõ=i°9)´§Õ5¾†(F©Ù )ƒ55 ‹ˆ,/R‚"3þﲃí¼ÂBËÀ§¤Òüøæ¥æØx þõ÷³ÑôaA…³ÏîÆîŠLË©'Oß]‡ŠŽG!«ìL©²šÖü_G]´hŒŽÀ…÷¢£ Pp‘Èèè o¦+¢Æ«HÆÏBHšÐÿ:©ÿß–À€GÇÁÔGª*Ú£MÌáÆ.U]5¸Ô×Û8)/©Ãs6”>Ï:'‹H! ×j“—§:.ÒpªÊÈÒîŠR=<¤á·~8\¤ç3v„¸/lÞÂGª¿ºf[Ä%¼ ²c²E™…P¯<ëVè6/ò‘úÕèÑ7òáþz+›‰ˆ4OïˆLÙšÈGŠwÂsBúö éÚ­þ†Ei"©šþ+üÒ²¶kQNuäCÏXÞL–LÓv˜HÃxŸ>‰ÝÜEtŒeÞe îARµ¡éBƒî°Öë¡å‡Ž4®ªé=–xJ­Qz} …£dbø!¤qçšÂ¹òÝßFÜôî°Ô| ½»Õ-ˆ/m`Ý(@ª×ëe*rØÐ½ÐÖ…<€lÛȶ»h'ò¦CD »Fšî`Ë‘…¯{Q€ôôÖ¨¬¤žCÐ; ‘Žæå½-Ñ`"Õh÷º‚&!D::âAö„H=oZe dþB¤›Úø5ªÃÕžL›.+aM“(Dj:âá9"5}`¢ Nêì>ŸzË{}§Ä¡ôÕFǤ(v…dß§áN«ö¾OfZ™ö}*cÚIâ-½›sœ¢8”Эw]Si»çSS“FKÐ1õÈ6ž†ðÛ $BýÕ›ÒEU{°¤˜B™X-YšlæyåeUÿ£H«^y¹Q¬ñ’ǑDZ¿[†ŒÎ*$]^§F©O®§[$‡"6 Þh,`ýÞ.X@½ªÛ‚‡SË`½ ¤¸g½làp™ ¬Û“#Û6àÒžePÙ#QŽ›%¹mÀªm ÃÄMë¸û­¦:óT䷕ãô8ra’Ó³dŠ;ðgŽ7eÖDÿ…s{°ƒQ~Ê¿¶(áC–ìq¢A®ì1âQÆìQ’™¼ÙãÉWÙ³GNª¡æ¬R6²pVÞ3qÎX/aR1eäÌì8p£/”û¨AÖoøÑ&sF†ìEtÅ^ oýS·òjb­Y\4:ÔßÒþ“3ËN¼PìDˆV?d5µø‘6¼2E+ ÉÔ"ÛYN¥=Z:µBöhÙĬØcå³þÛVÜPs·ÿV1ÓXk¼üøª´öÈÎêGm&šÎÛÐqÔþ›cÁ…݈þ:¢ÕhƒGúÏÆíD ¡Àõƒ-Jô βòø•4Ó`vœépÎÃÓTÇy§söz@9ð2•Px`w&öºë °·®¹U[£;¾§Tgk6˜t‡g9§Âiw4šóŒŽç<ã“ÏxX9çœÎxÆÂÇQÅ5¥©Á„¬øxœ•1Ý Æbˆtê{¤ç™_¨Ó"ã<*Îü‚ˆ;-Gó :Þ¤VÍ/Èøë¬] k:ÁovS svŠÖ¹³›N¼Îž^JíÉ$kÜÙKDæì¥“®óf'‡U*EE (YEVÛ”½ÚE‡W­]¤XíÚE (Ø.«Êµ‹R¬]D€Rí¢1ƒÏ”±”ÒoY3úëÿƒÆ‚K¿gSƱ©×Ô]ôr̬7¨)–eo,8Æí§çNmÓhÑ>ŽüOÊ×þÏ÷³D=}b÷iœ~Ihf~Ikjž~IÊ·cÕx8åH6¬²!Z²Ê†VdÇ*R±«ú›AŽPbèm2Ò’MÛ”R;&mÊìX4ÜYp”rYÐQ–L² UØqi›’giŸ¦×¿9+eKÌÖNÙÒ³´U¶ä¦öªïžýA…›zRéi™¬Qf6Èkjm¬‘¦v¥?óæ<ÂÓ~XÏì„ÆÔX!Lõ~ì`¸…óÔp[Œ™.Û"MµÖÇŸêg/“¶˜OU܇7Óº}¨SÛ‡é¿L“scÃ× ±ðÑË,8ð`ºB“ú¦,Îsml1f«b‹4][ZŒÛ)˜Ö×¶E §5¶m‘¢iéo[¤¡ÇåмÒ‰L[ß Þ#<Šoê[1ì(O©èoñSÙ¤<¾3Ã%ÄÛaO¤Å–€7#ð”[|†?‘"[Á #¶Â‰tÙˆVìšB D`3Y]üm<‰–}5 ¾™¡¥ÞFÍÑ"o£*´¼Û¨ZØMÔiõ,»I`]­­Ñ¡^[S@ŠmMj¶5¨ÚÖ n[S€ÊmMiwï%lã¯ë¸-6Ôt[Hßmñ¡ÖÛ€ºoKZ[ÐXˆ‘5˜·‰¬[„]$ UØEY†]D uØEZˆ]T •ØEZŠ=T’µ«•Í ãäõegõ¢dmí>dkzTëÃ%žw'åu¡ç!îWdfÇ»_Qšü~E¼Õ^ë6£¶Ž-,î'«ï³6ˆèMÖ¼ÃÚ ŽÏC“û}œSN!JR‹“"µßõA3»AÚâDq4‰t³`1ÍWªœªrZ·m}¡~ù#`ˆ³Ò™®L}°Çv§V¤¾íÀôfVaêTÇMj=j0krd’áì‘ÃiÏ¥¸ÑôÃ;=UØTfŸmY™rךBýmG#™-ó›DäôN¹©¯í;DÒÙ…ñ»T21µvš­M"BÚÔìô(z¬GÖãc#<«ëį@øÎ*þD"ëÓṡ#R(~£¢²ñ‡s]ƒ0í8î©}¼eÞÖX­1NýgØâxɽØAfðŠ9Û@^øŠ·œ2B^QÛœ5nìù¢ÅóÂq&™Þ,Ú¡Èé½¢J:½U´BÉ^ƒŽ †'2çUÀìÑ“ãñk()ü¢ÔØí´k4èYrtdÒR×]ÅEÐ^ïj²Û‡,[»!ú±O,à0„¹1±ài„½  Èøa¨k-™ lB’cò=:b–\ýÆæ$Röc›è™¸•WÞ¿1BþŽÙªM# %úp[¨è?ifû'ÎQü+Mù̾§;îœ8µ\R?ÞRšK}Q°vâxÚR6\÷ÄñM.â'ßÐ8q¦­«éäñ‘ê©Ã^ EÙÕÚÕdiFâÜN[_ŽÅ3Så =aª—„zË$µk¯ªÃ…k8’Ѓ ùHD—NŽ} ¢YÀ&9‰“õÕT?¨ô®H(®Ì´u ~—×\ý5].ežkÃ0ˆzoQAûÄ)D©½KþÔ™$ž¸ÇÉ gÔëGã )¸Ú†W|{ôÄuÅUvwez’qpÔˆ«ož^_Í"UMÅ»dw:ÃÆ‰ë‹¼©ëv òÏÌÐeý&+P9%q#q¿*õo‹R<í×®OuêG‘I9ô"‡°qjÊ룑ýaÛR…ØN>qå}´4ÍGõ߆HÝ8æt2æ^´´|)Ó€Ä42ÒÎ`yƒÃÈ=MÖÝ}:vSZæþ¤cL¢ ùBM>æ³þ…`¦bØŽžš.µzí ëW})[F L[¦ìsÖ!Tõï­ªscëá}KâÅ­Q§«¼êÃF}AM²ÏÑû‹i R(•ã‘xÔÁ©ºÜÔ¢>)²ôÔÓܯŠ-®çë¡•°®OâB—ú¥µÝ_•ƒ®˜‰RŽ3Iƹіí"‘8xZQÎM§ jŒ«=¯|é–i„“x‰ø£7‰Ša–5·€JõÐsÕ\ZZÙž«®>rR›° û^>tøºÕdVo¼S‰j°%‰cš¶4#‘GåÓU¿95î–øŽ Æ=ƒ§¤ÿto©í‚Öt5ì÷§Šš³@HO´Ý%¥Æ#Q—IJÔÄ©–Õኊd$&<¦€¾«Q÷PjnZS]T.W}í*¨ŒªrXÀ&Â\Ø€J‘Ö{†ÁŠ™‰¯ÅŒšpš˜ìV«îµ¤³ ‚ÎDÖ5ÆÀ1õ)?zxf—?˜e5–,_Sª‹–ƒ(Æ67yy…Þ’@Ÿïšº¼ß%ª¹™P¥Ï¯:“ÐdZÒºLK”ÜÀÚƒ¢ø¦×b ?hwORáCj^ש¶¥,:l½ƒH Ù{²Â@Z¶ôA‹oòÚ×A«!0õîŠÂ¨®lÙK¡NÈ´©0ªgJë•2>)yíàá2ÈÅgù]M‡*õ&Ò[Î5Ó)$¢mVw¹1–8Ô.d_NïÓõ'Ü“BG´úCzO>hÅB@Z|Îõ5f¡ ú»Æ …¾–ÅÛèV5¨#Sj‘ªµD¢&qIÒ 1ËjT¤< #}<„3ÉQhÿÁí.ÔG˜Î”Ù»(è|‡¦ zþ]¢†oI˜R#,jÏHiH‘ª²è+Ö@Îåäœ†Ô ¸¦Ž½ð(¤†pÆÑÑÆùëï]̱ Cäˆù}ÝpÐ#wås­B×lIäM|IjÊöcŽ fPÃ_á:EþWkÅ—¶1}ÓKçÅR%Eíìž7ÏO‘>½4ÛG“(¢Ló? ˜bÅÚ%¹Ÿ:s2æÈ$ý¤Îu•÷-)©¾•f \9å õ´W!¤Z¼¤_‘–Z™jƒÙNEµËˆ? ý³Òx@i wˆöIÙô‘±"¦]R‚6¬I숊ú2¼Œ]ê{×Ü`¥Ì$&'¬ùDm3“ØÚÑ ªìw¡$,nÄ¡¶ì¨>sGÔoýh¶Åâ&BÛgô£Œú/;îT¤5eÖ ÉD® ‡“(4eU!©7• ÿIôðšÄ…hÎåµÖÇ‹‰Sr¤O‰¾&‰C…÷Jô‰Ä¥î²R{ +OüSi#Yªž‘ŸÔ¹F;thÕêšú7…$íG£Ð®œDZäõŽ ½ù$Ÿz¿M¶Œ$z=.hEIΌޅ‘L%©ÖÞÛ­&ßð‚ ³&‰ö‰8ç0ÉECÝw¡æ%Z2êôŽ/W“Bo}´°ÐA¥–ö¥ö£S´`’Z9ëCŸ ößð6 æQ¸ƒH_ä5ôÏ¥–…ŠAEÝâÙËH˜b]‹Ç§mÃgwEë(2°ÔtŽPŠú‡Y*i§$lf–ÈL¤å®0ùä žú¤z3Ìé±i“,¨3uÚ_cÀ3\zêRÿ)M*Š>ê][SÛä ›k&©ó‚A‡ÅÇ}Áч@¤å©÷=¼Ž0_ š‹x–ôî…•Rµ+¨Ši$Ú bªÅˆªðŸµ F IòE–¾DëMï²²PÚeû‚/ïIšê­²y¼s4}ã^ÈǬïK[þ3! JUÇAãKw²²¥Sàj uKxS8¼™vUô7ïÚ £A9tLb|ùL$jÇež.ÐØ3}*£zcÔ5Ÿï2_è]¢Bµæ“L»¿WìQ5}\/à¹"‹Ä·ÞT¡Ó“Ńo~O„é@–k@&,“¢ÔžmÖA Ÿ‘“¦•"ÁdÂôFG?káÓFÖxÍýÕ)TâóªåjPŸäõÁʧïA—Z»@•¹#dÞ¡Æ—IN'ùÚ¢Üú(AMþ8>™ú†¢©øQãõòã¥òžÉ„ä%y8‚S9V½D—Ÿƒö\¶åÑžUå%Å7!y<¡«7Ùî~¸Õ÷—ÄOr7¨˜9¡JÔ[!ÉSñ%/7XR5É©*eÃs. ….&¹Þ Õ^kä…øWk~ ßÕQh×f刡0÷î®\½›W&òõæI”'¸åVÚæÐ.r]ÿÀ³Ž¢|A|¥"Aûú©,Úƒº~©ª¾A~Ät§­ôá1ÃfT%âOyºËïíû÷O[[© ë¯KK¡C-6E*Õ2Ù6%Ýû¢½VéÓÔUj—§#“uÖ¶™o• òð»€RB¦vNHT!ú^óéI®Óc‚œ(Žä Tx/)è] vJ —t ¿@ž¨ºÓ «_aš_Ðaž¢g¡,óRõ± Ì¥oA7Ó•û‘ R jWßû+7¨:E¬×=Ï)¾Â*º³„F­z0w|¢+¨Å@?Ø›„]S“B;Û}—MÜ;+)râ,,žJëP¦ÊL!®RŸ×úèW¡!ËãQ\U×R}íõÜï‡OhªåÑYÀþ¯ƒ·¡òè.€%ÞVŸEÎ5àŒ<úË!3]cä1X@ßä7s8¶™˜ÐÕoû{źi>LÖ\ÑE0ÐWyûü’L¼:Ï7%ói™xÛUÔÔj³A@ΘeßI!Q YØI ›èd'‰œ[];jF‚Di'b.»—Â9μ±Ž3£°)wFà¥pízk(ÌfíÎ À6«Ü` eU¸†Á±*ZCàY¯NƒeU²†Â±j©–ÌJ×QXveë8ÖZdÅ2¦Ã2­XGbØæ9SDY ÿVW;÷νIséjÿ7T=ì5N)Þé±~Ó¬{>ãB¾A.ÀþäÔBι|ƒ^d+8–ôbìv¾A-Á>èÔ$ã¾A.ÅÞéÔ2ÎU}ƒ^n«½–ôvbß ¶4q¿\Zy7ðÛÅõ—¿\^iø~½Àþò&â×Kì/o+~¹È~ÀÚ–>øk X”EK+¶A1d…úŠË3ÍAsn©°³^jxÉ&ý¹•Û†_úHÛ)ѾŸî$³ô¤Þ&¤Vìƒóûüb ƒñú‚5Çêƒõù‚5¿‰Uà®ap£Z»”àGÅ_*4ò¿Ò*œÔ•*#`g|¡¬À]WËÐA«JÝÎ0Ä\†Þ ú\7¨U´ ýhvÖƒ@2 æÀòzEÏb2 g°wŠz„ÊFàžé¼‹à[ÜKð[ü“ x–ƒéxƒ‡Ùœåb¾€æùÍûˆê£/‘NGŽþ7õažÅ÷ïòr‡áí2ré…H–G¹_0¸XF”&[S¶-ZÐhl¹hZ1™2 )çà‡‡¡Hòë'Säž]Ò †zË(2×€Hl⮌¤¸·JÏõžÁ÷KiYùh$xŽ–Q&²¦kQtºŒâ§þøÑ<2vħ¶£èWÊkdvî0¥ÔEoÊħ'Á2;|ÃÜ_ÄÙ‚¸ ÓEéÝúÈëªB¢G”$3”1'ãX3›DhMDÆ:6I‹_( F&GA1LÊ$:Á'P™8‚ G’TàKþ«áÏžÑø_äå«.x‘ ˜Î&‡q’Jc‘S¢IDVC#œHÊ:¢TBjÓŒ2Id’Š{Ö¨ï¼)a€¢L(–=Ïñï¹Àd¢4[š¯ ռ樈‡”Gq«º+ ?•ÒwõmJ2(•£go)]ñy……ÔÊØá€a)µ&ÖÝÚ-¡gc)ƒ>B0m:º e(L´Φ“RT½ûÀho)cÑÀÀc)“ßLž”R”¹޲(3iB¸ï¥‚ÊRIqhÈšRKfy¹#+$sQ ©&Cº@ñ¸RRZjÙn0RBÊB|ô±ô(`(¾Lñ 3eªw`¥`ð„L=J½úlj ÷Ô$¶ƒ-C•ê³$Þ )UIœP-ÓH˜€-ôs¬‡‰]º4êrÓÇ‘+ 1•©4ûÆ_~:ÁO¥âüCÅ$Ph¬L3ñGUÕO#zdJ%Oá6˜*“V™«ãÕÑ‘i!Nu ]Çì(¤Þ'ë‹ BåÜ•ÌdqÐŒ3½·«šz#…Aœ÷Ì·‡Ùö2óŸP\è›ÌæAƒ•€A Z|L…Jª‡³4Iq˜]Ô†á szdN¯áJU£=VĪ\õÒë‰1‡ùÜuU¢”e™{b#=UæÚï• µ6´õ¹æü=­’7¸;PDeÝ™(ëªÄI22)þU~‘y"þ ø'©­Ù©¯jÑÀ t™Stœ<ÀÄ™g‚Ð_ê¤Z™bŽh‡L›'Y,õª¯Z>]O*‡B­»M0wYëb^0ƒR¹4C©f ŽJ}Ùy|šÓ˜—òT_µÎ³´¸«]Q£[n.¡HM*7‚`¢! ‰‚2iõŒ¤J&ÓHå‰òõ)§%J겺(É3KéT»KÊä‘Ŭè®:$‹iÍMÎ3uBú&œßÃu7*ý´õ ekÊñ|• –Ÿ…ñ»šÖP†¼‹&ºi'Ž/ž%‹xÊ©m„ôH6³¦‹õ·ÕÿÃA€ÎÐE€î’"„ôô—$!d°%„ _† A£¨ã%M™,Ç !åË8!hºä'„Ì^ AóŽBPõÊR[,`è¼(„|‘Pù*¢ôEF!äRH] º”R‡]Ê©!—bê`Ð¥ ºt)©»”Uƒ.eÕa`—Òê2°Kqu8à¥À†p)­‚t—âêBÈ¥¸:t)¯„\Š«ƒA_å‚®È+„}‘Wù*¯ôŰºv)°}±­ ìR`]öżrÀK‰ ä‹}Å Ku!¨÷b`Ø¥ÌzôÅÆ2°K©uØ_€^ ®A_üv)¹.»"ºøUv1ìŠðbàéÅÀ™èËe›*¹=ÞãÄÒÿ2ÔÓ4m=ücFw»ààzù{DÅ—zŠ¡Ù™Çî7Z¼G”(5ƒÜ ¹c„¾#&Ÿ´bÿxoRe‡êsDßÝIƒàMªìPÃm¢{Ɖ δ•ñ{DÙy' Íw7Ò@¾G”hºIsϳ÷Fh£Ÿù&é7l^ ¬§oO³Ø1Rëù‡Ç eCÓÙ=R–kBßÞACÖ†¾¹…†6ô y -Œèn -Œèž]4ŒÞ´ô6c)½õôéO=~ßÙ¯«d3„‘S[£–Z<˜1 ’IßæIçIûMŠr2Èí7)¦Ï1.çÿ&Ŭ§8Á¦´Ô—GMå;¸J¼ŒÚwt ßÀŽâK5­ ­0 %hç>^Eƒ„Þ‡"—AB ‘Ç ¡ ëÈgÐuN0HB řʳÕ×vÿ" r0fÑ  rQ²h)‹9™-Í!æK `‹8jÜ~ÌB,-¬%f|œÀ]˜ËVÇ£ ò똣w`kâqßï­fÿÞhÆã®nrd­0‚ÙG¬Ls<îÇ÷¾ÖµÍg†®™ö“G;l?ù¡3æŽÉËÙGì&?t½Ü3ùlÒÁmhoz†"ø|ø„5ÂèÅ[#Œ;•-BråUÛ廲‚v¦ãéý«§¦™ÜCÍR[C\ç#™öüƒÄ&üg‰To“ª»ÒÚô¶+QÈpš„ÚãDC/á‰ÍáÀg'ù¹/Ìâ%3‡øhÈpxòÅŒN\ŸmîMœÆ§k{vÖž`ÚˆT>Ÿð>d5»w݉<»d܇+Ô¡æ7’b}ï‡> „&GDÐy‡ wü‘.Kqÿ­ål\È-OÑ—‹¶ÞæªíÂw¹l»ŒÑž¼#'ñÛ‹0i¸‹gÉû«2ùä9ÿ™Xªsú_I¶í*fÿ•˜Ø²4ße þ]Vìõ.5ŒV•Åòd+71ÆÓî½mjT’;»–›¦¬z“¸Qz ð¢ˆÝ4uæþÆáx¤©;qŠš®o6 S.ÒÔ›:¨ðþc(‹ÆÓCcžòöìCŽh/°ç—M»ŽqiøÚû7ä"±œØÓ©±¥AÎÛï($“U,Lµm)§ ȃ¦â«.©"7^øìcßl6žò(CáÙ´Ù4¶xèûµ‚ð†I‹:¼2gÇggé/J ­Zªklä·©)­€Ú–6WØS2¥¬(cyLCžX?èG$¾ ÌGè®fú.ïqÚ}ß2m\Ûÿu”]_9ã’¢ojX”§.IΠzÆÊærg{ê¦Y4G«”4ƈÙ&³x…Ûé²dety£ ¤fcÙÙîöñà®¶Ã_M¬dö¨ÉbZÞsÍÆÞÖ}Ó_#Vý’RSmÎc,Õ#÷»î凿òÈŠœ,W/ntÎlÖœYáÜæ\ó ·íXåü©f~æ¶ð›r«C}”Ans¤ÙáõäûN0ä,«—üùÊú¹¶9,VxÏÓpnsúXJä.ó‡ùù;ômÎô9þó' ,Á–ìçÏ Ø X2‡?%à0Kò«ç ócÅzEmn‡?ݪ¨ÙEê°• ì “ª!ÛqJàá„Úà“mmÛú2!0¹îµ¡àõ{ÍâÛÚà&ÚØ>Q¨1w/^(¦f‰ÙÚZãÅx}‡šN,wf}mðåÿ);¿åÈi< ¿J`©²%YÒ¯BQ%Ër¦—L2$þÝQ»Ë lûøëN˜õé¸0—èD¶¬O’eî‹×÷¯ü…ùÂõý+ùúÜgg*ÑŒú-ŸN‡Ž©CþÎßkŸþ_‡õßù{ëóÉÒÁõûÕã­Ãõc»y¿uïãmÜáæðtõýñçÙî~ÜJ·»ëÏÿõë/|q5 ~¸~ù×edzìñ“-çÑñúå_ugÑmÙùFÔ]¿üë¢þ¼ûì¥ÄŸÉÐüBéQ¦Ç.)ídÚ!FJ{™öŸÒn£xñðZùJO2=!]¥£LG¤ç™ÒI¦Ó§ô4 |ÞY¦3Ò©PÚdÚ6£t‘é‚ô¶F_±E¦t¶è¹ÙšŒ·×CS¶ÊôŠôNÓ£$|Žœ–„#Ò‰.Ù( šm+Å%â£Ç5›©·’ð1t'·. '¤3]²Q>ÆîÄ!>JÄG >ºD|âcá+. £råK&KW7§%â#ç‰ÒññqgãB#Ä(T¾råñˆ»mj:MKÄÇ=ÜIÄwž:›“ˆ; ~üøÃiZ"îÒ‰f#' w¾KSGw’p÷J¸ßFFJKÂw•ë–„»Ø¥ilrpÀ]#DÜp·Òdä$às¸¸Õ$à®tiî-pÀýÈm.wéÀm.ùvà{ë.”–|»Ö¥¹Í%ßS¸O4:xÉ·º4ÍE^òíÇ.Mc‹—|{w!-ùöþBZòífÑãÏ^Æ%àþð4$Zâ{ ¸à¾Ò÷pÀ=è^î3Nü(ÕÆ%á¾#¼Ñ|à%á¾#|%N¼$܃ðÀプ„{~¶J÷’pÂߎzI¸á!pZîAxˆ”’ðÂC¡Y4HÂßnf)-  | “  |š¨§IxÀ}â~$à3ø”i ð/¤%à€O|'$à3øTˆÐ ùà{š¹Õ$ß|O•ûšä;€ï4r_“|ðyt’ï°tuÓê!H¾øŽ<ÿÉwß1Qo™$ßS·BèÈ'É÷¾s£Qq’|Oà;UNK¾'ðV>oÉ÷¾{(§iÉ÷¾S&J&É÷¾«˜Ó´ä{J]šzË$ùžÀwæÛàIò=½òíÆÀ·“|àyå—€Os—æ®*Ÿ¸1à“|à6Òšk’€OÜxCx’€OÜ"¥£<¸d±Ðü%áqìâÎóó‡$O˜ÃïOÓ’ðÔ~üLði\ž\W9ÝO&Ixá•Gå$ O |å%~’„'^yTN’ðôJ¸O™¦á$ O˜Ä+?äK’ð”»4q’$á „×ÊuK¯üø!IÂӌζð"IÄ&ñ%ð—„§¥¯œ{›D<ñå¬Õ%âiíÒ4—e‰xâK¢1=KÄ3–éK£¾š%áÙuiâ$KÂ3•7OÓ’ð —•z[–„gÞlYž1‡Ÿ½%á„·H·áYž1‡g^óeIxÆ2Ý™8Éñ\PùYg“ˆgLâÇZNÓ’ð\»4¹$·®ÑùE€Y>ƒðÀ Æ* ¯ ÜWzI©JÂ+÷…–U^1…GcS•„WøŽ´JÂ+‰ë–„WŒ:z•„רÕMó•„W즗H˜TIxÅ >šMª¼ðé¬n x}Üùa )¼JÂ+Ÿx^%á„ǕƇ* ¯ <òqU^_ ÷ÇŸ£;MKÀ+FÃÃ"_ÔÍ@ ø‚5zá‘m‘€/Øjy a‘€/¾KÓдHÀ~ô¼NÓðeêÚœ:ú"_^ÏC¡áa‘€/¯€¿PoY$à ?{wc‘€/Ö¥iÙ´HÀÌàÉqO•|/à;M4$/’ï¥viÉ÷‚½tïùqÙ"_:ÀyxX$à Oüšq“€7Ìà)&MÞ0ƒ_`9MKÀÖèù¬n xƒYæC$Nš$¼…®rê/MÞ@øÑ 8MK¦pi\l’ð†)|æåC“„7n/™$¼p+ÔÑ›$¼pã×'š$¼ðÂïn4IxÃqÏ]"Þ0…óý4- o ¼òSå& o |æq•„¯Nü¸s—ˆ¯@|f­m•ˆ¯X¤WÞòY%â+é3[+«$|áǯ䞦%á+?~Ýî4- _c—¦î²JÂ×n'½ðsåU"¾â>|\®]2¾ZW;Ï(«„|äç—\B¾â™¸¯3­VIùŠy¼Î|Í%ä+ ¯¼—¾JÈWlµU6W ù Èzcפ nÄãB/ ™Ä ‚x\è–Ò¤ nÄãB‚¸IAÜ ˆÇ…nÄMúá?|;òLiŸÁ -@Lúá?ÜùeäFWñí’J+Æ ‚xlô&IAÜ ˆÇùÈáAÜ/ÞSZnÄc«3¥àA|KsWU€['ˆû¶p_U„ñ¸¬ÜWáA<®ÜèR7âίÇ%â0Ä·xæ¸dŠx\+NÒ7âéøõ–Ó´d†x3iˆÛØéetOjÒ7âÛÍ4Ÿ·D‚xB¡´D‚xÈ'4)ˆñ-M HAÜ ˆ'Þƒ0)ˆq7LŽViˆ ñ4NKÆ!ˆ»àÈV2iˆ ñ4ÒÞICÜ`ˆ»àI2©ˆñäè-“ЏAOÎS»IEÜ ˆ'GÏ~L*âEÜ…8ð¡KÆáˆ'—¹rÉ8ñäŒO\2GÜ…tÖnrHâ.dº›7i‰,ñäéÁ´IKÜ`‰'Ÿ¹»IÊa‰ûFþ‹IKÜ`‰'_¸Ù$ä°Ä}›¹¿HÈa‰¿‘–ŒÃO!ÐØ(-qƒ%žÂD­&-qƒ%žB¢ˆ´Ä –x ¼b•–¸ÁOÞé3i‰,q¿òL*-qƒ%ž&G”HIÜ ‰»P=MÄÒ7XâiâÛ#i‰›ï¯ô$¤&nÐÄÓD‚»IKÜ|ÿú*mc˜ÔÄ šxŠ#W.‡&îÂZ¸·JÆá‰oqÆTŠâQ|›÷I9Lq¿®Ì©¤¦xx>“¦¸ÁO‘|L“¦¸ÁßNœ$“ª¸A?Æ©¿JWÜàŠ»i¤Ž&eqƒ,¾ÅùöPÚâ[<%^íK[Ü`‹oi‚EÚâ[ü´ä¶xJ¼Ú—¶¸Ág÷HÒ7Øâ‰\“¶¸Á}[Ȥ-n°ÅÃÀ÷HÒ·ÐAFºÕº¸AO9pw‘COÇ—íOÒR7èâ)WNKÈ¡‹‡^H0©‹ÛÔ1µºôÅ ¾x²‰Óñ©C<Ò+Ë&…qƒ0¾Åéµ!“ƸÁO–‰RiŒŒñdôÕ“ƸÁ#o»IcÜ`Œ§h2–¸AßÒÜè’qã[š\2aÜM–¸¯KȧòBÏ L*ãeü­¸¤Îx*d›tÆ Îxpô!O“ʸuÊø4ó†€TÆ ÊxšyßM*ãe<Íôõ3“ʸAŽ”q“ʸÅòÊ·ôÒ78ã©.Üêr8ãÁ®[Bg<ÕFK?錜ñ-MãºtÆ ÎxZ>r 9œq7­™û‹¤ÒxZxçL:ãgoÉ8¼ñ|^·dÞø–æó–ŒÃÏŽ>%bҷγ'L¤7nðÆ·Ê q©´ñìy÷Ijãm<{^0KmÜ gÏÙ¥6nÐÆ³çi\jãm<û³ .‡6ž=}¢É¤6nÐÆs˜(-µqƒ6ž=½ªoR7h㙿lR7hã[šzªÔÆ Úxö §%à6ÏImÜJ·Vçoî˜ôÆ ÞøV;¯~¤8nÇÃ64RZ"q<RMŠãq|Ks‡‘ˆCÏ¿—)Åqƒ8îÒy“ŒÃÏý*ˆIsÜ`Ž»¸:îpr¨ãa"Ù¤:nPÇÃéšIuÜ Žo‡Î“¡tÇ î¸KoIyÜ oÇN½UÊãyo‰8ÜñœxûGºãw<§³ž* ‡;žïJuÜæŽpúvŒIuÜ ŽçDŸa3©ŽÔñœùÞHªãV;¾ù=^©ŽÔñœyDªãuŽcR·ÚMâ¹ð‰KÂᎻdôý[“ò¸Aßr‰8äñy[]Êãy<~Ž"åqƒ<¾µ- ¤W¤@^ºßßd¢¸D¹+nàc—ŒC!ßâôNA‘yC¾-!id•yCz×¾H‡¼À!ßVq4—,ï·²ånÙ+–^Š}¸|z¸ÿðn·‘òs¹Û¶>]}([åïÚãáq¯´=—~8ܼûKÅËËA<>µ‡ÃãnkÎ/ç~ûññâ‰×çb@ïË^‘å¹È»ï¶ó½ûìýáîãç’ëÇÛ۫ǧû{ÅÖ—^v{Xvÿ–éŠËáæðtõ}{¸ß+7våîïö®ˆw]±§ovÿšï‹½{h»/t×û{妾ÜáëÝ¿»r‡o÷Š¥¾Xûºí]WŸ»‚íØ³ö ZWðî°ß€åÏŽr{¿[çK—{lï‹Õ?áx|üìé]¹»Ô=ýKßk_},·û±éz7­lXè¿»þ9.µG5,…á•m9”Û«²×–á¥/ÞnCÝÝU-O[éÛö´ÑÕ]Áíg潌ßÏÔ½LØÏì waÚÏìõ“÷3ë^&ígö¦ª÷3ïö2¶Ÿ9ìeÊ~æŸ{™y?³ÛÍê~æv/³ìgÞïeÚ~f–°îgöFÒiØÏìM Ó~¾ÚË\àgoPž.ð³7MøÙ¦ ü|ÜË\àçë½Ì~¾ÙË\àgoö™.ðóÝ^æ?ßïef,Ÿ·¡ÿ¡]Í¥~Ùvúž‡ÿSwµMrSWšÏþªâ ÞÊÈ-©[jABU¿n±5Êv·¨­”Z­é£–:zñxød^ { ÛóbC6$„MTñSÌØü„=ç^µZ²ÏqK¶¶vR…gz¤ç^sžóòèÚ‚xáâhCgÑ–Ú­zð’3ƒ§. ž??Þý‹Ò`GÉ]žÓå™V¶ù‚j¶òŠÕ{aôp<³L‹‹ç{Û‹Š©swp%Å4¸;¸‚b¶¹;¸rbv¸;X™Ü\)1-]˜6wWDÌwWBÌ>wW@ÌwW>Ì!wW<ÌwW:Ì1wW8¬wW6,–\ѰX~p%ÃbùÁ¥‹åÇs‹åW,,–\©°X~p…ÂbùÁ• ‹åW$,–\‰°J%bðü…íÝÂ-ɨÏ=5À Ä'f«\jaKV<÷ÔöÅ„|Õ{z0ÚæÅ­Õzâ…Þ…§¤Nrq´=<÷Ì…-Ízâ|—?}ñüý×käõ]öz¼Þf¯7¨ëõ{}›¼^c¯ï×ëìõ&y½Á^o‘×·Ùë»äõöz›¼Þd¯ï‘×óþí“×óþ×óþR×¼Gäõ¼Çäõ¬52þ Ö¿ÿë_Œƒõ¯FÆ¿ÁúW#ãß`ý«‘ño°þÕÈø7Xÿjdü·Yÿjdü·Yÿjdü·yÿ’ñßæýKÆ›÷/ÿmÞ¿dü·yÿ’ñßæýKÆ›õ¯NÆ›õ¯NƇõ¯NƇõ¯NƇõ¯NƇõ¯NƇõ¯NƇõ¯NƇõ¯NƇõ¯NƇ÷/ÿÞ¿dü›¼Éø7yÿ’ñoòþ%ãßäýKÆ¿Éú× ãßdýkño²þ5Èø7Yÿdü›¬ 2þMÖ¿ÿë_ƒŒ‹õ¯AÆ¿Åú× ãßbýkñoñþ%ãßâýKÆ¿Åû—Œ‹÷/ÿï_2þ-Þ¿düwYÿ¶Éøï²þm“ñßeýÛ&ã¿Ëú·MÆ—õo›Œÿ.ëß6ÿ]Ö¿m2þ»¬ÛdüwYÿ¶Éøï²þm“ñoóþ%ãßæýKÆ¿Íû—Œ›÷/ÿ6ï_2þmÞ¿düÛ¬;düÛ¬;düÛ¬;düÛ¬;düã˜ÎÝ@çtî’8¨s7ÀI»äŽêÜ $ pVçn Y€Ã:wIœÖ¹Hà¸ÎÝ@çuî’ 8r7TÀ‰”»äŽ¤Ì &-i¬§MZ ÒXO›´¤±ž6i>h¬§Mš¼¢eÒ|à%-“æ¯i™4xQˤùÀ«Z&Í^Ö2i>ðº–Ió¶Lš¼²eÒ|à¥-“æ¯m™4xqË¢ùÀ«[Í^Þ²h>ðú–Eó¸,š¼ÂeÑ|à%.‹æ¯qY4x‘Ë¢ùÀ«\Í^æ²h>ð:—Eóº,š¼ÒeÑ|à¥.‹æ¯uY4x±«KóW»º4x¹«Kó×»º4xÁ«KóW¼º4xÉ«Kó×¼º4xÑ«KóW½º4xÙ«Kó×½º4xá«KóW¾º4xé«Kó×¾º4xñ˦ùÀ«_6Í^þ²i>ðú—MóÀlš¼fÓ|à%0›æ¯Ù4x̦ùÀ«`6Í^³i>ð:˜MóÂlš¼fÓ|à¥0›æ¯…Ù4x1¬Ç¼Lf=Ý£ùÀËa=š¼Ö£ùÀ b=š¼"Ö£ùÀKb=š¼&Ö£ùÀ‹b=š¼*Ö£ùÀËb=š¼.Ö£ùÀ c=š¼2Ö£ùÀKc=š¼6Ö£ùÀ‹c}š¼:Ö§ùÀËc}æxëé>Í^ ëÓ|à²>Í^"ëÓ|à5²>}Æ‚×Èúô! ^#ëÓ§,x¬O³à5²>}΂×ÈúôA ^#ë“|Ðy¬OòAç5²>É×È$t^#|Ðyl@òAç5²}Þˆ×ÈÌ#ÖÓúį‘ è#G¼F6 ùÀkdš¼F6 ùÀkdš¼F6 ùÀkdš¼F6 ùÀkdš¼F6 ùÀkdCš¼F6¤ùÀkdCš¼F6¤ùÀkdCš¼F6¤ùÀkdCæëé!Í^#Ò|à5²!Í^#Ò|à5²!Í^#Ò|à5²!Í^#Ò|à5²!Í^#Ñ|à5²Í^#Ñ|à5²Í^#Ñ|à5²Í^#Ñ|à5²s&•õôˆæ¯‘h>ðو毑h>ðو毑h>ðو毑h>0ÙXþKÏNè)ZGy6ö/9©§<ŸxÅß×<ð·îÇð5äîÚvè›´Ve-³æZZ«²˜Yo±GþO¿–nìé[ò¿ZKm[玦çž}7šzjêL/9ç-¢—ü­©“:jz9m¸Ó4ÛâOøªþim¾×:-«ÓÖ,ÍÐÁ±Àh™´þWžø¾¯,I–Œ£è¡Ïµé÷÷?Üÿ“¯G•ªkÏ<ª !dW`¸koµ:[-튮=®w×ÛÊ?ž.øî#ñ[%‘ï~ÿå©ÐUá7ù'ŠN•tî?oG³HqbO‰½™Ÿ¤^ìÁïcgê-œx7Q¢Õ•IñCy»zQXü+n”…iì{ .5Žb€âî,‘k¾ë…H¶Äó”yš.“ÇÏÛÛÛS³<œ£xvNÜõãhçÇp—:OÁ™Go„fÀgw”€~þ¹‹Ê£ Ÿ)Íîùé<¿ä/ÿÔ‡fª-±h’Mï'™¦ÊÂáÞØ»äã%‰ò˜¿—ìŸ+àŽ§‘›-àJ'E¼;KœÙ† ÇÞ2ŠÓä\ã†$ÒÂIWàÛâUË(ûXröIå å‡Ë8Zzqºÿ¤"~»Àå’'ñÚ§#t,šÒSüD #e–9±¦°¶“(i$Œž¤qæ¦\†Ý›û©—,~BH4±‰ÁîuÁ˜‰´‚0ë%ÂÏzyŠ~þ„©«hP¸'™GY0U&~·¶PÜ:°´ä×Â2as¸­Áöð€4ø½ð”ðŠzæ \û£†_xO/€Å~ŠÛ]ï5QæÎ%ObÿèéèÌü—Q”âë‰<îû‚(jAP(ʋڿ)=úß=<›ÿfî$s%ñg!õýC ÈAöøÉîüÇ9Tÿéˆ8/j-ÀiŽªÚ+´©?óSåe/ŽTU~ú¡À=»ÞÍÕ¿û¨´C7ZîÇþlž"Ò¨)ÒïKHëdqFoƒ†P÷®ü­„52(dŠwÙ œ… !Ì=Ünú´÷^y³\F$%hM×›B¿ú«´È+,£ñ6_ý¯–»0»­ªðß¡#ÀL{ý]<÷^?ZÞNº% Œ£="àñ~,?€uz6®ÓëÕZGë|”¯óñjÒЛŗüp&ÖVÕõRÅ/dàÁ,܃… ­_áƒcXõàD,¹ç¤î\U!CųÀIˆ  ÌÝ:>ÐÖ̽wðÛ’v½ýIäÄÍÆ`Üéð°t/ynªL²4Ew#4³1ÔzÚ¶@ûžöð·9e ¢c¶–cª*~¨ CK« Å*£M«X…M?•Î<,Xz—SŒkw·X)À•ÊáRÍÍó‡’y–³õjé`cP Ž[uPË:ü¬È»/7ˆÜ]DÒÐc½Öþ¤)þ˜›âóÕ>“4Zæ–ú loVà5 Mi›*êL²a”®ÂvÜ»ÝÈBá8Cþ5ßí—«Ý–M©ª±çFE°œÑۃƉîÆOË%ÃÝêïù3øG›íô0÷æÇr³7·‚œMÉÂÚžüzOUE'Sù ë›M÷}ó?ﳕ:ƒÆáuëJ¥Ú]‚¾h®q-1ÞÈ·5«o}%-që™ÆÄ#/¼©Ÿ- ;HÛÈ·ªæ€9 V4[Z}Ûß¾"W¼ýJÖÄ„r6E@]›×)ãöOsÀŸ­³Å$ö íSÕ$ŒöNˆ¸í:¦.ç‡Û¯VZ”…—"LÓöäÞíëåúìÞr.8fjZc¨wÊ;š{˜ÿ¢ËrÒ?"*ÖiSë4pÈ»h¼÷*–“˜1Ìõʆƒ+TŒ7˜=p™ÆuíöíÒæ“¹³ˆ#¹áac3Ü©t)Sï²ìÀ±šgK€ÔkѪ²¹Ê›ÛÍ ÄqBqã(I&à®QEdê"³œÁoÿ*Ì_‰3õ#üKÈ+?š;/‹ênêµÒJeË¿)m†½y4…X;F¼šƒµÆû¸l‚Ô‰s x Èúz­Ð¯l±Üš/= “ýÅ$ ­V½®l°\¯÷!2÷pHÖ*sóPSÊy­º]´»{sÏ pzˆº€Ä±-bˆµ»ÆEjÚ³¥_–í¹ðƒZ»V€¶K¦<*çý’°'‡C«UI+`åJZ¦ìlL¾&" S];Ý`=!´¨Ïú1ƒz-™&ÇMö~5ÁAS²töpgfãJyT¡ôç¢$ó1ÍÆÝÒѯËû ²IÕAƒ™f-(i°—±wTÐwî9q*q¨v‘ˆ$|­,[ÙiyzÀœ,c"ÕÌ¥½}»‚Üu环wf×âD9Wÿ¢¢½,°½Æ¸ôE•²ÇÌñbÝy#HãäøÝràan‡ž7ÙƒN=jwêà•™ü^™ùÐѹNP²š‰Ñl[µö'¢ùø¦Œæã[E# cOˆ‰¡ÆÁßEðZjDåáJ›K¥/¶¸an­lñ$ßâé ÍI£EþÐè/‹·¦ÞVà£I{¢Ÿí5èg?Èñ™ 1Ö h˜üÙ\¹©l˜zV­Ç7Ö\9þª°&3/D ³ð—|Ì&ƒÏñǸÓß•z}9H­š|ù@÷…úìP±óg¹þ¸Ú¶íÁÁÄYè¡@›Å˜ÉûC\oF‘È_#¬P’ÈuÁe້“xø DÛ;hÐöž¼ ¨'¯IT9&ˆ®7ÊRñ3 Y-ïÜÇ6(ŸN5òºk9¹Z)#{ëe'Ña`–ÁNáO'×WØÏ,ç~æÎ3ŒâzZQe›e­(ÏyÚJ åJÁHÜÌS Yízñ½+G Tº@NQÚٴ„|£Ò€¹ð9‡µjÅ^ï®@ÂH¾6Æê3ª)”–¶S–¯‘4‚?b_ v£Æ½âÉÇëGËbw cAÀñÆD´îjOrž\àÛ/)XÌuQ¨Ìbøƒy,šqnoµÄçˆ/¥£|'pføÞf‰Ô1®é”’5¿¨4·±pʸVq«XñÏ…G?˜D†ÚØYo:JÖÉ_r;ÓA²ë{±ª.½8ûMàÁ]$nžzÆÍÝýåZ£Õ¸ñ |òua¯ &—e¶€Á×j5ÕNË£@âúIÅ "5¶þékUe_BÊ”ÕÂÉÂjÕÓ›;ïªtÃéAQ·ýx‰ç$Tõ’ï¦Q¼}²Õªi¾uÄ^+=ö^ì í`…Ö¸=­$O¢âÂÒš;£ÜƒÊ‚ú„jœçN+cáÄj,`žÞ,7YúË`‘𛽬ÜàkÙp%XXzãbsúËû ˜ß‡Î%Xï½Kå)[ãÝGXË00lv-‘"Oÿ”‡m‘Ó<¬ô[É2Ú…Þ}õ2VUåÇB¸Âž>ÅöÖj7vô²J‰} dã]¡j5œ¨7ª3¿F½sPYV‘×nÜÝܹþ Ð:§t„s:õz>‘ÚïÜÏÜ‘R'(©¼}] þ¾ðµ:ÍmykÝM)Èz"DyºS!¤hPÂEÈæÁóa¥_›JX€²Q×°6M‚eÓÞ}L{W>õ2ÈÔ2€Š@½ÆB÷Ý2µKos¬ßXº[¼‘s³8ØW‚(ÂZÙoüÂðn!9äGÊx¶ˆm4˜@>üB¦Šÿü°×ÙRU©ÏñMë½ßBOõ[ <õÉkrÙO º¯ßŠË7ò+c÷5œ¶ûZ½ª-žé“D>•R€¨`ϼûÞ©•?ƒe:}úéÛåÄû•Oß[ËdA†ÅøÏç_£e4ÝÒ÷W>+·Î¥}eê$s„jÚÜ}åër?Dw(a)ºÝ4'}ÿÖ­ì?9Kh¥O¹wåÔÂY줙<(•Ü»rg•da™¦‡H¾ëˆY&ñÜØKKèÚ¸Uz-W ýïï_yµhEœùKžàÇMcg&K³oMÄŸ»} jt šÓþ¡ÕŒû¿¿ÿšœ¾à›büêåÏ©<61UÒý¥wVUûÔÇbÑ‘\t\ÑoV‹~»ZôzÑg×6׺ë:\ÓB¯u¸ÇîÞÖÄîí^W-‰únýõc=Ø.Ž ¼p±´Ù‘)`ÇŒ‚ª™n Ø7~ƒ°o|›Wù„´à{Bßu`jÈå3HziŠ/MØpÍ˰½%žOÇ«¦w®¾‚¹ZLXe.à‰Ê5TµÊÈð®‡2¤É _tm=lÖôÝÕcŠ‹;±'NkRkètõÔ±‡OâM«è†.ìhlŽåE[¢.ìøåF\ÆÑÜŸ@A™r¦Œ`G>'YâÇIu/As½SŸæo¾{yóö2;:~ÈmÄq]o)NÆWv`´Ä Œ7²Æ;8¸‚;8-6¾’‰p"^øÁî>”}:” £šÒÀ] ’æ³ ÊÏØbŸ1ÊðtðVo'n¨jõ—½…‡'bÕÆas°V÷«¨‰ïlõ²$Àw[kÕÀ.õj€ýv[ˆ®¸Û©ï„b¿¥óu÷ûN!z{Ê"’.,Íùu÷ö‹uŸpxõ–}iâ1ŽZM`Þ”MÍþ}Û+L_Š*|¬ñM‰ß­±çÿ¦À¿}Vn[(×32‰²$_ ÿðÁgYwuí|´ûî«“ÿªÆ>¾ßiò-<‚õk€UwvRÈn˜x ;¨k•`O×¢‹*I­=”Ô¥2€zG¸ì® ‰•û |¹!8Qà>ž©™ Þø¬’†à.öã€>¢tõ#¢ëõÈV¶IyÄ¿°À#XžDk˽nÈšMÖƒóNéà“Ò±³Õëy¨M¼8ÆOVVÑ¥Õõ‡¶U¢|*–‘q.ŽTÎTu’űŸFiÈ”oÔ/:Ÿ È?Ê”?÷’4ÌR0²çMñ…¼Õ%¨Q?:DU=b>ìšAK*)ü¦@Ïõ§r H“u2R¾Àb)Ê/`‘c»Ž›f"k)²nP”ÏR¢q—Þr)c°ÄÛ5úO]öŸÁ ^{KàÁôãä:áÌïq«N~¨$›k?/ˆì-dÆjä¾êtõm r öµzŸÂÿ î ï8Ëe ¶Öi\¯qéINvDGkà¹MkËØ¾&:ök_Íað$2ž Ù¯C9å]Z½ï²Ð»!6w5—cXú†ÌwIì{—­æš›ìÁóœ é¾Vß}oJ^¶Ã]1—øà]Ï“«s‚Œo@`Óû»Þ1èiBgÃõwèCÏX ‚T‘b¾¦Á_X=}÷#áÏ¥T‰*ôж»LKùÄ6w§þd°ô ícÅB³7N&§CØg=ËI¢*ôLê°ÿêÿQýS¬áédpAu!üä{.óÜ$tЉ ?ù :† J],눉¼ÿä÷qÄ~ÂÛŽ‰“x4ljÂêÃö&yi±œX>üÉ#¿D'd™‘×åøv6€¤c’Ÿ|)I>°¨*áÏ»ßu½¢hTËÌÒÊMmô“¿¦&þ† s&58û"5 X×°‰—™wþä?cC?åËÉCczÈímQCÓ윷‹uÒ7þ?ý›©%Êžàa¼ ŽñÝÔ1Tã˦wï·ÏÛ.Æ«@ç¨E<·›<·›ñ[¦;ð?ýg‚ÿ_™'#Ûƒ‡|e3ìƒÏ[rKÃP’ðiK~iöóœu`´:t—ï)œ’æ=ï.!>“‚I±ÅÄÔŠ$&Ÿª÷Ó{<t®?“™M£«¶Ÿø ô½ÿ¬J“˜Àè0>%½÷·*ƒ´H¢¢6IÏÅv<»q¥ÿ÷È,ø‹~óÌC$¡SûÈêƒüŒZ6.‚ž˜å¼çyÓ@mW@Òm3M¶clŠñÑä{L“Af00€ GH/¨VG’ó£ùKu«É›«0ÍÎ d¹®ÏK\ä½!<Ù…L¶„Œn§ðÈü®P\l'6M½ç3M¡©b8²14ƒMbP›ä¼Rô!³ì¿D÷Wˆîû¿Ï¬odœãíÓ@ö:2‡¦1†bpÜ7§gŽ¥¬ž®¢Ðþûà 2F8ƒ¥&1]"g!‡{FÅØ¿ÿ‡„=Ëö¬ÉM›`ÈÞyêé„<%¡Sì¥QJ.÷¿ïÉý 2¼¥395 bbSÄû?˜…(oÏ+@ë4,9 A"'þ K¸.\÷BÑÕ{ЦP¬+i ¼~„=aðrqär)ñ¹`)¯±äyY¿Oç‚ï»b„}GºRx€5´œ±Mxæ X_xxŸøýûRx@³¡Ó¾žÉàzú•àÒÞ[*Äì#å©:ù>í½ïÿ«´™œæûDèû†!Me±‰”⎔êƒHÓÉâ®uûß%Œ‹› PçÉÿ‰ ±fxÇ0Ž€àd š3vb(•4æLZ3> '†ø,“6‰¯¾÷1-;Ý3³WyB-ðä•ã Í^ ?£>s[ØŸX£ñ¹ ^þ‰°ËÌñ*1¶u|ÿÖ_Ï㮢#^b;Å}¥?´Lôžq±¯¸…mŒZ`sïÿè¶à]Á»-™Ì[6‹%Áêheuå}à]û@ùºk ¤EµTMl[ùPuÕÆ`Œ´ûwúÖxq•™NUGÀb2ûðOd¯?üáÔn‰‘9`SáµPÓÓÍT<ßõݪÈËoh(§ˆnÅìl²É•jemñá„쇒At$`Ø©'}´2;FB;u©®c_ðÍÖ‡žõMjì Û>|¤ŒB×tîŒí!FNØúQª'ÞÈ>Tïy“"Î6ɸSÚŒ1î(Ëéÿw§Ý‹3䢆f^4ÉR¨%i_/m&önøPªF'3t­"ÀéÙ¥¸ãåxé£ß—(ô‡S0êÊX ìwŽreeÖŽqd Lš¹&N´ÝßÒOÜ–¼û‡gx…ãÈpî˜x?´ðf+ÞutÉŠ_j2³lêÈF~æ6òs¯;}ãý¾A4»“áT¼Ç&Z‰í©Î]ãøXJlµþH½„@’ ©î p<:Ϋ«ì#•ŽÉÝU×'GGdþ*iéX~$ÕH!Òwù‚4¹½þ#Õ^OÚÿx}‡ÿ&ÀzÇO*`5PÈ™=ê£æ<$X,*Äù¾**áGÿèèWR1yZô&oY¨€,gû Ü÷ÌkÇÀf¦1Q­§r6’gûŒN÷É%ö>ŸP‚šrê‚“r¨ “‚†<<ñ–í9¿7‘á}¼–+ܲŽÿ³¹ûÿ‘Zfù_ ÇÂ-Ÿ}–óüsÐÎj±Æ-Æ šî\ܧ‚û?d®!$¤óÕ|;¸»lH¦eJw–<íyØÎd@Þ$ìÄnš÷Õ06£;êkÜgÕÓÆ‹‡‡mÃöd|’É Ë9QÛ«r{:ç(¬6Ýÿ+j =`ã½I_öjlTЉ]âîÿµ²õž²¯ˆMÏô¨Ò¸w†~®ýs4~ø ¶¸ëú¾p÷É”rŸ-ÚÁ#|2ñ /û¾–£ÝTýÃKFîûÿ(Iæž…N©ÊÒ?31† ˜i'±Å}σÂ雿P˜‚žÂ§õ?ͯx½iã˸¼DËÖæ?ÏAF€4Ú‘£¢Žk óÞ'/Ø¿73‰np¨S/«Ã(ÃZe_‰r‘žbä®ê³`}LbßÇì?çPè ?ßâÄøÁnÛ¨ö¨ü¼Xâãå`×€úñQƒ>ï«cÓ•áîìBkv÷K÷б\M|îüÀŒ1’%i˜å*MUÇ~Ïkè ͶߟûëØÃ1š0ú6¨á6FŠ$À¬!äÁ`v,VÿÌÀ¤CiÐ*)€²5 ؉©ðâbèѳa©ãçyžšã‘M@ÿ<ð úDUÔQ‚”øÒɃ©!Ÿs-˜:»Ž[œO2Ý?`· 19Þà·ôñ+Wõ¬'*^^0…£ SjâC§?tAØ *rÖ–°+~4z´Nœ»«~¬tŒb[#-£#O£€žY¾ZÖpºöÖ 99ɨ}Æ),Œc‡çåäN 篦秤þûsƒ?2ñöòÀS#ÆÆ=RëkÉ—ð‡shyÀ’/eOw0&c›‹ Rb»æƒûshÍ€d=\ãš±·"?¦‰e ŸÜ«ÅdŒ^ïçâ®ybQô».0Þ»&lq˜ÉäµC¶Š;¢|jðà!µÃa <Å õ°ÇôAn>aÓY°¡"7à{šåºÎÍAÿ@ÿ…ǤN,Z/õÄþwþÒ…!7ÆkgGìX®¹çú7}|B=$GØ4»‹Ü­·íÁ˜{þ8Ì¥©•äû©‹·wô<•ÅŸºŽ•FÎÚg„;ËÆ Hs. Ï›6h–ö>¤)³—…DÔ”zxü€¯mõ-ºJn Ä9oSƒ¡M·‚˜b;›É‰âüÞÌ ŽÙ.d°VÐàݰ¡C l¼|Hb© ‰`Æ“#™>¥?9>Ƙ¦Pï­Âßþ'_PýI焳p§Ä͉uä‡ïÌt铎Ë&÷Zç:/‡?”'1Óp˜0-|¯ëÈ@×6 º™XJy8½~×§ÜX=´§¸\œO¦ÊÍH½¡ RþCW²O6 O’§xøvø¸²ÜÔ²R潸³tÇt'blžò­Ãr“­1Íhk ǰ•h’{ÈC–NðÖªÙ7ïìîTnjMwIÅÍ»)}fЄ¤½&Ïtôý–BvgšîF?dÛžBsTLTN»&\"Ù¦mšïµ”[1"ѳŒ‡æÒ‘wò«„”>ž„7'A»ÃÈrÛméi,êZò!¥+ÌnˆDÈL+ÒõÍÇM’Ç÷C¶:¹ D×ÄDŒÞä=3F˜§’4­¶·RñV#%9ÀBAÛ§SúròS¹‡ê©Ü9è Ï]Wm–eÚ‘'Tu|H·–ò.uǤ0Û&¼c lF“÷©vä>Uò,íS) fMVd}sŒI‡Ù~[Ë&žSÿx£x†‘3E!$­ ¾%﹦ ´-ð&™sbœ0&£hJÿš§CȇìA‰±„'C–«åöˆÑà^Z•h×cÂÔõ,ú™ÁæV{„çºÓÖhPrÊX-Ò”lÇá^¬¸Cx™«ïpz„\»–ÕâWà'ÓíÉ‚E&Jö}!pĶjÙh¶•WØÖ'§å7i:ŽÓÉ!Ý÷yÇb Ps4´5­| år û„5°·-¼X¿A†E×H£€ûæVtÏEk¹7)OÉÆÌñÒÇ>áã‹r­S“°FW#Žp¯Œ‘ÖEIÝi?ñ,úö]sãÜžHÓÒD-jÑ _vÖÿ„(î“Ϥ†pvdcàÙ±;(Ó|[±×ø¡mF/ù „OfÍèÒ£Ý<7(2ŸyoØ·»Š»E­ Cß>§¦O<úŽÌã1 ºõAÐH©"eWûäï qV?ŽF&e…íâßcÄGàÒ·MŒßAm¸HíÝ?ú¤•|ÂüÉ1û=kzåºgº.tµBƒë¡\Jÿƒ³X?4í!*a# ”>£ÏM hà®*éUÓºíäc¯ŸL#GZ¼­êªÈÔXŒ-|«çÅxÄ‚ù™Õ§Ã=ywäØ˜}jÅ CŽä¬UäDØr™sÆRP•qNÑ¢AÞÞc˜Õ…¹!©–è[Ÿ¦Ña'#N(2¶Id©™!Fúåȳøˆâ#ÇÒ`âm®]Ëé \v‘­•â©ãõœ â…$“Ù–ãÀbAªtŒ;t,Q+‘ëj-úΕ^%¶1ço^Ý ˆÕDk X pm›–5_´ªE»ÄÊQØ’¯ô#^Ü}Óè ŠêiBøW´.T:~ô÷îÔgª+P­¢KÝyV‹yÇ¡¤Æ®»µJ´S(Û\»xÄâÊ­Þ'Æ›èw§óú¨DoªXóˆd¸GÒÖ` Þ2èŒOM®–§Ê<)ŽÀ½w„N§8òD:àlF×7YZ. ¾‰ÿïSy}d I¤:KUN 1ÜG¿’KõöR>ºÅ;*'$Y×8VJ­ªs´È¤ÿ)ñÃOehŽ‘q”áDØt©ªV¥“ÃZ-ÒhWP—è§trø){™Æ1Ê•èF+³–gp‘ÂCIeן’?ѧ¬ÿ[h¯DJäP ’Å…zô‰aŽ$`ž‹OïH¶ßØÙè»vÆÛx×L=zUÂþô/ û;Ÿ‚žjãÉ}×îÚ‡°¹eKb‘}¦` Ÿ~!•‚†Žó,Ô7^ôM‚Âã?%µôS6Ñ\N·:MR?kl–­ÕudhÙ]2Ë~Êâ¬Þ®É!ºd>Öžk›L‰›‘·ä¼ðAú§ä©ð)¯f ¦ ê2Zb<Ï~ŸJk›u¬ƒ°ÏÿF€yá8FϤ“ gŒ·@: ˜)¼o’¤e;ô¦>ól‡ ž`Ü3³KÖ½[ kxÒt‡ö3²~ƇÙÉ·Jtîé©7˜2:”ÄÂßgt†ýÙŸÈ™çì“èu›Ép(š–Ò·ï|æ…èbo`ä±IK·S÷gž CG¡„˜h“£O£ûŒ˜Ï|ž ΤM’ º°—˧¾ÉDÙŠÜYâÈKð$Ç|öéŒnqjlR™4}Ýâý0Úטé=Ïœ÷3:9ùìW½›ƒ»fŸ®h 0­¥0N'}bru§\¯DG¶É+›Åç´˜>g·¼MÞ$²p²S¯hyù¨“ÿ¹çå3>±Éú2à8KõJ‰QŒ6m–”™ûüŸE¾ÐÊÞGý‰ªO/Ô+U¯Cû<ݱþœwqLŠª7Å\Æ ; QÙî%¸ze“G›hŠÊBýœL4Ÿ³‰æÞÆÈ8ÇMi2îàqAwázŒ‹Šì´ Á ÿÜ¥Eå‘Ñ9áû7uö_©W£%¹‚B_ÐÚÿBºŠÛ6^ÁÅ%1À” ÿ¾ß'*¨Vt´$WRzÿi:_|_nx€¦á™ÄUK„++dõ…ç;rbŒ†CKGôÁPòIÙw)hG½ÆQ‹>·Q÷Š/h½!S\ ¥+Èd;Ætiƒ·lKfüz=^öuã“|Afü/þŠGÌ Çù¼ÐªGgæõzáêСœäÏ î_K¸£‘íæv;1Nƒ€6h4cRæó iOQ¢K•èþJ y¯oê%ŸAlé V/@ɪ1 iܨóñe}3zûºO*żÆAP´Hß̤ÍcŠ¥Xßäå½-1ùF€–÷|Çõä=GQ;ccI}SËëÇGœÿÓ³©ÁŽD>ö20h]ïÌS=Ãù³†Û6Å7ª7x&bD U(ü’8ΗÌqŒæt$9Èå¾lÐ9™ËN³ôQ9Uψ¾$ô%›Z<{Ù)Ò{v-;ÏÔ‚–Kƒ:¬_z~tlñ¤‹|ªÅÈê=ó´/DȺ‰ßl´‚tÝ(MuêM}Jÿ’É—ì%„ûÚ‘9âü¾ / é®S½Éߌ–‘}CJq޾d_þ¡Íî˜} õ«Læ-RúëÍ:C>ðõýA}(•,:ˆÈÀ€fºVK¾óÍŽwÖˆÀ@ä>6ÉWƒ %æï_zfi¼õ:fm¨Î õV´ØQTdâ/Éý%›£OÍþxjà`–x†ÖM<ߪüò¯¦û¡^ò©kLúûú¹Ï¤!¯È£áC‹J¿Þ:‡<©GŸÎÉÎKª$þû%óßé}b¾øÉkˆŽXÇ'“Ó#×å6Ê–äúúÖùü®}~ç§0bÔ_þRØzc0œ8Þ™‹ÌÒ3ÿbmíëâÀF'(³ožšƒ±ó¼È 9|þbÂÖ©÷û˜Ý-¿»‹1´u×äÞÞÂÔ vc}qÇ^[Ër˜+VF<! ˜˜uëúêXU_É€çgÆO¬O`ÅÒU2¾0Õe¡UC¨­†TÜó¾ú1ìø_ýø¯¥>‚öÇÌ‹ò)¹‘—è« œãÅ·’£V¼s£oŒNe0€¼¦QÒ?z¢×ùEõÆ(µ1›m©ÝÒHÃúf³ýˆ÷S69pÀ >Áw%ñ¥ó€WkùrŽ’ÝæJúÞÓݳTèåuO™¤^88½cOËÎÖŒF6ø€ß1C“â;ñTdäHMäÏ=z˜Ið<ŸŒ9fRô“1ϧLŽ.er Ôt)“ç³þÅ qpNã€\¿qpsýÎgkœw>snÜÐieÎOb‡[`ÊÛä]ÔHH"8!m⍑­SÙ‹ìg‚É8ÙæçÆˆ³Ðv*ÿI_ò…Æ!:•—¦ùBreÆ€ÑÏ•(i®ÌpxËΕ‡y\®Ì€l”1ÈGd£ H ƒŸ~É@Ú $ƒ’-ÆÐö²’-Æô_'Ùbˆˆd‹Y£á¥É1 àüí¨8 éå…KU %Ê K:Í'ÊK:jßÿ§È[ L~ y ÉïbÛH‘ü®¬OYdò;Öx“%¿C5%ª«…*#Oˆ®ùæût&‰óÒ E@µ¥¥â‹f~#_øº\ _ Ð OÅGÄ‹¤â‹ÞõÒ¥â‹ÅW3_,n)RñÅ­’ESñ…ã¼üT|±ãœ$_ì`'IÅ‹YºT|áËO‚M•Š/¼çËIÅÇ ¥â›KiKpÉSÚÅ"œ&¥]ì(/šÒ.ëø”vsYèB7‘ôYèâÖ™Vºh;mÚ,t±¨id¡ ±%d¡‹Å/4 Ý\¦¸8j\F¦¸8âÑÌ7Ÿñ,ð²2žÅ t’Œgq[^ƳXŒd<‹Åèûž©Y/ãY,r‰2žÅ¢™ñl. Y8rÉÒµæ„Å1¡Å„Ū~‚°èƒaɱ Ëé5—A+ Ò"´âä$ ZqbEÒ Zqrw Zqü;I­8Á!Y­8ÊÐÌ Ç43hÅRB|­ØÅgÐ _€©2hÅb¤“A+nwNAk>íUÜ줽šKX¾Ë/š°*nüR$¬ ïðÒVÅ-ù¥%¬ øe%¬Šÿ„ «ÂÇ~9 «â~Ñ„U¡ã} «â y°*ŽAh&¬Š£¤ «âlÙ‹%¬ŠE4aª¸=;eªX4“&¬Š“‘%¬šË/ŽîóKÅ‘jêüRqØ/;¿Tœ,”<¿T¹¤Ê/.,I  ä—ŠE8Y~©pjÁüRq[NÚüRác›.¿Ô\:¨8šNœ*Nw]<TزHžjþžsl½¬Jó…âHbÁŒBq˜†fšÏ󷓦Èó·nåùˆ“Õ/.ÏGÜ.?ÏGÜ\,5ÏGì,-ç#nN”ç#n'L’ç#¶ÓÉó|ÄÙŠËó‹p’<±Ó’,ÏG,n ò|Ä¢–<ÏG,z åùˆEx‘<±¨'ÌóK£KÍó‹}‚<±ì y>bý’ó|Ä©Y äùˆúDy>bibÇO'ÏG,&ža%.ÏG,:zy>bç3ižX¼âó|ÄÉÜIò|ĸvžØŽiæùˆÅH/ÏGìzI™ç#vð“çùˆ9<±£–$ÏG,BÚy>bG+yž8{ý²ò|„èòò|Ä´FžØ™Oœç#v„—’ç#ïTy>Âq_8ÏGœÔ³¬<±D¡—ç#Îíf9y>b‘M”ç#v·]Bž8¥u¡<±D­•ç#nP“çùˆsÝÓÌó‘X¥HË1Ÿ;#XÂÜá†ø…sg¡š6wF¬ErgÁK“;#NêÜsI(â–zº$syÂi`‘<P—ç!hHÒåyˆ%Ï$ybés‘<a˜.'ÏC8 ó8$Îó> 0až‡ðyZBž‡ð¶Ô<á+l9yÂךò„yÂñ]Rž‡p„—žç!î¨9Yž‡8®¶Œ<±£Ÿ6ÏC£_fž‡8öš ÏCÜêIŸç!òró<Ä­ÏDy·ÀÅò<„ Æbyº¾hž‡ðQXnž‡8:N’ç!ngL—ç!|$Îó'Ö¤Íó's¤Ìó'&Êó;ñyb§&Už‡8E5iž‡ð…Ÿ*ÏC8³Kç!lSçyˆ#ì¤y‰%]ž‡püRåyGo±<áó²`ž‡Øñ\(ÏCœ%Iž‡ð%ž.ÏCxÏÓçyˆÛwôó<Ä1n­<qÝ‚yB%ŽÅó<„Òû2ò<„ËByâ&?Iž‡p³ÙRò<ÄÆByÂI7]ž‡8dSäyŸª…ó<„Ï\Ê<A“æyˆ…¡•ç!n¯H™ç!l2ÍóN‡ äyˆ[˜ äy'ÊTyb»Ÿ2ÏCì$ÍóKœIò<Ä7håyˆ —ç!î앆hô Ž×ÈÏE‹ì5ÐÞï+‘Æ0‹o£é' ÌØ¼Çâ±»ÀPh,±ç|¬âäÑ¿ºÿ¢Ç^zïÆn&ÓØÛÝß»mñ[­½ÛûõíÖM„]×ÁUu)ºÿ…:ñcc$çÓÄ"ÈMBWo7at¿DtÙ£]ßÛß’šF&s£~ófkOÔwš@om#ûÈkí+¾áU|ÌiJÃBÓ’Õ} ÊêçÀJÏÁ1@*øQÐãU‚ôwØo>ƒ8€E»W¿)Ú»{È€^iíd2ê3äIH\˜½¾c‰A‘I¤4|ßSÍÏNL³wÝP @4ñ…êÄF4©BákÿM¥ åÆ/B#‚(è±´Aûïˆ/Û­ärskûNM4nï½°‹ZŒ«¨ÃǪÔÚ3A„4Ù‚ Àó«½öîüµ6~Bª.áC§€ãVÔ#(·ÿÆMz)üÖí[Àï÷2™[Û·vQN)VšõRD|õñ÷‡L¬³wø- –92¥ñÌR¬xŸu=¡¾ú’®ìS-àHß"Ñ‘§Y>ÙÁ ÑS¤§÷¢¿úø~Ù TÉ¡q†£YN¬ß|ìÛâ†hCï„… t¹£@«ÆÇŽÿ ¥ó,eìßÞòdŒæVýæ.r:x†$V¤?þKµóýÉ‘‡¯–Âá#l/i…ênÕ›-³u¿¬…wÿ󠽎O½?<%1NmŒ$%±­$Æö3?¶íÛ›²šV/eUû Ⱥé#Õ—Ià¬ÄÚ"ˆ‰ÇŒ¦ªÙ‰êß߆)‡ílg÷˜Ø^«ñZƒ˜ïvÄæ_ní´ö¶â&¤{[õí}hT¹Ï¯ÛƒÿîÓÌ1Ðâp7=¼Ýßz[4OàÿÀnü«”›q—oÕoAoܽút0Þ~m#°6«·s«ËùúÍÉÖÀŸ#$Í][ïVí~Ι=êâZ«i™7ÔôÁêN*#œ{s\#ݶ³ª*ă™k=øÈ3Í6X8cÒõÍÓ#«ƒÀÛÖ§¡pAí|µ…v˜šÖq‹o?Vz|ŒaUò;7!*^zŒýƒz»:ÂÖÞÍ2Ÿ oµÛ7jå¨ýÌÅ oïÉyÀ{¸æd´Ñ57úÍr“àë ‡¤-<øSÎúîîíà Àiä.uPçàÆ^ 4vx¾/»; ä¿Œ\Uxh°Nk²žÀJøàÏd‡þ\ÔŒäàâfN³í¤N*j=vWœŠkþ¡²7Ys÷ö&²Ìvë&¨f¤ö‚œ‹¿’ hÿ`o÷[-W®k튫ÓW>óŸñ œc“.kyË£Nâa]OËäqù+DŸµL䃭F}[¢ ŠÜîÞÖïìî„•@ê„@Óùƒ//k±*ÌÄü‚¦ý®®Gdd'zðךïßl5·nß67WÀØÚƒ .“¹½s³¾··E[ÝÞlÝû7¶nM7¼M¢µÍZó-ž¿“´ö÷î|uð²iM&æSšŒPšÝ$bÛÔ±|IñûÁ? X¾1°ÓºMªÁ~kÿßßÞ±¤¹ò‚¥Õ¸©g´g„ÿÁ²ÅÞ±;Ó½á}d8&_Š*o’ù¶«y(+ãWõ!_GØG± Fø[­×Ü}н ëÐ@ƒ”‘FëèÃ?Äxû–†y/Ûþ.wè¿‹á\…{Р¤‘À:úð±VÈöê[;žAtg÷Õ›u¤ú†æÆ¡\Cû¾OÊÔdêX<†&-wvJÜàI`mèIz4ô€(³iÿàöžÂ\U»nsk¿NüªA'Ķþ‡^¢]x;éœLp7Ð;Xö†z°,Å™¦¦ª7ݧ¡†¡?b{«É„ÕÔ´(øüÄ'z;‰‰Q‹ï˜# ,Í1r₇Þs{´èÑÖVߡͺ©)Ç)è¾çÓ—hpššú¢2^„-ÌÁx„Rz“ôD¾«Ǥ(wúW?@âã«ÊõmàQ;À—ÄîNkãÕúkl„Ç_ö@LÙjxV¶lî‰nµ¶›ÐrKÓqEÕý#Ç6ü‘ç^¹•ØöpšHþd2êœ ’¤Z Ì`ù«‡+­Ìû¸ãܬßRõE:|»±{{¹w›¶›v¬h3µ >”ÛÍCo»qïjd2Þ¡Þu¡PÏØí;m#’Ûî;ùˆ¿çÇüÖxCâĦ º­IpÊ|ýŸoD×Ö<UæÉKåäPn×f[ó\]Y›ÞåÞ­`nnïð¹‡"B$~[ÏjKRîÃÿ*gƳÚ:w,åzìÌÅc5(´n×½›]c6ÜÓ‰=E‚ÖÞÞÐN+#AÿVýr¡–جï|kjÀoÕ›û°€ÅË{õWZ¯Õ÷šSñ¨øøìá¿zS>1ûb89¥«Ü-ºt­§f“x÷ðâ¥k6Þ6nßBÞ!7fš>ìn¡åž¡Õ«±µ¿¿‹óXÉ&öù™jÝu:–ãØ#!ç¢þ`ÿ »?ã Ó¤1ΠçšUt¯‡ŸýÑ”oáÁ6:z>•lÕw»=±°Ÿ}ŸÉxzÁÝãw»]ƒ„ßnhšÉt ÿÌ“Hxtå)jk§±µ›œ~æM0˜1FÀÀÝðÀ&ô3´ ýŒmBL—*jî´ïlm"ô䪚†XoXG*±ð3Ÿ=Ç£„•ØSégª¶œIl ûç)9•¨Gî}¼랬Vt¨`>{úi÷DÓ¸k!Íé¹júz9Ê2„‘Âè.ùJXC!–5L÷ØŸý£\eÞ¦H!6œ¡}Çìz—2~ìf Eü¡½bâ‰þSÕ Õ%ØÎï˜JÓt¯€úþC”ØóúO§q§qv]Ê+&ÖLþôGó€¦,°D“SÒS5i'ÿÓ÷`fþT†lƒQ÷9l»ž}ó>â•Rò±ôòtQ¼ÆyzGJªñOÕ#%>³Qà"ÈäÄó‰OCêÊ{õ Õ…JYO½æ¡}„Cˇ?®ž¿&ws¿'O„›´^£ÖãÌÃêÄþ••Ÿó˜ûÜ Ã¿w‘|ë‰Ê~®2Åý€m&>¹ü¹çø‹1ØÏEß¶‡(±_òϧ‘íù.ƒ ¯V@³K­Àìò ‡.øê/rA§=† zŽÝkùÍ,ÎÔf6ÁLýõq³í1›©?_!p{3‡Bðf¼KÙ´Oý!³KïŸ}ctlθîªÏ ™Râ9ý›wÕmA$îþfš¥Èî÷a`qõI#i![HŠÒÿúÞß©ò&TéÎ ‚J*Øÿ¯ïý«*+!›1ú°i öUÈ×’rÄÿõ')`Ë‚Üé˜â«ïý¬c ÆSøAÎWßûS—ÅC3Io½ü¯?ù8¤ÇìŒÌ±=×ÎfézX6[ÐTVþ÷/¾GÁ¿ÇæÐ›õ¿µ»ó²8ØÚn‰V}ÿ@¼ºµÓDÀò|gwïའ‹ÉúmýáÔ!åä- ¥‹¤ÒDztK:ÛhÅõáõ|–/©~"hüÁæûðò^«µƒ&Ý—wwÐ[¥þš´¨)¢yO£¤gÄ>6Ýh'íÌxSóˆCxá=˳ò`¤aªÈqùþ€&þóÃob8¹Ñ]³»A°^Êd|OÚí—ðÊ#çÿÉeãqï(ÿ!]¨þCÆ×µòýNkoWž—l×÷od2î‹æîö6Z+·^Þá÷»¯´ö¶ë[MPÁߢˆF^oÀ”pø·ž¥q÷Ökdu“:;€ãPK¹²N¯˜|ÿˆB-ýÑߺVpt¹½¹'†ÜÎܸ}³¾#Ú[/ßÞka3S:WÉi²ahàïdXœ?òŒYu¹ìÄUЬ,ÆçCóZ&³ô˜mq£1}SýŸn£¿rÝ nôÖ”äüyyuhø=¡´Š='ÅÍÉÜ©Ñþ]Óþé†ýóñocÛ» óʾ‚,Gè͵Jñk¥Äáÿ˜"ôþÇGr­ïK¼º»7µ ©kÀâZÉg ÷|6¯=òß§Uß÷Ì+*Û=1Gæ”éf2~– ¦ç=ÁÙÇšóÙc¡ÁdŒ‚ïSTïÿxŽ-¬¶`©«¹zÒÉÿþƒ ½¥72)'bPG4×¼ÚÆßµá¢ï‡^ (tùB<¡¹¹Ç¾ÿ4Lÿmn¦†#ûÄ:©6_K®‡£'Ž\Œ‹>;ú>ùþ<'X³SVà)+RL›|Q§^?ø6òƒº(Öf)r#œÅ(_Òçx? =é?™Õ# Ã„ ©Ñé˜CŠuëËÏkü®øz®ÂcùÊòŸƲ”Ÿí&ïŠ Ù†—â5ö‰?ï°~¾ltïþÔêß9œj¹À[m!#(AÔÞ¡­öf«Ç}ûȤ­¨f´&# ºzoduŒLÆÿ²~jâcŠz™M¼ÊÞ™:ëø¡:–±QŸ8ã‘Ñ·0M!—Õ€í‹Ëôλ~Øœ °íb¾\‚™KŒ¯o`žaÜéÁÉ'Æí§S5á¥Z•÷¦0‰õr1»Œ“í÷hY§éY#g,P»Â@=&0”” ¿Ìð«8KøÿûÒé‡NÖ­£#{âÈäÃù¾ÔóÇS›Ó,0íÂ?Øf'Íõ,/§'Âì¡wâ27ÄS° -°J,Àw¼àÛt:*/ê\ä¢öÅ¢{‡RÔ¾Ã>æÞô»©'2ÄŸ¼ðî“&Ã}‡¼½óg.Ó8ãôvUV²=vÿDèy½Å¦Ž‰jÂÐ\§xÑÓdh`7¯£4J\ÿ‚på€/®ÛÌî-åNÛþí]dÐ1 ™åÝüO¤ÐûÎ_+÷f]o¾•KŽ)”“ÀKžVÈó„æ#÷ÿ$Iò–MNèNø1B¬1æº(x7)èošïP¬•w8ÕÞ0Dzcš]´¬ÀòM¡9Ø~Â#ùæ>åÆë””Ÿ’(` ¬ŽÕ ÛI ò‚³“ P”Åwd”E£*awŒÎ˜C0ʉéM½ Žƒ;41),£ T…¢†*‘gUâ BõCŽ•<žô­a&3ƈ´äB°tXýÐKåÔ7O™Œ—Ž‚ÆÊß!¼\÷Ýü[:ÍŽ1äÝ…Râ½ö‡ÓÔäœË°P"¦PÙŒ±"ÓöIùú!ÇeÃ[i'xóÜpJ¹á„2„*:ìÕŸ?2ð‘=sW+M P>*ù¡j™9ü¹—ÝX=)b`º†Ýâ!ÐYÞLÕ?üŸ4,>2’¦›‘ÝÆ#øKfü+pî¢B-†*„ù#’ôž´6Ãþ=@0º¶-bÄ+„ÈK²¯åºÈÿè}Ìò&æ`‹ü nð­áLfs÷ö¿¿Ý:@C»zïSƒ,Èdƒ:"ë>”l÷GžUÓËÕ#Ó¸ŽÌS‹Üz¹£ÔNUkÆâù‘ç™~óö>9õ~«õÚæ.䨃¿…Ö%]ã.ÄмçÔ ?v»ðpHdÒµlèI¤îí;öS®‘ÙG´j¼ìkMýÉùµÂ±7[õ›­¦¨ï7Z;èØçõ /âìÃñûf+¸aÀ´]‹a<êlýÜíªw%­gßîŒS¼IgtO-DZ(Ð6f‹¤ŽÖ³jýHò.°¢ù£?SâèwŒl3fŸ£Þ†Ò/iPƒ?”¾çâ 13“ÁÒÛqÔPú^Bœ1Nöù|p-ŒÂƒûëÑºŠ‘áÈ`Åm öX†-4t$y?r^®°ÑäX¯ZbËV7Ãiî/ÒFXîT¤(jŠE妎D$ƒæq;ÌveBTq ƒL©óŽÃs'šÌw›ñ ‹/¥Ì÷ÝNx ]6€‘Í®âÀ’8†‰ÁVZ¼®ZñÛ†7T¼®þRJž\Nž ehƒÎÂAü ºÎùŠŸJ¼ë•³ J0^'ñ†ƒÒ±ÊPO'¶3„ ¡‚¡#·ü6K&íÓªÂ<L„Ì„YW¸ÕÚ٩︷òO_Ðè¼O¢øñ?ªÇ†t:Šî ,ùHz)ùìÕƒ¤Ãèühý“zo;3’ é±9'Ï”Gkow¿upÐ"`:ÜÎÖõ¹/QŠ Š…?"tŸ*õc -üãÿ&aØ}d4NaסͩȦ¹b6R$ÉMüï_¼KÂÕ»ÌG˜ïydY”%!«ÇŒ•®¾ë1ãŽÁ jŒP¤€áëå»dw}—5>¯Äxƒ–B1ËiBâÌ„Š‘é]RÞý‘d3†…¹ q×!pÄ‹¹ÈÅêxß%Æõî»r¼NAåÀûÅçìÈ逼KúûlY3ÏÐ$ê&„+æt¥o½ûÞ”ôm™Ì¹˜K|pü®w s‚<@`¯Åw=OPø „Î"ôwèCÅZ ‚tÚb¾¦ÁZÙÎñ.¥³{÷s©ž ™ghÛ]¦¥|b»Ü»Ó;°R¦–³7N&§CˆÁÝÏ%¤¼'=ó´:ì¿úTNkx:`êÏbQGCöç¦ñ,ÈtpÅbbƒØOþƒ‚€Y›f@*ëHÈ,‰È H¼ãR¤£ 치+ÅêÃÎ.ù|±œX4þÉ#oïˆNH_æ£èa[Jæ#´X棺ƹM™y'g>ú)‡éœÍ|ä M³sB·ØÐ]¬ë˜&|ãÿÓ¿™ZKí ehVÀ1¾›:66ÞÌ~Êø²Í•Kì3ijx³q:)Ïí&Ïí¦ÎfÉÿÓ&øïÇœŒlò• ̰>íðÅ–†A©$áÓÿÓìæ9SÐJíPTC¼_J÷\îy¡à(½ MÅS+FÏV´Ü÷ˆ˜Þ㉠£Ú0ø2+˜ï5®Ú~b¿ˆ÷þ³*H`£Ãø|”ôÞߪ` R ‰Š8 @±Ïn\Åç=²/¿ÇbéÀ²ú : ‰—AOÌrÞóî+ l¡‚¤5ÚfšlÇØ”!â=¢É÷˜&Ô@†#¤ÔˆI.lëHr~4©nu#x¦Ù9!€,×µãy‰«Ž½÷/„'›5ÑÉÖ–ñ üêŽ+°Û‰mœïùlœh¥Žl Rl“ÔÖ#Kµÿ^Bå[»{xSVì´öZ»ŽÄÆR´¯KNuYxïWØû÷9òpdœã-kÓ@n=2‡¦1¿¿oNÏòKY=µLYJïÿ7gÊ÷ V®¸kŽÆEƒÜc)_Y–ó•i) ŒýûHس’ÐAõÜM›`ÈžŸÂé„n&@§ØU¯”\xßS#$ä3¨arJIв‰:ïÿ`¢ K«¥´Æ¥œ†\"¾ÿ'4,,0»pݘ4”€®‡RbIK~ö#ìÉσWŸ#W_‰ÂKy%Ï\â}: ß•Jì;òê‚g¶CËÛ„g¾Á€õe‘÷iûx_Ê"hv:°M`ê¾I¿\ÚÊK…˜m‰Æ–Ũ÷i+ÿ_¥õéœx:Ç%@oo΃2],œ ³TŒtðyj~@©0?ø¾b"Ù®líð]äL¦ÑÚ>Øjð_ÔB[ˆ9PS³üý@š¹>ø—9Ù§ˆ>gòãôr¥¢Îá8/Ã(½Ü¬ÊÞ1Œ#à éîOTQLì&úÇ27w_ݦ¨1¯½¼ÕÚª#8öf*•4ˆL²> o¦Øß€6ɯ¾÷1ñ ‡3³WyB-0µ•ãP¼èPàƒÏÜ6Æ'Öh|î‚—"ìr•aÇú7{_üÁfq„ïçíßjÕ¿…a66ww¿EP™ñWbŒ{*ü­Kž«}r qrŠ»uh™èËèŽI%Ç-èÛú> [ßÿ ¸ ìëöö6ÅÜ$òÝÜÝÁC’]qkk¯ÞxÚ)p;1ºtEŸt{â]hƻߙÌ[6¬NK¢¯£S륧¬ðú¨–5\9åHPš—ùˆ‚œžoàxq£1îYkë ©ØÚ!gk 8tóˆË­WZÛ»·ÐÄWª&6ñ}¨ÞÃ`ØIjìô-NZez¬ÆŒ·2¯~Ÿzóe^oÝÞ¿q cðýViÌ×[6o`UÙŸʇ"§ôÃNO0|:(ÌW«Ì¸«:~“íÀO'áÕ½- UŒ“‘ÉȈ$»ßâÉ¡ÐAsÉHµÆ\?)¯©ZÌήpÚÉ2÷!ïìÓ(ÓìùNxÓ9jº¯€Ol×_Ãô^ÑW¶0sÒkTvm.ªÎÆš$j©F–±R=Þ¹ÈuÉü,cþ¥²ýùKO׌>-=|…ðšÂ´ bR×18úÀ‡ÞI ÛÿÝ$½¥zb£ã‡’èšÎ±=Ä`ûà ›CKuê1;Ž: dÎùwï»|cv¸±ÊvZè!!]voÞÂØL$4Ô‹¾ª¡+É(1gñc3fçQ,û~N˜ó±Ò­ÝÆ·Z¢QßnÜ1gƒ¬½º+6oìîpW°•M^)›1»²¿}ø÷. ñ‹¸ŽyxèF¹Uä ji“÷Í©‚úÁ6Ü)Qå‡ìe³»ÝŽ··¿»Sßö†:“iî6nßlíHÿ[°øøJi3±_ã‡jþ':ê§ ‹2Ùhi“<àJw5åõÃEü?âPí½úÍ–ëe²»ò.nEmèWká7ò ?†W)ý¾œþp*aŒÜ¬î|¡­=´4tŒ#k`Òòj0KjÆS”»¿~D7À>â³ÖÍ[¯É@¨·ê/““E‰SD–¢O™ýØÿÄÅÞ‹ct†·Ý 玉^}C c¦a´ÆA—޲K|à\jê/…ÈÑç#L›­ýoìÞ¢»u»¯í´{­ú>F|ÚßúÖô®T©É"jSç„^vègn‡~îMGß8Å ±v¿ov7&éQ‰š`™²¥³²å<ëGìÄŠcÏå^Ä:hýöA&³°Ká˜ë{xÈ[j%¶Ý¤:³vãcF·¥ã:îÓ2>ú ÊöÖ-"“VâçÔ[ì¤j“iÛ4hƒo1E´tØ:oð}BCÈlYø^ýµ}Qß©Ðeêô„4jD‡—ç}Wy9ÝWvmæ“£#:ƒ*µ˜­·tÔVŒ?"¶þÑŒšÒjÜf¾¹‰¦h箣d"QC‰’>R£äËËÜ”uŠ=ÛVKZŽ rumõ#VVnîî6§X»Ihè1AON%ª_$Œ§‰]øoÌäÒÖ‘Åå “óîGœÕWfwÙoìmÝ:¿­f£á…¸‰»TãF«A:c[ÏgH톊ÿÌõÑæ?$X¬ÅÝïQŒÙ‘Nôѯä‘Âd0½É[Z³ @–³‰]gï{ƒÇ ŸL³ 0âÿålŒÎ¦—ݧK€÷Yg;2Sœ4yÉDx‰NŸ²=ç÷&2åŠ×r…[Ö¹Â\3 Á7€Ô„2·²ÑÇ´ÍóÏešô2»6PÒ%͹¸O® 2éÒ™ô–WæÛA1xC½ª©˜tgÉ»o:Û™ (I›„øÔ}5QÄèŽ:Z·ž|Ô~ßóƼ>5…¥³gù;íÝv2ï G&ygö1…€’Ä«²†‘×åX÷é‚Ü}V'ãtBça4k ,;Ö]s =±™÷¾gæí؃žš€%vμÿ¡ Ï#Up‰½4ï{Áhî Ÿ«:ɉ½4ï{ÉD…GòæA  db“þýƒÐ›g=±ßæýáÐå9¬<ñ½ˆû}£A@Çöàx£Û`Õ÷qºOfÑû?Ÿc,*h nãC7t”7—‰Ze¦*A{ÓÈR`åI Õ¶'ã“LP˜XΉÚ^•ÛÓñaÙò>’ïóYKØxoÒ—½[#tâ[!÷ÿZÙzOÙÁ׃¦whªÒ¸ç}W½úçxÎâƒØâ®ë_¹O§6÷ù,>x„O&¾áåë_åè›Zþá%òþ?J’¹gá½,e韙èÅØëÏ´“Ø/õ¾ç—êôMs¨LAÏ2¥õ?ͯx™/a#V»¼Dë˜ÍžƒŒi´ " FEdvP»OÁ>þÞÌ$ºéN ŒC£ k•½<ËEûŠ‘»ªï(ëcû>æK¾úó-NÌ춪³ÊÏ‹%n0^vÏj?&ÛÅÇ>—ùcÓO01ŒØÙ…Öì~—·³»T¹šØcî'cvC²²”«<4UW^Chh°«À °¿Ž=£Õ·owìS“ßàÖ¿ný€"]ÈŒ'#ÃêŸ8ƒäN×ï›”ÙìÄTø@¹âÑ;EQÇÏ»rjŽG6Iì¸òÀó ª¢Ž¤ÄWºL}Æ,ÁÔyØušå|’—Àvh“Ë0~Ë‹媞…RÅË‹“x4aJMì.óà‡.{DE÷%¬ÄŠÆƒM§-\ç.¤ÄjŃ+£üÔGëdÈ‘§Q@Ï,‰•5îzë…džã fŽAO?r„”óWÓó°Vÿý¹ÁŸ™x{yà©cã©õµäKøÃ9´<`É—²§;“±Ínn)ñÈ4ËŽ‡Ö HÖÃ5‚&y+òcšØÒoÇÅdŒ÷0ÏÅ]Ê÷éÊw-lqãÑ„Ž¶)ü¨GZþsªGÁƒ‡Ô'1Ð £ÕÁÓ¹ù„MsdÁ†ŠÜ€£ ”ëzÆUu =ãªsbÑz©'¾9ðà/½'ÞG¬ñ͆r½È=׿ìþ€Ì«¹žQfaÑÅ ëm{0æ^£'1sij%9Å~êâíy¹ÍCeñ§®c¥‘³öáþ7ò,kà  ûÏd6h–övP(³2%‡Ñ”zxü€#½á!™5Gäv~L 6†6öä›…íl&'Šð©…ávhðÉ[9ÚÚwç¼=`Ñú.9ÞµT÷¦¼qe3±ÕâÁ?ÏPß™Ñ÷ ñìmê[õðúà—.ÎC³ RÞèd2«ß™2|´ÛóMu›•ÖäÊ*S朚Ê 2²Ñ¹‹êÈ@@ä·™X»~ð«é‚Fçj„ÒH,Š>üÞÌ ŽùÄäÈ`­ Á»aC‡ØxùÄR™pÁŒ'G “â©Fr|Œ´ kçf¬Â%?¼‡|Mö`o«¾ó²›]jo÷öN“ŽÔ) C&óòÖÞöþôt®ÜÐ †£ì&ÿ“z?ÆžtNèbÐÀÄùÃwfW¹”M ç¼àþPžNsâp …#¯HÐÍÄ2Ñ4?ΰoÐ5´Þ¸{ŸÛRJ›X¯ ^gI8’mPT“Ì÷Ã^å&³¦ŽóMa¡d>šýƒÛ·êt¼۬<-kžÏ­Þ4h®5èNÄØ<å°!å&Sk3Ú–ÄIØ$näGû¥› ;cöÍ»»™—›l+Ò:™æáá}‚Çö@5ØÀš ¿`_¢F´h´¤€ªéÌ¡[. ÄM&Ïè{Û9ÊÎè’'gzÈæ?t¯â¤2¨¿wM øLj„M’ ß×.ÇÅœ¬L¹êÃ?s‰ßóâQò\žÛÆø* c$A)™´x[ún¿É(ݾµá¹2azêƒúÞk¢¾µw Ó1a ‘ékÎç¾£¶õJ•ùø2Q%7—Ô3R«‹Ú»Há‚1–ðc®,»¶"¯køöчtKñ!Û],E×ÄÈÎ Ší=3F#ë.Å“(·˜¤ZúñrRx(™!ÉGí­æ,ý·(ü`¹ø„é¡åÚº² 9߬/'¸Yÿ¼m²€µ»ÓؽIIÍ·öZ¢µóòÖeVkí·¶Åö.¼Ü=Øz…f ùaöCõ0{ˆ§utúî²l>ĦLG±,[Ž5bËDGw¬Îátl›LKc`ó€°ÀÕŽ\P%߀Àõð—Ò’gvÑöJfdǘtX~ikîäT–õ/Þ|Ý Ã«»´ñi¦û¹¿ç_Œj£À8ΉqFÀxUD_bò³:M—ù’†j2dQz÷Œ]ÎkA#@µ7?ä(öp>'Àš] гR!"¨Ä…;V|¸þ”ˆàO¹ôZÀ˜FÀ1=/žZ®ÆÍDjÿ•‚>!ëá'?—ž¶¢Ô$¬ñÞg@WÆHëx½¤ uŸxÇë}û®¹qnOäA²µ±×¢¿ *1~BLó“Ϥ=ëìÈÆ„mcwP¦ù¶r¶YãóîZô¡oÉ×w2{è+oŽ›çæ%i1ï ûvWqÛ¬t¸§ï®À'÷ŽÌã1 Š®@ЈuÖ ‘²œOtù„Xç',ËLÃoôL³K¹Á1D§#p·MŒåJm¸Hó†ôɆö !ŽÙïYÓ¨n=Ó½ìTã èµè0">iî ‚þÉÿ”šöM†°æÇ}FŸ›@-Í]UÒ¿¦UÄ'C}2M"dQ<FPE¦Æb¤–ç[=(ÞУ?’®*}rE‘1Žm£/Ø;½V¬0äHá  ’‘?ß#>gË9cièqOÑþN× Ç0««gN©–è[Ÿ¦iÊ&£> ¶Iƒ«™!FïyRÎåY|D ñ‘Lid0ñ$è®åt._Ŭ•â©Ã• /|$™Ôȶ Rõ cÜ¡CôZ‰ÏkѱMJꥡGäxþˆå¯îätÈ´ÚçѶiYs@“Zô%I9 [’¼ñâî›Fï\P€×P¿H¿¢å¨Òñ£¿w§îÜ8SWk­€èêÎøÈ³±Ïã8æ²5¾dY«Dßúâ‘`A뱋G¬£¡®í9ä`PÍ~wŠ0¯Jôö¨ê.HQ{$-ãÖà-ƒ<ÂÐßÉTàj©jªDûÈSÕhܰ3Gx— ‚çJKoS5ÀGžÞœÍèú&KËáÎ7ñÿ}ªþ,‚!‰Tg©Ê©!†ûèWr©Á^ÊŽF¼á„Ôç·­Uua˜ô?%~ø©Œþ92Ž2àN2Xn­JzX­yÄTP—è§äçò)ûÁšÆ1ªFè-M+³–gp‘ÂCIeן’÷ë§lï<¶ðt )‘£AHêÑþ-9Râx.>%“ç§|nyt8cd£§õoãu^3õè!T ûÓ¿$€|ðÔ8=µÑϬkwm‚ÇCX޳ÇÄ"ûLñ?ýBZ4^qf ¾Éð¢C$ÿ)™Ò>åÅ#Ðú(z’I&³ËýµºŽ -»Krÿ§,nÁêíšSÅék›L‰›‘wä¼°Û×§äW÷)¯fÊêhXˆèdˆùvú}vë©mÖ°Âr<ÿæ…ã=“ÎÙ1/è€`B·}“ä ­“.ßÁÆgÞI¨'ÚóÌìÒYTϸjxÒt‡ö3:ãúŒ]¯:“!n•èŠÚ'Ro0eFŸmÉž³ð÷y\}ö'ræaâco¤d2-´¦u‚åÛw>óbªó=ä±IK·S÷gž CŽ;„˜è#+ŸF÷ 0Ÿùüêœ1H›$ta/—O<'m«µ"÷C–8ò<É1Ÿ}:ë‹hl²ú8vçm0-Þ£õg¦÷cð8¦¤¿"¶þ9/ÒÖíÌWÚ¸ÑÚß§”x~õ£z^çŒiõJtŒÞ¼²'}Nkö󔇲äŇ{‘Cq,'Õ+Z®¯*}î¹¾ŽOl²ä8bt½Rb£OÌJ |þO„â•>ã­?Qõþé•ïz¥Êàu–˜O!Ó>ga¡;²‡¨áSZ5  Š›í¡©s@‰z%ÚÜ[TøÁçdîýœÍ½÷6FÆ9î}“qç„à5ž¾…÷s²ð~>o²X3&K4ÁE=ÆT‘/ˆô¾`&vnoœÛ(öŒÎ  ¨³çh=:°†¤&³/ˆ}!/iÙ6†íÂå=À<Ȕֵß'R«Vt´TZR†ø ÒÚ¾ø¾Ü¼MÃ!ïm‰«–8ZVh÷ ÏkóÄ F‘Ò¹cɬá rÙüâGóóT5Xž'-¥Ú‡èôHêľKÑDë5žíè¾Íõ b_ÈäÔhwê :—ƒµud Þ² ,“ÖëñÊ‚8õ :çþ‚I½'fÿ8XMƒÔ£#JÊ%)‰n¯~ñ×îh„‡¹ÕéÄ8u ÊË*F"RYÌtˆø…4@)a/aÇòþJ Y(ªoêP>;ƒ}A ö ÖÇ@+Ò4 i ª³wR}3š[ùºO:ØÌ­@²Ä”Ó¸ˆxW3)[H}“Õf´ˆébT_p´¬“s¼‚Rë[—ê›ZN½>âôÂß¡:NWèd꛺žK“êð…g>:¶m ¼\oðLÄÈfªý%±µ/™­clŸ’àèî#l;™ËN³¸VqqRý¾$6÷%Û¦<ã)Òëš&ïmœ ¨-EuX¿ôÜäÙDL>“RC'?Sæ—Ä8¿üáOÍ9‰¢É;U3ñNõ¥w"A•Ƭ×ùø¶tAΫC_ÒIÄ—ŸI¿ÉþxjÛb]†¸ŸVœùò¯¦;©¡ÞF®kùèøûú¹Ïš%#£Í³òÈ Hõ““Öé2oÔ_~AŸ?]X³3ŧËu¯Pvñ#,×mW_þ³ôžrcbq(f9äM5>™œ¹Ð`ïEêÝ|ª³H=Ú Ä¿Vh_ûò—Ò€Ûs|ÆáÄñÎôÐ? „ÿùÔ" Zβ§äƒûe€(ÝžMÏZçÓÏkqív}=—•Q3ÿŽöœ_ýë\#k¦ûÒÚÚ×ÅÎífß<5cçyQ(*ð¼µÛ^ûµ'üvFf~ƒ¿sÙL±rýÔ€íçúía×›u¼æ,ÚF>•J‰~Âgæg¾PÈæ~-WÊVJÅ\%WÈÃó\%Ÿ+ÿZvŒûL0³#4‰Œ7ª\ÜûÙÎ=%Ÿ¯M\?²×0Š,ê~gd Çbl£¬¢I'ã&Ê‘éš-¥ q«±×Êã]lÓ@laG(å€&€† ˜|I^¯wíÎ'hCŽÓ5ñb`ßaølÿ5{"N1ÿh2€ZÀcŒŽLhÞÄÇíãÊ©qÇÄðñh»'¬±#s™£cj Aõ+Ðì•uxMÉŽ0zÝ–:G×™f1ˈL4.°ï[Ø$Ø݃êÐ{+D¶Çt; š† c@}zû4}2>íÓR·ÌQß­>Æ3÷Ž=À«*€šÈäŒq¦@a/‡hÄt.âÆÁÍm`€¥~®ÜØgÎjwD.Ǽ¯i÷zÓ+*·¡@Ö€ŠÓÜÍ€sÛä‰hœ˜;7áQÒøÚ™Ö!âŸmÇmƒ ‹É îÀák>W‡Šöd<œ`ö$qe@Ù€V®ˆ£ó|Gæ©}×=Ur†°3;DU4ch¼ƒÝ™FÄ„†[“µÝtÌX”7ºtÅ&3†â8y„y“I4lîÓ¡ ®|ìËxôFö©BÕÛ0r,ƒ ô1·‡2–}Ûf‰ÅÆ«@8—@æè Á½^§í;ƒt•qF™îÔ©mk c1"ƒáˆi-¦,Iý×éI×QpôÙ>;1yJ‘g–±åKÓú?³G@}ëŽ)—®M(Ì€óÚÃp•Gè?Ü7ñÄçndnÀVD÷áha”Œqç„z½×ª7o¶ÄoˆÝúíƒÝƒÝÝíýÍÛ[ÛÍ™&`…:.×BÒ—ÑåuŠpòg`™(`̯?✱?ÅÔ@Ý•Pvj¾×Óa[‡~w dÈ-]O·ïÛB"I£-¯îÏS „È{Jjû&á'¶ë;/#¤Æ´­Ë˜ÝÔ÷[[âÊ×nÝhílÜÜÚ¹½kÜÆ£Æ.®ù˜¹9xàuŠs>qx¸}ÐÞ¨:ŠO\¥™¿ÒÈÐÓ+×2kæ=ºH‰¸¼ØÛÃúöö‹ DD­‘ÑaT;“ÑscË­/îQENŒZc£w¹Ñɬ5nïíµv÷ZÛžïÅß=F.6Zâ™Óâa×iÖ|ã*I3‡WO·ìÑwN­|¿—Я=ã)¾#ÞXÃ!umØâ™7^Ï<ûÆ›Ïxïqâ+S<“s®ÿúõÌõé»ñHltÅ3¯¿ùÆà™ßu;<ƒ&v¸{Ó:Ì7¼ÆX ûÎ1AèwáwØxGs'ÐÂ%6x©}¿=6 Œ“ø±¸jñz—KèÈ„½h]N–,H<àl`1ÃdÖÍÀ¼­uºˆÜšÙ9±Å­éNîCxm$‡Ñ©Øè©H{»‡Ü˜P d$[[Ã%#2)kz[ͳ°ÿ= €Ü^¿þ›âk/Ьxó1r óô.÷ŒÉ,—½nÜÕ¬þuñŠ9²zç„¡KnPøî%«‡-®2â§–‡"íÚ0ÿÐÔ×$éü^K\ÉÜʹ’ѯÏPÁW®ˆ+¿Ž€®Hœˆ€hŒ¯¼2‡•d‘j`£¤|pv©\aÔ³5´­uÑëúw¥£b 6ÌPF,{`š]–Ù°ÇÇ´‡ áÊBB[Ýsâ3ö^š´Oâ1žh؃PÙþ txDø00ÎxÒë­S˜ûÔKƒ}cŽN0×d@7g=Y ˆo~³Üÿ%¢"âÁËü¬ànıNmºœŠÂVÇëb#Gˆ§Î›üu—]ÂjBá¼Çî°ôCÓ‚úhÌì¯J{‰Á¬ÙìZ°Á¬£`‡…IVHVê¬ÑrìÚ4Å'¬~c*ûIÚI‘“.©#IûA8Æ Îù$\x¸`âééPKšî[G#2ÙcCØâ&Ì £?­7#vL‹XÁ‰ˆ)œQ9Æ(Šlì “?Ý€x?r+Ò²@]žþ£E»cŸžR:ª%ÏïÚϳ«+7ÙÜãÑÒߦÇüm -þ…”þ}w‘=óöéп¿´ÌßýÐã¾uŠšýNKÔkz( åh!“­ó¢Eägëÿêx#QþNA¬·Ý?ψïÕŸðÞí²'¡²pb+™r)]wHÀv_ˆ—ø—‘q†ëÎïU^íJòßT‹‰—”¥+„»/Ì@bl–:óWfš&ÞïrYØ®(cyÅÛ Æ; ì¹Â[q1ŽOF¦éÑó<…¹O—XXððMŽ$V)n)hZr)§E…8+Ü'wÃð‰®0;}Øb2ê°d´Ü¸êÞž¿ùÍ+­æÉÕ¥lÀéÄ®ní¬‹+ß½ü tô—ëJ#W®!¯ìZ J¶A«bÎKÑÂf ¾à‚Û½} ^Bx*A€X6ò¡‹`NÏůŋâwa÷íc±1ȉ 4‚½È¬þù+ßèŠolŠo¼v^𳿂Ò|~!Âàœ¨ Ý3^¿ÞÚyåÛ3ÂÁw±üè I¼5[7wEA€ð°ÀÖÅ3 Dð&õ̺úýÆ•7@IÎøX•Ìo¼qU¥›õÌ|¾ýšx¹µÓÚ«´šbó5¡ZùĆ»µš[_ ‚¶CìÔo¶^MQÝåGí¼³6Ü݃¶*ü+û»·÷-ÑØm¶‚;4r‚ž:ð΋ý1š±Í{Ä2AÅ€]¶~›_ü_üäÿ‚©è´-ă×3=ãôÍ ª¸XÅi‹‹]ÍôBÊ„=?™kàÒ=P+^ zØ)íg8F({ÅP+Wìø³WOÛ¡(óÈœÑ °‚ŸŸœËŠ7^[¨Ç{ûb£ô‚'×ÜÙ ²í«ßÜÚyéú6«|×ßxþ7¯¿@{K“ÿüîÌj¥á¡UQ>]›þµµ+ÔPLTÍ$ß…àwÉÒ eAfȤ©¹AýΌрRA"xÜ166NÌþPä_ºÞ5ï^L@hüŽ«£x¥§a„v#ÄÍúÎ!tæÅß…_övÛíýÖ¿ñ™gðñ«[̓/V³²Iî‹gë(¥‚¶Ì¦ øý`2îÁo¿ãíËù—~64½ß¥¦äÎ-[äÍvleÖCÞWö&O¥<6æˆÔ]‡çß|ƒØÄš¬ïiJ´Ÿ£Qv?³OMo  |c …„ßø ÷ï—·nÜÞ&}kw “·ødÞŸÞ$—•±5î›/ª,õùçÁîqUP:ÆèŒG6X´”¡šw Sy0pLܫ܋ç…sÇ⨈7u¤ëÃo ØZÓ½›ÌEáÊÞÌv=oÊ»â©óh»þìZg(üFF~1}†%`ó“v9zÉ¿“ÀÁ/lu\2àU›Ó¶%-’õâïâ÷Àe•µãLîw)ו¥°!xeNNrMñc»Ã¥Ä$^"¬¦u]Y2j¹ºaëiP‚c4ÙdcãY/.W s& -’gjÞŽ ú/sŒK ` 0Û°á躟ŽÌclQï;6”’­œ˜¼•²BÈÜ€à ^‡öœAÿœR­9fGνP уZÀA…zGɇßE$å=/žÉ<{øÌïÂ1Õ¡Á:WиA‹K.h¬qEÌKââ;® - k^±ÅPРBÑÅXI‹…&•§5;µ&9F ZûõåÒžpôf¬ðÓö8î€#*ð™¿7Á`ÃlàËd˜%4}e¨9u9<@ó£äÑfÍìò<Ïì¾àŠ’ò ñ#R‰€9ž=sLÆ„Sãž8¼‹kõ¬cùT2€¥ ìx]àȯ«öÑýí6€#s•INçŽtpðPt_Üó2`¹Mò¥ j˜ Ë3+½5pQ¢k¬šþeh"[[†vH^¼ s ìîÆîÞ~æ´ 0Ç;2Þ6qúÈ·-gìHe­±{ëµ­—ñ· i°mÃï7êoñÓ­ýç×0J£µÓh1Ô›»ÍÛÛ-,B%mÏ8]C—óW÷ñGÀñ‰§+øËdð2 8ºü—üm¿*ËÖÁkÜ™L2o[ˆ•jO_Cî#Vw«™a'c ÔG¹òü³B~þÙA¼Çªö,ŸÀJCzÊ8'ˆš+¯Ë!Ûhܬ«µÁ™8ö½·ß~6C¿¬ËŸ…¸ÓâuãÞ!í¨‡w™(2§EïÅõ|£ë=⣅»–cQlÈ™oÛ?Á¦á³kÓîëøª‰^ŸÍ8ç8+×`1Žú=…N”@úžÎ‚ü k(Å*Í÷ì„ÇÈSJçbÔ“Ã!:ú8N¦ã{Õ9} ÷1xWÇáoÍ£N×êlä²ÅÊÆ Ÿ+é–ÌÏ–¼kt<‹ìH¹ÁOO‚žv0öÔ0¸Êa“[̽#’š{ˆ&Íù§hžyÚí‡dö›{îöÝ÷˜ÅÙg÷ưñÌ<ì”ux„9ÒÌÙ&{“·ßv&C=ýqx¾PèY.Cü?³¹r1?çÿY.¬ü?Ççë‚ç¯qá}2,ðäïIÏÎá9iOü° ÿxÊuJ¾.#ÓýÍvÖÖä¦×µFÀ4@†­óÄÈÚ®ºGþ¼zHŒêðð0á®ÙÇ&H¼úåê¿zíyÒ½”1W{W¾=mä»×AÝVõ+ëâ™Ñ3×Ð× a?¿æÚ|¥I°âã/ê¯B³øŠØ° Åëô+zýã00;²PoΠ@ýê芶£Ñºxãõ«™góÚo¾qíʺ‹Áµ7©Ñ™~BãÏ|ÃÉ|Ãù†óŒø†O†}óªDL¢92Ç“Ñ`¶âÚ¬O@ GÜ x…Ac°îyqIù&ã³=[co`\àu"y|¾!äßC!uЀ¡IœP4³Wñ g~Ýmb]-??µ^ñÄsûî 0Sì…qÕkÐö) B…F;sˆ&«ÏÜ’§óR¤á¤óD¸(Éf¦`K“£«Aýš¶¹ÞÁ³ R·ÎFÖØ¼ê¸ØõÍÿÝÕ¾XÑþÿÙB¹”ãÿÅR~ÅÿÃýÿ'ΈLÿæà®žãíþ‚ÿ*ÀD² éå*c ¥]´æ™žÃ·ô À+¡ôWݘ±,ž¶UK?§+  Œ%ìî 'o"õ8-ٷјˆ °‰Ê‘ϦM²MŽÀvìá9ç¥exì{ \$pNìI}#éŠçí¿ð±ºç<ÝâŽûöÑüvË_Ú]×ÖÈü§ÊLBR¸!ìqø+™ô‘<óF÷9qõ·ŒÁwÚæÑwn£ïÔ‡#øyþßš à_ÿ;õÉñwöÍáwv;ãïìØw¿Ó4;×Þ8{V@ÅgÖ¸ ¸«¿yzíÿs•\S\»ò ç 2°i›k8Þ‡r¼gëm+sñ¼ä}JUo{&øÂãe’±ŽLgÒGÆ8– ðÕן9¶ÆÏÃëÛÇøcc£>× ×³‚ßL}+øoTGð·¯lÆ[dqßºè¼ Ü×bdÄC¾HðâÁh U1úõšº™2ÖgÜ…ÂÔš‡W¥0Â6ÁÍ&„ù­lÉ»×b;×d`ÞÙš˜±/| SögXóH«Ï¦f”f¡¸U—ÒFYpÏ‚¥•va¸Þx#ç’«x:2nµ r걃~õ2°’øõ yù¸…Ä‹ Hy/ÙÁçeÂ&u~mpGñhvZ=¸7óu¡OA Jíœgo”=—Óg®¹W<žÍ伃;êL)²¢ ~ñ@‘gäÄ…Îë\!\Á§ |ܘÚh›˜ñX0_<˜yªŒÛA@q¤Ù®¼þ WAæTãMƘN…^ žŸ0J¦uatéÞT}ññ¬€wWÖµ2GÞj]{ñ¹7þÖ€A¿1xñ9Äø"pU¶²Nh®»^»8)0Zþ›ª€‹´#ÿåŠÙÒœüW)¯ôÿÇñYLþs•W6ì%–åK6?²Ipzón2›–\¶>]gfŸ”fÐt[e(kð$5îü~å¹ò¹%Î`wÁ{Ç\_Ómq}Õ³ýQ_B—Ô|Æ÷nÝ_±É©±úŠ;–3ÃôI/Â'ø ãÿt’¼'%ÎõEÛˆáÿôû,ÿÏeË¿VZFã>ÿ‡óù'_ :]Æø'‰é!ùüçó¹ba5ÿá“fþýÎJñmàxDœÿdËÙÙóŸ|±’Í­ä¿Çð¡y>Ĕȧ“ÓC×Aðê+­½ý­ÝQÈäJ×`¶ßùê*ú m"1l¹´ ×Ös|•|®‡ûõf}¯)jµà°éþûÛ[{”èvëGÇa×@’QB숻Žèžƒ¬¿zd·.&˜ë¥H1½¾¬Ü@•Éyý¡]Òù°Õƒ­ÆáöÖæ¾Øm·¯ù_Þ¨òåε5еÐu“%ùxPÄæ=³3!'ˆ«ä>0ý›äÐLçÚÐ)ÖàÎ!ß´´Lg®ô­½­Wê-éÓV}ÒÂGšõÏÖo#nýгú_¾/”Vëÿ1|¾Îg™¬G⽫ÃÛ;[‡t½CT×¾.o‹oJW—”GθkÙøhÍ¢˜ˆÖàê]Ûê^[Ã;4èYæ ßèÚôz!ÿæ ®3§ô¼»ê6»ÓÞzùP2uµÖ5ï^\ïê•Ût^ÉÊ‘,ƒ¦›7WæëHoö…µïþŸ,ßÇ}tÖ¿¼¹’ZL#ÿ•rù•ü÷>éæ?™Ãÿs…Òlü·|)¿:ÿ},ŸÄòßÃEK€bß¼¼çŠ{¼ÜÞoùE>êÈ“zhtîÇ&¼ï\”„G=ÿ|usëš°zW_ÝÚ)䌂à1qYþ<|y¯õö½ú6 }>G…wvD`ÿоˆ‚œÉÈôS‰æö¶¼Ÿr×°ú„‘–CA³žN±‹·„0ŒÙ%hö@¼ #fŸ9xeÇ¥+Ä>=”¡®Ô÷^nˆ¹NïîºwIðúÊÍ›ˆû¯[N?ÿý]ô*Å#zñëßd@‡{·w¶n¶íýçg ¾4-ÖÞÚ†2[{sEÔæ[¿} loíÓÍôîÅ @½«OZ̾´Ÿtü?™Fþ/g‹+þÿ>+ùÿÿìOØú^oõ`õó•2—ôF¦yät¶½þ •|© ÿ¯ìãÓÝmàÿn€‚®5Z ~Œ§Äk¡¯®«÷4cË¡ßVl!܀‘lalŒ6ðÿ ×îH­bîµ¢Aæ‹xÅ{fln) ™b¾!Ý<Ž/°¦¦& ½Î†è9=ˆøªê=ac­>’jAÇ/ ÿ“LV¿v&T?ƒ±ìÃè3ˆW!¶s…¼fç àLçè‰fçdÙ úú›­Û¹ªfߪ³]«ê÷¬:ß±jÂ~Uv‹9ƒ^׸ìL÷܇™B"™B@¾¢ÕÓ™*ìixçxÊ»ÃFÄ+ä[ÃNÂ:té?ajò*n°n; ¤†²lzyãàÆˆæé3Å®+q 4k¸Ñ t‹{!#4+(1$4kP, Ͳ2´„fi5΄޸S€]ð‘Á‡’ÀPB%©¦„OJRÍ·‹§«²Ú¡ ‰zh&§i+5 »k¢õga‡èîÞg_*4éÈX UwÃM,803°(Èå² -6H P¬tcIc4kÁ1òC[pŒ8Ä´hbhÓ$)p@½þR}ÖBƒ> m‘aBC>…c9<5Ç8^ÆÖ_¬¾¾äðÄ4†½‘H:"d9Peß%ŸùÉ`¼ @C›¬É‹€¢ë@heL D r³¤ÂÃÉÓë-¢úÐZºegltîFS[Îb v g‘¥ªDZ‚ˆ,07¼—ÁTg -4C~X s›e ¤:Ä[îÞ¸¨‹ô#I-Fîï[ ŤJ à DuØ5Q^Ž9XœE¦h w ¾šth÷HàOÍAuä¤Þj°ºÔ£q‚ÉÐaÞÔ}–”òMÌÄthӅ⥙ ŸÅOŒQw]sz…o] ÞP:4Ž1\€¨$™öÄ^ˆPÈ[¼[ÌÒ–æžÂ”h»‡}spX0Ú·ÐíAÁ zY”°–Ô?æXKCn nYøYÎbâú (½Å!áX‘`r{mjI]Dz‰ÿ ̃1´RÖä(×éê.ÆH8~êÊ‹¨à#]UŠÝš®ê[©÷ŽîŸ²²›³-eu™ä-uíETZ‡/mmvuIU—“8¤­ìE?NYŸ’ߥ¬LÁ€ÓU•Ù!Õ¦o÷Ô.ÁI!}'®@«/i%ÊuÖ ’[lü—‹nÛ-å˜D•¨“‰jPsZè´àäü$*pŒš°¾wzš²žïÐ4 ’6’ÖcëzªZ~[é‚ Ø"¹T@ž¸Òü©ç‚ Òõ?àŒ3ˆÙ£Íd@¦'šÉêd."Í8[&1{Z™¼>R¦©z6¹°”ü'‘éë»É!LÏ“ÕU“× 8eL$Í*š;SL[=ÕÚ™9ALVY98L[1]³ÉG9àtp!iÆ:à,0 õpÁúþ“¿ÔÀRtE9çKVqöx/]m:ÕKVuî0/muy†—¶zŠÁŽ>±K ‹ê’×r 6)jÎË¥x—Îì!\rHêÙ[òÚê‘[ÊÚÓ“¶ä”¶ä•Õsµ4µÃÓƒ¶ÿáYrî™Yòš¾£²ÕݲäUçį=[Âü1Xrh§_ qRCšžu¥¨8wĵ( >YI %Ͷt޵ ˆÅ:á?µZÊ‚ØxgT AÀ£©´fN¤Rƒ™=ˆJÏŸUàc§DUR­`yÈ”°N ¹–cÆ'©ñVRV+OÕñÕrÏ|VJ¡Ã¸'<É*ÑÁN¢*ò<'Yï'Y5>½ITÇ=y)¬9,ýÃ1üÿ$ÀɽÄm¤‰ÿ_åÿ{,ŸUü‡Uü‡èšO8þýY0*þƒNí˜ø:¸¦ÿƒ^LüÚ1ñtpMÿ!»Èøu£ã?h ¹@ü‡ô†:ñ4aÄÆÐÄ|ÿaÿ!¼Â*þÃ*þCXµUü‡Uü‡Uü‡8h«ø«ø‹Ô_ÅH ÊYÅà¬â?D@XÅXÅXÅ0Vñ]ÅиŠÿ iÿ! ´Uü‡`«øË‚¶Šÿ  nÿ!%¸Uü‡ðVñRV^ÅЬ¼Šÿ°Šÿ Wuÿaÿaÿaÿ!!ˆUü‡Uü‡Uü‡`«ø‰j®â?¬â?$°Šÿ°Šÿ²ú*þCâš³Çr«ø«ø«øAGe«ø«ø«ø«ø ¬â?hTYÅXÅPvVñVÄðw|ü‡S£c;‰Ûˆ‹ÿP(åçâ?ä*«ø㳊ÿ°Šÿ]ó"â?„ z¥œ/çgºç8ê}Ý:T|6žƒTæá'âÛ iÑk,F!Ÿ¼¯Tg¾åYP:}F£ˆo3¤Eý¾V“wµØÓjòŽV5ûY iN¿—RÃx :êÖšo}žN‡jÈ ­¶Ã[æVW±#æDÕUìˆUìˆU숰j«Ø«Ø«ØqÐV±#V±#©¿Š‘”³ŠÀYÅŽˆ€°Š±Š±Š!a¬bG$ºŠ¡ p;"Ò*vDh«ØÁ0V±#–m;BÜ*vDJp«Ø à­bG¤¬¼Š¡Yy;b;B¯ê*vÄ*vÄ*vÄ*vDB«Ø«Ø«ØÀV±#Õ\ÅŽXÅŽH`;b;"eõUìˆÄ5gåV±#V±#V±#‚ŽÊV±#V±#V±#V±#@XŎШ²Š±Š¡ì¬bGüŸóáÃþŽÿàØ}cd%ÿ!_*ÏÅ(• «ø᳊ÿ°Šÿ]ó"â?„U À@ÿGtìÙè ŽÉê×ÎdƒêSt0ú âUˆíÜ4âB zPp¦sôD³s²lP}ýÎÍVˆí\U³oÕÙ®Uõ{VïX5a¿ª »5Tƒ)Ä Çegºç>I$ ŒL! ƒÐêéL•U ‡9‘qÃaÃaÃ!¬Ú*†Ã*†Ã*†C´U ‡U ‡Eê¯b8$å¬b8pV1" ¬b8¬b8¬b8H« €®b8h\Åpˆ…´ŠáÚ*†C0ŒU ‡eA[ÅpзŠáÜ*†Cx«)+¯b8hV^ÅpXÅpЫºŠá°Šá°Šá°ŠáÄ*†Ã*†Ã*†C°U ‡D5W1V1XÅpXÅpHY}Ã!qÍÙc¹U ‡U ‡U ‡ £²U ‡U ‡U ‡U ‡V14ª¬b8¬b8¨;««Î‡bø;>þÃÈŽöÙ’ã?”²¥Ê|ü‡ryÿá1|ºð™7”5øEy0Ÿ¿!)¥œéöû1… yBU2î¥äÈBÌöbÑñ¡yÏŒ.EG†X*hx¼¸ä;†‚A'âÊ Ýˆ Q¸‰àçoÈXQo¹@fÊøÆy6ÊDÂꉫ…Ä—HZ?¦žK·ðxlu28¶qe5 òúa=Īêëj”!òÒÉÔEwJŒ€0Hn‰7fèWÑô+T–zqúI2Hø›7("@ÔÛˆ•7Sæ 5€Fq/€NÙiÒjâ|ÿ_£ {ù_£¨ïæüø¾Áž8€±à¡wþu¨þu먷ýuëø¸iŠªiê„^òOeæ†ÊÚ×ûS@R¼c“ÖVªtÏoA@êºÅ@-00ii2ê&ÿ‚€—Ð;ü©_àOjöö~²ÚW÷”~”#.í'|c?9åº~šÊ1wõ¹œ [ú顸¯è'‡ãÌÜÏOaþr~òú¡7ó“ƒJ¿&Cîä§²ÀJ ¼Ÿ ÄÜUü´ÕA!íL„ÞÀ_Lúù½{ŸÌüÅû¡ݺO 2uçæîÛ'«|Ù> å¦}2!×ìÓñݱO $õ„èÜ®O Q½ZŸ¼®ÿ¢UŠú³Þ;©EܨO-ø:}rxów铨¿HŸÆì-úä`æ®Ð'1> Œ¸Ëó‹Á\¨ kóÉ!ùïÌ'¯pa>ÿmùä®Ê'‡|O~8a—ä“à ½!¿ ¨¹ëñ áÍÞOQ=äbü¢Ô[Ùia¥ßRÃïÃ/hÝ º ¿8¬¥`6s~!8Ó ðiÁÞ~O ,øê{"pÓ{©—ÞU\€7tÔëî k¦–ì•‹î‰ê)·ÜÕ{+Ý6á»ßž¨æÌåöDuý7ÛVM­3úï´'«ª\hOTÑw›=YÍ™«ìÉ*«÷ØÕT.±'ªç¿Á®Q•¾}××u+%+=½¸®[czk=ôœð¯¬G½Å¹ˆ&Ý"þaЯáÞT×,î^SC¹± 'A¿hðítíÊêÕôÄ•fï¥'àºëWò.`&¬2w9/u}ïj\ZÉ;íÞBOP#ð zêú)ú|ù²È¬Í3Aifñå£YO€éR¿°. >£d¢òÚ-¸æFݲ؃ø¢~C¢N…«á\•'­°-ù£¯ÿòWÿÏ®ôÿÇð ×ÿ ù8í>¾„ªÿG–¦•^‚%¸÷>©[»0 ¾ºÅc%ý?âõ¼þ¯]8Ïý?¦ð¬þV|ªÿ‡•Ôÿµ G÷,Pÿ/<«ÿG•$ý?º@¨þ¯Y-¶¬_ÿ×)éêÿQe§úX)Uÿ* ÿG¦“9ý?¾` uÌèÿaÅå^£H ¨¨èÿšE£û ÿGUµzý’>ý_£Z$"ŠþVdVÿ+GúX¡9ý?¾ Ôÿã Fv4Zÿ¯ÅúÔ{w[Ž,3«ÿGÔÿujÌêÿQuTý?ªœªÿÇ–›êÿQEý?ª˜ªÿG— ×ÿuëi÷ëÿQ¥]ý?ªŒOÿ,èêÿQ…æõÿ¨Ò³ú¿^Ùyý?ª^€þ¯]ÜѨ3-YdNÿ×/Íl"¾|4ë Òÿµ ë¢à×ÿ“”×nÁÓÿ5Ëbâ‹ÎèÿfõÿÙ*OZa[òG_ÿ¯¦UÿcõÿB1?¯ÿçr+ýÿ1|Âõÿjœr[@Õþ£ Ó²-ÀÒGÌkŸÀ­[–E^ÍÒÑH’Þþv^í×-ƒc€Ò]vVç)=UùC jüºe#;¨ï‡–U÷# ’¶ù>TÙ׫WÔ¯êkt5ýˆ¢SE?¤ªçG Pó#JG’Æœ’[.š fTüRŠú_"PDßÔ{½’‘= Pî#Kª»vAŸj_+ E±)1«×Ç#µ>¤ÌœV[N*õ±å¢º­Ò‡Vb>âµ»ÏF™Õç£Êªófµùˆ*ª2QLÕåãŠMUùˆ’Š&QJUä#‹…ëñšÕôJûµøˆÂ®QħÃG•sUøˆ2ó|DáY^«è¼þQ-@}×-íÄW™*1§»kfv[<’Á)îºe5Û÷«í ŠëÂ÷”v½¢ˆ}lÉ•=¾ü¬Æ>SãIkX—û£¯ÿóU–46€ý?›+—fõÿ\%»ÒÿÇÇ]O#ó·ÅàÅ/IË {Ï섾D±Z’—ô»þÕô8“GN7iÑë¿XÌåçüò…Baµþç;:»7ÚÀÿÕ4¬kÁ¯Oœ¨W×û6f±®S~IBœýÕKÿ¨]ï%(Ž÷â‘ö²>ç­+Ȱ1d¢ ^>È8|(™_h(t]½ÀgÄËl•¾±ÖOZÇ±ÅÆKÂÿ$“ÍäJ™l`™l8¸ÄýñUM0z…|âÑÄIG¼,}Ý¥'éFOV —¸?iG¯šxðªÉÇ®:;tÕÔ#W¸jêq«¦6æI‡NfñL:|®€ïëµû0S€TRBÌ¢`¦éœWY‡O^W’–ê ¿WÜÇ80ÁhÊÚ2iÊÚÕE*OÆ ]ü×,vR jå­-¾3®«ÉQ“Öõ2¥&®8M›š´ªšC5i]N¨š´–›]5i=_ªÕ„óxãG'mk]Mš šš‘55=k*ª„º0œ…„fq]äLJ×e€ Èïº(X% ÄB Ô„ƒ‹ò^T5ÝÛá.k0—²*ý'.êÒÆ24©ìâPƒ3Ì.w6Ýì "rÏ.ê’¦)"+íBPƒSÔ.RÉW»0¤˜äµËƒ¿< Aim—ÒŸãvA ÎLÂÛÀÍg¿]Xh*Üá.‰y„$É] Äe±ŒÀô¹ À›Ë¥»XKCn)óšrwy0—4»¡Éx†9Ÿ™w™ ƒÒô.þrÆ`.ï°‚³ù. ’Úwh!y~—Ñ—ôw)—3½:逯æ^??Ý¢Àf£¼/jD á%Î'¼ ðùä œÏ4¼ €³i‡„9—ƒxAxó ‰—x‰ ,nPÞâÁú“/, £ñ¢ýé„–ëxA°Á‰—4, ò‚ „¦D^&ܹüÈ‹ŸM–¼(¬ÌÉK«fõ] à% )á –— ué½J½¼dÀËÇy&)óò€N34/f`ºæå@ÎÝœö4‘szjVçôP–ÅÞ:j¾çEÀ,GT2A§¢¤…Nä­%쨾„ÑéÁÌdNÈŸJz8Ë1rø“L/GÉ8Š/ýô`frQ/IMLŒ’¥:=Êê¤pèÛ—¿:„ªN3[§ª>Ms­ç£qŠ9¯µ‹â¿œ.fnyÿ ¦¬î¦ÆNS×Í“¨›…„mä̧¬œN;$5·öbfm§‡ææ…J ÁËV»H}ÿ©ÂÒ€yYH—nÁrÓv§­˜Ã{9À§àìÞ‹ Hõ œ/ïw*aIÀ—l±‘KžX@®ðÔÜÄá ˆÊ"¾ ° ÚË/¾0$%ÙxjXŽšy<”™4ä©aç$O n±u”­|A@ ®Þù<æ©Àø“š/bQT™¡àÜç˵Ø<gE_ÔLŠôå@šË—¾(Ø…:êϤž D@Zõ…à¸9ÖS J¸¾  iöõ-4Q±yÙSBõ’´§®ïš'‚1{°¿°°\î C HìžæL–÷ÔpfR¾/Ç—ÿ=5(2øÔ`f2Ã/'2MüRà. Ü\ùÔДlò©a̦–OHÉ3ŸH`ÒùÔÐ2Ð/V`:úÔpƒsÓ/œ³˜¾¬õéA¥°_4/û‚ðÛºC2Ý/زºè?÷^&¼¥aèr/ n/jæL{ g²S‚Äì”Uùà:eåùŠ<¦N]{!-„¥SÖ}+ý6"OSÖöSÖwÏŠSW_H—uO†ÓV§ᔕå9pÚÚÞñoZ|꛲¶{N[XÅözº>|šËß±ñ¿@ŠŸÜKÞFšø_Ùò*ÿßãø¬â­âEVqÃÑÿšubã%öo þ—v‡uâ%öÔÇÿÒîn|ü¯D þÄÿÒî³vü¯ÄWñ¿Vñ¿Vñ¿¢ë®â%‡¶Šÿå°ŠÿµŠÿµ ¸«ø_˃»Šÿµ\¨«ø_‹AZÅÿZÅÿZÅÿZ â*þW"0«ø_«ø_«ø_‹A\ÅÿZÅÿZèUü¯Uü¯Uü¯Uü¯´`Wñ¿Vñ¿ÂÀ®â­â­â­âÅÃYÅÿZÅÿJgÿ+Ì*þ×ú^Åÿ +ŠÿVñ¿‚ËË™_Åÿ „¶Šÿ¥ nÿKÜ*þ—>°Uü¯p«ø_©`9«ø_aœUü¯«ø_qÀVñ¿tà¬âÅZÅÿŠ®ïš'Wñ¿Á\ÅÿгŠÿµ´Uü¯hh«ø_«ø_úðVñ¿€·Šÿ•à*þ×*þW’Ú«ø_«ø_«ÏÓóáÓ\þŽÿåØ}cd9IÛHÿ«P)­â=†Ï*þ×*þWd•Uü/®ºŠÿµŠÿµŠÿµŠÿ•¦ö*þâ’Ürÿ+®Ö*þ×*þ—rEš»Vñ¿RƒZÅÿZÅÿZ*ÜUü¯åB]ÅÿZ Ò*þ×*þ×*þ×bWñ¿YÅÿZÅÿZÅÿZ â*þ×*þ×r@¯â­â­â­â¥»ŠÿµŠÿvÿkÿkÿkÿ+Î*þ×*þWr8«ø_á`Vñ¿æàÐ÷*þWXQü·Šÿ\^Îü*þW ´Uü/Mp«ø_zàVñ¿ô­â…XÅÿJËYÅÿ ƒà¬âÅ€XÅÿжŠÿ¥gÿ+Ð*þWt}×<¹Šÿ•æ*þW˜Uü¯ ­âEC[ÅÿZÅÿÒ‡·Šÿµ¼Uü¯„Wñ¿Vñ¿’Ô^ÅÿZÅÿZ}žžŸæòw`ü¯±1:X¤èø_•b©X˜ÿ•Í– «ø_ᣣ˙ÆÕ¾üXžýïïÔoíߨ=PYEx©(8,Ä‘ñ¶Ù׬ѸiÜ1·AŽrf-¢*ÍG‰*$¢üzã[úзvöêÛÛš¥ƒãŒDT¸¹Û¼½ÝJ4¤8¢=<Í1N“Öàðn5fcžD¢Ys"%ž¢¯ïM/ÌᆄÓ?­ã;Öo'Y*|j|½F‡v÷ÌiQ³ Æhc&]Daâß¶Žõ8Ëõ/i¦²îjÞhܬ«µ±ßØÛºu K\ ¡m º­®5&[Ur°úžitSV¿ÕØkå'fçÎ+Ngd ÇiaÜvÌýsglž¶îÍCç” ^5FåëN ÏøS@á‡Ò…eü±£ °yT»4µq<1'YPvU˜Œ´ÇÀ-Ÿ1:šMtÍ!ö[s•@i'AÑëNôBMä§x»Ùo%¯(ã3ùcLéU¥ïCgÔY êuTþ;x„@€£ˆŸ·î™ºû¸>DÕíB›hØ£ n¡=2ÍÍýæÅ6r‹Tä mâU`Äö™³ôFnlC;æø"Æk®‹³Wûñ7²”©¡ß2¸Ô’5nÝ^¬-tÇà}‡…n[£%ŒBY—clÝ5ë{7 ù% 5W..ÜA~™nïîî¼\ßkÜX&š7·ní/I‚·lü@9µKƒyëVc™]FpKì1‚[r‡÷¶ö¯,³Ë p‰f€Kîö~¡–ýí¥Aûíjy™Cˆà–8€ni÷ïYð‡u{lõq—Õ”í%碿j× ûª&8Þ«NÍà@¯:5}*ljékjÄtM+4˜k ‘Q\ ¼0žFp¨¼Ä¢C•-.8üWz€ Øbô¬”up‹—FÖÄàââ¯ê ¼ªC+âêà­«IÀÅWM+0ªjRÚáTS^´èªé`…ENMmzñ(=œ¨X©É hIMpÑ5 ¨…×uL T}@PÓYÅfK#Øij`‹Î™FxÓ¤À¢âš.+: i*À v7"„©>¸Ø¥É!-Õ­4 ¨0¥i@-8iÉ“&‘4×/uA(³W•§|4̸¨£É F…M)*Îh HáF“‹ˆ,š PTHѤôc‰¦‡¼4€ÑÑC“Á š Jd¼Ð„ Â…&!4¼¸Ð i¡ÅÇMY#è#¢€&€þ3!ظŸ‹À ™â¢Û½NˆÏÀ-¯£ÑA=ƒ¸D,CÃx¦†¿3 °˜À©@ÆEìÔªS»rpŒNíê s¨œ ê/¨ÛÆáÔ®€S»vPäMíÊ!!7µë‡ÆÚÔ†d3€5î°°šúãijW ¤©_?4‚¦>ˆàЙÚõcfj× –€tLR1Ù¡,=ò_6Óª‘¢•¸XŒz0‚£0&«QÎücͺ¡¹’ÔŒˆ±”L@(£T€RÈ|lEÝŠ1QÓI?q‘“€‰Œ¡¨($z¢VÝø¸‰éÀ¤ÛøX‰š`"£$jؘ ª^dÄ4€ 11ŒÀ8ˆÚPB" jÕ}¨];.ê¡6 ´+/:ÒaB©×[TtC-aq VNß|ºÑ‹b˜HÚ9ˆ‹\˜HhÌÂt0"¢&˜²[a µ*GÆ&La>*¡Võèx„ AE"L"å$$ˆ>¨ / î vÍÀ3úµ#c ꃉ2˜Vd|Amh¡‘µ!„ÆL!$š 6°8‚ÚB#&€ ;0Ä…EÄ Ô†)P»vxŒ@}ѵ«ÇÄÔ†0”˜X€Ú㢦ÿOZHä?ýÊÑ1ÿR 4—RÚí16Â_:0‹w("ª_jHKÀ*8’_(s1ü‰ŠÞ—TdÜ>`sût*ÄêÓ©–zõÅçÓ«—RŸÉ§Sk>Ý‘v­ï¹Ø:•‚¢þéÔ Ž÷§S30ÒŸ^Å”``t?­ŠóqýtªEôÓªËO«j@?z2©VšZ)(t-pCëÚ¡‡ÐѽÅÞ·ŽøI®œvôRyõ ùtõªéª1yU5†¤?Æ8}½››ÖI§Óâuæ;ˆèð®ŒD”°2¨|#Óè&ªC1¶í~²:cWÕMVË™£„u`»@I:a­ÿ¯}äØ}dÓ$õx3¿k9Ö‘Õ·Æç)*¿m;ú‘¼N-Ç®Ùÿ)ÏÏ´éxoŸØ…6Åê‡ìÁkÏŒÏǘ:Ñ_‚ÓºP‹Î{¬äÍ&mPeOιn|=_M`P)kVÓVd&•¬2=J5²nÍDËÄoLÆö!`똎~¨™iu4ÊIs\'Óµ´£ô…@0:]«³‘Ë+ƒ~®´Lhù4Ðît­Á8͸È#®ô5u·ï¹š‡ã‘=¦oú°Ó7ÒƒŒ]—¦"ž ¤«IÊIòšÓ³÷4u]K\Õäè€Éë݃$˜¢bÏtFF玙f˜z“·ßv&áj­¤á|UOAîí¢›bâÊtÊ ¬ tÒVO½‚½³åZ1£³@uÇ:í.P„äWN”ÓTN·§'•©+Òñן¼¦=êæ'ã^Šš¾cÍÕG°¬àÿ”´Á*Îáh¢ÃG©œ8fR—-uª'yõI÷=æÓÓaú¹I?5ég&ýĤŸ—ôÓ’~VÐY7MeÞ’S­rY5s‘usé8¸W½ŠÉÈêùÅZÏ/Özªu$ëü¸æÅT.k§Z˲î"NµžeÝEú›jMsÝ&)Ýž/ë.Àò‹-ªüb‹ ª/0UéÄY7Õæ&ë.°$ÒI²îK"ì!ë.°$˜¢B}º›éë.@ Æt±YTaõo,°€©þVö±Xýêbè‹U_ù–Š 1n°ë&‰™Ê]£<²Ý ôG‡¤Î¬AzÍFVv9“Þ©ÆÝS][”T*vl]/4¬gÍü(ë%­ã®) ˜.`O›c,¶ ½ ¼†¦{“þ:t{Í#:0‚*Ããmcfœg ó¦ ÀhL +À¦ouÙ§´ku-€ €Ü™µ‘}\c`:κ8šŒQçÄžô»ƒgÆb`Ÿ‰c Q!/[Ž ­Ññˬ­A‹#ÇÛtçŠ"X;¶N‘9¹kœ0 éµéxh‡u0-”¦eñMãÉÝùñ|ßÒ¼Êëv‚|n§{!rˆvÌKÍ?ÇþuèõÌ_•Hë›D[Ts)íÍÖ„å©49_snýÒÊ  Æ Ii)r"X,2܆ ûÞ Yþ-ëkDƼ¢¸•ÝuÔq?[›%ƒ@Vc™,TŒL—ü qjÝ‘€„J¼ck”XÌÀ<6ðà1¿7Á‰DØ(€:Üiw €Óa:³/…SÞÎloãR31#`MÜõGh?¥½ÐÛŒ×n?—Ís™ ý¬Ã`3 à‘Ëfiçe8¼-ÏHOXXáëR¨uPHîJí$“™ezX ˜éÑÜ›eÔLýëD(ëkHÆë.¥JžÆ<6@·ëòB)·P8U†\Ïo㛄š9yIy„ž=÷tÂÙgÊA}vŧ”ªÎ !E(ÌÂħûNOìß¾ukwïUiT©×¾NÁ@þ’²Ž«lhT»†Üê„A:Ø?hÞPð `º„ï´‚;tWÝ–··6÷ZõæöÖNëšøÎw‚Þ·š[×b++-»ªõu÷ÿ@z¯a)1y ¡ØwL_Ô-l¡ºÍÞPB¥}¾! *»½íÃWZ{û[»;‡7뿵»‹% dà2l,þ!råA}àkWqÙ‰g¯MŸâã«ìm4÷nß«¡<¾M€&LVëf®Öí)ĹBKìhcØŸ6ww·‰]M3:ˆE»¾½ßzÁ+ˆ .^ŠÐìHW*]»Ò耶‚?aÙý+ëòq‡-È{:à§·œ»V”ûÆæ7·FÖ]Ô¼aÿö^9üjd¸·÷b»Ï/¶=¹RJ¿^S.pÓ"± ÌÌkÙ&‰´³ïÆüîˆÜ „=‘]™½Ý7åÀìƒÚˆ*¦ÄòÞ™ü®o;soå(í c@í.¿o²ª/µLï­;*„ÍìK_—ýïnMgr@yªÄp2èŒ'š}¼BnÛ†sø^ö¬Ñ'¹6 €Kh€ ,`q­…A—‹øzT@’Ìî-óï÷Ý®’¸ÜiùüôhJ¼ûwfèfæµKVhª;ÅhÎñaè÷;îáê÷’}xo‡r!Àc’ Š8SÊR!à)Wä >> X¿{,à¯:ÆhdÇ(+¡yÅ£üvh äÙ=S]Õ’)Ìu‹°š9Q)rkdƒÊ(Eä"»I«$¸Èv0ÖøêmœÂ~ŸNH†ßv+¾’°â+nŃ„,ÆÁñ–c÷Õ]Ôëð¶ÙØ{x~å½ÜkIÊË`ÚÅ3’i©­ùR³ÍìíΗٽ 2·Õõ íìß”…`ïsÔ5- Ð6"Å™Q¿ÕlËÚ·ìa”»Î˜(Ú/ƒÜjn–šÁwÏÂôÀF´½—Ûî°(/ç†eo{k¾Ôl3Û»óef‡eßÃeߨ’ÊÖ~<éa‹ªët¹¬µo:Žrú„–÷° Ø<Ü['0“J¨Ø”áZö®:hw jdY,lLÂüšg°[;3éh,Þ"£&åzJÖXœÒ™ú‘)Î@!?a˜Z¤6à7:èá¡(Ì=üiÞcÃoÛàÝb S¡¥1¸ Mf Îê“yE fa?ºÊLV®iRdg fŠÓž¸zã ÓµäÞž-,¥û ²7gË’0Trg¶¤”ǃÊÞš-{K±0UØŸ­°Ï ²¿3WÖ“õ”âߎ¨K/ó£Úy^ÌSÔÐ6zA5¤øXaTA±îV²ƒ*©†¿ÀZNP­©M0TúAuæÍ…uOƒêÎZköÏgd ¬6ª6o ¬; œ‡9Ódà $ŸÕ2°šTmÆ X1fæl‹´TuÆ X1˜|ÒÀzSQíVØÊ °«Öîç¬É5°jà´Ì[cë/ÿ9Cm`]+¨n 7°vÄ8ÇÖ d s–ß@¾ÚnGUÛn‡T“»åó!­Eì¥ÇGlÖ|>¤Ii÷®*-Þ!ͺöðຊ)üùùºª¡¬¯Â™ Û"¼…í½Ö| h¾¯€ZòÃ+ìUØ ­p«Ùž¯€Fúð (¡½>¬Â^Ð(íEŒÒÞvÀ(¡5?¼BJhد0Jhå«Pß ¢¥ð>luz3¢Ó›A-lF´ÐØ¨ÐØ¯Ð j¡ÑB+¨…VT AÂ+ììßœŸ<_ «°ԇ݈>ìÍÃ~Ä<¼ÔéWý`\s&™ßœáVd—ë]½rû¹od‹¿-¾áÀÿÏÿuùïÊ:šè<0ëžaÝ'áQÒÔª³®°J4à ÉS1ð¡ÙóêÔ0öµEíË®!ìkhøuY'Võ½&\œ×cWÜ"×\ ¶šb{*äÇâÙ¡gît±cBM2 »P6DŽÍ°g'xÙîê³WŸ{nxM|Oëht¼&· oËŸ># ZŸ¾ _!v]ÄkÚ/nxçº×ܪßUMÁdH–&L·—sænûwåÊ k1=—ùÁÜ~K¸XmŠÐëW6¶C·ƒ;’©Ü=Ó;âw³~ksëà*ž’\›› ò7¢3ÀuÝo ´\# Ù›uqejw¼ÉÈÉq‘fÓ…‡Z”70 8Ѹl€†=Œ—>6h;O>:3.|@}>ó;ãà·Ùò ¯×«oÒú‚Nòéö÷–¼zX½v¿æ§—¾‘yÖùæ:óQøÐÄÏ5Òl´ñPÏëÜU˜5rr&ß}ïã:^‹Ë8Ø $Øœ3ë¦éø2èÎÜë¹<Ž¢ÿ¡¾yvcgRf;x|ë9’Ò v{ÌP^xÐÞ]r­Ÿ>vOC»‡#³”+ž…ß×ų˜N¯-ûOh‡2ð+‘î6àg1þ“:2””’;àŸH/Y×Þ×,‡®´k/LúsÏážAŒæY ÄÛ|”ò×°¼>‘R\ §A†À…Ÿ9|‹Ë?6ž™ÁÖ©ÐF‡ØÌxÔ9^á…‚+<ÛW®ÑÙ.lùrW )wOTÙ"Í'‘ÓR*¿‰%ž¹÷Œd MÝó¾"–^csx3¶é¢ÙÕgÇÑ^žYníkÏÌnöXäÞµ™†ön·^èSâ§rz.+z4’›îðSTãOöU$œð»8«§üÒÅÀÎ/¥(¼9â±HŒûµuŸî=´>ñ «3ª"袮3Á ÞSY¢aupÙïÀ¤‚Æ·•ß§BŒböšÙoûþºç'÷ããsó/ä¤*ØùK}Wù‹húÚ´nFc«W†È=·Iµ0;„7þ]ÿ˜†—o?ñmì¡tô7ÅÕεç;/¶BÎTÁmÌÌÉtˆ;/ÌV ’gŸå{…9·2S¥Á•ÅC}!×%i2èºâ_³kQAóö·˜ãëºÈ’=û íÞ@yg‘÷0öãêŠük ýÌ1LS¸%nCLŸ’v5x—ŸûfQþuNüýqp#E>R„!^žËӳ·Ü/”r|î–J;8¼A´Ó“nh/)C€¥\†T4t¡¥¬tu !OurÙPÝLƒhÕþyzÅá·{W§7“®]—ä*,ö:© àÉ9*¤«^Ê'ëÍYRó36);[×ó*‹š!(•K}W1¢ªØÞõ"ŒØhB›g©ßMBt,LJTôoæîóc"AŸ²8º—k–M‚Þ¥8ô´µÅI0¬/IP¢s¡$ˆãœ*BŸÀ¢¤\&(è«0KâSeXÊ•«ù‰Âgj"çŸ!4î^¶  ñ©¤Dà†cF¹w‹'ŽÈU ÄâtÖŸ$t®Lë’h]¡³Ä¢þ-[T[›37£ÔNR˜ß¶$­ >ã‘|Æ!0èwéF±5¼yùæÔ–¢`úÌDF˘Òþ×ïJOð_G|~ÞËe{ð?§áJ_^’(º¿8ã*L$¥èkt™Â ’êäÃKÑÇ )÷pêxfŸuHFP>ëGsK‹NE*PG(÷Nz¼_/x KœÏ—ø–E®?+nÉ2*{öº²hfªû8ÞÜzŸ);;3œW\«á;‹¸æÜ´‚:¯ß{SÀÌç&ßüæù5iƒ¿ÆC‹f¬Ù¥Ý 2í­OyõwìêÆ,¦×bP”ïF„"ª¨L'_{ÑO*{¼s“”ìúȇ˜Ìø­'&d£H2V4¶@"ö½&asž†}µ#)øêt\‚È남KitcÚêÕ h7µ(£J+3Ú¡_mTm[ªäá*ó3—5f‰‘_Ê×´¡x(Ïi³JGÚ®|p$!êÒ×@š®Î©1@¦ ë„"ÿÌß[IØ)¬¯éâŽcÄ$ ­g9,Æ)2DZmÛwˆŒ&xÚžÒÀò}¹upÍðÝ…Kt€Åä˜SLwzM0Æî©Žƺ65ˆš§(_Ò [tÝ•ò¦gDÞ ö]Y“3³±¢¡èàò1~&ƒž²U”O¤•K9›šJØß]S·Ä5åL` .…r³ª³Îì© Œ ~®‰ùƒ,w†çJÏ–Gådó ó6ñ"Æ¡ êy&“™ê'sýÖ¦ ˜AÅš»½u{‹Ã’za®(heÀg·Ý¨¥CÙÒ!¶4{<,Ï¿çΈŸuÖý‡¾Ó“ã|ñM¼…»U~a-ôNžê©—(Ý{’)!Ý3¿ð¿@Û‹Š:ÕËBæO]ÊñtÏH <:&€ø¼¼0ݾž%Rzæ¹9£6.8tÙ{ •¤w ÷Jo´—§Àek§Ëj¬hbŒÎ若–¦žËi1SÉÆë2€kÞݳÇdýyAéÅUW»£=¶'}n¨ØÆûÜ0¨Å¹²â24‰ØüœËŠ³ÃæNTl=Ùå©t¡ho[Pe-Å%ÃÓàFÏ ˜YŠÄ ZhæYW%§’« rÃî8×´†‘ç“7锪jðs߸GAŠm”N÷Ú¹{vƒ—°èxú/?»Ež=ƒ.O•HC׌[f(ÜJEáGýËGñ8q\÷™pÊOwý¹××_˜Šâ©\T/h?MO0çŠßäã’C‚Ã)ÆÀ;€ù>3&þZ56M7h¢ ùã'õ jfµ&8黀>“SÙãí–r8ÛXW³ß)v¦=²“¾ÃÿŸÏåÞÔï˜ï #°k\"açÒL hþÚ‹~{©7G\ý†sFC9GPÿPGbîĆjÔ£ˆP4µ>Ê^Ÿ”f"lÔaSðHF±C«„Ë B>c-„¦vÚ`íŒÑÚçLã’b£¸âï<ØEÜ.ÕÏM™ë‚B°}ÒIØÐ5LÛCN¶Æèö_0þ¸‹’4‡’pC Ý5eŒŒGseø¼"б5—eá‰Aƒ(‘S< °×s0¯˜À¿›ÎÅÃtõ8¯YÞì¿ëî½ôLÒ¹ïR0Õ8‡Ñ™Âã¾r79åÎjŠ– õ5ªû5±kRꄇŠÜ©ìð”‚*]SeWzÀæ–98YνiuØw®‰oûúÄŽV’‚ƒÎ2ÈIÞ­àQ`B†ç¸ØÕÂU3\§5E;÷Vº7Z¼âqæ,TÛ‘ G6{ ¸Çº¾ËŠw€’§x5ËP-Ywò§d‰ê¿³ ù…büÒÙÔþ51Á{ô‡2îÕià*Ô¯¾ðÝBMÊ1¥Ñy9’ áß´y{ßËäsõÊKÞüóÇõ…!~‚ÂápÈœ¥¾Cs5&Êñz­”AR¢ñR§ ºk˜`йç™7ÏÌ>>f{#Ó¼êxt ™¹;¼Ó!˜›—ûûÚ;6Ç¢êá&w"¦£uÎbr-pDx¥µA"…5)V²¨@l‚Y2™vú¦1 "ÓéÚù.Å3kÁ~[@êü_1ùßÓ\_4ÇšÍ*•RHþ7þ}&ÿ[%Ÿ­üZiцu>ÿ‡çÓ™N6œŒséÚˆÎÿ—-³Å™ùÏçò¥Â*ÿßcøxrB6+²9‘Í‹lAd‹"[Ù²ÈVD¶*²5‘5DöHd;"ÛYSd{bÍ«™ËŠ\Näò"W¹¢È•D®,r‘«Š\Mä ‘;¹ŽÈuEÎ9µf>+ò9‘Ï‹|Aä‹"_ù²ÈWD¾*ò5‘7DþHä;"ßySäÕš…¬(äD!/ Q(ŠBIÊ¢P…ª(ÔDÁ…#QèˆBWLQPk³¢˜ż(D±(Š%Q,‹bE«¢XECD±#Š]Q4EQ­YÊŠRN”ò¢T¥¢(•D©,JQªŠRM” Q:¥Ž(uEÉ%µf9+Ê9Q΋rA”‹¢\å²(WD¹*Ê5Q6DùH”;¢ÜeS”Õš•¬¨äD%/*Q)ŠJITÊ¢R•ª¨ÔDÅ•#QéˆJWTLQšÓªÕ¬¨æD5/ªQ-ŠjITË¢ZÕª¨ÖDÕÕ#QíˆjWTMQU­eE-'jyQ+ˆZQÔJ¢VµŠ¨UE­&j†¨‰ZGÔº¢fŠšZÓÈ #'Œ¼0 Â( £$Œ²0*¨ £& CGÂè€0" SjÍ£¬8ʉ£¼8*ˆ£¢8*‰£²8ªˆ£ª8ª‰#C‰£h”@Y­ÙÉŠNNtò¢S¢è”D§,:Ñ©ŠNMt Ñ9Žè€ŒeŠŽZ³›ÝœèæE· ºEÑ-‰nYt+¢[ÝHå¢{$ºÑíÂÆ-ºjM3+Ìœ0óÂ,³(Ì’0ˬ³*Ìš0 a ³#@®3Maª5{YÑˉ^^ô ¢W½’è•E¯"zUÑ«‰ž!zG¢×½®è™¢ç›ÐlŽÖ(®Ò®Ó®Ô®Õ®Ö\¶¬.a`¶²¾\ïÈTe 0Ź^· <Y'‹_9üÊãW¿ŠøU¯2~U„¯F¿jøeà×~uð«‹_س§VÀ^ö°Ÿ=ìiûÚÃÞö°¿=êq¯§røÐ7 v6Ùóžd³ ò¹#|šÇw £ZÄB5(3-Ò…cT*]¥07¨ßÀ$€^à&(µŠ¿]2ÔHö˜M®@hŠÀ—rYn­Z*©åp¶à¸P.W®âï厊3rRƒ˜iÙçL$Ïa9˜± †aq­Tk>¸Ua@á¹²ÑõB®‚m‹„gÕÄryl¹[õV»3k@@¹\Vf.Û¶›Ë™X§l/Ìe{ø$Û+¨5adÏâwAO$ ¿û0)ä{=µÁ^®¬ŽûíçrY˜ ý4Œé‹çþï?‡ŸÃ êê`•âóYܲ¸)dq[Èÿ„¯þÙÅ/Ì[®¨  fIù³Ñ(¶|h´ë­ÚÿÑI¬ÉùtmÄÈ0e¹ù¯²’ÿÃ{ûê†1 ÅÁ^©·Ü뙂Ãí{Qa9ÓšZók}clMK8¿`‚ú?·G…Í×Ã]w×íW|àvûÝÃÛçÇ'“?&oà[ͶòWcß÷‡lãTy¸©üÞÞßòARÿÚÛöÿµ«ü¥6òªúÇ„?¤c;Ng8ËòuâÈÚ²r|1³;M]kٌʨêœú`ØÝ“‘ìþd093FËbZºëŸs¨¥S#×?.üâ¼þW,—Wëÿ1|Òë˜x*mîáô“¿¬ËÔ¦ëÓ¯Óy“kåRÕʧªUHU«˜ªV)U­rªZ•Tµª©jÕf[Ó®…>xv@\’˜äº˜þ.ÖÅf$Ðív2x›dØþÒ6czÞØK¯•jRÛIk¥7ø`{¹T¬"—ŠUäR±Š\*V‘KÅ*r©XE.«È¥b¹T¬æ?M­zªZ›©j5âV_`­Ø5X«•ªV;'SVfbƒ*¶•Éy!ñŸ3Á„§-SÓ)sr¯Qöq VÈí”)¡ýŸs©“5çœÆÆ= 6cRá1çë‚ÑqS@K,ò†ÅïMì±'ØËÖ ¢uº5óÔ~ËýE†öú‰„lµH­rN„çÅLøí4“pK‹ô&|ù‚¦F‚¯,/Ü’_.†çHAÕ€Æg"ª‡¶Zç©…¹”1W}|GkómÍÅ«_ZcõEF55…oŠÖþ”‚½kÒ T: n¡AùŠ/‚O„ó¦&õÊ׿lŽ‚Ð&»PPgäZ‹ô+É*H”Û4ØÊö˜øÔƒJ- nN]“áKŒŠý81ÙÙK“ȧŭ®{Ol]Ü›þÁ#]¸då/B…ˆPñ²!Tºl•/B•ˆPõ²!T»lÕ×¾º‹6/Lµo³Am¦„¢½P±¨ÐLÝžn ­ÇÜ£ö“VKÓ»'!þPé"µ&@h[Á™½žsÐÖÿy€±N9ºä¡ë'Æ‘ ÓÉ‹®K·ǦsvCOzv¿ðøÔ€–ý)(­¢Ã3¬.÷Àà v¢C%ïÍ0*!{žOÑóü¿‰žRô¼ðo¢çÅ=/þ›èy)EÏKÿ&z^NÑóò¿‰žWRô¼¢ôü±tu‘VSt°ú4u°–¢ƒµ§©ƒõ¬?MÜLÑÁÍué%ù4u´‘¢£§©ƒÍl>Ml¥è`ëiê`;EÛOIÓ_eÁnB¥ÄCSÉ>%CCL¡çVrOSS¨³•üÓÔÁZk¥@?s•§eSGS(©•âÓÔÁºh¥ô4u0…ÊY)?ML¡YVž&Ͳ”B³¬”#Ä®etFQ‡æAT)à ªafgl§ÇÐãÒôWÓIáÉ^èð LÙ/šoãb‰[©ÅEŽ VèØ÷ÍùÒÞJLj õV|ä.çSô|‘#¨ËÓóBŠž/ruyz^LÑóEŽ .OÏK)z¾ÈÔåéy9EÏ9‚º<=¯¤èy"Ea]]¤ƒÕL¤(<éÖRt0‘¢ð8:èØ½q×|»Ñ­§èl"¥á2uv3EgSM=in¤èh¢£©'ÝÁfŠ&:šzÒl¥è`¢£©'ÝÁvŠ&2j?Á¦xÆÇLɇ¦”èhê Ï}%…þ[Jt4õ¤;˜BÍ-%:šzÒL¡Í–RM=鎦P^K‰Ž¦žtS訥DGSOºƒ)TÑR¢£©'ÝÁgéiÒ8+)4ÎÒÓ¤qVRhœ¥K§qFu0…–Yzš®Êc<šª¤¿!¥ypSyœ§S•ô×£t»“88Ðq‡±Áªft .¬ˆ kÆâš!€¸°fä.\Ò£G¥ªˆ kÆÿáša¸°f´.¬ä‡ kÆöáÂ$…›I k†Öâš‹f@ÛØL-ÉR©%Y*µ$K¥–d©Ô’,•šfl,.œd%Ô’¬„Z’•PK²jIVB-ÉJ¨%Y µ$+¡–d%Ô¯„Äã±™z–î{' \åßÿfÙj=]xªØ »žOŒ)`aÙ†‹ŠXZ6À²OèáiI-] ¨x¸Õdž1(&Ç»ÄHØ5hÝS”aqËêŒm‚Ð^wã,È×CßÛønùµn:Xy=@óXšÒPP¶0` ùFNœ¶„¹«žBД´ë3L¸m lX8K*fϘôÇÞLÒK9z%ÜÖ“#–öŬô¹B«Í¬!-È?6s>hˤˆM4%F4,¨ÊüÊ:Û]Bhá"€/ŽÙmÆYg C¥ÂfƒÖÁ|(µsîã4Œl¦ O²é¶<ÉÝG¦y~˜öèØ2àÁ ~Ûcâ Ήq—žvì!Ohß8¶û–ü½ëŸwé§qׄîÂ/ÝɰoŸãofÐÆ_Nã-cÌæfˆ‘RØdð–]Ì AG’c´ý`i`.pÏÞ¬]ĺ»$»ñfÀnÜÆÐ6¹oò^œ|DeõæbÕ[‹UOhH/ºaâDXˆQ#Å¥ÎVvÉìõBî>4RÜæl垊ž¥¸ÆÙÊ?=Kq³Ux*z–âÂf«øTô,ÅMÍVIºn>=LqU³U~*z–âŽf«òTô,ÅåÌVõ©èYŠ[™­ÚSѳ×1[õ§¢g)"ü´žÞ˜"¤OkÙêùÅô,E,ŸVó©èYŠ >­ÖSѳÑ{ZíËÞ³ô ‹±Í^û©Ððš)4¼öS¡á5Shxí§BÃk¦ÐðÚO…†×L¡áµŸ ¯™BÃk—žŠž¥ÐìÚO…f׬\Ø‘e3…jÕ~*T«f ÕªýT¨VͪUû©P­š)T«öS¡Z5S¨Ví§Bµj¦P­ÚO…jÕL¡ZµŸ Õª™øöi®U[vÏûmT3+Ìœ0óÂ,³(Ì’0ˬ³*Ìš0 a ³#Ì®0MaJ«•â6jCOãz¾ ­×PzדîYŠû§ =ëI÷,ÅÅÓ†žÆõ¤{–â¦iCOãzÒ=KqÅ´‘ìLíI÷0ÅÓ†žæõ¤{–âriCïLíI÷,Å­Ò†žâ÷¤{–â:iCOñ{Ò=Kq´¡§ø=鞥MÔx:xcŠXD =ÅïI÷,E¢†žâ÷¤{–"úPCO=zÒ=Kv¨¡w¦v4¼^Vôr¢—½‚èE¯$zeÑ«ˆ^Uôj¢gˆÞ‘èuD¯+z¦èI ¯BÃk>^;…†×|*4¼v ¯ùThxí^ó©ÐðÚ)4¼æS¡áµShxM½3µ'ݳš]ó©ÐìÚw¦ÖN¡Z5Ÿ ÕªBµj>ªU;…jÕ|*T«v ÕªùT¨VíªUó©P­Ú)T«æS¡ZµS¨VͧBµj'W­r•KÏõ§ºU6—ÍâW¿òøUÀ¯"~•ð«ŒÃ€…’ş̌àÐ{žx‚³OƒžˆÓ™|Ξ?>¤Ñäsö4艸ð’ÏÙÓàLJÜ$ùœ= z"°ÈsvéohM·ˆB±$ µšÈŽj"×;2±×øpgÿ&hX£;Ï‹{°Aš¬Á±À{àÐÒújQîa"Ã?Ôdøú™ko¶H3Í;o ˆr…ÑñÑ ˆ€(¦DÝ7†ƒÎQiAàXÅ„ Õ ÆÅS,)s© „±Ž[Ôó=åÎÀ%_äˆeòžúç”{|¹{ªÈ…€nV{·À$kMŸí~®ý4Ø/Ëä[»ôòŸrxÒ3³ø•ï<~ð«ˆ_%ü*ãWMÚíV6}H¸7Bnaùe˜ð$¬ÂEÅØÅ”Ñîdõ¢ïIå…!°LÖ‘Ín Çþ#Nwö™[ÝGOUüªá—_GøÕÁ¯.~áœÙcøÕņ¨¶DJ¨/Öæa-%n„Õ\l¸uâÑETo§!&<Ãíá)nÏq{x’ÛóÜžæöè<·ÇÄÔž ö_¾#ƒï4¦-šfP?Y¹¾HåÍE*7š£öbÒniL[}``‡ØDg¿½8†rYøÐwN˜ÙœÙ=ïI6‹{<ýŽË˜Æè(8 —Æn.\NO áV6«1¡z¦½RG=º‹å0R–cö)3òœšÔöfÅ#ƒ[#ë®16Å{<Ã2ä4&¨¡PÈ’CkW:YaT‹H5&ŽMx5RGNÂ÷*BM™™a`´Âi¤3˜VXÄò©$[idÅž˜†Jkšëö7XÚàŽùN©ö¨ŽÃÞ!ÀýFø"VÌ(õ'¬aÛXŠo¸Ü¶§„Ö­Ô„Q©tfò(õJå)8îA,“Z¼p4.»Ac:"[R‚ï‚)„Qìfñ»Wo£Š¿]I¨P8½90k¼|rÖ -j9.Jaþv asŒq<Hîo šôb3zu&Ëïg½Ø®<þFëÕ¨žŽ ë®eŽ/¢]y/nRç0ð·8Š´D›aö¨P¹ÉI…bÞ„'¼+VK%⥛‘´íŇ]>ßÄžDÃ…è}Ø<>Žaï8±Ì‘}Ü?ž8D1ßzâH%„Ou ŒÔ2ú ’ŸØØ PŠ¢ F@Y+9<÷†ïB¾ËUü½Ü!©‘ÞD‰°QÝ95.Jh”ØK&Lts›O,½q?£Øß‘usž+Ë0·a=šiX³CŠA»+²†Èš"[ÉåP%(âÌæpJkðÕ3…a1}IµFŽÙf\6¨½u/g—F>¨l=Þv;<Íl/.P–ø¡ÃQTëœÃÂê\ÕnÊÓmn}?DÍ’ÏoÒcM›_Qz7ʘô:Ýïc—Äø|hŠíåRu--¯,vÔ¶‰ÇÁ2EœV±‘z^–9 õf5õÄl¿²¼!Q÷šªû‹Ñ©ˆ\Ùèò.S­Çú]Á688îXcKU·rUÍhOô9—«7¢ü¡1Vpb\€”Ÿ+×#€éw“‹”.*(]‹$WMœý<ÊÝ*[¦è}8†Æ‰}F!Æ'¢Õ1¶ûAmEÉ 'Æxt!ZÍ@xïO'ý1¥¾XzÃͪö`ÛöcÉ)NF±EòüLį́Šíz«¶&.!!3þ6„Žò¼^G8ùµˆÏ°32óüËfŠ•ë§ÌÔõIg86q××ñ{2NÆù(P¡t­+—‹ô>þŸ9 º|å×r¥l¥TÌUr…<<Ï犕ܯeSµ–ð3A"€&G¶=Ž*÷~¶sOɉU8 ÀÇx"\ UÍf2ø³E²'á~? ,¢‹9±”Vm“µ ‹kg³v³´ 0!? sdg.z÷8”›`Ž3Ãöt’DZ"^ŸRÏøyZ}(V[]sÊ+BeÈ,CnøY{Ò˜ªŒI¡þ$1Qg§°¹ªYDÃ+yA››íˆ-tiÃ2A“¯ÙõžE Vl1jµvû²¡Ö®1jíz¶ù8P G¤žmID.×Mé¼]ÏEÝß‚Db¼.žäåŸ0å LG¹â¥#B©$Q‹qy|tty×Zþ²¬µüå]kù'½Öòr­å/ßZË˵–/?é1ªHDb¡žÄÕµò“Þû+Ri>–1Š]Y¹²{9>îŠ@¨~åchþØOT­"„Ú4àøK.ÔS” teXìˆ0+5W »Ëµý N‰Üf¥pÙÖ+àT”ÈUseÅ&B®šgä­úåÚ1 §MiÇÙŒtœy"ȵ6Û¹VéÒMk»êÚ™ê‡æ" ’qr…bý’àTbäò…úåâjdÕ$‡ê[¦kÝl]þuOº_ó׿÷½FßvLÿ¾7kõ[Ð c0õ膷Çä¾ ¬‘ql ȉflܡߎì¡}j÷l9 ç–E®(x’rjFöhþtt.R4 »ù¤å;‘iPn¦BÙÅô"Ær]üÞÄûpÏöÓg.wé𔈕.+b•ËŠX:ÖóKÇfb-> È]ðbõ,‹[˜Š¢].\†Á›AP=éûùþx{¡3t ¼ Géøø~Æ\çs+]È>E1);T_SXÆÕ¾Íjû^’˜•F—눠vº®¤.»Óõ¼ìttÔÕ‹pB ,©<¾¾We“µKBìõºNß§^»áf ÷ï¾5¸“ …ÍÄc¡ïœ+¦!g¨ù¤©³%‰Òu.Œ7`Ë›’3oFßý À!ÁŠØ¬ËFžT7 îfC^ߌCÝ]UÜ¿C^¿%¿sWläNyq^/€gD–ŸröBÛ h±^MÖ¢~ŒR€Ý¾8؛Š„}qc’oÐV ?K×FS¶Ñ,_LÓ­Ú¨$kCú”O Ík6M^ÐôøÚ¨¥ê–+„'é5W—3vq+&ß*q³qm—Ú†ìÇlŒÚÙ6¦ÊÊ"“4qv¹=isOÚ4#J? •^àþºü³cnÊET¨ÆðÏ™6S5qA,Ni£Z­ÒÕÐÐ6Ü;!m„ε7ch+åøh"­\»‘»°&MÙD õ.ÐDS6Dzh¢%›h]\mÙD;FàKÝD!ËþÍð³‘l9Ìyô×z HÍÑ3ù¸~¦Û¸¥áK ¥*·˜» qaçe¯ò1kj‘6ª5n£Ê øòµúfióbÚ@ØeÚ¤ágÌ&½@z‚ÍMAÛ›ü…ðçv»PCK¢šù[*&ÔÉ’O÷EfŠÈµ íMæq]Y&Ìh£^2‚²C{`bÈhÀoñ]‰q%<¤ÏÔfk‘6#3YΠ 9„Tû‚‚Áê«Ï¡=¬g …}shŒŒ±=â@¿& ’|bz]œXc'*)gSÒŽ Ïãœ`ÝRØFºö?¸Ãᬞ5²O€œÓ[àtÅ|>:zHgóît&鬌í¡,^w ýoÖ?ùl±È­¹Ap ³þ††Û™¿Ñ@8íV)›jµ†  çSA¤GíEÍ—–ß|Xcí”äª =S[ÒHâ=ŒE;Ç€réUò)Q·"'ùô"Ó´½Mb‡ÙºØ„ÍÞÛk½½Õ…½Ýž2` kºîç¸!曉†×ØK/GÈág+®'p_,Ë,WºµcpšBÍcjn„ªp×[ð MB‡Õnc:Gíý-"†r},Ñ­¦l²†¿>–&÷¶e“üõ15¹Ëd },M²¤™­‰ý$t¬·è6/h® ¨Ú×WegðÛ²ñÊg h™&J< o*W®Æ7eŸ§z¢bÞMD‰L7iÂû8Ruð¶5„›Šá•Ú‚7fÚ["à)ÒÓCz,Žl»/ˆžzÒTmÂlíñÄǬƒìøZÈE€Í7±,ƒI!W—)#Or/ ¦,$¤áÈRp8(Ö1@<õ’=±NHXÂÏ¢¨ïˆùíÅUþn1˜ùI‡ïlÊÙRp.™-Ü@³y± T@dÇ0¶s ¸zqª0~yç ZË]ìT[ù ¢\.»É™PçZ¸cXãk±¨ÆE4 ¬–ÎéjY¬–ÅjYÌæ<°»'#‹ìï%™y)}¼<¦²±Iœö'ƒÉ™AG$¹M‰T.:µÃU.(%·Ï)ù4òQù1™aTÛíS;6•W8,O|§)¿¦ûvFf~ƒ¿sÙL±rýÔ¥ñúdÜ«f:Ú`"?˜Äº\.ÒOøÌüÌ—ÊÅì¯åJÙJ©˜«ä yxž+Uò•_Ë.§ùèÏ'šÙö8ª\ÜûÙÎ=%ŸëϦø¬=+n5öZ‚Hþ™#çqbö‡¸F§øôyqû ½QN;¸kŽ`… ¨•âs}míú³âàÄrüoP@Æn¢gÜð”²sGÛòŒ0+‰‰1è®Ýµ@‚⎑;öØÄ1|h&À°§TÖœp£°£ÅX¸Ä…Ý[#˜¤uN„ÑïÛgŽÚêdˆõ+=þd ¦8µG¦™s0V€­õ­S ñ„w>¨Œãsh@ÜXÏFµCŒü=ëtrŠsYlbú˜ƒÒÉÀ®8“ô 8ÿ¥z†ÇÒííÀ>ÇÖ]ÓÀe0ˆ *ÔwÌ5k@©µ×Ö°'Æèxrj"2tÉ´ˆ:P»oN co&9Ø}@ï.zr’ÉÀŠì=ümm:Ž«;WëXÄ1o‚&w;ybÞ“ðÖ=€gЮ=ÃhÀV׳î­Á oÃtõÏñ¹?é"aÎꈫGPÚ™à„y8…õ/ŽLJ–kv¯­c÷× Y›*öFö©2˜€^’”œu`agæ=ãtØ7Ÿ_ƒ#CLºšËŠklÖˆ_fNT«â¨¨”¼â>»â/ýÍ•Ò[š]Ç„që’¦^îD7Œ­»L(€”)`T„=0×ÜÈhÓžÙ£. ¯iÀùF WtÑ $qÕèá"#YFi‡÷ΰ!œ1>›brtKÈ^¶ïÔBSDÕ1»R.A—«Õ£¢¨Tp4²÷˜­ÂsrÉ{47@Ó²• ¾¨T`Ìz¼”‰6ı¤zÊTgz”æ"Í([SÒE*IâÌ4@dHåG€ôÀ˜@˜HzÜJø!ìÌ=^ͱ ¤/ÇB9=‚E¸æùöAæ9Eˆ5!,Ë!ÈÖÀ˜hŸ·:îjTx<0€\bgPžƒUiù{x¤ôÐ= 0ÆÕ"QE¢íй^bSXöT’$b¶@08'‡Ö`ÃÐ#ñZlaÒib$wí;ÿ§¦ãǸHq©ak[5F# ×ò`ŠÉÀ¼7V9 Ød4àņü¾fœ;âmsdÃÚët¬<ç hmd‹TËZ tÖplÂå[r4°,¢ia¯‘Gwœ ¢WäK¤î.têÖ‰Õ·†â†ñ¶Ù_Ûu9? ‰v¢ 3ó< rØæ`­Hºú0poø9ô]›çéÆ~ä1×çE¾Œî5°¸òÙ|vm2Ú#Uá1éh¿  !MŽ‘GAùÒn‡k_gÆfŠo:ã®egN^ò?ê[Gþg<Ó›-† Ðÿ ¦p@ÐxǕۑÅ›¼-Ìñ`ÿ°lq± ú® ùg¥rmŽÈ 8š¯¹%«¾’°KBÉ<¤,Rõà Š¦Er¾ör=·HÑ+’÷¡TèyEJn‘¢kÜ«Ý"eY„†ÛÁ47ܦ`&ØÌ1np4QcÔ¶r¯¿)^ßV™ìÈò÷JÏûwjü=×ó~/ô¼ß]á»/„µ‹ƒ¯4œŸ6Œõ;ômÒw¿«ôÝцXPºÂHåMþ®0ÊôC kÉ%HùÓ`ÙMan´ÇOe6÷“BvTÇjg$_w€’CxïÛ°àpõ{[¼ÁÙ‹¬ØX›N -ræŸÀ9ǼáÍ, ¬ŸÃH"®Rw¥çaT;Ü ~ü|žC£I¯â‡$ ø É§¸ a#ôÇb÷ž¾iÀ\ʦ¨7kk{ÄC×àg*p‘aöê®ÛI†êY4蓎‹™ýT–³Pê,¬cZ’’ëmóp \·›Gº:7¬²·ë3Ôö,·{míÛk BXëâ­H¼jùe_–ø&Á·{W•uvíº|À¯A¡çž»ØÂWå¸Âޝ.KëÍk‚’R¼€[$À~éÅ8¨×ÜM(ûšõç^–Äî-¿‹·ÄKˆä[Ð>,Ù£ Dþð·ïxý<(ô®½°æNýK€Cþüu®úèÚUu…[o4® P$r–xNä^XûîÚb+з ™’¥l47¥Ô%¯@@QŒ!…ˆÉ’ô0OH XU(‰¯‘°†v¤gUŠä•&¶Ærî š¤¾R\Ò3'-IzBs–V;¹Ñ„L§Å‡žFO’Þ³¼H/ÒÝÒ‹kZÿ´5­b?é‰uP_uêžÍx³™YÌ„ªsKEÇÖrÔ§†¿ëÅmUœHò¢±Ÿ#‡‚”»,QýÉÅçu”“ä`8_^úk(~–N‰µµ‘mmíÃðÃp 7>±Ä^”ïpy©L–Æ‹^ÀŽà„Ë‘=)q÷$ Òîï¬pi¯­¸‹×6“澙ݷ®ù~\±Ðar8t£—‡¬½øý9°h¤Ùdw/ú7ýžœxWL®å£Ù¤Ë(×ÌQ©S#ÃWæ3Xæ/[]ÅM”SÚÀ¯ÖûðÃôÔX)Za,€³Ÿ_¾¾>~˜b/G¾¾ž?õqœÈ¸¬„6m¦¥çy+LÌí'™{žøÐþSéû»ÿTãÙ† n9¡8B¶îæåD£™† A+6~%Ï*­{¶®ÃÒýçíÍ{¹Ä„…K(Ø–ör‡•jY<;‡'µvµª– ¥ì {¢ 6ß³” ç†ü +­˜(Ÿ}yþåãÓÕ§†²ÁoPçâ»ïijçÏ¿°Fb¬5}^”ŒõV®-R9AÜ&<-ñOç¯To©FQ~}öô•T9•¿Í&À,Eoô‹Á0K{R7 Í„¡UrEè’_4væùh —ù]^,]Ÿ!çñëßãM3ŒòÐ|êH© ý¼ê}TØÔxRÿ¯ëÇ,©•¬ågr­Y6±á]>Ñö;/WÚ›€\ Æ=Ž8Òä¨ q+¡Ì;·`° ` ]þ²‚un@'K¢ðŰ{5^þ=¹þÖk±â·ß„ù®ýdžs¹od‹d]Ì^1žP«ì³g¢"M<\€¤åð×VØ/z8U°¨»¨ï¾Åµw$¢e™ôÝhäYíùü¢üIP@’ê§­¹HÓÊtŽÞBX9àÉF¡3]JRaU `Vb}çØR>8­¸ò”Ê¥P[ÿH.¨ós=ãh)XV¶ŸGÿÎ5Ö`yê)XD¯º"êXµEñ§½~½¼¬[âTãÐ~þ×õÝÁ4^¡ã{ƘbycÏu¿­žÁ¸b±Ž¡5 Ü‚! ôbDà §=$9ö[¬[$ÿS²¡qåœ[M÷_× _bÙ¡ Øš¢NÈJ¼g'ÝX×"xÔ½ªµf{k£©0œZ5&Ë- ¦ñ¶\ÁŒÀÿ.´Šý•R³luxQÉ95¬éá èø=æ¼ï‘zYëÃÖxÛBG Ì« —¥é¯ú`Gñ²üô‡Hg½®sè |ß›ø~·æ†ù0T@øB³Õ¯¶(”Ž-üæùUöEo"yˆr¼ýàC~òⱟõ×—¤ÒI½A€>ñE)¦F±Ž£øÍ/+æÒÊï¿Ñ+À³/+ÎqˆÄê {I¬ìªz¥$«\±Œ¾åö¬zÑ«ö¨ó±nÄ3üâ¹~)Nñéh0º&H¨X›¼F„ÿM<]*^‰§þSxç­¯h:býñ‹«’_€àçÏQ~ÞD4cd’ü‹øoC\J¹ˆø±Ñßãk¬/îå…=À¦ç™¬^¢‡e&Kª{ÒË«žÂš UIæ\@ž·Q3“»3=Ý1C’Ñì½5ŸÌ×îÅ3Z¨•ËP|‡ÿ¹ÌŠ´RÒÿ z[©UŒ±Jà'» bì¹®=JJ"ûã!¨,ÎàQÕ!a‹!“Ò4Q”Y%ÈKF{9E‘æŒç¯µZfÒ"•××Õ͇éwÉ Yû^¯ uår’Ž,éXr´Æf7»EŽ6([gÒM1í6©ÃôM‚äêDı°ŠcE¯kÚîúNoWCᕵ¸êÍ»#; KySìs‹Ú72ÕžµEÚÙ`¬#m„cÚ R&Ò_{ì£Ñ5^îèÁï ¦Æ.‘O¥Mn¹EÈ´tReÜ23Áà´¼ç;‰ØÌt¯m «ÑT »ƒQ,£Æ˜‹üòì -ÃÈÂrðµãñß<9°ÆÛJ‰ÿö¶66¶ñßÞöÖcü÷ðùöñâ¬?|^æ¾³ňë‰?Ë`_œ×`ÊN1v“ü²JxÕÚ*ºƒ\øä†ô ¿.¬{»«ë«ë;kë{â[¥Õ0¾™€hœŠåÒŠð^¾Ü^-¬»bþ0ßõCq /'°Àé÷ýÉhmv…gf°ÖõÈSekHƒÁ Xw(ëÞ7£ÅÌN‚^ÅÇÙ d™ï½´ÐëŸßš>jú=¹‡‘¡ÚkÇž9 †ÁĈÓÙÙ ßÕ~7‚pÅhC|^R& Ái­ßSîzåj/}¤P9‘ÞòÀ‚K΀L< êliÔ t9Ë(xhÏu0@'ú, Îgƒ<`@—ûÛJë¸Þn‰bí½x[l4еÖû=í¾>Œ©ËF?B`T(ˆœ”¥c(QܯT+­÷Hþa¥U+7›â°ÞEqZl´*¥vµØ§íÆi½Y^ÃÓËDåçôå¹ !‘®yjò{=WKû¬2$¡ŒÜÞ[¬!ƒ”ñÍ“oÅjð¿¨^ðíëîåHx?|WK­Éxúd]ðVÈÓhûCm&a@xðôrçý\Ž´–'@ Þ±ºÚW(b®üÉ" [ŒóÆ—­†w'# èïÒfêõe@ó¢±?SQd‹”x‘ìFÜoAÿ AÍ..ר…d­Ó×½=&g2*öýî§UÔ§0ŠHEAwA¨ÑéÜQR×έ”/Hí•ÿ)àÂËþùÔ¬€¶hëˆ÷ä.×I=»ô!=úsý´U©×>®­­‰ÓFý¨Q<?Gí“r­…Os¹Æl(ž:ß=ÍKMã÷1N)ëÑŠñaæ¤-²Þ,ÈA—*Dg¥”˲(ÉÐ4¨Pí„Q;òrÐ¥ÞØÇàG½&7Ü(¤gõ3+©(Ô>ƒz`ðJTJ[C×*Êxok÷AìF"â úvø=ŽÁÂAØ„I¨‡Cü‰UAù³~H„qãw»Ü‚óAðEëªÑwlKl„\î$7ݳÿ% >T¤Á ¿˜-B†Ñ ò$Í*Œþ~ʇ~ž^<¥­]:‡ƒø™CÖ1„É ½ÝDkálvvÐTß÷ð÷ªjÒRŒý°¶qó“¿™ÜöØ‹þôcÂ?Cù«¯~ô—¡ÉˆŠ žXÚ‚XFIX”D¬¤ÖýÌ@ÅÒâɺÇ©á=•+âR.«TÑrEÕ„~9Î ìI:S¡DΉ«€vp;™ŠbDÀ –¢¥'?.íÁ_¯¡ PŽ>m^wɽ‡Á¥1ë†02,á?‰EôFH9‚KÈ ñŸO"ôšd3Î4<Š3ÂÃáð)ž!y½B,!žêÞНÍØA¨ìɃ=Cu6W7zÝõúŸа€/8Xψˆ$R%t¤&ÔF‘kRP³ÐÕ+a$‡3œîN#û´ŒÈ_¼½!®-ÅÀ'0(ÝKXrI‡ÕºýÕR€’ò†ôZŸèd kS¾ÛGÚ6Z%§˜å¯ 2àôgýIÀ‹åUHGê´¥—+90ÛzÁº /^/AoœÁúp£äÙR.ÄËx…]è[½!ŽQ:r*¬)lZ>Y· oÂip…8Éb¦±–¢-è¢>Ç'n˜+ ×Ž0 s6^S+%ÐCk%HíA§Ý¨¾6•|HÚKE–õúV©ÙÙ¬Y/®¡] Ø HäDGiÌ tJRP+“ÞQ1˸W/Ý ¼pã|“2ø7%”o‡E†²Ð7™Pê@J™R"^t?ùÁ«% Å÷Oât¿Puý`CV€±qÞiQØYW¿®6©ÿO¡ïèL¹z0v6ÌV-¢úa!äÕæ‹DýbÝ ëoj±ú-ZÂîÖ™´Þª3±DœbgoÞ«ÿ²÷ ›ßs9Ü©¯HöûVÔPöú¿DÇÔp¥ŒÔAXp X¯#á^ÿ×úÄ[¿ ŸOY9{ñ߸>¿x“Þx`ÿM=ý\ÒØÙ$žâÊS±DCCñ$,Á9¡5øæÎ8|½ôT?Xó»O)ˆ~“Z¨wRm°%=×’-Ñ“OŽÝ3›Q sj4Q‡»³¸ü°yÂÆ0}v…y{lÒ¨ìO×`\BÙ™%3‘ú"¾^ÀJþì7\ÏïAþàÖäâq—*h%ho‡þàæL‘Ò¥‘ÄiWVÔIïqvœa÷fI|0÷M–ä ìދێ˱$+ûШ†¨Ñ‘íS¶å=†f }Ì£“OÌVôò©Ò†ûÃ^ãÅ£~_”åè£óJ«@æÌ¸º„樫SZ@4#{L¹@|}G%Ï&ýÑ,ÔC¾Y9ig ÂgúmD³]`÷^ÀBIbR,+ïòâ •FåÝ t‘©=hݼQM´QÅÛKj àË ¿Tb:ÞFö±ÀS>XPÆž™˜ôÓ‡pŸÏ&4è— z dôkª£ %åâÁIYñM?Öd6ĦÁb¯øg#yÐ_Æm]H8ÄT‘T§ìÜŸŒÉdR:‰-€5³hÇAð ÷òM±Wñĉ§gÔ¬†À‘òÉ´Oý«1îCD­ÒAÍWbÉÞZ²ØûP}u³ú×õÂþè­Áã$}ýe4 ¸Ý*­Ç^ƒ,‡r§ ß•áÁWß=ý÷ÿ$÷ù»T’ûèc~þ¯õÍÍ­Dþ¯ííÇü_ÄçÛoÔöoŽ}̯äß?æÐµÔQ?¬70˜¾Žr¹îùÀ¿ õçÕUþúq)7蟅¯£}Ÿƒ!J–qXÇÛþ#í`•Ð2‚G øÅÛþ(žà—%ò\¹‘læ#Ù(d@²;ÇîG!¿­ŽGaÿ‹ÆVµlôþ"tã%$×JÇ^/ÑÁ³Wœ_X€û‘êÀ~5ÿ–BSV(d-KsvÒ¢EñɯTíïKäW¯¢]3ÀØxÍ>Ûÿ™‘Ûc5üöžn1¶ïC$ÄJ(,qZ3?éê˜Þ©Q1e™ÿ‰sàc¢çcÌÌ·2\€Ã%ÎFÓK Ç@…A£Ï¸‹.Ó†Ú§víÒêõR^î\blz!1îÉçwì;äLTe1Õùu)hl-÷-u¶&ª§N°¯o è :‘·$÷4'„XRIG9FC¶ÉlHøU¦Ñp*³p>ަÏh ‡£á*¥W¥·œpSá^×èUÆèGÌdŽq¶g¨ÿd\5ÐÊÜW2C§tòaB8bd5æå Év©†ó ºá‚‡‘󢨠T¥‚6èú¸¨†£á”‡ „Áª×V0)0^eÞ°(°„¢&ÿ^ãú†îŽ¥%å÷ƒoḋ¿ÐUó³vµˆUŸ½(¯A˜a±%ñ1Òå5(ð[Á|¡4nƒå_‰¹36Öby–Qç,}œ”yðL´?ñôéÏK!ôÚ¢R·ž#l§XʈŠb›œ_9u—J4oêJÜRkøþa¯à{K&MOä·'@Öj©y0.ƒŠ¸ïKR# žO~õ¾U¿GûÌòQJûÁ«Õ’QRV~ê_{‘ÅDÔ®þtá›%›!ÌÞáþ!·„øßëe®¢s¹²½”òÞ¾¢ ÖêüùÄ&ó‰Sþ¾\-uJ­÷§å¼ø°ƒû°¤ðÐéwºˆ!è-ÇÑ­¬¨½_A% bäWâwÕäJ+«ÿð!Y<‚ÿÃK{â÷² ð,õ‡¥*wi¢œ¥k'…šÀȦþhj?ç#¾‹‚ï©•]­T¾:~¢×xV€Ã©±$ó9Ä¥=_ôËâMž^‘G…H«[}UA®:àÈV¼§˜—ø/å@†U«EHõvƒ îЪ}[­xDPT‹~yŠ­Š­Íñ®ÖW$STÈôǼ¶zd‰ûÿÉS†¼.EeAC1ŠKìôº7ó"o –áöË4r¥ä›@V¨Ì¥þ/?x'“Td”öAz‘÷pû|ÔÓŠÿ¬†©U¢Jz-ÙÎüPøs\ï“Z•ÁËbQR(zn„ÂðpÔÁÀ§ê Hp¬~xM %KºÂJ40ðòßþöëÒÒï+Â×<"M•å^?dT‚µ€újՅͨ,œýLΠO£DÒJ¥ÓT*a8è »þX¶zÖÇÇ!Ä«$s¾Ða3ŸžÇÁ¥ÈЧÊeì17Äy%¶èæ‡Ð<ŠÁ&Ö·ªÔ‚'ç‹ÒâQˆh†'“ÉŽâùÄ%¯å8ãÀݳy¹|b¤D4k`ý¼"óË`fºR=ÖD­Þ*¿bµ‹N*KÛRú¯IyÒD‡ÌRL…:,†{V Q3¤c7½þç~¬G-dȱ1Ìo õˆõ^?1dÛEi°KÈ™K¶ŠIFuõšòWH;“"¢¤º¤«d…ì!Oÿ¨AQj¾ø–oÍéÀÀ£÷í0¸FôIKÈoûçkkkßÐÄsÕŒPßÿ3Ññ/*Éi0>ûCt„D=KA;y›AŠ:ëÛUÅØ&~Ÿgñà+ïv_±)×j ˜ûdpõvÇ åþètѦÅÅR\gt•ƒâ»ˆZÙa(ÞžvW¡q.RšÂ‘Ý®G†“^éd·Èœá¾&Út§_ŠÍð%ÖÞM;-oâ'+'>Ive÷F3 r•³@ÊÓÿ!ù$Øst£‚‚Ä’x‚÷£ÑyvG.¢šãnX’ô¤§ › 3*Ä“ÉòEÇiŒ 1xø%5ò¨[Qæ<¾)Dý©â¢)7'WÅöñÜàLõTNœŠsÍ3bô\õ°aiaZc¸™ä‘3éÃâdêt@E »‡¿¥Rp~ƒ*ü™?3éÁg†Òí2š…l mSŠBƒ©¢.n‰¬ò)H{‡ZN'9 ëG£)cÍB9C^–.ÅóÀŸÎ&lœKc“ÅÎ¥ëI’‰AgŠ3®t–#éñDÝ#òyæ­ã ‘Ï“ñãÕÅ0wCåö”¡]ƒ°¾–å„Të@5…L|ÿýÓÓr£Z®<¥ó^tsŒuWQŒ„“>.7кuJK’g-‘U >°]5ž%³à«Wt9bÍì À\Ú›͜ә̆óá>Îq¨òý“‡K•Ù8@YéûI+S7¸Q2ÙŒ+þ!~Í]Ý,?™® )¶Ä¹…Ÿ Y¥'þ8ƼDCŒù[~Ú~ö4/žt~^ç„4«†Ëæ“®XþqleÑD4]Ê¥XÀóvðý{ ±[uÿÉT¬½R&ðtÏN®£^†*Kȇ_~ÅL!¿/A½Qº3é‡Ü¹ú5FO8Q·üâ…¢×AÝëÿ'^ü÷Ï?¿¢Ê^}üøäED^&Ò2L}2éqYO¦|{Ä·¢¹kY¬ÒŒ÷ÉŸÕc ²ß´×FÎ NûŸq³‡N!ƒ¸ýPžOOîÐÒ RÏü« ¶!øE˜ì xè yuM|\òêv-y²”àj<½!Šè0~oZR®]RTqä< 9CËÅÆÑ•· G„ò•Vj˜6ñ¼øÆlióH¡u¸™„+ć!¥I}ºuŸLÔ%Æ¢žâZת c¯ÄêT§ô:Dæ:UZR³ÉžÕä:h¼\ÿÜ"oa›=ÝfèWE€Ä³5ÙÕ`'šÉ9•,[¿^¢…ýÉ¿á Ź'`¡MüN´ °`І4Z4²h8yÞ·œŒx0s¹Zù]«Ó(¿Êéô~ÍÉ„aì O¤á„yÕ£˜sÀ˜«.§C\åþƒÇ »J.˜Ó‡À–ÐKôüZô0!Ý¿¡ÐF}/‡öÂ+KGÝõ¤³ÄÐÚ§ ¹Òa¹ò!|ö䎥zðíÏÂo>¾àüm¸ñ€‰_P8«õl%­£òÊ®ujJKBך$ÛÐñºîË»@ÖTZ[]¹Tò–מ­¼0»×1ÚOdÚ=XL¯ÆËqÙÙÉrÿO„/>„ÏŸ¼xÁØ#VŠG‹©&éŒIࡪ—ÞÇë"ÔúÍòêßVAó{ñ"ž¤ï ˆ°™ÙJ!œœ½¬‘Ú'/b+®ï=Ôîl¹ß<{&Þòºþ ½fPúº#KJ­œßQeó;òEbaë0Uq;ë·ÿÖ6|l2ø£?Èôº]3 “JzŠÄ_1Û“Nz Pt)“ê5Aæt®0ýBuëòÚÊÚ³Þ‹Ðld4Ÿñz›ä|^4£3ÏiƒÒµ×ºQÔÉ—ò5¡Zer'MÎ&ê"Öž˜VýmߣINš-î?h€ù“›µ\¬Õ;8>xøóÉ ºà˜y ¹Kàtû†œYKO6òñÉ»½GÚÿ;È5ñdOúŸqtI» §§pºþ˜nœW”²æµ9K5*š¦FeI[UW¥ý[ÒÿD)è¤_JÖódYUÆ^š/fd4NmŸ™†5m“R®NÚoëѨ‘wˆ!C!gõ£‰ë’U5(þA,)Ÿ§ì%]L=wQ>Ëxõüõ‡Þs£õ&¯‡F'ª]måkжfg¤™Âô…ܬXþù¿óŸ¯ns&’šùíÕ µ—Ú½ÂCP`ü‹%u¿¨Zò¿Ó »œjs·žxFzëobš„Sf‘¤rî$à%CÈÒÊ-õ–¤}õ±ì ìˆgÔÇ"öÑÃÔŸî©n½$*ÒÏHÌé†{W å”­à¤Øø‰2œ³ö‰¹89V¬ßL>׋ŸbîYw¼åShs3v å¶K§{hâÕAäÌ€·/fd^¢zhs`ì3ÅeœÊd)Ñûk|zî`å˜û;Îѱ×q¦¾ ¾X ¶î }Ó³g©ÞðÝ„‰7ä•»rcz=”õ·ü^Ðí_ùƒ0—‹ëð6R/˜ñ®nÐDdm9Ç A×kÉ}•B„WÖœ72Êå=Ê£û|% FfHLváóè*ñ=Œí‡³=ÛÝÑ3~&gþ´e%2æ…¦7®"{µüaü«týþká÷•ß–~ºôqfü‡ÂÇç[ùPXÁåà">Ë,•Þs¥ÂŽxƒV?Жÿ2T¶ …Œôž3έKì“×7„¨· ÖJ›}#-=¨E ~{õŠoý!χªV¾N%D-§¦.C‰Ï›5j+Fz­èíêl¬6fhh…)8œfÄ•eq ] æÆOŸ&W*(D¼ ho‚˜†r »ÀW$S:$Ì݈)eͱ&c² žö¬p‘S…»î©jÂS±FÏöT/¿Ïp7nPÎ^|'3òšzH*¾Ü&8ÿâÅ…­“ Ü<àßô y–â L±ôÕé'¿JøßiÄ©m?:TÏHq¤[º_ LF-O‘Ÿ3±$ó& /ÒYMËÆLåùĺ&»ZF<½¸0¨N8E™³ÔÁkráe/H6ÉCêÓ.jí1·¢l»îÃà[7ÕÍWKýs)ÒA -ÌÔ^/~öWùøŒ §¿‰%KKâÛ³È4FZGNR`à ·HðÉXÑ™t sª-Œ0N<T'±L»ñ˜&, Ïg2`ïïáµ´ 𕿇kJà÷Ö¢˜]Â4„!&þXGΆ ìÞ|Ãñ4ÛåþN_ÝJ¨<ßÍlµÃ3º08«z _zâT€ mÒ~í0KYBªÏ,JøÌA¡Læä«ËÒqY§Ñ…Åëä½d€Ë# G%RUßÓ´»”]´§ÁµÄ̱ôbùoß®¼xRXâ¹c,`­(KeEë~ÏÚu’;7d!ˆ5_lë‹Í±þ$ãÏ›QdÃ¥„dÆ‚YzbÂ0¤ÚÂ3tàŠþ@_¨&Á`’>·ÁÐêÊ2X‘ÐàAƒX‰|(Ö„ÿð–ëáoOVHÿ´÷Æ£KâfP òE¼NXé®Ë]`@¿ÿæÃ‡•ž(W·ÃØÊT!ºP”‡ÐªK³B)k±[—è(9ðæ¨ Ê˜Óކ†9TqáÇÔŒûÑWn4Ä’Åø½{ä’R©*“óéÞ«]Ž=ŽÄÇÀa¶CPËñ¤Q>äõq(þEê9†Í0"ÚWÏsx{od‰É5®ìG -@9¨îox2ž…—yWñ›ø@ùO¾Û[kšæø[oîÛÂÜ·sßnÎ}»5÷íöÜ·;sßîÎ}ûr~o¬Ï=¿·¼ùÝåÍï/o~‡yó{Ì›ßeOA1Rf„ôk+Ü‹=DVTw€Ñ{ò+,¹¿‹å8éL¥±%Ò»ˆóö qñãB·_\Ñ™g7K%Ìê?Y¦&­XR¥ÖRñ¼±.¿3L_sË@ÏI úo^ ÓIT± r]ZÑ$ã¿ãmÐeae%ÚøKЗðÍ:d¦4±ìÖ›÷©%o 1ÉÃ[5ä?š6ÄA{˜{s >wôv $­"ÊgXdt! zöM<´ö>áÛaùËL€i᛺ÿ0Þ–˜IHu?é4mðÈ5©xþ\|µ¬zvA÷`þµÐ{%¾'ñû5ÝBe eZ¯ÙmOúñ®Cò­;2’=ö¤o¿7+Œ¾ãnt7`nÈ‹õ¼ðv­K²äWÐzñn²@%þÖK< „œË~ Ž•£äðtê@ECc´–ÂE±^Rk·BJ)Ç©¯.!}”ìÆ®?ÌÃ"x h'tÃk7ÐÈ8zcZF’Œµ\¦IJôË9JßcS4âÅ/¤•h‘f?çÈne·wèf/ž •—4ªf ˜µÒÖηļ`Šãâ›r§Øl–­Î±ð/÷Û•j«RC öIy.ÈI»Ú©¿)7«õ·sÛµF¹X:.îWÝ‹­V£²ßn•²R«´*Åjåå'ìA¥Q®¥ß|ߤô/s^ãv_3å=ÔV~ÊË·•ÚAý-u¼>)ŸtJÐЖ»‘Ír©Ý(wŽÊ­ríMG³}zZ‡AáݲÝ8ûµ·=ÿýF!þþ ÒÄÞïÀò^ÂîûG+•‚jeÿ ÆÛòA¥5ç5柬Vj‰N0@þ‘Zùߨ«ð°sÚ¨·:åwЇ-jH±Z­—Š-0ÈæõÄQ£|êÄ™*!ÂvvÀÎa4Íhà£Rý µÞ«G à¦D/ì7bí}©Q=Œ—-ï—*%÷ÓN­ZØJyU9ªÕ¡®£N©~r :^¢¿je˜Áýbé§fµØ<*ù’Ù©üÉ6mÍ?jpöŸ:M˜º¶]¥Àõë¨Äq¹x ÏO*-g‰èuT䤨*;ÊÈ"Ækg™ÎAù´uœZ†_›%ßÁx5ªõúOûåc´XÉØë¨d­ü§ <,¶«­?Æ^D%N‹ ÚšZ¹Ù²Ú'ëJ¼þÑ'bÏýö¡1?&^¸Ê`#¢r?:_ü˜³º¤V<)ÇGÚ+ì&aJõvÍ'—Vº¯²™»pý«Ö“Ï<ý4?º,¬ß½_óõ¿Í­ÂúFRÿ[/<êÀ¦’5àBÞH‡Î#Ú|×oú´ÛÝó p–Å‹÷‡iøjŠÌ×—'0DÂû’˜5Fæd€ÚšSØÃKKœq†³:Ðö#Å&ã6`¨`(7|ÌáÑÄ.Þjˆ;†yÞªŒÒ+`â™àÆ —| \Z"I”K9¾‚÷*xËÛçþd4äääü’ÑÏ:÷;¶‹Rmç­Në‡|µÛ„o]œŽrZnñVñ’î¡¥(½Œ«Ft¢‘œËç, ÍUKDîTS®n蹋‘G)™Î%x^ e¤:æŠbYóZ'x:Ö üaN݉¨Ž”aÕÊ_µH7:fŸKªÛùбPš-­ÌæwL·R$É´³ §êYŽ.C䀊‘ðVˆÒV£]f.2éBR¡…pX¬â¢ÅÁ G„H¢°%àRöNû*çüù-oUõ‡"ιkâ$jQŠŠýEÁ1ÜÏ‚‡òÁß<—>6-)eI†³v<Ý·ýs¤â…<`,ÏòFç@eÉc×Pvõ`M‰ÑýU#g»ùЛ×Ñ¥á´E± 7¢=ìSÀEÁbÍ|É¥>ÏJG»¢‹Œƒ®$TL{£EÎ.ã,b` S½’×GÎ9‚3:᪷áWš0ò<—yQ=¤c%ˆž6"1~…Äå‚×,îì“©¼NŸûDÙ% ¯]rì͆Ȟ<`E”›"{߈†“øUpÛ/¼ažÀ§”'2t“¢)8r-šýe†Íûë{LöÏ8CÞêôVÖl*F¸$Öð,lèè+]Àk˜^>Be Êð!l@±YªTìqG®órDyôXH™ý±&Þ¢V)oYž{±ùa8»ÒgS2‘ˆŽ¥Sðª´^£¤¨3*FTT·D-ÓÈrJj ö+m½ð¶_lŸC-t —ܬ҉°ôrè›WÊP)c¥9Q l0Ç69+Œ œ, «5â+< %ß+}J§ÓYh½“ êãAÿ XæF礠Ø0…›ŒWØ€Õ´¹ƒwU^€VC1îŸe\ìˆC¯Ö(ÝÔ¾ÒJ_ÈpÐÙ@‡³@ñçðVµfÝ&}¡ïFbkUƒ$ÖÖ¿¶LžæŒ, Ö¿x[kXï“å±ÉH^‰è`ÒSråñ|¡$£A¬»Íä;IÈ O­Å¼fCßóYëµË„¼S–³•Y8m÷j +‰[±1†«Ó9Ã*X§³¼<Ê3ûx×ÛÊŠ«š§i–ZÇ“Ñç>&—îtx".»jˆ¹‚o‰˜îäê;W³Aeû9¨ñs«±ÜÉw¬l6¤Ú(âçÖez¤³ þÙ/0S3Œýþ?XYÊ‚olfa(íò΄upÞfAZ=,Õ2âDÝUŒ˜‹†tÆÅøÑKLn.å¾E]ºžÛVUvËZÁà ea†z*µ–ÚCÈ‚™ÎÈgÁKZiF¬ÿs\÷:]è¼O­.´Ö¾D‚ñÝ/Ú!°ì=ï".ñŸF¨ÓŒþS½Ù*ŸœÆPšØ8ûÜô¹$”ki_†ùdÇW;BÚ:FQØ ?ëœ6*uçãr£ÒšSÖ‚ËÔ··`ç[2°ž1 )§£ÉÍ­j¨4[õÆûÛÖt—ÆÜ®UÿU Æþôr>§Òêi±• etñŠË‹` ªÁ|¼öŽ]–¾¡LYD:¥Í*Òë(#ÒzvœÙV4mÿgÃJŠ|&´¨hf¢2„,+Ú¬XoÂxY[¼ÑÆrVÌY×sS:+îk¿Ÿ•ê·ÅJVªAç¶È€Wï“»±Z>3­à•JÂȧõ¹¶[ŸRð L]Ú€A@&«Æ7•fe¿R­´ÞgjÉ5šòTÀFÆÞ¹î{£ë,#E dÁ›Q³´K:3Īañ¯ðN €øg³×ÌÑÇ‘°êÐ@tl•œ)xÁ÷x<ÀµÍ14’ùò‚MWT~Ò;÷ÕS4Ç£4Žˆ€Æ0à–»>Ÿ@~í_#í üÙ žG3‡yë…MAÙk"ýiƱkϸ 7krìv“]£j´ÑŽt/àôBò×pvuÆÞ%¦Dç1œŽÈÑ8ü²@Î)Û$ºÖû–C¸Ç'ºÖdÎ{6V¡‰VS¹bF³ÈDïEG¢fc¬r{kkc‹Þrw FÜk´%ð™ó¤a›Â)ûRþ9šÀ´!ž¢vs¬"jÙåANmy›ª®”Oß‹ ôtÈž&WŠu -"˜ˆˆòÌÓ¸aR‡à*Pµ£¤»Ù P0'š 䨟­ò½µÈ²œ·fîÁð@„Ø#êf‚HÁSóCœS™\eåJc÷‡DhÓÛêÔ÷ÿvUD¯z"–ÖðVœK©yT§<¨Š·)ÑûÞl"Ó¯ÑÑGf5§¨IOc“ŒF_±4‰ uÌRÕe÷¦cJ·Têu_¹[9ï9žè£dv2Û¹åeOÔÂdp…Á—>æ°ría%ˆÖÇÍ!×u$Ê¥ƒû”mí3—Ôýl$V”®F¢<1qwˆ4rh—uß”YÝ.¥Dä› ˆºAp½~…ÉH’|n ½3ÅK‘GþËãˆ-:UõxS2RöéцÎ4:­ ì…yOIR9› µ·ØŸ²û>ìO|éåºHÒÉLŠ(êT]rŸ`YæVÍKæƒÜGž²Ÿ©#ñî^<¾z…’5±.…¦‹¸ðؾ’b_úW³+cY‚Õml­Mòìš5·Q2VGûyÈ ŒHj<ÕÙI×ùl bžš%¸×x†"Cb­¡±cOäÿHq©Î£ê½aï"9ç ^41êe˜,¹œø¼‘˜rß…ÇÏøNðhs¬h®\Ê):ô’ULÙ2{QRyPc‚æ§Å$ÂF£O>mk…¼IçOGWý®¸€gãÔ¹Àã4'ÚÊš7æÔЭ£«¤'ÐÓ@º5â¼O º£îÑUÒöÌP /.f˜CHøxÇô”ú–<Ä¥ü•œõŒ6øXb€›C,O¢ ÉV§˜qOiáP^RFüÇv„¥Ø¡c0–ºÈÆãîäàØJ«$Í ^`´¯kfJ`ÞFS·b¯2 1úYp‰éStÕD,æ„¶¶JÎúdlå`‚^ç°”J´u1Ø]I<Ú 0º,p˜¦›pÖ¶¨°ÃÔ&ñšR!a‰NÕ]ä|C€ºD†…æ  lim¡e‹cHm¦½ZR~´€ï÷T0ò§'–K p±\=„ßø7}ÛËÅÚ{ø²EK”ÜÖ]aq´-–kíªm"ÄÚ€i)¢5ŸSòª«æŸäëMÅÉã%‡Þê÷z¨±Hõlv!¯á å&ÍaÆk¤jV[P±z:ûm ¶ÄÛ%We˜E‚²µêw$n'2œ]b‰q>2ìMc³t!bö¬HÔ‚" ]à…=áÍÕjð—\•™òV±Áħvû%*>´!ïf'Âv£êîÑÛ4[Þq+–Œ[³.´k *% ´vÅ+4iß>ê˜Å,á]Ÿ¶ñT-ºÕK'ÜI7ö98€&0Ý4ajVÒââ ŒÆìIÐ?'¹°•ni'CûaE˜HnížÍPR)ð´)róˆ.Ñ ÐLžLõ¥\|Q˜¡‘jÏ‚D%#¤>Åå°}ítîŸGÙy‘àLâ2•ŠÔ)€ MáèÂ2”ð¹X ý¨)Ô M“š&-A ^ óÐZ‚ Ë;ê©¶/h -©ˆN’¸¤H23>s"Ä ë›»Y†Óì47k'©LöÆ-–»™–“ì==¿› YÆžÎÔÍFç,¬÷ »·v¶ÍÇ« õA \¦j{2NV&"K‘lø(>Dº ý3ãÎe#”$¦:—G«JæEHqèÚ'é71j½äxŸÐª¨ôüB—¾¡·PJ )X ”ÿT Ó_cd¶§z™ÈÄ ­y Âæ@^a ÈÎ#dqp£GKb¦h´Ÿzª²ºÃÔ5]|—#©‚o¥Û6r’Ñqv ï,-Φ#ÜñI#:|­P¥‡CIC:WÍ„¡öM»°ì5•ÏÙ7|ÅPGEq€h²¤Î@øŽžu§<Žou®;P(r*( #Ê](¥áIg$Iæü@;uz/ýè‚î ®$R`JP’èh©;¾‰@^ê+ƒ6±•Û8š”1¸N^}c;¬Ò‘êíDòÑF•Ðþ”üBöÄ\ù#}ÈTzÈ $G”Þ-££É Â„úÚ:Wë5¬X|- Œ|Ô ã ¯b_2'ü¢X(±Ê”̉ÄSaxÆM¦€ªÓÁÍ”ì‘ÿP» äì‘]î }×—é€"±mùh‚–‚/¨oDÙnù2`“¥hûg á}©é(y•uMÅyË`RÝ%þ8À‹&ÜÑߺkŽË,Ǵº^<­$v6 ŒŽÄ°ö¨,©rKìN'\%Ôöqr£8®Ò^ÉÝsDöm¥5Oi·t6$ ±[HgÚô¬”X0Ç¥² 5EJFÁIå·œÎ)£L!ÒyÑ뮨:‘ %³%–åÔ„²)‘e˹ÃÒä1ÞßÇfW:GVvib\µ:ª¤[_Ú'xÇçÅÿúö¹¶¯H¶PtÏÔxÅ2`…À:¯WjîÐ7ä-DÿKóJîbàÝeCò+«38èÍrµ?œ}1¶tYõÆ<ˆ,U5T·ºþ”.âÅ}Á5QMµ¿/6z“ý·¤>ò^Žy0X­Srbm\tNؽ+O›Ð¤}¹®ÏÉÝØw1Ä2Š•9mÜ]ÞÄÓ=6×ÎAû¤â8ú†t\Y3e%Â$wvOí ¢W³™ë®$±¸‡ŽÞ¤4H+±ñv·JxPö,Õk²FíŠÆË˜Îg¿üB„Ç6Ž\vÿAåð°sØþÇ?²Õ`2Êß¡ÛV+ÃÕºÆõœRÏß]Tv81ªï¶Qqƶj}©xöK!oløÈ˜qµ7ÂPŠ5€rƇÅNÂg¦Ge½NÒƒAé•Ðú¨Ed¥Ö¤Ïæ?@ÿ’¡‡/~YÔÁ W6ôšÊ›RazSEeJÉ#þ™*Îýä¬&FJ)#A—bIbâ2-q´eA‚LÁYåî2‡,F æ·"ƒ,v&aÈD+ Xo[œõÕ}ln%)‘#3òÂ-‘o,òÝ[âÞ½½µÊ5ôz7;£빫(–lSôÐUÓ»u¼± yvÐGÍ8u?Ó¸}&M`uw»´•xŠç­¾ 2GŽOWÛï„ç­Á?›¸ãÓö;ÂVç]ý´\’J?•[0 ZSa,Ò+òîM¹•—ëñ”=)_ìiÀØŒ¾¸‘%Êò˜ ."õÔ§°@Cÿöñf.œoÐx_ ™â2º@[XNGcé™Àã亪Xë)¸Ÿ¦ŠÌËO&‹Õ‚é~󀈒püÄVvc…¸lRjåK2ŠõÜÅ+È)‹*4¨¬÷zÚäž]\JVu?\´Ä#ÇÞI¡ýÂ"1fŒÈ+ˆéRô´™÷Ïêñµk•9®Ó(ó…=^Q¥…{Uê¥Wë9+–’¨…pÈÎuË$F«ÌØfù¤Xºiôr „‹#Œ±Wäy«4ë/*å’hA©ÝímouëUaÝÛŒ‹G2¸Þúw¶×·¶^ÊÃxM‘¶Ì\|/½Ìîžf#NÞ‹°¶•…°ƒ¬„<a›™ ;l×JÔ½q™‰ã™ˆ3@ïD\C6w6ä®§‡ñéPK!¢èý]È6w€‚õ—éœ[Çæ)´œ$…ØzH?KiØ„E3V{«X;(Ÿ$e¾õ|ŽUˆ#Á¼µ¾ÎîFs—Zz6é$ùÕ:4ƒ¨ŸýþÀ§M‹2¥‹$$´ùÂÏóFFDáËŽðWDD-Цïs̯/¯¦àù<ö!ª<*dFù…1<Ò?Kxè`6âNýð° zÔ~¥÷kQ|:Åž‘w!/óÕpz3`Ý*®ãwªÅÆQ™ð:œd|Ï0ôõÿ«õi¤p¡Â4š\!PT_QŠá%x÷Öžÿáíž°1ä¤>V§_\÷{xaØãiÅö¦ì;Šéä *©U¢mí¢”Û!al§'ái‚z·7;*ÿg6ŒH{Ší·.é^`Ì1´¸ëÏXÿÕ)°þOä»gæ_þ,Èÿ¶±¾µÏÿ¶½‰ï î…ŸÇüo÷Oà†Óú1ƒÛc·Ç nÜd=Ü3¸}õ nÉôm®Üm©‰Û³¶ýY³¶YÙ½þ³òµ-HÖö–©-™¦í>9Ú\ Ú4;[†ÔlwÎË–ž”í2²-JÇö0¹Ø$b»G6G ¶ûä_s%_»Gæ5GÚµʹ¶ áÚCf[Ë’jí~yÖÜIÖî“aÍ•^í^¹ÕÒ«Ý?«ZzJµ;çSs%S{LjŽThr¨-J v¿ìiîÄf“7m~Ò´ʘ¶ ]Ús¥¹¥Ý/KZjŠ´ûäGs%G»Gf4GZ´ûäDs%D»W64g*´ûäAs%A»_4wú³{æ>KI|v¿¬gî”g÷ÉwæJvöµ2¹ÓœÝ#Ç™#ÁÙ½²›9S›Ý=¯Y2©Ùÿ‘Œf³xB³Ä¡ÛÇle_7[Ù,–¬,¹i{¯Œd ¿N.–àÇÔaÿ÷R‡Í™Ã[}íŒO³ÿ‚tO³ì°p®§y”pp¢§yT<UwÍò4. òOñ42 òÉï”$Ç|ýG%wJRá€z ÌN3çãmZ'gN'ÐiqF'.mná?H"§´,NwIáäÈßtÏäMfæ¦?_Ú&;gÓ$l²²5=¦júû¸ó?é]ro{-¼¹ºgóó?­o¶ùŸvÖ7¶ó?ýŸoÅaN“)@vóvoç€Ä¦ÜM¡” >\ËIwòŽø¤ØÅ`tæ^¡<“ÁÇÒ_Ù `¡¼Ro{Ï|?êÌD”úMì­¡ 72Ïik-å)n:Ã"ë®4B›p €œàYÝäCLð4¿þˆ»~È]?ç’êÈð4 =—†ø<: .:ã@.`ŒÉd4é\¡BsázåO>9#å=êwð$À9ÆL‡Zªæ§@Œ>Ó¹T™ó~<¢ÝomØcŒnìÝ?ûÓ†Ä7Ô)³!†tØ‘èr>§ÅOËÔ×α‰^;FÕIç|3^8‹%©ägs8)à¢ÕI­˜Fwó=eè©‘ ì¨jˆ$¸ª©Éé~Û¥2ö* &œ ãWPž¥½&7|úk±ÑKäOVã;£s›ñ¡%¼sÆyŸ*îx£ÒÝÒ™@$ãã:¿3“Ouœ><Ò¡C HŠùíPä®ã-®?Ι•ö6 ð€Îå$J’TÜ<ìéo¿LÀG;|aô\ Ïþ$:Íà€‘‡oØêJ¥Çâ*) ñÅP‡ ªN- Ôb)×®ü!HxÜr@‡30_ûSÌ‘“ÎpP˜ A9^`+ ¢3 ÿ\ ÃÓ& Ê5íôKœv j‘ ó+‘²UµØ–óé&¤, é 9ß©— BÒÖ ck¤ŽØÁ½.ÜÁð½Üï{¹Ü·"Ò+wů¿îì=Ú¡öY`ÿmþeößæ£ý÷|þ5ößFÁmç¥=7í? I²øsÖ&ÜO-mt«‹óœý—x˜´ÿ€¸ëwØN¸ýgEöŸýÜiÿ-qÑé´ÿâ qû/ùžì?×ãTûo.p „mÿ¥¿Wö_"²ÿìw¦ý—|ã°ÿ’@®QJØi¯c³ÿì—†™—úÂY,I¥Ãþ› à¢Õaÿ¹LûnÑ{ËþKvTeØö‹¸ýç~KöŸý*aÿ¥½–ö_Úk±óí¿8,ÛɧJ€;ÞÄí?ˆÓþK‡‹ÛIHÓþK¾5í¿”·‘ý—0ì¿äKÓþs½M·ÿæCϲí¿$Œ²ÿ’o,ûÏñZÙÉWIû/ ·ÿæA$í¿$´Ãþ[¦BFPŽ ûo O›4(×´sÙ @æWbÛ‹¡`Óöß\¤, fÿ¥‚Åí?|´ÿþ$Ÿößî˜ í?os'qÿËÎÖÖ£ý÷|þ5öß®ÛÌKylZIc±Ç¬I8ZŠè|Vç¸*'»/þ,iö͇pÖí0ú\q›Ï‚‰L>ë±Óâ›á ÑiïÅ âæ^â5Y{ާ©ÆÞL˜%Ÿ'l· <=R€“Ëe¸Í‡˜[ƒm¶-šKmóª”÷1“- *n±í>lÿ¹ŸöeIº¯ ¸Àþ[ߨZOìÿílì<ÚÀç°ÿ&Á.£{ö#²âϾÝØ#xè«}ÜóŸþŽ®Q¼gsç¿·¹µá%÷ÿ½­Çøï?âóâÙm?¹g‚?§Ád°ZŠNe6dVõ²‘U>Pä¶ŸQRd™s<;ô»æu:oNt#X[Ãæ¾ÊsªÜ·ú~X¼¼v}ãd7*¡Rèé3ßk¹œˆ>%P&'ý‹Ë©Xº·½ZÀëÚÃ>ÉA¾Ÿ ä_Mú½‹ —[}ÈO®èÛyQDã‘ Ê«3”I£èÉYH7 Ž&W˜ôϤ&ê:à_nÉÍÎS²¬1æžb:1ÝG_Uz>RW.cWÊ‹})§t0}Å=óLØTQR>I¥e ôÓ“@çvãlõ]Ý“ÃÑ´ß ò²›eJòÒ™•ÊãOEPiwà÷¯‚ÉZ%P£ÑŠhfoÖ \ÄH"$Iw"FæK“˜z£î ­$_ Ø  Î6‡ùýÑ€7²*©\Âl†n]M^®Ki÷u~ß ù ,JŸÓÚ ÎµGøG“к …²€ôài€L„]anî1ºúvuñmàæ€…£óé5ò…ºuZÏìBÑ>rŸ¼ œx$´ªu\iŠfý°õ¶Ó¾Ÿ6êo*å±ÿ^´ŽË¢T?}ߨ·Äq½Ši¢D±vOk|+b,›Pr)‡/е÷¢üî´Qn6E½!*'§Õ ì <Ò]næE¥Vª¶*µ£¼¢Vo JÊ `­z+Í%‹‰ú¡8)7JÇðg‘oÕ!B+­Öu•1Ño«RjW‹ qÚnœÖ›å6ë Ò,U‹•“òÁÔ5Šò›r­%šÇÅj5ÖÊúÛZ¹¤[MÜ/çªÌÆA#ñ*ÁR [}+AÇyÕ¼ÀS«üR~W†¶ïó€38›åÿj¼Å“â4myAÀàÅ\'Hrý0×lï7[•V»UGõúõs³ÜxS)•›{¢ZoRgµ›å<ÔÐ*bňz ^Ã÷ýv³‚}–«ÔZåF£}ÚªÔk+0¼o1Cº(¡èun½FM…ª7Þ#Rìêû¼x{\†ç0µõT»sc—Z&Ô׋QE­|T­•k¥2¾­#–·•fy†ªÒD€ Wû¶u¶±É4D@56O)*‡¢xð¦‚d3p†^]¾„šíÒ±ìîµ^pqTzYÇ=Ö[xÕäQ»Ø8È}+Ï…¦¨DÇÝÙÓ«ñ"ª¬€þo?VIócèNЇ~Œ>Þz R³6wb0]åj¹=LŸØkࢲQ–ܨ§«è¦Œ1Åi´–ó-F”ºG®å0Ñú:Kc^æ:a[Få¼Ìõ¯dNMu5;¦>åü*}¾hÏäÊ;“uv]ª€1 “H;ê9NЩ¯ç0.ÔV‰¯:*oæÚ¥º6IŸçå{Hèš«æÓôæz£áÓ©ºÚÎÓš£³°†ÚZ“i6KU¼ËݸAü:ˆ.Qˆu*ÓÄUb1®R8Á²Â³Â²-Ëx‰×FaE|÷øF=3óB® ¼Öx*TBæ&5Rµ.÷* ¢ªª;ÌBüŸéRi‰Q„Ap¥£îêÄ»â¬(·®^™OšoJ:-¬Êå‰Is9Ëv”ü2ÊœóŪ–RúŒL5‚n— u“Ù\iÁ^‡#¼˜È¿Òµ>úÔØaxy >+¹ÜéRgLÇB·¿èKä%Ô˜•×A3F=—óÃÆª‰ý¥%ùÝðöP\¯@LsÉ( p" Í1<êWt‹å÷$U}àOQ~< #®Kö„L؇ýH¹Is”­+ û“dÒ7Lþûi8º¦/”SRsqjŒä˜0I¼†ûXÎz•ÜYÝ ´ÉËežd}ï,«Jál"S×ñÁxJK;¨Ý̺6ÝšwR|—Á´KгNU×ÄDËV«ž¼pȨ£7¢Î ÇêÎK-/0wšÙQ!} [¯ó¢dLœ‘ ”‹r„”1Ô1ìdTØ%rJµl ïZ×Y$d‚x9¾6`øŸ´>¬³$Ë»BÔÍ3ZÁÅ{G°ÝRüHàÈŽná5žé 5gÆ À4‚EJ‰–`éùsì’IhÌ_N¿D² n4çpÖH´DâCüjrGËÒõy«‹Ó5`R:l ^-CÚ³€w,ûðgµj{ûo`à°ÉQófBÀ°•äpb^‘XáVg¿Ù~gó“,\XT &Í4^xsAᨠÕ2Q›¬ywAáƒz -äØz­úÞ.ì­sa!þ.NÄ«p mA᪹°¾¨æö)^àã${sQaJ»xŸ½²É‹ VMº(>YØ[_Ôf¾ß­]£”>ÅÒOò¡*\X×5caGÍ'íj«â®ys}Ù|W»tš,¼›µpë0QØ[_\¸®8ô´6µQ¸½0Z—ŠK¹ðf¦ÂÀd •7¤ÀÖ…w3Æ’­N¬õ¼óFöÖ×޳ÝÏF‡Ö×íqv®5Êåƒ÷‰Â›ë‹É¶É(¼›¡æä­o\Ø[ÏP3ʰR¥QjŸVË ë: CÝûæ¤ÆÂ›Yjn7už,¾*KÞÍR³“z£Õì­g©¹Zi•E[ˆAáB¦Â, *µ7Åjå@Þ\ÏÚašt¹Þ@áÝ”šIU¢rC–³?Ðw/XÚ*ÈZçµï?2@ÍåBE¹6ÛFý¯*(7aÊ—›®eÐ5 €a¿x Ku*M³s“ka îÓ·õ†%Ü…kAœ‹!&f- » 0p ðÆjÅaƒ·¾ƒK°0cÀ±ÀÛ‹z»vè~²0l. ƒN£,}Œ1vÒ€ ©;˜:ÖÝ o=+†f †Bf oS0lfÄ@ÙRv3b8¨UZ. æš‚áô}ë¸^ëÔK­¤¬‰­£)`5Ûo®'øÉµ˜¦a µ!¦fFvc€Õÿ§ ®*Eò9Ç0ËjII¬Ùuè?8פ¥ë»„^(RªŸœVË‘5.ÐÇD×QêÛ¼4Ó½$¸¹QÄ<ã‡- M!n´™ÐÇE–>†Èq@Ûrßšè^¤H×¢$&@jOéûކLÞèKý]8ñDìaòØ fº‡Â¼º ¯ßT—÷)OšòåØ&§‹¼¥»p8âû´‹yùmQ«›{L+)sXÒhêÊÎ O×yö–qgîâ2—h±è_ éFzº¿‰"Xñš÷.]BxvCCò†þw»—A÷Sèä¹Z½µ_Ù2ÞK–*/,•`5,…VæÜRr•[‘Œ1½i¯Ô§`wy9.—úé{V3AIÂÿ^Ž+W´§·0auÄ—à»t›$(†ÔX•ï‚´Q>­K´Þ!QÜÎŒô Ò¤«ÁåR»ši½~ªªqã8},,- \BëÒŠJƾ¸Õ ÚXÁ{T†·˜'ýUA—wXÌ[TAÎà¿ÚTÉYcBí° ¦‰ ó)Q\ÍicR›±¡o+U¼kä;Þî¦ n,,ˆRÿÇjÜ’êOM޺LJ†Úùšf+³cåÕÌêfyy¼µHb€Ù4ó.¨ÜÛÁ#B†§×.9ôŒîg ¦rçÇç{¥/è0–¼Œïås*ò"ø’-à¥À–¤(¤â‰ 6R`0ÒC}6Óa4ª­˜Z;AÛñ†í7êj¡Ô†!ŒY7ŒÒÁcl4ÅÑ™óÑPûI)eÝ3TÚ)h‚êzð[Ìßr£Q'vä÷Jr¸·§ÝQ¬SJ‹Së{ µÅ‡Ž‹ýW#³+`‡ádõÃN½qPnDÅ⣙(ÖªƒX9ŠÕ`.vRi¢ÖiBùF¹³ß(â]-¶°k 7Ë ŠSDº¹„@µ# %ç ss ÖV§0¸„o‡‹¹¹D·­~B:…lcTÌÍ%º Ê0hIã<8(—OU17—¨¾@hº@!FdÁÍ%Çåâiç°X©–Æ ssI»¦tBçÈy7—hVFQ«•_£¶\R¯Tpì¾ô n.Aâ~ù¸r9ù°òèUŠ6ssÉ?Ê:°rï›r‚· ˜›K°ãO`…0¨1TƒNbV.¤È “ ´ü¦¦9ss òd:PÌÍ%J˜³Üî4Y"Ç­Ùj¼ç‡V±4.¡5•z_Ê“ͼYbÌУJ?Ùú¦·áæªê´´º—Ž…\‚ÅÈW)¥Þ†›KŒbJÒš‹«·áæ°UG¨Õ‡C~yð¼.‘÷xÖÚ'ûŽ¥ÑÛps‰ž8²x\m¸¹$¹,âvWTÛ¦›KÚ50xêGµÊ?ÊjÙ¡õ¦s*‹¹¹D‰Ûi(tR©‘­kssÉA[Ž“¹ UÌÍ%ªQÎBXÌÍ%Š•OõSœ¥ÀšíZñ N ûö6Sô’bõ°Þ8þˆ!‹ðf—(_ƒ£ssI¬M¼Ôõx{›n.Ñ’ ™=Ó”ÅÜ\Â:‚êOÒ†¬ù¶åæÚèì¿o•ÝÓtËÍ%Z᪕á¾ÙOÍÓ¢zÞÖ‚Gkˆºu\ÌÍ%åC´tϘ’œŠ¥é%JÔu…¨‹*žÜrs‰¡áñ¸K«E×–¦—¨Ú Yïk­â»XOº¹ÄT;  ŠíFV·õ½á£³p4¦¼Îžn§ÇPÏ!Æe‰Q·;›86R¨6”ÐGÚ¤áJ@Û}j€ Ò‹ÉîÉ·íf.s8D¥·íf®øÄ1`.¶€¹ K›0sb ·=_%·Èd17sňlâÈ‘¦Š¥‰ ÆOzÕ@˜µ¹™Ky\~W<(—*'6©Þ¶›¹Œ5ÐÉ“ÛiêŒ*ö“»ØÓÕ!’”ѲŒj莛K¢Új ›kÛqs‰ZEq‹ú2&]¡XšÍB½‚Ìú†ª‚ÅÜ\‚~¶JSùÚ¹·“²P•Nçss Í7×¢¡Š-Am—þåíÌ7x- 3äo:³®¼ãæy{¡3[¼âídå+LËÛus‰Ö¹êjÄÊ|îŠtow>—š,çíº¹Äœ8ˆD—9†Þn𛥸~±ñ÷wNkqwÑBUÂÛE@bTçíº¹Ä42ãŠ2ssILÅŽs—·›¶Pqmióm×Í%‰áŽÍ€Ý¬\¢¡ùSEõäK7—ËCF¡6„óÖÛŽj{鿬Dn¸| ÞK7—DÆîPPu¦ßÒ{9Å9~z\&™gÕé½tsI±zz\4ìÒØzì½tsI³Ô¨œ¶:v×{­%«b‹ h¾Œ9[¼—YdI"rÅ{¹xÅþˆ¢T17—œßuÞ-–.¿+•Ëro¢°îæÅÊ8iÐ×Òi‚‘é&…—m$@ºƒj ).[mî%åss‰Ž¥Âîl€UZi™#¬â²µCeŒ‚¼ÉTHqÙZµUjØ3ÅVE³I!Íe+]“IY'‹¹¹¤l[+hN™Ff!Åe+‹žW«d!Åe+‹Ù…jѤ¸le±rT©Š¢iPHqÙÊbǸò:à…4—m¹Qu4gs17—˜Å8 C•µ¹¹Ä,fšj¸S\¶)Dâ¡-.–Â%eIçæö©AäYrZ®9ÜÑ…—­ö`H“#æÃ(¤¸lÉM_9 Ø–w¢PX§ý¥¥ò>ë±E€ÑžÓ+°ÄøYgc2íû2X,}©V7Lü,¯z+iæ"G7 +Î/˜ð«»¸÷ØïE!H©ô.~õ"¼n d!‚Üœ¹An͇܌ ·çCnE;ó!·#ÈÝù;äËù»Ñ0­Ï‡|A¦Œ¨îùu YXéiÈcä4ä‚1ò64ä‚1ò65ä‚1ò¶4ä‚1R*@.#oGC.#oWOcä½Ô ƨ Ç¨°`Œ zŒ éóÚ}‹ êm3§)CêÁ/¤)CêÁ/l§»Q¸ ±›Øt`ȈØ]&á¤vƒÁÀ£YhŠØh[ÿgŒÐùÅ¡êLŒ‚R¬RgΈ/•ññS• FiŒ0Æã†âút‹;fóò9:"¾&ê“þEH‡·é$¥xÃKÛãKÿ,˜"¬>N>Ê‹³Ù”|tQܪè‡9<þë‡A"púH "ts ƒ^úÒ¦ &‰씩AªL µÏ¦†ÝX_¡È§æÇ¹öCUcšê;)™qC€#eÚ ¬mñlÊÄØØº °)â aÉb2aSfÀ¡d6e>,ð£IÀ¦¹d8;ÀîȾ$G¬Œ(Q£= ƒÁyZ¯b°(QªcP[Š(ä`UŠe‹jNq„m£ƒÆ r3Eìa»V2aSF–`Á`>1aSFaß6›|NÁ¦Œ¬2ûÍ^ÝLY n·9`SFaióRŸòØ”‘%ULÃIØñŠ[ù¤ÞxoÑ›2nµ:…76¢-?€M·ؾ•ÿj—£ ;¥Œ*®Âúlʸ1lÚ¸•O[ñ~ØJ7Æ ã`ô/ÀÒl¨«íŠðf8Þ\¥ÍsO×—¶ÆÕâ:À¦ÏjžÒ&m)cÏÒ ®Ø”±@ij¨M%€M{À«c[™[6eì%¬±/ÚpÊØƒÍN)á$lº4n–`<àŽ0­›2öˆb =¦Œ½ ¸Œ¼¿›2nÚ­wÐ>e“`SÆeŒyÖ`SÆM‚¢`SÆ e±ñϰ)ã&;¶T4dívʸÁXP¨O4`›¤ÉÚ Pj 2À¦ÉZ Å{lÚœ•°QGlʸiXí|ØôUÔôÑ1,Œijàg¨,”]Ä)±d°´»R;¬ÓdÒåwÉ0hãÈåuÊ#ò'öÖUÜõ ÍXÄ }âî•þ‹HgCúÄ],J‡ýÑU‚<‚»UlÐÖ{#¤3îJ‰@÷+­“¢éf‹»Oô¸Ø,ÁÐUíØò¸Ë„@ÿŽ™úŽâÛSq7 ƒVZæJ.GÀ9ZÀ*ÉH8Í,P«Ž2åH·Ø)¦„s,µ¥ÆO¸AßE>d ê­“J-ŠZÓ ÎѼ¯à¾X(è§÷fï&\´e¬’ ê-;rA~±‡š\íÔ9ZÉÅž@3.ö„"ÉCˆÂ9àÀÇZòhÕ4šÈ³£;ñ1Ô‰pDÆšXàÔ9àäËÂö\ÑÇAþ©Ç>+G)b')ù$xÚq¢øEà-\ŒnL78pÉO®1‰w³wÎ,‘”„ÜɆ") %8‡Ä$ÑÇç˜wr®HJE îä^ÏÈ¿ Y¶FŸ]MZñøõ‰Oc\í¹ëÁOa–˜Oaçdp`=œÉ\Â!„%¸Þe{[9hGáü)ÌÂþ‰N\Æ&„±/‚R„q·{ÛúdÖUÿÎsÉÙÌúŸ­™j^ó5‡ç»e ä®LÐÝô§7y>]æ÷äQa™çx“С¯f°ûÆ5ãe˜"mÛÖê<âCgJ›ÎK䊊§´¡‰ïJ ó›0T¼n*>Ël(‰-o”HxC¸âë— ¥p½äsè$BÉi¢s~ιøÇJí6N ¢¢ÞÁ¨žyöÜïAóÇ÷“ØÙïœÄÌY eî1ØëVGÖ1 ã$ ¾?cgÄ;C;ºnBß3…G/7ã˨jaÔŠˆÚÃ>e‡þHV>e ©¥x0‚¯\ŒëîY5#s7ËO\”Ìë Xu"†8—n_1b’:d 6+8©8pÇ?1ùû}enD\¡6!ÓJ Y'%—Üݳ^{Û©ùÚÛ¶ßoì÷x«€U>´Þ‚ð&ÛwÚ2«J@zÛ&¤Ykt£`‚2Ÿ|ŠK#ÑüÁ>£ìì çK’¸¿øN,êG*Ïq~HÊZÇ«a ùÝí®V¯ýsdB_ím¾ rr„)•¹?PçM†ÆÃŒ«SÌi>ô1¥ƒ6NÌ?äÔšŠÀe\¤?ß*(–åõ‚N½*®¿p~QPǰ Õß10:u¢vŽÁ0ZþËQù•„QwG%ÀqÄŽøFCW}P±fÝé J`?PêD¾3¿û)¶bG©‡Íü¨´ùcÑŒXhaîÚ/c@(‚’-\÷{ÓKLYá^¨ÐþÂìI0 ?ä˜,}Œ?ˆßQ¹@Šk»¯¹D®šb—…ί)ì¾o4­&ë ÅùõX ®Ó[c]?º¨5°ûÓôšzÁ"ô KNNï¼î1KŸ \âžÈ4ÔújÍù˜5XüFNÆ« Æ^ŠgËÏŒl?r­,S*èg+{9-od™õT)‘Ù4)ªÙÆÙ“4Õè¯(«.i-"ÏÙ¿3÷¢¶ø_ôe b~ñ–—.>¢[j0«hÊÝÁu KEx&oeebOái%ô »0h_‰—,›ƒÃ…OùÂcœ‡ª)ˆJ:mÐ9QI•*6Ô$¤²uàD'¡J{òÉÆ(Pyæž„Ÿ(A¢Pº‘àµÌ,¼©so@›è=c¢)On0ÐWㄲ:x â”Ù™/ À;oôÝa±Bµ›`#Œ(¤¼Û} Ha‹1¢n,Fè¨Û[UwØ"lî¹&Š=¥n© çÍ™p)='çš¼T”9r/>uÉBdeB§škµV¢›;‘mε±*¦kfÀ“¹ç zÎ-¥hÑÓº¨[«;]NµX`fÿ0²ß]âÝÖTœË@@‘ExõöŸ}Aø3ÏÆ‡Z¬'âÃpŒ«çÌÇÕ×ÿ&Aö?9ÿluÀÖ¤wÐòS¹QAãã¸lT íùyWN$“1ˆäÕðçÂGb°’ŒéÃËkdÿs…ñ¹U$S9š§åŒl]É1|Ù͆F«|‚DŒýþD'Æš‹ù$‰¨©¸‡.â þõ¸;W¥QYŕŴ°èBIl&úâø—(¹(4˜ §PÝ>÷ÃÐUXN§4°š¤ˆQ^±ÙŸx¥†ô¯ä\CvT®Ña7Þ6m×J¼»ùAzÔõ…OýáÔ°•Ì»¬}N5VyaÛÙ‡šBlÌ•?ìgx!ßf$s©¥S‡wÕ•ßµæèô*)iœfä gºó~9×ÊÞ׫–½IçÄò³•eöYênÌSYy‘¾ççÆ{ÕßIéÍm Â+£Óû!¹“M;{ÙÇ)î©[Øa±æ8%p¥Óý«åqJ혻u~¼£ó35.}rFu ™{NÒÐæµ˜½OzKª3Åôÿazm¼¹¡öeîÕ*…Bý;ò.‚¯ÛÎ+ÿ‹jcõ-½>Ãÿÿ@5*eî¬ú³?ŒFŸÎPn{_·oe6ͯ[ÉØ•%„ºÂi‡®MûÊóB¢ ,¡’Ù¹˜ù“9ÉÒÑ£°O¬ªóÄ}Všt¬C†–'//Å .2K{{¿d¡ÐµÀMIÓ.çïWáÇÖ®ÄñZ•™ÏdH„qœ«\nèlEVr’zòm(Kµ¿"‘aFJ  ŽÌ7Sèªï´yoËã<’§Å>.•ï^-ìãé¥%æ­z!wøã¯_ #ýêÕȹõ<Ìò­ _½QQUWÁÕhrµ ý‹à ¬÷ùì>Ç.Yl‘¤e;¿…±`o„gÐÚ­¶±Ã5ÏX¸oµ_g!‰WcY Z—•[.£³Nvýq*ú‡aKª( ÆÍ2šd©+îT .hÆAý!Ñåµ¾öuNGD‹P·‡S,™;*›mÙ lÙ 2[©KD¤ÛawYR%š·°3²P/°ù›2o*dkj/à¹ÆÖÝWÁÝÁV楫ž8oD.1Æû@³)†(ǸäG¨,Aw÷‘Eí°ŽB%É7ùá~ Âï¬mžFß‘rËö¤wo2yîEéOäŸ|Ÿ4ÅœÎθ¶,2Zž“Q»GX%‘£>¾µ§ï^w0VF±Àœñø:¦’°;¸)wå²èbWkæ«Åü[“6û™±$æ][ñ/j‹\c#h±ËµáɧŒÃi¬+Ù0kž #/Á׫­‡ó‰„·©/™=¿6¹¯Ô¡í£Û7(ƒS?ªcÌûc_§Û(}­8“iç'‚‹m­Dw»^J¨® ûÞ}wn-— ÿfì’NÎâÜòщî»ÒêjXm8»sÍk›1ɵްöï®Q'È¡]J'A‘,¹9™Ö„ˆZ¬ŠîßFäÒ»ôøWêrIέ{ü+‘Ã~ûÛuÐÃ×½7ªnl.iî°*Ý £á¸Æ‚ž=AÔ¬–ÑXÌ'é&F9fÜC ,bFŸÃOª²˜V=`‚¾°4YGQÝÆ’3¿´±¹³+m À¹¥M@'r hˆDd¢Ñqé84`‚ çAøTñ`\'¶ønà‚ìèÒl¶Ú5›½ûìÄf¯is:ËŠrâJŒ`.sSi"õe>Ã)mÎ0Ú³§˜½_Æ»d 8Ý„MЙ¶ó6S 635ŠÊ3 64ÁÉsš¼ˆ™|éjËH¦Ydθ0É€3E˜Ø~¹ÌÝqèšÊû”y€ ‡U:67󱥘Î=©(]Ü“<%”ÑÜ…ÃuèvXÝ#<ýsKjÓ;ÓŒ0ÌÚ™fPâB¤VØbF¤f‘y5dg+«He¾”™­¢" l± ®,ØbERQbàoFÍ"I»>¶Ûœ_¼Èœ¼Ç~+œ\dÎÌ"Î.2£cS{FGGtTÚÍHiP'*•;ð¨”ííD;c]¬ˆ¯ëõ¼®"s‘ÇÀfA+âDoœpËÚÅF'JãôKV”F‘t”úœKv”ºˆktì.3{EEœ#vY1ERPÆÎgA+’ŠØ>‰Ÿ ±]d!æØ‰û,˜cEœUȣ ²ˆ]âPûbt‰"NÄæaÈŒtšEÜ8åñó[´]qâKú®âs¸»bmôY0‡sÐk8',ðÑ;±Å#ž3`‹É€˜3,Ý 1/ºé¨³«V‘9£ äÌ£"‹ñÚ} ï¢>°ƒ³a¶ŠdBmÒõBºeìé-ÆNY„5Á‹±.` ; 9Z»È<ܱ€â,¸cE:œ$þ§ sŽULî¬Ã& )Æ0àn÷5èC¡};‰™Û8’G±3æib+–¤D]fcEq¦PòJô)÷<^vëÃÏÑxmq‰Sé‹ M‘D× V7ƒi×8Ê„nÇ#ib‰÷UórãÉh:¢ÐŠô$ù:Ûs³S¬8b¡¬\ú²Añ Ñ2Ðc~2¶ÅÙÐçáZ|ø>=FtQÖ—ô“Ó NЦúœwh^pù¼ˆawèf,Ž->ÒFÐØÍeýÜ·³!æ¸L”Ÿ‡ÚÛþz¸7 ÷Å ³ª=ìEùãiš#¨öøîkŒ˜âM2à Xa†AÐÓV›X£ a?·g…ýÎ=5Ü0 µÁR'I,e¦Ø`)“Â]eÊk÷ôpÕ“òÒ1QbÉÙâÀ`OÀš7ö«øäq v*»!W©>²"õøòó3}­Éš¨œËe73% Õ7 y1 BÏ}Š ”A€ý©Qn=/f&s&Nˆr}×6\¸Vqå¢ÈØë~äeeÈ·â8Xœ‹ç¾íŸ[\`µ0÷-ßeŸ©ùðÖZÌa /éÁÕpírM¡iCsÍžÙÃ_ë|`Lû«¤iD2bᔩ£Ý¦(ÀÅ»ŸÒñúµØ¿ýfö;`¼í @É;¢œ‘n +ئyt®Ç»^‰±:¢O¥Àç.Ë6xÀqæ`w{ýsù+s·c¿#yNw<˜…ø?÷;•¾O~©´DÃÃØ“è;•ƒòÉi½U®µ:Gíbã@ÝÏQ¦« 3áÓ¿<~nù¡Î[åŸÞúÚæÎ‹pÒ}¡ægøuà5$ÛÛ›‘7’Ø¿½Í­õ¿x[ë;[›ÞŽ·Q€çÞ6üý—õ‡¨|Ñg†ûÏPåd4šÎƒ[ô>Þ¸“Ï‹g·ýäž)«3˜ VKÒl¢\ÌþD”¿Œ'xúH»à¡Èm?/ä G Kú!'ËŸä—Q‚ç næA9ÝÙÄŸÜäÁLêŽ@0O+yŽø D O"^Q@Ëã¼HÎÌnWo&ý‹Ë©X°çja½°‰7Rè?˜® ‡JþÕ٤߻r¹û'í6>¹FÐë£Á}Æ)Â隹æð‰¼î“Òuó}L(·])åùÖH¼¿nŠ— ¡ø¹½£¯‰<©Ë™°+ûÑ5mWÁô÷ ÞlRE–©$‡¶ßh™S_^vÀ—WtuOGÓ~7ÈËnÖW‘"³RyÑcDTÚøý«`²–F Ôhô†¢šÙ›u1’IÒˆ‘w:HL½Qw†½¯ì^”'U¶)mè…Q¿Ó`!b³ºuµ O€<(2ï} óA+"X•þ4”dá~<áÇÛ¯ü\ægòºNXvái€L„]@Gä›âr>ºøº,sÀÂÑùôùB]ÿ¥ãI¹o‚6d^#‰­jWš¢Y?l½-´…ï§úXâÄþ{Ú¸(ÕOß7*GÇ-q\¯”Mj·@+¥QÙo·êð`©Ø„’K9|Q¬½åw§ ¼K¶Þ•“ÓjöF±Öª”›yQ©•ªí01òˆZ½%è¦`kÕóXi.YLÔÅI¹·Ê·Šû•j¥õž9¬´jX×!TV§ÅF«RjW‹ qÚnœÖ›å6ë Ò,U‹•“òèð5¨Q”ñ´•h«ÕX+ëoÁôCÒ­&î—sÕ ]NA#*r©…­‰¾• ã€¼j^4OË¥ ~)¿m èyŸœ9ÀÙ,ÿWOz«â xR<‚¦-/è’<'Hrý0Xâ¨^? ~«ìM¥Tnî‰j½IÕn–óPC«ˆ# è)x ß÷ÛÍ öY®–f£Ñ¦kÈW`xßâ%Ì¢T„¢Ô¹õ5:¨ÞxH±¨ïóâíq5huŽzªˆ]€¦c©e‚A}Ð-£¢V>ªVÀÂ.•ñ-™|o+Íò U¥‰®ömêlc“iˆ€*þj0lžRTEñàMÉfà^T\‘lšíÒ±ìîµ^¤Rm(ýI9f8Ô ‚ê ZDÕÕ# .^8)þ½nž­úÑxüc¶RsÂâã8,LâF¹Z.ªËÈŒ?Žn³nKý1zü#µð-ž”[×<7è?ÑUƒ¾\õªxÖS¼íƒ¼ó|‹×ÍÕÙh 5q¹þÞ;BðÒ‡¥ƒ ÑW—¶ô„Ï'ñָƳY@†.UÀ„Éä"ȼ¡G—N“¾5Zåz\»ÔGY‹ Yö¢´&š#xäz£áSyùbv,#´:!ξ^¹oÔPÄû7âƒyHH§ ¦OaÁ‡%¶Ð–„y]ëšHòŸÂ™ûV°Ýd[–Á¬mVÄw߉oÔ3å-+‚Ô\Ax!¬ÕçU•yØÁ€Ÿ.,˽Á€G ’¡¬ºÍ´.3 ›“Q 1¼œ@ Û7â¬(Y§^ÃOšoJ*ÅÈ$/½7á4§>®ÇÖÑU9¢9_,¡*®ÏÈT#èvé6af b)0xË{ðÅÇ35¤•Ñ_è ì0 ¼¼Ÿ•\.`ZåÚ¬ å‰ GÌV‚Í›ŽªCbå3#þ'{ˆh(ÝŸHBå稙\æä4©Ôü)Jš§aÄuÉž^^VÏw„çðªú3Ú³áúSÜŒfâîÖàl!yÏ’œ#9žb"þ6îc9ëå Úd qr†ÓØø“ENyÏå’•ªp6‘÷¯óÑ|ÊÉsÓyAWñææ¼¦]ó&dœÚW(†Âip%ÅPoÄÂǨ£7¢Î Ç@¼1äE_nÔÌŽ ©÷~· @§˜éêxQÊéA€²>4PÜø:kœ]’´I­úì÷¸ÉHˆHüåøxó$ð?‰è¾öAðÙ‡ÕFÞª­|MZ çŠÒ•?8²ã¿W=ÿƒñLù,"òÁ"*íd3–ž?Ç.™„Æü%öêõ'Aw:¸YKs\.«_MîhYV“ 2Õ—è⿬g³tWÙ3V¬dðgõoz¥§\Y“üY«wÚ­ÃNé¸\úIøçç*ç£!Ì(óŽ]ºE—9`šƒVqÝ€cFÖðQ&m½+¼wƒÆÉ>„¡ Ø«FNfHw |ã’£Q‰] L·Ú1]9T…b­t\o€šd|Ö¿ìJ/É,m5PCo¦@—k ôë_ ú6#ý˜ž5q<ºÆ#ýùí¡ÑÄ/yGZÔtݹù@Ú|´ŠÁ ƾÁ— +m;›¬)Þ(¬¯—§±^‚æøƒ)öøµ¼ ]§®‚y£4÷÷,àfæ–•Ü A '¸¸Þl¢ÝóŠù"²ssá †5Ê8X¢Z­¿í€:Úzß# Œ‡äåÇ%9œ‰ÛŽ‹ÕVg¿Ù~gó“}×qza0­Ô}ɉ› —@ÿ¬–‰ÚdÍ» Ô«`’!ÇÖkÕ÷vao ñwq"\…[h5 WÍ…õE5·OkÅ“²“ìÍE…ËïÀb8ˆÏ^ÙäE…+f« †_²°·¾¨Í¼eØã•o¶n”UẮ ;j>iW[wÍ›ë‹È®¡MÚi—N“…w³n& {ë‹ ×‡žâv£Q¸½0Ú¡ŠK¹ðf¦ÂÀdx¹غðn¦Ât“y§vý ß¼H…½õõ…ãl÷³Ña…õu{œ]…kGrùà}¢ðæúb²íA2 ïf¨™Ç³ ì¸S’…½õ 5£ +U¥öÉaµü.ª¹°ž¡Ã°0Ô½oNj,¼™¥æv³Ü©â¤"w*¼›¥f% :'õF9ªÙ[ÏRsµÒÂø†xo2faP©½)V+rà ðæzÖÓ¤Ëõ ï¦ÔLªâ•²œé²>‚hiC¨ kWº¸ <öäòœ!¢\›íF£~Tl•;å&LùrÓµ ºF0ìd©N¥ivnr-LÁÀ}ú¶Þ°„»p-ˆs1ÄĬ…awnŒJƒZq˜Àà­/ÀàR, …Åp,ªõúOÅF½];t?Y6aPŠA§Q–ÞÈ » ih–*¨8>‰år!†f †Bf oS0lfÄëOåÃnF •£JË…Á\BS0œ¾o×kz©•”5±u4¬fûÍõ?¹Ó4 ´6ÄÔÌÃîb °úÿTÁU¥HÞécY-)‰Õ"»ýçÚ€´t}gʯJ‹¢»ªåÈ‹—@èc:Ÿ œïTf”L¢¡mbµƒnr M!n´™ÐÇE–>†Èq@ÛrßšèLBšÔ¥ÄHí)e|' 3£¡~„.œøìaòØ f<1q­ŒJ¬f4ÔÛvÚ“¦üE9¶Éñ¬E¨Ãާ5Eéãj¸GþÛ¢V!D¦Œ”9,i4uýA8²=\oäÙ[Æ=¼‹Ë\¢Å¢1M¤Ën@g„DØÇŒ¸@îÙ a ÉgúCÜì^ÝO¡“çjõÖ~=fË8x/Yª¼°T‚Õ°Z™sKÉUnE2Æôz¤½RŸ‚ñÔ¥î2ÖN‘fÇ V¾Ð#þéwq½x6ùPÖ’hã3È…ÖKp||&¹J¥‹´XŨ·J©e/iÛW'íLÀÙ.Äù—†s÷–8ÀΣj}ßéñ¥19!#M˜·ñÕò.HÙf5/¾€Þ éOµúÛ#7îÞiÖ©CÒ~ʵ£Öqr™ÍŒ¤Íßãk¶Ý§ÑÊ‹îâs——Óár©Ÿ¾g5”D üïå¸rEËqz VG| ¾K·I‚bHUù.HåÓj±D;îrÅàÌH*M Œ¥v4ÓzýT;TãÆqúXXZ„1@”iw¥›v&p«*(Ýex‹yÒ_ty‡Å¼@$l¦f¥ä¬1¡vØÓÄŠù”‚(®æ´1)ÈÍ‚ØÐ·•*°|ä{±Uoè‚ ¢TÇÿ±·¤úS“ÇvQ÷øÐP;Ða”[¶?ŒÛ±œW¨¿¼u“³I E›cÞ•{;¸qDÈ0ÛÙ_¥v«Ÿc¢â>翽 ´”"w(~ &#§âP~‹¦&ØŠQwz)0†%)âñØžj#cBÔg3F£ÚJ©µ#´oØ~³ÑÓEÚ0„1+â†Q 4Ersúˆh>j?)¥¬{†J; Göuv“»Åü-7uraG~¯$‡{ëqÚÅ:¥d±ø8q1µî±§ÀQ[|è¸Øµ1†ë°vØ`úa§Þ8(7¢bñÑLkÕÁ¬Åj‹0;©4ÑNë4¡|£ÜÙo@;Ë-£Ø¶»K¤ÿFš7•šÞ ‘ÅvœÅ¨Ó(ÖŽÊv«T±ÝEm“5ÆŠ½t£ˆ­h˜íZùÝ)¬¿°ÃZU.rûñ<7—p1~íÓÓ:{ªV‹-e;{ž›KÔ¸•ªuúMd¶ŽËÍJ“‹¹¹}o°r«ƒOòa¹A±eŠH7—€¨ªÓRÉyÅÜ\‚µÕOùÄŸ³˜›KtÛê'¤SÈ6FÅÜ\¢»  €–4΃ƒrùTss‰ê „®G±™êÜ\r\.žv‹•j9a¼p17—´kJ'tŽœWps‰fe:°¢”_£¶\R¯Tpì¾ô n.Aâ~ù¸r9ù°òèUŠ6ssÉ?Ê:°rï›r‚· ˜›K°ãO`…0¨1TƒNbV.¤È “ ´ü¦¦9ss òd:PÌÍ%J˜³Üî4Y"Ç­Ùj¼ç‡V±4.¡5•z_Ê“ͼÄI­ä =ªô“­ozn.¡ªNë@«{éØXÈ%XŒ¼q•RQQêm¸¹Ä(¦$­¹¸zn.ëQu„Z}88˜ÏÛHáve‚;Ùw,Þ†›KôÄ‘Åã"hÃÍ%Ée·»¢Ú6Ý\Ò®ÁS?ªUþQVË­7SYÌÍ%ŠHÜNë@¡“Jn]››KÚrœÌ•q¨bn.QrÂbn.Q¬|Ú¨Ÿâ,Öl׊o@pR€¸·™¢—«‡õÆ ôG \„7Ó¸Dù…°˜›Kbmâµ ®ÇÛÛts‰–\XÈ왦,ææÖT’6dÍ·-7—ÐÆ@gÿ}«ìž¦[n.Ñ"W ¨ ÷Í~jž¥Ðó¶¬8ZCÔ­ãbn.9(¢Õ {Æ”äT,M/Q ®+D]Tñä–›K Ç]Z-º¶4½DÕÍz_kßÅzÒÍ%¦*ØI¨`Pl7²j¼­—ÂÌÜ$G€RbŽ!Æe‰Q·;›86R¨6”ÐGÚ¤áJ@Û}j€ Ò‹ÉîÉ·íf.s8D¥·íf®øÄ1`.¶€¹ K›0sb ·=_%·Èd17sňlâÈ‘¦Š¥‰ ÆOzÕ@˜µ¹™Ky\~W<(—*'6©Þ¶›¹Œ5ÐÉ“ÛiêŒ*ö“»ØÓÕ!’”ѲŒj莛K¢Új ›kÛqs‰ZEe®„˜t…bi4 qô 2ëª ss úÙ*MåKLhçÞNÊBU:_ÌÍ%4ß\‹†*¶Hµ]ú—·3ß4âµ€Ìw¼é̺òŽ›K€È&iÿZg¶xÅÛÉÊ%V˜–·ëæ­sÕÕˆ”ù„é&Þî|.!5YÎÛus‰9qˆ.s ½Ý47 JñýbãïïœÖâªÔ©V`‰$FuÞ®›KL#3®(S17—ÄTì8wy»i ×–6ßvÝ\’îØ ØÍÊ% š?UTO¾ts ¹ŒBŠË–ÜÑô•‚my' …uÚ_Z*á³KQXí9½Âœiœº­³±?™ö},–¾‡T«¦~–W½øõÚ\¤ƒëdaŹñ~u÷û½()•€Þů^„wÃM‚,D›ó!7"È­ù›äö|È­rg>äv¹;r'‚|9r7¦õù/#È”Õ=¿®! = ¹`Œ¼‚†\0FÞ††\0FÞ¦†\0FÞ–†\0FJEÈcäíhÈcäíê ²`Œ¼—rÁôŒQAQa#}~B»o1A½mc†âô!eH=ø…ô!eH=ø…ítb7 ·!v£`›Î »Ë$œXW®mýŸ1Bçc‡ªóð ºÄ€Ó¾ñ¥êþÇXÈ©ºP d·TÌþPе‰x)cŽŽˆ¯‰ú¤ÑÒám:y0 ãÇéh”g³)ù袸UÑsxü׃'DàäÁ2Déæ½ô¥LL1-Ø…)SƒT™jŸM »±¾B‘O5̤s퇪Æ4"ÔwR<2ã†GÊ´AXÛâØ”‰°±u`SÄÂ’Åd¦Ì€5BÉ$lÊ|XàG“ €MrÉpv€Ý‘}IŽXQ¢F{ƒó´^Å`Q¢TÇ ¶QÈÁªËÕœ2âÛFAåfŠ8$XLæi¦Œ,Á‚Á|b¦Œ,¾m6ùœ‚MYeö›½º™2²ÜnsÀ¦Œ,ÂÒæ¥>å°)#Kª˜†“°)â ·òI½ñÞ¢7eÜjuÙ5‚M·ؾ•ÿj—£ ;¥Œ*®Âúlʸ1lÚ¸•O[ñ~ØJ7Æ ã`ô/ÀÒl¨«íŠðf8Þ\¥ÍsO×—¶ÆÕâ:À¦ÏjžÒ&m)cÏÒ ®Ø”±@ij¨M%€M{À«c[™[6eì%¬±/ÚpÊØƒÍN)á$lº4Ö™ƒyÍØ”±Ç@kè6eìUÀeäýØ”qÓn½ƒö)›<›2n,c̳.›2nÌÝ›2n( Œ†M7Ù±¥¢!k·SÆ Æ‚B}¢ÁÛ$MÖV€Rk6MÖJØ(Þ`Óæ¬„:`SÆMÃjç#À¦¯¢¦Ža·ä¥Öàg¨,”]Äɳd°´›Rdã:št¹Æ]2 Ú8ryg] òˆü‰½uw½0h31HŸ¸»…@¥ÿ¢ÒÙ>q gþÆÃþèªÃDÀ4îV±A1½¶»R"ÐýJë¤hºÙâî=.6K0tU;¶<î2!пcN¿£øöTÜM •–¹’ËpްJ²N3 Ôꀄ£Œ@9Ò-vŠ)á‹@m)†ñnÐw‘Yƒ:Gë¤R‹¢Ö4¨s´p/Æ+¸/– úiã½Ù» —m«$ƒ:GËŽ\ŸDì!&W{uŽVr±'ÐŒ‹=¡Hò¢p8ð±– žvœ(>Bx £„Ó \ò“kLâÝ,Á3K$%¡w²¡HJC Î!1Iôñ9&Áœ+’RQ‚;¹Á3ò¯DCÖ„m†Ñg×F“V<~ÀA}âÓØW{îzðS˜%¦ÁS˜Å9Xg2ׇpa ®wÙ(~ΟÂ,ìŸèÄelBKðòá!(Ewkñ°·­Of]õá<—œÍ¬ÿÙš©æ]t0_sx¾[&K¶n@Êóé2¿' ËŒÈ{˜„}5“€Ý7®/óÀiÛ¶Vç™: èPÚt^"WT<¥ MŒxWšP˜ß„¡â=˜ÈpCPñYfCIl‰x£DÂÂ_¿l(…ë%ŸC'JNósÎõ{8VÉ‚PQï`TOƒ<{î÷ ùãûIììwNÝHY eî1ëVGÖ1 ã$ ¾?cªgÄ;C»þ$¤¤¦|ÿ+I¼ÜŒ/£ª…Q+"jû”{úo Yù\”y0¤–âÁü ¾r1®»gÕŒ\ÌÝ,?É[@ÒûVˆ!Î¥ÛW̆˜¤YƒÍ N?ÜñOL>Ç~_™Wc¨MÈ´’êvJ.¹»g½ö¶;Sóµ·m¿ß(Øï7 {~XåCë-ÿg²}§-³ª¤·mBšµ&@7 &( óøÉ§8á°42ͺ&³°3œ¯þãþâ«<©©t>g\B#/W0ˆ†üîvW«×þ92¡¯ö6ß99”ôܨs&CãaÆÕ)f?ú˜ÒA§ðrjME`Ž2.ÒŸâ3T Ô,ø‹S¯Šë/œ_ÔÔ1¬Bõw ŒN¨c0Œ–ÿßrT~%aÔÇÝQ p±#¼j¨ß5tÅÑØõ1~a¥N„áëøbû!öq”zØÌJ›|ÿ -Ì]ûe %CP²¾4h€§KÓ/Á“ר1YROÐáË’êû=R\»X¾r pÕ¤î‹ÎTS Ø>ò¹¨&¾ì8S=¨™)eqkøùŒ­±€#ƒ"ŽÂ]S/X„¾hœ œÞ-=êg鄳:Dt¡Æôá˜{>f fœ»×Å¢‚±—âÙò3#ÛœF+Ë” úÙÊ^N OcÖ‘6«/eD…¥œšó¹ïëÞ˜…o9{pT:Ê 7 ®a‰½XBØÑP* 4GÏgXJ%–—7“`´ïØ+žVâùqhpà-:{+,úÝAÔ’²×£É'ç'kâ€g9â»bHQ`ºù/vfNá°Q×¥ñÕ¬³Ì‘ÉydF„ÃfpU÷Ѩ“Ïù)öÑš‘w¨;àWO/(Üi;ë oP$uÌL¬³êB‘‘Ö"RðŒ‘ý;ÓÑx/jÛ‰ÿE_» !æøhyéâ#ºÏ³ ¦ÜŒPŠá±T„gòBsV&öžVBß° ƒö…Wþä“98\øtD©qª¦ *é´AçD%UªØP“t’ÊÖY€„*íÉ'£@å Ï{yÁ½$ ¥Éԟȼ&ÆÀÔ¹7 Môž1Ñ”§7è«q BÙ ñ(¤¼‘{„ð-Š0ÌÀ._t„ÅB Õn‚0¢òn÷"…-ƈ66„î tÔm€­ª;l6÷\ÅžR·Ô„óæL¸”ž“sM^)͹މºd!²ˆ2¡S͵Z+ÑÍÈ6çÚXÓ53àÉÜs… =ç–R´ÎèiÝ ÔýVˆ®±Z,0³Ùï.ñnk*Îe  È"XQÿô Ÿy6>Ôbõ8†ûc\=gXÞ½ÍÈîrþÙꀭ Hï å§r£‚ÆÇqÙ¨4Úóó ®œH&cÉ«áÏ…Ä`%Ó‡—×Èþ!ç ãs«H¦r4OËÙº’=bø²;š V!9ø„nªõûk."ä“$¢¦âºˆ'ø×ãî4^•FeWÓ¢«'±™è‹ã \¢ä¢Ð`¾¬ZÝ>÷ÃÐUXN§4°š¤ˆQ^±ÙŸx¥†ô¯ä\Xæ¾Ú*ƒ>Ô…OýáÔ°•Ì»¬}N5VyaÛÙ‡šBlÌ•?ìgx!ßf$s©¥S—¸ˆ=I Ó«¤ü¥qš‘/œ:xóår ®•½¯W-%z“Ήåg+Ëì³Ôݘ—·kÓŸøžŸïU'I¤7·%è|éýÜɦ½ìã÷Ô-ì°Xsœ¸ÒÇéþÕò8¥vÌÝ:?^‹Ñù™—>9£:ÐÌ= 'ihóZÌÞ§½%Õ™búÿ0½6ÞÜPû2÷j•ÂN¡þyÁ×mç•ÿEµ±ú–^Ÿáÿ •2÷VýÙŸ F£Og(·½¯Û·2›æ×­dìƒÊB]á´Cצ}åy!ÑNP–PÉì\ÌüÉœŽdièQØ'VÕyâ>+M:Ö!C˓ל♥½½_²PèZতáI—ó÷«pŒ¿ã kWbˆø ­ÊÌg2$‰8ÎU.7t6"+9I=ù6”¥Z„_‘È0#¥†‰„Gæ›)tÕwÚ¼·åqÉSÈb—Êw¯ö‚ñôÒs‰V=„» üñׯ…‘~õjäÆÀÜzfyÖ„¯Þ¨¨ª«àj4¹Z†þEpÖû|vŸc—,¶HÒ²ßÂX°7Â3híVÛXˆášg,Ü·Ú¯³Ä«±¬… ­ËÊ-ƒÑY'»þ8ýð%UcŒfM²Ôw*P4ã ÇþèòZ_û:§#¢E¨ÛÃ)–Ì•Ͷl¶ì™-ÈÔ%"Òí°»,©Í¿[Ø‚Y¨Ø|ƒM™7²5µð\cëî«àîà+óÒUOœ7"—˜á Ã} ÙC ”c\ò‰‹#T– »ûÈ¢vXG¡’ä›üp¿…?áwÖ6O#ŒïH¹e{Ò»7™ ‡<÷¢ô'òb\¾OšbNgg\[- ÏɨÝ#¬’ÈQßÚÓw¯Š;+£X`Îx|ÓƒIØÜ”»rYt1Š«5óÕbþÎ-ŽˆI›ýÌXó®­øµÀE®±´Øe‹ÚðäSÆá4Ö•l˜5Ï„‘—àëU‚ÖÃùÄ¿ ÂÛÔ‹Ìž_›ÜWêÐöÑí”Á©Õ1æý±¯Ómƒƒ¾ÖœÉ´óÎÁÅÀ¶V¢»]/%T׆ýï¾;·–ƒKÿ3vI'gqnùèD÷]iu5¬6œÝ ¹æµÍ˜äÚbOXûwרäÐ.¥“ H–܉œLkBD- VE÷o#ré]zü+u¹$çÖ=þ•Èa¿ýí:èáëÎÞU76—4÷X•nÈÑp\ ãAÏ€ êVËh,æ“ô“ £Î3î!1£Ïá'UYLž§èñf6¬¢˜ÇÍ&·(WIFˆòL ¸ª=»GÆ1T¬2ãêE羕â{ {Q˜F[lïóZÿíIB (¹}tN4)ëyîl6îÖµcÓu‚öás¹àœ=T|t¹ÂWDþ ¬}œ#çì¤YÙÒ?f× G³I7s”+åz} '†ºo±okñªš×£‘Á…y?iÐÓôº4WßâÁ»ñdÔ ø$û~ð{ö¡y¹Ût×%!º—ôOaÑf+¤G§3âÁU¹?qû@,ãøW–* Ty…ÔÖ†úýÐ^˜¨B<¬¼ÓÁ²“`UžÒ®zÅ;À;ÂA^KRÔm¾Ô4ÙÞp†nê0gm³ð‰D˜œ¼ÓòeêÖÑßë•Ú²Ÿ?[¾øö[qf­¶Ëü:žPx°iËþŠ].ѯ2ëÚJd>Kž$©­R²[«0A‰ H_X𬣍ncÉ™_ÚØÜY‰•6àÜÒ&  ¹4D"2ÑŽè¸ô0A†ó |*Šx0®[|7pAvti 6[횃ÍÞ}vb³×´9eE9q%F0 —9‚©4‘ú2á”6gm‚ÙSÌÞ/ã]²œnÂ&èLÛy›‡)›À™EåÀ™›@šàä9M^ÄÌ >ž+(æ³r‚‹çâšÏÈ žƒk>'8o!&“ù´iòŠÐCPB1:¿èN4žÎ£š[2åƒ%{[îÉ'düœNWÛø©ÈÌ þ¬ÈŒ"nĨ‰Ý’J2GR˜5Õ\ž]À÷‰ŽÌÀþ)é:²p;¼¼[½s¼S3`NéT<;”Ú§)“Š,šÿÙú4Yd1Þ,}ê*²s¦>MIÃs~dÁ+’À¬·ü³–.²h!É2`®"‹ñ.0w‘…˜3 ˜«ˆoÌ^Ü­‰"N¤”|"ûX©")¸ÒöëçàJ+²¨F›…Z«ˆml[> ÚX‘¹h)¢ [ßZEœHõî~öÓEÜVÔœE+ÍžJY´´o1;Cé"NdI§ßBdÉ"éVŸtµe$Ó,2g\˜dÀ™"Ll¿\æîŒŠ8tMå}Ê<@†Ã*››ÀùØRLçžT”.îIžʈhîÂá: t;¬î‘Nžþ¹%µéiFfíL3(q!R+l1#R³È¼²³•U$2 _ÊÌVQ‘¶ØWl±"©(1ð7#f‘¤]Ûm΀/^dNÞc¿N.2gfg™ƒÑ±©½££ˆ£:*íf¤´ ¨ˆ•Êx TÊöv¢‹±Î‚.VÄ×uŒz^W‘¹Èc`³ q¢7N¸eíb£ˆ¥qú%+J£H:J}Î%;J]ĉ5:v—™½¢"NŒÆ»¬")(cgȳ ŒIElŸÄÏ„Ø.²sìÄ}̱"Î*äQ÷ÛHYĉ.q¨}1ºD'bó0dF:Í"nœòøù-Ú®Š8ñ%}× ñ9ÜÝ 1‡6ú,˜Ã9è5œ“øèØâϰŋd@Ì–n…˜ÝtÔÙÕ«ÈŒQrfŒQ‘Åxí>È„wQXÁÙ0[E2¡6éΈz!Ý2öôc§Š,š`‹ÅX°……œ ­]dîX@qܱ"NÿSŒ9Ç*&wÖa“„cp·ûô¡Ð¾ÄÌmÉ£Øó4±KR¢.³±¢8S(y%ú”{/»õáçh¼¶ˆ¸Ä©ôÅ„&ŠH¢kP«Ž›Á´keB7 ŒÎã‘4±Äûªy¹ñd4QhEz’|í¹Ù)Ö±PV.}Ù x†hè1?Ûâlh‹óp->|Ÿ#º(ëKúÉé'hÓ}Î; 4/¸|^İ;t3Çi#èFìæ²Œ~îÛÙs\&ÊÏCím=Ü…ûâ†YÕö¢üñ´ÍT{|÷5FL ñ&™á¬0à èé «M¬Ñ„°ŸÛ³Â~çžn˜‡Ú`©“$–2Sl°”Iá®2åµ{z¸êIyé˜(1€älq`°§Œ `ÍûU|ò8;•Ý«TY‘z|ùù™¾ÖdMTÎ劲›‡™’DŽꅼ˜ ¡ç>ÅÊ ÀþÔ(·ž3“9§ŒD¹¾k .\«¸rQdìu? òƲ2ä[q,ÎÅsßöÏ-.°Z˜û–ï²ÏÔ|ø k-æ0Зôàj¸v¹¦Ð´¡¹fÏìá¯u¾° ¦ýUÒ4"±ðʉÔQ€nSàâÝOi‹xýZìŠß~³û0Þv äQ΀H7†lÓ<:×cŒ]¯ÄXѧRàs—e<à8sH°»‡½þ¹ü•¹Û±ß‘¼N§;ÌBüŸûJ_È'¿TZ¢áaìIôÇÊAùä´Þ*×Z£v±q îç(ÓUPŠ™ðé_?ô¡.YåŸÞúÚæÎ‹pÒ}Á:¨?›Ž0ãy„áZ÷îuàå"ÛÛ›‘÷ŒØ¿½BÁó6ÿâm­ïlmz;ÞFžÖ76þáš™þ™á®2T9¦óà½7îßäóâÙm?¹gÒÜ &ƒÕ’´…h³?å/ã )ŠüêPä¶ŸzÉD!áƒv6Á(~˜ÄFè‘gcLò Ë#W•__ŽBºØtê¡{à ¨i¿Ëwûø!ß‚_É©t5â(ºú)¶ÄÀ^ÌÀôZ˹RÙáçí¤?CŒ¡?½Ëp,Žý_‚ƒ×'ý‹>fcÂ{ŽhË©4ßÀÃË©Xî®ïåËÕL¼ÁŽL©©%ÿêlÒï]F­µà: `Ø4…ÍT4¹ûç7>¹FÐë£}ÆÉéV»®7‘‡ôð‰¼]”²ƒóõO¸L¸îmÊó%•x]Þï\»ôshè[)ÏGê.¨î„t+ÜU0}Åcƒ—›T‘!,É¡>£UkL}y·ß•ÑÕ=9‹yÙåúæSDcV*(‚J»¿LÖÒ(ÞP”@3{³nà"F!Iº1ò ‰©7êÎÐà«{÷òI qJû‡aÔï4XˆØl†n]-èSA ‡œ3)Ì­ˆ`iTúÓP’…Ûÿ„/_¼òoP«˜ÉÛAa•‡§2 v5•”{lŠÚÃêâÛ¹Ì GçÓkä uÛ˜öŒ'}ä>9[‰×H\@«ZÇ•¦hÖ[o‹ vàûi£þ4бÿ^€ò/JõÓ÷ÊÑqK׫åFS€–/Ð(jTöÛ­:]Š—¹°Š îÔókº\K-Ýlž‚ A¦c –X‡U‰×.—r&utNeoò}‚t.ð ‹EÙ„RöçR²òõ¢J } ‚qŽoÅÀvé€RîѪ‡Gú`™ün‹]߸&Чx9"($]-Ysti,£ÕáHÝínomly¹OŠïØ‹º‹¸«Î&D‹£)È^q»ªúU­Á îÎ:u/í"˜}Ö½  »`ÄhÅp×Üô°ÜY0½@@û½ú]º'Ow¬ÒÕ¿£1µ¬É{ßΧ«˜€I,3o½ HsІ0à•4”™ot׫&­´\^"=Æ.Ó fW°Nù¢_{ô_qtj£ê?­ ¼f=øâã¡–<ßýàú-‡_j"|á5Ðf¢ýpðüCOݰ9M†êz#xopÝâ5—o:Œ`Mƒ•—OJ.8¥f~¯ˆKÿsÀ[…äzüëO–Ò-à€…† ú¾ëÏX¾–ŠW¢ºF^r kk^œ™ÅÔÉðþàÚ¿ ñÌ*Þ,Î}¸DSæ,L˜ÅñÁàFõ@¥öC¼âr6Éñ(„äÞ¡C½xM–ì*è$¼šþL‰ˆ —t[)Ê Ú£!o-–ÂÎÈAOëK;¯ÖDm¤.@¯Ÿv*G•–¦ÝµØE t=9«e§C»tŠLö j~†/kxéßPúâàï¼€áÓxôéC¨h–¸Î ,J§B²´¹S\ ±&Öž‹%¬øa,>4ćcñáR|x#>|Þ‰ÿ~â‰xr‚MâWt(yyüy«²ˆø=O>¡ g@8ñz®ŸòŸF×3¨³*¼º¦ÝXoÒ SúîŽèÞº{÷¾»N [@È\êÖDftY ìùè€Õï…n=†îôaÑŒbŽÚ‰7¶qKê ;Î<+œoãè.ïÄw©èÞÜrÎzN¼Ýçâ;ÁèÞ!ºß÷´½Ù>={îèxÿŠÊYBûê™X†Ž–6TBà;¬uøç '·‰ìz[nn!©¸‘"©/èöcIHž£uèÅ"+-“õ,qX¬‚µÖ+7+Pƒ%¥–Š‹Éh6fÌè-3d*–£¢.ÎF¸/²WI`ÿk ô˜ip1šà ê¦`t¯P bYž³#ˆ?uŸˆjÕûF»ŒU‘Zv=ÒÁ{ÖÓÙ2 ËçP¨!Á>ØÔÄàШËõ=7Î>²¨býŠoéâ å*Oˆ]Å¡ü6”¯â{:ì=œ]EÆQôŽ‚ÇÀ…sAwèõhÒ›  /´AoM"œÝ‘Þº†ÖD¤zTá†ÐBz?8;ÞÛHé 7ô¦»7܃âm¥wˆývJŸ¸¡wÜÝâF½Ø©™¢ØQšéi«ª,æOúh~Wúiµxr*ŽJ¸-+D“þ¿Åj­}"š§ÅRYœ¾ãßoëQ"‹»]ª•Ä~å RªŠýz½ª¤öˆñuã?ÿ Ç…³Ð¿ùÅzìk´¡DX´ˆüß´¿ÄŸçßž·ñ‘©Žˆ-‰:*âmÑÏm‰{;‹ÑžZhÕDÍ?¬‚I\ih›_ í;sÔ ‘žÝ w5æœÈÌÐsÞ†Ù3ðË߆¹ðk`Vnô3îÞǘͬAþÞXŒ›fc“…n9€<ïƒy#3Íî¯A²”ˆZhÔZ I6¬½½QÒO.”˜.Ô5¥þ‰”?öžŒ†ANîÊ ~’T”šÇ»S&¨cq`…]gäuAÝ=ªú‚bjÖ X„6g¡•þ>@ì)ÕÊA;˜xåR;aêvâ]ê j Ûùøóƺ^±J]Q:¥¡(D)Õ¨^‰êHT§¢:']qˆ“¡¨õDm j#qÚ§=qˆÓsqÚ§ð$Í®h~Í+щ Ä?ÆâaŠñá=Ô?5J†3ÿ=X½ª¢jJEiõÞ¹¢“lݽFUQí–¥õmjíZ\ݵ¢…µÇ*j>hEŽJ•”üÇ|ÁG"ˆDî–Ó2ž›èÝ ­y!¡  5Í¿ÀM¬i.’S–ùeË!% ¥G—š£hB#Œ¢Kr¼a \Ø$Š´õ'¯‡ÿ_°Sù:óƒY”“ÑÜoƒþt y6Œ²\‚ý‰Âê@¼ÚTîzx‰Xˆó'‹+Ì öqgb¢]ÿçL;tƒØndŸþ¼Ér9zÖwªyúU³ ÷K>ÛC[¾ ôH‡Ä$è͆=¯úy¡±ý#oþ*É_]=—â]˜øƒW+'B›¼Sùk¤æŒÒÞ`Ú±•17o³¦û˜î¾5É®ߘ Ø6?R,äç~[“úP|òžÒ™žIБºË²TRŒÊqŸ 7z´Þ¬ê‹óþ— Q ì]œ\P„Mø º½+Œ5Í1‘.íd/­Í10“éQþ-7¬Ð0¸ ¦rÿóûúFŒûPüÃø×ÿ^Éåäç _ »pÌÕ…’v1M5Љ:vßÁô…c¢‹!è˜^†÷¹¸¥ñgØŒ²"eVRº’û5G>åŤ»—‹f_Ä3Öº½«¸ð*‡ixTFmþ`¹‹9†Ãë>]òƒ5£s ç(RU¶6ŽŽôó-cùÕ°4"¯_ód™‰ß~3ïR ™ ¦+øU¶r/gsT²H¡!ÐÓFåÍ2…õ†Úð³ùc*ÂS7B»xjéæ¼ÒawÒ§7¬l,<úƒá.ª;ê·ßÄIñt¿ÒZ– íu¾…+â9ÆUÂFå´õެ¥•<óÍŠøæµX‡qÖ¤b¥6U4áƒ3“ù€±mÈÃÅ$Í/ìv=¢ö°g.WKôª_¸j±·LG½ñZK]Êê†s2ZÞ(õ4 3ô)­õfåú›¼Á`+õ‚!eÔ\ãPÛkŒ‰¥à›àò18q`Wí®ml®ÅúŽ–’v h½ÑÌøN!AAÉIÚ]¡žü•~SN©Ø,7_Ñ“7‰'“®0úŸœÁ:þi#a]ògƒ©š}Xÿabø=b”HFãp½üc™Ç.×Åç˜Ð–_ G,ÕåÔÉI¤E¥žtøvr^O;Y3<†'ظÜ,ïí™CkÄrW|‚wEµý«Ëy6~þ\Ã$zm¶RýM§ü®Tí4[ņôðp`ÅAy¿}-k”‹ÐÆýjyyeOð=+ÓÉh Mx{fBJ6z ɉ:ê§’‹áù±ÿ9>ŠJî>š¡zJcz9Á?ãÏcÄi‡Èêe\¼’ØÜœýè÷Å*Ö}t©}¤GîŠÎu<ŒöÍÜ[—’ºi"gFet5ªª »U!/‰±y‡þ?*n—£pº‰¬VG&Th=©½–þ…„q[šNœZ­Kê í¹•» “ØHR‹Z7«tQaQÓ¿+~@7I×>mÕWþ$¼R3^+dwx-Ì¿ µz ßT¨ú;” ¿F†Œat$rîýXó°OçÔM¶Ðú)Ŷߗ5ÉŽµKSE’ JqI§FÀ°•  âÆÀJýÄn=J6p.îew@Oä)nަà Èýihþ KÀH4B-é.}n`gÓsÝíZ£Švë£jQé‡ÅÀ Q:UçÝÈöˆê£¾&^=ôÇcº–‚Bþ„Õóüh6ƒò/cÜAñ±ëÕÍÔæ‰9ñ…¼¨Ðp4\¥ð@r«bêW)A¤nYÁ(õ¦¿„L¸j*¬­í|u` ’6ÄÐ[ƒ°˜ñcw‘:®€‰Ñ•Œ:Ï”°ò»Ý`<%MÉüÔÚÕªGBMÁ&d ^)A"¦{ÉVÎJðaÜ9AÜ“gK ˜C}ëŽ׫À°£MLˆ …”%µ@ òö¬Ç(ÝÔªºÍú»;ðAS §‘©w9I8‰ÈèRÊúÓ¤MÇïBT®øÐé2Þ@³ ÝÃÅõq6¦é!–8!*NTÌUL–Tù”×É©ÔâÊ–ùÀ BŠ–ç¯Eåä„o¢*¢&BMßp©j»ÉíùFÕÄ5}÷ÍÔA½‰¸ RyÇæ™Ê!iB²±¼¤D=‘Ó’*»Y¨’Rª’^L.uŽ‚ðfa1W…ðjN}jÁŽ”“J 2”¿þNlñZ•‘ª¡iiGSÁȯŒ‡‰õö¸Ò*³©e¼q?%x0]°S-hdzbí½õgµR{_«Æ±'êL>A¸7‰§É'åw-'Ö“úA-ö·Õ?õj5þ·iãóñ6eøçQ¹ElW+A¶–AÐå©,Mm^_Hš ”6ð/*.ŸWe%V'ýñ’–»"þ¦¾‹Wc߆È4)-ÅÑåL:¯@ù ä_…­mß BB¿»ã••ˆç©¹°âü ÐÄÊ$½í×èÆ¡sMh¾#Ú•=™¹@üWä¼­”©M«;#R°TmÐ Ô¦oe•.z”äW® ÞI¦¿¢ˆ£3c_ƒÍið©þxýZ!Ž·Úd»Õ›óy u ' ¯+Æê‘hA@ +£Þ”¾Æ3à^ŒpzìÉÇi`ú”ˆâ+ɬÀtાøI0DÛ˜Ý8ÚBVKø\ß‚Qw¤Ha¨êW‹YæKo$ÛÅm ý K©ƒQ+jÉúU}Á¼þˆ—Íä½û‰VÊì†ØG¯Žè܇©êÓÖ˜C±)¢| 7^ri(¤:à îÈùg|Ô¯»¡ú (&[c¯}æx?¨Mà Ï“—Ÿî _\ ’>HgcTùìwþbèoÏŸÓBélîúoùŒ^ä7ÑTXQÎÎ"èþf§¡wv Úã½Ó)Éòyª,íÕŒÆ}yÒWžgîòÝ@Sà²sňùÉ1'nñi59’zÅfÓœòAl[¢K¾K.ë'¦þÇp–ºGO˜¡&9TÀë í—ÙX_•ÒÓÒG’ž(°Q/èHãèܺ§ ÔæœtúH§{»tºR#Òz¢g FºÿW»Üxï€u>ÇCªðØTZ´y÷TscjV(¬*\¥zû*âF±vTv`v>ÔÆsC7‡!-,C]yá‘ë–75xA z(Å3S·wh”Ñl×{p+ˆxÄV6Ü0ŠÌ b Óq‰†­2Èêl›¦-mßÇmÙD+ÿ|6!§×hóç!}CdŸéˆ°Ù„⤽O R¾Â 1QxËyŽoû¤!Öh¢ˆ‘óˆ‚2ø‚ÉÍ”U9—h ÈòÿtÏô[e"óö1]u—c˵#½>zoYå–ˆyuxÀ­ñmÀ•’€“ «S(GÓ©,e$t/L0‰»aÌã ‹CûѱMü[8PTv¾4ðY÷,Oãd;*t—™÷KëžÉÓ¶ö3Ýþ„×ÅðšÐdTšËG‡KAÓIòÅ(õ ­ºôÆ mÈ7€Ðê–ºdð_Xœü‹P/ˆ1ƒœáºk9sè%<óòô«À¿\î"ê|%7°Ûè* Ä(ßÈA¯ãwøÌ‹vÓ{fuuÙèeôͬ¯Ø.ROR,w釠na:¼Ñø/«´`Фx¸£Ä²ÎY`¹ã’‚V'AлÉ-ëDòÝȳIvÅŠøßfa0Yã0ÊjÅ9Q8Ó(&úh·‰ Õݤ(ñ6—ΉÁ÷§%ÐÏ‘¨ ”«›¦ì&Ëþ 4¤ÐËêH]¹ó‡j€ÉòP¡2i¥F‡ŽKŸó;zj{Ý8¥éB‘6@æùÈŽäCtTÉNì L¯%WÛüÔ‹Ñg:0E‰ÇCÓ|SÖs±Z­·-I™d¨'€W~î~T¾«á,0ì!JÌöèB)i´x?«Vj?É ½Ó°cNM±êc»—yb#åê`È\ž¸j'# þ£Éæ«VÓÁžr –éîb™ÖQQI±íÚR$W†U1;É®Í} 2 d`!µ3ȩ٤ÙXøÓx³e–NΤ¯Û¦Í_4Ñèúlì1ÚÚ Ö༠¸AMú©ÜZEbv9s®L5ÞOޝà²M†._;xeÚЖÁà©/b‹)’lÕƒsßjZ䦣úÔ§Šs9¼×ÜU}îgÙfªŽ-Œs8ÙlÌn†>aR‚(¹n´Hf't *wQ&ŒSUj: ÓªÞÞˆ‹þç`hô¢\¢?û“>…}‹Éô'þÅ[Uè·Š‡ª+AÅPmÇ;2bWS$YÄ~Ìpy^Å-&­HãT #@Þù©Žå}=ëÐ'ôççþdÊY>ÎeÎφ2ßœ‹# ¯^Å ÞÿJñZ·ë1X¤0F™!(°ÐÈwƒ¹Â¢êpv[Ìö:¹þiÖ«H “ÕSy ÅôM#7ˆc\‡ºr9"ùr©Ýh– U8¢íMJáÙyÓ9[¢SœÓG­§r¾(I¿&–i)ÔLпÂÌcLÆ(#•‘NÊœÎyä9ĉðÙ÷×kìk+ºÇäj¥¬âU[ôqû¤Ý+A•/I¹’´·ß(¾Š=kºâ3=ô1Xã9Iê³Õ.ýžLöÄG’M ”— Áárb2ÊaÔù]`¬9;‘0 aÕ{©Š¶ÈC¾•È·…ײ†çFpªãLš Ñ©'£4hˆ†UðÕûF²žˆmÍNÀ ¾N£]3»!bivn*oÍw߉”WíñËØeÓÑ&ÁŸ­JÆ”iðY1 âÖ=ª Æ †•è8%Ž5ÖÄñègC^õ»â y¤>+HgÅk6@ŽÖ O!`°qð¹?š…©Lù§ŽÅ4"³W‹Íf¹ÑŠ3?U;æ›z­TVÏT WLí6;ïãœWå½@ÑeE¡NLÅѳ?:ÕR q9Pð²;ŠgPºq÷2.dz| ×àëÀQ S<#ézJTˆË*UI¯QQÄw`Õ ów©eº*-!f ¥ oFœ>ûÅÒOîñÀ7æ˜ôFš“µóš'‹£Ÿ½çZ‰ü(µ³7 ÌP×,»,Ÿ7ªí‘?X A©ùÉ?# ˆéìÕÊ œ1}0cøÔÒhšèþ¨“`¸êól4&Ý*ºÈŸNM•06ô´ZàñF•6RÊ* ÝKˆN-!ŸÍq(Ʀ%E~×Kidm˜+*EI=˜”£î“[¢šahÙ UÛ1%Å"zU¢;­¾È“¤0C§'5‘hn«'z‰J®dÚEàr3{Úf™ÓE3Ÿß @LžBk¨ì«eI®o¸ ƒ”p:œm2‰޵Z®©¬j•âFƒPÛ´‰f Ιoâ^ n y}Øás–†''rßD>…ù+‹ì¬ˆžçdéé)ªà žtú9í$‡%]‘;ÆÆ þ£Ü¨'Fv~ž6¾^¥kô*¯¬P×ÜÄó¿Ð“@¦sª¡½Ñ¢ž˜;ĵŒyG÷Åâ93IF²<:ñË y¡è¦Î¡Ôº[Y49ÆÏÉKÝ‹J÷•ƒ³ýt)ÑŠ…§ÙgÀå™N° Æž8—WñR§²5󴣜9Ò]”7;ݶ¢ì­ýˆœ²óñˆOE'Xš“Ñ–†©ÁÅ#èÜËQð Ö¾Æò$'äÝÚò’ÙjŒü^<òRù‹˜çݱuÉ1\ýcçÈÚ ¹©6Û‘që#±ÐR+Û‘E–ƒÕ%S#G¡ÍЀ+ßÜùÌ-xÚSºÈx›ƒ;ƒ-θnN O´ ­LjÆ$“jgÖL‡¥DG%–‹]ËÐgÑÞ€Ž Pîe¹]í=ÑÍXCVä©xu­±8ÝcìsVêy8b³™x‡SH7Š0çæk ]} ö^Üé3•¡ØEâòdÞ«=š|„_%@M¢¸cãÃnT¤‹ÔZ ­ü|eÅÜBõ}†6,êMU*QT¹Š‚™‡.F¤Z·q×€¶ìíÍ„•e½ë´jT^ø¨O'W*EVS”¡"阃?Æzá6v/¢} ª‹} ôDª[A…˜kÖSÜPq®×˜ååˆV9ÇþÆ"ð•^‘Vd ‰£•ÊTžÕ`’öÎ"ÍÜ3B3Ñ¡é6èqéPÈLËϬ*¾x”ç¸ØäÀŽoî¯eOЧr¯Ýaw‘}B¢†CS‚)‹åHS0š±‰¿¸;ÎY=X~\ýžYé‰òÅéö°XÙ{«§3ȲEÀsCñ”£E½XÜgFž&Ù<ÒMÕ¾ô|µuܨ·ŽÉ_`jº‰Ö¹”ãšÜ¥ Ÿ üÝéõ/úÓ×& ·Ã^œú$úìM `³,M0bq¾1äÙÉÇm)Ô[úà"cz?Ê3SƒÆAEJ½Ñ•qœêˆY¦íçÏaÿ?ú^xþ|ežìI8Sˆïe+ Wª,¤(B„Ý?NAq\QåÞâl¢Mõ‚Á;£8?ÚóEmŽ#|rp¦&•&É µé9ƒ›=Î ŠÁ¡ÒnQ‰Å¥VŒ@0¬e‘jh(©Q|Fp>Y@™GÊÊOM]@VJ@3²?=ÔWDASJcàmtò8Ëü/¨JÎd/tÉ’Kc$)ÑޤšuZO›‡°°¦õµŒž–Aƒ.SÆh Ú.ª*¶ŸÆj¶ø,öaÄš1y3ŽÞPù‘_ÍÒ£aA‡Ë‰^‰AN4d²1PÌ£°ÊR KZæ)#|Pº ÎtÃ×[ète—`“OÌ`x4)ÓÆ£Ú<…yû”´êó ©iÕçSÔª&,mD’%KÆZ£ôÚÚù*d²!¼e`0ºÖ‘Xˆ¡xm¥5­ˆ?«/ÑàK¥}hû«ñ–ÐõW¦ÃÃxá½2g⡽è‚mØLÍ“(ݱÒÐlXh¾±@ã°›œˆ¡êÊ<›OÏkª –˜DsÃH`g¶Dv2|Á6qª2·˜Ì†3Ko>5Cl*™'™šB‹ÞldªlBʽ3]` £˜ô»Ÿ(Xø Ö ‰¾Ôô¼ß#?œ:.¼f࣬aFn))K.)Iõl‚îašlcÌu0º^e•Tl  ù(O t¸u;bÃ$“riÉBÌúÈ9)ÌSN&_P94)«ãñÎÖΨ‰´CÎ{“6Þî›Qȉº¢Gž¯7)CU¨ó”ÌK3ÆÓÚºr¯¥oIAQ¡:%žcM)1Î!1[¸Á#ùÂ[½ÑvŸ? .)UW Ñ-uÑ aeQ±b—塆˾Ìù…=£¯H§DäšPÊwe sð8nSÐvSÿs0¸É«=P&Œ†]ffÃÔ-Ÿý¡yn;jÏ +F 6e‚¶¼ä£$ê„·´dÌèU˜¾o‹ã¯ŠÂÊ•™¾½ ®M½/L§ Ô±&zx‹­3Ã=²÷˜é«ÞgžãQ•'ýõÙª4Oªz¯Ž…š,/Ï>kìƒÏÖ̉µÀˆ|°¤O×û¶b†": ˆDx„ŒƒgØ‹Äc",÷>·. ºuQâz°»íñ±wÁÎc©1x‹„.³ä¼ß úKîUÍņ̃ïý8küjÜâÔókt˜W£c³,s#y7ëNL¯vqKeµ·ni|OÍhçÖÜvÒ¶×Ýš™RçâFr·mã±½/)`]N\Þx+ÓjŠÌS»zq9òû–ߒXUš„ùû[nJtz"óá›[öæ«vÒÝ)yÈNR“Ìg*ÉRD—H#ŒŠPÚRã•ãiõÐõôMËõôÐ [+W)çÆ÷ÓÊû¥ƒJɆZÿRX/ì¾r<|ùÊTAqAâò¦Â~—>äSø7êTÎãŒÒéûá—äÚ7gc0™(Æ2æcQ%a§PFTñÇÆG#&U±7Q8—Ü»Ët´&%rÄ ²ä[e `ˆ«}sê°f†yXý«ÅOѶ¼YÓÏDÎbÅù²7ßÏ$~'vVæÆ Ü/ ¡ðaúYaf¸eDVjLV>Ö}ÏVpí¢\™QLt6Ö‰O&w+£y·)«÷ÀdO ë )  9oƒù³GØÄ”|39“S·Ï©#è˜í}Jv`dï©VœT@g`ÒÙZÍ(ã¹vëï”sÁ‘ñûÞù¾‘ÙÑÛ…É@ÝyBÙÁïŸÅFÖ…‡Š/‚/¼KbnÖ†DÛ=’o ‡ÉÛútu”"»?1û<ùèãöQˆÙ4ŒˆüµØ)W£‡0È‹}¸I<è߈ãþ”Oæ0R%ø‚ç±£ôxX®\þ1Ìf0»ÀhÞ'ä½–(ŒÛ§¼®HPîÌïQ¢™±‚.%PµS£˜_jõ@Á,)—~â]¶(õL—`äpûdÀ·»ÐJH?ž(œ\èÓɘ‡|(šÓ®T>ÚìÿDÞ§£q˜ÏÁÜøLHTÓ•ßÇšXb1Þ>ñ•mØÌ´ ‡O,wÎ:ñY8ëb ‰µÎ ±J7×qš*?ª>žO•ùxd†b ,G¹¶c„˜XÉÏŸ±˜KI ãHãN-,‘Éô¹LÔœT9C ôká­¯¯ó¹Ã·À(Þzþ&ƒÅcxñ¼Ø,Öp/ru¨›¡õÝO$µT> Ò @z_hr € žCß)wCëpEfuP™ƒ—)ª29ãÔ›©Lœ× ˜©ˆ[(;Õrí¨ul«H9cXõ¤C¦©²r>œëɾJýÔq#ƒ¾-áY‘µc“'ó"G™™BÓ\VÈdòãñ7ÉÁw9¾Ë7%+#Q®5•…`&SÆÈÆß”qÎ|€ÎY$ù>Dý;#Fg íÓa|@Ç:ö]òL˜>¤`%N1߇è[EÃÖz¦ÎŽÕ)G350Öφº‘@f%ð›‹OB.FåÑsà£_U`™èˈOB.Fidt dXÕ€™HÌŒRÁ.ÆŠŒ—Š‘’„¯Fü™ÄŒø$d¥ú3Úç!üñì@F¼¨N™OqYÓ'¬æš9ô1Š¥åÊ´ÑÇ85§Šì‰8…°V¨y§¥ã)9S‹bhúrZŽNuò•ú7¶:F¤³LæÄœ¦TŽRQÆÅ‹<7*—ÒæÝBv…O×ê/$ðП3ùgÙÿä ëhDûGFæ[tO]t»¤ÈI<«ç>¬Ÿ7¿@-Ã…²ñõ–TŸÊÝ¥ýミ“Ùüh1o¸V‘Dx_ëgzôy©¹ëyPüy;»°Î{êa¸Ú‹ƒÁ·Z&\˃¹ hÜÜ8Uͯœob_ÄøLæÞWÉY3ìÝ×팫Žã/Sk´åøüc¢7Veâmj1±<¿R#Ÿ«£ÒÄÛÔJ òÖ;ìT¡#/›+ëZZÎ2Źê½}­ùԙ◿D] î~áÈý+áSÞ8óËî*ì”Á:eº÷Q؇ì§únr#ÿxœÌZ¢•4Ö÷ ºVÃIk‘ «‚Î÷ë&Û;w‘¡!F"CI[Ɔټ”.¥ËãçÌHhÖc:šµ6SlüKiR?9©´:ÅÆ‘ýü´Ñ®•“›?UN“O[ÇåšñTR&yÅ"JÏ8ô0õt&:37NV.£¹¼sr©ðr°8Wwi¥ÃoÞ6)óúx„|ål|*§á¶£tE9¸š ¦ýUö2DYºP!4Ëvè[›¡HØ¿š]áÊ€î:JéâO&xW$ù0(M%f4ü2øÜÆÙ°?•[ê’QNŠï÷Ëäµ9iW[iX¢Ÿt®ÜŠ6PÍ'û‘Ž£0Ä@’’Ä)×’rÅ)ÏË-Ç’"Á)'2Â)ýœ’Ï–zÆÓd=Æ•7±n¨$û! èxJ5'!]‘œ$¤ã)õFœ îŽäSMªC’•Y÷ìr6Ñÿ ì|î†v¿HC;Ÿ;xÉs± ?wRèf~á¬Ö1 Qo%_8†'ê¯ä ׸=–|ãQ7_©NsPé䮨ۜ/R(²Ù …Üq±‰W5ŠÕr—ùUïãÊŠ¹ø9Þ;V•hƒ¯8#áÉîÏŸ0±µÞå¸ôÇãΈɩ=é¶åÚ÷¥W…³#BÓÞ~ÂZyï¦ÌéjÇÝIP蘾áµ.þåñóo÷¡±\åŸÞúÚæÎ‹pÒ}Á#L÷ûdew×ðäèëX‡Ïöö&ý†Oì··³^Øù‹·µ¾³µéíxx^ø­¿¬?hKS>3Ü~*'£ÑÜö-zoÜ¿Éçî7¹â•ß«%ôjLÑ-#Á…Ä—õU¦êšá;ïsò~$n{á& œ+*ÏY^OúÓi0Tߘc{ç̯û¥?èû“›Üx2º˜øWk¢2c9ö^«Ó´ I¦C¼„÷vr +ü åíä¬SõãIBuG…¼T/ˆí«€„ §k xÖX^™ëËQ(O>R~®’íÒÁ·ÂÖ6Ÿ_¤Âê|®.xd͸þcM˜ý‡‘/è•ã&`Gª®“ª~I F@­YLõ§êNÙ‰bYç\Gq0éŸÍ¦Ö¦ìйèôqŸõ=sÓY|džÿ‘¼óÇ7ºaàö% ¶ëf4£„“ÙpH)«)º à †Ÿû“Ñ—1J~&ᯱO¦#-ÁÙ´õE 9ÜêÄÃyêý€Ïí‰J³¾º»»õrÕ“!Ä1vÂ$ó³!Ÿ¤L·aN¦&—ï¹'—JK²/‘-$²m¸ Ã8ƒYËlD‡ý†çý‹ÙDõèêj0Dô«“€ºqÕÇ‘3ÛŒôåbT_ùC>°«ë­VoS =6–Ïí"Lµ„×<æLžøV0]â(]Ì‹µË¥\ì²jeË;Œ{ågô˜þq¤a[¢eЧhB}qä±]Ï áÁÿü߀ÿ›ð þÃ,;¼“¶ __æq×Wxꨠ€z[â´·ÿÔЀ´ … )t´ -è€nx²Ð€x@7t@7t@7^È&@oâMÝÐMÝÐMÝdr7zoè€nè€nè“‹S| oè€nè6€nè6“» Ð/ä%€¼|™÷Ö×á¿ÿ ðŸ@¼õMøºÿ·áÿüß…ÿ ýäyÔ"ºÊƒ®ò «<è*úɃ~ò Ÿ`_è Z^È_3Ðxñ0êxy:BÏ1¾ÌƒAÑGµ}Œ)ÞÐï§“Áš¨óh²V4€PMå Ò¬œqJ4¯†Yÿ²äå7þáÙ¢ø†^æƒàäÓŠ½Nýñ•@3ÀžŸã· ¦œ»V‘¾$Á“Ïþ$¤[”ÿÙ;Ýbb`Eùy Æ­Ûù3SÎvÕœ>O¶æOÂ-”iÁÝå»; ÂcÀ"œ$›¦ü<“ø±sþÇSž ƒ('aü'§\÷9ÿÙ•”ãú¡ÙÜ–ùç»ùÄ3P^¾&å®ÎJ™ ´ÜÝB(î~=Ñ3…ø%<÷¡U¹ãM…Q2~>àñ¹ß›ùR0^ÉQtÚhÈÕVáטMrLõß›ø·òÖ«]‡žºý+¨€zìaZL’Ë*9L0éwÑø´ót%g© àXô*Øöhxi?¬‚»« ‚ßnm£‚Þö*h—w(XØ\;0…åç¶Q¬Š§â5.CÁº ‡³já*¸wÖ¸ ÿf“ þüTðG¼Ü/ªqQ™¨à1>ߥà)|›VÐÕFO¶ñìÄÚ¸½àü(xÕ¸¨LTð ŽîRÓÙ\§œ7Ž_Ä*ØÃ·g9°žWÁJ¾CÁíU°ïPpss,ê;Ü*@Á—w(¸½¾ Ö÷] BçìÜ¥sv svïÒ9»Ð9/ïÒ9/¡s^Þ¡s ëë«`ëߥàîjá.¹¹p\\ظCç6 Pð.³ ³y»Îù} Bçlm©]>+˜ÃÜê åø?ôÉÿœu{ý.Àlî¬ÞÖ-êXÿámlÆã? øþ«µÚø<Æ<Æüߎÿñ8³År­Š:ÞÖÊcLÈcLÈ‚˜ é?.¾)wJõÚaå¨slŠ0á ¢No<‘üÉömÿè½ÒÇ ’ï}Ûlý²`ß6c¿dØ·ÍÐ/A$Âèß\e –X Œ2KdF‚%…ÑŸA=‘Ü.ˆ¤€Ž² Üž(Ìó¿%ƒH2íÀ|ÍMÇŒžÃdÉ-èqÅ›Ü TmõßšôyÉ)·‚H¾å´;´YߺêÛÙeaÉýÈùŠŒn‘¤îCø|Ð;3‹DÂ|§Ã ôz*O'¿4åEùyœJøÖ»7åV ÓûïB¹D’½Ï8 c)ÊUÂõÍbsÿ\Õ¶Mß°ò.BøÔ£õ/gw "¹ƒhÉ:AÿÏ‘$cAA$1ðû‘$ >TIö‚Dr‹‚vÉ- Æ‚H²ÊØA$·¨Ñ"¹EA;ˆäA$Ù ÚA$©à^¢ Dr‹í ’[t‘d [‰‘,ŒXÑ5º‚H²Õh‘ܢƴ ’…5ÚA$·¨ñOD’)Ä*D2?ºÊ¬ÑD’©ÆXÉ-jL "YX£Dr‹í ’ìÁy± ’LÁyA$ÿŸ;ƾ~ü‡÷ÿñ|ã?ã?ñ…ÇøÇøÇøÇ-×ÿ“[®ñ[®ñÂèO!Œã?…ÑcüÇÿ¹¼’‘ ñ÷}Œÿø”?ÆÄ(ŒÿÈÿáQñøã!ã?6uü…~<ÆüߎÿXüêñIRã?Ò >ÆÌ©ñ1þcNñññŸÁg~üǧ(õkÝ{Ö1?þc}Û[Çx;0ã?þ€ÏŸ:þ·Áåoÿl‚ kÔ%V!Ý;8G“©˜ÈÊ£rާo†SÿK½ƒapåƒYÒe— 6 BøÑ݈rJÅä=ÆØH±%þðbæ_kæU°ÆçmŒrzÙôÇâØÿ%XÀ¥ÑøfÒ¿¸œâµ½°ÈÀBÑö)ôaJ +ùWg“~ï"ÈåVò“k:2ƒ.ÿ‚®˜áÝCŽf°®ð úD'“ræ9:Œ!ü=šMsW£¹xAžã`‚É6º‡ `ÀaL ºwùög¼r7Àº#0ïx´°ÐU0}Å]øLØT‘a(É¡˜+˜˜xQ­/ã(ü³Ñg|¥:q8‚‘ ò²‹)jïO&ûÒ¨Tú®#Š R0Eû`î­¥Q5½¡(föfÝÀEŒ$B’t'bd¸ˆÄÔué~6_ Ø ‹yµ¯|0mûþ Œú]‡r˜ÍЭ«}*ˆCÿJ³v óA+"X°Ê%Y¸©@øG“P^0ÊáL0m‚ažÈ4@ØÕLwî±iö÷êê‘ÿݰpt>½F¾lÆ>XêÀgèMBî“ÓŠxf5´ªu\iŠfý°õ¶Ò¾Ÿ6êo*å±ÿ^´ŽË¢T?}ߨ·Äq½zPn4E±vOk­Fe¿ÝªÃƒ¥bJ.åðE±ö^”ß6Êͦ¨7Dåä´Zd€½Q¬µ*åf^Tj¥jû R;Ê @ jõ–¨VN*-kÕóXi.YLÔÅI¹Q:†?‹û•j¥õž9¬´jX×!TV§ÅF«RjW‹ qÚÆë Ë9lÖA¥Yª+'åƒ5¨jå7åZK4‹Õj¬•õ·µrI·š¸_ÎU+Åýj™+‚FTåR [}+AÇyÕ¼hž–KüR~W†¶ïó€38›xm34©XÅ“â4myAÀ”Úò ’\?Ì5ÛûÍV¥Õn•ÅQ½~@ýÜ,7ÞTJåæž¨Ö›ÔYíf95´ŠX1¢€ž‚×ð}¿Ý¬`Ÿå*µV¹ÑhŸ¶*õÚ ï[èhwŠPçÖkÔTè zã="Å> ¾Ï‹·Çex#\ËQO± šÐc¥– õA¶Œ6ŠZù¨Z9*×Je|[G,o+Íò U¥‰®ömêlc“iˆ€*þj0lžRTEñàMÉfà^?Y‘lšíÒ±ìîµ^pqµ£+õf¡µ¶ö1 Žn‰ì^ÝOÞq< .@”Œ`B²h"\ßöχ FQkúÙ*7[s#¾TTRrW ÖTIXEv‚·G˜úsW $W”e’_r¢ñAc Öè8Pº›4Žr‘†×ä…ôóâŒËµ®GªÃ¬Ëx {ø ßìFò…"éÖÈB:êiXp&ç°l@¹Ê•"Œô@Ûýs¤£TØxŠïÃi¯ËJûåTÓäÜï9ŒÞ„¹³½Ù©7:õ6Š…éÍXƬlo®â.±]zA!°þg¿?@ƒ.Ÿ£Å纾7šé –ýz½š£h=¨µ^Í+ËFw<›ä+vþ:[ÉýjÅ î·+ÕV¥†·Awê0“«õ·9£üÕ^.‡—§v:´Ûv †Žê‰eì×¼øîjeEÝhßj´ËPæÙD¼ÆÂ|Wj¼áˆ•+)6A µ–}ñÃk±.¾û† ¿­À`XŽ•\ña9M<<ã‹Ð1´³?D^¤÷'Åwx]»z͇‡SjMØÿ%/_­ˆ„üþl²‚Õ_Á“þ¨?i¬©ÔR£ËWt«±&Ä·¸øUtúú-‹Õ&@9.Õ¦á£ÿïý™kÿóeÂ_Õþ÷66¶7¶ Iû«ðhÿÿŸGûÿ!ìÿ€:X‰`PDñ´ÂÖ­í ð^¾ÜY-¬{…T@TQ-¸NC¶MaóѱðèXxt,<: Ž…?Ú±7ú•‰§¼à-D¢VݯÖK?‰î™µŠÂš¿?u?)вap=À"ý! MívP˜N›Í°º@5nÚe} „é° z&&xäJ3x@eldek2'B•†>K½¥2”>Ád2â$Ug³‹ ¼¢efüï¬0xæðQoQü[^ѧìĺ²™ùcDl£‚ ZƵ€ñº½‰†$þñ½(lm­Hkpn™BTÆ+ì¬(3PIÓèû¶[Døâzß9.¿#˜ÄûJÍ,žò^ç÷1VRÓçäCš±ÛIµI=0èq<Â:¬ÇT³&æ ¼ß>ê”@v1üÓf1 -‡–GƒI*…<àÊG3{òH0ºJe¨ÑÚu4AÌ@E§-hMqC€ ÇÙÃEÝÿ‹sPa¹^ÈÈúϨYК­Ï¶2}³aJ®<$ ‹þ€”«He~¾ò»“©(£I[Wðæ J äÂYˆú¯fJv+”êåN»ViuÞVZÇâõk±«{%`í¨Ón;´ @Kh죻úE^lé‚ï*GƒWô‡ã×ý³Ÿ»sÌØ47ˬ‡€ò‹n,˜qúfLìT”Ë'Åw˜(ðêo&~ñŠNW´ÖÛ¾Ms½m£½Ûf’g@·Q°Ð©Y1ë¡4•ä(k«ÉG5ÔÏ)F]N‚_ÓØ†¨vÑ_•CµŒdw¬«àË2žÎ…*ñL†þÆÓÆy$ž=‹ÞÐÌŠt²¬x–í;Ø}Ãî%Æ–kJl£q0ìtýq\!Œ¢óŒÖŽgyÓ%û ½yV«.‚i‡±‚áÅôrÙAtìר ´×á® :äWÄÄ*7ª#ï¨ÀøÁhôé,€¹Úëp¥á¼ZïV36ê3+ŠÏ-ª‘¤am÷pØ—PA­`PÆ2Ê™xyä\}îæ2PsçôQ£Þ>íÔÚ'ûeœ7Û[[[3 ¢Q>-[0«Û L& äÛvM©ŸRV˜¥ž{+4ÏJõ“ÓJµÜy[oüÄ\'í :óè%3têCg^&ŸäY':Œþ0 îkÿF爞*¥$„%'äÔ8Š}yLëb2šWs2üú†õ”`¡± ÌGóÿ’×Xš¦”ö‹ƒ §ÞÃZÆÂ4çúè¿>'Û­OëÇg20¥c[7HÕk Úù%ž˜s%zQÇøÜ#ÃÙÕn$‹€÷˜t[¥ÿtÁ«ì`6QYÎû“p*9“šv šUž·*zÈQW¼”]’pÃãlÁÕ³F„JÛêå1GÃÿgïßûÚ8²½qô½ŠûLlÁ¾Ä†àd› DœŒíÑi¤k[Hµd ±Ÿ×~jݪVUWK;³÷óûm>31tWU×uÕº~W‚ô ›¹›ôod³£š~È$-IñÓ¶Ô@•CDìt br 'ˆÓ8¶fêæ!G¼zu>Ð… ÞÞW½~ßÌ÷'p€I,ãé€Ög±;ÌÌ$~@:š°)Y‚y‚v|mØ1GÞWÌù0ì/KBv oÙ…0»ÍÄbjVÞôï€Wé,ë¤f¿T(Èèidš Ý%Ï~@!%Ù•Ê­á83çÒ²J8«î³ë14‹9þ6S'€Ù a §ªú`mmížífXó“Âöó›ñöß;CݪÕbÓ÷Ä£n´ZíïüȦifR£óÞpt”ö©=Âé’v>2‰XÒ³!ï$^…й¾&´µñКÕ&“ë@£lŒuÃr5,n ‚ ÔÈPkHQLs´iMÛþ"Ü;xqØÞm¾hœî·h´[TÞNÉÄPƒ\ï´$bÖ&¿4ƒÙ­ØwÙÕ¸ÕáØuðwÙÄfÔœá´3!¬ØÍ9:<§íÇa¢HÛÒIšà-ã÷Ü.Mû¤ñ¢Ùú½ýºqüÒˆÃÕõµµš³_#RŽ=ý½…ß‘ï1Û‘ »®V«26ähŠšæbb"j6Gx€†Š›õX¨Na%ê =PmA¡ÉpHsWçÙõÈÐZC†¶Æôó²ZkCëIó¬&EÎÒðz!ÑÌûCG1A!èÏÝAãus—oÀý½^ôdcÍAùØ!!Mó÷–ïFµ1ý$FÁ¾À¾Ó|VLgä,¬&/Ìç@/”GT–Ÿ²ÜŸ(G6x×¾ÊÒQÅl{š ÙtÌ‘2=P’ŒˆÔj5ü=¾¾¶ñÇû:½î]N/…Ñ”šé¦­ž^€çÄn‘Ëô#ê¦hÂg¥3Ð9àN*LÌûÝ<¼h^ø¸Û¸‰¡z5y“AÓt(0"P*ˆêdäK4[¶Ï^·ËØF¸ÚÝä oY9‹Wæ:–%¸ZÆB^7ˆÙ^½Ë€4‚µ?]•>¬˜-Âg øàz¾žŒSÅcl7.ÃÇ¥Ø!³.¯A›mî³ÙѨòI6ÂUÆ[DK ¨äæÝ2¼Ìø:!‘Y!_™™JsÃò´šQá…WIíŠ$éåp:€Qç̶˜‰“k„Ëé '¼Ó±Ãm“ðáŒ+Dà¾*êu³ÕhƒBˆ¼äãïû­Ùï[‡¯÷vfyÞØùù¸ùÂLÿ%RÎs^us žs*¯ß‡m}øâÅI³U/Tn?ÿN=-ùÎÞË_û§\èA¼h>O[Â9SÑø§¥(I¤3‡ÈjŽÙeöŽwN_¿Øoþ6»Ø~ãäd~‰vóõQë÷E˵AѼ@Ù9›JÍmëð`—}O¨œ7»A9CÓöš3·–S«?«”ZÕYåŽkîØÛ%3Fûkóødïð`æpéÑÌ™;Ù9™¹Ãy›µç[Põ¿ä›»‡û`D™]dv·›'æ{M3tÏ8Ró´}„²ü6šÙÂÏs&æàÐ;añR‡hߘ=…G‡'{¿Í/Ñ>hÎ>ñǃ—MùìCC%÷}ÜØŸ¹CŽ›;§æÂŸ¹/¹ŒGKwÓñÞQ«}|z0³ØþááÏWÍÆìQØRöô—  >o¾ÚR2·Ø›B`‰»àäç½£™íC»7ßzÕ<˜Ù<¸{ós÷N~^¨Pûhÿtö…lKþrÚ<ž}'Ïm ,Xjþ×,1ÿ{TL5WB_ï£=¿ˆúäìró‡Ð$®¤1‡wáb‡³¯:.urú|‘b¿ÙÖ’YŘÂ}Ù"Ùãf”‘¨‘d=Òº¡#”E‰ÕÏŒdœü™Ñ™Ú7T~ÅÖå¸Bù ¿²a®Þó~z‘³z3sÂÂõugJ¯DÖŒàˆ}éà‹Tì[ÑÆàÒ:¦oâ@CjKø˜h!• ê”y*(n ëä¬uƈ5ÇÍ_Ì ru™¥FzZ µU/›,m%Î;41—é„4PÐE',pÝz °‰Ÿî´t]P…}QzpzÌü€]Œ~¦¸’FÔ½É&f§¦e35h“Ô¶,;¿~Fõ_`=˜Ï{×,¨¬sòѬ­WÁûdÛ\…¨k"´ª¹ÿ‰ ݦ¢,t‹Š>°Ð-*úÀB·éª,t‹Š1`!ÄúAø „ĬµGð„Fù! ,„ØOù¢,D¨c)üç þƒxaˆI†hfº¢,t‹1úÀB·¨è Ý¢¢,t‹1úÀB·ø¢,t‹Š>°Ð-*úÀB‹W €…nQѺEEXè}`¡[Tô…nSѺEEXè}`¡[Tô…¯¸q~®…nQѺEEXè}`¡[Tô…nQÑZ¨bXˆ|V wwzV¼½ƒ«¤•$¼®ÿÊû9Y»ûÜ…€ñ-½~—ïòE}§ïš­‘˜­±q—ïšÝ‘˜Ýq§ïš ’˜ òà.ß}dæêñƒ»}x“ÖM×ïP÷3WŸ“»}÷{óÝ'?$îòÝ'f®žÞq_­˜‹qíAòøß]_{ˆÌÑ]¾»¾nèñúÓ䇻|wÃì«¥ÂwâYà>žåÉ]æÙ°-p¥ßi¼æV7ÜKòô.ßýW‚û¾kîvÃü$»|÷&ÁëýNûêŸ ÞðÏï²¾|Éße}“?‰ïÞ¹Ëx ë WýÆûÅ|÷(IvïòÝ_¼ðïôÝw滿%Ió.ßý=Ák?ù ‰ê…ýîBB^þ TÁåOß%vrí§ëýž@– Jî}taE·W ß›åt¤Uˆùjr4Ì{˜eŒ@ Èy“5è|F.'[É »àtdεÐàË ªX µè÷>fÉ».9/üG6²vö|:Æ`B>$GçZÓ­*»Ñºf®k¨Â@Ÿ8ì;è;zÓƒ^w¶cb§ÂS`@k¾ˆy¢JÀí!·”Sb„åµeÐZ-ÿ±ÕmˆJŽLº'í{Ç'-Öç“J®Pd¿aKP‘?l‘Ó££æ1jtuLÐʃZÀ¥‘?xŸÓ9‡Ü °ÙB#„ggX§R~c^ù~ù‡óÊ?òË?žWþ¿ü“yåŸúå7áOo î#´å·¢Îl?Fßw\ÛÑ]ÛÀ³èûÌ5ðS´À¹màÿ{¿¾æÛt²N [é¹}ö<2Y »·vl¥]ûl7^©i 4m¥óV䥭ôÒVzeŸ½ŠiÏ_Æÿœ÷‘Ÿmƒ?ÛJûó*½ö?r`Û8ˆwêÐ/dËÅËÿb üb+ÛgÇñJ'¶À‰­Ôš7’S¿g¿Ú6~ä-ðÆVúÍ>û-^éwÿ#ÿ°åÿ/ÿ6¶q7ÜÑz}¯ŽÖûhw´þ}¯ŽV;ZÀ­ÿ_ìýu´R(€¤øysßV;³#?‹¼ãÏT×–ïÆËgö3¦­vnŸ¾xQ¬g \øŸù`?ó!þ™ž_þ¿æíª¶Á¶R^¥Kÿ#;ˆýø †~ù‘ýæ(>ˆùåǶýÈ2rÛ`n+Ml¥W­h¥©ÿ‘O¶OñN]ÙW¶Òõ¼™ºñ?ò‡mã4íÏÕê8–&à^ÅXÆ|Y­øÜKJÜËSýN] Ã!ºÚâS/ÕNÜãzÅEÓ nÚȰ‹Ê`ÆÖ_æÛàc*âí²Ÿ ¤£ô"Ûª  ‹ÐuŽûË^¯ËåƒNf:4¹Ê²­f}ämûí¼¢ŒR‹‚s&ø¬ ]ŽtùÏeÇ™žJ?íi:í÷Ísò¤P‘f#dŸÄÞj`‘K)pÉF"AÁ`ó ~ÂëtÌpÒh!3H/¦háwѨL®õ`Ú¬”,ž™ûaa…ï·«®üYÚõf̾ů2hÉUzSO–ñȘµÄˆ,ÓøÚõ“uŠPxÉËV”»¥Ìóxât>OütO|ÿñÃÛòÄ0 ŸÒ‡GÕÙðȾªû@È}É1‡$4Þ ê> H¤îcÿP•  üÃO¼KAÕ}*—AyÝ4I¢œéSÝÎYI!ä°©H§¤ˆ7‰Ý’B×NVRÄ›Ðó’B™mçéZI‘sÕÎÓõY·#ÙˆÞæÅƒY—$y^“æÙ£Yw%yÞ–æÙ³®L*ò$¼4ͳ§³nN*R²ÖõxZ²ÖÝxZ²ÖõxZ²ÖÝxZ²ÖõxZ²ÖÝHK6ÀºÞéz¼ÐÆškg#Ê[˜f1TäaÈb˜gfñTäq”Ó0/~˜ÅnP‘'!Ãaž=Õ\Gü“%»`Cï‚´dl¸]–ì‚ ½ Ò’]°ávAZ² 6ô.HKvÁ†Ûg%»`C’]ðÀ킳’"ëº%…6\;KŠ<Ðí<*)ôеó¸¤È#ÝÎ%…»vž”ùA·ó´¤Ð×NÉþy ÷ÏYÉþyàöÏYÉþy ÷ÏYÉþyàöÏYÉþy ÷ÏYÉþyàöO§dÿ<Ðû§³î)gb竳áéjTÝžŽ&Z÷¡§²QuyªšhÝÇ¢¹QÕ~ð”5ÑjO<ݪûTt6I䇊”l…‡z+tJ¶ÂC·:%[á¡Þ ’­ðÐm…NÉVx¨·B§d+ÿûšÿ=àùß#ÛÒ/üä˜ÿ=ᥧüï¯üïþ÷7þ÷wÛÒ?äÛÍ­öÉ/§ãfûùqcç禴áï'ûé=¢…Eí„ÙsŒS<°:4×Ãã&+*Éþ ;"j€6 /}ÊÆgù©«÷0jUg¤áLYWƒ»õOè¡_ɳtÜù`V -Ó1ø¿M'¨]s¹5Ñ\ô%z¯î!ô3@®øà ãLÔl9§q0HÇø1BÑ6ëÞ˜oHPÿúðPp„cM L¹@ºU~È:aE<£2¨yÛúéaŸiƒC^ °'›Ö¦@ÎHŠì÷³Ýõ Ôêgƒ-ï¨î["¨D`Ãèc`ax×a+<áÏ!0Æ™QÀVé^D;_ø°ŠäûP-üBÓlw·]Sx‰kÆ>„KïÖ–bd‡÷ÔåhrC£p[äF£‱·ÆKHð`ÍýI¶êÁ ý{co_ýIa²êîOõ7DÆ©?!j4 ]'Üé–ý ”Õ ‘½¿ž|©ãŸ™;cûá[S ¨¢yfqh&cµñÍãº%®'+¶Ý©ÝÃlnsø¤M@˜îaÔ @Û¸9üdmØ1|hÅ~èaééÍ_|[øÍ£º †JkÒ¹B¯¶ÌºaqÚ½sŽ‘ ¦o©µ°g°òI“·2°•aQ:‚²-V¸NºJ–¯Æ¡p€†#ÄlZÒÍ®-bio¬:;FÂh ¶¡Q›«««µºcb ¦ê½_›ÇÏkD¹£,í§ù­ ØWЮ/ö‹Q/5 â#m¸¦ÿ:S Rÿ-üí½÷ßzïFìV…P“é‡,í–½$JÝÐpÐN'CsýÌn¥¬\±AöÜŠ·¢_ªæÜû+´óé]xêuC—ë·Þ_ygÜMÚãé Ð€z®¡ÝMð l EiZ%€¢&^ F—J< ÛˆÒ'¢ì+ìbN?¤—€ijDzþtÞX6žÎ˃µyc)ö#K¤ÁXìh—Æÿ‘6Î+á®;ŠŠ”ذmX¼[hEYœhg!Ê_/¶wÔ²®NõR¬H;3R}mÞw‹U~(ÿ$’µèÇ¢ƒàb““aï693|·â•ÅþpI´njȘg+p×I€/ž²»çØ<6ì,_о0&4C… ù§[Qßqø‘ù /kþ}O=¦²fû„ÅÝSUÜ»¿r¹6ð‚çq¶íN.5›Ä\áŒkFµT<^F.ñ‚=‘ÂJÉ‚’D¥L’¦]–$lžÁކ±#Ž#MþÈÆÃ Ã‘˜es0&L>Œ3ÎÖÀnp׳¼¦£:#0¾ pÑyn˜®nÅó †uOܺw O Ý+ŒP-à×p¥2‘ãŒrø¡ËDÃÀ,ÁÔA·*ìîfÐ!´¸©®Û8ïuõ‡ÀÍÉ3ü\û2åu £§§xõô&ÓI°Õ5¯Ú÷/zœ¡5ù 'Êþ…óµæJš%ö®¯N¯gßžõÓÁGûWÇ,Kßþ….ªæÅ8}°oŸßýàãö/Ä´T5äjfþ‹B°B2 ZÅY´Ð\YsÿgH°¡±k¦—Ña¶!1x»š4á •DLˆñ%§›IÒÊl/S—Á,¶ÃÊ]ÊÍ^BFŠ~2Ͼd ¹vF¸ÕÄõÞ€ÊYˆí¹%p@¿ÊŸr+½ÝÄ•Ú|O •ÀØæ/N´v"XÓ€!óí&nSžÀ_fKpSalhïX5CÊØ£(Î0 .V–O=Æìóü°,Q¯ä$-R`zŒÔe£Á0qo©Ÿ)ôû^ùØyS¢¢'8Mâ…<¼‰*eÔää “«!®z´éY>ì›SÇõ¹ÿ†¶ŒÍtaæ© T‚Ÿ?xðo’0j:.ëROÖÍ“ ÍS°"JçWO6 "s³M'ÞÝ€˜W3¤5»õ;fçâ1‚;ÿÀCdäe0n]”~ðŽÆ‚LEÍÔ«’ka-,¥j1ÑS K©ZÒC¯V¤‡á³ ¥®u÷sS£ÚC"Sç?:Õ#½@’¦j1œ·ß‹õ°(Ó‹4yyp ЧÙ@#œ=XJÕâ…™S‹p-\-$®ska©ÈüÌ®…¥t- ÖókA©y³Z¨EûÎŽ(ÔÂK)øbkq-ûÝk' Ú¹¶Óú…µ‚rzttx èþ{ÔÃÂ"+ÒŸÞÍh Ix'7‰ºœ JÁþœî‘úS8&Œ¤ª•l‚ªyæGŸ1qïy)8Š\=ý†«~¹c¡Î¨ÍÞ}þ97ïä}¿ÎïÕ‰Öï§ò^]ó¾±púºnWÆžR|“?uæ$+`΀~ÃÄØñ§j¼ûPèÞNGº§Ž•zЕ÷êÁûß^7Ž^I7ý£‚ï1¿z¯½?=ØñÞ»íïOŽ;Mõ^6:ýõÛYZs•N™‡'«Ú–ÞïªÙ”Ío[Â7¢j‹n1ñ«u}¢D7u:zû»–à*S\…CÌáC¢Âï‚s’p@Úë4g|(Ä™V›8jÀA²^´ÚSÈ ‰Ð ÌŸ„z&¨­Üûôù¾‘!¹v[0ûÄ‘ü9óÁΫÃãæîgþó´u(àÄüH ÃøÏæÁ®­ƒ qOѺ¿wÐüìõœÿzÝhí¼jïüÚØßÛ…<^݃C”ÝZØÁ×{ÿ6ÌsS´½óª¹ó3?:=i2Úm³‹ÈãÖ‹ZaøñaÏœ¯[0 oäñðd’ö[íç'§¿©?y,h¡ø½ÏOUj(.ÌãáÁþïöaË|Mþ8=¢ º©æo-SÅ.”üÙ~mV›dD›lk¯‰×§û­=µD©Ï™Û;ÞsC}üE¢§féìâðnAôÜà)¤ÎƒM,ó. ì¼ídñÌ—ø·ƒ—ÇÍæîïjfí@qŠ‹.¤)Üð–\¶:½¡IR³ 9á.'ú­œöq“’zuÍðÞƒùk@âÁò}íÚ£ˆõˆöæÉéññáËFKЂO¼~=oìòóöÞ‰=‘ƨ™âc,øâ³ÿ%Þí¥½@5àñáéÁ®)ø³_lÍÓè¬ÊË“h•7‘§HÅË›BîU;ú½õêð }¸Ó²¤ˆ^˜½øüd-Öís¦5/èF¹0`þÕáùŠd0 *nÈ4dÏ1×DõÐ$ (aÊŽï*øimºíù¡‚Õ{;Çû/j„ïš“~fx7ÀaÄlÀiçãU:fÈ¿Iï¬×ïMnêô%ÓÜõáà”’í×=»ãÞõòÊ…ùÄ ØØÇÔI¶•"ô6¤å˜~•üVxO΄‡À¨ð›Ô*\—Öx±ÿ2ò D‹Œ”>Øw,–*-‰/AïÔx~rkÿÝq¬°Y¦WÒýcŽè¢ ˆ³ÌHËýÞe¡k¦îë9u ʯ¤òîœÊÝl4‰W6sþú%«tÙû#-Ì<°÷…n”ITvê³{Àwo±ù Rú°~Ò{ÍȲmB¶*_ EÒ"<ߌ§èã¡y¢r' ðaA£4ÿoƒ®TÙ{b Gܘìf¶ìƒ˜ \åõÖh`çèV ^ßoàà°E¬G¬•§uwXäråâ€5[ÒR£El–jÌaKM,mȻܽž­?®»Í'M!?çÕ)¶è³ªM03•´è×)¶ùŸ{­’É ÷Д.6aÒ°¡õ¥Ýò™Ø ÍêojG”pA«>ïá÷uýQY«~­ Iº›^5Gíæ/ÁÖ]_¯+¸­I¬TXu}£®Èb¼ænó¨5³ænYMJ]`˜%¯¶ìÉxÍã‚ï9o€k4ÕÂÌ 3ÚÙ)Üý¥-=šÑŸBKƒ8Õд'Ò¤ËÎÁéþ]2ÕŠ=*Þ“Y=Š Ï\ᥠÊfÁkžSÅ# ±|¾hC"αëÀ Þ.é´ÐÞÇnU à“•”D}4”’{âhF‹r]v+¦lNž€g9$­C³d>ë÷:½‰­ð)Kþ5M¢¹™å˜á¼ÑÑ.HL¡êX“ÈÀÿbÂ_LVˆWæ‚ZŒQÔàNÑTþ5…D—¦”¯ÆéhDüå!ä^7\eçcæD£¹r<PŽ·t‚nJÄNW8;"šS-o*³ê DGÜeÐ΀¤Jm;¤êVÿ#÷å„Ðïýý®-¬?NÁ·R÷w?À¶öèCà¥uxBæl¯(ðéë½4k«âÞ Xœžšâ.ûÇ,~ySœŸšò* U8=jÛ§§¦<üb§©tŒÍß;­âl†ÅÌçþÄb÷©Sð/Tó8g+¶~?j÷"\™æ=…ßÂÍÈÕ‚ÝÈÕè)Wó¶#W ö#Wã§\Ïß\1Ø‘\‘žr½Å¶$^pOò§çmÊãØ%aêïÓÓãp±Já¢À*ô«xˆU —Vá§XÇŸ<¬„YÈ •ø)VÂßç϶V˜ ¬,Ó1³:å¬9àã›~ÚÃÒ¨¦ãæ‹:ügo~ÑÝ,Œÿ,Pœ«™É 6HLªÐgòZD6õ(gO嬩äL!a°ÍTl橵·ÃÙ«ì×W`‹jÉö¶âÀî®XrÓ³}w·ùüôeûäÕá›6¥ˆ½{ÒúÈ&>á<ë*Ù+i¯Î¦ÀãÏÝ’ÖÿýjJ][’qœ‘9o6 Uòƒ §“Ñt’ë>Œ%¦š©Wé(ÀÄû¹P? {]ˆ6¹jSÅ*;¶µ1ÿrr¯sV«üY±Z¯{£Ñrÿ~Mœ³oâ…OÁ.JNÌ0§ƒƒáÕ€¢8H~ZI.zŸ`WMG }7Xâ.*?!OIyÉ—äõÜ&ؘ6«ÉVù·®™(Ylnõlœ¥ 2ù¡F_6[d?­²kY¢æ:þEÉù7³EþÐ_­óùu¶DnÚÝ`7¨Ùk5V\³SLüÝgçmv–*ïéCˆ†Fõî0É|·á­,2Cf1J>ùü9 Žd˜ò¿ö´ŽÐê°Í‡âÙ3#FnÊÐ~äBæ´~ÈÄççR2:ÎäÝ»¿up0Æb?k?qðé&þ3ª‹ úTçÏÖä#_©/Œ¥Ó‘²ä4Ζóä¿@qYޤ÷*3tîâG·¡r‚ËCnôF´æ+n‘ºT<=MÿEÍt#áÄVÒ$Hvñ¥´½~te žRbgäOû[øÍªŒ¾V]D1ÓÞŠÿ÷µšl'iè‹„©ðÌû¾„a‚NÀ Œ!aóWܬu§,Z|'SDÚÉæêqû‹*›+)|„ƒ7¿Û6,ÍQ³Þ-¨mîÖfvìÏ¿uëë~YÂ;®M× '¹¼&×›y,uJÇç~ºë˜~Z|PÀ ÿ;Çtÿ®cº¿À˜$“úfu–LëÀ+`Îâ–>@ê´Ž7e ºK¥¸¬â¥­¸"¥ÍgOY ôvFåÒo›W¥Õ$?lIÝäÞÜš|fÊêÿ4¿ÜŸeõï—ÖŸUmv­Ù]¾_Þe›·´nù‡g~³ü“*½miåyµgõø'Ýãp…0”¬¬fõ§g¥ßµIÑË+o–V¶aå•·çW>(=¦þwóë·¥õïaønù\ð]yù¸¼þÏÍÒ¾×ÊÏÓ~i¥Ï!·_²à¨é(käm9ý“TÂ¥Uÿ9§.ˆ>%ußÏ« ® ¥^¨ö쮿/? ¨Zϸ²V’*Ãà–¯5Ä~t3â,µò.¡‹[ÙM@^̸æÜ‹X²}Ð|9³)(PÒ\¸9† ü4Ðûò ì‚òÚð¶¼.a”צ÷åõ¡¼:ϔӂŸ÷ŽÊ+ÃÛòº€ªP^ÞÎØ ìý9K ¾¤k×[{rÍÿ,‘ üví=ÿ²þ^©R’ûÛÉÆ,Í…lÏø²!ÁFdáÒ Ð¡âæ_z=ëƒH³Ï6¿íGpÌåwß⃬|mœ¾~Þ<žýÅ¿ukF¾žlÿ­ûwü0.âÆ{·¬"DÆW÷Á"=!ˆÍRµD:±‘- € ÇÈjÓI«ÔE+šë†Ø“¯ÐBö(o¨t–(»ÆP3W¬¼ÙÖÄl%Qäû£ë¯€­&ÓRw[HÖfZûùïàÙ?{T¿GËEFv;å)»רÍïlPò¿¯Ç(Í=\ºXâuhÜ©sï¿UoµT>£ç»Í{óvªÙ^ÿfô×&úÔÍé—ú[jFQQno'kµŸ’¥í¥d3Yzf»[ìQwµ°K"…j…B³vÂü3ö#œ±gÿ‡ ;z¼@Oÿ{È {@¤ôKƒžÔqâ‚ðTåžqøet„ \yÕcÎøo\js&¯…%þMÇïdgßÒ§·´¹4{¯‘,?ï\xåÔRŒ³>Á@ñصÀÀÖÂ…ìP¶ùù„Ú+™|Ã>€}öÌb ™Ï‹ád˜€1¼qü2r„{mv‹,¿,Ô¦m›Ý$‰4 µ(xo³D)g¡ö)nv{(ùH{ÜÕ(°ƒÔgzæéÚVÒK~ÃvÒsf˜ˆ½)lE™SÈÖ ¦Y†fe*+QXîÝ»ë?ÿvý%fW)”uljÊ{üa‰5‘´Rõ‰*Q*er‘ÃRÕ³-0¯‰“ÓçsÚ0%æ5òÛÜŽü6¿'åU"h¥¸|lrÿR“û¦]pw!¼Ú»;½¸ŸáèÆæ@"(BÿçÎN/;Ò(D®`Ãæ6€üígà&4ê\MNXŒƒìÊõ|U> ¼@%Íóa§‡ÖVhaè—@‘#àK,Ž )&¾¡ª¿6@ÿPqEÌF7UŽÐRá¿à £|[î}aʶ*º¨é1übŽ žexf˜ÉƒÓýý{Mà[.>柕g—ÙegÒ_ßa§JÏpÄàU e—ÃñMmv|ȶýT3ãBõÄýW}£fû´ò,»Î:S4X·ÿ«R4µ«·wÎþ\]t•Û8åðJ!AY6HºYž{iß4٠уéR@'¦T˜º Çyv3h®K&rÀ‚Qñ4@ôdž|ÏË·Û™­Õx¾ß<©•pM\‘ì’˜WõZÕ¸!j?¹ŸPíö~óàeë°ª[ÐÑã/>s‰]Ó/_u¶"' ÂVÔwïæÙBvZ¢.DKÎ ¤_¦3„4ÎFf8üÚ dcÃÍ ñÔ6൩ɅNí½dÞ©•ø xB ÿ?ô$Ûñ•tÛ;!æÄ°ƒ¦›ËèñæE>£á“êÕ;gYµŠ.Š÷jÞÈJšNü9£êæ…>(õå¯ðÀÏ ®ÓE:qO×[§iôHËv¢6Ž}Iìóv„‚m}c"ã~^Šâ·¿ÀƒS‹Ë6÷´âßâlº#÷Þ8ˆ“!Næ™c{]UMSÍ<ŮԢêÉ÷zÓÕGüDoq%.'ã®w·:Ü‚«ïÐÞ¢†jžit÷&gÊddÏB–B.Ü0øãLbô¨ÝÀÐßáX]¯9à’ÛÔ¶Í? §ý.¶Æx ¦ÑgÉšS|Í-ʳ®‰gÉZ(é›veEK>útm»Š³È…ÊgÒ 'ø n±ÍèΗop:!e°UDÍ{gý›„aÄ¿š½Æ‹ú«à¦–¨NDz5¦ÏZøF6[Ð6é zHm1^øb!X‰yƒê"¡´¼ã›Q«Œý$ÊrDÎ+ ÞeÑ_ï#öc-QðOuÚçXÉ•/ÆÃéHºkC…cK¥k€|Ä\Bôèj¥"©rØx †%üÁqåöìY¦„ÇKéyÍN¢jæìǪÁcuo0šNK·’Ð`Ú8K°„ˆ ü ø/é¼y¶m_!º&?ÐË+è×&¯Ù„Ð$ÒñEf̽Җ=ôs3œÒ¼À÷F5—zhÒ&¶FS´°wñï¿ý}ãI­¦tâí(Óß%,vMN†AK)žOý¾ñÜô™‡fDÛᘇF¿›¡_À@GêÔ_Ánò+g`òŠo‡ Ì?ɰ+L)Óf'†’^)ˆDÆOÁëJå/Ý|“ÚkŸ6Ää¾Js<.Á¨^4öOš¦¶$\š€ªª˜ì!¨+?®îw\×vmØéLDz¬"7žîW +mj_(òQë8¹G›[¼ñm\»HËä6%ðk.ÌB–®î?ÃŽ`íäÍ8ÿa» úasqÃCÜÁ ór‘#ü·ß!ÔsaW·*0žä‘U·i>·„§àP ·«~Üv$Älx=¡¯!· Nœ/PŸQ ͈ WÁ€¨ÉÊযlÔýuë Ê½YÙV“É2ÛÁ¸Â ô.ö…•õh#_h8èO¿-tèóç份BˆÂÖkV.à9¼ú`Ø<ª&C†)*ñ$ÀçFÊ2³zŸz{ÿ¾™_ìî^tȽ›ÛÛ_ \»qh‹uE5¶ÍßöZ…iˆ¬*þ¡Å~êëvÀz…lo<ÞB–ìþ^'+kÌøS©&¥RW¬¸8!–Já„Q+Cf9ÀÞ¯'"^ù${vÌòçuI|@žŽº¨3”å‘õø²ghh$ðå‹ò5.FÎãiîÁª”°+º%ÍŽèç£8w‚Ï>˜þšö.§—îeœzÌö(N*)F¯lY¯K+ž„ò·#׫w¹šKÕ2ˆN ,ƒzöª7.Ü·¨%æHí ÒWLLgùÌâ:Ž 1d59úpÕË Hˆü¶'û× ÁïYúíÏõ=n<ßYJ®@ɺŠú6Ò-²÷i²Ä\²9ëÉYïÄP×êRGKªˆ¬Óˆôˆ£Q'1²<¿BtÑY^äþý™M$2Ë!s[˜Üèì†Ó‹óËýµ¼[ȨU8¤ØÖ¥Ä•;§Çû¿KÞJÍÙ|§¶}æØ&ÇÛš^{d…6е¾Á0ék³J% k%ÐmV&`¯gOÉ_28)üÝŒE‹,F¯J¾Cƒ~uŽIBÒ>òÁNIÌbü9øW³a`è_ÃÇTèïË/¤¯A8m Áç3 À=¢&N¼åÕ ŸÂU0êù”õP8‘ïì‚rE„ÝUAß5ák: $ú3W™ÜçSH„J©Kç óíN†“¸„EX–g Qñxs¢ÆÇš ¿Óð½¹ äÒú¼Öç~TO¾ÇXAï¾ðdEoZPìP,8lM3h;DbÒGè% O{#bsIpÏnN„Ââ_IЙLÜmìÜP»~0güf”—þè­üf^½J1Í–Yb°‹–Pí‘`#³Ž¨½Žª}“é¹7—ÞÊ éîf0 Exp¨¯ ÁTV쯫>râ‹­þ7à_±œ¾~¡SÛ,8»ˆÞ1¼6h>" ?Íf ë:ý½ì¯_Ó~¯«)* Î8³_Ë'á|¹Çâ‚X–ˆ Mt=n°Wþô ¦×ÄŒ"Û¬µñ–£†a°¬îÄóo/œ›ÞØ‚Uýùv È'V¬4yç|G K Ò€¹ ̲7•l$ÇŠ¤UŠmtk\ „#}g¶¾y½Æ…*ÇÊŠŒ©S1õÓa6t>˜)JÀ*w®* œ&cDx-®T÷×k†ST0‹ž9(„ ˆbø$°5LôêÀf5¢6Bc¢(HïÀÊqÞƒ(‘MÎÌ"#dæ“ÚS‹R:Ï/&!««Ë$c83 z½mƒ98ä± f}vȶ‘›µ0Q âéÌev6/Hö:Ç–%(Y1ý¶ðä$JþéW•™"ÌŸ…¬Œíæ4´t*#™‰:Ë‘M8+™à×ë.¡'R'÷ªX“8Ÿ¶å\j/¬}pÆÚC{dK4¥Ö#0D~ÐQåS·×üÍ;K—`m*ž:,äˆN{˜& Â2güƒ‹öÄ4¥Wg½ Ø£®ý¢ºdv=§ay€UE3®+ïrKší`F¥ÐäVËõÉÐyŠ6ŸœR&ñªzç”É2È„ yæ‘+^gš;òo2„U}q;óD0ȃ½¦¸Á¥RX:e0«‡­XÍ&³ÃjfÆ µ©äÈÙö‹õœ6'äá=u²ÉƒI]!¹nS—j·W¾à¦­“YοÂU)ÞêÉuñ‘ìh U-¼èõ$ŠQ†E¦“s¸Ke×}ï`ìɃ•6iÒ>˧ט,³Z(.©AjÉç¤z¾õÓ‡Ô¤árË–sì®#–Ì /¹(‡þŒ}(aMs3ÎH´'!q­½Érn „NÒñ¬C"®Äl ÊYjEҗͰ:{;­æI«ÚÁK«æò›þ½Ì&ê|±Ðyr*ö¤¨Ÿò·¦iìyÆ©rPÿ1KFLZÆ»œá“)P=¥0¢/õ3TŽ‹Ú/jsIÄ]ñ¢'` ÏMQ0{“ßF‰¿Í½}.ÚU&“Ãé$ïu©M݉Ê8\dn–ÁûÞBf±vôçvô9‡e —Æ!ƒUŠ´îЦa¡Î­âT ia«Š¿¦…I?SW$bM™a‡¦ÿï9¦2ˆš ÛÔÃt÷ïÀÖÉ2A€~ ”SÃl=Òx•†:ãa.út*È(•KâåÛ=»¡«ÕTøS’Õä2™Òa3†õhŒl yw`e{dÞüyz¿k~¾Tz^2v<¶Ã†9«G˜ xGìM½­®V­DIn\§aÁ®ŠXWÛbÏy1‘ÐÒñùžÁ:VŽØ9Fi£„ª„‹´ã5ì¿eP89²ˆ´‹ïôEPKtVzÁi´g² ­1](\PÜèLDŽ´¬°âüG£â£ß¬@ ØxÎqlX²vàùªqòüç£ÃãßX˜<‘èÝQ=y7B.þÝoÖ?M²ÙñÖÈaÇ@dßÎK'd‹3`šê¶±+6'Ù¨Û¼-)Іâ˜]Šv;°½pzž¥Uì»9Òph‡ä¡Ç²}ZM^ ¯ Ñ4òùXTŠˆÔJy¶ØrðçFýÁŠ’7dÐ,ƒyDª1°&±¥Úœ8ÐIÒ”‘œã„açÒKé¯ÊAèAЖÊma¿ù"ª%q’{`SÁø}tŠµÛ ×©w1Ž3m3L<›¡tò«!à ã¡ZZ€4*ywý'®µZFZPò ¤¸1˜óO¨d0› ù|gwoǹO½ñp@ÆYeŠÅctÞà ˆw•ì|'v’ñ/L´‘±´éÖûÜ/…Í®S”iq$kk×pO´ÃK%äƒÍ&Õý1dÞ€pYãä×y*ÌÖ€¹z•"¹Ì³KØ1Ò2é­6/c´û ‘FCÚÓÖ CW JqÓ5Ì…ºª•ÙXͳOž%ë´ÕìžâV|»þ>â’CÛí?zçðû¥ù·/ eà º’é0aöldöä†ö”S,™%5¡+tnä%mÍ´ßW©©VGí¾n¶_¾nœêv¿(oa»÷.ͽôI¼Ü(øsU7íd‰ÍoÊ}/ŒëósÏfF]ß%I#õ”N’ßœ0›¥d"jáFl+Îôé÷‘/êè¾D;¡xÄõ0ÉÄÜ9»ó9ò–‡Þ;ÜH5 ³|ËeðEJKJšÞ¥–;‘8½3¶n0£Õó‚Ë"åýe(eƒ\£²Å&áÁ M¹{*´?—« õlÿà°Ñ)ôdܳ§Ü6² Ó@¥0¥±ù§š­^¬Z!Ý5 3™§yöÍùZMº!ú¯§j6»É—fƒ9òœÀ §ûvÓ?w¨©û-Ô77µ2 õ˜2ËHJýi—½‡y¦rFLsõ`•”4 ÄÁÙ{%ÆŠ}3_OÁª³wzåÝp﮵ŠìS·únJoNñRÀµ—@&œtœ>ûËi\(ïàÒšÕÐ"ƒ¾Ÿ0qŠö»(³/[‰÷úx ÍXò²¡ÈncÆÓ;{Î õᲟ1ñA@„¿Å?ŸÖèo1Òvü?‡z»¹Ç×~©‹ æ(œâÁt¬w‡xpÍ Ù;¿e²ò“5œ™¼’4”R£óf2¨X4*_%á,L$ 8eND/ãØæÚ=è‡öéÁŒ£ p˜ŽoµÉíŽUû¾*ÆŒcÕ¿Ðò£BËsLy7µ‘f û„^'çÃéXç¹Fßæsl,ö›¨Ú4‘nÔ„«6ÌIEâ’ëc;ÃÞx)%[Ç)›&ý x(Žž„ÅÈQ4O¼$¨h ÅÆš;¯'qo4IªéÇ4ùÏôSJ›Óq:@Y~ˆó†]袿cŽÆ #/Q~pPƶxrvm$$ï¦Q1 ­®dAç9½¦@+§Û!C“ë_’ê¹ãYkìýc–³»“©dú§)ÛsSFþœ›ÚŒ£ÇÛl’÷ug+à>µ—Їd]ðÖ.Š=þ%5WQè‰òúÎRÄòƒõ´õ$¦„0!Ö Ü܇;w …!ü@Õ–ܘÂÖ!øõ5úáÞ^(Ð`l¬@zU!áþ%ê·]¢¼KUx\è$ÓA̬Aì\Ð6­üeŠâØ “_Ì!1ü8ç_È!0ÅIɶôEý…³ CÿñÇä!h{¯;º‡žWñb4kxƒðzoÈ’ƒ¦ A><ø©Ò+3µÚ5¬gG\Î^ó·¿$†´\öéd8ö[ —™ZÙû(™  …í¨fų 'uùÝtYk0]SVt ÂôÌú9ø$ë2²yîGx¶?ý¢þÚÛ¢¯Ì ó‡r©{Ä«­– V»ÓÙòZit:e‘ Hø.bì‘,´kp¯ù¾‘;æaÉ&ðyd'ãQ~X‹Ž—€ŵü!*¼FåÛÃ?BLÅæÉ!PÚµ¢­í^¡¡ë ¡õ;44ópE¿²ñoùʃ»|eÆGFOù0²5 ŠéÁb°v½¾9/Nkó(¦'gÙ`Ý'kŽá5šæ ÔŒû rÝŸœ¾l´ì÷¤V²è'ÖIObwµc£ƒÃL> ÄkÎP‹€“À.žØÅéƒ-F±„OŽxŠgNBnƒÙ³A25‚‰8–=+²%§1¶ä|ï^ÄFmØU´N ½uV›¥‹%ÃÓ²M*´+»Š1>—í5©âTY ÙIÐü“oRªë5+@ÔÅ­†TÛCa&ÑÄ"楺›¯ô,ö„FÃÔ®1XC¬J¶†‹h "_Jq(ÐÜ£ÕõµäÜÜ<Ó1¸³`W7j$ßà;ôgqªþ VõsžYå¢Cð~]rÕ¡o‰Ð0JÇ‘š–s#}bDšáU:îBKÓe•ewxà‚|£;(V©½ Ân.‡Óœ\ß}¤®ÕA!>í^àŽ3²¼Y&p©å §ÐM·ß¿ÁÆÀV*ÊðÔP|8è]LÇÓË4”2oN`gèAÓ‹šbs¼1xÅAc<¸0,¥$¾MHÉz‹>è…†ªÒŒg9B P×l¬º9žÓ1¤ò­jÍÌøà1J .“/ ¬£ßMõÉ͹„Ãî!6ˆ„ƒ 6p[KçM–Žsp¼J»€ãed£/VrÑ7þ†ünØ™J) =HÙ—†ÿìRÔ6ö Wä噑>Œ ˜Y¤¨a_Ä#æ}#«H«ˆéI 1º7Ó.Il]#›^šH$Qz-¨@P´U€­¯¡óWOîƒTÒm^‚uÆÜxÀ`çä_ØÁIîgçÌþ³€ã¤RÿÖõ¬H`q… óh†\ïy¢Rœ!„”s%BÒ#G·—ÖÓwëp½à jªI³æ IRsØ¿$·3 ©b óГçÐ(ÌŠ‚µU_Y²bt>¹égKh¨’ KKÓƒ ÿ]vî ël¶¾á$¾pÁ©ôPðêörj)þ#d7†ÉúYg‚Ä´6æè÷֫ÃöáN«±/#ïT–s' ¡3/Þ"ÝáõÌBk .À]‰\À!º×â’m)ë8OckiQQˆôÈ=‘@$^}fËŽP]?H> €UB›¢¦Œ¶9Å«tNÛ”tƒ˜$âæü¨¢žÏ¢@à+FËç£!i ¼/˜•ot»jʃ:™]†QÅæÞ=øá‡¤úužtôþ W‰W™%Ϙf*Ð"nŠ%ЭmFlî ¬ÅÓ„A»°Gr²‹‚âú¦úcCÿñ@ÿñPÿñ(´??ÖoÐ<Ñ<Ýt7†H¥Á•N àáe¶ÐpzñŽ)@NЖøI„ gçšU¼¶K1Ìé¸&VßZ¨ºF§dÏu°Sƒ ë^Yo ~ÏN°Ti†Š,žï„ºèùmØ ¸åyÞüÌ–‹ñ¦ÿo²d”eAV¢CºÂx0ÅuŠðQ“¯X­Z.m±'²M-¤1êFXI%NwèlâGÆ[)+)„Äc +¢r„nz++l½|÷GZY ‚ÇÍ`ÀâÒü²]eÌ–oÏ‹°:•½ªÀCy¦±Ùoã,…Þ¢æò™·AÉ+H@¥n7—`µ7lF¸*.ú¬ç6ÂuŸ±Þ|O§ðäjòœ|œ„oQ%yŒ¹6À2Íû¹ãv²Ûè,qOÐ'ÏÜ,çi¯¤ž‘‘Æ„Æ`ÚEš©FÆÃ³`R†MN!‡n Çf‚lÜ#Ýgh=?c¯~ÊE£ñpd–ñ;bC뎼 ³Guða {¿ñn e¥çÒ½ý}÷”aC ¹6TÑ¿{rMìîSr3‹»ej^cÕ®¹5xC¤^<¨<†a2ù:ÎÃáç¢c#ƒ˜*>?«ÓApÕPfÑ«„`æl@ÓSÅ`½ ã·ÛmnýpÎý î7Ð(ÁÉɲð¿dàÇý§ç#sYÇuÜ8 ®g.w}nAœ°Z;9UðQµ‘?!QÔÓQjµó!Fœ÷Fmë64Ñyƒàõ’AY„=Ãy™)ÈŠâÂ"ÚDú6;BÚ…=bˆR šÃvaâ SpH¾°bÄžÁ9|g៕Ð×,²ƒ‰'H ±ØY[¥‘}M›ÄÞÕIealï"dòo¾hÍø†äX&_V¦9¢Ž²Ÿ³†¥%:hØû}“Åì÷„C2HìÅø!bªåÙ˜Wßövê$úÆÚN/ûû­Wf÷½|U`U”Ñ»5!4(Ãç!“[—cØy]CI5/‰äE~²Ã1ÒͰX8|](6…üÃTË™¤)Rg‰¤=sŽ0ph01kt†Žç^×ò¤º‡àÖ^‰.äY Ħ™îA†FÚ©)MÂ3£Æ€;®p£O[/Vž`œ®øú㿳Ç<"DðJŽ’üOH‹‰kÌêÎ*= #†ÊÁjïþ}Cg7J£–<ŸD8Tt Jî™9»Ÿ §:†ï™çF§5k·`é£*©µ-f¼üÃÝfûô`¯Õ~³·ÛzÄí‰b~ér¿’¨2mÝÂÓ‡„C÷ìà°ýüd 4m‡tpº/pùÝÚ2‡d¨%OÏϼHÛâj¸’ 5ØwG2ü«óÝ©š×êè¾ûîzmÍ?ŽeÓF£ #Ç–mþ­¿­»•‹<‰û}³Ý!Ñ Rö3¨‹-•p2q“E뛫 “–à)CGŠÅ=5œÃeUIGdúðnø'„Ò å߈äw …Ž“RôÌØ:SkÁ¹0°^γQÄvT™Â”ï6«jÿ†!FåC™‹Ö4s,?<™¥üUN¶ÖÉuÛÁ¶•ŽpQJ#ã o…ov›w\À°9éÔL3ËŽì+µÁEÍ$6¼ ÏØ;úNkf©Á" ‘xÅ}ñ) yÁ܃àCw:z!ú%„Üâ’Ÿœ÷[²‰´õ´6¯;ýY_Y¼Øg¾úCÞŒÂ7HyÞ| Ïê—ozxìé±±ZÁÞ»ëöcþn}Ê`¯*7?‹:+~•¯â¬Óÿ ¤‹ÑÙ¸¥ñæ¦T7“FH3áC÷ö›»í‡ÇoÇ»3ý"1€ãv.`ú RÓ7p·ƒl*öaËf³\Ïð–¼v7SÃÎp§*ð‹ÞXÄ/zÃ]ÈÏ7pþFŽÑå®ÄìH¼\JNâ3ëÆáÛ`FÛ*D­#~®‰ÏŽXWˆv'ñL'E.;®ÌÓÃÁÊË®#÷GAÝ$¤‹fLؘl=TÕ Á“|2~€OˆŠ¤¼™*Ë.së»¡ÜæÅ'"(ôlTŒ(†’èսġ‘¦ž¨Ð#˜¦?þøb²IçIñZDDÛõ¡3Nÿ¸A½1!l ´Œ¡åã픜ò¹ô¤œ +†Û?¿ÕõP2¯ƒ×7ýûé+™1Ts˜2¤BE5µüAy´¹Ó¥É§›˜5 c€bœZÀ¤}‹æ¾€·å:³iý[02SUGd:p%\ ¨'¿S¯ ®û~D€òöÏ{YXV?KÙ"æáƒØ<Z“ø-Ù'îÄáÀŽÈLg— •çGöx'%d¼Âyú‡9Œ—?©_Á€ÁÏWŒÌ;õætû®LYøíÂú{Uœâ½õV½¨ ON¯ù?Øw4¨‰~ùËrÝÅXÓñ&PàÙP–gƶVPóUhŽðf*N\òr°ž\Y®sœØ¹ºí.ÁÝõy6@BvÃÛÝAÒ<ã£í9Ÿ½õwÁZœ&Dšëû‹FòòŒœ7Y…+/ö’QU¯çãUÕù@¸I>Æ=øÚßÏÆÃÙ@9î£EÃ4 K=œ*¼mM‡…ç7$>BÈžœî£ª¨ÀlÓq‡ƒû)böØÖpÀ ƒÝ&OzëÎEq*c#1Œx†‰Ã³®"”f(K`àáBùË ìZ»&íÐü¡Ç”… Û{²˜¾œ…Ó°‰2 ±ûw{öý;;0ïëø‰€2p|¨GÞÀiÆé2‡dù:“å%N|Ó™LSªÿ×´W•u?2»PöÏ6‰Èv× ƒ5“£ÑhÔ ¿G>ØÐÒ>ðÁ7ÖI‡‘¨èÌÂýÂQB¸Ø¥º3s1 ì’6,‚i2@!"Cø=³žÝT+~tQg˜OVÝ̼@äDSÀHI:NØHØÙà¢70úe#uøàU›j1VÊ@Ò­ƒ²¡NÏjÒ¨›5ûè`èpžmhŸJisõ Ùr«RÖ`Ý|of›«¶Ñ¯ÙØ Æ˜F6c ÷E6§¥ŽF4 !C¤˜.¨<3" #s¼\ßu€N6ˆPÖ8ÙÙÛ£8©":ÐõC«fz-˜*ZWF +!B§ó¨LgÛD ‡˜‡ô%i*WNJü¥é´“–Áib?W@q¾VËš :]‚ÂÍ̵ë‡k`c¯¡ó~Ï´Á°Óœ”ý15Ì4“ëwc/Ζ,ξœÉ~&§˜N®Äv²Ç"§p5«uº½Ž¡äD¯¦Î¹itSÀ !lM† ‡‘IsÈþ“‚YÒê[°é‘I?¡6EyAÀñAPÑY$ !dódmåÁ:ÏÐ €l•²<7á\à¼Ñz{;É2U¬° Ø5Xî,[Ô›þMLiÕ)1§, a´Ê›ˆ©D”þžI‘ÙÙÔ,ú£†¥OŽšÇíÆI³Ú©mÔAÞ4ü]ð*ÕtÐà|‘ŸÛà:¨û1Õ€Û‚j»¾ñ˜°%š×€_\%l†á`%ñ"¼õ©Ä`y^Œö—Óæ ddo¿nÿ¬Qf«øú¹«Nö'd[yòö(Gì5~m¶;;̓¼ûáa Œ,ÎÙ¾²U¦îav×¶’î1óïýûå ¦q"aŒHÞî¼í½¯•y%(/4ëÛö{6Ä-ÎûÏÜ¥‹É.Î1’t1t^hW …Q7|p×67¼ÖvÚsíéiõ£'à ˆä€¹BÂÀ)s-(­åêS¯”#…œI©ÒË„ ŸðN2ß­IdÖìZC‡³Ǧ¥\§4bIòÀšÛ'´2€¤¡‹¹$ˆ²Ç+òeþPl17+¼@†`½<1ä÷ðòôíÆ®"h —‡£€Héʵ±f/&b)iôkó³$6EË»#(FIøóÍó³°T}„Ì£h––º0]$q/, fÙ@F‚×0r,Œ@.2òA…P#JŠB‰T(SÇ`‚ »†èñfbì’«H¾”»8ò“ª`$Ñùį¸â §W™•dâ%ì)¤mœú™Œ§™p»„ûdú÷2Þ!(¸² Ý~šœ ‡}ÃXY_eð¹Äe(°í¨HCÅ8öñf”¹V0~Áö¯%>±P¸&¨6œ[Uïf“”²©Ð2ÞØ¶‚%Ö»8HtZÈÛAM.wG$‡$ñûï²ÑaŒe:åŒòƒ¥ ÙH/²I{ÚE³`H¾ þí-å¯X ©0dÊ%)?噌ä#-ÉláòGl… ¬#¸[{ÿhB:^s4†£Yy(8- o~ûhí½ÿôÞ'ªð ”·û<šä=¸µÚ‡­“ã½£–²&½nüþ¼‰F‚×§û­½JkfvHêm`ü nl/0Š04²âµ ~Ðmó’|bÇLJÇíãfëôø`«,UE…WA„ÀóKèã~GPQÌ}ùç—ºÕïöѽ»ƒ©L¡b¦e9W¨Èû¹K÷ÍÜ4¨b€Z¡â–}AÏdÕa’gøo>ö¥Œ,í?y&Dr0‹!ÚÐäÓ¶ŠÚLåÙ´×ï®ÖPèì&²›‚¾é0WZΓ¥þph˜$´”šn.%ã©áKëÌà+<Ézòáfô!ƒœ-ðYGç´Ø1&ë @LfR$¢SyŽu«ÈiO†èD òVWÓš—ƒ'MÛ­+†[§/VÏj„P‹°’ð…«áø#çð‘i¦›ÅN‰›âJANòy㸕xÆ[îÕJ‘í­šÁÕª¹‘R‡çUØ€µäï ÿ©Îc­–¬$ëŠC&Žõ¸¹{¨ÂØnѨRvt„E>\<”ël„@¤¯» ;=ØmŸì7In”ç¯÷NOüGb‡³Ü³’„_µ|Qxç¸xG³Pô”hYOí ­ùNT{ôÆéåy?»¦Û’ý_AYA*«<UÀ=kúýN¨x¨R÷ŽwN_¿ØoþÆRAk`i”6’–ÉŸã(êc K`z A†N.©tÈŒ*¨® ž&íÓãŽ9–˜Å0m!<ÜÂ?2JÉë#³ƒ»¢ø]LüT“(©Rê´SŸAb$Jˆ‹ªyAX ç‘úR8Zr&þ‘øh‡>“§µÙÏÉmÄÃýÃÿÜ595×"aì@“ŸØ¢ªá’˜ÀÙ½y©d²äMR˜Ýž âŠÒœAÊGfs!-Ö¦PCÆ8LVzaR+à/™_V(Tȵ™ ió CÔUß×¾c)¡œ‡>5JÝÐ$…ÿ´²21 ÀA Q걡ÙhÉ iD£*‰$…S°êJí,§aËÖšoìæ®@ò™–>Ü€¨}Ãrëj8‘o´Åol•6; ¾ÈN'ƒÓ—ÆR—:«»]INC˜'Ë›Ë0ÍËÛˇ/XDïìdý›ŠäWé†êmàC¬ÿ=^™«Éó^·×ÞÁ« Õ—œujä.F¶q¯cœ-È´´tfª"¼Ú³¥UlK¹¥¼S›ÕŒ¨™›†Gª™vózFxð¸P-^›®u{“Éй ÚI=¿ÛK ƒ™@…½ûÄÁBðƒ´–(]‹D9‚'|$bZŒï®3DøfTÌ'ãÎå¨ÝyRC^¯žœ´ ûõ² Û‰qñ¥°üÐìZíiCL…í>{åî ã?Ó×íãÞ–ðLi¾:º1_ujÖéSå [¹«Û| Út׃¥<3D+ÎÁü‰È½‰ðeÔ“­Ûv ³§ï.]¹žÕ—ßlgÔšÅÒ[³Ç k9U܉ܶ.9ÙDÀá ¼ÇHHÊžG÷¡a<дÊ79í‘:Ýï÷“õz"ozæz†§µ{1d‹·2ï1ŠaÓm×iÔù ¥ˆz8#èËc±,˜¯=@dQa÷Ü·áˆN¯!:t<'CÀNÃå˜N&møH/ìUÅ~Eˆ>Ýhqñ _ßÇ×ɳg®5–Ö ‹k¿D"^äIÍð «ð´Mc®I6“7”¸Z„g7ªžU@å3J¯iΰÐ××›77_|VBûT^ãŸÌTå¸1Í&Ԭи@%¬êIÍŽé´³Jj®øG·}ýOA°±:Æ }x,b ïm-ú°¤#éM U ÑSÀëàÁÚŒ}™Näk…ê¿ÅêËhçwØsë¬ð$yÐe_Üj@ªÈ„vq݈:Ñvîñ‰æ§±ãb>ä“‹ŠfÍœf”Úxö! Ñ4`•b‘\­ðÕÇ[¡ÆÿŒËjöÕ9æw¬XˆöSf÷xÓËÏ_“cÞsü\z»¹“²ôv•ÿÝ׸ŠÎ@]%Ïìæ"Ã#)|š§k¬hSeS˜@QIZò±´ùžz²Êÿn¿_Bþí*3Ë‘T(âtlùý²uIœ(ã7é2éD/§aì9мÃÎfvÊ0Dm½Ôs•µ‚Hò@»ì!ë "Ex#‡ÆKÛ`Žr]|fêÖŸÂÓátœÛLY¼Us`¨ØÆ¤ïüæCieéÔ««'šØo7Ïß ‡›ïuèHEwÁûèS¥ ‹¹¨géÊŠ TŒj5Ùï}Ì0tŠ>±¾ñàáæ{3å-’ Ó}‰jÚ1†SâHˆ‰}ÈeÀî¡E»‚²ƒyLïmzÖy»yýîýè_ã÷ÐÈ=Ã-ßÓ©*=º3gfÆ%k)]ª‘þ³¹„€$©¾ ©Syˬ£[ïz’ üS æ'„&Lše ƒÝœ•…:ïaŠë#ÐrÞS¦E¨º§çÃÆ ÁÔ (ƒ…ÈÐMάў$Wu49ÿ×È“…ÕíªÊ²'Yœšƒæ°âÏ¡9ˆ8DͦEJZRAv`»r ¼ m˜ >¿,º$6Ö¶M2FŒ«SléŽY lg3˜€ž÷± ·hP§[?p"q¯3Ùs²÷ämREý5¤R7b©µkÔ¨ 9ý£è¨*ÀAg}íÐ%ê˾‚1.o.דåÕå:k®<Ë4Ú¤Åì\01#ßÐ7ë6±¡;QEðn É릗ȗÅIQ"6i/™Øß @U ¤a2 .&„¾ ¦×÷V ˜ÅçgÖ¥Œ“•uØL 5Ý0½ðÈÔ( Ð{˜NYÀs‰´ÓlÌl [-ߪ@Á›^Öï’zE¢m‘6 %‹…Þ[\R9¯0ðmÝfXO®èX¢d!¯9C¯«Ú•¨æZÞ™ØlYÓùû³¾Äpéø9Z~‘ݽ²þõ[›ãÌŒ¤¡¬U¿6Ÿ‡ûû›omÊ‹›Ö«=Î.²kô˜èS®D¢íQÖaC_Q òBŸSCd ß5è­ÞC¯Ó6° cø4óïLÆ+ró‰)‹O@D¬dãB:ñƒ+–ï-³Ã4ˆ­]5L·Ï°ðíÄ~›mz-åBŠáÝ”<¶9C2w`H¡ˆ«QÒ&*Ç7À£å\QÙ 5¡¦ŠzrlYOkø`](‡\Ñ<»Îš1v§ƒnŠ12 nA·!o(Ç+¬êµyh=„vðÅD\¾1 “BKÈ~žOTØ(îhè çoµ}è©$´õBÜ4L?'~Mª>¡[>ŽU‰æÚ˜åÝè“@·Æ2xå¼gÙ®B5Åx‘©²+¾kä~‘ê†ôX²á¸°ëqzìþ¥`´Š»7bÝ /1ž–ÖÒ­qÝZêÐòž]NŸ=æRMÜsÓ^g Á"n˜åŽ•ØÍ^Þ&ñs›X¸û÷­/Bã¤Õ<Þ;ù¹æŠr–fË›áä³EæK[.ào…xP s Y5ÎÍ¡4–lu"57p¡ Yfã'Œ¥ØØäL[ÞqÌ®G”( Htþ@ k˜›öW¸2‚d¯fâ.­VríµºS )pG;©ºM„L‰OÀ—¼õ¦ÛrN à>>¼0{ú ŽÞ¾Èz$)…Zý­»Ê…´ö« ¨6~W]pX}Õ:J B‡qXj$g©u›ð½»<ì&àn9Aåì&â\_pߤ› ‰%eÊGˆ¥¢¡á°²QÖÈ›@ØEçÈ\OÄ&T̉„ÒóRDÅÚègá² ‚IpÕÑÝ{;9ÝÙE ’ÖïG6hºD¯·“igÔ>èjQi¤3ûÄL!lT¶wÌÆ«nméöì×¾“¯Á\UËüyaîU0j½…ÿ¾—Bû‚Ãy19ŸJ/æIº¬3+݈YÎÎÔl Ö7Ò‡\µW˜m|Z6£4vñâà²[z|[ºlÙõÓj·ãi{ë¿™"r@ §wB kHÙ6‡™™AG‡?òHYAÊ®\¡³ª ý“«ˆCö0k¾wÒÖájÜ¿oÅò[︺H=1€ b*ÖEÌßÂC#‰%øgûj8îêöHtš‹æ"Y'“ùq¥!Ji)+C5^7‰’–Ü 0:Œ¬+iu+QZQ >Ä”8¸KrG®Àxr9šÜXD„Þ8УìœuÑCµR}ƒð䜄f¶X¢k;ÿ³Õš”âÉDÂc0Ûäñ›{çÝ–‘Íaw c¾!(+Ò57‘áö™ >ëyƒ(ÅYèAÙ-6¢º0à‚Vmܸ嚽¨‰B˜á7Qƒ)=؈뜅GR€)Œd+ŠÚMî¤-`" ‰\ÅÿJb ù€Àäï [ê´ÂÅJðJñ•ÜYð‹Ô]LúßD@TŠØ ‡D‚ïàaèyj%>õ…>àË“ÄfÖ"VB'hA9ËvAaK˜¾`Ò¤ÕšvÀÔéøctʱr—±œ|S!Uo‡6l%.óˆÌuÏï_]‹]ìVv{9 *Ç.Tó×ð ìÖ­2C‡‹”»Ì&i]ÄkÒqöb¢N û¨qÜÎOÉûõû^4› õÜËàÑClºšsBëÝ>cé»Á~Ýl5Ú;£Öéq“ûKåxŸxlGÏ](Î2ã}T”¾mn>#›¥–/½Q€¢™D|~’‘µN›ßï߯±Þ ´j2КÚ-âÞ}'ç“J¥¸¹àš©ð÷wŸ›»õ@]#p5@Ìò| h5 #ùâ á­úÐܨ‹Á8^åA-Ñoçá£á¶Ù‹ˆ$ôèC´Àù´OQ<ÈøâN üî©c"p¿0÷@  .*ï<~¥F&r¼,([GF *ìè“ÿE¥Û>§ø5†ìP½ÞýèJ1mæøTPée¨+€ØÀeD=íКµðs¡¤¦ ©c>C#²e+\V"i•Ÿ8GT™ž`²`³Î}sG}J{}Q1Z7t‡%‰½_EÓ; cøy¦^f#åÉí)rq2m\”î%?D—ySm)2CDËU|2÷êpüMnÎðŽsŽÝ3}æ^’U%Ïviî Ž(ÀÞþæíþpøñ,3‹Öõ5‰Œœ[w¹è謊 RGDÙw;?jÈü¦Løxt_8'‚ºŸÊÁþ0ª7™F}ôfÿqÓ±sr©ˆ¾:¡ÌQàüaƒ Îûé]ôÝ,ÅyÄïè(V¦à®œÔ–hç@ÉÄiQ`é9(ü?lyÏ!~iB~Oþ à"±c[š7•õ^Û§_\Ÿt–ÜY“ƒ“íãæI³åælíÚ\‚ëS¯ÈÎáÁ.Yð\‘ ¿H£uøzoçäX·òpŠS{È{ŽÞÇï»TRpôü+Ó† ·O—·'Þ7®ŽhåÕlõbÕ‰|æjkšË AS!ÖŽ‘© f iÊy‹sõ \ÀÞ„ßbBöÃ#ö?…>ƒ²cæ³ÄœvBƒÉa¹§!SGæ1¬žÌÒQãø¤Ùn¡7ú®mœ™AHP¦éÏôçîaË\7òÇéØTO>'ï, cþìÿÙ~}xÜäg#¼¿w ÊE†vZÝÚéÁËãfs÷÷ZYoIªúL¥ç°ZÇ{;­ ›Z/ñ9ª(ˆ>}SÖ ºƒFª`xb<'ˆGŠH?„Qöoþ€eÃÆCŸ×€Dü¼€Ï;ü™×‚£ nÏôqãàeÓÌi=‘r`ÔòÛe§Å°¯E3¿MWþXÞb¬_ÄNg¾•ÔÒI ðw#Í­¯˜ºÐƒ•ŒïâÍi—Rõß~ÿ‡níÅáñó½Ýx÷ÞuM{Ë+ï—Idl•)¹~.¯¬›Å–Ê»÷®»²¬ÊþÌšŒhÙu7 ŒKœÒš$~û{­æqc?2³ø²5gùAU‹˜*Hâñ¯A·B— ç²%Ù}á­ûξ!„æ$´›¯Z¿ãÊr ¾m׎ ܹÑ*ƒ›€îãhmS‡Gf°4a¯àÒpaÜÇ-ž€¥?–Ì€—VV–0„Q5#­µËZÃxvnâO-t-–L¦h!„c@fe®Ù§ªbzµV猳ECy "ÑÁáñëÆ>ÎÌ¡kÑŒ ¼—ß®®®š½Ê€j°"dì6_Ú§­“ÿX¡Ëv¥ç4 ý­Û´†®fõ'¬[›[¹½ßl¼à\¶çrÙyí$ØRâ·Åsˆ©£EÂ¥Ifà 2¡#9¸Ž³„îû—iØ£á@óiÖ°<ÌÊ3æ ^ ¾ñóÅõºCÝ%PÈ´e„¥Šùø¿¦)1ðÝÅ„YïfÙ•#NÑHëÿÄÿZ˜U'³Þ95éó½—¿6ö!sï;Ô¦â›ý5ühûd±¡ñ…¹3»àÚŠµcå^8UfF–Y†ù ­xD3á‚Ì=e^©Z¬E[„õ&½çsä ¤9°¿w³~ïÖ[=³N9®l¾6’Ò6ô?+¼ŽJ^À¾,¼ºGï0êÇ@ Ÿ‘Ë“€,#§¡(ÝCU>øí`㪙Ùf÷B_ #ø÷P—\V¼ 2~¬ ¼ÐÕ@U$ú?ôZ‰÷uvpÁj{{R¢Òn·ô¼}™Ž?º—(*8‰ƒ^ÈsZ|Ѿ\7ïVַĵÍüMIç 7·Ö:îj¿¢‘Küºî‹f§~ aéÔÀµÔ ŽÆh›;±Ëaóê¸F©GlOaGdŠŒ ¹Tüö|ø/@I¼­?­¤Ôábž L¤|QäbR»Ó¹WãÆoãŒñ£€´p÷e€ý2Ëc[i‰“BƯÌñ&ê¤-rÐT;š2PžÚ¶>s¨–ိ{ƒ óÀʾ÷&†fÀŸuSÁ_s›Š…›æóÓ—åÇ •§¶=mh`Žë½½2Ô•ôgR¾!ÞsX ˆ„¸åp,ëwmŸñHNDðjð_ž à\,kõkûÉU°—°&™léµ%Äp·)Z]«:ï2HD~ç÷ñб[¬hæÄP.Ø~Ô–Ó¤^"ÆÇ”¦ÉyÚad‘‰_¹b¿°JXê˜ÚðŠñFƈÜ…3×{ÀÿC4+äPŧ,|„㺄Z=ó6P(#²ú2 ¡eÓS%ø§š+n—Õjq‚’{ñLD“ǶÝZ'3¢ÆCM&˜GüwåÄ«ÍdÄ*ü?o¥è»FØ/-á %„}?A®žµÈÁyÚgÃ=ÉgdV®Ý:ê²Ýß^Q49OøÏ=Óeޏpò¾¹–ב":ˆM=ÆŽüó–HUøR³dœ‚¹ÐGLi ñz6²@qØÏð´t®Q(È9î“6Š_šj$týi1Ò@¨ l D;eŽ1QÝ,™ÍÎF’mƒÍq·³-ɰâª_‚c:Ú¢B‘7™uäïª$ŸöÀøv³’#JÈÙ€aÍv>BàÚ”p]0‹[·D2šAöÐ c,KJU|E7é\½! w¦Ž œŸ}#דLð‡?ו$ôŒ{@ôƒrºÂõ ¯ «•[#ê÷Ô¤×AÅ›ììºíÃ韎È~Þ!JAý¥œ€Ç PN6=SØ82ý³I²¼~ÊúÑ—(:dNÈybº|.í“úNšiñ>dýhaÆF*7L3gL‚À²`±»Y…d MûõuC)¦Æd¿èM–iŸ€âGa˜æpì9 ¥OÁWÌ–f5Käé9y;°.Ëc‚CFb%ä#p,µä¾o}KB„¹õBuÅ ×’·ÃVÈ øÐX^®ÎÊs¼Td }q!ör‹ì³q^²œ)»Kf¼7Yú(•Þ7[ fH ‰^à«Þ#WœŒÊÍRœMÅ~ÕÍúè>5z Ñp¿åFèxN©·gùƒä^€=üFÌa4檌-tÌ;†¢"1ÇÀ@CfÃ5— ›n³ëúk¤Ç47JÆ,€Á\2VûjÀ´+¤%ó“LSÈLq¶ ´ðЏGè;ÔŽóÇNö‰CºOéÀêØ+êþàÿbÿÙŠGB§3KÖt‹‚ª††Wꨰ-Ë‹‡Ë]M/3F"çI…£¸ÔÙT¿ç.¦ËbµËˆ BÀŒtŒp#G7É¿¦CX«/Ÿšû¾Ÿ¼kÖÉ&I.q1ê¨gŠÞ AGBG€bJû¥±¾…RW¨K YZMÔ*²*ÄûèDz“kÄ vl†B[¨c1G@‡%%eÓ _$iEb©§¢;RYå DÙþXhd¸¢yÇå%íaÐÍ#7—Ã.×|Ùªëy‰… Dy`ÍBŸ¥‘XΖ}-¹èK²Ý£dÑn®¬x1÷¸ ßBØ„ŸNøYPèÔª˜u2{ƒiÆÙZ"ðaî¨ë‡ùÄÝá€ÃEǵËyÙÿ†D<‘pÖœË&èPØ]ˆÑGÂ÷(Ñžku.³ßjÃGЇ‚ AÊ„ LØ™yr–v>ææò@¾8›e˜(¼Q¼ißý,1$Yhâ?‚M¯º‰!¬‚ :PXˆ¦"B!·ÃÞy%tå°îÙ(ãˆìK´]“vüþX¯³Usø˜*‚C-ÈÚàüâ\º8U„7ÓjYVȶ—Ò†þ×=äæÍ´#› ¯¨¥cP´Ñê]ºwD]•¾Ô}‚T‘µpAÄÙw¡¶ Ö¶92ÔÃ7Ñ<Êĵû‰µ‰®zDÖ*ÿ\Õîvȶ¹×zÕ<Þ$¥¸Š„ ÷³¢2Z¾®+õ9¶µj ryWhjÁêŸ?—!ªþš¾»­õ âÈ· ã‘ø±#&6opלà®ÑCëp=„8û¼Nº‚ëµµó£§Ô/Ÿzr?hñí^LL²Së-ëüGóñÇ”?S"ò)˜6BൎC]#ÖCu˜)Ø:ÐCú@sŸ®k›È:wy-}øL¿cÍý`ðµ êdç‘ysK§äªvÂ+Ûô=ö'^v)ûóï½Q¿Á}:ó6Õ±@ýÇl\b1 žñíVø¾Úñ$wãò×£€Ê´¾ez%Y¯©¯>DaÐå€Kªþ<9”9šåÍ,5æãLãæb s |¯Ç?+NËþfª®¬¸«:®~xì^Etéîj/ØÜ]\qtË:‘ª—;übp«&d?¹Èª÷ ;÷Q«¤7±¬‚ð/pÍã±!›âÈICþ®lÀé³iÑ7)—·§¤'± 0Kæ[¿óX17¯±ÝêWu“3®‡\¶Á-G¿©úX´'{·@i§9Š—óRòŽ ¾7üÞ÷v³Ôu°«üXÿ’Œ [ÀLB§ÝÖ+B6Eyf×]›èÔòèt›z\)íè§u-J/ÿŸ(€ø{JMNÏ6g¶;oZ* 8ˆ6{†„PÚ“_\G¬ªs<ΨÚÔëÔ†¸\5ÇaU¹/˨áÃ5ñmØãôǽ‘‡²M?3÷nAÖ‰;è$g-%T«Âß!’øU’ÔЊ\Ë!‹!YiÀÏ6­Y0VÒ’(Û±CQ.èrå‚ÀÆÜ¿±r /W@3ÕàÝ/"Á ÆÊë b£T.:Tã}o¼ûå]ó>Þµ6Õi­q¿o{”¨ËŒ ¬åÃ>0mCgHåg•Ÿ«æ5#žÊã—²jA ‚ABXz˜RÐ,Æ»_VWW©[6±DX •ŒX¨½>4•ƒ-x-M'¸÷¢K/LËrf?ü9à¨"îMÏ’µ‚.çZ$ßyñc@cDR…sˆp#v^nÏJlEâþ­n•¾¤€‡~æõÂ\Õ{•EKÎóðcÁ˜|^h×Ö³G(LíAØ j[+þÁ168jɲBW_!Ï =vÌ]¿C‰™$ÔBÚò´M¬=’&Iß”Z).¿¹<ö{îf¼sNo·³é÷8©™wgë9Hûå´±‚úfìõo;û× »f› 4é#˜] …A÷yÙúmðõò´/ø1O5¯u(vw}WÜ^¥¢gÉ陎*Õ#ˆãr¦vÓÁLEE±¿LàGˆLhO+­{¹§€.q‡îègYìSÐçˆÂgš;Oq7aKñMƾ™”‹c~¿ƒ˜¤Ð6æA˰àOm<¸©Ä·ÀãÕJ‡BþZã–v‰¶;h)Ʀ¤4'cò åHfX`#™³\ÖÏà !¦¹½[énàxWÈÓ5؆°ÿn×1\6sgZ}“,Î-~~œâFCÿ9ʱš$.g«š]c }¢+Ò ðÙ¿_{ªL</† èj€Îõ{× ãÑUŠJô·ü q¯`6<~0p;Œc›á¯÷ å¯ý”¬ªÂFÏ\üCp½±®aè â$Š#H2ýJ[0Ѝ¾¼®›ö\ûêEœ™æ»2}¥#SÄIzðîýA¹2ô3zd“ ûWƒ†ù;|³Xᘨjûc}í“…'…'Ç…'¿ž|Úü«Oƒ“sÍü¼kÚþÜüÿÌüÿ¥ùÿÏæÿÿ0ÿÿXb†0ľёl–$n·s·é˜o†º…9Û-<É ON O® OÞ,0÷s™ŸáD²›„&°‚w§ÍcR:?…Ü5¡&2)G…ÁŒ6ç™ôýV8H]Gž-VÔY*D¡˜é©øQƒ|‘MÚÓΈµ æû=7†Chþ…Ú¾RV*Þ{ÖuAaüØfÍIJ”ʼn¨ýDÃO6]â’»íØ’46GŽÉU™±uÂýU¤Y‹Ò!Ú+tŠ€Ù±Œ¶Û‚âþα™Hü0Æ’0š‘f‡ ð—rt =ˆëü8twN¤Ý ™7â÷0Þ°úÑ,gë v: ×t·«Ê÷Ô—P‡`K‡RN¾ë—2‹Œ²H\¶ÏÜñw{?B-V_ðÑb~d¸ô JŒ. çî£Vvy:(tU*&aö½<ëaPX[” ~%*»í<-82pdŽýGæøøñÓE¹7úw¢“èÎLãë4Âñ使û¥{ƒºî©¤üj¼ÉÔÔô…E%Ç­B]%}ÐÏl”)âȇ Á´Á¨Áû>^Gb ¢áÍ•žÔ#w~zêÛ&§†´Ôj7%žÏˆzñ§úwm˜7ÆæFZóÚüÓû‹Ó[ÞÃÐsiý)Ñ®×즤&Ö‚“—x¾m³·¢ÞŽª4¡A'ÍVû¸i–çdïð îWKQzÜ>#çòèfBxZd»sˈ€@z–3ÒïŸVo~®ˆ®ôÅ‚>Ÿ[Ž#›á½E~iÑF…)¥ÕŒ„÷ttÜÐ %%Ñ›„$wçà‰Ë­²@©f¸ôM…;¢ôªê ç‰US¹¯íp‚Óûv¶&]3NïOjN´†²ýüw2ˆ0¾qW5ùé,fÝ»ŠÐ´¨ŽpwðÖ)F­B‰*©gk†ú!¿ªoÁ:A5šƒ3³Ÿ%”Ń–ƒ7lClÚA«<ÃX1’¶ [Ý=Üßo+w‹Òö¨äì¶æõÉ” J—$jò+L˜’½Ë¦Küz¨GE3=öG Ñ·ñ î¼jîüÜþå´qÐÚ{±IPƒ†ÁT<³Q(p›=ðÌ–ÑT?»ioÞŽ†É;ëÏAýò‹¶Ï—ÌZ‘·¢92x[úvR‹XL4G#w©öÍš‹'³‰»žF Øóíp‰ºqÔ„ØÜÑžñƒ-ÕKµQN/J”¶dѬþjþ¢>X[è@¯¦•æ ReE »³íC:xÚbSsÜ“L´ Ê%¨"_÷£Ú;oœ9¾SO=±.„Ò”q¢•…qièªÔP²æô06Îi:¸gY÷›QÓC^(b;Å d6xq£a²—0e*ÇðfÆ+Kuûò!yO°ÌmZØ9|ýz¯UC®M©FTí‡%O@—KG#‚à…M¼¸Ë)%—»Ĺ cØ:ñè6G¶'áʈå ‡ë® Ì4R®&ßöò"JÕƒõT°Ç²n.¥[Ÿ¾Þ û¬‘ÏÍ£••Z2¢|Ñ£·kï-s¤¡tá'ðàY·I®QƉ•8­ ;$.åðÉŒÿµx낇ßðn?d%ÙÕ“GåëÓëgÙ²V±žq&mÃIz‘9¿j2À‘‹X¯ã‘N°þi‘Î9—Ý.’Ø8ñ3³J¶øâÛÐÎ‹É „Ä<¿°-ìÐY†™7/‡Ÿ\|Aœqˆ8ãEW¢²£ìÆhÃö²šÅuº[ÌwÂŒ2*;5yÖ-{bèäqÓ]³ÒИ½Hd©RâFÅí÷ÌqßÃôÂ,h~3˜¤×ÉÛ·›?n¾r„ùýüÞ³ÖWÂ"X²i\À{ Ë.1T,>1ÛÂ8ÎOzý¾!ed}±¦]ÜY] Llj€§ß³2†ƒÞ Ós©ŒÒàÄŠšÂ›äÝYõ§íwW5’Ì?â_œ’µ÷)ë߬&'òU3³äm*ã“: ®ŽAבÄ&(Ë%ú¹kt_Áú¤-ôFì铪è–OƃÎå¨ÝyR£à-Huð²ý¦¹wÌ)„"¼ž<¶é–•ü³@̓]¯´0Þ¸¯IÓNÑf)¢_)ýÈþááÏWÍF &Âm›zÞ|µw Ú r€X‘À`ß 1³rÉšø /ÙÐA¶/S±Eþ«W°[m{èëƒjP ¥EÇ H"“ab>­!Ђ¦vãY›é“¢¡<'wmþdy‹{µuÇ)÷ZQz¦ÓSëÕ.ý†¾V)¦ÒÖž+€.B˜(15æ ’AqЙLÏÏ] <'B-ø¿!C1}|¿Z0CB@hAO6u}õç–ã©— ÿ݇–á°@&¼E_ëºs¸xPˆä7¯G ü0ÁPÓ$‡ôñyÝ&_õÅ,öÛ,O]}ãâýþ‘Îz}ƒtÖëô‚YwP³M6æsßa~ødÿÅBwc)v‡PŠéB^+ÐM‡Y²¶ìÎøÏéåˆÌ˜QÜå«bÜ»ÿ‚÷/G‰êŠ-ìlo3ˆµgž rÛ©x{¸I`.&Lœ¸d º}ñâøðµÍˆ¥†¹Y®åðîù¤ù|gwoÇìÍO=s‰“T§ÍŒî9#eàÀÉ þXYÔ'ñ@yJ±ø`Yÿ*Øó]Ì뀻~cH§èQz¹ÆÊ?H4ð|©È1¢7èô§]ò*zgâ·ØmË0†é묯 úìS—É é8+—B6ÜJÞ¾»ÞY_ywÝ|Šà¾é$C7LÓÂ[Ó¹÷t975ó˜¬Úº¾¦`1‡Ý=›zÄŸ¿,ˆHÈåp&x:až+²×4Ö 'uv>¢Íý)÷0©'L‘ ¶bS4ÄU-}ï,¯ÜJ6/³ÉL°v(‡œ ËËÑèË4«ìô0Ä#¦^´a6höc5ŒN"'ÂëbJä ƸŸ!nø|hYw‚'g8•I˜‡×åoS‡?È’¤¨B!ƒ’{§Òp™w’jR—d\à%ãe$Ô…¼Ì?Ô)/·¶B¢ˆfzXðvϰ¼ÆA oàFL…Z£’Z2ç»f`AÐø·úÛß×o®€‡›0Ê Ù¥vÙ Q?·ôGä5—ýê¤}ÄÅÙ9l¿OªKa¿OifÄ]{‰tж¤@ óY77óhõ1–x´úÄt=\îàºxF¡yjµUޝñ‹Î ¿ S¾ [~Ƽà.FuI7\Œ2Æì3X‚óêi2êq…’(˜íÝ©·-õŽ ä¨‰Êïòùï¢ho"2”Í—× Œ”üIþ…pm{Ö½õz©WT`ª(2‰ «Îy‚þŶ)P‘P`Æ"5EǢ bRFy=®bÛÏ;]FtK…ø (ò£µÛä²õbõè¿s¹lKÓA_?]ºn›[‹U,Jâ²Æ¶­;¯µ[cÛVéZ»é<6‰¼ XZã“MMHŠ…[m? øì½Oùm·Ín/'ã ÞŸ³ÆÓÜ!ŒI\¶Y^6XÇEo²q‡h_ɽܿ ­¯?¸Ý”X¸Äï•$‘•÷ËNO–æY=¤g®ˆ¬£@+–WÖ—Ùi¶ËçÌzOA!§kÃBlÚj;Tó]¹`ËÄEä[W8&ãòáôoý7aìšä“CZ®CÁ';{{mºX¤Xî<~m¬«ºzX<2|¡¹O(‰ e=pñïFÙxäZ#XÄ‘ùꀇ%^‘E0'½É“¦¡æ¬ËÍ׫bìœÔ%Ù£(§l˜#…“á~nX_…Ì Ì”]AãÂ7hKGÏ8 Mo²g+èûùœ3GbÛ{÷Š·&XD+¤*cžxm`Q¼ÑVEŸ0+çDX7ý«*òáÁmô!™ŠEèAò¹e .² 郊VÔwÁ˜„q“Äw¾Üœ‰àµÛØàTü®³€ªîî½ÜkÅ¿™ø cŽ©<ý^ýFm•{ç\43ïnw¾Ý¸§Z|¿Ö£Ež[¼fß«£+&øê³ mNèþ;ßlSÕ·…jq¨Æ¨¶5·±Bôʯ7G¥ãrMÍwÅè^ñè>Ô¾¦——*]’œ0è^ò‹GÞÌȯfÛu‘ØýA‘g To4_Šó+>˜mŽóäÁÂ(­¯—pžÖv8_]ð‘b J%Õf ßUà¡›Å,Ùœ~BqÿGÔÍÌc2Åøã æô³(Z‹ÔžoZøÖŸŠHø.å+Â:t|Ô{ûv]µÃÏø—þéˆ ¢á'ùÊ,Çåð‰y¿ÜÏÒóåmœ»ÅÛÉÅWwÁÉAüÏ¢ÊG‰Ø$ÑÆL¿/Ü,z–ïÒvfOo«×½‘ìåähC³ÌÊœaB çCµ³òÖT¹è .#³U‚öÿiØÎå¯Ô[Îl1EËöÚÐÀ“­ÿÛEȯ•ͨ…ÌðeXXÊ[æ¶(ìË&uó yböÚÞkÃd@~œrùre…âŽ0ÛÁ²€šŽu‰C Ð:ÂV€À€IÌép´k?P“b,M…|‹éÐ8_“ ªÒö4ø‡kºüÏåz"9ðCGÛçýô"¨}ž]ióp5ëá¹âT|ýÓÍ+0½hª~ÿK& ¸¢Ò³2SÄ•9žl•ºD ÛÚ ˆ™@;ÃKsX$Ù%òÿ”ÒAouºœ­dhc{b¸J¡§‹Eg\ i\Fá.yÿ‚ß—k®@(# >fWøhƒï –캀å*KXêOEœlÇ)F…Ýò&Ãê¼E˜ct-êaÔç@­áê×þÿëLÀðW³ž<}Áè‡}¨û,LÕcäJmna„c¢Õ­‘ÚƒÍÀ?w1ÌÙŸè&˜k¥ƒŸ0ý†7Îï¼SPä )ë ä TÑá")|AáŠk2ô7¸~l™þ| ”_L;— ð’œ³ 6Ñ ­U5#8£‹ÌÁ&jZ«õAÀèsÂŒÖJ{bWBûyáòÂúfó„ˆMBìvÑlÿð yohÿ¯°‘èVøñ6 „çš¿k[+ÈêÚ¯ä;r,™EL¼Ƹ]ÿH¢SÆ2eưˆYŽYü‚#wOw𳓽“610þçbN2ú½G³£Á–ê,°ôJ¤µ<8l‰ «oÂ÷~Š0Ÿ›±¤»…ZYy€*5*c.爤šŸ>4ÕÉp´‚®›5˽£ÅÚúgÄVWˤµô%t4Èû«´–V1¶8SÝë ßÊ­¦9 S¢õJ)=ϳ7vé)š·©¿vKßbCÏÞÎ_BU¼Œ¥l¿õ†·z¨ÊŸåÐ6{(§6WГc㪩pÿ¾¿D[‘e×®x?Ry­0þã^Yëâ`¶eöž¹{Ì¥“ ’›lé1bo±_æôèoý¶ß[Ülû…=ðBEp؉ÊôŒ+»2<_¡]&¶„晋Öp®‘„†·¹Ñ¢—Ñw·gËwÆáÏE­[R‰[d@¿ Iññ¤ßpàXÚ‡¨ß›¤?Lñ“(eÁ£#h»³´“pñ(rõÑÕš©â+ä rº¨»éôÈQÛW›(ŠæH#&A°2cl"¢„@ìµeÛ‘4!Ëo—‰A‘ ÝÔ©l<“Hq'še¡Ãêîæ)ø‹rª÷Z©Lv†cÀÒÆ‹ ™³G]rEùÖo1‚­ÛwÊ¿œiÛò8§½>’¦@À#ÙVçèÚZ‡Ç kÍno·%"»† =ç´'Á¾w/ï¼1ãjÃèàñv\xäo=ò•÷¢±cª”ÎP݇úí5·åHÄa{®Б••W[2a)fÐ1Hõˆtˆ”sJ³ði¦pîňZû‚ÚçÔ«L‡`-ÍLÜöÒ£­ D)©ˆOPb–úà[ ·`*n±8´²EÎqŽÇã…Ûw2Ãa‹c 8Ü65LJy¸ Å,!A³$ìÈÍæ2hú¬7Hd)$:ʔܾ%w‚9W<µÛ¯æLíí4öÛ˜¨Ò{…ä!¦;sE¯ÍwOÀãÕ,ª¹J8Bñc„‰n#hFÝywÖw޵(á^{z;Âýÿ662M!¾ nž˜FZ}0Z5ð€s#ù»™%e¶¡'›ñÏK/âÿέàñkŸœ>_¸º=?~p f7¡KÿvxüíTÂñ-J¹¦!áró&S[ˆœ$Kß-!Eö „[*–¤Ú[ÍVISuz·ç}WšDÒ.âk·æ§§Mwqþ_ÚôßH›ô±<8lýÛåiëä?ÖŸàÁüŠ#)žP3Y‰¿„qhííï6k‘—YM;1J€ò[)SÄ ®-5’qoÔÏV[gâÂ6¤Ò,[m§ìDErûõ¸o¢`?Iì©#æùi<¹Að…®ÿÑ|•×ÕKQáì½’ê¬×…hü•çß¿ó¾Øó¹Þ˜Ýo¡Z˜ÏèI{R+]÷á.Øþ/áÂŒ’+Ë6ŠÐ]«¾ä¿Qò¿£*µØÕ´ˆ±Å©™WZÆÙ&0šU0î³Yn8îàDR0b3ß* #ü”¥b_ÎÄèmåx:F¿ßwÎÀX¼ƒuwñª•Яh GéímÓ8†#þæéiƒ¹ß¿AZGjÒÉ ”ÔÏŽ 1øÖ6U*•®öŽÄ 'ôëìá¦ïÆüŠHà2Eb°ƒª¦è'ÙNŠåëU>„3MMÜêäô»3L“–v>’פ@¿¶ÇÑ.}Œvé£ÅåÅ”(ìY8kÛ©:¹“aHÔ»‹¿¬‹¿è.Z ôãR.Öh «=Ö$ö¡æ¦ŒzóátÉ/ æ >· 68›†E!)[ÙB~$ïéoúiÀýPÊÅZ:°]Ìdç€vvÃæ!rõÅ8ÿPΞø*:¢ѧ¿FŸ~ÒOoŸÁ¦˜$^ÔÖ¹»¹É ž,dš`3ÀÙ-ð.œsµŒ t£ƒÛ>Í£OO¢O¯¢Oßè§ß*cü²6•ÎpóšIãäuþ(:¤ùéœàÇ¿øâiàgÁÔNðóMÓ;ÁOÙ¡2†ËDáÚLzi?»+®©€ódZOö9ûÐþÄkî®v½§AZ¡¦ý dÿ{ÝÀµéȬ”¿ð^ÍXzFÄïS¤pÒÏ&$ÀÈLðµó>LJxJbUw'M@2µ®¤²ˆ]y´IãuÚNÌ‚´÷§Hê=êM «še#˜ïîÑ 4–lŽ‚ÕðkstÁÏ]¨ÜruQÿÿ#`KÓrÁ·y=èkøY /üàÝØ§€­"Ö{TBájû;‡¿¢›ÄSÿª’Ä~úŒÀ߆^7†Óy¾ß¬zô‹ Ve¿õêøðôå«ÙѦA7ÊY#JÈþ}úGôéËèÓŸ£OwîÄ&¸Ç¾R¡£—ܬ+‰ŒnB˜` 3+µ„K¾dæ>ïŒ{g :ÕÁFÃsKéjÞ¶¤Ù°88AŒ.bd†˜t‘ò)üÁõ—Æ*‘ 'CHú–j7›d‰M^[· …Ú\Âk‘ña~`UÃa%Eà­O1S€£;½qgzi†Hu؇<Ζ2’´£ð~rÄÛ øBõîhH΀0]ˆwa[Jûlè{Ú·µ4¹4Ô<ý˜ýÅpKßQ)D<*¢9{343=·Þ¡Òaa$8ÓWŽ+ÿ_„¡ÿ»ÂCË•lwCh)|‚råŠ|:ÈX¯À§=gHy1kwå•åzˆsE¹¼»iwÜÓàdt:#ÊÁ‘Í.d͵DngªÉ:e]4õš”<s¬²;Rã¤v%XïàC3]¶=Ãì‚Ûsà(‡ÊI6#ö¬í5)ôÆì`³è üÜ*ÖÃÞb†¥[Æž¸·ÐÿXÎÇë/á6”_[ñÆf2Ø?yËÞ;æb /¶;¯À­v„¾¦Ã AÊ âa˜óA<.ÇW_—æi.?_Øÿ¬€ãäbp â!ÜÝé&èÅ¢å¶ý“…ߘÞð~Ù&pËÓ«dùmò6y¿ººê b¶Âå±X†@s(aðèßÙ_d5)f'Bg"ÄT²yÍŽ–ë•®¦ÂMb²¬ÃbÔÌ,ZÊÏße ¬Ÿ8ÞÓƒýC89ª†JÆaj‰ùŠäG²püÄh‘läHʽG&–Ÿ‡|t„’ŽíaÎŽx1Æå“ó‚ÓB8ôp°’N†—½LÖÇôC–*ÍgîÔËæ6@DoœÔäÞ§A­¼˜*0©b~ EÐ|3N†+26Чã…žŸÜý,êœF5F ú›Œˆ*vÛÓÖa›ùq1 LŒ²ñ‡)½oóõô‡;púû~ØGy,-ùìUžqe•¶THxèùÝ!lf¤ì”ÈÒÛ×ò$æS $…(½t–Êú»$6œQË\˜x&`ó\’Œ’ÍHA£.‰äRTrõT~4¤”ïÀ“ƒ·ëï¾îŒhß‚äöüRpþò%Ò¶¥9lÛ~ºi(«ÙϘ;”4y”óŽÊoÌ鸹ÌmÀɇ$üäùÍåÙÐȪq¢Ü(ÝwƽÑ$O*!yxÚÇf¹¼ƒñ<Ù•ÊŽ×í!R´— e(2nŒaLѬ¢m)«ÄCã1‡$;fn-èˆ$bl$› 2´QoÞï>quÃÎ+8_U;ˆC>`+ÈßvÞ›SŒ¿·ûêT-p©qÇÏ"áAjGeÍúvÆÔÜ ˜WÁ'³s´¯}Mjöð”ßîѵÇ©©Ï#æÒ>¤‡˜ø<õ›Æñ,ˆeÐv#~.Âî‚<¸pz=!)D¼qzɸD˜’Þýû³H0Ï2œW¨+ú¶÷~Ìph$Z©OƒºävA!Bæ>a¢Öðk÷“õ’9Á=°švT·\•F8†I°ù5î‚ÍæÑ†3ɇuŠ0'Bb[RÅÑ#$$Ÿ Ï×sÀ\%þ´ÑñÓÓ„9~©OmèC›ÚV¼€ûƒ þd‡:Ž/ž…¹[¥½aüõžw¢›nZ¨gwšò¥¹²óåÒªYzçl#ʯRˆBJ9G„1Šc‡Ñ¡—Ê’-a2Niéôu‡:Ð;±»LÖŒ˜Ý¿ÄtêNžÒtŸ>†W×V’@ôX¤8[¦À£—ξê8Ln†ûîL5fìK™0¡a-pv^ÈJJI§[‡¯÷<ë%v„Xt.ò÷j¡2 ñ¶ö~mb‘6g;ÝFû QÞÌÁá÷gñÍ1)4xÐ|ÙX¬_';žÃO!¹”™4½& î?ø ÍB»o•Ø=¸ôÞÏZÁ ¦àÖt‹ýôËH€,G‹õ5cþ‰NÌäE:6¯H°)Ê’Zμ¾êÔu]§ËõJËg:ÏÓ ]ö˜µA7«Ö¡Šsªj‹pb.³M{µê%o)§Lˆ¹Mß–zC T³—çSH…@‹^sáPòykïµÚǧ´ßÜøÂ]3sl¨ K -ÌP{Õš:îhHãË3’>Pe2@]ÖÕЦ¡Í°CÔ·.èW|=ùèêbs}Éfœ/iE/r\6Žœ[Øûto—tîNìÔJÑsm2µ¡o'à©dzƒœw¯†2Áí8ÎÈNÚÊ÷ïÛV 3fÖÏo Ïð$€—™ƒÎ ÿ’ϯÍQ+È…ã‡&Øw¤±3Ȥî¦ÍçŠè [³îC¯t—Vä®ÂAÐÝ ‰Ö͵™ŽF¹db›”ìRžQ…í-uÆh&³JªœÝ€ ÁÔz´µèE ¤`Ã^Zzp{ÈÄž™:t{Éi7¥ÿʼχär:t }—nÙ;dŒ«c¶uüêŽy£› ¾„Äu©&¬9ÛýáàB9]‚›èÜPOº½‹Þ„=äÌü›gFt°9u%íd=ù ®±Ý¡mFc³³QfX Ý+j˜@HÐëÕâ”Ó•n³†Ê®Ÿ,1åâ3ªŒ ùGÅÜfŸsœ¦©ÿ×”r7œÝPd5éóÞdˆÑÈÅñi(¥Qoû™Ÿô25#B³*:év@¶CÝ> i‘%w6øÍ_ëB¢;pŸ>s€Z¨™6‘f8-Lö‚œà ÄåÇì&ÙJý& 0¨}ä$©ÝÂÙ^¶¾q D·(¹üq66eÚí¶Ý®}™Ž?&êþ %ðbt&4%q#—2~ƒ©‚;œ;ž‡†Bkjöÿùy;Nµ7u0Ë®?ú9ÞJ±ÎûDò~À–T"úmí§dízmmmÝümº‚™‡Ã‡¬ŽÓRM`[mîØÝ,IØ]Ž :ax™‹É‡Ø à‹Á–W|ç ðÙ©"zÄè`H\!R®%Ç£”n蹓\â{#óÄN"6ØkÒ~P9Lì±e°Ý^îùCØâ_ÜpÓãát”K qZ¡¹Â†ª?ý-ö&ÙeîR™"žìÂ{‚€ršÒHS2r/!êvEù 鎩þ´jÅ£Ÿ>#I¢óíö{N´>Yb ö’U-£ù’Ï@IŸõ‡æ:æÀT˜®aÛ^ÒÙ²Ýçaþ‡§ci-4Ö’ON™^žõ.¦ Ô2…ÅœkcA~Z±ýW º´ì€¼*5¿¹%±½1èÈröýȧgfULÿ€xƒŸ7¯Ü«æ]ÎÝa&ÇÜ0ß-±knã×Â& å¡ãH`:(°ÛÖïØÏybønól1VÙXï0ö踹sz|.+Ï'?Œ-»‘î“‚Í̽²¯8lDG‚‚YУ€ýo`G¡ª¢j9Sd¸k2u¾¦‡×‘×®Ê5ÖÑ‚Ý?ŪA7:V7Ó=¾ä×xÍBFë31CC¢Z¼À&˜ÑÙœœ•“?3Ö‰ÍíYÞNþOÕÐþL¾>ÝoíÁYúõó‹g‡J¬1û°ÕØßÿì§—úË6¥¹¯ëH·ˆºHçൎ÷vZ^=µ÷ 0$³r´Ï‚ž+ÕˆÎרÞBD·½ˆn³„"çB‹×¼\…Êg™…[ÚfžÞÝ6ãv>nl¿°>‘׳Ö,4!Ü§ÞÆ Ú“«¡ Þ9iÅC/§ËE˜7¡iq2õ–˜7Ÿ…«h7¬Q¬cöˆÌ%ø:Ñöó“ÂÔGqÊÕ\…¿ÌëæÑm»Y-ös!.>§äÞù 0ñw™é“¿¼›­¯ï&Nè_ÞÑ7ßb>ß|ënúÏ=8‘íh¹ôŠá6Åqm"_ …«—¢ÿÜdU7ºbQvÂâwW”2Â/Ú;õ†S.L9FÜÒ¾‚‘.ï¤x‹¨|f æqˆíØ!SÎjrhÕšißôTîïkªkåSµ¹lhy£ê;gŒÖÛlA«*{õîÑÊF6ÓÑ@“)§z“¼h-µdùyÙ)5SÚïGrš:ÝáºÇ¢¬i믬×|í V:g$¶ÿVuwl Ž“´1S«î€#™Éé´¸¶²ø†P(­ÑçÏîPÓ RX²j¥Ý¸óÅÊ´Tñbבre–$î¿2÷Æ IP”/,ºŸiKic3ݘ{e1“ôÚ: îlî–?Ò„[Û'÷§£ÁþöLÀ˜r°ßA¬ÞOô¼ÎØaf œ‹vÅnQi_Aájþ³}²÷ò ªÈå éáX`Q §Ôh5]µ@;Û|a8É6pÁq…¨Ï3è`­8tÑ«Éxzd5ŠŠìDó¹/a¡·5m‚i¶ŸÿÎ=õú·íß»2ß) ›¾¡iºÞ8ç†IÜà äæðËv:4û «×üå´±Rº(!”àz°ep_Ô÷f»OÆéuÁ§RAë]¹Oe)­øíãæ 0Œ© MGLß“"GFyñâ¤ÙªJKPG)­?š -ÑfÕ|ò„cÙ ̘9îŠ)ú•Ò‹MÜó‘¾q#ßgþ]S>$G¾€gj4û§W"„ ˆ&C ±EžD÷\ĺV §6ëÖ4kÖ¶Q}2§+ÛûJ`¥$C3„Nåè ”|꥔ZI çzÆÅF]lØ%j«—ÏaˆmßwªaYp¼œ‰øÁ¹_¼¹›ÍIy§¶Ü²\ºTOÞ“Š[ŠujYÞ³0gk›êuýdžþãþãáf¡™GúýcýÇú'ú§ÒLÑü®W‘ #ΑOµ«Úu@ßÚOÉÊúfµ7˜Ô<Ès•™I¹Æ§dÑÅ ÂçUCX†:ú©®{ôµ§)kœªziWzœi…yž›M¿†7šÅ'¯›ÎpÚ:½í5×­’sËo½3+³WJÔù²5aU,µž¥Ç”æØj¼OöþѬáYZI›RqG¡™AøÄ¾#Žæ‡øæo캾·Ç/O_›C,×í(;p¥tݦAñ7e8";náH†oëºÎÝòÖ½KʦZÿuw¶º(¬¡€3_nö5Öï.f<íèV(!º|çFP ”Zsµn…+4B–ÿ"Fí¾) ½uÈè—pJî”fx¾Üãq9[ÕÀ0ä‚—xÈíŒMW› ¿m\3®¡çTœ®í¤ c¢®¼m)[²-Sĺ< 4u\8 =À5µ9Lm-%웺ˆøaªÐƾL¸­dkv-ª‡QË=3}KäEmùÂöº󹔘åèwiJÈ]'Õûä±ÀÌLZ ûñÀ,ò¦h(Þ&€3è!LPHwØ ¦ޝ›,4V@*5Kð0¨åÜxôÈѲâ|Çó7M*lû)d?@±"œÍ„曂6rŠ8¾¡|z2}†$ô³PÎ*²$öI¢`¨ÂÞ´ÀºÁÕ°Eu罎9ÕýÞeÑÍsï?SK•¬¿ $ƒÈMáø\Ù94Q[a‰£Öq¢C¿¼¤¡®¿ž‡œפ|qô ÊzØÆZyímÒMÎá.gfS³\©t7½FÀ—×5µ~ëG¾PwQ}a^輡›_>ê^á0hÖ6˜®^n•©ûÛÉÆ9HˆOËà|X ºÝÚšµ2!‹0c ±†WÚ]²Ñ¸­aBP BÍíp>\ö)œsVmä ñÀ@ƨ6yÉ9Žý”my_â[vm–QÁ“{ÉúZrßÚWWXµV˜-ìÝðas…ýûà.0á³÷ó ¾£žC @Œ‹3 y©»Š¥*Ò*ôLm6 ynÇk'““ÉáñÈQ<9“Ydä‡2°d³–Úž 8é,Q1¼Øút)…’ í# gqNo]B[¤+s•k…6Þë“eÍ$ÁëäÔñ)ˆì"…šSFÖû@4eŽ’U%-‘RA[O ¾*Úߟƒk~lýBðËG…BØY–aôS­ÎÒb}g55… yZ>^!Ö+:üˆæ}g›\Mޤ@íg¸¸Ç¨—ãümùÐé\•¸è ›„¶‰W Aè9'OÔø}èÓ t€˜ÖmµÊ4©4«2©Ê‘;Þ³õ:c×,§7› û¢•Æ$YVÿ†mà[‚þhÕ£áà*w±Øq«d(­A‡Í_Ëð×r­é ìL …O¦˜‰3ìAˆ»™ñâé%'+éÚPZ¨PÅÓe˜†~:ƨ6\GÏÞCKU3 cµ|E5‡C£·Éy– ¢5¾"š,˜äÞ±Š[¸ââ·WQQ-?f° ¶Bš¦rLåÉO0å÷8•ÙêpCÕyj«)oP?À(¨ `3 ãÔäCQk½ø ú `XV©Û¤ú"uÏ:xF·…™ªUàhÍQ0ìÈ•r‹H:êEPaw&„è @°žZó5ÎFìjÖ`…SY×:¡î‡õw™ŽÎ‘ªGUßcL&ÔR3TØÌôÃð@Úím“ÆÏ€G/ ?<Øec—¸&öÕÑÔÌdÚF‡‰x ô=籨²KqöÔ~u±©†",´!‡oﯼ'][] g­Ôúäk/3‚¡PñfÚdXªŠ,†žHÔôñE¥êõò¤–îñlvÑ--óçsäž^Æ<Û¸›ØëT¯È Úe7há^I²@qhtïÂçv†ÂÍàå`‘t24¤ÇfßüÚD;ÚÛgï·«—ÁÞ‰#Ç›]/'Ä-Üi¤½hówêÉ5ÉçÖïƒÞߎç¶A§™/§èv™þ×pyÜÈc}ÄAûÁß§s¼¾Jö/vÅS‡Ì a„õ:l5Á©`¤–ÀäFw¢á˜ðÂ%»¼·ÍX·1RK[aã JP¾"žaèêƒÝ­´Ž‹ª+ž†"ãwYmž:l±ì[å~ÉŠ!SœR§>š…Ë_S«²ÔÎs²»‡¥!¹¦³TyÖŸ3“‘¸Æy“z %ÚífNPéÌ.@¤¿Jâ¾åî»ÕŒÍ߆³ï&s³)ÿE6û=nÜ9E`âJIì‘(#0 z° ˆTä¼vY´@6–)P*L+]M@7«rd°8¶`jئùø©z¼¾Q ]ïâñÖVžÙt‚QÖ§ÆÊ7umCÔ‚cNzèÜÍXŒŽ9 [›'e‡yÆýBQP¡„å Áä½¶c ×1 a fa&\¥y{ÜN/,žƒˆhC¡Ë¯‘ã2|—‘ h}Ê6~ÑM¦pfô.v5ÄjŠÜRò›eòô¾¥‡w¼ñÀp½jÎnØ•ó[ü6³æ±þÀõùÁÌO,£ŠÀ³\į¬G,×Űeç¡Ëj¶Â ¤:*Â`{bÁ àû>ùþŒ=gù¨ê.¯ÏØãU+Ç#¨Yž,‘úd iëÕÑÓmÉr¹x–÷{3B|Ró–!jMxì49,¨pûH­£â«êŒ¡_훆 íú×t4†è¨žc»³õ®»í Þ>ZQn˼6ÍQ=yC¸µ˜TQ¯æü;k^'_ôVw¾Ð ,ƒq ”So-fœ-v´zPæ4%EùR¶öSðI½WQú“„Ã$Û×猾Õffe%«.E‘YØ*³ÖÆ‹(ѽ½ïêŒp¿0ïx¶@"6R7n®ó_d2!ou’Œ«D¸¢æ%¸ –S–sZ²ZLº9–ïŠÛ¬¶ˆ/è팋Ê\ Šˆbr|)y‡µuYÔ:Äy¼œBì¯6m, -ñbŒj愘pšŸ¨ÅÄ)k ×¶hkuʗͤôæÙæ ©Þ£´›îÐ,˜$!† õæ ¹/©uª¦ÒÁ*9Øz“ÓÄF ÒÝ-0F›~&:¤YiT”O8k9 Ž¥ÁÙ,ëð ½m— =úŠ^C¦¡Æë†UÞJï#9w˜îÁ-û~pغEß#[ê,ûÐÌÚSiõ£gÚâÿ0±iHÇq›„àä~¬º¥è·>PQ]4«’BºC‚¢ª"ß0(,ðÌÂVSÿ—‹–ïŽj zéHIÇMé† Q¨ º¼²ÙÂ…x ŒìQ réCP 5g›|‚Í/”c¿º¨Íj·ù’ßÝ5à ß̬\µÆŽò˜®ÿõ7ÿ_ó¿ÎßÜ'íBËPggde,˺þÍ28Ý&{Ó,‡Tp®Vö¸ñ,MÀ݇ÆÓ¯ÊÑôU8¶áKxÄ]D8ð=U¢.Dú={Ò:B—´ŸžÇ2Þ*á¿d°'6)ÞËW¦¸Lü‹È:Ô`QÔ´R’Œÿ‘`µ­`Çí©;’ÿò³å8#àÔe›ÅÊE•¾åʸFU¯<¼­Âk!uÁV³¯rF$µ"ìNÀí‘› ø(˜Ý»ê9ª¢åÃ*Li£qï2ߨDLó:ièär»ì襢 ÎŠ>SŒgB¿cô2O’“0I4aB'7>o£ÑY†»ÃÐ…Sd[:ð‡ó]&Õ$œ#Ê8¾OyïL#”vÌý|9ì¢& ئ‰lŒé !êµûÉÞë×EA÷‰ŒªŸhÃ'Ü8"/=`é²vk^Ì‹äÌ‚XMÒ.K.œîtÔ‡]nk/ôßbË }¦¬YS¾HHOÂp$)ûæX1¼„Ñ!Ô©¬»åòñCB(QVxp½Ä•,EaMĈÔÙ£Ì~‹³ö8› Ÿ<´Ë˜kÖpuS› R˜Oe@Ì¥ÃtSau\ˆ¨Â^Š0]2-€ÂN\!á&öÏN -ïm^p¢ òÖ0Øl( ò†Yû"›´áy:’CÑÒŠ¢Ò¼ SWöR—À®-Q˜)-8f¨d5M^hU«Ï”(Ýñàbåk¿ÿž{mnn³¬»L£^6[íW“WÕÁE»J+íX.¨;uO|(M°¦y ÚଖJÒ&òQc7äÖݲÂ.™—TmLzthK¢J¿ ÞºäÍæ–Ä"Cê‡}åZÀ‚AÐâoo{´1¢˜Æ¨Þ0¸NGLá>ÓÄÿðÁ–÷z†½^ý ƽeFˆÀôjA¹N½ñz­÷.ŠIðƒ©ÿÆÙó& ¦†›Éãí@ ÿ° b€YÉy)ˆn[ÄïËÁ:q×e¿m¯pƒ{=¤;¯;ÍÜ#`Þp£‰ï^îœkq˜œÉÀÈmÙ5 ^y¦l¬ v|KQœÕ§—Gv!Û7ð_sDgìL¯~$v)Ì$¿Yéb±ægoç›§¯ï=œ»{DÜUˆLgˆ¨­‘=ðFÅ[|¥3~‘›Ë·´Q‚«?â6È®˜(­ŸÜÓŸªHrjcb¼íà¼u®Wž]f—IõîÒNU>tÇ6<¯ª†jõճˡaS _”þ˜îã,·.¶úë ­¾ýú1º±_«.½°óe“wtWZû™G-÷÷NZtg•ÏÛù8˪ÕOÃ^×îóº¦À>̤,*Þ̯noÔmœ‹°"—›ksÂ(‹ãëb:}Ðó t½Øü‚(»^&ËÕŸÞ®®®¾¯-¯’l+¼¹Ã#Cb‰Âž ZI‰ šÂ=7w¨m(Þ26µL]'(æÄA#ZÓÑÞ'C‹mk …ú,ƒ˜§át<#ªãä—ÓÆq³ýõ1-‹°_m,kSTÒv²³ß89i¿>Üm¶šÇû ¹±Óm^ß+še^¾¶e \‘B’”̓ٓì¼÷UŒ™*åa:ÑÀd)Ÿ£¥[é,òBž¶FØܤlH‘dH= ) i21ŸV`«qé¥A¢)ôT‹ ã!®¯Ó ;ÍÂWCÝ÷.¡‘@ó§¢¾:#–—ÇQ»$ZòÚߎ§²kŒÿ–›Œ÷yi® HÒ·UºFL+MÏ{—ÓËÈ’as <èþ£í¤)‘(ÊýS´#°ÝºŒP»½blLáO±î}Áp*õzÐŽ)Å£¼ûV 7GËûûäÿDõ¹µäsQ ,‹Eù.´ä©výöBì^Ðæîu_¸íÜg% q鎵Uè‰Ó”‡àOÁÒùþ¤3Z$cÿÉq9˜TéÁù2šÍÊÞìEôD#?ób|bEÇš'K1JÛNæ›J<Ë lâÀvRDÏþb÷¿¿Ã×jL&N—©¹,àÎŽG‹ûóòÂþuåñÁôm|6)û¹é“2lD3¾ØÀˇ-³ŽÑÀ®~ñ‰¥v™–@éˆÙ¤¸bÒØR÷`«®3ŒBM¢eT%¥l®ÎùùK—–“Ç{˜"0‡¡$‰A:ÁÜ™ RA:` V¼‚Ì­„û5©µ0o|*ãciâÇm¿ ˆš¼nû5ÀfNåÑäÁöÁ7/ªXàN/FVq®;ïAšºa n€—XMBçsЬú> ©¯c@¯ý«DÆé« œLA§ã´‡¬b¡;W¹3bƒU Ú9`íÈŸz]FAõóY6ÈÎ{è™22Ò÷ÆÅ8ÕÜ^(ƒÀ{Ýhí¼¢d–dÁƘw(Jßïîï7ŽißXÇ쯿9<ÞýF_ožì4Ž@½o~iŸñîU¦³Œá ¶Cm˜€tœ™™@¨(0Ûm¿/‘ÀMA2§±âœƒ$ Ät@ï­Ê8fÖ|zçðWtJiŸ´Ç-xÁf|b`µÕ)U·Aûôà¸Ù0\Çóýf‰}x„l±†ó‘v½êÎ ÄðÓ…#tüð‡SâkÈÂV%JÔyRA%‹߬„a¦éd o ÆÚ!OfâÜœØù4¯ÔÕÍ ¦_‚&n‹5˳Ÿ§ÏbÊv|–;7s[vì·KÅuã|³BþÊr•Ÿœ·ÌÂííQ çÉ¥Z…}¬Z_˾eu‘>ùÑõ^8¶ »¢Ü¼.qyèU«yÒª*ËqIár0½¼íOåSðà–ƒX ˜Ñ k8:ʯI½©rÛ:Ö©Èì"2hVƹ9·JbÀë8e·"ÌøqŒ•¿-€þ'á¼wI§í¼×ɧ&Yuˆâ!›tÐÞ 0y9ž;¹È+œ©­&½ÁyŸRnƒâˆ,˜œQ‰ H1ýq^Ù9+‚Ýd”yÛô p:ðÎÀ˜,#ùÐëYç—œ8çÝ™{·Eil°¹½N>ЭÕJÅ"ð‚Lã-ŠÄß‹ú^;F"Ù4 “챓 tµcþNHyn¢´F(¦Æ(ëV*ÇxBóÍø×ʶLV½!K0ØÓ÷*X­­ªµ¡RU¡ò‘“Æ•¹Î×*VpÐdI9ŠQ÷0ü²â8S” ˜Ij²ÆNä"þ|VöAÃé$¾SÝzK J˜í…‹v;yÙlUitëµ-«ºG´w?°/¹&¥ ÍÒ æµ·Xü}QÀ—>ÂUÞ~~xjäªãßýî›ñÌz}º3·vI‘ù“°8 ½|Ž‘Äü>˜V^øOvŠÏŽ#¥ŠÏP¢ôÁñØüºéW`…~Kjí s´qÏ0|?ÓYÞØÉÏ{Gÿhú-m˜ú®µ ÃØ'¶±;¼tÛº{„.ÓÜÛõû¶)ôK–y‚ÐÆT°‘5ÊØ‡uõî–Ê?ƒž€éRv¸b•RøŒk¥°gb§ÝQ¯s§w3ðúõ^ ÒýçGǧÍâc˜üâSÃ5¨§ÜEš»÷¦g o/‹_aì_,ßa^Ë™QrŠLÆÃ¾`œ Ð)YbçLQÖòkùøÙ¡›[¯oñçÎ|„u ¥bH~h º @"Þð\_AKYÑÊJ”,85)ë)á5õ¿Nä«Ñº8ø²ÝàWHdz†¡’Èö‡c«ª/æf…ydô}!Ta}ëd|Ãhçè8=%uCz‰ 7Ðe ] 9RH8‘æF25ÍÕ7 —mý´ù#¾5GÛ®bÛÙ+ İN²! •r©4Ñ™ŽÑ‘ Ï$¾Áß40« ©ÈfÜ´–íl+®’ëð{ŸÒq/=CŸdp:S=5}°)› #^Cb™Z˜Ðk£F“š(©m+¡å æË´ç}6RµŸ–}+«¯.^Ù~ÿ¬ãÏ´ž*™g& æðô¸²$iÈgT1¯A+â,$%à(gZÊeÁh]a!räú+‰Úßòƒº~u ‹G$Tr=“ÒNgz9í£7°Ø7Â]`¢ñg@ú–sn¼zrÏÛnèÎ5XH€Xî¯''¤*©“­›'ã&Pa*Ê~ËÙ J±ÆVÊKo¤-ÓËËÑä†a¾5›gMüý¨žÄÄ”¸|ôëÎI䞢u«_AúœÜ»Ç Ëßã“\Gè"ož ¾+èŽ_½øT6¸~%ÇÆoÆ;už6îÛäîôºÝ½¤¯´{¹^I;Ã4¹×9«kdò{vS‚XÓ£sA·àÉð#3Ûfmèù@ØÇ¦ í/¡Òµ/{ø¢nÿN¯—úŒ§G}t õ:o¤ŸcTì;©±¹SnÚÌ¢Ôåo³åYñÓ“›QS‚¿¨×ά¥vBèu‡á¹S»7ƒôЂû7^·”‰L;4Åû¡NtOu>«ã¯\NÀˆ¶yÚêÕe6Iëøßv:¾Ø*| ·S]‘ÚØw¹úxXÔk;jf3wÏ \Žø-«´"‰Rõ26ögG|Кø¯›õŠ9ZÙ ›'ïv³ŒéûVCŠ[ÛjÍîTi÷¡±‡Û|êY)‡?x —O›‹›ì½Ž{3^ÃäDÛA‰íL¿5[YÞoUPAšèlÂë⬒øöCÚm›+ ülNk#\ŠÿÊZ.f”!Xp‰w–P ö–øЈ„?µx)øU·—PòGH% “½=ÇŽáVMOUŒ^Ȉ˜^üäs-|@¸¬GZ¥Ê ÷—Ù|½¾öXpJÚ5¤]G‘™üòA‘N×ÔÜ%¼íœr¶ä­¹;2öÏÅéÜÒŒôeǥذAU !÷ŸNϘó2¿YÆKc›Â7ȹÕ{>†áÂTð{gÊî²…¦™¹rí3o•„¼|g+J.;gSÕzûä=*ðÌL¿Ì&áûÉ(ÜB'Í €\[]‘Yzò˜f鈷6ÄÀbn1Ž(ºÛÌÈÔPÎØSZa‘÷&ô}…ïq–.À0*¶Õ|ÓÆBJ(côÇÂ+^9 DÊèÄÓ¾MÏÞÿ¹öàë0ÞÕ åQˆ¤ 6 9`+p±C¥I2F?;Œº‰Ä†"$ò¡õY¦ƒBY‘ KÒCÄ @!á=°¿;íè3ŒÍ¡Zõ_«Å=õcb§ZÂò‘}â\ƒu–âç8”PŸqJŒÐíj:2ôQJèãD ù 'iŸ ßÊåØêhãÖklÇîy„y%ý”öúÈrÛv»ëÏ ÜÙQšñvÀ¸…ÏŸÑó×{²ýËióø÷˜/øá‹ýÃ7¸Ê§ÊØ?íù‚c\I¬dEõ‰œ´5Úÿ¡‹ll…<ƒ[ù)+ž3…úãz{{Nwµ÷®ª÷ ÃÙ-3wAÈÐbã‡ÖP‘¾¹ã²o06ÞÝvE*có 9!\¨…;÷_Î8ðª=óÏÒ›%Gc‚ŽLïÒ°º~D}Qaa;s $cÎíè  G«.‚¼xÇ<–J£iÌŽ€Üæ­ á '©ïrO&LK;’¥Bü1ûÙEŠiṞtU†x4ÐÇÞ€-ÍN½®Öê¾xŽqçi„üêÔÖ»ßyükFâng•6¡Rí¸ÙÇFµ¦rJ:½MM+]×Õ‚•©iôŸÈ²Eµ8ICÖï,/¬µ´]wYæ'úsäeÙ%’fŠÜ`p²FkûëøX²XwæÇex_Ë–E©bœ|†ÿÔ|wqQÜ 5ö[á#/¥ùff”8´ùî½eç§×‘V?V5µ6 8¢å6Ž({ÍÃê&)’=³å‚¦¾éÄ3z*8÷ wo}×aÁ• ;ˆ @þÊè/ñOÏA‰Ã[ÖIÏ€`B‡ÁÑaÏbÐ{àV·Y˽ãÓ×/ö›¿9ÿ‘‚Àúút¿µçû5ëKêøª¥JpwJDü)z)Ëãú¡C28}˜ž¾öYq‚˜ •x’(êÍŠßúüÿ„¾G¦òk#Ÿó¯ÑÐ,âZ“ àâÕ:À\-¯.©$VÒqsü ¤Pbsq’%Ò噟4Æ[RÄÄxW\ß’æGP•/ßì5òÕQÞÙž³Ü®(°ÔÙ.h¦¢g»dí̈€TæÎüÙ8øÎüë¯Û_rÒ›x7‘²g4{âË~foÚÍ×GFæÃPFš!ôÓÂ*‹“å÷¸‡@ :`€‹Ô\¥ê¨£DwÄ ×ƒzòö=™˜/²A6&T]Å0‘"á †I7버ÈÞ¡Hˆ†hZ¸ìå’|Ž‘/RÊB–‰Þd:8FïLÒ%—«÷Àï¹¶LûÜKÇÓÎÄÈ àëtF9.3SÇ0yé ‡ZuÌtòa8¦ŒüAÆJuµU†‹ãõÏ ÇõäÙ%ð5tX~ Ózžœ E(C§yyªÙ Kœ¯ô6eÞþó}bu絬ÌH:ÄóiÓM»Ý¢å+Jª1Ä÷IxתWÎ×uæ'uÕv´zͧ©Ôµ-KqCƒGu³ákÍ6f¿µzòÀ!mŠ»Ýƒäï~ ”tµ€åÿï$Q)¡80Û5‹ ›' 7èô§^ܽ%#†£Þxô„yêè´×ä·+g7fWõ&—éÈ ö’\S5d™|V:r’·¹D¼bê½QŸ3%×!6àa/GÀ†äÚ]² ô&…í?= aXNƒ§”/W˜R[£kac â‘OúrJç+á €—Óxœu&ýN!ÉÓK„Î4T+–ÖëY[[ÇpÕÖËzƒ"(…; lX ³•±üÎ0ø`„]}ŒV’—fbhåRXììÔs=Ó{„¾$·(ÈBúB„€:µgHþVε~眬Ä]eÝš°uë¬ñ‰¦ˆÍòµ³<ÿ¦܇œËãCeÆ1Y>Ømî4ONö^u!ì:@×ð™³c¡ê”„ 0t`§æBã+¼À 9 àè11–_÷`žð°Ü:¿Ägû›-F{…#i,V¨<Ð;á‘Ï”Í[ØcÚ‡d™ÀÖBF™-±®~™Šèc?&ƒ«}e‚ÅǤ2Å9pÛÉæ°±˜ ìOs*žÀ ÏÉ 5èàðwè$‡Ø´›_D“…°rºs„B¦©è¡_âÉ„øäØý=btî­ޱÈðtã}x™»4K²á­ ­Ã¯iËÆá,¤ua£¿ÿ§ ý‡†<Pxø;E~B¢ÐfÙ\(ö Õ¥ †–"ÓŽò”¼Æ—† î›}Ñg¾ˆ+•Ø$׉!Ã)¯ Î\ÀƒÃã×}<퓦‚Žd,MÝ&—aj”‡0S"ò, ô|4“Z€r#ÆÜËb¬/%ó·ìâ:£}z·Š› Øã—f”ܘ !Qžáf·u%”ØäGDk 1<Óå ¶ðáLŒXú1çv2îuØíCÇJ‹±ð3ZÇ{;­:#ßÓ.,ªŒL©ÕÊÌÐ 4þ[ŽM'gæ¶R¤ ’ÔšŽ?‚Ë×xÚŽÉTìâ-Ž4s8±’ŒtÉ1 Óœ Ì1/ŒŠg,·w 2õóçigP˜E—«À1ÁKû›£!ôÝ /œŽM¯ê oÿ¼wò ¾`.±Ï3×¢˜“ÁíZÞVˆéyº³ B~{¯Ú)ÍïÉ€Ói§ÛžÐJ´»Cà‘Û½6—8¥*´¹{Øj5w±ÙŸ’µd3y àA¢X„U÷hÆ ©L·"x-üSÜ_œ¤ò6ì˜d·M'òÚ[îÜëOæÏÍÚ–†5ô4ÙË0v=Yî-'™Îã€_…‰ŸíniøüRÄï±|–-eR½§ö`áÛwgaçß{>¦|Ý:+PRŽ«² éíYõ t6@þîÜ%Y Q¬"×}wÞ,;þìºÂat ìÆµ¤Ë—àaëUóc>¼EÚÄàãðùÿ°ºqø|©Õ~³·Ûz3ÿDÅ{…ô=ôNY£˜$<ÈÚ„LH­çø%¸ÇýK ¾Ø ĬҴ¢"D=¸ƒ?V` †8ãV˜‡ÎÆ„)rìÝçí ñ­ !íÔª=Výr:Ù¤ÒbØ ·Sœq’ßœjã`x•d—=Ò ŠvùïpñÙß~³¿±´qŽRqOLÑ3œÌRöÐb&ë‹*zà‡4CID¹n®ê:ºPÞ¦¹Yº#§Êq’aÊÏãk’Zß¿Õdw(éFl`í^þDLÍNoXÇ~¹Tˆš÷‡#ð0NÉ´*Â;ìh´ÔagåÍCޱë¶~æWÞÆ:àñS¬—xŽëb¡ãÎéÆóß[Í“*bƒØô2E÷À’ôõòðDU5RÑÆÞÁŽ3Ebß1þ Vü£ò:©,œ ýIañ>$üýë]+â,qÚZàÄߣñt Ljk¥÷ÄBè=~ã¶~l÷¡ Dl Gù[’ VØ­ÒF&Ï ø¸ lË‹ƒq´in,oòªqC'†s‰zä°H Ýà_˜+F~•›Ê»ÁüJõ$c-‘8™R­?^AŠFê{Ôw2Z`Ä»]ËíÁï…tˆ?kãD(î†P#´%‚GDŠÉØÍ ²%¦— ÁD&Ò11S$[$Ðeþ1úH[ÖêT.Bå\ÑœüÜë”ñ ‚G]ŸžÒBR˜NPNúvë`†Ï„[A!ó,ºÛ„› êÆN€dÿµo|€ü"u¨Üg¥Ûw°d4´‹éÔÁnû˜±šÈ šd7V"‘¤2eoG€µ „ sG`Ö,V¸ŽÅ!S’a2Àá„2×åæáKÇK>XB\‡6išõÔET¦a×<^ÇRê} íl9åîÜ;ÑZ³zrPVµNîV¸u‚ú÷?Œ#SE¬¨¡84.ó²Ù:Ú?=á‹F2†{'œ+€íºAåý ‘Eçäƒä*[vWKàÖD'rñF[àŒ±§0» eÜCgðq€-v“MéâWƒlÏæðáw¹¹ò¯›¿G1ãÙÄ&,÷\’Á«|8á¶\À Ÿ±[ë^Ô‹‡ Μ̰=ïAÞ2¾¸‹·ªÎÍȹ‚å&¥$$T›²$Ǩ(}ÌÍSKÉ:¯lÖ÷³´ëR´ZìB Q÷CŠh¹È¹ÿH'÷YÝå{Ÿ0p’wžðˆÝØvBai›Í@¸æ_”¾‰KÑ‘2Û¨Mû¼N–{aæXß~éwBÿu/Y_ç,˜Ä·½÷†n ŸæšgÎ¥ÎêjÏfä¯u ÿx}+(T uç_î;j#?ÅÈwúùR)û+°Jãä™|°½ûƒ]$nd€ë^ܲÁé2±A©n#·7KÉ®´Ûü$eK6lè£m µ U·ÇÑr˜ƒ:dÇó­’óËša_.-Ü,‘ÂÖºf&2h÷™J:šaêÀ;B}aíúÜüÔüóî,bý +m)&Q[dÝ=‚,eì8¹šª00¨!ˆRAèë÷#Lf‘cÛt“¢¿âÎ/ÆÃKB^ÈP ƒá•¢THƪ„lÀF¹O€·µŽlUeö ¸‹ Or9© @—¸ºŸ[ÎË,þ}I.ØÐÂ#Ö/0^yÛ\=Ø®=?¸èÏÒ¾©z '*{Ö“÷&Þ}茹 ë­œB‚¤Öt !¨²Ìy©…’m•c[IÁV 4áÞŠ7¡÷V\„¹Ãîzc÷Qar% Cp°Rºs'ÏÒ1ázpkȵÃòJ"4škP¾&0A}¨c“”|vêâpš,82ÈØœI‹û5ͧ5ÂâÕN`#à [Ç!YÖÀÝå–åÁ‚ÜZµxêv:* ·|!Gü»_í±pU£R¶‹·xj€ÛR>Âgÿš¦}Œ©Õ>/ÅÎ3å.<p•S Âûÿ–Š!Dsc÷MRfçb‚0A.Õöûä?ï.D‡bJ§BŽmIhUlè\uQÕJ{üð‰N^Ã’0î~8eЄ]WB cNÙŸdÈT^ª>ùŸ8 êóœê7ã¯HcûuZRM!ùºÕ"ƒ|?˜WÓ?Ô÷±‘’·W1ʧëCÛ·ç·ÔÞNCø?‘äÙE‚M«7ÙümK™‡þƒµZÇÄ\ ՒÕ3o—ûJÒ²r³Ô¥ ‘òÙç‚·»Ç¥úâ†Rv‹õhöI l^N8äÒB; ȹ¹0àÎ7yÙÐ|È ÈáTXÇùçêÀ^zÁÅÊ?Ú«¾uÀ`{ÿ5½Þ/´áõ61·Ū™]X6ŽRý )¦G%ý~nžÊ§äº ¶©ˆ·¸3´¯<Û;JQŠÒ>†Gô•%ÃÒ ó; ‹zèICµ²(šÇ¤U¹jfJ©ó$Ô8”g¼s¸kOì’Ù>Ĩ  ¥JPÃ!9 ŠeÙGåήX3DÉ6p÷äLñN“Œûа¨ßòÄŠ"Ž’pÈ‹™Ûݶùµy|²wx0{ßè`ægŽ­ˆ²!ñºñŸ‡Ç¦0»á×tô†Wd{ÛºêoÑœö ò¶šÔj?©[ÓÅe·hn·íÙb_Ýv_u-ûd䌻˜‚ÛÒZŸÈ*´¾:Â@÷Îú7À÷v éÛpžåÒÅ¥û`öÚÎë ôð¯0IÜ¿¼›}sœ|Ìà7ºLØGÄÈòä² NèØ >RDcQKª-ÉèÙlá“O½G›ºýÃ߯šÝr[ÛÝìl%Ÿ±-£V½ƒÆÝ?žÀLTúRÖ' ã$úiâÈL劓úR#¼÷Æ‚ÀðÝ!á3eã>!S帎*¡iˆkqK¬ÿø -´‹ê9eS0°hìs(Þ`÷J™AIÁ‘;%æ”\Ö)t‘~õèp8ývžèQMs’Í?—½ÉÍÌmaÁS4YÜvIº½à­jI§Ñ4åU P³p›jßYXAÍ:ŸˆR¹?¾·TÈ ƒ ü¯\+Ÿ˜¶.¦#ZÒDR{Ö” œ`7ËFö h¯$rÑ÷í¢ƒvú§¹cɉ%¢è-D30ëžRó[rŸ§JÜBîæ,È·âµs¾I–hniF9Gîʾ¾iÐt8”W×yg#]Ï û]²NɾpÜ“P³ÀÙ=äd[¬Þ÷Føs8šXWWŒ¥3í8qbå#1!Ñ´XIøã§û}QÌê!Zù‰âÜ5 úÚ,î¹^,ûaÞP|6øÈCàQ³[Ðy>cí|/Ó]Ö¨þ ^ŽSâÒTÉBÒ­ùm‘‡bùÎ+4"Hôñv|­Õ}’|ŽÉ¥!©nî˜õ#<øÌSÏäFܼá¹,&ñ¦s‡¹öLf•´CéQüWŒ‡UÚWï˜"4ú•~Žà<Šå? ‘ˆdõZwyË9r©8䈯×8¯ÎüAý:ÔÒqrGÕ„ò&WŽŸ(ZÎù>5:“i˜pÔèN¾/Ѕ€bÀ¨ù–I«Æ PÑ%Äiã ÒF¹ýÐåˆ|*Y½/+wWØ¢¯…K*MÏ^&Q¾ºÆÇÍ—Z‹)1m¶UNlBA-9Æ È‘‘ïåÌ ¸°ê€'´c]šKã&)´¡8ÈÚÐ0² ²6•´YÏ2,‘)Adž£Vh Ì+ƒ…KÇ7vç¹>€¼Æ Þ⟛l-ÙÕ&aD˜su˜dŠi(ݦU8`WMÅNæ˜-³W©ÅO.źÉ%d¾‹f‰òYž°Î–(3±{ÆÏ=¼W\JqÿÑOq†àyèïøíèæ/Ò¬³Ycù:ì%A¯ïcóº@cû`Ù.”“ù†n ójšfÃ,b]¹È¢œx}Ñõ,Ã| ™'08õßpW…Œëœ5ã] hdzíÈ‚ºå”Â%«²˜á—?kõ~é §ˆ(A½5©ÇšL¸7îÃÓ ‚þ Ës­¬ 4-]t8{“ðùãŠíy7Ej~<4ù$ §¦'c¤‰ 0 ÉE´šë*#2È72ÓWòø?õº(`ÓEã¨8*‘×QX}÷CÖ<% F²6*–[*-Pva˜©a—Ò JI“]§R¤î2SPê%$„¯þ´žuºæ¿ÿ÷UN£±ìã²a­§ìû@°MĸHâ¾á;s²¨q¢Î AFŽR¦¼9fBðÛµÔ|ØscH–`ã,%KéçÁBÝ©ùóR9á)œO–Àà€UA —^ÇÒ€åÜ»' ³`3†zhz™æü +ï]öúF*‹°ß3[†·zï·ÚoÿŸ¿Sä¶&±E„H6oËésÅ_êz…Nñ {I’/vÎ@8ì„ÍiÞ "÷üwžáÞ7wNOšÞÛù˜!w êþ߈m$ÚÿŽˆíÿÙ±Ö^üÝœØØùÚ¶˜ÞCæÚsŽŽ„ÜÙëXAQÑ[&9Iº ú˜VÎÁ™CñtO®–'kZ®àUã:Þ)Q$8Ü^¹Ñ9]€¡Õ½OÙ€Cõf„Jù§8¶J.È(ÔŠŽB¯»ûäÒ<ÞÛiìs»{‡qÎŽfejFït'þ+ÊNGà^ÜÈezÝ»œ^½8ðW'š×†úŸ·}‡ò!çáOIu}šüø£ç‡l:w¸ùnèÞ~›çŽ.»>¼=Š à$pC©·M"ð-Blo³ú€Imþ1WFó¸iÔÂ¥Ÿ5ø`à*׃ŸÕO›…ô4„›i¹D3rˆ*0:¢$ (U‘½Ã T  6G¿ýh¥oRæV¯`OÄTê‹i²ìñF8v«`±¯ËluÛ *»fíI,—ŠB,ƒ²¼×~üÕ¬~?óîó-sOxá ö†Ô~±ßxY¬¨{µäs¤Vù·ý ‹}8È:±™84ß³÷¯dE=0§ wù´å:ùà^TÀÆÖÐ^Lh鉘€ÖÿzbEY4rOUS‘0× jÖ4µoíS¥MÙ8FeyŸØˆ“h‰ÍGÜ “Np^{ë†5ÿµ‹ÅKÄÐ̉`3Z|ཀ½RÞ8ÓIfegæß¡hÎe¶„¬n°êälÚN±›»¼Ïݬod\ÀÎÝúÎ^$Ä:ÐÇ'€a|0ådþ›„à¨`¦ê"»é ºÃéÝŸýtp..ÅjFš7âKsqÙìÖ|±_ Ç`âD‹þlÎþ qðòÐ’¾½N&ñ¾árÌÞ+Ú X޳X0çzŽ6̦˜9¾Q³C‹Š29nóDZ„›@YB’N¿‡ª"Ó^·—wÐC³7aÕȹ;açAž,PDà¶³l¡8OÉ9åjYƽ‘‘"ÓÁÅjmÞWÛL b+gY"A„£.ÄoE¿a,Ûu³¤øx_yžÐ5Ÿ¾aû:Í‘ö©˜ÛŽÛáôãÕo4rVpúT…m´Úo¾hµ¤³ÿ;D9ìü¬%ºy,|¼÷òUP:²T¦›î©ùEôZ¯ÕˆÓ<4TRS¸¹ fGðüf0I¯mšqž´ÅíJ4 é  Ô¤Ør§Š +‚X—ø*”ÕÈy‚>ì٭ľP©®‡®2qÒÇrÜŸHÆDiôˆ£~ffGôºWàü'Š ­)ùY DL»íêªx!˜ogƒÓ¡ Å ¤ËeEëk/àòÙsne…;ëùŒùV±{°û¶Õ¢`~*³OË“,÷a°ð÷R%Ìaee†lî6Wž‘¢¸Íµ£…Ùðñ=v „üÆÌ±ç, ÝO)Ú͇è–ùö)ÿo÷@W(¢½œ$tÄ+õïçnÁ";é¹#g÷ ÷Töûfÿ£æX!ÿüOy("LÇ  •±:œ0þîÿÏÞ»ÿµqlù¢ççþ+Úž{ 8v0ÎGÙÖ DâŒã­ÛH h,$m=ìÄó·ßZ¯ªUÕÕ’°={Î 3;†î®wÕªõü.zJ&ã¶ázŠÿò.»)¾C1ÿ¸qÔ¨·Š‘jå¶+Ï£¶/U—½Î­G:E0bç~óm³ÕØ[Ü·XÓð¬üEY6¾J¢ „£=¢7w™"ñ?§öUè*[§Ûžëž!MªÆr×>ÙæÇìGágF7ðß²quÛ6g¹Ð€2EPêYëIé:%W)]µÝ]¼WEvG “sü‚žá§ú± ¬¯wñª!®Ÿþ i> ›W¹ùøÎP~£ë!íü ”¿À¶ÿR!¡Gg?â÷å†%ß‘§È…3B'Aè À/Æ QBpƒý–Ã#78Ae^8ª94fÁ‰žs°æmq»k.ÆÃñXMܱY{gGØV\¾ˆv^›O(Q¥ybîY ÇXÌã°½`@ž¸?¢{<ÚÒ´n6 °´‘)BLøzÇÈ~bÉÄ[î Òiö0«2MÑ!#0¦ÉÐlÄKòOGƯÇÄbìhŒuÔr»ØÃ>²ýa¸K*_pôí¨m‹ßc_º3u-švw•[ípx›£—{~e½½h°.C>Ð:! IØUKŒÀ '½aü=—É[­ŽÀ€‡²ÅLÀTÈÐ28„MH(öC,²>b4AÎer¶-‹x )üÏ‘_ºa(á²»]S$%j>CŠBŠ~;ÛØæ¼SÁ™_ )3ÈØ\I¡‰‘­…G˜JeàÅWìt±F¶¼Wð9º·Øµ°µ.Ã5zX‘4`ý{œÅyÀtzCz—S‰ D4d09M'·Î#7¿?þT’€3“àJ‘§7éu¯ßçÚp/(à|:T<iížRÔd€ˆÉqžb¢m™ÂvWu†*ð‘Àœîò•Š»R9­)×á¾O½‰7 ÚÜÍ9ª\v*©#ž§ÊnTªáÂ^ÂFJËE‰ýIôU ,æLU:‡ŒÙ9Ï‹N#Àª†8"N2RDö‰L-kÞíM€sìbÔ±gÂ"š:W±NoR¬Þ¹ µ­k\žömÞu©ç™¸Ü¬ÍØŽ•="¹Šo±£h*†VÎsÆ `ÑÍê}=û`‰Ät¢“Ä×Qi(ÚœP'mÂþØàNÌí#[+Û¬—M6ttÿ© çAŸJŠnEšQJã„…U]Ø_ #â6¨ï¾츾Tu%”'µ.¦¨FuxÚ:m¨˜¤‘Xql¹YÔ‰Y=³ÀéÁû×9ºÝ½?ï.£E:4˜›u4›z[ o­ÉÔÌkï€ïý€¢ ¦4DK4Þkš¯Àv_¯­òˆžäçû¹¹×À™; ¨<%áiƒŸz ùì+q}zÜxyT¸}ÐŽ}ØÜÒVfÿ *Å´-pvvÝ‹W“Ÿ)ð³î¸Hyuyª2Ô ÄlʈxÒ2—ËC͹K­+dг/h —;5ÙFií(ô”WYÄ ‚ãúÁëF¼‚ˆ]ßõ´ê“µ“ãkJØacsõìv úJS½xØÂêª,í@¦ÓfÉ.óå4‘è!ÆPº±¾öؖε÷¥!àö?†|°¨’ç°%uóM3êŒóMRåTªœ) ˜S–]€ M¡$qž``säÙC(­wï¯"4ÀAhWÁD96"Ñ“ðæctnãú-K¯¹ô¹×9ƒH”‹QƒÏ&¤Í·ÒŽ„w€ CÏmäŒÁÝcdèâ”èbxÝÄúØÙFD-Ãò›ìÉeÓÐO ^áý[–È彪è5ŽùZسJL–Á˜ìåq]¥iE‡C«84uˆ®¸È׳_ÞÝØsôŠŠùÕr*é6ªÅfŸ d+Ê pB+#…¢âŒgÒÈN7˜Ù\<ÄEÀâ‰6;gÊÀ"ûÎdÍèêhðljà PÄä¥2·b­§è=Šý<~[÷èmó`  ^;]»Ãb×\vdÙ™V´Dc…BŠÎºu<8Etªb>6—­ÄZÊkÒSIí C:C$}^zûÓôf9tåó5µ°ÖúÑ=Xÿ?þÐ4î^„F­Vƒ©:˜;jWé K²®8XŸl™¹¡ßxä!¦ƒœ7ú·D?r[žŒŸÝíAfDRñ*ƒ„AqÈ ‘÷†¨YG6öºdçœ(Ò’*„IˆÊ:&ÙÁ‹9dJ.ü)´¾ÞÍû:}UDN{»í‰Ù ÕÊü¨æ&Ž ]a„µ‡¥Ëû®,4«œ—¯iA8üÄÓétG¾‡Ia¬aØ]$µs!Á”î®—‘Y¸=%éfÊË-¥ô|a~ÄÇ*¬À…·‰ÙK½po€]ºwÃÞª Ô´@ ÃûÕVFîÞ³ßç ±¸÷Ê[h2¸bç^Ó…Uÿˆ»¥/Ú–¼¹¶âåG¹r 7 ç¨jVð˜8åH$}÷¾›IºY.[i¼k«fÀÚÙi…\UÊv‘Þ;%JâÊÇrêTÐèc³äàÊ] ùú}üËLƒ°‘0Û€^,lYŽ¥lþMÎ@Pn(@<ÌûØG@LW7¶­KÀ}‡Ò¢!Zîûr5²˜ƒŠ³1kLS­33à¾yUßßo½9><}ý¦L´D^AÓ"Äa±Wx1Ý6ª¶“·x’OtN á“ p‹5ø BÌæÁúÞ?Ë&½Î}+PØæiuÆpl€ìš_X£OVU¼9ûY'wXU· Á²k‰Æ’ YP“ t˜d ‹é·ttx‚Àü '3î]€·Lÿ¶†møa’'5Y›B@ág±ŸIoJ,FH÷ ú W¾¹ÈÏz}gÙ±¹´<|SYÛ˜¿ø ÐÆ–¿)¯q{KZ³™xÝÎÂg!¾®{c¦º £=;ôdøñù3s,R’/ i­ée; ®¬·6Û­ß|L‰¤–¼&ñôÝ‘ús…Žr±ƒÝ  FtˆõÈ*dº’Ø& ØIQbëCs¦H]@US9º Ž-"œ;i!eº{¬!ï©,u¡ÌZD§Éqöˆ–QσXV[€ÝÔmSýÀnõýÖÒýY8î NB°=N År7eÁšs'EO- —íîóä>¾;¥³˜MH¦B€ O¶SRЫ0\¡:0¿™­OÊ :Fš}>£QBQ3Œ8D€; =gÁëÌí&ÎcîÞTï™ ¦ôÀLlÂjžÉi>à¯lô/„.u.{9Ûg(^{…ð¾î¦B£Ærðt*®ì¬$Vb¯•°•9Ó´&ijñiâ­à9?WX.ämS„qÍÃßY)§hËÃt£œ#oy(­“Àó(úÖ¿ˆŒ>™öP~ˆ>ÿGãø¸Øó±ÙçdÙ§ µÿn7Uéäì¾g+ÀZF–Ì(*÷¥«èMmÙ¸: Ч&¨ƒòÏT ¼œ=ˆ©ŸP(òNS‚k˜@¤¾ÓnrÓ¡"Ò…Ø:PëdœÇìé[tYä“:Sг<““Ù!Ðô¤ó”sªÂ­âÄ,µ“Ñ[ªE†Mè!^õ¦jQÀ@§jCäÙa¢ûÓáz«ÕÈ2³µ•¨WVæÛð‹ÀM”Z"ø}©A‚ßÒ°:S"VÆG“Íy¡ÈÀdÖÁÅùö |Ž~¬í‰Ó÷:™@íD&ÈätZ¿S†H2M‰cUmxPX¶ƒ°È!Ñ y°7?öô ªšüÆ‹¤Î©OœÞ‡Ã»%Ð2‘°âö KÍï–a¶1J–ÔÍ)XU;SÔm¯é-n§Xý£Üè6g©ŒWoð4ò€®ŒC cë þ¾/P¾çEíÜ\óMš†º›r·L®õ"’Ï{¶`ß»‘:‰XÌ7²3¶ƒçløñj{|¨=QðFœÎØLd/®zÿððøJ:(ëWb_¢Î,"EˆÐÀyèH«­÷QAÔ{1#œg“KŒæÇ½½WdO¸ÜðMiÕ)ª¾–Ùv™ ó&ªóŽ9=†›éß*œoèβ¤ç©ÃF·’“ÞÕ»¬›H_ ù\@°èâMæiéÏnq[y”—pŒèw,–à„¶º¯6üg;ª&¥êå$ãcu~„ƒ)@¯ üÀË’¼7ÂéY"áÇߨ(dq©È:çì…©P—>‡¢U)hT> ÇÊl'Þ'”Й°ýåRÔ–)œ‰ž3Üu_xg ‚èÏàymˆfˆgÃåœæKÕ-4=ïòpmR5õ æZÑÕ¢ûƒÃ7I¿ÊŒ? æ×ɽ±›Ù℺ÅZ¯©æ«sÃÝô¬a ND£¬˜'¾Ëã”RŠùœ`ÎBÇÏ˘¢ÃàƒÄ¶ªÃ#DŒUDŽÝ4Ìù/:ý4Y¸RqÆ_«à•1ûEï¡ð¼}¹mÈ«îçüëÙ‡àgY‘ |®¨8úùö"©´Üf$“¼j®ÿ `ägYËüÜź×RV&ø‰[šàçSðdʼnЄ›‹!×\Þd fÙ‡5Ϧ\4~Ä}€5Ç™'òJïï#Š ¿[ ¼bän*ΫšQ —¨Œ›×XVsá‹ÀpªÊq`ýé÷ÿF«Ÿ î¡¢˜þÄîÚþÊú¹„0¼aáGYù÷×ÿû h~™m­¨¿À­ÙÍ«÷ë¹%ä”`§EÙ¦ la_ƒãUË•ö”U¢®;ª”T)×qûyA2Êéc}p}5L¨¨)Ox`Õu®2ˆÆj@Iê§T…Ù´•dŠªˆóän±‚†…ܪ_Fdž7†èÛ} µCaÎ|"›£äÔríFÉÖ˜£ìøzŽKºF è&ˆZÊ¡fUuÂ+p=pœµŒÞ@fÍÞóQyµªÊ¤~²"bd/Þz ÿDó’ÐWI¾‡Ìǰöe{_«ú›êþ|áE½¦7Ç¡üëÓ£ù—öW¶‘[]×ÑËšmÙ›~ptô wøÃ´R(°Ì¥^ø—¹ÐË®sŸ´b{@$ =“0ÉQ%²°+ þ"† çË™ˆ¹½ÜòÁ5ö‚®³ÕÕ¹¾6ÚõD| y–º:S_€B-ÅÝ;–CR³¹/™Pû&JxJ{€èóSst½üòû¶‡d‹vÂ[7¼²”#<ˆe7øòP_çjôï1¥AÄÒW³Èè#R#xÈ…@E|³’óUÀ çùš{0¦Êµµ;tžÝ¶"§‘5|ŠsßÑõ‰Î0pWñ’îØúÔAà4?¹‘´Ì9D^¯òÃÖÍMÕ,;ÇL’Ñ|Xùá='³¿2‰LŒ˜6aM2šÛhC¥K†îZ«¡gEPž|¨Ü²n~rÚ²HšI›þ`²eö0l‚5¸ëÈÿÍÇåy­&C7ë:·@rÖâÎ8›m’™¸Ç®ÒJ¾fʳsÞê TØ›_«¦>%A˜ödzf¿Á¾cb6Z6ri|O ŽK s”w÷Ì ­Ý‹Ü“Žm‚íÖþ:»]ûà&¾ef»&¶m§%Ó!ÉÖ¹\¥xq‰0y¦D< Pk5s0#‚" ƒkÌYÍV Þ=ý¶ù¼ÎÍ—ki¥iª™®:à¸Ú« |™šRÜwS€c÷ö&$·a=œ 3™BVäk”y~­Šúx2j»MÎVZq,ƒÀ47ÛŒ±(ê ÚêûÒñj3Lž«\;¼èÝnw¬¹; `±>ó6:áœN·»è3eðÙZÉá’¹Tìvè B}º8í°õa䤯‘Ø‘ s~“­¡†¦FpЀ-´ÌÆCz·‡§Ã«^G‘#àG9ÆfdnmpP¢ÄUš9Ò6A¤7l’<÷a/³¸êå8Ãõ&g#ŠœÕ;ôÙù)O c'.©¢õ®[3.•qT‰æQƒDxKs1©`/aþ‹.bŸ÷Ùå\wC„×ADrsíÚ¤BèOu<Ó½ŒXB€A‚.‰x«è—º’Ü…¨j£È'ÜóäjC„#&~ÆñÇiðصísdjÅ\ôË™B%0# ®|xä/‚C—¢ª­"&B„NÌz{Ÿ–OpÝÉç”"Ámª ûì%i„{ ‰…W[á %ÈñB’KbÁZA¤b ä¹ïòŒ'ˆÂäÒ°÷÷­¶|_¼=íü¨ì¸Îag‘]¡¤›C¥'–>>T'»Ãî@p 1-²QÅ{‘Ÿ¾g¦Ï{©'"ýø'ñjZ¬¼çm«v£;Ü“øD-ô@Mž;æ×¹ òST–8ÍðT ÌþFóIÖ4t¡µô€_€2æ~ ª3‡‹â#ù‚À^ð²¯[ŒÀ˜çËèÞA¬D\¹ºˆÚÝ7•Û]FbÈæq²õ`£ÜZ?ØËÅŸ©Ý›+ g/ù-9)æHMHxý* q”ÑÏìyá°ä³Oá’«‹¬¸‡¯††»¾õ9] ñ°-[ÜF[TÔʧ(ÊF€Þ.;dn†››˜MáMUVU¸×¢s}ÑŽN¦ó«lü‘Óó¹ËÙîg¾¥ƒêµAVò:Âà­'ºQvú”“ dò=ì=^8Fx•m÷yºY]´«d†Pëä±8ªŠ˜ r9Ão1ö{i(ü< Ä"ñ·òkæ™SYU$Tojsk¦œ3{”VGaB‘ß’XØŠp«¶a®MBúÎn%uª5 C·«bM‡ÖÛ¹— Íÿ;ô(ì$tüˆ±ÄEä@T@°àzœ4w÷˜ÒŠÛ·µÙ«ªß›N!ø¿GéS•ÜŠÒ‡JˆöŸ”úš…ÄËáxl„Ä[ñv;Â̹Üß=ü©Ýx·»ßüŠ–Ê_¸‹SîÏÆáÞ\@EÀ™Ÿ÷Ú/OöêÇ¿”c0í5^ž¾6“pܨñãå~£¢èb,ÿÃ:`ªÑpw­¢h ¼¡~+bTž9õáQ \–°È¸jô+²%¡7Ã~Wåø•9ü€Ãe¦¸õËQQFӃ߶íˆNÁ¥¾ŒÐe…ÃeLm%á$/ƒ9:6ÓìzspØ‚—eS;±Ê­ëý†:ä&\³é}ãG'—´…ëUNÇݦ‚µdBP ãé‘ÌœöMúe8c¨äÍ“‘âõ%ø.]Öü»1†`´U:#jè«sâ&êÚg•/ª¿¨¨ cy‘·¶Ó«ÅÆOW¦Ý>q¯6sì˜.n8ú¢7`wTt-Pž:(°  ζÒ_©ÍµFWñ 3b!ò.Ù˜T(7ãW¯·<h1K¥Åñe&|3à_µìaHA´ŠÓ ¹€¡ûzln;ÓëSÔl€%Ó½q›ôŒP¶u¼˜Ò=q°‰ˆ·à0‚TpK±)·œ19¡7Ú(Œ¹>h›™ÃfŽæYo³:€¶®õ2Ö8¨ºýÜ0¬\ί¸®"m:qtæSÀF ›6è lépcëÀ±AzzÔ:¬¹¾É`f¶ÏŽ“Y&¤Ê“MÊq¦è§%hO~5s0ž¤–9º¯*˜—y=Zo ~Êmeu ¹êÖtí-7 V(tÕË9…·£NQ{Å#á¶zâa>hG{rsû¢ŸŸ£íƒâºÍîr*ð²`ÝÎÂÆI<~¬**j…c b_°ÏÊW¸nl‰½Â4PØ#FÇÄü™³“ˆ”ѽ<7åkíNС/½CmãïƒÚ1c‰Ë¤wõÝVô¨çä˜Pùüê“ÞQB¢²‰-ÌI™ÉFÔèÒó/業ÞôPý- %Fð%·+^;x›Äx‰)DD7Ÿ;àæV“Œ¨NU¦¦&0Uø4ª6¶ê |¬'NH|ðšÍéɪ¼PzSÕ1¢èÔMN¯‡i~3g¤-f7z’Úøvbÿ`©-ìf€S¤‹Ww% WÐýÝÕtÎ9g˜ T,8¾u>žwŒ¡AÏ%EO$_Ì÷[ÂÚíHÅŒÅÔ)Ž»} m‹êµlÕ¶ì<å_LÊ‹+®ž¹oXr:…SKªœ³˜¢û.D9½;+°`æ—quŽ÷´à\6ö³2©þß˪/ïBòágy¦$Ö«ÐÁ\ÿ®/…WŠyhé">³äß#´+d)ËN·žŽÏ;ÕóNôR2ö¼èô–ñ—%§vñ‰]J•ÉuJwÔ3‹Voð] s¼³DæÖÔ|l?I¿yøM­DÌ×?d¼ + ùXÖåè;IX[•Àª|hqUÀ[¹`ù|kgu²·£ ï÷º'¡Ù°ýáäú<¨À DïLp-ô0V:Ó^'Ì.Í@ß.¤ÿd6øf’þ¿ÙoF<7õfìA¤%1ƒ…ŇPšó˜ ¡!ªQµÄq͹âLX#Ð7 ß½E‹7ÍÓÐÀ`k/9¯p&œ¦ˆ&Ó¼¸*YD¬Îâ×n +h&S3L 9å¤[™wÉàŒ’ô¢FCœ*ÿUR¦P ƒ³\dŒ8Ÿ‡Mìy}9ä[G(ð¤@ß~¿vðSæÌ5½Ê9e#—ËßR"Pæ!Õ6¿Ä”ðŒ"ú•-˜ª³ð xiÔÓE‘i;@}ÑÃik²ÅÆúýIíé'aÈÌŸ°¸ùecýSC”œ³QÚ¾ÂBl‹ç2 AꮉB§'%Ê0<¨àjiái$±µƒDåŠx·¡xj–¸FPxR!Ó3{8šnPϲ>úí¹+èTeE6J[›‘¨@sŒÕ8…£MªËNk+ý>Td´R‘çx×|ûvS²àZm°úü?Òùߋ޸‡tÓK_ZšHOJv! @ >V?¿1ÔfB›]}OB«^,ÁFIŠh’xš ÀîO¯÷8^sI yÓ¼óZm‡òlkòxNñ¦~B©§÷nUýü~ï­’Û>ê|tõ˜v ¸¾ºØä‚´þ®‚©ã¼$ݾ×!é—‘¥³Ó–¬¸Æ¹/ÿ÷ÇŠI;7AfžáyEYy"[tnr»¿dÖ+î*Ø(¶L½÷¶DªÒèÉø€Ý¿j[d±zÖbMø©=˜þgÎiŸü-?JÖ>¡þœ{kŠÖB¿®¥'â/ÓC%$)÷x6èø‰€ŒhÃüî@“ÓÇ›f;V6féóçn»™ÞØ.£‰Óá¨ÍVÃÇ¿þSxÂ%í’G˜Û™ò‹òJá¢}Ü%© ”õÕ…;¼Êùô\ò¤5rw³bªC˜:äS©o¨¢(˜â:qëK¸uèj€öta ‚UÕedL‹ÇÚE¿ Á›uwþh<4$õŠŠaf& ½Mä_Û Ú®@ª"úhì€óƒ½ÊN’bŠy²ŸpŒ-„Cf,ñ10ÄN¼E|!ëeZ€˜)tÉ®.+h+°pï7>TáÚŧ´°‡fÎÇ»õ#s)˜ù¬¿mܵÈéÛ—ãpGÐ~ÍÛB&éŠùuâelœƒÌ§|·Í‡÷»‡&«-w‰m`RÅÞÕRÙÄz·ÕÌæô4¡n?9]äJ¡Ó+UØÙ`hi{æ¤ÞX.– Tcøg°o­˜;@ëɵÀïcä,[jÄßóç{£6”):Å—äuÔœ§í©9(l˜iZA…ì²³€4&˜/ç;–WàMÔÓKÃÅj$~Ì»{uGˆÚõã×'Ú¯ˆ»&i™¡¿+UªØG({cÇ~þ0u“XÒ9(ðB è&»ØVkx<…Ê®e*¹nÃZ::²âêõË 5±+×›0èËÇ2 ç0@ÝË/Ùo wŽ¿ºéŽ¿rƒüfêÛ¹Y}Î ÓþÚù8ϱµðùg8¾Å#ÉŽX a½è)¨ð2ëÊI7/Á¨îî¦9ÂÆ\ÉBI"!Èâ!åŸÃƒEówlk,®()Þ÷L¢·¸Û™Ä!p–lÄ„ÁûTïò‡J©Þ›L#©ãyiE%ÓëãÃS´+î‚´¦±vãíQë—?q"sÃ9Ž@ mI‡4¿N$:‰ø×.Ù®'»mv1³Ž5eãq6¸ (z¶Î ¬ y˜Ã: 'ÊÌ)oGƸ€åHè”&Q,PGˆìRÅÓ¡Âц[L!Ï )zФ†õæ¢ÊnÀ*n¥¿þ;²›¿6(ó§L@Ÿ nÏ-…6ÜΔX]V†Ó½ÊüÀ‹ˆký8/×û[2ÆÖ”À…ÍÀ]+ÝZÅ4OJ‹¾[ “ãœé¯mTᯠô£hA¦ytNCí—¿ SÃKºM~;9f7Ô[Z &ÿ)ºh¨ö·;”vÌ Ì®r/Ie)éQx›ô{g4½†õÍw†k¿ýÇ6q”: š©pp*AȺxs°…y›æ—Âa—]ëÞ2Q$ðJÖ‘s-‡R‚“ID~`M»aLµªµQ^âû@J ‘˜Û_ÉÄ8¦A$™nX4iÿ2â®õ{ìNü}!”¯¨V%ÔAÏ›Ìbaâ¨/½-à#ôŃÇRÒýáT1Ísëå,Ôb6 Çæðëö‘šÊx0(§2 C”#Pžï”`žÀ_‡²?£Ó ¤Ñ öÚûÀ[o³0°¸8>…+nqG·b8”7Ó/Ò§Û…ï˜YAæAº~sn~¼¨eʈZ~ÜPèrÎS½Î¬Ÿ)çÌdu˜¤û³Zºß' Öþ4š±Uóֳ߫!Ý \VòšÅÀÜ5fÖÇ5ÿ<íMûBÐÏœ’VÁt‡ƒó¾ï¨µ”"u„‰>jµvýtdž¬tÖµ÷g°"þ£~ñÑ4štX–Ç´²_{¤I^’ ¤­0üÊ–_G¿×·ŸÂ'ƒ’$É~ýàÚÂGø‘L†ÿéû.×ø™Y“sC”P]o³ép`a†È/…¾¶è§&Í4X&b¶t™W®gJEwÍÓ®×P§q~¼• o¦Ò¹>)sœu½Ð4.-*=vñ¼þ`〷”O×v¤ðÈwãU/|ùÐ÷ѵ¾¹êŠuzžOâ#Ôï׉DÏzÝn޹ÜûÃáÇŒSÇQ’‘õµÇϼtåßLÐÉ"$/3§ó[Ó™œØ¹oÀÉð0´7­¹^ {lx¼"žGl`y)¿\´ —’÷;œÔõ)-Sàƒ×ÄÏíýÃÃëÇvß~yòcÕ 5”ŒèѾÿ^¦»ÜÐ%.[c`_*fÞú3äY}G,•ºdì!ùç„c¦´ü.©ûl6 IÌÄ2ƒDÏ œ/VÇÜï¶µé“éêjHY§À?—½„ÄÉH½\ò²rÏ–Eh3ô¢%‚¹gs@óië@³°Ú—ñ-ñWälsM¬fúë.µdÏ íÁdj%è?¼8ø\>t&®ëáø#öcïU«Ä¶xkŸåæërF¡VÁSæÎù‡ÿú’ˆç™rüAGJS|‰•ÏÖè¾iº{ß^“0ßg9.wˆÖÖOv›M%QP¯%ÎԴ׃¦9¢Cu›fí׺آ/ß“Ï-1¨®Ý9b·W+L{O#œ¡]›´Ì7Ñ&¾éÞWoê'/ÜÝfM­ͺЎácä65ü ð1èÖ×z§ëñ¦°¢öÐ)*ùù̦çÛ»Š†¾žòr<¿Su–¦Lµ¤jÏÓÏw±´£~¹>9ÛRÕØ³äŽS(¥4°À†¼üì“o ÃKºÌuøð ©Æ=€xð™Ç»d‰¶#®ëÃê_e7m·ã8&=öÂe¨,™Þ—ÝT'?†›Ê«×#µîŒYíÊ®¿?בP•Œ|>¼`h5êŒ*ƒ#`àÒBÔÚúÌ8¹q°G¾ˆ}#¦!Q‹ ªöÀ€æN¸E©á>•@Ôÿ±DÒ\H bÎD®Ægßo³”àAˬz3²¶ÈÒT2£}›xb´ýíg„Kd#`¢¬¤æÀŠè†©ÙKHù{¡'¼½Yx|)G.šsœU ±Âôù5;äA":àD–ˆ'AÕÐ6ÂöùÉ8ÀÄj\jç‚Qq^óVNƒ‚£0_QÉìa0» €8?5.pgÎGX˜]ä°óênVb¡ÔÍŒQtÏ"Z¬©Š,zà”Ø!Ò Ê·5 h±ýGƒ/!D" 0¹äQß¾ê=Pˆ'ƒĘR:è@©Ölü ´Æ³¾$l7źt’»›ÛÖ6a?µŒ\|D-³@z‡À?þ0`¯Šå` B<·èôôµS)wQùc¾× ÜMêVIç8»ø2ðéî°\í&R“¨l˽N9úbÖé¶§4ííî27·{mþ¦ Y: Ê½ÃV«±'µR2„Ç›†Åq¨¸V <ŒLìÔ)¹£½¦åÂA‰WQ¤;"ÙªmتÕ÷Ü›àì·ùlþ¬0FWÓ%R×ûžØ¸o&öœxäSið¾æJïíÄýá}XŠAÓí»ûÍ“VìÝòj¾ÞPMW ´‹èñB¥bá·î¤©J(?á¾(¶»æ4mŒ›°ÓLÀ”i…}m®ÌÚÃÃ|åjµèЇø†—RÈŽ¨ª§ýÖ†D6Á*¨Î@X°`àwL;×CšùmŸæ¡æ»xÖãU€£’ý}>ë‚Q¤KÉŒè®0Ô¨¸MOW™LœÜ\¶_ßL\B· Éc.PÚÂûXŸ º© Œ(?A½¦NöÓ%lèÆR”•X~‡Ñ†'Òp›ðÏ¿ ä®n“ŽÆ“¬rÜÕaY)H6i¨¬(è¿Öðæþ2Òï¸{˜wu­ÄË’tBä#ŽÝ¹ctz1.]:},Y¿ÌþŠ!õ¿Èx„¶+ÏРç` ۻǨ}޼9°% ˜üÝãÃãýWÛžáÀ¹gÃÞ-æœèù[ú.]AîBJâô—šÑ!¯ÇqN8ýˆÚSN7›»M, Ϩà;¶«³ŠbZã´Ø`¿óÑTò—X;–"¡²K— ›%Öeìñxüžb‘FÚÙM͘/j†LIWÈ9;ñ¨>ÙW­Î‰µÏr!g–â¾Ò;bÀkÈ×Àu!ë'*gÞ`®ƒµ^ç#&hæÔ»LŽ'ÓY÷¶LIíλÍFþw¼Æ!þd§äuV)µù·Ã×j~¥FÿÆ´m‡i¦´Ö[ÖP"E·ÃwÒL<3?Nˆrzú¹ŒmOYGøÌõoIŸ¨¶õ[VÜ#íXæ¯ð˜k†Ð3÷³[$¥Ú‰ìýb¦Î¥ ƒŸ{8¾p×”¯dØ¢­êòU-F|™+hü ,„ ÇÙ¸×G§âi†L2Ȇšu|Úæ%)޽­vÒÿòï+§WSàDy¯Ö¤™;/žåñ 2½ãú˜Íûd7·C9ë]ò~å¾ ¿ê‡#{\5R®òàÌÓñ°ªqðµ'C.&ñ&nÐT`õiá§T—‰š€¨ÊÃÌôô®?ÉŠin—ý\Qí¾…NËì“|¦@™@ßL‘»þÐ(¨•¼˜SS%O*NS!鈈ƒ;×\²s›”¤“×`sGætQôºêœ…Õ‡_@O‰³þ›(†Â2N¤¡IšO; }t'H~Ðyzî! Õ>Aë’`¸Ó™]ÍúH^¸ºÍH’c$|“-]Õ:[-Q‚|=°'c ?ÜHOfâk©ÊžwE0ö˜0À…$ulíïý¬–ÔeØêhî½È>0½ˆþ‰Äm×**™FÔœêòÆ>òPßW$b QjΕ>ø5ÄmXñC ìgöxú…Ý«ŸÊ.Ö¯äløÕx›¾Æû°MÛt·s w¨apF¤…’¿°?21´W:g5.Ù…#T“ßoF¢‚Ç»í¿Å°ê‹Í÷ê}€D¨-—§|òòðp_™·¯çüï6Ü—ð{<#+‡™N?òeš7E#²úÈj©W<Û5a±í ×ÑHD^]õ…·zýjo®¦UJy‹uÖÙFNlàëÐ!hžŠrÂ]ú¤¥£DÚŽ€³ß²^?;ëÖ”•fb×{ü¦}1ƒ¸5ˆAê—â'X ]Ì'äÄR‹}Eüpaîí4²=~¼ÄÀõÖµO8ò·½IǰÙ G´`ÊÙû…MÁxÎ:k†_Á%ǽ O˜‡»-q˜ˆ5¦©E%ê2hêB%s-ÂtÏÈýC‹Z'ÎòܘƒÖîZHQ‰®˜æv&¾DÝÑÖ7VȳÄ1&gùEo@^?玌çX`N0ÀÇ 0Ù :3"À”3µÏw·Àx`/¬±3¨<$6÷ì7»bY-{÷ t÷é—ËyÉ1›(j(ÞÝäZ÷=ô馀H³ìf3Y&6‰N¬—#=eFYÇú¾æ7äWiß[i®Üüe‰1-²Ö/Šão¦ŽxJŽ\è†Î8¬ªÑÜÂj1vf€´Ps:T•¶=÷Lû!0 %÷ E¿ôBvøøgàs±ô§H£êlórhCB—²™B±(®°¿ÒݳæãÄEÁprïò ›÷dZÅl<ð¨W-ø›ÅŸŠ„ùÑ^}'§bÄp-–F÷\¶ÒbAVÆ /zŸ¸{mºáPS€ñNÎÁB¤ o]=Ÿþtbj^%kBæ.¡Æ%zÁö†Û |2FÃÉtU¡E‘±«°çdþ]™S„¶;šJ…l al¥°¨Ls6màzf¹|û)æ}CŒ'ßÒËit7¡·9¶ý×r·7²Û¨ZÒ36{×-„¼\l5”NFSöówiŠ|°yœoj¬ÛëÚt,påÿÞÔ¨èÑ}E,¥2Áªâ([@Ö˜HçW@ýúf"®¾s,™4e×¹6£^f]‰ …S f’žÃ¡ssq¨<­\›xªÎ™éñpàíRo¿qÅç|p®mŽ.Õ“Á0eÒb:0ÅĘ\¥•S‘ èw¥Ð¶îmÁ{±=¦Sé`øAY¼˜Wþ¹5TÏÏÙd÷ñ‹h‰0w‚ŠàPEŽEìHÉÁˆý¾ÐÝ-@6ËZt-³|¸É(AbU²e»­’¹¥æ =®Ç#AD4ú;× ÙÄ8cùßÎ]J5‡œ=\Öçú5 ¦;ºn)|?Jç"•Σvþü»`DÃÙØK(€p§tÔ‚HQ½“¤ÿ%Ä]¶*…~è/ª¾6†tÏ£ªnæzb”ÄÎ!ã^…D(9ÆÓûÃñ}Gà0&åáºVÚ¹Ôf¹r(€1Ò±BM„ÌÈßT¿-Í VX’λå/† q+h,H–†*P€ Î%á†)Åó^Þ·ù*@ƒˆÚp8rxbȚ☪Zó±äÒô¬ë5ßĆ3ÄLQKûLâ ‚±ÊPµÈ:;F:æ;§8,–æY ¸–’­Éˇ v7Þ󪕄4§ä ¨V(hü«±,W¢$¡8Wqcg¶Ï*§¬ÝÈâ|+6ÈÊ 4Èí}·nÖÜÕ¸ïªúþ˚ߥjHa\Ū÷‘fÚVwü2E·òk~¡ò7¨R•ÿ¶€çLK{êšâŒzv¡Ð?4†tVÀrpg:…^7ÈD¶|(FûTT˜©6Ê…Wkh™‹^¬ÖFç{mùFºˆÏÖ\Ä3ÙEðÑá+Q}Uc…=O}iÜó¥/?m®kÂ[–AÛÇ"ó·É'-p‰,´íQÜú€"qxÃ1Â÷šÏ‚ kÝ3Ñ:È$ÎO”uÈix!^6sB ™ ˜Èhž~-­&C‚Üã4G¬Hó¢èQø: †U“ù”žð/A˜4$ÆÐRðÛl:IH6“Sè8ÔaL>P #EÇ)Ég@öÐ0í=‘ ¶Ž¯Tcv>À®Ôöov¤ôÊOÈ£PîŽÙÀHìý Nà‹w•}$mºut…¡°ÝÂûÄ×{EÁ50‡°ø¾¢É–§` Àa#Z~ã÷꘵‰QªA“p&71£bÌ =‡4éƒ ã¢ÚSÊ»@³Šjvn¤"ö\$UÈ 8’›V°êefÝß2🳎mà8ÎøLöÚœkøY±PŸþÓÿ¾ˆü³‹Q‡ç˜U ðC”¯–úùl_ÄÖøÖó¿Ó:úkÒÈÁˆSãxÓ5˜MHÛFF‹¤ÈZ w‹ê„ö¦Ã=¶ì6w)¥;¥ `ŠØd!Xê¹^ΫɢBšgèÏ¡> Œ“Ñ(€ Ï$ñK}€Aµ–=ÜÃbsƒ¦0iË(Hf% ¦ä¿Ù¸Î‰tå-q!!2¬% cs¡~¿#s—‘еnv¾{çÔà[›£ ¸š©Sä¬%-¥nÓ` ¯m²6´lÜ·ÎM–ìÒеcŠ$•ü>³%³²žæL‹ïƒs¤ºžp ÜëôÀíL÷»7•>ã­­ 1Ø;lÕ÷÷<#Ñ@(D: ÉËT°?øvÎÖKò­<]j5²«êÔ0˜ ‰¼K³ sI­™ŸÔL7ü›$ô)Â,l>t”ó@q>Â(ÀaMh§½ITžƒ q^²°}UqômmhòJf ‘75V[e¼ —t§7سìÕCÚÁ3˜«ëÜÁ˜_þ߇843,xÚÓÆhqµLx(=ôB¹A•œNØÁ¾9FýµÄž§³[\§`ß³Þ”‘Ù#ôx£μtÒ‰b@óðêj8àäøDO¬d]20Ó’²+òœ……S85Âj‡$I{Œ¤À!0^ƒM\E3÷¦)Z&0Bnò8ãát?ÎÒㄬ3ŠsæeBøö4õ&”θu™ejsqäbC}žª(àS1]¥p|¼±mÍþä«€•¢.åf¬:’°'YŠ;Ëd1pCõ}P…›u¾¨¦¬Ñ"üÑËE›Ø»~¹V à„® Ö&œ€<…¹n™²*׺e:h.ÎüiÓ‹æ°¶vT¬ÁÔ„áÚ¿œ“Þ¤-‘£ËOŽZÇœ×KKô²ºµˆëcB~;5¬ÛŽ™ÿôGŽ‘† 멞0JعݫwnX0ÃR‹ -&§…*&ûôV5*1¥èßhß+—Œ!Ò‹DFD_`Æ¡2à9u¶~ptx¢Ô~öÍ |«?=¡oY¾dá¡lôÄOhºýY>«é usL£]™ÔQ8Ÿd´»¥#µö¶Ë»…ñîŒz·0ìÝè¸ÍZ ıfRÀÀ‰ÝuƒüéÉŽG]þH+•Ab€é ¤‚²ùåúî0·s'õHBÀ%­=Æå“KÎeÞ\Ñ£öAýË7 õ;b vÉ¥yî1&|O‰,hßL5ë·6gì[âÐ"Ш!â¨Þƒ>Æ·Qý  £±®ÿóOO]ô9Ä}é‚Tÿ¥Ý5<Ûi-«Ke>c+Éž0@hZUÁÝ´iázG9¬›­¹T8>×rH]xr.P݆(j¨zŸsG ûŒQÐwSHWŽŽOð[9ù±y„6Q…V7É)ÆØ6ÃþÍoUĽšdÀ…< µôQå‡Iumå‡ UZ=C뇵¶â?½Ÿeg÷­lÂÌÓ}xÔ[3•sÆiO?`EƒÁoZ–݆±Y4Dš6F ž(›Åƒä¶d'wšàáÛæ?÷Yï#C„á£jÙÉÛpÇ ±CM#Mm„Éy*E7êvï |cQæGãÙ ŽÑ½×<¶<ùý^È ,s‹Yõ‚íQœSÌPäXÒÀ@Æä™öï·Þß ÿ†„j Ð&¾«è‚ù”°Šßó6Ôj›ºYî ét6„åôå*7%6z·óßàÀ¬Ùï>_å‚;§& ´/ GÝŠ¨­iižu©É}çr_g{aŸBÔÀ_?¢”~¨§2äð°DÏ‘XAZ€$Ù‹)šÍbbH™>0™CÂÂ÷Ó„$RŽ @²„Bįƒª¡In^à^4 ¯š““ç”ô¾ ò`¢… «•(¦øBÄñ"¦‘cLw­¶A2Ø’:ÑMä#‘L&³«‘#¢$d“ì˜q°©MH1Ý`¶Q$Ò)®É3K‰}H¢˜‰a—1‰oXéöÚF5FÐM`)M"¾‡ýn!„õó$O\:º\þïBÿåÅOÛÜ<×NyDÕ)žÿÏ“CÉ‘Ì ,EGxó¬¯d V­€ãóŠ8Å?]1v…›%Q0íþ˜‰¢YŠÉù-» PÎ{£`L:°6äŽ~0]J/'•@ UöABs†â‡ÜÜ!˜Uº| kQ¼(9LæY¶ÉÓr¢#<(‡vÕ•+,™ûÊ¡wX^"VYû¤u¬*t »3k±–;M\›åx¬ÅYÞïÚ´²êáÞAôñqüÛèãWõæ~äá¾$¯SOáÀÚ‡EÖ~‡ÿ!I ¿üÈ?îx¶ëh„C²_ Ó ³6 ¹5)[¶™øµJ+Fþä›Wç?õO?×õ/¤ŒºÓýߤÒ÷Ï—j¤ “|w•Ô2\®™š3ÓwWM}Åc½„úeñ^)WÀÜ¡§_IÃ&M8ä¶s‚Æ}Ëú•"ŽªONˆª[|6££'ÈjKR-g¥Ñl{\½rÝŠð N½²¶òCæt+Ë*Vàҹʕ%5+½kötŽ¢r õJ\£²P¡ò?O›Òé;³«ó~~³ ö(ˆÓ”] 7CF5ÝÛ\ýÄós«ó¹àS‚‚ÁÞæÃª7[/qå<¦@žÝ¹âP{à,Ù„)BD&G×Ù©y zŸ·1Å *€+æœuþE"ç³UDÿ4 Ñ ªE`&×sYNYÏ¿PCd6 ¯ôĺqgEyÝ:Ê£ ‘ ¼Ž4‰Êf=G=Ñ 8_óílznO °‹6”N˜"A?êÌÚ¨Áø9ö-C‡-Çz- M2lV à/,…|­=ƒ@iýuG¼ý`K!$ o$€ò—} Ý ßs·í7Và4ËõÁ€-ü4Æ6Ýž=_㜃Ìg¨ÏÀ|n˜µ%¦»åñA~¹¹9¼4VÑÛ®ë!,7 íÃâêÌ&EHnȳô8Ù ‡*ñ+¬…äKVA²nÆ&ÜEZ„Ø2Ël-9,ØŒaçvß¾m¶ ÛvøwmìläØsØÛÞsî¯EÐ7úÑԻ–iˆà`»|¬e°Î•$/ÌÕgxá·§’«‹nHeöó}:ad¬î,üM:«¨²zD¤”º0ªåÙT±”P¹BoÌ 鋇1ÿ¶þËËFÛŒ§ýöt¿ÕLdO!Æü"Âà2ÀøÏšáC³Ë" Ÿy;Û{«1úµr¡. v wÈ·˜‘QDTa)Á $ !‘ß¿,yÿû"G ƒ Xð¢Á|Ó/Ã÷fœ­æ ãh sÞ¹/IÊÙ¼¨!NŠŒ¶ L+˜bì_ăÁWï8¦¸6ÆLÁ:M‘ µ¦4;âŒLJ¬EÖ¦3›ã1¿ÂPNöô”>.áÛ¹¿‹ÐÉJñ™ø+ØrÝmÿO" V«ÈÎP€<QI?»™Žð',E–·bA0¯ýà$®-Š‹^Þ¡‚])”ÎüuÓ'»QUUFº±‚+sïѯ—÷²eú@Wêú2ýß*<1# î¿;‰<Û>‰?&[ôaû ¬tæ…j›G­¶9ùEç8²WÙòõ Ë;Ó¨‡²â•%?ll­Wµi³[„| ããQt|ö;žî¶Ûú¼y°ŽÒˆÝ3¯QÄ·ÈCôu¡9OŽI\ÖèÂÎÝ!©nD2Œ0ÐqÞ7έÂ(íºP&Þ;Í£˜ Ôt®—Τ||‡ÉkþI³×ŒL_ø,à÷Køú¹3HŸ|A ,N¯ZFª+¼­0Ï%Í\Ö«}ŒL´¬ Xr!«UŠŽ‹æçJ²b9ÝèÜüxsÓp?s“a­’f»¬ß<óæÃpÔójÙxZVM÷Ù:æÄ¶OŸãÓóós¿zLç35Þ}ÿú|ÊgneüýÓçÚìÔÜá›U,+_Ç~N@uEfTáDÿ|% ç̳úmÛ0f¯¸Ÿá:‘$9–݃ŵQôSÕ¹:8¤hP&VVÀ ­*žäI€–¤¢ŠE„p´2°?t ƒ1¼%*{WMØKì!‰¸ãSë/TÆì&·‘ ª&Pêdºèq¼7/X”kó7ž9 ¨r6c§Ço0p ‘®Mõ ¡L$±5+—^…{J‘ì¹Õ{b·zS„ǃHáhëà˜qÅ0'˜-qæp;›‚ÙH¯z‰öÐ.ær?CÀpRž×g±}pF–º\¥U@<K(Œ\"›ÅÇ™\q%@M(÷Ø•àAM9™Îp»~òázù¼*\,$@VP‚±†M5±"UàÚ¢'`9xä—ó% @i´h‰0H¿^±ëLïÞaV{ÕÇôvÌÄø¥SÄ$מÙàã`x=PIæ|¥÷1i-&©BA‡¸ Ý®øé<‚ô*0ßž@;}ÆSžÍÓ g"Vjû9çBaÄð¦eŽ34ãðˆ%w~£†4ý¿èlÏöÕp2åaûç.‹=ú.õ³œ)8£—ÐÌ ?KÓH3€¹úbw·­!AÖFN fùìa YüƒãÉnÔ“éx†à@-ØÛîU’C[ŒcÀXNFFGlL94 ¾lÿ…Ê ÐEOÆ«3\Î$ç9îMTžµA`6Õý‚dàQL†e ;/ ‚’ ’B̵¾±®×/„Ç¡/ª%™üTss²[?bé}²±øª~ w¶ù­VÀ9ïEF´=Ø À ql„œ±Èžr=B« +œò)à-2È®òµâ:‡¶C÷&°º¾íÐ=÷m‡2 L@!–Ã≘pJ;Ðþ·÷[~_¶ƒÁCÅØN TÒvŸ"g(tÛÌ®"Ü–s(qñi¬·ß6wÃq™õj7 ö<™9xE,@ôÕAýmɋӷ/ÇÑWÇ¥…Žç”ôôæáAa wOÂG#_Ө°ÆÄÈ;« ðß.}ù›’*ξXçÁaÉb„º{yðUé‚ï·ÜîQ8B‚LQØO:|Ñn2÷vYå‘:ì««^¥ð«Àµ¬AI²B  ]Š(Wý„èÐn-‡‡oHºÄ^¼02U5}`d¥ïŒ¬$~[ôÎH1½äÃsü³-Zã|ÁÝKzñÛ÷ðèÃÀcåc k̰z‚6ö§€†½RhnÈõò]MW‰úùZ¬8ê±ï Æu†;mPcŸ80Еö tT†T ¿Š|ú™ê"=AÞÏ1NÂD56e—cʡ֛ÞÔ—Ôìïµt7³y•Áÿ €˜zWæÖú-×ÁµMk¡…Юà¢L8 ˜OÎv9í]3‹êŠq—_%û‚'5&è¬aœ"L‘çÀtáÌ`S “1¦qªÚqu›Ü:Ï1dKIh>vi@×N çi>ë«t•Ág˜@˜½$õ6¢ÂWÂi´ûÔôcuƒv²ÿø³œ¤ÜuÊÅk‹ùa3Ò¥Mëj†¦4;ZS\‡ƒ†‰5u0hàܪÑ%”Žö<6Áé˜=¯ƒÔù´…¨L¥4}#­µÄZò:ºÔ޼œ¹ÒïØ¢"Ø’¸âOÇŠLY$ÐÓYV.zœ> «€2p‰LW¨zJqHg›“ãð_* ¡íŒÅt„äö©Î´Õù"ŠŽí ÃÐc{ö«[í¬eÐ_;dÐÚª×D< †Ó ký +fÔiÑÕ”d2ÓÍ‹0Ê`€t ½ó nLh‹Æ¸»W&F8+¾£ñ“Ä·œ´ÇÍ?”Ö{S <ó_ƒèrŽ–‚§ó^•T6ïqIuôÎ+èòÿ„›Û㛚oëïŠÒó’Öøe¡9u=…-únða`UäøÕÅH¦ avŸDØ5| ñP’ë€U£`Íæ8"³Û›Nòþ9 Q°±sò²A÷µ?¡CgÑi‡áÛU+–ÎJ5ºˆ\M‡AÒ ŠÍŒÆÈþþ‚«êÓ©1žXyíQ•PèDÊŽÿ×±±#›»3Üç¸Mµ_þâÜHß÷oë­Ý7†]õ0× -iL™~Ç{×?Ɖñúçè¶ŠÝá ¹`+_Û gaÇGbÄÕ!»aº2¸ÇžÇ`›CŠnƒÁÇ–ïX©<|è< áçu#Œ‰›®’‰\d«º+l¤ì˜¢âyh•RüáEÊx¢tÃ5”jþ¨YÍ!;+5øÉ'çrd¬ ÜÇüÆìXÐCMfgÒA••· ($9ÑàNÐ÷–N¶ kb«/hß[N¯`Þ›Ãw ÏÌF„í°×~möÑQ»y¶;xB»ÐŽ›n #Œ9EžgUd{¨‡HafÊ牠»:á »S¶\Î0Kcå W”(@¤Aðó–+ÎR´0áµÚ;±sà‡À!| ÌÔ]mœn3à™•v-i`‹NµŒ6ZZ, s¹Ë)‹#iìã‚õ¬!#ú8ˆòöât°@kCøòçàÖI Ù¦ƒ“P{¦#±3%¨B‡nƒI‘ ¿FggxáBl(5`ëä¢ÇÚž~‹’ãävž‰óÜR¿”°ê_v}d9zå²,}Ó²Ìö¬#íº2T¼ xôø=–³¨0 v–Ý4Ëß¼+^IäÁ„]zW1` 切7½îura Í_yÏõt:žå pÓð1©I±Ð@Sï À_KcÈþ¸°1é}ÇÂÜ'6â<Ž:~ó,m-±>s¯ü¢tÊ·‚~A˜ã í_éh}ÿü»£p/| :F>‘EB‚ÒwGÛܤR4+\°pj:Î:?nz›¬6‡xãÀÔva-zÔAîñ t r,úÎ*v÷šä¾`-bE; ‹½Z %Ù?ç::ÚäÙ¸ã2Ɇ‰Û}ÿ=dC3é̸ì¤a1×läÙ¸Sâa‘®ƒ˜ÒkGÜŽdo ©VÞ}Mp¥ÌRÚT«|}ÁeÆÆ®ç3öåä&qd;µi‹áWóÂlqþ[[³{¯­¸Z%üƦ=Ž]o€ÑØ‚¥/ÚŒ¸mên¿pÁ~lëí8Z&”ý:)©ìŽp£ÔÒ©Ë–MË)nèæ\>‘°‘<âù×U”ø´1E‚¤A,!ÇÈÉt8¼Ž6˜Tï^ëïÉL—0bYIÛ–»a¤pÿÉQó]oÂ~> áß–Ì`çžÀÊÇÅVž¦z)¬Û¢KÊo(B5è°=ýN+OŸU`Ú〠z™æÑqÐWÃ>ÙÔ€W˜X°2 Ã:€¥àà^eÕ} /¾Ïãø:±ÿ£C lNLsóiÞï'©÷Czka(N7:”fYákþWȈYâPrð•£ "Þû®é³Ð×_¹Žó»3|1G!ŒGˆÆR¢QÙŠÖ¤œR»Ñß¡ªÑHÖàü^™óž]äˆ £ã¶´4T«‘uìµMAHMº½s4/L Ñ"ì· ß~¸at{ÌÎw"Ñ2¶\_û–£P1 en&èþ2èö~ëuÍæLØÇÇÆ—Á=H×hD(¸ê—kMÂе䟘”*EP$"[Ÿ¤wVúÃË•[Úh¢qÅ`Œ¯µŸì.;ân öÁê»L1¯Ö§è¸ï˜‘ªÞæ”ã©,šQ•Y"†1ˆ¥´'¯êÂò8J[Fî_aÕȳH]Dþ^àj{MÔÙ‚ñ2¦¥,˧ìEgž½ˆ1úÖQ1 =µ³Ó-»ØÎ¾‰£¾MD~bœHŸ`à¢k†D’‰÷!PW™sà¬a"5V¸¦³ôcî$‰ÁõpÜM¦a2ßá¸wÌ iëÙd–㸡'rŠÇŠC—‹6ôE äÔ€.u2Éë›+ŠIó%â& à%ánh¢%¡UO…­&sb#cÏ8†c'-l芻†ªn »ýiêR[tž´±Îª®»jø%Às=õ'Ê켯–±~HmxGhßå?‰_Ϧ%eB>—žÙpÕ“än1‹‹JºæÔæ€+€IòÝxUÃÁõ§Ô±ÓÊÃxrBÈšæýG,ðLÀ$Ir° eWÙ\Mgô+Åkg ‰"o8Ý3€OA¿aŠ…1w}°ü®¹÷Ù–QˆÏ%ó˜¿åæ<`Ñ{ cì;7÷Þ ±¾ŠÓÎw*ùµÑ·]äšt4 ¢ñ\WÁ¡6KÀmŠoM°:“K&œL#fõØhk¼ýyÉ+Ü›jž?шŽ.ÆÙ±3hX¯XäwYz/¸Œ¹Šüû”ëãÜz`ÿ•Îàx¾ôšñ˜þ/bù}àyŸç×ò‡ûÎ><±`$ÅɬËV㬬n“Ø q0¿WÃPã¢Û)†ãÊ Íßg±úZVàb×e˰‡E"ª' ÉAÁž/ˆ ï,ÇvLÒ¥B8™µtfPÝUÔK /fäæ'Ùy.weKéT ž“ì/à»<4”£b©×å#2†…èÑ„~k­I¨fi'³ÑhH T•ëÂd‹!=mí(Èâj¬{·™¹þ¾³)³†ƒÞ?@[bñbÇW „ä?ƒñŽŒÚÛêªÛª%ÞLm¬› «C¤/ éH„Ä×G/üg€~u ¿h²“. ü™ö3?è§Ä÷s©`ßòpWŒ%ó*fa–FÐ~^´ñ^±¸ ïŽÅ=•F=•Ç<-ˆmþR³r»¬¼nðñ/L½Üo𵮯÷YñÕ¨ã)4£]?ï<‹â˜CaIÚ‚ßEn7‘..y2ÿYn.±Þ¥‹Q_•Çw«ç b®ËbìÕÑ8l4 8L^ã3/ïbÓ8¯ks¢nŽÄÝÑ>;þ¿6ä<ðcWøe1…XWø?)¦ðåò—Š)´_{3 ¿2\ã—¾LùÑà° /³€ˆeN?_Iù1FÉ`F/fìèÒÈÛlgÃñ©º$¡8†N¢à—x‚rF’#|ŒIÂÓËaŸe›ÿŒ£y¬±m®`Wó€L)¯]ÐEú̬mª>óÍ€6]žKHøÆñaÛ\¶†FÔ[=S‡„ÉÐýiÞAhÁ¥÷å}e©cC?"殲 Mœ¬±|0Dßi`ÑCÛ[ÌJ×%AgGŠÉÈKúÜ3ÆYÛƒ‚äh¾ïŽàb>HGq¾Iqc+‚ë`H#Üc?5€ª&ò öJ熳ˠ,k´tJ–çuÀþŠUoÈ@“®ØŠêj-õZlËô­ÈLƒT¦µÙô<!&? w™±[X]ï¸béjèŒîXÃî‘_Ãe6ñí¤h×Ð @˜áÐbž© t~m °Ô-ö-ìXuR/C³hhAŸ×w ê dð*ü.Žëœ´7LõLy_³Ò9+ Æ»‚Zžû²sWrÙŠ¹˜O÷Ã3Pí`Hô¤PúU:@¯Ó3¸ äL¸mKYò³~¿=½õïéúM§›~b箽ÙÕÕ-N :ª¥‚ïÍÞͦ…ŽUaR¤èÀ CAfðT”³):†Be¨ k„U+dô« e¤õòéZn_›v×j<¶›p<œ '%R]Á4`‰k€´0”M] ª€k=+VÙV©- .ñ‹y'œüv¡ø‰y ³{•_ Ç·|gùˆ³¿ù² ,Œ:^ÀBáGd6ìäbÄTgÆÉÇùßùwQó´âßô¿{dÞ«,jz‘¸®¢8žŸ$ Ï¢Š ÁT9ñŠóz°WÁË“c2:ã·º‚¦Ðe§à–@m?ÓßP@pëúsaÙ4z˜Îö8IVV(Ÿv¼î +Sû2ÏF©Òió õx“ RÁ'å}ÂíœÈâïñÛI¤0¤ÅV _cKl>íP°‰m‰B‚æÎn=¼EÓ z2LÆs*ºce¾»¤²¦€î£áµ¼.…ôuæjCìÉqg~×w–VŸØoÍ{ó®Of§ )³¬ ´WQa³¯zÿȈc3ƒgUñš·nøUÛ¦¬¶€µžéöÑê ]!—Ø*0Lå?D4@¨|Ûü:0Aí:$¨H0›ÄÅs³]áƒ$xéæÇ°²}0ßdgC™8]øvGfšu>¶-Šö{ üh¼:î¬~ºßBÒõa;,ᇨ¾gïΣzËðÀaY ^¡~Ÿ¼×€ûÍ[@0ேã“QÖÉ%%ÜΕè:»µ.=î)m4Ê]‚‘`-iRàá„á§;ÍìÑ‹S\ÜìãNæ 3ä[¬´`s f¬³ñÔvëýîÆÓöχÇ?JÇýÛØu'­x¯ªº–mîÒUï‡ÍÕ£HØ2p4!<\ÍÕð'µØÅé2î$Ç7ðÄyXÉDánˆUIsóNÕ±’IU>%aé²Ê}#‚ë zlÆë>[ßNŠ]*ÎGæ„0YQ^9‡½‡² Ú¿CW ™÷ÈXjܱö[Ë1B—Áï_;· =̧žÉå"söuên(ÝQÃ}pˆË„€ÉËû¶ÿ–l©¸gfqѧZy€H.\oøA•=…4"Dóà§ú~s€ö,@ün!~ã@ª˜¤ ÿØqØ}L î8£DðF’É ¼Óì¬ßëh±‘ `I×b=ø¯£Ó—ûÍ]Ф5÷¢Ðó,*ŽÀSn òòw­ãº_‹F0Ö þ]t[ǧˆúU/6)6þpþx–PXQl`%#û~3>2ÜÂer#úOtµ™ÙIöɼ9𖓍Þew'yijæÚÕÒ‚.n}{~£uWqœò™#mþª U0§  Oµ F£„Ð'Df†¶ÉÕ•®µs`¸/Æ ““MWShñ…b/ÀO‹›d%dÉ<{Vº‡ŠEa®Ü\¥ßðø¹A믃À¨6ÄÝ'G“¼ ¶³–¾1Räo4m®Ip¯¦5Â×ÃÁ7 ŠB"2ó:3ü¤ÎÎt;TíĪ*(7=†qr²¹s»zà~ÚÍo÷Ln Ÿíl3½±ý|€Aót&¥ažGÒ£Œf0£ìæëë¬i7¢ËjˆoùÌ¿BÜËZ~¯÷¡àòZÔŠ¬²È-Ú€§ó”!¢ 9`´ª'BqÍã/úÃ3s»l@báÑúªgÓĺË,Ád¿¾ÊÒŸ*ø‹3 Îs-ýÙlI#†Ÿ9WHøò‘ö°H´úY™°”˜?Ñ3º‡™q9Q%8›]°_;áD:ðH<—†w»rYaŸ—´Àš¡€dýõqó`ÙÑ@Ô©¦òÖÈó?6Úoo ƒ .''•¨¥»§›/i5N* BB{ã„ u;%¾H”îŸIÜ|Z'KäH(´Vµ07=ð‚Q|€šàúhï7^µÚGõãÆAëMã¤y2¯Ôà WN2µ»uxr8…ñh2ÄË©úÈ=¨Ò™â¦,þ!=ÍëtH¾43ßóv£c^5C6ã­¾`‰ÛAÁwйµ;ÏŒð‹¸Uº‚‡éf Šº¯­§ªtcº³ š¸h¶‡©_«îÒC—JB<Ø+æ-ðÃUÕÙßÕïèßstr2ÖÆÇ8Ó?°-$’ÛêSþÝ«ô]PëÍçWõjÿµ®ÉZØî^ÓÁ¾®ÈY–bÕèfX°Üo[ÿ¾…M½<9Öm‘ái¹vLÑ;4´ß|ûv«äÅ^Ù‹7Þ çÎO?#8#Úz¨Þ qHY>-¤ßÜ|ÝlÁæ?}¨êMço;ŒM_(S_úˆ_7¬1"ù˜DÔñΊ)ù0å†>ü`ªA:²^Ýö>þ”ø=0#x±#Cøã´7j|HÃY+=n¾~ãQµyãÔöÁÆññÓu¿C#É/å?žMÏ•× \×b^ÞÔ÷Úúñþ/mSÙáq8ˆ©|³`ˆ> †·EUÛ{ÍäúX`ÔbÉ·ÕÀ +ê[z½/üû `Ø—Üþ†Ì¼ý½›COE]Õ«€¡‡E%ækĈë¸ç*ðõ§ÆñK­¾ ›´ŠU¸ç ð,‰k"K *޳d ;hÎæ£ *ÑÊùÆ×‚Õú«Z\—HþÒînM‡ ¿;7îkõîÖx¨Œ4®}JæîØò@,ú ’§pH|°†|`ämÜcûw¸ëf+¡>…å`åq£èþád6˜öúà@šOQHËn)Ôˆfh'Æ}yeØ"ÃwOÈòoÆ3©Ê2{$41:Ì!¹Q,m†Õ6Íõú’Ň æ/#á¼A/;‹ÎÅŒéy÷'JάPB:%Ìߎª´”u Õ=¸æñ—ÕX3ÀYêº5EbU4…{.OÕ ü*‹Uâ $@¦6øƒQt‚/ïâF«`b5‹UhsdÇIIf¶Â—lŠ’;¸Iœzxsq)+÷ ´àszЄøÈ„Añ‹§éµó·^ý!ÿ£ªo ®ÉÇÈÈ–ÝfŸ´ö‰Œ[¦nL^IèaŠdK7´!‡QrpÛR.Þl’Xÿ)sÍ*?(p0Œ@ýs|7È_Ü„õâc D2üÜ>95]~]oIHÒ‰à4@6œrÓÔêÆSò`Uð-Édf&åXÀ+öbvùaÇ9ç•ÕÕ°gò%Ëäz# Š)¡íöEƒJÃÜ}Ê­³`í¾Ó°Q^äSi#‡ÐBñVI0RbVE·ƒ—Yº^· =¯XƒÑJ_Õ]v½Âþh`8ìèek®TeÓ—$Ø3Üx*ã)7/±7Nì÷‹'Öæ×û¤‡9æà{iÎ4oÎháö0GToS‚R’”á-"KŽöwOæmç2A³Õ:=þ±yò¦½[?i¼&ÕÔÄ+oâsì—ò;„a+pBÌ€î™Í™òõ%6óüÝñLµ8·¥'K¯®l·’±›17ö ›Ö>n@¤ÚnkáÎÚXºÌ™åÅaÀ ²ìÁ º@g@F1—àNQàu§Âü Þ1ÀP˜~oªa¼P¥•Ò±Z'³»ªù™W=Øyú$£¤û­_ŽmÆmgš ÉÆPŒãAãçýæA£½‹¼*VD.xñï÷ë E‰p÷˜à®„Ý‹T´ÿj™ŠöVtpº¿TM§‹«Ú=.ôj³|xôtã.}­übë÷×Á¼Y¦´×ÃB ðÖ¯¥Œ¿V|õ\n38OžÎ£U%,©œ’|U²ÅY]<ŽC´ÿ@FЋÉVZÙ¨¦{½I´t0á”d¨" ™ÞX%¿Êÿ>ë™ë ŒGÎXCx©ˆ ˆ­U6êµÉb ’è JgZe³jÁo0M^õ”`ÂðÆJ}°rd —V±fåÃV¬ «7AÌmI:Œ®–†‹1,LwÄ‘×ôÑLI7­dWC3QSF&¦ic¸}ä—'³qn±jÂ(³8À¢Nï‚­7„Uup7 ±›ˆb« Ó@p€ÌZ¹¾ìQGÈÕ>Um½cö»ÏxS蚤g¤‚±V¾3A ´>5áWÙyÐrlÞ8p¦@ŠpA6¢R Z_äDøóáñž ÎÓoà´ÉÁ~™ßtú3@ª*¯ RÞ†ø³J¼Á?â­)–,2c”D ‘è– @Á‚Vv“w*NÐ39äâfcŽ_“®q™þÄßpÒWÖ B‡€Ì(‡µBÙéq¹’\hãÚoåt‘_u¦ý5ØÒÃN%Ò芈µRqµ©ãuÐC *iÑæu¨çî¦fYÁÿÉ11ߊH#Ä>nS£b%c!E¸—öiòÝØ5ÑÇÂm”§Ý ÞšµcÔÒ~¨¡y€À”Ö{«½ç’ÇÀ5²ûRî$ðŒ3#{~ê ñ(›©ê¼w´ãzcF4’éÏ:D€Þ°¦Xñ¢°™ÿTBDp¥¼ˆ àg1à±­éÙÇFŒÂ+h‚Ù DGÆjÙáÜ)hü*(\g6‘yÈiß[Ùšâ»ç˜ œã݈p!ÐðxÚë@èrÿÖèç¿e4Då…C•Ö°on—µätÎ'eº´(äùÍhˆ—ŒÍo=)\:¶–xk91—O¯Ó3׳å×Üʉ/:ú%Ä$ôeSó/—ÿKœ#(ÏÓ£sPX£·)êïé,£¶‚=I¬¿ϺâöðýÀý}mE§úŒ”ãœ`œ:º;i|èXk }Ã;ný:¸oÆMñíQ!2¬Ô„^S›Öc𠡆ÏGÝÎË:É8+'|8‚|Ät=ù¾ŠiÑ.9jqàwÍPjzàÚ„®¾#:;ÔÒÁ…¸<°¿D¤¥ÿý¸›þﵕ ¶â2õÒïBäñ¹©¾ª%5•GÀ¯º1C d¶8ò˜O&ëtfW†0[ROèð‰ ƒ\3vNpßPo¾±Qz‚›—b×Ϋg“êl€™' pÞÁp bÆlN;×a¾á«¨3¦ÔáR#qn—çuIš=] Þ7“Àë e mÔßúAåÂÛzÙncÏDu0ú"Ö'ÜÔ(Ô]Gùù ¦‘s]€S»±Aº¥Å’‰€Wu½Ð'õ$9¤ E?>d*nO؉kHQV1fbJºð³]áþ’Ôæ|æI+.ùÕ„áÆë Ó+yîq3ÒHï|2…®ÈeÆËb³ÿJme¹bÝþìWuKÛ`jø…‹œÝ4ud•bé”(;»u§–ËGÉqvF>¢ÌneÌ< [%z:sJ»9ÞN">Á+üìð¨ýò¸n¸CŠ›ñ·ì"~” v}ޝà1wÌãþÀš€1ïò/?TwÖE×ù-m'Kr¹ZÅNH°Ák¸ŽŸ8löôTá;È™-¦©Z[³:•`·ˆ+³g‰«D›¤ë7Ù!‹xx‹ W,§¡›*‡‹ž¯ û<5ñHnsú ATÿ†s›¬:å~D­N‘ q¾dÎ5¾‹ 8{ \^惚€äB’-ÃQ_˜ýcØK’ü8`¬¢žç¾; ™·$Pk(¤bJD½àÞȨŽ,žaFTôç´<ø`xuA»u-yV4$úoŒÓ:ú£†©{@{G#Y¤;f~¬¦*\I#/UÕpHlJfEÃ}âìåÆóÍãÍ„=z(>ÞD§<Û|cæ¨#›°— 2Õä/?Î3"þè¤b¦™ s8§<ð'Æð.ÆTÔ÷›¯ڭÊþ²ãZíþõê|ˆô1˜ßÌ~oׯ§EÞge±²%ƒ Á‚Edãîç)ì¦8 ø˜?UH劎;Å rÈ84asÿŒ°èTû–ª0aÇ©Pþ‚¤4¬­€äXdø%Ë#>RfË&}VŽ2£ìœ2Î%¿[ÆD| …_ÕÕê£|ೄ¡ÄHÑv6zbsŽXiŒâ÷%&“ÈÐMQº®· N+ÖEÃ;£‘Á±àY/0uÑJ•Päj$&Ô¢Ó•…B„/D4á#à GãÙ 7Â' ØÛwŸÊ©ÒyVh%À#d ¶L … ̲JÐBÒá¸L 04+;Å©˜fú…óÐYJ“fMcظÒH³iž¨Íºs“3ø ®d€Üµçô–# uhÎ¦É ð•oè®bµi2*øñú‰lr=î©MlH{¬ZAY5«¶ù®{R¬®2¤wÊ­ô„íöÌ×8³b£':Ña’ý<µžŽMÉ×Q¥¤>Jõ‘Â,^¨9 Á£ÜA õ( ª†§Mk"@--Üõ¢S1“Á4þ<•Š©K)â‘G¦ºÊÞ…±°édAÇL±;Téc·© ]r_€¶íiu¤H*Ž,-E€àpÐÓØ Ý~•ÊæPSf'…”æÿÞ>8a5º¹ gCNàÈ?".B@Ö‡³éêð|õ é-RKðv>Í;SQ‚â zøÎäÓIN(_Z†'WG.îw…Ž£®à‹Ô¹ï≵ù˜õˆ¢&BÐÖ.§PŠf;¾£lOJãK-«ÕƒiÙ°Z¸}mTðœ`"$sëõMY'¡[l`kà~4™™}<í±; ¡ä!Ã>¦-ˆWhB7÷„ÔñL¿–¾åôÂpW€æMö¹ÝDæ.¥K]Bÿ ‰ò«Ù÷–+ã·¾O“#i;=>Ù­´wÍ¢7Hsú,T(³ÿwêÜø»‡É¿ÅŒW¸½cì#r ƒ Á‚ùºãÛ®ÓTøï°GDƒ8ÅNøó>üè^ÊÈ#Èv=|.X±‡Ý»\H‹Õ™;4;û4¨‚>Ä„ûÍ‚÷ ê´½†b$p5-.‡©'poBø×V…o° e÷¾Du>M¢Ç¨:°>g(WÓ>ɳqç²¼ Çßò¥B=nÇbÕR ;¥†Û¢ÛŒ¸,ôZ‘]üAú],j:2 ³j£kêaY0´í›*‰@tT´—9—¯ ÌóáyX°ÿ%í.ÖýŒ{`Ó0´‹?…Q‚ N1¶:šEt¤d^¤·b'i)NC4WÄòÚ(XˆÒŸ{Q…ßÕ3—Ê®@üéüú¡…áÔ½ˆÌ\°¼Ñ‰ú¤ƒéeN} =ïvÖ‘%ÆÏMµ¢Zc÷HÝ™m=ûsâêæõÃßK…¢…NÂì‘’Nª´gÒÉUŽøBö¯Œ,Aˆ´kÀ¬a.¬ùÇÜ#%ÃkÇp˜@!ŸZ®òi”,9zx¼èG§Ž°ÔR§ý—ùW\CÕó/@ásŽáîp~“Þtf¡ñЫ NÄ$*RxæöDœ¢MSyÄ*˜wÐ2ÿϰüè0aþß°áæ`²Û ú›ž¼)H¾ÜùßýgÃ/èU!<ŸÏ¸Û›W˜%î ØŠøä¡u™ò|;Œ4LM833±kI6›WÁ*’­1<ÈQÀ³¢Ò™xÒlIîÆ=2£ãÖ¥xR ?¨õ™2D:²ŒA/~b lI‡­Æ¾Ç·¬ sÖøûÓüjtߣÄa‰;˜íÌ¢ôsP£¯® O1XúˆÑÜ7£>ù>ÂvÜ7e§ãÞØ*{¬‚ŠÊ¤@ ŽÜí™k˜ÖKÙ)Þ(Àøõ¸ŽŠC^Eí‡y½ ™+¨ò-ËxÛF!É ,pÛ½©V 2ñ.-§wèjìÕFþ, pm{f³ÇýÝ>ûâ‡A¼ÊðH:§ÌšB<:9 ™îNWu BqIæúÏžP"Ôó™Ror.mF¨Eà¿Ñ—¨°¬‰Ÿ†9˜|ƒ =^D5'Ùê @°7žR.€¿i”/3ª_ë 9‰`¬2K5k/²:WŒ?u‰9ÖW½Nº¶BüÞa«¾/@LÿÁ¥ ‹Zx+4­`*+hurWGLà 4±O‡‰Há6¯vï™C¬£<Þ7ö|„ ÌÒbq›ævûœsEûßÃÞ¤-¬™æuV’˜QÁY šd8Ö}«5þbÎÈåqôÁa£¨±XÏþiöËš,aݦ³®—@€§à[¼«ØYxx–ß´m9>AÒÓ·;,¡½'ÀU¬…%g0ª™¼‚]αL ,ÁAætòè5¼b•É%"‚ æn#c„‚÷¦ òªè©E æS31æ»o¶'Z¤î£À‰>d%&v=ÖMPÛ¯ @#¾sʰ\Å'ÙœYßÀd½µP3”õ]ÎwÒRÛ ´¨»§L?Q4‹iH§(’ 1AU¦ó ÏÂM¤Dî%:xC¡!pÑÆC–_pY›Èiž"Ëo®¨Yè/Sð5OéOÐõ{ééxsp‚Ê]Ìq²5U…¹‡©ÕŠIðÏ5[•oYÄ}u9¦ô‘/DNÅÊÝc}zõÕRA䉕íl¶ïõxˆÙî,d¡,œOs þ?Îÿ‡‘NÈ~®B>I];Þ•fÑ6VGÅÖ*ùš¹qU~ØÉªg?dªR…ó˜É´~=Ü>„]D]`Œ;Ђš–¾É¾©¹S N Rž¹ÙÙ^DÚÖé,c´YÄŒ´á 8GkR#àåa(„éBÖ¿°×Q=&˜áÎK`¢è5‘`ƒ„ëþÜnà…ÔšßÛ¡áV­Ü$•ï¨Ï¶ýw²—‚V<þŸ2 |Ò;"ÁàÄ $˜G8lâ2o  ¶ù d’7J†¶æ™¢&t.·í¾ðUÕ¯šÇ'-‹à¥ ˆOrÞ j Å‚`°JBG éuövV¢½u·Ÿ‰Zèyº±ù ­¼èwø×}±ùäIµL­BøÎïùcÄÃâߣ¶ œé]D; éÓƒóm6ú ì(AZLÉÊ”CÐJ˜>:èF> ;>CLQI'WS³(€1ú›ÊW¡Ž ¦ãaw¡·)'Dr‡ÅPsJ‘>Dø†ÚAÃ3ܧf^D…ø5$×àÕFA"+e!`²â´Å‹$‹vº»×>l½iÃÜVì ¨ÕpòþÂUù7¥Ì³ ìÀFð¶Ç:¥"DôûèÐÈÎ>"þ|å¢èLÿ‘ðgÓiz$Ä&q™­ì…</ís„ 6[× —×c6^ýd·Ù,™C©¦8yþêj¬W:üÇòkôô“åÛøTã‰Æxå‚Ì\әɨêχ¹'2Ú«Ëœ•™ç®`ö€\žîÚÄFv¦4÷øSýø—8ç󥼘å$s¿Î,¯cñB·H2A@æT¥>ïk¤DÙÐV*üß—áCþ•¶I9,ï}Ø7)>?ÿ ¢’ )²ÀÚð§s†Ü+Û¿y<—ßÏ¥˜Bž­Ïb ¿¤kKsƒ!°£•1­²®3Àâòlä…‹ò6“ÔC Å •ä…Ì]åÀ‰Á:_^jõK©Í—eþ®š9Y¨Ù·%¿L©ÿxc¾R¿$„½T×oÕdØ¿J•T×n²bS…jÉ€g§ÌÔ¤0 ”±Hó·Ih‘ámýÈЛ.Ð Ú T…JÍaw`(Ê&¿WA÷/Ã4—HŸËØÇ‚F†–‚Á«¹$b¢ÿ ¥åŸ{}%ú¢»®ß¢j›(.cˆâ¤ƒ·©¿Š­Á`c KÄ­•¦szOçTÞ>†OƒÅÕ÷_¶ä^!÷ÖR*t-&œpœKºìŸÙ«a Èm68ßFÄ>£Àó.£Ç‘Í]ãU­Ö‚)(TußÊZAUÞR M7M¿?P-Z˜'$yæ¢7‘XÔã-/A´å·ItÜÍÛHÌÆ6X™¼5…4ªëžc,§Þ­¤ä¬`sÍy%¡çÝ¡bbý¢³l9U Ä ÞL-Û¹ îõi-ø ˆô϶é^Îtâ}xÏ^Ò(T(l;!m¸‡øbr†F¶Ê|ExBÈÞ<>YrÓÝ·†‘bžË¥û/÷w„»à%ÒEçjmñoµGJØ€:“¼ßÕ%d'!I¯¬ jaº\a Έ“€ëu¦ìµ¼ý_ý¨œ UúïÆúÚ·ß=šŒ;üi»üÂ6ÖÍÏÓ§ßâ¿æ'ø÷ñwß=Yÿ_OÖ¿{òíÆw7Íóï6Ÿ<ù_ë_e„ ~f°ãL“ãáp:ï»EïÃÁýùy´rןd…”Gù¸¿ºË j 9Î/é0mØø¼ «=L‘»þ3 ÷-®Jo:ánÁ­Žõƒð’’¤ E&¥;ÐoSÚtì < iÆ €Úô\Ö@îÓ 6žO¯a_Hê˜É(ïÀ>3E{°ûø´â^£`â$i½iž¤'‡¯Z?שùýèøð§æ^c/}ùKÚzÓHw~Ádké›Ãý½ÆñIZ7ÌÉîáAë¸ùò´uhܯŸ˜’÷xQ?øÅðaGÇ““ôð8m¾=ÚošÊLíÇõƒV³qRK›»û§{̓׵ÔT>íé~óm³e>k֠ѤX,=|•¾mÞþ UÙÜo¶~Á޼j¶ ­W¦±:€9·š»§ûõãôèôøèð¤‘À°öš'»ûõæÛÆÞšiÝ´˜6~j´Ò“7`¬÷GyøóAãºî ñe#Ùo‚:—2ƒÜk7v[0÷Û®™8Ó½ýZzrÔØmÂ/w 3–úñ/5Sgbêã¿§7½Z7¹ÖM®u“kÝäZ7¹ÖM®u“kÝäZ7¹ÖÇ^­¹ÖÇ\ëc®õ1×ú˜k}̵>æZs­¹Öo½Z¿åZ¿åZ¿åZ¿åZ¿åZ¿åZ¿åZ¿åZ¿åZŸxµ>áZŸp­O¸Ö'\ë®õ ×ú„k}µ>áZŸzµ>åZŸr­O¹Ö§\ëS®õ)×ú”k}ʵ>åZ¿ójýŽkýŽkýŽkýŽkýŽkýŽkýŽkýŽkýŽk}æÕúŒk}Ƶ>ãZŸq­Ï¸Ög\ë3®õ×úŒkýÞ«õ{®õ{®õ{®õ{®õ{®õ{®õ{®õ{®õ{®ÕN﬛zñßMþ÷1ÿû-ÿû„ÿ}Êÿ~Çÿ>ã¿§ÃÓÅÕnpµ\íW»ÁÕnpµ\íW»ÁÕn®§Ÿ8 ‹úCs›¯ñžÔ”ã< x’9!³ÐôçéãMð¯Mt0½¡F?QÎjS_@M˜@îÜBÀAð„(î’Øù­Ä@ó‹õÙG©³ÎÐnÚϳßà»§`^žˆÝ6²æÒA-LÉ2©iì (‚kô+1*pПÍW¯’«¬3U¶Øˆ²½@XÌó>ºñM KKA’ây:ÉI­ä&‚!Ö7ôÀ<$_ÂfKBº©Q+k$ Q-Ü&”Ý$,§ùÈÇZ°kâý€»ýÌ´áX†U¨ ¾ßŠT°á*ÈúÈ(X}¤W¸uø¶¹ÞT…É¥•AŸ‚Ò [?n¼ J?v¥_Bš@¹))Ù~ù X¥ä·®ä¯¿å›bÉæëŸêû§ ¿Í'®ä° ¬-¡mþÂKüâÕÆyfPj{êj«ü°Ëþ½6Õ“./« x^ôreßE*cM휚Â>˜Øg®¦]‹”øi°«{“b5ÍãÝÓ·¯öït5ß»jþƒÌY– ì×ìnÌU@ŠjD­ºI×HÛ“H? ÂGRÕœ¹j–,Ü9ˆ w\áA~a6÷où2µ¸Ã†µtUè˜-7쇪'/ŸÛ»’úöØÔ¤ê;×{¦òè˜ó[eLíbäKàªØX÷ª ×åÅùºâ^ñçp_Ì).ÇGŠozÅ»½ s-”?VÍcñÇ^ñã˜÷`Nq×<ÿÖ/¾¨y#ãžוâ•ç×χ£7k·Ñj_½:ih2ŒÕ(2rÂÀ±l„»¼KØ *(S§–ü$CQrš^à2V ½;Ù=ñËcï4]ZÄm€ÏG´*Õ†«EÑ$$¼´Sž ×°¼6Mx7¾j£•[\ÛÞá>hx‚*:õÿ, t{‡‘KtCQ¨µP¶Ø°E¥~% óóq½ºÂò?6bPô ”ô‹èýÁapq`%Š8 †v" w³¸“Q÷sôãG½êÜ‘ž4ß…#ÙTäˆ> rˆ\e´†öAãµWƒ¢H–¦.¬ê¸~ðZRùîÙªu"g¼”= J…XRß~³Õ8®ïÛú‡õ‰s ýÛbEÝÓã“à†ßT„ëØ¦Æ*)êóN›Í"‚!ÇÍ£Vûøô@7úÔ'ãÞhÚÏ@ª. °ÍÂß~ØÓéð‚°Q ÿˆŽGfú0q=§0À]j¯¯{`ŒB¡re„w$ÕX]¾á²ãŒðËû‡‡?Öß4êÞE¾é1Y;…ÛBrqc¡gºÐ½h¡—7MË3`¡ïu¡çñ¦¨·…¥2¯Ô=Z]Ö2eÌ(¸¡À®;gzñÙ¨ŸmÍéÅ’°äÙÖœÕàĆgû@À9œD®L»~üZFÑʱ{øöm³ªëÓ#ãAÜ}ÝzÓ8ð`œŒ¬BTsɶºÈ®x[?þ±@>7»zˆðIñHneX0×,¦WôU½¹_lS“Êø¤X¦"(øXQHšÿ'^ L³®DIH4ÙOæVBqˆaO6u%)íƒE•¨ŽP%ýJ zm^%YèÉ·a%)íÆ9•èŽP%OŠ•@˜_Y%¸ =y«„Íl%•{ò]¼’”NÕüÓÇîÒàßýϬ$ô±wêÀ9\hrä„ÔOÌÕ<ùÑï‘"+ÅQH™öÑþé‰-£(àÊÃò2ÿ~Ú8þEÊ(ú·òCqqõ~ßi{Ùu¦ŒWË(¢ö°Ø7,#ý²e•xXì›þÜ•Qâ‡bß°Œî–Q”á‡bߨŒj Ê|«ˆÂž½m¼­¿ úö­¢¿jWŸRÆ-)®ú‰Å7ƒâw]Æâƒâ?¨âjwfšÅ˜p£g´ÕkÎì~xüèäôå£w‡Ç`½Ñ×ìûúÁÞ#¸juöåG6ŰϤ“ô^÷nôo‘A€±qú ÊüHTdçZ½YWT¢ØL-ÔÒ‡ËTdƦ+R”fu+Z]¦–w¶?X‹"5ÿõ_XËß–©Å)6°Eî¥9Nå·|ÐCÀ¬ß³ð%Á= a@f›€ÙþUÓ{X•ºÿiq§¹¤d¨ãCÃ.Þ·;ê¾EøA1FwB†w#8ùiÖ›\š‹9›Œ·È]°¼æWÑj‹ê7ë.³³|Úë8îÕŒ­I¹ÉIÛªãUˆŒMqΡÚÜdB˜Y=?L±Mó u«[´s³©€"Jì?aŒ¡«¶‘ÛÐZê’2â‘ ]CvtÚF<¿ô²wq™²ãñ&@¯ÌZŸŸyÂé}KzösÊÈNúuBM#•ºóý/Ïêó*{Ê DÿVn(¨Zš«bx½U÷>„àã‡ÍW¯*7µÛjZ©Ü¬ÞV_¼ØxZÕ}§¸)ÁðÐÔ«8aÊQÜ‹»ð‡Âf—8\T8˜[¨%kXHë“ÉìJ¥Ô†¡ÿfš^û<©–N¯‡œÆãÊâò P¥·fÖ(£Š²ôé·ˆ–r=÷»U—>Ïõº ߈§ÍƒÖc@žç\N[¤‡ªLj#ÃuŽ*|bß¿nxïù¾Ñïá*(|Syøpä¦ÿØH ±ÏFï7>Ø€ãÌkÝŒµeÑZÒÿ_Áw]F¡ K'é‹éãÍêvôì.ø1Ÿ|*=Õ>A| •;mô~ýCúü9ÔŸþ‘úo6>l§#H ¶ÔNGiÝ¥uoFëŽÍõgVþ©lm°ÑØòlÚ`7sSqÚß„,{·#¦ýRÓ.œe««0¬°å…03žX>ÐÏ!¥çÅ*vQçⱇh±º8Ò¹`M8Ýßo #.ÄÎà­eh™!°Ø,ªú”Š.Àæ _…fm8‚bC!²æ˜Ã#³óÃÄ-ƒÐlˆIi“% vìlVÄÆÓ¹å¹uœâ_É—¼²n)i»Ï!®œ6[…~ý!Q¾¶R ¦L¦õL{¿õº€Šw&]\ G–Âl¿—ÍV%«UÓì}ÅüŽüˆ>·¹Ë*3Øïx ‡þ»jØö3L›h]Q'5±ÑIK¬D·ï¶h`Ï*¸ÎÏj´ÞæÞ¡¿«Á¬/Q¦ª·¨ë.æwD§Us ü£ä't<£üJð¹¬<2BR¥!™09üv’±›éù¯øÝ´Iî pi… ¸ ù7`Ú :6¯Ãp”›ã×]Kêƒô>ÿqŸ"k:‚yG¹¦?ÙTòþݬ‘ÃzS÷%ø$”?üF9±o¨×ô› yP’_B™3j¯°(A¾£Ù–†vÎ’ø5 ʼnjòûa I&àß›ªg‘™.ÓSŒútÉ`!NK‚޵ÏÃvIÁ‚5έr+¨ €Ï„EBì-cN£Ë õOü^?ø…~Aè¨Ïâ¯Q”wÏDpv‰íäKЬá¨Mmµ¡ Ü·ãü"wщÄ̇`aã:ø]£P|D:¤ü؈ ¦«çf?%)vƒ‘ÎÅ1‘œ²ÇSî ÒÈZÀQñ¡ÖH.¶“OiNïL?akn‡|*ºg+¯Dç¯aÂêqIñÈ7»3ì›{¢¨Dl3Ô8¸'¶©% KšFñôÕ«æ»JI™jX)yƒÐHü–¨4,Ó.Ô*>ÔðÀÜIæž[Pk¬Ìš‡Ó ö%j¶eÊk¿È§íËlBY0ÍÖâÚ‹eJ«GT°l‰Î‡eæWÞ09Xb(ú“¥*Ê”6PÈ<¶Dï‹ÙÊÊj§ peòmgã‹ÉüÚãe4!iZ¨úE(–©rö;s[v\VVeôËÉïO ú3×Ôâ—UKÂ#JŠ#zŠ£éMgœÅ"…ÔävÐñ©ÅÑ®@_£ ÿ;ýðõqýèyøL?Älæá÷ÞÃÓƒ]ópc]?|G•n6§­?$ âð¦~òưƒ¢+¦<ŠO ÷`Ø,«¢¥ ç¼wzd½¼R GªÆÖ¬ .Pî‡W_ØA<ˆ÷¬Êü=D½^ÄÃ!ôA„&­uÒsó‡5qԸljâY§3#ÿÃ<$hÈÇÓ[º˜¡,Iàj„4ºjÑtŸ×œB`DϰˆÆë¼[S—cÛ÷ågÇHæopp”¨Ò0kkk†lcò;ˆäA2Åe!§È/5xtà~}ç80óW},P;…™(hwجx‰C*¯FnÓóÙ'’’WLõÙQÔ|¦ieDiJÔTQsôh¶·¤5N|ņÊcuÒI­XœIÅ{­XÞmþTYòp˜¿äx)7IÈ3Âw@4òýB˜wå>gfØwƒ +)'ú W@ŽH%ì¶PU¾ ­ ÎPlY>wIVFåËQœg…*°äL/yZÉð×]7º@¥2ëÉÔÍmW 8þ´D¸ј° K¬ÛßUClQ¬ôùN‰Vt[ k©wŸ’ÏÞmwÐ||õÝ´ËW7µIú¹ý¥?ÿ}{M²ò²¾Xu3ý`ZïZÈ.£!ÙÚj“¢æ(ùSTGáö¨ûyg‚‚UŠJ àÄОèê 쌨¼ôhÒÆ 1‡sË­øùvj?†~{ø°Ê(ì2~p±ú‚ÿzð€G²SnT°i×<è\ddP—7FNTÂç†(gŠÀV¿àL¥¨¶Àhp×”-­?bHeëûJgÊDŸåÓë<Df %D šéGVìWRèàÊ÷,ìhLɸ .6’QÔJ0(uš'g½n×´o5€X:SÏ8ϺÀëÂ;H*ßΙ:9˜ÏpwÃ!×_iRc«¤´ÕÀï G?ñ=€µ>;à¹z­ÊKþ<*[|Ü“ëÀžýtÇîáí”j6;&Û®;ûm?¥Zðtþ“þpªÎ% `þU‡  ½»³ úIbƒñ·{è*ó¹4%M™ª´1-ŽÙ‡ÍèRúÛRó"+ø€jBÚ‚“Á,Qª¡OLµz”ʶgªt«dþ¦Z%÷mS‰ÆñÕˆi NìC#½%]¨ÂùgâcÓ.ciΘÅÞÛB¦úøƒÊ7B­šÁ‚­„P‘iw‘vãMƒºT@66ò`ÖÉýº s"?Ò8Ž8õpšgã~ÏÐ2·@&VLq&3’iÁ±h°l šªÁZú3¦éE‰ªRç_ÀǬpÎ &æoªàúCåñ[Q¸J@e”#’æèz†`AA:kJB?L–áA(,fþ 1z=™–dw’yîçwÁ¤U³ÄWÃßò ¯®=6Hx(GÂJ¸¡h/_`wAE©Õ´W5#ÕU&—ÉÏ‚‰CzƒY,/Œž|Ú4<êùN¬-Þ÷ª_æ»`0æä1wëø´aáÚO[›8'˜æI.vŽÅè¶R<´w"ǂƇ÷g1› ^0`HbJð‰…©ÇPxïÜŽc4Îygƒ€ïXÖ7£î®¥‡Ö“NÒª¤WCÈeKγúš„ÙS0í8!MPï l">Sl’O ó`Ï8Ì]âm‘ØöZM­ø`«à9ƒ»ºZ úÈâðþqpê²|²¿>öÇÊJ†pñ>bNJ‘Í/â§^Á²ˆÿ•6.òÝO7û×à§…’®½Ì1h¥J ß›ºìÑ —pr†n~ƒHˆ–áPé u”(0VÅ î+ÌÌYÖù8Î1›¤yQKXëØís@'D?Ðå[uè\)H|/ Ê?ePꌳøs-(úƒÂ½ÈZòYd6• z…l¢Îìñ…ÅŒ%æ-…í ;ùðGN;  ÛªBË4Ç1{gD ûï23{<`¶7ÑSbúø0-ÅÇaÑ•cþâû=>æ ävBŽËcy …ˆÉWE¯å,'›•29­Z†ÆÈ‘\¢W9pÃNgf¦ÕåOKH*xÍ©Sð_ç Úùצ!߯{˜wÚùÁê¨X #¹â0.d fÑOoR’,ÎÛ”.îÉãm<«/üô"xÎWñûXI¦‘T„ZÜü4[¢™ã~İI>£´2ƒùÒÌÍU6¸Õ¤ £ͪþ&L¹Rðý†J®²LåvÆØpDÒ€xa>šC{\̈ŒÌ#²Êºh¶·]jË «Sa¾}Ýp HUæŠ;Þ“M¢‹`ðÔ)–¨7Õt‹²ÌÀê/°ÎépÔæz«áÓï¬RFwÂÒ»üî‡ížJ9Z`7ªï=‰ÂuÜ&K¨€’‘á]äT®ïôˆî+O­&J:ðgQ"ùû ×H¢½LNz¸ 4ÅÇ—\©%™÷ƒb<À€ˆï&ú(NÀÄ×I)öÅ'ç|ö¹·˜Ñ¬àiq\YÒù(65 ôÙ4ܾZp(Q]d÷χ#LùÇ0,äù&†-6ÂOÅè⫚D9LœmáS?âQüyFäZ„ÅX ᄳ® !Fu1Ù2[ÝÅÿ®¨ª¬2£PÝsÖ|¨œ™›ù ¿»•œEeªVÿAr¢ê¶Ëè å]*%73Q’¼ñD’ÉɲKH?¼u׃ ÆwQ£ìD’ý_Ý0—f dm[µþAG–2á5l6ªK¬ìÒë&^  œÐ•éIõ]¹"W(ãkiŸÌ(¶¿?*’×Lüja›óâëNT` q›¸õA€!ÅÌT\Ñ.Þ¼8™‹·/­hqë2#@×Ñ8cߟº¹ÂfÜXÎbÕ+Nx0?Ýü<›õ§[Q„§1äl‘tsÛöyb KüƒËÇ]8ég‰„EÉÐò‘è9¹CB ͹Lâ©ð$4Ît".°õ)±;‘ìÅisüú¹¹ü׸„Z‹Ì‡V®.¡Ô’bÆðÉRddHœvèbÒdÍ„?3œûÀO ‰!ÀÛq¾ê×òe’ž»ò“ÿg\ì( „X‘ÉváQomyzÖ›Fø†¯ešCO_H`Ï3CGÕ7à U<gj]‚×qþFTÓwæ.8ÏúFI|{ƒqv‹A[Ä8zÁùÌšµK טÿâΡ“ÛZúpæ¯Ðé0%o/fÚ*šPƒEÁüï;ŠH7‚ /Yê"Ó!Éìê àÐLæ°ƒô¯–†ïŠ)nm~ ÇÈ•°‰BIÜŠ1ó&)4«¥I\Ô0ǹÇÏgá3¹@4þÄgñŒQ«1$Y>bãÕçíÓ;™¦SBxsØ {JÌ+‡ðJ·¹Çtܦ#qšª³”}ð ³Èi¶]Unv?eµ*þ\ç¥"ghS( ¢ `,Û+äI52_˜J|Ô5õhÈØg=Ë™ø3fÕšM‘‹œâÊïÙj Œ“»‚ÌâÁQÝLWœ¤»€±%^us.ÿ¬øÙõÏàÕ¾Jæ/ºmH-ù<¾Ü¶j±K—úÞ|Yc}Á´–îˆâj+ufSk-*K9h-•›Kƒ™JÊåd5M°L"Ou™g£ ¸ÛÃ/½ó[³©/†ãÞôòÊS:` hwØæ¯Ú³§–±vw}-U÷«ý£§ÔWÙ½„!JÐþ¾ÑÛÎ¥gz5ŠÓmS©ÑR 3ÜIÀìƒ*Èáj@ŸïzÏqº9Ó9^…ØMöžiB˜6>T¹%ê%U@5GjÀ¥UðØDl1´Æ<¯ì­:0ï{H÷ÕŸú%Ô콆æœ1Òp–?_™'‚Cªpïß]ø¸‹Ô‰ãš+nü%dü©BFÑœôÏŸÓV#æÕÕ²o Ê?Q¦PÃä-º#VÄ+~ømÈØgmðæ iŸRDƒAß¶Fs#ÎÓc#ôºÍ$›Xý%…–š]…‚ÔB<ÃQ³K óôKE Ép×y.€«Ýæ¥àÆy#¦ÂN)n[²ès^–@1û …ÅSxq¾êR kÛÚ˜Ý`@ýlä‰ç‘Ú”ÂÞ´ó@wr;Ax/ú­¥’–>ø,ñ[)¾‡~cúÀ¢‘ÄmÄPž„^©Òú™{¹D0û*jý?M. ôŸ_*™YàÀÉ»Þó1úzÊáåÚ»³ àWÌÑçò½E…«†…~³›k5¾¹@à÷±7j‹þCŠ3Kì.*1ÈÉÛ°$b„fY_vŸ÷¤i6¸©ÈÞ8lŸ¯6÷dÕã"µu³·ººu²;Õø;¼@·‡ÕUi(`8×}ŽrýÃ"n”®¨9ú[àÁ­PYØý™kóíë‹}Û uSí®íDø:÷µ##òÎ íÜ9%À¼É- gÐT® ‰´%×tq_3‡Í[•?´î´y_~›MÐ%AÿLdNì?ü,ÿO0BŸc>7þsó©ù¿Büÿ·ÿÿÿOøù+þÿ¯øÿÏøü+þÿ¯øÿ¿âÿÿŠÿÿ+þÿ¯øÿeâÿ“üéCås´ ñXá4k4¿mýìF=ÉÁœùþ-‘•Z ZCSB½!Wó’ðš1á‰én—ë`dƼ+8Œ (X~3em®³]ÝPd$d!é$ßcœrW’ÊXdR ÖÝülv‘^Èb‚‰»3о„ $ Ì©}ÎnQáO*ý€SJ²*:–ÚpЃ:Ek¥mf`F„"‡+’!е›Š÷þŸœU!Sݼz1Kè0A8 º¶É”ßzéÓó¬×wH­EmšŸº q°×Þ­Ÿ4N079AËæÿð5/ôÑ󛻺­¾zeaëÍñáéë7°^av±K#M]~¨ôÐþVì!À]Æ_`Bç9¯æ”<Ø _¸ÄN%oK^ÚYòæ]ièYû¿xÂl'§GG†BÞæ]8ÁCóFŒ‹K•Åàlv~)±¾†9‘"¯F5øïægX7#VÅÍ2«"uÝÚùÏe-Šü¹µ'FŠ/¶&‚–êˆÝ4¿b ` s}¤ÒéPÏ@ÏíGo½×aig•ÜðŸJQZŒ¢Á2ØR§MÐü*¼ê:hÖiž¶^B$:‰} ;y¿¡‹¬ßlF¿4ÌÞó=ùvýæÛè—­Óã›'oT/ÖožyP«”Ì3±ãÁ³‰V$½߬x±$ßt¾Q©XР ¢¬N0.N‚äX2˜¤¦”wªf[vþJ@Ô|»ãŽYdz©ñ¾_W§FöÅÂ`'rz0L21¸°Nº¼ý°µ„=Ô¢H êÁÄ£QNË•ÔDGßîâX0ËlzÞ†nAvŽvމŽÜ6%˱JY6èÖ ,¤þLMzÛÛ0\ì °“²ÅØ{Ghkˆ¥â¾õOUº3êß/ïp×O>1×dŠžQaI4GaØI ‡³£Y.¤Ó¶ªëåýñø#ž¤ôAH=«Ûú*/¯ïñ&j˜¤ø±¦é+¾qõ‹ŽΓÒÊ»ÉÚ ´Ãݳöù!’jN›ã¼ÙóíRV§¯À¹e;‚׃†NPsY)¹ þ(¿NªàjhUe—‰ $=Ý݃Ä8í¦ÙÞ4 5U6Äác¬ŽCбµ{x”L·‘2@{‡-hjù!]O·¬ Þ'M¿*X+|l¸ßV9ØÎvJ¶S0ÒXIÛe{ØM7 Qì ™M76Ÿ¹¾«Ò¼ˆ[³^Ê.ôÍqÆ=H¾ncu>ÙÝ4T>H wÊ:îCôª®ÀÌ <ÓƒUUhmC@ È~æþF~Ç0Ú{¬ü©gÐÑ¡¾È£M¿zñÉ®c,Q‰E–p„™g„=yŸÐ7žÚÞÝ›C6à†C–EÌŦ}€åÈKMôåsGƒÃ»À%¬Õá—Ú)×¾$›'ý„îš¡®ÝæÒm&úå]Yu]Qß…1¯\ŒÙ’Ý,â|[8Ê}à[ó^<`ÙiÜh|y/6J^¨FôÞaÚ †{ô Âfy§‰·¼[Ô)Ý%»BÛIØ)ž3ýBuŠPhè±#QÌÿÐ<¡T%#Ç7ãÚ ×ã7ˆKiC!t…ª„—ô¨å&ÂÏÅݱ®+#où€ßÚ¶›ôN™™˜`àÒŸä <{è¨mßm5VFÅeX”¬®t°#Á0>~—?W„'ØBˆ!þ…°à<RxÀ|Òr‹ÂI*œâ*Û–E÷)΃ ~#.Yr¹HÚÈyx¨fÝ´+o !ÿóIíWNœ³hßF·-—]rû3¦ÌßÐ>ßM;:ÂÖ†ÁS‚žö/¶÷K¨©‘…¬%€LÆŠ=ÅCñŽ*œ9*w –ËÎtÅn¥á M:½^¨˜»k¼¡Š'fÛæØÈÛëëJ´x¸\›Œ†ü)$ãävŒ wín î«Ë „÷õt8Íúâ"¶D :õF>ÍÀ‰5<"Ø÷åƒÌJý'»õ#v?Lmk©Žm½ê\åòeŒCÁÚMÅí½­â³Ÿ#ÏNÜ3Yß´d¯Ø™åùt,šOÍo¤ ¥+höÒ5ËËP¸¢‘e¿D”?r_^ذdÓOätªå[ÚÏ7eý,ÒäH—±?¡ã¿-9Á¿ý7OðOwœàßþU&x9LG•&Ý ß¡@¨Â#Žjʧ•xÔ€;ÚúpÏŠßy;öj™[È/pøù¤þ*¥ú3å¬_xSæËUŽhbþÌöAãµLõçR­’žú‘³ ú±uÇB/›¯‘Q”r^"ø~Ïü7ë‹:#˜5g¡¹/ -ÍâŽR¦Q¹[Ý#µr¸£»ákbÇ|ª˜B”mÈ<¦¶oï7[ãú~úÇiô=Ýr{…Ì`Êþ£BeP÷ŠÖ—yô}ãŸÈ4Š4Ðx¹»×Ü5,:Æ9ÝÛ# Bz,Έ÷……—Z&KHÛqÁA¡Â `jÓ„»5¨á¸>,§tËÓ²rŠXŒ| :Ë+'4‡ä½e6|<I°ñ#§T³¼zG³'õÍtœ9Þ]È#rrKÜ '×ÅXCÔ"Ã}Î} ¼½Ž‡a92¯‡!*"9ëe\2'|pù;±ñ„ŒÌ°ùä ikkiq¿yÒj7ÞµŽë÷˜sÙsI'#ªîç™áý|éqŽ0µ×&ée&ïaúèoš™,=×É7Í×oÚ¦BD¬Yùv~-p^i¸ÝÈñØ?ü¹X´Oå+€fT5ÁÓ%Gšb庾²þd¨!×”7gz@¬³®¾OÛnòш­e+‰8%Á¡½Ù"YTÙ¹†-›ë4©›]I;ôËvâ‰FúO‘Ý“®gÕ’,õDË¿qßÏÿ\i†Å”çbd"þœ–É´4³¸µjANo¬5ºý‚¤6•°2À¥Ø`ˆý1§ìé¢ék¡ƒŸ½ÚQ$¥×öTaËáÎ,vÈð‚›Õô‡øÝ³E½dâ±Dx¯&:`@S=òâ{ 3-/ŒðµÇUKüzé8Ýð{/TwÙR«ªµß·„‹– Þm»R–MÚÐ ÍØk§mоuºWœ‘Bot<¶%ô‰~쌯TílR(ârÛr•°]O‘#~¾cø¡ÉÔL!ìCÓé0½Ìû£”ï¼lõo'½‰Tûü·]¡Ï`ݬŽúp4ÁY°ØÕ„69†OFöñ ¨ÕÆèª· ¤²"^…A=óã*ÓUÇgö"glÞFÚýB‡»õyîv^©õˆ›r°‹O Ï\÷(Úr¼¢…-GYLÌhaŽüó_޶ÙD00§ü˜³Ÿ§„ ªµ¾0]NÒqéC÷pCŠ£‹ç°Á_<ç/ªÅ"‰/XÇ¡l-GtA¨2@ŸvŒ"Ø-{|1«OXÊÙ»©%6 Ì¿Yq³ÊS R¢-‚ÞFö‘.&Ð,«ž“¡ªFË1ÞX ØY•§H.ªo{jÕöÖª¶C:&gÅúy¢™ Ðgñ…{6ж“à F'{¥@*^$Áy²©".Ï5ö=3••Ijó+b¹Mê1lÞ ›éåx÷ZŽ?¤·tı°ñ˜Â®c˜ø&^Â’SYM8¾8V°_­_Ží—fæö;‡u›“ð8ò)ì@|ÿb§ð®*4OÖŽ¹<¥9¡ƒ·¹+”jxQØ"š „_ïì8±äo÷Çs_hŠ8m85£]pµQ*¦pk>Ÿ#Æ;•ôJt…«r³cïTM'oš¯Zà­kŸ``Wg]´°fÍð¬®Úv Û­TÎwi'ÐA…óûÜÍh̃È[¸øºé"á´Ç'þK¦¾|ò½QfÅõÈ›ï¹3ž.]ç§ØZ–3ÓÐ1{ÙxÝ<0D®õ†tÊЄD¨%ó¥2×[7/vR¦í5°‹îab$ö o¥¡ŒqýÎ?è<Â8´ _[ht-ëJ5ïv:åÎ%ÞLø»8,µn÷¿HÆHFÌx±xçy›à w¿Ýx;ò½Ôl5Þöàô E™uÕÖXØ\PÖo­¸ÖŸ»Ò%ë,r·vóH+ ¬òâaâTÙqE®ÞØDï«S‡8c¦!sN;'-ÅZYsÝʘ«ÅfE„e¹aýÂQ9 ¥¸›‰/ƒ/žï¸=PÕª™‚¦#I(ŽC—Žòv‚•óÌ;3Õùš’HånKé -¿<ó¯ÿí·¾¨uWƒÔÁ®…ˆ6Tb’':äb­ Øzâ¶©2 À—YM—Ñ'BL²nëH~Gå VMÍÜàKNðVLu c"zLÃEêuhßêí;]@y„dJ+£ñp¤4îù€¾ÄžMŒÜˆÈ¸ ŠQ㦽„ýÇc¨Jú@ÛÿzüÕ ‘“·x#ÆU‡Â “åæ“§Ûà/5CßRÌšÔ>ÝÝc_}îSªÀšI·ì:뜪°Ë?-Óÿýú[vëÉyÛ´G»’æ^»æ*îË3…£öþ XòÂÓ~ôéÔÏéuæõîVØG6ŒÚ¼ Õ÷~çÐ?bmkY½GÅzýZ–©ä¤¬Ê*¾\ï–«CÒA¥éÛú‘¡x.¨>´áÄq²{Ü„ÏÀ?Åÿ޶z¥~ò‹µ!E'y”ˆ{ÊOe/ÜÐp|è*åÁþÝ}ÇÂûÿ¨U ãT6Q?ï-uVç-æ—-£Û˜ö'<áo±sÔ™³NwЇ “,ãu¾w¸¿LjóõVm_쾘™f}¿]oźf¿|}\ÿ©Ñ®ïî, Öñ¼x³y§ães¯¹»_è9zAwè–!p™„†'ül8ìC…rÆÃAÑö?);÷sÈá;3Goþ [éït´wcÛd÷¼:Ž¿38h}ö}%Ýé#Úyøt¤¢û"§Øß/ÀéÁnë«“Ü#è Ä¢BÐ! .xë”GÂ<®X38GïÞí5_7EÍáÐ|ºÐˆ€‘°øç÷ÕâYT_×ý¯_Íÿ:ó¿>/I°ø°Â{¹NÞ³Ì}ÂVc‰¹&ƒ$ —}Ãdå Ú–à_[^3£¬33ÇÈ7/€ù\”Cüy·‹0=㼟1.Ýpjl†eüùl”C®Ý&P>Ëaƒx=ó×âþõN0þý´yÜØCø Wþ2›¤Ï0í…2bK¿©Ÿ´Ÿ˜G"[øu¸Ñ•Gˆ@~ÉÀŠQVÜ ‘'áê¸Ê ‹‘ãèxwÅ›6«-&FÀ|òÐë2¼ôŽP›¾V"¸‰Ð 6ü |xûÜ´ª @PnYKšSrø %@ƒ¬Î¦çDχý.¸¶ùÄÛ†~°%~rF|7Þh,EOÈà3?C$ €;1‘˜'ù¡¿¬‡¤¨Y]U [eÃÏ 9ÐÄ3}$w“"(1 ÕžC§¹b`Ïï8Ï‹.(á§.³Úñ;¹fÓ>i5ÌÝ%Îfø{#!¥XÙƒ0 ÏwP¾MÀùÚÂ?ªä 6ˆi B7¨¥½ šç.d#8X€œ½¢j”ÔÏÁÕ€7ëÈfÀÃ3ÍÄX3§ À p­æ’$§ÏV="5!xOÌ6mk` 1x“@™ „“e¼b¡Ýßz| &³´ðb—Œ3Â’=ÄèÂ#ƒJ$öŸÕ½œ³N^]KO†Wù´Д×hñOÿœDÉàO‡FP\•/Øg>ø½Ü´.­W„÷F„áÌÔh?fø¸S~èÁ7S‹w{ÝëzA•|Íû”ç–Ñrkv ¼ÁOgJ5¥S˜NFºUµÎëêÓîéîQzÞÏp F.)ê‚Ø»"§<¨pw!VçÍH èÜe€;šT*ðà üq˜«ÑÄ\ö”6—M§ÀžÿÀwÏÖ™ )ȳá5â%ÖðS"¾+§œñ‰ 0ãìJzdÿº7A8_æ*€a êé®B·Š*Ť܎ÅÝÞ‰ü’`U‘Ù:RN¼wšÌ?p‘»xv4;^eÖ¿În'p»€‡â“'A&2wsTѮä“¶Œ€tÄÖc¦>¥}´íMØsp3QsÄ'‘Áú­QýñÏV¼’OÉBô…?ƒ;Hfοw¬&`›q3Àe"íÒðÿ0ÄÐtɼç´^Çünî²iŽêÓD³9C|%n¬äŠ#QÌ¥7wÍm9?Ä>qôm«H€-1wóiðEÈ‘$€`jFr÷ ŸÔ¿][JÆH¤1xÓ“ÉuûÈꙉ†žþ&ƒÀB•hÂÆÍœ Ç·Ú3Ì(ÄQæƒNþÏBSLÇΩÚ‘.;Ñ(Ÿv€%éïU ´ñðf÷ñ&²L,U "‚’â å´~¡¤€Ü’ˆx:’•ÖP] –6˜ø_sJìÎhæóÁC ·Ä‚ ‚!5ÒÔ“¢l§T÷ÎjXþ;ø@Ž #0+  Ÿ­yñQ©ÐýÀˆð‰œó?ó¤ .2ç¿DÈæèÙO"g¹ÿ×9qçĬòŸ{Vо ûýIËlóuÚé —YzÚì ïT™5ºÛ‰‚B5®çp|’ÐV:à¨oä4£N1Z~岎ôóŽã[Ç;w•î\¸fYý“…’Þ×:ް€3dzô~?ÏÎï ö(ºûƒ0éÝt‘–œå¦sÐ3E1]<<¢ø2øå«Á¯ïøWsÜÍ_õý}#à_ª o¼ÄˆäÏ»tO@¾ÔþÔÚ$¼)¢ª97éÊʈÔ$ÊUƒš£G+ `eÔy¨°g;:{¦K8Íi»%<Ü-̘¡×ð‹¸k\gýnû¼ßІ¥ŽÕ$µ˜V‰‘ ó¡™uqüÅd"ÿÄ?ÕÔfÍ0ùÍ(ïL'Ž_¡P[ÔLLIÍ3(SÀ᪺®aO—ÒÛ•©mp@íºe!ú¶³ˆ&š«Â1]RÕ°—‰RŽÉû#Œâ6,ÒésÚ¨´m͆ÃÚ*ÜE$c-æJ¤ "n“Ò–Îq.=¾™AÝ ±m— ë8M·I·Y–Z«éådX®ˆÝÊØÈ”›†¡ecƒ½^­÷[NYbÌ.ûò×Tq‰v viÉÁºô‚ŠWª~o·‹öw)É“ƒðhЯõ+ JÃɈ¦óRçѾ‚:äYÕ}œþ0N×.?=EæÕS²òÞA#gí¢1¸XOiÇWSbs#8˜p5’óâª6¹·Oõ–m½ž&2¸¦ð@wo¿yð#ñ>SJ»ì•¡|b¾ wAÌñÈŘãÞÔ\ Ð]Ø¢¦«( U@(ºæU4»ƒ”M×ÿÈÇC³U†ðû^¿Ë!¦£EXÓ°¹ ”2L,µ×ÉøtüKê<¿ë×ôz˜Lh†åÍ8õÞ?®¢n]š•î0Ÿ€iæt·æÆ™ŽøÔ²C­N/Nó6L{ †ëÏHBC¯Ø_! æ#G‰öáCô÷R8+X‘!6ç9¦¦ i*ùû 4¦,ÛÀÙYAyý:–î×#šS´«p Î~Ëz}œÄßz™ýž ëfEħËC0¸ñ<‚_[ð»Í£í.äöË}”“Ó@f ¿îÒj›Ñ™ºRE1We—ªA ½l,~N³Ò èô½Ò¦دF†!¦3ƒöîÜ”^§@íH÷}Ù3S~aöë@¥Cö5ðD¼Š±%sùURhºã„,0:h>BoÇGè2Hœ¬[T¥*Jx»GÅ„e8õ“Ýf“ÚfX—€Eôƒ7¬ 4;\«ÍX Ùz´ÛV.§ú±rèô;7IÜðì(YñvþŽ­·úƒòkM]9;ôb9lXÊáé–rÑTQª%!-Ébn MÓjNl¯ª:p•<¦áAÈ3øsïOâ\qA~œÔܵõ6v ‘4CIÓƒëQýêS¸eçöâj*Jd¯ŽœîÜBœ§†à,ἬËá?À¸;HZ?Ì~¡FóÆú´²’ßl¥ˆ½Y™~†( mç:' !.îmÌ7ŒWfY2sà]·Ç„7 YRu;ä ´\¿17Îoˆ~r.ýé lE“]¢6·~íÂdëAyýŒ(—. o\ Þðv|PKɶ†²=Zß €­¡/‡}¹M9QäpLY,/È™ ¿ÉÀ Qó&æýû­¿áäo}X[[KQ!ý²b(•ŒôPïÿæÐÝà‚¦u•-»I÷¾°¸Xš…ýÂCÞ~ÄcrºãÞÄMúl:¼ÊÐÌÒ¿µvϳ[¬zFI»­®—”e¢î×'5íù Ø1{leu‰>}ÛZz’O§dñEMtUÓ¹¨åÎ1T»î¦}\n¼Yz¨§ü8^Ó­e+qú<åd·&ÓåysÉt+•ÿ–9 \¯Ô¦Mâj‘'=ÃOÀ„†~bp‰æ7hÁÏ Ç7ÁOySŠ·ûi±g qƒÂ)E»½p¯²èÆjù¢ù•YÁ kR‡9ä³È.عœ Õ@ÂJ*a+]£K U”[+>d„ŸMajàoÌS̼°w×™;äK1¯¥Ä}ˆ§á€E<ó t3ë›YëÞ®¥u—ïõSXãv¡l†* 9»V€„ZÁ 0GP3 S·@úž]!wžfH/½ ¾˜Øé û«0:\ÕVxj£ÛÊÈ×xƒv TâéZVíµMç&Õ÷êÉe¥Ïù,³}Aš°5ôÏ0ƒA×0£f¨™ÞíÒ'+ÚIÐÆÜö- Vʂಥ6?(‰Éµù"›É#ÿ5»8Ú£¸Ò^úÜ̆ù×w ¦@»þØ¡9Fœ.ÛºE{ðx‰Ïo厺ø¯Xƒ!”Šƒ×ÈpÓ'f^´lpëÈ·rɯXIе yŽá—›8¯2ŠÃéÚ´/gƒ®©¥3ç¾øÆ“þÆìꮊÀï£1ûK&fZsiüý·aË(†¯jôËO-þå•<Ù=N?mGkr=M9XæôrÀï7ÂwïtÔ¼—. 2¬tƒj[¿yÜqšçâà ŨÜúÍwç~1Κãn ¢„À M'Ú›è¯#Ûô“_¾*, –;؉õYãˆç¾Ž»%¶E|åíOo3÷ø?+œ~W%“[Uù¯QЪù$pò™mEêWt¥Üðà Õ@Ô¾@×™Vv,Ê '‹ ¢ /©ÐVHìV$Iýè¡Ðv—6ÍÅ º…„Oj©‘8ƒ|êEÍ!­›¹ò;øÚÀ¦Áz~í®¢ MjÜ~íÊÏP‰·xIRª³z”¤ˆiU#A’…Ô1¬‚ÒicP¥É…X A_…—£Í\ÑÝÒ4¥ä¾JKnÁ‡ðo»Û»è¹KÐ/¦¥™§Ø\¢+Ž…ºT¼2uï€ò°{×_> p†ÍÂÏÿ]³€+™Áx²¶¾þ­9×P¿áU’Œ¦?µˆ»þuB’áËÆN;”äzž¬m<[K_ú=è6Ògk¿Eà2Cv9Ùñod¿0㌉= «.¢¢ùæ·Þp61g8;#!‚ŽvŠjì<÷{æTŠuÝw^IvÖùØM(|c™f€Ã]¿Y?ƒ:ÎŒ•¢ŽÏ3±$ æŠ –éFe]ü*Uîº0#›Ã Ù!#&•@®e ?µó+QŽ_O„o_wÙ}2ùòíˆÛ¢ýxòßµ©wåÕõÊ‘³ÄY›ØRÂÝt› ¤rU¦lo¬ó®Û› »à›jÎ 7ÅõžÀžœæ²-!ºŒÄKÞ|÷ÃéêÍ} Þ €7Ï;”>{6Ù3wN×ùÄ ûPšèU ¿ ?’:$ZwE)qMýp­•òÈiÎni;SWˆýážN²+×]# c ¥è¶»ÜZäÂ1LjàûT¸œ$´´^Z•¢_µÓ¿ÿW¸.Úû îqaÒ-›¢‘¾™ç5P ºSr8Þüg£è=û¯8#¿ýÛ¿ý©³ñÓÿÀýñ§Ì)ÄîÉÚkö¢ƒ°ã_èÖ9sgŒÂ“Y½,j/á锌Lt'Cò\#0r2B.g׌em‹ål‹„(Š]œl1MÛvä+v[±¼;ba@úRßx÷ëƒÛû0;ÎAÊíš“d«D Õ\÷ìC÷)"±®ùÁ+?pRºÀlÞúãDFI?¹QÏ· 2¸]ÅïÃQõÿ#a%œÞ¬mÍ„l4\Âè·¬qpä¼æÜŠ¸ß¿–P~+ä·›`IåXØM⟥I`U„‚½Èê¾ 4̼‡r¶Ô·Ozß—…úç*Ÿ²Å ºv°ÊúƒÉ–i¸NÕVw14¬-´m–d×xþ‰}¡êEU„7·Li ©‘ÄeÐ5´n8"›¤Ê–×¹Ì;ÉT8œMW‡ç«ÝèXS´?ª4œ¥¼Û<;-Ô–ÿ}–õ‰s†B—·#ÃÚOÄÓm@Áa]ä‘¥‡Ð9ìQcžË˜›°‡ì×DÆ?ag!üÆ'nbdžëÇLfM~£WÍÀˆgÐ/6#9ý¡©<^ÊEíØGU;074èXÂ-Û`Y¤LHH|;Û=><Þ%Í‹ã]úªæ8Œ£,·bìµ—Z‘h‘½’Tî+¥cG/=òÞìMÚ²]væ¶îý‡G6‡_·¨®B¸ÙHÆàSÙÿv]ЦÉ]Y Ú-+‚­Öº›ùæ†n°\ÝÏZ®Ïçä¢|œ9ÞLÉ50;œŸ2üÖ ÃÖH]ƒ… 9Úå‹Ç°ªÒ#²XëÎ7xLD8U'HÙ4çäÃe„ÈÝj õÔWÿƒVØ¡š^£năqGŸ«Ç¶( k1Üûö14Yv"¤¤ï½ÙÝXýõ¦ñýta³þvæÛ÷¦ <žOmp‡ä¬ö·rñ"ïúBACXþƒo÷ó©ù¶èæ}ß]ê{‹ÄöäE*]õ ÔqlËûôSñVúôÛíðÓ]°H¤«¦HáÕ Ïó+%^ìÚj{1´eÂwÓ‡¦V'I@š±=s±q­?˜¦·äüTac습í?µBØ¿=àE]OÇJOǺ§ãòžNæö´ú92íz­÷¤BO0U^ìµúºX®]Ódד햗ì|²õIX¨ÅËc¬2 z©’П"¼>“ì.$ºwå K¹ =õÙÍd¹Éæƒþ«–`Ùø”êGÓ&6¶êb)Óþp8ÂþøáÖ<¦Ûv/‘£„ç'Aª€<¹œøäõS‚–H@Ñ1éΜôuúk‘¡2Ks99„¾ Ìᇒ†¼àŸ^Øw4cÆœ©q›ÆÃŽfƒµs"ã²Måxˆ*bsq¢Ç”à©ÁÊ‚Cœ¤,rÛ¸1©KÛK‘ÏœýpWà­ÒeË7¬M­¶þ G"ÙÖàþ.Ë5* ê’˜:§‘ðŽÁ²P^?ØÝT®¹ª]r¬då·…È)t¯d-Þ46“K1®+L`Äu±öFVÁf÷¢àeÐK¡ø€òÍ8×A;YKí¯ð AÁ; ë–³4No)ʽˆU1§ æH3]-.ý ãÇpaJÃÍ콸„ J¨¢.z·tñØ—r\~òé|¥Òéxd–¹ wÕÂåòØ2?㤠SåÀs1)×\ÍA'tå1ÆÖ‘r­½òµ^Jç¶T*¬X%¨ùŽ»›Ð¬®@’Z¥UÕknq-¦]¬ÃU×I.áíZl¿dàéécC¦6] Å6‹ °¢æß[’ß½ÕZbʽŒiA¿ÈùnÕìá–w]+=§ò[˜,¬¬3À£ì7Ôz/Ù™K›ü¥–lÌ`S¬* €Ñr$ÌÐý ²%rqv\GoÜ5$?wÐDÛGÕÛ $†pãnPÄ©ù€K39‡[°æRVøžÓá/µ?ÜîXvoD¿Sí}Èý [K®úœf¤«•›†#}±7›;º;Űy•ƒ®h¹úkóTËh?-e|îiPýPÞJÈ }#ˆ®.àÈ>I*ûWeÇ ´ˆ=—Æ–}°p„B©%³‡Ä@—Pß9[Kð¾É&*0Fƒi$¦á!ZÐf÷¢)Ñä—+ÖÕ‹fÎú}¦GXÌ#ØÅ4¨2D§eÂòÕµ fà°×ïKh!KœkIÂQ .b „ͰAšŠþHø’‹‰©b‹ 6˲*Ç)ð„çñ#«c£~lÄÆÞ@‡v%‹þáÈS™÷¯%‰‹~÷ä;±ŠsTïc»mÓn{8n†mh½MNÅäb8×|-ù™@„¬ø–µwRDÖH$)!žˆ»¡CSo2×ð6ƒã ’’;`\º™w KÚ1„9@d‹m±-ߦ;h˜(ÝÂXÏa• Î WÇùÍ[2/'*Äã”ÇšƒÈ´×ê£(yf*½v¢‰SI« Å|5VXœž6Xo¬mbòC¶´H¡ÇNm\ääïÅH±ë»˜Õ´¾ß|}Ðn†½«3Â/¶÷òîñ4›˜È÷ ´(á‡Î¬ËI0„‡;᨜·að飨ùÒ®x' ¢C¾ÑˆïCä‰ãó%1°7½«ÙU:ÊÀÈ9À–”#z+¸‘¾HAwToµÇ„Öä oWõ<=‡•_#lëŒuÄ„\ÃaÚÏÆ¹vš‹ ´éè:dÃíñ/lÿòÃÏU6^Ì¿¼½Ü>C›R #Õ\ö.. í¯È}¢>E«ö«‡aÿ§nêçôðÅ‹ôYÕ#äˆyëê+-êÒ|z'Àr=ÞÆTÝ+OÍ\ ψgV¤= Ña…že¦B¸7hÛ¯¬vfʵD2A‚èžgÌÿ8[ÇÔgËÊv4Ô¦sƒ*T=!iÁrlJ#3.÷"´˜ñ‘$ôÖð׳˜¸°!û–Ø <åY~Ñ Pn<"_ Ï—IòB_³ûªË™ Å OG»«Ïž fؕӥzÖ†qŽ~-ýe8C§w4 0òOH>pî®(†y:D”׳át:¼ÚväýÛA_ A¾‚«!Äe2÷5…Ö¦²á gÀ†*”¨>!Á†Jç^YÈ‹I>'Ä9ÊÇ@{i}ð•! e‡Çטà ox •d83'pu=†`íøëÃWFÃQ»78R7tªèÝ8‚êoó×®\Iú`¦Ð“\¹UdOò»#ûeÝdh%¼¼†ÀN€—Û¬?íäcD¶•kÀnJºù¤“S´-©Æ·’®r”!àª7e]ç¥xn$ÖJ íFèŸl–³ ºùÃÊào›UÑe¯Rhq{ä}FF¦aÐDˆK7[ L" \çùMºšd}ÎWivÛiö¿!c\Ýš‡fTKJ9cHÊøVòßXØÁçŠÌ.fG ¤»å`[eßÜ«ÚAVhõäAGGŶD†Yr9GRð÷PR°«Œxô÷î!•„+¢A j(¾¶µR¢9›C®f.¹oÐÄØ3Üz¿1Í·Ãáñ×»Ìoáå`¹ËÁ¿Bð¹½BôÕðGìj8<¾ÃÍ9>_ñjX¢ö¿î†?ãn(ÞÉE¢h¾ùón«Vú‹ÁËÄóe\IÉ üu+|í[áðøÒ¥ðÇç] ï¾æ­p/"3Ü‹ ËÞ ‹Ý ïþºþº‘EØu[Q­-Flñ?Df*ý½Ç‡Wài¯›CkÐ[¢ÊÛDô¿žÜïô»è!Wýsn8Œá>œ¿k6d&6qÿïÐ¥íñ×]þ9wù»ÿY—ùßî~™ïïþÔn`X«~Ü¢…UJ” Kûôà¸9è_î7*UUS¡¢Ã#qB@í+k;Á$•HØ:+1)É·¸Së†òGÃ/^®î®Ÿå{eTšá¶üÝ,fœ€±4;úÅx8ÁàŠoZ ÌGVbö5×¢–x’K¼“㧃狦ÀÁg#N(Ÿs¼øÏ!ªœAã„öþÒšS(ŽM¶L*¸¿òd—Ou2G­²££Çè ¡V©Çãü·ÅÉÒ ïll¶~íc…–ÜG¨Öš`mÁ¹T¥12¢-÷B˜iÓ%«\áÍ$ºvA û]XQú”pêÞµ~Á’²—ðâáCÆó*Øp˜¦¢Ï‡—ÔRÕ€ŽÛ¦îçº0Ç:æI Œ:3¸@(K.ž¥uúÐÅ­M:âÌhl’yîqq#>`Á¦™>ü­+€­8³IÎPúÍ?Æ£ägT¼É-ûrH®ð­¹¢Ñá, ¢ä4P·ÐËÅ]:ö5ÕhÚØo½9><}ýóÉé|p$R©Û|Ë€Ò™‹ ü|£äNüˆäó­J‘¶ÙÕ!˜ð}¶ú¶‘Ó«.3nž™?æè[ŒlÈ}øò>€Ü'ˆýNè’J§3ì÷sÉ|z>Î.0s6÷Ñûà7rßúáˆÃ¨Dñ¤ã†`¬»OFã—¼ZÁYäe‡½,P(òÄ¡£„Nì½`;êóŠßsE0<‰©ù­jß{Õ4À±èûMàiï]ÜUmŸSn9œú,ÝX_ÿßéÅ̬ª©–ã#1ñ Ô'„+ €4ñ«FÚ0€¡4æV=Î/”“Q1‡Ãij¢ ]4q=O‡³1Â)™û0_õfn˜-ã_d¤ÏwìÂÁ„Jxšð° a‰²8‰Äì™ÞŸçê¤dg¦ç5a!˜ñ¢aù›߬¹n 78êEÈ9lŽÂîxüÅKõØl°q½± O#~•ñŒ3.‚;Óa3Œ ›¸M}Ö™‰ØŽF¦äV[:8~”çÁU“@ájvÈÄŽ+å2š¤NK’L€«P4²Êšu9ß}މ¤£aÓ¸ø‘ À4¼H•úÓ¨+} Ž`Õã ¶8Ǩò‰¡kA¿%¹ˆ{!ôTGš¨'Ú¸¯K—Xüü½bˆíÃ!•ñ iÀ)ýy @b3’Z·G¸ ”0ì\EÜD.°A:x&1ƒŸpé#;™F¨ALÉo¹ËÎa!Åùµg«øŠzsשXê‘ ®ûó–ɶU6j³‘íüms–.ª']o¨åE2rÝ#d /°˜и z@X£¤,ÊEQ)?°ºîPeÃm‰!WÉ)5ÒÖkNÅY@¦ùÕh-ýÛêç(&xy+þHy”Ê£Ö½Sa÷¢74Ë`-|µïÂxçR¿&·°L6±¨Ãt)øz|(~8.üéJçDë-®Ñ s­÷!—¶”>TÌȲÁmµ§ï<Þ.Bü›³pb¨lõ3(¥€,CAJüï–=“–Ç+¸ÔQàêRì Dù®]»ÖÈ(ç,Cá'9æèß©;öNU_lqØgRz\aÉ¢ÇÕÕ²DŽ){’c¼·….Á@s²£kÀ!†Ý&™ î_O{9îeøšé?g7ÓŒ [œWú¿¢ižÎˆÖ”à®â*U!ŽE7Ïi‡œ7ÛFF™äFä9'¥9.fŠ»Àù²£Ÿ"JOEÓt³_Ûp„—6É9c«æ–“ì ƒ‚"òØ8uàxZ†l¹Îæ«+JõÔÈŽ+|p}DqB÷è“ü q÷èz —%Kkú<…`ªáN6Áä_N8'¢LÛGéÁm8PDfæú^¥žÊÆÎÓ—Õ4]}aº[‡~Ý{) Åp:}©öƒ+-fqñÚ &ê@yŠ ˆÉÁ¯ß“Féά»eÇ@‘8,M±Ï²4mÕÜ]ôVÆQk®b†]¾­M‰Þ Ê…ÃÉ~­§¢Á!ÚmƲ8¯óyŽ^T ×$_‹/¹7Ñøš×Æ ÐÜ Ó#k:YD¥±Ô¿2uþ" ¬éÍN‘b0Á°Zsw‚î)bñ)X£/ ¹eTÖ¿+‹´–æz´ÄÓ|Üb¼xÃÊn ¶ì]vå´wq ìËYBxƒ8‰…û“¯K¬æ_y›þÅDÌa"ˆÈ|}b§Àü³xsÝ«Ëß•Èå¿›ßýP·\úøû’\Exë3Yû ÷°~Ÿuûÿu÷ÿ‰w?‚/§²DOþ/¥²?çìË‘æä¡ ãFZFÿäôð¹µN%˜q)W„Ï jˆiíbTóÀ°Œµ¦3ëgP™CDµ€¨7mz’èX³ö¦‡«Ð3SY~Á’ô8ôMcÊ Q̦Šü á[o“Ã#¦—¸Ï& t)…¯3 Ð˹9±œS²qZ ìbu-!ÐØKRà~Ìÿ>Ë 6X$È5íƒëüE>˜õ¦·£ÔÔvžuL¿0¸šBì Cx³qÿvmm­J«8“‹ßpn÷Ñj^e½An» $J „ÚÔð¸hVÂZQ3o 8¾ï>)9·GvÆ6*Τ‡Y>ï;îçòW5y3¼†•²“Jf7»yÍL ÅiÕˆv 8LÐr ñnO¡KdÓ³­©hm·Ù°×›$€Iú[Ö—Ü@:«áñ‹_æcñ9I ±8<.SX¼;<žÇ«  䫳.-‹K­Öª'`ÒÒ,-̆”ƒÜÜ6’lÆf ³07 S‡íÉ!C ¼Ð[wͰÝôr8g·÷€ÐÂÆ1'pÛ–êó¶ +çܦaムÄp]¾Î%öã[]UÅ*\(þíe±„-X&¯rÜSlß»|àñgQÆÔ|Æf5Pa¹Åñ¯ON_òצœþúQìkÓ©•G¾ÿ)mž²ÎÀ΋±žRÎue>¯Ê3§4TjiæSÅ˺ÉÂ×8Ãòšþ¸Ã\³³`.ƒ™¿ó\*î:2oÅfÿFS‡?ÿrl9Mx5p^âuëÿ0~¦–˜)ØOÌ¢õ™ ¯qr~q¸Óa‚O¿ÃEC&Uû ™Ü÷BNå)°Àð˜<¢ŸŸOWÍ›a§ÇØiÂßnLök‚I:ìîOõa?˜WÀZÈà`S¦eDß P.ªü‹yÿI*K¾¥×RDh–óÈÁ©Gp¤žQ'0êñUÑ~cEçÕ0;`¤l˜HQI¸‚îcK–)Ñ·&”¾¸ nhÿ,n‘äÞ/T»~ŽÖuÅOÕ¬½ñ¾švÏPÌ5•ÝRûÉî§ö‰õH]ZØ๖8wOÂ|[gÓÒ#kþw; N§ew§}@õú,Çý%B¤þmœRLÁ€ßD«—pw×^{y+ÉwdÊÝ«÷î¦ð2ÎÖº:gŸh:SH¡áá6ØGìÃÒºï—n Çv-íÌÆc4ý§ÿÈÇÃâ™ò ô{žpøršXÛû`¹Órw_·JîîWÌh*GMµkª)ˆõ—„øéR®†3ÀY:OÏf€îFž”D$Ì·aÓj „QOcG­RE}ˆ)¬Ž3ˆ.oÔTÙxh—äáFÕª7…`ˆí,qqN¦~M"©€pî É×Ïó$|™ &e¬ol>oÚ¦Xv¾Ÿ³g°lk‘€2p»9ç-xz'EñÑÊ7Œº\? A³ÁtU,œmD%æI'·ƒivt‰{†õ6gy’¥¢‚Ã3¬ç§©2XYÆlp=@×)#J^æž’li¦rØ+´J¨²¢\@pëtaž½Y¨ËK@—ÇÙp@Yæxž|ìñY‚€ÇéêÄ©­¡ÜÒ C1X& °,Nàqƹm Ú]/bì;­ü{¢7ž=âw0rÒ Vß:™mÀ¨Bh|ç·tß~Gs±ÂÓá§óizï*,a׿º‡mm£uBš’±*¨@#—º(LêÝß²æn¢…̳ F^³ž] #Èn@ž)`s¸–z®â¾ o nö“?›8cÞ”òT¥ð¯ÁpºÊO8-1d7#õ¯©Èú0?²ŽÎs½£O Ï8Îÿ>D3P÷·ä/Jœ’Ëã¼ä3sæ—»#þªï¯+±àˆøþîØ‹‡^‡]äï?uë» p†®\õ·dئ¶ ’É~à;*lD9ð°ÞÉ BTb>íSbÉ =”¢AˆÞ°ÂK’”Ø~tÇ*F³>ÐR £p0lʳ©e±J¸Û]‰©f4ãè/$oVMn›‹¸Ï!ÆnCGã…\n –Qͺƒã·ç˜ãðüåö\•ƒ£&%íήHß~0 ú(µ°uÇ ?È€Ù$Ð&cW "†B%ÅDî¬Rʽ[®EÀ†iÇL>r>º+à‚º³1ú©Ž‡¹®kxÕу;R7ô–D=h.%{ΊËvÉÁo<šé¥¸ÇÇhÁèÙËz0>? Ê΂ó÷™a¦zç½|,㟒fc¬lÚ•µôdHÑ”6Ëu5K+Ó±Y:gSHÝ!qñz”‚ÒˆßK5ßÁmº² é,I²‡û\g܈cÑj"äåãó«^÷!J&Xæ37£M”ëÅÉTS}]Üj&zñ7ÌžïM· ûCõÞMÌù ‹›¿×ÖÖ 7‹Ñ³Þ_€ÐK‡}2U‡ÜO)[ ¡¾G¼’~ªæÔÐ\¹q¿ê' ÝÅ<ˆ\œµ VÌdÔÏ kËT횈X¿áíØU¨øI¹ç'%£ô `èÁ—Žp¿0m)l~©)ÈÓW˜º¥éf¨K‚‰«)8žújÕŸM¢—t&‘43kØq›ñn§3‡hzu—S$›T—ç™/&4çî‹XBš»±ºoóÙ w¾]‰ðÈ.N-µPϯóo̹2^ùÇ<…B‘µÉg£˜¯3påè²XNQnpøHƒ %©t­ç–S1bÉ‚ ­|YÞ¢”óÆþî.Ðk“.aTŸϤ[æœü+`¾™&Ó­%±Øå÷`wvuEìˆ]nw3ÇáR™ÑKÉcÜ=ÌIw†j±ªÂ«+Ÿw¹.uµFõ~‚Pv”ƒÂ•1ÇÎôš5ï]àœ¨-çÜNòMˆ(ÿñº*Ūm×ÂÃ’Í[Kí7¥Ha¬c´R¬º*–¡gËR³Ovµ–Mþ´tšûFJÆ7êŒóͶ§×\ë@ÿ믟¯øƒÓ¼JÿÝX_ûö»G“qç‘Lþà¼w±ÖùÒ6ÖÍÏÓ§ßâ¿æ'øwãéw››ÿkãÉúwO¾Ýønãñ¦y¾ñÝúÓÿµþ5¸ègÇÇ49§ó¾[ô>ÜÿŸG+wýIV˜ æãþê®9ŸÙÜQ·¼KÓ†õôš093EîúCž{@›Èà,io a°ùšà¦%ö˜ÏUã×—ÏFšûô¿“ü nÄ+2'ˆz‚¿ˆO-¥º›™>IûÙàb–]äkI@©íÏÏìaîÞ£Ë^¿7JßdÿÈûôùá¸wìtZ?jÞŽnÇàU“V:Õtãûï¿[Ý\ߨ„|öˆ)2Å¡îfWgã^÷"W­ä×eÕ˜žšj6×K«IB´Û/úIŽóno2÷ÎfèNB¹¨Ð$1ÎÆÊÞȦəÀCÝ:Ñ ‘\ Í}Á¾5òJ)˜éa§×EZ6®;%ƒUêÐb^åS†ù‚îúñrwH1:C)Œ,dq SîÑL†f‹Xû;2A˜‡®©FÙžàzd5·Tï*¯•õ²ÎºÙžˆGk¤3Ü îÒgu†­n\SwØ™ É‚=2k1Dwâ+ÀòÄ4…vÞè3Õð£;`HNôXgn>3%›ÏŒÂ}‹«bØ˘ ¨þáx‚¶3”ÛqÃpCðŒ6¥ˆt8ÍÙØðF5muuÞ^œ£Éð|zsgì#ŽÙg¦hvŸVÜkH.ÀèMó$=9|Õú¹nÈŽùýèøð'ýì¥/I[oéîáÑ/ÇÍ×oZé›Ãý½†áhÀÉo÷ð uÜ|yÚ:4î×OLÉû ¼SEãÝÑqÃpû‡ÇióíÑ~ÓTfj?®´š Ãj7v÷O÷š¯k©© Ï•ýæÛfË|Ö:¬A£I±Xzø*}Û86<ÕA«þ²¹ßlý‚yÕl@[¯Lcõô¨~Üjîžîv÷èôøèð¤‘À°öš'†!o¾mì­™ÖM‹iã§ÆA+=ySßßFyøóAãºî ñe#Ùo‚Š™2ƒÜk7v[0÷Û®™8Ó½ýZzrÔØmÂ/w 3–úñ/5Sgbꈀ0»“oq›ö0KF„ !± ÙløïÙ/rÏ!ƒI5@b4<ãd—¨É](xýø}$²ÞAå¿0<•„UÕ=  IÙÄ +ä0Fõ ê3¬Ídælñ…()ª7§T šJK°Ó?ø´ï—ŰÿBýøgyž”ý-Ç5د& Mä˜Äá#ìÄ…ð<â5eÞ}†)¯Í~Õ)ýÚ„ª†±Ûî”h:°ì"UÖlÆò\ÔrZ™œÑUC$4@û‡à &¾‹¨3¢öø]§}Ä®/cI¶cõ-xE’§V‡ ™ †0† fì3õ¦Õ³X¹ç;ª#ã÷ÊjÉ8Dã°ÙyQÙ=$Ò]Wh¨+Rͱ;:‚ ù±ï´ÿª·@΢©2METMxHoH4Ä*=:^òÕŸ:»µ½¹¿ñ£*ïP$æ0‚-Á—;\õ2Uv Vi˜è‡Z^^|‘ý0h4ì•K[N: Ô§¨²ÎÖ©YÉ7µgUæ:‰bŒRžÊø{õ—­æÓœWÕãú~m5 íW­¼f»µ£ö+º2òZÔööà’ª¿®uP“ƒŠœ¼–¯j•£¹ þ+ÿÕ"Ø•vuþ8xÁšUjíWZ¯:Õü†oàk¹_N ÖhÍýT« _«û¸ÙªÑ!BôI2¢êà¢úK÷j#Ðêì×/Û¯ò@7ê˜|ØÁ ¿à¹Ñ“¶up•5Æ„@Rw¶ŠçlA»Ò|YË›  ‹ÙÔËkæ¼v<ÅH#ï£<"¼…î ‘=ÕEÿ£Dµ¹¿WÀÊœæÄ®–øœbºWêm55þ…=d¬Bö^.âEG-ç ¾€á<÷‚âfðì™åâ•Ùtó±Õvs~Û[VÛ-Ëul{Á„\¢3:‘jÅAÍ&$9Ð^y5Oõ:ï[)Êù¶áñ/‚FtË[bx–zs!®m,‰[ÖyÍ€ºK¸\;:ê«T²ãßâinÊ_˜%/).ë§Érä]hªH.\êp—? åˆÂƒîø²Ó}R*ÚÛ¡&weÉ(¸Õ Ì?ì*°bÑ¥³Ž†*rvv;Ž-dÞ꺷ÊbD_ϺZr€I äG*ÇûKL]j‚©7_½»1ŽR+{«µl*®*NÈák$'Hqñ]zE‰ï¢ k6>Ä!²‡3N ¼,¢;‚ ¡ÏS‹ãEÜ9YKÊGlÁ5>wqæ¯JêbÏä´[4ó&÷6-)J MóéÀŒ;’Ùñuó;¬(¯hä¥E_õV,ùjdÞº<]°7|ÄIìÓ×smù$âd+V„éŠ-GFHã—´ê<£f­YÛ¯UZ¤ªÇX1Ìe? 8jJĨ¢Ú?†6¦¾€(ÝzRÂÄûâmœD¨Ø¡žÔ'|dT.v¦Ñ™&Jh[ÌöÕ»¸:PÒƒÃIJL«Féƒá—ˆï+€Eå%ú8³'É4ž’ò¹D)EóO{ŒR*€bâ’ÈrÈœŽÞGCŽÙƒéœ‡P÷‹Ø4”s«VG%;itß³n7˜‚R`¬à‡§2F¸¨½¦•HœÎBbuLf—5J9ý:Nf€òÕàl2À¶'*óªT(Öá”ÖNMLÜE!çzpŒ é + `.âLç¡TܬãáX¡Õó$¨˜Dˆ`¬¢2e\-~#døß'¢ áÔ íÁƒ}°–€Í¿Ÿ<ÒŸE­‹ ÿ•B¹Ò¯›ïØ«NQ㌣°na`a´ŽÅ_Ч”{Xlh_•ídT>¶‘ã&Á–ú«ûG,°ÿsˆßgÚ˜çÛÿn=z´™²ÿoýðíýÿ+üÜÚÿÿóìÿoíÿ·öÿ[ûÿ­ýÿÖþkÿÿæìÿ×å7ðg—-.@"€ÐuïŸN¢ÈâÔÏõ ÞÇqâ䀱.+F&R¡LŽ’“7ˆ-ªbêð芨åïLIÙ¯l®M®Eü³„ih«S‰ó5Ù°hœq‘aQv“y€©-µ*éP×_ü—† pJb¦P"ߣþç->«P[LŽ*’¿)Øî‚3kÆ!Vùñžó†DQ`±’€“)†<:©zH>¡ç^9¾ãî‡Z“›Ãó|(°?þ”W@•šbÉX^Ș'$ú V, 1 ã4Œû08:]˜•p…÷œ“ì0|Á¹’‹t¢6æ¬òKÜçÃè‚Ý.0àË8êc’$m•DZ‘”$jn±öÜzQ6i.ÂÍmr3È^G®³£‡_vGX¢~ “˜bug5âÇm·‘Žç\y-¬ÑKÚNÖF‰ VíÑ®ªå“ùÈh?ûÈAµP‘äf/ì#:Š\® Þõ邉,£$u'me Dkƒùœ¡fT!Mñ8œÀ¸°ÖOü~)¬ÒO2A|€)Û‰Õt†ñO‰éQ,HßHé]…¨äL¢hE™¯G=Ö"ÆÎ4p‰ñ/pR##ªÇØSW4A®è|±žƒ í,F“°o’¿ÍuºñZwº´‰Bµ‹«²fÞ‰U„œ‚5éWÓ‘³$ýM;ùÅ>dúh§|¦[QùQgæ<úÏSGÈîÌ'Èïšy®Ô×)ÚÊþDQ,áú¸²-Ñ[ž›o6χÃ!²1÷ðRÖwcÉMæÞ5,¨òÛ1€ƒÊÏוæþááO/j¯@8½ÒçycЩã þ¯ ’wÌ‘”ÛMÁÇñTymJ†´mh“o;볯“–E¶@§…&CŽ”-%ÓæÄšÄ’à«—sÐÌEHάš`^„F½3çÂó)Äü Ïk­.¼W‘¹­R_ëšû"‹Ç¶Ü½7|ºUN1‘úÃ|‰tç_"©AäHïJ²BÍW‹þºUM¿µ(Céæ_#{ö.‘P¾uЛìëÃyuÅË#Û!Ì£÷°è,%åPʺü6Šðk?ˆtû* Ž˜>—9pU;s—¤Û´”Áš9ßeÀftYú É5?“d}Ë»ÐøôQ«cF7jcü ËDfµ7™÷'{Qþ툟‹ÝóIŸÓöÊ„ÏûÒàdÏ=o ‰Þ`Ñó‡}¬¯BòW$yƒ|’§J)iΙ¿’Í9Ó»<ÎÙyy㜳PÇΛzƒ¡ÑcÀøKÎå–,ÀÀ>ž+ $~:Ðée³òºÖ©T«¨[_R”tñU˜),jGˆ)IýM<ì.ë#‹‡ºìpõÄ—…”=\¹þn4ÊGÄE šÓú š÷µë1hîñø‚ šû¡¯É }޲ª:ùø2ò\WÙ÷%ÔZ#¬¿, ¥šÀÑÑû[‘£³YFA”Ù;¥3²¿—‰O’QÇ´+k°å tö‡apÂ@`¬ø–Yû\áiŽ|å­}wéµO Y™½odí»sÖÞÆ×þ3<³î9¼[.sç­ù`é5÷8¼Ì¾7²âƒ9+îâʸþY—•ë9÷М«ê3pÝ»¯þ*\w‡‘¿ö7wûäØÕoêö!ÃÅU®²d/qÕäÝó™jþ¢¡î ® Ä^8Ÿb[S˜K±ÆÇšB ó`7…B78—ôY˜CúÓ~Šd8Cq´ëí€KGœ˜CG¾à|ö m¸ËI'Ð+tèõÁNˆØ'_9“q8™u1°}¼ÐGô­B9&Âàâ^A9]œÅ¢!ßô/9 ©xšpTq¼•Ä÷AtéÐgiœ¶ËQPõŒiÎËk$LH"À %!Šehѱå’CÆ€áWO0úJLJ€M+Äv´#F¤m×£ÿã×[Aø±#Ö1ÉǺx}¬¬´’çÕÙ´4H˜žJ3û¹hWÖ¼/1pö Î`È–¿+ ¡ô°Q?I¡¢²BV›O³_¤PÔôÈ}¸ÿfN?¸\¬—q»˜/ÿÜÿNú£Ñû“è<ö®°'¤ÚO£‘›}>ÎŒæ¹FU‡@~ÞHSànn¤ºÎÚ–;b[¾Âh¥‡;^˜]’í¦F«ƒÊ;äõ°Ìí…à‹«ÔÜÔçKy¡G¬ö32¢wþL‡þ»ýZ9Ìh@Ÿ?i±¹_…õâ ×J1{–OaÆ!eéM'‚±À¤—ã5€ˆ\Êa; tTÙü |ÚŒb hÙÞ î',š„Ë '„I°¸å¸}ØAÿq +¸{×,V— ¨]i¶Õ‡jý=¯¢Uª‹èŽÃÙà$š$ì{KŠpt |üPå” ©òèH¥Í_ {½ÅÝyÝOOíªFÖÔî›%©;ÆìòÜu¼»üoqs†Ùfl ÏŸ#”5̬-AšVY¹ÿÜ æ‚sâJ­<çó3ŽdƇ:œðã,p#L2[ŽçK„†¶Hó’:§ü§ªÐ™"5ê½¢6F=n`ˆzõ°Y“Zî]ú³Õãæþ/¸×5Œ‡¢ÞËú¶Ó–ž·ëû˜SôÚgŒ]²®pÀ¸ƒ:]âÑõ<Øzô(øóOýå;:bÓI÷|RÔØ\Výµ¤Ÿ#êç'¿#pÒ7œŸ”ûrVžoµlÑ‚ü?¸#_6ÿÏæÆæƒÇéü?Ýæÿù ?·ùnóÿ\÷ç6ÿÏmþŸÛü?·ùnóÿÜæÿY[2ÿª‡Óþå¨ÖaìºÎвGçåþá‹?ƒ·ZÝ«žÃLê?sÞªWÿÌzSû¹]¡g·d>ƒòGÎWŽÛ{”Æ!>ìT_Õª?e}Ç…Þ€ØB"œ° lè¼–hÃÿq{ÎÖw@®:ÞÛ#Éù_µ`scƒøŸ—äìHW¡}ŸNÂ3ÊMãײ§W2¤ÇJNÛß3Úþî´%A8Súô¤æLÕ†B7-HÇDd«çiñÝüsäé¹ýyüjåU­² ÓÖ]ò;™úwÙÄ”n€nþÒI®òíd °´® ÒæÃuV—Wê˜[ç€/pö„iÄ »éˆVreÊG4œ ‚?ø˜‚›µ—µŸËò¨Ò¨¾:lÖvÕ߸ò‚ÚüÂo¨J4½'0¦ ¿ ‡t+¤ž¥“è­LdL±Ë½È &ÒK25KÐð˜äûdvzŠÓ»ççÙÇYbìÖ)ðPnM¯£ã6U0.2 æ?è_ìT´ugh}çfÛøê"¶ƒäÞ=±azŒ¦vàoÆ™J½ÆáAín›mé±:¦ò׫‰zð‰þûÉ;M‡†Óˆ&æ«V"qêº×^TwëU=Ëzkî½&JA±ˆÿy.jǵ)øà™<ˆK¨oy›- 9]ó»N–îšø]/•$Ù}öçøw]-Wk?ž¢¹Tv#>8NÖêôžoƒ¿½ü¬ÿü°gŸ‚_ƒwA1(ÙYßìmçËN tú ¾ÒŸº¤"}ÆSªË\]œ"3ÙJ¿´¾5­æËSé-PGÎQ@fœEáCÚÔ%ÑÔz£ðE…‰ÍI˜ ÇÎW_²ž»ô£$þØA ²þfÙ—ØuWj“þÝ¢пéßGôïcú÷ú÷ ýûÏÔ ð<©¸9V#ìŽú£ášJ¯Õ[0cé¦'Ò¿}úwLÿž[Ï颖–ÜfDÿ^п|‹LR-g´ñÜ–öׇVßANK¾Õºôolýk·<±`†ä÷©–]ëíÔa?Õ²g}ëÌú}šjyfÁ S«j·[-ãÔHÒ-gV›nNËÄjZ-£TË k7'Öí6—ûöç'­Ó6¹P1 ¼:?Ÿ—'RGgs™¸„Ë!0Á@mHôÄûž>aš†xÙñùåX'xDî@ ŸK kìV |)Õò#Qd@³!+8fÓS{âíæq o5ðeu˜¡—©2—̬HCës¦ §€Þ}ð ¼OsÀ‘R…û¢àl0¸ÄÜîÈB~Y,OCkº®Ñ5£þæF°ó\Œ¤®ú;ô6šL(ã`S[ ™q± ,ADæLMÙ,í‹pÔnª½püdWÁ|qx¸ëï¹þ˜%s:š%ö\VͲ–¦Z¹r^ˆ£Qd§„ æxÜÛg\cvŽ•±ù/ñíØ{ˆÌ#>fÅBµ`s[¥¥]p)‘ISâß#àaÁ­éáàuhú«ë%?;™ržÒs³tÿPÑô5õ¹«%\QSÒ½…}†A«§O'fú”#x7SØ×"=3ÒÜ}ýãDx,€±òš!Ùo¶{[MÒPÒSæÌRP¸ÜUGóë®ÝÙdÄ¢É@ü¼™&¿®1c4û U!bk`<„ÓÇw¹…H¸k* C˶(Wbn¡˜`M.z«A]œcÜSQ‘ çìÒŠn·zñ»eè¹-nˆ]½Ã›ªT¥'5•좾\=n¦Ñ€Jç ËÛÅš`Eóg1V0 l)Û’ˆYœ]W ±"ÐM8%¼”Òz¢Ï B¯^åôí¦‘è¢2Wï!Þ¯ãñ¶ò`–CY üƒ#”ÓÃ3?Šaœ˜7F}ÂÉ ‚òÑÐNDeªpaIf¿LÝ­—5Ú½}`'­/ªSƒ²Zò’U€‹Ï?Œ¼«öÞÜ"kÖS\‡.Å“X¨þ#Õ§d²Í>4»Wt':° ™×T‹I2¨u–ŸïäIã¶S7ùÌ£ «,±@9Wÿ!ÿuð;³ƒ¸{gRKi š}Òcñâ.ÊY£Û §¨+ÆZ®Ùj8Ê…ßúXI_Rèߨ?­nxª[àJ´$¾õR=y€&4…!>GRãJ¹¥çÍ5µðÛÎÇ̲³Þ ¥\‹(Ç!õ³*×Í[åNÝÛ²|`iÛê##Y[sâîݳ!•‡³h[öð š™¼cžâ¿Oß٠ƾð2>º,í÷Û¯š‡Ç/_! ½(Òd4;;×¹•Ö ?ÍYá 9¸äÏ+s÷”®ÊLÙÄ\ÌÃ,è’7Ú€Ò¢oÚØbU0æ…+dÁÕj‰’»áæù¶Õ¹Œ®Æ¶Åz+é* ÆBd rP=Þzñ PÍ¢"•†xDÒìþ§|*‡×z6¥£´Tp˜tmjF{‘·á¼ÎÒd¡ÅvÁ)bªhÓä”gýž)b„ð“Iðë¯OŸ=}÷ŽîAøý9þ.eÉïV ’0*%Ê0î’,Þ8ױܔ,älnl«ÜS—ü&$ÜL3þVLúµd©kHRi9j) a‰8Y¹®¦+ʘÊA½….mS²]ÈÔè)¤D\ Ïé$"¿'\BW‰jºo„úl¤ƒÆnÈž…Q Ùæ¬ëÛ³ª*éžø¥’§ŠqS‘Zô¬Édáõå(lÒϺS±@psm€@üv,ü~;HýÀDË­>‰ÛlUñ0Ö ù`k @‘Þ¨‰³;¢…A:b$¡ß:R5QÞ  Òia 3Ìõ×'ï2†OØ¿‡25÷<7€ô)s‰¶9š÷]-‚ÎîÌí}›!º[?òe ê}>±ß§U̶¹ ÍÚÞE1Fˆ*$ÊÛSÜC×’ßB<_{n­1rRt`­@+íf°K”ÙzÆ7÷ùDZª¥‘åýÌuqm¥–ÅA ÷x‰µÁf‹×ÇKŒ¥3³Éw0ñŽõYϪ&cß±Wl»yÜFt4 وﵤ³P(ôF¾ŒüíãkÂÞ;kÛ5F!dÌ@R¦¡µ5YcÊw mlØ Ô´üAéW2DA†#À)§A7Q¥Ÿ‰ýuÕÏà=êòTÐüœèrEX .Š<‰N™µR½æ"Ð'‘ íÍB#|ê.bÿµF¦¢GAq¨ ==½+lK^KMìoBßï÷º˜qéï¹jø7¶öa&uf®6sÛm»©Û¦xíí<âC»³•Ú:¹ÜM,;Cž³íùŠ!ƒ!Ą²¢ÛÛxÊ‹d~t¾$²ÔRHT7¯1 ‡g–· 6ø£šqx™N–Èsrñ`K\ bÊGKÛðÝ ìc µÊóá•Åù²¿›•Û%XÅIf¹ƒàør±ËóÊ`ÕæD×!öŠßÛáv„ÚÕûWÖJ$£;¾¥ØÖ&{Ô×([=qÕÿùŽ=þ’›@ ÏüÚºP‡×?ÿ„FÏ•·«áà…wïjÉš•åÐ<ûÃJ&T_Óýò”•Ö8õj ±ÝvRÜ.XK!>9˱j±õŒ¼©Í@"Å€ô€¡[ÑÚŒ’µK¾ÛîcYÚ|1W|²¥d@Æ™5z"z£\ª¿JÍïÝ+m«Ñrÿg vICa$´\„ø±*8ac¿aiÔ üSÏX=ød¯”Yâ;®…Ñë–ù'}\ñì}^E§sŒ¸tD ÅO'Êy$“RÙˆ¡®iF7p~ m»œ±?™óÁÓÑlØs>[°áP {¼ˆÇÿ /—ø \žïT{ì8eFtSwOâiâ—(‘üÀ¨À×’‰GhÆ æÎAƒ¢öˆÚ­¡ J»ó¦¾Û~…[öDŽôsR;¨ÓCåɆ߃ Ê‰šÝmüÃTæW:²˜%˜%.$¶#@¢È>ÉA8NÖ¥V72" ¦p ú£.Ú5ûX ˜¹8‘†j’ƒýE„µƒa`ï1OôÔ¿l §éñkÐ×áŸá´ÀUè°x•Ø)³7ºaÎ&00Ž$551‡zбÄXÍñœÌ¯'Q!ñ9îÆ(ä¿4S¹¿OfÜŸ®¦(O.‡ø^‹§ˆµãNºÇͧÁÜXÀ°?>—Új®íÝäç(¥¶€²uG:½ø,ž–~íÞò.¸¨¬„Ý»?”J’Ñ0û¡H‡Ý/F˜–3•arë©ÓŠBF¶î'@ÏxÔåÛe6§ºÐ3å°…}.³NKtÅuZb†–øtÒcóioá»Ã餿ÔÂ+CŒ=*b 3†õxñ°Núáð}ÖŠìïñe¯þ~ÝvÿÞóÞW›|¡Í[½dv£Œqþàî6-†·ÛôÌB'nB\¯ =³ºüÓír6 Çç^zfuÙÜxš±ÐŽÚÙ]6½.èDîu¡¬GVï€ð29]è‘ÝÅ; „—î\ð‘Ýã¡Û㣷dÐ㣵bJžA¸•ÞÓEáyÈ«2×(‘‚$J/`bƾÑâËHª_ÈoÝ’Yhö7#³”s¼Ù„YR²±ÛT=c/ê‰áйzcí³²ÒjŸRz£?òm4ô^ž‡À#N¢nŽÜD“vÞS¥Ä.άl»-+hˆP}t@v)ËÑݘ)Ûœ¤~žád¨süÍ‘¯äÏ`·¯`¼ÐâUJð#† ›€,§%Ž,ÿ”? G?_R´dšLááJóIÁE¾Ùø”.­gñZÏÕ´>8PÂÙxmü4Ìд™—Þ¤þ¦ç•Bß3N,Beu. #_²óçéUš§ Â Ý 6KŒ$ââ2Wé“ãZhŽ—9wúïíüË“ÖÿÈßEgrö. ìö‚•à¼ÖÎ4«¤ÌîȶŸLìƒLùYÖ¹v(ŒuÄ[¿Þ¨jo}[_Ö¹]œGs¶³«ÄyÂdû,ݽX˜í$‚$Ò:¡½çÄÖf47»æ¸Çd¶Ý²@Û®š™èÆ>•SÍç¡ÃC£ëø ýiÞwRJTÛ}Á‹˜G-7lb8GKgøå…îãìm–¯pšCÂ]íY®r”™ ›£À³‘ÑdçÁ÷U]úÒ–çYDHzؤˆe`½ÅLåkWœáÙã“bDlï7íïêuü—çÜ âl °%ÖÔÜø‰¥5 ‹ÈùžÚŠ<ê´>-‹Œâ$ä&ĤÉg_œùš?${¡3ù§ÀŒi¾&ÔfgTÐ`ë—F»ò³wÊiÁxŸÝ/ÿ‘g–¬â$ú}†~H9\˜wÈì#fc´Ç}ùݶÎ÷t'óê·¦Õõhí|üqt™^ýÚ«-#ÒÅí·rñáu ¶Ö ‰š³±óìf'l〵?ÏœÃK”BØ+°÷¾¹¸Š ‰ëíÒçÙ‘—°ø‚xf¦çXä–æur¸å2ê50¬MÕ{cø˜CïÍCýæÀ{ó(÷Ícý¦î½ùA¿Y`T~RÊz¿€¥‘M}ÊR‹JDy›îào“î÷®èûûe;È<â#ÏJ]©;([1fZ€HmÂæ³´`xä$Áw{èdÞ™I¾Sæ|Og†ªUÄÍO]'ÐMa0¢©ãÿ–¤ò:0€k†Y b‹Y ç:kƒ·_â‡Q-ÚùÝ{á( w§)+`f Q%7‰´”1Ë¿¼2Nb$ý¨z¼L‘h /¿ÙFà+6·žàm­Ò¼Óƒ’mìÔÉFXa¶ÒªÖëv̆Iê,묧,%Öæ1yT¾­—ëX(Yã˜hÛT€Ha;˜·A~Nï'ÈËH{òú7炱•3ù9 R–%óçýõ‚µö„]{òÊížs6½iUññz bkd´Î¢¿ ŽNþŽ#(-•n½,õÍj¿@Ëë6¶d!Îö–ÕèA¾ÕÄmøÐ¥&éFXrB%Mã¹èqÉZ¢¹ªâ»Ë芯C$²0À‚æh-ŒÎ€ïZúX¡.>rÛFÂ;™èøÇÄÙ=l/Â#+ÏG“œš»oJK-ÒÕþ (¿Âg£»µn9hî­Z6®{ƒÊ½¡²Qýs}îÊf°Y7´´™M¢H!çd¥µøFÃúÙ7ïW¹8SãöÙJ/ Ë—¼\9‹7j/(1´ÊuÌù•Tæ,z·n²8·Û¼ ¹ãßö¼Ü{}yòõEï½Tn™k5›itwÁNÔ0ïêroƒ%ðeþÕ…uŒ]‰zNÜÍ2t${s\¸ô†,ÆólP˜»AL ‹eŸvdœ¡ùŽ%õ²/5ƒÜ¼d<­›ÉõF»«ÕˆžëþðI‰˜=̲ö"³VËì±|žýb-š”3­E&«?–DERôìî7GwÌ(˜¨ ­†]*³¡RwS$ Ÿs2*g{“a’6#£ÈŸUàpÈÚSJYk†B±€Áx ª¦˜,e8TºV‰©B}7Ë€¦Jçãͱ“µ*c3FªÕš‡¸Eê `Ev¡ŸÒÿÓ9”ßOØœ†3Qö-•f-\æ×‘]ϤàŬfNÀ½ÓÁ6yy¶.42ßæµA»'¯2«Dáeä Š÷>PͶµ@ʯQˆYPqI3X2 ¼D«²¢å<›W!XÆÌEv®k&Îú}C?ÿ6>v{XœÆnC´Jhί©ÒOï¼L–Çéêd°Œ¥;érRbàAËSÓq{OY—üŒëHt/»ˆ•§t—ªºvRZuA·2µF9}1ÿ˜E Í5ª®8ë­ºdSF’zj¶-Åts(;Yd4U·Vç­Òa¼086ùðÇC®Aƒ.±ò÷TIOVFóâÿÊï÷69ÜB½BHX´Ã¦çH††™àm@zõ‰—Êÿ¡,È^ïô}´‘•;Å@Xjµ^TvyE¬%³v:“º• .p $ì=<(©‡kœ¸+uÈÔ–ª„õMòjD—ŠwÀJ¯AI’¨S|*º M¢Ïâ‰*¯’—ë[¬’Ù—ûUPLr†$þ'Çú$ÄmûgÞé´KÓ•¶Ï"D}U()Œ¥«–üCØ{œMÑðþŠ`Þµº#GìM×ò¿Tg¼o¦Fûry¤õS}•Å”‹¶¹LÙÐ(4žòmEu}&™rO"` nqÒÐÎ&jNɈŽ\Ñ4£*Ž€/B –&8D鎡]«Þ3WߦŪÑv!pɯµLrJ(,·ßÇû1†å€ÑÏ0XV9éÀíÉuTCÕÌhØ…»“¼Rä[¡U‘u4)P3+g¿Žo*‹1½ˆ5„A4M.øøˆ+ìbc…þ%^*`†—YÌx£˜ÿ¹wÏÅ0¹VD¡–ŽstW góUï§¶çDÌBàRÙ˜Ó>œ—Úñ–±ÈuºS9H#; ¶"òÙn1–/Œuý”-Ç}õ3z§2æVª|:¿*p‘1C."‹”7™¼i(!÷ª“á´Õç!0oaž÷.¢º %ŒE+ ±’Zõð5Epö7õÆÉÕÇóÞ­½8~ Ô°Y«*½Ø¯åóK’ÖLâJu[*§ 7žÃ#ÕSK¦B׬«Ü¾þ´þ3‘©Ù¥Ïž:N¦sŠ~È7^džç@Ÿ(ošHI ºŠ ¶PçYEÀ«m'Jx÷zÑP¢Q± O®Êü’• ëƒ eK yFct„K,Ç·D k€}•^ÜŒZîÌM8íwô¢TD±ut*×6¿+÷˜A²7#¤V3ó”§7ÜõÚ’‚Ù ÂÖ·dÝWWC+7íâ§‚µ©nnä@ŠENSÒÃÁÄY À*‹+ß#ì¡î’æÌ×ÒvqÍpL•IÉ èì’dqítx÷šö/ûÜÎ9¦K­åÜã™y4oB±7‰´‡¦U(×ùùÌZcðt–N„“[ày¦Dp¢.ú—k+ù¼ZJ”ž-Rʯ%mh–ÔLÞuóÄf Y Ð8|eu•ºÌ ÇcyÜ(ÿÝ1Ç=œú`ky‡€3™NûkÏipüGY?äeëÀŠÎ“1¿&1ãöD×»ˆHÿïöçš?´˜küïæÆúÃî'“î}^âÞiØ¡ô+ëÝÏúÆü<~üþ ?î>ØÜ|´õÿ6müðèáæ›¶àùæ¶àý ÍqîÏ oDøäd4šÎk·è½?¹¿ÉÏõÉïQ4é¯UG 3ñI? š¢­iílò¹ä—ê Pš¡~|‚ÅÃðø+ý1ɉâÞ›¡ÆlT#,úr9œ† ”t;„ÃiÜeÏ` ÛÝ>¶@ú=‚>8 ‚Á‡’Ž'< úáðlžEëÆ!ÈûÁ\©Sà¿N.ƒ£ó¸ƒWáïQŸ›*µrå¨ÎÚÑêh| áÆÆ"Å›ÿüçk[›[X Ž8®)MµN&qï,²¾Úˆ.òÀ„Çfëa.˜ÂÚMþÀ¥Õ‹19ìÉŒ„K\cL­„E¯F³I7¢''0sfZ‰ðª#.H6šM ƒQ/>Y:-Ó¾Œ£Éײg¸dºgq;NGXÐsý‚(Íh€ÈÌöî¨È˜ á5#àUBÑù3ûÔÕ+ ·/HÐJ€š"ÐJlbTf3"øh·‹5YÏ |ÑZ 5˜foÖ²#ƒ!]k0bÚH½Q—‘PmØ}dáHý”>šÄX´ÚU±PÕ?kzv Ñ[P†ãp ÏLòÁ,L[Ú6pà2ö4I` —:œÇhØanè `R1^±ibæ¾Õ£”4ö†%£Óéâ… g`?ÅjÒ“Xòlãi%\#r³j¿Âч{í7 ;ðûQóðudóàÅ/AûU’Ø“µ2xu¸I©‚Jcž6ÚÍú‹ãö!들ƒ”Ö5°ÇhKå€K á­?,„}ê@9¨c@¦ka–p–Œ¸8Õî^%ûg#8àçôèÁ´ýÓÉ,*ìµJ&s!"q0]ÍÁP~ATCŸGö>¯W>Qí.H0‹B8÷å²’ T¢õð¯ò7è¨Ö„SqP} ‡7a²h׬NÐŒr!Ñ4âRݨW Ëh‚Dˆº`è•¡;8›Dá´ §WŠË ¹Â-ƶ¨éhÔ+ó”N‡T#•yAžF¬s„=d}’Ù@t¨põ[6In0ÅJ?Q*Ånˆô¸0àòùÌɣј!ѳâ³îcPE1ŸDg¤DÊŠ¦røT¤|ØuJ½¯hÄõ1kÿ{h~ @Áê.õãaN ü-¤|+W£ÀKq=(¾„Û”À®h¸+p—`dÞi,÷$.ûz)ØM °È—zqÉw€n~„ùXÑšðè‚°K¸NÙbGY)“‘b‡ÈqÓáì•ñTàí&% ˆjö°ÔbCÐG³p2šNûÑœ3q“Ù`$òFrK92‡œ-• ÀÂ"öp¢º¼œ ¾pö(ê>Í’>Þ²p > ¡¡Ÿã½ Qá Z$wnXO¹cJO`HeÙׄ nh¶WN6¡•B&DUe{=TwÈ›òÁ²¯˜€®W6Þütj—×—¹×ú1pŒjQ°?pXØRª¯À[” „‡ÄM+P‚;XV¢'6&h IÕ` O–°„Zv®†€)T>D]äY £¡4nU} S/8#T 6|§Ž7ù¡0 <Ôõ a#(g,ó€#¦N ¹Ç0ÝÁrA¿Á—¤C” ¾Éœ›<¥ ƒ‡„VÌ‹-'û„é¥3›Ì°¾C̃½@&‹±lþÆÌÅ\æH¾†ïËDK„ŒOBÖ£©Î„2²K ¬‹ì6¢´8‰ø,$ƒIÈ1†ïû€SÌ˜Ž¤–dxØ Ó•d€V½l}ºW P²ž­Áˆ“.î” ¯7Ñ0Å¥ÊôÃäâš$ë¥Báð:òõËDb‡ÝþÌ‘AÎè:#)8ÕòÄD* ô"‚ã+ÊYÌ|]ˆe›¢u ³°O£!„Á-â«ä1,XákQ-ÏúùJ_³ÃAÐØ±Xý)œ8(Zú# «rå"’¢B»ÄCºOTQé¨ÅÊ_2 t’qѨ߳!Ár¡«Õ1žÈq˜L]`5à“(³£µ$0©c`¿Ø¯W;p™w*íê+刼E_Vfª:SŠŠ´±ë=kùÅá¾ù£æüqpÔþåO‚¸;•6­Šnk,ïòˆXëÊ~çU¥¹ë€P/'“¶8…Ö+´ù·ìG Ð7ìÞT#‹¦[Ûígû_ÀJ—>KC^EzˆN¼@ ) zØSGH²-߀†&ÀÆ R•®§*©êsë~ÃJ€r„ÖßfE¶àÁƆý^7êV‹[Î{ û6€÷¯ZG•jÍîÿØyÿ:õþɆž~p÷§ 7ãµÌj1Y<½É¬r€Žƒ¨Ã‰|¬XÁÊìM n"ËJØ Dkã ]ÀÄÜ.ýQH—1¯qÙij‘Ëb2ÏT¾Q«A4í_WXÑmWÊÓ¡‹éín9x ûÄò·€oß;ÅÛ Å‘Söa¼ 3gœúüCØŸoŒ†k¿G“ÿmîYZÆp£WG„2øXß§¼%…TÖ|^/Je賺Š þƒ®4Ú”«¥ Ù°D4jˆ£4€s´Éi§àcåSì=±¸ÒG²ž3‰pÙwGc‚ò+¹6ÕÚ(ç¨BõuTãT¿‹~È ÐìÿÏ€öÄ÷·/á?Áÿ^ÀÿN2`eCó"´Œí~{±ZîL+ÃË2šéù¿ÃË“Ëi”ÑÒ‚–ûƒc;‚±Œó›Ì™i´&@{ÿ;‡ÿ½†ÿ}˜ mÞBûyá¸òÆ–µ ÿ‚ñü^þ?øÿƒrð?ðÿyÐ6Ž­ŠÈ%Ƕ´øÆ !wxscC…ð²ÐÐŽBýPÊÚÙÖÈR ¢rN“ÅPü±yÿïmµ¬þXîÁÿÃðÿ̇v¯~pÀÞ‹e÷m6žŽÊ ñ—EcKðÇF¥'®<ÓL°8Sœ#üïGøïÞRÐr×­Ž ÿÜÃÿá/ô¿ë‹fš»nAݬœåZë–ãë†3Ä~Ähé2`+ìm¨,¢YػƹHX†ç i=^<¶¼]@½à¼ä. ´%0xÉ]@hK`ð’»@3]ŒÁWY·Å|Åu[€ÁW^·¹|¥u[ˆÁ)ÚKúW&ºÙcËÛfy¢ï’»@У@УÀ3]ˆ¾jªš¯æDÃwa'N¯¼Kr5W¹sƒU´û½„éW1¤‚~_jlÙÐŽH)• BÚ«WE ¡{Inj?ÏmthåÀ- íg†¶Ù$&áÈ«@{%hµ…Ö¬íÍmreh ¯æå¡í6–ÝU -ÝÒ3­7[™ø hèA‰F»…Öiµ›7­Ò_^^X í§è†¡5áÇ›„§ƒ¯mkl ½“Åq5h‹Ë«A;‰ÎãyZ›kAËâ²÷B Õ —îÊÐæNöj3Å’Wh¥{Æu¡¢'ÈâŸ%¡µªÍúQ»Ó`K;ì þ ¿"4L‚ƒNUÇšü§Si¾\0¶\Þ²õSý¨Lÿ"r_kð¿Ôe÷”2Ó—å¿™ãºÂL÷*õýr€å¦Ž&°r‚Ç^Zuÿ÷§Ê;° LN#µ¿Ëê{_9ìí Z Ž«G¨ŽÏ¸i0`fûjšxÈfðÐÈ;º‹u® EÈ4$›yèô?#²”‘Lj@Uî*‰Øè”LÊöK±qa÷<º‚ñ"pŒ…éÅè&Lã¯dºÈɃ+›. ùW1]d±¡]Åt1TpeÓżiW6],Všßš.®íÖt1ZîLÍY9Wõ•[6´¿ÐذÔLUm9SߺôLÿCÌ ×-eÈÆ’%×í/Tè/=ÓXr¥™þ¨à®[ZŸ‰"K®Û_§4ÿ´7÷çŠJóÅëv¥ù·ó”æ‹¡]Ei¾ÚU”æ‹¡Ý*Í?Ú­ÒüÊÐn•æ×‡v«4¿6´[¥ù¡Ý*Ío•æ·JóàViž«4_BÓxU¥y•k®QÜ ª˜®D{Ès8…ˆN&qÿÎáY­v¥]¯vxTz3åO)91¼ãâ;ûµÆKÌ_¦ßng÷Ïí=6½M Í–hHšpN¡=£@¨#0ÀBÅ5fèŠ)ÊÛ‹|uùT>¼iëËÝÿ‡g]¦;½ø,ÆÜôÖú¥¢+;èw£ ŒÊþC>“¿çLë)ð¥LÿÝßÇÐxÙà¹3ÙZ~&©ño¤FMOC¯;XÜÏÅ{Î&¼gç£>ŵ`Î+‰Ä1r æDym(øÔŠœNO9Â1*t¹&÷V¹ÿ8®xRtã#¡±)Ì2˜N¢ˆ,AdKÁU‹“iMI àáØÌÄ‚ÂQ —åàK•”uŒlAO¥q¥8 ‹šøX%j–8ä2çòò ¶Ûàòb^nÏÓ¥x.Îû<œJìLvc\kNC‡dSS\ûQ$ÿ 1è°Ä„AuG³a$¢SøZ²ªC÷ÄÎË£Œ{ŠM¸^!KÛ[nÍgÛÕíVç“tq¨qL'¥bÕÙM·Ò}y„¯KRð9:ÅüÑ*CãæÆúƒ-Ú) \³ i+0Ð6 r"ma§ô0e]_ï1g‘¤xbÎ/qÎ’ñûu1ADÇV䳄ý&ÎÀQÿ '‹ÇÅ1‘ö‘‰~ÆP0Œ¥Z# A4üOFCJº‰ Ïõ,¼¦stAÑp.î”&øàªK¨;FXÍÆ¢Y#”h©” £¼œGáX¥Øi™² p@:¾îP¤¹Š’އ;¸sJaÞ€šS“Ü3Äk›u8Q|YVR‰¶…•QqÏTŠñ£æ›–8Ç2Q@ë]§1N *Cy¬m˜ˆbÊZ BÌÂaÜ%ÿµ¤øp²îÆT8S'¨¤“ wƃـ×KÒŸR`;Q&0^¸ãëZ•2{~ [%9<ÔVpj/*­綆žéY;=ùZë„C°5þlnld^5â ìo“:KnÜ4B£9 È"‚[Õ³,YÐe,‹a ¬­ @.,Q.Áç«V®JMo Á¦®©bï aÉ$¿8¦pØ=‡o!ùM?]Åܱ”²T• Àã´  ÂþD;u3Ì÷˜×ì“õ…m8²›1Aaiœ"Ž7QåˆcÔÑy­YJŽþ̤¢* ¦€p¨´$~1õ tSL®ºûé”û€†*ÔÔü˜äêºK8&T‘¶ ÌŠß×È£:©WtÌ¡‹ªM’јÌ.8EÀÚR¾†+!Œ„6t}:Så •IÂY"N²rO«CÄ ªöŠ=4 ±µJ¿p 0o,·öKœ˜ÁIµ+ý  K[è:òoY»` ŽÛ-7"K®R+wñMá.zB)¼ÕíÝaæhupâÀÕ gu¦ïéÁ”¯’@UÆ*º'À"NÖžwOàð™˜ð!þªa¿qEt·¥ Sb‰ÒAÃ{‘”~5mßO½Æ/kí"/Ïfp/ØZݯ7~â1ß3³)I±žlš®¡Ë" •lŒôÆêDvròöâˆ-˜ŽBGh«¶¼ T2>’4ü”£€3tû´´ ²Q1ýìÂÀxK;B£ágG¬mzÏI6Ñ~o/DÑ?{k´NjŽCR-õó á®å÷Vy­Þî&ØËŽÖwâi40É©Ýs÷l>î¤z¸ÙØóO”zÎÁŠwÛ^OÖ#v„@P)›¬ªDÙ[ÏqƒSKe¿ÜQæ|ÄŒÂ]«¹ž3T¢y÷€Å€ætV ÂçMÇ:Ñk)h%x¶%)Æå<Ù‡ èŒõ@åfþôÙ—míã™?˜76üË]¶ÌÛfIE±J…Ƽ1·/h™ äI·ÉLVc)hª'’y•âÝhƒxpÐvÁå/„¾Á[&‘~îtSwýÚ$ðoaj=…PÉ_ƒW ´Ãxʹk oKÒkÏ¡F9™ŸzÄy²Âûø$&yp=8ꇗ€É“ètw7›2»`=&§ýÑ_c­Ó;Lƒv~G¦J<ß Žë648¨ü|¿h qu«TúÑ~i½ žÄ*ÿ;?a‰0þõ>ˆU[Þ^—|Ô­ïys¸ËÃ!,àEõÅRÑ[È5‘d3{buñ¨‚g–¼yÏž{¾,£JN¦ê&¼ªUŽ(íé¶F$'È_çêk«‚ØÍ¼4ú2Âç”WøÂ]Ø{f dP‚öæ6¥gîrm3±ÑMéÜÐA Æ(òS鏿/ÑvAΟêìVÁ¼þås@¤)ÌH[ƒÀ,¢p]¢øùÙ—ºdÌ-DYD¥¤Ù$¬Š”KÒÉöW.h-ùåcVÁ!Si•‹0´¼ž{å)ù¥ Ó°Ž†XWˆ³-]L…y6ÑB’ ºPž<™TäbZ…îöm€¤¿ÂŠF XQÿ4°ïJ­ùƒ{±Çôlv’S]sŽhHX,%ì;%VÞÊkWàÔÏ\eµ#Â#çXŠ(éÜ 0Kï#sã0Ùâ¿çD|™"0‹Žúï_* k‡;ðfDbVìý(¡Á®4šê–ØE’@Sç™å`•à„3a)á#å¶@PªÄ$àÔ ïá}3]ªwØ.±dšô#Ø\{£D°]Ô0[²~<ÀÎsQ—"pfd™Æai›ªIÛt©hœ. ÄVk– ñÎqÕ˜À; æ)Zå˜S‘°gØ59K1…&ç,Å|«Ì× †‘j7m õ˜'å%ƒ‰”1¦²QœDS ']ÕUÊhÖn.á´2µFn[ëÉv.¡¿ ”«øfñµ _cŸ±__תz­ÚvF“ά;†.ØñÏ?ózVTO.ãk}‹¼×¶uõ[zƒLwÖïQuâx8‹LS­Þ–½.JS´ç"üÑj³¨e¡‘tp°¿ß½;>=ϲ[;j+ 6?yל׶JlÄkRáÈÞè‚LšÅ8®í p¯þ‚®ú…ùõ;¬ƒ‘v€X ¶J¥Rpßb¹Š[ð4£-ÊÝ|$#Ä5ê{ë$UžŽ«ßé×§é×§Öë‚uü‚_ZÆEGËÒk8³Š&L-®‰Cp-l"T*žüÌ|»à’ zMgØ=E0±Û…á†v1¡‚¥œ°>ÀÄðE8\%[ª mɈ¸Y¬¥±ancLÔNu‰¬BòõÑP8UÌÑÏ.T`U§bm“Àð8a¡´ ~Ýz[ìa‹¬–üXfEíæ ’J6™bÉK –Úc$lœÄ$”¢Dè5UcÀ§Êg©…}ì§*HÃì/ÂIO<œq‘N ­çÄÂ×Gt}(„Zk”°^Ó y–p‰±)ºŒ¥Ý^3ù'£ñ„ó#›êÓ«¾ÈÊÖv|Qó€%”5ÂÔåJ눒Zå•2PÈã3è9©¬Ô¼O`—ÞˆÙ'úWú È"ÿ‰Æ»­¢‚R¶îƒWN¥ ÛØç¹QÉ[ê±Üc‹‰ºY2UX/ÎA.ƒe3#ç¥Øo—T±\ÞænˆÉ½ÏFw!–³8Ïè%þ“Fº‹ÕÍ«–Õàkju1ê 7bšÈÐ}¯Nd ÝÕ÷Œ¨ ˆŸa¬õM­ÆÞ€¢ÌìAéGÿCOÍþ2æ÷«u’yæ<×–ò_ŽÂ êÙ·sÖ§ê(h“Ú^‹µBýD‡\ð éçhœt»«3Ø]¨…–Rª4Hü!îÍ€RÕ3D… ©UÅôDâynbõ­VÍ«Z­]˜¸3Âv‘1IHÄÖ)¾sÜ oÌË®vø 4ψ Ñ{¨zÿºiH2iË a7ѸªÓVÂfnlgÑPÎ&ôÙ€vW'«Ï,DH^ v'Š‹`·R=ù5›¾—2âóÐôárDﵑ–6ÊÕ`ùM®äÊ íb9SÅ»´ ̇+\jaÅR-«Ê_黽ĚkQ!Ö í;znIòú4Ug`=0샪#|ˆÈ¦‘*Z&ïYoì>}ÁT-SÞC¨Ceõ½ò¦UVZžNAhbÿo8,âQù&’ëE_xÀlßnÒ«fÕù ?ºìU$å?¢”µoÞ©(HPŸ¶Bê!z`Ø©Íàî]`|AÉ*w“}Oþc>‚Ÿ ©[ ÷«ê_7ß™ÓrÇ<Þx§N ÚÉÆ—E[_àéÔ‰4XUöXË7»äÒàÆhª¶ß,—,¶š7î¾vÍðŽŸŒ®˜Çb¸×¾°%ïõ­9ÌÑak$hRÒ ~4tíé†L[h¦!""Õ8j–\A²K• ‰q #»±_©Fö{á¡Ð¢× з˳‰ZxþÑŠb´~¶Žß8§ì&A<¶(NJXÇ ëjjðѤµXš2±‹C*‡ˆ±b™W(Rõ¸È |åFC…yDÔcÞ›ðÏ9[A¬„l3-U ¾riÌW“õ0‰ÈáÏ¢÷®íFäûÞ€G´¹Ûš!ØF¸uF ìc¦õdÒ5‚ä«>•›åUÕÛ°"—Äá+ëˆÍ@t¡Û’EqU$0Q¯$Ä>÷yƒôá4¿Ôáä°G*2ˆ¬1A"—Âä}<G½åeé߇§ýðŒªCry0ý u™T³QXžØê3;b"QªãÐhö8+ûL±¼9šËŒøÜ45=̆]ö7MÛÏÔOÖWÖ,~JÆâ¬K)Àp|ÓÑælöË¢Vî42,ØññpÍþ; ü“ƺª®"úu„MUO·ÄFZÀ œ3—U#P­Hج0+ÒݹT€Zµ¬Å-˜®^Ô_Ç}©qÏÕ]™ZNõfTnÔ âð‡ß/bøO¶ÚÍ9ý¿þön]­Ž·ZwïZ{ê$lJêh³}\÷<&7j?·•×ÙX¶SëÝÖeyÍ!7eí‘–ø[5g+Þ?½Áš:ὨåN¥Ð¥M¸’|6±3ÔrT§+ž›»O°R.¦óÝâ®pø(ꑬàùЗÀí#ÞUÊ”|u†Y=w–¨¤ùp>IySLLYE,¥ˆŽêÄÞ[&+.†¢R6_„<ìTQTTý)^“žTIfÅ ˜[ ‘”—ù*ža‚—‡ge¾Jõ”É1Êbhô”+rú,Ë”s0€™¼Ïñï7'íÕŸA„¥¢ãd@#U‰‹%âWU =Ú?n‰ ňpH°Bñ TmIV÷y3[ãh_G£CùmQé¯fÆkã—Ê„.¶¤qQºú¸ºÏB©??"SÓI}Ë´×KZK~æëŠü1©Òò(xEÌ6Ùᜧ!²!€+pMÕà0±ó!dUœ¢¢†ˆ§‘ðyúîé)ÖwkŒ ÁS[ì•9¢¬éÏ•X^%¥¥‡ŸÇÜÂxT¨OÀwÛÖh x¾cגͺ1Ø“îy±W²ÈãÖïÄ‘p~†¿´kOóÜqŽëíÚÁvFG`ž±‚ëÓŒWôÜ¢h÷vÜz¯Û®ÉÄNc?Ýתõ:§3WŒM÷¶+ÉÎé3’¢±Y“’7)àv™ÙÀ_çüõ|à€¼!ˆOÓo>üßDmï8QJ©ðп¶‹²Æ0B F8¹d)>Ûd ¡‹ÇŽH…€bU§Ö¸Ö }AjwߺéÎìúãyfE#Õ±g4·Ž†9ìhçÆ~Ì8I—ÁÚj ´ýQb¹V›M„Ø¿‚Aµ <ô¥ÀBC»bÓ(>€§·ìéÜVÁæ2ß(²ß $Ñj7£á§Z“súE{áDÖ'Bp6ŸXF„²“»al’€Zv•"„³?ÐwàNëõu {è{)9P žÁŒâ©’±{½„Ü3ŒGnMàþS«I>zü¥ìÆ0Eš3q‡j(ns¼I„€Åή€.-´îE3WfÕUÿÈ0X‰2A²?7^Éðð<>¥ÍÄÄèDfKWvÏf5½Ž”ÒˆMôäÍbî©¥RÞ‚’§åÒ…âyàúxm×7`6¶È¨« ¹ê‡üx}pÏY"¸wÏ~¸lÁ Ú0 tÉ›§;çczdηÄvìÃ%ÿçã:¾×^=ÞRPÄ`ÀF¨ã*ª@Š{ÁV9°œy­ »˜g³‚ÐKþ×RKêüÃùK¾Éf™AòY~>œÍƒž×÷“7þ|ãfëðµÀ‰ŠuS±’Ž×n\õ›p/_ðÆæÜqŠy ÔQ¨²ÝÿXÛˆ·2%ÆÞ+­F .Ì”Æß¦È÷W×>÷G\3Åûšº“¹Ø6f™‰3M~!eËdÊ*éPµ+_n^/šÿjYÏ´]5çÆÉ™„ùx·Bæâ¥PrÁR~ùµ©f-Žýðê a;å”0‹ŸžÎ¼5ÉY‰›ÚškìÍWALLÐ鯿Ižš± >ÿSÎX_œ¼™ÛÖ¢5ž»Ÿy¾ü"ª4§Oÿ//BµÞ¬ÚL5¹x¤ùžCÀ¾8Üg®Ð:q Ñî+œà=ÃÏ™¢Ëù2(‘@ ?žŽ¸Bƒ9>ØÛ¯ý̬HàòX0ˆ7•’jÝf’¿©e­îúhó|'m˧q;RLö*pQ¯ìw^Uš»%G1?ª?é`ˆ/±úWX¢¯I®[éÅò°ômmoëð`!U¸ç„^k_£Veµ"+ecÛ£²¡ 1ΰ·''(¾s‘¢¢˜]T¦)¥Ž2y°…Ò'ª•E-¦¤ H2œ¡Ón:œ"”9±òmu9ý´ûÈgõ¿8:œ•Ôwê隣ÇÀKïy*œÐ×Kø´¢˜A,„z=û€¶ö|ا’R˜QeͽúϵÝ9ÍÅh¸å7é2 ÝÎòRu§˜aKL;ºvz[æt@iEºmÎãä\`_`púì,Ôð/°Ü|ÝÛ«‘«¨¶‚¢‡Çd>fhã*'#"„ÉEõ/uÙ-ÉÖMØ=Üßwج\…bÃè,šc·¿Î .ðŠÑJA{×]º“ÍÁá+ÍN­±{ØØ7ªÔ /žÚP_ yøã´wõ¢WáhôÌ–'±<¼ÅtöO÷Qëp¯CzéçŠô×ï“G„y{—§Ä×=ƒ¾ºs)o+üqqRVâ*Äs™´…Ÿu|Ý#p{æ=1íöÌÞžÙëžY ù¬ô_+%ú þ²ž2ì¾yUo×Oýæ°¹‹ÎyDWŠÿúb@‘ÓEüÚ}¸`ŠßXnMÁÿX¥dìçw24Sߊî6™«‡/òWÞ.XÅb—Ìw°Ž)÷™ëø-.$®FçÅáqc·Òü%o¹æ68®.€’ÛÀ¹Å(^ðt*%ˆ&ñÙ9ÿ®go[ñ]ÝO%´AEƒ1‡l¡o¸o¹¥·™áÙAáØžœ UÄ÷ý»«h.þE•.:oê»íWˆ¶¼Ï‹"&º ôžp@‚üMkñS¤ÈX$n8ßËQc¸ñ?ÞÉÜ”´W‚ß%s³ç]!±ècø: Ž«»>܉Şw!P[8 g˜{' û³î¸s ±{éWèÛOã e Ðvì¼ò¨ÿ°‘1S=Hnr0¤ŽÞÓ£î‚K,½aöèzš:Šô˜Ê[*ÝRÖèj³Á™ÈEk“S:ƒ4o ªætãœÌ>I÷ÄÅöóOsö›o*L¢ Ññ‹eŸ§Ë>Af &Wwãþ–gÆÇ¿ëžC\¿ÉCã ¯›>5Ý+ž^Ö±)ZçjÇjŽâŠËdmï|ŒX!®-þ¤,üçMr :I+ÿ\=ÇØ찘þ)‚­§ òJÅþ”ûd4ì+ØXiÛÇãÑd*5½(™I< '—v <š ZrŽüQÝL×ÚÜÜC´ú¶Çzšw±çè\õo—xø“åæhT'fL2*RPâjwœz×íabDĶUZ5.¡X±ëœpñðçl,ùÊrœÍQ»³_9p}õ Áo¬=O5€éà óNìþ,ëï÷3ÜSG0—yµû²úÔEšx¹Ã¦$4´[ï–ûÈQú#.È+ClåALº“x<½¼ŸS‹9³œF*G/êí¢,ÜÔ©ƒX1ï.öü3]*+ˆ"”̪¶RÐG%ª*+žYɉر:î,+ûãƒë¡æœ;­ü…Y¢[cá´¢I_jPLøt„é˜ú3 u¯Ûl¿¤@Zj÷h}ó ²@z¶?)'ØÀø`)0iG3åÑa«þ³ú›¢'.‚–ÆÝ°¿NL” -Lp ‡gìã?‰0I@'ƒìñ¶{178ÌŒ™Ÿ\1ì¤eS*å«,,ITªÊ¯ç­ÔßG$BØnKK¸òâ|$ –Šº–t'}žú¶Ú”Teô²Ö÷—ýuÙUùë—ü—¦´Öe_­¼¥pÃ`P6Ï¥ÀFA/+”L…œûâ>?¨7ò^༒p¬¼ œ9»Ò‡íï]Jä[Ïl—™3OÜÝrQk‘ˆ†ï{ʵ¸ñ‹r<¹u–šç,Åmó€5ë ý ü´4už "¦è1Çà.ÝÑ»wJÊõ-+Â.ÛøÒóŒ.½´±%­uÙ|zgaû<ÀÎ{´¶æ$Dãth˜Li8®q”¨PÅᣳ §¬å³ ’3ßnE—ËÜð/÷kÃÅüïãZÚ($ä&÷ì€ón‘¸%·$âfID&U œüÉBo¶õ-ø¶ª4&9$ זּýê–Ü€o€¸ùxüŽßÔùÿVÎ~íg8·Ë ’¥4œ+?ÜžðÛþ¹'üÞ=¬AeÙÒ¨ÞÏõ×r*!dhS)yÀ4Çîtþ«ÎìñQ;-÷uÞ+ Žö«9÷µ½fnõ-mðšßÒ†oêöG¿Þíÿ%/ÿ›"féƒù5Ù—Ö £AõC<™Úéå8½º*QLyQ)t• ™ úX€Ø):Ï9e'ªÃ•VÿNù )јNGˆ¡®±®çlb[ë¬í·j¼„'ˆ˜S'4µÒe²~WõWtΤ†Ö² JqáíÃIaÇç脳Úåèˆ3A^Igl•›P?¼šòø/õïÙú6ü{þ‡ž7îг,Äez–‡·¬CσwèypëÐ3Ú·=·=øsëÐóÀ¡çÁ­CûówqèYöªý²=þ“z”ƒyæ ½sÌâsüoO"þ›YÉíöó%²ì–92YØ¿ƒ'Àfä ^ˆ¥s§œ‡û7„£ 0Ô '#&*]fø$uÔðö¢¢ˆ&ìTg·“å`6=µÙÑ»CSÀÒÏ8å $Ç‘ïË« ÄücÙ0çdý]a®Î€îú×í§™Ï÷ö²Ÿ7jûÄý Q‡T{Q… Úo·ñqkcëIª;=þçS» Ö˜`î9¡„â€à'ɤCU`†$sÂfžóE«‰›Vmîï•ÒwÕr¢=ÝØLsÌ 5ŸzŸSJ~§\"Òcì°µI¦Ò¨¤9%ü¾Þ'jf·‡YþUmb÷>—Ñe/ñþž?¸¹möþîÝ+ž,f+ƒIZ¢*Ê—¿»í.ó‰Vv˪•öo@¶RŠÔ…ô*Ow©9X 3²Ì+òË<¬ësÌs·ð?åìþõ.&¯–>€Ù-s`ØÿȘ§Öû‹à«Ï<€s·ðö^ÿ^ÛȘéîce\º­ï*®åCµ0Ä2þw˰‹ó e¹£æŒpÙ¦ž'«[[`lOu1¬Íë[sæ­9óÖœ™1Ë[sæ­9óÖœykÎÄŸ[sæ­9sî|nÍ™'sæRLdÍ'ò›'x|{¢dŽƒï7£³É6ÓeJ|¹Ï+´Î“uÅP‘·Rb6¼,Á/wœË7^BNÜZBN¼Z<ä\Kë’ÆÕ¬#´tçÔú7ÍÎϗέ)gú7jÍLQÕlxY¤2wœË7^‚°>¼aÂú·2S«ß®k¥^Ò0½q™iwêò× GÙfËÌCŸkѾBëeIÄ£‰È†—uêsǹ|ã%HÄ£¿œDü éKÚΗ£óQí–F\F\Ûæî¦_™Ó0+±CŽå{Ù¦^NÑîä*ÖhÈKíòpxÙH¿|J‰¿¶.€Ÿ~äÿ²áÝ_Œ›/pÝ/,k˜¿>üe õé/Üœá>&Èûæ­iî´oMû·¦}ü¹5íÿ0íϧù·¦þ¿©ÿº—÷—5ýç]¾·®9²Ê·'›~©\…©Â Ã\…ÙVåL‘7»i–$›kÊ_¾ñ‚/'úÎI×öåÅ^«$èp<¸âïg;øñ¯t rÑ/ꀋ3”ʬžqòzµÜ—ªÞ~%ÂòÇ™ƒ®¡ÎË'9èÜðÐÅ%fÜ<É4¨f’™Ì–Y„#Ïaé¶KИüaÿ HÌ­ëÃׇß´ëÃì%¾¾ëÃwöYdt§vERú÷wžÈ$ÃÙM³hk®ûÂò— Äs†þ7 Åß®³Ä „ð/éÝð•ü,/#.SþË…Ål£t&ùÈnšEr]–o¼ù˜3ôÿHòñÀ‘â–žðÏ—¦'_«ê(ZÏNGýþèŽÆÉe`U ÕåDgÉ ØæKÒŸBûžÀŽž²ÁóL—*ÝŸWÜóM$ÓØð³H%†?`ˆ¸‘Sú‹ª˜f–?ºá,Á*©”üžM©ÁïÑd$À&Ñ8šÆ¬xÀÙ£É žN#§®è— Ô((<Í -¬æ‡]èÍ©GÛÃÆ©J,_þvÁA×S£ÞAÕŒþú\'ì3›žvF“ά;Î+_rÕù§T.Öï³aŸ £¸æNfÛ§h 6nn=q¾n Tõ´ÛýµëX;RgÚnŽæŠÃö«Z©»ãÚbhÑ®¼Óø“¦4"K8÷¶À9×(¸·÷°œÃqõ(`‘‹¦ºûÑ®¼Ø¯u€D¢R°ß…Ø&dž÷äy/[Ÿ¶ ÛOš ÍÇ¢›Dm¢qèXç?˜NâîûKªz¬)ГpÈü, tCjbª% ¬½xØ FXqyt=†—¦I‚0yËä’0¥r°³1|v…xu´L†`^„±®—1Àã0I`d§8 Qyz)WeŸE`®¢†ò4àWVÛÇÅW3*âù·ûæ_¨–… X¾%,¢NG£Ý~x·(ø´´u2C<}&Måè—MìL8ÈðŠe¬¡O{¯ Nùç¯|›Åm½ŸÀœP ‚Í"‰Ù/TØl…Ë}‘ ·2ýî:t‘›]ƒ,fƧç&}ö#Ô½éÏ™ýœÉ/wÚ-9û6ÈYŠdÑfæÓ¬Ï8ÿ+RôeáœÛõë‘):î‡4ó¹¤È"7yÏó@ñÆ¥^}U••˜"/å»—™Âxþ¼ó§}Kšþ3H“äÊÈ¡LñïA˜¾jDÎNY´"ýâ«RŠLÿ15¬å%°Ïõ±º=Ý_ôtßDž"Úù®xzqÃûvbðБ-‹MÈ|.ŽoYç8ïy(¦¢©W_õðg9yæåÇq½<½‰çÏ;Ú˳ )Œ»%Kÿd)ƒé@ÌÈg:®ïuúmú~S4ö‹ûš†äµÝ~˜$kçá°‡Q÷Ú5m2¡,) "O½Óõ¦¾[#/Æ–×þçL(5ÅÍzáy}Ç f¥ ‰${Þ×äX…8b/y¦U„ÓK»O¦̪ìa@aP@¦øËƒð28mÃ`žô#tì ƒ~œU:M¡ã™5ÁL7IÛŸÀAe÷´xJO"Äý˜\Óà½rÿYÇšDß'A¨ÁœÎ†]rr!7àd4™Â[ºUâ]âܬ YÇšwÀ:Ö¡¥Å‘œ €õä‰(gÆ:nÙt_XDlé/r`x˜öëŸø09燪›=éLWKÆÏÄÙ†å^[Ë–!0š®„‰Þ±ó³Áf þÆnt¢GøÏ¶LÃÁs?‚ç”ÊK¥}[R‘ç_qA£ ʼ±uµo1ë3‡ÅY!äpè8$ñ`ÜÊR6®ãaÿ"¼L‚ßf0˜0x°µvr‰~mxŒø8\BŠîu¸f(;H<õÓ‚ØWŽ·Ú¸4Å[Á}ÐïÑè´Èd€|“J)©Ì ðóãXûA€¶=*ý˜F ¦Š¥ÀÍé;?Îf«¥¢m©ôk÷þ“wÁÝ ¸9 ž=°w(•2œÞ✃)Ó‚ñ(ÆØ3bx† Š˜ã}<ì%H³d—pýiý40‚¨€Ú«ð”#"ôOÃÎúYêV€¡Wÿž…Ãi|cÀTÜ+/¸Ù4¸À€ƒ“ÈÝÒä /òö®wK– †ŠZ¥fsã¹ñ2kÚÊ1÷§Ss_zj5ü±xæôàsòô¾,JÇ´*H½ã|¾ä!ÖÞß7ð³ëåbãrJŸ¥Añ„-Û³ûÆ3Y{Ý\«5½¼¾åZmFžõ:ÛSŒéÒMcAºîì·…fÔå ©Ë£‡c~s_ùv;÷­oºSÃûŠ9Üômí¡Ú®¥cù=kV/k¹{6ç-¬Yúíj[RŒæ‰ŠóP„âWçÉ‹Ë#Í¥ƒAÖ¸œPH/Ÿd6²ÑÂqeëegû×#cj^–XKÓÁÿƒˆ[àG ˜;Ï1N±€ÉH}ùùx½x3dþ«Iý‹ŽJFȱ‹5óæïòm|-¥ƒ-‡†Ã.ÈÀ 1¿¦Ä’~'ñh–0J±©(r ,àG1 gÁ‰OPއ 4÷8†Ôô‰IÏÁЧaŒê•–/š x'àŠ?Þ)!SбƒXRä¡٫Ô÷ŠÝá…й ò6È(,ÿc˜Ùl<œDq%rMÏI¹KsDv8X9yMqr¨]ùMN’ÉŽ;UÜ(XEïpO½ýq[€ŒQk¦³FÑSÛŸ×}ó¢Rý)ÿÝÏ]›X UñïÕþ¨ö;£É{J­›R¸`r@iÄÈ™dëd†=Ø–eDåæ›VÐåÐfurAb˜ý¨l»êhµöüt¡"›6%c!þ~øºVí Í&]øx™IïȲ׃òR¬Á¤+”iMg“¡³|4!í0néPý‡³zØÁ^ÚÎ&C“D!¤#=ak<Þ>!ù°¾”Z¬ãÚΜ…´Vÿâ<†£W‘µ»œ”i¿]²÷ü%§/š'¼çæÓ¸ J…Ó醺_ŠÖ‚ NÊÁâ CH)ã®DîõÂiè%¦¯/‡dÙdv}O¢éÐ÷ £®o<,10€Ç2ñ…Üï_‘p€Y[_¢¨*% «@±²™äõ‘t¥9 œí΀Î,¬û.âZ~Ÿ~ÅdÉe!$jEÃA”5 9ÁeÑ(›7’&¿ù«›?’I?úõí€ÐŠWsñP×ÔˆJÛùp 8ÅLÑÖ‚˜ãvoÉã&ç ŒL{ajÍæaèúA¥]}•IÈš4á´Æ¾ýHÎ,]Y¶ suÌc–Eƒcz£µ$®ËQëüuÕÃÆ®9¶ì‡þˆãæà½Å¦gÜ[–æãs{b„°â…„‹R ˜– œMGkpPúêNhôfd#$grƒÈûx ÌÀPå|ÆGÓ‹Ø™)ú¡áƒh<”™c {£Ó|L5´óp< /|î•d›~u¶÷E*ûû‡ÇmO§ævè´Úͼ;Úºe1:ýhx6=·oÔ ]"½QG5kDöISC-Bªðy¢Þpµ8ÃõîwÝo¦™>“æØÁ¹ ü”RO`c`7RÒ)xn¤ú*{Àáòµ4=G7}±!)ñV(Rë}<Öx•¾#-æD¡²°mf ïm¾óÐ`X‚S¸å†ÝÈÂÂÇÞlÜ»å> ݳ¨£i¨¡¥˜ç üSÃù·¶ÇXæ<ÞmÈ Ooå5jB#õdmÒº»W³ ‡Ë3Ê»µ½z£f¦aÙANÃ~é4Ö‘Ä^å|–h’u蜓4cÖØ9ì•íò¡i›G¬yö&«¬< %!¡Y®M'3k»ó,jÎÑÝfÙ!ÚãÚÊW0;eГp H-| ÷—“30yã» Ÿbîsöíê'+Ó(™âÐAöÄô#_WHZí†ÃïA,Ä6• Μb”þ¥¹à© Œæl2šómÎÊø¸h“A'\Ðåöà¬TŠLéqj⥈îvG“¢,ÂÓ8ÞߟÃÌÛÅÅ´”‹(‡x­]Äx$ɪåœXû¾ô7*g?|y‘ȼ”ÐìˆÍ)™Ù™oN'GÖ6̲-Žôe:_Mæ¾®Ôí+¯-y/#{Ï—¾=ÍãHà7"ƒ_G ¿A9|)Iü ²øiüÈUž(z‹-)Œß°8~#ù͈ä7"”ߘX~#‚ù‹æ7(œ_G<ÿ<=-¢{æ‡ Å+Ø{Æ‹/+°çºE~þíÿöåuÍZõ¸Ùª}­øR—­¯ud.Ç!BÍ®äjѵ#5 úpD¾LªûNàz‡•~tµ QÌQró²+ —\ñ§29› 0)yG¢Jm'¨‹0¼øeÄ]z•úÀüÎ’äòÓz»vpUíó3µÿÍÿPíóªÚÿ¦Gïªçý(aö×pŠš«Ð&®1Z˦AØûøo‘ñ–»S"74¬6 ú!zΑk§N É:«„+Œu‰—@yyÔŸ!z fÓYØ÷„.VZ[˜¨V¹*R¾Z¼â»áìì|Š)EÉLãA´^r.*¥‡ì؉‡§#8²qÀ'H CžQˆt”~±ÿ¬=æôžç©/Ç–Û“üØÎx«PòH~.ëØaÏbXîTÒ'.i—´cuuú)áRgOÈãþ¡[wÍ•®šÑ ¢èâÕ Û§b¶ˆìDä:ô=4JÚZXåxO#Àé‘/4£‹Ž^öu³,;Læ¶s¦Öi'pŠP¹­½õJ¯a^GÙÖ|ôpEèà®Óÿ ™Ãæ³àšÌ/sk xk û‹¬aÞ}å¦Ì³Èîa»˜LÕ£JžW{s»Î(ÂÃDÈì«a']ÉÓÃ¥µtoJt›B8ƒÉ¬Û…t:ëkw5@çd:a÷N‹·$ºýHbX¼F-kvBÇîTNd•!v:¹ÄÛé£iı$¬ô¾d=2ðL0 3p—S¿J¶ÌÛsž·o-º0‰pMº«[pT·¶fèà*¶æiƒlŒG9ý9ø×I÷Þæ;€í?}GÛЫ*Fý¨Šw÷nNÙß;^Ù_"¸ÈMÎâËÇš#WI–ïe/¿ÿ2ÈÚâ‚¥ÏøÞñ¸DÇÌ‘{õf«]=.®b¹Þ’YË,ç»T báÎõú§‚%Ò+1?¡«#ëQr×´TKb¨ùæz)Î÷ZÍrÎËÖbMt†‹«ÿ­lÑT«ï¯&ä=‰öE³rt˜ŠÂke?®æ´ÎyÎOÿUk~M72‡2”ñdOÕL™Á1ç°mW’À).-¥,vqë{öøžeÅéÄÌ-«72#Ë5º÷¢mmTädî&dVE3QrvñâOÐ#>œø&tõ‘ ç»Ùj³û ìàÎ|ºÉÀ˜#+‚b•@@15Á¿Øíºe2QN‘žŠ’`ÛàÞëiÙÖ9?T«`Û=Sp}ÌCÛ¯f#¸i‡½À†Elô­àÖF0ÏF >9ì¶Áì60E±CW5døü{FM•A9ê=å¶DVP«‚$RdÉrôýØÛ|V<ƒßxçßQVw»²‘idîhô\R­·eüR‚ô Æ£I8¹ ´ »äù,]ÝtãGÕê%¢yÙ!” Ñgv÷1óR Iù)•»të¬h[s­¢.”¾”–Å\ê!„þi]2 éÄK c͈= |_†Œ„ V‹Þ(øÃ‡c,ÌÖS²Mx|µe³vÆ¡íÖöX2"†]¬LY6¨5×PâŠ"ÛÞQ9¤àß)-ÀSS=Ѹ ‡2±Hžh¯®‰-‰Hóat!ÍÐú!B}YJ¡”<ÃÄV…,ÿÛwlŒ:j_&Ù‘Ï.Õ|±Y…Á…)$“\¸ð¨ \È’b^¼ï”." uI˜E(RI•1±ÆPÐF=Œuäç=æÌõIqI—C³+(áÏü¨\¹-m©ÌR=(a>5_XϲE+]ž` ¸8.ݸŽâ:*€ ‘ߕೖ¶¼ŒþWÛpÕoÈ€{+%~RâW´¤ÜÆ·qEY ¾9KJN\Ñó|íþUÇ¥4ù‹Å‡,ö³,~ÿ7xRηc¸4¦ üõS­Ý<¨üŒŽôk½QFB0˜%S R8¡ÌdÚý—PXEòåÖð~íõX’åF€£¡¸ö¬[Ъa¿;ë—‰~÷²-è+°¶I_˜?âsŽ»‡÷@ö‚«Ùyá™?s Ô¥¯¸1k9øR žÂ3¶ÉÃa"ëô2Pv=X[ߨÇ9û‘‚ÎF<ǘu]¶2F9xŠÛ‚»¦lz:¶ÆÜ#ŽGwߣµ¯,á ” :C–xî “¯¸ph³g“%x‚þf{^z,.þVL»®˜¦mT7$«9šÏÖœ¶úáÖÀaQŽd6¥šêå³Oëƒ\³¢Ð@¸y{gdùž%úÄpqô© ÒeÔñ#ëkÿ0#m5ÒI+˜ ¶ðÁñd„v} ÇDœWœ©FÂl3óírèsÊo"¢³KDCV,´ë¤‘ý<'ö9;ÚYuð/›yq„!îV¼ÿB[ªr6©ïÂgއÆÏ]lĺù|v5tú¥Qû¹-óÇóíÚSUâ[y…~ÒŸ¬13@vœ¤‡tUÚ< ´•´J²x‰2cÈEEÝÄ'L]B¨,×k¸”‡è¡k±J‘}ü%Ù¨fluDzæˆOá\÷$1Òvf`„Ñ”ûþl$Æg¾9º‡â!‡/1¶€¾9‰þ=£,Àˆ£]í~ŽaZãIŒ×œ•·×rD¹®W(ÿ%wFVã—7Ca4¨-^u€K}†"•ší)ÌÒðߦ–ð"L±eˆý†áz¦ÏlÉRg—á†ëmÎFñ£{;öl|3»Ö+Î0Š‘ãY_wâ5–-,®¡¼ '=½ƒ ?ÿ¼ÚhF©‘ÌJëp¯-CÁ¥£:ê‘xkø¥vƒ³ËÍÎp¤‘×SZ°M>” `¸7+ý›Œ´XÒ†'{ÁÐ6é‰5ö=eßRLöÂ\¾[™>5;CT ]—c[FgðÜ QÒžøf5PXbÈ=’]LFhK§><„D†Qj¤Ö,c5”&I P×÷'PžÔÔæ£‰ŽÏ%‹Ò<>’¹ÿtˆž.C#η†J‚;ñDÊšM×Aع6Þ’|’kápHIèIZ¢Á9›¢+*¦A¸ŠSVú‘¨7ük„¿ÿ)½LÚë }¨æ¯ô*ÐÅɨœ¡ ‚¤~šù ­Ç PïS¸£ðÜ$씵n+fB­Ôède»•FõÕa³¶+‰³ËF¦d‚â­ÍíÊØ¾cÊ£zéO¶±üYÒÊú–&P…ìÏìóV*ÌÃal'æÂjº]€íÅ…ºêOa•¶CUÛVÇ`–¨p-àZ`sÎF8¯l ]®úÃ[Hj,­WÔ4TqX=ýqT‚xhP6#*„}2èL#à ˜Òµ|J¹Ï‘íÐ_™Â Ù ¿ ¢d®‰g3ÄÇIˆî š«1ñOJ-Ä ª‚&Y´R7$Ú&Ln &T‘ùEO*zñr Ñø‡ÿ Nâi¢Ñ† SÎLBÛd˜uu;CNlÝA^CKchÐ-9§~FYY±›˜…&ál¢ùçç’Æ•kA[þ¬¬Ê8Œ'I0îC×%e¹%¥ Þa(Ê8‰*»S¤ö½í J¤|h„È¡Í-NS`Pu `N]w.¿Ù3i– ç…¹KqØ3 zr Lå €ø.÷ç£Înm¯Aö ÑV€x‡‰º^×íúa£0îN¢-Ë6Éåø)‹,¹YÚ-³Y² GG@ä;TIܦ¼ãQY¾b¡ÎªùAÙﺬä·2ÛÒ-cœõeA‡RႲÀì™ÕîËô&d ÎyYbó’ú$>‹Ñ˜«ÎÂŽšÍ¶ZsNÂ6œõûÀw45퀌¹ñ±Û >m¬eÔ°ÔùÜQ+ë4ãE¤Epž[tÛy~2Œé6ëP~bçÈ/îŒG ä[>›ž"ãŽÎ ÕðÇð+›$ôë6·ΤCÏ‚q#Ö¯´å_Œº³lˆµOìQ ¢A÷|Ò!aÍþG±.j¸¥[ŠöÉÙ ÜÆvæ›­ô+=—ÌçÒ¡àÚà}Br¨T`)xñ¡f#͉㑧ÈÝIÔ}_)“•³Hxë-Ôaícz¯AØŒ p}ÍXÅ $FøáãŸ#þbÿ°ú“(u•Ö2ÄN[r2ÈÑ¥}7èžl4 gÀ<Í9­Gé6«0›ànVSœ{‹í!£Θ»!µ€¼$vç+yMHŽâs3Ü'JëÁ‹Ë`<›ò"Re"¹«¦!®"éˇhª‰PNF³ Üð‚Üi¤ë" ëã1î w)êI6xMGp)`$efWeÐqRLCZ_âäyŽ×Ù3ÒŽ tÇ“–4Oì§£oÂubò€DaI!+Ü[“µ_Ñpþ¢Òªq¢‚íÂ" <@۲͓¬ÔxͰ±^G^‘!ß{¬ÑßÌRJãE`wGgC„…°ËŠÿØ fØðµÕ¤G„Ÿôc—]CAåõᘨÜ龜I=WûÊKÔ¶y“ÚÛkÕÚþ¤p{} Òº´äDù´ßb–µ{J·ˆ~3ʯ ±ÃÚŒbZ™ôg†RÇšŠ€-kϑσOuŒèµXêºêÞ’žáCØ{Áq{O'ƒj~^‘tˆHBQHRkeM5k¨j|Œ}õÆëÊ~}·_˜;J֛ƃålZ-I×+üõ{J’Ðt%ݳ¸+ì7]M‰ËJ¾¤Àco­*/ëU3Eœ!Aê#s &p^Ôšù‹N­æL#bál6¤:R½é¹·®§ýðÌZMdq*­ŸJÆä±=÷ŸÌ 4Í:Ô ë3µ±zÔ©PÙÍ6B€5Äö€ÇË^P;¯µÎ¬c±„áõà8Á0Œ‘plp5ŽtT¼‰•è«¥ç^ 7 :¶(÷ã÷‘æpBJ.Œrg¤nh,Í@c*k©O&¶Ss©K²)ÙƒÄßbI&CŸP³ïTŽÛ‡Tµ¼Öjž07†—*Í•ZW¥¥4¾¡=¾™ LMx)K¤1«¥-јˆ­“¡‹<þ}¬àÐVŒN}\pÃÑpa…é$&§P(íÚ¤v#cÐV@"³Ä,„ÎSaVØû n >=Á´¹#Ú.!ëÉY9qØH¸ /F£~#‚‹·û>î%L’Ù J ú¤Zx£¿Ž°YCÃŽ¹E‡dràÀiS[:¸'—…°Û{Ñpª9'쯭²Ñ±ðWzñ‡˜\O.9Vã £.t>jÿ`6ØÛS”Zï ÜB©5Ú(|RÒ=ýfŸ›’>îαÞzxŽ:|.ŠÿÝÛ»‡Xð`ãƒÃC|€^õ ‹D§Ð^ývxÈ´û9OÅ÷r¨M蚖ʸ‹$Ì'áÐbd„™%9w8fSRv+.$ó2ã rA\MÏÅþS4Lå•\ÛR—›Íä Èú,Ø4žoΛçb6×|ÂZ°Uº_o´[£Z“ ˆ$ˆˆf9ç2¢'ãôè^ ´eZr[Ô¦‰ƒÈÈnå]nú:Û.Xâ³°ƒ{Žnb»`ìVÊ´mgíXÁ ×0ª’ŸqX)öBq¦wH/>Ìzî|\Nb[Ô™Q°BŽF'Ú=IË!é¢W„vâ‰&ÉÓ ³¶ž„ÔS¢FÐÕ2ziM@à ‘Çq(›ª!iu´¿£øù¹#猧½v\=sE1ž!”4ðF´œÛØGžxM­Užq°9™‰’ˆ•ÑR¼A8yï©/YdQðŠ«•æO%®øËHò´ki×ÑÑ–‘ºˆj“Õ§ª.k;‰ *#š¹ã¬y}*ò1_ˆŠ÷”>–‘Aº,Æ‚ï"?›š‘•ÚÐÜ l—S˜aÒ¥‘9%cCI½Ôú – /Iޝ WGYZ·Zftîô¢±År@Pª–ú¼iÈrx¶©{@- KZ]©×ãݦD½µ{À|zÛªuX˜ëì×êí’ãe3Oø£æ©+ ðµ˜QÎÿ¶XýÍ5­åÙ¶ÛD4évô"…¦Ù<ä°Z-‡ ¦Ã¢7-ým.¨LéöXž"óÇèy)sÀ^£íL`2Z$=É©'æ5µ[³²!âãRÖÄÝ&ÛL¤-¿yCmÚÍRºòc&T»±G^¨$¾„JD'ò þcÛ‚žAëñ¥Ë38×”é«Ã \~#Û/`G ´;–ç0<‚'x’/ _¡ŽQزOØÖa™«wž¥/|nyãêí FBs!GìÏE¤øm“ˆ¿r *˜õ$™t¨ØÄP!â܇ü¡aw´±ßþå¨lÂϵ]àå¨3­‚|Äê©H;év•p@êóN•<0;‹onëÈ ï¨ß‡vøØ‹f€Úß[Tc!(¸u–„u¼Xµ™ÙÖœIÊãÍ« ¸ÒøÅ|ÂÝ xµLww”)øÚƒnÕÃ×ÚÏÕ}æ9Ùê`)luíÅñK¸¹šµ LçÅ~­H:ÍÔÅ‚J­Ù`os餿tx$~#–R(dEû… üNÚ9ÜâSr Œ'h@Àd{OÖPüÆÓ°ù˜~å^I¹ ¢(ô©ktf–‘Dh†ª“$I!(8ƒ§¸‡ž½Èå°1é¨,_¬B€)Ä€T#.-áù rDB¢] IÄÚ·Il2Z»fØ?á Δ6ïc<˜ ‚§ OAF|ÃYJ%Ô ? &ªH ÙÐB²0áäÌ 5N`pz8hã™II«Ôêù™Õ ]EsZhÙÿý<„Zý'ìñ)Š÷^@A|ûIÒñÙ¢Æ!J¢ê«ˆÃš%ú£àfÖÆ­²ïËÞk¢bEÜÄ­3,lj‚d…©óïÚ½3ß kâœÒ.ñ¶æùì/?óóœØ«ei>Û ’©öÇ”*V¼·s n±ªUî.Øs})ñÚšþ¶ü×ik"$Ô!ªúX¯LqÕ…pÍü\ànããØ‚Pœn¢í…—Õõ´»¡:÷ðW1hZœ5Û±/g¶ŸÔ8Øw‘ÎÃ-O?>ÁÌ6eŠ#2 o e@Ÿø¡ãƒ—ú ÆÂgì–F!·ñ3-õ¦Ñ^ñN2éüYÞú^…¯‘«¸P>šM÷Öƒ «ãDÜÄÉß&³“¸œ! KÒt’P¶oõBä׋óQ?ò‚áQ2£«¡ƒA?îppƒèÖ\ý€·°z­ÊÁ]˨)œ%î ÉØ‰,¡-³zO.õMÞAç† D;gm%ú‚–­’A3Á,åÛD:mÄ«;Üßã•gõ*p/RP ÂKŽ€Ì„cÜU‹Nzh>×ZCd e\GEê9¸¨ü|Ö#Ûe¤h9†”øücÖ[“÷ýj¥UÛG«DjçìÏ´‘—é`@°zZ,‘å^pÚíj+Õ„“½dÝVK5³žóó`së$ºwÔ7W P=²gä/Øqu·sØ~Ukâ*íqë(¼ìqÐ]ûçŸËŽãsBÎDó‘Ý 6úŽQªËØþƒÊ‘ƒâ•©ˆ°—~0 qWÁÓç`…4|‹¡æ?ÍY[ )~‘wö+9Ç@;@©C ¨ô <õËà?~7ýÍ' òó³9¨Ï >ñežŸ‰ö9‹äâš±ƒòþ®‰ðW•½`ÒCXÞ½lÞÇØ#Ìf H¤-° ùÕã_XiQÛí´Ž_üW­Ú.ÈψÀ±‡Çg$åge¡±}¯yº]_7€]Ķ;²în¿[,~Ž`µä\˜ömÑ‘ÇIÏÑ3µüoΰ¶õ"\4ã,b0Wðd?ˆ¨çªÌñ+¢S±¾**°I´]ȘˆÑôcFzž‰Ý–ÒºHgªh-PÊq÷‰` íØZ¨Úî‹_ȼE2öQ³ÿº-¥”çGËä­*‘zZ Œà©,äe•Ü€ƒî(øF[š&ÑYôQÙY âI-ù )ŽpjÙcËÁ8šAÐ&ˆa¤%S©ßœVíLˆ$¥lo+´‚q§Òƒ-eˆ¯rzªµ™lë|dút»1v²Nfyi‚"é&(FÍ«Èm–’¥˜ÆæR™Xü™´kf$x5ºˆ>`PåTW`*çÿ"êøÈ³À”x´½8!b]Ø ¤Ìn°Ê© ÿކ «x†€:j¹7?T %ìPà˜JwiŒFïE\¢¨ÇzÛoܤì¨H&¬¸ŽKUÐ;ë€uOü;òÍNM–ü;üŽwÁ1õ4SXR¼gË® ×Ú[ÌÐ…Þ-ìr*JêÏÒD<%©ƒXù*rI›Uà ê„Ð$âdþB•"] '£é¹ª¢'±”J+¿ÜîÛ˜œ œ<¤B•æi»MÆŸ"À˜sJöÒeõÇ1¸Ëë4±`!!ü‡—›ˆ×˜L ϳl!%U,‘Ù%!uÙÖˆ„ Æ€™³W)×Ù¹½/È|Qv¨‹¸Qð#ˉÊÁ9'ÂI?Žœ<Ä‘ÕG1/ŽU¸=V¸‚£L¹È$‘¦Ød søéŠ~‘δE>Ê–xÉ >lS u‰á{¼åÏggè{z*Æ)“áLlsÄw@YŠGÔ%œ* |d‚[ªXe/}–“i3H×dtlå7 @J:Ú«Ìs$³yIt úðû)jsÑõÍ_=ÕÏ™Ñ2’œà Jd§+SF¢‹ØcD¹WTÀ[©iìÈZùÀ|¡CÒ±O› 33€çÄ ê˜ïÀÙgûyváÜt´ƒr°,Xek½ì=ò’Wå8 ®\k?:Ûú¿9?¡ðªÌ•£Ã7óósv¸Hl¡H5¶ÁÎÓ*’˜¨ßóü$F93Û¯RþÖØ™~äO<]¼N>NÃûô\iHª ƒtiŒÙú,”™[RŽõ<œÙº:Òl1ÖlÍÁš­9X#Û´•»M[×ß§-£Ð dÔgß 6g(×sÓaÂxkçC´²!ªøX¾„&Çã4Æ}·ÏXÞ{ÅUMe Ì…œ.Žsêm\ü]àÙêV¾ÊÏ1g[*‹Œ[è¶-QXÂQÝEƒ–v¤JÃw ¼‘^[^‚)Êå~Všáɦ³YŒŽµ"æfw×Ä]ðù„9÷¶LÉT:ê~Ê‘¡R’ƒ»U|û/òýÔ°Niq°Œ4G?‡ºÜ ¥‹¬žî¡)[Eu´«,é(,PÄ®I;ƒ${6‰L^½èc7O™ê‘ïŸò¬Ì/aøýHé?0!Ïeb2®¡ekеÁ]–I÷3'yVî|¶žtK½èô¾GQɈàS 4V é ó¯Šk5Ü›ñ–B÷ØÐª/ªI¶2ú¢•ÞŠ“£‡Äé ðëâ(L*z œUµç`»L-0ëñil„}ÊKŠKµÎz‰ÝdZnïÚz, NÀêt.d{ÉÒˆØ ³t‰?ÙÙÒ±²;Žb4}ZŸsj/ëúI Èû4ezÈ ¬L¾*â §Çg…4ŒÏ(JµúÜ8ð™µÐi>µI7Odö¸…”ï°pTòir¾¾O} •?Öå6–!×wÞTŒ’-Ëc+tŠH»/-5aî×ËC›xWÍЛ"º78uo¢yÂcØ8¤„ËaPmª<ßZ-ö8¥•Æ/he½ØÏ•e.Töð‹€|@é¹Âd­ˆÖRÖ‰/RŒf†b‘<Äüu Ý}µp†Z¢h;æÚž¹ÈÆä½ÃÙ”2€]EŸ’ËIìh÷ä¹;•…/K2¨ó¹¹ÄaˆþS°>ì6Dæ«ç°x¦N[ª4q-K7ûE&¹»VmY¥YŸÅæì—沄Dß’G…U3 ÏK˜ˆ—° [qxéXóW•ì>™¨}«Ø8m÷ Nã®TÿL‚n[„‰ÉéD<è(ÑvOœdð(è‡Ã³Yxf왩4YO#bXŽà²ŠÇÁ«ð÷H̳‡r•£:k¢ª£ñ%‰A±[ 6ÿùÏÖ¶66·‚ãaL6í)MµN&qïÌÖ¦6¢‹<0á1€ÙÚÈSH¥øœŸB3êÅx œÌèòÁ5F3ª¼¸þY×ɲ‰lâ ‘dèTyój³wr7ä0 *XM¸–T\ð¥U0^´CŽ©yÍ…H¢éSÞô²GEá{2Z3òœ€Û:#9{LuõJÃwµç:ÙÇ ©zí*‹·|´Ûãð§y#‰‡öj¨‘À4{3a½ÁÈ dH׌ë„Òu©h¨6ì>ì«ÅЫ{c>½îÚ‘Ûž†ž]CüˆÝG½Ÿœ™äƒY˜¶‰„eʰ½ ø£I¢rM‘k;qK½*ÑÅj2`ŠM^1ÌÕ#þ %Ñì KF§Ó Ä &?ŽºˆgÐ5Fì“ÓJ¸FäfÕ~Uoèuõ¦d~?j¾®ïÖvƒ¿íWµ!ÍúËWíàÕáþn­Ùfž6ÚÍú‹ãö!Æ’ •ý`·rPy S+.XØ’êq³v€C>Ü+´Ž_´Úõöq»¼<<Ü¥unÕš¯ëÕZk;Ø?lÑb·jeøB»‚F°Rð~qܪãš(Pó˜ªb•”[HP­@×]ZÜÃMè°ù Å5 µ/o^Õ0¿̺@+UÁ%hÁŠUÛv3ø,`ÛšcШ½Ü¯¿¬5ª5|KY²ÞÔ[µlU½… êüÙ7øæ1N™¶FÅ¿Z[¦ ê{Ae÷u‡Í X‰¨.hZ ÝÊr¯ßðu€·¶®zL×6ŠTÀ_±Ÿº«áôžMží³h‘ƒ¦aéG–˜Q0šI¾†z’Ù}Yžâ!GjjÕoV5\ßGܨX*˜|Nê£Siéš§Tp­R™GÉô,Éq.“i4ÀÊKÕ. 骘0tmP¸Pw t8h2 ÎÑyRÇÍèDüp×ö¥rŠR4½:ºS'þ™?mò!ïW;xb£á‡x2"M/¨j[éIX‹¥HŸ¹¤ñ.?žÓ`í½}({2u½ô;ñÆB*æBàìÀÁ³.ª+ÖÏŸ[’i/ùÈïÈyÆ3Ãg”Ÿ é$à± ÷¸ò‡²éO_”©JÀ×/Hïü' näÈו¨d)ÐPQ˜!|²Yàôù—SÚëÓ"œÛh2!t a< \}@𫘈ÞÏ€¹ϦD½Ÿ¿"V¬HDD$¶ÖWU!õ¼áËK¦÷>/@äÐ<¡wvï·+Õ·Š&SwÅXMã§nYð!ðêúq{oí uWªöaÎÍle NË¥8ÇÜÜV"4ÌXHN΀2X…?>à–îÕC[=Ý.H‚uüÏHWÒ ŒM²%º‚6À; ‰üG î½m¿ð´*Xâ=&“ýè´£^ã71ëx89©)‘ú„¥ðZà>g´±k~(Û¤NŠsªÎ..üvïž.ËA€ÇЗå×øÊKOïì߯}o›NØÆ2éÆEh´n 3q­ˆŸ²aÙ/í·¶ñ‡—˜p„tlXF/+äÉ·ŸŠZESFÖ"hË-mã¥2Ìeeuƒ¨ü400K’_N€¶Fʘ7=ƒ!áÅYœÀ‡â eEªR§/g–µåg)gó«OÖ™I§±¿õÈšÿŠMHŠý`ããÖ£ÒŠ1)·á¦4ÔÎúl ¡nÛMˆî¤ï0ÏN˜¿î'κë“Ïé– –Ý™wÉ¥ 'ªwOû¾K`yQ™sæM;¥;]¹1žA<·d¯“c»ä—Ñ.ˆ×©é58Û{)ª=¶¿Î¦4³Ø|1R]É’ôî”í] .¡ÃBñ X'òt,Q(ŒüâBög¿(ÜÂYJVÙ)†ŸE¸´$]p€ŒZæ¿n¾Ë™jXzŒHÔ£P’ ºœ­5ðX{-ÿ­ËyÂê^’1HRСÏP}.üsJ‹ ¬l–9“v«³_k¼l¿*§:;7v¸³ã¾/]ó䋪Ð:ª«&#ïö]/Xá½Ã%…d™ú®GkF—LEwŒ j–¾ž’ª¸È“pR8»¨`ï1;ñÆ_ñÐáh_‰á'ç5QN²`*ÚïuNÖ[ d½ååÖT¢h „Ä“Æá¬‹œo0Žz¤ø¦Äm”4·O!¿Z À=ƒLÅ*Ï7FwON‰7¼:w$,ÞÕ ªã•9¥·CéªÔ¤fÀã€a`h4íR`ã…Qß ‚æwÃÙǸÃ0Ñ`P I?RXèÔÚœcj†£ úÈòŸ€²$så<’]—±„ct¸`…-ÇÒFÇS["Ðô×ÈE‘ætÐ¥ØCפ´-6ïs)5ŠÓ~Lþ‹@hqVܙޫG„Gˆ´¼(e㇄/E¬gá™âÚ[êœáw‰0ã$ºß˜ Wí‘Ú"¥T*jýŽÖY;ÙàK¶ªEíÁˆ•6Aا½™¢³-$‘`κÖm #äGñ …•¹Íp-œÊ”M3Jì°ô4*6öº "×#¥­áØ~•0p*£!leÈ¡ÔÕC̺Ô[‡kOž<úçÚ¦ë{H‹7!¦tÁØ ÇWH2%ÇCöq lQ OÆ#óUJ,÷ÌħÑ•SFŸÆg³‰Zñµ5vuX›D´Àkˆ¢Å0I¾qpS`´ê|¹3„C?Öö…×Ð{'m¹HèáWjiËÛ”¶æíÊÜž®$äTJ•›µ2Á)‚Ḽ́èìnÈS`MÞœ£x‹/´´ÁrœcG ¢ðó8¸ü ý‘‚XRØÐÞ^à<ýîêƒDâ¿4ͺ‘–Än]^'™ô`Ës&’±ˆtÚÇãÿc«‘F}ÅPîÕpœH%À źš{‡¤{þáÑÖ­ÿçWø¹õÿüÏóÿ|xëÿyëÿyëÿyëÿyëÿyëÿùµý?çú»Ï:\žÆËbX ‚¡~ü³5J$0³Q»%J|8Xßð$:ÇŒs¸•ŸBRõÊççûb §ÄÎЛ¶JZKái­?ŽÉ§4ãåpàd®@&¯©Ù‡Ó\|Ö€ôÑQ;ZäsQü±ªv”áé†÷ô䨭œ ¹ò´r‚Å#•¹ôä0C]2õ.‹¥§˜€uÖïÑœ)·­ô£ûLüpmØ®)ÄŽÙ_OµeÑ‘R}`¸?& U¶ˆ‚dŸbI¹=Šýh,¦áx;‚_Ò¸Š+¢ÑÁ 4$¯ Äõ†¾}[õvš³ìf#Ð0@_ÍÍRd†N”‚òQÊ]0¥Ìyûv¯ ÿìã?}ü§ñîÖ'üõ¸ÌSœ9דÞ|±W}à‘Z¾œSƒ½é•zh¨:_0©»gWAHxQ²Qim?’f¬”2øf’¤‹þÍ8šü¨°OߦW¢­¯œHÌñ²v-^âhªàøß$m„UÀ‡kL°K¯ŠÂŸeP_m'%ˆy{„»7–ÝûY´°L Ìð«±^b½¤|xAèžqª r›9óQçâ üHYñWòXÞ+A¨^iL<9oÒË=`õð¸Ñˆ%ÃùÈÄLI.2êN©dú.>¿}ûà‡°+§5Å="'iû\ùw ^#ðI¹H¯tμœ¦žã‘ âaä¾ï9誊h  ÝÚV¦š \À€Y"…Y óÑÝÿ íP‘({>ʯB•ðœd%;3?…”\b"vÞCï‚3à/ð¯÷À¶÷Kÿ=!!ƽ¿¯¤º w#÷IõäÅ›˜ HeÁÔ“ÊYÒÉúÝÏã²V0Q½åÓla¢Y«•jµvÔ.•á×½J}¿Dc.®‚d{Po#êÉzŽNY¦J.úw5ÅO¾ KIáéc…ºšØQ›qùFÅ¡⌃Èë&G$œ³ê’ß46†äU+Â#À'ÆÉRÏ×`Q­2ã‘`׿l>Vˆ§½îDA‰ËlyUkŽè«Ü:ÂG»ŒPqõ ÒüIv(¡µ™Ö˜Ï£þˆ?.ñ?âÓ¡á„"^6z‘Q–Ä•J«Z¯[ŽH¼ýçôgÏÜ`<®0ûÿ߯oß¾ûŸÎÜ_BÀûÏ:[z#~È—£øl¢iÈTš'eS׬HR,éÃÞP2BRJ6ƒIŠaç_]š»LÔS<œÅu1aÞÇÞ“ òšxFœžžª1°"ÐeqDå*1i‡^3y……Ò³z´TÏ•ÔMGl áR†£æq£F¿µ~ª)Ñ~Uk,ËSÎÖ©H€%qûq‰ÂSM©?£I[J¿4þ8¾÷)‹Òº:[sL?žVý°‘!àq¶ø$Ù)²€™QøÍ£ï­[¦WPŽPÀîL-@Òž…½Z£í‚*Û†–ü{FÚÌýiCV‚naŒG¤t+ àæ[æÍ¤ ïý^ó»¬ÒÁehà-®ì·q›kÝÚn§º_iµJéU¶/«­3LTÁ‹ãéå’ ¬½Ñgæ¢J·d2´]ÄLý Ý»ôœIDZ•mƒéMÔ:bZqÙRù‚}Z>O+ÆçèÅpq´îž@H²Y×èÀ·% xÚ=g«"7’þ6šqUa=d³9ËêBËg‡]l·SŒJØ””g¬Øîd“Â/Ì%Gv½¬†[‡zdµ´LtNŸsú¸-.ÝòÑÒ-ib[@ÆÌ!-Ýøød#·íƒ¼¶¶=.Ýíá>ñè m/×öѵ¶NšËx›{ÕàÁã­–²z?¾boÛVç2‚žwío|ÜÜ!öTßg씑¹e6„×X^¦3*pˆÚâ9yßì¶®ÐöaV[Û¸—ÝíÑ>ñxqÛ8a Ã# ‘hD ãʔ٥ßÎ0°{7>ž’ßü÷ÔÆ $¤½:[h¢Nfð쌲©¹'~ËFÓWqNß̯è‰ä5}°õ9x‘Ýû*¨‰’Õ"ö6mÔJ<© ‰åª•{ Ñv?x[Û'΀ÊËå#kíI°šG‡«‚ Wù4xróñý[ÄgÚdÿ„p3X~Ì‚™7‡G¾í¤û°ËÕKY|NC†Ñ}æ4Pj ¾äºÌüºnÌ÷Ñ­PÜ$UP¬?zkFýSo0´è8s§Ïî^-ÉëÐéÈ”çQ UQ³´é ë²/­û œ*?TÜ6¥ï˾¢+-Û!eÄ\DïöZŠYª“}ì2 —ÑÚ3G¯9zoñ\ý1m’Ãíÿ¯z[°H`á¶$³„8Á8NãïAUø”ŌȱÚñc`‹vŽJ[¸¬ºôÆËâÉñC[6„7›ã"æp³ßâˆE§VU(På"ìi±n<Í™ „ Z›Ùˆ0|ã~¨8Û0•ÓÃr9{FWÎÇ,Y·jý½V­Ý!VëÔfØ–sO¹a¹…Á‡…é_* knWümJ<)£}^cÛôÃhB›„®d'Ñ)b†T9›È/ƒ:b㑽'½$u6|ýŽõaÔíhÛ`½ÑÆ¢¨%{Ìä—NšU¤7ò†Ül2÷V'–'Ò–_ï×›‰Ó]›—‚:T)£Þx]Ù¯ïvD½¿ð?©‡¨Ïc¢SpõÍ&Q¼¨RðXËÅ£î&âU‰í¥XÖ)ˆð‰.‘¶»Ø´’?(Úª&«¶”’ÙÔŠY…cÈ–p<6ûÛ3áý“î¦ñU»ÙEö®ØWe‘ãns{Yf ‡‘ÆÐVj‘ò³ó6%¥íÑì];˜ŠÓߨ °;c¬uè8‡08™ÑÊpWMEÎ k- á}1àLWÛ›ž¯5ÇÏšÂxˆ&²í)Ÿì„Bú Càvu«‘ǹMPÄ“=f-ž'%“A×þ"VCÇ@•¦¸^(Tä’Iž0#ópl^ÊdåçB•iË7ÔÒévRš®àG÷¹þQU9 0‡–cI¡À;œMSLfi?VâvÁê ÒO–¹¸ÚÆ6ç£åâ$ à›Yv«|¾“á½/Õ°Ëd{‰¨a »ZÙ,§j tRõ^¿–£¶uZ=Õô<Å>p9X _³F’R©q¬ të› ~0É›òQ³ð:ë«ÅÌ+­Û&@5ÒIªiF`†*Ú'I»¹ žcbáÚšÊ' EšÜ»‡±ð\/ëx¿üÁô”{SÈ~/*»µcWÒhw8»›Ô F$!ä’¬‚*—A~i?z­ë¾qà?cþ¯1æí1“’Ñ`l‘AUЧ»wƒïÃïiHŸlJò=ãr…ãç–†|©;üûDYBûh/Æ <%èJÌÒ6TuÛD+¹‚eŸÄ¶+’™«Î~']$ß”#)ìaõ·Óè‚*å%Eãˆ'@ÙžËéþ¨È‹åƒQìLçÊ4Õ˜±mÁŒšœ‡8rFÙ! ,áŒÜɬM+­v³óó/ÿ‚A‡ÝɈҵð.[¤ã7Þðßà´ÅÛÁ½{¿•ÌÎü†;C©–²ò2—~ÕÍÞ霛{S7¶Õj+¢®p¿Dh!ƒMžNàÊDrOÃÓU¾~DdzʉãÌ´=ÿç$˜ÿÿq ×Öç'˜ÿ¿¹õpãAªþÓæÖÆmüÿWø¹ÿ¿ÿ¿vÀçmüÿmüÿmüÿmüÿmüÿmü¿_ÿ ûÌÎ]‰†¥ÕZ(eEQgÕo¡òú*h÷Ê  ŒŽœr/«žpéžÓU‚H±Dú%¯m±dåå{Ôõ9Ñåž #¶9‰¨"•XúÖÙD¤ s'S6u¡˜˜»w6\š ºñêÑž™vTQïÉh`äAm¨ìÇï# R5«¢M1%Ñ]&åìÈ®;**0,¡~5s‘½ŽÚ͉V,”Š˜ÚöÁVgtµ.ÚÑx:qpegUáˆ²ÝØ®}NHfÓÓ2©«V?Rˆ¼)FÓUÙåð êw¸n` ªGVýÊpu 9´?q¹ €ø•-+zBËi+…¤ŸËÿõ«=¥ÔýÑ»áa²Üµmƒ&êïÙ›_O¢ˆï½°¿VÏ&cäk ÷,ì£Ìoñ´#È·Þ•³»Žú‹©þøI„Öÿ8Á"1Ã3 ä ò`Ê™î=êi‘ó›Fc'ea#på)Œ Ú/TÄbLy'ünûšÛ®Ëgs††‰½"“=ªwG¬FäAÀ©9¨è·ÝÔA!§©²((‹©Myx®äT0MåìqbY T°ë7©e #cÖ8ùê×{:ŠÚän/g‰ÀÇ55>•ÞH0ØÁ2­hÖßbNÒöðH#k)“ÿJ @/.¤;ÿzó_¦>¶ëŸÀƒãênçe³rôêE³Vù ¤Ÿí‚ªOÈðÌþ”]Âbrv²-¿råŠM•»ó ¥ Šp•h'Àü#xYk£šr¿Ö(ÂÌyºÐµ´MZÂIÞp$Á*-á¬;îœkIéW˜À»ànPܜϞaÿ’Jl ÁáljÛU5EfŽâîtD´ëš%ÚŒCxC±3, @·Ú||‰HiœÌNÀÃEwïòÕ3¡ã ZÝ1ÛU²•©<—`&= ¸¶hzÁÒ7£3Æó:2ÝxÿìéLðìÌ>d½œÎ²cù×6ëIîTÔ§:úS©™¥›8ysb>f;ª–“…×'ˆs;L‡ÖTááÔ‹Jõ'D¡"6+m³ËB½°%žMR‹Ž$cÏétíœR^k¿$ž™Ö²S×çîYó«#a›µ5•WF“’?ôoþøÔsÁ|D{ïÍ'ùM øàœÐem>˜:¨Ï]p[¨õf•»ù(*µw1)õëðк¾T1=ÓØ–!5¸ Y+ÂŒ@§ýðŒù4sâ’œÓVdõÅX47ä@4cõ6…ŠÐ­ƒ>ÂdM/)¼tHš‹¡¹kâÉ’:Sp9Ë÷ý1;0ÊŠ•œ{¨à†¯n3ï@ I…¸ë8P>¡¥R€oÛç ÇuÇ=Hë§{* 'B¬îî{;HRÑ”kòŽÔJRW¶RV(Uù‘ð í1¤ßçmu9Ú@˜)W9/ªío\;ÿåæéÿOc¸Bűès¬ ôÿl>öôÿ[[[nõÿ_áçVÿ«ÿ¿¶ÂçVÿ«ÿ¿Õÿßêÿoõÿ·úÿ…úÿú‘§üOºáÐä ?ä½€ySû¨«Gn” ƒ©ÄÊç]“)kWnŒ#ÔñŸÚYyãD;œ–Ù Ìêiuš¸é°´@ à¯×êOtI²³ÞQ¬‚­yûs½­K¥°é~2²ßRbAxG©aq^Ê%j)ÅŽ``ÿÐeõü×cåZÝÐ cN*úÈÉÍTëü¬œ§ÓÅ{X~$ÚËÖ¿&ÎÓ«²RÕѨÚ~½¸‚ZÖWƒ¶b‘•ë,|ë”Ò-X›êkL-Õ,e2ë­äÜËÀ˶VgBËT¢Ú²T©hiŽ®¯ å1£&”-·•ÓöÌ%} —‰±¹‹ŠÀÜZcWûS²½ƒ5?S<»¶š‘c¶]ÁMrJŸDÄ”D l4ûü”щËÏ­47m2­,æ½á~¬ËÉX ,,K—ú>â‚=2„a¹PŠ•ž‰‘¼¹ 73ÁÐVŠÊ;‘•¢'ÁÖ\ÁŽ!tRleQu:yo3/Öb1Õ]4Ge\‰Ì‰éJ1Td¹ÿü3Ðà ÿïí ~­ÈûoU\²AXÎìÜ ¶V÷ëŸ8&Cmô+ :ýÈÎ,£KÁW$Σ"{~U;ÛéYp˪Q.C#T ’r¼ôk÷UöÞŒ,MÃsX}ѬأkÉ[ ³ÛÂe—jÏ|U.êýÉuÖrK-æ={!õ´’œÇϘ÷¡*§Læb$¸g‘˜Ç¦ÑàûDa™.ÄHY$þc:§’v22`58¶C³MmÄA‘”wsLfßäL<*]ôq: åâ¥0}Ê>Þœ NÔ !`.±û”Gì>æ»ÉÃ$A¨Éj‡GOs$èjc”dâÜ^©ó 鞃Üêi­éˆÂZ¶9ªµÚ•æÓŒçõFÞ«£ýãVN—¼WÀ…6Éé“ûÙª¼!¶ò>¯ˆ„ë€D¿n¾”öôˆPØy |0¾0D`K)ÅÅÿp³‡9³Ê{UûxלqÛ}̰ÕØY;{ Y-Ôtô1^rZˆŒþð8ãe§Ò|é¿!¬ÍzˆœõqÛy.£’½ðÆÆ|ÒÖœJOß §ñGŒ–Ï:ÓÚ3—vˆŠŸó†=QéIT18žÌXEƽܢš8°4 ð܃Y{%¸ xö͈]˜9Å‚hË0Ô&œp>[äáÞÇc6.#}aʲ®üMÐÝä òË‹†NvŽ÷Ûu×N¶ˆ$ ß“Ú~xV÷~eYÍåqÎúä| ¯Sí—Ç9ë“ó¼NY7>Ë„žÑVg­OVsyœ³>9Èë”sÊãœõÉ›DN§Ì‹™fÁÏl­žg­Qfõ’ÛÍçüç9+•÷T7$¬¯*-Î[Gþ+x‘­m¾+9ÒDÆûœ«îš‡cç:"Ûlsÿ)ŠÆÚ®†ñøo•¿ƒ"à”ÊD瀋Á2Üzwƒ1×ãÿ2"¬\ûäÿySîµ~æÚg¿ÿ.¶Ï ›oÿÅò¯›iûïmýׯòskÿýϳÿ>¸µÿÞÚoí¿·öß[ûï­ý÷ëÛoî§°(cÄSΥȶ¼$K/i Oâ)±:–è³C¶ð‘6 ƒ½ ð>J8Ö‚óÄ` Ž8‹§e¦%œ ˜©ªÖÛ©"”£b ±7v+û‡ bO$Hudx«y:›„eTë÷¹°ŽÌBU$zh*àÅô Iv‘QYìK¬Š—r†ÄaXÇÍ¡˜ÅÙ”cªÐ9žM× õS[5ÏfU1Œ}¿ó½XIùÁ84 ßãz2«E¹äA/Jo •‹À„ò’[ê.šVð˜q¨4ª¯›µÝ?Uz,0fûNC¯Ÿ·;/ZÇ?[VëÍêñÁÞ~íç? `n&{«Öò¢ª€êÜíÊÚì@QŤÝîá>ÜàèapØØÿÅi¹{×ý¾j'EåOhïÍOÌ¡‡{-¥á^½ÙjïÃ-í´äM?n`6MŒ^iÖö¤=©Ž¨=ÿÝÀ›œÚ´` ^uªœÆ¡šúQøŠÌwxš€§»¬z–-3Ïña›öö°Ñu\=’vÇ—ÍZm÷õ§—ÔíÕÞ+¥‘ˆç¾…Ò‹ÜÔ‹Ã}óGÍùqÍ[~Ø©Ð|ÛÒ–8ËÊ~çU¥énŸz,‰5nL¡–?hX7 & mê-ä,;ÀE7ñÉÀS«þT*8)·Š*Æc·¾·×Ù;þ׿JhpÔoõõ\R™úQ]É%Ñ”oVGŽxqNd° 6 åÀD9ºÍȇœUÛ•qN± ß%ß­?ù쬠øXô  í3'K?+Å“0‰°åÓ`…úûØ.¤¼æÿ½ò S£¼kѤ4_#„Û~Ú9IfÍçw7”ÉÒ' ‡žö£¥Ay5948„¦°;äK´,DM½±vB"êr€<2탋¡Ce>®029±6œa÷–ênÑq–>©eÀ(ªo@;& X¦»{KX@zX‹|ÒA‘~Ø¿\Þ*ˆ)Ìc©®rÙg㥷Ö"ŸúUöC¡­ A°õ*ÝéBÌ€ÑÁ¼ÉËÒ·¨„Âè1à22.\ §³œ “gm_ ¨º«mP蘰ì¨Ò„Ôb’M‡ï¼Ó] ™òͺã+hï¥L—Z#±ÁŒ:rŽ©ÖÎU€ “Lê!. Ìå|\pp0QÔìðñX ûø‚w`ÁZu¨Âç’`\ÎË…Å!ÒØi²Ñ2Ýí_rã_g÷žM¢¨·óù@LÍ)Ïu‡Ò/ÎA@z%Š•M³D|~0DN£LvèÀ=õ—êHœ”Û•¨å;+a%H'$ µÔ: läXf ¶ldu—â^óp²Äö9rT7ì㜑Ü=òÁNçw¹øÎIΠܧª™E¨³ N Gì2Íé¤9‹4f±.ëëëHì8ɸ»õèñ»mçÅê8Ø‘·Û…a‡ [á˜~§}*†ã2Õbƒy~Pÿ”•¡e‰šÂÉ(Òïy¹Í­«dæ0è V%ƒ„õ‰•ïº@}VÇ÷î!`~¼D¥Ä¹£Èe–=WÍ‘FUÏ©y ŽªÿHÃq¶¤7Œ™TG>‘Æ¡ e; Z‡Êó¬šßqoœ=ÜVyµ±Ì·íõŸsW}× ŠX‡=b¯^ N•|N\ ü|Ô’€<†Å‘¯ëôãæcŸûncëãŠB@˜Á¯±q²ú”=BF7ÕÀóž·§êa!º™ÞiˆF„Ô¼l§*—xô",ì{±Ñ®¯ A‹ùšQ2¼ Âøžp*iÀ†h¸F+ƒOE°˜Ö"é5,ª&ïËú™ƒX´õ.2¡råéhœwmÅ7.ñòà©ÊóþT-æ°EïF¡{h12=ìXmH§-Â#Y-Iöcuù.Ùf»ÑÇéSäq\@—/pG?y? ã¾¶aùÈ] ÃqeaÍ,ìÆ'NfýÔ¥qZ ›?¥ÇÁX\ÈV½©ViUW_ªZ§˜B÷è?ã“cvO ÷¶OIc4\òû}ÏDœ‘xŸ¨«“W‰ýñ;‚ šÀd.MÜ ¯Cøøº:ä4£ŒJ}“IÁÔú÷f’»Vcïþ¡þ:s2¢HS9þÎUâ¬+XÆvö·]ÚôÉÛÄò¥·ŽU*ËÜf_¾ë=]a¢ïôËØúöÜÍùœ!蟵9y£§3sxµÜ-½ID¤‹6cçK2Ì‹ë–kñ)*—‡Ê !UÕ‚™YÎÞ¦’NR•ëà<ìOMd³ÎìFî[ºü–NWÁœe4H†@Cr%J¦£ñ˜Ó¤I5AªÄR2Ækj4,œNfñ”R¥Ê’qX‹&W,DC·â+Ô×ᄉ­âŽ5¿¢DxËã“þ¨û>Xíž”ùÆ[U/¿%éLOØMºBfCònÒñv0à ™ñáÛ«E“iqµä@“X†Xœ×ò9®$ˆ vµÑ ƒè°¡*Vͦ\‡\ò‰†c.ËŒ…:†Ã¨‹,ôä=¦# 3Ä|{¨dÛY·Ëgì5V¸Ü5fñLL=7ʱfê¡€$‚Âúu÷yõqÙ÷÷_°ûGÄ®ÿFlêjYx‡ÕU¢ýNÛ6°)‡Ã¨>ϦE¯ÎM9à[.ÝËÿB89뚯À_ã<énnLf]øU**¶ ÀºòßÅ&©o:d;–ŸÂñ?ëøO*¸d]Ó:›Îå?ÛDÍÜÏó÷ ü˜KÚ^|i;ð¥È|2À²fB:ÑGì¦P*Œ“,˜ «Ë²RÞöˆÛ$·½cò¹ÕƒÉþ²\qû€¬ø'D£ñ˜ºÓ}4J¿¢ò½ñ¸±²°kưô!¼‘ªzå0©ØÄk‡Ñ=ÖQ»j½qX~þø!<ŸÀŽæÅ<ÞR/C¾\Ä“š¾ì~ád±èljéܪ— ^7vÿTMe5ù%1™´!˜¢[—Iý5Ãuã]4ŒÙÓÑiÑ]Ÿ’Ñ^2Yp_bº„¢^ØÕRQøZŽ{;9· j/‹Î&—xã¹ÊT~gz_Ù}}o—ûÁ“míè¾¥Ð# þ=C?ur;›Œfã„#i8½³ä PRƒn4!Gf”ÌЧ¶|Æ¥TnÔP& wT õ£Žçlv1´<<RO­­š’t¯â½9BÂp™C‚AQ昳…Ï®ŒH(Fd}—×Ñ 7„*YÊw \ͱšo¤< ¹¸ª¸P8æÍ ä’JBñ Ç:yq¿øô^Ò§„}©ëH¸årï añýg䔶˯(ý4Ž>wܺÔjM&VöÉÝ^p³hpÆèfrj"GN5ª¬|´èwGyHÈ—½@פb“ÐwÎÚ¸5º‡«Š‘né$ò£$YèÚÈ>åÝ3[¦JGÊf"ñëA‹r®Ð2àpTqÝË­ bÊçIì±Ñ Œ¡`å–àü8ÚÐÆ;JyQ§*¨J7mçÇ©ó L:fINOFâÞˆK.I64xDØ ?zôà1ç Rã`y DOJOgßû2' jct1fà'ó¥§A 7óßò™Gi´23Ø'éÕãéP3è}àߤó°¨’ƒ´ýM¿S½&ñ=>óŸßõø뤢ûwI F ‚}é¿7”ã=àëoð ‚°ï±Ò(l¯Ù]Ùvä èÝæ÷Ùt°Òû +¥:d‡(ª’2Ûü'˜× %VáQù .ª_ÀqÕ¢™*T,J:.ìRR«¦Ÿîë’³¡0îßì<ÿšYá3_ÊË‘S•aŽœ¥„õœÉÀúœËɰ^SŸˆ§$LÚ¨ŒŠ¦À6q!RËEW§Ë~:c´R&F‹DI«¼“D3DÅȤ”¼(F˜E9Q˜S76¡ô£¬ð”M,4äêsz™ô—ÊÆÃ¼tBu X—#EyíJã*P¨ )3%4‡§Å± EÅ•w?„he ²3áºãƒÑä’ç‘ï3õ. ·HJpÖ ¥zyö9LiŽVW£<âø«®•õHú8j6b‚X”#´}ìÈz¨á÷$Å’?Ø2œóUÔ¼Ñ?¥mI4!7†8L̆ªÚ33˜ ‘C©*|ñ–5R2 Ì¥ÓK”€¥m(•!ºN’¾Û.vâ&¦(ÒRSå=xÍÇ€¬N|'DBϳÑþH>KÑU°êè´D¯ê ­×ƒ=*2ão)¥žáÓ%ƒ¾­"1aMˆÊâJ7 j{QÙ¿à?¸ËÔ~b£‹FgSô”*Ásû¶JÁݼ ”´Õ85Þí‚ç‡ðµ½ä©o¬o¸~jô…´ÿcÎn ¢ô¤§Üu‹GÊËÒJZª®©%µ¿ ªÎttQ<n åãÄL·”Áv0ˆz1ž¶“±úËÊ)Á?]ãé¯3”’]÷¤à‹! NK²#›>©¤=”͉U%ΊN ÝR!rhy8õUçrÑ(b9æEÐÁaL^#]Ûö–cØ6êY± HÅ8ÏA S¯šáDjgœywUGÈó0àÇBÞ4•³œ èc캭½ Èð­²ÁfÑ[ׇ)È …j eWay’·Î»ŠVFÛ’¨R,¯™9ndykÁ]Ëך›i.dZg7堶ݦ\gå_ÅfØhq¡…‹Ð[žóÚñI‚§Œ×¼ Þ¶–Ô.¸åç­f >%ná$>srà¹$‹§8¼ðõ5«zT±(Æ&^m Õ}Ùêþ§´öœ®DÖ‰ïxa™Fu’Ç+¤PaLz5·é,Ä®VØ»xñÇŒ:UFP²ª2àÀLï×Ú˜\5o<$'HJ4«h¯ºr Î\Zûãb‰Ë*Nµx °D™5é§™;Š»IŒëŠæØWŠßõ{r¾Í<ÚÎw½’øóÏv±ìïajbs ó O™ybIÜ5[Ø*¶æÆ HYÆ–fð7=P”w}˜j ÿ°p4ošžä9O®]Š«¶#‹¡ѰÕö‘Ò²œlËŸÞ_¢pžzò„¿9¸±•˜'],X ¶CÛR˜èÎàË䎱ÓÖÕ» ¿âwñVà^u8›RZ,goÑéeJñT?•½ä.{a-ŸV­n°ZuËQ£. Ëiÿ?âN|ÿ?Ûà3WS¬1Ëõ˜kBóEµ€ƒ1"~9Ø0¤Ýu2µŽyÙEüR[¦0Ýs\ÖëÉÃ\= ®ÜzºuiÛ¾äRŽv´Zi¯`å¬]ë¦^P®2ˆ× Ü}Ñ#ZzTO0¤‡úf :áx<Áà`ÁÕb²—ào@Ü :ï‰Ux.[äòÆ¡{ÑÑwÖŽðË5ól碋çjxƒH“¬‚ÿµãv|÷¾+ ’‡LŽ/dæò䣖åXHka£ÙD3‚"YgK;uþÃùœ”ùv„¬ÀrÒYG-/:›M2ÉzÄ}ñ "„rp…tå‚¶Œ<‹PÖñ¬&!Ï ½—‚Vžô8g+ïXó TÉØõ†F«KÚ77eà³÷?e»’žƒ“½ØÀüfÊÃph5“%Àg5ý/嘶\s ïŒçç¯TŒÂ c­™%ã&!Zq<Ò"­!XÄ×;®³uÚ±7ÇÉWý|*dýîR{žóÂ| ŠÚ¡>yë•þS¶~gDN÷±#‚ÊêëñÇŽ)r€Z1Fnk1² :.^%ôÈ(3¢ì¤Ì/9ǯ1 Ìû"·¸kͳäMÒe&îxÔ¥äË?¼¿sÂp:¹\æ@¤ŽýµH Òg˶–µRþ-™µ:ØC!ÛÛüžé¾‹ÖVìTË/ìM.í ,njyE‚‹ÝÁ¸h—ÕÒ:çÏ[FÉ©÷÷^ÇëêS“ÓI™NAœß|áÕ²(PdnK[3e‹ôóÓØ¥ÜwGÃï§(r›&I¨æ«¾â6Ã$ã®ÜÃÊvìßH¦: Ì—†‰ñÛÝ«,‹‡1ï3÷ª± ½ŽÀ‰)'P¦Õh·üId¨¤A@È´6]Aÿ|a âjðiÓ9$ÃCJ&w;æ&hàŸÏJÓ0IJ)Ìt¥Ô‹@-H°°ûâ4 ˸R²„Å ç¦L˜ßýJ‰–µLú„k«Ž0^a¾&ÀŒ3W#0G}äi˜´rω“(g帼¢ª)[m2Oå¤Öä*Š'C9–V>™§îŒ çŠhŒØn rçYâ¢Ø¸ú½°˜Lóhšúa¨B¡Ê“^lWÔØlù6¶ÖõS†‘“—,]EoùŸ³5YxôÌfSkð]ænCÙÆ{nähe\<ÚqEnʥݨ-ÐzsKçöɘi—ÎŽhï6«|üMNûä9€,·ñ’!î]³±ŠbÀÀ5奖¯¶Ñ;ÕêÎ9AÆ !j•-1½Tá âœåšQ2+KŒÛ¨³¼<(¾‡˜ µoÀwbõp…ÅCÛIœ½äXØU"’à ÒT1š™1w¹é]j$adø9 'D¨ß*Ñ]9–KJ+§ 3|ÂǵD¢>8Ñò.QLœÉBÌôÆeÀ ðâURœ Ì;^aW?I÷:!“,Vö »­(²–Žº!&%‘:¢4™ 92.»‚-.Ô¯ñ»_7ØŸsç{ÛBiàtsRÍKèâ¿í° œ>x¶ÏÃ}ð˜®î³ø»ƒ¤ˆîõ¯Ýwë«Ä:rõVÕ ‡ÐîmJ{™ùNà‡t–$>ȃ¯D{ìãš-Ä0öC‚D®)ŸÊ®”YÃw<äJâ$•‘HO Õ7È VU]Sí- ÏË1ã{ÏzX%^¸\F=ÖùÞ1Na5O1Kí7Ü%““$áÔ]¹? ¹«‡@‚ï’§‹†‡‰lèÞ¢Üé¥R¶Ëo!…_ß%±48ÖŒÁսnjNÀmµjµŸ¨86B’‰“šFý~ñ”ŸúÍ[µ6ZˆQP¯G:ÍY”…(eÇRí"uæYçô×ø²©aÁ/¶aã:/+Í]¯Ô¼–ä³E‘?dJÃ0&$iÇi|¶~ÎÂê91éµ Æ#²«BRM×+’ƒjã)‘™ ýÖ\˜Û»ÛQóÃÑàÀ{ÍUÒt’ EÑÊ÷z£#覜Ÿ?j)(†}¤=˜âŒ²ËõAb‚?Ä ¾¤}ÉT®ààUå5ªñ{õ—WèÜtG½Q„øÕ¢ÕœÓN×ÕRóX±ý=Í2+Îên‡ ö¢º[¯rPà0¦kT%ö MlÌá4T¬OP@CýxjRÆ$ÉÖZ—²Ç¢ÐHÙ1sÑÉ®˜JÇ‚³._/¨ˆe™d‰ÁA<¡2pÂ#2L TxI#ª–—H¼b¯º‚Jz‡xãDàI@ZŒT¥É^ëEc¬»1”À\L‚È«‰ }Љr×»|súùžÐt‘ÞsY[ØlõD©†¡+‚€ý!=®ïŒYSS¼jÔz¥Ö=vña†E•˜…V0F'Svú*d_ °šOÊÁæcJÊñ`kNJ{4ê3WR=ÀœE‘M;•Ü‘aÿ"¼T)$JÎ=-0'ÂÿžÌâ>åýÞî|Ôc¾fUF…¦Š’ y“1é$ås˜Q6Šl)hzcà#j“a$I4M¬yj`,ï:*€yÂ5&çxxq¦¼ÛÚ+ˆCh¯#vAüèÇ]L«Î)+÷º”ìФÖB,„'j:T@Å 4 )ÉKôø.¤aDÚ’( Ì…CD²à‰1‘Žç¥DX'Ö0¼ âÉÎØ‡œa†Iôº.gþ è‘ú·]kµ3ÈÏî^/þ:r¯}rQäÏ?‰'£"aÊê·¹³¶à+¼®ü¯Ñ^Ã4:¥#ƒm m*jM‰LNI½J¦pb6‡+•êˆçixDk†ö„EVÅ ûSOYAüÌhÒãT¥+ã(z¿§¡ Œ(I™h–&©j¯$ãÒ( L«Î¿OÖ¢KàNãèb÷p¸QZG£q?²Ð§,£F^üdµk˜9#(Æëp=Á ˜ ôa@®UŠvûÆ/Ij³ dQÇ—Ì{ÅOg§x¡Æ ó­Ÿü‚&œ~|ÃeY啲F&Üþeñö¶ R*ÄZð ûh0¼ÄÆiÑ©ÓéŽû³ÿg„¤˜˜”ç‰DÉê?ÿ ·ú½{s„¢lô(üƒŒ¡šè¼©7(óŒa‹•k]Í%lÉ6˜%'C±:»E}v©#ÓûÅôc¸©©Ÿ($s"°¬75<}Ÿ5 Àü‰`詜ÄŸñìN…„D£”Þ!À[SéŒIæèR¸buÓ#Í’ô¾ì¦7U¥ë½e'}üºËè¯ÈÙ]I)ŸuÇTŸ\ß.È*©Ó‰”à ¥[¸£OáËt8éG  æW¤e²^¨#kùø!©7TÊÃÔéÜŽÈò $.J²]/hÑ_©«2¥éfÜ‹èY°HÐÏâ œç™&¿ÊðfÓsÂãîºò!ªwr)kO·§á±ÉŽa¢iÀé³[o´?ìT~¶je’ž[ßàÜè°ÙÙ=7[O%¬„;{\VÂ^cEòr+¡JM/Ts€µïø}ñ,;-Ðá›”*PvNÌÔ6¡º&˜ß¾ã‚Yý…N§ÑEp¸²ûÖ¡/kó5D“®Ÿ+,;• p @+·6~Š_Èeຜ*ð¼hëA…©ÅD-Ÿ5J¹z‚~"M©$-Fœ)íTYg+•fÖî®rñã½&Ö:çë­‡Ox[ѹ]Ç^À„Êl¦â}V¢I JÔ 3v°@>j2¤#3YÐZÎ0Ù#%â# Y×q‡Œa+<ìæóƒ¶xÌ»ÜFX»pÖŸ/ZMÔb#Âë2.¢…WJã—jsOƒÇgÀkVŽ÷ÛÂÏ9­Þ!»­±¼ý¯oî ^„ C ÍkO”b4ÕFÌBí©ÓÔâ ÷“J)JHÃ&ôcEL/²+J@ËÍÇÄ+"/ó`‹~qÀ(Vòé=Åýw¬e…”T¤Ç ß#í/§ž”Ñ›ODa`ç'¡x¬"sa w»_UZÐùIíçv³²_k «RÿÁ¤Ý’¦@ÆEéoE„1c™ØiUºbô¢‹ Š…kÃ%ãš.šW¦ŽÝÁØù„ïKRds2›ž>éP;ÒE—ôåÂ$² Ã!Â&oúPåö#Ž›>nì‡äü4p%j¾ѯ:¡+̤î—ÚŽ”è9Ä„ÏÓo¦Ëg°Å‡/mÖž£i6|°^]z*µ<)õQRŸñåD;dæ\»ëMT8Sæ<£”iZ±®RÍÝ—µ6na± ˜„QÆb|ùCþKÉ »Á]ØÏ­YI‚´Þ*ïʳʯ7Oáõ³gÁãRðgPDX¿n¾£7àͶôÁ#jÝœtC€nnÔXïƒ[‹?¸ñdþ>Éÿ Fõ.¦>í êÁƒz8PèÖÃ9ƒzb*`ÎJ>È´‚Z=Ì™@æP7Ôƒü¡ò4–ê“ü¡º{`Áx˜»ÒÓøt#'MŸ²Â¢SVoToú ­"°{÷®sÐþXêÈÑòÖ4ã„4=,¼µe}Zþ4æŒÊ;—éQåbĕȅýƒ%FŸ>¶9£÷pÆèóŽo&í™CsÒÇ7ƒþ˜Y>Ì™å‚ùx§<=ŸÜ3žI¶æ‘ª Yd+—T™¹>JÏõf@îU‹Rxe¬¡W· “:ÅÔ¡PˆìZîVðsX'É€äG¬8¹a‹‰@¶3±7w -IŒhxXvŸÏ~ëÑï,ÉJfæÜÑ/1°Vwuuuuuuuu&Ó¶á#ú‚ äZÃ4öˆtôÁŽ‘iA›<´õX”Ï…Á vIÕ}!.ÉMúSžgL¸ÅV›ÂfÀ@؈S‘ |Ó+zâc’RPÿRYÜàþw†g/é*óÕs®Ió³q‘!J/$òãÄ4nsJ€©N\3'a‡ô+¤ëóKhÚœ-²+y-‰mä%d‹&5Ð1’°Ò.Pšáÿ´I‡Ïseâãmý|*OSÈ©Œj©¼¼-n¢xJt5›…éñÝE¹ðn¿œ¼ûHTz÷š¯á&otˆa+ 5]±T¼ãÝ– h/¤žjãŠ0uOARÏÌdüWô9~X}Vi&ÅÃéä|:¥“äõô:'½ /¦ þ óŒrä–q ¨À™ åS‰ù#ͦWPls! Ñe6´'l'NÏ'de%{yZ‰ñö‡¬•°/©é ;góˆ3wÊ õ¨t±>ÉÈ@CI‘“"y*×Zó’ÈéljŸTî$e#â6­^Ÿ$%rÈ`¿_æ/ôR|oïöŽÊT'Ï*eü|VÁˆ: ðT*â³*>kâsK|n‹ÏÇ|"ž=ŸÏÄçwâ3åÏÚ>¦Ï-j aHŽözsx|ÐoíþÜoõ^³G…I(1æÏéÊqçÕ~ý0¡ Éa½ûÅ*]ょö«ÎA«ÞN^wÞ4’^ó¨Þ­÷;]§k4ÛÉ_ë{þûªxy_Sõ/¯À–)°ÍúûÝfsã¨Ù݈}ÌE_vŽ»kJ>á’½ÖÛ5Ÿ ­WÇÀ„‘BϸÐÑq»Ñ?®ãÍŸXÉïdgZÑ")Ù¯·º‘"µ3.Ò®w»7À4»Ýfý§HéÇ¢ôas¯u|ŒÑßo¢wFý X¹1á$¡{ÍΫnýh¿ÕP%=Î 1¥˜rÏ'TÁ}ˆ“Ъáy­<7;ÓBÃy/ÅÄ-¥ÁKù¤Ñ•2¡y ¦¨˜º5˜ºþ´|½vZ"„ç ò Õn®˜dµïQKÅ­Ò^³Qš¼tÉûÚ…—^™F×”æ×¨nÏÃâ¹ùØá÷MÖ®xÖùŠ)××Éô¨ý¹ÕkA,qwíƒÚãÕ ºŽ/«þÙ$º)P5!ºTø€ýËp‡iCpSXÇYM¯×l‹¨¶)@\âWŽçbw¡÷7Ftæ{†I¼Çˆr K4í¿…{ ñÜ#e¿ gã3ôã$ï¨ÎÇCþA•:­ã›Òsø}U.ÓäÉíöÞ>Ø=è4~*'G=:ÚY¯ÙÞsõyCÙÅ«òË1Ÿ²AF-аG^”Á„ K)ž!Ó†îq ×2‹ =YEEÔŸ³Q6>Çc€„ã%sÐÿù¨9xÙzÛÜC¡W‘¢¯-ˆH^ g£O€µe¬Sz:@ð>+ýUC@@Ý”Z,={Š °$©ÀÈ!²S!u «Üüu0,tp5Åî‚ ±[Îtb¢Õ~ƒ+CñŠ0Å¢Î&còÍÃØh½J?ÊûOXåûDç7©àN"GóÀ¦„åˉ½ìÔ/kkÅ·&&h,'ËÅYIÚŠž[h¼pñØHìÚbë½VÅKaX÷Å ³(F ÓE°lü,«êû’èb¤K¹FM%ATy¾¥uÅ@¾©íHþ`Ræ±;–×éMSˆ‚[ ç/|dæPoä##lýÝd¸}Öz˜„9Àû#á€y6NÏç&BÚG:7çË)'2õ£›´MHkô±/,.ðR Y,pûk:Áɳ{¥tÚÎy9I" Kò=°|„„[gPX-'#ᙕ²Ï…-@ٵ䰳×|¦hˆ.‰ôW]¢øR¸”g‰tÝ0%ŸR}â©y@ Ðj([5ʶ Å¡¼lu{ý^³oC©V ‘}`P‡i‚úÁF¯@j õ rüâ‹ZÌaýˆÑ‘`¶ tá2½¢+¹6œy­ƒºÑ5ïç2«`¨žIÕŠÓ5˜…æ3íF LjŠpý¤Ô©ïøúËår¼‘hô@ý£†¼âE\Ú þ.“+¿#‘¶Ï³_ï5ºZ~5˜gŒºý-€ˆÔP°µm[d 1(YKLüyR|€…K~¦ØèÕZ©y`Ò‰CL1®:Švs‡~[Cg4tô$ù0êV¤síŽôL’ëWn`2j7$`H(V| ã‚Óð‰¿{£úÀšü{`Ì–Z˜ŽŽ@K:±p¯Ùm¾ðýpp[Ä»è¸aЦaá”è$& °(öÌ ^‹†Xi÷§£N÷­ªKô³M²Ð;´^‘nøîm ÇGúÅ}@j Å´ß0qßµßÖ¬7Í£¾ªù,Ôè.`lº÷“Ñ4÷Ümú§È¢ÓGÔ.š+Õïö’ó»µv”äÝb4§Ë{ìÒzzòYì'ht3NòÒ˜ÁbšüfNßæÞîÏæ¨Û„Ë„Î_ËçXgpë¢_©U_ÕÕñÚWÕGÖûb†ˆVõñdÀ¨è9k(k{íÐÓ—µš{ƒÞñî_š ž×Õ¥¸ß®Üíi_Éa¹ÐàŽ.µòï‡v!îc oh†IÂ'Ü ¯Ð˜q|¸Ûìb#+Û[kÛ¸›÷¡û†¿*àÿit C¤ÄÎ÷ŒÂ5ù:×dðÀ‚w¿œþ•UôÂ,ûÇ€Ö4ü]2ñ’£H¾ Õ´–tK½¤(åtÍ|V,)/c·R ³tÒ(|îùöµˆç¬~é@/r!óÜb ä«o%…ãC€ŠúLQ°Ûüë qL7–øï1Ì/ǔ㕩qãš‹&ìD8¯®y¤ëœ÷Q¤’ÍBc9C Æø3o´7“7|gûyâ¤UDq‹WƒÄ%<ÙÃë=x[f‚ðÉ ïÅQPDºO+3O¡»DŽÝìaÈ«ñÊ+Á-V?¨Á&îÅV•ÝÂ%°¹:õ,'§Kym  ½ØqdÔm´ëiRÄÖé ~• K 3lAáÞp3‡·‹ˆAè„«ßûïê3Ô±œ|ž.©_覛%÷?}ûíç_~}Ÿ¢=B—èÀ‹ËºE‹?þ’|‚ÉçäÛ¤øk)y_º_æ°:lwƒIèîçÂÕr~!÷“—"7Â,žùŸ úgÙOá"oN»fT@ÜiÂRËë€|_ŸÂêkù!4T±. ]`x‚**xu‚Ou“fŠÉZñGAIöT¢ ¼?fÞ ›IÏ ¦€3¯˜/(ÜÕôò„fw#|ÈFÌN 6ÃÑê¢dã/Ïééó÷´˜Z«9Õùt::îI¹Ó :ü*¹ÅeéäɶQ\–Æ&N½:Ë+ ðß=1êÐÓ@ ˜„KWkÏŒÒô4Púz:#=ªúÄì2>è\{UÎgéÕVùÎì1= 4@A PJÔÌÓÓPi¼ªˆ¥›]¥§ÒÃɘJ?3»JOC„aÑ¥»z Ä½fEޱ!}ÏG ËKÙóp F3‡¨¶™ìqh1Þw‹2|_Õ³À‰¼¼û&b¼©¸'ŽÿGåÑ»HÍOÕ'cSAÅÙ¸ô:ïÆ.Pü®æ¾Š·è™å¼S¬ŒNgÎ;ÉVä('hޝ€(|ç Yëþ@­ÅRPˆq®BP¨[tM"!ˆ9̓È4•èÀ`¦3 ˆâÔ—(×…Aœ¦ <®ÖVÃhØ‹¥½©`þ“ÀŠè‡&ë—XÌ·$ÞÙ šíW mÀ±«!‹•T@œ\›¸Ñ¾ýJö«õµCÌôu8¨÷; âH6Ël,¿×¡-›ÈžeYˆ‚åù"}Ç‹X¦-(ˆPëotV>Àx¡‰…ÐÓeð¢ÔhʲÒAo>m•7]ÞZgú|Ç8ÚaÿZ˜ýâ$éjœ.daº¢­z4Ž †RÂj‘âñ%ÅÆ¸ÿà¾ýO‡Äbß#T€àùh&[â9Ê{IŸ-ÉÉE…—º3… ¨­é©‚Eœá.W¨¼ô ‡´Ïò–˜DÏ…ÌNdü[Ц óuor$ëµt*RÉŽ]w¯¥¹U/ˆd# .vQ?†FÒŒ;„~Wf©Y&BÈy¤]ÿP+÷€ÎŠ0('¹Õ¡Ù?KE:½rx¨é²=q‡ ŽJž§ÀŠ \‹vüDu> TcG»kE)S¦Py_Ž™‚nkꇽLJåÕ\\)娊êêœH˜Û©,=«e±É]d€ÂmÄ‘tt,rk hQewÌG$3•Oæ\r#ÃýãIwË6é&hŠÝ‚}û‡"lu%›"oÒº:ÿbl‚’ØÅŽ`ú`(g°4)ºP²oQcP…-õõÉç‚yœ½G‚rDfU†‚-ÉEVÈ rP¸Tïð`‡·*|†¨¡‚4ዸ¦óP¥Êª±£&›ì¨ýip¶œ9]™é:-Åú&ß7œ®4Uþ̉|…vÂ!{ú/ || 3ñç½öP¼¤h #9#ðœƒBÍŽx÷ÛèR‹/µÔƒ¶( åå=Ná&ÏRþz‚×PÅk$EÐL—Ì9<ñ/ÐwTxsRH“¤Áñ… V³†3!Nv}Ç0ƒFjV##µ\’ ,£Ç0¨J"2&±™ŽïÀµž(¤ÖóG–üfs:;$£ö>šeuîÑbVÝ¢6o^,.Ç…”¸_<—C]‡–°ó<04!8)ßÑöq2s`[tz\£¨5ÎC=€îMçES§ú³Ý<àˆNy8„,8œ*;n°ôü üòùRí B^9)Lg×Õvn‘ …þî¿¢ÜwŠ6ƒe¡hÍ(ÚëG&÷ê=»h(­aQËܲãZ~Œ«ù1®åǘ:ç¸åÈ! ý‰þXà#E–Üf¯*{ÿ]eû©C‹½-@sɶÛ; -Ú©J@Æíêý’…}! `dÓ1‚­@Qz‘ñqá¸ÁT²Ü²Ëä\¼E ‘¨Z,+r3SæeBXuEÑé¤À¥l…z"ŠaÚ]ö>1÷>WèÝVlínTa— Í õªÝé¶Ú¯"æL×áâöqTúTNØï‡JRQW¾¿Ž­º¬ø26*Õm§((S±¢.»½XÑÚ·hTþ>†¹`—e7î@ÙªG­æÛÆAýwèt›@ݪ9EÿzÜé{#³‘Î=V§ÞïÔƒE=qpÔì603SŠ>vÇ ~…{˜ˆÃ¥@Í¥@ý¨S«s´ßt‹>u‡ë ù²ù¢‰ýf¯ÕÓE½‘¥Œ(~Yì–[´Þë7»-}kPÀíÖÑÁqˆc—_`"ÖƒE»t=lµC`¡è¶K¬½NpÊ .TÊ †ZuŠFL‡á}Vq—“jþºU·nÄRª[sën寻åÖÝÎ_wÛ­û8]oéXWCuŸ¸uŸæ¯ûÔ­û,ÝgnÝïò×ýέÛètÚ~]œÚ®pë5[â8 Ý™…ÎYƒþ~½m "œî|mþõ¸~Ð ÊAê«n³rÀŒóÕ-ú×ãfÏ—ÃTÔÄ(@jb~ûzßFÀ™¹ =ô&ÒnþºÞD +?ÁºÞDÚË_×›H2V×›H…1T×›H¯ò×õ&R@žÆêz©•¿®7‘þ’»î©Ç¢®Ç};T×ãÃüu=ÞX]7:ùëz¼ÚÂDêz¼ñ×üu=Þk¬Áºo„UØPÝÌß°þ¬ëïqþºÞø¾Î_×ß7ùëzãû6]o|Î_×ß¿å¯ë/)½=XȺÍÁn·Þø‰TC;ëSo]€â=0Ô®§Ø±í5¨{âµÛhuLJ/šoèÙ|†«¹»B·13c£ÓõÔÿÇ®¢þªK)< €²èSW£Msü™'0Oò×õ&Ô0]oBæ¯ëM¨,]oBå¯ëM¨óüu½ u‘¿®7¡Fùëzêï¹ë~çñƇüu=Þç¯ëñÆeþºoLò×õxcš¿®ÇWùëz¼ñüu=Þ˜å¯ëñƧXÔ؈”Š:Ó0bóÄ¢OºFLœT´êrVТIÆ¡kÄ¢I¬ýÄ[A‹&q–C׈E“p F,š4 ž¸â-hѤ¢Oý¹°h® ŠÓµâÐ5bÀ¤¢]#öJ*êÊ×E]º®(êðkd5¤¢î¬(êÐ5bZÄ¢U‡_#–D*êÐ5b8Ä¢5§hÄNHE!ˆ˜©¨+_Wu† bô£¢ÎDl|TÔ‚ˆIŠ:C±àaÑ-g"juèQs°è¶C׈JFEºF¬oTÔ¡kÄØFEºFlkTÔ¡kÄ”FEºF,gXô±C׈¡ŒŠV]¡´‹AÑÚcWÕ ›ÁWw`ÃV/„êjD# x‡#ÉWjÄÈEòÕ¡@ÄÈ…¸ºò5bÓ¢¢FLXTÔaˆŊŠ:L1PQQ‡{u˜0b~¢¢ÎD¬MXÔ•¯ãuè±%aQW¾FLGTÔ‚ˆ¥ˆŠ:C1 QQg"v *ê AÄìCE!ˆXy¨¨3£uåkĆCEºFL6XÔ•¯ uè1ÈPQ‡®û uè1·PQ‡®ë uè1¦$tè±PÑ|õM%¤»8P#–Ò_Ÿ†ä«—cjÄB¨Z¦1'6u%O¦×¤K))f‡k9q{/\ø^xFªÎ9^0Æ`ltƒýSý«!'nò(M…C鳪r(•hÒÔp(}VU¥Â‰Úó¤÷K5¡<1¡¼Sã~}y½úy}ú>æõè;ËëÏ7ËëÍw’×—/ÍëÉ—ätãû&§ß½œ|ÿÓ{ïåtÝûß9ýö¾Íë´w?§Ë^1§¿^)§³Þƒœžzsºé•súèmätÐÛÌé÷(ŸkÞ}w~FlC÷݃шaè¾ë± Ýw½ #&¡û®wSÄtß=ãƒî»>XKÐ}×1Ý攋؀îçñKØ¥íyN¶œÎlßçôd{‘Ó퇜>l?æt`ûòy¯Ý¯»¢7Rn×m7R®áηH¹=—~‘rMwUŠ”{éÒ9Rî•»nFÊí;å"6û-§\Ä sÿ/N¹ˆ5çþO.ÿEʸò/RîÐ]¸"åÚN¹ˆç~Ç•ã‘rG.?GÊýÕ]g"åºîü”ë9å"&›û}×Í%RîØUŸ"å^;å"–šûoœr3Íý·N¹ˆæþÏN¹ˆæþßBë¾oF¹ÿ‹+¦™ûïÞâý÷®àˆ¸ýON¿£AN§£ÿ7ŸÇhãv¹ˆ%澫£FÌ0÷‡N¹ˆ æþ©S.b€¹Ÿ9å"Ö—û®V1½Ü?wÊEì.÷/œr£Ëý‘S.bq¹ÿw§\ÄÜrÿƒS.bk¹?vÊE -÷/r+Ë}÷º_ÄÄrꔋØWî_9å"Æ•ûÿpÊE,+÷ÝÍTĬrØTî»ûˆAåþÒ)±¦Üw·SÊýk§\ÄŽrÿ“S.bD¹ÿÙ)± Üÿ5$};Çýß\ñ*ù=ŸKÉý/î‚¶šÜÿ?÷óºŠ,ò:Š|Ìë&r–×Id–×Eä$¯ƒHš×=$ÉéòM^Ç{9ÝBþ;§OÈÿÊéò¿szƒ|›Óä~N?bN'RN9Ý?æôý(çtüØÈéõ±™ÓåãQN¼Îy==òºyäõñÈëà‘×»#¯kG^¿Žg9:¾ËéÑñ<§;ÇNN_Žïs:r¼ÈéÅñCNŽsúoü?97ê9=7vsºm4rúlìåtØhæôÖx™ÓUãUN?ýœN­œÉéžñSNߌƒœŽ‡9½2Ú9]2:9ý1Žr:cü5§'F7§F/§F?§ÆqNï‹×9]/Þäô»x›ÓéâçœËénñK^_‹w9=-Þçt³øŸœ>ƒœÿoNïŠ4§k…££Fý*†9*NszTd9Ý)­<êKqžÓ‘â"§Å(§ ÅßsúO|Èé<1Îé9q™Óm Nõ™˜æt˜¸Êé-ñœ®Îf*ê'1Ïé$áì £ËœîÎö1êqÓ1âSN¯ˆÏ9]"~Íéñ[NgˆßszB|ÉéñB‡oZýýùØnÚ[‰®($¼‹*¸¢Д _Pf0À!ÇçÇ™; "Eî§X‰~4P)ï… ÅºÜV.`¼E;öñj—„JÕ=õü§ŠF«TÝ“×?+X<öQÕ=\ŽÇ>òbÏÝYt1§£yýT¢¡—*^,h襊 'z©²í _,ôRe;wè¥Ê¶x(z©²í…3Š…^ªl»‡èQ/?ü`4ôRå±K×hè¥Êc—®ÑÐK•Ç.]£¡—*^<¥h襊§*z©âÝ>†^ªxb¢¡—*^€˜˜ǻʓ¼.P4¯—ÍëèEóúz@ѼîP4¯ÇÍëôEóú}¼«¢.]c(PÔ¥kÌŠºt¹¡¼«zúkÌŠºt9£@Q—®1”@<ИKJ ÎjÌ+%=)æ˜póM 8Œ¹§¼«zúkÌCŠºt9©@Q—®1?(êÒ5æªE]ºÆ¼U ¨Kטà uéóY¢.]cn+°9véó\ „ÅŠ9¯rÆüW!„ãQ<ý5æÅösd Äîüšàã+B¦¸—ýþé!SâY*Uç¸Et÷ºãŠè*î%Ê» •n”Çl©¸÷sã1[*nd¸kNŽÙRq/Æc¶TÜ‹ñ˜-÷b`®S0ûC ¯ÁuÏxÕ7šì=Y;Y™®û¨œ2ðþK«¸5xÿŘšýÜÑJ>è¹M®i,F’~¨pÇÜܘõ›‡GýÐZâbÖ7XäÐk)ç"£Ú«÷™"ºÝÛ´äŒÕÌ”“0z¯IzT·‰O}›¯\sîD摃h×+Ö7ž›b?'ºýãîO­Þ>¢?ÍÑ4ØÅhôñ÷ŒIä ê÷ÓT‚_åCî uSm¿Y?4M³–1Ðæär2OêW^ZáæëýƾÛþ›7júžZ‹Ä^ó¨ÿõH˜J€9'r"Ñm6Ži¯b"rc$LnxìØá¬CÎq„s)8$ó6'1O Ó¶0ôjNGÃq:këZ¼4÷•¼Ï5-¼žûÆ­•XÍÃX±¡n]-ú7` CË>-²É|4ÌoþeûÒ'ïÉÄ€ÀµL³w€±sv“O m±øKš{âÌaÁ(DrIz™ÍCÕD¬Œ À=Är´ âœMg2‰Èir•.þdÀÉÀZ§£³³l–MÉâó<'# ¯‘\ͦWÙlñy3i%‹‹lž%§F›é,+@o&çÙi_'ér1½šÎçÙ|>:ûŒýZ`DŒ®q5œeµˆ›Ãär9_$'Y²¼:M€÷bZ¸Là ;ö( õCé¢G¶èÀÁ·É5ºœ2ˆõÁ²œŒáÿV7j¿ÒÞ UQ»w• Gg#hó<›`"=,£ùb4LŠÙæùfrPr@iP5ÔU:ƒªËq:‹@[ºàŒÛ [O" A"ªí§¿žò¬Û¶ëó¥8š ÇKæ^ÃP?h ¯ËÇ@ É“å%à<ôHK¼Úv±Ð·(ž GÙlœé @(ÒÂàžOgŸ“¿%Wãå<ù®\­”«µruË¥î[ò©ØéµÞ*ˆ€j†aæy&`¼™ÎN¡òA9i—“ÃI3ï zƒVO8¯|'ÛžgËÓ醜ÏbN+ ÏÜåµãF[ŒiUr*̦Ùl„h¨š8ßijh`6œÝÖ^«A.´UŸgQü',ÿZŽp»­JöÜNÇY:QsÙe„¶t¼¬J<³9Úžš,fŸ¿)Äd ÿÕ'ŸuL*`½tÌSËÅ´_ßíµþÖT(`ÿF¿fÈló,A²ÑÊ+É"›/æ2ˆPÿËŒÇÓk7s$Z 2ÊHHa ¡SžQ ‰ð>O¯—Œº¾È&Ìd"¨¨1W´FÆ?jt›5Ü5c”¢y¶€þ )&yJÐ> pO!6 0NLjÎTJMÃeŸ©Ì–”~LGcêåÇQJä~w…¼ùî(ÉæÃ…ñxô!+,.¦s¢$cO¦3â<Žf4ŸâãÏÉé”`.Ò "UÞ•É"¬'bÞ¾êÖÐùµ*EÊ/Ïépàù{è¯âÓ9@M0¾³ÿ ðt™÷èí,œ8›ª,: X.ÍfŒÔ4œM…èpyÀ·î‰‡ç޾-S\“L4]o÷Z¯Z¤úTÁ`›<¹È>%ôËà,ìéx™á¨ ³qç8¸0VHc°S :(f î˜H“l„d®ÆY!ÓEMè‚.ЊCƒÁj¦¾Æ*GœúÃ3 gj}Κ°2¤\Áz³5•B‰È\ ª&0c‰TlTGðE•¦·ÄZ-[ª%¬‘œ_ŒÎP’Œ³3@ésäfõ¬ƒ“\b pOG°öÎNq½Üɲ˜ ­õ3N_Sœ0Ëó6Õ„A°ˆ,‚O~˜L¯'Ï ‚mqThÌŸ{t•_³ÙT2-Và!\UzÆüÄË ÎTP'31ŸaÿËîœy瓃NF“¶Rs 4Ž,ŒÎIV ƀ΃4bîa BŒ.ÃÉ•)Ñô°‹b1¾QĨ,D„Ò‚Æ EâÐfÿÀ5”¬C° l6HðLæ…è¦â“Sâkè Z˜©âÔÖ\­Ór¨}lA@°9Sêv oBÌéd1÷¤:G¦Ñ>8è¼TŸð¡ ðÕQ•`ѳº\}ËU ‘Rû­Wûf»(£Öå–Ïâ-Ë‚Ü4A\ãVÍìôÊnCQÝ툲yºn´.ÅóšâºûëH PP ¤ñÍ?ÐÚuž-dú@³+ðÓÙÜ×RXÎ7YØê¢¤Øc»ýŸš°£‡Ž7Û$úXÌóäE… ö<0ƒ 'Ÿ©ønóU«ÍquYÄÂø¢Õoã6ž ô~Ý`8›úLKÍQ¢ƒÿN¢²…ý¥¹ 3FH&Ô<©ÎF3!äìõ—;xZº±X ¤È€ùDÚàI¤d[=B‚j8 ¸˜¥&Î=*Ÿ¶óöòò„°ø ÎyжÊI•DMÍÐ&¡ïÎB§%mˆB»\è•Ooë=¬ûv}|ê6¨JbeOXb+L~B©A.ÔëXYh!óõO—7*Ÿht{¸–Rõ3Ü.²™¤Ýl9tÆ‚ÇT«jÂÀ„*HÆ ½Ã”ädsˆ¨œÞ~ëe¿ ˜^®X¤eÉ#˜6ôÅ& •^„.Ó<ñ«þ j8©:›æ3οØ$7y“,YY*^ÒÄ>Î>c/ ]óåøØÙ¿šeÙ‡/É·ßâ6ÿ`üå½½ÓlÛ]g·¼j·K»(Øà'‹ô\oò™õ-Å»D#2—È›<‚¢ŠÜŸ3£`‰m€V€ ,­°¥I7C£f–Mq. íé‚wNÄFÀ¸ „:lœ $•d|š*™c§W n~ÏfÓK)P†Ê bô®–ó Àq›c‹CRG¸ ÔVAêt×z+ m­ô6$i1Ù–Ð>àB‚B9pb“fò!‰PâÐdÅ{8ÜaÁ^O…Ÿ ¼~vy5ÎYæ Í…Ó%[ñ‰ | {maÉ¿!aÖóΕk§‚ÏIPÃãÉýEòw´S§cƒ…’Ç8„A“XAˆ1;ßM„ –Žž.Ò™Qs¦®2#[Ñ€›.–€L‹%§U $4ØÖfª»,…ð—÷î±—8˜Ûb±‘kóÙÑ(Æ3—t|”‰§xh49_¼ —ÌÔ(×äM¸èDzuÊtB[}±¦Ð’ÃàRµ,N¯HÀšx'Ìÿr²¼*@«Í^cð«°ÜG{Êéòòò3Éõƒ䊓l˜.I€À°Í€}®¦8Ç¡ú½Í{ØÒ^§E hkE€öz´MÀq"òÀ:ò% ¬-±‚]°¿üÏ{ó—ôcÊ'Z$0ÇÉhꑚ&g/YfiΓq›ªžýæôtȪ ÉÅ)ÆgTF`]C8§›†ÜA Ï(‰JÓòÒÐMæ´ËEãÜ$»VGd]^ÒáËI¶¸ÎH[‚ê§SX $µ7°þÇiðLÇ/;äCüK:¾óK=RõqùlÿðÓB¡'·"4Ï«Iq´ ¤NÏ—Pjï•x$Ž?–W8$ø¦³ÇRWK?ä`%ºÉê!4 É£ËËìtüëÞm&/—3— ´•­6 Ðü;äVP»>É/œª‰œžâÚ'÷¦¼Ø a¢â\Ç}ð ¹]ÀÜE£3êo,”ñ’Ý0¸çtÌ€ûK‹ØÄ¬BoÞí½‘ï TûÕ™#ž‡¡bh¡yW£>™¼§ÑÕË%/p¸@h/–þôPõ~®à§Wôä ‚{Wò§^ŒOÏÒ㉔XÅ' êˆYŒ‘œÓ/[Ý^Ÿ<žûõÝAçˆíƒuã{vŽPòÇË9ÊrAIH²ªënØûŒHƒ%†–ÌT‰$c3„ÒHüpD74‰ÝóB?þæ‚î è T•µÐ¦;1T™ýmÿ¸Ý ”ý£‚ıRL1…ʦaèX‘PÂ=‰0¦7¯™ºzNkOiñ˜Ãæ"Ã…bët—êu¼†ª Íol •¦çÉ»:–ÅÝâ5]œÕãâ|yòw\-³34]ˆWD³o[I/[°Ãóî§’ª„tG×”Á.lÑ÷êÝŸËT”ÿw»ÉÆF‚'KÄÓ¢,ºè[å$Š@”ÿw'.¤8Åe‹ ò¿ÛS…ܲÐÓäݩݳýV¿I¾;eUèYò®§‘v ÈBß%ïæpÓ^Ö…ª•äÝ«ûfY¨š¼»Ö\ºªÇµäPì~Œ5Ø,³+<ª¿#“ßµõ ±Òka\Ý BQ5Ú?ïþÜoš¼QÝ6jÐÖ¾ø®QÚ1ý*{‘P*ƒ&xàj|ŒNE\ÜÓ\ºUIÔ{‚> ÅxÀ }`óC†º›…šC’ú»ÍÛûöèWaô÷Ç‹élô+ž8QuK]yßçŠ*pLŸ5±Õ×v«5à”×Ü*FÃÊ®úÚo³üó1)®¬ÆòЮVKÞ½MŠÊâ"‰+‰¤ëvöÚÎxÔ¶¤@¤­ng&hkÌŒ‡Åw+™0<ÙµmÁ(¾ûµ¤ÅêBC?™Ð–ä A™í"ôX£Þ õƒ\ è·’ (ím6©=qjúµ0žÛÞS-yW¶ˆuÝŸyu­zÓýB¯;´O:[ŽYµ€ Ð0“VGxÁç[“l®Îaç@¢²³ì’M'¬4‰9ÒENÿ|"ýIc_BÕ¾rÍ<†þ/ÖÝ…Ê-»»[•xeDÚ¨M#»é­j¸¶4Þòù>³úؼ–Ó•­ÚàiyTŸ½lAg* YY)œKµŽHAñû€è>_dWÒȨAë³¶šñ¡¢%­¶ \ÙuÁÃLçÏóMM×Ó´rs‰¡…ô½ñÞÚ¢Ž^¦ŸF—£_ÉÜ ¼r ª´ø‰öSš“ÐyIìÃVÛ…p¶…á|ôɦèÉldJ¡×eö×Ròÿà¸ç"ô˜z``0%q»RV%V]¬øD½ýëq³û³ÃšOͺV|ûLéø¨ßqqú.y‰cWÁqš(c:Úƒ³ÄhÉ‚ ¶+† ®7Åf»š4?,àC݌ ¯-:dß®%G†~MÊBC“¹Ós©µ½eWDÇ`E—TÛÛXꉊ°‚ ½4PÓëúc»ÉåÕbjU\ÃéÄÐÄRÆ‘€¬î3º#›¶Ÿ¸ìÛ2{õÔâI·î3—ñ¬ºßÙŒg¯½+ãÉø¶j3žÓðãÚ èã°ž‰çã-›õ<·=F³*?Ž1šÕ¬à4«æ“§¹5=â<²š[Õë볯ɚZÈKã6±Ë_h¤5 ðZÊ['²zxÌ+ ù[bÅã;¹u›oþš³çñw·ÔÇ’ÕçIå6‚|G‚<©®ÔÚòB@mŒ4,Tƒí =ÿX€½Ê…AÊ⊥'[Nº¾Ý¶hëJ¦'CÓÌj YׯªOÌ·–HÇ·OWÉs$ª)Ò±‚÷rPƒ¸Xb+ç¼µhð´â¼µúñ´ª'Å:VF†ÝÉ)‰'›sói-ÀŸ-…æ–ËtVÝí'éº=1ÄÉÓ'!¡øö©Ç"VÃÏâ,b #Í#­ï<1ÐzVÉÇ# ܳê*q‘±$2Ö®…˜DRáÙV€ItÝmÍ$ Ëâg`Œ¾;¦ðÂzo!»Ž)¼ΓÛÈ.d /ôtìšóAŽ€î ¤€!¤gBÀÝP„!(S†!¨ï܆Txû]Å&±)Ãðu5¨)8U%¬Q³Þš¢ ßn­âJ"©!º°Âv˜+ía0$Öyì¾µzüÄ}k¡ÿTó¢>Ó.0¶§zÆGœhªMÔA1:æÇC´DlʳRé †Ã(ý£pÿ§ÇPl»öŽ Ñzv VotíÂùŽ.¥1»çfõF×ÞQ‘]²r+^'œ hªz;fotíÁªÙM%èõ–Ifr¨³«o£n)é¸åb–yc¦Û2À¬Çf[ö.‹Þ?YÃÚTÉ¥ÕSûµÛ¿gök¥ï4w ›•>×Vü ±F¿Ç&Z•ÆïÚFYÜuü>©rNS@ }ª&=ºHq²^täl•\£ ÊŒ52mèËS…då{|ñí]9vC2†Ì`ýúý4n'¤ë€©Îý€w¾øb}Cºö6ÔµH9Ë íŒbÅÍHÈÄ.J,+ÖvN8AœNñ8n 3TF´%q ɤ‘k†Û‚½0϶«\ÙFr<=G[ð¬²OèÇl‹'—KÚÐàáªé+ Ñé6_zú„À£!spÍqÕêã•á^ÛF‚ ަË9½-û>Æp!ƒÄ šô ?eZEpO`ðP/@´íÚš¡+‹æ²Ë«ÅçD3TˆŒ[7'cÏI‚³½b m|,0>æñmᇕà<ñGÕô°ZõiÏÊC]D'ªlˆÒrü¹¤PåÊní²mm”xš‹sÓ‹éø÷8¸n±ï\Ä„âõV£ÖõP{\¹5j/뽦3h«IO«ÏÒ1L»"i 'Ÿªl[ë¨ýî±'d×$ ÅliÀ1++Ùö·fײµWßJ©H Ói`I)u¶,uJ=vå j¨ß,púðÝŽë+Ή±«ÆÀy^ߟÈ#¼9‡ëœ¡Oói&“rIÿÔ~=¨w_jÇãg$Øx½¡™éAÅÔR.ßY¯  ôúIe-TL7åB}Rµ^{Pkk¡rB1›—ó~­áÒëíUPÝÁ9?D£C:ã”§Ë!Þ3à!ÜL0«=çTiw(’ ]:h¸²iÌ3q5A\üSAêR±ÝÎ>¥x§®œ [<[*>ÀFJM:<“ò’ ¤¾¬ÁÖC a=êÚÊ(;äÓ¶P¡<ªRôZˆCPtF§YHçot<ðDˆ>±QM“cÿxJ†ÇlbiNr$øz†t]™]Ùº aò[å‹i·ÒË.°«)›ïâ @§Þ4Š ÿnGšBEtc àÈ3&1.°e((h…5t‚Þà|ÍGú°³³#IQAT2ŒfÐÙ|~‘™ºcfÛÓŠË¿Òv«ìÃÅñ]« Æt'Âl…·ÃHíÅ`^tI -a…£µ4ßö»uàƒF«5Øí½‘\Aµ1° ºçòÆè©žá õš?l"úÀ“Ç%^ÿù–2û»Ã¦'ûÄ‹ס¹'޾Ñz¸HÆÙä|qQ¶î– ɤB®ô8XÙl†·27xC¶ EÐæÂN*c:7)Яï4ñù«þ~¡€6 'a7úĸj ®Fp³è}ƒÂÊûÎeûÒ¸5ÄwˆN…•÷ ¼ëytg@]!H¼+ï ¸Gd²dR©¨GÆ5 ¼N*FÏ`-ƒGHÞtO](â ß8YžŸTð#!¾Œ~ɱCpêÑH Sœ™ d†ÁÓ‚ ‡Ç=¢àlðß`4n^È›Ïg£ñxžHŒÆ?õh"â‘d/²ZQ |ø‘4N¥™mÌ>Åj ´+Êqɾ¶€“«~ØäXJï€×î5'§÷ÊɽwïêüñŠ?~â]þ8á=þÀ ò`¼{×ã7sþxÃ×øQŸ|¦ñX~›|FmLOô—ÆòóÝ».ìóǼæ÷Ìuˆ`à¸OFøÞÿ‹ýj[ùG0þV£þGýƒhù‰àYñ1rÀŒøòÁøïCú‡¾ò??®Ç‡`ü†¥Õ?7þc< õ{ …ÞÔúòŸ¾üKôe ¢ÿ<þXzÐQ õí“ú–Éo«at³3, $±ö&â}q¥VnÿQTßÃóX¦Œ¯½Ål ‚QS¥Ÿ2ùѽL?©¯£‰ü zCœÀƒ"a`Ñׯ÷:mô·„År.‚{g£Dªù0ÚÚ2žª¶½‡²0 ÛP~ãiG0: _ÜfÂÚxP4ëÙrr+Hcw–"àãˆFï^C†Áûz*f™òQ„iŠbÜìKbPpz znR\¯JüãDüˆo0p£E[?Üœ>Q(EþMqxäÑïÙS˜eçÙ' È[„#Ò¥yØŠˆÙ¸ÿGsãR¶påP{•Dì-D|eÿ ¾¡6àwÂ62àUgîÖ©°›7$s(¢“Éí?î†æÙø#…I©Ï‚zk«Â#•Í ”ØoM¦\¶«Šn@ ÞcºòõJÑ´ÈRØç½4 X6áÓdN·Ï6Œ(©lÿǨÓÙg Æ·=9rI_¹ ,963FY£sbÚcbTJœ–BÚpç¼]oÍ{Ä_ÕÕœ(Ü rü=x$á™ÿཫ—“w¯àÿŸàÿÝ2ÞKÎωðö ×»üƒñîM/û®ƒí/ìñÊ oùʉØðÅñÛ*ãÑ?Ä兀7k×ýå§_àíÃÿ°÷ºŒSWÃ[õ‡ðÞ®,±¿Ðxü púµœü/øï0ùŸrò?‡+àÕÖâ‡ωpZ£ ¶¼”óèÖðFë憇¶¹77ÊïÑíü`H!L€L¦m_ãçüçâ÷ œ<ø±œ<„ÿàÿûQÃSPÁ{Ø:<¬ 0›CÙþ!áñ!¨ˆ_\üÈkÑÏáâG>²¹é§{ŒýÅžÂÿ?>,®s‹ү…„âÿø…þÿ±…ýeëo”~IKS°µ¿œô‹@¹ý°ŸøÏø‘0]ó³r ñó›1¥«¹t¦ýŠñÀ@{qž^I¿àx ¼8O¯„çÿ x9x:÷xt¢ë©Ëª7£_”§oO¿5<} ú­äé[ÓOôúGÁÛ²•€|¦=ys.übãAA@×3tîñ xë:÷x¼õ }›ñX%ªõx4l¯üä[ÜóÞx\rëC9d‹ ïaíÑQç'¡/oeè+¹ðs ­£Ÿ¾áàWܪ= $±(Ihm4/ýÖÂkç(àUÖêW"ªácÐ&o¯y#xÕµó£Û|¹¶³AxÃûô¿ ¼›˜ðȯÿvð| %¼õ*x­öO«éG·n€Ÿ‚ÄO8ùç„·ž_ŒK«˜&wëã›ì?ÖÃû)»sxh6¿[x°Á¸KxWÓµ‚?ÿü¡¯óÂ[7ß^瘟_ØÐŸ¿œðÖmƒo O¸îß5¼(š¹áµë¹Hx x+»œžs›á«ñ£Këÿòã§üÿï:ß%~ìËz x!É€ò>‚7‚—ÁÜý¥;+·Á/6¾·íï x·êo„~½|r3xë¼ÁüÈ5 ¡õÈ_Lh¿€þíì‚ðº^7¼Æv†'\æÑá=O×Úï•ï»éº®Ôx[,jÂxì.¼Ë•ù üÖœ°G¹tÏÑß5ðØ—\ºŒ=<éE®ÝÅ×À[3ìu-ݦ­cÐ<‹ÿ<°´¿$jéʼ¾¿«þpÿÁŽÍëþŒþ®†÷n—3¿žXŽÄxtB[O.ÓóÑPä²éhjÙùb³äºTªK-÷ôåû|ërŠ‘å‹ó¹‹f‰¼3"ê²6¹‹;äÁJ—03Âhºœ9í@ùÁ˃ú«A£Þk4{={š¦â5íè‚ýãîO­Þ>Vhµ™«*Ÿj'…}r4}ÄNs"ò€—‰=ˆ–èÝ|…‡´TÓ¨(HÚ“õÔe Š~J&ãå|1½L.³KL8~™NÒóìRÅæDû -¾¯Pv¸SàêÓÑiòÑ.>¸DG¢a‰Òyeñ®´#‹%\ìl–e¥"¿ŒzÀØ É«٧C؇“åh|Êùq†x‡ÓéLŒûiúBÀ\¸êø`œƒÕ!ºLôD®Ôòê¹ »·1舿(ÜJÉh^ð’;ÄCŒ€e‚Bâ…ž?À j;bÞ4¨3€âö’_Ž&‹ê“ÁB\ßÚñ&ZþyfWbw¦0ÊâbǨT—W4zÅ=C¤øZÿ A&ÿʉÓgô‚ó,á¶½îgédŽ™_ç:¿­t…F— Ô3­ <¸)åMW>ü|Ñìt„®ùàeŠ tô)ÌüÓ%_[žžf0¡vÙ˜_`~M áÉ,0LÖhAi;Ä)•’">AA9-ó7k8«CÚ1Ÿcë‰4äèåðj€oD2&ª …¬ÝÿO0ýIñ¸±‡Yu†Ó]¹äK‘1¤žAS|3xG26XŸ¥'£!çѼ…±IBVnÈ‚EŽ;Æ›Ùù‰X²kŸŸà[MŸ4Xh* ˜À<Ãh³,ýàÆÒVx /|¦ø_ ÎBäo¦S/N‡ÊNó0õ)Á[5€AX`dž¡k–UÍݫ͜™Â´û48Ábƒq‚ÄOÙ†.Q«U @Si¿NG2Øc~,r ذ‰VsÙC‘œTcD5 _šxËáé€]pHcîŽÍ…ÓÜZ~àí`÷ Ó`Uc! Ný`ðª‰×pöŠÃ‹RR<ê¶^5|Ò‡´˜óŸz KäyV+ýb?¨–~)BJê‘Óð{X4$©‡‰®ø¿ÝŠ%è ›¼½æà¸ êÖ›Ö^BoÕT‡¬¾À¿É ”¾÷_rÅ£N«Ý/ýHˆî”›i ;\Jž{T)þ;ϳ`#nY( ºÆ™M}ÞÇ¿UùT’ÔÕÖ^‹,ã2Á^Õ~!è{fÊ p,UD†ÁžÓçÆÃ&ßz•"¸äƒ÷á.”Bd®X-Ù}Äc °F$‡?ƒà?H! Š,ïÔànØ-ÔûÍWîϲ†`lX°øðÒ/.ï­ú¯`×´¿ ÜðC°ÚcAè´×köšA»G,î¬ ضt±–¨R,.…d+iî³ËYdÓr¯T*…8Gáàq“=¼ÕÔuG9^Qò‰¨`¹h]ÐÔ-ª'N'e¾ÏRá°“³Ï“û£ûåä~ þ9~X©nUÄgUîPŠ&ðï¨eW–”f¾òéÉwËä÷ß¿PU–@`K˽N¿ßÜ3u«[ ¯QæËÎ@”›‚Õ©zò#m°•ç,tý¢X`û;,*úEíR%•µçž˜ø|“OLÚ³Q6>«$è¼@ =î#èf"Å/æáÝêW“‚¸†8ÃHl"F›Ê…ÉŠºLú$#˜ ?Ž1»›^ Å;‚Xí(ô úÒf †+r>ìàX ´7e‡õ£ÝV¿ˆ)9'(à ¬^“Ò£­Úûo‹Õå÷ßá×ÿÞª™³*ᤠVúý…[ ©·Š":Áv³Q:†MÐ)o\¡âF÷Sºíx”Gê í…wÌ'"õ çlt¾c¨A‚ –¨}½ršÃìaövSn[:ƒ$Ý%/Ì~=±é|éoGÈAãŒsè ÇËSÞm.8 å\ŒY'<™Óy¡"6if"#üåh¡®‘¢!k†AûmäÅ70³÷æn„¥4^^]Mg q«Te‘}FÌÎÛŠÏ~»¢þª†@;£ËÄF[tuZµ'›ª>¡¶à—˜bj3£”ã^4ùT§³óŒ²¡M6@%biÚN¹sã-feµ –¼¤¨ó€ã’_ܪ%á.¾oMDT8±Ñ"W®Q†ÈÃ\ÿ’î æ¦¤ Ø)¥¾(áž}ý¿ZžŒGCnn.¦É|°¿'cÒÝ“‚ ³o ~AøŸI¯D´,@}‘ ëG­M<,¾˜.Ï9.2‹XW…asÏ×þ1Ñ ¦"ÍåÂΪC€ò†Whs5Î ªª4*ÌGø.dÓ%ùà ?oÕŽ4½âX+dÛÚŸ^ãùg™]# ’Ú3ù 9•¶ñÊÆ±Ši£ ÷³˜3`£h±-¬<-Ξñ6¶ïwì*KØ)ㄈU µ¨´s³†j~Cëªlp›ÎX•mªâêù¢£¼õa7K´ì¿|Ùz[ôÊJ.œ!ß¾@+ƒÓl<ºœÇáøeãð(µšq<³¬~¥ÀòÒÿõ ¢‚)» è3Håj•%}Q ÷=X6Ṟ•Ãl—EX97³²¾³E]Ù–Sv 6¤Ð JÉ5 mkŸe}J|¼ «!Ҩ顖7 M2È+'¤æg• ƒ[,gFó‹Á镊Áh öiq ±aø“)¾Ì0¾Ë:t­²9À‘<Í Ž,õA˜”‹Ù$ç uÙ0,Öðm`1XFÙ00a®ZË‚FÙVdÈZ/¼uÙpj7€S ÁA‹)[Ï×ÃQe#€Ø‘— Â7Ä(9©²PlÖˆmËjPvÙ°EØÇ(lšðÕ²|¨l Ï´|`Â3-;žŽ†ƒjeûé`1¤óáhƒ*ëCäÇðÞ(ƒ* ×(Iº«¨-iÕ&¬_ñV4XÕ×fn ÂT`L V´"C!°€Dt–’ÅÖT¢P¬b.W5‰@±Š¹Úñš!±ÕÓÔPn\÷ãWÔõ–ú[A°V÷[Aˆ-å¡QXÊZlo…Œ¿\ß ½>ß cIÔ÷´U¯¾<`¢ÍÔø&°½c·æõ‘ŽÞVôQœj…È“§j`Cº–²j¿]]y\ÁTE›bïøè¨ÓíþÒê¯ÙûàÔú¥"¾†þ0{åöØÔ:ïöQXF´EU‡Wg¿&{ ¬¬›K+khÎaU°„]‚Æ´CtåQŽ<òŒÍh£ÓSL@_¯|_ J<#,hž*̳«”¸’åU ”É•ìNÂ+‚áQt9Ãøx=:…E}“Œ¸ÛŠ$ìG1»íõ(„8ÐÅuF!0Ý6)òûŠü_çVË",ø*¢H°‚YÒ‡3š&Ù5å=_ƒ‰.éCù;èTèÊ8˜MéÐ Å)µž4 TÆyænJc0dÉ8œ!-òÀá’>$v×°WèJŒ¬’> ÐíjËÅYÎ%}B‡-'ë@è’(‹ÙðÒ“¡A(T2a0|–ÂðYÈÕç¼@¨dlÜsöJ!L|rD Lbä˜øôX"Ü•åéçÄý C’Óv:\ ¶eIÈu+! FI †ÌÓ.´¹!d‚Ô`­Bx‘1/¤'Ê·þ ¼¥>=Ðêv¨sôŽúØF¢•õÖ(Ú6  †¿ív:å8‚øÚCP,m9tg|€±Âô®l ŸØ«_Q#`ö)ò=Ò?Fz¹ºMs,šm(«;¬W¿bhòàjŒ5¡ÔÎþºAg¡ôï䨫*YWŒÊÖÞ0°$UkÆ.ôA 5½öQ½vk‰S7$b8ªSse{móXHÌÄÕC©WµbŒñìá ÍP^’"òTémÕ6 ì±2N¯Ä[òñs3°Œo€ñ$ÞÛ²`£\0Vu;/ X·Šü}–¥còèZ'PÕZêÝ%3Ùjþ1–¬?@„ZäÕ-"0mKK.xÙ*x둵(Le5&ha'{#½\ŒÆ´…öj·Úýf·]?ìZ{ÍãN¿Ùî^×»{Ò­N$¶T[rÚénRâåÿúÏß?ýÆeƒÿ­V6·Ÿ>šÏ†|Ê×´Q¿'O¶éþìÏj­ö´Vû¯êãÊÓÇÛÕ§Õ­<¯>}ºýô¿*wÕÉUK<ƒ&gÓébU¹uïÝÎý›ü=zpÓ¿‚Ð޲Ùx£*iº¡‘¼›/ǰH4|ÉüUnúDz… :‰¦ÒˆKµMn*-Àl˜7“5_SBõùçÉ"ýT |*Ù%&T²“ÉÑ}Iø"r ‹ðÔ¿IÚ “ÉãdœNΗéy¶YˆÜäÍ ]z'è&zt1®’ýô×Lä–îÌFç#´'ÖZlakL¯>ÃËER–’êwß=ݨÁTÀKut$± ®6ÒË“ÙèôÜLœÝήc`ÂSÛŽ‚)xÞÏ_óWèf˜(r6:YÒ}L¤1ÆzÆ{ŒÓål˜‰›ftg ½ëe²ÔéLfþ*€€Á0Óä*Z¦q¹Êfì­³5óMË™ZÝæÁ¼ÌÏyl0|‰9û tˆf"q] ƒ>¥+*JbôÖa&WVr—Îÿf£ÝÂ…E{t™Í6c˜@‹5$&ÐMu1ÔAF !Pº22^7C:)}[*ìÑTÞQ¼Läi?×t§ÁâTóºªwíl$ìÞ"¸¼_f>ÌÔ¥ÊÒ¨Œó‚ÒW>^ÎÀðÙ'™ºW :ǃ'Am@ìrºÀ §H±zÜÏ -¶r›6Ÿž-®‘/d‚9Îüj6BxÄôª¿ßê%½ÎËþ›:ˆø~Ôí¼µf/Ùý£3$ÎÑÏÝÖ«ý~²ß9Økv{I½½‡ÑWúÝÖîq¿îÕ{Pó^_àþæÛ£n³×K:ݤuxtÐ`½[o÷[Í^9iµÇ{­ö+ÐÐŽûò uØêC±~‡BBüjIçerØìž¢Ý¯ï¶ZýŸ ‘—­~Ûz Õ“£z·ßjÀÆãè#6 Ø­½V¯qPo6÷6¡uh1i¾-éíל^vÞ´›]DÝêân³pÐÂaÜtr¯Õm6úØý­„ô`ãÞ;j6Zø¥ù4ÄÊ”Öéf¯ù×c(/“½úaýt­¸†"0$ãnóQî¼,ôŽw{ýVÿ¸ßL^u:{Dç^³ûºÕhöv’ƒNˆuŒÑ&öê}LÞE@)x ßw{-¤YÙîñQŸ²pîwÞ`žï¤Q‡ª{DÜN›º êtF H¢}9y³ßÄ[pÐëQªŽ$Œbаoô1i7_´^51>¼¥»toZ½f †ªEZÜì›:´yŒ]¦!¬ø«Á°eȤõ2©ï½n!Ú\¸Cßk 6G=ØŒ roÞñr`'E£³1Eú2pXÌYÎTl#è?häEœÿönâ˜;‰¨“†¾’³YàÃ= }#‡2èâYt>‹¦S<<†ùé %yO"YŒdÂ7}¥Â9N›[W‰T⾆¹ÀAq[Z$A§èæÉyäÜ»Pèé ARs7gÙ?–#¼÷’. $j€yA?äLŠ¢q*b^9LC7D¥‹#HzˆzvÂ9"f‰“AL„ý—Õ)§ŸGäÄtCŒeÆSD¦fæÌ"í)“ÃÊð°älžæ™'%[\ÜŸ'Y:µÿŽë.ÐØF ž.õ8Ë}°¿â¥1ÌvòHu1-ð¥}#=ã|ty5†N޳tf'ëæQR·\µ0|y+ܸÌT(‰§îƒPg“z£ âÍQòÉn½ñ“õûç~³WkËß}¼vU{üX=8®QùV?{& ãìËǯšæ×šñݬ,~‚ôŸ8ÐðéA³í? ”sq*P£ò~½ç=SŒä‡øƒK™¿ê}´‰xÕðÒŠôƒæ@S¾lu{}ýèè¸o|­™ß ’ÀO“fðÓxÉé;‘Ú…Ûoïì¿CbœðÖçÖÛ»CLRß›¨û“”§HΔï*= å (€nê†ÚÉh±!=€VßS7&ikù!Ë®æÆ aÔHuÈu) ]˜®0­ÄÍFNË‹÷} E‘ÑzŠ+‹“ÑùN¹TNzxÆ÷ØPv”Pþ W÷†a¹`eKaA‘tȃú/³Ø[é‚1Æ Ži9Ä å¼@Ýðà¤3KÞÐVŸà%ä9j½2ne±ç[˜tà%Âv&\£ÒÙF)y²ý“Ì K,ôttº’ÈÉN/§@+¼ñ÷ùdzúÙ¸ÿ×Â0)ìi—"\P¨ÎËñ05!ŹwH›Ÿõiw(SQRØ2îiV`ÁÎÏG¤p”ͦN kާé©ÈR$G\ÑÖó­×"ø&]s½,GúÇB&\5œ‚$«âr†; ]„\†8¶ŒQŸc…&*”à&kM‚7H¨ÑÊUaYðÊ:î¶u \¥Ø«è /[¯@KÞ(ð4%Ô/t_Õ÷¹Båñu6vël­®³ª³½ºÎ¶ b‹š~!²…»ÃŽ«+cl…æÀ—>D!\ ªàki3 ÉsÇ”Þ[¶¨ "¹˜–'åSŒ'AaÒ_&#½X„÷?ü<Ãhé¢TqRzX —ü6ÕǸø2qÌs8(_LKØâ÷ßôä÷2h3p€½`%Å*–¯>Aw:ËXG·ÂMòtÀsløõ¦v§¤\6š8½jëéUÛ^K¯í8½Ö à3ÁòQŒé»žd’¸fÑ­;¥. îS×!yÍ'ùÖz’oU|ü;»Â iW2GMa¡õÆXÉ×JÒ¨,¨>Y+ X!3İè•.W½©Ä8¿“¹1`V0òúNÝV zœ•ƒO?ÞºýtÏ/ ‰ÏnËf"ÆW²ÙÖñÑW²ÎZËøñD›(´7>jÀ«h–tØæ e°zT˜rR‘§\Šƒ@¥Î^ò•vÖÚN§ä=¼ £èý\0•`©!ò{6GÍ j­"Û#EÑd¥ûLÓ ")%åpă&Øó*Eë (þ¨XRÈ>ÀLÀÊm :{Ê4¡£EjsÒ\›rdˆÔTv•zÄ= ¥YÅ#š’,¬nÌ„ñcu”nÖµ‘Z’LÈ~3Œ? »ôD³I—uV­p[/L{Û€-Xé=i+•ð¼,heVýÉÿ°E®`"r6(+@bô«ñô¹…Ö…{y9CõÔ¤åÆË{ráͱ¡ÈμAw¦è b³ ÍS3„˜­îVHYq6è­/ïD…Eð9QÎ 0öŠ6²³s: 26˜é|NEé$ÓÓ ŒïÇd2Å˵ÇOÈÒ«V2uî4ãpE ˘]¦ŸÌ<’´Ï&ÛmÑnäŒ#xY•w’ár†ÝF‘ˆgO¾Ð:ÅÖle–Ñ3Džq »o6¦XÆlvåÂ~Ž¢ƒ2nA3ÐËY®qVhŠñA¹Ñ«7QGÆRRá{ÎiZÎ$ÉÏh$h³Ë!yN²3”Œ—¸I5s×Y¬Ù#ϧ1@¼õé Š`u)¦ (fz–(r‡en¸,·ÇãLÜE¾/¹ ÄH’Ϲ&Åêé-é¾^ÿùþ’déÆÖ´ r?´/”Óp>Õ1ï„]…¢Oâx‹Ö¨YÄ^A£Õã ÛþÑ”çòbw©´ZMÒÉÜ6ÈÈBŠÂš5Ÿcâw¼Œ7¥yIgH¤7¤ã䛪Uï‘ì)ëëXkŠ®N¯³ù¢P«²MŒæ»Ð×tDcu V«/I·¬ÆgÙ¥˜Õjábt~±ÁV?‚©.NÉ#,–ÖHy©ŒùìI¼¦•Vt 2}pO'|ÈÆy©…nb c^ê9DŠ t)£1u$ÂÜIR1Ëtþ%Š.¦‰4PJKÖẋTt~_ s$vœhAºy­JÝ #¥Éak:F‘÷1'z,h]P·3 ³šjI™}éØÄ9 ñú0ŠØ5GèǸg’Nx““å1¨Ùpax‘Ìíôâò(†~Ã!Ö÷;ÇŸ K~BÀB”I¿$‚-t^aN5¨»é>&Z³«ÅLÙŠøwÉ-†çºh´X«Ý0Êb†  Í‚*"ÆàÃèð§Âz’ѽÖ9ÝŽ5fÙFe>u:T“à ”rÛ2}ãb¨#–_à~Þ •U+ÆYÕPA Ží½P 1G#2*Ì<6òìé’Îq÷@¼M—a=£›Á4)êœ8­¥ƒ*:ë¦sŒD•§¦ª#.d¨µkI07"tGX©ç”È@žmNÐÎ:/°ÒæAÈ}"€"Ëxùt:¹¿àÆy¥móu×>KSú[§OXÓxož|áòa¿5ÏÊü·Æ–xiÔC*â¢Á¬6ýñ~ÝqË?æ(‡<î{ø0T03P˜úÅ˨ý1çmXãD?¸‚"ðVP›Tã8@mºÉSW1 í—ÆñéŠ÷ E:jÖX·œ>ì-*g1‰SJ>”%½uO¢ªÌiL×<úón“¸ôðø oä’|ô@ÍO>)ij,å `쇵j â‰Ú±DYF ˜Ä/èJ(ª³uÔž>ÕÚSn !É£ÜàŒÖP‘ÆÅg1KÍØÏ°¼Â×[Ü9¿¡ÍgÆ#j±›6@k–Ð?ÒSVXh +nntæé‚ ìföo×#tØ\Èüú6’4ÆE? %>þ–âÉ/ßÛhc»eyž{>B‰Æ'aBx’Â3šÍM¿RÌ€)ëm|T,ÊÖ‡*^ö3Œ[h¼ÊBaø´yکʼ=<ý˜N†rq§ÄÍ2X-ßýg ‚ùž ^Ë¢¿Þ{’-nZÆÐO Iq˜üðB"upüU@gD]¬i^ý¼ÎTç¨ÚÂ3‚.^@ýöÛäk±ÎOr uáf$· «°¬¢»Y1ЉœDw­îšX橃€ÕMú¸b¸Ì~ÆlMwóOÒõg¤€ã¶¥x‹- KDÔç±Q¾áÄòðüÌ«û5-:É‚dInJ–‚0ÆÞ˜E ɧu„V­3“¤(û†ÓŠAÀKtrÙNVï%e\ ½š×sÚ­[L6ô\¹Âè(eD\´ôÂI6LQUî(¸¥D˜âêÇx–¥§Ÿe- ;ݨ4¹!jÖ_¤¥íúb4ΊE¢_`É!Bmlpþ/ÜÄâ ‹îýeÞ+ tykÁi£d*¸¸"˜§Í‡CM‘˜ïÑÅÇ|-Ø@WØ·é;½F]êl9FÚQ–¶Ñ¯düÀ»V·òè¥ÈŽ¢³ªL‰d,C‹¼¨Lhîet:eïW1çj+ã ÐI”Q"pÄb¾³0扯!š™|ÄEèT¼Â,>ÆÞ¡ô'Pÿ[*Ød4ÿ£Ul­*ž +ŠNŸU¤ºø¯§lWÿiÚ´E¢¡"Ñn*탔o„âüJšWÑð1›ž£¹F6»Q}âè…ˆþçêVŸØ:Nò-_ˆ£Ønœ†hÜ®ÐÁ–ü¥ú^¿Ãœa•OU¼¹ÜI¾„zÁ¯ßÈÛo Dç|õ©Q]칺‹@îÞ%ܸ_ÉYª…µ\åmÖ1–P¬¿Š±¾z׳Щòm{ÖÉíwAWÝÝ6hM§o¶ºMÿÿ(yçl mÂ,Þñ|¥@8H¥¯“‹vG îN‡ïr›¤Ê¹,¬þÜ›ÀõÞwO˜S°ÞvW˜“Vš3+6†k¨vãá­ øgmE‡×îÙ-*ùŠ"´„ Ön‰ñôîÊצþÍb¾VsmTt³ü'oy~Ç·‹DÿïÙ2Þ™³©Øå‰«I‹Ùè#žcËônVR·Ï ëpÖàŒØª™¢³Ñ¢@D—)3VžM`—&Líf8²x{¸J)ºY2ß¹ûšJä@ÀDÿŽ´yí¿¸J•·ÑsWÑÒªò7@æ«ÚUt +´Eåºp3åÔ¢ÓÝ)§k:#ñªNÜ€%ùUHù*z3tDîNâuµtlU'Ã*˜Ëê±^æ°ª”Û{C‡ÎAøx¯P¬ÖÐ"¢X…fÜŸª ´ÿõZÒêQ¡ ×2™n`¶Þ5ËGZ>VªZ0d¿%_Øv¬ý Uª:•~½î”£›hE7R‹‚ÿÑšŽácúɺ#œ(¿.ÔõVûÓÆóMÕÙvÔî}2ýé¥Îi¬kEƒâ'á3_@5£GÏÌtË2D‚YóQ®š|O_ßÎÑWuгîá‹À qñ_Õ1¼òE¥À¸¿þÎ伛Ƚ~÷¸Ñ?î6ánà 熅þQÎ]rÛË>©xçËtvÊþëËù2—•”b›÷8Ç¥eŠb†.اËD àÃuÓ}@1‡—¢c¥*õßHS¾ Œy%÷šG^`Ìözúª²z{°×|Ùj7ÕÅè5ç7CÓ8<úºÂ7D$ÄÍ5œå¿®°¨¼Z°²èr²®HdËF{²ýÖÞ^³mΤHIcà`GÓ|žÔA´±G³$è^Vy T:¼JíÐͪ,ßK!¡NR”®Ñ-8…´p±©©5’·gæä>¾ib”_áœ;Ndº8£™úÛçs‰®«ÍY'Q ¬y©+ð$#&¨6`emÃÆð9[ÇXµ!?Z¾ŸwZæ•I†ýÌ—' B.–‹lsÈÞF¾QÇìØÉr„(¥^î|¦UêžÅ'¥˜Ù¬#Q„ìéDº}F¥Ä éÎM±´iÜ]Àí‚‘n0æüÛé‡l®×4¢ý•VQ0=òS91¢-;'¿Öi?쾬¨µc­áí\Üd†Q\8~ñpíðÀ|ɬ¢œ'â«Qn€L„oœ¨Ç|Y _‘£/ÓO;E¤‚\Q@†1Jªk'ógOœà˜X¯d¶ÿ5”¦+  z¾P¨ë-g¦4Òsë b Ôx:ýp’º}j½Å¨*b½ÁÙ8=Ÿ;ì …3ÀÄz¡©»z|í‘ÑÑ ¤|“%16=NÚØ?ôX›OÅ` ùœ˜¡Ä‹D‚Í’ˆ=.ómŠ| >I5E”ŒdÕ²dàÀ÷߬o*PG¶j0¡ÓêÜhzutô5‰.ü?å†È…ø|%ö|õ8ÀÛYzxÌLä?U¡ž‰²'ª(¥éÍyÙM™ºBV)ÏÇÓ“8ù¯8Aˆ7­†Â¢VÄŸ²×ê„R%KS,1ÝX?eãS¼ÿ$µ&qûhüÙ\åFÆ­q½TRÐWŒêÏN3Å[31­Ür”IŒ%†M T¢kÏbɦýcJ4mW§:jÑ|39ÆÝ¿8=r©”ii"ÇD-­‚³ä:¥m¨¸ßƒK¿  ÀhFXÜL:Ÿv›û­öÞà°þVÆå…µ ý˜´H奵}³w1h¯I&CøùZþ&£‡X. ¤cÏ-y+w®oAa]ã¾Ó¼Œ¯ÅNg2å­S¤ Êñ¸RT)qUƒ•Í„ôæÝƒNã'œqƒþÏGzÇxgÌN Ã&)aS¬XÄ{íÇ ØÂÚJ«§°llÞ˜bwó–ªÇ]%/³ØBnÕÆÉ  â²4U–RëAö).9óøßñ¢¶®|$llÀo°ñD£º*&§h†!¸L¯~Ùª½ßQuwéÍAuRûW}·³VhÔŒÝáNL0á‹äõ[bÖ»NÑ •Ê àŠ( J^JíïRxÝNÈ 6Rt7Õ'!fÏGÃslb'H6dQŽ^7Áûè|+܆"Õ©¡h(~Óa.®µ[ ­‹%Òô#*œã8±æÕljÜB—³Íf«M§€=aéåj£6Vš¼@¼Vf ‹åœº´H p}sÙüßPPap ãÏh]Ûù ´dÞ¹ Ò æ¸@Ïçs§í4T3‘¡€åÓmžeFë!uÚñ§Å».k ÙÜ©еÍzäD!ÊüèTE}ÚP¦MŠá•V{](j»tÉ…3šˆýË7‡£‰S‚Õl»þbz%ó^9#·?:¿@›QÌEГ à Jè,ª/Ä/§³k4)[scí¶—8ÆÓvðÏ×xò(<^Æ,âUS˜jÙ­¢P1Å•T±2ëáPüï0ð¾ö$^˜j ØÓœËtöÁp†"…kâú.“êëÜP¦@ -PôÑq/½¤*rSa¢ÂéÑðOCh]êP)MĥᚢÏ-¯Q¼ B)©I !Ϧ‰~‡'Æõ–ç³ó, c@ÆÙÙ×k‰Ô@ð5²:묇rƒX€,8ô: B;( àÚj²ü¬sòÙ„ÓǽªZóŠ÷£Œw9Ù{Y/E`ùj˜¡9º­6òœ½èX  Å1|‚]d`ÆÀ%ëùƒér‘Í4?ëÀnÀe±ßf­5ã#3;¡j,t}P9n¤¾Ì…âãxÃÁO—"¸ +×#3.=¹C0ÞåSïIΓngfpâ†h/ o¿Ñ)–*ËóÊe]½« JýðÞå7W·˜°fÊ#ŽV'Æ›Q]µqÅ?Ǫ.fÔœÐAýÃÙ±á¦OmÒT³~µ‹t²ty¥U˜:*oHô‰ Í•&ÕÇèb@¥EÉéz“<_”̨*«ô˜ŒŽMçjp± ñUC|%Cß[›!\‚C$-#J¥ =€îzºçmò³à¹À#ûÀ|¯¹{üÊXã±QßÀBÀö²“幈Î&ô–Ï{¾X…ºâ»=çà³3¾-Æ—˜ÙLª^e3ô¨‚É™°1(9§$7›ý:KÓZ˜n”’œ[!ºYEõÔ²µq_ÓËKE~+ÔeNóŒªØ§éÜÚƒ'†µPF¨•l)1/U‰Bb3¡©g WÀR¬O$p6^Ò80 xëk×6pAòÍ-ÍÛÆÁà ÕëK‚ˆKµ&"´EÃÝ¡N¡ …¥h·H½|„—HÑ+ñ$1Ç'8K›ð⤭ö+×>mÛÿúw†Ù®fŒ¸UçÃèÊå=W)e:œpÐT –F—HâõÂÐW@Å4™hp€R$=ç…^ÎbzoÉ0nÙ†ñÍõtv:ÿåÙûE~RhpEÃywí«£!úZÐÔä…œsä$[\g"àŸÊZ8ʵQ­†e;]a¸@/Õyz™ÄbùðVoèƒ †ŸvË”ë :ÇÝ}Ù[ºµ)Ìr¶ ÎnœGWW«Á qTÜm–FŸ­ 8^ÇšÒœ…: D0—éÕÜÜé­‰7×À8æÈ½ÒÀ×7Ÿñ- vâï ÓbâÃ0êÔ8õ1ô†"ôŒUp,]Āȫ¯ dœ ;R_ô„¬§D7¯'øê‘ÐiŒ!1¶ŠˆA#® £GCª:Çs'`ú3aæø¥Zy¿£ ¼{WÅQ}÷W›¿›öÙpG/3ÞØr0?ùÒFIÅ ÙåÕ”mrÜrZée¡€ñy>8C©·>KÃ3ÈŠ³ÔÕ#–p“Šd(eÙ®+œ{Bç0{øŒô{ØŸ`z[ Þ³Ÿ£Áa>ÌqpQ²S S×~`ü0]=;…IxD±g7¤ ³Õkˆ¥éiì4ü:JØ8îkŠW˜Wp´¥ã’4ÈÄ`86"¾âð»/Ü?ųïl"ë4<·,ÖáQR§^\.sí-3âiWKÜÃJÛªÞЋM|@Þ±ÕBΔ“%FU_]Xöt'\}~1]ŽùRØy¶à¬‹,`\x=å…wRøJò‹]5rÅFY> ˆ<ñxpÝÁ¥x*Ûñ®ÎôZAqb2o,hBG¼ú¸µ`P½ŒZ"˜ofI=ÿ²ý>ÀENuapùãaB²Ô)˜4éÿÒlÔ{½A»Ùë(ñ­ÁW™ - ÿ¹=¼ÄÎ )ùØžÇ̳ìè\ø&ž;÷êt ¯<{0˜ô=žgœã´Gr \gEÏ£±ª©‹Í “jä€Öe.ã”Öœjþ‰ín§s{òÓ†µ¿òæ?->¨7Í£~ÉŸ¶ªúÕl9ɦ3TÃ]ZuÛÍF;.>èýÔ:ZH¨â!5~Ÿ‚wls3<Ä€¹@Ó6h‚yº¼š,.Ì=Ë>„‘“”˜¶÷ùì @[l£úK² áèK1omþÇ`ä`ÁRr-,ÇoÔˆNŸoËÜ`sœÚ4k­Vm.=ËíBÛÌ©œPfÓ+\w3•"w4Ù‡VäšLó´ öªèdÄG$³uNˆèëÊV¸¢‹ÓnÇq-TÕCàtÇ䲆©%Q!i³dXšðdûrÊHYN?fb5#ÌždM’n0!&úŒúô,åSôwtß+ŽÐÂb˜œoÉÏó»<Íã’³lØü#.L²sÊHJèm&»Ÿñ¢©¸œ;Œ(Y£¨Ò½p€t¤F©\PWTUäwLýC[7΄·.æÉu6YMŸ?ÿV(¨mÛ·Å®DœÃãÈõȺTHZ$MŽf.Òµ¼ ðàe·{Xï7öÑ /qr7ĽaòìdÃéÕˆ`ºæ"ÆØÞ=ÚXåé(ä˜ä¥ AÜ|r5˜c¼v]0Ç’Q)öþT»4kˆ,£î®Îul2‘¥Ÿ>űáj>8òà—~ ®~I:7ž6/OpÒÀ L€ªÍþq·íàŽi9¿ºcXÃì˜ÖvB[«—òTñž÷Ø]Ê=ÃÇófd™B}°:*ÀMkâÉ›3!HU»·U3ÔÊHExH ¿ÛÉg¤ÑáYó`tjÞÒýÚçx­šrOÄÎé׸gƒ™^…Ô“#í“9½’–ž`õOo:¸+;" žKé±ÈìÕ™$|³|Rq‘ñÑ/Î-Œ¸ˆ…(¹‘p\¿”‰¥RuQž®wÁž›³,ˆûò›†½§ÉûUʹAµ'Û6*G1ÐäòɳÂ]ž/†NY¨& 9v.t;óFH] áD)”LÌ®/Xª¢—º°gb9€GŽ·ˆóˆÖßéé©%³eææùÝÏpô2qëŸÜîE.•DÓKœx\`Љ ž÷¡Gz©‘Ô471P꿊›èXÀ-OÏõ¦žoÊ£}‘ÓÕÑ`ð¡H§§âÔ ÏïYβ=V ét8\Êû ‹y6>3F“樸&È2s•b%Q$¶ÈÉåSKÒ4i‘#¶HÎÒÑ8_>+{뇽øåIp–j29ÑS×k ´Q»YzÞ.'´Ÿ¬½·Í$Ì&½iJçèD‡±JÕyvWÀ½ªÞ”r|×ð£™[˳X]•K ê‹ì/Dk?2=i©^}ØIÆl*V×M¡I\¨QFD$[vê˜fìßÀKš®ã§tû’NðÈyÛ ¹ÃiÐ?£,3_JçJ{Õ!!ÞhÇå²Q¾›Žë#‰ )!rËS9A>bBoݑބ!¿ÍÄ´ƒ¹>—@E%—ÃN’Ä ÂÓÖw(œ»º÷úÉn3¡M½å*[=Ž;œžbp>øz÷“W×÷b¤öpýÁÜôáÂ8NUKÎËj–ï^)ÏÑÔ6cG[þÔ6“”z\“Fì]áoèm@úX–×›GF(„ÅSØ”f˜çt-d¶Fº;‘¾K‹¥§bYÁ‘~Ü ¥¤+oÁK’¡ãxÐÄõÀ…¡Yèc¾òq!<×cùnq9ýâ´ß/íñêd=×jƒ¹ yÓu‚Èfª€sBSBÄwá¦×¯÷[A½×kvûÅ"¶5=+ªfJÉÿNÄ3 µÄÑêÊÒ~KAר®-Uì#-ŽMU{õ&i@•øTOàÅ%?iTnw+}ýÏôȲ.iâ m_0îü0 ?{`é¡Où`I  çrq¥ÂÓ O…Z¨QÒ?‘Pá¼Y?zÙ­6õƒÖ«öa³Ý¨›£Áh”ýÒqh=KU4ñö˺² $E[ÞS^áÙVÀyØšÂbÖ=»^yõýÊHx7Ô–Æ-]§^®>ÌÓÏî¾Å¼Á{ó*æA×ú*¸,Z—K¬ƒ(¾j¬óK$"6¬¯£Eæš”5Òû#±‹ÐǵÒ[ÓüažiŽ@ošsçP,tžÀÇ1,œE6×yR|Ðßo¶m»ôüdî®Mqrm£º´ÆÃÖ8¶Ó±¥¦ÕéZ½†Vftðˆ…\hGgÆ5Q E± ÖÃ÷5=?‡;qs¸—ƒëpç>÷üþπćÞ÷NÅ'§o½{ÄW³®) /ééBòZ肘7¨º+õn¿U?ðK×Ü©{×ÕiM•Ká-.pÑÞ\%«[yn”‰cãÏÆ<àÒ€ŠVÈ‚†@Ž+mOñ”Eߪ†"®Å‡ Ã@œ›4†%!Ä©Ÿ ƒ¶lÁÐh|SLìbBn%ÞUÚ<‰{xž¤Šà‹Š '9Ýc» „ÁÙÐáéë4ÊV)˜;|I‰I«¬ô J3G¤¢'Ûx!¼Y«vØ–~ÊAºÈ "°1‡Œ0=¯ô5'ò¾&Ë ôLî<Ž2a, ë€¡)ÂÕuÉ2›ÍNd¶)ôÒPB„)JBµÉaÐ&W;Uç•¶ë3­¼Åß›'lzòðl$;SñÁëfw·¤ÌPÎrîߺQtBV û€\EkÉ52\h»÷wEè%éÎKŠ$Ô»¯Üê  Na÷$¡8”œe³¥8 CèsÉtÄcòEÊç³p+—…¯óXXé°@‚Ñt†'–»ŠZSÓD±@ Çd°ãì88ôÍé ®”BYÃ`m|ºFØ uW†©}|pÀÛ Ci;AŒw6§3{·g]³¤WË&—nÈ{†ê^P:~ôØó®”õ+\/èõ;1²–¸d' %ÇŠZ£š¼¦¬©ýO] rDi£|¥ªx‹M—Ñ"UbÓÓÊ*ÿ‚û4Ž!<=ÓÇOj¢þ3W‰?O,õÆíëåúí7 w´"Ä„?{EH‚n'ÊûeG8®i§™ -WÞVúâÊú+²së•­SNäÞ` Q*©*÷á¤`nnký×þÆÿ[­ln?}4Ÿ ¡ùнj4n^Ü ®ù‡ †ž<Ù¦Oø³?k•êöVõ¿ª+OoWŸV·jÿ…kµ'ÿU¹}“ùÿ–(š¡ÉÙtºXUnÝ{·sÿ&·}”ÍÆh¹€[Ðnv¾Dý©ù eæ$\ùïÖa q*ˆ#œíd&όƯ/PO›ž,ÒO4£Î³Ë$ÜPÄ®Ÿ'Ã1–Hç2¬]Æ·yð¡Ðx°“ÉcP+&çËô£Ø{bžÿÞÌF Ðàœ]ŒÆ£«d?ý5‹“YæìrLjäߦãE:Iö³Ùð×ìœktf£s:ˆ¬µø0´1½ú̇v” ò»ïžnÀÔ©%ÇO ~DœFzy2žgFð ÄÀ„'¦¶SXঅnv:ÂÕèdɦa…™O—ìZvšœ@Ï94Îå\xÁMgô ⻄ÃãÑ”£ÝãH^e³K¤þ)ºe~¡“³:Ñ9£kƒì’ Bäóð_f‹ç<š˜QÓÄŠÔÑŒ<:pgJt¦ƒg΂’°Ç 3s“Üäa6*Ü4FÐèpœŽ.1áH<ÂÐÔ˜@7O—Ã,„Œ@B t+dÄÑ™€t:Ò5ÁTØ#uR‰LÐGæšîÊeÑì†ê];-dWó¾y„ù º,+‹‹¹@‹¢è ü©H[{"<(aÃR:ÅÛœSŠw9]¿.P ¯QÆ…‘Ͱùôlq|!ØLÃ_ÍFÈ}b~¯‘€ÁŒû­^Òë¼ì¿©ƒ ‚ïGÝÎë¬ÚÉîÏI¿™4:G?w[¯öûÉ~ç`¯Ùí%õö}òè¸{Ôé5 Ø­½V¯qPo6÷6¡uh1i¾Æ3³Þ~t'»—7ífQ·º¸Û,´ê»Mn:¹×ê6}ìþÖÂzå¤wÔl´ðKómúRïþ\˜€Ùkþõ ¡É{¯~X]+®¡ Iã¸Û¤c¾ÎËBïx·×oõûÍäU§³Gtî5»¯[fo'9èôˆXǽfZè×±a”‚×ð}÷¸×Bš@Akv»ÇGýV§]‚á}ƒA“Fªîq;mê*¨Óý" ˆöåäÍ~žÃ· D©:’ kôÍbаoô1i7_´^5Û&¾í ”7­^³CÕÂÜY8DØì›:´yŒ]¦!¬ø«Á°eȤõ2©ï½n!Ú\¸Cßk 6G=ØcroÞñr Öù· ¼“¢@|zÑ êºHˆ7v¾‘T]5(E–6ÎànõA ÃP 8jWP0JÍÆØ Ìzø¸_[Á×ý~Ë vÐiÔ tA0±…ÆH7*sÐy%L9=sá'¾Æîé¦ ]’ áZnÕD¼N|±c='˜z̰øíß——WÉüï=xðý¸EŸ¼ðâÒ Çƒ`ãNAo÷ùTCÆÜ¨‹›0°ª¦¨Åk%ÃÕÐ}cy³:L¦ËsÎxk^L”ÁÌ›—SØè ´~‰ÒþAÂá ØŠ ˆw¼1žž×Š¢g’ZI´ëSý¸OzLjЃ j|ßWÑ(Øs„M!âûðd¢LQÆÁÆç@â–­ƒÅaÙ(A²Rá·Û ÎáQë ÙÝ)ø˜&#°FUÄçÜa| %2öW~)'r2/°YÒô#uQkžž–d•?Ð#£àXbõ\tß`Æ[tß•ÑÏÝR˜tEúžß_å•[*©“w¾H˜þ?À¯Ãfh0 ñ—g¿WŸ¼§Õ %áƒáŸbÎ}‰è‰“JÀ}¿1+wðºNšœÁ¦N…\ÉdvÁħS–wô/,_ ȇwè‰X}Ø_»˜O®êä3TãV6E«Äô4˜ê= aŒ´Z/ýÆÄBö›øÌÑ*‰ãÕÍ'“ªƒ‚ª Kàò!„{"“¦á`|ÃØ5Û{%BÜ"¡ áûÑÅ€0µÐSБ§|¿A§¬¦†Ã_*ï“^¨ 9¥uŽëbüU2•’òý÷É3Ì ¿ª ž “Ü{öýµ¨(¾DÞ1L˜nKB‘«“S ¾xKü¨WÏIÑšÄJr>ñù(60ÔE”hÎ\Ý#L¾åcìóÁa½÷Ú5aÇM¨¸`mYBÚ3„Ið”%“#òPî”bB¿ ‚TÝ11õÑ0¬ „*ù-! ÛÐ…:Çí¾D›YÞ¬ó"T²dÌ`_ar懅¯/9’’ëØ”ÒŒÏ¬ÏzSÞfXmÊ×Ì¶Ý ÍZMÞŒqÞî:h¶w (E^žJJÀ.6•’áÿç°´#ù†e ;ôÑ€rBÌ=J{í”ý!>ÁgØk&sR‚+§àÚ¶UPîµ°ö³f┞‚‚”àD9:v›RÒSA iuG[J V΀”žZó Ä2ç6ø†òTöÊRN»ŒÑÃDÕQB‡g3T#çv°¬’~lü .6Lgt0TR³ÆAýߘT›™l1Pšß•Ð}U¥O—ª„á‰WJ;dSe‹šóĺTÜdi@ sºÚ';½À|…MáNÁPŽ ÜÿÑdô%m8 ‰³Û|ÕjƒTî”’>–dÐ`ã°-îöµØË'òîZÜ…6‘@) Ãàƒ7RôͬcO¥PûJg(z‹~*ºOåQGP47ŧ.ýÂV†qÂè—?ü aõö[/û²IcÈQ´yC6赫såÓÑ8làÚ ­*¦W¹¸Ù¼Y€ì*·¡í ƒìUaÅTÈI|½`盓Öòj.ó/È.²jÊî·^ísvMNM¹£5Äm¨¶º!” ÐGÑŽg-vºÖ£¹¶®Ý Jõf* FOVúŋĚ ‘y^¥"ÌèÂzê… ÈA"y†(ØÄÖ:$Z6’k0’åõ°¬©e6¢ocÞXÜÑælù"ç«3Ò«`9V´¯«3¬_åUjCÀÈ•¬!Ç+G=³!5…Üí¤­×VÐnálf=õ—ô8«­›¿fWÊÍê-ð—°qŒ\èñ®z¶ˆ›Æ¸ua}–<àò˜ôý’Ø%G®ýHÅl‰ØÍb†Ôýx‘4„Ñý(ýf7lo¯=~ $@¶ùFd¶Nco‘¿ü²óâÛ¤òéY…— €Û=n–Ù«¸$U3ãT¡Í§ µ¨Í¿òé))DºÎAo¿»æ `KT©Š*‡×ƒãg^ÙÃæaµˆÏJæÙwÅi´·` j4UUecÝ·äwQOkþf#­ªÀ„ AR\"ÈUNþr¬Æ©ÝÍn§$õó@-ÍVUüŠÕðs¿Ùm±Z‰øö´C†æÄò ¶HÙàr4\¦ŸrŒõqÁ¬zµ˜ÙÏ0 îb†3!bë…y“BÕ h°¬7é'zÃcöàUv_ÃüŠœo\ Už|2ÜÈocÈ|¬òìQõ †l+š¶âŠÉøom… ;¨Rp†É÷8"RÁäÁ~…Åu²´rK?à«–h°‡77¡"аtÖߎû/yuZí>΄É5 lV²  q9šðf½„ ýǼšÓ¼ê³'íYxöíe¨G^ÆViÚ{FW"Vˆ:„W¶ÅB°„TÛ‹!½èÚÅkuþ·ÕÛ5wg玳i'Dûàdæ(’Ïe‹¤ò¼äP¶¤æeטW’äd–¥hP Õõ-XÊi¨ g;h¶ËQº/òuC+§án˜;AÑ„2•æÛóþVH)%£˜ÐreÁbÜÂTúóù0h-7”Ù‡Âxl#ÜZÂhÖÚ.i ¨jÞ Çž¾ §ãõôoôsÃ"¥¬,× îÏ•g®o}¡M› ßÊB¥«Dš A“8åFÁ"ÜIvŽP7‡ôNg˜‡q4ù˜ÍÃË«2‡Ð5KiÏÕ²öVE´N…ª.ó´¥G¥ ¤4^N? Ø’%&7 üAo=Gw1 Ÿ¾SÀ‹§8)fÙ9Z¤ªrS_D~, )ØYÝäÍYrÎ&2ßäê4T‘Ÿ)¸GëD½M—Åù5Z!’Ì|J×e2ŒJ’Rd³)µÉys•ýI Y v rÔ .ÏlxX?ÂU•-@‡Gv˜:bRœº† H¨ô$KC€Z—xÁþ߬`“l½ÇåÑŠJÖg…›뱞®Bt•¹Ú²¥ùr­èÁ){À` ñ_q¤„£¡<(,Ú‡žÕro¥öÇ—ÊÂ`]ÅÉŒ^0PFZ)¶ôM ©(¸ÒQÝ|Ã)k8ljV6éȃ‘$ÙÇŒ’KPjzDòaHƹo /ˆ5ì¡LÅæ(ÓÆH»ÐavWšËjiaüì9§™áøäEDGw;Û’õ[|\W7åõDÙ.JÀ`KÜ^•×ѺM0+¹Š•iD NIl‹/VŽR-â™Cx]OœM.áˆaÈË»‹U3#´æhÚ›L¤JãjÑC±x[™å,?ä,eÛ1hÄ®h#MÓ%ÁІïKïx×ò}nFƒæ_ëaŸ€5ó¡Z{̓f£oû,ÙÀ HÇm BëU»¹Ç\Ê‘:€Q°·BG8Ž•` »XãµÍ7æDô& 9.UŸx…¥çRÍò\;·S´AœgÕ’Ó¼t¶ŠûMiô•#:Ï0¢Úôª6˜_ŒÎ†š .‡ëáÞ?@`úw·3£Í–¨ ªoaêYÌ"ZŒµR~jÖŠüLxƒUÿ°¾;c¯¾ToÌ+âÈÌ6D´ZÓblNØeBr>›eCL ^‚™*` FÐyi¼Ý{8]->È=‘.‰‰x#Ÿ>bê‰8Óaþ¦VMÃ^#õ|QEmÐôE…ßÔ7w÷Bu¥‘][Í2°{0ª®ÛÙða'VùTÕÕ=§NŒÉÿ˜vÍ`8eÔ1p l,ýíGîÊsKY…ÆE[ç®^A<5ô*õ"ʶ°‰þ'0í fÍ pjN!Š£×3¯óø3;¡vwŒäkEÑE®V/mWZXgÚU>¼E5Ú'Ó釭ê4æl†ÄóÙÇ¥R,¼HuIž \š«g¥Ò×Î’€;¯9IKÔ bóÝŠ9÷Œ¾¹_ºs)-=3”1Ýac×j››-ËêM¬¨v³ÏÿUgÔ­¸ök–•?–£µ‰ü_S©É·Tp_Þ~õZ¢Uì(!t›/Dg´×†¦ØÝîO]èžÒo › Ë {Øw)äßúCÛ_Á¬ûE}7œèÖ`ØSN´0bò[PŽß`ŸxS9nÍÙ?Hë±ý*'®Ò¬/ÑKLÖ X“ ªwd›R·Å¹ŒÒŒvKkôŽí£ÍI«öj¤ñïn´1f¥]Ìâ "å7fþs/U¹/w¹dµ-¡J¡)žïžŒ4üÂoÖ´!ˆÖµoK@Ñâ –õÕ6Kµò­°ñÂ@{áŸûx­P+ôr÷[|˜ÜµK»×Xb;®gß¹|Fƒ;bák ¤>W^\TݵÏf~ð/þûrøÖ íê»’´-¨?v?¦=Þ¿¬?nzEéOVhP+eåq?â¹Õ`XëDÁZ½50´\HSC^''×WÉõr·RÞŽÎ÷¿9Uø~E‡ ×u†Ü ð ÓXLNǘá[KÝÆõÅ Óúž£±³’ƒ&ˆ™%•O§Éü«A ^Ô_õV, dII¦hû‹5ûìñªv;]¯Ù¯n±ú¬’ÝQ›ù%Œå1‡g~w3öxî˜H©ÛÛ\]Ì·uò'/ÓÍ©jhV¼NvðŽBëUÛ¦›—½$Íï¡Fçã·êƒz?J+¸àn0zÕÅE¿Þh`\î¯C((*ŸÒÊ×ËkOÏÎn‰ª%,‚è®Ç5ÇyoåSV©TpvßrRYmÜÕ̲\ïF|4†,>sÃqõÒ%4ã òµ˜2Žg¥(Ívä}'é¼/VÌÖ„ 8=ãžž•“ë ŸÏ0ç~àûj1õç@­òäÉ]¬Žç;Z4,€ÒYyR®iü](oßì#Lè1_Lg™1ÂÑáR!B`Ï*âNÀ°¤²r^^Âܼ¬ÙSòê?Sò?Sòßanhgù»™=17zÓ¯˜·ÐÖ³ÒÓ³0Bv$©üóÔ9Ô9ú—ÙØW\ÂÓ÷zô|*îÎöpÒÜxÔ<æ¥ö_Ât¹…ví‹à|'QŒª¤·À°òéì¬Z‰Íþ•ñ×°êö’]Æ×Ïô ñ.»Y«ÞÅ 8²ÏÀ»ÁpûŽ0T£²}×êa­k׿èÂqks»ÛFêÜ£;?ù:G3yçÄ´pšÞÓ|Ùj#mcýyQxuÔw›ÅRüLÀ¹ t‡÷|ÌË37»b«º‹€DÔ/1€ù|.ãUÎ7ÍT4ª ­n•id ÑL/úþ‰ÈßÂWç)€yBÌñ–j7ÆØâP c&hˆýmôx§`"·ßc¤º‚êú{]ź²åÈZ£JlmÖ;‡Ó“6¾iŒ7ÌþIUÑ œtk×]·94Ï6øòz DxOMM_8PoþÍ$ma»­f’?ÿð"yb\Fm¦³ñçä,É[¦qŽLÜð°ù·ÊD¸ ë¶–¸²DdÌ©fæá]¹èR| –o:2ÿVÑ1P"¨H¥É8"“ ~å¹8=¸ZÎ2àŽY&pÇ“ùìøê—Nø`hÃS»E2Î…dq=W–ý0§“ø^Çö ‹¡Æy­Ï'D ;^tnÚ*7`?Lž`@&Õ€)•d$™]GG÷˜*¬qÉÿ1¨*Üt¬þè.üðBC~(Y­âD£4ó_°?h¨Þ"$ß¼WÓX{¬?2¸áùŒÉ°þa‡ â΂ìbÞ÷›¾*,Ú6<ntæàþË/Ã)"ÂH}Ý”õ¤¸-kæšSÕ`L2T?2ÓdŽb祃„×//É‚V,p"™ÊtJÊçŽ:ù+–(Æ{ iż’Vf¿t€9¾±YÅœN£É2ó`lùÙ +@üfÌÍðÒ¤ÇëýΚ‰lÍX¡!åБô ]¯'ÝÕ!å=鿢ÈlË!{òÊ™°–uK™Áˆšf3Lt­2×è8ý#…I´ƒhKmC{oZ—Š}&^¸o¢‰Tøs+¬-·ðå×ZÊ_˜ÃÚšÁu µ*¥MžÎO¸ š¹äZ5µ”çúÊ9ŦRvÑ´d˜Äªù·fȼ`¼ÖQûæž¿e PSÏ(1¼Cžž%)´–N†5àÒ Ír$ m— ev´VùÕj€RhW”¶R5+ÛdL•±Œtf:Ídùäúbн²#‚f’Z›Nöïl6½LP±còl"›\ÌHÁ0'Hîõ”ÕIœ¸˜ÂTÀƒÓ#Ìq€î+( ù†â;ujl¿ú–“L˜q2®óËŸQ6¡gQY—b£¼6Üy6ü¾U{¯"›²×MéæÓålÈ×|_$U®vZÑl…ßTý€âjõ¨ #ÔŠyîâIÞvàFô ·U Ç5‘aBËɆ«$)k¨j(@%GCf:l„Jðt8ÆA\;Sÿuéý'’$Ò×·qÓéš'¤” @d™RK”®î¸~V8hxöß|ÛïÖšmÚåâØèj¬óÙ%@#¤óߌÜßî(o¼HZm¦O¯ˆÚTÀÓló”¾:;.­Ç“tÌË?ÚzÈ_nyu5-”½ѲdÚ7â&·#oQàZÙááf:_b™ù/êý¾ZÌÞsŽ Ð‚Í&vlÓuüºL‚7Áç¦Tt«Þ{Š2³V°¬J¢€ÂU;ÌC^7ð½es²ÁŒ§ç£!úgàÊ}d3]m@¨-wÂØs5œeµk9m&˜0ÿ¤ Ñ0Ì4º'rÊf™‚ZNÒÉ)V-Û55ÿÿ“õËÜñmà?ÚÀ¿öÿÇ-æ“é?w×¾b çEÛ\ˆ£«5ߺ˜158¥½ 8ÅÓæ“Âõ§{[5>UFkdåSµZ?b„¸,w.Èqt±1©P+†ò\3_zMYÇ"œÕõšÉô‡ÿÛõ‡áï®ü3, Äñ<÷×ó¼\â|Þ¿µVòmäÿçÚˆLcðÅ=YëðÇéèT9ºÑÁ÷¸‘f]ÀB–¦Ó›ßÌw•Ùr(_Ó…Äø/¼P8.U¥,"Q9ªhý½mäË«—òpÒ¦:wËûgð‚£UuŽf¦ £#аJr"=’UV ¨_ã çÜ“5·UMŸ('×ÜIr'Ä ¢òõĬݘ˜yš\Ñ)‡ÔŽÁqÃÊÓ úÁls‹–5:7‰þàóÑ–æ#=kn1Ã^‰J7gó/j³¸jµúðüÑêÑm‡P]½ˆD}pu ›Ã0<7âk¯Hm„‚0ƒ:DS˜\¶ sž/ÆÃ—Ð53Èk< ®)ÕEA /+ ežS •—Ý(è—r' h¦dîWʬ‹kzŠÆbtw¯Å‰Ï¨æ óÝŠ›€öüu2{‰‰½1˜Ä/ßï¬#1;ÎRžî xÊ ì£z·é¡¿{Ò0ŠZ'A—ý°³kA'F\m ¤¹ÕO.@U#¤šî7º›*c™ävO_Aj—Ò‚Æ^ŒMKXÙ8dhÇži Zˆp*+æ&úÇzÅ:8¸«9u¼TùSx‰ DâuêtÃàd+' Õu¦êjeìÃèjÀ˜X¬–C»?÷ïF!²b'ííù³D}×ügÞ7öÐŒŒ±$ã†Ô\åï;èe´WÖ|c´½CÏgÓˆ{©½U×0Ž´á¸¦¶kuoW=£gé[p#5¬<2)¶U¹öžFÓJídTú³çÆÖfݶøµ7įÿè!~gˆk•Úww:Ä 0÷ü×â×·âµÚWómÞÕ[ç’t?:À»tYŒ”ñ¸ªc UHšÖ»¯Ž›í~O ׺K¯r@²Køg4LÇco$pìäw߫ߔü¯d®R?T{‡õjnìÔ˜ ï*. Ýbð6JIU¤`iu ö…-yûzosÓ=¥ v³ÜmÃÇ+ÿH‰£3ÑÄú#h{çÄüg“JjÉ.[{û' ’–“–ÎøbµÎ·Ð`¶…ÊZKT§ ½:q\ƒ¦»³ùül‰§A+!%$=™~Iè)Áäþ=‚ôS‰£Y’ˆ’J^({ÀJ£ƒçÁl.U®å–\¨ñnë&Ö?W²2—FÉ“˜¦qÁW÷ñ´ñ Ùo~ýÚIfKÐw¿Yå’".­ iiøxþ&ìX·7ˆP%mÊSÑ ªXj%½^éµÂΞ¬*¿T|c$äàn*Öñ:²c•3crlTwn–Oƒ²£•XftbþhLW6‡Z"㦠Óê™-â1$¼9a²‚qAZ0Ì‚Òꀫ¸ˆæͺ“oj…YåfB=÷6ÀN‡2@lí˜ù}‡°¤ aµB7‚!Ì륅Z”ûÆô ¢ÿ•I›\®­Î¤¾á6}*<âJSµmÐüì+"¾-ÛÁ.ño%¨»Em:Ìa>7ÍgÒ½ÄÞv=·Þ™&~›ÕPòKŽ WjÂK1¬^­=£K)Qm+ô‚Õå;. m#s¬„úÊÅœ·èxVVî§ßÔ7¥M÷_>“¸çä!{6ú„÷ç@Íú0™^‹Ûuøb4I~I7~}‘¨~©oüí=§£Q•½4¯uåÄ}®BóVýö\Ë0Þ5à~)è^)ÓÙï]m&´½°ÝžÜú”!&Xí ÓdhæXkë$‰fz²oûâìÙ€.–mcè „+Dˆ-@ªú¶Žb½›ÄhônD£N+‚XêŽlÁYé#'V–8ÚyrOÐØùÛþ»Á™ÛÎòÀÚ³^¸:pƒ.Šˆõ¤h1l* Í“»Ž‰›Àuü¶;¢'H#HÛŠÌw,£ïÜtèâcy§DÖ¯ž|ýÿ5NF"îüÍüŒD¾,sjs*t‚®Öž ×?Þ H#ûyðlýd´¸#¯€¥µj3,ñMP‚žÜJËDÉ´H¯ÚЮÉUæõ@œøX¼!{¥Y3žÅ쫸H¯½¡ãNg'Z¨W¦ÖâÇ5~è¡Ë-2ÜeÕGݜثÑãö=gwС*07ŒÎü–gå²;êÆ*ÿ’•#*¼Ob©³ÂúÔSÇe„³e­\W¶|ƒtà)` áåzÊjÕN•ӻЬ’? ‘<{Y9¢çÓßhÏO9 FºÌ r¨L/w0ÍWÇó_¬.··w·¸Ý ç–‘okµ÷Š›÷ÒÀ¼y—˜Ë6WçúpØä°~)HÛ¡9xu[ð|(ÑŒ]³™Ü.Ù¨õ3ôZñËÞt׎J3™//³y’ÊË­n4¹Z.œ!V‘‡°|Î9'¾-¯ö ,웳Ïè–ð‡é"›¤ ®BëÄÝr&Ò†Êa*V%IÍ|žÃØe¼„³ 3ŸºöãŠq=Ï0ðÑÎÏAׯ9cž0ŽšË6°Æx³þ0ƒÜÃÔ€@ºG\Ä2@ËíNÃÖ×¢è.Û<ßVl qÛ[RFãUç\ò…U] X1­5Ôæ 2­!”·u1(÷‡öÆî‹µ'Õ¯ 2] ¦"d&õN9šÇX†z¥ÂQ°8b¸Sóûhâ+qÊßr¾ì˜é¤6`Öb°KÝEú‘¢]à$•v!Š/ç§¾©tC»Ýrž•û¦Ewvü³æðçtšaWŸý8SRrKìøG† ã,B§DŒS¨mDÄ)%S;ÉXãI%¡‘YErgk _ó”]ÑèüÆŸÂýÿãâ¯mð¿ÕÊæöÓGóÙðGeCÝWPssøm`ð¡'O¶éþ¬Ïêã­íêöÓÿª>®<}¼]}ZݪÁóZ¥Z«þWåÎz¹âo‰w¡ÉÙtºXUnÝ{·sÿ&Üô¯ð€†£l6Þh XŒN`¦w³óå8%ÍOW³l>Ul.6¨rÓ?‚J KÆ£“Y ú(fRÑ›£2&òh€8áÆ3£qÎí8ÿŒ$¤ÊÒ¨Œsªã^¦ŸQ7XÎùâè5ð4C¦Ä.1(SláGgÐÖ)¥s5 oY\#_6KæWÙù ªŽûÄü&^#½êï·zI¯ó²ÿ¦‚ ¾u;¯[{ †íþœô÷›I£sôs·õj¿ŸìwöšÝ^‚F F§Ýï¶vûxp¯Þƒš÷ ø¢Þþ9i¾=ê6{½¤ÓMZ‡G-лõv¿Õìáidãàx¯Õ~UNIZ‡­>ëwÊØhÁ¯–t^&‡Í.èmí~}·uÐêÿLˆ¼lõÛØÖKh¬ž‹_ãø ÞMŽŽ»G^³€ÝÚkõõÖasoZ‡“æëf»ŸôöëN/;oÚÍ.¢nuq·Y8h¡-‚NÍF{£¿5€p€úÃ5-üÒ|Û„¾Ô»?—f`öš=†Bð2Ù«Ö_A׊k(CÒ8î6Ñ‘ÈPèïöú­þq¿™¼êtöˆÎ½f÷u«Ñìí$ëmÛœ6Þ ¼†ï»Ç½Ò¬Ðjƒß=>ê·:í ï  ô»U÷ˆ¸6uÔéþŒ@‘Dûròf¿ Ïa„Û¢TIú«Ñ7‹A{@À¾ÑǤÝ|j}³ÝhâÛByÓê5K0T­hq³oêÐæ1v™†°â¯Öi “Öˤ¾÷º…hsá }¯%Øõ`Ï&ȽyÇË%<×»™â€¶°Â­¨D¯¬GÅËìr:û<˜§d¿f3,3Ž— ¥¿W]Â×E!>Ka‡wñƒa›^’d«Âa¼8O»l÷+ËԬ؛÷<Ÿ7Øñg<ÞM6¦“ì¹öz] Ó’{—‡C¥”Óµ\€rGÙ/-6Y¸ÑwíÞ[La§G@O–£ñiaþy¾È.a<æ¨ÂsϤët§ý²õjP‡éšTÃïzý:ï-ðü.Ф¢ú̆­½æîñ+§,=Cl¿¼«¨C*ûí!HšNƒLeŠnIÑExy°”è½Ê%½ s ¾ì6›E Äw6˲`;zåƒ0¶Ö•E!Äo® 8\Œ÷x@Z4ß=(9u•=V=ßø!ÜuxÎü-ê9q7®2¢Ôá?g©a˜ê ¶¹ùè4»š?¢Ó˜GâLv©ôí`4ÛÞ+Œ"‚sÛbšÖÿ°Þl]96ró¥³áÅMð0ëkbð"jgNyÜO³“åù9jPWËì#ä ƒbÕd#9žc CyÚzš Ó+€F¡sÐæ-æ_±E›ôí%²Á8/ȵ(1ñi“jIš¯%SÓôÀêÚÀ£’,J‡­¿5÷Ý.¨5¡úDÆ\ÚÅHšŽAʤ§«€Ò*Õ9ì7ë{FÀ«óð¡2ƒGô@©»±ì ~H¦ñˆ÷Ñ“ñ›ÍÂËo‚*(ð@ä_BCâpXoì£áÄOƒÏ[’­ÚÓ'ϨùW³é5¨›3Ä›æOéx”ÞfÒ»Á*ñÉår¼]?0¤4úÇyír{¯º7ýýA·Ú³êwœ×N ž -Jo5DÃ|­Áq‰ì*oø¬ÊâOq§-=÷š t~Æ;­^•ȪÁŒ…%///q›Û%££ìZtSïsNFóËqÖÔ)Ä»œól’Íp.¶HÅüWU,bÌáÔõ¨™#¯ªÝr³{@k˜0 ˆ]yÁØ•oRìÔ“tBèèõôúÐö•qµcv¿Ù¼À»úì °ÈTÐ9iÃî5ü+$tZ±ÞÆ[âè€Ü¤¾Î²1 Üü6î2b9åºâîcÈÓ Å:ÎF¿Â¤n.ê“ ¨Z½Q¶1 ¼ž”çË“ ÝRRìeÈø°M <Cî½Ä¸Ì§¸ËÏK´eºŸžÜ‡{?½Oûµûð‹fÖ•"Ž<ˆ:¥Òei`ÕFAà>“Ý’#íR™àŸL§ã z]¤³Gg°ÏÕG–ØLÅd–)«.R ˆ²¸kËÆgÔù*&œuƒÅxî#÷ùô”bÐŽ1èlÊ}Uw‚ÐЛ¡Û ¶Ñ"?KF.(Úšµ D5"÷EÈÚÝY:j4á!S‰€‰ó±'#iÏ)lha)­›‹ôC6)œÚAÞW° ž~¦Pjj<’âƒRBùhÍâϹ6í+ ¯»c«Äp…ìmO'çá~ 71™*ýÊ’¹!e¨+ÚJê8Á4JÚ¢}J/¯0€ÁÊ r:¶ÅJÆ ‘ú«b ×S 1éÕY˜î [$°)Û-' Ø ±ov2"Û`@ˆÐÀ£òLËmðð‹³=¨^Üý½QÚãÞhD oy aAÂju{| Éýâ}—'¯–sú¥Šˆt´n• É®¤ts {.¡,Aõ ;.UÀò'ÖÈr«ö3Ø€žÏ´ñ$¹×¸Ç‘>º L^xIra7kfí†W·î>A.—f.±Og§||¯‹ª8ÔP”ŒÏ9½žp7 0èh±£¤"Á畘֗‰ÃA ¬1z)òŽÎaöÔÓK­` é| ©’-¸>OSZ&ØÏaÎù@FQûÃ]CR=ØhµGˆ4SÉn6L—lâïVÕ8‡¬–¹ó*L2œ+é vâxeb‚vQ±AO@'¶[Îq^ÜL“ÓÏ“;â$mVP­ Ñhv›x‘ŠQ*$ºè Ÿ0IXØtñ¼PüŘЛ³9|¼ÿ…ƒs N…Ÿ˜¿Aü(=L677“_’JòþÅTQ£)tµÿä="ÉýA]Gt‚“4dFIù*îä'%?‘A@…f£Þ†h:JIÐMÉl2ç,}â(ÞŠjË4{@xTlåZš9O„_€õŒ²*%b¯K“ö˜Éý݃ #O‰+³ Õfä ìxñª0_Jb,~ˆ“r3M§ÞüU–mã¦ÇÏ š§ä,’žék+Â÷Z ñ€6K:þæ§ GÜ;ûÅôc6)¤¬Ç´‘œÃ>Û—my¡«hLJ»Íî óR:. ;°I¶¼Ñe)€£>ŸûMõØy=ÿeô÷šPäÖŒ¦0"ÕÙt}UE.£QÜßå® ôq?k¡¿»½ã³¾r^ûÍeo3ÝHâ—0!ׯ/ú‘}¾Xž¬„Nü¼ã¾§°\%@¾Zï0Õ´zMg“å% °ÇüÄ&'Ó¯ èR濯öB§ãZwñò3è Æ%öJùè³z>‘¡¹À¾%Îl<©ö†Wº¡”G¡L^Éb‡+ºRFÿ÷ÈÒÚ(N©…‚UÖ{ØÞ—“l1\Gl>­éäUž€€¾$lKŒÅfòR°åtâÐnnžP÷ÃFš€„©1(òøŸj{ã(™Ì0RÝLŒ?  ÒùCйb­•QÉrÖE™è’Å—ÊL` Ÿ&‹GMYÛ ‡„÷ñ§PC9·PçI*Tq «©˜ðOÆaÆ ¦p”JÖ\N8©Ë “-F1¶ö3 Q”_¡ò`ø)št„],¤³‰¥Å”ZH4—$>Ñ“æ§úxÒ‰ý²iS2"ácl”PVhBL‘,„ºQ{`wCQ`†ùªpæÏ0ÑUz(Ñ)ì5?*cÍ `¿f³iNCÊÚ)q ñ”žñúr2²œg5’6èèÙAwTøÒSß8J<è©KÕ¦º2ˆã qÖø‰Šýó’ê´ÍM—Ï=æ°÷—diP 96vü°å|b²‚$É8¸œ~¤§§³»Ÿ8_|ÞŽ²ÿÕt~£p×ó»›‘›taàX+cêJmá:ê@…‹ÓC.þ%ØÍ 1`†›ç&F)‚ë·NÛ?9©o4m4ÓpM=ÇÖ#Æ“6(º‘üèªsYxˆ+Ÿ¨î°¸@éÏ9 Æý•#GrA<pfÿWLµ3\Aþ DøhÚ0i¢Ñßo¶ýnýˆ~ Oâà Ù~Õß÷:¡¬7êå­—æ 1#ø >{™*#ÁДè– USZ üýªEŠŽÔïaÍO°#gë®Äa«žÐ¦Í8“pg½´/¡†F»–¹˜|æ ‰ÁÑ1¾„ºjŒìaýí M÷’zIµf=Þk½|)Þ<ö~йëtÆñØ6, muÔH* Ýø-³ô3]²çƒL/õk¢C)(3¬½|0ZÓÆ³Õ¸ÐÈ;ÈYÿê=;ùpéÔK/¯¶>Mýbì=>L"‡öt‘yЭ·_5ÙIg;ðš` _ár®‹! c“1ù¨ ¥l4TCBA¹O>ßÔZF?O‡¾Ûîq"Èð`&UÛ—d)£;ƒÆŒqÏ DáÃôjn—ˆstKO‡Ái‡©]]\­ÂêXˆýdÒÓ ò %ØXN€ŠÌ¥±†b«3É"Ã5\Žx¿¦÷NÂÑE¹¬¹œ÷@½ e%»’Rj9ð)yúrîªýÁûQujÈ/¦+³óL:L<Ø$;¸¼"«3#° J‹Ž ŸÄ¢ rÉÙžƒ™s<ɶYßûÏå$oÆrº‰±¬žœíâ^lÌPÞo³ç•Ó—Šº Š6°å/Ëí½ê¸_´h+òéèãˆ/M|i—MèS®n)^‘¥HßòtÖÓ|ª!S=c¿z€"”OhÕp @x~œÍÙš¾ðg¼˜}lBEm’ÍÂj3jK{Î3Ó@Fwáé û‡#âF1&èb›öØju†F{ JVPûN Æ$=Ï.ɧ m%ï]àif ßWuü-&™ñaUã1Ï2ûȪ$6tå;æ:Ó–?EM‡5p=Óó”fyDˆ»ßrÁž.Òèp¸ÌQ&Ï—'L'>Ø7œwâØ^œ H°tœ,ݹÊ"Ãj6™.Ï)ŪtX°êÿŽN‘NáÖ½É@ VŽ6Í'a|ÕëjŒ&§Ù'ŸˆŽ+´œ_)ˆ JBY«®/¹BÇ÷–.s24eKLyôpF-à!¢XìÒ ƒ'’–P –°)³‹ØŠ™ œXSùœÏ^í¥M¬ÆûŒGm¼ñ0u¿Œiƒ¾‹ÆécP¶e¬´ô-°Ï iËÎÔj]Pùa¯Ð0c8@vÖ¤r)`Ücg@í@Æüu)K¡ø!—©²qÍ=†h–S­{ÜÄÃGرd—W‹ÏÚc1³+é|è‰ccû‹‡±×ª-ƒðøÀ/a“ÌãˆN°dý˜ +¶ ëogN2'À¼û‰B³‚*§¾½s§ªx÷ˆFaz)êô~j=µ§”fwƒ j:¹k£²cµ]JÈ—4ŒÆx:ýp’5OµþÄg4G¢¿.Y>ͲÓÑŒWPźYYçV ËtÓ“V!ó1ûk©ãMKp¤ p‡:HåîÉÖAÑ&ç,¸m%ÈU@Ù597¢X VåfÓ¤}$4¾“lÌ’Npp{´êäMÌ]šâÊ€ó†¬,‘žLgëŠxY]æìLæÙÌñþÆp)¼p”û ~%òŒw£,ôFhÍʺgXaL8¯¤Æ,í1ó PŠ(á<ã#ÆA¨¦Š{Ô V¹³™x^D®0Î 2ï-Ø2ä¼Â“®”@©×ýåðj°âu:ùlL,ãgÙr~ =Äuîl9²—ófÏÜSføì¡®N¶(øÔ¾EØT(¥è¨9–òÄKªˆL"j9™‹³ÇYv¦ž¦ãÅ`8š ——gãìÓŠ€Z c¡k!ÖuCßäÚ-{«g¼~æã ›÷åðt'ô…ÛÚÈðæ`{€Ò›.— ø ‚|濺ÊÒX‰W"±^Ýðš†Q¼d2¡0~R0D ]ÂÞ±Œ—0û¢KÉ>­Šªýŵı¯®‡ÂCñeÇ€1ÏŒa÷›XW´vJ‡Â2¬Õ-"Za}ÍŠSÉAk±é|4gŸb¬>‡K¹9¸Ê0"¥sìþŽûpÉvÓí÷;+£·Jvpðàʵõ•)ॹ”«ÊÕ÷føÆdøbhbLu"§/.O2[O„•šmÌ—ép6w4—ø C¶qÁ¹4Í‘¼‰¢Oåf^yXXI‹£‡)â7˜wht^ç×¥’Ž@\~Ôm¾ä xᓆ%ôÂÈdWCÛÓ…Ú½0ýÖÔÚÒ(Ê·ƒVž‹ø‚túžyz~1:£XK g²Ù=[ èJÀ§þdN=ÕM·9]«æÕ²^oy¯kN0 ŒÚj[ªjÈx‰µJU­×h1_÷*ÎÍá~çÈ|]u^S€ýZcØè·1ÞA¿±¯_k"¨”„&p}Ö"’­aR:ù6ß//Ç¿}öd3ȽÏuÐŒ[ùºÕíלkÈ&õÃ¥*æÍy²³$¤A%ãôót¹·ÎÓOì]ÏçÂè:·&‘MQçSf“=¬b5—tC2#_;Íd|W¼ ò`)ý¬)ô.Ͱ­Ïn¶Ó¨T4ã$Åj°Y«|Õ,_[_¾f–ßZ_~Ë,¿½¾ü¶YþqŒl}6>æ:µ¦kJ¦™í….-nóÝŠ—Ç|ËMÀ¡3†Ç§ì¢4¥ žç³éòjþ\{¥è‰}BÎwš‘½Y›Óe³ú~ï<Ã?´Sеd©D]Ë&ʬ÷¬ÜêEʇöŸ3t©òU>¯›~§‹ º}¢¥ 3kx”Ü j HŠ6ˆ‡IhMp›£0B5'ωÖÀŠ˜6ƒ1ëžà8þBï7Tº3êÈûҪħ¤¨“^™ÔFŠް®Þë诟O¥JÂjÐF#o6ÌÎR¤MüçAR[ÛòVmMËF«åÚê–·Köâj®­¬vS¬B¦Ìì -”œˆÒÉ;×Òà†cì\É=â‘áS-N¯ÊÉ)Þ?„®ËÉ|6¤®K \'`^U·PcåC%ñqM¡ógCñañóQ-ÐL•ÿå5þ7Ôj-O«Uù)Ô䧃È1ar“æ—~û7hpÐë6d“QÂb`›`+bмê.21)º¸ÊîìÕpbs!»b¿Sä´ïÝ„@ÇÔäZˆð…«Û°U’0X~U^ÑE#ºS³?`²`¥•ØJ°J A¦ðÆ0ÐÛ›0Gà p¬Ñ¼¤¿%.B˾<¨¿ê¹36ÈCÀºnöñðu˜Kdyä¾C™l/DÀÇ^›hZ.B½€¢§— ¹NZÒ`·Þk¾òa­Ù2†O瓃e]6îtTT-é‘NæsX ‹‚Ú–*ŸÎÄŸQ¼Õ~]?hí Žûì•lè}Äq» >ZCôëgÏž­L¹±n!7ÉA1¾ÛÀóµQÄ.ÊÆ ­Å…‰óý‹ (‡¹D¾yZÎø­HÕ¯>Ü¡'*&>ë0Õä{RË`'‚õ«ï1AåÓ³Šñä{Îy'þf6¨ÆŽxÁÿÄaMB”8ž*5Pûû USdÛK¾ÿ>y²£Šæ/’š~òE|s:W³;Wó:Ws;gc‚ùÖ°éäwƨ&»ZÒMËO·¿YÅíofô×l'ÐçŒû\5º¨º½e>ÓßdRND¯Â©—‘SüÁýéeV©TJ&6&‰Ãc;Ö»/Æ/ýÝ!ú–Mô-è[>Ñ]r¸„ß Þí¼Iü3øgÛ«:í À™€g6ÄlÛO-ò)ÂW«œ’rS‡é§…‹ÇjòÛ`ÿ¢A¸óQ O˜®nÍHnÅ@Èj_´¬²¥N¸"ÿâIÒ]4ú¸¢”öW«„©”lÕ÷;Jº]Á %662udêb ,˜pë+äêÆ‹òt£æ T|”K¢nÔV‰Ôõ"uDªÛ7_ªnÜP¬nä‘«[ž`ÅG¹%ëÆÖѺñ¯.Z7@´ºÄ÷¥ëÆ-ÄëF^ùº±í X|t# ‹ÖˆØÿˆØa»ÖztÇú¬œh0ʶ‚¥‡z•’«` +’iãz¯QHj¾f;¦î[,š bÈü bZ Ía‚\x(ùSRÔUcÿ%×<ƒøCŸî¡5pèQ2¸$ÊeCÊPsá ŠÅI.× —æÃµäÞ¸rç0bþq èÎSÏU±´r^ü‹0—©YÝSÚ’Ù?YÒé Ë€7”dk“©ÿòì÷ê“ß·€á¬øôáÛ ‹ÆÞxP«hE2ÁˆÞ"çEu(RÚ½^è8Øk|öý ;öC‰ˆ¤Kcü»,EŒÀ5FHx9Yp†´?8NV瑟!"0c F–¼¯§˜Ê’F¾–š>äÂSìt ïÐúä‘g F{/ŒÎã¤Ä¾‡ž0/¼‹¼¬sÆ;¢‡LÓȉ,±÷½¨ûº‹é60ï+¢Wè–Ín)!‚rúÂ% ¥¶&Ҡ㓊fǧ/9ã|4©pÀ“ì:ч:âªìóo'Ì…Àys!A[®w$WHÐÚ¨.€‹Gâ7¿’. TƒÝ« ” ÈzSFÓOÝPa…°1ú3•«–0ÇmLŒ2¨w_‰H ùüz„ m`91 DfÜ^gï¹õóÐúÙ컀»o:ݽÁn總Wïþl¾Œ¾ÀZ{­W­¾ùÐ{@°÷[ýfï¨ÞhZ€ƒO%.¸N¹h¸Ïêm ¡úÁó€u;Gæ#÷7Ôh¸ì{hùO°Ükï©ÿ¤ù¶ Œõ¤³×v~›?­nÃým ×^çàÀýmhtñtÜ~rØjûŽ{^1ÿá_›öÐS¹ÀSºÃì <Å$9>6žß6< 4O}¨2´!ïI·ùÒùi Ì^Û)@Zv xkµ‹ùUŽ-¦¡hþ„õÃùÙ=¬¿õµÚî#è¦Ý8‰m‹ßÏxiðŸ ËúOq ? —‡å&V<ð—tó).ç–4jt[GýA÷Øêûn·îüt(ÑpJ4E@K°Zrªôü*=l/·çnxLã>éúlå<¡UÓ|€k±CÌWï<– <„ݧG@`›îxõÈlo¿Ù¶©wxh ò—õ–%uêFó(Äþ‹ÆA§çµî¢ˆòô¸±b½ ¾4“Å“›ä•|^úÖÆ÷VÎxw¡mƒ„óÓzíʬ€Pu%X@ zò,$Lú§Œû¨ù¶Þ°Ð HÕ€L ITxæBGH­@g[noÝBÞ3jÍ-å?DÜRÞ3ês+Ði÷™‡…ì¶ûÐkÝ¥"< 5jm¹`à©Gq.zì— <õÆòY€Ÿp 1?4æÑXÓÄ}ì‘^SÅ}ìˆA÷yh¤B<"IãáàMœÀã ËÐ>)"w¢÷8ó:»’-g¸×tSÛo`n{½ óÞžúÆ~½À¡0÷f:&œÕ½a)æ>jºüÏÜ]¦EC=NeƒÏ]þeC=&'¼|.C¨…ø\<—-®]FÐúi-%°oØý¹«ZÞa.ÉF0¢UhüОm¯V¬X‚$îº8ª­9úGЭ)ÚèSn’ÒNŒzF˜ H½k©¶¬Ôà6ÚÓ܇¨¡¸Ï(ü™xf9©÷/‹%éµÎVÄÍ´‡)¢ ÝSÓ­`¸xǹzg…I#6—p&&'ܓٖ2Þ§•,ÉŠçòç𪄆»-;ÉE+E;ÅlňÚç.Ý0ZÄœ3N'7W63ÜeÞ¿X*p0ÈSv ç¸,WYº™ïæò*„qI|fšGy«o›+õöØíðÃÐxH£f1À&ØŠÉ5É!fJžÛá4/óX·Ú ¡šâîë|à‡ëˆó´΄‚ ûª»s'#´8KÀg¥b“ŠV…ä[tû(i®¾yàùÅ®úÃÉÖ{í”PRV¢=¤8b”èÎ;y™Î?X½ü?«»yãî½ &<£¶omÍ-€¬Ÿ0­¬3‚‚n<µq-0ô ú: y ö MR§H0HWPQçÊ,£QAYaÆVÌ`:×" ‡xŒò¡‘Ž1ÃÏ"KF˜¿r‘Nz"'ÅñèƒLiÄ‹d+ÒZGlC‹¸™UAYÆIK<ÎzI^6Û†ay 6mþM”p4b¤@/ŒsñÞ¿bá3$þq2ËÒ;«ASß‹¨vÖiEëð°fV°Eœ9œßûÂ[g¬ñíbÍl°Ä쳪#†âU=ãʧîçŸÐ·Z®ÞðȬÒ·¨Î(.64wÔ¥%ÿ{°ˆ´[OøÝbT³#9ŠÂÓ\u>+ÖªÊpMhÃV"JL¬–™×}lz½ÂÔ›8‡N'ç ‹vÔ(Òëlñ-Æ•é¼2‚Æ>¬ŽõÁ°Û†­¹7"§Ù¦MZë•É(+Pæã€E™ãG¢êˆÉäåþ/Á(^£ Ò…CË(¨o2yä›$tíojN(©X*¸<¶£“@¬8– ¢Ú¼ºîIÓc±öÝ|¨Ô¹5ƒWóQ^Ÿæ8Ïîj†²œBô÷»ãWûooŒ±Þg´Yƒà$ÊsÂb;-xvÌ™%…­ŽÅ{aIgV3‚‘º6¹±s±"ó7ñ™o,2TØ ü¾XÝ:{ÜR:plíÊ8צÌ-Jû®¡æ÷ vç©/>«zŽ8R·£’ű+xVÒ%8Kô!cÔ@”„4U·«f¸:nê¼AЯßÃî.nnŠákŸ-ÞpIj¿³(»[. ¦ÇÖ~)6{HõuC‘&JÙÍ5ÛÑoÚŸ"(ß|•˜[ŒëƧU=¿“^¯Õ÷åÉ¢\j`{Vk÷á4¼Ù6Ã4Øåê‡Ûx:;·Zü°Ï7TÞ1ª‹­3…`ö|Ó |¥†¯kÓóB™çÀ,ƒEÐÑ ‡,›œ¡×•´mÍm=ÄÞ3˜ Ø7Ñ…ðÑòyhäÑ"ŒSƒð9bì0-zŠô'm rk'†õšèóÂõ]*PÉš(°¦ 5;Δ‚˜ø×¹/ÇCÔìÊ·IÑìîºJ%l¢RÊÚ]Ô&Q(n;ÙT-«'+DÁà$È.ª-%´4ÂX]Sf’[vÄ0°¨7áFwVaãÆ¢á…–­ý¬DÐÊî£*s÷H›ZÌJ”Ý(×>Â~‰»C×òœ5í›õîÁÏä23h¶÷ëíF“/­oáÕÚ%sOD&Œ¡r²à4e*· …O§ ØN;›\¤ ÛRÐ4J(z+5™Ò£ï¤É\ÿ^féd49çY\Dy~E’Ük f¿Ê¾H%«P’[[²))1Ú…· 0)甚Íê•®%À‚E&ûÊ È,»LG ÓîÂÐĈp@$Þ¿ÉuizÆwÐ?×pk?ut¸èXãyíÛØ/`g×(´ ú4»Â¼Ã"‘7úÍ4bSÖu2^[¶m’¸éضŠS6vÓ>fc¤2l= c3˜Bw,œð•½½Lûe”`ßõý…ö¶·ŽÖv»uûQB¾óߨ·X>z̳ҴâÂe>ø>2ðìJÒ‰Íÿö0”éÒ]× ¸Š²…fhÜ)Ûq-‚ó\’(›)¥DÀΩÂÎñb7‰rÂ4Ê{˜¼G¬ö;–|cã)µÞŽ0™½G¦ÍßRC|‡:³ÀÊ—Ò‹Ùyæ>’ÞÌî3éÕì> ¢ô4 E €Îó7Ì r=:]\ø ^lí9¡8j˜WŒˆ…rv·p=ô½à-:G߸Þðî脞 xë‘òŒw ² ‹ßæ~›ðSÛÞ|c?e%g•˜w’Â<Ѫ;7!¿rÛ·ØO¹Ú»ímùímݨ=ã&ùØ|–¿jDZ¶ÙÐø*§U¿À£ -ÖãV[ἦ¡Ý•ÛJ8ÎiWúØÍì&HäÚŠ1Ïo»±Û‹áa"=/ô^™µÄNOØ)!Ãlz% ýDòçÉlÝ|¯o)2 kå½XžiÚP°ã!OM­ßÔ·Ðú$OÙec[‡_ –[9ýV ½qD|› æXW6¦7ê“Å^YÛ{Ù²×êm¹Í88ö0о³œïбò SÃN·‚Þ‘9íÌg§´'õL¯bó¹í¯í¿ µáø3‡+ê iBˆ‡PŽH%Y`½¾égzJ ·<Іϼó8Bêꦯz¸‰ÐàÄx Ö Çéÿ’,šöGS͹µP¬ÙBñ_e•‰×ˆÔu%®!$‚Ïõí€ä·„Z´¯e8o¬!Š™ƒ½&"‚'ö*Ü Ï¸|§ËRpÙ‰-GîRd Vø…uÃéj¾s·Æ§NìU´™(nîE=qò®•ÿBʶòñ·z(ž~ͽÞÛ`+Mëiil8A3H4½hóOò<).'óÑù„Ã¥£Wðä¸UKIc®‘Á™LO]úä€(¯$à›sÓžc*ÛúŒÍÑ]œWæŠWDüv³o¶ÃÆFÅ:$ŒV±·=ööÛ]ñÌŠÆ©£G’è;û´RÒËq¿¬T¾Ä q«çÆ3md§c¦¥L”GQ3 Ò¡J·m]ÒÆÇ"¦ØÑké÷ÞˆÎZ€Ä3v¦ 9åpðØï~€ß¨92P¶~#ßÜÒôë¨EÑàaòÈ Ä0%&Uó¤d‘Ñhá&’O3ëðDWõDàõ³v,[û¸é"<>#9 ­"x^OE·åp­ÿ¬Ã¯¯ê¤UaK ²ºF6AÏþ“ŒRm“_ˆ«ñ|Å"£eÈíÕkŒå½UôPÇþâX]?€E„k*g„ ñ$Ê~o.ª¾^|µK9H$É*'€áÿ¤÷7á†;Äq| ]z²ð/D›N¥HÉ¡Ÿ˜B:¦-¥Knf5;@8ˆ×mBv øN¼uñ».ÉSÅØ=!y¡—«o-àÈR!5íå\Ó¹žï+þ;÷ª¼ñ"‘ ¼”#ñ‡T€P'9:gÒ ¬Ý„xSafqî¿ “ç\.× šuŽ—§hs!ÏåÇ÷r}~óg×â<¿*ñ7{ñ³ÓŸÚ2¯ÅI˨œŒø²êu29}Bc‰<þ™sF9uëœvE[owö–ŽÈ}T*±íŠÍ>*þø¼¾[úm»üäË#J+¨ǃ*ˆ¹ª3ºÍ$Ëm})þˆŸÕòÖ}’º´Q":¼9«òˆ²72 L…»…“EwÂE‘ÝùÈ·H*ÓÌúÀ—B–TålVNFä{K`Êa´Ÿªé¡Šl$”C éev‰‘t™Þ—üh\®dî<¬–¥¨[è‡ ŠJt¡~ Ñ3@$ú"±H¾’,Õ¤xa’¢JžùÁîWƒ]íÍд8"¶KF  ´NF–5’îæQ«ZÚßË9zˆEZC§!ÐLh/1¥Ó†<ž'—Ë9 ȧޤ™ ¥ÙÇŒÃ׎G“¨ ¼Ø¶lQqíLN+G?³­-*â×;cDm¥Ø~eK8JÔÏQs^ã¢,NØ`eÕÇj;&ÖHôNg#øt¬RŠ¢ÓõÝѧb‰\l¸O í€E™eðó"ÓüM66ŒŸ²]aÑ7æ3«’¢@9ÙpåOAóó‹-Zaªm)½/Úór&”d€[ƒ–Ã.E¿klíµ·¼­2øÕ{ÍA«ßìÖeºV¹Vª2¾ã8â?&%ØyÌ ¯_6öœÝ°½çâÔ/Ý{a8¥ß„ðW'œÁ+^;bú±DŠÔ‘œyF¬Vw@„ºêlç¶:Fˆ#‡ôfÉÓ­]§:äûƒz̧ñá²!´B0 ƒp…ÈÐ O€HÑclõ„3=0ïB4×îká:b'š+©”7fà¹ðÊ ÛYå Æ=8ä.‘b>ãÏÇw‹Ñk#¡IÖ3ãò’°O™÷Atz÷ÞˆºX€M»˜ÆL_tg³Í—ÉžV–ê!¨p"öo‹¼ý’7^W„&¢Ôõ/x«-.äÑw X>áƒÏUÆ6­Ú:òF&+€qsy5Ëxƒ{ò9I“_ñ€Úê–ùv”„»TLE Jƒ^š ÛªŒžcܹ_¢qžPR g#ääÍKWof'Ϲê/Œ²6Ñâ.ôtšL¦Éùxz’ŽåŽ˜x49gF†xA }AËu¥óã&òêE­!…Ùf]è*u0eZ˜}-EÄdô̞߬8 B NÝr²k§®:\š2rãoSñFat@x÷™¾7`?×üç±:^X ëÝXá­hïÖ¡º­Gª›OA}t<;ÌüCi ­ …EéOD[M;WM@¢Ü|~n7™â¬ãöÄÔq§þ8JÆ”nƒwžèTÿ2¼|Ó¨V°RšŸ“ –Ù‹Ñé)À¤YšãÄ*ܹ ·k¨7á“a²Ê©NxÿWÜÈÛVû_amørkžRÒò¶ àÆu󱆑ºÂzh$¯pWý\(‰B²8zƒ\‚¾¯²&˜@7„Ij¥è2+·¹«`Õnkׂåļ!äÀ–.@ÊÜíÅðtdËÐ¥²È{›. ¸Ïbá8_ѨåÅo74ÇÙõžv`Çœ†í¦bGÐ$úŒ¸sy‚ü¬wÑ9h‡Ü³E7\Ñ{K¤Méž±ãçy„YðYªò®°¡v6*8E¡†´]âŠóÑi¦œ,p·Èâ¯ÌLuN{+)Ó9¬ÔY`\9´sÚMΡ ŒªNç‘æ×Ø:2¥~H8ë´½‡úíO^ýQ¯Atœã$c½aÒ;RŽGØHÑ~dC„Õùsï3x^P\STÝ2–²ü¾yÛYٹ۸ɾðŸL3Œ‰9£kÚVä»/…ËQh¼×„\—n¸ƒ«Ùt˜Ía·ÿg†\WÕØáwVnžáIaÑMnÖç@.œ äûýb£ãºs7Z;Ìþ.˜'×# üPHŽhžÓñÿÇÞ»v7u$ ÃÏgýŠMf½<ØÄ’Â`L–°ø‰±9²Ëäp´dyÛÖ K]0œ„óÛß®ê[uwõ¾I2ÖL@{÷îKuuuÝë¦ÿa†ˆ ;:žÈ"•`ØÃvxz=ç SX²rBôµD)ÑTF%õûŒ-öŒä®Ó©Óg‡Jír={9›IŽX=›œŸ `êää@{zÓt&ˆ]š‰Ëg“«Þùdˆi¦a_cZ*潊)Æ“jÇPK$c™<çÖ:ª¾Õy6dfyš—I¢èU†é¼zÏ»;3Ž»‡û½—ö.ŽØ»Ÿ,ÊOxGº037j)Ä·P³ÕwØUz53®îz¯%k1ÔW‰7*›bõpFûဣC.ɵZjíé³až~R š®þQ‹ŸŽÒA/ƒ{ñÜ[ÎäÇäû䱿@T¸Þ=“é4Ÿ™‹þô êŠÀ•ëÌJ‹žX‹îÇZ>¯àçšs˜V[]"‰>‹i$£¾æ¼“èfš¼C£ÿh‹mkòöÎ.5p; Â8³j³‹Z¾TzR7™jv»;6T –ê„C¥BHP†ƒ'ªy -–ÅÓÉSœ½f® Ò¬%èXÎÎèÑnð©ÀqÃã]`ðš`´ŠË¥w–7ièòj5ÊY!ñ‘Ÿ“À&»?_FÉdк&®QÌR2CËÏ´u ð#zå¶!؄ʙümNå‚€\–øÜçâˆÌñi”ÏUI§_g¼ò2£éÇÌ#.+š ò<̈F§>5yÏÌ’ 4²™Ð¨{ˆIïeïBÿ ÉDFçø’™;÷ÌÏž¦ŸsÏh~3ó̤á#O<â`RðÑ'¯¼í1é÷è¯Q^’ŒŒ¬(x 3ÆØ•˜ü²\i¶¬ŽgLž*ÇŒ` =v¤ð)Éã>Ö~5ÞJ™•ùénÜçáú‚î f•^2p`ö³Ü0E8¶¿h/O—㈳d¹$ï ³ò•k¦Û_n…àôFRM߯ðµ&è+Ôo‚«²ÖþµèçÃóa:…ê/c¨IH2ÃÌL`„®Æ¸¿÷Sgÿ·:•ø´È× Áîóc2žH=ˆøÄ?ñ­’aÕ=ûÔ‰¬°ÞâFaS¨Ç®»¤”—­–н¨Œ¼ƒ·bÍä×|r Ú–ÝÎ󽃎®sÚåU&ž6Åá‡Õ»[W•P•ŒöTò2³K(7ÃlnWRg_oaΠþ¦Yv˜}]ê6 ü€–b%ª3Àv"ÈÄÎOfD•¼w%j771è=œ@E£÷(t(åIƒ Õ+l¤B\ô*;›ôУb.Uƒué/öÙ5¹ú…Ã×ME^þ¼–¿zÝÄTÏ:¯ôë£×µäðçÎÎña·NÊþxÐï`_{LJð¡=lJGýêÕZ²Îtgðb}›©ØP~8µ Âýÿu•+ù*”r{íµ’vúì{ŽJ£º ¨ª¢çëÙ,y6—Ðr}=ËœU錪í‚?âJw#ÚùçÞ•Ê4—l} jÐ?Ì¿TÏOž8)¹–Ø1M°ô˜¶Óqà)Ä»½ñ¡ èÓ¯ ÒÀ‡ÉzSªÓtºKÒ•M¿1˜Hü J~ÌÙµ«É»4×гnÒ?à ÈùLbîZ€ýkG?É죔X¸Ù¥ø¸J¹(L ic@O¿ñ+½™Uj÷c»ÔÔëj–̶9ýÂÖ¯›H`|€†Ówiòn8/ú£DãÜŒ:>/‘Î,ÖÙ£ºE¾Æ+SýÐwÎÇšr#ŽSñ\Ø4Ö<´×´ÏÝÚ¿6ìKgp³5Š {\2¶Œl¶ßž¢ù˜"§µîüÆT@ÿ_„®åžX(<»Ì;³Ÿò­¹÷ÍZE*^ì\ÝÑçJ³®ÅO:òKt¦I”<û4"›U»%Œ‡AÑ-[Zþb„£é ‹mÐh…ŒCæí±fA‘Á\ÝUFÁ¿ ÁGpal#7ß 4ÿ¥2Æ Lf¹Žú7àên}ôuõæÉ½ÓsqÎõÏ«þì­Ô͇Pp9 qŠ.×lÛ§‚ßý ]ûèåÞó㌮щ“zÒ©6ª L££ €N ‚¶j°Â¸@ä€7 ºÉ É]\>“ãN¾þs[Ç/盎WÉ…©¡œöÎGý É-Ó'½-†Vº•±5¿dÞ½öÛ5ÃvžŠ[¶k±í•¬l¸6tÏÜÖß…­õþôÂ4û^4û¸äGÕM1EÚu—0È/0¥ ®ÌÈ*¡„>4UbÌH¢¯&> Š`ȧé¹<س»Ègú¦l³Kvs½’Ì`)þ7ý°þT€Ð)(Žök1#ʈ˜¼ÃXŒV_ž†Dôbõ°,Ñ@ {Â?"œú'Âkã@gTÃ8_«VfðO áîÛŸÛyømc20‡òh°A¸Fã‰#­…ê(¾«þà¤è›ÉôL^;ñ 6$iÍê-õÙˤtÁq]]Ω/DzƒG m…;´Ô«„×q×£ÊP×õW»ÑF"Úk$´ˆd¯ˆÎøŽ˜$6æ<ûuì$T.qLAƒDÄóÜ&Ï*ì 9âT Aŵ+hgú‚²ÒpXúŸ'aMvy Ï­#¾Ûþ—eñµ¹¬·T£î"þÝ(Þ7XdÍ3 –¼¾8K¢Êüþœ¥JœX«˜¨¿°m$%>¹¸»üO]s"lʨñ~:œOƒ^Lå0,+çHqsPEÜј³B¼a°Æ:FäTER;û~S“ÀdÆ&ÄŸõÏ~“Ì”ŸéßV¶¿K_$)“Zª`ލêI¢²a²Ê«87Q92{âlœ;ÝìB¥«NëQ. Ó-‚¢$}0Vv_V€<|Ép~öïçµ°?Ìc¹»>ñQ¯žìß Aª@áßï˜>2ñ>iZ²ü²Ð&ÿZR:³IØl%h?g[Ö76‘Ù­Wؘ¢‰ÖülX_R¼Êr*¬xúòcݽ ¨ëÏ€¶|´"SOúiï5·! €NFÎ…Ë@G²;W¶ç«´éJ©þËÌ*ù³Ø6gC¤½³ÓyÍ+é«ìIQc_Ö ·ç‰ÿ÷›oo+s†2[eêõBèÁa°üBnvc¨Dæ'a(åOŠ|î‡÷Ðï?ÖjŽm1q7mf,Àò#kFÇÚ)ÇQK°t_™ŠÙËÜúkþ;µo>‰µ˜]ö§à…mðp*«Õ즭Sƒ-úÚ‹¨n«­)MH=ŸºÔĦëÀlº1펙mÑ5¾¨³éàæ÷ÖòF _lÒˆæ3ZK®éÔ/ú•ªE ßà†ÏÄJÁ/FúŽ(Aôúj\þë—3T\Þ—„Ý“F`Y7Í©ð# @éÒP=:ÜÄñ¹¹*ÂNzò˜mæ“ ¾KYܹštÛù“%·š³ººC®pﳃè2¢Š&<^Ü#“´ ðž7¾ŒŒOOÄøíùÀsš# ðTš‰Ý‘33.^ÇÍ7dê|×NãƒúGvûnçø¤+˜îÝÝ®¾A+ñó^÷ø¤½oüáTfvVGÇÝž °ð¹•x¸†ÞXkµÔB6%w?HKϦs°»¥×Ï6’‡·úçß%~øàv¯v ±îÎvö±zÂ6dOë›ïc·ôAÚeÛ'™kéžµãwÔ‰i(f’ó7P±W”½®u ‰»–’;5œ>Ÿ9Ó+2™"sSnøŸ/t²ôRq(o{ ÛÁÜ=Ÿb3üa«o…¾)£>UÛeœ«§¥Ÿ,˜òà»­¤)…¥›Bv[È¢àkñV/ûÁÓN¯ÜÄ1ÌIø‚•Ýèœ32Y”‚uß( ‡HØ@ãÌ,ù ŸI¿Ph²ÁœÞ\w•±ë—EËɆú®[°ÑêU°}¹å~À £§ú,ÎuŽTˆë‰kbý¶åÝí¼Òø¤Í€é«Þ—à€WMÊodó¿L?¼(ñ¥ÂýV¡ãàvÅ’PÚ oøÐ^e)dAË—;„“ Ä%]i¿¢ì´kÒš1y _ î&ÁX] §¹ë³>/‰Í1\þŒìCŒ*ÂIXNˆ, ˜ï¤?¥ðdpþuÅ(Z… ¾jfŠ•»F~=ñ#ðÉ™¹â§¦T {,Áae:œ™…Ër'ëüIWUs´è^ß ÁŠ@5„d®gê²âWö‘¬Äo™^•íÏ.çZg,LÓ½!¬8ûenݳ¯[W`ëþB>¶_ Ѫî‡û/3ñ²ºkïWÀfö/â-<\½«ð°”Ÿ°Æ>.3gÛ›ì¶gò‹ÊB–é4›´[z¨†ñƒô9 ¬È<µ¹eIcöµ¦Ò\'ò‚*ß2Ÿ/ÍÅ>e%Þ,éìvý­³ðç\ÿ­»PÃ̆ã…_9ü–\ˆ4¬>§Q’øÉìœ]0IìèÎ:óu¶yøF#QT¸n1rÏ–p©›Ì› olwØ22&e'àñÑ7o¦w Eoø/õË~–Üóö(MC´øÌxœ›jhê8cçb)½@>1’ºC"uý(ê:Ë/¡8>5Jf‘††1¹h0;ŸW™ñ?Â2#¬eâ<Øò:”JfQÖNè¶R^ƒóRVÙmÕê4®Ê°¿wС7à^7¿LÇ:©já ¹¨Å#Ñ@†Õ¤)WMO•4ï>bº˜¡äw+!¿QÆŒöþ±¬=ØžÍÒ©©s8Kîš¼K§§²¾¡ÀŸáºMÆjZ™™r”V$—ÖÅúžl‡ÞF€cîÒÉÊIò„ë¯wÐæº‡ èŽY±ŒÐ€4‚!¸Ï‡“± §£Éàmr6-ÆPñO/×á ®üÜvÑdž ™)2¤ÎNšÍË"¼ü¯M‚ K‰xÄv;?wŒ/hèk”¡ÍqVýåÏl»|-qʲzE¦;ØX-:гy_E¿ëæ%†7i·dêpœº1ˆÙhföÆ€ 6‚;ˆj7Ö¼éfË ÄÁ‘¹M$C‡9#¤Ù®Ô4òöAΟ£ßz;%'´äÆd‚Eî R gG´–žz¸c˃&>©Ód²žØháºXùºlqö÷.Æ£zš^§ý¹K­Œ=æÕæAÏQNušB¨°ÍifÍoÓjiôŒoÄI 6ŒËªÔÙÛ/Ÿá¬w=¹I§“óV}1ž /@! —ïú£E —˜‚Z@kù›¶:z½b8,œç.®®guøoo4œÍ“{ðß5·ʨšŽÄø †UdÛßqkÓ LQ¬Dª¿Î’Á¯ˆtŽ¿þگɖˆÉ8«íD¾Œ—è‡þÙ¡ž“P-!pâ…s¿ÿ0y@íaâmÕ´?(°E“釺@±cæSиb-iÝ´y )úÅA¶ÜW8¡mœ6¼¹G€ƒ-|ØpÌæ‹ÓŒ¼ëá¢%yãÊFCWÁ`>mèÛ> 8…ùÏ©ÐÅŠWq[,-¥^œÎhÒ¹`;-f—¸(‡Z>Þlè¡sðÿN^½~Ùévê>$p•µ-lï’ið7` {Q…ž·Ž±à»ÔöÛãCõ~¬ùpuÁIáD LɦfK”=zW}°Ú”híðuK—ÿ:y–ü©%,A8þ±–`ÅÞ«öñÎKŒ>÷“jTp3ep €7^ çüþÑé6â‚M+ xD[½$¢Úu(¥ÁhcNéŒ4“ñèCNÒómt1¶w™…E]kÚ>º¿÷Sgÿ7RëÅ •N§“©YÆ*öORÒšì¬úv†B AÍw$ì<»ðâ¦a‹¶­?UKžLq¥Šùðf§RœŸ¸ ßg&-ïuî[þÔeZš: ͽ{ ³M¡³­ZÆK" îË$µQ]ß™( s¡”—”Þ¥ƒ9™x°Ý¶(GäbgxèÉäÚ$bX?Tj£¹ ‚Ͻž@Ÿ7© c.±Çv7"Å47úéáóçâ>Ç™¸éÅâJÈœ e…ÞÎÛ;žGõ¦áfå,Ÿ$4ò½qSêUú!«,.Dî´cÿ°á,EI¸$©„-¨”Šëµ“‹k@)¹æÍh†ƒÃõÀ!Ç} ì8O^w;tø`ªÝfc-ÌFˆ.ÕNììâKu à쇴¼÷LH”¦Ü&íž.(^÷X)Xhu[>-Tû°n<¹=]6YŸëÒpZXôz28:fuáRõ vöàP²kk¸ð†VÇUyIðsi&W¿#yg!¹ GyeÒ…0?Ì…ùlI¶/)vÚŸŠ‹à¼?•“ÀäM¨˜rƒn¶†ÿ³}÷ï„þ"V¹G^¢ì¥ÒTØŽãÁ(•†LCIøž)èÝ X¼Ë!~‡ð\*7Ry,\„¬åÊC{&Ð…èoÖ,‚:¿š P÷Ùw 4°ð+-—Ÿ‚yp½è§}0F¨ïÀpÊ|[•‘-‚©Ê]’©wìtfO¶“‡`êÀÍ\lY°‘w^|“à=c«+q3×` ,à=âfD±Ü®¹( §Fä[ænûÿ ^$GVGŠd*ys!v¿î%èÄ'’q@·’8p„3hFg°ÉítñÖ}qÑ?ïãfüãB:¥ÄFç/A©)¢¬·iOy¤*¿H¿­È¡ÈíÛÿˆ •uœMzòÈT-Á´ëòÕ™ü¶æ@› 4òô‡‚íÉÿÑïp|a¹ïoà½XÌxnl)¦¯'cœo»µ*Ûj>9{-‡v‘§µ,[mNLEž.¦r0L]ëS±Ù…ÁS„—+¦WY%ƒÝ–¨ÜÂfd©VÃS+2œ5½ÇÆ÷‹ÙÅÇ܉f),T„J»ûâäUçàø(WA€ú@Xq¤Ì¸3‚é–Ü4¼O~YU°z…Ò«—*Ì#Ç ¹ô˜Åw G [eW0;çÂŹ­¡¯ £”ݨŸŸìÀ…?,ÇಛiN“ñ€pÜÁfo‡×˜Èš¯U3ß‚­ý†Ôkˆz¡Î(àÙ^Òf>í_K÷ž þÁÌlò"L Ö;¸ºnÔõŒÖ’ºgCÚz£êN+¥ÀÔ¯7™¨'@‰ ¸ñ¤»B¤ê}ÝÚ6À]Ké‰ñ¼¹×°í°SÝf›o#¹µ€t,¤wO®•Ç^I6Îøõ]OÓâÊWWåÊžÿ£VQþ¬£,±ÊRK¨`”^Deu¥ÔõHj¤ñQL#¹Åpóõ_y¤:œmïd³Åê­¨.,_g ø†¶æF åzDÈ .ûSœ·Ôʰ*74Ôj}œ0²…†K•æ¢5B{ðzó¾¼LÓVÏ~ a/ÎzCðcN¬(¦ï ‹U!kAl,ÎÖ T? EÖQõ4_JáãPŠé»óPfƒü±Qü@„ºë• vM]CÆjii™ØXŽš*m’‘·­ sÒ\©l]ú`Ã:~ à K?‚Ï^k¢[Ý^tW|Ë¥-’ÓÇq1éF­ªì] Ø[ùô,Æ…C(ëÐAçG\êüh` ¡?‹Ò¬-ÙYŒóC@ ,¸–2‚K/Ò©ôpGQx8Y̯óätq~ޘߢŸA róazÙÍŸ(®Mؽ£—{Ï­Mèšâü¦Ã¿z¤F=öiྡྷïÿÍïƒ"ÝVÃ_E#Ï!޹1B# è²u ¸ýÑ`1g÷M±ü¸—kPðDˆUC©½ê¿^-®4•”mŒ"Ôòö¨X]½R‘š¢[᤭ׯ*FzŽdÞ'â‹£„V+²=¤;åP}ôF@/#uÒ-ú#8\Zn1¹ÞV§—¬ aFVEá[jéü‡¸IX2väØFâ –¾„â.òÇ.ë-ÀãÅu0úéØPJŒëÚ +¶¥þ…à,„q²üëaÇǘª3Þ…™q¶Ë×8uõ®=ìòl_œV=¸ã^à‡p5y§Â†èSÃi©ÚD¼YÜ`†c3·W·iìhj<}‡ª 8„Înà´Ñ~µ˜Í{§iO–Ü£˜+Ø•öÀõÖÉhƒøFlxg±N_^ÆÐùkqV÷Ä¢ŽŸ‹õ膗Ra9U5L3/P…§N`âËʆØá4æ47¥*5ÐPa‰ ésPZŽ×év!Kލ8‡£9D—!ú*)¸³‹MÏзl²³ââA\¼,×!/åjÅK>í®0¤«v¨ÙƒŠÊØ L¥Ï,æËšÉ¼¦’Ì»8Hg3ð?{ßÞ¶Ýç*-€øær!®Žþ,¹IG#ÅWªD7ÐD³bÔâQÒà€ÉíËÌaœ¦U1'Åö_œª]½ÿ™kYj’·½àÈÑCã^a ›@P.3 fÜPçp7 ò€H²>t×Ì…¨i/úãÄt‹áD6dÝ:.E®ŸŒ“úçàš* H+O<’XLhŽôž÷“¨gÚ‡Ö²m€¾ídg·wx,@ áÝõ°t5øù`ðû× ˆä¾4c©Ï^µíµ¾ÿ^tF¸/Ò‡¸£UNŒÈι`„,°{îGjûº4ZõoÎ~elOÖþ ûmª–BRAH½?Óuó­¬Q°ˆÎý®œˆÍÄuò¾à0°¥CñÂôX HI39Ú75e:pè-ˆ¯ø¿h¶•™åò(ĸGèˆ8¶:È/è¼<Ù¶f2 NÏ“·è×ø>ÜÏàgÆPd#|,ÓÑšï |Å*sñ OðlŸbèø ù/ñ[Ò'ÌíÐy¶³»·ƒNŸº4 ^øñÅh8»Lú£ëK!b[ÿN Ø^ìS‡ï[ä8Ô7 É£Fò'¾±S i(P*QÓZ¬ü ™K! '}pjí‹_,ê2&„hC#7T¹Ð ¤+Šfî1‡-'^²ò{ ”L&¹+¼yN}^$Ž×וߊhôôévòÐ"¢ÚØ –D€ðCþÑÐßæ,Ç¥—„ÑÃï¿ßüžD\£Üš ¬I³¡üõÒ›ÎÒË€×O’Ö÷áê¨×[tU`«×7Í#9ÄSñ£QPÞ‹pˆæ‚ƒ …Üïþl>üs³õÆô’*H1@©·â$ùqø:F~¾wØeЉEú‰êBJÌà‰-¸Úɽ”Î$»ša|ßðܰ,*C˜¬.)¹ƒ£¹Ë;”»„¾÷;ÇÀË1àCMËšã\Á0úkˆæ½é¥W×ó† Žm}Ñí´;Ýp®%i-H³©6 + ­7ó¡èO¢¿m´bΰzùÌͪ`¸'Õ®NÎ&FBŽ~Ùph@Vv ú©“ þi¬¿0MÜ2#_``ϤRÊÆÏ$Í•ÚÛiÚ_žiKŸ¸¾¸©ÄY"'îd¶ˆûAfNM`2ÇE³ëÉ|µ2==K°g 8ÉÌ×2NŒ9Žö# ¶b%Æè÷[tÕ×PõÔ—Xã(þD&'ï3Aà¯qàsÎöÊ=EíIôˆŸBÒO°:ÎòrW{DíÈ«8¡À©ø¼L )O•ã›wW^ÑØZáš.<Í\ßåïïÒ!Ê%I]j>ú· ×Ó (|‹Ñ‚’g>ó•ßù[dhWˆV+T<—@°0B¸*4n3BºÔ ¤äãn³Þ|RÎA¤½ 3S1°eo›Ÿ2z¨à …G0Mßö@÷˜›r ¼4úïi>­3ÌN©ƒ¢Ä¯›¬ûõ¾ý³™§íŽçe”y›¦×3½¾5ÿ£4 ×ú@Å;âà$[²+íréÏÀWR†ÞA¥K”ÈÄUÙ=•rprÔÙ…´»u]ãlB‹…FßpÏ ÐUüÚàAϱJx7h%éQÑ5å¨ñ}¯¦'b…É“¤ÙzÔ°z…ˆ‰‹OްñþK1$¤ÕËàæóo;†—LŠ¥5z}Ãñ»þhxÖ•Û–‰Ÿ4 ­ªIò˜}•3ˆ|´Ó5ë5bÝvê…Dæ×ˆÑÍL‹Û„½ƒŸÛû{»½“ãç=¬·½zrÕùȲñþìÑÆ†ƒ/žwDf>õ¹5 Ä#uÁy·<j½ñ>ÝØØHÖíXŒ3_AW‚¢Ù"ƒŽYxWóJáÞmbë%+“ÓµÜ4—ËËd¶˜N'ýyjüŠ“‡RØ¢crÆñäû6w_.‰ã}eˆO"QeÖ,;;êìwv޳@–qªe“üi3)ÊgËGϦUÌä”i‹qä½Óym [^€ñžŒ)ã Ðc²£Ô;5ï-é&Ø~kŠxêäÂÓ9x¡áÅé?A­.ƒ¦$mÔ²Ï<å–€+áÑ#i¢ÿ²¬ùJxm¥Œú‚™íŒSûqößæÀб Ytþ2%Ö•—áþÓ0ÇU˜Ü,Ⱦÿ-ö¸Ò¥iù¦eeÛ˯Ž&7 »Z•Ö´B.3?™”bùШVÓå.<Æ6þaqÆÖçJµÆ{åliE®êö¸ÊÛâ)WÏÞüMÞî‚hïâ9ì¼Þ… E Gaa\£ãçz_Ðûtã}‹i¢ßÖ£]ÿé°Áôfˆ…í;—+Ã$ð…õ¤Ã€?SWoȡц“k(}jK¯§é`8#Q}^¸’gµÓt~“¦c˜²cpsÔ±;ìæs!DÂ`årª×ø$ã Ëb¤?íÂZTÒ*Ff âV¿36¿xp:$§Uñd{Ü=éÓ¥P‚ÿ† ¯Fø}.þT'XéW‚%@øïN°>é¹ft_Ïuü\‹s¬Ïu MiÇf$©èu¨…9ä*‚ A'ÔÉʶJx¿ñYð¾É0ß·L'—$=_رü´'ðVuíŸU^­l×][ËWá÷3 ¿Îu²¤ »4Vp./em–eWáSüz›BØZ÷·Ãk×P8c²©<ð3”÷›Ë«}¶ÙB‘žEÓÆk|]ê6nÙ2»Wʼnä»j·ãhbæYÇœö3Ã=ó]Qx¸¬xüWµ£_+9}Q°¨óí0¹S¥ÝzVàºöÕ;í«wZÂòõNÚ2ﳬ¡l0 Ø‹ê^õ¸5)31Fóa#×>x»£g¦¹)Åò¬Œeɱα×@«JDµ¬èöT :ßa®LWz‰¬³Jü|P„Jý£Ð¸½çûíGWR©*>5Õ!KOiö>Ÿe­à™© Ö6µaù£ñ±¢Ï©LS¤È!&„Î þé¿f)dÏ4Z ÈÇ*{Ìx0êÏ´wÇq:Ùì1®ÛdΜ%§)°ô`$ïOÓ$CÞÄÚ|‚!‡Ó+ð\éËÐVäq¥«È¶3ù P*cËo ™3DC9Óä¾àrdB*üçh«v6!üZÓýûÀÞà0Nú:•CvZe_R}=Ášk&Ýq÷¤D#/›zPܬlZ çD ³¨4 RŸ¦6œ%#!S‰§ý1ìL–Ȩ̈ÓIÜ;æø2­/F#ÈqfR1's+ÌÀ³¤:y‡E úƒAz-–‰6ÇåS–¨Ãã&´†K‹õ4ÉPÍ2Å+¸—@´ÑHâÒLföÂU!;˶‰)‹–u÷´hyDü¾¡"þ vd$ØŒ1mˆHœãeK\ ¥a[·©¨*"eeëû Y#ZŸÄIWZíf«§bnƒŠyÔ‹+Y8ÃFP¯Ì5/ÊýÞÉðŸû<žyÙ¾v¦Ÿ‡Î-‘“·N¨äÐÓt¶©¸qCárÕÿ9¢cÈe èÀB€±ÿ.Åì¸ßÀéüóÕÕà2du "z‡Pcª \Eiáô<+ÖK¯DÅèF@¨‰û S\H*Ü" [ʽ‚?°â˜,qìÑÆçÌw.2¼-K:µ´¾ÿ¾¬9³w ǵ`¹¨¯¥‚Î#ˆp[<ο˶ÝèðQ¦Y4d’h³ex¥ª÷`\ÿŸ‘›dµçÚêÊ«-Z•ÆõqÈE©»\î´¦â7öTLþÝúþ¡’‘¸Š51d™z²ð4OásGíär¸œÿŠNª2z…^ ZýQÆÚêäå‹Êˆe®{ß c%6Y=•ZZW`k]Æ~ªƒ‰·ˆ^â²fÏqy¼–TÏ;0ðWÂ’Õå²Y5“T6z± ¿œ_á 6·ä^ nÆ·t‡72fÁ«É»4'_E¦²C×ÝC2©T/@{欰™&tˆ'„5ÂÅó Ù;w{‚ì h^«¡’*3"1ÕÜëdIÁdk5Y£:<³içüïz~P²A§³k™¥ÿZ@ù„HøÛŒ•¬ÐM]èåRõ"î¸[’•"ª‚½t=_Œ®F¥«dÊÈe½áœ|I 6J9"Ê=wêµ.¹W+Ø©r–Z¥1>­Ð—®¬¹ÊEG¾0liÏ—°ÎŠ ÂÈÎn‚%áF »ÉaåáåðSL¥$ëØr%XdÁ`Kv]•Pð’¼t?QSÑ è¤ë,;³svÝ9gاƒýãß^wÍü-£Òƒ¹Núãj2Y·ˆ2U§óÖyÏ{ç£þÅŒtHˆlQ‡" 4•”Eî¡)¥ ?ha€$¶ÚîþsÊ;T eP<{;Æi`e]‘dâ{Q`‚%çÀ/>Ǹƒ9)à .péƒlÛó½_;»”'S¸¨Š¤Ôpx„Ë0H”³0ot’?"Aæ‹$uþ¤GŒD9•—ŸCåÁ³t $ëñ… 'ÇÏ×Yi FÓ @:N¡Pò‡yZ›ø‰‘êF „ª)¾S^s†>•£6òQz%þ3¹îÍæ@âÑ9@í{¿¸Œîªlèg…°Ïâ!ŸXJ2íOeÍ P~ØÝNqh:0„˜B1fTÊ긚¬I£x V”› nºQ°èñTë_ùù»+–lÊÒ AÁåuwèÕ!·ÙþÀÞ±Ln€/ ªìµæswûrš¦Kïwº±ü†·Ên8PµÉbÊL~E¨ÐrQ¡ ÎWˆÍ/KìŠ_ÞÅÜQh0_î’B‡=ÅÚ.qS-sI1/`Iýiºü–Ιl-CÒ?cN¼røÚ<×Ô*M××b[¿G‡{ts~;žÜŒ¡¼2zï]O„¤¥<úqcÊ$¼ÙdO^¶7V…lÁÉ‹ún-ç!PéúT`ó{H”¤Ù¿¤Ò‹bKo àqˆ¯¾ ¼z” ` húq èÂk-é2½ ÒI}Àr(è(??5›¯ítÃYm1Ö&7Öh+ÖlJb ét͸š¼'¸¯F9º-M‘P ·7MfékŸ›Ô舖óé¾Uú^ü[+C•I’6û½Ù|³š;£„Q=^Otß«É4•Gm“žÀizÕÇ]Ô¶\¯Và Väp`P]8‘HbìÅýäj1š×k-Oälá±tÒÆy80ÝxSÞNrþ½öÇ…¸-)øË#âCQÖ+žä¯Äó î'Ú2/¶ D¼õ÷§ç2·°üƒ£D Ô bó釤.X¨ÿ°Áíf63XÆE ».Þçíë‘QU* ó.¥.-µøW™ÂÖ‹phŰ©µœQx_‹K 7Õäœ$„/ž †%3Ãìæ÷pp³¸ æ¥-ªn ›|2ô-$Æ×üKŠº”¼!ZÊZ\rò};˜*˜Á°c;¶™¿c›oJ¸¡0L^1Cýòn_Ècþ.Òß•‡ôr„ô?+¤›Kêþþéf +¾ÏÇŠï—¡˜e˜[M,—ZŒWKÐüS¸æCôa6×, $ykf…£ê³ÓKÒIäkHüÀB"‹C—ê°ÏM4þš¬û£/u/¥{Š1ÚþÝâ¬ú^¹,¸¤Aòßø*Ê©47òIh3WUÅeG‡ã4¹ŽFà]3[œÎæ¨89KΧ“+£õç+Е´´®$´uIõ78Ì_Of³áéH"sXò>¢Š–·/<Àp¡>‹Š Ú«Å“­d©³›âïû÷Ž?~Uw`>|³–„=룒£} ‚NW£[õè.§^]Kf×é`(:úo¥UÝÏÔ²¯I¾âµVÉ¿BL&¾T½Átt¨yËWŠ‹jX“·e&u-U.=w8¿3u–Üü;ÁÒèÏ? Hö¾¥|†!uŽÞ&™h6ÁI²Ê~¿–ØCSpYðY…¥XÇ8º˜Ùc´!@RÉñ™üçß™¥µÊ/mÃ[ýºÐsYy%«B«RÓ ^Œ e,›ßÜï|À18Á:Nm”“‚—•6üàºQ#½ï@QÞ A—åbÛä-ëÛ°„Ä·àQÞai‚A¶f12c&á݇ª:éµòŽ_lÕbM[iqsI²RÅI¸’Ò¯YÔ”µnUœ•v*—P²îÖ•wªù©vª´ÿ~Üœzÿ•1`¨|{¡6;×’Ï^6Klµ¯Ù-°ÓçÁ¬7+Ìzã{£ÔÓ4Ü8 bCY^0k/C¢¸ ÒPË·G¯–ÐnT%´Eµ´­ ¥4Õ;—CÕ––5²l·ùd0ËNù¥À?-ÿfþ!­Š¨ãs”é™óïcó̯ƾZ­“sœ¡ªd+öN®4’®·’ûÉw^­eq;$ù†ï–´k|xWÞ¬hröß‚˜‘•€J‰%¯ES'Ý¿J"©›JE׈ y%Ò@%:øL–a˜}¡!›ž/3KßO¸ ³Xœ§¥lb—ˆïíA .­œ1ûÜû¤dÐNnô%£³ú÷ñËå´‡ÿ>Þs+%Œõ6+!·ƒ”–5÷ÞLrc]n/"æÑjµA‘Äè·­*`û²s1×{¦Ð´*zS4'>w[Kõœ¢±ÂÁ"Þ´UŒL7¹æ§u“«è•¬o‡âϺø²®Ì†ÖÜâõy á-&( ÊQ&¨Zoø6¸e»Ù*{‰UÈø™‚ Ö³£5ÊÇ×äO¬Z¸Ælqa-Ÿ–®EÕ®Ù¾+"ReÏØêcI¾+/©5ƒä!·"ÿ4É›Uì"ÜœÍYÜœ³9”=šœ'‡Ýä4ôÅcí–‡AdÇ:ze/Ô¿xDÆ*b\¾”ˆ *æÇ2OEüoÀâ²ê_–£]K\~¶¬±Z/7ôç7‹Wx[7xÇ÷Û÷’bNb¡ˆ¦ïUN/ÿè¯oP´êsvÊÇæÃ[Ê Ó|X$-ÌetK ƒœô-'†ÉÑm®BcG蕟Rìrxqi³ˆ¯&ÓˆJ^Bd/\VÉ!ŸY\Ö@UÅ¿EªÜ-«Ù¢øxcÊ–TyèÔØŠ¼jÆ_µ´ºþ¶iÙmÅNQ"T%x ÈS,xÊ!O±ð©ò$g%FÊ[ 9·‡ZN½?Ê%9 Kª×A‹dȧíU†üB>äŒpžK<Ý\ú¥sÇ}ºòyˆÇ­ºB –!ë\f)â¾+ËD¸þªî¾‰¶¸>yõ·jE÷´[pV\ù•¼ ÇÙU§Þü¢ìÛ%"Vx«—S*É“f9V– åņÂT£’J °ŽR&ïòyùE8Wx­´rœßä‚4_áù"²Æ%&ÝÙí=Û?Üù©w´÷ެyšB~RŸ¥)2¾ýÙ,Âc!!Hcýߤ²€|ýª}ô“øêæòWÉ}»œÿ W*ÁB 8 Ñc2òÉôÌ]°Tέ¼S“RÅ `Úõ£¡£Éùù,«Ç-ž f*~ –¡´%.qóv;ÏN^@Ýò–y¶¸ºúÐàè©b~ì±Ø úLý½¼¶XEýä }t´÷â ã ‹:2ý‚üfýél0^Ïaæ‹Áuïd,³r‹™èTªÉŽóöâôz ÆòÝÅ)V5èÏR€®h½A;™ÀG=x‹¯RN7N¾ týÌ„è99¯[4äËÆ n¼Ívê]“j‡%Êh¾jÿ*· x}¸wpœÜO¤=«]à÷š«ÆóÑ€ÕÊý£—]—´†¸'¶,aö¹¢ÞIó!‰Á3&ï·ØUA!.ÒH4xü:s©PcËÅ…Vov9<ÑÌ«Fb}¹]ÙßÝ–@I²nj¹á­±¥·Þ2ÅV]>C‹hi–:d6%1†óÿ• %È_ òW‚ü• /Ky8“)ó¯GCéûÚu‚ß ¼“?y’@º'ñW˘‰sð™»<Œ³†èV6<|þü¨s|øœ¼]3´¸qK;äá¦ùƒ™láiS~(@Ú*©ruD!®Z©º(öÅÄÎWj-@öiϺ e{ÓÝño•QEÛØ¥[s±qIá”Ff|–õ¡xÝ2ï Ñ‘ ï<ý½^¶ñDvá5ÌmGöX°[¤&«Îg‰-D»É»tÚ χâ²-ô1MÅmç¾Ýªa=×˾¸‰'Óѹh]§Í±Òi¢'ö²}´Ó=„R£0§ õ±)-›ފ÷:êXàhÖ2ÏåU·#þùgR÷ç¬|¾×=:œ”Ê„oN~B=§ª“N/R+•K¹÷4i}ÿ}ÆðVtÜ=‰;ì€)!{:™ê­ßVeŸÕ"ˬê™çO1–š“,V–CiK”us1­;,Š©Œ¯çSÙ9‘o2ª7™Ú/ ¹h¹R 7’On7oàŠRÞÉ“]%•aÉ*ß¾IbIÿâÙ–Â-óÓäQCàÐÆûóó5ãÜŽƒkÞï7Ò£ÕàÏ‚ý“v²hùô5)ðå b™ fªÿ.³ç1d„šÕ“ñ|8^ôGâÆ›L…¤v¦ Òµø¬?ï‹›áZ ŸŽÔÁ ŽSE84tÝõþYOÇÅ*Üö^ ÝŸý÷kHaà¢oïödIâÎ/HJdol±o¯WYßû®©| äA£0MãU[V%ðžƒÛoV7ÓV»i°&¤sžÅzSwGjiGiôÉQG1Œ½ý½W{ǩƺæÉÍe ⣖ÜGÃ+Yå~€TzïÒ[‘b’üy¯{,\px/öŽÎQBcŒÛÝ'¯„Pyä’¾8­% àÚ=fØŠþôbq%¿ÙšZhʞؙ镽ËZÜÁ÷IF¥5²ƒÞû1™ÆVþ.ÄæÀ?:ÁR:§éÅpÜÈÕ4·“¥FpH{nH´ë1RÀÒò{ó៛­7òTi(©…MÀw°RY“ N+P°FK‚m‘’RÉ÷¡ü§’âd|ÐKwº‚ ×ü«öñÎËF¤Nü]‡C]ãtAý5˜d|Ž ¹5B"‰ÖydI¥ø§æ˜)ß­I­' ’;|ìduÆ¢+©?‰zŠEêKð¬šêŒõ£]à"9ã/‹8w?óÏkˆQˆp÷‡Û2 ¼<1zL9‹«<Ù¿érçÂ:¯(¿«2“W!‡)­(¥-¸º Ê\‹ù947]š]G––é2ª„à¸1ýc#ó¸QëÙcͧ,.+Q°¦%61óˆ=rö˜î)ü!½õ@É#À‰Šgi²MÿPˆÉsZ9ùZ–ÜV,ãd’˜óÞ*Õó& #7,gs1Yø —În­]‰†òÖšQNÌÏW¬®‚ÕÊ׬ ^fÄ®ä‹[£…Brr¹"-Ï«×UÌð݆•™ ft>qÕÒÓ(Àá©ØO7W’G+¡™¥4C.úc!ïџ͇Èá-ñ´59Ôc"C Á„r—` e1ÄZ¢Ä3Ö†î! a]Owð^*딦ƒó—BÒ9ïÏæ½óÉô¦?•ú¼ªïÁ?…<Šæ‘h&2k¬“¿ƒL„ ןâOSg_mk»®_â¾4Z)ڃ谹EžÁ_Ò¡WÌÖO9!©8Ävð çtàÔLñƒ\ådu +ΊŽ7|ó6”ª3˜þÓmt@ØÝ{.Ž"k&ã … Íò¼¯åß÷aA5ºì`Ñ÷ï#üüðý1x‚ÚœMâëqšž¥g’×ýù<Žgµ™`Áˆým½ÿgãÍͧßâ‡éûË>¸’bqú9x ×j“yúXµlýZöGÀaôõ,™‰žÕ5ãb8î\ภºê¿^-®Ä'鵜·ãz´Ó>è½îvžïýÚ;:nïüW$p©b]µ#˜™@k½¡Kód "‘uP6,7þ,4²Ò$<^ì²™ö=È\ –D×°LŒA²¬5gþ1T”„QÒ¥×":ÖÁÒÿîÍ–’'ªô*D ¾Û–ìV°]üûæëË'¡+/5³x‘Õì&Àk ÙªÝ\ŠS‘ÔÑ4¦n$¸8Ö×icã‘ X‰ ¼W]3bñ…Îê8HM,ïØö©n Ì á'‘›¶7c›Ñë·u{„Öé˜r”$¨>”ÁpgMŸ%óòÍ–å 2{¯™Ylî‰ÿRÒ8r¨lÇÄÙC/åÉ_.Ó±8Xs†^O'qºÒ3È—’ªæ0HÐp1»È'f4!·²6ëz[w@³ lx{_óɉÓ#Nl拎ØçÁšršÔ‹¼ç´4ý¨vYÞ¨v‹Ÿð¹„ô’ÛjKbŸåïœ@ò5ƒ+¤ÛÔ´¶J?ü¨ñB€Nô,à'˜léT«}Tâ¨-5úȈªõ$J$yu(BKÜÄ4n†sÁ¡Á†Ò…¿bWàî=6ÔçzÄDûì´÷÷_vO^¼L|,Îür:Y\\jü¡ÊþÔìÍô`Õ§‚£{«…þòèp÷±÷à•÷@ˆÁCpøøå°»Û{vxr°Ûîþæ¾ÎxÕ9Ü=ž¸vöº;áo»‡ûûáfš';™ó‰¼ÿG:$7óù¥ Åk½9º¬¹ÑKlÌ<ƒiqÏŸ‰ó{û¦wÐŽ¾êí=¶„øT\æoÓ¹ Ÿ‚¢42WôzÿähÏíòÕÞóôõá‘÷ty‡ٱ١{{Ä¡~ç×öÎñJçˆ=>V÷³ºü©n9´š;¡š.í½zÕ"t‰›õœtº¿…»À=°ð/¿F쑞]Ñ%q*ñ^ï‹`ùoæóeö~w-T ºëüzÜmïw®6°Ïû2ÄycX0Ý•½á»À_qÞ͈ú¢°GCþþ¨v‡½¢ð®³$œ ÛÌPànžš:W]³8ú©süØC;ï:Œ´}çCŸ‰|ux°ÓqãY·<ÈâQü ÕmV€'Êçˆôf—CÊGEÑ$Dƒ*%ø™"S gšº1à }´l²e@Ú`¦wŸø&‘À#XeQjg_ÜI—þ"ÄâÎp†ò÷½Óá|–ÎëuDf¥U!¶ 0êhMž—Æ€PÍZËÁƒeÖ}G¹H ¿ídÍ6êÐqGï’^û¯jíôYç †‡äÿ-4xâ§`¤Eº¸Ý½{ÇŸÇõð¿x~ A#Rew_þ:^ ç«=!Ȳذ_^îwŽ^·ášøR4»îÒÏ $!¡H!ïKÑ Æ¶}>ò‘x°ç‹¥¹] ÕöS¼ Þ™í¢oÚ‹,æÏþtχ~ÿN`ñº{øÚ ðIÜé³tàYZ¹´¢’ yQ‘. @‘~ý§{ )iõO³Xb1š+0ð³rçô1¦'za£ï3¦ú¸³ ‡ÀlÞPžþ«TöëëjåOe˜d@ÍèJp£€£óD“ ÄIjš|¯‘hþÕðf+ùV' 6 =RR`”[(óÈùYõk È$°Ò<|—ˆùô±« o\Õ'¸– Õ´c!¬uÙ‰ð/Ä<è‹/C¼0X½¸‘!ÒèAZF¯æ—áhâüAl³nûàE‡í6òFô뼉S¹£êýbßY~ëÆêΡE[˜%u 3r×$÷ü«ÁÀÈ+ Q°&$¿o6ß kò#²°8³þv´ÉmJëÆØqAIŒˆ Îå”♩ÛìI4•–aj˜ñÈQº„ýÐÐyQlK½lÇig"Àúˆ67®qÜ„¼¹†¯åpr<˜P³áØíßG ý²”ÿ rô`ñô)ÑÈU¸°?ßê¾Á>îøÒ;‚P¼ŸünëucÊoÔÿç¯9íÛþ[Á ÜžXä }ê[Ê"κƒ0–îÝÆ]êú–•aŒj:ÊЮH­{Òzxµ<ôU5.6zv`¼T‹kÊýKZLn…—‡0"ÅB¿n!ºµàcÜun*—ÓÆšõrÀà V»rJÿÆ#KØKÊ–bß 20×Àâ&‡ ‰üd¡_È\sxü²ÓÝiuR§­g:2âÙÈá¬à‹äGì챜¤¿¾peAÏÇígûª•p«Ô*Îá2¡SÒ†êÀù7´C3£l 7Ïúýi?¬ä¦?ƒ Þzòú¥fªôÁ@d[1”˪Üá·ç³¢ç2âz‹¿ÇD—ëë–!°[,ø”õž„RV<±&nÙ켂€Ýé IVY²/,(B® —n¾Q畾ý'ÿÙqÕì¤ÞÑÉ6W€dÑ txu9‹Ã”W¸ÄVžŸºŽÃéO›á£½Ôä!*œ§.ža°o®Å'Ãþ¨÷¯Åp¾å¸&_õgomƵžÉ•¬k|B>w Ü,Mäгß9F°¦¥ÛnySÓ¿ŽçÎIÖ’—ãA÷­†{*‘v™°JµEÑIÿÁNÜf4³U…¸pÂxXœ?Ôèæen0µir$'ÇÕ}%­íDä–{ïË+”ÝFC,¤ÉPgGµFUïnîrQ¨d{eçÁ³‰œlM"''L³T:ÖÄæ{ ²Rd1e㇦ž•ˆå¼/œÉ¥®%tR²årVSðNó9Mí%Þò³3ää¨SH£# ” Ø”N]àÍä¿dçZÎzד›t:9oÕ¡]$þ—/éJFÇoåeZvÎâÃ×vêúöäxÜ«¤`)ì¹Ú„ZîLL¼*Žï„Û®8Õˆ{°5e­’#Ñ!š&?*‡Úó!G°ËçEW¥2š„‡'øNìØû´Èʪ|\1ò Ç3F8͖α›Ë»D=ÉÝ‘%g(ޝ¡OîÉ­NçköŸ37DnSHšÓÉ•|2í/ÒÞtxq z] „|‚ª.ëü²¸3LeÖ‹D§¾E8Ç=üb+ R¦„:T0Ý fÊ>ƒ)'ø©W˜Oè½øåEP:ùêk&èF³ô ä´¹y™…ò”–!ãÍ'‰&Óá\&ôW$úsVZܽ<ÙöVÛp"c¼wž"3Ù ^Æž•3Æ?¨ù8ã#vúhO~L~H'jHМB ðð|˜Î’þè uy5`ÔÑÈ׃y¶ä¢˜žèg@[ã4Ä¥nGÁœÙrc c½9OLÊk}àéÄtW[ä&ÑC9?¥·Pó¤Éèß-<ñSDG•R³i[*¦ ׫ ìnX¯§$Q06:ÆFî£Q¾ÐE>%©5¼‹§Nü1û£Ñd/1“ïd<ú€×¨Á¬Ö÷šõu»QéÂ%t) Æ3½%'mO¹³K Ý?Õoª[ÂÞ a2 O¾žÐ½°Ûi#7WSNuÙ:~Dì¿„3Pô$×–5`Ä„åÃ÷÷ºá¢3ù"!’…dO‰jùN4§³‡n‰šH"nJŽa„@§W|U¶/ªçkä%Ò~„tÈ­¶¿w|¼ß.öÚ¶†šó¸Q¨Ò¯W!ðnóJºCÝpqÄ'ªÄNFë9¬RWnXí`Å”—>F”ÎXWB#·aÕQŽic{i-™Õ}¯ ód-a®^"0WQDr7“UÍÚQ£ä ¿3¢­¥YÖ>¢¶,]5eð Íê‡×8w¢¥õÄ᫚|ó?kV›L£ÛÒ*Sî‚ã´´Æ¿tÒÖ• êVT® T«¨íŽfI^?:4Ý£`K÷_€¥,¤7wB°›eß!šÈ3 giÛ©bÛ~‘xž§nÝ4Ùlr–B²ã†«‡k5tË´½I#cFí5,N±È›9g »²>«¶SÏuÕ¾hdæxSXI–ŠN»Ná58餆Úbp­¨7NÆõâuÇÕž·=_NX¢KwÑ kJ¸¹*5ìÒv”hA?h&D+ â ä3o•E:þµ¸ÍÏ™jƒ­Æ£­¬ú€•…Àˆð=ÜeÅÅîÔ*”û£ŒòX¢vQõq!›?U¢dT¶¡lMá²ME âän¨ÓÈè´Z5(Se'‡?ZiÙ£²+©PP‰.Çœà$VÈ8ZÆûh%7y^á˜x‚îÄ ƒÙXA˜å+Å”™]«Ü¦Fžf¼úaìùFn’Ì×+`W[»ZÚÇÒEreU+§ø•È}%rq"WÆÉ²U€¼e`f!RG7Àéë¶ÈWXnµäŽÂüÖêëVv’\Fˆ&¸P©À®­Ð»º »«­®«zÃîŒBF¹–9Ï4…6D¿F^šcJÔ™<}5WÚL"Ÿe+ ˆûÊ ûGV¼"j æWU‡à±Òé}û_ß‚;ÖNÿs,] ”*¥)M³UÉf¦ÈÓ>ø }5y—öNûƒ·†‘µeZ'FyRU™ãÓ£48×2tov9™Î   R.蠞]Î]J º7¨¢1·1áˆrüâqž;]õýç.'TÌ¥tiÆë3ëIƒ+!‡°*˜Åݪób\Ê<ˆ±ÕÖWn'‰q¢­8zYf™Œñ#_jëM¹ÚûÂB•þ¨­¶òø’rEÞ¡-D$jY![ EÕ*µÓ5-f+”"OÇUb…šÄÉ3I=Èþ g•+‡Jù %ÊcX=bÅ=ü$q%âí«¯ÿ:%py#GẌvsÜç†üh [!{Xã9Jž‘\‘1ç£>¹ž¯†ÿö0ƒZ<‚ÓOp ‰/U½´±ªŸ£<üÁM~-!Jî{ÀÍ!gþLy‰0  í Ók–² øÓ´Ý€ œ˜mÌ‹«¾o6È ÌpCG3³2>ŠÚ ŒÎ_¡î.æZÒ*°×°À(æ!VF­ðùB6¿–±ß é’{®Ö’ºýAó«!nª»W,S!uÃØ‚²³_£5£cÂGd퇅Қ°»TqPì{ëY0Ë㙔߅Ÿ<˜Â’&f¦ÅO¨ÙúN(¼Év]µSÑôï0ï½ÌsæÙ ©EqO1»hÃZÆ]Ú°S}¿o° ¼'8D¹ªe‰UŠeµˆ«»åŽ €Ùûtº‡n襚šefÕá".+9 =ððܱܩËx‡Ã{¢Tì¬Ìÿ¸—XÜ?ܳ´?ƒLÓ-ÒÙ<=Ët@qóYˆo”;„Ìò£²l©Ÿžj9»¥ýæ“Éh2¾`ß©²¥=ÜиïBüME$Bý&óžËÅØÔAàr ŒŸCÆ&Ψ\NºÛùÞÎIïUû×FrªbgUØ :-щj 0ô&gXÐÌW“¨ŽV&è稊µ¨âÕ嵐ݛôÒ#CRÂ1nKµ§%ý¸Ë’n¼¤Ã“¸+q*O''qd*=™FßQLq©‚«³ š (Á6“„CËÇšqùEqä ™iˆç·¿9‚‰ blV†m…lKp‰ž"‡m†ø/t²ÓÊ=êh,~Æ¡£qÜŽw:´žµ•f/.kÚGÔœ\4ækIc u0x3ú¸¬æpðƒÁ†@¹ªY7uUÏà¼Oˆ‹Ó_‡DšîKµ$ŠV[÷Rsjè5*†³I§óóiÿ*]"yƒ¼"á¿ümmëÕ«›1½ÿ™\÷ÎfÔÏX©Oçùû€Qܸû‡;‚%~DÏlꆲ„íN!‘ËIãùp”ܤ²y"ó¯¾F+˜ž¥:Ìs¦±YëGz»wø¼.8xyoÇÄ÷£½ÄÂÆ°¾n¬Ž^Ôí§Æ”„dÀ"OY ©K[LXÔ!¹N{v© I(c„ÍÈ7®>Q—€ó‹Hk~_Ld[>ãTžö9VYd—©f)ëÈUÚ`*\~¬1$WŸM‡àÁah˜¤.BÖ,¦Ót,h¸œTdç¤ÛDDjÛó辊Öîv ŸVöX‚mäRÌð¡>D¦±Ñq#NÎIi!©áÊ:°P·»S'„OR<†òðP"ÔhXAúóœü*ôUà\æ¨[Ÿ^ÁUç?F+#ýMJ‚ó½Ó>F¶0©7“'OÅ"º ql"û× íW͆@jû³|¹I¾ÄÿnfïüÜ ºëa½ºJ3Ù’z]M¼Ž?1çvŠÿèWR}#]î»} Ù¨·?ZKðïEÐú l}p&[L‚Öíý}3 hò™ MÚgX)i‡…f§Àjõ§âºT{€,W¯š½^³çèôCùÓXOx¼áx2A…†góåt;›çMÏ&ƒÄÍ ³$Œÿ¸E§”¡zñ6&GYL;ŸìŽ™Ù*-ÌÉÁÉ‘lÛݰ¿âÌ©«AnƒQÒ€I73’¾oŠƒlŸõ®Bô=M{MÌeªw ËÊhÖƒ;óR„ä£?ÌK x;oÈÛæE:OÐ/®Èø äÝp²˜%Rï‹Ëèz1O†˜° ¨’º‡ ùÆ­Ê3θófsÃkd/ë±9TwJpV_†×iúVJ_Ž#›u"yÕþu-¹K ãÚ˜ã“cãH3Œ‹¾¿púT‰ cNx¤žŒ¤WÒì°˜¥¨9V­££5yÝ1Әߎ¨ósNC¿¸¼x¦b»†Ê}F³…ÎIìèÓ׻íãNÏu•RÎ4Çé yFTÂÀ¹Æãš×x¯ÈUe™W/Òùbp&=ƒ#‹´F“ý€Iʶò4­8cãa|Ì%«÷쫱¼’_,GÑÛ·ÿ<Èò¡¡”C3ä¡Â1ßr­°Šñg²sÄ «yQ1—é4Å€-$QŠA#Óqòßét’ž©4=jxy­F ÷T›böuŠYDp¥¬›zn²ækyƒ*¦˜#W0ÊSœ!w3ÚE3ÓJíª/W±a#˜ïPO¶°—¢@ýh%;}Ïi‡ø]k®FM•¦`ÿ3tç®ÃŠf†:ÆcgÑt/»–Rµ1¤éør8ƒìR}Y@älq=“<g‘­šéÚqDùßMÍZ·NÍ` Å8Bòb#^ Ñäƒ@ùÓö2}Àü82Þ‰,;ø-Èý‹±ÀÅè_ÜhS˜þÅ»ø‹Ð?ë¹á­5M xr˜eÇ6‘…Ö¯‡Ýè¦ÿØÔ¢NL3G¬1Õä »\*B8«%ìl5‚møÜ±e{?·÷÷v{'ÇÏ{ÒFj§n,¨ö Ð ^ojj˜ö[„·0[ªÃ+2O›Ð&B¦3eº×Û÷A®ý—ù+q ¨W€t?PN™¬ç2ÕúÎ~[ˆà¨QÃ*´oHÚs11Eüo42)Ô¡´çšN,+?I+8º5nH¯F™S´=áÓäfÿJ‘†´•“qšÔgÃñ E ºà7țΪ<“Œ·ué‚ãg%m}ÿp+ÑÇR™BH妾?DkRO ˜ÂD¡íx$’ôoh Èúeåúêä;1€é·¡W¬íþØþ$È|ŽõtO·nlrX?#(>“['»xCËG¤ 3Îy€P“OˆâK@ìÙðbœ¤ïç÷c<ŸH`šúÚÒ:?Ôý+ñá[?ªz?\‰¸ ÌY¨ß4ñÍõŠÆ“…‡€5:0AvÿDÖ[Ôƒ%ß1)ñY–i®áð50ÿµ-ŸrLoîæé9æÁ ½ž+Q N°Î×b8a{ž×‚0 ˜2i¾êÔÔ0yò!]ì¥7êmà™µÓª3E/±k¦ÉÏ™°^z9ɉUæ%¹¨wþ®RÛ¸ñFÒzv2˜ ß$ÒŹŸ`½5õ ù&âN«ìiqÙÔ/1ºà’ï¬`ÉÍ7ɺ¿|ÏE·Êl¤©óqRˆS(ýM }=…u–…Kë ÌÛr._cùm/±ã.Yn__«ÂCßÀ M³Š¯[ÝêôHdošþÞ´–=ŽÍDZà¼[dWš•O[Ñýhf¨ïôªóƒe¥ÕÏMòªeP\KíÁøÓühy¨=™Wá·{’õí†ý†z1F¾ {îØÐÈTs†£“kAk …Œ/•·µ‹k¹9[ùÞÂÓò‘{s„§UŠð¬êÆñi)Ê´’{§•C¶b·Ž)àûïvGÀÂÌãOwq|*¤‡:·ÍUâuQÀ©Åd¢oul»¶j“A¹[¾ÄÊú×½ÐCèù—;©O%;89»³ó‚Lêô R÷'[s„Iµ¿(ÅÑb8ž7ö沤 ôEHè¯HÐò‘h ZÂôàF‹ôϵä-j‘Äbth®l áCƒëEï<í ˜¥j£À÷qçÕáÏ Ft—e£6íÐfË)Y£ôC(ä߇¥—@ÌQM¬–ää2j¦Î¹)³ƒMƒ ê\½@ ‚O;¨º—<Gª8d³ÇŠƒDIT`-':˜v¥ /½•‹}+‹%—Þê’K¶+»aoQá5=“v~arç›?QëÑÚØršbjú­7þ‘®å-Œ U£˜E(E‰«²èDçèíz8UÑÏýû ªkdm$ƒ-2'gn¸KO¡”lòOF·…˜…š-gpYðr²%cp N&ƒÁˆÌBœÊùäz–ôÇýчÿÅ âQÅØðdգЩænÑÆ£$B™œTùŒ%FÇg™ô­’…u5u †õ¨V¬g¨ti"+X‡É%WIÇQ÷€“EAFË8NÕäÒ:Ãz( Kx¢Ø‚hn)´Bð±'äŸë냗›¶$œœC¡¢â$œb¥Jµ+–/Sé7?úBð[PÇ¿¨¥O…hþÏ‘ &ã:Åj1ãÎAŽ©‡Ó#‘ÞƒúêGŒs(ÖkQ&½QúãòØCYh.nÄt~)È ¬Ë¿ z>$:¥ÑC? ÆSç5– 1ÓVÝγݽ¬¨®¬|OûÏ¥9‚ê@®ŠÃü|㄃®d”çÌbV? ¦4»õQ:û [“ª¸xBw5:0õIÎX§à¡J!‰òW}Ýΰʩ%«ˆNV†±üdÙeÉü<*Žõ´)Š%ïYífPš%7tëï.³HêÙĽ²`ø{ó៛B^•qb.8r|Ñ,®Ž/c)ùåìº?økRñŠÇä%CPon½nït> ¹{vôº‘™†â/tÌKŸÙæÃG¬,³úm¤U*|ýýÙÈÍ@™wÿ`/}%ÂosýT&žçe‡]vÄï?ñˆ›b :â_à~Xú‚x÷×½ ¾²ù_Ùü¯lþ_êþÿÊæ¯œŒŸMzà]r¾ ˆ"må€ð/i¿:ßìMÓ û³%æç©0ß&Û:Á×–zÜ2UîG-í ¾Üþ—TJ§+vòk8'Óô¼§Ê9cL7†t×p©“9„=‰ž@%‡—•܇ìXðÛŒ/_žGÛ| tój,šo¬Ñ 3¢ÙÀ{͸ÈãØdùWé•5IÜfN„X|Ž™óàõáѱ3)¨c–ãäü•*@íì@‘Rµ^‰¶NFºjS,;£UŒÔ Fâê©Á‚€(âƒCw—Ù;Íòƒk™ÍN¼¦ãÝÖä64Üìk*Àh‰I’Uâ]·³´+épéËœúx+ÅûrYÁ@_±>ëWPvƹNTñRlº€ 1€­ÁAáÙÍÕ¤Ú_ÿ QèciFÁıA4´ÛÎ$ù˜Åå› ;ž½…¾Ÿœ¿¥<ªÇéÂÏÑ`Л÷OGÊ­ir=ï)û÷FQV˜åyM¿æÅþÞ«½c–ް¾´ Í)ŒYs닼ÓÉ [[·+OÜvn©ò2E¡Œ·:`Ù$ iY:£“úIZ%Dƒì¥q>¡M\½ƒž´Ýr]ü_'NÞšB¢õ•ÃýÄö1·~G<©·¬0³G˜×#ŽVÓF-3g’>–=i¬E'ÍlG0éVõIëÜ—þùÞ`J5T8ž•yê•qÔyüt˜…·/°µ–¾6]œÉ`ÐÝ;0Æ g0ÿY÷¦«ŠÃÜÿm8ŒgiòÍõ`š¶z@PÑSU<pùáþ%N %оBYŠkñW6ƒDÌ“±,.6_\÷ç—ÅJÙHwRÚ÷ Ë¡³¨Lñûwol>Œá„èdwuôg²Pë\ù—Oróyjg_ã›]`„â¯É0…ctáªÎ4H|Í``ƒm毾d˜›êâ· q3È'€7|ùËaw·÷ìðä`·Ýýí1y}_ìd4`_2Ë©kJÌM xä½ó®‘üh3ÑÑ ÐÉcûòÀÑwñøm§»ÿ<žÝ£êQ®’ê!vWw5œ½;€á¢-ü \µ î«¡û³ÿÞyNý€å嵂Ð4ò ùÌÊÀ ʳñåpÛ2ÝÌ~x"é&ÝÌi0 —ÜÇ›o-v_©”%eJä01QÙ¡`®EzZ²¶øÖ§¼{¸¿¿„F¥רÐ,í›-Ÿu5+­\¥ÄDOƳ†C$$Äiéîsq‰IW¿›I¹»LŸµwô– á{2}Pû[TeŠû®DÙ5Ô†:áá§²B|a!fÙ [GFÔïq¼Oæà[_Qø Aá| °ŸûѾSçóUOR4wØ*´$¼®0Ôv€JP®ÔúT%ëÿh“MRÉús© ¾ê ²uä †•<ÆÚ0é¦h‚ÞU5Fäci ¤‹ð¯–5äîÎí0GEÌMù7Šcâ+O+¢¶ O}÷=;,/.»wNTsvÎÏëU]ñ«xüؼR6Œ¾^\ΡZ”èsJay?¥©¹}£n@‰ËÒ¹3¶É­ª¼dþœŠno¡S€¥â©¸}جÿ?.ÁèVedx×Í{ƒát°¸:¥ï•HK¾¢è6Øg×O´8û\5g¬Æ˜å¸ðõ 6¾—¶þ¿•Ms˰F• Ÿ”QƒVrq^r^ÒFÆ ?ŸLoúÓ3l?D€wŽ“:CiW²ýϨŸ™ûo³Ó¶±Å`f ¢\ÒØ>M]ô×'G/{ÏÚ;?wÅêsÚ]Ð}:LÉ 0Mð/±©êoÓ¯ ]RõÛ&ðž"ék v*ðC}dDC|ï§Îþo*®ã4Çz8²é¤Ñh¨¯Íæaݧs–ÎëfJˆ³8ì–?Ûõ§P8[ÌYv‚ʯ?O®™FÈÉ[W€0½o a°n®_Ä¿UÔF Êâ„ýÜÞ?é¸Ðþ"ÁüW°…mûHúY&Êè^ÃôÒ¨±gél 1;³´?ä:‹p ~õR°°?wvŽ»Éäü\@.¹˜¤3U˜½/Á6˜,ÆPoêEç¸U‡ašÉýDPÝ–Ìz¼U#³˜&XÊKÃþUªB»î“ïÉ=·‰ïôÆmÕc(ñ%¸i SÉJïuµ²sði3u7Ý`¥{°è<µ+çsp¨òí5JWwT@S.Ï Ht«6\ý,…ÉÄ« «  >yòD¦o~.7à‡,ßQ§n®3=Žü<êy3ªe®@õìÉi¸g÷·ã;‚ ÌE_æ7¨©‹zbÉ5ã¼8s4G @²Àv]¤&¨‚®-íè'¢RŽgîœCª²öÞ ç—Ò O=H¯®çÎûÃëàMÄL€jYD0_á½=P2ê3ânÎó^)Ùwã‰y›‘ÿ‡gL"‘®:œ¶Ç4‘ÊáípvÙëÏÃao˜5{Ýt<ÍɶŒ'rgÍ;Ül²˜RÀºsxr 0¬}¼óÒy›ŽÏT #ÏqQº$J–ºû‹¢yš庛È4äí—ƒÁﯻ{?×EY€oÖø]|¥!šo¶²Ý^qHuêBJ¦h·¦cÕ¨(¥nb–¸Ú$msqS}#¶Ê}£SÿFf¾îçD©bK6YºÊFÆÐ2š>¦ÕYá¢Ef_·É¬`ó‰ƒ7Ö©,‚z3«†{…²Lª¼«M2{P@?E¨ûÒpM¼Å´`j˜ãä\±šÎÜ\"Äv)œ!2}ˆüje¨Ö!3‘À¨ŒÏ›k*ßE+ >w¦Hã¥b-ílœ€í$šî†‰Æ¢5ˆ½±ùåªk¨’ãzMùÇ÷Ï’Ét(hOŸT&}ìÍ“«Å 5¾}Y¯:99~N[D س~YîB>Ô8® L7ÜWq­äOòÊTß.²ÉÅ'ž“t£Éà ù,Tþ,€g‘¥ßÕ×v¦¿ZÍ­QîŸ\wŠ€Ÿ–VÔí-+/VtFïŸtÚ¢ôNûhïàÅŸö…xÐA›s·#&°·sŒi”(›$±x½$d!”ÿ“íív0bñ3i¢Su> £KаÍAïNÿ®ý8—YÓ›˜Ë“Uš\sSwú‘¯¿"^–—áE:_ Îâ†5Goü’¹œ ¶Ô™ð¿hE¿Øô¾p];è?ì‚r[S­¹‘c‹{5˜LÏfÜÕÕ;Úl•1éÚîÖ’ „anœFH0š<ãúÎèz4ìdnØ?¥MU¨‡,–êd„ã, RKäb7•öÕÈQZ3—934-‹rÅ"výè¶®m]€4 ÷ëL¸Ùz¤æäÈ{a ‚39Èˇšâ¡×f«gqªX €gÖ 2U:‘þ Afy/eO >ï%”½í"cãðnžðþØ?zÙåò-°Ç÷Ö´j-«…¿n_ÿzX|ìðkDª‚_Ãý¤oã*ÄgUû@.Úp/>'0‘VGƒR[ñÝß«î„a/¬ÊÐîÕ–ó‡4›¤D—B,y†YPË’%óø,1²¤›-‰*ðG xŒz ,ôV¿å X³ç,¯ójþž %küËᜲZ•\N˜ÿ¡’ªHjŸÂ*+W?BßËÑdyÌ¿«ÒRõ+¥JÅYâ„…ü,{™Ê•܆¢ä0£"ÉåÖÈ0… NÔÉ¡aóÑÓ $gVˆÙªüW8w¦bÔÏX]"ÎZQú¨]ש»V™Sß-ÊgŸý@Ã|†Û÷·ç*R,aÍÀ¼Ï#+Æ’Œ-½­»Â g83éb´@f”9—Ö×-§S7÷¡”áEë‘+àìït¸$\`éÎÓi>™V3׆žJÒdöذkë[Róó€©,¾Ò\î) ã½—cØuS3VÑÿN§i)Ì7 ;À‘¶¹mtGƒ)\á/²Wý÷r"ñ‹¾ Ç8v‰ÛÌÙ$ë#üT”µLfX%ÚHßß¶>*Ö–ª¦ìÌèckUýÃôÔ,˜(‰±Ò!3Û¶¹eëÒ|4µˆƒßïš7ÆÃE!™¶Âyw§{t,°CVoÇ´ˆdS¥7¹ˆÛ£¶ŠÞ©`ÀÞ¥cÄ•$¦k¹äNžlCÕåyC2…¢c/SÑH'×®VqG"p<7\ôcçÉ«½ýPá Ð ƒ…f)d;ƒW¦4¼íîõþÉQ0€~(h.5Àœtܬa8‚y¬¡Y~ˆnûàE'Â<•Cð]È·ÚÁã<7°èšãH¦,U1šÃ¤$šy.¯¤©ºiîhÜ¡×Ì•<¿ŽÞ |Ų_](ÜaûWáÎih5‰1פH}£Á²OÅ;°±c|¸t'SÈ 7 Àä\õ äíï¯úW,”ó+P’RSºôe|&¸¡ät2¿LTƸD<“Vu©© ǃ=—±àOáb*Ë”_ ‡¬LÂwDÓŠ®_q¸I6#÷èæ+±ØJÇ9Pú#²Œ,¬&ˈjGâ‰é#äûC5ŽÎª4Ø ¬Ü0+”ÎDnz¢@qÓ-dù[±ý÷ß\Í¡Ð+à¬<#+üpWÇ©¸cL±ÇhŠ[nOæ Ÿ%m ÊM:² Ûr–¹ô"s–èêü-ÅÁ×N´JD$_JÏ=ðx,ã¹Úa@nå~÷ø´ÒÜsù›»Ì–µ‚kzÕ—ôG¹áû²K±9cÁÔÁ k‚nˆ­'2AHÀ#µ½3ÞÅ´,­­BÆbà”rqpàs d3 Ÿœý¼%æ“%VÄtþ; ® åËÝ–ŸØˆ„yÃß·»DSâ;Ñ ‡‰ A.ºY c ÉœLJ§¥ŽyÍãýþ(x2P‹xÓ屯eoHʺ–àRËã!¡t‰‡‡¾b¬:÷¦Þß\æóž<—Vcy,7+@aËØ`1åeX…Q,ÓÌ¥§ñ¦É=ù—E…ßÃt´SÑÜQ*ŸéB„³›D\^tŽ•™H¿\Ü$ýé…Šo¥ñËðE ‰¦«qšžÍz˜&6¡w™öEïµÃAתmàŸ´•IÅßÃ&Š_ì`ÞbxâëÆ3 br±¾-LtÒu÷Æ#Áô/™23»'0^%ü‚€úó©`îаã'©Ð¢µeÔˆ¤;wÃ5£mi<‘ »¦#Rd³œ^© ÎÒÂqú~®ìTæ™îT¬÷ÖÎÅ’ëæi²žÔ7*rBŒF(e™;Îz `PqT,›È)ˆAx¹YkÙb5`·Ò¨Ô°iT`›×,ϨpA",g‡hÀò…&_Ø‘¶ ®*þ ÿèë TW¤WXsñÄö wX·–f†dÔŒaE&ü Ùru U?°SÄþ¢Þº+ÒŸdfƒðп±Î’ÚüS"1.ÃÝ82gC ÌSÕ®µUÞKK§" ä× ;Ͳ¾Ž4ÐÄÈœ—”%= €Ð*+Ü1‚TrͲíNjîÕ#¨´MÈÇ…ÇÆÁˆ-‚LíŒ8n.„cÜoFÍÜÑh˜k̆Jûö~Ú‡7: Æ(< ± üOÒ3$Ž+–M¬_N. cl0Å_{«Kl³¥z~r°#ëK‹³µ˜C%ººòÖp„%÷H®0Y´Nr*å[©'?«ýô4y—çW9y…|«¹*Á°{O54Wª˜*LfÐ4¡’^Ãl+¼ôçCÛs„äfª¾dpªxþ÷µdXi$ßÏ·¢ö¿Ó†·Y/iy8G}q_ϧ’ìp¥Œ³LÂ±ÞØŽØÄ¹+x䈧àe±wz)¾)ΘÿœÈ–†JÔæ/?zrs!MºLâE×°€y‚=jN$³"I–›@Päj‘d$Ó\EAØ‘ñù¨­Î ñŠæø³„>S3Œ‡4Kx]Üñ“*qé I²IèSðf©[ÓÀï’Æçå!0Ó‚µiŸÕ€ÖCvÆíÔ€Q!b’™þ›HWx/ÄyZÏÝ’À‘9ì_$ÔMß¹¬Yàaü±æeÖÈ=%^hŸa‚,ÑÓq¯ª•ÌCò)0r™u[TµKC_¬üÒíóñó8DÎSU4©É„ÒP²@³~K5f+*sûfx ç»A¡O¬.Û“n.‚‚9õ„ä&º¬;ðqÊj‚ÎxÚñc“‘û¡(câl*@òX¾ÀkÚQ\ߣjkâ‰át§ú—ÃînïÙáÉÁn[†Ûׯtq?¦nYX™©Q,Æ}ØÞ÷ÀLOv2§{°aÓ•ÇóSG¯6)«jC¢‰Í{íࣱòc–D °£’@ ¾µŒ½åñU6Hn‹Š¸>ŸÏ˜{ãµ%¦ïEò'v!#}þµææ |X\c[!êµ&‹ ŒÏ¤U@tІËþ¬§›öz:|J°rÁ a$˜þhä« ™!ÜÚ0DŸNû râϺmGü™“”T*„ä3?Ô)$!S -â"^)Öû±÷æýÀçÀéXýA*M" [Íp²˜%ýÁ ½ž{Zjh}z‘mq´;Þë-òùPëhß‘ò×ä{ö=µ_a/Sj‹ù¶@çµM”õΛ­Úü2÷®)ºb'æ ùÜ<ãåGü§y*ý¡}˜ñ¥mð-}ìì’Î(lÂÌÿ.Ò"ìJí¿?½hÊö…@x' ZÖ6l¬~0–>ðíg®ô-N°nŽñðÕÞ¦úâ¤à;ôu”gñžô@ À ¯pŸ$’^CVíÝöq»Ž¾Ž®ÆÀÿBü a]DÜSÚUgrΨ„­?¥}ÂéÔ} æÒ6c¡Áõ».:òÕSª|ê`õø yüLVѨ®Q¤¿Þ¦_‹mbÃ×HÉæ˜dJRº­š›eÇã%4…{Ùu´Ç g`wîÃ& v CÃ챇;.TQ¦2‘ˆCŒFµ©‘+¬¸Lü®Ôh*80¼2@‰u>$OßmuΆrÉvoÃMN‹TO¬ƒŒ¹‡u>–ðX‚$‹»Ô{yß7†!sBØ@vÆ>¹¿íÍÖ¸Í0ÄíMyó¸ë’þÜø»D¸n+ÇÎÛƒ'Ó²‘» ra Æ]€ô£Üâ“\.Ö&{ú EYȆûÛ‹vÆáß±å2GªÜ2ƒiùA:ŽF <) <Û®X©£:?Õ¢(e‘ü¾^åPÈÇö¼x¦¬sB%òrH^È'&DòOÌKáQ+À£U e«PwÏ ºÂCÀ?ć;Gм¶\"J‚4œ1IuÂÒAën6M†Eo-˜‰ªÐy—ŠŠØ4æêf –†9…;ž»ÿá‚Ï»ÿ ´#w8lÀé "«!Q:\w*`;¹¶6Àõ­c¬#BV(D„+“.Cöczqä';B_’Ç ZË’ +°ž[µ‘ÈJJ)fBJ9Yƒ‘ ô Ф'/ûÊØí<$‘òÒ7¶÷‘?/p½—bný9ÉÀ7­èHL6Ì0bL¼¤êå€H§ìØ!ÙD•øvö¤£­€cÔö"ér*GF¸žù$ÿãå¸äu‚Ê`æ¨ø©frŽUT³å}ïœ7OƒÁµ¥­ô{™&ï(Æ5<[Î÷!á´:î7T9àªoÜvÞÙ ô.në8 ÈR«p#ºcmQ½¬>ëÄ¢7Ã7dãÎ6Í Ây³øŸ¬?•q³‘P¯Ð¤B.AjBŠ@×KƒåAÄ Û³U$ÜVklß [, bXó%ÉZÁ•ž­ é¡aνBü±äb«!ð˜t˱/*nø,*¾N¤iéñj‹±¹+b"cÊJ3Bµw|®ÇªŸî°ZÌ@L .ýØóKšœMÆÿwŽ–p\|›¦×ep~2V ‚ŒÜßo“Ô*/cQ]‚å¸ë”ÛÅX ¾‚g>¶¬_ZÞ€qŒùT8“‘q5gù¶Ák·x=áæg5`Ë‚=ËYo®¹ü0»"@Õô»u:«ØÉ øa®ÖŠ"¡I’p¼OnaèÏGôM&ƒ9ÎÕ@š—òD†`Ó+J߆QÒ½6ª3ïëò®GTRàNÓ™ÚÓ*zµzÝŸ:sý.7us3ši‘ãnÇ®˜ÔgÝÅ%3Æ3fuVÏÅõgDSd÷gÅ©ƒ—ÎÛËâŽÊÓm‹ä:~>™jD+;fç–­¦£¯‚šx°ô­[±ú]Zˆ4œµ/Hú¼øWññ«ø¸¬øHå¨ Õ-ÐgU-š‹Þ?vÒâÔÝÊÀz\Só«Ñ·ÆP/0¼çˆ³‚6¼ê¿•>²¸Oõ†ðŒ†`ü8Kð'7ŠJäÃßu—ÀÙCÓdœª ûJ&MQÉR¨ôëÔKm”‘X2”u#}º…ðYzu‡ä¤Ò$„¹W-›Xþ$Â{y’Üê$ëÕpžÕ.̺ˢÇùN8‹\ɦ £DU¢i¢Hyá6¥Ƥ£'SRï^3& åä¦+Rªj ´ÛÐ}„A]Vç©U’¡ÞÀí_MfbâsA=f—“ŨR²ápý…h²¬m!sf/Kk„|Ëm²oUôXº›lZPŒMwWª:_)è™ÅDÍ·ê’S)cäÍ'>fßZ„wB2Yúm™BvþÉž-#3›/tNx{'Î¡Š _@8ëì­Bg‘{5«žæOžn±Ð¼rqV»µ)/à”ñ×Mÿåê_TRÌ¢W+(V¥ ~$_®(Qp;‹úwUS¯êH,ŠóW㔯s­ {£ ²²Ž­v쬃¸²ScÕ[}Ÿ#9àØ Á±½^¦v0o‰-‡l7ê.qøð´Ø‘{AB†x}Ç‚Äx4‡àâ]‹}æ±q9»/gÀÔ_Éî݈JÊCZO1*òÒª>D±êW'w®ÒæQEMÝú„F“é§%ÖZÞ./ÉeüŸZÃDLx>2×ü¿RNoÃPä€;þ*×U¸]>Ÿ`Ý·ÿõBaöSè®ùä÷†3kokO*¦´%©ú¯NÑòÚßO§¬|–^}SNQ3N– §€n–í¦¬Ý¦ˆÍ¦¸½fY[M¶†&qòüa#±ùï&Ã3i{èMƃT9„çÅ^Ë8â· qqb§åÏð›hçþÓNÂÒfê1§EŽÄh#1R!+ш±’!WU4ï.2S[Âz:4eRS} @êNI)~êkc }1˜ŽUD™üÜ—}‹šv>¥Z&Þ‹Ü)Öb‡â(Að ¢ä°05àÍåPÖ ËËtš&¸"9ý ºî¾jÿêÝ4··I‹âáÐÙÅÏ'ÓDj`lÂíeêi*ÚHA«À¦Zô2'XŒ „Ñæ.Z p ‘”¶›=ÀÞ^‰ µÇd¦ë™þîôƒ3A§ûþÔ‹XA\pÓ¤?þ0••ìp‡®Ð˜õ2$÷Ëð~³! URq¤Ã†–i¤§vºÏvŠúž¤.‹Oà¤ñ §è¢eO&×Ò«J-ÖõÐMë{ØtM×°0÷iªÛ^-Fó!álQ:t ìùd$˜rØ,L"5»œÜH?Îiz±õ§ 1QüH-ì¢ÅpІ˜û\€{r&úL&3Š…³Å5ä™—k„Â/ëH-]ë?>n$ÜåeþÔ2˜÷§¼Â³ßc;ª‹X;²1‡ûç€BŒú³!ç Ž“èCý«q¯Æõd;<ò¦äw¸o:Ü·â ,:ýƒÏÐíŸ!Avü%ï˜w ÎPõXªÃ:ÁÈ Ý%¯`†:„]þQu íϺ¬³p¤öv#iè^~4½(~é^?šÅøsÉ:UGjI¦—I/Î\Jô"Vt¯ \,*ÁÕÅâ<ÓMüTÊn¼³x¯ |í¶çÍÆé&~ÃÙHÈÚ'Q.s°‰ž¶ ›º„L¡ýöŸ ›èÉòº)Ê 9< a„(q&+YÒ>ÄÜ+ çÂ}`f˱-‚c»}®E]âÈHy÷÷õD\Ú`aåVŠÊ&™Y¸KX}ýφ†ó=º=™äÁƒf^%mÄüz>€Ö;‡»´5ý£[?ÅÞEƒÃƒN´ïß%¯,túF}[ôÏáTá°†P‡>°–Ýxœ‚ÓAú¡FDJ&‰®Æç®LÈ¥ŸåDY™°Çê íïáÕ`À“izöçú«5ýÛT6ÜpšÍ?\§N;]"v#+a.>£°sKÔ&ó¬4ºžaLÈhAZbù„äþ¥§)šDØË2ì%µQ¯ÊdC½^;‰VáŸð/>WìôªÿÞK.ħXÕ).M¢ HE…¥~i¾ÄIÁ$«lU7½(¿ÜGn ™çP ×ñ$[ ñbPE;BrÏE˜ÀÀ*'q«ãUਸ³e›ô¶6ÕÖÜ“‘Õ¾EÛ냓õÁf.æÎ p sðž‘ʸÚäÌÁyòúX¹oHØÛ+<þÀ“Øg{ )¼ä õÔº»,Ð3°+1÷^7wê¡« À%ü3²q-Lóö¯SÏä­õÉŽ< 6‰—Da9EìQáméGVÁSc{PZ2·’¸hµ{ÐívžëôZðO€±˜¾ø‰„Ì}ÕR¯@ë¾Ù\ÃýÔhz¨93µÇ/¦“ÅuzÖ›O.Rà`¯˜Õ×ëÎV‡q1ºûN¦Fí0$q¶å2ööÁ–*—󨤛S~5y€Åܹ„üTò ŒhP§7 ‡C63Ü2壤wÐÒETv3—à±®§éºÎúy–Ì®_¢ŒžæÞVå’Tª27Í®>›…lXNl9Ã08ú)õ‰4 ª¹îuOÂW<>þZ|:„Sgq uÏLúX«0<æôƒB¨ü¬ç¶æ¹CFcÉÏW·iÁ†`%¶æ±xP$ »“x43» ßKN UêD}>œÎ<¡K€—:„l0¬Š&4¡ç %ǵQs_ ß`uÝtݘX¦HfaêÂt[k` æ… Õ3m`ÁC¥ò˜Auåâ¹è<ä玸’†ãDqב& ÑÚå0dr‚™Vå£èž¨ª¸+Ia¸ÄùWÑ÷IâˆåÝ{q&Áù&Dî©¡|tZAz}Sv3w䪣>çRa M"g c¦’$`ºÿ$û"±¶|Ñ2]ºè®+v~(È †~:^íNj< »R”ñIMau—é8¹µÏ•J“fÛáÌTc'LE4«†QØÅón ™ðÛQÎŽcÒïà…`,ëoO®›æ·Ü=€¶ Oýu¨§dП¥Ô“_€cª N¦éy:MÇÆKBLœx «„»aÍFòä‰tÏ)?õg\¶°"ºñD‡|7˜ ¯‚Q¿¶†‡ïÜàWO•?¨’X—¬]­Èœ`ÑUo·stì…µ}bÖ±È}Y8o7ÁOÏá«Kv´H º±×hçUZŸ2IT­LtÕb”|1*Âå°´1dR£Óþ,%gÌ܈—¹ÇD7+“’[”¢b&§¤EÜéødžàöL Œ…,Û›c¦§ûl7ÔÃiŒî=¶Î´ü£¶g¸¾ž€œižÓµU„Òéu;¾xÛôcm9äŠ.‘C*к²ˆ=îMɽSXe:³¥;nÌWwÑ©#1Îñ‰H• IÇf—åT8ùzíäê`6ãK¹^Õ|¢Õ8ª‰ Qé4O²e÷Ø2ͼ ºÌ ­PáL ®%Q@4š–ûLô™ôKd´¸NUUz+’Ú]šø_¤cô\#?BÀ½ÇÝ%C lÜñ½fSÏe³Œ.5ÞÖ§¤r k•ÁÀ¬L §„ä2˜—€3ÒVAg¥Ü OÀ7CRyJp½N†¶äOõ¤ØþGa™á%|Ýs!¦Fpq[”é–\“ÛK*—çeWbž´÷ÃnÄ"ØÎ òo È;›¶ß•åÄeSz,ÇÃí9Çì‚]\Éè©0pd¢ü„fVRjáNjZçà߉žü!áÄ@j×mêÝ¥ßR·øo&©’á>¹`b]c2;îF››:K¥¨wˆq“¡ØˆÑ¦Ú•CÂi‘‰‘·Û ̨×>øÿ¸|ÌM`ý)òD;è÷ã éÌ(¿y]° ’¤ÆÆÑˆÓ3•ûAØ¢íþŽ3ãBR|¦YÖöÈŠâU Çì¶íçRèNáº^ÑŽé.ÕEÄú°¹€PuÞÌðæš°ÒOŒk”øÍLôUI1Cþ«"¶±â½éM¥¥w“ŒQû߆|ã’i.žY๑ڦgã À6Œ­µ¹jŸ!ÀÄfFðUhŒâ1“™ ïç´²`ä¶ôªxoé[ñhx5„äS(8ˆ»ÑŒ³L'ü2M5+Q.ê]¥W“éÂF(ÑÓÏ2 ™ƒe*û2µ^Åð³t®FC>'g|ùÜd,ñr+@« †ÎžÀm·2’©É°‘é… gp+S1zjæädáh°Ø'äL¦6»Ša´0k²øƒýÊ·ú>6 ÔöH;‡T ©3*ôáä¸c·?&g!U!îwŽŽ²ñœ™9”Vé—ÔTYƒl~éT¥bÇÐ(É$Þ`»>Õ©»I²îrVµÃ‡w²^ŸA% LV9ÚÑ ¢BÙ°ƒTHÍ'Î Ô±¡}·Ð[äþöe~öþéäu#qµ YŠBÏ”âº73Âyó7\o¨Ó²¼æ5Ãå×ð3·ºìa*ݲXÊxw£×LfxÆdšÙ#ˆM…(+™޲T„QWRÆT~À}âÍÆ0CgA1}5ÇêWô¯·¹tl€z‡¥Í%øšsè]MÞõÄ5:5ì"¦-ž\ãà q±˜#¦".XA‚6Í‚—ý¯E`e/ rêNþÔ„£Ù ®ñ¬†EEÛå%Ø•zZPÿάTG¹Øô#;óDõGÏ!o @ñÝ0½A·“ Ç‘ÊcÄ 9fhT™Sh:׆JËT U³ÕéVîPsÛæ8éJ¢ª™½aLÓQ ÔÓ. IùÌ z¤SA„p]ò’7SÓŽ-’ )uj’þèÐD¶'èg¨r÷ ÷r6Q•ä†óY::ç(ºŸ˜¸huȤ\ˆ²±À9<:[–;£0wf9ú0.¸pÿêÊs‡ñ÷+¯¯ívÏ+r˜Ë—ÀÅ/n áx‘ê¤`c‹ý‘ÅB…(Š&x “X26­I ’ÿ²Š)S5·D#vE¨Œ¨ží);•  0ìþVmèì òÑK!jAjº'Û¤W±.š€E6jÿú­ ™•Ô*—L¦B˜}T'.ó)ñéŠEMnR«¡R îï1l]€…ÔªÿšBRÆÉââR’!ð`ŠzÀnßL¦oe/Bf½„tôóéðâ"E§¾“ñYz> êõ,½ìCœ—¾³ˆÚÖ[¯ã8âïÅx6¼€æòY:8úˆKœI: £îÅø7ý¢ÞËNµ\'cq¤jš—gýz2û«¤Z—OA!oŒhÉ8.[Äõjïú)Û±•WLå#³¬wÓÙ s{4›¸yÛTÏâ~VsJ`N*ƒe˜ž|4™\û‰ÉInsLUˆ»T0/9ìj$5y™üõáåAtÊ_†É•>&OŽÈ#’C3ëÛØýñÓyæ'æò ;‚â ?=‹ ]F÷§ÉÞ ÒêÝô?±Q|¥n¨0u•"P®“Y±tŸÑÎ¹Š¥(ösgÎw#²@ĵ¿aÁ mîvÚ‚<ÛïH ŠêzФ-”q¶¢ÑÁ(ñÈ*Ô홸jÚ-kž/`cSŸ1ÖóU«eçµá,mȪ‡o#‘$Öi-C(s x»°Ì­m^Xóád«©•ÑÔuYûd÷hùš³«ª:»lÒÂØ¶ÂºÄ˦ú(• i¹ô‚…Áó?zn¬‰ïÞ­mÓÕŽEj}"(,”bWeÖ!G,)*m†l0ʬü•ø©öa¬2f,?K-L›¤*Ë¢¾¥É¸æ2bNKÐò¢Ä|Á~Y‹^!ª¯:?`~Þµà"ÿGµÃÚ|‚ãW!Mk¬'§ØàcõÑx2C¬¸C‘Ù¼hš´›»ž4ÝŸæH[g“d]ªcÄ}O q8„÷ QSÒ¢Ñ+?ë× Í£zÞ6$…¼p '“6Lù[³†u5Ùå|_ÐåÜS]PŸ|šx3ó…®F‹jÆ XË(×Ç\Ùm'aa+òÒ(ÜYùd'…Y§¢ãEúr(õ|Y4ÑD‰‘à– K”:YÅw7V/b%ì—ñ †ìüïÒ±*v)ýÀ$¢JTÞPs ÀQÚã<åTiæ³ÜE\ˆL;çŠ>Ÿ@’ì gÓ°*4>?PÓ³$;³ ÷vÕ„¾ë$ð˜­Ýá¯L‚âÅ –']e™¯Tì¯NÅV–ñ;ï8×ãBˆµ«2Y¨‘êq(g}þ•äþµHîFŒÌÖX¿ॱÉùh1»¢îâtFL­–Õ5Œ¬ÏîºÜõjÙ\š¦'ʬ{y{rùbæj)íøxBw–,£UåN'q¿Ïä?±4Æ­<™C`VR¡?/2ÉBôô£=X¶ÞÙ966é8ÿKšœMÆÿwž\öߥŠrÎuI@J;Á:†–3,¡~ÞgèLR`ÜøZ¾lë™?â'''ÀÏ?Œy¹ÁJr‰&HƸNeÀ€Íïþ6¿qˆV>u-¢‘ $â`2Æ»w¥ ð)+¸¡kôš°„Œõ|¡¾þX_5Ax:Ôih¯ô›L{×}ØgñkVØáº)Ü“—¡÷\xÖ”a±Ù‚àê÷Îïô}0w:¾—ŽÏÀc=¿8ç AÆï¹Ævù¥T%J ¾ë7},†‡hní`OŤn™Ú’O•Ï#¶˜¶Ü+›¾#èx/Úó^N×{øL}¹N:\×ÿÌ\à ¿0ñ"m¢Q8¼î²ÔØdÁ@´b@`z-6‰ãß^wx0À›œMΈd¢¨¸ìY1”ª\eåtsˆí‹Ç˜'Æy|yþkäyŸ7è\îiÿŸÄžÌVŽïŸØÞ :µôÁB½«8\ßjƒÉ–æqƒèìÉ ~7ƒ¼Ù2ÐÓ×™³ ;]~vÀÝð?N:Ýß(—å‚_}ë?Á“¯ïBzò ¿âÀêõþ A16¼ð™!C-LwBØ™7}ëYó|pÄ‹AD¼Ê…ˆþ|]‘“Êp9<*í`À¬•g‚n·}ð¢n ¢DôßI\õª[¤§¹kd[½$ÓÚ4V︅¹UôvâÈžÆ]­Ϫ)Bà+48U²‚û±Ed‹Ü.¸FÐv¹ýÃe œ“‹Ùâït‰¾·šåʅ͆ʖõþË“³Â&û&Y¹Àµ=ÃqüQ§äÐÓõýíYÄ•2¹4,E<Ät/p¸©¢xN¿ÍðÆ )Óµ$ñ®|Rvðñfç?Rûó˜9íy`0æÃ{4‚È&ê4—¦ÜE }O®€Xäö~ 7’’¿ ÏÏÒóDÌûõaT{;‡»Õ–.æç@ù_¶Ä>wÛûÿÄu‹}Iƒ¡ûJô+^ ÏkdôLeë¯Ô=yúÕÞƒ"D*ë»lDI2¸ryÏfú 6p«f‰ BWäJiKÅ›´?}è”ËûÚªú[ìrôo\ö§à’Ž!€÷l ²ŠôæW×î´t+ø{«f|ÛQFQ¯0±àøépî,_ìñV€x¬Â¡ ¨ÜwÐ_Óká8Hcå{ª–2ó^;PË:¸œÛ8ë˜ !M90—\Àü0˜¬Ð.JNåBÊ7²{Uº.Ñïá.;iè¤Éuâ…WË>ÅcZö5ü—A2K`HÓî&ïxŸ>E76ñw¥²)š»ÂþÌø1cÀ…,¤{6œ!ڙĚœÎ1 Ô,ˆŒntÖ”óÉô¦?=ët“18%èy.þêAõnEË=k¼;6§¡?–LtA>>¨lr=vb‰ÞOØ/T<|CËRë‚'˜¸&ÔýxäÎOBU¼v¼;ᆠJÚÎÒ±›»ZwrWêKä®ÒÜ…ˆZ¡u,î!½Ï›!NáÕkt§´h­·Ý‘fÉüéõzØ?Üiï·¨ #¹Ò0^y¬À –üâ¶N’O‘ÿJõ+‰(ôwÏ~ç¸7q¢‘¼ës“áð ž÷~ÙÛ=~ Ûl)†N4ºCîl}›—Âíƒßö½gê֕˱2©4{YyL ¬|¨YÜ;ÔQá‰iº«ÁhÛÀÈà™ÎÀ³/áÀm8~× Ïz~ @Í-³6\!‘nŠ7÷ŒñK xôˆ=€#ðNϲ?-ò2îáæ½Èµì›»ä¡…ƒì!_ðæb?ŽŸnî"¬É<³î¦;(–5ÓÒINhÆZ,h2ëÉx\4B˜vr—lÕ–Ý v'–Û’ò67¡À|´4ëºêMûã #A ž¢ ¿1Tˬ%ç“Dž%§l,óED d9§x—×ÛA–qÍ#ò÷C”ˆ‘IúRÒo¦µ í«_ì4‡<)SÈ¿À]t@å+ôá.èÒ½yŸ8/ýÇÅò4’Ô;n˜l¢‘HA÷©¯åw‡hX$ e¯ÿÀuâÓ°@÷„¨¬„½Zp§„ׯ3^8Ø 2³¢®JùA´EúŽqz ¡ÉlNÝ•øodXƽØ;·ðû(&a8Ç4þýd–;:OD!µ#ÄEÀ˜†ˆSn è•xrV«˜ÀÉ쬳eÚNÝàrw^Á#/igªíýÉ. f™µ½üȹP)wÈc{‹€en”ºÃ/™Q ð¡—`Mš_LÔñB:ä|NÓA¡|*|·•Kf;œ‹a(`ÿ:wÜâ& ¼Tmè§ØÕàæ½ñQ¤ËÿÓ‹µ{A"þ­#KüÁc/’a{y’A×ót0©|>ì׊€°dzã/ÓqeäVr—JWFedžӚ~4 &ølÚºÿëédÎf,0ܵ{wg¯`Žqò¦³LõJ;d`+Á9ª ²-þÑdƒ»Vá÷íܵ·t>éªKëp§¹óÏWïðÉZ'‘ëãE·Ó>îtsq[À·³ßÙ9VÝ„Ÿ1ºòqN±Vu5Pr3Ë9wºGÍåÜ Ÿ>ÜÞYö°è6βY»g¿±©jÇh£U œµF9‘åè@Œ3U¢qÈÕ¢›WeiE´ Á2î>Ú3…È3ˆS¸DJ¥ ×;ŽÙQ ñ{ó š5Ɔ]Èl6„¢á õš+‹7a´?ÀBâ.ECmÐÖIê.èc;ö*ró¼'^½mQ*Âöä nN3Ã,86k…A°º™+m¶¸’ž¸z“ڮ̿-4#ǵ¯¸«€_íÓ§É£†¾ Ä&guÛ|’§ó-:ìßT¤Vçm V²æÆFã)<ˆ÷q~޵m¹·oøápÿÜŽkËÑ)ÕǃؙªØÙ4ÙöÌÌ•:bXtÁ+a*”½6‘Ó‡¡TËm}MNœÏ»ìÜRòÄ«£ÈßàÙ|ÑÎáÉxÓ>Þy™9 ·]ŹŒƒáA‹öc²‘²Ç/O%Ÿc düºÊÚJ†©ÿÂ'¤€Õü³!éÇønöæ³.ò,ôŒËÊáôœívù½|Žaï"> >']Иʴ.š€"Âg ì£ÏÒ–æ—<'Ï,£ù{g‚ l¯„õ*²ýµàÀ¬d4‰Jôckc(¨‚ @”ž®†{¬‡JÖϺV|Î(S©ôœ{U¯r…c›t‘õÁXV`‰_f–7ŒjªV¢¥ZZ #(1µ˜s%ïÅXU aë„eŸÕû£Ý@UH´•ZÌî¹WÝEžKn@Í!$æ¤$âf<©×ÞÏã¡ïs"?Éö9 <þ3Ћ9=Qq.×ÓM‘‹„65b¹Ðjˆ¤‚&+ð±ùÈ]` WÁ0”«Šî†¹þÁqÅÛ¼‹3ž-ÿÊ-#Èp=¬@SõñÜ!‚UÜÁ~µw€²ëæ.×p?$\9éÎ?ÁÞ9nª>Qmѹ•#›ù.B¥i#ΡaËR°[ _q(.O¹ ÅN•ePÂÃe’pDŽ–ŽŸæ¿V¹/ }Ÿ!L×*GY–ñ‹]ž«8<—q#.à̘c=^ÿ°{úoK«‘Í@• ™4 1ÝÜQ$%GåÀÂG:D”$ò›´ÈVLÚÈ ¢¨oš”â(CŸ’m¢§GÌ[K¡)s*³jºz|È<Š @!w£h(NU(=YÔXx[ÝÙ,7űCùë,‘ìÉ÷%ð—Á^ËZŒ¡n0¦d°œM/ÏËp–¨ #Uâ°?Ç+Gum?ŒG˜=d2ŒÛ¨ðz&x•±8‰bƒÐóA,VŒ0'³Åh°âXV£Œ/£Hަ©X2±VT•\huŒþ$8UfAmWþ1ËEÓO¢éаB9RÊv¾”âÅû.}S¡ÂôÎb¤4†Œ”³¶’:zˆ/ÆóÄ9åW1ÂPîǧ‘8–¿ñ‹û©2¤ÆÐ¹Ÿ-›ŒeR‹›IÈ’£óň¤¢Î”’|_•àÕ. Ú!ˆ2@Q¼„¶ÙªÆìåçSÞÃæÒ½fÞw2Ã{M:Ræa-o)<–ѳkq@±RnŒ€ªÈ-V_ï¬ÊQV&›ZaNÔµxúº“ÒTÔiØ;ÙlñÉã “¯éðùsÁ‰;¼šúÓ‹Å•@Cq`ÕÑÑås Ž`fVf˜‘ÚœosË¿Êå©;Òô›è£:UÒ’ÌdÙ‰ôÚXT帱µ2lfMµ%Îy“²f Ó $dQ:é6…ØP|cg2ï­žf&9aþ¡e3F ¶ü%çQ¸â¬Ã`4™…%­ 0 ,k`3yÓœÿ ã`&v•;=ëA¸Á[l6œõÂç†4ŒfÝîÏûÉÍp4JN1±ö ?=·Rüá¦ÿáÁƒ Å6wá5üû€VQdòN8¡F̤É=Èî뗊u(ð.'á é–‡Óa‹Ñ^áî¾’]¾îžˆéÈ7È«¸±_?í½f?;~Ù9€°kr|È)•m˜“¤:kŒo¸ë~¢sФµ3ˆƒÂ ŸS¼ ãpúCqœQƦ*[Ãß¿Ö+[–Ÿhñb#{Æ “ÝŸ¾•7n¬‹•]•zà†;²Øw«ü%ªlÇe:î <»VuVJŠóñ‡Ù“¯“[ö¼r€ÌüËaw·÷ìðä`·- öuÆ«ÎáîAðÄ}°{¸¿>ñf°³×Ý Ÿ0Ó<ÙÉœOìõ@î‚6¼ºõg³t *)~îÉmÙCïƒØî‰É-.´»ä±ÀHÙ-)øýضpõ® 8XãîÞ‹½cdá#Ü´—{Ç£×펷c‘çz£ ÷8|Ú>ðà+]¡ƒFÏ~;GzÝ=|í> Ÿ`õŸpŽ/™¹sÏ íÏÌsî™t> ¾ì1(“a!»Mgp¦Ç¡|ÎÎGù‚–Ù ­ð³=^á nßÄÂ7üŽòx¥ÆÌ’Å. 6öEdF<šÿöºn ¤)ÕXR É÷,¦èW_1b5A3ƒé­êvž?öìy;‡Ö_ñJüº˜_¿¹•Mœ¦ç…72„»öß§½åt²bxû¥Tas·òO>û%¹»Ánࣗý8C3Læ~›{aÁÿE„ngç¤{Ôa8Y¬=Ô—ó{ÁÞëíýýÃÕQ…Õe€~bºåTê”3ÏB ’|j˜ØsûM¶ÆF*(C#f°@Õ0º>Ç>ÂôJ÷š[þ³n[0žàpVHÑ4í_ ÇÿN'SWÞ1‚¢K+>½UïIÃgSüïà'ôti(M>Ä\ü§ÕWåûcèÃê+tZ£Ù5:c+p°Ý¬ì¤/¬Ó|öÉé´ã‡}Õ;Úñ˜²Ã_¡{´ÓÝ{}Üëžx®yŸø6‘ ÍQøÙùŽ@…ÍKP1”=_Z8`H9Ø‹®Ü®N‰n‘eÝ1`âê÷9xxÄ>d›Êgv8CíƒêÛüªÝýiYe½cæô=š¬)³¬Vßï)[·O¶³·ÃkprlÇ÷‚± ¤<Ã'¬„WX9â™Úwbj¡m ºÃÙJ\Î>§Ó™kÝ ÐZ®.q†³NîMVÁ ¦âíèù¥Œ*uæ9¹D‘¥\¯›Ë×éÞp\ˆ)9•Ì<豈gkŒb¡¨oÅUn¡Mýiïuø$l®Šá“°tLåž‘¶ŸŸåá\œFCè›Ç’`˦8¯èd²âKH;û‡¬Ň ¨~³ mbG¼û-ƉÓÏITe4®R{Û¸YÉÆ¸Ag¶òEv ä—û9óˆwæGÎ1ÔÍ ‘Ø sjÝÞ.p*“À ÕÿòŠ?W`Ùr*C0åcNgRQý$«©û|ºÆŒâ,³Ð"wxFU¦R÷oáb6²ù'âSrù‰B0š¬Ü6Ü&0V„_‚ä G”“̬-U ñR)¼ÛHæ;-k9çºb­'i"Ÿ4=–£r•ÛeQÐ$p¢TìÚ~œXø ÀW¶ÅZ<*^¼äÁÈÎgs ïp¹ƒ,À˜|NyÔôM7Ÿ_WyñXdãÑ(*Òyç¤ðI) ÞH"ç,¸à=[¤Bzô6eOÓ'¸J3Q¬Š^‰ýûdê„ › kÀIæÕïXÙ±^ÙPä˜r\`EÔõ/‚R‰[#Y¯•±ãûû9ÕÆ˜ŠAÌ”˜6Ch·ó´ñ΃½§P®I õ¬çô•GAÊjw“÷͆½²¦¾ê¿Ç¼dH!”ð¿:.´ˆê0ŠËœs~9ìvìÎK-åSÌ·ÔÖ0lû1i ¾m³Íçé˜}ËE#ÓÞÿtÂ?NÞlP¨ $ý³ž˜•€àX#·Êœä|­FR÷üXj§^0;nðx–»É Ÿ·ŽÑ=+U®i´–ðSÉ:‡êcY¸þà@˜<¯¹¶{ƒ‚óÉ5Ú<Ê gÄžç;~~fkÞé´Ÿl+PÖ '8†¸ ŽrO·žò-/%´òðÕx+‡Äœ‡‰ÉP |bð÷‘ë Ó±’ÚŠKm5‚[Ç.Í6öÄÞ9¥DKvّ⦹®o ·µ åfÖÍpPÖ±þ%”¹Ñl6q1g—eàÃÿ= å»’e0ýJ¼w˜~aƒo$?7—ÎwdÍ‹Ï4ãä²ÓÔ¿}È3—uóñÙ PaÝ$ÓôÊ”8ËŒ&Á+J' Ÿ'¯ sp9˜Ri¿<ßk.Êr$-óx Žü—4y;žÜ€ûÕ4•ŽT“ÅÅer=êRðy/ÄxÅ®®5…ö¤,Œ‹Q‡l¡³Èé7’¤:À _°sØÞrËüzœ(·=@o-éÀ#q±×ðÏ«þ{/ËöFÔÛ†@%Xƒ©²Ÿizö窇5ý[‰öÎI_€ÓQ/ÑBì=ƒ8Y }#–iTdzyâïsrO>!Ù¼¯.6ô]:‹¦vµ™ ÍwïÌÍÒ3kY^SãôýÏj3Ò¬÷PVƒ¯|·¦WÃq/ÃK5C-XV;9ÜÕä]Oþ©å1Yþѽ¡¿™ÃWºi¶øîß ?ìr«&Äß3ˆ“Âg:KFºNeØ´áäftpšm¾e[)LçšaHiªÏ@¤­,ï°Ít ˜!ÌßéÌDPÁRmk/.ÉjIÐè Ôö¯ño”uƒûlï@nݹ?¢ASNø§InŠ)P~,wF«Î”Gµ—èû`·è“Õ#0Qf@ XÌbpD‡é+ ÃôÙfO8¦&”C% ÐYÿZ°„©qßb™‹Ã$*Ç@?XŽ!ÖuU§¸–8sl4Àû¶Y–P‹Èn‚Â÷€êxeœ‚>‚Î⌫ E< àý#Ô/¦OìÉz 4«1¤¢Kp÷n¡¬¡ ÛeJ38+°Z}HYÒ\ÏÝËØ)å㼓’ü}µ_>}ºí”‚Cr‡’ÿØV ⥠;[°'‚æNn U#ÎÓ^æÑˆB §-qŒ ‰.©‹ÌôÙðàë -•<Ëâ¥À˜)óÙk=åX¬%ž0 “©èÂEM†Ø\Ú=ÖGꪨݥ4ÆÞôg S$ýä<½IT€ÆéäuΫ¬äÎ›Ô JÒ‹9îN'×zÕÉùd*(ÐxýBlÙÙ!˜,fÉ¿ýñJOÉ$ M¹ãÐù'cË© íF^(GA§}ˆî@I4 „€BëÒ>’HUûp2Λl¡K(ÐsenQ~Á°PL]nÿ"^|å‚wY}D•…êÊcR¯P¸2oür °>Ÿ©Õƒly¹ôQ—H…â §@¥¯¢¢-ÈEqTùq+÷0wyäLÆá=ŽYcº¿òÐq%A²iº.äQ){ã”Ò’,pbõl®r}9rÎ"E½ß•4#Á!%oö"Ù&˜P|þk¸1@øî<•ÒÊ`Q6ËÌ’+äU(áC´UnÌ]¤ãPXf³WÆË-·ãÎÁËÖK[Ì­({™%ÚÌE\Zg‹ÇFÌtòmÑkZL½º6½@gž ÊѦ³¹·fƒYr:š€Ý‹BèðâZô” ‘TÈdïúÓ!DX1•i¡àîd ¾gž»P´E‘©zšµYx*;ž'´hRqvÁáÐ]Û£H"¢®K´+˜”"LÚ*ÌF•m?Ŭ;ò<)Í+ç_ð¨•Ôeé›Ô×±Ð}ÀXù›þ‡™¼¦GÄ4Ó„´6Ìá­HÀr6¨%=vI¾& \ÜÚo‰SÐÖ«Qµ·4 %F¤Wâ?C])ƒìïŒåœOÍ2÷ŒNýñ‰Ð3{òb¥»óÝ"ÉŠ&×Áz)Öå|G«ï® py©:´¿’\Þ` »RÞª¹âs ».`ÞÉËD<‰g“þ<¹šÌæ‘Ó(s̬\+cªƒC¤(/Ú½Š\ÚBô,_P+9É䆧)hðT/bë÷ý 4CW‡ÜXèü JÏ5ªMXÍUµ¤—÷]¸Ù·^AN,·h&/i¢ä.Rz² b%&[;ƒÄUéYÌçÝÝ.j¯){¢Vµ2;“L/~WrfçDòUqרqH”!ãlB–Li²]$PÚ´ Ó8Óf!YJúNÏ1<Ý€¬bÍdõÎÑåêzþÁð;ž£Ôþ±O!¤)ÕLéË–iâ4Õ jí·Žê¥L¯‘üîÀñ¬Ëü;“lVþqv=-ý²Þ‰V –`D0ÿÜíüÜéuœ¨ ÍT+ ï´?¦M÷Çx{c«X9hmü~ ˜ Â6go)xÅ51™cÚ|ÀËÆ=Lš˜,´È4lF`úôÈ}|í$Ô³{Ëã ³—«@BÛ›¿ »\ÿ®0ñ!òULgf J— ,ñЗäþp~9„ƹ tÆþˆ ª¤ÈFx'Ò'sO¬y9¼µÊ(o¨5oÁñ9æaÑjôYüŠdNf‰ÙÏE.ÿ š÷fƒéðzÞ›.ÆÊ Ñ`|Èç ºÚ´¥6G\û{céO&îuq់kýAT_ô¢‡Ë}¶ ÒÙì|1}3TéûToÇÚ#µ/öàj8êOÞÄNg¥wØ…¨ÉVB@>,D¹V1¢xã€çófkŒG‹¾ƒg¢œU ùn96ç_R“VG.ÁA¿K%Ü c"h’¥Zô4•Þ)Ô…ÁÍœÝÖ¸dðÃ,C—¸Ôø:ÑÁñhĺ`LQtåMR‘ÙU²V¸vߨÇèb£ÆZg¦¹íî©q¬˜¼n»B䑸¡]@<·ß×;ëæµ“ãÓ—7³q¥$²P$p¾  ¹Š{—ÓÉ3Ùoö¤r¿¡j4 öÓ-—DLã¾GLjã¸ì&.d¢-…´Ö¤>ÙÖªÔÄH­<ȉO²£ãćžrµww»…§ÒÈ=0EŸ<,O>ÈÁÛ;ÇNUš[Ûñš4Xán`كߧƒ˜¹ì¥ŠÎÚ‚â“{†¿ ¤q Ì%õE¬ý’-ü‚ÿ(ï†[åŠ0ØrÉ&DëÄ dÔžUÛ©Ô¹<Ѧ“X~2W×ju5â*Œ2†—mcë—ª¨èÝzç«ʘ2 ÜY¼ …ÿêTþ+PúBµÿÊÿô0à á„3`L ¯ºçÓTJ$êJ 6³*ÉZâ^jb¬È+ŸœNÄÅ97äTœ†Ü™â=M!cº^­¤šÌ@ð\ŒÄgd^_ý˜nÑÉKZtkžü•¼Ž8ÿ6â¾ÀxZ)¥\¶î¬¶¼—Ã2øñeyv¹0^©s˜A5/¾ó]{8·¹ƒÐ×ßÝæð¶Ö*·ð ·;EÁ·„SL.Àoð+¶~~leñ6“ÇHÔk+°=×nÏ}2§üAžsåF’Ò8Abn¨¬´êêxJ+Õ–Ä l†/(èù¼ XvS¸ô°ã¾Î Þj)IŸN#‘;ÄCÞOê¡vÌ•DT¶­¦wÙri2BÔ•d´¦Ã­që-óØ2r2»ûi*جQÚŸý} ×2éù…'ƒüžªÓp— ±ÇÅIxæ€ÒûÝp²˜…xgµÒÆÞm.Ô´Ù»âA…K±Q†}ð·öj*ªÂËÅe®JVuºü€EcR?ÖJJ–(Ÿ—ö¸TòÂÈxŒÆyMÿòùséC\qŸ1'|uÅ]t‚“îÏZW€aÎö&¬hïËË`ÙûÓ(–»Zô%Ø ¼CW{Ù îÌ¿ ’$çÒŸçÎ_À•ßÁ>,Î.vÖˆ¨,/¯úc(Õ ¹¨ÉÌòÑCýH^RE…zYý„¹¡}ŸÝ’þº’„z~»–xÉÉåª&Ù;XWé•8õ»„ߨ0)2-â‡æçƒ)îp´‘e_»`§—s+s#2N&-ø¢+ÇH‹[Ø+¯fy†y´^wb„¶ØÑ×ZEq©œ~šlâ´ü/æà£ÁVøL®³*‚²ÑñËNhÑ€‡½v÷—ÄÖÏs°»g•±4Ö…øóÙ„X¿Q5AçÔ3 )ÄÚâw ðú›j÷¡è=oaküZª…Wçȹ*)1N6“N`s]¢¯õ%}eñj¦ÿZ ÝJVFÕ‡Ÿ¬Ûf%Ñ=Wí¨ôúïúØ40$W½Ž{‚¢›™$fÃÉ8¯Â–þ8ü²WjºJù³‹hODGarôÓÞk}KÍ"#Ö3häÚoŸN¦ªÂkr3„»=ÐMÆR„],qA¿‰@¯i!õá¡< LX\q’û‚¹ôDGò«.>Ófû˜U;çh°3©ËBwºf% ÊÔa[)-dpñ®|²LˆI÷ÅQ«þËZÿsy•ur°ƒ.¸õ³Io–ö§ƒKÁLß’" ùÙW ª}»V¸Í–øfš{\ã}(Iž·6{bkå¶¢=E¬Û±%­ðL—€{ÜÂÛ$ÿ4EÈRq%¦:ã¹}è.³Æ"ŒžŽ²»m&/ʧ±¬üµU½žÒ€—_t;íãN7/‘dÐÛ&ô6{;¼î½ë†gXTΖC.,Ðò½È³5ÚáÞ0eƒ¬w¾»3ÀÁ–/ EÑM‹ ae>þ8)¦äO•?ÊÓl3Sm^Ì(µæß‘:sz ÈH˜øŠï,A}² þZåžü(þÿ8Ñ•¾Jý³©m¦úŽsö¬‡¿ÉåßœH°\X8,Kàƒ ö³N ÁL^}H@¨3ÆÀ-ûÜ«£h%˜[LèèKX/"‰kþWNï1kT«.r»$Ažäø'õè٠γ„ z0Ñ?®Tqt e‚é>ZFÆ×©^ƒ²…&Þ¹#à~øêñ XË:k“ÏF`˜²ÕEÉÄU!q¶º¸}øzÿä(h>4UvùÚ»ö©.nÍV¼¶Ñ߯›Éá3½Ã£p2â!3²xŽ=î±`Ø á6džâÈaKî1L'lÉ~äôö+3BGŽÏ†çò•âN2kXSOÆ¥×í<ì?ððr÷ h„t³¢Uµ ÏH°×G¿óxâ‚ýJü1ó Ž$÷Üæ ãRþ˜oò ×–š¡ÉQ“‘g(–]+Ì€ËB£Ÿ?ëz]î„OLÂ*ÓYÐæ(üŒ$º*k¤Í€‘òÇ“ý7ˆ/1 “½º­–~a!䃇GìC¶©õTc¡óø+>cåFôžåbQ°÷WíîOKH ZD‚Ôsõ§ÉÉw4WUqÓvq´ÞrY¢JdRß“hRò+¨ë9ÿ±’ « $·²'PV<ž€MÂã®õé0– ©ŸvEüÑOˆä¯öŽ}²Ïì˜y–À¸—1úéq3Í¥™ûÜíŸtÄ_/|5ŽäI:ÝîaWPÉWíã—tÈ<ae#a^ù›ˆ¡0²qíýýÃçäC!Êz<çóöÞ¾wîìt^óL}U:7W·ÓEáLóEAôÅãv,È¿a‹ÛÉ»át>CÊ!ö @J@4³¬m!-xÎ4œ”•Ú]¨Ûiï¼l?ÛïÔÝ/àŸ`[×)èˆç”,6‹%/¶«+¦ÜWlcLm—áÌC 檹 óHrßRJ9mñ¿éõ–+¨Ë澟ãb®´ãâ`¶¤¸×UŠ9ƒŠ¬u×u|«¶Žç›­T – óù¨1‹"VÚlðåÒÍñ¹¬‘F’oªNœ†8äNß ÙqX œI€XI5x ­ˆÏ$®Þh8›'÷¤ßÂ’|ûb®×ó^ú~i¦ìt@d ÖÜÅðF\x¢<ºgx¢ð,q«¾s î¦;Á;ì>¦ fàT K„‚1v䇮¡o¡4Ç%Æ}÷²pÐÿr¯êµc£Ê|?²ÝC %»ŸsÄl-r.IÏhrr•ÍæWšH:Ç.e}fÒPm §5‹àÏa‹Z4MÔ¯q½+iüYC9rú& I0WG2£÷æwizƒ»Uà×ìÍïòrr? C"ù&yðàABž;9<Çgé{èÄÿØ×Z$‰aH+ zÈîNq¥Œñ˜€kÝ‹¾¾þàP¡(ùÑð‹óéäªw1šœöG”Þä­i-ñiX èI\=ã0T<£ovy “ùð*Mnà2½I@µi"nW¤50Ÿ¤Ÿ˜ €lõsA¯ò`Åqƒþº&9íæú»ÎœÐúÞ¹Àá3Îÿ£¤@àùwÔÜ‚.ÍœÊs)¨iglzE°þØê.iºBÙUíY¯^©; ßE¾0é|ÐL\Une¡k’*öc7׿ó*P3yíœ)Ü1sàäK¹öÔ,?È:Œ{ƒËtÜÎ.UqgÅkÑŒ«Õ0]BæP{.QßÍÅP.ÁnüX6èæT.þ#|õ‘n)áf“ÉÊœÝfvÎPôÈãÄĸÇ¥ÉÃègõxæ«÷¼åPS€±$Äm·´TTä×=©~=˜¦­š!ïÁ×ǺØl%WXdíšl#xž‘j8Ezð¸yÍ¡YÿÅØ›¦“ 58ùAùî}øR™ Å„îzíÆ3=‰Å£äÞÇ ³›¦ëOå­$ï©6™â§Ð´¹J¯óQÄ4š·j²ìôÜ;_ŒU]¯{æŸz4¯™©ZÜ$ä ƒõÒò·–Ì'sqù‹7œ]õ‡c÷Ô©\SÐ Ç ¥Tì©Ð8®%UÍ~è~jhâß‘Ðì)Y}rÑ@e?àAðõŸ-&$kçf™,ÉB2› ¨ôǃKI^ŸÄ†:Mÿ5XôÆu EŒ‘C’ûêËöQïç½î±¾À]dïè¸Ó=BÎýÊŠE:“ÍN:FñµùÉÓf£¿„XæÃv÷ÅÉ+A¤Ž*}­œ^@Šß‹%þ-e­qcÙ5>Ý^j‘U>wVùt[/S÷C95ùfoŒñž‰øïBº€°øF;Ë‹C,óL/ê#}ïÚÆ¥f¤îÓÔ>÷¯„àˆ†·m}ÁákÔëàÓð¨'°º1MmÖnïf€ÎYKI9³' ÀðmOçs7¤çÁm&9”ðì-æçÐ7Ü]‚ûãoC4xo)È¢”ๅ Av°üOÑëꎲø‹¦0¬àd<ú i;fÁö-\ç%uoÝOÄÏžNÙh\Î$ m¶ÓzdZ“½’Ùo®ðš6‡—óÞiÚC"Ýáí§i¤Tò+›‰˜”b«%`Ñ3­×ÂÞod¸Oodw½k‰adºí¿ï‰«éíiz)ÎÆL–êz<’iŽ“ƒ}ˆ8è=ßûµ³+h± ƒ^ÆéÍHpM`^}—ŽuFŒ½,ÙùAç—}ô,ê>6|ºút^/Û]ñj˺E1Ÿî?~z°ŸýéN—ÿ¸®†$“\ŠõÖ>ø­\g1XŠŽrG*?õŒÑ ³ìňCù„Fû¹iYŸzPîáå ½ïú¯GÒ§Ûiïö°ÇWí_)¦]¡ƒØÆ–RW¬?=M ZÁÁ£<;êjÊѨY 4ç`lSÙæuª`T S¥Mš¦h%é£hS}ä.ÂļXˆÊ¶™PUM4dõcÑCM%&ïÒ© "=éHciÂîáþ~]vöÓdÜØê`–³=”/C’ˆw›öºBúax¤·’r(2-íSÛ|1ž©†izž·&IçN 4¤Ân繿0Ô¢§ƒÅÕù(}Ÿ×a{_\T{Ý“WÏ÷;¿š»Ž¿=Åݧ¤?ÿ½ùðÏÍ֛䲯*âÎÄÒŸÙv¯:ußf͈\¹æ«ÁuîW;¯õWT$Æã²©i¥HêVÎИ¹ñ¾µÑú»N‰”Û‰>€aG†æ=ÕÔ IúácCC³Ž¬BŒ?è v§:YÌeöïáTÈšÒA.þ‹[Ÿ`g>m¼+–w~N,ü™ËÃÛ3Xœô‹vlÖâbï€xxÓ¢$&¾}”¸¸[mVbƒ8úTx=$_%ÏbÒÆ~“ó#¦ì¤òƒÛé‹‘¬4“JX2»îRä½!-·IIëSqÊ áЬéþáN{ÝÛJ¿¨úAotÁ¼M¦ýéô|T À«ûdÔhø‚¬»>Ù[5UE 2ƒNÎ8ïç‚AS$ ‹¸YKNÅ@NTŸëët +Ùl%§Ã¹IµÁ û4ùŸºÖŸ46’o½t›-42<ÁÁá«Î«Ã®¸ÈØåÜÛ{RÀ^Œ!å?™œ¹€LôÚpŽ–a š:ºùäZÇ{a†kÌÀ¢•mâŒý}°U£ªr&#ãÈÔä)&ëœIà4í<HÎTîos}Zêîg¦—òfë^C©U!d§N{^K\]\C®çN´ãü‰;0Ó ÅÌj–6ÄÕ­r±Ÿ ØeV4*y·óìäEïùawbAž|µ÷Î.:™ê!»ê¼u2sÆ•fãÑRêM\…:DF1ÒŽ 5æû9ý‡>ü®nÜùÁÔïë^\†®ö ÅÐW½+-»j?c=Y6¥Ì[‚}ß§G7²ò„ &Sa) ™5¶P(“Kõ=ïv:YG$8•ì©“ên±\û8ìÀäÀ!PŠøà´åÒà‘³NCë¯Tf<«¿ÝË~ç¸#>£2Øo 6º¡“LÚv µú˜fÔý· 3«÷ô6œ2©Vgó/ÌΖ½ ÿ‚ßAcà¼RIJÃõú³ÀÞz‹Yz¶Òyð@- ²×Þï>?vò ©®/¡ÅQDçQr&Nz׈„ T‡Ï÷ºGÇY¦Ó8œAÙ¼ç Lí‹­àçø1§ç®LK)šô”’Ô ߟKâën¼¦ z³®ò /¸6홓Õ]¦¼ÍO^=ÏŸCv$T‘+Zn,ãÐãÖÐáàÒDŸ ÇJK#JÔ=L£ø+¡±åÕðn¤ÒÁš´?u¹ïlf¼ìŽ6´_s–_Z¤U$Ø>6N’o>|^‡}ìO/PÖv†éS¸Hî”B=¢Ê­„óÑ+2Á¾¬ÿãtØ;Ùlñ!8…: “QP`WqÕN…nߎ¯N7Ù1Ê.Õ»– ãFP‘Í#îÌX¡qrÒnå8BÓãÂßÛY×6’88¡¢ûÎOKG#»†N±t%:³SµCoóByÐ…$¸ƒ›;D!â€<¦ƒ‰ˆSœ=Õdànhàíbw1I8wC7VSÌñùdzÓŸž%²\£×“Ùlx:¢…p—SëÐxÞLUSr¢Ï¹œQ­s½1’qÍ‚4tÀ• Öµtç„ê £ Òß1#¸5òºÅE‚$£_eÆ+Þ)ÎõUûuötåÙ©ÎíÙp.°éù ¿ÄõHzºJíÞJ2sqUÖµ;?[|cï@–$;r­däEÔ?5¨6á $ïcÅÿær/¡#ªª=#^,RÁ<9Å(Ö´Ò çÝÀy£^4Î Ád5Öb:ÙöQ*¾KÀ³Í¼£¡’ïCZ¤R:!•®$ˆ˜U}ÏßAsŽ;i-@u2¹–¸ñâǺßR+¢†BÈ´sxr`nÃh0¹3}âÓ±,YÇ6ã¾qŽðé@ªCj üº»÷³ÀÀÞnû¸Ù1òÓOŸ&›~&^Ûu‡*µJƒÁôãF7CO¤öï\Y˧´^u>Ÿt#(©éVŠñ¨´\­ óÖÌ×54?¾Jq¼w+B>2-ŠGj]2ö)ÈdFgËËFÃvɦÓfäÓjëËóá\ÕÍT§|Aèxà6\MYÏ뉻IJ{š&qü  ×½™\ÞÚq=Ö[å[„É-"ys82ÀˆG®¾ó£õÞör™FÙˆñ@B®_E“ž ݤJý*èQ®]xÐFU'cÌ„~5”Wó (óÓ¡h4Múçót µJ`klëúþw$xZ÷Ië4=×÷©ì\U[—kÖ-[Þ¨1»Ža½,R î½8¦!ýzÜm÷@1ùKoÿðð§vW\–»½gG?¹ŒÄF?d”¶3",Õ•(ö³@Ž2šHr†£Ø(’’C•K€ä ¼¢êJÑõûÆ!w;ƒ¥6~ÔQЭÝÕÉ3£‘Cª`ÙÈÐ4gˆàd,øú³¡Ìt7ú€Å‘ºI½ÿ¶Ÿ(à PË*0<¶_ݳľ‰Ùò®Ò¾8‹‚´ Co_Šú’ð¼ÐUsUNl×í(§ässæœM<ýD ±T á8>ÆbªÙDX‚™ê+"l‘Nñ,à:ø¶±ÞÝ„–aîL›ý¼Û~Õ9ê=ë<7­BgW™.ïr.‹{ü;VÎQ]§YóæRŽJâÆ゘Žß¢¢l‘ˆÚ…øœá•ÇÑPrÑQ1O†Õ!H?X‹wCX»ÔÖÁUNîÓh’îy¼Wv´®YÀ /‡õ&“ø|eÞWɼ;çÖ7äé&ó‚HêŠ7NÚ… _ÞÖå ã†c·ÉWÕµ¶jñ˜-ð[°´Ñ ¬@Â^N`'k£ì'¨¿IsƒOSP¬ƒÞÂÄ…פRn%G¸ ½hAP;ýé•L|jzsÅ‹,mUòcR/¯‰j$Yܨjq®Ûs­kïÍÄ2,…D ù-%îYWÀóªogЧïã(+šP ÜÉš/ílib8×Èš۞C‰MNõÌ6¦æâ0ûà¹à¥ØA‘Äà^ ¼éŽÌ&'Ìží°ÈŒt><2Hö‘m‘Ø?êñÀ¸&8BA&¯2i‡o`j¯‘“#¨Ø=B½´²4›MâÍe9Ï¢Pjç£ÅìRLsqJì`4]–é´¬Wæ=è:x‡jnŠ~˜òÃZ/иFõÿÆ 0„"*fßcÜaË¡DÕZ£¹’±{m,syÎ!Ÿ(#¯ê“¢ô9¬g „Yc1ŽD§É݇~¾ Ögà ÓÜ6Ü÷4[2Q Àï!¤[Ò¸JI¢ýq÷¤³Ucµ 4Õ+µúUŸ”Sškj£ÓóDa¬Ël;Dõa dÚ3-áù¦›²‡Ò§YWš`\ç¾MŽ Ô¨Þ:à~?ùA2"Vt VöýTy¾ õ õ\B3: å :׆áeÎ&g~&ÊÙ?;Ž&Q`X— v¤ë=°\ÆWøCê% KÍ4²×Íþ YqÝ;]WúÎÂ/•½™']ÈFÜiƒ e K +ê"ÕÏø¬ìù†”-14t—+¹/åk—Þ«Éï«’à zAú¡ˆ*pœU¸V&‰6äøAå2('y ‚L?ä¸Ãikw@in£ïµ¯HfèÅàºWnxÿ‹ÂS¹…™AüAgÏÉÛ¶åFµoã ¾”Ù[rG’í¸Q䛸ï Žð.:»œàlŸ/FAsG±mÜ´¯²‡ ªSx,Õ˜L½‹FÌ0z4—‡–7k¤õk³ MYæ“Oüê$¥oÞ¤¢Ävð”)ˆyW(ˈ62#ÙäŽÃK¾Ç„}‡€¶‘aàU Lš¼ZEuQLUT^Mäçù7áåé8Êó3[Ö/ ¥óü“/í×g=™öZ¼§š²E®/˜˜»9ŸÊ;£¯Á£CTùƒä, ¦ÃkH¶âGôéT¸dþÿt=m=…í`™ªÎB#ì$Äu»pÔã*ªëµõ"½ET°Ã™Lh,þ¾^\ ñu1 ߦà*;„Tˆ7àÝ:Ãjðéx>ú€Ÿ¢ZVH¼£ † ]¥WˆÏ??‡Wh°“ÅÅ¥ÑÞ:¸!PÏ[ ÉŠð‰œ*̓M@ÏÂ;7?]Vp›óFõÚ“ mÕž<‘Ø ÙvBJtZXš´‡ãù$éeùîùÉ0=ŽÌ³¾aP=È3’'?&ÍäqÒòÕ‹øÙ“Mˆ&/‚NFÿJPF(/OÀàÁvö;tðFL ¨=B>böÞ~˜ ±‘aŸÙ‘e²d…@²:ŽÊkõí½²j÷´ÍG@G›•Äꦋ‘à;ï¯A¹HýŸ”ýó­uª6ô |ÂpL˜¿{ Újp¿N³Ñ‡u5—3¨‚ õý$&]õ!*­ÁA}P«µµbêÍcó§Ÿø=ˆ&ÚÇÇ.Y>«å¬VëJ-þcÝÇÆãd¶@n-©ß;8Ÿ40˜æ_KÜ?OD{ê²B̦KϨC©<¤ÏŸ<ž3!挼†+h:Ä¡z²>¿Ê P5¿N'c¥ì—j\åX%Ρh›ÌÄå5:K”×[ÿü<®'9ý µs£w[ ,èìÔÁÍÅÜi(úF+b™<ù}˜Êé·h›W:ÑNÙ0œÎeš¿mM{bäeþ” –[î;öÁüŽ;GÇYµCõDº¥ã¦î6æ¯zÖÞ•Ç9¬µn¾Ë[ÂɆ¸ÃxÆ@W(’B‹PÜ»¼;õærˆ,¤„ž‘h\E¸¬ÿ €@²¸¾†ðÑ2³ QHP¥ ô’pœ-eo zMšT1ܧTcÉ܃d_0ÿBZ˜©! ËþÙ™ øƒ¯1Y¢¸_°¤P…ƒ¥èÜ:G}кdìQ¦À:{`ì¶ãÉ v$:>t_ w.Z,Àcæ n?CÈŠx­8yÑx »y9¹CÀBd\p0ÂY Úv: çÖ3™n¤;«x‹àw6wÕ`6Á81ØN¸èL¦’s(ÑŽƒ± ™£_-ô>ŽFžbŒÙ22uœ½ÚÁI¢?‚öAnÉ;ô|1ÂŒý#q'×:µŸÝMÜ·E¸uÐ’y1Å*Ç‚½Ró[Ws†w’«˜»§A…. X°¾«#±wn\ñ°}tÝ‘9¥µÿlÚ¿¯ÉO'ò@ [ë«ûª>É©@ÃÇ ám>Œ(V°9ò2àô|:¹’¹Å\>õã3™Q†¼2¸ˆþ©èùŒÓ‚q®G`nà玸ÙWùï!•„\=D½‰Ó7’½læõâäC›§³ùƒ~øÝƒd7¥*JÎ@%A×ÞäTŒú¤3äáP%-y® |3M¿åËÕ~cîûoÀÕ[úy¿Câ pWÌi#)d·§©I‡xÙÏd_g°ÕÕ€Ybùò7€ñ§zË4Fj! ytM\‰<‹Ö!üš2ÎHž/¼ªÊàô&c¯² 2½Ñ ÔNq¾ß&~Ø[Ì—ßM(Aþ `n$)Gú³ús;6-ÇåGY1Ù@:yÊ€»’XMHìš:ÈhP'R §¯§“ëþ… ÎŠDD›¦é{#@ÔÓñ 3ÅÖñÔc5d2\…>ýÓYªj7ˆÁ$ÏÄÄÆ€¤’®Kb;žÀËšêÀ£O ¶2¬\ìÊØß–"°ö‰*6F2S³pàµ;Q7 Í-lc<Ü4J2BôK¬l*SBæ°<ùEª`²> zy;2<ŒRÂ$Ñ 5Wˆ›þ™dé6ÞΫGÓHQéûÁh!hYÑ6©ÔgrtûrŸäâÇs- l;j¥ÔF¸9D#¨ÏmôŠÚù|Ër’,¨\EÌràjV—Iyõ×ÎhIPµnT¸‡ŸT„`(ëC©$í'jª)(a ˆá‚ù|€ ™×‚‚÷!P_²èWâç»xå ×‚†IH ²Lª xCe;„Öîrn#PCå¤dt9{;û'»]!¾ê¹`,Pé1$ùÆrHÒš-^<¸ü†o0œ ô{XkG\eâÖÔ20™ÿóõÏ—ù÷k]þ·¹ñ໾Mß²xPyŒ ñçáÃïðoñÇû»ùý÷ÍþOóû¾ÿ®ùCs³%ž·6¾k~ÿ6V¸ÎèŸø•ˆ!!´:«]Þ{q‘?Õµð¯Óéh}GIÿ£”ÑÂkÕue-<Ð*é:žb‰2Aa,ÙÌ®–|§jð” ~s9läìÃxÞ_N{–^õÇóá@B2öZˆXkð‘ðP¥‹ƒE&ß'£þøbÑ¿¢&ûçA¯ç‚>ý¼¾ކ×ÉËþ§#Ùüp:¼Ž…ôÚ~½'©8$¨›¢¦µ>h$Í¿ÿý‡õÖF³•œŒ/= Ú3Øé_N‡g)õ ½‰u#zx(ºimF»©­¯òO­›ž !¡ž`A1€µ~À úœÅt åÖS±r±sç“éÕL)šÄ奤(½<<Jâ5Ü—ëtz°<ñæÝµb:Q–ÏMB"¹™Wéü±Ü0HÓYͰÀ‡œÂìJbç}#ò€p60ép®)£ž•¨°ƒJ¥™‘t0ê¯ÒéƒØL I’…†žÉµT"r“Q“PSª4%Ù©žÎ&´Aõõ†}+öb‚Ö‚+ÐIû£™…»Ñ Òe˜Õ¨¼d(xAùPuf"È'VaÛ⮀KN óCÿ“©{û Š“F7¨Õ2>OS@1±«É8Þë­)ÖlïàÅZ":HeöPÑìøp ­…Ÿ%‡Ï“WîÎKñ³ýloïø7œÈó½ã빬 ¼s²ßî&¯Oº¯:5XÖîÞÑÎ~{ïUg÷]Œ˜tÀ¢–½lïï{«<üå Ó…©;K|Ö©íﵟíwä@b‘»{ÝÎÎ1¬ÆþkGNLB)^wvöà_;b-íîok¢Ïšèó¨ó'`Íkï'»íWíbiõˆˆ-Ù9év üE€¡vtòìèxïøDÈ/wÎGîÏ{;£­dÿðurÔYK e ]H‰×âßÏNŽöf5,Ý=ADClï/*bÝmñé.÷ð—*$¤|è`€°_K~yÙÏÅÔRmÁ‘€ØÎ1m&Æ<&kL:/ö÷^tv:ðözùeï¨Ó[µw öä°¿´Å˜'°dÜ"1+ùO‚°k¸‘ÉÞó¤½ûóL[6®‰­?ÚSh"ì¼Tà~°âë€j|ò„Ž¿Ie‘´³ƒ‰á)\R8#jfWœx`´Œ¤W½×O/eÏhà+çQ]Úôz³>h±ÿJ~©æ‰yøí•øgµdçýAúàò)ñPËé]GMc~^IDߪíÃ:t|ï@f"­dÂÑ‘@…/\íFZ%÷HÐ:ühó†'ƒƒÜT“‘qˆè¦ÿû«öÎK(Â.c“ –î ­ýrúø·ɯWñ)GzÞrå6uqÉëä~ÎÍýf>¹.ô“³ÜuÖ=fuó]Ãñ_YÊEþÙÖ”ÚmDz3‘?+r`™.€K‡ÊöJIdÙ¶™6½ËeƒèâôŸÍ”ÿF¿•y—Es•×ÝüQ¿Isš&uà€1è[¶Iœ³ /’Á*©iÑÙ 1L±vÁà®KMâ8Ô$$èì䯤Oß¡ñšÃäÒ÷ópáªy¢„¾: æµß~ª­[*Ða¨ £¦2®YwÝN‘PŽBOñgÛéMš”ô§*ºötx!X)ð%äD˜õ&|¯ò!¢ëÌ¿ÎåJ ?¢>ŸMøv(A‹±Àéî!Ø5q˜®ð~¨àߣÃFÆâ‚}|T]ˆ¾UÛmž‰S¯Ð ¸yòbOè%´¦F![~Ïþº¢ï5ÜÓè4–³{Ô¤OºÉ« 럺̭zI&©Ÿ©êŸzHCºì4ןNÁ[9Óñ#jf)é#•ãýTÒ†h7^Ré{æŸ[5»U¹“ÅxŽ%Hì¢ÍsÒöªÿ¾GŸáÈ£³õär%Åç/€^Ðê£v _¹—³ù×V uÔù7:™J' ^ýªÞ¨æ–Ÿµ¶l~÷è§ÖÀA?Õîe?O¼asJá ƒx8þjÊKìrßÏFÒAŒœ1Tg( &˼)Ú~?qŠm‡¹ÿmKúJ²¶ }òl rø)†m9óã’"ÁÌ8¦ Î¿c_YK‡9ÔÒÛX/ÜÂ~©Êy¼T[,žmq Í*üÖjEô Åž y¦ŸÐî'®vÝ~¢â°«'¾ƒvãG¼GøÖ9wn œõ§(ˆeøqcòèjþŽoéÆº¼›Üm´¯z@˜ýHc‰IàöOâDÆ–… ¼ ReZ„(}œ¹+Òæ,ÓzÄö‚¶aw€BCÏL0Ä5‡ÀR{Ç…_ÆåØvO]ÂŒæo‡ª;T›@€4²ÿ~òÉZ-B“„<ù„NÎØ®:z" Š0Ó½†íA 2¶f€®öül¹§~— "»°§ˆ˜x—†eÓaF¢ï§I]\W g£pHqqQº/}6Þ¸5‘Ý·qèxUqÏL68Âa0ù—êFküh¨öc…ƒÌ`¶Öª&ìN#*;l{×Gp“Áu|¹ÛIì.X·wýt”žë/=Ø¡²—Wˆ3”¾SüfsHOqú!q<“:»Ï~ƒ ØmÌÝ=K*S ² §Ñë¡"e12Ñl2®û,šKÖ0møÄTOfý¾ñâ„V¯ƒaù–ýÀÊMì£I;w®ýטù«‘gÿ}øý÷ý·õý_í¿ŸàÏWûï_Ëþ›cþýjùýjùýjùýjùýjùýjùýÄ–ßOjú]ÚúöÒ?k¡_2(Ç~ôŸjŒ h•k|î©pVi}×”þÙ˹1(ëüTÜO3"'äH2«qMg[‡šõ0ï‰Îv¬jñzšèG÷p÷îÙY¹9Vô2™¤ºãíDgZ6–՘쵚í66LßÔ¹ÂíÖûìZ6ŒY)½ÌGÉ=ùwövû¶eöÁ/³âdª[dü9휚2 *¤¢ö"f§¯ îß§a_™Š¸7®r×O’ý- àæÏc^J è‚ÁÞNj"’ò$V—»7¨éÔe§‚ïM±Ÿ­1-¥ñSµY³œz@ñQ1ÏKßI0•è ð@ú‚Íôž•¾ ¹¦KÊ`±=UÄñX©òT–„ô워VßÙLž×£þ4º=Pm–ïÖÀ ÐÄkVfh`ÄØjà”7³ Iä'XY¶œÔj#¦£€UNé7Î@˜UëlVaJB]-G  *Çb†t ”wsMyàö&çZùԃ䆳žÀ·ñÖ‰ÅeÄ7‚ ž6Ù§­7[äRfÍËÆüzKÖå<ûïlxuv«ößÖæÃÍÍ0þ·õ°õÕþû þ|µÿ~û¯÷çØæ®‚öÿ˜Œæýqò2þ;½øÃÍ¿µµµµµµúˆáäŽÕÆ+¹àçöþ‹®@†lP÷ÔõjÏ÷^ô~}ôÐ*éí³&©N0!ÿa»ûª÷ð»à[ù8ÿó£Í¿oü|Oó?Þ?<³[_ËBqÁpwšÿXÞUþSçÒÈT’ê,2[Ó© 7Ÿô0þV… B°•ƒË)É@!Ú˨÷mx±•‡0:áÑÞ«]ÔÙ ¦wüÛëŽ »_“ ½-u3ŸF½.Gxò$i‰k]ÜÈæwó¡ûûüÄ_…°&o6ÍìÙÈÑ 'ÎkÞp-n8Ò}ª£·¿Ê:›a>ò ù´á3úcÍØGýO1;Àlž^Sêr&æ3ŸÑGƒ«ë&ó¬å?›eŸ9IP†c9{!ÐýþÝõ¦f`ëy#Ü»½fë‘ñ]"ŸBÒ\qÎ>Üò^4å‹ó .æ›IrúAˆ§?‹-„¬üÃ÷ª*Ó÷àûHßçgŽO’ÒqÜd°8»øã‰À$R%Øn…¸X‘:ia4á6ü7èi›ï©9ÔY#þPƒrOÈ/ﯮškðßÖ·W²ºÈ•ÎÆÝ…Ö÷m $ÿµ-è˜D8i¸d;(9ê\Ȥ›–„lzºÅ¼ÜTû±ôÃI<Ðx§?t ѳùäŠÔ‹#ý®%ß5ôWñomû•OèFˆk5œ6¡^‹+©óϾýåÛ]¶EáZ¦qx2°üá;ð áÉ—Øynj—‡®…éÇܳ® áòÑ"B®†b@Õ{Døfˆ)X  = ,2·ñظ٪£žC®ô^½:üy÷?Ú<^”Úʇ癦ȬÙ0µÆåöK¯¾ùø+¦Wƒ\«(ä>Íb},¡„sùÅnêÅÆ.™Ï‡òR)Œ NËS;[Ž¢.À°œZÜÞ>:î=?ìþÒîŠÍìjQFUê-€OÝí<‡4vÊE¡»Å3®ãZAÏ²ÜÆÝ1_ë˜ä1sûlYïo ¦-iˆ²‹—‚k«'÷P!±µœö#ìU˜7Œjä_ ðfa^Nw>ìzÐ:òž$Â'SÌú¼†2Y‘ñ9φ3±1K‰.zÿ ¸w„…ï¡^}ƒö…! 9ýX±KöøswÃéCßFåúhú}´Ê÷Ñjxp)ßŦéÔ§˜;gƯÁêji Î,àžTÍÉ^ä»ÿ’¯0´©À> Ûxg8ë]OnÒéä¼U=6(ûhæ)-ž¹ý¶ÒÁJ"­ÂêE·Ó¨¢•VGÇÝÞëã®T\‰w@¶á•ÒήƒÛ?;ÃÓ@.¤»úK™WPÎq-ñæÕ)ÁžcI=x—ÔãþhxÏ$¦ìЪ¢l$Ò‡ýΫžØcçá~[Ñtº‡ ðEߦQ Î]ïȼq(‚¾>ÑrI,ø3ÁŒbMù±[Æ>•õ³7Q>ÅäYr<˜Æáë¦ÚpÁü#]h™=–û ­ØiMÓëxYÐêæ†zswFaWK ìþ^â–P7‚À9UÌÞÖ7ÓȘÇBBÌ÷Ís±'ï…Ð䩚ýSgþm·û´ÏûÔì¤ÝRû‘þ¦Ì4ÉÓWªíý½‚×:}I®l»‡.:“ó0ÛLYô(T.¿¡vÍ'üÎ ÑGÚá%#U,®™+q¨­ÒP« ™Óñÿ³÷¦ mËÂðý~ÅØ~N¢A$±c®asƒÃb'Ç8zGÒt¬íj$Çøþö·ªzŸéY$Æ $i¦»z«®®½)È@5¡ÍÍñÉÁ^R”€­«Æà9ÍF¬-ïvfðÕ6*ì¿=’ Ìb ¥5È?Ú+jÅu{#¢ãÓÍ,=¢¼Ž>úq*Îi¸ËMxæN7š¿tŠ+™gɶŒC§ø@Ãâ§y×þí6-`ÐÉÇ¡„Ý”ç\ tëNß¾­Ur¸ÜîZHeopüh‘"©nóxÇà)7øµ;ãL¢Æ´/XLµºù¸ÒÀhÍ)uƒ|h IªÆaѤitÌà ôMõ$nS!O,'0ÊDƽ,²—гSEÐÔ*WäþOØùŽs ˜°ub ­‚*-šI³S„qéÒ-¹}þGÃ&ç©_«ÛY 4Í@I¼AæØN¦äˆìÙÝgåŽsó\öb@øÑã• &“‹¼l¡Ç<$TÛzÇ‹Å&&•+gè,é ~Ab(I‰†îœ˜hWÉOE×w„ΖÇ'•‡ í³õ%Qß7Qç­?B=r¡ž¥slàÿï–ÁŸšæïQÏ—¨ç‹UÄi Óí!1"­ ~ÔÀýX¸WÍf;,$>&œê<4އ¸ÃA—Ã%-J *µGÚtj1Âð_Y§ö¨ýzÔ~=j¿~$íפgT‚Èù¸»~”Ýõ¨¦JSSEɇÁKM™ÃKá Y£ÜŸ[¶Ãîä97ªv÷ATž¶CÏay÷!yõ¨îdwícãø÷0B(ê›î;Euåœ&ý{@-\µdÑX*–jŠƒD9¿˜"è'T-eÒpA¶È„GãY)ü p¬ Ï”ª‘Ä™g+¯§ªv˜@gPˆ™@iQ<'Ѐ”Â@JYŒô¤6>¥HO&²]é±a¬„aŒ½6€&ÕíÊ1«¼q˜—þ&':Ó9+³ñAX0ŠÎk¶¹Äƒ…øk&@Ú˜¯ÖQC0Ž]íÑôÐR×å¼ÿ.^A<ÿü‘ Nv•RÂxén(qãW«! j!aDðÐ%†3 /Æ °æ;Ö¢– ×c³‰°¹œãÙ9 i{•ãc;Û1¡±¢²D¸7gL ó„:îÆðoÓ³½I5Œ‡øÈŽt7uq•^ÖBÅø!Ã[ù“7".E ©6‹†n3ÓYØb ÍÛô˜éé¸ý,ÁÄ•¦u“P»*ïaÌ>®›UÇòmv»qt0C{¾ŸÚ5¬JÖ‘÷‰Ž¼ãƒ^ +Dè’Ü¥[î‹’e_”ø¾(‰}QŠÛ%Û¾Hfôn½/J|_”n½/Jéû"q,j_”¦±/JSØ¥ð¾éãð¹$ñ¹4!>/ßµF?ªXk3Þ¢å%s×ÞÅàÍ5Ò—ienÑò²¹„wçR[TGÆ&@>3Á¼g(œÆÐ­þ·°üß„&–ßZBòBrxƒ]­—±;\¨ó"éÂ¥ËW™úDÊMT¥j.<†v•÷\Эì‘È$³<Á<ú‘†QˆÇ{{Ûÿt®)â~nµ:W›UÀ’W 'InP뜮9¥ 5¬­)‚B£¯Œ Çç*8X((¢5–° õgf@7ž~Y/3ö±/ÅdTð×ô™~è÷»û(=î"ϦâKé÷¢‘ÊÊÚ[Ž) z`[´Rdež7²­ ŸþÅUöÊÇÑ0 ¬G‘ù¹¥%Ö΋e5»&i*ÚÈrhŠ+μ °á²+X¶8>ò<ç·pý+GïJ÷±ü’.3 "mz ÁJ±÷Réçb6¤ad"š$dYZ‰]ßzÌúr­¬uÁ W…Õñ×aÅàÍü)I ÆÏÎ2~¦ƒèø r6n¼öŒNÃÙ õ¶c ÉúZ ,>r1ql&‰–èe%ÐãvY¨wÌ£pìð‡ï’l."ñ¶à¯“ÚƒKqá’²+ã0Ó!祗&f¢v‹qí*ûsQ3J«v‹²]‹Öë—ìöh˜nœhÍ"ma׌\D»“7idÏ»=ÌóŒÒ¯85¿‰_)é1ùÅñã…Ôµwë€bãPïÊå&©n÷zý…‡àxr·š×Ud¹;¹ã.ÚË÷"¤!‚v 'MÌü‹ûñd7ûQâ°tá¤ATÂb§ÎŸû £ÒqVÙû¢SŠkʾDaåJ(.J!¾•õXM6)f0ðZ¼¼Äp•——qëñæÖÅÒ±ŽØåJöÌZ‰ya“³¹&f>ÇDzZ•îWö1{lôiµêòìì²¶²"G•ýÝ-ØL4':¬í°UwŒ|¬·h•<Ù3±Þ¢¡Å’;^NÖì°¾OîÖpžÖQ4OëÈ’§udÉÓ:²æi…‡ñOM¬jñËI ”¸”%±o¤n1c]ôx ×-iuÇXnS;gKäZ4H¤,Š(ÂÖ»Ê?#b?Sø¥Âj½€ç1õŽeT¦r"k)è–ÇKàø³qDó›Z嬰S!’Ó@­±rÑ⌘ñZÉùg¥úîàèÈ¢^eJ/ß+Ùåd°\¦¹™Êì0E—1GÉ™@'Xï´1eO98ÎzÏ„òPÊ5HZ-Kä½#gj&ìûNú¦‚Êmïþ’ãÌpZm S¬ ú±lóuÕϨ).†—¦¸dVѸ·…û˜$ïæÊœ$/5$´×/Ft±~;1A°!9= Õ™HDôf`µù‚ؘoÃF)Eo®h(²¥Ô»k—“Ì´JEX¸jºã™IXuešÄÒ¨N¤·8• ½qBóP²~{´R€qíW¡¾ºT&@“áRµYéìH‡8‹z1“ º²d¬D!„ãREòv/IJcZC¢°§¹;^îøZ®"¤¤trßaû>îÞï¸{§î›r¾oü+ºq3‘Xºñ˜-î1[Üc¶8ËbÝS¶¸1’®=ˆ¼hc¨B¾Oþ°G%Å÷QRü¸šˆig™È’ìVú‚Åië "²Å½ê §«/2LTà^Œå‰Æ‘Ö£Ý=Jë8ŠGQý0û_Q]ßHJÄ„ô[PÔHüüãÖú»m­W޶nT~¼M›Ë°§©+µÓ_-õRX6ù‹¥(’Í´$Bò´DˆlSœ–8V C.M òb¤Ïµ)A^ŠôyZ—ݨ7-ÔX žf`p߃òžø“Åe+HNX“‰ðÅËÛŰÀ]ŒHÜYÒÃ|Ó¼Ï,9 ’s‹d"ÀñC(…‡PŠ !K&>„ÇÔSãÔS·òÃ)›n§ŸQ)n¦¡;)é|ðíÁ-Z3%äWk‰ü(…W‘k¼h¶L4ã:ã”´ÆJB½VË8² gpi¢ô:ã·³l¬Ô—±e ž9ßÅÏæ®’§$²å1šRâm€éYÕ<âa圜ßö;~—i¾m®ÒÅÕ‚¦Î(FôY¯§Ï ÒÐ’‹¼fÕœÓßîÅ:§7— ˼“¬úĵp žœ,Œ9ýçüDâ ã´„’‚oÉ×£Ã#i³äZÒøè¥¡ÉU,¹Jb)Ÿ’ñžS2¾ÂJT9!Éã·Ôƒµ7Lê«­Nö §ª¯—iêèÅÐ-æÜïú¯aÉ {›5‡CQiTÀÏ®ž7›’êGr;ô˜ÅnLªË,ØáZsaj5¡WÖ¬˜"Øv!C!lQG“ÂÕKû8.^X2FÈ1Ö¬ÐJEÍ©ˆy¿÷þÍ-fqÌ”¶a²/Baºó^*McÞ9ÊY‚eœ)ñÀFŒ i$'mÄuÓa£VFú3Æ]pwžDGP&-9Ž~ xèY)ü,šDg2*•˜iæý–%óHNp‰iIËÞ‘JŒÌ45¥HùññÅ×ð¥¹:-Êd¬ðýä²y›Þ}ü5H_…RhÒÖÁœéϽ] èñ2㌟Z¾™±ñ3<3?gB¹wÎÜõ®ÕÓ÷d™+²Ün[frGÍæ‰zßù~,ûA9­Ý_ÊŸi_‹ }FI}Bp*dW;©U¬_!ÔkþØŒÁW _+ÉŸ/êÏÿãzüùÒc’ž™m!s’‹»~Ø£ÄÌ/³=<£Ë„éºÎT‘D˜|ÄÑxS– Ç%ò Ø<‘p¬Ÿß„ã\l¬cä*†ÛOÈøÇ I4m8öñV‰xµ ádغT2¬KV]‹Ö¶G¤ÐD×&Û×+#h.ÝØ']¶ÂG,ô¥ »E¿fà¸o‡X’r' VJª”owå[gUŸjV…£ÓŠv:€­Nt‰óÿ+.kJøñd®qĬÛÚÆ´cصS©ŒÇ˜kqwKzÜ]: KÔ®ƒ¤·“^V #«æboþ¾¿hH±Hû÷·J:ù{•BëPœœh¦ôÍûÍ1˜‹p¾ÿðÈ#ã~žnuXÒÕšÏõ,lÃØöâH`sÔŽiö˜mTŒ±v)ËB)˦q˜< GÃãÑpGWRøC¨0ø]˜î¶wDÝ”*'Õƒ÷•£½ƒP×ÈW%žkNEß'šGà1ë݃òÌzÌzwç‹e‹MW’ýݲàg ø>‰ð¦­ºX‹“ÃZt¢ÒþÇÕ̤uq”Áæ"ü¨;ÔÿÀºóÅ{Ñ/>êÎ3¢Ä˜Š ýÜ{Tq?ê1õX1™ÂañÁ+’²Æ(·mQ¤qÉ3îH­øuëôžVÞóÖÄý‘T?’êGRýwS9ÿØ'@DÙü˜ öÎÄþ°~½2KåÒ6ˆKi[â)m#zÅiê(K“Ã*¹wïª,ô˜…ð ¡ÈŒêo-ŠÏaŒâSOµ»~!²Î.‡U¨¢ÆJø…¨ñ&XŽ2N[—Ò‘)ìR­ c桜€&´RhÜ~&3…–öÁ*,$pRS?€²Û*bs¼>,sÅdØQ;ôt¿w2ú‰qÄvÆLlÎGbSó>,¹W“–Ðbè4ÅÚÜYáפa˾Cõ¶²YÊ´K<·õ8ŒjYá«ÛñÅŒd™ô˜ÈnÅ›€dDLrãgr˜ÆÁp7A,¶L‰±ñÌêb¥¹ é‹“ÒX¥4¸SÞ;NkÑ–p5ó8DÚ‰”аOFŒuàoÎ7^8¿`šÎVó6ÑS ¦ÚFFèL©ŒüÕIv§®—¾û&k¥ÇÖIO4Úiy*Çøaº*ß}pL²­çéÿaÖf§ëIxìÓ!EGÊG ýH¡ÿ:úAÙ K?4á´<£ò£o|·pâ_9Z¶ö(owgp@‡òÓTL¤EÕ«%þÞ*ä᥶gÿe|“³üîì¿)m½µå Ö_²œ¿˜¸Zm·º£«jIÛiÐêž;çþÐ]}ñÚ¹òIõ퇭ò¡ë`ºâ³‡EɦáÝÀÒ—þðßÿî´Çû¨åÕÚ>võY«[o`½ ®ƒ_èÂÅké  :DT‚<$d)ô€7UNœ\ÎÖ¿ŸmÐ\>÷®¥*ðîø·½“U7eõ%£ÀáîÖoï+¥7GÕ§T ¹ˆ ²gæÆâoŽJ謹óšfŽ+ÿtT ìgœÜݶ–[Xå-h{Ï e5 J‘÷3s–Övp5Ý$­š³ÄTR³Þ¹Ç(3‚SÊÇ£…÷ÎèÈ—ÿÏ"ih\ ¾ë¬”¾Aš#R=â·ÿ‘‘>ôõ7ùÒsnru[Øüõí¯"íY[Ãe¶4¦ûM:ˆ²Æ"©‰qÛiãµ–±Aks|‡R‹b)"- â"ÃÒb5!Ý¢ s ú·ßÔ‚‰&޲ÀŽ[¸¶üb=²gÛ ¼'÷æá‰÷˜a3LMo¬kå>¦Ðü!Rh¦ª…Í[aëd ‡Fe5£‚:BÄPløJ¬®¡2MF =Ž‹Už 1Ý9Xm(%€ž3Üx{çwôf½þ1£È®é®Ho·Í§oß*–bq`o›ŸƒÂ§_Ì\ˆÀ ždb2°¤qQ ™C@p$LžXØäçzìH¤Üac|ÄèP)ƒ,€ 2LUü<BË “ äŠ0BøbÖØÈqnKŒÚ©2Ü8^=æqÓó¸=n´‡·Ñnq½ŸPõC¿·`">PãÏO(Sý×Eûñ9~®¬ÇÔXʺò˜ë®ËÆIZس{K…'ǧÄXõôW?°\ýã ÏSމÛÀú5¸ñA?J{”­ ¤¾—œœ&§< ´'>ûQ Í*ÐNJ]ÚÇ ñð6Ä$xZÂgõ“wÚ92’î tëDcZÜ~œ´?B6ŠQ\6Š"ÏFaf}xÌFñCd£xH¶b™œeêI0dŒQ7` ÀØ)0@…[çGȘ‹á1Bä|Ó"}×õH߬Â)Þ«%_‹O~‚ %&4Ét,´˜ðŸ¹w*_‚½ZDÎÓJ£†mœ>rý„™ŸeœéÌØS-מe* /™%ËûáöR>£ÿz'J1_‹ú^×£¾3Nw)н1yo,Ø[²aojbœ1AÏç{K©Ø›%ÃŽ™šgœé{Kwƒ½¥ŒØ›•b :ª Ø{×n™‚3xlF&ËÅCV˜™JÍT5¡@’Lhèv'êa)sçEJ³U—–ÇMNH`ËHpÏ[£³\AQ¬šƒåœè˜5qÁ$ê—’¦É:I;E­¬Q®4›€óc:èêóžGtÒ•ó|ku’½™{P(…𢤼²wÏ»½ïЩâNÍoâ×á…ï4É2Â7 w«‘µmõ»RÊþaî÷Dsï–BÞ91¸ ч¸…‰N$6Ä:Pð‘îÜF“mžÆ‹êGq/ÒµB·ÃVû~½ƒt쉦KÑ=Á wìKæÝBî> ÀÀg#¨™âŸe¹'µÞ—APÚ> Þÿ×ãOòO¿çÆ<û],,,=ÿ5Ô¥ïU<û†€ƒ õÛµQ›++KÿÅMÍ¿‹‹…âR鿊˅çËKÅçÅÅ_Z„òÓbòÏ÷49èõ†IåÒÞ‡÷ƒüü:;îÏÌ,‹È=ôíù-ä<†- ñ?òÏGmoàT®ú@¸‚V¯ðØ]¨2îKNˆ'åpÚ­ÚÀ\;½¦Óu)uIà {N0ê÷{Àýxã¾ÖøåE/ðàº;ô®f¼nà üŽ×¶ê„/pêm,ú=¨ƒƒCª ¡ƒt–¶×=yçþÂÌŒcÿù0h ‡~ש];‡­v«ï¼õþã·YñƒAë¼ÕõÚNùp˜µ†ïlõú×ððbôÒuŠ/^<Ÿ/€!>í¶¾øƒ 5¤¡nyÚ Õ8÷U«ûþe° `f~š?3G~£¬s«6Â¥ppvG0k –½Ñ îÓ“ŒÖ ¸ØNw.[à §7 ¿½Ñp¦ÓÂ93) ®HßtpNÐûÒjÀ‡á…7dâ\¯Ýî]bŽ ôGi1ÀJø’­Ê¬cö*ÀàÝ¡éêÀ^ÇÈa”ž¦Wë}ÁWb»=@ óÆŸá`¹…½Ñn#Ô#h´ÞöZ°×hQ› ÑfcT÷máà]š¨3&‡ÔèÕG¿;ôÄ‚ý kÑ£lpRûƒ–×Ô¼Ób!`}rtû~‹*b®×‘»%ù`ª,­Jkðna‚ßБkᓸáh‡§>" t¬Óú›±aüäÚj8˜ñL_° ×^"^p4s‚¾_G<ƒª-Ä>¾O ׈PÀ¨NÞî;Ç;'Ê@pàóáÑÁûÝíʶ³ù‡sò¶âlþq´ûæí‰óö`o»rtì žx’“£ÝÍÓ“xð´| 5ŸÎà‹òþNå÷Ã#à#÷v@?*ïŸìVŽ‘{ÚÚ;ÝÞÝ“w€³pâìí¾Û=b'(P¼­ÌD«9;λ p?ðµ¼¹»·{òudg÷dÛÚÆÊÎaùèdwët¯|äžWfpXÛ»Ç[{åÝw•íhZt*ï+û'ÎñÛòÞ^h”ö+GØucˆ›•™½Ýòæ^…5ƒÜÞ=ªlàhÔ§-˜8芇•­]üPù½c)ý‘˜3óÉaHå=g»ü®ü†–K™X’­Ó#J‘ Ó0\êñÉîÉéIÅysp°Mó|\9z¿»U9^söŽi²N1çÝvù¤Œ #˜)x Ÿ7OwqÎfv÷Aˆ9:=<Ù=Øway?À¬À¸ËýK“{°OC… :8úâÐÜço+ðVx†fªŒS<íîÖ‰^ Ú;¡t5rŒÎ~åÍÞî›ÊþVß ”»Ç–j÷ ì²f?”¡ÍS2-ôŠ}Ô6O éìî8åí÷»ØmVx–þx—£ <:vO÷”<¯ 1ïmù}EðìoQÈ{"Þi½ª²¼;<8ÁÄ×oNËGÛÒ£)µœH'ôHH³u¾pñT 33z²¡a£Õ£LCÚ£PJ|iÍ”A Z+Äc#À˜Ì8{>P‘Ùu¼:| ^":»òWή^”ήþYûôñÏg NÍ«7ì€ÊÿÜ„r[¹S³Å+ ï÷«ÍvÛ>s²ëž'†ø¬\‹…YæãÔeX;à³³9øçnœ]b³ÁYw®VÏX¸{6È^x0NánB7>zW `Pþ=v^ÓÊy”´M0¯°}UŽkv¾Qžß¢BúÄ ¬\ØŒ]»äбË( ðšò¿Xˆkm²Zž(N²ÉÇO1 ɆϟšÏŠÈºÛ·DÑ+ÕëKOÙÇÍÅúr± ¶–Dqóøõx£ÍgÞSñ Á?ÿ}zVÎÀÕá_+úô0µªGT¦ÌI ðW]L$½ŠÅêfyë·ã½òñÛêV„RœmQë Ï>¢ÀÖv9JjBØ e¯âÅ€5«z¤Ûœ#ƒ¿Ê(È™§QLX ×Ñ(ö×Ò·(¸Õ³éÀ÷V§_ibt•ËSõ®©½£röãhq~ùù<Û¦Ë&"–OO÷öNOŒ=TZ\Z^y¾ú¢0OO¡ÍŸ¦•¥ w}aÁ[`?5pÍö㉉²Ö'Ö¥þ€X);ÓrvVÇe¹ºù,ÃN¬Á9ÅŽ¨Ù¸³lóãŸùO9À?XúÙï²ða¨0¾®Lˡٺ`8YóUœ/5óª!ȵðó$¶¨èÓX Cèzã[À¹£ñÖÙx«Ÿ4X†RÇÃcŽ×ÔX9Þ™ð‰¹ZŒ°y±ç:À^àPq'ú±»úlóÚFÕ®3`ÄÑŸ "E‹¡¢¡ròÁüéÕ¯}†ÂKª¢ïDtµÙP`Ó ö ˜Gà«à÷Û±÷ÏyŽ5rÕæçÌcÅùØVAR ñæçkXªÎëÍe¨gö`ìʼÃóÖ¹öjÿ/ã\Ë’^ §Î¤ÒÛ{{ery;Øßû# ˆ$ kæý¿”5KšVÙ3WØ*ÔË*ϨÊ31oÏ€µ<Ë6鲪\¯Ú´ZêñG'›{6ìfOmNLÝ”>Tl}858ÚºŸJ½L}b¦8zô¿–»×ß¾–òß,ðSæª"æ*Ó·ŽÔé{vö¯ZEÐB+î©âgƒ1á2a“,ØÚ°t*¦Ê$­h똶¥²LXB„%Õš¨“ŽËv¶ÿæÅ>'&Ï”½ž…O29”²¦ëqŒFbYzÿf X¼l-Z–ïôÿÄÁŠDYVcÑ7^ý³?dþo^µ™Þ°õÅáØs^í¦V»©7\’¼zÃ×*­àÆK(ê¹¹Zý¦îŠ38F§”C°¹zÝuorµüÚxYoÜøÍsWÔ”·"57or[¬æ¦¨YÙá5Ëõ­¸þÙ›¬‰&ë~ ¾ÄŽ-çQ•šë üuá³wSs?³úu¯Ö¨ÕêõÚçA…YâK7ða?p•8Èf—Ø?Vˆÿ]´ƒZ—°ž%[Ï-\Jvðö CºÅõ¶VѯAüiË,£6{XQ€ÂÊjá†oï’ø²Äª¯ø·w×9 ÐÞÛ@Ãjgƒî>³Á¦y¦ðÚØÖ¸Å˜)¦@±ôüùW\„ߵߗVIX»Âéå¯Dùßµòs›ß¸µÙ9Fz¢%B„%·pÃÿssêÓÂúÄ>»¼ ú´pãæÊz•²^§¬W*ëµÊnnS¯¶©WÛÔ«mêÕ6Ý+RXoâ])‚øfàûk"‡Ý^wþœ}ÝpÐÏ}¥â#Ð;wƒ ·5á0L®ÊîF™Êè…Â$ÖÝ8Ûð4JÚà tßG×ßþÀo¶®ÈQxp}>ðúäýfk+Ždó~u¼n'®_H¸ ÕFÆá»Œxn–7Wq´Tú{Ðy€5Îojðù<×íÞ4ð;Ô…ßð¨ënt”ó.üÿÝNÇzê!° 8\˜2ÊK[¼9µx13ä¹sž8“=/N:§rY â`½:çÚâðó:ô;ÆÈdÔÙÈZÉÃCNX8•á˜Û¸ wÎç'PxxÕ½:þ©ý}·Z!°uãö`áܬ尛î_t`|®^ƒ'sð½ãÎÑš"0üGj‡¡ïN7v…€=q¿®æÑpüO¢WÓÿUCßå¿jÍFð(¼6^–ËîlySÃÿ·ÛaÙ=wvC¨•2ÕñOÜYY§æ%(\®a ›¶Ò–m=K´l–Ø›Y¾%kT þëjŸµÝi²ÁÀl08‡àáÙYqÖõ€Gsksî×Â7¾ùìd[¼qgU9µ¢[½N­ÕÅ°Ž  Ñ• “«ZGâ(Î~íÞÓØAìeOçðÛl—ðµSƒ}Ú¡…ƒßô)E‘ót7€ƒžõ›îܹ œ@:›øÏov̯çq\(tF 6ÖÆ-€!K‹Ýºa„zn€žK¶½ì,0´„ê‚À€Š@Kr «ÑÖ<Ö0ùˆõ€H×R{j·Ía(èK-qçÌÂäJn·ß°vµØÓи†{>hukõ««^¯ H± æPâð®7§ P_¼üs<„ 8ʽ Ä; ‚¶±zI‡b1V<ê5Wt¾ÎþÕyßãj-ä—¾A5XQE¡jbâyëµ^}7ÀÿN_s^ƒ÷§ÑhЯ`5ïké›;Wg§>|/@ìÊÍÕêss®h¬Æp¤Žø;as¬¿¬›£„.~›«¹ÑO.fääy¢«Zgôú£7_ÿ4÷±1ßü„‡$ß@› ”³/ʵmoç¼S÷c+‘ð¹íw:;ŸãáÛoÞ~¢exdžøæ <Ù~óîÝÛwÛoß¾yû.®"vîëRþ[Àg³æxt´ðw\×@šþôu1ÿü“ÉkÛåz¥R¯Ä»ˆòãU~,øðÌ~nB…/[ŽzãóçNûþû\?OlaY4°å§4‘ûX®ma— JƒÍîfyË+×jåJ¹¼µUk°år-?þéÕpYau¸ÑíÒFPÞô:Áövg0ÕíWy¯Z×:y19 Ëà§Û˜ #Î6µO@fÝn™Æ×Åo’Liä É@:(€gi—Ó W}éÛÛL“†gÏÂþû¿ÿ;¡%ÕO¯!»CØ›èY ºÞ#p¹‰ž=ÓŸ‡¿pV§Œ26æ@$Gˆ/VŸ¯,/-–ŠyÒíå¿go¯®åi’‡süú? Rp(ø·S¿aÈ?{uíºn¦ú ¹7H ÿó NRð,`/è׳…§ãUêÄWZøûy–ÌçW1+â±"1Ç?•ÙHSÅ"sU¨ÇG<Ë•¡ë¸@´Þeø¯7LJ¯‚Öü×XØíܼà KêTI4øœu7æ˜â¬›‡ÿ%"ô6^åpÑÝgg|ø4×j¼Æ*¯jƒ×¯­/~=Åþó‰èú£´uüYƒÿðúgü¬E”åoî{ÀÅv·[Ö0V)„¼0r-p¼“2}俸#—)Ñk£˜Ÿ Âë[C0û°qûNL‚Íd¹Iü³˜%#$(®ztì°RôöíÄÁ.åW¬3ðNÃV/hÕ5ñ Cûbñ6)`ÎÎŽwçœ Õ© …ãÆô ö!ÊŸ]îJ¼!5‚Mþ|.Úü…hÃç 0=ggîÙÙ6ÕʹN8WÝ’“{áÆqêÐ"T n¨Û oæÈ%üϤCg9ï,åóN­&>Å‹9gg_æ°çïç\vJ|aKÔmƒð¼ÿ^Øü-"/â[Q‡">ã¿RAû.,‘pN¾€sÙ_Tå°U,K\~!ÔWkuD"ùÞUãʯך1r;–mœ_´þ-‹ûWÍ«Æyíß1V«+`Õüæ9/^ƒâ š\ÄBÿÀ·yá6÷üϘ†¾HØ«s¨Ðüw+®ÂæüNm^´ åkÍÍ71\×ÙÙÕWÿÅ7v~Eù9ÂôÄÿ&ðŒ *ë…¨~UüA8Ö® %øõÜ×á"Vè[¸‰B‘ªA-ø×Œýg6ÖÉ ÿykÆwûë*†îÂßçMŸOʳd¨ÂêVçxOÖ2_XÍFaiJ@ÉØ¤0̱&“UàM5›ú°ª„ýµUä¯ö¹¨öúzoâ- ë0³vB6¦w"aÀ¨>ç-Sø¯eÐ*f>uú^ Eûá(㤠ˆëH¸¬3w̶Éõc=ì ö§˜+ÞÁçÍo$d©#2Ž;ÀÁÃAùéëÊ7uP"%þ¬ðÓn‹²-ñ ÷–î”a‹óËrüÀk¤¨Xµ óá|”à¬ÿu¯ý»dÇv…š‡4æ/ªW(ßÐh„.àYõúâ?«Vlb& ’ŸןÕÇð§ðÔ›‚è‚ü¼ á·ïÓô@F Ma⢠3ÎdJÇ&€bëLúø°fm^mˆà“@J[H^X«ôQ9\³’Ѓ´–Âñca(ÖæþŒ Åd£ö§óÄp5«z~Æi@bÁŽ2ïþ'’(G÷¿}úº$”_44ã9û0TÑͪMX·5tøuðóÅ“íù¨‡°EüE~aŸ-l½‘1  sh¬Û‹ªÖ¹‚î_ÞüD2!)–b ¨iÑ«¦ mŒƒ¥%ÑÍ10þ—Yó„×Ù~CÍ ¸ý¯à)‰C ñ<®Žžâ(ÐÚüŒ­|jXIå¦?#*¤3¤zË žþí†ð¤¢E†½‹åŒvÅ›¯f—håXôbyÓqj†* ‘,¾Å¼¬ûÿ ¢ 64DšLÃ9ØÜ•òÙU–¬\É—óµøúW_½%ÿÛ¸€¶Âþ<þ$•àJ„K›ªùñ%å×xù‰˜»•æÊ7¡žN䙵•¸þ|yÕh·xÝ•e`?>qO3ZVÓ±,Ò ¥ú[0ü-V¿œµÀG†§Ùd,jáû[â—hf·êbH‚ÍV©âqE¾P¿Ó^;5§@™›Zdü¸B[d¬rì z³ã¶‘±‚1ޱ’±†1’±[ÉZ#—òä ë¡}¼©ßÔá±ô!*ºà¿vè{¬ÉÆËó¿¸É!ì tâ7”KIØÌီw`‰¢¶È´6 ¦Nºtgñ„‚W/ßZTGKa©Ÿ>ÈŠ^í™eÖJÕ*&•¤áñLqrd)zö_ yÖgØ# ì'D¹®'Áà6C¨÷Ná<Óc˜ï‡ObL®¶ÙŽL¼É^…uÚÓºkVåwPDªz5}ÚžÕ' ×qV,ÐÍ£W×.ó%Ð×”Pg`9Š¢1ÇœúÆ™%ÄûXˆ¬ÔlöR¡2áæpD²X‘l@ƒŒñA„*äÙ ©UM'©e»‚€$×»J!¯Î‘ð¿äÎuÕèÙ`Ôß1몞&Ô‰^«f©šT‡ª=Y˜©Ì©*Ü™ÐîýÏÉ?ô1Û€’¢¤¬Y6 fµ’Y·"[ì-XKóòì´ö:­ºs>èú“ëöœ¦×n/ù™¤;O»þÕð©Óh |º;ÁµH*KðkôåÁ 6¢­€6ÞÄ*î0çð©áƒìá7áÓù…»q~áçֿgþ Úà–»ð¡×GËl¯O©G~"çFT<“êÙoý»õïÏíN»Ó…±-æ°ÉîzŒ~¡^—‘±Z¬Ç3öëáZ†:Üg qƒ¬>|¹©£¿»×Por(ŽË¬ESèÝÔ ú~~ö̽ãæè£8ðÈ î†Ûá~?ðíþ4âÜh±C7(ƒ×ãz’Sÿë+hÙ– Àìâ•›¥ØÕMÎM-å>Ö¯®?y7˜*ëN›è霓ÐUQ#Ç« ý§ižsá§†á”æå£-|£ ÁìÎ)(üÛX<·Nuë.,1 ¥[›Ý¨yã€ðʾTÆjx¶Æ{Ñp7®º²4býË7^×0ÖÇ«HÑ«²j®áŽUû»Á?̉Ê;ÞCOi6ñ`X˜ÇkðÆ€È';r#{r3AW8Cñ&A­“t‹Ó+ãÕÝ9=@Ghi®5U¡e«x_Kßnjs7èêŠA$¯ës7YŠ‚›ó¡¿MÖD½î×j†ïÀoO|õÃ_c̦´}^bkÞwss`iO±¯@qàAÿè5>±A΢ӱpï¯7Ó¿L_|kÔu°€¾ì±ŽúfX›Z'®î¸ Ѥ¿sÖŸÒƒ‹¿“×|6¨¹…Ú³[‚“l93Qi#½VŒ²^@`#Q#°¹ g­›Ñ©NÜÆ2;¤Ÿçg|;ƒ(T(+·ðl³7®‘§Aê«1[ëßùßÞÕlùI1Á7Ћ9RTR '´ÅÿÆ+=)|î•2Ö™ oôl¢~åfY:ZWu«Å¾6+ Ö®jøí*~¦,…kµÄâ³ãÀއ=F¯Çêó=«¿ˆd 6.nâQ>JS’ ho\ô™ õðýÁq¡Æ@qkñ¤…¥ ÙÑÜZ<þX½³ïcõ|Ì~—¡,‰]åM[Rm‹Ø^£ÎuY@,Š uÌö­Ërç0ž‘±£GZëÔâ…á—Hª1äƒ}yÿk Ñ0¼·«‰<®›Ëက29$68çgç>DLß@tà3<ÒwÄçÏ¿³?ð¯[×?ckõFô‰øÿ&É^H}Ê}Æqæ¨O(Ýc¯¸ë}ý³3ð›þÀïÖãs)Q²âžk·oðãâ¬Ë²¨Ö•¸!«Æ†*@s М¨¶Yƒÿ·ðþ«×Ø'øµ¥€š0&LÚ^Ùƒÿc’skØp=ýYÂŽh£éÄïØÈ] $„åoj`ìk«v…[~{¡Ÿz¸‹&ÜE®–Ø–Ã3ÓÝfƒo‚Ÿt {ª±¥&Xo¼Úï· ¿·áÿ¸zD~ðŒÃµáI|ÓÑiV,çËð‚xPfÿR'UwÆ ŒšrCÅØÕë¸è\N)>l\¯c•øF0y¡åúû—4pcÅ7\‡“Ë®uÍ ¯ø‰“íC Xà>±ÿ¨ÖÃgÏjÚ{ùÑÕ·Ø}I­yäüPÉÇýºø­ª®ç¼Õ+ñÖqÅWh¡põ qð}Åçsô}E=<[ú–ÿ&vº\'þ|C¼Øoæø›9ñfîNIƒ¡õ³Ú³gÖæ°@šc%„¹jáòòraܺ¨ÀÀÊ——“Ô.BíËKQÿvµeõt¾´Á‡]:sáq4$GFëy§UòÕÓÃýò;¼¼5άóùUù5ù†ä6àiìáoMd¯Ð£à#PÕÝ;®zºWÝ`Úý£ÊŽiº¿Vf'hÁ$fuÞwÜãœzpxaZ2 TôêºwqŒ~¾@oT½³“<@çvH²q?X2I3T¸-˜´9Þè„ýÐÉ4ÕÉ­ÌÞy äu¾!w5…âG#R™š(—y››ÆT½KAÇÛÀ/Þ1ü‚ŠN[ˆÛ4“q%RZø“àÓ× ®þ[¡ÏR› ,²u$pX §lWÔÉ ŸA¼ñÕU}|Ä´ähSjn)7Yä6Ö¯®n®¯oþóÒåW©˜ÿÏиÇÛ­ç8CÜæ—ÂZ œW'^ôsðÖ1/ËeÀ˜ßcõùŒÐ¯{h|ñиkH.¥Í4;̰€ÓÀ| 0LœLÕS„†zxÜuçpuiš®–W–Wb€ð™Hù•oè.‹,ŽK+³œ/¾ýæ žgyåù—‹ç…Õߊ¥v¡ð®Pp¢~[Zþ-~ qó¬ŸÏyØÀ,êX0 ˪ÃyRÏA½ŠÓ­Õ>Ãgö§ð96$3AÖæ\×Ã`Ÿ !’g¦V´ÓÉÃ?~Ž ×†‰ÀúdŸû,ôN‰…½Ô¢µ×:·w\¯Ãúèdª÷dÂz¯Å˜R*ÊΡïɺœÑ›ºËòl¡ 9}ìðÄY€•\¨²tP‰ëàôÒú‰'±-½v@<=;«Ñ4"ªaê6>üVȯ~«Õ ñˆžÂ":AP«;¯ÖŸäwX›š»ññÏî'üç*eV½Á’üyµ®ù5I·ŽžA_\¦»Å´kñÎ/O<–åQÖ:ËP6åÆ,ë&üùÿ®þ?× Ý)ÿ$\¢°: 6݌ۭNjcuF(Ìj”‹–[\ª…‡–±šmpY[œ¨*NhÂô…³åC3É“=yõä&íòìQ ÇüúÁ!ãÏþ­ã_$ì¹b¸,ø´@Ž*µb©^,-Ö®èâAö{C%ÀÉx”wvÊ»{&?¢îywˆr~dX³Œö„½_"õ´²^ÄËÎ^z#[ñjùäø¤|t’Öˆ\6a+³¯FúˆMYÇ®•y&¨ÍôŸ½nöŽÇÕÍÖ}^{cìêáEoεÚ)«kŠÕzì&îZ(‰ÛÆõ8½HP½Â«õ’‰2‚W7FäŽ “3ŠÇ4a_¨umj˜) Ì;¤£Ùz™gz·ˆI•ýíòþÖÛƒ£Ê¶±ÕL{Q÷˜­^·ÑB9Ék;µv¯þ9V^<:¡|Væó6üV#–G¥ó¦6Q=dm'h­6Q[4¶ÙôÛ˜dtפ|â [ì†ú¹A»/>l®öãÔ̇?Ož“»m‡/Ï84ü¥Iþwâ¡M¯DƉ¹6Y=l¯–Ì¥ 7SsÙe=ñ,Ïveo³'é!œ§ŠâÒý:˜ö6­ë Œûÿøy¾ýéæcy~ûUù܈¹á™feå•®7>¹Ü\†—ûÜ4Ðö/d´9ÆÓzhùãŸÏþûÓì#ä&1É>b€‡×2x$Õ3'| ŸY>ýwÜ ÅdÂeR qö³‹Ç0âfõES>l¤Ók;báóg§SX]ýìT›U¯êtjŸcµu&ÉäŠD°è@@gÙ쥭ÂAx+e˱í±A»]m¾§“Ñp⺌L\»6A]ëà½Ù F=~%~L0Î :Hÿ?AOmè*þ*öðÄGt%qÝYAr˜U¨&~;ÑG±m¾Ú÷:þk’ÔÙçÒë~ÉágƒfÛŒet¦ŽDßz¬ª,À¹Fƒs±xEIès#>Ë|&ˆò~"*µþ¥¾Æv”¼'Éèƒ[>¸<*!6P±7“dP(_&ÂòPëŠs;ö‡NÀ$8oX¿HÈú›çÎfég¡8ÐcS”o¼Æš)µxsPuÉx+žR${—*"SªL’nâªÓDî´ÁÐ121(¦zg÷èø#—cû"O–Ç4°xC¨Íœ(Ömß:È6ÏÕ÷ás;cOò˜ìÆû„ÞÃ8šÏò0Yë°+?Ý¢þŸ·iüOÂVæð™D>ìR!®© =K„•t­êÏÄ Hˆ·¨»E÷þYTqÀ†r:X¶¤.Lö\c×ç·ƒOØÐ|Õøö¦ý]›̸yûºôíÆ»ÝäÕä…oö–••Eù़·†3 »s>¥‰ä{ÁØÂ~ìU¹¢k=Д¦ÌM/D7·¦J…æ>°ƒLÀžÕjÖúj-kÎñæÜzn£äº5Õ­:3”Ʋe%·‹>•²RB¤oÑÅ„WsX1Gͨ*±Â%ÔÑU”.W«zWñòhÑU´ƒµëFu‡øœpóÑ›…÷ÓñoQv)"ÜÓslÆ“–ªÈ!WTc•æˆ3‹åÕ®xÄ~\O©fBE{Õ0resÓ…ÚÍ+¼£c–]"ñªwy6·Ë‘©¦öÆ«ëŒtâô ÂßÍp†0Îå`ne;ª¿ÜòJÿÅǹh°?"fÞEBÏ•’ë”&©T U"ÍSì° .éapZyùòø¤KHbâú7®}#¡Ï×­®H„  i²þ™Ä7>¹ÑÑÀï$ŒžÏ1mtq/Ñï²ñßã¥=½âX5µöЇÌå"Ž6h%+ WxŠÅ]*™ª6^.Üœ•x— ßžá'–zJ(ÐügŽúìÇEì2` Á·PàßÝ9 <úEz…ÕàõêÊ%çgqó¬:"‹+N­Âl߯·š­º3ô•Pr+”’{çàh«²u°ÿ>¯Rf?•Ÿm7W%Õ×î7Rß‡%3è~š´7›šnݳßbqv3™â*î¬Zœ]}mÔ1])ÖÞL«­3¡¤Z’-2#¶l<1>‚¡ü¥ÚÐ$ì§áґϵÈç±fÄÚ•O„Õ­]â/ŸMÒ5ÛUã)}Òk³;“HžÕ/¸á®<3¾<‹öÆKœ¨ØÎô[D þ¤Z}!’ËŠ’‹S][Òf_޹¼bI9º6›ß&ê÷À³÷°o—ô-†Œ¥“¸ÛÎ6’Æ,tms³“ô5µHXKç¶ñW€¿Žñ×%þú0»ñ,é~Ö6™rïøý¤²¿­ùv$ž”ŽŽÎ“$ôx’‘U’•çža๤ }æ»l9£¼¸°˜4sÏÒ–/’÷7¬´ŒnÙ?ç‰9™×¯ XŸ É9Pã[jU h!µþ—HýcÕ¿õ‹|šüñÚÇ Ð÷saõî‹ÐgÛ¥EÍgãu›z«š’}NhŠ¥ýñÖ×f†±V÷|ÁæuyX>:Ù-ïUv„¥¨fóvˆ/}㥗[>Ú§¼‚vV{6Nyf÷s˜CïÕúÕTä181þl–Êü2…Ì㇙åí1Hqõ' J*ßgcšâ77û®|ô›ë|ñ5»ö×cE^JÓhœR'âé9ë‘ÚðÕúÕÕ\1ï ¥%g–þ0´p×äØD/¾É~вe˜l¶Uäaý«!v­Ã?«NÉ'<¡Gª›?…»×øØ9^bM v°Â'èZ¤¾­ó.@­æÎæ5o®«ÖH'ü|yˆð©|íŠ+ñ‹‡…D/8:‡–¯¸"× Ç. Tβ‚Ø—˜%¶5Äf^DÖYû*|QfÍÑ8 @¢+Y\QK ’×Ç·˜IÛŸ/æb)~1±è§¡Å\,Éń±‹ •³,&ö%f1‚m1±‡™“uÖ¾˜_”Y3F4Îbèb.–ÔbBäÅÄñ$ìL15­îåj©‡ÕѰ¹Zöð/à +z|xr´ ¥ú£¡°n½-!®ôFCzŒ0fÙ}ö¯Ï¾w@JkûÝóáM¦¬?ÀtÌ5ñJeolx Lˆß`= £UPàõu§àÊiu Xäò¢ÕöÜ,5õóÏZoœ×N‘-fZ)¬ñU•½§uUƒ™›ƒR9hÚͬy'';„·©Ïº4 %@¬ÉWNáªN½¢fèáÜ6æ·ß!Ô½ƒ¢¥‚ËúD¥sÔÔÇÂ'zWlºÎ«WΊ ì {Qd/›„_?”¹u§„ß¾9ÖŠ Xŵn"ÔvÉÞöbBÛ…Õ„¶Ÿ³¶WcÛ6ºUŠëÖ¢½[KÔ-±4uX–•ååÅÞB5Zà:ÕRH2?†?¯`¦uPý—³Â/A0;„/=†/ ‘] Ÿ‹ùuZøY3{S¸BjuÝy øZpùèøðŒ¢uV´nÑ:<ÏQÂç?ixΦ ÿ”SÛ!ëfOMâÄ| £þu¡)ÂcÓ¢iÑž©‘µ`%¡Û·±'íöV×wŽ*oN*Ç'Õwåß«{•ý7'oa,K…’ý2G9ðÏ1©Z•ÿh«üiM_Q^"A|­I9‹”ÃκdÀ³nê‡}<Œ£©F¡ƒ'J¦I ·%¿cï¾ií¶–üÂXbÈ/¼ÑÈïbÉBHK)ä7¾Vš, /ó…OÂF½ÕÊÅ †„>0?„>¸lì©]Î,› \è©+ÖS,SU‚µ(=w5‰ˆXŒor¶‹ÆÔ¼¯lUwÿUqŠË3¡yà ¸½n•"k•L £z¤@µî=˜­ª¯[ßÐî½DPjÑð­ ŒêuеÕ3šQþuØzm¾ñ»*o}Xô.µõÞÄ¿ö…Äz¯Ó‡9®vz Ÿ?†’Á×ÅRuè4ZWkû* -Ú˜4 й5Eëµ:uM=c­jÊ«:ÿ¬ 1qºá =Rná‡Õj1ùu)ôÚ¢[5—a¶÷ů{@žŠJ¤¶¾×Dn†/ˆ`Õ/^{ä¯~ÄíÂÕŽq²>È¿ |ÔÅÌS¢ÓMÊ"üT\±ÏŠ^ n^t5c9ÂOœ„?7ÀÝáäÐsF±¡¤¹NŸ+$6±;WX@ÌÕbx¤4¤‹ÁO€ÍÖ¹Ò ÄÍ•®Ð¡f,Sðç áÇÏâÐ\aCš:Ûa„¬ÝlÚ¡°êÔû£j«Ûì},–V 1Û±U1M~~ŒÊ¸Ræi©,–9AØùàŒÍåøË\hX®3çØ_Wâß-–€'{but†Õl¢Áíä¢PqÊòí /|§æ_x_Z½Ñs¶jöÐN´´ÿÏîÉ‚Sn/z£ó N[Ýs –@7{gTïÓp ÿ>û,GƒÓôZí<²Ž\C-èY0j#§7Çåw(†ßñÐiµÛ(¼­†?€yÓ¨}sÐëhúL@¿‡C…þ~iù— B:ŠÇ±•ºÍÖyu•sd[û;»oª0Ä“òÑ›ÊIÞùY,¨›ŽFH)dOS§SrŽi0ù ÷0'ÍÜÓ£Q· K„K§ÒlqκO‘»Egè Îý¡³uxгy¼‡•8żt¨p–9×¢CP!|ëÓšÓš›CžDûúïæ§qsZ9Woµ?ùZñm3øwÛEXêêDñe! ŸÁTE8‹›uÁßžì$°r¹Z]ÇY¥Ä(ÈÂ8—-`Ô¡êüªãü#xy†~j¸17œ§~—ZzêÀ*ŠfŸºŽm½-ž„Ål N¡-šP½- §Ñ¶àáxmI.šsªó¯ûÞˆY—qÔ@*²7/¡ ‡µ©´F?/ÊÁ¥ê‡'ª5J¾Ê¥ cUâ=—Øw­¶!CD: 焵@HE!Ÿ³Ã[ ÕÏ–hj?Ì;ÿ`ߥ ýFÆV0L2{+XZ´’ZiëàÝá^å¤BPº`Ó·a@Ò ¹’Û–†±0S%ÕÂÆfWÔãJ|ôWD«yéú—˜*–­1§€UþàJPy'šÞ†–§6R Ñì5 oRQvÿ@ªyøDš“¶šÓUny…vã_•£ƒêIåèÝî~ù¤²'x?ÉҚ¦ÿ “G^ågZq ¬Bˆ„*W† ‰ ;‹ ’Š›)PòÓ!"¡/-¯Ûí Åyçðþ;gOÿœ=²Ð°…<“oÙJ}S†Ì0Nq½«¬¼Àø¸þxív¯è(;Æ!°Ã3€ÓTä¦Y8.NRÈ |6v;g *êrádÓ»:-°Z1Æk)¦ ¢ †s€’;Ó¨ôÁJŠ+·¥Y» aiâv4F­ˆ„eò ÁÐ’ÜYK-éô/a` ϽPcAhC¨K“ä¸î“8‡œ}Ë¢sFqà® ñÄaì–bÚ â`8›(EKq€>X‰Ãbé¶Ä +`wC,MÜŽ8RBËäAƒ¡%¹?â –Zè_&âÀ$”{!Æ‚$‡P—2Dk¦ç ‘®/'Ó›ëι¯ˆù®h¼zw‰°šÖTʺ]Eùωº¥‰êF$Sk—OžÈîÞ>‘íÓ—è’Êk2‚à:¢Ÿ¢zcÎÑŠV3•*EK…äŽÁ ëºp^Øz—;éRîd˜5„s müq•Ô…þ ÒwÃÚ‘¡Œ®k9¯LCÛ¬SZsææZÜEHvìc 1MœSPÒÍÍß^)ž"îlÂ)¦BŸite?’¶ >áD³ù´ì}iMòŽýÐå&î`8hûݰ悑縣ã`gïsW>þM# †Ö!€O!)Ç ÅJ\¥Î†õ ò€Šl ]ê4z~ààN Fý~o0äd>F]D´]ùNdµ¨ÈêO mñšæäOeö‹æìÿdnÇtoùUÁò‰ÃGp{ h/¥ÅŸ˜#,®$OðÒr>qeÜ!ÇkÒ Åí—ÔŽ ÊÖC*,&?Q–ÇuB?§¤ .ød>©Ð¥_4±\Úi¥E p¡-r^‘Ü+^†t –#ËXLÛá…iˆÎTsâƒ[êÉ…ûè2¦=öð2ô0w!äþ$,ú¨¾CÆ)RHbñ MPIæßìDf=™½ñZ2+Ò÷ÇóHѽiôˆ0ŠÒÊîÙÏzÙ© §½ /÷{Ü[(ˆõ<ª§3×ÅÐ\g<ÙC;Ô<ÛyèTòPÕéþ½‡›~Š“lre‰?Åá¥åçÎ3qç0¼I§8÷¬™ vT£e=ÅÃú¬'ªÓò§N觸Tv¥k(2ŸâË%šÎX.í×ÂÃKöSœTâeH)h9ÅÅ´ÅÑQ˜.R™jN|èb«S=ű3cŸâÆ´Çžâ†ÂôOqZÒqÔÖÑGaq0NÐa‡OqÞ‰Ì m{âÕÙV:¤ï Žç¢{Ó:Åa©•ݳŸâ²SNqA_î÷·Pëy0þTOg®‹¡¹ÎxЇv¨yŠó˜Ù䡪Sü{×8Å ÏŸÿhÌÓÿ7‘ߟþ<ÍG`…Où°—oøMU¥Mï‡%ÃÏŠÑ¢$i…ËÒCKa"èáÂôPN%œ[åãÊ^åøØE¯ª-ò§zÊüØlí6ù­éè° k»qP&rßÄ%Í;µÑ6›#Ì!ÞÀ§—ÌÓ3XHÇþyÓÃ/NÝÃèrôó¬ùð¥sÇ3¼Ìc”áà_Ìâ[…½s¹™â;yܦwR;} §„ô0»e˜>KNçµÆf.ð:ìZÐxË ;uÜ£p _‰l…µ¸‚ŠEUžG,~„AƒÓôAîV_þ£‘ßÅßîKvÍ'ç—¿8ÿM˜2h)›[γp›U,âÚF ÃøÀ¢|9Ë`kJ$Ú‘Y"A×2MBV´ÏSq…&ŠþdŸ) ¡æïq®˜-u®ˆ¶EæŠØ Ë\‰Ù>W‹%š+ú“}®u6gs瞌ä$ÞÝø'ÁĆ4ØQ,+Ø7#ºÜ'ãíÉÿÕâN0^ôÁÌ¡†isÈq2f“qÍá˜(Cuäßû2¦±&‘i[2Î"ÀOŸFFöÆÇDÞéŽ&Ò6x‚Pr4 Ÿð:®Ì•å E€¤”ÿ)DUK¼×3*5«Kbl†2kðOÒ1iUÈe‡ÂqÍ*X¡üÄùŸ“× š½AÇÁÔ<ÓÈ\î 9¸'Êÿ1Ž*bŒ‡Ñ5RnÈ¥`Ñã¦ñã‰ŒÒØ™Ä%£6[²³Ð§5{;¥l픲´SÒÛù–iý&!¡XJé¹Ò?Ùâ±ÍBÖú¦ôvâfÈhÇ>CüÛLö ¹ £`ŒoUN£éàä)®„Àºä"E[º8^ã€U +äÓ]G#ù0¼¨ØÛŠˆÂ¥È3>®ÈC*)yJĞ晘c¹íbŠ ’\$e1Åiq1S8ñ©,&Wäáw\Ì ¬SÜ!¢Ãj±¢e¢ j-»¢!,aIõ=y»EMÜycYù7ùÛ`ó0sG§G*(¯ëôº>…´š;9Åœg[Ÿä›IJ™@ëòƃӷ8Ö¡ÚøgƆŽÇC'Õ‰°ÆIKƒŠ¥ã¤ÓÏs,¬Ù¸²ó2œ²Y3¬íX¤vš;ÌØg©ªµTÉr"MÚ˜¸?´ö³ñÚП Pãáb¥¸Q§ïV,ë Òq{ öŒ;ºî`$N÷¼bT,Lò†štÌp?êÑÈF`ãµm®o#$VŠuúF`Ųn*·4q7—μM²y¯»Û? “ê ›£^r¨P–xs{ŸU+Çð °*%¦Û ÜÈîãõ ¦’ .z£vƒù#%®Ä”¶ÒLüh'áDLgHh•½¿aý”¦kbÜC¦Àâ±°t·Aqb= |ÐxŒ Â6¨†ìÍM:F0ŠŒ¤ûa„vØNˆ¶A}?Œ˜ü,ái>²)Ê­/×ãÿð {[Šø™qêúŠñ#¼Ó Rçm¼i³ÏZVš*rd¢­¡!&–‰1IÂS#è̃›E]Dˆw&*»á¸k™Ã=7<7bÇ}ϹI”޶Íý›)ø7cìo*ž'EZeŒË–9þ+ÿ’üÊ3ú»gtwÏìí®|"­´pG=`~2Óìò‡Éžª¬¡|¼pZ­(ßY[®ÞŸt驿ºéiÎV ž7›íQp‘ †ß |sð”Èq?vÞ‚ñ³Äæ,`Éybãu'<ïj"Ð;Ж¾ÑAKU­}íô½ ð bî´ôК‹|¬åѤ[41eÅ?þá€4J¹;ý†KŽÒQÁ»‚ ίBºd#˜× 5^¤ùÿfÏò(nõŒfÓnu@¶è‚_e®(àŠìðºá_å=Ûöðºïçy6k,Ÿg PÙ /2ªãX‘eÄÈQ+o+Òê!ï¨Rpó¼¥O0‚'ßÂS)ÿG e8E¾j¾¸@v[Ä•È #¤×W# ‡øJú '· kèŠæÏ)gÀ¬!…Ø®äyÝèÎ誮ÙÒÃ=´ K웺6êúW}xHׂõô½šjþÁæ×ÖO]áAú.½)½/Æô°"Sß‹Óì{Qö›·ô\!Â7[ZzýÒÐ×ç¸,«2IüévYLËéÉŽs÷ÈöÁIyoO~-ïo½=8ªl»²ÞÖ®¨¦çg”ðáîþûòÞî6¹è¨z‡éõD”ñgx¦zp¬V­ië¿jÉÝC~DkÑäðæQ>·úÕ¶ß4¾Zç↗ÆXÈ5q5¿€cåÁŽÜ$°FwgrJ©½5F,ÒDÕá²™ç'µDðõ¬_ñšOÀ—<,~Þ¸ïs)ï|u€w~æ§gWÍ¥³«ÕæÙUþ‰ GǨ_8»zÿVé_|ýù"ûgïA*„b„,cH€ âù­!Ô'›‡Bæ•X´Õ÷eÝg·©•ìPUç’9œLã}–pVfwÎgqƒUœÆ¢š”Û¬Z!4¿ ¼×P—.ßoƒa/BÇ/UŒ¸Ù ¿-Ôfo›‰óš¶sõyUß'í§-úo2¨Ït®*AãðJaÖ6ž &Ùv_2¼¦ŽF™vbJÿZÿâØºläåY —¤f« ælüÚém[ÙžÌm'ÕNŸÇgâhcÆÄX“8ÆhH¾†x’=3A-j¼ú¢`'ž:Yê'¡ýb¦Ínß•VhŽf_;6âäGÕ·4h ´±ÏR#æ~!Ï­©2Ž€g„ÖÐæ¬aÌ™ ®¤‰ÖÝ–°Ï3Ôݧ¥LKßàC°IeF¡˜{}R(æîœJƒ/m#Y²Aij¨g]Ö¢ÆÁíKQ¢d¬W(&ÕËÀLZ»VÀú`¥\$máð¢¢snÁ=;+êñÊZ?Ri³€ -e–n-ÅÀ,†Û+²¿«ÅÌ`‹)œpÚèÅ&-m–IX‰éãVEºµÊ?#¢¯Nq2nÙû5¼¼^h¼ŸøîMs2÷ZT¼?;û]‡YŽîO"„jÙ©Yt#Fª1¬Œ«> ƪœÒa¬6=„;½h¯ª°gÂŽ§ÐÉDt®UŸ° é³øñÏgŸ fm§[‡ñ«ÿñì,ÿJšÖoÉ”í0Üž5øçýwf0eN‡ÒeGc­˜Â2‡ðÁ€ðßœ­ƒ!­"säóy¢kîýÀw†—=ò–EOHîß„7J3?Z–¸txÑ à]sà1O©o¶†SóÑ+ËÁ0Ñá…ßa©¾bg¢Žk±<è×Ò7câgݳ®ïX ŽâAe:Ilèñç‚ Žñ$Ó¥ŽçÏ<ÙT!oùÿ+Ï,úÇþ’ëÚ³Q]¤Q·vå§Ã]à x0êVîàJåÆôd›åNàÜ8䊉Zù˜{W¡2ÿœæÕ‡·änOÞšS?Ö‚¿ÜÍû!³›þøsÍ嘥>毥K¡Å'9Ëmd”AÛH‘&œ [DM®ç†k)zÒ½Ú1×9Ÿn½-­ÎF®Ï¤ÀbVÄr?c\†6v÷"›ñ™Y]Å(ÇðKÅ9â¾,|ÂäÁ¸“kòjÃÆ‚S¡‹ÀLyíbhÉÉïVk;â%Ï;`»6Œõ\ŽÏâ#ª'ÏÚo§vMéîô„åçl-¦CΡy²Œ¡V8¿ý,g^ Jú²F’CkÉ,³ sñéÄŒM wK·ÝàÅf7„z¡®:s–ž²;¼Ä^²GtÙFHÄŠ¶Ž¼ƒ;øÇ „é)õýi^îóP^rszJ"Ø@ÄÄ/¬¾²ðmÜн§â*°¶ô^ÞvYúÐfËk;ßkyâ‹+âûÍ8ì’N² ÷¥×jÐA3áé·¦º{ÆÉ2–CŽŸf

Þ¼šS'7—(ØÉÕòþX…F•x/ë’†|”„O%TJ÷Ž_‹„jRưJ»à¬ËO‰—cò2æ^ –„ŒVanŽßNÍ7²Li˜ºÄ1vÈ|•A÷1,g¡d˜ÓD¨)fìK"{TX›l1X=[î8«¿uäNÒ«¬ƒUÌ;º²\R©P|%%ig½üEU®#ë1  †Qø /l–µÐ=€×%$‚Ì…ù¸Œ±š@f§·tÜÕ[î5ê‘z›ýI8 oÊ 'Å®ñÏ…Œña?ÿId:qÈXqå/3V\ùq‚Æ46­¸b •ˆ†‘™¼vÛë^WX|—óËÂ/@þ(n-Ý… ºì ÕZdxo U<;ƒš¿l&VO¬ZK¬ŠIÂ~ÓZ]÷UÕÖÄ>ÿââ/©˜é|àõ/üŽnÿ÷”‘/¼à3>¨Š±ÞŸøëþú”ÁkâRµUí?U?$÷ØïúƒV]ÕÄÖ WÕBþÖñ/{ Ñš2è1Pëy³‰µýƒÒl²ï…bVX%ËèIä{ E¨Æ:Ñà }O´í‘`~O´|û™–‹åá—œzi5CÕçú0Š¡‰-Žh5i©µ_ˆÚÕ.°ÍŒhV0ë†c,XÎÖñÌXŸÉ¶G)qÆø÷¸—ãô"-P7îPJ/’ªKê_Aö•ÒVÌ€áZò“+WU÷š\¯ªî½»4^U}¬É.Ù«.êzòì•-®}ã¶œ¥Ó‹·ét¤ò8^Ìà|iaRVÌê^;˜ˆË÷d`"Ný÷8¨ÒtÀ,ÚÀ„½­€BÒºvK˜Ö~†rL˜KwsyWÜËY¤•tßHËöœT½§KY`>ŸÈ‹3Ô—MŬ' ÔBJc×¶`ÉXõ#ëŸPûyâ6_»¶OÒê§úOÆjâì/NÀºMSALæÈ(…±Ð±N*iþdñ0‹…øž¦¹¾è´žBŒB/Æv9 8@..¦@/…¡O¡ƒ“vãž] ÝD„8&ýN¨³IðBÀ×V7ªwK?„$ÒØN "¥âÔ¼à£_‚˜ˆç˜À;e™×C¹K×4—Jèxyí99†pssÒ`ÁJ1û¯1¿nó_©¹nõnÜä"ü]ô¿O…{šøÐG!mEÊgðRˆžuÜÒÈXó¢~ Úä98]O; W•)Öb"Æi¿³@Èæ­§!üŽî a+¼d±Æ0ÛVøq¡Æ¹èP½Æ`%Ùè5t»…‘>fcLÓJMŒ×z&|«¾n*_ÎR{«“FÔ¶™¿q$[–1ˆ[Y¾,@—Ƕ|IçœX˜+ßÁjƒb@’Õ&îx¿…Õù÷« ¾¶Zm¨Þ´­6š01¶ÕF\*55« |´Úˆ‰xpVÞ©¿ÕF.ÂßÕj£/ø}Zmîiâ@«MÚŠ$”Ï`µ‰žu¬6id¬ÂY?mVyN×j`§aµQ·õY¬68í·³Ú„lV›8ݲÚHkªV›$¨«Æ`%Ym4t»…Õ&fcLÓjMûýÞY'Ö¸¯5~yÑÚ\w‡ÞÕŒ*ð;^h#;¼À©·±|è÷ @©4„R&ÒYvÚ^÷|äû 33Žýçà F¥ÓC[}ç­÷¿ÍŠ€”×ê½/î:¤7Øêõ¯Iô¦ÈuŠ/^<Ÿ/Š%ç´Ûúâ‚Ö†ºåujƒVãÜ×ZÝ÷/ãÀ„SZŠ33?ÍŸ™#¿Ñ~ºUá‚88Ç#29Ao4¨ûô¤#‡•°äˈÆÀ âßÞh8ÓéÁaÓªãÚÍÓºôýA粌]ïK«†Þ–£Ùk·{—È·Ðh14ÀJø’­Í¬cö*ÀàÝ¡9ëŒðÐÂÝD˜^ Dx%f²Ûñó|Ê)g^à!½Ñn#Ô#h´ÞöZ°×hQ› Ñfc½³t†w‚wi¢Î8l˜R£Wu€ÙôÄ‚ýŠ: x?@‘Ï€ì¨y§ÅBÀú0äèöýUÄ]¯#÷L òÁ(TYZ•Ö0àÝBÞà÷tä>€I ÜÀŽÀS‘:Öé }‡Ípv èñ(Ö„ú‚½æðñ‚£™ôý:â ˆ}|·®¹€Q¼Ý=vPˆþP²ŸÞïnW¶Í?œ“·gëàð£Ý7oOœ·{Û•£c§¼¿ O÷OŽv7OOàÁÓò1Ô|:ƒ/@Pr*¿UŽƒ#g÷ÝáÞ.èGåý“ÝÊqÞÙÝßÚ;ÝÞÝ“w€³pâìí¾Û=b'ylt&ZÍ9ØqÞU޶ÞÂ×òæîÞîÉÔ‘Ý“}lk+;¤Ø:Ý+9‡§G‡Ç•ÖöîñÖ^y÷]e{Z‡ÊûÊþ‰südÌQ|دa×!nVfövË›{Ö r{÷¨²u‚£QŸ¶`â {{yçø°²µ‹*¿W`,å£?òs`Wþy …ॳ]~W~CË¥Ì,ÉÖéQåvù`gæøtóød÷äô¤â¼98ئy>®½ßݪ¯9{Ç4Y§Ç•<´pRƆ̼†Ï›§Ç»8g3»û'•££ÓÓ݃}–÷Ì Œ» U·iröi¨0AG Pœšû¼óámžÃ ïÏÐL•q ŽaƶNôbÐLà‰6Fg¿òfo÷Me«‚oʇÝ㊠Kµ{ŒvY³ÊÐæ)™–zÅ>j›§…tvwœòöû]ì6+<K¼ËÑŸn½åÓ½0åãOíJH [û¨íÓÎJÐÎñdp8Åî„Íœ GÄE«~áÔF­v#˜ÁûŸ½:]ëN(I)Iœ° ßi÷ê^Û_Àt¨Nµ´Ð ©4†¦Úô.»tÜã•÷â„'Xœ¿€=A·Ùìüz{„dP4DÀåì5gX×MÁ!#`ÏAq8J Í@…N¼ZSø¨H±„À:^}ЛáÞi;'¸ŸŽ±eîâF)XÉŽL@¡rðÓ¼EýÁv à Þ3Þsç)ë#Ù:`Ú.žrén†jRÎ~¶HÍç/²J·åü…$–0\€ÙEU(}6¤@ι/ꞈLª f<‡›{w‡ùmG®‰o ÈPUÌbo¯W,fž¡âÐÿß YûzJµ„Öð˜ÌV» ‹Ö÷‘÷é÷l(‰½B · 8s$NzÁŒŽˆ|óô%€“0¸WÃí¥¿´<˜Šƒ $t|Nü: XsYávËo°\¿—ØT,z9¹KÕ1v¡g LöFWPñ‹ã´Ë›Î¹Ïê¼bCĺ]à–˜|#…!ã`gÁc´êÀr“\(>€{´-N.àd.Ήk ^NñÅ$ö_"Âüpàu䪰·JD°OƒÉÄó9Y ³ö¤zñ8B…'u›À’½¤&žQÙÖù¨7 œLÕg\i¦¶µDÖàVXÙNæ™f—¦Qšá²6z;fW£V&2–U¬Ò Ã/ =JW«CgV#ƨCÊÍâ$7»ÕaÏ%s ³ ËÇÈz±¨J’P®[>l¬u''Ÿ¸aXŸ«{•ý7'oQÛÇt\8†ýÞ04´<ãý[°ëqäŽÕN«º]ÙÙGúÒìíUátFfÎø™ÈÁ#ŒÄ´ÌB;éÌž µdÊàr9Q5¤¤öÞ€eç_òևíÛ$ä-Å H‘ê:/uòhö¸'²\%”áþ„ßáRÑ[zÇÔ|ί³alB<#íášqZB¥,9!'±ôem¦3Bï׈„ï´ù'ûìðɶ€´„8éÔZ¤ÑvZÎ+§´¼ææ\ôWø‡=©£aVðGÀrjÌ-'œþÜ.LAr7 îK‰ã|£^íã Ñæ„“x¾ ‚zÿöýi–þl’~§@°ý¼tn1Ò$}4RyZ"µ ø™¹àl÷º¿À\À&z…ö¶rQñÀ)Ôo6QµÒëÎøW@[´à ¬æ<“ð;>?àp}a¥ä& >î}”פüΦ§øiÐ÷êþSÁd¶}Mpœ§ ’±·çÐfç…àÕÌûÁj{h Ql2°ŸAÌ¢÷Þg‘ÏÞx÷w>ø/ ôËO 3;°t„ûEÀã¶œÙêÂâMV…lj?MwXïÁ_2~Ô´g.¾~ÝCV„4G^)2tÚÊ6–Š«bb£pYꡨ}Ï¡òÚÝQÇ¡®õ/<©C©ù8kl!#„HG¶‡ DÞ‰q& rl—4ayÜ…R“vÅÄB GxlÑ^±è[W„„(X£ÕÀSH]ï¼Ûú„ ö:ÜŸg —3pÔw¸L„tuòþ4oý¿ I"ˆÐJ÷Å“$æQ0 j‘€ ™ØN40H4–âŠóœ¹ã,Ý·mD¢2‚9±Ê^…æ6Ì£a:#ßNþiÌ{>,°ºÈÓãÌE8wãNíɸ}V?…o_›AÁ`Yªº8¡B¶Ÿëv×»¶ 'Û‡õ‹Û™~é'Ñþû|¹´´T ÛWží¿÷ñóhÿýKÙ—í¿ößGûï£ý÷Ñþûhÿý.öß$ã£0ã}•L5Àö&`ïÎÏeoøÂ­T(°·+›§oª;Gåw•ã* 0 ÑX&Rä–®zpxÿòè]ùf@3¦Ø€«a¼ † op¾pñZòëF=Ñ¢iMA鯙=8¬±ã‘úðu©îíŸ``¾Æÿ›sÄø”æu„´23·©“ª”µút¦ÕÅ#E£(‘£Ø&eñÖIÅbBö÷6÷¶~s:5“®l†Ûà1ŽÖ vÔá1åÜä™E‚Qíߨ%P;d-Ð@áFog ØxžÀªdB«Ànsêk°2BC#¬>J F§GÇ{+'üÒü±¶ÎÏéøòºpæ\9çƒÞ¨ï€]ƒ§ßyÁgf^k"­¥£Z–[ ‹b²/Ï“â á6§ÿðtsow«J¨HÉJ:gp‚åÌ57\0Þß=º¸y°§¾TŒ/ïOþ¸!xŽù°Z>¡Å’e1õ¶²õÛLô¶|´m€Ð£ŒTõÿÙ_ðØ`ªlW.ÿØYxjTù¢ìÀv –Ýȼ`´UtnÄäXza:BòtX†hL‡Â6\—Y˜zÝy ™LÙ†{’oFæÿ˜‘s¥4#â1E@¥á.Ó¾–v{ŽGGGÕ««+"–p™!©¦Ý† {»ôKçØ„2êÇŠ¡—ûÚëæ˜iëAÆe‰=‹Ì;ï31´™`Ô¾«EβgÈ×y¤1܂شјl}/omUOxßsó/^¼pC%~«œ «£J¬ºœºBÓWCäˆçîò³ßG„sŸXXÒ,‚ÔB^uòQ`š…xÐgŠ¡ H¯èu¯ÑÆ©r£TIðñœj.t‚Æ:¶uð˜­ëÏÃ]?<:ݯ8Z‰•p‰ãßv½Ä²­Dµ|ôF–X —†`߀±.±YÞú Y˜ßU~×jÅE$¡Í¢¥Íž]¤–þâµG¸ªÿò=Ö<îÆJ´˜?ˆÇI0=$'f9Á ‘Z<‡ðâÏrþÂù·çöéBkF¿Ý½ l;Éš¬)5È•Ö7ÂFCÇtÏ÷‚à¯÷Åkµ‰_ñ†3„º|Wc… ï ='@„ÀÜš9¿`Û§â úLñ>å°Äp¿fÈq$pM¤4®|xì.ÛW,º¥‘^dÿ@¢"¥H`J·ËÇÀŸð"‹‘"œ(«†–Xó ijsd;Ü3´èÄå<´ð‘!ín¿+ÿ–óÐ0•Ã??óƒ™tõ¢È²‹Â²(£3œQÛ#¿ïI ¦æjÎG;ãW8þÆVCóêKùwõiÅ7fSy×b ä²Ê!£a£‡öŒ¾ï ƒ5ÀS(Ôê )¶éœ‚è°X¢Í²þÙ0àM†Ü¶q°¡”m§Úiuyî$‡'‡ü×,ucv!8<P¾œ£—süe¨æ½Ü°¿lŒ:k§ßöê0¿í6:Páøð>ú3ô ¤Ë7YµÈ’GQU*SõKÁöNAtÑíèoiÃô®ä0ÕDåÏöq§•6'BŸ¥ÈOâÌØJ3Uqý,âäe˜; ϳSJH k5‡”²ëû¨Ÿ!m‘›²S®uÐö°­AZis ÒJ›kVšÍFŒÕè+¼Öf^ÛÃyó‹c`-›xñ  ¹~ëi±ò¡UàK·O‡ C.XÖ ÷—ÔD"ðÜtHÂêñØÁÄíÜœ‹â/T?ªQ߯ØE¨5NBɼŒú@xû\wë ŽAõÞ×a3½+ÁL½[¤ßKô{™~¯Ðïçô{•~¿ ßÅ‚Pzâ—"{VBHx[ü^¢ßËô{…~?§ß«ôûµ©Ã(1%‚Q"%‚Q"%‚Q"%‚Q"‹:ŒEc‘`,ŒE‚±H0 Æ"ÁX$‹/ˆ¢s]Ä«~ØÝ®TÑz¬MS¡°^Ä”yø±Èþ°áuñ<ŠGÃ*8pà®—œƒSbpJ6ætºÀ†]x®ÏTa5/?²‰,2€E­C‰-D‰­D –BŸì ‚­K‰-L‰¯L‰,1€|Q`U4¥¥Zb›ÅÁÚX˜ÞQ]8ÃrCÈ_">c¸t2Ó’v{æ&KÊ]žÌeŽÜA‹y.ÔÑG°Çd žÚŒl=²µ¦°V¬Ôç"æ_õA0o ÑÁXH”‰ÜÓŠ|ÖŒNψN3Ž…™ŒØ@ïG*ð§C¿Óªd|ÉIÒÄÌ#k—Ÿ!O¨¾1v>³/p Ö~&„9‚½‡bk‘9hzf€µ ‘m*]Qƒ2O]zƒFH>ÚÁ&«l üggþµz¨ r6¹ÚF.QP¨eSSøð =t©¨ùP•ö‰pé?PšjeúÃ)UâY§«$8`‘ðCU{\e¯y¦(y¨•g¹y̰‡ªf!‹tª"ƒt; ‡=T…˜FŒé€d!í¡*ɺYöú8õP+X¯"]ÇZ‘¾ãD‹è0xb,³{¨äüj«aŒP<œIÖžNnUÞnÀx];ƾ D‹¹`?·‹-Qúf­Ð`M1ã'Z7(dFtFD !W†G?nÒѰ‡’d47\ùs}‰¤ˆñ-ªJ-è¹9ÃÔ Ä7àˆ%€$’j»‡zN´R<ƒÖwìÖüÀo#;0Óô€‚v#býO´¥Šè( ¨H5ñÙ ÃGŒdÄqµ2 õ ü/- m`TÍy(ãúÁ<^p«è/¦‰ùø]Ù53ã‹DÀÛ*¤ä&—w‘KÄ^ŽÞˆÂÖ9®ªåVetfŒ@ Ì6ˆ¯1ΨŒšáÀ(MÛÙÝN¯™w.|¯Ï†0»c|;Éq(åœu^vŸiìg;µhž< µŸó†Ý È; "ä€8ùÖÚŒÖî?×f¾xU²{}úLd%çõóúÍ4yöèüS¶7ÌuòE{ŽÁM}—*ߣÏäu(ý Œs¸þöè)-—cýtAVŸsj4ó¯e_×ýUÍ :õj yî媢ü±âQ3ÿt^­;;üKknŽUÉi“ãÊîýD­qáúgLÕùGƒD¯õ\9htÀ#¾þvšÓƒV¾>eüR šžKô9áj‚Ös3FÞ™Íý“‰.ƒòOýŒ¦Ê’Àâ¼0¿¾Z4ôèã)Ñ´Á‚ ŒÅjŸ³’ë# %C6Ñ,Ð(¡,Œ’ÒÖ8¶6ÍeDA™,f á„ôsÈ :èùŽá.£aèý” 10”‘jáæÏ›#M:Ó?¥ø)¯ÝëúOÉãžx³Æ±ó”ÿ0ª4O œÁ¡Àçã¸F»J YÞÛCS.œµê[õøähÁ)Ëa3ªA3E1YO# 9—ë¬[˜® –¤1CÜd³u…±‚LÙ:4o’Óã.“Z'kÆCÇÎ,(ÅHÉ!”ñ]\I(† ÇOǤÌôš×>Ê¢¸ézkRÀýÑíIprý+”­uòŽu£Wå%s&APj=¨y‹b–¶úÚŒVCe0¡ü)/fyc"éè÷]y{õìtÕ Ò²YÎLÃ&W(Bád‡G»ïsðŒÜêý'ç¥ó¦r’cuQ5ç”f÷v÷£îâŽdIÌW8Œ«°æð0¼è”JŸ ¹£Ð#‡»µÑJÛ}X§XXX,¸‡•-Œ•nHz ~“¥âr H<GJnÝÏÕEÁž|“.@/•O6‡¹`k[R âsÝ×c`[£éÕhÃThø‹ðƒGgvÞÇR†éŒ :‹Æ¶ËÞ¨ÝÀJ÷yÞ*5ä1€¾`P\Cßxò“lµ[Ãk`!„Gü¥OÖ ’<ò&ÞŸIìS¾(^€K)´Óh=ëâÊð `ów‰¶‰ "ÊyŽò†— ·{š‚§ÃL Ãzi (Ö—b§1™Ûº1Þ™“Åö¶êŸ¯eVjßFŸ:84¹]D! ©ãã|é“¡%Zïÿ%J;£>Åy÷½½QˤÝІ­¢ï77'qáü-­I<­ΓGúFày"k_ª"'‰5CPã:ƒJ$çe˜épfŸ0€Ž©óÖÝC1¤¹ÆÍ÷@ô«! ùÐjÈ÷àÞrP¯)‘\Š„<Ú™AW“-Á>/šu¤l¿nÊû¬”‰ZT*B©°\D fìö¹Ä×¼Y®è÷¦Å6ÖV%Ž#rY}‘ƒT«o2^ ¸U<1ª2%o˜ÞE¨’2"ãe4¹­H+Œüa]ÑÈ*wYç Ž!²úi-Tžy¢H6…—D 8ëf•³õ8¦iÕ·ðô-ÇEL·ùŒÎ99¬²¤Uaˆ˜8 æ9ª»y Úº€BGk=1 (½+ZÞá]´¼µ cðÐk3ƒºØƒœK¨+ }QVðÔ×転x'·({ßl{ç[#~ø"[ñíöŒô;¢W<ó’‡í©3Ò½n›+'X ëç.¦Z‘GG¹vËi3ê1wžºÀ˜c8š ºQdWÄÃ~M Ï1‚» âÂÌéÉÎü*&œáú¾Ðï›{Õ®‡~À€øH˜²8_Y=Ô¼ª‰£š NŽâé|LÌ@œINR*_xý>Ž»‹ùAç‹+¼#5âogßïùï¶[Ÿ}8.ÜOÎ'† ³˜ƒ9Õž>gœOräp±èÉÑi™_9ìu¯Ï´cµÖ°ã”o⨲³[ÝÙ+¿©þþÇ¿¸` ï‰²L"©E¬â&Vé0šÒ¯IƇ1zÀ$$à¶@¾'N¥BkÚ¢ýuÑ!D¬(º|û!Áy`º¼¡W¯á•‘ê:,+°3Ð@ç0Dþý̓ƒ=9õ,†˜ý®È¦Š.ø‹Ã“#§oH"ôS+€Gj丢Mê…MV,ã«è+Ù§Ëä…%Ø8àgi‘˜“n‚‰"Þ=g"OjP6`†ÿC’QŒírGIÔ62„G~§?¼æ¾›Œ Â3›ãýëuC-~s£XHöø“E "¢ÂIÌ釓¸3/%*LþK°7D>cDНáÓ‰¡Ž!1‰‘Y:ñ¨â)\x¹ù⚣:ªËÊpÌ9[™ƒ‚¶4òœx %¾f–¥¾/²@ù¬/j…é&èóËô½‹LÕÚŒd)B¯æà„š·”ç~¨ä5”£¼bMi޹‚ËÃ`+p‡#¼§½36‘I´.^†H‹²&J ð˜³p¥>¤´‚Üý¬‘8qaRõ¨ÂÜïC`u>·‚‹*OB²î<‰Âþùçà'§G¿í¿ÅFv÷ßÈápD€¢1CÚ:Œâ™¾w» ¶Ä}X:çm`š òFQBœW> e*~`-`ÈDå¥y, Ùă‚*ꛟc«|ó’ȃfSÕ‚Æ,¥,7b¯ÌîÂ<vœk©Ÿ¸§ô—©;tªÁιò@r„ót®PZ,;¹?®EO(Ãi¨5jƒ‹sä€5WÚZYvr‹-Tu„IîÕ …Å„¡·ŸOIÃg…ÕÊ£œÚè¡™‡@éõPjyºH\vŸVã=Jߎp‘ é1wQyÅ·I|æ‚å™ë£|!6qÎ÷À/1wX Ã'ƃÍý » àÀi·E¥úƒÌй,ÊÆ‘²@S½†¤³lé*“>œ“ Ejš¯ü¯ºc4ïÈìXÜÁ¨Þ@ 0&”˜ Ä;ÜD*^GI…#3›3´>ÔO_Ù'¹™Tšœ¯òˆ+èÁ±»¿•ƒaCîšíe#ïôµ7ßø'©û6¡"Ó?‹À0a¾xˆÉ0^‡¢u0DG€dœnmãÅÕÝ\õõ[Á2;{ÛÕ]AKru×lÓR¤¡!b‹”¤á&Ÿ5Ñ‘ku±¿ôI)r”À«RÝhÀ$C ZÛ8˜ù×ämAw2؇fºœÍöñP"E%b‰$°È裈8 X‹·9I 0‚*U[å÷“£r”šs68®ó.¦ÇC7ly„"| ŽD͘òñÖb úD釘qà`^9ÅÒjâ|K8dÈZ[Ós<}Õ>³%x…P3­Ÿ¨±ŽÈØÇ/jßû¬§ûYìoK"™8™_‘FTŸ#ùèð`+ÕU6A°^#ÓÃ>ÏÏÇØõþTÈÇ)¶_`C—Š'°ú9c·×û¡·j»cÛ”–¢ŠÊzŸ ðmÖA:„µ·uým]CîÔµÑHƒI:Ôì3vo·+=”eð/)}ÑÎÿïËÖ÷¾rý£ZÙ¡`5ð|¸ôIùÈÇíŠän…†@t‰¢cŽ£F ®Ž»üËÙKFëL ‡æYÆÀ) ‚à« d/4ö)ôp#Æk£öBxÆøf–' ºB34àŸ© °³ùÌÜÜHT¼ >¦·Â2ygë´´ùt;dz\‰+ÐRzOS9·.¹C Ë …«ZuiP^tÁåvº¦#Ÿe(rLÃøé+&¦¤kb žKPX¸£>*žfDã^ÄÄíjÚ)k†™j J¾cèZD‡)U)¼ö¸v†Üs,¨Ùµ&‡¡JÒq&¡VØ1…÷²ÊÌ\ƒäâýR4})IÒÏË´T¤ú<ÔÞrË 3lÔ°“þæˆKç%)0Ìð'<¹­!SxߎPÞÉTš2š-­E“Èo*æBQ´05 üBF¦ Þ¢Ñãd ‹¢ÌD¿”“VÌ´UDu³¸ZÒá `›¡Rz÷Ý;Ö”òx—ç@ lª{:•D)%&ò¯ÀQÛgp åTF†®’Øp-=»ñr·>ü±œ¸oÐ0cÞ"®¯XKc¾‰Î³I€éÖ» hÁÕ׃:©ÕÅâxXü¤ˆä#Åø—,¤qýëÔËc<›ŸYò÷êé4—yµàÁ8™L×e@g`' ®ùÈ ÂÜ:3ˆy_ç‹N]Ô¿"þj_¿ÍÄN¢Ã µ D&êëŒu’,SÄ­4‘éor„½ÊáH¼cì¯ØfUØçl˜œ—²ì< dbËBÊQ0exNôçé£é½îÓ¸`Ó™™¨/‚öšœ.Zçíku@õd‹%;á¾è>sña¹bÈÇG)…o%9P?®}Ê–‡Á„ík©>‘ú˜6º¶¯gLÝë×ÁÐï LRÿ¬E‹³Ð2tśƜr€áöNÓ÷Ðj 'é`(‹è°7Ã-¥Ð*ºËãò¹=jœ‹r­î_8Ö|•S¦°Éi‰Zgɺg:Þg™ôQ#ªHY>Éù‰\Ž0Š<‰¤ÊUä`ÃFÁ­4Ö—Vc„1ÌS–gBÇ3 ½Y‡¾Gº*4á±+VI®:È5w ÌöbH©B–<©›Å©+:Ô èìozué²Àú…ŽdœQP.¼47°)q]m!:3Äv F]Rf³vçÀ“D]cªÚ.𨀓n¢ÿÏ!0ÔÑPl¦…Ú-™s§rÈÎU„*<¸´~’×,…¥ ¯j:ïr~—"I)€Õ»d].ÌpKÂqå*Æç^G¹g·©|jèJÝæK@y¹R3øR7xN¸!ë›–Ç΂ÀYœ¬'4ýˆÑ~÷KkÐëÏ4Ã]Áªy˜»h8lSÆ­Rá·Ö¦rñÒûÊ °DÞ`àA‡2 —‡Ùe±Úrç5Dã½—ùŠViWP~[Â>å,«dÀæö¤ÇlJ¹©*_ã¼ ÖÀÜ´ÑÄí-F äÉÂpdgiAGía Ð„í Œ uI«!Šdw‘ cÄJ8þ¸ S§ÄÓ‡iane×~‡—e¨x܉Ÿ†¬Ñ9ÖNŸ¨dŸßú‰ˆOžb”è#˜‘×…4øm$¾¢”1@,:™Ê/1, XµÆ5ÙËéû€†š~FÓ ƒ¤Ï<ðÙÓ Ø‡P橃ÞÙ¢·d<‘2̉qž»¤b\u¨žê© )h!m‘ ´™\kƇ¶–µ“ìöܺgt’\4‡Æ•+P$¦ÏoÌ0 ›G]G®Æ{ÃN:u} £^ïs͇¦z0›i™ ]÷x2ŒÝ~ÐA)U³ž Éwè¥!Àñ<-=veCw„‰þvh³Á¡hÕ«´:<šŸØ ’°=³ä‚s€|Ù üüLH¥ŽlÙ(¿¹ÍùCáNº@D¬—p)^#14›b¢vB¸bpÇX8.ᬆ?F¹TD²ØY˜é¤Ñs¾²¼+L€Ø‰Uçœ Îí«úx¹¦^}ÙΫ´40áÊÖþ„U¨¯=S<¤è¯fÅWŇ77ô”ð€ŒÐŽk –Å4É]TÑ£ë…6˜pO^£LÉBOÖÂÇ’i"IRÀPÉNÜ ¿Ò&hÁI‚ÖeMB>I†Ó¶N:k׉ߥÆ(ÏÄ8%Ûñ­ÑÍFî%²¶ç^~P‹. [!ì <9/ZÜ<¯Éçç=3àó\òÕ^õÙ³AíåZ*Z±˜jèS´CRh¡ ìøné´ÅtrÄ ‰/}!µŸ©;m!+<êÒ¹Ä}2†è:tˆ2¡i«ÍS ÈE‡›8ffýeNAC)zÿ%F;”I*„'b ®a†Jæa* Ç• É;5~E;ú.³ô.±!ÿ(MÞÃß(ÎÍôU§`gÐ1Îîx:¯×‘ÆzÎ1lÈ- ùãòÌÑštáfW—²¾…Î@ Êë%Çy‰ )ÃÊAÓÌ÷IN›JÏÞêŠiÓJ³¨Ym’ùº·´‹¢(ˆª€`_º8ÝŠ\|©¶‡Èƒ”CúÀóƒ«ëAyŒÛ…ʨ"µ~ñwá«ÂÜ,•×sÉiåEŽ:m©XÛ—c¤¨Â›¸›‚öã:<{×ü"e„#©Ñ˜ ­Ð]ž.QRkNô&™ŠUÆÀlj†¥–ÇüLyS,g3¬Ç×çèb0  ^­GAµk’ox²+λDà1Ü`Ñû¬Ë?ƒø€3 Q r»Õi ]«[NS*ìÌ;ÑÇL)нâJu¨cú°ÙcSCŽo¨‘Æ$~± ârƒ’Å+”Àþëúì5m*0¿¼§/° *iuö…W5¯sâ£s¥ÛÕk¡j‡Ò[ÊŽ>T¦1à ÏÐn c& ŒTÉôêu˜f/{„c'Ù! BDÙ¡<‘vmÔÜS?éÉÙ„cF`šun2+3q¬}îy[ÇùHÐf:$Ö)v챃]ÑJä>áüÉd¸HÙ— |Rs±˜d<ùiÎ3TiøXÒ…ef¼›Åè[n‰2_‚ÓÑ–J§2Ύ哲™”3Þ©ÌXaa“2+qËY´’P¥qÛŒ¹>b·<ò*,àt|0Ž´@5•–üg“ž>fð”ÝÎhM'‚Í ÿÆ‘†pÿó ×rGŸkÝMS ÷SŽ•ñw Iõil²JÓî7Ù§´zqvö¬ÙZ`K@!L$^ ¿/½:2Jí°.#ÎÄ*R® ’†ÝS]\8 —m¶c–ñq®tDC:ìŠs=+./s1Tx-2mt‡"=©&«8T[»A#Zñ)>Êõ¢ ÚÿBuªàæå&²÷³À-{mÆq°deÉ"ÅsqÝÒ§Cß)ï!ÎöÁÿŽZŽ0[ ÷·ÈsŽ4Dœ@^j"g¿ébLL*wô3£E)œIè<›Ù”¨7¡ÍAl ‹N ‘ï¥;K¹ì"¬0"A&¡^SY¥Ïóã¥P5Å-²F„…YsÍ4N ÖôNB»:wbÃÚwœ¹˜ê":{F$(Y—NËÑ…n^a {fŽ;™û GIùÊQ€ OÃHpB dÖÍ„¼2Út(Õ=œTr7E# ÷yF››ädÖ Ö€%#ägÝ÷@‡ˆô£`y]4Á>'ï´ÑP ¬j˜áìSªxy’kù^åilIYcÆ!1PÇËkÏskèS,ÄH®K×ø{áUö‡äÜýÊfl°Ï Ežaun¶ÆÇ#y[Éhl¡å›˜ÒŽ =ç¥Ç¹vk°¾/YtS-÷2Õ-°mcˆÿ/õmÈàE)7{øŽŠ F„¼sîy%~ó3fs¸ÄÜ¢Ù€\ìþ]¡Lvb¹E 0‹7þ­µÉ™£ýÄ}k$Q Ï"kÑ}³(Ê8Š0ôVF²f2êð„øEó)ŠÜœÚ©¦ÒsxHˆ²ƒ}T-QBÌ_Moƒ4ëóNQˆiHw•wG0>`ÇÄôaOêÒ,ų®‹¿:E¼c…kB±F•Ë`j¨:·ÚnT3´Ä ®©‰2`£É_J˜‘·•ò!]—Ààh.ÏÂ/OëXÇ»ª6ü6Íu6¢ÙH«óªQéa‰¦dªÌÓ>yPÿÐÅ}hdUWëÀ< #ua^ƒ-›Ì¶Ts ^Ø“ùœ| O`}“31iITÒö†dõ*Ú È\ê;Ê ð„!’syX‚?5û-Ц,Ý”&Üá=e»Xëûu‘Íá"› }–Ì!]ý< @Ñ6 T)B\aFh£Î/‹¤v…0Ö¥k¡ÍB"ï§¼ƒ)œÎ|ÅŠ2_ªÎÕ¥—I›HÌöEÆH”mÔ¦]#ñpŸ‰™[h7vXþƒóÖ8hÎv þåL4‰æzTI¢\ 5°ÒGKû–)}«žjT™™,¶­BÏ{L@ó’!"O$ºØßÍ”4¦t’WŽZ­¡ôêáÀær{ÃÇEÇ:ç÷ÈÝ‚S„hõ*½°Ù®ž 1×TYˆ5tr_“—ìø/\ñTˆè}‘ûíf¼Q(!5°Iù~Ä™ EÊ}ÍÚQèæ?Jí§‹ çå*ädLo޳xî쯼‡‹?û¤õÄ¡Œ¹<rc!y!—k—P Æóíc¯‹+óèø‰gËb‰>vÈ»ŸÜÖk”Û‰Lm{qx›hŒã—â0gDžÙYÙ‡Ñ÷}ïà¸"Xx2^}JÐ(Š’Ñ”65˜ËDY”¹°ü”R˜°˜¡)á4—ßÛÂÎ:æò {\Ú†šÔÃr’Œ²ÈxÁ´,‚mo1{(˵‚Ç¿ÊÆI.Â%ï ÿâIû ÏÃmt«Á“Œp5ÌÚ ³jŠßqÏL9‹"‹9cÑzÔXÄGTÐq·^¦®œrx’µ¹ð¡'beG®qL r©Mäñ#"#úÞ’ÉDX—Th7]tø¥T)DŽF6Ä'SIQ䌞‹½—§^ô(E`ŒˆXKlá`0ê£Ø­ŽÅç„…g¡‘œ³Ð,%ó²–s-PÖHVÁ;õÄLbQÛ³¨Ú(*] ¹_ÞÓb•ã¥ÛIRð‡Z'³ ½z¿÷£9gq9íª qR$ZXi›-Ù]£ñòŠ¥áh â¥J¢lØPÀÍ‚âm$] 6w6ÄÔš£(›ØÅÐ,ÙòÆ¸Ž©º—!\rl¸;2œ*’bSœ¦ôtW„ý3íô(gRb¢$WËm$y¾'ˆFêœïÿ 6ö8!Ev<äyBeO#®G7–Þ}‚1¦Lª9½k‰îK|–ž¥­àBQ&`¬S$¶Gù¡¥Q&ÍW“PS¸jºÑG*ûiØç‚ç‡úõq®J­‚þüøä–ƒkGN³Åízš† è³ÏÃPšä}ɯ#†Haˆ›¥°u3TÙß¶L[x¾Â”üI,%·3Wœ8[X¬2ͤ˜9C¤¤þß…ú+¶Ûr„…ʼn©ÿŒ\ }–ÑëR3`Êð6ŽkfHsˆÃã Åýr¿qÁyÓ7äѽ¨‘ñh!ïwQ‰ƒTGÅsëvbéA™;ûû¡Ò.æ—,Ur©"ÆôCxé:*YDàƒê±Ú‹Ž<¾ D¹ey‡%E•Cökí«<îpAä#¦W¦ÄÔRïPl‚yr1tÝ)ïí¼=:8}ó–(›NtÄØVx½nkøí&Qm–²¶Æ{¿a¡„’åT‹€õ[uLì ¬ô%¿Ò ÿV9á ü¦$•(‰†ÑN”ÆÁû—Š4{­6 B3Óĉx‡¦_1/t•bÐÖÛÔæ'|ã+/(R%†wSO¿û‘Î $ƒçl­G®bÊ*†Ê€"5©†¨¸£>zmJŒÎ¡(Ú4…Ø¥æ@ë&ž8?ÿ,·&Ok× ;鈱1O=ùDz1®¡Ðë:fWÖí¹æÔ3NçÜÉŸMyu”À9}ñ-gyÂsw_WíŸ`–#÷)ëˆR#Êдz/ñ…&æf9ƒ…ÞÆ¼ü°5°r pe;ˆ*—\ Ô¥YÐËKÿ—/jG†šå|à©Ù*õû,³j8gŒÃsÆx:ŸŹWáBÄ"g„£˜+J›R=×™†4-ë|³ë\AždÅJ£Fq+Û@ÇÓú¤!JZ0' wb,sÉø»ÃœÌ9S9f8ÿat‡{)ÜÒ²Ù„qû›C\>É©3&D ïíháRòÃCcï<`X."W)Ÿt"I¼+L€T°ž«ñxO†Ìë~d"òK kΣ°ÂK#¼]àd®¡÷×Ü)óÕ›c°´†l£ ¬€¶¯¤ëîð«™ZÝ Õà2p€qññ P`‡÷>W׸K|ÖÉã«LÔQ'ÏFõ׌©ožˆÆâ_¡w6xG3ÀÐCØá¤Qâ¬rkèÈn!²] >¬Î¯^;£.@c­î¯ÝâWùbˆŠê“–#Íà±ÉIÄ jÁgW2Æ8OdPšN,$lá°7ËÛ”‹õx¯|ü¶ú[”rà§³‡)œÀ‚ ^^ôÚYÜÿØŒîÁí¬‰2 å§lôê¢Dç?~xÊê`ÁyúÆëOq¯ † 4®»^‡í‘ò’b·˜1W³½t %H¤îÅùSûE1LJÒÙhGý„–Oª‘Ùݸ,A"òOó ¼0×…Çñ$Cï3`Ïàݡ'U'¥s¨¤)1X?4ÑÑH+oˆX˜­zšâLì/ô l‰°.ÊUÂPNxBÊ›½Å¥4\dmišg¼Å«„Žd9=Xmš×‘^’Œ®µ±Þ:/~>s‹½eà¨ÛËK5b/Ã8qw䜟o…³NÏaMÛì¶"·DNpq~3\ÿ%&æ<Í_ikßI*Ï#8UØé‹Ñ&ÚÇ­zÙnuý5©ã„fà+uÔÖÑÞŽ(È´}áXx‹ªjÿ¥§Ú=®îW>€$[a»Ãu¹®˜°nu` )𝍗ÛßÛÜ;Øúmþu·-Täû{t¿óÎîïÀóÛ‹¶.`Þ'ýµže’€“•`›†ìh¸¸vFŽ+>¹œŸ€ÈU=”ú-k··g,_|È?ùzJwüÁ9c¢vX.L"ükÈŠs'yˆ¯6âªYîf)®Êá\¦™ @cI"2Š„‘0kgL˜ÌD ÜüÑÁñ1"Bœ¼ÄmÞy×äì™ZGä½k‚¸D,¼È)*Òq° ¢žœs² £´‰<1æ¿Vg 3‡@p‚€—b Eµà‚.Ĩù"¶ðg&ô„Ù…éâÒUϳ×CvÓ2q³È{‹×g I½á] ®¶`òÌL:u ý^(úýQHÐŽ¼ÈcÛ¾Žšša{¼Ì²BÄrG^LP4Õ *§.Oí½WÙÏ5ëÂá#/j©wdjÚ”„­ü4ÒTâS$oI0š&’ŸD³F¤kØ_žKwGO¦»Φ«wL»Ï 0ØHƒ›épÕgC ¢åðÐ6Fè³L&æÉ¶u;šÆœOFƒºÌ'¥÷iL.£ ì®O8W³‚2§€P*øøûî9” Ik ­^4·’çÑ9º¹úzš"R`ÜIVêÂ&#Ý’Ìî„Ð('îÙ»MûÂüˆ|ËLŸ×|­Ð<ƒž²r8¼&Ÿè^»ìFÙ Çj:9.Ö²[+JÐN>Ý“I ¹v[èàÝ<½»l5Ð?BÜÝ(¶/éQPLFzZaÂæô„R«aŠÎH¤‡ÈÖö=ŽmŠemûÍ¡J<º2¢Yçyú-HKS¯òÆs’iXy6øÍú§”Tñ©”(¼ô¡c™\n™* §’˜4°‰cAjÕ”àÊáló˜jHî#bbåo3°B¿G­ò5|ñ8(†d@Zžrì|ª.5¡û‰FÍf«Þ¢"À­À ú)4Ÿ›ÕIºœðóC_q3–å¶-còÒë#¢ë͹ÇcQ;/áoÒ |áò‰pÓ–ÿaý(Á—ùðÚ×fæÑ½^‹bØíùטƒ’Ü)U =U£,ß>>©BØKæ*TÔ uZ*G§(´X2àt¼+[J]a°^¤ôI”µÈâ§Ýïå­Ð±GøÁGý]g}Š ë0½C7‹ð¬¨‡•24kfㇰ-N^Úò¨Ü_…L2ð~Mï[A|»“.Fû—عwåßï±sïv÷£ýã㻸»]„ÕB‡ÁÈãà —øtwÿd±¤¦ÚdyR»s¸wzé>ÌÜâ4»óÏÓÊÑ‘þÐÓ ç§8~?¢K¤­†XÑrüa¨¨eŽÕkU£åøÃPQË$é3¤U¶”Oya:"•b|ÞÉÑ1øJŽÚÝ—ê¡1á°$Uø„b«1õôÜ»RÏÕÚá+øÈ^‰³j‹ÅsÐî"ïåv[¥meؼ®þ ARŽ5UD4•¸ë ÕmuFÝHÊŠ2»•(äÿïÈk‹¸ë+|”Þ_¨‹môÐj§²ÒSŽ]¬Úú¥µ—WÖÒek!S6‚Åodo))ŒµÆDZŽ×øB’Õ%Ų#&gŒ>⌼êØî6YiÞXXÚdÈ+Ô¬0sã¨;lµ¹e¸Ò@÷ïeÐ#æð…÷» ƒÝvE#Ìë óƒÞçº,fÛõ]c*Emæ`%ü'×PíJ×#(ŽŠZrqQ:»C8|—úÇﯸM_IQå~S· È 9;2½–Ø% ÂÇýÒcVÞ³ÁY£myÌ*Ky-#M¾º5šMé%wLvdêC6´>Ïš¤ ?"Öƒ­.º1Š\«ÀÿÚíuçEfKnWüUÊÊ€@©‚É«Œ]œÞ¾ÎË ¢]’Ž9œ’%R²€êV9ö"£IÒ¢gäo€V¼¥±«_æ•Z=DØÆä—˜*œ¢°\­f8)g"-¦Iˆm¯×%}DÙA5‹à†?9 *"¢‘âí‰)g:cÎÃ,{ƒF WBABÏ­z}ðŒš­ãdDmÑ’9-Ì‘†ô>ÎÍ%ÝÁ»sŸ=š2y3¡@~‹'WŸ ´ÐnóÜ‘×y®Óuž;âÂΈ‚Y“”Õ¨^[b/ ÅöUU·W5;MóªõXÖ}ž‰6 ý—ÅÂ#0Š5¾Å(ÌØOšÜ?ßfôÏš²›I0®e’§´Á%Ç¡„åÖæðˆxúk±ÏÞ• ¥PŸ©Ý)¡Í¡©k'uKˆ”e~&Câ)£ñ˜ˆ|+T¾2§¡³¡Ã‚ÔÙÐÚDló›ð%=ª”ádÙÜ« §q”Ýá ×æqzâF[b» r¬mZ¦9!f*TR˜® E5â$¯œ¬SH!°áÙš?ÇÇиu~Ä×|Ü$?aôÔ¾âæv¶¥ûæ ’×¾ˆ»óZ dq0EŒJä×L7§°0xzk°ð˜n€¹úŒøJôOiCwÞ£ìMMo ³Dø£O iÛD¦G§Ð@b­g‘Èjü±‹S8 ¨ýùyó!†Ë(oÔÄ£S|b=vô$ÕR,½lékáÈ«9 ¿b[÷dnvÄív›À).8‡#ŠA’™üÔ…âî -ö:œb^¸TÀnÏS빇R~Sšø#liJù, ýÐDÞvÏkHÕ² §{µx3t]á—Ìèî’èìÑWš¬Ù}™ú_gÏÐYhú)ÿô: î´‚^× 83™t#Ж!8pœ€“ê‡Ýí“·H^V“¤!G¢ã‚©ýá/ôYbHïæî÷šfX…9uyó?bK1¿Ê½‘eYÖ&·U|ÜC Ý>€@xú­ŸEò­ø 5ÔàPÚCóZÛîft ޲µìÕ5[ ԠᓆïY$«‹S4„‰âÔ5µâf  úÏb77ãO:C¤È“…Z˜¦»="uröÀù¦/Y±"nWÌdi"‹,¡æÃ"Gè“•°FÙVÈvÊ,3:þ3™’WÂGj¾Œ/¦bÍ­ðÆ‚9zó·ã×åšÈ««ÉKäÓ³réSFÆ»A o5½5O\âö1i¯ù<’yÇèž^‰b¡ÉŽ¿Í¿Í„?}3xT.*–#têÖÛ#LÜ‚,SQRÀŽR³»†7‹dDØßñN¯ïyô(lQ^beñùNçIqžÿƒ[¯ã4‰;ûû½hû=æ¤0f?å.éMÛ£;hõ~H¯6Ÿ3ÏF]”^¤¢G>P]—¸:L~œPŸ½+UNƒz÷ŽYtñ©´o£‰2tVžZ"9¸×¦¸"¦bd€€4Ÿ‡çºÝ].we¦oºÔœCܧl1sŠyžY.`Ædv÷%é‘ ººš*›7AaæË/þ¯òbWf㤞‘4dª[€¹®‰¸ Œ‡Å¼SwŸ†“´.5høfÙ(øeSß3Û f)`Û‘‰ìy ŽWë† !Ç·LnmÍc S‘EÖÄÓéû­d‹Ç <º^ñ‡f2øW%ø‘ݺ—V1õ|}e·î«ÕYL=¿k±¤~E=•Ôó»vKê—ÅßI{qGdI²"ÛwôéŒí«Ó,¾ll¯XKÛßp¼Vl‰úµ1ÖÒvG8xa_q›;ƒb/ŸÍ)îõº>/Ì1NÎ’öå!xÇ¡%@zÈ™.>ØPUÌ qœ{u-*F´|"¸ ̈5ê·[ujS8ÙI·#ÍId÷”~FÌíºY÷mngoHÀÜX”\ø d‚hÌüÆ“¼0i #êÝ'n @×'2žàE»MýÞiÌŸàÄûô}öý>¦"¹uuÏ>-£œ0Ê0Ÿ;,ŒoÑa"xÌmI°#Žy¬3e•î´}Í:¤yõ©TÚg>m2E.{ƒÏd¼ô`!Æ"Ú˜qYúz 3Õ²› ¬QÌ*&˜íq–¡ŽÌg W?«¡hîmöXY‹„9 Õ÷øõßh„¯”GAbià¢Ò”Ãçñß,+›¼´±)4"špÎÕœ²ÀQmby$émÕêY´iLE 4Ž. iìÊÃèxÊgzE¦kÛ÷’e7ÅèÑúx&ó([zeiøõ4IƱÉ\£Òv÷­öwœ—Dh—ÇoòÄm>ç˜`Žã¶4ÇJuâÐ`J¦=]ñK‡xj* «&øîÔ$Ž}]ÌТ‰¾z/î k2¸ªiþø ™Œ:š•fXš.x&Aíýè7®_ÜòˆÛ´üâ²óuã’ü[yÍ~—=”ÐÆm“$º:¦)'~RR-él[,ܲÙñ)›uÝj8”鯒én-Çýåµôü‡áiK—Æ~Tikå‘Ç–?cI[S’°îG”Z,>.³9ޱÉÁ£˜ô7“E£ûž?LÑèo+ýˆÏ4â’'’xðwØ©ÍâÃö0|Öj­á|oAjh¶ÍzÛ ‚<åiÕ(‡î¶†Þcì®6àw–QmÊæaFÑ*KsKIuå‹^HJ  ó¥åev)“÷RHY ŒÒt±e¨~ÇŸ0)T€X,=g=ÃÝJñkAÀù]´$6hP,ë3lò&ÐhÚ®ùÃKßg·¸ÑòåãcêÚYÙ7v7»8LMbo4”·ª±¾ð[ :hð¬Ûšî‘Æ0Ý/-RP÷NÓáÌ‚w8tU¬*T½F­á ¹ÞDQÕ|.rÞ¦Ý Zç]ŽLάê†ÜUh"M'í‘" Ñî­KO”FÕj¯ÇÂ(BA MïšÜbÉùÕ¼‰œv]ÆÁ•yâ™4§óaÚ8÷z½ÏÖ¤:TâÀ÷ð±ÔÞÜóՅþA÷Ôm¾ìª4ºJˆB-{5o­é´ÚÏIy§+Œ0#JpÙ¢6¹Ï‹MS"'úH9ÿ˜Ï ¿ ó•òé‰T‰{¥9êDêľ3\æ"¯âš2ÇhZÃ@ràŠªÇ¹÷°wvü‰qó¯Å!íæQyÿM%fFbßÁØBïx¿­ndZßÍ÷ºSY8²ÊS‹¨+/ÇħିF$nu[Ãkÿ‰Î Ÿ|}êµI27$^™ry³Í$"oÔ¾tÌbËÄcûÉHÖc:Ï#ðÅW]&‹ø+eõUºʪgKL»,ºÙDw"8çSy?™Ã•N„ñEôHrrn’' lÖ_W?9?;¹âÈyõ ;öósW¦|yT«¦N° ­}y‡XLL÷Œ½7{¿X’ßîÔÊï6AR‰ôèBÅ1¿6Æc· ÷ÃéÌR´Í¬•¨££ Ó=•—#‡F™*z­.»/ƒÄ«Á8u“<|¸‹w­ížL¯= ‹×_Eá™J—“öd´‹ïËp¿,é{¦¼1Œ¾448|œôàøžh9Bî W§g`ØqAÇë­ð”àSÁæYÂ×8Çó{µJü…í’Ç n…íúr[<¹]$†w ý°æä,ä:ÖaZ+~D Ëd\ʹ̸\³cŸa±BƒfúÞqÐ:oaJc‘È8œwJV•¿¾]E;÷î÷ÔËJn{Èe7Ý àØËÖQ{¬}6„ Æ#ùeÌKx&ã¤a)¬K¼Çnu×&ª.­x‡|ÔBµàì2J¾JðÚ­ÚÀ\çYŽ~›wÔæ¢Ýøª’î±_˜]‰¦œ'Úx<Ýk¬…‘Ø Ís>@;O{•.v¬ùFótu86OàøZ˜QkzüdW4#U²AÝÍ=aHU…n£=¦=õïvóÞ?Ýrÿöv÷cúÞìÆuõi¼ó'ƒéæÑLòh& õ}Zf’G ÉŽ}?Lš´P½M›†Ý{B×:0¢çR)æ –@˜ÎáY­g]£ù Q.vÇènŠï§þ7^²[7ÐÌÑ⯬„ŸÆM'W ©’ÿ^ùä2 üø(?>Ò·Kÿ3ñr¢Äwvµ×=æÃKQ÷é0­„ìYH-eJÎ6kÞà_L¶>‹f+&eßm¤Ù©é´¦ªÑŠÓgE}‚Shjq 4õÖJ¬T4z騊+‚ƒŠúd> oC¦¾ÙÂ5•LöRø¢1yÌÿ-B½¶S¾› O¡mÿ*WÌ×¼À&ñŸ(Ù>0=O št³ã°` T´Ý;oÕz}@Žwq>Â;U´Ä¤YÅbŒ'‡ûYäp^It̽¼÷!©Wì’ºÿP$u³?ì<ãNš$”å¤Ô¤÷Ù]{ñEüGÿQÄ¿ß×ùM ™ßv*:æEõŸGeÀCW”•Y•ÓÞjƒGµÁݨ ¦>*îLÙ°ø¨l¸eC%“²Á·(Ô¶ú^úq%»bÇ£;Elà¡4Öã-†öXX|}îwQÉ ‚bêPÄ€P/]ì÷½þo½ÇèÔ¾?^3UœŒ›F]F«­_ð®å»®nï¾Ùåwd¡Ôb§ÄQçd|bx—Â`7¶Þ‚¤T--/ãè˜D8‡ý©Ó”¢lèüìЗjvÊîH——¿&uÁLÝ®‹DbNæ|<1'äæ&mBÖ§6!ˆ$ÞîB×Ë[•73™1%è{uš˜ò€'%;ºðY™2ºm«Äòh^2# pÓ©âÊC‘ì˜Â¦dzˆRÞÿcïAÍÓøâ<„Ú”ª²¸Fx9¶PÝ’úÖlâb@ãÅã>4½ —‡ÚßÛqÞ³¦þOuuoçeJ‰÷'/#Ïvv¢Ïö+°žÀ¦ÏUÙÜÚÞÝÒË®J…ÒêËÈ£/uö¸Y]Å?â`qêjÁÄŸî¿KL1 –qF›ÇGˆN[G8ìdD0¤¤ocд·ÒÇâ+ëkïU8ŽEZšíM¼` gt7%»n ïëPs/q¢™ûqgM“ËÆ˜¤,ýˆoï ™{Ÿߦ‚O?î¬Ã¾Äé¨ÐH¹[~ý3émºþ•~Ë^íZjm„ºà|ðÙõç ¬’.½æÅª!î­Ž-WÕZ]op½æôÄ<ܤ¢ë<Ýñç½Oš•e£WKɇYT#J¿Gùgë}QBÝ) sŒ¬×šY¥Þ¨% g'œÙ%«§[Ûˆƒ¢ìæÁÁªÈÖú]Òç%dçæú®ÅO±†îÓê^ùÝ¡fQåýðØàCæÑ?ªÜ:ô¾_ÝŸ)‹„@ñ"íô"LÊcǪeµ'ÃðÞl½4{Î'¥ô‰x ÔôbËçÀ@GÜæ¨?M½?‡‰ý1[ŸzãÇêƒVúëp¼õûK Œ®%¼î}F_ŽØþDPGü¼+nîžäøBÂþ§âÕÀ®3GRoížüNä$‡@]q 4Ä%°j»£MÀX6£ð°KÖ–é#èûõ–× íµ˜¤òÞþé»ñ7c‹%þÊ™À •ö§†0‡þ íj‚9h¡ÂÿŠnRwÞŸ°k^é*/*·¼P\E³.%T¨¡l+—- ßëìBY 4²t‡Ç»¿‹ï¤}½tZ 0ê^{ä Ë#õn÷œié~ÛǵX]X\Z°.cV¢cÒ¬~r«ÿ. cQ­SZÙ§?úæ08Xíùû˜çˆã mx¥#jÁ²­hó¯X´Éb{ؼâ7–˜hÔÄ< ]“z̽ë¦9¬Ooí퟼Lˆ1†öKF·d1ê“NOvX•ÃÝý“,1Ç YŸÖBe²&ÞÙºêÈI‚/.¨”$_’öé;ù^tæ+äØBækë8˜ºæk¬þ-’ó¶É2çÖû‘XôPI@©UÞ{}ÜÒŸní‡O~Ö#ÒñlìíÁŸãÝ7ˆºŽöfëàÝ»ÊÑpÌÕòIgµ‚oŽÊï+ÕòÖVeÿ„Žˆ5p®^yTÉâäâ·ÆófÓµÁ¡²~¡P˜:Öoînïní…\{Q>>Öøl\ã ¦ÝàsÒy 0CSëõÚØ9߯ÜÑ@°ÿÇIÜÍ37h¼À[ݹɘº°7ÁÞÖÁûjå÷­½*º:žè§`äÈaj»²yú&dŸ–Eþp4vÔÊÑÑÁQÈRåh¿¼·×ìÁ¡Õ;GùZ.š’ŸÌ9¬i àÑxv!vþÿŽ0çpŒØ¹™8<-±»òû œ ÷+c÷ý°¿©b7ÏÎŽ˜ÁQ·åêþ?Ê¿†w8ùÜ(Ærÿto/Ô/ëìÚ›”»²î‡ø%ÑötÀ,O÷~oè3†™\(¹b‡Ê0ôµ!W…®Ïøsæ× ‡^ý3pç ðËŒ/Ç‚,Ò‚ELs7†ÊOt¼p‰[Å9È"dߊ)iEp(ë¸Ydñ“¹Ð{ªò{y‹LL_é[]׎עEo•ǧïv÷Õ‹ìWÇ+·sôÀUFLwCw‰u^ªoåß§2"#\AõHsM[‹–æeoÙ|™Wé§Ý¸r1îЋ7ªPeÜ6ï£Õâ‡0ÚþB-W¨¸ý…6Á¡òÚ[¤‹èš1‘8—¸—˜øA–·èr{–¥Å¼Aã0‘æÎëê$V³É÷{7%GÀ£¦¨!Þ‚²Æ§$œ&¿óº;¹Âî6Ôrårø´Gòé§ÑVË[uâë@æ‹Ò©QÌáÄ1&è_Úê¶Ì3´S¤°÷Ô‡ƒŽÝ-ÑèÑêËb0•tn¤\kX2Š^€S°7’1 xÚî‚SxÀ!S<F¶Ûž¥ìlÔo£ *yr1B.­ëô bÞÈ÷.µÇ~?¼úSv1…ÈäKæ*òûs2ľV´ wwøWu@YV-dÜaž… ÿdLÇkå’áF¹š¯)LŠÔ^F ÄNÀFèP¬¦5ñuØÈaCEÅßsõ™h8NÀ·Û:²fÙ¶¥Œê”Ä$<¤¤ª™‚3  ”Xin{RãËbú1Æš¬ÅâMYgAŸƒ¨zÓfš~Ìõ–:­òIåÍÁÑä'†ñ[’nßÓ">.‚±Ý¾Ë"?.·~Ç%øýökÀuˆ!Únu0øK[ñž쇙” +²±¶v›ò„ee"e«ÚõÎ)dE¾›¼äyopý—À1Áæh‡ŸÍ‘¥•-Ð ?Œ·gKò’NÕn>]Ëù¶ó±¬çãÙÏÿfç•Õ]ÀÖÇ8·ü‰só2Ža¢h‹?7Ñ€•÷LóÀŸ±úc>ü6Æ®³ûLC\ÌÿÅ(jVÁQ#½ SáL’%y]Œãh‘uò²!w¿P/&æxS5k?&}O•œd²±YÒá§ø£(ÎЄf½íÁÞ}»sŠ­´ÝñfBB^Ë_–,ýÉÚpL¿Ãý™„ª›Î03bZ¾?4qSòÿá°Ò}€²ÎM6<{ý1Áp„únÚ°cÔ£úcjê±¼ÉbýÉÂÊû×m„ÝÌzC‹“Yš›™U(Éàj–ÑÙ,ÅÝ,îJPæÀë$»€q8S‹½Òb‘ Ós ‹Í—ö^U¹åìë$»p|'´ÐÞ°º¤™®hѾ'LDâÄô=ÆA ¿õº˜¾ M´„6<&VKÿ”ýk¡«`X””jµ¼¯§$ýA± {±{\ݯ|ØÛݯðØý¬iü°×}À‘–×&ú ŠVÒ̆~‘žEÍÜ”2£³¡?#|È’+þÞ»$S6û¾ºõj<®„þÍ–áe<‚׿lûâýãjh?ãda?ÓÛ+¡KÈTÃ~îx_h97ñç/»ÒZ†þb–¡YnýA,Bã›t2X%bppZWÐe´i? eZac"ÿ–œ§æó+]ð±îaàñÙúήßP£îe•³f`AмàlX ôP„$=VPïACÞ¹2¯|ôNœF¯ûËÝÄŠwÉy5¬ÞþȾ!}Á8‡a“¯Œ0É7YÖFÆÅѾDWG{·pì±dÜ{жävØ3•lŸ{,©BÇÆžâ#öÈŸ©¦)}ð¸ÍqšŒ<gôˆb]iéëäÏ=åW2\(»Þu~Õ¾ ìÉY3È Ö¼òZzDtùó½Ã>P\|Ì*›-«ìجÍâãÞ“?)£­u~§ì¶ÙhÂåºÚ1fM›]“—ײ§7õó ÓòFÙ½[äéM/Æ÷>Ð#69ëoòFIKñkÙ$Ë›Dþ<ŒŒÃö#ço‘}Ø>ô‡‘‰ø6œÀ²O®X“ͯ®<’ ùóWK üÀƘìËã¢péQäR?ÓÎüüÐQÈ–6úþ4ÊŠ6õó㦬~ 8ÎwMå3^? Œ×&¡Ñ7™…ÑznÌíø”b2:ñ0œ¿WžíH–Оþ^y¶ñRæÔF|ÂÈjã:f „6¯óæ8›)ûöT°võoŒµr€ðÀ‰O”É!kJ¿pFŒè õÌŽù#ŽŒV Óxìï± 1fC‰%ï3:›¸c,;¢dþÄ-U4KÄÙ'2柢TRö‰(#”’â–9(Â,Rlø¸%Ý„ñ.œ!;˜™V2YÆ ÐO ÑŸzè8KL|À~zpÐ~RØþ8Ù Bõ'É=^doLÍ’”„u¶€~ü™Ì¾—±ÏI‘²ãt~Š·öd¬ Ôqg=ä;VçÇOØ;½YŸbÇïÖC!¢ø#uå¥å•‰RÁfÛªI=‹ïÐØ­Pð¥[ÑÈ¡Ûw+.ÈsœY‹’¼}÷Rº–>u±…SšºH@Û8}7…yKêWú¬ÅEªMÞ±4eHŒßF&…Hf•HªR$.öß*G¦ ‘È5è—3 `“Ë}‹‹b_±oÌfP@qf-œí£è÷(úýÍD¿¬ù٢ȗ59̸"àßOàK#n—2k¬¤Y“™¼îLžSl¹×‰šÎÜJêKƙۥs+¡Óôqf:ó’­W÷:QSÀ™±VdÆ@ï…%o?Ñ{ö0EîŒs÷¤î¬øÝïŒÓ÷=dï¬s÷(~›Ÿ¥‡B|tÃ3ƒ<9¤‡'ˆñ®d‚IÓ"Ö(@;o«Ûnuym׃¾ï7òN£‡/E–‚FyWz]Œ¤bùWÈæíäZ þ‚óÙ÷û“jód3˜Í&pœªrîµºÌ ®eŽ©{˜‹Æß€äBÁ³ËÈ”2"M¸=£+Ø¡T›À1%‚ò©Ðlþâ¨ÚcÖynÆ'~fçÈïøLâ%Íß%“ßÈfíNÍC>_b¸˜ Èâð£heZŽÌ0*@"¹¦²§™Á7$þ:ÅûóËpfs›ö^eßôÛÈco' H¹¿$/!Â3e9“M×q\ñŠ£(=LÈ×2!‚üèh5…Š\›;X Kþ“¿ýj$§$¹ËÕ°äù»¯FbŠ»]‹h~Ž cbë¿Â*Þ6e†õ»ó”w‰Uö|“rHÖ á¿âÜY Š»çs³IdË&ñ7=Øî%Áƒ¢`ç=@¾ÊþöÞÁÁá‹LÂÜÄIé5jÉœvЇ¸=çD{7F÷Ì‡ßÆßº²Ý—‰û91ÅÃ-EÛ¸¼Dÿ;e]¸?éÙž@a4L˪ð£¢à=æ4x"³oNª)¹ÿš7SJf2ˆÍe— >ŸÔ'lX„˜1æHІ”Qð&Hj…·Í2ÝgNÚFãme;¬Iþ¦lÌ÷?.iNE™xüˆ‰áÿ;cH–°ú»·­1ñZœ;ÐâÜo˜ú]àÌCŸÑJ2Ìi$î÷=~ùúorC'XGg0êr}Ë~ˆêZ6&ÞÈ~Ï©yõÏÃüBË«^—›‰{¶…ñæÂå:oØ5;­ó‹!SyDz§Õh´}ì¢'‰hwÛ»àœÂÞÅKi4H¨Aé£oö¨Ñóƒî/C ì¼%{NÓ˜Ú Øö .ßš{¦Ñª¹,y/ÌüÝ㻇SËóóa µìl–·~Ãmš‹†ÈŽ•Jà|àõ/üÌr{Àÿ)2Ðiû2NÓc>åªÂ¿l4ÿC£6H—¦ .ô^xìJ"“d4ü!ºXK¿ w»{yÑj‡¨Šîß¡´IåÐGDÂbeÅNÅf;½/ "›+­S 2.n ê{ív˶¾h"\|£P«9ðFHR)¡jÜñ2#çµ¼38¯é«ÍަãÓ#§‰~(3Ö]e'ŽluÊCîyÝFJ.0AÁ±äSx1å4ÌM}ázè{˜ é_˜îÁ |鵿ÐÕNApjiðè:ªÿ¥ÕÎð²§¥¨Qß~wèâ">4M,ާï:­!ºìÔüá¥ïñì„ì1„ÿ Q~->f-È$œ’Å’ ZpmÈa‡o7¡ù±{a:%µí”pÆ!tîQμ‡Ö§«iŸ­(-g¬sʬLVº;ká¾æ”~³6DW2÷#TFÄ\qä¼z… àrÄxuoRý [¹¶¹­S=ûÌ -1¡u“æW‰ äÒC⚆Üü}…*lÞ’ÅRóâÎæœâw=‹&±xÈqhÖ «òÖÑÁñ±"§Ñ-É•‰ë·ÇVLXãÜX˜¨w ž‚|¸XBÅd²gß$võuÖbÓ§m–̹acÝn½ IYgSŽSAeC òSë´ÛnÁáŽÂÕÉÎü* _ß÷†ám™âóVš÷óÞ܈~4Ýú]¸ÉÉ,RJ¶­øNyï8®|”“U-iaù Û¹Û[Òbãbã#CqkrÜzÿqëýãV$LõoÎŒ•¢kÚVZ[Øðß|=d®¨,Òw°ñÁÒó…++Û,Ì㢄»™e·èQñwµ[,áçóe'ß]l•Ç1º9n ¿£cÍ_Ò9˜t ïÞcÌ »©8Ç$X;mÙ ÷÷ñMjL[Da£¶bŒ—hŠtc5i–NßyVËGkÛßÏÚ¦òþpV¶Idi4¾ïþÕ]\lìÊ=*²gÞœŠâv戉ŒÙ“Ø9Y-Ñz®ìÆZw§goøAQŸŸÖ ý2'3³ù2„ê»…Böõ•U2D\MÕŒôC.¸1ËÅïºàɸ—¾àÅl n·üü­=y¦ï5U©¥ñ½”mÑÿæ nÌòâw]ðÛîòÅì»|z6Ÿï/…Š £|áÃJOö8SÞX¥ÛDòÓ_iŽŸ„'9¤ÆŒ™d[>×éNò˾ÿl‰Ñ i‘§;Ù¹‰­2<ßZOÓ†òýçzL¤ŽOV=eœþkÍò¸Ÿw{:Óü·³>¥\p¥Pd}lƒÎâÒÝ;c´‰^—ÕS‰óÅOº1›]†ýqj0ÕæÊýüÍ+¨15BݱÏFäü«uX>‚}¬>{Wò3\~“éfd¶ôõiü¤“!â PøM€—Ìç~ÆQk_ó‘úöõ‚³×ë}¶Eü°ÖÐïh¡C #obªZ]ÀÄŽGJÎf¯Ýî]Â4-Pl¬òQeó öu×éõÑÊcH‰•=ÕIlÌsº#LNѽQßé‘”ÙL1 ¢1ê·[˜ô«át½Ž(¶àì,ûÛу]Ù›g-µ0@¢Ü—¾ÓÁ ÞÆS¶ºV@±Œ1ÀNQîF‚F×a¨%ÈSêFcÜl (‹½Ï9§4»ûî]©z¼û¯Ê'ç¥Ê%"ˆ!%âëà7å6)I:Wœ“%ñÒB¤ƒvoÈm@¸¤UŠä„öL®3«ŠøÝáàš&DÀcåÐìê*|‹Œk ½¤„µ¼6 ZÏQïççDZ3ý‹%™¢¾aÇóèÚñêöoÞÑT:D…yùW°WèSuABÜûüCoð‘—ø„ŸÍÈéþqå$rtÐÍ­'M@˜â’ ”à°R>Y31'‚7©X“Ž3QŒ±áKxµM£¹¤1 jYN4þC@ÊÜ!ñ¶hæ‘´]¡hûòCA›i-¹áJA߉8)÷’ ßëcþ€ŽÏÐz?vMÔ-¸è †óp¨u:|€>]2O$ 6so€÷`4[~»¡åõPËÅ–‚é¿È¬†Sá†6œX»­#dÃ^Fž¾ÛÝ·¿8Ü;=¶·¿øçiåèkyã°?bWçæ`e׎Õ]Ç%©Â'ô”Ro€Þò7Þ•þFrpô>ê/MîTuí¨¼ÿ¦bí±ñ†÷'„‡¡>™ouLtãûȧAŸÙi˜ÊüÂx3*Fu³WNÁYÇ>`àðZñ¹!Z„QvÉ>1R5ùa¬/g0SØb/„ÌN]AÜòŠ^äaÈ;;˜Q%ïüÜö»çà ×$ŒœÇ-$±ÔXépJøè!w©`·¯¢@‚ø•~Q”‘Õ%`H¢°!Iû½_X6@33÷®º¼ç-#H’™l$‡]LŠ“±g@hXœÿøƒ^ž2ŸÌè=an7FÃy™ƒ¥5dS\áEï’.êxÝk³ œ©c¹XF]lTch[<7 §‡ÀV±\RþÇk=–†Et„’"‰Ô.ôZvQjÜ٠ЩWEO4dÖ×òÆÀ“Ž÷úLbçÍFÍ¿ð¾PÀ®G½™çS£ó¨0:ʯÄG„8`¢àÁàZ¤+Žš’7 üö ’xŽŠ6ßî@³J(3Fê=?D¿¨Oš¸jñäî‚8ô†æ‚ò U$ž}5hN‹¼# RƒÐ‡½ càü¿aM´+“wíÎ ×IU˜„¼¼À=<%yö5ÅRIS$ TÖ(ç‘Ìí8!™ BtÊN¥¾F¨Øm(T,}J£NŠšóf0:âàŒ¡ŠóÞɈXkžàØØ °Cú³ìúÀæàn a?Çvã¶Â³1y Ý6¤=FÒ™×øâuëâÆ±~Ä=ÛRŒ¶ŽìðâGô1jYâñÂæM[°K™T/bBƹ„|J¸ùž¡q˜¹/þ><í"<<»²]…œSƒg¾ïžãÕvÁp ðñ²7øL§í¥7h ! RðWjµjðó6 Ì£›øZ€ºLãqR‡y#ï§£ØX,%€™®¢\! n®cã9ƧØã~/ !FãùQ=4抟Ðû2|¾Hv0›2<Û®ºWœFtðÐD×fk¨)y…K¢oPäÒë‘”ú à«Dʽ®–­×JçdN6ÍÔÚ~Âßâþ¬ÆŸ°?ìk-ë ª¿ªŸÓ€âU|+Ÿb‹†_i, _*%G97„Ç,TyœÍÎv*mL\ì4¹Ã”ØÎÌ¢Õê  |V÷ú0x¥äl©ï­öuh·«¼L0èxmMZ\pÞ2Þ8¬ Ô‡°53Àt³ÄÅxÀöPÊ5(6ïÿï¨"?°5œÊxwyÑ |IKr¨GðVWd£ \§Ñj6ñ`”]@öW°%®´œäÅAr0ö5Ô5ÏK,nú—”¾¯Á?q_¡5­®ZIÛÖçŠ1icd*nZrNþáÌKÔ‹Ñ^¡ §‡‰ý0·¨æ‘s‡ºàùóRѬášÀ?1C‚Γ(óÓu’JYÑ;— Á¨^÷÷|Zœép¶VËärÉ¿¥•bj²Ýr~-Æ+™TYz–X7 ¾"æÎkëÓeð ‚É``ôVp ¦hR{lÒQ„?¹/½VÃÂq¤d#dø“’ 0™=âÅn}°2{ñá¥ÚÇXâVñMÏ üLË2&¬cOýpC.»ºU6'ÞŒÉAáš œ]ë?€oh ô¹fð¦Ú?É1¢æ¢-´\ÇÁõÐA¾å\$½l)OÞVöó@×ýúg¼R˜çËeû;7‹o©0*a¸ª¸>àè`_tds<{! yÆÏhîààs”¯ú^ÅTíhÉ‚XRYÛgÊ!£Ì^¦*c´—!ÄËêÉ;=<ßÚ°ï»”P,v¦ù-2-a€E¡+¬9btâæÙ±ôÅçì:gÁ1Ͷ€]ü…hp2’bž©†½‡|ú‰¡SX8¾yòüî6"¸ŒÛÓNnÃ|•.¼~ßï²{án# ?i¶óÔ‰ðä¢Ù“1ˆ½ØÄåá¶­˜¹+šÆm1ŠB êÄ·È #™®”í0f3V§q`Pµ€V^ûÒ»ìÀX«œÁ§;ësÁ_Rsp±3¤GÒÜh@ç.ç)$m261Ù£«¤Cu\[HÖ®öÐ(ο‰HUh„ãœ\4?2'Á“…cG_¨X1J]8yâûËè‡H¢ú•û—¢yx$Š |i5¤RÛÃÄÀ-Ö2šFÌÇüJȯ¾WŽwßcøÇ!ì'Ž á—ûûª€e ¦Ʊþ0¹á1¿9:8= vË:Ü­;¯1V~ G\“$‰Î-á9áP€Kc ÖRæ$Ü š>FcëÅqŸÛe™NŒÏ³±ÄYc©|,d+2›²â†…Mé„l­odCm>*hOØ¢™'•ô°jÌŸ6›Bô5”@ã)‡? ƒÐB ߉Ox ­F,rëë&©´:j…æ9B5„Û&»µïlFAóZåx¿^¤Òé¯ÙB­9ÁçVŸåŽi˜Š]…w4:ÎFö“¤¯Ŭ,ªlØvkjÎŽ}â^I˜ñjxç ü ™‚ ”™ÂúCcIHø´¬‡æìgç—LÁXÔqÃn¨±JUJœ£C éÝ£“G$ÝÊYéŠ&fÇ0x%Ë,§`‹]h šèîÙ+s•iëUŒA€µezHzÍÞ@gû#D‘»i›&Å ¸a’ȇ9Ö>Æi¼45”ê€|¨wB>TT#É\Ãñ;ç QreºÑH°w$£Ö½.žDÌ|Š&¢ ÌÔ¸à|¸Ù’»ÿáå`@!˜“2Ê}š`¯kŒ|Ý*©Ùº,S¤„8Biø@Ù²ÓúRvÝ©HÖOØ?—†Â„À‘I~ÁÉí6|Xk„Ã5C42ßqқȞІ¹@ ÛA#ýá•ßú‚ël“u®Ñcµ1¹W‚Ç´LÞëQþâ·Ù-\¢‚ ô%u Ý‚…Be΀¹´ .mžîaJð:ÈÜÃ{yÁnb^ö0G\wtÞ ¡xþÚ`® åóL?u{K †ó",SÞæÚ·çÌîE@µ»C®ËF5N±¯5nò¥Üèd8„ GÛ|gЀ]saDɃß8¬¥G7»6Xt;´Íãx}@vÒ&}F•(T'“0Ö1 ¸Ú=Bóù¼ë3‰±ê`âàh¹ ϲ:¿ ëS”„‰çmrƒ8CS´¹e?KÖyŽo[ÚõlBAlNÖ–ðÁ£× ØNSR”?v šÖÊ“cωã<÷ò£»ë†dk¥-H0%ÑsAžàE…ùðÆÚ’;ËZbÄ'%*¤á vgÓUö:­ºÐ"ML9Èì§#›¨Êå7óz¦¾Žæå…nžs¿÷Ðú ÄŽKHÑÙ=ØqÇjvvOªG§ûQÑ8Mf…ißÁë‚©˜œÜ—IDë$–R¼Äò×eoAÑÆåŽÓìªjBÇõ%³qŸw¶1Ù9‚ûi4Pªæv5á!«þ¹EF äø D0ªùWèAw*!¹ÇpÃz³…?â,g œÉ„Íc-rd\^ôÚÚa'à '­2èP0óšŠ]ã…C97ßY ¡‡À&òÃéY–òBMåÁÂúF;oƒÚ:=:æ4g…m<娕ÀÄH…RNV ×t7œ‚ó’¼PÞ”§\Ã}V°Âm@Í1~žc™4f{ÁMÂXÆ € M¹\ƒŒ$¸{.Kp_4î}ëps|Û 4Oÿ†rZbÓUùÎ’Ë•ÎÅN8¼a{÷OÑ5dªäFjË—`ñ¥Ôê¥häÄ'¹Ú‡|,¶õÖC75êeãˆÝ§Â£Kw¾ Ÿ…çÊóDH’Û·Íçztî¹rÜ ­ë‚dÆhÎð–(@Z¹ )ŽÅ©™Ý´1lF &˜)ÎÃ`°Ȃ«?#–Lɪ\@1ØcdÐað£ :©ŒÂðÞiÉ€sHÜmɈ²Ì3væHsA­™Ãü‘Л‡žîW^m¼{·{Q€ €çG¹÷º‡LºB5µÊÄaO¸ÚHG-Ì©ŠÔW_#%­–pB³'¤âÂù9Eä› ŒÀDîÃÎNé×ʤ J ÐÔCÔ˜3¨ËG•#"/TF5!ܓӊðJ—¦ê“×?Ï2€:.& ¶†šc5.ê¸Ken&L<¸Ú>,s© z Ç"æ[$4¦€ “ëØ_ žòNŽà†Æ ™Ä·¯,oË¿›tQJ á‹®ŒÒvÖŸÚÞu“‚Ÿ ÁFP채‘=™¢LB±qéTjßî÷†r²È@Œ dKž›-omUAú`V®>pÌýºáh¾v”ì‚Õ åÒ'ݢΦ`ɶåÎ&B…ɱN7¼Ð,7YÊTÛßµ¢ˆY+)6Té„è†øÙçš"®ñ¯êÀr°µ—•ÔD_¥|ä3×¼žò²D[ŸIW»ªµ5$%-®µG÷7hÀ¢|½@E˜jØèfðiŽÚ j^Ь€Ë1óÀ4;o€‘ÃCR¹,8e÷Ê9Ôe‚˜9ô n#¦LeHKåããÊÑÉKË3$;¶çÕýr\qù*]¡ƒ¥îO³¯Àáëd!‰À¬Õû×2¦7âG/ÍÖ±êÕãX·%3Þk*þd}È C²@˜­#Ï:È¥,å)ïjO[^O¦U#ÜŠ©€ïTÑ3œ¦'ØCIvŸ #úp³|&—µûÔ- “¥î…( % ê«(+#6†Ÿ¹é¬~”†Þ†r`Äxr Þ04¼÷GT’6ž±ÒBhT:¥xÉÖ£,fOîóêTÀS¢éµÚlb-è·J¦Ç±Ù‰ZÙ-uùÛ—Ìa›-o“Bzò™Mün=ß·¤êAÚ6ŒÝˆdôP˜PÝ)ïîU¶#”ÃÖ&ÎD¦&°Îì}8*}VU ûP\zi{A”zs[w¸1«l©YH?Ìí…ÏqmDö°®¨6a_Ij|›#¯†Âp%aòÞÙC¹4¤øŠ“››eóÏ£Ü,Ξ›‡4[.i¦eèIW©…²Aª¹ ™È™5B£X0²à²!XãÈê~ÇÐ^>1wDz)´0Õx¸y¯/ÃÜuùö²ë´a§<ÒÀY‹ê®»¬k£*•_ᢥHQ=J9É—æÞ¾&\áÌ+ #ŸSÇC…#‰ìøêoÉìS­PÔËÞæ™$.$r´Ó\d’ºµh˜eMWål·JEÇ•ÓØƒ.ùôÈ-(õ{²(|üaBÊ "–†'2&]‰Q•jcB”Ÿ‹ä}2úĬſWã å²CÃþ¥¦½IÎzÃ~ˆ Wvv0¿ÌÎÁéþ¶ÞRÔ;1‹>«*Ûû4Uñ~g °–”01‘—“œŒ0c.Âè:iùµBjæ÷²€ž•ÐÌIhbÅi ïs=3%-䫟E– 7ôRw\EÇÛßáátœði»ô^·_Ú†Rƒ#U¤­3vÁŠYñ¸ÛˆØ&TLU_Bò“å$‰¹Õ-|2°bò¡º=Î^[;„„§ºþBžz ¬øº&\›T¦…ÍÍEpŸµö-zMá:Ÿ €)£—®lTëÎÿ±½WðY&UfA²ÜEÀN¿€€ÂÍDöŒöÀžþ‚Ö3¯>l_°KŠËð)÷šö·ÃÞ¾’“çˆ a»Dz;á˜å5LÕÇ—O8éƒgˆÊ&ã84ßGËIÔ±?$·¹–,`ºJ¢š+Á«œä™oM«[Pö¬É»áÕ/ZþrU€‰b6B=}XSk][<oÐ÷¯ZÁ æ¥cs¥æÝ€¶¥Ï¥åˆs‘÷µÞ |\áÀ>%>!5ï-çA.ÆÜ8Øþ|jþA2Ë`˜¶³5;0=LõYÈÏü»°âGí“®-ÌÇœö#Âáíï *Í=»ìBOí³É£<„O«wíx£ao^WæÂÚ`žð\É“§Ðør¤ju‘±ÃþðÒ÷»¡™Ó»f÷Usº€!{<#2e’ç0;^w„!W¦ka(@Íh€ºFMÃü6º:eM¤­J /SªW…u‚ÆðnŠ·5$ì$Œ "øˆØ+d*Ü^ƒÉ\Ñ÷eØÇ5æ9(D™f‹&ïWÜ ÊÅÂNþãÒéžøh“§­9WdÇEö$]22$ª;-ÉC8´bÒ1/hp"?2׳rA¡H'©éË%UgRcÂã5vPON_GØÁ+†1ÕÓp,l¥=wÿö¾>tT çrý~™é?þò’Eá´/0I¾„ÄT™‹%ô}!]ª\¬øU ëe-ËÝUµyѼùqw4X\­û¾y+ù¥škå"†B½Q­MA^M1ˆ>QªE×RZj,>[†÷ÃbçXêè)Î?MÔýb1Ñõð=#hŸä¦jähgÛxâbèi}ðyAµÞö0uÅK ®ê -ñ²!™@gPœ£Ï­´:  Äé«ó0 qü’—jÈn)ýBè'KŽ= 'rY ‚¼Ñ‰0Êþ(’X·ÈÓ•<Á`Q˜bX'ðy¢yѺ¦F™Üç|Y·RÙ|KÌeó/Aó2øÒÐÈ<’¢u¦ÞõÖš×±u¯ZMvãÞÉÛ£ƒÓ7oYòZŠÂØ–ö“q¤L>ð˜f$¯g’æ"«†\Å‚®t«ÇÝÏ=çY¶3¹¥%òó C¸Å Y£nXæp¬wtF=Y³{±jâýYEV3›Kkì$û[ÓÑ(¼‘Eú<#øÂ‰f˜Žó*7nýÄùP¦¸]˜'úÊè õ^ɰ0'-Á4g¨Þ!œŠÖóYÈóøQšžØå®Qö—¦›S’£S숇c¹ë5.Ó´:Rµ»@FCÓ-)tM’5e¼q²¡¦V»çAÓb©5áÒ¢8Ðä=$$—VŸcü(0ÂdUî„æÈd:ê+FÃr”ÜÖsÌd<ô›S-ªã* y÷)_ÂÇûÿŸ½wïkãÈò‡ëU´™G‚Nç#ƒ°µÁÀ‚ˆ“M¼ÚFj°!iÕ’1“x_ûs®uëjIØNfv󙉡»ºîuê\¿G&uïÍh”›éj+ 1E‰¼a^~[î@™l[ìvmSR46ýÜè)ü&KAж¨0©ÍÕµ:TGÿňì} Û,ƒàÝš¥]= yEBúKæŽR÷å^µ0o¨“óÉͪÄb&®ˆ Nÿ¤) iä M·s¬¿±ÄÂ_›­;nRÞ?ü[~d÷šÓeÁ’s“¨6úóG€ëNüd5J}/Go³h¤5¹r^°„Ók¥ÄCøÆ¹€ ñnÔy"GmUÝãþ|Cš\‰êº0, Hç¯Ù$…³ßârž¦£QÒ6ŠKì¦hfxËQ‹u²æ(nÕhB×EPþ ­Í”7„ áØ¤»¨sb©Û©{{Ù¸ûï›&î¾\õô—þ%®³ó““ãÓ6H{­½ãý¦9B³éexl0ížä:†1õ0½1GO’ÿ¢Ë͉û߯”a"Uؤë/(ã\ÿŠc5§ÙŽòm6¹Dv*O‡@Œþ.I¬ø+¯²<²kk«Olô–M‰Î˜Dó Mµ…LÜ(ažn®5êŒÿ¥ÄBØ¿t|…q¡aÇ£ÉÔ@iÃÃǘýd[tŠ„‰K䑽 u¸8´*ôÓšt¦533’Ù£è2³h´&%ˆ?‰P^*g0K'ƒ~Æ Ïߘ“Žb6XœE‰¥î‰<ó]’Jò×þ9æÆ…„(µ¦¶¡D$3Å(Ž5ÌIÉ7]dû¡@/Õ…†­' fþç+cF)˜[)U'YIFo)x‡Å©sP㽑û$iÝÁØp !Õ'†Œ ?uròd•Iª‹}‘ôò“ÏIM^âúM»u.âÉ÷é—wÙô·‡¾3ž·u³M¼ÊÊèóÍe€ (A°XN~&&Q”N2WÜL ’Ï8LéçÞoë_¿g3¯ÓW­ñöRÏ$& s‚'~]'•Ü$˜Ô“sLûýA*&¹»_D&ÁÍÆ Ö<Œ"A,QáW\u¸øŠˆ¥š ]ñÇÝ)‘+%rq˜;ƒŽµn°Ø¡=1®ÿé[8œDÚv“*}ý4yôõ×ÀËÿ‚PRÕð° _ÖèïmÇb’^>µ5.c¥‰ö¾‘©7O wmÂMv„J‡Ö•ÚÉ9!nÒ‚€`D;âÔáNžö ;Ê9ƒ\*FS ït蘨—tšŽo>ØP' 2Éøº€©æœJ{.“ß’ƒãÓWÓ}Ü»íæY›÷o=t©±ü½î[w?d|Y&ò7û£nÿÆÐ"ËÚ z¢I…ïp˜RJø²èÌUT¢«Bhaj«*róöAЂz;œ²ÐÕ“DBˆ?šQj»ã§¡r“H£0-ÄŠ·†ÿuŸO¢ÓIês ¤S§%R¥¸`ˆÛ‹˜'d}™8h?~]–}Ëm†:¬M:W=MI F/¤{Ä‚õÑ;‹/ÍÍE3Âd‘g0 )¦ÑI.2sÖkáz× úŠýeë(ò°ñCñ!Aþ›åÅt­|mÍëî­Ýäèüð°V¾ßä…æTõ`Šd¿yEÖÇ}D&Ñ{»NJýw£_îöØrG'äåudÀ iǤìÖëƒn"S+P˸ùN1OP Æ`—Ñë <à¨ùµjÒ ë°›n©û÷“àiLkõHdE4CèïŒIV¬«yK/νwöâøU‡ï9å߯˜²Ëj>…# —Åʃ䇧ŒZÞýkR>ìþõ.À[º‡Åb¶û×ÁìçáŠ5‘­=eæzAL³åt|Š‚¶fž¹ÂÉ !=AÏ?MÏ{jÕ©uQs“ÖAª›"ŒkVè6´R¥¹5áäÕ±ÑWE­Ku-ÉG!WÑÁc"+òƒx@ ×žMÍŠìR•„A«í1›^ÆÊ¢YlA¤[£!·]B9PM\lf‘äR±±öúpA dúð–@“ë¬×Gçzºà§çØñ­à‡“PrM.uÏXÑ–èP€ ‹ƒ‡ÉÑHs®vÜÑ£¡tt=Ù±XÜÏ ê¸Ej¨SVwÓ75!"°˜­ê¸Â×d÷+Aà  „†ÃÐÜñü ÓÚÙ8û.†úGzž­¼LбÔ%4à“q¿ì%†EÕB)—îþä9ˆ¾– TÞ%?:S÷ È +X-ŸÄ’nè"ëx³¹,o ?ñLç»î§^!‰;:ðcŒpû‰×Їž8†þÐË¢@¬pGt™®3¡:œ²vsÀÙ¬N* a¹Øtƒ<!Ù¹¦W{­_±s„½™bzß8“ã²6¤8wÞàáãŽl/¤¤Ïßiu˜Ps‚8p= Çÿ%ó3 0KwÜÁ%—ʸþ5xÓËP“ "XŽøÛhëÕq6y“ŽÅ߀ü „@h6†·7é­¤€dC™C“I/b‡wÍ©Íèk¬5µ°{=àê»SN h,ÏDI`Ä×Bê(0ýð% ¹‰/Îi4Éej]ꇦ×.ÕÇeöîدo¤i$/ƒ ¦¹„©¡Ütƒ²!°#ºÉ®Îè0®HêÖ4žJ ŒÝ>Í…xµUï&“ÙxJ+£ Ñ·ëI›íöÒ&š­w“xY‹“¦“%±®¨­}óKÄÀN[GíæéQãÐtùãafÿP†ÎÌëiÖ›²þy3òÕ¦»óÒ‡L#Í£‚X|Çp7’ãzćœo’8…3ç~” Ý]ŒÂ/7]úûîßê$±ªtÝËM®P°³1,f&s›cØÀ‰uU;)$ÀXnÀ}bÖ®€3I%ãȾgÎ+´6ÆL2A0‘®øÑÈ$þ@“ßð–)†ˆÊ¹“Ö+ˆ<⇅CœcÊ™"XFéNÝC´Û'¾”£™ææ¼À§žæ1éLªrnDT7¶ËÖ*.8&¢EZ%é|ŠSÁàóDìæ¦æóRKùêE»t—;ð´ˆU\‹AG»–9\*}/õ¤m,· 0‘…¿ P ê9±UITÿçÛÿ—öüîÒ1|Ã|Sêd\1"$ËŽ”…§6%7þIº²Æf/ÞK(|Zxƒßå`e_##O©£õM˜ŸNú µ/©·ÐLQUjZµ‚uä$#Ó.«j„.o'„Ãåg*®MúRS¢‚ŠÙ(sü¶åçVõ^.äK1oj?Ýzaˆ%Ì^ì»Éí¢à%$ÖLñ õ’üZä¦*p<Š\A¾­B\È–=ë®NbÑ%pÜþ¿têÝþÆEWwU$6–L8ÐA'â%¡Ê&Ǥ‚;sßùTÀ%—½w0HìÉQŒÃLw² ´P—®D1qX9úY˜®K'†-qâê\ VâÄi‹HíÍÌô\²þÍ.K±ËÓåynŽ‘ëÜ—Aóî¤7öd'H÷öTà§kF"žÌ™¸$¸‘1™ÎÖ? ¥Ù»lÒí£ã¢óaŸlÄàÝç\Åcܳ™ û–;Hq÷½íOFCB‡·]Ë_e¿B¾”â– óhñѾG^º\sj®UåÔÖ±‰¢Åt‘ýµ0«¯â"±ú‡yz—,кàé2úÕT·¡šÚ8þèX0#ZC½˜»­$u4©[Y~êÐOÑæóyPÈæãgª“N¿EM ’Ö²ø 3 ÌVM‡‹¬s„Õ¨>dWýç¢ Éîž fy‰x±L컹|:¹xIÉ8ÄFs^,%/-!ßQF^FJ¶#°qߤºüGFEUZ©ój!\3•ïYÒ´¹|æ¸ì_=Ø|½Œ££Èzê©ÆkÁ ȵ­€xÉ,™°Š´ËBÝ$¤.@†ÑhÑ%¬5›­iNŽI›–ë×lºÏå£}f3zéf8—›‡½ÔˆÝÐVwðáǨ…w+…MàÝÀ Ú(Øb†”B¸H®P¸ nÖY'h‚ƒ‘ר6MõK„‘•øžP aU½Êq,‚´ízÒ—´¯‹„Z©aùo˜†uGã[Ÿù7Ÿöµè™%ÄÇmNEã"é£ÜÍ®‰¾­hôöUÅ A†£$gÝ>Ú>׉à.伓åÐ$¡$A‘³ÓòÍhâli'Wá}ðÚtýPo­ª ›ì– &çésšqÆ4'aN=Ö ú¬ñcjE*U2×±NÃìOÞˆ^>W‘?a€“Ñx‚¶® ûY ¦¹§Û Å’ê‰z‰°Ò?RÂÝçäˆ;Kìf\Èé> äÍåá̺Vެ®Á`N4æq´‘Êî€SÎ ïzÉZd$yR‡Z1µ±áuN_~¨›Ÿ=:{†wq·´¤/œŠ?Oo°%@Õ%WN1û9WY2ÞX<Û qíý§v?;£S€ä_„’:r»V|J-?Lûôæšò  µZ§{Ûn…RúqÝ ‹>;>$$öÌ¢ý[õÙ½4*œŸx6=®¼¤L˜Ë<ÉAðyøëãì˜uú˜þ|èZ„þS;µT×ç 2åÝ!‘&&.+à å¸!Å*ç(´Wªa ¶=z‹ô‡¼‡Ù -Ÿ·ûLJ‡S4<þè.‹7+XÌfw/]‹¦Y‹…àxTǸÑ뎤Dô3vŽ¡Àñ™LÔÒa÷…5kž8#ãç¿×ŠSÐ<ÞßüIT?°xì4tdê îÎ5Œ¼79í¹(áÇO‘=ŽØMO§íšM•ð-ÜlM209ËnŸ‡ÞÌüg-61"á‡K´Ü|¹5Õ{­³ÎQóPÀ¦øø{—çœæ!HµÃè­N·ïÁÃuã5ú´¨‹òJ>;<Þû›Ò$£G‡íOšƒÖÍýÒÂÐ/,»å8G_ð­Më ^ã Íg?m¼.ƒrnŽÞVØ\*OîÎMê"‰¨å$Ü/B•à•Ï!ý3mûÜ]Zvº÷¦n?!Õpý^ŒÖ%çbñCFƒ%!&üœ”ò–ïä7ÛtYŸ¿<8lþPJò±ÈË%h¾¹­*~^Ñ"Ú8‡ pé„«Tzd“ø5ãO^3¿ÿn¿¼÷ª¢ÚÇ1&kžgiií±‰ol4P5eéý2NrÝÛ)B ‹D·Ìqr>)½ 1½#9]‚ Þ•¤*¾r²ú„ÕÕã-‹uí„°—êcY/ÌbÙ¦µ«ÕÚ?žZÂnÐ Â&àÊ ;;J"8ÏÄñëŽë5ÜÓ,Ïg 8îÝlÛð ¸|$ÆûÏëѤ—\ŒfÃ^ ·‹›”ïc·³öÒ7$àm(*GŸÑù_ÀÊ T¹âÇHO!:M.Žé"ç:ášìºgëzšl}ý5‡ äùìš}±. ~èÃ6Ø}Tü÷N”°¢ KÄõ‡/ÉíXG8cQCUŽ:#µ– ¨¬s 6U õðvuúëë` 0ÎÎ –`D€+0ÿØ«ãÓýÎ3LBÓ8ýÑošó ¿„ÁÎ+Ròº€CàZwúy§Ù`ÍÆh˜ ‰*|ÇØøÍ%ã)#—“ –Zºú¼Ù¦7—ÝzR|ëù r4 “&¿N"Ä3^•Š\UÇs¤SËÂa[Í`a…H@2¯£k\Š6 ÛL0Ï÷ö; 0L•«BÄ‚°A¯Ftm!ûí¬;î\Áyƨ‹Ÿ´–×ö›`?Tí÷» ~K*Ñðá‘Ç9ã×/‡ôQðô$–upéÅ ú¹÷âe㇜ÒáÒ^ÇöòŸ.»¯áÂ¥?¨<_·Eáè9Ðx4§ÎHOÆ1]ö(2J!‹VvcM-œ¹E<„sþ°gîù{ð1ç/Œo–Ê#ÎÑsYÎÇSé¹ÔaouŒK;åÉÿz'Òß,ÿ´Òïæ'9ˆ` a„Äzõ§3’îf‹ðΦZ  R4-c<.›¦¤,¡¿H’»z'6Ü­%{øèŸeôøïÝÖï«?œc<6€?wõ6¿þ'»u¾ÛÚ}Ôîû`Êû‘3 „Úò“ÂáÔKðÚêÞMo/oºlA@’h›ì6•Sjx%Öôex_rM‰¹Û°YŽßàå›Ôj¯RËy`µuƒnA?k“™@ òß¿Ž&|£õS]ti+ïBˆì·üL½õ€{¨f}áQb@)ýØ·;˜qÌׯÅY¯wƒ¸ ösÎ8– ‘dãw"Êã;X Ôƒi—7‘}Ì4f6òÀ‰“OÝq“i¸†}¡Áf¼`Q¨2'q˜i< ‡™;ÅûG{±mv˜ÖÛ¡ŠT«¦ÿ­b¬] ™ë´‰ˆ;˜~$ÉùæŽGVɉÇËéÑ$°Ó!! ùî¦ê|è³q.GÚ%%*qö ›ï¡Lfˆ¼Mˆ¢f÷#wLÑfàã­8×m€#…5ph€EÁ-»S4ÝWÉÒÛÍ']þeð ˆΔ3óŸ…i ’*Î1þFð°ù vÚëMи8r±ÐëV½¢ÚjÐØTZ1° 2ö3Š›Oán7Åã¹)¨o¾?É\S²Šâøþd&àoÿÄSóGi"Úx`¿È™$GÁ(ɽ×ÏÓ|Šî¸ xg“qoRÒPÊ ”}øžÃóóŒ’èA©›ÉˆCL*Eý$âÎ óîÝ»„@nûbðr<7÷Ž¿ï4Ø;융§mí¸—›B<Üìˇrt©\þ"ÒÌñ‰¶Bª.Ê1&¦‚ØqËã€11— Êšë1è7ÕŒ*b1«È½¿¢Q+‘áÜQXCª™X ǹ—"ÊÐK[çè½ëc†ïMŽJù¬¸—Rãà\Z”Ë? q¢éþ®A‡»“QòËìzœK ¾Z¡Ì(ƒ3ÎÖ/d§ß«ô *ÎAz‘ ³†‚`p×¥œhU/ÂѺd Å †*#È6ܸ8µPaöÎõ"6¨]²LÉ•H\"`sö A ìt 3s€ÏÏ«PºÆ´ ~ÛfÏËÃÎéË¿üþ†óÍ“Ò9{Õ¢:öN_ÊèØýFú Ýâ̪áî w}Ç]ßð}8ŠƒÒx1Œäv‚¼k;¶>£ßÄHµŒÿç ¡ËAz•'¿+Jæ8EKcûþ³c„K›µ6w±š‹À~1H?žÒä¯d¯>}ù×Âöá4Ô½ä@í)•ó²Â,#. z¦Ð¿[òïCù÷+ù÷kù÷‘üûüû¸¦5üŸlnÈ¿Rã¦Ô¸)5nJ›R#wRÃ¦Ô —8ÿ+5nI[Rã–Ô¸%5n}¥5lI[ÒË-©qKjÜ’J¥Æ‡[ZÃC©ó¡ôò¡ÔøPj|(5>”þ­VÀØ~ÕÚo’ æL¶¡s²¡“²¡³²ñ°f–¨Ôxij Ó •li%[:_é/:fz·6t66t:6t†7Íkݺl[°nZ.Ý–®ÝÖ¦N´®Ý–.Þ–Y½­ S]A­Ý¬!.¢E…,»›qàV,¹ßˆãg‡•÷”\æ®?•U‡ô¼d÷¤ä4»ša²Âæ;ŒÜ§HWûŸÜõ‡o/iLj{ŒïgŒÉ¡ÚF%0¥\"âê$.·ÈâûÝ_éF®`¤7y†Éå …ú¤ìãÜ7£$PñÜ¿9 Â#´ ]³·`›e7õS·8î®b¬G•JC-C¸ÒÄD8?aâenff·bŒâßø“\šùÛq¨”)©^§·܆ÜÈEˆÞLÏ&£÷¸ë@†µÜ(›#9™†ñÆÕ-OøotaB¾Ó"”…#IÝwƒÁœ\cçÐyÀxÊg!‘·p#3®‡“Èöi²‘ì>UKÛŽr !g™ {…ÝÕQî²Qá¾Í„~v½Ú¯Y?L½‹þ¬?2”Ñï×6±Ñ% Ïª{¦Ur‰¿…ß«ïeäkñŒˆ}ýD¾&‘á×>oÒÙ¶£Ž'#!®+–mþpÄèàˆ¬ìöêG´¯ï›GíÖñQeÜd[슇 Ø0„•žpx. Ñnö[óHlH¸æ‡0äºÛ®ned[Õ§]Þ+«öw¬Ê}¯»gU÷Q­ò[‡ìU…; <†úW%)‚…(H´;,à·2¶ cyÆ_ÖXš´ýžô¯ˆ§£çbW‡Œä³ããÃõ £IÖÛá? ý¡åo`Z;ô „Rëáb^M²ÿ)¾ ±px ë Âõ‹×0ÝéíÈq>®8K„¡¿o&Kôk4Mî,,±e¹2u%n!qú¼±}³U|eF}.xo†³Á “ ¼ý-Ùx×í%ï½^›%°Ø%&ŽÝ)v² aðw(#Ž÷ÎÃ9qž‡a8ÞKÇYÕ{΃éP(.'ÜŸvÚÌæMÈYý{«ÍËFçì¹®‡¹W‹wòùXMõæ&0)šco4„‚ýlØÍ*U‘)¡—䑱þò,J¸÷dzi·d'È%»ã`óRŽÔN»ßsN.Wx‹:'i£à¢dææ¡CN sy½‘¹™ï‡Sq’…ÙØq[|MyWáœg €Hö†ë Æ\Q4/{Ïñghü­°¸mf±´£eš0ÝÎÕ§_YI~íyíñŠ]‰ŽÚMº;ÞVü7 ãç‘ÿ~F²›Ü«ˆ¹ýjÓ@”SSIÁ¥™æÅ,Ø'”|Íq”ñû÷õ;–…íqÕCÎ `ÆÄÌÄŽ"¹©Ó¹Lv‚ûÌôs‡2"‚†¨ªYöÛWEo‹’ «6.áOΟ¶ö«s|‚÷æ™Ó]¦Þg}þ†î;¿[o÷ÆÜ©Xê‚…œOȵ˜|tÍ$sKÿÙ<=î€8ñ²uÔh7÷UÖbÆkC «® ãûJÊÿËöÒ䥥wy˧ò®¶ôŒPºù ¥MÍH‘/z7ÆÏ¿ìgƒžr¨¼…ó»N¯ú]áÿìNœdà o:Â’6ù9,ÝÑùËgÍÓ;¬}æw-s²óÝô{šé‡6 ¶Ì: cy‰·4¢»×,|ppsùø.‚oåܘ0™—'í9}…÷¨Óh³tŠÕ»ÆØ%ÔAžÎŠno}Ç`Žô¶žœç’óÙô›7#~ˆdHl­#îõúØ$¨ $ '¡y* M“RPvì~F’¥>hŠèpËY˜~›Ë,WJrUµ&ƒ¡&tôÆyû¸sr|vÖ<;ãìqÄÝMf‚FC¥««RR ²—ý{Ä’‹Ex*k8½û·NmúD\¦t]äÚ/òd»¶b…`Ö—Þà¼ÝÀIK‡ù%_!l§â®EfõžÔÎùÕ,…/§™F‚TÒÞ/i—üíPˆ‡Ã7šª'’e%ZÃØ˜ýg£Ñ€l³3Žz¡U²Fåm6Œi00p×û—ý.©zß°-‚Ù,K†í‹ÛJÚíö{ÙPð(°rTÆÖ­6€[éõßöIýpÁR« ²¡]´B¶9_³{p “Y "¿Ë£&­>©™/ŽÃ/~˜š9¿ï&Þ™>8¨%_b¤æüQý߃ƒ›5zuãƒãc|€ŠMÖÕèoÇÇth[>b bÑzÞ£ùtÖë+Tp?6_(zô¢‰X¼*ø’} hÇ"ÜY–}âÀðïÞ^z‰iotpŠ’‹®ö¼ÁVˆÜ1W2˱±hò>dÕ„cMdÖl÷èé=Ã8Bmä~…šÂ;–8n¡É XJàQÎÛ_b¼æWºÎl€Q ŸÊì#usÎ넱‡P£z^{ìë¢ï¸×­£ï‡­}·f‹ç·¹w¢¥0³lCz‹1ÞK޼s…¾#w:Ôüº<%nÀç®ÇÜp'DëÐQl_8›o“­d;ÐB”xv|Ð6nbÚ?¹¬ÂNÚëªy´ß8Ú{q|ÚÜ'"#–Y8 äûƒóÏ¾Ææf°èŒsâw«ÑÙþ]wÍtÝiÿÙ9“ÒÀ IR¢Ô#*Z‰¡Æbé\L8í ǧj{~Œ"Í íqå~‚sÐæï»³f‡9°Îa }«ðØ7úvÇ¥q̦Zý;  „Õ%QˆèœrE'?ò jîwÎΟý{s¯]¯\N2¾Ê®³ëÑD8¬it1MÙ=ã,SfÙD˜wš%¤`âo†ëQ¡dD«æ+`Ùö±/-Û »-~ótžÀef×Àè¬c'«Õ·# ~Öó6ò!Šž éÔ.ÐÅx·˜g4gÓ¢Ájü'^¥IÛR6c¨°sÊd[¦ïj¡w@„p¸­ ·O†HÖß,´VÓ-bNþbk5ŒIFɧpÝÏ×…O9ó)+¾±uEHƒ. ÈÍ9 QÀ¡"¼vlêì#§„Ê‘—QW¶>(H¼Î0ÇCôÉE sËàý+ê×a@Úñ®9`<ù×ýáŒ]ÈMj]›ñYBr:7©D‰uCs|Î׳x±ç× 4–¸ë´2H'WV‡Ü^fºb5=¨Ÿ`˜^ƒÂHýr]J:GˆŒå—ÍŠßÀÈ"P¼³ | J튙G!REp¼];DÈ ‹Ýó.kVÿæ¹=^CþïžÍGô+Ô¢ßÐ釔·{I™ÀGš?3Òµ,އ[Æ·É•àŸ$>’úÑvZ§gí½óêªS2ŠÈÜK‹Û0d•¸(“¹±eª…:ã¯[Œ¡ÚÊGÿÝK6Þ=Þ DÜ8Kq‚7—¬uóþþ0¨SÑåÀ&Œ®R­ÙË/ë0PÎ"¸ÎM¥i´]äw‹TJÙŸ*&¤ò"ˆEþWòQŠ-³'|6DyŠñÍLnÍ ŒwÛÌvý”w¹»…žÕwÒ_[ ·‰SÒ&œ–<ÑZcXjOxÛN寻îŸCXï/4ͳ3.Tü𲻡ŸöðW-KñÞibλ+Þb!õáuhп˜¤“Û:§z6Gî‰tûùŸ×“À¾ÕD‰7䆇Ԏ¶ÌzÛðŽp(¥Å”–,Š¢ÃÍŽ˜jKш ·óy—4'ÝI†œ¸x¾´ëàL½®ÆšhPWÕ¡T!jîÁPp[Q®ù§fM{[«'÷«Q©æzµvãaQÆêA¨ë šË¨'Bõ„à‹f ô~‘œ©¹O‘ýÒLFæÑlNx(- ,,qA¸í.Ä­¸¡øGÉé5M¡Åï¿tA…¢ rƒ³íi¬¬ Ī՚½Õ0-ÖèÀ­vç€!¯‰ŠVÌ®—{¡^ÂŒ_¹‹p »p`*ö¶ÂSaY œML ªEwŽ£ûw_{¸zQÙ &‡ çÔ­îo=û±Ý<“z=tç%¤Û¯hÃÖ£?K™bŽ_6_ŸþhPLë9ò–ÝáÊùçO‹SÅ?eTD³ME°+5ØÌ ;$YŠX×ÈæáÓäW S¾ñ³¢én“0é5 |&çPš¯Û¸lyî©}->¡ÕÝ™ú¹v•´”$%‹ü›Õ§zI¡‘êc‰qÔÍT¥€øH¾ØˆjtñÐ#ëшUKnc ©ñòxÛ+‰%Fd·þ÷‚¯L:k•ðÐ ¤Ê«¬‚X«|ó0†Ü U'"Öú~]†N2%÷Å]¹áŒ¢–ÚëÍZDÞÝlkf)×$O¹ dan,ç™âÏ©®Š²½$ÓÈÝÏ ¾®!Š%´Ž”# ßõ §ÓÆ&ž@À˜¹nÒ]Ã付6ºï¦b f¤ŸóÔ+hõÀ‘3°K90ÞÎÑɳjöu޼àž?'évÛJ¯Òþp½RY¤H–V T–Q DD‘¨R ²œR YJ)PYR)뜯¨ÌQ T*T…URe{aòÙ_'žò?O&ýž*LEyZQ“¤·Óæ*ÿ­R!¦œ@Úu/ä™°¨IŠªïˆ.â÷ß}·—šQu,ÙÝë×>fDî\¤=NVðv©|B…FAa³ÝÁàÜÃfiD*¦˜G\FMôM¢úqÐ/®89º›l€‘ˊȸ`Qµþ7"Ë~¸RÅy§®It-\$Í÷æ¾#yôcU<¿•Èt˜zçPîüaªŠ r*^³l¼¬õŽ7—:lt\U—@õðÕˆõDpU\Î&S“’ÜÞëI¤É]ß]°ò©•N•“Úÿ‘?”PtÜGp’e CÃ=!@7„Z¸çVS‚-.ïN‡»‹}­ÖŽUw-Ôp§s¾ž«P¾ íšSãt^ÅZî¤ùоHÿ5gpïÍ©X^öÉ4aŸRö‘Z°»èÀŠ‹Pª3m.ã~'MØõ`#œrt©Òµʆšx©ðâØj!amú÷Z2®H° HLp!)Ex¯2ßh&CçÙËû[¹ ­0_EEZd–S§¹Jö+u“÷|H3¾8”ubjÆšDa;\mâ|~IŪ:y¸Ü€d„Ê1äÓË~Ú³Ç7EXVÎú¸‚Ïã_aè`Ãy¹0¿E»¹Lã8gM¬îÊ·±!§‹Ú¬yü‰*Ê‘ä¸Rî|?q§láõ¸ý*ˆêBcÖœëÖë@.¢/[-aá2çÞéo¬b ‡^–º£ñDOVpšä¤ñÔK.@ê¹áˆ./ÑàBÙÏA²)Õ—n_ vmáIT· Þü+”ÊÖh¸äå ³…°Ñ{Üñ£AXB!PßÀÜIç¦Tö<.y˜çI5§U«Þ§»Azå¿fU,aÿ“:Y¹Búƒ}[ˆ¯ñJXÇ'-WÑ€+rh[ÒçËwøÚ©˜(-¨äž©õóó\§hÿb|‡Vcµ’ÀoTMйÔ-Ä(áW%ž]»žg±œõ·]¢­f'tÔÛe6EÁ;T/¢¸dš%ÐD\·K8°JßÞâ"Ž®“bL04¥{±Ždœ]ÄŠ¿#œ”}Ú1Á nÊY¢Yv>ôvÕíð=f ð"¢t»7@/~ÇÉþ®qŠ˜Ç ×cKÕ#4Á÷ oWIÈ)ŸG¿eê.GX"ÓWwKDÆÁ`Bî3F!‡pˆ›ù²Ï©Ïؾª!Ó’3êöIóÂ'»Â:æ!¥x•°Áž`ÞfùÔ˜Rˆ}¹ádK¶iÚ |ÖáîØ£|Ò>E ?\·6A¼(I3DáâEajc¨9^ûÀ)ð„³Ïº¥ìS÷(Iní%z†Ê«9v¬Å)çáÿ|JÄT3X‰†Ú±ü\䓇`N™b•þC…¤ò2íD mciÄùRodÚA¡‡½Óm¹f%Érsúà§×IÞ8…røØfwŠTux°\UG‡ «‚}½d]ç‹+Û;-ölkÎ åñæ]:Ü8úÑ6á/¼Zæs¿—…*ðµ_Í'™«‡] xD©‹šÌÁ²jÄ|Ýojr˜Œ«ø‚µ 'ö?w"‡§ t• PIiÒ%©‚\5ˆbk/¦넌•œ€<íÙ¸ÊÛ;€Kˆ[§ì–Ï&Œm‚Òéö‡U¨0Ç ›Î ¦k{xí¿¦…{3 ¢ëÆ]ût2Ioël–"ÜX\)Ц™‰f}¼0n­{mu†/5‚ÙN']ÌlÖ…•ÔM¨…—ÏXŸ(êú”f«#2²3+»šóÞÏn.ë%è$ó4w$…v²šlÁÿå¶r8T¸(^4'§—p¦[Ï^6Úª ¢Ôó¿Õ²×|¡"“ÎL¦N¨ÐÌáXUÊ"«4oò[Rè‘ØåPqXVÂpD çÅ$ýÞÁÇ$bDKn‡%…uå½dÜn3¬ŒðÛqËn‡e‹ ulÍmŽEš£çAsnÙí°¬ã”¡Ë€s¤ª¾&(Â%©ÛcÇ}A.ÄpC;ÒF¬ôY“Òr è#{:ÕŠ+ þd¨…Úܨ˜4]rnYØÏ†d=Gd¨ÍK@"èúèÐÎ;£½ºÎŠ5ŠË¬\‘†Ý¶2:î°T'G 6+çSª”#$uÞ7ü^H®v]Ò³ Ýåhõ°Ø“b×j!ÔU(¯íKhgë+î³{VÙ#ïe ©›>Y >Q7@Sî‰3žåŒ±xÖ%,*‰ IkÞ1w,nµ!ˆ ý|jnXoWXu@•dòÊ0XQ]ì2äÏÑŸz¶x ¥Â};†nZÑõ„›šVYX4û8êŸ9—Ò“p`‹¢¤â•}P€”sÇÎsj :¸tSåC÷]‹> ÅµÞððPïàïø~S°[.ÑÝôjÒŸf&¾\–ÙID!Ø ´ÉÁ ÎŒˆÓµŒýµ(ò½åÈÝr6ìíQOcò&xLVÉAÈWyw4î³oo*áèVÊ®¡jgY2ÏxŸÎ»›ëh>½¬ûœÛÚÜOTr3¼‚úcôyo´Øªê§œêCoÑA·+R›¼xÀ#OÿrY,ráDOa)~j bÏ\µœï¿£xcu/W£Pt¶¢·‚ùªÂ_Ñ"·%¡¼"wƒÒqý"ÈÓXlAÊOÔEzÁ‘¼•ºÊ8\¸¨ªýTã6ø-tûlÎaYû{³æ!‚78.пYãŒ4ÓF™¨ó¼Ù®êSN‘kS7k¥ùÑ–ðÀ>š1>M6·¾Aå1F}cXE½a´ãö‹æ)ö¿êöÀ˜â5’ïÚï¿c͵¥«\ É!¤ìÞaÔÙª ,ÁËÆ‰· Ô‘J ×ð+ó6ÜŽJ“²É6ä ¢ê’oó1µfý‰›4tÅ&ˆ.Ù‡’ýhPÈt7š‡¬¸ ãw™ˆí–ïCÛ„Ý…üÌÙƒüà£w Œ+¾ÿlGü­bÛöö^X—¿ó–¨ìN»îÓ"^ïŠFô]&P~4†ùÙÐwÝ/1I<þõxšï°¤l ^e﫚|0&p-²ÏËhØca躿úE¼Îi“Øm xì¢ÃöÅþÍ^o~mÞfˆ‚úÙ£æµv&@=¶™lÞt"žmkáO˜5á×ý¿§¬/”vøDÐ!‡nÿ3ì‰Eª70·€W!SJb­ì&Z!5åϰ…Ùšã;ÇbY„kÅäsP™:=9ÿªÚOª¨è%,@P©‰ž£Ÿ›„a9ñž„¬Âštbºñoõx8¢´2ÐÛ½‘EVwPpjäÎQÇ'Mªô’U‡ü;IW!‰bÉÚ@a€H)뾟¤3ÓyÂxJ„¿`TYø=ÕÇtœáëÙ`Úg}¸8Ë´ZÞÍj£04âc´ƒŽ…jÕÙÞ`¼À‹a·m8À£I:飉|{ ®'êzŽž‘èzC5uSÁ^J ÌV*2v€l<| „€5ΙR¬în*Òçæê7ö}4̤‡>.(eèLú¡ùlÅ9cZôJ¾g¡ «®ï…ûu’L­[4þ4öNÏÎ(ÝmP%¬nK×Üâï+áoNUß}dqݾÍ¢¿GC(ù¶ñ‹¸Ä_’«#eXÂTƒÑæ|Ž·˜iõš*#jBè¨h¡T;˜ˆb@Žy˜1¦ËÇÙoQÒ‘·žb¾¨ŸÝ%){1K+«£ñ·ˆÞC±ð?ÛF´CËyÝ £íìJRÁè×OðIqšáfF¿–m ºµKÜü¶µIé’]#w#PË^Ï‘½ o>w,Þƒ-¯bN¡ 1wv®ãÒc¯0H˳õõ×5ü²úãš!TmÛ?u¿|Œ‰{«›³äɨäþ7µšŸ»7<îï2ž²I&— Ç­Ôs'òë}_8 Gˆ¨$Êzµ‘„;ïfуa®=£ÂÚ"Pá–Œ&„våš{î S÷RŒ Îsë7ΛÀÅC/Ї[ã,çf†ƒ›s4›$xÇçÚ ( TW‚Èùýˆî_Œ¦|X‰–{ŒÝr»Ç= ùu×]%¢T¼M‚?U¨cÎyª¹SûûàO¯W$ˆuù‹«süØ8!Ö]Üf!«5ŠíÉI“p…©Î€„ÍÆuB#v/ JÊã®K—ŒrpaÞô»ý‡ä–,b—}vžL`¹0_ÀÔ¥]Æë‹—³G‡š8m„IòD°žöRfìw×í¦§p¶›ÌdW$”K£Š8FÖ†.]£k]š¼™]!ˆáåeÆÝÔQõ&®–ýÜGÂû‘éN•S‡}ä–éSFÔ¥ø~—£·oäˆÔYˆàð#uI'mEØ2u'À¾›ºPÏZB\¦‰ÝéÄÂCû©óKÄ@ã-Ðq¥{Ûؾ!®±u +Â!œ*2U·uÒ>õ{ʺ±k†°ê·OvÓ‹n­—]~©(EÒ#ÌœI°y²EV˜[UÕòj¦2㦤Y• Á¡c*\é­¬;Ü}r‡Póƒ (྽ ^ ñ¾MMަ Xôþe?ëQ:\2¨è<ÓãÔú™)taLmVc]Á5 2òÁbð]“%Ê…bâH3YãjËö>%ñ–êÈרcw_†ñêk©§èÀþP²1o#Û0 ââèÒ'·{)Á+ŠÛuêîHÚÇ“N\\›ÐU5EU$ß²jº #† Cú,ªµ".—Ö‡=‘ŽéFd“²Ÿ¦u‡uRø@Á)˜õ…fÍfâí¥O:Œv¸œ\‰³3‘;½¦(;Ø`nÈ®ÕPwS.X‹ ­?’ã´q­±¬æ½!qôRú¨8 ‚ý#(Š„NTñeW B@œ“º=Çx×nšO˜9ÁIÛ,gçŠ$M¡Ù®\ÁÈ]Hô0Íe”jXÉw6‚Qt™êR¿±ƒÈ‡]8×8¢‹*&’õä|È)±´nCƼ7¡dr2è„pžõ„k»Æ€¢Ý¦y"¥ {PÝûÈ¡nS© Ž]ÅHµÖ®Â ›H‰® žk–Y×cÕ&€>RæJzE ê‡†£Š“Ý­ñJŠæòæºzcØq“ÔÅÎñ5¦[/Ž_5¿ožn;v™"¦d†@HÆF£úSÙ¹Hî€Hiç°«lù¡ÆÚ1N˜w 2Î&0Õ×ÄÕAÿ€$<äefÖ=«nfz¦4ÙÃ’¼gcî/zC]Œz·4eæ’À§SG§mõåýÜ{°÷%oï‡[k×ÙUJ m⃳¾ŽvPÚb.X˜N‹aJuRòÙåe¿Ûç”<<-ìýðE~Mß8³„s!)Â. +é8ÝÙAZÚ?øFäo“Íí #Ñ©‰Yˆ#0.c`Òl’ÄØÝàºHäN†.bÝÏž$§Íÿèìw^6~(ªõ«|Dù‡³±Qêkã¸`Þ3~ªóLäwtu6{\Î\‡=¢•T&{<¶\vëhíqAìfõ8òB2RVÛ¿a@¿%ãµµÅpzTàB›=6€uÂyÃ÷ìл±ß›±ÕïŽÇz¹†JÝq8A\½_œh[ Û[¡z¢¾8vRH±?qìq8=¡u¯ ç/ÜþìÝ…ÓPØSv·,Þ,wØ-îZ•›¡¸LG¡ˆMuŽ*ßa1JòN}¨—g¢k]g“¨qrŒ2]éRø 1_¦‹HueÃäÐpºÞˆ™k¢J¾ÙoÈÓè&ó9£4Éu×q“o.a2‹d^’8&¦E3uN} £çš¶á:ÁÚn3££û°Tæeä/o+fz/iE9÷XçøI[éç}²0X=³Îµé¾·k)/"%ª^9€ *`ûE6‚³tdÇßià!)%G¥2×°VØ}Eä,֥ߤ“^^÷ŠõßCl˜ó6;RËDTG%¶šbŠf…š H’²"¥šzŠtv²I0«fÌZ5ãŸ8„ÉFOãH –ʆö)„àE¡k´óF1kÜo´ï ?q vçøä Wp ¼ãô溗M&õdåÁàZ8Q05_­ý<\©¹pÖ´×ø§×÷±Zêa$~݉ü‹äô¸¨Ý±—Ò; Ô„³ô×ÞÏCè+4Üõú«ú‰Î0 4GÿFˆB> ÛgÇ-ì(9t Ó-zòó‘=û®uÒiœ>;dÎTm½Í.d"Ù^6N¿ãßÙ<Ê2ž`¬áG'H_[k(tÒAí¯''Ùª'œ£ÜT z¹)PÿÁ-k§9—@z«T£'Ä33À*»¨{^òO¬‹h‚Á"£ô™ÆN Ê›!ö{¦hˆÇOƒÎÿ»FV‹ ú";Ã0…ÜYó/È9¿¡ºïÀWHb’©¾t€ò Tù–ðI¬¦„`Ò¡êFu{¸Ý¨=û½±WFѾ³g¯ê‘¿ ì+âÄöIrªxš=ª®ûˆ¦‘.”œ!«b9 ÌÙ»ñÄCÒ’\x™¨ËÕUÀ²íÚ½à>GSGÃ(+P:ÛžÖ$ö #RاóÀ.‹óV¨`P£˜éá>h¿8=>þ‚pøÝ¤E޲Zw%Ä8=?jÝ\`eDTãmn)¼a}`ö.¥lêœä+B¹1ÒêÒZ­á–_Óý7éÏvøœª,<ÅmÏÙGâÙ>wèÐ2ct`†v ¿a½ñ7xmÙâàƒÆ<Øå{Ç/_¶Ú^”–åˆx?[ ëEö†’m,Øž\çö\êj©y´x||b{ÓÞŠ“¡À^\ªßšêä×>󸯃 ¶âòk{‚þ©wñݪ½~›NH³Æ‘êÐÆŠa6u‡ÒÑ_Á{;Ë¡¹u4̨ˉd ÷FÍ)Z,έ¼„^Á }cTU„1P~!ŒÌ¦©!ÝW¡'U±‡ô%kÌL8ËØ1À׌k¯3àÑ0v\ubó t#ÈêªØÕv\Î܆à?Ñ*ñ.ðœ„X0šAcßçÚýZÄùÌÈœ®¤Ð7ö(š-Ž ŒˆìÚTI|ß-;BSƒ VR9ÄNý!.r’ˆ:<ˆ¨Çû·€ãÉ…6t½»ŒWnÓŸ'8¾Ÿ‡õ9.è PÁ¤[âŒá¸`,rµ(8X´†Ô³Éµ›ÏCkGÓ˜%ôÁ.Þ§,/™VÈîC‡ê¸Ê˜ˆ¥º=‰ù Ž‹y™TIÃböŠä-2Jݼ¹uÚ"3Èäå‚eÜMÉ:j,ãE²„¿‡—OÔºvØqHR¸hÈÇd×&ŒçÒsÜU¬¤?Ïo%R w“­š‹àº9  øÉÆîL’[©’€0%Å­.}IáG¬êð‘s'+æf[á¾(Û‡ÆÝ¿oOº]$Ùhh LÖ쎸cCÑœ$€É,Û®Tª›5¶ÓxÅxŠY"Õ(%)&‘ó´ÆùÁ-Liu‹?-!^ŠÚ>ìÞW]åû%ÇêÃf§¬üsÞ” • ~ÿU­äòRÂÅ*2ÿæî 7[¬±¡"Ρ‘áD„ö8 a›¸Iü0j±É»4:ûu-9+pjàëA \]á&¶¯Ê=“÷ŠpÂ:ÿ¼œRNOg(<㪑GK:¬Ë5!Ý«ê—1ÿAIfŒJ¬B®V–H`»édrKø’#ÇUFª…û)øŒrÇ‹*@¾è¸ °NNžÈƨaÎ@¾J9 S>°³ÄtrëšÃY‡‰DQ‘MòðFÂ-_ +\X u(¤b¶šF¨Paš›évÉ”h‹VS ¥äÞð9<αëƒY4NÛ­ÆaM‘$"D&Ʋɬ`Ik!»BIfË5—úæ³³Tòƒ¨ãZd'$+Ä,¨Ò)d‡ÞôËh’Ū@Õv:d©ÏmªKwiÖÉf= Ð Ÿ°p0¡haâ=Äj1øë 3™Páå*2¸‘ÛL ÿy‘€ ›L'‹Òr™^ÏK½8ý³toQÖ±ºÅz¬ù,“¿P×@ÓÜs=í=ŠëÎßÍËQñÌæ¨ É1D¯‰ +¸2f[á;Q2Ñ3•U…†ˆù´VœÌž¬›D#½BCj š*Œ¶®Söäî3æ«-¢+é:!¸GN®YmÁ¬ÿK²`Š6¦åRˆhFÉ`°rÓ æ¶ó’#à<pŸ3/‚ž>AHuç±f¿†/I¿ ¢É™Ì¹®ŸýÈXÔ'§Mø¯ÿѼœÚ8¦œØ„œz=ÚL¯j€ÒPA‘uTEA›Òæ-eÔÃžÍØ[yà ÜàȹEG WG_$`Ñ^S•Ü4ªy'Ìä’ߥ‰¨åǤ yÉEÝÑø6 ½ç/•óÓ¸K%˜öÒc0œDéªUèr-bì ÆÞ¼Ã˜HCL¨¹ LÆvRòù—[|UFh[‡þ¥Pl^^‹²„Uþ‰õ2U¹ ²K-±×•~6Á,¾ò]µZ´â=5ôDn¯éD&©Xv;RÖo™¼Èïš þ7sGD²ÀªW\¹`©åàcßDò¿‡¨©¦ÑЇæCr¿šÌï…dìñI²lˆû~¹Œï&!l¼êb2õJÉ„X8WUÙRfî”2™û6_ê'ŒW²‚ž¡…]2—j„7Ž Ìdc”º¦„3Â1댺j$ïÂ"î÷Y/ ]2Å‹£$݉¤ì!ì½[½g¾•T]R2 Ýð%cª“ïÉ»Gï…² páü8&«Ä3Øy÷Œ×u†_ÉG—Ó•ˆs‚!׎;i…ÃTƒ¡¥ñn&Î^µÃ=«„d_}¸ Kž¾BŸ]VžužÈdhXo%œ2dÅI«Èò!–F¦‚'ÑðU>ŸîÄð„ͼþG_rsοǥÄ^¿¡„ Ñ$Só®¡%q."ß`©;h©^觬£%"ÍE ôsM&Ñ…«*ïwÍé²èBÿ™Ö6v?¨M ÆWB@Mþú_@É.9Úí ós0µ„߈Ê8³>²Åä?°‡Ü˜¨Nè»äèðÙáñÞwd,!ôu1& ©²Ê5òùVã‹|yrÆ \ˆÇlÔΗVÝ%<«{Ý›Gû,q-þ•Âë‹þ×IÍ·ÞÅwÿï_ú‡†»ÆÿÝÜXÿê›/óI÷K7?!‰3Ýic~=úŠþ…Ÿàßͯ67þ¿Í¯7¾ùú«Ío6nÁóÍo}ï?Õ çýÌpÿ@““Ñh:¯Ü¢÷áàþü|¹zןÊ*óè¼´¶‡yª§„‡~š]Í@~›ï0F†£ø>¹ëI¤^Ô'Bh 198)HlŒÉ v˜ÏœÆ%UÒ-œþwÎÝÂè´ßÕ”=@ÏGìÂd@ÝI>åÆúBZ_'ƒtx5K¯lØNác³¦™-OÞôý1ð?Ï$ éX“Ï6NZ,OïÌJ7VRíÖ’Í¿ý훵­Í­ä|اЭ) u/½¾˜ô{W®‹ïQvSV ÔðªÙúª´šJzøc~*§Y¯„ôbÆÆT˜crùœÁ `ð 2û:/4I­0šM+ŒÆÑM%ƒ, ' Ôúm¿GÆrõN0Æ0dž]gÓm^´º½"Ÿ éÍÙµ0À PÂAÂ]3“Ãl‘LE9v1ê³ÒmT»L Qàú×Ùd½¬'Т3Úfo&Fð 3Ò éÒuƽìºäò”ê‚}‰V+’®ÑPÞÇ4öfÞ €‰; 3º#±,’ ƒ–p93%›­ö¦l.àƒÒ-ʯ‹õcR Iº 6 ¼¢á)ù¨@Ç®G ðŒ!Þ3ôø-†à wÁPº¸Á}aÀdÇY÷|ÚÇÝ'§•ö‘ UûEë,9;>h¿jÙßON¿oí7÷“g?¢ËY‚:†ÓÖóíäÅñá~óô,i§±w|Ô>m=;oÕÆ|¹RÁhoþprÚ<;KŽO“ÖË“C}¨ý´qÔn5ÏêIëhïð|¿uô¼ž@hìH(k×±ÑJñ³äø yÙ<Ý{6žµ[í©#­ö¶u5âf÷ΧÉÉùéÉñY³‚ÃÚoí6Z/›û ‰A‹Ió{L«uö¢qxŒòøÕQó»î ñY³rØBt~n¹ß:YGcÛƒ‰ƒîÖ“³“æ^ iþЄ±4N¬C¨ó¬ùçP^&û—ç0´ê‚%Ù;?mR&°ãƒÊÙù³³v«}Þn&Ï÷ižÏš§ß·öšg;ÉáñMÖùY³-´Ø0V3¯á÷gçg-œ³ iSOÏOڭ㣚F?&{ øtŸ&÷øˆ† t|ú#VŠs@s_O^½h"¦?ŒºB3ÕÀ)8ƒÛk»Å =˜À¶3Æä¨ùü°õ¼y´×Ä·”àUë¬Yƒ¥ja7ûªmžãi‰ Wü«³aë´Ië iìßÂnsá ,ýYK¶ <:;‘ž§{ý_xkWþÒv3 ³+ÌDRê¸ûÖ߬T(sÁ‡ð{äÆcìöNF'NÀ:r³}8¿Ñp“€m’žæXtƒs,j‹ã´©_˜ Š¾Dve*ú¥‹$eTĬëáØÜÂÐþ ³6}¤ù÷4ñîIg¿yp”„Ìy²êD^t`â†}\ vº4U˜húS—J¯²!ª»lNò+M?^ù­P]²z‹£àÜbvhO0Ÿý“R•ú%ž&çpÞ6ah§_Ô>ß©Påjmdj‡õ®µ*z“iÞ¢°[n6ÂdkÕT¿ZÌ@ˆ—¼~Ï9ÓWkfÄÜké…†±‰ÔÌÚNzç(þQÌ×ßÍ['Ƕ<ñ2qy5ESaI“2×ïÿˆCÄ!úÆý_|ø!j]RÞPÙA=ú¨3ˆjœ Krs"Ð-Üߎ6²­!e•4Ïg×™qÛ‘ýij7x=h³T i¡™õJK@@(tJ]q B`#5…ÿ_ößÛO|þ:8ڎ̶$Pæ¢Ô‡UŠÝ¹Ä‘¤pk2,F7(¾Öⶈ}¢›¿ÐF +5[¯ŒŽT½Î› ÔòyÍÏú ÙÄA9Çë#¶²ý9 4}Å-íþ|ØVV¬(K®3åî+nû»®ó6Ї–!‡hxxPCÓÂÌK'ôój òɇ¦רVÖ©y¦¨å{¶xÈõeªyÿ 6àsØØ”ˆ‹Œ4}u7 >ÉtBöçmëlJö¡…û/¢f»Ò'8—8/Nòfe–þÀiA¼Šùt'F:Ò‘¾}ÈIŸlšŠ,e>MóO=M†ç[vŠˆ‹ùÐ èÓ°¢›bá¤}ê´h’ŒEëC&ÈñúD$™Íç\‚ö9—!önÙiZŠ©Ú¾7Õ覫ES"fƒfÛ¹‰YÜüc‰Úf:>doòã¾/±‰Yè_ß@ö/þ³Øþ‡Ž¨¬ýo#bÿûæáWŸíÂÏgûßgûß+|?Ûÿ>Ûÿ>Ûÿ>Ûÿ>Ûÿ>Ûÿ–¶ÿY´ˆ±'£B¼øñ‹Ž—2Â5Oïz¥5å욃[Ž.íYX ©M2ØÍɃ=Í‘v]Q«7꘰ä¹Â^ÎwšSä·Š££‹ÇïO7Ÿ`èúYîZ CYj1.u×—‹qFI:F'öN4qÞ>м«7‰±P1J€¡ŸRït:º†Ùâð5¼‹ú—üšó[_ö¯( «sgE [÷rÍO®–:Ðg}Á JT±×u·G¤º—ù¤!yþÝïÍ>§|óS©€à§Q@-ùT@ˆ6O÷ƒƒgò4ŸTy ò±ë0ŽT̨…WÇBÈ4m[ŒAÇ;Ü¥Z¾'z™“º÷ͪª¸wã*u< /iBmŽâlSâ˜Ù„XN c®’Aì˜s…¿¯Œ$½ÎœĈÝuÜæF"¨þÕ­B¹ ߎo  _úÃJ7›à É #âcÏ82:Ç+…ªÜW~ø­ì؃ÆáYÓ å±ÑL‰…b•¹W *íDÝY4{ÅÏßBzyI©ÑÞØ¾ŽÝá§×ÏA ŸRæØŠ‰1Êg`¡É_€E9 ¢8œ÷a ´¡èεÝ>=oÚ +™.Cºm( Eý ¸ÅL×eاË{ôyÓJ»ïLD:™ ×á¦bÍ¡Q~È©Œ×9åDš”|9Üq’¯ÃSvÐî®;%%;äƒv‡KG>zo? ”$MÜ o3ÒH}ô©$†¸ÂÅ ~ZsÜàœ:Ý9$(ŸÒfg/ÜOâåIûÇN£m࢛쵯HDtÙq{¡kÜ(²ÌuÁYwû¼ÅS–¡î|¬DòBóI §ÁÍÒ“‘â•T™Žœ5€&øÇÎ h茨Ž{—3‘v»{hÎäÓ‡ï¶6¶ãY‚Ù>ÎÙ zå‰wëý±wÞ«ÆÿÁK¯ÛÄÙŠ”Û® Æd ±WM¢‰õ.20î¼ ©Z_pFzø» oÒº u|w»áåÚÚâkQ®¤g½ïèn¤‹„w%ʲ۲êäßÃ_…Ìûù}æÝ~åwÈuYþùû=¿wï4)ÿ×ïÊ‘«24QËÓgûäü3Ïþ7šô¶`WÿÁö¿o¶¶¾)Úÿ6>ÛÿþŒŸÏö¿Ïö¿Pø~¶ÿ}¶ÿ}¶ÿ}¶ÿ}¶ÿ}¶ÿ…ö¿Ë¾kýK­Ž‰c.0ôj2Åj‰²‘Nô'çé \Q)E=‰1‚ôE”V¼DùkzCUåOµA7ýÞôͲ¶)ôÉ }ñÆÙD‘žÐ`3 Ä0¹ ÉsÙ[¯`èºu&½Ùõõ­-­Îë”™ÀÁ“ôÖ”«^üœé¾ª° 57±^Ød6ÌûWœ~lÊáØkâ³KJ0ÕÇœ£˜¬^ÌpÞPãÂÊ*—ªíèßRÀø’n #©ÕÎÆT"YµÇÛÂÙxàê»?ÊIúº;­QÇÙíGÏ¡?ÔÇÉSÜjœH5PžY$/GÒ®MÇUÐqù‹ÇyŽhÚx®Öë~™§Åp[Nú;J¯Sí“ópÒOž0â*ôäqgŠþÉ›TƒwÔÄ›É<>Ù-|Qû©ÿÚ$&—y{°‹Q[^~IðüC¨É/kkÐÈoèÚvìÝãä÷Döir<¼D¥žH÷^6æä溣Ǹc0|M â"[çd‡öü…÷Ûœ.e煉t¹¥-܉%Õú§ƒ+ o¡ß’)éÛd3Ù.S'%Ñäɸ©ýM7–ì²^pÑe!¤P I±Zdk]®öY­†×Æ2þܧ²Œê:ÿ´ñºýa"=·KîÍâËÄ“ÄdÅÒ$áIV)5I,ɼ®x¤²%*N ~úÝž¢¸.hÄrYwj€?[ª —U[HpZ‹4Ÿ~àr†ËX¿Zf¼†© ¢àyÙ¦ª2Åɺ32Dv~ã£ÝxO“©s¦!4½F¾©ñ™cÛ\ISÖwÞBùä? Ú¢ ¹íoÍœ?LÀvRäsóËï ú®C.³5|¡`áY P®âa`˜±Or RÈœ>]§ï:ˆ y‘½é{ êuE—yuö‡Š<¯º‚¨3§JÔ$w€ã™ÜJ¶¢E/ÃòP¥’ÀlQ}F¼€úœˆ'w#9‚†^zèpe@ÌàKD®‹@‡Q[pi8ݼѯç×:÷B$F%šâlk„G £ÏŒ˜D¹NEŸ’yS¼Î¦IªTƒªDo0B’¥ã&–ÖWMºMS*ŸÁߌáŒö +õÆi.¶ȤòRE ç9‚>ÜR×Ù=æÆ°¶/,‚DŽzkÆÃÅ>@ ¨CÓÊæä½Åºª«Úf­ZRC‡eëUUÖôw?R}8¿éîÅŽ‹øßí.„ç·8ûËëJª°ÿˆÈ»Þÿ³ÒâÓ(-ºë3άV·[ ÷V)†´^ ½ŒÓG¢Úêæ úÊV1ŒÎ$þ%ìu¤”¬Á£Ð-è O:MÕ%Zrê½G÷¬í“–ÿèè¸]xA¡Ó7~ñáÉáùY¡Xñáœ7O,”‹<=?iÊ6hìC@ƒW±{ÇgÅÎÀÃHËð´ØÖØŠNC«8Å‚‘§Ôr±dì1v§X2ò”f#ìOGñi¤O:!ÅÇ‘Æ`«çF·¬ —Ž¿(.—Ž>ìì^lÛðóh㛇_D›¬‚­â‹ÈòØù*¾ˆ­›3cÅ7ñï+´H/£»ËN[ôEI‚mÖE—a†á5‹yí' †¯KïYüN0üüEãŒõ€  T»] EÚÎ?o¶ ïyÙåmm'QF.n|Ýôø¢¸w¤xüEdKIù’7Å­&åã/"{ŸzÛüò"ÞÑøö—7NÛ±Š¼*x# :=>I~ÿ=ñâ¦çº¦[Ñ ZK¾IWá™×óögÁ8›î3Ý5Эz²)V#iCÙ+B7N¿ îßã—/Ëhœ>Èëé9f Ÿ}×:)>m¿h9O˧˜+†NïfdÕÏu7\¬«©ÞàËÇ ¥(ñLš]Û„U¦´ 2éwVçI_(ÿ,¬ß.õ Ó ­šÂ¯ …9èÇžo”•0½(+‘ìmpÂimT¶¨Þï^Ô=±K:-™Yî¹\ 3e vô‚©6âôÏŸîÒ©3“ëÖøpuNÁœ‹Äè~î,j-YKªøì+ÿÙVùBáäF¾‘$UŸnùÊz\\AºbùµÇ_Ù ·ðÝêÿÁÑsýÿaQ¦ð?èiwý͇·1ßÿÿ›­¯ ø[·>ûÿÿ?Ÿýÿ?ûÿ°ÃçgÿÿÏþÿŸýÿ?ûÿöÿÿìÿ¿>åÛÎß[LµÕË.fWW”ÌQÍc”Õ‘YΫD°Î+<)&…eñÒ¯KŽ;"\„µ âf²¥Ë°ëÜO¹´þÔð2%Œ8õÀ¦Ã DF;©0ëU¨‰ºk9;?8hý@ˆðéÈŒ FÈ(/#>ÅÖÞTã³kò;áyé”Òwo•l<˜ÌŒs˜™Îª­Š':ŒÓÙÃk§ÊNw_]û@ÏR™ Z9Z:Ê‘IYAÇbI%rÍà”¾í1 ’# N‘iJÕ‡9‹ Ü8MINÏÐ#9×Kƒ1fG”ºM#…×pdƒK‚õRfP6†ÄIJiW ñÌu¥læNA"ñ!4@j;lµÏÐj '_³€»†y(Ccþé5Èš¿‘š©ñ²Iß%ïw*gíVM^*¶{ý¦ö¥<0µÔDUE®ö”¨'æíNå/<Üb×›]ÛÝ*|ÝóB¡eVTr®8·&Z¼ÖzÙ3ݧº€4 ¶-^]ÖݺŽ|Û©™ïÐ#iÖÓm_òSÄùÐ(£2§ó->êÐÚ”5j‹¿›‰raÎwR¤ôÛÎÅ-ÌÅüo©H¡<ú zE¢£íб˜?Z,Røø:õÚŒ} EŠmÒ<Ÿÿ © æv|nÒŒóš(ˆFc¤9’°/Üs TœÐ¤‘< ᣔŠôº¯AS”®V\œ7ÂcJņH;$séò½C¹å¦WÀÖ“7š·Ö?'|Bšy8àa(Vp”›\of:°†X£Ø“ì_:¼uaË(Ó¯Û]ã#/NN[GD=ªÝ»‡\ÒÖ¹¬Â†Yùkw¥Î˜Ï 6œœ·±ª¥eŒ/I²ë–ê¼hþ%­]—¢æUþóÏïþº±õZв„ ù ˼w ¡BÜúª(æøî(Üiý!ÏîMç°PBÜÙ`Úçù¢·^Æ"W1Žu2‡­øyåŒÇ“Ñ ÉßPâ'FqÆ…Ø)Ív\bR ©å Á” ¨Ë¯Y6G#†rã4ÂóáÚìØy/âè_¦l²žÀwIBN˜Kî ö:D… Ì7)æ'Àœ ì‹ ë•ÓT´1˜uø"7ÉfèúÅ-°Æ"zäSàH$c{sÍ_¤´'×åZ qfú¦òó°"@ R²\üüÕ¤)_÷D[·¾ Öù\ñ ëêy„_dû;æ‡ßþªûE¨2Ý$BÐeªOé˧Ÿ=/ÉÎVªþŽü’&x²¯j?uëõµr£Ø4kÜV„Ù•­¦XoWéFPñÃÚOéëZòäIBaDWm“pÕv“Ô`¨é¤ùA”üþk’oÔ„øMþ7YîDe¨D£)ü1ØfkjKã™ÀÀÖ=Âï ä¯zxiÇÃ޹sÈ¥‘tLJÿ*ß J#\m6lq§ þ7ŸÔzgpÑ>®xû8ùûXݪ’„'¼_ð×E;º°_iéÙ@06œæM¨ó÷Ämß ýÓ`¿•OÁ6êÊ“£Ã6¸·›ÌA¦>Ì\*e³ âJ°0 S­e V2*°N·*å à’ßÅÓÃØwó/÷ó^çá Ù²‘K5ûæöûH>¼MÙ1§\IÚ¥°J÷bJ¾·I:¸IosùþÄIÛïÍ\¶•Å*Ëÿ=›ŒÖ¦¨?¦SQù"qH“MFC x(i”¬Ä„çjmë?Ÿó7€¡aš- }(vR›±ÀØ‚y:Œ}áb„çòôˆM´÷×ÅfNÓÁBK½*—ý^o ‰\§À1Á?xýM5eêB~ÆÙ±w¢•Æé͈óÍV¨ÝzB7æÃ5+ØåÝIÌjØˆŽ‰uÎGmêÃãŽ9Ÿ–ÿŒk+¿• àC\¤õšà´tK‘»ÉÊ·ß®ìT$Æ O.•,6ýŽ3;I²«“vçl¯ö-ÿûC²ÍeC7JcPaßrÝÃJ|'<Ê0Ö>ˆª­;î`UÌH'«3§äúäŽ%\˜tf¶ö”~ýýwÓUó°Fé§î–ŸÊœ9¯3+¹Û_ÑÛ?À¯HÍ~rÌËŒåø&’Ê\H°{øØl¾ªԉÞ†Ï~¨…Œ¾®P®lºãTFR³ÓÔS&Á *àåÍ‘:<à}˲U+º¯)×DUÚ œä‰ÁÙÅ66ƒ‡ËŽ?|x`Þt$W¥|UX[Ìï&×+GÒ5Xqi!è.D“. b£a¬õYL‡Ð¯©2γYo´f*D¾ÚL¦Ã¦y¶†˜b0&Ô{8‰¦çèNc,”Шm™*?¨Q kü3í<3ü ʤ—ÓÌ0e~zUˆYœÏgá´D¾<ÜÌ]ðŸQ“H%I•Ÿ Puo׬…O„°l/…Š·Âd|{ˆÞÊÊNø|å’p© N=ýië5±"ƒ“ÿ5Oà?]üe¥žhÿñ‘Â!¡‚¼ ·ÿY6©ænlÖy>¼†>55ÑÀcCغ½nLùÜjFNzçt.1½ëâvszV¥9Þø8)4Èd¬PW Ó›ê4ö÷Oh¦8<>ø_ M¶Q—w˜ÜáiLÉM[ÜY¨“äë7±•óiÝx˜Ç¨€‘Ó»Ã.X‚‡L¾•¸Ê3óí¸Q`¬œ=B¬ é5ÖéM1ºÎ““:­Æk‡àTPîódR²Î—³ïv*:ý<7¬­â¢TòYóyëúÓ~Ñ9EpÁÐ@¥”7ãÑ%"Ô!¬JÕ>M6 ò)(×é4Þj7_vyA:+Œœ[~7V2T”šA>Ù…¹˜¯õU^F0]­9ûCn3õ¼¾Êá•d‰êq苪ÿʯžØ/™M§^™Ó¥GìˆO?à²Úï8^«å¶Þ·û¬y´o÷bYó>!y8U=}jë:{Ñ:h++.A Îî~bëÔÆ¢Ê쵕º{*l…qµƒ­tÇëzŒˆ•NºÿɇŒ×î#Ìšlæ^7ë\øè>u¨Ç3 S‡Í#ªDýŒkLÎDz„‹Œ<Ï®Aø!§ÜÇ_n>úòáØ£ÛZÌ .@ròÀü›µÇEW¿uI .Ñ®?]CÉRÍ;µîB¥wm.Á{Ñzþ¡x\IY~‡—NŸÂèÝç×±—ÎR¬ìùU<\Ô ˜0¿†-jù²É‰éEú½îå`öæ3@:~â€Ê'p1]qëX¢Uû…•ð™Õ±ñ„ÎÃ\·Ëò2B_þ|,óRæk´vrª²#{TN楀÷fW7v"»+îÀ‘Ï 9…Ú¯àuxEVúQç"["QÇ"Õ¤¹~rG*³\|ÀÓT3Ô|;ýÍÞQ»’¿[?èSö§¬‡•þôÅB2ÐÕáÅx6¶ÒTÅm·è”l}ýuò_® ï“û‰QVp~Ø×Gr“N†”ÎLÓa[l#÷;ÓG·;nÿÜ‘…ØõÊÉŽæ:±ÏR/ýú*x$°ž|Ô¦u¤†*QSE•üò1šc«›3äëýûßÔjî#wf3«'¿ÈtÑþÁ®ü¢}áRàÁ¦vé§OîíõK±oú©a6Lñ»ø w‘qlâܺïŸ>~N…Nà µ—ö‘¬„dž²¯)‚¤söçSà2N¡p³í–¬ò¼ßùf¯uºwþòà°ùC§±·×ZR‘ ©_›ã­$M¡É|£'Æä­çæeiŸòÒÆØ)qOVC™ý~®­x‹ùKqÒ™?é‰S 6íeܮ߮È_Mä/µšÇÔ,7•ÎWïå¸ð©pÏ‹ šþ7OHî#?óèÕ£b2J‡€h¤â;’_G“Šž¸ë=D\ þ”Ôn-ŽÐ,7h€Çé*Ю‚¯ûo³„Žt‰¼¢lã¤T õÁ 'ÚyVÃT¡(çn7Ckëäæó0A¯œá<ØÂªW(55ždäÂQ5+ÿµB×4Ò5Z™e´ç¬Ž0‰4ªÛV¹ Ë-/'DU™¥°ÐÑqÛꪪMÞ¬l£y‘É ™NËÌä¸Í8cáïv‚q(#áé¦òõRÛ·8Id¨íXÊÀëCŠLŸö§æö¸7¨¼C¡Ë›Qy-Û½ä™ô¥0Í™8­K-®4PÙ?Ư@ü|(,Îqs$ˆÉE‹ì:} N­U`UŸ6Y•å¡õµCŎùçŽ*}ƒVs‘ÂÑK¨eƽHumBý5žBzµ–lÖ ª¹mbæSÉ8Ð}Sh [dó¡‘CÚM§ÿkE«dòÆáaûÅéñùó¸!0 kúf2š]½±Î—¦V·JÛh’íîΤî”ëv¤œgš²eÔT¿å Ü~( l»sòÃóÓÆÉ ¡Þ=?mÿ5¿š¤ã7Û¯áPÐìÔvœ²Þ¤ûõ§1¯^úóê=?Ú›_/ªŸî^ïû­ç­¹¿ëõ¯úK×ì!ÊÈÂæCqúkbâxÓ?ÿü×îohAD¥EµJM£ðÿõEíÛä‹“/¶¿Qó#‹ŠÖÄùý}_ sñq ã1„ ±uœh=«uŠ\qYOF¸ÆãÁ:¬Èù(a˜ïÚZaîC" |¨%”««O¹Û|‹ МšCu[|ãÝ< ×(PøN¾— ¦òÕJ¤µ€F¸ƒ{íÙ@?‰ýS¸áhª4ýùS™v (EtU°ÀÁgij [Fµ$A@dׄàQMÈzr ðãPa†Ù§ÂúJè`’Φ£kbø¦”Ðk4¬ .ˆ•×\‰Â=PùÞˆXRŽûCdds™”B‡ û²ãßyÄC— yö$‘€È¢çª7a :ëÝ@&ýÑ,×Ù)Â;Ïar½ÐÙª ªŒ¬Šá{-#jâ= x`ÒsÖÉ]XêÂ;ß0Cî£ ‚]ùã;€WL[‹tË‘ÒæMµwÄâ¶®º³ã3<.oîz²’rH£LÜË–6?p IBl‚w_Sš1Ð2á –"$t}ØK²Ã¶QÉ1 â¹< øYa­¾Üøäº1D8üþ¯ùÏÕ‚;Š*C\jüÑ?Ð*ÚiÇ—âÇÆHÐ(dâñ‰Å£þ),'O›» [«±%½Ë¢*{ùé×ËUñÿ¢ª#;0›îI=ÜCíq/µÑ<Ýh!±’†gI„^GÈ”t¾ëv|ÆÞ ~G‹ „ü­#ˆ:ö®Ùò»V—z×’‡ðÿ¯ µ¹>òËmÓ&¥“i§— ú×y äﱿ»u%7:ùßÅôÝ$ø(öœO¬Î"ðy_$½]wøó®¹›|ê“íëtåræaQ¨s„¸ð[.™œ›8.²gbW&–$‘Ÿ¬M¡¬§¦E=€²+çý¥°¹ÉƒuCFý“ïÍ”M¦ÅàŒtXÖn®ézf<ã Á%Én‰ç¢î($ßùGIãl¯ÕrÃä«gÇ/Ö××{ßÕ(‹Ët4Ed{ä¾àýà‡¯`]êkQ ÍíP‘õ5]±ýLE©@ÓÝA–N!ŸáÆ®}Ÿ›uã—ç8D8N¨N±Áð{ßdC¿Dã@óýØNØKÔ«ÓóåÒžû'õÞû"zǼ¶#YÎÔžÇ9:þŽd¶1#sKOt/ÑvŽéM#Î Jà94Ä=‚Þ–z6à“!Ùø7¸Ý’‰Ûº¡¶ÃøÀkwv]¿²RJgê>>Wõñé‡×üÃüªø˜º"$^7¼^ºîHLj?®þ%ݶ?HBWUÓê¡Ã¹×Å íM%îôòU¹M¤º¤»œêÏ#¼±®¼2‹Sr~Ôü᤹×nÞ}¯¨b¿x;j‰×Zc ?M²—OAºŽ$3=’gwO‡ЉÖ5â÷›“‡5XûU.´pÙ‹wð"~V©“¬ª…Þždã,EçCŠ*I5üsB¨±Ý_á=!Hw33áüóDo*—Ü(±ñ|½®ûC¤ëï̳¶|«µrŸzj.÷…ÕOÅã/=TP¾ä§G ^Ä›ðµ]óÅlß Î[åÁ®¿tŽ,KÛ(yGÇUòzé½1fuQ®h›°NÁ+Oxs0*ZÁ~û묎b<´Q®™ÀBI1Ú^Í«]ç„Ù-£^÷>Ôq—¨i>`àíÔ÷›$ }hS9Y;GDý@\æ<÷»¿ÞttMó&¡¿˜åŽÓ;%<~”ÕIè/W2NŸ? ˆsÄy;Æ÷ÿ)˜#e©¦i‘X¨ÂòkOÜ| í¼ü­ӽ—KÍñááË@s}gu-" oyéyËå Ô‰ØÌÓìšÁ›{Ä0"†Î—dš·°¨Ø°]Go‹9 üq¦ÏŸ1TŽ…Õ'LòÑSQ¨.דæ_DRÍ Þy“Jöê©‹æ­àEë´ñ];\HFYwJ_–xÑŸôì•§ώOŽ_Ç?}6#t9Š·Ú8z~~hG´Š’ÌÀùðýŽM }¾·óGVâ*fä8çYF¤WÄ-3Îý’g¬+ØCZSœ‚Á+äE`u µj<£øõô NKrœXÐpÞÚjÉ®·vŠÅкëöÿµSfÞ;ýž‰`&©Uܘð…ÉÉ8'&b•µià›DRõ£&ó_(Ã[Í»%[˜°t³M¶³dÄ,žK›OÉÂÓ]™çšæ¤cˆ¤çÍ6Å íµ›gíj·N¹¬v~Çè ‹@«g9F& '”3q¿0«Î¡|Ý7”ý삃+H™o¥ïu<î# …" pö 1ÑLh » ‘% è'NÂȺ@ù½úЕ€gÌÙÛÉšHü|1ŽÇYJäZ&/{rRm‚X‚%“œæF€+Ým#–îŽ#Ë ž«3„¥àÍ5…ÔHùíJÖ-µ©Š®SºÓïæøžr¶±Þ©½ò(ÉN/ \€ cÀö» gÊûél%Nbm#íØ{erË0“çˆj”Óiø‹ÞÐTÙåh¦â¥¶Ì7A®ÍrV&Ýשºú2¦Wé0%Vä; ‘¿â„`â-4UÅ¡ü{:N±Gµu÷[CÃâí´Cå“—)æÇìý…0†Ÿ}‹’bÑ ;ŸÈe‹¦>Ò[¸8ƒ_äºkú9%±g¡î‹^EÊÐŽë묇ì]Ú•.ÃWÒn%Þ.Œƒr\ÑÐTµf'1"7âÓx÷×zåñ¤ØPáä;ÜÙù%Cs7õ:“¬;šô’Uømi¸L$—°¡‘ÒË]übí)ÿ¥Ðã2½v r>ëNN?…Œ¸³Y÷ öÈnß.eˆ²Å–¥3§ êa•ªy–v k_j.:¹öx×%†ü ( á`A*?‡ CBb“f¤­!>j¼FÈ‘ícî ¶)†oT[çºLšðü¶…ºh|¬>Hø-ü3C9Þ uÈÁtG|oƒÈy“ǰSú…ë¤ÜãI±½¿?ñ_ñHj.ð]ìÇßYý2sc÷nènÞ%i‹‹6³jˆ–J‡Hául ×± bÔÙOïʪ¬ h"¢Ôä|¸-ºH—#ˆ–¤&UîgBÊï'¡l™uÕÓ Ñá—”z$Ë ¿™™¬#>Ÿh²¨E8áx=Jer ZÃÚuvÝßVÉÌ$ûqîFtŽ®iÝcùVÕÌœ‹é ê‡j°~©H¾¨'õ¤ê1ƒkîûZy•Îáò6Kq™Y©%Xm³ÍãäBµ‚¯«+%%¸%|"‡èŒ‰'‡Ç:†h-'ö0RDx$•1Ÿ³ØJª~ÓR%ƒŠ¡>?ÚïèÎN6ƒx’ž7ŽÉVð×wøâ«ð Õ<ŽK tC)6Œ·–ˆ‹3ù8š—öH²º1-Yr2„©€¢¨h¶)ØãÏZBëÝó/Îéη¿ï“³3·"]Ÿ9édίHWwNE:ù zDH«I¢=âãÕãL}éq¥‰$éœyFÅçj‰ÔãO¥‹{zk¼Ó¼º«þôþîORm¹ÆìaŠÃ@qÿÝôIŽ÷8y"p˜ãç¹r&Ð|«È–<Øõä:K‡y²2xºb‰.¥-X^…+dí†àFbÊÜÛ-|ãèKÅ€" {‘h+j°ž½qÐ'ájd\20Y <D0‡QáRYdY¥à÷¨M–º^ƒÑhÌJNCàq;4c6EC];ò+·¿ãب+^W"ñ‡Nu‘  7zàÿW!ÿ§~æÆ?pÿïÙÇ…,Šÿxøð›¯‚øÍom|õ9þãOøùÿñ¯ÿñÕçøÏñŸã?>Ç|ŽÿøÿñÏÿa¯mòCÖ’â?PÈÊœ'• JÂÍM›/!’¼L¯à¼‹.†²ÇUC/ýk´ÿ°:#½ÂÞ¡Ö˜}£†H÷~™ õ­¯°©`›¶þ³¹ßÁÔékí%ï¾ÞøzëáÖ×gÔä¾ÓW¢Ö×ä%raw6!¿âl4­¸¾c=?(kÓqÀFM~šWwê—?>­%¿Û­#|ðäI²ù¨V+¯ ¶ìAë9×Á‘¢å9І«5ªó±÷B<¸ ‡Í¶øÑ:g*€r­9Ùœ?Œ»äyîì7ŽÕ(‰÷6ÐBœ¤Œ0Ï•@ê E§— ö™›mH7(©Òh÷uF—~w”ÁJ[5ö:˜±.7žðäâ¼ÅY¦o¹­«lˆ9Õ:x¶P­°z%¿¡·¼©žªÜ±÷òiGži÷ú&1¶Hèk’Å͚ɳ†Ùäô•©–ÆPg0G½ç•ÅÿîT¼úÐ/f:HVåßݤªýGíÌÑùáa-ùF{_¯=•¢ÛÉ}RF‰^£ot"jë\n‡]Ý+o—«DÇÅp¾KÞqv;éIE³’ÉÚÀ-q|ÚÁWÒJ°Ä¨0³6B÷›gý}6[» œsò¢o—¦ÅKvL,Z))[ûYç°yô¼ýb§Â ‘p¿wÔIÝZ%‚Ž{ßo —Ÿ“Ÿº.BéÀ)¢ÿ+ì’š©‹U¬ÂƒED‚Ü‚ +M4j|ù¬yZ6cTF+ÑÚ¥vOG-è^tòþž[€¿Œ4ø²õCsŸ§+qVã1uåbÓ~z¸±Ð’¥×´¢²ÑÞ™8 À¢w«nÕþBsÁZÝ~‘]&·¼ê‹ámÞø2¿l¾FeÇä蔄œ6øäÀhc¾o­ßô{=d…áþ)Jt“â»&d‰»RvúÄýy°}] JÛ¥„DÔ„*á_²KлqµÞœÅbr5jAöeÿ*RŽo=-âÝÂi‘S;¾%ß%!èš5Cb¡™”ù§xG'Ú|Y—]÷7”´•ÃLgÿN‡ý.g—µÁÅNVݤ—5L2êš:Åïe´/ûÙ gý飯HЇ:PGß›¡‘ Œ?Ë­d,Z{$YôÌÜrJs>„Ö¾’XßZýéa)Œ÷5ÖŽÛ z3’´›¢Ž?ÍsžEšF]%^M©K¦H`ð`ßã>a88òOïª÷=ÛÎh2R²ìLÙNHý™v†-Ķ=cM”Ã~ÁlCk†*éÚÖȵ%]q~GúBèZdKijݺtýM³UÍp†ZâœUý§C Yºêv)I‡Æ«i ¬SI%l•§?•Ô·žì¥ùÔ΋÷)3C戩јÄ{rèÀ;-€=\zµ‡Nü¨u€îi•´ÀäבRd›]Ì®F¯vç\‰a´˜aVI` =Þéö(!…T·ÜJaÝ2ö­5{—ugTuç—þtNíxÐ\Ú»è ¼ªR¸JȨ’ Òr’r;èéû¬´5O>øˆ=J>]½«`0ÖBi—`ù]ReÀCz_zÿÙlz0ä|ÒU¥p1ádŽ<£ÌžfêÉ/_™‘ 0ø€ }å™°,¿'Ìáv?ŒË×‹Ìżo-›ÖÂ|ѽÆhÿl«QÎ)R‘°N¥Uï7Ýš„µŠTļÕüz¢³ú4‰Î2.E-Z*6›hy&Œu7ìO»j]< –8 ×`oIá£ðÍŠô¬ï>#¤R€ÇÅÙn:Ú”yb@ -„‡SîÒÌR‘Ñ\­ºjˆš¶œµ“lç>£:“ JÖÏ ®ýÉ-^ýð¢g™ãH¦„¾â°ŽÖñ *«nÄ„g¡1a(옆‰S‘œq=0X·œlLù ^ovÌYwíÑW±•êÊ ÿ«S[«"üîô\ªkh.Ræú,„:Haø9YNv–0^,ÿ‚lh%5Ü3Ué¢/Çö$Á³Ãã½ïpa)[â]ó²CÎ.™ËiX¶ßã0" ÖŒBÀÎË“@n4×Jåô¡´žt´Ò)›‹ØŽu<¡Þ]“ xÁnÆÓ;RÃìhhÜêù¢±òª+ѵÆ'²Ãg¸fGƒ¯ú·gÍ\Ô:r­ßÕb°/—õËI–™ƒ?ÿXœÿ^ü_`ñûðuáV÷0¯R–í~y=¯ZFVÅRF—Äß—-‡¥2\Ì®Å0»qÖCݳÑDŸMÞZ¿?ÙyUG&áYª•iGxŸ9»3®C±»l­œc·‹2_G<ƒZQ¥4žÝ%bÎ÷)”ÿ¡sÔxÙÔL^nÈ’ ørq¾Ý;>?j—n þvÞ .wbܵj°}="Á‹‚æÑç–ñžc7 »b:s³YÕ›¾òåg/iûÍ1ĉ;ºßD¸uÕ¾Utp†2Þšï&¡”òGÈÏ%²Û8õºŠ†@ÚøÈWÙ´Œ7ÌÉBÓõiå„?½€}þ×daåe #úñn’L2ñ a"Š‘ ¬ÖúÄö/Ò,·ãˆ7—ULß³7’¯2i2¸'åã9tÚ£‚ª’.£‚QœoÇ¡ñ³G*ÿÌõÿd˜úÙ´?È?Æt¾ÿçæÖÖÆÃþ÷ÇŸý?ÿ„ŸÏþŸÿRþŸ?ãöÿüìÿùÙÿó³ÿçgÿÏ*ÿOuÐ AQŸ›NÔ ô²Ï¡°„TL}¨G¨ÌuVX'ó)j‰¹H÷z\­%ٴ뙣ʹ—NzÛìÍhò«ê8’Çk¬f<8þ0èqb”P¿{þkS$=Cé ZA?œ_òÁ¢¡¾Me÷i*~ðË–¾/yçá='ï¶YGÊ»¶I« “!p¾4ß”/¶çaùb+(:Þ¤IŠt·v*’[t•: ã?o|A9ç©kòÀ Ln‚¼HE<@Ù®»%oñßä½FÕt·ŒÈ^ÅGOé :¤Ö@²ÜdÁP l|Œˆ®Ë_Êû²­tI?KžÕÔnmìQq=BO ‡–`ŠÖá:ST®†ƒè ßÎDÚŠÙÏ/{gfï3¥&iŸÐ(ÿ¨•­Ow|ë%>«Ë]½«h°Ã¢ÞâmÉÚ­Na³²*Éd9§¨Å§oc:xO©üY ÿþ™¯ÿŸõn?ûæêÿ7áÍ7ßðàÿŸõÿÂÏgýÿ¿”þÿ3þÃgýÿgýÿgýÿgýÿgýÿ?—þ?Àè¦Ã!'ÿ CwCU»Fnfš€l׿ž]#©ê¼<˧µ¥1!Ú”9åU‚ùQÔÂ0Ät<±~f’vÍ€²HS>zhî5ö^4;Ï{ß6’Í­Çr’M%…™qFO'SƒòR½5i[,C»ƒXÓÝÅ]ÑgNŽö<üòñkô¬nÎPÝP…'÷¿AhJŠÈ)0É5>Ϧóm^­yyÏžu-<ŠðÛþñQ“ýÚ::—¿Î¾;‚Ï´á05›'”ðCUF‹¡«–Ï.~ÁL„¢ÕàTTW“Ñlü,"åRK1nµ7çâJñVì:@ÁÚ«UÑò:æ–ʲ_:´Ãà‚r“×!Rð$¹͆½Š=”D]™L5çZZ1Ÿ®ÃÔŒ—~§z1N e“ljj°|6˜ ¯…y­¸p V# éP9¤`;EtÊà>UsšŒ¾"½v€Y¤Jƒ©ŽxßâÔ {ŠH>¼å4XD;Á yz3Œ®€yCWë|„p˜¨ÍFÈKÌìŠO(7Wv~Î2¡ÊŸ<ùpT± á¼T\nô¼Ü&ÝIú÷[ëj‹”ƒrç`+¸¶ŸÁ‰µ‘:þ"3sØ…>ð²¿@ÿ®a®ûãã#X›ÖÖ$p5¹ji†Þc†ÐãЮ"¤9l(0¦¬0~1&ÿ3þºP !Nv\ô¹¶I Ý^äàp”YŠðzy þVS°…ýlËV“äv(E…`WC•ï$ó%šÂŽ"okñËv :a½D‚°E>U Wa’Z#u¼v>}‰Ÿ€ä60Sùã;WÜTµüƒÈ©óÝÙz´óo½‡êäE‡Ñ~ ¡.ìë&d–·œ‡†Üð%knй.Çü£›~ÕT[•C‹³wÀëâø.x+vhÃA‚¬LvnY<×äÈvúÉ”‘¤èy“ýg¶ž®„Yæêjco¯yÒ®Ù$ÇŠkôlÎGÖÊaãk›X?Ë> õ HnÒ·C ‰ô’+øB=?ïIžàµÇœ)Øß<¨w×¾_é8¦£‘Ý7ɲ¸‰-ë1ÀÉ—«Ä©ãÞÖ^ k ŽÆ4H5PxÊz¬1EäyÐú€~/µ £.u7?AÓž\6¸Í`[¶àªnU NVuÛaMôÀÛDäY=4wÈ.L=E¼âЇÝ7æñ?O²·ðáÓ1Â6²ÅÍ‹^PX;ý@_ö‚\·˜Ñ¼s9C¡Ž^ÐXߤ=ýÀ&Ÿ 7½Ùš&yn—¡`8ôã¾F~œŸì5NÕæ|•§“y°ð1­ÃE®ò,oÖ¼ÂÝ®-´ ÿ?l}G:qÔM{„öVغy­Wº”%¤Ðìz<½]azƶ´€€ò6Ƙâ¼Îùø¤söì´éìøÙ~L×¾1&i>Ø_ûc!'áÖV"î׿KuíaýhžÃ_Ùx°kÃv$5ý \e*÷ ñBåü©)&¡ÂSI<ƒ¦Ù<Ý” ÄlØÚƒÉÓdscÃ3ãæ±L×ÔhÌ1»&¹¯çº@h_e.l¶Þ\¦^Ñõ2Ö0El#¦B ³ƒ?!Ýî nz² §§©¼Î\›‡êœt…¸&Ó Íˆö;’ Ï PTØtà‡£Cآ°ìî^Å ¿ÙŽÂ€{6&•¨ƒ\ºù¨<ƒœ}[ˆƒºèØcãDzZûj·KT”Ó‰£[5¥ëÀ}ÛtÛ{rÆè™I×ʯ‰“s* ©¨§˜½í#•ÇPL.‚)Ÿ‘w¡êx$ÊBöF„µÒëöÓdy$Y²ß<¹©4²B¥³éè‰:òAvTt½Ð ‚ÍÐvâNѶ&Ô‘†·Tï)L•kO% rwY„ú.†¿áqc²Ôe¢„oøÀR@ L`ã°Æf2¹Ê‹ÄŠ_GR\Рyz¼×<;ë+yÒ>?Õä8ºX@¶u¥Ú8_ U3Ù SVpsÁ:ós|3A¶º—ŸL²qf®f(ÚÜ;?=kbÄö=†¶T‚O)ÍOB [b‚ßf\Y“ÝJånLøÌ¡S^.ì 7IÝÌ1aï Í)§è/ áõ`ÞX¼‡¸d$ 1ÅÊ¡Ëß5ÛIz9•BóýÝîO›Ìô¿Z*cE¶V«N™š‚ÚÃUõnÇèÂ2q^vÍ™fÀ…zØ~qz|þüe&E–túÖéêÝŠ²üÇG{ÍðôRvÓó£à¹Ù)ÎÖ ¤XÊ<Œì>~·{ÀH!Ç„'Âá‹\–) ÃþÐø=îÇž£^òÄAÍü!„•ǰWx†™¨Ïœ9†`Æ—ÃÍ<„' v¥ê_gáV-Rˆ¼Î0ïv£ƒ·Úâè%M Ÿ¡ÖélȉÀowª7ò«¨B‡2wÀyÅr6 zÔ„¨Ÿfj`¿ýr‰à…7œºV#߉Û,©¤ªÿ©eáD–L J.äv½°÷ ;ë¬øh/ºÛ¼§Ê˜Ò} ºÅ+êEg“XFø"þˆ¯Ï‡ÇµÀ3›ëÛ{ûIvw|KÛ’»ÕícŸ*„{?,÷Gê(])|òo½L'¡,·ãæ ­i½.Óî”§ƒ—›ë¿‚í{“Nz9%»O爹bó¥e¾ 8Ð ‘‚ᘥâŒCÜ1lw‚}dÞ®åvüýØ8;kž¶½W.¿+órš±–IXØTh‡ÔŸÒý‹ü¼…ö0áèê ‹Œ ñ-ô,Ž”'vš„ZöÐ|æ~‚%›Gûô±!K=šME©°ž4P£‘â¡çÔ6&=”B¦õ2e ²…ùª•ÑË%±¹aá¡•.b0¹õì‚áœ§ÎÆÍòÈä3ÿ]³øàøÜÈÃÖQña²4•©Åó&#z"Iíï¹ò+\ùÞùz¢–%†ùv‹YBŒ¶aú°v-î"?¹ßøBnŒ—œs ã‘ÓlEO”‹&S<¨ÎV\": Ñóqt}ŽZβçeßtŽÑÇg{gåUÉ'w¥{ËsWÞt ål ¼¥Ùd€šûâ´¢9ñ,àɾ>…îøOöŠÏN#¥ŠÏhÝýG˜Ì)h†~|¬ÃÙq(þ¿ ÎRXgp¯uºW|Ô³|xX|‚}Òyu|Šy‰Ïö§?ú¯ç¼Â/Ï÷æ){M»ˆ|)¡Øj?Áz]òº~[;•¿ô/{Ùe˜Î\‰h¼kõEã¬Óü¡}Ú8l¡Ü½¶ùºV³;¦ðNÏ•ž8„+vŸF'Š»ƒ-©TΩ÷„@#g8?ð¸ömòU²­©ãÛ6{›ÕÝ£ë‚Ê=SŒ\Ä»»õm¿š¸˜êB¯(ÃZ9‚,™¦ç¤tµÆåõ¤pš?4ö‚­NŠ»"RRŸFv„,! h>Û²å"aýCwŠ3¢è:ü^¥]á>twˆp‡²Ob¥ìžÙ‚=³¿dÓ µk­‘—>ê!•ö±A„ÍÀš‹GØ>Ô£ŠÜ]«„Wé~ëy+Ø‘Gt]¿hµ›g'PUö\¯ø"­Ž?m×8Œ¤ð öì.ÿÙ‹’ÆcÏ¿/)ë>ý-XÙ•ÆñÍ ?ÌVž’GÔO‡G¿?G §ʯT›YèÍÊÑa|o.èZûÙqDNd—‰—†QF‘®—‚¯Sm YŽ]ªOÑD|Ó‡ý#š‘#Èš(ùÐÇ@ÅÌš±æŸ˜hÞ©&TC§ž_–DøZlžý؆ÕYLg<Ë•G>î°¦ž&ÐaŒ¹c ªA¦hJB½áÏìœôó‰ú~` öSvOR6W"FÎhn†ˆÐŒTí¬ž¹ÿâ/þã¼òÀR¾ä ºFk‚Î'ªJ_æÎô‰Q W9Ïaµ±ýó“öqt ñÐ]ûB{ûñ´üÃÇ‚8 UÒ€N»ãm:éð¢röì_äjAü h“< vþ«Ö~“XÞ3¯ô‘šÎ3! $•4i¤#FÛ\2æ ‚kœ¶àL>úŠüóÛ|š]ç‚Ó9¢ò7œÏÀ1 bê›)ôAZ×ìÖ¢?á)æ.â"˜GÜCUÄd zN™½ó\º*:¯eAÔ* ’JÁXgtË<ºO=vÓ+î²›qÚr—ëØ­ÚžÊ 'ñÎY Ê—¼ñ~ðÂÿ¤k‡ânp÷›ÓÆÑóf´õ’7Ј÷fÇæ “[ɪËrÆz&ðôó×%b °çÈÒ(Hí°fSôïEmkžT9±ÆÖè _ê- äê»Io·ñ \†Î³ŽÓ,}࢞[’T/‘š]DŒù攞É:ÍÙÜn´Üo 3{äŽåVÜÄ–Lü…&ö‹LW•LÛÑÓöÍkÆÒºL4^{ïðä-ÞÝI’Më¨Ì÷¦†Ïô/›ª£Ž ޼{éG¿! ø­^ÜênCžN—Àú±_¦ýÁl’±mŸ—QV&êF‚–$?M8HÉV#BnÄémÆF•ÞL 3bÆcÇXßhì.Èëá­Dõ±›¶?v[µ<Ô­ïÆ¯D퉱Q¬V\(><ŽËmO]>”AZ0@W»ogÇqRõü+‹ìÒþQLsÚtv–-¹ö”âwqgÔ|¦Â+hSëØÌe¸«ç«8¼eæ,œµè¼Åªvýg×qàÞÜ`—Fó»ëÕ ³“Sìa¯Ìó"/z^Üwk­ªJ¬CF‰#†ý!’À먷xþü¿ß»§/J{vƒZMFõzlr’öO¡ÔA)ÂÊ_ÛÜ)mtãuèßôÒŒºW#êïvNܰȆÍ;ŸòRS°ð€£_)¨B‡’kàÝ¥§ûLŒ®œpßA.q¨ÖBó9Hž6Oš ¾í>hžb„¥c`#-WÀ<óFëÉ©eçñ)9†N(–ØÉæ|Áü¬xEiˆ†ñ‚P‰ÒÍÁ¡9×0 Þ :“~ÜÕ6ÿVs¾Ë³˜ËWA_¡+øG1F.Uù¨+s‰ óƒ®ËOv5ºÔóã®EŸ/"ï.)*u¿ª¥¯Âå/Âe/¾»ö>›Ä~Þ`aËsoÄyeËï¾¾ø"~‡ú3ÿÚ+õ´-›?÷/û»¹PÊ®<­ôSÞv‹n:éÔÜDo1À­~µgzô¢aB¾”&ñŸF;Ì –Qç}œ”ܼKƒ­?ä6 7ëÇ© ƒúBÝPmT{uïôÈèÌ·“*ˆáX *{ÄgÀ½›“jDcŸý¦Ï–1?ßWÁq‹Jl¶ëëIu«æ«K 8æºÏÌ ÕcÆàJ†P«Ïú̦+>£ÀÒk~´PØI5"í} ÜâD\)ýÈ¥d-ô¥„‚«½š™°¹ÁLD CÅ/Nת ðÔ±§†d &Û\#ÌÌrÔ…B¢½ôݬH™‘2/IЬÊR ¬¬®áCÒ©4%S³„ùÖÑ94\!¯[èÕlbÐ]‡Ë˜Ï}Œ$]²0‘€”`ŸÆWH}Æ2/s¡—b»‘èÐŒE=ÐMȨ¯3p—waÊø‹gžÊÙ1²wúR ѧe†Ê¡…|Ð<žgŽžjY†e f¥,üñâú2‚º‰š°M"' û±ÐßhØþ,·¿ñÇå|Ü#¾˜HÓćqa45·í](Ëà <û\„„¼CR뀠‰ë9¾Vˆ\×_äÆš¤YU)M;[°… !ðÄ1”ªQïNŽ0 êiš¬Sk¼aÊÁX3X?—u„3î³õD,3/ºrtÜ^QóAn’Ü›Xb“ 3Å¡j€Tãl¯Õò)úéËÉâkj±¨<Œ:‘F+ŽàùV£þ¦ÑºíÞ›¢÷ >)V[,'‹Q,*£­8þAÔYFF'"Z·ýÀ{qСGÅŠ#%õiq2"…õit:â•—|âËáÓè”Äëw>™'Ê‘§ÍŸìcªnûD¤Ôo×øëb0»ØXI™È]-ž÷—Ó VfïøåËV»Ó8}ÌÞéùQ³ø}õ‹OÛ/šGÎÓÒYƒ»‰\µJÝ'R+¶rÈ0¹ã¡KòX|"Á ‡Ç…8™ÿ QÊ"ã ÆëRˆFÁ½hÀ%E³ÿº$è’Å+œ2yíž:úì*yûS¸v$ÂX~ª SST.^¿°Æn¶»ÆÙ¡­ànë÷²‰M¬K]8Ü;þöÞÞ!‘¹¶²{žä©IsŸ?‡Ý}Úlì½@PƪŸxíáN¬Òã­FéŽ4ZÞy®!hçh`æ ïLü¢k*°½HÂäj(ë¨àLM’›”PŠH»íïûIÀ“$£Em¸ÈÑ…ešŸ“Œ÷NòhtÏ%™‡Ãåô™‹àiÜ€ sÐ…ÿÂ~‘Ã/Á}€ÑÊÇ#Έ„…Õù‡]eÔµ‚X°AF¨ }Ta̳Y?Š â&rŽj˜àbÂ÷ñi,°N: å ºË¿wLjÙd ’ácuüàÁoùƒ`â°WU<5¨Ä=$x¡ ¦x:H©€³„ÄÉ$æÆš¤¢îX†sCûêáýŠGé&·€§@ÚxwyiÜpdÏUð¡ VöÕ] oS¼Uɹ´ýåÖÇ„ò9~P3Жô׎ç“Y±°—¦¯,ˆŒ°ùH Ç}¿g Å£×Ó}„y›ô§ ÅÎJôìE«“1§CGãÔG¼‚rsùÈwq䢜 {Û».È À=À8·Žöª]qƒyul>’J –û8ƒ]VB‹Ù»Þã Sãæ#¯JaFÞ˯¼oüq$B›Z—ξå˜o‡šé §ÌÂ>é—f2âÌ•²V¿ÿÎw2ëðœïíwãv¯qÖ¤¥_8«ÖS?йÐJ˜„ã§GÆ;‡Ý÷°3¶ðcœ0,eÔºÿèÓ×µ¢¶JôI²õõ£Zâî׿°Ñ¦TŽìYçt¹~ÌsCP©á+Ik윖ÒE+Õ”¨F~Žm#ÐäÖ×_Cí¶u´Ø¹Ëºìv;£ËK<ëÀö½–¤Ùzcw>ò¶ÅË–ÐEYØò>9uúñÉGݶ>rbް½v×iÛorÝÒ¦0¬Ì­ò GÎý ‚ÂB}TV‘šssëqe|:;7}R–dV·\àÕ=¼œ‰ßãô|-Wýu¿‡'ŽZQÒBÞae:IÕ=~¥’ ßö'£!ÞßuË*äìùJ}†ÎŽ®†ˆª<Ð ã&½•X"¨{Zd)ª¿‡Yò håèxX·|t-H¡:fšÇÒjd>»¬…@3Á}©zkuY½°¼­â<ñp³!Ðntâ>ZdGºx¾Ìžánà_¨t7 |“Jƒït²x`é‡[´Œž´öxŽ®ÕG Åšr¹¤*Ì/@³ ³åÈÓ^S¹º’ÀçN·|.ARUq¾¤ÉŽSt“%Õh’„è.¡C;§ºû›Îåd?0ý`‰8aÐé^šÜ¿? #5q'>4±œžÃ©à¾É4}þ­âx‹h/>"õA”ëû事׌éÞ ¥1½Sû÷áÅÉ;TOEù†ÙUú¢|emç3TçÉÏûë•(5L>„VâÔ0ù@jX9¾œ:§›$E Ë µ ½% ¸1JÕ“>Êq…¹¨˜üHÜÖ,®Wh²Îmð3»Ý‡Žé¦>Ô¸U¹Tœ£!n0ØÁAßu·ŒBµ#¿"徸µ²Œ<#ìÿ¿Á©"ÜnBKìö§·ÿ‡É$¼û§£”Uñ—¯Uÿ·º Õ¬Õ>%ݼÇtÓôë+ÀÃ-îw´×»Ä@‘¸²ïÒGQµùÌÛNþT~Ž›lMÌtMàèçt2pûÁ 7†øø±ú[­x ¨å´Û…»ýF G2€Cw`Ã5b¹"È粪ÅBn[P`þAóÎfhëà8:8„jˆNmãCÜÔ©×^øˆ©"ïÀ>óNN|×–ÑA6ßtRòÑFUÞÎÃÖY»sxüª³ù¨ÓØßw>¡ùçDðÁÿVõEm£.ïPr'+hÐADÈ¢îxy eX”…‚:JþöÏHY*Á:‡c¼ã$åC_3“'n0×#˜J4Tèu˜ð§ÑË 8–ǵäwšoÒ³ÿ…æòˆšw?@uf4hJ÷¦>YKªÞzC²Œîpîó$c(sçeã컊.‹8ç£ÅE©ä³æóÖœÿö‹yBY®Ê_‰èÒ‘*Ÿ ªVBu#3‹Š6åŽÆ69·ÚÍ—@…ÎÉG;+œ [~7VÒåú©MùxÌB`•Ûúª#˜®Öœ}#'ÉL½ Ùžã¥RZ=}Qõ_ùÕ“`/³éÔûÔçsŽØ=(Ÿ~Àeµßq¼f(U[á}»ÏšGû.‡oÞ'0§ª§Om]g/ZŽç¶/˜O\Ò`Ô=ÜŽC36^{.îî)ybûóa5+Ç%RŽ ñz=B½„O¨wò³6úã1 \úËÄOÄOï'ßÔœfÕEÅs ò*ÃY «âõ£Š¼•ŠÑòÒ=æò!ËkÍÚÚŽ=Tz^؉”)ÕS‡X‚ð×9läuÄï|x—#§î^`uöãÄ\'>u}Ñzþ¢m±•M¼85åºuíòè*ˆks‰6Uk©¶]ã…¤^û+G:vCI}é£PYb¾¤‹lŠ™Áð‹ø„R ñ°-Ìgél2 ˆ^€P¡ã„Z^\§žÊ—Î@œ•S  w% •eÎó{Q8/³·ë+ÙÙ‘u˜ÏGêä#)K±˜óä>°Nû½±:}ŒõxÌd¡Sò°B†7±u~*ù§‹¸KNf¯ÙýqÁIs«N¡o1Ï:_ÙT{1ëzló–N“´‘‘ÁÖä¼ „rçrž(vò°Úž­¯­—Ûë‰~D™L·¾þš<&ò€ä*|B: …XO^±In@ÍáÉO¨;xíèYk6×P5ïwklþ½AÄ‚§ˆÁÿaL›7_ÚÃ-Ôr±ÁÁfR‘ÛÖ“êY†²Ù5IqèçÇ.~’BÖ®¤ùh¸^ÃMR‡YÁáml?8œ¡©WÁÔB=ìŠ/Y…Ùí¦Šy›2Vƒ$–¤N¼ ‚eѪ'ÎT±/5 %~iÃ:bf4‚¹ËÆa¯ æR ¼œD]êÀaRqéú…H|yK¹wÍ<ï|ŒZ.ÐxBµÐ¡oœm?܃s¤ ¿ã«ÍôU þ(÷Œyäir&ºÝ‰DOãLjlêœPgÊ8º¤,ÇVEsÞÌORu&eÍ#ù«¢_P^«©ªWÜÔVFªÖÎkLÈáh4&²ŒrCnÔû‚b$¬¡ðú0½“îŽcjâôc؞Ğ*3lÃkU>€®¹š¨wô-%A³+HŒ VWi”1¹âÒ&ÕÄ‚ƒ ðÏl9ÍþTSvEäxoR=£^ºC¥ØÒX ½‡Å‘OõÑ5~ŒWÝà–^HUpiÁ¶¼f›ôe §\MPC³¢ !7Y ˜ ŒÎÙ™B0\Ä$¢ý…»¾¯DƒûÍ©¥(êÞSÚº­lH'‰ƒó´˜áÁyéàŠz “‘GŒ;é?v0Ï£±q—Ør`÷æ3p£[Àu«=,6fà]$¤ØçdR4É{+k Þýg…YiÇc`æ½GG…gÐkÌŸ8æcíù–G9XÁÅç…¶,Zx苇-`qÏñ°Ÿçc_§0'R¡<ÊcNœ‡ï‰RÙx‚Øßâ›’Ê&!ˆ(¨( ©ˆ½*™?‚Åe€•Ë/JC/J‚VÊÂVJ‚}ÊÂ}¼ç®±ÿæûèÇå¾4Þ $Õ}\ 1záeÀ°¿/y#.g1*èÅÄ¢ÊB&œçE©ÑF”…[xW$÷^“ëACߨíB¤7“™Òèˆà/œK•b‡D:ù/© õº©­;Y$úÓØMh“s$–©Šâ£BAã[é‡ÂSJÑd°W$¦azË(Çew2{BDŽ‚ú‘ÔwÒ†‹±uÖ–¼b—}BI¤° ×},rÈ`õ¡ÌÕEÚ×êLŒ %`¶6arC!p"ÎÎ ³¸b½`W4RP±|”Ë!ˆ£þÐ8܉cÛ5UoIBl²]RA^b-Dý±ºVÜ(‰ü8H9ž=&Y+fάÛ먓nØ5`͹™-·Nøäªº¥cÜ>ô;N}Ìšfl-ïn8Zòr?^þYÆ›WæqDØÃ+Âñ €µgË;çºU…¿9ò’“f)rR$—AS1ß%œf¨Ó Ÿ™(¿ÉKãÓð¹J2Ûø5”¢ÝSË!¸çŽg/‚¥o²´§©¤0õkˆžWEŒúuÖësrÃËÑ`0ºÉ5è›féH¤˜­Hü8Røf6µù}iÞQ´ã,´ªD`àXtI]—“ázˆ;«-¬'Çê½V7yaM}6;¬É4LÙ™Y{4œDYACsU%,^¢ÙÜAm˜ÚÔÖ\HA†ŽDŒ¸òµ@( ÃÏÌÛ¢”.+HwD2ªñ6NEJ¶ƒ!§ðF"©;<¹‡îĬ õfèJ°~™²IŠMÔñœ·6³XÙÛùß;ËPöùœ6Y0Ûѵøˆeœ·”¶„:ÝîF϶[ ”Œ¸…J©DXÓÜ‚CŸ¤Ì︗˜,˜‡(£Âå_ß©v›©kÎ2F³v•5(6蟞ެ€†AТƒ$4%)1€Z—©)8öü:Ž!Ƶð•9Œò-Á8–‚²Ûr—x«ô¢qÚ*>ööàq¤¸/9_d/¼ˆT/_VØ—† /"Ÿ|t•ã~2 •³—¯ráÁ{“K¯&Öcóïdñq9ÜW~Zžð£ò·a Â—‘÷ªvv´±ô™¼$¸ò•b'1sAÖDç ˆÎмž·»$_0Œì”ðy!ÃV¬< qûcîWí§c—aG{“EXÝÏÙ‘J°J'}sâ%`8vNÕ£æ"I›MÈKű *sÉðᚪy­®ÁÅDÏØBj´é.e¸ž Ô ¦lŠÛ´¹nŸ‹Ü“Iíß‘g{±r±‡nBi¿ÊÈã½’Ò%Ïm²u·¬Ÿn=I&(ö)4G¹pHhz26CõjByÕÔ#êebˆïïT¦Æ½è-1²jŸ+5ŒÌ4`dv‚óZίx}±wÒÕi}ë‰Xêx²ÔhŽnAaÃÈØË˜q>ù®Ùvl ²õéPSO…³Óì'q75Z½éü#®%á¢ÄuXŒšD׉4@êšµÏÒ(‹ìFËä$º0Ñ!z:áØ /Ž¡îì½ ‰íìD Ø:±»[çÇ Âä©{83¦.£pз9-æŒÏ  ñ@©$iÌ»kÒ ­ ÁçÛ䦶ý«;y/ 5˜ŽÌìDE¨Csë¸ÆVí©î¦åp­Ô¤”öÙ¤ÒÁãVA»ç%–ŽNaAÂ"-œ¯1MœÏçÎWÆQGï¡îšCåçÎù0åšÀ˜Ô>Þ¤Ç&ÙOw\Ђýy½v’®âö-«´˜OÚ”6‹¯ ‹Œ(b_*1–Ï¢&­2#eh·SÞ݇Z1¼z‘Ô™rÛÝWBŠÜlIe6Î2³_ÜWj_-Ø—Šü ‡¬ölÌ,ÿܵ..sÌ.XbÜ ÌKŒÄMx×ÕŠZ&ˌˡ½õÎ}[vÆ®#$ç=%a§8󜂬8ឺ!æ—Äoî ‰i=b*†ME‰‚-(tüîÆ[ùŠ–O>#Žó(s«•+KÌJÉVZÚâs&ø§ù8í’ô › m¶khâè#óÔ¹«AÓbyhÀºÔƖ΢4éõ/M“lzƒ¾[¬,¢ÖH«f’òYÁ€¸òÄ‚»§3Z³!±{§‡pþg†u«Ù6UØqÃýŠå•¨EP°sL.#†0gÏA1®*cAÖÞ.ÊOÅSækéÔ*GÞþ/ìåê=§/j¡© »UôYô ÒZåŒu8' ew‘%Íg{û­½¡¸éÐÂ$GÏÎN¨6²0[ßì§»èçŽæ/ࢲ!Žop+(K!iEF…mÆ»ñîà@!‰ŠÃ}ì ñÖúгŸ~ˆi»Im<èù›Ñ¤ÿw„.çýœ…!­ó7#–`«h°CÙÛªí˜þŸ?ØØhl¸Ú:[°¹éÜ|ôx£Žÿ>Þh–|à×¼…žæküK£Nÿnð¿_”ÔðЫá!ÖÑ$Ï–.Ç”/‰Ù^ž¶¶8kÅ­€šp£‚眯»‘vO=×J{=:<ˆÍïKŽìAIù½Ó?ç7ÿ´cÜ<üžbÌ_…”öÏ;ÿNª8æ%&BÉпûŽWóp©Ó嬨'=\6Y5Þ_UåA×›Ùvç{š¨\“Õ’78ƒCfY€š~‘‘.ù¹—dÓn!©™Ô$^Yp˜¼¬\U:n ‚RBT$›“ãc% Ÿ|Ò8jŒšs?@Êq˜wìþ/X  Ø2”]![zý«>¢¤9Ð1ÆÈÚû#‹Û¼ÊGI'÷S4oôl1f,(ºH}’qFZüš#DJ·M®…äåwÈÉJPj‡=ŠŽK'è‰I“­º¨ ™rÑ¢‘ºâ©S¥ÒöUŒŒ} ˆø¼Dv¤O|ùq®˜û]\ öäóÒ©ûOÊ.!sÇy·|y§Œ2Np›Ö)I¯Ò~TyŠŒéBd.Ê^EU%,ÔFˆéÛ¤Oe¯J´tø*ª‘“êJß…;ñ Q'Õ¥|HF1òÐ ¡)÷ˆ.÷Í(“ûæK~Ÿšgüs¥¿ùLþÞñSsŸL Œz»ŽKË‚ ~ yð¡ëÍUd[?±\ŸÅضYÄÀj©2Ÿ°?­ÐA©L,ËÂ9"á}ÀÿP±p®˜ñ9Þ#~ÌᎠ‰ &þ¡g.ç9o%?öÄE\ð>H*o!Rû§ªºÌ¡ïƒÄ›òfÊšøTõÇ=?Dt™3†hýV¹Ýy!ߺUÊŸeÓµ‹Ã¥š{‡³³má@¤É Bk ²w+ˆ»w¬;a„HaðŽµˆ[‘§–Ð ‹§þ5ßM‘Öö ž?%´# ZA1L9Kçä9æ83¥R•q[áÞ[Í¡1=×H[ÿpT¨Þh7° á¯\ “WÏ%›èüˆ“'M1̨*a,\rªŒvÉ$"—07TQ‚Ø­ñÖqeÉ„o&©Œ2 ¦h[Q´E™·xì¬ÁeüE´ *]R›Ä“Ï K93 â9ßméð–ÞACÐH˜Ÿ< ãíDPdnqF${Ñ8CWuFc³¸ø”®bñ—“ßñ_8ÔµšBPâ åŽâ¢5qœ}eÑ|Äm´*{;k˜d2‘êûä:iÜ"s€ëéÓáƒÕèÖÇ£ÜMöã„e&á «v$ië·ÉÆöí˜l×å±L«ãD° )œ¢„á~Çõ\´ŸAµZXë ?ÂŽ°XÍcT®F° /Gû‡pnqSÃNòó…†íìÔlÄר‡§,Ä{Q&¯ÖÑóC玆kHó#9Ï4H&澤ӡ<8á— h1ûâKçîâþ7þK"‚°w^²ðOйìã>ç)†N ÊüëÏï'»½?ñà(ÏRÇ?‘(¨ëtP˜D(9L’l2¡CA¡Ïo¾4ßÿ¸Vs’ìÌsÆ#ßÚKÏi‘=æÚºbxÔ]±è #q®}Î*›Èµj™þ”A°)ÐãºÝBª0÷Ƹc„K“î$º‚LHÄža$õ>÷ áýz‘¢~r%±÷ÅãßÈ«%æLÃw;ÞkGvÔ”’üë‘ßÓKÙôAr¬©‰"¼Bª÷|Qµ} Ÿô±±øs,·"²õÑw—^ÒFô]Ö[k ÿyìž«kØÞÙ´Vù`ëë:Úדoj;‘ºþFu]^~phÖ¼Ôj;<ëT’y?¢)p8y^%ÛÅ%; 1áÁ2\¤w°.M8‰lhêİeï‡ÂyÖ-?H6£td¾w+ðš;œŸ5íÓÞÍÍI ŒçºÔæD¿ç̧šJ…˜þqšJ©oŒ.”%#.“OŒŽëÍuÕJýî=…—€á°¾^V¼Øc ØÃ­äËA9G—U‡ý«Edeäò‘C e9ÂÑ|‹Î¤cJp˜kämr1©Ë•֭&®O)BñsÆÑM1Í£&û¤¨CJLUi•¤'Êoœd媬¢}©m?ŸNf]v4ÌMò©N«à4^}DYØ+ ×´í.x ¥Ú-dÝø¼D’›[ßÐd\ÂguG&?éÍ(?ˉ4{â6*îµ¹õ†!™1âè\ÂËÐÇ€ÑÙöõ†„¢‹}OX}gk~x|8Y”«‰÷N1ÕëLé;h1x‡îÜ-{é²¾Ä÷ÜØJV‹¾øC¡»åQÇa÷ òàÂOí®r3EÙ}ù%ý¡ãXÍ©{ÏÿØÒ²CpÓ«7œ¦@×–laÓ¹Èò6sù˦ðfWæjÄôÀÅ—}¯ùs\<[Ž Ód«Ýú± Wéç •D.f¼o>@}Ÿ'?ë•4ÈŽŠ"Ò’ú 'ÎooÖE8cXŠëtjJïš3Dº‹>VÌÏŠûÇ€~—~;@Þ.´ö°OÐ ˆ•;ÄÌññr×ë{V(¸äzD5tÐ*ˆDDQº¥·€¦…‚=9ž2®DºÅF*ÅŠPDŽù%|k¶¦P`šÂZ Õñ©)™žä)Úð_­2j†]ãí†$za¸Ž^GÅ©|Ô>à+]?éŽ~²w¢ŸT(Ëù°gñ ÍÂ(üFEbºª^'kÕê|U¥ÔÍb“„½+p1< rÒ×Y!oÝO*´µ2 ¸¸BE¨•º§0°y–ýJQ<P9׊æmÆlš/cwi±—H¡¿‹šÕf‡­£fͪªñÂ"V £oy)›:¹†íÞ§/I®)ÓÑù¼¢f+¦Z-ÕÔ ÙÚä¿Þ[:Ö<ÔŒÌPœ1/ÕDš‹ÈéØè ƒ$Ì \&¨nÄþ•ÈïPJb,…&±é[‚aÀÅÄ2üp‚ìjŒfùŒŽ7ZÅ¥²Ø!ñ»4v7ÇaH!)Ô†¶Â›'Ê ¶ëÚs„£dž,epÆDäªÜ¤ã@êawx}ò‘å€-¤"¸Ó¬ˆ†ËÔì{1¢‰ÒEF‘^ãlBäo)”€jg(Ý"!TÙi~×0WEòÓ«›×£ æÞA–íÏ¿£µº¦XD ï&:?;æ×öñÚ¦ýûÂùÛ¤8!j‹ö¥ Ù ÅÍŸÓgö¶¯ÂÎøÁƒ:ü×øã^]Û~GZ{×äø.p,SIDײ*ZÅ-Tñýÿ¾cK³ ‡oêB!×î ØØ-6ö®ÆxJ,`˜“—d)¹‘dSÁgYa3”U°þíòRÌÉ+ô»&Y”:5ãòæD}„¨b­ ò’¾O” ·ÌÖWQL~gí vè¸×ÉlšæGVøºsô²o×F%„wsT›È)pÙèÕÖ6UJé”å7_mË‹­’o›oßn>Úæ_•}ûpK«ÿ:øöÑWòí£²oAÒ—"ßDм÷æµK’WÚæVIH‘¦¶îë`6Ö|Í:ð V L7cÉô„t6’y2Íè]Øš]×U# øæaÏ@ŒP¯›[ßĶ–[:…žÂþC eÀˆˆº2ÞÕ QOr¼Hƒç\ƒ­tÁ5È”žÁÝ…~]î?¦Ú‘6Þ³1ªn:äZ·îdyšrÙíJ¶b˜²ÚÎB×<;¿ÿNÁÌ 4>ç{û½ÆYó …Qð„$ )rWã 5 ë2“ÄŠÛ/š§X{®»Àçk2°æv, :ÆØxÁÎ"m¿sºÊá6‹œóêÁZ_¸Þ-ì6ZñÊ·5”©q¶×j©·))>K³1Ü¿Ü!oô:½IÇЧûÉ…?*ÎH+×8ÂÄ j²ûpž®éfæhì!j[å°Zü`‚ʶSl§³RbFÓy;§.õWŽÏLt1K5]…u³rSŽþ·pz´¢÷&…à©Ã'±èa)iÝ…o*°K ÇhWT™õt›dÿ3ë#ìú€ÛŽlAzÄî KÕ)ªP™Ëõmô] [+ˆ2ÂiÅvX › §ÅÞa ÖRNø¢ CÈ[S’µž0 “Ëk˜¹¹»/ÓÕôKÉ ¼Ý¯¸s.FVÆSIur¼÷ÕŒŽx[ec­FŽ©éS"ºw RÓðñÒ5räÁ×à’H´¥úwݬË)’/ ²X1–_Pü•Ó¾­SÚÆ‡^óÉïNw66ÏÎêi) J¸:n)sP" +q«vv.dƸäï^Qí“ ]ôžíŠ?6øL2 i×Þ[¡œÔ*¢pe‰e³‹_¥›» ¼¶JÌ&Ó¤]§·.YÕ‡÷·X I»Q¬NÙŒê*gÜ©QÒö‹L°üGh)ÆÍfòeoÑ:¹µ9ЂF}oÍ ‘]`þ¸I&}I^H;ñ5Døz ÆC(ö²«‘ÂÒ¥Ý7»Bö‡õ ÇÓ’**iøºò…%“~%GL†”¢T5Å úްÊþ5j+é0ÜþE04âU0¼åŠdjtä̈˜ãÌ©Ü þÅ‘UÌÈx*RÀ„Ƀ#-Üÿpv}aœ÷Ë”/í½æË“ö¢—xÑ8“…a½œ´ŠÙßÓѸƒ€öÑ1éeã`ö^4;¶vÚÜÞt’Mk{ÆÒ øÕlüpÓ˜_$ò‡Û›’°S jÁ´9zQ?,qTip *Þ&'oúƒþ8y‘þ=ÐÞãIÿŠ7NZÌ¤ïÆ·Fñzóoûfmkcs+9öI?<¥¡î¥×“~ïÊÍŽz”Ý”U5<‚j¶¾*­¦²ö)*§Y¯œ  hÆÃ9&uà0ÉG³‰¨š/`äLø2¹Îë,…&¬Z”¡œ.†BVmŠü”$Cî9.³0E󾤆Áø› ®š%”Ý^‘ž]ºCsFæH ï©(´8Qu×Ì$pzý®ã ûÏd rfÚö³^R`ô&ëe=AU‚ í‰XDc‘NH—>¨3‰ßuÉŽšê‚}‰Ü ©I®Qtí§ƒÜλ¬v‡aFw”õc:K†(3Ë™)Ù|h^5eiU¬ÙEª¾øÓQæ.8Ù°7B|4L€<‹\0ψ =èñÛ¬çºE²¿ÐèrzƒûBCpN>íãî“ÓJ{ÈŒªý¢u–œ´_5€ìÀï'§Çß·ö›ûɳ“ö‹f²w|òãiëù‹vòâøp¿yz–4Žö„}>m=;oÕÆ|¹RÁ£“æ'§ ´%ǧIëåÉa *ƒÚOGíV󬞴ŽöÏ÷[GÏë T€™¸’ÃÖËVеëØh¥øYr|¼lžWuÔnEbOBª¶6ì+»¨cZ³äg8Ü"®:o›?´›Gp>/¼y~xü¬qø;}—ÞÂT4Oáuá‰ÂP_Éwǰ'_u›GÏÛ/ŠßŸ6aïÑîìþXV‘˜Üá_ÇÀ}žê$‘×>Þ'ˆ?™xA–>™¢§’ùù`­5¦K"sÙòsãâ˜þÛoHî·P0Üž õ×÷.Ø¿îçV±¾Êð‹èLEÛÈ:nÍ É¼f6Ìrc¡ámªê}ÅGGu•г€ Qí¹Žá8týö²tÀ÷œä,ø·ßŠ]±˜MâkDsÕÏÆ½”¬ýzŽ|u0LKÅAQ‰ÖS 9’‰üzÙ4뢖Çz:å(ÞÃB? }’*»¶Q§Qu1žN0õ{áÛ`(ÆMÇŒ«*£’JpçÀl ,Œ5¹N¼?ªE¹“˜+NüºGã’ÂI•¬‚ï§Ššç£•lPº˜Y·káã„Ò$ž4štNçDzräjº¨mª"ÓnKœ“#Ö0°>È ö\åÙòžñØ‘$7(:ZMØm¶bœpóP–ŒÄúM úSô–²Ž~Ýäf@­îT*뇟HÃôûfÿ&>R£ç\¡éÊv‚Ÿ@•ÚÙaãìjÈÝÑ…Yža/-ß =! —-U‘õÛÓz“&ÚØ?Wi`R1q¸¯ÄT{ß5Ûa×y³&Ææ-Q‹›×kk;‹ZÛ;>„K†w¶ü2§òÒZ0/9IµžE¦yÑT6¢¶skúd}}ï<¯fC/›L³+ðpPl¾,³U»ov*¥c²ñ¼<²°û¤èã¡n ŠÎ‹fÛ%ã¿ÅÆaЉÅ2ùä±uìgÕft(ÉS’:|9Ôª÷é`ËiNîcVŸûfrL®*ø½àßX—Ç@H&iøáš¼CÔ)4dÇÌ®iÅs Ò¹„ÑØdªsûM.ZF.7t]¡ÇÍ…¦LÂ|КJ,ÔØUkŽ9˜g†¨p¹Ç¸ƒöWiží5NÌñŽž™QˆÃôF7ÃÆ¶Í~:uC1}wh¬s±½\¹·K–kr¹V>ægÒq†]Ç\A,įÿC7¢¥wn†Æ’¯®¶íò!gðóÕäpž²H_Å?ÉêòÔXÁá×Ê[àšV½¯–W„/¼@iÕERW'èdåéÊ:ÂOHªã?hëà µq 8ËóÿöÛ{u"$¾sò¢K—GÖŒ[W6AÕˆÉQÇ8tJ ÞÅé%« X¿ Õ5*âR„ª')NËúúSäxþ ~Y*µ) |ÂêÄå¿xÿE4zÆ_… Š€ÏX—|nnAm.èÔDVŽL’õY›ÙG ý/Ú Â*àû—­3”ßðP熶€þ&tŠKC+Þ®/UGà¤Ëyÿñ"À÷¼tH[SøùDa–ÓNƒéÇfëîÖìO‰×ÖÜàñŽÛG]’ °Í™m”7‰ž½ëž¬ %ñ¨ñ²IbdÈ>ÿi,0:VñÈ ê÷ m<#1cµ2Ê]‰Ž]F2Õ^Ù~„X§äžãóÇÊa§¼†(; ‘ñXeº‹lØ”Ë#_ZÁ:ø9_ÕåØàDÃøÆôboWeLÈ—3¹ÎlÝÙìeEžîJsµÂî$·® &”怎2PÄêiîs˜À+ƒ‚­¤‹Sè‚ðå+-ÅÕF¼ƒ00„€ÎÖ+Jjû×x­¤·-+0QŠ«S ¤·z-©xÉù/KÌT«÷¤ !$¾­w ª’ÿÅz£«~·‚ØÀ“>ïÚdè·ëRÑŸæÙàr.HŸcŠ÷·eë´ÛˆÄJ¤’˺,æóf9¸j—¸)ásŠ˜ýúð%âÉ·>l“Þû3ëŽ;G= ˆE ÿ¼‚s ok?á_k¡Cãn€Û Ÿ2'y„×½ãÓ¦—p˜d$þõàøôUƒ1ÔÚͳvÕaûj®qW‚,ñ¿œ¦…o‹ái„8.ЇìĘk"º(0–‘¿Xê„8ÿ->Ý8?HÒ¶¾þšx~öŠâÓõ>Àè[ú“`àÜÐÛßÂù°®?{´õiŠ\B°í5sŸ&9­ÅÖ™Í9É#tùR"ÔX¹Ö "‹T^¬,~ã1 VáReעȥŸàf„Ÿ=ò¾™À­e"Òr¿Ä‡ÝŒFÕê÷Е«st|Ô,¹Ê—_bæ¡­zò¨OüÛÃãWÍÓz›ÿ7‡Mv[_Ðè)ªµá_ç“$ùªRÁ …DƒÕ^Æg:ê ß»c°Í/Kê}wûw¦ÃtIpl aUÁëŒQKÓŒwЋl0æKïj†,oF7°‰Ð»LÕDdåú5Ü2d B߉YUŠ˜o ‚•®™ECÿ¨sŽî©K%¹p®ìaÃ_¢“ä`À“”çÃ¥!^pxoÖ“&ˆQhKlnü¨È`†V6æx/³µR9áྠï,1’3 tœÎ€ó“4J°p¥ÙD?b§X£ÎÔÆa.k”—4¨bR”(NtŒ½Í%¯b%RÚJ3sX;?#¤Eúö:–¯ u®ôkßYê%þU©¸™€Ý¢ÙÝé7Ó_a‡¤E u•1jQ¯íw¹£ýáå€Ö°jK!õDG¨P‘Yž>MÎ$`Ó8 E G˜þhFHÑ]à!T($"Þ1y:%Y­x u´êÎ÷üsÈÖ+>ðÝ*|æGP7aÉÙƒ›¬Ò?õ$®J ø>no³]áØnì”1(Ê_Ú¨S£áv{ wÌO^K) ·î™"{y†»7|æ‘$z‚ªžËžP=‹ó öaÑŠ4ër6`n°yKTjø6ôAâÝ–Qâ–æä,éýüRTñöJÑ‚m0ègoMjgX}Žü…­›uß ñ ÕÃ3Èx"fÛXØPA|¨ˆð ÇþK§áôª#ÈJbJaçÞì‹w5!DLRBˆ€íJQ¬oû¬mYM.niOæL$)Ø`4eÔ«Kñ1ÝM&³²5-M —ˆ°Wé OÃŬ?èåu×á•6<Ï9'ä­V9Ùi­ZØ45t5Õ×2Rç3IÌ몼àìfï{ªuNÌŒ„HG5‚± i‰^PÞFHkLEÀéEEmý+ªˆ¥“‡êF:÷Ê¿—ùb:’¹~˜¶¡rOKÒyÍá@¶àVö8ªË9`,¤‚`Cçj~=ĘzÈ:T¦•x'¢Csïï`žp>ç4Is`uKszè°JËŽ7ìªjÃ.ëJØõy“¾tÇ#¼ÞM´éeØ}Ö’½§ywzO‰Û]­É#ÖxJœµå<¢0?…ß`šòÄ^NEIø vÊ“‚GtcUŒìÛ:Ú#Ù‹èˆD¼8AwŠøµ›[]©Íô!*M¿qÄé2áy7"<«è]õ–ô[.8K¶ù—AMu§Ý7Ž7ŠV‹z¾ãýcÌt +ÆF T]t§ëëëG¥kꘉ·•äA…{#(¦ïXU}ŽÇȧ3S|ƒ>^0§Ó/D½‡!R5+5ZtÒc:\{¯"ÒŽ  GÚë™.°Ž/­j*Iku‹…EÕA®ÐSS9ÕÒÌó¿gSÉãz•¢j3¤fä3ñææ š*kÏ&¿ösL:Aì-†](8GÓ öVÆh»ßWB(\qUÀR„ɪ\:&Žñás‰äK˜n‚‘§ß·éW`ƒ²‰Õ ×~ê¾ p¾Þüõq­æ*Ón ;`ãR±’ׯh;÷ˆ ZŠšð`‘·ð)3äøЉ(äi vEøø&¦"O!­Ü3B,LÃ#8µ^g×ÝñmU9dl¤žìo=ûN•>Vd]å6v•X؇Xk²æ½0KlÛrQk~2½æŽ>5áj¤—A02aQk÷*›ØºdGÉ-ïŒ-(ƒk»½èŠÝ<žqs¹N1ʤ®Vêa¤”0q™ u{„¸pjŸÓŠkü»cÃöÖ|YÛÂºŠ´dV?®ÕœêMºs–Á[mHÚ–¤@,:żzèUí#QM‚1tÄeH"œ7“”±é„MÖŒ °Ê©&iJ° Åœª±…5åtY†M þ`XoEâJÓ!ßX»©Ô‡×8핟+I5È -ÛkT!ZEœ0²\PöçóHi¨Ù¬ÓÌâ#‡]ÓñTøbàÓ3<ˆÐH`·èÐŒdA òi–öŠa#Aõ¹€\½UýôÍ$Ë´ô?¾&›~¾Í=¬s¯€Èô§ƒÌF1MÀHVm[8æù€DDz+ÿßIÐw­=ÎwÕÕ’=TsÌHnKu¿›>Dý¼·Š>†ê‘n~µ†5ð¯%=éôÒiÓH2ƒ0²„ŽÇË09êní0ê֛͎jJÙ;Lè&?q[¢¤»pªÁ¯éÐ;ÝÅ ü¶ i uÁoŠú «ü(¾›™ñp 9Ô{²å«Á-]sÍ$¥V’uïØë­ŒKÆŠÏ¢m(q}Jé³bS€Ïe&¹.§é¦Ô!x)|pT%Ie´wy$5ÜGÔ÷2gвܾͥRòåS§?þ&ª—5ÇdÁ¹×—Õ8K lÄÝäu÷6W=âïÂa…_C7Ž,rÿ`€ßÓÚ‰¥ºÕ Å^ÞÌ`jö‡lcT=Þ€u'&éUF¼×apqWþ›7Ò×í§DåÝIz}!nY‘Mþ›¯Wï¾qõÙ;¡Ú ® àˆ&1Å£ŽR󓈪œ—ëÅb¨B¹6HîñùbÃåB‘"‹+ß±ôB¬dn.= õ6*ðÞøûš}O~?Êì3Ä<¼cgyÑws”åà&½EõóˆfW¹ó0‰äzQéB¨NPÑMÆvž”AXÑ´ÓÏ»¸À´â1£7Å+”B 9Ï Ç_ür”k# Á›l0X#5;úñ“} 0ð]DfðÛm…±Oè¯|½"¦%d9ÙAà`V67ø aÀäÃðßý©Ø¸Áf\Î^!0÷Š[Nƒ.£Þ9O¯ÓwóFöA—àðuiØ*´Ó_ £c(Ølø6e¼ rHÜõƒ·)ùõ鮿!íO­ÈB»ÉéZ²ë‰À¾h# 9¼·–¾+h/Ëí=!­Õ]ú´Ì1ÿ†Ð ‚ }¡­ær·ä“]íMÍóY”×OÝÙ)øÑúì\Ä •ÿ°`G/Go3ÁY²¡ßqÓÖñ¯k$’“œ&ÔZeïÆéPè覅è*q ÕT]~AW»,/•ˆÅ|—y4ÃL…]|󃸡#—äÞGÇX¼ åØNþ[¾øoT(¢áQ•¯ÞK!빑¬ÞÏ'òbOÇã&w í'äp•hiÔNΚS¢´GcQÚtÓÆ’2ãøM =5PÐ)çÀa2a,O“7¶T-§Qd^ÊÿlžwÚMÌÑh7÷ËCIùg1x~bFÿÆŸ(.½2?esI;®±‚ˆÀW¹Xw'Sµa%‰(/ë…ÜôåÌW‡ ýá¿5ƒ-Í#‘òp$©ûîb0êþʉƒs æª$j¥ '!åi××LÉ4È&2[î[ÓéI0evÆ¢ÅEÔ1?fjƳi àï9_Ø~Ùæ¸æ hö_JM^ ÿ#Ç;yÑå´×i/‹ÜÁOàü쥡·?Å€«¨jô½ÂÔ€36ü[Å=Ä×iw"þþòMbGíáÜ\Ž&¬J`g.t5ñÿxXQ2fº)'´ésÿú:ëõašÐÙþþ5Ë0P®ÓîìïK•ôœÐõÞ{ÑÜûîeóåÞÉU´Ÿ×e¢;5 è’ßp~®8!òà¯×ÝŽÁ9“¯v´$^Úñ¬WÓÇ Vg~ç;Ë©'rp°#£Ð–^,¶Jñên6NŸ7e©vl·>¶7ÚöbïM7MÐ+—d—è·á~6gtU؃¡ïU¹KiÍ >:>=>~étÉN§òe%£òsh{^>ÂèDu#{ômVƒÌËÛÅQå83Rsr>š3áÎì®-±*ïuWŠø¾Q[xàèfñuÈáµ(êgý)_¯{ö·—Ô2¹\‰ÞÑ©ÁýFYúJØv%à QêÀQõзy(N¹¢¨B.¯Bö?VÖ=s§ØÄT9±!hÖÇ¥ŸG9òpÐU `gMÙËzBV¼Á`‰ÓÞuN»{Hµ.»ä…ï@þÖwÒžK&ÂsEüSž)êÙÇœ§âQðg'r Âó@tÅ÷›óÃvŒ¾ÏÙ¿I;fÜ»É"çonÀÝ+õD ½ÜOœè|`evA:áÜNsýî•݇ÓßÍXLçŸöÝÏFÍ»ý~3¿ÉÕÇ3û ®½ù·^äÒ ö•)ëŸïé·÷e;j¯qxx|Þ®~Ì^rÝâkío¤ùËä.¨»>²ë­MÙOihˆóóA5ˆÊ&Üv.Š ZMœJâ9wÌbø7QþNå ½%ߘBœGÝhPrèß2# V+œ¸g 'ŒQx«“®ü~ó°ñcsÿàøt¯I^˜þe¿.ÒIŽJ\’X× w†KüÖ8¾Ç‘­0fÅŸÞª·kÝ/¼ÃᱜņŸ"ñw‰qp›D™TŸj{Cã ±ÝdN„N¡.7Ä­r-Ÿ‚Ý]ÈðO?5î•xïŒÖ¿½Â™ Ô7ŠÝ.çÖï‘s…=X¼ì^?ܲ»…²;AGöÒIvæGly‘ýô,Jì–;5æÆÕß ÷/;¾M²/Xÿoô7xžDŠüá/ä#rèèIgïø‘[ÇG•xʈQ¢€ð¼ª„rV¼ýëNhÝš šŒ£èa%Īý«rß«.bõZ~óºäè ¼nMÂ~‰Ë“ê=¢«¢,°@WìÒ„sãÀ]7¿C(êÎó+e}t,Ë?îTŠÃUŸ÷!gYŸ&Ayëp©¼@.âÝÀ¿áêSp×m|¤Ìˆq@×Íô’Ðàa”’÷€*b1¥Þ˜:7ûcj 1a‚«JåŒQ‡Ñ‚ÃÇÊÎŒ·@˜•êÓ[?”’‰_­QªT¼ñÔnJfèM=¹Œ.°„æ™îÛ¢¯dÿòÖ’¡âfv<áÙæ–dÜ×4·^_ro8›ž 1FS›¼‰™°¹M)8“œRŒ  ¸oo‡]‹ùÏ;ý"C ˜6a "V–kæ£}5¼U‰‘€k¥Å7!¼;‡˜0µÝ^{Ê~þ ¦§÷|\½£c¢*âVÁ㡎3GV;oÝ>íå%Fð4“!oÿ á\¨“’žòrö.n-QB÷ìÇTÑ!ù“Ó&ü×ë¦; ,w~p~´g|…"ÔmŠq5ʪh ±¿þÞ‰,pÒÏÓ±/\ý´'™!‰)CÛO8´[C"ÝK•¤YºÄÙ?1!6¡_ ÝnU”cô_5Å ¤¢-pjXkX„3Ùc ¦Ÿ¸`èuQ‹ó4œU’ª¨Ššï3—š¯kúðA¼U$|ˆÝ$˜BŽŌZ\hžs,‘ûø‚t³ò&KǨ_¸V@.žœZ¡FÙ0Ÿ1â:%œ$b>$ÉOÚ“ M™¶âjˆ+È«ÆéQëèù6‰Ò™Ò¼Ë…–ZCf‚âܘ£• î]©¨)EYb Iµ!Ÿ«F®Ãë_­¡gÊh@Fk< #äÈ@f7¦©¬¸¤ˆÓ‡]¡l8#™J¦­õ ¹y“bÂ@fyeu¢h|–¹ˆðÄÂ\DÇ‘\É/xnô÷u¤4Ó%×ÓrZÙ·&r\¦)…i.0¸2ùÛíb¹@¥YÓºÍGTà裚Bª8Ô*Êztðœt¯°Ê:Üû:,ãÔ­vžqü²ùòøôG¡-Æ_¥œ‘Cê8…ã¶ófâ©»ƒE;G¬3`Ø<¢ü6ë’.Xºÿf;þÍOPD\²ªÕh5¬àû´«+î8‘*Üë¶.RÍè²ö¸®ªr¾¯$[«4±«Hþ ¼cŒª•ÌÃÚS¤šD4s£Y\X²Côu×DÁ6‰®´zã\N0ÔŠ,•±ù‚RÌ3ŵ)•K¸šeαwO‹¦#¼KžQ¢c±}õz2b­Ò¿ØhT7j„<Û÷Çɺ‚Ó 6Û)gpSÈ hb*úl×nr†&‰ÜoΦ…•ö (ÑÏèÿgq~GWqò".Œº/< {±N9ØF‚a‡4Þð¡ {w´è5ñåfhFÿoÕRk[ôTå,ö(ü¥“Ûe@‰ ä6T£±¥C&D‹<ƒÔÔ&z …q‡b<ã—Z¼’û­ ö‰Gœ€Ž„®ûêâœJ;,xŽ Rxàrhà³TT!ŽßºŽ˜ƒ ¯%¦ëÚ ¥®ˆVÖºbíÚýÉ™{ÌÙݱ÷”×–=Z/tiTôæ—•QR{“?Û:GOœ''™!Ñ×|´%HòWËÜLö9Æbº¨ì[SÙ91±0[ÌÈdÔSÕ¢‚W”U/E•J»²Ÿ¿“ô êË}»åõ@…ÓD‚}©:vÉD’[õ†îÈäîCKþ½vì÷ßÝ¿ž$EEˆ³Úæ)ð¢W‹,r‰#d—’Q4,ù§ýJ²édt…á;uÞÏó–X:2ß¹P¬"n‹Uõ¿×nä7ý))ÞQð¬3'†9¦]ŸXmü%°³ð§)Üþ£ñ›~—2Ä®œH_V¨ÐôlÂö8g.YOˆ–ÚÞÛ”’+ÔI%hLv´ö¨y6f©ášóF—¨ 2F¬|èøåhÕî¹ËùÔú0l¾öwN¡Ý]w™[q¿qj —VEW¬A¾©ÕбÂ%h6‘½CJæ£Æagÿü„ŽW)gRãvØÚŽûnÓ}'qÀtëΆ¾ÖÈdÏ@Há!£e?p¦ÛIp ÅÑžä(SA(sðxƒ‘â6#½¼çH¾ëv˜ ¸L˜{ÖÚÇ@…Ž~TO½²ÉÂ*1w‚SD ’‰ÄrL«Âf áP–¢¶ƒÜ FYÍ*2:ÇÙU_˜>B¾Gõ˜2Ù,t˜zß cÈrF ò9¼B\J©]Î]Ùzþ?EÒŒÆì®]ÕŽ‘¿­Ï·’5¢)Ó¼«Ò®9ÚFhg[ñCJä¼·SL…|ÁHJ<†àµï@TQ‚.Ç"ÇâðˆCcoŒ)¬_È)Š×Y wÈ áÆ@{$îy™3Úï:ÝÌ59µè´-ˆ£´´ÅœîÜRR“‰3‹öž@Ê¥…DR}å<±èˆó£ÞÆDMˆpg­¸”MÎÉWŠzËI†ùKȦrAÛáC~þ2'.»d‚åÍÅÿ?öþ½»ÜÈÇ÷o¾ &Ïž=¡ö½;³ÉsdY3£ÇöcÉ3¹l~:EIŒ)RËËØJ6ß×þ«Â¥»ªèa[žÈ>€ØÝÀ P( pMr³˜l®Õ4®´®“Õ+O+—Èæ— È=7ƒ¡¾UˆeÆÂþp²ÖóŸâu¬å‚ï…GTáÊi»úÈPÓ™¿øÅe._óxÊZõ5‘ÞB¹FQáI¶$35† tñž!€ßŒá[0ÔÊÃÉÍì/ì.œ€ûkq(®|ØÒ%H“J @MºÕ«‚»‹{#Åù/·ùAÅy&*@1„‚GßÊ6T$É„ ÓäÜLµ(µÇ4ë+ =[®vW×ùUÒzr#QK:qý¤\;‹k¦ÓÝz² ÜhýÆü&£{§²~ûòà‡ƒã8ùÔ§¬ÅPKx…š¯U]üêBþ|ò„SG'Zý¯D¿k@±9bŸ§L¾¦Ý´âYHêìèû×§zݹA§6–Ÿ2V5•[As£Bbëo ²Ô J[©¼Ã!Ñw‰H*Hz$eS÷ðâèääìô»ƒ—lX`è ¥ö'WonççssÜ)É9þ»¼Uý©ž»™)S¾-®;V‚MÈ©:á&^vO´îkÅüÂFÔ¸‘¨•‚Ê›C=ÂËqvãb¥åµú÷|%Fù=hÿþŸâÍï³¶¹_Ik•¼\Фö¡CA¿ÊÕÏŸüÁuý«AI"ÐS¡í÷жqþæ?Õ›ÌD¦"äµHTí÷•ùÏÒ¬G²ä…4 ÿÔ”i5þ÷š°ªlÑtÉ¿_ ½1ÈÔGŒÊÇ_H±5©˜ýžèñ*FtTe¶U]†ŒŒzy9ŸÎqjg‘¿Î—¼Hì ^ý‰Ù|§ºš‡Ä%4ËwËÕûe9/2cF¶H Í@Îp7ïæ·Q­ëGµI®áÖÿÄÙr{:Y¯Q¥zʆTÿ¾ÚÔõIÝ5Š_T4Š2¦…5¿RM£`Vñ¦`Ö¯KHÁÿdÏ%ÂDO{-§®ï-'LŸþ9(ÿbd‘Ùq'|>ùI>ê+Ûó‰Šêú‹ò¥òÿ!'ªEA«CAÊwU‰K­µ­”Ö A>)ÊdÒêÆjIMH-ÖÃO#€¬×0sè¿èåšb.ì”L‹±5öb5îARçåIû¤°`IãrÞ3Èã1å\•z%Θ¨Nx¯gÓÕÕ—íÉþç·¿ÆYvœðù­hŸâ§è”Ž öDP%¾Ó–¨n˜½¸­whhlG<=‚‘ísÃÎü—÷¥éM?oJº—:|õâÕKëôA>iö•l¤Ë¢[‡ø„Ëï¿?~ùö¤“Ò«,ñ"¿b×. ]§ø’G>ÃWÚ©4qÓï™X+E¤×"³V’—ËK¹$ôŠ5+mtRQb)ÊÒx¾¡ºÊåȧ(+Yniq <Ù*—|*´’:—…mÆ{³*¢L4o½9þö;«Î]-¡ §½9zýýñÉ ÈxŒÝkˆE²‚³-¿¶(fJ³µùúl~ûæè4J“o’Í6:„aå'4Àáùë©ÙO·êŠc}µ£Tô¢ë¡”ÞðCèØO–XãôÕ÷oþ öiè­²…ȼ(‹=dL[öõnëéÍíÙ4}¬z Ùûža"Õi Z³¤S¼™¬ß±Õ»ø‚/Ú-âɱ;D g3˜SPS`³wÂvú~²¾ØÈý¶ù6Z¨„Õ¹8>·º"ÓxÊÐŽ·bdó¾®Ö3UóxÅj›óÙvF@XiÊ¡´8Ñÿò„ϳʼåëŸêƒ­Qwø¼a Ñ~L…©ÄJÇ éC÷ÀÊZƒâŸA;£öõ†ØfK „«-ƒ6…“bÙ¯a6²W·Æ\p €ôê˜ÐÍo 2ÅžéÕúBÞy§»zßø4?ïÀù‚ãÊó¿¥Cõoæ¢ùª&ªF58 ×dƒ.#O‚+]ÄÍçz‹±¸)Ž^ÙÌ&ëéuišØ×.6ԋŰùrŒ¥¸!EíOBä½<Ë^þ³Ž ļM¾²V(N×3.hðÜçBÄ5e¸$t¦ÍýO+û?[ ‘«Ñp1A0×w] lÿÁ¬ Åø e¨~RŠ¥ÿPpÿx&e ²â2IT[ؾ#+.¤¬S}8ñho7•XíZ\&á\£(\¡e@}-ËÇnXTú/Öœ6ó•âà¼oN}‰=GNð°b"áªX*Q•S¨¦Qf¤bÒãŠg™ßÝ3_æÓÊ%q¬¡ôTéòê+¿2OZ‰a"hh¦ýË "MÔD‘ehŒÿþYyW~Ôi=õ.i÷óÅÆ`WÜš.N–§€Ã éb~!„”RåI”aNöœMÕ?þ—˜ëPÂA "CÛÇ–j\¢g™K,*›Ü¢¿\½W6…•“(ï>›K3¹UO¥üe½|Ž'7ÿ¨ù#²˜Mç«Á´ÊÏNn˜«yŸN¬Öª› /„jћᡥ^¦‡‘[ÐÛlè®QÝ?«$l¶pž(F8•Hec¾\”³|"§ÄÒüMÕ&DÆtÀ¢ö¨W.&ó%ç„Rsî1#×Ê^2,g­žÐ#Ôªä^„öæ…›üUQ¯þê׿* xÃ_AþJm9+ÝÅa¿û+1š,±at3i<ž¬ÙúBÙPvb¥a)Á'$ÁŒÎψŽë½6æ"Nñµlju¦a=cµºË|Ynæ…æÎ—œà­Ö7­SøÏ‰û`=Ÿ ¨™Q)¯!„á*ß±d2c ‹5€$î¯ý×ê = WfMt©Ôž\“a-‚|5£5ÿÅï©HÉoLɯOÉÔPy›z…ŠýûùfFÚ’^ÈÊ{ž_møi+9\•›Š±FͲ ZNÓB—RxºèUe†ŒÃH.ò¯J.èã™'‹ÛëÉ9Ž˜‡ÅÍÜ­²€æ·¬î9î06ƒ+Ë q-¿øMºÖ›•ñ7Ç׌ôÏ!]ÒûïC%ºÔbÞ*{½¹k©µæ‹+KÇå‘*!d¥QëLFy$ó-¯Xkúq ú›‚[û DüC.ä©°¨KA*êTÙz>Ýð;Ù‘Ü2¡Mu?R©·%=zŒ‡N*= OÏG ƒ]Á/¹©|¿év>G›¯/®¬E^*MGfº¶ÈÎåìýY]œdz­¼šJBÝé-—|™¦ÞDbr‰@ÑR)O[ß1lŠÌ.£n^%Moéää->yܪ^¥Nò¯‡~eE]ÍsºÚîmÍÊ1±Jm»«€óAÌ,ÄYƒbQèl"9¡žòß‹ÿ~Ëu¯nåa¸núk+Xmõ™ŠˆöcöÊ|Û·2óÛ÷>*¯íú’g,ÓÏÌq/š8ÎÎi»ÿ~±§}zSJýoËŠ˜D\š3S«˜$(Œ²òK!~[÷ðÃ%*—!©%¸•uwx"äjYhäv3=»Ó°“üœ‘|_°X)–‚LõŒ‚º#‡Ûv¹+å™’ù5Pù!• ).3s%K.“š†J–"QF˜rÛ»–††k;»Ðî–qÃ×L(”ÎE(m…,‡«Ýú˜7ìR?¥éN6O±jA.cøo²+?j…jaKË;þÏÎû\ã‘´ géë• ’ÜÒK2‹¬4‘:+’4§<%j#†‘àÑÉáÁë£b+ŽPIÑéß’6ΈÚ.×Å“FVÙþÿá«{³¸-ŠžÃŒÕŠPîÏñ@¶á¬’àùoEÈÿ>GãÊt}áÄ:“GþIEþ #C=ãßp;97ÇgMGy ‡â  ÙœTææT°Ÿh°NëN¸(¢‹s.ĦKÍj«õ…/ÎôG2Înn-G*ê<‹aþö1â ±xÊ6whhËõû4VCÒG’Ðvƒ3s»aÕ\ýÖRlµë¿,+ÀÊK_OÖÒþ7üï+¹nåÝÍð>ŠÉÞß“cÊq(FeL¤Tç4ëW)Ø–㿲<(¾¨u*TE°®kû+ÛêH«]ãÖ©hjpt+ÃnFQÙmˆÿú-À«_‚׸BžµåŠRÖl;hÊ¡¸ÐëHPSQ›çMòò ó'ù¼U±„Î3”&H ž^—ø‰l`Õe¦ÃðÖðíÑ)²ÖñËC¨ÆS!˜ÅL¢ìÛÝ5ýÓd± ¦k¹¯[_=PZ)5éÖ÷’­e°Që\TÛÓÏ9Ÿ2aLEqcÌê’O^á`¬À*C,ô¹bâ¨}˜}åg#gºg­_™E§‹NúÝŠå- ÎEymfS=¿\>ÁCZSÐFƒ¶àÙ%h†‚€ò¬= ¥õˆ ×XÀ2  rÚñòU·sy|—°P‹#Qä%äxØ>.ÖAÃü<4 ‘ƒ òz&µ•Jó]¾H¸o¾¹‡=:#ßÕU*N|湸øwß°G.V”:~’À/ÈM€%™…g¾ AúÌyýXñ­tlŒg86ÿÉSàj²øè?­íÍPÃZ¨üNTlÁ’÷ÒèË ÄªhËÓÙB./¾½Ù‚¶1ÊÏ3U`êÚ}>®N£­_(;Ë’'×òfïóÅ|æ²|b>šçkÚjqQ97H@ÐýÝÅ ½šðw)4¿ËРÓùC£‚ÒÇÜ"t¯,áÕ¬‹ÓÿðG¯µ«N.èuJtRÿwÃGÿ_EH|ûâÕ³ƒ&ËIq$ËR²„è*gòõâüuyÓoNâÎ+z‰ŠT êÍD­3ÔgRé‹#Qš<þˆ NDÜÇ=‘çÉMAuÜÍää>ybýb!T.J|<’‡ ŠÃšn†–x«áÅöO³5½Ñ “LˆŽ77Ac»Ð×e©cž_-.frÓž:ßv“_1üi¾2H–ãd³ÙÝÜÊKYÏï¤J%Ž=Yªm¡!2áp‘¹Pm F1ÇSšš’†Dã}uÂ*o:Êð†[]Y>ÿ_Û½®9f à·¥‚øu9KZñ=œÈ#’&s>ÓSFæ³½ëö·ú|7©çˆñHÅŠÊp«9ž4°-‡É3 Ô]HëÊCrésxRúû"Ë ŠÎ»DOlÒ›„ï{oy4V¾Œ·˜C)ÝÄ[¤m^¦-vË=‘\Fä UËžä½ÆSÒƒèÁ‚¾FGlQÀ²ßeør' ììÄ‘¾­F·ñÙ‡ÉÍ|)‚Vx„°•“ú²Ñ'À}˜«ÅÎÅù¬˜rƒÈ|©?ÞˆEÆòôg)Îp“š:ì«|¾¼P÷D' Šk<è¹a•# [-SÝaéR›_TÈ Kÿƒ&øúˆ]v”fiþ¼|, ±Ñè2ûA_4ÙŠAhÞ²ç]âÈûº”Éb-鑾Dßì=̧¸ònÄ~à«4zýAµµZ½›¬q}ûæ± ÉÃ/WùÂ}χœa‘KV•ˆ‡Aʱ¡8·ÈuSа‚±‚y*ëIRwprrô攟Úý;ZrR]ú'—RöRç›çÇeһɴ"f8$Sõõ³5ðºVVd×2P‡‰žÃ‡õèŠëéȪg{Tr T>¼²Ç)•À'ÅÌòøëAuÖ{œß&Hî"V+¥óµÊ˜Á&I¯¯äb½" â>ë¹<µE…{¹‰¢¯p¦›@puŠÞg"32ÐçæK¹Ä»¹@•w‘ÈáŠIµöRrsQ|Ô†eoØÍ¬¯ÐP aƒÐ'wÝÖË|›´'—âÒ{s]±‰É“ãT’S¦gfÓÔ•ˆæEµ1í²tà-V2AŠÝWª_Æ•¡â¤ÅîBwºùdFÁÏJËKPrËyÉÕ/OeWÏþ¶ùv‹Êí)xɇ)Šàs±B©tÿž–sþ¨.­ñ˜á£éã¡—eÉìù÷˹˜×ØŠ¬NnÎ×ó vŽØKPæ,0€ŒZaO\þ¼E%Ĺ\? ¯Æí%«Ýz*ï÷Sz„a°#”;œ´‡¿8õ£ùå\^7õr‹:á§qô‹Å­UrM¯˜[-åHN] 8ÛªQxS¥JÌ)rD™‰õºëY¾yzrŽïLó’-u>Í×°ˆ©¤Å\ê´4Qµ)« §^“ùÍlýÔF ¤HJCSÙ¼ØMg&bФ^Ĩo éb5݉É"]a¿ÉïÁ9Ãõ|²ØåžßL³‘çî¥:x0ß««ÚŒ…ù EXQ+óíFñÆCÄÇÍMê:rqÄŠ¼àc…Ë ðx|áàÝæ²Ä¶hqZCZbèC+l³ºÜ¾Ÿ¬gšÍ¤•ø ¢Î‘ûTk¼&Ääêô»ã“áÉ«oN<±¿_¿yõÃñó£çÃgž~w4ÄËÁÄÃï^½ÀÓ>‡/ŸÃÛ—§oŽŸ½=}/~yp19À/ÿ]þë7G''ÃWo†Çß¿~q `€þæàåéñÑÉhxüòðÅÛçÇ/¿ `øòÕéðÅñ÷ǧìôÕT£ _}3üþèÍáwðxðìøÅñéŸ!ߟ¾Ä´¾Ä†¯Þœ¾=iøúí›×¯NŽ˜­çÇ'‡/Ž¿?zþR‡‡G?à™¶'ß¼xQÊå«_½AÒYŸ ^ã2!Èäóã7G‡§˜›â×!÷b4ÃïgoOޱÌâJ7oÅÕX¡zÄ•ËÃÈú\î«—"«P@ ä"(–(ûÑðÇïŽà=ÔðË(©,ÜxxxJƒAzP€§$×Gß¾8þöèåá~}…(?Ÿ=†ª:ÆsB°Š0Ù Í·˜eQE@•üIv$*rxüÍðàùÇH¶ <€ª?9Vl¯NÞ~§Šû©ãî{íÁÿ™/qÜ3þR*‘z¼ñôú—ðuÐSßÓ òÔÒ†WWs¼åF¾öÐ7NÙ $Â,‹Ê‡\7LÖz±¼þvÂÒ Ô6Þ;@\“ Ž2ÑzPUfT/·©•@n+’¡[¯ñüÔPPb¬¯„4ßàâ 2s†¸æbÃo+Áƒ¡*8!²¥Ääò;·å †EáÊêV“ÕO,Î'•UXœ—ÆAÐp˜ã‹©j…¯ç,ôÙYúú6¤@C\LõÛ<éù%¶ÿVŒ§«J’{wtÀ™±%\ýÖ¤Ï=òäÊ"”˜U+Ï`Ú]?|ä—ca7^lw6G ÛN`ý-žö—o-Ž0„e˜“£Óߊ9grTEZ“Üþ̯"ÿñ5®ˆy)6© 1¡[8©†ÈÆAyS·Î#¤R¹ütø¿¥Gôç 8ð3ý¿ÒÌAì _)~z<øÇ á˜ ¤ûr2_¬§êFýºtò“ß+{:´Ì|˸ºïٟΞs oX‚žüÇó5ãêí7o_~=Èj>؃¡î“cEQ>ìCÌåðÂÔ¬h!¹“®;Ê·Ëa9°žÝ+ÎÆ0!¶7X¯&S󦣋ÅñöÓ+T^m=ûñøùéw£!‹4üê1[­ƒ¤¨tõbŸÚaƒ¦ñ+žÇ=ga|õXxŒKá ?¶;D,×ÃÊG¹€ùÝPUéG‰|³žÍ´8—GlKýÙ¼h<{Èù\2KF.ÿç§Ý®g?ÍW»¥«üðáh \ª#8MÍ÷Y¶lÇbucùA´7q¢ºÈ9Ù†ÊgSõ÷wöÍ9M¡<±qšÜE¼]<ù½ G>Œò—²bŠUkÿt0òÄͫŀEnÍêzŸú.õë’S7¥aÒ¤2ìÍ×^±!æ Ï³“ݨ2Æ´XZ2yo)Žt¬eèá‡cÞÉärÅJ.EË~ýYÑ3ì=zó<Œyªcž:ÕcyÆ:‘¨-%©ø‘eb4”gÌ7ƒóÙÝjYlIy$wƒãّדÛÛÙR¶ûßâⱤH^x1Ùlð0œÕò±8O÷²ÑÅÜ ¡ÄBíýd¥IµJ¹‘–Ÿt<ä|D#¶¢:Ô4D=~ùÃÁ‹ã篾ùF@èe*2óÐ ¯Å[áU¬®úÃ$[¯‚¯qãôh(ÖÊîDï ç+û¥hV߸lëÆrý®ÐüÿþžHqC<”J:ͱÔÐò³OõEµ€xÃÙð½hIj|­w˜û¿_´êÿ,ù(÷f†; £*vS_÷wu}‰°té®­Ÿ)Šj#]Ž]uªòžáZ]l2’/.'ùž7±×Æ\h¶ÌµÌ˜äu´í° ýH³ýã:лžàp=ÐûQá£Ø¶º‘+¥Å~",_Q"¿7È5ÿû¿R:Ô†ÒFüó£go¿…‚stãB¨ÍGB71T“©²’Jùêµ&U÷uùv%2¦×ù”>þ¿CÜ-©~"$œ³ñ¾žÕEKifwSžÚu¤ë\¡¦!.óºÞ-ß¡: kåwóÅ…Üï y+C.ñÆ‘_ù¡;ašoq+²8ÙEë%xeq†Ù²‹øO§tbU.¤G­çI¾-óBîNž,6«‘Þ-Oc˜(µU0<å“Â%#mÄî ˆï‰}*‹'ÈÞoôjxÑŠ5PÇÃõ_z‚JlÒ[©K9Uøráô±#±.–ÎÙ#µN]ΆÜãYiãù6⯛¼§Åmé˜ÔžjÎSµZ ¨g{¿R5FFÓBÁùª¨=å;IAýñ­À6·_*ST·¥ybIAéåæ–ƒ)©þµTG™õªÇfíÆ Ô0ýKÜ—RÅË»W}ÚÄ«ò¤¿PdY@\ÿ+z { cw÷õ@ öͳÓú5Ÿ*þ:×ξA£¸BÒäOÞ~r.ç¸ÇåÕ_åe£u£Âüˆáþ\^·;‡Uu ¿ñtfÝ7Ñ5¹|bÙËÇùº¿ŸC½Kþø×‚Ö< û„†UÊòQÍ´‹|‰Ðj  nnÇ_•É|2Å*p­Sù¢Qð-«t~V¢[¸êM1-š.«¶@êþw|rxS¥ó±j”BäŠï¡PPU̯(è0c,H€¿®á7]w8ìwuló‡5|:ËXýv" PíU»#6ù uÅe@ª[ÏêƒÞ\Lßã™%b,Mô}¾¨°»èC)æÛ|ëüf4œý$’Xí®®ÅŽ(À§‰¢B)ŽÏ–Fǘ>è ÙÀŽÍ«Ø6·6ãOQ £ª…k¹ì׿F!t«[§¬¾BÏ2Œì¢ö]<}¥¾ªQ¦j"9C¹ÑmÖ jŸ7üô¡¼»ý8!_µ ‰rÖF!¡íi÷Å $nÛ{t…?¿]Ì‹ùd\‡q©î&&  pf}“[SÄl»ºeU®Ò–9VWúòôz…÷®nzâTïÄ|¿*F JmÕP»]·r¨ŠS\Bý$#Œõl R•¦+'xBéÿìômeù¦Ð‚<1+[²H ¼|/o~´»ÕU⎊Õvð^ŸERˆÍ»êŸ—òž eãª<%¹ \‚žu…ÐÂŽ ôý¦µÒ®&ìØqMŠFSL «"–Ú¨eNI²*—ß–”øül Qyf°”5}8œÃvY>Løm¸’ÛT%Û'oÅü'ûíËãÿ÷ö('ÞFc•>ÓS(Ce–Á¹qæëÖ˜«ý(•{v—›m~§°×WÒªÕ°UI|øJSÇ‚¥ÈDùˆ³Y^|¶ÅËe?•¿Ù®Š{sÅÁ×JqÏP£ &^Ÿ±‘Ž>™] ŽB¯ƒ÷(bE• Y,)†ëÙd!ò.Ô¹÷×Т†¼ß#ÙÔˆ&躙‹u$à×"Àð7òÂB¶ÔTýºÈÏW€ z|œ›Öú³¼‹ýñ#RØÚ¢7<þþ{¥Å哈ä">i›+›U¿.¿FBÓKr=sþh#]j¿¼ÊÄÝWÊR'„„4HG/~V¥*ü¾¯\ÛÅï¦çå¡¢?!ôÐÂÑ÷n²[hT”ßQs«üòOJ˜ ø?‹èF—ˆýë.dÉVªÄQàºé—ÇGª~'ËùñÿU1ñX£Çܺ úw­°’‰~U¤DyG·cUŸ_ÓéõÙÿÌÙR˜FdcÇv‚—`K¡)›»â|ÐOšÌ ÿÜ{3…Ôcˆ|/é.òŸ# F¾Z‚:0×ù½_ã,¹L¸A?¼—‰#Ê»åêýR®ZÉuÕ/‘óÈM7Ì+è-³K¡¥KC°*‚ù¦˜t¨WPt¥Y”ºùªåWÖÄ-äb ›ùf$'ãò‰?µˆ¥ÜeÖ( 6%¡©ÔtTYÂ{ö¬‚è3Ü.!ªØÖ·Ú–Ì`‡iY/Qé´K O†rîYÝd;^Kžcõ‰O׺ÿÿêÎÿ’šìyø×¿5ÿøÑ8ªœÿ5Žƒ‡ó¿>Á¿‡ó¿Îÿê}àËÃù_ç=œÿõpþ×Ãù_çéó¿ôèû·-BËI‹Mò'R?`£–å ©.FxiTÁ;VðíR¬‘ÒDŽH”ä›§â&%"zr\`¢ÏHb&uØ-žFââj=¹ ä’C!3]¯„ 1…¯„ô¯•l›¾Ï¤üáà >Œäôün0A3 ÊY!÷¦xg“¯Å¥ÒVžæwºÈ{\äÀGøx‹.QƒUigÃÛ2‡¿P¯•B?Æs¥Ï¿9ņx"¾ý·€¦èÀÇ|ŒvÈg¿Zëî\L­U+  îì6u÷¦¨à·[ˆâ]"Æ”ÉAH‰‰ŸGëyÆ£ýeü×Ç;›’ÅÜvü²4ÞÈy|`¿'zÞù™jƒv”_aO"g Ä­¨"_x¹²¨Xr%>ÏõlÞ gøÉÕÿ)`„*#.¹š‹EQxû“ q£¸(KÜä#öê¼›ßÞŠé‹™bžKœ¤Gä >È™û©Z‚ƒmœ¥M϶rNõÕkµ˜oóø/¸“îCx#™?þó뢘DW|½ZÏÿŽMu!”‰ü¢Xh1Џo¶¸Å ¨ÝÍsCÕ@Ú§ESZà²úM™&±’Yu- „eQSõÝÉëƒÃ£³ÇÐ €,S¬Ÿª±~à±w"‹ÿ¢ÜÊŸ8‘WãX[ ã¾&¾1ÀD“D“ùZòÅl1¿™K㜖}?Mó Á ú¢e}Ñ ì 4qŒ0‘ˆMB½ÓHjJLh’x{SqkÀä!GjBlŽÛD¦‚Õ Ä.g8 5Ä›jõó“ÅüÝŒÐk¯Q}û™¼CAÄÐ 7êëH~8:;8<„N{$_@™¾yõú»#õâÿ½}uz€ïÙ÷oþ0ÒQß¾ýþ›Gäñ_ƒúOârSõêåÛ‘otôç¯^€¾AC½8úæô 4ˆ:{ýôŽq,8¨.sP–*kùëãûš5¡³™óVi-ZžóÏJ´ O½=ýæIšÔé¿=æŸKí¬¸çìŽtüÀë0"Æ‘Cà?9Ç«8ÄÜáo´Y,“¢gÐ ÄHIH½œ¦€ʃ̑ë²é òë=ßÃØ‰HKÙvP°è>¦,¡þ÷U¯ö¨Ÿè)ºÅ<‰Ò…Û†Æ}ç$œùûï~7L©¨Ó2NØwÔª\,ÓB´È‰a!ÿÎï¶²[œÈä…D勘sÆÖ·Û^¦rÒm‘Ãñ‡är$|ñçòRþõ.õ¯à2ÿ™ÈŸ—´}/7ó+‘ýR ¨Šm;×`*4¨k^xÆÕ%I(:Åe¨j$~3ټ˙K¬€ŸqÆj¶ÕCriÊÂRQÛÝtqà9S³….Kc—g‰âl(9_w˜ãVêøÃtŒ%3þ¥ôSáO‹Þ×€ä8t£?–~"ü@øS.r£Gžye› ½’MR X€jb€•*•þëùÕ5¶B¶pAv¡²MyØ’èëàª(™ ‹ŽËÕÿoÄÕÿ‡ ÁˆÿÕÿHþ/‰o.JÕ}:Z&Ji8ÅûÅíSb8òv9c'Ý¢R—ËËÅ짉îù…®©B4:”ßl‰˜Pt'35ÊÊVg»é­”¿ ÞNŸ^ -5×1È2ÔV'Ã×wÛk±Öi=¿ÝÊñ•¦L´ŒM$å¾rP)‰A:8@õ}=YnðÆHIÐ-*WS1Œ¸ËsÅ´š/ó³/íê”ÊÅø3áËÃQíq—àzrhP‡Kp+p¹ ƒ¼ÕþÁè/£á‹¸pýŶˆþý¨ô§ô¨CêßC ~¿,¢½•þT£½¼ _BÊ/WE´×£Ú?âž=Hí5D}ÃbÈóë¹)ºùFÙñš¤x22ÿ!QN Å“wà xNHÔ?ØSj†üýùœ¨-Þph&A³¥ð‰…›;­ö\ΗùíOjç ®sû°Å!žä6¹½žÝÌ0¨Ûˆ.ðF]wr¦Cn<Á=^“< ìcuC¾+š™,ìwþÇ?J6e£Ú¼ÕÂ(TõaræZèlû~VH€üfÕ7šçIéë?¹˜Ãd#»™w!e™'’©z¿‚>ëo0~[nEÞÔ$ŽØç•çh3[È«‡ïWk9©K×,ê¾UÎŒb¡Þ¦"ÁèJ`ˆq Ž¢…u h¢çrÎ_€'ê¯Ãÿ>òvÃÿüO™FþäR+‚Xf ®u_V+¾ã¬eaÆÐÅ+×õJ¹;×ê–‹C ÏH.RV*9«9€zx&ÒPæ¹ ËEo퉉G·ëÙ'ßÏŲáÅ^+è?>—K*5Q“ááð⛯é¢BêçäÄæ3¼2m çêW‹ €%ÐïÐL¶nî Á¼¹º#uT­}3|t.VŒNpòIìô|?`ÜùÍíB܆Gï@‘™Ø“Û Þkÿýdýk".…’—¾^‹ &: ’RPT@>ÌnV›¥9ï–ÕU‡% ¿ýýýߊ×ȰaŸÂ,&Ö"¥˜ÏŒ©9{=ŸnW¢T„QF¶3‡M ÊW¯~‚nÒ’Ñ(¢œ÷UµJXD¬ÎR³¯âòìó™0¶ä[n¥LÜæ2|¤–þ\Ì„ÔÅKªg8ý…tÏ·Pji]©].&W墱– ’µž]I!Z ½9~ -çæš–Z¬Ö:á|øÅQ¡ß“l"œâ‰| &…ÊSSõKdaŽð˯óÌ#X%ÿÓëÙTH%±œKoF¡HøúÍ1²UÆn—”dàeÅwb‰ôSaгÄG'AûŸÿ)E±¬ÜÇÿ[¼!ÌM_c««Q»´L×jÊrõÅ7mêDµ¿ŽQ(Ê'Ç-£U0<¨ûbø  a«€ ÜºC!P [PŽó¿¤p”˜xü¿8a.RŠ;˜i)?¦°?°§ÓÇÿkŠÁàfÏ‚£Œߨtv¬[ÐãÑ^EQ‘j.§ºìaF °xøÂRBÁ‘º\Væ< t‘:[¤*D =£¢=öÄû‘Ê%öÓ¤¡fí ÞP‡æá÷l-ž/%™9ƬB!¢ËA:“"@¼Ë².S DþÏ>]"¼8ão=æý¯ãÓÒ8eòç/+CÕ§xé4ž™´M‹Þ`³ˆY)µûm±š\˜'›AÖ8˜( z§j€»éqìBYwúÍ÷*Ì÷Ký‡”âïJ¿y­Â¼ÎqNÔ›“<ÌŸòŸ! ”L1gBÊCO•|3Ó¶#mR+FÄ23ÙmWOŠiŒ|4Bç-lÞ‚OK$¿dó8 Ã0“³çÄ;™w?zvøüøÐáÄ;™Ã~$Áó)—GVsîÿþïÐ6™Ÿ~5ù•Ø!ð!õgçfçShÕgÞ8Lζ«³Éf:Ÿ?þ‹ÅšÏÆÆãÎ;¢çÄ<äøC6Å_xi<sÆð.ÁÇ ôføõ=߯ˑnF2ƒg/_ø‘HÅÃTÆð1n€Ñ¢™‚Ę>bêS :E*§sŠTN‘Ê)Ry!¨D"|A ~ˆ0n ˆVµt‰M1¥)¦9Åä¦â¦5Å S‘ bĘV hôB|ô1­@æKÈ Œcê1RcÐI‘„)Š1R,ÂaÒLõ½K„¼D´KLúÜ“çø:Æ„c  b0TŒ¡b$0Á ¦š`ª |. <YÂ_“PA"1 FOÀ LÄ;Ñü‘À#%H`‚@?Ç´.0­)¹@€‰ªž ’5A´ #ÆDä :0È9R~Ž1/ðד™ n$> %‰„L0‘1W¡(v b !B†"F(Ò…‡A.ñë%F»Äh—‘‚Ä!f(àHQ(Þ!E¡ CäS0ú9â^ŠêÁÀ—â.Eâ5ÒaJ¦ ~C"ñ Œ0f$jq/DN1È…xĸŠÊ@°’à·¿>@Ü#‚ó7@Üs]TŠhQøîB´ûKÑ¿›ú Ñ9`/A: ÒWX»©ûÄÈö‰Å(©NBЉÆgí>r)ÜØ«ÎE¦I¾ ¹%Z®(b!¯ ù‰$¤´Y¾‹Ö/*Sô•‚S£¼u ’¬v¡9[°‰à2ÙŠÇšcÕÌeë÷8Û†’w5? œj6 3ši>íYËÉíøZŠG!2…ŒrSJ„ÒršËA!7 C†’+§Jù&¤kªyLv¢‡½†è&„ìÇpRâç Sô)¢ý Q 2LR)º?[_)Ñý}¥èþD\íþd'‰á‹PtWR6aP! Dç d“A¢•’ 9!óD÷kn ¢ß”ý–à!LÀÏ»XÑy‹ž^v˜€ìÚ°Öý\ã’ÚË9m V`¿'pÞ ÉâáW“dúN!YD':b¡VBt¢Zþ -z!WÏEÝ` 1'ú-Ñ݈.NÈw¡}Gtm¢ï]À¹Ò„Ž#Ô+¡=q+º ¡¤È¾$WÒ.rõFhO¢ã=Þ¹ê]$éƒY¢#³`ÑjD'ºÂ¼'•Ý£ø@»Ç¢Ç]8Qj„¢“k6¢ÃLy·^ô%¢‡žà;èdY½›èñD'º=A¥!¢/LÞGÉŽG| ÔDE$ÁÝ…R#\³jžP!D—,ºõ¢/)†ª/)f¥1·°³M…zsܾ£°nÿßnz±ÿæ¿«ßÿçùIqyÿ_âwi7þ{Øÿ×s¶áaÿýwŸöÿÙatk¬aŽË´.çù+aÓ>z~|:üþàåÛƒ/þô‹Á1hà³ ÞƒVÃ;µð 4òß|« ß‚¹½ÓË~°Ö;±Ù_P)à &â˜Uµè@<퀆§6,>lX|ذø°añaÃâÇÞ°(¶YåÛ·ùÖ(à ÚÜF4“ç‡ëmê:qé¬:VFlçák·ðøoS‰ .Pä‹uVrÃj*ç3qf¿Š+T±AR)H#¾e¬¼)rPÝ©Öb­gÒJ#W1âtšÚGvH #b±CrP³CrØv‡äR"–äŒÃî¥XÍXìð@MeºÝ‰­rHötø#®Y6îd‰½¦ƒkPMôJ!IïñFÓ’©ªÅîÇ¡ÒIéæ ©öhz± p›Cž2]f}øzH–Xã‰ï[¹¶q®N„ö’·×H z:܇bM÷é7â)ÛlK.-9Ÿ Ö3±cŠÉ+säFC2¿m`&:G¹ 1? ŽZmŸ¾[½Gë±8èI0òðýO=šÎDj€è´p£àFžà÷ûÅsÉüW»;¨%®èׇثͼC`zÙ'O–êËBÛ‚Ô¾ŸåfÚI¡C¾Ä£íwrƒ¦*yQĘ+]ãÏ ÌÅjù+¼ÏmÛxÎüVåìæ·°Ê’Ó}ç¨ÌïœOÖ—²ÁN¶¸›W黂Q±Fìk–‡q_ìnnî%ùZö%µÉ«uèzòzzq%ˆëT•%]?ë-tÿÈÿ²ý‘â<¾<ˆ“+µOføqS@ß®§º8Ã=ËxðÞÔ"ür…1ÎÄ2€Îáóí7ã¯Õ´¡hRXUbïo‡žGq¨7Žœ/VÓwú‹ŸÒ… ò°C™Œ”Çgjlø¿ôâ§ã§ã_ÊEÜBˆ`‘çbD±639.)-Š o‘ÄâéP Xïîv¶èå„ w‚¦‡ç8“ÁJî­äX£,^†„&-$ˆîÙâb ¥ìû9pÕù¬ØM… B19ä)™ÐPž3‰6½ŠòL4ÉÞy†w¾á] ® 5•¿ ÉÁ”ùËÈô2þzðOÂÖ_Ô@^]Ú¥váå›í6r8¸ ªÙ½|u¢^É~µž¡º?r- bc—Ò¼qqã‹[ü7RkÇ“µåý*»[¼Eõi(^IX±ÓĺÍ-ð-­T´ò³â­nªjÊÛ¥8Ån¤ð¨¡o¾ÝàpÉv%ˆ&»åd£¶¥åáÔÚ7 cÛ —×Bxq²8fÞ@¡D0dø¿C±”çºí¸þíáó³gÇÏAû>99;ùîø\ÚUdI¬mÞèa4F“û¿­Iž¯V ¾;à2§ðŸù’òæŠ\#Ãa¤PÈÈ*à\ÓÂJ^䶺ð³$ÈFÃ#ÜH-†¤˜D~Ñ *H »ã 7oê¶÷˜å"ä@G)Û_ŒäDýðpãb9˜7 Õ×i¤Ħ`‰þšê™)ØD=×?¦†`—žúzéëA5X*’‚,S?Îåïò|V ?>ÏÃOuxCêÁDH0õõSê™þz®\ŒMÁRLÿ¸P¹ .CSê±NTÿ¸ˆLÁÆ:˜þqa¨— ›èÔõK‘MÒ4§Í3¡éÌKòÒ@[è© ù˜Âhè…:X¨ƒ ½™6ÓÁ|C0_Q†žf¨µÐ×´…9myꦼø~¢ƒÊ9Œ5lè`I%˜7‹eeÁEä,;7U‡æç©üá{¾!Ñq¨Ñ8>×Á&†`ºåŽg‘VM–ü9‰UNᇶq¬hóCŽÃü+¯Jº)m¾Ñ;“gFz£BErôø±ØQ<8Ý­ßÍ7×Bš>ÁõÐùæ[@ Y‰YÎc©úx‹¹–ãbÁ‚1|,>ÿ:SÊb@­PÝÊ”ÏdgsA+ ¢Êæy>ÑÖŠ!­Ö¤p8;ÂÎ^êù¨ù :Źó+uÅçHÏé äáìë+9cQq/mS¡¯H}v¤O†g[Rô!ü" žt>,W¤+†áÊj{]ÚÖ¥ 9Ý ²ž/FHõEkÒË7Åpà*Otì ^˾{­É(—éð)J‹OøJðýx¤ÖqëO>Êlñ÷¢úi6Ê;üÇù7ñÿ&1ôóO!Š,ñw">dDQ,¾D±WN+JÅ'o<‘x~zú#*Žâc >ÆIžš\^Œryн$OºTñ"Éd‚i”»HdÄ‹t¦rW|JEƽÙX—äß./§£\ü`zY¢¿ù^àËo¡„ôɧp&?Å ’|Bi‹k+Î%bJ¾…³L|›jJR/¯pz)¶ïûúc^*þ…/2òJ~ ÆY–GœÄ±úšjÔâ _\“‚‚X_DKâKùM•fV|¹˜Ê/—’S|éRTìä•+Ì]œWº|‡]éÅ'Ys—çc…ܘW¼åI¾f¤(G½¼Œ&’•¼úÒ¬à¥0¼TŸÏåç,&/ÏåÇ(ÑqÉ×è|*¿jfó’€péôÜWŸu3 ÈÇKõñ"RÉ’q¤>&å ïRùÑK‹¶Qð¿—^ÈüijP·€4*ˆŽgòð èVUq^PÔ¼ /e R–¦¤–ÔùÑb‡Ã ¥‡Ë½º3ÃÑ?ü½qåUºM+¤ãÊ®m9žÈ·ý‘ÃKðݯ²_•·c¡çOä¨ÅÎZ5…Gm^¢ sŠù<…ád3S«"Ñ2ÏæÛÙ>õm™DɳÔÌðßnÔò#…c_§®>ÐZÆžzy쇱!üÇÁ8RŸRžZSòåƒ×‰¼1”¶vOIô>ã¤ø”†2œHÔoi\DòÊ)y,R”ò[ç),òäépiSžÂ‚yŠûäÉK{DŠúDREÞy(ä¥êÓ”÷ÚiêeQ™åsYÞ'ÒXGJËJb9ÒØiÚ%R뎚çwïs=Vä¦ÆÚ X”æÛµ0 ¢-‘Œ£š¶ä‰Tõ8ˬ>6Dê•R)·5Ñ£×`¡„(GjšÞ§óúÏV«Ål²$ å"•|2øg­&ó'±:—'"XiþbØÙÉuÓù £yB¿f.Åð)T¥n˜ý«ù4Ž$§ç }ú)àdØc•?ù@ŒÔ0µ| y,¯4ˡȗž¼Ôè¦XaÐ3Rˆ_0Uóã^6–èy¬`Y>¥´ ¬Y.SXŠ5¦d\hƒ€èïBJÆ…Öªk?ùôcQG‘Oc˧r¥¤6q2ñjbÁch#žÎ”™¦¤ùf2º‘ ÔÔLÆ”æ«ÊQvÀ ¬°Í…=Ëä“Ï?…6 ôK+±“q>µÅJDZ--úÉ/òÍ€Së'ÿ–Š7#Ÿ.f!ù’O¾=Ö¸öShúÄò%Y*0×rXnEZa‰7x}M#Ïc¥¤öO%icÅø0o¼4ä7#ñî%€ÿd˜#Ui.ÞUi¼NI}U؆W¥Ç؆1€Gk™ä«Ü–ÚFTK†1­Ji”É-d”Ûò¹úÔ¶”2`þ)´ò¼Z Œ [#*ïÛ„9ç¨ÔR)ž˜·7X{f5}ŠU²ù5 ˜[e0®ŸQîµ¶"¾&•ªô À›µeY•5eoæÖîfl‘óUÙë†B¿ü‰HÞÌS»H)kz­t€ò'Ÿˆ/; ýĵ”ª"Ýâ>¤žçÃ’Ð3Jìq­%n­Û¤ä“gÿTj•–ŽCä«`Q¿¶O í½^>"€¹ä+,Êbíj¬‘Œç§V2r­rZ§pVj™~òl±ÎëTâÐÆ6“2öÑ7gÑ\sÈ ay–mŸR¢‹*D+ñ©Bò)³RxnýTøK6?´e™VÆz$­°ÈrZiDú“gWõý†Q@©OI¨0·t¯F–»KsHIZ¬¯¬iD%À2Gù¤ÿòmýWE,—JƒŠeë§’Žm_¥"µR2ŠÄÎ5‡0­µ¥‰¦µ:6†“2¬tÙç´ä-šù´ÂQleþ$•@»êÈ?]05«ŽŒ7觪¨Û…ÉWY¤O5ë<¨0¯J6Û§,`€)%#³¦U_0±vˆç-oDy¬šî»Ö¶ïWOÄylÿš¸• O(f=Õþuqá–Z#ý(s¡é^{±½ø`Ûtž‡¨-ÜÛÕðf·ØÎÅÑ Åv¶üö,‚YÄ ;ÐU°Á£ÀáFC¹“}å" "vÆU6¡?ò<õù¯°¾Àc Và ^,î…Ñç¬(гÍèÉ>bkÈ#/–Xl¶·ñ´µ+ #ËS*Tp1¬7TýwË ÕøOo“÷KÏâoì…añýŸb? |êŠâD=‡ŽW‡ã™è ÇY\Å霯0Gœ Çø×LOعœ )çhŸr&8±ÇW½¦ò‰ œÄ„ãÕàøiœè÷i“îã œ¬+ŽA\|W8ž‰Ÿý %NQŸ[ÓCpLüܺ|މŸ[ãõî™øÙ÷[âõî™øÙK»ãù¹m¾H½ù9ª«/ßO½~Á‡^g~¦^æå¨qLüì%-é)êÝ7òs[zŠz÷;ó3Á!|è›øÙ«m_8s¢Ò+êÝïÌÏ„ž ¨/ßÈÏ-ù‡Ô—oâçZþ!8Á1òsK‡>åç<¼E΋ƒ;¼TàϤ¾Ò}pÿdÍ8Þ¸'·¡ÇkÆ1òsز¾ > Œü·Ã ‹ú ŒüÜ’ž°àŸ 4•™ž”Ë',ê=ˆöÁ!åïƒCÊÙÈÏGóO-=F~.Óã5ã˜äský¹¨÷°³þLôÈàù¹N¯#ò0*ø'ÜG߈ þ üÜR¢8Fùܲ}Q£|nÙ¾¢¢ÞC£|&z[-NÁÏ¡‘Ÿkû÷‚cRïF}cÜ._1©w£þܲ߉‹rŽŒü¬Ço í".Ê92òs]½›ù'2òs­^WàÐ|™øÙ«Å)ô–¸¨÷È8,á¨|&IÄë=)ê=2òsS;UùJŠzLüìÕÉ 3ÿD&ý¹¶|NBÊy}#!üÓJßqb£¾aÌW{öúн=úÁ¤àŸØoÓ†Í8A{z<ÁW£¾aãŸ2)çúÆðI =ô NJê«‹þ\–Ï4_­ô É—‘Ÿ[âþ"iÏÏUœ´hŸåó¤Ê?Eù$-øyÈæÿÌí+éÂÏY¹åœtàgß³×{bäg ùdÃ1ò³ §œ/‚Ó…Ÿñ,Nùìír5i!Ÿ œÀŠ“¶jœÄŽÓA>³2NÁ?©‘Ÿmüco©‘Ÿmù²×WÚa<èÅår&ùj-ŸC_œgÃéÂÏ^M½·æù ìr5íÂÏB¿·ÐÓ…ŸÅ<§'ëÂÏžŸ³öòpìü“ù¹å8%-ôº¬ƒ|ã-K}e­ä³Â–äOJòeäçòü³Æ)ë „žVú†z~b×DzVò9kΗ‘ŸËùÊšóÕJßÈšòåÛð³žÿµçËù9µàXóƒ²ùÒ8uùêÀÏO*ý)ÁiÃÏzÞ¿®|ÚðsŽSS>møYãÔ•O}ãI¥?%ùê ŸŸTäÁi/ŸŸTû‹Çk-Ÿ¡*z&Áé¢?Wúe‚ÓZß@z¬ú˜çµæg¨’Ê8·¨w¯½þü¤ª‡z:èÏÃØÚy^}5vœÖú”sjÕ£<¯õxq¬z‹çµ"޽úíǃOªã‚Ó^~RïœVãAcçC¿½|~R§œöúó“ê8…àtПƒŠ>FpZÏo NMù´×ŸŸTÇM§5?=aMù´æçÐ÷kÚ…Ù>h¡g\Öà N'~.ÕW1ä]ø¹2$ôtÏIM9··bùØù§½}é±ósûà“êxàtáçÊ8Žàt‘Ͼ½]íçëžTǃN؉Ÿíô„­ùÛ—]†íùyø¤Ò/œ.ò¹2Î%8]ìÝ•þà´Ÿ~R/œòÙ/Ï“¹a¶Zp¢þ1òs­­ÀÉ=F~n‹ãç8fû`K{n8Æõ¢mé!8Æõ¢ 8Ú®GqŒëE»—³Ù>ØP>iX¥Ç¸^´ '­â˜ìƒ­óUèÏFû`“ý=_Ÿ@pŒöî]>‡ò³ß§ºÀ£öAo\.—À„Ç¡.ç¢Rû`kœÈ¯âø}pâ*NÐ'WqÂ>8a'êƒc(ç¸Nb(礎¡œÓ8©¡œ³>8ÕrNúðsZ-ç¤?gÕrNúðsV-ç¤?'ãj9'=ø9ʹ?ûœüœŒ õÕƒŸÏP_=ø9ñ õÕƒŸ¿Z_i~N åœöàçį–sÚƒŸ“ ZÎi~ªåœöáçÐPÎmøY­OòD}8bݦÆé#ŸU}yãBÏLûðs¨q ý'í#Ÿ}N~6è Y~Vz‚¯qØxP¯¯è¼nÇãöAÓyÝŽ—uÖŸý4Wõ^nTô4èu9Ñë˜}0#û¨¬8$_Ÿ¹}Ðk‘¯Ç“òIÚ—s½ÛËöØoåy$_Y{þ‘íÝÈ?>·¶«/ƒî»ðs`µ¿ûã=Ö?{ž_à]è±Ú¿ü±‰Ÿ­vëúŸÛ›p¬ö&lägózH?°Îúc#?w^çésû 'h\çéÛðs”5âx&~®Ð“6ã´ágÍ—u8Fù\ÎW œ6ü¬×g×á´áç0iÆiÃÏQÔŒcäçr}5ó¡×†ŸÃ § ?g-ÊÙÈ϶õÆÖùCß7ò³ Ç:OëûF~¶È ûüªïwÐ7jÖ?û¾‘ŸK8Aã:jß7òs GÉZ#?—éI›qÚÈg)7žTûe‚ÓF߈,û¤(Ž‘ŸûžT÷;œ6ü¬äF=A~Vr£§ ?6ýy\à´áç ™Ÿƒ6ü¬äO-N~Vò§§ ?çv"«=ÎÚë€cµúA}ch׃6üœË’>_ìƒöƒ6ü¬Û»YqÂ6ú†m|Qìë÷ÃNãÁ2NQÎa~Ö|èÕä«?«öî—ù°h_a~Îǧö~Ùu?Þ}¼ì3û`ŽÓy¼ì‡]äsÚ˹ ?ky¦vœú†\?lÎWÔ^ߨö_…ýÔÚð³n_q‰Ÿ}‚Ó†ŸuÿÛË92ñsËý•^q΀u>±+£ò¹2¿“òi£?ëú²¯«ô™}0ß'jÉWeýÁI;àÔèÏ|ÿ 'nÖçùþANóx‡ï´à$Íã8¾ІÓX]Ÿà§&~ö¼ZœÜÞTœûä§m䳯©¬.ê=5ò³¥]Ø×û|ÿ`ƒþÚÇ_|ÿ Æé¼îËçû¹}² òýƒÝp<Ÿä+3å«»>Æ÷Öã”õyZ_Ü>Ø‘2þâöÁvå©õ-žOè 8µç¡ý9 ô„&zZ®?$õž™ø¹íù6‡­¯kcg ÂT¯—’|1~.ÛÏZ¯'ñùþÁn8ÄÞísû`Gœ ïÜ>¨qêê½(Rï·†-ø”sQ_ß?Ø ‡ØOnìZÎqpj÷ç’|¥$_Ñùò =L>Óý³”>Šƒ6ÎTÕ¡Ç´^´Nj §û¸;àöÁ68Å_ŠÃíƒQ‹r6Ê€Û5Nü!)Ng{÷0 ô:ÂÏÜ>Ø&_zBNgùpû`¹žÚ·¯îç‹¢:åWË'©k6-Ç=F~nWΤ? Œç‹6å+®âø&~®•?ä/‘?ÆóEkõ:¤G÷„ž>ëë2­'íÔï³¾Nãþñû¬¯Ó8Åù¿?Ó|™äs[œà˜ø¹öW´Ýªz I½wçç\ÎÓöî›äsK>ôŠsƒ ³|FuD÷ƒ&ùܺœ‹zçöÁn8D¯ “|nh_ùßbÜ&ùÜòü^Zkå<ùKêÛãÞòÛ;â9ÏíƒÝpX¾˜|n3.(ýU8Ü>¨Ç µzT‘/¢Gqû Æé.ç¹}°ëzÚ¢rû`G"¹}°÷:ü€ïLú—OlÀé“/ÊÏZ^Ö¶S¢Ï“vÊìƒ§Çø‚Ùszº—3³æôÔÉ B‘cÌ>¨qzè™Ì>˜ã´õ/3û Æé!ǘ}°#mÌ>˜ç«e}…Çß'_Eù0û Æé1OÂìƒqh½3û`WzH»`öA½¸ÿ0û`TžïPΩ§O9ç7êÖáéüObÒŸÛæ«8ÏûÓêþÊ 5Ío4ØAb=^&ò'í<_‡8aÇÈϵã8ÀQó«D?LMüÜÝŽ¤F~îl× ¸}°|6· nì*Ÿ‹vÁ탧{{çöÁnù¢í”Û»å‹ò3·–óeÂ!ôöÊ€Û;–3iïÜ>¨qøYÓCø™Ûuûêl× ¸}°Õ}Æv‘™ø¹ûz‰ 3ñsvšù¹{¿Ì샚oº·¯ÙsœÎí+döÁ<~g¹2û`Ç|‘ö2û`×ò‰NhÂij•y€Ù»ÒSÜ2û Æé·!³zåøø'5áôàŸÌ€Óƒ˜}°#‘ó!³v,ʇÌ>صœ 2û`ŽÓÀ‡ÕyãÙ5NþaöÁ§³œ™}°kùvÁìƒ:~~föÁ§;?3û`NGw~föÁŽ8”Ÿ™}°cùP~fû+åÓZo ÙþÁ®õEÚÛ?Ø'&å™pêÛWXÕBfÔñºë¡oäçÎúOÈ샕ü´oÌ>˜ŸÞŸ™}0§§;ÿ0û`§};eöÁ®åCøÙsœ&ù¬í•„žÐ„S_ï‡Ö;³jœ†ùù45àÄÝq óó!³æ8Ýû fÔ÷ÅõàgfÌqºó³æ÷×uoÌ>؇ÊyfìX>TÎ3û`×r&í‚Ùsœîr•Ù5N½…ÙszÚ­gc8‰‰žîržÙ½6ë.,ü“pz´ fÌqº· fôÚ¬1—³vÌågfl…CÏ"åÖ•Oûþ‹Ù»Öi_Ì>èµZO’êó3iûböÁÊý»ø'5áôàŸÌ€Ó£]0û`G*W™}°kùúböÁJù´çf,ç˸.ÅR>¡§‡cöÁ<_ÝõUfÌqº÷Ì>XYïÞžŸ™}0ÇéÎÏÌ>èµYßb®/fìš/‡Ì>XÉW{>döÁ§{}1û ÆéÑ_0û ×Û®2û ×ÑŽFø‡ÙËô4ñOLp’=è‰I½ϯ뮇³ýƒËÙ+ö7…lÿ ×ÍnEÖÉ„Ì>ر|¨žÀìƒ^o{\Èìƒ^;û ©]¤&~n»?Î#åÌÎÕá»· ~¾è¸w»àç‹–èéÐ.øù¢é!òŸ/Ú­|(?óóEuøîüœyýóEù9ó÷©¯¢Þ³À„ÓŸ™}Ðëm_™}Ðëm× ™}Ðëm× ™}°#m§Ì>X¹G¼C½g&œÎõqû`o;lÄ탺|Êóµ,_źÊâ¾õˆÛ5=eyß'0á´Ôëh¾LüÜ]Fc?·ÅIމŸ»ë«ÑØÄÏmé H9ïÁÏD>Gcã~«Îí=böA}Þywù1û Æ©Øu›Ë™ÙýrüöüÃìƒez:Ô;³v¤‡ÈŸˆÙ»æ‹Ô;³æ8 óQUŽ1û Æi}Ρ'íÃø0ÛƒŠs"ßÄÏ=Ú©oäçîý…oâçí”ÙuùšÏ»H|û¹Í³æ8Æþ+—î³óŠsi"fl»n0ªŒ›"fÌéi©¦¤¾?ëx Çk!ǘ}°#ŽGq²:œ¤5³vÄ¡ùböÁ NÚ‡ñso»gÄ샕ñv{¹Ê샧‡üaöÁŽ8D_˜}°+‘«Ì>˜—O;=“ÊfìˆÃÊ'3嫳Ý3böA]ŸF9¤iùüÃâ~êˆÙkqð_YŽß„Óö<Ï¢ÞC6ÔõÝù<™( 8=ÚWpzô;alÂéÎÏ!›ßPñ|[}á߯ŠÞbßD¦œ>å“™èé>þŠÆœã/fô{Û=#ãýƒMý²>‡È1fÌÏ%)Û½[ÐCåsп¿`öÁ [AÇÌ>؇èáÌ>˜ãŒkp¨ü!8T>ë{%ú”OfÀéQ>Ì>˜ãtÏWÜgŠ>ƒÈ f ú· f z¯ˆ˜}0ˆûÓpúÐÃäsÿöÅïì†Cλˆøýƒ]Ûi!ùýƒ½×³EüþÁþrƒß?Ø__å÷ö—?üþÁþz&¿°¿ÞËïÔùh9Ž =&~î¡Ï'&~în׋#?wŸHŒüÜyUÄìƒZŸë~>@Ô}ÿ Ÿfj"­÷îû áCfì˜/FOhÀ顇³ýƒ]é¡ùŠ÷ÀÉ=‰)_-åFq_vÄöjœúsÃbO¯§-ìŒÛ?˜ÓÓ½]d&~îѱýƒ9Ng;cÄöv.gB‰Ÿ{ô;Ì>ô^'1û`PŽßžØ„Ó½_föÁŽôÐþ”Ù5Ny fÌq:·÷˜Ùó|un1³êûݺ×{Líƒ^ÿ}ˆ1µvÅ!ëbjÌqú”OdÂéèé|÷(jÌqzÈ fÌqº×;³v¤‡ò!³Vèi_ïÌ>¨qz´wfì¿$föÁþûSbfì¿_&föÁ®8„"¯?åÃÈ7àôè/¢`"Ÿ£Ð”¯îí=bò¹÷þ‚8Š 8=ø0JL8Ï‹£t‡™§G½›ï4Ýg÷t[¿ÔÞ‹z7ß?hºÏq¬÷ÇæûM÷ÙŽWCO›ûÚÄ}vˆS–c§ÍýVâ>»œ6÷µå85åÓæþAqÎàŒËë NëûÚžÄ^å^<‚ÓâþAOØ‚ÈË÷6ÿ\·òIe#Y'&}£GÿÅíƒ-Ïu¬Þû'Æñ`Nå|ȘílkW÷dù㢜¹}°%=êþFOÔGÑÃpâ>8†r6ÝÔ 'Ä©Þ_@êÝ´°¡¿ˆ³Êù½qbZÏß„£óEp˜}°-NR¥ÇhlÀIô>(Šc²6âòÕc~#Wù‡Ù[Ö{¢å©÷´?gÕvÁìƒm˧zþsœ¶‘Ï69Fæ%øù¢ÝÖc3‚c¼¶óºî˜Ÿ/:®ÉWA¹/Ê™Ÿ/Z‡ƒgë–ûA‚ãw '­Á ZÓS)LÊ'4áô(ç¨?Ž_싌ùù¢½×óÇYÒ½}%ú|?JOÚCnèï¤f=ÎμJ{OÆF~.é-™ÆµÞŸ›ŒÛð³Æ±ßŸ›Œ[ósµ¾ˆ>–ŒÛð³¢çId]GŒülÔë’Ø~ÏlÂïlº¾L)Ÿö÷ÑÖ‡z’.ô”Ë™Ðc”ÏœÄ*~ÿ`®—·àðûëqä>i Ž×Ç·×Û?Ø„Sœ  =5åîÇE»ðŒülYg^æÃ”ÐcäçîíÝëÄÏ™ÇÈÏæöõ¤ÂÏEûòŒül+ŸÌZ>~~ã¨'PµÞ}#?[òUi_E¾üÖüü$ñë}Ù‰oäg#=Oªí”ÐÓšŸ¯\ï„#?[è©´SBO{ùü¤*7Ž‘Ÿm85õe—Ä7é9]&}£X§çóÏ ³–q¼&œ¢¾ãx°nÝ Ñ‹ùÞ$0ŽëpŠûeŽi~£å:O1¨qLãÁ¶ëi‹ór“À¸vÜ’‚cVÎ hcšßh¹¿É÷ÿù¹m¾Ži~£u¾ œÐ4¿Ñ²¾|¯àç°ÇúçÇ/ø04®Öö«¦öNpŒóui žoÀ1ñsmûÂëO•r6ñs};Íç3Žq~£gœøzjïï6æ+Œô=ªÇ8_W‡ƒÅl ÇxþF?Ó0M+r>êÌÏdŸBa¯L¢îû­ "Çê÷†¦r&í‚ä«óü3Å!ôçëÚ­«$v½$2ñsK¿¸,‰Lü\o{êéq8-ç}äsaK"?·ÜÊp:ßßí§™î Æ{É為ïDzªí"î³?EÛ(މŸ[î›ð‹}% ³–ïámÄ!åÓY>û~¤ïÛ"r,î.ŸS=?Æp:Ëg/Òjw–ϟĆ|í)m뫨÷ÄÈϵãehV©Â)èIŒüܧh§‰‘ŸÛí#côåsKùSÜ'ž$FùÜRþPœ¨¦]4õ_C‚ÓÃ>¨×ÉøÅ}ôIbœn¹.—ô_‰qþ¹ŽOú¯>÷fúÞ¥b><1Ú»ïSHÌöÁ:ý‡®ÿ)øÐlli Ž‘Ÿ[¶‹bÿib´æåÓ ÿ=¾Q>·ÍWQï|ÿ`ÿvêwágû|TÊìƒúü ›^Zõº”Ùs‹ÞRÁ!ô´ÐŸÅû'Þ8 ËvaBO ýY¾bX‡Fp²ôøÖñE´]_‡8™Õ¾œm×× œò¸€à×#YòUYgNòe\d«¯²šà´]$è±×{`ÔŸm8ÖqS˜ôg Nj_•2û`Øë+ÿk\/š2û Æé>Ÿ2û`XÞ·ÓzSÊìƒ9=ÏñH™}°#ͳæùê|îS϶¬»¨œÿLòEù9ì}ž^Êìƒ9NËuž!¡'6àtß‘2û`X.—†y¶bÝršö§´Ä!ûþR³}p\“/s?h´¶µ›S“¾Ñ°^"Óã¦Â.“탵õNèÉNû`¦íhDß0Úq*v¢Ôh¬ÇÉÆj¾ŒØ+S³}° Gó!Á1êÏõùJ=Cùõç–ö8J;‰Ž#ÚàíÂl¬ÅÉÆê¼8ŸÈy³}°NPìoJÍöÁ¶8?íƒMõîUË9îÎÏ€WøÐhlÂÑò‰ð³êzï~^Jj¶6ìsQöÁ`LèI ô´œ¯c8Fù\;Oå“VäªÑ>X?ObÆ1òs=z§ª¤ã‚´Vß°”³º™ØOÓîöA,Ÿ°R>ü|ÑÞ犤Y/~®ìÿJöA¿®ÿÂòQý`±þ9åç‹–î§éÐ/íƒMò'ÔüLèaçåö>7#ÍúèÏzCHpŒüÜ®’s3RfÌóÕ£œÙyÝìˤ|2f,ßãÓ§î> ¦|QœÎús¡×‘všíƒ çyqBC¾ºŸ÷•1û`+ã¼Mf¶v¾'ën,ʇÈÕllâç>åc¶äŸ Ð[2f zßw“1û`ŽÓ¹fÌ>¨qzÔ;³F½çÙ2fŒzϳeÌ>u›g#ç5eÌ>ØÇ'ô°ó‘úËCv¾¨×NÎë=3àt?>cç‹vÅ!åÃÎí_mæÏG*¯×Òýšu¿yæ·8Ià<1ÛCòe<©{½û¦ó‘ºÏÏg¾é|¤îv‡Ì7ž¿ÑRnd„ãùH-åsFø—÷.g¶°ÜßtÁñL8ÝË™/Úê>sÿÅÎíˆCÛ);_´+‘æýƒ ãu¯ë°X7˜µ·šÎK!8F}£e½SzÚÚ»Ÿ„¾o·çfÑÞmÑ£ìvü,l»^è ìç†e¡ÑÞmÁ©ìƒ&8­í݈cµçfak{7æ«§µ½ê«rŽÁimïÆz·óaØšŸ'¶÷_aÛõøÖ¾N8 [¯ß0­'!8­×o`}Y×odQk~6GDpºð³}}Kuà稦¾˜}0ìß1û`Ø­ß!ö܌ٻâë¨3fÌqJòÌÖ_D$_‰§Ç8ż°~|ª÷ã3ãzÑœê|fÖÝ>ˆ8Õy³}°þþ¯Ä 't·ŽWSÆÏ½ç!3fÔ8=ô^fìˆCõvÿ`ùÞöüÌîÔ8}Ê'5ÑÓ½²û»â¹ÁÎÍïï®g²óEûßGŸ1û`å|c¾’±AgöÁa»ùÞTÛõH}1û`ØœËìƒaÿùf ËýV‡zOúã°rî¼~ÊY­3'ç¸fÌ>¶Ã1ñaÊø¹ÿ|³Vèh_ΩoÂé.Øù¢œÖçágihÀé1>eöÁ¨¿ÞÂìƒQ}ƒÙ£þú³vÌmÌ>XÉWûúböAÓ£¾ØþÁŽ8t€Ù»âvjÜ?ØdÿÊíz'4•swùÌíƒãVô˜æi3¦oôŸ?dç‹VÖI´o_ì|ÑÊú„öí‹/šãt.go<€º34yý'ÑÚTÕ¹Ê(0u¯3 ûSD.3 ¨?EDšPÜŸ¢À£e”˜€:·3J @½ø(ëD$£7ög÷BgêÞfÈ7õ`H~aï[Y(4•Qêç÷vÌZDŒxƉ'Õ‰7 Än@®ÙÉõ$HÓÊÊGéÕO9›ßIØûîoì×-êГgm8Û¯]Õ1îdÜ&ÛrúH ›Ù s veÄØEÈãRÖ$ä˜f­ÃIÊE”RÔž³ GpS 67­%d»=íä¬b“ÓmÈ#¿ûîïlœŸnG ;0Nç•Õ­6@ž‰ê€Šóœˆ¾Á°]…Za¥M„ï0Ô+!V(ê®TŒ0b׫;3RýìŽÂŽ@OÒxi÷IF걋Å0Ë@{lcñ|ÂÙÆsH[žÀ²f<ˆ´å ¨ÇάŠ˜ 2)r‡¶ÆlÉeÄlI›1­EÑb6Èv@‘™€¢þñ¬±%Ù{hlÌ©z˜é=fƒìÄˈÊìV‹t,Y£6ȨQ¤×ê|E¾¨EŒ³÷èû™ Rõi"Ì™ì¡D0dÔfŽÍ–56ë§Çk–Q¶ÎSŠˆÁl9e”]"‚Ù “=ÆkÌ™v[£Åʈ٠;Ñ%óA¦å,5èGÄí1dT7£%.Ÿ•@!¥ˆÙ ý=€"P†ä6H±eOK§4¸ RG¬³e[8›_”ØQ«eµ–í“2â6È=vnƒÔ@ÝWDyÜÙ­ÖèjhÛ uÄ:{¿EŒ$&ή]€BvRkÜÙf¸^4&˜ 2ÝcjŒÙ Óò‚?fƒÌÚQÄ«Ÿj#уfƒŒöÔ0dÚf®–üeù >m‹šÕòQñ—e-4Õ/Êÿ²¡(?u’_8Þ£ŒPŸQ6³AÆ{hþÌï1ÅÊlñ…Íl¦HGl¿§Æc6È ¿Á×c6È ¿ Úc6È®Ñù£,2õØåã1dW ªù3dІ,#H¶ 2ênÌôØ>ÈŽ…Mîñð|fƒŒúwG>³Aæ@Ý9Ûg6Ȩ¿åØgg¥vÍaHŸ–ÚˆJHŸÙ £6f1³yÕg6ȼŒô°=¬/ì€%ý)¢mÍgû ƒ6]¶­Ö2P&â³#SµÌîÃÙìÌÔVÂß’5vhjNQ&ÂNMíš5ÊÙìØÔ¨OaG >œÍöAvb ÉöA&ûÔZjêÓúÙÝŠÉeÄöAƇ¢”³Ù>ȨC2¤êSØÌY¡¨õyÖPÔ !9E‘¨C²}xõ'ûT?Jû1Îfû s b„íƒÌDzݗzúld¼‡ÁöAÆ{¨5ld¼‡¢Å®Z¬PÔ¡‰°³T;RĪŸíƒìšµâòJ @}ÚÛÙˆhþ>³Avb Émý×ÕúÜÙÿ ŸÛ {½@¨gs¤êÑÖ¸ ²EŒ³™ ²kÖ¨¢ÅlI›9‹„d6ȸ\[] ;ë¤O¦c@ldÔ£ÖØ>È–@±>‹‰ù >œ±õÙí¦óÓû(1dÇÂæ@Q]5ÿâ>ZŠ÷¢½³Av,ì ¤@{p6/#f©Ù£úù>È= ›Ÿ²ºGáû ÷hý|dÿsk|nƒÜƒ¸ ²Tk]vnƒì˜µ˜%ýù(ˆhõ§ >]vlâì>ÚHbäìm·Új‘Ž¥Ö¨ 2êÓD¨ ²êÑD¨ ²3m"ÔÙˆvlêÃGÔÙˆªÇÔÙˆ3df*£ú·Av­~ Äôì=&4™ RõéE˜ ²Ô¡‰0dÒÍ*Êš³Av¢M„ïƒìo§õù>È6æU C²X“=¦¡™ ²ÿMòžÏlaytÔ˜ ²Ô˜ ²ãeòŒ˜ ²+å#fƒìÄøˆÙ 5P>b6ÈŽ@Lf3dW *³™ ²+5²}ÚÚÙƒ³fƒÔ@=2`6Ȩ;CÌÙˆ0dÀl¨GõÌÙˆ2dÀlyÖº ¶€ïƒì¯úÌ÷ר¶2î¯CìÖÆ PûAMÀmýU¿€Û û+Z·AöW´¾²ÿ(;àû ûi¾²ÿ(;àû K@MeÄ€’=²FÅßÙÿÕ€íƒÌºX¶²ÕÅ(ÁÆöAæ@ÝÏd ˜ 2ÝC1dº‡a6ÈtÁÆl](1dG &˜ 2ÝC±}ùVí-£ ½¶2jwÖ]{°}aÍ?`û s míƒìɱSÂ=€BP±HÀöAV€:´5¶2êÑÖØ>È®Y£}?ÛÙ•"Úhƒ¬¦Ö:ÌŒá¸?E¬õS¤×ñ˜&ü© ²+k"¡‰³û4ZfƒL÷Pk˜ 2ÝCa6ÈtýˆÙ »Q†d6È´ÿ4tÀöAö¿-Ç Ø>Èþ×׈Ôò÷¡ˆf-؈ÖZš€z0dÕÔZyÅ >|%ý˜<ŠØ|vÿɺ Ê @}2›€zÔZìÕd­K­Å~ÿ¬x¬HìQF”³ãÐÔ‡â¨?ã#vÝcW 2Y°ûÃ=46nƒÜƒ³¹ rÂæ6ÈþKbnƒì@`Àm½/É ÀÔ£õsd JaHnƒìxö!ålnƒìˆbÀm½o ÔTF}ø(3õ¯qäsµìöÇŽ@¬°ÙY¬­Îˆ²4v«êÃÙìȨG[c6ÈtŸ¬Å ^YKú±a³Av¥ˆ¶~v d¹ŒºôýìÈœ¢mÝ™îѯ±‹ 5P>b7Aæ@=ªŸ]ÙˆÖ;‹5êSØLfï1¦e6Èh¡(³AF{ ŽÙ>Ȩÿ4tÈîƒÜcy~Èîƒ,ï<èÐÖBvä;B~kÿ½!?‹µÿ΃ÝÙµ°# €zUÒˆvÙ!Û™g­{£ Ù>È=vg„Ì™SÒ]­ ™ Rõ)#v«×_ø‡Ì™À]¹m€BPE+dû Óþ‡‡ldÚî‚ sa³›NûüB~¤ª»„.ô&’ßÙun„PÄlXá6È=$$¿²¿ 2ä÷Aö7†Ì™õèE˜ ²+ETf3dÔCB²³X÷8«>ä6Èñe >ݳAîq2|ÈlqcfÈlA2d6È ›É-³A{¨~ÌìÑú™ 2Ø£Ëf6È`µ†Ù »Ñ~Ù ;±îˆÙ s îË=BfƒÌk­Gö…ÌÙ( @©ú{´µ04õÐØ¨ ÒËÏ@èSF± ¨G¡6È Pþ· PÚ?kÃŒe >œÍlX£e6ÈüÀ‰|Äm ǃ֬­ ¹ ²áxКµ5!·AîÁÙܹ‡`ã6È=D-·Aî!!™ 2ØCag6È ¿ 2d6È ¿ 2d6È®!`ä›Ê¨Gëçg±z€˜ðç6Èp v·X1b>k,d6ȸ«–%ŠZNûå£ÔTØ-7TÒ_œ²ÖˆÙ ýn}?ã#nƒì6¥Á)bë³÷hýì,V ÔGÑbg±vä#6\gg±v"|ÄÎbû›éCvk«›N‡q¨ÛZL)Úã_Öe³û s ¶md-ïD ›íƒ– ¹Cõ³}]/•&kFC¶²caû>Í“ÙZÔöh"idêUF±‰¢jMšìD›;‹µ#/#ÊÙz%KŸÖÏly#m+³‰ÁöA¶º¦È"jÙ>ȸ[aã~¶2î¨ÐñÛÙˆj#ldžµcfƒÔ@}ÚZÆdö>µ–€zÕÓFüÞEÜé÷¦(â6H Ô½Ö"nƒTýZ 0ÐçÖ$ˆqv»HÄm¥[Î;4‘ˆÛ ˃âö2;â6ÈVÝ‘¥°g÷7‹EldÖMÔr>ÊúÑ£T"fƒÌz”³Aj ÝQÄl­î¦7Ÿè1dÐÿÐûˆÙ ƒn ÉjÙ 5Û´OX¢(&@± È6íS¢% ^|”î4¦YËú±Âfg±&mä9ôžÊ#vkÒFŒP RFÌ™ô¿.òzv÷;"nƒÔÕ•‘ (2Õ•‘ ˆrö°Í(»øëGÈ4‚̳fZíC5>2 [QŠ˜ÌÖS~ ø‘1m˜F-5¶ &œÍÎbm•5”Œ qÙˆ–Q`âìÈk ˆÔ;‹Õï¿y9 ŒœÝ.k~DË(ҼŒöál–µ}8›vGinDËd³Ì&@„!ÃZÎn (%…š8;Ÿ?2Q4Œõ.Ž %|$mÿüz0˜®–›íp7_n½øl;|ýæø‡G»éÅÙf;¹šyÿò×áï 9Œ”àZ³ó»íl#‰u9’M“ÆdP²a¾3Q‰8K€,ŽÜ‰Ý æ…:@¾ýõx¬Æ ØàùËÄò –±°Á»•Pàb±ãÜ –ò=Nàí£8=Œ·þI´T¡!£â%¨#àl=ŽÐb#MÔtpro ̈́DZ±¨BM›§iõDxPöžx'4²?.×ÇUäxâÊgÜsƒSϸ$§Åð6"œCŠ5mž¦ …0žƒ¼s‰(ñôI”`¨Í£Âk,±þ‡¬¸"gâñ»Í×´!› 1‘Sp–+·Èc+ÃëÞðÖÜ5‰+"qež©ƒãOœ›hš6\ƒJ.îŽÁÛÑð¤>éÀjPà¼Z'ÑE[Sè–h©K´°m¾ Í)m‘Ór‹œÒ;¥-vJ[â”¶Ä)m©SÚR§´eNiËrÚ‚NWÔ»h„£#ép)81ØW´Môx¶=®“Å‹ë=è+<è+<è+<è+<è+<è+ð>ú ú \‰ßš¦­&d›o홦­'Šþ¦ÐrÚú¡èoí0/·~(ú›BËië_föØíy^nPw{8…–Ó\°‡“hGc§hNiû¦B[&è>xã1.TÀ+¹ðž%\›€—áúDœWÇy\*îE—hš6Ðy<ÐyP=ÄSùðœ< ç<ÐrÐö‚›q¯žkŠFfé lIÂ⃫PðFh>è9è9 Iƒh©/©]'à l‹w N«p0äá†Ôhv€ Õo]®Ü)8­Ä™‚´uþ¸€Ë©KFõ.­ý®à´× Wï4\+ê È¡àÎ3•]è ì(\ê.rK]T¢Î÷ü}à´2çC§Ê°-t°¾‡I$y©ú Õbݱîûy›ÕÚœ=À>NÁiuΜêB2Šk€‹ˆƒ2󓺪HÝò]æ–ï2·Ô¸wy·èä5 l }¡}¡}¡tAWêžµ¤Î‡nÖ̂¹-»ÃÖÔ¡KÔ_í@àƒ" Ö¤(8]v ø  ø  ø  ø  øJ¶õAðAÀ)?´´´œ“ö£|¦D«v>(Ü%QÚ\«¨5™ÕºŠ„Š„òÎyÍú¨\ˆ¿Qé}§•;ttttªƒ¤@ñAùÏIP@ôw §©½Ä½Ä½Ä½ú_pz‰:‰:‰:‰:‰ ˆ ˆ ^‡êg¹R¡Õ;ôôôôô?S5™¥ Úâ²,‡s:FôÇN‰þØ-už[ê<·Ôùn©óÝRçvšÎw;Oç÷›¨³Ã¹¥ÎíTïv®Îw;Yç»­óÝN×ùnçë|·v¾Û;ß픟íA]@ì îÀ-u{–]Àá´~¦ó{P÷ÌmÍîQv˜råpn©{î¶fŸ»¥î¨u˜v.¿‹ ª¶äTs÷‹é»lD.zo äó(¾[ý.p«ßMú] fú[ùÕï‚6ú]0ÎZÖlàbþŽÂ9å» pK]à–:·ówÛù»Àíü]Pž¿Û.vK]ì–ºÄ-u‰[êR·Ô¹¿ ÜÎßnçïówÎ-umçïÚ¹¥®íü][8·Ô=wKÝs·Ô¹¥Î­~|〺B¿ ¾qJ]8vZváØ-už[ê<·Ô¹ÕïB·ú]èV¿ Ýêw¡[ý.t«ß…nõ»Ð­~ºÕïB·ú]èV¿ Ýêw¡[ý.t«ß…nõ»Ð­~ºÕïB·ú]èV¿ Ýêw¡[ý.t«ß…nõ»Ð­~ºÕïB·ú]èV¿ Ýêw‘[ý.r«ßEnõ»È­~¹Õï"·ú]äV¿‹Üêw‘[ý.r«ßEnõ»È­~¹Õï"·ú]äV¿‹Üêw‘[ý.r«ßEnõ»È­~¹Õï"·ú]äV¿‹Üêw‘[ý.r«ßEnõ»È­~¹Õï"·ú]äV¿‹Üêw±[ý.v«ßÅnõ»Ø­~»Õïb·ú]ìV¿‹Ýêw±[ý.v«ßÅnõ»Ø­~»Õïb·ú]ìV¿‹Ýêw±[ý.v«ßÅnõ»Ø­~»Õïb·ú]ìV¿‹Ýêw±[ý.v«ßÅnõ»Ø­~»Õïb·ú]ìV¿‹Ýêw‰[ý.q«ß%nõ»Ä­~—¸Õï·ú]âV¿KÜêw‰[ý.q«ß%nõ»Ä­~—¸Õï·ú]âV¿KÜêw‰[ý.q«ß%nõ»Ä­~—¸Õï·ú]âV¿KÜêw‰[ý.q«ß%nõ»Ä­~—¸Õï·ú]âV¿KÜêw©[ý.u«ß¥nõ»Ô­~—ºÕïR·ú]êV¿KÝêw©[ý.u«ß¥nõ»Ô­~—ºÕïR·ú]êV¿KÝêw©[ý.u«ß¥nõ»Ô­~—ºÕïR·ú]êV¿KÝêw©[ý.u«ß¥nõ»Ô­~—ºÕïR·ú]êV¿KÝêw™[ý.s«ßenõ»Ì­~—¹Õï2·ú]æV¿ËÜêw™[ý.s«ßenõ»Ì­~—¹Õï2·ú]æV¿ËÜêw™[ý.s«ßenõ»Ì­~—¹Õï2·ú]æV¿ËÜêw™[ý.s«ßenõ»Ì­~—¹Õï2·ú]æV¿ËÜêwnõ»·úÝ[ýîÀ­~wàV¿;p«ß¸ÕïÜêwnõ»·úÝ[ýîÀ­~wàV¿;p«ß¸ÕïÜêwnõ»·úÝ[ýîÀ­~wàV¿;p«ß¸ÕïÜêwnõ»·úÝ[ýîÀ­~wàV¿;p«ß¸ÕïÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêwÏÜêw‡nõ»C·úÝ¡[ýîЭ~wèV¿;t«ßºÕïÝêw‡nõ»C·úÝ¡[ýîЭ~wèV¿;t«ßºÕïÝêw‡nõ»C·úÝ¡[ýîЭ~wèV¿;t«ßºÕïÝêw‡nõ»C·úÝ¡[ýîЭ~wèV¿;t«ßºÕïÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwÏÝêwϵ~xãQàyà|púÝÞI¸#­ßunƒsZvGnõ»#·úÝ‘[ýîÈ­~wäV¿;r«ß¹ÕïŽÜêwGnõ»#·úÝ‘[ýîÈ­~wäV¿;r«ß¹ÕïŽÜêwGnõ»#·úÝ‘[ýîÈ­~wäV¿;r«ß¹ÕïŽÜêwGnõ»#·úÝ‘[ýîÈ­~wäV¿;Êçïüt´“pßäówŽàÜRç¹¥ÎsKï–:ß-u[ê·Ô…n© ÝR¹¥.rK]ì–ºØ-u‰[ê·Ô¥n©KÝR—¹¥.sKÝ[êÜR÷Ì-uÏÜRwè–ºC·Ô=wKÝs·Ô¹¥îÈ-uß8 .ðÂÎ)u¨@9ÆsLŸ[ðÓçVÉ<Çô¹UóÏ1}n=ÀsLŸ[UðÓçVÙ<Çô¹U÷Ï1}n>ÀsLŸ[•ðÓçVé<Çô¹UûÏ1}n?ÀsLŸ[ÕðÓçVù<Çô¹UÿOÑ÷ϯƒéj¹Ùwóå֋϶Ã×oŽx´›^œm¶“«™ÿø/þnøŒ˜Žãp<<¿ÛÎ6£áùb5}_ð]¾¸ÃáxÔìø°•0À|óùˆ”°.ã.WÞ x¯‰:‘@f)€l@ZY\¬\¢\JÞI7à/²JæÌ¿§Ê«±` O°EÙ¬8ÏðÎì,í@Ù„PNaXr‘zÔ‡@}ÅBŽ#ˆyêIŒBé0B¤"G±z%@‘¢´p!VJ„¨%«ï,Î » Ø€²PqáÙY”C jBʾ`‹Ê/†rëù÷s$Õgö€É¸dÐ*µÄ»·eÐ ñk¾”-Á 4£$2„¥¿éh9'P ¶”țP~)‘³§añ-…¿i¬Þc8H³šecþ;óVße­fžtŸ“¥gh)â%s ÃÈ@fdfÙÈÁyà|pK¨_•þÂø×)[ ‰8DNH* —ŒkšŒ(Ø"¼ÒÂóÆ ºÉØè<¯`”zx”—zÅ([ÿ&¥”ÊÏ, Pø òx òx òx òˆA£A'‡ê/$às*2`¢ † ` Åx¨¨à;PB¾ó ö ·—.â9*“öXCŒ ›€K9@_Y€2DGùï²eD:Èè!ò¯tO+%ÄÉù‘ç8ÈO”T$HªþfÆïB=2‘lG8¡[Å‚|©_YÛ:±` Ðx<Ð;ˆXé ˆW?¤•cþ›×ª%¢´ëß²×ãƒÄôA”ø F|Š> B Eä7Dù¦a 1჌ÛÇ.«¿Þ(Wçb_ü• «|Uõ"ãûÂMºDýMGÅ»:—‰¿$¢±6HKÓû"ÔìÂÒ_³È[‚)@@äÏíþºF¨l‘ ¶È¿C÷A„û ¢¥Ãßt {†½#ûÐñ܇,¸c oÌùâ‹Í’è~Òþn°OäF€¼{-Ä%£êPâ–გÐ× ö‰,_ˆyÎú 3Å /²°È"h3Òa™€ãƒúÒ× Š‡¬@JS?ç‰¿à“—úŽä{%"‹vÑh×  œºÉŽÉfY |!&:q…uÕ¥à2éòíttK”èŠè(Œí€{h÷ɤó±V@sÜǹð;D*nÀ_@á€Î+æÙG—Ô– @¡´qX ~&ÖB‘…â!%ºs¾3÷¡V~~úkã…À—ÎH¡Ç>Š¿¡r¾z'çN0¦ À-£2–®Äbª3€‘VáÒ—aP„HŒÈ‘É¿ÝÝ oD…·‡(°Ön¬¥àþqfWÂb®3ÀÝ:{¸ ´rù#&UÖÍðz+—ÝÀö¡­ë+nP}é)¬A«  DÀÖQ¡wºT8Êb²3ˆ0¥þΕó”óɻ ª/ËM¢õÅg£ƒrˆcõ;.}‹…SP@{¸–iîòšÁ AA'ibm‡ò"i¥_$5JŒ H+«¦Ö(ºÉ ÖÝÚ* öô¨>¢CÒõo?QêvI^aÕ;¨ïD)~lwöB$’ ¤ì<>!¦;ƒò›;h`IÜÉ Ì’ÖnÐ%ðž:‹©¢2n „ .*¹ŒZ í@Øu¤ƒGnÌ‚.8!I¡zÓ°•)’ÖUU„/Ä|g‡ *Í„Ãù ùÎîô<þ”_—[»A›@¼@ †ˆ|ï)*}‘åÌ{Ê\‘¥¢\èsyYTLLœ ßðŽgkP”n)õ,låH!FÊÅ—Èï"ÿX&³F×iµÕ,•óFòÙ7ºröðÝ€~°E¬sƒ6êÀåu¿ås þz äYÕ<ò÷EYó|y!Öñ‡-KµŒŽ£Vn I*§‚ï’Zªò,¾ð ¾H•“ÌzãF§Ã Ê/¤óZ»A›@¼€°Î Ûó%•]tù#­8cÙ¨H¡WX®:ÿ}]^ˆ4eIjØÊ0ˆWŸŠ(LÀKÔ_?w”/üœ/< ” 'žýq­ËÂéÊò é¼ÖnÐ&¯ l *}Ee ²>yO™+ ³(úú%yQ©?’`~`øÆ)äWNÝoç Q¨©Ñu‘]}ú×@5{økr,kêÝÀÉXÿf¶€åwµ´q•Ú  ìˆDÞ}áxŸ½§Ïa@å…¦ÒX+öÈa+æ#&—Š¿M|!æ;Ãʆ”¹Ï^­«ßƒò éüÖnÐ&L` "I%f5À~¤\¡fÝ,wåç0l’4¢‘Š‚_yÁ‘H2PÔÊÕj¾aˆ.©ql^Ëóa”DP‘§’ŸÕ:™˜ü=(¿èêmÕ%P°ÎË) ä;‘]llQ¤¢¼dÀP½‹Ôs¤–WCs§͵UPUdA “Ž9JZ¹ËsÔ,¡êä…˜ï #.ÂeÒÅãF'ˆP¿åÒy­Ý K`¾rHe ²í"k•R¾ÈWw†1Pg‰çdÜÚ ê>²²êЉ‚¶¤ëp…o…jC ìÉTáÉ‚”N¬ü›ÙX…J´r…š˜£†FÀ6ò"Íù"‰z»Á>‘]èl$ê·ÉUõò7E…)ð@Ù!X &õÍÅï@p´r‘p•Zé*öݾÈr¾H¥Ó¿é;êL呂]\ ‰ @¢^¤ê·Éeä7)“0>(9‘z¦ôŒÌ¯:Q«ï꼅˹±œ…ûĘï 3`a‘wí’’K-ï¤Ї€fÊÅF7ˆÆãQ;çÝ ü¢H•ÿÆ>¸€ü …Se`w’7ìßš\/€ _DãÈââÒß²cö‘@ÌwSå2Uµº:«QÐéê)nÐäzx”3m,[ÇÎ%€rÃIF‘7fN¿ÿ8ÍÝ¥¼ó‘l÷©|å‚Ü ä½,\¤"ÄÊ…¥°‚¬Æ6.U.c®& ÕÔ¸cYPùóÇÒ•ó¬ßSÇ ±œ÷µ@ø"à|( H6L”§âànrdüXòE6ÚÇÕxcå<å =#ö|á±¥¾‡»·À…^Dþšd, $Q/ò»Î…¹Ї"@Z늚à|!æ;c«¯ÙÙÛÊÞ>0ŽÕ3ù~ÉÉo9@ßÃâcj×k¡×-b˜;IAÇQa¥ >?á 1ßûÀXÌa¾“ÖnÐ%ð§€öàg£jÖ"ò>SYœ«õ!7¦*Zà 7ˆ`×VÎS82)¾ˆÚ9‘=î•—­À¼‚Âb¾30è ¿AÚÙ úD2$£‚J}5ŽÉ³!omœ•‚ªl÷1€_B` ZHåE€X¸&ù‡ s”/Ä|gBáìá>@Vï¢1sƒò‹" ðBiþ7ŽåÂÜh Ç –f!Bä6.1ºíC[× %.+~Çcá(_ˆùÎ8†Â‹3c(¬ *†2ˆ! 1€Å1ËOh7« ïá>-@^­Ê Æ5vÎq˜@Š¿¡ú)“¿‰ú+7iþÂì :S 9õ¤CPõ{¿L‚§¡ ŒÆÊ5žÅòÆ»=oúhòâîb<“,äw=/€êâ>@œn ”¯á¢´ëU q†Î+½óW›%ûðE¬®0³ÄYhxUÜ ú2nxnèâPgÐR³”ß/ÕÁ èåTt°ÒÖ úDj`C¨Lf+ÍY |‘Þ«ûEL>;.’±UVs·éG§€ðEö‘ù"c.à ’Œ#%p>{­ôåÈ{ÄXù"óÉ…KKj@k4¶ˆ¹ÆóÑ(ø”YHU$ó_ bûë" ØòÀyã’ó”ó• ” …3豘ïL¼hTïâZwtáyPH^*þÊ—¿óô2éð:Eܾ'þÐ/l¾_r@;R­œË(ù"-(€^?ñõµ’V€HüÅ‹ «±px±!ÈS´fA»T¹" e¾ó‰ÕÎ #(»¨ ð/”îHȫф 3 .Š &Ȥ ÇùóQ—„ù ©ˆ¿By…X‘A_Opþ"A²„ósW†H~"A#t¡ú!@Ì)€€ î“(¥+ª°8øÏ_`UÆž@5öÉoõ÷§Š’Ã’ƒü‚ˆO çJb ;cì€ B¡ kþÀg“K`ØÀh:o’à³RÞ _È›Ù-m娽Ç(€œñ(£}œ€•õžn$Pu]š»ü¡_f£â9©ÜÆk$5k±:ÚGb1ß™¤PßÂù£â·é] žµ „T_–#†¥ˆ>ûN(ˆJ‘cò ùO¡¬°\4 É9™WP‘ù%ŒxVŠì RWÉc¬,FßP‹#O q¥£}PùÛÃÎŽò…˜ïL``«VNé;ñeª*‹ £¡ì¤.£ó*®øî37 /M¿‡Ð@>ûŽßù‹0b®é}NAùE[§³4¨lÈ'‹¨¨Ð Ú’ns€r­49Êr¾3¯® ߥ0´4¹°ŒÔêwØH‰”QÛDfYêZÖ,ÐÔë¨(”‘Ë)t΂­ÔËÀúyСÉQ¾ó]ÊÔWªµ©­ebÊsù½ ¬Uöf¬Ú¶aK¥u­ô­ÎÚ2°ª)å 9ßÙ ¡R=¥0BÒ›%˜(®   ÒSÏF©gc¥ …q{7hðg÷3´ _d­øÂ«ïåŒyê-z½ÎÝ@ !lîÅ;e¡½K¤~Ñ)’]fÚtÃ*X’»}aj}4°± ¾HÆmøâ#jãF7°}hë:eá#Q°ï€fožÔ;ë#¤^XëMÊ®|®å ü¢«³¤^ÔÊ Š‡¸u¤´Ò=\k€OÂþ—%/>&á‹à~ðEû±:ï[L?xF…Ö0QÐö¬ßU(è]ˆ&µ¨n¤}-0ýK9/®4IBÉT!QŠ‹—ÉÔ=»“á°Lȃ̆RJ™óÇùïA9aËMÏRçª!“4Râ)¾úoÙ•4¾²T^6PT¦NQ©’÷*åa&]…÷½æ2°¤ÖS)_ˆùN{ä¶Í½”B•Éü‘­ê ¾°& ¬ Ý÷«¶:·:RƒÕ2hÃÚ*\Ι,¯y£UµÖe@+:pþ [# ¿)_Ä”/Ê5P–Þ©(7Λ;k­…ˆ/ÿµu LÚ›‡]Vj‹uè ËoN‘þ;(¤s5Mä[³@ë½°îšÿlúèI›ñH÷’¡lZ”I·ªä«E*uLW™—NÍãYf\­é¶é[Û<¨qηLEÓßý'_ˆùÎÔ‡Ô÷p?µ›9›müüZßþ‚³ðé ¾HÇe¾h+µèßA›€E³ ÐÆÔÃŒNMyn´›ÙRlS FÛaÐ\­«µ‰"kOf(SBùÂûòä…Ñص+ÆÈûW]8³5µ‹ð…ßÇÎîÌDlh› Ú0ïYLdÖÕT¥ZÛDnlM©ÂX„/jæ;ëo ƒ¼zí¿@™ÑU†8¤~iÚ †q>¸@ýeóà©\ßÇíá>€ÌŠùPeú€ï÷p_@ÝÖ4e`æ…6. Ù[Ž¥‚ƒ œ¯œ×ÒÂQ¾ô9i ] vÓXîNcýÄÐׯð »iïH,Â&Qþw&Ð?$rb4M ’z¶ÿÐ@1!Ü·,"bJM.õK.n¦@JUœÈJ—@€‚¨Láw6NÔJšy½Ý`ŸÈ÷€ð…˜ïü¨å#¡ÌW.P.TN@5Š@ýÜ`ŸÈÿšÐ62hY¦×/Ä|§I*eãqk7èøãH’½Þn°Oäàb _ˆùÎ}ÀDÏ–ƒ‘taÉ­Ü=`,Ý¡ôu Õ´Tì98„/ÉÑh× N1V™¡lÎÊXí8p€¤Ö‰£]öZ$ûj!ÎØ´Gø"•|ñQk%-ýýXÕºg­tK±|®d£}Üçàã‘LòÅ—¥/`o‰ÕÀ¶O·ÌÆF€‚/¼±¼ ýcm~hvDâ|ô¾°^þ1Æ3žз{øyPÆðCT"ìæ~”1ÉÐéìá,þ¾{SðÐ €2Føãà  Œõe f·É#(bá¢Qñ]\z6…A}¸¨›+$ÊEÊáï´äÊc‚ëQ¹xLœ§pSl` ²RÞÃÝK€H¹X¸.]‰'g>c(záÒ^nÐ7âÇH:¹Aõ%pXÒ¼"K<áY¬×ÂY«%HÒÑ>NdIHV(þ2—F…ÓÏù÷3†œù°‹n`ûÐÖÕ$—Õ—bW‚Ã=\€ßèÅôri³ªÇ¸ ªhÁÀ`× À*1äÌgŠ´iEŸ¦Ü k„ ©l$#žµØð^>² ú̳8¨oè„¥ãßD½f(È¡Goã*L¡€‘ç*'²¸úÞà€1üQ+gˆ\a 9ó™Aéìá>@jq8Þ¾ Ïí&.+)µ¡&#ªß¯5îäéôǸ>r<ö‰gf“nPËO~P8ñ<<(þjÊ&b F½/0ÌŸCîE¹Wzð¯E\É%‰ü)í3Èhåh†Rô€eÇh5¹®‡‡,ŠöåùÒC@Ì¥ôDÀ(÷D˜–Ù£|—èåèM»žkwü¶¨%iï=Ç}o¸×Î-ÔERgôPU;# ~ÄÎc[=UáÛ1Î@»ó§¤RB9Ná_°§\0{ŸÐçbÉú(DSÆeÀùØ$ºxmDW&ÒG}ß‘7Ø¡B̾€{Qتh>…½+ê£Pè–mcúcŘ|ôÀGŸ˜Â*ÛPÆô0æýkò‘ó,SÆô;2æ=ðQÀvlC3ø”ó~V|äœBʘa c>ðÑõìÏ6”1£%1øègÏGÎ)¤ŒÁ:fWFx£}\-@9µ(ð+n`zÙÅ}z€º¹F?Q̃ÓμÀÀ>€”1•UÆÇ‰wgÞà`@ʘÚ:ƒÖigÞà`@˜ÁØcæäOìu?ÀF0z4Á_3÷Ø®?+z2òçèd1ÙG ,',- Tr \Ìæ·[2Ljò3¿âL‘‚qn,þäC½rRëÇZ?Kjßãß)°-¢™ßíãîå aìøü$¹Hƽ܀½»»{ñe"eŒðçÆ_HÂLzƒâgá}^öˆØãÀÄñ¿8cxã‡h8¡x 3ìá¾àR0²Fâ†5öècïI¡4ªÓ5<1TAã…;Ï= iAC{É;4±œ< þ§Ì£&½!8òÄP?ÀCÒÃÅúAÆÑ ±A‡žú`%ð£‡ÓßhZB_zI GÓïðk â0/¡Ìáe5èÊãžNbáhË&߃"J%H¿2˯hœgOGOŒG¡ô’,T›¬ @˜¨HƲäŠPé‡È˜ù“ñã´ì_¼û—P’vqÆÇù5.’ÝEãÞ,1é8ŠËËw¢iˆ‰jEãHl ŠDä.ž¸A5#­E¶ ͛ެeó†xÇcƒ´ ¤Ê«hÎ"ñ'¥†Ø¯6Ž}»7lámi'h‘e¤¨¢\$e(hb|cUÄúêžÖw¥®îøðByéàh{Ýs™O¤7èzŽÓ+qØÄb] ºï½XG‚Mr ²-¬ßaq$rr§ŽI 0T“ƒâN‰—Ç/´&Êj}|,ø¶—'«™¾ÚÏ൬ұ^súÉU~ }Ã-ܾ³ü.Ía°7ù¬ÐÀÀ&žTKÞÅöúE¥éبq´öBß@žß°µ‡hØó8ó¾pÀØà% ãHµÖ½1RÕ+%˜*Oh=ng( „“~çžÜ£¾è˼äÇKI‡N%¶]úù…UË€c=K­+“Î<€,Ãã»\gÞ¸—ŒÅh.õyƒ½êXPM¦§¨]8ó> ª1ÜkSUìüy9`Ü%žkPpæ}ÀÔì5 Bµ\;Pwž+@ÁFâŽû1žTéÎûD€•&Ñ %«mò¾È.7Rë¿Åt°3ï³Fm¼AÛ€ŸP0§+ï ¤Œ©Vƒg(Fy®‹ Ï{íäÙU$a¸ræ}"ÀrV<œ|ŠZ{òÜ5®#<¬ÄÔâ›+ïKÜGU &#‡Þà`@ʘÑcZ½6üSÖVø´N´¨£Ø«ƒÒz‹¦<<á^xôìrŒS:ËÜäm}€–ä~œrýPÖH” ¼aöpG%ºü¡>xZwïSò,êܳÈ ͆î¼@™0éîáûfñ‚‘C¯%`˜{QƒÇØQÚ2<<|ÞçPì;¦?«}~ÂPñX1Ê1gÞGDÙåÌk hà¢Â#`¥/ûycjýáœÓ粤§X…%îÄË=U"äÉP;YÙË¡¨§7¼2yF¸}¼À"k¸‹7÷ª9Äd4.Üoé5tˆx§UæžYÜR$lÅÎ<'€qOYp7•;Ï `F¼{Љ€bŒ¬ØÆóÚ„ëØÊ«ô¥WmE¸%Õà!2»ô¢{^µ«hì{•q!éºò¾xÀR} ï‹I‹h¸ÏÑ×X†Û ›=„Cnsæ•Íý n`nö;*;îÜtçÀºv¢²×Y^A¬¸Á»‚óg@¹F"Qü®¼Àïž3ˆS‹‡aOàÌûò{•#ÄÄ~Ò™÷åÖçá61¡21ÄØ«;ó>2 Ÿ{AÙk<;Ba·ÝÁ«ƒÂ½›¼DþB@lμÀÇ _áîOwRKZì–ôp«£;ñ¡²-Ô…o (’Þ=ôŽ{Ka!øü$=A€rË™ç°Ì7‰2$B>¸òî æ~¤¹—±"¡zU²ñð¿Þ§ôî}Ìï'ðâQ€‡è)ÇøHÍÞãÎEwž@xƒÒ³Å«Î³9nmtç5ݼþ¼Èè} Ï=¯‹' Þš¨°¢Üqî%¹‡õçgÜ‹Iêˆ ”ºy2¹„ÿR©Ë^ÞÇû~xûçž›iðqU•;Êp‡×Ç ¸ Àp¤=ú ª¯öñÝ¢4&90…«%?báÊ%õ>–E•Wñа¿ñ#6Ü åVv"Ió‡ÔZ\Õ”³&ó\‹P]D^*­>šà;y‚ø˜ŒbôC°Zï“æ¹ñѪï£A_yÑÈŸ2­[ý p<Š(ßÐÈͱ¨ÈŸâ3væh÷ÑîëÃ’}4† ¯±côÑP.¼ÏÝ·¦ÒLá£ÑÞ÷…Ü Ûx%âŸÅ»Ø–\’{ÈSxÞ§/Ž õÑ\ÓÍ“©fH„J½jŽû2ŽSΓV m9î¼/ùíNÊ‹j½ÿ^@> Øg¬w´ïÐDSõ«±zýTpLï£qŠSV“¦  8î¼û(”.´Ñ(/¨xyHB™Â‹G!âp&ß—Q’ÜKs/ã^Òà Z„Ñž)‡¥|Ü3¦“6 ¼aÛ¡÷ez#æù-½R ñ+€â9̽H¥×©n4tòlPô©]ÝÇã³HñY2rèÝ'À½ŒÿÊ`:ªñЖxž†©±":yVÞðýÑ>®ðy…˜´0háqçõÔT⤮¾òä«'j8É¿”¼Øö¡:ùƒ`Èa<4à(Ïãžß.³Ÿ¤^??å,i.ÐÔáλw€!÷³¢m©•'¢ ï¢)(ðMÌúÙ«ôóP¦JïÉÍ./Ä‚+ïc¢ÉÑ÷QQ‚vó|»7(¿ìZ±å¾©4 h¨«÷ „ò÷Ì`<°%j{¸=<DÁÄf/«<É7Iî¡^†ÆO¹V† Ç:šÆ4h jŒd¥Ö†V¡NÞ!Ͳñ}‘fh“káå5^ª=\KïãÆÜK*^‘áâu\ö.Íá³Aÿlœ%gý4dh÷ªñüÜ+ÞÞÀú¥§÷)QРÍÒœy¬(´'š¿ŠQ-Z&•—æ^½f 5оUãy¹Ç?ˆ¸Ì˜^î㹤 é+†4EC\WS`ƒÆò, ùM|n» ÐÎ'=IB$½þ™(¯O;Œ ùïãd2gÞϰ­f÷ù´p±}¸”1Â{¢x}~€ òÏ•÷Ñ–]4dWbtòÚ0‘š—G{{[ajCtÄköŠ 3\óPïÉ|ÖÃY\­ ãÜÃÎ×8I½¬/W²à“..©°yƒúÏm€”1½Æüt€_Æx×å€ÙSfÜOëÎsJoPüìàEÜ+>• ·ývòîo…~~ÊRÂ@‘ãÑ>îàç@#übŒúæâqî<§€Š@óvñÊù ±Ð0Ü>îÎc<¥¬ ŽSø×”5Ž»ö;yvîÆCºÝy® }¨½öv-Æ…±âBÁ÷®¼/µ£/Í=x"ò¼²€x.òí‰ÈúDðVúLˆçtò„̽ão@ž³OZ¦ –°(&‡?»zùàXG¿/Gù|~€Š ^²—7Ø¡05L ^¦=<Œ!ÄSBqX|ˆ'NtòÚ°ÔÃòÿœ¥ðÜ wÞGÄnÏ™ç0–¯ææñ¸w^K@”xÊHˆ'ïžòÜã5m éçÊ{lï•+('ÆÈïx&Œoàë#R¦Tsí-£×±{ ‹žÑC½`/ï4á{â9E!DÆñ(ÅsˆÂއ!v §å´fjÅ,ÚŽ+ïð° eÌð1?6`I©¬x^‘;ïð° eÌø1¿LÀ/Cs­ð[Ò½g¾¿¹{p@9äÁð3ñØÄ’‡Mïkƒ•¹DLê§ð6ͼÞn°Oä€{@#KÆøÜ$=ÜÊÞ}a ”YÒí%”íóHušŸ‚š=(HK®M¿‚óÊÎ<Æ(j6Üq €€{2fðÀ˜€Ÿ°,~)Sª©v<¸Û÷øs´ôà{’dcȨ;C6¨}) ñHû0A‹m"Å¢9<¾¾ä}r î€óŒ˜ORo´{øyPÆHã#DÞ¸•´ hY‹&….^Ù‘þLYä 韀2†\wŽ=ÿî3ä…òQ)hSª{7ýÏ@#SÔŸŸ¤ûð6x—#ôã@PÆðãgÐKb÷Ÿ14Ý_hµìà…©öˆÎS áoPzFõΨoQ ËJhžpRöùJ×FÉ=­_çuƒ/·º†œ&㵚î¼qÀ/ò,<ñîËÑD²—£óο|€lœŒöq€/Ê3ªŸ %c„£}°sOkÆPó¨þh× 0ºAþEÒY6äî£eÁœ%Ò(Ù6KF€.YÚ¿)cdœ1H³ä±Ežªy…¦IÒL«?Ðågú¾E¡ªŠüÕYªd!О5¿øÖE#KÆ0ó¦­:Êïy2E®~oâ,×ÍÍ–¥Ú,Py[[¯­¸Éeëúh#òê»’vyì‘§Ÿ_skª7‡Y0giÿÖEÃ7KŒnytY¯_lsû´.ÊA7åóÓ57隸ÛzõÂýê¥}`cJÁ9sV™Êa;¡Ñ£X úS´ÙNu½W)ˆ”j>BÝ3»URæˆÚ2GmAU¡‰‡Þ‚³éBÙ4”Þ øéÆû)7©ÓR\2ìÌ{|ìHSÛŠÆêÊûÙš ð~Qø‰[3¦µøÚ2fZ#1KàÂ@—æ¿„W]ãÛÍâc/ź¯}jå³²~”qĬò0Z¹,0¾o gaå5O6{Zª?±:Õ9õ9µFn ½Vx¹}`¥¢–&SÎ3?íã:)žôzCt¦%Ç>|òö]û†Ù}hŽC,‘áPÜ™wY †Î4x¡Í‹”GàâQ7¯ìÉ}`§ü¸Ytf¨%;óÜf® =Cwèλw€^ÙC@ÔÍ3•^4æóŸqø°ÎÏS†#‡Þ€zqÙCÀdÔÍk#µ¢rÇBéÈ¡ç$·X¯ž=¯£WÎmäqnü°ÞøÞDA0²9 P÷® É Êræ:ò‚‘Cïð° eÌô1?2 CPÆðãg„B²…Ž<Æ'r²Ü¸Lá¾F&ÀØ »­»¼ñù(7‰©q×ìzߘ©ÂVŽs®ê‚?W¶¤\*%ô0ê)N«¼oáñöñœ˜üIWJ‚ËÄÙ¢Uq+¬PIžº½rWó£PËìw.¦ºâcÙ8®Þ«­Þ½8ÎX¯]RÿĤí%¾îÀ8 ×€2S¬˜ ‡¬e/3¼kåÙ{{{ã²wß(|D@ʘI cº&¹Êm=·J@í2Ë.³Bá'fÌεLSLÚ§^8jë†Q*\™ÊÏzYÎh^uæõ´æîЖ¥ciW8!+½}HS(ŒÉÔ\ý¾…é ›¨æñÔÉsÆv¥†7ðö¹9üņݼA÷( €„Ó±bÀ(ç†ØA´g—ÌÇPìÉâŦ†Ð;G-¹‡,ÒsÃnŽû@ç ‚²›§ØíKoÀ?@ʘÚ!ÆÂ®¼˜¤bÎW5q|jrÝè2Äø,ùüyòRfÌ40c:¤¸ÄFžª¹‡…Y(J«ð¬Å(ƒdÒc-ÇH_›vGÝÇË$©ÊY©¹!‹9تÇ0ü‚¤á=,ª\Ö‚•;xƒžM¿†ûRØÖ3%Ç)¤l¶4Õƒ[ò7°¦ý)¹¨.õ{Íçÿ2€´/,ñeü .÷*؆S®=>¦µ(µÚK?oF›&­E¿PÕ«ªšG‘Í nœòa[[Jý‚€+ªŒó ieFj-_LcšÖpUº;A™8sqôÈj Jœ§Ø†Õœ†ÖIºÇ²7 Êéƒüè€-(ƒZv¿¯0h@-ûBmOÓBawµ—6D© —Uꨄgfä ÔÕLgÙD˜9 c‡Û©ô­3‡Ùøá–“Ÿ-@…÷ŒÛ¬™eÞ“|Dk4Zö‘ðvÀb¢Èü> `‡za¬}¡£ÃýCä”’Wj)ÖÇC¡±%vo=–!îP)”1ë6aôö?à^}­âUd³³vÞI_‰i-ƒ/£q~|@£™º™…œŠà½+¥I«ì$¿;i•©óy<5ìÓ΀Q˜©“g;w޲Hö°¤øðóŽqoϘïí ÆÂ0yãÑ>îÀÀç?)“2†÷/ÆÖBùr²ðñ(cøŸ•1ªå^PÆî—Äè-ïO¾`ÊáýbŒu€½T§Œ=0Æg¸GÇ´SÆsÐc<6Îç ðþÙg›äáÒ…óþâwCÏOÿg¶^¯ÖÃ׋Ùd3NWëõlº-‡/‡·ÓõÌ?›/·³õr²xz —óKõg8î?yûúõ«7§go_¾z~„m€~~}øæÈ?þéÑÉ©ø ¯–ÃÕ¥ÂßM/žNñË¿Ýû‚à'Ò÷ÆOÃä7›õô7:·O¯¤1†qŠ¿ð¯ô׃8ù7¼P8 ½Ä |xïÅ¡á¤Ýøo·ÙNÖäzµÚÖ…kú^ÎÜòï7_uý7øj(þ½ž­OW7·“íü|1¾™]í“õðèÃíz¶ÙÌWË 8„(]ÿÉF…­l8ß 'ÃÅü|=Yßa»Ü-§[¾] 7»ÛÛÕz;\«Äg$ñ÷×+›»åvòa0ö¹™ÝL–Ûù׳ád3œ.0ü¸]AÌ@nE4Hh{=™FÃÅdyµ›\ÍžCó¿×óív¶žß __ÏóÛáw“¿Ï2ø«õüjòfxðú„ÓÅlx¸º½ƒ—×Ûá£éã¡—eÉ C’·ËùO³õf¾Y=œÜœ¯çW3’êËÙ{ ÄãÛa§×Pœ7«‹ä v·]=¹š-gëÉvv1¼\¯n0®À¾˜l'ÃËùb¶y:|þjøòÕéðèùñéðûƒ—o^¼øÓ/ÇËÍv6¹!àüòNØÍ„ëo¾Uo§·ßAˆÙúéíÝp3]Ïo·C¬‰õn9œo±´uâƒÉp 9T¯–²ø@¤ ý‰Ëƒ7³‹ùf»žŸïA;¨rè6«Ýz:oΡ€á.Wë›Íhø~¾½BƒW»í@äx> ÀH°Óíl}ƒ,p1¼]¯~š_Àíõd+ årµX¬ÞÏ—WèH$÷b¤›Ùö·’¥¾rª6XŠQ7 ¨€Í·P¾sr¾ú ?iX®€³g#Å)¢ð€‡04ÑåE‰"Htº˜Ìo Žl”@Ф44%Í‹Pg F¡HêEÌPfS!]¬¦»›4d]a¿ºXÁ÷50ôåóÉbS”»¨,¦ÙÈs÷r61Àrr“7uK›\aE­Ì·EäEâ¯ÖЪ&wÃórÒ26h ðv†L„ݬ¶³¡,±íf Ò’íVØfu¹}|¡Øl¸¹M‘Ï ê¹O ÁkBÊA®N¿;>ž¼úæôÇ–ðûõ›W???z>|ö§áéwGÃÃW¯ÿôæøÛïN‡ß½zñüèÍÉðàåsxûòôÍñ³·§¯àÅ/N æ/øáà埆G|ýæèädøêÍðøû×/Ž Ðß¼<=>: _¾xûüøå·£!ÑðâøûãSvúj„‰ªÑ†¯¾~ôæð;x?~stxй)~BÁy/FÓ×G‡ÇøãèG—ƒ7æ0OŽþß[‡Ï¾?ø²ö¨¡D Jß¾9úI~õÍàäí³“ÓãÓ·§GÃo_½z.ÊùäèÍLJG'__¼:…õöäh)œ`Â%Ÿá÷³·'ÇXfƒã—§GoÞ¼}}züêåc¨Þ¡T ßõ¹(ÜW/EV¡€^½ù‚bˆ² üîÞC ¿ˆ’:À"8;<¥Á =(ÀS’ÇáË£o_{ôòð¿¾B”OŽCUŸ`€c™ìæ[̲¨" Jþ$ ;9<þfxðü‡c$[@ÕŸ+6W'o¿SÅýÔqw üùåòbv©´û·‡¯Ï¾;Vøþõ«S¨³³oß¼y>ø?b¾œÕB½Eô²Øu ›’òB@ßNÖ ÁQ±L¯'ëÉDí:½ÙÕj=Ÿm+=j²9'r;A=j:Y,à„EÕ Þ)y.Je ‡¨|œágÈÐÓéS¤òN î–‹ù»ÙâÅ(¤»¼‚>ä¥!äoqBvz=›¾üÉ%PºÝpw êÊì©*vkÙ;é,™ò £`Þ‡ÿQ Cž³Ã‘úñBÿø^ÿx©¼Ö?Nô?Ë!j%ñ¢ [§?aH‡Ø¿¬D}ºÔŸ¾žؤø²Ô_Þ.¡FæWÈ7ÅוþúzH\(<Åçþ|²ƒqôÈ?¾Xè/Vïíu1Ûb>Š@7:Ð÷B3‚o• 9 ¯Dÿ[ù¾ÕßOç[ÁB¦tvy6oomÄ|ŸàÉídŠzÅÍdýŽ|ŸéïGKBä¥ùrµ|²1¢¼¼ÐažC˺þ‚J<§t¼,JNRX P*’ò÷×”–³é• þì¤"T,h™l®-aò\Ša9PÁ`bÀb4׎Q¤Yƒ•rg”³Þ«[ÔlLaNŠböœ-§0–¸»9§ ãä]…ÿ*A =Ðz@_Tƒ•¨.ÿsQ©ØlfÐÀ'X1EˆÛ¼±Á§«õäöÚlC¹´„T%ÏV«Å ê,Ì’ãàäðøxDξ›}8{£Ïmþzq{=9ŸAæõ›gó‹ù™5ìÝ÷sœT›]è—‡ÐØÎŽ¯@!FOßA„¸Þœýx=[Š/ Û_Ô|¾™@36ÒfjBÂþYˆö[Fþ{v9Ù-¶Ef ÿ3àX¼an×3ÔÂzÝ9)¹£›Õßæìá 'DVËY#_k®4¿={„òO¯×PójÀ“ùÊ?”&4@‚±-òcžÂ·øyv3cØùKºòXú~Yáœãç'À8<ƒ¶*X•~:]Û¿½µ|9“óGgØ" Η»™åóÉzRö­œ¹˜•ËèxyøLÿþ/¨ë2׿X]¡L8{µ†‚„2šÎniùç™ë@Wþ[×%Ð £eè/àó:/MèGòîßÀl¯'ØA,ÏNÄlUùí×óíìLˆ‰ü À%3@K—‚UXšÿo·ÚVß¾™\`&óÇÙ„€L/ñ=©žà?¶³³Sn.‹('0L={¾Ú’¦¡ƒœ½.¸þz.ÌEQ!ùÝFõ‹&0’ŸÌ¢»Ó_ %ðGü‘2VÄÅ|(‹É†(LÏP’Àn¹ÕÒödþw10ÃQýLÌ{ì¦gç zEàÍl»ùË_¥A@ *ßπΛ³ "ùmðäêp ”l”nâž" žæÓ³%G„yÉü,iæY¥+‚¢­tE"¤F{ErÍõål·Eµ™;<iäæFT”íH£í°Ãš,Ô”CÙàNËÃUB~srOíÅüæ|W|œCWR|ZÎ&0`ËKózòÉÇáZj¶E*W¾PpW·døøíb‚¥@Þœ¯“äòÉÝbµŸ½Õ-ÏåëëÉÕ†ùÈâݪ(µ»É5˜{7¥´¡v] fî.ÈÓÁO³ ©ù“ Ôûœ¼x1ßäò_àd’©W‹‹³ÓÝú]‘?LæÛ‚‘¿Ÿ€>Icòî¦`Oà,àøuµ¸»½Þ²]N>¼+Jáp²ƒ‘äàì`uG²ò|w»XÝÏGð}3!}²Ü^Œv½úÛ»y©v Ò¯'t’3“i#0ì£ñõÒ<¯¯7“ø^O®À'E¢»‹ÉûÉixëëݶ(”ÝbKREÜïvË+V¤M¿ÚL®fE9A»Ü$o o q,‹ôž£.Íòo xh.À‹goV×Ð3rçduEÙæ%TíœKµ?Íþ>/`°=¬Î¾Ÿ/WE$ÌÎÛ»«ë].YNWÛœ‡¿jïˆL„|CyÍ Žyãs:Ý-wï'ê⺠æt·ØAá‚ ÚúŒåªe·ñvùn¹z_´(1Ê™g’gâD×…`Îó•Zû‘“u]ÔÛ®oŠ,—ãí„ô=Ï¡•­gŌƨš“Q÷[,x">^mn&Ë¢²ž­'Еå|ñrö^ ³kº¯Ñè]ÔΠ V›kÒ~ŸILˆí–³9®($Ò ºH*jNpI㼘ÝN¯i^Ï‹f÷CÑLvë $_°ç›´À\Œ’ÒÃÌœ–ž˜åutuâjÁ [žMnvyÄïg³ílMå®ÐŽonźìâoˆøÂ";Yí¶×²ï/ò|¼”ü"•,oCÚ¿2yð {;Rk×7…ÄÑòñpÕôS1õ4/¸ídµž€åôl²ÙL `ó®’œ¼¿>ûöªÅììów“w»"ÅõŠæõåj]ÍëËÉ9LÄàëÉâæn=[óS“ÝÙáŠ~’÷'ó‹ R[?Bƒƒ¶}8/TœƒëUþù÷ Kí}7)¸m~µÄõWs’}ÐjÞmvïˆä^O¯gEfEoÿr·¹.ˆ\Ý­nÎóø34äóÉß¡O8ùŸ(§Ü;”«EA^Ì.'ó‹õ|Éù„IË£Å夗wóÉ;¨²³×»Éôz7ãuóãd9½.Ê5Ôñæ†vsÀ ›³ƒw !‹¦‹]öÙÉÍd±8“RŽö ›<Ç?@÷ün÷?E4y?/ªö úœ*>ƒr¶={3É%hÍ´šL¶Õ¼šl¶Y5ò•Ì©…†µ¸fC¼eaîíÓë/caî'ú×°þWXó¡–Ó=V×®ÿõ’0‰£Òú_Fã‡õ¿ŸàßÃú߇õ¿uýï© ëÖÿ>¬ÿ}Xÿû°þ÷aýï=]ÿ‹ËK{ÿ´a ÿø‡G»íö1 Tä×óˆ¬!ŽB7h‹ÜTWóJy½áJšc@j Dmø?Þb¼™‰‘©X?«¤,ŒûnG ò!ÈÂ)ÈH´Y\A„ÿÙá² ELãi®^,îFt ®\zŒÒJlxÜHíFI=”Œ0&,Öå®7ÛÁå|¶Ã¥ŒHÅxíîéð»ÕûÙOhýÙz|JÙdòQö!ÒÊDYj@ùš-¡Oß\ƒ8»ÈÕ7ÈïÅ$ PwÃÅjòú)4{\°*:Ô%v-(%QУ®! h·Pú˜{ˆG¤±(]H¾, £‘Éœ©n­./q ¡…¾òtp rѨì†ùÂVPfD<\Iµ™®@—Ö³èàà#”Öd ï/&X(¦HÍ/+T¡/šâ|é/AÁYè•Üš1&?Í73Ùë µz eÑÒã^l|/¿=›àÔîŸÎ&¿þ‚¼¹þò¿Ç¿4D´Æ³Ä¸º>§1®„-üssŒëÙC†ŸÏ>Xb¬nª1VuTáEEfá–DŸØ#ŠÅM±e ҷŸ jÆÖR×Å|MeI~oI™†¼&ï% këŠÄ½«Ð¿±PxW%èÎt=aõ¾fÅb‹Á‹•Çi,>eG­"Ü"X Ë‚6·!Ím1¬i[ÒØLç,‘Ê^A¢%)ŒÍäWO6TÛPÑrç„抱Œ JëMê'¹!ªA[s튎H,Z”X\aC[¬%¾5¶=Æ‚sTÔn-Çí®XÂR﹪KX­=´Ç*$G M{w}QEºVìb‰1·F™×DTˆYÓ˜NÞÝèïE)¾SgŽ!×bMò¥XÕøtìnÒÒŠß”e×$dµLë4D ic£ÂÜÔ¦ÝiÒu]äT,´Ç¡éšãotßF£k&©©?ˆ8×+ëhÙ-+%KK¼®mLõZЉZ ZMtg!ÃVÍ ’4ýڢئ4u _Ò0æžr*–ÉÒpt ¤^¾±Ä¿±Å¶4¹gn§ùÎ]ØQéñž„¤C@hñ^úE3ƒqBåâMè yKü–„.òÝÌ®ÕA†Î"vl²¡Û|_µ+BéÔê–5æ½Ýå;¼]º³Tn¿­«ti<[ Ü0aUÔ÷;òÞ"óƒU¼ªŒÕ#‡¢¢jEÜõzSE]+$c ÖwYú+F©%å cV §bQ6W䎪–¶4n·ÕØ·Š}m1æS{œ¢T-ÝÁí £÷–Pj¡ñv½­ÆX×ÑÈjÌRKza7 º# „vÚTpë¹t#è{ÞÛ½'¿-=ßûé-†-E5‚Eóz¿­µÙû]5¨yVy*·ýÐàÔhCU®U]Џ[âFl–¨‡¢MuÎUsÛUÛÛªø”H:©åÜ»õ†d.ÿ‹ÉF Ù.*òdz¸ºX]­)*59›•Œ1±G©)ÍÍš±Û†Ä°0×îvAcP­Ì"SÔŽ?{¬‚â;Æl&´ÙùDOšÌˆLàŠŸ1"h·4bUû0·øÙÕ‹wE(µÇØš–"˜Êúq!Ì` Niá#i[Œ®=S¤2›[êmqwSŸS¥o‹1ÑíÜ©H²®mÏnVƒª˜f1,x°Eù›JÐqª˜jB°ñ`ñ†ªuuÝ—H÷FpÔ&Y^ÅûK¿5&Xn.íÔ°‘˜[r Wbª]5ícéȘvÞ͆ÔXc7%dŒ¸½f<·eÀ·ôÛcÄÞ67“Œa?Ô±›:2â–œaŠ[.O>uT%«ˆe꾊ð×m2#N[ëJ•…Û?l1«60S&L0 ^)Ñ[UÌ¢cÜÙ£ o^?v5[­i¼)Us¯ÔéöXÅûæ)ˆ«ÅäŠ"ѵ‘æ%*Wùa öx5tèÓ¬Ý]­–Œ*\-Ô¬–7¶æÎêjµ½®ÆÐÍуç–ÇiÌÕš×å K­È³ì‘ÊÉ[¸R¦TÈýú†Jq7•M§$›s¿´š]º‹ùò]¿T««åÌÈ«µ¹Û—Ðlf ‘fÝ–°=ž5†î"ªQ꺋«µ¹[—‘:i‡"ÈñÃßH)ѺÑ"Á‚¶¶!YDãîÝu5Æ»º¦-ì¸Â½TÕ˜Ë í61G;([nä©DÕTèZNq-ÚΆdª^‰@Þá öˆEV®*„Цc7×ZÌqÛ%è•)¬LÚc·°Ç)2`ÛBü¹-¶¹Œ¯ÅÉ-kup‹=.úT3¦?Ú9PJõèÙ’îÊ–šy¦þZÉd‹´cu0ÛuC¯+´Å0U:]‹X˳s–"ít,)ŠSÃìqŠ7ï-ñ?T#›·[ð…çû.-¿ž¯ÍYÙbàQ^öXEÊ|Òψ¶Ø±b[Ö°Õ o£7$ K½YÞÚb˜ç_®w<]có ¥‰ÑVf½ ‚Š]õ7“íõTpkŠ[´ :°§œ|Sys]‰[µÑÒÖgV (…x|ÂÖ-yÕý uó…HL›Bê—ÑÙªŠª‡-¶lÄjŠX4€>cÏùŦ móCÐsSØ“SÛrŒ!v!®ÔaÝöè傤UuGrzKò^U¢êÆŒ@Œµê6¤` #?vå)±‰°E1Ð.ã£ÆÎF…YwÂmò°û¸t«ƒ´&ò-JÄšŽÿ²èŽæÙÙùrÊš]åciú˜µj´êz :E 'žÌ äü¯[yüWŸn£øÕI|*ÓhAQ)K{LºÍȬ7–(”Ç—}l×$•|uÚ×|«—pÒ¯[nù·‰¶WÒAQ½òoêŒK{¬"o|v׈¶.¤PU³±™yEDº¯Æ½\âm÷Õ¼guJôw•6Õzsrðò¹†~þÒ)—;´?®“/‹ÉªÁ<耠ưu1`ÄTÂGG–ˆÖx–SÞÜÏ-f·,ÔŒ´t{Œë‰=NQÖÒßœÓØT!5«…cg"›¡9"¯z>L°Ä0·¬%®¶&3#uU7w#a¬iWalÔl %U7TY,hxK»»¡aÌV²kÞ_Íx ™5sPq!Ô ïƒšéë ª‘é4]Gì‰`£:57­0rÛUb{A•0¾/Àqš›ˆºo*0‚n)š¹«^0±pÅ^8N×åÔ-"_ˆïíq ú-åxwaH±®]Ü]Sl»Ù_1µ™oÔùó:LF•·¿±Dì¤ÚßlHf•åôåj ­ºÚbl´~jŠTðNÆz£o­¨Ñ~çÎòÞVšÚÆKñêì´7òê{¤âMÝı ë«J_4`Wð5e† iÆ^r´®¥_žmT1«MX\E@¬–kSÁ¥=ݬ–81]M¡n±Ä +K1Lox V›Ñf)ySι“¿é²v:{Çg-I\Ú°Í›/nÄQø7x~5âŒãŒ$N ùŽ|5›Ûof¼j–©i†¸Öê<¦Þ“¦[ÐFå]maœo¼÷³ÄXÙb˜õu¤ÿTžèo\d‚/A*|j§Zõñºä+k‡»’à~íðÍ|ÂÊ’öž–²ÌýÞTÒ³´LÖØ,ÍfÅ_Rj‹KU§úòO¼+ÚQ´êjñU-gUSKÕ2_•Ê–Æ—/Uã;á$’-†8÷έxc:ìÎÊMmsY¯Œakb€£1¸À2ÆØi••®g©S_oä=öH´j–WlQ˜»JT^·f˜FÝô•ªMsí,õõcBÅ„ðbuÖ´YíXN®nªxš{m1äMöxEÁWU²ºMCË\\2Ê%†-Æœîa2E,7Îêb‡z¢ôØ»jŒ3´—PQ4¯cŒi>}LM͓ȼ¼,e4{?¡¡$Wè¹HKŒíd¾ÐÆûj4ÊdtsbÙ~ùnEáÞÕÈ j [cAÛ§*– Ó‚Cn„.íi¤kžì•Tü¦+Ûm]Iÿ½‹ËÍõŽÒEíæqûrWвkQ]‰s+oĹ.z+}˜iA2Ué¨"xE²¸«/Ÿ‘7m{ÃÕ•“R5§nÔ¹ºº6Ei>cµ˜â%Y4ꢒªäš… À¼³a˜u„ÕââZ_7WyQ)Çê!mϘ”æâÆ3[2& oñÞ¬‘è/­šÈ;«lÐÕ-À|ez¹‘·Ï“8Ÿßš§ÛJ;½i“§[yO[{TÓ 7켨ʆ½©poÛÙ-½k¬ šÀÎm]lÅÍ”¶„·$I­6·¨‹¸¾Ð*áî*]'c]å'SQDÓ" cü¥:Uc˜ûŸÞ'K£ÐF[·ÐwµÖËÕi¼ºåꫵ)¥Ú4ðBK…ÎéÍC戦xõ1n&Õu ÆWòšE{¤¢jó¸»b,Dg33‰Z¥j^“z+.ø#]æ-¡†6$züM·Îïv¢m0»Îs«ï´G+ЉD´"hÝnî–UDmg.ÍRâƒÎµ”7CÙ`ªÚÔÒ_„”qÍK²U‚ïñù Þ!ß5QZeÕg› š6$YˆÑg>V ¨;íñv²›Vãé“Õl1ð¶é=Z‘#ºÂN‡1‚2", Oox ½ !ÍÚ[Va–b­ox¨¢-)_ÒðæéØÛë kÍ´x,m¯‡¾Ø#U9Æ £*QŒºeIãÖÃ"±®—ª1–u )¿i¶OÛq :YÙ¬+ܲüZò¸X3v¡' [XgEÛ{âÛõìVìwžÂp²-Å&óbñ–¤Bp¶éoÛÚwÛY1ËÊûêζó‹·ëí¼JuÝ~¹[&Œ,¢GÞ£ÍÖÍêð]‹JÎÖ¹ÓmMìÿL&JÚü‰¡e¬%ÆÜÃ’FQÑÿÓ©¨ÿg·Ú–8EìHí51Ð%ÁõäWCŒI@¾À¬ÌdfUu=»kŒçK„Ë×¥Sþ¾²PZV'Þª\^·:}-n—®RPµ©›Å­ž ¬›Ö[ÿ§ð·fÔÕ5‹AwåYbì–z”SÝY7šˆk[T§…W½·N嘭 ÿóKì>¯«±èªÈjiVý·óµiÝc·Ø#Ñ&[SâK.6¨…ÈcuqÍ¥4]CG‰–[]¬m±-ÝÂj»ªÆÐ¿1v‹Ýv~…'60JéúFZ6t¤ÈX¹Ùm¯ª)èfб»ÒúÞ®’ª9ÿ£8õÑ«ÈCóI»âD˜ Ü|.Ìåš]äÇÃP Û‰\t6¿û12f*Þ-Wï—ÕÄéæ[ºûËÜàÅÕ+ä–øZ°[#NóÝfÝ/\1þ¤Å=šÁÌpÔ¶.hÕâJûÙb6Í'«iôª‚m›h§ónÕ;š'«šëm-T¬ÛÖ‚1ÞíþgnUÔ¾¬ÿ©+Œ Å1O¿Ÿ,§×ª‰Ð±Wu£¹¡¼Ï·±ò‘›üm‹±¼šÎµáɯ àŠÐÁ[½»”—ô—Œü.M÷ï+¸ÝâÐ}ýV,Æ ùeéuÇ–}(ÄeŠXnÝŽãú}UÅ6sãv ”)VAå³ÚòáV ÿ¤ÜëÄþ‡ÛM5‚…ÔÍ- ªkÖt÷¡v§ÞcìXmÖ-Úøðþ‚}¯JËônöwÕæè®¯¿×´'ŒqQ§¨K|×f^ E}SŒ¿Æxuääï“õæv}òß+r….LœTÂЙÔHK¿šy’?·¥ižOù{>wNKµnîüï Þ<¬þû- cæË¿oh3›ÿýîºc¾1ü£1¸/b @òl¶C\O?|ýæø‡G»íöl9¹™mÿå¯Ãß †kr{ŠÙ3{¼º>§xì&}\±À‹ÛëIùT k’—ËÉV잢Ûíèç;ú´žœ—9Øúf&î·d¯æü‘}ÝLçóòs~@(yÿÓl³å¸?mh€s<å‰?Šù_úêfWz¼aÏ›MéqòÓäš½ÚNÞñgöˆ“ýü±D ßmvïø»w,U=“EùŲôâ¼ü\0-?«ºJoË)ÏÊ8³Jˆmé^øÎß”SÁ+ÙËo*qÖ«Ò››ò³¾Êœ¿Æ{Çù›U9x'xùM9ýuùyQ¦y½¨ÄY”i.Ö{öo¢æâšiòj͹M^Í^”œN¼™?–›Þ‘Ìçô™²¸Æ˜>Vî(f7ì‘U°ºæ—¾Ø°Šœ²ëxéûò­¹ä£•Ö°º––½¸á†Kd­ßÕÝ­ÆïäÊTãwrS©ñ;¹ ”~Ÿ­KâÒMú*¿9“¾\³:`5À®Øƒ¸Š’¾¸Ý–™47AÒÇ5 ÎHÈ/k$ïÞóºÂ‹é#ãª÷ ú=Þú:CþFßLHߪËÙ+šŠ¸îä×EYÞ—³Z¹d‰|w‘g<Ð?Š{ŠÈ«[þT½O¨òyÍ_‰yŠ7ârþHU7q!¼â"D\YÃÕ}4äåŠ)9â–ú¸½.=òØkž º…½).V©¾V· T?ˆë5èë ^žK¬:Ô}ä…¾€ƒ½bå‰WdÐGrÿ}­.«`¯v¥G}Dñö𕛏ä?îüżôHî[`VüQÜv@ßl×¥GN^3ÀgïÙ‹ü©¬Ö‹Ãûù£8™Ÿ¼ÂãõÉã Ï:ŒOwì+α§ê©õæÏrF†3D˜­JÕ–‹óAìé¼ôÈÏðfß¶¥Ç2M•ÀÙÇ]éѲtø5ù‚çRÓG}è4}g83ÚúYØL¾o™)Aæ%ýUS\z®ŒmÔÁôÅ‚?2Óg÷Ò7ê^úê=‡å’7xhTÚÒ—å“hé·›¸á«¿•ßqh}ô*y§ON¥¯¶”Å٦䱘SO‹˜ž0JÞò2ÃóAÙÄó=Ù3{¤Õ,ßä¬×GeòÇ{ædáÙ•ìqÆ{N}Æ$}ÚӂíÙ˜q¤O¦“é÷÷ŒŠsÉ;Ê1 FÒÓøÕ)ƒôÅżôȾÓLägú±Wcï&¥Ç cÿât<úŽuÝúä:öf^zT'ÌÑ—ëiéñzÆ#Üèk¦™Ü06¹™±‡‹ü4öö’='’Ñ·<»ô„0úšçgÆfBÊqU¿˜kqLyäj4Á‰“¤øcõ˜(úõ°ÅÑKäÏš5{qòyÜ1–Ög‘7êø!ú† Fšrq*}wuSzT'öЗ¬ªè9:ô- â\ò8åòŸâ¡3ìQ(CÞ½[ñ'öHå SÙÌG´ïxÌ yÜ•žM§™ŸÅQ"ô‘Ϥèã?Ø›wì‘ÓÁ^«35Ø;v$û¢N«(¿ÛTê⥗; ®:y½S'Ðw+>Û%2 â”úÌâdò(Ž  Ï¥Ç›IéqÉãïØxž*¿t{=}Ë:¨b»;}'v«³dûyå=1 ³ol¾SìÅær£5yÇ0!|K›Ï-KgÆ&”n© {‘ù#n4¦o˜Î&6ÓÇ%Ëm±•—¼dñq³-y¤lQ³e–bCÊ[V€|GiñAlùdìk) ¾³x¯·J’7•]ôÛßø˜“‰F±}<âÞ@ò(6þ±g Mó\ìÍcïXp.†Å¦8þ¨v¼‘—4õ ­±Êæ3ò w„‘GµÝ‹½ù‰ó†Ø„EwˆíSü‘‹SºÍ‰¾]òhËëÒ#î)"oh%3ëÈfÅò=ôåUù±”CÜ:Cy9“M/ôíݪôˆ›PÈ›’$‘ÛDÈóŽ—@¾µƒ½Û•ß³îXì àz{}Ët1µ]¡x¡÷°7ç¥G±O€¾š3›†^ÃÏÞüÄíjbe=œ³ç"Èuìì™?.¯J›IéÅŽó{œñÔä¢mú‚Õi‰5ùzɉÁ%Ìä×'óÇeé+µT˜½a¤ë%½ôÕºüˆ‹nÉ›%/¹8–½`U…KYÉ#]§J_oi>ÅŠQþXštÝ•¦š*K5é'¹~’¼K!KÏ¥qåO¬$ÅDúX^`H¾ÍÙ°*_ÌG^Qù®–ÞÑL‚…räe)ŠIûx_~ñqÂ>øÁ8Ÿ÷ÏÕ}¨N¹‰ÕUô‘…ßܲ§Õ%>0e0ObdC²;þÀêæïôwiûBÅÔßyòw*þN3ñwš?±,†<âš—¯õº–Ýôöl{w;qq¾˜å+\ÄÚ–á? Ö?†Ãáx4|}zvrøÇ‘€+]†ÿ©¯qÝWÏã_µiøì@Ù†‹ èÙ«W/ÒÉáññÙw³gÏqö9èkLìzU¤çW@ò¥3y˜Ào< ½Öæì»bÜžŽCøàåŸFÃqñ6-ŒXs“NþÿÔ]ís۸ѿÏú+pé<­}u½P¤x÷´32ÅØlôVQ²“ëux´DÛjdÉ#JɹíýïÝ@\P”ÓË—jæ.‰ö‡·Åb±XìB­Jr‡2]è(€[èa ÝÁXúƒsœk©ÈuËøž‘õö˦¥ÑpIC"ò'§7jºœ–l@2HÑjºeúã>—‹F»QE¤5§i]Ç9À¦]£‡V{¿"Òêub§YäÊ…ˆ>Rt§šî¶‹•g¡J Y?hI»z'§ƒ`º}…pÊÃÑ´J9 UÞÈ…ªBN¯’³  Gž¸$ÈQr]AµÛ¥­yaŽ3J¾êí–#TŽ]Ž˜æˆN«ñ6Ì—WÓm”BóÝræ÷'~iÕˇ۟äÍ´å=éOF9DªUÂÚŒßR°Òy2`Vù„ÂtJ!£|ZæqÜ{›Cìò{jìN9‹' PÎâI_±¸SÞ“I_5ã–÷dÒÏYlÕË{*@yOn¢AÔù…ŒGS÷ Ù)*®–S[­*ªU§T eSäv%¹M¶¼ è¦#›jC „˩եEª¨üRvÎË t«õx š"åÉ€º¨›GÔeÐvÝz9”L“Ç­9™N3!kÕÃ`4E¦kÉQÅFå8ëÅÖY»-ú;Ά–m©JsÊ¢´«ÛvŠ»*P͈¾‹n’5ŽˆÿË VŒQ@fl“…z~!˜0¶žBi2˜°©åT(0Ëcót¯÷dap›Õ§Þ ,ÍsDƒ2ÝD¼Lxœf½8惘f«HÙ(JÑFóxcNmýàñ FEîT’-*mXFæ 6]ë"QÑÛÅ®§ŠRT›^$™¤½ÿb‘uœJ2EÖq*[0EÖéГΑu:ôøtDd÷?]:g%“Òi•ˆàO Ê’2û3ïw/N•ꆞUB ²´H¢1^Âå¥Útùöò€Q…1k60NqÏì‰SE&êå¦9¤Ó: q ¼dˆ.]ê½,Z5ƒ¸uª&MH£¨tzÎu1žUAì£z<ì¡‹,§¶š•ÔN‹]‹òO†Ç* hSFùS ä¥;žsÅèÚt] °—…³*`ñï˘Û2ƒëX/ÇÒ#¿/âsÝ­¤7êõâ‰ÕỊN6ƒ.·†CìÒ€tq ¢·¨ô`e£nQÍu¨I»ºo…©lÔ •+Ðc-šXÝò>”‚aìdd¨±†pŽ! —™/ãÄœ ±µe…· ŽU¶¿°JjÕ_b€³"Û­j2ÖKÿ¬Žu Aèe!­ah/K0tá\Š`á胖rX³N:4¡MŒÖÆ£®ž(½I¬÷K•­ì#€Ý5.eXvq4-ªþrœ˜z…´©Å‘#û˵òz5ºð´LÝc—®‘é¤É.ÕÄûmÊûݪS–Êør…h´!šuŠÀÈñ膎k(£ž2YkQ£øRª+„åC´)“K;dq¼Ò}·ÔÙ}ÅCÛz»)žÁ •wÚtu4‘ñ9Ъ›µ``¼0k*E÷Çœ×ÈJ2³+W¯è-Ú?J§ëÌô²[†‚.ÁÐSΕ Ï×´§Â.•7 €.š2cÒ]aL“f(ƒØ¢±ˆb3àD?ŽV‹è* KS°UbA;„ñ–PCÑœ£0oÔóîÁ,‘yh–ñ’QÁ ŸKY7Ú-£*û@¡ WC)Ê8 @‹¤SÆù$è…ÑO>ˆF2§@¡m““hãp‰èéö ¼„?¤·®9 ŠíFYwg‡Àeœ8n+‡îÖvÛàÁÚ»ÐÈE;:È21¦-ñW†)t§S‰y9ÜiOž¸~¿©Aˆø‹ÌÝPº[• (kÿ‡Lz'ÓpZtvËat»zÇ“B½mQúsü»´†p)Bd…(ÝÊÞ‰L žd³ŠNñÐû.þ¬õ cë£[T…ïò¬ âƒtÈ¿ãi*Qˆy*QÈECa‰Ûÿ¦­(j‹ö§H¥åY,ŠnQ~z»Aé2éEAlÂOL‰&±~úƒuÚÕÜéÔ5G"‡éùÊ®úEO¿;kñð}ñ"a/£©æón¸õb§úñF£Y42=}LÑQdºÆ Y.pÚ]·Y4…ú”¢bAéÅKÀ¢ØD"2™JC¸ÇÄÀˆô*îVÓéÐ ËÆR×€ðl¬`ø• õ¶òt- Ó>Ž!w9‘Ñ¥è­ÆºÁÎ/I³a˜Xh|käâh5<}¹ÏË’¤°WµV±²D# µÊ/S:½e˜ž‚ÝxN´~¸„µè]ƒ=Šç å¨&¹ì;€jÐEþYä‰Ô4 Hç#C–øšYÄÏñj©¦¯®Ö.nƒ¥Úç€hH%]M§¨wkD\( •ª¼cÂҢΆA–R§Ah‡MH£h ¶æ¦ü/‘£V“N©HÓSªŽ €Eµ‰HëSêj0í‚ÆÕ¾Èéh˜%*„M0" PaHA)†ú‡*QPuŽƒ¬ºy¤bú›ßÔún‘¸;stVƒê§¡–Xr]%ì‚t©(+Ãäs¬ˆDX€È­Ï¾òL4-* ÃHy£­¢A3Ô¢õ,Òa½=5= ²bN¤Fµ«¨"%•®§f»^´}G÷šÔN•(ÜÑ*ò0ÛRšÍc²Ç—:¾šmëØñ¾Ùn¿T\Û¶m¶9æé› CX,!i¡žŽc`B‘ޤ0n§³/é•M¯@:åÉŸ Ó,ÁÌx2¨ÂPáž´h¬¦M#¡Låf*2u¡—u´M§µX…M«ÀŒSÜ©$;DbEªFïTÓ©Ë¢Œ‹2V5SåcRl½Ìý [s›€dF«BF ¸Î‹ÔÖ(ä9¯º z¼Á|•(Äü…6ª•h›ŽxyËut+Íä8tÌ%ršÏ5u³üUt­©Ö¢ñâtŠfóXí$YHONÒÆã¶Ž*‰,â'/ž‡6;u²ÈƘç #Öö1Ñ®•Ó¦84¹¹&ìã<…Xƒ¸G!aÖI()¶‹ðL#µ ñ|ÉüvÈr¯ö7;Ä'1N5’,téìÃó€NœêÔÞ̉ÔXÿšå@Gç!Ї€FüÈDdOkº '2›:(Ó©˜X¬ž\­ÈÆýIU]vu]Ôótàγé:dW™`Ö¶"SÓ—’‹þ•ÜàÒȾ0KñÎ pz¤¨nõ­:Ñýaž®AÚG!Í¢ÁÎ5éps·‹z<—Z¡Œä°P¦šGS™«°VQ#„ËûõÈWz]Š|t Û~(ÒÓÀ¡\6í#Mgw(2Ø5z»šNv÷²q6èQ×pñ· ÇS(rà5Àâð£F"ÿ¨‘Š¡ëáF‘ÌÙ.‘‰$-:GmÓr60ä$ÜlcøÏÊ×@ö @Dù‡"s_Ñ;­jºKµf‰q(ª„¯”&9O…ÙS¢s Ñ L(@“N´Èò×Ðe Žø€²_‚2¦œ?: è4×…Ò©»y*Þ(ÐÀß(PêÐ24zŠú5–’ûdz#ÕjG$®—*²¶Õ¢¡nS|ó@#»•dºàIÿT¤ÔA¿Eˈ“šâ; ŠL眒mJÆgÝjà³ Ù˜¤bñ¶yåWäŸ!ü]NGGèU`ÙÚ‹Æêå N×l5œ^6LåK 9¢· TŒ-Ä:å¯A(zƒV@éT‚Ô%mË¢gÿ©xKBhܸ 8:DzòŸŠÇ&€Þ9™·Jˆ,z 9åU(ºCë§tÚÁÍN)s«CKïW{è¢xÜBÁhÌø!Xq(3ùæE )p& A¬3ñ(†ŠqÒ°Ôd«À’˜™xOCÑ-jœçÙ, cD6—`È Åµ&Žm3W¤Ñ±\gÏsÀÆ)ÞçP`âE»–Ïs(€Û¬ØFÞFEs6™´þÚ‡"“þØGä-wZ{$ãÓt*›1Œ±2³ÃLÃ+EÉ™ìö‡³Õ*ïKâôFg«æP.¿§Qm€¡—ú%˜ŽyL"žÕ–ùeÞ‡ã®ç•-^“PÜव–#-³™7ôô’ŽÔÛ7£I¯ð=}ÐãõD£ÛÕtj¤}Ði´¬Fk}?j”¢mùcöšJòçT×ÛÔÇD<-‡dÃþ¨, ‡¤Ãþø¤‘ŠÉ…?¦‰LT!1²åïn®Üj¿æ/¹¤Ë&ÑNýFþû”ý‰¿¹;É_v9eo²ï°*õøË)Tõ»d½XÞ±7ß±p6& ÃÀõ|öÝ›Z ¾ö× ¶¹cOómÒŒ ±«øŸÉJÀGÙÃÝqÀð%Yæmžà¬yÿ°c'óS s^cÔÛéî);>T/~¼Ý.÷‰Ö*œ¯U5ØPMÓ:XMíõ×üÔ&Éb‰ïäßîù‘y¼Þ-×,Ýì·°Õã7â~†;ZzÆ>ƒÄÀ¬Á?7û]M<‰<çFÏŸþ-÷í&ÛóC=5nd=a.öл’ÎÈNÈ.ýWab˜²¦Åf¾Ìó¡Ü˜‹ зì1ÞñúTñOV¬#Ý0Yò‚ÀÛËÖÌáƒQ(,Ÿ•å.•Ýâ?3€õo¶)tä™Ý&(I \°ÛÁ· þÑf—0Á±]ÊÐãO»‚>aøçg” )f,}Jæ(g 3ßAúäj岯ÕŒjz„,½Þt'>ƒ¿'£ë ç÷ØÅ6½ò™7˜—WSv5ê÷üIȺÃ|;œN‚‹Ùt_¼ê†PòU Ýáæ¿Oü0d£ ã~•Aí“îpøá †^Ö †—g *`ÃÑ”õƒA0Øtt†ÖÌblô– ü‰wÿì^ý`úwäm0b[o¡±.w'ÓÀ›õ»6žMƣЯá°zAèõ»ÁÀïCëÐ"ó¯ýá”…WÝ~ŸŒrt3ô'ØõÂ/üZ?è^ô}Ñ ²L|oŠ£Qó€qÐ=°¦Ã±ïøÿ½céN>œA5¨3ôÿ:Y¯;è^ÂÐNŽp¦Ä›Müvyô¶Î.Âi0M}v9õ8ŸCrx~øëBάYw¯;íbÃXp Èð÷‹Y ÏjÁpêO&³ñ4 Oazo€+0î.íq掆|¨À ÑäVŠ<à¼?c7W>|3<¬qNu‘ø’Ÿ7ÕaÐ0pª‘ ýË~pé=©#¬å&ýS˜ª D@ š½éB›32Ÿ"è•ø«&°g|"Yð–u{×v[€k0õa ž gÞ•d÷ùWÞpÛþÝòn½HîÄÞͦA?ºŠ@ãÑ&-ºœu'½ü'>«QhtÓ4ÙreõÏ·›”ÉFT=ÿbvÉ¿c¢ÖÅÉU÷Úº!HÂ4º:e¿ÿ=û6# 9üàëùjÛÁÿǼ…ó‡?KÃZ™²Š“_NÙyšNZ®ÿ§sПL”>9E®©äZ¾eñ=ç6½ Ê7IרeF ,À°n†£1/¿†a.’Ûý=»Ý/W‹´õ·þ¨´Õ ÕØI¸H]~‹z[\mÄv*õq÷à3hjØ™Ë}‚¯€á®1ÇË9Ð}¢' ØG8¾Ï›íGØh>&ùøÎ²Mf›@›b³RÆgL-U»Z0ùÄ5¶)y@`4 Æ6|¿LEmyˆ?¡±ð\KaßyÜÝ<=Ïæú‹æµ Yjå8~D²J“ƒ¸Åæ€Wúù©ö¯/WÔÃŒóä[èÂéo¬çkôë¹ã2vw’î`—ÝžÁÖ–/Å;|whÇ^±(zôý(b¯¾ÿ¿ÅOëWgðM”jþÀëÁµúá·öçׯ2®_A*¡ó'õS}¹÷½Ñuä¿÷úQ8…}“é8]Oü.ì¶°åš~ÏWX5kµèQÔ”ŒC¡mÏ’,üµ±ÖqýIaÆIÌp…ÃZ«‰ Ÿ Û[n­–x°ã+F4ßíÐÒÛ僋ê‚ÞíW ì¹ ¯L®,ÖsÞz{ÆP¿ÈU›‰Û|s´n“yÌÍù;Qe-³.ƒPCR™€É—uý"Á›o0·ù ‡¢Ï›=·ÐWûùÇgׄÆAG¿5‚9Œç¹‚Ëu×g`L®¿jJ±¬äå#–DƧ9…N—%>‹¿ ÃC˘ۇ|/9Ã1q=-8¶Y¯ž±–U‚2Z• ’cv®Œý)Uƒ ØÕøÔ®–PçLÿ?§ÈÒŽª Ú„¥,fGrSëPŽŒéæQêiAScá"z8Ýou‚£-V1Ìái|‡G×ÎLÒA&à!:ÍN’_¾/ÔÈY‹òöó-LíÇŸk™,a%\"2%.¼JD_ûϧ‚p^Nà<òŒ3.D®Æ…(Fþß-ï÷[}U¿ø|#pÿû ʾ¸N_®äÖpròi³\œ¾òIæâ<›‰ú~o`\´@ÇÕOË7’b^º™|mä§š¡²…(q¡j‹Ÿ2Å~¼/_Gí—«kÍð#ç’, _Îü š›B`6%¨œÒ—ÀÌËÍžL‚Éõ´ŠçIªÉ¬X)˜*ëÅ Ö¨–à{ª NºòNÊ嚟•i~¡q9ù!Nk¸ìaíoùyþ.^­nãùGYÅÏ˘7û,š”&¶xÎð¥7h­¶ØìoùâË´8j®á–ët—Ä :p&ÞGÛ*(Ðp]ŸI ³ûÍ8±HbìKæ7À­éq?Ðf¼±¥äžˆ8sÑ)N vÐ/U ßM¤6Ïl½ÂZ*›ß’Uflà`LóÊr7¹V3Ï(BÅT„ÿz¹ÑP¬ÚÁ Fx =r®Ò«‡!®./fA +š,6E¸ýî–ëh¿æ"Š7'\µQMœU œ™ üjÝE SA^Ä^ %KF¬¦ï[£PfŸ•Ì:|{“Èž‹•€ëj÷°ÝìïäÆƒû:žÁøávÐ×7¸ë/çËÝkü9ÞbFYz^óÐÿ+JŒ›v*jþ´Œùp'|W°v¸º€¥!þöiVÿÿíÓoW¿êÿÿŸ{ýÿWõÿµÕÿ¯êÿ¯êÿ¯êÿ¯êÿ¯êÿ¯êÿ±ú¯m–TÀEt²Ó"ŽL„Nøp êN‚¢2CòS<ìn&ºH QJ_¸½ažx>ÓhV-ýYbÍ×]“_\M9ÖJ@}̧㠱VúÌâQÚq„~¼»ÌbñnÝœB§ÏO|¼Pˆð³Ôë-í ÚˆJ"a FUÕR¾W¦\H,Š7:ICk¨ºìŸDýLé…¼xÿ;CƳÎo(Ȥ½CÄQ8…\õ8¢ÑMçGiôÏ9j,úlªÄè7P$ŠÍŠL”Z”®¸aj²$Ú~Ü/Ô³NÃósS::uÕìÊã®ûLæàdF1I®üÜžˆv‘nZè@ˆlL‰HK_MãmiìRæR"yU B¥ŒüÀŽõ=ßÄì5µÁ†Fƒ‹‹Ð !”动Ù§ž¾ÊëëAÿŠ~ÙÙYA»aYNéŽT%jó,FL ]Í·IÏBC…ç&øÛέÓÀd­4‡>¯öbÖ¸s7\°I`F'©þ\gŸ/¦šlnq+âØnïçöV÷ ®ásj_ÙÂÑ…öæ ì¡æ½ßO¦tÁnlob¼ïj¬ƒÀ§rÎáVnfJ÷[Ë7οò§Ì'øä\—pI£— á5§ó)oŸÒ‹à î>m  ?S(VI ¡E?"k…£d€ŠIÑ"ãÙ€æpˆŸ­~GV QP‰g¥ä(MFöŠcG3²³-!Úzà 7ý¢´Í(øòÌ茌“³Z½Ì˜'8Bã”ÙY§AÜOã¼Ñh6x®cè›-Ô¾ŸxSF©ØAê|ÐhÈj  6‚rtδÅJð&9à ¦&Ì®èÓ:¶I=£¯%ªdÅ“ÎаAöp%hÑcœoD̪Á êsï põ¿6᜼Y9Õ ¸7ÏÃ9þEõWú«²×jà±ÓÀã›4ðÄiàÉMxê4ðô& <ƒVÇÚ û€3Ïi&`Àg R3ØôçÂÊßBåÇÓV~•ŸÌNnVù;¨üô¦•›€aŸÝ¸2@€¶g%¢¬PÈb=åÅ­ì=ûòVŸd[¡«šBð¦Áç=×vq{—´§ÿy£Q·Hà M„îv@̬rÛzïWxæTx|• ß:ž\¥Âs§ÂS¿BP9KÐ…(æ¤ßŸO«Åm|ç´ñìfm¬¶íS†=„7Fa\T\t¸]ø5{± €ÈWXÓ°\˜©önݵ!Q‘ðwHDÞ‡• úS2)®Ä€ËZ0yø°Šæ±ðŸ¹éãZ0XC‰Vj="@ ¨z£ö³|YŒªÄÌ¢kqΦ íÔ)».Ž­Þ8ï7›¤Au³\Íp¢È†òšA3XâO–¹9ä ·b)›*̺.³®®Qaa2Š÷‡‹|¶C|¹N«¹pŒ8D!]ÝUÄü÷Œ²éŒ2<‚¦Ä=vøœ}aŸTßõƒ{0ŽÇÃk:ÊÝùéBçÐ%4x”•fýi•ÇŠ“ØøÚ^0mhN¯ /g Ü?©À4ê`U!ÿT(0h¾X¶"² RvuiÙU¯ìã¥e{eŸ,-ûÄ+ûtiÙ§ZösIÿ•E¯¯Ãª/6 DÓ.8NCŠë, ­˜SÔ{MHÕ4B¸94²Ç•ÊÏuåáà šÈ9DV°Rõú› ßš—î3nÑÎ šV†ÄauÙrN§È@Æ|²AyŒ?cÔàØêk^xõ„^¹,\-'§8\‘7S¿CÂ#S(dn`(áç.%¼"«È€äºËÓZÍ\§+ÁnÌ”t<¸é˜p+²yÃxšÎ¨µ†¯ñ¿s â ÇσJnøU=)´Á‚Ћv5{¨®½­K7¶™h2˜^+éŠd -\xSL»îŽÑj.`Áf³IËѨáÊÈ­P°2€Œf›jÁÍæmH-ÙÞºìnÕ_ÌÕô”Kî¬è¹ìÚÉ6¼Éj¯^aµ¿õ›ï)Üäó¨Cp´q«/Ýú« ¦ùlñh8š_¡áß=Ž'KA0K3+/CÇØ9›Ë Q¡É–plZpl,ÇK´l¤íYêè†MB(äÑ-óT†O‚ç@Uàÿ30úøŒ^6¸íqäîñF÷|!ÌÝôø‹OÐUÓ,<ÏÈÈÁžÿõ—Ú9N¸lÃêß<¨ÇKSNÒ8’e¨CëÆ£<-ßµâß"äÂïìt! +¡ƒHeEÎ¡Ž´é,B“h2˜L¦ÉCBET”orIH¦ rç/ Žaeqx …wÕø ‹¬ì!<æñÍ„ á‘'eÀ¶`õŸT(^¶fð¢øÅª.þgÍ® Þl>»D¿Iž! 5œÍgb¤Æ}1ÄHØscKÔÈŸ  ;-KZ#ÌÉ}¯dåÁÍg¢SÆÓHak’ãðÚ1nf50ÂL¯™âÒa¶_ü:"ç%òe‘a AT€¼zFܲKΠº5–[1v˜'ññ -«7ÈÅ dkâtÙxÒðhÓÛlËiãíœèTô†w¼ÖÃ]9ÒÕ/ÀËñ…„/`½ù]c‹r'¼Ê}»ÊýÆß'0HËK@ÉÒ[ìbèZ 68Š€Zi˜å½»@ö"ìp9zx¼z)z€i@È:š^£x6c;ûA"ñ¼ærÿñªüŽ9ìÖ0¤°,œn{IXEáå§U¦V|nÝ£Š8£sç¼ÎX˜Ý ¬eyó¿åÉš]N7„{{ (\ ŠbÊHæ’|vß_%ªãÑôÕ>Ëü¿ÎÑâ5ýBç¯ÿ¸ÔÿëÙê“\ü×o›Í¯þ_ÿŠÏWÿ¯ÿ}þ__ÿ~õÿúêÿõÕÿë«ÿ×Wÿ¯ÿ/´EÍ9€I|(<©6žâ¬RÚÛïýp û‡¸ ~µè—ì¢ÂpÕ2ÞèáŽ7ÿð¢Â‘éàõ`¶—¡få ? C}jü²ûT}™#Î[ úcÕßá1® Å•i~)©´ÈGWÃþuÏ(O)y·ñv”N锣KSüNøvZ}úTouµB-%†Ò¬ûJß¡‘È£Àðîp…³Pßùž-ÃQxÌ·õ|§Y*¬µ‹3-w[UŒ Kör®+ZÄ®­K4 IŶ7vEâjbv5a¨Z±Ž!Æ›]Fp µ€{`‘çPâ¶ßÃ;:íÁƒÖp¬èn‚N^rÆbKFúÞ£NД­Êþk³ÜV’Ó"û¯I¼@þÁlÆŠäAo“ xð´®÷p¹z€?Y¾çx·`2‘º0€¢søõ+ÙÕ®•2s”ôpbk—úµhð­Òh„h!RÇFÅÄÍX ÞD£I nŠ9S iº¸ÉëT|ͼ¶iuÑÁ÷˜‰@ÚÐoÅi8©á¾'cB!{IĤËq¹>”{»±Ï2•ÿ¨/tRõDò•Jf•ªØPõ]ÿÑóÐX¥9¾ÿêÞû¶Zå&×XƒÑùOdd"ë¡ {¸<^µi_œ&ñÉgš8# û„29Xp1š5Ø.Eã~2'½N®Á}¤©Jè'»O¢—°Ub/û3ÐHEΣ¸N y¦ƒ¿þ ¼‡Ò“..‹ƒÃÍ-XVtuÂIzô$‰)Öµ­—,|ГZ°Êë&IÚfˆ„ëƒÄ`a¬K„a6Ñá‰S©«€Pu'àLT,¦¼T¼Ðˆw¿ÛÛÙx»ÿBŸI§ÐvUéB‹¦Ô:eÚ™ãâ垎à©Ëƒæ Ìhü<«ª«ƒ!´SWµmÇýzó…;(œâ»æl‘1ôp Ç:¬¾ó'óÁí׌ðºýï/ìßïí‹&Ù¹¤ÎÂý…]ü¢}$¸t’ÙÍÐÏ«vWò@|s©^áíð 4}ÐÞïþBàY¡ÑÕi]0— WØûͧA™Ù®Çy81b`43ë+TÙý"èBQ rRJ?gKÖÿ?uYeLáXà³Ò|®˜%ЀÊ8ª93íê4Œ´%PÛí_ô7;.bøE;!I7§¶š›Õ—ÓCÒEÁó•ÇO¬AˆQ˜6îE~6Æ>À¡_´(t†cJ ëÛ…üÓ|{C•{›Vç…yúSáSÜïË!+»â/œf~C€“A0 ¿ÂÂ2hð ðóy)Ôc:½  ¿׿]ûý[ÁĘkÐE“ìÅdÍ›] ÍôŠäJokoØü^§ýz—h^lî½EÁ0ü½nõ9å^PèïÍM`óo°Ùº»FƒU8ÚïÕ冸ÒÆß¸»âu|ÕÞjoîxbq~ 쌃DZkƒÉoa ‘lñn¡ìír”$#ìBïÓÖY|Í|ù-#ÔŸ•ZÎN¦‘KÁRÔò3”ØücË1×PnO–¬:¤Uƒ÷$jßï#÷¨òPêÔE©ÐïkLK÷]ö†ÿdŽ%dÒ÷· ÂØÍU¢ ”ž%S#XÙl° +€C%‚K%šPÚ†`ÍÙÉi¼ªQ&0•—@á‡D¶I£èT¡ìÛ~f.Ì#q.´Z8ʘ2½Ðy>líG¼pिbü0sÿ„ónÌ+d j¢ IÓx`f\±Óh»ªˆ«ÓÈ•–Ã4ùÁ!p÷œåðÁ˸§XŸ+un~ÀëÅ(Ü­ôŠÙö}Z÷K¶F¯cVv“¢¯Ôæ3²'à»–6äªýª‡5‹<.9¨×?¦ùC sôV|Ĩ÷R1^ü»鱽›®Œ2—RW—^rY<}[8ÞíãÐ'WººV/½º®~•6Æ-}ŸŠºêµtp^°˜ùeù\ÐWáµ’i­ZúÂK%s¥aÐl—™ %ÜÆeâ_%—]$™k·ãFWÈ•¦Ÿ¹@ ®¥—GáÕ±¸“ìÕ±ôâ0ׯ­\ŸKŸÿ>ÍÖ¿“f‰ŒIDhrD¾–Wäר׋(¦K4µyÉQžy]ọ́˗Hîø£åYeR%äµS)GõI˜ÎêPºNÎó…5ÿöœÑåöœ<áüc´å,×1ötc‹Ï¦Âàrókž'»¦Ž}&éd,‡6kô³7ˆ&èMMî¹ÞçìÒ÷f¨p%P«ä»:›"7íSüön›< w¥·[- ç ÍTy’bV-0T¬®Ý’yfiO£Ä³4ıAžF&<:*§Ž)gnV74äĹ.µã,YCNŠVïsâf_É–s+!Ç6ò‡% ¬Ã|<‹Gþ‰Rñf#¨ ¼½F°+gÓe¢±wÞ%¢HeK³±+æ-B&vè*üï O"?ÿ þŸ%Jšój¡å‚)f8•2õºó‚¹¢|3¦½ƒ« é/ýy/ø›GôËU‡ô_ÿ²!íîu é¿Ö½¾/ïºY]6u‚4Ur¨°Õ*rÅ(T­ä™ìMøo§½û#ùׂ,’Düh49rZP,_kf\¹µ&ž¶_:×Ræ–.cíõÙÈnoEe”S-VyÊ¢KTEyEÑB5‘0È wwwWsÒØÕá`ÇcLŽ0%¡‰>Ã.¢àZ}*qН$oŽë+rã£h8C²BØ"´ublÿ<¨'öLÀ%꽑†v˜“Qˆ±Ø=g‹Df«¦§HT'2ÙÉÇã:pZÃø88Ðó!Ná|µí™pJðÜûá¸ô…³ý¿N¯õzŸ9Ä:ìÒþH–âÿæ×û$´…cC€ 0w z9±0³É1­ má´ÍÓé£QÒGÔ績ã<„‘ïÌ«d.Ú¼ƒˆ¶%(ç[.è—ý†ÊŒ#Ì?I  Ú6|KÏM6ðÔXÀH„ r19À.„JžÆÇ%~—•N8—ñ90ûUZ4ì¶~ ±‡á½šÇ#2ÛæŽ?Çã'É’ 9 Ñ<;!3t¨a@±ñG8¬|aœŒëXü•&"÷E‰“í©”§ ×&@ð0™ê2à h}WNjÇN¦Nœ“ü:B|-ùÑ7`L‘¡šÿQÔ—CQëTØ‚åTÂîInÀ…C\)mÓ%d.F´¿"äKvó(\±8•жM¾ÓŠ>ÖëY M¸¯–NÃxͼ¸8¸_dQ÷­“cy¤ÖÃèé.'Ýêw“YÄùÇ™»öùl>#ûx¸†éz¬Ú„ÃaÜ#Þj8s l”_r.~½0šÏèjq@ZŸ¢1#­áADŠx[Çžñ}ݼ¶q tJP¢:ÑÀh~=„Â’O·íÜ5ñhD¹XÚ›nƒË6 •|áp¨pÎ7Ž2Båà8Êù€”˜çNü‚ïÓÙ NVN^z(¼ž÷L çådçËÄ7Â3‹=SRìHÂH÷©&Ë$‡ X”2Eç³´L+'”£Óù„˜V X8ŽÄñÝ4úç<žŠEÖ² sqÈ¥¼Ò–ì*Ðh3 ôNw’ƒûȯi*Öð㺹ëÆÑže>±8mH[]ç Ÿï³j^°È.Nu Ää#½§Cı{h¦:.ñŒŸ„Ût÷pg‡!µ\þ p|¯EŸPÚ ?œs3ÀÜ4(îÔÜgaNðàüø„Bn=ñM¦Ñš'ôf²Ì$fr^Uëä!Óøñ›¥¨p•Œ>›3|2áfÚËÆÇgCäJìåb¦@iu%Óž?Î!µÆ³¤0†cJÅRwØïA.˜5—`ÊÁBøm̦˜(ԈŰQò°_óŸõ8§=”á=e#õr;Ï$Ÿ`¢ÉÔ{(Ïz¨@y·úÁ{'KÓÓ”ÃnÌ“ÙÛ=°ß×ný´ocÖÙ6RP é€d™\…{ìðô¢h]è êA¹~\F À£q€,¦Òõ0ãKÜÒ oJyjÙ¶&ÅШÿ~<:V:ã"`¼Êåe˜ÙpÊ‹KXàn`Û«$…ç¨kc^L‰+|tޱ7G…1ayCÍÐݱë¸d> bórSltZ;JÇ;c÷×ë:3Y:Ç[û`ÌVÝ’ffIÏ(ªk ß›kAŒ ÝUÁ7Äu?r“#æz¨œ©JÙéÂW}ç+ŦRn$þr{íHh •ï×ﻊ!+ʇc gq<&f_¶ènú~\ÆÀxTß;1S©##öfyêÆp&”=·•ÖXµD7&R]} jŽž.¡ª„kâß.i©‡×JYîYe«ê Wà:FºÎ«UÔ•dð‚$ÇÑ9'*Ét³§I»Sæéí ÛO‘¦žn(gF”(%º$“wFF4º@ˆšÙÓB÷ÃQÔñª>cA ’{D*EápþDÖHÿ%‰&Ì×Û(bi%O0òà)Åd~|â–! A¤²(šîožhTàaã혫"k%]Œ¢×›¶@OCt{a{a}à9»îªR¶z»·F Ã#Ÿéò'‚Õ-¯ éiˉ°fhCÈÛpbXdÌ·s Tv‹h 6iJþpC„GB§à„œÑ%EïÉo­ƒ½^·uð¶½»ÑmmÕ°( +Œ˜¥¦€ ÞVõÆ3ÓmÉr<UsºÎnì]\ïžCÕ¼aÃF ­ù­[žI™Eå%H4•G·šOÿåñÔ©dPÁA)`aš7é±È^CŒKô‚Q +Ì©3àJS é R¢ó؉÷4%+#€ )×ãhŽbÎw«OŸ‘2ïßq4ëQ³=i¶â-ש©²ŸV k)dáI?7ð€ŠÓºÜ…Y²'ë wEYSËí ÃÛ=˜í¡“‹ lS¸Rt\9‹ÈpIÅA(j©!ÊJ¦¦å‘’ÓdÀó4µ*{° ™(ìí¶¸É±)M,iˆ@ȘH¦A©¶ ‰q¤ù´^±°d:•§¦x4g ×XË0p¨å£Q"©ëP©•U•yH<O0Cg÷ú$Qî¡¡'³¯Tጥó©ºÅ‘Áu;’í}Œ=Q>„'#<›´¶ýp»OŸòè´k² ºËnd«¸NNh5üsd ˜›;ðÈŒZŽ)»‘Ì2 NB}w.E­WÇÃË?Ø”sa:kOÓYwÎlæ]ÅþfÜs»ßYÃõ«ÆTÆ„„×ðF`µÊsFZÓ¾ß^…@öôéDӸ׉œ¸Zaÿ8zzšµÖ« ¤ƒæZ‘êT¯Q44¬ÇFjã5LêÞ+U×[AˆY.mW¸æ—¶G8®Ù?ÂËî Ìĸ"s½U¤·Ð"|õàMšÚë†" ø¦Yð0g—å&EØÝ{»ÑÝ|óÂ\»b#JİkÝòèýyÃýsg uŒABh¢rÄCJE3¦)¦ 3'žÄÝÝD0Ð5? Síá4Ê­GüšZ‰Í®ZÛ6—3$nhâ­ŒHÈÅø.Ï&°e¯¹ÁV‚טDÙ•>‡4ŸMæ³€e,"ÖÓÀàš–BzWŠÈcE"ã¡•ÒHóÞ²”¼µ¶CòˆKHSÀ2Þ>ñýsĺ«a2×Ðá”ùU®ÆY…÷´²\Ø”,ÂY˜b É£ hŒ\ ÐC!*ƒ$ žÔ@RÝ{Ó…x†kMñÍv-š½ès»h]´4€äg»â—‘Òp2‰€6rXI<9ÑÜ’Bí®¸hD3))%v,Ô¡Œq"¦ƒ"‹ê,;óÔ%ãͬ¡çš•ÇÏ…²Ã ˆBQ!"=‘]¿ÿñö(I>†SŸ’5[1ŒlY;F)Ö"€·8™O4§V2¡y|~élô6vгsgoïǃ½ÃݭޫΜc5EyïH’¤,?« ÿB%§#‚ÕÔÔÄ–°ÆÚUiám+Kn5>*?¬¯¼ÿ±úˆc­à¬yÊ@󘩒RÄpÆ^è(6Kæè+(ɆXÁ ¸¤Á*´“ ²`ÍçΈˆ&îÕd‡# ô!SÞÙiœF%…/»šL£VFhAÈâ“à¥J“1˜WFXó&‹ Eøzɬyªr§“¤Iç àE—EyiЀ™5¶S·"tüÎʇãqGXwG¨±U&QQ¬ôÐ-å1\°³á\À T†tù͵à>*¼X:'”µÉà2¾”¦ññÅÑ…ÐÑ+ÁÞ‚g:º¨±ŠNÿ¨äÀ5먉Pm7%¦>'®r¼ÚÌÈ@,úP_‘Âc·õ ¿ž«âÖÑQ• RÍȜқî¦iuÝŽ»«g·cÙðl‹µÀ‘:¹C¬Þ>£Ë¼Âœ;êÈ£0Å$ƽe‘eÓŠ¹Bù±ôHè‹©&ÑcÀÑ äG†¶ïªš˜¤¬¥<Áo|# Bû¤ìÎêM„‰±4Šg—¯=!ƒ`Yöý*÷í-ËôñüD‘µ¯&s4  Š'c—cH„x:OPr…UO¥³È˜â™ŽŠx¡çã™U·»ì2Ùù9"7>Cl2Í@^ôâñ0¹!Ëҧ½»½×ÛÝxÛ"OLà µ¼uÎ €ÅjF¥èÒÄÐÓ§h!ws8NÏXG¸ÞÔËQ ÀJdûbô(y\1 ÄÓÀ4PX›bDâB2¢±Â¬‘Ö´N/îN±açH†§ãtDÆCb^ó䕲ðndd/H VżԖšç/ÛÑE{z龿v¶‹–ü5­(±Væ˜ç&ïYÍs†Í¹dWÿUSiív~e¿ dÙ—¯²?+«æ¶S»tVŒ&A&Åló!º‹Ùô_sD½*€IR!¤E•°o@–D£¡P`KT÷ª?‰F|Ÿ¡¯‡È»N”ÆÇcÊSE¦€sÀø€À]èšAö6¶¶z)»aéI•Ã-¹!säIóÚ§&¬ÜTƒ»\ú .›Ì`â욎îa°jh(ÒZ}0Î^Üc · ‚±jµÑõ¼u¾þü7 ¥É6@¨\$RÉF¯4×ä€ÐŒÒOŒŠoD¢aÉ7›Ø$ ‘ŽÌ YÈú µ–Ƨ1j¥¸)´/Â#k0&µ½ðBä²Ê,éñ ±þÇX‰8¤õD(M’y Ë(„9ŽÑŒƒO'ðP™óàÖ­ÝÏÄD Êq>aúQ¼c5O˜˜yb"Çp͵ƒU‘ä½eŽ/¸;ª±7)Ó99-ni]˜^QXåȪˆ?ay‹&”º²¨JT^–Ññ¤V…ªF^Þåµ×:g¾%åB±$™°˜3„pª OѰd<30íȫ؂ Ëp­ùo›î[Ä?Ì^¬­eØ â Bï©“ã&(‚Z%ØA< ˆ4ÎåÐÕD:RDpl’#“¬³C¡""Ë|š|fÆ®3œÔÍÇ~'׺+=¾çÎ~Êè%ð«u“Dh!=¶d£q¶—.‹äö7"#o »¿¹ô>üup:£V Z(½¬­Iv¬žÜþ‹$÷7–ݳ¤ðu (_ô¬Ì¹Ê&¦X.W ¼/›=_) œ$bFÒ²OAñêë²ÖB‹%ö\ì*ÂŽ…⎼QɺÐûú €ÓˆÁ,>Ƭ5JPhpt5äeŒkQ^‡Ƨȕ#¢úÅ®H² $GÈ]L·ˆûPQ3FRÒKGÖ£‚&âáÄŠŽÛ#X$ƒÝA$|¹ŠèSÝŒêG­ØÉ…Ÿ¨Øù +JA`\‰ÃàhNÖD8”Pó•ãY«ÐíR9)²wë{÷Iþ£Ù -Ì|1B+'𴈞ľáàS8î£b.2’ÐCƒÄašCm çb’iCàbG$ã"+J§¸u¦ È<ïFw<Ø·¨­¦Þf¡?ƒ¹z–ÉŠ)Õ/Rxâºb¶ ðŠ3û—Aöt"b¸×Ý»#gëeZ¢B¦¥ °%­[­öËIJq4bãuÞ>Ü®Ê?/þ-8c9Ñä.CvÒÉ©ðxûÌÒŒs 5´4¹’ZÍ$¡8õ›`ü wâU»YÕOþš4~k <éã9ú*¨yÍ% `¡B'q•ÆFŠÆy£¬I_U³ E8‡Ç‘‹ã\"Œw•ó.83_ghdÜÙ êf”îkXâ™»MKT$×=WW“ü Š’+©Jþ;°²©x±‰<÷º+òFiÏ(M åÆº«K´"º£7ÔŒb’{#½ÈíjFœp¯yÁïD¿N8¶Ü’,o]&ÆW‘Ùè2W—ƒÝ’$ìVda—JÃ4¼8IÅ ›"¡NˆþUo–Ëx{áú¿Âù,<›FìPwE<”¿]ùÿËgIü—ãi4ùûã¿Æ€ORzTÔ5º÷s{÷ñ*Œ×G´\ðxkïçNï Šæý'Õ*Ö‚çw´ 7â<©ôz›¿¾†Ç½^ÕDÝ¡Rf­Ñ~ã\m¾ ?F÷S Є4ñÁLz0Ò‚±#}LmBíj˜éA¶¿×ûémÇ.F×ÉÐþæ(ðûú›)àih?Ͷ%˜…¥½Ëë˜Öð:¦„ưë•*ÏEë ûãÙ([Mëìõ^µw-ÙD‚%o4³Q“¯Zû½M”èv½UYXªhòÇê¢ÙH@(‚NææAÐYÏø+³4ÚçO;¯VœÊŸÂÑ1ÀôàÑitʉVl+Þ!=Ümwº[î!ý~>†ë~PPAûÛi¿úÍ)ÿ‡ž“…¥_ýæÎù(Wá’QAèUÓ#¤Â‰Ö:ïmç§Í`„zÓ±†½2¡© qÉ@£MÉùˆ´ u”4yîÃDTE)Ù!DÛ€ËGØ 9cPá0•è}³ñhµÑl¬-›Rû§ÍgAÅPÿDp@›qn‡($‚lÄdiô%­wßv6{p'Ì™_˜hö»FÞw6œùæþd4€ÁP? ­Í A ‘?¼; ½u÷9s¬Ñ€‰'Òu/@¦m~÷]¦2 “Ê Æ¶Ab …Þ>P+pc÷~ë̬ ‹—Ìü9ÌœÊ"n¬Ü)®à G€szÑKqÔÌ>¤ýî»Fs§jŽ,¢ágOÌwÚ¿á‘~”G£yYOmþå¼lOmq‘?æåÜ PÚAÃü¦„ÍeUÂÁ Àó5¬Ù*[­íÃ.à›ý.ÐF½·¿O¼È¯·¡¿àeð¼ùݪ©%ö7º;@.ðûÌík®•â®´ºÚxòÜ<òI?}FÐö†JaYDû—Þ|,„&°×~½»wЪ„µ£Z¿FºZ¦ªÏªÁŸ¬!:t£±ÒHÕÝ(kßÌR‰ºÒ¦Ã,i(Ï÷Ó÷d!FC´•¢íEÛmrø€2PÊó…§Q8f¯áj}%Kj¤¤?§ÑDˆFɽÑúÇSê Ð09ÉÔx¬Šv€ŠfŽ. ×Òœ»;RÙƒTsëŸ#^xÞ5ŒS8ÖÐ9Š#ÿ9GéŠ"‰pZ£€¢ìFHâ†>…µ„]3òLs¹;”®Þzf\ø)ãôÊù—˜ƒ.l­ÿsü¿ù”ß—s÷­×lP^ÒjsA«Aù~Ù%’ºŸy±Ì±ƒH˜!†3ôdû†F·ì pu±ìʾ]í9kNŒ`Œ ˆ½žZvèq   mØtœ-(Bè‹âû¾$=¾Ýø,8¼Zë8ÉnëÆçÉÆ.‡~¦ÁU$—R#°Øð…㥹Œ =°©(‘~ÐÈZé3¿¶ã”ÒØsÏôœ!ùŠÊB¶ öå—’ïùI»±"1Ô±¥ô‰Œ„½‘©B<^°ˆ‹td°Âqÿ$¡` úGLñ>Û*îBh+þ $FáŸÁ=ïy-ó›×ãsÑTu`0åTõ!KÒêÆãZtþ™t uäøªEÓŽ3ÍÌF 3íã 饔ΩŠŸ•ݼ‚"…›,åD7²¬)·ˆßT¦ aKJz¹ %[`Ùܹ¨%¯LfP_¤Vè»N‡cNe<œêNMwÉ´o§,˜ºkþO¤¹¶¼­²m¹kþÏÅm9›e[²kîÅ­øeòž×2¿—œBµW$«ÂYj݇Ñ&jÍF\4HиaŠ'’]ákY‚G²¬¦TáŽÃËÌ™•'™CˇL)ÍOá:Zq€ÐÁ9ä¥4nFž9Ù÷…gI é^_ÖX¶ÜÒF/k4[îJ#ÄÓ+Ö-{¥_¥ñ¢²ËPÌÕÑ‹¯ — ȉ©Ès-ÕFɤÔ3pó¾hfŒb`uñ“NÊAP摃¡l-µ%æäw€³›ÃNxåÑ’ÓT16éWk:MáÒQÊÎçGê‚D­øñFœk¾âjÅ-jÌ@-ž‰è±ñ»'®on}JÁeŸE“/î=„yé-K¿{|$àåwE»¼}°÷! Q´]úÒ[¡½·½Nkã`£»w€/½rDÆX35EÎÅPç­ÐÆBçG’Þ íïuÚ¿ô¼Æ¥€—Þ ½>Ø;Ü÷Çô­¿‚EEžçÛÄ‚‹…oa­ kì`þN·!d qä"?ü0dâwýë¢àröÉâˆÐp­¸]<}‹ÚEìã¶]Äédr´ŽÌ¥ N¼ËâçþÆ}iàž§ˆ¡‡ezT—Gë,–À+Õú68¥ç+B"[RÓ/šÓýP»,šÖ÷æDI˜7[;¹ˆÅÍé•™“¯>§e~t館}aá„ôÚ¡­ñN]ÍŸV™G^§‘¯Ÿ%ÓöECKJžáÌÏí‡C-Êré)«ÝSÕ]¨2KÜê(€ÎLÊ1%£ Õ„¥wçìÚ=Wc ÃÏza—‹ú„ ñ)Ù.jÁ\`@2yšg†F|4]ç'Ô‹Èä¿ÂåæíÏòíÏ‹:ð@oÓ‚ž£tägåË`΃¶šfó½Ç*Ò…Ç©¿ì8‘4Ò9OeIjÐFÀ5"6°™Àx˜=ÐÐEÄ>·Ì4­J_;)¢O1lþ:kçʵ²ÄÔWFy]ƒ¶÷Äé1ÅPò³taÓŸ54°ýYJÓgíÔ–)ZHï¶©¬d™$àu‘Ór–ß¿h^VUÕ¼kÔ¿ûPcÞxŒ9ãnîcšÞháîµ–î^˜FuUóऌʇBI™]«Œ“à4>6:›íö#ŒòCߪn¯†‚Æ^#³ž»Ê瀲íU&ÕuaUPÉnô°å×wì4á¸]j³UÎu{Ù\‡ñy4¨K”ìÒJ£¦”Ó’ìÀÄò£.ÆZBj8Z:š©æåk5¶•ʼnžð®¢å¨•ƒ‘¤K,ƒ¡ òP#0#­Ñ €óB{0ª “: –ï§ž¸.w¸ÓqÈ?_ªèL§ŽOdNØñ²¹r1Ï0 C×X’ª/l~´oÀë´g‚‡ yØkŽÈ{VBá²G¼–]ÔçÎÕú„­àná¨÷‰+¹¼_ÿPk ?îYS3sÓ£h´n`Eè„ އé£->ÚÂî^s„\Uɮ؊ôåü¦°¤á%8ƒ.ÀÔ¶h{Ù_æêøƒ%€6ØbÐýühÿèDÔ)«è¹Ó´#œ²\?´mÍd¤ý2>©Ó“,Õ+¹qà}À¶0bìXùÅ/¼º¸Ë·¦KÇÜF(Gz’íÓéR¢°9}^ÚŠ%jHOË’nðkI?ôþúáP=×Wr”&˜7H/€Ž¹8%Èv†µðÀ¾]v`Ù‡ ¿2† Íšƒäˆ4—ª?54„c¨à€œ=vWl–L$žÛ÷üôe ÜDîfò(Ý]Ó•cäª]É£ub S»s|T6aÌ;Ûµ`óÿÝØýÕ|¡x°8‹ÑøxÙÒ¶ð®(Ö9¿r±ԧž–ZÔËRPüU[x_þ;My¦Àã¹Aëñ¸>‹OM°dæØNã?B­ÿÐ\_سx{¼ ¬&„‰çÛ~zЦtLVS zΓC: ì:C)¥`ž¦W!„6‡XžGN¶2¾mÔÂC» u9ïOò§E²¢)wÊ'W\ öôÏe=‘áš+h0ÐÉkUã̽8W 0·´¯é²¾äöød±¹>0¡!éü¨¾€åwù`#¯Ý˨Hq_ä‘eƒõ‰¥Œ™^&·ƒ¿S~g"b¯Ý˨x±3yät¦®Ø7ìÌQéÔ² H9nŽpÙ$…¼îT¹÷]qÍÌ8Ó{nÖWëÝç‘]EGí^ÎjÈ™:>SöŸye>©= e¿/Wob§êö¥Í÷e£2,êË9÷ÓKNºº»eøH/ãù"†çþl©P­NëV–(w?=^$D\ÔÑ|YGóÙÐcP‰j'9ÚRÜtÿð’FëhröRvÀi¸Æñ Äà‰]ÂÈüh>Žg çòÓ²nÅÕÌGM˜›izj# ä´4N?Ÿ–ò×d3­\(Ý'# HŠbÀ«mÉÙRiH2ÔU$h¥!FF6“äÃ"SNÑf]-èëüRóÊ}§°lfFÁXÄêe† ›©´~”~ÄNÞg™.\¾ß–žËùhä鳄>nPþ(á¬ì¢u³i¯ :É?#=ùç’Øvté²—4r,lt™†t%x‹wóQ|ÄHè =‹&NP2 #H2š´Â{»­ŸÉ©üü+H¸•`Ï¡ô—jY¼ pÁ7ðßmþÎa‘?úæd¬UàäÖŸâ'C}rgxÀÈþœ^5±7ZLt׬±Ó&þA¿MüÛê·ÇCóU;¡«ÂF5‘<þI†çM5x¤O1tðZñ¨Vy dKçýöÑ¿Cþ÷9ýÛ_0‚ÇÚÀ¹Îÿmð¿ßÒ¿éßæg3ÚÛijÍÚòÿ]­Èjmùÿ Èãšÿ¿'ò¿§ü?ÚÙ/v¤ÝrBÝd1ˆ8ƒ¡Å|not#È•¦Ø®Hhƒ4“´‘>+Ç`ÇUÜãpÅÆ>ÕÒŸ%n „òZÉ8…aIj¶Ëq¬XËåsͨ ¢Žû¬àûõÀzy¹§$þPÕT4¶¿‡ëA,Ýüà÷à÷à%öö{½®ižìðêuÊùóFð—vwŽÂæ/_®Ï8Uk~^r4âÐ7¨ãà!‰ÿüÅ౉ڴx̉hPï.Ð()@Ó‡³ÃÐlÿt÷+¾ãð´Y˸OWq×Ã'9†b¡ÕµÒÙ ^ ªÜYî¿oÜÇ0:TKè6ô›°Š³n­hÊU`ëÉTm5óbU^ Pô©áþjU² >zIO¾ÿ>lV×|Æ^Hð/Û„ýCLrØ®½ sXø¹ñmIÚÐÓÅ]§BV;ý­”JÓcŠÍù"lœÁÏÈ1ðö,É™†2~¼mXÅi;¸˜c‰Ð‰74\roAÚìÒçÝCù¹ÝMS:Žû n4úç»æ³p¨#>c£h¼FyîŽ)q¥»Ò]d³k(WÔl ÿ‡RhÌ®cXxÚy|©Õ JΊKzŒÈå»Á=®xlaŸÜ!¿rŒ ¥?øk}¯w$L±Š&ŠM^=|ˆ·Vxøp­$?p7Ò9<¼ ¤”y6ÇoqXê/¶æ-Æ|IG( ÷óc5ÊM‰¡ó˜“™ ƒ–OG\â¥ÍzEÏ\C[Ö’‘Gö³@‚“”aÀ¨·®Oṵ̀åølRúŒg£‹ä1O/+€”;©4 iRs’26¨Ë”ã&M†óÑJAŠHXn˜ïiÍŠ Ò‹Ó£dTª„cŠÑ‚Y¤l ã$° ¤9 ʲ•!l–9¶¤ã1*Ѩ_’-Q|PàDãmúî åøf«ÕÙ‰‰·–HPñrÅ$eŸ˜›ö g—BA,mN¦ Ê_ø¦Æy‡^ÚƒWéEU=IÂI*ŒàÑݳ8UÄtšmãtR1¥Ì„¾z¤ƒÉMë,ØÞ>§°©¿»arà· S”ÒOƒ2yFôÌ86§3œ2CÝMmlÛüRݟظG÷Nn3Û÷t!N¸ ÌÀ¹21Mèˆ{JÝ®<ÒBÜélJ1´?Å*დŠÂÃik‚P%sB&Db%8éç–ß9U“>Ã,~µû@Àêl©6Ë#æÊBÛçÛß.Ç“ý6¶ë67‚ŒyÔw|ìlÂpœÝ- ?³6~µ{@K9¼½¥ ö:u“`8s¯Û‚|Æ²ŽŒ’særŽLˆ2ilB—¬LÅPwv’ ’Fj±DÉ\(h¨Q;±BqÌÑ)ÆÆä˜—~g]-ˆÅ‡¿(f7Ǧ/ýCi]ý-áj¥Uêí´6v{»[½·ðÅV)|™ éþýOc k´ñô, (ç[<›Nަ+lPV~ðC¹j×Qeg»vðêõAÀú ̃ׯxÚGf)1†·t…{P¤rÝTðß{A3ø!x¼˜ Mž­:ߟÀû&½·N7o`~;­à„C4¯PÌ_°·ÓêÙÝj‘Ävë ×ÞÝÞ úéQlÊa Ô@c¡­¾õ¯ÄW%‰)ˆÓ“ ÞOñÐP#’LzÚ_9Û˜qÊŒ(uxÜTO"¬8%ÃðJÅÈr°Í*óÒµr쯊ÃYWà=çcf_¬£äEFðÊÔϹZ­xåžøåž7%ŸfK•{ L<1éôë{øõmÕ.EE¾¡To›Òîé®Sñ:Ô­.èýñw‹ÚaèÈ®2½kl6ƒ|â òÉ¢A>ߦÆ3£|Ò áÖ“Ec}²h¬íÅcÝÖ©Ã) ãsôîbïø·;S~ñaV[²”çfö7³ï.£`ù¿£‡‹ o6¼Ö›EÍ7 ªËÊQ7BÔˆå'Jt°üg92øÂ<6”ƒÉ-÷¢CÔÞS—R q]šcÂe¥‡RpÌìu4ëÌoÈ ¤‚ñ÷÷»û‡Ý#Ú7 EJáÕÆ€ñ¿f©¯3¸ 8qpŒiŽVx)G4ôÈí;@¤DãW$£o‡IE‚V@9UN#ÁÑ´\¼ ¨¯OÑì6)X6F²®”ûÁˆ¿ûuk··Źƒ=П®Wý¨É9 ófã %ÏE5¸·ßB«ˆv§KVQ ~.P»lø}ô³á±sáÍ\—²œø¶j·Õ޽¯ß:‘Guíw“@õíT“³|Õˆd8”çxÛ%wûªÅ2Ò…oJ΄Ly<ð®ªÁq\T÷Kœ ¡@4Ò#pÍJœ†˜6˜»•”¶Y 6f* 6cBR#yî>1b²Çy ÝP¶U'jJX^Ñ ¸Ÿ`+O¬8ý`”%Í'0j}>É Eø÷²¥t~í GÛåt)Þ+ÌB´[ôëtÝoaFÍ lºëåv±OñlŽm¾—‚†®®ÅþVçQË®”fœó—'Ó@[€48MÒÙè"Àœ´Êb<×ñ ltjªŽ$)ëÍTpng#·]JyçfUA–ü$¦˜ƒ`÷êYù‚¢¤|xdoš—/°yù°™/OÍÁ ²ó¹9d4ìF0t{#=˜°æè›ÛÚî?ºï)ëðâ’" ROÖÈP ,Oÿ͇¬Á-‰2Y~ W$§U63eo8F=‹¨ay$/¡•d †©†Õ:ÃAxá,¥©N¯Ý V¤§•tÖCÓM–ZÊ„üÉK•P´ÅÅó“¶¥˜™×¨(°Ð`Í6•í ~c{¤.^[ÓkX–Ï+‰¦È„Ò¶a”‘üJy}QFó+V§R‰úË8Ä”W˜}!šfA -­LÕ-$¢(O8õÙ'<úxÝ]:m-%SʳÌA7JÙ¬WsâR×\,íáf@¡ –þÀ³y»àyÐz] žWDÓf‘B Á?2éP3˜5NÃÙì¢â$RÀÌÄîÝΞ{·R¤fñÔ%¥Q+Î2cˆKXçÓj=lX©K™ŸsUHø‚ÈãëÁ°°Îæ¹rq…—T†ö>©p¹jõšC÷r}ŶÙÙì³ÛÛ„ÓÈŽ”×A¿`²Õ[N‰dµ–ØûwÎyH“†bwÖ~ÏN”öW0tëµ Sàʸ‰/ßí¿»›ž–Ézê¨déR?õݬI¿5I!Q½R/ í¤šI§î¬ŠŸÄ×S}zôÊtœ#¡ñVOxPÙv-žoÂ?¢Q•`ŒQù¡_…¤ášijJ›€ê>“8”¤@¥T4 ¶aâÿœ‡óó•`+üõj>=F£cÀðP¸h*â(hïþ´±ÓÞb/æ.'»luJÄua2hƒÎl0^L“q¶IrüH>EŸ¢J†%GÆYG†ìŸ¾°wGx1t¢yŠH'°R’Sè °Œ”oѤþ±|ÒÈÊË'GÊ87§½oâ•Q$l­$‘—§)ðÌ,(ÜnïnõÐl4@ës K•¥ˆŠI¢Ëi¡-’b˜2[ü©„¸´i_¨Üú¢¹{4’¢®t/ðËö8×éÞÁ¯|ÓAº6¥cq‡šÔˆc-×ü^“ÙFÓ©šºˆŠÞ™¦jÇÖéOÕƒXáað¸JMãël="‘²nÓªC”¢-žš·­ļ…“ í·X²þʨD”l&_-e°c£#~uÒཊ[¢ZÃʺÔ_Jh`Ùá¼n#“Èà ä^…Š!ëê¸õîXàâSÙ[fyHÄmÑL©.³ßR…ñTl¦Ý;a:#‰ TδE?™Ô£<¥¸ÅTq=`‹…ÍÍV§ÓÛjí¶[[Õà‡ EO‚Akw8æµÍùD6ÉCìäyE2¿pÆW¦{{B³ö¾ŒòÍ6#´ïµ‰ÞKæó÷ѺRP9óµÉ_£?èÉpˆ¹ì­TÛÃò1¼í|ÕQ»äôÕG™UÚXͶ¥Çu·¬øŠ7Q®gÎå™ò”7ÊÌ[Y›Ì‚ÝÜ™I¼åžžjˆU;vÚ=1ÖBÌæè¸†¡ ŽrtŸä…DRð§#µúœ£Š‚¥–­œÁªµÏr½]~»9Í`®L³¹¦t„WC°Ë7M¼=,Ú”°8ÓH[¹j´Siâr^ ^:¬ÿ&ÅeØîªã¾M´wE<ãë€ä°³Þ¦È&…ým¤ó ÑšÛ´œ}{ n&sìÀ±ëvc–>H&@ydÒ G¨ÿ®ŽœÑ“ šdÙP§kð½þR$3ߨ¥HQµWä%nN®Ë»}@Øn9Á½¹‚‚wd^(Qá§ÐÛðŽßfcr»xþß[æ'¨×Ñàü}™ƒ6 ëŸuµ¥èØ5—¥G1VEtÿ6<Žäó àC—)œ±A9@(ÉšÀÞ~·½·ûaee%x·,wë`qC“î•Õ^}(ÛTƒÈ÷Jk &Ë,U‘ì¡ü„\r!©VŠÛÑʧKTǯ¦ŽÄ)åQŸ;¿©ÅAf67vv Ø¥0‹ôfH€ôÑÙm0%Á„t~HBVÉæÆÂ·³¶´›ŒëCMß¼9'µ¹¶º™iL©wÓˆQ'š½.nÖ´ø¾\‡#㚸Yy?EÓÔªÐH{÷’åÇÄÚ¦åm [fvlA±ªpåø¹SÃ$Õýc-h¾‹W¿­^¡“£?V³½a7«‹û1r>w>(‡)xîb`UˆÁ3þ °#ÕŒPIKÅݱ,¦ -’k§fcÍ/Èüh §‰µ9KúðA¡Åéˆ]ÀåY%¡×”2±g¾’8; #ôHôR·fíÞæf’qÙ r”´ÙØH¡ÁJ@7ÓYŒIÏçc¸'Ò’5O'j=äV'bŒ¹;t4{Ýe]Ĩ}L}R¼id6D<:1~™†SD®Å%³éÇ|ÿ0”ç‹,ÓLŸõˆ¼¥,÷ŒšÎåÚéWŒ>èÄ:‚Åû=š8¤‰§òLȫ؄¹ÊÖp&baOß×áv²p™('m%rœZjAEüÔö»Uùª5èÿn¶[V½ÌŠÊSHÖâLrÎܬÑÇ΀±0ü³|ÀñíXµ2Ö(Ç‘I|Ù¹Ü"kT"‰ŽÑîMÉß¹Ì4œZ˸ìU·lÄaÃP%¤î%óQ¥Z ½ 3ïužy ÊTHSÏ$%&<£0H¸wóñ$î$+íÍ^Jä úµˆ(c$ë²gW¸EʰÅGN‚ÖÒ– S1}9ňͤìž~ 1ÜX$AlE=£R‘p<‡Xb+ÌÓŒË'|B“×=Äú\Ý:8ìŠegNµ Ã×$U0 Í‹¿a®kdj ˆã ©¼F­ˆ¼U}VœÒ…œ7ƒçrh ÏßÐîý2ÓyS§Äß8x4ÁÀ¢ éû‡ ¼ß¸/2u£É£}Hm<ñ÷4¡B  ´ý_}Bd¬ ©>Õc °‰·ù&·CÃp¦°ìÀƒL¸•è&XRZÖüŸóp”2–íŸL}ª½Ü_¿¯n3¸[Œ+ZI0ܼL‚§}‚8x!ô6¯¤Ô¬’ÍËÔìoÃÂ-l™Dýy_¾›Í®§@ŽEmœc½£V£a/"Ôã º¿Û_ÔwŽ÷Ș°hqµZõ‘ñøË±ëÚË]€ß"þïp‘w„zN(ã[þïÒ.¹¿»¸PÒ=“³»àA:5}c¼Ú5¯5æ/®ÈŒ1 =½Ì§y‹«z¶cwkû7òä4ãGŽ4%8bÒe.âNå¥>âɩ纄?o…}8@F N'8&%GÞçÆ§c—¶htQ“VÉŒŽÜûqI©‰g uÅeCü^©Â>Nƒã?ðž¡Ò«ßV{ø£ŠX׎‰æ £ÛSäTT„ïg‘ÕŒòĬ÷ˆÒ 1F‡HHÌf2<'ÉX£.£ÏB²˜gñˆH„™]¦“0-QÄÒ…‡ ä9Ø6ŠNd1Ì<È•àgÒ`i4ñáq4K"£‘y…Òfh§hb|S¤w •")4þˆ¦IMÅSc{8˜%)ÁJ¥åˆx{4á uB\‚‰Å4€WZ;å6d¹¯ölœøãûAÆ1âÒ¦Jô¸À„Î&OnVQ2ágS  •ºjÕ,¶“èwŠíä'€€Ä´%%D ©€ÁIveç+U/øˆ‡“Áƒ~ˆ=§^-\ÜŽˆ}Ô€ƒ)mä2µêá%ˆ{/t£Ân.'u-pÔ¥äÄ»Vr ]ÄÑhÀD£u k€ÔGD1­½mÅ0ÜÍ;ªÅ1¯ú&([ïÇì›.IÔ¡Ö/Â`*"¦Å_„v Ö1iˆníü< á”PÕÀ_ø*uýˆ HÀIÐ숞´ÌË—²>N:RŠOu:™]ø •~2Eà$ej øà Aù*`Lã› #ÿ›Ó}†á®ßÊ$Ù Øg‚ Íòsâ ZT?ÐM0?(€f)pHÁµÒaÅß(mδ1ŽC+ˆˆ]€[žÖ›¢«mZ¿Q„A*`ª,S„ÀcÇ]©é©aMt ÇfŽÄAíNÜ>1à¢.Lâ6ÎZ@¯Š£èʾ$†…‰\zà²ÃNR`t¢q?2·¾xí¥–ÿSb=àÚäò€»®RƒR) b7œŒ[Xˆe½àh>uT)‘_­é äĆf²ýù”\Ä ø¾S;†¹ÄBÒ¯ñ¤‹ŽÏ§” (x5\f’‘‘ì4 „Ts‡Sˆf'Ý„Ÿr›ñ‘¦³×ˆÊX§’V B@Âø{Éнo&µÀ2ÔˆŸ}Àó!‘ãYLbAÞ?¤hÒEG!‚ØõÿœSœ`ΪEL6}óc5ïlã²ktžà{]\ù\r‹5[knŽÔtCÜ<¸tˆÓÿæ!³péÿíËÈ{íØŠk¯W][9`>wèÚLn\Îtlüð3ýÍ´šé\ÑëÂ.V3]8k¤=à¿B!/Š/ܼ¬ÙüUÆÔ\>¦\[Ó\[¼PË[É;çÖ4(çOó­`U¼18Oe×µÙ¬Ïk7‡‘ ¤d% ¶É@)Õ¡˜ò$·Fñ€ÜCŒš®ÂÐÇå;5FÏlZ $ê)€Œ@Õ3Õ5»)óÙâ¡â¼ßÈm ´sÜãü›¦FA/¹¡ÔûêúÏ{×ІhíÊ&“¬>ÕÀ/<Ùïz€SkÂ&PÛË÷[–ö]Ð,ñhxFI¿¾>>a9Ó¤¶ÃGSN@“„ž= Qèû>97ÁüÜèóTâEƒq—†P ®Á­šáöè'›mdgG=×%4¸vûF]|‡•>h ñlvì ´‡Ø,¤l5_¡0‰ìþÄá £;åHÛv¹äå'óò§nîåмÜvj:çÌŽÄÛÉZÉohjÚ<È€C›(.Cš—¢sªÝÅ#±ÿÕF­6­W›[íMwóçOu’Q%Ømí|Á²4ÎW«Ï_x-ît2›@…¾ó íw®Ù«c¼›Ìdr‚Ô𣤖ü4<¸]ÄÅHò–$wáv’PÇ‘‚7TúrÙ#1%&ád}Š“yšãO¾€1aÕ¥Dq&£q ©B&yaÿ#-šxë²Ô)y/fÌpÉÖn~ÄäýL™zMÌ)˜a Ù€Y¢¶{¶qo=мËûBú^Çñ÷õ“z}ͽ-_Ú¹Eܲ%ð¹°wòÒâGËBB_¹éÆu- ‚w !¿e4ðU&ãÂf]4Àoë¶% (V¥¹U+£p«˜–?_aFÙzµ®ìTŒèÅ®†`üÅKŸ¥„½–P$â<øÂiÝÒ” Ì1^©.Úe™Ñ=&ûèz=ÞÈm·³"îÄ®°h,¦[ŠÑ…»eY”7Â’3CÍÚÎr³Àfós0# RÁcnÊç ì’ÅDð­‘Áv÷' ˆ`w0x¦a'ÜþA„aè"dÙí4ùJ!íPøŠx<ÖœgŸÍ÷bâ÷zäïu `fD°!ƒ/¥ƒÝ©Xš˜ö ú28øo¡‘н_@^ÞɸäÚ92u9](‰…×WHá ‚%¡Ÿuï.§!í þ5$!}öXíªNÑ®¹Ÿ/# ]%¥Ð†±Š—i¨\¼QLN•³i<›¡¦7)©§ïªwí,Qס§Q’ix$%FØ{ÙU†ÜÆN1æ6 ¬'MÇ«¿‡²[|u.§rþÓjK±TFÆ4_¾îôJuõ<½RßB8~£×·[ÿ“³O«GÙ«¹3·ÜLŸ±Åux„:3L¨€îa,Iá®“Ç±Ú Íj%ò·\¢£ሌd­)ŠÑGÿ6DÌ8t+U´ •ì.ŽÉ‚=3zXÈÞ4Ãx¡V„ìxEšÕÇ͉—xí€1M±d¦‰iÄü•hmÎÐ:„ž ƒ¯‡¡ò%W¤ŸE:!!ò[Ó:fZ¥×x¼s§ËÎ>†&À‹—Vò†£™åQî/;eT#ùz×ŠÜ ]ÝŸ¹O¤`ÐðHt¡ÙxɦÔdYIAÆçk‘ÈH¢+GF7ÚpÿÜn¸"&näûÀ@ÞZ“È[W¹•›o ó¼§Ãpžۑ©œ‹X-ô%“l‡@´OËó]fŸM¢ˆ<úH ˜¢Î×ÞÉÅä$;£áå,je4¯C+™u—|zA໣çW YÃyÕsà︪c3¹ý ‚wÆÑ.qÐFB*tÍÑ€ÉHŒ®j€l¦áø8’0äcã·¤.sA)jøE¾i5[•sgG™Ç‡!æ†Ï%æ"c%žÂÈJu ­ï¼©²x‹:Em;ŠSŽ‹á–aWnu ù4ŠY½éüžöùšôÒÉp×ÜŒÊNSDSe2]ÅÛñÅû1ºb^œrÊ­Õ†¹še«œ©C+ãµN`NsHµ ÂòœçMÏYªàxhMl椚fûÕûŸfàÂÏBG-»î²Ø,pWSÜsáÒÐOcãøKYÉ€ÑÍÞ·»G9ÿªŽ†¯.N"@)0û}8 Ãù(È ©žâ&ÊÎ0B\!$4F6[v Á䳘â]X„pìÕ3í;®gVfxÇé1§ô?¥ö3ú#{Ay†ªïÙ„LŽ:›¯?úãé;*ö_üõ—=Z§,æ‚÷î9‡Qk4?¼Uh~¨f§¤o7µ7KŽGFFf‚v®pð_ŽEƒw¼vi$¹ª´šâ§Ì\Wø,‘+ÓSŠh+Â@Jè{LPÈ(Hwi²;ÛÇF‘dÈjÙ056Ÿ§äÖ#Ì žE„¨t&Wšìw釶ââÄ–äÌ8‚Þúô¥=´@W¦äIÄÕªé°-¢—Ã3ö³$oÈuGXÇ=Èßûù°»ý¿6-èñA**´ÚtO—/z<;ÎÕ§ÏdG³hœŠ)þ:Æ$¨ú´bBÈ8–¾Ø¢´g=ñB„iÔ´?LA~W9xÝMÉEoô»åÆ…ÑaÞʹ ê°’² Ú¼§ˆòïmîS‹ ò¥L&ÔâFüÄ«êY릅uHj"¨i­„± ›Êݵe‡¥›ˆ{ÀØ„G€Ï+LfÕ^;žvˆ  CÏ©`(`“´5 v™R K•lpböú9 `ç¦@ }«d)1Gì2É%dX|·”è÷\NÆjþyjÈÏ‚ê³é<ªi¡ÍÅÈ?ŠˆÒ,á„!Ω2+eš)Qˆ>þê$>Â%̇0pâCN]‡ù¥È´ƒâB“"*INxfÙ2ŒýÖV‹¯süÁrpX¦‹ñ,<v:p?X|sc¿{xТ;ý8Îã‚zo6¨—\=³£¸å.ûî\à-ë1^pJÞ5ÃÅãÞ ¼ ‹Žlæš{¼Ú›Iç^šSx-$<9^ŒGHÚbþ9 †¿ÓÝ£““ GS ’d"•—Tßý òð¡=VÞ™uÄ/˜é8«þÂ[—l¨BÞ§oܤ€2ÏꥤÇE°÷‰tð"¸ëFà˜ðu^n 6NœÊ€˜£µäh HTYêËÀšÕÈÝ¿wÿEIYsDj(Rpr³w­ ¼T†—Î@…%q:ƒKð‚¹²ožXVIáo«Øô˜×bc·™aß– ãý?i> JýòRX; £p(€T @Âûˆ6ÿÏàJLRW†P¥¯+ÚVn”Sfdœ*(ao–_ Ÿ9šâÅù0ÙÛé¾9Ø;|ý†Ì@XLÍ"kqYS×Ji!°={úôñSÎâ—Žì›0Ìr,¬á9 [#…_Òq#kryÍCßU{Dêu6_ÙWŽ„p »>ªÈì`Ccq9HcW$Ê$‰ã½a§‰›#‡U p{q¬gzY|R˜ÇÂê_« T| ³'ÓD.•y¬„˜Æà$¤Ãi”~$(ÏKl2ÆÉOÕÉ%²/Ãoßýëög’¡2Ó™§qJÆi˜Þƒü€ŠÆi]|9F²ƒ Y¼‰ –Š4™™trÌ0ÐÐ"$Öõˆ•¤²`Ý0Ȉâ†ïd•­áQ¡{¶ŠÿðV£Ñl á3‡åoœÃ_ƒò¹¹—X<‡‚o—Ü· Uv–Ä#žçwÏ‘DAÏ(£ñ.fØ ¦”å6o7£o³;azÒ ÷¥Ò_Ô_Ôðú@Å‚´.®i¬J §8>ô ec,±}T’Ý$Rƒlf´žÅIËH½¬( 6§^w§jÄ]V¢U,ÐB¾&5VŽÆz£0dîÞ51IÆ 6XüÔ£ ôx@ï»r‰Ç“ßЛ°IFRä@І¡UŠ‚Ã½ëQwcкDÓ7÷U!Y(™q”Ïp)÷DætO(=óЙdxn Ýœ:ãË ì·ât2°`ÎVûŸó6M[món"vбMªh¶–aÜŸ Ö˜ñƳµÅ‘æ&0 jßQ—QÀ¤ÚðŠ[ô4(T)†t£d†h¡\ ¼r06ŒÔfd?/ÛÉÌÁÚ¹ì@Œºl ŒÃ€ÁÇlRÒ“2°¢Þ*™'=8V/7ú?OóvÄzºÒä4bDz?YM$ç„~E_âÜ•ü1VYbìןw |LWf=»†€ë[_xË‹”±¶z +æYk9«Ttò© µR5ÒØ¿¸wªød|j(t‹Rú@ýpBê‘ ~ y'7 ½–É­•¾È{³)™Ä´5q@?“"yjH Ç¥ÝN€åù9|ïof~üùmGë ; éÒ‹?àDå1CÐ;. œÝŒÀë>ü`«²¼ÇV7vÃÙqɪ‰"€‡™†kîXœw×Ü5ír—Ø~ó,ÚðS1ÕøY #Ÿ$ógºNúý¹ã¬è¹‘F7uÇ@‚V"ˆs\–ú±…FYíˆÎî`ô“¿þ’ZÀú4W¿-̸´ •©®å¼l%Pv2¬¢{dEÊÑKÏjÎl 5^##Eèe>ëWÈ£R â+xšV~'ìí+ïø¾4÷Ó]Ñûá4eËvI›ËäÄŸ/Éè°<+ÞÒ’y¨&ARÕ|‚ƒK-åW=ªuɼAݸî$ž8Z±}`ËSÅêµ)넌ˆœuØCS%±m…sº£¡ò(CK<|Ðd(rö_8¦Ó&ÿYýkeI àí *~´6] ŽRèEôL©˜ž1“ví=ßÞÃU†‡iÉÚ~ÁB댆œàŒªÎl„€!±9 [\mwª¤ô¸=4!&Çq ú”2¥@*QŽÊñ7F“ ;¤´c²F³¥@'¢‘³)Fç ÎþvÝ\Ê¿2e|E°¡YÐGŸ" ƒm¦¢k%Qé ½èdj–òç_Ï=¥dæ³±Œùøãõ]ÞNëŽ3ä„@oX9¢œ‹Ï5rÑH?XÍ÷EwIÿ$Ál{åð¨?ˆÞ›«Ÿ<-9¹ÀÞо_Y©VVVàßjå‡Íò££xü+ÿ~óEðî¸Îß}³Šÿ<þ€WaÿúæÏægØ¢Ê7Oªåj¥z?¨c§ÌU¼à[Tê‡P†ÿÂ\ý¯jò­O£s‹co0Tø÷‰)Þ4ÅiYãD‘®ßˆ¢u¯ž%è%B%F“©ŽQÍxdY; kü(-KæùÕcý@~’1/'Bq#3® Æ{Ï–¯¿Ô¦{ê×#ï—VóË ÁäW§^Ìcå2E™gêñ;¯‚CPæÆcÞ\!•#gjt†k!åþÄ»b-û–Ÿ75¥>r¿SŒ%þùÀ6Vðˆ ªÐÿçöîãÕÒ$`R x`öd…Â>ì!j1b&E½;ý´’F¾iy%2L2°(2ncM©2[½ONA0ˆÓƒÎ)£îaHNÊ<º°]¹|Ù_&LoÎøb¡|I±+R€Uwhj÷]Äݺ•j† Çêr6Ž1LCHLÝßKÐÖ’tÜ*ƒ¦»„ÍD²Á}CªÑ¿Re]†Óð˜0ÒJ`Rzòæ•hóÐg™pgpSgËè^©Áµ ãuWÏ^Æx£ü—Ç({§ÈÕ鯗A³g/Ø‚CµXÚ¶0ÜÉr=+( ²{‰Xß« ×U{„«sõ7fŠ‹˜^Å?¯Éñ*“)õI¯I<]t 8EÀ=õ¸ÐÇhÎ+v*?ySÉ…;|ûj§µ«‘µùc6Y¢jª‚ƒØJw|fÑmÄèÕ8éÀ^ÌP›)“`Wçìžù‚þ|N›¾h@ñõ «qxV³I”r ÇdöÇê«^G˜Þâ4™^¡¦MJÆ7+{¤Ö²70 K—“ÉÝ"íKDv.’Éô†øÜeӂׄ=æÔY†»qÖú~Ò”Eû5œFUËaÚ+þYÒ”œÛHÆÌ‡JK‚º-4Íp9B»6b‘¯xïæ–§z¹û×:œ~Íi¯Cm]‰Äº)VVú„ÆÇúÍãƒÿÿ%æý‹#áàö'YsCd\YΨ€úp½x¸¾8÷ÆØ»`¡²#wò¹zø½x°^‘bc‚E×@ÁX–Š‹ë kÁ¸xˆã+Û8xgË9‹7à*·’-ÚBß 4*;>a¾=Í\R5³„ŸHrQ;Ò·a  O6éÀôqG¬«ÓÄ©$8C$[%ü“¢%û’“ÛŸ45MƒAB#9ŠùÂW.»!}Ìí=a7Ïa”ÓYÅüü›®VŽSìnÙ-!›4ø¢XHáxœ•e±÷¢«-òHöAöêàgL=Ã¯ØØ7[­ÎæA{¿»wPnkÒ7Ç/”q ³¼ÚÈ™vüAo[‚ƒ~8«p-oq ÔZQ‘²I»+G½® Òþ7g=C+HªI›Ò¶’žz=ÅGßÐÞTîѵ\‰´FúC¦lœ°ïT¤ö½ I쯕*È0¤*– ~Á îýs‰ÙSabº*$OI V T“Õ/ ‰’§Ÿ¬[ê…ë¡HÿS%gLìq2žM“ÚÔ¤ì­ë¦ŽQ×3ÉÏaD¢sr™=áò&nJ@séàØ^f‡vÆ3x/iq¹4˜ÜgW6ƒQeaÁ¢”Dïýk^pþ@lUÔ€â>ÝÓÙ \›£Ð.r´Q-Ñ—R@«NõÒFçwÃ쥤Ç߆眎•2z2£¡®Èä(wd"÷Æ$Oy|§IjÌãp!jÌOÀˆ“Ù,9•R®(­ÌV­å ;ȬÉŸÙnVú ‹Fç–-‚;žÃJ6aÊ‘˜Á¤û&ìg'…¨U“šÂø(›]|ôGQUÁF—T=úc•N>á8þšÛßÙhïÖ+“Ü ¿’eÔÌ/;,Iú–Š5XFléE*õk Y¯“W b¨>jv5÷Ñnâa¶5 ïê¶•­ ÝI\(£ÍèœÒw½qB}~èщsªÒÆe±N²½6î§¢¡ç¢|´¹UŽXIî˜ÄäiHÊhLMˆà³uû4&gÒdßÃM¦W`›sib=õí2Âá¤t•–sUÿtknM’” ú‚h²0;ÑQ•KãÍ.jÈ ë?ëiÌ?L%ŠCÖ^@V-ŬqÁ M\ãHX@E¦æ†¡§èÀ~ú¬Ê˜;ÒCh*Ô}M#ïå,%Ñmć9¿×J|“˜“Ãê|ˆ= ü´ñ8žÅá(þƒé7ZNÆZ=]§zs-[™t´HÈ® Æ0*£èS8ž©"w+q¢_Ú„¯9«e¹´2’p'άS‰K¢S4‡Û‘ˆe=”tôèšðXÄ“ LgåøÆºˆ“Ù¢IŒ$Ø´„Æ9>pº0RSØŸÍ1¿xpÄ­Ö²s¢Ëy«${Çк(:Ì>Ú’$æ¸W>ᥠóUñتŠMö×8¥¬²½Ùì‚ ‡š¤á3"'R Ð0ßSr€ÏvÞú d 1éwÅkYöµp0¯‚ ÅT²lâ#ÅEÎ)¬i¸ä­Vžya*Õˆv.ç>4û.F…slâñZLÂ¥­•,²À­¶X¤ªøB‚T„‰6H¦DF¨@bÄR'ZhýÒ(’ˆì’#@FTgs*4§4ÈÀëõî!‘–5ºUÑ„,„ÆÂ)²æD·¸!÷(ìÞæŽq)sšˆqóÈÂ-‚Z~‰ùë%—?£<õ÷1Ï –íQâb=NãgçU{·×mýÒu•MNz,’ ÁÏÀkp1ÊàO0îž^ZPq¶mVŸ“†€A³¯ô hÌR‚4Ž`àxl"†ºg˜õ‚;˜ƒå{„ÍLÚ`F~h`Aœ|C—„*(R„—¯'€E›#‘G}ªÙÙLö04í1O€îcD}ÔLpÿeô ™&!Y%±Y}ôX›; /jnÿ¤;ˆ‡xâáLb+#<Ô°GÓA÷n¢Ì?E+›®gƒžjœÛ 0À®¾£»”ˆó‹Ð‰®{ßþµœU‘±|ýqGðå®Kâ—¢~*ã¢[)tDĪ:·–5:*ÉOúsLtö‹9\àJ°! AM:±^ø?Ëê!‘‰›¤qg”ß3¯É©Ij44Cuk2ë\Ôs÷Ñ0ûR Þ9E³N¢Þ½bCÙªÌV0úh.¯ðà¢$`UÈÏZÐiµ~ìuZ]×·Ó)I|áx£#+—É{AQ׌µ\tktâTÏ”M¿Gû@XT•5ŒÅœ¡¢dcr‹cd‡)gtcµqc¹`ŒZVSƉìMYC5ißÍ™Á'-–\ÍwM¨ð’$¼@—#ÛGç®YyQ¢™`ƒb1ÙÈèˆHÈ€´„ÀYi%¦Þ~LrÓMÁ ©€„Øitºˆ½K¦Üsàv4d#eÑ ¢¡K“Qf‚ìÊ4$J€™C^’’†æ0 ãÉtS=x¹\C°dBµ¦ù¢„·9ddʘ9þàÝúN®\ÌÆöÂÃ!¢[ c¢—HÕ Ì ÚÖ`ø!¥XƒöÒ`ŸhM“ÙÞBŸâ~‰ €kv8™ • æ]AÏ}ÖA&Vâ!ç@o,i‰´ R`ÒnŸSdï1¸ä,5íJÏÍ`œƒd~DZ‰Xï^ ¡ÚE9Þj›Ô ³Å962ÈF…_p¯ÀXzú3gÄA¨€Þ°‚üÜ•’óKnm=X} ?Œ‚d›n©—~ŸÙ&Ü—Ú¡‚9ÆÈéñ·jQ¿TÏ7ù“\nóÖw„®ß>ÊÝÑünz7õFo3¢f(_çý¸¼ %¤v¢1Yˆ-›@¤‘ Qdäïîº-^hc/^ƒ•=xQ\v‡V臠LÑ%ðÐÐ¥W¾Ry#,q gvF èØí,1(pž“¾qra=ePPt)¡MHèZ  $t/müˆŠbnË ÚPwRÎk±9zü ûŽ™2MWw{4Hiüª¹Åí2³è…‹ ܶ]‹ÒîÌc…ŽœbFÌ C§½íñ°LG£ÀÎîÂ_—ñõ8@ [ºàu÷íµcnë6ÙãÅ-^‰I¶k$¸ýa1¯Ìå®À1sÁ¬s±Í$™Áø‹Ým¡:·™!ÐEiÐd&B{qý¹ Ã:0çun¡N-ÅDñ9(YR<ópa&¼¼Ìá¿,ösÜ~9ð9PwgÏ&·ŒeêŽøVÕ÷”úä`ïÌ(³]$z$æ!ŸO$‡ó)™@˜@çc# ’èŸp2Á4LìÔëØ[ÝÒºuºÔ%’ûzÖëX]ŸéyßÛÝù•Ãä·w_÷Zt·¾‰,It¼+’On¶%†-߬„u %qpƒÌBãPJGrÍH¡&ô2«EX&ZWšècI;‰Çu´ô&g’áJ‰»S–@«sb< ,¤Èdöº­·ûÝ_)îxœ’²­hcäÆsLü)n?´ŸÄй”;C„Fu7ÉwÜÌ/6Ñ‹—þåÞ©$»°r€§Ïî›­—`j&gs¢]qiÖ´ÂÞ=}0aU Z(^)Xl.P6\Ä+gúw5a[ZvmÌZ 6‹»ŒDS2f5‹êÇ™ Á© Æˆ8e¹š“­°`žÙÓâœ•ËæNÉz¬¶W§»9*{ã‘uËY–å–?œqyGÐä–²K”w5+ÝC- :™›ŠÛÈ)f @úéÍɘVÕÄ&ã>ºb'F%B:/$Ùˆ‰ØG(•#Ö•"Èð\B¡€N0·³>JDü™k™ãÄ}€ÓŸª"bH)¡* ‰ÄÄ2 sЉB“})ênu ²tˆ{ÅìE.ö³p:@Zg ÷…zʰC¿ÏO'L¸Q"àä#‘Ä—]Ô\{èh#$‹=OTŸ¤Q£âÔI :Àjâ !µW—¸äžÎ ¡ƒ9ÙToÁ¾¾ö&eë‚ST´Æw!õŸÎÙ¸ã^îKOp”ŒEb˜Ï/HëÈìYBrÍõ*‰/Éû¢\s؃ª3.›Þ.Ä–·åæéª”—®½K¾»AíîÀC¥£‘¼^Üs,#õ-+¹¨“$®îÔ¨.¸w Ý{øòf£/žZÃ< þÆ9 ò¨0‰iE âÝ©ÿMµxÖŽ¯¹9gh:ß;©»)çÈ.kë–&ŠÝ0TJ›/Zú¢¸bŽ”,³:>ó&ad02!ùÔ’ƒ7›GffÁü‹C¾Ù÷É)å×LNí’èQÉ)z†¹¨d ŠÛì—üþ”“îù¦bz¿Œ—”=ÎnÇuÍ/çœ%ã@÷QЩCý-ø3ó…ùcK(è­>ßAûèÃZ¦2á-v§oäÌÜr]9x–ñÞ=˜JÏ~)A³…ă[»š™?Í?‰ã«j4ãEÕ §ñçsiÙo÷—;YØ~§Mb”ëµqÐߟâJHžIÎ<%)àDQ66BËú=RÎ:ݽébõ¯Ñ¢¢‡Ï.™å›p@$5Uª?£"×ü’Ê ¯|¢,Ž¢žrÆšòý¢á4 ™ŒÐÂûy–<ÉSR™±©€žÄ²%Ol2ü2mÑuÍ‘ªHŸ¯v6Dg¢%ÍHÄc'X“iL‰"_*d ìU éDèÍB1; G]àSÁsNêöºU¿_Ï4¶èNÈV|¹nÌø€¾Öî°-f>$”#‰öÈŠÃ|nüÉ_£¿´è8Ê…óŽÚ.³k㮉S6›½Š÷•ÉéÉîÕ†S~æg±ŽÏs•$B¨¤’·˜¬ ˜¹zDâr¤îXî@¦#å]¦)Ãe-šñ»ékÓNBU ‚Æ1ó•î‹2¡¾² ‚M•¤%ù'Jn©9·#1YãêHê‘}8ñÎ …ÁF5õ7’0H“dmÑ=ÊÆ÷ùFY(QswÇR]_‰¥9ng”™k¹³;Ò ¡ ‡cZû>ðÆ»ðg™0áI-8FX¼ˆIVŸ¢lD$qjï“SÌæ"t‰¸íibšS=éËàzDn}Êá¶8èn˜qÃ1-ˆËÓ¾h:tÁÜOY†=§Ü F„Kòh1$<©x!ÚÌMvbÑRË–ï©-v̽Ë޳нšíb‡_Gßì‡ýxÁ9¸™¸X´v|­FvȽZ­çÖ&$W1o0™,I¢H³åדּQUÖɧâ]³ ¸îýÂ’ƒÖØ0i¬¢9zDp²½Ô™b½pØ¢A[TJX ͱk¢©.#¢Wð˜ fI²+qêÃÀ‰9„mA)û`Å‚¯áé½ â-(DÜãrΫ8‘çÊT-fNø¹d^/à³>ßôŠPœ!wéN W —ÃZfÔ$7W^t9psîí°è¸ás,&}npüKÏ„Á$£7ŸJÎ-J8{¬š…ÿjAîÝáOgF[pÐ$>Í­Rdgãm`æ Úûïµ¢9àó;>td&õß¹ îç…œQ!màÝ“Ç ÂúéÕ-$Ôë·{OLìÅ0)¼ &¨?[ËÐ7»)` ú0e#{â›m¦BÒOYVD­!ä¢~­T],ñ? éº+‡QéùåØà Ö`;ÉGðŒUM~ÃV¢"íyQ0†®IÖ”è®È^~—Sá€â–aßOJá-œV¿ì<-Ò¥ÜT“¹E³¶ý|›ãšš‘.¡âw2ŠgF>ÛÌ'JjǤñÔÊ¨ÚØ}‡bsaÛ2À³#§xøÜñ+)¶ËgöÓÄvÊÓd’¤¶Høaq Ç욨-¹#.Q±ŠøMøvEªŸ)§À¯H_^ åÀ}¨ØÀ ’W©Ò-²X‡`?ÉâfGG‡¸L®:_÷‚ÚÝ9{¾ÿ‘´ §˜…ÍÎ’¤˜q+¶ù|…ÄvX dÑÕÈpàYH¾¯§œóñ`%§\s4H/ñà¢ëÇ™Ì,:8"ņ'Àwšõ¤ŽEšXÑgPüŒƒ‹Ø ýbñ<_¤s¶„“ê¬]a®/uÚqàaá2ù­»äGt£{(+°pwû¥à·+¿eIøbYø5ÒY%ÓuÉ·+JöÎÃm‹“oW |%‘ò+Ç\"ãŸ%¢FwtDhÕ|öׂكل昑g–Óz k’,p\"ÜÎ Š—€ÊµÞ7y/z™ØÛÇLׯ}S±ùõç×%w­¬?ftˆ%wŠŒxÆ‘à‡‚†F3õ¨c›.T“†#LAäC­† R)ÉkœÆè¸ Isr[_eÕLlV™±ã¿9)2‰‹PNj qììÂI;‡p”ˆð| ÐÙœ|úÑì­á.DÂ_4ô;74­^0“[£›®I9]™vÊ"†«ÒOW¢ .¡¡2 ž££Zô˜g¨*>töe3}C*«p|Å\ ÞB°©^ÒMßÐýç:Ó–Æ„'«2áãl.@ftÕ|àRDU{2Ms8‚#bØõXÒ|ˆ˜X_>sX"7$Úšg¼÷ËI'ŠéòÅÓΠЪ#[Œc9k0ÅäA«3v´Æh5DùÉ¡Z š80€n©-JöU È„„¶5+¸¢Á‰cl²Ì´Äu8#lN×`ŒRO ‡n£ ¸ÂR&N¥25Æ ˆÍjx„þÔdq#zPérQJñ­ogV¤ä x¹ŒÉÈr„u]LJ¶†& ë-c2Ë2­³EL;ì»ÅvNÂCß_3j·ìé–Y}¯«IÕÙ¾\Wï=x›wçVœLê»Ýl=éU£r«Ãض…5Ÿ2f¾?° CÌ#­ )aŠޤm)°Ù¯½hrUO“¡®s<S³%Jäׇ#J 36˜´Ø8Ã7ªë¹¨ç„Æ&™fù\ï'J‰¡g<ÅéÄ^rKCdå·8bÁLk>9ËhÆKö)~–vØngúxqŸuiZ1D¦·B&d‡0ب˜66RÊJÐMƒ®ä¬4RQÏfW ¿¤7µn´+¯B õˆK1`t§=c' y%îâº<…ÏI”.saŒB €¦MÞõ^sÍ9È–»N¬;RW¸Æ…n×EªZÆ(¹*ê‹¥èÝfδa‚ð^À^ ç£QM"¸i£ÙÖp0[×UÛ_Q@2qH–uþ>ëkœáæ` (D¹v—€Øzfx¹£gª·ïä Í­éax1>ÛU\„*K\ª1(Äàqõª´¼¥ÀƒiñUö»6MÜ&Ö5Å/ü 9Gè„¥9dú´Ã. Ä€ØzvÍ@R½¦‰Ãƒ¹Qèùúv¢1éÆ7Ig5«8u7Ó Õ•s§õGÅâlšÑ¬>t"tdƒ‚™Ú¬Xu™mMEr>é…!FIûeC¬L7µƒ E–yǬ¢Ð™B©â~ˆsÇŠyÍUk’Í^!Š¡„j<¡Å67<{)„סE­xÒ5wÕy´t4ÖM !ZnÁ¶\³ýéuƒp· á‹B!x1íL1 Æ‚ W "(;¼ÁCPàÀŒš@×arv]Ëœ”:¦¥Œ˜¢ ‹S›1´±±‹Üº4šÐÇwö¯œã¬¢»­óëû¯õœf qÀÀ}£®õÂ*g‚BñU ¨D{Rÿ;£×.EÄP0.j€äEJMå{–‡ìãD¼§‡áÔ‰tºÌ[é*ž¥7õ*½ŽGi&+¦·– ýÆÃšaÌÌÒq£FÐ`7í’ @ÉõDa}'9g=4,`É\4yï'ê*Ÿ¤uÜ5É®.×V/ÐRé¥=‡;ŸðøÝpm*Ÿæˆ®%ö)Ã~‘ì›F‚AjÎrÁ jJþ—†Ýçxû ö †ë³Ji¾PRµbÀ¨à Âî¿F‘Ea¤Ëk›¦‹šxcKÜŽõia‰GFþ]¶2ÿQ¾i ‘2Aä±;dy3–rpø«O€>bÌ’‰8'6¤,ÙºPüeéׯ*uÊ"^H*Â{H¶†3Ê]l[0½ºY¾‘ƒ 7¢É(úÜèèõ¦Y€GvÈÚæ#EKvœ×Š¢Þt 3žR æ–ZuÚ#òòcÌ÷H)•L0Z@¦„Ãx„ êL:aøžr\Š2'¨-«í|6†z6ƒrÉöÕØ=ÐÙ!y’YñÂÐéœc¥äÆfwc—£ðtilï…!½ S²H²XŽ?L.°åùQ4ãI<ÆÙu ©*²ÈÈ?§XÊÈ~ÀÊÁ‚·³»ÑmÿÔêý¶×¡²$i׈B¿á`P¬]Û‚Õ·z™Êõ2Ù1áÁå8§Nöèþé¤b7ŠV½œPEqN«@óT¨±ßVÎ5c£íK›jÁ†ÕfRÕ¹E_"òßjmoîtqér¬¾Ã{( UÕälØ‚v`|çµÇäõázá¨H €dü"¨×ņ ð+á 8¨<™LŒ0èYIO{ŒvF$ …#hšð«KU äŽA)YΆ77Ë\pK¨ÈC“ÜTiIB7ù:÷ˆ‰=œ¥lŠí"|tZû0k§XÅ~7A« Þ}˜·,DÍ@QœÅÿ€Þ,8]1Ê>ŸŒâ~<Ó ƒh°Rr´x‚äËc0&óÏŒÓM2 BÄ¢áC®×J¢”4`F÷㓞&NT§Ó^Kâ¾tõãaÜç…+‰ÐôG{5ÿÙ©â3IúŠÎ¢wî`a9ã‰]þòôÓËÑÙÊ”u,‰ "%#£Üj6úšíL"¡tZc7V‰Êbc›YÀÁxTàßqReGfM?>—ŸÀbÌk/à¶JOý±c‚´þ êÜó’u8ƒý­ŠRÄD3âÀŠilëAײ‡ÅᘾhÙu’¡Ï¦@‰}7¤x"ˆÏ¢™"eaˆà$‘CÍ4:žÂ©Ò+“Òœ‘ÚŒôÀ] ‚á’ÒgÓ2½j,xß)~þSgãmïÇÎÖ²×­å¯àµlfážÅ@˜Å2áè ÒÆR7ßô›í,øŸnþ8 ôæèHú{áöª#  ¥ IS3,³cU÷jD°o} ^£Á_Ûû‚Îï´jtb°XMM¾zHn¨Š^Ã7ûO%?±sö|ÐÚ<<Ц…scžÄ£ŽþÝöî«ÃíNû·®n$_ÃøÌÌ——øë:‘_+±fe Tη†VIYA”Úº±L ƒ2yú•ñ‚aù×rñ‹¡—á™mƒgp´<Ý…}f\cÑŒC‰"œ íðòÔ±j€¦+*bf»pð­ZÍë21%iBd‰åüdjgä`ë*ÜwòH{ÄG«@‰˜|é²óU ‘²±H¼¦cYLSª–¯',+så‹çäò®fÑÂHla°2)3 9ÔNÏÐÅDÌÒÑjÒMmkLÂ4 rœ; Ü下ז”Y=¼J^X¼ÎË…÷ú5–)»FÔ²ÕXmˆš]Õ·hÇ“`¶3†U‚_©ç"ðSñjwöÔ©ÔÕ;W·sªŠÎ”{¢x>h[Gv]á`‰À±Jìٛ]ÉÅÚÂRp]}¡«=!]›¤èÀðücÔÝMXTf ˜F­j¡Òœõœ»æLÎ=ÎY»Ãri[7×8<'¤Ê‹Šø­Ä©°CPÞAÒ‘¸›:—Ê O—¸ê$hÇu5YUÖ¹kõ'eÈé /ã³)Ûe£þQ¤yüÑ­4—j1h+ös¬â?àö1ú¼}\sÙK˜“_¢i²òlEé[N“Aá‹Džô§´I¯‘B-åÏÖY_†#˜?~1H0&V°€U*‚ ~@9xëmmt7z­ƒƒ½ƒÞÛ×íÍ,#Æ-êæ@‹†O¢˜ÙùÎ ‹¯nC¡ßxýKàsém_¼>yèݵ€Á,AÇP+ ‚ÙǬ§FðzG£AF†ZÒòÖ¬Çèc´…ã¤Nq%g„ÿ¹±õ˜ê쇘Ƙï¤0ø8F[yé ]刕s¬y[##Æý=®Q¡Àbò=57—1Ú¥@õO*üÖˆ§02 ÀêÞöv§ÕípR.i¯r,¿/Åß´vö_ù0‚•_³ÛЋÎãY¥QÕ ‹ îŽT’°¢+]8+rimçÕáöv뀳¥å²Ñç:ß1cu³  IMÙ‹ëíîýg»K©Ðz¿cR_ u”+·±³³ñªóã L”: {õ/MûÔú¥{°¥ö~†±ìý¸q°w¸»Õƒ*E}ö^Ãëý^§µ¿q°Ñ݃Yf#:©qV¶îþ^§ýKo£KT¥S>WžV­)Šfz?¼ÿ"“XÜ$BÏ•íßáZ`.Z;ËVû5® dÓ*¡…Í·š2Oãþ‚ÛP0·Â;ínë`#·$÷ßÜáØ¾Ų½w°™oµ]¼boœ+~’oMjsåâ¢ÁnntZ;­N'Wz„¥}ë^³ ™Þ¬t®•¢±-)ÿÊ[ßAí/7ê·@æµ1(Ç_™ ¹ÇÐ`ñÉ2E’ûhöáÈ“›9&õ¸v¥Q+(bØ]ï•5èÎ<.hÈhÇœôæýÉ"¸û'” ËìE¦PÀ5xpír…S(Ì÷¢æfX"ã°¨ì¼Ì»ÛÁ_ú}s-˜Ï†‹8¼¬†ŸöîO;í­\ÓžüzI7Ÿ ñL]?d(á4§ñ1Šw<¥ÈêsÑ_²¯Y*n‹çÊæÞîvûuï§ÖA§½·[ ¼è‘9»usaRkÀÝõ“pyÕ‘\É_`¦2„…±©£úxÆþŽ#fšY÷\tÍ™µ8»ɕ»òóÞÁVn©Ï¯V·ðÿu3&ÿ—ÓûÈ`¾W…1•®¨€`ýC™¯x‰@ŽP°Œ–={tOýnŸXf¡UÖò{4OÃ㨲Ê\óZô³!eÑn…*ܤ|ñóþÌxÉ'ÓÙ+ÜUHóHx2Þ%§…r3Á’”Oð'šõ=Jù …ˆÀ1‘|ÎK=n¨´1f5Ÿ±ÑrMŠ\Ø#R㢬ƒš”Ð*˜ çœ¯õ Ùh¬7F]V³‰"„1:€7W.!@¡ÈÝfã?›/·ÿŠqE˨Ã8ögÖ¡š…òÕë51ä›x|½&¦~ è×jcvâµñYáUwåVÀ•PÚ¼BÙøp·®[‰MµæÇŸË%—ä8XñRÐÒc;Ñã'yjrJ2>ÔØY˜ß ©I>Ð"¯0ú‰4Yñ`™J´r¼”e§Ëˆ˜2ñú±àA\ šÌâ²ÒöÈ€PÙä*ô„©¡C¯\Ï ‹Â[¶;[Ç•É](> #êkÍB-™—]¯ 4ì) t(/‡roJ6ñXöš8ðÎÔ<¹–®:Ç^:Dø‚ØSö‚îQd³Vrb@g#Œ£ƒC“t‚Jù½Ù8ÀÇÀg¤rY´Œù.«Gê/õÛ¹‚´8˜î™(ÆÐ¾Vâþø™ñ*¦8¬ –÷|®¯j’%þYʇ7¹^BÑžSÖLji›Ì=ʨCp2ñ#†Ó¡OœüŒL©ÚQcpè(B„‚ocö¥î:Ã:W¯kxeíét¹œ@ËbSä.®•^¾<œ‘n£–{²Ù÷ÌæÖ™îž‚À-¦¹”r€ö¦Á¶»u~ ˆÝ×­i"@%N5MžáPËRÀú)Zœ.ØnDiÊOJä1µàJFï}Œ‰§IàÈZ;hÕ*hŠà %#Q¦Õz}ÐÚïAuÙlüT=>˜5v¯ LBmà>Þîï´º-«d|WU,ª"^3t³'ÁKÙ½ª=„lˆE€lƒÌR=<ŽHëêþúGÔPkÞÓªzÔ(ú(ð®ÎÑà-‘ô£•CtŽ_oÞ%É»iÀɚˡ枅7F·E¨fnÉÎ逡?T÷ì )<ÂÂûJ;u²ÿ¢²ûw¡1›û8{öÙÜ{èÎéÄ­àvëv\²3Íã… ½öö{ðÿÝCŒïXéè&!‡d”À‰{E1I•$fÂÀY@cº5Ué Z@­Dè‹B â°c½ÂÑ §­bOáXkɽˆÅ×DÒYb™>“~”9Ê‚YÞ5%¶•¶"» ¡ê°è®Þ¯‹Þu ý3Éiö(ñ`uáI.Äß:ó4Ï,ÿá÷kz‡º»‡îÝåHÛÅB½ æ£Ût’¬XÁÉí½»Òž²•ïòö }ø0£ÐX€«7DÂÉy+0¾3pù£Ã"ŒÎb§&Ÿz”Ä!WªD©kw÷ÈQ´ÀµVsÊüÕW‡³'§ª­p^fïZfº"¸ 4É&9è~ù"¹¨´x±Œ†×[²¶+l¢¹ãÌœ;݃öîk<±P“0öc_à¥G©ÅOáh¹Ç$Ì6ïF›Â£0ÀЦðòÄEÓx¹(à]ámÅ´’x—Ö¬Ù(Ùåºòš2:?TæÕ)a|Ü•2¬«?QÙ]ð®´9| ޽¬Å’c1ƒ»¡j.ï]—YY»çmîíì¼Ð‡” R¶õ&á|–”}ÙbÉm@¸hh7vâ2ØäK¹œº¸6˜HÃXŽí–(5Y>ýXþtÖP1rF¨V§‰»š¡r¯Cunõs4C–§~噣ô?½{ø0þpõs+ÀÆ'…aìx›¨ºká9 $¾¦˜M%C)º Ae¯»ŒɃÉO…\ëÐVBAÌ™2²5Y{Y…ä_ˆ¶íd+Γ*™Ä†ð50Š¢õõ™X_4±ð 9Qä Š96¼ÙçÙ&®¸huÕît_’a€§× š(7fÖAÂ(ïY(fñ&'Reõ³ýF1|)+RÎ¥34ùwLþ\þ¡h+e”ûh³èÚ÷IÑ6Lò» † Þ†»ÉªDÈã¼7â ¿AoÇüžtÇ(0Cë—vw5[¶`s'™½\kÑüÎÙ[»“æFb.ŽÜzñR³Ñ1ï„6ê™Éͺi'œù޹¿>EmJ¿"Òzê®åp|ÛWŠ7ÈJŒ7¾`v{. +ÈSQˣݕ‡lÌ瀻åÂ-7@å½ †"Žv$±Ò€<3-ë¿w^d4™°›¬ò¦Mí\²ñP”Šeï)Ñ^x'¨Ìêý²/r*p‡çþí·(ú0&”.oXýì¯Ð2ZV\Þ ….ÈnÅUîÞ¹ø–c†Ÿèî„,“ý8).²¹¡DÈ’%“MÁðèB›À„õe’…¸øø gÆ„ä½{AæÅáãUóΑed‹-k‚®]*bá!‘jѹú\ÊÉž¾üž/8f–ˆ¢+shõñjoäh^U:iѹ¢YckŽu®=¿•D6ôJÄ„gPF±µ8ù'ò"p€¥ú&ùÕ±Ë"¦µ7Ô NˆOöˆŒ^êl1ÿÊzÄ &ÙMDêFKò³”²¼'ó,pë«y)§¦ÎTÌ>ÌÕ” «8ÁTî{…æÿlLT§€ºo#Jü®ñ\â´4A«‰™º¼q:…âÝÉ s TÒº'^Ô$ÝЉkÇ€¼¦0òœž«0c–k1æ*á ¸G“¶ÏåÂ6ÑgzÁhÖ§ŒÄ`¶¥Ëq6™õ=Ï—­¢¸äø‹‰ ò(·žzÙ.Ãe¼ƒ,EòEh3vDc2¸H>Q˜S“½¤ž¨Eª’,+>Íryk@¼ëÒwxʨëî7–ç'GÂz‰g9²>¹ùóGŸ_Õ_à@C¦rôtjá‘ÌÔÞ`…òq%òreÀ° §u©ÊmHa§l|DY…Õ UÊðª­Xª'Kó|ÎmA$–‡óÉd$ItóÙ ‡\Ìœ¥yXÕáNz1ž…ç=ŠÜs z®…ÎsÅŒKìŽÇ×aÛH5“3ÞD€›47&¡…ÔyDg’\’eÀ ˜=ZªõÀÙTÖSd³‘ú¼Ç|MER_¹:ÞÓÂ8:`Hâ)ÚæùÕè•ÔqÆl’¸eh^·9¡¹îÑPÎZO<*ùÑfh^¯æo ÁzïÂô€'Ó¬7ýYr|<ÒÐîÌ ¹SIûÓx2«{šˆdS$¯ÒšZÛòy¡"Nˆ’Í[ÂBRÈ C Z{àMŒÔu¨6Á¸øÒAÅƒŠšƒ¥€Ù o]Ze·õSë@ûòXÉê÷owãÌR0~ ?…I§÷ÿY:Cm˜áÛRÙØ7UÆÁï% aàµâ¼Ê6ã¼’vÑd¶ çU¶çUÕDÈÎ>ÝÌŒ€#2‚ÿ„äHEê®±³ÙÛìþºßB÷}ø ×ѧxšŒÉFV}‡ÄrÛYO“šçyƒ³‘d¢¼êÓN ´\)s/Œ¬3†èòJîÌëµI³XÔ*¿´w±»`:3ž9‹Dãhªö®d}˜Z˜ÃcðD~òôÙ·Ï¿c`)p?­VuÇXß8}΃2f6îé®a[qc8¸7²gEï&¼ºÆÆpˆ&žOJÉÙ"’B=T y¢Ihï#ÉCmBŽO9‹‚‘ÏûBx¨ÚÓëÎA½b3yÇZ¡ŸCßK(~ÑC{Û Ö&Ž-"G‚HB«7×÷Á÷jôɲbi+­>2)õȇÆZÄ8•Õ (+·Œûî˜j:òôS÷C¶žÒ›ŒGbѸÌco§ñëb¤¶ä43;ÁŽÑ4”œù_Ên£’Sy.m›ÜÎÆ3ÉÃå:Ü_Nq·õ3Æ ÄÐ1™©jîg‰ÐbQO¥ÕIÔ· xa€LÿÖ*¸Žl!Œ…{!äƒmnl]+™&(qвV8dçe a–•Å­`NšANô\œÁö¾|ãqÀ˜çÒ¥µ…²KëæØ¡‹–ÖkÂ[‘\·º"[´"¶÷KB{¨ñ]•*žuú)²QL­O¥J'<£‡ÔB5c9s8/'*öÈõŽÂá#˜oÊ‹u\]ªSÃ. ÕÈf—y,'ª2nn®‰Š}º³Ùn÷^u¶LàV÷9ÅiÖ­’™Ý¢`[~v Ù[•åVDt]sÅuQЂr½® ±ûÚ2’Ç[€ÓbÁ5K6F‹ÊMrºÂ ƒ\i =§%‰ÊàE˜Ò(Qr¾Œ–ˆâ³ˆ”¨—áUhp*—·ÁAäw.ü¸é×ÀX,c¸‚n×£ÅøÏ‡³“x:Ààš«ˆ’ëun¢N’6rÞ=ŠÐ™Ž¢TÛ70BµÊ%ýCcƒÚ"£{ü@;_#—p‰Õî¸Ð ÿ(U4 •WÖÇ_‹É×V"ûÃ^V‘‡õM=CšÌ Ž.‚zdLö„Z'’Ý+6¬•œ4ê­kF&ë–:BR‰oBt§ŽTÂŒgݲ|¾cmAZc§dÂÊ©@Ÿ˜UÓ¤ùêšt©ý…˜!Ú^¨‰Ó+† Žmô˜ì¸³¦"Ñv"bš’•È]þÄ๱¦vƒG%C6³OýPœ˜IQ& ÖùøctÁy±r‰Yÿ aûO ãQI‚H¾ é‘t&žÑ ½tR(!³)&7^MF&+ÌJpXÖëeãpT5T @ g"’•• !P¡ä‚}ã O&&„: ð\Ìë(b~Gb†1qÀ` UÌïh@Kïû“Œ>¦(H’‹B¸¬†–v­R‡cp :Ííø!h/‚ß…:/ \è2NpÃùø¢s SÓÔšÕ„.LIz*W9Ef0ÞéZCÓ³"ô^ L¼ÅÈÇðR“Žõ$9ïy®Z|(9±ÞU&|­&t‘º“â,¢¡à”ÂAPâj1ñf ÜRù7ÆÃ(¸ØÜˆ™pª«x¼ú3ÖÖüW¾Z MÚ6TLµàã2]¶”L³Rcl§f‡' ‰#P¯oׂú™ÄŽ;×û<œLF¢‡có¸i %ìž©’CÔyäÜ"jP“RÜ”ŒiXÒÅ^,KëDÛÍcDiïŸÓÌQoÀynø kW¯JÌ3ûè`„ʨ‰fï~ÿPõÃÇBİ4ÊÐbä@ýàA~ í$ƒ>‡ÄÅ A=, 'M+Zˆ4“(–¸tOMš{$è¡íÙ¡iJÓ[Z6GjÁ£¥C˲¡ýªû>›â5-ïPŠNû'úª$µ …'• r(&SÑ£«É! îÄ¡š,Qd‰ÌC¶¾Lv!iXÍÆÌGD5ž*&û ¤âðR$³‰çRõÁÓ³dú1œ&sJþ*árã4G)·BÉ>ɦS”Ù‡£8œÚFû&PcƒªÊ6c˜ºªÈ° Î$”ך±ædä‰,È'Í–´éýœ÷uRã‹‚íNøê™ wìŸT6¨q¾9Dax]°ãŠH5\a ‰¶à·û…CáF¼ÜÞ5q­ƒ@"eŽôZaˆ=-6üe0™È—9ÑÇÈD¸tªj&K±¨-²¨½Y´KÓ‘Á§Å‘/‹ l?*žŸÃãh–.Ls>]ž…]B‰ŒÑÙ¤>pýõ½Ô+Ò-©Å—¸„rï$®%|• –Ú[Ã1ñ•¦ ½X—g"wÄ~žôÐÏK¾<3ypääî.|äãÏ¡ìú&æÙ}qh]Ä>p^¦d¢ $¡9°¢yì¿&ÈaAX0Õ0,ðb }Ê&EU”±® ¢ÖÜÛ”#ÊÉe !hÉÉŽ!¾pýà©Ù:\’û‹µChZ*9jì•™KB…t~I{šÏæÎº]_Þª;¹¼c.¥‘¯Þð«¿t“Ëæ‚{sÖ¦î^wcçãÊÜË»£¹—ÁÉ¿ž Dm/®p8…‘?ï±ÌM5ü…lM5Ǻ`—GQþ„^8ò.i2gciÙšpÓÌ”Šà¨R>Ô‘õ›ŒÐy”)H¦\N©Œ±ÙÕŠ’Y­†!AI¬aÄEðºàm–<^^ 0Ë%%³4íòR™ö¸(a¿œ”d_»üCÁkOÜPðÞ¢3ì[.Çb»d9|5“ðrÖÖ¶ä\.±œ {JÛ†ôe,ƒ§}Q /J’)¶äƒŒ³ZcJ`#Öžùÿ=šWÿm6Vž|û(öÑoÒ׬ô¿¼|ž={Bá“ùûøÙêÓæ4Ÿ6¾}ú¤ùmóñ*{Ö|ö/ïúòÏܺœ&ÉlY¹ËÞg'÷?äsó(¿ûÑtTG©w8#;U¶Q%nå—ÄÏ1s]GSŒèŠŒ—˜Ê2óŶ…rҳ̷ÌVá%f¹NÃñ,î3e´gdF"BYH@Å´'< Fáøxcf®¬äO>?Oc £,Þ> ¶x¼ ÿˆF\|O#qoì·9júf2¹ €¶psVƒæwß}[_m4WƒÃqL9g4ÕÍðôhŽ#§×ÝèlQ3ÐÂ3hfõÉÂfJõÛü”¢AŒá#‰kL¶›À's té‰Äâ²õM‰(*ÉTP–N“EÈd•¶î_öÀ\¡ÆAû§ ÜÇsã4•¸ûn¨‚ˆi8N1ÓšLÕØ…Y¨A†V¼n™®p¯”(RE á2ç$a«Äka+uÏLvõq@6–Ôb*AþyšÔæ <à2:Np|­×#[û]&ÎÒYRIAbÞ\O)hi’òEY`¢¶EÑ$ÅBÕS5fìϧ˜Œ®¢“ê ‰3¾–ç-&ƒ³d¤ä͆­±Ñž±«ƒeÔÈ ñ•àÞB&x-XØçj ¶”­V+? ð¢òC½¸®å<—(<@²=2̇óÍ4Õ@â]Š˜•°ªhÛ¦]ê} *vý®Úur©ì6ü%ö’2“qŒ½‘HçG9èoïþ´qðšû0™fq¦äOfM…eçÆóÕ¹0ÅOè(žUÒêeóÐøÙš°ý<öo-9“Q ’Ę›1å$g˜5*B£K]ŒÕFqí¼ô™j0H½[ccS`zh ^Ž­WDáTæc Ó‹Òj"úu¬qš…á †Iìi²°ŸÀÚ4¹jÐäcÀ“Ù£¬û!pF€¨I= Æj-·ƒLÆ0mˆç—/¢¦Á!fãpÓU˜Ï}[Ë!ÎLe-ÿ~§¼¦òýîŸ8˜Ïðí.½Ÿs[OŸå–?è<µŒs)7ð]ÁÌ­Yp”›Õ³¦•úÏó“QåàÞ §ïˆÚv÷z¯: äñea¿û._ýý”À2úTŸ¦hP¹`>]'ùÝ0ìá?c1å$”XA`69% &ÑŽ,qL¿6öÛh2†ŒÙ|J¦ ,î­'ü¡hNÄÝ4Z±éSNÛÎáuO}"ÑIöºC¯r*B2[g?qÒW#í‚`Ù]ë8 ËÀåy㖈à xKÒ°¿ƒ84šÎcV–;G‘rj¢:ñ¬ð òá^ØM '&õaZ2Á‚5 §! ÑGRÉHrâO‘mÞQÓ@2L°­>YßÄœŠƒRPÐÈîäÒ>|E-÷ œy† œsuVØdi"_•fîöx ËÀI‰N˜ -ÀÝE”>'lÄXÿ†&Y€ í2“YÜš îxô5‚³cÞÀôåݦE#C‹ Ù¯Qî() 1³X-xÀYÝòÏ«H.k«N•Î` ®’†‘Odu_íí,$[øõZqÅÖòŠ­ÅQ*¿´*X³Qi@iðbŠd&é8L!QYÀæ\€1a„¦¹LàÚÈ1ϘèB6Fì¥È7E÷k´àµ0J(Ù )ÇDŽ€Þ•,…wÏN€gRTz³_Ò¹‰f‹UH„ ÜÓO)-îÆ)yÂÈÉ<£«y/h§®vŠ+¥.…ÑÃ5„AØw¯ü§ü" Ê^7#µIdèà‹^ñ¾RÌB×{PÔÏe\1ΛxvÂõËiRÎ$ôA±Ðüt"Í¡)›éÄ•/E¬ÈNM ¾ ÊT‡Ó^vÖ݃3T>*xvå N ;Y×Ýø°2=í¥ ˆ¹çQÂW‹v–*7Lq7úƒÈÈõ6êûDÍuÈ,—ÃÿpL:­Ã·j ™L¢Ó!ÈZÏ’9¼ºŒèÆï¬˜`¼xÍPvœ!J3à,M´10Ñ ‡AÖÅûŸ“FÑ“"2ØV4q LFÞ†X¶‡rñÞÅV?à+÷Õia|—z3Ð$¯L´{Åqõ$¼…×r”mùaóšmc§õÏ:Mž¡ÌfW0§üXêM‡Âq‚'ŽÓ%›ú½ ÁJì pcÏñkSâ1¼,~½Jª•¢Ë:|›°£[Š“FåÝà(ø‚¤ß"vÀAÅÅL—"”$Dƒ¾’GŠåþElDÊÓëŽñMkcŸ\^“{¹ ¢”ôŠ›D}¥Å‘8s Ïôvo«õ¢wßxÝÞ¼Fù=r4ºFذ½ím€Å«Ö¡i_wùZo÷~½ryÀ6 F#ì‡÷–Í1–†.Í;Ü‹ úÿ2Ÿû§Ï¥þÿ'_ÞÇrÿÿæ³æÓ'yÿÿÕÇ_ýÿÿŸ{ÿÿÕ¯êÊÆþnó£QÜŽÅzQµðg}œu¾ÒprÈÉóä>ÅaÞŒ‡aÿHÀÇ_| 8ð5àÀ×€_| 8ð/8Pà\{™Ã÷ÂR%Ê^ÿI³Ý«ŽˆˆÖØùˆP„•+ªE}[ê5šwe$±¿‘ê¡C4àã¼Hý\jqÀ-o–CvnÐ8t £.FjH àÔXJ¸”üê(nwê»zËÂas$ĉ5{Nˆ°òm\FÇn@«®T5–¹º$v6Ý>)¨+Eò[NÅçÅ[ùŠl† › ±aîæVn î·9©˜ «µ¹Unn+#z"GÏHDbSsg›@my`šxrõaÅL[FÀKm=ç¶Pœ<ŒB”‡¿ A+úe‘G¾H¡ƒ4©EIÑ"³]=´Öl\}d¦bvªbA ®^£AS1Ûàæ¾]»'×ips?ÛÖ>­›´õ\Úz½{˜Y;ôêT…Ú*ªØf'põpc°røt¼‚L, Š@ä ò>’³ûSn £‰_£0£)¦äHGÉL¥1ébcv–—p$&ïéGU@#÷Q€ Z¿ µŒXCvœm%ØÅH·œID„ê.‚t’Ž©-Ï7ÏOI¼çxäPhþ¼ VðCË*~_«÷GH©äyïø‡J1Ï]'ãÛ²Å<ÿœ?Ù|±w\Xv¦©I±å8~´RÏøàx;E²®¶¶0žPga³~6>ˆù‰U\¯KuÔuzÏ8ÓøLjï9šoI){‰Ç¤º¦:Ãð=f L²&¨³)常°K©ã£N/|„#Ç„™«ˆÜØDí7ó⠊ꀢQJIN%׈ÄÕàò‘\8gª0ÝÅ¡ ʂрà±Ð™#cÝžjiÍ}ìj™O!.nÍjˆŒéŽûÄ1)ãØÓF+ºVú¬ ÷µ‚e2šÛÐ*mÅŠ'NEj¬„”NŒÛ?†bÔfÁ|õm`ôyîÔä}v4úŽ:!g?Šq.#Ö- `È?ÇÀž¥lâ^œ%#›§ŸŠgõIhìã%³jÌZÎtŽŠdêñh&Ì·èD*q°uBW&,6ßGCz¨ <!¹ÓÒò%u2û¡è ‡ ±·ß3F~QìÖW*Ú§–4¶Tª¡A$0T9À¸3á4t’Îü{Ä÷á=’8‹¢]±e ˯'¨0|ŽdæU#ñâÜÔDô<šÙ —:êQ´c™•R”ñvy•¤M-+T0P¡ôB$¨,Y¡ø%Ñyˆ‘ÇH¨E֗ή¬À§Z*’ÐêHáð˜Ã™A P.j&ùX®ë”ŽI©Ð|‡>eÐP;žÊ@Å ;§ìÖ¥QÕ&p›¢ˆ‹¼ló+Qã4g¸ŽN§„—9§ªºHæœ ¿PÒãxVÁ9‹£LD±ì[Çýä$á > ÅpdŒî0›—Y%uNDY6i>Žñr‡1¯øìÜÄ`~8;–â²ÀžíÙ_⻰ψ3²ö s€qƒhÅΠ—óMgŒ®ÖTɘ g§r{DZ´Ú˜çð"[«àù¡Àeq€¥"[Œb]¸kJ¦Hu-ØæÎb[°`³oVc«Û›6]df–퀯;‚Ž¡ÙÒ±,s\u†£Ž«9‡ÕZf8 ºYìæc;ñÝ|ÐîDÏ€¬uà/½û×+ð—Ï{M4±?÷=™)ú#¡³µÅp—Ÿ A‡äå× …µb¨B¸¬×5¬ žwu—CóHÊ:æØHbºß2BGWj¹4uãSQ·ÃÆù\=ºdq´Ì²2e–-“*\«aÓg%ÉÌ ¹[`GMŽE4ekó*ü“¯*üÏÏeúÿõ|a€ËôÿŸ6²úÿoŸ=ýªÿÿW|þíõÿÿ^êÿ¯êxWÿòUÿUÿUÿUÿUÿUŸÿo¢áGéÌ|or$6`z‘{ÆŽ—XQ³¿¢6Žý ©Šk*RFºéÕ‰q^ÅW—±èl6ŠÜ†XœEãŠ$m6Ù<³p‚~r°{ íïgÐd…z¸Fcæ„Ý$³ñŒÅ¿©ãŒ:‚‰¾IÎ0¨sM"?°0H19É GÑ9“)î"`b^š9éùyê0Wô²Á 0e½¤a.£×GBõS:ýõ¼Tjƒé|̅Ɖu.™9>¯€MÑ×ÊÆ‹°N|bí-C/±›•$Ó¥STmÛš4Eq¾8'lqKAf€2J>™Oaì‘HâËõOeÂH (ड*œnlÄšw ¯$±Â%Á¨5ð´}ænþK'„öÆ>ùCÑèPGmò]ªó¦Õ ½ÛÝ&ÇšOÕ@b/I(~B¾šÎ‚È]­²8ð˜ÌÅ*Iæ ñð4ÁCĹkFÑO½@Ê6øÆÂÊ]Ü^':*™–ÔœwM~WXoÕѺ±]Iͼ{,õ‚‚zOܘ•EsÝ&|zõ ¾»ê„ÉÒ¥\{Â@,jT'›IÕdwOœÕ‹d ÁT4ò10òirGÍ-Š5ÝyhžªÓ Óžbñ<¾(Ù!ù†'xh­#F?TNF‚µÓ¤Üp ,_ƒ]²Â;wAœo–kb­FOb}e:ŸåZPÆ¡MósNW]Heö›Ãˆ¸ Ú[í=Öö*v¶«ÿUÄò× 9Æ“eøÂÌ’  à÷=*ì.ÒS W†BC¤ã±à³Äħp=]ÞåíðÁQ8•vjQà±ñ :gâwK#z¹ëBÍQ{Œ%l߃jåž,Uµvåǰ×xü¤jÏ&)€4Š6:yœG/†.ƒ­œ› Vb$Oš·šmȇ³‡ÂbàÞ'€;¹RXÊ:ÔÕ‚ùï ƒÄ)v=ŽHUÒÒÎ/‡1dfbœA§xÓL«oÐóZÐlZk„f:³Þ}9S B=ØNgg bÝßpZÀ¶q…!¬^sðÿÇúoá2¼!-Óãé¥c|¼hŒKÆÙ„î›Ïìߥ;昺,ïÕÇüÄŒÙÚ2-sYHŒ¾)Ó,?^,¾ §p¢¸ù¤gž6 Ÿ®>}\øÔ"‹ X(%I³+T.ùºâ½Ì‰ˆg”ü\ÕY0½9FcP}Ô4Z+9:5v²Õcý£4| $ÛúKÎx£:áLéÍ5¢+«”ÔFÆ4Y¥L÷pV·¡R¡ýßËUMÔN‘“¬¿3ÝÄ^Êv/Ð$tx× H>2=Am©}ÁpÔêæÁJèÖÅŒ5NŸ³âVº˜˜RBÎÅ”Ä:tvûüþEp7å‹v½q~·±zþoŸE•ÅùÎ:Äõàv²œu_>´É4fë°î‚ŠyuwP¥þ0ª¶¸VܘŒà‡ëŽPjÒoª[¶7Ô†;PZeNgþnõé³\ƒ£%u*‡‘ šÈ°’]:Õ•ÜÌÌ–ÔÌÑNÐ$Q§q$h86œ‹'¹…‰›»¦×]ê{Íëž“Fš†kªÖ̽VÓëîÔßI;ü×1+kÉL“þ( nÀµñ½•‡a«"žûSþj|VøÙ2xa´xeh¹ ¼Ô‘epëdW" g²of Ö ¬ÙÉÌà„>Õ½_º£nßDàêñŠ< ~_3E°ËÓúKŽ-ð=Æ_ñ!*WÆî-áÇQR°mþPŠ·¯p߯©šÀ»”_–òº´+ìÞÍw°°æß”xt`ÃÿO£~Dbgú‰mzZ¡ßïêx…ÀßüÑõ®™%öºÎQv©ƒÊ]éùŽß/iõ³Œ¾ÄÝÆb¤wC´g‡™Atå Š3#ÊC½PÃèRèhI±*@&‘+yѾŠÌDyýÕö`ñg‰þÿ4ÿüYªÿò¸±ÚÌûÿÃã¯úÿÁç‹CäY©¼ãtâ•øßåÿߣžý ™8¢^ãë"JèŠ9S)¨twõ>½&!¼*Z¯BJA…7eóYp…˜Aã5¢Ž!ìc2«d€â¿qt¦áÚ)¾ÞJ°1£Á¥¨’Õ|"çt·G6êƒHb¼ê0Q" ¥“°ÿ1Ôç“ ‚AȪg;T´ ¾@R³ažâÓ/µ¸±uÄA¤ª’%–O¾ZF|µŒøjñÕ2â«eÄWˈÿnË!]ìÍ,Xâyý(ž¡t™ÿ" {¼Šß™*1)Sâ_ÌU­%CM3êÆä ‹Zal@ÄŽ»õ²Rb'DG½†>põÌG;¬uä©_ékr¥É «h4¬•Äþbêä­H£ úIª{ÖÓÐ]3£Cs<˜qtáÙY¿èÒ*EcŒ‹¬ÊöLªå‡a#CpuFè§ZÉáb¼²5ã½k#Ž+œYý•xYk²C™’KùbÑ …´wÌ™`DCÙDu»Áå±0àéR6ÿ6_àƒhByƒ5ÙúæÞV«w¸Ûîö~nouß«(f½¬aXV¶ÁnKÒmçp“³sRêÞóZæª)pžþSLÖéG²(Å3ë.넉õ×âÂõÓ ëH÷fã§z‹l·_÷Þ PýŽ¾Ñ™ñ«K"t,+g’gÃFãcÊæ­¹Õ—§#¿¢e §ùg¹täH[gò'ýp”yM§ã„MDœuÚÝè¶a¥~ÛëøÙÀÿHÒ~ŠS"d !±Å$F€ +&'б‹òèM¥å‰~)…:„óÔ7sR¼9&tÚþx´×a·4éZ,‰†”d43o!©Á±°×³21ȳ} ã…7ç”Ýgg+„¨äf!2*ãc”ÌÛþÑlž%SoœOØY…@ E§»Õ{ã,0`ØZtëe·Í™(OÕ@Fam«õêðu¯—Zï-\ò{›½­-¤JZ-ú – ƒòÂ2Æ8ú•Ñ©£“öy—V=y;íW­-θò×_Eï[[ínõÒÊÎôu`ô‹~æ5Ü<@C^ð:‘ϪÓ­-v­÷´›Þ·#œq¾#×Ö6c›XÜÖ£â‘ËØ²ãÇwšÃlw›2aK—ìEtwcR¢yÌì…g 1§8>cü>9 ©X†Í'2IZœLô„çÆÝÿ(›Š x°Ó"¨ÀÍÉfÇë-³ëêûœãï¾dˆ3G®…°O™Uøê¦ˆ¡Ì|WÙ~PÎ$ÏNå°$"–Øë<ЧÉX$®MÑu@ª «p`ÃÙ좂žâ㤂‰iŒÅôLйfÿ´nx×{|A“õÀQnö3L1u þõb¹b„˜‘-TW%y妥y£]i¼$ÂÿeǰD,ðîp;“µ¤îDS ÿw^Åh J ˜®Tƒd.sãdoï3Ó1é‘mW‰‰CdÁýOì¼ IEA×%Û!à:ÄD)@Wg$djÆ0ÕD“Á'Ãx0P3Qt‚dÊa&ÈLâêº6Ã)21‡…^¯Ú»ÀÏhæoEßJ,Rr­„ƒ‡…±4Óf%µ_3>×¹¸Þä'Îé£ë=+x¨CãÑLGËÑKla<e«i½žLÄ1Ïlïîv{!Ú–/OËæ=°#¹å³#[€›ìyí”§ù^CÔ‚qBçãj*ðÏ 'Yh„! H¥Œ ¡eÛ÷O îjöÊ] À“|îÌ]Œ%´˜spØ#<"2I4Ïê’_A†1º cDn$™h™.@·§Óg4e¦Ï?ƒž>¶8vƒ"¬‘…¯‰a|NçùU2!h¿B\%žfØ‹Éöjï`xÝÍ^ÏôiÀ q‘;ÁÕ ð©;" ¤¤û@}d.<À „²ôн•‘ORûs'(ˆÑØ-’ì™f0„*^£ÙtŸÆ³ ;Ó¥nÇDã‘U5J€EJ×~´·ðH,< å³Û8²`KãÑ¿ä4æ¯ôŸÞvì¥H”'¢uCµS ˜ãc28fóD¨Àú®ùa%سÀž–øéê'˜Ãˆ¸F"¸m"µÏ’éGß#â¤=>‰O5?l 쓞¹¡²}6®ýMè¶ §DßçÓ­™3€ƒr`,…§B”€f¥žtUÀV<ð„×ýi<±€^ûzŸQÖZhŽ‚|:Mñ„q”ЉZàDkªkµ÷×üàqÐ Þª?mò%M‡]­KS †£J¤»3"ÿîþ1ç{òž#þ˜äÆB-n~÷]¦2,b…1×V»ƒRÀÞ~ë`×ߺÕüuVP¯¶Š¹îÞv6‘ʤ@8æWð}Ð|ÞhT©ì{4¤»S\Á>îôièÕ÷’}Ší~÷Ýwææ²Ó=‡ûõÙË™wzÛ{oƒòh4°Ç£ÓþÍ<žg§S§¸ÊÜ9FÅg…ÿ°‹éT1H¯I©*úz4§5ú‰i¼ý™À›ŒB–E£äÌ'°¡…JX;ªá?þqd¿ægæ­­À²ˆxxQ9¯ÿ8·“îà÷5ççˆÓ~4‚[,Âü¬È⟉: =ê³Å×0ŽÐ_ʹq(" pÅùf ¥@ÓYEBô Ç@åæ› ßüնéç2`ô¿¡ØnÑ(Ðêýº“¸ššñÊipk{£÷s§·Õ~ÛÚÅãppHisö B!Båé$ä`uVH±½q¸ÓííýÔÚd«ôæSs9oI¢¿Ä¸¾Ì9ˆÖþÏÃÝ{œ:$hœ€Ð:Š¢¡CâÒiGñ4xiÆi¶yc‡÷W³Ô›ž_¬ëòêîí´ö[Ýà)YE¸uuè£$™È¸‰Óâd|ìí‰fvþ?öÞµ=#kÝŸùÍv6R¾)–í9!›X½€âx?œ4rÇ,ëçýígÝêÚÝ€$ÏìÙÏÛÐ]µê¶jÕªumv{Ô‹ªåˆîf—Þ)y¿b>;gú)a·ßjt{}™Ì JP¬^Àö•Ń /‡ J€IrÁôº½à¼× sª½a0è !2œ¾rÁ‰´„ß zz\«7Ÿ ˆ=;8*DJ¹w†ÇÄõ¨Ez£"j ¡•=}øúK£ÞsÀ®¨|&Ø&n‘ñb¹pÖPíÉ£ìõg¯@ÝTåÖg;¥øÃ~u8I3ùø‰WWšDºjF+-uV«öK³§Å˜ÖÆ3Øß4K.µð¦~=nôß~Ͼ¡˜’¤+¬÷Q—´yé7µÎ!ÓèÆ×hÀ"Y¾“§Âõ+‘§ìï¨ý¼—•'AåIÞKØ—«,RšOѬ×—ã+ kpÚé·ß¢¦°ß}Û<¥/µWÖ!}ƒ›Gå±ÃB§Æ«úa³Þo¶…o;ð.›ªÇp>’À£Ö­7›ÈAq-àw F …—³$(’×"ùùEI¥55N?tÛ``D¾éCáÆ¼0ŽQB6fÇωˆk$ØØ©‰Œw†Ìdð0R21ÍàVu–•ÅûW‚ 3@œ­:¬r¿¶Å**Àøë‚hâtw©U9¤çšPÿ@w8k¬ò¡T©ÍEáŠ$I|9“Ò¤†óáÏzèï»LF>£éÜvƒN¦V¤`‘’ý$2´®•»Š=çÛ ñÐ3• ËfUy5‰¯Ü·É¢ùë~Ec£A‘ŠÇ#˜7{~<Æ.2í$ù0b¬°Ð “/ÎÉÓCûðZS›ì ñ¼@ŽÑŸ¢¯rܳxé“2…Ÿ‘*½ã•Œõ-'Ñ)S rŠašI Ï£¯4Æ0ë"m¥ &aE¢·5D#5Çhr!>Ñï¦&€˜)ˆHƒ,–ø¶!ŠŒ¿%Ú¤ÔÍA–ÃuÆIDK'†Êøá³Ôv¹"þõòžéx]€p¨>-e¯á:_€íTþª$:)bâ¶òð.0Ö±`÷£YH 9AÔ£mA»*Z×\Jl)ƒFY¾R—øKWZîšÇ8Sm;ðaQ–aÚÄ!õÐØl˜P3-8ƒô‰ÎÃxÐ_Lûa2ˆcZ†tñþ›ÆoTÅá%‘„<ÌMd×€]ž¢ÆG¡¬¬ëùºz½_×ݬѹŽ[ôñ³{Óé4ñ[#ñW猘›/¥5C;>•~öŠxÚõø¬)› é&z²u‡e9KTÉÇlv,œGš¶%¹1ã;îG Kñ@ç¼½0ÈbQRà,pŒ Úñ6±‚wÔN›Ø<œ2u¸ŠC‰~µÕY¨©#’ µ ¤‘&"žÈyÍv BO©>ËÉF×"6žß!%c@MòI)3¦liÖ­:‚Ú(±ȵS¦®±KA-¯ñqÙçƒz«ØµŸÈÕ8OUX_Ûi°\P g’âob”Wá3ðxÁ›¥ZìhÜ•¢Œ½¤&Òa¥-̃µérélë\y Õ£J[ÁAލ`ÔEäw)ÃwjÎv‘=ç¤Ü fWMDœ?EpWŠ'9F1jų; (±Ï¸0l8ÄŠbw°(Ø:Ý+7¶2³u¶% @É‹Ñ ¨UDÔ*‚¥ÌRÜ^ìyïõH]«œª-ÿ‘àAê¹5[ŠÀP â\¦ÈèÝ¢äýO'¾Ú´)ñãw†&éÀ5 Ùо­¥a•%A6lªåjÏÐÆ"ˆ1ð â® Qz›°$€¶_”xùpd”ÜåÝAzüËÁøvLïŽOœ6€áe€ ˆƒ|.I¼›_µÛÇs´„/¡z,*¹ÕÚs_`‘€Ú;¯ú@ ê>úçÁmUg“Gè¢fWõNÎuUó»§ êÑø‡¨3L¿°€gÍ .‚"Z^D*#ˆ!¼Ê® ”Uf1_ÀÝZçÁ1êšqxÇ‹Ê —S0[À¡Ñ™fÿ‰lƨW 9cÀFz*YÄщ›1’ãP«ƒÞþ ËQ©HpþÎŽÛ­×$Ì{iÉ õ&>{XmÿÚè·ß¡ÄµøÕ)æ3$éÒp3r‹k¦Àj8Ýn7£]#Ñüö-ø ܹ CqnTL7EÄ‹¾2==ëíì”+^ШKBg Æ._2UÀ%D÷º®ŒwjÝ<)Åy§ÏJM¯Œû…·(5Mä$Õ;Ò]áî"Ô)K°¿¦`ƒ!)7‡®§Ð.X¿¿\ŒDèß=íuຠ?( •ùî&/È'@ŠÈÒÂ3ëë~jýu¿ˆï½J®iWßrZ2~2jrH£ɟìƒBÊŒë ¾˜H> ˪Ei‹«(š8À`>-íŽYæÝ þiÊpqdðeÐDQs´Šdj I¨™ñ¥.™¹\ŒÒÙk]JÙçïN£vLjÉæ1ùÏô¿õtÒŽp¬œžú2ÂìúN,«6Ç1u]ip>{²v¾NòÆãȰá@ òÊ‘X\ÅÚ‘Xeo7’lŽ+ç3]-÷¥{{Ô •Z˜â¶üËŽP_Ï¢)+-ààrh%̳ÃN¢ÄFã;>¦ËÓå´¹~rÈÊâ2}=jw^51/-ÿVÏÛµCód5]tÇ'åU©æ¹Øi­×ktZò£Ñ9ÆÅ‘_íSýpœní׿³þqÖzÛj¿kV=3nø†~â:ÂÝ?‚-šù-; cðg™ËÀŒŸóÑ­ ºƒ×=HRЂ4ž†C·ˆš$§ËÇìÆÌ<ê‚“è Oܾ[å¬éÕ¥M Q»e™wS*𑿙bö‚˜bÓ™7PY »ºëûÍñêRh'“ž\YS„T<@²äÁŸZÜ›¬®¼U±nù¡v«‘ABÞæì·Äl¸ÄÝqêôMufÚ¤pÂétm¬»pÛÃæ·h)ͬ FÁSТZµª_¿FŸWÚ3‘·0m½ƒñwþ·Öz/ÿ¨'­³ã-e²–YQ\•õ 5‹ ± ÞJ¤å‘ÌO9²+Ø·àÉ/—_Œ§çþÖ¤ö8%ƒÂ×ÇíWó°N2í£U"þÑõÓuú­6eâÆ?©úWñxØ_è)BÉ®ÿ®y x™wk½vÇÚHËê•è‡ñb1-í·¬»ÀBÄUºsÀ“†‡ˆGªüÍ8=Ôù‘3ûŠÅÜÖNOuï n]‹­ÃŒJ*UˆÔ˜™³Ø:TƒTZëÛ­¿é¨v›‰‰‘`¬N¼âí–S|Kðr‹pð'eYHñe|4:vjRð)]-½’¯ºn—à·˜,¹åš­ªUŽ®»sò­€ÍÈšD“¤*v½1Û¥S…{váI zªüáêòjUeL/^êuuµŽ5R/Õ¹˜5­–WVëõe`Ù•åTj¶ŽÚ¹-íçTjµ[é>J¥ÊžW r?R©êWjüvŠ1‡VVzäW:êE¡’2ÖVUÚϯÃzÓ¨¦+¡‡Wéìø8w­¸R5Uéu£‡¦VéQºR.éJû©Jopú27“ª„CÚ[²Â¥„WÓ9é6ÏûÇÖëÞÇ `f"гº—êÈ/ÍÞQ­›Óªô(³0Í£÷¹•öÓ•Nj·+»G#ö+5N0–U~¥jF%ŒÊ­=™•eTâœX+ZÚÏ«X 7àÌJ<$¿ÒY÷Mº´©T•J¶³ñ'̬$ôÞº#<ºÈçÀ{dà è¸Qsây )h,ÛÈ€ Ðö]h!æ®ï^=4ÔÌî“Ì‹71jgUªîÙM;›B¶“׉³ÞÑ>ŠfÂ{”Ù‰¿5:í>Z'ÍV­çÓŽ½¯ûºü—è†vw!²Š1mìÚE0}S»¶¤¨Ä²ÏI­õžnÃ.(}€}3tˆonÝ#/j˜¦Éë*ª´¯’ÎBgéN%}IMUªæW:nb°“㌖åW"Ù­ÕPÞ‘îTR–8¥rŽt§’8Eaì¾~»uü>ïHw*‰”SîàAî‘îU‚ÂýÆÉiï½;¦ýŒJäH–šº ÷H¯ZŒ@ÿÝ›†Ësä馬lÇg rŽô*ò^¿B÷ÚY[=çH¯‰ÖòÎÌJ©#]*)acf¥Ô‘.•¬eMWJéÕþQ§vž–ycJéÞ~꺛Ê:Ò³Çä : jî™íÖB.ˆûØOõÒ'”McdŽ=ÂíCëÜãÿÑ Á5:”E7³!™à¡hÕ%I1±©û*Tbæ\”ðwAß•,«ÄÁtKVÎgc¥Üé`ÉW[X£lÃÓEw1xˆ$‘´Ø?6‡÷1áœÉ\Ïövã°Krãý‹ü 2®_Çǧ‡Šê«+UޤóZ]LݵV—R—«•¥Ôa”_fmäW¼Ö\ÅŠ2æÐ/R„ &±˜söåƒÌ<ô6,.4{ÃÒrÎmXÚ;à6¬åŸpVsθëè#nU }€lÖ&®«ªä“ÖUµ<ÒZr•.¢~š²o‡Ò>ÙŽ<ìªr?’U­›u±PDz‚V+ï@rdºÚ,¢,F(¤hËim©PAA/²L÷ÃéÇŸD6[Ò†PÛ´ÍÙ׿ÿÙÞÃ~OŸ – °ícÙèÊçñ…¨Ÿ(ä‡L " Lmt|°ÿùv´YÖ´™yØeÖ?)×ò³h¨§a¢öû‰ªŽž Ð ›ôÀÿN`ªwóG¼ h·(ÛIÿCåÕࣼ;eÜ @\^oLð~ò9žÜrP6˜ÅôÖ``n\¸8SËp>¤œ2îKV÷ãá¿N:êHö–îf¿#Õa” ¼ÊT@ë)…Ž.£²÷ô1lêÚœ5cÏbX.Üã#ªWy§Xʼ“ÚoõÓ÷¯¿ªW' üòðÉ£Ôfº›-½Û [“¿ßn¾áf™Ëxó·Îæ[.Î÷Ü,sÏ}¯Mwó]—3®o»œqÙpø„áåG7ùxàuC‚}¨úo8ŽPÆsŒ2$ë1›SöYýWÓÙuŸ5Qɽ?|Ñ"§å_¢'„,¶ÒˆO–/ª%œaÞÍËèº\œQ†VQîsÌ6ÛyicìZe8Q–¨ˆM/¡€ccà¥XV‘áƒR;z%D/«ñ?ÝQ­Qªóahrhr¨G9\?J(’â9%5zÀÛT(*áà"AÁ±Â ýìçzƒÐCûAX‘º>ïUX~f¥¤KÒ¯tAÎÓÖ2ÇÆbÊÖU”x"\ïÚõÞoÚî¢j5ÖÃÚ—i×^ƒêµOªÆPB8Úélf‚ƒx•aÆS•=K…ìVs{KG_‘D ¥¼Ê#¨Oêa¿Õ¼Úd3#Qê¦0&1‹Yönømñsfr3U¾Y†¯eÒ·› '«ê:6¯~ÍÓTM&~¹ÃT¹¡SŽ¢m¢7E¨$"äÅ&¶óÊ,žRÉUŒ·!FhF*›(OÜî{Íz¿Öí%)B÷„÷ Ì¿‡ægY1%ýKIi [>UYUYý,+b“ÊU¯vÕT¯®¬¯¸ U_ÿ.kÆce}‹z)ö£²Ív¬ä± ˜ÿ¸ìó# (>.û̈ Ô1ÎD•ºïpÊ)ÃZŒË`:‡¤I¢¿/9Ž÷È8A›»%iÃKQ8§t§ç×*¥ÕàzmfÜLN¶ dàZAVžðù0ÉL?N_1ð#VÜol‡°šö|g2’Å÷)HJJTð4ûñ«îá·¬§]Lšõê]FRf–ôl¦¾ù&œáè.Ò½L;Nc.¦-³É¥WÇÞ­ÊàPbEy XbÏòúàFGÜUƌɜ߀˜ºæŸÙ L¯úÑålqÝÇø n3ÆŠQÛEñŠ \ë ÍúõcØtei@SC·ñtú™C÷ϓϦ cé5 KNÍ·ÛokàbÐ*îmO"˜ïyØÏi,Yßq„^îÃjL5Ö=ëtÚ¯k(DíÂ,â®lc[å Xþú+Iõ&ËÃ!6Wa°·þ–¬Ò­ä¦…,Éòkf« ‹qö[ª…Œ9Zôñ|°¼£T3+¨7;õ³“£ã†n&¯e±œÆá• (9¹Áá¼à"qNW¥Ô<­l®¯Z(¦Õµr@éL8¾Á*UÆ&tjgÊ<®Xd²×ôGЪ¿nüpƒE¦@"€­¹#XµñÔ±¡œWò÷5sždd£fàÚ¸™,š»q3Ý›¹ºK3ï6lf_ÄyDjm3‡Í×M&Vëš!‚Û6Cgûºf–‹i_ä-9Gnæf<뵕:ÆòjÈBelóûFYëŸÚÿZM`ŽÀ†^û`/lX*ô†`12sÙ{å”ëÇI_¢†jØkfýUíPN¹~³«´€«Î;`PÑØ8›Œx“¯ •Ø¥êdªó$û¤ËYÈïå—Æq¼>{ãHL;J`'̕צñ®pâÈê:‡±%‚ÙXd KüUÁ,xéVHÐ’y2Ù­T×·B€2à#:¬oØÇ@§ìÀO±ª­Ÿ§ F€€ÒàQõ¹ŽZ¤ÖÞÖ1èªtÚBCŠô¶^5CÊÁ M¦“Œ·UÑÂÚ®“ª›!ç°³\“<‚ îc‹Ôé9JQ Õ@ãaXÈÔcRÍôá6C‰`WÑ'凳}B'žUØÄË­EÌ©Vl•›Õ¢×Ê›5DÊjÅ‚—Ó˜íø=ÓðÒí±Ð|5»N^A¶ÇðìvW_ïã¢59öêùu)…ÖJßá¶Ážóp3Hy»mؘÝ>}¯¬\Œ§øaf1mdî(rÈ YÜfÔÉ"/Ãh¶øÔ§Ü¹LÕɦ«qÒ.Zð¬FFGTÎR˜QÕ2ëdQh€ö~˜¹5s×ó`யuì‹ræ:@¼/Éa sè ‡#¬l NP £,ç@ͦÓYŸb m•W6 I{:úYèX»} ›´Q›ƒN(=œ÷1OûdœÚ¹¼íaûø¸FùÑTjÕUy8]äÝÑ‚¤þ°Ý3·3ýÉi—¹Ïάäp¹Ð.´\9¹Þ^XŸ}Þ,³ÏØå,ûN¿f:ÎNÝ;}îtÀJ®¸zçÞ»a%3®Þ™ Ði1ìæÄþ¯»U¸G+³þP¤CìÿѪ“5ú: '9òƒ\JÇÞWé:Y”.Ãç|“µPœ ÖB‰ˆÐ 4OŠ“ß@ÿ¤m±ü9 ÀÌåÉÓÖ ]yZþJŒâÉ)xžH8ƒZï4·Jµ¶¦óSÎüͶ²qK±´vó„Rç‹»²ÈÜQ³Ó¥„ÃN­¬•aj+Ô·oЀaʵ9} —ÒLùh9ç_†s¶ƒåTã!5GÙ2A±G–ßáŽô;—;‚GkƒŒufçÃt¬u^!ÓT“”–ŽgÊ4s& q3—9ºwdà¹m0>õ30*OïÙçZgr—>¥¥â~ š0éib_²Í¦)ûòë5à/´ù]ÕÀÙ ÙExºúÎð‡½ðcf±u«z/£©:9½']÷Š“G£é&7£V·Z€;P<ʾðäÝWË©RCðå~«°(ª–øù ¤(*CmÆ8Â5½l¥ËÄQ†gà_†óœù×ðÓ¤ý06EQŽŸOtDÍÍôœl›ÒlýZ;VAËrfˆø~75 ^º‘ì£s ‹Ác1h>‹ÁÍP4Ÿþ9`ò<²§kÍd±?Å«Zým§Ó•?Yèðyëq¼kw×ãk_Œ¯Tü½¡l¸ÍPPŽ5Òäð²M QîÖhV[_Â9j×Ï£O±Ç »m­E:iËg5ßœ+±q¯2f‡’ÇÙf§Ôår¼ˆ×q…iþüäì¸×܈+œ`ˆbÂçMô›‘€VÈ0ás÷¸Ö}Ó¯ç’n O7µ«¹£¡ÊÇjnf9ðãém4޳úé†åÓÈM¹º«Ü…ö'Š­B[sŸLû¢ÌSêd÷»­´ƒ¶Z'³ßÒ@¶v0EU®n0§ódoÕ&[…Am¸AZ3µƒ¦ý‚šU•!¦ÉÇ žP®™õK3Å´eIÊ$ÆÞ¢/—¢¬d6@âD|—UaNrFÀ’ñ¥—:Kr ÀP2>õÉn`q>Ýðöå4Ð{ÕN]²§hAf]ùlm^dÖ•’ä6Тݵ ô)?®íæ5p»)jl8Ep‹W1u×-²>Ó¬¸-koñÔ@:ŒªÝ@† Â;PÎj êµ`ÙÙn¦ôà ”õå´©ºI Zwb¯B~ Ê —¹C¥9Ï»bç;Ζ³§ŠíX7C§µŒ¢Áóáç]ÜÀZø' ¾\t#V€¹>J¡VëR$\(^­‡É™QU¶NlJÓ¼)XÑ6[`W/úS¾–?Å)W..fÖ)wÒÇÜSs8Ïi Ã.ô?…Y÷–\zdgy6µ²è‘j ™Žn¢Æ²“N¯i ¥ÐýÞ#È1ÿ2 dH:ŒÙ—ûÉ¢¨ v2r±¹à•ø¦¿q(¬òª”ŸS–ÿf) ’ÕB޾iÃEØ`•—ÉŠuΛ£³î›¬:™s äëïW4@ÁØ7l€½¤³šYÑ€‰ V^ÝÀõâPºé`‘%5[ÃhŸ¾ï½j×®÷Xv–Ïh³ºijÖ©ps¡§¾'¯öy2G‹(H®p__²‡5îù6®àòך ‘»Ï'1 «äú'ñ ç‚ì3RŽg‘jÄøÔç nf™âùè; åÝ,‚•‡aÆÝÂ: ]°7Pb»`}%6E/ ›ë5^¬½B ä2Ow盄·L¯:ëêÉ~SñÆT¥LÎÏâ-3¤3y f:úNy³¿™ZèZͬk#CY¾A¶®|] ‹±A öb¬kAì²nØ‚˜emÔ‚Êj‰a7hÁ X´~1l/G±ÛÙ ?ÂÑúvÐãq¥úq#¢ç»Zf5´Håê¸[Cä~™ÕPúVé‘<+òã9”}‡N†—ÙÖròy2½šô­¬’Pjý±ÊÄ»lÔˆŽ@•Ó„›ÜÅÿÜüèÓh¬&–óÏ1JÅC ~Cë•ÞYçmeãµn³õz•QžØÚIZpç‹­õHÒ L.æQ4܈7µh½î4‡wšÙ÷lãØtú¼5AcS ¤Î[l _–?‚.±ˆJdˆSÎAŽdÝx’ýS´í÷)·ãM¦H‡Ä[?Ej˜¶ù%†µÍäÐ2LWܘ¹ÎÊ4P°s“@õãf·G4Tüq3Ö)I´rɲÏ1ÕT"Š7@qìubŒ8€Nà:‡Gv¦4}#8M¼,ótm•leh±'á'l·ºAÑr¡VóßlÛÍoŽÂÿ›§:û¦7™í‹ òÍÝ¥õ=bz ûµ·A¦vÚÇjnôÈTœHcWøÍØÁ˜»ý7 úês·à úT]=–9f­Ë鿹"ïo¶€z-X=/~DMNJªJXI[6[J¥†0ØJQB)‹¢d—ØÆ{ù¶‡špëÞlQíxÒ¶‹Í7Ï6Î_W*£¡h³˜oFÁüM]ÿõ”X¨àHV`Ã걨ù“²~ÊÜë›kOÈ?9†­G%x®) å®ÄxŠ’‡®‰Ñši×døG ]ÜyÚ J5`4O÷Œƒ°ÇÃ!¦÷ÄÎüe6aLÇ¿Hº6·[€Ú§hã®W?sfmOZ>gÅôZ­[>èö©%Wwÿr))ˆ£¯”¢ü ÖÚ"˜Í£„ƒÛªp¾q¾@yS)wŠ—Ü¥k‡Ô7‹Ã.^8‰)œGÁ’m&SXw²-ICq«C@/æ±E“Âl>D e&¡GJ¾ˆ.iHF½8ã–T'‰æ1"ˆìÀ¤ÀqduúÞK¢ÙI+¹ávîãHRiá3DX@çE•Íå#¬Ø!tT6B«!úÉ24ß~µmÿÜ©¬´öÝnæ•Πܰæ•βèÞ¾È+åXºç•βÿÚ¾Ì+eë³=Y×Ûu{žW:ËKj;É+帲ý5UÚ¹XÔ+YW ½ø&ßaÅ»^˜`Tó‹å%åW±ËvêÙYÕÏ S¯â½]†Ÿ#NSM`KDãQÁ¥3(Na†ÃÍóV«çûAE%$ίfånV/*O6©h¥JV/VME¬9Á«{“Ñ¿=«§pv¯r‹g÷eÏî‹EãUý°YO•çÇØÿÌÀ(Vxxô0hÙÞ×êcÌ[Dy öV‚r:‡cIY4êêÖ3ªf·i¿3sŸÊÔ:Û8Mk‡Ìä’Ö°¬dÒíÖ~(ÈÖ¢GÀb9Pæš<­¸·Änñ˜I¼). Þlû%'ãêc§×Y(’íÈ¡§Òí=Ü,ì KòŒ5Ýùå¬lk½€}6ÊÇ£#¸‹6E Bë-žË¶U‹¸õ%×±Qïb¶ãÊ«Qgì°ÃÝ¢«yEaw»E÷í®8E÷-!dlØ9ƒ>k5)ñ›w4´O{é“A°ÒJ„«0¯¯KŸü-S$n™¢bîE«ü§‡uÁõÊ&t"QÖ]uÍÂy‚É=á$9PÀEQü…ƒ#“®bÉ„k…Zƒ¨O ,‘»ÃívÔîÔ^Ø h¥5E¦ž’ "ŒÇŠÞ‚åÂÄVdµ7WïÔÞYÇ/To…¤ñ1ÄØÒÈŸA§I£Ñ^L§À¶#æiχ£Yí<0£ïd‚®„E¥œá9wìëÉ\ÞƒûÀãÅc ’ÎÃ)L=uó{Sˆâû@¾J+ÙGoSìU»}Ìœ¾*p༂=Þ¿ “>®¦ûFqS}XÈ>æ'E:ΣÚq·á–ýªÏNÙ`}ž($³P]Óì&Ýb¸ŒeLS(u7Æx ¢¿=H½dšO;Mè÷—áWã`’ùºoE:÷_ëÈMÙ¯¡6\ ä¥ý–‚Ÿ’ÛY_Ž”¾Ê8ìŒQ”û¾Joà¾AAŒ÷fhê ³ß„ ýÆ ~Ÿ—™8Ž”‰Ö‘öK¬z)hEc5¥Y•[ÇšUc¶˜ËH… ô™z©Šf>_û$DÁô EÆ¢ü÷žþ%Š ´Ðö>¢%Y™…D¬wàR$þ>{öY¹¦,jŲ ª" ùÌN¢ ¯Ü}óPÁ±·=f7ä(¼;ãiˆÙ±¤M³ïõÔbQ¤êó{LòßE,ãCK)L”Cùf–1çã©<ùéau“IK®ƒ`ßþ §JHX˜Gªš¤aŽ`Jf&Ù –‚ ÃN¼Œ´R ¥+tãcyÏwc«Àÿ¢€äŠ“/“Tl¶\Ð1!I_›p±¤pøqbÃ< bß™aAæÝÕkr•`>c6µk‚›*u(Szjn)7Á}I/v&Òg“רïÏŸÚÇ̦ɂ.L$3(b¢¹Ž†^GˆbÜ×àLOôÍ0Ý!`¬ò:8sÇÖÝ×àü¥æP–[“ìuÁ0 äè†&á ã` ôh:Ùa4Ž ÞÅ‹„˜Ú;‘þîÒþÁÙ6¨r1Ÿ^%\[í•…@Ò15M•eðüyPytp#Ô¹?ÌvOUŸÂ12>ÅŸÆð‡øbÁcÖÙæ2b¤$¡ºÓ‘ìÎG€Bé+a1/Q6S浌Ÿ¦¯‘ÈS=Ö]­0½C:cÐB£xøôG1®±´Óü”òmù@é,´‰ôç&M2h°ªŒ&©O.g Lþ…ó@I)€õˆ`KV{·ó ƒºŒ¼Éìqúh+µÓ¦°Õy­„³˜#bC©¡Ëð€„©¶¸Ø%âÞ…u]!v5ÌãÙBDa…b¼íáD±ô]ר{L)0Åe¦‡¥Ü.b=ÓÇ õqÎÛŸÖ ?/ì$meÉx¡ÔFŸPJ[sÄ×-èAråÏŽ -?¡–סZQ¸P ¨uNnCµÊ„¡¼daLnè("ÉBŒ€æ¸}Öa_вúU;~W{ß5?Ïzmd,¶›ë«ÄÂ/ì¢Yé:3Jãö@ Œ†}²¥9•Fê&€e p'Yއ0SP´Ï‹2¶2]ªî#Ìã×âEqHQJ°€t7ˆø*àk5'™E¼¾p¦êF5pRJ(h@5v XúÉ´8*?¼ð&¨DR¯Ðß©©Óõì÷©™ƒÛI£S#ñŒ.û§4ýCf%4X^žô:g •×¥‹†Å¸áÏñöÛ@°®ˆ¬†±~F*'䶆¥] !‘‹.H'Σ‹x’»€Y‹MåF%œ¥½Gå`ë÷¯•ó÷†—[e„TRýmL†ß±·ph­.:cØÃ^©fÒ5:Žawªß¤¥ƒíš˜ý ´þjÎX¹Lôu×½²4wž‚ûˆ eK` ݺ„lww{÷%ì“n-œ»ZÀªsL É:¼ˆÏËXz팄g`à ¨èôEÏ4µH­`õÃY‘_Ö<ˆCÔ4Ì ÎÎM?…ûšÝ¯ÑdóÁQŽpûöªÜôÃ\«ë@n˜e:C”' Ÿ"}¶(Ñ‚ÊÑCL^sa×Hæ¨îíÅ’JÞ‹÷€¢Ð#‚…kàýéŒBO®¶2VÀÆñùœx¯7Ó+ôñç~I-H“„ž$¼CÝl4ÆÌ¡ž-ʘ3±)áóÃd þã.ÁùÈ´-'°5¾¥™ÖÂq2-„Ã?–É"±º³kò-ÃÕ-yä‘êð0Æ lè'ff”!“î™X¼Æ² ¦`“íQŠ4nVܵ»pïœÜNETº3¢9Ã]7ž^Ñ„ñ¼ãs‡xƒ&¸øS…?áÏ#øóþ¬P‘‡Pú!~EBчPô!}EþLEAéGø}EAÑGPô}ÄÝ}¥àÇPô1} ECÑÇPô1w÷1”~ €CÑÇPô }EŸ@Ñ'ÜÝ'Púg(ò3ùùçreoþTàOþP‘ÊÞ#øúþü¢0O• ¨SU©ªÀTU`ª*0O˜§ ÌS¥B#ªÀTU`ª*8U?C~Æ¡»?c¸»??ù×÷¥ËV5«ÀšU`Í*Õ§\JòU`Ù*°lX³ ¬YÖ¬òº[e«À²U`Ù*°lX³ ¬YÖ¬òˆ» ËVe«À²U`Ù*°fX³ ¬Yå1w–­ËVe«À²U`Í*°fX³Êcî.,[–­ËVe«ÀšUž@Ñ'Pô w÷ ”~€ŸBѧPô)} EŸBѧÜݧPú)~ EŸBÑ}(ºE÷¡è>wwJïà}(ºE÷¡è>ýŠþÌÝ…e«À²U`Ù*°lX³ ¬YÖ¬ò3u· ËV…e«Â²UaÙª°fUX³*¬Yuï)Ù‡¯?—«°lUX¶*¬YÖ¬ kVå­V…e«Â²UaÙª°lUX³*¬YÖ¬Ê[­ ËV…e«Â²UaÙª°fUX³*¬Y•·Z–­ ËV…e«Â²Uaͪ°fUX³*oµ*,[–­ ËV…e«ÂšUaͪ°fUÞjUX¶*,[–­ ËV…5«ÂšUaͪ¸Õ²hÚ8£q<›ý‡ýßJŒ`“Oð_èì°vX;,xÊS›,€MÀ& `“°ÃØaì°à)Ol²6Y›,€MÀ `‡°Ã‚}ž:Ødl²7وшÑw&F’)> HVÎXÚ‚ZÎé2±XmÊÔ„Œ^#|‚HÆV ,Ø#!"Ú2q^Jà çKQÇ¡à1‰³ÅÀ°.àº5$AC$ú.H#Ì~’üjÇs2¼¥¾…óèY@ºŠrð•rä”ùg9›!‹L<^™ EË… ¸\}*tƒ0)n™º9˜,æãÝ M9Õ*ÊOQ~¿àŽº’/*Ò¼÷fïëè,ßø¯Šûs¯lŠ®ýëŸTtƒ²£~{È`ŸFéégÿ&ýwŸYì(RÝç1<ýwîlæÔ§ðo‚^ÇöŸþ[tÖëüÅùS=ýë;›êÆ¿sgõÌòÏ€uÉïh¿œz|Ä?³³Yós{°ûÿ*?|\~ø¤üðiùá~e;öÊ*åGÕò#höQùÑãò£'e”è<Ú/?ú¹üx¯ü¸R~\-?~X~ Ý‚Æ?)?~Z~¼_~üsùÉ^ùI¥ü¤ZFAé“G域–†>gˆH× H׊GmáèÏ•òÏð÷ÃòÏÐ&ôéç'ÿ²¦3e¡k%¡kå k¥ ke k% kåŸk¥ŸkeŸk¥ke+%ˆû+匴þ¹}À½±VÖùŸ|û (   è Ø ÈŠj ÀU@UÀT@T@SÀR@RTfŽŠ†‚zvr¢ pP3O{ñŸûï³c×êKÖjKVêJhǮҔðŽ…E¶6îýWØ+»ÿáÖÛ[SÄþ`qp0±RM[]1ÒÊ28àMà*…ž®,Çep³àŸõ=u![å€VUROpãÙÀeöS£µÁá†\î‰Ûcõ=³½°øˆXܪ¦´YÕƒºm›7¨™9Î=ÚqÆZÜŒYˆœÅÓ@p©Ì¢í¥›ÎA ,½iÙ=&Å)œªP/+Ò× [mJMh¼ùcd¿œù¿¼ðƲG'±û?’žhYÿoòB÷‰¾=ù'7âÍÙÆ³š;ÍN‰Ê¾ÿ¤Jÿë7úé»Ë¸¬ÿ¿¤[4A¾»w´/¥Oݼ$¢s^~ÝÏ­íK»hÂŽ•Gd0Bm4ù® ‡j‘vÑd޾ pM¾@±6{êPnöIŒ>Õ…ÞÏîhBžAóh}A ;ƒÒîÊlø‰%ÈàT€¤;*0O4I–®Çq²@Ñèk4XR3dêÊqÐh) ȩԹV“É4uG»/SGŠøM“³eofxÄVç)hí#ä8•2ˆ»ÛÃç]ñz6ëó}Ö_Ù/£•¾ßyà“w‹zŽãÅujfƒû—×}žÁ¢xa±{¿D/.2ÿ¦_døû‚§ßÁwú<`ß…lOç´«sðãÙÞÐ;;Ás˜´Èkoñâb«ûÕÙÒ2ìמåVÜà±12.G a^h×e“îúì”°r°uÿ¾jº`_%†ç½­ Ûü[ÿ¨Ý9 ¶~Ç$?Ò3å%A1TrZÒ.:vCÜJÜ{l@k¨âtxØxuöS׿ë³p¿vxØi`z± [ îa^š’¸#¶¦‹£“’&ðDÜ žYRåIüª¦) +h­öZ‘ÿéîØ:£yÄ”Hv‡¿qœ­²Yñ#©‡½Úý3.`9h«¡åÛ´Éd`yŒˆ¾Å˜ýQcXPgâáуöqöµºñGé7XÀGïØ4†@¿vvÔcêþÐýø ø#Ýý?T÷í®9xùÇÇÀÉ*2 J¼âê©SéOÝ7^>wøÙù< ?»X¬½¨¨|i“™[N 3ªlmJnLVÑ„ü­óg6…@¹ó9Š ¹±jÞžrw”¼ãÎç¨ÒL(ßzÒ.7AŠß‡¸òGÑD^L Ú£…9'qtT h0À.ùt4_Û47l²DÊ?…+ÑÓG¼N)í t a¸ìùùµ¢q·P¨Iˆ¸g»-çä “Û@cž$Pž¼½±·8ŸcáñxHÇR°øô*£™èÓTM”„ª("êpú.YÔ´gô¥cc×ËÒò=3 ©%Á¸óø²["”®È •ŸSÚ7¸Ì< ”‹bq¼|Á¡ßB< È Ñϸ|ûF4Ã*ó‡[fžU&qËüwV™š[¦™Uæ·L'«L×-ó·¬2{n™ŸK§ÇÔ²\Åp €Jêð#Ïná´Vo}ãuú¸qÔÄ^ìM£Ûìºo;Í×oV¼®u{N³ëæôøÌ+WoŸœÔÜG'Í–_ê°ÝsPp/ÒqÛp·qÒÌxŒçû½7µVÆ5þë ø”Œ¯; )¯Þ5º9KˆC„5Á´hµ^Æw¡ÉN£ÿªS«¿mxt ³¬É_U±ÞìÔÏNŽŽ¿õkuÄ÷õYëP¡Þî4üQÖ~mdÖ ®ÖÏ:Çï³üµÑé5ë0FŒq—ÕÛu{ÍãCªãì1<¥ ®öŸY!,ÃMûƒ1è\Í9€ìbÚçxƒp9Ÿu,Žó娬¢{ÄtŽØ6yd1Ÿðö xð Æ=µ€ÿƒw>ìÊÞ£§øíGŸ/H(ÍÕ¾gG¬öuvGVLÀÅŸ0ïEŠù<¨>~Rúkö$ >Ï‚=¾7kágŽÍÀWC»Ë™[G9œ´g½£}ÛÛzjGã»;g‰¯BtBÆ(¸s`‰Ð ƒ¼JÜX#À¤y=*Зƒç(žx8[UØ÷lÖ­ c‘P,yeÕ"M™3°sTªÕ§?—QŽ6½BVŒe€«K”ø<œ\DÁš½ ‘4ʪ> Œ¿ŒHÜ.)$@ŒŒ{’ÄȸC¹‹hÍw,èyÜ$Ú "`‰9‚Æ/ÀŸ–c–"Œ"ùUo'ö¤@Ù±éÓ†žÜTXÚÂòè ÙI ¦HQdtáù”Ýqpf ”éÆfZñÒ»íóèX*å5/álðEÀéeQÊ2Ñ÷€tQq J×ú‚’Œ¬Z0Çã!¢XúI/Øl2|^¢åé‹—T`²Ä‹¶ÅÝF™'Œf¨ï‡üÙy‚©Ü'1Ü Ü4ü½"Æa ?ÅFÉ’ÏvS¢Ø´S`»%LÜi¯³ofN§¤Ç0e+’i‚¡ÐÖ}]ey†—‡WŽü€" ¦À©i ÂN…‰çxŒ4lϘèé ‡Ã˜…’&ޓӇÁd4\¢ðÇ%suÏs¬È†ec,²S)ÿàñP7Õa½ú“š'¢fM.4§+ï—з':n‰²,žÀÂÇj…„ÞÄ€ÓWÁ§ÐÜôœÝZÙaÃ7 V÷ä~|PÀù¢ûcÀK†€‡(äÀWz*ÿàc¥±–`¨Y1»xiJ(«;K’ŸÔÚÉdh2{†gU*îÿxP¡;{ì@?y†¿IG÷¾>©îÑtcÀ"ÜðLñtÔV yŔBOâ¿Ãt ñÅð†qGJf*íK{<ÄÛ>¶ì²þø¨‘KþCŠ­ñÄ4ì鯴d:|QA!ÇPß5¡¬\&óBË}Ÿ¯òäÿ̉§ÚÆæ`M Siëp+¬:ÜR¤¸ò„ dÐW~~cZìUû>Äx/HãÊ:„¸½<šŒž')‚ H¦¸Ð'¹0ÑfŠl¢ /6¥ºR·.Ǿ÷u8Ø3—fø g´ÁøŠWv_—•š)ò JäB(ŠZT¤\ )Õt׸*¼Q- ù„Ÿ/³úh¢\Ô4…‰JÈЂ£Ÿ> ãEšëJUh¡íMÛ5sÊÁ½ÝK»þn’GÙÄf÷29Dä£àn‚¢Ô–PN„í˜j9ë\A'÷J„˜>:|FêïYœ"ÙQÇ*bc}‰&Z Yà&HÇRIëÊ6#)íH?¤òÈäQtË´Ú"#äâ5à1á‡Î wj]žÏ"Ò[Ö£üìûo›ö‚¡–µ7ekªyeÐþ6Ÿ¢¸qŠ1Œ÷­ u²lŤU%ÞDighƒð@_Z«µ´D]¸9|ýKÎÉ›“Q€æ±9Í<>@ IÁÕ–¼¤ÓxgGQ3’€¹„à›nOx³~/_ »ðgÁT…Ц3U¼8“òæÌ…M^ùNºõàtN'×ÄF#ïsëɰCI«d5Å$©—ôȘX pß}оQ2g‘D [‚OÓ«Âe8¹æ€v"Êk˜Ú$öœmÂļDi"2Þ­0,+*füÊÞm1åÀê1)1æs$ØSÓ1ÿTÍÞFWóx±ˆRš€±öL™U•ÐmiNí– [ZPzEt)m?Tž|”Sí´ÓlQ¢°â ¤…ÁˆŽÛg½Ó³¼QgÒH+M`~÷0¹—2G*(L9FàäD}Îç‘ǃû:ÑœVÿýë?îíU¿þ©×Í?É5X Á¥¡=²ÕÕÎðê^a¨X2‘rf%Ê*ý„yTÊ¢6÷„xà¯ðåÙ÷² i|á^âд*šöwÛåîù;œ.Å#)âØ×§ڛ$úD*|Ž" ¹'7ŸŸ˜‘‚ºrRÂ$(ªhÖ%Ef±4¤´rjl‹)I&ÑR6÷üÄ6rµt J“V ÏQÞ„øãب$ŽÀ€¥¤4¡ë·/jS*‘†Bã}7’÷‹ zßyÂ’:±´¹l$®%éI XÉ«kEúÞ¬6!¹ÝªØNêÂsM(rm|’ž•%¿ ¾y¦¦Ñ±îQv?håcݲºûêk¼(VD!^¸Œ.³k«Óå@ýëWµŠªW¦PºxÁ_¨TwP¸@ yÞÀüKc$šV©Õ3ý;(XËbƒüÛºWUÊ™B‰Ó˜áU1è¿Ë¶nf„´Ç³i˜É‡›ÇlQÜ–VÌrŽYÀXFñd Çö®&ý 4Ÿ< •<«L)`,òÇI°œ•ƒ«¨pò-óÖ¡§â@2W2…[`†Â0óƒPĶŸà|ÃdêÑeÅÇáüyN";Q/óòÈã àÆG,ÐÌ“ä¶xñ/>M—˜“‘m0“_P¥„ØìI&™ –R¢pAœ”à sÎvƒwêáÐJ´þ¤ÑÑÕeálåp5ÕäîYŸGº0uì*N"dzpi² èàHVÕ*Iu¨i®!Ø4b‹Z¦† Љþç_ ‘"àíØ.EzøÎfÑ„Ç|(íj#¼±ÀÃ{_â*¤¶i±8kœ0’}Š®ËzÒ‰ß Ùöƒ qÃË<Ö/Ž‘u˜äåCAFÛUï9z?,¶Ì7k¥÷Ejñ>Žù>N,†DÕÅJ|vþ°=Í Ðõ*Ä1DÅRŠ ô$9Ü Ï*œ*O¢‚låxHȬW‡êª_^ÂÎò…1LÏa+M¦¼´ƒí#ü‰gì£MŸ&*|¾Ñ8„ç´nmÒ ;7χ’ÊP)šÛÜc%Ÿ=8P‡‰ÊX€ÚBós?ñ㟥¢K›w‚"ÝQ Q"! ¬ݹeêqzàg4Œõݱgý}S¶U4ï6뤰#À ú±½ ÈåZÅþ·UV -° ~w’]XN6,@¹S¯"Þ«rÁ‰  4*×e>^º‰"ðŽ.¢ER,¥rI• æ¸ùªÓ¨¢N E²Þ7›=u÷u£;Æ»¸„¼‚¨’Ý߃<¼b(®¶?˜Â÷“Íoç„—ÄA ¸FÒ¢Õæœu4㬟”¬¨â÷ú¶'áÅuK‚„%’bZÍÙ­‰” ^™:â%\/¬yÍõŒf3Ê•¬9IźgÌ}!û¡ôWÞ¡ÏÔöÀŠCF~8xàK1±ÀÑ›—¼;v‚êJ{Ñ\ã릓ž1;ú:€s/QÔôý®Ã‚áçO¿?{%<·û@*Óùµî±0`8`XÇ2K^á³øm¶Ÿl{T>ò•–È*²Y‰{Y³¦ËhÖ¹Ssî @+æ„ÉJ1‡{ )X\N0üa4,‰I=,Š2®ÆX2'êD`(£YÈg郌¡8¿ ;¿$…( ÅÈ?LB”÷€šEoC¦ÌK­Ýƒ·pÌœB4&EÞ”%žr3Z ‚ïZëâcBÚXˉⱡ3O¬ãBz/º š*9t€Àü⺦ M{é”"cÑóªò6“Øúq…F”@&ɨ’Ù š[*Cj4$š¡ZªäÎ7õö¥ýñGƺÄ8ÆÅ’‡djX%¬ö¡«œÎZÀÎÔ߸²Dévêpi™OÇ€xyäÍ’0TÌzgñX=L¢Ì-?Ãää¡7Ÿ .g(ýQB­àö÷h÷fbÄnä\' /Œ?cO=4o&úM¦™$Ï—hŽî^5žc´òø쪗øo8LçCο¤-ÑÃyœd¢Óă¢—?0){zî/´EàD` [0œ*™ï„Õ³‹)E.ÞOкeÇü^Ào­% M†,û d¾¸³Ã°¸ôûHH»ñ¸Ä[¿öA d-æó$¤IÎ ‡mOn‹4ŠÚ¬_`&FÏŽ`fE]‰%’x{‰&R@*Ú¯!¡Ñ0úª´xNgqv*J/Ø«0…%0k}U'ñQe曊"œOÅ1”µ(3øqÒ>Ô™ša]e¥ñÝK,^²è2& òk—~ªZ÷ÆK‡S~±ß\<ü¸‹Cg TT{¼hß_KÐåTµrPäÁ‹„?žñƒ²/ÄÙÒVAPo^pI…ÍU.PÐæ@©×…sé™èúCÓ€÷ÏŽÕ~¬kà©pÆ yçÎjÁÈo¹êÜŒÂKgr“ƒâNÛB•38²«!û/8÷’d:ˆCTï c4‚ÂͲCyÛ¡ÄÕEºHš}Lç†(+¿ÇÑHo îô_=)ÑÜÖóeºdõ…x O\,§&¼Q»H${"X2€§RS }‘ì1¹'H²¼l.g㻚ëì©âªY%îvgŠŒˆÜÆ£\òxíÑÄ&ùóæW¯®ª.˰ªþüú$ÅÌÔ‰À£;T¯¯q„rpÍe;ůµD¤’g˜¹ö†á,žIDFþ,àF'|NiHùcUÖ@Ìï2 M6ð¡+Ÿ¢á©„PZræ±eöÃñUx¨OÜ"wH±«ä^À}nt:mt¥9>îŸÖzp#4ÎvWµÃ~û½8º™ï¥n¿×n÷k×ÌRoµÓþQ­yÜ8Ì|ÖjÖÛ‡˜>¾×1RNIí\Óèö»½Zým¿þ¦Q»¶oõöÉéq³^ˇËe»½N³õš‡Ón½Î,ÛjC'áÛk€Öí7[˜n¾ò$wúŽ›xß>Þh±›8K„RÔ‹WÍìN4~ëujýz­‹Ýí4þë¬ÙÎÈDfÖèuÞ6»oÒuzGë[h¶°kµ^¸dË+eOIBkp³»"ÉÎLìƒËñb¥7Þ”ˆRx²]¤{1NwœpxÇ€˜ÑýcM$Ä„•ØsæÌP¹ùi—3’»N§ŸÃ9yïj?IÔÂb5E–•è·¸3šÇÀu¯±öš=0]˜és)#·“»}lll5º=Z±ÃFã4sBÛí·¯oš­CBô£æo°ÐÇÖëÞ›ì`'µÖ{ÀŠÖa“<©^uj-@øl$²ào‚òVñfë×ÚqóиVõë™Uêèœ|Ö£Àå°qÜ”Ëp´’ÖŽµt$}¸˜NÑ 7„{’F §¤nÚÅË'Ç[ !À¬”âClm'ö¹@ Ë¬È Û‚ëpš£û÷$y­Ã _ºÜ9(qÖzÛj¿kõÝzí4›ðü×Y­Õk5d°ÓoõÛÃ\ŒÑeWQ¿“f—ÈRŽ»Ÿ3ê˜Fq ׄÙøMˆ{ìuc³> ÔÌbªÅÚúH©èòŽÈ>ÚÝæoÒ$+;Ê…é b¥K]_{ͼ#ÓU?nÓ¿ž‹ªm^•y„uÏ^©ªÓ8j@åº} <$©I¯}ØšÛ¬F”Å_-j2½Ô–9†ê£ ®Ïn$ùÝFoÑVOu?Oj= ‡yƒ\]Q×UðÿÖè´að8É¿6ÜYH£‘†ë‡> ð­ñÛi£žGŠqŽ7„­ö›….9}~ê´š…U鬥ù-µSºÀäM샽ÉUUVÍnz“þÚè¼Êéq§Qo¿nƒ¤ö3Ù‡ŠêE«v U£sÒlÕzíì}x&¦ðXqåþÞ¤¬bpO;íSDbÕj¿G\†*ã”;Fó%¤W9›|(¼Ø¨°×åÕÇ­fC°¨=ÜU4TMÑÒÌríz˜âWï{Ÿ»’6Žš­†éÍ éÃ\“"  ë°éøA&yÊ!>æàkk$Âs&{4¦4Jï[½Úoù×9ú)ºœY7‚Zݵ‹¹~WúK¿’.©U¤µÚ\‡D„8§;oõ á¶xvbûÔgµü¦ñ[í°Qožä´o±'«æÝ{»Y±ÖFAhÚ&×Eµ#›]¬õ(Mœ×â<-ÿúMjz~¶)éWëÀ‘né¿A'_7{Ùc†žté”Ô§ÛŠ™TDÜÃ&W{!±2 1NØ«<‘]-Rj°¡VV0ç\»uüž®í+.ËÿÞŸ¾i2¬º¾×ŽOßÔ¬Ã~åv­wš§½~ç¬ElÞêCÀ\k§pϹø¹+IK¸[gvŒïRµNûŒ¡¤ùºÖÔ¹Y²Âà:B…LˆWêlJÚ&ÌùàäûÞ˜|j¢Y…  á4xÚåìRö¬¥¨ÝFÅÝ­•Ý8¡Ë¼‚š½LRô nÌ ..ë8£çð%»×vùÆÉiïýfEí3( s:‚9‚#U‚‘¶ÿk5w׺ Ï®:‡Ÿ3ønK[Ñj•MMÇñb1F+‡!à*‰œ®Å^8XÌã‹ ÍÌ&>î ]% ³ð^dƒS{ $,ê&¥ñBëO¿U¼Ö;*m‘Qf±/J¦¡DK•Ó’-ËXÇž{w¨ýfwõ9«Ÿúe”Ž=Tø°2HüÑ3ÚÚǯ•ìVämuåÛ‡+ß>ZùöñÊ·ÙrWõöéÊ·û+ßþ¼òmeoõëÕ³UY=]•ÕóUY=a•Õ3–#ªÖ¯WÏYeõ¤UVÏZuõ¬Usg­òd% òëÜIå×¹“ú°º8¿®º"ÃLhf@‚ý»{LvQ3Šv"ø?ÇR€¤›Ÿ¢ñŒÔcè!¥£é°½×2aÝè"ÆœÜi;a‰=ºT©ä‘Ø9Q©‰fK“âô õ‡hh3\b$¡ l†GJ.¶W‰ÑånPKÄ@ =ŒòLH& Cv”Í5v–ü®Å/€I/QpvôB—KŠ©<¤Ó‘«góËäÂÑÕ߇®õ9¹o`ou/ ÈŒ’! i)~ ^[[+á÷ïî ï¢Ð@ ›(/·û¹5þÔ%à&†¯X.–â3/´À“ÙçË,'zÒyÙt‘ÝÂ+±ÄÓ©ÃÉÑ–Â’ˆ3†× ß¿ã $ ˜ú;íÉ>6ÞÆl6NØß«3_Ö+ÌfJBvï½à.k÷™µ1ƒ—zjxqLùúQ¬aÕéš¡ÓV( õ*ãQÕÅPn×GS7ÿ5ÿ‘ëw¿‘ ÏóA½wÌ’¼^ã·‡»–d‹µ,8‘[Àlme×;>ά:oX[ݬÜÊ¢ LV×=ë6Ó #væµ[åÊU¬ý+pÉíŽ[—£ª¬lµ÷ú¸ýªvìÔ[pÖ€õ^¡÷°aÕ:)ÅÊ^¾êbÄH{|çɪޙ MªUOGêç‰]Ùª‚Bè èUnЋfë¨Q=žŒ¦Ônµ[Y@_Þzßj÷ß½idNÂdÚ§qE/ì‘G«Æ .¸žZÅÙ~vE£fë¤16ÚàjÒ§xn«ÐÞT…¢aG6ã§(œ­œ©£Š 1½b^Fh^·ª gÇÇi|-Çã8-u_7zµc{ó\D X•U5üí–¿×ôÈp^xt}o|8)<ÆþšQ¾Áeí9U¿®(î!û$ÿ¥Ù;ªumèÄ‹Q˜¬"–Pç×F§yôÞ­õ%šÇ£ëõPêkUÁ«J7NÚ» º¿rº[Ç•/‰Í åS½Ýò¨÷pˆNÞuä› §:ÓãZ½BlÆ<"•rëátÏ^ýg#YžÿÇÁFõ»½fï¬×è“ì½XëÕ2 %‹x±\D}JÖB¼WL1gÙ4‰WáŸRICgüZ@  õUuϺoìJËäÓšÒõöé{¯úª®©E1Iºu9ëëÝ^­ÓC©—U™ìƒ×Z¹JÖÉé`ƒ0 #çÃæ°ºk&7† ;¢Ñ:lfCd?Ý(ópÉ‚&ÖoÙÀ$Ϧ°Dß ‹zó~¡Púè¸ýN °²abð€Ñ˜q6kß¶EHÙ Ü"}¼ n Ýhz]šg^N>O¦Wø7‰6^w‚Ç’ã<¨˜Ì)ºœ-Víà‰Ós ,ñŠ9T5Q Ôl:ÈL‘©ÈhEM2ÎPÂ`û´E m_œ¨r|‡Üþ­šL(iñw½U£g"]å’KÌk±´â:-½¸éµ×î|¨%ßèû6ÜäfˆI\Vzsû/Íh_z‘q–7Y·]÷5®Ü„Ô¨8:mþ•8xŽ\þKÚ(  è @Îÿ¼ÛtꞬúü£ˆ%áײ3ûh†û_ÿÜ!uû(¶[à¨Ùéö8´…u«' ÿ:áWLó9Ì_‰¹u¥ÂFU¡}MB&]bXc@Ëõ€øGÍ~§‘ÅÇ7™G«÷šÞP¥usÐjÀž¶-3œìkj=-ù©?Xè¬~š°Ì6¨èL¤T\=­¶ÚÒ¾àj2íË®N ®ò€ÀAÜu7·‚‘ý×ìq{ïB›\0°]ñÎÑçM´ª‰É?Æ…sÑ'/þ5ÕéÂC†/'®`ˆ×5RòÄ> w×,àYëu§Ñ8´iÛrr1¢áJª†LgûèÑŸdSëɪn–L­ã Žƒ2êøÿóÃ4’,3ƒuüçx'Α¦õ–ü#kzþ­9ȵ\";o1—dl»€qT¤ 0œ’ñ.r%M°¡j81ÞNs`Ér>Ÿ^„(4 ðº«¹}+æV*c k¨îðr”„çM'ýé`±É»Þ¥ ÝŸcdøBŒÉýÏ;P… 9øå8¼øNéºovÚ ÿ? wÖ§^eœ‚ôü†2áºóïû©cŽW˜Gœiˇ[¿½ŒÙ$E_¾ *Üò:`™Ü;ÖÌgÝ7ãöªz“^eòòX3‘·÷ç?Ë®Mí]¢–YòÓïc—”Ïê¦Ì¾8Í7ïµÌãmÍj¾¯$ µYJ3’¡ID–ÒdiSž£Ò€-®ýÏ€*ë*wß —EׯMØ¢duu6U†öëgàÚíÓÔõu'¨«ƒÞ –sà¦ÓÙú»ìDQp®þâ0ep®þ±š»óÕ»÷ª}ìT\œOWÂPÅ×Ü@¥”®&¯Z¿Öó—\UµëŽ`üG«;| ­aú×75‡ñ 'q8&·àMªwÛG½ŒêÉt´°´=ÿT Ë6Z˜RLH È~‰~OCLpy —íäΔÌËvqÚ å±t«ŸRlÈÑ»Æc4<•©‹ão˜ ‘¾6•ÔéI¬,_’†RâïP f4üÅ} %©?ò¡ïÓQð5>ÿrÚé·ß¢|©½‚}šJè}èãxœœ°Ø—G¹$£_}?ýšÂq!½¦_€#É_raS71}å’Td°8¡µEà‘€–tÕR)P_1ÓBÇü ð L—שèKSÎ÷œÆ°$F …¶ðëÎŽäSàÆLkk³&8a 4q¼Kh±â^‚ÙÅL,ÝÕ*©ì^2Ô½ƒÍ9ŽÌ r¦úF±Îv\*l˜ëÁí5¥s@ü# ýNÛß·ž©>›Ö0–>VG—É´´b æiû­¨‡ïBºZiÎr‡ÃÝ“£©Þ™&éäcSãŒàugmµ@Á`™,¦—܃Ëp6£À¥…Þ4ˆð‰®r„+öPâh§bWOÉ`VL¦ì9DòT Ý)¯e ’èïËh2ˆ’ÒnáÍô ¯±?Œ/Ýþ:]“ðW£0žc7¢ñØÊø«3©€šP8{Il{} ¿Ä0pI«}UQ Ï&1¹-˜Ä¹»‡Ù d£W¥È!Éj¦Lû&ËË>†JÇï÷ñŽÕúIcÆʤ T줃*RX°ã%(:¯›ùJ’!p"Ц«–eWe<°¸W8ûoõãp|*µºŽõ'Á±¹Ãhbº5==³ÖÊéGãÅ£èð4 îIdRÂŦ¦XL°4v:¬$Øt„Inqìc=U˜†PÏS@`±wµ!…2æÖ„3Xõ`;ÜŠãRð|çe°ý ¾/ÊKØU1yÇʳ zd^„bæqÐ5LDAe;ræT†HqeÅ‘‹`®À7±B§í’(ª*Yèå"ëC|eC|qˆ¡=7€ãˆ¦}a¿,‚í¡5;‡8;òýoðç©ñ5ÄõŒœg¶‡ÿ½ýÓö!ýÆñ¥±¯¸uŒËt1gâ'><üÛ•wõp/ÂqA½åivjdV°À1FdÎÕð6³_\;¹ð.¤É¦Z:^¾ü-gÙ7êŠ ùâüU zMWþ¶QW€½Ù¬dw⑎Óu%u îÊÑœpÏ©F’ü7"áh›‘®ÛÝÎ_ØÑÍöîFèRþQÊajý¶Éˆøße¶ÜzKws¤{ë-سËQì†ìªƒ à·¡¢å`{*SÛnÃÔ¾Ÿ.ÉÛé#æá`»w|]Ú‰Lu.g¶­+sô{^2³ŒAû2ºƒâCÉ·ÉywöK †ÌÁ˜fÕ{ï®/…8þ*·=Am~Pu´gó©óaª^Î’Uë>½ε=œk¯Å¹ó1óçc–97îäéMæãôfXë55óæc–7ˆßgÐÂöx;@ä=™lãunû¤µpÝHc¿:„ʃg{s#ú·°}Ô\ASÆwZß3ž[ E0[7"F'·&—9ÄèòÖäí$bëÖ}œä@œÜº-á&šŠ»ÏÑ×ÅŽ‰˜/—NOözEŸƒn|qR–dCÖ \‘o:‘\¨›vhï.#ðX¥ÏŒo=R %†µšÕá³`«Ä?Uu ®6™ã–! ÎSN†úœŒ’_ª´CzjÈ¿œµÞŠe§Ùzº²¬»=§ô=ÀøCòc#x§¬(”¶2O qÎxÝ’ŒÁßeŸŸL‡‘uæ,•ÌÝ÷ymŒæÂ}èè8çãéà3e£07h³‚CÝY5ÑÅÚ«ö¯ ÷¦Ù º:JtK¦Î&CŠéÊ7œÄ ØjüÖóÚǤDÅZºÖ^µ{½ö §$ÚÙÙ :Ð5JU2›G;³ùt% E0£¸/¨¨¥¤Íñxä¡ @¡ £Ë 𖍣õè¨ù[®½É_8Õ¨6|8D§Åf¯ÿ®yØ{øïX1,¯‹ay¿P±{Ð4' >nƒ~í~Úòß’ò Ñ+»^³™P"3ÇQy²f ©îH*Oþm†ò°ºf(©îPVÿ ee—÷V÷ˆSMŽñR3]ªô‡áÕXƒù”‚ ¯ìXî|„jså}PB,…¨Ú“U…ys‘"h0çšË؉ŽVŒ4`8Édð"8lÕÎŽ{}´èéŸÀXr»é[š¾`81hze7U"rÉc¾øWzž ,Wñpñ)á,Ê!—ØÁÞèÜίó ùÀûUÎ;ØRù/Iõª6áÝ«¿Aƒ¸J-ÊÁˆuÍ£p~‘”yüNV+ÖL ;¤çúóWØ\úFõá:Žƒ•¡³¦&öÜ©ª^@¯¥OÐùhLi*óæåÁŠiyÀ`ñ“;=”ìµÊëHj8 õOû•WƒÏÑüšô¿È\bÖ0ÀÃ6 ä|õ¤wÆDêl?WQ„a½®9õ¼ÆuKc_µÖz5_5{íVæRð¤÷®M$˜&í ìoÁ7ê´(¿UÐ¥ZwÀÀ×E•ÊÜnÉB(y’TÜ)±`3"El£éê•õ*Y»wíjeMØŠéÏXB^°ôŒÞ|þpÀj‹™³Bg 7%…WsˆÍ3I·O†ÿˆÚ —±ˆwI¼ê°„¡ÌÉ\ûvy¸Å YJPöKS(8úÔKlÕk5Åàò=Š/ŠúÖy\~™n°Á} Wµ¢q®‹ír-.ï4D€¤\üvØV(ÝNÙª³>tˆuœ•"ÒNI–¼‹¯eŒ8XŒáü]ƘôkgÑŠÝp ŠA`ÕTo œœž“Ç]‹ |9Û²±_>±WT„ãVnèVæñž‡CêÛôsöâätF@ô{`µîë—mði¤a¶¿/÷ŒèéÄÙˇ&ÞŠë¡)·Æ4š4´ésÖùõ 3 §Áúbnøµ`ËYÅVc1­2–Ê鞢}L–dõÈ~¿jl+@Øïs@,¡•lRUÖשׁÂ(«Bê7[ëœ9ß)`Ë)yÒQ ¾ÀN–LËw«¸cqË pµÑe·ÊÅ‚dmz¾}P¹P&÷ñ `QIu‹h5_« ¨³Á*9€ßrÇÄŽ7T9?·]–Ú•ƒâ½!Æ-A-Í1ˆDË.Ç’´ï=‡C™ée,Ç÷ZŒ%7á/ÊmV@%óX±þ€¬µø¾3§z°†$Zþç{ÍòÜÄ]& :ÚÃÜ =3]ËER„ï@U¾Ã´ðtHÌ?a–ópñv7²·äßGš α •d1œ.¾VÁJñK6«’S‚\ò‰i5Þ¡ß(ŠÓ]F(XŽü[;uÓÐÕ:äéxý¤Nе÷K8VT)(ç¾ð{ ȼh3R5·Ê²gbKˆ à žSRìé¨(e“ÒOò@¬À‘ð(Èʼ\Š~`Å;Ð*ˆV¢“• -£gÁ=–Ôs­ï¶¯Î=2*°¬ÏÝ÷ gõù¨†IMó‚j9WðAœ^>ž³ÈÙµ—ð‹ÝMùçÇ¿O˜.+`M*K!\n(«ÈHs¤lA_®šu;ì:Ú!;6û–õ¾qØì•L»#‘L“‚O¢®’¡Æ—¹X¢DÓ ›î“š;Ö½ ÅWàH!©ˆ(êÜôÄÀsÌš 0?«lÙ¦ ‹nh Øï“6Oæ3=à, ³Áü}{ÝUTr?ŽÏçáüÚi(OÔkA¬<É€Xyr3p5¶@>¬f€|XÍiU í\ä˜Da‰ §®U·âžhE¼rñ €Õê°0AèlX¼â” ‹ëa°íqÞÖ­¤@ž›öoÛŠü»‚Swà Y%¹*ï,âKº7Fô5^d@SÐbe`Í¥!1zÆ‹Ä鈴!ÝŸÀa2¨E®ì•(S 5ÏÑïŸe@Òq•x¸ˆ °c~ÿ½Ž{%š ¸x|Ø+•YµLjà÷ß;Áâzj­÷õÎñQ9€/Y£óÁ06x$óÀN·WõÃfݲ7§30· j'ž2(<ÿÒÐèÞRbC ¶&:릗ÓD˜é g¿‚u]›Œ«7éZ OÔ`ï+”Î |•Ý14RÚ‰'Œ@|n ÐVÁY’?,Ã!êˆl!>D%ã5W-Õrð0 ÒP<¦¥#äYƒÙ»ñ9èÁ¬ZeÕVl|ÔOFžz§ îh Ò_Êèó•VÕPÞýÀ¢cj:Ö£3CÑԾ܌¦°ðåV`äò¡Æ¤nˆ‹ä+µœ 6ñaùqþáÅsfAËà L1B^fµk}ˆ^)ÄŸHÜŠTC§ÊJ‚;ŒÎ—iR;…Ùñ· ŒÂtý†Ýƒ:‘ÜC¸ òN+"§²»»ðVJÁàTZÏ'åËòîîK»ˆ¾ØˆK°-ORæÌÙ™4õVîóF¡Õç—t½HÕ‰7ŸD“ž‡2¬E3ëc÷ ëcÑLÔ}#\4 åøÄš ÊVd'jñQbåJŸú èV0˜Ç3’¡Í¢9ÚS¬ÑõAòÊ€VVG§©:颯Ñ|“ë">-–”\êßù»_ÆÑâ¦zGöU6¤+¸3´`C›£<5…Ï“—k–†­áRÔ¼§¤öh€.l®—6‚BGrV[//£ó˜\IR•áR>reë´ -ž),ÙÐhNF&hgƒ@±tÀK "Ô‚¢2V,íØ `ÏÙÀäZììBr˜#X`ÀT®ë„7Т4 “L@—™VR‚S4_NH’JGýJŒýòmgGËÔ,¾W=sYÝïsƒ~ÃöIÀ„ œþÜÍ>UÀòÖIkõ øx·¼k$€ÄAxQù½úQG??ì}Ä'Û;ÛZö쳺 ƒøÁ6ëdSÐùàr†`Q76[ íþܥЇê®ÿŸÉp•¤ÝÁK¯· íôwnˆd1„oeËÒèpkHßÂh6@â'œ¹‚)s¾Ç¿þÄŽ°+rP´»Œ|±Ó´+GQ æY"»È€%CŽ>Ö†@—Ärð£–|aO¨¦rÚ“8 ûARä+…Gï[Å̡ݱ£æoÜ1µÌ©Þx}`É•^ Xr_o¹”MBL{I±õðð,äLõA?“¦¾\&}b)ݽ½êW"Tä·'¤£ Zµ^ó×FÿoínÀJî%ÈŽ%ñ%Üdæ Θÿîfj%Gª/úͶ”´6?)ÍÎtîê;¸F–šd]Mn–‰upod;fœŒŽ¦²Þ>9m7ÙŠ¹k’–ðGŒ”i:ÆÚ™rnÖ)\µ ‹"$¿ô#»´è8œÒ¾Âä×ÚñëN³uhMÕ¯áø~ ÝŠ›N‚(ÿsOAè„Á5-¢Œd}õS-ë+2Ï•mœÀo ”’ò`ïL¶š(ºS±n(pêßh¿¬’P«îÙòÇÚ®Þ‹ˆ¼~žö€-›‚Œ±Jÿ]`u¼É¡¨¯q|Á'¡7§TàWðX‡e±ß{Ï®å½ d²t™¬–Se  n8´i.eÃSÜÔÚ; ‘?˜–û÷a©u”6¡¼÷”}€°`[)SÐUv D©`N6ìt¡Ë®a$¿ ”Ù¾ T2x=…¹)´‚éZ©û0ˆ¿£Å–ÂÆê•¬»:QÖÁ…ÛS &õÕdX5‘ÐshQ¹æò¥”"@¥ñQ ézŒ'ZÞjõ^Wv[ô?•”%o4¤+¼—h±¨ebÇßz¶å ™š)u/غ>ÁB½E›¡ì®AÍLÄó)[u°GGèÉökcm+Ñ("Í[´rZë4Z]Ê5’ þ4œÿƒ)ëX.Œ7€ÉGnѦ’]ÑŽ²ÐÁ¼²VÁçØÈ`oÐÞ 9öý¾í˜§½MZF³E~+£–aµb4ѧ0!žØ‹øŒÀ8$º¬ }fÄgÒÜ*“(&]±Ý“ÉtžŠÙ—Û¾[Üü#bºÉcCô'×?‰>…”#ptKÊÛ l=VL8'ÇŠùþ>6×Çæ0úbå šêFÊ#±j+5‘뺾Ó×Ëð+__ NDØðkO·¶ H™úTN•tåe¿~ºæŽFè×GÂoúW߈ yFº§¢èCò“ù\ôwIˆ¡5Hè¬ôpÇ=Py”L`T”Én ÝUBA<Ï7²kJU/ ô™ÂÖÑá<Â6qŠùÚ.ÂYC¬ú/Ôxž8§æ¯ÅåÎELà†^T‘¸$ž&¸ š›bRRÞþjPªKE^mvJV!>P¿à”Ó?±ñ$“9Ðnÿö%–õàzÜf,¸Ìiä¦Íȃ%` ø£$ÀOTóòcpÿ¬™Šfˆ;Àªhyµ™j”Y«Ð JVý-±Žqj°›%’YÄ%$U}PWwîàÇ„G¥B9ouÔŸ{uÌx™Öz KŠmÊŒ}-»ñ;ľ>Œ“Ù8¼VøØlÔ±÷rK"".['µßúÝ÷­vëýI7xìÚS¹}Ól‘ÈÅU8YH¯b=šd$ž=«°9†î‹„Ê2Ad!âU˜ ”? #°w s,I¹B¤-‰€)¸žEɇÊ^åJΖiªWˆoøÔ©‚*<ÂdMªŸ|üàÌ̓ "G]í=Ø#ïEðHá·ýWLËÖïÒ~Ú{F^á´òE5…HX;Aã,¾*9ÄÛ¢Ndš»D?„Ð9Ðû›Ã©éóÕîþ¢U¸hÃ;J)–¿;/E!”ÊY{woBYb| ^¿[§?Þ³ßü}«hÔJXˆu銊x|æéúŒfÒjMágšx( @B ²|þ(ý”!¿°ÑåóÇ’OPÓ”Ý1$ô².ñ‘'ŸH ¯‹\ê¢HÆ$ýÞž A¡?Œ#ÎÀ×4ýáNN–øhòÇ™JkÔ×oß‚…žGxN_üeÃÊ—x’Ú›Kéf6º&÷¦S8€H®á´¿¾L0:y¨‹É&äªÈŸ4Á_¸Ó&¤ŸÎHkjý¹5èe°ÄNE.Ίž­Š, ´?ØËürdhŽ]wHÇK½»¤P<í´O^³Ñ%1ùØÛQÝý lÞ=ÆŒ\ÓV!Ÿ‰¢§ÛIpM0ËX€ÂŸ‹éüÚ>a’奿…- ÉÇË Hº –Õ˜ønñÎ0žsôãÕF«ŒWñ0î×1Sp™ ³gbžÇb (^GÉO“iÉòLYß[ ™µÙ‹“•ÒOU½ÕQüJ„OühF••êþGçQUñžqeÞpŸ?–¹rÙ9ì 2LŸ•TëB¾B‡&¥, ®+1Õ55 >«—ïäJ¥¼iË'çsw—Å¢@Ú‡¸_8*\Tä†뢼E‹ <Ê‹?Xo)òàåÎKÖnÂipÒ>쟶‘ºe<>-•þ Sº}vèv°mXœ{ZµA«‰*ç¯WZÚFãÇJCÀÈ Pi·Ð>ß2×p¦AñÞÝ 0S”ôâûÄÔRk¬fïk¾õá–ð³9á˜P&Y&P¸š"â//1Í(+…´àW#¤ÀwSŠòÒÍ» V@¦gσ¢Ì£¿/¥ÙÙ˜!îc¤ò,‘yrš ÇÕÔxɹsD/!ž‹‹¤âÞå:¡)ÌÇ (¶¶üò}Œwß©7^výsÂ4Hÿ&̱1ô£õ’\Mü·©ˆz¹ø-â=Ç/$¦#%ËÑ› 3³Z06@jO¦”¸A뽺šGŒ,$i%ò*R:§ôi­g•>•e”:}æ—*í·´ö§Ñ|¼ƒX(d¢H*% l©è#M\ðTTÅBOÄ̯1,ò5G”%ñ*ß[Û¶…c7–à"þñnÔ—¹Ý ÞE,€Âèqx6KU¾ìLF8—á\û¡‚(qòy—uÓΟX“vB¢Ë¼ >t&¸+Û„tE­Y¶‹n4ÕfµZ‡V“µ$8=4Fƒ¾}oFe«X¹u¸QóBKæL+º‡6ÚYt$Õ-Ý+kL7í•EÖ(Ь;»2Ù#v›ÓǺeºgŽ;¬-Ùç¯ÎPÇÛiÔêo02ÏB+Ùb¥dñؔӢºp¬™ŽÛ»œ)Ï䣺ùº ‹OôW}34Æ`«ÙÏÙǬ Àê΃Á£ýرâRv\ê_‚>á[GìˆÙÈÔãJ v”ÜTa<áYÅŠHãÏ0ô—h»êqÄy½qûýÇÇtïx]\=úw Iª8(½¾À¤¸¬~¾§lØÏQ´U3¤ƒº‡iÏ6é£C(ÆcâÚ7TAf ïz vl±pál†Gٔ̕ÔÙ%º^1ó æÈ:Q½€šaéósàTÄv€CD€0ŠPcDtl¢e¸€‹B<®€°îª«æ ¶ 9ŒRëõ–­­][•Ψ+9D¿g¤8sa~OçÓ‹yxé¿»=ê M;F*¥Kw8¿(µµqØGËJݲtgsâïà¬â%P1wôvÌñHÏЕ‚7ØÄ{ù9¦Èø9û|¥Õ/µ¾Ḛ̂á¼ýƇþvdSÏ‘¿†ÞâšR_!AÖJ*yÛeuS¯ˆ~E1lš8AtŒ(ßÃö0^ÿÅž—‹)ê¡÷5;P|‰æ×™ƒÑò-%²ÿDåÉN1]lµTÇŠ3þVyRä+ÆÓúÓs´í†ì뇾ÐQ4Ä4D¸Ú\ ¿ŽéU’ñ ˜}Ôï „Ï5Òž-YÑ'nJŒŒA ßÁÔM¯\Í¢]D7vì|9Aœ((Q &Ž©åÆhµDÖÊ}„}Mà•ƒ¢†Š·ýEìvBaÑ Ím çq1ŸqNx$ØOº•©.5•š‚”Œ)ßÅ|‰Ê¶˜+¯ ¨ZÙûº¿··§SL 2*5Âá—˜¢3à¸úíþ«f«ÖyO¯ÎI𖼨×láêYñ!øIAÏa@Ç&Ó¢HHƒRÙné·é"c˜y•Æ:2œF‰°Âè)£yÀlOp.uS´G$H5B*õÖÿïh>-þ]ìó$…þ›¡zƒ=éâ-Å ¡ì䌖S‰ªÅÓåˇéì#µMî.ÎÓÊGÇ´N'"¥D£qÆ~«:ŽÆƒ¶ÙrÌ7KL('¶üB¹s٦ѶëÌÖÎñÉ–ÍþÃa6Ì1 ¼ÄÅPµñ[³g±½ªUK„ªÃä¶zº¢UKi§Ì±Öµ­4ëînÖ°å‘Ó.ÜW(gg8Æ"DކÑ]v¨Hˆw(87‰LÐ5"–,ÏÇ@&j§M”Òˆ«XR¯ÊV‚y4§¨ý¿BÒs¼øÃ7Î:ò8—QVN‚ª¶)É_tå<˜1:XÛêÑ+Þúñ^ø€|8AÐ'#Ë /¿OõŒÎh÷"å¢&{€Tš«;Ø%VSÁÎÙ¹ÓP„¬Ö÷½Ös"ÁàK;²½Wév±Ü:—2¹OÙŽeùšeŒš¾ÐB j¥¯¤B;õ|XìAWžl2êÊ“uî<ù;Ëü6XÝdà«ëþ°ú/x–aûÊÓXXá8ùo‘þ–„^ÐÙ9SÖP3fÁì4Å›V™A.N¦zh @’²¬ièïº!Ågûà“ëíÐ,ó•Å—sOæªIªT,ÂéɆM ½ŠÂ<¨À]úG>ˆËAe¯쉜ËÜ; sÖ³=ö“~ÿM­ùö¬ßwž¯ð¯JÇ|#Õ® ‡eâ‡OÛÝLüQX̼F4¥/F4ßÄk72 ÌÙÿ)Óßý)»ý0™ÅÙ}4[=€qRû-ø)(¢%Kp?ÀJ)߯›Œ²æøu9™1†¿0#ôuJ~e£n8ÆqRtªD X±C©ýn¯V (¡F¨||á'@pÇ¿véÑ`9'ÜÒñ°å3K¦ÚµGˆ­ö›­£f«Ù{˜ëÂ|85n:‹Z¨gÏæ\›W[;ëÞxy¿Â™½À<Ï( êd> \Ëj!3 ޼^‚ôˆï1VÜ'œð•ëQ‚;™‘¦§ä6ó“ÕHÉà‡"~—h¥nÑ—·õ…{awâf­ÆŽ{eC¥ÕA ±×àWº¥ž¿°6¶•¦. WšjB‰Î$«¶ZÉÚ#}Uº5ÅPÞÃi ÇX-Ñð™ñÙØ¡±9µV„¿'Ó5S §Ê~‚ÇÐÎNî©MB¼eÉΊŽC>¯Óq²úÜ«eqÔæ®»«c|{‘Ëï@—æûï®´YÅâõÞqUì7~ëujV»ngÂ>ÖoÔ‡pçš N:)}ì¿j¶ê” $Öp#X¤Zej8éiÓPŽj+`Äõöd{?bu­CF"õŽã2™ñNÆ@PH$=>¥Ù"Ùõ‡çŸÙÙH7ÎwƒCm¶zNâÌȰ³–È/÷á¤\Lç×E˲ɖr¨‰5«ãÌ,‰:Úg½ÔäêòÿŠÙ¥^Üa~Mʬ#Óõ!ê´œŒ1¢?)|%zµåŸ ñ•,yW™ }àä§ó‰.vçQ_E¢¡ƒÍ%Õ+²ê¥ÌŠú•Z5±ñËP7J„I+zñ¬uz£u¬§~û->!ƒPŽã%­fåª,颯±€hF“…ýŠRBêç¹¶,V{ßÐe35-?øƒg¤ ¿û´4”^‰q½,Æœe ð_ƒ-üçe@~À¾–\t5þhV5v2Öžýy`$»»»ÜǖDZ¤õEÕ€±¤g”rì~Iur‹áz?aâf‹O~(r±O>ê«&Ü|gá 2oJš×s=Åó {íÆ«è"žØb¶¢Ÿh%4C”oÜ&‚üSQh„F¾á d`TfˆÙV§š†4ûPùH$n¦Ä±?lÛ?™-ö° Ù4ƒEpvH'T;¿ÿ¾m?À/2Z—Uéƒþ©š–¥þ!‹Æºô®˜1tZ>§ç¥¿HUgô‹0NÝA5=a/f•±Ž—‚&c4/“OŠð˜Nú&2xI˜Ñýà/Û^оž×HÿÚ ,ê–3æüXdIQäN¥-Ê)#otš%•tˆvp>'Ÿ™ÂJÞµ2wxióímRðMƒ÷wÒ}Ž"v…±œžÒ’%æ†Â˜U¶ø#V³dÒ+è¶_$ƒ~«"™±o¤ËÊß,ÈLé«»’¶ç—çÑ‚­‹Çõ~½÷þ'êÆåOíAÙVÆeœYT2×ÐÌA+š`îƒ4$ÁY¹ÍN"Î ‚"*¹õû‹-XÕ±I‹%ÝùApô‹x7Y:²œäÄž†[·w‘Jg²«wƒc¢ïîþB—(è'D“þp<]̯FQ¶éz\Á+æìk 5víY†o™,ÒÔPsÊÍ”/ÙȬО½¹ÔšBo„¦ðj ‹=Ôàæº$dƒ+Þ?Užüô°*»ÔJjÂQËÑz÷ü÷.g¿ƒ±œMÐÛHùc`œ* òµœ]?*5•ů¸>PBdäIËxoC`èÉŠÃp M‹ÑïÏäH¨JQM?гþ*Á·íé ?Í‹[?ýðûÖöÿ{ïÇýgåÿç/ïÏJîæÿG¶·ã†£°¯ü¬^8ù2âïhu#cCëïß×âFµ°3‚í{ƒí øõÞWJ(YæPt‘%µ¼ozXÀåuß6O3öŠØµ¼Ðehf^#,¢£4WÆrIh´›G¥4’_£ö êltmp¦È.ÄÜ3á9`pÃÃÜÀ¯¹‚£x'€®£Q€Y]ç—°µ¤áõÓ¼ñÛõ²¡ã2ÉW½[yïνǩM â…zéhµ³bÇÍBlr‹b´9½¤x|ÀkÐùávåHû¶MT±XÙ£OðSP?n×ßvû§ @ÞF½ÜŠÃéò¦‹æÂ„\ŽÑçõ'ÑðZ²@.æDgƼ4;wÓ Q†ÄêÜl~ßp¿kH΀d…;ߦÝçÈ©<ûIv÷>á&ýgNÈ]€KL§€xÿì;>DÆceøÉÜBƒqÎóD!iæ É®` Æ0# ž( ˆUÏz$±ÄUM‹SÏaZ×°«)æT€jâO¿†îOÅ”rnä•'N¹Ê“’ Ó=Á.ÿ°jÊsópjb¨qº_©NP€´ä¡üt$ÇŽ%»²;W¤²ÛýßýV»sR;f+Žõ¢ò­|‰Ãà°~,)YÈ)7<­‘ÂG¥Öø_ÿùüË?œÍTR£îí>zúS2ü¤îÃÝOwl Õ“'þ“¬=÷ß'•½‡ÕÊÿª<Þ{úøQåiåažWžVŸ<þ_{ße„k>K¼@“óét±ªÜº÷þàþ/ùÜÞ‹ŸÂµÔM¸–Nt±Ÿ,×%Zh$,ñ­¼øQd޳Æ+ßi –½äT[aÎ¥ñÈjüŠb%דEøµÀÉÿྲˆ|IÄh­x$à—ÙêPÌ™©„*’2xÀýòb^`ê½ ûónŽ^“ôÏ<ýGü,xþw4æâÊÓ]4Ù=²>]ÃÃO‹ 8(•Ÿ~ºSÝ«T1¼! ³4Ôzxy>‡‘Õj+ºÊž˜ê£\0…Í¸Ê ?…N4ŒN¾¤RG⮿Ét9°¬ÄHDcôqÅ 7Š±Ø¯­Àª´Ü‰)h ªȳë”OìP!SK^GTBF‹g¼6x2Ù½"[éÍÝþáP EžÃM³.ÉLÂÝ1DŠW$Y™20°MÅ‚„FãØ«ùn^O Ek6TO`˜Ãå ÊêŒtBºt«Îˆ¢U §² Õ‰UÑw—‘æ1*›õ¼ÓbQZJkzt-‘Íèøç²grÙ«²‰dÄ´¤ç’Ã+QYHÚûØxI éËé‚BÓÃŒ-àVæÐ';±,™ŽWˆÊ}’dF€g¨0Bì“ÝJ¸FäFÕ{ÓìÝöQï] È|?í´m6ƒWïƒÞ›æŽ|ßi¾~Ó Þ´1.Q­uˆIÃz櫳^lÕºPs«€/j­÷p­<í4ºÝ Ý š'§ÇMÐ;µ†BEeiýøì°Ùz]@Ðj÷ò€b½v-¤«í£à¤Ñ©¿ŸµWÍcôÎÁöŽš½¶uÕ‚ÓZ§×¬Ÿ×:ÁéYç´ÝmpX‡Íný¸Ö8 ñ²NRÝOñPéóÎUG˜8ÂXðö¹`Š*´R³"›vh{¹ÒyL†= uë+ùuØÍT^«‚evÁäkžJ»rØÀà¹=N߆Á}¼éç¾…ªj îÑýÅ´?í¾.¾.›r&„RYj”ôåPASqóù®9^§Hß [â@÷UäÆŒª^‘üÊ}xÀƧÁgKÅÅý>óO)¯†ÉœæXn=xÌ‚³¤TÔä?ªs— *Ç“à¬w$¾§ïÑž'Q.ɨT=Jøº‡ ©ŽHi'ù¬îŸÔ:o0ôN˜D!åY—•ă˜³. I'LRtÖýL!QÜrî,-ðßE7 ì9Zj³%رØ]ñ›(ê/n°Œ%•x«x BTd“T¥XâPãØ‘ÒnàîN‘ÓP¦Áx^,$™•Q ƒ8yòª#ÈA %äÁQó¸ÜIÚ;Hä­&›:pÄIbW+ÏAA¢6œ£ÿQ‘:=RF¬2ÇÏuå;ìzr(Âë/ ¼Ì/4¾óOI[R0©ß`~D(²…6Šƒ"ÌP„6î?Ü(/Ù­~NÑJ¤žp¢&XAŒvÇhäÎ!  {ÚwC{KÕjÇ8ÅÏ0ÑÍ|à:ÍÃ#^ïA™h¤m¸]#xc¿Ðß—  +Áü©çzZÄg®]œÄ_ý>kµbeäø^=']Îi6DÒyšGâþù´í4L8ß¡q.û!rYrÌ)à;αj’û¡ÂO‹)¢q4b’ù2*óû_ÈÀHU-ôh¬pïRZ§N2íP”$4 )›y2ÉòIˆMGDÃýý<¢%§Ú¬?FR,¿T‡ÅŇ—CÌœcU˜j¨„´.µò^ª¦ùüØdŒ ³é¹Í—½ÐsŒéa#y®bQ|È¡]P»pñÇŸ?{_{Kއóu¿)X‘ø³ ^*V7qìÏiì4Ï7è,ÔT_sºš›bndu—¡9Õ3Ë‘dØÆýÉïîîn©¤ Rè9?üãÁ·ü½ÁV9@n´Ï>ì2%1áþA5çu=³QŸQNØñ*ü‡C2cTžüg|—0ìi¤ò÷÷]Ñå»ígîi'¤O\ÇñzŒÉj.3$¬ï¾{ѾÒN\Ü”fdèB†'ý×ш‚AØm~ötT²'S…$Xî£ðàà ÇÛ!¸rÐ+ìÙ'~€ CälìÝû”*˜vŠSÊOyõ–‹A‘ wñ/Øÿ«Yûÿaõßpÿoº×0p¶Eá^â~ù+ü< LòwgÓak€/E³'vè™]Õ{wðÏØ6ÿÿsµÔšãëŽ2ƒ:Ë“­äÍ’HÅþÜ%͵â­@E”o ƒââDóÜ”µtc:Âz;ûÈžÃä0c­ìåù5)"â…dHéÕƒjõéÏ*_jˆ®ØðŽùë' ùtbòÅI‰ê=,‚hÅŸÝàÍô #†•U)'ÍÉ™è't¥Àª:èÃÞ×ÊÖXNIº‹S1™Nv²§Ã‡.f£iDW>a"u¡!3†Ã9§°O¢ …$¤—P)$¹Û§Û¸•`l…ÜD0Ø–éO5Š/kÝz³Yæ \è &Iõf¨íðJÅI!ú w±ñuÀ¾…TM@}O{¬Ÿ°@á `¤óˆ;ÌPa¨"yá•äa e¨Wü¡Œƒom;ûœ"q⸩ç•'°¼p]ŠÔ,‘{Â#¯2û-Pƒòª`ÕGÿþy”`®eƒÑ|»Ó^þX®y9#g’àpõryÉS€qÔ0Â<šE´bóh^`؃B¡…¶ì"ß²ET:³Ý”£‘Ÿ ,þ& ä첑-¬ º¦Ÿ:pVÓÏ8´…ãÒBbÊÕ£ҷ^’4f‡÷rAš›-ç3å#“•$îšj ¦óyDA:£túù™¡,³)]h)É!N°Â‚Ñ^›²} /üf&H„‘8êeäŒh„©Åè+š Sç!ùÚ’ ¾äe§ßÃl8Ér€ÚײqtAÊr6¤Õ’+·i’±Øw"µW¼ˆ.ÅŠÙîÊÜŽ8UÛ`§‚D dÔ;ÎDMרr ކúÒ#¨MH¸IÉâÜÙô`<ôadA tžˆŠ6(OA±˜ÂMʹ*ÓaL<‘p:Í¿gÄk©’¯"ë egšÂ2|~KIáyôcýÖó Šïá”­Ú²F]ʸé¦&Q `°ŸŠPœ.¿š”À578iöO[‡§ÏœµžûàÐpÊ5LP~YÊg«H”uÕËa$»*ÆMIQÃ&jÂÐÌŒƒµ’“V…îjÄC òÇZïÕŸ‰·‡UûBïA²%öߋֆ(jM2œt„'T¡s­ÊNM¯†™@«‡'ÜÊö¹iÿ³ú7ܤn͵ýƒâ´A ‡‡*f¸×;o¸lMVéEL#1=ÚÇæ&¢zOsºqjºq*´!§§wb–ىيN>s»0›@ê¹ý9<å>Œ‹iYã~F§ì-êÔA]&îŸ<§jASµ´~ ,ä±ç‰n6j»!Jñ‘‹I?=õ’ò!÷ƒ³ÉÔ=gúµ­‰¼÷2Ä‘œÜ$¸ -â°Þx¾›d-jß îO÷9@9ôK9ÉH £±üù¾!Á!Å>°™b;œÏ­ù­š>/IÞäœÂ8„2Ä| #O_~HÜ“*\À‰›GãèK8!ɪ¿8{ÊEÕK„2ÏáÝ †®!FÀ›O^ ï(Ç®t„å‹=Óq*d‰G]Š- B‘&lž‚ 3Á2¼Ùl|-¢>,𬓯aY“lM‰ãþÃð}?†Ïðrèê‡tAÄ£åX‚…HòbcTo³vh´WH¥róEvk;%ºc1ʬÌâ;¦r9Iâ‹ ¬ =¡¬Ùd+ÈNKÊI±`e§Dgq‡H4ln ”o¥Ñ aŸ)£Ø+Z:P¸ÅD_IúãdÕ,p”Ïñ wÃBép/QT:"•qˆâK‰òvI‰{Lv ¸Z:I´Ó^Ä‘Ÿ•à  ¬ZŽKýn,Ta;s MXD’¸œw+çLòoôGË’ð…Ÿ X™Ï”9³Z4û°SùX*%¶¢úNÎ ™p7¥à_4}ç"´½³mçבÙÚq²nðZš<äZlö§?o¶³# ùxGhJƒç+Ó’)l :Á‹.ÌRƒç0F–òñÄaâ™ZHDL ¬-‚m$+Y™‹Ìðmõ¥•?EFDBµåF¬,þ¾Œ&¬§5#å1 é¬T¦aø”ʉֈTðF'²YÃ]Ìä’V肬¶Iô¡y'’¤:RôNÞñ3ÜÃv@;€™”}KB]þñûÄúµGe pñÁƒY*¹.‹i‡1,W½ìèq³Û㤪A ¤@O±ÄC*02ä>ÄwHöeÑ,U:Fa 3+cÕ]–•RÊÄŸi¶¬ãvËY{<¢ôú_"\ È^½ ÊuÛ>cúK+[Ž=4E ÒU2`[ù¾³`xô¤èi#Jn¿Î{^¶fBœ±³ Z“±…ý^mž ¹•pÌvÏÒd ˆX —d0íEƒe³÷.^CëM—“!ß2q`È^JåJCH¯ä 9ðé=ŠC02m2m #ÚWÖZ/¸*ЙÀ<;°µ0Á“’´&¢giüÖk´0,3%»Âû¼Òî4L¦3{×oÝf? ¢­ž¤þ–‚=8%'”8ÙÕ_ÿã8X]áÛ‹¬ŽÛ›ŠÿuöT$¸DwIí‘bíÖ óÿN©æ +Šÿ<Ù†“ÔM²¹q²Œ ÎÌ…ÿVÕvEô¯ ¢¯Ð1<äñÈÆÃ˜Ø´+%ûµR—…Bµ+]lwq=“\ݼ¦p{‡G”š……k$°ðž¶O{ÙOOþ¦RP)PÍÖ!s¸3ÉVéø 0;7ã øòVg<æÀŒTz*ÎÇD"%™È#êÞyËNìl»R \´[uC!Ix²éä'ämqN…-›L…Ke£›Yç¿ú% €úØ¿òÓ[Ýøà…#u;Ÿ›JV ²q>–2'ÎèN·5Ihèšx ¥Bà©”Èʬ9ò)°¢¡‰jŠ¤Ó Ǩ@½VéÀC¼ü;yÜÕd³ÎÙBºäQú Ú¾§/RëÈ:åî•”“ƒÁt>kLš$œÕKå4’òãgîزÏ„Ï'ÃØ!€„l¹”Ó)ls€vÓ'ãÆ%"L´èãâŠç¥¬á”VzÕí˜1Ъ¼žJÂuÌPàf†‰f=¾hK„+€©OKÖmÖʽ  ûµÖûzçø¨àb’.VgŽUü@bOlXë¬ÕDKjŠ«¥õ"H@3Ô,ˆ[;/åÒU¥å‚µfÐÝFÏ´hÃÍJ3 ²Fñ«[7™g¸<æãQzžo2VÿoÚþ’ÃRܪ}½0Vû”Û°ÙúµvÜ<ìÃßgƒ;.Ø7|»ézåæå"¡D4[±]êo:¬©¥µºÂ›dîêlã³ r»¥ K¬=¢P?)¹q!Ò„ÈèH8⟲zéгs¢ÌÞx1%jÑŽÏUÂeß~¶­T&ÍXë[z~€BÌS?žÁWMÁuǬ«¯ŒûN–ŠÞå×ºŽ™œèy˜hÁ‹K—ȯÕÅJ÷>Ez押À$"¿6:=@SÀ×V3g½>ðÚØ· ‡3ÎômHZ¥>æ‚õ§µaHàOsiÅ.›‘)šˆbõ Whà6üg>Â6[U¥mO(Îâjê£ ”ÒÎ’*N†ñE¼ÀöJù\Ž…Óå8[dqqÙø” ð³‡Õ6,çÑqû] ¬€Ÿ±$”ÞXˆ–H<®g‡Û#ÆûYŠ·^Õ[®ø ’Õç›ö:»ß•œ~Û'P~E‘!ݳè„Çûk¯ Ñ2¤Rû³¤,Ãñø:PÏ”£ˆ$Moƒ2Š$àJŠá霠cü³ãvë5ÖÝ ºSБ²é ÔI)’;£úºªÓ‘³†)³¼ßÛQÀfU Úå*«uuC×HUŸ¥F.¶Øÿ*ĦZ/L7³á£K“.¼ô†îó_æ4Ì1ÛRÜÐCë±A½M±É¢$‡j’Ï<òÁÖúJ‘g͸°0©lÚ9„Ûì¢ÇY‡‰ãÞ›NûìõÒ|°oÌ|º¼ø”Æ”f«—;ˆ?¸všî²š]1Sén6 öµzg;¿ÏfJ6Ÿ‘®5#ë&$k>ÔtÜz6Zriô9#T‰NGÅIt…ºÄ¤ô“<9Œ’…ï"kVÕ€u(™Q°Ž™·ªÙ¬“½4O±¦ƒù3ɲö¦¹© TuQm5ÞaNgdðkgÇ=瀼Ó®u|ƒœ[8÷—;ŠøÎýV—“Mº]vÓ{L«õ,p>°][”1Д©WI\¡ÔIž ! áÖ>v¶±%žÜIqIl¿Ý‚ó¦~úþu£g‡¿T[Ï‘‘Üt¿ßpÇrŒgìr#ŽrM£vŒlðÀˆiô Ö†¤ÎKÞÅÜè4°gâÁE;nƒÁ€dÊ'ÍÒ˜+ŽŠñ›A¿^Š!Â`¡ŒëyÅ µØÓebÍöE Ô<¹:-XÖç+n`›ÉC{Ó)àÙä: 4#ñ@©§´j.Sø‹Ÿõ )õ-›Æ;8'ã¡ÉJ—f¦yÇDm]qh%…ù/âÙØÄö¤¬²K6'á„¢†÷Ì 9¼“‰¿2v¯•Ö:T ]U›{g °Eû­ÚIC»‚Ü~Y_·4ãFã‰eù¸€åFFþ«ª2‘ÈÖðå9!áp{` K`6³‹å/ƒãF‹IÓwBeËCf¢µ#0¸Ýd\F—ƒÙ5 íaølO«í&“ð‚î}Áóì}ôΕB€nÏÜÃLjÛGä&° ç Ýò˜bPP¼ ¿÷¬œšIÉ™@™<#úÆCfUQÑÚĶ@@‹Id~ÓåðnïÎx,†³ÎgîLÁ•ÇüSUPu´¨ó~Æb =ârõn9Š(²8b“#Ÿb“QÅ«™óQÂM2™ÓÆÚünAÙWúñ0óíx:Ç®’(HYgJö*øs÷B?ú”·}ÜuúÍgnc î쉲m¯ÅêÒáOž6µá¦Ó™¾®0Çr»ò]Œ»ƒ×h9‡©¾È/3 2òPÝÁ¸ûj’%ñ€nÞSa½íœaèý‰öбqà,çsÎåË™w R~…(Óe0Gãv©GŸ| íQp|Bå;öhÉj×p’\E(ÖZN€9œrò±¥ètÚ 5Ѻdl©=·%Ñ&<_0é­–åïêŽÛwòwÞ"·Í¾Ÿl¿KýU±A¹‡Ú÷tpP ä%¥ŒVœìEåÀö6%®¢ñ5š$1O"ôŠ‚Én Œý`Å;u ܱñi–Ç?¼È˜L¸oü “á¯Îâô¶a'Õ{œ ]l£¶ÒíoaºìbvÒà`K{µÎ–g«N*2¿{bî§é•Êh³¤ì„¼Í(2гËî”U„|•ýtŒv $h}R-”ù;yRxÇY”ƒÅ÷ùåã‚ëE % <ùpŽ 1ÐWðÑFn¤Ù:jSKpÿcðDÍJkª 7K–’PÏËæµpd¼—–½0`Ø826¹&‰…Q ) ÍcØ\ò•àZ,B<] ;p8.h¡™’fÓý@Ï%Ì^ý¬úê}¯ÑµE³%3¶à~zaºL‘_í½2›OGdïnï•F? aÁŽvx“SžNT Úôb7¢µÒ;d£›q(Îåv!;ŽÜÎØ­r¨ãx¡ÛF±~iö2‘î¶ýÆlUœ*.o…žÜõ&*B)UyšòhÈ÷"":¬&!q —B VÏ÷QvœÌ¸©eæ}ý¬™1“G’ÉW,e͹i¥t7ÒM3nÙ¦¦ÝÉS÷fÝË››5÷^‘ƒ‚ŸšWؘ‹ÒÊWîƒ6¯6Z†7©‰°& cé½ï¸†KEe¡6KsÒîÆ©Ú.\y‰‡‹‹f¹.*Â|-ÙäçÁ~J73áÞÎÃ!y‰Žî¨~äJu†°-‡YY§gE«P§¬d ¢¤ý÷ñ‡PmQA،ثÚáa­WÃ{¨Ý±ÕÌ˜àÆ½$ Rq9ù<™^©bÉgéÆE7“ðeUˆ¤cÖôÜÐôÜK”tà÷ Ü¡tüv²lêá„ÃÌ*!î‘°ŒÜ1q6ÑwhåP ì¡Í¹§§ž¹G%4°ÆPT%ÍjñDªE«q«á=¾_wSìC¼Y'ý›¬ÈíZëõã@_œ£Ì+LHHÁï©®>fsÀÛ(!}%qæ Éñ·fŸ×oËô¦Ä=(mån}M íí&eg«síÏ»ººÊ{©ãÏà‰#銕¾›ß>¾„ÔM,PŒ{!Añs‡Qf‹*K¦íªLÁ;ÎmIåË­³›ˆ*’w™Îeqì÷ê¼çÝŠW$;—{Gºûƒßœ#¥áë³Ý¶s/ŠÜŠo)šMm1J ðíkðÎË))ÕÆ}% S>g½#–O9,tŒè£h®¯¬ Îw^úõÊî9_Ù[@ÓDD‚±óãd6¯#JUWP»ÌàuYÌ-9°1S†ùƒAÏ «¼Œ”26] ZÉî;Õd*1“TòiÇd:¡ë¦<ëY_å;¤À‡Ò´Uó¦N8‡YÖQ[.NZ'O—3¾yõ|ù·3'ó†¦B®MJÖ<Á1´r¦äXɨ:¤ªö$ÉA+7¥4š‰*ÑEñA=šM üQ_¬2µrPH­Ÿ óAÌr VjÓ£dP7ÑëF¤¡[ç.ôAöÞùAÖ.¼M‡0`ä÷é4~ŸŽ»û^ÏîÌiÓíÇ›á9GñóäÂß=À+/L;:Àš¢¶Dur­"*[}ÜAy¯œk¢*!€0¶ä8À€Ó‘{ìœÂ|+‚döhØÌèw‚@É™ E=Ôé¾mžÂ·õñ/wN>g­½j´œÎ9 œ ß:_N|Y0Ý Ëµº*‰¯ñ—<ñrü”ï<¶åëbªŸw=ʈºä‡&=iœ´;ï›cJ2YÊQeU#=ðàáÄ (¤ˆ=yÕl¡Ø÷~?‚ãM~—JŽØ(MtvîüQnì"”æÀ _z®Zd•cî„Ú]çžóÁ°fP ãŽÔbsP–Hʹƒ‚ånÀ'†,ÀÇ„%x•ïÓ‰Ô§¸ê|õ· £ÙÂzp`³È.ΣÑeøØådÞ'÷ ƒp›OKqÉ`¸?@w ý•Ã<9@ ˆõ‡É§A€Ãáñ‡ÄK„KGhðwª/=Ž.g‹kfõ¸lÏ[î¨S '‹ä®,ÁŸÜk'dÖà§E }JÈKèwJâz²ó$koµÓãæIáv÷Q é*BQÿǺ}wð )£€TÇr@X Q†ØOß8ù³ôÌkFyRëÕߨa:+³rœ~Þj iÿÔ‘6N{z¤r®©·ñn5Ò4Œ»4ét/ÇCŒŸÂ*m‘êgNÍ«Zým§qD ?ÚÔ„oÛÁeOW¿ÛÁŠéÙ°r½vÚ;ëh“G°6rÔìt{¯š½“Ú)ª4½¤ý¨¼DYºEo £÷þ´a`0­ÜÆ›ZW£{\뾩#åqIòæPꀃÇG AQñ kÿ¥ÖëÆ!T6túÐo{íâ†díófCDÓ'§½÷š¦ñ¹´1€fë¸ÑzÝ{ƒõ͵am_ƒz3LÎÒ Z§â  ôj¯ŽbB6¯ÍFæX7uê* ÂØS¥ÈU&ÓWçí\µ#ë__÷$¤Š½÷KÚ6ÊP$>? ò ¼&¡æ²B6 Tø1žN?ŸGŸbJ£º°URu¸îùÕ=’6.  ©i÷Ò9$óûˆNù<«®èEy±˜Ъkj7sø -²ëØ(<3±¨$«‚Ðú¹³ãˈL°<™8 öÁƒ yr"Ú}mµžê\@’;y‘;ŠÃ¤°}?e%Q¡žð>ƺ¿Â™Òÿ˜q´ ›VŠp‰æÿ Å.§h\¢aSÁÔì4'©T¤ÊlSgîÁùXu@.>FÖœ(ÇB,%0á§¡‚+§@Ò=µLoý°;V^n‰U°2˜*éÝ8Cæj»[m¡,~Xa%Ÿ“EXúÍj¾ÀM%¬à>xàe ÎCÉ/œN/Ìûw]êß»ÌIºNŸ3~(Òiin7«Z?ºáD» Kl(8ñé,éÒ‡²=6DWÇè \ ôõH_T»0Il)¶œ^]ûõú„ÒÿÔÅß/¬hÁçÑ''2‡HJk%4aÊtOH‰3›*_ã úUÛ‘¸ÂƒÁs÷²ìX#(Ýöv°mCÌ¥º÷òaúºÑ«-Ne¯dj™î»{Æéƒk¥®ÍÃ5÷[Êé@©w‚ÖÝãxä¸ÞA×®ã#>?Õñ$À 3^Zì÷ßëvE‹ -eöâÎŽËE…„²‹X>ŸQ«u^·O{Ív«‹[É—OÛ«ÜúÇǦ~Jœ¹¾~ã·^§f 8òOËÖOE]…u:«ŸJìÕëàŠÌƒÉHx:_ëuÓžXçñ÷®äuÜq @Œ—Ø<ò0±"ˆÐõx‹Õ˜œ¬A¡ìñ“ã µ…z¾ ¶ÕøµÑaq¬Ö›g+vœ®ÄȘòæüó=ªŸÞ¢GõÓ {¤ šy°¿y J) Ò}z‚ûõ ‡âf¯¸­°ôqz«Íßžmiµ•¢Ž>sxSÈ*ñÄ4³…µSÛg«ÍOrz¤ÊÙ=Ö´:í:…¬Ö½­·ÕÀß-œÒꇲm^$ÆŽ·÷Ióo5ÜäH0¬N©(Z\%=¹ùàe!ÕÃäYê¢=dÑÙÃ%Òj´y ®õ9ËDEšt ¬Ò~H`£’ç5ãOÏÇV°&])ïöôûï&çÀwßcÌ¢+3æaVô§Ò_¥ Ê*8ãpRJò½À$Õ;å¥:p@a¸*{ +{Í®Ïéͪ¢¹¥ïù)4#ßT>èuqhËš£é| UßQýXïØ¸ïëÍ~|tàÇG7Žsw³¾ß° 'v³6œ¥½is7i*»nÔ\ëìø&ÍAñ|ðŽÈ;3ˆ&–<·Ouµ°áˆ£º+÷G IOraœàÑ”S3§-jC¯½Š{äû6œ!ŠÐóBQÕ›‘åĵnã¸ÑíÊi®w>ms A³´u OUK&MYr;žvš-’õÙL¶–µó"ø}ûÞþ0¡²­dl€®ï-ãõ0÷Þ¤iƒþ%{¥¹¯f‘Y(` 8ÅèTL‹ñÓ÷œ¬û™ˆ#|´pĨlë.Í Qþ`FôO¼°Vä mÁ±PI¹í>sÄcœlšM¬èëó úø‰üH‡¸£  .*%2í¿iüÆPœ™·ò!þiÿ#*÷+Ëàùshòǧ¥R~nžÏûL¼„eƒ> ØÃ”f—ºà¥OÆFŽÚWÍCTPa;F§ShÖ· õQÀÓFç¸×è’=lÎòÃZ'ù$fkñSŸš¼v¬Ì3Íð¢c+LˆR‰B-0¡EÉx$Ì©æî”±ÔȾ)×.ûù—  µP\WŽ7‘«[îx7ï!Ž—óÐШ9)j)Õ NEYr¤/Bz9”x<"$×™1q“è2ehd­lAeÄrœ#gDÂáÝ 6E7åj ÐDZ5«GçźÅQR,3u ôU߈ «xÒ‘¿Î:8T\9+s«—UT§Iå‰+•þ¢lK(䜢Q~D`«O®?ȉþÙ „ñiÑœfç„Ða‰ÿøè\?M4cµàùÿøX&¨þ‘A°dø åûXÊ“úýAù„¼€Ä.=çÔè²Lx½¤(l–ÕŠ‘úú+E“›³ˆØ6*ö¿ÊâIVHßÇ×-ëŸ+p+›ñ6ÌétÆùHg×”]Ûc)ŸÖ'ÒT>ï'nšêá”Ï ÉL»Ì!Â|>2Ú½ØÅmt‰lÏÁÇHæ—1”2c)Ý/D‹Ç“éÜx Ú>}æý®·OI»$R!ñ™Ï}ñâf±ÃÉö_Ó¤„mñ`x#}cåEb:Úÿïh>-þh„ d Uøãhû±4”€Â¨¯¤Œrh¢('¥æÞPb’^¨yʰÈžÿE æíÃÎŽ=…]­Ó*,jÁ! Žé…øà¬ÈNPùè˃sB9©†Xp¥€_ÊÔÀw£sáØ­Pý´#¥-ÂøA8kMØ”Ï=ù(M Ú$x°ø{ á« ãÒ‚ni„;ÖÎòÈگ­)·ãu í’²PZw–¦³h±.„þTÊÁ«f«Öy¯'íCòÿ‚p·ÖN£‚­¢­³c˜á©xà‚û÷Kj.Ê=+,Hÿ‘A”Õ‰(uMМ¥/Ùá=•£‹`^𢲚¤íçÈ:Hâеå5[¥R¶ÔùŠ™,ç˜îÜÊ«Í7p¥ÝUI­Ç‘ôŨú‡ñŧPÍ«p>äô£’ pŽoTAºýÏ£ñ4’-¶1=C_g‰B‡ÉûLC8C8“¨ y`–jEBñ䎎KàozS¾£`J¢p5œLPXRŒ¾P’`©0uÆ<’^°Û›ÎÈÓ?²k §ß:PŽ wÃ+5C…@ÍÑùõ"Ú9¿ÞÁtìÖ%öß\ƒYp­Õ^¾„’÷÷K˜hµúøq9éõQkE…4•rà Íˆ8aëÑÍwÝ»9F8¶£|J›%ËwÀŹ|ß9§ ¿eFóH„Þ;᎗™¦wz‹ŠSSNmËÁ‡ŠGQŠ^jÜs‘M+%Î,!(ìÙ©E[=*yÜ®>Û€D±Ù¦PˆžQ(™l&<ýì¢ß€ý‚]:€õb]4à ³ÎR¸@YøDʤõò›á݉T‰åŠ4y(R¿œpl% Í…bÛïÑ p'e„fÅ®:pq¹ ²‰ü6õÄÚk–¬ÌéyЉÉ<–0x‡PéOG„à‰½åÒ‡Š›2ã$Á˜u’÷6@Äó$»›kòMBÃoÃkØí¡S¦ãßÜ…6åÒY§»f`V¼9ïʇە‡÷ü€÷8Vì™"ýU´î‰mGAóm÷3Zc9¸a—‘gÆÓÇïöÅêÙê^©Z&60[®I¬7ù5X6˜Å‰d#ŽcÍ@žÃ(ñ‘<Äñœ1,yð"0Þ)–zß?QVPðóxá`î([ŸÊ÷‡)¶ 6YUtoO¶öFÄ_KW²¨)Éï…¦YW•É(¾Ða¡[GÍ×}îr_ûÖšnôµù^H p­ÛU”>¯ÒŸôô&tÿ™4øÄÐx†¿)9d‰H¨tŒ¨yjŠSJï_IÂ})C”Û^rÆfÙu•AnÅþQó7E"•ÑÔ2Z'­d»_RÒ¿;eé°kèµ;“é 5¹Lö„r=­ü3C«`‹Š+õó¨¾yÚ+ƒÍYÛd©Wj¸—áIòLYþ[ª–5A=ꪮØ숾/ $ùDÙ;¦»†Gèü³<Ø8g×Ⱥœu猜öFi!uɧ¤ñb‚¯vv¦VF“ª ¨Áw V\XÍZ:àöQïo½¸Æ¾EÊßÛ¬A±nÿ|³HàÝ ~E/:P®†Žè#Ô)–µA@ „ƈ~+,ÊSØÿk- d@ÚB…³BÈ}¶¬fZÇ ­4¨NäËû” ]Hè°¸’™,ö S~™DØõÀ‰¹Jït‹ªKøÔQðšŽí@%‡èÑr<îóç=`Òìôa?$I]Õ*BÝ眀&„ÒŒï&p/Ìã™ævý‰ã#X8Šó¿ÚÀL!fúiûfj|ì5­”øœ§ÎGäðŠZe+ó)–“¡ä€u;¼\¸yk~¢`½:¨"'Ø‘ýÂ<ŠóD«#ªRÉ´e­wYé}úÎC'}ˆ‡3h‹.€퇣WX×RâÕ;Š9©4¥æ±«Œ¦LòQÜŽ—˜Áƒ²×‹7à–ÀQŠö†§ºŸNÒÅy¾ø ÿRyÍ0¿ j3ãö¯ùm.lb¼Ú‡þÌÖùIá\M.;bⱯ Œ9K„—ò—ÆF“ ‚—^o}ӰνFûh“CÚf«×èÔê½æ¯ éôÁi:ì¢ ¢Ê Z²0S‰Ë݃‚ñœõÿ ÷µ÷{™ëÖ’ HJ­ ‰èþŸ-稓Ã,Póé }W!‡Uq²%¥MSAY]ÒÙgb•BIªE'GJD9þ!Ĥ“páôZéô(ùDÃ=²t” ÜŒÝ;(0ÄÛ.pir$ï ãHîõS–æX'îqí5“;Š1Š~iK«+ge• 7SM™VQr¨ˆH[(J8 ˜3¡±ç™K¦xP'¬”¦|& ‰>݃¦Xâ.JPÓLoõ¢Žd*¶AŽ«¯Ò¶¡K½qª’-FûŒ³VR=׎*žû;çñ‚Ãá°J\.K(q]ˆ¾ÆËãZQ‚}TÐÌÄæ¢CÇöYTb‡ó\ãcó#妣LŸ*¼²Êêß Ñsª#¡IÌèsyjj=µë”óÚIàO½°äN<—ƒnšÄ_×6bmgg¡LߺÃþÚèô$¹™°ä¯ìi» ÷Ý|Ký•uó!ä­›š¶­"òª«8ÓÈnP[` â$ r ûˆíb`xR°ˆ·Ô¼šÎ‡úx ŠŸYþðÙX!éÆ4“€,‡¶IÒyí¡’±c5á~XÉ•žél°>T'ªq¡oðˆÅÿ T\ËS wÀÕSë\ðž‘§«}³˜^Dh„m|%WxÎä™–ðêÔ’îÄæÆ ˆíÿÿˆhä±á'~0BÇ1cÑœx«0)$p°ã3QÚ2'\½EǦð›ü:ªu{–C¦Õ5/äsàŠ-“ì“c>¸öipKŠ'*ôGNå]Iú ú)úŠã€£0ïÅ1[:Ù±ÿ} §N¢"¥ æYŽù PB8ÞâËp Ç(à®ØÂs‚GަŘ"£֬$Áp`]ŰBët£ŸmAgrÿ¦ñå•·©‚¹›Ái{æFYÌr0ž…ÉW±¯å|3sŸ#Semö ˜Í\I‰œ” k6CæÍ‘—QL«ñ©ôVPÜjÂ@Oøò\¢¿©˜m¼ÅˆÿÙÞF)ÿØJå—7£ü»ä åçbiu×®Cî–ц…¬ŒÆ¯°)™=‰ùꎂgü—0Q 0E¡ë3É&¤>[¨ï° 'ÈÉI¾ù{[ÜwE9»K28ªÍ¦9þ·Yô€?¦‡:(¹! Äb ‡æ‘±ITë× 6Ö‡ÏWå0giZò•"™ö—7¾_`($h|‡€Û÷ÛÎŒY£6s—ZžìK^¯¿²1;&uΛܼ©ýÓ)î‡n:Ê6&l×ú_޳èuÝö›\ß-ÓÝõþ{¯ÇÐ_Ê Ž”g1]ÎfѼh"ó ­§CýËÆ‰ÂÑ¿"ñÙ ¶÷àêõL¾×¶‘î9pT!ÖZ5†Y5ÔÞ²¿½PÐÔóçÁ#La?4~õ&RÃýÙBœ˜;ZJÚ\ß…‰§9VéqDºGÔqÍ¢ èaà yÊÚ"<&CYî郇OëpÝéó=u`Q{+©Gà­ðs?¢jÅA†m…i«XkÉõd~=P#ô+/ÛŽIðèˆÕxb³f¡ã1_Š'‘%w CýÙàYl¬“Å~sF™æ-!¾ñXqÈEÎù6##­ÌZg-R³eŸyÔn¤ÚýÈÍFªÙlç|ÊMð #$Î, 0…Ln,…¡ú’Q“»ÇöK–âÀek¶˜ë0:4­Q*xTeU"ìß±­ÑC1P„!ûLÙÞtjÜg«m`<ŽÛdÕí¦äïTXOÜG¡Â½ÅtŒÃùEäÒhüäŸÌVlJê.J#ôÅÅ›/Zò¢q„P3çŽö>ùÙþs{Õ8µ¶pÏ-å—ÛtFþͧj:,A@z*VO†ÍªÐÓaL½Õc÷±ÉŽæ… "3fñÇcüƳb—(R’5ÇgÜU²G¡c(ìTHÐê‚Éë0ˆEWdçéc®‰Þ#ÿǵuøE³D¤;»ºãÄhfÍP›0üIíÏ5Ù .¦‘Y¤Ñ@*M´LÕKôþj™Û¥|xfƒ¾ì/˜ (-Œ[jf•šå–ZX¥üsÌL Ëtú2;E+˜‰}rèŽé×ÎÁ¢{¤_Û§Xxd­%’·Å;'‚·Ra,à ¨ˆ´%«9@c¥I²±ŠÚÙàh/äFÌLß“%8hÐ|FC­ÏWÐ-)z+ŠQü@ŒÃÆI2~úîÍ‚6¸PŸÃéyi¸áÈò¦C ê¥%#º·=€eÌ„ÃãžtQe‰&,_w6(ËB¶–N7˜€“öa¿Û“¼%Š'ñ*ˆaR’R„myFõ£š +úgª@Qhu€ÁÈð*Œ’yÎZ?‡Å9_^\ @sx"£Ï¡¥k{C¸9c`ä‚y‡Ò®>9É…)^0VUž¬Jߤ7›ÈuSÊž| Þ7ÕàysFRGA‹,F6Rà ƃäønÂÇxÑ0´Ýdg]Ömzx¶åúì#Žà:±œG&:MªçÚcÌ™ÙÔy¿‚A€KÆÌ‚V43nÈ„®-ˆ›$ô·BñGìk9ÕŲôJï´º¾8q€MkÿXÁ_õ› d[t+‚ÛsöÜ^ò?Ð[ƒèLœ¤C ä|jNøšŸL/#64ˆÄãh´àн€RÂ*)`lïIvå*‚½?'|—I¿à  ØqŽøŠ E¼(¦J+ë>á‰ÅU¤ð ë?s«+A‚Ìj6f*(=·<ï—2dÕ¹þ h¸e§Š,6Väê/åý_eŸ1Xz©$Ðk#µ*ßR&Ó´ÒnÌ_Æ­siO[“ÍÍ‚X4Žû%kÒí2vúÊ1®GRdI¥û†Žgžtn³;²žÞ’fŽóåõ8*­?ÓãÄí-z49„tç1pØ,ƒé|ì˜ÝŸœðÛ®`ùÔA²m£ÎZÅΓ«79à%²KisçÀ]}&&1n †‹ë.Àk‹N‚OálF_áÂò;BQÃ`áML%4úYIB+– áÇçó¢Ù TGz— 3¢D YÎÑ…ªL„E\ωŠÙ)숒ÄÀÎr`ôK‹ÉÃø‚„´%2öã´mèÍ~ÁÌbøb‘R.FpÊS¨TFö&`9+õ 2(árËz 3´(LH¶Ý—éÈêÙgÄ®P#ƒÂ2U´îMâ!3HF<ŒúûHcR5KÈq^À‘#FG(Ò¨½†s©uvòªÑ¹ÀÅtÖ‡|Žˆ›Te`rÎ ¼,ÊîB•è4^r¢ÝD¬$º"÷R‡fÉ(byWb$¶ (añKŒ`Ú³*Ç‚—½ð†%˜XC´ÍÙHöFpáÙêm'\Zk/Q»3¦‡;ô´D|1L‚j.<<`ƒ)É$™F# ùªöÓîï“û÷ éÈ?·=Òá;ûº1˜Gá8‚¹’J>Þ×Hu'°E¿DFÐG¼ìRÆSL’‡Ï<*Ķ\qk¶L>míÂMXËëØÂ ¯Ä˵òWbOϺo¾©/;Pÿàðø¨äZ>ÝPbxL¦5µ†(ÇT'ìÏÀ6ÎÀön–îÂDr[Å,ÿŽrÕu}3AÍ:0Õu²2nÕY?« áûíúkÓ-˶}~mg``ÏZ’ÌúW/ uQK3[Çïoº(ù¾ÏräÃß|!VôÑ^‚Úl6Ž#q¯]èõÊó뻬„¸ºˆ÷€±}ˆ9±¹Q’ˆ8L»6K€õõ7ÀÞÿÖ¨ìö_ÓrfÙ’Õ1Ø?êv$d·†ãèƒw*›k1Õ A±NvbxdÉP"­ë–¸'±QÂVD²˜Ýó`‹5iVbá̸¦ÜßêÍûkt{râb…’jaì}­ìࣻ­Çá Æº¶k¿{×6è˜h${Uúí}µ”×VL …ŒÅ7›b…i·©Ã¸ä-@©íª¸_kéL¿ÖŽ_wš­CJ˜¿%T±þIím£Ò8‡£f«qho4ç¢`Ñ‹ò€=† ” ö¿Už|{XýX6.›"²'Vú;òë¡MFƒñ‚ * +q"¢IŽÏ)?ò!^θˆp£ËdŽbn¹˜ÉBu©/ñÂð–Å5ѹ‘ƒœ†°–’“¾©u‚ûz¼J^mJP|ó^ÛtþrÖzÛoA7±0…¤@ŽöŒxCg%üR½0"ôÔ€­”r~›¹€¼ 7th/Ø_ƒúYõÕû^£›z…>Kz‘5ÛÎè6!À”ìoD¾YÈp-Y)HÐÁ²f@„}è<.AiÕ žz€¢~_rïáÑ·z3ËZe óSyÅÛX²_Ó¨¿µ9™µð튄EbÌ Óñ(œ‡^< nÇŠG‘‘ãéy?JaFvC½Ãäý‹µÐÞ{o»ôW`ÿTþÙÕ5äZ`2tÞ»c7ž*E~]²Ö‘ß=›Â`Ój¸èBäDŒ\=ãÇ“A²l ó‹)P[µæ@ý›Ý7¶¸«Ö+‰fpþ.¦óü%3E2é‡ &t‘Ü…Ð%þ9kaƱñr˜}ß1fi©ØQrê%˜˜Ãp„ìÞä…z€#v<½RB4÷ÔHo®MôE/4oo§„T|4’f9ZíZ½ÞèvÇ<0gÂL@»}}¿TPꀵµ]b…÷ÞØ˜3ü[£Óî÷“f«·^:ãM„%ÒdßÒ(÷<Ò{•®F¥SU]†£M«k,,7JjB¢Õšºï”}ª-ÝS'NÙ~¦PZ{¦tÃeJq†egþSs›¥;[«;±<ˆ¸ó‰I.èxÿšÐ̨Yqw•á vÄl¶µ)òþªöã³ì(~mroQž\f¡¬´ñÀ®µ6ÙÒø`ô³rša(§F“£ðÉ5"àeÈe¯È«À8ºd:·üôSÐk¶%>~„îwwiR²Xâ–ù+Þ(DFB7*­ÎtÞäÇáºe ‰ÓH†ÔÌQä"®vÿ"úÊBæ+Šƒ¶ªä4%1„ 4‚íï§x+¸ ÏÇ×X+ù4]އª5Ë ¨ð'u+¼œ†“ݨ).Mäħlƒ¹-›i\GîsãU+çµã2ÐdõGEÚübÙçÊÑ<вñ[a´{:Y8ntÅùÞ¨¨×z:&ÒêçÖ-ˆ½Mv<²× UêˉIñk+¼UJ…JvßìW×:…ÖUÄÑ!=;úh±¨"v¨ïÁ‰ŠÃ„s ɽ˜%qªc_$P±âPGhû‡EÉTIé-0R¬ø ØŒ¼±JÎçáD[¸á…|™PoMž ƽ_È/Ã9Ê Ébn‡¥‰Æ dŒ@²CZni–òÂR-¬?´szñ€’w¶ËèÕz!¥!­—RÈä”q3ÙÍã¡•ÇÀd×`þ¯—Øç_Õ‚ºjè1‡§Ì‰ÖÈ^šXB …ç€kó‰Ä±d;ÍQà[þŸB̼ ³MX¢ˆ«ÖD‹!¥–ù³îzRg³ù(,²•^¶9T.Èå ÛQ¹‹£P—Ð9*,)+tLUfV(b|£è`†c;ºJ¸ÂB²à»qH)×m#€åºâ³ n©áD [rx6Ž©”à>Ï3\ ±‘ømn˜ÐfUìý°:ê¿©p9hÎC@ŸÙ&Ô 1«: +yÝ`£´‹Î#¶ðK¼ä’~–ï[Ž˜ó†&~© §{–ÅÄ‹àÕ¹<5 ±:{q¾;û¯-L´N®ôHH$0ù ˜Á[Î –8’\½¨À…;6é/ÂÏ*‰m:@9IE&W(Êp ‘·8<,j&:;[#bÖE%-n‘%ûæ® †(P*õ}s³ö°Yúd ÷î.†ÔÖ£°¥‡vÿ=ÅM“ö,¦ 2ó`7š&hØtãÀ×[Ù‘úÞÉ/ Nõïíï>Áù=€³:‚á MNb±²GŸà§ ~Ü®¿íb’U QõRp?(§Ës¸˜ÖKPŽ××"15‰@©4€’›©ËÇúÇ[n–$‘I_ÂRÝjáï²è‹]3Zdµº¬Œì–DV0ùÉ‚Éì®Ò—*jçð¶˜H\¸²atŠE_ƯÅÕj&hï¼ðJ¥6ÑÑŒo®šT?Ò!ä¡ê!Eˆï£ø¬tì‡ÿ#û5gŸæuµÙêãô›u[%å®…e úƒ7½Ê2 ŽjkÖ#ØètÚà k§ý£Zó¸qXºôO4%³…ð@ÆÌy(ÊMè¨OÅ{Ã’—ÖÇYÖÍ5 :dQ8[Z©`‰(ÑÞ0/à.€ì\6$ï¢ ¯Äƒ8’Tsnë€J“¨ÎlÔásœ?ʇ'Çp[À$†KÒY“µš>¬6g–S2¥ïÎ-kn¶Ž1GpÌVÄǹÙé9vÉV.¶TDèsY.\‰Äw1qÁóÈÐW£B¸š•W³©¨ïBÅGÙìbZ©ë¶Õ»!©Hi?kU°Eãœðˆbþiè^&!¢ØFÙÉB•‘–ËeØùaÉá5ø:¿ŽÝ°6ßZ–ã®™K7cnÀܪþSù ¬£ÇÓÞ)ÝŽÆhýøÞ©)yá÷R鵬óòÚz™ÜnfJ‹Íf‘ &^¯ì>QŒ¿,Ñ/u£½QþK)”rR•âÇ Žä&§fÑBÔ&Ñ¿jj=óh¬]Å<âçŽ ¤¬VSx—­YÐ"—²sâC—bètRÚïËÔùKþCþU´a k{÷sa3†tKhÒeóš­605íÎûÛO¬æ5ím~+~S&i³y·ÿÕŽ/dšõ‰¢n>©es™’f«ÐÆJÜ'ú:!¯¼m¡ëö&6”'3_0¥c§ p¿çñðŽÛ"6=MS6FCNØ÷`Ž>‚ŸãÙLòM[ÉŠhÂ&;dãNÐüÜ­¬$Bß°õ¼}ý¤h‹†0QÞܳ×÷ÞÐVɲ‡›Ï €WrZ1ÙVç´&6c¶=› ¸³Ä—x ɯIN û®¬#ÝŒãA| Ç#b·?Í)EkÈv·ƒ_+OŒ)±Ýè«%ÑàIÚ|~ `WЂ©YrHnš¬0)¸v¨GÒÌ]+W‹­•½´Ž¿¤´91nïh>ˆI1„êSÒ«"HJ¬^¦ 7 $ä”4YÉÝÅE'mŽ:±£8ä‘ÝIcHšŸãç¾­<)df«0&‘’9tb‚ÑÒ‘íX@þÝ„,Ã/t4†'‡‹¡[ <ø%Ð  ü;òYE|±è šOçÃâßË\Í"l7Ì ò·´ jXË »!™Ñš•ðÊ`ùbfn„DY‘bcRŽCØ%6ëY¨%GÇTþžø{À&º†0<_AJWVù³!…í7&—Îkâ›f÷%´i`J©O†¼ps–™Û®l¡’åz'¡/T7)¶c³&•:KVTÚƒEeÿÌIÓªT£áÐ"›d6Õ£ÍbÜü`S7j¾€ìZØlž—i´ž‘¯®?Jo5Këœ eÊ™i{’e}ø.ÀkGcÍ„J0ýíùÎη- n¿«Ò»—ôŽJÁלÑ?·GäÏÃÊ~ßj’(=eÎ,ñD¬v§±QÃÆí‚pzAèI ¹Ä ÷Ldïh‹‡ô©Uzoâöè¦Äiެ´ƒ¬®åŽ•ÅÌó.’:ÔY¿áÖí`Á8+Z ÆÊm5DÂ9Êy5ÐÓ¦ƒPÍh2@·¨Qðûi9ø}V&äï¿)çcìÉå,¿AlœöÞ7Oš='z’2ȇ¯÷N’=¹ ˜ã–š>bº ´ORÁT|ÃWC 'ÄZýD¸\žUA÷ÇÊäø Ã«x2/‡”£ ˆ”8×IÔÎþ¸„ë*ƒµ*N ©ƒÉàdùYÕ‰7—H7Ô%+âU€’,Ç×%]¹Pþ¡UöC)#“‡®ðmV ôËX´ÔÖ”+=yd?‚ù"8k¶z«¬8j7‚û lôa_¨.”ov4q{CÛ€–¬‚„×›Äý_® ©üRÉ;9R8)¸µ^žÙS¹fŸ6£CY3c4Ññ `ÙE³É „šC’1[¹†)B¦jŒ´%5»ohÓ‰Ò`d†™í çDY?ñPÙM™þì¼D· 8¹ˆŒÙÏ NŒMׂ¦ókz¦í—²@8q€²‹ô%¾Üžë>ÔšÂý€{qWâÎ<åÍ ‡‰íT´zZ)1óŠyÍGÛx¸â\Þ›­ú<èC–ŸÙ¦à<8 Þn}±+Bü]Dlböq îJŒ0e‡$ù†1Gbª$1|“(œëVˆ·Á޳x øYY6ì EúÀIuzýλ.‘¦Ÿ*{ÕGF5…ý«éü3åþô5­ÞKÖVß/‰ÖaÐÃæI£Õm¶[÷ʼn¥1%·š¹hˆ™ó,鵞Í;âáÐC¦gE–0u4‰&©è¥f«t )u*e¦ÄÖºzhû…J`6‡]Ê8ÛÝ.þ4dÊÈVª ){®íçî5Æÿ¤ÚCcÒämžTgþ5ÑShö“s®i—|Ó¿æ¬õÍ\‹x|þì}Ýg“½eéþÕõµt#´p„ƒšdJ÷¦uÏD‚§n÷HMæÌ-ÄäyL,ÝsLüoÏPGl ˜€Î Õ&&€óâÿ;$ÆoÏøõƒÍ`FKñ€N៪PêÞ¯º”ÒÆ—Nè©ÀE”ýÒë KŸjÖœì/ê ß–¼-ŸbK)ª.ÏæÌn2IØ’ØN<¬´ú˜äxDùlRGSÑ8“3úÂ=W|¨œZÇP¼tmCjJ¥²aI$zÛy„äw $IÀˆõ$áA@Y”#ðEh›îAêx½˜h=„² –UñJrd„&<‹-ˆ½Œì´”ë¹ÔB"=·‹õZ‡Û‘UX‡ÇªS icÎv›¶XèÏI ÌÙ"óÆécö‚·† e×D\dTT~uꞬ9ö;_'»˜5;^,‘fô%ÄþÜú:Yçk]w„ÒM¢C–ÒΛ§Š«q¼»P7[`îT\ɉ—V춸…¢ÕˆYLçz³)‰P¾²ôÈ)úfŽŠ°?[Ì™œð;|æ^æ•áÞ¿¨¥‡ÒWsZô§@—àÈŸ÷¡³x`‘Ãá}ÕuS»Ž£±XRÜ"öÔòu&(ï ýTôóÞŸ:âò¨ÀÂf/øÒ¯Dxú讌Ãl¼o6ŽQˆŸÞ2÷ªC´® ÚÐI'æ€÷ë÷-RÁPw^âLˆÖ€~Cçü[•˜2þ¬ì>¨|,ÑÒ @eØTäÁZhÜìÁÛ¡«–Ìêï[A+ºÚx”ÌoKfÈÄêˆû|Õˆ„e0§)kˆé>øã¤¥}Æ‹ï®â€Å@Yø›,¦3u«Vø¹SQ†K …”gO–*¹ÛkŸž6·Ä K³÷àsœêÁƒ›õàmÓîAaÃz¿‹JZ¨2µý½Ir’O—ÿµ$9ѤªàÓeâòÈ©âM(PwŒ)ÏH^<›ˆv…«x¸ø””E0B±û€Ð —œT›==ì„·ì)bǪ…ú>Ùg ?Æ€Lk@T¡¾Z!÷¦–Í_lpd÷ÂÄß_YšeÁc;Ä‹ë¾Ó”Úàx­Mè xçEÞq„É`—üsI Zj]Ç+@«»É¸æôe¥ë\`‡„'½ÙbëœgIFû2\pºNê êê—Ã{:¤E,\ü,2ÜŠ¬úägk_‹ F½GmM´ñdôêÆ!»P;Æß0{aÎ ÚŠ²]YFHÞé°¬†&Žúa³¡è=È ®Cpâà »+K*.n{yq Á€Ic¡y¨#¸|íË.¯ê€}³MRë]¹©<¦›a~ï£^ÛàBKg?ÒÙFSÏkˆ×$aAÝîôäØ`E$QA:(|“ÃO}<Ë8çØAÊŽPuNHÒUJÆËX!Åu=•È%žqCLfDŠýð}¯0œœá·¡ì©Ýqú¨’‹`îV·Þc·¼RkY¹£e׌¶Ðôíd8^Õ» Æ’AÏ ô*ÔMi¡¥iÈ/q,ÇÏ·)»uþê¶ÝìÖwârJÌFç™…ÒÍqxö°WŠcà®0lÐæ4Ú7Âc…awÇ Üʆïð}ÛzØÕsfÆ_[djؽ),½“ÜèrÍjM£,;"›F­…¾xç( “©†Iv³¿/”Î{`@¹EÕ¹ BмZ­Þ¹sïÁŽ …Có-Š”Äp6ïíp{q“™É\ÈŠ{à‘h0G)Ææàt™ËÛ"P&•a>ˆ¸‡€ŽÝ áD?- ަ=6ØäઙL é¿ÑlZLD.Ã÷¤äN£K4“ܦr a€ èÒÕsäu™ý÷w„á~Ù½¤æÌ(ö‰Ü ŒˆÛ½î©R^Á¬õ^_“nàÕ}ìÒ¦‘€¼R]}`¯¾ÇŒ ‹-6Ì„‰£ñ´î\Y[×z(0ºg¤Ó³”²ÙáG®R†¥ku‹g@oÐÛ[÷¼{›ôr™¦"%Ác+¬ž$±uomÚÝ~x“ú¬\b¡$u9!:Hñ¦†a\"Ê/9øp”žy6góƒÅÐTì20*²5 üFSXf€tL×¶ç媋OQË ŽÕK^Ý,Ÿói•É«Ëê`ìx¤[fŸiI{ôáQAu£Æ˜sV\äÎGªJfŸ€1öÝ%ày7{Ð*eƒ Œ"$ìQÇòHèzï ˆàä³Ä¤Óçj€TIÕš´˜ÌŠøiMUº¢};ñ¿†3×F¡†5²e7˜â ¤~"Ø1¢T¾åðnõáêýGﮓ€­çd*ÂòÑiÒ’zš$h Zîê±ËTå&A¬Tì¯ËîO2w_Yš›÷^ÉÓJ|éÙèú©l7—¯p!»"JfQž‰ÑÀô[ë' zV•ð·§•êNkï(^¸n}œ¡ŸPÓ2«Ô7r$¢¡æ!éÆF¤&ÙMóxS’â|݉`HCÏ…V©ÈÈuSiýHN’üg¨Dì=N£^Rw”Búƒ%‹ìÞ %¥J£÷ûh€Hí>šB{£”Ü¥”ý!Î’pÁCÌCOT3"µ;îZWWRZÄO}*ÚÛB›#JîTé9i§dát£ª ýуô•ínø5)}”?{A—õö¹‰ Î|$%P6óZ†4ã*³ê6cob-²çcM²•KÞª6ì”ÆË•¦±¹PЍ ¹Îw4ñöàØÎ…¬²¼Ò®Çଯ¬¬d‡ßšïò›×Ó 2Þ(ëwŠóY¬pê ØH …ð( ”KÑP ™2PB‹ØÇ•™Æ^@çKY °WTh7ÙtTƒÆG¡Þï?X'Q¨­Íwõ”¤f“#ã¢dB'¤Õ&Þvjlò®|ëbB¥¡Š³³Wº¶±Æ)*õïëZâ4m5f[xQË›ö¶£Q[ì‚Ãl‰@@6 „=%OÒéLÚ¹m}40uï GÒú92^ŎCÔ:ËGÅgy©¥etJ®!({êžÈÐ Œ¬ó1öhf9™¯]…ý‹ïäa§ÏLJ&Þ[v4áÂt‘ÜŸ,ôbhV€üxÙñwcÙq¥íÌû»€ä^eqáì 0FsƒÔñ¡ÌàˆƒÌ!lã˜ós~ŸlÎ/ŽF¯Õ¯”"¾!LÜ»ÑLÜEÅ7‡KM•SqÒ£<Q9ÀÑšh¡-“Ù°ÉÎv›Ø×h¶aKßä,ƒ7Zãí–T0à §IÔYr%û¬®ª®0 ‡%‘þKæwðD÷iü5œÚ¦Ú ¯Ç ¥BBÁ)¶4Èà°róÊêëÕÔÉ«†ÇxÏêJ@’F›Š[w…A‡n×PÉh8;ËYL\ëÕo±¡(J©¢°ÂD! ?lµøq ½„¥‹ÏÊË×ñÞa³’¥N(ŒEÏZ‚—æƒWöiøn–ÇÇ}gº²QÐÄ€F{cZÿÛú¢2>BÆ'6иЏúcí½ug”üvu_#;ë›P/]{¡Á⎡›«Ù×ïÕop?íñ®¨¼H§×Äö~¯!}wÙl%î-èFœ8­a‘™¿Rû ç†ß ¯0l^+´S°¤ zhš†HƒV¶Êºwö÷HR­i/ãË#ûÇ£˜>9§‚’pi9M%h¦A©Ýg¤æ‰]ÅtÏsŽëy“#ÂÄÉã Íâîr˜q) uSN¼¡5N£]O¾¤dYC¡ÂWoÄÅ”VËÞÀökèñ‰۔Ö{¶RaqÞÐÊ$W²C~8¨ÁȪ¦®Œ4vN\s©´ðuo¬¬ÌCJ.Ñ <­q,ü Aëtœòü´ƒ* N>L³IJójå¤:f$ø`=GD694ȬÈ-Hö“èßN±içjò7):‡F æ„gagâøÛ †FðvK¨vý‚¸:&T"MøHН"n”’$ Oºh€›«vr)­òäe"É@.:ü˜mŠ éÈ®7¬ â¿> €êvoÈÁDÆ1¹|pdE2>Tá‰hŒó€í+ߺ¾º³gcg¨°P}”Œ!)CqÝ>é8šÓbWFz£Ždû˜j˜jd¯Ý´¿ ¥°…€0[ ¹Ñxæ—-èäYËÖL‹4Ü<2Åô™aÚYÄUF;IÛ´ÉÏšIjê=«Ù4¥'dIH…ºÙ! Ñì0¿_¨;!tI]±ŽðçKVu;í6úèvÑyˆÙ΢o¶HƒŒõ¿l73^§ÜL…×&Cå¾'_¬…L ÔMâ`ÞqwÃÀ’ùÁ³³O̲o> |; {éûk¡ùJåð ɪp ÌL©’ÝwCøìÆ¡x÷ÞÚþöΖ«¤ 5Xž=LG”GqlGY ÚÚc•Ràh1ûôü54Æç‹’B¹l]´(żk\"¶/2PWŸ©«ä(QT ÉýŸ0³hB’h:ÌS[lZ”É•ìg.Ãuº³qNîmoŸ9¨«’å£g-fž~R‡½Å!tÞ¾kÖ^j†“~~¬ò¸¦=~™ŽIά|.Žå MIÇ\ ÈC5ÎF3;>t6l9d^3ËEM &WÜF_r72nð[Õ»ÌÐ ]Z¦œƒ˜ìJ@]Æ…s Ò»%í ¥aïáØlµr¨vfÊ""e†'ÄÖ2OvˆÉØfFlŠäq€GXqZ;é ˜'¤¶µáò2RöÚðÅKéž5T§>Ê.ÉeYúí®çæ¯!of¤BOb¾¯ïÂ'¶%ÃÏ¿0Ãohã ¸F1®ÓAîrðšð9ˆÑÓšíz´|~G¹â>8½Ûr¾ÕÂIÇ8[ÚðÇ®tý¤ôE˜Ë'tŠ¡ìí`¢Â"¢m?¸ÿÞÖÎþ«wÞÝÚØ\Ãa€ílp¶Í’4›¨¢ˆN8ÈvÀÀæ{OÍ84,[Z}Y|âßüþÝê{ëûw×ïeX[¿µ±¹¾&²L‹âȰ:׳ jUEÛTd”F°¦0®Ž:­¦— ÝÀþ*’µ[tÑ G.@:ÌÀI¨¡1óÂÙ&ò²xüЇÌx;/ù„Å·º™êg6™Æ/3Ç%†…F WØâì1Œ!iȆª)–Ÿk+àñ€ÈÂÕ*^¼ç1©Ty5vçÈ5£Éã™’îɦM¢¾¯z]à‰]”•š>>q0Éʳ«wšr:Rk´%ݹ!íN5cœ~Þ`ÂÈ}TE¥ùnUØ9:]ˆЇ­~¶è9»E¦ßgqI0ëLE¢aøXÊi÷°‹ö9ÎÕrÙZ—€åV} 5l3 GzyÍsf'}Ér“ÆDn0 t W+Îç¨Àr)W·È-VÁ’\5»3iÃÈJ1÷DÓXÂT";Ÿå#,K'7]T…ò_·XÂûßâHµÜÃ,d5ê ó$ãÅË¢¸º¾¿yos]¨îÑÜk Êd2Å"CN;rÀ–UqGÖÕ½«HÖÝùRp´µ:tÀÆ[”¡&Ú.&"ó^}qõŒ.e…ßF€Àu jµÝ<<{ªõ É–&Î[ã ú–ƒèâ9%ÕxÚ=vÂZo—K÷¾¸¾uëν²-K?[Í·˜y¦…Ðït´:MO®4U‚ûBнŒ÷’ èž_žÏ/½xÞ{?)QMFÙr¹sx~ŒÆ¶È{í¡A;bndGñà˜².lby±ö‘–S?Ý#·ö‚¡áÙ—`0pÂy9)×µÍ:3š Zýh³:úÀ‹É¢¨á¤f)ó-vms+ˉÏGÜýiI’€{’C‰ûa9\*È™fÉU+vö¥ŸT˯‹Ì3/þzú½š¨Í¹Ø%Yikh¥| ´ÚÔeZÖJŒ™O݉Eçr„î›}bÄ Äí2?øhÚ-gšg ˆœ—×WZ}õEòR‚ûEB9?”L [ ¹s¦Ë¸ ÕW52Âͮ 0xw½Ç…­5;Üfqóïïy < mx"εÚUdS}§¡þáFÝâ×ÉBYÊÊ]°Y¨®tU"*˜ÉÊ… —ð[¸ès¼„Úߨ¼ÿ@¸›Êø„\]ù*ç½Æêúx°ÆêÚµèÀiŽkãEñ % ˜¹¬YÀrvOEµ‹ÄB ÄLWkÆÕÁ躌®»Ñéî¡ê5º!‹¢Í&“(Àëd‹ìÏõ¯2›b×ÈfWqÜÛM£×ägs=³ -9ácg±Àå±’´,°ÉšÕ€Xtu}{õªâ%”Œ| ò× ÜD p½w`¶sE–gZ;"VñjͼÊrqÅ‹£gµNØ„”»ë²<~ÔsضÎÅœ)17,ª¸“"7Þddˆ ê¡$”£“¥<ÂzÊ–ÑvXtOF÷¢û2ºýLF?s£•øÆÓ[Q¾•ä[ùjEI;+ÃçäÛ¼|[iµÜ"½á!¸ÀÞÔJœ,QþqS»zM2‡XÕð×€Š3æ1‡IùŒ“èæv¿è¦õþíõ‡8qyÛ”í´Q­|,ó Ô ߪ~À â§Ã[ŘYÚ‚· Êé?)‘TŒŸPƒ1Ú´a9„ä:?¤bX¸¡MM¡Õ;+³ågAøevIºsR–ÞÊ{Z·äœ*…s|ø„q}.õ#t#%óu]ßÓsjú4½è6Ø¢ÅÉ;Âôn%R14^Å £Å?•¦{Þ\Qyj*2öUÖíeÄðÊI!‡Âh#‰‡£ˆ‘kÇ–Ž­&ä‰ð§ìÔŒ(]Ÿ ‹9Ì.¨Õç*â ¹X9t:‡²Úèqæ=ó€ëeÞ—¸i63ÆeØ Ú!uýt× ›ÛªeËÀ¶X¨ ¥¶LQЧÏAµL4d‡+ TãÞ6LÝgV¯c»Â=,™gú Ýùs#v¶ÀtBD_?ß,‘®›Ì¡FESjµ!îA_’E犷³gb@2dÄÕµáfZ‡Gý¼¾ú;•š©¦òØITG¨o:çq>ö;¸Gí1’“Cà.ìe"Æä(ЮIAƒçìðÂçlˆÅAä†RîÅKqT'œó’\ŽØúIŸ®M®I¾œíepø}6ps…ØØÝ6ùô Æ•ôýåF°[N‡ˆõ^$ˆ»­m`áßê‘XÕc9¨z–"~‡þ«J4Ñ$Ÿ–ÖR½£Ñ]À•©‡öjÄÈó ¼Øq×Uû(ƒ0Q°LŒQ’ S' 0pÑ”}(;†W'œ£”Ô·‘ínöŽ/LMLkef<Úƒ¼îny/x‚ç9­daÛ±‘¾Ò¹æ@ž¼áÙlEËòŒ¿×³;*Ç1pO±GŒóžÉËáðúòÊÐrõ’X6{Óãl1b ¸Ê{qËjrbè= t Œ`7ÖGù^ÊŽRï‘)Ë&tU€¶xéŠÛûfÆ ¬LÜn-îݳžKå2-’p㛌.»¥UÏ”aµxµÂ/º¢ì޼§à'Ž<ßwXáÃiy`îJ˜»xÖßë4 Óñ¸»û.õè]Œ‰ˆóöQO7!Âlú¯×p+)7héŽÕ–B±é±YMk’c´ìA;dwŸ®îlØÎvmë9´€³ÌUµ‰Zíí×Ãj¤h€8"øý3†ÎP:I‘¡­XÆ—q«£ÿ—°›Az¾fvqÜ#wq ¡Ù¯cƒfq' ÊÌ Çþ­¦Ì"Ïò­8”(¹I¹åãâŽÉ½\J#&Â©ŠœÒ ©Eá’8½ ¦@I ÿí'nãð(ip¶^\•F^âíáK€~¬ªŽkq-v×O1\M/Ï›y_§d'{›~º¥îö:uw‚f|™Q±ã’z¯û\ÌN‘£ÉHHXÐS]‘ù3#IÈ[8`Ïù1ˆ43 ‡n1\ñ72Ûc¦~]‘6I*‚0ŸzR¹nÖÆ’8€ ?Ù`½–±ÑŽ>0z(0UQfk4&bš_¾=$VÏ9¢9ÓúH é°æ0¬|"<ÿ‘¼!O­ËL[[OÙÈdœ.S†¥¾#¡Jàø4 ;ƒÃC@ Up)O ¯´“L>‡€í„½%eàNln îA…½u®'Ñ¥@6‹"¯L0ða”ØÞ7žTçSÑŠè©2:…,ÔE͘T£82qâ¦K*¢J¢àB è“H¬G)“¨ "4Ib6ª±´®04±"Ð NúD5”CË!y¨ÐÙQæ%îd"‘ܱnSæ GOÃÏ>¥¶ pæõà5®)ׂr)f1ˆÛ. UE"¹U¨dH?¢ „Z#®Ü=…‘³:²¿ƒÊ%(„ÄzÀÈËQº ­¬'¿"º@„: Šh2 ¤¨‡i´ H€o—,[8³é1e6fß_у=Dzõƒa—ì2‰¯".å¿Üý•+»ÚE/t}HwfM+¾/â~uçáþZugšk¨(rþºj¼•o'Q_Ï*¢Ú/P|maµa§d:ªÆ°4SëV,Fâü?‡‹·±B³ÄuÛ(¬ÍJ!c\äÛƒþ€<šÃFkààò¤ °ŠVðM‡ü@8Œm w„Ì{;—¶ÇÀ¶ä]sDO™^ûS4»Íô#d!RùO¤Y3yð™\“D ¿iAqCm÷)Ù”·äF0.-2ýRcª¨{X´‰.³ÈLÐß»BC0vM\Î*цÈSûFA Ý‹¼iqn¸‚½® Dp"mÖ'Àê½Íõ‡;zÀÔsjA5©ð!}2v³ïñÁ dÄ´ZBÑ&°Q¾ý&´Þ1_ \-"î?o[­ºšoÚž¨•ªµƒ5«àÈçvBé‹"†Š1™”°aÛa}I^ÐÖ×tE•f” ÖJ¸†rÔ8®»™ÐÔ Šä3aàbÛàïª4-˜a[䑤Զ³øPÀèµ[Õ4ö` ™O:ùÕT^=é€/d&ÛëÕû·¶ªw×·™oå ¬Í‘itzhøŒÄê¼.Ô#DŸ£)))HS±E&*ì¾aI…/º!¦ŠPëq’Èuð*Rr,Ìt„-5˜™™s…ËH»ë®’,ij¢ç Ël²mÆÃ?^ߺ·¿³¾uwc³º³¾Æn«‘=@µû’s“# _¡ç3™»Ž’Üwý Ñ|.èð»n<ÿ6š¤c*S2ùúLÃõ‘A|f´{è šÆ½4¢Á rðœ#aÝây6àG&æ¤yš„ÜISe`Óå=34â­ÏÀVr`œ=ìÎS’]†¸Ó˜¢Ì›/ž±@<â&'pC?G+ŒhìŸHÀs@$«Sroýèæ&•Fð•™„uÐÛ¡BÐÕ›)êÌ'zòÛf» ¡ÈqzDfsL•n 6‡ÓîÈA7"• ‚êJ›÷ª««ëÛÛá’´jAŠé¸dѹPÃx]ª¢‡ûϓ޷ԴöºƒåÂlUq¸qºfsð3â“¢æC·Ó\"Gâ0:­Î Kv%ýBB…\HIv] V¬8u¾ë¦Ôâ^i»DZpy®Â¹Õ¼Y6=—<™¾Õ¦ë 1£ »q¢ÀFém^Ûî´MÄx¼ƒû Ü÷…¸÷{Ç]Þ¢uU·¹²#÷b–ÃD®¿æ?*ÅU¡(•2«X›“ò…%ç§¥ÜK©–RW”$¤Ù¹øªzº¨m­¿ËÜ™K”…N|¿A‡Í{;+÷„…Q8¶½ ²e==”»÷wEÃÁX׈/ Ãšì;h%­6{„¸ºáÃlšwÐ4¯š4 Ð(¦B7àZiXN2B* õoª’W +Æ6“*œ¡}åÛM¯UTÅî¨$냺¦ÔcÀùõp?|ÝAßÉ2™œpO‡Z †:˜b•¸Iá]nËŸ˜3Ö‘Gõ=M$SÂEQT~$áÔw¥5­}xC ÷ í"£VÞ9¨Î¢ŠøŒÉÆæ30ëÒ¡]KЖ%EéK•TlI‡ÂÞ¬7ÂÒr jJSIIMøP[ô6… µѤ!üQ¥Æ#»n$¹ë×!UbG)3k 4üèo¹Þ`µZX;O‚äy·-Î¤Ë i³nžth“æPA9ß å÷£KÎÅÑä&‚•’ù¸öË­»èÑžã ‡–’-èÎͺPÓ¼Nü#ÔÊpô}‰§/„D:lØcŽoí¬o)Gö.GÈžØCHæˆÅÌT(f¸«Ý¾YAÛ¯WûÒ—8ácqóÌèYx|ö¸RÍ6ÆÇép«cM8U&³oÔ›Çx fÑÁ/»G0 m7sx/ù†-;ŒÉƒ#z.þ®Ë?¦\1_ñ«p;—|ì š46M«³ ·÷[H0£~‘GLÉÕ唬à3Ë`.ª™9¹Ï+w¢¸X[Ô©q‚rC®”SsxiÕ¹Ñïïp_óÀ£±÷‡Ï4Èsç΃íõ5À‘\¶¬}ëÆ;v‘„Ž4)víVUZ̃yû µŒØ!'&ª–t€…™’.²|V‰:Š›º»ñEJG¦^û^È7 ú8=öa+í7b”¡èF— ¶ZÔ›ƒâƒfPKõlkE \Œä°ö-j_òµÁ=Îç Õ2Äé¯8þäy{“ñy Å)‚¡§ï7¤}V<ƒö"Õ£w¡ŽF§ŽxTƒfÖÁvåû{ÜF¿/ÈÐ)¥¸¡¤šûL…ÒÑ󗪸±  MÂ*¾n³ƒm¶‚±å7š3HÈè™a? )2iC’N4!ÚµX™ñZ¬t/Xa^VÌÃÛ:vÂv”‹1ËÇÝõ»÷¶IsÄ<(YùðçSG»‚NMFxÑòncÃP­wŒk˜à÷M’!)(¦Øä : dFÂÀ¿ÈâÖGR¥Þc²ðS5 >úÐb£Ó§eB~ò¥G~KGnf/[œ59© ¥Y&þã& „äsw%þâ¶¼vG1gÚ˜Ö¼•ç~­{P@ŽiiÖæ6ÍGÓìšÝ¥²RàRŤ8ú ¤ Üeâ…ŸÝQdžÃG ^xˆ‹-(qÏ”Æ {&B¤¥†#&Cf ¤=3{ÖÁ ËÉp!2\dÉ·"Eî!ã×·6n=’‚ j•C(k£w¥;j^ á0mÐu¯5\ɯÅŽnÏlSª;ã™âüL¹ÄÌ%eزȯÅ -×Õ ˆ’E).C†¼\ wèÀ6Iø¨÷¶Qžáó»`v†Iö°ÑjË;j‰ªw>ž‰„‚ÔáÉ™gQ8ãfV«MÒßtÁÀ@'}¸·ÁA «;Gw „R•q¸ gˆ×Æag›Ç¼Pö‹ëx‘Ž«$<2bãí€Y)”]Jó‚'. ܺ³Iç~Ò”¦-s0 Æ|\ñ øÜ\Qš6‘Ö‹àá¾R//@¸ÕnæDÞ_Ÿ—™ø#›‹^È¢±.²Ö*‹:¹ð ]£2]F³ž§CÈEõTpgaKG?³9¯–KnEzšŠ<³ö#³àÝRÉClh xŸïë>²ê>òð!žØlu™ÐFË4P¯òf6e hŒÆdc\«ä.~íË.îµÕ;ëÕ-ÔÙg’:À›ÖGïh/èF—\‰äÜ­R[ä¦jãÉËúCŒ5*n•2kH2ˆn1Óš’OÍè©53x›Ê]Eº—ôÂu¾ê öUID¯O+Bb)O^]£ìŠh™Ã¯°ÙQ^@8o¹¹VtAgÇÞS´‰ M°¦¡žâÐì¡y!vb“™ï¦Å¼Ô„Ô¡XÉfG®€R2-&i*±Ãô=Z$Œ·&d—°Ùîi¦Ëkmx]é(ǂܽO“-Þa£€áè“ð,”½ ³Ë¨ø’ÔG,úN^»E"ÞBfŠìíÛÀ– ‹ª²×]R„=ÕÑ;7(¯áZœÃi71X5)çp{ÜJW  O¡÷ÈÙÆvß8¤c:0MÔˆÃñ ›u½:×ó÷zœ¡ÒèÚ_#yP(ãuÖ‡¸-Ή°(µH:5ÿpZë‘Ó‘+b¯6þgŸ{Krøí›©ƒÊ¹œë-ÔL#SaœôÓÿp`Ä|>if‹Ï~ℸßr—gö3š”ô;0À“uAƒñ\á'¤×¼‡Në…(iî†iß=Ÿí^^Óz±·ò_'‹|)Ôy”ÅR.0Þ¶W„zJ÷C´DÕ{âßû¸Ç6ÜýSì ·ô£( ÖÍþ±iÚò®Éç>Œ9ÕñmåÄŠàðVvÉž²Ãpâ:KÍ\„ÎlÌàÊ œ§eª±Cæ`e@þåϲ<†L˜5h¾S‚a£_D²AÒ ¹pd¢g@rršà&¹È:?©Æ±SÖyÝH#ŽÜýnÀB@ƒ×c(”ðt“á h‘×G·«ï:®'Cž‘è6è ô±ììbþ(iQC—äx x£fD/ÔAç[2ð‰Y6Ó8$éAÎTCwwÓJ¬d7 в°xzþ¬Ë‰$ž‘ ŠkR9ßŠá »©Écú¿ÜsmšÍzÔL=gjh4§*ÍTëUS¨,\gµc ÂS;eö†Šã]ÑUð'Ä®ZúBe.Â’IŠö;ià\&¢Šì¼sŸ«Çëa—¾ìö:âˆV¹ÁÍ…Ø’:N`¬ûNÛˆga×'‘‡mÁƒ¶Ó¡UálZÌN¶D#v{*ÌrqšÀ1^Ï5k©TtÈHݽ›1*Ù¡š?Âî&x»©*Ú¹ú€aC|²q((»§4e£Í®¥þv«é;ºB}2g·Oê0I†[Ñ&”\¢ä,Õ~m¨š¤»81ÿt=ϼñ‹‘w¹¡_…3îH\eºÒ41£˜?$Ë^ä°8AÐo¡™ÐÊÕlÜS¸XçˆTÆ’ªÒ4ØÍå 8Jìl=XAµKSµƒ^¦nËéÍ\î4¬7Ý*…5$¡#´óVõÎvtCƒºM>v)¹‰BÁ.A‘ÖO£yõBêE„'ZAË«Û@Í\*ÍhÞî ‰îU”m!˜…b\ ¥$?Þè$3¸Àn|q}uçÞ–:ù¨r¼ì,ÿ;­©") ‡ÚóJcüîð½•ñÉÜeYJi“åaG8q‹#T Bœqæ$)%¿…Ë’+Ã…2†ÖêtºÄ„qÉ!¢•¡Ev«n8V#T‚Kä<𤏷¿¡‰O×Ô¦*rD'¡dİ˅n3¯Rl肊UcG¨ó§^µëÓò”W—YÔ"T¢–WÌh\™AˆúK¤ŠÊ¢dÁ±¼‘ÃT´ÓÉ*ˆŠ®u4nR‰Ï &¯îN .Ñä7ÈAÜ8_wQh]#Úg6–ðw¿o<†mJsFv˜Wßǧ8õˆ•—‰3Ä€b#[ëdM¯±ëÒÿH^T$I: 8ñ:‡îQãüž¤`_8;Ð~4wgä7Àǘg‹¦âòÒC)凴SípJ.wÂ…‰Î!N¤®Òôr^É¢W…ÜtRJ¯¹ñ¸{MèxƒQ¿ýNßhq [jüÔ"£×Œòº¸†(• ·!ÊCœ€€:òÙ!ljo/äg´¶Õèuée ›Í™»QmF[½soõ½íýûë[ûÛë«h¤)Ûì êÀ7ºµFGôBŠÖ{¾|ËâWJÈMkî-`Ó좉R ”ìîGañžŒEcB̰xJa YŠ ãPiÇrq2Jz!d"#š23ï—lyV2÷ŒÈ½†ÜXB&(ÀOÅônUh´ßÚØ\»³qwcgûÔû û7d7õà¹lüò„ ì\¸s!^-ž/^[ñŒ¬ñІKKQí•BT7®Xij GìZÕk ÅœmÄ™0\ºV`€9¼ Ê8¡î£GFMZÄDåIɼœ±Íkë÷w¼mF.8sX¥ÖËRª¸ã䯉˜ì¶Ð–ä¬<—úqÚ|‘ñ|g;Gåv”ƪØõš$òûM“,Ù5/Ûâ Z’°Ñ!ÅÁ½iTgRÓ"Oõݺ5yß™ò*á“+ï-J‘8ÏXˆ’gÒ xƒÔ»n4[ëža+úêÆS,Ägf÷"'Häò+$©§‰Ÿ¿ˆð4"Ïҡ熻ˆîÒHŽJiaH5߈*¾ŠÁÔN©é˜wÒç0‚D&ߺšžÑô2Þږמ@ ¼ðCÛi3ð‰¹8Œ$û2>ñöð‚ï%Ô/j’—šg]B§éÈ'¹W;ש€ßñz JG&º¡¨ºÂëÇß™)[H«_¾Ðê¾LžŸ¾+éäKéXŸ‚{À„ßnK‰wÜÞ7â=7Û‘Ÿñ‚Ûm©ã‘§™qöýŸÿEÅnÕ¿êþ˜ò¸+zfCsyb¦ÝJ7åê–\âîf¢ ÈÍG¨R܇kÚʽ{w6G¥‰v(—ývwŸ_z£³ÅFS¤‘ZÛ”BªÉ©ITÐræ¸m˪ãû· ñÁ`zXÄÓSµv—XÙ2”׈Ÿ]^b`ËQh€ÎL”PïŒtÜ-;ÒÁËCv–~L®yG kG̘Z*k ÝŠƒ:»æ;½”´FKPÜy-³ÙC{þ¬0kG_âòM'ái¼ï!uÓ´\ŸÌ¿õLéð]ÜŨrÏÇÜ€z¸À«Ø3ÃF7šÉÐøJÏ8.òlÓ{&–|Ë&sŸ6W²‚ª“Ñ«gF 橆jã¥à!ô&B;E3ï<®£zƒ¤‡CçÈRÈ úñË Ç âBwÝ5zO]ƒ¥X!«ø»a²ëйÑ8%•f@*¹–%—%>adáÃ’'™¤4RàW¯ØÌÖ˜î¢C¹7Ö|ò­šÿlˆñËtÝdKR »‡5“Ü)“Ø©pÀ(ƒKuy»)6uëjà^°³xYmð^}ÇN9EÈÜõ”rÿ‘Ð|0˜'$>Âó í ÈÛ yv¤ƒÕ‚%ofÙ¾…V”:}qų́è1³à†Bò¨; ¯Äò‘w€þ£·°*úïë£ (zد°“0*\µŸÃL¶‹²ï®añjÁÞå?}÷‡ ,‹Ûés“ ¤´Â9s¡_à1yìµ0•[*‹¨KsAõ «)­`]!ÒRŒJÈ:™íF»V5Æ 2E‚K‡¼ÐJ¶-&Úèu­Œza²[Âîp%¡K’L! óB„E*|3À̸“˵´ˆ1šÏ V™<+kG˜-DÉ‹§°|ÙÌË#› T´¹âÈèvM»Â„N:¶øf¶X­“¹z2›Ò(àñ‘ #¨«½G>Ú°¶O jÞ¯ÃâóÔÚE¬âŽa[°zõ-¾*±+'Î4ÀîZÈLÀ~Où*î嵪 Kí.ä$õ"‚ËéLvùæbí=CŸQ’†1‘䘣«‹ç´§ÐÅBE)t±0­ºX”ØUˆb,‚ñЊªDŽÉ®Z¡:¢n´ŽgÒczÒƒÞ¿‘ž<=46KŒ«AFštG¾ìØaŸ;,ãḊôàÅȾ ÚBÕ‰grJjf·/<ê²ÀQÇT°Ý¬Ý—‰TÛLÑÌ­’—îJYŸ%/5½âŽÈ;@€ÑŽ.º ‰”`””‹,%î´8OŠ¢7‹[oCÒøüåçYr¶¯‚ÒhüZ’œ "þ='k‡t¸¶þp‡­8AroÐw¬&—§²Þ/°`Ñ•"ªi›*Õà¶u…e¬ð‰Íª”Åí.Ëe3'š'§g™C‚fÔ_ÓÌŽÒ¤ìèI$>h¾–c&ÍÀËŽÍVKB¤1$GAk3û™OM2;DNŽÞ‰ûü›Œ3µMç 1ÆJç!M$½F6cØ•toÚåÝ‚¸!²\®Ä¥ 6>/eýãoI~¾«Óà0õ'r]òru70à÷®ç`1½sAìù=½®™Æ7ª-ZôOìÞ$Å@’âž«;¡x`ÒÝ‘ïÀf“§#—/Óšð HàȇuÍJ²°ÿÃfžàÅ¢UÂÖw“lHnà²F¶éhQ;‘Öä.ëá·¡Õ´QúÀe"<² ª?Ö+¨’Kf¸Î=r¼zháDóVf„ƒó…3ÜP‹ùÒS®ø¸çSÐùEîR¨7˜9GbÛâ‚ÊÝè¤Ù9)E„\íª½.Ì»ñ>—]Îú­oõ¤Äh"^"¥„#ª£Pp²3FZë4šÊ5Kž¼rž––M¼¾U ¥A9f£1k³G½ Ò~ªøôÐZF_h«~8˜÷6„ÉA•&¥P-|O-j%Ï*gS­–ynµ­fWÁVÏ‚å!äKx¥ÓÒÚ IĬÉÈ$SrîÆ8¿q“EP~냭ļ:g7£¸º‘'ÈÑ~n¬™’®j=+VõlNï*·6.Ú=ª¸pFB:âÕ\÷EêÅ L˘! òÔÔ±Ð8:¿´&ã«]¨Õ´ @9vp¹lâ[Ôñ1êbhb@<[›)¦,éï¸kl¸ŠÑy6ÝÐD)§ÓY•dp“ܘ@'É.ltPÂ`¹nJ䑲¤"ÅÏë€ÌôNÈÃ…Í}TçC;Š ÀCT¬±×d€Ú1DžÒ–õy‚œxG2ÙÒ¤—6—tÝÇ5hrø(ÒìÊðQBã]_Ý”íö ßUOº3aº§¨Ðe š¬ÃN‚ÙÈ‚¯ŠV¾Ý²ßÀÅ‚\Y4©Å=B…Ä ½I;ÒI¾_ñfS7qò£þ´ÇŽË$äµìyefFPèºÃ£“,PèrO6›‚ë–®AÚÈBäuV°çøº‰§õeÄK“ZÌÉõAŸœð‘ú ’mö…Û·g†ÕÂ⸻åŸ+w6ÊìDú ßî ÛéÕAÂ>™x©›žº4y¦#·1Ëmza}â`…Lknö“ƒSü4H˜XŽ²Ø óîŠKîëîšloÍNAÈ“´{úáøç²)’AW>X%¨Ž w©ë*ïœi·güÞÇ¢¯›Ü¾Š¿‘—#ÀkP\{nÛäøð¦Ujç&V‡r ®—4YàM>€È¹ÙÂ} îƒëª‡¹HQRD6+AWaaÞÇ\¼³ æ”Hcœû‰:‚ã9sP‘°L<”qq–c‘ÐÎä{D( yeBô³(›êõ­¦Ü‡á¾T>=*ê®A²r$dfèÌžT6cY£r/ù}ÇÉWaNð ˆ]r›R{oÚKæqC?jĦ3ê/!5-¼I2Ý-ŸJ}4)/(=Û ²í„£lƉÚYœO ¨>*Ó)žŠ^uÅÓ?‹ "ÐãšA†ú}bÈY;Kevwš*A‘“!ØÔHsóµÏ&É*}x!½H€6ÿFOüÙ_FN )D=ͤ¨¥‹Hÿ0öLjv$õµw›*€â²†›~£‘×¾Uâ ¦îÀ6š<=V±äÁ‘‹¡sã'fãé¹m»0Ç¡gpªž Åñ=>‡©¾SÔ³økM·%þVÙ=¾kÔã v? ]ä Í+­ؽôŸ9e'ïV·ÞÓ™+)U*¥B,Ëí¿úöº—A¹Œp!>¨ßSm?ðLÞ¸sṓðâbã>ó3CW¸3¤ïÍÎÞ¿ q…`ÜÓ¾‹ØÚ¥ÙØ%lÎ0£Î1«ÒÍ,?ÆØ$ËD Ì•êÚƒ[ì6GŒÎä·Î-ââÑÔ@nBÛÞÙÊ 9Ú5ô-²±³ÿÁÆÚÎm·þü²†ùh(yx«Ú4 `!ÓWÊo¦nP…DšûsÅœãþùuA¼Ì+àâ¾½óK‹÷%/Ó{)ŒÄµé m4‹‹®c e£2ÈâWgÞ¯"ËyhÿsYËèºÇ˜»uæÄ€“üÑ{!þåêkðË\\Ü›¶mãòKŽiôØOƒWjyõˆ Ã] ã°mÓs«„ª*®E’Œ{}èui‰í‹‹+X‰7ÿáÑ-r× ‰`ß*¥º±1÷=‚¦R»¬Ò ÷l!ÚI‚sxà˜aÊ8xÛf˜RÏäRKRZÕ‘BÍl<^ ZŠy>)y*]*²zþ­§E¢ììZ! Û;äÌh¿ºC‡ÙLîq[O÷7B&ZÅb \ˆëH:U~LC«_¨ÚU¡êÉBôí“eDG Ûì )™=îŸ}ÐmŠM¹¸X`UAçˆÂqA‡äE•ŒG f)1ÕÍZØ–!(2¹€ÁÃj˜p9ÉÏ’•†Ý$¼~fÜ·[Õó¸3‹.•Îà=¾t’v xÊ(@ˆ$¡~êêTúŒãëRC5”k¶ó¥Jò-aµ±Úr /Š{ÿî)ë–1Ïe½2¥íÊHË•¡Æ?½Æ,at`‹G}2“ ¥Ì©¨ðïÜFûÉ-e…ŒÀií~uk}s{s}{gmýVõÁÈ.d=“—rn‚€“7@D_?5ÉʘCSÜ?¾`­ï4ŒšÒÃ48åüC„²yv b 6Mé±µ€Ý,XËÄí7Y¢Eö%—ö`_¯«dÀaÉSîªYH7©(â \S„ˆøãKFÈ„ÂÕ 33¹ÊùÅ Y Œf¥ÊOo‰~J†`‰®4‰i+ö:Êá%p1 Ã)bcÉS& ¥sáDÉ“ÁK”b2xR‡ž¨.…ÐÏͰg›ùxoÈ™Ï)„úœ™ @Ö•ãT†m*…’(*Ë[ý6Ù+±õ@cxUhÑäÔª÷7¤ÓE kÙf3+T⽦£¨Ð¨â<ÆÕž¤Œb¾K‹Z‰•YÄ;®.´ç 'ÓµÌe–O[ÙØ¹·s{} ƒÌV$<¬WÀâ|"†Å€„vÄ‚,—‚ 1Œ6—ÙÉÐÄ=´RN›Ÿ:bhö˜2^s µñ é•QüeW¸;`½ÍwiÝA¶ŒØ®sܰR5§…ü(Š®ÛWû™Ž4:XGY˜(̘‚TØä;è30PtÞjÆ”-('T6kîƒé *Ý5™Hßjcš#î~ïȪœš\P ªÎ©KNÈáfD€âE1“Ù ü§¼­mÒg4{GF×5 Eb­§ÌñÃÉ4îá˜Â«¬0C]SfÏ+ãÅØ´›Ö#¡¯B[<Ôp„Éû%ÔܰI RbgZž cH­ybm«A˜jA=™Ž–UÏaއy§Cg6$Â’aš‘tAOJ´ö S r!Ÿ•zu%Æbñr¦kæÆŒ´É2xf´ndÔ3;àm”0nFÂéö{Šwä}º×&]£AÌYèÊ¢MÒ­„*l#óiˆœ½ ηšðL^N\§Ä„ó,"[§ö»ð%kEÆ&Ñ4RËòMF¥¥¯MÊ˶T¡‚®ã¡ØÝùY_OMN²ûû–åô= Ÿd§™ŽÁ²p·,.<•dáàØé¸$ìÀî õ¥Þ‘X˜F«˜|³.U·Ô Ç(Ü^¬¯îÑÎu“N$GÖCqÑÇòÉ»ÕÍ[ïî¯loÉ3=Þ>戌”üxg ÎDŸÖ&< (#ÞÏ%”²zïî}è56|¶_C‰ŠíñW_Øú­[ë«;_\ÇaõÎÅ×P¨b©þ•—õ­¯¥”׈<Åÿ«/lsý‹ë( ±úÞöêöm\É^C™ ‰{ %±Ì×…Ëí@ãÖúꃭí×Ѹê ðÜŸâk(ÖX\k/¢$¿AD˜Ã)¦ùNuëÝõ°Ž\ÂÅ=¢(¾x¥kÛ>L´YZÆìYw6 £‰wp[îï’N"²G•výúõð¾ö‰VÝ»¿C­ó†2SÌö`,üК_P1“ó S¤*Ñ]2ÎPšÈÌJŠá¼Hˆ4Žä¡\ Î+äŒ%ö¾Õu*îH—ÄÆD,D´©J‹¹_ðÃFTDÙ¡.ܹQ±—ÈQÍ[L×<—õ^T•‹¯©Ê){D­rÈ¡YìÝwHO©µñ@òÕ&"Õ#ä¸-æú;¡͘J„Âs«0 xB%<˜…x¶ jnÿ˜ˆ€â›¥¡Wu~Ø#÷[HU›1U …á«hÈÝŸîú6¤¢jî NC¡prè‡GF¤þW8iS—W;iS „W=iSvr<åY¬ö“¥”j–D÷¨‹¯›‘¥Y1xÂ+ 4tüx+"½2³#†PxUB@†Ž"?VB„˜BæmÄ@ŠÂJÐø±äþ¯vD%r¯sD%Ò¤×7¢(ÓëQ‰ôÉQÊþ…|3qüAªž!Ü\p?­¢w2Ñ`BKD¹=~»²ÏîBŠ+&”$±0y Yjin>}±~p‘å?3zh\«nYvstÔA„–Äî—¸`ŸÀ&âÉ ¿îôBêÛù„}üZu§ê) …–`›Ç-˲–g*E -©g6=†h$º’ÆŸBB1L®ºÒ6ÉNnH‘Ñ»íø a‡.ú.võ xÈrwã1»Ö&Gs1höPHÉÜFìS¹ú`çÞþý{Päö6*KŽv(ä)"æh(UUH¯F`dÍ@¢}ßWW!”}Ý7†Ñ rþ‰óUÍ\8ø¤væ“ ®x†CHë(Ebö„C1/—‘|©Š„{UPYi4;T¥( bâ¾£ÜõOk ̯T¹†“Ô´k‡ ‘ö“{$põ}GÊ*ˆºŸ¥¶d™•gE£¾ ¨½¯B›9¦åj«@Õ&ô©"ª~]ùzK M/F¼¬5.€n‚„N™ú„7ìòÀ¦åÝS¯$Z­_x ÝÅlI«/Š+(Ã÷Èo AÙÐ#ò²é3ʹ~÷ÞÖ#ÏÞÖ Ú娃Ä-‚¶é^¾0eu½pãá™ÛpÎjÍŽ^-r»Ëî*hJì7®yQˆjÝYðÊ›P|Um`g¹hÃýu¶f.¾5ÅÙënŽRùpª”¸ƒvíÖ$²ŽîÕ“Ô¸ôÃ<䉃G2S@$ÒkJG¹é‘Ös’ê‘pô’\§˜úøaê–t/pÞjȼÕNq¿J MuÓ´ÑŠaŠUJU1ðçæ=ßÛ–}ÔøM>õðŠ J ÈÁdÞÓ€sW*p2Ybâá@0gì Á…T]=-–{dàÖÍ# ì5•â~4ÄÃYïJCåžCîG“î=c;%ì\ ±/Ü:GoƒE‘uª‘r›«åŠ¥ZE¤qU„c*‰¹ÕߋХŒ{Døð_~íPNÕÑwÜÛÂÕõhúWð.c"ëÎ&.@ß§P­Ñ3œ#áKŒó5¢wé–먇¶< .päxì–|Ü£æ_;‰;&ß@»ð åtWMª••øû¦BÊk¥ÒtصZþ2¹Åow,“C^Ëv€“¶rä0qO˜×6úd„«u¢9&ìµãN¯”1šMœˆ§^§å·"T&u,9–ÑЊ:Ú‰lä!RØ®dN ÑÔ7P%̽ôÙøÌ ÚÈ Œ‚in+Ú)Çç.êÂKwGä("´º•/¿ÚÊûúÏQÓÙ7¼¦#Œrv¬lñ5 Vô9Äyê> Ž#*·ßR/± IÌØ›¼`mn²“ÆÎ;ÒúDTÁGyCËP…øêG÷Ék¨û¨åÙ—mw:m4cHF‘<7Éo¯3MÖz™ÅAãýxZ}r€1‘°3º®1ºžq鸠ð~B…E¦‘„ȳi?|¿u†Ñj’ z_êHØH˜," :b«2:Fd±r †r­è×KgÌQbˆ‰Kàc+¼Ö"k Âï¸fÈàC±=ŽD™X•ôUr8º°ê»G[a,¹[ ·ÄXª™²…¡ýÞ² kBìòp±Í‹ëÀHªªT!eËG ¤Ò}ËÀöûB Œ×s²ö¥QXûwl¡Ìþkcöâ*^˜Íý½E«WÀÜ%Ô‹•”\³WÂä`ÝFæqR×õ9š‘+‚ÖÀQ‹Zo²ÊV ®¨õ`e{gcçÁκ°ÔÂŽZ˜KD2ÒŒ‹‹#¬¤+6¥)–&ÖÌubY!ugúÌ22+Ó.+Ôî4¦Ùs˜£ãf§1@ <:´@_–iôx è”ø¤3€Dî± Š`6¡ÑÅ”Ý$ÿųjÛÜi‚Cv½ÑÿC†òQ Ñ·yÝåÖžo“cHfÖ›ù&?2º]wùn€åS½Eœÿìè 93 Z}…ÕôöFŸk]ˆš Š4º'Ù 5_ÿ2Ç… Ô@Ÿ4Aì‚€×_i—ÍpAk +@Pyx™VMøF/Eï:Àj^çø•¿Ûyfz|shÓ°ãíkOM“9¡¢#X»ï(ŽÒ\²×7(%õFöTìãíu1_Û¸u ‹’ê ÁžkCG5e·½':Æ×mn§`÷á"ýeA¿ñ>»ˆi´>‹¦ºÉ0÷£Ðø¹=~põÙš#ö0ë-¥“W ûÍN®ìú颂ũ¤Jt IÜOcX0¦îSÖ1³@;õù?•ª`N¹ˆ.!-œíÐ>a˜ëÁ×½QâãE?!té~uª±Öˉ–QG~˜\0øcÌ IüJšƒ¡Õ©U@½«ª Èý æMôöF×RíÇübP4T¹_×<®2Èó\˜™—;¶p{›`} õJƒ =¸‡‰Øý¨˜ 7~åÖ%…iÅ}îµNB²îå­a¬mÉÌ(ãeºwÕŸS…eŸM@MeT75ÄÚáHÀåÐÁ3!/ogBBŠP…ÅÈÔÁç™Ñ㓞r§ôN¿ o‚ÐaLE{ J#ÅÄËfDŠ&§ ¡ÕÉp’{šŠ ³gÁü Jºõîà]RĶa7ýÁŒFGûùÌôG?Åû‘>Y¼“rùJÑ6?j¸»¾¹³½—É (ÆU¥yW§ñS4î*]^u[wUž«#­EÚèÃn#Ÿá$‡æ¤Š>Ú§3u¢±ˆî—\¥Ë^ÄÊAÜ’ _ÔòÉ@mhó±¨A‚˜ Jf¿2ŠÊœ2Ñ¡€X¡Úq9Û@ùèˆMÍ ›´|†u—8È\´;ê$:—pð“uÆ>vŒÎ"ôE†ù%8W.k¹Ã¾V¸R,IÑhWŠ€øÈåpìëê(½Áè•å7(_‰t>ºÕÑxųÈOøsʾÔ5µWJ7€®[}žHô°®Iìú“ˆ>0þ$ÊÈÕ5Cþ„Þá¯k>ü’†:d bÜŸMç_Z½gOYम©$c‚ŸHñq\Ñ®^)^ ¤$u3šŽÑ€?0ÓìØf&Ó¶…³ «³HÃVN\‘8žÐµ!ŠwyÒM\Q?Õî™ DLhé@ˆÎs!ˆJ AôížÈ jš <žÞÀiÖƒBR€êÀôiµ$^ÒÀ`U¼@3VF–ˆÄü'HX!<;$âË« 6h1L= 岸k‡%VçÄn0^äj˪ÏíÚŸçvåJÖhïï÷û'ûÍѯæÑ,—Ù\¼úëw 7ÊÅöU€¶e61ø°góà¿ \§­CŠ(Šˆ;ÄWŠèzkÀ£g)z¥501¼}(àÍQø]h;PJŒrúTÆç²¶Ùas ÈÚHaU¤ QáTÁ£œ„§fg‰ÂâÕ^[Ëhr„ir¤ÜвŒl Ä°&^¯É4ºÚ„Ó_,–®ßЮp@ZQ‰)Ô˜’3[ôä)«QeOÔñ3.±FŽH/ÉæµL O1m;Òƒ³z(ꌽ¬‘T^i¹ÕG>^`Bµ¬ `£¶³õ Y–ÓÑŽ{ã-ó!¸yíì( r‹(ÞÇDièbÆ¡ÍLVpCÈ‹\.Ã>¸¤ç3mI™º™‰+_æC ÒJKï3Ùè€X-+Ã7HÌ`Ûœ¸<ËE3äúu9¸ûÇ@ŸLÈÃÅðG4ØÚãKR¹â%Âle*T`.-_¼à YÑŇ÷«°ß€N\æ´CÜ à‘ÊB(§ÆòÀ¨¤<”Eæ–ñ,18Ø Ú‡B‰SÚ¼J`(¹ µÚˆonOp‚þNˆV²²¯æòU„£pZn51ÊFÑ<ÜõàŒèÂxÀlÀƒt¸ÐXÛE®‚¯æV0¾9P,^+ÎÂà¬7äÒÜ…S>ÌäXÖ}ÓCÁ˜@T)ít`Z Ð/ ^^y%À/з—¥$ãöU*ª ñ ÓñNÓBZæ3ØVK–OÀ¯ÐrÌ2dxZºTR¤bŸ¹°Ä!©ù8¡$ôž GPβs8 rиò¥‡FÞé4`“õE±›ª@ZȨƒb¶Z9FC!Ð9ˆMÁsW€8_ÖP¤ ØlæŽ`¤hWë&pØfù`Ò·ÚðÝ7Ú]<q¿ð·mðž+Mx1žR½]9ɽ](µñ§™‡ŸÛ¾”ôú†:$~°³ZðEQ‡~P…qëðÙ;=?ÿÅa;saeÄŸÿ²wÿùoy~á­¹ «AÌó?ÿéÿƒÁóç@œÏ?ÎÐÿ …ùò¸ÿ_Ó¢ÿÙu3~™½|ÓjÄ¢!ìA|ÌÏÏFöÿ<ôµ·ÿK¥òÜÜøþç5<ü þÇ›å6lŽ€³C1ØÛö6ž¹ÂŽÊH¨.ŸÉLÔjÕ ü­Óï ý6éw~è÷6ýÚô»I¿ýnÓï1ý~@¿Ïé÷1ðXÙå ü©Ðïý.Òï%ú½É>n²¯S̱[1Zö ]Ù›`ïÝ#C¼£UPþ^oöSþÞ°û½oZ‡VŸ¿Âòˆ¿·:Çf¿ÓÙ™xÇkpþît†Éß°Oé;½&JøPßÉêêêúýë>‰|>{[½w÷õ`s½â&…½íÜ^ßÔ‰&åby”Qç??x©Œ¤ù_˜ŸóÏÿr±TÏÿ×ð춬:ëÚ½ Îv)µ¬Ðû úºl™6ÄÍaÛ>{\ò§÷qþïçGgæi®\ÿççæÇóÿ5f'ñ‡¨ÁªüYÇŸûø³ƒ?:/ÅMKfÚÀŸ;á©Ö=ü¹+6b R‰[øó6eU‚I‰d¼'ÞOEåÜ–`6•T¯‚ÝÏÖÿ‘·‰üÿ‚ÿü§Tž-•ÇëÿkxøÁï·ŸÒgÔù_.]8ÿ?_œ áÿÇò߯å9ÿ/þUÕ l=6v%6¶»{{;6ÖŽÝŒubc·cccc?ˆ}ûØË9ñoÙ—7:²’:åRꔋ©S^JòæÙ ¸y¶ÒNýØÝÄ™¡~´ÔÏ ¨íHh{¾*ž¥Ü®úq™ç"Êõ̆úaE~œ±\Ùñ´×S#ÒŸ^@¹Hè}õ£Y½3–ë!•FÆô/ \tO«¥OÌü?ì™Ýº…‡?ç,#qþÏùåŠ ³s³ãùÿTÊýh`5žjõº ?xk¨}8hw­óŒë9´Œç'Z³s˜OúOß“0ÿQ'sœ«Œäù_ ÌxÆóÿ5<žÞ&'?Ϙš¼7p8žûŸÎ'aþS矷ŒØù_Ä'`ÿi¡\óÿ¯ã‘·Lõ²s€êô ³Õ2l³3p4²Ëɬ9h8¦‰mHó‘¬Yà­ ©¢™7J&œ‹âèѸí;Ì{Üé=eŽH{=³Ño0ß,T*ùL©›ÌF@±3¥Ù÷¬Œû¥U«O*¥Ž› ö _)4@c4³:™ªCÅNnh²äµMó8s`è2׿†Ð¡L³‰maõ5íæ46 ´ŒCni+¨Cû¬Óbv<2®t• 1·9Óÿ<6™R·vŒêŸÚaj¦d”:ŸÉp;Ê¢TÒwdvV>³ÁtuÛV³Éº‚ELk2c·k='¶TÐØ7qͬÂsÕšÉ{f8ûöø¨Ó2Éø @uúƒnð•lWïX>õçÂì9³'`7;Ñ즖œ83JâxÈ™sT#,qæB¨0ßcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq7ÆÝwcÜq÷ºp—»Ø'“1ð)°?ódêôd©Ÿ -ÝćA,e䃣Îr4øßÐZ–mjuó Ó3 ½uË6z'Ús³×ɳd”¢Ñ±û†ec%…vdB¶¥·nBGAï˜Nß²ó~èÆAŸ÷x¦ºrï‹ën¶Ìî‘a÷5æÆýž _y ËóÔýA¯ß23™B±P*” ³…¹Â|&Ó6ú#­XÉh/Á{¿—á½Áßgá½ÉßçàÝÌl êF¯žY8}£×ÔvŒ^?“y>ldÏꙺÝÎN3óѱ™1!¢2È ¬Næð𛇙ã3>meŒú0Ó4àÛÊ Ožg2™ûv´Íõ´µêNUc Û¹½±­ÝÙØ\ÏgãžLfõÈ„¹0èj[»_ÝÙYßÚÔlÓ`Ø4í¦‹k65œ>Cyç ôÀj™ùÌ[ãç“õt=³”c¿ÅB~vaçVÓè3‡=³kÙÝA¿|Î2 ðÌÏÏÒ_xü‹³ssoç s³Å…b¹áÅx}«p!-LxhB‘½N§—.)Þ߸OÈÓïYÝ–Yù†~q¿?샌Ãopè£Kï]zïÐ{ß3™©”&SæPü¶fuA–ÓÐoÇêkFÛìO#µwÌFßJ«M«k9V(;Ði b³ 94Ó8íNÈ~» ¹-»a5­æ¨ø¨QÇÅì3ئÖ6mC3ZÖG#¯=èõ²Ú\k[øò >ö4.þŽfwœ~oÐÔÌ¡ÙkX}£où´ZF»Ña1T K"Vk¦5oC:¬PT?¯­!HcÐ75«7€š°ÆZ¶3©g5{ÐrxÖi ºPœ Õ–j¦ãÀÊgµZEРv08´Œ¾fc…´®ÑƒA/¯­f·o€ƒN£a˜ H×t-œ¹ZÑíu¬¦i#SPhcÐêØn Ú€fCkšŽÙÃØv§…Õ0A Ãáx´óJw—Yw—F#³gXs©–?×üYê·¾~÷d}Oúíœe$ÐÿByv6HÿK…1ý ÏCà÷ÌÌC­ÜùFø=ê™æç=è}þXÏÌÏC¤c ñ×Òù#ßñÈñáQÿ«_þ¾‡@mó«_þ“Ñ´3™ÆÛ‹EñZ*• š”ËåùŽ»È >S%FS²7Jø}ìÒeªvSs:È‹â-4ì/þWð¿ø/ó•o7ê¯|»öÞÓ¯þ–?\ÿÏüÐïÎT‹ŸÆi{aOšù¿b4ÏE’æ?p€¾ù_‚ÿ‹ãùÿžêO}ùË_^]ûê—¿üxƒOÚù¿¿Ó3¬ÖÙÊHœÿ…Àü/çÊãùÿX0öã®Ãøùøž4ó5_^:GIóv¡Xÿéï…µ2æùŒÏÿ•ÇG׋ÕGïl?úµÇ{?øÖ[Ëû_~뛾ð‹¿é-í ko-ÿÌ×þNáëv¿p«ðÝ ð+ßzë¯íüÍ_þfßzë¬müá¿ô]ßô¿ü‰ïü›â{~ÙwCíÚ7áùO,þ¹¿×mý‹_tø ¿ó;oþµøÖ>øµ¿ù­Zúú¿öÛª_ý-¿©¶¾øä¼ó࿾û+¾ûFýg¿sðûÿÊ¿õÕ¯}óß¾÷οù¾ý©ïýO??;ñç®~wçîý†¿ÿî`*síüªoý±»O~í?øâwv>·ÿ=ÿÝ‹ïÿÑïÙÛúñöS¿âé_oïÍÏýÜŸøÙ¯üݵ«áïþãæO÷ÿì/ýç·þ³ÿsþçÝÉ»ÿñýÜßùÉÏÿõSü¦ê•o™øu¿ôï­ýÊ­á?úÛYÿÇà÷¾÷üÿî¡6Üù®ïÿ`òûæ_\zü~hõëÿò¯þÁŸø«û¿éÇþØ~ïò‡í¿ü/ÿ„3óOÿìîƒïÿúößþñ÷ýÛîù÷~þû[W¾áþñ»ÿ&ÿÓ¿­ûj¥úç>î®»'Ýü?|~ž2’ç1Èÿ×ÿ×ò|Ëoÿú¯Ÿœ¹uø ~¡ÛÝo½Ü*Ú_)|îüß2KÚ_úñoéÿ£¿ñ¾å~íÇÞ™|ïO¯ýè?û™¿÷7oV¿î+ìïþÆ“¿ZxÚ8ýö?ø;Þþ¶þú•ÚÄÓ' ÷áäßšþ¡ßùà'þøäÔœ}úÁùeò«ßñ¿Ï~÷Æûþøþµ‡ß{¸ù•ßð;îþš·¾ëç~üϾõ•øÙòÃO~ϯúºoùmåÂí}Ýyøk¾©ñ3úÏþ@õÁow~—ùè÷|÷oÿðíÙØÿ®ÍÜÿõ?ÿë~äÒÛ¿ÿÿä/ø©?ÿƒßö7~â§~Ñ—¿ù—í7ÿ®Õÿ5?ÓùCæÏ/ýý¿ô·z¿çî¼ýÿÓ¿ô÷&WþLë÷ý‘ŸøŽïYú¾ÿf¯ô[7àý/þ’çßó¯þô?ù‰ÏýØ~ös?Vþñ¿ñÁ7ý¡ÿè+/þúo½ÙýÓÿΗ¯ü­ŸÊÿðŸù‰oÎÿµïüë?ÿ~îýc_ûÊ?ÿ†?ûWôÙ_÷³?òó?ü“_ù}_úºþÏÿþ/»ú >în»°'Íü¿{Î2çÉ¿þfgÇóÿuÌÜë™=ˆ 0À(9•ðNJ˜8“™œDáÇÄ3Mº£v NÒÒµu>¡Ÿ­c4óÿÁæùÊHÜÿƒ÷¿sóóãùÿØÿÿÔwþ Ê‘ OÎÅäŸOä“fþ?;gÉëÿBpþïÿ^ËãƒÌH1ÈLˆ$I€õ­¶©Y}.,‰K¶ï-T˜¯¶N ²=óÐêÚdÛì“ÚnãÈè¾Ùsöò$ zÜé5QÈ å`uî H f¯kµZp cS3¡hÇîS>”ë@a’g0Z™ªVô,˜ “je±|Ήݴf¦‡ÛÄstð Ÿ Íüž³Œ„ù_,̆Íÿñýßëx\ZÇ„ÉÚd{àû©ç™°-L 8 ØÆ6·Q—Kƒv>LL˜n‡0×!î>û†I ³QЋcá»{.|aŽÙ:@ÁôBР(œ¶}úšÀl*÷‰B¡Àoa7:mØô±P«—ЇŸaea$™’D3Z-,ൡàg´•‰‚†²}9†ßíߨuÓX¿ÉÊR;ìA»Ô @¡ì82$C‘A Š ÊOdPx‚D'2$7‘A™‰ ÊK˜- …íT²Y½>lD('{±è/`19½ |AXô@ìþI&ŒòŠÎA܆â,×û~èËrb©^ª'‰ÿ+‡œÿgÇôÿu<.ý„ŸÓ GU´ Ú;Ð:]¢ÂÚZǾŠüY£5ha´O´z˰Ÿf¡­› càÒ ì;;Ò€~õN€¨Ø‡—4Q®ÝÑZûYÍÞÀœF±®#㙉Ri@Sy]2^’•ɬã¡Ð£X0BÕjiÕHOŠù¿b4ÏWFÒü/çƒüßÜxÿ÷:žàü¯Í44 ³¼}Ô´šYä+‚ìã©÷‰{æ?tî9…?Þ:Ûþov|þûZžñþo¼ÿïÿ>»Oýï ú@ÎYF,ý/æÊ@óü_yvLÿ_Ãg¦@ÛA=À¢–`Ì@h‹#­ÇSuº]òÁ(M>³ÁOé­f“--,bZª™Ý®i MÖAßZ],ÄZc`u.·Î)Ë)'•³PI*éZ%=~Š… kAÒ‘nÛ°†åIk@›Ÿ-U. ‹³I­›M i. R>äÚ¡’Œ¼Ðl£`4@2šC³¥Ã}XÖa¥\‰á§Â³ÌU›µ9 7²Gç?™#?Ï.F_-îÎ2Â{9m‘×ÎTdJàד€§„S,ÄB8Å4p–¬L±rÖmO©’™­(e¾’n³Pá>Ê>çzǼw{R,Vä¥5)–+‘»žâl%nãSœƒìó~ø ükàzeô}P©PÉ” ¢°É)•*¸!*•+lOTš­Ð¶¨4W¡Qi¾‚›£ÒB…íJ×*l‹Tº^¡]R¹PÁR¹Xá{¥2B¤íRòS™Áeï›í›Êž½ò"Ø/†ÞYIô>[¨ðmÔlº¹\I³1J;´8¹eN /óˆÛž§±.¾^!%,&°KÛ()mMX”Œ$m½×cf=Јa7sÔz’lÁÅ®spà˜ÀóT †Ý·,X¤š“I¥0ùV@€2¡]õöƒÙÆŠ–ÒT4aåU+zË€1ÚDuº¦­)È´a~-§ƒ¸¢mv4gÐ8âD*kõÌF¿Ó;I]©„%-s`¢é@C‡Æ(‹k4›P7ÎÀâ<-ïœNÛ×;LÙ²Ÿu`Ö“Ù9¶%Õ8¥„gšÄ‹ŽÑæ ^M£‰¯>“F:e؇#LÖ„Õ–€7£=s×Ê•7ÝÔ]Zœ'0£ÈR/X]ݥϿ.ʘ´e'ñîB˜ã aŽ-„9¶Bïš–s×´œ»¦å\¶fIËP©˜c+wŽ­Ü9ïÊ+æäbœ“‹q.t1N[«¤Å,ùhý85m5“«OÙ™oZ´$­œÅ9ø7Ÿóóš9…ׄ×sgá5GlÔ+]Ë ^3ÇyÍã5/~x'­Øã[ˆ ‘‰ÜÈg-IlMq6¿güŒÏã$e|Óøús9‰¿ Û9æfsȸ‡–0—;? qþÍ:Ï]¨OòmT¯Ì—¯çâm‡g›-äâGd+F´ ÝrÔ©D®˜;ë©b8¼RÔñÇè—0ðo"ÛUf”•fôBŽ“…ˆøŒ¿êKŠrÒFìS2±BÁ#ž+–r4~ØIŽÖã£T¸Õ¡F’š5;LkOM6ÈØ@ÆÓ‚Òì{Ö ÉìF•[ÎE¥s\‘Á´-çÒ¬‘‡†¯fÖ„gœÏ¥;d Ͻ5¯åF9ùŒÄÄ']ŽÒuKÚ›t@q®[°rÒACª³S&ÉÎO/àì´œt¬NÒ>< u×ΉФ­môò9ËLÚݹ µ ØÜè‰1›ŽÖfÎ'P5g¶ðÜÞhfu ¤À´ã„êu¦㹟×6Íc§Ž’×UX0ÚöÎÚúÖ–&™e,Ñë>)A@I‡¨ß`ÒBnvˆ¯%¬k0)kœIæ°_É\¨ƒŽ7¹>ë¼ðùi¬üÌ•q*c¨µMÃvX'╉[–*}´9Y5‡ èXV [bN -¿•AÎ v[}˜Ð›2Ã[«ÓAeå#.ñöüŒÞKÒŽøÄ öWëd%­¸P–ìÌhJçä%m-åÙ±— -6u©‰i¡üÒÜõ¹JDu"Ò/TÎWÏD‰6·JôJÀç®Ï‹^>½Tp¢°Ù«*8Q6 øo¡‡Fu ¬RÑòuA¼¦-4Q|*캹èô㯜¯W€¼1;MM­Ñêà ‡~#`kvd:–ÃX‰0Ð%ج&n[ p¹—0 ¸ h$e£="Ò<j81ÅÌö.º˜½˜(ÈÅüI¥‰ËL¸«P—UiËL\ZF(3þ '­¨hâ*’R l.‘Ц-œ¤íŽÄ… ¥ ~ýnñF¹Ø&äüúÝBÛ‹G,á)U`úQ“¸n•ç¯/ÌOÏãßë³Ó³™òB¡tý](LÏáßk Óé%šS­WÅ9(_ÊeK•‰ DÍÑK¹4B©I{<õˆƒ#“¯] Çq`<½wÛÏz!d¸‡@—'1Ò6ô,ËÊìÜ|øŽ³RßýF„£Áû˜(f ?"Á݈ð›Ï*ňsšBjl%m‰GÂV(mÁIWŠo nÈ\¢¤Ñ›Wçù¤Û®7±ÎI‡ïob“ŽÏzˆbûìƒZéTT¿¨â’øÓ† +¿mvŽ’ ОáЖXk’ÉVb[¡Ùhc•’‰›%ºXâ¼0æ~ã)±ížL¶N˜@ •*ì¢Êc±ÑÏÞœƒœ”|áü‡ÀÑ} ÷ñ›Ûljܧ© Câ)‚K -qûŸPâ4- Ä½çHíKZbÇ 8cœ×«€³ÄAñ=Ë™üáâÖÆŸ_©aùGq›–_¨˜ŸðX¬œ ó£"âZ¨¨€iy!Ø8Ÿoä×ç,w”Æñn>SÓæ+gjܵʙš½xö¦ IÛ“Bê]ðBÒ®ÆB‡–ÿ9ü$ŽÕ?5Ô$¹@@¡”ZÒÉ”§Žâ£DIgC^txÊJ]FÒ‰ "§œZÒ1‰o€ˆÏ2}ކœ$Ö+9åQs-i-M?u®%ÍÂsNk#MÍÔPGØBË2‹L q¸¡Ç“Äãt˜%LÉúZ62¸pŽƒƒ³§ÂdWC«=hóXØ«=§ƒßb¡ ¦äf8¡º>ÇÒæ(-3ãçJ§œöÞëZå;St ˇuzùà°‘ŒöYÀ)KËîßÓŽŽ³b•+w`çÝÖ¬®Úì´:ا°n›°El“úf6ÉFÓêZŽÕÀý¾Ù² šÍ´N»Û³Ý¥[цմš»¯Á†ªeÔqgoöl?‡¶;룑× ?« Àµ¶…/À«[F{õFñ®Éé÷MØ¿›½†Õ7hä Z-£Ýè0Ș*…%H« ‰5“ú êÔa-€¢úym Aè«7虼±–Ñ=óÈ´›fÏ¢»±gÖ  Å™Ph©f:0œV«%P hƒC ƆÂKi %üóÚú°avûæñ8è4†‰wgA×BÜChE·×±š°ç,"¦P©{ÐêØn¼:4ZÓtÌƶ;-¬Þ¹i Ãáx¤¿Ø¸–´x­0¡0bÁå9¸#¦Ô%&-e)ÏT®%-b_ó¤µ,eͯ_]‘ëI‹U@Ñú­Eë´ÆU’V°WRhÒ÷J =‹1ˆs °^O¢Õ¯}±J[ñ‹“¼ G!^t&Ü€žõg¹´<§ìðõ$v>èIôê´ø½3I¢ˆÌÒ]Œ52¦®`¢Nh9œ1Ï#_~Ê?°lõê¡~RÚXh~FbŽÑËO—D[ xÎ×x§Í³•ôÀ“xj@IDù\µL¤¾ç:+¥É”a|7ïBb¿I˜eÌ‚âXðãìu.Õ;ωí+Ü© I\„‘TÒr^¬¦‹@.Øo‘~Kô[¦ßÙéÔ§FÅBâuejH)ö©%/d>PŠ•ŒfdfŠ3’©Õ33¥™:(C@#3Sžið ¨Z333;Óä@o53337“ZÌ·˜hq¾°€=S‚—ëü¥X/eñ2Ç^R—š´Ä•Š %„/×fùËõyöR*\ã/¥ÑJMZûf¯¥–¬+&Z¨ ¬›¿zæT ½ÊÄÄK!¡$zv&WÝÌgvîíTïTFBÓèû¨4…7áBëšDôf®¥–Dö°•þ_ þ•3ó£ À¤-KØ–"l“±Å‹Ýà…¥ô5O”)•3(„ºpí:ÂËõF†{"¦ïÔ¶5϶òk%ì‰<šjq;¤h¸Ô 7©.è_òõ¿þsŸÿ†od±aŠ6ܺ I®¹Ú5¥ ph ÔDàr(Àzv‘[nF«ì„C*WÐ%˜«Ã´Ù®Œ æZ….TÚèšìØà¦uhõcô‡Â¡Ì•žêP/sT8 `¾›¦Öí  Y ¦¢gØZaxpÀ,:<®½™Úàf¢Á3j¨¤žsIK{¨rMŒöKꂾª‚“8)uÂ$™aEI(¬nöMÓÖÔøŒˆÇ.a¦8PÌsင'ÁißcÖ=Pm¤bY;Ký’/As¹{JCæs¯ c…Ü9°6KV''Q*od;\2Pç¢t[þ¼Ø•™Ô 2e` ’\ ÷£(˜Û_Йj2 .¢9¬“›”¾;Ó4= íI)]c(Â5u彡¼+Cæü¹êjÒfúøRA‰‡5> >’XøêÊê[=Žæc˜¨9ÚQÂ%²DB¥îŠ$oìáRhU§©uÒ^¡;¢øD‹ŽJË·L’m†&ö:ƒ®V„•ÐF1è:jvÑ(žW.ÿƒb#vŽÇ¢¨ˆeC¼ÁeJ˜ ³Ž'Ò<#Û7ùô(IÚ#Œb»:…¡ëÌÙ¬b‡%NÝK‰¦ ˜ú/5àD;ÓéA%±sêé•zp…qZúSÂD Lqå¨ßêYYê“8¸,Pf»i £ˆ»'½Rª,VWÊ«ks‹é 9‹ôϳ/$³¨áùÂCc2œq_p†ZGg‰ÑrgÛÒà©Ð[#2a .„Gœ‚gÍvaüA¢.…®ß5Z^¾UŸ(Þ}o‚o´síÌÇ84+ŠæÍn®j¬¬6Öšëæ­ƒÛGVëÎÝö¦}¯sÿ£àäÁŸïi»$½ÈÄ øä‹¼¡D³—Ù9éšÚ„ 7—;2[Ý x$µ3ËÆŠ±«-ƒé½h*Ð|`ßß’yltvÿÍoTšNNbî™Ì‘AžÕmóx¤-n’¡«tª‘óAÕHņXµ¾šÒÙÎÎÎÎΧÎŽ8Ž§ÜŽ–ÓŒ:¬‡Û·íü¸ÕËÓ-ÅIÛVWÛ!íÚ›d=Ñ¿>KIûÅÀþÇgyñ ×iwÚ´Fð«–dù0Ææî :M›±;ý™‹²µ[L²o¨`õã³Õ•µIûÙÔÚû±š´ç»ŸilŸOÝÓIû»ÀÌ­Kå6’Ø«\|6DIöcÆÆÿEù>L²Ûè9TµŸÚx~ȵïr9aHüÍïèV´L,R»š»Šc~"gÃu£9ñ‰jÓZÜ·ýâ °3Ÿ¨†¬²cý¶5Äã{»u’üÙ4€¾a r슃Èê rYd3Zs"cƒ‰\ˆS Êfƒ9kM‘‰¢•„Tõ\PÜ%>ýZ }Σ¤+î="#ºq¸J.lpkÐ šÀ]Í„ïÙ9†7HêÄʨ֨*_ó!Éûþ¸˜u<ËHSð0ËR`1Éjoxwâ¨lu9ŸÁ?y˜Z¶SGn)ÜoÜYÝ_Ýyt]O_™”Fv˜úއ3u£€IÄX£(õ~,f³–xF´öÑ—2’“LË&çMôž75õŠÍ“ ò&VíUÕ+…·•4ºÀÅDS¼©%ñöãÍÓy X㦔(‰}æ*&­Ag†œh8v¾TÊÕí6ü-ç § gs›ðw®böúðw>×?Àß…ÜÀêÀßk¹ÃÃCø{¥/rÍø.s‡GÂßRåç-ø ðêCø;›C™îy˜Ã‡G«ø|©˜k<«_Dá_á9,œ ykü¤xh]αßb!?»àåpØváÚùÊ(À3??Káñÿ-• so±07[\(–K^\˜/AüÅ41þàm;Ùëtúqé’âýû„<É4äA¢þv±òP#s“ð·ÜùÆ2þEƒ“Ÿ›…7\Å??‡/°Ì>3o¸Ð/à_\¾ä;®Á+„üê—¿ï:¼£Aȯ~ùO 'ýÚþ ÑUA±”[aÞtŠÅb¦X_¥R Ë›ßårùG¾£8W¹‹ŒýçÑéq•(×ÿ LßW¼Æ?!OêŠ&:+(¡ê] íwò?%ög–ý™g®M§ðzh7Õ•O©{åóS_þò—W×¾úå/?ÎdìÜÊ]cù*°ÜwZÞ³ÔOúÀ@Xý#­0¼V€}PŸ6î&u6“–qzh’—W%-Š’ø°Åý=?úGS ‚=H4Íû•o7ê¯|»ØT¼÷ô«¿åObAàA¢ìW¾]ÈâÖIÀV- ¿¡ÀÔ…%:Šá«?óC¿[5-Wɲڃ$5Ú\Ü›ˆ~‚ŸTëÿêùÊHZÿç Åàú_.Ž×ÿ×ðÈ™G«|¦Ú;,V´Ý=mv_ð ÿ ¬TÑNwN5X ðÿ‚Ø“ªù,<Œr¢ò¥ÛžŽoômì(ÍŒÜîŽ$f[< ˜Ä#Ö—%µ/?ìÑOTŸiý=úµo´Öýœ³Ž;{ô“ × c~RâÔÁÃPøwÄ›e •¾XX:É´£ãE‰ ‘ ¦ý"IÊ6ÏÊ6‡6z¤VŸ§ÙÉíNÓðQZNÿKÙ7ýò_ñ+Õ¿ý«Í7ÿÚ_÷ëÃoüw¾E»4qùÊÛï\Íê“SÓ¹ü 2k³só ×®WnÜ\\Zþ,üÀdkD¤mwº¤¢þì˜ðÝÚÞ“ýßÿâôå—¾íËßþúÍ¿å;þÝï;ëoûí¿ã»~çïú?ÿîÿËïù½¿ïßÿýßý¾çþ¡ÿëð½ø?ü#ÿ·?úÇþøŸø¾?ù§þ£ÿø?ùÓÿ÷ÿÇŸùþøÁÿô?ûþÙ?÷Ÿÿùú/þËÿêïüÔWÿîOÿOïïÿÏÿàþ£üOþéÏüì?ûÿÿóÿå_ü¯ÿý¿üßþÕ¿þùÿýßüdDüÏñø¯½òöWWV×Öo½{{ã[ß»swóÞý÷·¶w|ñƒ‡¿–öÿð_ø‘¯ü¿þâý£é¿ù±ÿ÷ÿç¿ýËÿßÿ+õ¯ýõÿîÿ÷sãø›ëüÛ?ñµ·–`$’¯ýÂ/Áï—bâ“ ü›¯}í—xr|íÛ¾-2Í/Ò~ü~Ò|MÀ‡¸OÇ8áâù6Û}|ß¡ñ0 ~pð/áßâÿõOþk(«ð–Hß/û¾Ýçëð ö}³|xÀ¯ˆ|0ö›ÞúÕ‘Oh5¢Ÿ_í{ýÕqÅ‹ðȲÏX‰ñó†= ë?Y+ž³ŒØõ¿ ;ýbðüwv|þûZžË‰+ ê%wAÑD̉^\Maq³g’/s£oGÈt8VK{fö´Ù3—µûf¯¥--jsùba…ìŽ{°sKkwšf^ÛèkÎQgÐjj½­5Z¦aSQ(»p-WGOºÅyö×°›¯\Â/íþêÖºÖ²ê=£g™EBáNG8L ÕÔºP2V?ïiN£guûù ø ºµ¹±ù.sgÖ°´ÍpXf/GkšÌ h/¯U[}¨ÞáSEpš3èv;½¾° ae0%3am  Cñd¥iF;´ž™èÜÐÕvÂÐÅåЪjðd..êVsÐ\r³TûÀ]ƒV_khh>þ5z-ˆP2™™~Ð;Å A ‰ ð°G›4‹ª¡"ͨwÐmY0ùr¦¶¨­“37´(Nz¿ÂïãÖ½‡q wn¯kï?ØX}O[Ùº÷Á&&_†š‡øÕ˜±b«>b¹¡M¹ž—­í’ œžÕ€J#ËWë×ìZ¯vP3jf­°P¬ ËõÚ•Z­¶Ü0€÷cè÷'¼~“°Ô´›Ö›„„Ë6Üã‹òK£þ¢4ýrxòbvzîe÷£…éù—Õøóò¹ ©!q¯gÔážîGÕçÏ“ãâ#bãKmÄ›ù£Äøä)R¤IâE`\K»ñÍã“z/&Õ-¡c+ÐH®ÁèIÒ§IQ+ Ñ"~ii)~°/%L†%„Õ×ôT‹›Ñ Ó==®Ò¤Jždr|gfžd!‰þ¢8]RˆTÃ[ì#¢íždn6B"‡^ŸZ>5üåƒ_o°?ò¯x1D1ÄߺûÈ<â4Q=–ßhðj‰Z½I•2Në“WuQ/CB—o½F@±jJLë[ŸÔF­Q­5voÔVPmX(Ò?ó†ºÆ=Ù5êµ½FÓÜャæCt÷uÏ}m¸¯M÷Õd¯u>pµ{ÇJ(58gYJ\øO¼­Œ¯P2ä3 †jŽèƒØbG( öí ö·ãÇרûרäBîúÞÔR ß"ý–è·L¿³ô;G¿óô»@¿×è÷:ËÅ3 Ñô’F`~Ò&œˆ¦{ôfÉ·A·Cït8zêßñ‚§zQ%A4•4E¹ÝÝX‹—YžC„±ÓÂ(È˜Š /¿*ÐÙÝ'—ö¦ôKÙü”¾ht? Ÿ×òÖ°W˵¯åF-?xzEÒëK@áy2L…‰ $‰*&:ƒ€ëf¯$%ðBx ­ãç³ÕšÖŽMÍ6MØ’`»¢9¶y Û13ªîh‡”¶eÈ÷ól5»[k¹ƒ  í ß‹ÉÌ&ý]§ßJ…èƒB¹R,­*•ëå’)jhþß«°{ëÀÖ—ù‹¨Tá9_üÅ €¨ KˆÞ ^·œ#6jùl­ Ô¾üRåý›/æKy6vªùb þ/ç#§KŒF­h4Éœ8êèW­9¥×œ©MøÙ¾W…ßlm›‚øßÉZ~xùEmcSƒdt&àt‹üo)Ëcáð`xD2ùZ‚·lä€NkOîy5÷¸ÖÜ“oµÜÞd¶–ˆÑ©bV°½ùcö§”çã ×Èw?Êõا3|êŽL4ÌåOrù¨Ê¢üU¾k~”'j:Éê±—ÅßZ*3IoM‚ËÙ¸H]àv2oð¿õBN¼6ʹz¾!>rFjU£É|AÊÉÈS²rŒ¿X^4êÙ¦©ëÀó5õ¬© úÑ4Yü%ˆÐ›æé§8pSp‘m4u‚¡»»eê-š{Øpö†­´xg@•òM>†Wò«ù5%œFi~•p:óbÆ^öF~R_æXªMàð­MðÚžOh7ø'¾j½£AÝèÕ£Ð$ hVC У2±Ai¶»ý¦Ç“™Ð'TqÒË—µºyˆzBìTM‡…¿æ4(¢dÚZ]kèÚ÷˜*}fÈ‘¦Eóˆ’ji êšìòP¿€’G/K4jZ}·¡í55ö\-аßù›ÖŒÙ@›lÑ…!„#¨™5aˆÁËQÖÊ~ˆ/O³­l^Ü• ˆ0»¢cã¯"3/Wdö劰\I±[;ÞÛ­}ÿø· ÿ€„ÔÖà_þÙð¯±?…RIðaSÚãÂpÆ×jvmXš^, ü“+§x»¸übúåÞ'ÕOjW²“Súé‹åé嗘̘¬³8¾W’;3þÂ?E(™âßS Æò™0¹ýùD†åsÀºuíeíÁfVgáÚõ‚çÓ¨{>÷÷c˜!LÁ–Óê  ³èpwî c™2¡›CVΈ„»œ®H­Š›èSgúb¶VÔå—µÇr.²Ý1}B¢EøÇþ™3<›0z¶®Ã¨Ïц1Ÿ=„9£g-}ö©^+aM,×fá f¼^òŒ}ºân4’?  úÒ0ú0-Q§ñ´ß±­†~*´u] z)[æô’’ò£|ál-~R^÷Í‘:Ê;2ºÐº[h+~ ø] FmŠ/ç{þ¿±1Èz3V\S˜ýŠûʪNE!4ínÇÖ¶Í®V(B7VÊåJ¡¤¯__5V8!dˆD1/ K)èÛ—Äž•𠘎fÒÃH§ùÓEñ¾nÖ¨ê‡Xžqø­Ùr×zð £õx ÖñZ_½j¨õéÄ>3sÐéCkªž…•˜o‹;`÷L–…× ¦¹L TC žÏçOŸä_A:¤ äm@!ø×ì‹#Š^Ïl1My¯ŠbW×&u¬2 ÿåK0ë\¾#f#±|/…ó”B¼â·3ˆX>­¦`‚h¦óÄÚåF§Ý†])^„™Ã>,ž°è!IàkO}Ypl^É¥ñCøW¤ðEÁ”®‰Ldó¢5'‹†çM}…wDõ¥'º!އ°÷bƒØfp§d‰I. ±cŸ=Ú…i›<•¬;µò$XN—b96ID ï±2> çÙB­¿§ë–Í`¶û¤V« ¯rµáÁ¬Ó…â\VßÓ(I cEËj#gÓ'µšŽ2ìù\æn8Œ–Ö2&ùmaã‰U–š‘Ù…q Ño.}aúFe"5Ù­íÕ (±P^p‹žb0q[¬Üc…mk®:L;~)5P æó¨]Îüf“‰_*£ÏÍ@á鯷Ž7®=ºfFMt(7sš™ÐxS›oÚä£A§obÍBð<±ÌGûdV>º„ìöñôõ©Ó2€ÐàÍ1ÁËœF” O§— ô›'źÓ0ºÐV·¡Y÷õÒ¢¶º¥g k'0µðµÃJÕà µl«oAG£ê?ëÝ7jˆÖòoX…ÆCÿ9ô!â²v0葘Dç©q2­en1Ô(auØøcFÚÞ´‘ÿÉúP£ÚnøÈ§Êî²DVg/ ObóãÕÀäð sþì…Óc™RegPovÚ†eg"ç¬'ã›5„‘zG¶00ýØ`xƒª?ð¯~Àc@ŠJšŠ£Ì[³Ù3'zÉ€ãß?ŸÉµØÛF›™š–{ŽÖ‰ŠË<§ ØÏþî˜`ýR,À¿u›â—Yïb“É}áß’zôc#-ôPõø®JVé³7.³¿x7Ù£[ ÀÑÍ7Žñ A‹ØßdûÂWçO_xÃê3ž.ãõa¼>ŒükYb_qdd§ƒ»q`â’oÔØÒ—%zäÍY¯3€ýÍ'~Ð}ö¶¤ã‹²1½ýìýñEÙ˜·þ$°"嘷~ª?ðãE{øu™ætÍÆ›58–<ÍãO¿gX-ì—%hmÀH ËüÎOã(zh‡H^_¶FˆÉqiÉj Ø=ꯛÇìÕ¾4*Dj‰¢ÃÂV.ÄG&3#z>÷—µM£®Y}“®õØý ôtìsU¸"†AŒ,¤&f§ÝéµÖdªåE x>fƒ3¡¶g®kHUƒ¼b$`w¨38Y$&¸¸r€êýe\³ýÎHšÍáŽÞD„hcœkh½’Ò =ãŽGAÕ7Ä,‚!;°›dŒ§s¬µ;=“Ý6;ùL¼ í'þpà²V‹ga¯2‘Ü?”v"b•8ÞÙHˆìQ0½C=«ùF:Ž’´çÏ ã}õ.;£›Ðœc2–¾ªc2öñ‘1—ùñhæ„>1£y¼êò´ãUwL§bª:¦SçæÁh6-¾}À['ŽüÂxx‡wB ŸˆáýI_†aœFkç:3Nwhìë½ñÊ7& ‰%|"HCÌɺ3ÞŒž¯®ã¡žX¯ñ*8^ƒEŒIØ4¼9«` Y¥FŸUÙñ©W©—«’Hª#ªËú[8bÕ› ô;$žÑéñÁ)o/Çt3¼ªcºytóô34Ÿ‘8Np@rq€ çQ>׬†Òh}›T­ÇÌÒxÒ'”ð a–H|<>Љ%|"ô'_ ŒIØ4D%gõ'!k<ÔéùÌõñ*8^#š3& ô|fICÒñ8vÐôx°{B ŸˆÁ>>Öä¤>yÌкˆæŒI=ŸYÒ0>ÖõÏÈP¯‚ãU0¢9cÒ@Ïg–4$k 0f³zåd*ã0ž %| fÀ²§´O™µÕ±«2ƪÝW×1‰K¬×Ø  >ãÑ<ÍŸµÝìxÕ¯º¯¤®c:•X¯±A•ÐæŽ‡÷xxÖ–áñ¡ò˜4ŒICTrVÿñÕj²ÆCžÏìP¯‚ãU0¢9cÒ@Ïg–4$TaÇ•ÊRª:E¸1û9Ÿ˦ݴ2™£Þ¨š&9è~ÔC¢;¾EÀÆ(€k|C>?¥ñiÇc²Ö|².:Žý‡½Õ#7ênö)‘}„üJöe飔ý¢ôR–ž¢Ð`5H0@ü°Ò5Å•ÀõE„Ø­ƒ§!_å[lßÉŒÔ[ÙÝ'ù½I½–‡— ¼Tvw´½©l~’: Ü§Å|ßê·ÌÊÎJË8Òêâ'>»u¶üýQò_¶´Kf½Ñ´häí~kìM]a5ÿàá£ý'1ãøxx¢æ±¼™xŠý'@.±–`¥ž»•˜XRQŒ»2Óö`þ£>rg*ûùóçž"rËÌ­H¯VÅǾúPí¼Ð1KÈæõI(ÂqÓÎ(1협)ãV×Oá·2Åa½RaUhT*8 vsÆó½)Ž›ç¹(˜”âEÒçFBÒZΛ{ŸVI ãVr£Õ”…K¹òldk Ã?xahñY]«Ñg©ÀW`)´ÇN¬ÇƒÖ@tY¨P>DáCtŒM¥'Ù°ö1ÙÉä­;/³TVÖê¹²Œ(y"®»eODÓ( JÄlA¾C„šÈ›ª ~À|õdó|ø#k…yï7| ”²±ý$[Õ³+zvUÏ®éÙu={KϾ«goëÙ ½v­v£‘˜‹[ïÞÞ¸½¡Ù¨Ö®­Ô®¯JªT½¶r}5¿š‹lJÃz¶®gz¶©gM={ gõ쑞µôì‡zö©žmaxú:êðÈúði«µBTvÜVYùþ°Ä8ÍBwè/ Ó…—Ë0XÍo#è.`w¯i*1ötø­ÕéOVøÓÜ{Qžž})‹±yo§OÓóéù51¸‹a–´Voà˜ÙšH 2|ÐDã!–ÒxN<ªÕª¡&œ)Y¸/5,å5ª—ÑXú§{Éë†QÊëÈr§â£OÅ_‹ŒÄþ>å¼ÊÓ§4òkÍצ_Ö¾ŸR*„[¢¹ù…kµ/@åù¦'ô:ìoò'ùHÂëæÆdƒ§j „¨±‡xàÀ ’ÿb÷ˈ¡Ñø0Xnÿ+Æ…aàšÚ” ¬„Ïa<â[2 H¹ EøW‚eø7 ÿæàß<ü[àÖéŠh¡þA|q–® Eˆ/B| âK_‚øÄ— ¾ñ%ˆ/A|âË_†ø2ÄÆ¶P†øò<Áá±@aâg!~âg!~âg!~âç ~âç ~âç ~âç ~n©.üƒøyˆŸ‡øyˆŸ‡øyˆ‡>-,@üÄ/@üÄ/@üÄ/@üÂQê"´¿í/Bû‹Ðþ"´¿í/Bû‹Ðþ"´¿ˆ¤ Ú_„ö¡ýEhÚ_„ö¡ýÅ‘>øñÐþ"´¿í/Bû‹Ðþ"´¿í/Bû‹Ðþ"´¿í/Bû‹Ðþ"´¿í/Bû‹Ðþ"´¿í/Bû‹Ðþ"´¿í/Bû‹Ðþ"´¿í/Bû‹Ðþ"´¿í/Bû‹Ðþ"´¿í/Bû‹Ðþ"´¿í/Bû‹Ðþ"´¿í/AûKÐþ´¿í/AûKÐþ´¿í/AûKÐþ´¿í/AûKÐþ´¿í/AûKÐþ´iøñÐþ´¿í/AûKÐþ´¿íÇ´¿í/AûKÐþ´¿í/AûKÐþ´¿í/AûKÐþ´¿í/AûKÐþ´¿í/AûKÐþ´¿í/AûKÐþ´¿í/AûKÐþ´¿í/AûKÐþ´¿í/AûËÐþ2´¿ í/CûËÐþ2´¿ í/CûËÐþ2´¿ í/CûËÐþ2´¿ í/CûËÐþ2´¿ í^þA<´¿ í/CûËÐþ2´¿ í/CûËÐþ2´¿ í/CûËÐþ2´¿ í/CûËÐ~ Fðâ¡ýehÚ_†ö—¡ýehÚ_†ö—¡ýehÚ_†ö—¡ýehÚ_†ö—¡ýehÚ_†ö—¡ýehÚ_†ö—€˜ŒIÀ˜ŒIÀg—(œóýÝ'“{;Õ­u|yQœž¹|çgÆÝçþ6¥ÙؾsG†…å%s¶–¯5kÍÝbîúÞ²^kŠ-pF¥ëåküûÚ”®•ŒIæø»÷‘P³ÙåÅ‚~ /Ë‹µ¦®ëà<ƒ¯ˆÈM+“ïëŒì².Ï !¸ªzö ÓÑkÎT¶v<%Ρnu:MÍr´ŽMûqH¡õzËä`à­êFÏ= >àY°eîQ.ˆÖ,[¼ÚyOæå‘sŠ Ìl­)ë6´#㙩•øåªSÑæ`¼/ðbx⩤Ĕr9 \7eP¥ô+éa¦IªC¥M[[K ÷Imm2»| ]îëá#ÃGæ“,Äël<ú“ÍÎÎEžö»@ØÁãÞì<ß|o°b£2Ç>¢À|`ð€Çf½Çv3³%ú³‹Û„=dßw½[9µ°ðZDé!àž´:Ý£ŽmòY]¾Öj°ë}ê´ ç(r×(šˆïÇtSá9mÁy_Sá?VÕBqþ/è…JµìrO㪹Ç ?SD /;x‡ X>JÚ0úZ³s¨™-³{dØ}­=p³…×%ÚQ§ç˜Â6z'0¿ê˜éŽm<55çÈè=Õ$¼Èóäs–× tjƒ^Q ˆ´ø.é‚Ã[ÆóŒŽùÌì-†&Û«šý>]ñ¶:PHèã‘Õ럠0† eÃdëtMv5ÂΊÄRÓ{ d˜LYŒKé&+¥KVŽN&6ÞžÒ““{ÎÔªeÕ½u‰:W¦“"ž³tæœå`Nµai@DC¶5Üü¡uÀQØé´Ìš]·êX³í&A'§â€Ú)Ò8iàD'b(?y%¾>Wêr%¡WÎW‡šT ™"²F\VX=ž>YÑ•ãášgoOØõÏŠÑ)æ˜r@*v6'Àµ“àÅev.º2‰Ãr/;ú9°³rÁ Ÿä'W"WºØYì ¶ˆ%Wâ0¸ –YÚQy <êè+|l¯Ð(|²‹‹ÝÔ³åù¹YØÎeˆÉœƒÿ¿`zvWSkîò/ªXd‹`¥Ppù¿äýŒ\R’¬qZ?mèá‰X}Õ;ž¶Ýé~ÔsúƒgÇÓ‚–—­‹ý_†øª„¢ ‘Ë>Tª(ºÖ|‘®ÂEÓÍ6÷Hµ‰½©ÓZ-¯ON¸³µ b˜jŠÆÕ&(¶&âkj x'Ê»ÛPˆÅŒ1{Ö“™VÇ>œiY¶9cÙ3MÓlÎ[ý#×6ì“:¸0Œ†­.ÎÅŽ óÀ·ú3'ÁŒcÂzDU÷¤¦:IM:æÄ‰ñ(óÿ:Sº.ö¸/·ZÇúVÏ{(È­âÙcÛ´qß@e ÚÍ›ša5Qw_Qâ$ªï%•2€24D‚Ö±['ü´€NHPü’˜x2—­ë _e¸¯S4é°,˜.Nd€e]^2¦tU“Ã@Ý ý¡þ´ËKu}Ê ª×Qâ‚Ã=RÖ˜Ò'j| –°bГÜtA-Ko“5]Ë¢dKÖhšúàà(«gõ!GH-’q 3Öx…I&F¾eÔ‡'Ïõ(d<ÝáÑ8ßµœ³B ŒQ¶˜…f…Ó>>ç©o -»<ÔëZCoj‚ùÂ3-šÓ 5Æó)¯bÊQN“ëp!74<8Ë uÄúŒšê –%=à’"Ùeh¢.Åj9¡Y‰¡N«<É*¯TUŠÙIq;¾*VT(¤’²ÍC)Í K¸,šÈ ‰0‹ul{CvëX²ãò°k5š1_Y•'bk.9¤Í]Ϊ &H~²dØz~²mµZVÇæCˆ”D0Fãá¾Ð»wîlÜÛtCk6`É#·õwïm­k;·«›„¬•LMÌèB…j¬Bj,¼ÄÆì”>Puw0D–\•‹iÕÝÕZuKXä³GFú™Q­ XÊ QGÇM7‹€Ýé0 Øø ]$«®È ÆÊýiè§~9[Ô‘qã0ÝŽúJô€f ªž….؉ëB~“rùý˜3YÃå¶/k÷Í^ ȶ4Ú°sÓð:å¸Ü‚f‰%µ»:[3mXi½¼rƒ]ø¡£á˜šÕX†ÕrpEfS{¢XšÈ³ú.cŸ¡d,²€•Sä$Ü㣠_ŲUoX@$à%NTýJbôÚë(d&-<¾T—ü¤à!É—ÞjDãòR‚  ÁCÈ)òÀ ^«e5}Yck±FÃC«éÚ©®¹J0M¹$7uΉ{(O ²îñFäsÆn,ÁxðWd9- ‰L”˜]4u[ÆÞ‹mŽ«_+wª·é‡}aÜŠˆƒD·é'rÛ@É=™)È%!ÄQ :¸$ÖŠúÙëtþ ´õj°U×`ƒR0ª>©Oz¹Ü+1 kOõ)AvϽ'‰|ò±ÎÛ5öà‘Ï#NjרûcÅþ'“#ÛÄ©Ÿ8Z#=v]Æ‹\J2¥”Z¦"D €³¬¤RÇå¨J²OxóTj9m­d†·r*İ2\n”ÅËŠ´1l‚ %ÍrL"FÄ¡R¨cBš&º¦Õš/J/sôt8GŸiŸS„òë’Œb)ç˜ÝÜõkâ«p?"†"&…4<5lbçÔZÌwFKÅAü꓆o ˜%çc¦‹cô½¦qrê løÃçŽeC¯Ûjø¶^Ýy°µV}Ä>lÊ׽ƓHN¿qº²¢å Neȇû»²2ŒÙ<<™òLy¦‡š÷aÚ0°h<3?Ý5öÄÊÌ'c–êkôGÜÝÓÇú ×éò³óƒ^‡òÞêv#rïT=èY Ã-ܨŸR»wë¹Ô¢ Ünótˆ!'§Ï%‹ÀÛÓätƒýa8|.EAíºéX‘xY]ãdòá#Þ¿´Ø×lý µÅX¨Ù)êÆsJ§IPbqÇ…bÅ©aÞÝWüb•xJƒŽ>#‹z® OJ < `!Ç婤¤gΨ¥œ9j]›M­3è£nç~ÆX4âôš“8=ûÐ`MëàÀì™v¿u’×>0µ§xìBL]§‰šó¹mœÔ½³^ª8Í3kGF·kÚÄ  ˆôë™ o±ŃˆeXÃþ™Ë‹ù²–ƒm2cd„‚xIÓék—Ky6,jÅeýŬTûð+G¨ïqо…Ê“Í Ã1ð  3ÜVÊßý–—u¥Ñ¡­ÿT!"@‘.sC´Ú@FR`\84²ûÆSq@hÚÄ]ÒxžË slì8«oÞ`£Š¢AOÌØè´acÕ[ü°3ÍNku˜"W›ZÏ Y!<$©;ØÀ8^Ÿ à<ʳ{H/[3„—¹¾Gî ‡‚õqw„mRGß~ø†ª>M‰ò/\™„c¾@£Ž7R>El žRÂRèa”áZÝË@–U -+LœÂ±Âaá³ÓsY­üY–=ÍQ‘I’Yu†—E+–}”Ú–N¿Ù£âÞùfüWX©`DƒË:©•¹â©mÞ?L†,XŽ'àª)d·ÞØKq‡ É›*|X‡›{â´aÊ Qy–(W9žÂó->ö(rOÞîÕÙ¡R53æz½)ÿR.(T4²ÉªñdÏÄ*Ý=ÒL«µº¬,þÉüOŽ¢O0:ò‚þp1¦Y][1j1â+ae¬œˆ*¢?–ÉåP8DùÍ‹8l=¼ÀÞ#õÅ1‘QsDI'ܨmË6G[v ¤Rß×ÊÂD»µã=·z»µöÒT¯é½UÜ­m省¤"ãB_kIeiž6š¾ÙÃæ[V7¹ˆSó¿R§9[ËŠúd³~Ë!Y!G¼ÑÖÛÐÝã-:Å×Q°Ä3“§êòxwW,¨)þ£òS á`§Nër·V—!®l¨8LV I¶­¨¦c[R¾%-g#†p‚„¶Ó‡é¯OÊž¨ó>àáõ†zÔyQÖè´yÊiÓ·a:ï6“ëg7'̓C7;|°ÅuF,Ù'XŸ½ÿ s º©äÄvõ£Có Ùس>d1GÖ‡bÓÂ’‹#1|X¡¼ŠzcÒÛÚìÔ'ußÊ”ER= ©ÃB³D÷"„b¦"c0Ï”?fÅá'› øO´’}ÈÈ)w'åËI Ò}¼L–©ó“6¿§\t|Ï•!ßãÈhÁ®’Ìl½ƒn×<ÚÓOóGrõ#“,×¼rjLæO–­ì‡§OÅD3YÇB'០‰hF²ñÙh²‹PñÀÔKÖB£kEaäÁ“ÄÉß´úVùOºbFöÔö£‘Í–‹ÁQnpÈÍ z浓Y­ÉÃHrm䈱\ËbØ´FZ)òŠX`;æéçQ|S'ø‚vs{’ )ö5ü„‰¤'C" ýT ’µØR Œ±åZÉ¥tD5øhS¼p%ÌÕ$µ2ÌÆZ *÷ä@Œaþ‰úÒé/JR¼’Ô‰ Ó~¥^翜îqëüÞò!¼<â!Ù¿Pø‹çç9Å•ìCþw塨&¸ˆ}‚·ÈꊈZVâVD(®¡SžÐUÉàG ¸¾¯rþ–’Ó_v1¢lÚ„Çàþ <wËñ|ߟiÙ×H•´®-×ýæYØ«7r¸œž ‘ŒaBGŒ½„!'Ãa:̽ Fˆ}€l’g# IX K¸ ±’’ÍS5œïX3ké²þ.qg]«ðþ–Úç.óÏ‚×ýÜ?¾¥²ÿ.„õ[ïrþß«ó#,ô1ÿâÊ@Éëß°¨ÛßêÙÄ­–¬Ñbƒ VKÝ!x¬l<£ÊÝ#„³­€sž]BH”Ø&x£<û91׸9TÏFÁòl<óBÝxàGlxš;÷oWÃ÷ÈíèM€ ·Þe½ ý„¶XHT'ñ¶‰¬Œf¬®­EîxMâ¶b‚Gì (ßñD™q9H)ÇŸk5zó=t™<ÒƒÛ¹·ƒ»÷îƒ;;÷ï¬kÜÛZÛžÖ­31¹ýðÎ$ßþƒEf«ÓÚŠØ€Xbâ«´ñ RÚƒˆÕPÙ„øÉ¢» ñSÒìò¥ºž—{¶ÛY^l†„© †VˆéÙ¼¼+5=“‘1SËž(ö· ¯ûÒ)ÉB¢_7ŸÙåI–ÒÌO/$Á$I`æ¦ç“À`’d0‰µ™‹¯M¶ ÓìöRöü”¾ÌO_i!#s}(èpš­=wstK¹{siïö}ó{v2Q7—±WsÂ@täýA%¡«ZQ tL’vtí‹Dšk怙–HC÷ž€ª±•|^Ÿ4äLqÖ=O¨pfêuW#…_½daÃÒfLd!A›õ'YZ@#ÂÁB¯~ƒŸoB–ZºŠ.Iå ò¥«ÓUýéâ1l¬x 0ñ“`= ÈW%U5$UÕ“*^ÀTÖççõϱ:Yžš„Ó®„¥]‰J)X«p›©VVcOm¼)WBSú`ÆOÑj ´ .Fm¨¯ö™×STÓàšÌLÚ]äQc–+´x-WðŸÁÿÖé?ä …ŠcÌÓf dçHÏõ]ÂT¾Õ¤n ü©'j²$VÌ–~”UŽ­›6Ë-ë#ä©óe¼ òÓ×nRCàÉ(e©½XA¶Å˜ZF5¿¢áÓÎ{"#1ŽjQ;žªˆ+‡ŽmV ì r^O”â¡Fózu5j©Wö¦*è\Ô°tÅH„eåy¥R'x¬;ÿlC˜K3Ìá ¿µœÔëS’B ;æ:±¢¼ÅWU!9FÃt%ww¡6"Se·¾Wa¡‹nè"„.²Ð¼š‡Ð<›‡éµ-GU™ÄcÅÇ)úM«zíñŒ?äùŒ?BËo|¡Ñ²Äö ùÓ,¬Ojìïaa SÈ]ÏíM² Xí¤Þdµ]g  1זʳ€¹ü|~KÐöÌ<)wäÉpD^èvÅB!_/ÁO¹PhÇ¥œQÏK³s‘« [†òBH†W„/4Àö…úV^ÄȨz>_oDV-‘ŠØŠ 7q—ù]BS(ù‹Cøôõ[ÅÂëìºÙ—3-ÈÙ‡˜$Z°…‹!¢–6w¸ÍDqQd×¾ÚGBWÙp”–Ù–ˆ¹$M±é!–Ú^êŸ<Ós8¨EÚôi±=‡ ¸U4péúõëºk&¾„B°®ì+r&A t"}†K¦_Êçó” 87ä`e¼ Õ[fï'0/ZÕÄ$ð¹Y,#_“f”"237Iúl M­àËä"ýjò¹¬XЛÂKFƒõn¢vh¦þð èì¬S³b€ÂÆ :}3ÃæÈvh­¨jh±Ê×u™Ý:`i…Ë:¦?9èâx!L ^bŸË Ò4Ÿš º4²n™±FµECI1oÈ…E`mBkè¯lg’ãMqÕ“â*Kh®9„äš3¹ÿ"°¦¢y"É££¹¶íâøf^î"ÿ›ˆt2¨1©/ò¿c¤¿B¤ggõÓªOzì^=B0aáQÐ1õ©È¸ˆ(cRÚÒª3iÌÝ 5¹²'|®,¡½ëðÏ@gzènþÕo2ôRØ2ÙOÓg@b•*% ½TéŒo¬KÍaZM¼V’ì¡Øü_zBÁÑûjžº¥ö>þ¬«ø†jµŽ’d'§N½i0Ä`FÊX@í}M’ÚÍB€-z3ÃþWŒ¹5.s—šŒÁ}ÿ2ª—¨A-«ÌBmÝ-FMC†D"†·QÀ¾ µuí2YPã^KI#ÂÂtª¹.»¹V£½^»R{ß—D$x×£ëm‹€õ7ÏwMÜÁ.½QbñeÖèˆHnÂfXA{2š´|ˆ4æQ¤©”‡d}Fkjø©ÛPj'Ús ½£»P¸ "”¶ÂõYõê »¯ÊD«a%¹\Íz‘ótM—8[e7çk‘Ib]¤º›<“Éû‹®„›SÊ5cð”/6?Ý„NlJ6éÂ9`®q†¶¦HÑŒ MÙÚÆýgóÒý¯%,ë÷Ú¹®Õ,4{a3u1Z|ˆiÑÐìÂÍî;Ó´QÃ}—â»¶ã# ºŠ3ÛÝþIž ›ÔÖDu5JC[FË%Œh\ªD9H¾ ‰aã¨5-ÇàžÆaÃãôN«8ר—Y*¬Ì#F‚É«8첌Üú[˜}‰ÊÜÙÒ{æ!L×A‹lóÿôÞ©aê½SsÈ—­õw-®²)áÝd[æ! bÍøé^À‰Û_ü{ÿÓOïþÜ×~8÷“‚Ä ¿#ß¾&ß~X¾ý¤êðöñõ‡$=S^›}X}üÄ,É~.]šA“;*•và#4%ˆ³,Í!ÐmÚ“ƒ½NGÏúí<Œ¶M]g úC~~pð0ª_;öÉCi À“ ""3@¢ì3‡’õU.ŠjêqÈ*š)éª5{•þ—VÂøíMö¡<ˆ®?4*±µ"‹?}¤¤xhâꟉ:è!‘cJÑ äðG %ü"9Û8¨k¢—¸±´SÄÞÖøâxªO2ãó,¾«Ï’ß,¾ÑÕ«¼ÉÕ«=¦=®Qg«¤»üŽì,_3™˜µÁl*ó}Î½7Y³kÏÓä¢òjÏG+¶‡Ù¼¾¬Ð*ºiÖ²UÜÅÐvæv2“§«fî(MR»»Kìk(ãžk(ÿTö@}ˆÝʰ¶tÓ3Ç™«ŠBº|Òç'w;ݽ]„É}’aly…$7?Y‡Éû„­­Ü„? £ø'áÕ<"ËdP‘`**A]‡$§Oõa5kHÜ“·³Ì.™±§ï>y{mlN¾Í¯·ß6êoóÓn/ø´!?˜a¬‡Uþ²ÚXdñVÉ|ö ºAÏÕ†îÉ(?묋óÎŒ*•‰4%Ul"²ÇEÝŠ%± KLšb§â£—FË ú³ð1ˆ^¼GÉÆ²PýP˜"ƒ…52ø+¼R/§I¬Tgyjàä6\J„’^>¾²£tÍ“j9]²©Ød(xŒË$—Ñ`jE¸4ºGa…Jô°ðE 7‚žztÌÔ”\%6vÑ›Íçu_%#KeQºP¾ÀXœñºüX¬‹K„ ØÔõ©,éXë®ü i[×)THýœB²c=Ç“6EÒŠ›Ô.zÃ/<Æ]D)TIPbKä°ŸŸ1Bj»1ãáu_”_"wðºaA¦7ùÄ….ÌÁyQx ¡32Ziq‘ÅÄÀrAa-Kíƃ g“n‚` ¾#Y.Bì®ñ|k(º•¸‹¢Fs8L rİSød¡gA4^_– ‚Oq 7ðØE>K¼ Ÿf{zÖÑG̳ŒÙN³}=EÞì2Ê)]ÅãÔJíéMx_z!]5V CàȨW°›ã„’+ÞÄLBÂÿ𼿼PøÀLA¥— }ÏQð÷ì¨l•…‚¯êhúAž©°›9®»käuÓb?4>vÃqb–³°ÛØ\Gè0Â5ƒ^V–´:]cg—ß©bÈ;+^g4!ŒV‹I]ã1é;ð…SÇŽYvw2îbnÐ@iø«¾QgÜAQw“E$¹¹Y½»徃÷ïWwtfàÿfumm Ãñïúö6‹ÊÐYo#}ÜùHœzoЇ*¹ÈUÆ=¸j›ý†Ñ:0µr™ñ䪟ôÍ¥Òn!7»Wkž–æàmnï´H^9˜«°ZêW‡jaR Âyñêë*æKùr~–½—‹ùbþò¥Â< *äé¿ÈsˆBž%œ›C8ù9\Œ¢Š:Ñj8b˜VµmØF·?¨?Ѻ?mÆWë-óØp6Ìž¹áÇë­zäØÙ92I¿‚Ô+P—ˆfFsŠ·?»;5™ÛcÕÖOs´+÷ºŠî+M•ôÉ\YÏ-0Œæ¢½ÿxcYÃìÉ)‚Å ž`%'Á–ýÈ5lH‘JJúÆÓ­›$HgK×p.¡O ò;9¥Ó%CI×µImI„öæûƒKŒûªÝ„¾^Bã£jŒh_ØÍ% S>£j|“Ÿ-SÙÉ[Õ;1ÊîÆL[-7Òdáî1}vòþÖ µ£ç[½w÷îÆÎÝJf'·ßÛ¸Ÿ>«[ô¦ÐžÜ¹½¾‰Îªæ_ž¢Âºüž{y )ÝïÙ—Ìù”KÞ†ôˆ¯)z¸dI½îÆÁ‡0e ¼»Mþh‚s+Ç0OeÒÛÙª†>l³“ÕÕÕõû;ú骮­éÙu)"|6²þj•oƒ««Ñb§Uî— ‰'µ&§8éc¯Eú+I ,³ÀÙSü“ÇBÂÉâ´& £Ö>ÑiÔ8mdžC«P'HihH ñ/ÑȊƨä%I&IpCCiÀ h¥†Ä2C-ýêh46\Êž×}ªÒ‹!Î ‘Ä4ê\¤ûE}Ô•‘Dº-¨Õ1ÃI7C/þôޏCælFPYŽÝý“®d¨7—†0"‰jÃPO„E¶¬8µÞT†š÷á’,ù‡jÑ4ÝÅ®„°'„£+ÎX«È"¥gÇéºåd™böïºÁ]‚òSDÜqÜ$e˜%dÞnÇé÷:Ý#sé*úÒ½Ù3‹ž€5æ´>Jj¶Ñ¢ï«:Û#œî’Î%ÌÉéæ  ƒ×ä"ص w…¨óÙºÚDq‹TÔOWôlˆN{.‰…F¾ðeþFàeµº&b˜Ue]bǘèðXb‚«ªÇIÓǞ˸Ty–êªÌ*Êãߣ‡«ü¶²J(½{ªª®¯`Ñ\D…8sã!A­äOÃÝìÚKè«/Ë]õM—ñN×&9ôØ7#}ðeÑ|áÎo: ¾fÖOF Õn¸c³°µÝ½ m±&²Êl2Ÿ¸µ«½ç¹WËŠ0O 7¯6žCÕg¼Õ䞟JY=Þéëž`ŸuE)+†Ã÷qö€JÖ÷oÞ).ÑŸÒRàÞ_ºSÄ)K¢ö+þ ZX^‘‰ÃˆËËõPÁ€Ü;¡P=9]2©'PΞ»bÊkÐ1¦ÙdûK”6o™C’ט@zæ²gWü~æQ¢’)¶L xNß4(]våtM‡®~ŠŸú´½d M€·A.£žâÞÓ`N{êƒC´ºP•\ÁˆvÕU2‡}Y[å²ó¦†þ¬ l¢D´CÆ"=v Tå#³RÕWNWÅÇŠE´Q¥<²F èè\Œ É»Õ­÷›$»zúáÔQÐÐx}-Õ¡÷ÄÚðj0wrÆ. hÎQgÐjjΠÑ0qpl49O­®F®Æèá6©dv³¯µ,¦Àrô¼¶‰š£—™ı)}.Ñ_ôÞDÆØà´À`QQGX Œ“Ç:©4N¹o³it> £€»ƒÁŠ[k=£ãÁuŽEõ [ØÇ†°;ݾնž}ôaŒ¾kM]£ÑÙsdØMrã­n4žöäSü~föêÇ|”T§ø8©ê¬ª§0ª`єåZå£ qIN«i]‚þ µI÷vN(ľ‚ÐëŠ>BIlÞ@·õÐgs“P…P8ìÔÇù’8~VQÆè‘Úl- (6ÃMkRe>Ô[¨^‰¯qBhЊÌ8#Ê$ÆšÔ‘2¤/dÞ_ZËzŠŠ^ðp Ôòа€ß‡‡!ppÂ0G²ëR]Ø8àĨ%+4’VOïcï#µ¹¯0F¨Eo Žø ¥ò@¥­&«Y¿Ó†ÝÉa¯3À9ŠæDœ~§ëÐ4±†”Œj„gü@9ê²j¸¯”gýÜ&rSð‘ 3æC²Ó5m,¹kôL›ôì¸Ø9ªÙÙè$*H:6zM×· Õ­á—³…Üeò 2xa#{ˆ$y.¨$¿¼tb:§vGç;Yä)Ñ,\hk ©?ÿȹÝÓ ^gד_€_#+”qSE',†Q·‘ÇX„¿:lꥷ^qgUÈ¿g»ÂwU¶ Ev,ûöë+|K`Hn ·Øþnª{L™†)ÊhJ¼ËºM¦€åÏg`äa¶›æÑã®Õp%áÏ“ÝЧ™c3 È¢ìsd7ôåÈŠ ðñ) &+’\€öü¤2€c‘ßÔ=ƒ¶t¶05ÅEOaø51ƒ·<‡†M!l^„g./ ‘ƒô,Œ^Ò‘/¡¦ó”.v^µÑ²(†0?Ùz§«ëéÎÁ23µj~r™¸$N†¢ `Ý•óTb¢ÂYŽÓ¦ ‹·Q¦6Í~Ët¥eõž{…#ŸÐñN¥9EÉ{òÈ©xûuÒÜS¹ ~ìós2óuÔ‡£êÊêLxù1ŽÔ€qáî_T02—šÄ{*%Íý‡™†ÿ8³ÌŽ31~*r&•p>¶g^ g}aG]±`}§{£×*?³çC§t\RÍÁw…Ë(8â¨nôò«Ü^Püc<.>2º]<)")híÈb¶U :)6YÛÔ]N¶tÉ8“{®,mêÒU…ù Ï™p€åÙÝDÏìvz}h•q(Š!ÛOì~O†ÑjÏ4v‡Gxã!aÑ™&¶`±yf5F‹ß—¤71Æ‘¬ €fÎÄa·{(»rúð!O>šQŽ'…§Ñ‡á',²úþûüÐ_>~,¬V<|bø«ûž|KÁ¦›¼‘÷²a7(É×1g £C˜MbÆ¢ºÀЎϵ«ÄŒ3Ñõ—oÄ¢u* âE0²óÞ›¤5§ƒWJ¡bM„AJŒ4oˆ“HQÑOÏ^ÀÙªaØd‚íÿ—u´œÇVØ#³Õê 41¬êO;ÅÓFš]á*_^$—aÈ»~¡ ]1–Ѭ‰¬q­là‰ÃcÐ6Å2— ’gYÒoUdËUF…~2õ>a £w62¯kH^?ͦ4%b…þ,™É°vŒ|Ä YXY[iŒ[IÀæ»KÒx6d%æ¬xDZÁ•ót§:x¦ B^ mC(™È"±õ&Ê”¸S£Á6;U%GU¦…÷ϲ€ƒEöô&º’Âà³›a‡ÛìàJr`÷¡u}¼Udœ L“§N^»{¢tqŠ9LÀ_Ø„L=˜B—颚…ZŽ{ã‡WßÈ‹ðõ¥G(Ñè;Ü,¥cšmZÈê&»¹4²QÙjwœ>)%-…iXæ„AC.Šbf—]ªó¢»fø7ÆO³S@fü{V7’kLÜÐLV¶’Íg†Ý0D÷:`÷-V¸3¨ÈF€ÃU/û‘sØ þœvÕ¸J·ôt$ç©¡jÔl~ÀøIì%¼Œ<è†ðÖ—U†É¸À˜kZü"’øa‹Zgã]/ñ#aLrÐé{b!‹XhÁÔl)Uc,zL Õ„•Í䤴UN—Þm<® nãCÚ,Ø^~Ó µÛü&\ëòB䵋c’7ê X?C?^aìMˆI>ì›Fr#(M$ÔY,»Ñ±.=€;€nÇq¬zë„3íV‡qðí^,OkP„Íöró¸Ì œvçvØ@ÖçXùr£o¡ŒîÕ2É+o·¸ò ¶ Þ{oY%O\~ó˜N”ÐŽ2Ò¤0Á › !ëÂòtz .áQGtqI› s9ÖfÁ„1¡V]ˆú…u•lÈÇŽÍ?«¢!4¾¸|pŀݰÙP@Ú4 ¸°hª‹ÍzHÐ2 -BC;35š+ÿ„G—Y»¨\¬Ž…<ÜãÄŸ Â;Ü #–H.# çgéé\BWpê–#è|Ã'%p?õH€.;7ü:|œèö¬NÏêŸLp“Ð (X»ßÖårÞ*D_zbHdÆTÙ싱G,FrI†²++EÕ£F ‹xÍ‘vj„Qÿ|… –Öå¤ä2˜§ëoå£'¯n,§F]w‰±óß”[(™Ò{3«)—b qÓ¡3\W€ª¡ï>iîP!ÊÞÐójiYšùôˆq5µ­GûL‚Œ&Y¹áez_d\ H.´Évl>üâ†@Ý(ÊÑ E2ÕDÿJ4aé­µÃ~BÖÛq‘/1&Ur¶vukxâ§QþÏã𔎎ÝÅ?ïžfгDô #•¥œëÄÊWÆá>!õWtR1$ìä”özÊDÌÌðÄ­ü(òiR¾­J^Ûá{uYÞåcýµ5]z^‘·wU¨ÝêŠyp¸rd­|ô< Þó ƒ„‡.ºvóŒ5„Á»zª_,þ"`ž‡/ Óó//¸‡Ãaž‡«ëúy*¹>2ܤЯ@œãÿ@”+/+.2G—äLƒþ†Ž‡¢#×eç€äx3 ŽeµÂ€¦žç¦ú׈RQgX%þB…YÀ’ºÃ;,ÙüM)Yþb·’¨ÁÑA÷8ÙOà×¥3RÛ ÿ¨–{u5¢ nÔþò†è ß·°¤B˜ƒ‚mê¡ÀxÖÂÜÅw‹Û5ut·ŽzÂžŠ½åö¤çRºi˜ñ „òøOä#•?5dtcëÙ‡pÕñJ1׬m¢ƒ2¼E‡)ò¦ÈÛÂe¾]¾(wÛ“=‡‘u_Áÿ7ÓA¿¼óò¥¢Ú°ddžlþ–ÓsŒ£&ĸ§hò$JËÝBiåP˜ ±«‚%œºµÚ)£gz»Ñ€¿Ÿâ£ õD&y]Ûð © '{ìyörooï™ßA}7^]»G©³ÿƒ†ºQþQjuLJ­ëGgÿ²jí¢í@î{“q¿Z²ÄçI˜]o϶Ùó›`>+Ýÿ9O.eú©”ë0’"[&Zkx©yV6†>¶¿Á²× ª×Pó+ÍòNZœßdŸSDŸ¿kî8)ŽÌ:µ®—9nf–:¾V·çåÚ'îKº(ƒv= £\ðlåü®Ï-Åüû}-ˆQ ÁÿΚxò ¡Fß®{Ì󢙨AÀч”ä>Ý®;‚ÿ}WPÏ“¼\ãO©É!ª‚™:XK ³-zÚÝU‚³«nOßièôj-ä-ËI¢Nª¢ªîõ+Š8±y.Ùª©«,½c_¿EY´p<ô"} wÃõ ¹ƒ[ÑÜ ™z¨¹8•ˆ–@ *©ŽSõA8 £š9åî´ò Í&så¥>te6í½L¦}ô°# ¯ìZýá =Ÿºã‡ó¦ƒcò$NýÝ Ü9¹0ð¡ÇoJ/J¥UÛA W‰0éÎ&£Á|` \4ˆ£ólä­¡¤‹ßI'…¤õ\^yÓõß‚Äö¯¾LÝÙ jÁÌ|Ý“þ;˜a©5Õ&b ýÏL'—ìBã™u9¤;™?±š®ÇÈìOwv TÄ còlãâé¼d›!nªŽ°#÷™„­  ²ðä¹ăíXˆ‰É~ìÃb¸0„›5tò©3ƒY£*å˜G“ž;ê —`Û?aJýnLÓ  ‡§"V5ÊÁ›?>ØNÞB_¦O4MÛªš™ŒÍÍÿ¡$$úë›âÑã'™\~‹{ZÅiw>/½ÕZ mrib™tñ•HÕÎGÞÖƒ9|U ´Á²Ï3r_ׇoNeŠ” å·ö"¥mCù^®à²»CWŒW°üál…å>;[ ˜™……–´||´ÿ'ÓÆ'~ÑUÑùZÞȲø=¡/SÐEÎÁ㦅ªŸiYª ÿ’‰x*Ý’èÇÔa?©c8Ãmq«ƒ»ˆ ~ªšÅ›w°•%Uép7ðTb5À¢ý¨¾Q·fÕ¶ê$È<ªDÕ£À®‹$ìŽb!ŸMóTRQ4“°ñïá,'𢥙.Ì.¦]Ì…Õ‚Wˆ1óò~÷;t¨5dótb'áá\Ü,ªÆ›ž`“ÓØ ±€pt¾1Þ˜ìBÎüŸøCŒDS¬ù*tFn«oø+†IÿJeR#…‘6ŽQLþæj°ù7¢¼¦J`Xmã^œö×ÃÛ|C7x‘§b,s±–ÂgrÚÅân-éÎJb‹Z‘ +6¸hEÔ5ùå³²®ÒðH©àï-6¶gÜž\W¾LfóíI˜¹7ؾš^ö+××Å››m··Öv¯rÞÝâ§Lñ[ÓAgð¤Íxft¸“ú‚ªU´,~ÅóóëãWjœ0?Õü¡¿ðþPœ0Ï26IÑ3_jG÷µ×£9Ë@–!~“œÎv?d1y—¼~8îɃÑÍ¥ îËç$6‘‰ßþˆí6Ñ_ØÈ¥ÕB@~'Ë椫ÞtP"I‰Õ'1‰äezíØ`GgÊN5šL.\¨ƒq{”_†½UŒ¤²€pX@šÎ öDÐhÐÑ^Ì^ô oy±Ã …xãq>¿…Á(ÐÁ‚X†SàMTgav+¸$S¼°öÕTØL6“ KE3Ë%I„§j:ª„1t]MÑ^X@ÂAÎh”Ú˃îh+ƒ;Á´€” 6!c–¬gæ4¢¦CÃè5ž aFçªwCëwȾÙ3'ê!ÈÜ…îz ÅK—Ê[Ü>²vÍYá°D|™@‚gØýWÕæFæsû±€BËN.?ѻȼÊÐ…Ø}nm«H~99‰Í¸·ˆ²"Ì +– ûHÒ7:>²O¬iÝÇ¥°ÜëðÂÈàß*öPÇÊ„’3@4±:"ã„^fwh|£—6-Ñv¤€Ù"¾Å,f¯œ\âø)¸ŸMrDÜüæJ îëÐc߉¥øš§ª€q¨Ù5ûðõ/¿üýïãwWÓ4$°2‡<¹$|“;__zd~è¹³ÞpèuA¸¸ðzãùtäQ€Iï|ê^}ñF“¯ƒ©w5Þ‚È$5¡EÕ”D2¦ÏYÉìúÀ.RÒÑ5Ÿl Øf»Õ²4—„W¡ÜÅ&€Ù-røýÒ ñZ’ÞqÌ9°Œ|N“ õf‘:h l´'Üí&wãCyr÷‚{[îÀ‰Â§Œ«ˆÀ¢Ä=(ÿûõñ‡·‡ï¬ªSê„êE 3åðX“†lÌdÁ}."’„ÛF|9j!c0®Ì¢u-ϱ6·¶g¦˜C R]ö;4NñŠI§Â"«)u;ë0žW:å ŸüôŸ–mŒlIƒóEF“ÉXE5µDzO‡',äNsgë‡íráh.öða#=%äÓ¤ŽMjÃÊj6Ë —æ ÌÄå¿*©?ºƒ³ñtÕ4Æ+ñõMŒ°‹ccÙèǦðh¶y`â‘}y "H4'mf‘K€Š)µ¦¢G8)Pf­’u±u[Û:í´ÄWÕrQg6$N.¶ éËq¨A‘¯ªßm"jà Ä''YèåwÈZfÿM‡ .î”jƒ"ÄýÁå ” 7½¥"ÜÁi +BƒªtpÀ» <Â\”²%cˆuLY~ Á¶ž'̦“Ë·¸‡ÅñwÞiùB*(9ãŠ÷R:^ÇÙÙ $ï*#eÓŸô!‘÷ðÔ_Å¥Ú{šü-*K¨¨$l.µ 4ãÂ×{t›—KLÆVSB°)Ée—”MÓ'šœ&©¤  ½áÃ}3¼BÇÏjc="ѦF×.]ëtý™®·t=UDË"¹ÿMeêo0FKäRÄÞÚ»O‰<yÇÿz“˜_ÿpܹÌÇwo_½N„98NÉJ¡–õ&ËZ¬¤)+îÕ룓ûÀýòºvTI](¾;œ£*„÷ŸQM³NŽJþé´ý•È]t}HUA¨Ï¨†@³Ü‘->üŒfYøþKûòd¹¨ŒgÓlÒF!mþ‚p²5ñÐ|Äc«-|sÙ2Ñ_FUF¹qU‡û aUþ¦õjЇì’ervV,I¿ÜíGÛòx€Úh+ü9œÃ0×»¨”žqtZvÖÝUÁ¥vöÌΞÛÙ/vvhgÿ´³¶ØÝÍeÅžx wYgÓ.ÉíƒílÏgÝ,NÆÞ|2ölo0½Â yS¾l7k—²{òÉvû î—ç³Í¶ÕÊÛV^J­ðßÔ<`çÐU>Ð¥ìßš/³¼øG[ Ea¹·‚G<ü$ú´¦@X”•ñ"Q÷çÓlS|ˆ™è·(|'¬ VvuÿäU|¤öéVm´ÛËf÷ëÇÕXXOÒ½/¶Ý*\N^¥Rަþ¸W·‡3Õò †-›ü»ƒþ?DnŽ ³œ¯’¿ê_üß+¤¤¶·ëÒÜN¹é%êk4Ò~#Ë÷3†ö/º\o·ëª>»Ÿ?w?CÕdÜL¦›Á» wc£»wm·Ýî¶ñî±ûøq÷1Þmº››ÝM¼{ä>zÔ}„wKwµê®ìízAª:ÃñÙD½$°{Ü;¹çžIdÇ$~³$f«Dí“ü“‘ø½ø]ŽäýŒ´ cß"ºYÜ“n=Äî0Än$Äê.“µ|qÊ­ã'éÛÔå‡5øñªú{jäÓuïRçbÿV{”‹"ŠôoT£Ç(Ñï£AéÏMÅù7ªÈÓ•áZíýp&‰ÕXǪ¦•ÚÔ@?XïÔ:Çj›“uÊÉšã ~8Y œ ë *tï¡¶}˜rö»ªfã³UËFõ¯ßIûúÍzÖD…jDuê+N¨,½·Z4ITÕžÿXéRyÞ[×ùÍšÎ=g¬’3FÅ)õ›5f¬¶2^)?ĤŒGfãD†IzÁ˜ñð=_PËwoí^T·÷íz½$ýVßÅ)ïówVÖÅ©êu±jºiébtt¤  ©ç´^Ž5p¾®-¨U êÏHS&ub_Âz®¨F+ª»ò•T1ꨨâ)NŤ•I!µ+ˆXd(}âT>é Ÿ{©v’”8Iêš8ÅLœ F+`î¥sIÔ®<\ТH副I:­ÇvN™Œ-Þ7Äk´˜Q pߨ4lûÇŠ=Í©;½,ÆH1¥2€Ê6t@.åEOYïáóÁ±~ h¤eP6¿>[,h—§lN¿óé¿mX-ÊM×ê¶ìêö‚¹ûV•s3 P:Oçà_ÊÝJ ³ºœô·”ùóni«ô”Êö+† ±e‹]GtQÛfƒ†x€(¥º ¤û .üúƧO§‰PþsÜ\ ó £”‹ÞÆÄe~šíêØ”ü‡ «"Ô)Ë®«Ì´‰©ü+AFþP¾'>Ü¢r‡Qqó¶‹&´ù|Èåù~Eü\DWa_=™æ«¶coóÁç\ðqù´ðl“´`SULÈæÊÐˤ‡ž9¶óÌ(= W½Xùn°Mu86žF9=,ïÚ2t.Ý1±]{ásÛ:1á6•a>“'LæK(_ׇãÞÇžºdþû÷v·g»‹é¿ÅU¾Ú}ShƒÛG(bd¦ø7™TÞÄ dÝ裂á’Ê‘‡º:õ£ SëPÚ=¿ÆSûkiàXð˜‚.‚í½mpÝ4[…붨ý“JzúGævîÈL§“)<3[+°ÿþ7øÜú*Ù~hײNÛ®ÃeQ>@e¤ÓÚëL–cC[o¼Pèhº­u^½äjä–Ñ+RqùÜy ]wŠ<’ì”`˜Äd«£¿’ÿ¿ Ü~EÝâW{nQõ-íº·A\‹k7ù÷'%‹é6d… œòý‹a_U™‚%ê¾ Çýo%¨#]4ÃņIñ˜}k<3noý/_³bª0XàïúªÜ8¦zÍÚ»ƒÇÈWn<8wïªÞõëxœZÇ·–Ažï&-é&ùû½'ÇúŠ2ÌÃâ«ÊâüèaNw$‹Îð± ‘øJZYøÁj=ðîÄÕäâzVô+ËØ2ðx)A&[9¢B¿Õ@¶ºÆ×äÓHÅ¿Z£’Qž‰þ‚WžþÑz>W.¡Ø`¹n¯«êÐeúØž’›zþÀUv=rͰJó/Ý}æ»1+OiQPØ­Ž1­"5šNƒ$Í’¡ŸIÛÉKÜF'h3ßÇÖÙ~DÅ…íùäûñ}À—èð/ºï‰ø8[øbQB·CŠû'د‘©,ü…v )š#gøU`©#-Ÿ®Œ0ñúF†i§EžèÛùݽ½†òÒ?xâwað›¬òö²^̉]tHõ\ù5Œ1Û²þ¼¾¼š±a8ZÜÛ«?9çŽõ«Û»è»_g֬˫;<·fW0^,Ðþmàæ· z„Íh’iÓ®÷'·4žûëz2…WÛ'0Æ}ËÖse`²_^¶³»ÊÆmÙ0¸³ Ú@ ;‘£k ¹ÞŠ"J£ Àö§;`>qψ@k;qÙe$ܯ7·Ü­[òëƒC #á¨/ì­{ªÇ°“)QÚ}úÃÓ{ÏŸ2`U,–/z+NÚÇÅýìÒ¨MܱõóñáÇ£ÎïµaîíìhGTÝ„¹ÓóDàtüí»“0ýô3œ]¹ËçÏží=—%—Oû˜!~ƒN¼ã®ò\XÄ ÎÙfú÷Õ_lFbµ°x`RåÉbk4Ÿ_úÓ±fF·ëôìb±¸}®¦ÁÙ¹ÛSˤýÊÑûc/ ²Ù£¢æAÊ}`Þ?”ì½@³ÛwÎÀ>³ &¥³Æîíí­;8k”ðow{p×x Æ^ÿVlK‹ ªJûÞÀpƒE•S£»Ð·RsÐ_b‡ñjõÝëäæWÍ|LçÙ³•­||¡oÃür<)Ò—¹§ ˜‰{½>vjc."¨Š!d¾cã ız;:úsW þœÈC¥’¾»¹®UÁ49èûî[´Ç”ea¼¢ŽZÐnYõ:i¸þy¸§xEýzÄVÖ}󌥿6Ko5ð;ô+èÓu1åÀØÜáuÆ–Á“ñ¼`<§7¨ø«ÓÁ™Û›OðsÑ6‘-ù­§§åêÓ'J©ùIÀ5+J[™`§’Õè±ö©ŸƒOòôg"ºô»Æù˜ðÉ(¸·Ðsb.uåpQ«ÕëÜSFœ/­­’µR hH| P²Ã®è Éø[[ÀỽÆÖ–Lѳ¡µk­”§+Ï\H*”TbCÇŸAÈ‚ÍÈ:T×g@bKÊJþ@I·¯€ÉC¹‰«ùH·””ýDz…Ä'uάF¿ƒ¦bíTYêu#+d ÿ7ð~ß…ÙxòüfRŒ¼„þª°ïùÖì(jM¦ÃóáØ±Yú[ô߃3;F)ûJ1¦‡³2:ClK›Í¶“Ï-WY›\~x­¼'DÑMÜcm;tßn¶…hyxm£ü‰ÎnÑ=‚èÞòN³\Y‡g¿É«èÕt×vÒmV ÖcOíÙ¶e ¾äƒÑÏÙŽXÙÜrlÇžMBµ¬“!ä¾h:@§n£»7"§PÚÈ}˜’ñhªïŽé-E[ ñ@g&£}Œ[6$Sý6›T)tLeÃÛoÓ úb_Räùi6°pCV­|Jƒcš K¨ù¿”_׿P ÷ý I—0¼š®¯&·f­¢ÄDz"¿Më½SpÍ(Âà†¸r%emJxÜኃ3á¹ tF¶¦R%£„ å>:ÐÆÖßhw]ú› Ìd!Ç™Bf'"3g†K È*,[L-!츚ˆý´¯çòÔd,®…ÂÆ—jÏke$ú®`ÝclTé4¢¥+_Â#w #nÞ*¯ºâlÓú@aùˆºÚZóóU—51˜u=Xxd=€Á;TÑÎ~«‚µD ƒ—hU c˜©Óf>ŒAðôKæB“ί©JÚv|íâIõ«˜ Óu,œ84öÕD¤Îý?öÞe¹q$Y<ÛÖW@©ì.€¤H|Iê”Ø’R٥άJU>ª²“ t$(¡D‘*‚LQu­í®f90çØØ|À˜ÍrlzQgæfyïþÚ,f=vÆÝ#€I)³²²º HD<<<<<Þ/÷9œÖ#ŒSÒþjм5í•â/ĬJÄ È.-»NU€6/C"ŒESï+ Î$A~ïœHâÚø~€z÷ÎU;IË¥ówªkž98aeÀ¬’×a2È\5ezºžOBýxv¬p¥Ö¢ÜÀmáxn%ÖäªI¤¾GDÆÀ}¢Dý2Ì-꤄ómF´2ÊV¦Ÿ¶=´ížml»cÛ̶]Û.ÖLÛ—è³lzê-&w©XBÕÁ–½üi3JH’•»_Ó¾óåO¤‚iwïRˆ¹¯mÿ™Q0GµÍüÄÐó†rxÍŠcÆ•BÛ¢<›`ÛÏÁ”¾0U犕;5š|iY§%ORC7€)Ÿº¨QWŽœï>Ý—ûºœãÔwÌÉØ˜&9EÏd2¸€âê!Ç€ÓÙpö~ÅCÐsÝ>¼Æ7ë7Œi@¯××`Šlä,q Bë.I)•?µ`1䨕wêÀ9øw$µè,Ðôœ—@\qŽˆ³|v_ßB< ±Í §ÎB>H©«ˆta\éõW0š;*§ƒáip†ªbäkyˆ®•o§®»¢¾…cÚjE+µj¹pæòšæÚÅvôD 86åq“Ï´ÒðŠr£)̘öƒÆ'ŸèrðîÍÁ·Ožjû_ï¾ÚÝGµû/vñüš¦ãJ›Aœkؽ@xy/-&›õzSh0ü¸j6•Åü4í An…²a(ž¿3B«‚úxæ˜Õã!âfP#Ò¨MN»_¨ 8ZjX˜Ú„Hìƒ{0ú@ffg,ì;A¯N4iY%¹tâŸ;+mW¦]¶†½æ}RÑ{HÀUΡãhÀô>¸ ®ò[ñv3ž¯©|í3›•»¯f箈øÚB•:dr[„Z Û rWäè´éVí¹+PDz»ù™\°… Ëj»·pîR~fÓ*Ñ‚¹Ôå]þtퟗ k8/‡ ù£]ˆÂeQfh_:¬¼ÙXX(‡!ÜäáÖµ†¥¶ø[J gI–ìî7µc­±·å&i³<öé÷)Gð;ýwßÿîæwÍß…eâÇYíõq5…J%sÑIW`šu„ŠƒÔëùÛLØWQm¢˜U®¶luEF±ÚV¥õÇó.wZmµW“#ÄÀ«.Áë*NÈp©â¶’»s&ãBÇé™ãýèD­Ò¦:{?¦(SF€(ày™ )¬û":ßñ0?ÀÙqÆè§èÎ#PÆR¦‰XÌ;T¦½Þåhhj+ÿò ‡d4¯ó_³˜/× ˆ³Í†¬"/> ·|ðKµZþq¢%öµjfÕú³R¬UÊfÍ,YànÖ*|?.ÚÅžž(‡(ýþpÜ<ÿxâ~#OTS ?»ãñoß<[߀–ôò²?ÒòûÛžGÂ/ØÉ¯¥'ŸJ@±@Çü¡<ñ~V}ùÙ¶uÇj]Ï@êizîUïÏIæÝmÁkÐíð­_Wë¹ã¡V övù¶%§ŠŽðckÞø¹Y q…ágùýùçñx,-ÿEY•/H}™ŠFRI‰óâý4cîÞó€N$Ô/†OD$Šo@:Ô }|}CWmÏZ­V8x²Cy‚ÎaÐ,æqBõ¸Ë¾ Žöwÿþ7û`Ýþîÿü탂p3KÞIà,éà‘EѾP—¢±V«? eºaõŠj¥ªµ‰öïæ5J@I{CáQ›©–NG)b¼ŽK«Ågè½ÖáϬ’G1%vœ<Þ/Äšì%hJö”&ûôƼñV*piÃ@ôV©ÞoK—ËŸø­^¼c4ü*‚y f¿r ‡˜ÏgAá › Ø>lÞ)6«¨ÚXÄfV7¢ö¢ [,FíV'j¯Dì%‚¢>LÅTÀ¢±µ"¶¶j󬀯 Î2»JûO÷ÀŸ"ÎJw°ø(}ÅöÅžâal_ô}»{<. .‰ë0ÜìÜ øå7ûµf¿NB„ÐÖ~ •æ4 À²I-ã¹|ÇX¬cNð(¥y”•Jƒ1°ÃÃ÷#7-L5†WUŸ´€éǰ¦a+¢ñÁb -«§´GäTOpK€»µîBGµYNïš¼WaNS£x\!ð>T´°=fÜ…ÿNÃD3u ø‡i„«i¾QTq°]3Ž\¦}§‘p°w(,EË;éÃ]ùo`aR”€yÌÒ(0U¤¬í¯"½)C«¸š2]·BØÝBÐ'v:Ø —iÜB ¯´M-4®…žûÁœˆ!Ø¿ê ûG*dëRB¶.sªÛ.¶u›&@”­ÚÑPbäÐq¨Pʲ»¬Ý›ã¦T’r‘P–­"ÿ›Å?%þ)óO…ªüS㟠þÙäÆ?ÿ´ø§Í?.ÿt‚ )òâ× !ˆ»Âc+ó¸ËÂÆã.ó¸Ë<î2»Ìã.ó¸Ë<î2»Ìã.ó¸Ë<î2»Ìã.w°45þÛÿú¿4 {a»µcg,º?Ñ­ÐÉEZ»Õlb¡¦dó!yØ@b²ž???—¸²ñ|ýÚ÷±$Ô:wáè;Á°*í*vh*[9R J“†¯SCÙ›õxPtÄS®í&'SÇÿþ76Þ>e€+IöÜÚ nW nOÜ^'¸ýŸVîxò6)y^4!e…ży—.AeŠìNŠˆ²2Œ‹4ndÒf+ ^Ûàæ‰tÙPæVi³3ón6y‡å×5¯µð™Êo¥Å)1¼+:É&tà’ÊßíŸå(V¬[ÐéëuÈê±2Rc8Ó¾G9ööåínïbÜ àFšx¡z¦•x‘ À5â¿þÿÛØP‡½ý­ˆ“žÙÊd•ç«„ÑþÇÙùžä¸Å?¿SR ËCžui8WèÄ&=ñˆ¾Úú¿þndeð[Ç$b[i§ð^¡-ª¹ãဉ{xQ±åƒ¿=F§8NÙÐåz‰/û©ózbCñs€Ì…ÛutòŽy=šQž¹ÚÅÈÒÕ9‡ïÒ\Émçyá£yoSä'AœBèit²95å²G8ɳû·f¥†Wcž8þh<%Íâð‹]^âZ+͡Ϙ¯µ½Éó…¤âu6L1eÔóâ<É“(A\‹‰´¡­´ú.ÍFRñ’/ïj¨<$d:R.€ eè“¶ÛAI„jE~ò¸¸“ƒ|ò‡Þp4äÂSû£¡¬aî绾á§#j›`€:õÓ@Ò@WÕù­d!P‚VžñÚúîëýÃCõ’(‘òÕîÞÏÿ¶_TE~Í »²¾ú/x¾ÛW¼ÓίRˆ(foI <:® Ö餀ñ¸cVejšÎÈ"fnra Vy?5-²›ß ¬b6ph•÷ø8ÐI`» È^HzÔJÍØÄœåÀ»¾··‰O’K(‚‰#—EeŸÈżæióe9ƒO@ÁÖ¢ ²kÞ5ßѼ‡OŠM˜7ƒE³Æÿû÷ÿãÊÁàïP™!ÁȧLS$\ÉÞP¡UOFžv°ý÷©Î£¨Üϳơ!^ûMžH2Èm¢úšØbQÚüÆá:¬#o²òF•Æk88 #ZÄ9§Le8§³œÕï£ÅŽçAð+]™5ü—„&N8`P€ïx<Žû‡ÖÀŸûN2ĪÃ;»¥-9ÞÛ±ß>6Ÿ¨#>hÜ^Û ¶‘1Ð_£¼\Å‹y(Z„bMûƒ0š$ýxxqÿHîÀ³ÆÒÉD”FÒb(²¤G{SÁAÄ>ŒJÝ|”¦û'ˆÖ§»‰FÙu}9p+´¶â´Îl'9þÔ:û)è…{$9åâ±x¢ýqèŒØ êOŠîý'D§C“¬gü–¿…—¿TcÞpdVè÷úñ=£ H^·ÊÓcιáhpîùg0+óI°6’UÜȯušÉ „(­ó9T0´Šac&†”°žÄ°¦]^C»Ð;é·†¬‹•­ŒBù >­"c[¼-+=áb¸Rpä"`3FW¼îMJ )×btË‹Èr :HÓ\§#Ùp‰¬r[ÎE¶Á2ážBñ÷–Ï/ó,tÿÃü¸8fßÿ([åZmúþGÉ\Þÿø ÏŒû8.2«´À‡—?J–r‹Ãsý¯4ÚàŠþê­ãüª»2Çïáj!®¼*ÂaiÉnêJHGl\úÚ)JáYSaLEÇi‚¤ðeGøÇ$Õë>ÄÔžaZTl9Íï#Ä5 úî%Œ‡axgB¤ä sDÇ:u_åÅ3Rv%”[ÅN¬hêáÔ÷N*Ììb¹h“v=ÍÖWH€ m]LHzvѬ ”±ÑWú 7®›ó^Á Ò ŸþÑRE:R×em¾ÂL*ÚV„´/Õ8Ö1!Æ“?åþ¸õ(” Ð¾"öÅR-ŒZˆ‰#ù‚½Ñ…ãèšî°¡ ÌQ‚§^_])jßÎç±P©¥0:îÎË]«?ê¶q½ÿå¾a¤=Šwe²ò(E¦ŸH¾Kû$])Kàó£æt8‹ãö¸sá^â)˜Ö¹ßeþÕ·’$¢Œ‡†"½2•oˆ!N/L¨W·µýWÆ dí#„–Ò³x¬‰ÂÄÖ :yCÜ}!ñÙÄ’/ªˆ¢.„/Š eÑÿM}ð€Ni4 q†ýs=×Ö ÊÓ.Ý×çåÿ‹)iúÒJþo¿èEÉ’_E!kð0Í&$§™Æ'Y‚QE`gÅžª‘b.žfr{@Êffoí>Jþ^I­³‘€_V&M6i)œª~¼0|Aä/ ü/_à˜¢6ÍЊÃPµÛ(f:½Ë€ã7Ÿ?ÿ”}q4=:ÞÎ¥‰Í‹Vó9ž'x¾˜Eø·(ƒx_㹋Iö/Y‹óßÇ9&"ýÕšzˆ<1« Húç+kšàΕkûX÷Ÿ|qŸ¶È‰ñNØŸ¾8šóm£öÅ÷]r9XûÈ_ø_m°ö®å¾0zþô…ѳ¬.ËþaÙ?, ügéf.¾âˆ­Ì­áÄ¡Õïö{_VÙ"%'ü vÎýÌo~ó…îŸoJºÜ([¶·ÿ¼E¹Q¶[ÿ†r9¶þÈ_ø_q£Œ?b»ŒnSY…c'’<ñ Ìëb¾ nYºÊKZQÅžŸñŵ艌õƒÔÈcr…Ã1>“2vìqqó‰p˪Ž\0+rÏ€Nžq“}–“l§E·x¬b‘$‰x-[ˆÑ²…ø,y#I $î˜0J#AÉÂBþQ…7ÞZ(”!ËO.þ²Ú_G“Åeå¡t0²×:wJìàÞßðÂzHBQˆº bs K8VÄ—Kz±Š%¸"ìÕ€~¢³Ä±£¬Vf*i¡´þ–W¥¾ßfBìJFÖZ+¡ßM‰KlÅõ¢8Ù*üWÀÎàßÿüó‹ËÓ'‹Àþ>Jvˆ%‹¼7…%‘ý}B®~2ôö+ :çøƒí—ŸÿéÙ"¥SÀ·&DJ´„=ø ÷6?•,H¸W0yÎJ{“ x’ $ÖEšB_º_¹÷À`ž GP,«ÀÕë7zà%²ÖÈïÖÊmÞÕC·•\õ.ôÉ{\ø‹*ä`ÿéÁ³6»ñ/.øÃwüR³¶äÌÓƒ8cP|LJPa/.2ƽ¸^Ÿ´H/=¿è7êù.€°Öù@Üa¦ ëð.£ùö«ÿCBÕ$[ðdSÂE¨*~õ~™~·¥»˜oü.æ¦àEî°æ­iaÝuø0/#k¿ßÌØ~‡€?4³öY4µ›™ºÝ.’ѾÂJ_½«ÛW™] Ä2 DBÂ!›u¶µ;k ¶ø§[fMµúË)§3AÑ1ÝžG•ð-—,“™2ð0dÏÈw%‹sÁÆÞÅèB—qÂ)•†ÚÛã÷yBU,ɳB ò€¬{t3ì/ÐÒçbiÑ4%²È¡kº©ãã n=É«>\¤¯¼ˆH ©¡È¿ö qåJÚ;1³èßšµà‰$- Uš†*Ç¡Ta¼*a‡1Ê"TÆÈŒ|È•ÐÄ2‘$å¡D”î‚QP“É LV`* ™~å$ó1ÌÆ0û¬wêú\6Ú×°êï…Ih ·»ÍÛj¥Qw| S8º€7ê{Ú²˜®â]²¯|m4ìlœÐ5B¼¯EºèQÔ3@àÅ«+åzq?JrQª—ûÁÅ"Ñâ1!Iï¦ F=í õÄ#‹À޳¡ˆˆËõbr`C—êEìüZêÿ׿ ÝdŒ°¢/äÓ*AæŠ hµwÔÃ[ûP ¡l øooßf#åßtŒÿÏßÿÆÈaÂyér”/òþÇçf £ôî{‡/p‹òÀcP€1–ÿHæ?¦â Šé ¿]ÿ»IÁv•¼¼•M ‘*˜GBÝS°ÀÔ çxÔ¤`åÁ/¹Óu5ÆB$ÅÃÛÚ½5swv5xŒ°ù3êpqÇ;”  ~"ïy~b;¡zán*æ’b®*æ Ŭ™¬qôÝ›ƒoŸ<Õö¿Þ}µ»ÿæà•¶ÿb÷õëƒ×šþöÍë5sÃ@°oÞìžìþùûÝo‚†W­£…`Y0pš!T8TÎ $–ccm°6‚öh*F+Ä ¿ ›Ýñ”ÑLZvù|ýù;ŸˆO˜þtªÖ×բˌ'¼4‹®01( =•Žæúz#BÉ/KÊ}ëΑ;èΨ9z}VÒ²‘¬7~É‚>›h^Oòðœý•â]Hé²ùÛf´üëãâ@žÎÐÿ\­•ÍýÏÕ¥üŸÏðÌÑÿlV¹âg0–¬Pݳ×kuGtN¨„FAk\)´çúyí/ÔpmÐC.rqØŸ'QˆV“ù£ =G‚\Ö: EqI>—Ä ¥Hò ´As1蹘ðv!,ªÿÏ͹ëšêjé|‚KŃKŃQç¥âÁÏ¢xP¨D"Qqªî>½{¶fyº³<;Óúù"º ù¶GŒÈY1BbQÇ" ­ªºC…rË(M°¸Âªˆ’8!ŽÚH檪T¥D›UR?è”Ú#êQZ\u8 zÅð…€é`¡ÖC 2Eï¡ (—ÚíyÚEKAT m‰¯N9ñ’ï®üêW´ÒŠüP÷ÐýÈCLÇ”¢Ü1Œ Á)AÉã4a ({¼¿zG9®d´Eš¦¦}Úí;RsRp~úºÅƒ)x|sU­‰ô´ªµ z„^«n- åG¨\KDy/µk a˜©zm 3Õ¯%!XP×fìÑ‚IÀƒuoÒéùEÔdNiÅ|€̇¦rÔ5âžáVÏ šVUM®Hí“¡ÚɆð¥p¡àÉ鈘([tŸ× •e²Ý=G@ - ò Î>.¼wÆÄÏ5ïBò ´h6…E±¦†L„ãwL1!‰*AâÀɴ̘ÊN㘃~2Þ‰0¸e”Ì)Ü!àlôaX;ªu¦nÔϦJÕþ%U¥bÂïC! ?–µ¥ˆœ•eáÜ8öÈïpz¬?@+ešºÇ©€³ˆ“–µótS4ËýhŒžGO ûlTs‰×ëƒ-Û4fèÊœ…%-ÚØ:®ß4Ç^ó°sx Ô gÄjÞ¥RáPC­Dš—ŒqÎ1" äFcÜ#žIZt2픇âÀ@ÅgÏh}óÙ³ƒŽÿxÛ¨%Çm` ¥BI×Jò‚˜5vH~Á‹1ëÌ{1ëÌk1ëÌ[ 1kìœ[ZðÀµAÈ3{ܹçJ#™q):µ¨S =B;¹­ü³þ`‰€b¶æ˜ÃK'B±¨¾ŸxÙZ[—Þe5èxBrÕÏ¡U%'OtðÑAÇm1”¢Dg°°ò†ø”bS&z3*=óvÇù^Õ^x=5 _ µ—kã¿þÚøƒ—]>¢aŽÌØ»±);”u9¯£âÎÖù%QvyÉ¯ŠŠÓýkbµAV¥>IÁæ½ ¯ Á"Är2ŸÛ?ádþ#ÊýÔ(¿ü0ÊOÿW>.ŽÙãhTkËñÿ¯ô(#é­•5(ÿºiˆ6\¦±ú­w¡¢Ò DÎøø £îÔùN>²öz0$!øÇßÐ~ÿåðM0Ê×÷¥TGqº_Ë%0ÎÁR&€Ê ј ±züL§fÖp†¡é–¡½¤ŽBõ«ç~#¬¬¨s ±þA#6"‘‰C¡í~ï+<¹ hñ²ÖeƒSWs{$ŸòÌe—Zg€4¶ÐpAz;ÔB­>xýOižNt¼8üæðÍÉ×»GÛ–iØ ÍÛjñNJÓ¤¶ÁÈmeåQ<€nèzÝÀÏ}^ý^!fB? q—û#–+£r…eÌÍ ¿ üqÏÍC½Ýñzí*ºþI¯¹Ç~“´²ªã1R(ä3¶Ý›™&º€1odê`+c•öŽ ^’áiûš?¼îºR%„–)$GP8Öë;̶bX ± ¹)ˆ ðà5O€‰A 1u¬à]ÈóŒIÏÌð\H¬ñiÐlíîí *brø³ãÐo‹~ÛôëfÅémà‹ã´Zí¶ëÎ@ƒåƒéŽø¶Ä·-¾€ïA9e§í^ÈdóðÍî›ý¯·MËiѾ)Ÿ²µYÞ¬Ö¬ÍbÜÿéÁћЃû*•rÆI¥*)PD#̓]y%^íø:ÜÆcdÉÑ-€¨ sm‰È,N%qaërÔO 8¦„\OF] ú\¿hžEÊùYXÍñ2b`Í4Ö_š¿ñ¢ŒLÎ.îÆÀ@ÊëuPù™ÛÅ{*þÐmì5ø^¿G× ã²  ˜²ár‰ÁEe,;A/»÷B@ƒÃÏÍ#ˆÁ20ÑñÖ#Àň$\¼ÂÓxê<ëÝî»\÷Up °rÚÕ™3ãÀÕµá•,@…ãË®Ûâ Vaàž‘IÃéGž_œÐëÛã룠D(î—â–O`³·ÃÓðüÐ<83ðð`Ql1·(Nf;‚%yðˆSu¢ØÏMA!3†S§gøI%ãRÁ)7 2$2‡ß†:UÜ£Xä…+Ó*d¢ÁV… ä@—4bxýÄv0q‚ÙllðÚ‚pÒv¦D ´iT¼ z¨¸ßì¾z¾5üÞŒP—1†/{Ë¶Šƒ¼ºAء̶ò¡âF¢O©«ãHììA!)?žl«‰Êè&HµâóÐnäüj—[Âqè­6¿’7Œ q½ A$@«‚¼Waô 6ÇÈ4v¤Æ"Ä7~›O3ÆÏ±.ýýs7lºèŒ‘/› :±Ã” %yráú>;ÅÙ ü¡™?¥D ÝÒXBÉ 5bª+xÅog¢;­‰Þv9Ü4dçôÌ›‚4g@Žã cz4ä;d*7JÔõUûÊ Ú£·E³]ߎøo˼2õ' xN'ºSðJmØé ƒhÈ$¯£­ºèµV±^¢+ÙSY»æö sâ¹Ê§ÈŽKý6í4i—ýÀ Ñëû&"›Zò ꜸÝy‚kºÛ&uÂß¾<Ù}ûæåÉÑK”™úÚP𤇇ØhaÀ¸ìœÝÃRãYëœ÷LjÒÌ·VÎ*W,¡^#âÄ>Yec`çjkœØÞÊïM4â!tj§¸13<‹”v •'Á:‰;à‡qç²ëâ Hê$iäuiˆuZ”³8cÛž‚@N8n÷ëßÊÃUôS”(3DvÉ´&’ªÃ<¾™LøDÒx¬™„%ÑÊ?ô’è?Õ³Ðúoõãâ˜wþ«T^®ÿþZÚX Ý:´ô°âþ»T´Ã>@óŠ- y¥†F«À¶ ¥'\\R‹ƒ;Ó^xdÚ¥AêçÅþÁë„uq•U,Óz½SŽ 1 ¢çGø¶7_°¥Õ‡¹½!þp^ç]3\}ÒT{U]¶WiÏBõ¿öqqÌ®ÿ•J©Zš®ÿ¥Ê²þ†ç>õ?±î#Œ°`µ…º‡j¶ñ‰aÊ‘“R·j¶Ü‡‘ŠÀ”JMßpí@RC î\C?h}¸Œ:®Ú‡!* 3øä€Œ8_6˜Á› \ÇàZÃq)PBÆzb—Så ì¢Ýq2Ëwù.ßå»|—ïò]¾Ëwù.ßå»|—ïò]¾Ëwù.ßå»|—ïò]¾Ëwù.ßå»|—ïò]¾Ëwù.ßå»|—ïò]¾Ëwù.ßå»|—ïò]¾Ëwù.ßå»|—ïò]¾Ëwù.ßå»|—ïò]¾Ëwù.ßå»|ÿ^.ˆfŸ‹ëãB´¿1á˜(€§ÅF§gÃü‚’zQJV[•S™&ÊôúFJYüËáã^¡8*¸R‘ü*ľÎÇð£7ì0øIm›F|…LÙenA Õð‹Qk}šD[÷¤P [ú4$”? šÊ§ASý4hj†ÕA>‹:öúÍî«7'/ ¦é™­ Ãá2ŽÓ¤‰£¶T¹W©Ö6Ý…8‘´#/H1€ªô„醲¶„¶ÆP·Êgл‘œ°¸às5À/¦|cžÖ¨Höi¯yº6f…¨v ñG©Öø:5>V™Æ§Ó¢ñiÔg,ŒEmVS‘MyB(2Ìf-KõŸMýÅ}4h²!‰hi‰ˆI§† ¬u&©I×ã° 6GÓÃ=шnç°÷u½¶†Úü R$5á 1’(žØðÁc =!>êF´\q*éøâ‡}àãå%„ɲQ$VJ¡ü+= .ï´×¸mÒ3ƒêQõZgè"báQøù©1¬½-!ÓJ)m‚ÊlMÌÆÁüQ ËX2Š5íhäŸ.aÀ½ìö¹6X‘\H=iEu²¤~,—Iú3=TÖÜ#5š€ŽK±ðÈ< a7Èw݇[èöYÛÀlk±A›KôD°XÏî5²é˜tY $!w d®¬!¡´N™b·“ï3©‹ mse ãŽ8¤bäìIƒÏ¥‡á¹‚ñ·ú—× €urÌ2[P'^($4d*U¦-6q&­I{âr‰û|’àõeǸÝÈ™Õ;5ô„MŒ[³X¼K×/M‘‚¶¸&…iÐTU Ú½u)hó”)h)Ú´_H‚ö} }L¾·å;ÔÏÕ`ã‹æmÌzž¿Îø>Ú±‡£™)$G :µ¢ò¶ãšHq8J¥í‹7}) \¥ˆF Üo.Ns¤o±ëõÜ\ϽÂïv—W^"ÔîñÆ—àoî)"w aÔížH­&¢Îð'©Î ÜË.k¹Û­ìc¾ˆCå§Äû|ÞX§ßx×i¶êÒ/\Êz&\Ô'Ùí’C«?`žñþ:סKï0è GC±p3EÔ5o’nHÇD`²·Ã€¼[uÛs@šnBÓ|Ád7D”žOΠØçŸKŒ€Ä1ÏKg¨ÔƒÚ-±²“ì•M‚,øÚR¼ú,$ÿ}ãã☣ÿ¡\©$É7—òß?Ã#ä¿CK%«‰•kEØ|m >vèpœ\“x¹ÎäjG/_¾“;P‹åø1s‰í0À‰ïML0`KPÖ«éÞˆ2Š@? ;¡”ù˾ï‘[êñüþ…ŸKˆ†ô‰æFé ©c‹-³p/®;,ÚFâŒÓ¬V<`æq‚“CÙˈP=tТB÷pâˆüÒõsl|"¨>麽Óáïm^¹¬Ë³!ÞGóá÷DU³&ÇÃ܈]òÐéw2ŸÑuÔÉöZ¹pFÙƒs#…p)rú§‘=3è_õ€ûc(Á#m…Ò÷¿#Ð=} É˜½TÔéxôÌ‹gؽä‰iK¨Ÿ¬HøÇÓܵ¶ Û*£m³’*\áÒoðOÙ—çž){»Ï•Fogø™3ühy™z0ÅÕi,à'¤Æ—ÛÅ-+C5¨˜d.‚ÉŒ`Bï~ûWàq>œm¯«êÛéM€º×âc ê'† š9½>Œ ÔŒÑëGOzìÂÝI‡>Úæ”ß c¤d¦>qêa)I!ºÝnóúrq9¼æšÏv)ÐþÓ]xö¤Ó¨w:€±ûµêECS{Ïó}{¯p˜ •O"âoÀÿ./=QçmÔŽê-ŒG |Ú«ŒŠä ¾ìÆnóV üï2¡wÆ`§4š:qFŽïݸÛ%ó^Ðç~aÚ«˜êc¦û¤£3Ké^åt¯Jª—5늉xq€ªþ0ÅÎã¶î9/¼U k«øN{j J£.,À8 ·F ¿=¾…Œr"´·„úŽœ|´ûH+µG{ g.±ËCì%†àÓ'˜?F¨sŽº$MΘVHIªÞ*t=(¹¬›SÉ@d€\»?„–8©!«ë-èŒÂÀ¨³å*ÆÞ†Y¥0’òÓO›ò®-ar(V—¿>Ø=Ú.ãq2^¾›nÄÇÐ_æ¼c¡ñÿæÇÅ1gü-KyzüoV—ãÿÏðü2ãìí›g…·ûGr °è¤¥N 2)À5õ©iÁÔ4 €M$îªß9œ&ÈV“;Q:æËf³Ù"U¡6j]N9?:ÞÝãm¬Äù˜ÚÚœŒkw7¸Ò;¡Ý­ ô"$˜¬4DÐj3G€O ðÏl˜6¿Ì†iù|–g‘ößúÈ8f¶ÿår Úþ©ö¿\¶–íÿgxRÚlHÜAwwºØÐ‹)ýë÷4ZTò×qÙp4p}hcÁÑþ«ë+_Û=:̉ͦ¶ÇNaØ<ôZ.@E·^«ßv1 -¿ˆ&ÙÏ㮲Р¨u¨Þ:¥ù×½!ó#N£ìP|M?ºžáVgþÛƒ79Àó²çŽ£ f`oâ\Ò?H¨)Nžä+òá¸FІo›!ºwnXK¸ãꮵG9w9€‹$¡rkt'|€Çb×£}ûòÍÁç<Áaʰ!W³!¯ý€›sä¬è`¥žnÖê+ˆR]à["'¸n3êB§Ý4]ãkÐí+^Ž×ƒ>V»q}×—š¡E ôˆÅ½‚`M‘ª„Y)TM­ÒÂ>­jörrâ@S ì1CÑ™ƒ`Vh½¾¶WÜ7žÌÂamh¥Žf•´²…ÈÊ%ÍÚÔÊe­\Q°>=àÓzg‚'n¹úØÈB²ÚEóygä’XÎ}ާ±ße2v 9KXqeInKwˆkR–½!Å–DÀc…‚ôøìžXqlÊp_æ¡XÇ·•ß‹¼¹­¢¦V±/IG&À`ï5 {dx% ï„áf5æ8#—Í8þ5-0Þ˜Ï8Dz>Sç†NÚýÓ‰Ûu/ÏXo(’3ämŒãz0Èt?€isÆk ûñÓP-‡Ó°0¢eP©é ÞïÑðá˜ê§h—zâ ‹¯Éˆ¿xZ¼…‰Ùß}ó0‚†ý€í ë ZؤÅ )Jà¤ql·ß7 iuŒLÃö¥¯c[fôm9W¹“ùO³|VƒÒ¬Ã9Sk¢73ÁÍJp+%¸•EcКpÔøÃú:{BäÓq3ùFÀ¦°Ó´³(é¼zçÚýn— N`j€s¨yµ¯d&±ê-s@oºkØÕBʼ,ñÉKðá\ìvÂÙ\6w.ÒˆÞc añx™ƒ o³‚‘ðÆÂ;#‡s·F¨”³FÓ¡æñ˜¹^¤5oK¹;¸Õ_¿ô¡ÒùýA]à'ùÌNHÓÀ¼szæ=9ï^ìôú— >rê¢r ¤^k,á"ø¶y §@·Å#ÊÄJõ0Þ8Ä“U‡ &ÐN »®Ñé÷$˜8ûØ©%ÂÕ ¸FærLèB5ò°¬áDd:øÌ6 ÆÝ<ƒÝêD¯_}ÑäC'ñ¹íØ™K[úúFžîóðÞ±„‰X/ŒÆøº9ÑIK„;f“cÌ<ê€çÍuÓ Cb§ë°VL¦˜(/0bœŸ0GXd§ËÎ ÛÏÚ&§ƒ%ºA{DP†Ò½ÕÊèõuÏh<,pˆQ\/µ! *‹T*b¹ˆ¡‰CÍE»R°w)/‚Á™t¯¿5tÈ‘&×Ñì´Ðl_eDõfrÍiáËm,(Rää“UtÐYúÅ L$Nƒb²JnŽ;Œ€cx»gc9‰$°Ã_Z²g# 3Ün7lÄÁaHCü¿z½¾ƒ|4‚Ì ?>‚œ=¢åɇ&¸•…ò"‡™ä¿Š#nåöÜñPœ¦ÆyÎJ‚eˆ`þÕüš¶þÀ­õ‰=g€‰ëË8œQ·ÛoØ©wî^ë-H“Ò› oræIÓ8$¹À°¨å¦%.]—ï®CSñ„ióŒñäzr#‹ÅN>c VǶ1ÑÇ×7áÙGQb‚‹x°w*næ…ø¨Î]SÃs#¬÷ïƒvt|ýþ½0¾“Æ÷â{#¾ŽøîÁ7%U!’¿ÊÀb»Ú¹¹‰4™¼¤É’# œ3£°7Co\¥éµ<ßLª‡üTëU?8ËÑiÌõù¦ Ô>ÖÇl²]·¡™»µîÄ^ý˜mK½‡E¾,8{¿ òÈ-H¹ô@«Aÿ‚§¥’/i±áˆi°þf•È ïx¨2)“"–¡9’¡ã/4»ø+nˆ=‰Z˜øÐÓ—"8ôdÜš@ODCˆˆ¾[z}KÔ”ß Êôúmhº½ ÍwŠùÑí£˜íNö¨ºYÇÎÉàÓÄÆaÅö8k\øÌµ–3ù±V±ƒÍ¿ž˜ëí©SÁŒNËã nåʤp@Îëù[«xgDFu0FùÆ(0DùiàG®äÏtoÑœ †G>M¯YùtñæT¼ÕOùë1np\ÐvõN Èm‹~Kô[–a©Æ·…d’.AHQtÊv±ƒs» é¼êÚÞl°õ›Ýõ÷ÅõÍfV3â²ò PIxêñ·k~HªXÅxÇGKÜàSnfÞMŽ÷ä(*´ùbì¨û[‡ÅŽƒ€I…ȱîð´ÛwX76ãbð§3HHiIÈ¢6 oü¦A„ÏB‡]èãDÄ|&Š$¦·U¾P¡ÔËϦ2=­Ò§?xÚÀûàœ"¼9Î{syrŒGž’hÇa™8 %a.fÀ_ž¤g=1}³èoˆ @\^® Òwâ0e,FhÓa¦Ý2T‡6L½ Âø|‰e¹¿Ã؆èbq³˜+Ý‘œÅôy¥ðHoÛö£fvbÛy#óHYýt0Ë VŸò Ð3±¯$©0u‚œä^ù|ž¬$1è½x3'/¾0a»iJŒô”&iÄWGŸ  É8p–‰A!Æß†éœ˜:ò¹°à16a²Û2âÀ¤Ûmé‹­1ð«xÀd 뼋ʯÙéÄñNS\3ÉÎÙ˜s>iˇ8 ÎÛâË-u'˜ßóÞB8úØiDä¼Üd=Þÿ¯‡‹së-vÆz—Šð8_g\°4eº¦>k𮱡FíZûˆç·ýŒì/‡PM{§8Áh»n§q¬0{äp|ˆi¾ûÓˆ–aûÚØA|M ¡~œÑ€e#åå€P¿2TÇWt»ËÕÖ5/ïæåµRLþiƒ€F&Ší½;èã–Ô4*Z«Ë½t[Ù6¢pûÝ>ÝÃDŠ ‡|UÏS£"#êS¬ØH†.ªƒÙ²™…†a‡†8q:u`8t166gdi8T9ª«92á<~@R¡õ§Ðjò”ècýÚ¸1x3OÈ $ ãØ’ø#ð «“]œÖ »Žk.iɶ̌³‰tQÎçIœ%<ˆž&žöh(Ó*¡÷LV<Ì7ED€ðS  žT„Á³ ožì!ºY¶Ú8Ýr¹s“–Ælº=™˜Ä®’ŠUëé™áýˆÈŽ-Öí.¶šM>bD—ãi'Ziˆ©NH†ò[ž 5åätYï< ujØ={\tà¿ÿm5„Ðê Ýжwê #.§vyqéö¯ÜAÄåÚÃh¨ËQ¯uñ/Y˸Œ./cxÆÓÑã(?šÈ8ѦŽÓãÌ(š£/ÝùÖY^ð£ÑØnm–-±V·º„ôò¡ç®èsÉ3dJÜS§U$ÄH½5ÛKk¶v9À.ÏX«X\·M³(² E£3q Z¿_‡Lú=÷+_£|¹’‡‡Î\­Ë§®O÷ºÄI¤Æ3\ ÌcÃXZ––¥eiYZ––¥eiYZ––¥eiYZ¾ËUé¶U+Ê=EÍÔ,­¤•µŠVÕjÚ†¶©™EÍ45ÓÒÌ’f–5³¢™Uͬiæ†fnjVQ³ Œ…gº­²fU4«ªY5ÍÚÀ“Ý¥¢V2µ ,i¥²Vªh¥ªVªi¥ ­´©•‹ZÙÄ“àå?®•«Z¹¦•7´ò¦V)jS«XZ¥¤U€ ŠV©j•šVÙÐ*›Zµ¨UM­jiÕ’V-kU ·ªUkZuC«njµ¢V3µš¥ÕJZ­¬Õ*Z ’SÓjZmSÛ(j¦¶ai%m£¬mT´ª¶©ÝÐ66µÍ¢¶ij›–¶YÒ6ËÚfEÛ¬j›5m˜ÜvE`H8R–'E`J¸R¶ŽØpÈ8ä²y‡ÌCî!û€&0д¿Þ“…€.šÀFøh#Mठ¬4—f 3à€&ðÓ†šÀQXjOM`ª \5­fs à€³&°ÖÞšÀ\¸k{M௠6Ãf³à€É&pÙ6›Àgm§M`µ ¼6ÙfËÀ¿M`¸ 7å&ðܦ›ÀuØnßÍ€Ö›À{˜o÷M`¿ ü7!LȲÀÜÀRp &dƒ ù`BF˜&d… yaBf˜æ&?,P!?,È òÂü° ?,È òÂü° ?, *ÀA~Xä‡ùaA~X䇅å 4•h€Ã2…K5k,×X°!?,È òÃ*aÑ8È òÂü° ?,È òÂü° ?,È ¯;@~Xä‡ùaA~Xä‡ùaA~XV+ÀA~Xä‡ùaA~Xä‡ùaA~XU¬uùaA~X»{ûø¯O–0“—vÂ3>tN7A×½æ7l”;4l¨]\<ŽŽË=Ìëé/º‘M:à`yI¶È¹”²Õb¾\å b÷†‘¸u±{·t\ßà‡!ð¾9ž ’»NüÄ÷¨s&ý&Ü;Å—B&­oÍF¬;@NŠ/;׿¾5"dË€˜C A¤cá©™íŸ àð³Yë±B­÷èØ·4ð›|©òµ01:׊æÅÖ;ùñ×ð0ìâ¡pÉ^+&rÖ“ëBTõJDÊ÷Þ,.MóLâˆÌw¿>%¿“ä™} ˲-ìcî¥I?<~€ñMx§…ûkIO'ôåHxAË8“Åó©%g`y׳"@–Ö´gý¿Z9ðü~/¼ÞÑ飘, M¹”* ¤UB ûëxñÒõ}¯ãµ¸”VSÌ;"ð2Îiã¬)@78{\’G0ìƒOɸ.ìåHò—Àµ2 ‡K°ž“~‡î`îâTïQ@Ù…wCi;éAï«RVïß]¯Mja|kæJwÙÙ~^‚gãxÜœVõN .q&1­ Œ('Ç8ÛÈN`º‘52²_èõ¯°YÅRüá pdpÚï·ñ*&»E·~ûļ¶Ü‚Bqm©§Id{Mò%”ÛF\zE¥&㘆¶ýU±gE× ä4ˆj^êQcòÍÒY¨¬ôqÌ¡.œŒi7#Çw‘#Ü”±`E·˜tÖvQçL7tcLûÏñ Y b˸èÚH`¢ Pxd=õƒ®ódϪ8¸eùM©¯‹“K·¸Ö³Ž8õÖHò o¡°`Êú˜IÆ€Ç8Ñg¡+!TÖvGµêtˆ*òã¼Ø•Ýo ÓÖx‹›ìgüÓåŸüóí-J!ãG¶ìÿ¼•^xå–/è\/wÌÑi0X•søE\ûÛ¦øB˜ÀH˜ù)tb¯SˆÝËB8qWi]î&‹ýpn ÇKñòЈ®OÄéý•¡aÑǃMã';ÍLpÎÂÐ2ÚŽ<Ñðd‡GhÔž@EØÑμU7¼mu{²ƒnŠ5­P>á=ÒÆ_ìÇ?ØOìüàõÆv£m:öê×öš]ÿð}ñÃ๽õþkÓÞ¶¾±w¼ïí?ÚuvtölBd>ü`ÿé;ø÷_nÚw­Îû]{ݳ¿º²ö¼]=šoÿrdçÌʉ½öÝ_íÇߨÇß@kõÖ.ØMû/žoÚʇïFŽ}|e7ž?}j?9øñâìí{»nçÙù¥Õ~fïütñ£ýG˾ûëÏÚÛùÝK»yöãþÑ›#[ïYçv¶dÿ±oÿá‡w?ùváôå»öÀ~lo ì¯Úý¢ýG§Ü²õÎÉŸö¶ýȶ˶a7Šæ›ûñ»¿|x ·ÿóÅ‹ÿµ](ŸÙ[c;c7Þko?á•›w@jR=´s}{‹½µuûïíËì?¼©õ쯬çöñÜ´¿jÙ û÷7öº«–ÿò]e×ýúäÏöÚsïÇ·ÏOϾ»²mûƒËJÌ®ŸŸ3ðz¼þOvæüºçoö^ FöWvóüÄnÔž ¾ÛwbÛ~ìtÇöŽo¯kÿ8ñÔΰ÷O{þ•½õ×çïíßgçŸ÷ÜM{í츖uJ¶þú%$,ÿhÿaT±ÿd×+û•½3ÇÞ¾°×?œ¼0+éÚÍ·¶Q|uTµo²ÿÂ>>¹©Ø_=½ª¾³EÅ>B¡X–‰e™Ë„žÏЄÉÛܦšÑÇW½„…ßèBK\œ€•hΡã"ÁÕÀmf(Ç¡KÌ"qw‡;àÔ;ÊðãÈ‹eÛyƒÉ›šò<±wд¾E'x¡kl®x×Ô™°Vp²W8Ý€ÛÍ”c‚ƒiX%qÚÈJuÙÒ"/ÉŠžF^‘ ÇÂËnÃ\%fbÇ|HpÌøeD&‘Œ¯gÜD_ónO‰‹£êü^n3:ˆÓÁt|ßH¼!Žã4aM?¤ª\ÊcGEIRÏ%^:¨\0»Í-%ò…bü¤8¬J²R° lUÅÅh<–Óú00ÆÉ<³Ç%{\´ÇU3@ÍKò 6Dl¡€w±RõÞ_hþ“>²ŽãÃë†B¿Æ>* "ÚMƒ ¦`ÿSlñÐ[å(h‚?MnKw$5&65aPÆgùÁ¬}Úë86;Éå„ÒVq©»dK øÎ˜öÝŒÀõm~­sGjKr˜UYL£mP!åu$ Êo¬%å÷f):#‘€‘øåV†GVH×%oz‡HPö™J›­#’úÇ` ’•Æ8V-lâˆ{*(‡'œ•)õ'ªV•±Xw‹2:ʘÆ™RUŠÙMú`ò‡*Gpº˜Q¥Ñ)KJcM^d(t—h‚ïL#‚' E ÅšÜBÝ2bN:¹Ü‘¯¿šŠ0RÆ'­Ç8é1êlf½IÊúlc²NJUuPNX­¬edÖKÆz'b¼R§·*0Ý&Ö¯I+Í­ugÜ(ÕMdÀõ üݤ/{]ßD ÉŽµyîLÊâ3), ¿Æ\ “,µžBê—Û/œ¢ÌŠmÊ3 °-=l;ò…¥Œ›ˆô6w0P­Ý~ïÔ £µã*Ëõ¢¢0©m‹·vZøiï´ lÑŽž°ÜÄä6º.v#/wNŽÀ¥-JýC†FSGO ÚÁï𪿓7Èýh…qÜ ¹%p§?„Ðä.áÑ˘€%ÿº>–dzMËâW”_C;ÓËi}¿åu»¨Ræe>áåY¯¥ùýxû«|+ò ™vÙåßë±î–vŸ &`P”ÂóµC 7Ñ5Ÿ]i]‡åg‰ñŸ–·£sýr¨61ù…0Ç¡¾øƒc¤™:ªfB(“/GÑÐ>¯cÜ$¹!£®‰áíRÄõ8î ÖÉùþxí’ù¥Ó( •EÅ_aó.T‡Ã.ÙÚñj½$3d;ÔÞIE(Ü…Á4#&×u¹Ä™ÐFS}Ì”j™¼ÎÕŒÈ$Ñ…"Ù\žÅ% D,)Ÿä 8sdHñ§¦M°ôëïÂ0ÜQšZn@B÷;77侻ؤõæÕìö÷q‡]p¼ãžû†0µZ¾œ°a¶Cƒÿ#êq[:KÙ,+솎Žn׽رQ/l›i´Âư›8% ³˜³Š¹R1W· ¯•+—rV)W†Á{3­õl4çFQ_8‰°@÷¡s†[=)I—Ì”Ë- ½‹»0¾5qo†Ö hxcÞ)6nÔ¯ìÂd}‚[ FFï@¾N¼ (÷t@F&Ÿ©ûgxC½wjû™Æj~½™1dÇ¥í1çZÛû±?èi»­!ê'Ügƒç´uíÜSAtÚ믎¿ýóêê¯Ë^õoÆŸÑÚ¬Û $=œÆ„¯!n ãG¾ˆ€Jwî®5_SĤÔÐoûCw‹K† üDÑ·/Q ëpÐoZ¨^ó§ë ½”©Ï‹ ¬ xH¬fÝÄ¥·)c¦¶Ô?T›¹R°<_”`ކ‚t„6“ÿŸ½kíJ\YÚßý÷¬!1\ÄÛ‹aáeÎ̸̾ÇÙg@] e«à&8 â«ú–J (ŽgÖ:gI4TwW=UÝé„N_ªó:)ÓøÒxÂoò«¸øY"Ô€æ}á­ ØÎµÚ¯§Ei?hëPÜ{£›.¶9"ððÆf(çXZ>1s•F>»Õœ4ò…f=¸LŠ\¾iÙ:%áFrð¼õ™ÿV>róE;W²skZD”ìBŽÄä œe+d )»@i;  ŠA¦ücEÂc/“¤‹E{ê*Ú˜)¢ÛÎc†Š$"bA$”lKvŽÿhà0¢=t„¡´"Ñ÷a3³D%²ÒÕTXgÂU–ÒÊœ`Æø¡ôPS 3 èš"ÖhìZ]ŠÄ—j‰=ŠDd]V²2ŸúlWsÕJ—m“å-gùãÙ•À+¿Ùÿ¼÷µ~x`í.¼¢Õ¾üa,Ÿ‡×Û¶=V/[ýUœVà«pûŒ¯.÷®€úË땹~ÿâæŠ;í%»@kx: Û—Î!Ü«=øyóáÿ÷½Ïe›&"ïõÝ C{’$­!¼vЂvZ×»éE‘>~:¨{ý^ps9ÄŸÚÞ¿®¼ ="‡h­óË›v´/G¸Ï‡3%n ´ñÁ½òn€%UuºÈ€ÆÄqÐþÞ ºC§˜3|÷6(Û*Óú^8ݞ߯ˆéA."! oÚ±s/ -àüí–mA)6ÜtƒóËv4Bq U4’‡GAº=KÓ¥‹óM¡|®Î‡_ABæÚ.¢²-ð»Û+'_ZÍçVñf-Û"uFñíÄ:Òí»—h&Záîðî¦íµxݺ¡³ßm‘«0ÿ²Ï@ ÈN*ó…q×m_îÐjÞrW[ý+{™§tÚ=°|°³|ÊWÆóªîuq²¼Cí,_öÏðglõ¬ÛY6î9˜´³Üë/ÛäЃ+a½)-íÛyZ¸Ö#JÚ7·ÉZ°Le¦ž’Ánw2Ü d‘‹Dôÿí†úÑÍáK¸Ú\¿(—'ä^ ½P àS,KªÞòAþú÷俟{ul±;‹¸=f‰=)ËÄÆ‘éö| {`gDY³â‚á _“AwøDçh˜a¦•Q‹€ü8ã‘Vkò,,‡åûœær΃œ8"‡õòbjP˳槭ø7×x·ËÞü§Gýx¸ ëôã28ˆ“_]m,{ü ôŒ¨ˆ6ÞéÈí°Ä÷ c<29Å=ÁY¦‰¼ƒÓD^r´²*†n£ˆ‘q×ê‚åˆC¼¤IP¥¯ˆÈ'F"sBY„±(æI?½$ŠYùÕJ®pÕ%b…H|ÒÏ®|ƒØ…ŒÅd±'P¸ OljÂ+þª–‘áVî¿~õoàÚ¸lo_þ.Ñ„q±z÷|ÄòÀÍ÷W¦{4¦—LŠï抻™ ¿À§ùSï Å´Œk1 „ûuºð:oæWÆw÷ò¦½úÄìí9áæ †×2tu·Ö®øÚ£h³bVŶzý¶˜W8wò%9OÝ<>æÂw|ìÔÂa^Í­i®Â­à’éZ¸:Cx yŽPB´p>fzðLdlšg.±š ÿr– ÒUT°ZTuj“:ÍOÍ­×ݺ Ôݚ̠5u,Ý ½ÿzzvÎ[Á“ µ0$ÝÅã†IÚü¥˜–Ól{ê¢a`0wçÎAØqo (Ì*,wz ƒÂsܾiÔ†ËNâ”Ee5•ÁYÈQËŒÄ4 çbyâi¼0]µŸ "µ;_DTš÷<ÑÅô²z{‡¿ ŸÕ,"+…R#—-5'øZk2‚ã­æÃV\†S)]˺W«B¦«÷ÌcÉø¯á\…òÓ3tku²õc±È'3ÌÞGÍäËRôRŸI,ØŠ‡+Ñ¿23*sª™š¼ê¦34P!LUÐâyíVK‰Ojø”„¼é™S%Cd~⥭F¸yh&†ôL,†ÂgÉxœç…´,á6 ÖOøüD-K¢ê ¿Îèq‡Ï^‚Ú±+ˆ}NäTLNÅ@R ˆ#N*ÆP14RÄ7N쨘Ãü´«ˆ‚"¤2¤ö5hêHS#MI´}…¶¯Ðö5Ú¾FÛ×hûm_£ík´@¡ -ÐhF 4Z Ñh´#…v¤ÐŽ4Ú‘F;ÒhGíH£i´‘B)´‘Fi´‘Fi´‘Fi´o í›Bû¦Ñ¾i´oí›Fû¦Ñ¾)4\˜q#dWÑUB{!‹®p|Q¡žÏ3L)vb‘˜ÞB¦º¥6}á%ÎUq“‹L¢EîˆuTb¹Èx<æ[µÅœñŒ™˼ò¯[ù5ŽÊ. $7$•yRr:[c÷V^òæ.˜Æ±°ù‹h“Ú,°Ú¸6–¦y{’ãÄM…eÎòri‹jâ¨E,xI¶Yõñå Jö4 B¸k°ö§Ë²ìÏ;vÐ3jO.û³ í¥ƒ¦ gÑ[Ž ©òl˜VSæÆ’)²ÐnešªÃâò׎ñ­¹&ìOÓb1…V˜MHk‘éÆ/z”ÑÔª°'dçºÔʹð…®{y'—½° ËW½èE/‘5/ïô’v‘„Ô犗ÊŸf±ü6™I¿-“*ü ¼§¹8 ¹-üI[1ßìh?‰Ÿ¼o¥ëûrŸßó‘¡äñZO!{¾¬É@$.!ôP_ö]&{ §R!ù%%:HåVøøL¬iÃsÞÊ ¢`,£ÆwAÂ[ÎàËÛ ¹4# {LnÀ<Ü\­žjúŽ„UàOí¦Œ¨’wU¥åÝîRÍÞBjÄæûï?~:Û"Mð5Ò‰Ñ4Ëàv1ûybáOçÒu›¯Ñmég€?÷CÁñ}`ճ㯾lX©\Öóâb굓ÅSbnï6|ëeãÍÒ|iIÌÐ{áÍ3wQCëÝ\>!;Ø=þ eg”ß{b2aáÍÉ}Lfªäæ‰*tùi°yÖFa:µFHÁ=Rn(èÙSýWO©@TLÝãÕ•ŠEKOW‹ÞTýÐßõ=¿JÈÊÓõäz˜¬2´¬…Ý«^kÕ>»O[ÏQìXÄžÞïo¢8óÎF ×À…%çKÞutQbÃøõ¯O¿-ñ«ou Tºh!±†¨H”<ÖÞàøpÚây`_<Û ;7½n«¯V?Rª9/$[‘²N.1õ b_Ò3NW–Åô%šÄÁ(ôf^2£ó&vëKS¤c²9æL#û¨2H£dDì=r‡õ†ä¿Å¼…T“¦C²Bò°v(VÑàïü# ¸ÄœyVZ¿Ú²M[„Wñ7^+­OEb\ Ê­ôðN\¦ð,™§ˆˆ÷¿î6_¨/ØÄ’W8ÂI(phäCuw¯V?a¶ÅÔÃA:1]‹e ¶¦Cê>÷@EB»®Hy^‹e5Óé÷å›"P‰œB Ädñ0FJ‰N÷ÔGùŒÃèçã<ÙДJ³`†Õ'ogîÌÄýÞQs.9P&WâRØé=™Õ}®&'\Pl53~èÊó‚ø¯O;âH5¨ÂIUã~×{ý¡×¿\’+!á>Éòõ¸Ò ˆßš•Œê¸¾.oå+Ì_0\ÐrÖ­-ɼ&3alFÆ O8¦ |8Þ!:›ês.x]ugd„¬ð"¤º1êò¥+¨Í±_§óW'°ÇUK”eˆ :xBô¯*óëoÔ{Þ°5ñú=+Ë.î«Ò'ÄeáŸÓnêÛOl‰"+&/Ùðd©Šâ ÏçD¸ˆ ±«E8ºQÎm°0Â1ê:ºb¥¬ôå6q×ê™"•b2™šè¹ÁÅÎë㌺ˆ5ê¢Oö;\‘øžÞEâ—nÇxÓöZ~—;€þwë:Oh÷ü. VQuãàD5; ¸mÒìß²Ï]ñaï»H?‚('É=µ†3Ò1çæãi„§#<}ÖaÂwLøŽ p’Z0x’]Ñ`ïw<Ég“»àž"»æÂ+º™{=^×ãõx=^×ãáÈY¯Çëñz¼¯Çëñzü/ÓNì Y­VÅ)’ÀI„¦)ìà$"¢CU3}øå¯OÖ®™>úí㡵g¦¿~8ødí›é½Ïüññ«u`¦ß[ïáTýø»õ/³òÆú`¦«{{‡_­¶œb+“í§øÓËÙÜŒWi-*ŠÞ©¥¬²ýÇ0d6 „—ݳ âH¼ôŸmŒ™þ£úå7Ëã윭ë¸ò$BM"Ì[¬Õ°yŸy5Ú}?§¯Áyº»_%6hÎa0Ù`ÂzÖÈÊÞ‘NáˆÆSGÀµÀâƒçfú÷÷ѽ/¿¿êø ê•â3FΓ+éꧺõ?aÆGt\^BY±ù'‹ÂRŽØ ÄÕ´}F‡äZ mxRúÜÄOýn@¢6‚s9QŸÃÄ`Fêɘ ø£G†1N«Lý"§ü¥Œœoä\#—3R'c–B:u›²ÇtºÀÊy[v1³žÈÊkìS]Îd½º$‰C5T½Ì|4þã Ž ?i6Åü9’Ìñ‰p::äüø•ŒãTþƒ6V^ÊHô¯ò`(wÓÁr:öPŸg|Lo’îXF¢ãò‘aüˆ)I æ<ä!n½Ý£/§úÙÀ¯ýT †Œ}ú¸÷yÿ ʨïb ¥Wó%ããÀ„‘â‡{®ˆåÈïäÄJ1ÿéu„ÎþH¦LVQÙŒ¢pxL‘™|NÓ„Ì,¾œIIˆ]¤Râ»ìˆï{±9Ý…8ƒ•BèpGJ:œh4¶;ý>n&'èE1 uM3Bruu5 \²þ¨=Ãø\T! ÛcÖ¼þ‡20ÿN†L¾µ;+gó)9qõD šbIâÜñûÜÜÄ~'çŽßÞÝ&Îcù3-túhbé&p¶\\çFwE'…§í«ëáíiëÒ ÅÃv®ÏcˆS¼+õô¦àÊ^hãÚØºg®ìkµ)²‚s–«{ä»_2é¸Ó@8ǵÑtMËkFgÌ{jXÒOæ2äç$$׈øLüyãÆ1ûˆ8F•àöΓ“Oøl Oœ±Rþäðùù8Zå*¸(Û ·Ñäí3Ì–|/x1æM¯¼ÌK¦G$â'‹gKמÐTži`¨Ú)µGÔàkœ'_ÞXWÏ|-oþî‘o¸Öx Mà ‡Ï”Ô"µáî¼–ö,orbM;²6\¿%ë‹bö  ̾•§‘8O<$æáÌ›<%&Zp±Ú:Ž‚pßϧr¿áö¢ˆÐü|zôµúåëégxñafxƒ!kõ¯¯ŸO?ñ Ww4 žçË&/¢†Û„ÃrÓBîËoãz cÙõ–çðGxjf¥Ä×Tp§¦‰ù%ݶ©6.NVñë’³xù3¡nÅ%j®l,Ɇ°rC\s ¡£WºC–8•—Êü8ó²V$d„ŽŠ1 y{&ÒŒÌ-Œ´ÿB×M½À…“H/p帳îÊ_ˆõY Á^"—'nR&ï¡£»)¨y|6ÖŒ,.ˆeÖ­ËÓ<ÖC°::&éh ªOV^1ó2ˆ,“a¿O˜Ÿ©M¶2u›ÿX´Î]±¨#øUÞÚ }ö‡QõHܱö¿dc‡nbëþXËWµ´ðûgfàõý[«"ç?÷ÏÍ&çQÆÇ9'DæG99²Ïçd:!ÂWyµTPñ†adçA·€¤Ld¿á–ÑK$ÜÀ@|ÔM Ù€Dœ‹a¾¡ž‡À°©¯r—BpC´^ðPûnÔà/û;ܯ—Ɇ+øÀ&é”'WÍÆ‰Ót'eÜ–°Œb¥3j†êÓ‘˜ÿ”ëY¸;¡ug¶|=æ`Y×ÿˆÅðXä¶žò¼-y7ÜŠÕ•;yöúCѤv‡œ—”Þìô¹›Ì†üI8KjµXÙÍíµ~Èà§…Sñ*vt:¸ÞÒ‘[JÈ™9I.®§ÛaÆÒxܪd¤1t¦UPõð=Ê*œÔoß®ZDì¶Ô |hÀ§€RH¦ž $LÉ?×a@þ‡´§²Ï”']SNËzB%ÛÝV—B®Ê‘%«ð¸+3NT«ÂCYD"›$’¸0A¢Å™¼T;Gß(´ÏÚcǬüt¯®/ÛÁmoèŽ-öVén¸Ù»jöø”ï7:Yøêtš26—ÝŠ%¤¹S©Hó@œDÆÌ„½Õ¹eÍIÖQ!“™«é ³¬Š…n!¥a†°ÌÀǼÛj`$»GmJŽëìBŠƒ`¼°a’Â[4NRŒ5­tj²,ÒEæ'"m™§-ƒ1 [}Ô‹É ‡„ÙƒÅÐ0¡Š l y°ü‚öÿ3v¦-LOÂ\‚-<÷ŠßJ‹²™k€ e·sÏ[´¢'­~àùTÇ–ÇÇð]x#ú*l,3Ð/ÄÓ/ÃøCîaŸÞä7üsUWœçºr˜ â]±"ÞâÌ,/º˜e0#×q·Q–†“1aXõŸË ö1Ä#pih>Ûï푟 k¼ôJ%tsû _Ʀ6ÈÅÛ9oÉ/…NT÷iL‚Š%(Ö“÷ƒþ•‘1'F3cYÇ›ñï¹)¸ùU…Ÿe€Ÿ¶C’«*fƒØ7ð¦FÙiÞçV,§üuvÄúœdè7nG³¼ûÅ™É;i°@PV™Ù®§¯ûs‘§c@Î_ûc7à¾óÕ´muúýeݯo^Ù»&/æeØYðå¡û"¸(ÙÎeô;FšFÜr¾zn'7Û{ôa‘ÜùìšqÞƒ¦³î0€R”Pv¹ÿçíZ·Û¶•õ?c»µ(Ù´¥877––dg×Y{7IålÛ©x"-©‘(GÔÝôÓœW9vf>¼H¢â¤íI»h`0óáB0ƒ7šiðI|j5Ôíw|áUtg²ªµà­èt1¼.UŸy€µ®¬òn,ª3“5& >Qüâ!K£7Îû…Jþ‚kIíÝ3Þ×Qgà±›™tE·3ìø¢‹ û£žã ¸Y’€¤sÚ UùÐZùnèÅ´½æy5"¿jé¬Gø¦¡¬…ºëûô#zÓò(8W•3çš©ÏeWkÚ_¢µj]”r µ¡D¿Fg+ÃÿÑ]Ÿ Þ¿k{å°<ѕɛÔÕC9)ûS÷€ÐvL 7…r}H.h,6E<+Tá,7=›¸ƒE‰ÉpT'ôÀ2uš¡÷^4L³É¾}$ÅdwAûµ…R6¥“!‡Y ¬çЉžü †ñ'•×§e rZöà\8·sº#O”¾­-Öšær&ée{;Ã<³ u–“]#;x¯ª–]C;ÚÆÑ¾C~«³[{á îç@^{<›òËøbË¡±vÁË>sY­œÆ[z1Ao›,ä\\D+ê= aw1Í-¹EŒ|íz…ZyKEõþN=uäí²jü‡`Ö«á;©Í•«9Hà“lv0(EMwäÑ1¼µÒW\ŽŽ^ߨÀIsÝ1î«'P01!B–g¬sôÖè·7å9àvò°+J?Í|!UaÙ2Ím}Ä™Ó3’·ŒìàFNvò†aÕñšbDߑޠk´:c/À>žüªÒ»éðí]<ó`ìC3fo ÊñºoìIŸqôñuø¶ZÀ8£–…ú•…ýoÇœóqåH?¯®•ÅFŽôËøŸbJå8ŒûPþOÉÄŸÈ#„pÔˆr téNSÚnñL}_S¢˜¶S=º2õÚýQ—>Ÿ‚¾D|×®üZì¯Ë½Ë~×q¯ßî“v‡šà-×Ïÿ‚;´¸Ò£VÔdï®+š|©%·XmÁM;ksµðÔ”=ñÅc|äÈ |íßÞ"såÕ½×™ãþ;–îPÇàÒÌ\¥r¿¹ù`¢ôÄX0KVf¹µÄ~YO 2/«ž Or»xTÙ0üÝÎí-u Ÿê\%¼Qª×ÌÔ]–[†ýÓóýbÜ2Š]• ¶¹µP‡NöQ"™ýFÒ˜:Œ‚Š'³Ô\ä߈ýìØ…Ýu;ô÷\K—[œÝçs¦¢1&Ͳ«ò…õìê°?jµ'õ7%À>•ä¨J%¢%,þX[ž«êï¿s‰dãk·þÑÄPD]!n_0PÙ 9›~³ÝÈRP²ìÅf'°Œó¾ìG Ëœê.#¿ë1ñ0—¥é9¿–¡•ø)˜ì‘^͇Nhpøu1mY»žízåWöZ!‡+#Çæ×ÒÛ5¥[;>1Ÿým6Ý”¬2Kÿ1aØ^|ì–ê<š†}zrrK¿‚É OSŒ[V¼ž¯<‹Ç Ü“÷ØÄur iUû]ÍRc}õ¤všù °ýˆ nJ”`KÆ©ë0¤ä²=yœ=ÈtQe›M¸L¨+S Ø~Šý-×÷µ×⺪=-°—ˆdÄME*k!¡hWv;&^EPœp–JˆP®ØÝCV‚LYc™¬™µš‰ãë÷Oœ¶#Z"-XÅ×[bôSl5K‚ùJgÈáù#óµ?=–Ñy,cm?“aí½VŠÑšà¥ ß+ŸUÍ.QöYæBt;ôÙC±Äp°D).QJë¼i¦§‹.M>ÛÍÿýŸý„?"(ÃÖ×ÂñËÒ±oŸ²TÂÙŹVí¥yx})\öŽs'Y¦I˜ ¼¤œúåÙ,šÒð Å×Ëø4¯˜ÎñÇ \%ŠiÆ8|ìz^päˆÜ0ÂÙ QéEÉ®Óäò»¥hDå`ÈÿOœÐ¾ ùDËôå3óû ±eì%ÿmHw„jú+C=ù‰ày²=I¨T²—òˆë¿_Š2‚Á¡¼B!S•ˆ¤†X„Ì+i,ÔEW Q8ül¦#Ñ¥5±ˆ §Rb±(ªâV>’C0I­¼¹`‚*’NK'šr,Ìk'¾·ãË„Â2%I"JA u4¡²DYâ¹ú" l×ö£O4;ô†êË?è´ÚCãíoïùê2Ïx:pyN‹iÖ^@ï½sÛiʛъpWç$Ôëð.ǽÁÉfh*ŽL…mRv¥¨›iM¬•¯`÷Z°Wu=Ë6=‘ÊSBZc¹”¤Ðxß:O43„Ìæ#dÅ-¿Ì/]+ó^ÙÆ¦väóÇ©áÜlî/%ÏÃTâd=°. ©É5:ÒïBÒô›fÛ¿¨™ÿÈñz­ç #/¡añ]þåùrN޵kÕ”G!jfî$¤¥j´@ÊÜK8…4IV J–@já'sý©*—N{kþA3r,òQ÷£vÙÌì{ü6š‰w‘2³{,_”˜€×ŒY[6 ²G,N£„Y?ñ¦SÚ2â'!~RÛ^¡h.§‹fâ2ɘsÌ)Û™,3«Yb/éí4µ‹i—ÓŸs…œ$‰e.±–ëé2éPªªâ¾_)±ÅrN*M…)Ýhâj»’¾Th‰éq<< •trJ³Iâ·ý>É;b€çܤ/µ^SÜ GíJ^̉Kn‹Q€¢Ä®.­ƒ(‰è žAUâI§â+ÉÅÕäÒjòSõu`ß÷Oø¥×bJa1¾H ˜5Ŋ°b¥b*úYʼní©xâ×F¬q¸Yé\¹ó†š7¸:é‰`{RP jaVtI®NA5œ#}“„ÀØsC5Ó¤QÎûj.ÛÀ W9ëôô߯êþü;³ÖÚ;ÆËÛÎî<Û±/ó Ó/G‡ÿc4;¶|ûhÖÐvFƒ®N Ú^·{¾îøw#J´ ™@éôD˃PßÿâÍFw*á9 }Æ<Œ¿Ä!ï1§‡„ ΄ù\8Õg÷¦;ÉÑqgÙ{èj*Vè?Úl'ø*S±T6óõsGiBË0(çæ|ÅD/®é[gŸ¡dLy—=rðPØ#ÁG_ÌL¾û{ɆE@Ód›–BáýáÓ¤¼"‰kû]­¡'Üïä¹ÈÚžý®ÙG"k:î}w‹¯^½z¨äœØÞ+úž:æO\"}¼z—­ø°ÓËê š›÷i ó6©2j-¶•wÜ‘è]7íƒ]Ó~¾07RŠÐZ -Øc©:øÙwÐǨ­w½¯œØŸÿ…ßøP´h!@xwÔãØƒú™RKxÐå𠊵+”—6ú¥ý”,õC5ü`ÊO}B¬Ñ¾bÊ•$Órâ íOwc oØsàŠý¥¯ÓgèÀÕ§ORòêwE­^!¸´Œf% gèÊÞ®V¯hZ›ìõoàS“°ž‘ÖR„%µhÒ6EÙ©7€š:áW®RϼåÛ‘oNâU’˜|ãá¯<±ý1á-£ÊŸQ(qÃõ 0좉n°&‡ë-ô+„‰³»2yw?ÊQo–f¯0SÍ:ðhFí+íÕ®áM›ÞÝ0î.¼£g© hþhJ¿ƒ¯¡¹¨ýK4EÄFfæ#yi¾ÿ=ÜåGq ÍþD€¿™Á¾À}¬¸³Ð1ݰ¢)HâäÖQqØÑç$wg™½‡kÕ4;_ð¸ t$´˜è$vúWqkûŒDîË®‰åãëˆZ5Y¯d"sŠZ"ûj-Us–­-g_™>²Å"$›Ì1NLçXå2Ô¦ªÁ?§_§H“a~;Ý_Ùþ˱dO“Í«fÆ1dåïÄÌ)Pvë‘âÀç¾.iö ‚F°-“\fQÁ}!e!-:M$LVþ?s\Ÿ™PÌ…o•ÌOÒýD ÄöŠë6X"n{b]qóxsNl‡5 <:k¥Û¯¥>cI‹ôGðþè«ÔyTþÑL6«µÜIî”Æü7¹™¦Ü]¶Ù"èØ>4M¹'É6 ¿ž½MlÓVšâƒ‘Ï_g¶»T¶³˜Uñ´Ð(þ"¿½Éþçˆh°9Uö<Fk¶¾ ”…€2Ö`a6‡æµ9·át†2w²òuA$t' 4&h£g%PˆAò`«B»’Ù©ôDTÆ>/$™z‰m/'òBŠ'#QÚÊkSùM[ΗYßFœ=“Œ-DYM–«œMÇ ÙÐý¤dFVaü1QûS7j/1ú)¹QürE)ÄÛ¡ù’Hèx2E•\Ë–û¶Èê)Öˆe%ì¦7¶å¶vò²b‡R]aJ­ó-Ãì'¯^™Ø2=yʆ“'‡xÅÏ~Žç ÞÛ>yiòË{…'ûµâ?E½eåD ˜Àóz°\¤É¼§,ذXÔfbü«–§2´Tô£ E¡kˆ…ÀŠáŒM°þƒíº´ž£hÄËÈî,šò«¡e"f¼T¢•¨ÛÅ’“׆´Ü–ÃÑØ8jˆy—Å1E3®,+Öä_WïGú/Ñ4-k?JÎXõ(ÕœœhÇ’ª’¸ß¥ ]ßQZÙˆFɺ7g1„n¿ Õ ¯L¡5\W¬T¢ß“Ö^ˆ¸X‰re”êsnÙñT1TOe›jA1ýÐñ}%îûzÃQ#¯f0ÓÇ@¸ŒØ‹P; ÔÕ¯u+FÝ¡ìoè$ϬâKë`•AU¦ù¥%z½¾Ì2ÄY¼[Sþe¥ÛÛx¿jC:ˆê^ïò÷ —slðžäy©'‡2CòÚvZúÊ oèñGf&XçÒ/uï®PEÖ‹KûCb៾hòš™÷é²Mc¯ƒÏ¨aŸD½žºz*w'²Wt~¼‘B?¾‰üL&w{û´`Ÿütñ<Ç3ÀóÏ ?-ëxžáÙÆóÏ1žŸðœós[^gÍW¸ pà.À]€»wܸ pà.À]€»wîFàç?ø9ÀÏ~ðs€Ÿ3ø9ÀÏ~ðs€Ÿüàç?À€<xð€Á€<xðàA~ ðK€_üà—¿ø%ƒ_üà—¿ø%À/~ ðË|ð À'Ÿ|ð À' >øà€O>øà€O"ð:À민ð:Àë¯3xàu€×^xàu€×^ÀÏ~ð3€Ÿü àg?cð3€Ÿü àg?øÀÏ~·Þxàm€·Þx›ÁÛo¼ ð6ÀÛo¼ ðv~ð €_üà¿øƒ_üà¿øÀ/~ð‹| ð1ÀÇ| ð1ÀÇ >øàc€>øàc€5¸!œŸ.žçxx^â9á§…`Ï3<Ûx^à9Æóžs~ê’û(¹’û(¹’û(¹’û\r%÷Qr%÷Qr%÷Qr%÷£’[(¹…’[(¹…’[(¹…’[\r %·Pr %·Pr %·Pr %·þqpœ›Äi`(30æ üŠ üÜ ü. t`=Í@—À«CóÊÎç?–zì×zÓ mÛ%ø¤v¡ ¤b £ip³ÉŸ}>Ôªƒå%jÂBD¡®þ‹*[ æJ:VHÆò[±Œ VÑhÌ%„ahªÍ»bZE–þZ8|BŸªI•eÚ*Ò Zai›\ó¯&¯f_ͽȌoàýÁc¶Þ>§µ÷„¢‡öe^ÕxÏmÜ?Û-–®½½9ZÌoécÔÎÞŒæ×¥½Êõgœ7 ZnÞÈÛÁÖµaû|‹(M¢PàdïWª¤ín]î½$Ò)^íÊГíÊcO¶®Û»ºÝë6¨ŸCz—p.õk“ Š|sKäÕËÍÓûªè°Ë·|®¶ÛfþVJ“ÂŽ™ï0Ï´q¸û›Q¦ÏÌüŒi_…\·özfÁO VÊ-À¶•E•e‘ÒÖHÔ ®4!E¤ŒT’*Øó‡á "loÔ9[¶[Ýô|m¬ †yšYµû÷ìüêAsWmŠÕTJm_¦÷óùC)–>Eá}Ý-éŲkF,áTFœô™«ÓÄýáÃÚ”Î*@±w}„£©GF¹W—(ÄcÑBÓJÄ)~,ãiËN|B‰OpqMÒh4zW°]ÉKój>ŠVfëD.òt{:¥•g±ç潦óí°ØNý‚¡iú³VûOå[y‡ÃÊßò}é¶Õ~ÐΕ_ÎF_:R¢uèÞ>¬/ÇòÊ»µó´Õ–´^?»m••Ççׇ­vÙÄæ$ìa'I x2Zÿùù,AÈå„]¢¥‰È›Ò¯Iý¾¢¬ÖyÄKÞQ‹–Á›ê°Ô@Ÿg§V›†6¬ìt;ÙòÆÂ ëë£×ôªžK¡2ûv–ƒ± »| Ï5—í~_A6ö‰¼³jÒÁsA™Ê'áGr·âŽÏº ±iH‹>áž±J¦¥Žš¼è‘]¤{Ë€—¿Ã¸Îö›Å[,L–gWƒ ‰®”Aùê }yì‘­ÕÒ^³¤©C·ßÿ"ì~áÆ "}œ›>‹É”Ä»Ð1r$Û ¶íãTpôbqóŠÑ‰kPî¬ëí¼­#·/°™fîƒ Lrj™\ZM~*É2Á”šþ7r36Ê6ßhŠÂç¹¹Éý8‹ÔGO@§ï+ïåýûI[ ½±7ñiÄÂ]4âÉ4%3MËTí—5ù÷UmÿÛmYUŒ­'yÎv³XÚŒ(êSƒ“¶'O”nË3–w/ð|h}Õî[¶OîŸ>…¶k»f|éb桾¤o]çn¥N‹¨bã È.÷/b“wÒ± µ8÷-”¸)°ÎÂÎy&Ï\)¤º–ÞC4orÌýE«9íЪ)õ¨¾ŸÖ•'½5n—¶Üƒ¸ô›ü9£ ߸©¿9ùoýüÊ©N3ÃÑâí^!Ù%#‰-Ѓl…Tœ|E·#åß½ÿøæ·ÿ0ÒÔÖJ›æ¼©~„Ïc-±XWUC¥ÚÎ]¼©Ÿ¿}ÿ®LE°Ì™„~_Ÿ<§˜ß_Ávñe°¿d¶qݯ-šfq3Þ=œE\üß,Û=xŒÄŽÃt ¹?†¬<ˆ3X¨q̼È£ŸyM=ñù}Í6S[Zóu1n­te& í¬ŒTN,3牔-ã2:.x^|à—û"_vaŒüÎp7ò”’¤ñï¤G߉ިgt=¿ÅfIÞ0þÝÃCØ‘‡ßr^ïø—¨¶ˆ¥©xQ!°wý×Ke»ÂÉv””¦ßôooã´¤µÓ õè8BúÅçyêºwŠOÞt榒VzõN3Ó´¨ZÎK¿Ð¥Uˬ3ø¶ÍžZ„ÄãN J ‘z”dµœŠ¦ciëAŽçÞ C?9j`1ôÒìëS3xdÙZ»+J·¦H 5ÚÞ^Z‚]b‰sŽÙ̹¦—À+þ±}_z›O7×s}Gt{ ±Êë÷ïÞ”Y¸òúãåûr‚Ò Û÷D_‘á*Éd­VËʼ÷6ÚIl+ǯ²úK©Žp×%ßWKOŸ=ñòÕAQ‡nŠ ÚÃü{ÅÓ¡oÈk™éwÂuñ ±Ü»x^}“E;(åuûØ•Æs74Ãt³8DÕLÇìcͨ]ùFIô¤&YE³å~y\;ºÞ­™è¯·Ê ±È -IRàÿØ{¶ö´‘,ß½O»oû²+c²¨¸JÂØ@óãNº“Ioò%;6”íH€&Ü\Úr€}šŸ¶¯óŸöœSUº€Ø™î‡!1”ê\ꨪTÕ¹ˆÐyOÀ¤º*ܤùíiuñTʃ'SšO¦4¥ª ¾ tºb×ÔžM¿z޹yoÅä—£ó“3sÑL-fÅBÊq#ó8%ŬXH9"ubaFpé£Å*í(¯?s]鈟µƒ®c²7è;¾EºHßûøm÷qåêúGìqë.XÜxn é’üÍ!°à'•ÏÅ¡+„Ï/§”YbQ'yÄ·µŒcÅá8püW÷!ï–Õ?¦_hôSè ®‡Á4ãt†ä²äJJ… a8:ÚÓ~À#bÔõõÆÃ2¾uái¾ò8,UÅI¥ šµ×Ö$[iš…²:*4„]•HF–îC#µ– PnV¶O0k•µD¢¼/¦Ãë«ú»“×?`è¨Ü“jg'u) –РºÔç –E×i)¾äà*œi)ÐË©»L?Q®á·änd¾™ÅÔgl¾T$ÿ:«×K…ÙQ…ÙQ…ÙË…á`ðÎ4ÑúOL¥Mâ7˜Ì4çÌœ›sºS1S阽óHŽÑÚ)÷|¼;¦óê÷S{0é]÷º£±ç½N;g®=„Ù‹L8Ð)ň3U-Aç͵ŒI ¤§ÖñðŽ¥+ €Õ{3Å\c±q8ITÂöSÌaÊI¨¨UÀœD¢JÐhò–€áðAhèˆ1 ÎXK0ôF¡"—+…Ó²¥êK1  ÉççXLÁ‰z#±#‚A” ¤‡?«7DÒØHØŸíÏŸÏhÔ—²S)'ÅDõ`½@êÒ¾¼t.1õÌ~öÌy†©={oÏÙÃTÒN&$¦föbá,0¾‰*D †&åä3ªL|fB‘Fi\X%&õ®PDÒuYæàË/úàˆSRÁ! °d“5tÔ¨)ÒÆK¡o2¸ÝqŸÃ ø£&Â(ñÏ<5¨³sìÞÀ=h¨h@´^ÅåÙC•IM×´š¦hZ ¡&ùFi†®J Ú©Ye­x­í5ëP;,ãÉÇ¡i«¢XtîW+_ä0°Ë.•® ¤í¹Ò×Âr릹=í§?ÊPvÀ7½ùÓ` Û7]ÏQ ”Þô&¨}ÙžŽÆ¨¶ -Nx?¡='>¿ü‡u–ðÄœyZqž¦^§gß †Â(àŒ»ƒ6鿨‘S.MNóéÝ|ÆEgTŠã†ôÈ$+y åá;õÆ{½Cøa T—›‘¹‰çd¯r™¸ \÷*™aQz‡Z|B­H^„¦èrh2ÜeˆæELPvñ² 76Oo£=ª|+*»?: ÞÓð­]ß¾»#ÇL¾$hêÿª-ô6ßÀ1—Å ãvâ >0×åÆÃzyŠãn;l®Êyó“o€§g¬ .‘…ÝþÊæü­(72óü?¼ýAt| æ#¡MéA = _ýÖ"Qøx¡õwç¿W¹O*“&÷Ã₞/1F¨}(ÆùplU\´#Ð/f\жF{\‰‹Pö¥˜|3&ßÀüˈ!@îÐ2'‹NÙÚ½Q{z{ÝïºaµCvÕþ˜—MåÉ À¿×Ç+ç{}xÙPò¢. ^ }k^QMÊÊ u· ÍËÆ(¶ß-.°4VA¤ùGÎÉÆŒ” çhW›H»¿ã­[Ý£•±OUõò¡QT*éK’T[€WÈ:)¯›¡6Ê££d¨®Åw1l¸M7ƒF8˜h­zا ¹+Ó±ð/ GuaY«Rœ 5u‚qÅ^LŽèXvÒý®\ËöD(€¼˜‹jàÑ2ç°8kÉ<Í.˜­““½Pç Be±ç¼˜ÉèÌš³L†L‚øÿ _#\‚YºjIÛTÑÆ5³µÀØo)7…Mö!Åä©iMÙ‘âl•âLPœÅPD”q.ƒ&kÜ5AƒÑ¿™u4¢'ì]Y+ðäÏÊ4ÝÖ0,keQ¦­®yÀÝwÛ—zRç®]y½Ïfû‹/ @k@¯uÍR yêÀ<Åš²¼ªèx¿ü+þÌ}™r ›ë<‹Q}‹¥Šy`ûûÃ(•­rÙ<Æv9?;\°ÙÁ‚»F…V b›ª£ãXÎd’²•¤• ð”†95ýáŒíA¡byq’lázôèB]²à%Öc:Xžzlj{.¡@K ß2P>çX|«Z%†*Cà´ì*ùúO´Z­¯Ÿ„ó¨ý<Bð`+fyA€!;6ÃWô|}HÑ/2˜>Ù\‡e ú‡Çå&¾Õì€ëñ@®—ƒƒ¨ÈŲù ¿ñ`úÅ8Õ 1ä ÙÛµŸÂ´ÌÌs³~ö¾½A耳ýlÉ^(•#u…C£kÌlGúâ”Þ^»Qt“ߘT ü&‡‰¦f9ÃZxñ{Ä?þšrgÙu”\\;+€qrʼ°³ät*½¡l¨ô~–Ü»zÍ€Ê7™t"ý¹L†íŠ]AÂ/R2^)}ƒ[¢o¦ßþø§?^ý©þñäõ òTD¹¸®d1@Ø;¬&~Ä·_ŸŠ·E¡Ž³MÖ½¸ ΚØÂ:èÒ¸´ñ<Úà–f÷’ÙæFí‰bñÏ·Â?2ÿ³- ¶»lóo>—Ñ‘79§¡øDïp†©n!*/Dä;ùlì›À¯ó÷®Ë\~Ú`±è®B=ºÍxZ]ã´0Ü“k9ñ2ŠkHêfño*÷Qè+÷¾³¹|<íy÷ˈ­´>@°¬¼ѱ„½Œ|iXÜ·¥]F¶tëà•µÐýõЬ ,Þ¨q=ei-š|O/æÖÞöÝáy–ÐpIP4Îe#Ë:««+µ´²û é¼ÅT-Än£ ãƒ|žl{¥FÖ¥F ¿jÁPþ"”¬!ÿøa2¼éâî$†*‹qçEiã P㮇0æËK§û(™ªâ{>raSb=ðá¬X,.¾éü½iñdq?™änqŸŸ–’I–;¹—ËÞïÄ2N)óÍ';GGžBfÊRýÞ“fÒâq<Îû¿¤`›é/O}ƒ›O“&ÿ§ð×NoáïßOð÷ö¼ÉO_bxÔ55ñò“×]hB6¿ÿùÃÛ—鄚ïCF•O»±8ŠåFL4§;¹ïvñZ®f÷ý¶±a(âê³(õ‹€=ŠgVaeI«š±ª9KjãË•€ |èë& ÔV5iV“ »½mÙ>:ŠÅ‰QŠ}ÔmäüÛÈEÝ©:¬e#ë=È4[@¯=Í`Ï:a"¤9Õg9sÎýtÕ"‡‡U8ÿ¤07»V4©•WÍØUgáÉ#ü“B•Jd±©‡HÊÀ ²-Ù××£T Žk `9’œ¹ßGG!J±]ª.鄸w|”¬ Ü–}!~‹Èiš~%ØîœœÌãHJZÀ¡‘m£±¾÷Ð(B£GÒ„ùá“O”9›ÝhÇ/oÔ„›V³x)h*LÀRd¬©z+KÕ܆ög+Žçê„°¾Q¸±_òZc+‚Çâgû¥E€ÄWÛHZ^* ÚU˜Ö™'±OR “ìéË+s­,-‹Â°H³iÑÂRô¡?Ü8ÓÉ]wt µÿÐïÞ` ô‡áTØ¿&ho߆N¿{ûøRŸVŠ3ºÕVKâ6wx—_SÓ ÿ•óvþ[Àþ쿎¢ó?Çä§bò¯ŽèõcžÍhw*^/ÿ)¤Û—¤ÈÜeÜÈLªÅ…Ï%¬åÊ*F`e£eñH6À­ˆG#ËM$Pis½!+¬¼[ùHÕ#ò!sá•€" ­NõíQQÍÕ€[°Ìl_º¨„@ÀøÀŒ™ùæg†} ï‚av3öj±ÛqÞ‚ ¾Sbì…Ck1ã‰ç3ñ^ªT1+ ÞI³ÙáþbÁffE¾tÔïôZêM!TÈ|Ý;`¼^O=Ûüf`„±kמ”JÅÒž•ÌU€½l/ –ãoü)ù[üsÃ>±_ÊùT„†¬Ès뎪©¤”R½èýåkÿv0Ä)v2ý§Nt¤úë ¿ üëשÉpˆ£¬ò‚ö{ ”B‡ÿöWÅ‹Rš_xކº19å„õ:ÄbäÖv¯äñ›43z¡ÜDƒ|³°Ñ!Ï_]7K HDׄ¼¶CŠ3ñÅ ŽT<†ôÁ%õÔ:Ê»‹Øæ‹50Ô tzc’W(VäI‰î7ª“Ɖý¥ccj¤ ‡§‚žpåÓlG×k9<:ˉcóé¿AÂ1 Ž^ØúE¦Ûk®Ã’ ¼ S’ý!k.èAPøÏ¿Åѯ-‘µ)ÆÛ Œ‚w¨ú5Ý ÿäÊ—štÐAà€áE¸ëÞ(°ƒëá '|ÊÝG_I’ü·tvµ³F¶ëÞÙßõŒòƒã£„L4ðqÀ«ÃØóÏ£ ‰TÁ¿!í¸1£IÎÁôÖ ªëN½_¦]y¨Å2…8ÄŠ;‹aV(}/²6(]Ë2Iy‰Â `}õÍ¢J7Õ›cQϧÓ$j™(u{ð€q_üùGì÷)êü¯<دANèi©Fã–]ÂóCf|‘OÏY2áÏŒïìwâµh Á×Ã!þX~;öHü|SÌ-ò×jU旅ö¤zá\œÞõ()ßñÁü·zmOŸg2G»º%]/gE¸2]A éøof±Œ¯×ÓŒŸfV錿ç§é‹e­ ZNûbeŸÌݲ¹ž?ÿXÓÓÕçùTí³Î]Øúhl¶ÛºÔÙîC:•:IÃþ…ç4ʨ>cPǪYÿEŠÚíŠ(üø½ûôö­7`,ôËéPcLGÈPK§eHù)ˆ^¡¾×€Òø²›…¾©YEmßBeÔý¢fØZÉ.4Ü,̘? ÈHg™ÆrB4N‰þ¼wÆ ãIO˜*­¬Y¶V´%}éy•H¶TA^¨[ñ¥È.°|oþ’cídv†,Ϭá1ʺ‡ŽOØAâ} /@»'HÔQ¢Žï ߘý®Ýþç„&*²õ½Ut0 •­XµV¼cû—ˆ<ÃQ…wPÁŠ-Ú´ø àxG`ôzªöàUd\îÚ}ÎvçÜíÕÖeuÎÐáMÞ™•Ké[èÏèw—¥ùŸ[iTù¸ØÝýÂï/ ítŸCÇûùj Ùΰ߷GW ÅpÐð„ÍÞNûÔ¸êÂ8ôWÓÉu„AN¤ó½9½*n c6AâÔ·ë@åøä ±s]É]ÇžØn‡î•÷–d©`|•íº‹H¡,·/Œ$:ÛDD"¢fX¸†Ï[ë,ηbAo¾¥ØÍpnSÕûY¿³@:ªÆ¬^V›ž‰„(3TÄß®Æ#t쉽†žÀ¹Uxø|Û>Š™IxªuRÉae8ê*ti†ðq Y8™rXBàéºÛaÅr†-aÆrH]û)•)U¸P¥Vü(£XœŸ0CE‚¯¦±>¯mÛ…¥ãUê³@¬‹Y‘bY·ê‹ÙA4^Á_¿îº…VRv[Ò -ŸC»ùn'ïdªËަƒ0Áå?—(dã¡øâ. ¥§?¥dí@ÚOªTAMbïOåDÇú¥©@‡£z1„uÉž¥¦+š lðµŽÓ…} H.L9ÆÓ»»áh"ãLS×D¯hŠ@Fy蕟åóyzWd²oòàË4mñ‚Í1M'6’¹Chbß@ŒÂœ{4oSË+ÂVÄè^w¸É$‚ì5õãl_SõÔ“Å‹dFÙÀÒ×ë D«¦Þ +Oã7¡ óŒÕäÍzá÷ÎçÌÞ‘&u& ¥« hê×)…@ͱÌÖ"$„ÝÆ Îc#­,•Ó½=˜Gÿ°LM(' M,|¼Ã•NéÈ þR$*&gWrУ¾ ¬çê•\}'Á D•ö¡.Ã…é˜4Hù‘Ù/`ÓUÏ5/¤&¦ˆY3<‹¥Ýù.~¯á}(_þP¦Jy9uww®PàbŽœfVÖÂ?šDÔ B»þÞºAöwø(±6¸¹%Ÿ=ÓZ‹$ íN”μÿ)åþ‚ÒÙÇ×HcÈRá[•ÖÚ×ì<ƒäèÕÕÿsü«÷©^¤[ð|4wÓÏ[¼„¯ÝËÖ¿gò¨ýìá"¥ÑçŠ?¬–¯æó˜Ÿ¾/À²Þóðç#}g 5„R¸8==UW…t¦Ðº|sQ»(ô{öLìpNÃÎâËU{yïnö¨(Á2x7,0º†ÁE3p·í:ðÿŽUX&ž¥È‹£‡²¶ù«Ð¹DÆÿù ÆO3‰ˆ×!A`ð¦V17…Uƒé@KMòdOc)i*|HÜà<`ßÛSáZ 8XçLw™âÔKæ>£î-¬ :ZNRBÖ}·7’³°†Êi¬P› 1æL$“JzKŽPÕ•£u7Çb|ÊcÿegsÏhJš:ÒÜÒåµÎ-nQLº–ååX”Ho6›,SeÍËyÅlöšÍ¬UôfSÃKüm6u>²šº6íé¼iéMÞ 0i2¼x ù®å£7Ó€ÉT Ö›‡?ýasË¢àfz˜™ ÜÁ.¶»·ÌQàNw¿Ç­Êû;WbLI[ ËÎ&TÄw)žñ§±‘]-Ü!ÑbéGàÙÒ* F"r—×Þ[fÿmûˆ&Ä¿{F5|çŽæË6¾|Ðúöè¦+_ŠÓj¼Oe&ø°ËżZö«Cª»Ñð×!žS©'ÓÆû§’{¸²B‹îað™Î,ª°ß˜7æ'óÿgïê¶ÓH’ôí¿ÀÞ–ŒÎ@*’Ü#‰¶ºíîÿÉîFRIl ™¶2pÎÞîÍ>À¼Íž}“}‘ÙøÉÌÊ‚*$g.F?P•ùSY™‘‘‘_<ŸìO~œü4y1y9ùyr2.ÁrãHX 3™x¼æô‡¾ß `´èƒ¶lñêAGÒ@Ä.`Ä颟ß69pv¯`fê4Ò¿¸q¨}°mpNèåh¶K׿åVn•¼pwÀƒ±C‰²|\–ðpÊ'kÇDz̗9}(rI ÝñÜ€ëún]ˆ?ïŠ~V_Í$¹g Ú˜º[áÚžš}·´µU.±¸ "?nÍlržæ~ƒîÿ×ãúÿßÿ ½=û¯¿ý=ät¬Oèa¾ÿï?ÿÛîo柩还uÅxãɆ°Søoû~ý­\¶Öøa{Z?{×%^ÈŒÒEþÕ&(r¼§ø{>ž·óñx™œý ²ÑˆénogüJfÔu?˜3(Æ f }!ï´¿Ð>lox#¿ÃžÌ1 H]½!Nx }¦Üâé´Œdf ;x”. ôé­¼ Ojâ¹2ÔªÖkèÑû1ÔB+Ôßæ7u€í›ÑCç¬ß»Tx 7„àVp#ô¨©Ëqí.#áyr`³Z$ÿ=0ø§ké?+Ý {°vH÷édXr|IÞç>‘PI&'Ê…WùüW'|Ö&µL¶úìÙþ›÷,ÃÒÅ…‹çâQæH<¹ÕëùªG5ýýüH)™TY¹±P¯@›Èýa×ño¨ày%c½P褥Lç-±}}A™Ò™ÊžÄµ‘äü=í„Ë&E—D2ï*büdKoÔw¼o.ªñŒÊŽU,AdÅ+Â@ÿAð'ŠÙE!~ýÛ0j)gïAïÝ á\’:†mW[¬ÏÁé :%«®T¤ƒÿg¬œ!AßhŽt6Êi^´%ô„Ï‘]\Q\á&'ˆ:XêA‹ŽZ¼¹>| O8ó|ÿÇ—¯öáa»®á8q]W8ØŠù"jÊ^óèèЛ”rÁ¤Ïî]а×§t°vFvLP~³N¦=r‘’èP;P‰µ%çXµ•ú<¬µsº‹}uL^AÞ&¥|MÅ[ß\=â3AQ#žÃÝU “_]ÑDÊ9N çÊÑìµÕ Úæ+DÁ&#,ÏJÜóÛ7dv¢”ØÊµ&ÊŸ~Y)À6ÕïÐB䊚0 O¸Y´h%zåaÌo;æ}ÓNCÔ8,Î,§a •ˆSÁ²-”xlq=Zãœm{{›œÖ©âD³ç7Ï!!-ºg3µQÇ€_ìWßì®ÓÒ¹àbi#ª/Œžž‹/~ðvIHîã ¬öú§Qz¯5^ÏoLùø¥  ËÅ"K9kòE‘Лz°¡ N´AA}iÐ6Ñ`° # ÄÐŽ"”%ð¡õÌ+1ÇÐ"œ>T0Â<¤û*dwý Ùoã ‹'=™«Œ ù}î9]ÏB ËÓãSÜ!ÊO—c†Hc´¥‰£ßiÝ;(|3«:sø}i/–æðqi¿-ÍáË?´‡ËWƒ±•–«×ÄÍU Á·÷QÕï€Ë²%ñ^,ÅD=—àñÛr<"èùðÚV¯ÿë÷àeúÏÑ2ñôôÜú(c™>¹ /¯kÚ Í/ÃëCsÙ /GãõæôªR;@”âCU£P1øuZ®-ÕIÿÃCój-U‘fè Í‹¶l߉”ð˲M¶ï¡y}—*áv´€­åØm+vÛ‡fDxÐö ¼ý~_Ž£Ëî)ë¹³»^ŽtÕ·ä¡k\÷h©éOº~K¿þv<àÃÍÔÈÑá¤Z3+lÖÕÔê‰\ª [x¥Jk€š°ÜEõ×E,ÚÁ\‚Xʱ)â0±HÎî!×…cX„:Í“Bm4z½ÞNƒŽh@ŒCQNlDd*£QÙ9vŠ%ç„l‹GåcgcÓ9ޏqnûªãÈ;vaäàÑ^VÐp;Jd4LJ«•µn™ Éš¢Ð­=`#Ùc´Èn¡ÇJXè¬Zlì×ß¿«6jÕçýƒgÕ7û—__¾ßWýÕÁGϺ%n§^oü´4õ~õ†¤øz¼ó±w­èù²ÕhMyÕnt €Â{5ö`]Ë'ÞÞyÕ÷Îñ™$Ò¾]ó^-$ð‚µÆI!1º±æ ¢½š÷ΫŸ0Ì¡¹IέºæÕÞ¬yï~[3©f‚’Ò>à[ =?Ó,؈-Òà٨<Úò‘WZ‹F]ÖbÈIŒËv="©$ɉo%dE?H_™…2JDbJL±1WôP•;«[\…h£ÀeÝGÑÙdaƒyDóž16‰EuMb}nÓ1B‹7!ÐÙO[B|S&­ÞyáežÝØ_÷ú\oR¯ÉÈDo¸cÝ¿êàAºº½kmÀÜt[´¥e€oÉ… DJ¤I’ò²‹óy§œg½.tËK¥X.WÍ~»ÔÀ¾ [Ø©¾yª×i#ÕJCxXAúÓ>C<4Pe’D*y$jâ&?._]Åx¾1þcˆó¼w™¯g¬'¥0í·ƒá¿!Ðß¼tÈœ˜uÅÐÒWh =P–JC†´Çíše^½nT?¼Ýxóúà`ÿà€º&&ê$FÍ:ÊVcæÙõÕµ? K3çRG«,±û¬žlÕP£¼û8ôeßw`t³è½®Ó"»Dý+pS„[+íÚ¢²<9 ¯D¸LHNÚOcS³B¾È{~n"Ⱦ¥iEïzø>UÀºŠ–a硚1E=6 w„Ó ø¸B”ʹ ÜçææC|m€ýUb§Í™ 4vÞu OGÊñµ›˜¡§”‹ãi ßGÜ®±§!œ%`h뢨3µoIxÁåºð›“ÏŸùLѼ¼”ÔMG7Ì—ÇKñÈTNGkQ­øiÚ7·Æ Õ©€WKÍ0t’|jÂýä’8ô:ñéä4cà¨ñ>ùZ·ð|^†~*¢äC…pbJÁ¹Ç2É&0ÑÄô¢bÀý '‘±L Z\<ßb3A]KsQ…‰©¦ÔÕô£Õ$ˆ-t¯„žB..ØdÉX§ï¬®ïé䄽ҼúÜ-›6UŽms˜ &ÂÎÒdh%¹“{´ÌvIm3ýYCG]ø'Ü@\P¹øÚØ„Ûím¸ÚÚŠœß ½+Öuá§Î•rhwÂÒ‚Ê|CÉï.r\Yí"Ü]€Å¼î*ÉÍ>î<ë•|þ)Ú.΋%]°¤„À|ßœMéûd³ñ}²Ùü~¶±ùší»d´ù½2ÚZ&£‡|IòMxÈî¾LŸ‚~ËrèuµE DßšâðÇŠÍV£Ù'åæY$…×Ç÷qƒ)»HIs²1f´Ø••ƒÞe§YFh~+4hö;WƒFØ-cð-šCÔY¯ëõ‚Qhð=ÙÊžóqz ÏØP‹â¯ Íã©ï†9õfwËDßÐÂZ¬ô'mýZ7]y©¸tºy%üÒ‘†!(Ù C`P Ö`0mcF#Ywˆ™£á•®þ´¢’V•â !x7}¡¿™û2Òiðë·pñ5ŸØûE ¥4‰ý;‹ñU¼î]ï§û¥Ç1zZ¡v”êוÞj"Ú„.â^Í Œn¯+¥{¤Úbî^+k(a`zßP8ƒ'ï¬h,mÿô‘ñ)Z(îÖý¶l~Ä‘S/Ot~Àõiˆ£Ýƒð½!TŒ@¿ÐÓ/;ÙJŽKz'ŠO½j¾"§t ê øè8é@£0aØa5 MÊz“&Qî ·DÂýœPP)­ŸÌPYËž¸|¬ ›2*ŒÌ‰QÒzÖ’ÔFs2+¥Þ«ïħÍÍ~¯Om÷ÂqUžŒKStBUVciÃ:3L›ß˜¥^cÏÞqýd¼½—t^ѹd="*ÙÑAˈ@}ùFXÛ †ÈÐÐCšÓYB¹•òOèüN TÈß™B_C»¾¿   B%³v>hö®Ú.¾ {4Ò’ 0©dÞ‰‰@‡[”‰‹»z””<ô.‘&QÎj¨sëW’¬ð°ë‡°v§¬(òf„j5sFÈ ¾Ð¤y'²¹ƒÔî,Îo²ßÁáÀx’2:áÀ=*Ð8AZÇ(o=™ŠºÁ_ à N}‘ýÍ.Ä„c „†¬øÍØDëªD(dt¸³µ9ãíüææö“­©1ÜY™d&2ÔXJtrð³ë!Ú~ÆD‡­¤kÊøö±¿ÖELà·ü&2z …2?…ù_7 >ƒU[ÍqHÁÞù8WœM2Uƒ½]«Vž=çQû¨ 7ô[Å ƒ“ad÷øå'9£&3·5Ð茂u„»n% cWã Lµ¤ ±ÕÍ!¨å¸ôAÊ‘µ>;ðî‚uÝ…yjäü1¼¼ hãÝ·ÉÛ(Ë9{ýY6?µä5¼ý@à\Þ8~çÜ ® ,#|õ?Aä¿eÒ7ˆôŽÀ“F3DÇiõnv¾óy×ÃóÀMZhÜ·lM9à _|}ÙÎî*›ßBdcaŒc´²=fÈ,ä°ÖTùž‚É æÿdP’G3g½îÔ˾JÏV¬bΜ‰LÿÐӞ̌#ˉܤªÃ”÷?Å òf7—mQ᛼aÇËêyj"èçá&>ró}ÏÀŸ?3 <*„ˆIQk{ôï%°Líc—…&E #-±À5ÛýL$°ÇAK!ª“‹xÈÑ{f1Ž£¤§aùùÄŠÞ Ý»_A˜&CN|Ö uİRé l×S~ ,‘!í—ꢣZ?Þ\!”-‡œÇ¸ïG{÷nŽÞË,¼¡çUh KYåñàKt~ŠøJ ä|Zª}‘Ö Nlìø±ån´X÷Ífs"ZÚrˆ/ˆŒM›Ðñ’¸-"gþŠn¯7b ™ç¡cg·nï4¶:>߆ýàé^5gØg$¯,ìkEâbè E.'Vm2‘8ƒ@QåüM`B;®ÐÛÈzäWF¼8*®;á@¨a%¹/Zj…]«D¾N½ï÷“ñµ¬sÑ– ^^—†<–/eá¦! ­¶?n Ž/Ì÷Òh“˵Û ¹ƒÈG]4rt…:Ï–JqŠTª ÒÅJ*E¡†”@-e¹ÑÐêÔ)†Ð;S¯ïé,R©ùÞ•Æ’ ¦»®XEûMŽéúÿc‚ùÓÔA„UI™ê”°Q\½¼I_qºÄ)u}K§dS)æ…BÁÎáá¡)õD߯¯mÓýªˆ©P¤É°ÏN¿ßs¡NÞ'u³ ùG¤ÊÕUȲÙZ]-Ò4ƒ·M¹ºjâ@Äg«´sÅmëÈTq…c=77‹«Y˜ÃöŽÃ˜™RB,·¶ð6„H©Å6%Ä †ï?üV¿Å;šG7ðß;VóW aýveŦüñ'¦Œ/]‡N߈£0€†]‹u‡ô&ê9ìT«{sŒÒUtaý.^Ñh½+•ÝðÆPJ¥VìÈÍbV蚦$V&e¶js†'ݯ²²3½Ìã§ÓobßívÃhº)“ÆÚôÿÙ{Óö8Š,Q¸?ûyîHpH¶–Ú%yŒ|%ÙØn[¶Ú²±±RÖ\ª*­ªÌ¢Kå¥ÚÐ4MÓ4M3 MÓ Ã0 M3 Ã0Œ¼áç¹^ï#¼ü€üøþŠ÷%3+3–Œ(ÛÐÌ}-pUVÆY"NFž8qâ¨{È,ñŒ­Jo} ÚFGžÜEGžÝ¸qjþÚ€}ìCݽdÄW;Ò9ÁËf®>µ™EbDÝŠkè©åìåd…ˆyTòÇ@,àS¹3ƒø¢×bøâ Ü=c2x‰[AÎú‰QÍqO¯Æge«±‘zçþýÛ—öMÍî˜ÄAÞ{¿©ŸFò§™üi! }ùO®&k³mb $BsÊ7j3Vš¦Qxì!’'¾sµa-KeFæ¡ã6:mmÀ}j|pÃè*òôŠ÷G<9CÙ­á[nu5 ˜¾êi\Ù|z`dó`Ys ÚÉ…º3N!~¦¡O*÷I$˜˜ÝO+‚£+Ú ŠL:ê^Ç4HÒ²6ÍïÙ='hJ¥êðäâ”äè8¾VE*4àœLµè¸F(o‘Ù'Ie´+‰¢}CüÓ„5¢N”„kä)á{zâvë?ÈÀ¶za¶‘¯qôµÍw£íÎ$#ò¢Xƒôý ïÙLb9æ M±ðÊŽ®ÊÑRs¡«DéX€Ý‚ÓWP b8ÔáœZ´$ú ‰C_Áv±nÄÆÃÈ-Šb$¸Ìáo=I$¼Y 7‹§Ñ×úÄw~<8ê5§ÑêÔµš'³pB{®i5ü‰×¤P’¡ÝòØ ±¢í¨ ´!ÃC[§ðch¾<‰Žì0ÚéÍvP²ƒBJØÇ‡Æò~¡ª@ˆ“Äékk¢3ôÆu;(꣤Ÿâ®C>Ë¸Ó¢Ž„ÁäØ|'ûWÏ8A?ppú|¤£ÎxMÀ ñ4zSbÈ¡ÿ-¼P‰MØ{gV ÃQ #o7sAb‡È¾ÃöN”x0 Ji‰VoðFãKH±Ÿ&YfÉ«üPa¨0¸å|u‰ÉèSÑŒcæ0&”¬;‰þa…ï î}ÛÖú¤M¾¢¡‘)Â!¢ü–•ù:‡||¹ƒG70H|Fwsâ² K†¨f"°dT3U,j¥=d#Ò%qË]¹»Ìm'Z.3סX?È1 '“Ž!9p‚è}h ç£ Ò‹„9íÂpè\¦…óÁ !8!àã+ŽÛz|KÔ*ä_:Lh¸!6R\H…Ô¢ÅÈ®õn$yñ&–«í<°ÿÐÜÒìÔ‘!­UµZx÷>”"äÚ Ç™Q ¼ˆÛˆ%; $ȵ r«cš6¼Äªú¸fØ8h2ÍlB‚M¼“кOB%¶©P@F+ƒ÷ù2J$fê™L肃‚dÎäË$_V;aÆÐ‚{x®Çb&ÏKº·Éº1%ª"FŠqcðÙ»q’µF·]…o‡g¶qdפÓsf‚ÁYô/‡?òÃzøQ ÷]!Lð!½SÙÜ™à+O¾ógÂo|–5‹Oèfó‰@ö#Y½8YÞ½œJºßö&¥ŒÛNÝ=[†ýw%‰Ðœ³çƒò‡ Fã±Ù#žø ‡GÒ”E;ç¼·mÇ‘ƒ;ömß±]›Ù5u`jæàŽÚÌÞ)^S8tp~cv < `a‘p]¡°QÐk³°.„%ÓiE‹3h;Ÿ-Æí ¡¦gD³¨…DfajÓ!aã§…Tðçb@êôé"FjtLV¥é8Å5ᘴa)ø„I@å‰'ÔÚÔkÀÔ ÄŒ:– &ÛCr¨©ä¤I–ÖN@.¬p‚ÜÏ~¦ØXácÈM-,Ê -Š;#&qLÆBºØÃÊpéîèØKYEj‹Tíú#ÚQìe›žž–6SØ@Ò½¥T„Ï,$º€néÛaŸ2RèUlq¼Ú 8¼ìÔÌðŽ…-­ÔÝ[PŸ?v2íAfùlÇŸ;Èh&Œ©MúðÓøóoã“ðm=FqOc|’CFÀKZGEõôiæ~…‡ó#,€EHfÁ\|PB`Á€ÚË\°Ò$ Bhø‰'†SH #oâZ lŠN`Ó:Ô0xâ ^9(XTøõ µ$`Ÿ†äŒN^± iÇ ù2¡R5Ò_âða¢ 4U1Q}5G:÷±!'.xØDZbsJ¿2 Î*HH™@â•D4W£ºuÅWÙ .@xÑ?Ù6ÓÙäËèý=<=Œ´ïöû† ô¿_nÜ`‹B D¤ ÇÒG±T%~,ÐÇÁ¶î𰻈¢|‰;yæ'yðyV.Τ¶Ò즅½`5ì'»ða-· ÿ'K³Kzöt¯ÎƒøŽ°ÖKAµ—Äõ^ *¾äré§½s1êäw4Ûœ• x8|êøœi´“ÆéÓ'ûÁ8‰púâ‘í·RÙþë”í¯J`xX4‡⢅Ô2ἦ±a ‰K)„¼Q(.L)}â‰'Ä…§OŸþìg?K-L-MÁK#)®¨ñÄfJ;ŒŸýL\ «š† Å—† ‹%¼‡‡ÓŠp9@uÀ‡/¯èÕB/Ò°.2VInmxX“˜ À4€š­ÐÚûþ¾áÇbòO,©Tkæû®8Ôjuÿ+Iéo¥Ê|BP§Ø?ûY?ó촙ȱ¹¾æí ÿBä%>ˆ€0ÅaLqSLéb l[YDá¶-h ‹‹á$€WED×Ö0qÁvZÃáNB:íM?®‘ü/Ú¨¾0C·‚c€ÁÝŒŸX Uà¸HÊËiQ>·¿4ˆtüýø¢ŒÂ€~|0f£v%bBG‰ðÁræœÒ—`÷µ,!‰'øZ ¾u7ºèÝZ<9Ø»ÖÂëð[ /"dMwµÍÚÀ`ï)d£+л6£ëÞäÑc7]‹ÝGôõvìëVò7®hâ$;HÁlµFl¡qÕáH²wó1†¡ÃOÞ†£Fò΀ÞLÞyŒ¦ÿ½¥Òê–ž~êê;‰‹|x€Ý²(m ÚA%µÍßá×Àî~ &þÂŽº+™ûþÐÛ†º·u?ðzÃg‚ªþß®Þè%æË›³{ÖK†æ;Gƒ«ð½ŽÿŒ€ôû¨¤cúOñM5šƒ½Å×Ñž}H‚‚X&²Þ•¾\þ4üÒÉ·¾#¸Aô&¾XìÝ ¡\½w3†uBðédÚ+Îo…¿~ŠëTâdX‹“Q5~AU>ÇNJ5ýX˜áT'÷’[Ö ™áàvÚj!£‡Ø‹=2‹»ÝÓÓÊ(úð:m-¶ÿOå$ØN÷¤5š6:ùÚêÅmï…ǰS¬R­ ¥hœÌT3šÈwh6¹‡4íaì)4LÂkeøÄp ä2£=.«Ñãñ@í 8dò,8EçÎEá~Êž—V M7DJ–¾iI$jÈ‚•„l¿%Â:ôYï‡Ðê>KBK‘æzÔ<·²a4 03pzûާ{ñÊLø ~ÆZ»YX²P\d UZÃË 'î“èýâeÓñ„âÝŒýê‚)e<&U²+ÅH…i`C aÌKÜB~QªÒЇC%»HBr æ@碶4lÐFÍޝc<| Ÿü8Ã/Eã(6*Ûr¶‡Œ[F~‹i…[êe$â³þ8˽½[¤JTªÒCê+‹°pÕãQæxÍè5‚ÛQúª~ÒÌ@µBÑÐb1TpðF7Šî&HÅÂ…VIaü ¯Ê€-T“]ï~c6ˆk€H+D-'måUÿ¨ MGûoÎÑûhÉQRy v­f[ Óí¾,ƒä3*Wjx¾ÿ†‹Q„ª·ªM›œF‰Åð¡¿ÊÂ:ßO¥û}Â,޼¥p*Aò{£(}ývLJúT$½14Óg¦æw$íôƒ¡«~Yd°‡8à‡cÄ×H”™^uƒ€»‰ú:8`ò³…o ÕÁq NíîÕÃôÞÄŠçºb%J µú!éP,Q{è4vŸÃ±óxØñ!N»Òò”á&9ÞîL™ÚÙCëo„Oc'†ºQ ˆ@baô)ŠïÒZ8”n/pŠUŸÅýÛ éLOò>- e9‰ÌªDµ‰÷c‚ˆY dŒÛwìzvÇö§÷˜Ùil¤˜G«%±ˆM§R!+GÔ¨AÓøN† ÛMrl°ÃÄ*&ñ P‹C…ì½výÜ † ®¡Úî8p`ÿÞ*O¬”ÜÃM$à ê­%H­™Yxß³…ÕÃfxP;à#WèpyÐ*\qN]ƒÅ$t¤ÎF5ÄáÏêž%~?åÉ)âý±¬ï}ŽÛ%‘Ò  U•Íýàe9x½j>&,‰ úU™j¡™SÓ.ײ@ØbIß—˜ïKÆóoß—h‰º°¼@L^£© (]€b Õe2¥ zþÛ;5¥×à¿Cøs/¾×Ñ÷0…2–LM2ªIpKrÂ’¼°¤ ,) KP ¢4+L ø%yaIAXR–À@‰ j (É K Â’b¬djŠ®AX·dINX’–„%ÅX +ØID=AX–O)+¤”eSœºD-àÔ…_–O)+¤”elï„ï¨wËò)e…”²b²Œî%ñ”Dt?–åSÊ )eŰL¬RÖfi›GÚæ‘¶y¤m¾#mÃ1.ùVÑô´^ƒÿáϘU4Ãôô#«(EOMO‹ÞP~I^XR–c%ÓÓ"=•,É KòÂ’‚°D¦§ø}$—R–O)+¤”eÓ)zjšS~Y>¥¬R¦ §D½CX–O)+¤”“et/‰ëºŸËò)e…”²ÐS¬¥GZè‘z¤…ºz@[ Jø1^O@à1^A§,Ô>ÜL)tãõD~!*™KéÛü²‚¸ p«L©"· 4)XüÂbTˆ—[ Ût@ ¯£'…ã3ãu÷v¸­²×¬ÒÄáƒ>wþ³Pò öZÛê‡ÐGÇÒ;ÛõÎQ~×ÀKÔð³¥ïméy½6Ï¥¶?ü÷Sýüîxz+ÝNã9ø¯¡×à¿Cðß^t=§wæ¸Í©é(Ôš¾w¶¾ÏÕ¡OþÔÀDÿüXFÿà$Á\†…=èß4úÐôC{BÌn¼:úÞ玣Oî&×?Á×øÓy.(=„ÿí>þø ~òˆÆ$íýñ{à x£¤i£`€½ ”-*³IìM–Èg› d£‹¡à*ƒ‚l>Âe‡2(y]ïçæ\üw•„œPØßÀ)C¢ÎŠã¸fr(¢m,æ14à?3  V®ÉË”… ]Lä¬r¬ÉœS{àIÇz²—"‡1 çqÜÍ}ìÇ‘ ·þø‰É!"/ÜÆ-[¶pÚÚ-ò€ZjÛͺザÍ bž†O4:Á•M­‡èÁÿª’KÔ§°ÿÁT‘•Þ¥Öµ}Þ 9˜‰ß1ÓsÛöj;šŠÉ»fÀ6@ìÕ¹ËÀÊdÀQ…¦¯Tû©³:³þh Ã½ÀANõJ܇/ròóoµ èÛßj(?sS+C@”_b XƼFm+Ìœ>É. }wrjzædï*áU wн‰nw(à¾TMKVÎmHgpR¦^ðÞÉ^Do¬rƒ#8ü"äv¬ÚMÓ óë.agÓ¥í»Ÿ~zþÐô<ü÷“3GS²2µs)gœ¢x;- ÔV@·…=¹?8ÐÁn£„îÑö/Üq`v÷¾©ƒ;¶ãƒÞx‘¥ç¿z°ã(ˆ`ËCðÛn Bj‡RˆÀ9¼=ŽCí¨Na‚lLYø&[ñûÑ踷ÆÏ>u"N)çî2$¾žâƒ§—Þw=ЦBj ÚWd›ðLŸ=¶Ý :\˜ÏƒøAGÝ{7‘‹3úÕð—du'%(45–‡4û´áˆË6Qé°›i¨Ûï8pŸ"9p q„ùôéýû§§ô@?³ ½:|)'¥ÁrIhk³(ª…ʤӒ¥´Ú)#.lüFŒip]3E“(óƒ°‰”ÆÿìƒñŒÿ°,ÃŽÿÙÒ£ñÿ{øÃ‘"Zd–-!ë3dßòðhŽÔÖNà{w14*iv\¢ !†ƒV©-§…z½…4?É÷ˆ¦œx‰bxØvQÙ0N”6Œ\‰Z5ЪÏ ©ÏlÖ·kèÓÂŸóø³…?ãÏô9‚/àÏ]ø³Š?ŸÁŸ'ðçQüy}þxt…™Ô·o†„£0úœÇŸ-üy® Ï|yîŸUüù þ<>¾tñ'ä0CˆCŸ±ì ý[Ôª%³W -À8b‘i|R • ½ŽZöÞpfq”«3²]g(½ÿ¹ã!yÿóÅ"Ïþ/ä:Ø¢ou ¯ÙÆË’'€SC/ÏÃÆ5ÔøÇj €Ä§îq¤€§§ˆFb†cS{Òp€ˆ…ƒdØX‰` a•V0š×i7ð¹z<Çà{V$;><¤eKÃÄôÏç† h #6­²7FôYý 9'Èn»âXí*IOY×nô^Z8¢^Ü ád‰"¦guÌž-+*®_S@Â! ¯yÞ²aCQXƒ¤Ò¨šÈ›b#ª|Tgµ3¨M¬1#(]¦H¤NAuñ,Z4Õi{A’\§Œr@ÇÝÜ®:¢éG"•¼1„ç\ð¦~dÓÁ;¿øÛÿ±áTf¨tª¼ÿñôÌM`Yßù…¾šu@?¼íÚåÁ'·:•†¡#È(D=…œk¢VÑWQÑ™Þ/üóYú÷Ñ»ÀÃ~ö( Oß8Œ(è3›zØÏE&¡iÛè’ àT~¨x¦WFÜn*¢êÓÜÑoø]DÙ_y7ٚʚÂPK%Ü~5jÛÃmU_Õgî£wQŸ1zþHÖWwà Š2ÈlTýÊåŠcÌ‘xó9/=šÀ/ ½¥†m´Œá´ŸŒ«¥¶§¡D ämaÐ4ytÄÙÄÖÒÐ^LÍ&Ë'× \ NP»p© ìv1-4 ÞÂ4að”)°®×‰2žRauL{d0xMF6‰ß27ôT¢[¶×ͼZH7ÃjTšºgLDóÁªµPHãç:NÛÆy°›Møú׺Dx¼@@¿ÓÀ–!h:-Ïm ŽÄ3«7z*N¡û1ô̰®fR}óˆ c2æÚšMÌ«øj80°>[8¦ŸXܬ¯Žg"‘-Lù—/L_{~f1„°R 8¶Ûs \ÉþË?Ùü/ŸÏræÖ¿¿àí«hB‡·ˆ{aFÇ©µeó8¤‘ˆ#i0 $ ÈH`órD›‚ j'JAsK§­ ·¾âDÁ œž Ij˜H[ o4O2ø¥üòeûþ)½ÿ…ã‘þþÃñ7Ç™ÿeǽÿßÃ_ðþ£Ý‘`lD¯è¬:54»áê>Ú݇o;rUÖÊ6ÀçxBgC¬*pxo¼Ó3„†l×s‡ÃYµ½³ÑµWÇâ4/Aj•ZÚ1]ôÏlÖIzsS´Ÿ¯CÂ2pZÀ0-Z  5†½Ú¨9¦ÓÆ ‚õ¬ÈLÛ?¯ì[ÑbÀÁî=¨·êxJfPÚ h© ¨nXµâ[H¤>mìs:üXB?‚ QOéÉ»QÝž ÷¼–³JÚV»Ž£ [Õt´=†Þ&cT@èoð¶þ°Sm¯ùð!@c‘$={|@ ÖâãTÉdž†GñÝ(Ç u/qÁê9¨kXâ;òT†;+¸-ºŸKøBöúÄ"„mÆÂâjwqSèvÒXDfkäU¸íâ§ï´WœšE켚Ój‘áŠÐ ümQäkî)mäÞCL£ë/¼Ú¶m[G0¹…EmS4Ä/S÷¨7•É=ÏΗqRèy4¾çŽp¦Sƒ¿Pš²Mž± ljö@ƒê GŠaÉŸAþ#’Ð{ЛÂ;MèÃQ-ëz$Gt‰-€Úb ';A.´m”SG@ B˜ö®,º£±[`aq1¬ô¢An€áÅ`Ô_Ž ‡H”Ê Dø'#4|/È7³ˆ«ðX¼ž0™®Þ“ Qî±Å^¶"tÙi4ì&¼|’°ÉNà"*ïe2"€$Ð ñ:Ô5ý©ô´\#ˆ(6#º«°e„P‘È ó ?3˜/MøÖm9¾­BDÑpÌLväxƒ,Dèvnäøª0­È­ÐÙt¦6g§ õ©Íä@ïÔH𙦕Nd"Ú´ºíd¸fnŽ ÍR.ƒ¯o^ Ì(ÈÌ"Ä~C ¥`£ Þ8™ ®¬nz<¸O&Ù y€…aÈ ¬Üpcy$øÎˆ3: ٯѭ8Q¹µœxÙ &É·|›Á·|Oâ*D=i$ªI¶WQ ¶œŒ#Çpàe]Yè U¾:;#ªèBP¡-“ÉŠOô ¨jKê©§KÆ×Q2<á±¾Ýôb±ƒÉØè¸Ô«õi]ŸÑ·#ý¤ë§ÎèÛôM›õ}q`ðôȱb-¼IÝdlB×ÛÀ6}t›±m”¤—Ò Ý\„oax¢èÃ$‰Ö±°à1Xò,:Ö+CúÇíÔ‘& Ñ£ÜetaŠÖÐE¤v‚Œ† [jÞ Ñ?pÔpqQ¹ëÄ4RLG­xM }¯† n½£Ä`@‰‡‡ƒê Ç®‹ÿˆª‡òC'n mðF— e:N˜Ù ÷ÀXIñ_1P\]êg{Kpcü#ßzèlŽ^JM[ ¾ñ;Š~À§µi´wÀTø0M•Mî¦v@Á –KÃot,3~Îv6FÚ«í²\ þäËèÁÐå,x’^ПD97áÝ´ <·c7aÆ5F£otàÿqkk0 £øÓ@å}J9×hÞ‚ß¶`åý#ˆˆà ¯ã¶ì¶„Óz/11É6yö(ãמÜ^Kø^në“%×ìǦ1zy­¨¯a~ÿ‹Ö3üÿJ+̤®ö a8š#7p¼$L²Xá¹{+hh§e‡1 aÿìIƒÁ°'yÐÐX‘è~’ò µÇq­a”lAŒŒðf“­ŽiÚ¶ì9íP¼-ⶇ&’¸9hrF°É~_œ—†R86F!™J*ö*:³‚Pº‰дP©7D¨Ð>%pjp67šVvÆ3ÑæöÏï>"˜‘rûÏ<×ë…LþÃÍzÖÐuó´gspż 3â°ÈÚäXfDÌ%†¾at Bv¡Ù ±Ã€1hZ‹½t*ðdz¸‹nÚDfž=Q÷׉Ùge€–cÞ÷ƒÂØ„ïfSß¼5ù"ª¾>`Z:Ž0¢=Öv n{µ½ê­ŒÀþ ¿tøMЗ܄÷x;è/]=•9ÓƒÞ0z ^¡>¯¨VÇ6…U/m º|–¨¾D*›x)¹ì]cúÀ&ÜZ †¿Ìcð—>pÌ>V&2xðçÆ,Ý-Ý~Jë¿Åã!ÙÿÉæ <ÿŸì£õßïáïa­ÿjÔp|ñ÷Ñ‚/™G"Ϧ20ƒíðv¸×'ZËø¸D6¯]X…ðèÙ÷¤Š¼ŽVZ!*Úc'NRhÈ{x¹à{J•ÄÀ ±ìØÌ´z©‚Ðü÷ÉÉ'5³ ¼öäÖ'G«6v ¢Wjó‘ƒ4pñSl@»%ó¦ÁN6µ4”:»ƒ!îX‘鱿çÂÀàâ©R±˜/žÅ$-îxP|4|‡Jú¿ô`±*p¶—Àœ`z*L>¶¬‘™ÊWD¿˜÷W†8/çÕ¥*`’5­QS(‰tEÈP@"âi8w5ªýLïEPI²ÀŠQç’î‰–í¾ (è>,¿¬Y‹I9D"b&¬žLÏîì4ëå*…—¡„€À:I±’ÜîâѦú.KxeÌm %c1ŒTÆ|T™Œ÷7nRíL·ÝߤAÆÆ¤f S}–¡ ßМºyªÓ´Ëå‰>¤+à‘/z¥ÁÈz1µ>+µuÛ`™å hÑîaˆÙ’|v+ OO/³2Ú— ‚Nƒ‘Ú¼T$‹qÙÊ¢×ðê^ÙK¾86 äŒÀ’ÕÊrÛKœîÁ éþt°€G.nô¦ÁÈVy¨°†²ÙÄ.ZÙÌL ‚$×{ò¹< •¦œÞm&ðí+ö±\Ëá_òË7ºá†Ì {–^eÆ´g‡‚)˜òõYŠ.Ý;¢ýõÎTêt›‚R‰ðžeê#ë‹¡®yÔxÏn$¬Ôh˜¬Êú8^ -q±|ò‚çÄ_áJg(lp°@!YåâbŽÉßöŽëyZŽóÆÓ0yù—O<ÞàU.å>d*g!h¢ŠL˜2™NwªŽE!˜-¯N•†)Ê—»x¤Óz,‡K?ÒMg'hªŠdyxÅ‚\À]¡L…±£ 3&­€z²·rH÷©d!í¤ÁŒÉV ÷:® šKÓÌR!ÛM]Ú›*#rÿIôS.}fE'ÙYVÙ|3+!Ï\¢Ï¦I;.· ë¼3ÝFÓñÚ»3Óh2@" $yäc²Æž‡,í¾¤+bnŒÔõ+"©h§;øTZÔ Ñ"8 FÁ¦åRfYÜ‹F¸²‰ á(jsÄFb(pQ-iFA “®vy›ÞG@ɹ®©°/Î!Mù[®²”ûôé”óàµPѧ“Y6e 5€–iÔ»-Ž “ä팂ü€AavÎ¥ÅmVÙ; æebþ 88泎àh“D.fõ¸­´Ê#Ý=¦ÀCÔJ{L€jËû¯Ó¦q³hFAw_)÷JàPŸ(•R:/ ÝŸKm:;~k'J £_J¦Ìa¸ , vøBPI¢ÜÉžGºDùÐÐtKÁ1ß÷K€ۺ’ÊJW,ŲlæPËuÆ•‰úB(¨ ·8ÔcfÛSY6}­ã¤³ã·VÉÞâK© ³æMÚ72›eôÀ|µiÑ@ –GžrUd)›vÝ•ÛÓŠI‘±|éH•ëA°ÌÍ)±GÄ  dÊ1±ÄS}.ý©V–uTA ]väÈÈ”RØÞiÔ¼.íac°S^H‰¼,â'ÄôABÃòˆƒ~Žˆ)p6(hZ!®lçag¸í*ÝãóìŠB“ñrÊ+,”óȧŸµaùôuˆÛÓŠ;Ö¥€HÏó„'2Û«ê_¦û~Ž:@0¨ ?DÊ¡âCÌ*K¸OkK€×> 2†ñåR¹ VÕ§¨a™=?©‡•SpñЇȩ[4«l¾~+ç)n8RÛŠ qǤn^³  Ž3®@Ù,³•éî›U8åÈ¥O­1¤ûëÀñ.œ"5rùò“y)@ëØµYOqf]f–¡ŸeÑr9”è™IÂç–Ǫ¯£$2žâ¦«N*b+K%îYŒÂñofŠr+Aƒ]49KãôÓ‡9è‰,(—º0sZ+=:Z³–æìfÙÃÈ3JÑ@cò‡Xl΢-ÍŠ@«ž*•r7biÙ2—÷gí“­|2ìaLF)Ä~äPOýȰ)•úyÜJñ~,)ä É­á#ïmoiÖq=ú€“fÖ˽ΉÖ$)/w>ÖÕf!ú8êªÊ)¥Ù ‚Ó»HlÒ(PhêP·Rí0Ñ@˜HÑû;´—)˵³€Cª‚æ°êkÁYØ*˜vKÀïø¢—éë¯^÷’‹±?Žv»Ý„ÉŒ)̲8´!¦4BÍT³n»ôØSÌÓ X¤ldvš¸Ô!ªl£i—m4í•d&˜€ˆ"\P‡vÙ!«‡.]¤¨ó†ƒ%›QìI—U› ‚!(KA2 ]¹³‹cØmúñ²GÂ#¹ÈSV oÇ£mÉÖÇw´«Ž× ÖÙ öŒoŸ=VVpfåÓ·Cçè4W6»é-ÛÔY£ jœ³éû09Œ1;V@~\jÆv\Û){´'OŽ þp¤ÕY¥€ŠJy„Š™oí\Õƒ³M“í ìì\Õ]¥Tö2Å,rÒq ãZìq­,벃©åMSåÀŸ¾iÊ&Û{í†Éø@³´Š‚Q±4¸Ä¥vÆþÚÒLÕ¡ýMfÌÜ_3©D^¦ŠF—j´g¨!1AÚÛ §° ÀP.åd«ó ÓP·P[’`œíP Cï¦Z ¸ÔËä€}œ‰œ÷LÌŠŽ30E…‡Ç%.u'ØÛå¼´¬ß £TæŽ|òÒÙã ´)Y4vM€Ù²Èä,•%b.yK6uo—³5ÁÄ¡C`4P^E%pÉËãàгsÀŽÓ•.ÅA“v(d«d +%&ž*–‚ÑÅ'dÇOÞ35µ "•'­Ô4ŒŠ•* /5Q§NØ-z1/›a­™©-zVj¨ô)}i§ÚQé6ÚhMj—c7½J­Û¨Rk[yÖ²AHP¡¨`¬*0+eVë<¨£‰(ÕVN@-ñŒ«DCPÏË̽N‹Ê=U°Ø#8L6[6´O¦Ã¦A½C½Ó캢×îò f=K!Ê,úYÛnÛÎÒ,èRÙGƒ÷'^³YI-å–†l1 Cêp»»Þ°ápQ[šjÂNÀ,t°gاšuZÿ«h[#©êE“¾y¯Ó®" '½ãU5štt8 f(J8IMÆÝ.¹íx.lñh¹ @O%æ'Í6-[CI¶J줦Épæ)ÏUé©hÆP‘²7¥å†ƒæ2ӡعÌþæ2½škÞ{1‹‚|:ßÔTÅ`ÎvA FiM‹¥mJW´¦› J¿¿œt/ŒRy¦|òÒ‡8 F´Êº4Ói¶œtLKÖ­ "ÐCi+CÂH¾­ævm!Ñ@*‹Ï*̤ ѳµ¿›-±{µs5:$C©¬TCqùÒ¸×P¿Âñ€qzÍ0æ¦TÆÄ4&ÒAqtLЛ–50® ÙL‘™ÖNUªôXS,)mÊXIßiÐj¥gè7¶a"H¨¬+ZÄ¡,³[wÀFµØ6±Æ5„£r Ë_ú9ÙênÀJuiWq¼.±Ó“]uh\eÙ0…‰4?ú¬íZöÒg,whŸNN›^=´Ç-•/i\,éqZZ¯•ó¨I‡o/•ƒC[ú& ‘zŸ×”nñÚí㘈*ŠOÊIª÷àì!fv!o¤€ÊÞ’ˆƒôÌã¨Õ»MÛ¥ÇÇqÖøô‘¦Ì¸Š¡ ä µæ@giƳi@OÙSóÖ¤T\0RxH=1æËbVp²EvyÂÑ@–‘€¾%[": iºØ,zŠ‘gÌ+K©˜Wbò½Ö©ªG7ŠM3Â*(¨9.žL»M¹ “{‰í¯뜱«Ö¡6ô %¥**p+Ië¼ ´™ø9™qf¡Ñ@*˜K^þl‘¶ÜÕq+¼…i6 -‚¤T*—ÆÅ’ÖqÞ©¸‡‘¯ÍÜ⬲U\ê[@E#‹y©Nž®g¹Õa¢å°óÜéê2í©g–v3„¤ÉìfAÞ Ã6™ŒS9‚£ ¥+\ú†ìmØgÓ™88Ž< ’B.%.žìÔÃþ¨0)˜Hû[,J&M.uiTñƒ(]$ea”ÊŒÎ8Hï¿eÇ­ŒÂ`Ê#1eãè¾N«J/Ó–mÚåydäT$Å¡nÈã¯Ï{]¯nPvi°N]Ž ‡ ôì\ÇQàB[ï$h.Í?×M›&Àzê:oF¦[2FÒ蓳`P¦ðlv%ÂÑ@*–›€¾Ôj›µ-» «éPZ¦d³3äVOM¨¤À󘹆’%iîyAvtò*ôrSYe.ÂC:ŸÞQërõY%²ƒNSÊ #€€¾4àÓ¾®–mh“Îu€YíØ¼É¸ÍI\w4Šß‹;©#ÌaàšUêÚ9fzs˜¤f¦sÈç¥ÒLÕk‚V—ä™Ý‘oÒ+•eSA-‹Y˜2ݼÝ9a·–¦–;MzÎÆúmwè•óìDQaQ1…‡ôÔîž*Ú`]š¯ƒZm‰Ôƒݨ3ûOíqÚ”ÇMÿH)/HFžøÑ­´(,Á$¬—2DÉ'/{Ðk3]ž9-Ê Ûà\<Ùø3N»ºÜyŽÞ¹*2’B€4¡`–‹2«|X¡Myv°à©¼ <¼’üäzei9,ÒŽM6ë7aéð1•…ÿÁºÿ×Ò¼²Ö¶[p"Öè´s¥ ?ú«þ5̦&ŸÙÌHalÕÍm0Ú«äØƒñ@yÚJ¥þ†Éïl-¶üLcÅBv,›ÏÁûÙ±b®ø£ÌÃibú_§ÕMȲéyí48Y9ݸÿ&µƒU¾3èa·´»ikÛµ› m[šÑÕ åã¶Gw·B¨‘FWë´·¢ÍÍØ‘{²¥š™ƒ]õ™!Íòð‹a[N[ë¸5»ÕÒÚUÐÆ¥Z´Ðj·iø&´«vWƒ¦¼Ö´Ë5ÛDkÐMû„ãuZÚ ähï¹#èÕ9ä:¦gÙá¹ìèwPõ²× Áµli$3’H »YCÅW"ÐŽ›ÅS´;]›²¬²B:+Š(Ä3bÑtWY²ýePI'O7),–Ç¥±P[eóƒM›òýÉ3„¡¬+W„ëˆbH)a&¹LQ=„½[ÌŒÛL‘²X¨å2h¦ÛtjôáBιØn“:½hgÆU0r¨çŒDÈ †t™Õä,ømÌ©X%\LØt龿‡H“*—x¯R ú+ç(ŠrÁ'á'jo^eáì¯F!M¾ÒùLB¥2tæ*ÉSFŸ×¶¼Jðóû ÿ€÷v©´7잢޻,þÃ¥ý‡eÓ_>Ët~¢Æ*h’€l%|*Dc÷û •<¨$õ9”ó™|¼“2dá+ ËO§˜Î€×6 [ÿeñ`ÍdcÿÁ* O°gÿPD!B‡rje˜”­rƒ:;~K•º(ÖL¶c¾Ý>x1ÐØå$û½Xmdä±’ô)#€!ÆËý$žQ`"j©’! ÀE"žù¶Ý }Ž•õžœ¦=ø&Êò¤i<Ò±6³]—áÅÜGü/ ?Ac•ÌC„•“é×f½³L'ÙcÂí¤×2BÆ.m*Ž6K¸¯`®rüilQžlÆó²»³sRmÓx¬LS'/’¨ri§gJbØô)át†¢ö*J˜+)©„÷7*x„ÁtÙýMD!0K˜ê¯ Õ($»’4%ô9 S’#‹«%Û>êNrâhŒÓ‰×! ‡©¬ÐKYÒ©]”Ç¥Ÿd^©ì¸-U’*‹†2H«]ëT’:u¾A@I1©²”é¬4Ùþz§Œ¯mj’dñ:èàºt–EÖlKƒˆ ŸuéÔ.Êpé/†­„Ÿ ±J²å!Fù7Ò\,j  èàûlÈëYz+ÞRè©|âTge(ÃZ÷•@JÊCÐH%±òQae½vÞq«/)3f🧃`e¡Î“G\æ—倩>€Fð4W)r; AmùA‚mJf±©3,¦<ŸïÃòO§ÎW²ùï#<èåL ‡t>“¶ªÊ°à}¬UÉ š€ÜG„Qˆ)“ïl¸u&«U»tŒÅlÉ–[|êT–ošt»U<…´6FLÒ•*¯þÈyN6£²½f…s|†Ù»‚pÉ×ÈÊÉ“Òs©§î^1lì~t„Ÿ¨½J{XŸ±Å=–aD å+ã'jqÈ$Ýgó¯49uç•G=Ìï¼Ò”û2 äøM ]0%.’÷òùC§I”GÚ6Ä}–ÃÅîc›  ©¶‚÷é}E^žõÜ >·•DäÑes<•Jr%+¤Ÿ‹wX†x— qKN6p¡dw—Óz÷&Ÿ)0Ú}f±œ Þ§Ô1ŒOžžyÄ»/éÆJPÓdÅV×x¨H²ØI{P<–' ½‡!ndrª È㽘!ÝŸdå,DTñ©æa¢¦ËÜ1¦½†W÷ÊIÏ✠(±"°d­² ƒŸ¸™bâ2|ú³Èd … V fÊÅ„õ“-yíbìböP)Ö3ŸË+dD¦)'ý¢ð=+öa(¤Qg¥2K q`#¥KŸ¥·™‘ëY‡ŽnZ0囄ÏÒvišNeXô×+Sx±-TÓ£Ï2õ‘õÂO*:—e©';#C·/›UBž×8¥iëýeB8‡°šG™K¬{ÐÁJ†Éªìañˆç‹âÞÉᓼü]¬t†ÂçÆ%¦d*g!h¢ŠL˜2™NwªÓcŒ9= h˜¢|}G:­Çr¸ô#Ýtv‚¦ªH–‡W”-Â.n—>m?Æ£Ap̘\´êÉÞÊ!ݧñµRQðPÇd‚ÝëÔ :kQ0 žÂ,i’dXÐ_&}¥$NeÆmgH>ý(G<ò”q(›̃‰pÔh˜1¹^åЦ®Xº™B>A2¼Ö)­Zq¥2&ÛÜë¸6h.MS-b-TH;GgD½‰NʥϬ'{*Ã*›ïc’*ç)n¸R†P®4*öCHY”ºÃÍ!Ÿ´`†`Y»¡-!ÏmžŠ {¿™–P¦VÇc"·±ˆL6¯qQ‡J â‘OíºN}u])Ka«•SÛr&í·Ó '© ôÁQ0 ³.u0a–ã=—!(›[RüVFl$FÕ’ö`¯A§>ËÛ´#!¢Vzü9¤Óöe&}~IeÇo©Šjà ¡ŠÉ\ vÖZ §Qs¬7!‚L’·3 ç^ ¨õšv§ xˆª´pÀGEí—.a÷щոˆ›«æ'VN¶û5W•ÖÒíÊf¨Ò/ó¸‚S<—z|×íÌ #hþ÷áv(å(j³Ú6£@\c²=š}ËÉN4ÆÄZ‚ˆÂ(G“Mœf[ei–­~̱TêL“”ÊÑHeKj}í]P]ÚK›?œ@3ô¦‰œ\‚ê¹£>\b¤ÅmVq” J3?x&³Ô‰0K=—)‚xge(ªÓ^^ #éÞ¿V¶T—¥žjà2g/ûrÈ–˜7p€LùÑõ ìÁõd†pÇçe xí›()„:æËÅ”E+™®EGHf× T¤(Çx¤K4éx¿e¸” }t[ ;A[C’³Ÿ!åçÀr9ÏÈnä@(¨ _„áPŸ°=•%Üצ®Œ¯}@ž@™#y ø‡œC/µëÊxá E™æÚ_4þ¸«H&bŸÞËFÞÀyÄÁbž.›Ç¨J§ÌfŒ yê9C*è>bÉI9p›¨t„\ ©™q,3a’Jœ$ÝËÌAJSNŠ%žz~œáÒßð—ÊÛT¥µr®„¤QÁn¾ÆôeTNùLbs‚a’¶üEu^2àï>åöN£æuiDƒ5£ ¤ Ï¹ôÓ,x|@?ñÓÒŠš¬²f!’¹í=„¤ši2æ‘O®°1„Ã4J"•Ñç¶OE ÷› tg¸í*­Îóìn<“û,›WðÚã‘OìÅòé+j’„¡ Åjq½¸¢*[².»§êg‹±Ç¦ TÇ©äPIš!ÜçdO€×> bBóåR/­a¿)ª«³Ái! ­Æë èg3)š–Ã*›ï£×ÊyŠžU‰,À“žà›Upœ9ê•Í2ž‘î¾Y…pŠ\úIËPî¯ÿJ9ðÛ¨¢tE“&†H°šl~Z6ë,C?¦ž–¬[ð8È–.XV}¯’ñ7]u C 6i2¬YÞp˲ƒT”Ï>4ØA“Ñk8ýôàtú\ò*ÒäµV¤²f-ÍÙÍ:{°ÑŒ“;ð 8¤º §ÂxÊWÊPÜl%!–ؘ̛o®jêÒ¨ÖÀ úÝ4˜Ùó\µÖ ú¦±)%ã01úZÝTf”Úr%U!ôdðžjÇ+€yCrL¾·y‡N?ŸÍ•åJƒÏ@öŽYêË“p6[iùB(±²4±™Ó¬vÚLBYvqÂÑ@–Ââ‡<b”¦Ü炌·‰jAFù²±d2íÔÚ¬eÂ:M!8( yò ·ı-h> ‡k ;A{Ê–“@P@e |(y½ec!Ÿ í¢Æ0È٢ɣh Ta”ÒlõMÓûOT>eѱK³6ën ¡ ¢‚?C¼”-‹{4Ã¥?‰§rã6µ”UðàJ¨$õxÐÔÜ©˜!žOÊcèæ‹}ìuHÈsÚ–W‰ñ×Ê'ž¾ÍÁPÏ•Ë)3:†O>ÛÏ ?~{ˆï&3ú,Êp êK;=—14Ø0ÏŠÞ•¶TæsB&Ô †~_'·Ù¤´YÉ.K™t¾·Ý«Ð±Å8ñÝ ”—k–xªýËpéÏJKåÆmª’|¹ÊKÏÁuÜã øO…‰î°“Ÿg)Xib&tø:ÍL?ýXKJ‹•ÎÄ¥ÉKj¬¡`Uegé€WuÜ T"Ã*H›k–¨«%c¿Ù¤&bø•,ÁÞŠ Œ [‰”ÉH™—=ˆy¯Âq/3[ÔŽRÐÜ<òÔ C¹¯ )n •V,¢‘jè}¾Ü,TÌŽ}´s²å»x"©ÚšáÕ_r ž)WÒÜ)’³eá9žµO:Ì6ô£’Ïq¨SççÂ¥RC¡Œ>¯yJú/C¶§‡ÂxK³ŽëÑ/@®Ì¤¸ŸiÔ Ñ64‚ÏC9‚fáû9Ÿ¤Ä7Uê1$DB”¦¥AóòCÝJµCÇá/3¹”÷whc/S%Ž¥Ö28(õÌ!Þ×” Qc•Ô´XPãÒuN¯MùqÚ9¦wó€€ÜO™AK="€V¦ðâ5S-í¯Ý2ïä`—6BÇoE)¤©f‰S:˜¡[ÅTášÍéä9mSÒÀ\‘H3S£Œ…neiOÕ¦šK¬³÷Î} ¤”U°Ž…D.Ëjv-_±‘øØÒ@ U1ž¢Ûߪ—Y#fÝz lnHvh¹ô¥›ÓMàÔ¨PÁ9vO Q0*/%—ú„ôµÜg¯,á@Á:R0çŒyBE÷‹9(…˜³›-vyšMLv¤aÓ‡Uó–Â$*…‡%Ë>±öZUæèx† „Š@i ¢BæL1‹¢lÏzjB6F+ÆfšÞ•5TL yyŒÞŽk;eöÑͱ¦´:«P±WЊ™I€ú‹ñëÌ0;˜RÑáiL¤J–´ÀÒ3t*¦z’*«¤Cq(˦ûðÅ+Õ¥]uÆ+¶ÄΪwÕY q•ùa évú¬íZöÒg,w¨7ËædǶéi¢=n©]JãbIODÓAÅJ€ ™×¤3–Âs[é5ciKÃç !rŸ×” ‘ñÚíã Æ*¯¬”“ôýÝ ¨ÈÙsèìŒm¤€Êjˆƒôäê¨Õ»MÛ¥õä8;ÌúœTf\eÀrŽs ³4ã@ƒÐïlàkÒ@e›:…‡4¡ý¼cYÌd+[dçᎲfsú–l6wÒt+°Y´1—g†ÙÃŒ·SViáZÌC¾z=UõèF±ky@5ÇÅ“i·)´½ZúäÝVÚUëPéÝ %¥**p+Ië¼ ´™èG™qfJ‡Àh •Ì%/¶óNÅ=Œv€èqÐâ„ ¯¸”ü, ¢íÄ<€TßMW³Üê0‘„Ø…Ïéê2½1m–6~…J²ÝßYЄ7è€V&ãR‹àh CÅàÓ7d=mŸM'Låìãó€J n0\<™ø¾N«J/¡”mÚëad„¹ÐÒ«ÄR7ä¹Êæ½®W7yipãgœvu¹óãSËÔ Ò@*§ND ©_X¡ÍAV5ó€T‚¤pñdcÆ>PYšEž´ ¬Í¦ž°t‚Ê’b éŠâ§ ÚK¨íñl‰=¯³‡ö¼‚@c µr¢Îíp-Í+km»ÕÞð£G?ˆ¿†Ù´sÃä3›)Œ¢Çc6ÀŽÛè´sãÆ#ÿJ¥þ†ôw!ŸËÿŽÒcÅBv,›ÏÁûÙ±b®ø£ÌÃibú_§ÕMȲéyí48Y9ݸÿ&µƒU§…ßIøYµµÓ3ÛwÏh­N£á5ñ+>7s`GnDÛ  hCÒ‚ß-ø¹Rµ›¶f¯6jŽé´µ Ö±[ð5ou̪ZZf5´*8ak†m»Z§e[\«m¬\P‡Djβ­Íìš:°´÷é‘ 7Ä꣕š­U½ûÔ7ð&Ög˜ˆÖöpe›vÃk9m¯ÙÕl×ô,Xïžß?<>^œÎAz–ãV4aO ÷FÒ¬ƒFÝ,7½zÐà·fC1tZš ZN­«NšH¤6¸Ñ°ŠÚ.R£!Tƒ®¶âÔjäì…ëÓq5P¨•cÅv;މÊËŵÆ/•\ ó:mô5µ¥Á)žfz.$Þ†-m êȉÖÔZ¤ÞjئjZ6{Ö@›šŸÙ½[ku¡„ë­¡àñà7׿ Må‚ÔH .ï@«¥;Úપ©«YžMºZºjA #±9.\„Û\öš6¤gŸ¨ Áí®u‡ƒ–cÁ£#*å 3¡Ñà ªš¢ujm͵W%f|Å&C{È-4,MÖñH25=ƒ¿³9ÝEפh(@| ¸ÝDqpÝŒ_'JVÇ‹|2f³VV$¥?¥íX…Ö߃ ¾4õ ™z3Ò«£¤-Ú4ùÖÛáÅêTfº¾‹€ï À# BnZÄÑŒðü¾î†š©ñbt™1z—¦ƒ„Á‰ïŒÁ3„Á3=‰°úã < ßh¨8l€^2‡¼,P9Á¾§¶WwL­Òô: ­…t hã.¼¦yZPuAB°ëkÛŸž"•AÀƒ¥Íƒ ±ºZ ª/­{¸ÓÀzëÏÁ‘XÇØŒ:°m^޲‚ØÕØ(ö‚êõ;è =6'¾C6ÏôØ<—ÔCë„©•;®I\XœvòÔÍÿ©›SºièæŒnZº¹C7˺¹S7«º¹[7¢›{t³¦›uÝܧ›ûu³¡›ÏéfS7çuó n>£›‡uóˆnvuó(ª8d™ÿ²ðT™¼¾:aÂï XÁ’¾:V†¿ÇàµÿÙ¨¦¨ŠðüA¿ayâg!>R5Y„ÊÆ!<ÄËÂï,¤5‘û>YmØè”µÇlôsØ­åŠxN±š-þ·ØÅ‚<´à¯q³Ñv-§Œ tS×ÍEÝ<¦›K£ÁôaÕÖ( ¹fa²v[ØÍV'ÊÓøÎ£ÁãÑÔ¢Ÿ?%ûâÁxHìÿL.SäØÿÙGöÿ÷ð§jÿ{³ì˜Øîö쾽мoaëY€ž[v*&±\¡1œYÍGˆÈ¥k¿¶þü§òþç‡äýÏåǘ÷¿Px4ÿÿ>þ‚÷¿e·Ã¥¹`ž çÂ|ׇÃ×^+Cƒ¾ÝØXgz—›KOxœ€Ú#T»ÛdŽZ÷ 55g7kæWoÀùœ#½fÉ' è¸ÈæÂ逵-‡L!5¨FVª¬Z€ ¡ 8ã¯Â+h„Ã#̲×q±ö±WV{$š2CBÐÈ(Ãn;>m£¦ãU¤Õ Ï4µ {=¶ïÑÄv\Ë[i¡õ2¯NV9@+Οy¢i=j3–¤´{İŽÐj| ÇZBk¦P[.è+‹›GEfíÿ1½šÝ#Ux K….?ŒÈpî%p$ltc10Å ,á˜Ê¤ãÓWÚ‰€„­Ù<¨èsTt¿ŸÖâïQ'vO€ðÿ$†Œƒê+£»ƒ¯$8ìSµœ‘Öãâ+ê4Y/ÂpAoBÓRô¶¢‚`õM'á†e´$iôÈWÍñaø1±˜hX¼j õÆë«F1 ùŸ"X4Ý€ ÿo§¯–Ë"Ð.~nƒz¶ í} s:ôäÉÉI}€­[·ö~视û`ÔãÓáŽ-lµFlYT‚ÇÝTûŠ÷~˜£ß xYóVì&¹„6¾Ý=Mí¯LnY©Œÿ…cRÇ<äÿ¥?ÞøGÒ¦vèàÓá4`ª"³ÖÁ«¿‡\­´k¦{_Û±[x …ý/,é)08,j½á¯í*¾ŒÁ-¼" mmò)­8’Í iF§¶¼ºMèˆO7 ‹VÕÈ`àñ¹Ìïˆt¬JÞÐŒ.™Íà1Æ+q‡§ìÛ½oçíìáôfm#`æZµìšS‡fIs*ëvÕëTª±¥õ@JÈΚ۩ÄX‰ Í„Z ñ´FˆV]ȦâœÀ-„Ò©·ˆ|ÚX–°É5D{¤U öXQUƒeê¥pÙ¼VÖ‚kô G ê0bD»°À4È7Zñ‰.O!Gñ­»"30r*f0F "Ðá§Õ®‘¼ˆ³÷0—n ›2@4u× ønÚ6ǃÑÌÌÀ¹âx²,^)ÒRš‚˜†Ç Mä ÓŠ•Åñrˆ–²U¡²uMâ¦#K°Ù§“Íå ‰§ƒo 9çsÙ3¢ûð;_ÈæÒ:D€Á>©Sù¡‡] \¼ ÿ`Cír¥ê— àoø[¥þQ¥·ýw¬uñ$k‚j°¨«=ÅNµJãõýzVßC«- 3sf7Zh^Ÿ ¼)¶m} 1M«'¤#DIà¢PÑ%›4XF™‰o ¡2’Þ[‘Ú—14šSœIWiø3¸4sÐLN¡•É``Ò¨3DtyöhH0W,A?tPš#hžW†B¨Õ±ƒgBGñ£‚À§rgh!f¯pˆS:âåÛXЫˆÓ_MzàüºpÊéÚp@y@èÇ©ÌP¦×$@:EP¶-yŸ}Ð 2yF2!”°?1d6Å9Ú} žÊe“ÍPÆËßÞæûá¥ÂéÈ‘8Ô–ÊŒTÈ= jq-»¨AÞÎ!Pn#o—Õ6yùºÝ.H"GNž<‰j³=|Êàÿê¿DSûõ£¯G_¾}=úú¿ô Ñpœ=’#ßAiOêóQù¤6yD{6¼ €à HĢͮ<ºÛ¢ïjØØÞ3\²9dä bçGX†P ³\"´ð‡„B§µíá³8mA·Së›/`[VÄd$FBXM%óê’ÖñFz€ºc*q2÷YÿI½µy+Ç¸Ëæ&1Œ¶K‚a~ÿ\ãÙûQÊ õTm. Œ $ª{‚E¢ ÷…×+Ïf:'Œù}2º:M¨þô~Z…~ÿt[ýÁëÐûZÙ£Nµ•ž§+°É%†ÜدijN0ØöP9ÐÏëá·Ëá¡6MöiQÅ–ã Ž î‰ýÎâߢe¹*]yE²ä÷OåôiÙäÏ0ØF ÉÒU:‚—ô(=úSG"T Qàb‹D#fˆ -ªï‚~õ­NcׇDÝ¢faýA”{oò$Qò ížÆ%G”—¼ÒO?ø½L"•­äf¹ÜSPÈt.—Ïl ÚÁ‡‹ÅIèØb3´šÎÕ|sq“!^Ê_ ÖüÃî¥|lAÈá$Pº%…8 cKâ&h“tr,A§®ÕSãÅ3?N®“doþË_FB‚ל½7°­580•RñÌ`üÍC»#Á5ÚÚˆj“¾ÒƒÂf,œõª9Á@þ >ê…,Ü3¢²ÃúáXÑfRôÔS!sFTçï x£¨/â¯BöLpwªùEuh8Íëƒòö~(NÂæà\ ÀsõËýbÌë­ÅIJ¼îêÍ´z­vOãk![>Ó—¤Fà 8¿8C€üs\ ¯Gt·ñ\3ÄÐݾp¶5·SGWÉÎ5ƒO­4–é8I©Ø³„F ¸Ë©¦ÛnÖR!,§â´S!*MШ&!Èqœø¦‚…g4¡\D¨ÑtÜ6MèTvâ MªŽV¥Ö©Õ¦ 9½Å]bÅkZéO`•#œÙ‘cSÓ3Ûw<½s×îŸìÙ;»oÿÜOÌ<ô ÚF¼òü•Ÿ_9{å…+/^ùÅ•—®üòÊËW~uå•+¿¾òê•ß\yíÊo¯¼~åwWÞ¸òû+o^ù»+o]yûÊ®¼såWÞ½ò§+ï]}þêÙ«/^}éêËW_¹úêÕ×®¾~õ«o^}ëêÛWß¹úîÕ÷®¾õƒ«^ýèêÇW?¹úéÕÏ®~~õ‹«_^ýê깫®^ºzùÚϯ½pí×~yí•k¯^{íÚë×Þ¸öæµ·®½}íkï^{ïÚû×>¸öáµ®}|í“kŸ^ûìÚç×¾¸ö嵯®­];wíµK×~ýìõ¯¿tý—×uý•뿾þÚõß^ýúï®ÿþú›×ߺþ÷×ß¾þîõ?]ÿ‡ëï_ÿàú‡×?ºþ/×ÿ|ýÓëŸ]ÿ·ëÿ~ý‹ëÿqý?¯ÿ×õµëo¼xã—7^¹ñ›¿½ñ»¿¿ñw7þþÆnüñÆ{7Þ¿ñÁo|tããŸÜøôÆg7þýÆ—7¾ºñ_7Önœ¿qñÆ×7Ÿ¿yöæ‹7_ºùòÍWn¾z󵛯ß|ãæ›7ߺùöÍwn¾{ó½›ïßüàæ‡7?ºùñÍOn~z󳛟ßüâæù›n^ºùõÿùù­—n½|ëW·^¹õê­×nýöÖïn½që÷·Þ¼õw·Þºõ÷·Þ¾õ‡[ïÜúã­woýéÖ{·þáÖû·þñÖ?ÝúðÖ?ßúèÖ¿ÜúøÖŸo}rë/ß¼ñÍï¿yó›·¿yç›w¿yï›÷¿ùà›¿ù蛿ùä›O¿ùì›/¿ù¯oÎ}sþ›Kß|ýÍåõç×¾~vý…õ×±þÒú/×_^ÿÕú+ë¿^uý7믭ÿvýõõß­¿±þûõ7×ÿný­õ¿_{ýëï¬ÿqýÝõ?­¿·þëï¯ÿãúëÿ´þáú?¯´þ/ë¯ÿyý“õ¿¬ºþ¯ëŸ­ÿÛ·ïûÁ·~ûÑ·ûÉ·Ÿ~ûÙ·ŸûÅ·_~ûÕ·kßžÿöâ·_ß~þö+·_½ýÚí×o¿qûÍÛoÝ~ûö;·ß½ýÞí÷opûÃÛÝþøö'·?½ýÙíÏoqûËÛ_Ý^»}þöÅÛ_ßyþÎÏï¼pçw~yçWw~}ç7w^¿óÆ7ï¼uçí;ïÜy÷Î{wÞ¿óÁï|tçã;ŸÜùôÎgw>¿óÅ/ï|ugíîówÏÞ}ñîKw_¾ûÊÝWï¾v÷ßï~q÷?î~y÷?ï~u÷¿î®Ý=w÷üÝ w/Þ½t÷ë»—ï=ïç÷ÎÞ{áÞ‹÷~qï¥{¿¼÷ò½_Ý{åÞ¯ï½zï7÷^»÷Û{¯ßûݽ7îýþÞ›÷þîÞ[þÙ÷ý³ÿèŸýÀ?ûOþÙý³ÿìŸýÈ?û/þÙý³öÏ~âŸý‹öSÿì¿úg?óÏþ›ösÿì¿ûg¿ðÏþ‡öKÿìúg¿òÏþ—vÍ?{Î?{Þ?{Á?{Ñ?{É?ûµö²ÿÂóþ ?÷_8ë¿ð‚ÿ‹þ ¿ðמ÷×Îúk/úk/ùk/ûk¯øk¯úk¯ùk¯ûkoøkoúkoùkoûkïøkïúkïùkïûkøkúkùkûkŸøkŸúkŸùkŸûk_øk_úk_ùkkþÚyí¢¿öµîyÿÜYÿÜ‹þ¹—üs/ûç^ñϽêŸ{Í?÷ºî ÿÜ›þ¹·üsoûçÞñϽëŸ{Ï?÷¾îÿ܇þ¹üsûç>ñÏ}êŸûÌ?÷¹î ÿÜ—þ¹¯üskþ¹óþ¹‹þ¹¯ýóÏûçÏúç_ôÏ¿äŸÙ?ÿŠþUÿükþù×ýóoøçßôÏ¿ïŸÿÀ?ÿ¡þ#ÿüÇþùOüóŸúç?óÏîŸÿÂ?ÿ¥þ+ÿüšþ¼þ¢þkÿÂóþ…³þ…ý /ù^ö/¼â_xÕ¿ðšáuÿÂþ…7ý oùÞö/¼ã_x׿ðžá}ÿÂþ…ý ù>ö/|â_øÔ¿ð™ásÿÂþ…/ý _ùÖü‹/ûå_|Å¿økÿâ«þÅßø_ó/þÖ¿ø¶ñþÅwü‹ô/¾ë_ü“ñcÿâŸý‹Ÿøÿâ_üÔ¿ø¯þÅÏü‹ÿæ_„DÎùÏû/ø/ú/ù¿ö/^ö/½ì_ú•éÿÒ¯ýK¯ú—~ã_úƒéþ¥?ù—þÁ¿ô±éÏþ¥OüKñ/}ê_úWÿÒgþ¥ó¿^ó¿>ç}Þÿú‚ùeÿò¯ü˯ø—í_~Û¿üÿò;þå?ú—?ö/ÿÙ¿ü‰ù/þåOýËkþåsþåóþå òÁY®Õ]ü­vçÄ ´þ÷'ÿû?ÿ÷ù+ÿpåý+ÿxåƒ+ÿtåÃ+ÿüÿQ÷ìOmiþž¿Â®¤®üÈ:’m%E œ­Ý‹“åι;'ëXÛ˜ÃvÖlÂoŒ1æ)0Æ˲,cÀ€Ô#4’FªZ=g~@Œdù÷oþþ…—¤„H¸MÙeÔïÝÓÝ3ÝýuwôUÔ}]¾‰®EףѷÑÍèVt;ê‰z£(JF}Q”Š¢Áh(JGÃÑH¬?6ŽÆÆb㱉Ødl:6³Çb‹±¥Ørl%æˆ9c®˜;¶[‹mÄ6cÛ1oŒŒíÄü±@, Çûâñ¡øHü~|,>ŸˆOƧã³q{|!¾_Š/ÇW⎸3ã«ñµøF|3¾÷ÆÉøN<ÅÃñH¢/1˜NÜOb'Ù)všagÙ9ÖÎγ ìcv‘}Â.±OÙeö»Â>gì Öɾd]ì+Ö;fWÙ7ì»În°oÙÍÝ©ÝõÝÝ·»›»[»Û»ž]ï.Ú%w}»;»þ]j7°Ü íÒ»áÝHº/ÝŸH¦‡ÒÃé‘ôhú~z,ý =ž~˜žH?JO¥§Óöô|z!½˜^J/§WÒŽ´3íJ»Ó«éµôFz3½•ÞN{ÒÞ4™ö§ƒéÐÞÖÞöžgÏ»‡öÈ=ßÞΞÚ ì÷B{ô^x/ÂõqýÜ7È qÃÜ7ÊÝçÆ¸Ü8÷›àq“Ü7ÍÍp³Ügçæ¹î1·È=á–¸§Ü2÷Œ[ᜓsqnn•[ã6¸Mn›ór$·ÃQ\£¹H¦?3ž™ÈLf¦3³{f!³˜YÊ,gV2ŽŒ3ãʸ3«™µÌFf3³ñfÈÌN†Ê3t&’ÈeG²÷³²³²ÓÙÙ¬=»]Ì.e—³+YGÖ™ueÝÙÕìZv#»™ÝÎz³dv'K½ë7ønøÝè»±wãï&ÞMæ¹9gîeΕ{•sç^çVsork¹õÜFîmn3·•ÛÎyrÞÊ‘9_n'çÏQ¹@.˜ åè\8yß÷¾ÿýÀûÁ÷Cï‡ß¼Ô¨РA@C€†òïôÐ8 ‡€&=4 h Ð4 @³€æÙÍZôÐ" '€–=´ è @Ï9½äô Ð+@n@¯­zh È@:| ¤ ÈW@º| ä*o€ ë@nùÈM ·€ÜÒ¤H$ ¤È ) @ I2¾>ðõƒo|ƒàß0øFÀ7 ¾ûàßðƒï!ø&À÷|“à›ß4øfÀ7 ¾9ðÙÁ7¾ð=ß"ø„×j?øÁ/¼‰GÁ?þqðO€üÓàŸ¿ü à_ÿø—Á¿~øàwß þUð¯ü›àß¿ü$øwÀO?~ü új¨Q Æ€j¨I ¦šÊÔP‹@-µ Ô P œ@¹€rµ ÔP@mµ ”(¨ ( ‚@Ñ@E ÐA C`c‡À&!0 YØ!0<†À"ž@` 8!à‚€«XƒÀ6!° /Hì@€‚@4"ì‡à ‡!8 Á1ŽCp‚“œ†à,í\€à"— ¸ Á: è„  ‚n®Bp ‚Ü„à6½$!¸AáUÚ¡~ @hBC†Ð„F!4¡iÍ@hBs²Cè9„z!'„^BÈ¡WrCh BÛò@È !!B>íÝt?Ð@=ô0ÐS@O=ô,Ðs@Ûžzèç@;€~´è—@»€~´è- ·öíMíZàìš:tèÐ4„û ÜáBxÂÃð(„§ < áÏBxÂvÏCxÂÏ!ì€ð ;!üÂ.¿‚°Â[Þ†°Â^#û ¼á0D 2‘!ˆŒ@d"S™†È Df!2‘ˆ<‡ˆ"/ â„ÈKˆ¸ ò "nˆx â…‚ˆ";¼§Ÿ÷ òžaÞ3Ê{ÆxÏ8ï™à=“¼gš÷Ìò;ïYà=‹¼g‰÷,óžÞãà=NÞãâ=nÞ³Ê{ÖxÏïÙä=Û¼ÇË{HÞ#ð¤xO÷м'Â{ûyï ïæ½£¼wŒ÷ŽóÞ Þ;É{§yï,ïµóÞÞ»È{—xï2ï]á½Þëä½/yÔÇ£~ ðhGC<æÑFytŸGc¿¿¾`n»öy¢Tš™lk9×ðÉgùé<›•Á³;ÍüT}¦¡ã¬¸¥±Æ|0Ê¡¥­åçY¦¢&ygk•'s«ì“ü—3𹆳¡òŠrE¯½ÏªÆÃ3 ù¥ä¿–ZŽ“…é>ébjT¦¯M&±L…¢•öf–ŸnΗ¾‚yqæÜðÒLï§7‰îëØƒ”Pþá<øñ©onu®» »€?;›ÍfíŶâj¯ ¤UÁt*˜N«QÁjT0½ ¦WÁjU°ZÌ ‚T°:¬N«WÁêU0£ fTÁŒPÁ,*˜EkUÁZU°6¬M³ª`VÌvàaÏH£~H5e[›Ohñ„OÔà =ž¨ÅŠ“‘Aœ—úû? ÉÀ æFñ¿Ú6±'W"ú|D^”ûXZ¹•XKÙxÙDz‚X%¦„ÞÇa[n ûvóG Iûw¥òéj2w]2w}mîúÆÜÕlîºlîúþsL_ñX2ñÅ$ö³› 9h›FZþÑê5½ò¦ysg—„¬é5ž6rêó²u MÔ¦¹©¸r[þ9ÔÙdäKdc…‡–?<¾ùëjxKVÊøßT…oÈß%ÕÜ\%~«‚¹*|±€eüï«Â—žÄGÊ¡òêk4Úb¤o+ÏEcй¨ï|0ˆ U 4Ú „ê³ì­R]­’T}H¿MºÕ§*ÊK7°®«É÷¸NJõ9à:Kye‰:ÖxLÝKïÆÆyUÑ0U¼°Ç|ºÐ&모+*.Ø åK¢"ÇòA¹eA}Š®UWEu¶é ä7±nãüç?ÿŸXp­²“Ÿ^BQù³ý0&BøFÜf};éE@¨FõÅ€ü·V‚P[¶k:œ[ D¢—Ý M²]g¯|W˜tyÇVá[ÅT+$šÿC>íÎÔhR¬2Eo¹rgrçÈ~³‚ ÓÂ@P%D›G15~!D/\(à—áù?Š®¹YT¸E½ÃþÈMjú mß.'ñdþ‰J7«¿?ÅE'ÕRí5ëÃQý⇫¼Ð3`cj©KPr±é>,¿d,)Ëöòú‘»Dú÷²Ý—ÔY‹]]Qž€ÒèuÒðÇf«‘F­¾€>ôÒPPΫ§*EÝ’À¨Å¥³\į‚cÑ_)aÐð‹8\-âIfµdQ݈ðÀ‚jåáîó•sg›ÔMC£ÌðÊR5ºÞƦ’üãà6åÅ4ü‹ä¨Îåûÿ5è_!É|åLåØÃ™É¤Ê8¡¬–JòJ%`ÓÑ”A=Û‹¦‚.EÕ>PÝÅAýìÿ’BiŽOs@©rHe§ùó„‡rQe+éZòn.phªXS JqÚõD'f´ÓYë Ô ëlõiJ³FKTœû×Yë䉟«[S7aéhUï4×°ERASa"­€--›üôq‡¸NtjMk´šòóã’¶¼BÍ?}סVF4«¢9„F[œÖ'ô­…PSgO/¾Sµ?Q_ñ4<Åœ"‡²C;LVCQXa8w ¡¦FyL—\Âî¨Á%.AÍNÖîüE‘¯ŽG–JÉóGO5‚p®²®çª,É¬ŠŠû•¥WÂõª¢Y˯¨PWÕZª¨Ry'U© ÂOªZ4<áŠUPô„«VAß_S¹ ÊpõRt“?[Kwÿ¶«X(;JÅe3e÷¨ŠúøÄÍ¥¢+‘R¥6—þ ëxÅR#D>b–—L…d…Åu‹¥WÁ7Ë+¡Jêô•ïòÏS£n¸YÊùòRLb±\éùûG˜D“%di½øå•ž®ÿí¶^¹q³óÌýí5QJ¤á7W¤P$¿½*B#RÕùÓEäCI+H’+lÞ¥ÏQWô“ä~F\…ê½*9‚ôJñ–ógÏ}’¿ˆÐœVŠúR‹äâz¦A›¿…RH ÿå9m á ã¬Ð7J—¾’ù¤FB<Âÿ¶U”Ñt·ÓÚa»Õ}SL|sý–4·?ܾÖLÈñ[ÖÎŽÖ¢³ÄåCqÓ)gì×ÉÎRD½^q3JŸËâ}íÖÖë]±::…éüxÃx}°2Ö+ú«I2„ ?pANšïµê…¿Zù8Ö+Ò©1æ¶²7ø˜ïÕM%܆êð„ÇÛ[ªPš›Å¤xx`r½¦p!d½¦Ò½ASüD6h0ßÛZ¯ÃâõX܈Å1çŠZ oÅâmX—…yãNØ`Ã`Ž„ .M=Ý7nt¨]`´mºÂârÓ­›7o©k‹N«-Ú¦½¨­/x ü©³ÝÚ-^¶U²öª)¿Ä-ª£'ÔŦ,&·?¨¨}-~Ζ¾®°Ð~QhÝÖ;¥èº¾€þçÛ7‰Î¢½^…nlÃS„ F”_OVˆ­*V6±b±ÔN®ç‡vjç¢8ë% Dµ½§äVu»õÞ﫦(ȯü8e½wÇÚ)]gò‹xT":X§$ÊŠ ýZ†‡+§:a:ÏO K“©5º6¹[³hu:y:R^ •xÖaKY6œÏ&ñ.òN©«n'¤^ú+¢‡h¿v©CŒ_²vµ¶Kõ¥žVïRO›ûókMí×%Ìÿ´þ•èüAŒ]&îv·ÛïtKt—ïv¶ù·Á%õ[g’æ1L¦ZIG“Q{QRºIoûy]½âÖkÔ})C 2fÖ7JsÜÚF“d®©VcêOá“gˆ‰º:É)KÛVg,qUVŠ=Mäà%cQ–A…¦WÂ󌩸ÏDêÒ•ù"yu†PiOŠd9Ñ«ÆW2•à@–˲”Í"¤·ç·íÖSB¢ ŠÔ~Õ(ή1Ü<•š4l-HGG¬@cr£TC ’Ar«SHíFˆÛÔ,3<¥Âó²°ì ¦¹–±Ÿº!êÙ–ÂÎúÃø7ÒE|øýû¿°/ôñ$ôè. ¿ÿ[ ‚„p@:T.ŽNtœ‚1 gŽëh(S÷ÂÕìþ8`·%Ù‰LÄ@òçPÞUÔІO¨@+UCiÕl#»ª¤ KVzï¾44Gy¦SÅñ%¼Û Oî }2Ó×úî4uzÐß—…—‰áø­7!¾ðMÂt«6‰Ñ^Æcœ&y•ˆ’% -™2ŠÏßs%ø8ÀŸ÷ê.¨´„ ¨@)%óKReè3´Þ¸àn×¥OZž–ñï;çhûíØØn6^*”‡0m‘u(F’Ù—ÑZLßÈå$¢°œ¾‰—!!(ÓãˆüZì,È©ÔBÑ {¯dþD.D}b¬¿Rxçq”÷Wæy ä^)Ìó’Ø+¥ ÑLꕚ+ IÉäà¥iÖà«—0úÁ3žâ6uBÍ,5°•a¤¨©uš3ƒœ‡2ï0…ø<ݪ4G[ûéY³dûd´ñû¼_r8}€QØÇ(L¢e‰Ý’)2ÿ,Šj nŸ%¢Z"UÊM¿)’æñQ"4c;¼ÓÞóì‘=·gkØKkÖø”´Â‰Ø¨©ë8ÙÄoGSþ8™…Lr¨D./ŸUžu"„gÑÓvÖöÒi”JQ&gÒz÷æÏezz¯Bo)õ\z”Ó#¥ 栘”蔋cÜ—„˜€¨x5<"ö׆ü$ËFE˜%!‹gúŠGC%°ïžââëÅÀñlsDFÿxˆèÛ‡t¦@&+{C÷¤RÀƯÈTÁ¬Ò;»¨@n”·ž‚ÖÌ4ñ¯ÄqNò‡J7ÕéÇáϵ¬Y¼·þ™7º9Ô´/ üxöztâ“5û…w“ú‚„PúAd¦$•€Îaç80?][àn,énÓ*Nbt´%‡Ú”½áGw@rç<Ñ3A½·±#aô[ 9„ÀA’ŸÕ˜ÚÐŧ¬mö^ö…“zx.Úð×£m3pé™0dÕ` Œ´ÈˆÕmŒo¥I‡õŠe³”xkŸÄg´ý{²p0ƒÀ B ÊÑ ¥$Ç0 pA kQŒ’Ä]Ì–J.]Ôêô°„a¸ b g±4t»Ç€@ú­±o]ÆHàêŒúÂ$ŒƒÜ`ߦŒ¯Äwa4Æ0“0Li±¯-c$”Ç õj6FOOÀ w©É·Ì¾£¼0FeAŒJ5¡–@ mMÖ>Ø^‹åÊm1¡\æÃ´>=Ëm‚,!b°¯S’¹\ƒxÄh&I¿ÉòÃ{©^MæjaŒÞÂÍ„6 ƒ}aVeî>ÓIhóaözÆù0› ýRLöí)ubaŒ^b˜…a&aнÈRÅf_Gê…!pA '¡§Ÿa&•ɤjséê2W c$õ³1Ì„þ®ÒfZã[¬ÅmÉýÔªgc,œ†™(Ý:Ëû:r‹Kygc8I­zvI½®ÍúL³ÉæJ™/ˆž…0t·¯»H¿tÇmZ2F¼–ÜÑŒî)µ=wØ×jE½\¬j§î(€]ˀ̢‡þà´ YãDÖŠÍ ´¯¾ç€Õ¤]•ÎJÔ† ɹ)Íë b gÁ4j uñÛ _½!¯Z‹b€g^ŒãCs jì‰'0Ïc¦$âìèÃDÒ·5@·ª4E+êgj5­ž®Y+£¦§Z-4Ò“%Ÿ%q–,ÜÉAH¥Í‚E²:”I]œê•è«jåikœÍ?R¤IÜxÌ¡ÆR¸NÂÇ" Ìh8 ͬr|A1$˜š±±øEäç_£C†û¯û/û׿ý_~û¯³š¢|FHÎhÌù‹ßþo¿ý¿ý?ÿË?ǘÐ;OÌ_Dc¤tgaÄgªÌr‰¬úF:·!i‰ÞïaI»¬ÏãdŠ8çš-nÍ Î¸±¸I^8ó ùÁÑ98%‹ã9Ìy‰Ëƒwâ}s28ç&¡(’—¶/uÎM’,—²Ã˜ƒë Ëïc ãNÓ· {ìš×Vo_ªýÍöêÔE½D­íR‹uªUw²Q 2à3çÉ”QÈú…}eà²IË\o˜!•RYzÈ¢Tg´c ß2ûVØ·*3ʬ¢—êŒrQ®3vêÒ®ú²ö†äk²¯tÅB/YÒ5-R(^:Uî¨qG;ܱÁMîïx€]m]öQ%â¨pG•;jÜQ玆pÜaõ;4"]/Ù–ä'œ¡amù2Z]ºµFõ½COSöÈÅ]¯É½JJ¦Ë²Oïɾ˜ºt¤õ 6|‹†¬§^b§Ä*N‰Uœ×›ªÉõ¸ÎìË4èKLƒ^×€/—¤K‘aÿÔ¶ïnÛj5ùSC_~C—Z÷Fm®¦+µÖù(»£i Æ£üã'Oñ២wÅøäáÏ>]Íds…µâúæg­ŸÆÑÉmØÓP¬ð ó,ØxË›¥œ2¾RYÐþŽ Ãà·Zè -ÝmQdÃÅ¢4óh?&$$„Ê%…é?u ww êëXH$E •ŸÏM£u<Öêç¯Ó†ÿØ[ÜŸ†á%4¿ä!ŽRiCõRÆÇë‡û¯øax8; ×ìÌ|í€oׯ3Žƒ–½î]ˆ…|`›#åžyÏ#ÍA÷Þ¹*äöÝ Ð,Ó>•„íêÌÀž !„oÞH뻃ÓÑ™æ÷ðê=t4ÐT‡mÇë!úˆ^º3GÐz§ÞÀìZ§C| º¿þúÕ³µ d¡ø€é—+xó>³-[¦&pãŸ(€Mß°Q¾)D8H…[“•ÓOc`iôüD 3ŒUÞ7ÑÃöÚ/ä+¦‘ÇîÂ80¾1žógQùnÒQ.êYL &œ­FÇI‹j鑯l¶ç%@è%yžX’‡›ùæ¬ÔD³©¦c\©)…`ð9=]8yÇUZ>–Aýøp“óþæn)Ý) •)!!'’ü¥Ý¦!^çš±** âòbÇdÏF<)æ¬,hÇ(]·, faü‡bÎÎ*@ødb¹2ÍÓ—ႉ9ù'—>Ü:o³G ÃO—v½wa—ö «$¸*%eì޾Σµ?E¥°¶ˆè£¤ø w£fŠHšáÃh S\~ívÜïk}/À>š?®øÉž 3²öæÌ¹töø‰t‹‹vêxÜ'Ä,WóNþ Öµ¶>)âsÉh =2Ó÷¯ˆ®µàŒ8Hßï;NÿG6\ÇùÀP#£Ž9À *ôÞv`]wPÔvý‘K“—Ø Æö™fÚë<Ì] ߃€! Z|p"ÑhšX4Îðf§ñóø£\rža8jÿ§_ýðÝ¿úá»ÿñ‡ï~óÃwÿ¶³>}\»ñ?|÷Ï•@ƒM¡;éÆB%}(ÚÒ¹fð'1s‡`jŒø{=¥´ééºøMD&óè{á«ÈÊÐC¨P[RÃñ |‚3“£[NHè&¼Sš]—‡mößK2‡h“ªè\¶NAËØÛU™µ%2ÛÒ´çæ€þ󆿩905n9ì%x#´äŒ_Cä$C±šH Äã”"¸Ñ‘W؀ёsp:î‡9Ao4ÿhÞ9ê§ÈZÇ¿ô/üž¯xÄâ²ìšI©s~íà\°¥Mù_lî'Ç]K!Kd iA WÕA¸ "-‰ ¹—`És4ô§5S'Yò£¾³ÌÞõ~Cg”G{¢ôˆÒHê‰fmŠ|üð&Êù@­0ºÍ-ïÐÊ›ìHI¯Ð>Üvß>šƒÂæàHò’®øH#> |iÔ(FöNjà’³x#KwQÖwóF‰Äd*s“¥ˆR0»oßÝ…L@g¤kVpBbV*’@£é‹Å#É% ³ÂÏ.#u‡wW‡Ðv P] š;²D-Â~+J…¯÷jITYŠQ‰t¼ǨD×ÎÒ„ÓˆæÓ¨ÉTi•*zL6œ&ð%äqŠFÞÅ ½½wUwè]£:¿#è(ûC膴}ÿìæó6ô„dz¤©©ôùzAIgú,ü±1-ÜÆaߊ"Q7bBUDDC_Îbß“]gÞ.z;Ù-ï3dZOXøÖÛì»l—|Þe‹ë|O ý+IàÝ·Ù­­-‚Ð} _Š‚°’Þ÷ñR ‹䊭‰H… F×fè`Ãl¯#?TL`e¡†T¢8q²3x©Ô+i¼ˆyõ5r·™•×+i%c¦ðÕî(|$ôWbN>GíäeG G±Åz‡vâ ›IQ^Øú…›_]ƒÕš4 4Ò8Qð+q] Œp£â ò†./LË&ÔTäÀîûAÔŽc©Ò`s ‹Þ¨4Ĥç îåÛ`=ʶÇCjRÊ\óyV†®YÁì\6Ú›U] Ï пÃb‘Ï$` aN5TЩò7áéÂnWÎt‡ðC:†8†n;µ¨øƒ¯­ÉØEæ/§æÐ¸¦Íº£jlô›Í&GLIg¤«—ÊnIîwɤ³Êfé‡bñräÙR'‹Íè(:áŒR*Û6ߦ½‹ Oç©äTJóñ$9?çêû¤o²†®ymKSr6 åÝhûC6×ÙÚ_:jÛ0èâ|$†êUÀêÅïi™\{kkgïU–&È‹ ¯ÉSÿbN€¿{§vÙ÷˜KJ,ÛTÅb`^¸15½dÞhl½xÁgúxFgÿ8­¶;ßÿzkÔŒÓ[ô(Ïñ·{¶ûÿ{"Ïð¯o.¿eÑÿõ¯bÑpYcÑ¿û?þ2ÿ³ãOQk‚ü·¿úMœ„P,%a ™Ö§è!޽'Ô%'Jÿ¯ÖêéˆiàF7Ç_FxV1MÓ˜ìTÉ?ÒãíŽûÙ,£ÿáß©geUIe‹=5CFõøwÙ»À3gx·EZ¨ÑnËs$=X‰FŠìè§e6dã§)»8òxüô'*c/Ò¢O ?Q›:þáCê(Ÿhf?Ú–ÀúrlS „ÂÛ¦³Ýeß^´ûÀ$6µöËÄŽlzз$ôS?A¦wg0Mõ KL:μO'N„žuá6p‰Y‰q!ôÝ¥½ÙIàˆâ±òFb½µPïpî5Gø£í@%X(áÞC¯§›IH; -®[Lïšé:÷¬^t0B\WNðÉ“§ù5ŠÅÔ©‰PÓ'³¤‘šàCã¶\þŒ`˜ôµ® ÕžvËÉÙ|vð"&8¬ÚIB~©‚’¹ÒÜ¥ÒÚß™æeVžô‡Þ4§0×ú ó ®©^WZj”þîÁ—±Œ5-úˆCçËnEOÄü*^•Êú´¹?û¹z‡lµBŠñIL —No ð'E3úŽÍý5ºŸ^³ù} jV¾´Qª%SxŠW½òA_%”>ï yGWv“8PËoóÍA\à@€>gš+äkO™2iiÊÖà%J|ÙóY:LŽÌ‹þ”¾Ë7&ËYyÍÙÚ z˜¥ ¿Ga•W;g¼B)=,Y¯Áâ+ô•_EñU§’§ÆŸ8ü1gô÷ª½f:ð¨CÇ÷û.Y<-ZóÌ€¬ð܈¸q±VݧÕg ¼ 5åËÁ[ áKZ<ÞžÑé³dTõs¸Î©‹dîÆ“-Ñ®Ø8/ãò®@´*i´û’#^xÃ!( ÎÆÄæV[Ë"”ïp÷À™ ‡Âû.ãÈ•K€'PñÕ´úøí%aÖÙeÆfˆxFínj®@£ç÷–ú•Ý›7q•Æ…yy)h\,N£ï_¹ÃP Wý»H<½¾a%!Q&d*ã¢2òF}W¢2šŸŠcgSþÖz »kC”¾ãöÌq$ÊR¼B„¤ •ÞsK8Ç Ô©Ë!á}Dy'¾¼ÓN ¶gÚCoDß"$ž$ä¥j®œo÷Âÿ%i=—þÀ¥l»àKÂç·Òèݨ( ßñzž;œÒ€ä¦Ð«ôX×_ ³Ï…‰dˆÂÞÆCRÈMšÑ{u§¬È‚mpSN&ÉuÀmVQVCÉÛ¿”;aT (™ ›¾ÁèF³Ã_7³LúÌäé]IÜБ»®THŽNy¢RrÃî;Z$KÑ]S·Šø¬\a×é“­döZR„è9Ð¥zƒ1òN|Éø:E'3R)eÏqeé7†z¾O^W)àC;X(éÀòæðÆ1x]†‘°’i0Ó'õÉPO™RsX”ŸaÝQ*]N¢"³÷ç>žÃÐ±ŠøIü)’Uî‚J$úþ©g›ýHªø‰;±ÝKÞVú¾›LË¥¦I&»©—¼ë¦Èij€¤É¬;Lü&ç ¬³÷£Mc´Fù- "ÇÕöx¯9€ë)|ЕTWÇQ«+»3\“®g,$€xRÓm:¶ër†‰+¸Å>™«”úÇïW“U¨L…>JäBóÞ|€=œY!¹èˉñƒj½d+¥ýíØ)¾EGJ[f×xË2…¡ ï,amãΔ*ë„J2>{¯Éãï5!%/¥„z:Õ%Ž^8F¥F­b¾eX ¥Ob uA[n­x¨m‘`ôrt61Ñ]&8†çFG¸AÜÀ¡qâR`ö¶öwÊpÖ¢æ.È<Æ#½(U‚Ë–E­Ýïk£³¡ë¢ý„@Ëà`SÐp"XÐp-…#ß^ŸÌcØÉîË1Œ/É`»‡î=p‡ûAmËÚ~,œÆ„Zœ¶_öÔìtœÇܹ²òxV"áá7ƒE'OCÒ’‘Ø’RT8$õ®H“>¢Ž>:öxòpgâ~IBB#BáéŽCHeDwáÉ9µ¶”afݵ¶áLÃÀªN`«¥ty‡¸ðáA@‡}x#Ô¤kø< =_Žb6TI¾”;ÊKi ´ ÓŽI/6æýXÛÚr ²°…&[Ñ,}¸Cfàúz©ôLg7•±õ£ˆ¦Î'dc†Ù‹Ã©fFiWªR–éªï 2“…Š‘Ì0ÇI»vG~dÂId㬤]DW’ˆ•7„ìt_íìnïlk[ÏÛûí­W;ûÚÖËöÁÁΖ(‹8¶€©¶¦±¶Çì/˜³ÖeÜO#¸íÙÒa¸‡éæˆÔ«CÚÞ?? IÀïe¡Ïñ÷&ÊJª}^v)&572rìÅе†G2Ã1Oð÷ÝìºwÃðI Ø~9Naf…£t*!H)$rG}=ál< Íq[È–)!&!U.©}"—ŒÆJZ?Rèx³E+·¤“¡Oy•Ñå¬ÎEŠ÷3 z1ÄTê*E&°<Ï(¡k®Ñj!ŸqUufëA"lEŸ2ê™ùlýÔ¦«$,(Ëõ˜Òú4– …º‚=ORQêñ\ÌÍ}Eæ^¢ŸØÿ ´^Eª³7¸ªþìOsÿ]ÚC·¼FõR±ÚXA:æÈ\­Ý3 ة׫ø%ê¬&ê?Ók¥F­ª7ôJ™„ëjMÿ³ÒRrxÇß6ÀI’CßÍ‚»+>š¹?’?P’ö-pG¼TÍðkí½ÍÀ~­Ù ¨ êÉh³?{=<â~ýêi‰YØøÃ Øý±ë#n¯HÒ\Õž“uÏ{\ù`jh*èÔ{ï†Vé­¡Œû$ÖhkÜNÔëô ,TÊàÖ.ij)Ï@Šd}– È:‹ÖKKhéå,YU=„sxoàž°³D­ßÃ[ äŸ=ì÷ð%\ÍA˜?Ç ÌSX·™–?¦Æ˜„I#´ ;™Ù$_&a“e†Xa÷¨¨=]ö‰yqÙw Z©®oiW&*{žã2{L˜®!™¶>Í™?>=#´H.aู%“YSâ–ù˜„©•Ÿ 83‚^Ÿä‘EBJÈÐÌyAŽR0Àõ}w­<½ S† °#EÊd «F?Úpf:t) û±” ׌¼ ’Y\׊¥r¹º¶:ðn V –W( 4ŠÖ@ “iaA AVØ—ÔLÛö‡X©+<—¤{ÍlI™°·Üï_kŸxËéO„.µ\*¯ Û˜N¼¦6¶ü>Y#mn|×<„™¡‰Ï¡ãëèµ ¤U‹\_EQVá#(<>H}²`†J‹nËVAë²§!{d³Óõæ ï?ZZ÷´ÍTBç7͹ä rÞ¢l-b¿Wè¥&˜ñ¦§$L”µÇwiåíö7J.kÔ&³k&j`Q{Õo43Siôy‚ hŠ˜Ãh ¡—¤›8ë hc%ÐПùP_¡7öÇC0êaRaçÁ¸¡é™ †ßÀ~èZ•zè ¡[€f¥õ}h¤acÕJdmõÍÁ9uN‘ôSQÞ’UpzµKré†ZjÔœzê«"´Ì$2?Æs"3®¾CÂé -j‰M$Jy¡–Î0ÅD«æíèŠKÛBB¯—¤~‚'põë»qIõ²M¸„…ý¬7 F’•ZÅ-êµÞп äá [ŽóÅëF½V«ÔÖ_t¸™G5© ¢>‚^â"µAÑÿj¹ ¤Æöð$|]ÀUâO„Nð V†/ ‰Î†¤×ª2ÕŽVâ£øH|EwU&ô†Ì7$hòc‹ÈË´a„e;øCKôæu¹Î^ÿbö‰@3• ‹WëY°„\ñ¶R¨M»,xHI¼¨¤:6êú´+[‹!bc1­#Ë2SÍ[ˆ‹’am´ÁÊ xšËNþÃ'™–žýD½+‡ŽOÀõ‰ŒFI „7­„`Bñ“Y ;„4Ey!£a%6‚¬xØ!íùËSaøï¾[û»q­&¡»:Ó†ªd¾G-d“gÏ DøXÑë=¦»»<œx¾ÿkßÿu˜æ÷ÿ³öPû’½n “J˜‹ŒÆÎ5§Í»ã=^[Ó`òŠsÑ$ⲫ˜mGžÅÍf:þÝióÖxÖ&×7P±²a™dXtÆÊ´ÊY;›m͈»-ÊÓäx}®ž€k¼ oÖ;b”žgFkC÷÷Ñ÷Cçõ»¿ü›Y={&ÿïvÿж–™dµL«ªg5ÅŒìdÒ¡ëÖwÖŒ¯ðÕ  q€¯ÿî;Œý¿þÊØ‘"HÁ×O/&¶4}Bæo²ynˆ¸ÊdepXÄQ™LÀ 7|«àpˆ£FÃ[§]1™KOC̬‰gCãÓ\âijþz÷ ìì⣙\ap” pT€pT!]pÔ8à©sÀÓà €gƒ3ž&ŠÀØ·Ö­`ødLg¹aÂÆÀbŽ¡p„a„“Ði 'L¡B¦«x›Ä›jqp)Qžr)LY‹ó]b$ò: 'Ÿ BÆ(?ù%鞌¤¾ ÄX¼Õ •él&Ñ—8—¹g^9ˆ„^;£H2Â:°çÆ™ññ^tc]­ 5—º‰« ?©4页œq–7¾iïÉ$E™QÁ´r‰Â#8¥AÛJÜG€¥3š„‘$C6´Ã—g¾Lc]¾”èÒB›e?^˜™GBI«Ã&Y”' ã«‘³'ƒsqù±¥ç¼¼Å‡rĺŒ“µpø?ã½9À?å9bQ$»Ó¤h5Ãüeþ’¿¾ÇÃË…j2¼Cx«!ô|zйGëIÝ9$íÚøÀ.ö¼/ Ð^Ù¨Ô^‡ñŽnf;S;Þõ—ˆw) ̤ÖúÑùm-‘ábÎ,æž­"Ý ‘Já¾þúk^aÛ-³ûöÝ“kïëýYå·Ø“LýåÅà½Ù÷œ¯†Óa·Ï®É$ò}x|D5·LØ=AÓ+ô–sÓ?wtïÎ Ýžà†.C©Ì ü‰tõ.ü/’œ•LoVáö@ÀKIt7Ú, 8/…pªë¢zͨ! ó¶Lº-+/Œ'—Ôøb×”œŠ[õPŸ ÕZ"­üRhQÑNÓ3Êâw„Ï-AE˜IÕOÅM²°*n¬Y7d»“áxÈ]sÆ+`ÉøÎeþ—K'½QV$§âV=•­ä6õ‘Ä’›ÄÂĶ—×Ç2ZËéd±%õ²3rù{íDfIè'`ä§ïVMË>Z^ É-§†ô–S“ÀŒ\ÿ¾ @á觯œ1–þªé±9£¼n$§âV=71jɲþhrÉrúhr8Rÿ¨“³eü{d%ó6Û5ôH½ yyÛ}+»UOÄ÷6N³õcÍ/(F‚ XLH_D¤ Ÿ/z!(µÄ¢<·þ™Îÿ0mX¨*hŽŒYÂÉ…þ3zãäÂ[…äB°B‡‚fÃc‹&`7lâa£hÄУuž1³A!˜Q3¤è¸Gñ,º1ž]†Ò5ÞÜqGº9"Ü€n%¡b`ð„Þ§Aݵ)DÓ=÷·ïÂâ§‚îëšq'c ù6ølÀ­ÐÕöÃüÕ?þËÕNüxŒÇ´½¯ÖÍ<ÀZov»­õ;þñW)@`çrðÐêvÁð*©oÙ‚®j­ž½ é57RÆØÏeáQç Ü5îÒ•ˆ×PÌlî£0Ù#®U0öÂã;ÚRh+98Þlá½"³ Üó‡¬nAPƹŽ@âáÓÄ1"7Ÿˆ>Ï™bM¯o°×á©y~6U‘ýŽ$ž™`:¢‡%~úÀ9#U´f~ÄTçÑü)gz½Ñ›Jp‡}{’‚¥8¡êqaŠ–¬*ªœŽ ™µª1=̃· ß&=9Rr…¹¤Ç*¼|¤÷Ç™'ã½R6„zC¥.·1 8ü*¹´#„_Ô†¥ÇÁÊ%=•J«oKNÉø&š¨Òp˜J ””&=CK+ù%§dìçÊ—/± X‰ß›6-1äš–)»->ç¢òCñX;twÚ* ™ MçN‡{Ô¨h¤%¦0Ô…æ ‰d¾;fœoœXÄ+gOŽH³#±Ðî(ÜNœ…Ödá B2M5ŒTSm¾E\TŽñ* aÅÔ•ZE4ô1/¼§¥ðHL$NM§õã'êÐI£?:é;Ù<>„ –­¤Só§àÅHädè¼Þj¡w£n«…)zG¤Õœ¶D¢R+Ô§ù&—žÏ‚aùç߬aM®×_„+ÇÙWíYG%$:·q‰°HÙ/˜ýщŒ'süB'ŒèkäCFÈ£%cŒa*¶þQ¸ÇÆø¶þ1#-w2š'œ¢˜PLöVÓ-KO…æñ³g1h)ìÓhcŒ WùCªjbç7‡Öšc„ ½åVÓ];;j=<ŒÆÜ– SZbïÉçâ y¼Ò+iš€=®®K<Ç’oïVñHQ°ÈDƒ½d}$ëÓûø²®6TÁ0*¿+ƒH,u¬ Wž®×õ)„¤ê ¦t¦µI¸Û3sG¹ìí5»í(Et0‹àUCyàõÃ0â}È‚Ñ@Bo j?ça ßñ`[§’Ç´Ô¡åìç‡Ç˜Ÿ…!‚{±¼Û»}ëMóF¹Ñ ÏŸÉ-þ  $+ðv¶»N3 @8 ºÃ6Yq…ø‡4¬}$yä_qœä‹Ã±rH?'‡´ä ä/—Aµâ!q¼V4‹Ê494ŽÁ ú®?ÅQPžFþðÝoÈÿ 3Êð+EÑ[ô·i<0._ËþÛ-{ªAùoõTe;¼Ä<¥û\ÚB—¹Æ“BOð–è¬ þͧóå@åÑÔ-µçªoÀVJ¡)â á‚(܆ gr¸[²‘þÈàfúMܾ3qØ3é¬PÍ^9µ£îŠDì2OãÌ‹fHë4e©¬ %ÏÌQ!ÔŤÀޏ@WM]±dD#¸Ó-Mù‹X2(i£+ïÚ$)Ïì3ÓTWxåö&©@¼à ÞPSŸú=¦¤Àq±‘Á1ªðHWC¸>ˆ7!Î\óRë -ùCóÔý Á…E×ö^w¶†þ¹‹÷mɈM“¤Wà1öŠ9Í·`c¸¤“R>|­‰Çb‘ÐKœ¢`f»Gé8]ºmC$ƒ‰®×£¦—¨°]fE”ÚàÔjQ@øÑÜx’Æš‚ª­)½0 —@5ÝŽi¢fW sï‹ÔœàÌ÷¸Û ÷_×B»gì*êHë™^?€û¯X…"Þ)%Ä®Øß$Äà>©!xƒÝ\Ðx›ÞÚF;òsjhÏ2Óò²¬ÄT£-1 È͹ QH„hWÑÕ@ÃùŸdý$ræö/YvqñOïľSÈú‘®)õ‹âY;1éyŽm†Û@õ°/×Kf#µ9!¤¤òJ@f49¹“yéµdñ$ ss'âà:æcñæbîaÅR9EsÈ“¥”ƒHmi%ñ(—’©@>æH3 ¾íø” M3Fj:Êrª!›Oé8ŽÔèÃAôÅ 'ÜNJU¦Õº“G :·Ä”ÕZ´$z­e:ŒeP%<1&ÖÑ.ŠØAÍ7ٷþßÁ?æ±Ç<úXŠßcÈ{ yOE~ëÞ.q|>tÝsÜ5ª4JÊö-.W¸£Í1q´ÂÆHÃTw…9¤`˜Ö¬0Ç †¶á ÈÝ)ù8êÌ‘¯“ã ß°Ü3ó½ëh¾ãô¯Ñ²ZÏ |a9O;w/GÔÞ˜G-³})¾5~²-±O5c«2†f„{røúÿ·ðßÝ)Üÿáßÿçákn&f2MyfâË–ÉrD²‰Ì#5žj40yÀ§”T,IÍÊÜ[ £»PöP4‰óÉtÞoa5¾©]ÁùêH»vG¼q#šôù>p׋¥b Y†(›ËvÌ‘y®Ú’Ô-i“Q·àˆyÖ±q¯*^Rí ͳ /BM—ψ¯>›ž^ªº‚à—djaFm]nTeå'wµš-:tç»U5…©d…ª`¼‹¿Dª#÷?ÿ³!ùçãÚ*Ô–BM£[ÕoÖ;÷/8ãËyá25 zŠÜ“î$mê us¸zh×dQR\ ú©3¢ófŒn2\+hÍÀ¡ì¯ºaÔIäÆXÒü«7¸Êž&Ù:3Ï/H3pÖ£‹ ›$ÓõŠÍŽ2_™çC/˜«Rêu›D„eª;µë¼jàGŸJÑp>È 0=¡•ž¨x_VDøœèIÔÛÓó0xßó3’£­w3A²Y™vÖ_„zS,,ªJ ãAù$8)Ð̱À0ˆ BX2ÁŽEÜV˜ aŸú¹“‘XOУbx¯ƒa'J´àÆÊr©µ–F._\©Z3k‹’—UXþIqfB¨Œ¸'…3ï|„pù‘4ð袽ijŽ^k4{ÎÆç…#­ü.Èà|D{r2kÏUy`ã÷²Ã}¾9¶Ãnã,ÀñsîøwLýüéZTQI«âç¿0Äö1S%D­ð\nF…µAZkÉäŒÜr .7»hÚtù—$ÄCFóhÉä–%Ã=µVϨ²sVx¾­äy dÙ®9ùk—~¸AàõàWψ§xŒËݼqöB' a²Öaž}5áß‹ø/o_~ªzUßXñÂV†ìïFýÁ¥ê¿ Ð[1^X‡Ó™°]MÊŒ ǼÈâžâ ãÏXöqn™·+{÷ToÈ:÷F8Wñ½«°½+£ìJlîbʲ{W†KÎü®Âû®Âën"«2ɸ€Çª€ÇJîÆ²HÇ!S{ŠOÄÁSUÜ·§ø$áUáUi“¥­$Ë`Âû©êU}*,{–A ‘PÈ~ƹðGX…2ßå°"èÊÜï©^)Võ/O³á™ú÷"þ0Ý”<Äàcy€I9ÌÏ™æ^Õ7V¼‚iæïFýÈä^Ä/ÅG™ŽÆÇ˜ŽtB‘¦-¼I51Zº1IE™àþ(“WŽäß‹ø“˜Û*ÓÌÏ™æ^Õ7V¼‚iæïFýœiî2=¶ÕxÅ¿—ÖÂ{aÂÃ:‡]ÞS$6 µ’ï*¾-¥F¿TÚÊ®·éñ’:PæÛ’|{3 ÷HJ“&Ÿœµy²¼‹œØjVúj^|53½Äþ[0©Ví@ÍÐHî«YRkÇ2u {€:|ê B‰3É畊½‡Øodìƒ0¿{/Ä~KÛ‰Û ¡7"Œ¦â W´6ªÙV¼,vOQ´»‘Òê+¥¥Ä¢7™ˆ£qT"ŽJDj,ô‰Ž;¦ˆWÒ!X`OlØÝøL•ÞÇ…~ÔØ‚`Œä~Ç´ŽÄ…8Œ±7ºšáàïþøû¯ðwŸãïþ~ƒ¿ïá×Dç~‹ä‡ä’¥®`B÷/­w.˜ÓØÖà×Áßü ð÷ þ^ÁoûøûÏð÷ü}¿]ü}‡¿7M“ 9 nKdeôÄrÆAë‰qE¼d¹ñ&'*áì¼»J"l-öõÚëhØqв×_xbû ¥‡ùk‘‚¡×!c†ëéR¡×3&ÜÂbÿ*ô[Õ‰mS+¯U]ìÏñ×z™ü£`ÊÅ‹‚ßëîèI©þ@< aÐ]ÆŒò‚ŒÀéµX®H|þ¡ö ž¼zýê™ô‚jækÁØ FÞhŒzØÖáÕy¤;t/û¦í>éþî/ÿæ?Ë…X8¬¥×‹ˆ8²™ŽÛË®ŸdœÇJO9 úþ××7h¤×Øh¡ø-ñ>l¯ýâhÝ“.¾!Ðé™÷ËóþÅÀgÉ`~a÷†'#ö§Ø‘@ß÷ÏÍ¡?8'Vp.äÀ.õ§}âÔÍþè´ï[f©©|bLLR5gŠÆå»›PäIè†QY­\[ÜÜleZ¾™ÉGϯüÓÍÊjf£µ™]ÝÌ´VUü9­ó¤åm£}–ä[Íìmƒô>_|F⻫c³áç†ü<¾~jL¬ÍM’niõ![ÉôÜÖêUæ†TÃÖÞÓ~–~ÍìªñÜØ§)Ó¤[›gvoËõF4¬|Ë0žlÃÕ°ÉF´è__—ŒÝÌ-©·f,lÔrÙÛëœÑÎ à¸Û‚+ƒÐ7®'4ŠüåÑú-Þ~Û˜NKÏ|ÈfÖuÈN1øòòöKwzT4“½•#¢Éìd³ôê꣭Læ3¸ŸÍæIž¬¸¦Ñ͵ð;± 3ÇM£’[/ç«û«$¼š…fH$pCÄE±ÝÊ„(­U‚Ęç¼#âÑyž€­î]„„ª¤¥›U@ýS ]qyš]EÊÙlkígkkƤY{ÔÌU,kÚ««?#Ÿê£fö!Ý_Í’ößheV÷Œ‰ëAR3&–~<&~óÊÐù/ónëQ‘ʤWÓ•k¨@b©bú$§í&‹’b¢ú,*§DÁðJ 8ûÛ«âúýð(»JØu¦Ó[RÑ Ó2@¦Bÿ6[.O3„ÆfO)¦å&á’c©½oA!Ô>!=ç£Ì§ õpV[Åa±>%lÜ‚¦­\KIv/ÖhYUܘBe,¥ÕÆ’¨ŽÑ’R?hƒ¬å”Yš»r°‚„Ê>«EÝ€"”ÊpŒZl¹×[{ÙLÜÅ|7CfbŸÇcûCv¥ÙlN‰[[· òCXzN&@9¸ùUƒúx¨ƒVæ3c;—i]d‹‡ÇÏóF4÷zóYvJäG †$ý @‰úúûˬñ @Êøàá…ÿí=¤~0¹Mn9¾6µŒQÆ1²vv2™ˆ{îïÝ¡…‡ð… sH‡J›ÄÃq; ñÊüÍy•«Ókx—üMo2Æ×¤z<ªT=2&•ª±S{ô([ó÷„ŒÉîÀqy²lf q1¯¤O¡ð{|%RÅ•$McüH7^“;ä_ÿQÙxIþ혖ñZ!b¼$‡©ÑÃÓ@ÛþÀMgDÅ•“€WÕ£æçSÃÉB_H¯±=Å‘0 3›ºÒ„ê–ê’æñó™¶ çúÌ=}tK‰mæÙŸŸdå¦O™˜ô² Ý¢>Jvx¸ùtó訋Òfdæ7¹¾ZyOnÜ¡BÈ]€"1C…Yë! –7°©Îx$Ž­säxKÒ¶Ç£N!Wž zÖ ÆÕŽ…Æ1hrGØÜNºµ ³é' £.NF¨n#1i&±ð2Óz˜ùÏ?^É”³­uñ"–¼„S—†)8±%$1)Ü-°0õn…t~“ìJîyK{H"Móðø»Ù¿­j9 ›½ò¶MW¶)ÑÇ2¢ÙœõÔŽ‚%:j¸´aË™çîDÃæK*ù€]u. ¾ ÔÕ5QW"=Z¥ƒ†µOú§áx0ð§ì4¼\Íi€R®Éé‚¶Ì*çêú™ ‹ÐÕ‡tD+eš °šhÝN–uEjÔ'¶¼7´÷œ&~ÄQ0å÷rèÛ°‡€7¯7²|ã,àe àµû÷ß±ÇÍ„nÐèlÈ^Ó&ٲƧZÏ›PEgþ&µÝwÍ!¤0¾ÔpÕƒOÅ–]xR|DÅ„p +¤·tqéè~;†»á¤c¤¯ÏF8¾Ö)½'[„1 Z mõ„Á»0¢ dˆc¨Í™Ö“ÿï/~ýפÓìðœ>÷‡Þ?™}ÔŠÚ=Ù Ïæqü¡‹·Œû| åùsUoEñÓÕ&-²xÿw Óqº3t[™fÌ,Óâ‚%/ÛÔr¨I 2„¾<‚A–Ë­-‡JV!N¼AÏ_Úû­á+®mRÒû,| ü̃È.}òÆ0¯Yšƒ×±µ !" /‡Ó¸Á¨€MÎÒ§³ÁŽq%´”߉mI¥4t‹½pfÓ£[Ó^]°–>á€wîúG“êR ôx±µ :K"3^~¶ Zü9˜îK,¸?üeäæ&ǰfswµœ\¢"”UC©÷¬ñŒà’éñƒ¤VòîçbÄŠ f,…­ýåpd<_o–D'¸?X­_J-€#N|"‹pÎVôöíÛw©”ßr+¨ßÏûÜER½+­•°þqÈŽ º{xH¾_‰†Äé—Ͳ¦+r'þ£H-,0³IM¾+ÜAœÖ²’yû[SÖáøReÂ’àlc· ýã½»m*¤§ÉúûVSûõwKénÑÏÏþVÓpºµÿòY–õø‹&pIàÀ¦•Zh3Tû} 0,EMŒ4÷•‘1èŠz:”œr¸¨ÒÚr ²s°ÒÞ}ËäùÓrCÇËû¦ÿÖED|¶„L8UcôV É÷guaõý2䊗±º½V›NûÓl2šÍ·b6±|‰?ŠDßÜŸj±M¿ù¼¼»ÇR)m*r?šÑ¡{ Ô¤ô^ÔÞ*Î}KåÑò¶LÂ}2Ø×B3‰æàÔÂ{¸Q>Ùé¾ÚoŸtÚÛ';[í½“'/_¼ÚÙo¿Ô€sw þjÝ•µLçÄ lóÒ=ñ‚“¾7r‡x‡ƒ4Ž˜CN^Z¬·÷—“ï¬3Ò|pê&(V ƒNÅ Ú“ä†ü^hãËÓ¡ ›Ž#_\<ÔKxÖr{°Ç†WfÏÁëéÞˆs|7€;µC×öO¤¨Ñ&äH¾w[Ô^ 4R\î[šmÀNá…ÿÞu`Gʧ¥UÅ}(0ßÚvúæX´%îΙéãsù¿4‡$æÛu¯Læü*0O]â&9ï+Rîã‘@ Ì¡yqò¹?p8¡Ýqp6fîÿÚ¿°üû90-óÆž|;&R›–åÕ‰&»X¹Ó,W™£F÷}õ-~çr«¼Í•æhð¨Fƒ9Úê¨r¬jùsÔjôЩÚa§OÕí æxF±êÏvØë }£ý¬LÑ·9ÁíJ›9jMŽE߯è茟N™ÔÛµwl0G›ls‚íc¾]mL±+UD‚üª7Î#‘Rp¹fÖVØÝÌ]Ø_ÍfóÖÿ$÷$¹Oø¶3éjFã¡[à~ÒP³±xÉ…tÆ}sØ¿ÆÓÑÄuhâ¼Ámû¤`máóñà—fßTÚ Y«z=ïdßCž×¦hUçЮÂVó¥ë¸=Ós†oŸ_õ“ÿÔñÌhjÜiP:¤î˜TZ%§Ì²ë²£Øº[eåÐcQ¥^¥4Å|î»§¤ó&k ðm›#Ðì‘zDþ­'Þ«ÔŸé;Ôð+q4BGç.%zØ/¡¯äFym0ÿ3ô/°ó|Àì3û¾j[¹^ /à×õ™”s_³^ -×kS:Y7àÑxR²¤ßwTBÕðÙšz­*¹ka[Û&5 [«±{û:Ö™‹]·%žäм†ë¸•c-g™íQÁvw^Šã¼«3Â0=½çH´1KèˆAÄѬk:HSS¬ëqLE$K㤙9Z.Úþ=øïþûò«Î:5Çßîhá¨'xäÈ{Œ§7À“v 2…Çp ï ¡ÂƒHø4qØ„ƒ5vŠG¾âö‡p^±³»½³]Ôvý‘»É¸$j€-LíÜzƒ÷~ÿ½+™`{a޼Ïð`›qCµƒÈ¬º§½_Ù#ß"¢x¨•Kú5Õf‘šà0û6&NÏI_âô¡Ã‚Ù¹0N¶Fí“>LJ¸‘_ÔR*Ï=¥Å.=‘å“~Ôä;[šô7#yJûÇ,HpR2ë[á=-Ýß¼?³µ2š‚¸W¼‹‘†TOØé__€) XØb÷heGïµg’ÎçôdolÚgc÷ä9I÷bÞFÎ|õ±‡RÏ¥s_½ÙÞ¢Ók½DçÐ;åmNµTÞ*¸XœÁÛÖ™?4ƒ ˜õÁ\Ó{ï'íóñp Þ/È8lN.H%=¡£¿uo<2ýTy{Ʀã:_ltø¢bgƒª±5²&nI ]6!ÃAÔ}:ʇMNýO‡þø’ÿ8¬þ·ÿéýU»³µZ,³ìå%]n 3pÿòú ƒ€$;¤ B˦¨íÎïþÙÿ@1áÝOôñi‰þOÿ» +ºÑ@‘¥â’ynr}³þà?ü?ÙÆ:×a7^Pu–Ùî¶}lݘ¸:^Jù¥7bË,C\¯¶ˆ¬Ol0úpƒŠ&¥²+<î ¯kQ7-õM5h3Aõ›` "±ág…†ÅDz*Ò?’Éá JE$ð’NC±.v|Ÿô~ƒÐà†¤&C§äÊlœp/ü_z>‰ôȉH*‹ISèi{÷1Zo®ëô ÉžÙ«O?½¾yLÉ 1R÷Â%ÝìùýèJ A–5M\64«£@‹ ð{„ISzð:*ö³r…â;= Õ›v‹ni”s£lnNþ_ÒýlŽ6OÖ¹è©N¼U¶Õ>Øy¹spp²¿sðjÿÅÖ«"ôt—0­qI‡B§*8¡…Æ^†`šxC7ôl¾«ÖÎùa¯´'„ö›€ÎT¾HµôEMÛö¦ ´ æ`ÊzÙœ¾c‹9¡²óÒ0ÄÕ³î %²dÖ ¡DT•¸-E¾üA’y¤¡ÍË·Bù>t"™’ÃY¦oxÎðb¹?Br2?ï´06-ò<ŽÊXgý™ $PQŠŒ1§”ÅB#ƒƒxt<ö€J"¼6wpûFT­‘̈çä50|ÓŒa)€R VŇˆëÖ4 ,Gðð ÓfÉÏþ7ƒlÙü#)D¾ µˆÖ< Gý̪ê‡ðtži{Ùs¹@¾à¥––´’>B ’yR sðÍÂW-Å2ùâ¿Áy à'±<‹ J„‚mă±½˜Õ¸UΔN#Ð(+çÚ© h2[çš”KHrièY©ïOÓе"°!ƒ ´NX»Á‰ÏŸÃœíÝö—;O¼QAÝÅ,Á=gžÙ$$Ñƾ‹Ã¤Þ~ФÛOÏÏiºí§LÖÜešÐH³¤t¿Ð¾H}g€ñöÆ9ç ±‘˜è")ð8}ÐÐ]™3¯$Õƒ`…Ëöü‹ó•;+E l¶­D¤OйseQSÙù¨´éUžg1uá×üÉôˆÌbÓ£W¯÷¿xqð¦I/v?'sV²ðò6΋`äÉÆìð÷Ŭ×[té1kâÁWH‰Âh<<÷‚³Â5쥅b áQŠ/îÏÔ‹t¦"É¥ÙÎSÉã),:ÕÑdfƼäì©”–(7xW6_$gVŸÁâGJñÐ;ºá "K”Ýá±w”T´‹Q¦²L™qw"ƒ‹Õ½(­eJÝeú.ðrùM ºLÆo–R)o~ŒZy³LYF‰-“QïÅRö‹;Y{q…$%bÎä-™Ø›"zéâò’³‹=N&§úÙÂiةɽˆNï“òýqdùl!6Ÿ‹¦AAÓ‡°/g@X¸vŽKÏžaÏòìÙÎΔ?ûš”[KɬuWnÑZaÑb·ÎiOV‡'Ô½#i7T:X¼]JßPãïè$òÍŒF3s× w¡O&“É“LJÚö‹Ï_¼:x€æ“¤§—+}`¥J_ëá±òã-éì5#+pañ¥—ôÔ¤øÔô"0w¤h8™–¹…Ï~£Æê´É¾wí%Œúa)¬±$”"œ5™Ê,O¬É¹cÌýñöP;Økoí@ yjùÇR©=Õ´Ç3ÙaoIjUäðÙ0 p à0øˆ4᥶{°,£ßÁtô^lƒ‰ó Ÿ5ü>Vj‡¥Ÿ¹èÊ¿a,…å'€±µ7_íoc×r•ÜØÙÛMWéM=BHö*×›•šŸš^æŽ+"Ê7Yø¬á7©ùÂN¯=wëµù/'Ϩ/™¸TLZç«×»Ûí}ÐÄ6¬vg˰ä³R ahðD…˜5ŒÝ‰‘ì¼ðf¿ŸÏò³÷ÕÁÿÏÞÕ/§‘cûýÛOÑ\) înÀ&6Eœd'µÙÌÜdf'wÜàê/b à1ØÚ}•­û&ó÷iöž#u«u7vrg¦ÊØ µtô;GGG­VK/ß±EÒñ|Ù§\äØ1lê*6§ŠÏ'!(²¾Ö[I˜´Q4– ýG]J ¶»V‹g õz¦¹4•‚ Á­)¡ÿŽœØ¢•3?µ½‘«übêgär4éÏ”ÊÿaEù?$¨DBº£J~ȨüûsR2râ-ãà»òá–+Õ®gprþÞŒoÓŠœˆ‰u°´˜óÁhøÞ½š^ãèw0ïÁd4]Màžoà§xR¤s9¹ƒàânœïÆ)’õ·ÿˆí³d+(wäÿ}GÖwâ…òæ´Ë9ÜqÏFÞ”¿çU5Œhx5º­òMhDðÞ y‚u­‹‹ )ƒWä´±ŽMã;oÚE0~/M?ðgýl#á ÷YKÛç>s¹v+F˜=þHvf„aRæVÄ„±…{:á´ŽU£‹Mp€ŒÑ!no3Ç:q¤wAxZæ†SÓ¸m½bá9žªðÔC!:„Z"º¶Q]ê/Wù5$)XVТÏѧ·¬O¢¬G©{Œ[3A²XÞc n•\qªå¹õèüøºÓã@.º&¹¹•M‚ÙìL¸¨Q`~?ð¿»âQ\’‰Áæ’ü½zórÙÙV|\žH˜ÌÎíË×É¿¦R|—Jñ þòOƒ›øø¶ƒ…a”K,WǦñP'HÞ0H?ÖãaŽ!âŠÑã&ºbA|‰ ’(–že°ŒáîßÙ™^¾¾ _ƒ¡%°6dÖQå܈/6¨ÇF…/0íÜÖöêK‰„BN»Ï6ò$Ò‚çL%J¾»ú)ËWÏyæá2ÆÖà·d´=>É\i°ÊVi81‰qŸß¾žJÕÊ­d,ôÞç°u|1ØË;ÁÅh<×FCZdÊNV^¯Òr@e5-´cÒ¬E¬éÅÝéâ-®¨z¼€n}ªÃ>Õaë.w«ä['·A®J4­H‡Ì$ BsºEnÜCr]Éh©y­Sê/"¡ãh ó}P«0 À= ÷ܹ.¹¹¹=îVMr­¥È)«;¬¤szQÖ¤ª.sÜSGx|ò@Až ó°|ç„°9!mNˆ›òæ„À9!qNˆœ2ç„Ð9!uNˆϪrd&?¿Å÷CRËpÀû“¨_|$Z¦%Åâ\o… ºÙ0(.O)‰¹Ô‰4Qê4â"µ nT²,›0( E:à"ÕùàbEÀzFK‘U7ÖäíQìÁ¶b'!Éi\î(O‡üê_5pœE0Ê«åúñmÎ<ÔwèÈ•«å)ßÛ³ƒƒ |cR ºù¡Ô¬á3'ª ‰SÞÙ°ÅÍA3#:ɈBD);‹EX>K£œôá"v·’±¬\íÍ %#X ç‚=~œ9£†¤ >ÔÔD×”ÅF-*ñÎÖY„¦³PÂʼ7°(•¶È…j†$P°øüykE)I, üN;éPµÝH7Ê)Ù€« ´iýúd}vÖ$Ü6ªRRí¶ýöIéy8ÑÈK ¬{“^3ÛÔ*áï3öûœß.(Eæ¯è~Ë–%AEénäžÄø†øÉrñ^Ø›ábáù*|b­ äSÀžz/ï.@ÞS?K•¸”ŠUJl×K”ïû¡€ißCƒyuOˆH#wÈþ¶yÝ6cÛæâF¡ ¬…É…F2¦¨”IðøqJ™”’›>YÁ§˜H,QGQ2ÖéßW6ÈúæW{Ê—oÍfÍSMëjZ;Té¡ÕÖÕÈÕ´vkq|L¼ð3 WÓðS3±“F«øjÙ3‹7‰] ZÙ‡·£Ë)y¥q(ªñp“*¦ŒÅÎ[LÅóeNY@àY\ʹvæxsò8Â3Wq¸‰ˆ=ÞÏèÚ˜‹6¢$~ºO‡Ò­ G¸ƒ‰Àî6t8]ÒåÇ¿]6å”n¸L;|7^]à¼ñ`YÜOÆ6«|ýÞ¡Ë)K—蜰#ß/ͪ±µ*–Ö—© ¶åiŠ˜ˆÛ®,³ Ë©lâæ©eÆ+XÉ }*á ½q_a%S”×zÐ^ªö~ÀÝpcÞ%ùq'Û¥}ùwœ§‘VöU˜^;iõ¦A«MiáK…6xëdÒB0g׸óxü~“|næ¢xø‰ŠñS›™°1ÂÏÎáÄ–; Ô—CÚR¨„¼®¡ãœÁ«­5bí)>ÖÝ>³qŒ»©>y‚)ïnÙKzPs=”‚Êq„‹šiÈhÞ¡¹Ô‹¹´ÖèhY­çÒâpLIžšˆ4=‰&w‡ô˜,Gs+¯Ù\ë ”;Ô´5¨¾l ì¾Á;_åüüüüüüüüüüüüüüüüüüüüÏÞQMox}t¿›?µÏ1©¾ôk‘[Åm~UÅq÷€ÜC¤=¨;{úmUÏ×´(ñÅ=Rÿ±Ž(“`â‰/îžz÷œw72^§„j×7ÐO¹‹§ërÁ×O¢º¶ì-ûZ„Š T…çæ†Ïn½ÊrNeçÌo¨¬g‘/Ü|u6“Cù…jÊLE€Ùò­Äìžx‰ÂrfÖ^ŒÝÊÈÆ¢ Š;B—:LÖl:›vÈú8^戵¹S]ÅŠ%Œ¹­ìÕ–B-\c#,µç²ÿýyÿƒò¼>È6ÑΜÒÔPàJÇ­ìÜÚA=ÆâŸQ¼³‘@ãÇpïÒŸskOäÕž€jŽ5èœå0è¯Wž³0éšZ…A>á;¹ƒ ó­#4oûjÍŒŽ}=*þ¦¦üPíWlæž„UIbud›ãåà}Ä2 9\ðÜfÉèj6ÚAYL®[¡ÙÚ²±òƒ$­n£1+—3)ï×ë{«/TÞî~VðÌJ¢j1U…B±7žñÆO‡èPWlcdv´p¡A·h<î`ˆ"Ñ{1ñÍ–“„^çÊîÉò­S—ÇgbÅñáªÑh°Ì8îÂóu‘W—ûl8îá¢þ+œ§r\üÛáÊ¡[7tÄ ²ÍñX<\dêŽÔгd_ôÜ¢Þp¾c~ÃÒ±÷ ”÷¯ž/qS€„»ûkPÊ[àÏhÇBòbS“m/?× 3È£šâÂ[#Î#i–K‹ÓR±ÁµÀ³.'tüªÇ.•Å:cшÃŽ* ;ŠÂê"ÙkI~9ܱ*ò»ùªI!ÆM,º*nEŒ'”xÖBÙ#m°©?NÁòŽ“·x4¦3fs·¼þ÷F#ÝuÆ,ø™þöÄ|!¾s5 üi0› g\.—•„'RT#*iÖqsv øz#! O!KÈjt!ïù‹ §ëbŒ>øøá\þŠItßA“àð1ùxÝ“Œ+?}d 9#u„èn‘J&÷üwsg„~/%¥ªÄ1-ü}@nøg¹vÎ!x¿ÇŸô>|ü ðyÃÇŸ®úÞGÍ®‡P$3®¿ ,üçsgªù#m>ºÒ>G×`<Ðtn"o©dýq…öÅ÷ï’ üî¹ö_?½<ù›öôÍ÷?¿FòH¾Š‚’÷Eß’ïÆ,m-g®ßÓPÀ}÷S¾=…vpl÷lÇl£nÚ³ŠkïÚ¶ÝòœØü‚LØøI8€C¿Ï*!Î+¡¹…A“ãB‹´œÍo«{µåå§[cï`Ù~ Îò&j Áfgsø\~jßܤÇ%G¦Ä&sõÙ&ÆnŠNŽMIü)5> E’¸“r‚ÚM.¸„hŠO+½ &[J & à¥K°=Ivšt‹zš-â“ý8¥2#‚ª¬ÕNžT£Sª{v]e¡J¯d¡}‡8æž%5R^d[üBµë¤L%cJ$t·ØZ8¿å‰‘7õÀÂ1™/<Ž{ïFÏ륀„]77¥w<KHõ‡ª%FÞ.ME¸……»焌CŸÃ¼ÊGnð'SЉ×Y¸…¯ƒï»¶çØ^ÛöNmïÖöšâ$AÃdßà[¹{ʼnW»ãdñ0ozûy;‘׋¼~ä ¸W!u/"<¼¶Íý(„$Á=yIèEøÝx.“JG¾ƒj˜›ÝKd»û_û_xñîÿãl”xÖ' ¡s=Ù/_Á§CÄ–ÂøË'zù32~¢'~eRbC½7÷ra8 ø­” —ùú¡ïêrÄü@:›ÍbòÁµ!ܢ”hwì Ìö‹º=)¾| ?o¿oÃoÞ~Ë‚È-Øyø“©ÚË×£airi’kå)>@¤ ½8›W½ œõ?¥›véÛï„>»Ô)äí²"F¥ŠšÁW2þ«LvPòÊ—ŸJc~9™}Œ¬“ÍJåyIyN §Š/ƒOeÖ¢¸¶%³]a Ìçƒ ¶òI‘áS¬BÙ!×5JÂëUJnÙ%§ R«$*” T =º$%7J^8åŸ÷]‡!§¯çƒðY›ðøG¡ûÁbF½ˆ¢G‘÷|aèÑÍ:߸ ë_3Î}˜KZ*T‘Ê>ÙðÓòIù™ά´|Âtú Ô‹oÀöòß– z‹´dƒækClvàÚì¨Á«Ï¯\gì*÷ò!­©±‘Í tðkls|Mµ•ÓÜà}8a­ŒæèЩÛELσ¡æjž®íF×0`ÒéI™ãª‰Z#Íc*Ï·fúà¼=cäèØš{êizįíŠD3óÀÎOšÞ >¿áÏ_õ¼ŸÀtÀsžïç? çc~¿ü ©‡‹zÜ®šaâV3LÞj†­f Ä©}Ý9µ†ï¾oá Mƒý ¾.|‡ðõ:ðcX–cµ_Œ"Œzí¡=3¡­6-Tîî.òz¡ØºÝÃS x«Úµwó…¢¾¸míµØÈøÌšÇ‰lÜq„‡.E(yŠt]ä­/R WÕ­¦^M'´¶LýÑáҾƹµhUí ~Ø0b—´[\ž%­ËÀUV¬‰ú£+(,6gG…{5ê!a”"N¹=´Öp[Yqã /Æ£ ­ã1 m­H]MgÕMŒÁ¡!*jÒ`´y¹hŒ•ÃÜü}4ÔÞ—ša‚(ÍJ¥iXšÙhÔ…DÐMC/µ`s[YÂ%ž7À†^áÓÐ&þdÇWÐi«t åKIUâÃè¥R¥åæeÃR°ÇàÝÙ·¯‹ÐÇØS}ã,¼=e“Ù;û½Ñ:+hïõ<ôtÛÆž¦hý ú0ÈÒ&AÐblˆñùM¹\^tË·(Ÿå¬¥õ€ ºÁTÜDÇZaIþ¶ˆ`C©gE†Þ²õ,'ê«êü1.WH¥Êó`4üÕ Tt}_tÐÌZ‰XËy£‹ ¸kM¼(§Ñ¬©ýþ?ö®¶;mdI^ÎþÅÎÙ‘ló" ìÄ×6;³›ÝÜd6É=“‰…ç´^°rŒÁ&ÿ}Ÿê!a$™Ù±Ç"Á´ºª«ëiUWwW·@roªQøÊxxc5}*Ž4 0ÎŒxã‘îÀ’ƒÚÖ>LY®¤‰ÐB‹Ïri÷jŠ©ÄÂG6DŒ&Å_ÿ¦õ¯)±^t`Eãj0ÀT+ΰ¥M1­Ð ”¥ž9Žü™évcMŬéFKã,QMæéÚW3¶4Ç ‚øÐ2_›Zx%žEÒºãI{Êr…SØ5€G/vþ±¿Q‚&§NË©Ð×ÊVì½YÕÛB&-Û´þ¨çz¾‰ á<õk˺„?Y[¨‰¥R?¤ÞN_7(ŸcB|ê+bCh=ÂzÊ 4úA^iŸ×[˜64 e1ü OB>Âa@š-hçÖÝr| 'êÆ^p5¤ÀäeÔep4ô°—W˜fÔŠW8(ܹo)Ž—‘Ç®€uTŸ%ŸjÇïŒníq{Ý0ŠQŒÅ•vúú©í:øâîÞ+uJ÷L¡Üô¤éƒ°©µG .¸—l²£Á3wEÓ1í*tBaÿ÷ÆÒ^Ü7Ëø¦œÓÅ–Ï•=p·™HVV;) –¡¿;#eæòÕZìcNå–£‘ë‡=Öé2ûlªàý2aòÞ™ït?a ÷HýÜàÿ|ƒ'4JÒ5Ë65æûšNg0üýy”cqc?àsÏxÍÑ$Û²$½ÝçùÛ·„¸/fo‹ß ÑÅ7ÅÝ%Èü‡±yûG¨‰N]þ2×Â_\=¹ªŠUz|æ°)>ißlÀ#îh£ƒ{7ñYÐ,ja| {qït~ð¾Q»÷c—âÌ'k÷@ýÜàÿ²ÉÚ=ŒíÜ3}^Ü3}òî’ùøüÿËø°4øJk VXÙf q”ï^Ù–Q›'Þ9„#¬o¼Ñ=¾%i¾Q–ûÛÇkúùFY>·~S řϭïú¹Áÿ…eâ%·Ë´è*ðî—q¥àÉ×pÀ:]º/G@Ðg°ûÔžŸqï<úÂÏõc4ꘜ<-ÙèÂÀÞòûu0Š‚ó>ª'%¿öjA^*K>•Ð( !Ά(Râ)Äå4©Š ùðD²ÒUÜÎF9:$Ær8:¼£a9<¼ê2/(_ zþáhTšLÊÌGR+{‡çnÙÙp^Œ«èƒ Ôeyܵ׉øL‚õÏ»‚Fý¯´ôY­_QÁÐ@Üù…m¿©½a®v}Ñ|[OìâN/}mÒãEf°ä,¤¦zg?ôXwk­áE¼´Ù»†¹BÛoÖuªw犙‚g¦.äèäLhp•“û—Ë`Ï¿ áÒfd)÷ë!ÎD(ŒËα.Ôkˆ0ŒÂÌ•WÕV½&;êû;ÿÕk­±Û• ËÒ>øàÀ¦ÖPƒgF;b­²±úþpÞŒÔJ{–aìY2Ó¦®ks–NV²®âòµæøßä^v!i6 Kænl}Us7ö×¹1n—¥Üšsk^Qñæ|Ô•¼ù¨›û©%ªæ~ê¯\<0ßïÈåí:ñÑ/róÎÍ{E ¼ú0 ;Íkß3^/h Þ­"w ¹k¸?£àÈ&4ú<*›G½VD½f$òª_ù¸ìêæ£îŸ¢kî§Vê•¡ÊB¸¹yçæý؆á<¨œ»†Ü5d± ýó­ÕU•›:=ZSÏGÁ|Ì€“»þz´®aõªˆWê§TŽÖÒ)ãgLòßù¾ßÙ ú~§](”™ë9? /9¸ú< §;žÜÐG¥Ñ,óòË8Cµ¶»”ïøä¥¬kÌYÆ‚g,™Æóõ-㚯s¯¨÷ì4LZ¢§ÒŸfS&ì½c°:•-Å!þ!¯i·ÖŽýåS9nPÊÃÿOâÖôqM—22îBÃQÌ’“—†nN¤*¬VG¤Ç/N÷ãÔ N )•Q‘ —ý›Ë/ÿ]Ó<ÙY…¹·&À¸žjn¼¼8§–Ê r‰úéY©µe8%$ö‘Ø?ý µ¶õÒ–!ª€Oð.ÍÒ°3ìûš]v¡¹êÏòâo+?üšò›¶ö$p=¿ÃÛíôç¢×Ú~*4ÿùã/¿ž-iëëñ$Y¦“.$9~=ƒ! 3ÛmŒµW2Çý“hO˽TËþüyfÔú777)ŠÈQ¥ãÂ(Ö—ç4èâÓœ>œAû^é”C5è%c UD3~ôïB‚Ò[b™ŠSטâïþ¶4Bw_¨àíï»ôCHEvÓÚ–msSÌ’ÉYAW¬7l«Sœ‰-Þ,çM°Âþà·ø4ùqe¦U´«™h›7^˜–ìÕŽÃ/­ŠôY¬´Oa˜%ëÓ¨;J ·¶ç+Í(-3w’¹;³ì*û’¢ðko«;5»uÅ ³ä–ûÁ5¦ Áa·-J:7¬ÓwÅ’0çøž¯6ˆt;é FíĈS³c‚•"<ŸìÁŸÌJ%A¨Vâ4I¦4W%yß*–º˜':•Ýôõ®¨ÆÐ]C÷ Ý7ôÀÐÛ†~nè†Þ1ôß ý’ §P£iÎ/:¿]"ó}òößVâ{&<›ê@`ÜVv*_ê°SAã›nY=…B-?HLLŒÐé)xR,&1ˆfÊ Õ#ƒL&i gð÷¬eà¯ãòÎ~‹,ð‹ê÷ìÍÛ^~ê2u¥.x~–-Éß–¬Žë‘»RÅÈÖIQeƒÛ¦Ìé¨,MòȾÝh4X’q[qŠü9nŒ´Nê4ÁÙZíÖ™{)u%øf®û\ªOFUf Ÿ—®ü¼ÔøÔÅ¿}¶óÅyQÚN(DsáÚîÞ3çîWÉ+ù©Üç˜Ø–&¥L¿8+Ml£Ëdf,Q¯T›Ã’AË4 S~ÌÐYÁq³RÆÍr!s^¸B´bâmámã]Å»†÷.Þ{ò«ÄLú:1¼A7«<ÊP1A7A·@·@·@·@·@·@·@·@·A·A·A·AÇê£bƒnïò€ ­á*UЫ WA¯‚^½ zôè5Ðk ×@¯^½zmœ ޠ ú.軠ûPÙ}ô=Ð÷@ß}ô=Ð÷ö¸C2ß~øMà7ß~øMà7ß$wü&ð›Ào¿ ü&ð›ÀoZÜ]á :ð›Ào¿ ü&ð›Ào¿ ü&ð›Ào¿ ü&ð›Ào¿ ü&ð›Ào¿ ü&ð›Ào¿ ü&ð›Ào¿ ü&ð›Ào¿ ü&ð›Ào¿ ü&ð›Ào¿ ü&ð›Ào¿üð[Ào¿üð[Ào¿üð[Ào¿üð[Ào¿üð[À±oÐß~ ø-à·€ß~ øiõi¿üð[Ào¿üð[Ào¿üð[Ào¿üð[Ào¿üð[Ào¿üð[Ào¿üð[Ào¿üð[Ào¿üðÛÀo¿ ü6ðÛÀo¿ ü6ðÛÀo¿ ü6ðÛÀo¿ ü6ðÛÀo¿ ürñømà·ß~ømà·ß~ømà·ß~ømà·ß~x¼A~ømà·ß~ømà·ß~ømà·ß~ømà·ß~ømà·ß~ømà·ßÞÛƒ3É]@îrðx]@b¶ûÓéÙVëCãÕ»—”¸5wv¿Ô_¿–èÙë§÷œçÕûׯã¼E¥¿¦°î”ßñOÍâóVÝp|µª,Ázà”žÛÏäõ³½2¬g–šÓKM¦Ó¯Xª®×+Ɖú¡ã†qG¸,0WÅ‚™_²N`zÝP³}™˜U¹z; 'ÚÖëmÚù1 }­iaŸ/qÁ¡ ™Û ¤\SÈeƒYè®-‹Œ°2ðR k¾JöK©Âõ¯.&Bºãoå~ø+ Ã_¯Â(¢À5‰y¥]°ßÍ’cѾVƒùïÉZeY¶Èdæœõo¨fVpU ež®ÁY_ŸÕÀÝ\—×9YSî™s²¥×Ÿ`¸¸Íc\¤Ýžé ÂZçÙªÕZfàv&DDúZÕ]¹^ø),i„ÍÅE–˜ŸY·+B-;`œþ*-bŽÌjf2–±]0n~œž5D¨×éSíãDì´4Ùs§%!?^\¼Äâz«ä-+ýÑʬ¸¨t=2¾£u²dîÿÁ"ÏJ[ÍŒqCîk4ÕĆ ö²{w³ã"½¬2È¿›MiÛMn…g§4Ô}ãŸdœx·VÅ2¯À§7jÎ0ÿï.¿&vSýÖ×¼³ª¥ VV ÿg}¬¸ŠEgSwê‹™„¾‰ —n¯^}DÃÑï×ãI%ŽŽK%mh +¹ÑÄŠ$Æd‘Î6•@…N1ïã¥âÝ•Ì3#¼†x-æêž˜Ä[|˪£ð<Õ§»jÿ_CrT¢S™Ã½x­ªjÇ¿]Oa3˜Û =!g£µ=uœ’±µ1Ûu6ø„ÉÙH†!š³Á©Ž¢;I¤¹ç­—ÏwX{ †Áx˜riqºˆD¥²)åóXD¡|0è§Îµó³‘¹žÑ­úb|8YLÐɦÅ`lðeš~Ð|w´wzêD"e8ev„?N–J¾›ûeð÷ÝQ¹CÎúàÃ;­ùŸÇo_¿}wøÃæIóåó—Ï ©ëvÎû‡Ý =Ô~éaxuTµKL»íÃ~ Ýn'–¼v¯þß¡ûêäðyUÛݳkÿñ?Á„æ´‡?ýLS꟡‡Ep8à ò¦hZÏvÂ-!dTö:8gZ7²v»ä…½ÜÇ ­¨½²apÝñÁL@Éôi×IE/‰«â„d>UðÄe£†" þ‰•w„V$‡2ŒDéè"Óeq^á`ÂkyU¯oí/wêRudÈR‚2dBÜ!‚±YL — K´Sl®J‹c64ºß$ò,›j(C\û Ð†^?*m• øF–ä2œÜB™•±:”»aÿ¼LçAÊ~Ù¿|Ý^Zõ'eœ""w†åI8*GF†teß+Ëå²jí£tu­êªð&u$H¦æ”>£mÃPëZww">N ;=Š5è´­vN1Ç^ЧUºG'êùj=ÐXǧÃ–¦æ Átr ¡Qha¿;‘Ñ%à§yŸ¨¾C17ݹ6ó&6Knó¾DÀv—oÙö¾(Z?bÛqˆ—–¬Beé\ÜäÎóÖ\c{–åºt:BÊÂUyÛÆ–—¤»³C tÔd)“Ð…~¬…ûäè<µåªFŽªèÌŒQûB7tc¬<”¾ à6t$*~È%Né˜ãÉ‘Õbg°¯xiròU/vÐbäÌ«±d´+y¸V5‘¦×dž«y†¯© ´ìY˜n¢Kÿ€¤r¼dÀ#ùì’dO£ØYqlÀÒr’«½t^Úk.`D#>Æ*½Rs‰+;–,ÇR©†,ÔhªÏc™¬†UT²¿f%ZJF¢¶´¬ØàšJØiª4˜b]Âî˜s]Çsò8âuœ=;oÇa±q›å½®GÅÎ>é/m /Xß(mõ:Ýn'ìKâÇý‰¢Éü¹Ü¾zýúÕÛ7³\§/ ‚=s|ÿçÛw/µÿÕx£DÄZ¥Ä8qÅÂyìs¢±jä#a³ÛÆöƒrgÆYs#y³E¼Öñ¬†CÙ+È2Öï WÉJô¤u(¹: žu‡ñXɦT¦tÅÖhÆ'êCbT§C’4mÚŸÒ¨kÌŽªíËÁcɰ"&‹“›¤Ä'\"DM…Øï¨‚š‚f`˜KM1™3âI˜š\!SdʼnBüÙ\”å )þ ‰GΔ&ްø#¶el¥Öä³q<0ºÞÔØž3Y¨#øÍ#ÄŸ²Öñ4"qŸÊÜyªŠп˜¼ Æ‘~Â?!ÛéªT‚-Q‹'ÏKò*äÔï*™Ð±ž¥¤¸D*¥T}]­bF/­\Râ¢Äfã¦ Ç ñ]£™‹ÂÀyêK˜„™B):}ÎÏ XLù·Ö—"¿BO)òK?ñÈ ‰¿š¡ÉÇIL«WÅçÏÔUå9]d"±‚Gr«þÔÙØp4ðÙdúø&¯rŧðäûdþûD~ãÿÞ4~ÿz'GýÉO¼i³‰õ§2ç±rycyÅg³9^2 ù¨ }”…>ÊBµôKœS†PÕ›ží–šîHû^×=áj'_¼ Â+‰kB2úqÀú^æ$¬Ñt<6«œ¹SŽûÔ-zТ‡aÓŸŽ)g2½‰ãÕ/»µømxo)b=7ˆ:™í‚¶Põã/Òãpoéô3Z°ö”Gš~õ’Õe7œO‹E)ïHžTƒ =KÒ•Pâ’»M~™YÕMÂÁrΦ<æAO9ò‡ŠƒhˆõMØ%Ö`¸ =¾äú)tµZ©R©qXigüC<ò,VeôXTk¶+6ì¸]¹î¢BÕÍ µW?øÚ€ñmYZñ£ XÝEá`È%háhX!ß´K#1‰}SæØ;Vn{6îri[ qüz^>K>Æ™J·³íÑ8‹ÚÏe2—‚s—Qöv"o§Ë>ß)Ë7Ê_ôX›z>ea~u§Æó3Uù<_¤ž‚l@¾ñíε*gç‰9çNå­÷¤Vêa=O•+Ïg<-§Ÿ•Iì g‹frO9©ÕÓ”Ú¥y‹ìؘ0à9§®×Zc¯ì~R><”ßR+M/ˆ³ ÁTtUFQr¤®ÕE‹[q¶åŠÈlBµ`É6†òR¨Tô…g­T–P »u[üÉ—9n¬,}™ü(rò„ÈY]Ytw¹(sšÌY²M¸¨ŽÿcïÛ¶ÚH¶Ï3ý8O󖾜²Rº TBà2ÇÆ€m…àD¦R [H”R2¤³úææK¦×êéùùžØqËÈ«$ \ö9¤"3bßâ¾ã¶cóZˆ@Ï.O¾ÞÇ)ÊoÎâJè#äý#{=@Ù"Žô˜F‡2Îáç»(¨\ëƒ÷­)¼¨Ž®Žxuô±1‹€°â±Ž³ ©¬%Ò¯­i<³´2Žr²Ó‰&Ýâ[)ØÉÅç­¼(&䉱DŒÅå~HîÏd‰"oáÇçØüÖj:‡¢ÃÚž«’' 98‘yÒ~üA©„Ò¸ ²‰±!5PCú8ÛsÏ„,V¢–UᘚÍulzh G4î4íâi6n!m‚—ÙcðŒáþ†©N±,Xè7Ǽ¡bׄŸÎóÒâÝšq«uæ “ÖݦE'~ üx•ÆüƒŽÂHyÑ-bˆó3«Õ4íÏ,ä¼ýYèx \ àD™bL¹ˆºwG…ê†F\÷ô[1h¿ã:È7Fˆèî¡!‰ÐÀIxCê° 1Þ4É?Kö!"0j.ЃI#¤{´›;IEº„à»öNÎö½SQ‚p‡(á´;&)nu뼡ŸSç²K¤GÏIXóùØjÅÏRãór;öyüET1«Õ:cK2 œ>ó ‰²’i6Ù´xH¥ÓÖ„:ÃΠ} ê&ÜmÔ ÂS’uÃóÅá¹›Quû%µk‹½O‘bâôÅÀ/©Ñ¾rÞ›h¼:¤ú—WO<õ Ž˜z¼ê‹ Ùºðã¥â˜$Ÿ­‘—OÜüB£HêÚÈÀ#1¼«‰©Þw7kB1vÍØÍ²²)‚ÊJئð…V.0 áò­Jõ6t<å0|§ê½mÓË;›êÆÁ! ‡€~\Žð©ì‰¤š”´Å.Þæ(ìÕÈpܾLÅu|B¥ÛT$ˆžJŠ«Ëâ.cãbúÜ-XÊW*jÌ?î[ût\ ²B9L\¾åhÏ‚ú–¢s¿êöôã IÖU©>sGV=ä—£A ME…æ~Û[Š‚Ìý¶"²d‹sª*J´ƒ&%o…«n M‰…lm¿bªRxÑl0ÜM¡Lq’±M©M &<€‡ (¢hŒÒ^G*Sj™Ú”«œPuJfþ&÷Uô)_U¨$ áò$•£8ñýKFÐ¥€ù|€Ù Àr Ål$«µª?×Θ4Äj^œ:Žæ´D,ßE¬­GcÞÛ^UŒ{¿Ru1‡Âö«_¸2Ö]É'`zÌ¿ø‡¢)¸^uŒ½Þù‹K‹jÚ·¶UmMKU×\Vô5W!s¶ o¦—¹SÎ¥² ÍäRÚd­ÝâÙéÒÚÚ.mÌUMTuÌE?Dã0»û¯+Á ™ ò:\#%áÕ/,wI>sÀ|Â2‰ÇM ²¥ºµªžqIBô3%0Cþ‡Ð‹Â [O½XÕpE0¼X2³Xï_/¾í×Ý_ßïíìïnkßl&µOÛ•×.UÐ]K<º ŒU’Ú¦PÛBô”Cªz ÕE7H¡ÊO =%´FÌÉòz3À´ ~ßUÚZè±”œ’·\ñÐDÙÄÜ&‰‡áSÀ‚os“) †ÍR‚‰ÑýbãL™‹9_NtXJ.Oã <˜bri™Nfª4Åhib&éØ^EVA Jèe>ÏEû'jLÖÂÆ1t"Šaæý¤¾¶Ñø‰}¯ýôöý¯Œ-=Öƒÿc0¹CZ´€ô¥ëæÎ1Ö°JÇ÷k²]MkOLÝ=Ñ£†®¦RzË2ìø•]ž'1¨õEå\í”W¬{áõ£ýLˆ¿é Þ#âÇ4ùlŒÏ𥶮F®Lú¼Èd.|èüðüQß%Må[u8ðǘò,Ð3õè*Žš·…‰\Áeí%l …õØ…ô(ö·¿‘~—ê6¯ô²˜úýíoLý+?F¤s&£1[øÒx¸××׺FaF*4°° Q7Å9)Ò¥* ¬âó™zcƒT]|†À’Ab6±i2Cf$?ÊF™n‘Š C#²¸ÈK‰NÒ‚”’=èe<Ý0oÒcZQA4Dõž1C÷z3`¯7ê†PáRD,?IùXÈhëÆ¬Ð',©è¦CYùÄ©»Åtè ÓÎ'Œ^”WºG{†./y E鉮«bÅ£×µV‰ßsÐN”•€«£«ÕFbuU/ScÎ2¬ØŸ±z³ºº*VlaF†ŒËȈMаF×|‚Ÿ ²šsÒŽ˜y_UÞ¢E€-ݘW€=ßõ:‘F ­ÖÆ*ó]w|׉ï:óM9¾)â›ZX˜o×ø¼»ºaFè8bâî¢o ã´×ç&í Þò^¨Ìp vº@ÂŽ¯`c¸ˆ¬GÖ@æX^èžHør%ßYçøcÌF~³gÙÝ !N8{V¤Uƒ Ú?‘f ô+Ýe²á÷7Úðf ©Eƒ¢4ÍnÃb¹ éiáÒ“R©¤;ÇÈ—8_Dº]öºIŠ@B'àÅN¬'©T ˆR÷¦ì–w¨ºE`§e§æ¬Õ-Ì”<Ð…žxøékÂ^Ñ\, ]9ÖãŠ;Ó‹±ã˜ÓC‚HÁ ¥GÂB‚p\)5ØŠx}•žéYm3¢`Z¼Dþ0˜ÓéäÏX£aE0:¸ûevdωìÙàð?ÒZ9-ÎaAÒRŽ„žòä„z†«ޤ½ƒŸmuŸVnSX<1vÀ?©Ë<Ð;M’öÔŦ‡ðž’ýWN4›ÏøåÔ½{ÿT¯N{um;lTzO±T›‡ìïBmkÏèé5ì›pšƒ +Ïáz€m™ÍQ¼ž£wð‹kfè6­–ß!åœóÎ’¿ ϳH‡ò#\£U8O¥‰EñôýŸB Õèé+­©}âGóFúH»Ön´1;—¥;Tø‚9á¶ÉöÖ¶õÊ&°W%P5ˆ“C7{ æxK—iVe“æ[¡ •„Ķ€ªšÉâùU¿!Y²Øl m>`ºQtl¶µ©Bð ¾"ïéäWĘáA§³ië}댨OÃ5õŸ1¶ôþØñL8ØþeØáûœ $y·ØÇufxzЀÿìûì ÿÛÿû¿ÿYÿÅÿú—Å/xý‡|û/ùö/òíß“„Ðë5>ŽF+…Z可fA˱´Ä²:quq ôb>sLÇþΦ šÌ|ƒ,-%êlßÂ_X¸8yÊNò ^Aå¿@aQ϶ÌQƒ(´‡A«Ý·àÁ)¬®ÜŸûEòÛó­DfZ¿´Ã  8ÙláÓ¾epˆïA'é3q:_K#U›ªÂ®~WAÝ*ý/,ìT”ÉuJhSß©ÄC‚.±.B°Ü£ÚëHã¿xt}i¡Q¾R?A}ÔmÜ.‰ý„*À*µ’y}}­EcÞD Þ¢âŽ¡üp3ÆÊu'Hzç"é¹?z-y:>úì3¼£rn”aê»>.sóbà|€_³¯Ädè´6¢Ä` .©:ª Ÿº[ú)d½‰v\Ò;Þ¤Ãâ¢ñÑw}ˆ[E\¨\»¡ÎÇ]Á""ù_&ßéûî¸s¡žÜõT o` õ8Û~Ÿ:ä2•ûäóZßµx«ß³xw¼ Æ…&ê"…¢õ}h¸{íTE¢çÅŽ”Qâ)äY{FÔþ‹QR¥Ã+VÇp'/°Å>?‰ëÀ ðÒ$/Eæ×ä°K ÂÉ˲ö—÷{oøÈây(@ƒ—°€—<0€—P…—¢ K@^JT|t`¤ »¿>ì¶ÍžØß¾ãGø8¯¦š ZøÉeB“£càkÜŸ½‡—ü /ø'8Þ30=ÉùŒ|‹®ëˆÇ(ÒR‰5÷·Ëû8DpDÎuU è%R 9݆[7Q1v@º%l7òWíï?Åœ œJÔKIÖ‹H‘¼„lÒŸ@e ª‹¼?â'ºh§L?넦àtÙ„ÄI©­o+Öd ºoÖÀˆ<ª8~u¢ H„1ÕˆgFc…Pçc5¦æqÆ1gåcƒxÐÙÁ â·F‡#Ýãj8Ë&„ˆÒ|3ò@Lj¾ˆBü½Xå¬sÄÁ­3‡çк¾aÆë_£sô}å³+Z ÚVö³¡ðÚõ Î0MÖzô:ŽÎèC}UŽà²‰Õ\0j|†ÕPfY±jn ð:€@¨´Šp4œí _ûï´Ã#µ:§Ð)ÞØ!è³çñ:/£×‰Oèu™/ªmÔööö>±­À{ŸÞ…nëܨ}:Iɵcß%N_ ›¯åOèkâ}ˆÓ(}HÐdø@/Ò‚ÔÌ?Að1üÀ½ ÆÞM*ÆÓ¢Ióã“H™ãc]áð Áá¥wcV6H½©ˆ2Ñ­øH @'Óè€6 "†úc2¦¡}ÿN:·êÔ÷÷Ѫ˜ÒAÉʉ‹¾»# ¡AŒ¥ !Xþ½%.?¸È¤|&!bCǪvå}OG.;Ъ¬rÅLå` ªWO´Üz€9·<’bÓp«—}ñÏP®y¢Ñ•2÷NS¾Þ0Ò¸385ìá(I/¥>µ..×§fÛv’R=vm‹€`óKßj%›ÃK¸J:hÞL¨“”pâw ÌeŽßƒ¶Jèä±§tjŠ•ÐôLàx_Ñ–5ò Û…tíyºÙëtpÿ”4‹`«uኛ~¬ñIëšê wVÒRL|Ê뛡8Ñ·`ª¬¯§0DIЂH%»½S:qz — _´o¬»PÅ÷ÞžUŽNßîéò ’L±ªêlÏ-a­sÀÓnÎHà ÐO!–è‘OcÌ&nèõ“§ N=}îE×´§Øx*_|dP3Q—ŸXò'ÈÃÉåT³ãõ‰ú-¤cñW»©XŽKÔãŠ|,Ò"̵@ÊÑYÌ6zÍk±™xØŒœsò p$4…Ã'GÒ¥  ࣉÒ4y7>®ñ„t¢CôŒue¢>¼UR«æN·UF¼öIŸJ\à0iÀ‰Bªì1OhdÀº…‰Â*ølœïó©ù.¡"0ÎC1Ä¢- 58eözÎ÷¼‘Wâ2ž|Š™o¾æECŠûжšrð¢‚k.Åãœ&04|”HÅ ä×ùRk ý¢ç­ËëUÝgPœªÓÕMzLˆ7­Ö†-é–äVÿüó——°zŒqÓnY2#Ø$hUœmHáFd- Òì´>kØê~î¼l5±†m’ØvS³Î?¿üòytíöð²é$°‘œS´’ ˜ÅÓî„õðwòÍñàûo›Mâå.[€>(Á±=#§y Gšéxˆ"Û$rÖK-ëÀÖ›Và ݴ|Ì-Y¾Va¨;ÞÔc¨ñãªsG;¹[%nH>T+`S”Ïä“©r*›`‹;âh¤ Ç€)]Nø ŽÅßìì;û=+Àú%c3$üèõö^TøþÁû½m‡º0¡^v±vp–W¼õÚÕÐÜ\.òÁwáìºÀ¤¯ëK%Öåí1¦V¾gã+w¨N4fTnñDÌpѰ‚ÙkµˆR¹žñùd}>Ô ç&»Øðmû >ŸÅBôt›€Ë‹5*=‘F‘˜ÉÊPta[0g)(౤£»)H¡4UBzÜ+Š2E(v{Ôý¢‚Ç÷"Àm¾Þæ'ÐGû&qäÖ:6Oʪ.'”x 2Dç635^+1βZ)8P–çV™š#ntü¬Eƒ@"ˆáÌ`ÂØì _\ôº„éå:¾ið“öŽé6~éŒIú>Ùþ9t¥,ÏŠ­AtÂT/Ë8³ }… Vž±rŽžYÉzLQ•c:NŠq nåÇÜ¢Œ †ð@‡@Vi =9"Æ%Nû®pN8|á&ÀÖâ+ÉÏ^=àW ‹ê|¶¶/ÛDú*†'tþ%?EÑ9Åßâ s‡Ž”€åé0-C®2ºÑLâHš˜&cWõï*!œ~°’¤PÜ ØØÃÏÇäSŸ™ºD˜™G*pvÖ— `š²s6è»e¬àQþ]™<ÓŽ¨qÕöØ!€ûwšíÁµfž[dxdp5Û–cµœÑž[ _{M§9ž¬½¿Ú€1´±!ͽµÁG«¤½×Ö^s3ñü\8oA=µskTÉ,>Eä÷) oÂŒÔpmùxoVŸj¯62Ý'&HH_îæd€i䈿ä›b­íFê¶0Ña(u†×STYw+óüÖ]è7k§)Þmn’Ppáþ¹iÑ~"MeCÝtÚ² 7• GP¨‰\û¼w¥ /5hy»ØnµÉ`Ÿ[í¯;öùh¯Áê?3ºèâìö f•#4$IÁ¡þN@ÙòU`ïï \C–£§âA˾٦go¬~v£óøñS¤ é§€þbôTËd´§7/tãišt„*63õÎ舛ŘTì(g«‹Ü' ËNf»o/ZÎFÀ`ÔèS6L?í´/Ú^`ò>¹¥†­g3™ÈðRdh!:4)çÂFc#ÁòÊŒSd´=xËSäñ€/‰ž¿;ìtNMØî´—D pyÃü˜Öº`Ö.óš!›Õ ÚÎÝ_wŽN·¶÷^Cé'1ض #±”î2‹Ð´.ISAÅÔ¬‘iYM‹ë®g2dûÍñ_oWö×#d?·ðå÷,:\b!¾=4M™¯ È™Ü¢^¦w Ãe%â…µ1$Œiøc#,6ß`¸¶p° Òjw›¬´‹±CÚê6q×<'J¸°…p=åÃ{Àê÷{®Cr.4íòU9M#ÀËNª ”ïjqpĦ³fZÍû]¸+š'œe2âúÀ8)\Òrð\ ‘¸›å…8ÿùBË4µ †ŽåÅɽ€÷×/Ò#•BRt6#Ôå[ì¸5´Ç×Mk¨û‰¿ôÃÏ2‚ŸX_î´¬c×5ÞÚí˜6ÀZ0˜JÈ›ôSiNEpê,UÚik™Š“ž¶>~Ý(;oúKýe˜?D;ìÀ}ƒÿõ1‘¤’B¹E ûéxðþ©ÆâŸÔÿÎÁÃÈ:aþôEõ cîÁ|YÿoQ‰<7=è\›½Lfœ²ò¡”iO—òXþÞKì%èzŽÀÊ#o=Nxðè6ƒ'.ä,ÛM]çèèZÂ#l‹jWÌ¡0;_ζö 'g»gl˜zJѬæ©=4>Js€&a¤rJšÈ 2pÀŒ³; $">ðnwC˜ÓñˇíƒÃ·{ Õmf>ò޼-~Ì| ‹sƃ›¥ZAœ„oE¨ìbš„öùÞ) %üÆÀÍ0© Î<3¬r(†Ø®y×ÞwuW,ë kW8Kh–‹Âw†è‰„s›Þµ ̤ÂkvAóaã) Kçb¹ÜŒ' ÑÁ²{Ã(h½]`'fÀtÖSàŽœ{Œ‘—‰!Ùyh°ÑÐ¥.&(±UŸ¤\ _H+IÍÝнþ.¥1Ü­#1‰Ø’w¦7Â¥s™m†¯Ò« =·M{5–Õ¥í7 Ó‹®|¶kGÛ{[Û[Zõuå R…™ËênåðpûP‹½?:|–]¡ö„q‹¨³¯ÍF£Jw­’²Od!Õ›îVe¬¸‰øPsõu01\¯W@&Œ ›i 5¼Y§¿ Nh<¾)&ÍI´8›4lw Ð8™¥lÆ‚Óøé§Yb#E¯ÔÓ áÉH œL¥PŽAC@Å¿©™Ó ¥å–l’LHO©,V7§D04j,[¦Ð7«1ÔD[E¸)"¬æÐßБ1¿&«R]Ü–&¨HY9¹ ϼŒ/]Øæ/vL Â# ¿¯è/hEõRÅN<¼ÃÙÞ í‘§HH Ø›l‰Ðtã¦"ŽakTÑ„LnzŠŠ#)×u½æ·IŽ0/¡§›o`SÜFÇãzþÆîÑÔiï dZ±épÆ–ÕÏæÑ³`Á†(&[Û¯vö¶õKCðÈKË6_EÆMºÆKu@›Ýò¹÷~wWãÚ ML•¹`|þS¨ž|‰–C2r…#(>XývëZ»4ûV°íA{0X`ÿÅèôÌ/V“ ³õª¢ÎQ%¢o]vHY^WO‹ªžI‡œPdiÂw›Ìê? ë^K ú»xh.²ßl&UXNC›x€Ó2®Ë÷äs¡KKê’Çífó™ÌòòŸ²ÅÌr±]ÎæsÄ?»\(’ð‰á”gúaÙïõQpÓ½‘ûAØz@j ÑrEñ¶Ùž[{ôŠšÎ|Ïέi—pƒ2ØÇ´‡——p¯.]j„!Ô³g¬ÊÓ!á°kÂ^Ü&„,«§°‰„ÂÄô”V[ñ°3í‚vÑk¶[m«O*1!Ã,0ÉIª±I(äIÍ&-6E*§ @,<ãÃïSA~÷]%ÕƒÝWlÌN†‘dО`—ü^` ãì3.‚å2³G¹Ä·ÇÛ!‘PHLÇ ß9K5I°ÖÃÝÛËœPÞ =R&Ì'œæ' OAo:”yXè<¯1%À|!]CN ÔâqƒrHª3TjáòzÄ­¡MOB„¿˜‰/# ¶£”Lç;yDVilË[ŽÍn³98¸|[ ‹ÔÍM˜žš ‰RI$ ‡§PžV ™ì„ÓX H3€XnRP_’ËS:¡L^p÷•RJËË-o¡²ÐÂ(ÅR`ÁÖ]è wؼkhn`àIY]Gñâ ÕD]fV„0—•ËgÐÈÌ ÑÊŠá óUG…çC+åÄ Œ)^®@ðD¨_TÕ/«7y ¶?‹`ÝÚEÔ’:ŸËNB .²¹È¢ÁQ‚²ë6Ÿü$¡á°ëŽïhž†D]ò=[4¤èåWöâ÷–î Ù@yIÎZÒF>L'öß[Ö}£è“®‹€™™ ëäB¤ÐN¬¼Ö ÝTz´¿î‚D[èž^°Ld†ƒÝMÅ ÀN*'—ÜÚ’l„ÃM¨¸á¨Î‡‰J| `°ßqÞ–•\L8§tÝÑ–>Ö¸±hg‹K°ˆªŠ@S3鳤 !¢/ôÐOœÔ±ÜØOZæ&Þä€Ã+24\¡VáDxÙ€qÚwÇÁ ‘(À+Sv”ôÛL23ñèd2°ìWÖÜ9¯¹å})$ÁB˘ B‹«Œ­°1²p˧*öìˆù;!&îÄm^µšŠ—¤ÍÊir”Z2pÜ©«Í)¿†Rk×××ÞAYíæ†Z+ߊ‡Èr{ßÿõ¹3àÑytGçÑù;uhw!ûÓl-Ç\šcæ–6СÙÐ6jÚ'ñÊá¨X@òêjy¡‚ÙÞnŸ Ø;Ê;ã’<<ÀöÁl±åA¢ø¤¡9· @7½òÃlÄ ¼#åfg"¥ šC%TÚYÉΞòˆýP¬»EÁ!¿¡ùcᣴìÄšBfƒ†ik4ÉI 峦(º`MLÃù ÝÀÇ^S¨•†päfb‡gB"‘X?axîL;-¦³_Z‹àŸ2R¦C¡|Uá×É.º8N‹>z<É—¾Neë“|nuÞ 5¼Í}?V?øû1`ûЂ@}hN“›S‘á `¢ÓÏûtçÀ’¡Ùì„%wýæ>øôûFŒ‰¥ùnþøÏweò=åÔ<~mO,]cù˜ä\}­òåÊ^õòÑ÷æÑKHþáħÛH=,”a?[Ìßšò À«‘lª@pñ ?+eæñn&ÞôÉO|\üq²í(cT?ñpq8Tj²* $òQŒL")ÿ ü4ÎÊ›h¿/ø†$V¢·Ås>6. ÕøÑv„5íÎÜ&ÛjtìšiŒä”cmÿµÆ©¢Ñ«W|?.Q•[­5æÙj9¨Ð­ÖdGXÂà 5óR¡•ykXNæ fƒï{;·`p8Ç™ÀOFÇRcÈh8fë¦9 ŽV ¸bÚ™i7ñ@ìDlN›•&+ÅÉs÷\4ñY¹d$©T¿;_4r›É.¡%(·+ü£¥ÈkH\RÜá*&|, àcE•8Œïti¤¬rmgm¸¾KÑ¢®3Q’e~!…4RŠ¡ƒîˆkNî–j$P´}èà«O‚ö^B¥pâðm.@q_ضLàÜ£p‹IëxA¡5 ¡©Dfh#X"ú·6›(SIˆÛ1d+?ç@uê÷Iq?ÜÀf¸;CE¡AZ@ê ºŒ­Ég„F’ç.©t"Ùn³+ "D;…ðÄ#j@é>Éw›]Za*ðc—)_W’R$°Øš¨QWÁ â’€Ö<É RaÉGÒ•Éì¿ÛBiIæ¾-Bma¢o¸˜Î%’¤Þ{ÏÅï$½÷¶‹ûŠ¿®¥=ÚçfÕ ”,Ë,N*›U¦bjOY0޶¨,­/'gƒ§ug6 Ì‚Ó0{%·Ã¬šQXÑ–Ô݆pV】i ðwa$‡J¾ù,êd'5P" ]î¢ýÛ½¦3EW ?3ÅÎeà°.ª¥T QraßîfÕõIÞ|ç&á§98¥”¡Ÿ‡Ü¦›ì}ypï¾`/4hWñä3ÕëQsž­æ&,\„ÜAX™'Ò´ 'l¹\\¼ßÁ\½.vLÞ*thÌÄMù +rw‘bÿ¦±ý¦Ü.wËëJå[gÝÌzhf×Ù*_…<ë'WI°€éTh\i#§ÔÏ9ÊimnŒ0:a3r Šyuš®UhO/E—{èr]¢Ëã5¥õ]n!º¹“"Q5pi)Ü#H5Ì5†Ó½äüJOÐsm-´ññ€±ù—ýª3Èo —[|W‚—"šN“®yP„_g¡Oã*0öf€dû3b˜ãp& Hlq<Í®ƒ’̾­š®ÝŠ™ì²\ Ê”ZQƒÌRFFÐi¹è,1ÁKd8XYS~ä2KKêDzú±¢~”"%)µAº“)ÛŽÝà=—Ü­•Vt¤]¸¶ ·Ù"¸poç)ñ<¥gÛf¥´ÛQÖCoì¨VFMùÝ —9#|Æ;Hîhg #É¡, ÜÌðk¡¢¯EuU¤_Ý¥µ”ɇr•sæù /ð²Ìÿj¹¨VV¦S¡¬Ü9±®‹˜ä‰‚³áÉê¥Ì¨-6:pÏ€W\Z^)©­n–99æä™S`N‘9KÌYfÎ sJÌÁRÜ¥£Øb[Œb‹Ql1Š-F±Å(¶Å£Øb[Åã\bœKŒs‰q.-aæÌ1™ÓdŽÅÚ¿”–ÃKtÍI¹Ž»@.YÖ iÏÚNÁ]'ŒœŒ‡1C1c ­}WA-:µ3“o_­E[\Á Aex㆘&c)é(e_§¿Ì&†Œk+o8 o>SR?f(Í‚›¦Åè/;òëP7ùåvßÝc ÛL6¼½‹WÛ{êB¡6CýöPSŠÂYµ—g(Q:JžN¯¨Óò6*ûûCSÙ–ÿ’…ÖiL«4¦5Ó n¸DêýôXš9…ËwdÎ@€r‘.1kã¿D&›ó+æ%æ®ÅJÌ +ó vìnSØ\íô+)$.½$f*ÚlR˜“PÕ É˜)Tê(rÆõ‘žIΩzV¦ÉØòž(–RNxJ¥ÖÝë°É ‰RžÎçÜ ëÌâw@¹Sœî¥ü]Ñî ã]Pî’âw(FçnH+¤ÈO'tŠ©3÷LçÌÂfv6ÁøÚ¿öÛT˜Ðzí“3p«äÄn B£R$ûï8^… N<áò…0ú‚€p)³'dHïb”Á•ÍuòšJIœºùæ&´3gKã*ý‹€ÙÆlnQ¾%xº/Fﻤ$éœnÃ3³±ÍzAîÌ>Îõ@§•Â$x˜‡•RZª"Ç?Hl ·ÑPŠã•­¿ŸÈ–M™9¡M÷udáÏj¬)™ï.,ÓÑ™,¾ªBߦѩÔ›òÌrt ÛjåéØ6Û2”CÅS!£–w£%yc&(I«ðj(A«8”¤µ2[ò8É;=~ôÔà w™âX\\CÂDzú¬®Ì…_ó(߉BÝ£ÑjøIÈ1(„ËC (b1ù\Gr 6¦T3¶;¹8a{^K^x’âʆ¢ò9qì>úàˆ¸µ–)LÎrVɹg—ù j,|”ñX«rÔ"r`&w沃k×;~éb–2‹*Ëá KØ"| 9†jq½ên¬Ð<þóÀV›ò7âã²OôûFè[pBµXôØ&daÝYñŒRlI\aÕé1‡ìVÅ%‹#~ù‡“ŸÎßìñÕf>N©‰ñÊ”à¬,(+üfL\í‰H°ËÛ׸;qmšÉY+b"í›r­• Ìgq䜵Üb¥hÿö à/¸‹Ý¤ó´É\;e`˜Xéc£mº·ýd–,gž9³5Ï,¡)¹ýÛOm7)ˆVdtp&ëô¸`.‰ùèJ÷ZÝà>·P˜D Ž‚º¯P ¡+¹ÐeÅ8ˆ•ÏÁ¼²É†æ‚¹‡Ü´y•ƒ›“.1%ID½˜šF.!S’hF*U&k|Æ”ô‘r‹ß3õ“Ð)²KÞ96ó`±}äÙ%æ,‹™Sú7fÅ{¦Ué÷>Ûåí.I–îâû£W‹+`zÜZ`ëL»“ÛÂDÞ…•+‚Ù'Á‰J³ÈLÃ]ÞVq¿Mtzx;Çà¾Á×øüt· ï»Ö¥yŽéÛµÉáv¯›üímç´zÞþB!¬Ï¸{o‡xØÇöù Oñ‡pïe[ðñ»·Sd3¹ ,T*Eº… RÊnÑÈW ,2¹f+:SÊm³¥M™gîÊ&_ËnVhêUŠ™Ê¬`°Á ^^¦[²Íå’g”ã ’Á‡ "J bÎÅCÚ¤VöwÁ‰‘Eµd:“]xÉT'”–C¹²…@Á!ábÔ9aNS;‘^|fzãà‘¡ji2/n#7|ˆ§2± |ŸÞ?Å\ì,Ñ6€¢­lÔ F¢ø9q".bPÊCJá +š3v¸-CÍÐʺqVh‡YJ¼3mž‚¾,¿:gÒgàÅt¡ýn {iOÏ~=_â¡ê”ÒûK˜(O•QŽß—³Z0=wãð€4ËE´Î©ºmU—&{ˆ¼ZWÍ{õ²- )Tõ†ÂhöVÏÁ¹SwpÕôv§Ù\0ž«'¸j>TO0Cº¸¸Î‘4ϼ—Í´-v­2èU4h“žéL¥Rì ä줔‰øRzØÊìÜä—m†à˽¨ÃWÑòÌásOÓNA=5)„™ó„äüØœ÷†m¿z°;}_ÝOR}²rXÝÙÑpç _Áq»“Ô¬¯VWk·´5-Wdwn(p„˜§ýVññF†(Ç+Ñ_û¶68Ç ÷- {ÐîtØ=AjN¹"çÍ™e¡e–¨íض:¤Ñìv÷¬ci]ë ¬&›‹È´A î2 ¾Dd©Ù»O±ú&æÑ(ðk(\Í»œ'ÎVä‰ZïáõWá}€ „³¼ÍXñ¼¯8ÒFô j\lEèY¼C™V‰–  |÷`‘Q-ãy›¸àO;ëãËsëÂÒÌÎЦ¥OsÊEÒ}ý/ `ÕNâ8'^ü~™‚sPÁm^ŠA¬Á–†¨Kש˜ÌÌDÃðîË‚ÃìýÞîjk‚:³l¸»ÉÝ@ê.• <ùÁ ­‚IB´]Hs¥ÄBŽ‘²$©S@^à™à[–ïäsÁMƒòA+Á€Ê“/ŸIa×fƒ5 z·Ë^»;ÐbíîWÜi75ÛúmhuMK÷ç “Àá,#™H¢ºë a™ôAÍ%Dséƒ'›D ‚*=@‘?¸3‡975'a¨xGª|2²‚>xƒ¸èG.ÙE“ýÈ#¼HÂîÈ%¼ ÌŽ\ˆPVGîXñ`ÄÙ@F’¦€·T{PÙõ–ý/a¥2³Lk- 5´üBEæ³P å/øz¨ŠøTÊ«$Ùëú½Žhš‚:À¸„§A”!qºŠ°Ôà ‹ú+/*–²¾ D5$W&¿$Y‹p•«o}Övåi¿o]B~9ªïiW`å£ûb@›w”$‰!:‘Xyƒv^zP£Øú(ßî]…ÉÝiLƒz,?Göò(<øY%Ë;£Lý xešt³CýFxú”>¤x… ý˜`¶µ²â#~ÌÍ8‚§ ò™7þ²^Æú!¸Qôò¡~àÂ9ꦈ'xÍnÌ Î¥1¤1|Æ¢n.›3dª[ó€Ó×9¨gÍ‚ü˜Ë×6Øþá5¸oQ#|9|™ƒ­p·ä€ûŠO4xiFpà1‡3¸k:äý  î/5Qà-ß–\êÇÜwóxn>ðü<àù‚¿€+ñ%^♆Ó2,§^ù3`4ã.hôõNBúSü8w›G¸ùÀ›™ÙÀiÿ)$ HíˆhgZEG¢ùÀ[ó—üuü8w›YŽVp„ºZÓ_êgAkùµYÐJþ ~ »-%ëçoe}8Sè'@a½™¼Éݦl>Ákð¦¿qŽÇyy"š"1³Ž0ó´oQàØß`å+yVåõ¨ê4Xf@-Ÿ:JÈ%.;w›N è£À›4Šz@kiòæ—xÿ¯äê<àôu&pYˆ³Ö’¯TR?沑›U õš¼äëuƒÁ¦ëÅâ5Ì¡8ƒ+^§ƒe2… ®À4‚ ³DBÒKð¥yÀéë<Ô‹þª~Ô]fnvÙI´å¹ÀáuFð¶=ˆ6šÞþ2 `‰B°}hCꃩxåÌ GÏÓ m JW²†Š1–ç”ÝÏâ寊)?º)1–Ÿ´_G‰*¶5~þ+’ë„ü^j¥)Xo)µ&*µò“Cñ‡%ø°Ñuo7}0Š”ˆuN³ñÀä* ÷Ý¥:¢ÈÎXàùæ?wœ„lÙ‰c×*¬¯äHc4qv3S òª9ê"½‡è¤RGvãÎè`g±U6ùObeðÕÍ=u:CÛjºfŸ2|Ÿ¯±)Ň|`H®ýíf[LÒ©RæÑÁ¶­¬y²]€4ìT+&¡ùNs²FÈSXåJSÅ ©>I‘d-ææ0w‰ ÈÜ&¥¬2cÖ½¨Ý>ÄMö!n­/Xˆòw!Å“u.†È<¥šù2¯î¹ñÇŠìˆñÇd _Žï#=Ö6þ Œ! µ»r;WÏ|ãŠuòÈ¡4™ëîxF"ÇV8p@&ÒÍÍĵ¸ÛrcŸ2ìU­²تE ozUAŸŸ»#û^„ì™w S¨lú‰°)“&$°iv. ëi©³j«›1<žýÌFp‹­6ÅK6Óã©îöš4m7ÁdŠEŠÓÉâ ¤í®‰®ë±)À\f™mmh-oAq-•áúúF‚Ý嵌C’(klϺ iàfø Ýæ “?#aq¯²’gcQ+ÍW‡;¾„£%=(‘wÝ •ͪ«Y˜å¦u°=I¨¢¬wúíIÜ%\§ß Ð4xµ“W\/ý½Ã_}+l›ÛJf峘oýE)—¼ˆéñ—?“÷üJ1Γl\÷%èe³5ñx´Õ¥ˆ¦dõÀ'A±D‹sÑ\R›³lf…hœvä•^;2}¥×Û€ÜM£h÷r°×½¸(º3qõã¡?ÕŠÁÊþ„*ºæDc‘ÈÐz5 ÄCk»TÚ/âì¸ëèx;æAè9ƒ¶ÍÑêÌ2El³ß¾äû(ìv¯k߉FRÀ•53R û ŽŒwýô¨Û¢u3Ÿk²Ñ¥‘ÍåXëÅ*+¥É×ùI–ïISÚ°}žÛµ£ƒÊiµr¸½»}xxz°}xt°S=JiÕÞÅ%쥰0‰5Ý-q»Ca tŶ½jt£ ë·ÍÉÒ‘ºb9fÓ?I“oß< lLHØöðÍM”½ ˜¾â ñù¹ceÊ(€ì¬48ˆ I·ûά\ˆhÀ(Õ- ÑIÁë÷³¤†6«Ü.Ê÷¡ã‰ìGM݉˜àùbb;äTyŽ5'4,ð‹•‹Î뉄°¨¸²Œ â§Å}=íC°?ô¥Ä¦ 9´Åü¬m;Ⴜ¤âö”~˨xª~lö{ɘxÕáoÇÊ}ü,Òßþª­Ûž)}ÂáÐãNk@y2+ŽÄ  êvˆL_bå“¶þEÍ7"×ÂX»øSH‰AÚ³mØ1&6‹zʶÓÆ“´Ž‡¾ÆóèýÁ›Ã×Јîìý¢-jø ·»I¾ƒØÛjBÙV§êéïNÔ¡%~ÈV|ÐÕ@N"9ö¿´íóS"u»{¦P”ˆ!„w¼wî/ÔN¸Pva+nò|µ$ïµ­±vpôÜ”0ÝÄ«OÄiÑÜ Žl6BÄ;¦b½Ý¸æJ"˜vuѸ{i=¸˜9vwôÃÊ@ô!¿yœ¿ù=²þæ!ÓÒKì!mï5ìf l5QÜ”ðP~˜)Q3VÆ[:8‹Ôu­´qPqÝÌ4UKÚU—ç°ÈY¸8x$+•JÌL…t\¸ïL¶gÚá~¥º %dÙ‰5%×6´À;ÎqørmÍ,£F L”ÚwàIUï.²Š>Eh/è½ÄFdT€up©»æ*–93ÑUœÃÃ3 ¡Ï´o¶hÓr\ÙÙ¹ ¨ê2e¯aëè*¤iñ…‡òóÀLሮHR~ÔÁY¤nPõ…°9sí5ů Ï©?4ñgÚþÛÃzR¥^_m¶ÏÚƒÕF#ñ<íIhCƒZÕ`,ž^4@¥~¥»aWh²…¶0¢.4HŸ#]A&Éæú/+R¨ÕÊf'ÙPA„ඪPÿ9u­¯Vÿ4„_¸úÂEðòs%¿;"—=»= Mü}OâïG$‰BéŽI²?câߟS(#ìnDî@~ƒƒƒw$vtÕ˜RqÅ–®Ç!(2wºÃ ZÚ”¢hSI»÷¯ÿSÜxË )@Q`† =ÈBKs£+TŽt,þ¾º¯“ߣW*g ¶ª|«aioxGõˆwV*;oß2ÍÙ´ À.¹Kšàò¯ÿ¬ Ÿýgî§ m=XçJ;íËÔ|^\4qËBlÿÕ)"ºÔךtp{ðDöEó` #•(³ÛÙgÆ!¡hÐ6çA{Èå3a¢b±ÝmÒƒ¤VwÀò†<ÒÚÉà&˜ Ç)áPj÷ `hºÃ‰}Ã"´LXr´ŽÅÆ=p²/¥U:mpÞ·,:3ik±á%¡›Ô:½+píAÇÒaZ«ƒVŠ-í©•¹Î„Ý€¿ÊÆ‹Šal­ÉW:v3‹Ó´&¼¹Ù\¯Ož¬iQ¬ý•GÒVRظd#å*ÅØ5ØK‡¾ì Ê·ñ{0ö–ZkjGÛ{[Û[Zõuå R=Ú>Ъ»•ÃÃíC¾‰#ndjTÓ¸38v$ØÖ¬0[ÿÙp3:UÚ½‰è ‚¡ô¹Pjô·¡’ïK”Ix2«ˆ¬Ë ½UÓÕ”™#A‡1S©ýôÓÌqe´¡g)•Èzz®Äž¯øh1¨öº‹÷qƒJN :öp·OLoºÁãýE¯E[µv÷r8X^øÓãóc?—fßÊ-²ßl&UXNCî6ñ§e6¯Ü“G†\n‹•ÛºAúè“l=–Š×Æ'›â{UùÓ\:dßÿe%³ÅSôìÝ'ôüWtò«mŸ¾GiÔ@?í¾)¡zñ뻡N®PýÍÖZÛþ|qþþ•Q ¹Ì5_¡ß.>£—94ùôñUóÓ¥*—¨qþ¹º´bÝÜʔȣ—=ôÓÇÚo6JŸ½­5ûè9Zí£Í^½4 &еNé£uô¡ÒQ=“=ZÆŸßýåë.‰8úÛÅî©}ˆÒ…s´:BqT?ÞCëovm"`ñ¦FDM“XP²‡Vñ{C/ÑÆåGôÓÑro½È½A'Û±„^˜¨Žþ|ƒQr©ð—wÅŠõúôôìMûóû7gçï®Ð B_-œÇ¨üå &AÏWH ÿÅ¿\wíÑÍænˆ^ Æ—ST_~Õÿ0B‚±ŽžÚ°Ñâú3I‰-ÇÇ[]û ­~zsŒþü¥Þt­zv¾OR-aäQìð-‰X’ ¿D? ‹ègT.V‹›çZ¿@‹_·ÏOw³Å¿tPã=Ò3ûKèö7ôç]trzSÜF/¶®–jÈxJŠIER$KÄc‰à%"ñrV´]ô=Á>ÈûþZ_XÙ clêMøì~ƒ4‚Ä3·añæm•š&8ͦ®ëð†70`ï©Tм®cÝ0 òB|š”‹Aðª¹bQoZäEoqϦ•¦F’MÜéÀNÊy‡Ûmž¼Ÿ¾o·ݦ¯x¸Pêt lwöeä7­däk«åPÉd t“i.·Ä °{3°å9½“”€[Å"70·DÏ&Ü*¸–ŠÌ ÏÒ2ÛÙ½‚K ¯@õclj€@Û‹èÚ†¯¢+øÝÿþgöoÿm‡xËØƒÚCÁë‰|ß¿U^¥7LþD¦Í yã²ÿ¢åÙoØœõªÒð»IIÔÈ¿r,«gƺ¦ÇÉàOO¨¿ôv<ë˜ÇL)˜û±7î}Â=O/ôD•*Ä¢ÔHxSÎm³iúܹ<Ç« òfvýŽ:cÏ!¸¿ë…ñàèÐU°9¶ôXüèõöž>Šesyþ^—–cÆø78b•š(!(§c8®£³µÅ솮Çq™•Y¢ˆd™ J¬ü¬üB‡Kå±MNŠÀäˆï>FÙñs=Fi‚ožúÆtWÃ(=F”M$tTÇ¢žÐÇ”‹¸¾t^lؽÎp@´éöQæˆòÚ¥´3’Éc͘\T; ¥«v“ø–‰‡6Ó¢¯zý/t&tM¬5Û­Ñ*»EÅ7®‰Â™Òv` x§C-SR„’T"µhÊ+‹‘ ´Ëì}5†0/AoÚÈçÀ'Eã;¦ÿÿ²JѪðxüÿøÿñÿãÿÇÿÿÿôÇçûYHó®} *Ì)UhÖaÌ’\Tf¡èuDUyj.‰^ñæÍ¾…‰ “{ÚW«­ÁÀM™nÅhZMr “fv’(!0?ÖoÂd^Ÿi“ÚOPjuzW)­Â7 †êQL‹Jb éЫèl# ݈͖^õèbv’jYV¿ßëóiO®c1ŠN 2.~jQ;“àÚŰ3h_v,uS¬£¨}Å!ÑϨbõ¢²Y}êu÷±Æír)7¡ªí*ªW·d :Auüó“4KQWj'ƒs$˜t>„tᾤ³a´³sÏ â1Pщ¾~»’œ$ˆÂÝ´Œá™ØÔÑ c>Qp› ‚²˜êŸÕ™jŠ|üÉßù[&+ä¯ÄÿV¸ß‡)pœœÎhdtÊ'¦{ÿq¶„Y=“i<þücýÄ+Õêöþþñâ<þüQà[{³C¦Ë—l†üåh±*þŒå®¸*”¥¿M8õèִЇŠÇGUR¤¼âðŒ¹uÐ'¾6ÔýµïNñ H10^c‚ýüÝÉü÷Úwßw ÈGeí;ÿ±ÀÿaÊÚw8o”üÎäùù;“籺<öýÃcÿ&ýCää+ŒðÂÔêà Ì^§×ý¾Ê–^–É#WÎú½!ßüð…îoHú¸PöØÞþãýÇ…²GÝúGP5ä£nýˆÿXàÿÀ…2öðå2;´Ìï«pl¸¢ÇŸA·;/$`éö}bÍOÿîZôÀ ‘º¾ŒØ&GÍì8{ÏÙ¶À×ÌùÊœÌ9 N7қ¦j¦´Æýª'å2h„3,ð+ ÀËkþrÂh€×úâÞ|X'$°‘¢-//SbñÕ ³µ¼¼RªlV·¶_ý£}ëµZú÷¿Ð¯Õ¨£=¦Œ’2I°ÖøÕêPcíÇtò|{ Ðcš8i\tH4Ìd3jÔ°‡#¸k¾wuj]\®™9Ð$Ý™}:ìÚ!C¥¾ÕJ6‡—Œ4k”Â"qr™Lãî”<­%éUÜ¸Íæ’“ú‰Áz‡¸«õ$@v#Žì8ô  ô1oÍF¼ŒšúŠ®·…äÒ¤Œ®âÚ:Çâ¿VÞ¬b¾cÜÐoÒ®´ÑX¹‰'”çEÀCÜî*½ÐXšp_zÛÈ9Õï˜M¢ÚѽüÔòLš ìA{0XÒÚl²o]v°i­o@'¸&ΘދPï–ÿ‰B.ÝN{îô 8·U¢ç¶f9ÿsnáËûœ1‰>ÿ@‹žó?¹L.›{<ÿó ÇücZ‚ö•Ô¤'8ÿœ–'¡Ñ:p\¸W ž+m)?µ -&Væ%HC¯é –Ÿ™¹ès­´vF-a÷{$¹.ly–Ð •6@óˆ}&¨†bóÛ°Mš[£ß»‚$±~) `Aˬû“ç#ät³§]÷†Ú—.éA°AZ€ ðr([ Ž< ¯ÞÖöT€ÞG¯·µwïwªo´Íƒ·÷¯ì .¤½t!îí;E>HB€ô Äš7âT€ïx4¨ÔE}ÔBY(³œE£¼ž#„Ê&&J˜¢¸(€¥— (3 @'3dø˜w“ü-£QÖ(½|.@*Ž”2ñK\þÖ¿ÍO°önF×dHZœ\þv›!#ÓÊ&q&7RM€û}lWò\þV¹ìCÂ:w rt\ͨȆ²ØF¡NÁ VãŠû[4òοMCŸŠ?•Àt ÓIÌ@c"³P™…Œ»FgItž@ùŒ¬pÑ5.7"Ø©uQøQJÝ‹$1Mšè*8¥F%@x¸R¢“ BÍý)‰0?•YÈÌNg&BÓÛ¨ÍèFjs ö4t¿±±qŸNaã~½Â°¿SÏvu–`æ†Þ „™ ‡Ã„çï\àÁ°¡í¡.!°tNJQIL'á-Kß”I$'Ø ’°þä1%ª+€f¨W>#Qc&aÙd‚0„?8„3³QcO¯ôþ<s̼1Þn̽±Û×pîö¡ìä#dåò¡ÔÃJ(ð÷$¥ Û“p"ÝæI¶ðtûÇI8<6â¼Ä"í°H,”1—Iå Â*–"%2<‚RO¬úz†;'ÈÄȬ ³þ™«â¦ÕL–þY/YU•däòR±œÔ±fÓâw´bvmÔÿgïZÛÛÆ±óçúé`œ´%­ˆÙ–4ãQœÛLÚÙÌì&íìÚ”§¼)Q¬X‰/µb;}žýåÛ Ê¢äìd›x &4ÁsÎ \H‘tMTù%A]ˆAI¨E½’ ‚DVÔ·êó’×*™ ö½9´(š!J €yñSfM––ìW«sXf=´!IÂ^]¥O)=™CÌ¡¥shÙZ>Í"Ϩ`«1ü3ýUÙòWíÔù¡Ëý¿)âß4q¨üºÕìÊ«E¬¥¥Õ§.9¥9¥¥¥Û”nSzƒÒ”Þ¤´úÀú¥·(Ý¡t‡Ò]JwUYª`¦Kn™ÓVý¤‹ÂµÃ“üHÈeRy©Ja´QA;}7)¨&¬¦Ói¥Np®ÌQ E‘wS ‘Ò5v‚]µ³Ay—L!ÈDåG Mi¤¶Î­+ä̧ìe}-û&ýŒ)ý¯ÆoÿΠÜñÃF°¿{:=ÂÑô( 1Œ‹Â8ÂÓƒ{ŰëFlZLJI!È@Ä ·˜Aïyª3°>ƒÙÚkŠ•ö®-YÍóÀ®2Ýý’Ç÷½³Ü;Ìå×£Õzô|é™üúUH¯åÓx4¦5g¹”¨•íBü½(‹›Ã.Í=½^Ú2=uËôÓ-kÌkê¿2æ™ ~òÈôÛ¢>!Ú¢ôzÊÞÑäAÆ•aKôÔêõº‚+DWhlMíeùPõaòÈôÑ£Ÿ;x“q¦‚%•À°6J·ÎgG⯮PP¤|²J4e&ÉèøõLèŠB?Êèc‡Áü¤öü…•òœ¨Í ìkÀª"°U¡¨‚ŸÏ´æv•*›t”5‚è¸ñì9þ¼øiýè‘ôq-òñGccÞ³çÄè^Ðñ;¦ÜWѤž[Ô€f(ÍÖ9cƒ:6™6“I‘äH™‚®+¼°Üº°W‡¢2˜ˆ›ç;ÍÝ(©¨9Xó£°†ÀLl U T·ŠvÕÙ®:ãꌇº±6ÓðÝûæ‘Ö°NŒ’$w<=(#’%IùSõpá´~h*)“”Üͺi"H„ïò÷auø²¦À|ù7jÊ'×(•!õýEÌÀ8ÔZ“t¤ó¤Õ4$•”Á«i¸©h&aªùæHÑeS#ØŒCÔ–‘4g•yII:‡74kgúkáL€€•Í«Øp…* l5gfbýí8ñ³<ü8É?/ž8Ér}y³\?2çda®´ï@-Èò˩֖úC£¯bã·ô”âw•L†Ú_=ìBFX¼è L—‘nªTãD}ƒOö2y]UJ^Ä‘vhÔA¨ó0iéR™ŽtÃGácætZ²[Ú±ÂGVEŠ>"[E^E8ò¿ ׂ¾ö¡hU†¶h•T)½ªétÇkÕûFqä ¿o´„äzG¯O“ø(QR‚”,Îj¼ÄïÉÛ‚ô"û¢)óÚϼSŒ¡‡MåwCr;°÷©–d@ëßõ’üÕÈ|%0qŠŽSbœÈ—$^x÷ÊsLŒËg¯<Óó{µ.ÏNØ¥pV1ÈïOƒÏ`ÔgµIG^²—zƒÌSÛ=ƒÛ+Ü[¥Í+hHÕ—œ]):«6êØG{’Í)ós4I$^û#ÿLøcÿ-壚ף7ã·ff¬!o¢"þ¶õHhQ‡Mšxoõ<(­xÌ“pèö¼7+ ùÉl²‘äòVµø^aa¿WØØïVö{Ÿl§6SY)íj“]ÊžMi4RJw´{ÑÙ`/úû1öØÑ?F±'ر§üiqn&è o·Õˆ¦­NtM†kLÍo-ÝÈÖ,YF¸ïÒÖý‹û =Ûîùkàò¢¿ÿQ Ëöm ãµèLI«õ%}CA¯ ·Š…|M±Vb}bΊsCiT„Fš ï/*}¦ðÚ’g ^P*Ú0e.E¹ YL£¿4ãÅÙÎÉìÎÇèL>|°nÍ`·:Ý–5‹U§7N*Ü8©pýµÂÅiý,XJÌŒþòÑä.LBèvs:©~\%´jQJ™YYp¾¬ÔÚõT=W¯7£ÿ÷š1ÇŠy ò¹ÎyƒåÑ Ø–ŸOÅ%£Ý"nl«;!&j§Vl3óMä±]ý7S?›b&\ëC´Vš ËŸ{> ´ôüWˆÌ? õüƒ b ƒuµ‘BÇðJð{%ƒ]šÅÜŠM-ýsZC.ã´ŠÒV~Eáï5EèEè7Ÿ(<›®¨ÌÛ¼2 òç*}xŸ ç’¿–½<™ŽÒà2?z7㣠ðP#÷…î£!J?«-zAi.•tuµU Öª &{E‘5_¦¬Ìçp˜ÅQùë$ Щ+%`vº,¥ŽË*\*«<Ö»,OúÝÓ£É[¯áïí{˜æx =Ìrä"ŸZôó¬uÈ^™T×…Š’nây˜z/òw^‹¡¡ö„赸Ǻ]µ¦»@®íkÓ1íǬ_Nþ=hßÇ ùadZæàò Ú¬'ÿ|^C$¡.Cïšz³Ö޹-å¹ÛÑ„a"Ò^?ÖA1:,©!5:²é™ ˜g ̹¢“`îCœÑIñ$#Ëo’L&˜éa¾ø˜âèÛ.“ êYÞÉx$5Ísõa• Ç~Å}÷yAD~Øþr?¼háúÈêJÖ)J—ÇüDÅnû™ª„'oßåce°N‚MGlÜbó9ü[g6Zz¼ÈúBÐîßAŸSNPMGdw'õ]Âìʵì¾hú!ÖOãÊˉIË(3óðj7©µ¼»úWÙò hó›-O.Ùzz~1«v·˜=’{•¿|ÉŠÀN#%h z±ˆQ뇦*b=¬Q »KÐxÁ®á[±%PÄê%¤KÝÙbsY}˼\O¾Þm \`+kè›bªCŸd@Ë®¬]+±¾ÅNæ'‰~4À–ï/TH³BÉ+ŠýM]M³†Õ‰—–¹Oü|¯ô¸•¯ošW¨{sÙm{›Í­t}÷æ2÷æ²›ð"'#éÞ\ö˜ïþ ¾¹Ì}âç÷ÚW1ºOü¸Oü¸Oü¸ÁÚ ì»Œ¤¬}æ;‡ÿbƒµ¯pÝÈ}âÇõ_¼¹I×?|æ;‡ÿbýÃÂÅW÷‰Ÿ¯Úénß”ÔÝ(sñööº¾»QæÆÖ7a¨a$ÝØú+0ß9ü¼Q¦6÷‰Ÿ¯ê?ê‰Ï1ì'º^ßžçGÑĨAê;õŒì Ûâb›§aK©_ƒØ2óE¢ÕP•­ªLCúEc‘³çÇÆð@ýHÒ(Øò5âehƒX–ùÙúŒ£Õõãm)·>9Ý~=9>YŸlÓ;º×߽ͶOOÃÖã Io=Ý~•¬G«Ñƒi±á(ÇhæóX­æ ñyoGÇ4JŠ_ssadl Ë÷;P½[´k¾\W> n=øj\~®ÓÝõžÇ‰wözt’ÓýLuc.¾p»+)_ãÿ õLX:œ½Çk×êWMK×õj‹\bíßmëS¯’k3.Û¸ÊÇ—QTŽ*t†öÛE°g·@Åò’­óýtˆeã¢xçÚµ ÄÁJé¦;{64¾{z˜ÑKµ'gÞÛÉQ®n³‡+‹Ÿ ¾ñ«"w½3j¨©GLÒV—_’]­™9.õwå 5Î^—gÕÕ}oÆÓ¥—\×p½­¢:þhßÄ_±Ýf®¦ c×7Õ…±/ÆÈ/CçÍΛ—”pc¼ÙõºZÖõº.N-0ÕÅ©/9yˆ³l¤§òv=úÀ¹·sï%%Ü÷¾éÝ0ü´~¥ÜûM‹å×[-Ÿ¹×ó¹Ð°´„ÜR8v“Ñßf«sõ¥v¹^Ðõ‚W‹p¡Á…†¯§¼Æoƒ-‹~¿v«^KV½ÊßbÒ£¹Ÿø;áYä¨#eÞ*Uÿ1=—29ÒÎYܽtqs¾©.n~†¸yy‹Ú³ Ž«:£Õ¢s@ƒ«ü.ü7µj”Fý‹iØôs7Xr~I 7d°Do pËãΡ—–p#ú¦×Ý€ .4Ô‰+ûÝòø²Êr®NÛ­uu× º^°Ž ´ÝÚаly\^ ûÎÙ³/)áF8»[Öp޼¬„áÈn@çt5p\h íÖ†·¬á\ý–¸ºë]/XÇ…ÚnmhX¶¬!3«ü2L½îëx¥çZ€kKJø´€~¥´ßÙkfÝC®–#¹Ÿv>[]ˆ[j—{¡ŠÜœ7;o¾m³Y×ëº^÷b«‹SKír/T™ ×¹·sïÛÖ »Ee\h¨Wö»[«Ë*˹:m·ÖÕ]/èzÁ8.4ÐvkCÃòª¨­ò ™ï®eSÍ÷[~×@QÈ>ÓGO´…·íC'wóÃl4\YY“4je¹|‹Ã»÷G²W™~8—‡ÖÎÃuÊh‘$¦-™*™©’™j•I{csa^?¹VvÊæéŒ@!Q±{‘”UØ"¡ªñ‹d«ä¹²¾¿WôßemÔÚ!e)¤ ì¡¡0M[4‰ÉkµÖŒ²úWä`ïÜÁñ‚ßw× ß4üßUÀï*G<EžG³|%Sãr;Rüù …r¡‚¬Ïììûéäì2ˆ˜Ÿäãq ¬ ÿ%Ê´O®x¼ç)¶B°)ù5šülK¢cS‡í®œ Š2m¥†"ÓŠxh‘bE:²H™"X¤n9RÆ6%þ§„èÿ Ku7ÙÈ£¬¶XVÚZb<\ó½2&ƦÉ*UpUQj-J“êe¢ò¦¼"çÏXâ¼û Î3âïwÁ?ðJ¿†±r†Ï…JÍr‰Ÿ¯†kM«Ú'Lš•šË€Íø¡JjjI,h)½–ÛùWÛ‚¿·Ö‚(D¢‡Doï¥7høášŽG¥,<ŒóÞË‡ãøµ—˜?dÀbf(dЊ'zÞŒÜB;F_Ø“/bÈÝÑл“'i6¢€´÷K34î©‹òËŸÿò뾉XÅIœM?TšƒÉi´ +­÷ë>:[â'Ô¥NÅSˆ§¿!›b\$ï­¿½„åùû÷ïËn .\?ÏÏÏçJV9&÷+™×TUQÞL«ÑÙ>Ÿ';ÃÂ`aGRwk ‘†÷ÿ`ˆdIcü0Xƒ5Çe0Yç˜Ná•4Ð1âoÄ•ƒCú½$¸Äß^CG¤×KMÄ”Ã^OÐ^O~ú¯Ÿú¢œ7•-8Ö”X ˜{4ºç±Ò•ÇëéFͲà¦v¯§lé¢Ub˜i*‘Òò‹†YaãMÑ&¾JÕUfÛS…J‹GûÒ½B©yK-1Ïòv'5Œª)OçÍF|ØNQ·^œX~JIVº,Ú«áš$£¤Ñ5­Û$™i}ó_áFËZÁ_«Ö‘FÁ…5Ù&Û–%J’W$»¢l2=#,*™%œ]f­–%Ünᕚ”L֚ô²©æSʶ®ä6"ñ" ™Ýböò ¢Öæ2‰¹Æ×TÚ÷wÿaà? üÇÿ$ðŸþ÷ÿCà? ¢NÔÕnBs»§ßÿðì‡gžq8CP^G½æCê1áiíž÷xÅÛèy˜nö¼§+ÞVÏû~Åëô¼V¼nÏ{FÖNÔyuýçNçaW¹¬J]õ?¯”£©]½~øiàgŸþ0ð_þëÀþ›À?ü±tЊ£_½½9_!Ä&©A'§à ˜)ÁÌfN0‡óÁ|M0G+ ½YaÐ=XaÐ_Ǹ:Ë@¼bšì*>‡qÖŠÈE«ùêð ›Â¥Æ\´î·>ö\•ˆ‰¸m«WfîÁYn­¤°V–[ý\g•ÕhTXE\žéV¹\ÐjÆýã Í4#:Ô³ Yy ÍEööãA€¿QB‡#L²Á…¸ßþhzÏøùO/Sl™ªsJå$Tû1Õ>èTÿŠiiVéÙj­9J¤ó²Ð±Ê™WHQB]t?ü@·KªC–$JR1ªÄXe÷ƨEÝ”MÏ´"à ÑG†áé!ˆ¢ë®ygg'.”vJµ†ÑS|¯ôGK³§èÀJ&Np]u%J¹ƒÁLw· k;˜E©2 ijM§yP¶:™ ûЃ™AäÁì¬ôàÀ«L¢ì¢sÿcô lXˆäZîÆæV'z÷Ó0Ó£E-‰–h7z0 ?„çÉ®¦Õ˜[#ÅNgl×ÜÂOm•±h,çú°¿˜é«­˜Õë³Êœžˆ‘©ºÉm¦ôÒ/iªoÚ‡¦È‰A¦ûµ•г.‘Ö.|þIyŸ_?ó™‘gKöú-†cØÛØ7°obßÒ¯ fò5ÄØÁgmº;Ùbà3ð9ø|>ŸƒÏÁçàsðø|¾_€/À›t£UÞûiµÁoƒß¿ ~ü6ømð7Àßü ð7Àßü-9bÁþ&ø›ào‚¿ þ&øpŸÖø[ào¿þø[ào¿µEcü øð3àgÀÏ€Ÿ?~üLvŸÀÏ€Ÿ?~ü øð3NÝ+vðŸ?~ü øð3àgÀÏ€Ÿ?~ü øð3àgÀÏ€Ÿ?~ü øð3àgÀÏ€Ÿ?~ü øð3àgÀÏ€Ÿ?~ü øð3àgÀÏ€Ÿ?~üø9ðsàçÀÏŸ?~üø9ðsàçÀÏŸ?~üø9ðcÈ|àçÀÏŸ?~üøå-%üø9ðsàçÀÏŸ?~üø9ðsàçÀÏŸ?~üø9ðsàçÀÏŸ?~üø9ðsàçÀÏŸ?~üø9ð àÀ/€_¿~üøð àÀ/€_¿~üøð àÀ/€³ìà¿~üøð àÀ/€_¿~üøð àÀ/€;øÀ/€_¿~üøð àÀ/€_¿~üøð àÀ/€_¿~üøð à[[2.¸àBÀí öýM†cØÛØ7°obß’“*y×M‚±ËÁ0ÝÅžcFSTÒ•4E%MQISTÒ•4E%MQIS}}}}}}–˯ÞÕ»÷þå_ÿÍÖ÷›áz«Cö¾ùvû»þƒbqàßÿãÇ?<ÿéç?þéÅËÿü¯_þü—ݽh°ÿëÛë·‡“wïŽONÿç È‹ËÿM·†òaì0±;0±;0±;ò™/˜ˆ‘ì´;0±;0±;ÐïB¿ ý.—‹Hء߅~ú]èw¡ß…~ú]èwåbô»ÐïB?†~ ýú1ôcèÇСC?†~ ýú1ôcèÇСC?~ýú ôè'ÐO Ÿ@?~ýúr¾"ç¬ ôè'ÐO¡ŸB?…~ ýú)ôSè§ÐO¡ŸB?…~ ýú)ôSè§ÐÏ ŸA?ãr] ;ô3ègÐÏ ŸA?ƒ~ý ú™\?ƒ~ý ú9ôsèçÐÏ¡ŸC?‡~ýú9ôsèçÐÏ¡ŸC?‡~}yãý!ô‡ÐBý!ô‡ÐBý!ô‡ÐBý!ô‡¹|ÊZøyomðrçÙŸžÈÄ»¿ù±ÿãzé¡Ü~~A2Ï^üøcA£Öb1æåö[2ó£0Ê¢l5»ƒ~ef‘9DEçÜR²Oj±ÎÖ¼Ãål…$ Š’Äi‘㆑A²’Ou+¬òýþv+¸D¢¿eA\1N+èLËÎDqÅP’Úª/Cmñj³x¥{/émÜc4û|U‹x”î™Ô;K½‹ˆ´ãÛ¡NÆ¥uE]b’9–!P¯ å(ãÈ2[›Ô pµËj*-¸l"‚ñÍD)'uÖ,DTæßª_MÆÓKÀóôî¬çµìÀ²òÆÜó@‘ÚzŽ‹<ë¹v‡hPðsÌ:¾ÒnÂsLcÉT–žŽ¿SÒ¼„L£†ÊÂѼÝèyÝž×ïE–{…¬>‹æ_zŒÔÃ-\ªŸÁ{Š]Ór’ˆ±85Jrƒ GÑ"„~fÖ{Ý̾unýlù WÖ7 ¡_ëï_%Gd@øÐ¼ÜÀ=ÓÌúæÎF"ì`ßòéÍX·ì þóþÕPÌñÐ[¤á¿; M˜G¬¿ßa›Ùúá»v^¾˜}µ¹½º½ú°2»ÕùŸk÷àè4fwù[/87Æ@óUPÚÜÓ†yÒëœGƒù`|~UºŽåNÏ ½§ŠQ›2'úOÏíà ™Úx^Œm³«ŽÈÓK&ÄaX Ý[„eÖeÂ%Êa‹Ä˜¹“ ™ÊF~ÎZ¸½Ð;nú|ˆ_°>{Ý‹…V§}´Ðj¶½…f{¡îyõ…ófï˜âNìöÅDÛíú‚lKwgXG» þfoá¢s¶à{|ÖæEXå6ê(– ‹2®¶Kž#PåÀÓφ܄–¦³û^óô!º`2ˆÂÉ׆ó̂ṌÇìf¬tÁ+XìºÛ‡·E‹Do)íªH€51>JóÊaP)¬Ón]ˆc$<^B GÏbBÀ3Ö¹¡­Ëí`En«MºEy1GBeµý%”m8^à&G=îaW:²‘=¦ ;k$c Úk$Eãx$àxSäpÉh9F6€qíþŽÌË€¹nÖ˜su8'¸‚%Döö2F·9+ƒos–!)dàÆXÆ®{ÆYã8cdŒ¾\‘@S›\Öepf§%x€×БxÓ.a"Áº×0ú—ŒbÒ•¹”Úá´ {‚?ݨ䚼 ä=bµ C,}U‡Lý"»zÕè.5r›e*}Ãa®QgrÎx˜Øï&½§Œ£Àè`ÀÃb#" m¥`FȉËàL:×7¸@0tðF!ü0µa[6è%¦L…sÕPfA´{`¦â¯½)‚7Eðmï­Hé6·¢®FGÉêf,`+šd+6kç_KÎx$Ç©wn£T’2ŸBVõ_3ø­†PŽáåÐI”^:P;®a[çjCMßã¹–![é›l›[õXk|EÍ>*é+~®¹Öîòs½c»mäçNš­V³Ó} áA áH=!4ûý›ï¾{óÃÛ¬ •°V[DÀÃZ*—VÖïØÙfï¿©¾•Øã¥ ‘²T–#CÇ²Âø½³B6‹ ’Y#›ÚédÀ¦t6¬?$ Û©&lÏòq+![/…ƒNr#i ò£–$Éû˺ÌBòˆ¤~ŸÈâG±|ÝLˆHÍÀD„c,HQæb-Ø6<_•ŒiÀªVäŒìÒÁ#X“Ó ÕI—ì‘Ó©FÉ>FIÙœ¦´€ ´-’l\Á»Ü,Iß®·vmfÙ;¯ÛÅ'Ÿf¶m¯ßc ½wÞå‹Ö”sã^Ïë¶™×æÓ[œî~õ'RMù¶ï±fãjØÍ–SkÒÏÍâó-Š˜PJ³5×|»wÖ­Ûÿ¬ÍBªÊP¤|@ ‚Q¸xå»:ü®¿ÀïjðÕ÷?í¼ª~ põ1?½Uáâ•°¼ °¼XÔ.˜;ØÜ4úJðª Õ~h”¯E ¾àvØ–èb}!múB‰F²M Æ'Œ[ÔF÷b‹ÎHˆãD67÷Xø/¼ iÅ%¯Á¾×¨Éõ‹#Ä–ž(œ°¯(l+Šr½¢b½¢RÑ9©¼ã‚Q´%J×T·ÏºSÑ¿·1|›ÚS·s„Ò(¾îÚm—„þk ~ºnt›®P>Û`õí;9—ô$×4êƒ>„\ .ÕZMm뻚bÖ OS< ‘´8¿;ÚH &=øß¥ºBv‰Á—úÑ>q<¿‰á1<Õh¦½õ*:ÁÛûí]¸.³ÚƆžÈ¾iµõѸǠŽ}‰ c]˜Ë±ð‚E“ê]þ.È\AÊBÁŸP\„‚S39mIƒ<ÍâÝbX¢ûèÓ+tˆA³»ë¡k¯Î:g=0ß9ç¿®}Æ×ô¸5Pïx¸5Ð>ò9²z³Ñðº^»×ºÈ³Ÿ=ö Üp Só‰}áx¬Ùv;Ý.Ïô¼HÌŽíÓS¯»:ëúÍÏCŒ.'Ól#MŽÇg Î]þXÌ›f¾Är\¨{ä½åàæƒç÷Øl1OÍ×2+ÆUYYbKûB7T‚¸IŒ‹ÁKZŒHœØw<€'†¦‰3,jhÜðH;"A  ÔoKC«mŽNW¶mÔº²‡Õ]‘&+IÀze¥‚¬~-…'M5<¡ýÔPô¿ô‘uVØ>ß@芋wjÅRÏþÄÅîNpK…Ñb¾PX¤ŽïŸ5{ÞŸH$Ð >¸†„nçäÔî5–8™‡DåyæpùöæEum¼ñ ç÷x‘¼×áHº=ÄB0O*áÉ[à}þrÞwÆPvéǶæöžÃÊäs 9Àð´¬…= ˆˆw¸+\‰ b1 šÆ£èÐÝv@e6Ýí@dµh-'ãû:ø%̸”(£¸HKСÃÜ6 0`Hy~AR õK´PQÿ ¶SIæSReãᤠWxð%S'ÆMfe?Z‘,â¢EËf©mñqhÚÑkªáìò¯b!v>­oˆ“"x˜ê\ý‹Ko Å긵 n]ðdñáP}ó u½&µ Ä$ž2JòD­# "çÈpan?'à“‚eXÂjZSÀ51k¯9¤¬Ðô†\+‰¯.ÞÏ«dg]¢N¥8¨%FQÄw.½ ÔBŒ´Ûr¥ǜúQञ…Ëu™M÷/ÂN"6mkÈ·\8qÎŽ~çÂÈ.dQÄ*éBäW\Y×ö.ìæ‚Ê’ >ï ñŸ)„êa!4i³-_²TìtÙh»Ö¶v«Ex.ý\1ìxAÝe£½y5VÎL˾u^‹–pßú¹vƒ2Âõ’äRî[»µ—S»]§Jºo½/‡fxH¸õ¨à’ŸRÁòÒðÄ wéDxaè Œµ2²<Qž Õg&Á5‚)8¨ú£‹”ülÈä14‹GKÎpo-E ÁP,d¥ù»‰áA GrøIÉgµ/—Í@µ¹â&£“iÙÌQ*áhuU@eÀ¼N }c±i,öñ]ºÕ1dÞöQ%}ßÉa1ƒw;9ÕÆœ YÑ«¸c)7YMJäopê1¨ybï ˆC4Ôp;ŨÏy£€ÿP4àg¹ rº}y¼ÔÛlßÖÃ,t ÃÓP*¾aÑàÌ•íøÈkÔÝZóoxÜü‚ÁSì€yx${e,Òá ¬†;e”ä“#òÅ‹b$ÎØ%/30á˜ã˜’a¨É   §g¤Õ $(‚k Ÿðg‡ÀS®‹IR½6Wwù’ëô!Çøºh³˜•€Ã4*#³ Bß\n‰ë"±IR*ëh¤¶`QpZ±;Â9 ªæ>ÖÓE‡²'Ú­Óc1áLk3ŽË;ó¾w\3Žùc5GĘeRÿjà5æŽòƒãJ3ó·Á')E½FãèR´)|3ÕÿM&=Šà‘¢ºé)Sø ‘‘ýK·šÅeÔ—òò/~™¸c³ˆ¿Kø»Œ¿+ø» ¿¦ì¢I,SúΉ*7Ý–Š}§…˜Y89kõš§°¡€ þ°ßàõ{é :2ý;;Îëüã£<†ÃæÙ…'tÂ3d´Ï <þi¾Ž«œ›Pç†Nhevž¡­?¥ >Ï©ÙB¯Š5è¼àSM¬ÙG¼[î©£„#V155Rk«éÊ*a:³Žr –Æ‚µ‚ ×v|˜M[„»Rç§bƒ)Ž˜*¶º%¯8NwXrŠ¥¤/Ÿ„D¢Û V‰,V‘¨¯]ƒà#¡Ýwø“O‡äñ˜-ÏÇàEyø±#XŒ«¢2ÁÅ88¡Â]9Ç¿Ÿü"¤œ0ÿW„û0éQl¿|…Àý¼&µ—ðBõ¡XúÞ"Œ)®ïE6÷Â3蹤ÌÉý²älW7U€„­hÀ›Z´€©ã(˜l B!‹qéÖ$£¥ü1qK¬©á’Ystfq[l$lŒ‚­±Êðâý-ÞfHa÷²Ò¸—T·8‘®$V°†‹^“ú•L o.õIJôƒÙ|¿Чhq(HLˆ÷(õ^Bj@ñ½ÑWóÅëáäbh©™Ðp$çcÿÀ©U2ð;$+…Šä&Œ(-CLéy²‘-*àÈœ…Ð Ë\_rþdÛKnU´çIí›±‹+<Ô3Bâ7‰˜Øa•N±ÂŠd6 âA°}š"*÷Ä÷ö¬ü\Pð½e¼‰ÝÕh.†•ž§{Ù1…J™“W"'¯f‚ÍT·Enåá9¾HÒ‚-X™]‘Û­¹+"h7§lÂ&„«@Ú†­Û°2\Ü^¯mÎû°"n[”r›JI{ª"î•ÈÕ«! èU¤”¹°X;±q„ró)ZíòS2_î>Ü«í×¾ýZÛ~J—ûµHl†· 3ŠCÁ¡Ì¦Ú³’ å+£¤¥å®UÕ’f$¬MiEbSícEŠ‹¥¨â|§ªmd%ô·¥v²TSߌŒ?ÚVV* îe):Ñȹa‘\-^§È­°Ma-Ø ’…‰¢‰|   vË(xë‰xê›^Á¬E5gz5©õ]¯f´á ¸jhÛ‹ ˆÚvtßKD†zȶ¾ñÐØ~ýEÞiç«)'Õ £õ–¿WÕÃô­/ ©bðUtï‹ ¿yówO}ókØä”£ ïÇЙ^žˆXP›d¾J¶n†wÉÒ:\h›,ˆ:EhŸ,­.!EüÐF7ÊÆN wÊRˆxÛ*Sø•¬'ùÝ+k†v¼R#šÚòJm¾¢Uò\/üð¦îy 4ß½û†®¸Ñ[⦗¤(î<|“¾ë%ûÅë¿|­ßLõÆÿD£„‡Ižé¿Ã¨ô”i-V°64ö@ŠÈh´õêÕè½0Q΄ñ8ZEŽVq©ŠûHUÜGªâ>R÷‘ª¸MU¶&‡ 1gº+2öÝCÜéMùÓF¤FãQ Ôì·”ÄNÙŽK—]Õp•ÿôMî§o†ìÇÕïúîý›wßm³ŸØyµ;Ï>l‹k-áˆÐ†\T ‹7ê¬(D¶ã;r”(Sg›bKN¼ªêÙ[rM¹'—ÔÑÕ¦Ü9¦våä :˜ð†=̇çº+ŒÐ¾Üh`;Syæyµ &v i±ò²žÅÔÔÈ5oL^iaŠê¤IÍ —­ ¤Ð:ç¾´g)6;ÃYÊj(ÂÀâ#FõНKSÓ¨•©;-C©¤%ª K•P–«¥ùåá”Ë©†’JN¶8¿tbj8±$n,Þ¨`‹# ¡•qù” à o^´ìáT,Ÿ5*Bã#<¡Æ!8C7mŒAÆ:ºµä*@¨½¿¾QûšâÖ¿þá§÷¿þõLš¦tºvëEÖ¨ñ—ITR1#x×2;ÉÍdÔÑÚ€V‰HUüp#¸¦gn ÅßqôËç9[ 6*¨cq•h$² ÚˆEÞ†ŒÀ,ž®0"šÞAƸ*ñÞQSò°Á4gËû9â0Ág D §íC¡¤ÎÁºãsÐ>‡¼rå \r§DÀ¼ iDëJžJŒQÚ‘´}£hÚ &4Ic6 {3<”ÉéjWj x̰"h)£ù×R&@¤ÓE<÷½àEŽJµ… )q¡zÃ\#[í©qã¤O5øÝö ÷Ù1'¥4Tòôâ„SGËJP•zL¹Zu"5¸‡Ì gd$3ô™7&)žò€H| ‹¡=<4ðÙÎ;xãÀ™`e þÙâéà|¨ • n`ë\¼Æ0‰?™Tüéï ½ö­ƒÄÄŸ3âOäg\hœ³ƒ…5wʶeÑb«R“°\•-¹\UøÐ¥u>gÕù¬®«ÑM2°!o­…Cfú™ø>­ÆEÛk£"ÞúÿðŽON?p× 2Ûï÷á0<°×çÊž”Ä™€çÅÅ…Á¸Ÿ C.\Ã"Ý6c(øô,6n#¸Ø)´*[Y!hR ÊÏ¡)ܺïÖm× Æ~ÄíŠSQ6/…ŠR`‰È*>Ó|;¥”8\>L—ËEçB¹\ÔÞ…oðêá]-ƒž7œ¯äüMþºÂ<°4Ù¬ºŒèôR’ZC’kÚ‘¥Ãhó"•qŒ„H•š’±Ú©@AYô<_µWžå3 ञ¡\ü (a8 “‚5Â[ 5?d\Ú`®pDEk48™‹ 5Õ׌P¥ÓÐ Ñ‘`3ªÊ§E ¶:ÝÕõ{°WY ˆ \Æâ‚Wô¯ š*¡=ñj¢Þ~ š˜ë6]Æ,&a !öðòÆÊd§›«q²Av°ïÔg"×ÑD—ˆºIuSúx-AÔK¾è¨€qZÓN0ëèëaè]&˜së<»&õ¡:m,xÑ‹)^f¾‚uݦª,}î&#é‹Ï¨ð …Àž™u¾VË®­ñÖ æƒËKÕ9å# (a\½X»\[[SСoS}‰`àO2®ôyl{ý I ^ÅÆÌ"æ '«æ*nØ÷Ÿû!zÂk±ËVzÐdūŢu µo¼¿ÏË.±­í;5j|kûˆŠ?æeó’üD˜—óRÀä˜<‡û6“ß'á|§¶”ïÐö1œ³œ¤D¼Ì,8>aèw¬Ë…ht82 ŸØ77h )?ÈðYÙõóa lç. ¹Õ\mŽ‚øôTYQÔGÑ~d™µ@í. äiÆ_4мÍk ‹ù¥ü²˜±á{Õ;öòh.þ„òšÑ¸x¸"b y§ÈJ…‚+§‚¡ÀØ,æl'oË‹Ò`¸ü&˜”ú³Â•—]`‹Î-#ßù˜™ÑØ)Ð|,Q<•“σ«¢P`sr#!ò#!GBdý…ǹ pg–>@ø ÎÁh·ì®p9Àñz\ ˜šLÔí£sy¥Oÿä`çC €Ûò;x`~¯‹×æÑg²ç·_ô™´IÜ׊ |4oàòí™rÊl$øl¾6žœ[ØÖ%±ê7çݹUG÷%ÏVWWÀ¡ÿŠúW1‹% e*8Ýþ$ï1&3Â|γ|>ÔòôHÆ‹Çé䂊åÅ¥1)м%Z:Fº@¶ €xœ0cì.iÏ,¬ãMØ,øµ‚—¹—øËÔß,k4yÓ‘®¯fŸõ=·^ðñ“%ÿ‰>oT-.hº¼õÕ_Î:=oFXXÍäç*|òÌ œùqú†¡’7Ë sÖ®ÏSNÙÙ)4N4DŒýLJô¼ ¦y!š¼…ǰ¡OŽ™…¦OÛJ²  “ÕÝj=06£Uï%M’ËÖs‰ˆþÒµžCG÷C8CÏûs5é•áaœ/B8_Äq†^ ÎqœPù–Uoùs/ù¿”ºÔ+ÿùªŸ¼ò­Ý æŸ*ŒÊe{)ž#›B~â†þx挗âùÔ0~ç #ó1c ªòæÛG]_õ£®:F |600I,L?ÙQI0NîÚsʃ©2Œ+äþ=³ÀWôXíkµšX oÀ.î*ì¸òàGºÎÿ9ë˜ 1Š¢rZvûÓ¨TRoIžwÞ[b°ÿŽ2€®Ÿ»‡}¶ûŽòˆ±™¾Ý,þyë²~„ŸmÛ ™o_é´…Å‘ 3—„S@ˆ­yŠßœÅ[?2EEÙu\•ŸéûLô’gcwÖ휜xm2Žoý8 †Äô V³Sok; ¯Ã Ó; DU r‚×$ÜÌ$”Š®µÍfÑ Š÷X2s·ù –ü–¼š%bˉ>$ì¶õ•õc^‡–À±“¬E¤{¾ˆ´R!xt6ù¿"–$>S¾‰§)à,^¼”fPÅ­¿.º˜¼¾Cȇ`G8ÍqÓzöbuö!zÙ7úì‚]òy‚^…Vî£`L•gUÜï‘{'ÄHо©n¢ÚÈ–B²%‘¤Þ¤BJ ®$ªÁ+CU ¸}F/&¡…¡ú+ô~_ ‘2ÛÑͯ-/*rê˜W¶R= D\Ïj a´„T•'¾4®Q¨¢âƒŽþÜFÿnP’ìD¥ç‰²ZLÀŸL HYk’àþH¢ïÇ6{óîó³ëõ®çûä³ÝBž°s>%Ç5°ßB¦ qVÈ‘xÍ£cìý§6ïÿþ<î¤Á¾ zyÛjçÇMÞ 99ïä´w‘'Ò'g>˜ÑS”mN ¼æØ­•t‡ólM›ò†þf9p«Ófõ¦oƒQL¯Îl>IíÙ]o™ÊZJ:H‰P5.¨hàøýBnÕÎ5jWæ|ùl° h3WfÇ^ŸS:jrvuº"ŸŸ`b®QŒ~>3oŸµZì´ë}nvÎ|Î l…Ÿ¥ƒïŸ?1¯Å§Øƒ¸†å•L~òÒ9TbžTe—¯ÓRÀ¶&ìO<çËr_“u½_Κ]¯çØÂåþ*J¿ åoŸ8^¸ 8^ÚS¼ä«Š×Ó±ç~¢×6¥s|RsªœãYhŠÑ‡7Úµ5[º4Ò?ƒ½~æ”ÊEí¼,–\*–½ÄZD(Y½^÷ÒÓ&ÇEPw{ $Žj•ÿƒoÜó s­¸VZ+¯-®-­-¯E<»ør`x¢±Á2˰,¬­™ñk Ï+¬!¢ð¼ì¡aaÿ’Oóx…5aøü/ÿßÿÏÿØÿ¿rÿúäþO¹¼ƒ ÿKh ¹‹<ÕÿÏ2ÿWP ÿšÒh(ÿ#Ä °üŸ) õÏ)45Äæ÷Gcï×Xý•ò^õãéXîá•jô¼ ó1¾P•µ6Õ ¶©O‘"1A¿R=z: ª¨wШu:F&êÉlOyâ ™@¢ á^…$a6ö„ZI£!í<¤4áNûb/nò?„ƒCŒÀÁ©„}/,©U¶¦‹¥ÿð?K{'²[àÌ@¦­Zí-ü_íqàéžÐ›Êì©CgϦ Ò‹Iö,$°eøàƒ–`ÏþðÁþ Éžðƒˆÿ`óÐ=93Ó±ÿˆLn;Ž"$ƵiWñf"^LÄ{‰x-o%â¥G4²?ÏÑ|-[SsÌšœ^Ö(dÞ!øÂÿöùÛ¼[_¤Í8†X:V­~±@]$¨…¾A@–?7 »¦BŸÏälêˆ4sèËüYŸEÕû¹¦oø¾o(Bà`¡u&­ïq‚â[P•_i:Ø ž‡Ù7"©¾w3çÌ)ƒ³v :­Þ…t—vhÁô•Ôô㤾*ð)Ü-s¦nŽ‚*Üž³êŠŠ“jœ,é0€ì‡#1BÛÂHa)‰¬óìËü\Ʋ¬v>ð å¸/akâV1µv Jo ³ÅûÜZ ¶¥<`Ö×Å¡ï6>txk.X¡# ö1:bÆ7M>oÇöƒ};gmËô#îhEB¶EH/̶¶­í»DÈñýhÊ/ù$+;Öø–"äìÇlE8ï51ƒw⯫sçÇÄD9† 4­£›vÆœîÕKkâJßQª§“N¿‘–@ Ëj¦éÆB—’o~úĵÐù͸Nû•lSÂg½˜²€à="Ä[äD†vJ ¢ñ*š1G–ªo3-«’ÜCêªå6x#*K§¸S.éÚ襤ÖGܳ…mäÐt‘ô"aÊ ÔÔžñYâÂÌÛɈ*æF™O­vmÎj[—!4Ãp„U¦¬Ë„\Œ…L.ïW´¡.¢q 0,S… +ܹ̘ãFÔ«¯6ŸÄ$Â+ð!Àxˆ£${k1· ðµ&–Õk5!ÇÁøÐþZߪñ¡;A–ïÓœ”ÒRÊØÀpªÄý)ÏB~n¿sZÛ‡¤.ÅùêÉNЇâƒ~ÎáRø€&²Òià ULð%èA2l2I;¤Õ!6—N- š#cŽÁ¡š èp<àJ„ •ÿ?fÈ£¥]3öþXÏïs Ä´?"(½ˆö7}ñ|À¸ê°aO¢Äïªø×ñ¶Ü-&†ó´“ˆ*:$ méXýB!ÛÁÁ±8ÕuäÉ®XûGuë©õ5î„vwÇ‚F—©â¢Y”ÜTÜ¥m³(a³“WöÒ/“‚ðFX1fôeo‡ˆ ‘`üLÒZ_ÀïŸÉ „Q-oíÉ䓦—ɃbT²I(Ü8Ž­´L\ù|K]oV¶í¥ê iXH_Ñd@L¦ª$%KJ¥'ÊND , ÀtQ\ “OÃÒî)ñŸ˜qéØyU˜(ÁKH`O"D#Õ1hTW(ž2›$-L­G§N*^(Y&ŸOÌr8!Ru?G7Nó 7c ¾°_.؞׳M˜ú¥c¿[yðÌ2íʨL6Q*qAÆ1²´ym7jÐúµc>´#Af<¨HjÈÅŸ#oàØ yb 7’!^¬¢3qJ4Išµ  ŒÓqmE¶ØDk÷!€à‚mĬ4_Ž‹6¤64‹ÑLàã&É5wAQÕBå½;¸=› á`GUˆ°ØCÕ{Ðw{ü‰dïÄ=и*\óè‡h¥bA˜1ynhD•|¸iër5Ñb,œ$žF‡ÛN“CîÛ—5a3ðÂ&Q”#þwéÖû}ЏÔ\ØàW^~ë\ÛpЬ ‰={œàÅ%þ)µq¤"‰ÜÉâóö­£u{CÎÁŽŽŽÖ××9î „ ¤]¸²Žì¤Í ¬áµá?E](à5{ ïíC\{–Ëkkk•Í0I²æÄ9ŽKG¶&xÊZ¿ßßwÖÄ2…­ñO±&¡7Yéë/í«âµ2ßÑW}:u_ üjÆVžE°ŒF’„å¥mËa¼oGvÑèøæ)×ê.e¿jÇvµ¬0†SN:’¸›r6› øv, ¶õÙ‚uUÔ_ãQZYŸU´ÕÖ“‚ñ=Ùe?ˆõŒëºõú‡=¹éÆßÃsÃ!26NÑEÖÖzf’/ÞQV¾RL|E=šÅ,–ln¢dÖ7Ö±õWë³àÛ#ó0“—ïz¸{¤| QÁgšèÛJÏâ²ÂúfÎ:ÎZ­XŸ5ß­¤ê[,@Ò½èBPå  X"H Éh¡HOšz4„*Ì ä†Æðþ6©‚ßý¸ÃvßSäï‚—yë“çõôðÆAviq‚_PÕÇs{ÖqÅú&ûÁú¦"V){oß¾ý@kù ÁÐÞ~ø‘"ÔGJmoì}ø«g‚¯€‚æÖ7°>ó }®|°>g?ZCý5‹\ý+¶e`®Ìæˆþ?U€xûVÕIZ$\¯ckù ëàãG‚® ø·zýŽ ¯é$4:ÃúÖ±»ú¿˜àÓ ¿¸ '`3Ÿå æßcæJm¹Òû\±PA‚ ð°—©,`¼œgÃá™ø…g­˜g>Hµï¶Ò'WïÚj–ã®ðߊ!8Ñàh—ÚA¦kd|ãÆØÕ6FY{_DªKHu9™j2=ã^¨g*p§ëÛ¯YŸÖùûŸsŠº\³muÍ`ÍÖWk¶³(¸„°ì¤ÏM×ìX ÔÉ¡<]ñ÷ëÏ_rælØFsà6ìÁä\†gö…þÔÁNàú[;w~EÉN¯7@jIIµgïÑ0/Þ Õ^"c4h%ójûõ›·Û).Ƙ/›ÌA]ìLåë*„|½i°è”Ø•Z·[-²ì‡ï_ó/h€4ÀJ° ¦ï єۉo2J9acÿt#""تÐå/²ÉvÄᆨº8jZg˜F€;oRÊDáàmõûm΄¯áyø®úžK\? }õjÂá¹½»KQ3x¶'øŽë2Úy¨eE¨–jêc¨l/'^ϵ[ •Hµ;ômߘÉR‰ÖN‚$Çì\ô¼â~!W®YõAq‘¿-Ö¦Uç_ûfnµV±ê¼ Ï:€ò‰O^¾.Í|1_ÊÓɵzìÅB€–̼iò…|±°D)"AÑ„I yü©(x!õ ¥_ wÕòâ"ä5¿ZP¥•õ|Ξ‰X2n]ôPÀÊx‹Í*C‘` .¶{¬×<ñènK«ÅŽ::o\m¸ÍìvN„YÙͺ¸!ÁNínœÌß /½¥”°W`øÿpyÎf­fÛ“†hZ Z'»·þ³ÐxÁ;T–×õ¹¬-°vAëLùjŠWq¨nü¢¼˜ i/f³i–½ j¤©-4ÒÎÙÊÞ‘-+E–dãV>cC âM›™!%>ã6`>§`´á“ÇL&cÜT倲ʳ RŠ?÷UªD‡PpYCáô¦ÇÀpP—‘âÄ O<㆖&äÑø`¦Añ\­s¬SÖ‚7 Br‘N³fŠF T g0ƈ€‡Cy B2™<ްVqÀ‡Dü(VyÑòÄ·hŠ>/¦|áÂD€]»g·;¾ÛlµìžwrÁÇÞÛ®ßió2 0fˆ}ƒ‘iùTu—V™'vÛ>mñ0gÔzÇN¨?§Ä ¡š’‚|Õ-§åÛþ¯ë½ñíóí–0œŸ>ŒN9Ý Š¥…žQ¦þQTkÙ´½t„{ ’ô1#³Žù”`Ç`0€06`ûëµ¹¬aEÃ`slÃó´u: ‡I"= ¦Ò"^¼šÁk1x°l‹Š vÜü[(f&„Â>.©u|ðIXè­¨ÞDŠõ úÄå§þ,†?UÚdN¤ÔÊzôäÖÎfæ^Wß|7ÄZlÂ^=:M¬¸ã¤u\× ãN%3÷nç'>õ»‚­¾ÿþÍû›`òŸ™ÛýöÍ»ñq$dæ€LÌgæÞ³ýְί–®`B^}/^x’à»|=à¿¥ë`ºÒÇ?9‘_—Å¿Àh8sôAŠàƒb4xy‚“WàêÂ`(ÖŇ[ü•Ö¾Ó(£9N‰Í‘%7G³ÁÁskÌá,Ây ²ŠÚrâF­;Se™ê`33WÝÚÚ~÷Þlì•‘ÙV×—6ÅY™ÖÙ~Å(j/=®*QªÒ‘Yõ•æ2n› ÔQ‹rw¶õJøI%¨T}‘mIêdÖÏsY1%¢WŸjjD% ,à‘‡C&›.Í35¡a'LNi˜˜Ó< &M£!GMF`ÐçOœ)Üf0ï'N}ÖM~(S#a†Íu†¦L®ðjû—Üß0>3b05Ê«9VZôˆ©Vb²‘®¨̰T æÐy#Áè¯Üe ¼.ÑJ:)¢Îå€Ç¹A¦d ¾P|.à:òn}¨»Qnáé/˜ø—S©¥-¿iA|Aƒ›ãD´ÉYÓäŒñZ*à áfJxÊ*™ºütÏà+f7fb4rË­ß:8‰—žÄ©˜äqšÃ$;QcIâÊHýµKÎŽ±Úv‚ G¸·¡òøõ^Z&q –' °FóT†ƒòÿ…Çw’âé‡`â¼,”O:c @‘L{,Ce®dìð£¹X®(§ŒEÕL`+yMémÀF¨}Úñ{ÝÎé±·ñ‚ç³²ÞõìE?çî3 4í¿ã÷ ƒö[ûhX—]óõ³S.¢Ã,®ë~13d7hKnÉÀ”ŠÛâƒfìžN ¥NäÔY˜üŸÏáÂi‡613Ñæ¢eFLGööxžÄµ>œAt·4…3=«tSz‘– ò ºN+ÖÖ^¸¼œ±2¨]æªalBy„©Má3u“œ¦pÐ*Fa°€^?mo0 n‰M>\¥~}ÚÆ[H–¡¸È€Cî†ÚÈSŸføüF6„¥-V&ÎÀv‡Ìc‹‘–Wаàgº¹†è’ˆ WXÄMR~¶¾( KemŒ‰F‰ƒsÊc*‡p/y±cÚèbP@ —[+]plƳþuÏ-ôD–¾ŠewÈ^çˆ]M^cLÛ×äŸâ!sÞ­gnࣸQà9x·ñ â’?‹’3tÜ@ç d𣠂DXÛƒŒ*D «P qš’˜ L³¥œÐ EJó\`? lÕ£Í(>õô™‡­ ÌH5Ûì×måÙÞØ<¯NÇ`L©åõÑü#{K3³Ò\OôÀÔVŒ(áÙ–!Ÿßól„Ël^¼µ~â”›=<£   !/Žï œ_´?Á†¹`ÎÙøS­ªmđڱª[°”Òô´Ø–°å±3†á`†'/@û¬KGÉUÑ÷ÖªÆæ`K~lœÖ Ø O¥§ˆ™Üî'öRˆÈ­ÍTV±›²?Ì}_Ýù–“#ÁIe¶{‚" aCÈ×ï¿"N_¥e‚‰¢Á¢V– ßG,=û4ØÝ1R%7¦X´zÿ¸sÖª3ÿÌu=hé65mÿSó”ÏŒyóðys;A»ÄFƒO9˜É2ØŒ<{ æ“gÉÞØ¹Gë8,>ý_I£qè)M—¯/‘Ô1áö£!º vÇC‚ó3³Ø¡©Ã ÐoB/cî±Ýµ]è<€ö¸s.³g·ÙYûÜnîÎi¯yÒ¼´{ÍžòVístxÚdŽív½âmÞ±ÝO=Žò|öºŽ/:•hƒÕ¬h…Uƒ²:à-›ÏýTc¬VGå’¥žßCÞ"‘Ï`À×J;‡Ua:N_7É ROæ•ØíAÙq€L˜´ÐÒ ïîÕä?¤…O¼~“KÁ61 Eš䋯  ¦TÉæXe‘uÓHK ²ee%ŠXÙN•-C[ wY>Þ6Y«ù 2òÿ]^#\ìÙÍö<ã_@Ãæ]Æ`ø€NU¶ø<Ö”ëÕÁ;Èð;ƒï´iº45­œÚ˽±Òy3¤Â9ex, òñ©Y§Ì÷:'M—u;g Àu‹ß뜆û 6m(‚a¦A©ŠË*GåöN•r•²k#70m™&H àS׫ޓ0ŠuN½6äèÔîzm4¥)ìØ€%M^;ž‡æü=·»uÖõt=Ì3ͯf3±IV°<3'U¢Â]àˆã¼¸¨j®²qáùƒvÇ»§°þ¤‰…ã ‘ûx¢›£ NDYÄýW.ªµOht4GrQ.”GžY¹¼[·6Ìê^ò§Ñï÷RAn_c³@ØæŸÌÂåJm›A^ÈÐ7̪4žcDuĦ̷ظ(ŠzSŒ(@KÍÝh3±ÎC>â÷äN?¾§®P’.† … èÈ‚p:â€ì*Å•pÒ=M©“|׫>Ķ!> -Eìðh$Õ$z“аì˜å§ÌM¬ £ÈÜŠ€mTRÐkE°GVÌë(d §\àŧ›²S&ƒ™cй1´š’B¨Cé+q}•lëAjAªLÑr6+¥Š‘¨k¸ˆCMì#PÄ0DwyL´­Ç—ùW…ëp™èËàn ]_{6 ÊE°…6jˆƒƒÊ \GÉòŸŒÓ95hû&-ÊL*‚sØ„ð^> ßüøofÁªæç*p«ÁU1q Ø''¸©íF°Žxt–A=FŒö yM( ž×kyZ Sö[2Á.Óeú­÷<¨0áJ·v·\uGë±pv¸—×p;^kßó\| ÖÎöG¹Mÿg·ß‹{É餂†váÖ´ Ê0%<²ON:í€_Ö[y}ì&É+9ò@®Ìùë0Œ:°"z;†åÍyGw9Ч£4@€*NÝ…i ‰wRctG&2'KE…ä0¡Ù® +ÌDƒ Ð, Uk·/Ø ¬˜´½u ƒµ p­ €‚ÝFœd¸|Äæ¼G)²ÑÖt ©»¶,)fã0Ó+ì>_∫Zsçq mŸöÄöïw,#Õ0ƒc”1ODÒpVÌ”g•ø=G% ‘0HÉF$%ƒÿÉ&Éö,{ËW½n„pŠush©‡r!€PÁ‚Ôt“¼ŠkÊÛÆ­Ê¼1a™7"Ç-s4Ýde~×ñ}Ï÷›ŸÁufZ«ÏfoÝîЉZ>ð F%ÒúyÒÉ bJ{Dg¸ kbÝ!µti {Î I;Q®¥äì´ëMܲ9sºð&n]á8.Ûâô ÑçHzz‘±Àç½ÔÜv'4ÊD2†E85Ò‰)¶yÂBA/m~.TÚè0€Ï¥þ‰c<>0žð‘«yâk›z¶6(žÌHÃ[CAi¤ ¬‡•ÑqÃMÚµÈè@ Pj¤°bƒG‡uÂÀIW Y€6®aòÌ*zA.ŒXuÊ3°ì-B+&è¹¼ Ð뇱zžc8ikh8Œ¨è˜÷AÇ;£¬€ÅllÒÂÍçFòŒjäÁÑfê6iÊ Ï}§<÷Kc¾Ý9Ä=îCq”â}Y%ªº¹µ\iÈžéûä‹!¼14Z9ûP'ÊÑ£5;z¸V¢Ã5€1’Ï>N>&?˜Ù…Ö§PIg,QÚŒAÝIÞk“ (=…Ã4PÁŽ›äáܦ4Â3ú V=†·:ü]|'¦x Šê à}†£ hÍyRèz§nÔ>’dЃÞÙ'ø~šç³£cP,P¸ðX€›|Úð¹Y?³[B-cêÂÁnâx›T¹áè¤×ByŒ0nööð(íÂv’¦:ƒ8¥‡Ð½=¹ É߆÷ð½ê?&^WUìÞÇéÕ½yúôØ”èàÌ}ø‰;I€ÈÖUPN©Ý&ôÀ^ /êÍÕ%Fkh<ŽŒò"ýÑ)¯lЧ|‹›Hƒ2òr†Š6‘~ nÞ  ŠsPÏ>âˈv>¬ª2ˆ,‘°Tìò*2CÅÞú'y(‹’U¢WˆFz+ NÜçø¿‘â ¸ús8_Î{>'é\´à™çºÌõÚÆ¹¶at.¶pξ=ÌÿQ¼naj¬PëXŽO ¡HÞOhI'#óÓ„Š#L9EjÇÈçûz†ûbbÙ®Rd;§¿D·ê#x9C>Ã'u E.›ÓçZG|÷ÙÒóÎs­á½ÓLÛmtÆnT2–Y1ÀU'Mô޽V«FølB‘½DNã¢X²KJbˆC¹Ñ–‡W…k5—m¥F*×ÿdùö *à%ˆfêpËU‡[°B <4TÄEuˆ9I‡°!q¤«Ö°o™w@ÉÒ7P"š—!M§ÖAæÍF Ü­ÓcÛñzjí¨®Â`4Xxk+kV±*=—Æi…׊ñˆ„† ¾‡“nt:CŽÝ:™RÌÁÄHqú'Ž·´e=´6©)Ÿ´Ý$c±ÊOIÂd±ãAà`˜K½no¬ö%²ÆG¦>ÏŽz"¤mÔA;®Üž' ‚HX¥¯ª”ü}3i2=‹`ºF:kŒ|*QI“4}á¶µ{3ŽFóˆOåYç¬ d4íçâⓟgß_°ã‹S5>Y6‘î^y¢.%³¨ÏH¡M?ÐÜ I˜Ø‹™h<#Œíö|á)Ø÷¼œð8)©Ù>º ntüÚe‘†ZæùtHú˜êÓ^ßõNI÷R>õº|1D ]:"ÄPÇ|âƒW_ÜçbžÍç4ã²ëŸí¶ëÆ@ëó¬ÝkqÿÌùµŽfc  k#Ÿ=Ù û*s¢6ŒjÜ[·çQ£|¾wFË4¨Ì ú¡\Ý-8&Kéð¬íÆt¬úZO$l„Á—t3ÙáËcp TÇ^p3ÀÅX*¦æ-QÙw“#ûn²ƒÓúõö¸àx2¬Oüm!d¨ŠC C!:üÁWS9/"çAÊK‘tT¤/ È¡’¨ã“­rrã#ÞÔ…uIºÊ“VE¿Áw F7ƒH›bWE‘Þ†G?*‰Îv0€ ŽÞ¼å?»?TÁƒµ‹Aâ9geø´„ÌÞ¼e õÕýSS<‹jÌé±&šs,®É(,ˆ†|0â`•ó’óïÅæ‹MC|’í±ê £oë›Æ…ñUÔìX•nMWûº ª*,3 ÞbHªQW]U«¿)Jñ×«Âæ5¢G¬KQÕAªˆ­l…a¶4 -Õ¹â½üzSÂñq–¶»©yÝbÌfYþŸÃ¾RNEìÈU9¦䬸öÏCo”hâôp?p1h¦¨„òXçC õ‹j|SOsÙ˜Ÿ«@Ú‚Ÿ+áý˜€Ç‚]vÜ,DlbÆ$¨¬õÐúýÁÅ…‘ôåÆÀ†ÿ†š$pCêV•#Ú?°ž£Ÿ‚çòc>¬ç¼üG^ä|ûÃ[öãO?¼ß~Ŭçð Û¯¬ç¬úúýö|ûÃ{ö}õýÖ7Û¤&§¥ÀÏ9¸„N'ž} ijÓ&ÔL ·o=/Öð³|çŸåÿY¬qðçRmZÙ€¥ÞIçÀ:ÏòžÁe9*o¨Ûç¸i¥+óÌ 8}CâÕ/uaSàÛMjºh—RÜV'#>Þ݆ݎã¢T•)euM§|„©QØ !3Z¹ðÞF,½ ðK£¢ç=mã€çsW˜-wœˆ™iŽì-e²"ß‹ˆe¬À’MÔ”MQœäXE6³ðq.3¨Ïñ~b.]/ÌH›³•ÆÕʵ2IìØòO?U´C×ʃ¿¾¡ýñy—¸yEÓȾôõƒ®0°L},MËÑÇZíc­ö±VûX«ý³€¿˜Ö,’· ¨ãÚæ>¯æ-UÍ«[²¢W·¢P,A¹´Ì,ØKï¯,Yc k¾áŸèNòÍyõ’þQÖ?é ‚åÐ}¼VëÓ‹w'h ŸÑþ@ArîÈ{: M< Ùú—æû5£"ÝÐÑP<¶2,£Òo :Nd¡¨”×~à\\Ïoå…ý‚PÀ0àÞ‚1„ø1/P‡Ç45H2êS’*¢gWÈgþ'éâ» ­ ffùT<¸`Ÿž¶P÷ÎwICˇ:ï3qäËgënÍJc3\’°¾®‰h÷ûÒÏ ™a'‹ ^cF^‚Ü„c9ר“£™ÄÙ£xÚlÁq5°¿‘}->˜ú“cd”Ëà ­;vL›öe~n¿šû>àÌ^‹W0}-^çÿ´F¯W+ó\<ñ×g<Ôòk²¯ò¯»^}­°º*÷ñ0åž±÷•O8Œ^XŸPW4¥`m#ê#±ŠWæ|ñšè¹&—^{bÛä£]­~$Tò•üc T+/ÜÆÞ~HþÛj½@‘kƒk‡chnàuÕ†½Jfg00®J¥Òb ’¬ƒMeHzS،ޤ-@Ùö’ƒSÒ¯´u|uÀåH¨¤î}lî¥Ù‰®¬Ÿl0.«¿äïn§]ß(ƒ™¬ˆ» Â…^É0Èi™EÈÐok'"ü£X³ò1Qnã ió–?á§:`™„LdL#– fÌð Ÿ#`a#è#'EŽIå«)ÈGHš(ñ“™P|ŒŸÄj¾6ÁÆAå¶8ØMF§,ƒš©…»ë¤›‡x0,'¡ÎGÙ€e¼3€Å²Áûâuå{¥]Ÿðß÷r¥ ¾ÃŠ‘ôü÷¤&€F‹ÀTQö“œP8ö'‚úD"õSБøÁx `k†<Ðÿäı[ü_ÝVI‘˜Lã„$¨*k^ðáê×È_ 3p£€føA&?P^8nìƒÃqU¼æX#£á°DñÔ5L)N:"ŽC*7ϵŠVñÓ*–†HÃE5Né%d4aU&Ï Éé±h¶>ð Óêª9T´ö0#¤eì `3ŒÏR4®ÔÀr8P ûSÈuÈ‚DcQâmª~kÕ.PEÑé@Cót¡8* ߊì­NOš+¿ŽˆF= N·7“¥ìóNìf nÔë] ÁÌg»Û육õqåÃÕÏ€÷س?_Ð^ ÇáÏ“/h­Û°Ó¸AÆhç™ß²ýcP×v;užÆöa9^l\3¿#oJhŀ˗vˇÕi·ãBÖê̹€Û -È@Þ?ö؃¹"ÜÓì’³Ú6ó|×>åiê^«yÒìáU¸‹Ðl‡íÀ•ÊNÎðfæ@bʳj«ÅÁA‡êÏ™º,“7 è²,]Û–YeDÍ+È-ðm¶yÒÓ®‡÷5N |ä;[Ír²ÃBnpŸëÄ’ò¦Û*–×ñ=l¡Ú÷éÎ8‡mq†ò ­7»é^×nû-`Y>šô›o_sl¼í6ÛMÊ /èÎë­âJ±8lµ{0k&t¿Óòzkx6Â,´­¦À åDMaq(+]TÙúéq×ö½ Æç¬g®0ÎL kS*´Á0y·sBÆÙI³ÕvÆÿl:kCc/ óÈGl m4ynÃ}œ h6MP lAZö4ºŒÏ™7Ðõ\ІLtôæGö…›}m10NlxG:ôùcC¬ø„­ÕqíÖ!8D6˜õg©wx¿kãÌŠ'?‡pC%Ùzýó®QÉ2p\ùµÂi° =’RSG þ``ÕŸÍZ_ýñësÙõ´—•ƒÃ¿¿\ÿCM&ëœè©t¼@°Ù5—O áÊÆ†–ÌEXrP‚îy꼬ͮë,QV7–Ûž¿Õkþcð·¿ËkÈw£qmñ‰že‰L \Az°¹‰6Ÿ¾².³žR²Z”%²å‰”<ŠAeyŽÎ2Øõ-;£éH2œ‰ ÔxXOã!¥húp!å$î†HA]D`{ÚгÃÛXïjY`%Cêæ­P:¸jÖ~¼Pu·:kk)< 7™£-Çċ´Ô‡² Í4‹9µòzT>¥›¼ÉYûVM5ºhsAZûVÏb5NÂjCé3+(ý=èБÚuLÃ_Å`:‹NC£ô5T9Ê‘P“˜FÅkòFo.FS)#’I«“¿ë†,Ã/ ô—¡T ¡DÏŽ’èTæpõ?·5™#ÔÔžÕÒ~™¼ÎŸ« ¦…Ä]«-bKQÁ™^±|ÙÌè2 3`U\Ô³œãV[|¾ò^uZç3¸®õgÞ-óПi‰‰Öbù_Rаé0È~Ñû5=†„Â"‰JOE÷A­çûþ/g0GrðffÏ·ž×„Ã!x)q,m”öEžWóÄ/ë9±"§XÆ–»duY%ÐáSÀ¡¾òzuŒBžŽÚz¾à¿¸…ÎÙËãŽß[è¼ä]ÙõN»'õ—ggù‹‹»Î_Ù‚ûòÈY°ž[îó N®ëåaþ‚Å™Çó†4­U>¹òñÞÊÙîÀ Qþn‡wN†ûß»ü8ÔŠà¤lŒå­Zp]âë p…xÖêѬ’i \ù 4á4jôCÛWEçq±#–>ÁŠ'¢8m‡²E†¤ÀGFËÆõWhE„·Ë©ÙŸº]¯ˆsOÚŸ M¢I«B†lJC™ÐçXzs°Ëñb‡éPq~8x¸‚†ÀîÔjLµ’躞z 5ËÁŒú;O®ƒÜ[Ö¶B$ /ëcà´sd°7[C…ÀÆ{Âè4ñn2:ÍÏÏÜXp_ÇÇ–iâðCä*$ ©Ä˜ÿº½³û懷l£ò’³“³×Ê[u«^!Y3,±6’…÷HæbS’h}r‰/¤4 J+¢p§€ÆXƒj{ ‡è"Pn×QNÑT…òeë¾Ø-{ÆåùËõ?Íÿñë?ÿCÍÐ$[špþôB¡yÁòrh‰õž OÉÂ~!·\Ãtæâ£.é1 ;lÖÑÇAžu³ýý5#kµŽ ¡^ˆTZ´½F»Ûゆ¹<Š1ž*•üþÁþÊÆ5­ë“G½ÎCèËm>‰Ç YÄ„%„EŸµMkI¡<«5Á‹Üe5÷ñ°fËŠ+P½"aà|ÁëC9K‚ÍàMÆÌe+yë+K]AûV”D[^c/yižñëð²þŒé-NµÞމî°ßü»“¶ÿS?Ç«~-)ixÊ·¡hë pxÆ'YÞËG̵ôþ;2¼x9« O!Æ#ÐPè¤ámh‚-€øŠƒqV{‡ ðFÇׄ³ìÔ™ƒ&b+ú\¾Ë?ÃuÝ ˜û•¹lzXRûÎVj‚Ȧžq­ÅìøŒÎƒ°€Äù®ÜµÅhùi‰Ñ¡¡–j?âàÏ0/‘¬âdóJÍâá9#./ý_³b‰I©å®J4X.æ¦Ãš9…($©ÄD›÷6‚öÍè Šuû §6Uüuðwÿ‚¿—øûQ" -‹Äzü[©Ê IfÍ ™öVß~Hmƒ'O T×{Ý̾unýlùV½¶°¾k¤kccýý«äZÇW+o€ Lf}sg#vÚ×øf¬[ öÿyÿj(æxè-Òðß…¦OLú}””ú¼¦4 W·™/› ½Å ªâh°i0ÕÙ'Kƒ½\Wçv.zÞF‘7èrͪŠ‹üm±60¡© öMèVÝ0,æŠÔÈXyùjð†*eÁÝ¢„\¦Æß€–È壤:³ÎáV¬:ޤêd}/+Mø|JÖÕ0·Èù.q¬ŸÁ…ðèþÒ«‰O«8€;j2°Då<òðc`ÈWp1 ux ?ÒÆš±)Ì´(Û'j?h —½Œø _…ߨò½Y ~w‚‡zÃÖßÛÿ÷Îßóºßza¿xá¼€·çöóçÎsx;°œxû£ýÇ?:„·Y{vÖ™…·¯ì¯¾r¾‚·+ûúÚ¹66çÅ>áa³ÝèÈþ1e"T’йjøTuÌÓÔØYjò1jÂ!ª­ J&ž=&1&žj¤ïÿ' ªÓ?\—ë§|ѳ½äC¼1Ïꆟʉ½ç¤Ã·›½Å[Qìˆí†l Çk㜭ENÖô#µž ?&Sb“7’ij¬ÄC+y:¥ŸMM|">J<‡J?mJ?S Ÿ¥Ÿ¥œ…zÆ8Ð™ìØæNm’Žl&=°‰ŸÌÜѹÌO`RZb‡*Á‘Ê„Ç(c˜¤„FÂ"·>‰†Œ} rã3„Äã„Ãqò;àH<ÇH>®H1Cä‘^9ñ£„´ƒy8â ¼ÿ?ö¾|×ÿæ;þi;ûjc?i[¼Mý`Kâmü¤Mü”-üÄ ü‰öïvïqë>²q¯vìio>Ø…ï·‡wÖq]ì–3ú‰î€Ç÷ºã»ÚÁöuÂFu|K:ióYm3G6”ië˜6‰µíà¤Íàá[Ácmú¦mï¦mä&mÙ&mΪ­Ù±vcS÷]'ßa í¯ŠmU#yÇT.£žV8O+œ§ÎÓ çi…ó´ÂyZá<­pžV8O+œ§ÎÓ ç7°ÂI¹»H–’¶^¼0¬÷¬m°Î"øûÞË=ÃøÓK£;'ßÂwÉk¦xv“2&…ÈÀXZ,bk' Qm§½öWù“–Ju¿wÖè÷û:}eñޝI.ðTmßfNÍØXèÓAç:÷‡ù!’4£f€£`‰ƒ@‚åFÐâ“1‡ÈIK«f1W”î à í]­¿ÔL‚2Ã2+–‡òìz%$ƒt<¡Õ/"~ºB{@àÿ¡í}ø@FÏ>|@c<”“ñÄtÁwA$½¾§aœ‹JœƒïaS [F L–²Àzíªœ,K«yŽ­¬DE,TI?hz°„–À"I—Òè&ÒÉ'”Lçd°p¦Û-¸uÍ‚ÿšx'0EúÒÎ6X…Ìf£îÔ•…g26iý%&¢£fÙ…£°É®¿k¯"=Øg4*ÆBè3þž ^•篂údn2sk\À %{èÿ ÌrE,W©‚€½É“¬•DÙ%•¸ÛCš0@‡8i^z3Ò1ßš f8Áa ¾bÓèòsq£[ÑD#ág¥y'´*Š$©oó¼;Ñr‚‘Ñ=!úÈ%“€ýñGÃq »!<2ØÒï;¾@² KY¤RsBä8üëp–b®ô‚œéT^'HH‹$hO(º)»NA%«Y^9 GK&ªè£áU=L“ÓÊÔT{ñTc®ŸÆ Õ*sñf©Lá¡VóÊÛ¨ ¡þИÝb^·Ûéòoê ì_ÿ5ü];¸iT3•c“ÿô×¶@c©rÐ4<ÖßÜâóã×Ä^ñžæ³¢_Gý´l½â¸BÃãÜiË^ï2ù«¥kU<À±»²-Ó×7AÛñùêü³wˆëÏcÏ®IE5´PÎv^Š‚sìX*…‘11SÐdÃÐÝ »È0Ï®ƒ9H¤„b\ÆAËa q:ï¸Ù®ß–JÜj(ó^x# 7 µ—¡ÐË}R]¼ p%ÔK¸„÷š•¹vBêõ2š¿‚d¨ÛÞ‘=ªoG%¨ÅöÐZ¼dq.uµà‰h ‚é…»‡ ÌѶàŸ™Yçj$Pn„Ò=K_¡¾Æðâ0™‚²Îñ8„ÿYyöˆIKó´óéÌÏ#~ùjŠ×ØAF {4Ç5‡hÓqŽÀ¢á1$&6${ºÙdÊ*PYFkd6´Ó¦§§;&©Äâ›çîXäÈ&³¬skEð.˜àôNL'Šè:š–ÉŸ%%×lH6=!a$oM´}âÉ »CÑ“ÄâE{àm ìt¤`ø<Ùª8âÇ©U˜Hl”€ÜƒËIcÀ—Öe|¶+§ ““y6óIw¸o ªõ¸Ä AÖ5H@XŸaÁšžà#汪¬úÁQƒ÷‰S,Шîz½ädø“W6.ÔyÏiæ…#¦xÉÑ6.ù"ž/®¿ æRZ„ÖÑ)NÈX´efU7²f©´'ý×ñ?þE{ò ¨“s:þÀ¬o€ëKiûÿY~Î2ÁKÏ’ôN˜`a‹ýíìäÔ'c¨`1µe_^°z爺â 0;GHæïl÷SÝ>÷Y‹C±“ æ4˜Ê¥w,µ‚%¶Þ% Q“LÇáŒgM\5À$l½séÅ·_Î:]ž¿#!HÆFô©.‹Æek÷òáüÍxl¥‘YnŒ*_¨{®¿ÜÓºu•7ì=X§Ê„êÞ‡£0¬JûOq8Þ)Œ1È HΤÀj[Y|&”üýÙ~ÎÎ]¢Ï ü”Þ0)¾pÉ §’ó¥kÙ•å'õ.õñUcÍòry¥´T¦dVÿjަ uLkõW\ú†TÿÄnµ°¾í6ûËÎ?½;ü¾º‡ˆJ…‚roã 21¼ò„-»{”š.”POKúæíûPBü ¥Æ?îqì«¥ÅÅÒ’(°øZ|²¾å´ˆoá”HúÌC5αXaIÞ½ë]çY´Qs;'|éÜ£Ë`Ï·$M_çZ^ûˆw•`Ž(f\Æ;×Èçó GjìðG¶+ׄü ŸðM)Þý¸3’ŠGK×zZÚr.iTò68ÞýxÃlðˆp6n…"8ê¯â cOâá³Æžyyyi{½"<ë+ñ·½2ÿA,{&6 j {Eüðèƒ|Žð4DæÙ­È” –\Uˆ*¯<Íó/²œ1 Òh@_xÚÔê_èT7·”ØÚDÑúJÎ&è¶èââµ!]½NéGx9)ë …»ouüqÏ ]·.âždZ0Â=…- *X>÷AZ;2—àÜξVùF¤Õ¯Ãwn“U[|ÖæÕ ÷ʨüÕ|ûe×¼ò6»·¹I—Ñ„K[~Û2  ‚´0-0Ês²yÖã4¯Y¼´…C)¦ŽÙ)+*'ø.1ÀûÐS%Ìxh¸§¼‡ç½³lëØs?ùd-´ÓÎqâíR÷Noyæ¶ÛëÇÀ^(ø5º¢}ü¸wu gMPQWQ bxû½QUŒ»ÖS‰¦ru-:Á¸ø-ðåˆ+8À,œB(|P°DXBÏk8çẾ›W ó«ÈüªòÀLMªåó²kâ§dæ¶Ô… ¸Ìο,ÿÙ”ØúÕêæ¦Hðªy¾Þ]™'´Ž®X®È®e²=º'ÓhIª›‚'U4Æ‚¶-×ý:—ãÖt÷r9j–ø¡–‹à쎙ìZúVQÛÁY Ÿ/Jˆ=}©"bÙ]¡µ[†nDñŒ^¦AOF{êìMºvA§.Õ á+ß ’¢ñCˆw,'|É+ÍUüÛÚn¸ªUBSš—EØÜŒ TÄðg.ê6Ÿ}ðîwtÆçfÌ럂T1_X/tºÍ£fÛn‘UÞ7à¦^»‡¾!ÀLï8­;¾-÷*Ù¹«ëŒ6äµìÀ²òkÔ¬*ø~°`YµüÀâ<ƒ½yå‹òÚÀdVeíå3þQYß§ç¸O5JÅâ‹ÊŒ^awREİ`¢Yà9ààW¤ë8oÕ猊umðàZŨ ¬ `Á“& Fô‡ÑõÀ TË#èeD¹Wá3×:Ÿ²eŽÀ¿ÇŒ‹š6¸jkÐh³˜q66ÑRñYDÚ€!‰Ùœú¥×í€SrN‚®D|N¬ý)âÉÛ)85HŒKFŠÿ–¬€ì’¿åÒ÷„Fº/Nô¬MÚY,/ÒC ±Øß,ûQ‚I¸ý8ÀmNœôMÃóº/àAÉ% þu§ªÁàÝfF†Š†üAh€§t¨ö…òÿ¢Ê¤¡ FA±#C…¦'¦–Í)OÜöšhËü€#è2K$0’8‘X´X[ÏäG½ d s5ø´ ª\ùt¤ÔH¹Â¼g|$lf×Tee’søÎîòŽÌ›QóRWLHª°Y¶ }„]jeÌñ²Ëê)*|ðW|` ú,”‚:w„Ñ•õPª—Àp²ˆ ‘lCÁhVzQŸK0ø{ptcó*õ¡]c¸dî‚¡žÓ†)[•¤ddý>œ;÷NgBŒÓʾËÞ,ÛÑâ¥@Ìê™èªêbÙvT8 2aŒ[z_+ð\ä_½®*œ–7:ÄÕ ,öœþ^MQ_MP›ãAЙ8`V«ë ø’Ü5eyZM½DQuÌP„ÖkÁ‘–b[0u‰ˆ\½ˆ8öüU…4Ò?µ…ƒ”¾ŠV‰¼x¤ÌFë"Ô1æ#I¬ë€L¸Ûê ×‚ëÑ9á´²×”V&’LÅT%Vœ9ku=¯~4ðDü¯³Ô?9?Ÿ³ŸÃÈ`3ÒÈųH€ÖžpL‘нÎi®å}öZrd4´ŠD HêŽùé¦sŸÖËä¯<ø0õÆrR~šáOþgçÁ™¥Ø¶>LýÀœŒ!]ƒã›©Þ0oHùaê¦Cé@Œ0NRW÷Ä1Ù2÷â†ÌÈ8æØ‚:vØþÅe@E 1c!Ø®oãÕÜú"©[;ÆìÝF[3–Õ³¬¶eu-«aY¶ey–UX6-«_rø|¿Š¨=AšOÑåð6‡`€=ÐàÌ1á s²Â¿²§¿t¯J|¥yUœ¿î_ ŠÛé/W…ù¥ëê&«»É˜“&€Þlý§ä/3–eæF&oàHÖ,Ûd8Ô±Šø:©–õ-£]_•,9$âiLž‚6ã&JzdiDÎíxÓ„`I#@ûµˆÛÜ ¹™ .=àE;œ8Èç«¢+m¶ä[õy¢ß’[ˆ¹á§§µ~´9k8.·çæædS⯠G @®µÍ›p6Ø3<×[Ü9ídÎÚVpýËÜ¥mÓ #¾âú8S™Ýûðј/ ’}ûŠ¿÷åQñzèQ†Õ p3ø›w*¼’ø?GÂÄÁeàUí`â¶ X8³Vš¥bª‚‚ƒ[ŽxS_Ú†S‘ê´ê\\†çC©˜Ä:ÏTvøÊThNu{G=Œ…7Åg±õ,_YxÇV Îóºù:m9nZƒ°¼:[Zd…[*/{4Èqi@„gõ …zX—œÇפ¹I›ò´­‚ï¹4º—áælñ…Ž–…}«>ÄÑí-ÙÞ{¿ýöÕö+¶õMu§ºõ~{‡m}W…K(,g)VÛ¾ÕVžÞÛâÔ¨`§e²¹hëy¬êþ’Y‹œ­§kËDA¨ÿز1tÔH=éÑ胣0Ž.!â-[¸UX3 ; ý‚>7åh$–[!QXxl1ŽJ¤+ÊŠJ•Ç È­í[Uõv]›Y?ZÛ·Àøc´ô,Ëj¼ÄëÆ¬1øNù¬ºÂ'ûcJêz$é¾Y3e-šÒ®ÙLâ)sn,-5pRðäÂÌ¢7”5`=8+T•Ú“ ]·’{1©óýó{ aÞ'ÉýŒ‘¦ÃbnMSãqk‚·WDeÜ ² ð*Áê¥r'±.}&üÙ Û6ŸrøížÝg^˃‹°äœ™/Kí._“ž‚[gpŠ}zÚj’ãfOdø™Vk4EºLíuíhiŸinDˆõ×gp üôØÖDíˆÞgÇQèÍ|òÜg¬¶q‹ä:ëÆhà—£+Í÷èèòU"äfµ,=³’êÆYQµeܸÆ38K¹]€ ·DñìVµÎ3¢®w«Þ=^Søî›]h6sš¡~,en›}-…Í é% œ€§®ã™´y}ùkò>Þ{UÈýXþ°“ߤ¤qT؇îÕ3bÿAÕ¨Éb{TaõJ…a¼žœÍ1êÈŠ ¨öXmngx›9ûšM&úê´.ðŒ=k‹·9Ñξfñ‘äÚœ@šHݤ¡(T“ ðT—>ôܺÍa+ËŽ”'·lsRYšªŽ#D'l³°›Î.óϺhÉ6ÿESGmÃ@îeÓÚñMÚ#Ç7¸c|9¶_Œ ex'U¿R²bŒñÕ­;`û›[¾*éGà»TÁJÁ·®×Wôÿ&óoöÿÍÁ¿¹ü7µ4ñ¿!Ê¿50ä¯Ê× tˆÙG ÂâAAÈ8w0(`èþDþª4¿týÌÈ~…™áÉŸÁîÕqó™$|£Î£x™~¦Cß J¯ÀžÉð¿}j…°j<½ð¸gn]‚Ñ«©^ ”Ÿqlz9žçõ™^ZÜæ¿Zœ¿výU„£c§ù7G+ƒ Ð?ÃÑ2NK¥Ã7ÿF»¥ýôü:áÌÊtŸâÙ5yõT|‘aß¡[B¶¯’ùZÖü02ŸâÄG8Næ1å§Ü ðC9µÃr'a÷$QÅN³}zÖ3ÙÌ~ÏèÂfŸžvº=TÏø©Ý}XvÚ…YhïBFÒæï]]>sýl·]uÚ¨@xVrN³ÇZM§Ëg°yÞ ÛÞy L,ñÞnŸµxTU§ø?·Ûjj ÇÚ^¿Ç•Q®ð^>Ìö­-œõ3¯ífË«¯Qã6¨åââYK´ÆÀ +Âá=ŸS÷H‘®Ð_)àðÇ^×[cûlËm د5Næ×$"%H!BÄ$2'MU8 ŸE(ü€þ×_ûýþ¨‚DiŒYAI­ÿMü%–©XÔ#›~§e÷P˃SÆ - Ô¡Eèþú¿ Ò’^˜8 éÃfõ>ï=+ }xŽ ž ÃМ»Îs‚Œ F›P“¤{V¿o ã´½Y*ŽË‹á*Gp—ŸŽ¬(!6 ÚÀ-sW’m,GQ-FP•Fe.(ic9)o·)-a¼»sŒNÓRSyTþ URÆ&æ_Ýp0Žò.X¨°Ö£˜–#˜ÇÎ`=)c7¯‘zZYo^+õa,¼yÍ„ÐÞeíÔ¹€XŽ4c. =D˜”Å["…rÇsºš„´4RË4†Þ"·R %³á–9–M Î 3qJP³£óâ®ùáèü¸kž8:O’ß–/zÇKàzâŒrq<ìõ(×ïšóõ(çïšûõ(÷ï¼êÑH¤pËZ×@b=G'Hai<ñÅ)ØÉœ‰^´¤ê4ጱЯ¯ 9þh4øš¨ë! ¾Lâ«¥$Yî‰xÆ£Ã-˜Rhuø PÌa|ï—3°”qÉ’8Öh«TXK#±6tfÇ1G›£Â\y%R•ñuD´)*ì‹£±»ñ†’@!Ú…¥‘â ¤8áZ')Û^ it¶Ðlµ¼#»E83žÔÚù³a$!Œ—ù¦Ç^díÅeqBoŠfCÔ©º@%ïÒÙâ‚Bfçõ+-Wõ\Š ’!jtZ·tKª|”wò_ŒZtnªKŒ£®g÷¤‹Bß,4†K0=àwº½1«€Ï_žßvîÕKÄwã% š(ÞY&±6°Ý|°œ–Á›/‚Yá”[›ù$`»åê÷nYé +÷­‚õ$l·\ ßm-Õ‡•ûŽVÅw[[q}'56³`·/zÇÖ@FÀ'Vðˆ4‰4,ÍÌ,Ûmž4Á†Ÿ’!¬ƒ ”Pqæö[Af£õ’Â_šw‚;¥QÅÉETžÀ€èoi¿{ܸøK·ë,_‰¥X%>ÕâíqÇjðF¸e…I"NþC”f×ïÑþÚY» |²TžùÎŽ…òéÌ®p(¢ì£žó™™ κ'•Ꞙ÷H¹ç™·äÞ}±ï‘ò¯Q¸-ÿ·ë¿°Ÿ~/DB_Æhîó’ñRզϿÇÊ;·tÞÁ xÌûM޽+…é3nå±ò­xs¾5O½uòÞÊ õjqÑSÞv} Mzo-n–ïaä¨GȺ‹Nùqr׫'r·<œ»òÌ!™¿âJ_ °^–½EZZ."ÈŠ½êÝC½$’}œõ²”T/«Þ˜õ’RPª—äH¬—•û˜™þ%ôUaå>ËÊ##)¬!FÔ„þ>XT'ï’'TãñneɼfÇ©±;amÖa§ìÖe>ë±3ö™³>»`—ìŠ Ø5û†:áx\^Ä¥ŠOø~¸Àøá?\à° Üp.pÃn¸À ¸Q/ ²:p¸뀱뀱뀱뀱뀱뀱ë”3¯€[¬ð=ÀèFoçuð=ÀèF0z€ÑsqJ?!k`'…ÀØŒîÿÀ`lÆ`lÆ`lÆ`lÆF}†ô`ª èÛBj5L5aléÏ_† u*”6+(Xm\{à*¢d V»…ëèÑÿUC›YÈüÙAߘ²ÈÙâ‚Z!³YRm§Ÿ(’îM<™cˆ§>Í4FÊuÉâ9û¡x<ðØþR¹mOÌï«Â|ñúÁxŽÔŸ|7’ï õ`þêaÜZx:ʾùvº-Š…óznÊL´›¬©‹ëÇÃ×ö‹›°µgköØšý’Ø:b½]Âõ"LñÊxt6½e¢ Î±Œ‡`àÓâe^¨\‘ÕÆÇáË롬‡Fãé|âc5Èû•k]­×¢‡OŸ¥ØÇAááúxxú3æÇvÜLÿâ]ÂßO×G²â/2û”¾€àoÇsϺ¾÷¨æ”ã —/†WÀ2TÀòòòÂdøÍ{ËòM{ TF#Ø4¡wy ©v’… ã{›k³ A÷Á;ÔÝ E«{÷ÎϽ/†“/öFô"`äÁ¾õã¿ü£µ³~ü/ÿÎÚ^ n†µœÍÂ’®z½¸¦t§{^÷¤Ù¶qXC#„ÁÅ)Ü‘*‘u¸|>¯Scƒõ\n üÓ¥0cè÷ºMDBŠÛxˆÙ®Ûé¢Eã^‡ÉkXàewo”6>(-¬@'˜¦«º=}¨¸8U¦ÐЦeE¬X($S»Óë‡WË ú‹Ó™öõ?jwÃ/ÂQÃÙ#ªn”äù0ų4¸™…ÌçÝŠ”‹¥²òKw¨(äô—® áÓlí|÷ÚÀ¤üwswçð§·o¶~xµmØÖ޳ð&UnuNNyå Ç£\®·;mocæ‡Ï^ÜrwtiíP.=ÍJsªÂêÌëN×åµ)>¡’!W㮌_8#+,Œ­ãI&'iGpêS„s"<ÓŸÆ™ÐW7·@…eUMSðUEŲŠiav°Ô² :°¹´¢­Â–V‘+…@I|hd´õ[Q)¯ËÈbC‹,6‘‹zäb(²¤£¥ÎõÏwÁu8f‹Þÿ‹pݸnëù.8A„Špƒ7Q"êzÄÊ¢ŠÀW«+:WW7ÇsÕ;l“ÕÄVï,Õ…˜¶õj“g]Xå‡zÌÞI^‡Ôää9ʼn§_é÷û–WŒLÊ!gn?!{ýÙ+cö´ÜÍ÷l§åù/‹SËf²†ØÈœ.ЦJírŒÒfïÃG­9«à˜P(Ö€õ`àÁ.³vï”)€–.'Ôó`iZ„¬1®ŠÇpŽlˆ‚‡Í]ɃãšTÍÚ 6“…Õ=°7Vø`auDvc…V÷@d7Vø`auDvc…¨{Ä»9-s;»xͤ֩èBZô6F ž3 vX8»£©Üµmk×ÉoiZ|iD|9æÃ'v¡6%eü¦ïðÛ¸E³}iÈ‹3ÛéËDS©NWâˆCnœÅL8»ð¦9ÞâÚ¾ÇE˜?L@yã)FåÊÑ~¸R_¯ï•v1r46õ­ó‡=›lë|ïž6C÷¾ˆmPئ»é.èÎîvä&üÔ·`íiÛ ÏÀ§¼0åzÎ9Ápѧ;­Aâ°ÛC¥¤_dž¤çÂÔ«?ÄŽGÅ Åk÷^'sÿå–}xѧ/ v¢K$3V6¨|øÏ¦\õDG+zpàþlÚ U^,<Ó6b9Ýxù§_ÿDð±ñ¡*öÍ,PmƒC×22ææØ–:^¶Þ^ý”Uqp9K—ǰè²Z_©¸vŽ¥ymX|ÔÁ9îP͈Ó[InJ'Þêô×vÜ…¶÷Ùë&84—ËZ¢e¾ŽB­ž¨Ô›>4 p¶Jöéi«éÚ°äRõDj#‚©‹ cã™  Mk<Ú… hcѶÞé%sOcØu+Ÿ ûÖ»‰KÆ)Å æžÎGº0iÞ á¨tÕ$%ørqù[fÉÆ€†ƒ;2Í©I¬…&™]æ‡vþvjª/XFÂ£Ž¸Æãö4‡‡ÇÍìT'n©ŒØ CvoÞ_7{ ,E8]1ð888Y¸mŽ/J4-*°;–‹zˆ¯"=Jô(Óc‘KôX¦Ç =VéaÓá‡K:=îœh°«>ÏLdm•¥\<Oå³h{Š[õLeçž®ÑiìµêêuØ­¹çw’‚ßxööå5Ú©ë¢(B“…Çbd5tñø£œ×Mtù2w_\Jà©ì1³>®ª+Žn—Öv®^ƒëcSç§•³jvýòq34ÇjÌfuÎØqÛtZþ—dѶ †ù¨ð÷xÃY£ªÂ¾àëÎ)¦Œœ´as¬[Ïr¨ôï˜ôg?yEa|ƒE|ò³GÅÖ›Ï63Ïç_3G˜Ûä™Oºq½ƒ1Î <œ¨ê^ÝSÕ¯gÍýF쿪‹@Ùl½&]â¸nnï•…/Q½½åWÚžÆë?··üÊÐ5ùee·µü ?¤ p–_á‡î…¶üªuëÝ{ïÖ»¿nýt«ïéVß}Üê¿+ÿ|ï]ùçßFWþBFhÙAÿ~¼Ž–ÚͨNÖÑR»õÀÉ:Zj7£8YGKífÔï°£‘EÇÅkÚÄ[ÅM¼é2<ÿAo&ŠàãÑHéwì:•µ]§²¶mº¨…/já«×LÛ“Zf`·¬b¶p ö5‹¸ìÈN·2?†öd‰.©b-ãùziÒK>LoÏÒ‹fÑyôÿqø^®’D^ ÆÚq×¶Ú/ñýRÖ&0K™zYuƒv²˜9¡wþ7À„ÑÌÖ¬öší¾Æ8Ìk­9šÃ›c1Ò?„?/Xð§ß jµu⬫d—®7§]1n«é÷XÓâ?<Ûü‡¬6€ÊÈæ#缚RÜNU®¨iww½Ó–íz/ÅâÂYÀMœ»ƒJweýeÆ62•œiý¡×¦Í™ïí>ÏSç“ã7E–Fi]Ž2yC"Ά{Ý—}Í6F¤8Åb¤Ÿ×¨‹º0°Óùûk¶ï6›÷£ —“:zÙ÷üÓéö™YVe>ïxM»Å¼~¯k «’tÊça®}Ê›³Æ+âȆ{SšTÎó•æ8Ï‘9g\HÓ¨àsÈvÏn¶Ñ~í±wÂNÎü—¸@ä£yM¯ž§ÙÚ FÌø¡¢yèù ¼-“m­püœ‚k|'ÂcÛóO2}*]¯sg`×Ôê\™‹Ë ®½@Åí:þY?µÜ?Z'…'L]“éè ´¶†m¸+ÕhðFϹæÇ§3áÚÌ3´•|`;ÓÖ=9zP{ˆ)_ÌÒ*7ffÕn»Ç.ï ¿õ¹'׉O®£¹™;áþAš™8ÛŽìMͲp8÷Ñlv ™âRV2|ªhdu¯a,Íëë¤õ¯ ó|Èñ{ÍÞ™.Èгžœ>òt¿þÓÅ%ØhöË+«ü…ϸÀJ³™)ì‡V·ï%öü9{ëó—ö|}ãù +ÊXÞßøÿ"žw9Þ×¢¤Cp ¿ZfÅ"âW–p< ¨¸ÂJ©¼&rºþH<óó»¾(σvÝ ëľ-´ó Q‹¸XjwÚ¹êîÖ›7Á gŸ¸ø¢ºùë?m-qŒ@µ{K oÕÍÛÆ¿às-šÞ•Òýå':¯_Ñçõ%¾Då-ìÔîq^¶ã3Ï̉ÝožœðZ\цƒ„‰f@ZÌ31’ 3 ;™v"_Š_x³õ/ø ¯/byÇr)u›ÐéV¢lZÒ-þõŸFR^¼3Ê¿þ“"}`¹ÿò’H/­„I[.Ídù,¶Ñ6œ f³Ó.ŸÃ]téºHI+ò‹ÿúï«›[é±)z¤¨˜œÏ‘°QÔ›GÍ^¬Àœ”hy’",Þ´?Û­¦4ø‰N)xÆx,—µ(±›q¨¬¢¢Íû•Âyÿòž§¿€ã XÊ‹%=Àç©WÂHþJá:5‰ŒÇ¤ÒÓæXZFÿ}yz<ó¦d|!ƒ €8u4ÂT0$`:mw!o§J áq~rœc·Õ_59Å•!8bpãà³úNÙVÃ/Ž©{)Xäpqõ`?¬‘IJŠöÃ<üꙘ^™ƒÕá\eÐv†do;Ô6G6¡PÉGv™›ö˜õ›¡¿¼Hè‡@–87ÜKbP 'öðX4rðùåÒe/ŽfÞnpÙÕóú$àbüJ¡ú£´n¾Ç³ìÃÇh¤f]8 A9äÞV"ìVZþ)5Лì]³8DÃKLØhŒJHyM ×lE'@Ä £0¹@j·¼µE^à™Æ¹c±!o)Ÿ+ñ·¼Ù©uª_BsÖŠÊရI€éyƒ´‰í-±ÁQª*¦ÛÜÜä|c‚r‹o“b"Q|oÿAØ22•—4Ÿ¿6†\ëýÞ¾ Ì;9í] ¨öÑdnaÆwBft°B".žšòUJmõ7èF½Y^‚CÜ[ÛæMòæ8Ò­ºeýÿýóÿëÿ9_[Ø|3Õcäy\þ6VõŽÔ<îŒW•¼ ¤|ö¶Vî¤þ’7+&ÌŽÙÁtÈ4µŒs Oh ÜYFpÃÊOKP¾«ž5Îy­ãÉ:hn‡¼¢†²“š•$3Þ~Sé,F÷wýɾØÿèÝTnÉà]榔©¬Q–ðàdÜY‹£“õ¯^%„i¦ØÉƒE."aÕz‡‡ô… n§E¢”Bb^é ul§O|TËÒ°¶Ð|3½£>²èÄôooº¦|'PtÛ{I3s¨Y(Üë_Ù…œ˜H¨_Ñå]Sþ“pžœpЯÔJóLùVtBÂ+ën²"§Øz°™Ð:íw#Èj¿ßWŒfìnì{ˆŒ%Σy¦&ü@5øðlt3í#C0> ùG¹£¿aýô•¹®ïéóµ¢×®{u¹Ü„Df˜¹¼]s=Œ«9ÆöÝ(l®†Íl³ìg.n:gèX4ÀÔ¤¶›¾ÁÌâ2;¶?óIx»uÁ€Ùg-^òŽk·¼|8{7,&fŒì«Æwæ%×E¥{‹š©Ç=¶œätþ‹{üKÒ¶ŒÛ—áˆÁ‘¤iµ®gZh@s€ùtBzÌ »@(  V;¬-*«Öå²Tiy\.ZíÑ>ñåÓþ»9T34ÏeÞ§¦|È»¬®ÃÓ’b!bzöÝÖÎvñp{ïýNõðýO;ß¾Ùýæp«ºûæí_X×ûå¬Ùõ|²¸«ŸbÒìy Ôz–µ{¤‹ HÛæx£eË-<¶l­Ü¶R2Ô”Ùše§|XhvÜžÝÑZ.¢Ç5‹føŒ É3[ÌÚµUZ^2Ç645U\‚?¡/Èi©3#8I8`üR2*:Ó^\Ö3äô‰×î‘;9Ò;Rª‹¹5$ƒÈ™·¢5VLçÒQó³×†#5«^¯'ó,Óètf½Npzu¿ûðþ›Þþ°õ¾ú]ôÀo·rý¸J‡³RS|ür/°t#QÍ?þúI)æ#­#R¢¶úÅ(l¡g-;m­tÍÂô´´ëò˜ªžRÌ«òü”~Hª‚Ø}—zpóöƒ§ãÍöéYÏ,ÌüáéoØß©ÛõŠ9ú5 ùòò0¯n÷l|áë+`£™3—nN΢––Êøäá§Y0Íåå?˜‹…åŲ¹l–Š<¼X0ËË(Ü]1ÓÿÎ`+Š“ìv:½ap£â£…ûBþ„â1H\Ñq|-øÐ€«ds g=àæ£TÄ×VÓéÚݦç¿àÙoº`&§Dï >ÆœÁÄ2=ÔUr·srj÷š tƒ[„€xECvšÿçÇM¾X‚q‹# T ©‚ yá "+¤|øžc@2×½ó§TïCYtlóÌïÄm øÞ©Ý}y™žG~^èîÑèˆëšÙ¶wkÝC¹iðÝkV}ûþmí|÷:âUõ7ìQuän–²1áéÍ{FîF1–©¬ña¦P.X½0fef ˜c·2ÚVÁ\Ì5† ²Nĉ° ›8™1Ç,3ô`©³â|—ÏÆZž]§ÍÁ˜¡Pf±3û(ˆ±¾ñçù?­=Ïóœì[5«Ch¡´ÎN¿sÂûÓىÙÂûªÝëœh^ù|ž#66RƒcÌç¡{ê r@£wL·Al¨¤³V”èNAs ˆ¶‘îÌ`æ9EI.¾‡WJ~9ëô<ÈYŸŸ×âéø„©}Aô½¾ë‚wl÷“ß²ýc”AˆofB•ÿuº3±z Alû⮌*h&x}ö’mí3¼jŸ´Ûêøª3F2Ñ&o°çvÞéÖ©vUµò,COMÿ‹lú<‚ïg]pöÅ:Ÿl>f7¬¥Ôj½n³CíÿÑ´´??¶–ÿå7}ž#k?¹åcf÷©ÄÙÙ©¥ñI¶`¿wÖhÌX±Îjæâ¯–,¤Ëþ™SïœØÍöLjŸ %|\M¤wj cÝÃ#ÊþSƒŸ~ƒÎ]4s)Î=v½Þ…ÓÆÔ!ƒ_|ýü.ÇâpÛÎ=çÕš£u¡ó2/¤Ôs´:'¨^ÌÿWÄ ¢.>Kµ EöOm—øïÃj>˜hÁ?ÌžXU©,ýþšÃ,=ëbëÛ‡¾¿þè&> l‘ ãuÊØŸ]ž¿xÙÈýØ%!Ÿ&k ûO þÁ&kpßhþ‘åçÏ,?OÝåi|xžü½ŒC7_a dÏŒìÁÂÁí´:íÇÕ¶ŒŠb:9ëvÎøúæ‹ot¿¿%éÓAÙ“¼ýý6ý§ƒ²§¹õ—0ÕOsëGý§ÿ€eô'ŽËÐÐîãj¡â‰¿^×n¶ ^6x ÐÄŒ}òÌÏxt=±BÔ\_•FªÉ-¼é1‹&‹Áîñi«é6{|@­Ðï^‹ Aê2¬ºr1ÌCk‚¥U°³šKòr6ÃØ*ÏCåFŽ #^Í8®»(e¬­XÇS6Fܳ  ¼¹´R@S +òÈQî;ø‹MÅ=ñ‰f¦nº~ò¸.nUVO¦xÛã.˜2ý»"Èh÷Ñ€=˜oäÑç)·;”¹ÄX$.¬¶§ì] Õ´§Ú)y¯˜Y°Ž³CT³GÈI(ØØ¦bˆ¦(¹s­q9¡1 ®L$"Ìüƒ0 Sê‚¥È÷¢Ž-Rl§¹ØÝ¦©°ûÖäsªbá÷ݬo†ö‰q‹ª^si¹q­™‡×ų¡m(aÊMíÄ Šè˜Â2e¸EñoÑôJã¢ø^Ò41#÷Dû\mðoSc=V…À– ]ðK˜/ä]ð‰‰7b¢õù&² ÓD¬,NÒ‹yá–Ã…+®\Ë\〈)aÖQð8¹2ÿ·DãÁ†Ü@f /"uBÎKîMj™¡xJ÷™¡¬PàÿLþ¯H}!hC+²³n6ïmRUÒSåŒ2 ÖµÛGv„}뛩Zu6ó +BïÈl<ËI¥¯èš%¤ë†º²446¡´¨¢Q€¦‹† M­,§N¢“vh™ÀË[\‚À—b¡ ? ‰RX‚ŸeøY 4VfXHg¥àÁÜ0™ ÈL@f2™€Ìd& 3™ š®¦ÈLЂ1£ MÀh6b—G ¼>2Ïr,Ÿt…„­rdkìOl—xƒUØŸot™dŸY¬Æ8®Ð¥’›_)Y)`!W€1+À˜`ÌJYêû¬cV€1+À˜`Ì °zزlYAå `ËJ‘­«Wã*`\Œ«€q0®ÆUÀ¸ Wã*`\Œ«€q0®z„ ri2Ù€Ìd6 ³™ Èl@f£Þ5 ³™ Èl@f29=0:€ÑŒ`t£ÀèF0:€ÑŒ`têˆÌ";€ÑŒèŽÐŒèôÓŒ.`t£ ]ÀèFýF×Ed.äÒŒ.`¬Æ:`¬Æ:`¬Æ:`¬Æ:`¬Æ:`¬Æ:µÿ:ä²뀱=Àè¡ËDÀè¡cRÀèF0z€ÑŒ`ô¨ý{K0z€ÑŒÉ®„á06PQ 06c06VYrÙŒ ÀØŒ À8Z¯ µïîE$£ZNj Å7¤b[Ñþ-ÈM¨êu J“$7… L¼j7RZ²’#»¥´ d%ÇuKiÉ”¬$¹HËÉ% ‹Iu7”LŠI¼›a’¨»•´dJV’¨»•´dJV’¨»•´dJV²[IK¦d%ÉÍ[IK¦d%ÉÍ[IK¦d%ÉÍÉ¥efîý7Ûo׬ýjíjiq‘OòŒ¯ʧýèEÜ¢¶Ù™ÏçÖà\À¼@϶+‡èC ÍF æâúœ«ÀðŸ)·µuã<ì§‚ß1pÌzŽ^`JÎÂÔœ/!Øù1D§~´ÆðÏNO;ݬ2fly4ŠŽPu” öÿü÷ÿè£'CÚgRlçÊ\„y<>ð#xnwÑÉYýæ–ŠNSPµÞ^ý”ð|ô3êK’JdóòðEÌpmæãuy((oö^„sÙ¾XmE³DÀA$ÎÿûŸÿ9(Á(ÈϤX¹˜HNÞÝþ×?ÃߥžÎ¹b ø |Î%,.yÛåw;íÏÔ5´#±ÏÎWpòÐB¹STTÅ—¾¥ÂÂÛ›*J£Cþux„ûRánœŒèŽÈ´æd.@dVíò\2Ê@uj´«YZÍ–M ›â$Óvd‚ aiyYÃÂç7ÀB£3VˆðÄpt~«S±cYšÂž[Ù”+ùD€Ø«4תWæüµµ¤þŒà¤Ët–®E(¹aŽ„¥;Ÿ œCó¶·.¨»Ò4¬À¯×ÇJÞ¹"E¥ë$e‚qc"´%ÁN¼îÚãW]äé/t¤‰ëP%BVQ7tº×¹w» Lÿëƒ0ýÑ­OÇ“WKb«¯$¹BÔgG\-‚>ò´=r&hPÄÕâu4¤0_Ô´I€kcq.½a¹t—GHñó•S:IrE:Wy6ýîtTè³iÖ ßõgžrGúŒ½¹0Â%¶^+c¹ÄV×ö20gâ8~ÚzgÿåúXÑjòI·"2º¸ZòrU4¢Uq„ßeñ\O¼‘Gº2¥he¥ù•늑ŸÑЖ–î°¡¹‘ Me žR­Š“)þ\–[üºb¡,¬d‚)$ôÏEuL¼˜•,ÝÎÏ’x–ÅsI<â9º©NÎLur†oeõ¶¨Þ–Õ[Pp[½9¡CϘ ¸]7ËwY7Aé´ó*¤ªm Ž×A¬4f'Öd„—a~XásWÄEÕ¥åà S^–ÅsQ<—ÅsU<‘ñ ‰Z¤kˆt ‘®!Ò5Dº†^a…‰«}5\í¶V8ñ^ÔÞËÚû¢ö¾¬½¯jïöu-;º‘˜Å»*f¤·’›VNIÔu98›.‰ç’x®ˆ§#È^Ïɛ֫'H6Ɇ Ù$‚d#NònšD#¥3”ÔÛR‚‰æåÎN­÷‰pS{/iïKÚûŠö®e“l‘ñ\}ï½ß~ûjûÛú¦ºSÝz¿½Ã¶¾«îînïÂØ¸;k®öýöûêáæ›¿üµúÝOÛjDԅŨ.0e%6ˆ×³“¶x×åc$‘°¨ÄÖÁŠFvø©–Vå‹ú»^ˆbP*UÌ X±ªø­]¼÷!Wßtßã÷Uá3à·ÐÒ¹“Ëé¿(þ˜Ñ†PÆŸ€©œéü¨årû!ŽÜ„%ÓØâ›.K&SÞyÝÖ%SÆâl¨K£„ðâo gH¸>^†Ü¼ÇýÎ˟ؽÚu° ]ÏBLsæOû‡g¾9ú5 ùòòTOÝîÙøÒ9ëaEåJśӀ6±´Tþƒhvá§Y(/›Ë0 Ë‹esÙä„x *ðï?ég~Ïîr’ÝN§7 nT|´p_Èß,{‡ô eD×ôA~DîŒÁivè:UÓó_0Çö›.˜Á\ƒ÷ð†gƒ~’OÖâí®‡‡ßnçäÔî5(ôŽñŠ~Ï Ü·²óã¦{,oeÕ›X\ÄQ 'òÂAEV`Û¯uI ™ëÞyTzÇPÛ<ó;qÁŽíÏ/õ)ª½ =Á>‰À™YŽÌiÖÏz™Ya$í°î5ì³VLWß~€[;ß½–VjÜòõTÕÒ$é[]¹±=>y jbsjha¤*Ë—`Öž…,ÛK7·Ò°½p®ñÅû{ø]úöI"úäÖê÷æêäwÙôŸÜZ=¹µú¼üHÈ'·V ûO ~ú >Õ­•ô•:dð㋯ŸßåX.cÛùç¼Zs´.t^æ…T€zŽV‡âÕ‹YàÿŠXAÔÅg©vQ—ýÔv‰ÿ>¬Ö郉üÃì‰U•ÊÒï¯9ÌÒ³.4Ã}èûënâ“À¹0^§ŒýùÑåù‹—ìÑ]òi²ö²ÿÔàl²ö÷æY~þüÈòóÔ]žÆ‡§ñá©ÁßËø0tóÖ@öÌÈî,ÜN«Ó~\m˨(ö¨“³n猯o¾øF÷û[’>”=ÉÛßoÓ:({š[ S ù4·~ÙjðxPF⸌ù§žû¸ÇF¨xâ¯×µ›-¨— ^‚¶}B‡ä™Ÿñè$zb…¨¹¾*T“[xÓOÕÜê´{\Nù|ø?m5ÝfÈ úÝk¡þ¢õט¼Á2Ê}Ô(˜¤Ë%™£›al•ç¡r##taS×ÍÏ2ûUÂPÇS¶A‚VãÀ‹yÔo{Q^xîÖ£NÔñFöT-‘ª Èãºòœ,x2MïŸwÀ”éºWlv ؃ù&?ëSn7C¼«OÛ:ÍÁt;ÅÁ#ï3 ÖñPëÃå¤0,9¶ëo4ôd sNG°àÊÉÍp Â,mpH£‚¥È÷¢Ž-RÀÞ²¹4˜®Ù[¶† ŸS ¿ïö`}3´OŒ[´Põ†lYSgAцæ ÜœHPD'À”)Ã-*dLÍŠØR 41#÷Dû$SoëKtk±¥D¢Q}K¾ä]ð‰‰7b¢õù&²œÌã3Ý8>x»vådáŠ+×r×8 bJ²Wg su4þlÈ dò"R'Dà¼äÞ¤öÊ#•È_j­Z½½ì å*Z-ëz ¦Œç(Z5;¢úùõ±v8ÿæ¿ûòŒ,Ã¥òÒÚ¡å±ç3»}¡ ɉ«¿½†%ªžË$7±ß†ž"¼~ƒ ‹äÄ÷;;!¦>ò.ã’dÎDY”Ìš,‘¸œÊGÖÚ>9Ô/påR½±ÂJ䤫ÌKä«ÊZR8æ4%"U²i­)'æns*ì]h&³W†G9"ÃcìÕ"RQÝ+{1‡sZž²Z.*Qjˆ¸*ƒïgK˜磌וÇÕâüÒõ4w€‚ܦ·×lzƒ­T’âdÑ®Ó#ÉI$¦‘0›Úé®Ób\%ZŽ/¨þ§Ûã Ü£²é]*Ü‚Б‰ä@$2ÖB¥ˆ4€PÜý4€ÌÜ™I_Z^Y­nn½Ú~ý{û6ööNìî'dîÞÎøãûoרCgí¡¿©½=µ’WÛO$íVg.²„a;Ç?ëó>%?ôNN{dànWG‡gmßã ¶û©ë5¦5MtÊ#':ÇÅB¡öh už0í3X/=šÒ«¥ãT ­&Ù…¦\k S}´†¤ °2.àܸ€W¥ëhôJ‹ÔQæcÈ¢tñð­³kWf怩#ÌMù¸OQÔ‚%é©îb‰ýÚœåÏAN~®e­Ÿ³ðV¯ÍU¬z_­s˜/]W¬ó¹ê´>qÓ”Õæ‚¶îï,.äV«¹‡vîRßDå¹O>àк«®^ 0‰”J¤8rQnØsûŽk{6üíÌîÛ9Þ,öTØÜ¬þÁ£ÝxÐñ4Û°ðfŸšmT:W‚j±gµtÙ‘ €¤#hiÓj³À'I«'=žz=À±ON@Ê•KEW¨e.|Õ˜ˆ =ÕU(Py­>±ûÍ“³åJ-0ê7/½¨-?asOóOxÅÂÏͨhµ¤§Œøèài~DsB9d:ðMöùyçc±´ù‡–O}°ô—š[Sˆfv!jô;(›o€{3ðPUÀ‘‡ºÿ:­z:W¥8T95´wé¼! ª—#ì´#¨ 7ÓKÂIêAìÐMõb¤„ZÄ„ ¬³'e(ˆ'C C›r¨1”C±94ËÞF¥z¹Ïs9TºVb¨¬Xˆo¦z+ª·’KC€‰ÀЬŽéíÀ%Ñ{ˆ“Z¥…êÚ¾®E“+¶<²S©$†ƒÎ޾±b÷­oîÅWöãrH›©é€~"WÜtè:ÃBÇ®pø{cÏ܈L÷ÍÍÏÜ;åæÈ”[îÛ:忏BzÑ·qÊ…n¹á'pÊ Œ™Ð37"Ó}s³[xæ&dè›ÝÎ)7"n¹Ùmr#2á–›ÝÖ)7"n¹Ùmr#2á–›ÝÖ)7"n¹Ùmr#2á–~&wʽoýõ^Äò \„~Ც»@]äÆÂ’…E%ÉN!,oŒŒ”˜¼äÈn)1yÉqÝRb2%/Ivs2aÉ¢’ÄÝM…%“¢UŒMw·’˜LÉKw·’˜LÉKw·’˜LÉKBv+‰É”¼$Ùy+‰É”¼$Ùy+‰É”¼$Ù9¹ÄÌ̽ÿfûíšµ_­]--.òÉž±àõOm.’øøg<§³3Ÿ¯qÁ™x2xá³Àñ:x h6šàž¾Ã\ôT>à*cϘÛÚzh6#>{°Ñ9;°4æa‰Ü=k³óc k(þ 7&ý³ÓÓxj‡m [îð;ºÛwžöÿü÷ÿèƒXCÚgRlçÊ\DLj±øÀ˹ÝÅëôgmXk°RÑi ªè¸==å~<·ÿ÷?ÿs€`TnågR¬ÜÛH‹'òIéÁiúÿúgø»ŒåFF»ú¶€æ^K‡ ï¾ …Ìj¡ssìgb´¾µ†‚Vq„ v¿x£,ð1bÈæ1Þ¡…fÃ…ˆ×†¡®ÎlÚS®TLÌ ðå_Só¯1Î4bÅÐÃX" Ò¨&¡¯j˜iEZ6uÌAKLñd;ñÛPH,À±JËË ¡0‹ž Ñhja×ø @)C¹[H*Gb1À¥Ss­zeÎ_[KêÏöNMgéZ„"‚hÐvü3Çï5{g=O9X›ïz§-Ûõ^nX¼=®‹q©k®Áe=X_¯•¼sEGß× Hʇ¼Dã.;ñºGxÃ[¸2‹9·ÿÆzçö¿· …ÆÿõAÿ(— ù«%±·W’œ!ê³£®AÓí>üÎkìŠpfvhÊèCrs,ŽÞW«­Vµ}‘À@ЏZ¼Ž†æ‹÷Žb––â´¿òì>Ú–~þlš¥T|©?óÄpÈ_yÑ› |éþ©éº6X>Šœ@ ú O÷nkg»x¸½÷~§zøþ§oßì~s¸UÝ}óö/¬ëýrÖìzê*J¦ÔÇO[ï tî­ZM>Wþ6ua)]ɯŠfº*Î)V…ûêUáfzU÷ƒ­RŠv\š_¹®Kô)Uâÿ÷bDN¡‰M"¹M¥ÑP&M‘Ùey£«÷ÈÂÉB›ò´F?K\Tg8XöYyØtÃĿĉe#+²ÏÏ’x–ÅsI<ƒÒæ´âF¼³ëì=¨g[½9¡C͘ ¾¾ïæ«ÆƒsrQîäÆ`O.‰?¹$å’8”—E hÌxkŒ5G­ý%ö¦Hó —ß ?#.Õ•¦Ù¼[ÌØ A °\P'Ìòº,ž‹â¹,ž«â‰Ý¦!1Št ‘®!Ò5Dº†H×л[aâN»î´¶V&ñ^ÔÞËÚû¢ö¾¬½¯jïöu-{¯]<•ó¹4ÖçFñ>—ÆüÜxÜO ûs“ñ?7NäÂ5ð$ÈM{CIô¿r ¥QÏ%ñ\OG0U7KlNž˜ yÓ®ë R Aª!H5©† ÕH*ä ›“'ž‘×î@Î4RkI½-©·`ÔŒ—þöxÌ[á!žÜ¹Ôäï«ÚX%ÂMí½¤½/iï+Ú{œ]wŒÔ¼;¤)Ø÷Þo¿}µýŠm}SÝ©n½ßÞa[ßUww·waíµ;k®öýöûêáæ›¿üµúÝOÛjÅeéêtSt*Ó^݆iQ•énî}Ä·‘˜Y_úŽó¾™Š¬á59êæÁ8¸?v£ì.*s;*; BܤBVUujnÉx/Hî¥Ó} §Æ}÷ûÙüÔÞ cÖQ.§çé~kÉCìûê›A1fïÄ>ÕÂúµ6¤NkIСriÕ·¯Ô×=¶3ÚÌëD) QÖ‚v¤×ó&årû!–<Õõ]דÎîÞyÝÖ¹]¦2¬ídCbÓ˜ÞDeªÍ$Yö3öÃÎC4’†WxxTøR+ü÷(ž*ö7Z±‰¿] ÄQaË4gþ0é*Kæè×,äËË €®n÷l|éœõ1[šµúƒÂ,-•ÿ j8ü4ËËËÅÅ?˜‹…åŲ¹l–Š<¼X0—Ì?nNrü¿3¿gw9Én§Ó7*>Z¸/äo–½íV8¬MÉýE¸¹ ‰æ*-’n¢ÔsgͶÛ:C÷Íâìž·ÆÓnçÔëöšžŸgoHUÖkyŸí6ÇÜn]€Ú­v¯°†®cº÷Ç€‰`¨7 ¯ëµ{˜!Ïvå…àyæ#¾®ÇlþÏ÷Ní.¨ôŠ´f‹ããòð×_í÷û o6çÏzùvç?]¸-ºœRw¡Ùþl·šTÎáJô‰…–¦Ûiö@¿ ! @@B+#ÅÎûkm¬g>)~’zr“4е‡!÷ªõ«ÛT²)îXˆ©Èô„éÈ ”P¾ÔK±#nGš¡ëëSgÑyœÜb±ÔyË4àãýpñ‘òМ€Q÷ÕÞ/«&àÕS缓ÎyŒ|´œtÜ;àä= ®‚Ðcådš½‰úxï¾EF‡ïc’ò8y8ÞU`aOõi`Ý5W ÓçÒÊ#eÒÊH‡À¡Fã©»ï¯]T—¨/ám¡­ÅÍò=ûz„¬»è”')«‰¢Ÿ2=Âû (p"Ÿ•ƒDn`ý,-z¨Ø³´\D{Õ»‡úI$û8볚l33=^ý¤˜ê'9RhOÜCm|ÙRøª°r"eå‘ •ò˜óìû`Py”\¢œÃ¨•%ó>ZÓ’ùH…9‡QE³h;÷À*¢ó8™U_)—SÖmdzôŠä.¿oÁ…Ã×…i/Kˆ˜‹· bv(ÄÑ»³AD&§"¾³nlÄ ‘Å,±›Ù%âÈ,ÝÌ.ǶLt+nXJÝ*»…7B5MÄnf˜‘ÅL±›&Bd1ÓDìf†‰YÌ4»Oëùn>$ßêÁü-Ôøµðt =æf¹- ña^ÏM™cvbû4¯§ëSá†L|a¿H\ æl1ÎÙìqöa8碢^ÚP/|Âu<Éô:í€!‹y´:ÞZ´º¹ªV«jƯ*¢(ÖþL ³ƒý» ›K+ÚVÁÒJ8r¥hƉŒ¶ÉPT7#dd±¡EáÈE=r1YÒÑÒçõç»à5ù—cºbž­OÄu;ອçí¸‰'án(¢DÔõˆ•Åàâôb„«+:WW7ÇsÕ;l‰U­-Æ»luD—%Vm½Úä&wrë [ˆ UßÿÌ¿ãw_ž‘|¿,#äÓØ ¡ª5…»-4¯£j¨Æ°ÈŸ³wReCôä¥ÀE¤_é÷û–Wí))‡¼õ²×‘½2fOËÝ|ÏvZžÿ²8µl nÚ…dwQt[êÃm”¼{>j][ÀüƒBy´¬#v™µ{§l˜HÑ‹´¹pççüÌÁi-ÝÄ)g’"GvKs2ÇuKsL)sa!oçbŽ)=.DvSsQ.Dvcïr,¬Â…Ènì]Ž…}Ë!²{—caßrˆìÆÞåXØ·"»±w9ö-‡Ènì]Ž…µ×YÒ ÀFN¹ÅÈe¯á±Ü\ÑC@Z1NðœY°³jlÓúýÚ¶Õ:Ù$_vZ|qD|‰âS}jÅS”ƒÕ|ȱërY@K\è§`XŒ®íK¥5z“OK¼4VbÚ´…e]váMs¼WºÕ²ïYc)®‘®< í,÷_Èß5ñD €ÑÙ*FT¦~–ø°j“%îÝÓiÑÞqNÇ·8#ÚyØe´²ð£‰BØ "JšVƒ¾+kÎl ¡»Ä21\F8•íŒ.È 0†„Ù™—¢ZÚ1üÅÔQ,ˆ’Ò•’Æ2”y«ŠGC1%‡&o€œYøŸÿû?.ÄÏrÅ¥°Ç¬qŽ*"»tƒ\ncÀ8~hÚç '¶Ê× Ó=ý<‹ wºwìäôb ­ÿo‰É˜-ÇJ¬§WüÇRz<çÃÏ÷Sû?ßwñŸi&IÆÊ;ýzÿùÞ›}RÉeÁ«æýV´=Ý ¢²¸U3(.’Œ•÷>*úœÏú, ^˜rEº+œ`¸èÓwV°»ŒTJú% I=Î…©WˆŠŠ'Öî½4 NæþË-ûð¢O_ì>D—Hf­ÜmPôŸM¹ê‰ŽVô@ckê¾ge• Ï´½ö,¡üÓ¯"øØø@/`€¶í}öº‡ ºy˺;Þ%¾œEб@óº>0®Îœ ´ÍkŸž¶š® +ßȃ(‰óÐ-VvoçÇ#]˜€4lë^0÷4†}1±`[ï&.xŽÌ=taÒ3 U8Ê_ÑÊäI½Ñ(‘ÓÆƒ{;Í©ué…&™Ýê±½ø¢ú‚e$Œ‘¼ÉeÐFœMŽW%Ó²»FR+"ûc°|ó¾x»ùÛdb)ÊÄéÊŒÇÁÅû%ši”…ÃÒ"y\-Š/ò»Z$'¦Eò¾Z$ç«EòhJ]¹\$¿¦ErÄZ´éáÐÃ¥G=wyÙÅ 96[Ìe9-yÎÈ)ÐÃÐå^$je¢]_D»L´ËD»L´ËD»L´ËD»L´ËD»L´ËD»L´ËD»¬•û!hÏ,ìÿ÷ÿôk Ó3œZÑ]ZœªãÅ{( ž-baîát¿­9-»ýi ݺÁŒuåbèYÕÄlØž@YK¨ÃZB1G/6ô\ |ÄOÕ—2wS=‚Ä“¾oÙ§±õ°Pß~ú$ó€}60³àßeÆv™?vÆvw}*kYÈý{f–½í´s°4SW[|æwÎZuvÔüìÑÊ\•p¬œ@܉ ø-A‡+–º1“pÖe–ô5áª~“ËuÚi¶ÅyÐ⸮áÀÓê\áíš^§ÃZv÷(zü¥hŠuî‘t`p/#fáÎr¢¨êYFŠª÷s!Q3¸Q}ðiob»­¦)e§_\ªÅg­z¦²sO7«5öZÁm‰a©œßIÊ¢cÚ¦—6¦®£=N~[І¬N|”sƉìP\æî‹ë@©ÑxܬS¥X*ß­âÔ0¾•^1SZňl2½âtûˆì”‹á‡Ô•ï@¹~H]ù”‹á‡Ô•ï@¹~H]ù”‹¡“ºò(³1eè¥õ£«×àfûÔ;´•³jvýòq÷è«1›ÕyÏžÀ¸h¢ý—dQá Ö„©ð÷huE£ªÂ¾`,)†–2oË ‹œ«ù÷?Oóg?uéjsˆ| üÓßGÅÖ›Ow3Ïç_3GØç™OºZv½P6Îu²6iÕ½º§ª ^=Κû­W·9²¨OºÕÈqÝÜH= /Ah¥qS#õ,¼¡•ÆMÔ³ð„V75RÏÂKZiÜÔH= /AYâ"„M¼¡eKâ"„M¼¡eKâ"„M¼¡eKâ"„M¼!QxÃEˆ»÷.wâñéª÷m®zßJ(2%I<ÞJ(2%I<ÞJ(2%I¢ÝJ(2%I¢ÝJ(2%I¢ÝJ(2% Ù­„"S"‘Äã­„"S"‘ÄãÍ„âÏ÷.þmÅ/dÎ(EÝßßh+™)E²ìV[ÉL ,’e·ÚJfJ`‘,»ÕV2S‹dÙ­¶’™X$Ënµ•Ì”À"ñs«­d¦‰Ÿ[m%3%°HüL{+Éâ5­âùÐôY*| “BEðAÅÖhˆ‰ö“ËÚ~rY;‘[ÔµðÕk¦í6¯sL…›ÑQÏTfÁ¾fQãšáþéVæÇÐqÑ%ÅãeT +­¢XÉÁ‡é­’^Yt}Åœü˜„ùíÍÁI¹ÛMGÙ“ ¢ß´ ¢qt4¥K|¿”Âú¦2¹êbi90„Hïüo€! £¶\ T4Cõqüò™×šô3‡K¿bDú}^°àOwÖ÷$ Ÿ„á“0|†´6/Ù¥ëÍiË·Õô{¬Àiñ¾xá?dú ô¸7yGO9Žß|1öm0†”WëåÝû1w\aý_ÿ — Sóú…  ¼Úà4R/§YápµT–8žÈbR9NflÀJ·ÓþìuÁ,P¯ÌĵáÏÖéUµ}ÁÇΩq±Újq ÓdÕ•+,DÁ—Y,ÑÄÔ¥ünŠ%Ü?(äV§:ÂÇ‹8dÞU*¬hËNøJ›xŸà/4¡²üýµÛw›Íé_9€ÝÃl Âö_6ëžå`þ1í;§ïà¶äØrƒþP†m²K‹I]Jr ó[p¡À Ãym¼Ò„ï»gmºÎÍΛ­;ív{A÷$àÆ÷y·ÃÅt×óÏZ½¼^¼{òôßþíN¼‘PÖÍ€-¯ù™õ¯œ2ßûåŒ ÑØ¥‰W¿spzµ¹µ6&µÕ ©I̽YVe>o’M»Å¼~¯k ï ÌnññÆgžïÚ§yàø#¸eák6Ú€ëó›sÖã°8nù ìzv³…޽vræ÷˜„P[èu‡W{ìù©ÝãõÚö±F8®àVljˆ«*èÅD˜Æ¬ªRžý(çø”7tûÿÝÖÎvñp{ïýNõ°úÝw?ü|¸ûÓÎΩ¾ß>ÜÞݪ¾ÛÞ•í)p.ð¬h­L¶Û$·F<“gàÓÆê\™‹Ëpéq²Ú;tü³þÃçÝÁÖN‘¼Ïò áXŽm°ŠÐhðÖÃg8~|¸W‚šaèwêÀv¦­,{ ‰.Ní!æz1$Pܘ»íó©Tý7n£Žº9²¡‡Ý“us\áÃî UÐBKiZ'OvjÄÒ–Ò„l²S#–¶”¦E÷d§F,m)M‹îÉNXÚRšÝ“±´¥4-º';5biKiZtOvjÄÒ–Ò´èžìÔˆ¥-¥i|§F Åh®éN¸ó—fdܶ#‡³ìZ|fsÈú¸\Wb|êkdu¯a,áÀÛõN[¶ë½\ÿª°1ÏG}¿×ìñÁÌ…±ç¬''·<ݯÿtq ^ ¼ÆòÊ*áspefŠû¡Uçc‰=ÎÞzçüe…=_ßx>Ê2–‹1þ¿ˆç’Œ‹0‚(é‹ì9Ç/€–XÑä@<àÊŽB8—YqU`*¯‰œ®ƒ›\ϼÆü®o Ê3Æ -ì_º’}UÖàˆ|·Û<í1>Ád=ϧq±-îåât4Ó">º`m7*éäÅ?;=ít{Œ›™9Ârȱ¬å¯ÊׯB°’ k¥‚-ž…eõä ß4»ö‘ݶٷvÏþ/ßð™1ÿ,>† ¨ÈÈr"•¹$£2¾KÛ±ÞJèiâ65|Gg-‰Z|>Ö†$[“ÀÅîZ~ÎXx óB™½œFêßÀ(*+ÛìœvN:~H‡'–b²Æâ»²h>ËüÔþÔ ›ˆf*™vâJ¢¨•›·ÿ‚ÏÖû"–—ˆwh1#gmû„7â¨wÐN·ØGV¹8-åý“üúO÷Hù×R¤,÷_þC饕0iË¥U ÛQ›Î³ùò¯p`õȪ»[oÞ=ºHI+ò‹ÿúï«›[/òù¼‘Xôr¤è‘¢bfpªÍW©|P°QÔ›GÍ^¬Àœ”XÈIŠ0u#/ÈG_®Ïû—òýô—®ObãƒGâóTHA‘peD2 ƒPá »mi™’øÀj÷éñÌ;˜Bó¥*‚òÔ±N¥„AÓj ú¼N0ŒÄùñ¸”¨ „‰G£üp¾¾zœ³! Íëƒê|¬j •|tÓ¼E ƒÙK߸9‰Ë‹!PýÒ÷I Kóå*Q%:p®1Tóv£ûÈ} hé QT”>·öøo–}ø˜ ™Àª’ð{[‰i¶ÒÊ`ü¼M |°4¨ê UE9 *z1ÚþÆ®¯ª›7#ƒc˜Mv~‡y÷Dÿ°GoßóG­Žc·Ä @æ< ‡EôI ÌDÕÂÓ‘”VUuÑ-XRüKˆ¿¸$ ¢B¨y†¦‡ûã´pgx‡Õ€¿–1 („1ŽèÕ¨f&>âø>Þ-¾¯n‡n–Ýd_Ž©ÈLå%-Ëø‚)Ýeð÷ö…¨ïä´wÁgX|zwtþ¤ðxêŸ..ŠøÊ²¶‡Ê™dåÍ,/ÊÌø.m’ráš# (rjÙOÜ*6xê2Qo¬Þ©} ’©änCa׆9ÁæîøZ[rk—ù£)e*kĪ%ŒÂ÷SM7³hÜFSÎOZ@ò¥t¡V¸^h¦WLL›#MŒ²ù*”bxÿçäðw0b=²Ç§~N7Í"—@ Íé(“AHd‹Œ›ŽíD²ÜÁéÔ²Ó,ÿÛ¯n*b9ÉCͺþ´T ª›Ž ¦8 ƒg<8h`óíÎ!nÂØuÒ¼ô†¨{òÁ(tÌ­ ¡B[ê1t"­ ï™ÁÖ3†xf2¦±Ò¡ùM¬ÒÄ’h(ôÄÑ„Éù¢õZ óAG6ͱ)à4Hòœ8&1(J0‰nv8é„2RÕd©&¦/€–þíMß+šr©_ÁN×”ÿâ|xócÄ]4 sKoü¡¨8vÅJÿ•ÚTž)ÿÁRlp›Á5ÅÌ¥-Ï79‰ñn%ñìõû}•AÕ´ªi=Ìп—¡ Ð7†<²Û°~úÊ\×í¼~Ïk×½ºÚ‘â‰>à2mˆ®K\ I&G©6”^€Ðˆ¾å†vU ܈¦åš²à!‚1aHÊSªômž¤T™¼Á,SËv“½Áìà“¯šçÕý©éÒ 4$ŸŒŒÈ!Ú'fŸ$KÔ§|¦Óä³”pã‡òî–š¥h¡&ÈK„0• 8_zÉdde‹/S}MÀËL¥»f™Fzîãü½¦EØ¢7>;wYÛ?hÖÞ,¤dÈyCÂ'£­y$+‚ËB‘f(¾ÒŽšoRr“Ê TÑÌŽC2R hV ¶ ;Æó“Ƭ´Ì½‰f.Ì sH ¯_ãàõëííëÚ儚¸£Z¸žõPÎ1jÓÒMoŽêÁN3’íh1ÂÎê/H¯wHG nFñMB·pwW†"Lë”ábë8o¾¿è$TøB³ûHkw–ýxf·{ÍF“OðpˆObZÍldÂéBÕ9AÍ™.*tìûí÷ÕÃêÖÖö»÷èìÎŒ<ê~rt »ÙŠ*ßΣ~oÓg?|Ë®Pþ*¹+…¢çs ö›we´=ŸÏd¥Nóœ»*?ú;0 Õr€k0ïƒSöΖ}ž¡Êk'èšY}^ƽl–”ràEâˆ=Òd½õôƒžii­GsÐxÍyáâ¸Pô¯•Fñ™O_ZÎiDyüO¬Ù#ôÐðbJ߸…¥ S[3àù7oáÖV¼ÓÖ&³ [[M¶6•7i"Ë jí Z' JÚaÐsx Ô¡ùQ- Æóc¯šD[ïhàóU)àqD²'âÖ!¢ÿiNÏËl*M•M1.AV³©YMؾyèÌÊ}ÊA_¬˜Ñ"_¯ï¬Ð‹Ó-tú¢(±tÑ’ÞY1§ÛǪۉ ~Uœ¿®|Qd±ÏzÃÓŽïÃÙB Ño?Cöã£ûOyˆ]Û÷?Ñb†? øA÷US<¨øv÷“t$g—µtÈä›3ÑLi·v÷Û]ònô-Yô?‘J>Y°ŒÞ•Û>úCÈԮͷ¡¹v,0¥¿ùÀOµ¿•n½²À?©9÷`s‚fûô¬ggþ0þß©ÛõŠ9ú5 ùòò ªÛ=_ø”QæJÅ Fþ`òº´TÆ'ÿ ?Íry¹\þƒ¹XX^,›Ë&'T( æââ 7'9þßHTN²Ûéô†ÁŠî ù3j"E#òAxÁÜRÈ3)ÚJEyÑ`ž—në 'žâo‡\žzÝ^Óóóì ®îº|äúÌ“¬ÓæbŽÏ×AÈÅ]‡µšN×îb:>A嘨ё3ey•2äÙ|~DÐóÌïnNŒ}ëž'Ó6øLu•ýõ×~¿/.·TÚ5Å:m©–[Z=i·íE®…êòƒýû×ÚXqcÃìKÛfòžôê-\BžØýæÉÙ‰6sñù¨Ïh¡Ls¢©®¤Éåöõ•DÖÆ4óY˜º·aEçqrKäm\«¨÷cõѲjüvuOÍêñ²j^=õÁÉØuoüzÔ ›c÷4$ B•cc‹´:uƒVpÉø±ñj|“»ÓwÅø›W ÓçÒÊ#eÒJa5OÝm„µ¸ˆ&7íúškÛZÜ,߃P¯GȺ‹Nùqò‘²šxAƒ2=âZ†(p"Ÿå6W27°~–=¼s²´\D{Õ»‡úI$û8볚X?”éñê'¥ÀT?É‘âýjãË–ÂW…•û)+T€¬”ÇœOß“”íýÇÆ%ÊÙ8ŒZY2ï£5-=°’w*£0gã0 ÎDœ{`ÑyœÌy½ð8€ËB[ Çöº0u¿ÑHÌbÂ#õýdãîÉÆÝ—gãî&6ÓÙ ½Áê/¸ðÕ0ÕY¶œu;ã8{G¤ƒƒ¥A‚{£º&–ø³ƒþ´=±G<­KÂÁ-Ëj+iýDI÷¨¼®÷Ǫû€ÅsöCñXsfm©Ü¶'æ÷Ua¾xý`FNmbÙTM0½È4¯Žqù¸xc> .´ø¸1„‘Ü£ÈÑÖÎw¯ Ùæ2s›»;‡?½}³õëmöv^ÙÃòh–o’Iž€¨l„Š6d6œ3^ŽÄœÝI3´v¨ó{>³ÛÊ•PÛ;oñÞ9óºÓuyiÄ'\Ń|»ÓôÂ1«]&ëøŒþâ!± Ï‚Ç[*úœÏü, ^˜rE 7œ`¸èÓ"qØi¤RÒ/)~Hêq.L½úCìxTÜP<±vï¥ap2÷_þhÙ‡}úÂ`÷!ºD2hõnƒÆ£ÿlÊUOt´¢jfϦÍYåÅÂ3mÿŸÓ—úõOH¹L×¶½Ï^÷0A¡pY7Ÿ¿Ä—´¨Mzh˜×GËæÌ¹@«¾öéi«IÖÍ# ¢$Ô@!ZYÌtaÒX°­wzÁâ+– ¶õnâ‚qJñ‚þ±H& =³ŽïK«ä„³P..“åþ’ ÷wšSëÒ M62ºÝ3b‹ñEõÅHßæP†±}".ŽY%Ó²»FR+"ûc°|ó¾x»ùÛdb)ÊÄéÊŒÇÁÅû%ši” Ø7Ëäº\_Ez”èQ¦Ç"=–è±Lz¬Òæ‡C—uzxôhÜå™ d_€äø~d—å´ä!8#§@C[”{‘¨•‰vY|í2Ñ.í2Ñ.í2Ñ.í2Ñ.í2Ñ.í2Ñ.í²V=³°ÿßÿÓ$5Ó3œZÑ]Zœª#Æ{( ž/baîá„‘—iÍiÙíOkµÚÂô|–ó¿}¡*fÃöêÉZB%ÖºŒ9z±) HNƒ@¹Õz¬S5K¦ÌÓÝT— ñ´ï[öi¬ƒ=,Ô·Ÿ>Yº³¡PÀÌ‚—ÛeþØÛÝõ¥'ò­¤}Ï̲·v.ìâ’ùdzV=êbÐépq÷/àñľ?Åœ„㯰7·Õ»ræ¦h*Gn<ÆËˆY¸³œ(ªzV„e¥êýÜ¢Ô¬„T|Ú›Øn«iŠYãéW…zqÀY«ž©ìÜÓup½Vp;ìö÷ƒó;IatL»ùÒðÃÔ5r¡ÇÉÂc Ú©ŒrÎ8‘ñŒËÜ}q(5›õcªK¡Y<ƒZÆ·Ò-fJ³‘M¦[œnÔ‘Ý‚1üÊò(é,ß‚1üÊò(é,ß‚1ôbRY¾c6¦ ½´~´sõ\ÇŸz‡¶rVÍ®_>îc5f³:ïÙXDM” ÿò,*<Á2þMÅhTUØl7&ź£ÃRæmcÙŽ‘s5ÿþçiþãì£.^M`ÑOrúû¨Øzóé®bæùý3óüËaæÃæ<óI×Ë£—ÊÆ¹R6Ã&­ºW÷TuAÀ«ÇYs¿Kûêf#Gv#«úI79®›[Ögá%­4njYŸ…— ´Ò¸©e}^‚ÐJ㦖õYx B+›ZÖgá%!K\„°‰— ´lI\„°‰— ´lI\„°‰— ´lI\„°‰— $ o¸Qâq÷ÞÅãîoC<>]÷¾Íuï[ E¦D"‰Ç[ E¦D"‰Ç[ E¦D"I´[ E¦D"I´[ E¦D"I´[ E¦D"!»•PdJ$’x¼•PdJ$’x¼™PüùÞ…âÏ¿ ¡ø…Ì¥¨ûûm%3%°H–Ýj+™)E²ìV[ÉL ,’e·ÚJfJ`‘,»ÕV2S‹dÙ­¶’™X$~nµ•Ì”À"ñs«­d¦‰Ÿio%£ Y¼¦ó¡U<šž" C…t ¨>¨Ø­1Ñ~rYÛO.k'r‹Zø¢¾zÍ´ÝæÕaÞ´p3:~Û¾fQƒáþéVæÇÐqÑ%ÅãeT +­¢XÉÁ‡é­’^Yt}Åœü˜„ùíMÁI¹ÛMGÙ“¢ß´¢qt4¥K|¿”Âú¦2¹êbi90†Hïüo€! £·\ T4ëúqœ š×šô3‡K¿bDú}^°àO÷0ø$ Ÿ„á“0|†´6/Ù¥ëÍiË·Õô{¬Àiñ¾xá?dþ ô¸7yGO9Žß|1öm0ˆ”WVëåÝéÔ/h—Wÿ×?ÃßåÂÔœ”¡jF/58ÔßËiV5\*•å^ÏÍ1Éß@“YéÚmà$—Cn§ýÙëö8;{¨\þl^UÛ|Ôœ«­§0M&Q]¹Â(|™ÅM9LYÊï¦XÂýƒBnõpªc{¼ˆCf\¥ÂŠ¶à„¯´)ð þBS)Ëß_;°}·ÙœþµØ7ÌÁ¦ lüå`›îYfÓ¾íqú®jKŽ-7è/䵚w ÞzÿÛ¿ýω÷ÊKaÊì?³Þ¡Âÿ)ó½_μ¶Sõ—xuMÿÓ«Í­µ1©­NHMbèͲ*óyshÚ-æõ{][x`v‹KyŸy¾kŸräþ'ÄÅJHhvÔàòÆ<Çæœõ8,Ž>šžÝl£ó¡cù=&„Œè Ç«çÙûcÏçHí[mï‹p\ÁiTŽDЉ0ÜŒY=T9<¤<ûãíaok… µ\‰#ÉoÐx{Ein’^¬3°Ófu®ÌÅe¸œ¸@…ë:þY?µ”?º>‚',A’éè Põï›>;¶Áâ@£ÁÛçŸ#@¬ügèˆêÀv¦­ˆz  Ní!æQ1OPܘ »íwº¼“üÖÏDÔ12G6ô y’cdŽ+|<¡zWh™JkÐÉNdXÚ2•Mv"ÃÒ–©´ ìD†¥-SiA;Ù‰ K[¦Ò‚v²–¶L¥íd'2,m™J ÚÉNdXÚ2•´“Ȱ´e*­AïâD¤꾆 wÕÒŒxÛvä€`–ý€Ó—S¬ËupýÅ'—FfÀ\ÆÂ¯]ï´e»ÞËõ¯ ó|l÷{ÍÞ€\‘ÎzrúÈÓýúO—àeÉk,¯¬ò>Ó×Tf¦h°Zu.1–Øóçì­wÎ_VØóõç3¬(c¹ãÿ‹x.ɸ#ˆ’±Èžsüh‰MÄ®,áx „Pq™W¦òšÈé:øÍõÌkÌïúb fCƒGàbw-?g, ›ý‰¬ÈÔ%8ˆÓ¿¡”¶Ù9íœtüPÎf’„gubjÅâ»2[>ËüÔþÔ 6|˜©dÚ‰ÿ¢6ñç Ù¿à“뾈åM‘÷L1fmû„·Æ¨ßÏN·¦«8-åדüúO÷Hù×R¤,÷_þC饕0iË¥E¤¨x²’e³Ó._€Õ,VÝÝzó&؉ÐEJZ‘_ü×_ÝÜz‘ÏçÄ¢—#E3ƒsfvÞäÒÝF‰Po5{±sRbÝ%)ÂüMû³ÝjJ;Ý ¥" Xæp.‚Q6 ìP9‡ gv|*_¸>ï_^È÷Ó_º>í ˆ=‰ÏS!ÎD•É$ ~p@…ƒŒ›¥eJâk×§Ç3ï`.ÌW–ÈS-•FL«­¿óv:Á2NçÇãRr 2&òÃùúêqfÌv†d,`4¯ªó±ª%TòÑMó- ¦!}ãæ$./†@õC`H¬Ã&1,͉ªD•è9\§ÆPÍÛl¹öI, 9,DQýQ:§Úã¿Yöác€f:~¨JÂSìm%¦ÙJ+S€òó65*0»ÏÒ ªC0Tuå4¨DèÅhû»¾ªrtÝŒ Î*6cJ56:S€-Ïxœ?ju»%¦Û»m+ï;ôI ÌDÕÂÍþ”^PUüjîü)nÄ_¼·Q!Ô;º ÈœðxzŒ.®@ø2®¶‡Z†d®Ì,/îÇøþY’ráš#-rjܺ"x¼0Qo¬§¨} ’©änCa׆9Á°ãîøÇÙ[rk—ù£)e*kĪÁÿŸ½omlÛFÝÏþHÒ½mY©‡'²¯í¦m6M“MÒÝ4‘íCR”Í$ª¢”ȶ|û€ï§^NÚ%™H2 Ì À`0`:ât3éaªiY!ñ„N)Æc»€Ÿ|’Ó'Xí¾j&WLÄ-!Id¯ª>èÿ€Ž–%ð„ÀÓ˜3{|>?j~t¤¬€ªš›[å'[œw›9AxÎw6Y¸>žœºÈvúމßÔÊùÉ©&°¹ÅÁ3úØk`å¡uISüK»æ­‘â·ƒQ`åØm$ 'ò ô†ìÙyé‰!ÇCʕΑ¤*-‰„?s8c<Ý)î›J~` àÌÔ ‡G‘0ŽAa„qx½¼é¨cÊÈ«f‡×ÄæÅâòÿml>¼Œ«r¹Ÿ‚ºìüòáù_ŒëibtK#ÿP¤ä®O@ù?ç CvþãTl¾Êàšp^£ê,&Š|.@Þl6s t›ÖÜmZ_gè_âH¿Sg}ì¨óÛwòSÿ ™1›îµ÷žgú¦iGˆô© %ÉâÀ0— ¤´C¢o¯çó¹§“ZyŸ»fL’vLRžçJ6ÅÄå*U$Ö‘}d›ì9‘CßP<3”¨ ÕýÉ´¯/¹š„ ³/†FPHí2waÆýSöþLÆ )jr=fë<…î–HR¸P ÐBÌË„œ¦¿ü%shp*[ü%»-ÀËÒñø°#KÉÔGù»¦…Øâo|êîíùÇ óüy5 í9'ˆ¾7ŸZñX°,ðR¼Ä¿’Ìôæój”ˆ"Ll”¡…IÁÚBr¤¥éIbVqÏÃĤE´öã4øñÇgÏîÏS”hâšÛÂý¤(§W§ÿYÚ§Y=X3Cd‡‹ltY«ÆÝTS:ïIŸÇÔk븟 0©S‹í‡¹¼}Q‹©ðª9þFk÷ ûçTNÌž -à€Ó7'hÈDçú ùNb„&îwoõØËgïN.OÎΞ½~G§öã²®T!GK×SÍ~ØŸµL.³¦Í^½`=k,üi…—ë~MQi}bÛuqù{[óâ^¢Í}T°T¨—áJµ5%ÚÊŒ|˜é­BûÎoÞïìpÔ¸Ì!K:܆Éݤ(²qïÓ©Í÷ô-kòþfâÒy¿Ỏøú’™Åx^u´4¿Šã¾¦#1¿)—>F.<ÜÃýŸrV‡]dKmæäb_®!Ò‚¦.BiƒöȽ¤Ð À#’CçÚ‡¼”?mû I'=J7äßIÌŸ0‘|’ZÛMÈä“%Ÿî”ûEhJVcQ%¢Ý<–£ëN)ßÈ Ÿ¨Ó‰u9²lmž Ø_|ʃÿC@¶ÛŸøÀß~PL’ í^¼ýäD|p$íyrÊx—ít ²\¼}ñ–‡¬xÁ³?qúfžJùÖ™ùõmï!sg0/ãNäaBÛN;8ì¼p¬<ÊÒÅ07pG$”sæp4ÈÊÖßR®‘>6”]þ)×*½*æìª•~Àx0êi 2/!Z­}Ãþ®µä½¿ÉÍÚ^³!ïÉužË{{ |¯„5ç5Ån (Ç–5IK—õ>\¸?Éå ‘?üx"ÆF,q|DÇÈ>’Т|ñ]; •fFAhybt•™rÀMŸ\M¬k?Û…X·§’+ X!Ýñ,Å‘!òÞŸð8oÂí¼ ïê÷¡¤áï@ÖÈK?¨Z9,„7¦«ÖS»êF®|ý¿±+·–Ç‘ÞÿåšÒ ÷¥ýÿ.§ÿce»;±ÏâR/êÁ=èêÓ±acKE!áL'H%f¼}0šæx; ñá=ùbv'×èÝìö˯F{нÊP Ói÷"ö&À;°Æ¸aq0 ÑÛ¨®sÙF³7Ì„Þü@%B(ZgÝmíïÉéo?n[{ãP8ï:ÛÚ÷ç¾õÅ·oCÿv%Øs­ *þÇñ÷¾$ꦨS³qëq¸[aܦmõUÜxAƒUÏÆj¬«‘•Äöz±Òð‘ŠÕ9T!vßç×»ßvD ´%$¦*a0{^­V¶;á¼úqûŸÀÏŠ´} U¥méQrKHˆh’ZådË®nsÿTvùnú´ì<@¸]] °­Fjef ¢ªÊJƒñTÉ=ØO]€¾fREøã¹Õ¼`YÉ€ì´$ìÒRéX^Žþ¤¾ÒtéÇÆ¾t)”¤†Ú •‚£ÙªªÐ@±qªUsÀO"Sµ¸k!"’Ú`e<‡˜Òö»ŸŸý*­™¦V+¦F3?Q‡'§gßaÔ‹v )iô©Óg—>ת\Ót½Û5Œ5Jt¤ Ç8ÄZÒÄ·.¾»âÈY‰žÄÎ /BñÁb‹)‡ #K£QI§¸»]Ðfš0ö‡‰æÌsHæì[àZÁµ‚‘Òº ÑÑ¡^ž¼;û¹-+š.aÜËH|ÒšßÌÒ:d¥í={s*‘‚96tëjhÞ]ÔzjÔá8À=`RñГ Ç!£¡4Z{ÊA-›¥¾$1AL-DËÏ^¿óhÙç´$ýù!Ø­ÜlqašÔïc´.=CëªûÔ¼” Ø>íÃS¼ä!%4š©Ó¦,¼ýµ1TSd!|ï0Ð=6޾©í „r]³~èéëoæ~¼öƒDKÙñË@_¢’®UI^€¹Y¼tE¶j Öd€£”[ú¯árBñ,+gù† ûmuû€È”ó°ê‡ðxõ­4Šlq³‚l‹ruéæ±7ô Wã sü+·Íh±þŒ¥xØqÎ5Ü] <¬ö3.j¶hNŒþ 6žÃÐtlcH 2¾•Ž c²£j¢–F Za87ã†@nˆtœØG–mâJ\z£HêÎakh«º¥Ö0Žö:IÝF s@øFDkÇB\E‡9<¿cWãR†Ðµ ¾àóÅrM¨eöåÚ9辨æp¢Ò¡Àˆ§oô&¸Y›W×ô‹áVÐ\:nÏnn¥ª¡S/ðœâ×óðátÎ?¿ŽŽŽ‚i:m_¤íøäµ&àñˆÝðKJAÏÓ‰pPЧOŸúH ¥”˜ÕO–ÚÑDmV ¿Ÿ ,R…G”<&çgçÀ«úØ“2L‰¿&JÛ<…¯deq€PC”èGlµÒûÞ•…·[Br·‰ø³ózƒä’¬Ô«×áoøÓ×Nà/ÑüÉ:푽õÅ£ÚçÂEäð¹Œ3‘7œñ:wÆ­jGÊ•¹³³í`”K ~súÜʤq´í`xç‚@ŽQ±9<ÆßÝZM(S|‰0†Ú—'o^Îf4ý¨ãOœOpÁk5 ³Ì0Q{6;d˜ =Êq’½<$N0•D¤^ÙNh=Ã%Ÿ4†ì-fŽš5•fkÒØ:0üªUߢåP¾¹r|xÚö7D¨n غ¾Âû²¤æˆèµ·EH•ÅZDža£Ôô÷¿pÑ{W ¹¥(é]üQ©T$)…9JB#gµuß;è».~ í]>n–*ôî&èøàò!HI˜”’[+šT‘ÈÂOºÙB4)ùx3sj85ƒÔxãÍz!ÃKÊ£±õÙúdø40 ‰d;z9ƨ¾õs®» ÛV¯pñ›âÑB7ªDŠ,h©MxÉE-Þ‡Ö¡«ªsÒPS+r%"¹Òã-ÝR±ʵyIÓ祮Á‹RˆúZ ¡ñRð¡»wuv_C1ä?k1fárÌèN)J̨7Ë4&ÓÀ¢j¤ßX”0üæþœ" Jîó3H$†`¼ÞP!<cÿ^³ ÛKŸ[Så?1†0²‡UîNŒ*œb)·cQÁ)ä—Òñ™Œ5ñxÞP J¯Ö`â;e¶/ÄüƒV/Œw¸ð¯¸¸*^w­ zp^ªCýÚ—Cîñ±¶Ð”JauÖ`MÖb{PÂvÂNÙû=c?²ŸØÏì9û{Á~a/Ù¯ì{ ¥þ'{ÃÞ²wì7ö/öoöžýÎ>°KPÛ4¦³.3X]±kf²ÿ°O &$lÈ,6b°1³Ù„MÙgö…ÍØ »Í=ÿÒy\â•¶ŒÌ>â0™]0üÇ¿ç‘:™ã¡xuÁ’^]°¤WN¶ØW‰w¡W£ö¯¯.O~{÷êòõ«·oŸ½}+ùöÃ6d¥õuZò™5a–Ó¢Ÿ­¡q´õê3F”í{Ï‹–þ'né"æ-ù!kcCýÄC㬠jJÿÄ/°GÌÏw¤;¥¬4šÊ=WH1ÓR —ýô‘:•ä‘>‹5¦:³}aRtíâ·Î‹[çÍQHÐﯮpûä:03¥5ô¨¾6<ncÌã¡:}·ù“uŸ´ŸO¾·lÚ|¡ðq¬kÚ¸+ä’Ã6.qÎË Á=zWÆcÃ/\K wñ0Jšæª¨·ÜÎçÜ÷Oún­ŠYÌÆ‘æׯ‘|û?Vþ÷·Ìó¿eøÝÿ!ËÅþ¸ü¾qgí¥uMNöt4²Æg§—ú:vkì÷<Џs¬ ‹ƒuk<+Ãôb¥d!†¾I:¯iMÇAíã. ±M†/ !ƒç‡ñƒ8ø†*¹ž•ÿcNð? £fïf ‰Õi¨›ÏTN±=ÕuM{Ó>?I Óñ!WJ²×磖ÆB.òà)”ÀÇ—½>{óLÁ¦[ú—±ÕÄI»Ö—´+®ð•Oþï­„#]þï)ë!ºÿ¯^Èÿ¸‘ÿ±²ß»¨¢Ø 3rå@TÚeÒ•í1’ÝÙ‡'´jæ u®czž%5$6ä%1}@efE®ÚvIË“øj Í9Ñ'ARÑvœg´[¹-pãvãêö†1NK–Öë§Oøõô,àÕœ(:ìó"‚ŠÄ@Œ´ÚvqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqwqÿîÿÖ£wÎø¹—ü <7JY("‚ÓÕéÕõ¤²T°¯Fë0|à(`Põk ›‡YR•Ë{æ]7ãÌ»F,=æ…cè]V‚Rb™/¾œH)ŽÆß_µPÁV-Xž"9“Èþ<>rU8IL@œ%˜KôüÇœô€Mß Ymy)¢RÉY€ñ˜„+‘¨+/Àºpn²à•~ªó%vhËN½ó•˜f¾b[X¤› Q/ÀÇ\4æfuŽ”>Êë›êNËÕecÁº\Sö“Ð\_^E´´Öߺ—ãËÞ·&xé¸]èý_]}ƒÿÛw'oÞ]¾z *@iûp i<aR¼Z·T<Š ¸å»•z£ÙÚÛ§‚œ`nî#ªÿ›Aµûõ,Û=Ä4< èåqÉQõNºd¾ÈðÉÁ±ÖÆ7S%SW»no5º:mPl»<¦¯½õ”ÜÁt“ÔˆÐ7«!t*A^V|£ ¢ËS0¹U߯GºÏ#ÐÝ;ö¼Z­lw:Ãyõãö9>ŸiûþªJÛÒ£uGIËV«ÛüU<Ù•Ø›>:À6»]ÍU•T—|5•‘;céøH•vvœ™N.Æ‹åεH~qù»7tT‰‡X… 7DÝ:È’E¨_hDØ€Ôª9°…È»r¡RD§Œ‡`á-m¿ûùÙ¯Òƒ¢ ><9={hôÔ4w 9iô©Óg—>17‡úÒ4]ïv #ꦨc'O¼¤‰o]|wÅ7`]+Z.L·˜J,(YõC¦ë[¬qȺ0‚fk!Ê8#º8+6I’S_ˆÿTaƒäDÀ^2Ã´å… å艊L`T 6^&^c¦F×èÆdí´)#ç@»^«Õ"S™½ÃC\`¨ýòüåów—/OÞýL™¥l…æe€¹„ñ!uœx“›Kó»U[…á”[**!•; ²‚×È×áÅ·×ÃÝ`…×cX¤Ð±Y÷o"Q–l˜Òm©t¬€æ±&}Ä&Y¥Å$w1Cv -ãŠD15eI|ùq©ËXÎã-ñ›Ã(&–χŸÕ¾ÙuÄ9µ(ÅgÀ¸PŸM•QKªÌ’TÆU›ñäƒ2ð:žXP‘£äà ±á½z@Ž–<Øt½:FXæÕÐÝ2³-\ɘy8: ƒcá(ìJÄ®Ýi;)3íã.”‡yV¡†Æ©ýécÌ&Ôùà]ޤPÒ×Sûº:²F^ô‰¾eîòôk< ž]fèêÚ \Á€ }²Q0‰à|’€3Û†”Àà[¬§’ ]¬Ú·Ô®„Õ¬«ã.­‘XÜøýdë†Ì{Ñ5zU$¡<2·¶·ÙI£³üÄ[Šëæ]Ôà ÔdŽøs苸±rC·–ã-B©2³•%3Ÿ`}xÄ:õnô¨áÛÓŸÿ›¹dSTY4HÁ®¼õ[VàAE'HÊWÎQ¾~ŠüÓ­Ñ/Ûúê"ÍPšTРu‡; €ãFDñXKÒÿPks}Þ<64_„Šy|«ÞkÒÝ~YnÝûsÏÕ¹t'×j÷3çi0Jðhl}¶>…—‰í2°ÈYKvFÕgiäcËšz…ÂÚâ\ÄÀ‘|YùMrðôu®™Ç­Œ.6ìª4;™ÚÍÙÆ|$bÃ~Å-‰?„=)¥Põ‡(”æ/_NÁ÷+Kþ«k.׌ÅñY®Ð€%›©š¬Ô©l³¸ÂÍ–©´ãG™1î³”Ó6dZm;€vaKÊã§«—@´WAs•7~Ƕ\Æ ·š¦-ÆÜ'f=2€*Sd/:³^ï\LÂ6eñÜõz÷ç¬ʱä>?ƒD"¸3^oxø_÷oäí‹Â-g…¢ÞÄöÄÂÐŒÕ?£º¸kÜã ÇGu68¿Û£ß¥ -i³ê3û˜KSgÁé¾,âæžòûõ šxˆÉ¦ˆ¶êÎÔ…âXiÖ;í¡u Œ;•ò”¿ð-'€àT k–ëÎΫƒ«råmßå¡ñ¿Û}®±RÑ:C1Qô ß”÷véÌX J„NûýKJšR—‹*üs ]£¾ªíï”ïx—89=ûzûéÎ üÂ•Š´KŸa^í’/Ï•A^7œ/ø(0èdBÆu{¦üÄèm=àq(b Nâ èÖxŒ 7h»ƒ¦þ܈e³'æd:1¶5èæ†ëÑ·<¸8Pq{ssë=ê´=Ü"ÍËI–¸Ã—‹_γx˜nº¸–Öi{ÀË"$åå5L¬Ã]¢Þà.;|nÆ>«ý©‘£CN°8šœÉRW;mÒò’€ÁÄ:À‘`8a/.5‚:¸“?Bµ$t\QVÅjx¯5ü ^ùâÿ#=þ¯,×ë­hü_e¯ˆÿû—ˆÿ ÃÓ[í``´¹à˜±¿«™¨šhcu|C€‡'ƒ½~õöù{´ £=¹ÂÌ1P d×5>ž…ؾ¶¦ý.@Ai‘ÇuŠ•\¸ÁHê8z¹”xtH¡AÀ{Íì^N'=/ÊðȲÍÙ–£óØÖÀ›¼Å¸¢N'Ö¥rh·zÎMàœªF’ý©=剔ÿšs& bG­rá¸À¨– /ÚÓÓЭ¢$ICûWw-2Ô`&‡ift ®@¿¸4l]vy Î.E \r]”›l¦ÆCcQhX¡o µÏ›g‚ö*ìÃs4‡ ˜ŽöÊ¡b:Ѭ¾kݪV¶K%x)}‡öžãê?ÎOŸ~æå¯¨áŠIé’>¡7‘KGˆ û© Úœ6¶¾ ¡±Ï8Θ2îyÂR †„þ'%=¥¤?BRg¥åPÔÙ5dwâÐ# .saÂ’¨ÀôqÏi¹÷GT¡*T}I˨Àæ!ò/oi¨ßE[‹ Ï×~¨ t”ª«ù¡ 'p '…cƒŒ³ºáÉ­^EížÐ‘¥´ä¦]ÝF¡Ò-þóm‚ë.׌? Ö†?©¹ÝRC»dê´­Ï@hˆ5¾R.ú&jz:Ÿc§ä‘#8“*‰äqç;×f‚Í(²/)Æ;Ì­ÛµC¥¨åI›Q¢hf9€(_­äU[ qžüú;´ÎŠ·¢ºë=w]'õ¶û¬¼º D ámî¶EHíÜX}(øÃά¦ê êFâÇЂi‡ÛÎýÕÁÞ<ûéò×Wo;察Õq´pVh;9’åVUoRÐϵãPÿObc·ÛårÙ¹¹Ùù²sBÎ~8ë”pðßÎÛéðjlÝ›˜T[dc蜚¶Ý9­>/«=ù&Æ,‡Z‚« D÷KÈŒÿF#“ÀÂoøÞaÎ3>bvâäÚk|ðñiH®5¶¶—ŽaŠ+=Ž•‹Ð³§CMí«­ËJ’/kËÍŸ·~è.Ïñ‰f +_fôÍd'ÐÛŒjQ\&àñÇ“ó;aD»ßÞ®³‘:ìÂdýа_jSÀmÞíºG-ÌýÙ6Ûq5JZér€Ä’›€¶«ƒ‚³ ÊR$(¼KV£kI•—ƒêxˆ±LZ bl¡C-lyèõ<íwyð\ÝcyøÍ|ÝoiJN^›[UkQTu4؆?(ô¶½çt¿t±ÀS'Ý’!}ÇÑðƒOBýrØZ>é5†›4š’F‡2Áy¸ÑCâic¹‡­ µ3»1¤J,žÅèZ|ÍÔj¨Ç=>yÌj5öøôqõÚà™OxæÓÄÌ'˜ùT˜ÕONϪSÛs<æXÒyBø†ÆÓÑJzµoNÐѦì'_rðWlÒrךÀ3¶¥µø¨§Ž¯¦´MÅkh5rF$õ¸¤ÃLÐC++uhF­˜ Š™ éÛî$¤´îËÓ~Z98mÞ×p¨'Ùqëñõ*©oqf¹¼žgîÏÏN^·kÒlO#_̆+©EB y[D?¡+`ýÀX㛡Ù5[r‹ó~aqμòÙV‘nÿ­ÉJ³Yؿҵû/ÏöÛ»«¿½vLÀyÂ(Ñ,¼ŒQ]y#fáˆ¸Š£nò½×ªh&v8þÈΜ?qª–h¹ÙÙÙ”ºr¿À¬°:ÕG¡Ìˆ²3ÓQM|qrÊGP‡„ïh$-;”žœòáÔy3ª¶Ä`L(¯0Po>± ã°ªæ”ú[UÀÀ\Ò›ÇÕÒÅùA!Î×å’ÿÊj8Ò俼×h)­zDþ·š…üˆ+Aþ£ }mŒû»è¥NL§$óut*Amfƒ¨Àƒ%ÄIX6t]ðúìÍ3å{›¼~^ý»kª0Ñ‚N¬Ûe¦Bïæ(äêÝå22Òò› v7¿€$ïÛ–ƒ3 ­á.Åì›áDñ³£3 Ø¬ôúfr;,*¿>{W8¯†æÕt<¨Ž&ÆØÀ},4áäEþBo8,¤‘Ðp¿jbÀPƒîbî«qÒéêð{Œ<•røÉ`*Ž-6>'xG›^áÐÃ~}õîÙ!ç<¥Ã’¡ÔõWC…ý½·é1/U yk•Ñ›àÐÈØDþNáÖt‰‹MÓ> Ú=(Ó þ×Çýž»â©™CcÙ­1Æý-æx,ªÁˆX;­ ÖÔ8¡¾<[Õ–Ìš:ŽJ-¥zZƉÝü÷W¿§¡˜G:nÀkÐÎzC=Í\‘ 5-ƒ u”ŽŸœÖΤž¥ñAÙgõSꬡ Cu¦°Fƒ5š›åÌÏ6ÍÄ /ZTÐækßÀMb§gúœ‹}`eÓ·rí_ìŒl×K\kÚnúÀN=´Îø8ºH/éƒìŸŠgÃe–4™P¿;TÁ¸œŠ*a‡³¶6Z@¸«ß?HÑšbÉ|®îܦíZ¢=(¢]~÷í5Ìäæ× ŠŽIAM¹V÷/СÕ|lèÖÕмEõëZ«:Œø0YF›u\Š¢žÖoM6º»;Þ(¥ã÷R.Yö›áqѲ%+£¶T:Þ a¡ƒ÷äÜ5Ëè>.\ǰyȆÓfŒmï)Œ· eÃ/~,LÄùFú籡 õ“ѧöÖ„§ŠÖhèÂ"1Û¶læ‰@ºE¦"›‰e~å(@ºjCzk±\8c?°gëåÅÙÉ;—ð{q~L,·ÐìYßxÇ uþ†Óó%k,lv‡*‚‹N÷Ãyšn‹çéø!㇂uühàG?Zø±‡ûøq€8†/ ?tüèâ‡=ø¢Œe„(#D!ÊQFˆ2B”¢|@Àd?¢Œe„(#D!*5öˆ=fOØwìïìÿ°ïY „òaù°|ØGÎî#ö‘ ûÈ…}äÂ>ra! Ä„x °äìB<@ˆñ! Ä„x€âB<@ˆñ!ªQ• ˜ŠTªQEˆ*BT¢ŠU„¨"D!ªQEˆ*BT¢ŠµÓJ !jQCˆBÔ¢†5„¨!D !jQCˆBÔ¢Ö#`:R©Ë´œ…QGˆ:BÔ¢Žu„¨#D!êQGˆ:BD üB*»±‹»±‹»±‹»±‹»±‹»±‹»O4Ä/¤²‹ „h D!Ñ@ˆB4¢ „h D!ÑÐ ˜TÑ@ˆ=„ØCˆ=„ØCˆ=„ØCˆ=„ØCˆ=„ØCˆ=„ØÓX©ì!ÄBìõr MÚþر“åT²árE¤ô\4ä@®u)ª€5ƒÓÏÄ.Ú½™iOЯƞjŽõ9¢JvRÀŽ@Twró>NÛ hÆÍ•4cÂ!´>Çã}JäõŸvÊÅ,ì÷†u™AÜ#Û5ÇF 9G“à¡üÌN7߉¡ä²ãøÆªÂ)î×ÈYMš¶^$·²HnïlÜŒúâ0x‰"iEç&]}Î+w}5»¨ÒÏ…˜ZKJ¿ž¢y•Xàâ` ü–}.f®Ó™Ãa5JåYrÓ­Fóæn]!zÂpr·°Ør…¡52™@VþïªÏË]@êøÒvÑû%[£¥ßÜj@ÚVª ­;²»Ê/K]©dHVúX€n0K •JÅà …„½h ¥'q,Ì:ćTßÅ·»yG ãÜsÊ #¡¸e×öœÙ¤Ò¬Ô“õ:¡aååCÀÊ–ž³iÀÐÓ\ÒÐCÐSÞõo]xâ—1éóBÁ,½ï4ÿyTi TnpokTaT¿ÀЧRä0:J®=Pýx®¥›Ö˛ָgY¿P Óš²ó»zù~Ñfòg˜¼§ÏÛkLf «³k2Œž³ÇöÙ7›_r.ÿ}DºÜù<ÍæÅLÞ›Ç{³ø¬9<Ÿ¹óY<[uÏgî|ÏVÃó™;ŸÅ³UçðŸÅ³UçðÜ ÀgñlÕ9<Ÿ¹óY<[uÏgî|ÏVÃó™;ŸÅ³Uçð|æÎgñlá9<—¶ºµ;[xò˜5.s=ôÅy /@â<­l-¦ÜÚ_ Âý`}«k`ê¾±Ó ±c°C\‰[âðà—(RQq¤hÿÊXc¬/·Æ(ÑjŸ[Ƨªöp¥$dt¤ Z_½–:öNGNÝn³$;dkq ÚuÆÐyÀ‰1×OLºs_‹ñH1xº©M&þ#Í«&‹ßˆó€‡™gò4‡ÜÞ&•èPß.ïšR75ÌF‚+WîaYMs­_JÁ$]_ÐE¿Ãù±\Ãtp¾ÐF_p‚“ÕZžAuÅB„I[´h[ÕÎ M.’ ™ØÅ(À^ùµËÕxPw·­ÄíÅ\ó좹(•(ÔëoR T×sü¹‹¿5w¾l§ô—æÃíQs5/w-)æ±ÿX•ú?|‘PÌWg×ÇÓ6N`‘‹X êÉŽr¨¸O!Î’Ú]«sk`\¥ÎTó#·bZE»iÒñ#¢E3&YœX©ØÈêÎPº@SÁ"]¸-O(¯ ‚ôMŠvö{Å/? ÉÓ›¢¼çµÜt†@"ü£V‡ß "j|=Å„AÙ‹OŒ~X £g¼™XÃÀ¾A+ÔÕDÌ·ÇÀÒñ Ú”ÉâW‘´‚âð†T¾»mÁM˜¼ë¨†îJ1ÛÓv¾Újv>Ÿ:ó>ú>sÑÐZŽÍG GÊIÁ³“‡Æl"b¸â©¸Çß9NEqO3€ùß ñúY›ä)ˆr¦¼UQ2m ®šw­á'ãFÚÕ¡!,2ìÅ s»q3“,”¦gæ4-|ŒÿÂvÅ8¡ô„óØx‚„6Eïý ÆgÛØU‡ÝÝà;¯²Mi6¿™§ìJ—Ý*¹²-!nœ w¥yivs›¢(qq9äÄT1þ©nеÀÙVà ¯(4 n¦ðþ 9ÈÍ(,Œ›4#¹!‹íí\“>|X„³¸Fö!®‘}ȹ5»ùðŠ€_ôä}èÉ‡àŸ·Á?µàŸ§ÞŸ Þ„DúûßÃÏð\ïà`àà_ràf~­)–±öƒ|£œt£ž–căd*¾öÊôDËâzrc˜à —ùÅrc@ôLaÐCÂ(ñEi¦ÎÛÇY•î”{qÀûLmÏD6ç'´Kú‘@O¦ÕòÎá:Q@Qh;‡ÝÐ95½±5à\hVjµ&9:i™;Q›ËíD%о­¨çS¥~LÇ£¬‚ÇŲ­¦o WÚ@°íL±3nǬ:®qoÉA& 7ã ·ºÆbnuðAö «Û»ë+± À»¨¤Ò&<Y M/rº…ZYÊBÝ‘=og܉5bP< %Ušgai-¹›!{˜„{n>˜‹Aµ!!–imb,ÏY¶µ‹²(¾õ ³(ü5г f­U e0j‘vX:>\£ÐGp¾£žþ=fxl)A6ùVh1 ˆ»Æ ºÿÎ[Péø.z`»@ò©8Ûv µÂßw÷€ ‘|÷ïÞÃ÷øîñC`äh|8 é½pØ*ÉǸœÿ kê9â|<„Ùp´«†ýUâü¯=Û‘nÈV†¨ø©a{ey/ã<§½åÎsÀ}-Ú8¨B§ƒüôáxÍ-«žlG˜QÙ¾PÚ‹ZJqRË¿‘¸›w#±{Ö]×·=Ö ·ÞiëÖèÆÛ,J¥œ±.+ÉR8}3>ý¼ó6X²¦sªi·q aþ4ÄM_nŠ­ŸŒI ½(KV6 «|§ÔîSµSm?5ßf¬«kó?Ÿúƒ¡5ú˜?ýüűiŽvm`Ñ©ãäeËg±/XI©I™h1¾ôrXJÁJ5 7—¯¹¹D ÄQ›“ïåD>ÄòúASŠc Á9ÒZ#­eÚdl.ÄüÄà( @iÀ„V,wœ7µ_âÅ.º+ò‘m‘=Î"’©Aá§xR¯Ù”pîýÇÔ°ÑËŒb‹;C0F-bõŸX/D#SpR-pê~!ê~aíÆÃ ˆ­©9J¨¹Nb—(~¹Åƒ9RI‘(b½ós%Šl¿plüË¥ZušhÖµuP;£¬Ô„‹J§VKßü N{î/‘ã”(ÔEq[)÷9óýÉJ{n7sRlU¿€RÅJ0!û¨îÞžì~¨íœï0i™'[K劃s¾-v.ŸŽì ÒðËOjYíO®ú–¦öÙ°A Ï8É1ÎAö7Àk—ð«?CÛˆp>Á-Æ'>¨”?¾´Ï%jkβ‡Kñgkz¹y¿–é±™‹ìLª+Û¹É^m”Í0Ç<œÝÜÂ÷è±3w(ÇCŸ‚/ù_ôA‘ÌJ¾E‰ÌÇÔp[xirô‡¶ûÐ{2âTš)z5xÖtl²±ùÙ…žÃôÜÿä3=KHAXIäù Bó¯˜kþë¨2]u†yḬŸ^t:ÏwæNEÚ~¼ØyCãÐ>ÎѰxÀ8í£ÞM«±äÆå’:¯,¿˜‹• beÞù²¨( ¹)ÜÌ8bF‡¸C6/-ü‹„ÉÈQ.߇`ÚT»sÜ­r¹ø>³>Êq¦¢òñÀ:;Y•äÿï>S9sç…lA Ôy!ÖÍ&0RIÏ]™DÜó%“¥Íƒž :½ÕY?r¿õ2Ë좧œÐÄÏ.zÊ °n>»˜N,Î{­Õ‰Åƒ|q+ÿïƒüÿ¾ÞoùH¹‹E^t‡Š™˜3<³ZÎJg‚ò¼¿vŸY³€ÑÂùÙÙ Ö^þÃ}¦÷< ~©¸0^y}/ÿ“•¿×¶¤í’;IÇŒ„¿â¶ïyîÎGÍá³à«i~GS"÷¿gHüeQ1ç|óéf‚“ÍbšøæÓÍøKL`/`º‰ ìL7ã/1½€éfü%&°0ÝŒ¿Äö¦›ñ—˜Å[Àt3þ³x7\¥ ÌÖjûMݸ߳x÷c7Ñ¢¢=åö€-dâ í'ÀZÀªñ×ì„-½¹Å_Â0/ÀŒ4¢ÂüÝÜŒâ/a˜`Fñ—0Ì 0£øKæ˜Qü% óÌ(þ†yf í¼Éþ’õˆõˆõ²Þ±Þq³:õ÷É?Y¦1=x¢Ó[< iŸpÃ’Ép@}—xtøà Ð:)ðí'“··Ỿ÷ß¼}ùÓíŠûÌ®sŠñ¤ˆç7›žŸõÓ׋»(Ü ¿9ÒÖÉÎ’‘r!¤[ƒ“sÛØ[Q˜ ]ÂLYp•©[¼­ô¬SgQ¡Pà†Ñâä°;-kïø™>løC°ÇÓ^ ;Þà`Éúÿ‡«ên¾£IÍÖR‘€¦%ÁÂ#ÂQH!©¢Ðz&òž¹y1ѦöìpT²½grô©“ál%¥z„zAOR/¼ÜÅêCó3IІzvz¤ub ¬Ö¸ÂM*µAR´¦º«êÚѵ­õû¥,á-oI¡+G}žÏw†¯,>³F€º7•#à×ÄE¤(È_'!ŽñC^ØNË:ò¸£‡t­hà´ñ ЪÓsŒ/²c¶sêî–9¼~¬ië‡õÃúaý°~X?¬Öë‡õÃúaý°~¸ 9ÍæT“UõwîUc®G€¯vR„I§wIÁh˜RB¡¡%#^Z!´JhÐ:a:að #Ì ¬DX™° ÔŠ°aubèÄ Ä1JÄ(£BŒ*1jĨ“’NJ””)Æ)•I©BJURª‘R”uR¦¤ÌHÙ e¨P™”+¤\%å)×IE'J*ŒT R)‘ Ô·B*UR©‘JTuR¥¤ÊHÕ Õ©–IšS%Õ©ÖIM'5JjŒÔ R+‘Z™Ô*¤­­‘ZÔuR§¤ÎHÝ õ©—I½BêURb 5€:ÐC‚è@H¢Mt Š^å3T‡rœlP ‡”CÒ!íxH=$Ð)Cú2 7 ÿ P‘)Б!)P')Ð’È(ä¤@O ¥@Q $¥@S D¥@U d¥%ä”ÊR -ÚR .êR /úR 0 Ó2²Ê‘)P™™)Й¡)Pš©)К±ieʽ)œÅ)œÍ)Õ)Ýi…Êé)Оñ)PŸù)П(p€ h ¥ Ê(°(0‚'(°‚/(0ƒ7hÅåøÁ€ øÁ€ øÁ€ øÁ€ øÁ( *”~0à~0à~0à~0”gh.ÑPe…¥ÅåøÁ€ øÁ }(ü`Àü`Àü`Àü`Àü`%Ô(ü`Àü`Àü`Àü`Àü`eT&(ü`Àü`Àü`Àü`Àü`Ô:(ü`ÀüØ{öÿ™;}17´cè:Ÿ„[+øZÁ× þÝ(¸ˆNxDfFxDfƒð˜à%£— ^!<x•ðØß5£~× ÷ ”㡾z åa¯á/** %  €š X@Q…0 ªBPV¡¨«0€VÀ*+ ëðÀj+ àÅð€ê x@y…< ¾Âp@a¸ 8¡¸¡8¢ØP€g<àŒb<àŽb<àb<à’b<à”b<à–RxÀ1¥ð€kJ àç”Àî)%¤À+<à¢RxÀI¥ð€›J àG•À®*e€œUʸ«”pX)<à²RxÀi¥Œ¬xe€Wʸ®”p^)<à¾Rx Jà(€’ THƒRx JàT(ä-À«<¥ð@B” À)Qª4W©<Ð^¥ ð@ƒ•*À-Vª4Y©<Ðf¥ ð@£•* À«<Ðl¥ ð@»•À Wj´\©<Ðt¥ð@Û•ÀWj´^©<Ð|¥ð@û•JÀ«<°Jà%Pê¬Rx`”:À« ÔX¥ðÀ:(u€B©<°Jà¥Pê(Î\ž¹@£Dë(Ò:Ê´ŽB­£Të(Ö:ÊµŽ‚­£dë(Ú:ʶŽÂ­£të(Þ:Ê·Ž®£„ë(â:âàJ#´†« âàŠÃ5‡«×®<\{¸úpýá Ä5ˆ«×!®D\‹¸¡QT$ôâWpÝäʉ8PЛ@ q FQT)ô,B¨UÕ ½ ¤jEÕB:Ž8P»(ªzH!ƒ[n*ú#H!Ô3ŠŠ†¾ Rˆu¢²¡Ÿ‚â@}£¨pè³ …8Pç(*ú/H!Ž·3ÜÐ T=ôhB¨}Õ½¤j EDO¶ q RTCôzB¨‰U= ¤G™[3nÎ*$úDH!ÔIŠJ‰þRˆõ’¢b¢¯„â@ݤ¨œè7!…8P?)*(úPH!Ž ·™Üh"TSôªB¨©U=,ØTÄÚJQ]ÑÛB q ÆRTYô¼B¨µÕ½0¤G•[fnš*/úeH!Ô_Š Œ>Rˆu˜¢£¿†â@=¦¨Èè»!…8P—)*3úqH!Ž·ÿÜ Tiôìà j5EµF/)ÄšMQµÑãC q vSToôþB¨áU{Buîe¸›á~†;ô4¨çØC€:Ôs†z޽H¡ÃA=g¨çØs€:Ôs†z޽H¡ãA=g¨çØ£†8(÷fÜ!Ôsìc@ q ž3Ôsìo@ q ž3Ôsì{@ q ž3Ôsì‡@ qpÉ&÷˜Üe ŸÉ&âàn“ûMî8¹ç䮓ûNî<¹÷äî“ûOî@¹å.õœ¡žcRˆõœ¡žcßRÜ5#Ôsìç@ q ž3Ôsìó@ q ž3Ôsìÿ@ q ž3Ôsì A q ž3ÔsìA q”¸ÿçÄzŽ=%H!Ôs†z޽&H!Ôs†zŽ=(è3 Ôs†z޽)H!Ôs†zŽ=+H!Ž2ïeðnâ@=Ǿ¤ê9C=Ç~¤ê9C=Ç>¤ê9C=Çþ¤ê9C=Ǿ¤G…÷exgq žco Rˆõœ¡žcÏ ú:¸Ýún Õ3–û÷A—´ûÎŒ°D»sÄgFÝKbõÚdÿùŸ/iY½F¸álà á%n8µ:=õ¶«ÅßüÊ¢®"9ºŠ¤—xñ!N!JüÇšÁ~‘7¡2o& ­ß‚@SøF,ÜŒ{Y†ä‚“& TN&ˆêÞ](.Tt†üJ¼ ©ðx²oIžëê_±?ÆÝâƒÅ†×wòšBUïF]ݽ<–m[nuÝ$ÖØ­²WçkQí{VkNéûEêÝ­Bo¿ÖAõfW׸ýêDÆÑ³LêÄÚßÁj³‰jïn%UüîH‰+Ôw±Îr¥ƒZORúþU*(ÙwA@&j|çªMhÉöÝ9ãUcßü¹öOrw±¡&L·!hÄ#2u–B)>*¾|6^Ö‰žþˆ¹‰}ú®Á„»Ù•¢µT’Ü qRݸ˜Ü[Ç-çÃ¥ž ºåØNˈÔt`¾]*Éšw”f™Ž¢ŠC§âôèÇNIÄ¡SlŽc§Q‡NØ Žð‡Ï•¬á'ëÛ™Ö·3ÝõÛ™ ÚÑì%Z>7Uìû6ì^´ž(´ÁèxçδŒçň|R,îŒXèL˜*È®-‘îÏáÁÛ—‚ +c ] KhgxfJArȲ[Këe+,~â~å:‘²Ÿ)Sš;­ôÜÁËÈñUøß0§xXYY“x±$¦Ì(•+ÕZ]_§’RK4¼·ß¸û“º#=å~ô„6nLUŠæ·OÅû“Z«ÝH}jg¾X¢0ÝþŒhÂü'VÌä[—ã%Rc|Gäeœbê“,Y2È¡IA kÉ´¸}™s è"°‹Ý²‚´Õò#×pz-u.äŽO$²}2Ú®Ý÷åìVFoi)ÖJòU@¤ñFμX¦qÞÈùióâÎ,-Üñ¸õ1“@cü‘çÆ»¹eòn7w ›¯ËÄÈ-•¹[!Æ|ýŒGä§þg²Î¬AgØï‘‹ÃøVGý.”Fu9ÃÑ&¹8é¡Û¡ew!±ÎGýüY8t†ÃÎQ§eá<€{Ùûdα3ÞbáIÿ¼Û&¶hz_ æ‡Á¹LÀ‰Ëâ³M„õÑ…µ ®\.“?³h€ SÒácÿèhy´X)öºÃ>~›‹¸uå´sÅEë#îjùâÉ´ZÛÏ@^ÿãjeE´(Ž¿ÒMã[n…M R_õMöm©vZj_g% ,v¼bj ºnÊ™wªGkËìBØuå ú¡EõýþPZWÍý åocE}Þ}Ãøä®Ía.§mÌÚ ƒ`Ž’§5{ý \'ƾ4Èv¨ü$Õq¿ß&§NÝ;t¼y¤Z,duÚ^lYèŒ.ùüÄÍÐ-73TôÖ³±÷a‘nú%| Ðïu/ ^t7äçÜø¥›Ã¡Ífè ¤Ÿ7iAÁ‘ľ>ñ/¦¼¼$u“|ûql`c^$'×ÝÊåìØZ/vª ÷M{;:,>ߤ"öx¢eÙY’½Ø®í×C‹'ÃJêÕ8hªÚ!ê¯Hm˜ÚŒ3“ô;»Ó)f{(›±A4säôD3oåíŒÞ J2oÀ"7ˆ’ÌÛC9°è ¢$óöP,zƒ(ɼ=”‹Þ J2oåÀ¢7ˆ’ÌÛC9°è ¢$óöP,zƒ(ɼ=”‹Þ J²mE룪–ÝR­¶£¨šªÝ€ÉL°Kc\P'íRí’™Ñn«QöRKœoç5†ºi¼’nŠolùïÔ¶s¤/¯‚2R¶âò*Î!ªªªY~Â{>¡2þp`YÖ7½–ê®Ê{@cVS T¨—;kiJ)?K“¾#»QÓ¬õX9\.˜ºã¡.ݵPÚ"ÿœ[½Qç¨ó`؃³ÆàbΙcp®˜tFΩOqç"w< ¶¯ „i—wÈf¡¬Ý ¥‹Å½Z‚÷vßi)šz3¼’¨ænž÷ŽŽÓ¾\m»Ç¢N¹e.ãIKšy¿+ëÆãyz±Â*-¿ë&… ×]A›à­ah dU,û“yLÛ­C>âÜЖyä gþù#“I}^ʦ'±»ñ%KAIl^|Á²ÿˆ.w+¾§¼š3È蘚®éZ¦¢5ï¢Ê-„Âs*©GvTÉU~²ÿ£H·À“E;˜›'…q!醽òMnØCø~§å`g¼³Tl?À¶5ÞŠÂÆ¢°á¥}mqŸ˜#ùHÜIÌÎè¤ÓÃ;QwŽ!*±ùSÄÍU +Ûr#~ùÝ01Ú$æ+ø×…¯¿b­¾AêÝ& æùZó§gwU8»ÎW«Âù*ÀéNÀl, óë¯n——Ä œ¯ªÑçA£ß­ ç;™Ð¥oE1åj·ÚÎѱ7ÓÑo7áíjY°ùM`fåMË^9v•Gx}8…¼JÃÈÍ×ÞrH`GâÍ”–.够Fj_iAí;8]ìü›ÕW@ åƒ[œ²‹þÀVHa°×ö b°]‘ïŽÜ"§áPì;œvz‘ò•¯„ë#ÿaåÐ7@cåD[|a,Ê[…›¥ß¡$À»Œ’90ŠOÅ5忥w'+"Ÿ•wî ƒµdZnuçÕ?5‚Ëç„\“ƒævãp#§ARÝýSÈ1âËñÍÎdoG+©Öi·Ü\ã|B¦»9nÒÍ%Û” rÒù¼åùå "—ÃGÿívC<º¼Gÿ­W—˜• ,$¯NÔ~5ÿýÂÜ6 ƒ÷f®36ÚÔ6üb>2w¿üGÿ2øÍÜúð 5wØïf£óó©¹kíŸüô ¾Øøò·ùï?àßðMÝüÖ:ú°gæ;ææ““ßÚ•ã}÷ë¾¹IËÍGü×|ü»Ùü}8üøÎ,š‡æ¿^ýV7Ê_þ8·Íæ…yðÛ?šÛ/>ž¼û`îšëókÿd6þ9ýd>eæ·ÿþýSû¿c³°wfž|z¾ÿ×¾©öXí³™3̧}ó_¿ÿghß¼oÌÇæÖÀü¡Ý×ͧv©eªG˜;æCÓ,™šy Ó¿ªÖ§?~ýò nþßé«Ã·f±tbnÍ óàÃksç·WC¨`ùê=Tµ­™›}sËzgªæÓfãìoó_Uûûæì7³ù>¬›?´ÌóÉ•™77+¥_ÿ(ï9¿|üÙ|ô[çӻߎOþ¸0›¦ùű ËÜýüÙ‚Wk@áÿ™Ÿ/{ÃñÕ³WƒsóóðóGó úÓà?có|±c>¶»c³14ó¯Í'@‰Í ëýᅹõßß>˜Oþ0 ¿õœºùèd¨–³ S}û¶ ?5ÿu^6ÿmî–Ÿ—ŸØæÎ©™ÿòâäã+Zþµk¾35ýÏýŠùõóÉ+³ùñªüÂüáÇ‹Ê{s™Sµ_AضAÔ@ÒPÐüòÈ•221±§BÀ¶A¼@ºP¸¸lå;?\H‚…rbõøw!TÅC”(!PÍ 'Wšv]YBQzÊ\A9rňKQÎxÚç"$$èñÖÅ¥‡ ÏÎC³¤Iróøo!5 4[ã ./Å"ËfDE}úä„‹ HIóÈÈ­ƒ'WyI<éh Ù¢ñ¸öè’XüB!dâ[så¡1Ì¿~òéé®( $<ùƒËˆÁ.—ÍæSàÿ¿]î?|Ç9ÿõŸ'¯8Û9׃©Ò[™®Ã»âºýþgÛ9鸶?ÂF×¢lôû¤HßzÇRÑÄ­-ÜÚÂ-ÙÂ=Þ.¬ÛÚ¸e7nç3n%\N-lhÐ96é̼·qÒ›­ì ›x`Ï÷yãˆXs’žs;eS£Ã¦ ³¶Åïç·û#«ÛÍжxTSk.ìØ5‹,ÈUÜzÄ›Ëfì޾G5Ù§ë*A°ªXC¤O‚`ÅT/Q°Pí`$ƒ÷`¹ŸÆ˜Ô-¹…döáJ6㮄K+lÌÀ³~Îh½ˆÏni‚âËNòðÕ 6OH±«ô!ÅJAÕ0N›¨Þ0GýÎŒmßK`GA³275® fÛÒ¬EìaO=B¹¢}ó€síâ0¥àÉg˵º»ý`¬ÍdO:7›«Jr×h@aýblßœ›5\´W€÷j‘ˆ³[ÿ’T›ùj’–ÆžjÌÈŽ`ºQF[3OJÌ+/–Æ7 ®J»--ÞIÍ(ìÀÊîh“ç­™î;ròØ"ömnΤCâ÷f»T®d­YÔ¯iᨤPÛ[Fo5WsLL)6Áœ&wšNÏ»£ï߬Ü2ÖF w#L/Í^}*r:~|91ߺæq•²ŠukŽ}ëÂw´y ÏT¥ÖRDÒjÏ£«Ójg‹Œ‹Gðé‘~Smuôƒæ‡‰¦E˜`¶ˆ›!rdò |CÝͶh KƒXƤ¦UM6¸SUn󚑹ál3L 9—y¹a*%J¾•1­)¹8J²rº¾+›Õ|or—SMÚqSÙ"½óS¾¶Žpg |‡ûºŽŽ…£«‡7ÓNÖAèî®&Í=ÜñFãñ4¾ ïª:ï œVÿ¸×¹rÚn7•´nç´ƒ=Ÿ ð¦‘ZÞñ@äŠ'û2Ð"õð&ØV·ÏwYx ë‰3„Fâž"l¯Ã98µÙ–Cw"’Ûñ,xhØëæ¸BÑw3õ áÊj¤×pO$¦²îé.+·îòéN¹Ó²@jÎGÝ+u¡]ü?ìòJ»íä=6Äd]¦ÉçA¡s@I_ûçù þ<|WÄñ&)pz°Cç$tØ`éš*žjKzºvRüïõPÜ'·"ý¨ž—²µ Éð7£2½|ÌDõHŒY“Ü*Iuš¬ÐTm¦«B/ åÒÉà׉‡(ùj|CÓ°$>ƒ$fÑQÝ_E–Z·ö<›º‰ ~.ðð]ƒ@’d;ñ42UKþÊ{…ü€ìóÖ>¬î<5–ÀL džĉl>/â_œžÆ…/”²³knTà]R¶{ß“BE‰s‚tB3^Óíót|! GSØ\k’òg3¼ƒñ÷#â)x﨟ú¼×2“Ȉ"Ñû(OD7ÑÅ{ŸpBßs’ùä3ò½Ÿ CRæÔ÷S„|/Qò½Ç6—ž»;¼ËÃé)áÊz<7í—HÝ ©ÉVT×úÀëÛQ­­ñ¡ší/ ½I‹~{]|{“zPîäÅ„Ž=0£cáï¦è„ï>Û;~çW›M–©å¤H ‹<Ž˜D)î®’•B0¼ËÆÛ3*’TXªÓÔÖ†‹lFvÎagìhZ-ɬ´­‘åöRý·–=§íÌÁаç ¿æ”‘g® ¹»ØÞÝûÖ`¹‡—ÔàéÞ_Ê/¤OÒ~|’ú ÿ“ô_x2|áþÍòEfqr}Ɔùi"É ¶ælt+ À[~=kžjþU6ëZµ¹Î·.td°Í̧(–ó=Gb·ðbÙP£ÖµÚv®ù¡-cW+©WåÅîðw„ËDã© Pü­»¨ÄÿÂ[üÃÄCüÁB>h6ÿËÜ¿†û—— ŠúeýÂ~iLÄÝ–p ï$iŠx_צªîR ÃÞ™ ¢þœKYwà Âçæ‹”üF…ŽbÛ{é> Õ#¨¡Iß„VOšèžÓdÙϼ=‹6 QîF”õÙNZäãõ†1¯('ÂDP ªL›**å… «ü6Q<œ ¸îe¹ô6.Ë…Ÿ?Öù`DT»G—ç¦Ù@‚„ÍÝeßÊ¥&ÉŒ±”O­ñ÷Iö&v­zÛÈj˜4µë<þÕâí›Ç8FyO•䳦;ŸãN$ñLUUYŽiyCËWݸŠYt: üŒš¼ 4ïBÅ¿±e!ç3V/¯‘€_Ù7íjVwQhÒ8zI#1þÚ}éºàË+øß-â?PùAL`̈I9æå^Ofyä.¬šxŒ–‰c´Øë‰;HËVy–Š?lÖ±Z$Yöö4"e>”KýKyP—†YÂ1Þ0%RêEmˆTt6TŽú¯—wÆ!0ã[Ø~?ÙýñVB)_m\Mì3f|i( [)&œCÄì$¬À¡ÉFnÓ–ÚJÕ¥™=©ƒé=ù/Pékûº¥ípw»ÐZÇ ›&²øŽ;1¶#BÂ[n®wdÇç¶¼l·q¡¦q×߸…¹®›4ŽÍh"Ûr{Q Å·b mwƒ¶Ð¶ºÝ~ï42YÃYfW*¶SôŽöºA(:ân; $ÊèD_Y‹)¯E<2ùíp Kô…J`…9¼Zeèœ9©VŠ,ÛÛ¼i»m1$²ü­-÷mË}ËO)pi5Zø§Ýhk¸Ö°¿m5¬e F*!iÅ1¾ÈøA:£¯€]™Ô±Rcj¬f‹K´’Ë΢¶ß‹ƒ‚±…B’;–fÛ6$ §}ã)™æ{½ËÄ´yü•~ Lˆ‘ÉÁX´€,ýJ›Èã³ØÞ´“ç@Àµ™oðsGûÛè§ðïè¢ß(h<¿™nròµk<œENŽ(|Ô?¥y¾W_i×ðP€æ>Ž?ùWЦE)–9„æ ¯Ë#® ð*¸j5æù,õ,œê0þÈ«_$ÕFÝ$óö$`L©î·ÖÈêm’þ°ÕÁ¨˜9…z:x¦¶Ó"Ã~^p)KN,æË+Ói (¸Sñ-¯Ú Š[ä¬+þ¶¬žÕÝ"ûðçÔ•J,3£:³¿åÙÁØåÖ¼„Þ¶¿‡Öyѵ­‚¨ÃŒ×³ÐÇ}æbŽ|üuâÎ; ¦ö Ñ1‡Ÿ8ê„Þ"È;ÅÎâî‚O“¡G³E·Îöfô1DzÜ<ËŸæÇÍÖRŽ{Ïs`Ä­ÏBκ߿jkxþ<® ±ÐH«4ñ{ùitëÛÚU|}EV,i%ŸMUl7ù¹™¼¥`ª"3xS¶€ŠDPÄÈ\c±iÞ¤&«–&¨êõü5Ãpéõ?C¿Û„2YF ƦÇÓ0S\“»M>³lSŒÃ1b»¬Ùéci*Ÿ³ náõv_-iô=RŸ¸H)”%_š´‚k\9I'鳸½.áµy1¬ÆñÖÊy“jd}—Ø?£>ºzöyÓ¨YîLi»q×TlröôβQÜа"F"Ó,‹ï”´mûzUcˆ¸ßÔµÜäĦÆàöS;¸‡ULX‰ÔÄ®J}°èLXÓ[ E¼vwOWôH9O>¢|x§«íÍV[Ã¥11Su|2k<ÉvxsDé'MO˜]“–ËŽO¤Õ2|À‰ô6ŸŠ8> •:õÏ.wèæ±3‰¶™ßÑçðDT†²~†Lòv¨¢ùL‹‚ MÞä‰$ðÄϩ䤑Ÿ…›…åµ8}+®ªCÊá©Tñ!ÿø!ô¦Ï.qqÖ=+ëf“#¾òJÔ|©®á©ÚÏ=œ‡ñË)?;£ˆ¯\^%},<ó_ΰ¡¹‰Qc…‡¦ 8»]«¯@@âj‰Ì˜dMî¡ú”ö‰¿&y,ÉY@òùÃ!¡?4®®8Å÷À ÏcD÷ÜÚ| 1ËWó­:a+¯®,˵%¸Á nCÜíBøéꊤ!;ú|oÖç–Å?ß“¬™ θá|jnªÕFìù(É×[ÑÊ·Š¢7l)’ë‹CF'Â+þž¨ü†•?¾Û½÷û‹·â–g¤ù&v† … î‰|^o]În5øIå}¾¯÷õ²y¬Í„*t)U*áV™×EQš*¾Á[¿f;§©›¸d„š¶¡™‡ã· ÇI ~ç½¢„ï0Õ~¶ªo2}ÓÐ7Ëð_ þc›%c“›%f”¹@%–ÁÅžYEÄ*Î#DFÌ’ÃÁ¡Ô J âîÝ #»M2º4ãÐÅ`÷Xµ4\Yæþ„™—CÇy™ø%él·I/Ù+Ííiêo|ÔíÙ¾_ø šôm…\H5ó´@}¸m¼Ò€Aê¾Òo¹âò®i ˤFßå;àé·å5bÆ(!âDzšø·O½0‹×ùk¼~UÛP`~Ý9…îIÇ9ÚFacwxÒ9;‘6‡ ùà -~÷7|º×rœ>ž¢˜Å!Ï,û’<ûÔôÈ^kÔ^ñsk0è@Á<ù»ƒó ¸Ùèí//÷÷_¾þùØ“ý#:ÇGk.€„Pi™÷£X~r¯w¹áoV¸Ì•}âZ„{¾¶A˜v[w¡ó&ïüÑ0Ô'RG;ð%¯uÌ VDÃx‰ÙýŒ)ÒÇ_jød~dLdG°#Dˆp~[$‚L±FF0‘-QZΗ©-åO ˜¼3`’¢+”ÇRü‰a«à—`+X7¾+ió[ëz|©Ýé>aÉÏmsŠë®}Mì®m&v×¾%v×¢»–õ]ËÐroLNî_Fa)úŽôVæ×2zAˆ0ßå¯û#g /dÒî;CòúÍ_¤Ó úíó–Ðÿ9·z£ÎQÇpÛ•ñ––L–™?~Ç%ë‡BÀEG|›þ㯼w8Òq¨™ñ?1f~ާš9ãÛÉÃÍÌ€4m3§>NÛÌ©34“+œ¶™SHÃ]ص‘_ù²xmä£ÖF~ö‡k#ùí²Œ<…á7ó_K›åo»”wÚÞ×Cöž×>z9dIc6PÒ4™%[d#Ù"—ÜÂñgFìuc×½…¶žvz³v†ßí­5Éõ‰&“kâ‹Èµ1¢‹”îInz ÇHÚ*&ÚnY-ùï–àˆìÈùDñ3«(~|ñs×H"‹áŒóä­†þ?áõr<‰*æƒz1Ÿ;üt1üÔÛë0qÂ/£ÁO›~{­äXìK:Å)‹[.6[z;[zIá%›"¨ûÌà¥1Mm‘aÀËRcgÆ#„•‡yÂàr¦]ˆ¿Ï\Ÿ¾ëuþ+Î-›´ÚæŽ(±#C‰]Q‡¸°‡Y*‘1à¡_©!šŽˆš©» v«­%Ðh>‚¼Èüp±%Ò{ðÏ™ÜøLKšs Hsçl¨ì£ñ´º¢%þý‹ü¢ë¨·-ïu;æ}Û/àðÁÌM„Æžgzx-àEB_^a˜m^B „ÑTõÝš¯^Pvx cÊ8Ðé¡VôßPxf˜Átm×l›íÇ3¢c,èê–¨ǦùXLu¿45Šz¹¨—|j{".†Áƒ_èe¯l¹Èôpa‘#—.óHLøxqpuÿ/ƒ¡³ü(fº·¥YäË"ó^õ˜E=("Õœ?Šjó:@‘@ü–D¾dE¿¡1ïýï#ˆù³Ä5,•¼)̘Î4ŒbÉk`øEYñB/Rä],½‘íˆÎ¦”¢Î£@ì={žõ®[ìEHòóAÍöWcs>”i”)© ^…ÅàŸ›Ðùhæ~|1ÇÃÐ'™Æù"-N1ÿ’ )E›ÔË6BZ .¿yV¤;à¯"ý•pW‘ND¸*è÷D¾tïklÉ•à}$¼ÊkwËäûhÊßÞ/ôÞéÈïûT!Ñf`·¡“/™ÏŒ÷'Þ{9¥˜/J~ÿ›RðQ9î«rP$ø’13éôý”Õ,•+“>~[5/rZq·¡´í¢jR­ñðåñéMï §çÝQ§ÛéEÆ–ëRG1„ß~ðã›çýwÿ:‘CÞþ÷í_/~'OF£³­bñââ¢Ðmõ ˆÙ G8>í>?…Ô¨ý°aö¶ùW˜h÷?ŸŸ:½‘ÓëôŽú Ôß/ÑÁ¯nÙЃ:´áß«ço¶‹òK,{6°Z'N£íÀ+7탰aëdàtìóÞqÒË×/öÞ’ç@/¤RïØìý|jÿâA}‡ÐZ'Ýsg8tºýT~ês‚_“_¬Sû|°\TG´€N|Ηΰ3j:i[—Ãí¢—ïúv4lÀ˜Áoõ»Àx/2á5€YÛE‘òŠõ&–1¶‹á ¯ÄÈ<Ò¸ex¼/Faê‚Ô8m R›ã=õ Α„’bGõ’˜ Ú{ah¤§ô’Žè+½4±½%¦Pô—,÷hDA¤ÏÄÐq½&©F\¿IØÃxâúNŒZ ÏŒ¦Ù{PO9T}hþŒý(˜¡'…l3õ¥oâÞ”ä,êû„ÌŽëS•ìNÚ«NFC gåršHã{×$¢îcãÈRÊgŠ~v$Sö¶“ñìq§÷4½î„%ìy§*û)zß «B ž†–)zaAÊºÔæ‰¾˜V_é‘V`1Š–ŽYЂr­–Óqí¯#×QZ=»ÑêjîàºÙ¨Á\zï@kC[ùŸä+æßMÕüûëxo¶lû ÑÕàŸ­IôÑ8‚Þ  AVK™Kk´˜t·Ö´ZÄÊ9òCig‰·XáÃz!)Å,ÞÌ 8iý9 ¯«d6zço+ºT¥¡§*« ½êìÕ§ÛM¬Îâ"š­"2îjb£íAٜ؃¡øø ^se Ä…gB¼ºQB‡d’Cß5ú®Ó·Kßçô}Aß—ôÝ ïÿꩯôÐÔ«–±»EëŸW¹y-ŠjÞî¸ÚVð´ ½5þûµYýºð(ä…A?õ•ða»•-s§lFÙaf¹Ærå:{È—]öP(3g­ò{Ø,_²‡­rƒ=Ëÿå³å¯üÉ(“¤F‰*Ư£1¾Åõüý5é  fà"9>‘)\Øo‘I&¬£­<>¡ÈZtöw[t—¥[týíñ¶èÖ1ž“káeccòsÏ\^6)PÔÈã6´0P ‡Ý(áýèÍ’v± m•4h]Š%­±`¤ÿ.TÖämb‰£ûD=å % e ¥ å%eÇ”ú åô÷– ÷KèUx6¤gSzÎIÏyé¹ =oHÏ›Òó–ô\”q˘ µ!ã6d䆌ÝÑ2~C&À)0e Ìï2¦L)S`ʘ2¦L)S`Êäd r2¹€øe r29™‚œLAN¦ 'S“)ÈËäe ò2ù€Èäe ò2y™‚¼LA^¦  SP)(Èd %”)(Èd 2™‚ ™‚ ™‚ ™‚ ™‚ ™‚@=)Ø)Ø)Ø)Ø”)Ø”)Ø”)Ø”)Ø”)Ø”)Ø TE™‚M™‚M™‚-™‚-™‚-™‚-™‚-™‚-™‚-™‚­@k S°%SP”)(Êe Š2E™‚¢LAQ¦ (SP 4HÁ Iˆï²£=”²›1c—sLñ†‘†—Í4þfh¢ß¦Æßrâ ûo#/Þ°§Î‚µø¶!Þ°/76ÅöçÆ–xÃ>Ý(Š7ì×étµGš7V &ãe&Rf ÊLLjz)‘2SPf"e¦ ÌDÊLA™‰”™‚2)3e&Rf ÊL¤,'(cÖ$†R–”岜 ,‡”åe9̘óò!e9AY)Ë ÊrHYNP–CÊr‚²R–”å²¼ Œ†Rš€™GÊò‚²m»žÔäIñçlצ¹…Ms ›æ6Í-lš[Ø4·°inaÓܦ¹|S^ƒò²Ø÷ÿ9üø®âO$%_?9Ké§i<6šJUtKgz×G4-…ËÂ)»U×Ñd O®SD$,š®Û»9?W%f!îÊÈà·Ì¡¢4ô4 úiý©d£sºÅKàá7E0‘è‹YɆ5xÈÂçüüqª-k5b¬“¦³w™mèCþdêÎX÷Ð[‰øZö‰àDË(*Wê7׈$þuÜ,XxûÆ_Åe)nì y?‰º§›À£°m8¯Þ¶Á}vIЧ·!|z·Ú­U@ð×Ëdg›¡ì&·æˆ¿`û¦r.³ÎÃdÀÌX`-ŸWF‘ôŽíî`!ž3ç L苟A×Rw‰AÚ9)’–ZÍõHèk /Âyi~… æà"—1^:X÷AQ¶í²ß}ó"èI:dkl ÅÖØª„C:5öâ§@7Ö¹é×uýN¢ð£ÝÛžâ¿Â‡Ö î`yj)CQœI kõ熢hf²*û$&1+^U•²Öê‘úT•êS¡Õ¢ãBn< ¨ÝÚÍ·ày®XÕhÅA-xöèžó°‹Ë ô2?aQˆ™ý柹hØþTHÆDEäµ—¡¶Ó=§‘7¦‚ÂsÏÕ-Î?¹ºp{ñ]ÔÏãº()÷¸êçq=Âú¼2‚ž1ýS´³ßËÄ1øm %ᆛ®Ÿÿ)íóô<ŠæÙÏ ­s´…ý_ß´Êò™ªeý9¶eMUþGŸ§"q=-ÜÐj´|xXŒ:æ(;pT/õù3±‚øü¹|¬ë™ç“ÀçÏ$‚é­°fÑ9¶Ùý{ö|{d›wŒlNp¨12óRc´YÒ®Ý.õmÍ6ý^Û@<Ôñ.´8FÄÊt,Ôæp\¼µñQB[ä °ª`ˆC>'»Q’Ä׃FÕ4ºx­Oj+•¤%塿# "ÊòÛ,UfÁÁÒåÊ%K¤[)ÇÒuËúH9@ر ÿÙj-¼Â›Ì´)dŸ%ÜEšA­ìÞµz@9‹m´¤²ç£P[ºj´ì^»S ÷ŠÓPO†U,ù_1«åãá§g•!kÜ&ªÄÇö§Oö'^‘Å ÈêÿdûÝ—¢ù›‘µl oÙQÌA쓘£>‹º,ê±hãŽöíhÛŽvíhÓŽöì>áJ7½ÿ§5nc ²EºÐ„_~Õð«_fV[Q(ùÊ^ˆ5‚¶‚_ÄšôÆâjøVqü úSèbð"LËíã}æùx_±Òõ–v§åÁ3ãîן"C ¨AdoͰëÀ]‘CÁlm¢=¸»·Z^—ÊÇa`'Ó¯RÊ@çÊCÑl\GzýWL„ÕŠ d‰ÊºÖyª´÷æ(o&Úæyy鲤ÁÔåp•Tž*“ùIdBUk©TM¨êQ8v}!†ÙÌCÞªDK[”,B>´&9I ŽÙëxr-ž`×kD }ñÉ–ª‰ˆm½Š¸@Þb˜¡,3;¥ÂÌÀ,¶ö¾”‚Ê'Âès”ëÔíÅ33;º€±OígRk:ü«@x¼ W3j˜ubz0ÓÜÓ^ko´Ÿ´Ÿµ}í­ö?Ú/Ú¯ÚoÚ;í½öHû];е?´?µÚ‘v¬}Ò>k_˜E:˜’ºÚ¹v¡]j í¿ÚW­©]i-­­]ki­«õ´íVëkíN»W´-çZP©!®B’-KTQ‹Bðêþk6Þ-›…“ìjáthÂOþÔªѶiŪÃ?ÕYk¬¼«ë¹øcñCÑ]6ÝfÝÚX{hÊá¨òoAûÛ¤\ƒŠ¡¯¿ÄŽ›¥zá`vZ·8ÁÅÇŸ¬ö-$jwv <íªr<蘲Ñ96:ÆF§Øð’é‚9 ̇Q ÌabsàÅÛs˜˜ÃÄ&æ01‡‰9LÌ‘Ã9Ì‘Ã9Ì‘Ã9Ì‘Ã9Ì‹™ 9Ì‘ÇyÌ‘ÇyÌ‘ÇyÌ‘ÇyÌ‘ÇyÌQÀÌQÀÌQÀÌQÀÌQÀ̱960ÇæØÀ˜csl`Ž Ì±960Ç&æØÄ›˜cslbŽM̱‰961Ç&æØÄ[˜c slaŽ-̱…9¶0ÇæØÂ[˜c s1Gs1Gs1Gs1Gs1G‘• aÖ ÂebÓœ”v†t§7M·¿ëú¨7e¥Þ­çøN)ͤÃðhZ€AÑPܽc(‡/³ö¤JÓ¨¢­¼Þz婘•~³'Æý2¨Ï êXõõ·»I9:óžì´ïmÄwoùÛçæMãÙÌתk—3v!šäžù.ø—|å»à_Dð™ê¼äžñå^ýÛÉ}Ò{.Õ‰lÛ®Ä%xŠÛƃO!¸Ð“fÅÕH¸¼ÖPO¼Ço®¸„‘–§¤¼$J³B²—IŽm„ÊË/qQˆ‡4R`à¡“ÖOjõÓY‡ㇽvf8€Ìø˜Çøv.5‡L´ç…eÏèsøÌËBü…™Í)(f8’‚;^M»sáj-·Û›ð`BWôì4´ä‰õ»ò('ÙF›8y$'>#¯“e$›h‘dÓs+‘l¢%’•u+á"ÝêΩ–tçäp>µä0YF´D‹DKÏ­D´DKD“u+á"ÝêÏG·ú‰3r4§ê~”,';‰ÉŽÌIÂe²“h™ì¤çV$V=m'Ç@÷ËÄNœ3QN¼g3qF’rÉœ$=æBVtÔ+éQò’`ä%á^yI°›¨XÂÝ<²’`§`%áNYI°W jXÒýÊëDû•×~©$Ý­¼N´[y-•IÒýÊëdû•×s\^A^’ìX^ÏoYI²_y=¿É#²’d·òzŽÝÊëd»•×sìV^'Û­¼žãl¥›h¯Òãl¥›h·Òc·ÒM¶[éγ[é&Û­tçØ­t“íVºsìVºÉv+Ý9®J"/Iö+Ý9.‚!/Iv,Ý9v,‡‰v,‡ó›®&Ú¯Îoì0ÙnåpŽ«`‡Éö*‡sìU“íUç¹v˜l·r8ÇÙÊa²½Êág+‡Év*‡sìTú‰v*ýùu*ýD;•þü:•~²JŽJ?ÙN¥?ÇN¥Ÿl§ÒŸg§ÒO¶SéϱSé'Û©ôçØ©ô“íTúóÜY9J´W9šãØQ¢ÝÊÑ×ÀŽ’íWŽæ¹v”lÇr4ÇŽå(ÙŽåhŽk`GÉö+GsìWŽ’íWŽæ¹v”lÇr4¿ÙÊÉ™}šI°g!ø´L)7M¸‡<%s5l½¡` o‰Í©ê¼™ªÎ)'aí )Ÿ3–’¨xJþ^ bÏqdÄb/žÐLíÔÊ2©8¸»/ßś刷Ü 4f~@h8æTÜÆ¨.ÈÞMdvpÇ-"f,ðÐu¬ÁÝÇÐ},xÖö´ÙûE’‚‚ï( äá&³3î `â–ÿwò¿ä”ýÒç²_Šx¹]½°j(”òX¢Ð:ÐsP…¶Æ=´œ8ÀÎjʲ”TSÂDQyô,Ñqkí‹VãõæÒîØ5´EnŸã7Šåòð‚åáb"9 Yúõ¬ã•Ådî„ ¬ÆÝ-Ç|ï‚!Îqà²9ÚêªtV8õò`0Ð×G<.Ìdð˜ {Ç>BO 2åÁŠÕ‘«Q!¨ÞÈ•äŽÂîXØ] Œå½yx>$ŒJñb¸¼’Ø {Àû£w^eÇhGDS¤ÃZ‚Al9cú@©¢lWôá± ÿñàxÀ9cžÐàØHxwç%¼ã,Þy-S ¡‘ñtÌx:¦dw±F0Cúhè$9F(„У~bÝœ>É"ÓÆ¡ Ó4¨]b†x€v‰•í¡Ý³[+Z»[k4›è´è ètѤs£¦uÛ0Ù³»?„ SŽð_6 2 Ã6ªhFfE³µë&û­Ù-»YÒ>Àϕ͈›f9£ó!l³ê@ õí®ö&k.|wí¾ö¦éØkŒ†Ñ£ÐÇeã˜c†ò\ºÚ_7 PS§ƒ®ÏÛƒ ‹¢”ÕÏ€¶¥é}—üM¬x—&ôÎX«—Ä´ŸØ¬¦Î¥T¡U &«¯ÔÐÎ °qëZÿ{JÒ”¦âõ¡+äú`>®{^ POÙƒgª;ù®×ë¡E–ºãõ^EtØÃFpŽ ÀáðXGÄ:ØòœyHLjÐFy’YDd|ñKg+n©åeö 3¸ÆÆækn=Š@¬­-{ð–õnïæü|ÌBV~FÏ]cy¨yˆÈú-ÎVR:}ºÁLÝÔ¡JhC4A|Cþ@J]×µõ´Ôa׉_Ç‘µ)Nèw8ÔT…ÒÒkµ —w—µ ™ÿ® :ÿ½ûmº7¡£ -ÇÏPòkkk>5B|ª¼¥ÌÔë7?½}÷†­Öim^ER!ÔE–KVüZj`£ÕÕ®`lc7»Eƒ9§ƒÃ­èújJI>z±î.SD›ñfø²“áSn{Œ3{##CÏ-0ãš³~ò¾S‚¬gŸsf`Ì›²} \™Æ€×5g]òÈCuÊê°fÝFŸñ>­– ªÖñÓPöPxPv뎜ʰ„ƒ­‚'‚ÈCF X&ct2è±q[7Íéd4xÈfÃð…ç—ÝŽâÀøçÓ4BÈq`"…æ—ÙDÐ"TzBq"vcPE¼£1ZcIe7‰˜¨ä°œõ€+»€L^Md(^ÁuÆBiÅC –›*DŸ¤ñ~@è­|›€¹Hm CÅH¢¤c:*Cèýçµp:ãîâúÅÕ Ê :È£<È"<äò}yò{Vçi74d 6µÿùóÝ/b¼cˆS<äÄC^<ÄÆx@/DHáR,‰äÁ’+HKî ,¹„D°‚:Ôhü*>¼"IÐ:pÖng:xìè•M§ª÷ ©…-Èôô#ëø1ŽZóCk]×ù´"šuVÐÏ¡9ß7é2VˆÁ„AhœÌXÍ|{EõÌÅ:¿õƒ±’{œTciRÐ#ÉJ!¯°Üxª)Ã9xúæ0}!˜vÖˆêÑ U‘H¯ŒSZ“8æËFys·¼|˜Ìo‚SûpüÁ0Y34:ÿ@Ôß.i%› ÏÑÓÞI§u¾Ð³û7Èx#ë…H'Nä”"¡ª$€ô½ð8¢0 óùÍ ‡Êi”°ˆyÞº{ÎVÄ©¸ÐM‡©.ÄVw÷Ž?}¨6CzrXÎR¶n]¬š£Wž¶fdG‹£øqð°<rat¦Q JÔÚ&cv’ÕM.̯max¶õ'Ý;Dg?>ïbÂZæ¼ÝæÇ®à‰AÀ‡˜üØat C  ¨WµQ ~N žl¼a$Þ(z".<Ä!èÆ‘Þ _ ¨Ù‚BÃQ¿jЀ:¢!òÂZRXìpˆ\¹b²@o~¥#*Ó Rí¹ƒžœ‘¦â i6ã±àža‚'’C1ôˆ ÀŽbX”s,_ Ÿ2ÏŠN±¢*šG¯_¶cè/ØùørÄÖ´ÔN»꼆Ø{­ žF ª°ýë$Õ¦¨¢æ=ÉG-Â'4:Ë$m3ð„3¸KU2âÔhbÒÜÅ2œZF Édp'í¿ø/£Ç/”NÖ°(WV¿‹ô[æFðè· =WÓî5n]îr¾}®Ý»¶aØl€êººØ¼ãè ºg8iN E')eå-æ-“o™ og¤ö•T%ò<~šËi5E¹L[¤“•†òdå±²Åù4ÏÚÄv'Yãm^.p2²èõ8¾ þ:ƒ_IeX™P}›‡Y§yèTëˆvnçZ?ñ­gV,Þ Þ; S*:I®Î×9‹ ÁÓPïl¬uÏ_Û ¸WÛmvÊ€#œß8`l­U_NüP&‰Âä¢%üÙ„Oà%éë|w_Ôéµ¹4µÏÚf†J¶ÚReOªÂ²c‘ŸØÉÇÄi^ûjè´[úªõõ¡úÈæŸ¶ ÿ)½÷lÐ3ÅCúUøÏv„ijAÏqµÁ`´Tya2]} *ÿ<Ç ‘·Hª ©?¦`º–d=9¶W7ݲ …²ÐtŒ²$£8x};4ì'òË@Ó6öÞ³µDø ãË€!dní¥ºã‹dßF ܪ0(Kn YIÍIpA•• {òn3³Þ­Á0".^Ò“—Ž8ÌñÕa¿~âW‚}`¼$Y— †÷cÂcÂî5¬[Ñ-ŠèE_I6¼·1"ºÑmŒˆáI7ß8=¯$íÇL‘ \%¯dø„Áê-~%irö£ºúC¸ªü“á3¥¥*%íä,¥Ÿ¦µ!¿Ü—Ö,}}°Ê~ÿûþ÷ýïûß÷¿ïßÿþ Yýûß÷¿ïßÿ¾ÿ}ÿûþ÷Oø³vþÛèu{ví뎑5Ùõˆ—g|ÿûþ÷ýïûß÷¿ïßÿžçï¥Çßÿ¾ÿ}ÿûþ÷ýïûß÷¿çùCÖ›Ój5zG*»4f¾…ϧÚ9$õ½£Õšv×÷)ÌîEqøÞÕ¨òí3cñ)ã<›åÖPžE1NĦ‘}Ò£Ö›³då‚Å9Î'1êáðÐVSé¾{£ï¦Ò‡¿¼ý ï¥Òì¿y§¿N¥÷ÞÿöÛÛ?ô7©ôOúOðU}û«þsªòƒ¾ŸJW÷öÞ|øC›àñ\ï‰Q¨8íN{o{~8rà½ù~Æ9Gþù?™óÞ~Š ÿ9&Ü?ÐÆå⽿MöÜÏ™áå²nßôÚ_jhuá¦{íž>ˆºÌµLV;Ó¼Ïr€¡oŽÏfqá`#, ƒ=|`Ÿ ,Ýï±3N¥6-ïN­VÌÓsˆ{Æ­)ª9ÊË,i5Lµ!^CBÙe ˆ%«EÄmj²L82Qœu©ˆð(êrÉj2‚Iü‚‰(A€„)€H *SѽTÙ ü à zÆÈ+ ݲì…?K¡( ibRiƒ¥ìù´!HYPM“BMüpe“¨ ï›^NO8@q ÁcLb¥ —R4|ÓÔAÏIJ‚ó8ÄË!^žTˆB`ÈPE“hrÑx…$}MltpP}#Ù=-1Qeöòøåës¢ˆæœ‘…Ê:.ò`ô¸’§!ÙË);¡«¢<ã 2®ŸÚ&ú„EšÄ\L“˜ ˆ<þLM¢DX¸EÌ =¨ª‘‡P‘Tú·êÁ/ºuš{ò„ÚÕM·§]Ú·®f·4»sqƒž C“UërÈȆ÷‰â’fIa'´ÑÕzí¶æ4.B¸ÖÖÖ|ÈÒ”H— Û“‹„]×¢ ]«v2ÚÊYnF»G¾Õ#@Aæ7«A¢#LƒV—æ[Õ¨íQ–J˜ä¬R±@ÐéDISVghµô Ò¢ nFoï@¥ÌÙ ‘¨Tú㛃]¬ÍI>æ!é•Ý„ÉðUÄúA–š0¡QXÖbÎæ Æç/cZp¿þ·wðëO~ÊéMÕ"}¤Ìt´F€Wß}òàû$Oã÷Fá½F…EùïyF ,,ì߃a]K¯³æŠ[X­£=)a_‡O-i"0 ‘ésΘíÝŸ¿êgÍã 1Ký½_¢rºîˆ„"daýl ù¬œ&L€ö=³Ì²Èò+îèvYËÖµ¬­e³ÚòÙÀZÆçå»åõì£dåÒå&L¬7Ó;@´w>}ÇÖ»OÜ5½Õâ–.0É'ÖñÃê±1601Hþ9Þ® ËaÔ6Ω—uÀr¹]mï`Eûõ'2òMÕPáÝËVy÷r&3‘?AM”Ô5äsbB?5<,t³(‰Cx€˜@ 9íO–\ã¥úM‰Dâ?âZ#윃dPù†tÂüt¢ò)ÅsÈdj¥x0Wòßbä}æTRNQ.QdÇ5S¸Z™L©âK¥\¹~# æË¶”GÀ‰ŒÂ…LÀyM+š_YžÀÜ©JIâE.,Ý~Æ‚zÆ.l½Úetz=Æ÷sq ßÏ¢˜þr,NBí1îŸ cf/ÀÏ‹.sãv =³yÁ ܈ðþ›YU 6‹A3·õÆ”¥´FŽ8x&‚.³ÊÅÍy^ͨ3‚ÐoZÒj†¿¡/° ¤®ÕLš¾#Åç°´Í‘eŒì8l3»Ïdˆƒ¡mÖÕ´TYÆÔõü­³WéÍúº¼<º†æ&®¡K8g'ÈÛå烼Í!— òCÔãÒÌ8äG‚…+×3<É»V½·Vl}…fæ…ÐÓÊ ªÆ‡1íu~ŠöúÃN ©þP~NØe öÉIé¼Ý.žFàç²ÁÃN7­¯­v¿¥}xøö˜0RÉEä8NÃÌåÇ")Nƒ„A b9·&`e*, b‹6ÅÆ4(´0|èž·<`GÓÂaÇX4ØóOˆø`ƒÈp)óy‹…A”±@ÈIi`^ÿ5Wùé¸`C\YõûgæŠ JXRg){èXÛ«Ær-ÚçõaY=·>`ÚG,º¥šp뀤p(5ÞéÙÇ{¶\;¸p£ÔÌæöÝý[&¾»õ¬4ú`³rzÊBïTÀhL–šÝ“³ÀëÉéúî ¹úâ^]÷î¾°£ m"~ñ|’è¶!Çfí\_.|°;½†Ýdl—ˆˆ ¸"ü¯PÒ/dü‹Œ†Vê7רw]O’4Q¢Í72N¶Ãqîê)+Ô?.]­º¯0‰¡ŒÞx’°ÆLULýäÔNéÎ)sO–ÈøÎ÷Râá±?&¤ŽèÊ”³yÒ"©h1Bb‘ãùÆ33¥G#̧œR¸vš ¸,OrDÀ›Š»{Gr#+¿ ¦ç ¢òïw§²ý®¬ŸÂÏoåäŠÄ›ú8y‘ c Q"AŠ^–ûä4ºW82žŸýÄ8÷ÆØ6¨ÊT…§ : àTS6/¹?À™Ä §§Íá°ªæ y ÇÊñt[ú!ÎfO úcø'‘@»¸Ç“‚÷ œäÎüøOÁ£ü¾Ï„ý W4žv6XívÝ ZíÉ$QÛú²f³c=tr-£hBŠÁñò_7v«×8o@KQo»ò„ÜN^»vÏvš®Öè¹WáVD`áƒVZ††rÃ÷!Lq¼zËiìʯ±pØÃÑ4[Þºm:#íN»½rk°õ¡ÊÎZÚÑᙾþv%pR3n©ù7ûŽ)¾FUNëö:€~áýu¯Ñnî‘$d©o¨óSŸõà‰ÏTEœöä¯;ðîUÖÖÒðºé5tøÛ™&½iò›WgÄÉPüœygçñ#%ÍB?¡^wÇ=7cGF;I¼åÅá±Î¢D¾|ú”ãô_NñÎq P“qjœ"Žáôã2FÖ‹òã§gqBr„f9:èÖð¬®Ø¸˜\GŸT¥àidæs K“†sRiØå"þzÇ‹–½Þn)$À9ñA"×@ÓB84-„FÓB˜4m2e/árrÐ5“ì8$•VûK”/m¨ÎW{7–éüó |"z>‰:í,€Ž¿:SºE¸¯Ò]1EA²1èTo\qúEÉqœªp1ý?:ú0õ—®§jzª®Jb˜Ðy XZ±€uŒn£ëŸ8]ÿ~§$ŒV4>ñE!‘ƒN÷ŠgƒÖ'Má*J<Öf„}lóCe ‚µsÝ ¯•2w„Ƕ2Îæ‘1±^t\¼Ÿ 6…í“Yù›Ð™ùæé´ê“–{N—ã‘1±^t\¼Ÿ 6EN¢s’‚ÿ&¤ä_˜Ð×Ïéüö«<'ôÛ¯ó¸Á{ú÷(|ŸÔo¿ü}Zÿ*pfO¬÷ʸ{ëEÇÅû bSÜ(D¾R')ÿ%5õI?¶ Y>)iýtÌ#?©c?‰è¸x?Al )I|šOA¢+Kª3ª­LÆúåóЪgއÅ̧ušÄã¶#ÈÀÇ0sÅbQ„Å„2t8#Á/ò3=ó¢(„âÎàd|F‹Y±'X>SÆÀ•™ÏÕ`‚¨üðDõöEªë´ëwz… t=¢áEŒ1Áð ‰ ˆ@Ê9Ä`̘+¹Çy!Îyˆ‘ûiÁOÌÝK¤ŸXf2”æÜÄ)°Â‡³ÌžæÍ5Ã:gÆÏ~ê´¯´LêäL;…ö-ÃG§áß‘1¸V¡oþB_%ÿqG{ÐÕBC¡µÅU‰mh’ÜòÂû[·c7›~¸Ýª]¶;Ð(Ìôü¤2ÓSg¦ùßîuR'Vß:²º´@¹]>}È®<êåí?^«# ´NÖš =•ÚÞ=(+ÓO¬.{Ò·­u» _¼ 9ú„<ð}P^ÛèÆ ßð/¨Ôì® cÒ®Vo÷@ì*!o«„\gmsa†€åµôº~Þn/Æ_TˆÂnµüÆoBœœ.ž’†žêš†'¡Wéí!Ã`|Õ´¡ˆ¾5][;ˆ%É“Ž;€þ±º%ru ‘[Dd)öPz(®Øª),u½¯j»ÚÖ~Np“¤Tâú} ÿ [JüÕáù£ÂïrR}äe½5M%×±fÿúmkXæZC|Hïзæ}^iç8¬Ø¶5L²³ AuY´–aÚ¡©?<^Å6 o¯Ýà=52!³€Æ… ]Ãéôù QÐl"~]÷²7ÎYZíé\á—Â@8Ö5bx7,†™‚´¢µ{0ìé7ºnZ÷æg XÇã´8×gÄU}_Ù'mvÆU‘-býPÒc9­µ›0è«7º67êcE¾B B/¥Âa¤w•Óc¯c¯žŸ>+ùG¬ú<µ±š‡1ä€ÙÿêBóP¬Y,O]Ã?>hë¤rÝqoí›n“_ôCÛBç0ÄýQs›P2˜†`¢U6YDCHÜ|ŒËAŒý”o"—  WPÝ4:4,2ºFØhÙMb˜[±ºìÔ:¿¡È™®)Ë æÒÍé]BFÔBWëÛh_sÄy2ôÖäy”0NcÇ-‘ÎßÓEO cÇŠ´3Œ¨ ’-”ªÎ~wG4aÆÂ;ûŠpK±Ý°oƒ¸bbÐ kˆQØÕ]k§Ö¾¾Ûa+vbùHƒÆ¼ªa»ck)FÁ6w« »”a—2ìF2„ùtˆÏˆ=ª€É@\@hœSõÈÜM—¬øÓÄ.WI­‹Æª„Ž\pîÆ«rhîs5Ÿ~Åw—Ûi+áTš½2Yú»nƒ–¶¯/Ýò2eè¸v“E/B“;d ÓdÑEu_¦°e ™! R3PìÿJ¼Z6Ôªœ× "Àl† Àú þ1¸%é1¹pÀ†ß” âý*1ë Û‹¶¿~,žAÅiùÉ[lÊQ…”Þ‘Ò{)C¹ä¥«EZ´òB60$f…ÖY4ð2Yôô‰šú2”poàøùÕÍS]¯2ð½>tõõ]_ÚòV1m„½Ê­äjÓv‚ÙýíjânìfuÍÏ8Á•¸ÞçÂñAו”¸c‘=§M‚<îÜ£VÒ¨Û¸wD¸#ÂeÕËÇîãn@êw¡7´'8ÄõN‡Vh+Û¯Ëuj]^—]hU°=y½¬?A ²;H\Δ¡á“ÊB©ÉˆÓ9…–DåZ§«!úÆ+Ì|-éã±Û§y飺›ÈOÛM¼ÖXS¿ŠqQ´aMÜ ¸Yîwjõc±ÃOq÷ù°LYB—¥rG›ø¬pî]°åÞ®–m¨XT߰Æ÷:uÜÿ®êK8R¯ä±?ŸK}ûVjVô°Ö†ÈÆÇ»¤¬ ácosÕݽ×^v| ÇD²S"v -Ä!Óa„c”GÙ~"€2‚ lT`‡ÒW´e'u÷4$l7 $7§“›¬­FôÛ¨!ÌÑÀ§ZöÉI&‰ÂhüʤÀ§¨Aö˜dLÇ÷´ŒLOPnB‹¤Àæ."™~A K-–¢9jL$·I­RÒ´F3BH± ,³£gÓ¸†-l¤* ÝÆÃ0º3¬%tx½!u®Ž²'Sw™Ï8·8¶1ÜaïUþ^eï{µ=z=¿ fè ®›°Üâ‚àDÅåóöÖ :â礠oÒëÃnÐ.%wÞŸÛÅŸŒ 5}æ­‹ãQ) õ¤} Lûbˆ—’,EB‹fØpN<2cµøSmÀæúÿîééL è•×t}.Å¡×ínÀä!„}hûÖV£ùƒk)~ÊK-Õ–úÚÄÜŠÆ“ùˉ<"²_a¿Òþ¸ltµ6s{D{:Ž[³oº®öÁí4µ‹Æ- qQŸí6Ú]mÑYÔ:6îÿàNP‹l­io”ã6î­ ÁäÞ5›qn.ØÑ´²mýâè÷C¼]$ŒS[;Òe Þ×ÞÁÛ¿eú1ËÙ!.´}(ÿjêôcè¾…ë:¿Rà+á“2³‘¥˜,›0Ø%<¥6ÚѶ‘ÒÓ¶[xåÀÛ™çø6f@B•Jï½ÿí··”޼NÇqHkn jh÷²}Ó$—.u2"Ëö[AïZ¤a+Œg…qÙ­Ùe}‹šØ"16ªçÍ…§Ü÷ºi×È®5èö.zVÀáZÁ¹ÓR»Ã×:yeEã´ #tÓiaV(/B¾ÜÕ¸a9›Ž+BîF‹Î.B¢T¥ò°¸ø¨Ã«Û&P]ÖÂzU•¾+Ý^º²;_㆔սà˜äKLBXé¼mº็¼Q%ïÄ~\HD…D"âÉ9qäø~w(žöÖ‰4F ﱄþ„¦šR²Gž4–‹ ¿AR¾©XUG&n®› ˜‹¹õ5F>Ek¹GMŠÀi²Ç°Ó\\jöÞ˜”¹8’JU íì˜>$ì¸úûïi+ ÍÜ¥q}g»ßþYÛS¿¼mP¶AΖc#HÖ–.^*s f£»¦¶™Î!ÆF@µnZ´ÉÝwéx„Ót±äzkR•׫»{¬QÄ5™7?ý,qÂi¢Fc$‚@0` Äv´T-õ¢V×µ¡Fþ#¿jòΊ „)ÌS¡¡è™€¼âÛƒ†¦ ¥Æ6²¡Rõ;íÖë¹ÖüK°éJÁïw\Ï$vj\ïð¼”pÂdééªÖ»ÝµäÚùªr¼²;vóŒcõêÞîkÞÚÀC\“bµvƒ ÚjÉÊÂ%•ØæÀXQ5›s—–/„vû'“!غpøNŽ“½T aíò°ŽVßGÐ ¡°’´: ÐçfwpY­DYñŸ± g¦>§r±ÔÆÏÇK=m$ÈK]2Ò`$ÌK7Y^ºé9±ÂÔØÌ2U††ÃWj\÷‚ëà@ör9LV.‡s+ce{<Úœ¿cë2QýY š'«Ç%8Ö<~÷çÅïþ\°“­=®ærhãAdÐníæɵš_H§µ·-ˆmÔY\(Zô¢é€îGŠ­Û=; •1Ø!Íh„9zkUNš“'ósí¦É 2ÈaÕþ¿ÿ]oÝ ^·jl©ÕqCž¤¯;sNU=Ü{ûÖ÷yç5Üz> áK°ÿHp[õÆ9ÃõŽòÍ ¸ý‹1¶ù!ð¤‡Ká¶ÓÂ%qh9Zú`0Hp7´aÜÚ#c Šv4!{d–q??NížïçÈq¨¤ñ’„]ïönÎy™‡+/+–Yí;×&'ôì# z0÷‰xj8ÊÚ€aÎdn(ðQ ›e %xùcÐ*ßÝ͵j˜ã«FhÓünüþßsî£àŠfÏíöº´  ØíÃP\y>§“B¸+H  ´¾l¤õÔš¾Îº\Æ¡ö™ÍÎÄ®›?Wë` øëx©Äø‡ÿg¹ÂqP$lSÂ!Òõô(Ò勳p𪃔¦*eÌ5ă¬3´Î‡V· úßTú¯´"®ŸÑðs[ùb´Ÿ¤Ï,0ž®’9ót¥b B?ˆaãÑ«/ÙF®èÉ;ÿ|;HÃk_!›ãN $ÓÞùõ·‰¶óÚݸ3ÿÃ6HJ’ewàsÒsîù1Ç= (Sò áÉuj{20bŸ1Ì…ÉùvF?ž“Å †Ž[ :Ã3) Û&w*Ù„d2ß )Ã3}-1În§'qŒ#\Ÿ˜o„šJi¤ÂdçXJŒ”‚™;1#•&ÖCrbÅ4ZmæJÏZzt3»°}öGØÚ4mlCvC)¦GÂÈj4'"†kéYÚ–i¨›¬@ˆ§¤R­Ùy” 'bdu™£$¶Þ&Q,cTd^´ìØú‰S«ÇQ‹–ÎD·³hî ÀÇ@jN =“0øÄàøŒMœQ®¬Â(—Ÿ–ñú„¨+/ˆûù~È=>òê”Èm²ä™Y÷zÇOÝ?Øi\\ö´·¿½×R¸f–ëÔqÚA‡6W»0wmœ7jlÒ@£h)Gò¢ñ}dÓ_f؉OVãéjb›$ÎJp[‘ÁR‚ªñ}zy -“µt…,éÙº=tÄÏxïUNp†È-Œ ;ÜŒJÁ¡£Õ»Xøv-¾È­×¦ÉúôxU:?<¤=rý­OîØi¯Z€|'ªXô5©à%údµ*U)ËhåL±7‘Õ>)ÈVdMÏëû_xý<èvã_¶ý/®+ÿ"b¡ÎÈhÂ.×íZ4§;ª·@G»Ã·eÑö?B`¾}€žV¢ùf,Ïjú{½^^§ÆmæX¦´î#ûM˜Ñà ½6rÛºÃM!6ŒRl·+°ylÇž¸"¯9E^y#! '7#SÉQ~TâœèN¤Vªb¢¿ù3ùn“ÉNzĈѦ•cÚñãÔÊI1>Åv'ö‚æó£Ë‹Â“Û“.ËÖÆŒ@7x­?o·A‚ŽÝ¡ï{]?ƪȭ tyG{©Ø‚:{0è!ÞÞ| òÜcÞKwŽ#šåàí¼P>›`hî£hä\À'¯3}>. ¿Þd§¦4˜–„!P0¨ÒåFÊÇ 0>Æö8¹«´ ®ÜP XözÖdqáÏx°‚„—ùD¾nü­É(Y!½oÕÜ9Iì%¤s.ôÁ‘˜ø¿6®µY„!œ±%) V¼–6F&²Óh’½˜åË$a¡\5Z/¹œqÁ@m¡‘Û<ކŒ­9S‹É¿[6ʾÞ3*“?¼JXpSÚµøæ¤E*†Î*'öý)?áàí¶xs"!5Å=’'á{µ¦6é›ðU:4ÝocUµú™—¬¨¸F5F߀Bµïäg¬„ü‰^I´ŸW+™xãa9Ф[·3¢JN0,J|TpR²áÔ=§tšœ´NJÁÚÈ’®6-a¦êCvuý~h»éëöM¯ý¥†¶oø[ýQ–ñWËdµ3N è{ÆðÞRðfzoÀX&§ñWB![~ȯ6ê%ä# Sô"ë Ѱ×!¼myo÷ðVÄç3gæ½·7¡ë¸Ü„4ü×V~m—säΑ#Ã{sáÍô8"áCȦ¢Aí>I.€ËÀoɸõ¡2Þq)ðY y(„¢LŒxÆËH!(…´bD6^nBxf6L}ÆŒb4Cÿ‚ œ'gŽM=}”òÿ‹Ëÿ/¼ê”Jÿ4bψߤ’í 8½»k×r¬£tžÝAO<ÿ×¾µ»µNãBFnðäÆ1 |=Õ_oÜóÖÄ-ç¦Ó1ÝK·Ù, ·­ëˆ\£œ”Æ•}áR¦vë«{wsÍ#v¦ãS¹Lº­µµžv3Þã•ÍvvôÚÐßÛ¢m[oaÊ3cÖŸyMÊrã1Ôê>1ƒiÝTá9×Á$¦S¹ãÔÁ²¼ï´Úx‰uÜn ŽçWy”Ûvlj«£üŸãþ'ËN¸P. F­ï§D®¨q÷Ù°t÷CÏðsûŽeò[NÝgtÝêÏcLXõ²c©D¡ÁÜ}Lžàè7ÉAQŸ{ø8Þé}þm4>Åï­Cœ¬~kh÷yh³­!^Xü\·è°Í-Üׂ”˜¡r€Î])1ºS滯ìÉà;®Œl%׆¶î=ĺ—ýý–å8}ù[–¡Û¶5È÷ëv³÷ÅéÞ ¦5¿Nƒ< †ž?O‚ðŽúÍæýèQ@ÁDÙS ¸ûv[ ðÃaAÞ±¿ RRÖûú÷ã!¹21sä,ÕL¸ºÊâ°¹¡ôøÂ²h#²hrÍËò{ŒÍòðàçx ²èZMG©™Ì§DW>Ät-'ª×xüPÙì¶z¡0|£Mí:é9—±… Ó Ë0lHûŸ,VûÄz·{µ=±i„ì^¼óŽûÝ\_·aè]GC¶F-G74 @…ÆS~ë89Ù]µÞÕNG£Û˜Båk§ Ïx4…éѱà15*>dWŒb±øXI¡¥jìí¹8z(3òŒãÊÉŠÖoÀT͉¢‰Ý íª Ó<†ÉÍÚ2ëÙ0ÃnÜ6ê7v&/¸ÖÑ]Ñè g€ùþ6a.n£ÇÙŽgž¿/ík2&ÌmÁ 㥒Áر½îÙ €w$ëÌ53ë’!b<=„—Ý% dy–ùx%ÃÀ‚ƒV‡t¶Ö¹ OèzëCŽYð®žúOëƒßJ0ZŽeh… SדØ9QLq|üé3³ uüi䱞cr¯tL¾!?€X+“qF|EÜñçÏqÑÕãßãóVÕ±»Ñcâh¥c»BÒ]wEØ'¶ªÌ_*ô5n§å…¶ÖížÄeö©™îš«ƒ3ü å}¥ŸãQáRKïûçqí>ôID­I,y|\!ð¿ð ]2À_iUœá“ÉdÉÄÑ ‰AÒñ.ÚMF¹ÙB?É3’s¬£\"¥E%†rç˜[`Š=&(±ŽÛ»é´¸eéÍÔÜëž_MpÝaïâ§K¨ÿ õ°ÉnÁ»·È!Ž¥’¸ìðs§?F¥4€ò¬lá›@Ôb È”ùwxþ8ÔÖÖ¼ù?zPÙÔâ‘¶:Ö;VëHÖ¼®ŠÆ$8ªêXÖhØ»U Çn•ãØõp<˜+ÏÈJ4ÞË A‚ˆ/’@…‘² "Ç &Æ_#' œI aWÍÛ®,„Ht¹?ß«:í}9Tƒó³ßOFô/…}‘a?o·§)éöX‡ær% ÐL‰ÐžÇÛ«ñáê¦ÙkP»ù´6vÜÅèœ(Ë(›[i&lóC Í¡¦*{†î8CÛ†'S÷ܬââ?Šþ…ßúéǬMÂÉù¡3sdLa5ó9¿8ÅëL›Ÿêõó™‘|ÙLÜä‰ÏÞ\ù›•Nf#AJŸM¢d!ÈD»D¥žâWñf"6«$s0q‘e01c‚3/)yÆ€©íÙ"S“ñÅe* l¨8DS‹%ÅøÆWÝLæQyãXXñí*ü}˜!ËT_ü-› } o‰4bLÇáwÆ 3§s»JƒŽ7ì½ý®| Z±:Ë75aFJªÞÿdIÖ!‘õ b‘ülDUBCÖãðDt†š™ã²‡Ž£¸ôä8$Rø‘nÅîä*ìÞ‹xÛ× ñj³{,¢äèË™÷’󀌑/ŠÛ#>Ô°3ª]Hô^±¨ÓÍнœŽu.Ovž7è{-ÖìméØ8éÛȲ–ÝG•}î4CâN3eîŠÅwZÎçNÓ¶|î4­ès§ùW· y#!ŒâŽŸ@èºî¹_g~Ãɧ3EŽ’qªŽ§µmϰ7¯ÚÏà~„Í1|øû¸^€‹tΤwi÷¸géŽk÷ºþq•æ·ÅÎWú0Tn +óV½IG[ð J¯c³Õ˜d8|áŸ*G·kC»ÎèÑ-üÔ•]ç—ÒÄTÏÄš]Ó×ÖÖéb*„íñíhß_X·ªd~®4ŒGÅ%Y¸S¥mù˜túõ¼Á8Öma)í­AÏ#l+Ù>Á^ÉÕ<4£Hž„ÏRQ—߯yê*÷)ûšãyÍŠKÀ„ùekè´Zr‹«eKœñsø]¤Óà YÊÞ0 tÈŠ•-ïºç6Œ¶™ª“VÖŒ­µ¬ÊÀç¾öõ¾ºj·dACußn•Ïuö‹ÖÝÞú‡mãì<½ƒØº×‡Pl·HZ€Æ–å•"G;Ÿd½kÛ.3ËSðp¯[_á'DîúT>à BFݹPòp£>ÉOd›Á<9eʹ9QÈÑ ŸŽÆùNŠpW¸6.û5…<©ñ¯q×—Ð5‚fVP;kK.?OœÕzÂ7¦‰›´àpäAâ)Ygɯ´*;Ùéö\\4§^ü,Ñ6­^·»ÐPuÑ&,ÌÄ$ž39 ¯lvi`µ¯´ì®Y{^7 ªrEæfWœö¬k)êQñ(ôë}¶¬ßÕ±µ^g¬×~×éû¾»ô}Dß}ü^£ÇúÞ§ïKúþHß·ôý™¾ïñ{i}w˜Ý×’{Î×r°ÒMt ù¡:¸«>R÷•Á²ñ›@òuð¾:øRüQ|«þ#•{eò„}YuÒ°:iX4¬NV' «“†ÕQÃê¤auÒ°:iX4¬NV' «“†Õ“Õ°zF­buµ†ÕÕ€Ò ?Rƒé+ƒ:VW»© €ÙI~©Nþ1&ùmLøç˜ð{uxÒŠvHŠvHŠvHŠvHŠvHŠvHŠvˆŠvHŠvHŠvHŠvHŠvHŠvHŠvHŠv˜¬¢ªõìP­g‡j=;ŒÑ³CµšªÕì0FÍcÔìP­f‡1jv¨V³Ã5;ŒQ³Ã5;œ£šuIͺ¤f]R³.©Y—Ô¬KjÖE5ë’šuIͺ¤f]R³.©Y—Ô¬KjÖMVͺj5ëÆô˜ðC5˜®:ø(J_™< h]µžuÕzÖU«YW­f]µ–uÕJÖQ²îütìˆtìˆtìˆtìˆtìˆtìˆtìuìˆtìˆtìˆtìˆtìˆtìˆtìˆtì(Y;RëØQŒŽ©UìH­bGj;ŠQ±£;R«Ø‘ZÅŽÔ*v¤V±#µŠ©Uì(FÅŽæ§b}R±>©XŸT¬O*Ö'듊õQÅú¤b}R±>©XŸT¬O*Ö'듊õ“U±¾ZÅúj ë«5¬Ó[öcFe}µŠõcT¬Ó]öÕ:Öé.ûj%ëÇt—ý˜î²£fý9v—¤g¤g¤g¤g¤g¤g¨g¤g¤g¤g¤g¤g¤g¤gÉêÙZÏbš²µ¢Ä(ÚZÏbÚ29< ijE;P+ÚAŒ¢¨í@­gj5;ˆQ³ƒùiÙ>iÙ>iÙ>iÙ>iÙ>iÙ>iÙ>jÙ>iÙ>iÙ>iÙ>iÙ>iÙ>iÙ>iÙ~²Z¶¯Ö²}µ’í«•l_­cûjÛW«Ø~Œ†í«5l_­aû1¶¯Ö°}µ†í«5l?FÃöç§a—¤a—¤a—¤a—¤a—¤a—¤a—¨a—¤a—¤a—¤a—¤a—¤a—¤a—¤a—ÉjØ¥ZÃ.cڱ˘aÿ¥ZÇ.Õ:vÓŽ]Æ(ÙeL‡ßW£½TŒr«Nþ9&ù½2yÒjö‘Ôì#©ÙGR³¤fIÍ>’š}D5ûHjö‘Ôì#©ÙGR³¤fIÍ>’š}LVÍ>ªÕì£ZË>ª•ì£ZÉ>ª•ì£ZÇ>ÆèØÇû¨V±jû¨V±1*öQ­bcTìãüTì–Tì–Tì–Tì–Tì–Tì–TìUì–Tì–Tì–Tì–Tì–Tì–Tì–Tì6Y»U«ØmLKvӒݪ•ìV­d·1-ÙmŒ–ݪ•ìV­d·1Ýe ü£Ì­:øs ”{eò„µL³QËð»N߇ôÝ¥ï#úîã÷=Ð÷>}_Ò÷Gú¾¥ïÏô}ßIj™­T2[­c¶RÃlõ˜?|¤„ÑW…Êêe«Û0[©]¶Z¹l¥jÙê,üY|¯ NºýjQûÕ¢ö«EíW‹Ú¯µ_-j¿ZØ~µ¨ýjQûÕ¢ö«EíW‹Ú¯µ_-j¿Zɶ_ƒ¬Z¹(B݆…bã€uã"Žbaõc²Z³ °ƒ¸ˆýX,—±1ã€ÝÆE|Ž…u“%éÖmZ·5jÝÖ¨u[£ÖmZ·5jÝÖ°u[£ÖmZ·5jÝÖ¨u[£ÖmZ·5jÝÖÕA(\¥ Ãë1á‡1áݘð£˜ð¾:\Ö<ŒPj^Ò~LøeLøÇ˜ðÛ˜ðÏqÝ«3ü]®›œÆ5›±JŽªÇGÆGu㣎â£ú±Qì=>çA|Ô~|Ôe|ÔÇø¨Ûø¨Ïá(µv†²%­ xìG££í›k´­©ÑÆ“F{­Üj´²¦ÑêÍ{–hú@£;ä …?kük}÷*ùƒDëW’pü ÁàCupWz¤ í«A(C÷•¡—ÊÐÊÐ[U¨­Lêwp_& NÌ?^F·Sð•É$x 0ì/Ænzðë‡vW>çÈ0â™ì¡Âu;“rœa­†¾+%ÿ± ÍÀ³m{!ð˜àIQI†¡#ÁŽïÕK¶ˆZ‹qa)’Ì%`2ŽÄ\Ù•¾„ŽBÛj}±§Â$Y¬¼’”­|ËÈoéW~›E€2Væ£a/YOÒÎWq(ÂîgW]5Š€‡YšÙD¼= W È8F—9#GöD(Ê2ߺƒ•«ÃáPçOŽ.…Uìý&‹$öXùªÛ(¹”âžão,À ¨šˆ½i‰L¸W?±Ót‚¼z”óÌ®_¼«‚©›yn\qŽf¨2Çb%ÍÒÜË(A'¤þEªR&ábÊ̯˜KÌJ]¢\й–—Ì[ÂEÆpÌ‘9Ÿ·ä‹m¾¥&³–|©Í»ÐèÖCv¥ð¸cuÓÖaeÇêÃkþÑ:JpغEøý€)Jœqª$Œ\yÕ7Ù jÃjýô¡°b˜'îê}vµxš~urf¯ÞŸfNœÕ»Ó´}b®nžVNÎ Ž‚“ÔŸíÀ ”ÉC; Ì)•RÍþ»œØRz %/b Þê¾:ѬÞiÅ:|ENšÓø°·ú3tIVýÕI~u ‚^ãCq…=ý°tJÚdõ_ü¶z|¾Ú<ÍXG”{à%ZK’ì­A¶¨É"•¶6^ɰ€Ù1iHÊí)‰H¹ý"%ZÉ£ I$$«ÜD‘Ò ©+÷ad¤ÈcE•(©6³8“®½²Ó|Õ) SëŠx®£–œŸ¦SÃËK=}þ"3í°Ù„˜Én`¶XI©I3Þôh4S.¥×-%4•1ì䞀§¨ç§cXÊ{¯JL——±˜ÎoÑ„n zºÊ68}ȯ<¦î ^m<êé; ûzšI5›Ã«+=ÓJ´±:—Û…1j8V˜rp#VÄ@a2îcI8 é(“R,ì»ì¯§á}_ ›M%ÙWW±°[sQJù‚ZžÌ«P@%ÍV8är~ºXr¾˜ºž…+t¼N(É3âˆkŸŸ›&5ŸÏ©ƒ0⨯¿MRj²|Ôž5Ú3Â;{ è‰Û©O`´›øÊ$.¹Ì7+¹äf ¹U—[囕ÛÓ4úÎÇÄ¥GX¾Y Î ¿‚'¿ì\ä—ý–å7«¾6%»×n -|lVݺ̴šÒ«ZíÃÌw#nX7ò’ÖbIkµ[«íZ ù†®- 2bU Âv99QB … —[]k_»-'9j(…—[†aðp¯bw3èÜÙ½t!fS1 ¨8nÀ(°æçÑÈ·ž 9`bèꨫݭ «Ýzã­ s™Ъ¹  ÝaEŽ¿ïþÌ<ª0{hÙ¦ËúîJ«ý…,Ér%üûnòOg´);G¦Îß^X·òsä ÑÍ…¡Æ\8ZoÌ#è±NJTEK§§™h;™•*³a– ÊÞÚÍF]ëØ­ +°ßœ¨\g¯­­ùðy»ušA¼Õ ü® ƒµñX³Scõ‡Qî@èNR(p 嫯¹öƒëÔêÇÿ$ùA…?»ìZ´{]}»SgÝÄx8v‡—°SWOOO™`|Xxå¶êsF U'›Â,¢±êrA¤*ÛYÛ©•=‚+ŸÊ¡{ãpãÙÚjÕ®Ð÷sÇAæƒmêOIÁBh ÇÊ‘êh“w0€h|*ß%Kÿ ŸŽê7ì¬Öêj)˜A‰wïZ={ÀcAàaŠR¢W‡ «FËîµ;‘a!äÄp¼DÆ2–ÅrÒe±,•Ų@ýaB=(< ÷…"X_· —ÿ-'È4¢àx!]F¤Ë‰"]–.Òóüâò1Q¤&GŠ˜XÙîlÝÝ|m$\²;[/áBn/òõó³¦Q 1;¢FÝ\9ДMR§'~cíˇò”¤<µ0Êq´X˹‹ËˆÚ'V(Ë9¯ P ¸Ø.œ_Dªzbè½jH™QýíüÅeY'_TI–àñgèúe@¿<ôË>úe =`W#7óêÙ¿˜_Ûè¢âÒí6˜yîZF*h’;ŠÚÇ,!>ø÷Æ] êßOäðˆfÈGŸJÙ–©SvZ•X5ʺž¶<ĤÞÃó÷C[z¡9é|ÐŃ©žìÈ»%¡_i»[ÎqàÖn:]WÙÎIö-ú¢@7èâ俢y§-zNÝ\¶ Ö‡aö"‡·{ §Ñl Ÿ@j° ;9)méãÖá© O žÐ’vꃷâ¤S²ˆ€¨øÌä(‡P"·®\"1:ÿ2í5]¤Wë4êXÅ/ÛmæøEð`këð¸Ž.pZÌÕ@"µv³}Ó Ä]ÃD ]õ¡ÿË å±1ÞdàbojÔš¼“cªÍsÄtÔh5ðAö9Ãu ƒ~;¥®øÓëÌË•v\™Æ”+›@‘جL´îeû¦Y×.p œÚøH“Ÿ“§±›%í¦õµ…¾>¼?|{Ìf®ÔöG¦¯„AL`=Db˜µc;Ö/ú:­§öÜAoýiõ¿ R»ƒëö_œ.«è¿ÔÚñ={²èœû{®s¯¤(ǽƒ¾ŽÜE`ë´Šž$®›öFŸwÚWÚk³jÍóe–Í\!ƒÏwó|å]œËÊÑVk@™}éò&Ô¾j7v§®ƒÐGâF°ÉA‘B}RQ¢#"úœ$z ÕëØÑ!PÇ%WÙu×½†f¹ÑaCJ^®u5s.Xr,˜E@”Ø‘…âm¹X}¼ôku™ÃZ«ŸàåÞ3©‚Çœ œà täßTÇô6µö£w‡Ì)w‡¼½!Ö“ –‡è$8°K’{–]ˆ{` kÿÒî¡t£Ø7Bàg؇C|½@‹T Ô°o>ûƒÜq×(º-¶Zð|¦í)Žû3Ç;_´$è9)Ù  dƒQJ¶U²'m@"¶¨ŠU­­èΫQrîûë‚Î q h‰[=iÂp Y™íòV­bBhŠÝr±7Æž'rXwøÉs#s*¾h˜‹4C%Çb"Ù¿t[4ßXxÞ®¨Õ[óqÂTÑê?äKC«nÕõ%á§´Vâ]:>`ólÒ;üÄôÞ†™ Žbw÷Žœ¨¾pAë„oI­ßi·.VpÄ„E¾h/jv—Èeúˆc6ë¶5:ÚŽ±M±õ5á8Ðv`ò+„83ƒÁ@ Ð+|jür †ÕX¿V«KAu¯øˆ‹¼:ÐU €/ÙŠÀu§]sY-zÿáËÁ›½?ßp‚t;3LU$wÎ6p\ïv‘–|Àf³RôéVqÒQ8âNc*ýîýo~ûðÇ']‘€q$ü62öþ"çýRýãðêÁFXzˆ„C© 0¬Î=Õ¦>¾98|ûþ]ˆ_ËêwnwØjëëñ®åÇœCL¤Õ&Tð¤À’÷ÐŒI¾³…)õ¼VøvÅç0¡¡Ñ / »Mihƒä‰çq`˜]øÍ¾ãuȽºÆuù.”lHÊTþì5*l,”÷Œ °áãÂ?’X–ºø‹k„-Ò䌼n ÁÖní’îÓ:VO µ«Çx?ž06‰q‡¯ãN©ñ6X0-’çI¸à…ÀžbÉeðœ, $!m︑!„¼Vm¡ÅjøÇW¨qŽã4.°K÷Ç.œÂÖÇλtŸˆ`•QâÊcˆ£öhmR 7ŸB9§PM &1²†O_(ò~BÊûO ÜÇÍ)÷ ¥¹¢×íº. º‘Ê´Uò¯›.áHa8T¸j´W7W¢~!åÞà¨ã^¸ƒ_ ˆo&uÉ:îÄd¹y‡ÃîÞú¼Ë34¹ì¸›äûé|zŒáÉ$õ¥}Ýk\5îÝXV=´Ñ,ïÙƒÍÈGVêí¦þb·j—í΂‡8â hÎHÌÓ‚oKy¾@o0š/ ú6&¦ý°!ŒÓ•øÒm¹g;2K 1÷.Ž¿Šb[ÌBë¢&.9ã™Jn"ú¬¯ÛÕrzÓjÙ¶uúu`\KÈ—›¨Þì%¡“ô½K³Á­Ã‡ô`ÐÕsœé;Nha‹V˺_peìKhïEئ¹ ØÂ[e©”6¤)–ÀÊôj½y`ƹsü鳘ÎàŒ†ÍyØ# …ÄôfP$Ä©Rˆ0²µƒ+æ_Ä.®‹)špæÑ98%Œë‹ß“shJ)xº4—–âÀ.}V’ÉÂEÙüÌ)G¯¥êº+a4>-=˜ Ê"M« éâ±ó©þyqt®•‹fÛ±›RæU V%@•í÷ïÞ”\eû£÷å PˆË,=@¸šœÌ((²LÔpe«i" ¿CÅ`/ñSËLž¡JµšT*ì¿yÆ+¨[þ.E÷Æá“„`è¼ÿÎDð:v}RÄ…xoÝ+ˆø¡jæò…Í­bÖO_ )ìñ~b‰lLM n|DâþD4Ÿ¦ rs"}DñDâ†L<ya1*(—æ$8náëzµ›´Í¸º÷2“k1¥Œ$Ä3èûH!èË'EŸÐ¤%H≑=×¶†rÂEO·8´«6tyW.üÜ…€àâA€@ÓÚ¹ÆÁŒÝüriwêaX9Ñc=jÓPB»µ›7n4¢ÔS0ô&ÇY;"Ûõ_‘# á´/J„EÓY;¢`Iá“Ò9VZÇL ëî¹.5œÛKÙ² 2P‹yÙà¨Ë—xäv™Eo—·!E™%Ù.c¢…õ5OKl ÄfãD¾¦Ã??ÞÌ,bæM‰œŒ]cDVËk8lÚ-Ëéw3KUez×gfÉô…—D<\íܽ¼ ½Òµkwtûúºéá­M§£õ&èG ßA{í>LÔ:wº ¿Ò£Œá!ý[õà¶ÎOP4Ê«ù©hÌX4\óaJ¹ ð¦î6‰JìÀç¼sÓè5ñ¦Žxü·™“¯u훚»2’ 0Lan/5åqÂÜF4em›Á‡p9F¤<Ë BöÛw?,ïp[Q,³DšSï\þ¸FúŸ¯mCì*LhÜ)¨ ´ýÑþñÚ~N˜8ÓNôdãÊî|Yà[³Ë[ V‹ú þæ‘*>ŠâììxȹäËÏÁщižNÒŽï‹ã3[;4kônzî—ö­Û9§“:´l0pI3sÒ‚Íx[®[wëÏÃn"þGô ë‹€ˆÚŸE-›Õÿ{Ó¨¹Œ¤ÅõKw°2ewcðÖÌd³KÕXãP%ú>z©Ñn¯Äއ KÆ}RÚ1ìçV—Àj¼ÖìÓ± ‘Ð᎖ è3ÐóÙW˜²elS;ô¹ìlV§0·ŸyO @ò¥…m5Æ­çǸ5ãÒƒñ8NKš¡=F( ¬ºD)›xÕá35 f”€'îóÐ1ÂÙJëÖ¬ÛFùù±Ð1XAúQ¼ÏWÈÛ~!—ãH0“`ÜÇøVX·Fce7§#x ›#÷qCÍíÖìkWëºÝСÑI”XM6b¤I²eÑà.UL£xAê9¦å¼PkSòìÅk¤§^ÓïÈ3¨ãJzœ‚͆WÒ°ðæ@|ˆÑÁ&Ž-—ŠE ^¡Fo³Ý§9´‘šà>†’ä5L f'lð@Z½<͸céòLÐë¶Út»gL¤Ø/›àˆ†}L8~?¶ÓŸÏ¨#=•Ô|ˆðP©û(¦gcuf›—ê˜gFñ éPçÑ@ÄŽ!æ3ˆ‰GÏ r.Dx¨búÉ”N¦5æ,Zs1™Ö/ÑšÇ ïe†/#è‰S¬9P塞v’ ÓËÝåÒh&ÿÈU‘Bâº=Ìaµ>?Š<£øU´d³2L½¢@.z&î1Ì1‚ÇÐ=,òZ}¼­£È¤q{¨œ‘eÀP¾É ’¿X¹!n®±“fyR“(Eä’TfIŒ=ÓImi*•XŠÕˆà¹¯ì“ÆQÓÔœ„ ·¥½CƒñÙì#«žôäáø?„A¦xâãÐ8¦æþ±Ž¦)²¡0O¢â5þÇ%ëǘaiâ£Ñ¸¥Ì‘ˆ£Ò˜ñHýØŽêGutQo*ÔŸGãŽ(Áó³SÔеÌ}€»P8’’h <…’QÊ€ÑÑÖ"qZbÚLm$’§æÇ……ÅTª²C&M¤/]|)³°^bà—‰A)¾³£§Ä^ý\qFÆlúºaªÆmj׎}³$æÊ…ÛÛ1è›=çè;ßv³¹ð³#·¢97=ºŒye·îü¡ ;ŸÎ.:lÓÑòÂÏnÏO då £­ z‰.>3Kit1Ø´Ú=¼èÊhJóñí[He;M7”=÷´ìy?{¾¨+uÙ_‰ñ_ÑpËÀ7Úgªoñ;(ÛlVú~Ö´TV÷ÕÚ×wÉ`Ú a⊒&’,»Ÿ úK÷“õõàUdÉÀÎ ±\%õeßædÚk/ìAN©ì«‹OSÀoŽ? ΫÀ |„„jª„Ê­Ì Ñžfk)CתZ ­bÝ´€B*#šö³.èŒ!p¢RwmÖH ˜ªÙR–ý<¾©h÷ïN{v¬ëK&Õ,û1D_ð]:d5œ[®æ~µTNËPjøM.öû™#}DXbÑÍF·7*õÂú¤k´ÎÛ±Æ$öÚW׀ߓôÍI¼¿ÅwM?œU€©¡Ú‚ÈH[9™´²Ô01qѬ±tªÒް23ñd&ƒ¨GZ ™¾gä•öš C“ÝF·Ýb¶ÚCf^Ð8ëŠÖ¿lÔ.±3ÃZH¤€ò5j'Ç ëkiÏîÛ¤ì“U[w¾¹tÛ 8àöž6@–·-¬Ýƒ<™ì ÝaæƒFWj蘢JÅþÁ‚BçŸ(W…¡Ÿÿ¥rØ*òdµVô¿GDžÁ%OÑ®æ.¸Î8ù:jÕYÿJ°ÑVzû¦7žÔ@êišè1&°â–lK Œ¿Z&«ñ’YƒÂ˘øJ!V¿²xñÊS{±Þ«´žá "R OÍÓŠô›’‚ï”ÈÌ‹ÌÞk0/yyj‘Ø'#\( ?æÊtƒn–iÄ`–'ëF[&!ª#‰z$&Q]`†z¿¼~O6z¿Tßíí¿?ÐS•®î)öӇˉ2°|†FXm}è ÙUC¯wõe¦ÐUºvà-ÉL¸þRUe6½8f˜…a­lWi5ˆPãó±ºDW¦ž•˜‰3ÓÒqB.˜À KôX†8³¾>T«!žì™x²U™'åÉ,Ó(å”éLņ²ýÎ0Œrªò?ºx6R}tÃêÆÐR)R”np3ªÛï¼,e~VÿÏäªã÷»Õkœ7Ü¿Ó&/APMêè)ȳªÙä+c·a&Ùé7º.zÿ y:點Õó¬^Ñþ\ås[%í/h·\¶¦Ã:qÍÆý ×îÑÄ´Ñs¯B›‹0Óšñ1ãÄd³›¾(¤Ñ É™=)S•rúZa#.’Ñ(ÂߘnQËAœß·€šÚz:“²ú¼ž3N‘g;0S+è¯ ñXžíÍ»]WëõÛžÿî%êJW£¶Zt24  í™úCvÅ(‹)]¯,’YÍJÆÐS–¡'è&äÞ-ìj-äîͺx0Ô^Ý’öîòJÛc£¶.[á‹‚vçâ7äºì„øÞb¤ mjï€Â´&>×]2Uêv¸§6~aùδ<–WVL9ËX”fLì53 Ÿ2ˆÀ9Óry-“$ãüKËçµBL˜óJ+䵘 GgIÛÈk›1 @¼Î£¶™×¶²ÉöUBÓ˜Xµ”Àä(0¹ILNR“‹Àä 0¾¥Æ';IRÂÑÁpùó?:s” çäÑcF…¶…z”WŠÿÛ‘Èà…\•í™;,Ã&„ÜøÌ©²û{ЯW³ %?Ö!ç·q{¶°«My$¿ÖÂØòD+qCè4t~!µãhw¹àµâø¡´¼-_à4£} ÌÃCYDdNèd_R”éË#k"mïÏý-ËS.?¯ÇÞ„› ©¦MT¤1`D)¡„J™&Ëä÷wæØ­w]\¿ZÔÅhPI-Ï¢ ×ÇUó³˜4<å•LŠl®<QµðÇž›¾ãO>‚-€Ï‰ý4Õ¨yû"ðÁÌ“dðH™8ƒÈA¸KÀc\ÓØ…éçNC_´.Èañ㦯й–Ò´ ž¹Ó ã˜{zÖq8º®mš¹¥åε|N37µÍ-´Ùºiã³YÔ6L²Øha½Îx€Yï—ŰÖFÉ=–ð$™H%ÊeHr`g8ÙBáú™pOÏöP8Otá½pÄ™ìqòÞþA޸ѻw½qNÎÛ¸é2íÊíví —{…Â3ÚçV£‡¾Âq ýU-,ÒÖ @Ñi-ƒ?èÉ¢ÇräžOÁ, ÏÎ \ ¿Nö•‹K~´[rÝî2¯XÂ3¦çϳް/Zí.óe;]:BÞ>‡¹£¿BÌzo¿)¯¥XKë}1¼tb†<¾Ú½öU£æƒð¯³0g›O£•¨aw«ÇÖO|”´~²xL’IééŒþ`>fk¼½§€ƒé1K ‚ø¦?Ä,Ú]ieZâH¦l™Gôè)TDó(¡V¡<Û0–²;ÕÝßS¹Teu“\¹ò"lfr# ÓG" 3GW 2ó  ¤`ñG$!… iNg­ª®hº4”ÄÎ2´xOÂq/­ºÔñóÉl <¼üû£p÷å᥆‹7ºï]3Ç€©{oLí¦ëâý‚È aýæºÙ¨ÙÐ1°‹ ].Å_ltÎá9’]‰½Ç|mÉ….½2/S|× ~z7"½sÌj“ÃæÛFû¦x“_¤ç‰P»Ùcg&xô¯44"Ø´¯¯qÅ^’Œ­Ÿk:£ÎÑkCN§£O*RG,Š2?ÍlTPóð‚6¬vÛìÛâÐÚŽ>L‰UFêQ€{L¿þ£°.÷.¤ÓÚg\D¯ìî…ÝkܺB¨Ò¹C\œ]¿`§ü¬þqSÞK´÷¥ÖèÔn®Î›î`DzžIX›Ö–1zŠifgbúø“-[ ‰Žçúxü<×ÇÚÊ®sz';é°ìttq@>¸ä¾ ô½Aß›ô½EßEü6²ôMy ÊkP^ƒò.¬%£J(7SXQ, ëUkk×*î%§ÊͦÃQPlukž°û” YX¶—u]{…‡'ÉþFŠßHžÃu͆ª>ÔnqA¡f7R•ÕAéU?W& Z+htå8²,×Xt$[}yd³TXxGFûjrl·´@ ø´^åÀ/îµÔà·]ëð[PÝW}µ¬¸-¤»-d’¨†LP)SgœŠwöƒ¦õ­ï×]ÍIn$'F„#ÿ…€KV!È´’ç9 ¤áfܘKTêfn—ªŠé[7©¢PônάRtN²˜‚±9ÿÔ-ž¸î¶¡»áºÖ…²å BÀZƒ­Q‚œ=]2G²5[ÏÆ±IÔp¬Œ4º”:ÐñH¾ù¨c0XÆ^è`Yç?øñ ÓðÇÑÇ,ÇqLŽã Ú&Ä{)ÐѨSýWÜ1bçÞ&Áàùa‹Èaý`·øXcÃÀD ¶q–ZJY»¸Ÿ×ò—lÆ0£°LQ’l®;ÐSéRV×_æAV˜è†Õw]Ù[:Á£YÛ§ÏÆ–“³uÊé Ò£ˆ°¹Lg=ÂÙtf{ÎJýg‡Ðð^ ˆÓØØ êg>0æÏßQÍ*¯&ҲɛTœ­{P}- 2`žô6ví&vjáà´ÈŒ™½] µÍ²°²”Jct°8Mf@¹"l ãõÄ„qücø5ÔS%@­Y£™†ÙÞâÉÉÉš5p·Þýe ÎÏé ^³ÖÀ‡¥R$xCÄ@Æ0ƒŸü”øçÄ‹9‘>¥ðg>h)þ ‹ñ¢AË Â› Ü’—;&‚ò²p)‹Ä‡ÿe7äÞ½S_ä;eø.íŽ]Ã3Yµ& “¢uÉÇã×%Z¸l¢M܈ÞõyZ?õÅ‚9´ƒØA¬â…öHP£ƒ„ZŠŸí»õV èø¥®]Ý@äÛ_P;\ ŠÞZŒôYÂë!ÑW¼A:?޹÷`ýþªöÃøÞacšÞÁ‡*A‚è¨ÍÔã{ˆñ-欫ÿ4×È­GZ Îò)€Ž7ýiru°L_VN(G¹D hëCšybpí@ù&ÿÝZxíF"yv{v曆íE릅ѥ¿ì˜p£PÈøêŸm£ÕT¦u¸ä0BÌJbú#[s&0p"cGa@>–|˳c0¤5T†ŸPš_áwziŽ^H}fé·Aí¸…^SMöˆAš&¯ÿN¸î‹ Moüª@ûu¹Z]Ü0Àg¾F,~EN°"¥Xñ“äíÇ@*z÷²×…õ‡üJÁ~t¸ÏcñFé¼—…u˜ö?ØÎ#ß±£gJ‚Gäéçè6Õ@ú0¨Z«ø°ŠO«Yóñ³ †ý9ðÿó1|8QR(ß*¤un‡ìUìTúÃÁŸïÞèŽ¸æ ¼Æw£ ÎѱGð 'zøËÛJœÐÆoeÅgôŠnZM·"âC–g©?\uþ5€´8N:ï9=$€9›ªd¡Â0‡ÿcÿÍ; &Þ©ôOÕ·¿ê±ÛËY#°¡Œ 8)Ý*nå²ù¬eŽ¡?±øÁw»ÓxÚHŸ–Óxn:*%ÛÑ+ì‡}û5Ò«„R•*flq‚øS串TÕõL†×žÒ.ÖŸØ:W TºÔ™msǺpLçl8Óí |Á3ú•‘·1¹?Ì-²‡óš{\~‰úLÊËl[÷Ž~g§¿Üº‡uT!eËgCkTÂ=ˆÂ„§‡(Ürx…™ýž¹Šµ«—ª[zM ]7ÍP yÓæôÇñAË}è/ Qá È`åÊî°Ñ5ˆ»ç§ ¿ý‚„‹Û©ºÎêl©jý>èëÍ® eÀ Pþ*¦ÞyߨÉ3Š|ZU³hCÿ߃g|[‚¬LŒ²On`?V±b˜ŒÞ8 –ª5ØYV&-Ì»+t©fý~ýWG]—‚ˆ9cÃícóM A/qÓ%óÄú m4QFÃÌåéV¢µ#ÇíÙ¬àjDºâD©ò“¥Za¯Rò˜æ~,„‚ߌJŸ ,¶éöHA…l²UãÑd†òÈ–ÚÖ«ë+ÂÙÎêŠóqUüE¥ *r¼ =¥Gj5¦d·77JB)ú< S=x£•.}ùóðÍ—÷?ýtøæ/4Á±Õ_¿R“oµÖÖ¬–mÇ‹~D*® Œ³úzë¦ÙüRk·ð䬷poíƒÅ n¹P|sƒ½ö…‹'Ub²¯œ7Zu†¼‹' ß)²–4)‘CdÂ33“Îâ’f[uôÈuR"Yê÷&¥þ‰¦æn´†Û±â ø2Ž:#çÊ`{®å'!&uKƒ»{h&¤Iá›x,QAÛ6Û€ûaãZò'çkèöR•˜>±O© žlÛåSâˆBT#RhfdëÀa}È”òD^Ù|þ€PÎX™5p¸"±a”•$:ªF;¢á5,L ÇÖS»»£[]xЀcÉ€¡òŸl²dðUœÝ]wµê8¶½¶¿»ÜŠxxø¥,WH¾X ƒM0‰ì²›-ø$–©Ú±¹%ut±XpÒg–“òøKùãÜÑ•ÂÊæ ^m`=ο¶'Ê8k¾öC¾ð¨Èê{Ç bKÆ=ªG=ªŽ­¿\nV@½Ñ{éh‚Œ?ÎäYÍPÖÚäYs“ a†–ÕÊDPÙnÙWo^1Ê£ü–Óü\Úð<Û™,·~ëvîšíÖ…sÓ»v;çÐZ4ïšî…Ýì¶ïÚ7]˜#7ë­Þ¥}ëÚ×6´CWÓcŸ K^µ.F1Z¶åX®unµ¬ŽÕ³n-‹ ÀŒpþoY3k¸Å/Dá¿c-oðòW€y ³ñoF̯ØBl¨ÓüG¤ù5.ŲHq—â‹c „^Ó‡»ðÅH«þðuáRúm›y;ÞÎÍcÕ‘Tv#]i›Oq¥Íu[àñÈŸÒ=Äîo÷09e*h¶S \ È.Ñ.0xµ;Jôʘ2ö)ŽvJßãhóø=¦v¹ŽïÊjhðT» A5—ÐxFÔr’$^H‰¾Ð£•Q”Nœe;ÊwfߊR}6¾3Só¥tâ,ضWw÷xÓ¶»'Ͷ2÷#{ÓhË3®7õ8»÷±¥ìŒà•dF7€‹z,=QÁ½°P& K•ƒm§,ãaÓ||°,ë›(³›ÅG«žÖ6óúƒQŒ?•s Éx§½mÕµÚÇIÏÖ¥®S•å_"{·yyïv³¤uïZ=àÅ6Z‘Ó©ðáv§±ÓÈpIç]îVû w^Ǭ¹¿)8,¥_]Êá§?ÅÏ ˆWW ísý`?PÙ<Ú…G}:v¹"/ÇÀx îÖŽ2p¨Âì]Rãˆø­@ 1!sÚ†Š,aФPËÁ×к²õ‹?Ý¿·o¶kïٯå°ü³3³ti†Òšãž·;®ï’=\AO^§Ø·;õ®×–Ý\_“%6>gaÖôÀÎß“kÉу´, ›´ÿ~m^µÚ8ÏïÝÜâÜš·×o~úyL‚§Eÿôóþ2(êPô W~+p¶ÃŒ§–Tª¤=h\Ý\‘ÝWÿe¸V‚.ú¸Å%GA·!’åÿÞ`…¾¸ìéëAXxùo¬zW&Ú-¾(Üá²ùÂêŒåÃÕz+X­=÷ZÌEH¥à¢9`»E–gü=`çŽYã½fç¯É/5iJÄ2Õ0!qê–ÁŸ¦¿õªX䪪Ö^«“­½r²òn͆™ ÀØ=8ß;€ýëÆå·cõÌ0eë}}÷í<¼ýF*lÉvBIíØL‰»‹+ÕY/Ø“ÈQöóûÄ¢”å?®¬þ†b×Qò/$tYD“ªùßYÖ6Í'¿ŸDê_YóVŸÜ±ÀŒºÞ¤…ÑVˆæíOânB.¡¹kazÞnÝÕ:Ís‹‚ÁFkóøÿ;r-̤¯Š‡O@ÏÈ™Èb*Í4è©Ê•~–ZKŸœeW‹˜ít-=Ô—ýM˜wö;l0ú¼ÝÆ3‹ßŽÝa?÷©™%ËÓ–cƒÜâòDÕ&™V?9)]ß´j½Ò©sºî4ZØÑ'æŠÞ{:ùau½´úNVÿã<¬þßÓ$Õyt<&ÿ©<þšª¼J 3™íR¦^IÎÕ¯•Ì|Y›ç×ín×ív“clÎ|ñä®3a7éšY(hèÎ^YŒr"#Ÿ¬wññåûÒry!±¤ªiÝz“y½ˆad ™Ï®¦•IrA¯äÁ¹œn3qiêÖïÖ›ôé ‹ÒD½`ÆŠwcBÙùùO•)¶’•.‚‚µvZgn…Ù£–ÉîW8†À B7åP` ³Åθ™ãYþΖ4v—'|MÃlÙ™óáTRéÒkË•ÿ¤¬k_kúÃ'g)ý‡»ôòò^:UYþñôÁø1…GÊÑ_}Ðv‚0€µâíÀ=“€Âb ¶ìÇŒßèú6—åIÀÞÓÿÏÞµu5’$çWüd¿øøÅ.èÙ•J÷* 4CëH43͸‡fžV‹,©Í€ÄH¢Hœã‡}öØãsüºÂdy©»$D÷¬G}‘*+3"3òžñÅ‘;q{=Yơîջ᲻Ü8]NdSß”¶ïÜf%Û` @žk‡¡,UøÞ G·t{ïß¾u±6{äC›ã^ôkI[¡êY¡Ñ‰{H&_~QAà®m\ÈÖòKù5ž`ø1уöÚªV`Ú:ËW™ g°0oµÅÊ ™ö”2-Ji jÚ‹.hz±k>,)ôb*ê‡U«PøˆÞÖeÅ~­™L[e¢Ôë(ur–¾¾‰@÷é›n…û;ù¤è ýaááö ^|ó˜§ÐžYLcü†<Ùóʬ´=Äýzáãƒ^Q¢Z=CylØ®„6š(ž5æŒg‘Ž˜Áû]m(dó ­£A­g=ñ ÒyÁ…ã—I²Á<“T]PwºtX“_rQxP%ÖJ –º¤Ò‹¥¼Z(,åÿ1"¬`K‰5µ¯QV«Œ”û]°Èq†›Ì ®Ç`ð’…Ïf ¤0ž@'É;gû"2‘ÓW‘žƒn}üM¬:&&ûq"ÙyÃA| Kz‚X¼Bµ>ÊÆca]ç£×ø:8 ˜Ï.VóïD¬¦G¬\¹!ŸÎƒ¥a(t_ÄÛ&Æ‚S[[‰ˆ¸"hˆý]ý Š3™P\ìhjÅGÒ+Ž¡Ød}6}þ‚±#©eG.AÏ è¾÷|bjdrB•çÎõÝ%ÄZq1]–²`ë.þ%8Ý ´²`GÇìéâÓ®ÈÄ+¸^]±õžþBøÏ}tª©9;gç¸ÔC¡¼o+¤&tj¡Ùfë¼Õ×牠(¼”+Í¢öëM§ïHß$%"z&‰¾k6%„tçL#z½žà±ÙXœ ái=¹ò¯ X¸Æ£±p]j¡‡O3 Û6½  «óÍ‚Q ÃGú¡iu ¨‰Gù\î‘!?…xüç?É$ˆÐ‚7­‡”|â/Ž&c,¿$}EGõù!ÿÐÜ4¿g'2Ö=w0ýÉpUxšfŒôÌË•“áËhJy¡w÷ÅJºM¶;o naàî)Ã~wŸ¡ßgÒå4sÚú×í«:ZíÞ´Û8ѽ µøóÖ'§íq+È$]\'’©÷ j€ãðeWŸ/ ”•=+°‰äRðYcKfí~묦ÙqøTÇmo Û\bˆ• µúÎUˆ‡[$3à Ð`¸>…¦ðï¢H]×bÄŽŠqd¤`;Üçí¾Ó½Ôh Æá;Ñùq@º02®EŽ#¦J“Ë÷¬+Ü<ÂJÚÆB»=A…djè÷PÍ0Ç–¿:’ÞØ†aó7â"Æõ-›û€nGœ£ŸåX–«3û°tYzÌI³@ždŽL%|b09.l’Aܤ IEº )ÌV—·¦#˯|5ùK¢œX|eFr¥`à­Ü‹,¸vÝÿÙ}ÔItÀ`Êy¥ûöàË•PŒßçÐV.ݧvïÓ«ðt­]ûš.D8 òM"挫îsm]ÐÅ”º÷*U²ÎohÀ`ßð.n¿Ã7ŠÓ@ÅHÆjIªrò™øÿü×?ÿþC5„¿ôëŸù£ ?Ü·fð­?tš8HÎüŸXî†áç•=cböü‹ØÀrëÜéoµÆí?÷–ßSGæh'mm²¹âCÞ9—?#òW†"æØHÈîHâúÕB˜Rp¿ê4i7×#cx<ÐCÎ^M/HÇKX´ô;W­†g0P§"ì 'N ƒÛNN.84P ×xÉý£Ó'<4<„ÎÈ_0w¹*D£-ôÖˆ†ø=È…BÐN_ôT(c¾ÍñÆŒ›cb!ûìàùß’ÅJþ{ï“úORÇ ¶œúæ~žÂ˧ÇÿšÎ¥¡Wd6œ`Ýò~ôR® yø¤nóð ?YþÏýŸÎ—ð}>‘†‡ù”O¥óǧÿqR:Éç“·úøÍ%î–{°@º¨7‚·¡þî˜Ë{ÄÁçõ…oÛc N¡`ñ~b .¾“µ —L4…< ÷Trkß=j¹,øÎŒ·6BÀ¡«œŸÈ íŠg}ïJ»ç¡ØÐÓvº‘†ž™K[ªZ;é•gSß.·ï\%¥êbõ•¼Åó¶žç*«_Ýt-ZÞHkžHÕè( V¥.˜9:mºp n‰c[K¸çÆzB4ÈÛ‹¬Ïqˆb·ìˆµÎˆ¬öð@ÒÒUŸ ¤±®ÃáDz"%Ý:­®8#:I–„‰ÎháˆÆ¶èE™Á _’åpÞÑ«£¤üð9@÷ü¶Ì¤xNZ¦eRˆ?MbRD2­Z­¦§‹zít´iÔZµZ&„d­¦á#~×jI«kÖp‚x‘´jf²fÕÁû¨wHw,d-ñág¢ zkäÿ\vjS²‚´`²€ ”`¹Ûf—Xw×]ˆc™F×SÒåyÍÃoÁBŒá4U`!\AÌ…½n=Œhjþ Ÿ•XëðBŒ—lÓ\‚ÍgŸµÚ=\Á@—i¡™.]Þ~'&ÇI€ˆb€î Ó1"îô‹[—ãeƒ2t1yú@Zn™ßŒÈ2ŒÐcºœßyx®É`®‡Z`}^ÄՆܢHT²ënçSÉäXÀPâĹ…W!¨"¾ú*ZÇåQe´=z=Ú}7ú~ôf´;úat24 …‡š./h¼#Ÿä(0Ï´îm·z0>µ{}‡æ[t/^ÒЗ!ÍgãÚ@6µìZá_Ã2¯ÕÀµÙFòAÙ  æ,—¦…d¢ú”OB×KËø#·U¿®}9ã±.S¹¾V¼)òÜJ‚çkÅã"»„vQ<ɳ"ÿ¹³>—‘(–ËO¬Üy±:­"’¥e¿«[U]ÿfKï¦ä¯ñõ°9ãþB²–þ†U–By*«2ê4ºé*=PA¶`ÝQ4åuÓwH8¥{CY…í‹ &‚Ȩ“ÎŒ¬ó4"P¬MòÎl<Þ;³$íݪÐÕ0Cc=ÀÐPaÀKygЂΫw••1Œ9¨î+Îù¿Qó@þû—¿ÀàžúýïïçùÖ/V3ßÿûŸÿåmoêEÿŒTN®¾|€ùóTþÃßþ†_AŒñõÂÆÆæCIÿÁº5‹%nF ÓÀ.Úˆ€§1§…gzÒ†å‘eð?óÈR‚EæØr´Áw×ìÃoûäê|h?À,øE x¼û{=¿«¬Øbr¿ûµ¥=:WkxõŠ0ø ÓaC|¯Â· ߦø^sQ+ÝëÝ)¥p? 0Û ãPù\ õ¯PèÆ[Qk®È&ß]ö2šó‰À ;7ç°°Ô¶ßýøãî&ù ä@“[YØ Òå͉}~4°ËÜLxé3kŸ·üAsÜ8ì–`:¯HÆÑ—Îw…÷¹êá…«Û¥5[ggx¾~Öí\ñŽû/lâgÔ{¼§æø;OL`LAÔw ó•Aàϰ„ITßE£ F‡*¤™¬%ùÉË.Plµ¡CÂϑljRq þ•ñ­XU’©òööÎþ‘®ó¸üx­/%kú’žþ*Ï7˵ © ÐwÀ?PMÆx]“qðĪˆ÷\ÃJ”÷eTZ <²îMq¬± q…r@PÉX"ã9FêvÚçP†D²ôŠá8Óu{Ä ÍUiåº¡ð…±Š“cå“%}ørýòÉÕ\䘳LGe@¥øGDPQЯ³l°D¯óÿqߟúNÏGŸsÓ qmàµP‚‰fuüåßÚ¼.ÿ•ë/ƒ‘F wåÖäŠ8¸5ðo¤ y| º¤¹FLdxwœ› ¾±Ð4w'A"“ÖàÚQ”µ|è`»APýG¥çoåÆ0DAªÍˆù; pÍ:˜T—0rÂRöšƒÞŠyFmˆÚ5šTƒl±Rûèÿ•®ÊBSÔ)nû^ï|·»·+—SG¸­Ð°Ã:v±1ʱn {á=¬•ñÄÀÁKÃk‘+S_énÇSXó›‘õ•Àó‡B©{,Œ5¸»Wá;&“²Ù]$Å×p²{ ß)Ôx^äkt‘ÿvvõ7;åý­‚>Œó\ôáO¸g|ŒöXÎÇ$7F«Á|æj¼Ž’_Íßxù=˜™\Vîâ@äáÇòÑö›­©s°öĸ¬<9àh~"#¯aøš>#¦1CF8«¸Œìl¿§ö¸k§TåÝ÷ï§ÍÕêSÅã²R¹²šÃBfõ4CPcVrØ`å² ý0¸ë.˜°«Í¾«qw6h?– &‡ |\8645ô;7 ôÓ†å ¼¡~@/1С;Ø  RÇ,‘>ɰ`ï‘S°»Å!­ÑuðVˆomXº4È·Â&ñ!Ý€¸õ–Ez|ŠfA™‡Ù¨Ú¶íRÅ€FÃÇ¥jæŸL¼ õa~¤ÞÌÔÅüHý4?RŸ¾Œ~œc ­öË(d.]Ê÷žÞ ‚";rsË›õf&jÁÚœ'±ŸæD,º~_Ï“úfp\ZhÖ?Ì“z¸­Öfé’þÌŠ)d»¸¿\Ú‡Ô-&N#Š>(4U¯˜…ƒÕ‹Q‹#?†ÃÚaƒa¡ñðÑ/ÊáA]Â+ÿ6òÌGˆÙê®`ô1ÈábF9ôC,¬~hr˜cÃŽ.ŧYk3¢æ‚<^ÏXŠÍI…hÎÆ`3È`3ÈàpáõÐ{†zø0\9À!0¸ËèÕÜЀ]Om¦u ËÙÍPO~†Ž¼Ðö“¬&SGovöô£rEó›šJ•ßÓTbÉÃ+±Òr™¶”ÝëƒÞ¯Pd`ænõãS†¡ÊâHщ?¼X"ûXqÐ_™Z éõ¤\Æz|žgc4¿-tþ˜i¶Ö8ÉWƒ…¹È8fÙÆB‘ðãÇB¾6ëäüñÇÿ“>›‹Éa²oo¼þ?l’ËøiþVe%âE×þ®ÊE:I–ƒ¢v¬¦vB ˜ƒâ±¶º¦èš~§Ý/Î$jŸD¿1̘±h™xC®¬dñ¨oä»ìu¸ND±rý]¬ãÅJÚz¥l»˜´uTÈ·&£hw.- õ; ÍcO””7q´ÿbšåìTˆ’ªˆ®ýš¨³GëÕwªGåz¥üº¾s¸]Þß©ïÖßîí”ߊë8ò¢ü3ì‘ï¬ÎðkóÁzkÝ’ÇõÞ:Zç0ŒZ6kÖ¹Åc½Õ«_¶úx£ÇaÍ<×Ò X[‰N€èsÖÞÐjäw+™h’sJTÝî £kwÁ÷Π RÝ{F9ârp/êrpÒ%%^«ª´Î˶uŽsà³ ú¸lŸÿÜÜ=#þ)kíÅ/pѶaø¡[¬=…µÉˆ õ"jW4p ²’À-$ä^¶~’ŸŠ±Ï†eíñ˜1ÀJp®ëzÖê=…õàj•¯ÔëÀª‚ÈC¦ì~ûitOñž¢Àiý‚Ì||§«ê禜µ*ûYëà§ìdY¬ÏÈy þŠeDž —ÅälŽ`fÙÉF^93 ƒ¸*ý DÊ ŒÞ¥#òŠ-+*°A‚TRñJZ¢„ÈÄŸ¯‰¨^Å*Ë.¹´#ÑzÑ(–ÔØ5ɳÏ3.íj žº¦A-¯i ,¦›8xl ]Ê«|(×@#Ýô"—Ü1Kè×Ù³ŠzÏby#–2áb"Ι¤ô’\Ÿ”?’¼¦oôaÜ£ÒiD˜/P†yYГ&íé(LZfŠx®¡–^•i=ΜÖ=)nÝå‹ÙkBÖcóEïátÔ õ2bª‡¥|ƒõGÍÎy~7C±~Ûé6Ç€d ¼ÐUxRXÊyˆDž¾4´ Úm«”[RÕƒßCœúB‘Ðczš;w¯[èÂßÑzíÎ-¦óÞµ›d!í»ªƒÝ'ò'!Å7µ^ŸL¯Ü(cDJ؈UorÂw“W°,¯aõ#6¯„÷æ+ÏSÆ•PhN×®cÖq(–ƒVÞßu•ÉÉhÕ™ DN¯…¢rÎÎ0Ó0º ¡¹¾N|æë°âB'”ɧ†ªºx–˜«¡êõtY?á]Éù³UZ´8ü¥˜I >×—¿Qqt”¤ˆ-fwú&d FeD :g„ ßu2ÊŠnņ5ÀŠ4£€%9ÓOì¹~à?…€hvß„^1o*ÏË85PŒdÒè7óÉ+¸Ú,;™€‘a< #CÒ;:vâg{\¼‘Ãîç`ï²£Ýsb±Ÿr¬ÒôÖz“½_—7’˽,Ë´²œ©L^ ú»î÷Ñ4D™]ÊÞxÞú„Q6Q‚ÖBóO¦ë–Q²ãŠ¢ Ú¨%ôãmñùQ>³y·ò`¥3ÆlMXP‰`Ìð ù|€éÍ2 æ9 ôÃîQ]i&Ð ZãqaËÓÄד,­ÛùñûÜéõÜMâ·´çÜòΓW×}nu‰¦²éM­eÚð ™§áÑTû>žVÕ“½T‘Ö‘ŠÅ–N‰yl…îÆ†±+ÿS~¸/‡þEoBÝ}&fQ>‰,J>œ©|šSÁG0OÀtvœ–$ÌŸXÚ?}xÚK ´¦4“· iH’4Öõ¢FLÝÌkZd˜˜f¦†0‰º[㞉Öjçý烻{X‰IºR$\ˬ? è܅ˉö€"Ì€~ðÉñöƒ€,˧7ÞÒ–hAØ«)“ "C£ÞFkH‘ÛèVN»yÇÏ*ÅÁšn{« îó¦Ûvìž“ì¼ßÛ)Vu»1úõWî4|·yÜ©¥pF#©-­Êé¢-ļÉ&K§ƒlK/WòZèw-Zçâî¥ÐjË]¡¬8Ú!ÊâlpfÓðZ{ ¯+(0 Xù8½|'¤«xñ5liëT‡ëcÀ;¦=D‡³.ŸÑXFO€‹‰çt:–Õ³`ÙðÌ©³ó1 STG~,³¤¡ŸŽN“z¼g©1‘§æ SPÙLŽk?±¹|J³òp„y}7CÏ}gÐæþ–¦ÒZÓ!hp³eéy›¤æ)F$"o’²Ì¡¦INý{ÿùÅ‘5 ã÷g®ëýãgÑ€Âd…Ð+ –¸€×Fè©é鑯Œfä îËÆ9í:{½Þàœ7 –Ìu=d šû{óíý´ÂïW¡C¥ž®ÖH{ ûhººë„:•N¥Sm%xÅ—e îÙ˜æý[€R(¸ŠP[sð¦¿D€“ת\åeå 6y Ý¼‰®†6r“K0Yfˆœl'ûÛ«Pó˜ ¦ß¢*™¤BŽ|Ì<8=³¿g¼j—8$ö®HZõ`|ˤ`áß©§j¾ã4v¹ ¾^¿â_øsÈ¢P›½F‰Ô„¹…æ k°OI&Œ i\š2öC¹ ¾]ƒ &Œà:5œ(’š'L‹ì‘wåBžÖž§;Š1ÃÕq^謿ÏI#¾ 3‚˜lÓÙJßõÅ_vàæ4dÕ‘Œ›Ë#n¤Œð®´z72ÆX‰@Ü8P‡Tœ>#‘¢"Éʉ›J€ïHÚ`}ÂÄ’ˆ|Eˆ%aAzçͲHPq#AÉ•rIÁH‰4E FJÆ}r)¯ A90²S,à¿D†Siîï‡O™Ln5¥·z£:µ:Ii íÉC„ö´äHÓ‹äô…éDzaŽÆ¶í›·lY·–¨+‘Ĩ4s‘ö”¦V'D2¶­Ôe Z/:áç«É¥_&hšPþD?¥öWDŒÙß?¨ ?Ÿúô’IxZï®ðÁIRkT »ZÉ»7E®¥ VÈ’láaÔ¢ô„¯t÷Õü¦ 1@Q Í#5âžöYâN²{(¢°¨aÿïxF”4ß^©Ü•Mx&,Ùœ†tß¶tªh­Ó‚?3FšÚM< Z–{$êÇÚ Ñfâ’!‰ î³`9ƒeÍËÐyÐB/%©…QSêç¤&RüÛMrz¾’ìø@_lùQÉN¥Û¬¸™ö+n‰y(‘¿àä¥C“\ŒÒ¨¥Òs)ªR=] ”gîqÊIíK¥eé˜ÿ¾Q½¨)ɳxÝÙ<öZJ)[¼h>êû²7œkОíñ䨈÷àhï\á²’É1å˜YÃg›‹ j®†MW2vÞaÔx½ ™D&ø“ÿò.C˜ž^¬ëä}–îuò+å(D¸ ‰xÛ’8ü\¶Ž,u³VšjŒÕš•ôv?ºê¬µ@é¶/$õyú2ÖP¨bµš5RŒð5I8Œï7Ï­6«S3cÎ&Ç1çÐ.$$Z¬N´Ð>æ^™cÑDŽ¢ M¸cÅÀޱÝ`ž/[Ï®+Ü7@®T»¿d"5FA¦€åÇÐÅDDÕm;Ýñ1n9+Íry̬Vðœ8jÚœ.¿Åt¤AÍ ò-fŠÌ$xt¹›i`ÿP¯ƒq+@š+Œ­D„It‹©Ã·îzÔ§|à}4.v´«Ýk…nd<Ôá]šÌ/úÓn$©D¼ŠŠniDÇZÉI.êÒèŽI0ïnÇd%õ<ÖáþGÝãÊH2¸jhº4™yq¤¤ƒþíIƒÞ11@]âƒÃÓ3îM9Ô¥:ã£"QÄÛ™4t[ÓŽ¤ÅÈÅ…69ÞÏnÐxª * â¡ÉÛ­]¬ÂB²Ï,¼@÷X£3˜Ö$ßE`Ô­¹ß¹u±™C=èþ2XÃóÎ ”-d@—8·!Ì Ÿ­/Ëàj¨šà m€êr£Â…™ˆÿvÇ:r‰ƒ¹dÌ›W(ä]«ÓÞ–HzkÙ]—rå @£0:¡\h†dƒßûÈ&"g;"l«WÜR¬¨T+c¤~"‡ %tQîê‡À„ °9]ÀÃjBÇä}áÞÍçëÔs+¾˜(ÁX4-Ч÷’Âé½ÅSßM¯\ð‹~ò¼§|ÀÏJ)iÙ6­- <•ìÅOuleÕ6Ò!0°{úàî™9L@Îá ”lžbÚ˜QÎ{¹gùS„éRuƨ÷¦öïåÝÝ~KÎì(§š^‚Ká!22\üë{ƒ£ù:+X1‚™K8˜ÞÄ:P8(œµ†¤£tRÖ’0M€xsDõKÈš·üusÎ’"Ù:ÐÞÚ-¿ÙšH¦0.Z1÷¶ÎÃß­‰¤;ŒáMT££†Ï÷#srõ2Ó^šFîYqfÅ wØ›¢É*2*ŠÅ$v*mG÷ ¸ù\-ŽÄìˆZ´©nÌP 2EîyW¬DÁ]ysÔïÞå³"ä£ì…W'îtýÈäâ´r>8ùÖÑï4Ö‰>M…H‰vN~L73²›Û©æªû$ ÒÎÈHx„,6övDEð´×1¸tÈÆºWô´VÌP:F§cs%%QsC¹úŠX‹víþ?£’}™xüPì@úPØqSnÖpžÏ”:³s”‘ *“ÞÇÝhãQnEÌ4Ém[1Ö‘K®ì^‹Á/ûà(`µ÷O ¬Ë%$ƒÈP5cèLLÆ[áÞ$ðx=IÎàWA,S–>Ï6™’×”¹ÄÊZ²;˜+ÄV&R©ñüC¾{eg¿”ç»­uãüt²»5A')ǹ¬Ü!ƒIú)ÆÁP:)L'%¥âþ §âJ##ãÝ 5_ tïk³u¸·Ü]ó÷DU+er¼æDIg²ônØûnÞ´nM>f§ío^SˆYÔñø¯+<¿ÚÊá<×Eþ’³à;ò+ ;ñÒ%DrgÊPçÇ î_[®/2øˆ;ïúÿq'½(?"c© Â8ÄË9؆ã)Ã÷€çàü‚×›TƒìùwNƒr·NBD¾Ûr„á ¡à£€Q} + N÷´NUå vì]iá¾/DýbŠjZww¬àµkL¬¢k”s8ÇEuÉÿqÛˆ5ysýV×wq“ @ãuÒÕš–p3Co¡I!g‹T›0O5­:Ú>²”›–;/öB*h{½g’’™y¨ gïÈ*_U~‹QYI:Õ΂²¤h÷¹²Â$¡µ†wŒá5µÅÌÍLæ`Ô Íd³)(A¨¾áö!Bþµ`#((3Õ©±WkÕ, bœ6`WK‚¸/0+¶ ,@†;v eޱ7óžÀ¢îx‚¼A»ÇÉuWz´ ì¸+(dö Š“[íR0(ç{0N+ƽϖ5ÛêìÙ?Šÿp~ýÌr3u8–£õñ¾ºùŒè‰.5¥”n'OH¾np¿Ùצÿ]Š]ö©C|-»R­táuë.g°‰Û熪ÔÅÝ+Ð&>8ŒëæÙ³ËØñö–±ýÕkœl$.¥¬=%|÷K}zz:WïÁGÙê°C ØÊ?4œ›>З9„bOñC;žØÉì§dé$ƒ‘ÈÝ3}ü Ýê»sûV²ˆç_6«eˉj¦¸8)TÀ–oÇ4ݳœº|ÀÈ—* 6c¸äS¤¡¼eU  ë³Äa±dzçDîîA;©ó$$0• ¶ –Ëòþ@ÇŠC[׬yÀˆ#ã.ÖÝý@Ï„5Ýà´›èÇ9¢‚H®ÉMÇ㤡B+Ñ»M\x¯&±ÐÉ• œ~;”eBÂ"¦$)ñâC4 ÷R¢î%¾—g#DôåRÄLÒÇ»ãÂÖÞ~îH~}¦ÒÓÎgø¥9™·jxë|¾4Ž:UŸ"µ™™-ý°´û<ÝØŽË÷ P‡Ê)XFn=¢†÷HÖМº"ˆðí&WUBå6šBª£ÍÓû¬r¹ÓhVpc½ m~.—Ìrš‰j íÐîv{æÖçc /îøîçŽ !êÌ.mN¦Ž|Ù–s{æºÛ· mذùñ± ›7¯Úºù±Mkdž·­7\»R`¬9ÈJ†ÙùœÆòu÷(¯»Kï¤ ñÅ þ‹šW :%ždÁ)q´šN‡ŽáãÅ‹Üzš­“”^È$Áê â§Š°E9ÊÌ‚µb=u?$ËDH–+`gxºðƒ{‘.®‡ \¯z•±^±Àžl]ÔÑ% 5|ñ®“°R¥^‚ÕPI‚r0M`©±ÜMú>0S7,PŸA×»¬jNñ寸 2%daÌ Ý™dŸIl-£ö´G 1ê4lªa{PCW‰Á®ÙÄ×f*`Ò¡û¨ê,áÞ€ˆÐš’5Ð}kF&£É¡ã<èöKgÖ[D•F=Öͬ$CE’ä¯êŒÅÞ÷+ò*#.…ƒ´Köf"‹Â½_ì›DjË[3h ¹©‚›ÑeJuhôÌ`G!µê$~ 5…»ˆnúöEÁ\¸Qò†Y¹E]¢ åãgŒ¼Ÿñƒƒ6c‰¼sëAÌ9ïæñ·hÅÙðCü9G$ÌÒXè´åVB$‡öHÄaÃsºfϸstd/d{ûúãs”ž"ß …[Q7ë (erÁxeHJr…}hm¯6p]+ÂZ˯s{¶çÁ»¼Éƒ‚aíµPM«6Ç'œ&£fs›¤ ¤Änªñ¤¿ ïMÅ´ézŠZ'4QSä4B°–L–êänjÖ{|b®©&[gñ?ßRŽOý¡«£‘ówÈ±é± Ã#S‘ø£Ê;'nÆ  ÆLÜÃt`ãï ñ::^møÎ2öücuÄßçˆz*<…»;t7/šI@ýžs°ªnV§¬nÔ߯ÁF9ºP˜lß;ƒ½¾ëYÏù&{rÎ ç_’A´‰’¡˜2‹ü•;]?î0\ÃwT'»nÜ81:!–ã,ÖÕ>}Bƒ‰+oϲ“.S§“‚†–% ³Bf¢î¢еx\ç••ß³¿µvöåÕAw.¶îEZÒƒmF|X¨p Ñ™ÌdÅvð#ñd<κÈ×ÐÁÏ-*ý{n]7æ—tcÖôq%,ë¥|‘ L°6A&>ÝÕI´¿Ä5{ÝiÚž‡_´ýÊKÌ›R"¼A¿Hi%ò0 ˆµ±´Ã8ÍÄ3éC±ýét6æÑ#ºCßÓáæyL…ovþI,ø/·zÜj¬Ž;7þ°atÄc~ttïxhd¿¸ºyÞ üz¼œË„æƒF€ðòOÞ¿1»ã^v£›ß½õ£ÅÈú¡•±³€¾ ßéHnüÀÊÄ¡;`7ærÚ9²Öq5´“8ÁÚ‰·4 á;‡àküßÏ}ãøÌ"±ÑõcHÊÊòòûn<ÁÞá ­Å^fáûêÝÐÜQŒlx\ݽÍ uìêÚ‰Néá“=xgcÇàÒd,v ™…Ö7–j;S?Õ,Á>2_«î«@…LO6'§êØUr—Áþ(Ëx·ßá«c w˜Ñ¯¹§öÁÞF3&gðzC} ¦auÍ0sjý ÕøÁ¯1ƒ-È ŠåÁÝNc…ê~´§&@ ˜ ÜÖ ¯Rž1¬éšÃ¬"‡œ%fá£Ó¨WÉ"E¹´6ÞÄÌTÆÀK2ÆÈGöâÖ½÷+`ßñ@7d i£ÕÝfÅÙáY˜®]¿ŒêÎj÷@7šž4z¶Lwª¯;ŽÝP?Œk!´­Ý±Ï†´±©CƒD $äna}.éNÏ£ºi,Ë¢¼áRéÕ=âÆÂïP¹<ˆ s·XšÙ…2ÕB…&Ñqf8ÖÍí‰Þ-ðÝ$èNè¼ç”Â<kuè#Àªì–аÃÎ}µGx¾_YÉtKd~Ò”Kš¬Ðù5e3u‘z ë,_vÃÄ ×6Ýݬ‡<]zfÆb=+ßGs®U|¯Ædµ@FuËg–£ÎÄ ;«ïx¨ )¾Rg½LãzíÒÇZ^b,U›5Ç0F³ªxiÍ<¯Þ3f4ÙVáôq–ÇÇÈýÍçÖaÓÍÆRƒRÜc.Ö4˜œBûæÜ-΂#ÚQ§PêÝ,¬u´ó-€Õª¦E¼h:†¼£€š5 dý”\¦ƒ-wp ÷›Dn]gÒ]?h"ëñ^Cž[úCšÐTb‡ˆæºÄ|R¤á\; •؃ùAØo/°»5úp3|Wvm¾¸ñ[ç¤3íZaPjUfÖj„â¢(C¢”hùÂÏ"¤zͧz34ï·4¯Z==stç"‡×‹XúE‹Ó3å$ýŠ‘ò>©†¨êBãólÌ‚T§ ¡_zßl$+ÞÐNØNWªÎ(¥[bdvÀ&·óx@Iƽx ÙqÏ…¶ê«‰>¹_åê”U s|ŒRž‘”cž”"/Æuv߀ïQ˜¹šÁÝŒ1Á$”¨»»ÛgÁp¯t,GË[{wN¤¢¸w†ì|Â<»D Ì‹ zkïuE£ŠWŸðpõ‘P[žm)Qn‡³«Ò Œ|ÆñaÛ×۸˲‘f­JÂsAÌ_IúW¡ìX£ D[jXå²÷¹Iµ¡,M¢®*ñyÉeòwâ­””Œy¾òÈçåz#geèdÿKJœ82jIf檟‰«–d̑ŗ&ÙéB²sùŽ'v.•';Wy|>®<„ÛœC­Öð̵Á–$âúÂÓn>¶Â¼Ç^ç`´RîOW2‘ó:Š×´õB#¨oð>Ðßd©òsVáÊ{­BÆð÷òxÏ{ÏõÚ¶ê~ÞmÃÊ{Þ6ÌGü¼—•÷¼0ËýW#îYÎÜóÊñón\ïýý¼Û†Áû«møåTí©C÷Z³m+ïÞXä,ë̺çMʽWúBXL´îK‹ì^–ºC÷W#|ï ж‰ˆ/¥[îösOý¢ý÷±©§jÈ_dŒ|o}¯ òHÐÎÅ‚ÝÝݾî傞$Κì ;¿¶ tí…búi¨7¦c;*èÎéîÅ»åÁ‘£ÝRÆÝïÓ"¥H/b=¬b…–+Œ‘ö‰¬,.ÄEoðß²eDË–U¬éÆÒeËðò=~Æ[=Гp»J,jK1…±1 fÃÈ$€±ñ#FǺKQd þ€‹Ÿ'ÿ!ì%Ç;v¬q‹Ô²eâÒÀò;–£MïÝݱÑ•÷÷CñBŒ^Ò›ô bG—ˆ Òñ ômn|OÆ’£Iî_ÞîGtOp1p–xYò—Éz¬á˜ßž,óÚ”$jºÝƒ<Ó Oc¢W3Ü2GïÊ0Cîzt¼6ã·iÿ<ü~TQ\‚H!î~—ÂvÑ»§|ÕO<á•Öƒn8ÞÕÃÆ$ÅÆXŽïض}hëö5ݰ,çö8a™]ç>™™…LàY(h‚t• \E¡º’—iw—1Æ,X I9îýÔ³CÓ {Ø©/)&” WÀ!- )TGнÁY³Ëÿ©~%Õ9–KÅbËœ³6¨|À/æöÇ~»c? áMkÓ3ðþN”¼'yŸ¼Çi œ€u>ÏŽýK—Òˆ=,gä½OHÞ»Œ`3z8@7h£GÞÛ6ob‹ØSBYp™ç¾Rºe„¹ªs¤\­[ÆŠ¡mÛÖmÝ>ÆmÓWز` ñ4‚‘Ïk/ÿ§gœ ŸvÒ] ­²wùÐÐrÔdQÙ í¹_@·••t™˜7xî“fmÊH\ê¶UÐTÇÚ²eKÝ–?º®W’~—ãD^ê^ïèÆs½ª:ßÅ~Q*l^a߸ôà@Ìo6MuQðGÌoÀ—g€“ÇéMUÂc–}‡AªJ¥‚(0F€óv€–w<R‡ÈaI$3å`iÕêá‘ØŽ'b˼Ñ;žX¶lh=þq¼1:Ï®3Z¼Âµy¶É >5íÖpù†o¦WÃq\·›`òwR£7¸ƒÀoñ?4,Ð)Ê‘A CuìwÝæî#9fN®xv‰ìœ"F§Ë ´FcøÁW<´ b1ï d©ä=‹Æ9Ö“wk Ãtn€έN¹qïà ,ðß+c¾áØÝ¨%1 ŒƒËb2‡ü­õ°!X6Qzr_”˜oåÉJæ’oâò_°<Þs’zFãÈ#½Ã <8íc“ÔÓÔ¾¬‡7o^;¶ihãº5q sÁ<4Ù`qdlKlŸ·fŽdìN¦ç9ñ=R8ªHËŒ‘f½QÄ[Q5ø§ÓGÛ§Pب]°[òN¿Õ݃n¥ÊT³atTV÷Å–ôL£`è:O“숡–ˆÉé 7}äR2;—§Æ^:VlÙúئu±éX¬{åÁŽî•1š{1zâ¬dæ:z#œËr »bšzµ[3>G÷rMë ·æã´ P Ý™„ÑPQà¶7‚Œó§ ØtÀ8”ïr-X+ÐåúGÃt?´È`AÂ*IóT`äÂJ“ÃU+ÒÇ©pµŠ|ÙZ-’Ü^îåMÂr RmÑÉ­ØôAÄë É!0)wmœ±dÌ̱ÆG“Ü" UN[é>L$ý»ýiȬc0‹š´ŽÁ^òÓ‡~–¡£]ž“KV Ò|Á1%÷Þ©––ðg_‘ºâÚ,øý;ãF°¼–ÁRãF.z‘‹n䢙ž't=¼eL–¡yÏ™c:hœ'V™—ÚÝN ë YãèV¥kq}‚Lc:oÉD¦ð ±T¤A7l¹|n^ñÉå)Cêqt :ÌÑnç1‰s©ƒ(cÝ—iò2sýt£?1üæÁXO‰Œ×JSõæ¤Q®Ö¬I8^Ûk•2þ‹÷ïuãQyõ}&bŸ±®œ'ý.ŽC¬òÔB“N ¨Ç2©»5’Íø·þ±,wŽlùÐrìfaÕv±àŽ—Çò1S°HœæIîBa«Uv°9[‰! ¼N‚«,¡Ü…K´B§È,_Cî¾XåŽ*\KÒ½Ï8¶¤7¼¡Î$€íŽGO-2 €–4ÏØ<3¥ë¨š±Á0~ŠË›ç@–ÚîØd¼3?´ì`ë ¡ây8K)õHÿå—z¼¿·è"he⊱¡TÇœC?u§êá19¬x[¶¬AÝÙAصø{ø—oÙ²ŽŽºrVªÕât^¾¶*¬«ù3Lj^*÷®’8ÊS^É ¥Vª”ôÓ"Oe¹í¥ÛÉ:G2‚v­XÙµ~Ȫ%R ³‡V96n\ã–%øˆËR*LðÅòM›–?¹§;ǹ^ã¾qãòÎTçªM›Ö¸%Ìw¦ó‹)j\9*yŠ¿ì õŠÕª^  ¯ð*°ø¢ÌrÓ”’”ë´ZYÏü\ÊzP'£^‚(øuCÕ„ç)“ç8¤€[xR CRT¨úYôÇ"++“Ü HÂõ½àûd§Æ´DIÊýC‘ùGE"·°z+@²”»”¡¡å‰N!bùŸÏî:9ùö y-Óî¥ Î´zg2Í/q͈ýrR§ïR1´`ˆn”õ,NlÄÆcÖwב"™ÆqÖ¤xz‘KÑlAE€±[󤶾i,ŸÏ» ònòó®œéš•RÌŽ\2&¢²þ×RŽA´¶‰îôAhoÌP÷g…Ð8ß商=9i˜€O©Îtgåïqæº%y‰ä:"ygÇu=òVi•‘õ²ÞDÝš’ï¨Z(— 2Q^!ä•5t¦'q¦Ã&«²9.‚±ò³É{Yþ©æ}°áuorZçs´|ØÀ˜•5©û,·WM®±È7wŒr=k:*i ðkg–”†ÉÿèÒÀøò«8RÖ Ê‡FJ¿¼d”Ç#,…É5É{Râè=ÐSfÍJŽ¡kr]/€1rCÏ£UÊàX¥ZiíTò¸ E^L§“v-¨J”Á &Í:*l›ïø0˜qÿ‹/Kâ·,—¸þ3C\ÿ¥ŒµŠ\µ0­:r9“Œný ŒøÀ¾R¥þÀ€§±JuŒ)ÊEÈu«É pùÍÏÏ~(Ç’+Ð* âPZU—ÅHË#JÅkßñ©ÄÉß2£ jãÄ¥qÅxxëæÇ¶ŒmÚÑiÔ'A¹ì¾tÓvô¹N╰ÙëœÈw&ãz½rnÈ—øË\¢Î©Ê““ü8ž–QT'>üSpô8äøK\é#SÈ©¼Ù€:(”ÆaMr]—‘³R¹¸ÑAßÛºióØð¶8J)DåOAŽ~âz(é)PL™ðœÜ°ŽJ®lwçvüëÓ ‘™‰äÔ:)‘¢Âå{´_¹”s7€{Þ¹û5ˆoRℜŠcpf ¨.A.eL¢–S3 Øñâ|nbwA4 Iü'Õ•sÿ¤û§QçŒY=Hr~Rä7uÈýM».ñ”é8ÀR]Ûº¶¥çDˆß«9¹½Ê%ü»añ± ´§~åb¦¬ï´ŠD‚wcÚ'ZR(4ÍÊž º>C#0©>(c•tE*ÙÍ”•Ìz†ÏÂev©9²Kúü‚Aµ¿¸‚ÖŠ—؆óJº..—A –в>° s¹Þ¼¸‰]¯“ÁmÜq›nþZ+µãü 2ýÛ— ­ ò³pIS2ž¢•†© ®;IdÇû5ö8^@·¢1˜"êâ•bˆŸÓ¨ÇzxØ‘®Û´vÝZcä‘¡­C#Û×m5F6 ã"ÛŒŽÇ¶o[–èCÃç]`×(QÁ.œš]î;PnxpÌ,tç&ç1˦ÇíÑa)‡Öq 8ЇîþU„›ÄÎóH à ̓0‡™›Ú‚™»tx)Œtˆ±|×rc² ü¼ëÅ»ËWÆ"öÈІíc®*ǰys‹Ì&`t]È"&bæD\Þô×®a0êÏÜ,äŒ ®#¤ÜFÃ$6ìíaކìE Z\ý .´V†ÈÑ¢¢’@°»óGyý<øŸ®!®Èì¾e2]h¸Zpª-|¬ECŒFvß“Z´{ ‰ºˆy­üêW‹®—¡ryÔÕZa¸éÁmÇÈ¢7]#÷¤õP(0k¹Æu—E×ÐÂëgÎG®¥®®{QŽ­h‰SËH˜–þû¿ï…–î×®ZÔÑЮÑE×NntQÕ3ŠŸGl=¬Ý‹®Ý‹¬wI GËFiT(,RÕt¢!ò¾1krª1óKoFÙê$)>÷XE‹oí¸…ˆ/\nÍÃþFºº†»¥Y\£'¤.q¦ð=ÑÈîEPIHw4؃£.;WÈ­…¦M~±õ’_pµÐ—Û’=ûfŠòŒNr…¡‘®u»êSÀ´u¼{ÿbwQ¹éx?š.ñ®~$΂«+ŽUoÙÖ¬%·5âçuø™ø¯Ê5ܵŠ~E;ò!6ø¿™ ؇l»¹\X|aÑs€lbß/ŒçÂÏ9ŠBÏÿ;HËqV­ÁUŸä&\ÇažÒyòš…EÎÐU¸Ÿš ‹m:Á(ÔÉ.sTk….'»ò£°¤ì*,v…½¯µÒõ«_u-vÒµàêèÂ*è R` ÒXt%€EÓ]@”ìŒ.ð«_Å/÷±F`“ŠJ üÑZ¡Ê Ô4B¡n´V¨áÓÓ»ðÕî€üäGá8¶¨b´0¢Y ½‘myÅAçÝ9Û)*qqK™±,ü`07$rht7~Þ-tê!Z5¹ÍDç•‹lç˜AÞ¿çÓÐq¹›Ñ[+G+’©C‹®Ìu‘µc:Aôn a…1›ö ÒÌ¢êk:¨L-øTæ40gÈmü€ß÷ p߸/f‚´ºa³Ž#¹Ÿ{ÃÇÈϰóÇ]]Ã]hbpíðÂÑú‘•° :˜Ë~ ¬‡Q­¤¢‹ÿøj±{ÑQî# àn6¸Ÿ±Â‘O²®®Êh,—XT-‰—¢LV»öË5—?Xð›H€c$ʇÊ~gFw¿sGuÀõY• £âiWÇ3÷XÉÓÁê–› ‹¢xh P¶~L³Ý?ÿ'_Ç~ ÊŒéÊ üŸs=6–Kô‹zì@rq-[úy,@»‚{/ÅÊÁ]a¶(|ª Ž9upŒ©„cN- «†c|=«´.‹;ò[àÜÙ: äþpîA‘¸S Ö(²; Í'B¥ ±Éè¿’Á•E¥¼ˆ³eÑ»§·:eÕÐ-Ä5 B©˜‰L”b»º”ÊF¼Ÿ=6Þ¬°…È€4jLÕ,Ó* õ;‰Ôå*Êx‹ìî¹—^(ávsÒ©eä"+nÔ)ch¿¨‚p}l)+Uö‚rIM2I±r…È{RÌAŒlûbprüêW¿Z|m@¦¬\|) SVŠÿþïÿ^|) SAŠ9ˆÑnÉøo‰‹j“¸ì]ܳ|ð2áÞeS'ò¿ú•©Ô&XÛ¤þTÔ,#n‚³u£bYâÌ ¢×JÅ_>Òzº®‡"T¼W…M· çÿû¿ï_q½Òmº¥ûþÕ.–v÷­v±l‚¸÷­v±lBÙíêºOÅŲñâîÂòJF¸sÞ”+tÍ?p &Î6ünË-°qœÀtANN¢öãDíïÊíDoÅ93âÄ„yÓ€þ¥n…fÞÛñLw“û¯~ïþeÿ…\µ½Z‹Ž]ûGÕ’Â[ ´ÀD]ï4¢©Xul39.! –5Å•ßîîn_"ã ò4fø‚Á¯÷*‹Ñ´m»ªémW5¾8¾jœŽjöÿ*ªY›jìÝÿ+ߢ۵ù¸÷'~ïÉ~ö8Ån_÷Z‹sþÙmØ"{vÛbÕÊ1 +¤ +¤‹Tˆºâ¹RmLàZQ©— –Ñ1¸ –óÑZðÝszÔÝT¾XekœxçÄ—!ª]dö±«Tïrò¶VÌ.#÷¤1*x¼ùU ½V¯”ö3mQ±ŠTY7r|MGT‰UAÌ £''°H°­Ja¡G—ʽIBª^û2Ik-z6²èaWø˜Ã+DþŒŠü˜´ßÍÃL#™6Vª9™†Ÿ$×zµ!{Øÿ=99¥…jË¥y¡&Âeó6s 7$¹'Gç–ÚÞ9¥v——ÜQ?½¹'c‹)D‡'D ±ÌxÜ2LPYÞ€e§Þp8™ [8ìh`ûdªÙHyÅŠšL¤Ù67Èhù¢fÁ2Y­D"®t„ŸØ,ÌSÁGº  ƒÐt.L²³\¥u²ÚX‰ÄÔY^’¤eØšË2Á>áaEJöþZ®ba¦@ͪ4&¬z — §÷‘IÀ%wt¿¤Ø,–Æþ˜'‡q/åpËt‡èœ+knîKx‰ :h]w Y´: †WX9ncI›g»¦Š±ÒèˆIl¶®¢›Ú¨¬0)f\÷”1Ïò6–·ÞçsòKH,B«‘pû ‡=X\ö€gßeÞ_§ÌI,Åù¨=^a© c‘ÊÂ-È“\%&a’Lò6 ‘¢TØ@¢›Ý²´,ÎÚ9âîHƒ„ð«p®!­À´aÓÏȤV‰eRÁ„HÄr„àíÎ\á~­  w! ¡†o¡¤#­¢+ /a*{÷…„®$‚@yj ¨)2» bR’¥u;ð=,¡B¦THJ^È¥jÕ8_ØÊ²4 "W¨Ì¾Ç9MI"3W—°oÁÃ]n;]eÄëÈ5äÆÖâŠçvÐD_¼¥ Epá¥[êIgü z¹ñ˜šX\#nÀ‘Âåí˜@¿©äÖ… ’WA K7·Ö‘©I0]šlNk óÐ\GÝ5ÐV"/ð§ã¾{„?1æß¨s÷y®â_¥èõ€=Lu'YÒ„·\zË´½ôæKà.½y‚¥·ûZk°° y#j-oWk>{Jk„ûÏ@kȆ¼/Êš/Öšäv¨]»ðE…ÐÀ0Œ®£=ÓÓ-w–$¢oj¬}Nû¹s”ì«QcÚ;—47/¥¹u]ˆ+]l2SsI¦OßaüÇø7˜õÊÞÑwï@Þ>÷J²ƒÈw·Â79¾>yz÷Ù·´Ð{”<Öh{Vë´%æ’6Ÿ>³)‹l[è­_0œÛ·l uÌç7 ¶Diû«œ¸t:_û¤aÁ§9åÖ-Ø$6¦ÎðZ¸µLå%Y¡Ÿ¯3`˜<—²Ö9Ö.76Ï*¹Äµ<_¦ÂŽK]X)i›ß:žŸsa.Gìl 6w%ÈàÎUX‹û7¬Wí°ÚÛN¥ÚOWßý¡õ·‚¾Ÿ©ÀûÃkp;Eo?[…Cvt$•v¤ÐE9¤Ah«A¥›ƒµÅ‡.º»Ñæç…Ûµ{aã 6»2Æî…N@.·°Y[à,`¯ÔÞïZÐäă<¢Ì[r,rÛ.LIna“’ëŠ/xí]ØŒ.Bõ]Ðê½À›7ùÚa S ˜œ®ö"]ì-l–`ú Ÿ†Ü§!·XÍTnHbZ÷²¶Ù;hÔ­§šä4VÝ[*Œ*‡èqynçB³Ûɰ“ŒÆç—Ý~†Ýà Íîa†Ýú…f·ža7¾*±Æ§¬ÂC“Uøy?Sr쉹=r*{ðóU*ÍFbÿ!rb&_oNwZÓsƒ§‰I6ñóü|?ÂÏÄç)Üõ=£"×8ƒÜô+E*-`Ë™X‰E½ø„¾ФÐY ²~;";¤1GC“S T‹ÍrÙ0«{­·ÐP©1‹d3_o”ÍZ˜Ì7‹E«Ö5 *0ƤUiÀèËèB§ ­'‘ãLS,`NåR…œ EI`Öª «T©7@¥Q˜ äŒÞB‚.vc¢Z·zMƒÃO#¬Y¿qÝÆ‘-O8ËvèíCÕ&¬$U˜\D©ŽGJTÌÅ@eq/–«ûþ7~Q,Õ àî;£mùìAªPROÖ˜c¬lUÆ1‚íá÷,S5ko©Ú¬{ï‘’ D P.Ïõê¤E U7&À^Ë4§š5U&VñXµ‘ò5P1'ºa"!9È¢ *¬ÖèrZ"Ì1~ƒ‰{ L¢|-餒ïxìÌ­&ôV';V«UìäoÇðig«˜»£(2ÛÐu¥ûpݬÖ`þYðgFF#XǑɽ¤P6+¥FÝ@§˜Éáå¾¼Æ  _G÷¸eñ•Ϊ0Tsm(lñô´ÔšAsȲߗäL¾99ÊÕÊ8Zf\µäÍXÇÁµëŠõŒ“†3oÂüKåÆÊ%¨†ïV®DvFÜ•]©˜i4ºŠ•(Ã~/ÑBR‘ûLd%ÊDV+h Æ3°´‘â±råÊ%¸["ò¨Ø\#@‘t"{”Œ;̓ñj»R£iŽí„KLE±j|Œl” E€D› ó¤ÆÆ¡­ëaÅ_10eZ LM•-'kðó~½xðÀ ùÉý yD¤7®b>¸$õ®L=¬ÝŽÂ7‰oP³•Ù=‰ìpªSìÈçc¦«ù|Þ¤Ÿ *ÏçŸ~ß•…QT5MpU¬FvÀÈ´V±:Ä"Öz¿U«vÊR=ûZ–éø É·húoí¦KÕPÊ  ¨ÑïÞ0@Å,ÔçÍJ.wë[*èÃ!QºÏ©ç` ¶k¸¡Iî1v³eÝÐÖàQ {AÆ1QèÏïH&ç–SPÆÈƘ“mAªŸ²†á²õp¨…½Ê¬¹öûðpà GZˆQ’áy'©² é£yŽAG @UÇXÁY'ϸ€W¤L›ÿ,»ƒ¯ÇÔ†_-àL™ö¼Á"p 5bTŠ5§ç¨8åü Õ¡ ’‹‹<²Sd8/yçë›Fk×mzbÝÚ‡6oY‡Œ ÊjÚ†a¾-ä Ú©¥ñq²˜ÊYP<1™JxȽÚh@4™:Ñç ±˜`Ê]ãÇñ8•Gë»{«{ ¶ˆi…£HÚu[·nÞê/|R_É;œDbz¡r\ƒTÑ2rÁ9f…šôN#_…-:öáƒnÐpR…—È꬯B“­ªBq©I˜·õ£3 cåõ¦˜ÛðÉæmÛž’WÔ’ãhó^Ô)‰hCá–UH•gR¡ùª\*¡šíw§ ïDUm±ÈjŸw¢óh½EUûüUµ÷¢ª}þ‰Î£…Âwn¦c$¢ª6e$¢ªÆf$¢ój…F.ï @VÝn\æ€ì<[ºaY?G8YuÛ8Yu£9Ùy¶¦#w´ @VÝþŽÜÙ.Ùy¶ØÃxÏÑ”DVÝÆDVÝøDv®£ɬ¾|zux8W†ðþKM¯£š7< Ü-%ÃhzuÀ_ôäo1ÑÓ«®Šôô*o «¶¹O›Í7Õnº Ü Á%}˜[q` šóô*‹mz•Å6½ÊâF›^eq]Ã6ÎlW“ØUÃmM¯Î;Õvº-쌋͕—¶¦W‡%Ê™+vÔéÕa‰ræŠí„ñÖM.ìÂæÞ´j ;ÝvÆÅæ_¾¥‰6IÉ·5m`Gž^åÛ›6°}C*îT«è†Ô‚M»îêhÃNŠFõç9ñÚ¦Í]ñóOõç9õÚ¦eYñ @UÕŒ<5ïDçÑ~ á;7Ã2Ñyš|›)‰è¼Ú¨ÑKüBÐU·kç0ý:ïdçÙËü…™~«í‰ì¼M¿.¨µ½»]ºêú\&` íŸO›>Œ÷ýHdçovŽÃƒHdÆ mN¿ÂjµTh.ÛØüË󹳘!Þ,wÇ·¼=@Ù[œÛÜ–Üu‚6ÃR¤µêžÐ&[œ4LMÉûuÒLoikþgŽØµêŠ G¾¹)À•¯ õMM¹ni‘C(ZS`jèx¿y}Ê2K Œ·šw¡j—æY‰f7£·[‰®’hñ·iå6ÖîÌ=†þ4 ¹æÚ\Ó9 V(vîܹvíZ)V³ˆ×À¿õ܆z®¹-WÞæÖæmÛŠÛêÛêrn›7CøMî1øÛ¬æÊNù¬nþ ª¤U9¯©§ Låʃ°=oÉ5·8Eç©)øo þ#Å/—sMX ʹ '7Ur¡¿µ¼±²qÓäd¥²qã¦MRÜÇ€‰À?{€ÜsOnÃðzÃè‘{l½£àõð?üÇÜQö`ë=ª3tŠržzý-á¿’ç_ãgü·ô”óõ1 >ùk‚ƒAO>úkç¿§ðßGýëRéÉ'gd¼áÿ¼¥¹°3rG®ÛQ]Àgâj–Ù¬Á’‰O½Õ¬F³VA’)ødÕQÜ-}'eÛ¿ó0ÑúÒëT´K¯ÔÕí áÂûd¢—½äÄ¿ã‘ÈiŒ×ªÍ)£ÒœÌ[5bTÀ¤%2é ¸líIA&Z =–zgëTdçš Dšæ‡áäRñæ¨>67`L£ƒdvi¯å^l‚XÆŒIä‹7•jb‡•j¥Ëš.Õ¨±„M±üê‡<æºæ ØxLW&ùfÛàê2%|¶«P&­‰…°MÍ•­ËÓãƒjäf|‘«ß§-éÙDbå’ƒk×=ôè¦u±ÐÑËC0¡t æ¿z·÷´•´$N8iŒ8¥&Ü‹“?<ä…Fª•0Š \÷‹üdd$¼ `?$½àPeÆ{¦ÝgçY„T(‚)}ôu/J™àrP1ßs‹~f _JZø0Ùt$²ó—Åy³`‘&O ô„ó`o±°" ŽÍ­Ë©Î$üþ%™–B?÷oÅ–ë[)Ot@ÊG"Ÿ4A1?n’BB¹¦ ‹Ë¸ÓýÀò±Ì) ø7½’ ìàŸú“Žá«Ÿò|c.+,«X\6>>1Q*-•½\Fd‘áÄ"¥ØÂ¥¸ÐZI±mîfa’$;Ó‡˜dtÇ–ÅbÓÓË¿¼'$åVÞ¹ÍJÜOH¥¢ŸçJŸ.°­xÍ}¦V·[Ôè Êº,TXd¸â‚eùü2Ì×/ÄÕ|Þ‹ ëß}Á¡˜&R(ˆXî;±Pª€8ú&æGɲد\…<´R¬K¡ÕqªZgjÉ6ønKµÞ6iX·NQtt1êÇRªÜ. ©¤(.J:yÉ¡ZV`Q_Ú¢ ó¥œ¶®Vu &¡ý;Ë5«ré\j )îHÿ¹ ™pkV™_Cn;¢_à~™é„¡¹Ö±bhddÝ–í1h¸"ËÀôLþnž^FdYCF•p¨[J׸Aø®Ûòø7;ˆ-ÉžBs 뎑¹Ô32Ee!ƒvÒfAb.ééص{՚уð©ch8FB!σxâÝl¿r ÑX•ϯ1ÍU…ÂËrõÀ¿t^­2Í5øÕªbqÕøøš‰‰5¥ÿLP¼¼ CÃAðK¨‰¡a':|!Ê;¤£çóCÂÞ+>.$šØÀ()>ÖÐ0ú?Lut,BÉ\¬¦`kTš†ekYìka úsITÊœP÷Ô!˜ëö2³ —–â2ã¥ežÜS^æ–£ ¯\9„/[Qƒ0Y©¢-¾rDáK¢¦žªÚ-¾r´áË€f&€ÓôHâìÀzñ¡ÿe,3ÖB}W,âÞ¹Úl çöYÖ«R(€™Œ}%|-D°êÆ6{øÍnkVàS'rZ†Zg·ŽIÁx=ð»A²¹ÆÍíYUŸ¨Ökºadª ®ò¹ÁFÖx'$ü¨WÍJ ¾€3å2-x·±ÑóWÎNøðöGZøó‘àW>߇~,Öé‰iü/tõMçû‚Ë0üÎð9 *ÈÇo\ÉísiVèN£#†ÿƒ=¥“‘úÂYCœ! L–$ƒ?¥¤Ÿæ:¦_¨ÉœAÄÅ9ÊÜO¹ äÚ·úL¥¦fÝ*P h 5o[ct9ÅUg.#n¸ÃKúÅ„¼Ñ#G¦`’ˆ^R•_[îJvt%Ú&¾2ѱ’ˆÀh^$\U¬À¶alaÖ0‰øU±Ò±¾]Nj.ú¾° ·¬ñëÅá˜_å%qÏ›ôO'éIÿþ·Ô’Ï¥ 5×WwŒþÒöjm0æÕ0² ÐÝÝí‹à¬·ø’À¯- .)X—_2ª¡›·àzà”ÔVk[ÉÞ¹-nÁ¤ø|œ„bv‰:‘HÝìLáx¹”X:ñ“PÜײž6>äkàâ)ìí`z³Á([`1;×¼eU ØÑZ…%=Ó=îšnÞ[@zp2î›Î­®4Ëå1÷nSA ‡.0@m¼‰wL:jñj-ZDBÃTÃ9‡À‰fB}—ñÕœ…j3ŸŠ5Ërî¤Å,V«ž y(*Œ–[¼ú¹o=¡‘ !¢k¼\̓rgËÈÜ"4ÀŽX]ã¦X«N’„;huXº6ŒÕf³:N~ãVÐ_ü ºk‰@ƒ#+XÂ}ˆ?ì¾qâPì †$ó—CPxtk Ô*ðîé$ËpèÝ”Y³’c¾ŒD{?êÒ²„Ýóæág|{©GÙR(ý]ЦÎ= ‰%=¹}+î~Ð˰UþjM'Ñ7ÖÍÀÀN/þtEJû?§Pñs›²*± ~X#Ó3·­¢êp–ïâÈ®ÅUýÁUðÚ–© *¦ÿ9 pec´0†±ÿ‡)B, *ºi[êùlºƒ²až…\„œk·ÛTÝG.=ÆXfµÒ°¦Þ>‡ðÖÏI°ƒÈÔ¬`ö+SÊì–Ũá–ˆ!4hÖàOKЊˆ±Û5í…½Ð)8:pýú;æršLZ–„v¹ÁR±nÚª™¥ºelÙº.9†o[ûèCm{lx„_¯ÙîÜ@6BŽ@clÕ uæ\ÿRª ¼ÌÔñu'ˆ>ŒØÑÄC:Bw纭›Ç¶¯ÛºñÑMCÛ×­ÅÚã‚ê_Êà^%Ó@÷2 ‚õ*²Þ+z R{¬±½ulèW ÙÙðd*T-r¡"füLQð¹˜V¸Ó÷’NÅ»\ÛoqZÄ ¨¡·´SùRÑ í ÊJw/ñ!YâŒ?¦j%•\nâqD+òt-<ÛÖ=úœæh±Å¸Ï‹!Ë™ñü¥EÉXƒªßzËšâj_ùŽÜôáÌ>ø/Ñ%(4U-UЭDîHìQ8ÌÚÓiX{á8˜\JBl Xç Ô¬Û:ÇšC’<{èàæÍÃC[±ûЪƒ›×¬BÁ5‘ U£Sù8jgdj5&ªû`ÚkÆ> ‚h~ Q5 °1‰ 'Ku2´Pzp"d;7ˆ¬œ…®ŽíI²Õ÷i°Ä£éh.—*SÍFrÉ:B±št?7<´víÐö!ØUUöTªûœ¾Ë™ž‹¹XÙ$± êV Ú¥ýèzBdÃ:ŸÑÊ15œ‰Cç}bÀŸe$¯æÂ=c:¤WußAÚ94Õh‘”º§Ïý ÑŽí[‡Æ†6lØüøØ¶Ç ׇa‡9¶nÛÈЖuÛP·]©Â¾ÑÙî^ªm¨+‘5ðý=„X*MêÿÒÿæïžHë"ñîto*Ó¨ðáhÍ¡Òo‹GþËfÓøþãÓÙxö¿™xo&èM¤’ð}¢·7 ç)-ÿ5ë Pƒ,kÕj£U¼°ï|â~&ÿÐu¯°’¢þÜiÏê†åìdaÛm“ðAˆž‚Å„q×ú¢Ö6ŒÅfÅ$w•Èõbå4ík3ÝÆ£ l0ãö  G°!@Ë¿~t{7lQ‹ÕZ¾Tk6ðÅx#ÕÉ)ØPCÞ{ñ•xNëSï4¦šulŽLЊ W¾Â 4÷xFHÅØW+5ðòþ$ºb-˜£[^‹bä® !BxðµjÓÐÆuk:…~Ƕ mÅrõ•ð=l…¶¢÷èwݶmä³”«\¼5»@×þÑ•Î[ kM®€ßÆz¦ñΣrV Ë%Æ’@*–KìFû?JPÈ:Z;À™ ¤’µU£ÒqõЦòñÜ >¥é*/Oá«O†b+Ð}ÖÃ±Ž‘ƒ;b=“ ¶gÉŠÆ£ãˆR@7´U`–a-¼CJ¨ eºCüåHIË ŒMö¶¬ª¬rì ~‚]3TÖøäïŽâ…Oú*ï":_flµÊUà˜Œ^Îâ¼›ªN¹¹k¡ÃQè± Ë܃¿ <$ؾz¸I”ÍP©R¬.a–ÅÈPmµ‘\²Lø«^½ÞÁ­¥ÕÑ„PZ# ç7¹d3Á× /ÙÛ¨ƒÆ·ý¹§Þa—n—lsl Ç’Fý`ÍÈC1 _ÖµrðÐvƒîc?â¯PÉxÑ'>à=òÛúð2J1Î(„4‚ãà¨#K6®0†‚–&×z둊5DÈáÏC“  AZ&„òøg’ÌÊ|á„óžSé—c«,Kæ ªj†÷/é¼q*|ƒŽ¢ JêÇI8oœð_ÊÏSïʬ–YG¶{LZ h-#•Â:a ?ŒUßáÙ T”Qvg2Hm¤îŽD£â4íÂèvf±Píé$ßV'–ôLÏìg^%ÅfcÓT¹ ›ø€Wû`ËìÚi¸mvpÔM³„ U0 œdôë¿u·˜ _’¥õ‰j³\0ÆÑiHoî6E#øªI÷øËäTc†4@˜Ú †S^ÀéČâàm¨dYóïçÆœbŠ©DåL£óYÒ†Tb³7ÙæE+¤,´bY,c#:[­”gˆ§"iûÉmM“’Âî•(î&jdѨŽ[hjy€X^4;›ŠìÐ@Ï‘èà«ùxZ’±cüiÔìÿD[ØNÌKdac²«Ëª o]dÔw!Û«^õ‰®ÔÁåFVæÖèoÿ݆ÿÖñßÇñß}èo7~ÜŠÿ>‚ÿNà¿¿Å÷â¿;ñßýèïƒ=ÃÓ µUt¨\ªÌ¬ô¹µÁŸ ÁŸ¶ªz<øÓ¾ÀOÌ9mkð§G‚?Múmð§½ÁŸvòŸ¨oûÑ\È}³°p®] 8Å¡¿Ûðß:þû8þ»ýíÆ[ñßGðß ü÷·øï^ôàÇ þ KèÈN(1§,ª0Úü©üéñàOû?±%“CÛüé‘àOÁŸ~üioà'Œ4þ(T;öó‚”PϬܴŽyMë˜Éï›íK±^È*n½™¶ ÀÔT¹dú”Ð?²qs¶âM÷ƒ·ø’‘j¥JÔ¢/yßmï”á÷å`ù’ €i-o=Ë8¦äï„ÕgOì¬&rÅv¸v¬ÄÉzWndTØWïe‰@« L¡y¨§šxŠ „æµöÂ1žËöGG&T7ï´e—§¤Q©Ù—¸f²Õì?ø-;w!ö_6•àí¿d<‘Öößbüsw«ÛrUJ¸Ö›SSÕZo½Ø « jºÑpÇ"Ö!i5èÄ´ hV£µ ‘%Ô¸5¼àÓiÔÑ”-ÄBeËÅÆF$¶ E€ Lƒ;H ÿ¨øþ$ $Û×Õi$²]dê7•ìÊÃV±©w“í¾Äž3Îl×2|0}ÙW*4&ê¸d_R½ÛoÌšb§rƒæÍ¡ùëùjÝ’ÒÖm‰;cOÆðSµj¡iúÃx¨!0^©Â6Æ4:Pí—«Õ=y æG!F4‡t…ޱ-Cô׉wÍ8*¡4JN>P *N'Ût¦²TÓ Åõ‹µú(I ´™¬†§¦¸uA¶=H3yìÑA ¢™¥°=b'RÉP³QªBzõz©ètZþfFhlí0r;Öäâ»}kºsš .®UÀ&¼eÚB%¾2“ŸiXê©'ñ:ù¹+¶ß~þÿ?KÄ;³‡ ©÷ÿ<´—Ý€¹ðÛÏ#ËŽ> “éÈ=>xñ\lùà­Ps(¦•¦±VDtº££¸;rÓÉTú}|Õyß?A¬:ŒÖã© }gX|Gˆ´Lˆ$†@w'Gx§€ñx8 &7²Âä‰hÐ$­œ"Ñùx–gÁí@jíÌòcã¿ãŽ#a9Dß|:ùd¡0üÍ$’AØÎWžõ:,oÕÎÄpÅa£yoeq¢AÒ9ï½pž¦²a088æ¨×hªâbÓäFò^âÁŽ<é®wŸX Wq^@Ü88ä¾…„âñCþ'ÂÄrÞ'&Ýøu2™é¥)¸aæ»'qžÙ³rZZhþ ŽwåyËh¨ÔXNcª±Åª•‰ùàÆAcÈ}m À»þˆU0Ј³lQ¦zN•ÁŒUè6:­`ZhµR‚ÖÞz뎴:Ñš>´fªMH-W4,çL¼+ŽiuÇœ/ÖѽBÖì2åÌkŸHŸŠÆ±+îbÖ’s8HâÂãéÔêÊÕN Zg©#›&d¼ÖœÌ—g£ &®Æ-£ã©f©¶KšÕZ v-å¢Jlg£HŸ“S VªCS3ÖM—;±Oò­<Ï¢ .r»QiÀo¥:†ÆC1´G}²´_æõÅèr,k4¥åmó6âÒÄv¡»vçöŽ®ÌM÷޼Ø5dŸ;5|ñé‘Q!jA%ªd<¼ÆÓ?·ªã8,Ÿó¿°ñ<•–ŒÿSzü¿ÿôøÿ¾ÿËg7ïŸñ?‘΃;6¹‰ Em$~?&þç;ocd<ç1wàqlý8ÏõñÿøÑu”3dÃê =’Þy? ¥ÛUb –îßQtÀjøÌ޳©z8­‡Óz8­ÿý ÿ©ŽÿûÚà6þOgÂø?Þ«Ï-Æ?=þ¿oÇÿÿyëÿ}zùßøyN:èåÿ9M;´2œ vDæF-ÆÑÈ£?þöõyHÂk#`ܦˆ2yÁŽ.ÉC×]Ù)‹ÐI.ú=œÞàr«¥Jܲ9Œ(ó ´æ-Ö BδÙFn5ùQ˜ãæ¹ êõL¹B…h­uüÀhmΰó,ò©vë}SžÑÛ Z5ëV‚Ìqü„ó^éûÅΌз¿èI‘ûñŸÚø?Õñ?šœÿÌèñÿ"üsšw|íèÄþ˜|Oëùf©Ü;ljOryŠs”ˆ8AÍž^èF£ä ¶¬èli©îùõ€u¶ ¤ýB8~ Å6`^c$lân–lÂ.ià ’8Ç3 7ÜÞ©<¯N ‰Üâü=ÙmÔ9¡¼´ÑI-`££VÿÓmñh]ÿ“°ÒóóÚÿÓbýsê?òŽäô¸øè_sºT.ÁÊáß_^­ÀÚ^Ç~D,€ï¬wýçãÚË­SŸ:Q‘GÎÝY?Î½Ó²Šµ9áƒF>hÂV¥Œ\MÌ 0kå"}€?7‰Ü Ò2øÃüeÆ6Ç%ŽS· á‚n÷@c”Kf©L‹%É!;Düâç~&W'æŒÜj43ƒm–»™Ôƒ.Óc> ³Ä‰ÿàˆ‘Á¼Èvi’i¤P»Èf‚dxJ6ÕÃtEn÷·¢ûÉÁq¶žåºŸDãŽS%3žè~rŠÌZS!”8÷µ÷}Ov?9íÇ&¡AQ„T÷“=ã´À´eÕ3´keW|tØ‘‰q5ìæÕJRð/ w;án'wÂð7@Ž¡žaZ×b[1=¸ŸUÎ4úÙï–½¼Ùíú tŸxñðì†9Ê,]¨:EÁB”IêjáÔéélÁ ùcä 5ÇÛÑ×ÝÓ+\޹îiyÖ=íN “'.¿Á®.(ê~ªíêòD÷ôÓå¨§Ë w;án'wÂñÀ4.I ±_VV¡šÙU]ã „_äÐG˜UÀ½J™¸˜_åÞèw¦6pÁ œp—îZƒ“ï5Ý´è·^Ëç¤2!j!(ÕûÙŽÂ!ËòʹosÝ9ŸÛ.‡Ð'O˜œ÷nÀ{WðÞá'¤BØ”{òçiUæ¸/®Jw9*Ùå¨hÀ ¬‘«¼ß ÷‹Y  ¤}ZÁ£Éœ«ª8çr°)púò`Ìnf· f³ÇEDcyíäÚ Û·Øà 3­„cÃV1¿b|EeEƒ•­cpÓ@úyÿqܬøÜþIO¡ÇÙ-âþN”žÜC?—'+Õ©î†sC¡ü‹'¡ŸÜVâõ ÞÓÓ=Îÿ€üúC‰­$)¡©ytD.ÌÜŒ/2ÕÝ´–[’G¥KdâSèÅ8”„¬X §È±€€”DRá“Ù“ïáBÀ /yÀüÈ‹Dè>¥ƒŒÙA3bG¿ìþ€T“œPM)”tî&ζ¤V ~è-XÑÚ0Àñ.؇~s4lõ­#Æ‘˜$ä°2ÇÀ’)5ï3nÑb¿âIRàO“vwƒîKMâx‰Ú%O.d¦À°×˜ç |"Fâÿá­D‡Öÿñ(¬È·Žwcþ™5Œ7-,£8kÁ˧—û3ÝÕ¢n`ÃK;ħ:^Ù­;úoÖ-gN¾•IÛ#Æ#–.¾F‰PÂ÷¼¹w5©urñˆ—|:Ü‘«¢ÎE`¼¾T)tÁLÃtº»»eË õ¦iZVÁÙ3_j¸%»Nî›ATqV£UE‚M*Ðâ«FA !5kÜšFw}!ÜEc¨Ð×j'ÙYX€R¹ÞÍ”V%^Ñà6-$¸ úÞM8D Nt¤qQÖ½(ÃØ²yÛ£;–g¥ÍÁ^ßónÚW@yb‡{5ø]™K Vè`a@ƒ&W>°’z ßã´ŒÂQ•$DG¾£áó ˆÐnŽÒnŠT·µ;8 £kØùĆJSˆÁD¹Ôa(á̦'œý&PW¬6§Þò13Võ)Âp.VÈ’ŽÐú‚_ŸpPøLÈãµØcz¢ÀÏ4ž!m¦Ó#¾——Ý<¨—Ì9\ŒMYiæVî‚6å(Jl®öR1*9ïs~ÏÅàwÔ!Ã@ŽS}ÎÕ=µîÐZ÷ F÷Õ}ݰ?9øëfßb<ô\!ïð+È ½šŽÿ¥dC&úçáOˆòcÓ»<á+Ô˜åœWþ=Šº‚Œ È÷Ü <ÍÙC¿$ïpÉAO¤Ü¸ñ؈~L/b.yG½ôÞb8 JˆŽÜ ’o»ágs7üœëØmí.úY½;ßaævbðunw1¶ÐåYØ"–žë1µý_™¶öµÚÿ•€ÿ§²q½ÿëý›¯ý_·ŒÞü¥7|¡ _ø¦h½™Înû†»•_µ¶_—˜HèTœwu"ÙVïhøÜWwQÑ~R7É^Sr|]¢WmŽO¸>ãĸXôU^€\¢ŽEF»Ä–¯Yn˜i¤Œå«–÷LXø¨ —w³PÊ1,׃ ‡V‘Á.>Põ ‚ó 2 |¦‚ܲîìíÅ6¬Q®Âhê Ƀ.h;£Â7ÀìêˆÈf2©Ì¡ŽX&YpY4É®Aƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hРAƒ 4hÐ@Ãþ%+V[@£aÕ*†Y­ìµjõRµb”êF£Z5ÊÕʸQ¬ÖŒÆ„eä›Å¢U[²d™±®R0ªE£aÕ¥ÊT³‘Ì,ù/ýù7eÖ¬dù›ˆw§{{¶  ðCµÙ@z˶Å#ÿe³iü ÿ±¿‰T&•éý¯D&Þ›I'z©$|ŸèíMÃï󔯖ÿšõ¨A–µjµÑ*^Øw>q?“ËŒíVÝÂu¤nì³j–1nU¬hX#?cL‚R¥Ñó°ój;ŒÕ=5c4ë%Xá¶Œl]—\^7Ù+*3F¡jTª Ã*”F³R¶ê°‚N€þjL€ºaN€Ê8¤ `Ý„µuÆeÍ*–-VÒqHS5ko©Ú¬N5ïF•ù±Jɬ,c›Y+M5ŒuÓ «‚Û":ªýn«ÈtÇ»ãiʪ•Ñg„? `2ëÙœ°Ì=Kzvç¦ÔÍÕä|¨§Ù(.1à¿¡%F|þ%ß ;‡Š’›>(“àŽê‡ G<ËâÅ1‚x©lÊ£Ÿ]¡¦EŽ ?iy‘I@ƯZ)Ï -×€ [ËÈŒym¸ß7UaYh˜ˆçˆKçu©â¨5ˆRNž¥œ×,k˾7ž™Œñ÷pÜ’é •18’1¦é¤Ï=ÓLǼÂW—ñ7{PÍ&e1äzBß•³IÄGªÊªfÓÈL­T.—L†B:îç~fr ¢”Y†V¼¯è«Š„BrJηÏ/ÌøÙ¯ESÍúpO˜ªÇ0U‘XÊùDê ¨fÚ°UeNoTýêêÂ`£}C?‡ä–”¥<«Ä &p‡y• 3.‚($a{©\C–º"Q”³LF ­ÜS=ܬM6÷Lpâ”âœòJ“Þ›õ££ç0s]ƳEÝö¥ú©,JTh©.Mo_*KÓËÒ†z0‚º±@C¹R=Ü|’oðèr*æÒ“56z‘2œ‹á¦º”§rµÙ·“gÒԷʳ@„y&§¡œg›k¥¶KÈSÕ*/T«Í5>z¯ßpàç ¶¨S7Øî$év*©ž?"cØïº«¢ À ØÊ9##PL)›`²Ä)ó}~Âñ3kýInØ›(R5É …Y€SåŠ$ã_HÑü L Q™¬+AÝ$’ñ¸òÐw»Un޳M¿I¦`ü!6z¯ŸUø9,£DŽ-*‘À®J$áܪFWÏõz´T* ÀÖC“²óLÁÎ[_á£S%Ï 2)®2–ÊõHàÛò ÝL3ÊòJ&Ô]šÎú4•YÁñ•sKFBìÑ‚³k#(ƒ“ …U› BmÚXžá¢Sµ© P›äL[T(#Lb’ΤJμUj…¡œQr"Ptåšµ­T™€XÍS¶^A°õ×G$èÒHBa3H¶ýYŸ ~ª]‚ýÙ …¡nE#@W8†úl’„RXF¹fÍ€Ê$`ÝDe[âa«Z/ni+h…au "±³ÿ…¤?ûFaÃ(9_f>O‡ ¤xd¸ª©H²+Ÿlm=’Ñ€ªSž|TÆ›¼ Lׯ„P¿ ;íX,ø®$’o®©85€#¿zIXRM ¨æ“œwŠæM›éÑ•óHB*© ÜV+ãÕ²PNúèLêÁ*§±D"›5©lÅ¡°f0ˆu’fÝbX"OúM1 (7‹Rad[kŽDRoå:€úSÎÁGJ50ÎÏÕ§âiº¼§y³!±,‹I:ËI(¬žÉ9·ªi<Ûb±¿HÕ´þ9À=EsOÑí-Ôk›ŒÒVB}ðÕ{D)-6à³k½À2ŸÈRsÓ$:“rÈ.É0LXš{æÈœy-" Ä$4îú”WHªSÕÉj±ÊVyË–àgv‰¢°B'ò¾ÖH l‘DƵe=˜¶Ñ£p§¶`‘@k%‘8êk#2PnåAó#|»lQ$À›ì|q*™T>‘P¸á1×Ê%ð‡ 5ØvB¬^,-H–5A$q£Ø¼ÞòÊ–ýüâÕqìõD©Ä!¤Mj%B²ˆãز ìÚ¨Eê|y¥¯Êùñ„ ²rÙ»¶r•3ìèÍ/ q÷Ëöñ2 ¦Øq t†]Æ–šá#ÀYvQjy‰ÔçØ#ˆ¨±T&Ò<»”Do„†®Y©V9ü$iIIcÇ#¤Òtçœäl55-å9×lŠÈ<@G‘²)€„r6 7'J›žñéM {+š:ç„…H„Ä[¥tÎÂs.€o E=-c:g{>*÷ 5E²çhð¦f«ZVjp§¼h¸LoU·ÅKPÌb†ï2”pîÏRý{6Û¢Žñ˜mÕR—C®®~~¡1¤rÉôm*ï,Ü*À™•´i!Zƒžñ›üº%^d™¥Xf¹M»ð_}T%W´z'µìÎ÷g™|ÊŠ.0 bÒNp(t1…g¬|¼DàßF%ŠÑê(qPì«*u›Ê§ˆ×6§ÊÕ~kožžyrBL†!4…Úgé„B2,ˆ7`x¦Ã’1)&~O‘%TˆÒyQ^S~¸* ¾š¦˜,%ÎÖ„MÜ)zÍ’„Âf %¬ÕÏí‹´qÜXª“¦‡­µ†£DpŒ&S<++ñÕ'÷ð5–Ù×NB¬‘xjó¼ 3âE΀êñÝãO‹,Û1Û#p–)D²5äæÝß…®4q–V–Y)ý¢A4®XÄ{éýï$¤¶ÒÌó†ÈÌ"aop “ˆ‘H¥hìT„Už`õáHQWšy"½êÛà7‚ ð¤°a9‘È0&£°«¢ñ5-AùŸqB¡£0 ïÓñÓ6êZï ArpôC1¹¦{•7ÂÁ\ &ÃOšt´îFm³4JQ%·¤ÜF¯b“ ‘d„ˆt®<Š4ÁÊ‹<œÈÞ]T«czÁeú5±Í”¡dÃ?nø D`…¡×oR씇$öœëš„V ©9Â1<‰®ÔÝ• c[¬Ú¤°N¢Db» ÒKo Â¡, àà™U²ÜÅ !bª:Š$I°âp$uŸBÚïU^cÞReH~l ˜(ƒ½|‹“§‡Ø$Ä­Y–§xêì [µl!B‹YF÷œgç$@KÍEk&Cò@ýPÑú‰fìBNæ™@^˜Ñ*Uø­d‘n0q(t cÅGa¾ZP¹(­šÑV†êç=Ŷ˜ç*Õ&š ~ ˜ffºÒâLÄâQ tþáPØL—„u+7R<Ïvf·d©–x¥j©%3š—W¹¢y¯9-ì’f¹!š§I&§’BN!,05 (˜&Ö€²ÅA«…3AÀ쬊â8@]Œ}h#¹Ær– 7Isf·@%C;Ç¡ g©}«øÙ¯XÇ9÷kØJtƒ¿«;—é6«ÜsmuH|rìájEh> Œ¹/zü‚8üZ1÷ *æ~ Ê=˜ ÇœO¸D¦¥£¹–j™ê#ƒµÕqÞÏëZEâ[áð(©<’ سKÏÿ Œ[L‘ÛèÄdŒƒæGâªOõË´›Rßܬ< Ê@žÇY¦¶ Çýà˜¬ Ðƒ ¥¶ÏOm‹,LK F«m-sB½gC>Š¥±­Õ‰Reœ÷3gи؀B´q%Eï(ÕöXt -¶5 ¼³_çøY5[ UÑ\–_ ;'Ý*Ô}0o«Ž$îËRt&SÂbñ(t/HBa»$¬•g, æl¸D#@_ÑàWïí6X}¥—ôÓ«¾$ÄdÛ&~¯ŒdÑ‹§8¶8€}‹žOàÛ†gÙÀÔ›ô™H“¹Q¥5Žúöâ`Å[ʇ@Ÿ°ö—øÖ7n1S_¢Û„Ä£PW¬8¡Œ“pV¾dE ›õ«;~VÍ?™”ÍÒµ-(²º›©¶óÊ ©èèaulc©Råkl²ØOå 1y625) Ð³ $¶Õ.رOž9Œ‘`âGðs47)Z(DŒt4(Ôýq£ìÇfÆ'š‚·Ð^¦·nàÛÜä‡ ñbÓÛõ…÷vÜ•;<‰m,ÑêBF3T ÒlXp>ô)÷#ÕÉÉ*[¨‚(;gff˜ÈV„G¬|ÍÚÇJÝOIÝ/¸½„7Êù „Z¸"Ób>‚7Œ Pâr*Aå7/±=ãÏàçÐ9^‘‚òy`Ï-Y”/sKðecsÑ© ÁVAA·¿{cKy«Á—%ªêE×e¥<;\¤üËãçðés Ï‚òªãºÆD©:ů[2ûÕÄíjë„cV/ué– “\ÎÚ§õTwù[µê‹s]¢ ý”`ç#$ÖÞÎSÎ0I |»»„1È›Ê%eTèŒ å«µÒ84œ¹m¯ôeª Émª RçÌl§w¾¥d„I‘êIÚ<>ÁÏ;3ûÂÅmá›Ç„~Ê3„ö—®ýÊǃ·6+|ùËÒ¥'+”ˆÁõÌÙb…€a2˸¢e]Õ¥åI®'è (â ”ƒC觯 ê/* W ~²jmá"Û8³£9.îhFH¥—)8*ã‰ÞêŠÍõIPf™ qqÂâQèE mpä¼Õ—†k TæœÁ%éU»¤¸h‡p8Ú»OŸJ3/åÛ¯ÞÐo²öaGpMÞ­wñÄùvÀ_…FŸ8Oô«îÁ¼£XðE4‰É¶ÉÕÌ“+|‘¿‚¾é*YP)îŒ#w²±.ÖÆŽ‹ñŽ)«Ê£24J!£ÖÇð/({^9TëÂð"θ#‹‹þÈ"’é£Q2 †Y0ûŒ²y6 Í ÑZž9p'V]áß|/5žÂЪ+gܧ>šjV¬R±ÊoNƹÁ P~êÍi%“¦N¤PèX$€{&­|ôjËDÕ‚–µX™­EqqkÑ–‰Ê4B»³#¡ÐÍ£ì“ê=n³RH$˜Ý¿âæ_„ŭݘô!bSa",€³i*Ï„m°¦Láð­yñœ)BáhÓT±0¥lÕíËÍ屑‰žÌ¤mS0q6—Í=má˜*-~cõÿ·\w2´?žŒ lŸßô—ôçñH Lhg6©<‘· 4k¶®Ü~ÐG;£é 7hò;ƒ ôΠ‚‚=ÈZ}—éVëIþŠ.â‡Ç¤_° ¶>) P»_±õ\Œ­ún¾ 3’öˆÙ·Æ"$…ž˜!¡Ðz)e­>73G/">cË$ÅÉ=aù9ž,0(…¸Ê¼˜ŒuAù~¥ 3’M ýI¦.D@H< ㌶?¥ÒJYGpàËO§Úô¢å%A  9P)äêE™üÛ…I@@kˆÊ®`€rš„¡&»œ1Pö„ü¶ÄMŽK)=õIFJ{yÚ7P)0V& íµêü¢C"ιqÑÊÚ[ç'‚òL Ï«”ðÞêE|ÝøÌTÍz?R²jÕñòÌÔ7—žbLÞ”hò"J:C ™H(t$\tFyì´ L¢ùN3ôœÄ=)àf†û(÷ƒø9¼g•rM):6”êìȤ©›تË#$EæT…¶“2*Ê ü0˜lr-½nÄu„Á/4¤è… ãñ|¢òØt£e5¬ÒØF0cí‘Ô}¯ ±xé7B4n­‹:•F¡ÛÙ™çÕOe=:9eÁ¾¹<6TƒO˜Û¤½¯9!¶ªMò}l}†„„B'†C„Pï»Ð¤É¶j³1Hå%× Ó[ÀIˆ«¿5þÚÀLµµ‘Hˆêc’G+äu©ZúÙj ‘^žÉ¥¼è·ÖŽ^2¹”WÊ%%QÔóЧ'=!ÊäW^ȯ-üf(Ñ'%ï!ÞÇ %úT,Á@îêÆàÐ)UÆü„ ãÝ-!zwƒ˜&Bo¦$¡ð$òWßT¹­T(S¹‰ ãC$#.MA,¥@ûÞÇ¡P{Cλ <ü8$^‡Jà‡Í‰>æÌcŸ`‰#L…¶ÄJ›†‚ùGØ944QåUÀ\û-¹÷[†’¦}9âPè|²ŒŠr/0Tj¹å$nšÝË-î´|¤Üä6Ì¥³t:H(4 ’dÕöh¾|ã}ÌEk}Â*æWH¬$=Î'!v”)A¡mj eJX§Ô鑉j Ô'%Å’±+Š‚]12QãWaŠ&mWàPø· ö¦rG·¶´×ª íiÖø©f‡{BÜᾶįT&úÏŒý…•‘üÕ=4­Ÿ@ۅƶM‚ryŒˆ'iÆèà|Ï­^_jpÒgÒVH(,1¡r@2Ê+ Èöªs]™—õ'w…!ÂöŠˆB_‹EB*fŸ„Žº£ãjC¨ýL…¼÷ÈP}þ‡B—QQÞ7öÛRcbOó)~ßC†qW“tŽÐx”<½·‡B·Á0Ï+*׃}ü”éžb÷,CaêpQ¥˨d#¸WÛˆNŠðÛ¬-zמâVÆy¯´izm–„Â'ÜùóK³ë*£Z4V½QªL5Éì’ÿÒÿØSfÍJv‘¿‰xwº·©«?T› ¤¸Þ¶xÄá¿l6á?ö7‘ÉÆãéÿ‚Ho&èM¤’ð}¢·7•ø¯ø<¥±å¿f½je­Zm´ŠöOÜÏäß2cû„ë:Ê캱ϪYƸU±j aŒü ¬L¥J£çaçÕv«{jÆhÖK•qcËÈÖuÉåu㱑-°¶¡2Óiª¸ÒZ…RÃhVÊV½n4&@5&@yÚªŒCÚVÎÆ„5cÀÁ¦Q³ŠeËD³Œ0¦jÖÞRµY7ö¢ã¤ÕJ7ªÍUJfµ`¹¼<ß_ŽèÅjÍn$²Ýñî8Dš²jeô9d2hÐí!Ü" ñÇœÙV(&©á - ¹û‹eñòþà*O]±5-òkãÞre¶¼&œÏÊ®ËDt¤åqëÃ5‹Ûœ¢úò”Ð“ÃøœI[H¦)+„BòDd*U!Á^tÈá%ãåTsHQ©Ž"刎´¤läŽÌÔJeÞ‰ =›,ñS4Sãü·Xqzç …d’”o’²Úð³_{¦ Ëܬåj…h¼å*ÂQ"øs”€ŠRßb³p®ôZå’”kŠšÆÆÏAõI C9‘̹”ÞµAŽ eá(ê7.ܯ>[e—„gŠºõ1g:$¡¨PUçàøÊ“ŠtÏd›Žñö$î{ª½/¼C\ŵŠÔ …Ö$ WE_Ä¢qfA&î.È(Ö%UI‚”¥å“@ S^4Ü[NÀâÓ[HÄ $Þ—õ:ü’SŽ©xŠ*Ì)º ì }Ä‘ ¥ŽÙ#p–)GPwË.€â*›vÛ'Þ–vY'z¬CltÊ¡w¯‚;o Gå*$0/оiGªÙ¤.‡\MÑ*„WyÙZk/ù®§êdf"qóIù8=+…C!ÙÀ¹…'°}E¿ø“€j&E夨hv^¤0u7aVeœwDUª ó‡ú)Ç­ýÅ€q%ÅUÆ2@SbոÌJйÁïzA4-¿d ÄʽÓÃÍÚdsçZ PŽ—àxùa~¡PWU…‹ª¥<[\%(2œû-LÑxËÕƒ£¨o¥îK)W§‡›OBò ž]BÅ,z’óNC­l‚b¸.å &É4„À¾ S—$HYQ3Lªoõ Û\+q^óT…Ê jsÞKÏ´„rE†-j“ÀMv“¦êêŒ%Z‰–-">”UyCÓv0Yb§_ò}~ªñ3këIÞët‘Ùƒ^T¨E"Så*$ã_HÑü l eA¤šŠ–O"¾ãžO1£¬rsœmîé=¹âŽ\„ÀF§œ¸>ÏZæ’ȱս¶<»6ªOÎ2ÅDÌ‘@”´T* ÀÖ@zߺ¸k}}…NÃf-Lq•±T®A÷6n°Š H€¦¢e•Œ‚xÙt«ýŽe0øWé{þÄ[þ6òÛÔhw±…z$gÚ¢* a“tE¨J™h(Z.Éi@¹•ëÔ¶Re`ÕNYvÁ²ÛÆ;OÀ®€¾‡Â&ˆ$l£\Ä>1_ `A´í:M¤2å«à⎚#åÉ!nŠZ\ÁÏæ‡TG°ò¨Qæ†æ|ÏÝkÓ2;$,SqfÑ¡Õr’ÀFÏÓ¸&Á#‰ -E=³ä$”3lã ¨L ±™íßb¯4Ãß’ÈZ´ŒCa=“”1ã1tZäÚÆNs¹VZ"QÔ;&YzÑå)«Z—œ€gŽá [ Û’Ôæ›vñUÝû °·¨ö”'”åRV´2 PbåY¼GÐ!+~¼È9mâkùÓ]ÅbÁoäI l±Vä ›ƒÝ1öž„%u'7 (/ØFâ-S‰¡¾f+R€JRÞY»°7šµÊ%)çTÜ¢Te×*AS1ǢȤ0E9Ëîï«ÜZî-’ñ ¸]ï-âYÎÙô‹ÆY® áøKÈ”6o­[°ëÒZ匩EíhÀ J%áohÜk¹ Е•[íÝ·±ZÇÞ X Œß‰ƒ%ápX"Ëœ¹ÏfÃ;«@ÖIšu’±y¾m˜ë‘Ùë*ÊŽD Æ”{®GJ50Î/à§âiº¯M [ÁJ¼ —"ÓבP˜}!çÐË‹ÕL¢H» ,º^ÕìH²«-šÍ!£t§ìz=r*Jh±Ÿyë–ùD–:qKB¡s·RΊq†®lÓ62+ï %e"MØJH E)ï¶®NU'«EöìYÒòç'ð3“O…•9A$¶oBÊ•º¦?U0A€6 ú(’ªËŒ2ê’’€B+ϲ?"ŒØ¨åà‡\œ-LQîoœPø KeT:-rƒ 5î„"Œ·”òxQÆX¼~Ô=ú<Áïa¡o'–ž(ñ÷¥Mj „dÅüÈH¹g˜·QqT¥U±7zBY¹¦,ì5µ-g”DÎ5F`8çQ”:W™j¢Íµy ïvha”«œ}Íø¸w(o/óôÅt½ •­2¶Ô- Τ‹¤²4n@í•oŽˆ J ÆRQÌ…ÜàUšÞmk/}¹P¯p¹ÄáRi:áë†r¶šš–òœk6Ed £HÙ@B9›†›%Îg/½êÐ+xìMW2b2bíãQíi…­~2ÖÃ*#Su³˜:S©n" «”«î€~dfªVª Þü™b%.uŒLÕ¦l÷•mÆ3Œu„&‘¢Qœ@ÝE«_úW¯^ÃÍqÉÍõŒçSÑñ)Bâè‘1PKù‚~“¾£ü &0•ÅV6Ú£q—«‰Ä‰`ºKiÔ+[uªÁo°ü•5üÌÖ³*çW/IûSOš ‡;$<w* ÌÛ: ¯*‡\M‘E >VyàÃe€V#yIú€GR<áÐX¦VœösDBarÞÁ“<Ó6ܵD㤦hÓ‚rHWêSƒ¥b©ÆÙ9Ñdš¶%ÖŠ/r‹æIúARå ”oŠZ)OÅ“ÁµK EüNû–o±U—#H]©HËõW·:¶Í”«ÒØ&0^ãÏ/ÒË!’« "‡4)„dø‹@Þ;ú§E¶ý–_Xð³²u™{°²"*ÖyRy—Å– 0^ÛÂùIÓ™&^I;Á·Q}ÔÉQÉ4)ßÀm)bmD€Yº‚Ä#œ‰&KÒ"î P|¯òÂý¦=l î¥üN÷ ^§al.:ewô*˜<»@ÇÓ"¯b²âI@5o”Ù úˆæ,„Ç.Ô-öõ`LŒmàmaºá§× Þú“´±› Ï’¾[üÅ:$a®§ ¢É¬´Hç h¤”snÃŒ)¶“Ì¥HIa;BâQúi§É86%rNÆ3Ô®ðë”ÀT[uê)o™’H õ9'©šû•;©ÙÍQIæTHRÜ-ø’‰' J!|+ „³ê`Kð‡3÷c!ªRÈUm¨%UuAyã߆ÉUýô 1 q5ªÀgU?3ïÓ¯0û$áìQ–gØFæ¨ó•)'šOY©rÕ;ª¡½V?H—ˆ3÷åÆÅûr‡öÖùiƒ<“;y…Ü‘±V¬Iÿ62KYŒmEÊ®uG˜i“°:ò$è•d@¸#„})¿ÆÏaÃ))S™ÎýÑϳŠÌ>@K$’ú`*ˆˆòY¸ ¥:ç-оˆw‰sù ….kqD”½ ˜mœ2P•B¦¦h·¥JSî~ öÉ„om© öBâgˆiK½Þúðm1·.a:ç¹õ¨ÜƒÔin=€†¥Üø¡›³¶7k{„‰_æªÌ¸8m»¹¶‡ß¿i¦ûh”tø9«îv²X¿1`cBoÓNTn©¿«ˆÒ«/¢åœ iåÃWëAI8OŠÖ ©–..úð‘ ˜ôeÒ8:@8÷gý=KøÙ¯rË6¼ÇEá,SP?¿Ç9d,Ó°©ìêt#¨ø;Þè)@qa°Ñ3”•‘ ·2d,³Ë,Ï’®ZwSÙ}²zÊòæ\ˆë‰¦3΃=“‚æÀ½xâ~âð(Ì¥˜‰tø|­„s¿Eh‹©J"˹ïpŠÂY¦ !©`™†#ÜøiÕªhõ+øÚñx?3¿$ÚˆÒÏŒ†ƒÎ¤Ñõ+LÙ AÕ¨Û=æ.—ŠrI|õÚ¨Y ʾ¨ï< –¦£K¹½m¢VàQ(óÒ …ï‹X·p€&ð„[ÝÓE¸Á k©Ž¢9? вº]¹ìœLg™LÊŠØ!BßMHB¡›DyÆÊ¾Ïþm˜&ÊbHum‰RªkõËG@Óõ¨Œ •ó@¸T$Ï0G¹2¦€¡ñ ~Ëf&K7¥™ íÌpK)Rq_{øÙ¯gûe%¥‚¬$ù ðÜdS!Žar8,?z•«áÚæT¹:ÃSÈ3ƒ»¼8¸Ch< Ý9’PHŽJy+ÎFÊ)ZÅÙ¾²$A*‹4#¤t |bÌøº˜ïÌ<#:‚X< s—v&n‚ÊXÎð ÅcøªþƒÔÙJµ)ƒÔ«~UøÃ5PiLðÝcŠ"¤Än5ÁSGŠ>ABa;Ý$¬Õ]·‹´áw:‚(:‹èº]ªõbA¹Z­Ÿ¨>¹‡ï)Ï%7]‰G¡Ü£8¡°9‘3 †W€Ø ,Û™#‰ÀY¦ i`'×p:Âô>>71ÄUÍ,Óò‰W`A4¾åë¥}šÚÙžw"NJÄ[ôZ1©ŠP½¢Ê¬¾D¤ûˈôª{;Ù&À“‚ƒŠD"à ҄Ã+¯i êò':å%áØ ,Û¨iQ8ËU© Rr¯òæ¦Á=štuÂ6·Û8(fi”¢JFI¹G™ž…H2BDò0Eš`åEž¨ È¢z.Vùm ¦¹LˆÍ¥ …¹Õ=› h D`m¡÷³¦âLE“ÄžsE‹ÀYÊ8RÉt¥~YL¹0¶ÅªMŠ><˜ƒ|)¡-DHåh ‡7—Í=]_M•úÀX½¾þ–ë4ífˆ^V`|þ¼FÒßrHaB <³IåÍwÛ@³`ëÊ­€>Ú¿nŸX¸A“ߪX ·*¬š@Öê„¶ZOòû”ÉU® ýÂö¤­O Ô àPh)¹”­úvý~Ü螈©–¨È,¡¡.1²ƒ¶ £]@_Äï¿Ê,„ïä–2ÊnRß–¸Atéóq/@{*æccuÛqÝøÌTÍ::L1F@J4 nn'E_ÂKBa) ÒQ>= &›\AÌR¶0 pvØ$gÌgåúÐ …[b<_„¨~$À²Vil#˜±öH²Ô+ÂYŽE Wo€»xâó2ˆy„¥ŒG'§à”džj`’÷gëÜvêÙV¢÷à¡Ú$o€÷ÑG»H(t!DˆgžàÐf[µÙ˜@¤ò¢}èã$Äõ`5ÞÍ `î6jöBˆê–ãòºT­@ýl58â‘_Dቘoy«5„SíL.å•rIIõ¼âéIß3ù•òkË?‹3ñ¸ÒxLIõ< ÀÙœÌr®¸š 1xz7¯4«"r5ÕçT†k`‚¯Ê ¦'Iˆ= BâQhí'”VYä¬ÕÕíùþiÖ꥽ü±•.:»z/½4ÇFJp¸ø}kŒ'À„è b𴏩YŸà'O‹% ±r (ù$툄Bå9CDõu©êLu2_å;pÆç3–è-½8>¾”òÊ[Xw‚ ´÷ƒÚض§š fñ”˜‚#.÷@ô<Â\þÒ kÇaBD¸ ìANY8Ýô“Wq÷ð×bŒ9KŘ à­nÈm´ V” µWû³3:³ÄÑډˡô¥_aõ¤ÿ~åE2Í,õÀì¢'Œ ¿¨ÈÜâQL*”¥üÕ¯¹XWž‘Lù3¾°â¢/,„Å£0ÞÁ‹E…ö?€·º_ìM3%°Ç‚Fí–&0'š–lÖÃbŽÍYâ±¹G&+S< ½µ‚„B[V%QÔ7[<*æ„pÄ“ª‘;P 0GÇ’j káˆO«•ôj Ô'%Å’ñ~W¼ßLÔø[ãŠ&íý‡Â×ԃ؛ÊÝÚÒ^«>6´§YãG«Ì©„¸Ajm‰_Hô3žÆú3 “©-ø«;!Y?®áÛ6 Êå1"ž`t¤£ƒó²z}©ÁeHãû³ÏTÛÞ"G_˜È‹\?“ hs•„Ø­…¾uŽ„Â7ÈX«_ÂöÛRcbOó)á`ãÏ #ÐxêX¹ ÝŽÀ<¯~6ìãÇL?—û9 åkÕ …–å^zÛˆvìñÇŸ¬4sW¼Vbòî?Óôº …O>òW_Y_ªÆØVnKY"ËÚÏŠ‡ö×óÛÅa¤^ºàãPhqïå°®R0ªE£aÕKþKÿûý7eÖ¬dù›ˆw§{{P‘(€ÀÕfcªÙHöµÅ#ÿe³iü ÿñ¿YøßA{«7“Nô&RIø>ÑÛ›ÌþW|žÒØò_³Þ5ȲV­6ZÅ ûÎ'îgòo™±}¢TÇíü;aë†GÖ>:bÔ›SSÕn_¶Œl]—ì6…-j=¬:ü­Ã¿û&¬šeXÓSå’Yj{A¹iÕaÓRoš¨ñé80&À^ËÈ[VÅhÖ­$WoX7=0 ‰”K{,cä‘¡­cê^²l %Q,•-c¢ºÏÚ ;ø7´˜ˆÑ¨bakÖTµ^jTk3†U1«ø2~tÛæ®¾¾LW¢ÒkÖK•qÀ¸{ÑIŽ<¤9 ¦¦ÐËb­:é$¸›ð-[P ͺaz©e™%P6&a²;¡ÆÐ¶‘G5ê3PÓõN'{pÍÆò7à §N"AjD†Ø‘4¡­7ÓI)-Ö‰dC’VŒBÕ"ÅM ס†‘ÚJØûTLs±Z³ =Ñ7×Iwy¦ËI9V<:q]t ê¶#¡ÐؾYnk:èïEŽ×Ñ£:ê!‡z&q764<‚ûÂ!J$sÿ ‰ÖéY *3’HΛšøFkº/ÓŠ¼Y+çÌ"·ÚX7 3¦ÚíY®t?µ”›À2ä&zˆ*ŒaBÊ Á\à ç¦ãýΫ顸÷Ä}JJ8”œ8Ã.V:é½ 1ÜJÈnuÈæ*¾DÀyUó_\v}ïe_Æ}Ïû1óÞKÓiF“m/‘mïý(Ûo‰l¿26ˆ ’~û¦&¼Á²óïèÂ;“ê!ØØÁ6Õ¨ý)‘v¶Û°Z Q,™Æx­Úœ2ê¨ù \Û¬DÚ‰:lÕ!!Ø*k"”Q»ÐQ…_kûJì+&ÁŒQ‡-»1 +i 7ɸk‰uS…~%VNÇàø4äi?Þ#^¼9cŸÔVÔ}U`öúî½?%ü­/áoÅl Î…-ÙD6Ó(6+&Ù½ZjÌ@Asæÿ›3‡rf>gŽäÌBÎ\—3‹9óáœ9‘3Í™¿Î™ësf9gNæÌM9ssΜʙOåÌZÎÜ–3·çÌßæÌÇs掜9“3w¢ÔBÞq °E§rÓý&j˜¡ìÙÜto†{ás‚…dG²¢L‚€Âð{â' >ê}ëƒñ!^þ& ­þ¤32\,f¿Ðt-YV*K­¼Y(™]•r2ƒGåӉ̃8/+®4—•Çœ þk†•‰*kV¥P*âè»rf.gŽæÌÝ9s¬Ç÷!á ° (P ›(:Ä$‘A·’O÷‡¨ýäÓ¯z–< åX0¬Z 6¹‰ll¨¡U¬[ #5€Jü$á Û´X-—¡åZ0òЮE†.šB€8UhvAÃìÿÝ•Ý=6ˆy¡ÈzDø¿2®êê:èÌ蹂_Ø?µñ[‘e5V‘´£f?àÈ#âbÿ#CIUŠ]¹ü¨càæÝ6¾/˜‚ôQ©ìÎí‹¢3[McÝ+c¹<ú+Ó $ÉCD›“>ñ‹žRË2ÿ_™N•´úÈkËUAn_Ï£KFÀªýÎü +ZÃXmÄ—lƒ­'Ú—k Ùw£Y)5êFÜHI#e¤Œ‘5z>£ ýc­±ÎxÈxØxÄxÔøµ±ÞØ`l46›-ýoŒ­Æ6c»ñ˜ñ[ãqc‡ñ„±ÓƒC•¼a`ŒqcÂ(O{Œ²1iÀ*lLO5Z.FÓØkì3¦cÿ’mÍü“H9e«2Þ˜0а§fäqã°ÚH8Ib•ò³J2’€òô=™qô'þ$ÑŸú“FP3‹þô¢?}8ÇÑŒ–ÇÄLý) ?úS„ ˆbQ, ŠD±€(Å¢X@Ä ˆX+bD¬€ˆ±"f!b"f!b"f!b"f!bÏêÃ%ý!Ck+þ Š¢h!Š¢XD‹ˆbQ,"ŠED±ˆ(Å""VDÄŠ„X+"bED¬ˆˆ‹¡Åe™1T.5k”*¸çóZõYÐÁEÈé:Ñä(êNÑgyMjÂ.­šL©Ã.Ì“.”'£Òú.©—<š Kµ…@eÈá{ÔÁÎg‚°Ñ, üÿs0± 2|@ž¡1;ºc¹„m¡²âRp @2>îtYkÖ¬AÕªU8. ú¯óèµá½G‹×ÕEÃÛ½k”§&ÀÀèœðqO$ÁBÏR4Àòî àŠ&pkèC>â:@á@?ö<:¼¤«íÞüÒp xÏ»†ºv‚®ýHLTüT¨EëBÍ jeºP…Fõ=G}<Œ„ ÅÀ86O¬`ùß×[ ïMpÍC#õ%!ý†¬×€òΡ×ì3H­×ì3H­×ì3H­×ì3H­×˜cŸ‘âvX9ã‰ûq2Cmü?ÔÐñVÿ÷f’zü¿ÿôø_ÿõø_ÿõøÿg”>=þ×ã=þ×ã=þç‘ô<€žÐóþ©ÿ‡Ûâ6þÏJÇÿi=þ_„zü¯Çÿzü¯Çÿzüÿ3JŸÿëñ¿ÿëñÿ/nüß—‚‡ñ}&9ØÓÈÁŸ~ô\œãü"JŠ2_ÀSÔózþà6 6þi‹Gøþÿ„8þO÷êñÿ"üÓã=þ×ã=þ×ãÿŸQú ßèjÛä"Äæ:àçL.bµÍuÀÏ™\Äj›ë€Ÿ3¹ˆÕ¦ü?÷¿”¿pØð_ŠÊd€25ÙÔ㸄ÆfúHÙÔ€f+ñà ÜGSÊÃ}½@e/ï>Hg0×1;×}Î`®cv®û Á\Çì\÷A:ƒŸí˜}>ÿ)ÿÓíñh9þOöÆ“™´>ÿþÉÆÿx$]3Ûþë¤>f¹‰½?>V)áFkªV…­£dÕñ@–z÷‹o.Áa±áÿáðVô΃ױGH«V6Ö¬62݉x§‘o6 Ñê¤E蟇,rGóFÞ2ŸÅá="M‰TÂþG‘ë#ìÍÐcìnîñ¡­›Ýôð€ñì—gŒäF3wŒ¸‚U.M–àc74 ÕæøåZÓÑšgF¥9™'“R½§â!ÈrŸWlÆK{q ¡v&ëD? ¬K˜ä2¢Ý]Ÿp<#Q”c®ÛÌrÑp¼Q¢_hs:X°çÝyÏ40Épÿ¢0r¡å¼ÊMè-òÞ@·.øŸH(hž«äicttHŠQ|!…4¬ ‡¦g|’þ lð¹a ÈãI9Dç%—p_³ðÛàT:ó¬]Ì\ÅäÓ¿b0-ÝÑŒç¦ûú<1Ì8æŒ' pˆÆ¡•&fxÀ¹á¶fçÉay¹5_OWDY`ÜŸÌ›š5råæpvGþÖ<\šo2 9ùØ$ìrN¦Y΢Š#°uw(sYªqeò8™vóX¬S‰d*ÍÔ)ÿ…“Y$Ì" rœJ&ñxô{ Ý{-§SéDòP1계¦ûµUÃ*uî@ªó—« Lzþƒ…Å*ŽO”žtèñï æUk¡ð/ ‡GEk!¤+Jnz97øšu^ŽýL2*óŸZÇîiFÑòÑòžhyW´é 4P‰˜ŽÜäNód%ECWb]6ø²±{B3ã‡FqÑœa&–%=U<¸j5Ø‘™¿Lípm%øãÄp0ÙxîË€Øñ„¸ˆ3àŠAó+Ï\¦ã\nÎD¶ôSët{јú€½¿ø7«áGƒì´ÉMƒ<ý>U<Ž¿s:†&il‡ÇæñOìÄÄvàòð¸Ë;™Éb?9/ƒØ¡Èô ôn0º²g¼ÓåãªÿúŠO8dwÒÊÄÏþT¨ ¹ÉC|†äM-ïÇì”DLdsˆŽ>(ÆáÛ‘Ñq_z¯"È'¤œ¡Ýé]N2Êw*ìB ü·3èƒóÌ.½@Ê;Ò ‰-¹õ{å$Cä/Ž hZø[’ù–dÉuÍ =/‘ ñ`ñÚ¿ð\È·ýÎÛýNø >ˆ¤øÍ|j}ûÍ ~õšøâ¤”á|h——‰Ó4¿îÔ†pIÆ>¥B,%H¤ÁE•IVïÍHeZtÕ U+>“¨½°ÏqÞî Æäm‚z´c€ß™ ¤z¼ÈÛßDfÍë;uH`.*,„ -ó¦@ö»vs¼}¾C„ÁЯʸLýù’‰S_H õN$QP$Ÿ!÷‰h¸i“+±KAÔyˆ$0\ƒ¸ f‡¿c?Õbï ±>Z –<ÄJ0ÙR=äœ^ƒÎ¯¹>¡ŠEòµXôû&4Ø/¹Qг£T†¿ˆ| Ñ©BŽlÉ”Ÿ ôŒ÷…™£+òÁ›Â¦ùmdn‹„µ{E'ºŽ€ =WPÜqĨP&hÓÙ‚‚7ü3O?‚¹}7œÃ™ì!>Ftºøææ}™C²[‡à7KÑ#Œf¿4ëøLexÏ…Dè¬Ç:ºa×–9£ÛZ´­Ð›&"'Ä'üÝbá÷h;ê §¤¬Èíóé8ÉCãüÜ6*†`d:4ÿ— O_8|á¹ /\xéÂ+^»ð» o\xëÂ;Þ»ð‡ ¼ð§ ¹ðÑ…O.|vá‹ _]øæÂwþ~៎\˜½pì‰ §.œ¹pîâ3Ÿ½øüÅ/¾rñµ‹¿»øÆÅ·.¾sñ½‹¸øÇ‹ºø—‹]üäâg¿¸øÕÅo.~wñïÿyñÈÅÙ‹Ç.¿xââ©‹g.=séð¥ç.½péÅK/_zåÒ«—~wé÷—Þ¸ô楷/½sé½Kï_úÃ¥?]úó¥¿^úèÒ'—>»ôÅ¥//}}é»K¿ôKß_:ré‡KG/ýëÒñK§/?wùÅ˯\~ýòï/¿yùíËï^~ÿò—?¼ü—Ë]þäòg—¿¸üÕåo.wùï—¿¿<{ùØå]>~ùäåÓ—Ï^yúÊá+Ï]yáÊKW^¹òÚ•ß]yãÊ[WÞ¹òÞ•?\ùã•?]ùË•®|rå³+_\ùêÊ7W¾»ò÷+ÿ¼räÊÉ+§®œ¹röê3×^¸öÒµ—¯½ríµk¿»öûko^{ëÚÛ×Þ¹öîµ÷®½í×>¸öÇk^ûÓµ?_û˵¿^ûèÚÇ×>½öٵϯ}qíËk_]ûúÚ7×¾½þÖõ·¯¿sý×ÿxýO×ÿrý£ëŸ\ÿìú׿ºþÍõï®ÿýúìõ]?qýäõ3×Ï^?wãéÏÜ8|ãÙÏÝxþÆ 7^¼ñÒ—o¼rãÕ¯ÝxýÆïnüþÆ7Þ¼ñÖ·o¼sãÝïÝxÿÆn|pã7>¼ñ§¾ñ—½ñÑo|rãÓŸÝøüÆ7¾¼ñÕ¯o|sãÛßÝøÛ¿ßøÇÍn~ró³›_Üüêæ77¿»ù÷›ÿ¼yäæìÍc7ßü™}øsûðöá/íÃ_Ù‡¿¶cþÖ>ü}øoöá¿Û‡ÿaþ§}ø{ûðûðöáYûðQûð1ûð¿ìÃÇíÃ'ìÃ'íçìçíÃgìÃgíÃçìgŸ¶Ÿ}Æ~ö°ýì³ö³ÏÙÏ>oÚ>~Ø>þœ}üûøKöñWìã¯ÙÇgÃ>þ–}üûø{öñ?ØÇÿhÿ“}ü/öñìãŸØÇ?³aÿÊ>þ}ü;ûøßíãÿ´±ÏÚÇÙÇÛÇOÚÇOÛÇÏÚ'ž¶O¶Oñ’}âûÄkö‰ßÙ'Þ°O¼eŸxÇ>ñž}âö‰?Ú'þdŸø‹}â#ûÄ'ö‰Ïì_Ø'¾²O|cŸøÎ>ñwûÄ?íGì³ö‰cö‰ãö‰“ö‰Óö‰³öɧ퓇í“ÏÙ'_°O¾dŸ|Å>ùš}òwöÉ7ì“oÙ'ß±O~dŸüÄ>ù™}ò ûäWöÉoì“ßÙ'ÿnŸü§}òˆ}rÖ>yÌ>yÜ>yÒ>yÚ>yÖ>õ´}ê°}ê9ûÔ ö©—ìS¯Ø§^³OýÎ>õ†}ê-ûÔ;ö©÷ìS°OýÑ>õ'ûÔ_ìSÙ§>±O}fŸúÂ>õ•}êûÔwö©¿Û§þiŸ:bŸšµO³O·O¿dŸ~Ù>ýŠ}úUûôköé×íÓ¿³OÿÞ>ýûôöé?Ú§?´OÿÉ>ýgûôWöé¯íÓߨ§¿µOgŸþ›}úïöéا!‘öé“öéSöéÓöé3öé³öésö™—ì3/Ûg^±Ï¼jŸyÍ>óº}æû̇ö™?ÛgþjŸùÊ>óµ}æûÌ·ö™ïì3³ÏüÝ>óûìqûì ûìIûì)ûÜKö¹—ís¯Øç^µÏýÁ>÷}îö¹ís_Ùç¾¶Ï}cŸûÖ>÷}î¸}î„}î¤}îðÎwí)OVªÐª7š{÷A£èÿ~óþß“çÿzþ£óŸÿäü§ç?;ÿùù/Îyþ«ó_Ÿÿæü·ç¿;ÿ·ó?ÿóÿ<ÿýù#ç8?{þèùcçŸ?qþäùSçOŸ?sþìùsž¹ðì…ç/¼xáå ¯^xýÂï/¼yáí ï^xÿÂ>¼ðç ½ðñ…O/|~áË __øöÂß.üãÂ÷~¸pô¿.¿pòÂé g/>}ñðÅç.¾pñ¥‹/_|õâëñÍ‹o_|÷âû?¸øáÅ?_üëÅ/~zñó‹_^üúâ·ÿvñ¿¿øÃÅ£ÿuñäÅÓÏ^¿ôÕ¥o.}{éo—þyiöÒ±K'.¼tæÒÙKç.¿pùå˯]þÝå7.¿uùËï]þÃå?^þÓå?_þëå/zùóË_^þúò·—ÿvù—ÿyù‡ËG/Ÿ¸|êò™Ë箾õé­Ïo}yëë[ßÞúÛ­ÜúþÖ·ŽÞú×­·NÝ:sëÜí÷Ÿ»ýÂí—n¿rûµÛ¿»ýæí·o¿{ûýÛÜþðöŸoÿõöÇ·?½ýùí/o}ûÛÛ»ýÛßßþáöÑÛÿº}â§g~zö§çzñ§—zõ§×úýï|rçÓ;ŸÝùüÎw¾¼óÕ¯ï|sçÛ;ßÝùÛ¿ßùÇÞùþΑ;?Ü™½sôα;ÿºsüΉ;'súΙ;gïœûŸ§ÿç™ÿ9ü?ÏþÏsÿóüÿ¼ð?/Ú³OÛ³ÏØ³‡íÙgíÙçìÙçíÙìYøþ%{öe{ö{öU{ö5{öu{öwöìïíÙ7ìÙ7íÙ·ìÙ·íÙwìÙwíÙ÷ìÙ÷íÙ?سس´g?´gÿdÏþÙžý‹=ûW{ö#{öc{ö{öS{ö3{ös{ö {öK{ö+{ök{ö{ö[ûè'öÑOí£ŸÙG?·~aýÒ>ú•}ôkûè7öQøõ;ûèß죷þÃ>úOûè÷öÑ#öÑ죳öÑ£öÑcöÑÙGOØGOÚGOÙGOÛGÏØGÏÚGÏÙÇž¶=c;l{Ö>öœ}ìyûØ ö±íc/ÙÇ^¶½b{Õ>öš}ìuûØïìc¿·½a{Ó>ö–}ìmûØ;ö±wícïÙÇÞ·ýÁ>ö} v«ÏØÇŸµÃžøEûøËöñWíã¯ÛÇoÓ>þ¶}ü]ûøûöñìãÚÇÿlÿ«}ücûø§öñÏíã_ÚÇ¿¶kÿ›}üöñïíã?ØÇÚÇÿe?a?e?c?gŸxÆ>ñ¬}âyûÄ‹ö‰—í¯Ú'^·OüÞ>ñ¦}âmûÄ»ö‰÷íØ'>´OüÙ>ñWûÄÇö‰OíŸÛ'¾´O|mŸøÖ>ñ7ûÄ?ìßÛ'~°OµOüË>qÂ>qÊ>qÆ>qÎ>ùŒ}òYûäóöÉí“/Û'_µO¾nŸü½}òMûäÛöÉwí“ïÙ'ß·OþÁ>ù}òöÉí“Û'?µO~nŸüÒ>ùµ}ò[ûäßì“ÿ°O~oŸüÁ>yÔ>ù/ûä ûä)ûäûä9ûÔ3ö©gíSÏÛ§^´O½lŸzÕ>õº}ê÷ö©7íSoÛ§ÞµO½oŸúÀ>õ¡}êÏö©¿Ú§>¶O}jŸúÜ>õ¥}êkûÔ·ö©¿Ù§þaŸúÞ>õƒ}ê¨}ê_ö)Ø•>mŸ~Æ>}Ø>ý¬}ú9ûôóöéìÓ/Ú§ß°O¿iŸ~Ë>ý¶}úûô»öéìÓÛ§?±OjŸþÌ>ý¹}ú ûô—öéÚ§¿·O±Oÿ`ŸžµOµO³OÿË>ó´}æûÌaû̳ö™çì3ÏÛgްϼiŸyË>ó¶}æûÌ»ö™÷ì3ïÛg>²Ï|lŸùÄ>ó©}æ3ûÌçö™/ì3_ÚgþiŸùÞ>sÄ>óƒ}fÖ>sÔ>sÌ>)·Ïœ°Ïœ´Ïœ²Ïœ¶Ïœ±Ï>mŸ}Æ>{Ø>û¬}ö9ûìóöÙì³/Úg߰ϾiŸ}Ë>û¶}öûì»öÙ÷ì³ïÛg?²Ï~lŸýÄ>û©}ö3ûìçöÙ/ì³_ÚgÿiŸýÞ>{Ä>ûƒ}vÖ>{Ì>û/ûìYûÜaûܳö¹çìs/Øç^´Ï½aŸ{Ó>÷–}îmûÜ{ö¹÷ísÙç>¶Ï}bŸûÔ>÷™}îsûÜö¹/ísGìs?ØçfísÇìsÿº{ä™»Gž½{äù»G^¼{äå»G^½{äõ»G~÷È›w¼}÷È»w¼÷Èw|x÷ÈŸïùëÝ#ß=òéÝ#Ÿß=òåÝ#_ß=òíÝ#»{äw|÷Èw½{Òÿ÷wOÿû»gþýÝá÷ì¿¿{îßß=ÿïï^ø÷woÿû»wþýÝ»ÿþî½÷~®0¶›¬¡àuˆÂèŠÁ{ÜÙ(wŽþFMVÉ>—Z~ì”cw –bÈÇl*7 úÉo¾0zPx5äKêžïgŽÇ›ÔyxÓ9³ÜáE]1€9}ߢão=D÷™Ó'¡y @Gõ0Xž\5þ%E™@‚<…ŠÂ. …rç4?´‚ž½Αu¼á!2yåüpÜ·°TÁÂ…ÿ¯ÃáòG¯–9(Ê cÅ€ï¡/ uN‚Ú¶/Ù¸~€vdáàýßOÃ1@ Å_flªVÌ P&r釿ér_,-oêÐ x_Šô—¢¿•ŒAJ0X -Áà%¼$ƒ—dð’ ^ŠÁK1x)/Åॼ4ƒ—fðÒ ^†ÁË0x/Ãàe¼,ƒ—eð² ^/ƒ×Ëàõ2x½ ^ƒ×Çàõ1x} ^?ƒ×Ïàõ3xý `ðƒ<Ààå¼<ƒ—gðò žÉà™ žÉà™ ^Á+0x¯ÀàY žÅàY žÅàùJÄÕ"¶Qõ(ÎV¤8ƒ‰ƒEö+ųPðwZ8ïK‚þ’ ¿$é/IúKŠþ’¢¿¤é/iúK†þ’¡¿dé/YúK/ý¥—þÒG飿ôÓ_úé/€þè/yúKžþbÒ_LúKþR ¿Xô‹þR¤¿ÐùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùcÑùc9›`rû¤é“ÞÖüàèp»ó&?ÊÑ!æSœø|ÜU@ÊÈ ¥œ³‹¤›–)×ê–×¶EPråF”Epá³ØÒ€•Øå64»F1ºsÃèVmÈdtÒîC†’3à;$· oèÃ-öhà³Çl‘Jç<9¿8Þ2Ì/$ å3Ús<í¸w&¨qžLä¦6ä¦6æ¦6妶䦶å¦v®¢’Ü‹6˜X…©xýd³qòc¢ŸboHdûâþ^»^Q qªLáÈñCýKs)´ÁÁû€Þ|)x[Fü}}˜p‹Ý‘½Ewƒ‡Ûq/(!Iæ°7ªsƪâÐ7E@G*æÐ·DB7yômÐQ–rè;# ã¢ÀâO1™F+žð{¢„ßÅûië´U“Ï mdRd˜dã~WŒŸ[ëçó R«0Ô,\?ý}ñÖm–”b•¡Xì£GˆFoCù°£0€ÂNa;°—hpÃ$#a2ï§?«]{é°)Mä}ƒ€<;Õ$M©Ô x_ôߎJ('à~ɧ©/ù4ý%CÉÐ_²ô—`‚@ÜP—(°Á&ܤzôÜñ¦OÜ™êhQbd6²Õ°?îžø9üD‚×ÀIˆ[ ñtŸoSâgeâX%ŽlMÑ¥©Eõ ãHˆo*PÎê5Îd{ûúé0A~’ä'E~Òä'C~²ä§—üô‘Ÿ~òãØÏóMÛŸ• ¤Š„T‘*REBªHH ©"!U$¤ŠDÌ¢oæÏEOãDú~"}?‘¾Ÿh¦? ÈOžü˜ä§@~,òƒm‘þ^?Çç¢Ò‰\6Êl5ÏRcP/zPl<Û|æýcÞ6æýº›Ru‰|Ç-LÃ)bÊc^SOQÓw8 Æ®Kàžé"ó‚ϼ ³éb¢»óqèY9™DLžÕDÅ0Ý~ÅÏ£ø™ðóG™)j0› öh*zÛÁw±Á‰bŠ·ä`X+‡êZ©ž5§6’@›š+…{ÿEŒúh®Q}9Wª",Å„—z}/5kÜ¥ÆÉ9Õ}N˜n‡“Eèy—“?èù“9^É0U%ˆ±ÁQ6(v|¸ÐqÒnÛÃÚi&µõÞ ¾ÂBÒú“"ñIªã[¹êà£L6É1»´caI^·Ç“mñ€o”+ÝGm,ïk7™;Ù6<OÒe7­ì&ûEúS<}ºF&£ÕH$Eß1O:º©\¤ÆÃs4(à#^Xƒ?ÅÁ6IºÎ¸éW.qäñyÞ%Æn¤Û¥êK.éó.ìŠ9KêKè¿òUжZå Àž4"ÇR •e Y|$óVÌ%Æ$Û¤9âá¨:d[O]‰Äئqòv½’º} Æì5ã‡úrÞˆÇ5æ3~Û*Ñ/y–’kA‡' O›\¦¥¦¢`BôþÁU«‡ˆc;žðgÓ†’Þéä'È1k8ÊÀÀ–ßleÞ 9Ú…oÜc_èc@V 1Wàn…½Š´47µ'ÁK34¼>vw3/éHÜç/\ÈmAie½¿“)«HÞÖ(óäâÚ]‡™ZAɘŸŒ&¶°óó•‚Ÿ§6С[­‹Àª6Oiø¹êc­ÖÛvLù aî²nì)eƒZ®ˆ#Æ®ß`×3Ü`F¶’©ºÞH‚z9Ö¶@]dªŸ,HÆÓI<X,¦ðÜ_¢˜§6&†Æ$É ÕârªÖˆL׌ùä£E÷¨§ŠÝ¥ž‰Ý£ÎDÃ5^êœo«)"%ZáÚ÷äjK)kÄ4¦‹*´dù¬¯Œ-:Stßç\Xƒ¢¬d÷}8XŽ‚¸Ÿ~j)/,žÇ_ăÆ‘øìPeD® ÛÁñ\†îà?gN\¬ÚQ‘MÒ›Dq½ÙFp0òFžÆÈÐ(€vkçv¬ˆ°í`ÜÙÞADŽ' pïýÒ!‰K†ŠòQ˜Œ´ä"Fæ*ˆï$|ðg™ò–\Ü,¥ïrž¤ µÔ/¾zè>É\$ˈŸÅsÖ„Õõ\RFc£YŽ­çJäÔÙ™’Î \`‚†à™v© ×ýY@”‘ð’áEÅÔF"Pk)œ7¢¬k‡TtÀ#a6k)%þ²µ™œ¢ZºDhVOÐá°ƒòþÅ[âBê%‘R0B;T(nXsñ$60EMþUH[y¥c#2Û ¶lpZ4žÀo}!kP€ •%ð[ÒêspãØºKûâxßF*¨½^ÒX­öY½Ü’ê.È}¨ò%“õ—ÏRʳÔ~òx6î¯)ãç å1 »GñÀzÐ{@°)N%âþ,h¹oSHÇ–O”Ø4 uPÊ"¡`¢ žH‹Ëº mŠ?†*3‡hß ÎLëí»2í]}ë…÷­l¡èNËDôeb½i¶-áÐ07SìJ)e©<×M˱)„Iâʹ¨Ý­´Ìç¡ðl‘'yeHΨ'2ðK@âW´Ÿ¿aªð“)e¶P‰v["ÈwtÁ*Ö.'e£Qª–'ÖbV.OÒE«^^2ïeó’}ª˜§€Å©d^R»š9É$Ó(¼ÃÜ w©!î8üD›_=çžÞ7ÊÃ'O>ºã…7*}/ÕJQéhq© f.UÏ›SÕ†_Qý<Ò?] à„ΑÝãÎ[7Ôê F>b ûˆòqáõRú…S^¡tlkIKw/…#²­T•meÑ'çI` %òPž†Ýœ]»nÇÌÔS5kGy²â–.ïÝÂ*þ—™:'çïYâ8Ó~i ƒÍ ÓF-uÄZºƒ#îÊŠBw€”¹Ä€´›¸IèÁÙVé ÔvxÚ…uÂÏ£+c+9¹i_êpÃO ÷‰™ £Ø¡HÇ`"F†`þïöè$äú–G›u0ÒjŒƒ=;FÚ°Éì‡û˜pñ<¤ãd 7 Ê¥ŠU· #ÍŠU*Vk“(°iOýl™ãõ±-€5°( ¨˜ Ÿ‹]`³(,5ÝOûÜõ öaÀžï\"Ή8Á‹DÒÎ*+ÓŒsùÎw;߹ߺë¯^>ÕÎ|ܬÓUâœ7&á66~¿n^Ø%ü¯|%\nÃÛuf‹¼Uc:éÙ_C[Û¥õéVcÆØVG3¦Á¾» áðšVQMßàý­šÎûyØ5fj¥¢—„ ”èô[Eî-Ñ…[KÊÑ.kêæáU!¼*„ׄðš.Ìè”…óGÂúuópa¢§l á¶n áŽîá‚\eQ.á.–²pƒKEà§"ð“2#U® n.ˆB¼{º}Ù÷:O>ag8áè#ñð³ gg¾\Ä †eó0,šðf‰C|Ïóî©Û÷®Ûl®Gº¤ž1[6K(9=E "րw‰zA/•ÅÓýÔÆUÅ;Nˆ¢zŒk£¾;ˆ£’. σÒer!®¢ú&8CÝKGU“PÕ$TuGŒ«;b’Ò!)ªKqé[øb7©WŽŸ bèâ¹@ê¼·|RS>舄5_êá1º1Ò„™`¾Õ8°/6ç€+ä+°û^o ¹·x~7˜3ö©Ñ%s@#hd2IÅRæJFI%¢ë# *äÛ&#ÑbÁ¡£e tÝãL ¶§KxGÉ@cqP‚Û¨u¸Néd|….Ñéñ Ü/Üž}Jú/.m÷âÒa®o:ÇÛ§Þ[¹çþuOÀµ†}œú$Ýþ°ë Þ™ùy±r_h’±}³Y&4ëÆc"Ñv©B;…»Ö£^xBc*[²H¿µ-²kÇØj]4ËzsD7 K~Q¨n9ÃVÐpi =xŠêEú­YmªgD»Ee±­/¨Z¥Èœj=v·ŠʉòV§J޽’ȨÙÄf#5¦æ“ mH¦]»Gú6Ñ}}F¸>†XX‹îraÏAAM‹š, c'G#™ dŸ(… # J¤°’)¬”V2…•La%S d $§ÀÝä—§®ÖÅ•­68÷é/ê»îÇOÓwÎ46évÍ÷æEAÏæø(¥d€ß¼(ãÛüŽæí: ÃîÒSü¯DáÊôΔ¦†{©vá%þ©k/¿yÜ|M:¯;$<œ;rèí¾ÃÓ*b I­òää²7ÀõÆñ3Ïíû'ËÞiáÏϰ6<Ô9Æ]ä3„»c¤“Dk{ÜNáˆ]tÚÁUDpʪ¢¿@ïÂZæ+äápRUyÁpD®:p®wü5ºtßÒŠË9Þ÷‡ƒÓcÒ1çµ™sürØKyØÇÜàŽz‰¼ã—¬z÷w^¢/ÄFPzžÀ×b ½Vf«ZcŽrV/5Z}ºMªgTj“ÄxĆ]ˆaÝ.‘$z Ôrhf‹ýŸå0¡ä:wô™íµ¡Ý£uÃÕ1‰ †Ë¦RYt]ܪ°úÉ®Óek„kfl^üT’ÅÄëÏ#ŒÍ6ÃGlV%æ 4†ƒ\Se:²¼ã8Å1Úœô­ðÀÛðRzx€±@ ê¨B³˜K5ÙiVú¥·2lÿ#mêd:ñéc¢÷fù\ÊXü•¤Õ¯Ì 9kZnt]Á'˜Îœ sÁŒŠ?¶+Œ7(9¬ÐÝ$%ç…>o6^Æ× s¯øSf2ç è(Ï ’ŠÞ¹&\…¥¡Èùûe1µ€³p­<,–ŠÆ?‡ƒ.Žvf%…©ˆ´]HR*ø‘¤b@qò—*Ô"” æIˆ'áVÓȨÑÇqÁ)!”ŠÚop}DÊNÛëc\]Úóqc£e¼î;Ôñ-pº]Ûͦ¿™0ÄKU“¬BAŽejóJ2ÎØ°,Ge(-'¤…ð;±J)¥øXRR ¿“Ê¡œVàrr£Ä‰üFEAŽ•“üßÉu†NŒŽ%^¾‹ÕbJ1>nbDy/Eå†ÕL<>žêˆú.%©/'eŠ)匘Vˆ%¦š)ç”Z†àÊâÅKôRÊ^näØx2,ÍK©Ú“’…±r2"ÈK9O…tbt,!Èð2–§bJ1ž”rÜ a= á0Ròº'}ª"*ÊcÁÔ•³^%M)©_iÒ´j¹µ­tJ¥™`7 ^D? ó¼B„C”3;+LàIœ¥asm{'zºFòÃöñpÄïÄsL Bûx`äìÑÐ^âQZÂ;D1îD±j0Š…Fò4Á’X¢´4OžªY@2 0ŠÆ µ@µ“àÃ’U‡¢Xê¡ <^ÅQ=¦%l˜»Oø¨`׳>x¶F†š5<ÁíèE<·§JBͽP¡k以Iͱ„Fp*F”ç·D*ðH×zžŸn؇N{²¾+ñ8ÚŶ¥bp2¢4ft=®Á±¸Þ|ÿéŒÅñFgAÊ*1ŒŒ¬Tµ]z·;GŠ#ô'W’ÉÑ9'žâ¶(šo<ž°$,žNœÈé¶Âé.°C#ÅD1KfMP¾ËXh•-É Æe÷£ž ³•§Æ:ë…U™‹=÷„¬ <ï:ž~_e´áR<ØQUp3²pÀѧs#]_Ûí»=°ðè1,\QúÚ¹«Ù¨»BßIà@k¸“‡·À{àé(«šzQµê¢_˜ó˜•ÓÂóª¥ÑÂIMƒðfæHp> LTvã“¶— m³µJ®¢[ëúÇÁõÇ~oàyWîô‡w v”[‡'RÎó„•3›/0„Ƀ;÷´õþèö í»ñ‹RH˜ súÂãR<Ð!úW<èpöÄ<ö†dIüÍÈíZ-AÂèWXV–¹¼˜ 'ÔuE[5û¶EÛ¤[ïi‰‰”;G\me™¹.¤ÂE·éE›}…÷…Y‹"1!.{ޏE¿è¦¸Êú3 ››†p¾„¥°™M¢ŒsÄ¥jçoŠ )Úæb“Ý„µÍêÑí¢€‹ÞÄeÓzÔÛf[U¿ß×ùBJ›¨0}±¯ðJ6‹cQ$&âkޏUý~S¾Tý ›µýˆîm4 ‚ÝÓ8)*RØüϼn%YU@ú¥ÝF·.ÝPFFè’%é6èêÉÁMÐÝÓvÝ~G+çB¾¤¸ƒöÏ®vÞ÷»'kš5@d9_Ô¼@ûæ«h ]R |Kt¡Ó“KX¡ìœÊWoCoˆ r;Äs;ÊŠ‚ä[¥_ƒFÝ@kUqÖ«z»ôà¹Yú£´(ʺ>Z‡`؆}'õpÄéáû á²Îoë#ï7o;güΛX˜wJe¸ÓôÛlDLòÝ JKkÕtñ§JqÅø”")ÏÊ$“9pwb—òDâ 0g§ÒÙ4&¥nƒ'Rk…Qc˜ÍÝ—çà¸áC ™765Ñ&70ئ£   ‚à y|xSYHp–mDÑÃtÃÿïÊŠ ÷uN;[ŠÿÃøÃ¿ûÃßýáþÃÈjÒѽ(BpÆ[îmÕØ,c½=bqÓÀ„7sO„“¹ùoõ‡ÿåÿëþ÷ÿöofâÆ¦0(œ%Ÿ6ï€ÌÄMĂЛ ”fâf"\ 75?nŠ7æFa7Óp3­ÝLâ[wÄÌ'ëþdÝjÖ-×Ý«Jó†¿S[ÒM6rFú¹¡!O€™B3ó,¼[OV—uéù:¯UŽ/¸Î¼"Çaç‚Ǻ5&˜­lÆ•8;<ÄyK<”!XO»õúž¢Ê­qLU¦×Ý8ðœÕoˆcB L3®·qà9!J–µY1LíÄk>³¯³qà9!*Þ«‘JÉbrë5.žx1ˆ­Å &Îy#æºHæûÌ‹jx>ˆ°ó¶ˆ¸l šu1ÏQûöˆ¸lÉzö¶kY<íBð:ÉŠj.xÛÉFù–x¹‚“­ÆÌ+gx>ˆÚª‚1"† )0ͺbÆçƒÈIödfEÄeSÚ¬+ex>ˆmô¬ˆ¸lɶuæ2JVQYß Ñí9ⲩ,`Æ•1<DŽ¢²žgIÑ/˜y=ŒCÏqÞÛ)]IÔ7ZRãAsÃUOô×o‚ë6ÛÁyìÌ)o·+›;o´%{æ•H"HI1ÊžjCÜ85qÞ(5#^NÖaS-ÿq€'çÍùÛ?¦·jóôðx%Ž´G© ÅØ[g«æù­±4Í ÷&qQ‹3Š^:á^[£s,2ŒˆÌàp1¨…»—èaHà¹/f“_š*zñßרÿvêB¶.çÕw°ÚdþÛžY)'†‹§H²DþÛ…‹š†®9Ü4éå×k_è”ü·yfù踣pÛX»Ýf 鑸o»½Îï¤z©[ ­Ð§ë*z~ŠôCæ”*¬òS¡sÁ£ñU~hÖf_‡}]ö*Ñ)9æ¢~ÇKT`‰ ®€y*`޹ÂV¢iS‚¿ö-²oIÀ<pˆ™±Áj6½Âب06*LЊ¨•™QJm·a`Ón“^þ"öZÑ”HÖº%ÜjË|,—"/$%î(sG…;ªÜQãŽ:w×±ÎåÌÕu=êŸs_GO cG‘;JÜQæŽ wTCG[Äxséwùêõä]åºâºxãq2¬U“ÖŸÉ—päVBÆBMªà’Þç˜ ­(8(ê‰@Y&”Á†3–X–¯Ø‹5ûä~I.<©QåA f´}ƒl ¡_VºuVºu~¢=KÜ0qXaVX`•}Ù]•:»«R¸·xJ`!_È·,V.R ˜+|ì ó×>5¬ŸVóv k!fyŸšÜOMîGÝ䪚WUS:[©j çÒè±{acžy?÷àᣣÞÿ%Ñ àÃwÍÏîýêó•Lvum=¿±ùEãËÓ<<¾¦Ú¾›Œ¤q¬AóGÏ ¬-© +Zà÷¨c\ž£”!Í,ó‚½$I/i¡&Alj ˜¸”ÀijX!7yþñº*̹¨$4¥aî†ùå ØÊŽƒKQ›ÐK&2¡©•`ãí«©nN%Ô¦S‚šGÛ—,IÓ´kŠR9E›¥(µS´:ŠT3´$ñÔ´I„*[ŒDÍE‹Dð\*zUå†ç¶u¼.HéчE›Ö|ž(^6…‚ËÀ‰àbÅœ^tg-²ò€C9þ2g<( ÆåÈÍäƒ)ÆjŸjŸåÕ>)ƒêOuÒ­“Ô.ö"¶Î߯NësF=1ùIØÔ.Yb'ìn%JkÕ•Ø=ØÛÉJE³!á²D|‘â`o}&ðׇ3€ {Ã; ×N P`Ko.µýa?öè\‡®C®òé¸A YÈ~]Ahç§n–½0"¸¼Zv½Öq»'ƒSÍo“«­éž^Gƒ+Å`%ÌñÚ$ù€Þ<Ðï{'^u0®“¾?ìÁ­AþêåÓõa!‡Ýj¯ dMƒÜ%­ A„òv$ÓŒ€<,ºeÌðfAüG®†Qà·…¦/ÆO›Î»‘Â|B_i ›»X OŒOйt9—‘SˆÊ>ô+f¢ýJgR¬ðšë?ˆÏ‡°W‹éÙÌ®Okg€3÷ÍïÌgôA_ìå˳‡«¹è|%½Á÷â£Qv¼j•dpû€Ûó †ôÞª8ðŒÂ BxQž}td-Öë)œšç2¯ü@ž ô6y¯G“gì€Eó”\éo¾#2¬výÁªZfèG6ÿ¿þãOÿþ?ýüéwüé?mm\„­W“݃½`üéßHq´)Èweƒ7íöÖ-Õ‰qÚøÑ: ®hÃ!÷ÃÕó¢¦c»-=•þrcˆ«p6·¶VÆ)õ´¦ÅzOÛ§¯k÷‡]:î ý™UúVé1ÝÌ_㢱!v*´ñ/Ð[ÞE)†ÕŸËfzÈv¤•)Ñ]ÃðÆ³¦=C]úÏë£ÔEÚWì9é°Ñ‹ jÇ„@Ú–UÃ/I ç„£Æo ‚ˆ ,)©DÈ9¹•1„ù*1—Ü Ÿ<5ˆ,¨{2ìDš#^aõ,=qÎ;矆YŽD}#Ь‚›Äûdpêù½„fxpÔ7’ÐH“üTg•ºÄþÍÉ):‹¡&aÒ£T×S³WÒLxå3,Õøšh™…~½Nß‘À_z¤·^/’ÚÄíž ŽÇ¿;ó†.EÂp0€N}âAz‚mùò.Õ%ä—®W“‰W0Ü|^ýÀGô'ÖCVÚÂèh7Ú05ahEåMá Ð 7ÚøWÙï…V¤»º™½ÊŸÐ¬š¬Eã_Tâ_b /‘§ÁãçÚ3¿4š=kÒkœ˜'V ó ,tê£1Ý!ªZq‹ÚQ¬P¥°Núja6]Å eRŽZÓÄ´¼ÆEØà±n‰ª§!ôhT¨H[¦*6¬e£*á…Gj̨ F¬**Sn9´NE‚‰õ+¯^•h9Öj*Z U’†Œ¶Y†¦¦mÔS^剕¿u‚oÄAЉ°×m±ºÃ¡PéÝ1HØŸ¢¶QçMTøêÓ¾5ÀܼÊj NÕ¦o:U<Ήë“qØF]ûrݦÚ,¬î ;0´«•˜IëªÒñG²¯@Äe0<:ê“QÑû|>+ånŽ^Õ•¦¤ÐÀ?óìãØx,¤)ÆÈóȨÎN¯«)uUdˆÓ¬«ÇLÿΡí¾\$ ›?Äצq¶OÇ(Rs=xì¾[ûuu×¾BÝCÁ‹ÀC û4ð…b+°¥Q¢$ÐDJàri”(¶qR5·¶C£ž,Õ ¶ a¡D SJ#-‹¨±&±ÇÑñ”Sëõ›IÈpÒ4lrêp»I‘ô`Q±(daœµ|>(¸„ì’ «l†ÊÊyër5åöšæìÃÐÞI3#Ì¥c‰“â3°ŠPéÅI)±$HÅÚL^v¤âq´¥W|‚/®N(ī֣LH…+’¨h$4Ë@¢0O£ì‘çwÇ š%zY]Å¡¡Uøí¹Ž4R>€öGÛóOO`€lC•ŒéF¡‡š 5T=Ã^ÑÇPæCs‰ƒi(“àЯ œèXE3Þì[”TZ|"%¥Gªž 1YQ}p7KÚ‡ìó¶ˆw+»ÍC"ËÎ4²ðí×Ù7Ùþ¼Éæ7øñߥ³/ªD­×Ùíímœ¬õ¾4!IG¢”)mÏûÈ@‹¤¾ÁÆžK9X/Ö׃ߋºŠq,bVð\AqŒI¢a+‘Œ‘£X)¦Éa×éÖëÑTR: ‚0E 5Âta[,”XU´!áÀx ÓKˆ“clªçRxÏ©1ŒÍ­ˆOÜ *¦Þã|²)—=¾»s/|y•ç JaOJN«X#$tf4U:]lÊ”§gIɬ²Ü‘ºa'ã·kwü@zç^HeC•õF-z©I±¾'kÛ6< hÛÃ>}Uu/ù$Cg®àßpHCØâ"rèVaâg¤òyÞ¡…>sÊ¡ñQÂ)ézØjµDµ@Ez?¸òЉ)âh Û)Çó‹ áÓu¸wƒ;Þ'¨ïÉÓÍêÞR¢³4^J)a[ [ÛÎHò¨>*¸Quj’Z‰ºÂeŸÞÀ³…öT‡±á_ˆIB”J§`Û|Eo®¤“.†îõéĈ×y2¾w¥ããJßê»è-&؃,ޏc#­æûìêÖöã°kâÞócZø¨  ÂàËö?ćßÖ2«Ííí'»/³”ƒ@þÛðü* ú£ù‚ü͹½ù`2eõ| â¦Sº™º‹ÎÜ@³ýîy]Ðe׃ÍýíçÏùPŸlž¡ÃÒµXinýüÛíØSjž\ÏHÜŒÁ6yò½dÑÅ Nš¼õý¬t’>ÚÛyyÕû‘îï¼¼"àð¥àÿÏß&ÀacS™.ÆŠ¾ü_þ·¿IÀÿêès² –$Á’¾$Éÿû·¿K’ŽáG™Æç㻩Kd’þ_*W8¯ôãt“ÌÖê3±§E„yñ¤„ÿávæ nŸ>á%«M#]éÂ×ÂA.l¾ý§ÿ,oÔ) ÄKÂâz©$„—Ú´÷úðŸþs6%y"ݬïHO~@ƒZr@*ËsA|gÿë„Jêôñ#T%u·hˆh“‘ œß$ËHÁÁ±ô/¾4áL[»,b«zÈ´»)Ññ,ì9¸ê—<åP(^™ÇÃ\ï%˜.Ó÷²Í¯ÄhÓ2YÓË"Úq`I*/¢Ìƒž‡¹}£0TÞÊñ&«àƤKÆ'èï˦¶ùý~2û!5}tvŒã¯=¢`*ÒdzˆU½!IJ¢«ÒÌ0MûttÖ«ìÍá ê‹# ÂX›Ó‹Âí+r \Ë@Щ?6ˆIßeQ)+î`©”aJK\PÕÁ¥‘*´]èÌD×=ï\®#ÇqmË÷;.êj»áŒ5+tê^€ÚÉnì&ómQa|Tzú€h»ô”Áwz§hÄ–;Àz:{¸ž$·°%Z—‡§ Ù¶Dè`ƒÓ™ å£&7Å ½ °fa]Q¯AÃzE(wN¬V!ؾæØÎ¼~NŽGGBê5Rˆ,‹¡ð(¤EE‚Ã=Î(tH‚ï0Áé&ª‚Î06w"]†Qw"tä”$²:.Aë©pÒSµ2×ÁÌDZœ¢î‰ÀI@Øö;còÜnßžGûêõBìgóÄÞñÏÝ~¤àóÎ$ä.¯BqdCÌ¥ˆl8522£,#xƒŽ+ ÌŒÌAÁéˆãVI»Ã°z%\çA‘í9n ;ƒÐ^àTnÏ÷º‚Xi8ôò$W'=áw,âGßëc!THì#$½°GÂ(Åp”²ûT:Ô£ÂØ¦²+£ƒà#ª;÷Ìÿ ® Îz~ץºàS!ã÷:Ñ;€$„r”€ùÌw¼¶çöG4@]¨ÛÅ6kl‹qUÆâ¢ü"رNÌ5¹‹P€%ëú"Ñ®8…ëRÓ-[§l_¨-Ò­—ˆr­jŒe!⎈ÍéyöÀ'W9ÒLÃá¤fØ&Ý.䯹 Ã#]”î™káB4"~âR1M;s±0°¶cçA8cð+s`a—äsõàŽDŽŠE ¦(‰]|fa…HbágØÜR·Œëi¡Èî3+UØÈOª ž’O¡š·ÇrÔs ôºC¢!ìS“0hJ`E;®¶Ë[Ä.Ü‘Â7äòç8zŒy9Ž•MvoEp‰«rÒÇØ“"‹aÓn¦¡–¢ïò@ý9Ü2A.¤`$ÎS ¿ý²VŽ›JÎÃ%lP±ãªÚö.iˆ`›¡ïÀqü|+¥¡Û1c”b(‡þ@Bû#q¤ÔìºÃXGÂ?£øúÈã Δ’èDÛlc%Ñ‘NË&÷sˆ:^0²RÞ÷Rì£mЀؑlî¥8Œý!Æ$ç\è8§®‡ *1Úí«ðMX±CB¯+¨0У€ô°ÍœÁw„&xRÄq}{ªkªi[ìæÈzÑEž#|´Ã.ô®-lépšæGî'¢(úW»»OöxUE:ý35AÇ;Ô÷ˆ¼pM¡Ílã]Z[V£Ó.®n¸qÓ¢(î ¹U¿˜Ô¬ÇvHkÖùÏF|šÀC‹uv cÇ÷ßZî).4dKlþù·VÃÎæóyA f;?ÿ®}òóom²33Ç5ÝÚ¨M<|›Îƒ‡»ß3˜Ø Dðåy?ï1ü¼î~;qlŒÁùáËB§ñóïðÿÙv¶%¢Åxív˸ººúù·{«@\˜xŠØÓ*ႲeýAtÓ^«ÀO=aÒ4„nbܰº÷|~,”h zg7.ç=Fº‘PU S]DA\ †W·Îua­8Â9»ûÚ#Ü[Û=–œ½.Žœl‹ƒ¾iaš–m;­×ô¥³W'Á“éñdbÚ`ójà×wæ;ߨѫÈ4z;˜6ù22Ó¿Öb p¥D_F³dü¹õ$ìE 6DÜ»Ö^`HV(6·Ø¦µ&Äç¤;ïÖ×mÔvÙxì I'§Øu7 }¨ôxzáá|lžã^7\$‰¸:5 ”ÅSÌTñq±Æ„5%ê›ë†Ûí7-CÞ¸4­m‡Pµ€Ú© ×ÛEÍ26°;b®ÌÔõ§Ñ<}UüàˆÚ–q».]¼ˆµÉš.®j$¿Âen§ß&jÈŠ.ÈwÆüˆÜLâ`fJTÄÄ۶|­éAŠr Ú1¤dü’zQì•$M¤°¼tF&±Ï»òeo c†'­—Ov?y¬m?kî5·_>ÙÓ¶_4÷÷Ÿìkh=²¤ÇIj‘¶®±ºÝ“ËŽ!CÔHˆóóNn*ÓåGçEvuˆ Ù­}G nz–³—Fæ×2™«É’tFÚ{eÇI¨GÌëɪ1戀r8µ» ÖGwLP7íÔ¿™²0^űcǸåÂxüS”º­¢BB-"4C‘>Nä^ô¿°•ˆFŒ ›ËUfL°Ûãñ¤1Ã5%*Þ4ù<¾Š:N§ô9/"FR·¥•hÆ’öƶYxšD•å^ŽëÓFë´ ˆ‚JFÔ¸R÷l9LpQœ|&F?«b`BMò—¸¼L¦¨,ö”Øç =(ÈKX¹.Šco–Qð•ÊAR3ª !ìd”^×!o²à"îu{ÃAéοúô7÷¿žÝw ëô×Ðó¥ê(ÜADþp€U_¾ ˜n¯TJä‹ÿäo¹¤‹¥e”õj¹dTb‡ÕJÇÏGÄñCXvÆ$û¾?7)>.Ü/äŽ{¸^ØzÊ8 7ã7wŸ¯i^Q'X#'áÈ.ô:µ`0l·ÉžÃW/Ÿâ {=¿?€vgèÀÌ¿ô_8©=óÏÝwdNƒP#÷íŸxïÜèM&Œ«ïÃŽõºZmÝ‚‹·Œ ý Ÿµ3Œš¾å^E×Ñ2ë2ư—QÈæq#½®{Ìö?i6¹Úÿ³û6T9tžù/@'0#ƒ,\ˆ>Âw<\+ÙèÌÆr!Ì&º'áãyí)¿@g½Ž»¦éc[;Gätà9.{Ô€#³Cì˜=VÍ©?<9Ÿ°” ëø›ˆ=IÀߥb¦×Øù<¢åuèÓY<²–ǨB½cœ«^°J1 ¸¡¯i–˜<•ðw·Îà1œ'ëÄ4Ö@UÀó)rè$¬ËQvÎ\ÔxgXX2·UÎë… á¾ïÚþI×»« —‰2Y!g4Øé¾»)If²í%$#Ȱ”¤!ÛöûĨ0+@žk è^²,9v:—Úg^àÃDÙgá!]1W^‚Ø<vIªð;ÿœàæO‘q>f¦0@Õ¥ïI­”çÛŽ¥=Ǽ­£‡úôè€}:Nñ²í˜]ÊFü=C“P…*^ƒ£§!¡õÄ›vŠg6?Ænù0;|6Ë›ÀrÎÚ˜W¹ð\\.`(R´£âHnðjxòNñÎiœž¬ñ™ÔÙ°œ”_’‡U ŽïÒºWˆ°ªTÓ]V"öªJXtóÚsRný!{¨ÅƒÆ"D{ŠQ?^5Âî÷¸òŒêFV‡ÒZCŸACàCA‡fÌöáUAŠj]Æ mN<;Ïöéã„Bµ ÍÔ§Pij\#’:ãÎF«ƒºoq.®J™ø(4aáuj“làG'uÑp¢³ô!rÐó#mêä:µª¦äÞȳ€aÞ IË#:/ ¨ÌàP,–œ{%RJêY+OÂܵœm¾pGó¯âdf¨‡âLÍT]ÇUŽ«HA{BÛ»üÜæÐÑ«ÀÅl“íœÇpÏ™wåâÂb#¸á†4·^?OuJïqòŸÖîûg$8'uéîåïl˜•r¹XÞx¾ÅŸä’IÝ™ƒûÛê£Ð ÚDΨXC¾r¡«u„·Qo0$} ¸.Çö‡X#5ýÎ7dcf°©Ð,t=¾¡Ä€Ä7ÊÖ)ŽQ×>Å•Ó_åƒé¯ò‹×½ W¨L‡wž"ܪ8›š ç…4£XÒȃ²mVÕ7£ö‹Ú<9l¡½C܈akÇèFð0™éã/4n¾¯uPÿÄ uÑðJ&]×Þ?X_¯±½¥‚>5/†>7fBÂ"7ô].²ñuc"/ƼxÉçóaY9Åjø7G¥9r–d° } ~ sä'",k¨úÑiÈ©¥(§ZX©n’ñ9ŒÛpï‹wõ–2p¹¿dÚçŸkˆÛG6YªŒ¤£\JË!‰‰ú¼˜à$cšH+H ÓD¢åTËXœ&6Qåš`\C®H¼f¯êB7ž¬I¾Ÿ)F·úøþ}!œÑÙx…B…^ÁŸyóÚ¼ú]PãÙèÙümD‰5Ä:qµ•æÊ(˜_¹³?´~Óp7ð9®=,ŒÖÁ¥°K=N½ÑøARÂüuq­•å:k>•åÅSþ%Œù}ôQžž”¤KM¦°-i åã#¥»d` [9`mæ_þæï—¾áH2£ðNÒ¥f¸b~3eoBêŒçö2d²Éÿîh·mj™‹¬–i”Œ¬¶µ‘m^\lݡÇn¿ƒb²ÿ.ZÔäésϦ ïhø)ÂO ~ÊðSŸ*üÔà§Ž`wÃØVpVÎïV¬éf]6¹ødÝüÖ|¾2ÌN,k ‘_ç„ioDÜoÿñ'"ëÿù·æ“?Y1ñ°+¿qrv±Æöö?ÄvšŽ4pùÖáBº8,ì(^\€Þ +ÃÁŽ2 sl….FÖÊ0] 7ïbOyêà©kñjç+z SâŽw¹£Äeî¨pG•;jÜQ'³‘vþþX±€SB ¤"Ä@&B !ĸD„ —ˆåÂ\"J|Ò!sÏÚ°‚þÃ!ÝIbvéòÌXëhd±Ð¾êD¡´3’Ó`=±–n ávÛ-£êa1D9Q÷F±u9¼iG1Í.ˆ#nEÅêXMÑÃj-S;\À¤dzrë÷díu%þø3B¬É6ºJù"<çAwÁ’œ¢ÊÊ}PãùˆÕ“fr s»6ÖŠ£Ù´8%Ÿ©< zOѽ*ô)T©YZ5O ât÷˜‚Ýn&„´hùÌ<5¿3ß…}ì–Ö‚J™v±Á Th ¯Ãe‰DÕG-j‘cV&>b8%º«æiÎü®a¾».®I;žà˜‚N’t@’š:m0„-êZÆcBÓ×Ã_E”Óa¼!Âi¥«J…ulf™âKêüüD‘Ÿ£¨E~Œ¢™K·â·hù³X LÏä‚"ϒͪ UB)v˜'™MÓ¦TfŽ,·G¢’EB…dñD,Ge*‘.…Œd§YR $<í2‹‰€¼(b†slÉK}§ îT3˜#¤«s„v²9«Ñq2ªGb‰ í}ªGœ5Ér˜z°AŽ>~— ]—ôç~‹£Il>S4§ÇB2æÝì­Ó*¥Væåg—çÌgKOùjLP£}ÿÖÛØuXâ6…1p¥JŸ”ªÔ Pc·1×ô6 `—„㌳¸–ܰ ¡ePa, iuèrâbáªýnYªÅ•°îbG fk•¸R±†ø3Yh‰òçWïo¨ÆãÀ€k—£:x`ö>_ƒ^7»b€$™jG޹G[7ж÷Ö´O×àLÅöÞ‹§sÛ¬S;^J[¥Œ¢RûÈl,ë!“á–И šÇ'³j æùÁ–Q¥¶$Õ¨& £Q¢¢ÆÇlM…Êš»9ÍS]71§ü*ʯ>Ì[yz]¨ÖH¢o¿ý–·×Í­mÔzýæá]k÷Û=://…ŒÉ,6%Û4W1Ì ·€ëuÜiC¸¢¯ÈWSlòí«Öæ¡ró`QHvßvýó®¶ûÍþó{e¶‹Î'Î"Ìâ~A³wý¼ûu<ç›þrØ[y—£Ã8éRU ](G¤ÃK€éÅ¿æ.9×Kra8@G‡ôòdr~ê˜,ÿÑG‚׈bއ]LñØBöÛ¾ÛL,…y˽Jšj²ÉÍÌI‹‘j…´[ð‚?ÌG+ú°È©ø‚UpÇeMcƒ7¹}n7UųhëS¥©|Ù*Ï}Rù‚UnZäq#40#UóÀ {#˜?w§ÈÁÈ1Fg5zÆÿAHˆÜï‹I`#@Uôð-‘ÿ5·¶‡ÉÁI$'@„3)—!²bÄcT¬À%P”ÅØŒ6$bCdW ŠÇ«p"Êßã&5ïJÚrqJ}‘4æ÷ר†&uà° DäѦà!ÝéÖÜ2Éž4ˆ¦'ŠØ†›XpŒ=4G Àb0Ü×Ìý$9,Ð75¢ Þ„;+Í{ÿü×ÿüïV¶’Gl´·¹º±9™Éƒñî~»L¡v¿]¨X(‡å"3‰W÷Z­ÆÆòDC¹èTÈÕò„üç¿þÒ<¹nBѽgµZ™ÆJs·<ÙM\¥r%»D¡1'FtÝf)tÇn˜Á|)u²`ýüó_ÒOR?so5›Ég7‚èàEßì†çýà "¿+ÄÎ$öÉ¡à®Ù Í ùP0?òËvªAÒ1K\Ü75»:YÔd+î£ùH‚‡a>‚YNs±3ÞôÉ žmæÇCã¯ýÑ㟱3¤)@štî½O”ÎD øTQä0ÏA\ð?ösÀ« ? üqg›ù,n`’6¥­4<:Ïq:Hã7è"‡ÒAØ“ÈSÊ(˜5cf#iÇiü* Á êôFIŸD¿g:9ˆÌ+²e˜ÿGz"yY¥é“ÞÄFÍwRYÎU ·—˜ìŸÀ£¨ñK3t×$s+ðKž¦·IWÁ3>fÚý/䊂e6cî*Xn£ð‘¨ßü.nñw«#.®Ä@šRÁŠWùZ‚£HríÀÒ+ÒÞ?°,3ù°bîå”W‰}<&œÉçá¨ht­žj¾šß²g)w'â`m ÓæÈ iC*Ñ¢Ä:Mu,F[MöP:[!ëÂÚh¾%ãÃô©1½Dš‘k 2! MD“²ØAÙ‘ô3m^l©åÛBr^$â›4}ÓÂN‰àÙ-å(ñJ¢m°R2bá†ÃÑ$4´ÕÜJÓDIj\ÌÛ^Ót„Òt„DQ¨¨D*@[©¼¨vëBÔ ‰Jl^ºìîÐà3]<‘)Í)”Ö1y¬Îâh,BuÒ‰¸@œ©dl ‚8 ‘ j,˜ä_®èq¡ñâã2œ{UZzA°.À‚;(iÏÏ\ªb(oÊ4Tu”2Ùbî–º¹¾½…)|ÃKQx‘P8IjN@–Šîƒ(|Ud+'1Òho^”WZo•ÄáJ >j„ÂBHy­2Zt=b{Œ5çÆ™s£¡Šå2ŽÒ#•¹2”éX¤¾V)‰†ŠS¦f±¸4¿4{XR]SÚr㊛l:æ"„³á"œf^ûZ3,ËHMÌãIÒÐ3æIT/•-I©ÎR|ä.úÜây¼¬'IP4)_ô<¢×[“®ÖºÃè/“F¹ë§‡{ñÜ8ÔF|"²Ý>\M‚`%®_-z¤¡bZÔ$a? ¸'æ¤D91>”mšä9‘*–{ÑÕdïúÅh¡oÓR ‹ãæoÒbÞŽ-þîG,þîÂ3ÿã–~á™ÿÛ>ìëö`¨Rщ"ZÅ6×ßà ͼ@¸Y²ÊøþÚP5:ü¯u$v´ktý‰±F8û œþB^“ì8‹×!#ó±+Ø!éúɭæÈŪ(g®ëëu¦¨Å.QÎ_UÄABÖàõ0,G „1ŠâÄÔ«emGº\¶±‰«¾]´z¸š½®­6X]ØìÂÀ‹« Ý“9b2,^”f§Ód7G/N.Í“_pžàB2Üc²Ü=`‡›¡Á}Éà¯û+l/¸»ËÁ{*ÜMƒÞTA™ý«Ú^xg^*\Å¡Úå΄x‘ù‡È0¿ŠBÂbµÐÚ{&ýÇ"¾T¡ùÕÒ¬=ƒUôÚåÌBµšÝˆ46ø,# ¼.ŽšÙÖ-$ijððµúº0ŠÒаæ¡àYđʗ„cV þU1¤!þVs ¨F2$™®‘L‡ÈÅ‘:4™ž 8pè›Îˆ,É.xíî¸×Þt4œ‰°ÆÂw>ýñ§ßáÿ{ˆÂGÁäÀ(R‘"Œäú[ŠæÞ¶¼B1Z†¼j×ÅÏX›½ØÔ–"dÓ‹Êm{´$y¶íÅ Íàv[~pö_‡óÎÔCcôŠa‡1ÔÍ‹l¥"Qâ cªbLUŒ‹uE¬*â6Cð0F‰QrˆÇ|Øõqà±}êÚoy*5fÎ[¯·¥)oÀþuWV2„ÍáÄCáv] ®PÔn©'Œ±Ä˜CÇPáj"$Æ ŽaßEÛ{ï›äT<ü’Ë YêCdo%bù’ ÃIÕÛa³y!Uy­øC0×»ÐåQBÍ$ˆ5žE\Q´­Uñahòq)ÆcÆ®sЦ"Á½[…¤'!/®mº9¿nà~¡'#Fìˆ 7 ç{ÚËSxlèb  Î} á¡t€Y‚}NpÈ/ÐÎaˆ\±AGÏæ·‰×ñÚm…ÇÛÐocd 3W³OQÙð2 …Ë:ä9í÷ýî‰vîáñø©‹zZ»É‚ßG' \ÛǃôshVßëv5¯«¡ã-Or—Br ¸ÄE7Š:îÀ…šà±$ï+t ¯!îZ–ãh=VJÜ"ÌÁQë0uK…“#£ržgLlUˆçÍM>U1•Ñ¢@øá¼Ð oàHãáˆÛqමnÇÛq`'ìÈÀ4±÷oRL‹ad¸C‚°ðìØàÔÃ¥ÑÇ¥®Iº¤ 7÷·Ÿ?ÇÅ~€‹1)l™LÃË2cÃ%aŒBŒ ºaTÇëæTXǨ‹u¨j%ÐÈR3"Ës‰NOÝN)Œ¬”{W ²éhîÀγ¶ …„†•ÞÐWõÄ'S#;jñ¨›5•¨ëAݬÙÐQTì¨'¥ 8Æ´ãí𖓘ŽiF‰ã=¯J‡™™vCÌšT¢\QÂÕy2¡%Û¿nƒ:Žk&ùxÖb Éa‚™ã˜ùÀ<ðñ³¡ÏbE€zЋrL|¡˜‘y'Txå™AòŽwé/[#%áHêGÂY#$ä1ùaÇTÆn–Td£1£„´«‡rÉûð¬4æÉ Á~ÀÐJy¥Ê#>©#¤ù ­| ‚† $ò߸ á´CAÃl|,³² ‚†ÑÏ\Ð Í64`ãÜYn1lZ!ô8­p&:p˜Ñy6ûÇ"Þu qÂyv E†b=Ãã-£ NDñމá¼UñÜù`=ÄYMÈôœíæžÖÔÈ( Fa>çÕ˧ë5íÌ'ŠdUš }ϾÃë<Š~çRœE±çünæ\tƒ”óR­0jn|4< æK_®ÕUé!˜LÆ<æ{݇vo‘Ûú½ ‰%¬h×FnQà!R:K‘rñ›­x£Si—F‚Ö.Q)÷—”—¤ç¸h1…¶  {>q¡ƒ%eíR„;xaæòîÞùý²r÷| FL^¯Ë£­PPðAÏ—•£Ë”ähµPr´Ê.¼x1q«E–ê.>›"B —¨×÷ºK0¼ˆÐâ%víåHÄ-\¢ ‡lw9­,x,\žs¿ï,GœEÏq.–Ty ”–-Ó²jðæúS´¾àÞýðaçlP3- uÍ„»IM+ŸÏ›[|` Ë>f70Ú|¼]¬º#úw±Ê6ÇbYù˪‹õ"ýD/x%èr€I÷qÂä¿M¢l¶%™É`98ndÃ,ë÷l‡lY;~µ½»†G­ÝuºçuÎÑe@ö®iî;Ø÷ÚÖh…rEÖ@Rúôåú˜B⛋'jDJ V€„–¨à1©_½|Z#[†ºa¶òqµ`»ézQd¢Òl`|±ó9dë4ÈêÝëÌ6˜•KºY^2®Þ¡¾çÍöÏ,¯‹È±cZTØÀ»x§8·œùæpÈ ºÇ‹¿Ú(ù¹iža6P-0Ù#},K Xôò‹@ K½·¡“Yͤ4÷—jèt×Õ‡Îã#ÓYŠÔGK¹W Èeæ•*m@è±48ôjt·BEÉŠ¡3C¹:ûn±¯µ¸3õü¼  ¡z22J:.¡µØ¹ýˆi爫çhÁúá³ã’êÊh•–”É­§]fD»ÌˆvmD¿D%õ®ŸÁFývüºïºoÉA£bU_ÆacLYÔDKŽ%ìš`|-\äàÂ]îh.¸ÎiÉ:¸«ˆ ƒû:ïßm~—9ÌÁ¢ezãdVáíÅ ;€ï2Çâ…ïã„ïKveÞeŽãEË~]X›<^¬àÍôŒFøãlQç*þ:«‹üi ²ÓMc¢"]lÅ£4á®Ë­dB1z1s/ô垢w®£ùŽÓ¹„Ý™pVqM |:ä…að[·GömN=<\wƒ;*ÊϽFŸl#<::æ¬s"™È¥çfÅ«³~ÿðßdÌîÿõ?âÿ%“8𭽨¹ßiR))”ÆÅ‰æLS­”…åÞœ3ï£Ë»egÔF§žó2ÄH‚]*L†¸·Áœ–ɯJ­™4øúÍìZ=³Úü¥Ë.04(EC¼®ì¾×Ú9\ð2Ð.ݯ±áÚ†®ö\CŽ#\ ^ÉëyÎB“ål«û ·ÂÑÐ[ÂÉkæá1âEßÖø›Kp|i”8S€ÏÓ3/FО5Ä‹3°¯Òã*ã‰zÉMRýuäÙ2ÙZ)"JÝ,¼]*@Üéäje;9—^+Ë÷tdÌVü%yØ6Vä27£‡ä›Àð>Ià’ßû!Ãû÷ÿþúøŸOa/ÁaŒúÜáñ~ɽôå¸÷‡pŠ žÑå¡Ü?æ¡¢ÄÍQCéþî/0Ãk±ØC½.ÌÖ¯®R¦ÒâÇ´ŠûÍ ÑÆôTo‚Ý\½½T«7 üA”y]\+nNø†gÈÁ/˜Æ#r¸ ±/9§vå‚î¢MÃq_*­ae …ü«YêݘN—Ê;o†½ç^Û³Éq ²É„œùèíäÌ«ïgÚgÌ«¬v+QxYÍR…ÂÙ´ÌLZXÎ,9_ù\Ž}µÐ¿ó÷®_|.{eßPòÂFcÑߊûƒžìïÄO¶&&xa}œ­‹…îÔ#O•åbþÔhá­²xÝÙmOˆŸ=< 5@Øs«ö¥F[9§ÕM1´n¾Ø,E‹a^b¬»’/Š“wÿnÌ¿Dk7©7턇 dæ.ñ4ý‡©ªÐ©,O4M…}îŒE¤ºZ<×2L}h˦ÎüÜÔ¹Wö %ohêÌߊû¹©sÜÔ‡¶/ùw—gêÃIs£2„ÚÔ “!⦞Išz&iê ˜„¥+`¦1ôádÁÕ0ŠÂ°´ÙÏaâ‘Íäìði%MBÆó¾“€ˆ8éËyMD#É£žÉ·- q^Hƒ§)nû ^¦Pì( b Ûã$g~ÇTÔ ·ž»/TSøÌ·-øvÇ@îJ'Íÿ¥LkN3ã=b{l?9ÌØÛQ 3uò|ã¤èÂ˺<§Á*̰´ÛrqïÈåÝ— |ûƒ•øÉñ*VYæÇNV„¶Ñ™®ÔûSûöâ˽¼n±#V¶¹èdàŽ\øåÞ^bñŸ<}¿3yl°LW &ëLUL±|=ø0µÀ9dæ.ÎJêð©+ˆÊ4vQ†cçùòÇ£$hw2D¼¸M5œjbo깕1Å…eà.ÉÀïÅ Üêhš»Q~¿ü äö¼›´ð)³1™P5m5ņ<Ù”>ß«[FvF¹ˆ]¶”³ß‡a4ÛýÐõ!¦‰¦.t»Š…‚±˜ÆAt m*Ú]€Tn=%/‹Ý•c—טN×x‡ AÆ—)%²Ñ×݉u_;R÷UŠ%Þԛݙ²ƒÙ‡)Rú„šR¸ð|pä|pä|pä|XÎ¬Íø!ÃØ|P,’êMA6p1×xbL“NQœ ×Ô¯ì± ×| ö€Ì6E¯ÊeM׊1…Ê­Š[ÔôEj P!Ë&¸‡–Óµ#Në IÀ# ‚ôÐ`àö»üŠ{‡\Ö)‡ Pl×?&:eú_è‹q@r±åš>&¬Cr?Õ2åk®¿AëWæBæ…UÆÿ¼Í²n^8ü¯†mìhG›pÉx\pE÷8g¶4Ó!¿ûä7 ¿ß“ßsò»G~Ÿ‘ßSòûù}¿ˆ8»ð›Ç?¸ú[”1¯¡Û½ »Ñ`,@jÔ~zTõ}zÔyzÔ^zÔ³ô¨Óô¨ïÒ£Þ¥F¡ôDzz¤t"·ã£ö,Ì`âg<–!“ÙÊÝߨ:[˜LT&ÓÆ;7½HqÌÇü:äwŸüä÷{ò{¿yâÜ#¿ÏÈï)ùýŽü¾#¿-òû†ü^iTOËQþãô('=j?=*Hú>=ê<5J\ÜM$ÛKz–ušõ]zÔ»Ô¨XùI¤|â®R“-Ú‚qÛ\ëkåÑC3X5÷Ísì-ÌïW—ô¢ùŽrvO#LEá“Â%↧FjÜù$²)'„}éþÆÁÞþËð´…¾µ·þ²¿>`×f,øí(kýOS®o×_-G.LèÇõá²ä: öÆsïŒ\^2ý–gÃÎÀëx]Wy™%hÁõšß×Ú>Ü#h]÷à÷ZÚÓßkIŸn ð°–ŒÁòÊX«Çbä~a<@!t}Ìð™wåp2J¸¨¶á%tö¯H¿%,ló¢ÆÜìþÔ vV ø{ˆÑbìÇäÑÇ5¿ÝÜÁC½"]ìÊ<ÙFo`-Àç+Ix#ŒÁC—Œ' ò"º<%ÿIä<®×^½|JÐD6›p <Ò‚¡ ¼Á² óõóo™‚ún¯ƒl÷aë_þæïi dŠK^{3È w-~Mü³‘i¢$†Å pqk®ÿp¸á-ôñ*LãŠ3жQ@‹}˜PQ圜z¿yÛ9ëúì– ªdb/À WrxÍ»‹½ãûoQŠÂ±¼ íˆòŸú ­ŠºscÓÜ9éøêh8]\Šû.®º®OÀh:s饂»‹Üwðúétè'@¥E'“ªBåùƒ©lÉ øÌ¼@¸J{É›½7«l{qî‡ÖÌâJñòÇüæf#Óø‹ÍLÖ¼pŒÜÝ¿Ü,®djÍìÊf¦±â¬Ÿ£ááÝ|*ͦÙ<Ítszöº:Ê™_}ã[+C³áç ÿ<¸ÄÅÓÚÜÄtõ•÷m1ƒé¹•ó .BµÆî£N–~QvÅ|fîQÊ”tcóôþÎu¡R«–qG2×0͇¯á:ÀZ=Óð6_]êæNæ×·(c¾Ã¡åÕìõåªÙÌ`ÈN¤ò¦W°*ó\oßl¼Ï毿ˆÁÕF¦Ó02ï³™ ÄÉç^ô®¿vG‡y3À<ÙÛ«X5,N6‹¥º{”½¿É|÷²Ù–Éjƒ 3ÌÖjƒ|/,æ¨nWÂ6ÖÌ·+{+8¼”…ækà «;KÔf^V&JÒXÁ‰óœw‚#ø6‡ÁVvÏ"D%ÜB¡ê $ýŽ(fíº°VeWæl¶±þ«õuó¢^¾__5K$ Œ¬n¯¬ü J÷ëÙ{to%‹Û­j#³²k^¸ Ä–qaG¸Sá¢sÓ0uü_æ}¦ÁudÆt„É(¥)jµª¥ªé½JOwµ«,ÑSÕq=)ÃÒì=^É`×ûìûûÙÌþƒ‹GæÉµ3Ê~?Ø  ƒø1?†ùþ~†æþ‡߯`|õB&»RÇŽZqrÙB«æÝÆ‘ö {é|A2蟪¼PKQzfeůޯofW¹Ò³‚ÖW²&f§²ùBúê&)G´Pê¸hdY,Ø“ÍËÇwÍ€àÐ/vóU6û>¹‹¹ÔqHâÃRT%œ åhÅ‹ÿË2´{¹úu¡ž#f³»2Ê®6pÁº.®Ëkxt4ê\¯âþEg‹M%{]¬ k×õµ‘ƒmÁì{ÌY¦ÙøÜ®±¡­ µ6ª®u®³…Â(ƒqlVÉå©£Bsäµw È„ògwž"¯ã:›šÛïã£Q(@’v´ÀWÛÄ}EÒðà–Èîø×=Ñz¨ïvá…n/š]8uûÏç#Úûëëï5 ƒÛŽû™Ïæ>®J ¬‰ÊK‹;(²Í몺a7Q70‹¯Àæõ4£×C«bŠÒr_^• ¾>µ 2{25Î\BKLe7Ej«¯¶w³™<¸ó¹VÆü.÷…y”1¿ÏÞ­×ë#¬ÄÆöuÿ`–ž­šû«¸†)C;M [·‘ùÂ|¼šiœeóGgÏr†tõÕæÓìëg &°•Šd+Fqú¾lFƒ—i4—Ü_æ:I+‰ÐR+! à³ùíÏÿ‰\‡7Íš@Û%øgžûC¼rûþ1Öã™×E—–HSaMö†]{°yhnÀ~Ëë¼Тô* üï®ol®y°þƒu½þ—¸2 ãÿá"bUð?ì¶ÀÝY\èÄ@BlƒÆŸµB¬ˆÔ'…à†ù`ó¶ç-Qp!½û.ªíåIgž/[>šÓG?\/ERóüÃåär%=:ØäyúýòmÕ¡¸®ÃÄRYðÔxÁÅ#\ˆÛU6¶ð™_è Fo‹' -3ÿ…ñG—kõ䓣Ūüè©P–вÕþƒµ Ëz‘iÜ˼ÏåÜͲ ¶0Ûœöv7¥0âEC c”»­1E5f³§¤õ.ÏÅëƒvÚ·±qÖatsw%Ó¸ÈÞ]}ÖÐîÑ¥¿::8ºG»±q6æ,gë›Ú™i§©¦Ÿ"ÄáÄÂùX~÷Ø©ÚÂô>õ0º5z*à#)ª[¢>î‰dšT¬-Ž’o‚‰ëäî{ñv÷gî…6ÄE’ïže+»kd|Ãõpxàäé»d¿²ÖÆáãaNØíb•cT° uâ½s9Ø“‹8^xµv…æ÷ÊÆ©{Þ{â\ « "Œ÷6ÍÖVV9ÇR§”6Z°šd¹§l´g\0¿ IÇ;ó’³LH{¿¾þ轄­|y:g"–H¢¾.)?d«2Ì™ u<“62ÿË`ú71 2pz.(1+Ò(6WÇdâï¥P»Àc]Û¥¥ñÜsÜØâ7Ïjí 7w`­ßÿ´qA3ž¿…<8í».Á†3Èžhmïâ\?G{ÉE} 0ì±™4„sç–«a«Ps$/­ƒML~Ÿ-¼»?qÕ ù]¶Z “q1N¯ Šïá6)ö»×¯ùËèÐh‹¯¢3Ÿ ¶&O‡?‚*/ÓxøÿýÕoÿ.›ÝXèjú‘j¾t æ9ȼyE‰M@š{~ç%žù}ïÊïPGCØßAyÆ*Õ‚²] JÂuÒõûn¸ï…äÁ³g‹~wô€õaõlBÆ£}fÿaР»Þé,Þ:™ÀcËÈ•šAjº3¢ß6 h·ÛlC‰E zÁ¥E”Y@…°$E]gHõ6-|̰ íý¹ª—î+¡Mbf×´Ê0²ôìÖuq”AYöd=ìß¡»U¨Ë ûV¤¾V˜½‡°L{…ÛY`íÛ±×mûwx×7#Po/“ Ü=­‰«ò®MjÚPýÔƒ¶¹‹û8œì;#Á>®·qƒáø¤ºÏ Øp;Ó N§= ÜNœ»Pöû.tM²yòVÎ:„åÍÆ{ 1±å,qJ&¥eY–Ü{²c¯ò {N”BÌž%-³µqcœ­*úBc®ço8g„üŽä¹"¥;EÈ|øÜ°sDH¼qûS`É¡"ÁŸ)ù?Ÿ³BÈC›Vyt˜kܶlÅ1/ 1¿R¯¡ÞçzC¬ù\ãÍF0_F÷æÌ£ùlÞ¿›7Â`ŽÓË×|­ .¼6p³M,`Ê‚ûúõë7´ìW±×1q^'!¡¢M™…Ç©ù¹«hl–Eh¸J»äjψÔíÌg9À†£¤Ä-‰…*n+)³£evã›]¦%”>/^¿yàâ; ×$£ž´kÐ\̯]£z$ˆ5e(ý}g…7…oæ[éÞù¿üòµ&‘άnï½xšeÍæ¬´{ÎCX&÷͇½SíήIªW˜ésRׂÛŽ3æâzß»½ÊÍn"ÿ»f_¦„LKP“=œS[û{ÇÍ×,Ã~A¬ÓÏm™}m&fçét2HÐ1¯ct¾›‡8qõ%Åy7,VdS\œÇs§>QçöTêq*õ¸(ûËÉ™`I9óýíéä›1*¹\²õá½Ò7·÷Oß%•xglžh…nÏ­Ð*Ø…†þ¶™*4ìs›tŒ–’`éÖ€Ô=qûþ0Ðv·÷žŽŸ´^î5·šŸìo7wŸ?ß?~ñü哽æ Í'çióôĨSƒ#¢t¥ÞBαبç{ÁqǸ}ÔYÔ<8#½Ø)gsD˜x°MÜ †Ë•“p°àµ¤Ûc¡˜6šÿò7ŸÛÚ`*á]ºðø1a„çÉ©YðCW‚Û%ê»d Z³\ qÀsmØ;é#XøÚ«®GæÂ =ÿÃ@mXæÚuûÍñœ5-ð5o€‘9¾tWà ¨íŸtq©ÓP§ÃfÇ»ïõA^{ÞÕp‘tYp´¸h6êbÜÚ™ÿÎu`Vݧå¥DæÒ30 átÐÙ(—÷Ö)òÞ÷óúXæ.óí¸çˆ9¿ Љ‹ÝXbð¾Ä%o8¨ÎŽíwŽhgœ™{ß¿ôÏ,?Jýu‘…®PÿxÿÇ!ÖŽaËÅ OPï“:Ý/…s”éⴱ͢ŒíÂcæ(>aŽ*ªV™£¹E%žªTxÊå2Ý™_Úb[ôKkÌñ”¦ª<}B£j5–¼Ö|Z És„‹Mæ(×y*r*ÀØ2?[†Ðh–uî¨1G“!lr„M1ß,Uñ0/λ\'.׉êÄæií‚ÃE—9¸Nl®Y ´ã:±¸N®“6MUi»q 6Áá"b®“¶KubqX†Ð@\'ˆë!†q„ˆëa¥°1*¹£h|Š^îhE¯T9=?FCw´2»4@­¦;Z…Ƨ芜¶£°;pÌhŒÖîhu–^­º;†ÎãÕú»‡Á„RFŠfHA™´B"»](D…H€ƒ…&뛳+–ÙlîþƧ‚¯*øæC¾kÓ+BÖ¸7Nç¤ Ww±¶;äŽv™¹µC,#SBb•O ¥lHR§„”ŠètIªS#—Ê÷TIJSs•ÔP{LIK×tP²¦ƒlO);©·¦‚$åc:HRóM¥%©Vœ2 T›SŠfLIêÜé Ó*V®°§L‚¦Õ[Zkù©‘ÖHm ïiûxÄÛAýÎ%ÙvÞ è¼ó®ôcwïY/÷×ÃîoPI½àg¨ëµ½ã=ÿÔëž\¢°¿üzÌQøk×qÛÈsúïyÓqŽ÷ýÇCݰÍ}±®²Q u†¨ªt§Àdq™¦+n‰eB›Eéí¢.ô-o$Ò%Ùò® ;Z[Ô­”a'Šà »LyØA¢pnì¹'xøŽ:š‡µk£ßh&ànþ·!]Dêæ©ñ¤2bŽjäØ ån.ÀŽjä ×¾l…’ÉP¡ˆÌ7žV5‘h5u! ‰~ cJÇk·qÿ k»ÖîûgdI:}½ëmÿìÌïŽÄNWE·ÃJ‚ºY¸Ñi¡€ÇÔ+¥0uóð²|Œêó.î°À^m™pÉŠ7 /Gè©›‡—…ðr¤ûǸ3%X³ƒË?P6w®_åF‰ƒõ¢°ÙÌÀü7‚åÁ°×óûpœßïâÂïuòŸ}îds8›AwœS:á¹FV±Í½*^%€ÍŸ{ƒt׳yûš1],Êœ¦Ï¾¯Š6»N€Ëœ¹XÏVlÒù22Ó@öâ1™5óéšf¾Àÿ:k€®a׫5B~˜$Í¿} bçŒ y]W^±Ì6´ ”ks£¬…¤¥ ú0Úõ»ëp3Ç´óäExäü—>ºË:Ü¿Fhc<áL“£Y—Ì6νÁ©¶qn¸ÇÕ &ÆQ3öaN©Iy¼óßý÷ÿú¯·6.èlÙ-ŒMa†,d•ãØe¬}¬iû2oä\\oA. B6€]D¦ØÈ‰ z,óMØ gŸì<~ò8¯íø¬7Ê<$ÂÊY¯ 4à<¤#ìô|¯‹¹;![Oû°cµKLYîàÜÅÄ›kÚÖÙµ¾ ¼Â…S0™U,íú÷[üéwÛY8žOZir/‡|UÝjÙüF{rGGsk›kjŸLñiý!{C`SýÀiýVƒþf~•2ÐÌ â- jv/W•½ :ÓÙC—½ú/¼›5L]³qw8ðlͽ@g½Ž ;ŽÏO/ÙD)Ñ"™Ä ˆ íÄ÷áf=8Lúl‚&3«Ííí'»/³¤C¡)ná>8Ò,l*oŠ-Ñáê«„;-“p²8AÁ­é£Õ¥QdcÈ„úîÓÅ܃Ÿ»>5üÿì½ëV˶0vþF#Q6ÎÚj„D_$X€`{/{Û>Æû,oÓ‚¯o-„„ÕˆÛßù‘ù“7H2òy„œ§È¯ŒŒ‘È|™³.ÝU­nI`$°­¶EWͪ9kÎY³î—N•\„NW-x€H£ªÑ¦wãIÖ!Y¢ýLÝ&øÍ§ùúÆ'ª‚íOÿÐvvv´OàÀwi&*a0Cºó…ÖÛJüÈûi”Þ€ûT½H©p.nj˜|ût*Y’3ð„VkOèx¸{ÈÕ*oüXÅêöºÇÐFB»H׳*%sÆÉ|]L^‘‚(ý..KÑ5)Ö¬;ä„D]ãñN¨Ã)è2ô<#ø¥¸–¾*³ë¡Dï_¯A‘Ä[âÀU³n˜¾ƒÎ¡Ón6Ú)ò'‡Fã‡hµ•ˆÚŠk0j§ã$ˆ1  a!RD+Ð N+¨¸­$[t" DˆÆ7u£Öl2:¯N —¢¢°øúR)Ö–^Ú²jŒÖóà+ˆrèô’œÅ‘Î6"³¾xšMƒ]oÕ4j7Û”æè¥t9¨aèõ‚. ŒVSUôˆ*žwfsPôàóvDµét¼‹¢§°JCâõÙªºPÛÅ£I­Î×nû+ë5oíî¼zE\hª;Xà¡oGoÜfÜóáJ ªÆµˆ:„e×ú³önþòÿýÏÿËÿ£½¿”J%mùÕˆO¹·€åG3ý44\99 ׈?€„FÞãoñ–Ýì ¯{z±ÁÉDãPz¾”öovðMò–%•g¼*bÛñiÊÚÚþþãbò؇WÌ—: T6ÕY ð¢Ów<T•¼D4/æ‡ÄÙn¯>|Ÿ&¤Ï§d6àŸû?ÿHÙ),)7™N~it{)‰É³ä>NOQAùÞTð)…›ÈvYé³G‹ƒ‹ËåW™_œ€Êî´…#haRë`ÔÁfîÝWÜÕŽá´æèV†¿+qù—qFjºþ¿µ•eq¼Ÿ~×€x'¯f¸ Á;å…Ù3ìA`ÐAüÙêó‚Ë€|vÜ3øž~^.Ô^·Óïuñ«£ÓýŠúÐ÷È·!užø”7ù%$-0 LY`I¼¤äo¦ÿ à#ú=ß© øû >¡ËÀµHÃSšP?œ@´›Bï¶ iÅ÷ØßàG…wÈXÛYÄá í}Ñ»Äæ32Ì7ë3åuuæ¬sÜéžw(ë0¼‹Rïé Ôir)†“—bhgw»Û… DDºƒ­É*˱@%8éþÙ:éB`+è¹Ð$b¯6 éâÍ­·ô[=fÕ`›3šN³z³¾yq¹Ý?¤1â‡=çô(8 `z|CýÔ•BØ0ü]L®•}•®’c mØm‚<Ý>.ç¢×WI¾4-FÔotGµ– IZb°sÛ¬'L:Ût÷Öÿ/Œ©ÖúkÃ\•oƒ„aèÐìö°G-2•°k£¼¡…¶ˆ8ïWñ4„ͱkÒä#;[»/Þ¼ØÝ=øðb÷ã‡W;K8tÄûêHã.6ÛE—špÔ€¼€Œ]®Öƒ°^˧¶ÂcqàSt‘D6Þ„làHð8»¯ÙïÔ‘q$ƒ3Wš7ÇŸÕc0[¡Í?Äô™é@>33QÒ‰t¢Ñ-÷¦¦ÆÈEPL”£D°åVOºC']ºðX9ÊžB#C üî¼…;(Œ}¤ÄÉ„ïžÌí5¼—ÐòÀT<¡zÓ Óë¥Â˜¼Ìþg¢°ÿ9Ž›•F9&ÇÅèqA©ô#!ЦVŒHåXÑ(G‹Ë.Üð *©…»"¸’ñÒ¢aœ]¦Ýé­˜-·Èît?ˆˆ¤và ²•Ô]vñoºŸ¤Û #=?ˆœ1¼L5SU±§Ûã”EúA$9öe’$Ò#Q™î®ºS.MPE¾ž­0ÓÍ¢×ÇQ»>]±Â|½§ÁŸ"ýÛ[ µ0q ìd7ñ–?Ï86Ü¡ËôÔW„©tŠêKîçëû-íXnÇ_ åQFc_k 4f„!w¸ {·†¦}_çëÝãÐV»0ì˜év2šÈ´ZØ×»¬aÅ7<áqÈ;£¡¢å¤9%€±¨ù9Ìè1GýíPµ,ñÕ×ÊÝ)%°©ïÌHH˜XômÀ›B±â(}ô8“’jçÇ$ÍØ46ÛФâ8klƒ\‚•÷¦vs>xøÇ­ñIÝU5;‰\öá•qCônÄ—Ó6çþ]r½SW¤yȇ(d7 ÁU¨Å/>»õ·›!ý¦s—4Pê1÷LW·Yz•…©Ûj÷UstÆdg’ÐürJ*ö·*b,®\I> O©¹d/¥‚¦‚–²µ23ÙÚ<>f6²µÉ+#ÿì”}_0£VÚ… c€¹0qVï¿&¯YÂÌAëg0èoÒ#,ǯ3kŠ]!L¢îBB„c¥¶˜XŒ{`:É!§ûj1¿œ¨¦-‰"$‚àµÄO&Ìj7|",‰¹ek:~}üDXs'Y[‰‡Q7þIV}~w#Ÿ¤æÖ$"Þ›@™Ü+¥G H)HŠLj¡Rƒ†ÒÏ-Ðo.ˆ‹f}ÙY~±ûqwhfùãß?¼~µû;Î0¿zûWR$ΡÓê,ñ•…ä”2N ·¤ …mÛc3í¯¨ûÕˆï‹è†¥w„j(3O`©Ö;n…G ÝNŸH/"(ºMVöw–^OõÕ´Åz•-–HCAÄ22Åj¥¥ª^ .`ê¸gbÅ%R˜@j‚3ÎD’öNúLM0M½Æi§˜·{­Æ´6Jbƹ·¯È–JýþrWNoÖy(€cŽ·šLrÖYK&ûhƃˆž’ö¬up9ƒ¢{ùPe÷ò26™æ¬en½šA]üjBá†ë«I«NL%-÷nE}¤¤I™6߆†È-.}˜j–ŽÉ9µ}É/ªm-%aE´VœW†*;%-ågt\S”àGžLSùL¹=þ¡ñf’5uŽ©Ë{pôµQÄŒÜQC™ÑÏÄáÆš~Ëmœ³1<”'æ¡|9kõå$>îÂ/ѳù#T¡”Ï;Ï¥³ú˜WúË—´Ù{ùòÅ‹›†–÷®’õ®\g¸J¥áŽÉe7Q»‰é'Úæ*ÿ0µ´I;­â‰ãzúDqWÕ¸·ï²ÁõG¦+Ât5ndMOk ƒ Õ äù«¿¾ú¸‹# _Þa˜(¹ZÕoÊ•* r¬HøÔ˜$³DK¸¡?2=ÛoLÂï%°&äÉöóu繆¯"}/Ë©r”‹ºIYÅÃ8êKòEér6–ÓÙ¯Õj4qúF¿à‚A#ˆËóý‹³@vßoí¼@[޴úd=›„°MšÔ1ŠmÜßéè7KbU"éG%©¢Rpä =;lÜ«´2Á»É›¤pÏÛ!˜Ì®†¯"}¯+¦+ØKeOÀ&HTþ›’>O~Æ©Óh äwžÓJû<½’×°ðŠë<»Š”bJN”ç#ÓÙ³Ï3*íÌx·à(5!Oö9äÕ¾ŠôVËá¦FO­äh²:ΕÉ93“™%,™Ù~÷÷·Ï·>ü¹q·¶wlW>R h\ùœ<5©ÄÕmI%W)$²jâ”9žÓnÄã¿·ûê=v¾··F$¯5ì^Ùʤ6:'ê0¤“äüÑ€ òºSéËQ)vø +¡”. ¾¿hr5‰X¢âÏÁ`ä ¡òfÓ0n a¡Ü—%–ˆ¡®‹/kRÚ–zGÂÁhn² géíXF”‘³ïGhT¢8¾Ÿ0g§ÍG&ŽÚÌÜ{âX5 2ª›¦N 7Ù#Œ-–6Û˜ïÛüb ”|‚/³z³óE}|­FG‰Ç36dÛYLf$sšœ~âL¾UYS»–{kô®>äèöݦÌî‘Y ÈJR1ÊI: )Ý@Qðœvçì„–e63"Xè‡üçÿ:¸àLjøýJðæÅZ"&Ƨ*¹aL‚,/çqRþ~|)ó†ä×$¿¶œì$Ç{ìÆ{¼þ÷­¯Þý}— ÁíöèEÌÉýçeÇAjü$ ¼ÿó¿ò°8„O‘¤O€ð™zóXþºM´øš¤t\N¯¶w W±‘~ÑÃJâèÝ­WrâÑ%›xŸ"šdxæ†ýVÿ¬Ðs¹~à/õ‚Ó6ØíƦ½²²².l€ÎrÒSˆÍ&5p$é8'/ž›®–I.²¡ˆî³+އ%©º½À‡¶ð¢Ýíºg}® ÙÞ¾h‡N;ì^tÏ£îYÛïôœ¯ò»íàänÜ-¥ažÿóR·g€¢eP»cÿ×ÿvGî”–Ì÷9½èu;]¯ïÐc¸e]»ûÝ+z￘2GweIAMÎ4'.÷ ‘ÈW§}ý&ê‚Ø¾ïÓ  äkFmke…ä›ÝžÛò}O.¨ïÿññ÷woÞí|Üz“¼ý9›¤˜ k1ãOP1G3Eòtbª>й(ãõ&<öIÐé¯×ñ ûUt7‡àŒ9ŸôN—xìˆÛvH?FN‚Þ¡4ù˶˜x­OÈ\æí3—ë¶£nÏ”¶ÂîñoäâeLì„6rSÌÌàÌ&…µ`¤ .}¤ú¶b›O‹ÄU AŒy³Â"™†T@U»*l6›3Ó1WîªÌÎŒ”»Â•ËïÐgš oiõVv Êä7êëº%Uá( ÇJ¤Äé)P0QL&^@«³Ò'¤eŠä+Cú))jå&©Ìš\Oˆg •¸LígÚÇlp¿©[±Íf"i|ñ¯Z4]v±ZÓg‚4‹§¡b˜^Õäï23}¯*|`_Ì€w Ôb•UŸ½‡€#`Wç×d¯Âß.{ûÞ,ÌáË.0ñ\’9)‹Â•C(ÁŠ´ÃÞ•UIñRR# J ›f¤ö6n¹qš)ÅÂðÒ¦6F¨pà ¾kû¿Ÿuð?¼ÁÆ ¿ñé͇W7iWŒ-ÊÇQÌtÌ6^-8d­±ÆôvžîH ÐæêÈ>};u­ t½Hôb Á!eG‡´x® ? ~àzàxŸ!mòo’Œ‚·ºÊ¯d7&Æmª®³Ó:ûšŽ©WèÛ ӯ³Ò©=0š±ZkÍ;©´¶Êýfí!Ôõû,ÕõD(Ê(ÒÖ#M1F•Z­® °ª‹^R3î¡1þ]¡;n“–¬ÂUà(`”œ¨Þ¤ý¼Ù+üßg§ð ƒºV¸í93UÆ€~6©Æ³9(‹\5LPÖ£0èQ=M·'©FI›Û_P@U‰Õ髉î,Â& õRÓys…°&ƒ9º—³¯0íþö>·«•ælúÔ¬"à편äD nb©‘%ÑsrÝž¾}@õ.¯= †uª‘ •œ™éY—õ÷f¥Ì­v{«s1}âÕÄb¾ÞGÉq‚‰]\Û¸ª,­Lù³ LÌ«ÊM¢/™7SW&”ã.\r{`•…=§?årÓ>ÿ©M[jšä8¾iµES—2~uÊ/W®¿2:VáçÀÏ…vJƒ&ãeÅ@g{"xià>¹*°jt¢Ãª©}ŽÅ…|½¥U_˜Y—)î(e1a-$ŠÝb–[RÐkž… y¸U?Ì—[ /{ýÐØIpÒí]n‡OnãôrÊ|‘ °’ì³6ìU¾ñ+±ffTäËÑ­5é¢ù~—Þ. ZaŸÎŠG—„'fÆK¥Rœ "ßLÌ‘·„:5.Fí¼Wïóy ŸÏ[ø8©ÁÞeþ®ò÷ ×øÛÒj˜Ó.¬Y<“L“\“le¾—Œ©×ò´Å×¹zÁºÉßþ^åoWê€ñ¹ãŽ}/™Å©Ë ]SJ –1ߪ‹ ï*¯òw¿]þöø;àï&{— þ6o„2iw“Ö% Ú”;B‰ c"‘ŠI™ŠI¡ŠI©ŠI±ŠÙr¥T‘`žNœÁÔÍX,ß,0ÇŠp8Âás ÷¸Ã¢j4 B; B; B= B= B? B? BA BA BC BC BEèðÌ2£ÌúËb7Ƭë§ÜG÷¬‰½Dv<bkQÒ>ž'bØyÃCq¾%$ ¤=ÂÉ(ó°<§G£7JÉ'ÃF²Í*ƒ÷[:×8 ¶Ç4‚Žæ7$BÖªŒµ¶ø˜bE";æ$"ãê®6$aSC«IA‡'’wTz<Êž*F,â*ó­2_ §Ø9ÊÐmð2US6¢y|Î8ÀˆàüS9Œ¤Â^J6;L)•§ScU“äÈdgÂ7IÆÃÖc— ªÔ2óU˜Š+\ý†¬~n™|}xÂ6yTØû¢™ºDn÷âŸÁ%;¿o}ØÚùøâÙy³µ»ûb6î.«t]½9»á+è œNůՊmôóªÓjQJ}/òÜ0ç¶ú'ΩÐXk„³ÚÈBö¥ w"ÏÔïd3:lc(ûžÒNÖ¶Ð=u¯Ÿ£nx¶Oß4¾›¬xì9Á¾ÍèL˜dNP[»¾þn²ãQ– ¶KšmLå[ʳò#Qö¿›²°ÿ=†u—2/øWg¿ŸŠh„ò÷‡µ¿õöùìÔ?¹ÊYf çÀ/¿ü€yðPÕ( qíÎv¹Äu<÷?j]+œgW9úÖG7;pêe•ˆƒ´&˜K…:“fZ?ÉDý”8±7*¯ŠÅ)¯öEf‰"•uäNÍoòÌúç?¤ÌÊÊ«O]ýeäÛÈŒ‚.À^cƲ·Uül7œâ¥=p¶7×A=\Ñó«ð[Å¥=p4WŶ¨7Ó¿Ô_Öhƒº ë¸ ÷g®Ã}»1S•ì±Y@¥›“¡žFŠ…¥*@íîùAprÚ¿˜²ºfkCã“iF¬(¶2þ}椑‰2Hϧní_D‡‡Y ½µýËY—:{ × NÒ}Ü¢ÕX¢Öòƒä4É ÆÝ²6ÅÔ ºŸS7ë@¼ îÔm‹Ï\ëµ &JÐû«zÏ&ŒföSódö•àcÉv ü’k Ý¿féVWu›èï¨Þçª÷…êÝV½/÷ô ïØ@ïåúÚógœW,ƒ«E•võn¢¿Q妹ñË/³oÕG …2*é;ŒƒÞ<Üš(ƒrÙ¼M+øË/³ïªÎó${£$ K Ý)3Ï—G‘/E!Ý®ñ¦1//"_òõÁ`m}B*ìÅ礀gm¦9”˜u.W‹µQsËSÒc™]~ûôV24ËäàZ~`ÍÎL›wÒ`ùö } öz‡]‘‰yßSÂãë‘ï!÷¢ÌzÓʸÇÒàjä>-âHÑoªƒÃÌZ䆣‡šÜ·&›Óg—KïS÷>ÏDvúÝcö„leæ7ÞÂQôŠE.ea¶óŒô înqØJˆã)j›h¨.ëæÊ\²nf¯šìŒuäq/¾'«BtEoÕ¨.fªµA¦}M}gÍÀñ.¨â˜ƒBqD.²t{‰ØŠzÞe’Œ¡_ M`ÅŸ‡®šïxÒløØÜˆNqª•ô­÷VóS€,_æ¹óør‡fNœE?Lîd#IšG»é]dŒèt?–Îæ­&&ËŽGs¾ívGö•Q´½—¬ýòK§ÑÐlc¦9–¼ÊÅ)žt‹—鳯Œ›iëÒáýN‡Þ(½äû/)ì2³«•hú;EÓƒ„ª/X׃l­§wÀf¢ènI=/ê4X'Œ†^^ÀÊufåÉ sÿÕyµÛ¸2|íÊœí¨Avd(y«Ý¿SQ‘ݳJgZò€—È¥Hð2y0®P$KåAg"s˜í{Ê™4ýKª&Ï(÷Ôéõ[ø67bŒê'rl/ÚOÌû~°§þöÝ¿£z†g#:ߺÅ$ÖŽšYïYf™³?ƒ¢—Í5¶ÑäýLvÍPŰâû™º?S·IÝæ„ý3+yÿÀû¸x¬o6:“O¥ÑÓª'ùžÞâ9aÐÂPºT“Ÿþ“Ï?òúaÔ:çž •Ëý˜aÆÁ˜©ÑhÄùÑz$#C#Sï^v–x—%“ßÞÃ2mütƒ_êÙb¿’o9ÿÔ×í:*öˆ~Kj>/ýDýòy|~+—µü, .•un/ßl/?K£OeÛË·ÙËÒÏÓíÐgÛí`½A%§R'±îÕ2)ÞÚ*~šVÍb–ÍÎwn?Më¢+Gtæv1Â. í'±Ø,äÜ™™ŒÏúÇØÏ(Ô6©Ïmä¶6òÓU#TÜ.G¶ “µ·4„ÅŸÌÆ ”<×Õ˜ArK#ùÙZ”ÅGТ|‡fò³5*‹óF…î„ß”8û=")ø¶²¥ièÍC©gwyÚY»Ynu[=äE?‹»U_¾ü¡õeA¤.êžô^]¨oWÿ7¼uºQ½aßäNQOÐ(W°x«îÍ–êÅ׎yCq諲B_N@+)ªà8íe`Ëi§'ºMqŒ¼˜Ä–u3¹Ô”'+,ö9Æ-…ްF'=6‰àXJ“LÐÕ¿UW’¤QÚ·Ããõy–k–?²¼~zƒí sxÃÝσ¯€wú7<ó unµ‚Ƹ:®V-ß4…rÕXׯh6›Nýµj…qŸGݸ̿p–Π?·?Ó>/µëþ„íº¶Y¯ñhT8›ÅÕýŒ;je®”¥<Sɸ*túC9_OÃûô÷xìåÍcPÒlLGþ:“d- ü¦ß£°–‡VÄã)6É ´¦¬ŠÉnEß§çœE‘yŒ Êó­tJ/ô6~?ƒŽ[P4toÕ¸Ñ ã:ßö½Àáš7&wTDˆÓ”â,ÜÑ¢èé'#"ð#Qoé%4;PãBOñeú¢ôÐï·‚s÷BeN|N|N|N|N|N|N|N|N|N|N|N|N|N|N|N|N|N|N|Nü{ ÞÈš`Î-Äôvny?¿g!*_ð‡·Éß囯žý5+Œ½«ü½ŠqâØ%íª,v±NËjòÒp{ ×ˆ=ptàǨòíU=ˆ¶6™ƒm°ÐÍ&{Wľ!nŠJ”D £ûö`µÂè¬rÂf-“ÀÞT®)AÂ(N̾šìHyâä–R×Mæšœkr®ÉU“S>{"¢ÞPÊ%I:*„ð/)â2¡¨IUjü^«“:Ì£û7÷›[ÄÌÍ-ï]Š2,ç^:­v௑ ×ëöˆQщÓ'Ýf3 ú¤¶FZ¯N»å“žÓ9 ÀG¼#§çxý Gâ•^|Ž‚^°F"Êäz½X¼& ‘Ú›1IUï–Ô9–rñrLR«·OŠSæ‰]6Ä´Æ%U¹KRoÔtÀ¯ƒ^Å>µÝ[H`L}÷AÖ}ÍLB^2#!õ4»]TrÏx<Ò3'ƒz1Ôc[­x§?VcX'Þ°x§s[á¶²€Ü@5D¿´Ñꜞõ+¹™?cŸS¯˜Eö×ÐKå•eT ïôêèžõA•ÕoKša½Z-Ó7<껬›¦¥ÿ ´#+•²±bX&À•jÙøý~Dýœ…}§IöºÝþ¨xã“Â}'ÏùxÔ 6Þ¼ð„ÐbÞ1éäùË-¶=®Õ9$ͳŽ×ou;м÷/06µš¿éÐ8ym Ša0ðÚg>ÆÿûÇ—ÄBù÷NËëú9íuOƒ †g§§Ý^¿„ûEù $N/ ~·³‘!e¤Öìö¼À'îrØÇ‡øAÓ9k÷Œû'îè;éú­f úÐA¦1Cû%ZQ䀀Ûò°š\Àqn¡œ·[à@Pk7Ù ¯ÇÞ¬ŽË-;®·Ì*(—ãÚe¹Æ ÅŒ0Ç…G€˜“$?’ø…Qø ô oa$‚®ºOÚUýÒâr§{àœõ»§Ý0 x',ªs ~“|r£™ã/÷LôñBòx€žXM¿Û%ቹØÇQ÷œ8qŽò/V&IÒª Í!`ŽXIXŽ” ö8U@UäÈŠìÏagXòÕb_ΈÙÍ“9C°–38C9ƒ±‘®3å±7ºL[†N¦ Í„2RT›ˆ1¬çD„!¥'“9®ŒNæM"p%3P͵DP-#h¢ÜÁº 4ÝÃz/¾+·œw®¡0ú×N³×òœŽ¶<ÔIÁ`Qh}éË‚ƒ wš[Þ—k¨{¢‚Ÿõ©Ð‹K }›€Ù€RЉ²N韤%0„y‡”sËöÖ”` ¤Jp_)ü5K„˜\Z>7¬ÉRN'AÇLr1°ý ûù%ãcP»àŸóå.„飮ìô .ôK’&øÀ/ì]‘$‰’$Q’$J’Ü2É$S;¿°ÿ© "ʃQ”‘÷íÄ'âJ¤t±,¢1òþMÞ"÷³¿ÂkËßàé…c FØ€³fx~À)¹ùz¨y%ÿèh§¥/ÜÊ ®WðO _˜-Å>fw”@¤…c2à&RR”Ù°;=µWÀÓ±;‰š@‰|±}›çœë°3Næ! ˆawT¢äùJ† ª'Ó ûyˆÙ˜ÄÉdÐbõ›‰>»>ŸMÀf‚‡²îm+½ºÍýÛÌ¿µ½Ã†åø¦E¿B×¢Òw[lÝ>a—œ.ûÒ®ãŠ.®€» üòRðw ü èå˜Ü‹KVJ.ø÷z0ˆ ÔŪ™GS  pÖ¡A¢ )5­;®$Vg’*UH"^ h¨¾fÜšK ¿£¸‰DæVHǸ|dÅ,ˆ¶èø]i„°ÖÝ`.Úû¥¦já›öeÝLîñI6d!}(%± S·å»ÎjÊRS¾²–*7©©GY'òè;tNauH=g$[Q´Ã£ÖŸÇ£¢ffý…“ÌÔ$€KI6Ý3‘Ù¤aZe·R]¡  GVtæžóØŽÝIU Æ÷ ¢bB¯RÉOÚÝÁTe*‚ˆ“iM+«µ!~}‹ÑÐËQ»V¶ÔÊ6‹Þ§|fIЋ±Ñ·½Å|ÛÌ[ƒP"?<*TÚB$:xâ£MÜeRZˆj"©ÐCþ¸â§lí— 6•ˆ¹y‰gÀÕIJ.ì—Ꙝyà%D? cû´Þû$LìÏþOÂäYÊO|R8éSú4dÕû{(qÃö¹*Ê&13j·ÆÆn1_«1i<æ÷õ2õú™½ƒè%fhSO†ê[€Scâ9•ßÅofXITä¼!§JõýM‚Eì¦ÅnÖGÒz» ÇN¡ÃLÎùÄ‹ß'Þ@$Xý^›Dáé¢qE‹RÄ™+XsË¢Ük¤  ³ªYmä*ñ´Ød]/âÈ+ ûp? .›XkÐrD¯p7zâò$†¸®HEa+;Û"N†ˆ'òiˆá» ÅH¤Ëñv´ì²w PÍÌ× Íâµ2MøYeÑ: @ 8Lâp„0‰íókÇÕ6"—|Ãq¹dÔe0W ø˜ þÞ~^k\ÛyŒ¾hkÚⳌ¹ü¼«qs1XÞÓ4_Œt¸7EËšßOÔ›Äæ0ë ‡uÎ å†ÂhZ H'ojC±$˜ˆ—§@-S¢rê›Î¢ÙÛŸÚêJu‚Yï²gIîøÈú_'ùúüò4Ê!×do}³±XÐÀ™¯Ð4²H6—4ÉõM* ¾Ð‡‡p'‡’uÈMï8XEñ C.ÇCoº¾IC# Ì/óöˆ³”Q¼×•iUš±ùúV(ö9Œu×®mßöµØð×Hæ#Êįó³cŠÈ†™–}éÑ)I+‹ZrZ63ÙĘsƒLO¨*@×L“¨"SÙB ùRIäÈÊÍZÌŒL3éV ”R‰ u#³RQâ}=¿¿lˆ2áÙò-UÊ…N¶Z Õ°Xü+×ÇÔ×7Xk¦B¤|ì¶TĘ‚œ—,;ÇåRx’LÇ’éŸtº4QÑ8f'±§H'ø“§]/_ß14y(‡ªb±¸ÉÀ Ù'øŸ>aWb@Æ_­V#Q†PtBd I"8Áî^{¾ve-•o–é,ˆ‡áŽ$ÇÅœ!ê$]¦•€!`[(ËÐbÁ$û1iX#‚\sûIû ±‚F¹ŽøØOò±Ÿ ! 1 ¹Î Sð½O§N¿ô:’¤ûII÷y T¯LO´ Ð9\žÌ“Ð_ŠSt˜¢Å=¦h2E—ŒVEµ ä«*k‹fIµ¦(6Eµ)ÊMQï8§¨Xb>†ÅÌG0Î|œ`FŽòJÚ‰V›©‡gžøGH”…âßp6â“’•I)¤'%KeÍ%à)Y+ÓN€S²XÕ”ÏÊj•ù!{¬¨Y®& À‡²C g* 8Å’L ôM¤1Áí‚eµ!<¹Ûo4`±ìN·ïvÛ‰1ä"£-‹a}< âh#„“2é*fÃq=IÓ«å¢à¬¥.Ï—"'Wh/.Ÿ¥OùÑ5ÿq´#Fd#ìô žèIvªD§ –Ý9ýÒË ˆR¢5rIÆínÀ¹ÆÄ$ˆŠ£N_Qâ"!{ã4̽wzý–÷,IK}1=œ.%H¶wƽÑf¶¡hL…™+J ÃD÷$5=n±©a"ÐL5…µ§G»L+#ï›á(’v¹2¢9¼»H£ê—±JÀ(Ë'”©ÂKUƒ‚°“®T‡µg½ƒ[\R³6Ç,‡í±êtS&›‹D“¤›¬ ÃÜìv5×éQZà¦v´$¶Ìàu”gaà÷ƒA?™FNÖ××§W*•(1)yA˜OìöâÈÒ6:_ a骃RÐìi‰‘•{펻˜÷üë ©ibÊ·}üç‘ü›<}Ë{ÀE`ò/éCŠNEd“Á¾€¸2!Y!éD%D6Ï‘vïF0…«è¥Çó?]8!Ðò›cˆÓR13 éÁ¿ã6¨ÙÿTÝ΀Cök;~ØüóøO‘f¢6ÅýÄ_ÎZÞ1q{Ýó˜Ë€å`Je,ÏGNŸø]rÑ=#ÇÜÛéÂÀ%-z=“N†Q_¾K¬He¤ýñ÷äßþþjç5Ùþðî·ˆW—eOÒEÙ[w>CŒŸ ¿'eÝVpÊÏp@.·Ðj’'XYËc#aßîC+ݳ›¶c¶¾bØ˵ŸÙ¶]÷e±SŽXû£°Q+'º„nýZ±†[ûõ™ˆš[:~«‰I/ ®x ÿpeÝ8.´z7ƒ‹«òRåæôË•¾T½ÙÚ†×ÍeÄĆȽ”¿Á<§_¶.Eòaß‚7q4æhÔ1¸cGËê6+I; u nZ°,oFh&î—ÑÈcRþ2},þXã)Œ'1 ˆLBe2ªŽÎ’Ñy‚ö9²À.qÙ¸#‚ãR7 T©ì$1ŽUÍè"8¦ ŽR@v¸d£U0"†œûc”p{*“™œÎD„Æ×QÛ£+©í1ØãÐþæææ·4 ›ßÖ*lbòwj²G­,ºûmjœ c9Ùq²ó÷VÑÓãfÖ‡jìh÷±dJ]/Ö`\(`æÉPä°:¼E  ˜äÇ-Ô¯ÆQÝóY| ’poä"öz:"†ˆ#Žú ¿ ûgMÒ̬PõËd×úpiØSW"‘Þ™ë¶Â£D-c—ò¶ÝëFKwr#-%³ÄŠŒp"í’a«Ä*É›!Ã…'±·‹RLn÷*«P,V¶_Ðì°ðê-üÙ}·óö.ñ÷¢‡?byõ–@4à¡S O þ6ó¬”g‡¾ "ÀƒqàÑ"'îq¤&ŒœU}dq¢4ÊNñr«øÙö‘Ë.6óv)#DƒÜuL‰™7»å3ó}f>“ùÌ/ E¯tú¥Øã’žpp—g# ÂJ³Xº(²PîÌ»ˆ;ýNƒ/%µ±_d"5òø×.‚\‹ÔåC®çGF;ÀKìø}S¿«ˆ9)Ô³ŠnÉãpáa!E§‹ îËd±”(unqÔ‡ HY/&·øn8nÞ4 Æî¾–¢Íð~À³lç%ÄÐüàzÀ£6ã¨bÓßä4!FÞó5JU‹Hx4jc´®l Ž™ ÊÏ&—€û,Ü´Ø.í”žó €»£ø´d—v$,ÁŒ~ ÐS(¯ù_K‹Zgý˾ý”âP÷S§‹5Oɯ,}ÔCÃNzGg®ÓcǞʀ¬oœò¤®^AŸS]aüPr b'åúqƒÃV'¤mq4è˜Û¡GúGA‡¸ÄÓȳØ/oCwÜhóµ(Ù´ܪ¡lEh÷ÀÔ½ò„Ì86q÷<Òà®È3!w´mɉϸOŒdfŸɤ}µÐð#ZÞÏPÀq”oåÿDÇq¾?‡¼»‰çjÛ'¢Ý´°¬EÔêk½úZD±¾v[š{öycÏþ~!üváõµý~.ü:ðóðG7M1ð*ÏzFï«vÆïжlÜ"ÐeK„i”öŸ]çµÅBýjé¦ÁÏ’–öígùÅ‚v}U_ª³ û šÁÝ$‹â®6oÀçùlà¥|·ŽãD“·—â¶#~§»¹ˆE“ŒÑQV•ŒtÀ5›LA¡SP QÆëß+ç…èz†˜Ù±lªLeGM›¦Zˆd¡;¹zcŸãZy|®¼R]Y­éÒ‹y¥P~ôKöJ¡J(xGoÄCéjw*huÏ  Ò•{^ˆÏº-ÖÀ2GR‰‰Å GÚˆÕ‘ùMz>°Ìf£þ lR`’q)YêH7F~^öº'¤ãWý)RàÊFò=2ÇÞl,N¤éµØÉ¤¤I9ô\îߺ²œÝFÖ,kM7‰Q«±©–ñÇ0€þ?WÖ xµ+ó†ŽdLôá•5üségÐ!Òñ² FBIeO¶${Ye~o’aÚÈ`°‘ˆŒÆîÉpŸfº}^€Þ¡Ý×RwUÙýhkõB³Û…ž'ô¬´×Ÿ@AˆûÆåèR‰Q}¢äì–%ÚÅ BˆÌ®¸Ä|ŽYË}yµDs,²àuON‚Nïì!8 Bx*‰¶õy©D=Lùb<¾[TD͈²ïkѶe4yVd²yKТDc|‘ŒZ%º :ù€›6¯a¤’zo¦Ãw0Ò:Ž» áæ uYÌÅoMtùõˆJBõÙ¦TŸIRSNI]Ž"ô .ô^˺Ýok6åsÂÌÛö`U/â=tdu£’ׄF±1T„qXžÜM[$¶†¯{‘ÌgtOÙí¹¤8ô‚\^à³TŒÜT ˆ¶¾ùÛÒ¯kOKÀɞݰuRÔ­•8飉³•¤svâ=<âô¡ÒŽ.Ü¡’âO&&ªÅR©ÓÅj·Ýîžó›w! :F…"ãôë³6Àrêôè¥ÁN‡¦›»Î=%\”tñƒùrÖíÈYŠžŸ6†ñè<"K?xÁiWŸÃ¶Õ:^/Léå®3R…§ÛË å›ãEè9§ k,h>v>Ù ;´díSŒíµ»a$ENKO´ÕiÑíÏçÝžÏr÷Q™¨]zd ÍMÿ»4}X ͳ´¤ÇÎÅš¹ÍTçÓ ×ê2û4–öÛc³üïßô#{/Ýò)³{̆Մì4²ô$,˜-PÙC…C1sþ4Òëã(¦¨–Ã3×ïž8­N.³Ì*ˆË„±öΔp¨ø1cxDìÏ ~úq@)rÕ µxn8¾ßÃ~xf“ ÆwŸ??e[¬ÊØ hßs)s´/d]–x­€ùœÌŽH,_ ~&Í VÄXî¢Èá©ã1ý‡ž¸Ì=XÕBÊUE,ý|æ°ÀÞ¸»£G—AGë®ã“¢10^gŒýöèxþîëFòèÛ.sÞY{ìÏ þÁ:kpÞhé‘ñóÛ#ãg^\æíü}˜üLÚ‡‘“¯8rrc‹C„‘ –BáIÃcшÀ6ÄËÄ·Ÿn•XúöS–\‰žôŠÒ$yGˆ¤±ãbAŽŸÝn ‡ž“µ4ŽÇ¡¸ÙüˆJyËçú[70l¹{¶qÔ ûËÝÓ¶ã˧½ãì¬tq±ìøà$ËÞÆ¡»l?µ”¡îꥶÃ.—¾-§*ã(ð ß'­öÎa;f‡5g)>\NíF†lÒÛ>qƒ¼´…YïÔ¶@Þ:.9?jõºvË¡8|ðøpFY±á•ˆ*¸Óí8íʼnú¢VãÓpí3†Û;óšÂêð€ “p\Ÿ1:yl1°ŠʋԣÄN>k·â`N÷ö"Æ$„Œ£6+§ò5Nˆ1´\l¢é~ÕõØîYÇ_"øsrÒílKAXÊÞ-ýÝÏ--ÑCÊÐ# HŸŽÏ÷iÆ(y¬½3KÈ0ö,šª©çIÂÒÑJ&eœ?OAÿ&oXÈÉf“Š9¯Æ&gu^=\5Fí²4·æ¹5Iá»±æy«ËãÎ[Ýy=5‚Õy=õƒÇ÷[|ø€K‹tìosóž›÷˜¾ óþÞ›a°ÓìUòM “­ $r£1oùæUÃØ¾‹ªaÄòI8Œ~¯sSË×¼œ·‚ÃIÌ«†yÕðxZÁ ÎAKýç¡ç³^cf½âs§tò-ÏD'%1öžRõ‡tN·Ç3Z½œ×›é¬ÎëÍ{¨7¯¢òŒ•ãSNèiÔ8@SÎÀS©†Ôhû" 6=O?ï,Í ý˜¾“νma>=>7è±)|ý½÷×çóªa^5dEgüϧÇÇ)knêôùiM}Þ Î[Á qæU}~ÚªaÜô8fÐÒÜØçÆ>&…ïÂØçÓsC—ÂwaÈóݼC—!μj ÏO[5̧5æ¦þ“˜ú¼œ·‚âÌ«úü´Uøi $¦œ cW›…¹µy ˜—€1)ü% ®¤öƒ]©;ßä*Òüh÷ýñ:¯âÆò5¿PŸ¹5Ï­ùgÍÎ[Ýy«;^çõÔX¾æª¤Š;7ï¹yÿlÍð|Ry^5Ì«†¬èŒÿùÒê8eÍM>?­©Ï[Áy+˜!μj ÏO[5Œ¿P…=Ê÷r6'â)ã[5?éÇ^˜Ì÷ôeÎáüs*wÿœÊBÐñ[Í\nÙq=[÷¼+âôKÛ®ÁÅ%¾ô­íeJhT ÊFè4ʀŰ8‡)Wª#ií<19Æó !Š¡ð=*–”بH*ó£âªŒ ™[Þß‹z Æ­­oQdŒÄƶ€b­ìpygë‹™ý‹(È?ˆ¸ï+sɺù¼ÙÂàÿgV݈ȟ™Yv‚~;Îâd˜ÜF›€P*4!éc>ûv(8/ë /Vàd {‚nìH ‡zÈg ¾ªeq‰qdVœÿÎ¥ðÿžW΂ ¾ÑÜ® Ðë »‚G„3'‡ÆÀ¼‰Ø‰è«<æ÷öKEÍ.c k{I£/-jŒ%h»¼c£ÔoõÛÁÚÇí¶sD\ñ‡202ÂHú­)%п×ZMò$p=¿åÑÒõGÑkž1åüñéû"G#OFnœ.ã”Z#Hq¼ƒ}¨hHä¡}`5¡ûTyù d¢Ú#>[>2Rôùò%.&Nd‚žÝ¹¼¼L©†êCÄ3T¥—°^NömZÜDTa[ýœ!Å 3`ƒ™|I[n˜TãR¥î WŠx2¢T3\¹××\íþ®x¹u×Ö˜À¬òÖÖ\ê][ÞËFgÇe‘qïŒ]åciQà^: ß“áÚÅ8á"7xO†,áBy„fO¨ºñ;n~Äša­2 g®,e:ŽÜuQÊ:”,^/Û6«ú)ÐÔyS}Hò¹Ûe LfËõù¬}–Þ;º²<_ˆƒn. u²ð%9Â’c)ŽRvn”XÔGdÞÜòUy©âD ðÑx‘‹iÉ]îç0Z 6ÚMFÕî1Óq°5t35iw”ìJ/ð‘+y)V®æNbh6tÞ¥.YÅdw£¦£fÅEÜ"’¥Dò¥H~ÉÐu)RY‘~‹€†.%4/Ž£Ë`¨ÍÓB=œ`ëÕ¬%YÔò®–÷´¼¯å-ßÔò‡ZþHË·´üŸZþ5¬(²äð¨õç1w£â'`P‹íÊ&~¥GÇmÀeYwÍhWú’~S‡²Ë¢ˆM ³šÙȰßðià`@GXª@WÁ§ >CA0”èèãY4QÄz¨aáˆm] ÇÅ‚½§¡Á_Û¥/º"ðòXoD¥ì¼}÷у‡ÐÈK‡]ÂG?øÉ=9b ·B@Å—Ñ%lCAâó8I¤—U&ù÷âÕÆÍµ]Û8è E¹öõ0%lqS€A áð– ¼Ébp^•omm9ÒVŒVx,œÄ&!C×îPa x è—Q9n$*©ÒqRJF€Ž~2ªºãØì©×lެùŽÝc7 8&êÇ¿Z]º±+$‰p^£R]Yµ»-y%Ÿ·† ¥¨5û·Aé¢t©Ä¬qX»q2í,Á;x ìI· hŒ±6‘º-Žƒ8ŸpƒQÌeLlnD—·¢}99ñD_AÇZW7àgÂÏ‚_~øUá·Â¯Ê4ðºLøA¸Q¦³èºá„›nB¸ á&„›nB¸ á&„[nA¸á„[nA¸U¥ 8G©—!¼ áe/CxÂË^†ð „W ¼á¯@xÂ+^YÁ~^…ð*„W!¼ áU‡ ÔW |ÂW |ÂW |ÂW |e…¶-Èo€üÈo€üÈo€üÈo€üÈo`{ò ¿ò ¿ò ¿ò&moàá ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ò ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ òC—~ò› ¿ ò› ¿ ò› ¿ òã§ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò› ¿ ò[ ¿ò[ ¿ò[ ¿ò[ ¿ò[ ¿ò[ ¿ò[ ¿ò[ ¿ò[ ¿ò[ ?ôÆàá ¿ò[ ¿ò[ ¿ò[ ¿ò[ ¿ò[ ¿ò[ ¿ò[ ¿òCÕ?ù-ßù-ßù-ßù-ßù-ßù-ßù-ßù-ßù-ßù-ßù-ßù-ßZYJf^Ì«€yðóVò ¹?~üÊð«À¯ ¿§à 2vCá‡ÝQ:£¿~M{J€’ ¤(iJ€’ ¤(i`¾øà€o¾øF€S÷äÉÓ…gÿÃ/Ék‹…¥biYzqk¿®olÖ£k /ÿúû«}ýæooß½ÿ·»ÿþï|úÇç=»±ð_¤á\û¤Ó=ýÒ ûg_ÏaLvu}óO{°ÒÄE[ø‹«Àâ*°¸ ,®‹«Àâ*îM¡/9XWÅU`qX\W¿ø5À¯™8‡à׿ø5À¯~ ðk€_üÖ¿ø5Àwß|ðÀwß|ðÀwß|ðÀwß|ðÀwß|ð]Àwß|ð]Àwß|ðqÄ€Ã@ð]Àwß|ð=À÷ß|ð=À÷ß|ð=À÷ß|ð=À÷ß|ð}çàø>àû€ï¾ø>àû€ï¾ó€ï¾øà€~øà€~øà€~øà€>.5¿ øMÀo~ð›€ßü&à7¿ øMÀo~ð›€ß p­^d¿ßÛ_l|Üzõá:®Œ¥êMýÍ>šŸ÷»4ΫÝ7o"--R@µo!–·K¶oû{F±Ö¨k¶/¦KP‹Bã\³V)’ì¥Á«+˜«&ŽRhŒ¨ˆ pæÈÐ%žÏ×7tíõ Û×4mˆŽ 8¡sp$y‰I„‰­ä¬³“¯kbÊÂÏNG»ùf·«Ùa!oŸÄJÉËn×'­t;tnb¾ã¶Ùdˆä£´Á‹,®Ó‹þšœÀYÇz”“VG8;%Ajd4ª†ÔHJÚõY' çmQ[îtœ³~÷à´†¸û¹xEŽœ¯1ùî®pT [Éý ³$ð—ˆ{†»¯šaÐÉWÈÄnéƒfÃ§Ý ºç¸„åcRž³#«éat(5ˆN)¥…äH95 G*i𩦀sdeš#«CÀ©%a9#)jÎH˜3T±r†"LÎEàÆÂóL,ŒdêrB=çÉúܾ;ˆ3ìÞŒ@2«gw')3ö­d4¨ÓýüøÙ·Ÿ/æëO óÉÝNÃdË*¸óÅ Ó¿æ+£çÏCcíd±\®pÄÌí!Œ|¢ùÃ%öF¹ÊgÿôƒY3ˆ -2(¢;+…? ,ªô?nÏQAeSõïaoº‘h–ÜËX׊ºÈ»Å|ÌQìeì Ÿm´ùtÑîžu;ï_|¢§¬°‡=™74øÊ§ëxÇaÛ _ÍPP¤"ëy kMt™„ØC²å¿ð «0nY6Å—äÍ-ãI:’¯¯ájðVñ³Ý»Á•$C¿éâ®>Œ€dhDÏé¿{H‚vpzätúää ªé6ñ r=êöÂbtœÞ4ïnº=aÇ9 îuzÇ$¢ÆvLܹT~+}yF=SGÐ픕4Fho)±;îSExÛ¹¼ „_ƒžÓfšaG$ÉaÐïÓ²í.$í`ÿ¨Õë_àžö¤ 5N÷4PÖ>ò[GËŒ,»”Õ>ïÆíÑ…èК*F—óöÔa5`DÈšœP â( Ê‚ÚÜÇiÝGR#Òá1èC$–èÃãs·)Ü“»ÊÌE»ô]e)¬ÐVcIŒ(%îÙ•µ¹D] ääÌqä„&nEÕÊ¢šÐî˜<¼Uš·J2#/§™“ ’Òa«É͵Ûk¶»ã¶\ÚÛ}Ãýmûv<“[ÆGÇgpÜ0œÒmQY{YZ|6Z&x±XcD¡põ–¬ 3NænÈtóÁ°ŒfÄÙxqùö¡ñ󈓉¬Dâ›íNã}B¥|#ùXAŠÚ¬„Ú ÿéz[“6ìØœþt/ë³¾à¶Ó{ CN ݱ )@\uÕ>Jçä¶ Qe`‰d˜E’@ü{âîIf‹Sµ±¹q‰Èh‘êáÚÌÝ/-ngt'ùN¾mu\@˜zž)Þuå0ž¤ÇÙŽ©œLD"¥Qallóšf›QvŒ»Íwü#oÀ©VÊ–iH;j€Ð;éÿ† a t ¸ß¸ÍobÆphظ2¤ÞPô_hWŽS¼5NÞ¹v¯=-‹ £qÖÒ—¨âÅ..(o&2íù’$v¬ú4–ˆ6QG¶u$AfFÕ”N´§Pì'Ìlüeáùö‹Ú‹Ú_*qÚ­ÃÎF;höÉWæîwO7ËViÝ!G½ ¹ñ—?»n»öK^ó¤þ¯]÷ÕóZ™TW¬Ê/¯ƒ œŽØøËæ8ò¾×õ‚0ìö¨BÞ sµª­£Ü\„ŒÄÞ‡i‡}§Ù,yÝ“1±w¶H‘ìö~pÞò¥9ú3È unï –¯<^?%ö\óZ§”=³û$Òj.–j˜™¬ø&žÛ9·P¿æ u±%Þᛃ¾ ;Ä$Á$  7‰àÀÒy²¢göÄÞÒb|`»»ÃÕ2Èj Š }°äÙ©~å¸7âT'ºù\ô@§>ìÆm]ok‹õç,ÖÎscç¹à††§#£ëO\§§5»]ÚägzèÏéãz°szàêÇK㈰ð(eµ W²ß=O‚Aîó+ëfˆ;™æÎJh(•‰S†D7è'^b¯C—Ç©éôFH§&xî‰Ã®øeÊù¼Q‰¡ò{gŸæë›¥ÅeTòÓ¬Ô—ûG­egùkлXnw;‡ËxNj¹ÕYöƒÀ_>oõX؉ӹX¦‹&AˆÁ­þòE÷l9  w”‘ê·&átüea¸÷A`SÝDs—]4,8öNº«.`7§\ã;,hš˜Â…\.‡N\¿u‚?zt¥ü7mœ\6ðð’º|§åã7èÄûo.øÜÑ7É0T=Æy Q¥T6évÚ|ƒ®}Ð[Bž$«:ºòš·Ï5i æÄC46CD´ó‰.Úÿ¤k«e|ÇxiÈá 4Ž…ÙŒê…TG&;êìG!1ÿ°é¢MGñt3mó†‰Z>I!e å_FÚžðÝÒ]ãßkC&äu kë~ª*þ™¹²X÷gY,Ñ)ªË7D•„—†|D±²÷kå°o0¤ä\š:¬¤•:ÔG#C÷½Ÿ¥¸G—@q¬EÈz´hm½hr¬Iû'œÕþB{ W-ÎNÜNfqö¬}zÚîvx¿B›VCx8–j¤}¹µ½½õjÇ—V†Š´Õ`@ˆJ'#.ŠÖ—¯ö6ÉÁ‹ÊŽ€¤Ò(ª*QöM[ËÈŠÌ_¢YGlpøÎ¦¡AªK])ÎÿãÙÕ¡µJÌv©ØÄ¸¤‘ 8Eà ­KY“¢y-°!3’œÇdh#ƒóË åüêY/a ³ö8•¡S•"£‡ ~ ÉëƒÇð}ûlFf4S]°®êÓ—}õfùÙ˜»B¹æŸÐT†jó«}½€_tZÀO‚Öˆ1BûK2„›Þ³ì…¾w¾P.ñ9I~±¸lY‹b2ä£ih‚°-#Ý2ôÝÁE¯é^}ë_tèƒÏ"ËPƒÉX8¥¿}=ý¾ž~_¥ß×ÒW^ïmTÞ²pù1¯wd8eP6” En ßÖÖ2—r^"ˆK±@â!ø‚mþ’7yö½¶Æ¾á½-= ¬»|!õº/`mí˜?s£§ðߎ¼Ö±Ø0óɉ/Ϙ!¤ùíB®¾}‘z<º€Ã]ãÛÀµ&ŸLÙR“Õá%«ëKVÏ_äÍ€/øýÎ=«{ý6†Dš-s×7ü«°Ã·þ5®ÈªÌ{8%8‹•jç&çu÷ f$ÁBÄ’ –[4™8ÆêÑw^Ì¡Äþˆk3#8)ßAKeU8=â× Áæ3šX÷úƒ>qakç~ô:Ð2ÎPP¼ëõNI~1›ÍcÚ·ÛïgfžÉ’ÁdltÏÎÝA»~Ê¥Å)Çî‰m=i’ž‹*ò SÆ7p?¬Û Ò½,2í•ðýÐ%}¹2wHõ§-—}ZȶÄÔ{™ ÁãP3­˜òŸTÐéU:Þ*#À¶V0 æZ´Ž—bZRÌiÑ&ñí©þir`nxq •=2Å0s°Âæß¨$¹ù<&‰$äÏÀnÛgÖ­¯†ó&¬‚ñEX%K8ø‘s‡Æg5ÔOÏæ3É«¡R”a·0Ð\ã áúµñMüiÈã@ˆ»ÕA¸žLö0ºy1ðJ õÆñZb4[PFh4:5…Ì›OmðQ‚IrZ…ˆ…ºçVExú°`vÌÂŽ1é±T9æ3Þq©†hzœ@oˆ\€¼¦IÞ{Š«`g“ÑdT¼?bðï…è&pl0²Zw«u“züXp® CÔ¸|eÒuõ% @1J_s«CtsÌÌ ®ÿ{Áv%Há Ž+Ž/W®å ÆW<íÚ’DI674ä a ˆ4$ëµWí –òÍ—‹§~nu_²š‡/D[,5íËJ­[¶€X˜Y†5»êçc?…GÕ7Ç7 ”ì©<ªîߘNMXRzT݈‡¡eÎß”éY1p‰O1Á.ãñë8Âä1š:~\Çñ¶š¤¤9)iV•éYi»Â€–éxBٽ苩1Sk0#v3 x6–ÕÛÐùj®.Eâ°]5#q†‡?ÑIç´‰0B°ÆÏžå†Y1@¿7ÈÒ¨Û|C“Í…§‘P¬(("Ū-wç ë:<“gpa—Š5Цª;d‰bÚž]bòA:dfe“««V†¯*I½z‚F!ºù·æ7>¯y|‹‡6iyL†·U½©BîY¯õA¥.¼ã:wI,¸¯£/z«½tõ0,zOÆÓ@j¬¡tœ|ðZÍÆqû–â¤ýÆÃ“ïYv!Â}Œa¤pÊ2Y?C8Ã`ëYŸÍD,ÞÒ°ª˜¥¹ÃÅî–&M‹ÈD0“ÌNPæ"“ÁmõÙfƒþ'¸Æ>ÄÝäÍ Ή„ÃŽÄ}KÂ8$§üÉDìlÒÌz2OÇ™ßÀ®««Ø5ÑÜÓó>Gà¬AÓõíMGÞÉqæÃ·Å¹RdJ…uĈ&i>þæµf?,~;Ym§ÿøöQ a^«õá ¯y|£?ÞlàA=’î@¤oÞh6Í‘Süè*~þ™/$?ÉÙÅé }_TŽ‚}±w9ˆ®6ß åâdáâDÇË„ÇJ3ÃæÉ•Ç]?˜)fH£¡¼_hrü:k\Õ4Äδ¸!ubèV](¾à+­ùÇ|75 쨸£…c9IèëkÚM¹ÍcîÈŸôwH_Þ!•5=M$7é`uYw/ëú^´2ýk‡æb`6 9±ÿG»²&DÚU-ñš-Àt7*Íœ‘ÀWÂÆEñSù›I%ß÷5XCµF#‹[þ‘‰`Ó?2lûW‡“÷›Ÿ¼5C÷éQÜ «[œøWC+XƒÅ^£1á±l_Œ‰$p- ]C“¾7ºQXa\ Ì‹›ùÁ } vôMþ®³-½"üðí;o|ÃïÇbõ4߆o›fÉÇdCÛßó¸uæ` žñ»†¿, t9¶ëR,À#Ø£¢ä!á2I*J2 Â×xÄš&àq›œÊÍ m›Ïã68VCІÊ³{pá@ Øù«]| æ‹ K·±ùÃéwDÑ]÷ØÇþ5sCœ–ÌIsæ¤×ä6Jàd ”– yÊê°â«+î Þ= îž|kÛ§ÐîŽû'Ù¨×|±Ú*2 î $l-_-•n6f::å¯c¥Û²C•E+c_#Ý\D"cg6<ɪ/>lo62E¾c‘Â<Åz÷gmcƒ¦f)ÙìñÕÜ¡µý]S¨-‹gnú÷hÿE‚†w¶Kk‹%Ó[@ëÞ)+z˜¾MÓ€j0öi,É‹­cxêµak ËÜt°ýœNˆ¢Snè|üã V;ºÐî§¶t!óoUæž.¢šŒMݰ4bW‘ÆØÖÉauCðY¼û÷umcwFª±= /ýç«×óôŸ|neÒ]ø÷ Ü¿ÑyrŒ:ðól&ò¼¥áó]ež¾¬>ý©€Ä’ßñÅÅ̬+‡$.4sÕQK±:$Éûtæ«C{Nàþ=\>œu…Ê›ËõÛèo£ÂªkD|#:¾¤qœÖ†:dÁÝRD̉팟×â*eTŒ/—º çÏeÄh¹bV¥»f®+Dv¦‰5 G[ËãÇYËc"ÍóD^„…1Ìé_`øobÒè¸`Nnj-,§7$gä…2{rˆÄ(šECPY`5ÁJÆö0^šùüøù d¾ÈM–ÿ’a{|¢hŒf¢†û\ÌŒC˜k[C } ŠL‚H+ i˸˜[]†ÿ]þ¬ãø/*qÊf @â?‘•ÿôw ^ûÖ“ªÂø¯>âÇñ‰›½IT?ÏV›_s×R»”Í|p¿](™š!©¥Ëôý]Üâ¶åyfU_þ×ar|Z`ë·«.//é¼£ôĹŽË µÀEcLÏ««« ÁÄ—¡©aÞõæ!CßZÀæ]}&_ Ó\=£îJk6e~V’tõóܲP‰év¾ƒ8Ù_@¥î Tƒ4èÜ@t>|z¡Úg¤ #¿¦ŒHÐÃ{'è¥Àëwž †0´£.WhôsŸÏpÂþI:AÈ„øH¸ÎŽ$¾;WI:“€º¬ cÕ(oß? hÒt)†×~*—Ëex~ù-ÃÑÕ %28úž;mýëkâ~ÓO‹‹‹P–<¹"ƒäÑrUq*‡¯Ä\¾³DŽ[¨Ý, „U",˜’dÙ0’¿ËÌ}«ÙÖ;ýPð;â|'åZïÒ™øIә؉iß š:2q ÏZ…íWy½™ÅÉ?úwj‰N°hmlùø˜O`ψæ‚T¸­?Å ¡Q˜‹ ¨ú©Ûù8(™µÚ¿uñÕþm!¸ÿK]l© ©ƒ2UIgºK1?^²¸÷½4¾ôMµ´)Wƒ?›úe£€²·¸ãÃ3¤gç¾™9 ÄÕ¬`óoZ‹¯þFd)‚¨†O©\|F/÷Ø¿0{ÎGîÙ™×aÖ*ª¿=‚û‡zÐi{nuS¯§Ac"«Ž•‘ ÌÛ¨t©qJ¾¯r«›äšÒÑã 2ÉâÁZòcº6£Õ,W«" °‘v³ú¸ú›/½žZ$þÅ S:¼õôÅ×J9„Ee Û¢ÿÛ,¡#àYâÅf¸  νîÅ96/:²B²©Wç0zöùµ*ì°Ï»½-yfèlÛÏSÏ¡?Ó|M\tÚâÒZ1Œ»Ì¬J_äHm»FÒò¤ñ$µQÿ:ש×ù08!4ƒ×#uŠG“&pÄ‚‘™…××RØ3ƒ£×›Õžë·&ÁV‹Õ^xèùŸþsnd òºÑ»-·×÷îߌµ§­gq¸Ë’ƒ\÷‡‡qæ¶|¹;®ÄlnA'ZsÕÉâìÒVœÞøÒ½âSwv>¸âRóÛ÷È¡dgå–¯#.!‹Î‡M^ Ù ~Š8# Äú‰R鱉³âo@,¬@ ºBaò'@hõ:vßO˜Øá øÏ „Kÿ­Òð¥­~ɶêÒÍï(ÖtѸ,±ˆM’#yR ER"eR!kdlMòœüB^-òoò+Ù&/ÉyEv)j¿‘=²OÈkò;yCé>ý©±k÷H‹| '¤Mþ  ]‡º9 çäOÒ#}2 äùLp#2F´FŒù„YÊ¥˜ÛÏÝþDËzO [YœMW«Õ΢20Yo¬ÀVeÏÉ‚hV ³üaâˆT‰#R"ÎH1@œ‘® ˆ© Þ™“axEÑð†ûC7™ÕíPŠcßa¶G¹Þ ÓõÉÜ,?-wNs^1*Ÿ¯Èñ²¦Ýo™YfÎæ6B‹œ,èæBç»Û€4³žýe(]þ‹Pú«i«¶—í »>tÔbÚ§SÕè©4”;T/”۹ š%¼,å%Dx½!ÄxD!iHø6‹t;9¯ÁÇd ÕÇ@Æ /`žÈ¹¼„W8ÊÁK“¾äYX“§-€¸-O_Šä߯w~&/ç/9ñ’/ñRäÂøÇ‘(âA€ ,à‡`)+°CЀ¼”o‡Y™WÝ«/Õû½:‘ÄÚrÂ&ÓS6õÔ”SW¡ *B•åGphÓêP7È£Oti’P[ öL1Öºt­_äç$+$ˆo(Z „!½SKÑþYæ8ipýØÊÄû:ƒû–VZ ÏhÀS]ìñŒÆ=5α/3¾Œiqö &«™R-ƒ0šä’ç‡WBšn&CÁÐp‰}Dóá²j)`®¡¸£Ép%=á²=éèZ¦ÖèæüEõ¤ú{õ?À'‡’©òÂA—é)0A”úŒΪ—n–å'Á ¡úb¶z2Wý}µúI3œÍÔ¥ì,d=ä•^×t§\ÑÂÊ$4IÈhcˆÎ=`…€2™ÜИ¦íÍ«û2x÷·=²À*š¾s^.VO0û¢žÞh’}v,…_Øñ$2'³‡Õ“Õꋹ·Õ«\áúÙáÎÎÎ[fïA¼B0´Š·¿±ùQïÏß¾ Ô8AÞiÔyRVýDú´ú¶úiî]õ÷YäÕïsÈßß¿Útélh¾…èwð§)vvdíDEA61Œ`»y+jãÝ;–ºÂÓïè5;½:¤Zœ«˜“hTÿ Ã\%Ð/:•à Œ)ÕŒv+ŽðÈ/^Útµ÷­ÚÉÄKŒû­yX¥‰½e”ð·ºÇP÷@¼;O¶ŸÏƒ 7TÒ»Bž¸OB¤’õX'á äÐ…tÈ¢9rµenTyX¶TËÑx"V®1xBÙG^³äRªýø¢1!°;Plðí3«¨…Ø¥…¬>°&’cnÞD舻~@Í$§múütúwx!û;}Wnl‡ïã41\?š”ä|@œægîinŠÁ=“)ƶ¸c²Ößýìojé X’1²YúšfXódM4r7E³ÿü9™Ù¢Ì·êgMKXªé¦Ðd}É=Ôêý‹ËyN2kx Zkœºýþ<‚ª]túMÂôüæ›ç÷ÌëG‹QLSÇs(‚øÊ˜½E!"éqó”·wÈkøP\DºÆA6·¥.ˆÎ!ý§£„KÅØˆ¥–/5»§§n¯FWÝÎ)+ŽÚöW;~(F>™†}¦–è–oɽtk  úvÛ¸ \XXx†Â‹¹,yOØnJç,òžR„ælÇ>!¥ïø¹I;~·EÎÝÝÄwän{‡ÏÞ±B|…@€Q¦Ð‹bY†•Î#Ÿú "A7Ü&óý\™ïtk¨PëžÚgí/^4-‚NK–h!<@…\Þùá@Ý*TM} ôta #Øa€úѼþŒþFfDW”Sõ¾th¤ô/âŠï Uúÿ3•" Í9¾W×Ë2rð Íü\YÏ,}ðÿá¡ÇúZEç¾×¸ôÆ·¦×ú‡cK[’+\3×%MºÈŠ!\¥˜üññgZVÓu›ý–§7Kͬ•1! s‘€6O[×ëüqús«é·O{F¿I¼“?~þøÇå•Ûo_œ›ŽLšC¶*Q\úÊÁ,¯Ø‹Ëàâê¼Ûï{t3Üì uÍí4Nº½›sdR ,f—Ì·™ \DšüÚŒëHìè¯ÙlÒdÁ¡Š†#$X($ Fц|Ü¢é:Ì®UL »0×MGЦðÇJ³t<,Lè@Ä5½cTÓ3hòq¡Ty)n ÔÊ|[ˤ+0q~[Ï,É¡‚l2G6ëüs=òÊùzeƒø]GA× Á'-‹ˆÂ†¸M0W´<Ÿí{DÀÁOnzvÿ×­]e¬1¹iì=Ø å}swWäÁ‹Í;.rwïõΦb+Þ&P$»æ­WãD)TK¸GáŸÚÅb)؛—n¨Gk© ƒ:‹„Õ‰ If0V}ÃPê¡l,û’UÒ]°ê ÂZ[2òáe˜!ji¦&VP·Õê{ƒ•lUÃ4C"˜æ3–ºæ‚8Bûd9¯q0 2Oîé…ȵ#©ÙY²Õ¡Ñí&KwçgdüÌP-<ÇñÏnfnNx‰Æküߢ b´ïü,.f×ý&ËÈD®ÕèpY\té¡%ef£éP¹°îbÓ…W‰&È ÷ÛÄ€ÃAѯÎ5ì=Zˆ®¡f‡ 6w¨í*¦íéðBæî ˆ;(ãkö„à2\Ø«K1xl°m»*»0d™È ÁÛ#Ö –xxj¶€„ãºR„½îÙY—ÛuEJš"³zä~9æîÀ¤Ô¦ØÎ³ö—ݰ /Ìv.Z ¦¥T?k7âÔ•8n„­’Ò"$÷\~Œ$õ„€2¨§éUmJ[ºOpßà˜§KŠÝZÐ¥‚²Ch3Ä=£ø>—îêК b”Þ˸stäÙÓMҺʻ¬+ìÒò„rDRÔÒ–@‘Im-mÚŸúlã²³¸ö . >»s™%ºçÖwÕ²:ã|¢é»=:å¼DíŒæ<©_ ļHX,3èvIÿŒ.õÀbhÿ¤û™À;Wé¬ \¿ ”‹N+nyV÷¸nO.G”Jl/l!£17ªi^0¢Ò‡zùý‰B¡˜‰†Â &„h$½” ‚ÿ/5—È=–¥PLZr)’K²9%Ã$.âI/µ"y…Ì%U!üsõDQœs£t‡\Ë Çו¹á³ ¨ÏºK"`Óîão4M&c©Ý5¼!ÈŽq1Tz¼BÁ~ ê¶=Zï7êÆþ~5NßÔ­~OäYQ‰GÐúˆÀ¡ß>Ï‹¸l®]qõÀe·}¶^KVé²]ÿƵ´L· lCÚt.ìG?w{Ñþ±\–ˆÌ©¥§/Påá§§/¾=¦2p…F—ö™ÙçÏøÑ]Û“§/ZXð„C $'Þe%»0S¥g ý¦˜Ò5)>‡àµõòüˌֿÊŸ¶Œ  à —å2ç11qÃ1©7FcÂÙÏ¿æ®3pò¾ú¹úy實„™ñòÃ’<`qâž• à‰Å7–ˆå}µ¯ç´2á/üg–(?€C"‹/£ÆÛÜ4Õ¢N bXC¦+B×Á}¶R¼8ÇC¾ül·Ú <ìASÜèIY.µÕ!ο½:žm•3Q ‰´ŒÜáöETôhÉLl¸äó§­‹`dJ ”\Æð-ŸH±•ćiêIµfWßWgŽçæ¾UgÄឩ΀èf†ŽOÜΫòÛëW›¤:/ds£:C*Ï6÷hàΫò²r°þ‚;Ÿ×r`†š\¤Ž.|î. ‡vM·àx¦"̦ᚭ±W¦¿gÏž™iª+šð#<9ºqxDœéÃEÍ!(°ô&"2S°ó}Ž/½©È¬~Ô\)(^¤0t¤€´EF瀑@´2ÉYœ¯2øÊa6Ÿ}†¤†¡<½J—íp{ yt-…Ûˆ>™ÉÐ{i T oùÃ>Yë¹ò]SßZg*ºûƒ‰Â…ˆ“%–Ì¢M&äWo ß7;ͤf3Ǥ ”}QØ E}Ž”ºV OHxŒe Uä`ðÂ!£ëMh «ëVFl"-…ì³5MmáR€ÇiPf*k3!€$ÖVЦ‰LØ$ì •’vƒišÉ’hÇ>Åû‚\ nŽ_ä×ÊÚ5–:±Æü^5kÕªi­ÅÖCÛk#¬¾Ä¢Í=§åôN°Å®Vóˆß-ê„ëv>Ã÷ ‚)ÞAý¬w;M?ω'e®› ¿ i{ŠÃbíç¼+ä0Ï©ŠÐöF†ITt¥½ +€®wl㺻gahþ]}±lGÞÓC­b3È Y¥=¦ù?˜zƒ¾‚‘"Y¿ÿ ”½¬H;fÖ)!ñê4ލfŒ¯šqEð]Q<¡ ˜ ˜‹ˆ™Œ¶CÑåYBVe5Tg9”J‘Í3f.vý? xýŸ ¨YJaÈá[U@‰Âg‰tŒEØÈ'ƒD%vy 2ðUê!ˆÑÖÚèþñ‹×ë‚Ж³Â¶õÒ öär†d³dæË“L}féĻԙ~¢Ê‡Eü“Ëêe6ûÅ`û‰L‚sO–_CA°æ,Xx¾WìWÌî3Ø­{±)VŽø Á<Ü…n´{‹³Ö)§ <=ÏJ&}¯Æ¶µÓöY{ÀWLNÎeʼzÜŠ•55Å¢Ò•c¥ÊÅK5/UÉDòh7Ã!äMu•¨ôŽ©YÄô3‡2Ê È<M_ž‚_~©sqzZÅRM¾Ó¬®˜ÁRZ¼.€£v®.+ñ…Cuë>tº½ýï2Ñú7{¶ÍÜ ‡¶·^nÔ66w^@»Ê¼OƒEqÐáXÌÜ›Þ9\é.ï²áyMŸ e³Çé»ÿÐ&q–%µáØ*z_lVvW†{â¹ç™Ö¥5 G…ùlvX•ö/ Ù8ï‹2lŠ÷U8åWÖ^ȬÇc:a-ˆ6AÐ8:L,àÊ¢©}2{ï¨KV7 ÖáÆV«Ýi²¥OR/ÛöÙÅ™^_èã3Kž“áz F³C8ÆÔ™ :cx&»DäÉ®•8ÔÉ",'ä8§RbãÒ’á)¯ÿü5LJñþWVw eN½˜8™¹â!ØŸ×óÄFö íá,lr]ëH×Û!ÖSaͰ Â<Åõ-[”…Líß2Ú ÛÆ#”l¹0ˆeú† +—^Œ¿Ú£ó #«Šñà'×ÅYº=úöâxU½e~Îü‹úŸ¦»ƒGß(€•DÊD1ê °Wtðþ©Sñ¿èÿž< <…Ž/zPTᾜ?ý¯Ã˜<6&XÑBc0ãØWDhA[°F‘£AG3~Q:E~J3úÂúÂÂZ,^à¯uŒ<¢øZž¯»T›Õã……z$t]U¼ÁgɈ’ ÛÈre}aóhur–¡}¿ÿÝ’Ø‘Tv(ß™ò2³ŸÃüpl²™c æ‡r ŽÂçsóógñ/thzïÃ>q6 ôÌçøþœÃ‡÷Ÿc,¹‡Wc‚ñ¹éóº40÷] ¨Û¹ÈÊåÆQÕ±ª—ƒfü±À7ø'<£NLMjêF‘—’œ«¨/Ý—fâ †¸"Ä!" Ò¥âÈm`Bá}ñ…øSÔµ€±§ü]¯wšÁÕÌs0£J‰L¹A|@-ÅJà ÄjzcóùÖÎf&í¦åEq÷²>¡ÅÐ^…a—¸Ü&ÞMbZ©¤Õëž‘×ÛÛâêvŸrdq•s‚ŸšŠ;W!ج®½‹:£$ÍЗ_ÄË6 ¯“ß½^»uEÎ=Ï®¡úg{p1@½Öúi·ñQ‘ ŸRà çŸÒ±½ =9å sr?„yU¶¸o§ýHXx…«GíÎùÅ úÛôw'?lO 쯕]Ì— àÂ!¾t/´:Š·+g …>éÏ|:V¾ÏÿÍÊg‹ùœU´›†[ÅBÆ'Câðßli‘½nw0,ݨx?qßÉnýÑ. ¶‘xì³»«}òúà93›ÒåÇy¯{îõW¢/3Ef2 óHé$ˆ¾ïžÂMX°ÜŒƒ\vÅ4éÌ"©€®«{q:¶/κÍv«íÁ• kp€Ž Ï/pÁÛ€ì">Z@ê—ýÖøíç¨yMÿG‡0(0¶²Ùk·¾t1-VùÍ—fò oR±ÏY‘ظ>_<¸ˆ$¿ØˆDFZUØœVX"à£MW=ÉÕeá‡]·Ã­Ý0ŸsZ„C‹`áÂ_DTqoy² 3¿5Uè[£Œ¨V–Æ3' ûáûpÔ–i‡UÅéÃ9?mïyNƒ8\0WGÑEêauÍÇ_ Ê@Ì´îÃÍÜ2z¾rÞ»ÇZgÿF3"Òl~ÂÂë[_-Üç}ÍÑÐ|Ú×l9]mj@ËB ¯,øÎóÁ#——°µ@‘0Çšk.k]sø…LHd³šåËòìë\Xãà,42Z–®a¨ëÐ-jÝV¸RV~”‹-élèk±uí=|½{ˆu_©éůÎuÆ1(Ê`lKƒ*BÌ$€U Ã/˜1 K͇x¨b)ýN‘ÜFµÓ¨û‰™]ÓBµä²‘­^–J’sòÓÒ>™ä¾ !Ô?€Zê‹g¼}Ñ7,9PpÙ]Th)õì©Ò²o–6ÈÊ0°’ =ÓèðÅsÞ¬¼›lø êj6|b&6éØÖu ¥ŠÏ£nβ¯£òÉøaÝsÄë_ùL#f#\'½ý‡Èc²ºÃ°áEâ“~*Z¦‹Í’£«S–&ÌÒü÷ÛJ“f+®V\]w‰Ïå †ŽË¸ ú~ý^Ct•M36²×l…é-ü ¥‡õLC[…Š™“]Ò€báa¤©³²fˆÁëZÜ…RͬjìCÕPDT´t3ÆæÖ¯õ2é§Ü;Ðwܰ«—jáC\®g1Õt’QÕ7‡Âѹ(×ήÁwùˆý¤0ÍÜã¹¥ó®®—­‘þñ„wæ& Þe¯÷ó«}í¯©;'*B&I[qÔJJK¾LïKÎ-ªñ¢$퉪 Æ!5$µŸX“Ö #¨å¯_³óÙëà¾Ðá)VÃb-Þ¿1Wà@Í…e‘LŒê•C2éyeɳ:Ú^Ú±)³æ-“q±!@œ‰Âk. pADã yxAœëc#9vACŠÅRçCïN ;µÆÉ…[øX霵 :[Q\Òça:^ÕµyäðêêÊ/±=üòå ŸE(‡7f#8ëþпd [ÿ¸?¡9øãþ¸NäûcÚž?îÇÄûFbr¿ÉÿÀä¥HáÇ¥.EŠ?,q)RúQiK‘òJZÊúA,)ëÇ\¦¤¬rq’²~Ä%IÊú"C÷†cï›§écú˜>¦ôq{yÚƒ cú˜>¦écúx1Û¦écú˜>¦ôW›bú˜>¦écúøA#Õå¦écú˜>¦ô­=}LÓÇô1}ü Ô‹~˜LÓÇô1}L“~àm‘Éô1}LÓÇô1±Þž{˜LÓÇô1}LÉ?ðñƒÀdú˜>¦écúHð¶&ÓÇô1}LÓG´$ó 0™>¦écú˜>nõ@ Z“écú˜>¦éãf´ø 0™>¦écú˜>Æ| }ÔÉô1}LÓÇô÷V &ÓÇô1}LÓÇÈZ¹—ÞÒ¬C[sºiñ4¶ÏU$I-=«îËLÏȳCò“<;!<±×óV›~ŸŠ&r„ľ?ž0guD$ØP~-Üß99æ‘ |ü )!’'® <ÞDø¬ÚŸ{ª•ö ‘§¼DñÉR"nO5'—4ú)/^U( ö$€§‘~›1)€ðãĸ0ù¢ªŸõÖÁˆU 0ÖÜÜÜÊìO>8fËpë„ply¯…Š"SèÐQx.Ö!WÇÍÇŠØ%¼Ñy°BœðÍO?'ßø9Ù9¢HÊ 1 °ÀÛB€7/âˆÏ'Çþ Æ7¿ò.*‚¿¿ó¹Ä=zm€x7´´( jª¶uÐnGph 0Ê6¢lØBÐd.˺†"²ÑO(éˤËÀ¸/<Ãöù&b©¾¿%Ç;õÛ*ý›ú¨4˽w¾ú1òñØp} Ôlc•ª}™éÍ$Qø¬ÞBÜx»#ì÷ |ýôÞŠÐæ 8~ö׺æü™N_<ôPÛÖ°PÈrHxpÄrh®¢°4?‹nR þí&Åû+ȹ dòáðrt¼w† pôÞWº*¹ÂЍÊù,/ŠU,&¯8!¾"ײý_(âJüØù«æ¡PßaÜ\ˆoX12c±g¶œiÏ ¤¾¨i¼##–5ó¯M,®ˆ¿üêåóçÇKL–P½lµžrØ­‹mµÔ: d ­ÖµHÆáÛwÒß;DèÙUœÀÏv®Õ´H?h¦÷Gnãx¶Ž™"(»¬ë@ÁÂñò½¿„ Œëce‰™(ï«ÍQ̑盛Yú Bø äÛŒà8ýÍÆhjùµ;:àwùµ”¿~¬5>"ª^i2:p-.}8»œïxŸOÛoÅí\Íkƒ¡EÓf]úbÃK¾8——ðÚ ¯9xiÒ—< kò´( ›¥EÐ"ë"v >Jü£ eòï×;¿ŠÝ˜%^lñâˆ)ÝÉ‹—‚x)Š—’x)S²€ªÇCÉL±0  š°0  a‚",TP„ ŠXá æ½[Ý«/Õû½•‹N»ÑmzŠ’j§ÎRzî5ßæV{ZhS…©›×fÊ-¶®…7´ð† ‡&T'|e+¾UKþÔU$û֣˾hú9½V;”&ÿ|™`LÝØ÷ß ›•Šm!‘£Ù(©Ö7‘¥)X¬§„"–UcÚܽ¶¦ï€M‘«¼`ÄõýxüìD5$IvÓvtrD5„U O'KXvž9«*¹¡À‡ôø+oÇ ï¯“¹êï«ÕO_ùÜu„£a˜ù²åꥥeºt©c:4PÖÙ/¦Å,Çe2mýZ6NйØS M ¸ÅAl4RÃñˆ(:[ž…óÿ:”!âo<*G—úEõ¤ú{õ“Zh’CÅ‘‰Å@ð§®à•Æõa+iNÆpŽ÷o5 øÙ‡Û¼‚åÆ+6~©c§°°ã¨!`Í*!!M‚¦w²Yëš=ùÆÕÉÊyD 5"kB_­RÖCv‹…r 0º)Ñ]`9‘ÆôÕ*”˜Ü f‹ˆ€13†ÕsÜœÁz'§Va48ߺÖ+MGNd6¢?o"&f¼Z¬ø™ü­ˆFµ†5O?f¾¸ A_°¡â’}k–tëÑè¶pY°îž.zùÐë^œ“F÷¢3 +$›zu>hw;ýe‚;Ê=áÔ˜¬ïÍ“íçó¤Û£¯ÛÏSÏÛ½þ€À*ƒÐÕä}â>Im»þÀú“ÔþEý ãÔë|œÓîg¯Gê´Ä&Mà ]ÚE,#|‘38_¬øæoXÿR^c—¾Š—]”Õä5ËOøÎïA²ÌàOØöIò(°„F^­>ä¶e?¼¶µúÐW’<»iãJ-.ùÄ%ó- )… ˜ ¼Fþº²¶® áŒ{VNÉ—ô!Õ•ó¾c4ý1'©]·7h»Ü;O$@)¡Õ-€á¤NÙ ™>ü1ì˜q©é²tT,L*ƒuÔôŽƒ\ò ʼ@\(m¬Žëƒ‰Õº*BHþí‹ €ÉRK‹²Èa'¿ž)– "4L& Ð˜¦Ã0Q™GBÇ~´‚±ü Ã…¥ g”¯~ÿ¤[òÅã…<¥ èŒàÃÒN‘²–™a.NªçÛÕݯ;M¥VSYãý=j©dÍÙ#›5 ‡‹! Ä Hw×kë,T|‘øàÛŸÔ9dO©M¬ªÚ —ëÃË,Ň¥y8¿§u3§Ÿ¯6ÍqÜå§rw[×°’úeðB+ø9TÓÊ,øÐ,7œ‰MTt$‹†0hH®±a )AðNc}ØðhM«”nE‚ú"ÜøIžÿIs]^} ä+GûÄJ¼’Ѱ£†…›PetÑÙ{ejìŒqXÿãr¾½º¢è+leŒOYXž•ÈVa­ØælQ¡¿•ºœ›ÕË`)°þ:vIX ¸”Іý1‰Ã±‡•ñËHªä(8Qš=¾úˆÈ#QHší`–#ç/«ç;ÕóÝêù~õüÝSm%SlÑ| …P…B–=PøÕbQ$'åðEL?”Ô9çè–ª>&J¤ï^«ˆÇCTÁ}Ù} »ëJ0Ï·‚‘«‚b+{[æf‡æå!kŠFö:ÿeüÒ‘a;cV쎠°?¨Þ€wcÀ†áKÓÆúu½q­/³³VQé!¥vu¶Ü’Áð]P¶ 2‹Ó2Š)àò“Á+ˆ¥h•  eùìCÀµ*‹%E¾_íl¡ #ø‡Œ)ê1E=¦¤Ç”ô˜²SJk9ذ(©ëaªAÑùº‹Z¥–â9ûb߀ØlQ Õ•N·Fk¯ñQÀǨ±áoŸjøb4Æ»€Þœ— m(ÛgÎv]éÅá{ÔhÉä§U¯«–U>t˜b¹Að|CiWáûmÁ_h»Y6;~ …ñÒìÛ嬣:1¼Ç›\ù4à;äexF¹’êXø» ÄhTÁ¼ÌŽQ¦£éN²w^%®¥U9~ÜVðNóz.òì. [Õ|¡X*ë³³Å6{8ì‘c<{Ø£È%ö(³‡{z‰èæ<©_ H·Õê{ƒ>ùDièöH»OÝ.韹§§ôôOºŸ ¼s±5RŸ4b(J (j¤ßZŠ8·ƒþÀo’½ÉŽ•}ÆËž¬F$E?(QiЊ~ m0«P´à)?Ñ œøB{BüíS°w9·XI-†M‹!Þb¤¶ZŒÇ-VU-Vñ-ÖšZ¬™·\5µß¢[Þ”¸'q#ØÇÎ,<ÒÇÌ%¼J.<_F¦ÞÒ‚ „‡-Fxe€ 9V²^Xf}ºÌŠ2ÁÊ—=êìÑ`&{xìû™rQâ @à6 D#¸ ÑÆË,AÌ\¢ŒJ.Ad:Ñ‚ D#ÐbD#€ XS*Ÿ=OÍSÁÓÖúøz†’ƒ˜+¾º’€ÖmÙZëjTg Ä0 ”¹k¬±ò-„]SÛ G-âÙG¼åçKnXñÚ¡Ç´`dàEã{lR¢Á²´¥^!gðýßñ•(™ÝrÔ Œ½óœ¬¶Íb2¦®ÇŒ³h àMHÚü<2?¿@´œ†ÿüâ뮹wÕöu¢¬¥o­èc|~·r]U®k”«oe­q–ÜQåjÝè'ý“\jU—Å÷[—¥mQÓ9Í+ Þx-ÁûW£Šd›jè-§¤·œ’ãê1±ûBÆü<6?ƒÛlâ÷×ê(ê1Tν.NÑ.Nè.®\.ȈL#‡¿–Úð=~54ì0 ?š›î†ïñÇåV(ø3sO¿ýPÃ5ýr9VTHðmK5gWI‰\%#Ê•©ø~ËBß™sœ¡…Ê>Æè1v9¬„s ú¸c7îBÁt±©"p"Ù¨Vi®¶ÕFñ¢œËKYm|ÒvçüCÆXzŒ5\¿Ö‡ªÑôÀwééÅÅŒ$B q«ÆÆI¡GDÊmD0NîB6c ‡Õ€ÄW{þzÒh…MœhYÚìý±×ñÇèhÝcµÃë«@C0+Û¹Ó¦åÜaÛº}I!åèð']Àl2#  ïÖ×9ȈH)þAÿ=Ì•æ¨ÒŠTõÐP»_o ÌKTm™Ã·êp®bKmÙ·ïèJž~ìþ¶g„WÖ*œ^rþgOFF!qÆœ@´~ªžo(Y~Œ*k+ôuqÑÔE`ðÆ(L ýJ×O㢌[8¦èeÙ 2hA†Íñ& âô˜JaGLMð8J#mˆéC£­lDŸ¸Éün/õO 4“–(;!P8Ó%(— ”Ã%¦”åÝHéÖ@PNxKÖm›2nÜÀíš-¡Ü&ûmšhä–Ì/xEswø!éÍù`’5‡BšàL‡GÂtx¼ƒáÖžÇÓqñF ¦ãâ(0ÓqÑb:.~?㢶'ŸŽã‚šŽ£ÀLÇFˆéØøýŒÓÑñ6 ¦£ã(0ÓÑÑb::~/£cõ\Ý"Ôï‹ë2,…:Ñ Kä–`r¢‘õÛKn(Å•†R[ñT¨‡6ôß³·›eÆ+¥evw3›³Që¶ÕrPÁ×jÕ³Ú% Q)ÕÛ¡©†UžÑõb9õñ’Kè¹çc%Ðóã%—ÐK†FçhŽ«zLŠçñŒ­3¬ÑÜ—x O«j‚4æZq`…Õ[4¿ò±`镃÷%´tÁ’Ì™”çâ ò=ÊJ3md:YÀWg>^ÌŒWÎaÜ‚…ÆÇhÌíáé|(¯~'8©x¬âã Ò:^R)ÒJ…aöÁsÔµu=G^Ï‘ç9ü>-àøF#>ó@’¿f"Ê~(´+EJ|áÚýÒl^ /káC¯+[[œè^ûUFÂÝW0e¦¢»²@n44Ö+•l«¨´_Ù;ý}Ão"¦8ª©êwŸ[×’XÝù—¥…U$ zÏxës¦1Ü‘åÜÌ•VÐ4”W5,G µ²$yë¿ÝJ1HWg3ëæÒ º/|Ha¨™ÐPãP!‰­!ÅrjV,r2iMW. z*Ë…Ñ3ÊXl]+÷ÄÊ0ÌÖjQhçØž7)Cchõ0=\í2b@2®ErýßÈZÆæBmi‘Ñ9×GW§L:œ¡Ó+ã&…nTâ°ÃŸitéª*V§uqu7gv¸±.®4zÈU…©pâÚµ²üß¶“3ÌMUÙâÄ¿„Œ¹J èüë ·sm˜Û´½ïøYÜSÙ­Ro¡9–v(<Õ°k<^±åHv¿þêÜnÇ51pô/ûjâÉt+=·Þn˜–G³O-˜Ù»ˆÐ.ž†Ý;•PÌòv¿¾m›e;4f±¯aî(¬\pîæ…À•ÔJçJ7 '4µ+º¶Üµ–ß1›«UF¤úy˜A)ȶªp3ÝÃÝÓÊšOã\`Zdl½yå1çnÂ~1FÑ•ÑÕNò܈ډOddLñ³·¯ßQ¬Pd†6)¢ÅÈAË=žh;âÔÛÅ$zwÙÉ$¶wÖÍ$™÷ÙÑ$Ù÷ÐÕ$IRﺻq2™$Ò¸—ãµ>œÈ»9;Æë:¶2C+ rÇi`¦èZX’•q¦ã1–Fº¾‰J!$’~¤‡â|+Õ¨qgÈU',<´:üeû*`ûŸÚjjUoVÄåß.ÿ®2 w9.‰êÙ`øOzïÁ㇋!Cpn +P[‡Ââ1~˜Wê&îô›ª766¯Îÿìy‡§gÑÔd˜è%4`âò—!˜×ïê_…^YÁŠáö¯1þÄ‘ýéÐ_€ ¾ü…ˆ^}ˆ{qmp2qªja×?î=¬`޲¬[À«åd¯çÔ顈…â̸"&‘8˜q,Šè`ÓGAïEU”mà¨hýÀÂûˆ¬ƒñ]rÞëž{½Áé_œŸw{ÒîÐZé,¼>x¾P"g]X@àåöí믹k!VrøT/—ZxõD¤ÄÛ )l¼¢†œ}ùf¸CW³ªËeÉ£Mí?Uhh&;êHÝ-¨“`ö.êßÕ ‹ãGž5ŸYÛœ`Ä‹æ% ¸5†÷Ð4ã–=›dÙFþjÏ—¯o^— Àã°š¯&ąÝOuˆÞK>ƒÒûš ­g‚û?îN…$XÆ 3^¿- Zcûf+k›>áµ*\‹F"tÃ¬ÖøYqÿ7<ŽJŒ'щP¥9,•”ÍÔ8A¨9üŒèÌŸ2ÿŽ™š×ÏÄX$ªAnÓª¸“ªàÜ?âì?Žf}OÅé@v_ÙyÜiJ¤g´â}Ì鋬&绯eÕñ8Ö^„ä™VÚì=­s]ø0ÐY½O|~ðž¯Ý”ßÇF³3TC¦{î´€ÆçæÝî"å"BkQÝÑq`[÷¹™è–²¦ÁMr»XÓ÷‹Ÿ›þýbͲÃó1ÐC¢µ]ãçæ½íǯ>ë„kð‘tñÎEsm¯OZݩ։Ûi’êºÞ^\\¬®áªè¢qŽ¥SæÔ„ÄMP öÑQG߸íi_,¿ á°‡ºL€~ª2y'<%lv‹ 3ýibIúAi}Óœt/dw}oÓ®½^ßGéce}k‹¸§ŸÝ+J¼Û>'Þ'¯CÚ-ò”Øù!&‚ ¢§eòÄV9’)F†p„'úÕÀh÷þúày‰4NÜ^Ÿ NÜq{§¸?hŸž’†.´…–a0"ª% ¯)îC>¤žYx…^úˆ¬»}ï”®ºI¿Ýùpꑎ÷ÁxMDÖm <Šñ3ÚI‹4‚†R‚¤DÙôÀPćPÃ<ôyߎLÍ“ú/CH_âùp®8-3šáiƒ@#³`c# iú‘LÁÖGg]Ñ$kìÑB‚©£9›ê2K†Å¬žA…(¯ý·bäC"M¶¯¹›Çr®¾óç`C$˜GäàÄë{8Ü ¼þ€ÍxÞåÀë4éhò¡çžŸxgiœ^ôq¨!ªßÏ»-4 ‰±_€²Ã郾@6G¤ÂR õÄÙœLÂ.Éip,Kês‹¯þ’ô@_ò:SwƧJ¯‡ò t²cüC–’‹s018ñH¯{ævÈ©7¦)4,vYžÛóÛ -!cdH&|Êyþ÷Ðì"…ÉL@®—kPd;cxFŒöel–Ê,ãA 'D©œ¡e*äi’y^¼‘r8?ØQCKˆUHËÓ ò ,½¯ c€qðƒ0Ðz*Í£‚^†VL8x?ì!0eR_×ùƒŽ/ØsZí}ƒuøy·Ýt»óÉ=m7IßûóÂë4¼L°g0MÒ°83–“ ë z!­ÙUû÷E›Yú]ïAFN#Þ—»ÐïF2ó ¢AQŒt|U36cÍlÿw³¿kùôh_FÀåw_×sêñþæÌ;Й+‡¼?+ôeˆú="«ofåŒ?0jFÏk&ðefœ?0ëÆÈm¦ÌMœRt`TŽhóf¬?¥æÀ²Œl2Ö̆„˜uªåÓ£}†_ê9µxè¡tIÀW¸ º ¡}¶÷1j¼ÌqvÃ!e)‹jº3RGŒÃ0ïò”&ã°œ§C3 )D1¤Pì¨p‚GaYTÆúÍò|k£Ñí zÝS±Bj ¼!ÉyO²ö'Py-ˆâëi“10®¬ÿç\=ÊËØý<×D!Œ©K.0î𨛬ð§bPÊ’P†QÙÇ”°´lžë±%v§Kv{Þ9t'µ}§é»ä3]c»'\…‹Dó´ºÅF!½ú ·B™°µwè2Dû>Œl™þTsÄØùæ®ï¤¸QIoV@‚&ƒ@BŠÙ«Snß·!Â+{~EQ ƒnm*$"‚À$ˆ ˆÈFg±7,ãoV¬Õ*•ÅB{j7†@A/ Ž‘ýÙõzÒN$¬îér_0¢ž÷c„að+2ø¬«£Åc0‚ÁDàÔo ‡Ö!¬Áe=|Ú–­n³(=‚Ãñƒ¯Iàc5r8Æž\Û»¡ülò8…1P° èzßP1P‘(ñ§fj‰Åñ(Œ€Ý즀ʷ$ ¹!\¡ÎŸ 3ŸÆ¢0F ¶£ ö´›jìºa{Úüéh£[}³(Œ€ì¤9ÉrrÁ>al4*óшí—[uÍ-sŽKe6,i)ÄplXÉ®O0¾NˆÁZ‡0?›šý-Ç£0Fž úzK@¸vô…´¡2gœ˜ÙZš™ Ç£0FЗ VR€ÊÁq þlZ vžÎÒð$<&”Nn38R%·œ“[NÆàògKoˆ.ƒÇ-­k$¨Ö5Æ͵˜Ð Æ”›²Nƒ?›jáÀãxÆp@¤5ƒK™›rCZšË[@C´Íò%‹ãQ#HK PÈ,}3@npru*°ÎGÇuGÄTGltl¨Éµ2^ß PR¹aÕ_à<âϦ60²8…1£¤5C†ê›a².hðiÛÅ'Ýeh-›ÅQ‚I AÂ×ÛB’£‰åƒ†±'[àyeµÁ °åæ°Êû `itÞHb"bÇͩʽ©ìB¼Þ0o6› Ù8çØþ$ËnŽÒ¦À• ý(?yîÂ-rãë-ÊÎÇ%Ãg‘=­"çû~è.ªÊ*Þ"3¼Þ(s»?àÙ"ôÛºo»?7ÐÊiKX­Ç¸:. cgøj_ÊÒ7ó æïEC)@=FÕBJâcüü—øü~þG|þG6w°#BÅ÷;2a…+ ¥ÇÿúOUêsÛ5^6›½žeHEÅQ -ûòBW(.bñf€ EÕú…Úýÿ…Züo‚nuööÏÞ à{©ÓøÑØß°À[4 ³)ˆ&0G‘ãø8Üú׿®9ºˆ"Ò“Ëccˆ#òŸ@ˆ>ù­œ˜<½c*ÕþÜ;C™Ô4m:g]+;iâ“Ç–˜ø¸”ŵŠ/mh$tTíßIQéÕ§+NB†…_§W!”O3ìxñôô¢ï5Æ,¿ÓÃTM#²þú{Ê~„ýž±ù,$ùýT©•Zo7ÛBçõXÀ©ÛïkŠùÌÞ ÆÕDbÕÀøõ©ÆõS žÓˆß,#äãÙ´yeˬç…ày‹=m—?ë×{6õbn’ÝÀºP`á…"–ø³lR3$]•«‚Lkì¼ÂH_œ<8ËH‹+€ˆ4¸,ðÅá½>–x5q~„&„‘‚B ©å´1q:E_׿’á}ýÈÇ ãœAŠÎiÿû{°žÿ" úé³d»î³’út\ZG'„a|×·$ù0Ÿ ­>ñ{<ìõ¬8Û¼ÿNðÔV+Ä=õ¯ )žf«o^‡g iuhÕŽ>=þlù!áÃc–·ÆàÒ•ývè‚l\Àrx•1jôô¬A¹ëZ¹I¤µ3„QY›?s¡ðY4Ć^ ÂÕ¬(gYkËrÌÙf‰¶)c¨Ñ3°ô,¹–Ú_ðòZ=¬ÞªN«Õâ¢lþbeé›A]vŒlÚz‘hôM$æ9Ë•aŒáµÙ1A¡ê3Ó(°³E¦1Õª·ß"ø!{:’++ÏæX—áBÙþ”Ûo Æ` L,U¿Ú¹ëÐä.³(Yr˜ß³5.?òƒy¾¿¨=5Ìù§¬öm3_em]d© ç/>NL ÃQöÞæõœŽçÊi¯}=k`~Úë†ìbùÈ)†As¾¾³ÿ2À’rÝVbwð=ÇÒÁ#0_ûˆm]?Igfþ}wJ9†C[Õ Ÿ ŠˆöWáy³uí h‡îïý?<€õ^é|ûh¾QÐg,+[Êæu°Ã’KÙV•-ƒ¶dmË W! UÌbº³=@ƒh䈓4ü¾ÙÞ–ßìÛ@`*w­k”5®Y!tàÂSQxÑÇ3v€jdɆåI^J„ä}ž„ GBYWS-`"&k]•í¸ß¸\N–d{¿ÑkŸó[Týv·ÓOzlpA‰*Êî|Åø\ŽH-&´UÂWg>X >[LŸÇn2±wݲm6g°! ‹2±3¦BX½K „§Ü¡©¥ŸÜ°T)CVʬ›lìUjë•ýÍíÍýýÚÞæþÁÞÖúÁ"YïžÃ}$Ï¥µƒ7Ž>ƒMª~f†a(4¼ÇNãzíÆ€¶ÛEʦJÿã;v€9ßàfIj" “ZÓlVÄús÷åö¨áeˆÓA8­ýèwÒÇ©ƒÎcïkEšô^!«h_9BŒ.>CKcàdhŠy‡,2l©ÝSÇÝÔõ?nOB`DPAw»ð—/Æb:NúPŠýß¼˜ñ9|äãàÐvfîgo€ ýô}_×ÑG ôß©´‘I1ÉÇ 8N®:ãa„²çˆÎ ÓõC@ÈÄØà(Ï<2oJØ*¶®}¥õ÷E"úæO– Òì3î®a|ó<῵žËÞ—ÚdŸ[J‚߯Þ@¾ovšI¹ßÚ$ý>×\é+ò&GýIE–ãû¡SÁ—‰VªIö$‰6IúA(5öU’FÒCSç+Ô'Ü›èùëÝ3Ù*RÚŽ®£~zµ—¡ðoo¹Ÿéû4Ii;Ù÷=¥ÖDX܈Ÿ‘µ‡ÌPfÑ"͇¾ú˜^}ßÎ|Ôçñ_ó˜æ¨üŠ@ÍÀSʺAÅM°g ÌŠ¥)³'†ÛºïØlK^ïýºµÿ¶'[;¿â~pÛyn†Ì¿ÝG[×ødzžø¾…ï[à ]£³!?i¨e0Œ0?¸è}l÷Oj”¦vçC < PT¶­tµ5ºÔ­I“µM–(ÃÈ*É ÝÍsuÛƒŸtt¼\g$°Z_œ[­Ö“I#«ku-1¨?¡Ò]d<*ÛEÅâ嫈H¼V‡·ÊÌ(¼Tf¡oH==Ãjèn¾“U¤¾ÆÚ&Z÷:ÖÜAÃ/X_qÑŠÛ÷@h§,™w>@lµà§îQX Ð1´ë§Ä€-àER9=%ƒ“žçáaŸ¤/Î)ÜyrÚý A{pêeà–wëÔx‹L5sûT¾·O¯«»ø¾ ïÊÝe¥^ß`£&¼É°ê%³+£ª—hüuøé®­5}ûöÓOO ÝÃH¤´])Ï…c}^,£Á_lƒ.}e±ÈP:f/§ø²+B·ãûBÎßJq”;<ØÜÙØÜ ë/*{•õƒÍ=²¾]ÙßßÜçWü(ÂðØi^¯/¹§ƒšðJÅîJ±Y„éÙÂ&iöEQ®$×ÍŘà”('²V +„•Y„É’ãп}K²HQïãR%ÀÂ{…+íE2Šx›qñÁ2„BKùç?oÄ-½|X‘HîÏIp™¥«w¼VNÒ0f ÌÞ#¥´Ïº¡¸1ÅÕw‘z°&n_†àv»y‚/Rº-œ Úó‹A1õ·äçžg/°¿Vv1W\‚òšîÀÅ—îÅ€–\Z° öËÈÒ_¡Ã'ýùžÅl1ïüÍÊÓGÎ*ZŽMÃí¬³þ–MÎÈßEàöh‘½nw0,ݨx?qßÉï‘æ9eð¹KúÝ]zÐfG×táÑé“v‡.&Ú}l‡tmAè NW$Ð2O¼3ÈHÛjÏ;ïy}ºš¡«‘OžÊüù¤Û÷È©×ù08éã9Q·Õê{°º¡¢ÃW¯¹Hq Ðè¡Ì¥ðšÝ º¨aañî]ñxþ`yâ‘~û ]×4»àÌåC—œt{=ºº"Ÿ{]ºFú|âu(!gÞ–U…Œ (V”G`™åÂ} NE_ÃÓ"Z@y—ÆöØzl1õ]9Ò­6]p¹§ý.šÊqÛ¾8 CrY§!ŸÜ8±Å…ú<¾è´ˆ:0b©Û£àNÛ´(=# ϲmPóúó¢Ý£˜ÀqÓ¡¢UZß;w)1P ¼\ÀŽû˜„«'Á¢µRé8Ã)'­‹ÓÓz»Éçϼ³nï Îôj;S§ãäK ¡DŸvŒu 2]&v.mÄ,nÛ˜6¢Mßód~àT“GEË:}+bÓH,c|·,\O%¦˜^ígÒ‹³‡ßÞ¯Åà€SJŒVAã@ÑàÌA§§•ÎÕ,çAŸšeäHåTqá=}³ñm¾å@äŹTÀØ{)qŽ-ÇgX!9†å5† æå|Ü*Hn•4ne%·,É-$YœCy„ÎÞ‹Érë½!RÅ®\rì²³»xâàÛQv¡\Yxç.|9NA*øI·ídI´´u9’b+›Ü˜bkóŽÀHB4­»ç˜ž>ôº甌 º³_!ÙÔK÷Šïõ¼³sº·Å]:)½:à=Ué8µQÿÖ›l²d›uR§pš'µäÆcZ‚qÎh&¢Oå8û wÁ¾ ŸžKç¥lV[!OÜ'ùgQî]®Îîc“c-~’ì£ôÍÝ/}s“¦ï«5V“G¯D5Š&r̸üš·¯çø\Ô–"IN¦—™Ù8ô&8šó}?ïö¿x½.Ÿ Øbl·ÛÇÕHA2¥$Öc{4=›S->qX OïÓiw.“^}I¹õcx]€÷zÞ«Ÿg31VVÎNŒg…RØ\ZpÔª­ –±¶l%î_qˆµÍd[,•Ãi0‰«)âä0S:•2G? ¬×ÿÞ­Î[ùZõÑoo«_Vß¿ì÷k¯«KÕãê?·-WòŸ~»¨Wß®ýº±Q}ºùÇÙÉëwÕÕê¢ûñÜn>¯>ûóìêÏvõúí›çÍ·—ÕÅÊyõøäõ݃Ýjºc—>VçœêÏÝê?ßþÙ¯.}xuØìUW—{Õ'Ín¶ús=ר¦[µ_zÕ•êLµš«fªGYë èþñÛ¿?mS«ÿu¶]ëïW—r'ÕåËêlõèÝNuå×í>E0ÿ墺D©Tç»Õe÷u5]ýù]õÙù›ê?ŠÝÝêû×êûMš±\}Ò¨Uÿñ¥ºP/äþý[¾â½¨ýR}ôkû׿~8ùísõ}µúÉs·ºúñ£K£—(‡ÿSýxÕé_~YÛî]TŸT?ÖªGÅç½ß/«×4ÇJõqýô²ú¬_]Ø©þƒrb£:ë¾Ûèô?W—ßþú®úߪ‹¿v¼rõÑÉ.åÚ\Ý©¦÷_QÂæi柫ÿ¼ÈWÿU]ͯç×NêÕ•³ê§͓ڶ•ÿ÷iõøu5“ÝÛ-T¿þYýÇvõ}íK~³údãsá°ZŸÝU ¹ÄöU%Ú3ô¾Zú7mOik¤ÚâO/ñ†í6CÚ fmð)m´BûÃæ·Ð~òYk{ÐôhË{ü’µ»¥cht¬Í½ÿ -Ž7¸UÞÜ µýló¶F›oiØÐ期»ØÊX#{¼Üƒ Û×ÊL5—ÑšÖã7¬aÑvµ|9K´)lRKK´=ÍwikJÿüŽ6%lI´!½ß¤ÍèIãè_´¤Ð{Ö|Xëy\zô­å<¡í†5›ë÷+ÐdžõvþñÇϼµ@cùÇoØThKY¥í›ÉüûŸiùo +gªy¿ÆÆñõÏlcËÀ†‘*Ùlì©ÖSPi%>¤•l'Ù!‰ö`:MG£éhw4²“,s4zütq:=¸ÈR­¯ •¬d¢¥´›^µb Zä–®”ÕË~1£Ëw76Ùó½¾'×®u¾t-«¥«å(qYò|™‹Ã˜\rû>KÛ÷YNcrdŸ¥*›\BÞà.xï̽düá\Ëkœ*b9ì=á#eÚîÓŽ{æYÏêß™&|žv;¼ÚϼìÌçB“ÀÉ L’\S´ÃEMšô¿(˜ˆìβîgrÙh„M.±U{/¾ªð¸<“ïì–ÏÞ–Z¤W—±2Ïðh>kf2xsŸ¹1*¡0º¬äŽlíàÅ*Rt—ícén^VHY²Þ2˜lå$÷ Úþ¶¤N  ¬’&XÎË}¯-»˜­òPÄà¶ýMü‡UÆââ"}]q3õz¾Ðf"$A©}.ò\L•ò†0ªÒ¹’gìÝÒÞ¹DàÃW¸Éë’Ï;Š6¤qñs²Å­ÓN²nçó™¦G_2­Ü oÛæ„ê·ì|lÊ¿ÐÖ™fZ’uMOŠjDš,Xr¬i1æÙ¶kfYÓ[r/ÝZƒ!0’eÅä §`°LgSVºáŒÔøX—ÍOOacŠ’g8GõrZ8v!")9î;AL)®L¨æðCQ'áCÑ*sðƒº”÷' çXLVHÏ y ´Þ±q©Mn" ù0j‘ܼ6$|Z-Šy0ôÞ Áhþ!ÌlÔOœ`­E?wÛ§^s™x½^·GØ9â¸újÇŸ¸=·ÊéÀ…ón»:O§(NQXׄf«vé´Çº]rêö>x¨7 ?Ð`bÖ °LòíéÂÂ7rÍ –´ZÜËнŽ"ŒåCŽø°üh½‹Ù¡”½:K“'³Õº2'Þt«è/dÛv{b/3gó`ik>&w|]Ñ0Ä'y2=RGÔ êJåIjÛõ.ŽÐgÉ1öoäóÌMD³€îUÖók¹ØlONvCJþ¶×ô!ÖÈ×Á;,nø¾ßJôpù†Ü¨«@"=´V…¼‡Îl Eæú¢ä–ã7ÿIÖC(b³ÕÐz`H¬‡¿ÔLzôn,jóÉQëÔ*D&+z/ª·º¹Pý­º _ù¸äOnŠÑ4g9~ ³ «AUûþ7dÆÿþ­nNùÀø¶oÉ´}‹å,“³vŸ›<ëµ;”QôýïKh[yíMmUõ²Ø†Eܤ¼Ž¡Á=©;ÀuD!5ÑëPÈû{'t÷.ݽÿ ½#:ï¿Bï¢å‚Ý (ö&` "ÞxYHðpÁÔ$>b—,ª—®[½¬çéÿôÙÈÒA³Y ÿ—èK‹¾´ð¥%PGÌÙɘ]T'cI÷q¸¶o>™h«4&? ÑRæ¸sۑ˨ZÍ““£¹êBv¡Ì©UzX@Ùü@ÂNø@¢Â7Ä8Uçì"s‘å¸Üͤ4'~Oª(Km2ÃÉjŒfÐ=²‡K6î‘=l—gk¼lY½¸Ïñ9¡0šìÀ‘&ô¿Õ´•É~ËÌ,Y}3+Iu­=XÍ-úÅ/m°ìw d½Ûir¦XDlÙ{^Kª*ey›±¹–MQ“”E»bÊM¶…°qÊAÌØ{ÒŠ`Dr<.¿¼äai¢+7”ßôÿ}Æ`³øœ• ¶5烹ÆX‹QŠ3BY&Ùt]cí÷^(dÔݯ,hÒÂúñ^kd¼îäÈÜ{¯É;!ôýýV&”OÒî stÞouÞ©÷ÞEщ$m»wJï}×îÝ‘,ͧ,H›)´ø¦´Ï:±ïû»Ù"-¿wOÏOÜåcúÖè z§º]ÝImp˜ø‹þYo°íðD·3Š2EíÝÐHÉc‚¾; q‚„eÃDzHÒEÿZÓ¬îßa“<ìŸO¾¾@ºùÍˤg^lîd.Ó–íð÷Ü·|¡˜®ûSF^f–’»ÎnÖ¥Ò‚V ç|Œiòí¢¸ŠÁ8àñíbYmé•û—K¦-.Ør·ˆVÖ¹‚?ÏÂvsüË+ZÜê(¢}!uÉ ¬ÄÐlmGìp`E…Òÿ³t «@¦Ó«sV&]µ2 ö)Ýœ—~ƒ&ÜS·ëÌËJâæ!¿¡]Xº#k^3põ.½úhõI†ÖvÚÍÌLfl-h,Èù¾5ÛêΑ41©qx‘6›2a/ó­j}{œI'Ø,|ªx%OÑ‹†í:„*~@ k]ÆÊjpð6ÃcØhù˜_:ÌiC³£†`?'~#8ê GÓàmò|u¬p¾ê‚;vº2œ¯Š78Ïi-ÌÒ“j³ Ÿíx€hTTsÞZouù­¬ŠÐ_’¾l ý:“Æ_Õš›Ëdª—¥|f.ó-ÉQ/¯¯$r¾>î˜;uiÍ)+¶ÓœŽ­f¡<ž{ŠYF;Û–æmP͇Šc3­&ü,ÊÛ„¯: Ošb5Íñ%†˜OrjÁ ‹ aúß u´<­Ú\V\ébÓ¬AÄ‘lèã‚Ý\+â)WBâØÂƒñ‡½'»¦xDÖ™ÕÔ®ÞúÝÓ‹GNÛgí¡[ðþ@ҫ߈7hpË«¡–J)¤Ïí& ©{ ÷¢Ï ¯~îö>¢o ÐéwI³Ýjy=0b¯¬ÂÖ¯^‘l höÓSÒrÛ§ ´ö„ÝQÊŸv‡”ê+0Hjðµ~æ–çØ²ˆ­õþû÷2>.—EÀôßôßôßôßôßÿ/•™þþÚ¿ÔÒ¹KWý,aj¸ Y‹ƒó šár¿îoI¿³hYvyW>Ìü:5Áçå2AèhcÙ¦‡ ‹MÏ;?½ÂE“× j«öI¾-,<ûFT{¥±°{M—M3Þå9-pLØ7zžK—c`›ž|òzW¬²hÖòa‘ÄJÓñ™§ "0ïÞk‚-ú.3ˆ¯Vb] ©uÚý¼H*Ü3s䚎­èæ)0XuyŸ¼3–Oc`ÆŒýî’3š¡?+>ÆIÎB¶Þc«;´ÏJ ®ï(—èZ›œ]œÚç§žî-Z-ñ¶hŸ-òžTÖÖŸTŽênï8}üµX¶¯Q.·\=ªµóùëêQÂë%ÆQ£æçÃ[G8h'tî¶ ­(ØÖÀmîoȺ{v™ô¼§nPˆ=¯ß‡Ó5~É\B¶.´XÀ0 2+“ùZš¿ž£Ûì¦W¿øØ&¯¨J³|Å¥8\ ö¸>-Øns¾ívA;&:J¹`ff™K*³Õ2£D×¶…zf» e.i™Ñd„/3lõÌNNev zæÍØ2ê™s¶ÊœÓ– aXÎǰ¼Æ°¼Î°|Ãò>†å5†ØÍ>3ëËÜRƒ©­àƒVРåq3\d­‚Å™Ûþ¢¶í§þÇ÷R¢˜á÷ѬÔK÷’Ô]ºK¦$ÁPDG*j«}„evIÖMô„ïDÇûÆ­º}µ'Ñ÷rš•6E­ïåFô=ú¿îüÀ墖’Ö©¸1 .`¶•€™~ËÖb3ñãþðþ&J³¥5èiziÜ>Ku1QÊb ª59š0{˜jM9Kµ&ÊøŸ½'*¾ÓÖäŽC™($Ñ ;ÍÑÿóôÿý¿Hÿ/ÑÿËüÿ+ð49žÇÎ0Ù 6ÇtÆÿ_²­Ór´Ö™³ÌCÛ<ô(•LƒeÇ4¦WÖ¦C[­™J†8Ö²ôø2ýÖâm NµoÇ÷÷¥÷Á³ËfyŽeâ²Z_8¬Òéq|ô:>ãØ’5ñ2¶fKµfú.í`VÐó¬ Ã†™A/&7:1¸Ó‰Á Nítr0xC§ƒwtj0¿Kfú¢ŒòèaàS,˜øK&=%½%ÛäG)gò’.¢8/™Ô¶¤ "vŠ”µA¤ì’ùrA‹ÒråRVVåäeT>7U”–«²,-—¥å*ÒO-—¥å*¥,[Ëek¹ÊôSËeëƒc6e9Z6Ú>áö~£c¤”‘þNÒGÙìñôÏ_ëÏle}}s÷ ³äßYúV>Ÿ-«{¼Ó.>厹rsWA–÷vµÓ?÷Õ¾îâ·dˆ¦4UQ#x©z”Î-äóN^ˆüŸ.´cnÿ™­ï¡¥pï¡ñýænìcr”ÿÏ\Î úÿtòSÿŸwð›úÿœúÿLÂÿg’—]…!^‡ ¶4Eîÿ³lŠ ¥x"é;‡cùÿLÎOòÏè ôÄP•Ñ=Z2=–C®WÐ.2–üz¢©÷e¸uL\³h ÿŸ :´´ÊÄ©…‚[%É­¬Æ-Gr+'¹UÐ ËÚýÖÄ׌ãÿ3IS×–Æ.f½‡oúÿ´4Mµ„íVß¹+KG£Xh›Ý‰Ë;÷ÿ™Ü0$ÍÐ:BpkXŸMTÛøøÿœó˜ÿω±/®ÿÏÉÑ77iúbûÿLpÔ(™4¦ÄåÿS7¥˜´•‰xþ?ä赃Þ5ÝÿgN.Æ„ÿÏ’`Š:¾åþ?u…ü¤ &âÿ³ÜÒ£X›K‹Ú5’ZÆÚê.Í_qˆulQi3;\w\óÿY&Ò…DÎV)sü¸Xúÿ„[‘°PTçS¤È@2ÿŸEG bö¢r›ìrgêÿsêqï&÷’3›S²m£¯Ný>X·{|üCÿŸ6V I¥„­ MýNG£1G£ää\%˦þ?â@d©ˆÖW‰‹K“ñsËÍe‚‚Ö¢j€–å3 Ï–º2á­‹ûB5g0™7÷¦ÔÆ–Í]\¦EÛ¶¢é—UfGÙy`ŠsDóÈçp)Kî!ùÿŒáŸ5AÿŸ¥Ès1cTÒ­í0?ŸŽöžÓÞYw¸‡]ôÿé˜C šLu×.©;ê‰[ãûÿ,$hSµhAhù†$!þ?¹‹aOŽ6ÿŸ,EË´×í$Àz¸k ß÷L:¦Ð$=™™KSèî³*á¥é­€NJ9ÝP q|9AÝô9ýñùð°€Nn©#Ý(Nn3ŽÐIº{„ÆtúÐyÿz-÷†@<¼1×f·sZFxì@!i¯ ã8l«`ÞM&= ã´ Š©Zât‚m‰9MðWNñ#¦МfËÁé[ëVàF®ÁoRÑbxXJÒpžòª*œ~êÎ’îȱ|Ó}Ÿ7 ÇpúÝ×»à$…]Ì/æä©¼w©Þä çtb4^1'MçýVçÝ‘zï]4è óè½ïÚ½;’į̈Åûþn¶Èwå4"þÒ€æ•þpÂ~ÎîÎhFÓèdiœ av˜HIš èâ@#š¤r:Áúº7 EßM ©­4Î-©ok±qUîa»\‘Uã‘m¸Øäfd.ÙY¡¥l¯r½hæ´ gásü<·%cbOæT»`ïHíÝ:7†Î±Ë30à´¬°ãþŸmNAeFÿg"s.ă`Îç,WT™óY-sÞ fF{¦‡3™¹`i™#<]™ e•¹hk™‹!ŠTÅ¢™¹¤IJKJ¤Åã×*…Ô]ÙWwe­îÊÒ¶?Zߥ½[ůÒ!™Üj[Ù¢ÜjC#²¸N—e%*Õþ¡næ5Áe.¯÷½üð¾rÝf•ËDºyËðU¿:—1 kI94ïœn±°ýá~jEiÜ"ŠË$ zi9étº( | 2£ÿÌ–3®äx\Þ27ù¼Ü@ÇÊëëûlMß»ÓͲ¦¦XðYôsŒƒp h8Õ4¼¿Ò‘VºáD3¯9V„Ù _6f« IøèŒ`õŸ_%Mºêä|ßE3}.kÂË9fy¹‚‰O®lâKã z`ÐéÍ—L~|Ò_˜ ∰ˆïò ¬h™yÁi¥~½lJ§[É1q/LÚèðoÐ^¶MÞ”ó&ïÊ%ãüQêé­l΀s€^Î>0èø‚;J Ú‚F¯e›Ö-\høÀê  œn2g”R²Î|Pò)É)éÒp W<*—WQ9úYVQy[EåégA‹*«¨BÊ*8*ª  ¡‹)«¨„ÐVQ›4KôS›4KYU¦Ÿ9-ª¨ ŽÙ”U¶Tí–ð?{OT…wêtsú'9§ˆS§›Ó?“l_wñ»…ÓÍø^3œ_LÿŸŽ=IÿŸùlˆÿOgêÿó~SÿŸSÿŸIøÿLÐû¥4cd3©ŠØÄæ¥ÿO&Q&…)£ÄMCãÿ³˜àm߂ƢÁ¢{´d[‰CΡƸð^švZã—…vA)&­µ<–ÿÏb‚ÖhòÃór>n$·J·²’[–䖣ݧÐu¼¾}9žÿÏm8I}}[/tÜuÿŸ†îþ}øÿLÒ ªN1§‰Ü‰ý¿»öÿi'8çŒf"úùÞûÔ»õÿ99æ1ÿŸc_LÿŸ¤onÒôÅõÿ™KpÔ(š4Ê1Cùÿ,bª‰XcŽéÿ3A/,ò`™/tÿŸŽ\Œ ÿŸÉ”’XqÿŸYe."Yó’ ùÿ´œYò¡siN[µÔ2Ö–­ýZjkiêÊêÂðÿikZÉ P)sÒ6÷ÿ ×f¤ú²ª2ÐæJäÌÿg®¤Š†Sô\Q©9çùü˜OvΟúÿœzÜßãžc—ÛW•¤ß{ÖW§þ?¬Û=îGýZXq0$•ìd¯_NýNG£1G£älJ•,s4šúÿ|ˆ‘¥"Z_%.*%«17ŽÿÏmPZŽÖË~1£Ëw7š®ŠÏ cÙXºNÄÆÃþ?K ÊÇ´}ŸXj“ãþ?‘+—,©ùÁý:’kySš×T+ácþ?­ìh V6Aƒ¨á¦€mÃ:gxÎv78›ËF3lr™­Ú}ñu…ÇïDë*–âzoâwmoåÔ²GWC‚vFmíìEÞÑ— «°•¥zŸOÖ†ÜÉú,4ù>V3‘"äÉvV»²¯ó8Òˆ+5]¥?ykú!¹ÕOôR™‹<Ó†¦¼!‘bÎ>³Ú»¥½ó‹ÍÜj«9æ4kŽkÜŠ@s²ýåN@­l‚î-Lq3ÃNÉB¼€rŽxR`ðʸÞòÙéHø4å&^@4Žê ž½€>„ýœÔY— 0à”ŸT6$K^@m9èØ…@ ôêÈÁß bŠ^@áfŠ£9N²’Æñ:99½òN3AYýX^@'MëûP¨½+r ½wBð^@'K°ð:a‚¿;/ eûÄY>žï²ï~vˆét¢t–&OfL/ ßwÓMÈ èäN±Ã¼€Nì€ú{óšKN€CJþ¶åT»„Íw¥÷î}ò¾½€N´¢¼€>Àz¸c/ ßùL:¦ÐIi(›^@'©_|+/ “›b4Úï—“Ô†º‰ÐŸÛ 褮Jh¾'y+"¾ÐIº{„ÆôúÐyÿz-÷f^@KÉQmù¨¾P4.L9O Çö:ÙVÁ\œLz@Ç h)A s­ôj˜6OtžœÐ ]LŠét‚—”’ñ:¹{[÷Ìž›zäxð:Ñû¡7òš¨ÒŒ¦Áe4¸”³v}@º^âz©´5B`PªLšÇJ19ˆÙ$\RÜÄ è„Æk+7”ßôn¢ å,~g%ƒmÁÒ¬×+h>|'8Ärú^,Œïôû%0¦Á‰J»˜wÌÉSyïb½ÉË èäh4|cNšÎû­Î»#õÞ»hÐ'æÐ{ßµ{w$ß™Pÿ’÷ýÝì‘ïÊ ¨"ÿÒÝ€Nð®Á¹ Òhº,$,&ÓC’&(ûŸ¸Ј&©Ü€N°¾îÍ hÁ¬K¥­tÎùÓäÛEq!ƒqÀãÛŲÚ.å”í_.™V´¸Q`ËÝ"sjéY¸Ænƒ®/³nÍqæÔ¼Fc êÜb<ÏÀÝEþÉYsìò†“R~ïÜ€æK¦[¯oÃ…„ÛðÄÝ€:y£:ÕN¶ê%Í hÁ¨œRŠÊ*ÜÎ(ß”¶ðMYÔö©w‡—UU’“¾`Á ¨­9ä†k¶fѯzçƒâ'wÄÖTÀt°Ãa8 ›fšˆPýÐ\¿F“Gî©[væ•%q‘_ÐЮ-Ý‘U¯IºÕÇVÝE`Î÷­ÙÐPÜP‡'éÔwó¹«tˆaù­€Ò5Ũa¿çX1/ôpg„üŽÊc~ù0§ ÍÊç"·ç=ñ{q“wêXá|Õw”(ݽj(_5”Žâ ÞåÔ“j³ Ÿí„PKUK·Š·šŸË²*@‡'s’¾t|'n@óúJ"çëãŽy½ÓQ÷Öœ²áŒÚ±Õ,.*ŠrVÑζ•PK9².06 ºEy¥¹í°µjšãK 1ŸäÔ‚Â ¿$Ü€æ²âR÷Rm#jÌüÐÇ»`{ÇŽ]KHœ4½“7=ŒNÝ€NÝ€NÿMÿMÿMÿMÿùÿMÝ€þÕS7 S7 S7 °±*j'AŬpEÈ$'\óö•>ÍØâs¾-nAÍK½ —˜ A02—Tf;«e¶CxvÙ,ÏñyEù¨Ž/éô8>zŸá¾œÏ (¶fKµæœæ hÛæ¬ Ã†™A/&·¼Ï¹4 Ú Y“v:9¼¡ÓƒÁ;pVm|—ÌôE¼¢m–Wô¹Ù.L|‹%“ž’Þ’mò]cj¼×9åòê’õ²6ˆ”C^.hQZ®ú:QÌÕµ#Ý€f Z”–«²,-—¥å*¢³S¥å*¥,[Ëek¹ÊôSËeëƒc–»;åqàÝïw1:NÝ€NÿÜÀMãÔ èôÏ$Û×]ü¦n@ãýbúÿ,-Ø7/c”ÿÏ¢U øÿ´ öÔÿçü¦þ?§þ?“ðÿi“W óé@•„ÿO‹¹æ *}%nº{ÿŸv>90Kã@ÙàÑÄqÈRã­¯׌*MÆÃe« Ýæ’j€úMä’Øêó‹ºêü„K]'­¤ÄŠÉó%–çÏ-ÈØÚ.ˆRÁ˜÷üɵG—¤F+·ß&ý¥â­Ä’ºÊ[µ o‘’ðüéF:4LãŽ*fRrK*(ò»ïº”»Áï2kn% óg;/Îgqé“o¼v±”½'ݯoç÷3—¿K¯’9íÀÁÎòsîµÏÒ*Ä‘¬Ï›Lös_Z€ŽnA;ÊWi-•Ù‘¦<\®_*äΖ¦‚—øaÅ-Ü~:¹‘õ“œÙI'y"¦JÚ‰Î=sÚ{^{gÌ6ø0…N?óæf—D: ‘‰ÜD¿ÓO'¹ãÛ<a¶nOB|~rמä[Àç'KÑâ–MÄX“ð Ê |~æ““ŽæLéhÐå§i¡#Ìå§tçlYmk|lÈÑ;àò“7æ½.?s–÷sALÑå'XÊ‰ëø KqÇqùi%g&š˜bIåŠF»pCv9>–ËO+¹¾KŠ!´"±EmHL¸ïçò3Áyš”¨Íú9%¼Óåçä齂ã»üœ0ÁÂåç„ þî\~NtÄd,Ÿà€9ž£²ï~vˆéòs¢t–&OfL—ŸßwÓMÈåçä¯Ã\~Nì\ú{sùi%§båým/Âå' óJhxïܯ^zÍ07“õÜÄ]}N”ÿ®>"ÿ aü/{I»øüÎgÎ1]|æ’Ó™Ì9µº‹OãšwÂJ×·rñ9¹)EÓ‘ qm9I¥§›¸øüñù0ÚÅgþ]|ZÉݰ,³ G‰°´,e8Ù½I\Ÿ“$t÷.éâó óþ+ô.ZîÍ\|æ“[$äÌE­\|ÂÜšvŠ—?Œáâs²­‚¹/™ô€6Ž‹Ï]æÌù3èâŽ5sÂ6p“fR.>'t·-ž‹ÏI^XKÆÅ礮þÅrñ9IöÜÔÅç¤nƒ†ºøœèйøtTц; ¤üx°kŠûÆMƒ’°ä£Šß8˜t@É þ33ay5ÃÉ?»ùÈ]oHWÌ<˜4–´ëñ=|:ÉMß¶6}ÛÙ¡ü&%a}Í ±¾Æõ²œýŽòˆbiflVŒô` {ˆIÏöqœÏ}Ÿwã;øüné‹é‹m„oOn%ií _k¶ôàÉ|{–ô,›cêºtëÃ|f1°èÛ3Ÿ%ú]¼ôí™/*ì lKû'³¤.°+äõ¢øyðíY̪CLÊøŸ½'-B˜´oϼ9k¨=*mÍ·gYÝiâ"áÍ‘uëÊ›\Ü·§­yBÃ冓­JrR|{:šæmŽ]0L*KGhÄO9O〱ðΚçó]>é{“ðíik#‰ešì¢ó¶aR›hu¼‡!.‰ÙšÝ©¼º5c?¾=õ+ºïÊ‚ï;täqƒ&2&e†k’¾=sÕÊ|Pæ°MèÝÒÖ­¨yºcÉ>æ¼µ5Þjn©sª8íÉñžOøŠÂÝøö,êÕí¯×ðÒ›C7Úrd×otÛ7ÂcAŽ1Û‘FÝ™ëoiÈY+\}9k‹Ü?I¾=óÒL›OÄšÖÂ×4_?ßž°ˆ`ÖÚÙôTÈ««ˆf嫽S¯ìbNù/+E^d)ÙÚúöœþ›þ›þ›þ›þûqþM}{þÕñ|{úÝ3ê·-Ë./ãʇ™X'°¦ ø¼\Öýz2ƒ÷Ý.izÞùé÷üÔVí“|[Xxö¨öJc§~F§~Ft?£–&ȱ²yáëIq¸¯CØãúõ_Àa™åÛn—5IºÈŒRŒ ëB#3€(k†4Df”hø]…ÌÌŽf§=ŠÌè¡0èíÓÈŒDz&ˆ™ó!JUè´MË\pTæ‚ΰBÊ>†5†u†•BVò1¬¤1¬Ì:¤çÈ2Êë.•CüT–Ë4+kKhÐøî þ‚iYcVc-}Ûoñ£aPÖâ<+YÞíg´ ÉösE½ï†÷=Ù놲\¦‡–×MûHÃZ(l.hÂf[ó3Ê|ÌòÖâ„´='§JãÊ€.ëuzi9[”–Ë©Ò@LÃ,|2óÑù¬&s !R¾¤„H`¹ d1‰LýŒÆovV;ô(øÌš~DÁï¡îàÖÊéSC‘~—†iÑáÕðZ0űVÑç´¤øt$-iðœ¼ï»d¦§¸ðh5Ê£ ÒÀ‡6R_ÚP zÀ·§No¾lò£à“Dƒd±`+ÉbA;´+úL }°‹e³ì’mâVÊ›¸—J&meíåœÉ›rÑà7¿#=ÜÁÓáqq½< –>øÕð¯›:=àvS§×²s?,\(^Z°:(¨CEËÑ›~ªAÄÊi³•C?µÙ*§ ís)+¯„ö?q–Õ ¶Š*h' …”UT' VQC£H?54J¥¬U”†F9e•54ÊV6egÐ-í¬x¿ƒÛÞS?£Ó?7ñ9õ3:ý3Éöu¿[øõ5~ºê‰¹ýgÖ´’qSÛÿ§ss“£üæ¬|Ðÿg¾0õÿy¿©ÿÏ©ÿÏ$üÚÉ™ô”^•øFÍ8÷ÿie ± ‰.סÇÿg’—óŠVÖàÑý2‘Ê!Wš+:bï¥JçW×ÕìqKm„¿Æóÿ™ Ù~Çh2ì}¸·TÁ­‚äVQpË*kÞR¥ ”´±þ1ý&g½Ù)iìb6}˜”ÐôÿY”Jn~×þ?¼/•ÓÎMâ^ÔCñÿ™¤iå‚ÑJÜ”qÇ*Y›ÊÃèä˜Ç<€NŒ}1=€N¾¹IÓÛh‚¦j²&)áCºµ²êrDÒ×òbºMÒ+PÑ wMwš—k1î”› ¾ä'Jê ²ˆÅF†ª“qê$Æ3Ë.†L¥–æ:ÈãƒÍù®{ÀùžºŒÃ×eÂhŲ‚¢J™ãçÊhQ&´ô‚óô“+D3 ªh NW,ñ^DŠðÝI¶ê¦.@§^÷nâ4±MBÉØ$L]€>`×{\A]€:Xq0"•ÞM]€N£1]€&7Yæ`4uúÇ!KC´¾JÜÈ\)iÓÆc¸MήžtˆS·ô•ŒÑåR²œÏ¹%sØURfža¨¶…!€¤oÎÇwê$·ës´]ŸvÔǘ’pZ0¹dgåfˆxË ®¡y7q)T÷¥—ð¾1  9çN]€–BMÚJêâ&Û¼ ÝàVõDƒ”–+l ˆ²?áqŽ K†rÞÒhþN]€æµf/»€á`R3‡ÈÇ‚¯Åä÷es·µæ.›¾–Ù‘?\îT ¤nFç³2q+ å»tš‹<3F%Ý *sõYÔÞKÚ»q¯¸™ Ð’9¤ñŽÓô™ýœ€5œq]€&7:¶9IÎÛ Ü'ª'ùæwÊ}¶|.†žoà´Ë &Ë.@ù íJÉhÀ¨-‡u;˜]€ò¦×³dÀhN6Î\0ºÍËq?L.@A‡Sêß&\Gc¹MР)–T®jt¯˜“q“ÖäN3I)„Ö€‹È‰¸vMmr)‡Q‹äj÷œ¬„4ëtâôÞ Ác¸,ÁÂè„ þþ\€NrÄd,Ÿà€9¦#³ï}vˆët’t–&Of\ ßuÓMȨœÎœ•7˜æT·å™¨âÛ÷ætRÊšC]€NLQóûs:QþG¹}€ü¿+ ß÷Ì9¦ Ð$}™™cªá4ÑLnš°ñ­\€N®oij²!®/'¨‡~# ?>¸ Ð]°šgÅÊ‘¢îø*á3É1\€NÐÝ» 4® ÐïŸÎû¯Ð»h¹7tšœ@2g $oç´„ðØéWÂ2Ìñ\€N´Up/'ÐÆqšOnþÌ™ógˆ PÍÏkÒ† s:Õ“˜.@'¨e’ Ðɰ‡Äs:AöÜÔèäD;a.@'&Ú¹© Ð\rí!§µ' ©%Ý}À¶Óv4 ÌÜP#{ðËò6“S~=ÄÌí­Ke&T–Þ;lὃ«kܳ ÐÉèØÃù­ÌèY!¶¹ž@–ï„4O –ÆTP·°…Rŵb¹ýN¯Æ÷úýÓÉàä sŽ9!*ï]ªÇ¤P/–ÐÉU¦ás’× è@ê½wÑ¡^1'EïývÖ É“ëµwçÔñÓx'[ä»rZ éŽ@'xøÎi4N–Æ – é!I9¥…? ÿ­uÑ$•#Ð Ö×½9-™ÃŒÒz.ù5ý›¼J…4©Skk•n^=ùöKf4ÚҼбa æ= Wáͱ¥Ãlq‰sªÝép¸%]Ô .hC ?™O]ÑpSZänJ/Ñ„®±RŽÀÿì=ék^“vêÓÈ–;U8­Ë[ʦ0J ,Ã$ðGè0S„9e<Ž@KÊ5ìSmaò[«’œTÈG 9íž È±ÍCȲ…75¨Tæì“{Zã—ÀfÊ$u³'âÔ±4écH,ý6÷% {T·14¿¶æ¡:’#ª YWËtjk3†ekNKæ7¿Á"9&/©;ul¼±Íñæ»pêS¥`+óæÕK¨]Í47Š”t‡•ÌQ*€£½h>šùՓǬµØ­µdsCÓ×Âÿ59&ï4_ç«mZ`ÑM¢‡òUñÆÎ+ÞØÌí¬º å¨*pŠz䲪 rÒ+ò6«ñ¶`ú°g>e$„ r ëuß#вi³Ñèã‚háÜ· –ˆÅœqs° ,à8ìÖŸt/]PVoòl’5\`“‹0¹Sä÷|JÜYF^s™Ëç1–À|Â-ßàJÁ.+á´X•Ȧ§’v!±Ä Êaµ—Àt?šÊ6ÇÞ È4ª“::þ›þ›þ›þ›þ ÿ7uúWÿÅs:u¾9u¾ù£;ßÔ̲XŽ-2Q×<_ó¼jù¶¸Bv¢™ÙñbédÍÌèßOHô’s!%ç|%ç´’ózÉQþ3õÌ­ä‚^r1¤ä¢¯ä¢VrI/¹RrÙWrY+¹¬•Ì\aš™Áý¥ž|ž‰Ìž×•¥;E‹ [™Ö¢–Î hšÜZa^4™óMpuÊõ…¬\Vßj3wf|×™g ‰½¿îïÚùfQjäKZß#Åá}™‰ª²”a‚ÇJMþÍeëuÖ­²ðÒoé|ÅvEé|3ÄÕ'ôAQWÃs™@¤à“¶³Ò úEi aÖ~™áfä5Ùˆ&¸ÁÇ7 )ò÷ÒÜ$œ:ß kvAk%Ÿ:ó Á*jM,–ô†hÓö ˆÕ¾él`[c6°mý»Dgí›6H;§Ìo:éó>x´åÑFiàCÉ6ð-fMzŠ>z‹>kV%ŸóMð·XâLà)¹¤9ß,›ÆýÐù¥ÛÊæŒ²Ñ²†8»Ôq‡È:màòK§†~70ô뼃¡Þü.˜és>x¹œY |òfÝ[à¸T§§à£·3ù­ÚT£DIs¾YÔ;e•Ô ÂÜ\Ji¸UÖ¢ÊZTŽ{¶dQ€¼ŒÊ§lK‹²´¨Bʶµ([‹*¦lG‹r´¨RÊÎiQ9-ªœ²óZT^³)» ÅÑö ÿã{ñ.FÇ©óÍéŸ8Gœ:ßœþ™dûº‹ß-œo&ã=óûÿÅöÿ™»y£ý‚þ? Ù©ÿÏ;øMýNý&âÿ3A·[B¥„eÃ8÷ÿÉtçämO!ϰ·=–ÿÏä8`kš™Ê¢®òhÉè=äZº%®Æ´“ßK-Ý5®¥+¸TÆ&b{~,ÿŸNr¤.Öd˜eþáÞRK†„î½TÁ\c|“ºÞE!#“ÖˆïËÿg‚.ôÆ ú0Ñ¡éÿ³Œ)™òZ åÎ}Yæ5ŠÅEñ;±‚vç@4¬\4š‰ë»[•hox @'Æ<ætbì‹ëtrôÍMš¾Ø@“³`Y&œBݨ¥Î ­¤¯'ÄtZHnÍô®é@ r1&€:‚)V^¬ÇØ9’­¹û°“½¦Ð\bæº-é¼FŸKÁ‰¦\µ9$ä¦8Åõ™vÍ#§.áð…™tZR·eÀã§H™“'pÜ(,mrâ蹬 Χ,n†9Å«e~¨ìhN?KH;PNV}êtêsï>÷œÄì•äE$ÖU§@¬ã=q½ €æ°â`D*ÙÉ^Oš:Fcz#Nn0²ÌÁhêô!ŽC–‡h}•øUòRâ&æb;MÎs=(ú(!cÁ/dn»ôû¨Œê:1J#Ïí–i†ÆpšKŽ1ŽÆ;Š1VV8-›\²Y¤2ï&¹fÜÇ-`9L¶–´9‰€æ³wé4— 4•Í{£Ìh¨KÐŒq ®Ó,$÷ÎǯB«¿°ëqEJM²™6 “î×·sZ¸[ šPØÉ2tî^R7gP–¬·Ìí­Ÿûòú¹0bzÊŽ¸o®ñ8RMÕåWx…šª~;ú!9ÍåîÒh)òTL®µS1ÂoÃs{·´wîÜš›àúÈu>PéCš#mÀÞr¾¨~ ¹äÄ™ŽOÖ¦p·‚@9›J;à”·Ø¨ã•ÍÔ„Y6®ÐRrg*żÁ² P9šsCeA E¹¢(R0 rœÉ+€æ-Ñ8óN :å@w8ˆ):c@Åü$4ÚÇtš AS,©Õè>1'ã$2&­Ég’r­‘ Ïc:MNHoeèr­¬XzÊÎwo@'Nï<†ÐÉÌ€NšàïÏè$GLæEq‚æ˜n̾÷Ù!®ÐIÒYš<™q€~×M7) Éí_­‚Á„0 ºo²D….ßÐä6NVÑßö¢€êTïVwèá9$ÿ£€>@þß•Ðï{æ×h‚žÌÌÆe8-b4“Ð%®{ ÉU¶¦ÛƒŒq|YRÆí„ÀÍ€þð|xØ@“tÀjJÚ”EÍíUÒÎVã;$¡»wAhL ?÷_¡wÑroè49 NÞ”àÜÊh^³6›OXä3–Ðɶ îÝdÂÚX@“›?sæüâT÷òšð¤™˜Ðrrª'ŽâGL Ž:@NÚì{B@'ÃÏèÙsc Ûã†9Øæö¦@'4#èêè_ºù€m'ÓoXYaè/Ä?¥-ýS:šõzGƒsYi! •™t{ö“œ˜nà4¹+†ª…îG „ß ÆMÁ•Bl ãNˆ3 úåSÁ©€0=?I‹x@¿Ïëƒc8ýn Œë]pb†úÅœ •÷.Õc„NR¨ÏèÄ*ÓðŠ9É íô õÞ»èpo˜¢÷~;käÉõÚ»sš÷Óx'[ä»rZé@'hÔå΀i4€N–Æ Vé!I;_¿ MR9`}Ý›в)iPZÏš‚¹Tè·ÙtÃö0,ƒÇÍW‹[-l‚á.6i ÀÑ®ÙR š95|†ò 9¦ÖëðÂòì° €l¢ß(ÈÛ5EKaWdþdÖv%Ã×h‰Õ!8Ç]y.=¡ÿ¥á÷$«yâ@‹fuÊ*œÖ²šP(‚[9eZÙ®ÔÊæ@fjœÕt!0³ãZ•äd‚Ð;Žt Îd„Gë"¿%Xæ; eUM|>c Ì'¶æ"Æž¿yçâ@ËY¡êĦ§r^^Hd=™`üÀÇÐ]â†tÀß²Y oÙ¦@§ÿ¦ÿ¦ÿ¦ÿ¦ÿ~œS õßÔèÔèÔ(l¬JjkåÅž%'ŽpB¢Ú^Þ es‹ki b23 iý@ ff0½ 2ƒW,™9t_ ;^#3ìzEfôç)2B¼m3s±¨2ƒ÷0™9ʇ§ž¶i<3nÓDfܧ|xš c~;yfKc˜e¦UÌŽbøhîK œ™Ü(:óAË•Mhùœ‚ÜdŠ~Ì(å¨%¶¢…²¾ÕfÎ׸YWÚˆàöž¨|á‡vZÖdK½ï‘Òð¾Ö&˜˜Î‘2Lh­ÓÉŠ“ ðjruú-€¢Ø®$tÌr!­$!¢´¼TDˆ^ZA:…>(JƒÃÜÇ2ÃÍÅÒÉd#FkB7‰BpCÙÿ³÷ï·5}ç@Íé¸%6ÔóÆAƒméSM[¥¥}Óøœ&â'“yÝú/hààSoZ´QÚe ^Þ¦m[ƒG›¢ñ =õô¶ÎFyt0ð)Ù&¾t*0è)Û&½å¢ÁæÁY÷Ö\Dö±‘ÞÆwqPfùŒû¡ƒN ¶e—²ÁJ†Ž›å” ÜÑ!§F õ:í0Ô뼡]ç ÷æwÙLO;°¾å•r&>¥²‰o9gÒS.ôÚYÓ$¤ ž®5^Úàl6«€Ú–6ˆØÜ'DlÇÒ¥á¶SRQ9MŸKÙy%·óy•çŽ7yT¡¨¢ )Æ2¥eÅ”­eÀ=U¢Ÿ `´Œ*§K¡áXV6åØ è–?¯s’õ3u:ý“œƒÆ©ÐéŸI¶¯»øM€ÞöËÿgùve ÷ÿ™sŠYÛçÿ“n^óÖÔÿçü¸GKòyW@˜½‹évÀ£&ÈAJÉŽoOÛõžÛ»B”tÍî:á—;ª$ =x¾PÛoŸåyÜmª„9¶\$³K8{¤µº½z»YýñGïói»ãÕš^˽8¥%µˆÛ¹‚ÿ½Óí®íùÉ£Û¶v4&«—\õÒuê –[Ýùúzβë: T|ªºB6/ÏaÔáÛ=òˆOyg^¿ï~ðHÄzõö4 ‘á/¿f¼ÙY².MEÀ•C <ú€¢fpÌévpY _F>Hw! ðÆë¸u:Í.œÊW®Çå”7u—~¯©xäŽL{^Ÿò`QmPJݯ´»äNŸ‡Nj©Õ$õ–þoikþÄ»Œ´Of’¨nª5|1]ÐZÙg·×Õ7j@«,¶ØïÈ{ÃbuŠf¢Û²—Ìü#ò®Ò½8m"Óêå Ù$nŸ1›>Ðûÿ¿aG µi`Ôs4Ö“®ìG^§Ùniöu·†Z¬,$i±Ò0WI3äî²|,N•o‹pmv™U³¹lupL¾ÑêK§ nTÁ#31Ñ©f­<]LRÅ;4<އ¥ÉØÙ2³¤šGŠ=Häïé¢i0÷”v'·‰[ŒîÙÝ[0d‘ŒÔÑû4’yúì_ó?/Ï,RLŽªÇU:¹.T³NQ=Ç`♟ÒLrÝ3Åô>Ý¡Pà?Åš¡¡Á¶º§ÐÛéàr¥¼JC+‡QzcÜG÷p¥-ÊM}KÍNJ8ùŒäÏ‹îÀÌBø0„¦Mÿ»lú4âi]ôÐ_|÷£{5OèÈ|ÊXçºnwYû0-í_­åÿMŸbT= oùˆìkA6:ÇQ|-¸?¸hÑe\ sÍœÿŽÃÇc™R Ëý‹z³{æ¶;©È>kd|XMFïH Ý5†„þ´ÁO¾ÁCÊ}h¦£8èg5› Ø=eР㻯Ÿ¿ä\lÒØÁ{ Íy¹ç ÛK—‹|T€zöW‡ä«+Kÿ·±‚XÄj7æ¨(üïÓ’zôÞ†ü!z|W%Qúë5‡GìÙäg¢}èûOÜÂ'„-bcü”!ö¯‡ów?6’?w‰”ÓÅÚ@Úàïm±öåFó Ÿ=0|¦Ýe:?Lç‡iƒ¿“ùa¨ðö@njdwP‡F÷´ÛyXm+³*Ù#OÎzÝ º¿ùîÝ_oK:=(›Ž·ݦ?=(›®­¿‡¥†H9][?ô§ þÊØ—‘þ¹×xXã™Aÿ znûê奠ãÒ–sŸ8óË<¸=´BäZ_R#Ôä–¶¢ÕZ×»§ú`ºà´Ýhè„ ª…ÛϹò¤ôËé]¼NÓk¦ö´½2ø\íµªŽÙ2ýcgÉOt.D“’'$MfÉY K`ž€ØÄ!9’'R$¥˜V[!«¤BÖÈ:Ù ›ä9ù…¼ [äßäW²M^’òŠì’ßÈÙ'ä5ù¼!‡ä-yGÞ“ùƒê¤Aš`Z–´ÈrBÚäò‘œ’3Ò!]rNþ$=Ò'rA>‘Ïä’\‘/ä+eô5ù/Šnq„ª®£ëŽž,mE²qOª—nvxI”ðbX #sº~.ü©ÃŸüiÒ?¥|Œ²~¿¦{w‡éQõäxi-™kÔìÇ®Q³ß¯b7{,Ãð¦;ÿ%t—@=ƒ¢žr¥íl™“6w'´Ië; º ”§¨dHý4áZt QA›šhM)/&L LÙ§ÉjýDÿ–[”‘›R&LÞûÉv¸÷wÓã ž~¿‹z¢>ëÑ—RŽþ_¸ƒ2ï`Ó¿JÝ;§TÎÜÅb1xå"oiW.rˤÛÐÅ¿cá» RuŠEe–´Óí,¨«*þ;´0u§yvî…åò…b©\Y[ߨ|þWûÎ.¹½~öuZv¾¼ÌÞâ6 \ä¡ OϾ¬ìýš™§/»{¯w6ñmÿ×­Ý h)îæ x¿\•Ïo¿P40iÝhu3ïžjŸ¼^ª ?­©÷-;‘` ]ÑÇË_—ÉÃô®¿§ƒ¬Ö<|ýxÚX‚¥z‘µ²Ù%`T½q9>È>×ÐN­qêöûó(ö¨]tèhWƒÃž×šo^œ‡ű®m^€þ0é{^ U²a77M¹Ž8bß ôag³ÇA¿˜ úG:þD X|¾Çµ¡{üÕ²ç¯Þ×Ù¢pvÂÛYâœ.ÊžèNW-I)"ýãÙjPzs3Á¼uÐâEô%·Ô¿¨÷íÁÅÀ« ÿ|Ï;?uÞÊ3ØÍ>F0}.äõé#Øó|pê°Lên“xxú¯ÍFa{Τï™ÚB“§·B¾û•-®ã‘`e¤A”-z0¥d©½4¸è}l÷Oj |Ø€ÅDìôîúÞ¦]Û<<Ø«Ô^ïýºµÿ¢¶^ÙßÚùEцsÒ´¹ !õÝ k4!6«Ê·´YËþÓ‰çž/X…›–1Üþ“•uÇgÿÉΜÜÔþÓü¤É´VfÄöožHß¶`%7Ì›qšyö…+o™ebRÏ!3³Kߢ-›S —­išÀ²KÒènu…C?CxzH)Ël6¡…g™®Õî4™½ö~êe»Ó>»8#й{#´ÿ˃™1nËð¦w>ÐÃe)è‹qȤßÓtß.¯¾dè¨lg¯2ÂÝåH>Yv97‚S;'8pã‡ç²åB6ÕêypøÖ£C¨D€þýè³çt»‚GÖ™mGTšSŒ¨5'¯›xrëéF33ºM:#Ûd.l“ªZté× $˜ï~òƒno…s“Œâ­¨‚} ªÉ³ÂÐL¡ ž ²`Oˆ{2ÝrtóÊÑ¡tÕÑ«G./©º"¨ƒÚ4!oÑ7¬µÎÀÎÈìö$"=ýMÓßÿƒåæÁ‰‡8†j8®0­$òÁôÙø‚Þr]0N÷¶±d-|W¹)86Ð0]9·;%c€"'.šž\${T~vù4f(ÕèûˆíúXKKV6ê*u:üÑ1¹ v.(LïÔÃå9+šÁY|Cî¼»Ó!xú›þ¦?öK½£`Ú6ÜÕ`¸£[¯l!ç”ŗ ]/ùF“±Æ²¸»85zÄF£Ñhâ‚—áø- îz`¼ý0ÏGÜÀ8jÇY²J±×÷nƒN_ªGõc,õ GYý­ÿ ?ÜHÔGÕ۰ܪ"éîÙÍ,I™ÜcëéèÙºx}ÑÜÕ{ÀÒ3÷é &~(&û s¿Á/¾üϱoZÆÍäöTþw¿äy{*ÿ‹#ÿ³ó¥Q³ÖTþ—ü¯8²Mþpò?»D‡Í©üoú›þ¦¿$~Sùß ¹Sùßô7ýMá¿;”ÿÙ#%jGþ—/Œq¾?•ÿ=ù_.®¼v*ÿ»Û_|ù_éÆeŒ–ÿYù_>ïLåwðK@þgå§ò¿8ò¿R~£¦â¿„Ķó—ÿA¶âTü7ýMÓ_¿©øï†Ü©øoú›þ¦¿ðߊÿÊßôÏÎZñO÷§Ò¿ ý³FÎ’Séß=ý†Èÿ>¹§蚣¹ðG{°Ø¿8?¿iÃåÙ¬U,õÿhØTþ7ùßWèw`]ž´ÓÅgããr¥ÙìYêÖÿX^]]x½N¥Â¬w;Í8Ùï›ü¿üoHÿÿÜîH3ÎmÊÑÿmÚñýß*Lõïâ{ü6N½0+Ñ'Ø…û&óÓ°÷Þnµ¤å¹`ݹ?O.øVÚ#3­^íùÞ Kê-:÷n ÀŠ{zÖíÈ®×;]htÏÎ骠 ÞœxØâ“Omvù´ÀyÅ@@^¯Ù‡­ƒ.…F7òŸOÚ¡Ö?/p^¼NãdM½ÐÈÙB+Ñtÿï]¶ûƒE_ô$Ôl·Zô¬÷x½>,QP@™Ú´XZ6ø@0š<.TÀ> Mü†ÎƒÝÏýy é35QæÙRhkR0~º4=ÐŒ|£8Ý‹u—âH×+´œz»Y»€©÷GÕÏÇsK©ê Ù¼<CØ]BÿÿntO=•Œ¡°ÂÊõ'xpBÂÌL# :ªÖ”j=*­+ÒÑžé}õs R!Q4¡éŹLµ—¢ÂÇ"ŸKm-,"ÃÿÏÌ0…¢ž¶úyi‹?|éi»¨œž’ž>F°ɶC—¹Ð˜XBÞêæI¿‹½bš^˽8,R â8Ϫþ²QZ ÊÇq:vF¢¡ &U—õ<úâVõ² âþ'O¦Ù¢’^aíeª–JëU/›XÒÞ¤Ÿ={V½tݧOŸªÏ:|l‹²éO÷þhÙ==?q—c¥ÇÖ£ôÏñJ§p¶}Ö²ÐW4Ï^éê_—¶Ö4+AæpºØ=ÿ3€Û,FÌÿÅl.˜ÿ‚5ÿïà7ÿ¿Çù_;±`nåÈUHp£å†‡±NàÎJÑs¿?gèÊa,01ÖþÔ1™¾Â0Œ ¹Hìer«ˆ†cp%b”9tY½>1‘X°WÖW.cyx x"åQ~hñažjÊ+P|Ÿ@1œÖWaß°2*9ð<é”À‰NɃ…–‹«-øƒŸ-p®auþ@Žzþ€×:D4²¬aÁHÔ€Dü”ü)Ÿ¶øƒÁ}OŠj€ûž”×h!°&øHjÄ&@lÄ&@lÄ&@l°&k°&k°&k°&æ0€yÌ`ó˜À<@Ï+a›…?ш@ô¢ç1`À@lÄ@lÄ@lÄ@l°k°k°Vפ)¾ŒÕÐîke/Fö`Ÿ²Ö—¹†/úµñÅXý³ìõüÐm€–ÙØ°ÌÃ6ZÎЇÀ?,öµo iégp©ÍÃ#÷£ó ßWŒÌºÏ@Ê\74|Dï<âä…ðpcìN&eóº²ðÎ]ø"Œ‡0Âhƒ!49 ¹Ï$š'` ÃÞŒD0­ðtyŸ›# T¤i¶"óRœ|È´ü…6½‰zÌk>»Ó>Šï f®Èy+E¢f®¼šªâNTlJ1UŨؔ6bªŠ;Q±YhÄTw¢b³Ðˆ©*ÆDåŒ'8˜þ~ˆ_Pþó鬿”l(ä)æ#ÏáÝ”ÿX9§àü-Ÿ,á¿¿¸ü'¼þÝN«ýN‹îÙ­Ë*ÿ³,§hûíÿXÅìôþÏüÿDÖEe“ó^·á5á-EÃÓ Ý¸x—ÞY?¹8wOèn…XÖBewoÁÎÚ9Hãbü¿>¹—gng±I7/,¤Öà9þE7=§‹½ šÿ‘ýͲóêÕNê1{û}s/õøÍÞÖÁ&Ù»ÿøÕëƒÝ×d†Ì„… Taå‚–ôÉi»Þs{W(«{uîu~¹OÂó†’CÖ_Tv MP(s@ŠªÈ½ÆI{@gOÊžÔãÍõu:g>§DTöÖ_¤g 'ýÿ`óå2Ä=^õrwk{soqóps&Cw6÷É  ‹»­ç4ç/›ûo·Ò3¿vðv—&[ÜümÑ"à¶‚¬ï¾¦ðg~¯ÆÈcy*°‘Ë1rmr1òäŒ<—¥Bx5…1ü\ ‘™yÈzLKI“4}¥`÷9Ò™ÅW{‹*p‚ %fHDÂô·ÿ¢²·¹±RÈAÈæöþ¦?ƱS7w6¶žc+„¡š2Œœ ÐÔÎÎÛ§^ïï mšš¬Ï°œ‹;¯Ɉük• ðÖ0fÈ/¯^‘ÍíƒÔã—´…F´h//_þŠÉ¡Òô#C¸Eh¦ž™áØ`Y›ûµí­µ½ÊÞÖæ>´ä-ÒpéêîhÐ)?s?z a~JY¬Â­OO C»-„â¢QñÓîæÞv±Ÿ3ˆ‰ƒQt¡zŸ^ûG¶ú¤= çnã£ûÁ#0(“f»‡zŒW«d«E:Ýyò¡ ‡G Ç”4ÀH1û蘋[{ØœŠ‹•E3)X•(ØàèàY!ªe™T.Ê4±7ÀÍ–Û'/+¿n’‹Aû´=¸"ÝÞ“P<^¤µtÞóZ|í/ŠšöU0ÀX™aU›‚/fx·¬_´O› Ö¾Ÿ<¼OfBëEf„ŠáÏZ¢N^]˜Xúx(òjcÁ^¤Î/ísl}ùœ–‹/ÙÜÙÜÛZ§Ã:mœV“a´Lî5¦ç¡; ZÅ,W§@nhÕ¸¸¿·~Ì®H(æX̪ôï{”u¡©õP½>Äü=ª<•ʃ6„åý]ø÷ ×vhKFîOÝÓ‹3¶üèth"Áø¿ÿõŒ¿óÆÇ‘, 3ÝÞAem{s¿¶N{ÀþA,VrEÄ.®× v4k‚y’`Qͬ –°ß½è5hÃÃ&ùêWÙ·¬R`̦a;µ­õW;¿/oí¿*•ò嫆ž1Ô`/tSšAGBè{Ž;q( á)%‚B)M°Q]ÒÚ-[ÛA­T;¢S±ŸwÙ¤m#¨NþGÞ½´R_½¤;£Ra5àuºN¸Á"¡œ2z‹èò–®"Qú{.[;¿W¶ÃpyÝû1Ýè-)òYE,?è îáY(…Íú¢¯Ç(F|^§Ô_ï´ï%ÛÆ(ý‹FÃë÷[§§ò>Å;j0“ùt0¾Q÷`ïõ„]ò†jQ¨)äãÁJ /ÜtLx”Ò&ž¦'hæL[pJ‰‚ÅÐnœvûbÊQSKÄD +1?bÆÄS‚˜ à÷5¥ƒ¹VEðÀ?‘Žœ$‚°Ã+bF€ŸÉ 6®U6ž/áð“CmhW¢+Œv‡Ò×nú‡\öSïß}ãüBFFö I{ ¾ãœlè¼påõ– kËi‹^3!ÏË]:0=Þ?¨¼Þape_m¼XÑö[aB ƒm Ý(.’ZÙµ2‰ÅM/*¿o²ÍæJV¢xlgóð +·´‘›Àè=àöÖίK›‡›¸D)]($Ù™Ï ô‰uµô–¤“.³RU”ªK"æR{klä-n¾}Œ‘§;£KŸ2 ñÚ»­]y–ÁÎIÚÎ/mí¬o¿ÞØ\I¯½³··Ö2ÚþžÑaìòù^=$†íÿýõ/*‡Øß§ù(¢†Ñã‚f1HÔ¿´Ï%ÝË„üúÞ<Å´†€gÉÒ1h\ß[ßÃò7MZä­ºÞO¨dÁÚžD±–€- Ø/çY.cš¥W»ÕÏ ãõÇ!D‡uG–\uGH©÷FŒ¿YodÌ1š‹¯oâoïõÁü#Hð`hD‰nŽBËÄþ æ  Æ‘xF<û Øažœƒ-"4»Ÿ;§]·9 HÌÛüLäC·Û”hð­FýÊ¢9 n`Qùé¬O§î™û‰ôÛtµw2œ//-}r/áÜ£Ûû°Äb—†A±ªv>£À¹e9Ê…U"tlIAÙå ºÎСî]ò3¿s»rË/ṭ˽¥`~ä"Ü<áÍtF ‘7#Ç ¿!ÃBîVcaèˆ%-ßE:ÜÝÅMZ؈‡©/§xˆø-Æ;£«Œ5ÜåÇî" >Öí²ÁL R@0Š'†å 7´Ä~ót©çýyцmÑÉàìtÆWú(óhòË)6Ì@[;tò|½µ½‡‚´a¼ÚÝÜYb¥Ó’YÜâú«—ò¸BgÏÌÏȳ\<¥š $€“Q_ Y½··¹s€§B›;¿oí½Úy ßé™ ªòzûŽkƒ°f´ƒcìúvåå ì3©9`Ç^Ð ö^ïYþ ZZD ºS™¡H<áÿC‰OffxFf~¼ÿb/@Æ òÂh˜ø—½ÍÝå••Çp‘/ b¨ ‡^í3Háe‰DÅH6›ä/f™L¹„™JÂAüŒ® 茾/{ òž4c¢p ï>öéöö®lž’Óî‡vÃ=퓎ç59:d4¬­„£ùºGwó^ãW'X<~[”5½m6´ÄÅñ5Z0ã2;U§ã?ªNÛäª{újzîÙLƒ¦E>ô¼s©ƒÂ ½(Êxµ†C ½‡Lèßc+’­Õñä*<íþ‰× UÜQÉ@ÒV÷¼Žhü4{¾ J(7‘£ìl·3€ëIðì¹×qOù<Ð Ê`º× «ºÒNÏ0ù1«Å_³6ïZ•¨±„ÉgŒ¬tÒÌÊI“y\îÏ¿D'µ·– ;ÛWM(„1fÑ…\FiD¬¿Ú}«Ö’:Á°šA¢Jp¬Ö‡3û]í¯ì¼Jõ¯ÎêÝÓ7yºBÒ\QáÕÎó­_j¥¿¯Ý½W뛯÷63Q‰aâáZ cgx¾·¹3×ú«Í9NúXðkB;csý×Úæþze7>N¨?96o¶^ÔÆâÙ/›5\;Ö^nîïW~‰[æËÊÁú‹ÚFå R£ß•ƒÑù~¹_Se¾¬mÔ^ì>ß«¼¬ƒªVìþÖ»¸ÈBNœ/@QfŒ<¯~§;,ÊšõW¯wno÷ÕÖÎÁæ8%¾¬ìý:~ ÄjŠÿÀûõ½š­¶[9ˆK+/^Z»¹·SÛÚyþ*n#®loÓÁª¶¹óúåæ^œÅòÑeí—íWkãu0™ks·BK{5º’ÿ óÞúÞ>í2/k/wâŽgmcs—öÐí­—[qÙŽ…mÒuñþÖ«±s¾zþãfcu=n®›•ݱ3í¿^Û?Ø:xM+\4ø™ãæ0ënýåî6«À_ö6n’—î¾jtæQÚÈ6wök;L?vÜÊ8¬ý^ÙÛ~õê×µÍ[;£QVyw6ßlÓí˘¥‰î»½¹óËAÜ>™×öãvÈK:WÖa€kÊ‚SM:|ÑçÔÄs=k×7È(&ädEíÕÊöÍJ5)c•bR:ÖòƤtŒ¬~JcesÒæËõƒmŠ6íÐë7eO¼…H(ƒÆÉ`Ñ8™LŠ—™³©òúà]VìïÓÅÚÖóØÜ]ÿu£¶ÿòõv¼ÔÏaŒY£]“.§ã–°µ{¬á9ÞTÆÎ²¿¾·E‡Ý½×;±sìÑ{œÔ´É®—ÆÈ@ÇÈ1Rï6cÁßÿ1á¿ÞˆÝˆ~¯lom€Ž÷S&Ý#²)s}çà5&X±ŽÎ³ó;tìQ™Dó–kÇ š›Î¯ûcdÂAül\¾é?âçÓ¦ºá^ìïVÖ7éja?øW»|¶Žúõ:ÝTö7)"û0ÇÍCס¯ö6⦦ŒýeÓ'±#ñï¡lù)õyôèÙݧ;/rÚî@’ÓsQoþ˜äee÷g‹¦6ôBeLT±ø":Ž¿¼x²Øî,ò‹×ñz®®n » 8—t/ÝÏmz½E¦yP˜°Ý'Ÿ{íÁt;dàvšn¯IֹϔÁ¿KZÞgÒévú"Íà| ö Õp;´Ìs]ÃÌ£¶ÞgÔåAU6°¶Ö¥°/:¯ösxñ¨ pÉ Óg5ä esàõS©­ñ:ŸÚ½nçÌë úÌY ?·E­_v^#apk®?O4†0).(?GÚA7%bh+O²h†0Õ¨EZ"˜œ[é~ôæ9Œ…Ü” -EáŠy Î}袙¡.¿èÅÅþõ«Ô %zYÖ½pɬŽaÉŠËt)›Í6œ‚ÖA¸+©[üí Ý .óÈq0ãÇô4z ]bKx‹k÷Ù½‚¢R j…€³Eò––|vÑp½Áf“,lài½€ì ¬î¶˜˜–ß²„ç-¸?Ÿêw'e Ïk›ÄeXÁµo´y¦¯HoþÐFP9Eñ'ˆñN¯ ­¹ŸºmF^ »âÌ[Ø€vÆÔ%Ù]OL½Ô@™rbl@5¿>Ö/Tã8PZ¯”+ÀXZƒ½[R€ºR6]Ïí¤Þà É@ÑXE”CŠ"IeÌËIxÎþEã.4"†ûÛ[k´j ýþëÝÝWtBa£UI4#¯]°î¥D9ilËh.è Sª­ b :¿¬éxª”BH€W1Á®V áH%0ôAb¦Ú{‹~>ºèP00àø[î"y©(JáM¹õŸ'ŸO`À £è…{Êu4ÛÌ¡Ô'·3˜gÕÅë¡/0e#E†"×ëÁ­.¦¬ñ¨Ý,–y&­F`lŸˆÆª”@¡½ÑjìÒ†Ùk7›´.iÞ…EGé0ºv%Jd¦3«{Äë7Üs8ÊùóÂë4¸S,¼syE^wÚhåŠ#Prç¨ Àõ#˜zÐëeFÚ!dDØÑVvÞ®ïm?ÒeåA/ì\$Ä:3Ï4´i:Ì| Ieu·ñ±êöOö$bÝ­ðõ½y²ý¯ñøE.ÇpØZ´Ï$kÃyÄÓÑ-ƒ²AŽ–FÇ~ȉÀ(ÃxÅkT 7 ˆà|èv.0 È‹ÙfÑ“œu›p³¦à À§M‘„CBŸÝñUã_.€° €Wœ3=Ú&(Ýìt-³¨á·±µË¢ÚîæÞúæÎAíÝ¢© êl€çõ.aó–œ2údsm}ckO³èÄ ¨Wö×·¶ÌºÆË0ó¼Y±Iç·Ó*¢yØyÆa€æöûgžGpÞë~jÓAI€vB;píìâ´£L‹.(Óäátõ`k§öòõ6œqì=ß~õæFÅ€·X—Ö6m¥Ñ¥¼ÞÙÛ¬¬¿€a4{À Bg4{6¶@½$Àžp§­Fg4Äíçë;ñÂú ¦¡%J|×aÀ5Nlnl |„2b_^Ä+E–0VQª˜qÊ£ ñÁÕ9]ÕâÔÖÎXËØÇ,æHy$P\¨ÄùäÌ;k5kìØû i]t°ø °âåæËç\.7Ï3ÚÝ/åîp8“_Ò(´1þØ…Yî|²¿¾ã)»:0Îî«ý­C ÚA_Sj€]CµäìîÁ hœ±/ ªíîm½¢Õùbsoë €QX¢ÑlŒÛNÇi™²Ða ,¤Ä‡½µðjïíXeŒMÀ”ü‡?=w'þ† ×…·½[9ˆÕú^ƒîxk¼ ‡´®}8xÜ„“éÍßG3ô‡c Ât¿´w*É£!¾Š ©,„Èöt±@â:-̽­_bŽRå:̘ ¯úKt㣂Þîƒ@.nQ°ñf€;Æ€?»íxø¾©lÅÄ—®Ðh# ”®Ïh#ˆi=äZ°ßUFò©MàLÁ®‰V9P×±è^¿oío­mmo¼õgXDú j¸ÄbÃgæÔaÔxõfkgãÕ›ý8cá—ˆŽQá’Íé˜Ø=Ck¼tQÏ®¯³ É™{%M–|>±3ln·¶[tëu~~ÚæVN`ûb:Ó†ù…4[®…ÛÀ> àžBø÷Ö, =g(iÝ@|¤µY¿Ð|i4 h[Y;G0ÐØÉ*N¶v·4üQm‰¶ JÉ @€‹³:ÛdzR~ÓvQ¤ÓùØg;Oš¤…f/@ˆÙ6Do`êƒwÉ›$о=Ï|ˆ0!1j3âžXäâ\¥…žC‘…|ÞÉkv‘Éi—q…¯°ä¢šþ€í`ÿèöИW …y´¿è~¡¢ØÖ¢øð´û9Y(-ä lh9Ù Üêñâˆì$®”tï{gž(UՀ䲯Á¢Øó¢¾ ¦q_&´Ñ‚D›1»TK…X¹\2àÔ^­ý›n$‚¬ÉÎüU,jDU5ˆiúbók6^1#ó(¶ÝìáAGa‡²dÒdÆ ]âXæ¿Buv·Ýך±*DûÂþHsŸv»Ü<6EÉvBúŽð'C3p)áé^Ñm°|_zSþf–ÂÐ`¢¬DJÛì7ÐÂ>ë‚Lœ¶ä :jÒ„ç´JúLjÎ÷õ Þ…ÒÐ'ÞÛç|–rÄ+!mAÌDË ôFÔÜÞOJêÚúàÐhÐ=kg€¢Y†Ý©÷rý ,Vó²Y¸uÚ_Õ`"#Y•}èІQDÍ @™´’\6Úu(ŽgžyZÒ0d¿Ýs¹´‡•…# ¿Z CŠ(‹K>ÓŒÖþlœžj§ØÝÑï4w¢Ñƒå?v«yD¬Ûý袠¾ÏŽÜA÷¬Ý`fó£š9«&ßÜ,9wÁG5-`ä¨ 8wriÕ»Í+1x êŠF|¸p{toë~paäF®ÐÉ` IÁ´xáuº=Ú>û´W³Î/æ“ÌÃÚNåå&SüýÁi”S¥o*ó)JÃZæ|&:=3ª?Ïguˆ2ÏåõÂ8Ú‚´¾ßýX÷NÐ+J6}ÛÏ@ùj6‡®µ³ùûæ^m­²þëþveÿEmÃ|¤ë#v†.N/ªë(ÿ¥#n @‚l J\{#rV÷>ãù’¤˜ N•ÅJˆÎt\ä×vú8¹ó.:¥u×÷NéX†C7Î ìpWx¸ƒË9~¶›âôZ”EÒë{tü°Izû9}:ðo9’®ì¼¥/yœøQP†õöIï¼ÞΘœ1ÈF¾ì€ÕQ°¸õYmë±KYXùe“Ìà`6²ðr›M˜Éù’«~ñŽAlËÄN°O1¸ê.U_ÊçÍrjk¯á&Ó«=¼ˆ, ì/¡SnéåŽÃ€ß xåwŸ7 0ÛšsÐÌË;äw0N,Lá2… ¿7ˆýAeÉúX9œ»ò°eÀ×{Ûá\‡tÚ¯@]Ì Õ3Á~Їö /bX‘Ë6ÅáÊÔ… õăC¿4…]Ûе tu¹K²ãdg‡ØE. RK¾íTÇDÕ?è‡P(.ÜÑÖú7}í¾R½À3S0ÉOµê°P |— p¼«GùÒ=…Zm=±Y–mm±&7®W‡Ptíâ!<Ûâ)Ì`•ØÁz™Û»bƒ63_'®Æ±Å#j‹ÀnŒß³¹~@`K/æ#E ² ‡ŽÈäþN-qSdLxÚæOñ‡¯hgØÝÊqT9ã¶`fœ£¤·Ç@%ØÙ\);¬¶tž„·É`½AbǬ7ÆEéã3r8XLFÆâ¢Î‹r2_, Ó'V"šñ?‡KFG⺑tDG@ƒ.³ÌîŠáEi§^ Ëæ!Œÿ©˜jl.ÅÍ€ §æ— hb[Äb¾iw›Íˆí¿ýŠ»®3÷ÓðªãU¦~Ư÷òE×íÂõX T÷ÄJ\ -´ J£%è<•]?*gòìvì\›ëÛ0L†è…J÷E{Ë-U«Ú²È-wíÊYÑÿwxÈ-}³‰ IÉ;%B3ìºìŒ=Ût¸†60£d 3Þ壷<+ïkj™¼6¥–W…‘,qÏiWéGè®IÖ˜W ä“W{+»[I -4¿ m÷4#òÍ0ÂZ‡Å 讪—¯õ´Ÿ3OÅïæ ‹«ÈÞäÐ@ˆìá^:]Χ^m¼Zf]¤Ón0ýO¸W¬L áse U†åEkó 69Ð åú4®©{Ê$ØÂñtŸµƒ0~îÇ/4üûÕÖNÈÑ=P€¿x´^¹0 \wP†!ÔM¡eîon·;—D9PfsܯÇÄ|päfÁèX下d§;Ò 6W D™A§Ëe8`wPB ôõ@,äc\ËK§n›&¨íî½: u·¹þÕ¸kx[n† ǹ–&6—RYêÜrñxŸ‰ÁHà\ã‚}&XaÆ@Øš¦EGzÌÍAë—™E½—@‹gB“¦ò‚ìç3”)˜ˆògد0/jžlÂ0†ýýƒu¸Ó·Ascœçµ'¥mÚZ_¾`ëeUjð’³|cëùóÚó×ïÞÅ€­·ŒSn-lu@î"Gü°þ8z6µ`n4gì:“·‹¡Œvàú{^rE+!rbú¶HSiéñÊ'sáe‚G=Û[k ¨qkøò°:¼ q4}kÞ}‰Á¹_â1Ž7a—Ï”Èe» ýDâF•ZÃð{1Š¢mích>$új¾ küM“À°cênFæ«=µ÷k 2`d gSÈ@ eÇÔ@@wD'äXÂègH®½Ø†9dî4u«­¡kO ¬cÖ±c‚-EAã§O<ΪsB[V¤¯žÓ$ô³-Nã ¢°µ}†VJ—B®ê¦‰šóB¼(çSÖMù φS ”ÀÏÔ!ž@m–©²ÏŠˆãl·7 P =KV.Ì.x@K!vQäüë-0bÉ `}ûÐy¡¼“Òeu]±@M§°B~¯lÿ²'$‰›ŒßÒÕèd“ÊÖá<Ù‚5\ûrž|YzµÏ®ïpÍuó}mÿÕë½õÍÔ#r CÍv <*ÙÓÉÐ,†ò8y£²÷fk§¶ˆˆWÆ~÷Ôíµû¾Ràæúæˆfök5U†/Ø_\ü1¡óÝ;„À™¯0š-@æ/æp \Ø1sPmX‡ö»ÞÀ¿&çÛ¾B«dÖh+[8½ìxÐÒȋׇ݅IJé?³»¯i½ÔÁžEoºÒmBtH‰÷¶[W\ÌF'Ûî9Ü ÃeÛZÂÁ(úw4jëÁÆXÜ×°,|yø„N§”³ínóV(Ðì½øÑQå|=tZ¨6ÑtÏùVn?É¢|¤£ ¢"“ÆkS;Þ`mÑáéXˆ¹ºôebä›HìlÐlÆá ö#­cTiНšÍÓ+î#Ÿ© ®ãù8MÍ!ú°ƒ CÏ.ñó­ûÙý³PûrAqešEbº@fhHqö­Š³" ´"k Ÿé•rn†9 ¦Øîo¾¬ìÐ=龿ÐþÒµš–N^@ž²µÿjiksÐ]J©P°òËvÖÊù‡>Üμ¡Àk4q­ÍçË\ zèãaŒ´7ÆÎŠÝÚóÝX˜iénŒ• Xåã`µ«ñ±Z·Rét¼Kò<&q°¸-_r±ùòüõÎz¼–d¤Ÿ7ìžaS'6¦L3¦Fʱy¸Gì\Ñám+(ÚÒ2ìtôèqq 䊴øl9ºø—•ƒµý]J4«˜p,BR A—tÕÙ§Ó²¯èƒÊÎÆæËÀàë ŽX©2À-«œ òÙ,»T¨ãpÝF”žÕAŒèÕèŠã“Û>>´ÄBÇÄÊ eHáš[jÖÚôƒa–›²ãc¥ãØfÊ_.; a*óÀ2XC‰3bqi”i¶ n }crÛVk[ûñv~êà†¢9ݤE#H!·[8P^6ÀoWö~Ù¬1Kºá¸Ã±KmL¤¶^nÞ[VÖta÷Ë›ÚëýÍÚïë´­çÑBMÅ¿ëm@l OPÒûD-BaIˆDº ë:xLr h°ÓŽ~ûC‡ÝÈ¥ñ¹Ý¤ëqïÒÕ1Š€¡º`­é\~¥­j5®­`À:«Áµ·M€ÑPhY8PÛl‚[¿†=B…I)¸LQë‡ÐØc—_1)›j]ZOpõÚGa¥áÑAPuv ¦§O8 Öú hUÓÕ:g4 O ‰©ŸÕêW³R$šˆ¥†Ë<ôLÒ8FB b)nW5ÖÞ‰ F~! _{gƒ¼ÐÈ0,ý;ÌÝNmÿJ3¦7˜³ªÅ³3¦YïÒ±Yiɳý¥€j+gc-s-¾„A“¤¿c’-/Tv÷쬣)`%CXR\tìyô.ãXt`,“)J‹Î<­¡ö‡öÀ=%»oH!›u/Œ9H6ÅÝ?ÉÆ¾•Ýæ§k±Þ¥U°³tí²ø|ko_xÅ hž 9ŽiìúúJ£‘Z¾]ùÕåVãèxþhþ_¤€Ñ7üð*TÕ\l-1‹ñ+iÓz‰fª÷õcßlm¼X)eŒ¬¯vé"N+é­ÅWè‚ss#-•zµöï•j â\€ÌóÃJœ±þâW¸zç “©`fäΆ6‘|A`ËvùŒ°çf2ËEËÃfÈáe¤›£3"àD6 MeÚì/^™Ð5‚ùj„½ÚÛ°_<7Ât+·F„²Sgoî±ëþf(»Á÷ú`k{ßñzã­"m¥ƒˆÂ×ëÆ·´èf„®oWX»I¥*ÛÛd™ÛÎzÁŸ¯¶×”;ðTÀ¾èæå•ú^ dÃ¥ƒGÊ̵¬àÉTèM‘¯„±,3€åóy-L#G'))…ç2yœ¦„d´Ö–@CA£…§H™T,kT+ ÁM‹ŒV ç , l?\üކ‹–úå[Ü sÃA–Ÿ/T52”[ë²èkñâÏ2#ÓÂø¿D;øz…þl(`w¡7ÍûŠ0R¡ã@KV˜ÑºY_ÏÀ_áÎ1Ùv4CÀÒ :€-ÛA&¤õÐ"j[Ú$€dE¥ C0e4£±Ü{Ñ6Œ¶2ìÒ›ÊÞÎ EuºkÌBä¬!Ja·ÇžÉs…[*: ½}~à Ì›²å‰4O9k­“…%^MŠ <›,øÚú/{¯^m­‰”‚3T"…ˆV%\¬tè– x±ÌÒÁcXà›,@…&RDÈD (@®/%t’h¹PU°YPÀýK^Y„‘DA¯ß½ãÛH³-Ÿ÷õ«PtrÓþ¿©ÒÂTiaª´­´l g-aÎãçk<%k]4EÒcw¿ðñ_h{%SƨõŸc;ñ?ë§ãÿü„òëË·5ð?Æ ÿÿÛ»Ca ÃW™I#•H’dÙýÉJÝ @üŸìsÕ/í[vë§­ è.ž»i;XÞ÷ëË_´·Åǖù[«8·¤f±,DѨi]J—OéÎÁNvŽO9÷ë•¿qeê¹`zsv-1.3.0/app/external/sglib/000077500000000000000000000000001511312357700160445ustar00rootroot00000000000000zsv-1.3.0/app/external/sglib/sglib.h000066400000000000000000002161771511312357700173330ustar00rootroot00000000000000/* This is SGLIB version 1.0.4 (C) by Marian Vittek, Bratislava, http://www.xref-tech.com/sglib, 2003-5 License Conditions: You can use a verbatim copy (including this copyright notice) of sglib freely in any project, commercial or not. You can also use derivative forms freely under terms of Open Source Software license or under terms of GNU Public License. If you need to use a derivative form in a commercial project, or you need sglib under any other license conditions, contact the author. */ #ifndef _SGLIB__h_ #define _SGLIB__h_ /* the assert is used exclusively to write unexpected error messages */ #include /* ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- */ /* - LEVEL - 0 INTERFACE - */ /* ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- */ /* ------------------------------ STATIC ARRAYS ------------------------------- */ /* ---------------------------------------------------------------------------- */ /* Basic algorithms for sorting arrays. Multiple depending arrays can be rearranged using user defined 'elem_exchangers' */ /* HEAP - SORT (level 0) */ #define SGLIB_ARRAY_SINGLE_HEAP_SORT(type, a, max, comparator) {\ SGLIB_ARRAY_HEAP_SORT(type, a, max, comparator, SGLIB_ARRAY_ELEMENTS_EXCHANGER);\ } #define SGLIB_ARRAY_HEAP_SORT(type, a, max, comparator, elem_exchanger) {\ int _k_;\ for(_k_=(max)/2; _k_>=0; _k_--) {\ SGLIB___ARRAY_HEAP_DOWN(type, a, _k_, max, comparator, elem_exchanger);\ }\ for(_k_=(max)-1; _k_>=0; _k_--) {\ elem_exchanger(type, a, 0, _k_);\ SGLIB___ARRAY_HEAP_DOWN(type, a, 0, _k_, comparator, elem_exchanger);\ }\ } #define SGLIB___ARRAY_HEAP_DOWN(type, a, ind, max, comparator, elem_exchanger) {\ int _m_, _l_, _r_, _i_;\ _i_ = (ind);\ _m_ = _i_;\ do {\ _i_ = _m_;\ _l_ = 2*_i_+1;\ _r_ = _l_+1;\ if (_l_ < (max)){\ if (comparator(((a)[_m_]), ((a)[_l_])) < 0) _m_ = _l_;\ if (_r_ < (max)) {\ if (comparator(((a)[_m_]), ((a)[_r_])) < 0) _m_ = _r_;\ }\ }\ if (_m_ != _i_) {\ elem_exchanger(type, a, _i_, _m_);\ }\ } while (_m_ != _i_);\ } /* QUICK - SORT (level 0) */ #define SGLIB_ARRAY_SINGLE_QUICK_SORT(type, a, max, comparator) {\ SGLIB_ARRAY_QUICK_SORT(type, a, max, comparator, SGLIB_ARRAY_ELEMENTS_EXCHANGER);\ } #define SGLIB_ARRAY_QUICK_SORT(type, a, max, comparator, elem_exchanger) {\ int _i_, _j_, _p_, _stacki_, _start_, _end_;\ /* can sort up to 2^64 elements */\ int _startStack_[64];\ int _endStack_[64];\ _startStack_[0] = 0;\ _endStack_[0] = (max);\ _stacki_ = 1;\ while (_stacki_ > 0) {\ _stacki_ --;\ _start_ = _startStack_[_stacki_];\ _end_ = _endStack_[_stacki_];\ while (_end_ - _start_ > 2) {\ _p_ = _start_;\ _i_ = _start_ + 1;\ _j_ = _end_ - 1;\ while (_i_<_j_) {\ for(; _i_<=_j_ && comparator(((a)[_i_]),((a)[_p_]))<=0; _i_++) ;\ if (_i_ > _j_) {\ /* all remaining elements lesseq than pivot */\ elem_exchanger(type, a, _j_, _p_);\ _i_ = _j_;\ } else {\ for(; _i_<=_j_ && comparator(((a)[_j_]),((a)[_p_]))>=0; _j_--) ;\ if (_i_ > _j_) {\ /* all remaining elements greater than pivot */\ elem_exchanger(type, a, _j_, _p_);\ _i_ = _j_;\ } else if (_i_ < _j_) {\ elem_exchanger(type, a, _i_, _j_);\ if (_i_+2 < _j_) {_i_++; _j_--;}\ else if (_i_+1 < _j_) _i_++;\ }\ }\ }\ /* O.K. i==j and pivot is on a[i] == a[j] */\ /* handle recursive calls without recursion */\ if (_i_-_start_ > 1 && _end_-_j_ > 1) {\ /* two recursive calls, use array-stack */\ if (_i_-_start_ < _end_-_j_-1) {\ _startStack_[_stacki_] = _j_+1;\ _endStack_[_stacki_] = _end_;\ _stacki_ ++;\ _end_ = _i_;\ } else {\ _startStack_[_stacki_] = _start_;\ _endStack_[_stacki_] = _i_;\ _stacki_ ++;\ _start_ = _j_+1;\ }\ } else {\ if (_i_-_start_ > 1) {\ _end_ = _i_;\ } else {\ _start_ = _j_+1;\ }\ }\ }\ if (_end_ - _start_ == 2) {\ if (comparator(((a)[_start_]),((a)[_end_-1])) > 0) {\ elem_exchanger(type, a, _start_, _end_-1);\ }\ }\ }\ } /* BINARY SEARCH (level 0) */ #define SGLIB_ARRAY_BINARY_SEARCH(type, a, start_index, end_index, key, comparator, found, result_index) {\ int _kk_, _cc_, _ii_, _jj_, _ff_;\ _ii_ = (start_index);\ _jj_ = (end_index);\ _ff_ = 0;\ while (_ii_ <= _jj_ && _ff_==0) {\ _kk_ = (_jj_+_ii_)/2;\ _cc_ = comparator(((a)[_kk_]), (key));\ if (_cc_ == 0) {\ (result_index) = _kk_;\ _ff_ = 1;\ } else if (_cc_ < 0) {\ _ii_ = _kk_+1;\ } else {\ _jj_ = _kk_-1;\ }\ }\ if (_ff_ == 0) {\ /* not found, but set its resulting place in the array */\ (result_index) = _jj_+1;\ }\ (found) = _ff_;\ } /* -------------------------------- queue (in an array) ------------------ */ /* queue is a quadruple (a,i,j,dim) such that: */ /* a is the array storing values */ /* i is the index of the first used element in the array */ /* j is the index of the first free element in the array */ /* dim is the size of the array a */ /* !!!!!!! This data structure is NOT documented, do not use it !!!!!!!!!! */ #define SGLIB_QUEUE_INIT(type, a, i, j) { i = j = 0; } #define SGLIB_QUEUE_IS_EMPTY(type, a, i, j) ((i)==(j)) #define SGLIB_QUEUE_IS_FULL(type, a, i, j, dim) ((i)==((j)+1)%(dim)) #define SGLIB_QUEUE_FIRST_ELEMENT(type, a, i, j) (a[i]) #define SGLIB_QUEUE_ADD_NEXT(type, a, i, j, dim) {\ if (SGLIB_QUEUE_IS_FULL(type, a, i, j, dim)) assert(0 && "the queue is full");\ (j) = ((j)+1) % (dim);\ } #define SGLIB_QUEUE_ADD(type, a, elem, i, j, dim) {\ a[j] = (elem);\ SGLIB_QUEUE_ADD_NEXT(type, a, i, j, dim);\ } #define SGLIB_QUEUE_DELETE_FIRST(type, a, i, j, dim) {\ if (SGLIB_QUEUE_IS_EMPTY(type, a, i, j)) assert(0 && "the queue is empty");\ (i) = ((i)+1) % (dim);\ } #define SGLIB_QUEUE_DELETE(type, a, i, j, dim) {\ SGLIB_QUEUE_DELETE_FIRST(type, a, i, j, dim);\ } /* ----------------- priority queue (heap) (in an array) -------------------- */ /* heap is a triple (a,i,dim) such that: */ /* a is the array storing values */ /* i is the index of the first free element in the array */ /* dim is the size of the array a */ /* !!!!!!! This data structure is NOT documented, do not use it !!!!!!!!!! */ #define SGLIB_HEAP_INIT(type, a, i) { i = 0; } #define SGLIB_HEAP_IS_EMPTY(type, a, i) ((i)==0) #define SGLIB_HEAP_IS_FULL(type, a, i, dim) ((i)==(dim)) #define SGLIB_HEAP_FIRST_ELEMENT(type, a, i) (a[0]) #define SGLIB_HEAP_ADD_NEXT(type, a, i, dim, comparator, elem_exchanger) {\ int _i_;\ if (SGLIB_HEAP_IS_FULL(type, a, i, dim)) assert(0 && "the heap is full");\ _i_ = (i)++;\ while (_i_ > 0 && comparator(a[_i_/2], a[_i_]) < 0) {\ elem_exchanger(type, a, (_i_/2), _i_);\ _i_ = _i_/2;\ }\ } #define SGLIB_HEAP_ADD(type, a, elem, i, dim, comparator) {\ if (SGLIB_HEAP_IS_FULL(type, a, i, dim)) assert(0 && "the heap is full");\ a[i] = (elem);\ SGLIB_HEAP_ADD_NEXT(type, a, i, dim, comparator, SGLIB_ARRAY_ELEMENTS_EXCHANGER);\ } #define SGLIB_HEAP_DELETE_FIRST(type, a, i, dim, comparator, elem_exchanger) {\ if (SGLIB_HEAP_IS_EMPTY(type, a, i)) assert(0 && "the heap is empty");\ (i)--;\ a[0] = a[i];\ SGLIB___ARRAY_HEAP_DOWN(type, a, 0, i, comparator, elem_exchanger);\ } #define SGLIB_HEAP_DELETE(type, a, i, dim, comparator) {\ SGLIB_HEAP_DELETE_FIRST(type, a, i, dim, comparator, SGLIB_ARRAY_ELEMENTS_EXCHANGER);\ } /* ----------------- hashed table of pointers (in an array) -------------------- */ /* This hashed table is storing pointers to objects (not containers). In this table there is a one-to-one mapping between 'objects' stored in the table and indexes where they are placed. Each index is pointing to exactly one 'object' and each 'object' stored in the table occurs on exactly one index. Once an object is stored in the table, it can be represented via its index. In case of collision while adding an object the index shifted by SGLIB_HASH_TAB_SHIFT_CONSTANT (constant can be redefined) You can NOT delete an element from such hash table. The only justification (I can see) for this data structure is an exchange file format, having an index table at the beginning and then refering objects via indexes. !!!!!!! This data structure is NOT documented, do not use it !!!!!!!!!! */ #define SGLIB_HASH_TAB_INIT(type, table, dim) {\ int _i_;\ for(_i_ = 0; _i_ < (dim); _i_++) (table)[_i_] = NULL;\ } #define SGLIB_HASH_TAB_ADD_IF_NOT_MEMBER(type, table, dim, elem, hash_function, comparator, member){\ unsigned _pos_;\ type *_elem_;\ SGLIB_HASH_TAB_FIND_MEMBER(type, table, dim, elem, _pos_, _elem_);\ (member) = (table)[_pos_];\ if (_elem_ == NULL) {\ if ((table)[_pos_] != NULL) assert(0 && "the hash table is full");\ (table)[_pos_] = (elem);\ }\ } #define SGLIB_HASH_TAB_FIND_MEMBER(type, table, dim, elem, hash_function, comparator, resultIndex, resultMember) {\ unsigned _i_;\ int _count_;\ type *_e_;\ _count = 0;\ _i_ = hash_function(elem);\ _i_ %= (dim);\ while ((_e_=(table)[_i_])!=NULL && comparator(_e_, (elem))!=0 && _count_<(dim)) {\ _count_ ++;\ _i_ = (_i_ + SGLIB_HASH_TAB_SHIFT_CONSTANT) % (dim);\ }\ (resultIndex) = _i_;\ if (_count_ < (dim)) (resultMember) = _e_;\ else (resultMember) = NULL;\ } #define SGLIB_HASH_TAB_IS_MEMBER(type, table, dim, elem, hash_function, resultIndex) {\ unsigned _i_;\ int _c_;\ type *_e_;\ _count = 0;\ _i_ = hash_function(elem);\ _i_ %= (dim);\ while ((_e_=(table)[_i_])!=NULL && _e_!=(elem) && _c_<(dim)) {\ _c_ ++;\ _i_ = (_i_ + SGLIB_HASH_TAB_SHIFT_CONSTANT) % (dim);\ }\ if (_e_==(elem)) (resultIndex) = _i_;\ else (resultIndex) = -1;\ } #define SGLIB_HASH_TAB_MAP_ON_ELEMENTS(type, table, dim, iteratedIndex, iteratedVariable, command) {\ unsigned iteratedIndex;\ type *iteratedVariable;\ for(iteratedIndex=0; iteratedIndex < (dim); iteratedIndex++) {\ iteratedVariable = (table)[iteratedIndex];\ if (iteratedVariable != NULL) {command;}\ }\ } /* ---------------------------------------------------------------------------- */ /* ------------------------- DYNAMIC DATA STRUCTURES -------------------------- */ /* ---------------------------------------------------------------------------- */ /* ------------------------------------ lists (level 0) --------------------- */ #define SGLIB_LIST_ADD(type, list, elem, next) {\ (elem)->next = (list);\ (list) = (elem);\ } #define SGLIB_LIST_CONCAT(type, first, second, next) {\ if ((first)==NULL) {\ (first) = (second);\ } else {\ type *_p_;\ for(_p_ = (first); _p_->next!=NULL; _p_=_p_->next) ;\ _p_->next = (second);\ }\ } #define SGLIB_LIST_DELETE(type, list, elem, next) {\ type **_p_;\ for(_p_ = &(list); *_p_!=NULL && *_p_!=(elem); _p_= &(*_p_)->next) ;\ assert(*_p_!=NULL && "element is not member of the container, use DELETE_IF_MEMBER instead"!=NULL);\ *_p_ = (*_p_)->next;\ } #define SGLIB_LIST_ADD_IF_NOT_MEMBER(type, list, elem, comparator, next, member) {\ type *_p_;\ for(_p_ = (list); _p_!=NULL && comparator(_p_, (elem)) != 0; _p_= _p_->next) ;\ (member) = _p_;\ if (_p_ == NULL) {\ SGLIB_LIST_ADD(type, list, elem, next);\ }\ } #define SGLIB_LIST_DELETE_IF_MEMBER(type, list, elem, comparator, next, member) {\ type **_p_;\ for(_p_ = &(list); *_p_!=NULL && comparator((*_p_), (elem)) != 0; _p_= &(*_p_)->next) ;\ (member) = *_p_;\ if (*_p_ != NULL) {\ *_p_ = (*_p_)->next;\ }\ } #define SGLIB_LIST_IS_MEMBER(type, list, elem, next, result) {\ type *_p_;\ for(_p_ = (list); _p_!=NULL && _p_ != (elem); _p_= _p_->next) ;\ (result) = (_p_!=NULL);\ } #define SGLIB_LIST_FIND_MEMBER(type, list, elem, comparator, next, member) {\ type *_p_;\ for(_p_ = (list); _p_!=NULL && comparator(_p_, (elem)) != 0; _p_= _p_->next) ;\ (member) = _p_;\ } #define SGLIB_LIST_MAP_ON_ELEMENTS(type, list, iteratedVariable, next, command) {\ type *_ne_;\ type *iteratedVariable;\ (iteratedVariable) = (list);\ while ((iteratedVariable)!=NULL) {\ _ne_ = (iteratedVariable)->next;\ {command;};\ (iteratedVariable) = _ne_;\ }\ } #define SGLIB_LIST_LEN(type, list, next, result) {\ type *_ce_;\ (void)(_ce_);\ (result) = 0;\ SGLIB_LIST_MAP_ON_ELEMENTS(type, list, _ce_, next, (result)++);\ } #define SGLIB_LIST_REVERSE(type, list, next) {\ type *_list_,*_tmp_,*_res_;\ _list_ = (list);\ _res_ = NULL;\ while (_list_!=NULL) {\ _tmp_ = _list_->next; _list_->next = _res_;\ _res_ = _list_; _list_ = _tmp_;\ }\ (list) = _res_;\ } #define SGLIB_LIST_SORT(type, list, comparator, next) {\ /* a non-recursive merge sort on lists */\ type *_r_;\ type *_a_, *_b_, *_todo_, *_t_, **_restail_;\ int _i_, _n_, _contFlag_;\ _r_ = (list);\ _contFlag_ = 1;\ for(_n_ = 1; _contFlag_; _n_ = _n_+_n_) {\ _todo_ = _r_; _r_ = NULL; _restail_ = &_r_; _contFlag_ =0;\ while (_todo_!=NULL) {\ _a_ = _todo_;\ for(_i_ = 1, _t_ = _a_; _i_ < _n_ && _t_!=NULL; _i_++, _t_ = _t_->next) ;\ if (_t_ ==NULL) {\ *_restail_ = _a_;\ break;\ }\ _b_ = _t_->next; _t_->next=NULL;\ for(_i_ =1, _t_ = _b_; _i_<_n_ && _t_!=NULL; _i_++, _t_ = _t_->next) ;\ if (_t_ ==NULL) {\ _todo_ =NULL;\ } else {\ _todo_ = _t_->next; _t_->next=NULL;\ }\ /* merge */\ while (_a_!=NULL && _b_!=NULL) {\ if (comparator(_a_, _b_) < 0) {\ *_restail_ = _a_; _restail_ = &(_a_->next); _a_ = _a_->next;\ } else {\ *_restail_ = _b_; _restail_ = &(_b_->next); _b_ = _b_->next;\ }\ }\ if (_a_!=NULL) *_restail_ = _a_;\ else *_restail_ = _b_;\ while (*_restail_!=NULL) _restail_ = &((*_restail_)->next);\ _contFlag_ =1;\ }\ }\ (list) = _r_;\ } /* --------------------------------- sorted list (level 0) --------------------- */ /* All operations suppose that the list is sorted and they preserve this property. */ #define SGLIB_SORTED_LIST_ADD(type, list, elem, comparator, next) {\ type **_e_;\ int _cmpres_;\ SGLIB_SORTED_LIST_FIND_MEMBER_OR_PLACE(type, list, elem, comparator, next, _cmpres_, _e_);\ (elem)->next = *_e_;\ *_e_ = (elem);\ } #define SGLIB_SORTED_LIST_ADD_IF_NOT_MEMBER(type, list, elem, comparator, next, member) {\ type **_e_;\ int _cmp_res_;\ SGLIB_SORTED_LIST_FIND_MEMBER_OR_PLACE(type, list, elem, comparator, next, _cmp_res_, _e_);\ if (_cmp_res_ != 0) {\ (elem)->next = *_e_;\ *_e_ = (elem);\ (member) = NULL;\ } else {\ (member) = *_e_;\ }\ } #define SGLIB_SORTED_LIST_DELETE(type, list, elem, next) {\ SGLIB_LIST_DELETE(type, list, elem, next);\ } #define SGLIB_SORTED_LIST_DELETE_IF_MEMBER(type, list, elem, comparator, next, member) {\ type **_e_;\ int _cmp_res_;\ SGLIB_SORTED_LIST_FIND_MEMBER_OR_PLACE(type, list, elem, comparator, next, _cmp_res_, _e_);\ if (_cmp_res_ == 0) {\ (member) = *_e_;\ *_e_ = (*_e_)->next;\ } else {\ (member) = NULL;\ }\ } #define SGLIB_SORTED_LIST_FIND_MEMBER(type, list, elem, comparator, next, member) {\ type *_p_;\ int _cmpres_ = 1;\ for(_p_ = (list); _p_!=NULL && (_cmpres_=comparator(_p_, (elem))) < 0; _p_=_p_->next) ;\ if (_cmpres_ != 0) (member) = NULL;\ else (member) = _p_;\ } #define SGLIB_SORTED_LIST_IS_MEMBER(type, list, elem, comparator, next, result) {\ type *_p_;\ for(_p_ = (list); _p_!=NULL && comparator(_p_, (elem)) < 0; _p_=_p_->next) ;\ while (_p_ != NULL && _p_ != (elem) && comparator(_p_, (elem)) == 0) _p_=_p_->next;\ (result) = (_p_ == (elem));\ } #define SGLIB_SORTED_LIST_FIND_MEMBER_OR_PLACE(type, list, elem, comparator, next, comparator_result, member_ptr) {\ (comparator_result) = -1;\ for((member_ptr) = &(list);\ *(member_ptr)!=NULL && ((comparator_result)=comparator((*member_ptr), (elem))) < 0;\ (member_ptr) = &(*(member_ptr))->next) ;\ } #define SGLIB_SORTED_LIST_LEN(type, list, next, result) {\ SGLIB_LIST_LEN(type, list, next, result);\ } #define SGLIB_SORTED_LIST_MAP_ON_ELEMENTS(type, list, iteratedVariable, next, command) {\ SGLIB_LIST_MAP_ON_ELEMENTS(type, list, iteratedVariable, next, command);\ } /* ------------------------------- double linked list (level 0) ------------------------- */ /* Lists with back pointer to previous element. Those lists implements deletion of an element in a constant time. */ #define SGLIB___DL_LIST_CREATE_SINGLETON(type, list, elem, previous, next) {\ (list) = (elem);\ (list)->next = (list)->previous = NULL;\ } #define SGLIB_DL_LIST_ADD_AFTER(type, place, elem, previous, next) {\ if ((place) == NULL) {\ SGLIB___DL_LIST_CREATE_SINGLETON(type, place, elem, previous, next);\ } else {\ (elem)->next = (place)->next;\ (elem)->previous = (place);\ (place)->next = (elem);\ if ((elem)->next != NULL) (elem)->next->previous = (elem);\ }\ } #define SGLIB_DL_LIST_ADD_BEFORE(type, place, elem, previous, next) {\ if ((place) == NULL) {\ SGLIB___DL_LIST_CREATE_SINGLETON(type, place, elem, previous, next);\ } else {\ (elem)->next = (place);\ (elem)->previous = (place)->previous;\ (place)->previous = (elem);\ if ((elem)->previous != NULL) (elem)->previous->next = (elem);\ }\ } #define SGLIB_DL_LIST_ADD(type, list, elem, previous, next) {\ SGLIB_DL_LIST_ADD_BEFORE(type, list, elem, previous, next)\ (list) = (elem);\ } #define SGLIB___DL_LIST_GENERIC_ADD_IF_NOT_MEMBER(type, list, elem, comparator, previous, next, member, the_add_operation) {\ type *_dlp_;\ for(_dlp_ = (list); _dlp_!=NULL && comparator(_dlp_, (elem)) != 0; _dlp_= _dlp_->previous) ;\ if (_dlp_ == NULL && (list) != NULL) {\ for(_dlp_ = (list)->next; _dlp_!=NULL && comparator(_dlp_, (elem)) != 0; _dlp_= _dlp_->next) ;\ }\ (member) = _dlp_;\ if (_dlp_ == NULL) {\ the_add_operation(type, list, elem, previous, next);\ }\ } #define SGLIB_DL_LIST_ADD_BEFORE_IF_NOT_MEMBER(type, list, elem, comparator, previous, next, member) {\ SGLIB___DL_LIST_GENERIC_ADD_IF_NOT_MEMBER(type, list, elem, comparator, previous, next, member, SGLIB_DL_LIST_ADD_BEFORE);\ } #define SGLIB_DL_LIST_ADD_AFTER_IF_NOT_MEMBER(type, list, elem, comparator, previous, next, member) {\ SGLIB___DL_LIST_GENERIC_ADD_IF_NOT_MEMBER(type, list, elem, comparator, previous, next, member, SGLIB_DL_LIST_ADD_AFTER);\ } #define SGLIB_DL_LIST_ADD_IF_NOT_MEMBER(type, list, elem, comparator, previous, next, member) {\ SGLIB___DL_LIST_GENERIC_ADD_IF_NOT_MEMBER(type, list, elem, comparator, previous, next, member, SGLIB_DL_LIST_ADD);\ } #define SGLIB_DL_LIST_CONCAT(type, first, second, previous, next) {\ if ((first)==NULL) {\ (first) = (second);\ } else if ((second)!=NULL) {\ type *_dlp_;\ for(_dlp_ = (first); _dlp_->next!=NULL; _dlp_=_dlp_->next) { };\ SGLIB_DL_LIST_ADD_AFTER(type, _dlp_, second, previous, next);\ }\ } #define SGLIB_DL_LIST_DELETE(type, list, elem, previous, next) {\ type *_l_;\ _l_ = (list);\ if (_l_ == (elem)) {\ if ((elem)->previous != NULL) _l_ = (elem)->previous;\ else _l_ = (elem)->next;\ }\ if ((elem)->next != NULL) (elem)->next->previous = (elem)->previous;\ if ((elem)->previous != NULL) (elem)->previous->next = (elem)->next;\ (list) = _l_;\ } #define SGLIB_DL_LIST_DELETE_IF_MEMBER(type, list, elem, comparator, previous, next, member) {\ type *_dlp_;\ for(_dlp_ = (list); _dlp_!=NULL && comparator(_dlp_, (elem)) != 0; _dlp_= _dlp_->previous) ;\ if (_dlp_ == NULL && (list) != NULL) {\ for(_dlp_ = (list)->next; _dlp_!=NULL && comparator(_dlp_, (elem)) != 0; _dlp_= _dlp_->next) ;\ }\ (member) = _dlp_;\ if (_dlp_ != NULL) {\ SGLIB_DL_LIST_DELETE(type, list, _dlp_, previous, next);\ }\ } #define SGLIB_DL_LIST_IS_MEMBER(type, list, elem, previous, next, result) {\ type *_dlp_;\ SGLIB_LIST_IS_MEMBER(type, list, elem, previous, result);\ if (result == 0 && (list) != NULL) {\ _dlp_ = (list)->next;\ SGLIB_LIST_IS_MEMBER(type, _dlp_, elem, next, result);\ }\ } #define SGLIB_DL_LIST_FIND_MEMBER(type, list, elem, comparator, previous, next, member) {\ type *_dlp_;\ SGLIB_LIST_FIND_MEMBER(type, list, elem, comparator, previous, member);\ if ((member) == NULL && (list) != NULL) {\ _dlp_ = (list)->next;\ SGLIB_LIST_FIND_MEMBER(type, _dlp_, elem, comparator, next, member);\ }\ } #define SGLIB_DL_LIST_MAP_ON_ELEMENTS(type, list, iteratedVariable, previous, next, command) {\ type *_dl_;\ type *iteratedVariable;\ (void)(iteratedVariable);\ if ((list)!=NULL) {\ _dl_ = (list)->next;\ SGLIB_LIST_MAP_ON_ELEMENTS(type, list, iteratedVariable, previous, command);\ SGLIB_LIST_MAP_ON_ELEMENTS(type, _dl_, iteratedVariable, next, command);\ }\ } #define SGLIB_DL_LIST_SORT(type, list, comparator, previous, next) {\ type *_dll_;\ _dll_ = (list);\ if (_dll_ != NULL) {\ for(; _dll_->previous!=NULL; _dll_=_dll_->previous) { };\ SGLIB_LIST_SORT(type, _dll_, comparator, next);\ SGLIB___DL_LIST_CREATE_FROM_LIST(type, _dll_, previous, next);\ (list) = _dll_;\ }\ } #define SGLIB_DL_LIST_GET_FIRST(type, list, previous, next, result) {\ type *_dll_;\ _dll_ = (list);\ if (_dll_ != NULL) {\ for(; _dll_->previous!=NULL; _dll_=_dll_->previous) ;\ }\ (result) = _dll_;\ } #define SGLIB_DL_LIST_GET_LAST(type, list, previous, next, result) {\ type *_dll_;\ _dll_ = (list);\ if (_dll_ != NULL) {\ for(; _dll_->next!=NULL; _dll_=_dll_->next) ;\ }\ (result) = _dll_;\ } #define SGLIB_DL_LIST_LEN(type, list, previous, next, result) {\ type *_dl_;\ int _r1_, _r2_;\ if ((list)==NULL) {\ (result) = 0;\ } else {\ SGLIB_LIST_LEN(type, list, previous, _r1_);\ _dl_ = (list)->next;\ SGLIB_LIST_LEN(type, _dl_, next, _r2_);\ (result) = _r1_ + _r2_;\ }\ } #define SGLIB_DL_LIST_REVERSE(type, list, previous, next) {\ type *_list_,*_nlist_,*_dlp_,*_dln_;\ _list_ = (list);\ if (_list_!=NULL) {\ _nlist_ = _list_->next;\ while (_list_!=NULL) {\ _dln_ = _list_->next;\ _dlp_ = _list_->previous;\ _list_->next = _dlp_;\ _list_->previous = _dln_;\ _list_ = _dlp_;\ }\ while (_nlist_!=NULL) {\ _dln_ = _nlist_->next;\ _dlp_ = _nlist_->previous;\ _nlist_->next = _dlp_;\ _nlist_->previous = _dln_;\ _nlist_ = _dln_;\ }\ }\ } #define SGLIB___DL_LIST_CREATE_FROM_LIST(type, list, previous, next) {\ type *_dlp_, *_dlt_;\ _dlp_ = NULL;\ for(_dlt_ = (list); _dlt_!=NULL; _dlt_ = _dlt_->next) {\ _dlt_->previous = _dlp_;\ _dlp_ = _dlt_;\ }\ } /* ------------------------------- binary tree traversal (level 0) -------------------- */ #define SGLIB___BIN_TREE_MAP_ON_ELEMENTS(type, tree, iteratedVariable, order, left, right, command) {\ /* this is non-recursive implementation of tree traversal */\ /* it maintains the path to the current node in the array '_path_' */\ /* the _path_[0] contains the root of the tree; */\ /* the _path_[_pathi_] contains the _current_element_ */\ /* the macro does not use the _current_element_ after execution of command */\ /* command can destroy it, it can free the element for example */\ type *_path_[SGLIB_MAX_TREE_DEEP];\ type *_right_[SGLIB_MAX_TREE_DEEP];\ char _pass_[SGLIB_MAX_TREE_DEEP];\ type *_cn_;\ int _pathi_;\ type *iteratedVariable;\ (void)(iteratedVariable);\ _cn_ = (tree);\ _pathi_ = 0;\ while (_cn_!=NULL) {\ /* push down to leftmost innermost element */\ while(_cn_!=NULL) {\ _path_[_pathi_] = _cn_;\ _right_[_pathi_] = _cn_->right;\ _pass_[_pathi_] = 0;\ _cn_ = _cn_->left;\ if (order == 0) {\ iteratedVariable = _path_[_pathi_];\ {command;}\ }\ _pathi_ ++;\ if (_pathi_ >= SGLIB_MAX_TREE_DEEP) assert(0 && "the binary_tree is too deep");\ }\ do {\ _pathi_ --;\ if ((order==1 && _pass_[_pathi_] == 0)\ || (order == 2 && (_pass_[_pathi_] == 1 || _right_[_pathi_]==NULL))) {\ iteratedVariable = _path_[_pathi_];\ {command;}\ }\ _pass_[_pathi_] ++;\ } while (_pathi_>0 && _right_[_pathi_]==NULL) ;\ _cn_ = _right_[_pathi_];\ _right_[_pathi_] = NULL;\ _pathi_ ++;\ }\ } #define SGLIB_BIN_TREE_MAP_ON_ELEMENTS(type, tree, _current_element_, left, right, command) {\ SGLIB___BIN_TREE_MAP_ON_ELEMENTS(type, tree, _current_element_, 1, left, right, command);\ } #define SGLIB_BIN_TREE_MAP_ON_ELEMENTS_PREORDER(type, tree, _current_element_, left, right, command) {\ SGLIB___BIN_TREE_MAP_ON_ELEMENTS(type, tree, _current_element_, 0, left, right, command);\ } #define SGLIB_BIN_TREE_MAP_ON_ELEMENTS_POSTORDER(type, tree, _current_element_, left, right, command) {\ SGLIB___BIN_TREE_MAP_ON_ELEMENTS(type, tree, _current_element_, 2, left, right, command);\ } #define SGLIB___BIN_TREE_FIND_MEMBER(type, tree, elem, left, right, comparator, res) {\ type *_s_;\ int _c_;\ _s_ = (tree);\ while (_s_!=NULL) {\ _c_ = comparator((elem), _s_);\ if (_c_ < 0) _s_ = _s_->left;\ else if (_c_ > 0) _s_ = _s_->right;\ else break;\ }\ (res) = _s_;\ } /* ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- */ /* - LEVEL - 1 INTERFACE - */ /* ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- */ /* ------------------------------ STATIC ARRAYS ------------------------------- */ /* ---------------------------------------------------------------------------- */ /* ----------------------------- array sorting (level 1) ---------------------- */ #define SGLIB_DEFINE_ARRAY_SORTING_PROTOTYPES(type, comparator) \ extern void sglib_##type##_array_quick_sort(type *a, int max);\ extern void sglib_##type##_array_heap_sort(type *a, int max);\ #define SGLIB_DEFINE_ARRAY_SORTING_FUNCTIONS(type, comparator) \ void sglib_##type##_array_quick_sort(type *a, int max) {\ SGLIB_ARRAY_SINGLE_QUICK_SORT(type, a, max, comparator);\ }\ void sglib_##type##_array_heap_sort(type *a, int max) {\ SGLIB_ARRAY_SINGLE_HEAP_SORT(type, a, max, comparator);\ }\ /* ----------------------------- array queue (level 1) ------------------- */ /* sglib's queue is stored in a fixed sized array */ /* queue_type MUST be a structure containing fields: */ /* afield is the array storing elem_type */ /* ifield is the index of the first element in the queue */ /* jfield is the index of the first free element after the queue */ /* dim is the size of the array afield */ /* !!!!!!! This data structure is NOT documented, do not use it !!!!!!!!!! */ #define SGLIB_DEFINE_QUEUE_PROTOTYPES(queue_type, elem_type, afield, ifield, jfield, dim) \ extern void sglib_##queue_type##_init(queue_type *q);\ extern int sglib_##queue_type##_is_empty(queue_type *q);\ extern int sglib_##queue_type##_is_full(queue_type *q);\ extern elem_type sglib_##queue_type##_first_element(queue_type *q);\ extern elem_type *sglib_##queue_type##_first_element_ptr(queue_type *q);\ extern void sglib_##queue_type##_add_next(queue_type *q);\ extern void sglib_##queue_type##_add(queue_type *q, elem_type elem);\ extern void sglib_##queue_type##_delete_first(queue_type *q);\ extern void sglib_##queue_type##_delete(queue_type *q); #define SGLIB_DEFINE_QUEUE_FUNCTIONS(queue_type, elem_type, afield, ifield, jfield, dim) \ void sglib_##queue_type##_init(queue_type *q) {\ SGLIB_QUEUE_INIT(elem_type, q->afield, q->ifield, q->jfield);\ }\ int sglib_##queue_type##_is_empty(queue_type *q) {\ return(SGLIB_QUEUE_IS_EMPTY(elem_type, q->afield, q->ifield, q->jfield));\ }\ int sglib_##queue_type##_is_full(queue_type *q) {\ return(SGLIB_QUEUE_IS_FULL(elem_type, q->afield, q->ifield, q->jfield));\ }\ elem_type sglib_##queue_type##_first_element(queue_type *q) {\ return(SGLIB_QUEUE_FIRST_ELEMENT(elem_type, q->afield, q->ifield, q->jfield));\ }\ elem_type *sglib_##queue_type##_first_element_ptr(queue_type *q) {\ return(& SGLIB_QUEUE_FIRST_ELEMENT(elem_type, q->afield, q->ifield, q->jfield));\ }\ void sglib_##queue_type##_add_next(queue_type *q) {\ SGLIB_QUEUE_ADD_NEXT(elem_type, q->afield, q->ifield, q->jfield, dim);\ }\ void sglib_##queue_type##_add(queue_type *q, elem_type elem) {\ SGLIB_QUEUE_ADD(elem_type, q->afield, elem, q->ifield, q->jfield, dim);\ }\ void sglib_##queue_type##_delete_first(queue_type *q) {\ SGLIB_QUEUE_DELETE_FIRST(elem_type, q->afield, q->ifield, q->jfield, dim);\ }\ void sglib_##queue_type##_delete(queue_type *q) {\ SGLIB_QUEUE_DELETE_FIRST(elem_type, q->afield, q->ifield, q->jfield, dim);\ } /* ------------------------ array heap (level 1) ------------------------- */ /* sglib's heap is a priority queue implemented in a fixed sized array */ /* heap_type MUST be a structure containing fields: */ /* afield is the array of size dim storing elem_type */ /* ifield is the index of the first free element after the queue */ /* !!!!!!! This data structure is NOT documented, do not use it !!!!!!!!!! */ #define SGLIB_DEFINE_HEAP_PROTOTYPES(heap_type, elem_type, afield, ifield, dim, comparator, elem_exchanger) \ extern void sglib_##heap_type##_init(heap_type *q);\ extern int sglib_##heap_type##_is_empty(heap_type *q);\ extern int sglib_##heap_type##_is_full(heap_type *q);\ extern elem_type sglib_##heap_type##_first_element(heap_type *q);\ extern elem_type *sglib_##heap_type##_first_element_ptr(heap_type *q);\ extern void sglib_##heap_type##_add_next(heap_type *q);\ extern void sglib_##heap_type##_add(heap_type *q, elem_type elem);\ extern void sglib_##heap_type##_delete_first(heap_type *q);\ extern void sglib_##heap_type##_delete(heap_type *q) #define SGLIB_DEFINE_HEAP_FUNCTIONS(heap_type, elem_type, afield, ifield, dim, comparator, elem_exchanger) \ void sglib_##heap_type##_init(heap_type *q) {\ SGLIB_HEAP_INIT(elem_type, q->afield, q->ifield);\ }\ int sglib_##heap_type##_is_empty(heap_type *q) {\ return(SGLIB_HEAP_IS_EMPTY(elem_type, q->afield, q->ifield));\ }\ int sglib_##heap_type##_is_full(heap_type *q) {\ return(SGLIB_HEAP_IS_FULL(elem_type, q->afield, q->ifield));\ }\ elem_type sglib_##heap_type##_first_element(heap_type *q) {\ return(SGLIB_HEAP_FIRST_ELEMENT(elem_type, q->afield, q->ifield));\ }\ elem_type *sglib_##heap_type##_first_element_ptr(heap_type *q) {\ return(& SGLIB_HEAP_FIRST_ELEMENT(elem_type, q->afield, q->ifield));\ }\ void sglib_##heap_type##_add_next(heap_type *q) {\ SGLIB_HEAP_ADD_NEXT(elem_type, q->afield, q->ifield, dim, comparator, elem_exchanger);\ }\ void sglib_##heap_type##_add(heap_type *q, elem_type elem) {\ SGLIB_HEAP_ADD(elem_type, q->afield, elem, q->ifield, dim, comparator, elem_exchanger);\ }\ void sglib_##heap_type##_delete_first(heap_type *q) {\ SGLIB_HEAP_DELETE_FIRST(elem_type, q->afield, q->ifield, dim, comparator, elem_exchanger);\ }\ void sglib_##heap_type##_delete(heap_type *q) {\ SGLIB_HEAP_DELETE_FIRST(elem_type, q->afield, q->ifield, dim, comparator, elem_exchanger);\ } /* ------------------------ hashed table (level 1) ------------------------- */ /* sglib's hash table is an array storing directly pointers to objects (not containers). In this table there is a one-to-one mapping between 'objects' stored in the table and indexes where they are placed. Each index is pointing to exactly one 'object' and each 'object' stored in the table occurs on exactly one index. Once an object is stored in the table, it can be represented via its index. type - is the type of elements dim - is the size of the hash array hash_function - is a hashing function mapping type* to unsigned comparator - is a comparator on elements !!!!!!! This data structure is NOT documented, do not use it !!!!!!!!!! */ #define SGLIB_DEFINE_HASHED_TABLE_PROTOTYPES(type, dim, hash_function, comparator) \ struct sglib_hashed_##type##_iterator {\ int currentIndex;\ int (*subcomparator)(type *, type *);\ type *equalto;\ };\ extern void sglib_hashed_##type##_init(type *table[dim]);\ extern int sglib_hashed_##type##_add_if_not_member(type *table[dim], type *elem, type **member);\ extern int sglib_hashed_##type##_is_member(type *table[dim], type *elem);\ extern type * sglib_hashed_##type##_find_member(type *table[dim], type *elem);\ extern type *sglib_hashed_##type##_it_init(struct sglib_hashed_##type##_iterator *it, type *table[dim]);\ extern type *sglib_hashed_##type##_it_init_on_equal(struct sglib_hashed_##type##_iterator *it, type *table[dim], int (*subcomparator)(type *, type *), type *equalto);\ extern type *sglib_hashed_##type##_it_current(struct sglib_hashed_##type##_iterator *it);\ extern type *sglib_hashed_##type##_it_next(struct sglib_hashed_##type##_iterator *it); #define SGLIB_DEFINE_HASHED_TABLE_FUNCTIONS(type, dim, hash_function, comparator) \ struct sglib_hashed_##type##_iterator {\ int currentIndex;\ type **table;\ int (*subcomparator)(type *, type *);\ type *equalto;\ };\ void sglib_hashed_##type##_init(type *table[dim]) {\ SGLIB_HASH_TAB_INIT(type, table, dim);\ }\ int sglib_hashed_##type##_add_if_not_member(type *table[dim], type *elem, type **member) {\ SGLIB_HASH_TAB_ADD_IF_NOT_MEMBER(type, table, dim, elem, hash_function, comparator, *member);\ }\ int sglib_hashed_##type##_is_member(type *table[dim], type *elem) {\ int ind;\ SGLIB_HASH_TAB_IS_MEMBER(type, table, dim, elem, hash_function, ind);\ return(ind != -1);\ }\ type * sglib_hashed_##type##_find_member(type *table[dim], type *elem) {\ type *mmb;\ int ind;\ SGLIB_HASH_TAB_FIND_MEMBER(type, table, dim, elem, hash_function, comparator, ind, mmb);\ return(mmb);\ }\ type *sglib_hashed_##type##_it_init_on_equal(struct sglib_hashed_##type##_iterator *it, type *table[dim], int (*subcomparator)(type *, type *), type *equalto) {\ int i;\ it->table = table;\ it->subcomparator = subcomparator;\ it->equalto = equalto;\ for(i=0; i<(dim) && table[i]==NULL; i++) ;\ it->currentIndex = i;\ if (i<(dim)) return(table[i]);\ return(NULL);\ }\ type *sglib_hashed_##type##_it_init(struct sglib_hashed_##type##_iterator *it, type *table[dim]) {\ sglib_hashed_##type##_it_init_on_equal(it, table, NULL, NULL);\ }\ type *sglib_hashed_##type##_it_current(struct sglib_hashed_##type##_iterator *it) {\ return(table[it->currentIndex]);\ }\ type *sglib_hashed_##type##_it_next(struct sglib_hashed_##type##_iterator *it) {\ i=it->currentIndex;\ if (i<(dim)) {\ for(i++; i<(dim) && table[i]==NULL; i++) ;\ }\ it->currentIndex = i;\ if (i<(dim)) return(table[i]);\ return(NULL);\ } /* ------------------- hashed container (only for level 1) -------------------- */ /* hashed container is a table of given fixed size containing another (dynamic) base container in each cell. Once an object should be inserted into the hashed container, a hash function is used to determine the cell where the object belongs and the object is inserted into the base container stored in this cell. Usually the base container is simply a list or a sorted list, but it can be a red-black tree as well. parameters: type - the type of the container stored in each cell. dim - the size of the hashed array hash_function - the hashing function hashing 'type *' to unsigned. */ #define SGLIB_DEFINE_HASHED_CONTAINER_PROTOTYPES(type, dim, hash_function) \ struct sglib_hashed_##type##_iterator {\ struct sglib_##type##_iterator containerIt;\ type **table;\ int currentIndex;\ int (*subcomparator)(type *, type *);\ type *equalto;\ };\ extern void sglib_hashed_##type##_init(type *table[dim]);\ extern void sglib_hashed_##type##_add(type *table[dim], type *elem);\ extern int sglib_hashed_##type##_add_if_not_member(type *table[dim], type *elem, type **member);\ extern void sglib_hashed_##type##_delete(type *table[dim], type *elem);\ extern int sglib_hashed_##type##_delete_if_member(type *table[dim], type *elem, type **memb);\ extern int sglib_hashed_##type##_is_member(type *table[dim], type *elem);\ extern type * sglib_hashed_##type##_find_member(type *table[dim], type *elem);\ extern type *sglib_hashed_##type##_it_init(struct sglib_hashed_##type##_iterator *it, type *table[dim]);\ extern type *sglib_hashed_##type##_it_init_on_equal(struct sglib_hashed_##type##_iterator *it, type *table[dim], int (*subcomparator)(type *, type *), type *equalto);\ extern type *sglib_hashed_##type##_it_current(struct sglib_hashed_##type##_iterator *it);\ extern type *sglib_hashed_##type##_it_next(struct sglib_hashed_##type##_iterator *it); #define SGLIB_DEFINE_HASHED_CONTAINER_FUNCTIONS(type, dim, hash_function) \ /*extern unsigned hash_function(type *elem);*/\ void sglib_hashed_##type##_init(type *table[dim]) {\ unsigned i;\ for(i=0; i<(dim); i++) table[i] = NULL;\ }\ void sglib_hashed_##type##_add(type *table[dim], type *elem) {\ unsigned i;\ i = ((unsigned)hash_function(elem)) % (dim);\ sglib_##type##_add(&(table)[i], elem);\ }\ int sglib_hashed_##type##_add_if_not_member(type *table[dim], type *elem, type **member) {\ unsigned i;\ i = ((unsigned)hash_function(elem)) % (dim);\ return(sglib_##type##_add_if_not_member(&(table)[i], elem, member));\ }\ void sglib_hashed_##type##_delete(type *table[dim], type *elem) {\ unsigned i;\ i = ((unsigned)hash_function(elem)) % (dim);\ sglib_##type##_delete(&(table)[i], elem);\ }\ int sglib_hashed_##type##_delete_if_member(type *table[dim], type *elem, type **memb) {\ unsigned i;\ i = ((unsigned)hash_function(elem)) % (dim);\ return(sglib_##type##_delete_if_member(&(table)[i], elem, memb));\ }\ int sglib_hashed_##type##_is_member(type *table[dim], type *elem) {\ unsigned i;\ i = ((unsigned)hash_function(elem)) % (dim);\ return(sglib_##type##_is_member((table)[i], elem));\ }\ type * sglib_hashed_##type##_find_member(type *table[dim], type *elem) {\ unsigned i;\ i = ((unsigned)hash_function(elem)) % (dim);\ return(sglib_##type##_find_member((table)[i], elem));\ }\ type *sglib_hashed_##type##_it_init_on_equal(struct sglib_hashed_##type##_iterator *it, type *table[dim], int (*subcomparator)(type *, type *), type *equalto) {\ type *e;\ it->table = table;\ it->currentIndex = 0;\ it->subcomparator = subcomparator;\ it->equalto = equalto;\ e = sglib_##type##_it_init_on_equal(&it->containerIt, table[it->currentIndex], it->subcomparator, it->equalto);\ if (e==NULL) e = sglib_hashed_##type##_it_next(it);\ return(e);\ }\ type *sglib_hashed_##type##_it_init(struct sglib_hashed_##type##_iterator *it, type *table[dim]) {\ return(sglib_hashed_##type##_it_init_on_equal(it, table, NULL, NULL));\ }\ type *sglib_hashed_##type##_it_current(struct sglib_hashed_##type##_iterator *it) {\ return(sglib_##type##_it_current(&it->containerIt));\ }\ type *sglib_hashed_##type##_it_next(struct sglib_hashed_##type##_iterator *it) {\ type *e;\ e = sglib_##type##_it_next(&it->containerIt);\ while (e==NULL && (++(it->currentIndex))<(dim)) {\ e = sglib_##type##_it_init_on_equal(&it->containerIt, it->table[it->currentIndex], it->subcomparator, it->equalto);\ }\ return(e);\ } /* ---------------------------------------------------------------------------- */ /* ------------------------- DYNAMIC DATA STRUCTURES -------------------------- */ /* ---------------------------------------------------------------------------- */ /* ------------------------------------ list (level 1) -------------------------------- */ #define SGLIB_DEFINE_LIST_PROTOTYPES(type, comparator, next) \ struct sglib_##type##_iterator {\ type *currentelem;\ type *nextelem;\ int (*subcomparator)(type *, type *);\ type *equalto;\ };\ extern void sglib_##type##_add(type **list, type *elem);\ extern int sglib_##type##_add_if_not_member(type **list, type *elem, type **member);\ extern void sglib_##type##_concat(type **first, type *second);\ extern void sglib_##type##_delete(type **list, type *elem);\ extern int sglib_##type##_delete_if_member(type **list, type *elem, type **member);\ extern int sglib_##type##_is_member(type *list, type *elem);\ extern type *sglib_##type##_find_member(type *list, type *elem);\ extern void sglib_##type##_sort(type **list);\ extern int sglib_##type##_len(type *list);\ extern void sglib_##type##_reverse(type **list);\ extern type *sglib_##type##_it_init(struct sglib_##type##_iterator *it, type *list);\ extern type *sglib_##type##_it_init_on_equal(struct sglib_##type##_iterator *it, type *list, int (*subcomparator)(type *, type *), type *equalto);\ extern type *sglib_##type##_it_current(struct sglib_##type##_iterator *it);\ extern type *sglib_##type##_it_next(struct sglib_##type##_iterator *it); #define SGLIB_DEFINE_LIST_FUNCTIONS(type, comparator, next) \ int sglib_##type##_is_member(type *list, type *elem) {\ int result;\ SGLIB_LIST_IS_MEMBER(type, list, elem, next, result);\ return(result);\ }\ type *sglib_##type##_find_member(type *list, type *elem) {\ type *result;\ SGLIB_LIST_FIND_MEMBER(type, list, elem, comparator, next, result);\ return(result);\ }\ int sglib_##type##_add_if_not_member(type **list, type *elem, type **member) {\ SGLIB_LIST_ADD_IF_NOT_MEMBER(type, *list, elem, comparator, next, *member);\ return(*member==NULL);\ }\ void sglib_##type##_add(type **list, type *elem) {\ SGLIB_LIST_ADD(type, *list, elem, next);\ }\ void sglib_##type##_concat(type **first, type *second) {\ SGLIB_LIST_CONCAT(type, *first, second, next);\ }\ void sglib_##type##_delete(type **list, type *elem) {\ SGLIB_LIST_DELETE(type, *list, elem, next);\ }\ int sglib_##type##_delete_if_member(type **list, type *elem, type **member) {\ SGLIB_LIST_DELETE_IF_MEMBER(type, *list, elem, comparator, next, *member);\ return(*member!=NULL);\ }\ void sglib_##type##_sort(type **list) {\ SGLIB_LIST_SORT(type, *list, comparator, next);\ }\ int sglib_##type##_len(type *list) {\ int res;\ SGLIB_LIST_LEN(type, list, next, res);\ return(res);\ }\ void sglib_##type##_reverse(type **list) {\ SGLIB_LIST_REVERSE(type, *list, next);\ }\ \ type *sglib_##type##_it_init_on_equal(struct sglib_##type##_iterator *it, type *list, int (*subcomparator)(type *, type *), type *equalto) {\ it->subcomparator = subcomparator;\ it->equalto = equalto;\ it->nextelem = list;\ return(sglib_##type##_it_next(it));\ }\ type *sglib_##type##_it_init(struct sglib_##type##_iterator *it, type *list) {\ return(sglib_##type##_it_init_on_equal(it, list, NULL, NULL));\ }\ type *sglib_##type##_it_current(struct sglib_##type##_iterator *it) {\ return(it->currentelem);\ }\ type *sglib_##type##_it_next(struct sglib_##type##_iterator *it) {\ type *ce, *eq;\ int (*scp)(type *, type *);\ ce = it->nextelem;\ it->nextelem = NULL;\ if (it->subcomparator != NULL) {\ eq = it->equalto;\ scp = it->subcomparator;\ while (ce!=NULL && scp(ce, eq)!=0) ce = ce->next;\ }\ it->currentelem = ce;\ if (ce != NULL) it->nextelem = ce->next;\ return(ce);\ } /* ----------------------------- sorted list (level 1) ----------------------------------- */ #define SGLIB_DEFINE_SORTED_LIST_PROTOTYPES(type, comparator, next) \ struct sglib_##type##_iterator {\ type *currentelem;\ type *nextelem;\ int (*subcomparator)(type *, type *);\ type *equalto;\ };\ extern void sglib_##type##_add(type **list, type *elem);\ extern int sglib_##type##_add_if_not_member(type **list, type *elem, type **member);\ extern void sglib_##type##_delete(type **list, type *elem);\ extern int sglib_##type##_delete_if_member(type **list, type *elem, type **member);\ extern int sglib_##type##_is_member(type *list, type *elem);\ extern type *sglib_##type##_find_member(type *list, type *elem);\ extern int sglib_##type##_len(type *list);\ extern void sglib_##type##_sort(type **list);\ extern type *sglib_##type##_it_init(struct sglib_##type##_iterator *it, type *list);\ extern type *sglib_##type##_it_init_on_equal(struct sglib_##type##_iterator *it, type *list, int (*subcomparator)(type *, type *), type *equalto);\ extern type *sglib_##type##_it_current(struct sglib_##type##_iterator *it);\ extern type *sglib_##type##_it_next(struct sglib_##type##_iterator *it); #define SGLIB_DEFINE_SORTED_LIST_FUNCTIONS(type, comparator, next) \ int sglib_##type##_is_member(type *list, type *elem) {\ int result;\ SGLIB_SORTED_LIST_IS_MEMBER(type, list, elem, comparator, next, result);\ return(result);\ }\ type *sglib_##type##_find_member(type *list, type *elem) {\ type *result;\ SGLIB_SORTED_LIST_FIND_MEMBER(type, list, elem, comparator, next, result);\ return(result);\ }\ int sglib_##type##_add_if_not_member(type **list, type *elem, type **member) {\ SGLIB_SORTED_LIST_ADD_IF_NOT_MEMBER(type, *list, elem, comparator, next, *member);\ return(*member==NULL);\ }\ void sglib_##type##_add(type **list, type *elem) {\ SGLIB_SORTED_LIST_ADD(type, *list, elem, comparator, next);\ }\ void sglib_##type##_delete(type **list, type *elem) {\ SGLIB_SORTED_LIST_DELETE(type, *list, elem, next);\ }\ int sglib_##type##_delete_if_member(type **list, type *elem, type **member) {\ SGLIB_SORTED_LIST_DELETE_IF_MEMBER(type, *list, elem, comparator, next, *member);\ return(*member!=NULL);\ }\ int sglib_##type##_len(type *list) {\ int res;\ SGLIB_SORTED_LIST_LEN(type, list, next, res);\ return(res);\ }\ void sglib_##type##_sort(type **list) {\ SGLIB_LIST_SORT(type, *list, comparator, next);\ }\ \ type *sglib_##type##_it_init_on_equal(struct sglib_##type##_iterator *it, type *list, int (*subcomparator)(type *, type *), type *equalto) {\ it->subcomparator = subcomparator;\ it->equalto = equalto;\ it->nextelem = list;\ return(sglib_##type##_it_next(it));\ }\ type *sglib_##type##_it_init(struct sglib_##type##_iterator *it, type *list) {\ return(sglib_##type##_it_init_on_equal(it, list, NULL, NULL));\ }\ type *sglib_##type##_it_current(struct sglib_##type##_iterator *it) {\ return(it->currentelem);\ }\ type *sglib_##type##_it_next(struct sglib_##type##_iterator *it) {\ type *ce, *eq;\ int (*scp)(type *, type *);\ int c;\ ce = it->nextelem;\ it->nextelem = NULL;\ if (it->subcomparator != NULL) {\ eq = it->equalto;\ scp = it->subcomparator;\ while (ce!=NULL && (c=scp(ce, eq)) < 0) ce = ce->next;\ if (ce != NULL && c > 0) ce = NULL;\ }\ it->currentelem = ce;\ if (ce != NULL) it->nextelem = ce->next;\ return(ce);\ } /* ----------------------------- double linked list (level 1) ------------------------------ */ #define SGLIB_DEFINE_DL_LIST_PROTOTYPES(type, comparator, previous, next) \ struct sglib_##type##_iterator {\ type *currentelem;\ type *prevelem;\ type *nextelem;\ int (*subcomparator)(type *, type *);\ type *equalto;\ };\ extern void sglib_##type##_add(type **list, type *elem);\ extern void sglib_##type##_add_before(type **list, type *elem);\ extern void sglib_##type##_add_after(type **list, type *elem);\ extern int sglib_##type##_add_if_not_member(type **list, type *elem, type **member);\ extern int sglib_##type##_add_before_if_not_member(type **list, type *elem, type **member);\ extern int sglib_##type##_add_after_if_not_member(type **list, type *elem, type **member);\ extern void sglib_##type##_concat(type **first, type *second);\ extern void sglib_##type##_delete(type **list, type *elem);\ extern int sglib_##type##_delete_if_member(type **list, type *elem, type **member);\ extern int sglib_##type##_is_member(type *list, type *elem);\ extern type *sglib_##type##_find_member(type *list, type *elem);\ extern type *sglib_##type##_get_first(type *list);\ extern type *sglib_##type##_get_last(type *list);\ extern void sglib_##type##_sort(type **list);\ extern int sglib_##type##_len(type *list);\ extern void sglib_##type##_reverse(type **list);\ extern type *sglib_##type##_it_init(struct sglib_##type##_iterator *it, type *list);\ extern type *sglib_##type##_it_init_on_equal(struct sglib_##type##_iterator *it, type *list, int (*subcomparator)(type *, type *), type *equalto);\ extern type *sglib_##type##_it_current(struct sglib_##type##_iterator *it);\ extern type *sglib_##type##_it_next(struct sglib_##type##_iterator *it); #define SGLIB_DEFINE_DL_LIST_FUNCTIONS(type, comparator, previous, next) \ void sglib_##type##_add(type **list, type *elem) {\ SGLIB_DL_LIST_ADD(type, *list, elem, previous, next);\ }\ void sglib_##type##_add_after(type **list, type *elem) {\ SGLIB_DL_LIST_ADD_AFTER(type, *list, elem, previous, next);\ }\ void sglib_##type##_add_before(type **list, type *elem) {\ SGLIB_DL_LIST_ADD_BEFORE(type, *list, elem, previous, next);\ }\ int sglib_##type##_add_if_not_member(type **list, type *elem, type **member) {\ SGLIB_DL_LIST_ADD_IF_NOT_MEMBER(type, *list, elem, comparator, previous, next, *member);\ return(*member==NULL);\ }\ int sglib_##type##_add_after_if_not_member(type **list, type *elem, type **member) {\ SGLIB_DL_LIST_ADD_AFTER_IF_NOT_MEMBER(type, *list, elem, comparator, previous, next, *member);\ return(*member==NULL);\ }\ int sglib_##type##_add_before_if_not_member(type **list, type *elem, type **member) {\ SGLIB_DL_LIST_ADD_BEFORE_IF_NOT_MEMBER(type, *list, elem, comparator, previous, next, *member);\ return(*member==NULL);\ }\ void sglib_##type##_concat(type **first, type *second) {\ SGLIB_DL_LIST_CONCAT(type, *first, second, previous, next);\ }\ void sglib_##type##_delete(type **list, type *elem) {\ SGLIB_DL_LIST_DELETE(type, *list, elem, previous, next);\ }\ int sglib_##type##_delete_if_member(type **list, type *elem, type **member) {\ SGLIB_DL_LIST_DELETE_IF_MEMBER(type, *list, elem, comparator, previous, next, *member);\ return(*member!=NULL);\ }\ int sglib_##type##_is_member(type *list, type *elem) {\ int result;\ SGLIB_DL_LIST_IS_MEMBER(type, list, elem, previous, next, result);\ return(result);\ }\ type *sglib_##type##_find_member(type *list, type *elem) {\ type *result;\ SGLIB_DL_LIST_FIND_MEMBER(type, list, elem, comparator, previous, next, result);\ return(result);\ }\ type *sglib_##type##_get_first(type *list) {\ type *result;\ SGLIB_DL_LIST_GET_FIRST(type, list, previous, next, result);\ return(result);\ }\ type *sglib_##type##_get_last(type *list) {\ type *result;\ SGLIB_DL_LIST_GET_LAST(type, list, previous, next, result);\ return(result);\ }\ void sglib_##type##_sort(type **list) {\ SGLIB_DL_LIST_SORT(type, *list, comparator, previous, next);\ }\ int sglib_##type##_len(type *list) {\ int res;\ SGLIB_DL_LIST_LEN(type, list, previous, next, res);\ return(res);\ }\ void sglib_##type##_reverse(type **list) {\ SGLIB_DL_LIST_REVERSE(type, *list, previous, next);\ }\ \ type *sglib_##type##_it_init_on_equal(struct sglib_##type##_iterator *it, type *list, int (*subcomparator)(type *, type *), type *equalto) {\ it->subcomparator = subcomparator;\ it->equalto = equalto;\ it->prevelem = list;\ it->nextelem = list;\ if (list != NULL) it->nextelem = list->next;\ return(sglib_##type##_it_next(it));\ }\ type *sglib_##type##_it_init(struct sglib_##type##_iterator *it, type *list) {\ return(sglib_##type##_it_init_on_equal(it, list, NULL, NULL));\ }\ type *sglib_##type##_it_current(struct sglib_##type##_iterator *it) {\ return(it->currentelem);\ }\ type *sglib_##type##_it_next(struct sglib_##type##_iterator *it) {\ type *ce, *eq;\ int (*scp)(type *, type *);\ ce = it->prevelem;\ it->prevelem = NULL;\ if (it->subcomparator != NULL) {\ eq = it->equalto;\ scp = it->subcomparator;\ while (ce!=NULL && scp(eq, ce)!=0) ce = ce->previous;\ }\ if (ce != NULL) {\ it->prevelem = ce->previous;\ } else {\ ce = it->nextelem;\ it->nextelem = NULL;\ if (it->subcomparator != NULL) {\ eq = it->equalto;\ scp = it->subcomparator;\ while (ce!=NULL && scp(ce, eq)!=0) ce = ce->next;\ }\ if (ce != NULL) it->nextelem = ce->next;\ }\ it->currentelem = ce;\ return(ce);\ } /* --------------------------------- red-black trees (level 1) -------------------------------- */ /* This implementation requires pointers to left and right sons (no parent pointer is needed) and one bit of additional information storing the color of the node. The implementation follows discrepancy fixing rules from: http://www.cis.ohio-state.edu/~gurari/course/cis680/cis680Ch11.html */ #define SGLIB___RBTREE_FIX_INSERTION_DISCREPANCY(type, tree, leftt, rightt, bits, RED, BLACK) {\ type *t, *tl, *a, *b, *c, *ar, *bl, *br, *cl, *cr;\ (void)(bl);\ (void)(ar);\ t = *tree;\ tl = t->leftt;\ if (t->rightt!=NULL && SGLIB___GET_VALUE(t->rightt->bits)==RED) {\ if (SGLIB___GET_VALUE(tl->bits)==RED) {\ if ((tl->leftt!=NULL && SGLIB___GET_VALUE(tl->leftt->bits)==RED)\ || (tl->rightt!=NULL && SGLIB___GET_VALUE(tl->rightt->bits)==RED)) {\ SGLIB___SET_VALUE(t->leftt->bits,BLACK);\ SGLIB___SET_VALUE(t->rightt->bits,BLACK);\ SGLIB___SET_VALUE(t->bits,RED);\ }\ }\ } else {\ if (SGLIB___GET_VALUE(tl->bits)==RED) {\ if (tl->leftt!=NULL && SGLIB___GET_VALUE(tl->leftt->bits)==RED) {\ a = t; b = tl; c = tl->leftt;\ br = b->rightt;\ a->leftt = br;\ b->leftt = c; b->rightt = a;\ SGLIB___SET_VALUE(a->bits,RED);\ SGLIB___SET_VALUE(b->bits,BLACK);\ *tree = b;\ } else if (tl->rightt!=NULL && SGLIB___GET_VALUE(tl->rightt->bits)==RED) {\ a = t; b = tl; ar=a->rightt;\ bl=b->leftt; c=b->rightt;\ cl=c->leftt; cr=c->rightt;\ b->rightt = cl;\ a->leftt = cr;\ c->leftt = b;\ c->rightt = a;\ SGLIB___SET_VALUE(c->bits,BLACK);\ SGLIB___SET_VALUE(a->bits,RED);\ *tree = c;\ }\ }\ }\ } #define SGLIB___RBTREE_FIX_DELETION_DISCREPANCY(type, tree, leftt, rightt, bits, RED, BLACK, res) {\ type *t, *a, *b, *c, *d, *ar, *bl, *br, *cl, *cr, *dl, *dr;\ (void)(ar);\ t = a = *tree;\ assert(t!=NULL);\ ar = a->rightt;\ b = t->leftt;\ if (b==NULL) {\ assert(SGLIB___GET_VALUE(t->bits)==RED);\ SGLIB___SET_VALUE(t->bits,BLACK);\ res = 0;\ } else {\ bl = b->leftt;\ br = b->rightt;\ if (SGLIB___GET_VALUE(b->bits)==RED) {\ if (br==NULL) {\ *tree = b;\ SGLIB___SET_VALUE(b->bits,BLACK);\ b->rightt = a;\ a->leftt = br;\ res = 0;\ } else {\ c = br;\ assert(c!=NULL && SGLIB___GET_VALUE(c->bits)==BLACK);\ cl = c->leftt;\ cr = c->rightt;\ if ((cl==NULL||SGLIB___GET_VALUE(cl->bits)==BLACK) && (cr==NULL||SGLIB___GET_VALUE(cr->bits)==BLACK)) {\ *tree = b;\ b->rightt = a;\ SGLIB___SET_VALUE(b->bits,BLACK);\ a->leftt = c;\ SGLIB___SET_VALUE(c->bits,RED);\ res = 0;\ } else if (cl!=NULL && SGLIB___GET_VALUE(cl->bits)==RED) {\ if (cr!=NULL && SGLIB___GET_VALUE(cr->bits)==RED) {\ d = cr;\ dl = d->leftt;\ dr = d->rightt;\ *tree = d;\ SGLIB___SET_VALUE(d->bits,BLACK);\ d->leftt = b;\ c->rightt = dl;\ d->rightt = a;\ a->leftt = dr;\ res = 0;\ } else {\ *tree = c;\ c->leftt = b;\ c->rightt = a;\ b->leftt = bl;\ b->rightt = cl;\ a->leftt = cr;\ SGLIB___SET_VALUE(cl->bits,BLACK);\ res = 0;\ }\ } else if (cr!=NULL && SGLIB___GET_VALUE(cr->bits)==RED) {\ assert(cl==NULL || SGLIB___GET_VALUE(cl->bits)==BLACK);\ d = cr;\ dl = d->leftt;\ dr = d->rightt;\ *tree = d;\ SGLIB___SET_VALUE(d->bits,BLACK);\ d->leftt = b;\ c->rightt = dl;\ d->rightt = a;\ a->leftt = dr;\ res = 0;\ } else {\ assert(0);\ res = 0;\ }\ }\ } else {\ if ((bl==NULL || SGLIB___GET_VALUE(bl->bits)==BLACK) && (br==NULL || SGLIB___GET_VALUE(br->bits)==BLACK)) {\ res = (SGLIB___GET_VALUE(a->bits)==BLACK);\ SGLIB___SET_VALUE(a->bits,BLACK);\ SGLIB___SET_VALUE(b->bits,RED);\ } else if (bl!=NULL && SGLIB___GET_VALUE(bl->bits)==RED) {\ if (br==NULL || SGLIB___GET_VALUE(br->bits)==BLACK) {\ *tree = b;\ SGLIB___SET_VALUE(b->bits,SGLIB___GET_VALUE(a->bits));\ SGLIB___SET_VALUE(a->bits,BLACK);\ b->rightt = a;\ a->leftt = br;\ SGLIB___SET_VALUE(bl->bits,BLACK);\ res = 0;\ } else {\ assert(bl!=NULL);\ assert(br!=NULL);\ assert(SGLIB___GET_VALUE(bl->bits)==RED);\ assert(SGLIB___GET_VALUE(br->bits)==RED);\ c = br;\ cl = c->leftt;\ cr = c->rightt;\ *tree = c;\ SGLIB___SET_VALUE(c->bits,SGLIB___GET_VALUE(a->bits));\ SGLIB___SET_VALUE(a->bits,BLACK);\ c->leftt = b;\ c->rightt = a;\ b->rightt = cl;\ a->leftt = cr;\ res = 0;\ }\ } else {\ assert(br!=NULL && SGLIB___GET_VALUE(br->bits)==RED);\ c = br;\ cl = c->leftt;\ cr = c->rightt;\ *tree = c;\ SGLIB___SET_VALUE(c->bits,SGLIB___GET_VALUE(a->bits));\ SGLIB___SET_VALUE(a->bits,BLACK);\ c->leftt = b;\ c->rightt = a;\ b->rightt = cl;\ a->leftt = cr;\ res = 0;\ }\ }\ }\ } #define SGLIB_DEFINE_RBTREE_FUNCTIONS_GENERAL(type, left, right, bits, comparator, RED, BLACK) \ static void sglib___##type##_fix_left_insertion_discrepancy(type **tree) {\ SGLIB___RBTREE_FIX_INSERTION_DISCREPANCY(type, tree, left, right, bits, RED, BLACK);\ }\ \ static void sglib___##type##_fix_right_insertion_discrepancy(type **tree) {\ SGLIB___RBTREE_FIX_INSERTION_DISCREPANCY(type, tree, right, left, bits, RED, BLACK);\ }\ \ static int sglib___##type##_fix_left_deletion_discrepancy(type **tree) {\ int res;\ SGLIB___RBTREE_FIX_DELETION_DISCREPANCY(type, tree, right, left, bits, RED, BLACK, res);\ return(res);\ }\ \ static int sglib___##type##_fix_right_deletion_discrepancy(type **tree) {\ int res;\ SGLIB___RBTREE_FIX_DELETION_DISCREPANCY(type, tree, left, right, bits, RED, BLACK, res);\ return(res);\ }\ \ static void sglib___##type##_add_recursive(type **tree, type *elem) {\ int cmp;\ type *t;\ t = *tree;\ if (t == NULL) {\ SGLIB___SET_VALUE(elem->bits,RED);\ *tree =elem;\ } else {\ cmp = comparator(elem, t);\ if (cmp < 0 || (cmp==0 && elemleft, elem);\ if (SGLIB___GET_VALUE(t->bits)==BLACK) sglib___##type##_fix_left_insertion_discrepancy(tree);\ } else {\ sglib___##type##_add_recursive(&t->right, elem);\ if (SGLIB___GET_VALUE(t->bits)==BLACK) sglib___##type##_fix_right_insertion_discrepancy(tree);\ }\ }\ }\ \ static int sglib___##type##_delete_rightmost_leaf(type **tree, type **theLeaf) {\ type *t;\ int res, deepDecreased;\ t = *tree;\ res = 0;\ assert(t!=NULL);\ if (t->right == NULL) {\ *theLeaf = t;\ if (t->left!=NULL) {\ if (SGLIB___GET_VALUE(t->bits)==BLACK && SGLIB___GET_VALUE(t->left->bits)==BLACK) res = 1;\ SGLIB___SET_VALUE(t->left->bits,BLACK);\ *tree = t->left;\ } else {\ *tree = NULL;\ res = (SGLIB___GET_VALUE(t->bits)==BLACK);\ }\ } else {\ deepDecreased = sglib___##type##_delete_rightmost_leaf(&t->right, theLeaf);\ if (deepDecreased) res = sglib___##type##_fix_right_deletion_discrepancy(tree);\ }\ return(res);\ }\ \ int sglib___##type##_delete_recursive(type **tree, type *elem) {\ type *t, *theLeaf;\ int cmp, res, deepDecreased;\ t = *tree;\ res = 0;\ if (t==NULL) {\ assert(0 && "The element to delete not found in the tree, use 'delete_if_member'"!=NULL);\ } else {\ cmp = comparator(elem, t);\ if (cmp < 0 || (cmp==0 && elemleft, elem);\ if (deepDecreased) {\ res = sglib___##type##_fix_left_deletion_discrepancy(tree);\ }\ } else if (cmp > 0 || (cmp==0 && elem>t)) {\ deepDecreased = sglib___##type##_delete_recursive(&t->right, elem);\ if (deepDecreased) {\ res = sglib___##type##_fix_right_deletion_discrepancy(tree);\ }\ } else {\ assert(elem==t && "Deleting an element which is non member of the tree, use 'delete_if_member'"!=NULL);\ if (t->left == NULL) {\ if (t->right == NULL) {\ /* a leaf, delete, it; */\ *tree = NULL;\ res = (SGLIB___GET_VALUE(t->bits)==BLACK);\ } else {\ if (SGLIB___GET_VALUE(t->bits)==0 && SGLIB___GET_VALUE(t->right->bits)==0) res = 1;\ SGLIB___SET_VALUE(t->right->bits,BLACK);\ *tree = t->right;\ }\ } else {\ /* propagate deletion until righmost leaf of left subtree */\ deepDecreased = sglib___##type##_delete_rightmost_leaf(&t->left, &theLeaf);\ theLeaf->left = t->left;\ theLeaf->right = t->right;\ SGLIB___SET_VALUE(theLeaf->bits,SGLIB___GET_VALUE(t->bits));\ *tree = theLeaf;\ if (deepDecreased) res = sglib___##type##_fix_left_deletion_discrepancy(tree);\ }\ }\ }\ return(res);\ }\ \ void sglib_##type##_add(type **tree, type *elem) {\ elem->left = elem->right = NULL;\ sglib___##type##_add_recursive(tree, elem);\ SGLIB___SET_VALUE((*tree)->bits,BLACK);\ }\ \ void sglib_##type##_delete(type **tree, type *elem) {\ sglib___##type##_delete_recursive(tree, elem);\ if (*tree!=NULL) SGLIB___SET_VALUE((*tree)->bits,BLACK);\ }\ \ type *sglib_##type##_find_member(type *t, type *elem) {\ type *res;\ SGLIB___BIN_TREE_FIND_MEMBER(type, t, elem, left, right, comparator, res);\ return(res);\ }\ \ int sglib_##type##_is_member(type *t, type *elem) {\ int cmp;\ while (t!=NULL) {\ cmp = comparator(elem, t);\ if (cmp < 0 || (cmp==0 && elemleft;\ } else if (cmp > 0 || (cmp==0 && elem>t)) {\ t = t->right;\ } else {\ assert(t == elem);\ return(1);\ }\ }\ return(0);\ }\ \ int sglib_##type##_delete_if_member(type **tree, type *elem, type **memb) {\ if ((*memb=sglib_##type##_find_member(*tree, elem))!=NULL) {\ sglib_##type##_delete(tree, *memb);\ return(1);\ } else {\ return(0);\ }\ }\ int sglib_##type##_add_if_not_member(type **tree, type *elem, type **memb) {\ if ((*memb=sglib_##type##_find_member(*tree, elem))==NULL) {\ sglib_##type##_add(tree, elem);\ return(1);\ } else {\ return(0);\ }\ }\ int sglib_##type##_len(type *t) {\ int n = 0;\ SGLIB_BIN_TREE_MAP_ON_ELEMENTS(type, t, e, left, right, n++);\ return(n);\ }\ \ void sglib__##type##_it_compute_current_elem(struct sglib_##type##_iterator *it) {\ int i,j;\ type *s, *eqt;\ int (*subcomparator)(type *, type *);\ eqt = it->equalto;\ subcomparator = it->subcomparator;\ it->currentelem = NULL;\ while(it->pathi > 0 && it->currentelem==NULL) {\ i = it->pathi-1;\ if (i >= 0) {\ if (it->pass[i] >= 2) {\ /* goto up */\ it->pathi --;\ } else {\ if (it->pass[i] == 0) {\ /* goto left */\ s = it->path[i]->left;\ } else {\ /* goto right */\ s = it->path[i]->right;\ }\ if (eqt != NULL) {\ if (subcomparator == NULL) {\ SGLIB___BIN_TREE_FIND_MEMBER(type, s, eqt, left, right, comparator, s);\ } else {\ SGLIB___BIN_TREE_FIND_MEMBER(type, s, eqt, left, right, subcomparator, s);\ }\ }\ if (s != NULL) {\ j = i+1;\ it->path[j] = s;\ it->pass[j] = 0;\ it->pathi ++;\ }\ it->pass[i] ++;\ }\ }\ if (it->pathi>0 && it->order == it->pass[it->pathi-1]) {\ it->currentelem = it->path[it->pathi-1];\ }\ }\ }\ type *sglib__##type##_it_init(struct sglib_##type##_iterator *it, type *tree, int order, int (*subcomparator)(type *, type *), type *equalto) {\ type *t;\ assert(it!=NULL);\ it->order = order;\ it->equalto = equalto;\ it->subcomparator = subcomparator;\ if (equalto == NULL) {\ t = tree;\ } else {\ if (subcomparator == NULL) {\ SGLIB___BIN_TREE_FIND_MEMBER(type, tree, equalto, left, right, comparator, t);\ } else {\ SGLIB___BIN_TREE_FIND_MEMBER(type, tree, equalto, left, right, subcomparator, t);\ }\ }\ if (t == NULL) {\ it->pathi = 0;\ it->currentelem = NULL;\ } else {\ it->pathi = 1;\ it->pass[0] = 0;\ it->path[0] = t;\ if (order == 0) {\ it->currentelem = t;\ } else {\ sglib__##type##_it_compute_current_elem(it);\ }\ }\ return(it->currentelem);\ }\ type *sglib_##type##_it_init(struct sglib_##type##_iterator *it, type *tree) {\ return(sglib__##type##_it_init(it, tree, 2, NULL, NULL));\ }\ type *sglib_##type##_it_init_preorder(struct sglib_##type##_iterator *it, type *tree) {\ return(sglib__##type##_it_init(it, tree, 0, NULL, NULL));\ }\ type *sglib_##type##_it_init_inorder(struct sglib_##type##_iterator *it, type *tree) {\ return(sglib__##type##_it_init(it, tree, 1, NULL, NULL));\ }\ type *sglib_##type##_it_init_postorder(struct sglib_##type##_iterator *it, type *tree) {\ return(sglib__##type##_it_init(it, tree, 2, NULL, NULL));\ }\ type *sglib_##type##_it_init_on_equal(struct sglib_##type##_iterator *it, type *tree, int (*subcomparator)(type *, type *), type *equalto) {\ return(sglib__##type##_it_init(it, tree, 1, subcomparator, equalto));\ }\ type *sglib_##type##_it_current(struct sglib_##type##_iterator *it) {\ return(it->currentelem);\ }\ type *sglib_##type##_it_next(struct sglib_##type##_iterator *it) {\ sglib__##type##_it_compute_current_elem(it);\ return(it->currentelem);\ }\ \ static void sglib___##type##_consistency_check_recursive(type *t, int *pathdeep, int cdeep) {\ if (t==NULL) {\ if (*pathdeep < 0) *pathdeep = cdeep;\ else assert(*pathdeep == cdeep);\ } else {\ if (t->left!=NULL) assert(comparator(t->left, t) <= 0);\ if (t->right!=NULL) assert(comparator(t, t->right) <= 0);\ if (SGLIB___GET_VALUE(t->bits) == RED) {\ assert(t->left == NULL || SGLIB___GET_VALUE(t->left->bits)==BLACK);\ assert(t->right == NULL || SGLIB___GET_VALUE(t->right->bits)==BLACK);\ sglib___##type##_consistency_check_recursive(t->left, pathdeep, cdeep);\ sglib___##type##_consistency_check_recursive(t->right, pathdeep, cdeep);\ } else {\ sglib___##type##_consistency_check_recursive(t->left, pathdeep, cdeep+1);\ sglib___##type##_consistency_check_recursive(t->right, pathdeep, cdeep+1);\ }\ }\ }\ \ void sglib___##type##_consistency_check(type *t) {\ int pathDeep;\ assert(t==NULL || SGLIB___GET_VALUE(t->bits) == BLACK);\ pathDeep = -1;\ sglib___##type##_consistency_check_recursive(t, &pathDeep, 0);\ } \ void sglib___##type##_consistency_check(type *t) /* consume the semicolon */ #define SGLIB_DEFINE_RBTREE_PROTOTYPES(type, left, right, colorbit, comparator) \ struct sglib_##type##_iterator {\ type *currentelem;\ char pass[SGLIB_MAX_TREE_DEEP];\ type *path[SGLIB_MAX_TREE_DEEP];\ short int pathi;\ short int order;\ type *equalto;\ int (*subcomparator)(type *, type *);\ };\ extern void sglib___##type##_consistency_check(type *t);\ extern void sglib_##type##_add(type **tree, type *elem);\ extern int sglib_##type##_add_if_not_member(type **tree, type *elem, type **memb);\ extern void sglib_##type##_delete(type **tree, type *elem);\ extern int sglib_##type##_delete_if_member(type **tree, type *elem, type **memb);\ extern int sglib_##type##_is_member(type *t, type *elem);\ extern type *sglib_##type##_find_member(type *t, type *elem);\ extern int sglib_##type##_len(type *t);\ extern type *sglib_##type##_it_init(struct sglib_##type##_iterator *it, type *tree);\ extern type *sglib_##type##_it_init_preorder(struct sglib_##type##_iterator *it, type *tree);\ extern type *sglib_##type##_it_init_inorder(struct sglib_##type##_iterator *it, type *tree);\ extern type *sglib_##type##_it_init_postorder(struct sglib_##type##_iterator *it, type *tree);\ extern type *sglib_##type##_it_init_on_equal(struct sglib_##type##_iterator *it, type *tree, int (*subcomparator)(type *, type *), type *equalto);\ extern type *sglib_##type##_it_current(struct sglib_##type##_iterator *it);\ extern type *sglib_##type##_it_next(struct sglib_##type##_iterator *it) #define SGLIB_DEFINE_RBTREE_FUNCTIONS(type, left, right, colorbit, comparator) \ SGLIB_DEFINE_RBTREE_FUNCTIONS_GENERAL(type, left, right, colorbit, comparator, 1, 0) /* ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- */ /* - SUPPLEMENTARY DEFINITIONS - */ /* ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- */ #define SGLIB___GET_VALUE(x) (x) #define SGLIB___SET_VALUE(x, value) {(x) = (value);} #define SGLIB_ARRAY_ELEMENTS_EXCHANGER(type, a, i, j) {type _sgl_aee_tmp_; _sgl_aee_tmp_=(a)[(i)]; (a)[(i)]=(a)[(j)]; (a)[(j)]= _sgl_aee_tmp_;} #define SGLIB_SAFE_NUMERIC_COMPARATOR(x, y) (((x)>(y)?1:((x)<(y)?-1:0))) #define SGLIB_SAFE_REVERSE_NUMERIC_COMPARATOR(x, y) (((x)>(y)?-1:((x)<(y)?1:0))) #define SGLIB_FAST_NUMERIC_COMPARATOR(x, y) ((int)((x) - (y))) #define SGLIB_FAST_REVERSE_NUMERIC_COMPARATOR(x, y) ((int)((y) - (x))) #define SGLIB_NUMERIC_COMPARATOR(x, y) SGLIB_SAFE_NUMERIC_COMPARATOR(x, y) #define SGLIB_REVERSE_NUMERIC_COMPARATOR(x, y) SGLIB_SAFE_REVERSE_NUMERIC_COMPARATOR(x, y) #ifndef SGLIB_MAX_TREE_DEEP #define SGLIB_MAX_TREE_DEEP 128 #endif #ifndef SGLIB_HASH_TAB_SHIFT_CONSTANT #define SGLIB_HASH_TAB_SHIFT_CONSTANT 16381 /* should be a prime */ /* #define SGLIB_HASH_TAB_SHIFT_CONSTANT 536870912*/ /* for large tables :) */ #endif #endif /* _SGLIB__h_ */ zsv-1.3.0/app/external/simdutf/000077500000000000000000000000001511312357700164175ustar00rootroot00000000000000zsv-1.3.0/app/external/simdutf/simdutf.cpp000066400000000000000000131550701511312357700206120ustar00rootroot00000000000000/* auto-generated on 2025-11-21 22:27:43 -0500. Do not edit! */ /* begin file src/simdutf.cpp */ #include "simdutf.h" #if SIMDUTF_FEATURE_BASE64 // We include base64_tables once. /* begin file src/tables/base64_tables.h */ #ifndef SIMDUTF_BASE64_TABLES_H #define SIMDUTF_BASE64_TABLES_H #include #include namespace simdutf { namespace { namespace tables { namespace base64 { namespace base64_default { const char e0[256] = { 'A', 'A', 'A', 'A', 'B', 'B', 'B', 'B', 'C', 'C', 'C', 'C', 'D', 'D', 'D', 'D', 'E', 'E', 'E', 'E', 'F', 'F', 'F', 'F', 'G', 'G', 'G', 'G', 'H', 'H', 'H', 'H', 'I', 'I', 'I', 'I', 'J', 'J', 'J', 'J', 'K', 'K', 'K', 'K', 'L', 'L', 'L', 'L', 'M', 'M', 'M', 'M', 'N', 'N', 'N', 'N', 'O', 'O', 'O', 'O', 'P', 'P', 'P', 'P', 'Q', 'Q', 'Q', 'Q', 'R', 'R', 'R', 'R', 'S', 'S', 'S', 'S', 'T', 'T', 'T', 'T', 'U', 'U', 'U', 'U', 'V', 'V', 'V', 'V', 'W', 'W', 'W', 'W', 'X', 'X', 'X', 'X', 'Y', 'Y', 'Y', 'Y', 'Z', 'Z', 'Z', 'Z', 'a', 'a', 'a', 'a', 'b', 'b', 'b', 'b', 'c', 'c', 'c', 'c', 'd', 'd', 'd', 'd', 'e', 'e', 'e', 'e', 'f', 'f', 'f', 'f', 'g', 'g', 'g', 'g', 'h', 'h', 'h', 'h', 'i', 'i', 'i', 'i', 'j', 'j', 'j', 'j', 'k', 'k', 'k', 'k', 'l', 'l', 'l', 'l', 'm', 'm', 'm', 'm', 'n', 'n', 'n', 'n', 'o', 'o', 'o', 'o', 'p', 'p', 'p', 'p', 'q', 'q', 'q', 'q', 'r', 'r', 'r', 'r', 's', 's', 's', 's', 't', 't', 't', 't', 'u', 'u', 'u', 'u', 'v', 'v', 'v', 'v', 'w', 'w', 'w', 'w', 'x', 'x', 'x', 'x', 'y', 'y', 'y', 'y', 'z', 'z', 'z', 'z', '0', '0', '0', '0', '1', '1', '1', '1', '2', '2', '2', '2', '3', '3', '3', '3', '4', '4', '4', '4', '5', '5', '5', '5', '6', '6', '6', '6', '7', '7', '7', '7', '8', '8', '8', '8', '9', '9', '9', '9', '+', '+', '+', '+', '/', '/', '/', '/'}; const char e1[256] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'}; const char e2[256] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'}; const uint32_t d0[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x000000f8, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x000000fc, 0x000000d0, 0x000000d4, 0x000000d8, 0x000000dc, 0x000000e0, 0x000000e4, 0x000000e8, 0x000000ec, 0x000000f0, 0x000000f4, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00000004, 0x00000008, 0x0000000c, 0x00000010, 0x00000014, 0x00000018, 0x0000001c, 0x00000020, 0x00000024, 0x00000028, 0x0000002c, 0x00000030, 0x00000034, 0x00000038, 0x0000003c, 0x00000040, 0x00000044, 0x00000048, 0x0000004c, 0x00000050, 0x00000054, 0x00000058, 0x0000005c, 0x00000060, 0x00000064, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000068, 0x0000006c, 0x00000070, 0x00000074, 0x00000078, 0x0000007c, 0x00000080, 0x00000084, 0x00000088, 0x0000008c, 0x00000090, 0x00000094, 0x00000098, 0x0000009c, 0x000000a0, 0x000000a4, 0x000000a8, 0x000000ac, 0x000000b0, 0x000000b4, 0x000000b8, 0x000000bc, 0x000000c0, 0x000000c4, 0x000000c8, 0x000000cc, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; const uint32_t d1[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x0000e003, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x0000f003, 0x00004003, 0x00005003, 0x00006003, 0x00007003, 0x00008003, 0x00009003, 0x0000a003, 0x0000b003, 0x0000c003, 0x0000d003, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00001000, 0x00002000, 0x00003000, 0x00004000, 0x00005000, 0x00006000, 0x00007000, 0x00008000, 0x00009000, 0x0000a000, 0x0000b000, 0x0000c000, 0x0000d000, 0x0000e000, 0x0000f000, 0x00000001, 0x00001001, 0x00002001, 0x00003001, 0x00004001, 0x00005001, 0x00006001, 0x00007001, 0x00008001, 0x00009001, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x0000a001, 0x0000b001, 0x0000c001, 0x0000d001, 0x0000e001, 0x0000f001, 0x00000002, 0x00001002, 0x00002002, 0x00003002, 0x00004002, 0x00005002, 0x00006002, 0x00007002, 0x00008002, 0x00009002, 0x0000a002, 0x0000b002, 0x0000c002, 0x0000d002, 0x0000e002, 0x0000f002, 0x00000003, 0x00001003, 0x00002003, 0x00003003, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; const uint32_t d2[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00800f00, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00c00f00, 0x00000d00, 0x00400d00, 0x00800d00, 0x00c00d00, 0x00000e00, 0x00400e00, 0x00800e00, 0x00c00e00, 0x00000f00, 0x00400f00, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00400000, 0x00800000, 0x00c00000, 0x00000100, 0x00400100, 0x00800100, 0x00c00100, 0x00000200, 0x00400200, 0x00800200, 0x00c00200, 0x00000300, 0x00400300, 0x00800300, 0x00c00300, 0x00000400, 0x00400400, 0x00800400, 0x00c00400, 0x00000500, 0x00400500, 0x00800500, 0x00c00500, 0x00000600, 0x00400600, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00800600, 0x00c00600, 0x00000700, 0x00400700, 0x00800700, 0x00c00700, 0x00000800, 0x00400800, 0x00800800, 0x00c00800, 0x00000900, 0x00400900, 0x00800900, 0x00c00900, 0x00000a00, 0x00400a00, 0x00800a00, 0x00c00a00, 0x00000b00, 0x00400b00, 0x00800b00, 0x00c00b00, 0x00000c00, 0x00400c00, 0x00800c00, 0x00c00c00, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; const uint32_t d3[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x003e0000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x003f0000, 0x00340000, 0x00350000, 0x00360000, 0x00370000, 0x00380000, 0x00390000, 0x003a0000, 0x003b0000, 0x003c0000, 0x003d0000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00010000, 0x00020000, 0x00030000, 0x00040000, 0x00050000, 0x00060000, 0x00070000, 0x00080000, 0x00090000, 0x000a0000, 0x000b0000, 0x000c0000, 0x000d0000, 0x000e0000, 0x000f0000, 0x00100000, 0x00110000, 0x00120000, 0x00130000, 0x00140000, 0x00150000, 0x00160000, 0x00170000, 0x00180000, 0x00190000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x001a0000, 0x001b0000, 0x001c0000, 0x001d0000, 0x001e0000, 0x001f0000, 0x00200000, 0x00210000, 0x00220000, 0x00230000, 0x00240000, 0x00250000, 0x00260000, 0x00270000, 0x00280000, 0x00290000, 0x002a0000, 0x002b0000, 0x002c0000, 0x002d0000, 0x002e0000, 0x002f0000, 0x00300000, 0x00310000, 0x00320000, 0x00330000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; } // namespace base64_default namespace base64_url { const char e0[256] = { 'A', 'A', 'A', 'A', 'B', 'B', 'B', 'B', 'C', 'C', 'C', 'C', 'D', 'D', 'D', 'D', 'E', 'E', 'E', 'E', 'F', 'F', 'F', 'F', 'G', 'G', 'G', 'G', 'H', 'H', 'H', 'H', 'I', 'I', 'I', 'I', 'J', 'J', 'J', 'J', 'K', 'K', 'K', 'K', 'L', 'L', 'L', 'L', 'M', 'M', 'M', 'M', 'N', 'N', 'N', 'N', 'O', 'O', 'O', 'O', 'P', 'P', 'P', 'P', 'Q', 'Q', 'Q', 'Q', 'R', 'R', 'R', 'R', 'S', 'S', 'S', 'S', 'T', 'T', 'T', 'T', 'U', 'U', 'U', 'U', 'V', 'V', 'V', 'V', 'W', 'W', 'W', 'W', 'X', 'X', 'X', 'X', 'Y', 'Y', 'Y', 'Y', 'Z', 'Z', 'Z', 'Z', 'a', 'a', 'a', 'a', 'b', 'b', 'b', 'b', 'c', 'c', 'c', 'c', 'd', 'd', 'd', 'd', 'e', 'e', 'e', 'e', 'f', 'f', 'f', 'f', 'g', 'g', 'g', 'g', 'h', 'h', 'h', 'h', 'i', 'i', 'i', 'i', 'j', 'j', 'j', 'j', 'k', 'k', 'k', 'k', 'l', 'l', 'l', 'l', 'm', 'm', 'm', 'm', 'n', 'n', 'n', 'n', 'o', 'o', 'o', 'o', 'p', 'p', 'p', 'p', 'q', 'q', 'q', 'q', 'r', 'r', 'r', 'r', 's', 's', 's', 's', 't', 't', 't', 't', 'u', 'u', 'u', 'u', 'v', 'v', 'v', 'v', 'w', 'w', 'w', 'w', 'x', 'x', 'x', 'x', 'y', 'y', 'y', 'y', 'z', 'z', 'z', 'z', '0', '0', '0', '0', '1', '1', '1', '1', '2', '2', '2', '2', '3', '3', '3', '3', '4', '4', '4', '4', '5', '5', '5', '5', '6', '6', '6', '6', '7', '7', '7', '7', '8', '8', '8', '8', '9', '9', '9', '9', '-', '-', '-', '-', '_', '_', '_', '_'}; const char e1[256] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_'}; const char e2[256] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', '_'}; const uint32_t d0[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x000000f8, 0x01ffffff, 0x01ffffff, 0x000000d0, 0x000000d4, 0x000000d8, 0x000000dc, 0x000000e0, 0x000000e4, 0x000000e8, 0x000000ec, 0x000000f0, 0x000000f4, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00000004, 0x00000008, 0x0000000c, 0x00000010, 0x00000014, 0x00000018, 0x0000001c, 0x00000020, 0x00000024, 0x00000028, 0x0000002c, 0x00000030, 0x00000034, 0x00000038, 0x0000003c, 0x00000040, 0x00000044, 0x00000048, 0x0000004c, 0x00000050, 0x00000054, 0x00000058, 0x0000005c, 0x00000060, 0x00000064, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x000000fc, 0x01ffffff, 0x00000068, 0x0000006c, 0x00000070, 0x00000074, 0x00000078, 0x0000007c, 0x00000080, 0x00000084, 0x00000088, 0x0000008c, 0x00000090, 0x00000094, 0x00000098, 0x0000009c, 0x000000a0, 0x000000a4, 0x000000a8, 0x000000ac, 0x000000b0, 0x000000b4, 0x000000b8, 0x000000bc, 0x000000c0, 0x000000c4, 0x000000c8, 0x000000cc, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; const uint32_t d1[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x0000e003, 0x01ffffff, 0x01ffffff, 0x00004003, 0x00005003, 0x00006003, 0x00007003, 0x00008003, 0x00009003, 0x0000a003, 0x0000b003, 0x0000c003, 0x0000d003, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00001000, 0x00002000, 0x00003000, 0x00004000, 0x00005000, 0x00006000, 0x00007000, 0x00008000, 0x00009000, 0x0000a000, 0x0000b000, 0x0000c000, 0x0000d000, 0x0000e000, 0x0000f000, 0x00000001, 0x00001001, 0x00002001, 0x00003001, 0x00004001, 0x00005001, 0x00006001, 0x00007001, 0x00008001, 0x00009001, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x0000f003, 0x01ffffff, 0x0000a001, 0x0000b001, 0x0000c001, 0x0000d001, 0x0000e001, 0x0000f001, 0x00000002, 0x00001002, 0x00002002, 0x00003002, 0x00004002, 0x00005002, 0x00006002, 0x00007002, 0x00008002, 0x00009002, 0x0000a002, 0x0000b002, 0x0000c002, 0x0000d002, 0x0000e002, 0x0000f002, 0x00000003, 0x00001003, 0x00002003, 0x00003003, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; const uint32_t d2[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00800f00, 0x01ffffff, 0x01ffffff, 0x00000d00, 0x00400d00, 0x00800d00, 0x00c00d00, 0x00000e00, 0x00400e00, 0x00800e00, 0x00c00e00, 0x00000f00, 0x00400f00, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00400000, 0x00800000, 0x00c00000, 0x00000100, 0x00400100, 0x00800100, 0x00c00100, 0x00000200, 0x00400200, 0x00800200, 0x00c00200, 0x00000300, 0x00400300, 0x00800300, 0x00c00300, 0x00000400, 0x00400400, 0x00800400, 0x00c00400, 0x00000500, 0x00400500, 0x00800500, 0x00c00500, 0x00000600, 0x00400600, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00c00f00, 0x01ffffff, 0x00800600, 0x00c00600, 0x00000700, 0x00400700, 0x00800700, 0x00c00700, 0x00000800, 0x00400800, 0x00800800, 0x00c00800, 0x00000900, 0x00400900, 0x00800900, 0x00c00900, 0x00000a00, 0x00400a00, 0x00800a00, 0x00c00a00, 0x00000b00, 0x00400b00, 0x00800b00, 0x00c00b00, 0x00000c00, 0x00400c00, 0x00800c00, 0x00c00c00, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; const uint32_t d3[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x003e0000, 0x01ffffff, 0x01ffffff, 0x00340000, 0x00350000, 0x00360000, 0x00370000, 0x00380000, 0x00390000, 0x003a0000, 0x003b0000, 0x003c0000, 0x003d0000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00010000, 0x00020000, 0x00030000, 0x00040000, 0x00050000, 0x00060000, 0x00070000, 0x00080000, 0x00090000, 0x000a0000, 0x000b0000, 0x000c0000, 0x000d0000, 0x000e0000, 0x000f0000, 0x00100000, 0x00110000, 0x00120000, 0x00130000, 0x00140000, 0x00150000, 0x00160000, 0x00170000, 0x00180000, 0x00190000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x003f0000, 0x01ffffff, 0x001a0000, 0x001b0000, 0x001c0000, 0x001d0000, 0x001e0000, 0x001f0000, 0x00200000, 0x00210000, 0x00220000, 0x00230000, 0x00240000, 0x00250000, 0x00260000, 0x00270000, 0x00280000, 0x00290000, 0x002a0000, 0x002b0000, 0x002c0000, 0x002d0000, 0x002e0000, 0x002f0000, 0x00300000, 0x00310000, 0x00320000, 0x00330000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; } // namespace base64_url namespace base64_default_or_url { const uint32_t d0[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x000000f8, 0x01ffffff, 0x000000f8, 0x01ffffff, 0x000000fc, 0x000000d0, 0x000000d4, 0x000000d8, 0x000000dc, 0x000000e0, 0x000000e4, 0x000000e8, 0x000000ec, 0x000000f0, 0x000000f4, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00000004, 0x00000008, 0x0000000c, 0x00000010, 0x00000014, 0x00000018, 0x0000001c, 0x00000020, 0x00000024, 0x00000028, 0x0000002c, 0x00000030, 0x00000034, 0x00000038, 0x0000003c, 0x00000040, 0x00000044, 0x00000048, 0x0000004c, 0x00000050, 0x00000054, 0x00000058, 0x0000005c, 0x00000060, 0x00000064, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x000000fc, 0x01ffffff, 0x00000068, 0x0000006c, 0x00000070, 0x00000074, 0x00000078, 0x0000007c, 0x00000080, 0x00000084, 0x00000088, 0x0000008c, 0x00000090, 0x00000094, 0x00000098, 0x0000009c, 0x000000a0, 0x000000a4, 0x000000a8, 0x000000ac, 0x000000b0, 0x000000b4, 0x000000b8, 0x000000bc, 0x000000c0, 0x000000c4, 0x000000c8, 0x000000cc, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; const uint32_t d1[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x0000e003, 0x01ffffff, 0x0000e003, 0x01ffffff, 0x0000f003, 0x00004003, 0x00005003, 0x00006003, 0x00007003, 0x00008003, 0x00009003, 0x0000a003, 0x0000b003, 0x0000c003, 0x0000d003, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00001000, 0x00002000, 0x00003000, 0x00004000, 0x00005000, 0x00006000, 0x00007000, 0x00008000, 0x00009000, 0x0000a000, 0x0000b000, 0x0000c000, 0x0000d000, 0x0000e000, 0x0000f000, 0x00000001, 0x00001001, 0x00002001, 0x00003001, 0x00004001, 0x00005001, 0x00006001, 0x00007001, 0x00008001, 0x00009001, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x0000f003, 0x01ffffff, 0x0000a001, 0x0000b001, 0x0000c001, 0x0000d001, 0x0000e001, 0x0000f001, 0x00000002, 0x00001002, 0x00002002, 0x00003002, 0x00004002, 0x00005002, 0x00006002, 0x00007002, 0x00008002, 0x00009002, 0x0000a002, 0x0000b002, 0x0000c002, 0x0000d002, 0x0000e002, 0x0000f002, 0x00000003, 0x00001003, 0x00002003, 0x00003003, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; const uint32_t d2[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00800f00, 0x01ffffff, 0x00800f00, 0x01ffffff, 0x00c00f00, 0x00000d00, 0x00400d00, 0x00800d00, 0x00c00d00, 0x00000e00, 0x00400e00, 0x00800e00, 0x00c00e00, 0x00000f00, 0x00400f00, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00400000, 0x00800000, 0x00c00000, 0x00000100, 0x00400100, 0x00800100, 0x00c00100, 0x00000200, 0x00400200, 0x00800200, 0x00c00200, 0x00000300, 0x00400300, 0x00800300, 0x00c00300, 0x00000400, 0x00400400, 0x00800400, 0x00c00400, 0x00000500, 0x00400500, 0x00800500, 0x00c00500, 0x00000600, 0x00400600, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00c00f00, 0x01ffffff, 0x00800600, 0x00c00600, 0x00000700, 0x00400700, 0x00800700, 0x00c00700, 0x00000800, 0x00400800, 0x00800800, 0x00c00800, 0x00000900, 0x00400900, 0x00800900, 0x00c00900, 0x00000a00, 0x00400a00, 0x00800a00, 0x00c00a00, 0x00000b00, 0x00400b00, 0x00800b00, 0x00c00b00, 0x00000c00, 0x00400c00, 0x00800c00, 0x00c00c00, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; const uint32_t d3[256] = { 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x003e0000, 0x01ffffff, 0x003e0000, 0x01ffffff, 0x003f0000, 0x00340000, 0x00350000, 0x00360000, 0x00370000, 0x00380000, 0x00390000, 0x003a0000, 0x003b0000, 0x003c0000, 0x003d0000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000, 0x00010000, 0x00020000, 0x00030000, 0x00040000, 0x00050000, 0x00060000, 0x00070000, 0x00080000, 0x00090000, 0x000a0000, 0x000b0000, 0x000c0000, 0x000d0000, 0x000e0000, 0x000f0000, 0x00100000, 0x00110000, 0x00120000, 0x00130000, 0x00140000, 0x00150000, 0x00160000, 0x00170000, 0x00180000, 0x00190000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x003f0000, 0x01ffffff, 0x001a0000, 0x001b0000, 0x001c0000, 0x001d0000, 0x001e0000, 0x001f0000, 0x00200000, 0x00210000, 0x00220000, 0x00230000, 0x00240000, 0x00250000, 0x00260000, 0x00270000, 0x00280000, 0x00290000, 0x002a0000, 0x002b0000, 0x002c0000, 0x002d0000, 0x002e0000, 0x002f0000, 0x00300000, 0x00310000, 0x00320000, 0x00330000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}; } // namespace base64_default_or_url const uint64_t thintable_epi8[256] = { 0x0706050403020100, 0x0007060504030201, 0x0007060504030200, 0x0000070605040302, 0x0007060504030100, 0x0000070605040301, 0x0000070605040300, 0x0000000706050403, 0x0007060504020100, 0x0000070605040201, 0x0000070605040200, 0x0000000706050402, 0x0000070605040100, 0x0000000706050401, 0x0000000706050400, 0x0000000007060504, 0x0007060503020100, 0x0000070605030201, 0x0000070605030200, 0x0000000706050302, 0x0000070605030100, 0x0000000706050301, 0x0000000706050300, 0x0000000007060503, 0x0000070605020100, 0x0000000706050201, 0x0000000706050200, 0x0000000007060502, 0x0000000706050100, 0x0000000007060501, 0x0000000007060500, 0x0000000000070605, 0x0007060403020100, 0x0000070604030201, 0x0000070604030200, 0x0000000706040302, 0x0000070604030100, 0x0000000706040301, 0x0000000706040300, 0x0000000007060403, 0x0000070604020100, 0x0000000706040201, 0x0000000706040200, 0x0000000007060402, 0x0000000706040100, 0x0000000007060401, 0x0000000007060400, 0x0000000000070604, 0x0000070603020100, 0x0000000706030201, 0x0000000706030200, 0x0000000007060302, 0x0000000706030100, 0x0000000007060301, 0x0000000007060300, 0x0000000000070603, 0x0000000706020100, 0x0000000007060201, 0x0000000007060200, 0x0000000000070602, 0x0000000007060100, 0x0000000000070601, 0x0000000000070600, 0x0000000000000706, 0x0007050403020100, 0x0000070504030201, 0x0000070504030200, 0x0000000705040302, 0x0000070504030100, 0x0000000705040301, 0x0000000705040300, 0x0000000007050403, 0x0000070504020100, 0x0000000705040201, 0x0000000705040200, 0x0000000007050402, 0x0000000705040100, 0x0000000007050401, 0x0000000007050400, 0x0000000000070504, 0x0000070503020100, 0x0000000705030201, 0x0000000705030200, 0x0000000007050302, 0x0000000705030100, 0x0000000007050301, 0x0000000007050300, 0x0000000000070503, 0x0000000705020100, 0x0000000007050201, 0x0000000007050200, 0x0000000000070502, 0x0000000007050100, 0x0000000000070501, 0x0000000000070500, 0x0000000000000705, 0x0000070403020100, 0x0000000704030201, 0x0000000704030200, 0x0000000007040302, 0x0000000704030100, 0x0000000007040301, 0x0000000007040300, 0x0000000000070403, 0x0000000704020100, 0x0000000007040201, 0x0000000007040200, 0x0000000000070402, 0x0000000007040100, 0x0000000000070401, 0x0000000000070400, 0x0000000000000704, 0x0000000703020100, 0x0000000007030201, 0x0000000007030200, 0x0000000000070302, 0x0000000007030100, 0x0000000000070301, 0x0000000000070300, 0x0000000000000703, 0x0000000007020100, 0x0000000000070201, 0x0000000000070200, 0x0000000000000702, 0x0000000000070100, 0x0000000000000701, 0x0000000000000700, 0x0000000000000007, 0x0006050403020100, 0x0000060504030201, 0x0000060504030200, 0x0000000605040302, 0x0000060504030100, 0x0000000605040301, 0x0000000605040300, 0x0000000006050403, 0x0000060504020100, 0x0000000605040201, 0x0000000605040200, 0x0000000006050402, 0x0000000605040100, 0x0000000006050401, 0x0000000006050400, 0x0000000000060504, 0x0000060503020100, 0x0000000605030201, 0x0000000605030200, 0x0000000006050302, 0x0000000605030100, 0x0000000006050301, 0x0000000006050300, 0x0000000000060503, 0x0000000605020100, 0x0000000006050201, 0x0000000006050200, 0x0000000000060502, 0x0000000006050100, 0x0000000000060501, 0x0000000000060500, 0x0000000000000605, 0x0000060403020100, 0x0000000604030201, 0x0000000604030200, 0x0000000006040302, 0x0000000604030100, 0x0000000006040301, 0x0000000006040300, 0x0000000000060403, 0x0000000604020100, 0x0000000006040201, 0x0000000006040200, 0x0000000000060402, 0x0000000006040100, 0x0000000000060401, 0x0000000000060400, 0x0000000000000604, 0x0000000603020100, 0x0000000006030201, 0x0000000006030200, 0x0000000000060302, 0x0000000006030100, 0x0000000000060301, 0x0000000000060300, 0x0000000000000603, 0x0000000006020100, 0x0000000000060201, 0x0000000000060200, 0x0000000000000602, 0x0000000000060100, 0x0000000000000601, 0x0000000000000600, 0x0000000000000006, 0x0000050403020100, 0x0000000504030201, 0x0000000504030200, 0x0000000005040302, 0x0000000504030100, 0x0000000005040301, 0x0000000005040300, 0x0000000000050403, 0x0000000504020100, 0x0000000005040201, 0x0000000005040200, 0x0000000000050402, 0x0000000005040100, 0x0000000000050401, 0x0000000000050400, 0x0000000000000504, 0x0000000503020100, 0x0000000005030201, 0x0000000005030200, 0x0000000000050302, 0x0000000005030100, 0x0000000000050301, 0x0000000000050300, 0x0000000000000503, 0x0000000005020100, 0x0000000000050201, 0x0000000000050200, 0x0000000000000502, 0x0000000000050100, 0x0000000000000501, 0x0000000000000500, 0x0000000000000005, 0x0000000403020100, 0x0000000004030201, 0x0000000004030200, 0x0000000000040302, 0x0000000004030100, 0x0000000000040301, 0x0000000000040300, 0x0000000000000403, 0x0000000004020100, 0x0000000000040201, 0x0000000000040200, 0x0000000000000402, 0x0000000000040100, 0x0000000000000401, 0x0000000000000400, 0x0000000000000004, 0x0000000003020100, 0x0000000000030201, 0x0000000000030200, 0x0000000000000302, 0x0000000000030100, 0x0000000000000301, 0x0000000000000300, 0x0000000000000003, 0x0000000000020100, 0x0000000000000201, 0x0000000000000200, 0x0000000000000002, 0x0000000000000100, 0x0000000000000001, 0x0000000000000000, 0x0000000000000000, }; const uint8_t pshufb_combine_table[272] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0xff, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0xff, 0xff, 0x00, 0x01, 0x02, 0x03, 0x04, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0xff, 0xff, 0xff, 0x00, 0x01, 0x02, 0x03, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0xff, 0xff, 0xff, 0xff, 0x00, 0x01, 0x02, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x01, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, }; const unsigned char BitsSetTable256mul2[256] = { 0, 2, 2, 4, 2, 4, 4, 6, 2, 4, 4, 6, 4, 6, 6, 8, 2, 4, 4, 6, 4, 6, 6, 8, 4, 6, 6, 8, 6, 8, 8, 10, 2, 4, 4, 6, 4, 6, 6, 8, 4, 6, 6, 8, 6, 8, 8, 10, 4, 6, 6, 8, 6, 8, 8, 10, 6, 8, 8, 10, 8, 10, 10, 12, 2, 4, 4, 6, 4, 6, 6, 8, 4, 6, 6, 8, 6, 8, 8, 10, 4, 6, 6, 8, 6, 8, 8, 10, 6, 8, 8, 10, 8, 10, 10, 12, 4, 6, 6, 8, 6, 8, 8, 10, 6, 8, 8, 10, 8, 10, 10, 12, 6, 8, 8, 10, 8, 10, 10, 12, 8, 10, 10, 12, 10, 12, 12, 14, 2, 4, 4, 6, 4, 6, 6, 8, 4, 6, 6, 8, 6, 8, 8, 10, 4, 6, 6, 8, 6, 8, 8, 10, 6, 8, 8, 10, 8, 10, 10, 12, 4, 6, 6, 8, 6, 8, 8, 10, 6, 8, 8, 10, 8, 10, 10, 12, 6, 8, 8, 10, 8, 10, 10, 12, 8, 10, 10, 12, 10, 12, 12, 14, 4, 6, 6, 8, 6, 8, 8, 10, 6, 8, 8, 10, 8, 10, 10, 12, 6, 8, 8, 10, 8, 10, 10, 12, 8, 10, 10, 12, 10, 12, 12, 14, 6, 8, 8, 10, 8, 10, 10, 12, 8, 10, 10, 12, 10, 12, 12, 14, 8, 10, 10, 12, 10, 12, 12, 14, 10, 12, 12, 14, 12, 14, 14, 16}; constexpr uint8_t to_base64_value[] = { 255, 255, 255, 255, 255, 255, 255, 255, 255, 64, 64, 255, 64, 64, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 64, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 62, 255, 255, 255, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 255, 255, 255, 255, 255, 255, 255, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 255, 255, 255, 255, 255, 255, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255}; constexpr uint8_t to_base64_url_value[] = { 255, 255, 255, 255, 255, 255, 255, 255, 255, 64, 64, 255, 64, 64, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 64, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 62, 255, 255, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 255, 255, 255, 255, 255, 255, 255, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 255, 255, 255, 255, 63, 255, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255}; constexpr uint8_t to_base64_default_or_url_value[] = { 255, 255, 255, 255, 255, 255, 255, 255, 255, 64, 64, 255, 64, 64, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 64, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 62, 255, 62, 255, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 255, 255, 255, 255, 255, 255, 255, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 255, 255, 255, 255, 63, 255, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255}; static_assert(sizeof(to_base64_value) == 256, "to_base64_value must have 256 elements"); static_assert(sizeof(to_base64_url_value) == 256, "to_base64_url_value must have 256 elements"); static_assert(to_base64_value[uint8_t(' ')] == 64, "space must be == 64 in to_base64_value"); static_assert(to_base64_url_value[uint8_t(' ')] == 64, "space must be == 64 in to_base64_url_value"); static_assert(to_base64_value[uint8_t('\t')] == 64, "tab must be == 64 in to_base64_value"); static_assert(to_base64_url_value[uint8_t('\t')] == 64, "tab must be == 64 in to_base64_url_value"); static_assert(to_base64_value[uint8_t('\r')] == 64, "cr must be == 64 in to_base64_value"); static_assert(to_base64_url_value[uint8_t('\r')] == 64, "cr must be == 64 in to_base64_url_value"); static_assert(to_base64_value[uint8_t('\n')] == 64, "lf must be == 64 in to_base64_value"); static_assert(to_base64_url_value[uint8_t('\n')] == 64, "lf must be == 64 in to_base64_url_value"); static_assert(to_base64_value[uint8_t('\f')] == 64, "ff must be == 64 in to_base64_value"); static_assert(to_base64_url_value[uint8_t('\f')] == 64, "ff must be == 64 in to_base64_url_value"); static_assert(to_base64_value[uint8_t('+')] == 62, "+ must be == 62 in to_base64_value"); static_assert(to_base64_url_value[uint8_t('-')] == 62, "- must be == 62 in to_base64_url_value"); static_assert(to_base64_value[uint8_t('/')] == 63, "/ must be == 62 in to_base64_value"); static_assert(to_base64_url_value[uint8_t('_')] == 63, "_ must be == 62 in to_base64_url_value"); } // namespace base64 } // namespace tables } // unnamed namespace } // namespace simdutf #endif // SIMDUTF_BASE64_TABLES_H /* end file src/tables/base64_tables.h */ #endif // SIMDUTF_FEATURE_BASE64 /* begin file src/encoding_types.cpp */ namespace simdutf { std::string to_string(encoding_type bom) { switch (bom) { case UTF16_LE: return "UTF16 little-endian"; case UTF16_BE: return "UTF16 big-endian"; case UTF32_LE: return "UTF32 little-endian"; case UTF32_BE: return "UTF32 big-endian"; case UTF8: return "UTF8"; case unspecified: return "unknown"; default: return "error"; } } namespace BOM { // Note that BOM for UTF8 is discouraged. encoding_type check_bom(const uint8_t *byte, size_t length) { if (length >= 2 && byte[0] == 0xff and byte[1] == 0xfe) { if (length >= 4 && byte[2] == 0x00 and byte[3] == 0x0) { return encoding_type::UTF32_LE; } else { return encoding_type::UTF16_LE; } } else if (length >= 2 && byte[0] == 0xfe and byte[1] == 0xff) { return encoding_type::UTF16_BE; } else if (length >= 4 && byte[0] == 0x00 and byte[1] == 0x00 and byte[2] == 0xfe and byte[3] == 0xff) { return encoding_type::UTF32_BE; } else if (length >= 3 && byte[0] == 0xef and byte[1] == 0xbb and byte[2] == 0xbf) { return encoding_type::UTF8; } return encoding_type::unspecified; } encoding_type check_bom(const char *byte, size_t length) { return check_bom(reinterpret_cast(byte), length); } size_t bom_byte_size(encoding_type bom) { switch (bom) { case UTF16_LE: return 2; case UTF16_BE: return 2; case UTF32_LE: return 4; case UTF32_BE: return 4; case UTF8: return 3; case unspecified: return 0; default: return 0; } } } // namespace BOM } // namespace simdutf /* end file src/encoding_types.cpp */ /* begin file src/error.cpp */ namespace simdutf { // deliberately empty } /* end file src/error.cpp */ // The large tables should be included once and they // should not depend on a kernel. /* begin file src/tables/utf8_to_utf16_tables.h */ #ifndef SIMDUTF_UTF8_TO_UTF16_TABLES_H #define SIMDUTF_UTF8_TO_UTF16_TABLES_H #include namespace simdutf { namespace { namespace tables { namespace utf8_to_utf16 { /** * utf8bigindex uses about 8 kB * shufutf8 uses about 3344 B * * So we use a bit over 11 kB. It would be * easy to save about 4 kB by only * storing the index in utf8bigindex, and * deriving the consumed bytes otherwise. * However, this may come at a significant (10% to 20%) * performance penalty. */ const uint8_t shufutf8[209][16] = { {0, 255, 1, 255, 2, 255, 3, 255, 4, 255, 5, 255, 0, 0, 0, 0}, {0, 255, 1, 255, 2, 255, 3, 255, 4, 255, 6, 5, 0, 0, 0, 0}, {0, 255, 1, 255, 2, 255, 3, 255, 5, 4, 6, 255, 0, 0, 0, 0}, {0, 255, 1, 255, 2, 255, 3, 255, 5, 4, 7, 6, 0, 0, 0, 0}, {0, 255, 1, 255, 2, 255, 4, 3, 5, 255, 6, 255, 0, 0, 0, 0}, {0, 255, 1, 255, 2, 255, 4, 3, 5, 255, 7, 6, 0, 0, 0, 0}, {0, 255, 1, 255, 2, 255, 4, 3, 6, 5, 7, 255, 0, 0, 0, 0}, {0, 255, 1, 255, 2, 255, 4, 3, 6, 5, 8, 7, 0, 0, 0, 0}, {0, 255, 1, 255, 3, 2, 4, 255, 5, 255, 6, 255, 0, 0, 0, 0}, {0, 255, 1, 255, 3, 2, 4, 255, 5, 255, 7, 6, 0, 0, 0, 0}, {0, 255, 1, 255, 3, 2, 4, 255, 6, 5, 7, 255, 0, 0, 0, 0}, {0, 255, 1, 255, 3, 2, 4, 255, 6, 5, 8, 7, 0, 0, 0, 0}, {0, 255, 1, 255, 3, 2, 5, 4, 6, 255, 7, 255, 0, 0, 0, 0}, {0, 255, 1, 255, 3, 2, 5, 4, 6, 255, 8, 7, 0, 0, 0, 0}, {0, 255, 1, 255, 3, 2, 5, 4, 7, 6, 8, 255, 0, 0, 0, 0}, {0, 255, 1, 255, 3, 2, 5, 4, 7, 6, 9, 8, 0, 0, 0, 0}, {0, 255, 2, 1, 3, 255, 4, 255, 5, 255, 6, 255, 0, 0, 0, 0}, {0, 255, 2, 1, 3, 255, 4, 255, 5, 255, 7, 6, 0, 0, 0, 0}, {0, 255, 2, 1, 3, 255, 4, 255, 6, 5, 7, 255, 0, 0, 0, 0}, {0, 255, 2, 1, 3, 255, 4, 255, 6, 5, 8, 7, 0, 0, 0, 0}, {0, 255, 2, 1, 3, 255, 5, 4, 6, 255, 7, 255, 0, 0, 0, 0}, {0, 255, 2, 1, 3, 255, 5, 4, 6, 255, 8, 7, 0, 0, 0, 0}, {0, 255, 2, 1, 3, 255, 5, 4, 7, 6, 8, 255, 0, 0, 0, 0}, {0, 255, 2, 1, 3, 255, 5, 4, 7, 6, 9, 8, 0, 0, 0, 0}, {0, 255, 2, 1, 4, 3, 5, 255, 6, 255, 7, 255, 0, 0, 0, 0}, {0, 255, 2, 1, 4, 3, 5, 255, 6, 255, 8, 7, 0, 0, 0, 0}, {0, 255, 2, 1, 4, 3, 5, 255, 7, 6, 8, 255, 0, 0, 0, 0}, {0, 255, 2, 1, 4, 3, 5, 255, 7, 6, 9, 8, 0, 0, 0, 0}, {0, 255, 2, 1, 4, 3, 6, 5, 7, 255, 8, 255, 0, 0, 0, 0}, {0, 255, 2, 1, 4, 3, 6, 5, 7, 255, 9, 8, 0, 0, 0, 0}, {0, 255, 2, 1, 4, 3, 6, 5, 8, 7, 9, 255, 0, 0, 0, 0}, {0, 255, 2, 1, 4, 3, 6, 5, 8, 7, 10, 9, 0, 0, 0, 0}, {1, 0, 2, 255, 3, 255, 4, 255, 5, 255, 6, 255, 0, 0, 0, 0}, {1, 0, 2, 255, 3, 255, 4, 255, 5, 255, 7, 6, 0, 0, 0, 0}, {1, 0, 2, 255, 3, 255, 4, 255, 6, 5, 7, 255, 0, 0, 0, 0}, {1, 0, 2, 255, 3, 255, 4, 255, 6, 5, 8, 7, 0, 0, 0, 0}, {1, 0, 2, 255, 3, 255, 5, 4, 6, 255, 7, 255, 0, 0, 0, 0}, {1, 0, 2, 255, 3, 255, 5, 4, 6, 255, 8, 7, 0, 0, 0, 0}, {1, 0, 2, 255, 3, 255, 5, 4, 7, 6, 8, 255, 0, 0, 0, 0}, {1, 0, 2, 255, 3, 255, 5, 4, 7, 6, 9, 8, 0, 0, 0, 0}, {1, 0, 2, 255, 4, 3, 5, 255, 6, 255, 7, 255, 0, 0, 0, 0}, {1, 0, 2, 255, 4, 3, 5, 255, 6, 255, 8, 7, 0, 0, 0, 0}, {1, 0, 2, 255, 4, 3, 5, 255, 7, 6, 8, 255, 0, 0, 0, 0}, {1, 0, 2, 255, 4, 3, 5, 255, 7, 6, 9, 8, 0, 0, 0, 0}, {1, 0, 2, 255, 4, 3, 6, 5, 7, 255, 8, 255, 0, 0, 0, 0}, {1, 0, 2, 255, 4, 3, 6, 5, 7, 255, 9, 8, 0, 0, 0, 0}, {1, 0, 2, 255, 4, 3, 6, 5, 8, 7, 9, 255, 0, 0, 0, 0}, {1, 0, 2, 255, 4, 3, 6, 5, 8, 7, 10, 9, 0, 0, 0, 0}, {1, 0, 3, 2, 4, 255, 5, 255, 6, 255, 7, 255, 0, 0, 0, 0}, {1, 0, 3, 2, 4, 255, 5, 255, 6, 255, 8, 7, 0, 0, 0, 0}, {1, 0, 3, 2, 4, 255, 5, 255, 7, 6, 8, 255, 0, 0, 0, 0}, {1, 0, 3, 2, 4, 255, 5, 255, 7, 6, 9, 8, 0, 0, 0, 0}, {1, 0, 3, 2, 4, 255, 6, 5, 7, 255, 8, 255, 0, 0, 0, 0}, {1, 0, 3, 2, 4, 255, 6, 5, 7, 255, 9, 8, 0, 0, 0, 0}, {1, 0, 3, 2, 4, 255, 6, 5, 8, 7, 9, 255, 0, 0, 0, 0}, {1, 0, 3, 2, 4, 255, 6, 5, 8, 7, 10, 9, 0, 0, 0, 0}, {1, 0, 3, 2, 5, 4, 6, 255, 7, 255, 8, 255, 0, 0, 0, 0}, {1, 0, 3, 2, 5, 4, 6, 255, 7, 255, 9, 8, 0, 0, 0, 0}, {1, 0, 3, 2, 5, 4, 6, 255, 8, 7, 9, 255, 0, 0, 0, 0}, {1, 0, 3, 2, 5, 4, 6, 255, 8, 7, 10, 9, 0, 0, 0, 0}, {1, 0, 3, 2, 5, 4, 7, 6, 8, 255, 9, 255, 0, 0, 0, 0}, {1, 0, 3, 2, 5, 4, 7, 6, 8, 255, 10, 9, 0, 0, 0, 0}, {1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 10, 255, 0, 0, 0, 0}, {1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 0, 0, 0, 0}, {0, 255, 255, 255, 1, 255, 255, 255, 2, 255, 255, 255, 3, 255, 255, 255}, {0, 255, 255, 255, 1, 255, 255, 255, 2, 255, 255, 255, 4, 3, 255, 255}, {0, 255, 255, 255, 1, 255, 255, 255, 2, 255, 255, 255, 5, 4, 3, 255}, {0, 255, 255, 255, 1, 255, 255, 255, 3, 2, 255, 255, 4, 255, 255, 255}, {0, 255, 255, 255, 1, 255, 255, 255, 3, 2, 255, 255, 5, 4, 255, 255}, {0, 255, 255, 255, 1, 255, 255, 255, 3, 2, 255, 255, 6, 5, 4, 255}, {0, 255, 255, 255, 1, 255, 255, 255, 4, 3, 2, 255, 5, 255, 255, 255}, {0, 255, 255, 255, 1, 255, 255, 255, 4, 3, 2, 255, 6, 5, 255, 255}, {0, 255, 255, 255, 1, 255, 255, 255, 4, 3, 2, 255, 7, 6, 5, 255}, {0, 255, 255, 255, 2, 1, 255, 255, 3, 255, 255, 255, 4, 255, 255, 255}, {0, 255, 255, 255, 2, 1, 255, 255, 3, 255, 255, 255, 5, 4, 255, 255}, {0, 255, 255, 255, 2, 1, 255, 255, 3, 255, 255, 255, 6, 5, 4, 255}, {0, 255, 255, 255, 2, 1, 255, 255, 4, 3, 255, 255, 5, 255, 255, 255}, {0, 255, 255, 255, 2, 1, 255, 255, 4, 3, 255, 255, 6, 5, 255, 255}, {0, 255, 255, 255, 2, 1, 255, 255, 4, 3, 255, 255, 7, 6, 5, 255}, {0, 255, 255, 255, 2, 1, 255, 255, 5, 4, 3, 255, 6, 255, 255, 255}, {0, 255, 255, 255, 2, 1, 255, 255, 5, 4, 3, 255, 7, 6, 255, 255}, {0, 255, 255, 255, 2, 1, 255, 255, 5, 4, 3, 255, 8, 7, 6, 255}, {0, 255, 255, 255, 3, 2, 1, 255, 4, 255, 255, 255, 5, 255, 255, 255}, {0, 255, 255, 255, 3, 2, 1, 255, 4, 255, 255, 255, 6, 5, 255, 255}, {0, 255, 255, 255, 3, 2, 1, 255, 4, 255, 255, 255, 7, 6, 5, 255}, {0, 255, 255, 255, 3, 2, 1, 255, 5, 4, 255, 255, 6, 255, 255, 255}, {0, 255, 255, 255, 3, 2, 1, 255, 5, 4, 255, 255, 7, 6, 255, 255}, {0, 255, 255, 255, 3, 2, 1, 255, 5, 4, 255, 255, 8, 7, 6, 255}, {0, 255, 255, 255, 3, 2, 1, 255, 6, 5, 4, 255, 7, 255, 255, 255}, {0, 255, 255, 255, 3, 2, 1, 255, 6, 5, 4, 255, 8, 7, 255, 255}, {0, 255, 255, 255, 3, 2, 1, 255, 6, 5, 4, 255, 9, 8, 7, 255}, {1, 0, 255, 255, 2, 255, 255, 255, 3, 255, 255, 255, 4, 255, 255, 255}, {1, 0, 255, 255, 2, 255, 255, 255, 3, 255, 255, 255, 5, 4, 255, 255}, {1, 0, 255, 255, 2, 255, 255, 255, 3, 255, 255, 255, 6, 5, 4, 255}, {1, 0, 255, 255, 2, 255, 255, 255, 4, 3, 255, 255, 5, 255, 255, 255}, {1, 0, 255, 255, 2, 255, 255, 255, 4, 3, 255, 255, 6, 5, 255, 255}, {1, 0, 255, 255, 2, 255, 255, 255, 4, 3, 255, 255, 7, 6, 5, 255}, {1, 0, 255, 255, 2, 255, 255, 255, 5, 4, 3, 255, 6, 255, 255, 255}, {1, 0, 255, 255, 2, 255, 255, 255, 5, 4, 3, 255, 7, 6, 255, 255}, {1, 0, 255, 255, 2, 255, 255, 255, 5, 4, 3, 255, 8, 7, 6, 255}, {1, 0, 255, 255, 3, 2, 255, 255, 4, 255, 255, 255, 5, 255, 255, 255}, {1, 0, 255, 255, 3, 2, 255, 255, 4, 255, 255, 255, 6, 5, 255, 255}, {1, 0, 255, 255, 3, 2, 255, 255, 4, 255, 255, 255, 7, 6, 5, 255}, {1, 0, 255, 255, 3, 2, 255, 255, 5, 4, 255, 255, 6, 255, 255, 255}, {1, 0, 255, 255, 3, 2, 255, 255, 5, 4, 255, 255, 7, 6, 255, 255}, {1, 0, 255, 255, 3, 2, 255, 255, 5, 4, 255, 255, 8, 7, 6, 255}, {1, 0, 255, 255, 3, 2, 255, 255, 6, 5, 4, 255, 7, 255, 255, 255}, {1, 0, 255, 255, 3, 2, 255, 255, 6, 5, 4, 255, 8, 7, 255, 255}, {1, 0, 255, 255, 3, 2, 255, 255, 6, 5, 4, 255, 9, 8, 7, 255}, {1, 0, 255, 255, 4, 3, 2, 255, 5, 255, 255, 255, 6, 255, 255, 255}, {1, 0, 255, 255, 4, 3, 2, 255, 5, 255, 255, 255, 7, 6, 255, 255}, {1, 0, 255, 255, 4, 3, 2, 255, 5, 255, 255, 255, 8, 7, 6, 255}, {1, 0, 255, 255, 4, 3, 2, 255, 6, 5, 255, 255, 7, 255, 255, 255}, {1, 0, 255, 255, 4, 3, 2, 255, 6, 5, 255, 255, 8, 7, 255, 255}, {1, 0, 255, 255, 4, 3, 2, 255, 6, 5, 255, 255, 9, 8, 7, 255}, {1, 0, 255, 255, 4, 3, 2, 255, 7, 6, 5, 255, 8, 255, 255, 255}, {1, 0, 255, 255, 4, 3, 2, 255, 7, 6, 5, 255, 9, 8, 255, 255}, {1, 0, 255, 255, 4, 3, 2, 255, 7, 6, 5, 255, 10, 9, 8, 255}, {2, 1, 0, 255, 3, 255, 255, 255, 4, 255, 255, 255, 5, 255, 255, 255}, {2, 1, 0, 255, 3, 255, 255, 255, 4, 255, 255, 255, 6, 5, 255, 255}, {2, 1, 0, 255, 3, 255, 255, 255, 4, 255, 255, 255, 7, 6, 5, 255}, {2, 1, 0, 255, 3, 255, 255, 255, 5, 4, 255, 255, 6, 255, 255, 255}, {2, 1, 0, 255, 3, 255, 255, 255, 5, 4, 255, 255, 7, 6, 255, 255}, {2, 1, 0, 255, 3, 255, 255, 255, 5, 4, 255, 255, 8, 7, 6, 255}, {2, 1, 0, 255, 3, 255, 255, 255, 6, 5, 4, 255, 7, 255, 255, 255}, {2, 1, 0, 255, 3, 255, 255, 255, 6, 5, 4, 255, 8, 7, 255, 255}, {2, 1, 0, 255, 3, 255, 255, 255, 6, 5, 4, 255, 9, 8, 7, 255}, {2, 1, 0, 255, 4, 3, 255, 255, 5, 255, 255, 255, 6, 255, 255, 255}, {2, 1, 0, 255, 4, 3, 255, 255, 5, 255, 255, 255, 7, 6, 255, 255}, {2, 1, 0, 255, 4, 3, 255, 255, 5, 255, 255, 255, 8, 7, 6, 255}, {2, 1, 0, 255, 4, 3, 255, 255, 6, 5, 255, 255, 7, 255, 255, 255}, {2, 1, 0, 255, 4, 3, 255, 255, 6, 5, 255, 255, 8, 7, 255, 255}, {2, 1, 0, 255, 4, 3, 255, 255, 6, 5, 255, 255, 9, 8, 7, 255}, {2, 1, 0, 255, 4, 3, 255, 255, 7, 6, 5, 255, 8, 255, 255, 255}, {2, 1, 0, 255, 4, 3, 255, 255, 7, 6, 5, 255, 9, 8, 255, 255}, {2, 1, 0, 255, 4, 3, 255, 255, 7, 6, 5, 255, 10, 9, 8, 255}, {2, 1, 0, 255, 5, 4, 3, 255, 6, 255, 255, 255, 7, 255, 255, 255}, {2, 1, 0, 255, 5, 4, 3, 255, 6, 255, 255, 255, 8, 7, 255, 255}, {2, 1, 0, 255, 5, 4, 3, 255, 6, 255, 255, 255, 9, 8, 7, 255}, {2, 1, 0, 255, 5, 4, 3, 255, 7, 6, 255, 255, 8, 255, 255, 255}, {2, 1, 0, 255, 5, 4, 3, 255, 7, 6, 255, 255, 9, 8, 255, 255}, {2, 1, 0, 255, 5, 4, 3, 255, 7, 6, 255, 255, 10, 9, 8, 255}, {2, 1, 0, 255, 5, 4, 3, 255, 8, 7, 6, 255, 9, 255, 255, 255}, {2, 1, 0, 255, 5, 4, 3, 255, 8, 7, 6, 255, 10, 9, 255, 255}, {2, 1, 0, 255, 5, 4, 3, 255, 8, 7, 6, 255, 11, 10, 9, 255}, {0, 255, 255, 255, 1, 255, 255, 255, 2, 255, 255, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 1, 255, 255, 255, 3, 2, 255, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 1, 255, 255, 255, 4, 3, 2, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 1, 255, 255, 255, 5, 4, 3, 2, 0, 0, 0, 0}, {0, 255, 255, 255, 2, 1, 255, 255, 3, 255, 255, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 2, 1, 255, 255, 4, 3, 255, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 2, 1, 255, 255, 5, 4, 3, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 2, 1, 255, 255, 6, 5, 4, 3, 0, 0, 0, 0}, {0, 255, 255, 255, 3, 2, 1, 255, 4, 255, 255, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 3, 2, 1, 255, 5, 4, 255, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 3, 2, 1, 255, 6, 5, 4, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 3, 2, 1, 255, 7, 6, 5, 4, 0, 0, 0, 0}, {0, 255, 255, 255, 4, 3, 2, 1, 5, 255, 255, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 4, 3, 2, 1, 6, 5, 255, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 4, 3, 2, 1, 7, 6, 5, 255, 0, 0, 0, 0}, {0, 255, 255, 255, 4, 3, 2, 1, 8, 7, 6, 5, 0, 0, 0, 0}, {1, 0, 255, 255, 2, 255, 255, 255, 3, 255, 255, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 2, 255, 255, 255, 4, 3, 255, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 2, 255, 255, 255, 5, 4, 3, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 2, 255, 255, 255, 6, 5, 4, 3, 0, 0, 0, 0}, {1, 0, 255, 255, 3, 2, 255, 255, 4, 255, 255, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 3, 2, 255, 255, 5, 4, 255, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 3, 2, 255, 255, 6, 5, 4, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 3, 2, 255, 255, 7, 6, 5, 4, 0, 0, 0, 0}, {1, 0, 255, 255, 4, 3, 2, 255, 5, 255, 255, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 4, 3, 2, 255, 6, 5, 255, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 4, 3, 2, 255, 7, 6, 5, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 4, 3, 2, 255, 8, 7, 6, 5, 0, 0, 0, 0}, {1, 0, 255, 255, 5, 4, 3, 2, 6, 255, 255, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 5, 4, 3, 2, 7, 6, 255, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 5, 4, 3, 2, 8, 7, 6, 255, 0, 0, 0, 0}, {1, 0, 255, 255, 5, 4, 3, 2, 9, 8, 7, 6, 0, 0, 0, 0}, {2, 1, 0, 255, 3, 255, 255, 255, 4, 255, 255, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 3, 255, 255, 255, 5, 4, 255, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 3, 255, 255, 255, 6, 5, 4, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 3, 255, 255, 255, 7, 6, 5, 4, 0, 0, 0, 0}, {2, 1, 0, 255, 4, 3, 255, 255, 5, 255, 255, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 4, 3, 255, 255, 6, 5, 255, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 4, 3, 255, 255, 7, 6, 5, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 4, 3, 255, 255, 8, 7, 6, 5, 0, 0, 0, 0}, {2, 1, 0, 255, 5, 4, 3, 255, 6, 255, 255, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 5, 4, 3, 255, 7, 6, 255, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 5, 4, 3, 255, 8, 7, 6, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 5, 4, 3, 255, 9, 8, 7, 6, 0, 0, 0, 0}, {2, 1, 0, 255, 6, 5, 4, 3, 7, 255, 255, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 6, 5, 4, 3, 8, 7, 255, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 6, 5, 4, 3, 9, 8, 7, 255, 0, 0, 0, 0}, {2, 1, 0, 255, 6, 5, 4, 3, 10, 9, 8, 7, 0, 0, 0, 0}, {3, 2, 1, 0, 4, 255, 255, 255, 5, 255, 255, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 4, 255, 255, 255, 6, 5, 255, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 4, 255, 255, 255, 7, 6, 5, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 4, 255, 255, 255, 8, 7, 6, 5, 0, 0, 0, 0}, {3, 2, 1, 0, 5, 4, 255, 255, 6, 255, 255, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 5, 4, 255, 255, 7, 6, 255, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 5, 4, 255, 255, 8, 7, 6, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 5, 4, 255, 255, 9, 8, 7, 6, 0, 0, 0, 0}, {3, 2, 1, 0, 6, 5, 4, 255, 7, 255, 255, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 6, 5, 4, 255, 8, 7, 255, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 6, 5, 4, 255, 9, 8, 7, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 6, 5, 4, 255, 10, 9, 8, 7, 0, 0, 0, 0}, {3, 2, 1, 0, 7, 6, 5, 4, 8, 255, 255, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 7, 6, 5, 4, 9, 8, 255, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 7, 6, 5, 4, 10, 9, 8, 255, 0, 0, 0, 0}, {3, 2, 1, 0, 7, 6, 5, 4, 11, 10, 9, 8, 0, 0, 0, 0}}; /* number of two bytes : 64 */ /* number of two + three bytes : 145 */ /* number of two + three + four bytes : 209 */ const uint8_t utf8bigindex[4096][2] = { {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {147, 5}, {209, 12}, {150, 5}, {162, 5}, {65, 5}, {209, 12}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {148, 6}, {209, 12}, {151, 6}, {163, 6}, {66, 6}, {209, 12}, {154, 6}, {166, 6}, {68, 6}, {178, 6}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {169, 6}, {70, 6}, {181, 6}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {152, 7}, {164, 7}, {145, 3}, {209, 12}, {155, 7}, {167, 7}, {69, 7}, {179, 7}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {170, 7}, {71, 7}, {182, 7}, {77, 7}, {95, 7}, {65, 5}, {194, 7}, {83, 7}, {101, 7}, {67, 5}, {119, 7}, {73, 5}, {91, 5}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {185, 7}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {68, 6}, {121, 7}, {74, 6}, {92, 6}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {76, 6}, {94, 6}, {4, 7}, {193, 6}, {82, 6}, {100, 6}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {171, 8}, {72, 8}, {183, 8}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {186, 8}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {104, 8}, {68, 6}, {122, 8}, {74, 6}, {92, 6}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {76, 6}, {94, 6}, {5, 8}, {193, 6}, {82, 6}, {100, 6}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {77, 7}, {95, 7}, {6, 8}, {194, 7}, {83, 7}, {101, 7}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {160, 9}, {172, 9}, {147, 5}, {184, 9}, {150, 5}, {162, 5}, {65, 5}, {196, 9}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {175, 9}, {148, 6}, {187, 9}, {81, 9}, {99, 9}, {66, 6}, {199, 9}, {87, 9}, {105, 9}, {68, 6}, {123, 9}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {111, 9}, {70, 6}, {129, 9}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {190, 9}, {152, 7}, {164, 7}, {145, 3}, {202, 9}, {89, 9}, {107, 9}, {69, 7}, {125, 9}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {113, 9}, {71, 7}, {131, 9}, {77, 7}, {95, 7}, {7, 9}, {194, 7}, {83, 7}, {101, 7}, {11, 9}, {119, 7}, {19, 9}, {35, 9}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {137, 9}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {13, 9}, {121, 7}, {21, 9}, {37, 9}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {25, 9}, {41, 9}, {4, 7}, {193, 6}, {82, 6}, {49, 9}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {205, 9}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {115, 9}, {72, 8}, {133, 9}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {139, 9}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {104, 8}, {14, 9}, {122, 8}, {22, 9}, {38, 9}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {26, 9}, {42, 9}, {5, 8}, {193, 6}, {82, 6}, {50, 9}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {28, 9}, {44, 9}, {6, 8}, {194, 7}, {83, 7}, {52, 9}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {56, 9}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {147, 5}, {209, 12}, {150, 5}, {162, 5}, {65, 5}, {209, 12}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {176, 10}, {148, 6}, {188, 10}, {151, 6}, {163, 6}, {66, 6}, {200, 10}, {154, 6}, {166, 6}, {68, 6}, {178, 6}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {169, 6}, {70, 6}, {181, 6}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {191, 10}, {152, 7}, {164, 7}, {145, 3}, {203, 10}, {90, 10}, {108, 10}, {69, 7}, {126, 10}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {114, 10}, {71, 7}, {132, 10}, {77, 7}, {95, 7}, {65, 5}, {194, 7}, {83, 7}, {101, 7}, {67, 5}, {119, 7}, {73, 5}, {91, 5}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {138, 10}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {68, 6}, {121, 7}, {74, 6}, {92, 6}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {76, 6}, {94, 6}, {4, 7}, {193, 6}, {82, 6}, {100, 6}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {206, 10}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {116, 10}, {72, 8}, {134, 10}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {140, 10}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {104, 8}, {15, 10}, {122, 8}, {23, 10}, {39, 10}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {27, 10}, {43, 10}, {5, 8}, {193, 6}, {82, 6}, {51, 10}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {29, 10}, {45, 10}, {6, 8}, {194, 7}, {83, 7}, {53, 10}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {57, 10}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {160, 9}, {172, 9}, {147, 5}, {184, 9}, {150, 5}, {162, 5}, {65, 5}, {196, 9}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {175, 9}, {148, 6}, {142, 10}, {81, 9}, {99, 9}, {66, 6}, {199, 9}, {87, 9}, {105, 9}, {68, 6}, {123, 9}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {111, 9}, {70, 6}, {129, 9}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {190, 9}, {152, 7}, {164, 7}, {145, 3}, {202, 9}, {89, 9}, {107, 9}, {69, 7}, {125, 9}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {113, 9}, {71, 7}, {131, 9}, {30, 10}, {46, 10}, {7, 9}, {194, 7}, {83, 7}, {54, 10}, {11, 9}, {119, 7}, {19, 9}, {35, 9}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {137, 9}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {58, 10}, {13, 9}, {121, 7}, {21, 9}, {37, 9}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {25, 9}, {41, 9}, {4, 7}, {193, 6}, {82, 6}, {49, 9}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {205, 9}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {115, 9}, {72, 8}, {133, 9}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {139, 9}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {60, 10}, {14, 9}, {122, 8}, {22, 9}, {38, 9}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {26, 9}, {42, 9}, {5, 8}, {193, 6}, {82, 6}, {50, 9}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {28, 9}, {44, 9}, {6, 8}, {194, 7}, {83, 7}, {52, 9}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {56, 9}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {147, 5}, {209, 12}, {150, 5}, {162, 5}, {65, 5}, {209, 12}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {148, 6}, {209, 12}, {151, 6}, {163, 6}, {66, 6}, {209, 12}, {154, 6}, {166, 6}, {68, 6}, {178, 6}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {169, 6}, {70, 6}, {181, 6}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {192, 11}, {152, 7}, {164, 7}, {145, 3}, {204, 11}, {155, 7}, {167, 7}, {69, 7}, {179, 7}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {170, 7}, {71, 7}, {182, 7}, {77, 7}, {95, 7}, {65, 5}, {194, 7}, {83, 7}, {101, 7}, {67, 5}, {119, 7}, {73, 5}, {91, 5}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {185, 7}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {68, 6}, {121, 7}, {74, 6}, {92, 6}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {76, 6}, {94, 6}, {4, 7}, {193, 6}, {82, 6}, {100, 6}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {207, 11}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {117, 11}, {72, 8}, {135, 11}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {141, 11}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {104, 8}, {68, 6}, {122, 8}, {74, 6}, {92, 6}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {76, 6}, {94, 6}, {5, 8}, {193, 6}, {82, 6}, {100, 6}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {77, 7}, {95, 7}, {6, 8}, {194, 7}, {83, 7}, {101, 7}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {160, 9}, {172, 9}, {147, 5}, {184, 9}, {150, 5}, {162, 5}, {65, 5}, {196, 9}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {175, 9}, {148, 6}, {143, 11}, {81, 9}, {99, 9}, {66, 6}, {199, 9}, {87, 9}, {105, 9}, {68, 6}, {123, 9}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {111, 9}, {70, 6}, {129, 9}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {190, 9}, {152, 7}, {164, 7}, {145, 3}, {202, 9}, {89, 9}, {107, 9}, {69, 7}, {125, 9}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {113, 9}, {71, 7}, {131, 9}, {31, 11}, {47, 11}, {7, 9}, {194, 7}, {83, 7}, {55, 11}, {11, 9}, {119, 7}, {19, 9}, {35, 9}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {137, 9}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {59, 11}, {13, 9}, {121, 7}, {21, 9}, {37, 9}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {25, 9}, {41, 9}, {4, 7}, {193, 6}, {82, 6}, {49, 9}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {205, 9}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {115, 9}, {72, 8}, {133, 9}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {139, 9}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {61, 11}, {14, 9}, {122, 8}, {22, 9}, {38, 9}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {26, 9}, {42, 9}, {5, 8}, {193, 6}, {82, 6}, {50, 9}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {28, 9}, {44, 9}, {6, 8}, {194, 7}, {83, 7}, {52, 9}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {56, 9}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {147, 5}, {209, 12}, {150, 5}, {162, 5}, {65, 5}, {209, 12}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {176, 10}, {148, 6}, {188, 10}, {151, 6}, {163, 6}, {66, 6}, {200, 10}, {154, 6}, {166, 6}, {68, 6}, {178, 6}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {169, 6}, {70, 6}, {181, 6}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {191, 10}, {152, 7}, {164, 7}, {145, 3}, {203, 10}, {90, 10}, {108, 10}, {69, 7}, {126, 10}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {114, 10}, {71, 7}, {132, 10}, {77, 7}, {95, 7}, {65, 5}, {194, 7}, {83, 7}, {101, 7}, {67, 5}, {119, 7}, {73, 5}, {91, 5}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {138, 10}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {68, 6}, {121, 7}, {74, 6}, {92, 6}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {76, 6}, {94, 6}, {4, 7}, {193, 6}, {82, 6}, {100, 6}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {206, 10}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {116, 10}, {72, 8}, {134, 10}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {140, 10}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {62, 11}, {15, 10}, {122, 8}, {23, 10}, {39, 10}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {27, 10}, {43, 10}, {5, 8}, {193, 6}, {82, 6}, {51, 10}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {29, 10}, {45, 10}, {6, 8}, {194, 7}, {83, 7}, {53, 10}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {57, 10}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {160, 9}, {172, 9}, {147, 5}, {184, 9}, {150, 5}, {162, 5}, {65, 5}, {196, 9}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {175, 9}, {148, 6}, {142, 10}, {81, 9}, {99, 9}, {66, 6}, {199, 9}, {87, 9}, {105, 9}, {68, 6}, {123, 9}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {111, 9}, {70, 6}, {129, 9}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {190, 9}, {152, 7}, {164, 7}, {145, 3}, {202, 9}, {89, 9}, {107, 9}, {69, 7}, {125, 9}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {113, 9}, {71, 7}, {131, 9}, {30, 10}, {46, 10}, {7, 9}, {194, 7}, {83, 7}, {54, 10}, {11, 9}, {119, 7}, {19, 9}, {35, 9}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {137, 9}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {58, 10}, {13, 9}, {121, 7}, {21, 9}, {37, 9}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {25, 9}, {41, 9}, {4, 7}, {193, 6}, {82, 6}, {49, 9}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {205, 9}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {115, 9}, {72, 8}, {133, 9}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {139, 9}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {60, 10}, {14, 9}, {122, 8}, {22, 9}, {38, 9}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {26, 9}, {42, 9}, {5, 8}, {193, 6}, {82, 6}, {50, 9}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {28, 9}, {44, 9}, {6, 8}, {194, 7}, {83, 7}, {52, 9}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {56, 9}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {147, 5}, {209, 12}, {150, 5}, {162, 5}, {65, 5}, {209, 12}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {148, 6}, {209, 12}, {151, 6}, {163, 6}, {66, 6}, {209, 12}, {154, 6}, {166, 6}, {68, 6}, {178, 6}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {169, 6}, {70, 6}, {181, 6}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {152, 7}, {164, 7}, {145, 3}, {209, 12}, {155, 7}, {167, 7}, {69, 7}, {179, 7}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {170, 7}, {71, 7}, {182, 7}, {77, 7}, {95, 7}, {65, 5}, {194, 7}, {83, 7}, {101, 7}, {67, 5}, {119, 7}, {73, 5}, {91, 5}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {185, 7}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {68, 6}, {121, 7}, {74, 6}, {92, 6}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {76, 6}, {94, 6}, {4, 7}, {193, 6}, {82, 6}, {100, 6}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {208, 12}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {171, 8}, {72, 8}, {183, 8}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {186, 8}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {104, 8}, {68, 6}, {122, 8}, {74, 6}, {92, 6}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {76, 6}, {94, 6}, {5, 8}, {193, 6}, {82, 6}, {100, 6}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {77, 7}, {95, 7}, {6, 8}, {194, 7}, {83, 7}, {101, 7}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {160, 9}, {172, 9}, {147, 5}, {184, 9}, {150, 5}, {162, 5}, {65, 5}, {196, 9}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {175, 9}, {148, 6}, {144, 12}, {81, 9}, {99, 9}, {66, 6}, {199, 9}, {87, 9}, {105, 9}, {68, 6}, {123, 9}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {111, 9}, {70, 6}, {129, 9}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {190, 9}, {152, 7}, {164, 7}, {145, 3}, {202, 9}, {89, 9}, {107, 9}, {69, 7}, {125, 9}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {113, 9}, {71, 7}, {131, 9}, {77, 7}, {95, 7}, {7, 9}, {194, 7}, {83, 7}, {101, 7}, {11, 9}, {119, 7}, {19, 9}, {35, 9}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {137, 9}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {13, 9}, {121, 7}, {21, 9}, {37, 9}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {25, 9}, {41, 9}, {4, 7}, {193, 6}, {82, 6}, {49, 9}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {205, 9}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {115, 9}, {72, 8}, {133, 9}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {139, 9}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {104, 8}, {14, 9}, {122, 8}, {22, 9}, {38, 9}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {26, 9}, {42, 9}, {5, 8}, {193, 6}, {82, 6}, {50, 9}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {28, 9}, {44, 9}, {6, 8}, {194, 7}, {83, 7}, {52, 9}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {56, 9}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {147, 5}, {209, 12}, {150, 5}, {162, 5}, {65, 5}, {209, 12}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {176, 10}, {148, 6}, {188, 10}, {151, 6}, {163, 6}, {66, 6}, {200, 10}, {154, 6}, {166, 6}, {68, 6}, {178, 6}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {169, 6}, {70, 6}, {181, 6}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {191, 10}, {152, 7}, {164, 7}, {145, 3}, {203, 10}, {90, 10}, {108, 10}, {69, 7}, {126, 10}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {114, 10}, {71, 7}, {132, 10}, {77, 7}, {95, 7}, {65, 5}, {194, 7}, {83, 7}, {101, 7}, {67, 5}, {119, 7}, {73, 5}, {91, 5}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {138, 10}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {68, 6}, {121, 7}, {74, 6}, {92, 6}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {76, 6}, {94, 6}, {4, 7}, {193, 6}, {82, 6}, {100, 6}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {206, 10}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {116, 10}, {72, 8}, {134, 10}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {140, 10}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {63, 12}, {15, 10}, {122, 8}, {23, 10}, {39, 10}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {27, 10}, {43, 10}, {5, 8}, {193, 6}, {82, 6}, {51, 10}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {29, 10}, {45, 10}, {6, 8}, {194, 7}, {83, 7}, {53, 10}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {57, 10}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {160, 9}, {172, 9}, {147, 5}, {184, 9}, {150, 5}, {162, 5}, {65, 5}, {196, 9}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {175, 9}, {148, 6}, {142, 10}, {81, 9}, {99, 9}, {66, 6}, {199, 9}, {87, 9}, {105, 9}, {68, 6}, {123, 9}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {111, 9}, {70, 6}, {129, 9}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {190, 9}, {152, 7}, {164, 7}, {145, 3}, {202, 9}, {89, 9}, {107, 9}, {69, 7}, {125, 9}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {113, 9}, {71, 7}, {131, 9}, {30, 10}, {46, 10}, {7, 9}, {194, 7}, {83, 7}, {54, 10}, {11, 9}, {119, 7}, {19, 9}, {35, 9}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {137, 9}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {58, 10}, {13, 9}, {121, 7}, {21, 9}, {37, 9}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {25, 9}, {41, 9}, {4, 7}, {193, 6}, {82, 6}, {49, 9}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {205, 9}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {115, 9}, {72, 8}, {133, 9}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {139, 9}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {60, 10}, {14, 9}, {122, 8}, {22, 9}, {38, 9}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {26, 9}, {42, 9}, {5, 8}, {193, 6}, {82, 6}, {50, 9}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {28, 9}, {44, 9}, {6, 8}, {194, 7}, {83, 7}, {52, 9}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {56, 9}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {147, 5}, {209, 12}, {150, 5}, {162, 5}, {65, 5}, {209, 12}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {148, 6}, {209, 12}, {151, 6}, {163, 6}, {66, 6}, {209, 12}, {154, 6}, {166, 6}, {68, 6}, {178, 6}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {169, 6}, {70, 6}, {181, 6}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {192, 11}, {152, 7}, {164, 7}, {145, 3}, {204, 11}, {155, 7}, {167, 7}, {69, 7}, {179, 7}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {170, 7}, {71, 7}, {182, 7}, {77, 7}, {95, 7}, {65, 5}, {194, 7}, {83, 7}, {101, 7}, {67, 5}, {119, 7}, {73, 5}, {91, 5}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {185, 7}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {68, 6}, {121, 7}, {74, 6}, {92, 6}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {76, 6}, {94, 6}, {4, 7}, {193, 6}, {82, 6}, {100, 6}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {207, 11}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {117, 11}, {72, 8}, {135, 11}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {141, 11}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {104, 8}, {68, 6}, {122, 8}, {74, 6}, {92, 6}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {76, 6}, {94, 6}, {5, 8}, {193, 6}, {82, 6}, {100, 6}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {77, 7}, {95, 7}, {6, 8}, {194, 7}, {83, 7}, {101, 7}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {160, 9}, {172, 9}, {147, 5}, {184, 9}, {150, 5}, {162, 5}, {65, 5}, {196, 9}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {175, 9}, {148, 6}, {143, 11}, {81, 9}, {99, 9}, {66, 6}, {199, 9}, {87, 9}, {105, 9}, {68, 6}, {123, 9}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {111, 9}, {70, 6}, {129, 9}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {190, 9}, {152, 7}, {164, 7}, {145, 3}, {202, 9}, {89, 9}, {107, 9}, {69, 7}, {125, 9}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {113, 9}, {71, 7}, {131, 9}, {31, 11}, {47, 11}, {7, 9}, {194, 7}, {83, 7}, {55, 11}, {11, 9}, {119, 7}, {19, 9}, {35, 9}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {137, 9}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {59, 11}, {13, 9}, {121, 7}, {21, 9}, {37, 9}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {25, 9}, {41, 9}, {4, 7}, {193, 6}, {82, 6}, {49, 9}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {205, 9}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {115, 9}, {72, 8}, {133, 9}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {139, 9}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {61, 11}, {14, 9}, {122, 8}, {22, 9}, {38, 9}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {26, 9}, {42, 9}, {5, 8}, {193, 6}, {82, 6}, {50, 9}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {28, 9}, {44, 9}, {6, 8}, {194, 7}, {83, 7}, {52, 9}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {56, 9}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {209, 12}, {209, 12}, {147, 5}, {209, 12}, {150, 5}, {162, 5}, {65, 5}, {209, 12}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {176, 10}, {148, 6}, {188, 10}, {151, 6}, {163, 6}, {66, 6}, {200, 10}, {154, 6}, {166, 6}, {68, 6}, {178, 6}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {169, 6}, {70, 6}, {181, 6}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {191, 10}, {152, 7}, {164, 7}, {145, 3}, {203, 10}, {90, 10}, {108, 10}, {69, 7}, {126, 10}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {114, 10}, {71, 7}, {132, 10}, {77, 7}, {95, 7}, {65, 5}, {194, 7}, {83, 7}, {101, 7}, {67, 5}, {119, 7}, {73, 5}, {91, 5}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {138, 10}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {103, 7}, {68, 6}, {121, 7}, {74, 6}, {92, 6}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {76, 6}, {94, 6}, {4, 7}, {193, 6}, {82, 6}, {100, 6}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {206, 10}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {116, 10}, {72, 8}, {134, 10}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {140, 10}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {62, 11}, {15, 10}, {122, 8}, {23, 10}, {39, 10}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {27, 10}, {43, 10}, {5, 8}, {193, 6}, {82, 6}, {51, 10}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {29, 10}, {45, 10}, {6, 8}, {194, 7}, {83, 7}, {53, 10}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {57, 10}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {209, 12}, {209, 12}, {209, 12}, {146, 4}, {209, 12}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {160, 9}, {172, 9}, {147, 5}, {184, 9}, {150, 5}, {162, 5}, {65, 5}, {196, 9}, {153, 5}, {165, 5}, {67, 5}, {177, 5}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {175, 9}, {148, 6}, {142, 10}, {81, 9}, {99, 9}, {66, 6}, {199, 9}, {87, 9}, {105, 9}, {68, 6}, {123, 9}, {74, 6}, {92, 6}, {64, 4}, {209, 12}, {157, 6}, {111, 9}, {70, 6}, {129, 9}, {76, 6}, {94, 6}, {65, 5}, {193, 6}, {82, 6}, {100, 6}, {67, 5}, {118, 6}, {73, 5}, {91, 5}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {190, 9}, {152, 7}, {164, 7}, {145, 3}, {202, 9}, {89, 9}, {107, 9}, {69, 7}, {125, 9}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {113, 9}, {71, 7}, {131, 9}, {30, 10}, {46, 10}, {7, 9}, {194, 7}, {83, 7}, {54, 10}, {11, 9}, {119, 7}, {19, 9}, {35, 9}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {137, 9}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {58, 10}, {13, 9}, {121, 7}, {21, 9}, {37, 9}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {25, 9}, {41, 9}, {4, 7}, {193, 6}, {82, 6}, {49, 9}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {145, 3}, {205, 9}, {156, 8}, {168, 8}, {146, 4}, {180, 8}, {149, 4}, {161, 4}, {64, 4}, {209, 12}, {159, 8}, {115, 9}, {72, 8}, {133, 9}, {78, 8}, {96, 8}, {65, 5}, {195, 8}, {84, 8}, {102, 8}, {67, 5}, {120, 8}, {73, 5}, {91, 5}, {64, 4}, {209, 12}, {209, 12}, {174, 8}, {148, 6}, {139, 9}, {80, 8}, {98, 8}, {66, 6}, {198, 8}, {86, 8}, {60, 10}, {14, 9}, {122, 8}, {22, 9}, {38, 9}, {3, 8}, {209, 12}, {157, 6}, {110, 8}, {70, 6}, {128, 8}, {26, 9}, {42, 9}, {5, 8}, {193, 6}, {82, 6}, {50, 9}, {9, 8}, {118, 6}, {17, 8}, {33, 8}, {0, 6}, {209, 12}, {209, 12}, {209, 12}, {209, 12}, {189, 8}, {152, 7}, {164, 7}, {145, 3}, {201, 8}, {88, 8}, {106, 8}, {69, 7}, {124, 8}, {75, 7}, {93, 7}, {64, 4}, {209, 12}, {158, 7}, {112, 8}, {71, 7}, {130, 8}, {28, 9}, {44, 9}, {6, 8}, {194, 7}, {83, 7}, {52, 9}, {10, 8}, {119, 7}, {18, 8}, {34, 8}, {1, 7}, {209, 12}, {209, 12}, {173, 7}, {148, 6}, {136, 8}, {79, 7}, {97, 7}, {66, 6}, {197, 7}, {85, 7}, {56, 9}, {12, 8}, {121, 7}, {20, 8}, {36, 8}, {2, 7}, {209, 12}, {157, 6}, {109, 7}, {70, 6}, {127, 7}, {24, 8}, {40, 8}, {4, 7}, {193, 6}, {82, 6}, {48, 8}, {8, 7}, {118, 6}, {16, 7}, {32, 7}, {0, 6}}; } // namespace utf8_to_utf16 } // namespace tables } // unnamed namespace } // namespace simdutf #endif // SIMDUTF_UTF8_TO_UTF16_TABLES_H /* end file src/tables/utf8_to_utf16_tables.h */ /* begin file src/tables/utf16_to_utf8_tables.h */ // file generated by scripts/sse_convert_utf16_to_utf8.py #ifndef SIMDUTF_UTF16_TO_UTF8_TABLES_H #define SIMDUTF_UTF16_TO_UTF8_TABLES_H namespace simdutf { namespace { namespace tables { namespace utf16_to_utf8 { // 1 byte for length, 16 bytes for mask const uint8_t pack_1_2_utf8_bytes[256][17] = { {16, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14}, {15, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80}, {15, 1, 0, 3, 2, 5, 4, 7, 6, 8, 11, 10, 13, 12, 15, 14, 0x80}, {14, 0, 3, 2, 5, 4, 7, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {15, 1, 0, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80}, {14, 0, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {14, 1, 0, 2, 5, 4, 7, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {13, 0, 2, 5, 4, 7, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {15, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 10, 13, 12, 15, 14, 0x80}, {14, 0, 3, 2, 5, 4, 7, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80}, {14, 1, 0, 3, 2, 5, 4, 7, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80}, {13, 0, 3, 2, 5, 4, 7, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {14, 1, 0, 2, 5, 4, 7, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80}, {13, 0, 2, 5, 4, 7, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 5, 4, 7, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 5, 4, 7, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {15, 1, 0, 3, 2, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80}, {14, 0, 3, 2, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {14, 1, 0, 3, 2, 4, 7, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {13, 0, 3, 2, 4, 7, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {14, 1, 0, 2, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {13, 0, 2, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 4, 7, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 4, 7, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {14, 1, 0, 3, 2, 4, 7, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80}, {13, 0, 3, 2, 4, 7, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 4, 7, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 4, 7, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 4, 7, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 4, 7, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 4, 7, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 4, 7, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {15, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 12, 15, 14, 0x80}, {14, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80}, {14, 1, 0, 3, 2, 5, 4, 7, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80}, {13, 0, 3, 2, 5, 4, 7, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {14, 1, 0, 2, 5, 4, 7, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80}, {13, 0, 2, 5, 4, 7, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 5, 4, 7, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 5, 4, 7, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {14, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80}, {13, 0, 3, 2, 5, 4, 7, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 5, 4, 7, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 5, 4, 7, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 5, 4, 7, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 5, 4, 7, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 5, 4, 7, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 5, 4, 7, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {14, 1, 0, 3, 2, 4, 7, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80}, {13, 0, 3, 2, 4, 7, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 4, 7, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 4, 7, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 4, 7, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 4, 7, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 4, 7, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 4, 7, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 4, 7, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 4, 7, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 4, 7, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 4, 7, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 4, 7, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 4, 7, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 4, 7, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 4, 7, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {15, 1, 0, 3, 2, 5, 4, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80}, {14, 0, 3, 2, 5, 4, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {14, 1, 0, 3, 2, 5, 4, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {13, 0, 3, 2, 5, 4, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {14, 1, 0, 2, 5, 4, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {13, 0, 2, 5, 4, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 5, 4, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 5, 4, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {14, 1, 0, 3, 2, 5, 4, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80}, {13, 0, 3, 2, 5, 4, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 5, 4, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 5, 4, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 5, 4, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 5, 4, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 5, 4, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 5, 4, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {14, 1, 0, 3, 2, 4, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {13, 0, 3, 2, 4, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 4, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 4, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 4, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 4, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 4, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 4, 6, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 4, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 4, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 4, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 4, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 4, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 4, 6, 9, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 4, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 4, 6, 8, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {14, 1, 0, 3, 2, 5, 4, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80}, {13, 0, 3, 2, 5, 4, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 5, 4, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 5, 4, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 5, 4, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 5, 4, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 5, 4, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 5, 4, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 5, 4, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 5, 4, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 5, 4, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 5, 4, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 5, 4, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 5, 4, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 5, 4, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 5, 4, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 4, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 4, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 4, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 4, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 4, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 4, 6, 9, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 4, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 4, 6, 8, 11, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 4, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 4, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 3, 2, 4, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 3, 2, 4, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 4, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 4, 6, 9, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 2, 4, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 2, 4, 6, 8, 10, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {15, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 14, 0x80}, {14, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80}, {14, 1, 0, 3, 2, 5, 4, 7, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80}, {13, 0, 3, 2, 5, 4, 7, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {14, 1, 0, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80}, {13, 0, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 5, 4, 7, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 5, 4, 7, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {14, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80}, {13, 0, 3, 2, 5, 4, 7, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 5, 4, 7, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 5, 4, 7, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 5, 4, 7, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 5, 4, 7, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 5, 4, 7, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 5, 4, 7, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {14, 1, 0, 3, 2, 4, 7, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80}, {13, 0, 3, 2, 4, 7, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 4, 7, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 4, 7, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 4, 7, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 4, 7, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 4, 7, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 4, 7, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 4, 7, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 4, 7, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 4, 7, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 4, 7, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 4, 7, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 4, 7, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 4, 7, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 4, 7, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {14, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80}, {13, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 5, 4, 7, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 5, 4, 7, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 5, 4, 7, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 5, 4, 7, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 5, 4, 7, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 5, 4, 7, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 5, 4, 7, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 5, 4, 7, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 5, 4, 7, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 5, 4, 7, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 5, 4, 7, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 5, 4, 7, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 5, 4, 7, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 4, 7, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 4, 7, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 4, 7, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 4, 7, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 4, 7, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 4, 7, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 4, 7, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 4, 7, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 4, 7, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 4, 7, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 3, 2, 4, 7, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 3, 2, 4, 7, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 4, 7, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 4, 7, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 2, 4, 7, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 2, 4, 7, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {14, 1, 0, 3, 2, 5, 4, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80}, {13, 0, 3, 2, 5, 4, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 5, 4, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 5, 4, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 2, 5, 4, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 2, 5, 4, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 5, 4, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 5, 4, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 5, 4, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 5, 4, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 5, 4, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 5, 4, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 5, 4, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 5, 4, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 5, 4, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 5, 4, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 4, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 4, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 4, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 4, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 4, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 4, 6, 9, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 4, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 4, 6, 8, 11, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 4, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 4, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 3, 2, 4, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 3, 2, 4, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 4, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 4, 6, 9, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 2, 4, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 2, 4, 6, 8, 10, 13, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {13, 1, 0, 3, 2, 5, 4, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80}, {12, 0, 3, 2, 5, 4, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 5, 4, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 5, 4, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 2, 5, 4, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 2, 5, 4, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 5, 4, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 5, 4, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 5, 4, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 5, 4, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 3, 2, 5, 4, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 3, 2, 5, 4, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 5, 4, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 5, 4, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 2, 5, 4, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 2, 5, 4, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {12, 1, 0, 3, 2, 4, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80}, {11, 0, 3, 2, 4, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 3, 2, 4, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 3, 2, 4, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 2, 4, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 2, 4, 6, 9, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 2, 4, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 2, 4, 6, 8, 11, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 3, 2, 4, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 3, 2, 4, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 3, 2, 4, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 3, 2, 4, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 2, 4, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 2, 4, 6, 9, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 2, 4, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 2, 4, 6, 8, 10, 12, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}}; // 1 byte for length, 16 bytes for mask const uint8_t pack_1_2_3_utf8_bytes[256][17] = { {12, 2, 3, 1, 6, 7, 5, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80}, {9, 6, 7, 5, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 3, 1, 6, 7, 5, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 6, 7, 5, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 1, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 1, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 2, 3, 1, 7, 5, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 7, 5, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 3, 1, 7, 5, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 7, 5, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 2, 3, 1, 4, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 4, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 3, 1, 4, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 4, 10, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 1, 6, 7, 5, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 6, 7, 5, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 1, 6, 7, 5, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 6, 7, 5, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 1, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 1, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 7, 5, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 7, 5, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 7, 5, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 7, 5, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 4, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 4, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 4, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 4, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 2, 3, 1, 6, 7, 5, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 6, 7, 5, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 3, 1, 6, 7, 5, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 6, 7, 5, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 2, 3, 1, 7, 5, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 7, 5, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 3, 1, 7, 5, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 7, 5, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 1, 4, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 4, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 1, 4, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 4, 11, 9, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 2, 3, 1, 6, 7, 5, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 6, 7, 5, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 3, 1, 6, 7, 5, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 6, 7, 5, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 1, 7, 5, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 7, 5, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 1, 7, 5, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 7, 5, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 4, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 4, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 4, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 4, 8, 14, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 1, 6, 7, 5, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 6, 7, 5, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 1, 6, 7, 5, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 6, 7, 5, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 1, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 1, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 7, 5, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 7, 5, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 7, 5, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 7, 5, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 4, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 4, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 4, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 4, 10, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 1, 6, 7, 5, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 6, 7, 5, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 1, 6, 7, 5, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 6, 7, 5, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 2, 3, 1, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {0, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 3, 1, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 0, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 3, 1, 7, 5, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 7, 5, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 1, 7, 5, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 0, 7, 5, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 2, 3, 1, 4, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 4, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 3, 1, 4, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 0, 4, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 6, 7, 5, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 6, 7, 5, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 6, 7, 5, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 6, 7, 5, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 3, 1, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 1, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 0, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 7, 5, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 7, 5, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 7, 5, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 7, 5, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 1, 4, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 4, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 1, 4, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 4, 11, 9, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 6, 7, 5, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 6, 7, 5, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 6, 7, 5, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 6, 7, 5, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 2, 3, 1, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 3, 1, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 0, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 1, 7, 5, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 7, 5, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 1, 7, 5, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 7, 5, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 3, 1, 4, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 4, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 1, 4, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 0, 4, 8, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 2, 3, 1, 6, 7, 5, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 6, 7, 5, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 3, 1, 6, 7, 5, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 6, 7, 5, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 2, 3, 1, 7, 5, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 7, 5, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 3, 1, 7, 5, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 7, 5, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 1, 4, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 4, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 1, 4, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 4, 10, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 6, 7, 5, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 6, 7, 5, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 6, 7, 5, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 6, 7, 5, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 3, 1, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 1, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 0, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 7, 5, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 7, 5, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 7, 5, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 7, 5, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 1, 4, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 4, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 1, 4, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 4, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 2, 3, 1, 6, 7, 5, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 6, 7, 5, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 3, 1, 6, 7, 5, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 6, 7, 5, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 1, 7, 5, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 7, 5, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 1, 7, 5, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 7, 5, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 4, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 4, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 4, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 4, 11, 9, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 1, 6, 7, 5, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 6, 7, 5, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 1, 6, 7, 5, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 6, 7, 5, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 1, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 1, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 7, 5, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 7, 5, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 7, 5, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 7, 5, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 4, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 4, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 4, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 4, 8, 15, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 2, 3, 1, 6, 7, 5, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 6, 7, 5, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 3, 1, 6, 7, 5, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 6, 7, 5, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 1, 7, 5, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 7, 5, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 1, 7, 5, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 7, 5, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 4, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 4, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 4, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 4, 10, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 6, 7, 5, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 6, 7, 5, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 6, 7, 5, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 6, 7, 5, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 2, 3, 1, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 3, 1, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 0, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 1, 7, 5, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 7, 5, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 1, 7, 5, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 7, 5, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 3, 1, 4, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 4, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 1, 4, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 0, 4, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 1, 6, 7, 5, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 6, 7, 5, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 1, 6, 7, 5, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 6, 7, 5, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 1, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 1, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 7, 5, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 7, 5, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 7, 5, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 7, 5, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 4, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 4, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 4, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 4, 11, 9, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 1, 6, 7, 5, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 6, 7, 5, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 1, 6, 7, 5, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 6, 7, 5, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 3, 1, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 1, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 0, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 1, 7, 5, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 7, 5, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 1, 7, 5, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 7, 5, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 1, 4, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 4, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 1, 4, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 4, 8, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}}; } // namespace utf16_to_utf8 } // namespace tables } // unnamed namespace } // namespace simdutf #endif // SIMDUTF_UTF16_TO_UTF8_TABLES_H /* end file src/tables/utf16_to_utf8_tables.h */ /* begin file src/tables/utf32_to_utf16_tables.h */ // file generated by scripts/sse_convert_utf32_to_utf16.py #ifndef SIMDUTF_UTF32_TO_UTF16_TABLES_H #define SIMDUTF_UTF32_TO_UTF16_TABLES_H namespace simdutf { namespace { namespace tables { namespace utf32_to_utf16 { const uint8_t pack_utf32_to_utf16le[16][16] = { {0, 1, 4, 5, 8, 9, 12, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {0, 1, 2, 3, 4, 5, 8, 9, 12, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {0, 1, 4, 5, 6, 7, 8, 9, 12, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 0x80, 0x80, 0x80, 0x80}, {0, 1, 4, 5, 8, 9, 10, 11, 12, 13, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 0x80, 0x80, 0x80, 0x80}, {0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0x80, 0x80, 0x80, 0x80}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0x80, 0x80}, {0, 1, 4, 5, 8, 9, 12, 13, 14, 15, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {0, 1, 2, 3, 4, 5, 8, 9, 12, 13, 14, 15, 0x80, 0x80, 0x80, 0x80}, {0, 1, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 0x80, 0x80, 0x80, 0x80}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 0x80, 0x80}, {0, 1, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 0x80, 0x80, 0x80, 0x80}, {0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 0x80, 0x80}, {0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0x80, 0x80}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, }; const uint8_t pack_utf32_to_utf16be[16][16] = { {1, 0, 5, 4, 9, 8, 13, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 0, 3, 2, 5, 4, 9, 8, 13, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 0, 5, 4, 7, 6, 9, 8, 13, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 13, 12, 0x80, 0x80, 0x80, 0x80}, {1, 0, 5, 4, 9, 8, 11, 10, 13, 12, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 0, 3, 2, 5, 4, 9, 8, 11, 10, 13, 12, 0x80, 0x80, 0x80, 0x80}, {1, 0, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 0x80, 0x80, 0x80, 0x80}, {1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 0x80, 0x80}, {1, 0, 5, 4, 9, 8, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 0, 3, 2, 5, 4, 9, 8, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {1, 0, 5, 4, 7, 6, 9, 8, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 13, 12, 15, 14, 0x80, 0x80}, {1, 0, 5, 4, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80, 0x80, 0x80}, {1, 0, 3, 2, 5, 4, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {1, 0, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 0x80, 0x80}, {1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14}, }; } // namespace utf32_to_utf16 } // namespace tables } // unnamed namespace } // namespace simdutf #endif // SIMDUTF_UTF16_TO_UTF8_TABLES_H /* end file src/tables/utf32_to_utf16_tables.h */ // End of tables. // Implementations: they need to be setup before including // scalar/* code, as the scalar code is sometimes enabled // only for peculiar build targets. // The best choice should always come first! #ifndef SIMDUTF_REGULAR_VISUAL_STUDIO SIMDUTF_DISABLE_UNUSED_WARNING #endif /* begin file src/simdutf/arm64.h */ #ifndef SIMDUTF_ARM64_H #define SIMDUTF_ARM64_H #ifdef SIMDUTF_FALLBACK_H #error "arm64.h must be included before fallback.h" #endif #ifndef SIMDUTF_IMPLEMENTATION_ARM64 #define SIMDUTF_IMPLEMENTATION_ARM64 (SIMDUTF_IS_ARM64) #endif #if SIMDUTF_IMPLEMENTATION_ARM64 && SIMDUTF_IS_ARM64 #define SIMDUTF_CAN_ALWAYS_RUN_ARM64 1 #else #define SIMDUTF_CAN_ALWAYS_RUN_ARM64 0 #endif #if SIMDUTF_IMPLEMENTATION_ARM64 namespace simdutf { /** * Implementation for NEON (ARMv8). */ namespace arm64 {} // namespace arm64 } // namespace simdutf /* begin file src/simdutf/arm64/implementation.h */ #ifndef SIMDUTF_ARM64_IMPLEMENTATION_H #define SIMDUTF_ARM64_IMPLEMENTATION_H namespace simdutf { namespace arm64 { namespace { using namespace simdutf; } class implementation final : public simdutf::implementation { public: simdutf_really_inline implementation() : simdutf::implementation("arm64", "ARM NEON", internal::instruction_set::NEON) {} #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *input, size_t length) const noexcept final; #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept final; void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept final; void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *buf, size_t length, char16_t *output) const noexcept final; simdutf_warn_unused size_t count_utf16le(const char16_t *buf, size_t length) const noexcept; simdutf_warn_unused size_t count_utf16be(const char16_t *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) const noexcept; simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept; ; simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept; ; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept; size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept; const char *find(const char *start, const char *end, char character) const noexcept; const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept; }; #endif // SIMDUTF_FEATURE_BASE64 } // namespace arm64 } // namespace simdutf #endif // SIMDUTF_ARM64_IMPLEMENTATION_H /* end file src/simdutf/arm64/implementation.h */ /* begin file src/simdutf/arm64/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "arm64" // #define SIMDUTF_IMPLEMENTATION arm64 #define SIMDUTF_SIMD_HAS_BYTEMASK 1 /* end file src/simdutf/arm64/begin.h */ // Declarations /* begin file src/simdutf/arm64/intrinsics.h */ #ifndef SIMDUTF_ARM64_INTRINSICS_H #define SIMDUTF_ARM64_INTRINSICS_H // This should be the correct header whether // you use visual studio or other compilers. #include #endif // SIMDUTF_ARM64_INTRINSICS_H /* end file src/simdutf/arm64/intrinsics.h */ /* begin file src/simdutf/arm64/bitmanipulation.h */ #ifndef SIMDUTF_ARM64_BITMANIPULATION_H #define SIMDUTF_ARM64_BITMANIPULATION_H namespace simdutf { namespace arm64 { namespace { /* result might be undefined when input_num is zero */ simdutf_really_inline int count_ones(uint64_t input_num) { return vaddv_u8(vcnt_u8(vcreate_u8(input_num))); } #if SIMDUTF_NEED_TRAILING_ZEROES simdutf_really_inline int trailing_zeroes(uint64_t input_num) { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO unsigned long ret; // Search the mask data from least significant bit (LSB) // to the most significant bit (MSB) for a set bit (1). _BitScanForward64(&ret, input_num); return (int)ret; #else // SIMDUTF_REGULAR_VISUAL_STUDIO return __builtin_ctzll(input_num); #endif // SIMDUTF_REGULAR_VISUAL_STUDIO } #endif template T clear_least_significant_bit(T x) { return (x & (x - 1)); } } // unnamed namespace } // namespace arm64 } // namespace simdutf #endif // SIMDUTF_ARM64_BITMANIPULATION_H /* end file src/simdutf/arm64/bitmanipulation.h */ /* begin file src/simdutf/arm64/simd.h */ #ifndef SIMDUTF_ARM64_SIMD_H #define SIMDUTF_ARM64_SIMD_H #include namespace simdutf { namespace arm64 { namespace { namespace simd { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO namespace { // Start of private section with Visual Studio workaround #ifndef simdutf_make_uint8x16_t #define simdutf_make_uint8x16_t(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, \ x11, x12, x13, x14, x15, x16) \ ([=]() { \ uint8_t array[16] = {x1, x2, x3, x4, x5, x6, x7, x8, \ x9, x10, x11, x12, x13, x14, x15, x16}; \ return vld1q_u8(array); \ }()) #endif #ifndef simdutf_make_int8x16_t #define simdutf_make_int8x16_t(x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, \ x11, x12, x13, x14, x15, x16) \ ([=]() { \ int8_t array[16] = {x1, x2, x3, x4, x5, x6, x7, x8, \ x9, x10, x11, x12, x13, x14, x15, x16}; \ return vld1q_s8(array); \ }()) #endif #ifndef simdutf_make_uint8x8_t #define simdutf_make_uint8x8_t(x1, x2, x3, x4, x5, x6, x7, x8) \ ([=]() { \ uint8_t array[8] = {x1, x2, x3, x4, x5, x6, x7, x8}; \ return vld1_u8(array); \ }()) #endif #ifndef simdutf_make_int8x8_t #define simdutf_make_int8x8_t(x1, x2, x3, x4, x5, x6, x7, x8) \ ([=]() { \ int8_t array[8] = {x1, x2, x3, x4, x5, x6, x7, x8}; \ return vld1_s8(array); \ }()) #endif #ifndef simdutf_make_uint16x8_t #define simdutf_make_uint16x8_t(x1, x2, x3, x4, x5, x6, x7, x8) \ ([=]() { \ uint16_t array[8] = {x1, x2, x3, x4, x5, x6, x7, x8}; \ return vld1q_u16(array); \ }()) #endif #ifndef simdutf_make_int16x8_t #define simdutf_make_int16x8_t(x1, x2, x3, x4, x5, x6, x7, x8) \ ([=]() { \ int16_t array[8] = {x1, x2, x3, x4, x5, x6, x7, x8}; \ return vld1q_s16(array); \ }()) #endif // End of private section with Visual Studio workaround } // namespace #endif // SIMDUTF_REGULAR_VISUAL_STUDIO template struct simd8; // // Base class of simd8 and simd8, both of which use uint8x16_t // internally. // template > struct base_u8 { uint8x16_t value; static const int SIZE = sizeof(value); void dump() const { #ifdef SIMDUTF_LOGGING uint8_t temp[16]; vst1q_u8(temp, *this); printf("[%04x, %04x, %04x, %04x, %04x, %04x, %04x, %04x,%04x, %04x, %04x, " "%04x, %04x, %04x, %04x, %04x]\n", temp[0], temp[1], temp[2], temp[3], temp[4], temp[5], temp[6], temp[7], temp[8], temp[9], temp[10], temp[11], temp[12], temp[13], temp[14], temp[15]); #endif // SIMDUTF_LOGGING } // Conversion from/to SIMD register simdutf_really_inline base_u8(const uint8x16_t _value) : value(_value) {} simdutf_really_inline operator const uint8x16_t &() const { return this->value; } // Bit operations simdutf_really_inline simd8 operator|(const simd8 other) const { return vorrq_u8(*this, other); } simdutf_really_inline simd8 operator&(const simd8 other) const { return vandq_u8(*this, other); } simdutf_really_inline simd8 operator^(const simd8 other) const { return veorq_u8(*this, other); } simdutf_really_inline simd8 &operator|=(const simd8 other) { auto this_cast = static_cast *>(this); *this_cast = *this_cast | other; return *this_cast; } friend simdutf_really_inline Mask operator==(const simd8 lhs, const simd8 rhs) { return vceqq_u8(lhs, rhs); } template simdutf_really_inline simd8 prev(const simd8 prev_chunk) const { return vextq_u8(prev_chunk, *this, 16 - N); } }; // SIMD byte mask type (returned by things like eq and gt) template <> struct simd8 : base_u8 { static simdutf_really_inline simd8 splat(bool _value) { return vmovq_n_u8(uint8_t(-(!!_value))); } simdutf_really_inline simd8(const uint8x16_t _value) : base_u8(_value) {} // False constructor simdutf_really_inline simd8() : simd8(vdupq_n_u8(0)) {} // Splat constructor simdutf_really_inline simd8(bool _value) : simd8(splat(_value)) {} simdutf_really_inline void store(uint8_t dst[16]) const { return vst1q_u8(dst, *this); } // We return uint32_t instead of uint16_t because that seems to be more // efficient for most purposes (cutting it down to uint16_t costs performance // in some compilers). simdutf_really_inline uint32_t to_bitmask() const { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint8x16_t bit_mask = simdutf_make_uint8x16_t(0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80); #else const uint8x16_t bit_mask = {0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80}; #endif auto minput = *this & bit_mask; uint8x16_t tmp = vpaddq_u8(minput, minput); tmp = vpaddq_u8(tmp, tmp); tmp = vpaddq_u8(tmp, tmp); return vgetq_lane_u16(vreinterpretq_u16_u8(tmp), 0); } // Returns 4-bit out of each byte, alternating between the high 4 bits and low // bits result it is 64 bit. This method is expected to be faster than none() // and is equivalent when the vector register is the result of a comparison, // with byte values 0xff and 0x00. simdutf_really_inline uint64_t to_bitmask64() const { return vget_lane_u64( vreinterpret_u64_u8(vshrn_n_u16(vreinterpretq_u16_u8(*this), 4)), 0); } }; // Unsigned bytes template <> struct simd8 : base_u8 { static simdutf_really_inline simd8 splat(uint8_t _value) { return vmovq_n_u8(_value); } static simdutf_really_inline simd8 zero() { return vdupq_n_u8(0); } static simdutf_really_inline simd8 load(const uint8_t *values) { return vld1q_u8(values); } simdutf_really_inline simd8(const uint8x16_t _value) : base_u8(_value) {} // Zero constructor simdutf_really_inline simd8() : simd8(zero()) {} // Array constructor simdutf_really_inline simd8(const uint8_t values[16]) : simd8(load(values)) {} // Splat constructor simdutf_really_inline simd8(uint8_t _value) : simd8(splat(_value)) {} // Member-by-member initialization #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO simdutf_really_inline simd8(uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15) : simd8(simdutf_make_uint8x16_t(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15)) {} #else simdutf_really_inline simd8(uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15) : simd8(uint8x16_t{v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15}) {} #endif // Repeat 16 values as many times as necessary (usually for lookup tables) simdutf_really_inline static simd8 repeat_16(uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15) { return simd8(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15); } // Store to array simdutf_really_inline void store(uint8_t dst[16]) const { return vst1q_u8(dst, *this); } // Addition/subtraction are the same for signed and unsigned simdutf_really_inline simd8 operator-(const simd8 other) const { return vsubq_u8(*this, other); } simdutf_really_inline simd8 &operator-=(const simd8 other) { *this = *this - other; return *this; } // Order-specific operations simdutf_really_inline uint8_t max_val() const { return vmaxvq_u8(*this); } simdutf_really_inline simd8 operator>=(const simd8 other) const { return vcgeq_u8(*this, other); } simdutf_really_inline simd8 operator>(const simd8 other) const { return vcgtq_u8(*this, other); } // Same as >, but instead of guaranteeing all 1's == true, false = 0 and true // = nonzero. For ARM, returns all 1's. simdutf_really_inline simd8 gt_bits(const simd8 other) const { return simd8(*this > other); } // Bit-specific operations simdutf_really_inline simd8 any_bits_set(simd8 bits) const { return vtstq_u8(*this, bits); } simdutf_really_inline bool is_ascii() const { return this->max_val() < 0b10000000u; } simdutf_really_inline bool any_bits_set_anywhere() const { return this->max_val() != 0; } template simdutf_really_inline simd8 shr() const { return vshrq_n_u8(*this, N); } simdutf_really_inline uint16_t sum_bytes() const { return vaddvq_u8(*this); } // Perform a lookup assuming the value is between 0 and 16 (undefined behavior // for out of range values) template simdutf_really_inline simd8 lookup_16(simd8 lookup_table) const { return lookup_table.apply_lookup_16_to(*this); } template simdutf_really_inline simd8 lookup_16(L replace0, L replace1, L replace2, L replace3, L replace4, L replace5, L replace6, L replace7, L replace8, L replace9, L replace10, L replace11, L replace12, L replace13, L replace14, L replace15) const { return lookup_16(simd8::repeat_16( replace0, replace1, replace2, replace3, replace4, replace5, replace6, replace7, replace8, replace9, replace10, replace11, replace12, replace13, replace14, replace15)); } template simdutf_really_inline simd8 apply_lookup_16_to(const simd8 original) const { return vqtbl1q_u8(*this, simd8(original)); } }; // Signed bytes template <> struct simd8 { int8x16_t value; static const int SIZE = sizeof(value); static simdutf_really_inline simd8 splat(int8_t _value) { return vmovq_n_s8(_value); } static simdutf_really_inline simd8 zero() { return vdupq_n_s8(0); } static simdutf_really_inline simd8 load(const int8_t values[16]) { return vld1q_s8(values); } // Use ST2 instead of UXTL+UXTL2 to interleave zeroes. UXTL is actually a // USHLL #0, and shifting in NEON is actually quite slow. // // While this needs the registers to be in a specific order, bigger cores can // interleave these with no overhead, and it still performs decently on little // cores. // movi v1.3d, #0 // mov v0.16b, value[0] // st2 {v0.16b, v1.16b}, [ptr], #32 // mov v0.16b, value[1] // st2 {v0.16b, v1.16b}, [ptr], #32 // ... template simdutf_really_inline void store_ascii_as_utf16(char16_t *p) const { int8x16x2_t pair = match_system(big_endian) ? int8x16x2_t{{this->value, vmovq_n_s8(0)}} : int8x16x2_t{{vmovq_n_s8(0), this->value}}; vst2q_s8(reinterpret_cast(p), pair); } // In places where the table can be reused, which is most uses in simdutf, it // is worth it to do 4 table lookups, as there is no direct zero extension // from u8 to u32. simdutf_really_inline void store_ascii_as_utf32_tbl(char32_t *p) const { const simd8 tb1{0, 255, 255, 255, 1, 255, 255, 255, 2, 255, 255, 255, 3, 255, 255, 255}; const simd8 tb2{4, 255, 255, 255, 5, 255, 255, 255, 6, 255, 255, 255, 7, 255, 255, 255}; const simd8 tb3{8, 255, 255, 255, 9, 255, 255, 255, 10, 255, 255, 255, 11, 255, 255, 255}; const simd8 tb4{12, 255, 255, 255, 13, 255, 255, 255, 14, 255, 255, 255, 15, 255, 255, 255}; // encourage store pairing and interleaving const auto shuf1 = this->apply_lookup_16_to(tb1); const auto shuf2 = this->apply_lookup_16_to(tb2); shuf1.store(reinterpret_cast(p)); shuf2.store(reinterpret_cast(p + 4)); const auto shuf3 = this->apply_lookup_16_to(tb3); const auto shuf4 = this->apply_lookup_16_to(tb4); shuf3.store(reinterpret_cast(p + 8)); shuf4.store(reinterpret_cast(p + 12)); } // Conversion from/to SIMD register simdutf_really_inline simd8(const int8x16_t _value) : value{_value} {} simdutf_really_inline operator const int8x16_t &() const { return this->value; } #ifndef SIMDUTF_REGULAR_VISUAL_STUDIO simdutf_really_inline operator const uint8x16_t() const { return vreinterpretq_u8_s8(this->value); } #endif simdutf_really_inline operator int8x16_t &() { return this->value; } // Zero constructor simdutf_really_inline simd8() : simd8(zero()) {} // Splat constructor simdutf_really_inline simd8(int8_t _value) : simd8(splat(_value)) {} // Array constructor simdutf_really_inline simd8(const int8_t *values) : simd8(load(values)) {} // Member-by-member initialization #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO simdutf_really_inline simd8(int8_t v0, int8_t v1, int8_t v2, int8_t v3, int8_t v4, int8_t v5, int8_t v6, int8_t v7, int8_t v8, int8_t v9, int8_t v10, int8_t v11, int8_t v12, int8_t v13, int8_t v14, int8_t v15) : simd8(simdutf_make_int8x16_t(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15)) {} #else simdutf_really_inline simd8(int8_t v0, int8_t v1, int8_t v2, int8_t v3, int8_t v4, int8_t v5, int8_t v6, int8_t v7, int8_t v8, int8_t v9, int8_t v10, int8_t v11, int8_t v12, int8_t v13, int8_t v14, int8_t v15) : simd8(int8x16_t{v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15}) {} #endif // Store to array simdutf_really_inline void store(int8_t dst[16]) const { return vst1q_s8(dst, value); } // Explicit conversion to/from unsigned // // Under Visual Studio/ARM64 uint8x16_t and int8x16_t are apparently the same // type. In theory, we could check this occurrence with std::same_as and // std::enabled_if but it is C++14 and relatively ugly and hard to read. #ifndef SIMDUTF_REGULAR_VISUAL_STUDIO simdutf_really_inline explicit simd8(const uint8x16_t other) : simd8(vreinterpretq_s8_u8(other)) {} #endif simdutf_really_inline operator simd8() const { return vreinterpretq_u8_s8(this->value); } simdutf_really_inline simd8 operator|(const simd8 other) const { return vorrq_s8(value, other.value); } simdutf_really_inline int8_t max_val() const { return vmaxvq_s8(value); } simdutf_really_inline int8_t min_val() const { return vminvq_s8(value); } simdutf_really_inline bool is_ascii() const { return this->min_val() >= 0; } // Order-sensitive comparisons simdutf_really_inline simd8 operator>(const simd8 other) const { return vcgtq_s8(value, other.value); } simdutf_really_inline simd8 operator<(const simd8 other) const { return vcltq_s8(value, other.value); } template simdutf_really_inline simd8 apply_lookup_16_to(const simd8 original) const { return vqtbl1q_s8(*this, simd8(original)); } }; template struct simd8x64 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd8); static_assert(NUM_CHUNKS == 4, "ARM kernel should use four registers per 64-byte block."); simd8 chunks[NUM_CHUNKS]; simd8x64(const simd8x64 &o) = delete; // no copy allowed simd8x64 & operator=(const simd8 other) = delete; // no assignment allowed simd8x64() = delete; // no default constructor allowed simdutf_really_inline simd8x64(const simd8 chunk0, const simd8 chunk1, const simd8 chunk2, const simd8 chunk3) : chunks{chunk0, chunk1, chunk2, chunk3} {} simdutf_really_inline simd8x64(const T *ptr) : chunks{simd8::load(ptr), simd8::load(ptr + sizeof(simd8) / sizeof(T)), simd8::load(ptr + 2 * sizeof(simd8) / sizeof(T)), simd8::load(ptr + 3 * sizeof(simd8) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd8) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd8) * 1 / sizeof(T)); this->chunks[2].store(ptr + sizeof(simd8) * 2 / sizeof(T)); this->chunks[3].store(ptr + sizeof(simd8) * 3 / sizeof(T)); } simdutf_really_inline simd8x64 &operator|=(const simd8x64 &other) { this->chunks[0] |= other.chunks[0]; this->chunks[1] |= other.chunks[1]; this->chunks[2] |= other.chunks[2]; this->chunks[3] |= other.chunks[3]; return *this; } simdutf_really_inline simd8 reduce_or() const { return (this->chunks[0] | this->chunks[1]) | (this->chunks[2] | this->chunks[3]); } simdutf_really_inline bool is_ascii() const { return reduce_or().is_ascii(); } template simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { this->chunks[0].template store_ascii_as_utf16(ptr + sizeof(simd8) * 0); this->chunks[1].template store_ascii_as_utf16(ptr + sizeof(simd8) * 1); this->chunks[2].template store_ascii_as_utf16(ptr + sizeof(simd8) * 2); this->chunks[3].template store_ascii_as_utf16(ptr + sizeof(simd8) * 3); } simdutf_really_inline void store_ascii_as_utf32(char32_t *ptr) const { this->chunks[0].store_ascii_as_utf32_tbl(ptr + sizeof(simd8) * 0); this->chunks[1].store_ascii_as_utf32_tbl(ptr + sizeof(simd8) * 1); this->chunks[2].store_ascii_as_utf32_tbl(ptr + sizeof(simd8) * 2); this->chunks[3].store_ascii_as_utf32_tbl(ptr + sizeof(simd8) * 3); } simdutf_really_inline uint64_t to_bitmask() const { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint8x16_t bit_mask = simdutf_make_uint8x16_t(0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80); #else const uint8x16_t bit_mask = {0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80}; #endif // Add each of the elements next to each other, successively, to stuff each // 8 byte mask into one. uint8x16_t sum0 = vpaddq_u8(vandq_u8(uint8x16_t(this->chunks[0]), bit_mask), vandq_u8(uint8x16_t(this->chunks[1]), bit_mask)); uint8x16_t sum1 = vpaddq_u8(vandq_u8(uint8x16_t(this->chunks[2]), bit_mask), vandq_u8(uint8x16_t(this->chunks[3]), bit_mask)); sum0 = vpaddq_u8(sum0, sum1); sum0 = vpaddq_u8(sum0, sum0); return vgetq_lane_u64(vreinterpretq_u64_u8(sum0), 0); } simdutf_really_inline uint64_t lt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] < mask, this->chunks[1] < mask, this->chunks[2] < mask, this->chunks[3] < mask) .to_bitmask(); } simdutf_really_inline uint64_t gt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] > mask, this->chunks[1] > mask, this->chunks[2] > mask, this->chunks[3] > mask) .to_bitmask(); } simdutf_really_inline uint64_t gteq_unsigned(const uint8_t m) const { const simd8 mask = simd8::splat(m); return simd8x64(simd8(uint8x16_t(this->chunks[0])) >= mask, simd8(uint8x16_t(this->chunks[1])) >= mask, simd8(uint8x16_t(this->chunks[2])) >= mask, simd8(uint8x16_t(this->chunks[3])) >= mask) .to_bitmask(); } }; // struct simd8x64 /* begin file src/simdutf/arm64/simd16-inl.h */ template struct simd16; template > struct base_u16 { uint16x8_t value; /// the size of vector in bytes static const int SIZE = sizeof(value); /// the number of elements of type T a vector can hold static const int ELEMENTS = SIZE / sizeof(T); // Conversion from/to SIMD register simdutf_really_inline base_u16() = default; simdutf_really_inline base_u16(const uint16x8_t _value) : value(_value) {} simdutf_really_inline operator const uint16x8_t &() const { return this->value; } simdutf_really_inline operator uint16x8_t &() { return this->value; } // Bit operations simdutf_really_inline simd16 operator|(const simd16 other) const { return vorrq_u16(*this, other); } simdutf_really_inline simd16 operator&(const simd16 other) const { return vandq_u16(*this, other); } simdutf_really_inline simd16 operator^(const simd16 other) const { return veorq_u16(*this, other); } simdutf_really_inline simd16 bit_andnot(const simd16 other) const { return vbicq_u16(*this, other); } simdutf_really_inline simd16 operator~() const { return *this ^ 0xFFu; } simdutf_really_inline simd16 &operator|=(const simd16 other) { auto this_cast = static_cast *>(this); *this_cast = *this_cast | other; return *this_cast; } simdutf_really_inline simd16 &operator&=(const simd16 other) { auto this_cast = static_cast *>(this); *this_cast = *this_cast & other; return *this_cast; } simdutf_really_inline simd16 &operator^=(const simd16 other) { auto this_cast = static_cast *>(this); *this_cast = *this_cast ^ other; return *this_cast; } friend simdutf_really_inline Mask operator==(const simd16 lhs, const simd16 rhs) { return vceqq_u16(lhs, rhs); } template simdutf_really_inline simd16 prev(const simd16 prev_chunk) const { return vextq_u18(prev_chunk, *this, 8 - N); } }; template > struct base16 : base_u16 { typedef uint16_t bitmask_t; typedef uint32_t bitmask2_t; simdutf_really_inline base16() : base_u16() {} simdutf_really_inline base16(const uint16x8_t _value) : base_u16(_value) {} template simdutf_really_inline base16(const Pointer *ptr) : base16(vld1q_u16(ptr)) {} static const int SIZE = sizeof(base_u16::value); void dump() const { #ifdef SIMDUTF_LOGGING uint16_t temp[8]; vst1q_u16(temp, *this); printf("[%04x, %04x, %04x, %04x, %04x, %04x, %04x, %04x]\n", temp[0], temp[1], temp[2], temp[3], temp[4], temp[5], temp[6], temp[7]); #endif // SIMDUTF_LOGGING } template simdutf_really_inline simd16 prev(const simd16 prev_chunk) const { return vextq_u18(prev_chunk, *this, 8 - N); } }; // SIMD byte mask type (returned by things like eq and gt) template <> struct simd16 : base16 { static simdutf_really_inline simd16 splat(bool _value) { return vmovq_n_u16(uint16_t(-(!!_value))); } simdutf_really_inline simd16() : base16() {} simdutf_really_inline simd16(const uint16x8_t _value) : base16(_value) {} // Splat constructor simdutf_really_inline simd16(bool _value) : base16(splat(_value)) {} }; template struct base16_numeric : base16 { static simdutf_really_inline simd16 splat(T _value) { return vmovq_n_u16(_value); } static simdutf_really_inline simd16 zero() { return vdupq_n_u16(0); } static simdutf_really_inline simd16 load(const T values[8]) { return vld1q_u16(reinterpret_cast(values)); } simdutf_really_inline base16_numeric() : base16() {} simdutf_really_inline base16_numeric(const uint16x8_t _value) : base16(_value) {} // Store to array simdutf_really_inline void store(T dst[8]) const { return vst1q_u16(dst, *this); } // Override to distinguish from bool version simdutf_really_inline simd16 operator~() const { return *this ^ 0xFFu; } // Addition/subtraction are the same for signed and unsigned simdutf_really_inline simd16 operator+(const simd16 other) const { return vaddq_u16(*this, other); } simdutf_really_inline simd16 operator-(const simd16 other) const { return vsubq_u16(*this, other); } simdutf_really_inline simd16 &operator+=(const simd16 other) { *this = *this + other; return *static_cast *>(this); } simdutf_really_inline simd16 &operator-=(const simd16 other) { *this = *this - other; return *static_cast *>(this); } }; // Signed code units template <> struct simd16 : base16_numeric { simdutf_really_inline simd16() : base16_numeric() {} #ifndef SIMDUTF_REGULAR_VISUAL_STUDIO simdutf_really_inline simd16(const uint16x8_t _value) : base16_numeric(_value) {} #endif simdutf_really_inline simd16(const int16x8_t _value) : base16_numeric(vreinterpretq_u16_s16(_value)) {} // Splat constructor simdutf_really_inline simd16(int16_t _value) : simd16(splat(_value)) {} // Array constructor simdutf_really_inline simd16(const int16_t *values) : simd16(load(values)) {} simdutf_really_inline simd16(const char16_t *values) : simd16(load(reinterpret_cast(values))) {} simdutf_really_inline operator simd16() const; simdutf_really_inline operator const uint16x8_t &() const { return this->value; } simdutf_really_inline operator const int16x8_t() const { return vreinterpretq_s16_u16(this->value); } simdutf_really_inline int16_t max_val() const { return vmaxvq_s16(vreinterpretq_s16_u16(this->value)); } simdutf_really_inline int16_t min_val() const { return vminvq_s16(vreinterpretq_s16_u16(this->value)); } // Order-sensitive comparisons simdutf_really_inline simd16 max_val(const simd16 other) const { return vmaxq_s16(vreinterpretq_s16_u16(this->value), vreinterpretq_s16_u16(other.value)); } simdutf_really_inline simd16 min_val(const simd16 other) const { return vmaxq_s16(vreinterpretq_s16_u16(this->value), vreinterpretq_s16_u16(other.value)); } simdutf_really_inline simd16 operator>(const simd16 other) const { return vcgtq_s16(vreinterpretq_s16_u16(this->value), vreinterpretq_s16_u16(other.value)); } simdutf_really_inline simd16 operator<(const simd16 other) const { return vcltq_s16(vreinterpretq_s16_u16(this->value), vreinterpretq_s16_u16(other.value)); } }; // Unsigned code units template <> struct simd16 : base16_numeric { simdutf_really_inline simd16() : base16_numeric() {} simdutf_really_inline simd16(const uint16x8_t _value) : base16_numeric(_value) {} // Splat constructor simdutf_really_inline simd16(uint16_t _value) : simd16(splat(_value)) {} // Array constructor simdutf_really_inline simd16(const uint16_t *values) : simd16(load(values)) {} simdutf_really_inline simd16(const char16_t *values) : simd16(load(reinterpret_cast(values))) {} simdutf_really_inline int16_t max_val() const { return vmaxvq_u16(*this); } simdutf_really_inline int16_t min_val() const { return vminvq_u16(*this); } // Saturated math simdutf_really_inline simd16 saturating_add(const simd16 other) const { return vqaddq_u16(*this, other); } simdutf_really_inline simd16 saturating_sub(const simd16 other) const { return vqsubq_u16(*this, other); } // Order-specific operations simdutf_really_inline simd16 max_val(const simd16 other) const { return vmaxq_u16(*this, other); } simdutf_really_inline simd16 min_val(const simd16 other) const { return vminq_u16(*this, other); } // Same as >, but only guarantees true is nonzero (< guarantees true = -1) simdutf_really_inline simd16 gt_bits(const simd16 other) const { return this->saturating_sub(other); } // Same as <, but only guarantees true is nonzero (< guarantees true = -1) simdutf_really_inline simd16 lt_bits(const simd16 other) const { return other.saturating_sub(*this); } simdutf_really_inline simd16 operator<=(const simd16 other) const { return vcleq_u16(*this, other); } simdutf_really_inline simd16 operator>=(const simd16 other) const { return vcgeq_u16(*this, other); } simdutf_really_inline simd16 operator>(const simd16 other) const { return vcgtq_u16(*this, other); } simdutf_really_inline simd16 operator<(const simd16 other) const { return vcltq_u16(*this, other); } // Bit-specific operations simdutf_really_inline simd16 bits_not_set() const { return *this == uint16_t(0); } template simdutf_really_inline simd16 shr() const { return simd16(vshrq_n_u16(*this, N)); } template simdutf_really_inline simd16 shl() const { return simd16(vshlq_n_u16(*this, N)); } // Pack with the unsigned saturation of two uint16_t code units into single // uint8_t vector static simdutf_really_inline simd8 pack(const simd16 &v0, const simd16 &v1) { return vqmovn_high_u16(vqmovn_u16(v0), v1); } // Change the endianness simdutf_really_inline simd16 swap_bytes() const { return vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(*this))); } void dump() const { uint16_t temp[8]; vst1q_u16(temp, *this); printf("[%04x, %04x, %04x, %04x, %04x, %04x, %04x, %04x]\n", temp[0], temp[1], temp[2], temp[3], temp[4], temp[5], temp[6], temp[7]); } simdutf_really_inline uint32_t sum() const { return vaddlvq_u16(value); } }; simdutf_really_inline simd16::operator simd16() const { return this->value; } template struct simd16x32 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd16); static_assert(NUM_CHUNKS == 4, "ARM kernel should use four registers per 64-byte block."); simd16 chunks[NUM_CHUNKS]; simd16x32(const simd16x32 &o) = delete; // no copy allowed simd16x32 & operator=(const simd16 other) = delete; // no assignment allowed simd16x32() = delete; // no default constructor allowed simdutf_really_inline simd16x32(const simd16 chunk0, const simd16 chunk1, const simd16 chunk2, const simd16 chunk3) : chunks{chunk0, chunk1, chunk2, chunk3} {} simdutf_really_inline simd16x32(const T *ptr) : chunks{simd16::load(ptr), simd16::load(ptr + sizeof(simd16) / sizeof(T)), simd16::load(ptr + 2 * sizeof(simd16) / sizeof(T)), simd16::load(ptr + 3 * sizeof(simd16) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd16) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd16) * 1 / sizeof(T)); this->chunks[2].store(ptr + sizeof(simd16) * 2 / sizeof(T)); this->chunks[3].store(ptr + sizeof(simd16) * 3 / sizeof(T)); } simdutf_really_inline simd16 reduce_or() const { return (this->chunks[0] | this->chunks[1]) | (this->chunks[2] | this->chunks[3]); } simdutf_really_inline bool is_ascii() const { return reduce_or().is_ascii(); } simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { this->chunks[0].store_ascii_as_utf16(ptr + sizeof(simd16) * 0); this->chunks[1].store_ascii_as_utf16(ptr + sizeof(simd16) * 1); this->chunks[2].store_ascii_as_utf16(ptr + sizeof(simd16) * 2); this->chunks[3].store_ascii_as_utf16(ptr + sizeof(simd16) * 3); } simdutf_really_inline uint64_t to_bitmask() const { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint8x16_t bit_mask = simdutf_make_uint8x16_t(0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80); #else const uint8x16_t bit_mask = {0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80}; #endif // Add each of the elements next to each other, successively, to stuff each // 8 byte mask into one. uint8x16_t sum0 = vpaddq_u8( vreinterpretq_u8_u16(this->chunks[0] & vreinterpretq_u16_u8(bit_mask)), vreinterpretq_u8_u16(this->chunks[1] & vreinterpretq_u16_u8(bit_mask))); uint8x16_t sum1 = vpaddq_u8( vreinterpretq_u8_u16(this->chunks[2] & vreinterpretq_u16_u8(bit_mask)), vreinterpretq_u8_u16(this->chunks[3] & vreinterpretq_u16_u8(bit_mask))); sum0 = vpaddq_u8(sum0, sum1); sum0 = vpaddq_u8(sum0, sum0); return vgetq_lane_u64(vreinterpretq_u64_u8(sum0), 0); } simdutf_really_inline void swap_bytes() { this->chunks[0] = this->chunks[0].swap_bytes(); this->chunks[1] = this->chunks[1].swap_bytes(); this->chunks[2] = this->chunks[2].swap_bytes(); this->chunks[3] = this->chunks[3].swap_bytes(); } simdutf_really_inline uint64_t gt(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] > mask, this->chunks[1] > mask, this->chunks[2] > mask, this->chunks[3] > mask) .to_bitmask(); } simdutf_really_inline uint64_t lteq(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] <= mask, this->chunks[1] <= mask, this->chunks[2] <= mask, this->chunks[3] <= mask) .to_bitmask(); } simdutf_really_inline uint64_t not_in_range(const T low, const T high) const { const simd16 mask_low = simd16::splat(low); const simd16 mask_high = simd16::splat(high); return simd16x32( (this->chunks[0] > mask_high) | (this->chunks[0] < mask_low), (this->chunks[1] > mask_high) | (this->chunks[1] < mask_low), (this->chunks[2] > mask_high) | (this->chunks[2] < mask_low), (this->chunks[3] > mask_high) | (this->chunks[3] < mask_low)) .to_bitmask(); } }; // struct simd16x32 template <> simdutf_really_inline uint64_t simd16x32::not_in_range( const uint16_t low, const uint16_t high) const { const simd16 mask_low = simd16::splat(low); const simd16 mask_high = simd16::splat(high); simd16x32 x(simd16((this->chunks[0] > mask_high) | (this->chunks[0] < mask_low)), simd16((this->chunks[1] > mask_high) | (this->chunks[1] < mask_low)), simd16((this->chunks[2] > mask_high) | (this->chunks[2] < mask_low)), simd16((this->chunks[3] > mask_high) | (this->chunks[3] < mask_low))); return x.to_bitmask(); } simdutf_really_inline simd16 min(const simd16 a, simd16 b) { return vminq_u16(a.value, b.value); } /* end file src/simdutf/arm64/simd16-inl.h */ /* begin file src/simdutf/arm64/simd32-inl.h */ template struct simd32; template <> struct simd32 { static const size_t SIZE = sizeof(uint32x4_t); static const size_t ELEMENTS = SIZE / sizeof(uint32_t); uint32x4_t value; simdutf_really_inline simd32(const uint32x4_t v) : value(v) {} template simdutf_really_inline simd32(const Pointer *ptr) : value(vld1q_u32(reinterpret_cast(ptr))) {} simdutf_really_inline uint64_t sum() const { return vaddvq_u32(value); } simdutf_really_inline simd32 swap_bytes() const { return vreinterpretq_u32_u8(vrev32q_u8(vreinterpretq_u8_u32(value))); } template simdutf_really_inline simd32 shr() const { return vshrq_n_u32(value, N); } template simdutf_really_inline simd32 shl() const { return vshlq_n_u32(value, N); } void dump() const { #ifdef SIMDUTF_LOGGING uint32_t temp[4]; vst1q_u32(temp, value); printf("[%08x, %08x, %08x, %08x]\n", temp[0], temp[1], temp[2], temp[3]); #endif // SIMDUTF_LOGGING } // operators simdutf_really_inline simd32 &operator+=(const simd32 other) { value = vaddq_u32(value, other.value); return *this; } // static members simdutf_really_inline static simd32 zero() { return vdupq_n_u32(0); } simdutf_really_inline static simd32 splat(uint32_t v) { return vdupq_n_u32(v); } }; //---------------------------------------------------------------------- template <> struct simd32 { uint32x4_t value; simdutf_really_inline simd32(const uint32x4_t v) : value(v) {} simdutf_really_inline bool any() const { return vmaxvq_u32(value) != 0; } }; //---------------------------------------------------------------------- template simdutf_really_inline simd32 operator|(const simd32 a, const simd32 b) { return vorrq_u32(a.value, b.value); } simdutf_really_inline simd32 min(const simd32 a, const simd32 b) { return vminq_u32(a.value, b.value); } simdutf_really_inline simd32 max(const simd32 a, const simd32 b) { return vmaxq_u32(a.value, b.value); } simdutf_really_inline simd32 operator==(const simd32 a, uint32_t b) { return vceqq_u32(a.value, vdupq_n_u32(b)); } simdutf_really_inline simd32 operator&(const simd32 a, const simd32 b) { return vandq_u32(a.value, b.value); } simdutf_really_inline simd32 operator&(const simd32 a, uint32_t b) { return vandq_u32(a.value, vdupq_n_u32(b)); } simdutf_really_inline simd32 operator|(const simd32 a, uint32_t b) { return vorrq_u32(a.value, vdupq_n_u32(b)); } simdutf_really_inline simd32 operator+(const simd32 a, const simd32 b) { return vaddq_u32(a.value, b.value); } simdutf_really_inline simd32 operator-(const simd32 a, uint32_t b) { return vsubq_u32(a.value, vdupq_n_u32(b)); } simdutf_really_inline simd32 operator>=(const simd32 a, const simd32 b) { return vcgeq_u32(a.value, b.value); } simdutf_really_inline simd32 operator!(const simd32 v) { return vmvnq_u32(v.value); } simdutf_really_inline simd32 operator>(const simd32 a, const simd32 b) { return vcgtq_u32(a.value, b.value); } simdutf_really_inline simd32 select(const simd32 cond, const simd32 v_true, const simd32 v_false) { return vbslq_u32(cond.value, v_true.value, v_false.value); } /* end file src/simdutf/arm64/simd32-inl.h */ /* begin file src/simdutf/arm64/simd64-inl.h */ template struct simd64; template <> struct simd64 { uint64x2_t value; simdutf_really_inline simd64(const uint64x2_t v) : value(v) {} template simdutf_really_inline simd64(const Pointer *ptr) : value(vld1q_u64(reinterpret_cast(ptr))) {} simdutf_really_inline uint64_t sum() const { return vaddvq_u64(value); } // operators simdutf_really_inline simd64 &operator+=(const simd64 other) { value = vaddq_u64(value, other.value); return *this; } // static members simdutf_really_inline static simd64 zero() { return vdupq_n_u64(0); } simdutf_really_inline static simd64 splat(uint64_t v) { return vdupq_n_u64(v); } }; /* end file src/simdutf/arm64/simd64-inl.h */ simdutf_really_inline simd64 sum_8bytes(const simd8 v) { // We do it as 3 instructions. There might be a faster way. // We hope that these 3 instructions are cheap. uint16x8_t first_sum = vpaddlq_u8(v); uint32x4_t second_sum = vpaddlq_u16(first_sum); return vpaddlq_u32(second_sum); } } // namespace simd } // unnamed namespace } // namespace arm64 } // namespace simdutf #endif // SIMDUTF_ARM64_SIMD_H /* end file src/simdutf/arm64/simd.h */ /* begin file src/simdutf/arm64/end.h */ #undef SIMDUTF_SIMD_HAS_BYTEMASK /* end file src/simdutf/arm64/end.h */ #endif // SIMDUTF_IMPLEMENTATION_ARM64 #endif // SIMDUTF_ARM64_H /* end file src/simdutf/arm64.h */ /* begin file src/simdutf/icelake.h */ #ifndef SIMDUTF_ICELAKE_H #define SIMDUTF_ICELAKE_H #ifdef __has_include // How do we detect that a compiler supports vbmi2? // For sure if the following header is found, we are ok? #if __has_include() #define SIMDUTF_COMPILER_SUPPORTS_VBMI2 1 #endif #endif #ifdef _MSC_VER #if _MSC_VER >= 1930 // Visual Studio 2022 and up support VBMI2 under x64 even if the header // avx512vbmi2intrin.h is not found. // Visual Studio 2019 technically supports VBMI2, but the implementation // might be unreliable. Search for visualstudio2019icelakeissue in our // tests. #ifndef SIMDUTF_COMPILER_SUPPORTS_VBMI2 #define SIMDUTF_COMPILER_SUPPORTS_VBMI2 1 #endif #endif #endif #if SIMDUTF_GCC9OROLDER && SIMDUTF_IS_X86_64 #define SIMDUTF_IMPLEMENTATION_ICELAKE 0 #warning \ "You are using a legacy GCC compiler, we are disabling AVX-512 support" #endif // We allow icelake on x64 as long as the compiler is known to support VBMI2. #ifndef SIMDUTF_IMPLEMENTATION_ICELAKE #define SIMDUTF_IMPLEMENTATION_ICELAKE \ ((SIMDUTF_IS_X86_64) && (SIMDUTF_COMPILER_SUPPORTS_VBMI2)) #endif // To see why (__BMI__) && (__LZCNT__) are not part of this next line, see // https://github.com/simdutf/simdutf/issues/1247 #if ((SIMDUTF_IMPLEMENTATION_ICELAKE) && (SIMDUTF_IS_X86_64) && (__AVX2__) && \ (SIMDUTF_HAS_AVX512F && SIMDUTF_HAS_AVX512DQ && SIMDUTF_HAS_AVX512VL && \ SIMDUTF_HAS_AVX512VBMI2) && \ (!SIMDUTF_IS_32BITS)) #define SIMDUTF_CAN_ALWAYS_RUN_ICELAKE 1 #else #define SIMDUTF_CAN_ALWAYS_RUN_ICELAKE 0 #endif #if SIMDUTF_IMPLEMENTATION_ICELAKE #if SIMDUTF_CAN_ALWAYS_RUN_ICELAKE #define SIMDUTF_TARGET_ICELAKE #else #define SIMDUTF_TARGET_ICELAKE \ SIMDUTF_TARGET_REGION( \ "avx512f,avx512dq,avx512cd,avx512bw,avx512vbmi,avx512vbmi2," \ "avx512vl,avx2,bmi,bmi2,pclmul,lzcnt,popcnt,avx512vpopcntdq") #endif namespace simdutf { namespace icelake {} // namespace icelake } // namespace simdutf // // These two need to be included outside SIMDUTF_TARGET_REGION // /* begin file src/simdutf/icelake/intrinsics.h */ #ifndef SIMDUTF_ICELAKE_INTRINSICS_H #define SIMDUTF_ICELAKE_INTRINSICS_H #ifdef SIMDUTF_VISUAL_STUDIO // under clang within visual studio, this will include #include // visual studio or clang #include #else #if SIMDUTF_GCC11ORMORE // We should not get warnings while including yet we do // under some versions of GCC. // If the x86intrin.h header has uninitialized values that are problematic, // it is a GCC issue, we want to ignore these warnings. SIMDUTF_DISABLE_GCC_WARNING(-Wuninitialized) #endif #include // elsewhere #if SIMDUTF_GCC11ORMORE // cancels the suppression of the -Wuninitialized SIMDUTF_POP_DISABLE_WARNINGS #endif #ifndef _tzcnt_u64 #define _tzcnt_u64(x) __tzcnt_u64(x) #endif // _tzcnt_u64 #endif // SIMDUTF_VISUAL_STUDIO #ifdef SIMDUTF_CLANG_VISUAL_STUDIO /** * You are not supposed, normally, to include these * headers directly. Instead you should either include intrin.h * or x86intrin.h. However, when compiling with clang * under Windows (i.e., when _MSC_VER is set), these headers * only get included *if* the corresponding features are detected * from macros: * e.g., if __AVX2__ is set... in turn, we normally set these * macros by compiling against the corresponding architecture * (e.g., arch:AVX2, -mavx2, etc.) which compiles the whole * software with these advanced instructions. In simdutf, we * want to compile the whole program for a generic target, * and only target our specific kernels. As a workaround, * we directly include the needed headers. These headers would * normally guard against such usage, but we carefully included * (or ) before, so the headers * are fooled. */ #include // for _blsr_u64 #include // for _pext_u64, _pdep_u64 #include // for __lzcnt64 #include // for most things (AVX2, AVX512, _popcnt64) #include #include #include #include // Important: we need the AVX-512 headers: #include #include #include #include #include #include #include #include #include #include // unfortunately, we may not get _blsr_u64, but, thankfully, clang // has it as a macro. #ifndef _blsr_u64 // we roll our own #define _blsr_u64(n) ((n - 1) & n) #endif // _blsr_u64 #endif // SIMDUTF_CLANG_VISUAL_STUDIO #if defined(__GNUC__) && !defined(__clang__) #if __GNUC__ == 8 #define SIMDUTF_GCC8 1 #elif __GNUC__ == 9 #define SIMDUTF_GCC9 1 #endif // __GNUC__ == 8 || __GNUC__ == 9 #endif // defined(__GNUC__) && !defined(__clang__) #if SIMDUTF_GCC8 #pragma GCC push_options #pragma GCC target("avx512f") /** * GCC 8 fails to provide _mm512_set_epi8. We roll our own. */ inline __m512i _mm512_set_epi8(uint8_t a0, uint8_t a1, uint8_t a2, uint8_t a3, uint8_t a4, uint8_t a5, uint8_t a6, uint8_t a7, uint8_t a8, uint8_t a9, uint8_t a10, uint8_t a11, uint8_t a12, uint8_t a13, uint8_t a14, uint8_t a15, uint8_t a16, uint8_t a17, uint8_t a18, uint8_t a19, uint8_t a20, uint8_t a21, uint8_t a22, uint8_t a23, uint8_t a24, uint8_t a25, uint8_t a26, uint8_t a27, uint8_t a28, uint8_t a29, uint8_t a30, uint8_t a31, uint8_t a32, uint8_t a33, uint8_t a34, uint8_t a35, uint8_t a36, uint8_t a37, uint8_t a38, uint8_t a39, uint8_t a40, uint8_t a41, uint8_t a42, uint8_t a43, uint8_t a44, uint8_t a45, uint8_t a46, uint8_t a47, uint8_t a48, uint8_t a49, uint8_t a50, uint8_t a51, uint8_t a52, uint8_t a53, uint8_t a54, uint8_t a55, uint8_t a56, uint8_t a57, uint8_t a58, uint8_t a59, uint8_t a60, uint8_t a61, uint8_t a62, uint8_t a63) { return _mm512_set_epi64( uint64_t(a7) + (uint64_t(a6) << 8) + (uint64_t(a5) << 16) + (uint64_t(a4) << 24) + (uint64_t(a3) << 32) + (uint64_t(a2) << 40) + (uint64_t(a1) << 48) + (uint64_t(a0) << 56), uint64_t(a15) + (uint64_t(a14) << 8) + (uint64_t(a13) << 16) + (uint64_t(a12) << 24) + (uint64_t(a11) << 32) + (uint64_t(a10) << 40) + (uint64_t(a9) << 48) + (uint64_t(a8) << 56), uint64_t(a23) + (uint64_t(a22) << 8) + (uint64_t(a21) << 16) + (uint64_t(a20) << 24) + (uint64_t(a19) << 32) + (uint64_t(a18) << 40) + (uint64_t(a17) << 48) + (uint64_t(a16) << 56), uint64_t(a31) + (uint64_t(a30) << 8) + (uint64_t(a29) << 16) + (uint64_t(a28) << 24) + (uint64_t(a27) << 32) + (uint64_t(a26) << 40) + (uint64_t(a25) << 48) + (uint64_t(a24) << 56), uint64_t(a39) + (uint64_t(a38) << 8) + (uint64_t(a37) << 16) + (uint64_t(a36) << 24) + (uint64_t(a35) << 32) + (uint64_t(a34) << 40) + (uint64_t(a33) << 48) + (uint64_t(a32) << 56), uint64_t(a47) + (uint64_t(a46) << 8) + (uint64_t(a45) << 16) + (uint64_t(a44) << 24) + (uint64_t(a43) << 32) + (uint64_t(a42) << 40) + (uint64_t(a41) << 48) + (uint64_t(a40) << 56), uint64_t(a55) + (uint64_t(a54) << 8) + (uint64_t(a53) << 16) + (uint64_t(a52) << 24) + (uint64_t(a51) << 32) + (uint64_t(a50) << 40) + (uint64_t(a49) << 48) + (uint64_t(a48) << 56), uint64_t(a63) + (uint64_t(a62) << 8) + (uint64_t(a61) << 16) + (uint64_t(a60) << 24) + (uint64_t(a59) << 32) + (uint64_t(a58) << 40) + (uint64_t(a57) << 48) + (uint64_t(a56) << 56)); } #pragma GCC pop_options #endif // SIMDUTF_GCC8 #endif // SIMDUTF_HASWELL_INTRINSICS_H /* end file src/simdutf/icelake/intrinsics.h */ /* begin file src/simdutf/icelake/implementation.h */ #ifndef SIMDUTF_ICELAKE_IMPLEMENTATION_H #define SIMDUTF_ICELAKE_IMPLEMENTATION_H namespace simdutf { namespace icelake { namespace { using namespace simdutf; } class implementation final : public simdutf::implementation { public: simdutf_really_inline implementation() : simdutf::implementation( "icelake", "Intel AVX512 (AVX-512BW, AVX-512CD, AVX-512VL, AVX-512VBMI2 " "extensions)", internal::instruction_set::AVX2 | internal::instruction_set::BMI1 | internal::instruction_set::BMI2 | internal::instruction_set::AVX512BW | internal::instruction_set::AVX512CD | internal::instruction_set::AVX512VL | internal::instruction_set::AVX512VBMI2 | internal::instruction_set::AVX512VPOPCNTDQ) {} #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *input, size_t length) const noexcept final; #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept final; void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept final; void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *buf, size_t length, char16_t *output) const noexcept final; simdutf_warn_unused size_t count_utf16le(const char16_t *buf, size_t length) const noexcept; simdutf_warn_unused size_t count_utf16be(const char16_t *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) const noexcept; simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept; ; simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept; ; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept; size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept; const char *find(const char *start, const char *end, char character) const noexcept; const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept; #endif // SIMDUTF_FEATURE_BASE64 }; } // namespace icelake } // namespace simdutf #endif // SIMDUTF_ICELAKE_IMPLEMENTATION_H /* end file src/simdutf/icelake/implementation.h */ // // The rest need to be inside the region // /* begin file src/simdutf/icelake/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "icelake" // #define SIMDUTF_IMPLEMENTATION icelake #if SIMDUTF_CAN_ALWAYS_RUN_ICELAKE // nothing needed. #else SIMDUTF_TARGET_ICELAKE #endif #if SIMDUTF_GCC11ORMORE // workaround for // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105593 // clang-format off SIMDUTF_DISABLE_GCC_WARNING(-Wmaybe-uninitialized) // clang-format on #endif // end of workaround /* end file src/simdutf/icelake/begin.h */ // Declarations /* begin file src/simdutf/icelake/bitmanipulation.h */ #ifndef SIMDUTF_ICELAKE_BITMANIPULATION_H #define SIMDUTF_ICELAKE_BITMANIPULATION_H namespace simdutf { namespace icelake { namespace { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO simdutf_really_inline unsigned __int64 count_ones(uint64_t input_num) { // note: we do not support legacy 32-bit Windows return __popcnt64(input_num); // Visual Studio wants two underscores } #else simdutf_really_inline long long int count_ones(uint64_t input_num) { return _popcnt64(input_num); } #endif #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO simdutf_really_inline unsigned __int64 count_ones32(uint32_t input_num) { // note: we do not support legacy 32-bit Windows return __popcnt(input_num); // Visual Studio wants two underscores } #else simdutf_really_inline long long int count_ones32(uint32_t input_num) { return _popcnt32(input_num); } #endif #if SIMDUTF_NEED_TRAILING_ZEROES // simdutf_really_inline int trailing_zeroes(uint64_t input_num) { // #if SIMDUTF_REGULAR_VISUAL_STUDIO // return (int)_tzcnt_u64(input_num); // #else // SIMDUTF_REGULAR_VISUAL_STUDIO // return __builtin_ctzll(input_num); // #endif // SIMDUTF_REGULAR_VISUAL_STUDIO // } #endif } // unnamed namespace } // namespace icelake } // namespace simdutf #endif // SIMDUTF_ICELAKE_BITMANIPULATION_H /* end file src/simdutf/icelake/bitmanipulation.h */ /* begin file src/simdutf/icelake/simd.h */ #ifndef SIMDUTF_ICELAKE_SIMD_H #define SIMDUTF_ICELAKE_SIMD_H namespace simdutf { namespace icelake { namespace { namespace simd { /* begin file src/simdutf/icelake/simd16-inl.h */ template struct simd16; template <> struct simd16 { static const size_t SIZE = sizeof(__m512i); static const size_t ELEMENTS = SIZE / sizeof(uint16_t); template static simdutf_really_inline simd16 load(const Pointer *ptr) { return simd16(ptr); } __m512i value; simdutf_really_inline simd16(const __m512i v) : value(v) {} template simdutf_really_inline simd16(const Pointer *ptr) : value(_mm512_loadu_si512(reinterpret_cast(ptr))) {} // operators simdutf_really_inline simd16 &operator+=(const simd16 other) { value = _mm512_add_epi32(value, other.value); return *this; } simdutf_really_inline simd16 &operator-=(const simd16 other) { value = _mm512_sub_epi32(value, other.value); return *this; } // methods simdutf_really_inline simd16 swap_bytes() const { const __m512i byteflip = _mm512_setr_epi64( 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); return _mm512_shuffle_epi8(value, byteflip); } simdutf_really_inline uint64_t sum() const { const auto lo = _mm512_and_si512(value, _mm512_set1_epi32(0xffff)); const auto hi = _mm512_srli_epi32(value, 16); const auto sum32 = _mm512_add_epi32(lo, hi); return _mm512_reduce_add_epi32(sum32); } // static members simdutf_really_inline static simd16 zero() { return _mm512_setzero_si512(); } simdutf_really_inline static simd16 splat(uint16_t v) { return _mm512_set1_epi16(v); } }; template <> struct simd16 { __mmask32 value; simdutf_really_inline simd16(const __mmask32 v) : value(v) {} }; // ------------------------------------------------------------ simdutf_really_inline simd16 min(const simd16 b, const simd16 a) { return _mm512_min_epu16(a.value, b.value); } simdutf_really_inline simd16 operator&(const simd16 a, uint16_t b) { return _mm512_and_si512(a.value, _mm512_set1_epi16(b)); } simdutf_really_inline simd16 operator^(const simd16 a, uint16_t b) { return _mm512_xor_si512(a.value, _mm512_set1_epi16(b)); } simdutf_really_inline simd16 operator^(const simd16 a, const simd16 b) { return _mm512_xor_si512(a.value, b.value); } simdutf_really_inline simd16 operator==(const simd16 a, uint16_t b) { return _mm512_cmpeq_epi16_mask(a.value, _mm512_set1_epi16(b)); } /* end file src/simdutf/icelake/simd16-inl.h */ /* begin file src/simdutf/icelake/simd32-inl.h */ template struct simd32; template <> struct simd32 { static const size_t SIZE = sizeof(__m512i); static const size_t ELEMENTS = SIZE / sizeof(uint32_t); __m512i value; simdutf_really_inline simd32(const __m512i v) : value(v) {} template simdutf_really_inline simd32(const Pointer *ptr) : value(_mm512_loadu_si512(reinterpret_cast(ptr))) {} uint64_t sum() const { const __m512i mask = _mm512_set1_epi64(0xffffffff); const __m512i t0 = _mm512_and_si512(value, mask); const __m512i t1 = _mm512_srli_epi64(value, 32); const __m512i t2 = _mm512_add_epi64(t0, t1); return _mm512_reduce_add_epi64(t2); } // operators simdutf_really_inline simd32 &operator+=(const simd32 other) { value = _mm512_add_epi32(value, other.value); return *this; } // static members simdutf_really_inline static simd32 zero() { return _mm512_setzero_si512(); } simdutf_really_inline static simd32 splat(uint32_t v) { return _mm512_set1_epi32(v); } }; simdutf_really_inline simd32 min(const simd32 b, const simd32 a) { return _mm512_min_epu32(a.value, b.value); } simdutf_really_inline simd32 operator&(const simd32 b, const simd32 a) { return _mm512_and_si512(a.value, b.value); } /* end file src/simdutf/icelake/simd32-inl.h */ } // namespace simd } // unnamed namespace } // namespace icelake } // namespace simdutf #endif // SIMDUTF_ICELAKE_SIMD_H /* end file src/simdutf/icelake/simd.h */ /* begin file src/simdutf/icelake/end.h */ #if SIMDUTF_CAN_ALWAYS_RUN_ICELAKE // nothing needed. #else SIMDUTF_UNTARGET_REGION #endif #if SIMDUTF_GCC11ORMORE // workaround for // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105593 SIMDUTF_POP_DISABLE_WARNINGS #endif // end of workaround /* end file src/simdutf/icelake/end.h */ #endif // SIMDUTF_IMPLEMENTATION_ICELAKE #endif // SIMDUTF_ICELAKE_H /* end file src/simdutf/icelake.h */ /* begin file src/simdutf/haswell.h */ #ifndef SIMDUTF_HASWELL_H #define SIMDUTF_HASWELL_H #ifdef SIMDUTF_WESTMERE_H #error "haswell.h must be included before westmere.h" #endif #ifdef SIMDUTF_FALLBACK_H #error "haswell.h must be included before fallback.h" #endif // Default Haswell to on if this is x86-64. Even if we are not compiled for it, // it could be selected at runtime. #ifndef SIMDUTF_IMPLEMENTATION_HASWELL // // You do not want to restrict it like so: SIMDUTF_IS_X86_64 && __AVX2__ // because we want to rely on *runtime dispatch*. // #if SIMDUTF_CAN_ALWAYS_RUN_ICELAKE #define SIMDUTF_IMPLEMENTATION_HASWELL 0 #else #define SIMDUTF_IMPLEMENTATION_HASWELL (SIMDUTF_IS_X86_64) #endif #endif // To see why (__BMI__) && (__LZCNT__) are not part of this next line, see // https://github.com/simdutf/simdutf/issues/1247 #if ((SIMDUTF_IMPLEMENTATION_HASWELL) && (SIMDUTF_IS_X86_64) && (__AVX2__)) #define SIMDUTF_CAN_ALWAYS_RUN_HASWELL 1 #else #define SIMDUTF_CAN_ALWAYS_RUN_HASWELL 0 #endif #if SIMDUTF_IMPLEMENTATION_HASWELL #define SIMDUTF_TARGET_HASWELL SIMDUTF_TARGET_REGION("avx2,bmi,lzcnt,popcnt") namespace simdutf { /** * Implementation for Haswell (Intel AVX2). */ namespace haswell {} // namespace haswell } // namespace simdutf // // These two need to be included outside SIMDUTF_TARGET_REGION // /* begin file src/simdutf/haswell/implementation.h */ #ifndef SIMDUTF_HASWELL_IMPLEMENTATION_H #define SIMDUTF_HASWELL_IMPLEMENTATION_H // The constructor may be executed on any host, so we take care not to use // SIMDUTF_TARGET_REGION namespace simdutf { namespace haswell { using namespace simdutf; class implementation final : public simdutf::implementation { public: simdutf_really_inline implementation() : simdutf::implementation("haswell", "Intel/AMD AVX2", internal::instruction_set::AVX2 | internal::instruction_set::BMI1 | internal::instruction_set::BMI2) {} #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *input, size_t length) const noexcept final; #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *buf, size_t length, char16_t *output) const noexcept final; simdutf_warn_unused size_t count_utf16le(const char16_t *buf, size_t length) const noexcept; simdutf_warn_unused size_t count_utf16be(const char16_t *buf, size_t length) const noexcept; void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept final; void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) const noexcept; simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept; ; simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept; ; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept; size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept; const char *find(const char *start, const char *end, char character) const noexcept; const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept; #endif // SIMDUTF_FEATURE_BASE64 }; } // namespace haswell } // namespace simdutf #endif // SIMDUTF_HASWELL_IMPLEMENTATION_H /* end file src/simdutf/haswell/implementation.h */ /* begin file src/simdutf/haswell/intrinsics.h */ #ifndef SIMDUTF_HASWELL_INTRINSICS_H #define SIMDUTF_HASWELL_INTRINSICS_H #ifdef SIMDUTF_VISUAL_STUDIO // under clang within visual studio, this will include #include // visual studio or clang #else #if SIMDUTF_GCC11ORMORE // We should not get warnings while including yet we do // under some versions of GCC. // If the x86intrin.h header has uninitialized values that are problematic, // it is a GCC issue, we want to ignore these warnings. SIMDUTF_DISABLE_GCC_WARNING(-Wuninitialized) #endif #include // elsewhere #if SIMDUTF_GCC11ORMORE // cancels the suppression of the -Wuninitialized SIMDUTF_POP_DISABLE_WARNINGS #endif #endif // SIMDUTF_VISUAL_STUDIO #ifdef SIMDUTF_CLANG_VISUAL_STUDIO /** * You are not supposed, normally, to include these * headers directly. Instead you should either include intrin.h * or x86intrin.h. However, when compiling with clang * under Windows (i.e., when _MSC_VER is set), these headers * only get included *if* the corresponding features are detected * from macros: * e.g., if __AVX2__ is set... in turn, we normally set these * macros by compiling against the corresponding architecture * (e.g., arch:AVX2, -mavx2, etc.) which compiles the whole * software with these advanced instructions. In simdutf, we * want to compile the whole program for a generic target, * and only target our specific kernels. As a workaround, * we directly include the needed headers. These headers would * normally guard against such usage, but we carefully included * (or ) before, so the headers * are fooled. */ #include // for _blsr_u64 #include // for __lzcnt64 #include // for most things (AVX2, AVX512, _popcnt64) #include #include #include #include // unfortunately, we may not get _blsr_u64, but, thankfully, clang // has it as a macro. #ifndef _blsr_u64 // we roll our own #define _blsr_u64(n) (((n) - 1) & (n)) #endif // _blsr_u64 // Same issue with _blsmsk_u32: #ifndef _blsmsk_u32 // we roll our own #define _blsmsk_u32(n) (((n) - 1) ^ (n)) #endif // _blsmsk_u32 #endif // SIMDUTF_CLANG_VISUAL_STUDIO #endif // SIMDUTF_HASWELL_INTRINSICS_H /* end file src/simdutf/haswell/intrinsics.h */ // // The rest need to be inside the region // /* begin file src/simdutf/haswell/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "haswell" // #define SIMDUTF_IMPLEMENTATION haswell #define SIMDUTF_SIMD_HAS_BYTEMASK 1 #if SIMDUTF_CAN_ALWAYS_RUN_HASWELL // nothing needed. #else SIMDUTF_TARGET_HASWELL #endif #if SIMDUTF_GCC11ORMORE // workaround for // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105593 // clang-format off SIMDUTF_DISABLE_GCC_WARNING(-Wmaybe-uninitialized) // clang-format on #endif // end of workaround /* end file src/simdutf/haswell/begin.h */ // Declarations /* begin file src/simdutf/haswell/bitmanipulation.h */ #ifndef SIMDUTF_HASWELL_BITMANIPULATION_H #define SIMDUTF_HASWELL_BITMANIPULATION_H namespace simdutf { namespace haswell { namespace { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO simdutf_really_inline unsigned __int64 count_ones(uint64_t input_num) { // note: we do not support legacy 32-bit Windows return __popcnt64(input_num); // Visual Studio wants two underscores } #else simdutf_really_inline long long int count_ones(uint64_t input_num) { return _popcnt64(input_num); } #endif #if SIMDUTF_NEED_TRAILING_ZEROES simdutf_really_inline int trailing_zeroes(uint64_t input_num) { #if SIMDUTF_REGULAR_VISUAL_STUDIO return (int)_tzcnt_u64(input_num); #else // SIMDUTF_REGULAR_VISUAL_STUDIO return __builtin_ctzll(input_num); #endif // SIMDUTF_REGULAR_VISUAL_STUDIO } #endif template bool is_power_of_two(T x) { return (x & (x - 1)) == 0; } } // unnamed namespace } // namespace haswell } // namespace simdutf #endif // SIMDUTF_HASWELL_BITMANIPULATION_H /* end file src/simdutf/haswell/bitmanipulation.h */ /* begin file src/simdutf/haswell/simd.h */ #ifndef SIMDUTF_HASWELL_SIMD_H #define SIMDUTF_HASWELL_SIMD_H namespace simdutf { namespace haswell { namespace { namespace simd { // Forward-declared so they can be used by splat and friends. template struct base { __m256i value; // Zero constructor simdutf_really_inline base() : value{__m256i()} {} // Conversion from SIMD register simdutf_really_inline base(const __m256i _value) : value(_value) {} simdutf_really_inline operator const __m256i &() const { return this->value; } template simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { __m256i first = _mm256_cvtepu8_epi16(_mm256_castsi256_si128(*this)); __m256i second = _mm256_cvtepu8_epi16(_mm256_extractf128_si256(*this, 1)); if (big_endian) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 17, 16, 19, 18, 21, 20, 23, 22, 25, 24, 27, 26, 29, 28, 31, 30); first = _mm256_shuffle_epi8(first, swap); second = _mm256_shuffle_epi8(second, swap); } _mm256_storeu_si256(reinterpret_cast<__m256i *>(ptr), first); _mm256_storeu_si256(reinterpret_cast<__m256i *>(ptr + 16), second); } simdutf_really_inline void store_ascii_as_utf32(char32_t *ptr) const { _mm256_storeu_si256(reinterpret_cast<__m256i *>(ptr), _mm256_cvtepu8_epi32(_mm256_castsi256_si128(*this))); _mm256_storeu_si256(reinterpret_cast<__m256i *>(ptr + 8), _mm256_cvtepu8_epi32(_mm256_castsi256_si128( _mm256_srli_si256(*this, 8)))); _mm256_storeu_si256( reinterpret_cast<__m256i *>(ptr + 16), _mm256_cvtepu8_epi32(_mm256_extractf128_si256(*this, 1))); _mm256_storeu_si256(reinterpret_cast<__m256i *>(ptr + 24), _mm256_cvtepu8_epi32(_mm_srli_si128( _mm256_extractf128_si256(*this, 1), 8))); } // Bit operations simdutf_really_inline Child operator|(const Child other) const { return _mm256_or_si256(*this, other); } simdutf_really_inline Child operator&(const Child other) const { return _mm256_and_si256(*this, other); } simdutf_really_inline Child operator^(const Child other) const { return _mm256_xor_si256(*this, other); } simdutf_really_inline Child &operator|=(const Child other) { auto this_cast = static_cast(this); *this_cast = *this_cast | other; return *this_cast; } }; // Forward-declared so they can be used by splat and friends. template struct simd8; template > struct base8 : base> { simdutf_really_inline base8() : base>() {} simdutf_really_inline base8(const __m256i _value) : base>(_value) {} friend simdutf_always_inline Mask operator==(const simd8 lhs, const simd8 rhs) { return _mm256_cmpeq_epi8(lhs, rhs); } static const int SIZE = sizeof(base::value); template simdutf_really_inline simd8 prev(const simd8 prev_chunk) const { return _mm256_alignr_epi8( *this, _mm256_permute2x128_si256(prev_chunk, *this, 0x21), 16 - N); } }; // SIMD byte mask type (returned by things like eq and gt) template <> struct simd8 : base8 { static simdutf_really_inline simd8 splat(bool _value) { return _mm256_set1_epi8(uint8_t(-(!!_value))); } simdutf_really_inline simd8(const __m256i _value) : base8(_value) {} simdutf_really_inline simd8(bool _value) : base8(splat(_value)) {} simdutf_really_inline uint32_t to_bitmask() const { return uint32_t(_mm256_movemask_epi8(value)); } }; template struct base8_numeric : base8 { static simdutf_really_inline simd8 splat(T _value) { return _mm256_set1_epi8(_value); } static simdutf_really_inline simd8 zero() { return _mm256_setzero_si256(); } static simdutf_really_inline simd8 load(const T values[32]) { return _mm256_loadu_si256(reinterpret_cast(values)); } // Repeat 16 values as many times as necessary (usually for lookup tables) static simdutf_really_inline simd8 repeat_16(T v0, T v1, T v2, T v3, T v4, T v5, T v6, T v7, T v8, T v9, T v10, T v11, T v12, T v13, T v14, T v15) { return simd8(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15); } simdutf_really_inline base8_numeric() : base8() {} simdutf_really_inline base8_numeric(const __m256i _value) : base8(_value) {} // Store to array simdutf_really_inline void store(T dst[32]) const { return _mm256_storeu_si256(reinterpret_cast<__m256i *>(dst), *this); } // Addition/subtraction are the same for signed and unsigned simdutf_really_inline simd8 operator-(const simd8 other) const { return _mm256_sub_epi8(*this, other); } simdutf_really_inline simd8 &operator-=(const simd8 other) { *this = *this - other; return *static_cast *>(this); } // Override to distinguish from bool version simdutf_really_inline simd8 operator~() const { return *this ^ 0xFFu; } // Perform a lookup assuming the value is between 0 and 16 (undefined behavior // for out of range values) template simdutf_really_inline simd8 lookup_16(simd8 lookup_table) const { return _mm256_shuffle_epi8(lookup_table, *this); } template simdutf_really_inline simd8 lookup_16(L replace0, L replace1, L replace2, L replace3, L replace4, L replace5, L replace6, L replace7, L replace8, L replace9, L replace10, L replace11, L replace12, L replace13, L replace14, L replace15) const { return lookup_16(simd8::repeat_16( replace0, replace1, replace2, replace3, replace4, replace5, replace6, replace7, replace8, replace9, replace10, replace11, replace12, replace13, replace14, replace15)); } }; // Signed bytes template <> struct simd8 : base8_numeric { simdutf_really_inline simd8() : base8_numeric() {} simdutf_really_inline simd8(const __m256i _value) : base8_numeric(_value) {} // Splat constructor simdutf_really_inline simd8(int8_t _value) : simd8(splat(_value)) {} // Array constructor simdutf_really_inline simd8(const int8_t values[32]) : simd8(load(values)) {} simdutf_really_inline operator simd8() const; simdutf_really_inline bool is_ascii() const { return _mm256_movemask_epi8(*this) == 0; } // Order-sensitive comparisons simdutf_really_inline simd8 operator>(const simd8 other) const { return _mm256_cmpgt_epi8(*this, other); } simdutf_really_inline simd8 operator<(const simd8 other) const { return _mm256_cmpgt_epi8(other, *this); } }; // Unsigned bytes template <> struct simd8 : base8_numeric { simdutf_really_inline simd8() : base8_numeric() {} simdutf_really_inline simd8(const __m256i _value) : base8_numeric(_value) {} // Splat constructor simdutf_really_inline simd8(uint8_t _value) : simd8(splat(_value)) {} // Array constructor simdutf_really_inline simd8(const uint8_t values[32]) : simd8(load(values)) {} // Member-by-member initialization simdutf_really_inline simd8(uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15, uint8_t v16, uint8_t v17, uint8_t v18, uint8_t v19, uint8_t v20, uint8_t v21, uint8_t v22, uint8_t v23, uint8_t v24, uint8_t v25, uint8_t v26, uint8_t v27, uint8_t v28, uint8_t v29, uint8_t v30, uint8_t v31) : simd8(_mm256_setr_epi8(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31)) {} // Saturated math simdutf_really_inline simd8 saturating_sub(const simd8 other) const { return _mm256_subs_epu8(*this, other); } // Order-specific operations simdutf_really_inline simd8 min_val(const simd8 other) const { return _mm256_min_epu8(other, *this); } // Same as >, but only guarantees true is nonzero (< guarantees true = -1) simdutf_really_inline simd8 gt_bits(const simd8 other) const { return this->saturating_sub(other); } simdutf_really_inline simd8 operator>=(const simd8 other) const { return other.min_val(*this) == other; } // Bit-specific operations simdutf_really_inline bool is_ascii() const { return _mm256_movemask_epi8(*this) == 0; } simdutf_really_inline bool bits_not_set_anywhere() const { return _mm256_testz_si256(*this, *this); } simdutf_really_inline bool any_bits_set_anywhere() const { return !bits_not_set_anywhere(); } template simdutf_really_inline simd8 shr() const { return simd8(_mm256_srli_epi16(*this, N)) & uint8_t(0xFFu >> N); } simdutf_really_inline uint64_t sum_bytes() const { const auto tmp = _mm256_sad_epu8(value, _mm256_setzero_si256()); return _mm256_extract_epi64(tmp, 0) + _mm256_extract_epi64(tmp, 1) + _mm256_extract_epi64(tmp, 2) + _mm256_extract_epi64(tmp, 3); } }; simdutf_really_inline simd8::operator simd8() const { return this->value; } template struct simd8x64 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd8); static_assert(NUM_CHUNKS == 2, "Haswell kernel should use two registers per 64-byte block."); simd8 chunks[NUM_CHUNKS]; simd8x64(const simd8x64 &o) = delete; // no copy allowed simd8x64 & operator=(const simd8 other) = delete; // no assignment allowed simd8x64() = delete; // no default constructor allowed simdutf_really_inline simd8x64(const simd8 chunk0, const simd8 chunk1) : chunks{chunk0, chunk1} {} simdutf_really_inline simd8x64(const T *ptr) : chunks{simd8::load(ptr), simd8::load(ptr + sizeof(simd8) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd8) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd8) * 1 / sizeof(T)); } simdutf_really_inline uint64_t to_bitmask() const { uint64_t r_lo = uint32_t(this->chunks[0].to_bitmask()); uint64_t r_hi = this->chunks[1].to_bitmask(); return r_lo | (r_hi << 32); } simdutf_really_inline simd8x64 &operator|=(const simd8x64 &other) { this->chunks[0] |= other.chunks[0]; this->chunks[1] |= other.chunks[1]; return *this; } simdutf_really_inline simd8 reduce_or() const { return this->chunks[0] | this->chunks[1]; } simdutf_really_inline bool is_ascii() const { return this->reduce_or().is_ascii(); } template simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { this->chunks[0].template store_ascii_as_utf16(ptr + sizeof(simd8) * 0); this->chunks[1].template store_ascii_as_utf16(ptr + sizeof(simd8) * 1); } simdutf_really_inline void store_ascii_as_utf32(char32_t *ptr) const { this->chunks[0].store_ascii_as_utf32(ptr + sizeof(simd8) * 0); this->chunks[1].store_ascii_as_utf32(ptr + sizeof(simd8) * 1); } simdutf_really_inline uint64_t in_range(const T low, const T high) const { const simd8 mask_low = simd8::splat(low); const simd8 mask_high = simd8::splat(high); return simd8x64( (this->chunks[0] <= mask_high) & (this->chunks[0] >= mask_low), (this->chunks[1] <= mask_high) & (this->chunks[1] >= mask_low)) .to_bitmask(); } simdutf_really_inline uint64_t lt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] < mask, this->chunks[1] < mask) .to_bitmask(); } simdutf_really_inline uint64_t gt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] > mask, this->chunks[1] > mask) .to_bitmask(); } simdutf_really_inline uint64_t eq(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] == mask, this->chunks[1] == mask) .to_bitmask(); } simdutf_really_inline uint64_t gteq_unsigned(const uint8_t m) const { const simd8 mask = simd8::splat(m); return simd8x64((simd8(__m256i(this->chunks[0])) >= mask), (simd8(__m256i(this->chunks[1])) >= mask)) .to_bitmask(); } }; // struct simd8x64 /* begin file src/simdutf/haswell/simd16-inl.h */ #ifdef __GNUC__ #if __GNUC__ < 8 #define _mm256_set_m128i(xmm1, xmm2) \ _mm256_permute2f128_si256(_mm256_castsi128_si256(xmm1), \ _mm256_castsi128_si256(xmm2), 2) #define _mm256_setr_m128i(xmm2, xmm1) \ _mm256_permute2f128_si256(_mm256_castsi128_si256(xmm1), \ _mm256_castsi128_si256(xmm2), 2) #endif #endif template struct simd16; template > struct base16 : base> { using bitmask_type = uint32_t; simdutf_really_inline base16() : base>() {} simdutf_really_inline base16(const __m256i _value) : base>(_value) {} template simdutf_really_inline base16(const Pointer *ptr) : base16(_mm256_loadu_si256(reinterpret_cast(ptr))) {} friend simdutf_always_inline Mask operator==(const simd16 lhs, const simd16 rhs) { return _mm256_cmpeq_epi16(lhs, rhs); } /// the size of vector in bytes static const int SIZE = sizeof(base>::value); /// the number of elements of type T a vector can hold static const int ELEMENTS = SIZE / sizeof(T); }; // SIMD byte mask type (returned by things like eq and gt) template <> struct simd16 : base16 { static simdutf_really_inline simd16 splat(bool _value) { return _mm256_set1_epi16(uint16_t(-(!!_value))); } simdutf_really_inline simd16() : base16() {} simdutf_really_inline simd16(const __m256i _value) : base16(_value) {} // Splat constructor simdutf_really_inline simd16(bool _value) : base16(splat(_value)) {} simdutf_really_inline bitmask_type to_bitmask() const { return _mm256_movemask_epi8(*this); } simdutf_really_inline simd16 operator~() const { return *this ^ true; } }; template struct base16_numeric : base16 { static simdutf_really_inline simd16 splat(T _value) { return _mm256_set1_epi16(_value); } static simdutf_really_inline simd16 zero() { return _mm256_setzero_si256(); } static simdutf_really_inline simd16 load(const T values[8]) { return _mm256_loadu_si256(reinterpret_cast(values)); } simdutf_really_inline base16_numeric() : base16() {} simdutf_really_inline base16_numeric(const __m256i _value) : base16(_value) {} // Store to array simdutf_really_inline void store(T dst[8]) const { return _mm256_storeu_si256(reinterpret_cast<__m256i *>(dst), *this); } // Override to distinguish from bool version simdutf_really_inline simd16 operator~() const { return *this ^ 0xFFFFu; } // Addition/subtraction are the same for signed and unsigned simdutf_really_inline simd16 operator+(const simd16 other) const { return _mm256_add_epi16(*this, other); } simdutf_really_inline simd16 &operator+=(const simd16 other) { *this = *this + other; return *static_cast *>(this); } }; // Unsigned code units template <> struct simd16 : base16_numeric { simdutf_really_inline simd16() : base16_numeric() {} simdutf_really_inline simd16(const __m256i _value) : base16_numeric(_value) {} // Splat constructor simdutf_really_inline simd16(uint16_t _value) : simd16(splat(_value)) {} // Array constructor simdutf_really_inline simd16(const uint16_t *values) : simd16(load(values)) {} simdutf_really_inline simd16(const char16_t *values) : simd16(load(reinterpret_cast(values))) {} // Order-specific operations simdutf_really_inline simd16 max_val(const simd16 other) const { return _mm256_max_epu16(*this, other); } simdutf_really_inline simd16 min_val(const simd16 other) const { return _mm256_min_epu16(*this, other); } // Same as <, but only guarantees true is nonzero (< guarantees true = -1) simdutf_really_inline simd16 operator<=(const simd16 other) const { return other.max_val(*this) == other; } simdutf_really_inline simd16 operator>=(const simd16 other) const { return other.min_val(*this) == other; } // Bit-specific operations simdutf_really_inline simd16 bits_not_set() const { return *this == uint16_t(0); } simdutf_really_inline simd16 any_bits_set() const { return ~this->bits_not_set(); } template simdutf_really_inline simd16 shr() const { return simd16(_mm256_srli_epi16(*this, N)); } // Change the endianness simdutf_really_inline simd16 swap_bytes() const { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 17, 16, 19, 18, 21, 20, 23, 22, 25, 24, 27, 26, 29, 28, 31, 30); return _mm256_shuffle_epi8(*this, swap); } // Pack with the unsigned saturation of two uint16_t code units into single // uint8_t vector static simdutf_really_inline simd8 pack(const simd16 &v0, const simd16 &v1) { // Note: the AVX2 variant of pack operates on 128-bit lanes, thus // we have to shuffle lanes in order to produce bytes in the // correct order. // get the 0th lanes const __m128i lo_0 = _mm256_extracti128_si256(v0, 0); const __m128i lo_1 = _mm256_extracti128_si256(v1, 0); // get the 1st lanes const __m128i hi_0 = _mm256_extracti128_si256(v0, 1); const __m128i hi_1 = _mm256_extracti128_si256(v1, 1); // build new vectors (shuffle lanes) const __m256i t0 = _mm256_set_m128i(lo_1, lo_0); const __m256i t1 = _mm256_set_m128i(hi_1, hi_0); // pack code units in linear order from v0 and v1 return _mm256_packus_epi16(t0, t1); } simdutf_really_inline uint64_t sum() const { const auto lo_u16 = _mm256_and_si256(value, _mm256_set1_epi32(0x0000ffff)); const auto hi_u16 = _mm256_srli_epi32(value, 16); const auto sum_u32 = _mm256_add_epi32(lo_u16, hi_u16); const auto lo_u32 = _mm256_and_si256(sum_u32, _mm256_set1_epi64x(0xffffffff)); const auto hi_u32 = _mm256_srli_epi64(sum_u32, 32); const auto sum_u64 = _mm256_add_epi64(lo_u32, hi_u32); return uint64_t(_mm256_extract_epi64(sum_u64, 0)) + uint64_t(_mm256_extract_epi64(sum_u64, 1)) + uint64_t(_mm256_extract_epi64(sum_u64, 2)) + uint64_t(_mm256_extract_epi64(sum_u64, 3)); } }; template struct simd16x32 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd16); static_assert(NUM_CHUNKS == 2, "Haswell kernel should use two registers per 64-byte block."); simd16 chunks[NUM_CHUNKS]; simd16x32(const simd16x32 &o) = delete; // no copy allowed simd16x32 & operator=(const simd16 other) = delete; // no assignment allowed simd16x32() = delete; // no default constructor allowed simdutf_really_inline simd16x32(const simd16 chunk0, const simd16 chunk1) : chunks{chunk0, chunk1} {} simdutf_really_inline simd16x32(const T *ptr) : chunks{simd16::load(ptr), simd16::load(ptr + sizeof(simd16) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd16) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd16) * 1 / sizeof(T)); } simdutf_really_inline uint64_t to_bitmask() const { uint64_t r_lo = uint32_t(this->chunks[0].to_bitmask()); uint64_t r_hi = this->chunks[1].to_bitmask(); return r_lo | (r_hi << 32); } simdutf_really_inline simd16 reduce_or() const { return this->chunks[0] | this->chunks[1]; } simdutf_really_inline bool is_ascii() const { return this->reduce_or().is_ascii(); } simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { this->chunks[0].store_ascii_as_utf16(ptr + sizeof(simd16) * 0); this->chunks[1].store_ascii_as_utf16(ptr + sizeof(simd16)); } simdutf_really_inline void swap_bytes() { this->chunks[0] = this->chunks[0].swap_bytes(); this->chunks[1] = this->chunks[1].swap_bytes(); } simdutf_really_inline uint64_t gt(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] > mask, this->chunks[1] > mask) .to_bitmask(); } simdutf_really_inline uint64_t lteq(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] <= mask, this->chunks[1] <= mask) .to_bitmask(); } simdutf_really_inline uint64_t eq(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] == mask, this->chunks[1] == mask) .to_bitmask(); } simdutf_really_inline uint64_t not_in_range(const T low, const T high) const { const simd16 mask_low = simd16::splat(static_cast(low - 1)); const simd16 mask_high = simd16::splat(static_cast(high + 1)); return simd16x32( (this->chunks[0] >= mask_high) | (this->chunks[0] <= mask_low), (this->chunks[1] >= mask_high) | (this->chunks[1] <= mask_low)) .to_bitmask(); } }; // struct simd16x32 simd16 min(const simd16 a, simd16 b) { return _mm256_min_epu16(a.value, b.value); } /* end file src/simdutf/haswell/simd16-inl.h */ /* begin file src/simdutf/haswell/simd32-inl.h */ template struct simd32; template <> struct simd32 { static const size_t SIZE = sizeof(__m256i); static const size_t ELEMENTS = SIZE / sizeof(uint32_t); __m256i value; simdutf_really_inline simd32(const __m256i v) : value(v) {} template simdutf_really_inline simd32(const Pointer *ptr) : value(_mm256_loadu_si256(reinterpret_cast(ptr))) {} simdutf_really_inline uint64_t sum() const { const __m256i mask = _mm256_set1_epi64x(0xffffffff); const __m256i t0 = _mm256_and_si256(value, mask); const __m256i t1 = _mm256_srli_epi64(value, 32); const __m256i t2 = _mm256_add_epi64(t0, t1); return uint64_t(_mm256_extract_epi64(t2, 0)) + uint64_t(_mm256_extract_epi64(t2, 1)) + uint64_t(_mm256_extract_epi64(t2, 2)) + uint64_t(_mm256_extract_epi64(t2, 3)); } simdutf_really_inline simd32 swap_bytes() const { const __m256i shuffle = _mm256_setr_epi8(3, 2, 1, 0, 7, 6, 5, 4, 8, 9, 10, 11, 15, 14, 13, 12, 3, 2, 1, 0, 7, 6, 5, 4, 8, 9, 10, 11, 15, 14, 13, 12); return _mm256_shuffle_epi8(value, shuffle); } // operators simdutf_really_inline simd32 &operator+=(const simd32 other) { value = _mm256_add_epi32(value, other.value); return *this; } // static members simdutf_really_inline static simd32 zero() { return _mm256_setzero_si256(); } simdutf_really_inline static simd32 splat(uint32_t v) { return _mm256_set1_epi32(v); } }; //---------------------------------------------------------------------- template <> struct simd32 { // static const size_t SIZE = sizeof(__m128i); // static const size_t ELEMENTS = SIZE / sizeof(uint32_t); __m256i value; simdutf_really_inline simd32(const __m256i v) : value(v) {} simdutf_really_inline bool any() const { return _mm256_movemask_epi8(value) != 0; } }; //---------------------------------------------------------------------- template simdutf_really_inline simd32 operator|(const simd32 a, const simd32 b) { return _mm256_or_si256(a.value, b.value); } simdutf_really_inline simd32 min(const simd32 b, const simd32 a) { return _mm256_min_epu32(a.value, b.value); } simdutf_really_inline simd32 max(const simd32 a, const simd32 b) { return _mm256_max_epu32(a.value, b.value); } simdutf_really_inline simd32 operator&(const simd32 b, const simd32 a) { return _mm256_and_si256(a.value, b.value); } simdutf_really_inline simd32 operator+(const simd32 a, const simd32 b) { return _mm256_add_epi32(a.value, b.value); } simdutf_really_inline simd32 operator==(const simd32 a, const simd32 b) { return _mm256_cmpeq_epi32(a.value, b.value); } simdutf_really_inline simd32 operator>=(const simd32 a, const simd32 b) { return _mm256_cmpeq_epi32(_mm256_max_epu32(a.value, b.value), a.value); } simdutf_really_inline simd32 operator!(const simd32 v) { return _mm256_xor_si256(v.value, _mm256_set1_epi8(-1)); } simdutf_really_inline simd32 operator>(const simd32 a, const simd32 b) { return !(b >= a); } /* end file src/simdutf/haswell/simd32-inl.h */ /* begin file src/simdutf/haswell/simd64-inl.h */ template struct simd64; template <> struct simd64 { // static const size_t SIZE = sizeof(__m256i); // static const size_t ELEMENTS = SIZE / sizeof(uint64_t); __m256i value; simdutf_really_inline simd64(const __m256i v) : value(v) {} template simdutf_really_inline simd64(const Pointer *ptr) : value(_mm256_loadu_si256(reinterpret_cast(ptr))) {} simdutf_really_inline uint64_t sum() const { return _mm256_extract_epi64(value, 0) + _mm256_extract_epi64(value, 1) + _mm256_extract_epi64(value, 2) + _mm256_extract_epi64(value, 3); } // operators simdutf_really_inline simd64 &operator+=(const simd64 other) { value = _mm256_add_epi64(value, other.value); return *this; } // static members simdutf_really_inline static simd64 zero() { return _mm256_setzero_si256(); } simdutf_really_inline static simd64 splat(uint64_t v) { return _mm256_set1_epi64x(v); } }; /* end file src/simdutf/haswell/simd64-inl.h */ simdutf_really_inline simd64 sum_8bytes(const simd8 v) { return _mm256_sad_epu8(v.value, simd8::zero()); } } // namespace simd } // unnamed namespace } // namespace haswell } // namespace simdutf #endif // SIMDUTF_HASWELL_SIMD_H /* end file src/simdutf/haswell/simd.h */ /* begin file src/simdutf/haswell/end.h */ #if SIMDUTF_CAN_ALWAYS_RUN_HASWELL // nothing needed. #else SIMDUTF_UNTARGET_REGION #endif #undef SIMDUTF_SIMD_HAS_BYTEMASK #if SIMDUTF_GCC11ORMORE // workaround for // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105593 SIMDUTF_POP_DISABLE_WARNINGS #endif // end of workaround /* end file src/simdutf/haswell/end.h */ #endif // SIMDUTF_IMPLEMENTATION_HASWELL #endif // SIMDUTF_HASWELL_COMMON_H /* end file src/simdutf/haswell.h */ /* begin file src/simdutf/westmere.h */ #ifndef SIMDUTF_WESTMERE_H #define SIMDUTF_WESTMERE_H #ifdef SIMDUTF_FALLBACK_H #error "westmere.h must be included before fallback.h" #endif // Default Westmere to on if this is x86-64, unless we'll always select Haswell. #ifndef SIMDUTF_IMPLEMENTATION_WESTMERE // // You do not want to set it to (SIMDUTF_IS_X86_64 && // !SIMDUTF_REQUIRES_HASWELL) because you want to rely on runtime dispatch! // #if SIMDUTF_CAN_ALWAYS_RUN_ICELAKE || SIMDUTF_CAN_ALWAYS_RUN_HASWELL #define SIMDUTF_IMPLEMENTATION_WESTMERE 0 #else #define SIMDUTF_IMPLEMENTATION_WESTMERE (SIMDUTF_IS_X86_64) #endif #endif #if (SIMDUTF_IMPLEMENTATION_WESTMERE && SIMDUTF_IS_X86_64 && __SSE4_2__) #define SIMDUTF_CAN_ALWAYS_RUN_WESTMERE 1 #else #define SIMDUTF_CAN_ALWAYS_RUN_WESTMERE 0 #endif #if SIMDUTF_IMPLEMENTATION_WESTMERE #define SIMDUTF_TARGET_WESTMERE SIMDUTF_TARGET_REGION("sse4.2,popcnt") namespace simdutf { /** * Implementation for Westmere (Intel SSE4.2). */ namespace westmere {} // namespace westmere } // namespace simdutf // // These two need to be included outside SIMDUTF_TARGET_REGION // /* begin file src/simdutf/westmere/implementation.h */ #ifndef SIMDUTF_WESTMERE_IMPLEMENTATION_H #define SIMDUTF_WESTMERE_IMPLEMENTATION_H // The constructor may be executed on any host, so we take care not to use // SIMDUTF_TARGET_REGION namespace simdutf { namespace westmere { namespace { using namespace simdutf; } class implementation final : public simdutf::implementation { public: simdutf_really_inline implementation() : simdutf::implementation("westmere", "Intel/AMD SSE4.2", internal::instruction_set::SSE42) {} #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *input, size_t length) const noexcept final; #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *buf, size_t length, char16_t *output) const noexcept final; simdutf_warn_unused size_t count_utf16le(const char16_t *buf, size_t length) const noexcept; simdutf_warn_unused size_t count_utf16be(const char16_t *buf, size_t length) const noexcept; void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept final; void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) const noexcept; simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept; ; simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept; ; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept; size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept; const char *find(const char *start, const char *end, char character) const noexcept; const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept; #endif // SIMDUTF_FEATURE_BASE64 }; } // namespace westmere } // namespace simdutf #endif // SIMDUTF_WESTMERE_IMPLEMENTATION_H /* end file src/simdutf/westmere/implementation.h */ /* begin file src/simdutf/westmere/intrinsics.h */ #ifndef SIMDUTF_WESTMERE_INTRINSICS_H #define SIMDUTF_WESTMERE_INTRINSICS_H #ifdef SIMDUTF_VISUAL_STUDIO // under clang within visual studio, this will include #include // visual studio or clang #else #if SIMDUTF_GCC11ORMORE // We should not get warnings while including yet we do // under some versions of GCC. // If the x86intrin.h header has uninitialized values that are problematic, // it is a GCC issue, we want to ignore these warnings. SIMDUTF_DISABLE_GCC_WARNING(-Wuninitialized) #endif #include // elsewhere #if SIMDUTF_GCC11ORMORE // cancels the suppression of the -Wuninitialized SIMDUTF_POP_DISABLE_WARNINGS #endif #endif // SIMDUTF_VISUAL_STUDIO #ifdef SIMDUTF_CLANG_VISUAL_STUDIO /** * You are not supposed, normally, to include these * headers directly. Instead you should either include intrin.h * or x86intrin.h. However, when compiling with clang * under Windows (i.e., when _MSC_VER is set), these headers * only get included *if* the corresponding features are detected * from macros: */ #include // for _mm_alignr_epi8 #endif #endif // SIMDUTF_WESTMERE_INTRINSICS_H /* end file src/simdutf/westmere/intrinsics.h */ // // The rest need to be inside the region // /* begin file src/simdutf/westmere/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "westmere" // #define SIMDUTF_IMPLEMENTATION westmere #define SIMDUTF_SIMD_HAS_BYTEMASK 1 #if SIMDUTF_CAN_ALWAYS_RUN_WESTMERE // nothing needed. #else SIMDUTF_TARGET_WESTMERE #endif /* end file src/simdutf/westmere/begin.h */ // Declarations /* begin file src/simdutf/westmere/bitmanipulation.h */ #ifndef SIMDUTF_WESTMERE_BITMANIPULATION_H #define SIMDUTF_WESTMERE_BITMANIPULATION_H namespace simdutf { namespace westmere { namespace { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO simdutf_really_inline unsigned __int64 count_ones(uint64_t input_num) { // note: we do not support legacy 32-bit Windows return __popcnt64(input_num); // Visual Studio wants two underscores } #else simdutf_really_inline long long int count_ones(uint64_t input_num) { return _popcnt64(input_num); } #endif #if SIMDUTF_NEED_TRAILING_ZEROES simdutf_really_inline int trailing_zeroes(uint64_t input_num) { #if SIMDUTF_REGULAR_VISUAL_STUDIO unsigned long ret; _BitScanForward64(&ret, input_num); return (int)ret; #else // SIMDUTF_REGULAR_VISUAL_STUDIO return __builtin_ctzll(input_num); #endif // SIMDUTF_REGULAR_VISUAL_STUDIO } #endif template bool is_power_of_two(T x) { return (x & (x - 1)) == 0; } } // unnamed namespace } // namespace westmere } // namespace simdutf #endif // SIMDUTF_WESTMERE_BITMANIPULATION_H /* end file src/simdutf/westmere/bitmanipulation.h */ /* begin file src/simdutf/westmere/simd.h */ #ifndef SIMDUTF_WESTMERE_SIMD_H #define SIMDUTF_WESTMERE_SIMD_H namespace simdutf { namespace westmere { namespace { namespace simd { template struct base { __m128i value; // Zero constructor simdutf_really_inline base() : value{__m128i()} {} // Conversion from SIMD register simdutf_really_inline base(const __m128i _value) : value(_value) {} // Conversion to SIMD register simdutf_really_inline operator const __m128i &() const { return this->value; } template simdutf_really_inline void store_ascii_as_utf16(char16_t *p) const { __m128i first = _mm_cvtepu8_epi16(*this); __m128i second = _mm_cvtepu8_epi16(_mm_srli_si128(*this, 8)); if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); first = _mm_shuffle_epi8(first, swap); second = _mm_shuffle_epi8(second, swap); } _mm_storeu_si128(reinterpret_cast<__m128i *>(p), first); _mm_storeu_si128(reinterpret_cast<__m128i *>(p + 8), second); } simdutf_really_inline void store_ascii_as_utf32(char32_t *p) const { _mm_storeu_si128(reinterpret_cast<__m128i *>(p), _mm_cvtepu8_epi32(*this)); _mm_storeu_si128(reinterpret_cast<__m128i *>(p + 4), _mm_cvtepu8_epi32(_mm_srli_si128(*this, 4))); _mm_storeu_si128(reinterpret_cast<__m128i *>(p + 8), _mm_cvtepu8_epi32(_mm_srli_si128(*this, 8))); _mm_storeu_si128(reinterpret_cast<__m128i *>(p + 12), _mm_cvtepu8_epi32(_mm_srli_si128(*this, 12))); } // Bit operations simdutf_really_inline Child operator|(const Child other) const { return _mm_or_si128(*this, other); } simdutf_really_inline Child operator&(const Child other) const { return _mm_and_si128(*this, other); } simdutf_really_inline Child operator^(const Child other) const { return _mm_xor_si128(*this, other); } simdutf_really_inline Child &operator|=(const Child other) { auto this_cast = static_cast(this); *this_cast = *this_cast | other; return *this_cast; } }; // Forward-declared so they can be used by splat and friends. template struct simd8; template > struct base8 : base> { typedef uint16_t bitmask_t; typedef uint32_t bitmask2_t; simdutf_really_inline T first() const { return _mm_extract_epi8(*this, 0); } simdutf_really_inline T last() const { return _mm_extract_epi8(*this, 15); } simdutf_really_inline base8() : base>() {} simdutf_really_inline base8(const __m128i _value) : base>(_value) {} friend simdutf_really_inline Mask operator==(const simd8 lhs, const simd8 rhs) { return _mm_cmpeq_epi8(lhs, rhs); } static const int SIZE = sizeof(base>::value); template simdutf_really_inline simd8 prev(const simd8 prev_chunk) const { return _mm_alignr_epi8(*this, prev_chunk, 16 - N); } }; // SIMD byte mask type (returned by things like eq and gt) template <> struct simd8 : base8 { static simdutf_really_inline simd8 splat(bool _value) { return _mm_set1_epi8(uint8_t(-(!!_value))); } simdutf_really_inline simd8() : base8() {} simdutf_really_inline simd8(const __m128i _value) : base8(_value) {} // Splat constructor simdutf_really_inline simd8(bool _value) : base8(splat(_value)) {} simdutf_really_inline int to_bitmask() const { return _mm_movemask_epi8(*this); } simdutf_really_inline simd8 operator~() const { return *this ^ true; } }; template struct base8_numeric : base8 { static simdutf_really_inline simd8 splat(T _value) { return _mm_set1_epi8(_value); } static simdutf_really_inline simd8 zero() { return _mm_setzero_si128(); } static simdutf_really_inline simd8 load(const T values[16]) { return _mm_loadu_si128(reinterpret_cast(values)); } // Repeat 16 values as many times as necessary (usually for lookup tables) static simdutf_really_inline simd8 repeat_16(T v0, T v1, T v2, T v3, T v4, T v5, T v6, T v7, T v8, T v9, T v10, T v11, T v12, T v13, T v14, T v15) { return simd8(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15); } simdutf_really_inline base8_numeric() : base8() {} simdutf_really_inline base8_numeric(const __m128i _value) : base8(_value) {} // Store to array simdutf_really_inline void store(T dst[16]) const { return _mm_storeu_si128(reinterpret_cast<__m128i *>(dst), *this); } // Override to distinguish from bool version simdutf_really_inline simd8 operator~() const { return *this ^ 0xFFu; } // Addition/subtraction are the same for signed and unsigned simdutf_really_inline simd8 operator-(const simd8 other) const { return _mm_sub_epi8(*this, other); } simdutf_really_inline simd8 &operator-=(const simd8 other) { *this = *this - other; return *static_cast *>(this); } // Perform a lookup assuming the value is between 0 and 16 (undefined behavior // for out of range values) template simdutf_really_inline simd8 lookup_16(simd8 lookup_table) const { return _mm_shuffle_epi8(lookup_table, *this); } template simdutf_really_inline simd8 lookup_16(L replace0, L replace1, L replace2, L replace3, L replace4, L replace5, L replace6, L replace7, L replace8, L replace9, L replace10, L replace11, L replace12, L replace13, L replace14, L replace15) const { return lookup_16(simd8::repeat_16( replace0, replace1, replace2, replace3, replace4, replace5, replace6, replace7, replace8, replace9, replace10, replace11, replace12, replace13, replace14, replace15)); } }; // Signed bytes template <> struct simd8 : base8_numeric { simdutf_really_inline simd8() : base8_numeric() {} simdutf_really_inline simd8(const __m128i _value) : base8_numeric(_value) {} // Splat constructor simdutf_really_inline simd8(int8_t _value) : simd8(splat(_value)) {} // Member-by-member initialization simdutf_really_inline operator simd8() const; simdutf_really_inline bool is_ascii() const { return _mm_movemask_epi8(*this) == 0; } // Order-sensitive comparisons simdutf_really_inline simd8 operator>(const simd8 other) const { return _mm_cmpgt_epi8(*this, other); } simdutf_really_inline simd8 operator<(const simd8 other) const { return _mm_cmpgt_epi8(other, *this); } }; // Unsigned bytes template <> struct simd8 : base8_numeric { simdutf_really_inline simd8() : base8_numeric() {} simdutf_really_inline simd8(const __m128i _value) : base8_numeric(_value) {} // Splat constructor simdutf_really_inline simd8(uint8_t _value) : simd8(splat(_value)) {} // Array constructor simdutf_really_inline simd8(const uint8_t *values) : simd8(load(values)) {} // Member-by-member initialization simdutf_really_inline simd8(uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15) : simd8(_mm_setr_epi8(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15)) {} // Saturated math simdutf_really_inline simd8 saturating_sub(const simd8 other) const { return _mm_subs_epu8(*this, other); } // Order-specific operations simdutf_really_inline simd8 min_val(const simd8 other) const { return _mm_min_epu8(*this, other); } // Same as >, but only guarantees true is nonzero (< guarantees true = -1) simdutf_really_inline simd8 gt_bits(const simd8 other) const { return this->saturating_sub(other); } // Same as <, but only guarantees true is nonzero (< guarantees true = -1) simdutf_really_inline simd8 operator>=(const simd8 other) const { return other.min_val(*this) == other; } // Bit-specific operations simdutf_really_inline simd8 bits_not_set() const { return *this == uint8_t(0); } simdutf_really_inline simd8 any_bits_set() const { return ~this->bits_not_set(); } simdutf_really_inline bool is_ascii() const { return _mm_movemask_epi8(*this) == 0; } simdutf_really_inline bool bits_not_set_anywhere() const { return _mm_testz_si128(*this, *this); } simdutf_really_inline bool any_bits_set_anywhere() const { return !bits_not_set_anywhere(); } template simdutf_really_inline simd8 shr() const { return simd8(_mm_srli_epi16(*this, N)) & uint8_t(0xFFu >> N); } template simdutf_really_inline simd8 shl() const { return simd8(_mm_slli_epi16(*this, N)) & uint8_t(0xFFu << N); } simdutf_really_inline uint64_t sum_bytes() const { const auto tmp = _mm_sad_epu8(value, _mm_setzero_si128()); return _mm_extract_epi64(tmp, 0) + _mm_extract_epi64(tmp, 1); } }; simdutf_really_inline simd8::operator simd8() const { return this->value; } template struct simd8x64 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd8); static_assert(NUM_CHUNKS == 4, "Westmere kernel should use four registers per 64-byte block."); simd8 chunks[NUM_CHUNKS]; simd8x64(const simd8x64 &o) = delete; // no copy allowed simd8x64 & operator=(const simd8 other) = delete; // no assignment allowed simd8x64() = delete; // no default constructor allowed simdutf_really_inline simd8x64(const simd8 chunk0, const simd8 chunk1, const simd8 chunk2, const simd8 chunk3) : chunks{chunk0, chunk1, chunk2, chunk3} {} simdutf_really_inline simd8x64(const T *ptr) : chunks{simd8::load(ptr), simd8::load(ptr + sizeof(simd8) / sizeof(T)), simd8::load(ptr + 2 * sizeof(simd8) / sizeof(T)), simd8::load(ptr + 3 * sizeof(simd8) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd8) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd8) * 1 / sizeof(T)); this->chunks[2].store(ptr + sizeof(simd8) * 2 / sizeof(T)); this->chunks[3].store(ptr + sizeof(simd8) * 3 / sizeof(T)); } simdutf_really_inline simd8x64 &operator|=(const simd8x64 &other) { this->chunks[0] |= other.chunks[0]; this->chunks[1] |= other.chunks[1]; this->chunks[2] |= other.chunks[2]; this->chunks[3] |= other.chunks[3]; return *this; } simdutf_really_inline simd8 reduce_or() const { return (this->chunks[0] | this->chunks[1]) | (this->chunks[2] | this->chunks[3]); } simdutf_really_inline bool is_ascii() const { return this->reduce_or().is_ascii(); } template simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { this->chunks[0].template store_ascii_as_utf16(ptr + sizeof(simd8) * 0); this->chunks[1].template store_ascii_as_utf16(ptr + sizeof(simd8) * 1); this->chunks[2].template store_ascii_as_utf16(ptr + sizeof(simd8) * 2); this->chunks[3].template store_ascii_as_utf16(ptr + sizeof(simd8) * 3); } simdutf_really_inline void store_ascii_as_utf32(char32_t *ptr) const { this->chunks[0].store_ascii_as_utf32(ptr + sizeof(simd8) * 0); this->chunks[1].store_ascii_as_utf32(ptr + sizeof(simd8) * 1); this->chunks[2].store_ascii_as_utf32(ptr + sizeof(simd8) * 2); this->chunks[3].store_ascii_as_utf32(ptr + sizeof(simd8) * 3); } simdutf_really_inline uint64_t to_bitmask() const { uint64_t r0 = uint32_t(this->chunks[0].to_bitmask()); uint64_t r1 = this->chunks[1].to_bitmask(); uint64_t r2 = this->chunks[2].to_bitmask(); uint64_t r3 = this->chunks[3].to_bitmask(); return r0 | (r1 << 16) | (r2 << 32) | (r3 << 48); } simdutf_really_inline uint64_t lt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] < mask, this->chunks[1] < mask, this->chunks[2] < mask, this->chunks[3] < mask) .to_bitmask(); } simdutf_really_inline uint64_t gt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] > mask, this->chunks[1] > mask, this->chunks[2] > mask, this->chunks[3] > mask) .to_bitmask(); } simdutf_really_inline uint64_t eq(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] == mask, this->chunks[1] == mask, this->chunks[2] == mask, this->chunks[3] == mask) .to_bitmask(); } simdutf_really_inline uint64_t gteq_unsigned(const uint8_t m) const { const simd8 mask = simd8::splat(m); return simd8x64(simd8(__m128i(this->chunks[0])) >= mask, simd8(__m128i(this->chunks[1])) >= mask, simd8(__m128i(this->chunks[2])) >= mask, simd8(__m128i(this->chunks[3])) >= mask) .to_bitmask(); } }; // struct simd8x64 /* begin file src/simdutf/westmere/simd16-inl.h */ template struct simd16; template > struct base16 : base> { simdutf_really_inline base16() : base>() {} simdutf_really_inline base16(const __m128i _value) : base>(_value) {} friend simdutf_really_inline Mask operator==(const simd16 lhs, const simd16 rhs) { return _mm_cmpeq_epi16(lhs, rhs); } /// the size of vector in bytes static const int SIZE = sizeof(base>::value); /// the number of elements of type T a vector can hold static const int ELEMENTS = SIZE / sizeof(T); }; // SIMD byte mask type (returned by things like eq and gt) template <> struct simd16 : base16 { static simdutf_really_inline simd16 splat(bool _value) { return _mm_set1_epi16(uint16_t(-(!!_value))); } simdutf_really_inline simd16(const __m128i _value) : base16(_value) {} // Splat constructor simdutf_really_inline simd16(bool _value) : base16(splat(_value)) {} simdutf_really_inline int to_bitmask() const { return _mm_movemask_epi8(*this); } simdutf_really_inline simd16 operator~() const { return *this ^ true; } }; template struct base16_numeric : base16 { static simdutf_really_inline simd16 splat(T _value) { return _mm_set1_epi16(_value); } static simdutf_really_inline simd16 zero() { return _mm_setzero_si128(); } static simdutf_really_inline simd16 load(const T values[8]) { return _mm_loadu_si128(reinterpret_cast(values)); } simdutf_really_inline base16_numeric() : base16() {} simdutf_really_inline base16_numeric(const __m128i _value) : base16(_value) {} // Store to array simdutf_really_inline void store(T dst[8]) const { return _mm_storeu_si128(reinterpret_cast<__m128i *>(dst), *this); } // Override to distinguish from bool version simdutf_really_inline simd16 operator~() const { return *this ^ 0xFFu; } // Addition/subtraction are the same for signed and unsigned simdutf_really_inline simd16 operator+(const simd16 other) const { return _mm_add_epi16(*this, other); } simdutf_really_inline simd16 &operator+=(const simd16 other) { *this = *this + other; return *static_cast *>(this); } }; // Unsigned code units template <> struct simd16 : base16_numeric { simdutf_really_inline simd16() : base16_numeric() {} simdutf_really_inline simd16(const __m128i _value) : base16_numeric(_value) {} // Splat constructor simdutf_really_inline simd16(uint16_t _value) : simd16(splat(_value)) {} // Array constructor simdutf_really_inline simd16(const char16_t *values) : simd16(load(reinterpret_cast(values))) {} // Order-specific operations simdutf_really_inline simd16 max_val(const simd16 other) const { return _mm_max_epu16(*this, other); } simdutf_really_inline simd16 min_val(const simd16 other) const { return _mm_min_epu16(*this, other); } simdutf_really_inline simd16 operator<=(const simd16 other) const { return other.max_val(*this) == other; } simdutf_really_inline simd16 operator>=(const simd16 other) const { return other.min_val(*this) == other; } // Bit-specific operations simdutf_really_inline simd16 bits_not_set() const { return *this == uint16_t(0); } simdutf_really_inline simd16 any_bits_set() const { return ~this->bits_not_set(); } template simdutf_really_inline simd16 shr() const { return simd16(_mm_srli_epi16(*this, N)); } // Change the endianness simdutf_really_inline simd16 swap_bytes() const { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); return _mm_shuffle_epi8(*this, swap); } // Pack with the unsigned saturation of two uint16_t code units into single // uint8_t vector static simdutf_really_inline simd8 pack(const simd16 &v0, const simd16 &v1) { return _mm_packus_epi16(v0, v1); } simdutf_really_inline uint64_t sum() const { const auto lo_u16 = _mm_and_si128(value, _mm_set1_epi32(0x0000ffff)); const auto hi_u16 = _mm_srli_epi32(value, 16); const auto sum_u32 = _mm_add_epi32(lo_u16, hi_u16); const auto lo_u32 = _mm_and_si128(sum_u32, _mm_set1_epi64x(0xffffffff)); const auto hi_u32 = _mm_srli_epi64(sum_u32, 32); const auto sum_u64 = _mm_add_epi64(lo_u32, hi_u32); return uint64_t(_mm_extract_epi64(sum_u64, 0)) + uint64_t(_mm_extract_epi64(sum_u64, 1)); } }; template struct simd16x32 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd16); static_assert(NUM_CHUNKS == 4, "Westmere kernel should use four registers per 64-byte block."); simd16 chunks[NUM_CHUNKS]; simd16x32(const simd16x32 &o) = delete; // no copy allowed simd16x32 & operator=(const simd16 other) = delete; // no assignment allowed simd16x32() = delete; // no default constructor allowed simdutf_really_inline simd16x32(const simd16 chunk0, const simd16 chunk1, const simd16 chunk2, const simd16 chunk3) : chunks{chunk0, chunk1, chunk2, chunk3} {} simdutf_really_inline simd16x32(const T *ptr) : chunks{simd16::load(ptr), simd16::load(ptr + sizeof(simd16) / sizeof(T)), simd16::load(ptr + 2 * sizeof(simd16) / sizeof(T)), simd16::load(ptr + 3 * sizeof(simd16) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd16) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd16) * 1 / sizeof(T)); this->chunks[2].store(ptr + sizeof(simd16) * 2 / sizeof(T)); this->chunks[3].store(ptr + sizeof(simd16) * 3 / sizeof(T)); } simdutf_really_inline simd16 reduce_or() const { return (this->chunks[0] | this->chunks[1]) | (this->chunks[2] | this->chunks[3]); } simdutf_really_inline bool is_ascii() const { return this->reduce_or().is_ascii(); } simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { this->chunks[0].store_ascii_as_utf16(ptr + sizeof(simd16) * 0); this->chunks[1].store_ascii_as_utf16(ptr + sizeof(simd16) * 1); this->chunks[2].store_ascii_as_utf16(ptr + sizeof(simd16) * 2); this->chunks[3].store_ascii_as_utf16(ptr + sizeof(simd16) * 3); } simdutf_really_inline uint64_t to_bitmask() const { uint64_t r0 = uint32_t(this->chunks[0].to_bitmask()); uint64_t r1 = this->chunks[1].to_bitmask(); uint64_t r2 = this->chunks[2].to_bitmask(); uint64_t r3 = this->chunks[3].to_bitmask(); return r0 | (r1 << 16) | (r2 << 32) | (r3 << 48); } simdutf_really_inline void swap_bytes() { this->chunks[0] = this->chunks[0].swap_bytes(); this->chunks[1] = this->chunks[1].swap_bytes(); this->chunks[2] = this->chunks[2].swap_bytes(); this->chunks[3] = this->chunks[3].swap_bytes(); } simdutf_really_inline uint64_t lteq(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] <= mask, this->chunks[1] <= mask, this->chunks[2] <= mask, this->chunks[3] <= mask) .to_bitmask(); } simdutf_really_inline uint64_t eq(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] == mask, this->chunks[1] == mask, this->chunks[2] == mask, this->chunks[3] == mask) .to_bitmask(); } simdutf_really_inline uint64_t not_in_range(const T low, const T high) const { const simd16 mask_low = simd16::splat(static_cast(low - 1)); const simd16 mask_high = simd16::splat(static_cast(high + 1)); return simd16x32( (this->chunks[0] >= mask_high) | (this->chunks[0] <= mask_low), (this->chunks[1] >= mask_high) | (this->chunks[1] <= mask_low), (this->chunks[2] >= mask_high) | (this->chunks[2] <= mask_low), (this->chunks[3] >= mask_high) | (this->chunks[3] <= mask_low)) .to_bitmask(); } }; // struct simd16x32 simd16 min(const simd16 a, simd16 b) { return _mm_min_epu16(a.value, b.value); } /* end file src/simdutf/westmere/simd16-inl.h */ /* begin file src/simdutf/westmere/simd32-inl.h */ template struct simd32; template <> struct simd32 { static const size_t SIZE = sizeof(__m128i); static const size_t ELEMENTS = SIZE / sizeof(uint32_t); __m128i value; simdutf_really_inline simd32(const __m128i v) : value(v) {} template simdutf_really_inline simd32(const Pointer *ptr) : value(_mm_loadu_si128(reinterpret_cast(ptr))) {} simdutf_really_inline uint64_t sum() const { return uint64_t(_mm_extract_epi32(value, 0)) + uint64_t(_mm_extract_epi32(value, 1)) + uint64_t(_mm_extract_epi32(value, 2)) + uint64_t(_mm_extract_epi32(value, 3)); } simdutf_really_inline simd32 swap_bytes() const { const __m128i shuffle = _mm_setr_epi8(3, 2, 1, 0, 7, 6, 5, 4, 8, 9, 10, 11, 15, 14, 13, 12); return _mm_shuffle_epi8(value, shuffle); } template simdutf_really_inline simd32 shr() const { return _mm_srli_epi32(value, N); } template simdutf_really_inline simd32 shl() const { return _mm_slli_epi32(value, N); } void dump() const { #ifdef SIMDUTF_LOGGING printf("[%08x, %08x, %08x, %08x]\n", uint32_t(_mm_extract_epi32(value, 0)), uint32_t(_mm_extract_epi32(value, 1)), uint32_t(_mm_extract_epi32(value, 2)), uint32_t(_mm_extract_epi32(value, 3))); #endif // SIMDUTF_LOGGING } // operators simdutf_really_inline simd32 &operator+=(const simd32 other) { value = _mm_add_epi32(value, other.value); return *this; } // static members simdutf_really_inline static simd32 zero() { return _mm_setzero_si128(); } simdutf_really_inline static simd32 splat(uint32_t v) { return _mm_set1_epi32(v); } }; //---------------------------------------------------------------------- template <> struct simd32 { // static const size_t SIZE = sizeof(__m128i); // static const size_t ELEMENTS = SIZE / sizeof(uint32_t); __m128i value; simdutf_really_inline simd32(const __m128i v) : value(v) {} simdutf_really_inline bool any() const { return _mm_movemask_epi8(value) != 0; } simdutf_really_inline uint8_t to_4bit_bitmask() const { return uint8_t(_mm_movemask_ps(_mm_castsi128_ps(value))); } }; //---------------------------------------------------------------------- template simdutf_really_inline simd32 operator|(const simd32 a, const simd32 b) { return _mm_or_si128(a.value, b.value); } simdutf_really_inline simd32 min(const simd32 a, const simd32 b) { return _mm_min_epu32(a.value, b.value); } simdutf_really_inline simd32 max(const simd32 a, const simd32 b) { return _mm_max_epu32(a.value, b.value); } simdutf_really_inline simd32 operator==(const simd32 a, uint32_t b) { return _mm_cmpeq_epi32(a.value, _mm_set1_epi32(b)); } simdutf_really_inline simd32 operator&(const simd32 a, const simd32 b) { return _mm_and_si128(a.value, b.value); } simdutf_really_inline simd32 operator&(const simd32 a, uint32_t b) { return _mm_and_si128(a.value, _mm_set1_epi32(b)); } simdutf_really_inline simd32 operator|(const simd32 a, uint32_t b) { return _mm_or_si128(a.value, _mm_set1_epi32(b)); } simdutf_really_inline simd32 operator+(const simd32 a, const simd32 b) { return _mm_add_epi32(a.value, b.value); } simdutf_really_inline simd32 operator-(const simd32 a, uint32_t b) { return _mm_sub_epi32(a.value, _mm_set1_epi32(b)); } simdutf_really_inline simd32 operator==(const simd32 a, const simd32 b) { return _mm_cmpeq_epi32(a.value, b.value); } simdutf_really_inline simd32 operator>=(const simd32 a, const simd32 b) { return _mm_cmpeq_epi32(_mm_max_epu32(a.value, b.value), a.value); } simdutf_really_inline simd32 operator!(const simd32 v) { return _mm_xor_si128(v.value, _mm_set1_epi8(-1)); } simdutf_really_inline simd32 operator>(const simd32 a, const simd32 b) { return !(b >= a); } simdutf_really_inline simd32 select(const simd32 cond, const simd32 v_true, const simd32 v_false) { return _mm_blendv_epi8(v_false.value, v_true.value, cond.value); } /* end file src/simdutf/westmere/simd32-inl.h */ /* begin file src/simdutf/westmere/simd64-inl.h */ template struct simd64; template <> struct simd64 { // static const size_t SIZE = sizeof(__m128i); // static const size_t ELEMENTS = SIZE / sizeof(uint64_t); __m128i value; simdutf_really_inline simd64(const __m128i v) : value(v) {} template simdutf_really_inline simd64(const Pointer *ptr) : value(_mm_loadu_si128(reinterpret_cast(ptr))) {} simdutf_really_inline uint64_t sum() const { return _mm_extract_epi64(value, 0) + _mm_extract_epi64(value, 1); } // operators simdutf_really_inline simd64 &operator+=(const simd64 other) { value = _mm_add_epi64(value, other.value); return *this; } // static members simdutf_really_inline static simd64 zero() { return _mm_setzero_si128(); } simdutf_really_inline static simd64 splat(uint64_t v) { return _mm_set1_epi64x(v); } }; /* end file src/simdutf/westmere/simd64-inl.h */ simdutf_really_inline simd64 sum_8bytes(const simd8 v) { return _mm_sad_epu8(v.value, simd8::zero()); } simdutf_really_inline simd8 as_vector_u8(const simd32 v) { return simd8(v.value); } } // namespace simd } // unnamed namespace } // namespace westmere } // namespace simdutf #endif // SIMDUTF_WESTMERE_SIMD_INPUT_H /* end file src/simdutf/westmere/simd.h */ /* begin file src/simdutf/westmere/end.h */ #if SIMDUTF_CAN_ALWAYS_RUN_WESTMERE // nothing needed. #else SIMDUTF_UNTARGET_REGION #endif #undef SIMDUTF_SIMD_HAS_BYTEMASK /* end file src/simdutf/westmere/end.h */ #endif // SIMDUTF_IMPLEMENTATION_WESTMERE #endif // SIMDUTF_WESTMERE_COMMON_H /* end file src/simdutf/westmere.h */ /* begin file src/simdutf/ppc64.h */ #ifndef SIMDUTF_PPC64_H #define SIMDUTF_PPC64_H #ifdef SIMDUTF_FALLBACK_H #error "ppc64.h must be included before fallback.h" #endif #ifndef SIMDUTF_IMPLEMENTATION_PPC64 #define SIMDUTF_IMPLEMENTATION_PPC64 (SIMDUTF_IS_PPC64) #endif #define SIMDUTF_CAN_ALWAYS_RUN_PPC64 \ SIMDUTF_IMPLEMENTATION_PPC64 &&SIMDUTF_IS_PPC64 #if SIMDUTF_IMPLEMENTATION_PPC64 namespace simdutf { /** * Implementation for ALTIVEC (PPC64). */ namespace ppc64 {} // namespace ppc64 } // namespace simdutf /* begin file src/simdutf/ppc64/implementation.h */ #ifndef SIMDUTF_PPC64_IMPLEMENTATION_H #define SIMDUTF_PPC64_IMPLEMENTATION_H namespace simdutf { namespace ppc64 { namespace { using namespace simdutf; template simdutf_really_inline size_t align_down(size_t size) { return N * (size / N); } } // namespace class implementation final : public simdutf::implementation { public: simdutf_really_inline implementation() : simdutf::implementation("ppc64", "PPC64 ALTIVEC", internal::instruction_set::ALTIVEC) {} #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *input, size_t length) const noexcept final; #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *buf, size_t length, char16_t *output) const noexcept final; simdutf_warn_unused size_t count_utf16le(const char16_t *buf, size_t length) const noexcept; simdutf_warn_unused size_t count_utf16be(const char16_t *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) const noexcept; simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept; ; simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept; ; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused size_t maximal_binary_length_from_base64( const char *input, size_t length) const noexcept; simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept; size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept; const char *find(const char *start, const char *end, char character) const noexcept; const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept; #endif // SIMDUTF_FEATURE_BASE64 #ifdef SIMDUTF_INTERNAL_TESTS virtual std::vector internal_tests() const override; #endif #if SIMDUTF_FEATURE_UTF16 void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept final; void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 }; } // namespace ppc64 } // namespace simdutf #endif // SIMDUTF_PPC64_IMPLEMENTATION_H /* end file src/simdutf/ppc64/implementation.h */ /* begin file src/simdutf/ppc64/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "ppc64" // #define SIMDUTF_IMPLEMENTATION ppc64 /* end file src/simdutf/ppc64/begin.h */ // Declarations /* begin file src/simdutf/ppc64/intrinsics.h */ #ifndef SIMDUTF_PPC64_INTRINSICS_H #define SIMDUTF_PPC64_INTRINSICS_H // This should be the correct header whether // you use visual studio or other compilers. #include // These are defined by altivec.h in GCC toolchain, it is safe to undef them. #ifdef bool #undef bool #endif #ifdef vector #undef vector #endif #endif // SIMDUTF_PPC64_INTRINSICS_H /* end file src/simdutf/ppc64/intrinsics.h */ /* begin file src/simdutf/ppc64/bitmanipulation.h */ #ifndef SIMDUTF_PPC64_BITMANIPULATION_H #define SIMDUTF_PPC64_BITMANIPULATION_H namespace simdutf { namespace ppc64 { namespace { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO simdutf_really_inline int count_ones(uint64_t input_num) { // note: we do not support legacy 32-bit Windows return __popcnt64(input_num); // Visual Studio wants two underscores } #else simdutf_really_inline int count_ones(uint64_t input_num) { return __builtin_popcountll(input_num); } #endif #if SIMDUTF_NEED_TRAILING_ZEROES simdutf_really_inline int trailing_zeroes(uint64_t input_num) { return __builtin_ctzll(input_num); } #endif } // unnamed namespace } // namespace ppc64 } // namespace simdutf #endif // SIMDUTF_PPC64_BITMANIPULATION_H /* end file src/simdutf/ppc64/bitmanipulation.h */ /* begin file src/simdutf/ppc64/simd.h */ #ifndef SIMDUTF_PPC64_SIMD_H #define SIMDUTF_PPC64_SIMD_H #include namespace simdutf { namespace ppc64 { namespace { namespace simd { using vec_bool_t = __vector __bool char; using vec_bool16_t = __vector __bool short; using vec_bool32_t = __vector __bool int; using vec_u8_t = __vector unsigned char; using vec_i8_t = __vector signed char; using vec_u16_t = __vector unsigned short; using vec_i16_t = __vector signed short; using vec_u32_t = __vector unsigned int; using vec_i32_t = __vector signed int; using vec_u64_t = __vector unsigned long long; using vec_i64_t = __vector signed long long; // clang-format off template struct vector_u8_type_for_element_aux { using type = typename std::conditional::value, vec_bool_t, typename std::conditional::value, vec_u8_t, typename std::conditional::value, vec_i8_t, void>::type>::type>::type; static_assert(not std::is_same::value, "accepted element types are 8 bit integers or bool"); }; template struct vector_u16_type_for_element_aux { using type = typename std::conditional::value, vec_bool16_t, typename std::conditional::value, vec_u16_t, typename std::conditional::value, vec_i16_t, void>::type>::type>::type; static_assert(not std::is_same::value, "accepted element types are 16 bit integers or bool"); }; template struct vector_u32_type_for_element_aux { using type = typename std::conditional::value, vec_bool32_t, typename std::conditional::value, vec_u32_t, typename std::conditional::value, vec_i32_t, void>::type>::type>::type; static_assert(not std::is_same::value, "accepted element types are 32 bit integers or bool"); }; // clang-format on template using vector_u8_type_for_element = typename vector_u8_type_for_element_aux::type; template using vector_u16_type_for_element = typename vector_u16_type_for_element_aux::type; template using vector_u32_type_for_element = typename vector_u32_type_for_element_aux::type; template uint16_t move_mask_u8(T vec) { const vec_u8_t perm_mask = {15 * 8, 14 * 8, 13 * 8, 12 * 8, 11 * 8, 10 * 8, 9 * 8, 8 * 8, 7 * 8, 6 * 8, 5 * 8, 4 * 8, 3 * 8, 2 * 8, 1 * 8, 0 * 8}; const auto result = (vec_u64_t)vec_vbpermq((vec_u8_t)vec, perm_mask); #if SIMDUTF_IS_BIG_ENDIAN return static_cast(result[0]); #else return static_cast(result[1]); #endif } /* begin file src/simdutf/ppc64/simd8-inl.h */ // file included directly template struct base8 { using vector_type = vector_u8_type_for_element; vector_type value; static const int SIZE = sizeof(vector_type); static const int ELEMENTS = sizeof(vector_type) / sizeof(T); // Zero constructor simdutf_really_inline base8() : value{vec_splats(T(0))} {} // Conversion from SIMD register simdutf_really_inline base8(const vector_type _value) : value{_value} {} // Splat scalar simdutf_really_inline base8(T v) : value{vec_splats(v)} {} // Conversion to SIMD register simdutf_really_inline operator const vector_type &() const { return this->value; } template simdutf_really_inline void store(U *ptr) const { vec_xst(value, 0, reinterpret_cast(ptr)); } template void operator|=(const SIMD8 other) { this->value = vec_or(this->value, other.value); } template vector_type prev_aux(vector_type prev_chunk) const { vector_type chunk = this->value; #if !SIMDUTF_IS_BIG_ENDIAN chunk = (vector_type)vec_reve(this->value); prev_chunk = (vector_type)vec_reve((vector_type)prev_chunk); #endif chunk = (vector_type)vec_sld((vector_type)prev_chunk, (vector_type)chunk, 16 - N); #if !SIMDUTF_IS_BIG_ENDIAN chunk = (vector_type)vec_reve((vector_type)chunk); #endif return chunk; } simdutf_really_inline bool is_ascii() const { return move_mask_u8(this->value) == 0; } simdutf_really_inline uint16_t to_bitmask() const { return move_mask_u8(value); } template simdutf_really_inline void store_bytes_as_utf16(char16_t *p) const { const vector_type zero = vec_splats(T(0)); if (big_endian) { const vec_u8_t perm_lo = {16, 0, 16, 1, 16, 2, 16, 3, 16, 4, 16, 5, 16, 6, 16, 7}; const vec_u8_t perm_hi = {16, 8, 16, 9, 16, 10, 16, 11, 16, 12, 16, 13, 16, 14, 16, 15}; const vector_type v0 = vec_perm(value, zero, perm_lo); const vector_type v1 = vec_perm(value, zero, perm_hi); #if defined(__clang__) vec_xst(v0, 0, reinterpret_cast(p)); vec_xst(v1, 16, reinterpret_cast(p)); #else vec_xst(v0, 0, reinterpret_cast(p)); vec_xst(v1, 16, reinterpret_cast(p)); #endif // defined(__clang__) } else { const vec_u8_t perm_lo = {0, 16, 1, 16, 2, 16, 3, 16, 4, 16, 5, 16, 6, 16, 7, 16}; const vec_u8_t perm_hi = {8, 16, 9, 16, 10, 16, 11, 16, 12, 16, 13, 16, 14, 16, 15, 16}; const vector_type v0 = vec_perm(value, zero, perm_lo); const vector_type v1 = vec_perm(value, zero, perm_hi); #if defined(__clang__) vec_xst(v0, 0, reinterpret_cast(p)); vec_xst(v1, 16, reinterpret_cast(p)); #else vec_xst(v0, 0, reinterpret_cast(p)); vec_xst(v1, 16, reinterpret_cast(p)); #endif // defined(__clang__) } } template simdutf_really_inline void store_ascii_as_utf16(char16_t *p) const { store_bytes_as_utf16(p); } simdutf_really_inline void store_bytes_as_utf32(char32_t *p) const { const vector_type zero = vec_splats(T(0)); #if SIMDUTF_IS_BIG_ENDIAN const vec_u8_t perm0 = {16, 16, 16, 0, 16, 16, 16, 1, 16, 16, 16, 2, 16, 16, 16, 3}; const vec_u8_t perm1 = {16, 16, 16, 4, 16, 16, 16, 5, 16, 16, 16, 6, 16, 16, 16, 7}; const vec_u8_t perm2 = {16, 16, 16, 8, 16, 16, 16, 9, 16, 16, 16, 10, 16, 16, 16, 11}; const vec_u8_t perm3 = {16, 16, 16, 12, 16, 16, 16, 13, 16, 16, 16, 14, 16, 16, 16, 15}; #else const vec_u8_t perm0 = {0, 16, 16, 16, 1, 16, 16, 16, 2, 16, 16, 16, 3, 16, 16, 16}; const vec_u8_t perm1 = {4, 16, 16, 16, 5, 16, 16, 16, 6, 16, 16, 16, 7, 16, 16, 16}; const vec_u8_t perm2 = {8, 16, 16, 16, 9, 16, 16, 16, 10, 16, 16, 16, 11, 16, 16, 16}; const vec_u8_t perm3 = {12, 16, 16, 16, 13, 16, 16, 16, 14, 16, 16, 16, 15, 16, 16, 16}; #endif // SIMDUTF_IS_BIG_ENDIAN const vector_type v0 = vec_perm(value, zero, perm0); const vector_type v1 = vec_perm(value, zero, perm1); const vector_type v2 = vec_perm(value, zero, perm2); const vector_type v3 = vec_perm(value, zero, perm3); constexpr size_t n = base8::SIZE; #if defined(__clang__) vec_xst(v0, 0 * n, reinterpret_cast(p)); vec_xst(v1, 1 * n, reinterpret_cast(p)); vec_xst(v2, 2 * n, reinterpret_cast(p)); vec_xst(v3, 3 * n, reinterpret_cast(p)); #else vec_xst(v0, 0 * n, reinterpret_cast(p)); vec_xst(v1, 1 * n, reinterpret_cast(p)); vec_xst(v2, 2 * n, reinterpret_cast(p)); vec_xst(v3, 3 * n, reinterpret_cast(p)); #endif // defined(__clang__) } simdutf_really_inline void store_words_as_utf32(char32_t *p) const { const vector_type zero = vec_splats(T(0)); #if SIMDUTF_IS_BIG_ENDIAN const vec_u8_t perm0 = {16, 16, 0, 1, 16, 16, 2, 3, 16, 16, 4, 5, 16, 16, 6, 7}; const vec_u8_t perm1 = {16, 16, 8, 9, 16, 16, 10, 11, 16, 16, 12, 13, 16, 16, 14, 15}; #else const vec_u8_t perm0 = {0, 1, 16, 16, 2, 3, 16, 16, 4, 5, 16, 16, 6, 7, 16, 16}; const vec_u8_t perm1 = {8, 9, 16, 16, 10, 11, 16, 16, 12, 13, 16, 16, 14, 15, 16, 16}; #endif // SIMDUTF_IS_BIG_ENDIAN const vector_type v0 = vec_perm(value, zero, perm0); const vector_type v1 = vec_perm(value, zero, perm1); constexpr size_t n = base8::SIZE; #if defined(__clang__) vec_xst(v0, 0 * n, reinterpret_cast(p)); vec_xst(v1, 1 * n, reinterpret_cast(p)); #else vec_xst(v0, 0 * n, reinterpret_cast(p)); vec_xst(v1, 1 * n, reinterpret_cast(p)); #endif // defined(__clang__) } simdutf_really_inline void store_ascii_as_utf32(char32_t *p) const { store_bytes_as_utf32(p); } }; // Forward declaration template struct simd8; template simd8 operator==(const simd8 a, const simd8 b); template simd8 operator!=(const simd8 a, const simd8 b); template simd8 operator&(const simd8 a, const simd8 b); template simd8 operator|(const simd8 a, const simd8 b); template simd8 operator^(const simd8 a, const simd8 b); template simd8 operator+(const simd8 a, const simd8 b); template simd8 operator<(const simd8 a, const simd8 b); // SIMD byte mask type (returned by things like eq and gt) template <> struct simd8 : base8 { using super = base8; static simdutf_really_inline simd8 splat(bool _value) { return (vector_type)vec_splats((unsigned char)(-(!!_value))); } simdutf_really_inline simd8() : super(vector_type()) {} simdutf_really_inline simd8(const vector_type _value) : super(_value) {} // Splat constructor simdutf_really_inline simd8(bool _value) : base8(splat(_value)) {} template simdutf_really_inline simd8(simd8 other) : simd8(vector_type(other.value)) {} simdutf_really_inline uint16_t to_bitmask() const { return move_mask_u8(value); } simdutf_really_inline bool any() const { return !vec_all_eq(this->value, (vector_type)vec_splats(0)); } simdutf_really_inline bool all() const { return to_bitmask() == 0xffff; } simdutf_really_inline simd8 operator~() const { return this->value ^ (vector_type)splat(true); } }; template struct base8_numeric : base8 { using super = base8; using vector_type = typename super::vector_type; static simdutf_really_inline simd8 splat(T value) { return (vector_type)vec_splats(value); } static simdutf_really_inline simd8 zero() { return splat(0); } template static simdutf_really_inline simd8 load(const U *values) { return vec_xl(0, reinterpret_cast(values)); } // Repeat 16 values as many times as necessary (usually for lookup tables) static simdutf_really_inline simd8 repeat_16(T v0, T v1, T v2, T v3, T v4, T v5, T v6, T v7, T v8, T v9, T v10, T v11, T v12, T v13, T v14, T v15) { return simd8(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15); } simdutf_really_inline base8_numeric() : base8() {} simdutf_really_inline base8_numeric(const vector_type _value) : base8(_value) {} // Override to distinguish from bool version simdutf_really_inline simd8 operator~() const { return *this ^ 0xFFu; } simdutf_really_inline simd8 &operator-=(const simd8 other) { this->value = vec_sub(this->value, other.value); return *static_cast *>(this); } // Perform a lookup assuming the value is between 0 and 16 (undefined behavior // for out of range values) template simdutf_really_inline simd8 lookup_16(simd8 lookup_table) const { return (vector_type)vec_perm((vector_type)lookup_table, (vector_type)lookup_table, this->value); } template simdutf_really_inline simd8 lookup_32(const simd8 lookup_table_lo, const simd8 lookup_table_hi) const { return (vector_type)vec_perm(lookup_table_lo.value, lookup_table_hi.value, this->value); } template simdutf_really_inline simd8 lookup_16(L replace0, L replace1, L replace2, L replace3, L replace4, L replace5, L replace6, L replace7, L replace8, L replace9, L replace10, L replace11, L replace12, L replace13, L replace14, L replace15) const { return lookup_16(simd8::repeat_16( replace0, replace1, replace2, replace3, replace4, replace5, replace6, replace7, replace8, replace9, replace10, replace11, replace12, replace13, replace14, replace15)); } }; // Unsigned bytes template <> struct simd8 : base8_numeric { using Self = simd8; simdutf_really_inline simd8() : base8_numeric() {} simdutf_really_inline simd8(const vector_type _value) : base8_numeric(_value) {} // Splat constructor simdutf_really_inline simd8(uint8_t _value) : simd8(splat(_value)) {} // Array constructor simdutf_really_inline simd8(const uint8_t *values) : simd8(load(values)) {} // Member-by-member initialization simdutf_really_inline simd8(uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15) : simd8((vector_type){v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15}) {} // Repeat 16 values as many times as necessary (usually for lookup tables) simdutf_really_inline static simd8 repeat_16(uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15) { return simd8(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15); } simdutf_really_inline bool is_ascii() const { return move_mask_u8(this->value) == 0; } template simdutf_really_inline simd8(simd8 other) : simd8(vector_type(other.value)) {} template simdutf_really_inline Self prev(const Self prev_chunk) const { return prev_aux(prev_chunk.value); } // Saturated math simdutf_really_inline simd8 saturating_sub(const simd8 other) const { return (vector_type)vec_subs(this->value, (vector_type)other); } // Same as >, but only guarantees true is nonzero (< guarantees true = -1) simdutf_really_inline simd8 gt_bits(const simd8 other) const { return this->saturating_sub(other); } // Same as <, but only guarantees true is nonzero (< guarantees true = -1) simdutf_really_inline simd8 lt_bits(const simd8 other) const { return other.saturating_sub(*this); } // Bit-specific operations simdutf_really_inline bool bits_not_set_anywhere() const { return vec_all_eq(this->value, (vector_type)vec_splats(0)); } simdutf_really_inline bool any_bits_set_anywhere() const { return !bits_not_set_anywhere(); } template simdutf_really_inline simd8 shr() const { return simd8( (vector_type)vec_sr(this->value, (vector_type)vec_splat_u8(N))); } template simdutf_really_inline simd8 shl() const { return simd8( (vector_type)vec_sl(this->value, (vector_type)vec_splat_u8(N))); } void dump() const { #ifdef SIMDUTF_LOGGING uint8_t tmp[16]; store(tmp); for (int i = 0; i < 16; i++) { if (i == 0) { printf("[%02x", tmp[i]); } else if (i == 15) { printf(" %02x]", tmp[i]); } else { printf(" %02x", tmp[i]); } } putchar('\n'); #endif // SIMDUTF_LOGGING } void dump_ascii() const { #ifdef SIMDUTF_LOGGING uint8_t tmp[16]; store(tmp); for (int i = 0; i < 16; i++) { if (i == 0) { printf("[%c", tmp[i]); } else if (i == 15) { printf("%c]", tmp[i]); } else { printf("%c", tmp[i]); } } putchar('\n'); #endif // SIMDUTF_LOGGING } }; // Signed bytes template <> struct simd8 : base8_numeric { simdutf_really_inline simd8() : base8_numeric() {} simdutf_really_inline simd8(const vector_type _value) : base8_numeric(_value) {} template simdutf_really_inline simd8(simd8 other) : simd8(vector_type(other.value)) {} // Splat constructor simdutf_really_inline simd8(int8_t _value) : simd8(splat(_value)) {} // Array constructor simdutf_really_inline simd8(const int8_t *values) : simd8(load(values)) {} simdutf_really_inline operator simd8() const; // Saturated math simdutf_really_inline simd8 saturating_add(const simd8 other) const { return (vector_type)vec_adds(this->value, other.value); } void dump() const { int8_t tmp[16]; store(tmp); for (int i = 0; i < 16; i++) { if (i == 0) { printf("[%02x", tmp[i]); } else if (i == 15) { printf("%02x]", tmp[i]); } else { printf("%02x", tmp[i]); } } putchar('\n'); } }; template simd8 operator==(const simd8 a, const simd8 b) { return vec_cmpeq(a.value, b.value); } template simd8 operator!=(const simd8 a, const simd8 b) { return vec_cmpne(a.value, b.value); } template simd8 operator&(const simd8 a, const simd8 b) { return vec_and(a.value, b.value); } template simd8 operator&(const simd8 a, U b) { return vec_and(a.value, vec_splats(T(b))); } template simd8 operator|(const simd8 a, const simd8 b) { return vec_or(a.value, b.value); } template simd8 operator^(const simd8 a, const simd8 b) { return vec_xor(a.value, b.value); } template simd8 operator^(const simd8 a, U b) { return vec_xor(a.value, vec_splats(T(b))); } template simd8 operator+(const simd8 a, const simd8 b) { return vec_add(a.value, b.value); } template simd8 operator+(const simd8 a, U b) { return vec_add(a.value, vec_splats(T(b))); } simdutf_really_inline simd8::operator simd8() const { return (simd8::vector_type)value; } template simd8 operator<(const simd8 a, const simd8 b) { return vec_cmplt(a.value, b.value); } template simd8 operator>(const simd8 a, const simd8 b) { return vec_cmpgt(a.value, b.value); } template simd8 operator>=(const simd8 a, const simd8 b) { return vec_cmpge(a.value, b.value); } template struct simd8x64 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd8); static constexpr size_t ELEMENTS = simd8::ELEMENTS; static_assert(NUM_CHUNKS == 4, "PPC64 kernel should use four registers per 64-byte block."); simd8 chunks[NUM_CHUNKS]; simd8x64(const simd8x64 &o) = delete; // no copy allowed simd8x64 & operator=(const simd8 other) = delete; // no assignment allowed simd8x64() = delete; // no default constructor allowed simd8x64(simd8x64 &&) = default; simdutf_really_inline simd8x64(const simd8 chunk0, const simd8 chunk1, const simd8 chunk2, const simd8 chunk3) : chunks{chunk0, chunk1, chunk2, chunk3} {} simdutf_really_inline simd8x64(const T *ptr) : chunks{simd8::load(ptr), simd8::load(ptr + sizeof(simd8) / sizeof(T)), simd8::load(ptr + 2 * sizeof(simd8) / sizeof(T)), simd8::load(ptr + 3 * sizeof(simd8) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + ELEMENTS * 0); this->chunks[1].store(ptr + ELEMENTS * 1); this->chunks[2].store(ptr + ELEMENTS * 2); this->chunks[3].store(ptr + ELEMENTS * 3); } simdutf_really_inline simd8x64 &operator|=(const simd8x64 &other) { this->chunks[0] |= other.chunks[0]; this->chunks[1] |= other.chunks[1]; this->chunks[2] |= other.chunks[2]; this->chunks[3] |= other.chunks[3]; return *this; } simdutf_really_inline simd8 reduce_or() const { return (this->chunks[0] | this->chunks[1]) | (this->chunks[2] | this->chunks[3]); } simdutf_really_inline bool is_ascii() const { return this->reduce_or().is_ascii(); } template simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { this->chunks[0].template store_ascii_as_utf16(ptr + sizeof(simd8) * 0); this->chunks[1].template store_ascii_as_utf16(ptr + sizeof(simd8) * 1); this->chunks[2].template store_ascii_as_utf16(ptr + sizeof(simd8) * 2); this->chunks[3].template store_ascii_as_utf16(ptr + sizeof(simd8) * 3); } simdutf_really_inline void store_ascii_as_utf32(char32_t *ptr) const { this->chunks[0].store_ascii_as_utf32(ptr + sizeof(simd8) * 0); this->chunks[1].store_ascii_as_utf32(ptr + sizeof(simd8) * 1); this->chunks[2].store_ascii_as_utf32(ptr + sizeof(simd8) * 2); this->chunks[3].store_ascii_as_utf32(ptr + sizeof(simd8) * 3); } simdutf_really_inline uint64_t to_bitmask() const { uint64_t r0 = uint32_t(this->chunks[0].to_bitmask()); uint64_t r1 = this->chunks[1].to_bitmask(); uint64_t r2 = this->chunks[2].to_bitmask(); uint64_t r3 = this->chunks[3].to_bitmask(); return r0 | (r1 << 16) | (r2 << 32) | (r3 << 48); } simdutf_really_inline uint64_t lt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] < mask, this->chunks[1] < mask, this->chunks[2] < mask, this->chunks[3] < mask) .to_bitmask(); } simdutf_really_inline uint64_t gt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] > mask, this->chunks[1] > mask, this->chunks[2] > mask, this->chunks[3] > mask) .to_bitmask(); } simdutf_really_inline uint64_t eq(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] == mask, this->chunks[1] == mask, this->chunks[2] == mask, this->chunks[3] == mask) .to_bitmask(); } simdutf_really_inline uint64_t gteq_unsigned(const uint8_t m) const { const simd8 mask = simd8::splat(m); return simd8x64(simd8(this->chunks[0]) >= mask, simd8(this->chunks[1]) >= mask, simd8(this->chunks[2]) >= mask, simd8(this->chunks[3]) >= mask) .to_bitmask(); } void dump() const { puts(""); for (int i = 0; i < 4; i++) { printf("chunk[%d] = ", i); this->chunks[i].dump(); } } }; // struct simd8x64 simdutf_really_inline simd8 avg(const simd8 a, const simd8 b) { return vec_avg(a.value, b.value); } /* end file src/simdutf/ppc64/simd8-inl.h */ /* begin file src/simdutf/ppc64/simd16-inl.h */ // file included directly template struct simd16; template struct base16 { using vector_type = vector_u16_type_for_element; static const int SIZE = sizeof(vector_type); static const int ELEMENTS = sizeof(vector_type) / sizeof(T); vector_type value; // Zero constructor simdutf_really_inline base16() : value{vector_type()} {} // Conversion from SIMD register simdutf_really_inline base16(const vector_type _value) : value{_value} {} void dump() const { #ifdef SIMDUTF_LOGGING uint16_t tmp[8]; vec_xst(value, 0, reinterpret_cast(tmp)); for (int i = 0; i < 8; i++) { if (i == 0) { printf("[%04x", tmp[i]); } else if (i == 8 - 1) { printf(" %04x]", tmp[i]); } else { printf(" %04x", tmp[i]); } } putchar('\n'); #endif // SIMDUTF_LOGGING } }; // Forward declaration template struct simd16; template simd16 operator==(const simd16 a, const simd16 b); template simd16 operator==(const simd16 a, U b); template simd16 operator&(const simd16 a, const simd16 b); template simd16 operator|(const simd16 a, const simd16 b); template simd16 operator|(const simd16 a, U b); template simd16 operator^(const simd16 a, U b); // SIMD byte mask type (returned by things like eq and gt) template <> struct simd16 : base16 { static simdutf_really_inline simd16 splat(bool _value) { return (vector_type)vec_splats(uint16_t(-(!!_value))); } simdutf_really_inline simd16() : base16() {} simdutf_really_inline simd16(const vector_type _value) : base16(_value) {} // Splat constructor simdutf_really_inline simd16(bool _value) : base16(splat(_value)) {} simdutf_really_inline uint16_t to_bitmask() const { return move_mask_u8(value); } simdutf_really_inline bool any() const { const auto tmp = vec_u64_t(value); return tmp[0] || tmp[1]; // Note: logical or, not binary one } simdutf_really_inline bool is_zero() const { const auto tmp = vec_u64_t(value); return (tmp[0] | tmp[1]) == 0; } simdutf_really_inline simd16 &operator|=(const simd16 rhs) { value = vec_or(this->value, rhs.value); return *this; } }; template struct base16_numeric : base16 { using vector_type = typename base16::vector_type; static simdutf_really_inline simd16 splat(T _value) { return vec_splats(_value); } static simdutf_really_inline simd16 zero() { return splat(0); } template static simdutf_really_inline simd16 load(const U *ptr) { return vec_xl(0, reinterpret_cast(ptr)); } simdutf_really_inline base16_numeric() : base16() {} simdutf_really_inline base16_numeric(const vector_type _value) : base16(_value) {} // Store to array template simdutf_really_inline void store(U *dst) const { #if defined(__clang__) return vec_xst(this->value, 0, reinterpret_cast(dst)); #else return vec_xst(this->value, 0, reinterpret_cast(dst)); #endif // defined(__clang__) } // Override to distinguish from bool version simdutf_really_inline simd16 operator~() const { return vec_xor(this->value, vec_splats(T(0xffff))); } }; // Signed code units template <> struct simd16 : base16_numeric { simdutf_really_inline simd16() : base16_numeric() {} simdutf_really_inline simd16(const vector_type _value) : base16_numeric(_value) {} // Splat constructor simdutf_really_inline simd16(int16_t _value) : simd16(splat(_value)) {} // Array constructor simdutf_really_inline operator simd16() const; }; // Unsigned code units template <> struct simd16 : base16_numeric { simdutf_really_inline simd16() : base16_numeric() {} simdutf_really_inline simd16(const vector_type _value) : base16_numeric(_value) {} // Splat constructor simdutf_really_inline simd16(uint16_t _value) : simd16(splat(_value)) {} // Array constructor simdutf_really_inline simd16(const char16_t *values) : simd16(load(reinterpret_cast(values))) {} simdutf_really_inline bool is_ascii() const { return vec_all_lt(value, vec_splats(uint16_t(128))); } // Order-specific operations simdutf_really_inline simd16 max_val(const simd16 other) const { return vec_max(this->value, other.value); } simdutf_really_inline simd16 min_val(const simd16 other) const { return vec_min(this->value, other.value); } // Same as <, but only guarantees true is nonzero (< guarantees true = -1) simdutf_really_inline simd16 operator<=(const simd16 other) const { return other.max_val(*this) == other; } simdutf_really_inline simd16 operator>=(const simd16 other) const { return other.min_val(*this) == other; } simdutf_really_inline simd16 operator<(const simd16 other) const { return vec_cmplt(value, other.value); } // Bit-specific operations template simdutf_really_inline simd16 shr() const { return vec_sr(value, vec_splats(uint16_t(N))); } template simdutf_really_inline simd16 shl() const { return vec_sl(value, vec_splats(uint16_t(N))); } // Change the endianness simdutf_really_inline simd16 swap_bytes() const { return vec_revb(value); } // Pack with the unsigned saturation of two uint16_t code units into single // uint8_t vector static simdutf_really_inline simd8 pack(const simd16 &v0, const simd16 &v1) { return vec_packs(v0.value, v1.value); } }; template simd16 operator==(const simd16 a, const simd16 b) { return vec_cmpeq(a.value, b.value); } template simd16 operator==(const simd16 a, U b) { return vec_cmpeq(a.value, vec_splats(T(b))); } template simd16 operator&(const simd16 a, const simd16 b) { return vec_and(a.value, b.value); } template simd16 operator&(const simd16 a, U b) { return vec_and(a.value, vec_splats(T(b))); } template simd16 operator|(const simd16 a, const simd16 b) { return vec_or(a.value, b.value); } template simd16 operator|(const simd16 a, U b) { return vec_or(a.value, vec_splats(T(b))); } template simd16 operator^(const simd16 a, const simd16 b) { return vec_xor(a.value, b.value); } template simd16 operator^(const simd16 a, U b) { return vec_xor(a.value, vec_splats(T(b))); } simdutf_really_inline simd16::operator simd16() const { return (vec_u16_t)(value); } template struct simd16x32 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd16); static_assert(NUM_CHUNKS == 4, "AltiVec kernel should use four registers per 64-byte block."); simd16 chunks[NUM_CHUNKS]; simd16x32(const simd16x32 &o) = delete; // no copy allowed simd16x32 & operator=(const simd16 other) = delete; // no assignment allowed simd16x32() = delete; // no default constructor allowed simdutf_really_inline simd16x32(const simd16 chunk0, const simd16 chunk1, const simd16 chunk2, const simd16 chunk3) : chunks{chunk0, chunk1, chunk2, chunk3} {} simdutf_really_inline simd16x32(const T *ptr) : chunks{simd16::load(ptr), simd16::load(ptr + sizeof(simd16) / sizeof(T)), simd16::load(ptr + 2 * sizeof(simd16) / sizeof(T)), simd16::load(ptr + 3 * sizeof(simd16) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd16) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd16) * 1 / sizeof(T)); this->chunks[2].store(ptr + sizeof(simd16) * 2 / sizeof(T)); this->chunks[3].store(ptr + sizeof(simd16) * 3 / sizeof(T)); } simdutf_really_inline simd16 reduce_or() const { return (this->chunks[0] | this->chunks[1]) | (this->chunks[2] | this->chunks[3]); } simdutf_really_inline bool is_ascii() const { return this->reduce_or().is_ascii(); } simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { this->chunks[0].store_ascii_as_utf16(ptr + sizeof(simd16) * 0); this->chunks[1].store_ascii_as_utf16(ptr + sizeof(simd16) * 1); this->chunks[2].store_ascii_as_utf16(ptr + sizeof(simd16) * 2); this->chunks[3].store_ascii_as_utf16(ptr + sizeof(simd16) * 3); } simdutf_really_inline uint64_t to_bitmask() const { uint64_t r0 = uint32_t(this->chunks[0].to_bitmask()); uint64_t r1 = this->chunks[1].to_bitmask(); uint64_t r2 = this->chunks[2].to_bitmask(); uint64_t r3 = this->chunks[3].to_bitmask(); return r0 | (r1 << 16) | (r2 << 32) | (r3 << 48); } simdutf_really_inline void swap_bytes() { this->chunks[0] = this->chunks[0].swap_bytes(); this->chunks[1] = this->chunks[1].swap_bytes(); this->chunks[2] = this->chunks[2].swap_bytes(); this->chunks[3] = this->chunks[3].swap_bytes(); } simdutf_really_inline uint64_t gt(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] > mask, this->chunks[1] > mask, this->chunks[2] > mask, this->chunks[3] > mask) .to_bitmask(); } simdutf_really_inline uint64_t lteq(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] <= mask, this->chunks[1] <= mask, this->chunks[2] <= mask, this->chunks[3] <= mask) .to_bitmask(); } simdutf_really_inline uint64_t eq(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] == mask, this->chunks[1] == mask, this->chunks[2] == mask, this->chunks[3] == mask) .to_bitmask(); } simdutf_really_inline uint64_t not_in_range(const T low, const T high) const { const simd16 mask_low = simd16::splat(static_cast(low - 1)); const simd16 mask_high = simd16::splat(static_cast(high + 1)); return simd16x32( (this->chunks[0] >= mask_high) | (this->chunks[0] <= mask_low), (this->chunks[1] >= mask_high) | (this->chunks[1] <= mask_low), (this->chunks[2] >= mask_high) | (this->chunks[2] <= mask_low), (this->chunks[3] >= mask_high) | (this->chunks[3] <= mask_low)) .to_bitmask(); } }; // struct simd16x32 /* end file src/simdutf/ppc64/simd16-inl.h */ /* begin file src/simdutf/ppc64/simd32-inl.h */ // file included directly template struct simd32; template struct base32 { using vector_type = vector_u32_type_for_element; static const int SIZE = sizeof(vector_type); static const int ELEMENTS = sizeof(vector_type) / sizeof(T); vector_type value; // Zero constructor simdutf_really_inline base32() : value{vector_type()} {} // Conversion from SIMD register simdutf_really_inline base32(const vector_type _value) : value{_value} {} // Splat for scalar simdutf_really_inline base32(T scalar) : value{vec_splats(scalar)} {} template simdutf_really_inline base32(const Pointer *ptr) : base32(vec_xl(0, reinterpret_cast(ptr))) {} // Store to array template simdutf_really_inline void store(U *dst) const { #if defined(__clang__) return vec_xst(this->value, 0, reinterpret_cast(dst)); #else return vec_xst(this->value, 0, reinterpret_cast(dst)); #endif // defined(__clang__) } void dump(const char *name = nullptr) const { #ifdef SIMDUTF_LOGGING if (name != nullptr) { printf("%-10s = ", name); } uint32_t tmp[4]; vec_xst(value, 0, reinterpret_cast(tmp)); for (int i = 0; i < 4; i++) { if (i == 0) { printf("[%08x", tmp[i]); } else if (i == 4 - 1) { printf(" %08x]", tmp[i]); } else { printf(" %08x", tmp[i]); } } putchar('\n'); #endif // SIMDUTF_LOGGING } }; template struct base32_numeric : base32 { using super = base32; using vector_type = typename super::vector_type; static simdutf_really_inline simd32 splat(T _value) { return vec_splats(_value); } static simdutf_really_inline simd32 zero() { return splat(0); } template static simdutf_really_inline simd32 load(const U *values) { return vec_xl(0, reinterpret_cast(values)); } simdutf_really_inline base32_numeric() : base32() {} simdutf_really_inline base32_numeric(const vector_type _value) : base32(_value) {} // Addition/subtraction are the same for signed and unsigned simdutf_really_inline simd32 operator+(const simd32 other) const { return vec_add(this->value, other.value); } simdutf_really_inline simd32 operator-(const simd32 other) const { return vec_sub(this->value, other.value); } simdutf_really_inline simd32 &operator+=(const simd32 other) { *this = *this + other; return *static_cast *>(this); } simdutf_really_inline simd32 &operator-=(const simd32 other) { *this = *this - other; return *static_cast *>(this); } }; // Forward declaration template struct simd32; template simd32 operator==(const simd32 a, const simd32 b); template simd32 operator!=(const simd32 a, const simd32 b); template simd32 operator>(const simd32 a, const simd32 b); template simd32 operator==(const simd32 a, T b); template simd32 operator!=(const simd32 a, T b); template simd32 operator&(const simd32 a, const simd32 b); template simd32 operator|(const simd32 a, const simd32 b); template simd32 operator^(const simd32 a, const simd32 b); // SIMD byte mask type (returned by things like eq and gt) template <> struct simd32 : base32 { static simdutf_really_inline simd32 splat(bool _value) { return (vector_type)vec_splats(uint32_t(-(!!_value))); } simdutf_really_inline simd32(const vector_type _value) : base32(_value) {} // Splat constructor simdutf_really_inline simd32(bool _value) : base32(splat(_value)) {} simdutf_really_inline uint16_t to_bitmask() const { return move_mask_u8(value); } simdutf_really_inline bool any() const { const vec_u64_t tmp = (vec_u64_t)value; return tmp[0] || tmp[1]; // Note: logical or, not binary one } simdutf_really_inline bool is_zero() const { const vec_u64_t tmp = (vec_u64_t)value; return (tmp[0] | tmp[1]) == 0; } simdutf_really_inline simd32 operator~() const { return (vec_bool32_t)vec_xor(this->value, vec_splats(uint32_t(0xffffffff))); } }; // Unsigned code units template <> struct simd32 : base32_numeric { simdutf_really_inline simd32() : base32_numeric() {} simdutf_really_inline simd32(const vector_type _value) : base32_numeric(_value) {} // Splat constructor simdutf_really_inline simd32(uint32_t _value) : simd32(splat(_value)) {} // Array constructor simdutf_really_inline simd32(const char32_t *values) : simd32(load(reinterpret_cast(values))) {} // Bit-specific operations template simdutf_really_inline simd32 shr() const { return vec_sr(value, vec_splats(uint32_t(N))); } template simdutf_really_inline simd32 shl() const { return vec_sl(value, vec_splats(uint32_t(N))); } // Change the endianness simdutf_really_inline simd32 swap_bytes() const { return vec_revb(value); } simdutf_really_inline uint64_t sum() const { return uint64_t(value[0]) + uint64_t(value[1]) + uint64_t(value[2]) + uint64_t(value[3]); } static simdutf_really_inline simd16 pack(const simd32 &v0, const simd32 &v1) { return vec_packs(v0.value, v1.value); } }; template simd32 operator==(const simd32 a, const simd32 b) { return vec_cmpeq(a.value, b.value); } template simd32 operator!=(const simd32 a, const simd32 b) { return vec_cmpne(a.value, b.value); } template simd32 operator==(const simd32 a, T b) { return vec_cmpeq(a.value, vec_splats(b)); } template simd32 operator!=(const simd32 a, T b) { return vec_cmpne(a.value, vec_splats(b)); } template simd32 operator>(const simd32 a, const simd32 b) { return vec_cmpgt(a.value, b.value); } template simd32 operator>=(const simd32 a, const simd32 b) { return vec_cmpge(a.value, b.value); } template simd32 operator&(const simd32 a, const simd32 b) { return vec_and(a.value, b.value); } template simd32 operator&(const simd32 a, U b) { return vec_and(a.value, vec_splats(T(b))); } template simd32 operator|(const simd32 a, const simd32 b) { return vec_or(a.value, b.value); } template simd32 operator^(const simd32 a, const simd32 b) { return vec_xor(a.value, b.value); } template simd32 operator^(const simd32 a, U b) { return vec_xor(a.value, vec_splats(T(b))); } template simd32 max_val(const simd32 a, const simd32 b) { return vec_max(a.value, b.value); } template simdutf_really_inline simd32 min(const simd32 b, const simd32 a) { return vec_min(a.value, b.value); } /* end file src/simdutf/ppc64/simd32-inl.h */ template simd8 select(const simd8 cond, const simd8 val_true, const simd8 val_false) { return vec_sel(val_false.value, val_true.value, cond.value); } template simd8 select(const T cond, const simd8 val_true, const simd8 val_false) { return vec_sel(val_false.value, val_true.value, vec_splats(cond)); } template simd16 select(const simd16 cond, const simd16 val_true, const simd16 val_false) { return vec_sel(val_false.value, val_true.value, cond.value); } template simd16 select(const T cond, const simd16 val_true, const simd16 val_false) { return vec_sel(val_false.value, val_true.value, vec_splats(cond)); } template simd32 select(const simd32 cond, const simd32 val_true, const simd32 val_false) { return vec_sel(val_false.value, val_true.value, cond.value); } template simd32 select(const T cond, const simd32 val_true, const simd32 val_false) { return vec_sel(val_false.value, val_true.value, vec_splats(cond)); } using vector_u8 = simd8; using vector_u16 = simd16; using vector_u32 = simd32; using vector_i8 = simd8; simdutf_really_inline vector_u8 as_vector_u8(const vector_u16 v) { return vector_u8::vector_type(v.value); } simdutf_really_inline vector_u8 as_vector_u8(const vector_u32 v) { return vector_u8::vector_type(v.value); } simdutf_really_inline vector_u8 as_vector_u8(const vector_i8 v) { return vector_u8::vector_type(v.value); } simdutf_really_inline vector_u8 as_vector_u8(const simd16 v) { return vector_u8::vector_type(v.value); } simdutf_really_inline vector_i8 as_vector_i8(const vector_u8 v) { return vector_i8::vector_type(v.value); } simdutf_really_inline vector_u16 as_vector_u16(const vector_u8 v) { return vector_u16::vector_type(v.value); } simdutf_really_inline vector_u16 as_vector_u16(const simd16 v) { return vector_u16::vector_type(v.value); } simdutf_really_inline vector_u32 as_vector_u32(const vector_u8 v) { return vector_u32::vector_type(v.value); } simdutf_really_inline vector_u32 as_vector_u32(const vector_u16 v) { return vector_u32::vector_type(v.value); } simdutf_really_inline vector_u32 max(vector_u32 a, vector_u32 b) { return vec_max(a.value, b.value); } simdutf_really_inline vector_u32 max(vector_u32 a, vector_u32 b, vector_u32 c) { return max(max(a, b), c); } simdutf_really_inline vector_u32 sum4bytes(vector_u8 bytes, vector_u32 acc) { return vec_sum4s(bytes.value, acc.value); } } // namespace simd } // unnamed namespace } // namespace ppc64 } // namespace simdutf #endif // SIMDUTF_PPC64_SIMD_INPUT_H /* end file src/simdutf/ppc64/simd.h */ /* begin file src/simdutf/ppc64/end.h */ /* end file src/simdutf/ppc64/end.h */ #endif // SIMDUTF_IMPLEMENTATION_PPC64 #endif // SIMDUTF_PPC64_H /* end file src/simdutf/ppc64.h */ /* begin file src/simdutf/rvv.h */ #ifndef SIMDUTF_RVV_H #define SIMDUTF_RVV_H #ifdef SIMDUTF_FALLBACK_H #error "rvv.h must be included before fallback.h" #endif #define SIMDUTF_CAN_ALWAYS_RUN_RVV SIMDUTF_IS_RVV #ifndef SIMDUTF_IMPLEMENTATION_RVV #define SIMDUTF_IMPLEMENTATION_RVV \ (SIMDUTF_CAN_ALWAYS_RUN_RVV || \ (SIMDUTF_IS_RISCV64 && SIMDUTF_HAS_RVV_INTRINSICS && \ SIMDUTF_HAS_RVV_TARGET_REGION)) #endif #if SIMDUTF_IMPLEMENTATION_RVV #if SIMDUTF_CAN_ALWAYS_RUN_RVV #define SIMDUTF_TARGET_RVV #else #define SIMDUTF_TARGET_RVV SIMDUTF_TARGET_REGION("arch=+v") #endif #if !SIMDUTF_IS_ZVBB && SIMDUTF_HAS_ZVBB_INTRINSICS #define SIMDUTF_TARGET_ZVBB SIMDUTF_TARGET_REGION("arch=+v,+zvbb") #endif namespace simdutf { namespace rvv {} // namespace rvv } // namespace simdutf /* begin file src/simdutf/rvv/implementation.h */ #ifndef SIMDUTF_RVV_IMPLEMENTATION_H #define SIMDUTF_RVV_IMPLEMENTATION_H namespace simdutf { namespace rvv { namespace { using namespace simdutf; } // namespace class implementation final : public simdutf::implementation { public: simdutf_really_inline implementation() : simdutf::implementation("rvv", "RISC-V Vector Extension", internal::instruction_set::RVV), _supports_zvbb(internal::detect_supported_architectures() & internal::instruction_set::ZVBB) {} #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *input, size_t length) const noexcept final; #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) const noexcept final; void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept final; void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *buf, size_t length, char16_t *output) const noexcept final; simdutf_warn_unused size_t count_utf16le(const char16_t *buf, size_t length) const noexcept; simdutf_warn_unused size_t count_utf16be(const char16_t *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) const noexcept; simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept; ; simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept; ; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept; size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept; const char *find(const char *start, const char *end, char character) const noexcept; const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept; #endif // SIMDUTF_FEATURE_BASE64 private: const bool _supports_zvbb; #if SIMDUTF_IS_ZVBB bool supports_zvbb() const { return true; } #elif SIMDUTF_HAS_ZVBB_INTRINSICS bool supports_zvbb() const { return _supports_zvbb; } #else bool supports_zvbb() const { return false; } #endif }; } // namespace rvv } // namespace simdutf #endif // SIMDUTF_RVV_IMPLEMENTATION_H /* end file src/simdutf/rvv/implementation.h */ /* begin file src/simdutf/rvv/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "rvv" // #define SIMDUTF_IMPLEMENTATION rvv #if SIMDUTF_CAN_ALWAYS_RUN_RVV // nothing needed. #else SIMDUTF_TARGET_RVV #endif /* end file src/simdutf/rvv/begin.h */ /* begin file src/simdutf/rvv/intrinsics.h */ #ifndef SIMDUTF_RVV_INTRINSICS_H #define SIMDUTF_RVV_INTRINSICS_H #include #if __riscv_v_intrinsic >= 1000000 || __GCC__ >= 14 #define simdutf_vrgather_u8m1x2(tbl, idx) \ __riscv_vcreate_v_u8m1_u8m2( \ __riscv_vrgather_vv_u8m1(tbl, __riscv_vget_v_u8m2_u8m1(idx, 0), \ __riscv_vsetvlmax_e8m1()), \ __riscv_vrgather_vv_u8m1(tbl, __riscv_vget_v_u8m2_u8m1(idx, 1), \ __riscv_vsetvlmax_e8m1())); #define simdutf_vrgather_u8m1x4(tbl, idx) \ __riscv_vcreate_v_u8m1_u8m4( \ __riscv_vrgather_vv_u8m1(tbl, __riscv_vget_v_u8m4_u8m1(idx, 0), \ __riscv_vsetvlmax_e8m1()), \ __riscv_vrgather_vv_u8m1(tbl, __riscv_vget_v_u8m4_u8m1(idx, 1), \ __riscv_vsetvlmax_e8m1()), \ __riscv_vrgather_vv_u8m1(tbl, __riscv_vget_v_u8m4_u8m1(idx, 2), \ __riscv_vsetvlmax_e8m1()), \ __riscv_vrgather_vv_u8m1(tbl, __riscv_vget_v_u8m4_u8m1(idx, 3), \ __riscv_vsetvlmax_e8m1())); #else // This has worse codegen on gcc #define simdutf_vrgather_u8m1x2(tbl, idx) \ __riscv_vset_v_u8m1_u8m2( \ __riscv_vlmul_ext_v_u8m1_u8m2(__riscv_vrgather_vv_u8m1( \ tbl, __riscv_vget_v_u8m2_u8m1(idx, 0), __riscv_vsetvlmax_e8m1())), \ 1, \ __riscv_vrgather_vv_u8m1(tbl, __riscv_vget_v_u8m2_u8m1(idx, 1), \ __riscv_vsetvlmax_e8m1())) #define simdutf_vrgather_u8m1x4(tbl, idx) \ __riscv_vset_v_u8m1_u8m4( \ __riscv_vset_v_u8m1_u8m4( \ __riscv_vset_v_u8m1_u8m4( \ __riscv_vlmul_ext_v_u8m1_u8m4(__riscv_vrgather_vv_u8m1( \ tbl, __riscv_vget_v_u8m4_u8m1(idx, 0), \ __riscv_vsetvlmax_e8m1())), \ 1, \ __riscv_vrgather_vv_u8m1(tbl, \ __riscv_vget_v_u8m4_u8m1(idx, 1), \ __riscv_vsetvlmax_e8m1())), \ 2, \ __riscv_vrgather_vv_u8m1(tbl, __riscv_vget_v_u8m4_u8m1(idx, 2), \ __riscv_vsetvlmax_e8m1())), \ 3, \ __riscv_vrgather_vv_u8m1(tbl, __riscv_vget_v_u8m4_u8m1(idx, 3), \ __riscv_vsetvlmax_e8m1())) #endif /* Zvbb adds dedicated support for endianness swaps with vrev8, but if we can't * use that, we have to emulate it with the standard V extension. * Using LMUL=1 vrgathers could be faster than the srl+macc variant, but that * would increase register pressure, and vrgather implementations performance * varies a lot. */ enum class simdutf_ByteFlip { NONE, V, ZVBB }; template simdutf_really_inline static uint16_t simdutf_byteflip(uint16_t v) { if (method != simdutf_ByteFlip::NONE) return (uint16_t)((v * 1u) << 8 | (v * 1u) >> 8); return v; } #ifdef SIMDUTF_TARGET_ZVBB SIMDUTF_UNTARGET_REGION SIMDUTF_TARGET_ZVBB #endif template simdutf_really_inline static vuint16m1_t simdutf_byteflip(vuint16m1_t v, size_t vl) { #if SIMDUTF_HAS_ZVBB_INTRINSICS if (method == simdutf_ByteFlip::ZVBB) return __riscv_vrev8_v_u16m1(v, vl); #endif if (method == simdutf_ByteFlip::V) return __riscv_vmacc_vx_u16m1(__riscv_vsrl_vx_u16m1(v, 8, vl), 0x100, v, vl); return v; } template simdutf_really_inline static vuint16m2_t simdutf_byteflip(vuint16m2_t v, size_t vl) { #if SIMDUTF_HAS_ZVBB_INTRINSICS if (method == simdutf_ByteFlip::ZVBB) return __riscv_vrev8_v_u16m2(v, vl); #endif if (method == simdutf_ByteFlip::V) return __riscv_vmacc_vx_u16m2(__riscv_vsrl_vx_u16m2(v, 8, vl), 0x100, v, vl); return v; } template simdutf_really_inline static vuint16m4_t simdutf_byteflip(vuint16m4_t v, size_t vl) { #if SIMDUTF_HAS_ZVBB_INTRINSICS if (method == simdutf_ByteFlip::ZVBB) return __riscv_vrev8_v_u16m4(v, vl); #endif if (method == simdutf_ByteFlip::V) return __riscv_vmacc_vx_u16m4(__riscv_vsrl_vx_u16m4(v, 8, vl), 0x100, v, vl); return v; } template simdutf_really_inline static vuint16m8_t simdutf_byteflip(vuint16m8_t v, size_t vl) { #if SIMDUTF_HAS_ZVBB_INTRINSICS if (method == simdutf_ByteFlip::ZVBB) return __riscv_vrev8_v_u16m8(v, vl); #endif if (method == simdutf_ByteFlip::V) return __riscv_vmacc_vx_u16m8(__riscv_vsrl_vx_u16m8(v, 8, vl), 0x100, v, vl); return v; } #ifdef SIMDUTF_TARGET_ZVBB SIMDUTF_UNTARGET_REGION SIMDUTF_TARGET_RVV #endif #endif // SIMDUTF_RVV_INTRINSICS_H /* end file src/simdutf/rvv/intrinsics.h */ /* begin file src/simdutf/rvv/end.h */ #if SIMDUTF_CAN_ALWAYS_RUN_RVV // nothing needed. #else SIMDUTF_UNTARGET_REGION #endif /* end file src/simdutf/rvv/end.h */ #endif // SIMDUTF_IMPLEMENTATION_RVV #endif // SIMDUTF_RVV_H /* end file src/simdutf/rvv.h */ /* begin file src/simdutf/lsx.h */ #ifndef SIMDUTF_LSX_H #define SIMDUTF_LSX_H #ifdef SIMDUTF_FALLBACK_H #error "lsx.h must be included before fallback.h" #endif #ifndef SIMDUTF_IMPLEMENTATION_LSX #define SIMDUTF_IMPLEMENTATION_LSX (SIMDUTF_IS_LSX) #endif #if SIMDUTF_IMPLEMENTATION_LSX && SIMDUTF_IS_LSX #define SIMDUTF_CAN_ALWAYS_RUN_LSX 1 #else #define SIMDUTF_CAN_ALWAYS_RUN_LSX 0 #endif #define SIMDUTF_CAN_ALWAYS_RUN_FALLBACK (SIMDUTF_IMPLEMENTATION_FALLBACK) #if SIMDUTF_IMPLEMENTATION_LSX namespace simdutf { /** * Implementation for LoongArch SX. */ namespace lsx {} // namespace lsx } // namespace simdutf /* begin file src/simdutf/lsx/implementation.h */ #ifndef SIMDUTF_LSX_IMPLEMENTATION_H #define SIMDUTF_LSX_IMPLEMENTATION_H namespace simdutf { namespace lsx { namespace { using namespace simdutf; } class implementation final : public simdutf::implementation { public: simdutf_really_inline implementation() : simdutf::implementation("lsx", "LOONGARCH SX", internal::instruction_set::LSX) {} #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *input, size_t length) const noexcept final; #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept final; void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept final; void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *buf, size_t length, char16_t *output) const noexcept final; simdutf_warn_unused size_t count_utf16le(const char16_t *buf, size_t length) const noexcept; simdutf_warn_unused size_t count_utf16be(const char16_t *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) const noexcept; simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept; ; simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept; ; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept; size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept; const char *find(const char *start, const char *end, char character) const noexcept; const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept; #endif // SIMDUTF_FEATURE_BASE64 }; } // namespace lsx } // namespace simdutf #endif // SIMDUTF_LSX_IMPLEMENTATION_H /* end file src/simdutf/lsx/implementation.h */ /* begin file src/simdutf/lsx/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "lsx" // #define SIMDUTF_IMPLEMENTATION lsx #define SIMDUTF_SIMD_HAS_UNSIGNED_CMP 1 /* end file src/simdutf/lsx/begin.h */ // Declarations /* begin file src/simdutf/lsx/intrinsics.h */ #ifndef SIMDUTF_LSX_INTRINSICS_H #define SIMDUTF_LSX_INTRINSICS_H // This should be the correct header whether // you use visual studio or other compilers. #include /* Encoding of argument for LoongArch64 xvldi instruction. See: https://jia.je/unofficial-loongarch-intrinsics-guide/lasx/misc/#__m256i-__lasx_xvldi-imm_n1024_1023-imm 1: imm[12:8]=0b10000: broadcast imm[7:0] as 32-bit elements to all lanes 2: imm[12:8]=0b10001: broadcast imm[7:0] << 8 as 32-bit elements to all lanes 3: imm[12:8]=0b10010: broadcast imm[7:0] << 16 as 32-bit elements to all lanes 4: imm[12:8]=0b10011: broadcast imm[7:0] << 24 as 32-bit elements to all lanes 5: imm[12:8]=0b10100: broadcast imm[7:0] as 16-bit elements to all lanes 6: imm[12:8]=0b10101: broadcast imm[7:0] << 8 as 16-bit elements to all lanes 7: imm[12:8]=0b10110: broadcast (imm[7:0] << 8) | 0xFF as 32-bit elements to all lanes 8: imm[12:8]=0b10111: broadcast (imm[7:0] << 16) | 0xFFFF as 32-bit elements to all lanes 9: imm[12:8]=0b11000: broadcast imm[7:0] as 8-bit elements to all lanes 10: imm[12:8]=0b11001: repeat each bit of imm[7:0] eight times, and broadcast the result as 64-bit elements to all lanes */ namespace vldi { template class const_u16 { constexpr static const uint8_t b0 = ((v >> 0 * 8) & 0xff); constexpr static const uint8_t b1 = ((v >> 1 * 8) & 0xff); constexpr static bool is_case5 = uint16_t(b0) == v; constexpr static bool is_case6 = (uint16_t(b1) << 8) == v; constexpr static bool is_case9 = (b0 == b1); constexpr static bool is_case10 = ((b0 == 0xff) || (b0 == 0x00)) && ((b1 == 0xff) || (b1 == 0x00)); public: constexpr static uint16_t operation = is_case5 ? 0b10100 : is_case6 ? 0b10101 : is_case9 ? 0b11000 : is_case10 ? 0x11001 : 0xffff; constexpr static uint16_t byte = is_case5 ? b0 : is_case6 ? b1 : is_case9 ? b0 : is_case10 ? ((b0 ? 0x55 : 0x00) | (b1 ? 0xaa : 0x00)) : 0xffff; constexpr static int value = int((operation << 8) | byte) - 8192; constexpr static bool valid = operation != 0xffff; }; template class const_u32 { constexpr static const uint8_t b0 = (v & 0xff); constexpr static const uint8_t b1 = ((v >> 8) & 0xff); constexpr static const uint8_t b2 = ((v >> 16) & 0xff); constexpr static const uint8_t b3 = ((v >> 24) & 0xff); constexpr static bool is_case1 = (uint32_t(b0) == v); constexpr static bool is_case2 = ((uint32_t(b1) << 8) == v); constexpr static bool is_case3 = ((uint32_t(b2) << 16) == v); constexpr static bool is_case4 = ((uint32_t(b3) << 24) == v); constexpr static bool is_case5 = (b0 == b2) && (b1 == 0) && (b3 == 0); constexpr static bool is_case6 = (b1 == b3) && (b0 == 0) && (b2 == 0); constexpr static bool is_case7 = (b3 == 0) && (b2 == 0) && (b0 == 0xff); constexpr static bool is_case8 = (b3 == 0) && (b1 == 0xff) && (b0 == 0xff); constexpr static bool is_case9 = (b0 == b1) && (b0 == b2) && (b0 == b3); constexpr static bool is_case10 = ((b0 == 0xff) || (b0 == 0x00)) && ((b1 == 0xff) || (b1 == 0x00)) && ((b2 == 0xff) || (b2 == 0x00)) && ((b3 == 0xff) || (b3 == 0x00)); public: constexpr static uint16_t operation = is_case1 ? 0b10000 : is_case2 ? 0b10001 : is_case3 ? 0b10010 : is_case4 ? 0b10011 : is_case5 ? 0b10100 : is_case6 ? 0b10101 : is_case7 ? 0b10110 : is_case8 ? 0b10111 : is_case9 ? 0b11000 : is_case10 ? 0b11001 : 0xffff; constexpr static uint16_t byte = is_case1 ? b0 : is_case2 ? b1 : is_case3 ? b2 : is_case4 ? b3 : is_case5 ? b0 : is_case6 ? b1 : is_case7 ? b1 : is_case8 ? b2 : is_case9 ? b0 : is_case10 ? ((b0 ? 0x11 : 0x00) | (b1 ? 0x22 : 0x00) | (b2 ? 0x44 : 0x00) | (b3 ? 0x88 : 0x00)) : 0xffff; constexpr static int value = int((operation << 8) | byte) - 8192; constexpr static bool valid = operation != 0xffff; }; template class const_u64 { constexpr static const uint8_t b0 = ((v >> 0 * 8) & 0xff); constexpr static const uint8_t b1 = ((v >> 1 * 8) & 0xff); constexpr static const uint8_t b2 = ((v >> 2 * 8) & 0xff); constexpr static const uint8_t b3 = ((v >> 3 * 8) & 0xff); constexpr static const uint8_t b4 = ((v >> 4 * 8) & 0xff); constexpr static const uint8_t b5 = ((v >> 5 * 8) & 0xff); constexpr static const uint8_t b6 = ((v >> 6 * 8) & 0xff); constexpr static const uint8_t b7 = ((v >> 7 * 8) & 0xff); constexpr static bool is_case10 = ((b0 == 0xff) || (b0 == 0x00)) && ((b1 == 0xff) || (b1 == 0x00)) && ((b2 == 0xff) || (b2 == 0x00)) && ((b3 == 0xff) || (b3 == 0x00)) && ((b4 == 0xff) || (b4 == 0x00)) && ((b5 == 0xff) || (b5 == 0x00)) && ((b6 == 0xff) || (b6 == 0x00)) && ((b7 == 0xff) || (b7 == 0x00)); public: constexpr static bool is_32bit = ((v & 0xffffffff) == (v >> 32)) && const_u32<(v >> 32)>::value; constexpr static uint8_t op_32bit = const_u32<(v >> 32)>::operation; constexpr static uint8_t byte_32bit = const_u32<(v >> 32)>::byte; constexpr static uint16_t operation = is_32bit ? op_32bit : is_case10 ? 0x11001 : 0xffff; constexpr static uint16_t byte = is_32bit ? byte_32bit : is_case10 ? ((b0 ? 0x01 : 0x00) | (b1 ? 0x02 : 0x00) | (b2 ? 0x04 : 0x00) | (b3 ? 0x08 : 0x00) | (b4 ? 0x10 : 0x00) | (b5 ? 0x20 : 0x00) | (b6 ? 0x40 : 0x00) | (b7 ? 0x80 : 0x00)) : 0xffff; constexpr static int value = int((operation << 8) | byte) - 8192; constexpr static bool valid = operation != 0xffff; }; } // namespace vldi // Uncomment when running under QEMU affected // by bug https://gitlab.com/qemu-project/qemu/-/issues/2865 // Versions <= 9.2.2 are affected, likely anything newer is correct. #ifndef QEMU_VLDI_BUG // #define QEMU_VLDI_BUG 1 #endif #ifdef QEMU_VLDI_BUG #define lsx_splat_u16(v) __lsx_vreplgr2vr_h(v) #define lsx_splat_u32(v) __lsx_vreplgr2vr_w(v) #else template constexpr __m128i lsx_splat_u16_aux() { constexpr bool is_imm10 = (int16_t(x) < 512) && (int16_t(x) > -512); constexpr uint16_t imm10 = is_imm10 ? x : 0; constexpr bool is_vldi = vldi::const_u16::valid; constexpr int vldi_imm = is_vldi ? vldi::const_u16::value : 0; return is_imm10 ? __lsx_vrepli_h(int16_t(imm10)) : is_vldi ? __lsx_vldi(vldi_imm) : __lsx_vreplgr2vr_h(x); } template constexpr __m128i lsx_splat_u32_aux() { constexpr bool is_imm10 = (int32_t(x) < 512) && (int32_t(x) > -512); constexpr uint32_t imm10 = is_imm10 ? x : 0; constexpr bool is_vldi = vldi::const_u32::valid; constexpr int vldi_imm = is_vldi ? vldi::const_u32::value : 0; return is_imm10 ? __lsx_vrepli_w(int32_t(imm10)) : is_vldi ? __lsx_vldi(vldi_imm) : __lsx_vreplgr2vr_w(x); } #define lsx_splat_u16(v) lsx_splat_u16_aux<(v)>() #define lsx_splat_u32(v) lsx_splat_u32_aux<(v)>() #endif // QEMU_VLDI_BUG #endif // SIMDUTF_LSX_INTRINSICS_H /* end file src/simdutf/lsx/intrinsics.h */ /* begin file src/simdutf/lsx/bitmanipulation.h */ #ifndef SIMDUTF_LSX_BITMANIPULATION_H #define SIMDUTF_LSX_BITMANIPULATION_H #include namespace simdutf { namespace lsx { namespace { simdutf_really_inline int count_ones(uint64_t input_num) { return __lsx_vpickve2gr_w(__lsx_vpcnt_d(__lsx_vreplgr2vr_d(input_num)), 0); } #if SIMDUTF_NEED_TRAILING_ZEROES simdutf_really_inline int trailing_zeroes(uint64_t input_num) { return __builtin_ctzll(input_num); } #endif } // unnamed namespace } // namespace lsx } // namespace simdutf #endif // SIMDUTF_LSX_BITMANIPULATION_H /* end file src/simdutf/lsx/bitmanipulation.h */ /* begin file src/simdutf/lsx/simd.h */ #ifndef SIMDUTF_LSX_SIMD_H #define SIMDUTF_LSX_SIMD_H namespace simdutf { namespace lsx { namespace { namespace simd { template struct simd8; // // Base class of simd8 and simd8, both of which use __m128i // internally. // template > struct base_u8 { __m128i value; static const int SIZE = sizeof(value); // Conversion from/to SIMD register simdutf_really_inline base_u8(const __m128i _value) : value(_value) {} simdutf_really_inline operator const __m128i &() const { return this->value; } simdutf_really_inline operator __m128i &() { return this->value; } // Bit operations simdutf_really_inline simd8 operator|(const simd8 other) const { return __lsx_vor_v(this->value, other); } simdutf_really_inline simd8 operator&(const simd8 other) const { return __lsx_vand_v(this->value, other); } simdutf_really_inline simd8 operator^(const simd8 other) const { return __lsx_vxor_v(this->value, other); } simdutf_really_inline simd8 operator~() const { return *this ^ 0xFFu; } simdutf_really_inline simd8 &operator|=(const simd8 other) { auto this_cast = static_cast *>(this); *this_cast = *this_cast | other; return *this_cast; } friend simdutf_really_inline Mask operator==(const simd8 lhs, const simd8 rhs) { return __lsx_vseq_b(lhs, rhs); } template simdutf_really_inline simd8 prev(const simd8 prev_chunk) const { return __lsx_vor_v(__lsx_vbsll_v(this->value, N), __lsx_vbsrl_v(prev_chunk.value, 16 - N)); } }; // SIMD byte mask type (returned by things like eq and gt) template <> struct simd8 : base_u8 { typedef uint16_t bitmask_t; typedef uint32_t bitmask2_t; static simdutf_really_inline simd8 splat(bool _value) { return __lsx_vreplgr2vr_b(uint8_t(-(!!_value))); } simdutf_really_inline simd8(const __m128i _value) : base_u8(_value) {} // False constructor simdutf_really_inline simd8() : simd8(__lsx_vldi(0)) {} // Splat constructor simdutf_really_inline simd8(bool _value) : simd8(splat(_value)) {} simdutf_really_inline void store(uint8_t dst[16]) const { return __lsx_vst(this->value, dst, 0); } simdutf_really_inline uint32_t to_bitmask() const { return __lsx_vpickve2gr_wu(__lsx_vmsknz_b(*this), 0); } }; // Unsigned bytes template <> struct simd8 : base_u8 { static simdutf_really_inline simd8 splat(uint8_t _value) { return __lsx_vreplgr2vr_b(_value); } static simdutf_really_inline simd8 zero() { return __lsx_vldi(0); } static simdutf_really_inline simd8 load(const uint8_t *values) { return __lsx_vld(values, 0); } simdutf_really_inline simd8(const __m128i _value) : base_u8(_value) {} // Zero constructor simdutf_really_inline simd8() : simd8(zero()) {} // Array constructor simdutf_really_inline simd8(const uint8_t values[16]) : simd8(load(values)) {} // Splat constructor simdutf_really_inline simd8(uint8_t _value) : simd8(splat(_value)) {} // Member-by-member initialization simdutf_really_inline simd8(uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15) : simd8((__m128i)v16u8{v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15}) {} // Repeat 16 values as many times as necessary (usually for lookup tables) simdutf_really_inline static simd8 repeat_16(uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15) { return simd8(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15); } // Store to array simdutf_really_inline void store(uint8_t dst[16]) const { return __lsx_vst(this->value, dst, 0); } // Order-specific operations simdutf_really_inline simd8 operator>=(const simd8 other) const { return __lsx_vsle_bu(other, *this); } simdutf_really_inline simd8 operator>(const simd8 other) const { return __lsx_vslt_bu(other, *this); } simdutf_really_inline simd8 &operator-=(const simd8 other) { value = __lsx_vsub_b(value, other.value); return *this; } // Same as >, but instead of guaranteeing all 1's == true, false = 0 and true // = nonzero. For ARM, returns all 1's. simdutf_really_inline simd8 gt_bits(const simd8 other) const { return simd8(*this > other); } // Bit-specific operations simdutf_really_inline simd8 any_bits_set(simd8 bits) const { return __lsx_vslt_bu(__lsx_vldi(0), __lsx_vand_v(this->value, bits)); } simdutf_really_inline bool is_ascii() const { return __lsx_vpickve2gr_hu(__lsx_vmskgez_b(this->value), 0) == 0xFFFF; } simdutf_really_inline bool any_bits_set_anywhere() const { return __lsx_vpickve2gr_hu(__lsx_vmsknz_b(this->value), 0) > 0; } template simdutf_really_inline simd8 shr() const { return __lsx_vsrli_b(this->value, N); } template simdutf_really_inline simd8 shl() const { return __lsx_vslli_b(this->value, N); } // Perform a lookup assuming the value is between 0 and 16 (undefined behavior // for out of range values) template simdutf_really_inline simd8 lookup_16(simd8 lookup_table) const { return lookup_table.apply_lookup_16_to(*this); } template simdutf_really_inline simd8 lookup_16(L replace0, L replace1, L replace2, L replace3, L replace4, L replace5, L replace6, L replace7, L replace8, L replace9, L replace10, L replace11, L replace12, L replace13, L replace14, L replace15) const { return lookup_16(simd8::repeat_16( replace0, replace1, replace2, replace3, replace4, replace5, replace6, replace7, replace8, replace9, replace10, replace11, replace12, replace13, replace14, replace15)); } template simdutf_really_inline simd8 apply_lookup_16_to(const simd8 original) const { __m128i original_tmp = __lsx_vand_v(original, __lsx_vldi(0x1f)); return __lsx_vshuf_b(__lsx_vldi(0), *this, simd8(original_tmp)); } simdutf_really_inline uint64_t sum_bytes() const { const auto sum_u16 = __lsx_vhaddw_hu_bu(value, value); const auto sum_u32 = __lsx_vhaddw_wu_hu(sum_u16, sum_u16); const auto sum_u64 = __lsx_vhaddw_du_wu(sum_u32, sum_u32); return uint64_t(__lsx_vpickve2gr_du(sum_u64, 0)) + uint64_t(__lsx_vpickve2gr_du(sum_u64, 1)); } }; // Signed bytes template <> struct simd8 { __m128i value; static const int SIZE = sizeof(value); static simdutf_really_inline simd8 splat(int8_t _value) { return __lsx_vreplgr2vr_b(_value); } static simdutf_really_inline simd8 zero() { return __lsx_vldi(0); } static simdutf_really_inline simd8 load(const int8_t values[16]) { return __lsx_vld(values, 0); } template simdutf_really_inline void store_ascii_as_utf16(char16_t *p) const { __m128i zero = __lsx_vldi(0); if (match_system(big_endian)) { __lsx_vst(__lsx_vilvl_b(zero, (__m128i)this->value), reinterpret_cast(p), 0); __lsx_vst(__lsx_vilvh_b(zero, (__m128i)this->value), reinterpret_cast(p + 8), 0); } else { __lsx_vst(__lsx_vilvl_b((__m128i)this->value, zero), reinterpret_cast(p), 0); __lsx_vst(__lsx_vilvh_b((__m128i)this->value, zero), reinterpret_cast(p + 8), 0); } } simdutf_really_inline void store_ascii_as_utf32(char32_t *p) const { __m128i zero = __lsx_vldi(0); __m128i in16low = __lsx_vilvl_b(zero, (__m128i)this->value); __m128i in16high = __lsx_vilvh_b(zero, (__m128i)this->value); __m128i in32_0 = __lsx_vilvl_h(zero, in16low); __m128i in32_1 = __lsx_vilvh_h(zero, in16low); __m128i in32_2 = __lsx_vilvl_h(zero, in16high); __m128i in32_3 = __lsx_vilvh_h(zero, in16high); __lsx_vst(in32_0, reinterpret_cast(p), 0); __lsx_vst(in32_1, reinterpret_cast(p + 4), 0); __lsx_vst(in32_2, reinterpret_cast(p + 8), 0); __lsx_vst(in32_3, reinterpret_cast(p + 12), 0); } // In places where the table can be reused, which is most uses in simdutf, it // is worth it to do 4 table lookups, as there is no direct zero extension // from u8 to u32. simdutf_really_inline void store_ascii_as_utf32_tbl(char32_t *p) const { const simd8 tb1{0, 255, 255, 255, 1, 255, 255, 255, 2, 255, 255, 255, 3, 255, 255, 255}; const simd8 tb2{4, 255, 255, 255, 5, 255, 255, 255, 6, 255, 255, 255, 7, 255, 255, 255}; const simd8 tb3{8, 255, 255, 255, 9, 255, 255, 255, 10, 255, 255, 255, 11, 255, 255, 255}; const simd8 tb4{12, 255, 255, 255, 13, 255, 255, 255, 14, 255, 255, 255, 15, 255, 255, 255}; // encourage store pairing and interleaving const auto shuf1 = this->apply_lookup_16_to(tb1); const auto shuf2 = this->apply_lookup_16_to(tb2); shuf1.store(reinterpret_cast(p)); shuf2.store(reinterpret_cast(p + 4)); const auto shuf3 = this->apply_lookup_16_to(tb3); const auto shuf4 = this->apply_lookup_16_to(tb4); shuf3.store(reinterpret_cast(p + 8)); shuf4.store(reinterpret_cast(p + 12)); } // Conversion from/to SIMD register simdutf_really_inline simd8(const __m128i _value) : value(_value) {} // Zero constructor simdutf_really_inline simd8() : simd8(zero()) {} // Splat constructor simdutf_really_inline simd8(int8_t _value) : simd8(splat(_value)) {} // Array constructor simdutf_really_inline simd8(const int8_t *values) : simd8(load(values)) {} // Store to array simdutf_really_inline void store(int8_t dst[16]) const { return __lsx_vst(value, dst, 0); } simdutf_really_inline operator simd8() const { return ((__m128i)this->value); } simdutf_really_inline simd8 operator|(const simd8 other) const { return __lsx_vor_v((__m128i)value, (__m128i)other.value); } simdutf_really_inline bool is_ascii() const { return (__lsx_vpickve2gr_hu(__lsx_vmskgez_b((__m128i)this->value), 0) == 0xffff); } // Order-sensitive comparisons simdutf_really_inline simd8 operator>(const simd8 other) const { return __lsx_vslt_b((__m128i)other.value, (__m128i)value); } simdutf_really_inline simd8 operator<(const simd8 other) const { return __lsx_vslt_b((__m128i)value, (__m128i)other.value); } template simdutf_really_inline simd8 prev(const simd8 prev_chunk) const { return __lsx_vor_v(__lsx_vbsll_v(this->value, N), __lsx_vbsrl_v(prev_chunk.value, 16 - N)); } template simdutf_really_inline simd8 apply_lookup_16_to(const simd8 original) const { __m128i original_tmp = __lsx_vand_v(original, __lsx_vldi(0x1f)); return __lsx_vshuf_b(__lsx_vldi(0), (__m128i)this->value, simd8(original_tmp)); } }; template struct simd8x64 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd8); static_assert( NUM_CHUNKS == 4, "LoongArch kernel should use four registers per 64-byte block."); simd8 chunks[NUM_CHUNKS]; simd8x64(const simd8x64 &o) = delete; // no copy allowed simd8x64 & operator=(const simd8 other) = delete; // no assignment allowed simd8x64() = delete; // no default constructor allowed simdutf_really_inline simd8x64(const simd8 chunk0, const simd8 chunk1, const simd8 chunk2, const simd8 chunk3) : chunks{chunk0, chunk1, chunk2, chunk3} {} simdutf_really_inline simd8x64(const T *ptr) : chunks{simd8::load(ptr), simd8::load(ptr + sizeof(simd8) / sizeof(T)), simd8::load(ptr + 2 * sizeof(simd8) / sizeof(T)), simd8::load(ptr + 3 * sizeof(simd8) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd8) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd8) * 1 / sizeof(T)); this->chunks[2].store(ptr + sizeof(simd8) * 2 / sizeof(T)); this->chunks[3].store(ptr + sizeof(simd8) * 3 / sizeof(T)); } simdutf_really_inline simd8x64 &operator|=(const simd8x64 &other) { this->chunks[0] |= other.chunks[0]; this->chunks[1] |= other.chunks[1]; this->chunks[2] |= other.chunks[2]; this->chunks[3] |= other.chunks[3]; return *this; } simdutf_really_inline simd8 reduce_or() const { return (this->chunks[0] | this->chunks[1]) | (this->chunks[2] | this->chunks[3]); } simdutf_really_inline bool is_ascii() const { return reduce_or().is_ascii(); } template simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { this->chunks[0].template store_ascii_as_utf16(ptr + sizeof(simd8) * 0); this->chunks[1].template store_ascii_as_utf16(ptr + sizeof(simd8) * 1); this->chunks[2].template store_ascii_as_utf16(ptr + sizeof(simd8) * 2); this->chunks[3].template store_ascii_as_utf16(ptr + sizeof(simd8) * 3); } simdutf_really_inline void store_ascii_as_utf32(char32_t *ptr) const { this->chunks[0].store_ascii_as_utf32_tbl(ptr + sizeof(simd8) * 0); this->chunks[1].store_ascii_as_utf32_tbl(ptr + sizeof(simd8) * 1); this->chunks[2].store_ascii_as_utf32_tbl(ptr + sizeof(simd8) * 2); this->chunks[3].store_ascii_as_utf32_tbl(ptr + sizeof(simd8) * 3); } simdutf_really_inline uint64_t to_bitmask() const { __m128i mask = __lsx_vbsll_v(__lsx_vmsknz_b(this->chunks[3]), 6); mask = __lsx_vor_v(mask, __lsx_vbsll_v(__lsx_vmsknz_b(this->chunks[2]), 4)); mask = __lsx_vor_v(mask, __lsx_vbsll_v(__lsx_vmsknz_b(this->chunks[1]), 2)); mask = __lsx_vor_v(mask, __lsx_vmsknz_b(this->chunks[0])); return __lsx_vpickve2gr_du(mask, 0); } simdutf_really_inline uint64_t lt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] < mask, this->chunks[1] < mask, this->chunks[2] < mask, this->chunks[3] < mask) .to_bitmask(); } simdutf_really_inline uint64_t gt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] > mask, this->chunks[1] > mask, this->chunks[2] > mask, this->chunks[3] > mask) .to_bitmask(); } simdutf_really_inline uint64_t gteq_unsigned(const uint8_t m) const { const simd8 mask = simd8::splat(m); return simd8x64(simd8(this->chunks[0].value) >= mask, simd8(this->chunks[1].value) >= mask, simd8(this->chunks[2].value) >= mask, simd8(this->chunks[3].value) >= mask) .to_bitmask(); } }; // struct simd8x64 /* begin file src/simdutf/lsx/simd16-inl.h */ template struct simd16; template > struct base_u16 { __m128i value; static const size_t SIZE = sizeof(value); static const size_t ELEMENTS = sizeof(value) / sizeof(T); // Conversion from/to SIMD register simdutf_really_inline base_u16() = default; simdutf_really_inline base_u16(const __m128i _value) : value(_value) {} // Bit operations simdutf_really_inline simd16 operator|(const simd16 other) const { return __lsx_vor_v(this->value, other.value); } simdutf_really_inline simd16 operator&(const simd16 other) const { return __lsx_vand_v(this->value, other.value); } simdutf_really_inline simd16 operator~() const { return __lsx_vxori_b(this->value, 0xFF); } friend simdutf_really_inline Mask operator==(const simd16 lhs, const simd16 rhs) { return __lsx_vseq_h(lhs.value, rhs.value); } template simdutf_really_inline simd16 byte_right_shift() const { return __lsx_vbsrl_v(this->value, N); } simdutf_really_inline uint16_t first() const { return uint16_t(__lsx_vpickve2gr_w(value, 0)); } }; template > struct base16 : base_u16 { using bitmask_type = uint16_t; simdutf_really_inline base16() : base_u16() {} simdutf_really_inline base16(const __m128i _value) : base_u16(_value) {} template simdutf_really_inline base16(const Pointer *ptr) : base16(__lsx_vld(ptr, 0)) {} static const int SIZE = sizeof(base_u16::value); template simdutf_really_inline simd16 prev(const simd16 prev_chunk) const { return __lsx_vor_v(__lsx_vbsll_v(*this, N * 2), __lsx_vbsrl_v(prev_chunk, 16 - N * 2)); } }; // SIMD byte mask type (returned by things like eq and gt) template <> struct simd16 : base16 { static simdutf_really_inline simd16 splat(bool _value) { return __lsx_vreplgr2vr_h(uint16_t(-(!!_value))); } simdutf_really_inline simd16() : base16() {} simdutf_really_inline simd16(const __m128i _value) : base16(_value) {} simdutf_really_inline bitmask_type to_bitmask() const { __m128i mask = __lsx_vmsknz_b(this->value); bitmask_type mask0 = bitmask_type(__lsx_vpickve2gr_wu(mask, 0)); return mask0; } simdutf_really_inline bool is_zero() const { return __lsx_bz_v(this->value); } }; template struct base16_numeric : base16 { static simdutf_really_inline simd16 splat(T _value) { return __lsx_vreplgr2vr_h(_value); } static simdutf_really_inline simd16 zero() { return __lsx_vldi(0); } template static simdutf_really_inline simd16 load(const Pointer values) { return __lsx_vld(values, 0); } simdutf_really_inline base16_numeric(const __m128i _value) : base16(_value) {} // Store to array simdutf_really_inline void store(T dst[8]) const { return __lsx_vst(this->value, dst, 0); } // Override to distinguish from bool version simdutf_really_inline simd16 operator~() const { return __lsx_vxori_b(this->value, 0xFF); } }; // Unsigned code unitstemplate<> template <> struct simd16 : base16_numeric { simdutf_really_inline simd16(const __m128i _value) : base16_numeric((__m128i)_value) {} // Splat constructor simdutf_really_inline simd16(uint16_t _value) : simd16(splat(_value)) {} // Array constructor simdutf_really_inline simd16(const uint16_t *values) : simd16(load(values)) {} simdutf_really_inline simd16(const char16_t *values) : simd16(load(reinterpret_cast(values))) {} // Copy constructor simdutf_really_inline simd16(const simd16 mask) : simd16(mask.value) {} // Order-specific operations simdutf_really_inline simd16 &operator+=(const simd16 other) { value = __lsx_vadd_h(value, other.value); return *this; } template static simdutf_really_inline simd8 pack_shifted_right(const simd16 &v0, const simd16 &v1) { return __lsx_vssrlni_bu_h(v1.value, v0.value, N); } // Pack with the unsigned saturation of two uint16_t code units into single // uint8_t vector static simdutf_really_inline simd8 pack(const simd16 &v0, const simd16 &v1) { return pack_shifted_right<0>(v0, v1); } // Change the endianness simdutf_really_inline simd16 swap_bytes() const { return __lsx_vshuf4i_b(this->value, 0b10110001); } simdutf_really_inline uint64_t sum() const { const auto sum_u32 = __lsx_vhaddw_wu_hu(value, value); const auto sum_u64 = __lsx_vhaddw_du_wu(sum_u32, sum_u32); return uint64_t(__lsx_vpickve2gr_du(sum_u64, 0)) + uint64_t(__lsx_vpickve2gr_du(sum_u64, 1)); } }; simdutf_really_inline simd16 operator<(const simd16 a, const simd16 b) { return __lsx_vslt_hu(a.value, b.value); } simdutf_really_inline simd16 operator>(const simd16 a, const simd16 b) { return __lsx_vslt_hu(b.value, a.value); } simdutf_really_inline simd16 operator<=(const simd16 a, const simd16 b) { return __lsx_vsle_hu(a.value, b.value); } simdutf_really_inline simd16 operator>=(const simd16 a, const simd16 b) { return __lsx_vsle_hu(b.value, a.value); } template struct simd16x32 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd16); static_assert( NUM_CHUNKS == 4, "LOONGARCH kernel should use four registers per 64-byte block."); simd16 chunks[NUM_CHUNKS]; simd16x32(const simd16x32 &o) = delete; // no copy allowed simd16x32 & operator=(const simd16 other) = delete; // no assignment allowed simd16x32() = delete; // no default constructor allowed simdutf_really_inline simd16x32(const simd16 chunk0, const simd16 chunk1, const simd16 chunk2, const simd16 chunk3) : chunks{chunk0, chunk1, chunk2, chunk3} {} simdutf_really_inline simd16x32(const T *ptr) : chunks{simd16::load(ptr), simd16::load(ptr + sizeof(simd16) / sizeof(T)), simd16::load(ptr + 2 * sizeof(simd16) / sizeof(T)), simd16::load(ptr + 3 * sizeof(simd16) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd16) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd16) * 1 / sizeof(T)); this->chunks[2].store(ptr + sizeof(simd16) * 2 / sizeof(T)); this->chunks[3].store(ptr + sizeof(simd16) * 3 / sizeof(T)); } simdutf_really_inline void swap_bytes() { this->chunks[0] = this->chunks[0].swap_bytes(); this->chunks[1] = this->chunks[1].swap_bytes(); this->chunks[2] = this->chunks[2].swap_bytes(); this->chunks[3] = this->chunks[3].swap_bytes(); } simdutf_really_inline uint64_t to_bitmask() const { uint64_t r0 = uint32_t(this->chunks[0].to_bitmask()); uint64_t r1 = this->chunks[1].to_bitmask(); uint64_t r2 = this->chunks[2].to_bitmask(); uint64_t r3 = this->chunks[3].to_bitmask(); return r0 | (r1 << 16) | (r2 << 32) | (r3 << 48); } simdutf_really_inline uint64_t lteq(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] <= mask, this->chunks[1] <= mask, this->chunks[2] <= mask, this->chunks[3] <= mask) .to_bitmask(); } }; // struct simd16x32 simdutf_really_inline simd16 operator^(const simd16 a, uint16_t b) { const auto bv = __lsx_vreplgr2vr_h(b); return __lsx_vxor_v(a.value, bv); } simdutf_really_inline simd16 operator^(const simd16 a, const simd16 b) { return __lsx_vxor_v(a.value, b.value); } simdutf_really_inline simd16 min(const simd16 a, const simd16 b) { return __lsx_vmin_hu(a.value, b.value); } simdutf_really_inline simd16 as_vector_u16(const simd16 x) { return x.value; } /* end file src/simdutf/lsx/simd16-inl.h */ /* begin file src/simdutf/lsx/simd32-inl.h */ template struct simd32; template <> struct simd32 { __m128i value; static const int SIZE = sizeof(value); static const int ELEMENTS = SIZE / sizeof(uint32_t); // constructors simdutf_really_inline simd32(__m128i v) : value(v) {} template simdutf_really_inline simd32(Ptr *ptr) : value(__lsx_vld(ptr, 0)) {} // in-place operators simdutf_really_inline simd32 &operator-=(const simd32 other) { value = __lsx_vsub_w(value, other.value); return *this; } // members simdutf_really_inline uint64_t sum() const { return uint64_t(__lsx_vpickve2gr_wu(value, 0)) + uint64_t(__lsx_vpickve2gr_wu(value, 1)) + uint64_t(__lsx_vpickve2gr_wu(value, 2)) + uint64_t(__lsx_vpickve2gr_wu(value, 3)); } // static members static simdutf_really_inline simd32 splat(uint32_t x) { return __lsx_vreplgr2vr_w(x); } static simdutf_really_inline simd32 zero() { return __lsx_vrepli_w(0); } }; // ------------------------------------------------------------ template <> struct simd32 { __m128i value; static const int SIZE = sizeof(value); // constructors simdutf_really_inline simd32(__m128i v) : value(v) {} }; // ------------------------------------------------------------ simdutf_really_inline simd32 operator&(const simd32 a, const simd32 b) { return __lsx_vor_v(a.value, b.value); } simdutf_really_inline simd32 operator<(const simd32 a, const simd32 b) { return __lsx_vslt_wu(a.value, b.value); } simdutf_really_inline simd32 operator>(const simd32 a, const simd32 b) { return __lsx_vslt_wu(b.value, a.value); } // ------------------------------------------------------------ simdutf_really_inline simd32 as_vector_u32(const simd32 v) { return v.value; } /* end file src/simdutf/lsx/simd32-inl.h */ /* begin file src/simdutf/lsx/simd64-inl.h */ template struct simd64; template <> struct simd64 { __m128i value; static const int SIZE = sizeof(value); static const int ELEMENTS = SIZE / sizeof(uint64_t); // constructors simdutf_really_inline simd64(__m128i v) : value(v) {} template simdutf_really_inline simd64(Ptr *ptr) : value(__lsx_vld(ptr, 0)) {} // in-place operators simdutf_really_inline simd64 &operator+=(const simd64 other) { value = __lsx_vadd_d(value, other.value); return *this; } // members simdutf_really_inline uint64_t sum() const { return uint64_t(__lsx_vpickve2gr_du(value, 0)) + uint64_t(__lsx_vpickve2gr_du(value, 1)); } // static members static simdutf_really_inline simd64 zero() { return __lsx_vrepli_d(0); } }; // ------------------------------------------------------------ template <> struct simd64 { __m128i value; static const int SIZE = sizeof(value); // constructors simdutf_really_inline simd64(__m128i v) : value(v) {} }; // ------------------------------------------------------------ simd64 sum_8bytes(const simd8 v) { const auto sum_u16 = __lsx_vhaddw_hu_bu(v, v); const auto sum_u32 = __lsx_vhaddw_wu_hu(sum_u16, sum_u16); const auto sum_u64 = __lsx_vhaddw_du_wu(sum_u32, sum_u32); return simd64(sum_u64); } /* end file src/simdutf/lsx/simd64-inl.h */ } // namespace simd } // unnamed namespace } // namespace lsx } // namespace simdutf #endif // SIMDUTF_LSX_SIMD_H /* end file src/simdutf/lsx/simd.h */ /* begin file src/simdutf/lsx/end.h */ #undef SIMDUTF_SIMD_HAS_UNSIGNED_CMP /* end file src/simdutf/lsx/end.h */ #endif // SIMDUTF_IMPLEMENTATION_LSX #endif // SIMDUTF_LSX_H /* end file src/simdutf/lsx.h */ /* begin file src/simdutf/lasx.h */ #ifndef SIMDUTF_LASX_H #define SIMDUTF_LASX_H #ifdef SIMDUTF_FALLBACK_H #error "lasx.h must be included before fallback.h" #endif #ifndef SIMDUTF_IMPLEMENTATION_LASX #define SIMDUTF_IMPLEMENTATION_LASX (SIMDUTF_IS_LASX) #endif #if SIMDUTF_IMPLEMENTATION_LASX && SIMDUTF_IS_LASX #define SIMDUTF_CAN_ALWAYS_RUN_LASX 1 #else #define SIMDUTF_CAN_ALWAYS_RUN_LASX 0 #endif #define SIMDUTF_CAN_ALWAYS_RUN_FALLBACK (SIMDUTF_IMPLEMENTATION_FALLBACK) #if SIMDUTF_IMPLEMENTATION_LASX namespace simdutf { /** * Implementation for LoongArch ASX. */ namespace lasx {} // namespace lasx } // namespace simdutf /* begin file src/simdutf/lasx/implementation.h */ #ifndef SIMDUTF_LASX_IMPLEMENTATION_H #define SIMDUTF_LASX_IMPLEMENTATION_H namespace simdutf { namespace lasx { namespace { using namespace simdutf; } class implementation final : public simdutf::implementation { public: simdutf_really_inline implementation() : simdutf::implementation("lasx", "LOONGARCH ASX", internal::instruction_set::LSX | internal::instruction_set::LASX) {} #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *input, size_t length) const noexcept final; #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept final; void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept final; void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *buf, size_t length, char16_t *output) const noexcept final; simdutf_warn_unused size_t count_utf16le(const char16_t *buf, size_t length) const noexcept; simdutf_warn_unused size_t count_utf16be(const char16_t *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) const noexcept; simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept; ; simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept; ; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept; size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept; const char *find(const char *start, const char *end, char character) const noexcept; const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept; #endif // SIMDUTF_FEATURE_BASE64 }; } // namespace lasx } // namespace simdutf #endif // SIMDUTF_LASX_IMPLEMENTATION_H /* end file src/simdutf/lasx/implementation.h */ /* begin file src/simdutf/lasx/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "lasx" // #define SIMDUTF_IMPLEMENTATION lasx #define SIMDUTF_SIMD_HAS_UNSIGNED_CMP 1 /* end file src/simdutf/lasx/begin.h */ // Declarations /* begin file src/simdutf/lasx/intrinsics.h */ #ifndef SIMDUTF_LASX_INTRINSICS_H #define SIMDUTF_LASX_INTRINSICS_H // This should be the correct header whether // you use visual studio or other compilers. #include #include #if defined(__loongarch_asx) #ifdef __clang__ #define VREGS_PREFIX "$vr" #define XREGS_PREFIX "$xr" #else // GCC #define VREGS_PREFIX "$f" #define XREGS_PREFIX "$f" #endif #define __ALL_REGS \ "0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26," \ "27,28,29,30,31" // Convert __m128i to __m256i static inline __m256i ____m256i(__m128i in) { __m256i out = __lasx_xvldi(0); __asm__ volatile(".irp i," __ALL_REGS "\n\t" " .ifc %[out], " XREGS_PREFIX "\\i \n\t" " .irp j," __ALL_REGS "\n\t" " .ifc %[in], " VREGS_PREFIX "\\j \n\t" " xvpermi.q $xr\\i, $xr\\j, 0x0 \n\t" " .endif \n\t" " .endr \n\t" " .endif \n\t" ".endr \n\t" : [out] "+f"(out) : [in] "f"(in)); return out; } // Convert two __m128i to __m256i static inline __m256i lasx_set_q(__m128i inhi, __m128i inlo) { __m256i out; __asm__ volatile(".irp i," __ALL_REGS "\n\t" " .ifc %[hi], " VREGS_PREFIX "\\i \n\t" " .irp j," __ALL_REGS "\n\t" " .ifc %[lo], " VREGS_PREFIX "\\j \n\t" " xvpermi.q $xr\\i, $xr\\j, 0x20 \n\t" " .endif \n\t" " .endr \n\t" " .endif \n\t" ".endr \n\t" ".ifnc %[out], %[hi] \n\t" ".irp i," __ALL_REGS "\n\t" " .ifc %[out], " XREGS_PREFIX "\\i \n\t" " .irp j," __ALL_REGS "\n\t" " .ifc %[hi], " VREGS_PREFIX "\\j \n\t" " xvori.b $xr\\i, $xr\\j, 0 \n\t" " .endif \n\t" " .endr \n\t" " .endif \n\t" ".endr \n\t" ".endif \n\t" : [out] "=f"(out), [hi] "+f"(inhi) : [lo] "f"(inlo)); return out; } // Convert __m256i low part to __m128i static inline __m128i lasx_extracti128_lo(__m256i in) { __m128i out; __asm__ volatile(".ifnc %[out], %[in] \n\t" ".irp i," __ALL_REGS "\n\t" " .ifc %[out], " VREGS_PREFIX "\\i \n\t" " .irp j," __ALL_REGS "\n\t" " .ifc %[in], " XREGS_PREFIX "\\j \n\t" " vori.b $vr\\i, $vr\\j, 0 \n\t" " .endif \n\t" " .endr \n\t" " .endif \n\t" ".endr \n\t" ".endif \n\t" : [out] "=f"(out) : [in] "f"(in)); return out; } // Convert __m256i high part to __m128i static inline __m128i lasx_extracti128_hi(__m256i in) { __m128i out; __asm__ volatile(".irp i," __ALL_REGS "\n\t" " .ifc %[out], " VREGS_PREFIX "\\i \n\t" " .irp j," __ALL_REGS "\n\t" " .ifc %[in], " XREGS_PREFIX "\\j \n\t" " xvpermi.q $xr\\i, $xr\\j, 0x11 \n\t" " .endif \n\t" " .endr \n\t" " .endif \n\t" ".endr \n\t" : [out] "=f"(out) : [in] "f"(in)); return out; } #endif /* Encoding of argument for LoongArch64 xvldi instruction. See: https://jia.je/unofficial-loongarch-intrinsics-guide/lasx/misc/#__m256i-__lasx_xvldi-imm_n1024_1023-imm 1: imm[12:8]=0b10000: broadcast imm[7:0] as 32-bit elements to all lanes 2: imm[12:8]=0b10001: broadcast imm[7:0] << 8 as 32-bit elements to all lanes 3: imm[12:8]=0b10010: broadcast imm[7:0] << 16 as 32-bit elements to all lanes 4: imm[12:8]=0b10011: broadcast imm[7:0] << 24 as 32-bit elements to all lanes 5: imm[12:8]=0b10100: broadcast imm[7:0] as 16-bit elements to all lanes 6: imm[12:8]=0b10101: broadcast imm[7:0] << 8 as 16-bit elements to all lanes 7: imm[12:8]=0b10110: broadcast (imm[7:0] << 8) | 0xFF as 32-bit elements to all lanes 8: imm[12:8]=0b10111: broadcast (imm[7:0] << 16) | 0xFFFF as 32-bit elements to all lanes 9: imm[12:8]=0b11000: broadcast imm[7:0] as 8-bit elements to all lanes 10: imm[12:8]=0b11001: repeat each bit of imm[7:0] eight times, and broadcast the result as 64-bit elements to all lanes */ namespace lasx_vldi { template class const_u16 { constexpr static const uint8_t b0 = ((v >> 0 * 8) & 0xff); constexpr static const uint8_t b1 = ((v >> 1 * 8) & 0xff); constexpr static bool is_case5 = uint16_t(b0) == v; constexpr static bool is_case6 = (uint16_t(b1) << 8) == v; constexpr static bool is_case9 = (b0 == b1); constexpr static bool is_case10 = ((b0 == 0xff) || (b0 == 0x00)) && ((b1 == 0xff) || (b1 == 0x00)); public: constexpr static uint16_t operation = is_case5 ? 0b10100 : is_case6 ? 0b10101 : is_case9 ? 0b11000 : is_case10 ? 0x11001 : 0xffff; constexpr static uint16_t byte = is_case5 ? b0 : is_case6 ? b1 : is_case9 ? b0 : is_case10 ? ((b0 ? 0x55 : 0x00) | (b1 ? 0xaa : 0x00)) : 0xffff; constexpr static int value = int((operation << 8) | byte) - 8192; constexpr static bool valid = operation != 0xffff; }; template class const_u32 { constexpr static const uint8_t b0 = (v & 0xff); constexpr static const uint8_t b1 = ((v >> 8) & 0xff); constexpr static const uint8_t b2 = ((v >> 16) & 0xff); constexpr static const uint8_t b3 = ((v >> 24) & 0xff); constexpr static bool is_case1 = (uint32_t(b0) == v); constexpr static bool is_case2 = ((uint32_t(b1) << 8) == v); constexpr static bool is_case3 = ((uint32_t(b2) << 16) == v); constexpr static bool is_case4 = ((uint32_t(b3) << 24) == v); constexpr static bool is_case5 = (b0 == b2) && (b1 == 0) && (b3 == 0); constexpr static bool is_case6 = (b1 == b3) && (b0 == 0) && (b2 == 0); constexpr static bool is_case7 = (b3 == 0) && (b2 == 0) && (b0 == 0xff); constexpr static bool is_case8 = (b3 == 0) && (b1 == 0xff) && (b0 == 0xff); constexpr static bool is_case9 = (b0 == b1) && (b0 == b2) && (b0 == b3); constexpr static bool is_case10 = ((b0 == 0xff) || (b0 == 0x00)) && ((b1 == 0xff) || (b1 == 0x00)) && ((b2 == 0xff) || (b2 == 0x00)) && ((b3 == 0xff) || (b3 == 0x00)); public: constexpr static uint16_t operation = is_case1 ? 0b10000 : is_case2 ? 0b10001 : is_case3 ? 0b10010 : is_case4 ? 0b10011 : is_case5 ? 0b10100 : is_case6 ? 0b10101 : is_case7 ? 0b10110 : is_case8 ? 0b10111 : is_case9 ? 0b11000 : is_case10 ? 0b11001 : 0xffff; constexpr static uint16_t byte = is_case1 ? b0 : is_case2 ? b1 : is_case3 ? b2 : is_case4 ? b3 : is_case5 ? b0 : is_case6 ? b1 : is_case7 ? b1 : is_case8 ? b2 : is_case9 ? b0 : is_case10 ? ((b0 ? 0x11 : 0x00) | (b1 ? 0x22 : 0x00) | (b2 ? 0x44 : 0x00) | (b3 ? 0x88 : 0x00)) : 0xffff; constexpr static int value = int((operation << 8) | byte) - 8192; constexpr static bool valid = operation != 0xffff; }; template class const_u64 { constexpr static const uint8_t b0 = ((v >> 0 * 8) & 0xff); constexpr static const uint8_t b1 = ((v >> 1 * 8) & 0xff); constexpr static const uint8_t b2 = ((v >> 2 * 8) & 0xff); constexpr static const uint8_t b3 = ((v >> 3 * 8) & 0xff); constexpr static const uint8_t b4 = ((v >> 4 * 8) & 0xff); constexpr static const uint8_t b5 = ((v >> 5 * 8) & 0xff); constexpr static const uint8_t b6 = ((v >> 6 * 8) & 0xff); constexpr static const uint8_t b7 = ((v >> 7 * 8) & 0xff); constexpr static bool is_case10 = ((b0 == 0xff) || (b0 == 0x00)) && ((b1 == 0xff) || (b1 == 0x00)) && ((b2 == 0xff) || (b2 == 0x00)) && ((b3 == 0xff) || (b3 == 0x00)) && ((b4 == 0xff) || (b4 == 0x00)) && ((b5 == 0xff) || (b5 == 0x00)) && ((b6 == 0xff) || (b6 == 0x00)) && ((b7 == 0xff) || (b7 == 0x00)); public: constexpr static bool is_32bit = ((v & 0xffffffff) == (v >> 32)) && const_u32<(v >> 32)>::value; constexpr static uint8_t op_32bit = const_u32<(v >> 32)>::operation; constexpr static uint8_t byte_32bit = const_u32<(v >> 32)>::byte; constexpr static uint16_t operation = is_32bit ? op_32bit : is_case10 ? 0x11001 : 0xffff; constexpr static uint16_t byte = is_32bit ? byte_32bit : is_case10 ? ((b0 ? 0x01 : 0x00) | (b1 ? 0x02 : 0x00) | (b2 ? 0x04 : 0x00) | (b3 ? 0x08 : 0x00) | (b4 ? 0x10 : 0x00) | (b5 ? 0x20 : 0x00) | (b6 ? 0x40 : 0x00) | (b7 ? 0x80 : 0x00)) : 0xffff; constexpr static int value = int((operation << 8) | byte) - 8192; constexpr static bool valid = operation != 0xffff; }; } // namespace lasx_vldi // Uncomment when running under QEMU affected // by bug https://gitlab.com/qemu-project/qemu/-/issues/2865 // Versions <= 9.2.2 are affected, likely anything newer is correct. #ifndef QEMU_VLDI_BUG // #define QEMU_VLDI_BUG 1 #endif #ifdef QEMU_VLDI_BUG #define lasx_splat_u16(v) __lasx_xvreplgr2vr_h(v) #define lasx_splat_u32(v) __lasx_xvreplgr2vr_w(v) #else template constexpr __m256i lasx_splat_u16_aux() { constexpr bool is_imm10 = (int16_t(x) < 512) && (int16_t(x) > -512); constexpr uint16_t imm10 = is_imm10 ? x : 0; constexpr bool is_vldi = lasx_vldi::const_u16::valid; constexpr int vldi_imm = is_vldi ? lasx_vldi::const_u16::value : 0; return is_imm10 ? __lasx_xvrepli_h(int16_t(imm10)) : is_vldi ? __lasx_xvldi(vldi_imm) : __lasx_xvreplgr2vr_h(x); } template constexpr __m256i lasx_splat_u32_aux() { constexpr bool is_imm10 = (int32_t(x) < 512) && (int32_t(x) > -512); constexpr uint32_t imm10 = is_imm10 ? x : 0; constexpr bool is_vldi = lasx_vldi::const_u32::valid; constexpr int vldi_imm = is_vldi ? lasx_vldi::const_u32::value : 0; return is_imm10 ? __lasx_xvrepli_w(int32_t(imm10)) : is_vldi ? __lasx_xvldi(vldi_imm) : __lasx_xvreplgr2vr_w(x); } #define lasx_splat_u16(v) lasx_splat_u16_aux<(v)>() #define lasx_splat_u32(v) lasx_splat_u32_aux<(v)>() #endif // QEMU_VLDI_BUG #endif // SIMDUTF_LASX_INTRINSICS_H /* end file src/simdutf/lasx/intrinsics.h */ /* begin file src/simdutf/lasx/bitmanipulation.h */ #ifndef SIMDUTF_LASX_BITMANIPULATION_H #define SIMDUTF_LASX_BITMANIPULATION_H #include namespace simdutf { namespace lasx { namespace { simdutf_really_inline int count_ones(uint64_t input_num) { return __lsx_vpickve2gr_w(__lsx_vpcnt_d(__lsx_vreplgr2vr_d(input_num)), 0); } #if SIMDUTF_NEED_TRAILING_ZEROES simdutf_really_inline int trailing_zeroes(uint64_t input_num) { return __builtin_ctzll(input_num); } #endif } // unnamed namespace } // namespace lasx } // namespace simdutf #endif // SIMDUTF_LASX_BITMANIPULATION_H /* end file src/simdutf/lasx/bitmanipulation.h */ /* begin file src/simdutf/lasx/simd.h */ #ifndef SIMDUTF_LASX_SIMD_H #define SIMDUTF_LASX_SIMD_H namespace simdutf { namespace lasx { namespace { namespace simd { __attribute__((aligned(32))) static const uint8_t prev_shuf_table[32][32] = { {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 31, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 30, 31, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13}, {0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 29, 30, 31, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}, {0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 28, 29, 30, 31, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}, {0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 27, 28, 29, 30, 31, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, {0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 26, 27, 28, 29, 30, 31, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 25, 26, 27, 28, 29, 30, 31, 0, 1, 2, 3, 4, 5, 6, 7, 8}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 24, 25, 26, 27, 28, 29, 30, 31, 0, 1, 2, 3, 4, 5, 6, 7}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 1, 2, 3, 4, 5, 6}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 1, 2, 3, 4, 5}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 1, 2, 3, 4}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 1, 2, 3}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 1, 2}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 1}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0}, {15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 9, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 8, 9, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0}, {7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0}, {6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0}, {5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0}, {4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0}, {3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 0, 0}, {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 0}, {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, }; __attribute__((aligned(32))) static const uint8_t bitsel_mask_table[32][32] = { {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0, 0x0}, {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0}}; // Forward-declared so they can be used by splat and friends. template struct base { __m256i value; // Zero constructor simdutf_really_inline base() : value{__m256i()} {} // Conversion from SIMD register simdutf_really_inline base(const __m256i _value) : value(_value) {} // Conversion to SIMD register simdutf_really_inline operator const __m256i &() const { return this->value; } simdutf_really_inline operator __m256i &() { return this->value; } template simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { if (big_endian) { __m256i zero = __lasx_xvldi(0); __m256i in8 = __lasx_xvpermi_d(this->value, 0b11011000); __m256i inlow = __lasx_xvilvl_b(in8, zero); __m256i inhigh = __lasx_xvilvh_b(in8, zero); __lasx_xvst(inlow, reinterpret_cast(ptr), 0); __lasx_xvst(inhigh, reinterpret_cast(ptr), 32); } else { __m256i inlow = __lasx_vext2xv_hu_bu(this->value); __m256i inhigh = __lasx_vext2xv_hu_bu( __lasx_xvpermi_q(this->value, this->value, 0b00000001)); __lasx_xvst(inlow, reinterpret_cast<__m256i *>(ptr), 0); __lasx_xvst(inhigh, reinterpret_cast<__m256i *>(ptr), 32); } } simdutf_really_inline void store_ascii_as_utf32(char32_t *ptr) const { __m256i in32_0 = __lasx_vext2xv_wu_bu(this->value); __lasx_xvst(in32_0, reinterpret_cast(ptr), 0); __m256i in8_1 = __lasx_xvpermi_d(this->value, 0b00000001); __m256i in32_1 = __lasx_vext2xv_wu_bu(in8_1); __lasx_xvst(in32_1, reinterpret_cast(ptr), 32); __m256i in8_2 = __lasx_xvpermi_d(this->value, 0b00000010); __m256i in32_2 = __lasx_vext2xv_wu_bu(in8_2); __lasx_xvst(in32_2, reinterpret_cast(ptr), 64); __m256i in8_3 = __lasx_xvpermi_d(this->value, 0b00000011); __m256i in32_3 = __lasx_vext2xv_wu_bu(in8_3); __lasx_xvst(in32_3, reinterpret_cast(ptr), 96); } // Bit operations simdutf_really_inline Child operator|(const Child other) const { return __lasx_xvor_v(this->value, other); } simdutf_really_inline Child operator&(const Child other) const { return __lasx_xvand_v(this->value, other); } simdutf_really_inline Child operator^(const Child other) const { return __lasx_xvxor_v(this->value, other); } simdutf_really_inline Child &operator|=(const Child other) { auto this_cast = static_cast(this); *this_cast = *this_cast | other; return *this_cast; } }; template struct simd8; template > struct base8 : base> { simdutf_really_inline base8() : base>() {} simdutf_really_inline base8(const __m256i _value) : base>(_value) {} friend simdutf_really_inline Mask operator==(const simd8 lhs, const simd8 rhs) { return __lasx_xvseq_b(lhs, rhs); } static const int SIZE = sizeof(base::value); template simdutf_really_inline simd8 prev(const simd8 prev_chunk) const { static_assert(N <= 16, "unsupported shift value"); if (!N) return this->value; __m256i zero = __lasx_xvldi(0); __m256i result, shuf; if (N < 16) { shuf = __lasx_xvld(prev_shuf_table[N], 0); result = __lasx_xvshuf_b( __lasx_xvpermi_q(this->value, this->value, 0b00000001), this->value, shuf); __m256i srl_prev = __lasx_xvbsrl_v( __lasx_xvpermi_q(zero, prev_chunk.value, 0b00110001), (16 - N)); __m256i mask = __lasx_xvld(bitsel_mask_table[N], 0); result = __lasx_xvbitsel_v(result, srl_prev, mask); return result; } else if (N == 16) { return __lasx_xvpermi_q(this->value, prev_chunk.value, 0b00100001); } } }; // SIMD byte mask type (returned by things like eq and gt) template <> struct simd8 : base8 { static simdutf_really_inline simd8 splat(bool _value) { return __lasx_xvreplgr2vr_b(uint8_t(-(!!_value))); } simdutf_really_inline simd8() : base8() {} simdutf_really_inline simd8(const __m256i _value) : base8(_value) {} // Splat constructor simdutf_really_inline simd8(bool _value) : base8(splat(_value)) {} simdutf_really_inline uint32_t to_bitmask() const { __m256i mask = __lasx_xvmsknz_b(this->value); uint32_t mask0 = __lasx_xvpickve2gr_wu(mask, 0); uint32_t mask1 = __lasx_xvpickve2gr_wu(mask, 4); return (mask0 | (mask1 << 16)); } simdutf_really_inline bool any() const { if (__lasx_xbz_b(this->value)) return false; return true; } simdutf_really_inline simd8 operator~() const { return *this ^ true; } }; template struct base8_numeric : base8 { static simdutf_really_inline simd8 splat(T _value) { return __lasx_xvreplgr2vr_b(_value); } static simdutf_really_inline simd8 zero() { return __lasx_xvldi(0); } static simdutf_really_inline simd8 load(const T values[32]) { return __lasx_xvld(reinterpret_cast(values), 0); } // Repeat 16 values as many times as necessary (usually for lookup tables) static simdutf_really_inline simd8 repeat_16(T v0, T v1, T v2, T v3, T v4, T v5, T v6, T v7, T v8, T v9, T v10, T v11, T v12, T v13, T v14, T v15) { return simd8(v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15); } simdutf_really_inline base8_numeric() : base8() {} simdutf_really_inline base8_numeric(const __m256i _value) : base8(_value) {} // Store to array simdutf_really_inline void store(T dst[32]) const { return __lasx_xvst(this->value, reinterpret_cast<__m256i *>(dst), 0); } // Override to distinguish from bool version simdutf_really_inline simd8 operator~() const { return *this ^ 0xFFu; } // Perform a lookup assuming the value is between 0 and 16 (undefined behavior // for out of range values) template simdutf_really_inline simd8 lookup_16(simd8 lookup_table) const { __m256i origin = __lasx_xvand_v(this->value, __lasx_xvldi(0x1f)); return __lasx_xvshuf_b(__lasx_xvldi(0), lookup_table, origin); } template simdutf_really_inline simd8 lookup_16(L replace0, L replace1, L replace2, L replace3, L replace4, L replace5, L replace6, L replace7, L replace8, L replace9, L replace10, L replace11, L replace12, L replace13, L replace14, L replace15) const { return lookup_16(simd8::repeat_16( replace0, replace1, replace2, replace3, replace4, replace5, replace6, replace7, replace8, replace9, replace10, replace11, replace12, replace13, replace14, replace15)); } }; // Signed bytes template <> struct simd8 : base8_numeric { simdutf_really_inline simd8() : base8_numeric() {} simdutf_really_inline simd8(const __m256i _value) : base8_numeric(_value) {} // Splat constructor simdutf_really_inline simd8(int8_t _value) : simd8(splat(_value)) {} // Array constructor simdutf_really_inline simd8(const int8_t values[32]) : simd8(load(values)) {} simdutf_really_inline operator simd8() const; simdutf_really_inline bool is_ascii() const { __m256i ascii_mask = __lasx_xvslti_b(this->value, 0); if (__lasx_xbnz_v(ascii_mask)) return false; return true; } // Order-sensitive comparisons simdutf_really_inline simd8 operator>(const simd8 other) const { return __lasx_xvslt_b(other, this->value); } simdutf_really_inline simd8 operator<(const simd8 other) const { return __lasx_xvslt_b(this->value, other); } }; // Unsigned bytes template <> struct simd8 : base8_numeric { simdutf_really_inline simd8() : base8_numeric() {} simdutf_really_inline simd8(const __m256i _value) : base8_numeric(_value) {} // Splat constructor simdutf_really_inline simd8(uint8_t _value) : simd8(splat(_value)) {} // Array constructor simdutf_really_inline simd8(const uint8_t values[32]) : simd8(load(values)) {} // Member-by-member initialization simdutf_really_inline simd8(uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15, uint8_t v16, uint8_t v17, uint8_t v18, uint8_t v19, uint8_t v20, uint8_t v21, uint8_t v22, uint8_t v23, uint8_t v24, uint8_t v25, uint8_t v26, uint8_t v27, uint8_t v28, uint8_t v29, uint8_t v30, uint8_t v31) : simd8((__m256i)v32u8{v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31}) {} // Saturated math simdutf_really_inline simd8 saturating_sub(const simd8 other) const { return __lasx_xvssub_bu(this->value, other); } // Same as >, but only guarantees true is nonzero (< guarantees true = -1) simdutf_really_inline simd8 gt_bits(const simd8 other) const { return this->saturating_sub(other); } simdutf_really_inline simd8 operator>=(const simd8 other) const { return __lasx_xvsle_bu(other, *this); } simdutf_really_inline simd8 &operator-=(const simd8 other) { value = __lasx_xvsub_b(value, other.value); return *this; } // Bit-specific operations simdutf_really_inline bool is_ascii() const { __m256i ascii_mask = __lasx_xvslti_b(this->value, 0); if (__lasx_xbnz_v(ascii_mask)) return false; return true; } simdutf_really_inline bool any_bits_set_anywhere() const { if (__lasx_xbnz_v(this->value)) return true; return false; } template simdutf_really_inline simd8 shr() const { return __lasx_xvsrli_b(this->value, N); } template simdutf_really_inline simd8 shl() const { return __lasx_xvslli_b(this->value, N); } simdutf_really_inline uint64_t sum_bytes() const { const auto sum_u16 = __lasx_xvhaddw_hu_bu(value, value); const auto sum_u32 = __lasx_xvhaddw_wu_hu(sum_u16, sum_u16); const auto sum_u64 = __lasx_xvhaddw_du_wu(sum_u32, sum_u32); return uint64_t(__lasx_xvpickve2gr_du(sum_u64, 0)) + uint64_t(__lasx_xvpickve2gr_du(sum_u64, 1)) + uint64_t(__lasx_xvpickve2gr_du(sum_u64, 2)) + uint64_t(__lasx_xvpickve2gr_du(sum_u64, 3)); } }; simdutf_really_inline simd8::operator simd8() const { return this->value; } template struct simd8x64 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd8); static_assert(NUM_CHUNKS == 2, "LASX kernel should use two registers per 64-byte block."); simd8 chunks[NUM_CHUNKS]; simd8x64(const simd8x64 &o) = delete; // no copy allowed simd8x64 & operator=(const simd8 other) = delete; // no assignment allowed simd8x64() = delete; // no default constructor allowed simdutf_really_inline simd8x64(const simd8 chunk0, const simd8 chunk1) : chunks{chunk0, chunk1} {} simdutf_really_inline simd8x64(const T *ptr) : chunks{simd8::load(ptr), simd8::load(ptr + sizeof(simd8) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd8) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd8) * 1 / sizeof(T)); } simdutf_really_inline uint64_t to_bitmask() const { uint64_t r_lo = uint32_t(this->chunks[0].to_bitmask()); uint64_t r_hi = this->chunks[1].to_bitmask(); return r_lo | (r_hi << 32); } simdutf_really_inline simd8x64 &operator|=(const simd8x64 &other) { this->chunks[0] |= other.chunks[0]; this->chunks[1] |= other.chunks[1]; return *this; } simdutf_really_inline simd8 reduce_or() const { return this->chunks[0] | this->chunks[1]; } simdutf_really_inline bool is_ascii() const { return this->reduce_or().is_ascii(); } template simdutf_really_inline void store_ascii_as_utf16(char16_t *ptr) const { this->chunks[0].template store_ascii_as_utf16(ptr + sizeof(simd8) * 0); this->chunks[1].template store_ascii_as_utf16(ptr + sizeof(simd8) * 1); } simdutf_really_inline void store_ascii_as_utf32(char32_t *ptr) const { this->chunks[0].store_ascii_as_utf32(ptr + sizeof(simd8) * 0); this->chunks[1].store_ascii_as_utf32(ptr + sizeof(simd8) * 1); } simdutf_really_inline uint64_t lt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] < mask, this->chunks[1] < mask) .to_bitmask(); } simdutf_really_inline uint64_t gt(const T m) const { const simd8 mask = simd8::splat(m); return simd8x64(this->chunks[0] > mask, this->chunks[1] > mask) .to_bitmask(); } simdutf_really_inline uint64_t gteq_unsigned(const uint8_t m) const { const simd8 mask = simd8::splat(m); return simd8x64((simd8(__m256i(this->chunks[0])) >= mask), (simd8(__m256i(this->chunks[1])) >= mask)) .to_bitmask(); } }; // struct simd8x64 /* begin file src/simdutf/lasx/simd16-inl.h */ template struct simd16; template > struct base16 : base> { using bitmask_type = uint32_t; simdutf_really_inline base16() : base>() {} simdutf_really_inline base16(const __m256i _value) : base>(_value) {} template simdutf_really_inline base16(const Pointer *ptr) : base16(__lasx_xvld(reinterpret_cast(ptr), 0)) {} /// the size of vector in bytes static const int SIZE = sizeof(base>::value); /// the number of elements of type T a vector can hold static const int ELEMENTS = SIZE / sizeof(T); }; // SIMD byte mask type (returned by things like eq and gt) template <> struct simd16 : base16 { static simdutf_really_inline simd16 splat(bool _value) { return __lasx_xvreplgr2vr_h(uint16_t(-(!!_value))); } simdutf_really_inline simd16() : base16() {} simdutf_really_inline simd16(const __m256i _value) : base16(_value) {} // Splat constructor simdutf_really_inline simd16(bool _value) : base16(splat(_value)) {} simdutf_really_inline bitmask_type to_bitmask() const { __m256i mask = __lasx_xvmsknz_b(this->value); bitmask_type mask0 = __lasx_xvpickve2gr_wu(mask, 0); bitmask_type mask1 = __lasx_xvpickve2gr_wu(mask, 4); return (mask0 | (mask1 << 16)); } simdutf_really_inline simd16 operator~() const { return *this ^ true; } simdutf_really_inline bool is_zero() const { return __lasx_xbz_v(this->value); } template simdutf_really_inline simd16 byte_right_shift() const { const auto t0 = __lasx_xvbsrl_v(this->value, N); const auto t1 = __lasx_xvpermi_q(this->value, __lasx_xvldi(0), 0b00000011); const auto t2 = __lasx_xvbsll_v(t1, 16 - N); const auto t3 = __lasx_xvor_v(t0, t2); return t3; } simdutf_really_inline uint16_t first() const { return uint16_t(__lasx_xvpickve2gr_w(value, 0)); } }; template struct base16_numeric : base16 { static simdutf_really_inline simd16 splat(T _value) { return __lasx_xvreplgr2vr_h((uint16_t)_value); } static simdutf_really_inline simd16 zero() { return __lasx_xvldi(0); } template static simdutf_really_inline simd16 load(const Pointer values) { return __lasx_xvld(values, 0); } simdutf_really_inline base16_numeric() : base16() {} simdutf_really_inline base16_numeric(const __m256i _value) : base16(_value) {} // Store to array simdutf_really_inline void store(T dst[8]) const { return __lasx_xvst(this->value, reinterpret_cast<__m256i *>(dst), 0); } // Override to distinguish from bool version simdutf_really_inline simd16 operator~() const { return *this ^ 0xFFFFu; } }; // Unsigned code units template <> struct simd16 : base16_numeric { simdutf_really_inline simd16() : base16_numeric() {} simdutf_really_inline simd16(const __m256i _value) : base16_numeric(_value) {} // Splat constructor simdutf_really_inline simd16(uint16_t _value) : simd16(splat(_value)) {} // Array constructor simdutf_really_inline simd16(const uint16_t *values) : simd16(load(values)) {} simdutf_really_inline simd16(const char16_t *values) : simd16(load(reinterpret_cast(values))) {} // Order-specific operations simdutf_really_inline simd16 &operator+=(const simd16 other) { value = __lasx_xvadd_h(value, other.value); return *this; } // Change the endianness simdutf_really_inline simd16 swap_bytes() const { return __lasx_xvshuf4i_b(this->value, 0b10110001); } template static simdutf_really_inline simd8 pack_shifted_right(const simd16 &v0, const simd16 &v1) { return __lasx_xvpermi_d(__lasx_xvssrlni_bu_h(v1.value, v0.value, N), 0b11011000); } // Pack with the unsigned saturation of two uint16_t code units into single // uint8_t vector static simdutf_really_inline simd8 pack(const simd16 &v0, const simd16 &v1) { return pack_shifted_right<0>(v0, v1); } simdutf_really_inline uint64_t sum() const { const auto sum_u32 = __lasx_xvhaddw_wu_hu(value, value); const auto sum_u64 = __lasx_xvhaddw_du_wu(sum_u32, sum_u32); return uint64_t(__lasx_xvpickve2gr_du(sum_u64, 0)) + uint64_t(__lasx_xvpickve2gr_du(sum_u64, 1)) + uint64_t(__lasx_xvpickve2gr_du(sum_u64, 2)) + uint64_t(__lasx_xvpickve2gr_du(sum_u64, 3)); } template simdutf_really_inline simd16 byte_right_shift() const { return __lasx_xvbsrl_v(this->value, N); } }; simdutf_really_inline simd16 operator<(const simd16 a, const simd16 b) { return __lasx_xvslt_hu(a.value, b.value); } simdutf_really_inline simd16 operator>(const simd16 a, const simd16 b) { return __lasx_xvslt_hu(b.value, a.value); } simdutf_really_inline simd16 operator<=(const simd16 a, const simd16 b) { return __lasx_xvsle_hu(a.value, b.value); } simdutf_really_inline simd16 operator>=(const simd16 a, const simd16 b) { return __lasx_xvsle_hu(b.value, a.value); } template struct simd16x32 { static constexpr int NUM_CHUNKS = 64 / sizeof(simd16); static_assert(NUM_CHUNKS == 2, "LASX kernel should use two registers per 64-byte block."); simd16 chunks[NUM_CHUNKS]; simd16x32(const simd16x32 &o) = delete; // no copy allowed simd16x32 & operator=(const simd16 other) = delete; // no assignment allowed simd16x32() = delete; // no default constructor allowed simdutf_really_inline simd16x32(const simd16 chunk0, const simd16 chunk1) : chunks{chunk0, chunk1} {} simdutf_really_inline simd16x32(const T *ptr) : chunks{simd16::load(ptr), simd16::load(ptr + sizeof(simd16) / sizeof(T))} {} simdutf_really_inline void store(T *ptr) const { this->chunks[0].store(ptr + sizeof(simd16) * 0 / sizeof(T)); this->chunks[1].store(ptr + sizeof(simd16) * 1 / sizeof(T)); } simdutf_really_inline void swap_bytes() { this->chunks[0] = this->chunks[0].swap_bytes(); this->chunks[1] = this->chunks[1].swap_bytes(); } simdutf_really_inline uint64_t to_bitmask() const { uint64_t r_lo = uint32_t(this->chunks[0].to_bitmask()); uint64_t r_hi = this->chunks[1].to_bitmask(); return r_lo | (r_hi << 32); } simdutf_really_inline uint64_t lteq(const T m) const { const simd16 mask = simd16::splat(m); return simd16x32(this->chunks[0] <= mask, this->chunks[1] <= mask) .to_bitmask(); } }; // struct simd16x32 simdutf_really_inline simd16 min(const simd16 a, const simd16 b) { return __lasx_xvmin_hu(a.value, b.value); } simdutf_really_inline simd16 operator==(const simd16 a, uint16_t b) { const auto bv = __lasx_xvreplgr2vr_h(b); return __lasx_xvseq_h(a.value, bv); } simdutf_really_inline simd16 as_vector_u16(const simd16 x) { return x.value; } simdutf_really_inline simd16 operator&(const simd16 a, uint16_t b) { const auto bv = __lasx_xvreplgr2vr_h(b); return __lasx_xvand_v(a.value, bv); } simdutf_really_inline simd16 operator&(const simd16 a, const simd16 b) { return __lasx_xvand_v(a.value, b.value); } simdutf_really_inline simd16 operator^(const simd16 a, uint16_t b) { const auto bv = __lasx_xvreplgr2vr_h(b); return __lasx_xvxor_v(a.value, bv); } simdutf_really_inline simd16 operator^(const simd16 a, const simd16 b) { return __lasx_xvxor_v(a.value, b.value); } /* end file src/simdutf/lasx/simd16-inl.h */ /* begin file src/simdutf/lasx/simd32-inl.h */ template struct simd32; template <> struct simd32 { __m256i value; static const int SIZE = sizeof(value); static const int ELEMENTS = SIZE / sizeof(uint32_t); // constructors simdutf_really_inline simd32(__m256i v) : value(v) {} template simdutf_really_inline simd32(Ptr *ptr) : value(__lasx_xvld(ptr, 0)) {} // in-place operators simdutf_really_inline simd32 &operator-=(const simd32 other) { value = __lasx_xvsub_w(value, other.value); return *this; } // members simdutf_really_inline uint64_t sum() const { const auto odd = __lasx_xvsrli_d(value, 32); const auto even = __lasx_xvand_v(value, __lasx_xvreplgr2vr_d(0xffffffff)); const auto sum64 = __lasx_xvadd_d(odd, even); return uint64_t(__lasx_xvpickve2gr_du(sum64, 0)) + uint64_t(__lasx_xvpickve2gr_du(sum64, 1)) + uint64_t(__lasx_xvpickve2gr_du(sum64, 2)) + uint64_t(__lasx_xvpickve2gr_du(sum64, 3)); } // static members static simdutf_really_inline simd32 splat(uint32_t x) { return __lasx_xvreplgr2vr_w(x); } static simdutf_really_inline simd32 zero() { return __lasx_xvrepli_w(0); } }; // ------------------------------------------------------------ template <> struct simd32 { __m256i value; static const int SIZE = sizeof(value); // constructors simdutf_really_inline simd32(__m256i v) : value(v) {} }; // ------------------------------------------------------------ simdutf_really_inline simd32 operator&(const simd32 a, const simd32 b) { return __lasx_xvor_v(a.value, b.value); } simdutf_really_inline simd32 operator<(const simd32 a, const simd32 b) { return __lasx_xvslt_wu(a.value, b.value); } simdutf_really_inline simd32 operator>(const simd32 a, const simd32 b) { return __lasx_xvslt_wu(b.value, a.value); } // ------------------------------------------------------------ simdutf_really_inline simd32 as_vector_u32(const simd32 v) { return v.value; } /* end file src/simdutf/lasx/simd32-inl.h */ /* begin file src/simdutf/lasx/simd64-inl.h */ template struct simd64; template <> struct simd64 { __m256i value; static const int SIZE = sizeof(value); static const int ELEMENTS = SIZE / sizeof(uint64_t); // constructors simdutf_really_inline simd64(__m256i v) : value(v) {} template simdutf_really_inline simd64(Ptr *ptr) : value(__lasx_xvld(ptr, 0)) {} // in-place operators simdutf_really_inline simd64 &operator+=(const simd64 other) { value = __lasx_xvadd_d(value, other.value); return *this; } // members simdutf_really_inline uint64_t sum() const { return uint64_t(__lasx_xvpickve2gr_du(value, 0)) + uint64_t(__lasx_xvpickve2gr_du(value, 1)) + uint64_t(__lasx_xvpickve2gr_du(value, 2)) + uint64_t(__lasx_xvpickve2gr_du(value, 3)); } // static members static simdutf_really_inline simd64 zero() { return __lasx_xvrepli_d(0); } }; // ------------------------------------------------------------ template <> struct simd64 { __m256i value; static const int SIZE = sizeof(value); // constructors simdutf_really_inline simd64(__m256i v) : value(v) {} }; // ------------------------------------------------------------ simd64 sum_8bytes(const simd8 v) { const auto sum_u16 = __lasx_xvhaddw_hu_bu(v, v); const auto sum_u32 = __lasx_xvhaddw_wu_hu(sum_u16, sum_u16); const auto sum_u64 = __lasx_xvhaddw_du_wu(sum_u32, sum_u32); return simd64(sum_u64); } /* end file src/simdutf/lasx/simd64-inl.h */ } // namespace simd } // unnamed namespace } // namespace lasx } // namespace simdutf #endif // SIMDUTF_LASX_SIMD_H /* end file src/simdutf/lasx/simd.h */ /* begin file src/simdutf/lasx/end.h */ #undef SIMDUTF_SIMD_HAS_UNSIGNED_CMP /* end file src/simdutf/lasx/end.h */ #endif // SIMDUTF_IMPLEMENTATION_LASX #endif // SIMDUTF_LASX_H /* end file src/simdutf/lasx.h */ /* begin file src/simdutf/fallback.h */ #ifndef SIMDUTF_FALLBACK_H #define SIMDUTF_FALLBACK_H // Note that fallback.h is always imported last. // Default Fallback to on unless a builtin implementation has already been // selected. #ifndef SIMDUTF_IMPLEMENTATION_FALLBACK #if SIMDUTF_CAN_ALWAYS_RUN_ARM64 || SIMDUTF_CAN_ALWAYS_RUN_ICELAKE || \ SIMDUTF_CAN_ALWAYS_RUN_HASWELL || SIMDUTF_CAN_ALWAYS_RUN_WESTMERE || \ SIMDUTF_CAN_ALWAYS_RUN_PPC64 || SIMDUTF_CAN_ALWAYS_RUN_RVV || \ SIMDUTF_CAN_ALWAYS_RUN_LSX || SIMDUTF_CAN_ALWAYS_RUN_LASX #define SIMDUTF_IMPLEMENTATION_FALLBACK 0 #else #define SIMDUTF_IMPLEMENTATION_FALLBACK 1 #endif #endif #define SIMDUTF_CAN_ALWAYS_RUN_FALLBACK (SIMDUTF_IMPLEMENTATION_FALLBACK) #if SIMDUTF_IMPLEMENTATION_FALLBACK namespace simdutf { /** * Fallback implementation (runs on any machine). */ namespace fallback {} // namespace fallback } // namespace simdutf /* begin file src/simdutf/fallback/implementation.h */ #ifndef SIMDUTF_FALLBACK_IMPLEMENTATION_H #define SIMDUTF_FALLBACK_IMPLEMENTATION_H namespace simdutf { namespace fallback { namespace { using namespace simdutf; } class implementation final : public simdutf::implementation { public: simdutf_really_inline implementation() : simdutf::implementation("fallback", "Generic fallback implementation", 0) {} #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *input, size_t length) const noexcept final; #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept final; simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept final; void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept final; void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused result convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(const char32_t *buf, size_t len, char16_t *utf16_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16le_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; simdutf_warn_unused size_t convert_valid_utf16be_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_buffer) const noexcept final; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *buf, size_t length, char16_t *output) const noexcept final; simdutf_warn_unused size_t count_utf16le(const char16_t *buf, size_t length) const noexcept; simdutf_warn_unused size_t count_utf16be(const char16_t *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *buf, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept; simdutf_warn_unused size_t utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) const noexcept; simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept; ; simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept; ; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *input, size_t length) const noexcept; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; simdutf_warn_unused full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept; size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept; size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept; const char *find(const char *start, const char *end, char character) const noexcept; const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept; #endif // SIMDUTF_FEATURE_BASE64 }; } // namespace fallback } // namespace simdutf #endif // SIMDUTF_FALLBACK_IMPLEMENTATION_H /* end file src/simdutf/fallback/implementation.h */ /* begin file src/simdutf/fallback/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "fallback" // #define SIMDUTF_IMPLEMENTATION fallback /* end file src/simdutf/fallback/begin.h */ // Declarations /* begin file src/simdutf/fallback/bitmanipulation.h */ #ifndef SIMDUTF_FALLBACK_BITMANIPULATION_H #define SIMDUTF_FALLBACK_BITMANIPULATION_H #include namespace simdutf { namespace fallback { namespace {} // unnamed namespace } // namespace fallback } // namespace simdutf #endif // SIMDUTF_FALLBACK_BITMANIPULATION_H /* end file src/simdutf/fallback/bitmanipulation.h */ /* begin file src/simdutf/fallback/end.h */ /* end file src/simdutf/fallback/end.h */ #endif // SIMDUTF_IMPLEMENTATION_FALLBACK #endif // SIMDUTF_FALLBACK_H /* end file src/simdutf/fallback.h */ #ifndef SIMDUTF_REGULAR_VISUAL_STUDIO SIMDUTF_POP_DISABLE_WARNINGS #endif // The scalar routines should be included once. /* begin file src/scalar/swap_bytes.h */ #ifndef SIMDUTF_SWAP_BYTES_H #define SIMDUTF_SWAP_BYTES_H namespace simdutf { namespace scalar { inline simdutf_warn_unused uint16_t u16_swap_bytes(const uint16_t word) { return uint16_t((word >> 8) | (word << 8)); } inline simdutf_warn_unused uint32_t u32_swap_bytes(const uint32_t word) { return ((word >> 24) & 0xff) | // move byte 3 to byte 0 ((word << 8) & 0xff0000) | // move byte 1 to byte 2 ((word >> 8) & 0xff00) | // move byte 2 to byte 1 ((word << 24) & 0xff000000); // byte 0 to byte 3 } } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/swap_bytes.h */ #if SIMDUTF_FEATURE_ASCII /* begin file src/scalar/ascii.h */ #ifndef SIMDUTF_ASCII_H #define SIMDUTF_ASCII_H namespace simdutf { namespace scalar { namespace { namespace ascii { #if SIMDUTF_IMPLEMENTATION_FALLBACK // Only used by the fallback kernel. inline simdutf_warn_unused bool validate(const char *buf, size_t len) noexcept { const uint8_t *data = reinterpret_cast(buf); uint64_t pos = 0; // process in blocks of 16 bytes when possible for (; pos + 16 <= len; pos += 16) { uint64_t v1; std::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; std::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; if ((v & 0x8080808080808080) != 0) { return false; } } // process the tail byte-by-byte for (; pos < len; pos++) { if (data[pos] >= 0b10000000) { return false; } } return true; } #endif inline simdutf_warn_unused result validate_with_errors(const char *buf, size_t len) noexcept { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; // process in blocks of 16 bytes when possible for (; pos + 16 <= len; pos += 16) { uint64_t v1; std::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; std::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; if ((v & 0x8080808080808080) != 0) { for (; pos < len; pos++) { if (data[pos] >= 0b10000000) { return result(error_code::TOO_LARGE, pos); } } } } // process the tail byte-by-byte for (; pos < len; pos++) { if (data[pos] >= 0b10000000) { return result(error_code::TOO_LARGE, pos); } } return result(error_code::SUCCESS, pos); } } // namespace ascii } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/ascii.h */ #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/scalar/utf8.h */ #ifndef SIMDUTF_UTF8_H #define SIMDUTF_UTF8_H namespace simdutf { namespace scalar { namespace { namespace utf8 { #if SIMDUTF_IMPLEMENTATION_FALLBACK || SIMDUTF_IMPLEMENTATION_RVV // only used by the fallback kernel. // credit: based on code from Google Fuchsia (Apache Licensed) inline simdutf_warn_unused bool validate(const char *buf, size_t len) noexcept { const uint8_t *data = reinterpret_cast(buf); uint64_t pos = 0; uint32_t code_point = 0; while (pos < len) { // check of the next 16 bytes are ascii. uint64_t next_pos = pos + 16; if (next_pos <= len) { // if it is safe to read 16 more bytes, check that they are ascii uint64_t v1; std::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; std::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; if ((v & 0x8080808080808080) == 0) { pos = next_pos; continue; } } unsigned char byte = data[pos]; while (byte < 0b10000000) { if (++pos == len) { return true; } byte = data[pos]; } if ((byte & 0b11100000) == 0b11000000) { next_pos = pos + 2; if (next_pos > len) { return false; } if ((data[pos + 1] & 0b11000000) != 0b10000000) { return false; } // range check code_point = (byte & 0b00011111) << 6 | (data[pos + 1] & 0b00111111); if ((code_point < 0x80) || (0x7ff < code_point)) { return false; } } else if ((byte & 0b11110000) == 0b11100000) { next_pos = pos + 3; if (next_pos > len) { return false; } if ((data[pos + 1] & 0b11000000) != 0b10000000) { return false; } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return false; } // range check code_point = (byte & 0b00001111) << 12 | (data[pos + 1] & 0b00111111) << 6 | (data[pos + 2] & 0b00111111); if ((code_point < 0x800) || (0xffff < code_point) || (0xd7ff < code_point && code_point < 0xe000)) { return false; } } else if ((byte & 0b11111000) == 0b11110000) { // 0b11110000 next_pos = pos + 4; if (next_pos > len) { return false; } if ((data[pos + 1] & 0b11000000) != 0b10000000) { return false; } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return false; } if ((data[pos + 3] & 0b11000000) != 0b10000000) { return false; } // range check code_point = (byte & 0b00000111) << 18 | (data[pos + 1] & 0b00111111) << 12 | (data[pos + 2] & 0b00111111) << 6 | (data[pos + 3] & 0b00111111); if (code_point <= 0xffff || 0x10ffff < code_point) { return false; } } else { // we may have a continuation return false; } pos = next_pos; } return true; } #endif inline simdutf_warn_unused result validate_with_errors(const char *buf, size_t len) noexcept { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; uint32_t code_point = 0; while (pos < len) { // check of the next 16 bytes are ascii. size_t next_pos = pos + 16; if (next_pos <= len) { // if it is safe to read 16 more bytes, check that they are ascii uint64_t v1; std::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; std::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; if ((v & 0x8080808080808080) == 0) { pos = next_pos; continue; } } unsigned char byte = data[pos]; while (byte < 0b10000000) { if (++pos == len) { return result(error_code::SUCCESS, len); } byte = data[pos]; } if ((byte & 0b11100000) == 0b11000000) { next_pos = pos + 2; if (next_pos > len) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } // range check code_point = (byte & 0b00011111) << 6 | (data[pos + 1] & 0b00111111); if ((code_point < 0x80) || (0x7ff < code_point)) { return result(error_code::OVERLONG, pos); } } else if ((byte & 0b11110000) == 0b11100000) { next_pos = pos + 3; if (next_pos > len) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } // range check code_point = (byte & 0b00001111) << 12 | (data[pos + 1] & 0b00111111) << 6 | (data[pos + 2] & 0b00111111); if ((code_point < 0x800) || (0xffff < code_point)) { return result(error_code::OVERLONG, pos); } if (0xd7ff < code_point && code_point < 0xe000) { return result(error_code::SURROGATE, pos); } } else if ((byte & 0b11111000) == 0b11110000) { // 0b11110000 next_pos = pos + 4; if (next_pos > len) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 3] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } // range check code_point = (byte & 0b00000111) << 18 | (data[pos + 1] & 0b00111111) << 12 | (data[pos + 2] & 0b00111111) << 6 | (data[pos + 3] & 0b00111111); if (code_point <= 0xffff) { return result(error_code::OVERLONG, pos); } if (0x10ffff < code_point) { return result(error_code::TOO_LARGE, pos); } } else { // we either have too many continuation bytes or an invalid leading byte if ((byte & 0b11000000) == 0b10000000) { return result(error_code::TOO_LONG, pos); } else { return result(error_code::HEADER_BITS, pos); } } pos = next_pos; } return result(error_code::SUCCESS, len); } // Finds the previous leading byte starting backward from buf and validates with // errors from there Used to pinpoint the location of an error when an invalid // chunk is detected We assume that the stream starts with a leading byte, and // to check that it is the case, we ask that you pass a pointer to the start of // the stream (start). inline simdutf_warn_unused result rewind_and_validate_with_errors( const char *start, const char *buf, size_t len) noexcept { // First check that we start with a leading byte if ((*start & 0b11000000) == 0b10000000) { return result(error_code::TOO_LONG, 0); } size_t extra_len{0}; // A leading byte cannot be further than 4 bytes away for (int i = 0; i < 5; i++) { unsigned char byte = *buf; if ((byte & 0b11000000) != 0b10000000) { break; } else { buf--; extra_len++; } } result res = validate_with_errors(buf, len + extra_len); res.count -= extra_len; return res; } inline size_t count_code_points(const char *buf, size_t len) { const int8_t *p = reinterpret_cast(buf); size_t counter{0}; for (size_t i = 0; i < len; i++) { // -65 is 0b10111111, anything larger in two-complement's should start a new // code point. if (p[i] > -65) { counter++; } } return counter; } inline size_t utf16_length_from_utf8(const char *buf, size_t len) { const int8_t *p = reinterpret_cast(buf); size_t counter{0}; for (size_t i = 0; i < len; i++) { if (p[i] > -65) { counter++; } if (uint8_t(p[i]) >= 240) { counter++; } } return counter; } simdutf_warn_unused inline size_t trim_partial_utf8(const char *input, size_t length) { if (length < 3) { switch (length) { case 2: if (uint8_t(input[length - 1]) >= 0xc0) { return length - 1; } // 2-, 3- and 4-byte characters with only 1 byte left if (uint8_t(input[length - 2]) >= 0xe0) { return length - 2; } // 3- and 4-byte characters with only 2 bytes left return length; case 1: if (uint8_t(input[length - 1]) >= 0xc0) { return length - 1; } // 2-, 3- and 4-byte characters with only 1 byte left return length; case 0: return length; } } if (uint8_t(input[length - 1]) >= 0xc0) { return length - 1; } // 2-, 3- and 4-byte characters with only 1 byte left if (uint8_t(input[length - 2]) >= 0xe0) { return length - 2; } // 3- and 4-byte characters with only 1 byte left if (uint8_t(input[length - 3]) >= 0xf0) { return length - 3; } // 4-byte characters with only 3 bytes left return length; } } // namespace utf8 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf8.h */ #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING || \ (SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1) /* begin file src/scalar/utf16.h */ #ifndef SIMDUTF_UTF16_H #define SIMDUTF_UTF16_H namespace simdutf { namespace scalar { namespace { namespace utf16 { template inline simdutf_warn_unused bool validate_as_ascii(const char16_t *data, size_t len) noexcept { for (size_t pos = 0; pos < len; pos++) { char16_t word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; if (word >= 0x80) { return false; } } return true; } template inline simdutf_warn_unused bool validate(const char16_t *data, size_t len) noexcept { uint64_t pos = 0; while (pos < len) { char16_t word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; if ((word & 0xF800) == 0xD800) { if (pos + 1 >= len) { return false; } char16_t diff = char16_t(word - 0xD800); if (diff > 0x3FF) { return false; } char16_t next_word = !match_system(big_endian) ? u16_swap_bytes(data[pos + 1]) : data[pos + 1]; char16_t diff2 = char16_t(next_word - 0xDC00); if (diff2 > 0x3FF) { return false; } pos += 2; } else { pos++; } } return true; } template inline simdutf_warn_unused result validate_with_errors(const char16_t *data, size_t len) noexcept { size_t pos = 0; while (pos < len) { char16_t word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; if ((word & 0xF800) == 0xD800) { if (pos + 1 >= len) { return result(error_code::SURROGATE, pos); } char16_t diff = char16_t(word - 0xD800); if (diff > 0x3FF) { return result(error_code::SURROGATE, pos); } char16_t next_word = !match_system(big_endian) ? u16_swap_bytes(data[pos + 1]) : data[pos + 1]; char16_t diff2 = uint16_t(next_word - 0xDC00); if (diff2 > 0x3FF) { return result(error_code::SURROGATE, pos); } pos += 2; } else { pos++; } } return result(error_code::SUCCESS, pos); } template inline size_t count_code_points(const char16_t *p, size_t len) { // We are not BOM aware. size_t counter{0}; for (size_t i = 0; i < len; i++) { char16_t word = !match_system(big_endian) ? u16_swap_bytes(p[i]) : p[i]; counter += ((word & 0xFC00) != 0xDC00); } return counter; } template inline size_t utf8_length_from_utf16(const char16_t *p, size_t len) { // We are not BOM aware. size_t counter{0}; for (size_t i = 0; i < len; i++) { char16_t word = !match_system(big_endian) ? u16_swap_bytes(p[i]) : p[i]; counter++; // ASCII counter += static_cast( word > 0x7F); // non-ASCII is at least 2 bytes, surrogates are 2*2 == 4 bytes counter += static_cast((word > 0x7FF && word <= 0xD7FF) || (word >= 0xE000)); // three-byte } return counter; } template inline size_t utf32_length_from_utf16(const char16_t *p, size_t len) { // We are not BOM aware. size_t counter{0}; for (size_t i = 0; i < len; i++) { char16_t word = !match_system(big_endian) ? u16_swap_bytes(p[i]) : p[i]; counter += ((word & 0xFC00) != 0xDC00); } return counter; } simdutf_really_inline void change_endianness_utf16(const char16_t *input, size_t size, char16_t *output) { for (size_t i = 0; i < size; i++) { *output++ = char16_t(input[i] >> 8 | input[i] << 8); } } template simdutf_warn_unused inline size_t trim_partial_utf16(const char16_t *input, size_t length) { if (length == 0) { return 0; } uint16_t last_word = uint16_t(input[length - 1]); last_word = !match_system(big_endian) ? u16_swap_bytes(last_word) : last_word; length -= ((last_word & 0xFC00) == 0xD800); return length; } template bool is_high_surrogate(char16_t c) { c = !match_system(big_endian) ? u16_swap_bytes(c) : c; return (0xd800 <= c && c <= 0xdbff); } template bool is_low_surrogate(char16_t c) { c = !match_system(big_endian) ? u16_swap_bytes(c) : c; return (0xdc00 <= c && c <= 0xdfff); } simdutf_really_inline bool high_surrogate(char16_t c) { return (0xd800 <= c && c <= 0xdbff); } simdutf_really_inline bool low_surrogate(char16_t c) { return (0xdc00 <= c && c <= 0xdfff); } template inline result utf8_length_from_utf16_with_replacement(const char16_t *p, size_t len) { bool any_surrogates = false; // We are not BOM aware. size_t counter{0}; for (size_t i = 0; i < len; i++) { if (is_high_surrogate(p[i])) { any_surrogates = true; // surrogate pair if (i + 1 < len && is_low_surrogate(p[i + 1])) { counter += 4; i++; // skip low surrogate } else { counter += 3; // unpaired high surrogate replaced by U+FFFD } continue; } else if (is_low_surrogate(p[i])) { any_surrogates = true; counter += 3; // unpaired low surrogate replaced by U+FFFD continue; } char16_t word = !match_system(big_endian) ? u16_swap_bytes(p[i]) : p[i]; counter++; // at least 1 byte counter += static_cast(word > 0x7F); // non-ASCII is at least 2 bytes counter += static_cast(word > 0x7FF); // three-byte } return {any_surrogates ? error_code::SURROGATE : error_code::SUCCESS, counter}; } // variable templates are a C++14 extension template char16_t replacement() { return !match_system(big_endian) ? scalar::u16_swap_bytes(0xfffd) : 0xfffd; } template void to_well_formed_utf16(const char16_t *input, size_t len, char16_t *output) { const char16_t replacement = utf16::replacement(); bool high_surrogate_prev = false, high_surrogate, low_surrogate; size_t i = 0; for (; i < len; i++) { char16_t c = input[i]; high_surrogate = is_high_surrogate(c); low_surrogate = is_low_surrogate(c); if (high_surrogate_prev && !low_surrogate) { output[i - 1] = replacement; } if (!high_surrogate_prev && low_surrogate) { output[i] = replacement; } else { output[i] = input[i]; } high_surrogate_prev = high_surrogate; } /* string may not end with high surrogate */ if (high_surrogate_prev) { output[i - 1] = replacement; } } } // namespace utf16 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf16.h */ #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING || // (SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1) #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/scalar/utf32.h */ #ifndef SIMDUTF_UTF32_H #define SIMDUTF_UTF32_H namespace simdutf { namespace scalar { namespace { namespace utf32 { inline simdutf_warn_unused bool validate(const char32_t *buf, size_t len) noexcept { const uint32_t *data = reinterpret_cast(buf); uint64_t pos = 0; for (; pos < len; pos++) { uint32_t word = data[pos]; if (word > 0x10FFFF || (word >= 0xD800 && word <= 0xDFFF)) { return false; } } return true; } inline simdutf_warn_unused result validate_with_errors(const char32_t *buf, size_t len) noexcept { const uint32_t *data = reinterpret_cast(buf); size_t pos = 0; for (; pos < len; pos++) { uint32_t word = data[pos]; if (word > 0x10FFFF) { return result(error_code::TOO_LARGE, pos); } if (word >= 0xD800 && word <= 0xDFFF) { return result(error_code::SURROGATE, pos); } } return result(error_code::SUCCESS, pos); } inline size_t utf8_length_from_utf32(const char32_t *buf, size_t len) { // We are not BOM aware. const uint32_t *p = reinterpret_cast(buf); size_t counter{0}; for (size_t i = 0; i < len; i++) { // credit: @ttsugriy for the vectorizable approach counter++; // ASCII counter += static_cast(p[i] > 0x7F); // two-byte counter += static_cast(p[i] > 0x7FF); // three-byte counter += static_cast(p[i] > 0xFFFF); // four-bytes } return counter; } inline size_t utf16_length_from_utf32(const char32_t *buf, size_t len) { // We are not BOM aware. const uint32_t *p = reinterpret_cast(buf); size_t counter{0}; for (size_t i = 0; i < len; i++) { counter++; // non-surrogate word counter += static_cast(p[i] > 0xFFFF); // surrogate pair } return counter; } } // namespace utf32 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf32.h */ #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_LATIN1 /* begin file src/scalar/latin1.h */ #ifndef SIMDUTF_LATIN1_H #define SIMDUTF_LATIN1_H namespace simdutf { namespace scalar { namespace { namespace latin1 { simdutf_really_inline size_t utf8_length_from_latin1(const char *buf, size_t len) { const uint8_t *c = reinterpret_cast(buf); size_t answer = 0; for (size_t i = 0; i < len; i++) { if ((c[i] >> 7)) { answer++; } } return answer + len; } } // namespace latin1 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/latin1.h */ #endif // SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 /* begin file src/scalar/base64.h */ #ifndef SIMDUTF_BASE64_H #define SIMDUTF_BASE64_H #include #include #include #include #include namespace simdutf { namespace scalar { namespace { namespace base64 { // This function is not expected to be fast. Do not use in long loops. // In most instances you should be using is_ignorable. template bool is_ascii_white_space(char_type c) { return c == ' ' || c == '\t' || c == '\n' || c == '\r' || c == '\f'; } template bool is_eight_byte(char_type c) { if (sizeof(char_type) == 1) { return true; } return uint8_t(c) == c; } template bool is_ignorable(char_type c, simdutf::base64_options options) { const uint8_t *to_base64 = (options & base64_default_or_url) ? tables::base64::to_base64_default_or_url_value : ((options & base64_url) ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); const bool ignore_garbage = (options == base64_options::base64_url_accept_garbage) || (options == base64_options::base64_default_accept_garbage) || (options == base64_options::base64_default_or_url_accept_garbage); uint8_t code = to_base64[uint8_t(c)]; if (is_eight_byte(c) && code <= 63) { return false; } if (is_eight_byte(c) && code == 64) { return true; } return ignore_garbage; } template bool is_base64(char_type c, simdutf::base64_options options) { const uint8_t *to_base64 = (options & base64_default_or_url) ? tables::base64::to_base64_default_or_url_value : ((options & base64_url) ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); uint8_t code = to_base64[uint8_t(c)]; if (is_eight_byte(c) && code <= 63) { return true; } return false; } template bool is_base64_or_padding(char_type c, simdutf::base64_options options) { const uint8_t *to_base64 = (options & base64_default_or_url) ? tables::base64::to_base64_default_or_url_value : ((options & base64_url) ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); if (c == '=') { return true; } uint8_t code = to_base64[uint8_t(c)]; if (is_eight_byte(c) && code <= 63) { return true; } return false; } template bool is_ignorable_or_padding(char_type c, simdutf::base64_options options) { return is_ignorable(c, options) || c == '='; } struct reduced_input { size_t equalsigns; // number of padding characters '=', typically 0, 1, 2. size_t equallocation; // location of the first padding character if any size_t srclen; // length of the input buffer before padding size_t full_input_length; // length of the input buffer with padding but // without ignorable characters }; // find the end of the base64 input buffer // It returns the number of padding characters, the location of the first // padding character if any, the length of the input buffer before padding // and the length of the input buffer with padding. The input buffer is not // modified. The function assumes that there are at most two padding characters. template reduced_input find_end(const char_type *src, size_t srclen, simdutf::base64_options options) { const uint8_t *to_base64 = (options & base64_default_or_url) ? tables::base64::to_base64_default_or_url_value : ((options & base64_url) ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); const bool ignore_garbage = (options == base64_options::base64_url_accept_garbage) || (options == base64_options::base64_default_accept_garbage) || (options == base64_options::base64_default_or_url_accept_garbage); size_t equalsigns = 0; // We intentionally include trailing spaces in the full input length. // See https://github.com/simdutf/simdutf/issues/824 size_t full_input_length = srclen; // skip trailing spaces while (!ignore_garbage && srclen > 0 && scalar::base64::is_eight_byte(src[srclen - 1]) && to_base64[uint8_t(src[srclen - 1])] == 64) { srclen--; } size_t equallocation = srclen; // location of the first padding character if any if (ignore_garbage) { // Technically, we don't need to find the first padding character, we can // just change our algorithms, but it adds substantial complexity. auto it = simdutf::find(src, src + srclen, '='); if (it != src + srclen) { equallocation = it - src; equalsigns = 1; srclen = equallocation; full_input_length = equallocation + 1; } return {equalsigns, equallocation, srclen, full_input_length}; } if (!ignore_garbage && srclen > 0 && src[srclen - 1] == '=') { // This is the last '=' sign. equallocation = srclen - 1; srclen--; equalsigns = 1; // skip trailing spaces while (srclen > 0 && scalar::base64::is_eight_byte(src[srclen - 1]) && to_base64[uint8_t(src[srclen - 1])] == 64) { srclen--; } if (srclen > 0 && src[srclen - 1] == '=') { // This is the second '=' sign. equallocation = srclen - 1; srclen--; equalsigns = 2; } } return {equalsigns, equallocation, srclen, full_input_length}; } // Returns true upon success. The destination buffer must be large enough. // This functions assumes that the padding (=) has been removed. // if check_capacity is true, it will check that the destination buffer is // large enough. If it is not, it will return OUTPUT_BUFFER_TOO_SMALL. template full_result base64_tail_decode_impl( char *dst, size_t outlen, const char_type *src, size_t length, size_t padding_characters, // number of padding characters // '=', typically 0, 1, 2. base64_options options, last_chunk_handling_options last_chunk_options) { char *dstend = dst + outlen; (void)dstend; // This looks like 10 branches, but we expect the compiler to resolve this to // two branches (easily predicted): const uint8_t *to_base64 = (options & base64_default_or_url) ? tables::base64::to_base64_default_or_url_value : ((options & base64_url) ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); const uint32_t *d0 = (options & base64_default_or_url) ? tables::base64::base64_default_or_url::d0 : ((options & base64_url) ? tables::base64::base64_url::d0 : tables::base64::base64_default::d0); const uint32_t *d1 = (options & base64_default_or_url) ? tables::base64::base64_default_or_url::d1 : ((options & base64_url) ? tables::base64::base64_url::d1 : tables::base64::base64_default::d1); const uint32_t *d2 = (options & base64_default_or_url) ? tables::base64::base64_default_or_url::d2 : ((options & base64_url) ? tables::base64::base64_url::d2 : tables::base64::base64_default::d2); const uint32_t *d3 = (options & base64_default_or_url) ? tables::base64::base64_default_or_url::d3 : ((options & base64_url) ? tables::base64::base64_url::d3 : tables::base64::base64_default::d3); const bool ignore_garbage = (options == base64_options::base64_url_accept_garbage) || (options == base64_options::base64_default_accept_garbage) || (options == base64_options::base64_default_or_url_accept_garbage); const char_type *srcend = src + length; const char_type *srcinit = src; const char *dstinit = dst; uint32_t x; size_t idx; uint8_t buffer[4]; while (true) { while (src + 4 <= srcend && is_eight_byte(src[0]) && is_eight_byte(src[1]) && is_eight_byte(src[2]) && is_eight_byte(src[3]) && (x = d0[uint8_t(src[0])] | d1[uint8_t(src[1])] | d2[uint8_t(src[2])] | d3[uint8_t(src[3])]) < 0x01FFFFFF) { if (match_system(endianness::BIG)) { x = scalar::u32_swap_bytes(x); } if (check_capacity && dstend - dst < 3) { return {OUTPUT_BUFFER_TOO_SMALL, size_t(src - srcinit), size_t(dst - dstinit)}; } std::memcpy(dst, &x, 3); // optimization opportunity: copy 4 bytes dst += 3; src += 4; } const char_type *srccur = src; idx = 0; // we need at least four characters. #ifdef __clang__ // If possible, we read four characters at a time. (It is an optimization.) if (ignore_garbage && src + 4 <= srcend) { char_type c0 = src[0]; char_type c1 = src[1]; char_type c2 = src[2]; char_type c3 = src[3]; uint8_t code0 = to_base64[uint8_t(c0)]; uint8_t code1 = to_base64[uint8_t(c1)]; uint8_t code2 = to_base64[uint8_t(c2)]; uint8_t code3 = to_base64[uint8_t(c3)]; buffer[idx] = code0; idx += (is_eight_byte(c0) && code0 <= 63); buffer[idx] = code1; idx += (is_eight_byte(c1) && code1 <= 63); buffer[idx] = code2; idx += (is_eight_byte(c2) && code2 <= 63); buffer[idx] = code3; idx += (is_eight_byte(c3) && code3 <= 63); src += 4; } #endif while ((idx < 4) && (src < srcend)) { char_type c = *src; uint8_t code = to_base64[uint8_t(c)]; buffer[idx] = uint8_t(code); if (is_eight_byte(c) && code <= 63) { idx++; } else if (!ignore_garbage && (code > 64 || !scalar::base64::is_eight_byte(c))) { return {INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit)}; } else { // We have a space or a newline or garbage. We ignore it. } src++; } if (idx != 4) { simdutf_log_assert(idx < 4, "idx should be less than 4"); // We never should have that the number of base64 characters + the // number of padding characters is more than 4. if (!ignore_garbage && (idx + padding_characters > 4)) { return {INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit), true}; } // The idea here is that in loose mode, // if there is padding at all, it must be used // to form 4-wise chunk. However, in loose mode, // we do accept no padding at all. if (!ignore_garbage && last_chunk_options == last_chunk_handling_options::loose && (idx >= 2) && padding_characters > 0 && ((idx + padding_characters) & 3) != 0) { return {INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit), true}; } else // The idea here is that in strict mode, we do not want to accept // incomplete base64 chunks. So if the chunk was otherwise valid, we // return BASE64_INPUT_REMAINDER. if (!ignore_garbage && last_chunk_options == last_chunk_handling_options::strict && (idx >= 2) && ((idx + padding_characters) & 3) != 0) { // The partial chunk was at src - idx return {BASE64_INPUT_REMAINDER, size_t(src - srcinit), size_t(dst - dstinit), true}; } else // If there is a partial chunk with insufficient padding, with // stop_before_partial, we need to just ignore it. In "only full" // mode, skip the minute there are padding characters. if ((last_chunk_options == last_chunk_handling_options::stop_before_partial && (padding_characters + idx < 4) && (idx != 0) && (idx >= 2 || padding_characters == 0)) || (last_chunk_options == last_chunk_handling_options::only_full_chunks && (idx >= 2 || padding_characters == 0))) { // partial means that we are *not* going to consume the read // characters. We need to rewind the src pointer. src = srccur; return {SUCCESS, size_t(src - srcinit), size_t(dst - dstinit)}; } else { if (idx == 2) { uint32_t triple = (uint32_t(buffer[0]) << 3 * 6) + (uint32_t(buffer[1]) << 2 * 6); if (!ignore_garbage && (last_chunk_options == last_chunk_handling_options::strict) && (triple & 0xffff)) { return {BASE64_EXTRA_BITS, size_t(src - srcinit), size_t(dst - dstinit)}; } if (check_capacity && dstend - dst < 1) { return {OUTPUT_BUFFER_TOO_SMALL, size_t(srccur - srcinit), size_t(dst - dstinit)}; } if (match_system(endianness::BIG)) { triple <<= 8; std::memcpy(dst, &triple, 1); } else { triple = scalar::u32_swap_bytes(triple); triple >>= 8; std::memcpy(dst, &triple, 1); } dst += 1; } else if (idx == 3) { uint32_t triple = (uint32_t(buffer[0]) << 3 * 6) + (uint32_t(buffer[1]) << 2 * 6) + (uint32_t(buffer[2]) << 1 * 6); if (!ignore_garbage && (last_chunk_options == last_chunk_handling_options::strict) && (triple & 0xff)) { return {BASE64_EXTRA_BITS, size_t(src - srcinit), size_t(dst - dstinit)}; } if (check_capacity && dstend - dst < 2) { return {OUTPUT_BUFFER_TOO_SMALL, size_t(srccur - srcinit), size_t(dst - dstinit)}; } if (match_system(endianness::BIG)) { triple <<= 8; std::memcpy(dst, &triple, 2); } else { triple = scalar::u32_swap_bytes(triple); triple >>= 8; std::memcpy(dst, &triple, 2); } dst += 2; } else if (!ignore_garbage && idx == 1 && (!is_partial(last_chunk_options) || (is_partial(last_chunk_options) && padding_characters > 0))) { return {BASE64_INPUT_REMAINDER, size_t(src - srcinit), size_t(dst - dstinit)}; } else if (!ignore_garbage && idx == 0 && padding_characters > 0) { return {INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit), true}; } return {SUCCESS, size_t(src - srcinit), size_t(dst - dstinit)}; } } if (check_capacity && dstend - dst < 3) { return {OUTPUT_BUFFER_TOO_SMALL, size_t(srccur - srcinit), size_t(dst - dstinit)}; } uint32_t triple = (uint32_t(buffer[0]) << 3 * 6) + (uint32_t(buffer[1]) << 2 * 6) + (uint32_t(buffer[2]) << 1 * 6) + (uint32_t(buffer[3]) << 0 * 6); if (match_system(endianness::BIG)) { triple <<= 8; std::memcpy(dst, &triple, 3); } else { triple = scalar::u32_swap_bytes(triple); triple >>= 8; std::memcpy(dst, &triple, 3); } dst += 3; } } template full_result base64_tail_decode(char *dst, const char_type *src, size_t length, size_t padding_characters, // number of padding characters // '=', typically 0, 1, 2. base64_options options, last_chunk_handling_options last_chunk_options) { return base64_tail_decode_impl(dst, 0, src, length, padding_characters, options, last_chunk_options); } // like base64_tail_decode, but it will not write past the end of the output // buffer. The outlen parameter is modified to reflect the number of bytes // written. This functions assumes that the padding (=) has been removed. // template full_result base64_tail_decode_safe( char *dst, size_t outlen, const char_type *src, size_t length, size_t padding_characters, // number of padding characters // '=', typically 0, 1, 2. base64_options options, last_chunk_handling_options last_chunk_options) { return base64_tail_decode_impl(dst, outlen, src, length, padding_characters, options, last_chunk_options); } inline full_result patch_tail_result(full_result r, size_t previous_input, size_t previous_output, size_t equallocation, size_t full_input_length, last_chunk_handling_options last_chunk_options) { r.input_count += previous_input; r.output_count += previous_output; if (r.padding_error) { r.input_count = equallocation; } if (r.error == error_code::SUCCESS) { if (!is_partial(last_chunk_options)) { // A success when we are not in stop_before_partial mode. // means that we have consumed the whole input buffer. r.input_count = full_input_length; } else if (r.output_count % 3 != 0) { r.input_count = full_input_length; } } return r; } // Returns the number of bytes written. The destination buffer must be large // enough. It will add padding (=) if needed. template size_t tail_encode_base64_impl( char *dst, const char *src, size_t srclen, base64_options options, size_t line_length = simdutf::default_line_length, size_t line_offset = 0) { if (use_lines) { // sanitize line_length and starting_line_offset. // line_length must be greater than 3. if (line_length < 4) { line_length = 4; } simdutf_log_assert(line_offset <= line_length, "line_offset should be less than line_length"); } // By default, we use padding if we are not using the URL variant. // This is check with ((options & base64_url) == 0) which returns true if we // are not using the URL variant. However, we also allow 'inversion' of the // convention with the base64_reverse_padding option. If the // base64_reverse_padding option is set, we use padding if we are using the // URL variant, and we omit it if we are not using the URL variant. This is // checked with // ((options & base64_reverse_padding) == base64_reverse_padding). bool use_padding = ((options & base64_url) == 0) ^ ((options & base64_reverse_padding) == base64_reverse_padding); // This looks like 3 branches, but we expect the compiler to resolve this to // a single branch: const char *e0 = (options & base64_url) ? tables::base64::base64_url::e0 : tables::base64::base64_default::e0; const char *e1 = (options & base64_url) ? tables::base64::base64_url::e1 : tables::base64::base64_default::e1; const char *e2 = (options & base64_url) ? tables::base64::base64_url::e2 : tables::base64::base64_default::e2; char *out = dst; size_t i = 0; uint8_t t1, t2, t3; for (; i + 2 < srclen; i += 3) { t1 = uint8_t(src[i]); t2 = uint8_t(src[i + 1]); t3 = uint8_t(src[i + 2]); if (use_lines) { if (line_offset + 3 >= line_length) { if (line_offset == line_length) { *out++ = '\n'; *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e1[((t2 & 0x0F) << 2) | ((t3 >> 6) & 0x03)]; *out++ = e2[t3]; line_offset = 4; } else if (line_offset + 1 == line_length) { *out++ = e0[t1]; *out++ = '\n'; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e1[((t2 & 0x0F) << 2) | ((t3 >> 6) & 0x03)]; *out++ = e2[t3]; line_offset = 3; } else if (line_offset + 2 == line_length) { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = '\n'; *out++ = e1[((t2 & 0x0F) << 2) | ((t3 >> 6) & 0x03)]; *out++ = e2[t3]; line_offset = 2; } else if (line_offset + 3 == line_length) { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e1[((t2 & 0x0F) << 2) | ((t3 >> 6) & 0x03)]; *out++ = '\n'; *out++ = e2[t3]; line_offset = 1; } } else { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e1[((t2 & 0x0F) << 2) | ((t3 >> 6) & 0x03)]; *out++ = e2[t3]; line_offset += 4; } } else { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e1[((t2 & 0x0F) << 2) | ((t3 >> 6) & 0x03)]; *out++ = e2[t3]; } } switch (srclen - i) { case 0: break; case 1: t1 = uint8_t(src[i]); if (use_lines) { if (use_padding) { if (line_offset + 3 >= line_length) { if (line_offset == line_length) { *out++ = '\n'; *out++ = e0[t1]; *out++ = e1[(t1 & 0x03) << 4]; *out++ = '='; *out++ = '='; } else if (line_offset + 1 == line_length) { *out++ = e0[t1]; *out++ = '\n'; *out++ = e1[(t1 & 0x03) << 4]; *out++ = '='; *out++ = '='; } else if (line_offset + 2 == line_length) { *out++ = e0[t1]; *out++ = e1[(t1 & 0x03) << 4]; *out++ = '\n'; *out++ = '='; *out++ = '='; } else if (line_offset + 3 == line_length) { *out++ = e0[t1]; *out++ = e1[(t1 & 0x03) << 4]; *out++ = '='; *out++ = '\n'; *out++ = '='; } } else { *out++ = e0[t1]; *out++ = e1[(t1 & 0x03) << 4]; *out++ = '='; *out++ = '='; } } else { if (line_offset + 2 >= line_length) { if (line_offset == line_length) { *out++ = '\n'; *out++ = e0[uint8_t(src[i])]; *out++ = e1[(uint8_t(src[i]) & 0x03) << 4]; } else if (line_offset + 1 == line_length) { *out++ = e0[uint8_t(src[i])]; *out++ = '\n'; *out++ = e1[(uint8_t(src[i]) & 0x03) << 4]; } else { *out++ = e0[uint8_t(src[i])]; *out++ = e1[(uint8_t(src[i]) & 0x03) << 4]; // *out++ = '\n'; ==> no newline at the end of the output } } else { *out++ = e0[uint8_t(src[i])]; *out++ = e1[(uint8_t(src[i]) & 0x03) << 4]; } } } else { *out++ = e0[t1]; *out++ = e1[(t1 & 0x03) << 4]; if (use_padding) { *out++ = '='; *out++ = '='; } } break; default: /* case 2 */ t1 = uint8_t(src[i]); t2 = uint8_t(src[i + 1]); if (use_lines) { if (use_padding) { if (line_offset + 3 >= line_length) { if (line_offset == line_length) { *out++ = '\n'; *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e2[(t2 & 0x0F) << 2]; *out++ = '='; } else if (line_offset + 1 == line_length) { *out++ = e0[t1]; *out++ = '\n'; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e2[(t2 & 0x0F) << 2]; *out++ = '='; } else if (line_offset + 2 == line_length) { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = '\n'; *out++ = e2[(t2 & 0x0F) << 2]; *out++ = '='; } else if (line_offset + 3 == line_length) { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e2[(t2 & 0x0F) << 2]; *out++ = '\n'; *out++ = '='; } } else { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e2[(t2 & 0x0F) << 2]; *out++ = '='; } } else { if (line_offset + 3 >= line_length) { if (line_offset == line_length) { *out++ = '\n'; *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e2[(t2 & 0x0F) << 2]; } else if (line_offset + 1 == line_length) { *out++ = e0[t1]; *out++ = '\n'; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e2[(t2 & 0x0F) << 2]; } else if (line_offset + 2 == line_length) { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = '\n'; *out++ = e2[(t2 & 0x0F) << 2]; } else { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e2[(t2 & 0x0F) << 2]; // *out++ = '\n'; ==> no newline at the end of the output } } else { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e2[(t2 & 0x0F) << 2]; } } } else { *out++ = e0[t1]; *out++ = e1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)]; *out++ = e2[(t2 & 0x0F) << 2]; if (use_padding) { *out++ = '='; } } } return (size_t)(out - dst); } // Returns the number of bytes written. The destination buffer must be large // enough. It will add padding (=) if needed. inline size_t tail_encode_base64(char *dst, const char *src, size_t srclen, base64_options options) { return tail_encode_base64_impl(dst, src, srclen, options); } template simdutf_warn_unused size_t maximal_binary_length_from_base64( const char_type *input, size_t length) noexcept { // We follow https://infra.spec.whatwg.org/#forgiving-base64-decode size_t padding = 0; if (length > 0) { if (input[length - 1] == '=') { padding++; if (length > 1 && input[length - 2] == '=') { padding++; } } } size_t actual_length = length - padding; if (actual_length % 4 <= 1) { return actual_length / 4 * 3; } // if we have a valid input, then the remainder must be 2 or 3 adding one or // two extra bytes. return actual_length / 4 * 3 + (actual_length % 4) - 1; } template simdutf_warn_unused full_result base64_to_binary_details_impl( const char_type *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) noexcept { const bool ignore_garbage = (options == base64_options::base64_url_accept_garbage) || (options == base64_options::base64_default_accept_garbage) || (options == base64_options::base64_default_or_url_accept_garbage); auto ri = simdutf::scalar::base64::find_end(input, length, options); size_t equallocation = ri.equallocation; size_t equalsigns = ri.equalsigns; length = ri.srclen; size_t full_input_length = ri.full_input_length; if (length == 0) { if (!ignore_garbage && equalsigns > 0) { return {INVALID_BASE64_CHARACTER, equallocation, 0}; } return {SUCCESS, full_input_length, 0}; } full_result r = scalar::base64::base64_tail_decode( output, input, length, equalsigns, options, last_chunk_options); r = scalar::base64::patch_tail_result(r, 0, 0, equallocation, full_input_length, last_chunk_options); if (!is_partial(last_chunk_options) && r.error == error_code::SUCCESS && equalsigns > 0 && !ignore_garbage) { // additional checks if ((r.output_count % 3 == 0) || ((r.output_count % 3) + 1 + equalsigns != 4)) { return {INVALID_BASE64_CHARACTER, equallocation, r.output_count}; } } // When is_partial(last_chunk_options) is true, we must either end with // the end of the stream (beyond whitespace) or right after a non-ignorable // character or at the very beginning of the stream. // See https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 if (is_partial(last_chunk_options) && r.error == error_code::SUCCESS && r.input_count < full_input_length) { // First check if we can extend the input to the end of the stream while (r.input_count < full_input_length && base64_ignorable(*(input + r.input_count), options)) { r.input_count++; } // If we are still not at the end of the stream, then we must backtrack // to the last non-ignorable character. if (r.input_count < full_input_length) { while (r.input_count > 0 && base64_ignorable(*(input + r.input_count - 1), options)) { r.input_count--; } } } return r; } template simdutf_warn_unused full_result base64_to_binary_details_safe_impl( const char_type *input, size_t length, char *output, size_t outlen, base64_options options, last_chunk_handling_options last_chunk_options) noexcept { const bool ignore_garbage = (options == base64_options::base64_url_accept_garbage) || (options == base64_options::base64_default_accept_garbage) || (options == base64_options::base64_default_or_url_accept_garbage); auto ri = simdutf::scalar::base64::find_end(input, length, options); size_t equallocation = ri.equallocation; size_t equalsigns = ri.equalsigns; length = ri.srclen; size_t full_input_length = ri.full_input_length; if (length == 0) { if (!ignore_garbage && equalsigns > 0) { return {INVALID_BASE64_CHARACTER, equallocation, 0}; } return {SUCCESS, full_input_length, 0}; } full_result r = scalar::base64::base64_tail_decode_safe( output, outlen, input, length, equalsigns, options, last_chunk_options); r = scalar::base64::patch_tail_result(r, 0, 0, equallocation, full_input_length, last_chunk_options); if (!is_partial(last_chunk_options) && r.error == error_code::SUCCESS && equalsigns > 0 && !ignore_garbage) { // additional checks if ((r.output_count % 3 == 0) || ((r.output_count % 3) + 1 + equalsigns != 4)) { return {INVALID_BASE64_CHARACTER, equallocation, r.output_count}; } } // When is_partial(last_chunk_options) is true, we must either end with // the end of the stream (beyond whitespace) or right after a non-ignorable // character or at the very beginning of the stream. // See https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 if (is_partial(last_chunk_options) && r.error == error_code::SUCCESS && r.input_count < full_input_length) { // First check if we can extend the input to the end of the stream while (r.input_count < full_input_length && base64_ignorable(*(input + r.input_count), options)) { r.input_count++; } // If we are still not at the end of the stream, then we must backtrack // to the last non-ignorable character. if (r.input_count < full_input_length) { while (r.input_count > 0 && base64_ignorable(*(input + r.input_count - 1), options)) { r.input_count--; } } } return r; } simdutf_warn_unused size_t base64_length_from_binary(size_t length, base64_options options) noexcept { // By default, we use padding if we are not using the URL variant. // This is check with ((options & base64_url) == 0) which returns true if we // are not using the URL variant. However, we also allow 'inversion' of the // convention with the base64_reverse_padding option. If the // base64_reverse_padding option is set, we use padding if we are using the // URL variant, and we omit it if we are not using the URL variant. This is // checked with // ((options & base64_reverse_padding) == base64_reverse_padding). bool use_padding = ((options & base64_url) == 0) ^ ((options & base64_reverse_padding) == base64_reverse_padding); if (!use_padding) { return length / 3 * 4 + ((length % 3) ? (length % 3) + 1 : 0); } return (length + 2) / 3 * 4; // We use padding to make the length a multiple of 4. } simdutf_warn_unused size_t base64_length_from_binary_with_lines( size_t length, base64_options options, size_t line_length) noexcept { if (length == 0) { return 0; } size_t base64_length = scalar::base64::base64_length_from_binary(length, options); if (line_length < 4) { line_length = 4; } size_t lines = (base64_length + line_length - 1) / line_length; // number of lines return base64_length + lines - 1; } // Return the length of the prefix that contains count base64 characters. // Thus, if count is 3, the function returns the length of the prefix // that contains 3 base64 characters. // The function returns (size_t)-1 if there is not enough base64 characters in // the input. template simdutf_warn_unused size_t prefix_length(size_t count, simdutf::base64_options options, const char_type *input, size_t length) noexcept { size_t i = 0; while (i < length && is_ignorable(input[i], options)) { i++; } if (count == 0) { return i; // duh! } for (; i < length; i++) { if (is_ignorable(input[i], options)) { continue; } // We have a base64 character or a padding character. count--; if (count == 0) { return i + 1; } } simdutf_log_assert(false, "You never get here"); return -1; // should never happen } } // namespace base64 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/base64.h */ #endif // SIMDUTF_FEATURE_BASE64 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/scalar/utf32_to_utf8/valid_utf32_to_utf8.h */ #ifndef SIMDUTF_VALID_UTF32_TO_UTF8_H #define SIMDUTF_VALID_UTF32_TO_UTF8_H namespace simdutf { namespace scalar { namespace { namespace utf32_to_utf8 { #if SIMDUTF_IMPLEMENTATION_FALLBACK || SIMDUTF_IMPLEMENTATION_PPC64 // only used by the fallback and POWER kernel inline size_t convert_valid(const char32_t *buf, size_t len, char *utf8_output) { const uint32_t *data = reinterpret_cast(buf); size_t pos = 0; char *start{utf8_output}; while (pos < len) { // try to convert the next block of 2 ASCII characters if (pos + 2 <= len) { // if it is safe to read 8 more bytes, check that they are ascii uint64_t v; ::memcpy(&v, data + pos, sizeof(uint64_t)); if ((v & 0xFFFFFF80FFFFFF80) == 0) { *utf8_output++ = char(buf[pos]); *utf8_output++ = char(buf[pos + 1]); pos += 2; continue; } } uint32_t word = data[pos]; if ((word & 0xFFFFFF80) == 0) { // will generate one UTF-8 bytes *utf8_output++ = char(word); pos++; } else if ((word & 0xFFFFF800) == 0) { // will generate two UTF-8 bytes // we have 0b110XXXXX 0b10XXXXXX *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else if ((word & 0xFFFF0000) == 0) { // will generate three UTF-8 bytes // we have 0b1110XXXX 0b10XXXXXX 0b10XXXXXX *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else { // will generate four UTF-8 bytes // we have 0b11110XXX 0b10XXXXXX 0b10XXXXXX 0b10XXXXXX *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } } return utf8_output - start; } #endif // SIMDUTF_IMPLEMENTATION_FALLBACK || SIMDUTF_IMPLEMENTATION_PPC64 } // namespace utf32_to_utf8 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf32_to_utf8/valid_utf32_to_utf8.h */ /* begin file src/scalar/utf32_to_utf8/utf32_to_utf8.h */ #ifndef SIMDUTF_UTF32_TO_UTF8_H #define SIMDUTF_UTF32_TO_UTF8_H namespace simdutf { namespace scalar { namespace { namespace utf32_to_utf8 { inline size_t convert(const char32_t *buf, size_t len, char *utf8_output) { const uint32_t *data = reinterpret_cast(buf); size_t pos = 0; char *start{utf8_output}; while (pos < len) { // try to convert the next block of 2 ASCII characters if (pos + 2 <= len) { // if it is safe to read 8 more bytes, check that they are ascii uint64_t v; ::memcpy(&v, data + pos, sizeof(uint64_t)); if ((v & 0xFFFFFF80FFFFFF80) == 0) { *utf8_output++ = char(buf[pos]); *utf8_output++ = char(buf[pos + 1]); pos += 2; continue; } } uint32_t word = data[pos]; if ((word & 0xFFFFFF80) == 0) { // will generate one UTF-8 bytes *utf8_output++ = char(word); pos++; } else if ((word & 0xFFFFF800) == 0) { // will generate two UTF-8 bytes // we have 0b110XXXXX 0b10XXXXXX *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else if ((word & 0xFFFF0000) == 0) { // will generate three UTF-8 bytes // we have 0b1110XXXX 0b10XXXXXX 0b10XXXXXX if (word >= 0xD800 && word <= 0xDFFF) { return 0; } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else { // will generate four UTF-8 bytes // we have 0b11110XXX 0b10XXXXXX 0b10XXXXXX 0b10XXXXXX if (word > 0x10FFFF) { return 0; } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } } return utf8_output - start; } inline result convert_with_errors(const char32_t *buf, size_t len, char *utf8_output) { const uint32_t *data = reinterpret_cast(buf); size_t pos = 0; char *start{utf8_output}; while (pos < len) { // try to convert the next block of 2 ASCII characters if (pos + 2 <= len) { // if it is safe to read 8 more bytes, check that they are ascii uint64_t v; ::memcpy(&v, data + pos, sizeof(uint64_t)); if ((v & 0xFFFFFF80FFFFFF80) == 0) { *utf8_output++ = char(buf[pos]); *utf8_output++ = char(buf[pos + 1]); pos += 2; continue; } } uint32_t word = data[pos]; if ((word & 0xFFFFFF80) == 0) { // will generate one UTF-8 bytes *utf8_output++ = char(word); pos++; } else if ((word & 0xFFFFF800) == 0) { // will generate two UTF-8 bytes // we have 0b110XXXXX 0b10XXXXXX *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else if ((word & 0xFFFF0000) == 0) { // will generate three UTF-8 bytes // we have 0b1110XXXX 0b10XXXXXX 0b10XXXXXX if (word >= 0xD800 && word <= 0xDFFF) { return result(error_code::SURROGATE, pos); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else { // will generate four UTF-8 bytes // we have 0b11110XXX 0b10XXXXXX 0b10XXXXXX 0b10XXXXXX if (word > 0x10FFFF) { return result(error_code::TOO_LARGE, pos); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } } return result(error_code::SUCCESS, utf8_output - start); } } // namespace utf32_to_utf8 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf32_to_utf8/utf32_to_utf8.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/scalar/utf32_to_utf16/valid_utf32_to_utf16.h */ #ifndef SIMDUTF_VALID_UTF32_TO_UTF16_H #define SIMDUTF_VALID_UTF32_TO_UTF16_H namespace simdutf { namespace scalar { namespace { namespace utf32_to_utf16 { template inline size_t convert_valid(const char32_t *buf, size_t len, char16_t *utf16_output) { const uint32_t *data = reinterpret_cast(buf); size_t pos = 0; char16_t *start{utf16_output}; while (pos < len) { uint32_t word = data[pos]; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair *utf16_output++ = !match_system(big_endian) ? char16_t(u16_swap_bytes(uint16_t(word))) : char16_t(word); pos++; } else { // will generate a surrogate pair word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = u16_swap_bytes(high_surrogate); low_surrogate = u16_swap_bytes(low_surrogate); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); pos++; } } return utf16_output - start; } } // namespace utf32_to_utf16 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf32_to_utf16/valid_utf32_to_utf16.h */ /* begin file src/scalar/utf32_to_utf16/utf32_to_utf16.h */ #ifndef SIMDUTF_UTF32_TO_UTF16_H #define SIMDUTF_UTF32_TO_UTF16_H namespace simdutf { namespace scalar { namespace { namespace utf32_to_utf16 { template inline size_t convert(const char32_t *buf, size_t len, char16_t *utf16_output) { const uint32_t *data = reinterpret_cast(buf); size_t pos = 0; char16_t *start{utf16_output}; while (pos < len) { uint32_t word = data[pos]; if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return 0; } // will not generate a surrogate pair *utf16_output++ = !match_system(big_endian) ? char16_t(u16_swap_bytes(uint16_t(word))) : char16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return 0; } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = u16_swap_bytes(high_surrogate); low_surrogate = u16_swap_bytes(low_surrogate); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } pos++; } return utf16_output - start; } template inline result convert_with_errors(const char32_t *buf, size_t len, char16_t *utf16_output) { const uint32_t *data = reinterpret_cast(buf); size_t pos = 0; char16_t *start{utf16_output}; while (pos < len) { uint32_t word = data[pos]; if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return result(error_code::SURROGATE, pos); } // will not generate a surrogate pair *utf16_output++ = !match_system(big_endian) ? char16_t(u16_swap_bytes(uint16_t(word))) : char16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return result(error_code::TOO_LARGE, pos); } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = u16_swap_bytes(high_surrogate); low_surrogate = u16_swap_bytes(low_surrogate); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } pos++; } return result(error_code::SUCCESS, utf16_output - start); } } // namespace utf32_to_utf16 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf32_to_utf16/utf32_to_utf16.h */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/scalar/utf16_to_utf8/valid_utf16_to_utf8.h */ #ifndef SIMDUTF_VALID_UTF16_TO_UTF8_H #define SIMDUTF_VALID_UTF16_TO_UTF8_H namespace simdutf { namespace scalar { namespace { namespace utf16_to_utf8 { template inline size_t convert_valid(const char16_t *buf, size_t len, char *utf8_output) { const uint16_t *data = reinterpret_cast(buf); size_t pos = 0; char *start{utf8_output}; while (pos < len) { // try to convert the next block of 4 ASCII characters if (pos + 4 <= len) { // if it is safe to read 8 more bytes, check that they are ascii uint64_t v; ::memcpy(&v, data + pos, sizeof(uint64_t)); if (!match_system(big_endian)) { v = (v >> 8) | (v << (64 - 8)); } if ((v & 0xFF80FF80FF80FF80) == 0) { size_t final_pos = pos + 4; while (pos < final_pos) { *utf8_output++ = !match_system(big_endian) ? char(u16_swap_bytes(buf[pos])) : char(buf[pos]); pos++; } continue; } } uint16_t word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; if ((word & 0xFF80) == 0) { // will generate one UTF-8 bytes *utf8_output++ = char(word); pos++; } else if ((word & 0xF800) == 0) { // will generate two UTF-8 bytes // we have 0b110XXXXX 0b10XXXXXX *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else if ((word & 0xF800) != 0xD800) { // will generate three UTF-8 bytes // we have 0b1110XXXX 0b10XXXXXX 0b10XXXXXX *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); if (pos + 1 >= len) { return 0; } // minimal bound checking uint16_t next_word = !match_system(big_endian) ? u16_swap_bytes(data[pos + 1]) : data[pos + 1]; uint16_t diff2 = uint16_t(next_word - 0xDC00); uint32_t value = (diff << 10) + diff2 + 0x10000; // will generate four UTF-8 bytes // we have 0b11110XXX 0b10XXXXXX 0b10XXXXXX 0b10XXXXXX *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); pos += 2; } } return utf8_output - start; } } // namespace utf16_to_utf8 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf16_to_utf8/valid_utf16_to_utf8.h */ /* begin file src/scalar/utf16_to_utf8/utf16_to_utf8.h */ #ifndef SIMDUTF_UTF16_TO_UTF8_H #define SIMDUTF_UTF16_TO_UTF8_H namespace simdutf { namespace scalar { namespace { namespace utf16_to_utf8 { template inline size_t convert(const char16_t *buf, size_t len, char *utf8_output) { const uint16_t *data = reinterpret_cast(buf); size_t pos = 0; char *start{utf8_output}; while (pos < len) { // try to convert the next block of 8 bytes if (pos + 4 <= len) { // if it is safe to read 8 more bytes, check that they are ascii uint64_t v; ::memcpy(&v, data + pos, sizeof(uint64_t)); if (!match_system(big_endian)) { v = (v >> 8) | (v << (64 - 8)); } if ((v & 0xFF80FF80FF80FF80) == 0) { size_t final_pos = pos + 4; while (pos < final_pos) { *utf8_output++ = !match_system(big_endian) ? char(u16_swap_bytes(buf[pos])) : char(buf[pos]); pos++; } continue; } } uint16_t word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; if ((word & 0xFF80) == 0) { // will generate one UTF-8 bytes *utf8_output++ = char(word); pos++; } else if ((word & 0xF800) == 0) { // will generate two UTF-8 bytes // we have 0b110XXXXX 0b10XXXXXX *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else if ((word & 0xF800) != 0xD800) { // will generate three UTF-8 bytes // we have 0b1110XXXX 0b10XXXXXX 0b10XXXXXX *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else { // must be a surrogate pair if (pos + 1 >= len) { return 0; } uint16_t diff = uint16_t(word - 0xD800); if (diff > 0x3FF) { return 0; } uint16_t next_word = !match_system(big_endian) ? u16_swap_bytes(data[pos + 1]) : data[pos + 1]; uint16_t diff2 = uint16_t(next_word - 0xDC00); if (diff2 > 0x3FF) { return 0; } uint32_t value = (diff << 10) + diff2 + 0x10000; // will generate four UTF-8 bytes // we have 0b11110XXX 0b10XXXXXX 0b10XXXXXX 0b10XXXXXX *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); pos += 2; } } return utf8_output - start; } template inline full_result convert_with_errors(const char16_t *buf, size_t len, char *utf8_output, size_t utf8_len = 0) { const uint16_t *data = reinterpret_cast(buf); if (check_output && utf8_len == 0) { return full_result(error_code::OUTPUT_BUFFER_TOO_SMALL, 0, 0); } size_t pos = 0; char *start{utf8_output}; char *end{utf8_output + utf8_len}; while (pos < len) { // try to convert the next block of 8 bytes if (pos + 4 <= len) { // if it is safe to read 8 more bytes, check that they are ascii uint64_t v; ::memcpy(&v, data + pos, sizeof(uint64_t)); if (!match_system(big_endian)) v = (v >> 8) | (v << (64 - 8)); if ((v & 0xFF80FF80FF80FF80) == 0) { size_t final_pos = pos + 4; while (pos < final_pos) { *utf8_output++ = !match_system(big_endian) ? char(u16_swap_bytes(buf[pos])) : char(buf[pos]); pos++; if (check_output && size_t(end - utf8_output) == 0) { return full_result(error_code::OUTPUT_BUFFER_TOO_SMALL, pos, utf8_output - start); } } continue; } } uint16_t word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; if ((word & 0xFF80) == 0) { // will generate one UTF-8 bytes *utf8_output++ = char(word); pos++; if (check_output && size_t(end - utf8_output) == 0) { return full_result(error_code::OUTPUT_BUFFER_TOO_SMALL, pos, utf8_output - start); } } else if ((word & 0xF800) == 0) { // will generate two UTF-8 bytes // we have 0b110XXXXX 0b10XXXXXX if (check_output && size_t(end - utf8_output) < 2) { return full_result(error_code::OUTPUT_BUFFER_TOO_SMALL, pos, utf8_output - start); } *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else if ((word & 0xF800) != 0xD800) { // will generate three UTF-8 bytes // we have 0b1110XXXX 0b10XXXXXX 0b10XXXXXX if (check_output && size_t(end - utf8_output) < 3) { return full_result(error_code::OUTPUT_BUFFER_TOO_SMALL, pos, utf8_output - start); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); pos++; } else { if (check_output && size_t(end - utf8_output) < 4) { return full_result(error_code::OUTPUT_BUFFER_TOO_SMALL, pos, utf8_output - start); } // must be a surrogate pair if (pos + 1 >= len) { return full_result(error_code::SURROGATE, pos, utf8_output - start); } uint16_t diff = uint16_t(word - 0xD800); if (diff > 0x3FF) { return full_result(error_code::SURROGATE, pos, utf8_output - start); } uint16_t next_word = !match_system(big_endian) ? u16_swap_bytes(data[pos + 1]) : data[pos + 1]; uint16_t diff2 = uint16_t(next_word - 0xDC00); if (diff2 > 0x3FF) { return full_result(error_code::SURROGATE, pos, utf8_output - start); } uint32_t value = (diff << 10) + diff2 + 0x10000; // will generate four UTF-8 bytes // we have 0b11110XXX 0b10XXXXXX 0b10XXXXXX 0b10XXXXXX *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); pos += 2; } } return full_result(error_code::SUCCESS, pos, utf8_output - start); } template inline result simple_convert_with_errors(const char16_t *buf, size_t len, char *utf8_output) { return convert_with_errors(buf, len, utf8_output, 0); } } // namespace utf16_to_utf8 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf16_to_utf8/utf16_to_utf8.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/scalar/utf16_to_utf32/valid_utf16_to_utf32.h */ #ifndef SIMDUTF_VALID_UTF16_TO_UTF32_H #define SIMDUTF_VALID_UTF16_TO_UTF32_H namespace simdutf { namespace scalar { namespace { namespace utf16_to_utf32 { template inline size_t convert_valid(const char16_t *buf, size_t len, char32_t *utf32_output) { const uint16_t *data = reinterpret_cast(buf); size_t pos = 0; char32_t *start{utf32_output}; while (pos < len) { uint16_t word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; if ((word & 0xF800) != 0xD800) { // No surrogate pair, extend 16-bit word to 32-bit word *utf32_output++ = char32_t(word); pos++; } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); if (pos + 1 >= len) { return 0; } // minimal bound checking uint16_t next_word = !match_system(big_endian) ? u16_swap_bytes(data[pos + 1]) : data[pos + 1]; uint16_t diff2 = uint16_t(next_word - 0xDC00); uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); pos += 2; } } return utf32_output - start; } } // namespace utf16_to_utf32 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf16_to_utf32/valid_utf16_to_utf32.h */ /* begin file src/scalar/utf16_to_utf32/utf16_to_utf32.h */ #ifndef SIMDUTF_UTF16_TO_UTF32_H #define SIMDUTF_UTF16_TO_UTF32_H namespace simdutf { namespace scalar { namespace { namespace utf16_to_utf32 { template inline size_t convert(const char16_t *buf, size_t len, char32_t *utf32_output) { const uint16_t *data = reinterpret_cast(buf); size_t pos = 0; char32_t *start{utf32_output}; while (pos < len) { uint16_t word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; if ((word & 0xF800) != 0xD800) { // No surrogate pair, extend 16-bit word to 32-bit word *utf32_output++ = char32_t(word); pos++; } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); if (diff > 0x3FF) { return 0; } if (pos + 1 >= len) { return 0; } // minimal bound checking uint16_t next_word = !match_system(big_endian) ? u16_swap_bytes(data[pos + 1]) : data[pos + 1]; uint16_t diff2 = uint16_t(next_word - 0xDC00); if (diff2 > 0x3FF) { return 0; } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); pos += 2; } } return utf32_output - start; } template inline result convert_with_errors(const char16_t *buf, size_t len, char32_t *utf32_output) { const uint16_t *data = reinterpret_cast(buf); size_t pos = 0; char32_t *start{utf32_output}; while (pos < len) { uint16_t word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; if ((word & 0xF800) != 0xD800) { // No surrogate pair, extend 16-bit word to 32-bit word *utf32_output++ = char32_t(word); pos++; } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); if (diff > 0x3FF) { return result(error_code::SURROGATE, pos); } if (pos + 1 >= len) { return result(error_code::SURROGATE, pos); } // minimal bound checking uint16_t next_word = !match_system(big_endian) ? u16_swap_bytes(data[pos + 1]) : data[pos + 1]; uint16_t diff2 = uint16_t(next_word - 0xDC00); if (diff2 > 0x3FF) { return result(error_code::SURROGATE, pos); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); pos += 2; } } return result(error_code::SUCCESS, utf32_output - start); } } // namespace utf16_to_utf32 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf16_to_utf32/utf16_to_utf32.h */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && \ (SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_LATIN1) /* begin file src/scalar/utf8_to_utf16/valid_utf8_to_utf16.h */ #ifndef SIMDUTF_VALID_UTF8_TO_UTF16_H #define SIMDUTF_VALID_UTF8_TO_UTF16_H namespace simdutf { namespace scalar { namespace { namespace utf8_to_utf16 { template inline size_t convert_valid(const char *buf, size_t len, char16_t *utf16_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char16_t *start{utf16_output}; while (pos < len) { // try to convert the next block of 8 ASCII bytes if (pos + 8 <= len) { // if it is safe to read 8 more bytes, check that they are ascii uint64_t v; ::memcpy(&v, data + pos, sizeof(uint64_t)); if ((v & 0x8080808080808080) == 0) { size_t final_pos = pos + 8; while (pos < final_pos) { *utf16_output++ = !match_system(big_endian) ? char16_t(u16_swap_bytes(buf[pos])) : char16_t(buf[pos]); pos++; } continue; } } uint8_t leading_byte = data[pos]; // leading byte if (leading_byte < 0b10000000) { // converting one ASCII byte !!! *utf16_output++ = !match_system(big_endian) ? char16_t(u16_swap_bytes(leading_byte)) : char16_t(leading_byte); pos++; } else if ((leading_byte & 0b11100000) == 0b11000000) { // We have a two-byte UTF-8, it should become // a single UTF-16 word. if (pos + 1 >= len) { break; } // minimal bound checking uint16_t code_point = uint16_t(((leading_byte & 0b00011111) << 6) | (data[pos + 1] & 0b00111111)); if (!match_system(big_endian)) { code_point = u16_swap_bytes(uint16_t(code_point)); } *utf16_output++ = char16_t(code_point); pos += 2; } else if ((leading_byte & 0b11110000) == 0b11100000) { // We have a three-byte UTF-8, it should become // a single UTF-16 word. if (pos + 2 >= len) { break; } // minimal bound checking uint16_t code_point = uint16_t(((leading_byte & 0b00001111) << 12) | ((data[pos + 1] & 0b00111111) << 6) | (data[pos + 2] & 0b00111111)); if (!match_system(big_endian)) { code_point = u16_swap_bytes(uint16_t(code_point)); } *utf16_output++ = char16_t(code_point); pos += 3; } else if ((leading_byte & 0b11111000) == 0b11110000) { // 0b11110000 // we have a 4-byte UTF-8 word. if (pos + 3 >= len) { break; } // minimal bound checking uint32_t code_point = ((leading_byte & 0b00000111) << 18) | ((data[pos + 1] & 0b00111111) << 12) | ((data[pos + 2] & 0b00111111) << 6) | (data[pos + 3] & 0b00111111); code_point -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (code_point >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (code_point & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = u16_swap_bytes(high_surrogate); low_surrogate = u16_swap_bytes(low_surrogate); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); pos += 4; } else { // we may have a continuation but we do not do error checking return 0; } } return utf16_output - start; } } // namespace utf8_to_utf16 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf8_to_utf16/valid_utf8_to_utf16.h */ /* begin file src/scalar/utf8_to_utf16/utf8_to_utf16.h */ #ifndef SIMDUTF_UTF8_TO_UTF16_H #define SIMDUTF_UTF8_TO_UTF16_H namespace simdutf { namespace scalar { namespace { namespace utf8_to_utf16 { template inline size_t convert(const char *buf, size_t len, char16_t *utf16_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char16_t *start{utf16_output}; while (pos < len) { // try to convert the next block of 16 ASCII bytes if (pos + 16 <= len) { // if it is safe to read 16 more bytes, check that they are ascii uint64_t v1; ::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; ::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; if ((v & 0x8080808080808080) == 0) { size_t final_pos = pos + 16; while (pos < final_pos) { *utf16_output++ = !match_system(big_endian) ? char16_t(u16_swap_bytes(buf[pos])) : char16_t(buf[pos]); pos++; } continue; } } uint8_t leading_byte = data[pos]; // leading byte if (leading_byte < 0b10000000) { // converting one ASCII byte !!! *utf16_output++ = !match_system(big_endian) ? char16_t(u16_swap_bytes(leading_byte)) : char16_t(leading_byte); pos++; } else if ((leading_byte & 0b11100000) == 0b11000000) { // We have a two-byte UTF-8, it should become // a single UTF-16 word. if (pos + 1 >= len) { return 0; } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return 0; } // range check uint32_t code_point = (leading_byte & 0b00011111) << 6 | (data[pos + 1] & 0b00111111); if (code_point < 0x80 || 0x7ff < code_point) { return 0; } if (!match_system(big_endian)) { code_point = uint32_t(u16_swap_bytes(uint16_t(code_point))); } *utf16_output++ = char16_t(code_point); pos += 2; } else if ((leading_byte & 0b11110000) == 0b11100000) { // We have a three-byte UTF-8, it should become // a single UTF-16 word. if (pos + 2 >= len) { return 0; } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return 0; } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return 0; } // range check uint32_t code_point = (leading_byte & 0b00001111) << 12 | (data[pos + 1] & 0b00111111) << 6 | (data[pos + 2] & 0b00111111); if (code_point < 0x800 || 0xffff < code_point || (0xd7ff < code_point && code_point < 0xe000)) { return 0; } if (!match_system(big_endian)) { code_point = uint32_t(u16_swap_bytes(uint16_t(code_point))); } *utf16_output++ = char16_t(code_point); pos += 3; } else if ((leading_byte & 0b11111000) == 0b11110000) { // 0b11110000 // we have a 4-byte UTF-8 word. if (pos + 3 >= len) { return 0; } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return 0; } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return 0; } if ((data[pos + 3] & 0b11000000) != 0b10000000) { return 0; } // range check uint32_t code_point = (leading_byte & 0b00000111) << 18 | (data[pos + 1] & 0b00111111) << 12 | (data[pos + 2] & 0b00111111) << 6 | (data[pos + 3] & 0b00111111); if (code_point <= 0xffff || 0x10ffff < code_point) { return 0; } code_point -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (code_point >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (code_point & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = u16_swap_bytes(high_surrogate); low_surrogate = u16_swap_bytes(low_surrogate); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); pos += 4; } else { return 0; } } return utf16_output - start; } template inline result convert_with_errors(const char *buf, size_t len, char16_t *utf16_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char16_t *start{utf16_output}; while (pos < len) { // try to convert the next block of 16 ASCII bytes if (pos + 16 <= len) { // if it is safe to read 16 more bytes, check that they are ascii uint64_t v1; ::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; ::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; if ((v & 0x8080808080808080) == 0) { size_t final_pos = pos + 16; while (pos < final_pos) { *utf16_output++ = !match_system(big_endian) ? char16_t(u16_swap_bytes(buf[pos])) : char16_t(buf[pos]); pos++; } continue; } } uint8_t leading_byte = data[pos]; // leading byte if (leading_byte < 0b10000000) { // converting one ASCII byte !!! *utf16_output++ = !match_system(big_endian) ? char16_t(u16_swap_bytes(leading_byte)) : char16_t(leading_byte); pos++; } else if ((leading_byte & 0b11100000) == 0b11000000) { // We have a two-byte UTF-8, it should become // a single UTF-16 word. if (pos + 1 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } // range check uint32_t code_point = (leading_byte & 0b00011111) << 6 | (data[pos + 1] & 0b00111111); if (code_point < 0x80 || 0x7ff < code_point) { return result(error_code::OVERLONG, pos); } if (!match_system(big_endian)) { code_point = uint32_t(u16_swap_bytes(uint16_t(code_point))); } *utf16_output++ = char16_t(code_point); pos += 2; } else if ((leading_byte & 0b11110000) == 0b11100000) { // We have a three-byte UTF-8, it should become // a single UTF-16 word. if (pos + 2 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } // range check uint32_t code_point = (leading_byte & 0b00001111) << 12 | (data[pos + 1] & 0b00111111) << 6 | (data[pos + 2] & 0b00111111); if ((code_point < 0x800) || (0xffff < code_point)) { return result(error_code::OVERLONG, pos); } if (0xd7ff < code_point && code_point < 0xe000) { return result(error_code::SURROGATE, pos); } if (!match_system(big_endian)) { code_point = uint32_t(u16_swap_bytes(uint16_t(code_point))); } *utf16_output++ = char16_t(code_point); pos += 3; } else if ((leading_byte & 0b11111000) == 0b11110000) { // 0b11110000 // we have a 4-byte UTF-8 word. if (pos + 3 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 3] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } // range check uint32_t code_point = (leading_byte & 0b00000111) << 18 | (data[pos + 1] & 0b00111111) << 12 | (data[pos + 2] & 0b00111111) << 6 | (data[pos + 3] & 0b00111111); if (code_point <= 0xffff) { return result(error_code::OVERLONG, pos); } if (0x10ffff < code_point) { return result(error_code::TOO_LARGE, pos); } code_point -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (code_point >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (code_point & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = u16_swap_bytes(high_surrogate); low_surrogate = u16_swap_bytes(low_surrogate); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); pos += 4; } else { // we either have too many continuation bytes or an invalid leading byte if ((leading_byte & 0b11000000) == 0b10000000) { return result(error_code::TOO_LONG, pos); } else { return result(error_code::HEADER_BITS, pos); } } } return result(error_code::SUCCESS, utf16_output - start); } /** * When rewind_and_convert_with_errors is called, we are pointing at 'buf' and * we have up to len input bytes left, and we encountered some error. It is * possible that the error is at 'buf' exactly, but it could also be in the * previous bytes (up to 3 bytes back). * * prior_bytes indicates how many bytes, prior to 'buf' may belong to the * current memory section and can be safely accessed. We prior_bytes to access * safely up to three bytes before 'buf'. * * The caller is responsible to ensure that len > 0. * * If the error is believed to have occurred prior to 'buf', the count value * contain in the result will be SIZE_T - 1, SIZE_T - 2, or SIZE_T - 3. */ template inline result rewind_and_convert_with_errors(size_t prior_bytes, const char *buf, size_t len, char16_t *utf16_output) { size_t extra_len{0}; // We potentially need to go back in time and find a leading byte. // In theory '3' would be sufficient, but sometimes the error can go back // quite far. size_t how_far_back = prior_bytes; // size_t how_far_back = 3; // 3 bytes in the past + current position // if(how_far_back >= prior_bytes) { how_far_back = prior_bytes; } bool found_leading_bytes{false}; // important: it is i <= how_far_back and not 'i < how_far_back'. for (size_t i = 0; i <= how_far_back; i++) { unsigned char byte = buf[-static_cast(i)]; found_leading_bytes = ((byte & 0b11000000) != 0b10000000); if (found_leading_bytes) { if (i > 0 && byte < 128) { // If we had to go back and the leading byte is ascii // then we can stop right away. return result(error_code::TOO_LONG, 0 - i + 1); } buf -= i; extra_len = i; break; } } // // It is possible for this function to return a negative count in its result. // C++ Standard Section 18.1 defines size_t is in which is described // in C Standard as . C Standard Section 4.1.5 defines size_t as an // unsigned integral type of the result of the sizeof operator // // An unsigned type will simply wrap round arithmetically (well defined). // if (!found_leading_bytes) { // If how_far_back == 3, we may have four consecutive continuation bytes!!! // [....] [continuation] [continuation] [continuation] | [buf is // continuation] Or we possibly have a stream that does not start with a // leading byte. return result(error_code::TOO_LONG, 0 - how_far_back); } result res = convert_with_errors(buf, len + extra_len, utf16_output); if (res.error) { res.count -= extra_len; } return res; } } // namespace utf8_to_utf16 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf8_to_utf16/utf8_to_utf16.h */ #endif // SIMDUTF_FEATURE_UTF8 && (SIMDUTF_FEATURE_UTF16 || // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_LATIN1) #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_UTF32 /* begin file src/scalar/utf8_to_utf32/valid_utf8_to_utf32.h */ #ifndef SIMDUTF_VALID_UTF8_TO_UTF32_H #define SIMDUTF_VALID_UTF8_TO_UTF32_H namespace simdutf { namespace scalar { namespace { namespace utf8_to_utf32 { inline size_t convert_valid(const char *buf, size_t len, char32_t *utf32_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char32_t *start{utf32_output}; while (pos < len) { // try to convert the next block of 8 ASCII bytes if (pos + 8 <= len) { // if it is safe to read 8 more bytes, check that they are ascii uint64_t v; ::memcpy(&v, data + pos, sizeof(uint64_t)); if ((v & 0x8080808080808080) == 0) { size_t final_pos = pos + 8; while (pos < final_pos) { *utf32_output++ = char32_t(buf[pos]); pos++; } continue; } } uint8_t leading_byte = data[pos]; // leading byte if (leading_byte < 0b10000000) { // converting one ASCII byte !!! *utf32_output++ = char32_t(leading_byte); pos++; } else if ((leading_byte & 0b11100000) == 0b11000000) { // We have a two-byte UTF-8 if (pos + 1 >= len) { break; } // minimal bound checking *utf32_output++ = char32_t(((leading_byte & 0b00011111) << 6) | (data[pos + 1] & 0b00111111)); pos += 2; } else if ((leading_byte & 0b11110000) == 0b11100000) { // We have a three-byte UTF-8 if (pos + 2 >= len) { break; } // minimal bound checking *utf32_output++ = char32_t(((leading_byte & 0b00001111) << 12) | ((data[pos + 1] & 0b00111111) << 6) | (data[pos + 2] & 0b00111111)); pos += 3; } else if ((leading_byte & 0b11111000) == 0b11110000) { // 0b11110000 // we have a 4-byte UTF-8 word. if (pos + 3 >= len) { break; } // minimal bound checking uint32_t code_word = ((leading_byte & 0b00000111) << 18) | ((data[pos + 1] & 0b00111111) << 12) | ((data[pos + 2] & 0b00111111) << 6) | (data[pos + 3] & 0b00111111); *utf32_output++ = char32_t(code_word); pos += 4; } else { // we may have a continuation but we do not do error checking return 0; } } return utf32_output - start; } } // namespace utf8_to_utf32 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf8_to_utf32/valid_utf8_to_utf32.h */ /* begin file src/scalar/utf8_to_utf32/utf8_to_utf32.h */ #ifndef SIMDUTF_UTF8_TO_UTF32_H #define SIMDUTF_UTF8_TO_UTF32_H namespace simdutf { namespace scalar { namespace { namespace utf8_to_utf32 { inline size_t convert(const char *buf, size_t len, char32_t *utf32_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char32_t *start{utf32_output}; while (pos < len) { // try to convert the next block of 16 ASCII bytes if (pos + 16 <= len) { // if it is safe to read 16 more bytes, check that they are ascii uint64_t v1; ::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; ::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; if ((v & 0x8080808080808080) == 0) { size_t final_pos = pos + 16; while (pos < final_pos) { *utf32_output++ = char32_t(buf[pos]); pos++; } continue; } } uint8_t leading_byte = data[pos]; // leading byte if (leading_byte < 0b10000000) { // converting one ASCII byte !!! *utf32_output++ = char32_t(leading_byte); pos++; } else if ((leading_byte & 0b11100000) == 0b11000000) { // We have a two-byte UTF-8 if (pos + 1 >= len) { return 0; } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return 0; } // range check uint32_t code_point = (leading_byte & 0b00011111) << 6 | (data[pos + 1] & 0b00111111); if (code_point < 0x80 || 0x7ff < code_point) { return 0; } *utf32_output++ = char32_t(code_point); pos += 2; } else if ((leading_byte & 0b11110000) == 0b11100000) { // We have a three-byte UTF-8 if (pos + 2 >= len) { return 0; } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return 0; } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return 0; } // range check uint32_t code_point = (leading_byte & 0b00001111) << 12 | (data[pos + 1] & 0b00111111) << 6 | (data[pos + 2] & 0b00111111); if (code_point < 0x800 || 0xffff < code_point || (0xd7ff < code_point && code_point < 0xe000)) { return 0; } *utf32_output++ = char32_t(code_point); pos += 3; } else if ((leading_byte & 0b11111000) == 0b11110000) { // 0b11110000 // we have a 4-byte UTF-8 word. if (pos + 3 >= len) { return 0; } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return 0; } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return 0; } if ((data[pos + 3] & 0b11000000) != 0b10000000) { return 0; } // range check uint32_t code_point = (leading_byte & 0b00000111) << 18 | (data[pos + 1] & 0b00111111) << 12 | (data[pos + 2] & 0b00111111) << 6 | (data[pos + 3] & 0b00111111); if (code_point <= 0xffff || 0x10ffff < code_point) { return 0; } *utf32_output++ = char32_t(code_point); pos += 4; } else { return 0; } } return utf32_output - start; } inline result convert_with_errors(const char *buf, size_t len, char32_t *utf32_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char32_t *start{utf32_output}; while (pos < len) { // try to convert the next block of 16 ASCII bytes if (pos + 16 <= len) { // if it is safe to read 16 more bytes, check that they are ascii uint64_t v1; ::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; ::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; if ((v & 0x8080808080808080) == 0) { size_t final_pos = pos + 16; while (pos < final_pos) { *utf32_output++ = char32_t(buf[pos]); pos++; } continue; } } uint8_t leading_byte = data[pos]; // leading byte if (leading_byte < 0b10000000) { // converting one ASCII byte !!! *utf32_output++ = char32_t(leading_byte); pos++; } else if ((leading_byte & 0b11100000) == 0b11000000) { // We have a two-byte UTF-8 if (pos + 1 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } // range check uint32_t code_point = (leading_byte & 0b00011111) << 6 | (data[pos + 1] & 0b00111111); if (code_point < 0x80 || 0x7ff < code_point) { return result(error_code::OVERLONG, pos); } *utf32_output++ = char32_t(code_point); pos += 2; } else if ((leading_byte & 0b11110000) == 0b11100000) { // We have a three-byte UTF-8 if (pos + 2 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } // range check uint32_t code_point = (leading_byte & 0b00001111) << 12 | (data[pos + 1] & 0b00111111) << 6 | (data[pos + 2] & 0b00111111); if (code_point < 0x800 || 0xffff < code_point) { return result(error_code::OVERLONG, pos); } if (0xd7ff < code_point && code_point < 0xe000) { return result(error_code::SURROGATE, pos); } *utf32_output++ = char32_t(code_point); pos += 3; } else if ((leading_byte & 0b11111000) == 0b11110000) { // 0b11110000 // we have a 4-byte UTF-8 word. if (pos + 3 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 2] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } if ((data[pos + 3] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } // range check uint32_t code_point = (leading_byte & 0b00000111) << 18 | (data[pos + 1] & 0b00111111) << 12 | (data[pos + 2] & 0b00111111) << 6 | (data[pos + 3] & 0b00111111); if (code_point <= 0xffff) { return result(error_code::OVERLONG, pos); } if (0x10ffff < code_point) { return result(error_code::TOO_LARGE, pos); } *utf32_output++ = char32_t(code_point); pos += 4; } else { // we either have too many continuation bytes or an invalid leading byte if ((leading_byte & 0b11000000) == 0b10000000) { return result(error_code::TOO_LONG, pos); } else { return result(error_code::HEADER_BITS, pos); } } } return result(error_code::SUCCESS, utf32_output - start); } /** * When rewind_and_convert_with_errors is called, we are pointing at 'buf' and * we have up to len input bytes left, and we encountered some error. It is * possible that the error is at 'buf' exactly, but it could also be in the * previous bytes location (up to 3 bytes back). * * prior_bytes indicates how many bytes, prior to 'buf' may belong to the * current memory section and can be safely accessed. We prior_bytes to access * safely up to three bytes before 'buf'. * * The caller is responsible to ensure that len > 0. * * If the error is believed to have occurred prior to 'buf', the count value * contain in the result will be SIZE_T - 1, SIZE_T - 2, or SIZE_T - 3. */ inline result rewind_and_convert_with_errors(size_t prior_bytes, const char *buf, size_t len, char32_t *utf32_output) { size_t extra_len{0}; // We potentially need to go back in time and find a leading byte. size_t how_far_back = 3; // 3 bytes in the past + current position if (how_far_back > prior_bytes) { how_far_back = prior_bytes; } bool found_leading_bytes{false}; // important: it is i <= how_far_back and not 'i < how_far_back'. for (size_t i = 0; i <= how_far_back; i++) { unsigned char byte = buf[-static_cast(i)]; found_leading_bytes = ((byte & 0b11000000) != 0b10000000); if (found_leading_bytes) { if (i > 0 && byte < 128) { // If we had to go back and the leading byte is ascii // then we can stop right away. return result(error_code::TOO_LONG, 0 - i + 1); } buf -= i; extra_len = i; break; } } // // It is possible for this function to return a negative count in its result. // C++ Standard Section 18.1 defines size_t is in which is described // in C Standard as . C Standard Section 4.1.5 defines size_t as an // unsigned integral type of the result of the sizeof operator // // An unsigned type will simply wrap round arithmetically (well defined). // if (!found_leading_bytes) { // If how_far_back == 3, we may have four consecutive continuation bytes!!! // [....] [continuation] [continuation] [continuation] | [buf is // continuation] Or we possibly have a stream that does not start with a // leading byte. return result(error_code::TOO_LONG, 0 - how_far_back); } result res = convert_with_errors(buf, len + extra_len, utf32_output); if (res.error) { res.count -= extra_len; } return res; } } // namespace utf8_to_utf32 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf8_to_utf32/utf8_to_utf32.h */ #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/scalar/latin1_to_utf8/latin1_to_utf8.h */ #ifndef SIMDUTF_LATIN1_TO_UTF8_H #define SIMDUTF_LATIN1_TO_UTF8_H namespace simdutf { namespace scalar { namespace { namespace latin1_to_utf8 { inline size_t convert(const char *buf, size_t len, char *utf8_output) { const unsigned char *data = reinterpret_cast(buf); size_t pos = 0; size_t utf8_pos = 0; while (pos < len) { // try to convert the next block of 16 ASCII bytes if (pos + 16 <= len) { // if it is safe to read 16 more bytes, check that they are ascii uint64_t v1; ::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; ::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; // We are only interested in these bits: 1000 1000 1000 // 1000, so it makes sense to concatenate everything if ((v & 0x8080808080808080) == 0) { // if NONE of these are set, e.g. all of them are zero, then // everything is ASCII size_t final_pos = pos + 16; while (pos < final_pos) { utf8_output[utf8_pos++] = char(buf[pos]); pos++; } continue; } } unsigned char byte = data[pos]; if ((byte & 0x80) == 0) { // if ASCII // will generate one UTF-8 bytes utf8_output[utf8_pos++] = char(byte); pos++; } else { // will generate two UTF-8 bytes utf8_output[utf8_pos++] = char((byte >> 6) | 0b11000000); utf8_output[utf8_pos++] = char((byte & 0b111111) | 0b10000000); pos++; } } return utf8_pos; } inline size_t convert_safe(const char *buf, size_t len, char *utf8_output, size_t utf8_len) { const unsigned char *data = reinterpret_cast(buf); size_t pos = 0; size_t skip_pos = 0; size_t utf8_pos = 0; while (pos < len && utf8_pos < utf8_len) { // try to convert the next block of 16 ASCII bytes if (pos >= skip_pos && pos + 16 <= len && utf8_pos + 16 <= utf8_len) { // if it is safe to read 16 more bytes, // check that they are ascii uint64_t v1; ::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; ::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; // We are only interested in these bits: 1000 1000 1000 // 1000, so it makes sense to concatenate everything if ((v & 0x8080808080808080) == 0) { // if NONE of these are set, e.g. all of them are zero, then // everything is ASCII ::memcpy(utf8_output + utf8_pos, buf + pos, 16); utf8_pos += 16; pos += 16; } else { // At least one of the next 16 bytes are not ASCII, we will process them // one by one skip_pos = pos + 16; } } else { const auto byte = data[pos]; if ((byte & 0x80) == 0) { // if ASCII // will generate one UTF-8 bytes utf8_output[utf8_pos++] = char(byte); pos++; } else if (utf8_pos + 2 <= utf8_len) { // will generate two UTF-8 bytes utf8_output[utf8_pos++] = char((byte >> 6) | 0b11000000); utf8_output[utf8_pos++] = char((byte & 0b111111) | 0b10000000); pos++; } else { break; } } } return utf8_pos; } } // namespace latin1_to_utf8 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/latin1_to_utf8/latin1_to_utf8.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/scalar/latin1_to_utf16/latin1_to_utf16.h */ #ifndef SIMDUTF_LATIN1_TO_UTF16_H #define SIMDUTF_LATIN1_TO_UTF16_H namespace simdutf { namespace scalar { namespace { namespace latin1_to_utf16 { template inline size_t convert(const char *buf, size_t len, char16_t *utf16_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char16_t *start{utf16_output}; while (pos < len) { uint16_t word = uint16_t(data[pos]); // extend Latin-1 char to 16-bit Unicode code point *utf16_output++ = char16_t(match_system(big_endian) ? word : u16_swap_bytes(word)); pos++; } return utf16_output - start; } template inline result convert_with_errors(const char *buf, size_t len, char16_t *utf16_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char16_t *start{utf16_output}; while (pos < len) { uint16_t word = uint16_t(data[pos]); // extend Latin-1 char to 16-bit Unicode code point *utf16_output++ = char16_t(match_system(big_endian) ? word : u16_swap_bytes(word)); pos++; } return result(error_code::SUCCESS, utf16_output - start); } } // namespace latin1_to_utf16 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/latin1_to_utf16/latin1_to_utf16.h */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/scalar/latin1_to_utf32/latin1_to_utf32.h */ #ifndef SIMDUTF_LATIN1_TO_UTF32_H #define SIMDUTF_LATIN1_TO_UTF32_H namespace simdutf { namespace scalar { namespace { namespace latin1_to_utf32 { inline size_t convert(const char *buf, size_t len, char32_t *utf32_output) { const unsigned char *data = reinterpret_cast(buf); char32_t *start{utf32_output}; for (size_t i = 0; i < len; i++) { *utf32_output++ = (char32_t)data[i]; } return utf32_output - start; } } // namespace latin1_to_utf32 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/latin1_to_utf32/latin1_to_utf32.h */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/scalar/utf8_to_latin1/utf8_to_latin1.h */ #ifndef SIMDUTF_UTF8_TO_LATIN1_H #define SIMDUTF_UTF8_TO_LATIN1_H namespace simdutf { namespace scalar { namespace { namespace utf8_to_latin1 { inline size_t convert(const char *buf, size_t len, char *latin_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char *start{latin_output}; while (pos < len) { // try to convert the next block of 16 ASCII bytes if (pos + 16 <= len) { // if it is safe to read 16 more bytes, check that they are ascii uint64_t v1; ::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; ::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; // We are only interested in these bits: 1000 1000 // 1000 1000 .... etc if ((v & 0x8080808080808080) == 0) { // if NONE of these are set, e.g. all of them are zero, then // everything is ASCII size_t final_pos = pos + 16; while (pos < final_pos) { *latin_output++ = char(buf[pos]); pos++; } continue; } } // suppose it is not an all ASCII byte sequence uint8_t leading_byte = data[pos]; // leading byte if (leading_byte < 0b10000000) { // converting one ASCII byte !!! *latin_output++ = char(leading_byte); pos++; } else if ((leading_byte & 0b11100000) == 0b11000000) { // the first three bits indicate: // We have a two-byte UTF-8 if (pos + 1 >= len) { return 0; } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return 0; } // checks if the next byte is a valid continuation byte in UTF-8. A // valid continuation byte starts with 10. // range check - uint32_t code_point = (leading_byte & 0b00011111) << 6 | (data[pos + 1] & 0b00111111); // assembles the Unicode code point from the two bytes. // It does this by discarding the leading 110 and 10 // bits from the two bytes, shifting the remaining bits // of the first byte, and then combining the results // with a bitwise OR operation. if (code_point < 0x80 || 0xFF < code_point) { return 0; // We only care about the range 129-255 which is Non-ASCII // latin1 characters. A code_point beneath 0x80 is invalid as // it is already covered by bytes whose leading bit is zero. } *latin_output++ = char(code_point); pos += 2; } else { return 0; } } return latin_output - start; } inline result convert_with_errors(const char *buf, size_t len, char *latin_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char *start{latin_output}; while (pos < len) { // try to convert the next block of 16 ASCII bytes if (pos + 16 <= len) { // if it is safe to read 16 more bytes, check that they are ascii uint64_t v1; ::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; ::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; // We are only interested in these bits: 1000 1000 // 1000 1000...etc if ((v & 0x8080808080808080) == 0) { // if NONE of these are set, e.g. all of them are zero, then // everything is ASCII size_t final_pos = pos + 16; while (pos < final_pos) { *latin_output++ = char(buf[pos]); pos++; } continue; } } // suppose it is not an all ASCII byte sequence uint8_t leading_byte = data[pos]; // leading byte if (leading_byte < 0b10000000) { // converting one ASCII byte !!! *latin_output++ = char(leading_byte); pos++; } else if ((leading_byte & 0b11100000) == 0b11000000) { // the first three bits indicate: // We have a two-byte UTF-8 if (pos + 1 >= len) { return result(error_code::TOO_SHORT, pos); } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return result(error_code::TOO_SHORT, pos); } // checks if the next byte is a valid continuation byte in UTF-8. A // valid continuation byte starts with 10. // range check - uint32_t code_point = (leading_byte & 0b00011111) << 6 | (data[pos + 1] & 0b00111111); // assembles the Unicode code point from the two bytes. // It does this by discarding the leading 110 and 10 // bits from the two bytes, shifting the remaining bits // of the first byte, and then combining the results // with a bitwise OR operation. if (code_point < 0x80) { return result(error_code::OVERLONG, pos); } if (0xFF < code_point) { return result(error_code::TOO_LARGE, pos); } // We only care about the range 129-255 which is Non-ASCII latin1 // characters *latin_output++ = char(code_point); pos += 2; } else if ((leading_byte & 0b11110000) == 0b11100000) { // We have a three-byte UTF-8 return result(error_code::TOO_LARGE, pos); } else if ((leading_byte & 0b11111000) == 0b11110000) { // 0b11110000 // we have a 4-byte UTF-8 word. return result(error_code::TOO_LARGE, pos); } else { // we either have too many continuation bytes or an invalid leading byte if ((leading_byte & 0b11000000) == 0b10000000) { return result(error_code::TOO_LONG, pos); } return result(error_code::HEADER_BITS, pos); } } return result(error_code::SUCCESS, latin_output - start); } inline result rewind_and_convert_with_errors(size_t prior_bytes, const char *buf, size_t len, char *latin1_output) { size_t extra_len{0}; // We potentially need to go back in time and find a leading byte. // In theory '3' would be sufficient, but sometimes the error can go back // quite far. size_t how_far_back = prior_bytes; // size_t how_far_back = 3; // 3 bytes in the past + current position // if(how_far_back >= prior_bytes) { how_far_back = prior_bytes; } bool found_leading_bytes{false}; // important: it is i <= how_far_back and not 'i < how_far_back'. for (size_t i = 0; i <= how_far_back; i++) { unsigned char byte = buf[-static_cast(i)]; found_leading_bytes = ((byte & 0b11000000) != 0b10000000); if (found_leading_bytes) { if (i > 0 && byte < 128) { // If we had to go back and the leading byte is ascii // then we can stop right away. return result(error_code::TOO_LONG, 0 - i + 1); } buf -= i; extra_len = i; break; } } // // It is possible for this function to return a negative count in its result. // C++ Standard Section 18.1 defines size_t is in which is described // in C Standard as . C Standard Section 4.1.5 defines size_t as an // unsigned integral type of the result of the sizeof operator // // An unsigned type will simply wrap round arithmetically (well defined). // if (!found_leading_bytes) { // If how_far_back == 3, we may have four consecutive continuation bytes!!! // [....] [continuation] [continuation] [continuation] | [buf is // continuation] Or we possibly have a stream that does not start with a // leading byte. return result(error_code::TOO_LONG, 0 - how_far_back); } result res = convert_with_errors(buf, len + extra_len, latin1_output); if (res.error) { res.count -= extra_len; } return res; } } // namespace utf8_to_latin1 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf8_to_latin1/utf8_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/scalar/utf16_to_latin1/utf16_to_latin1.h */ #ifndef SIMDUTF_UTF16_TO_LATIN1_H #define SIMDUTF_UTF16_TO_LATIN1_H namespace simdutf { namespace scalar { namespace { namespace utf16_to_latin1 { #include // for std::memcpy template inline size_t convert(const char16_t *buf, size_t len, char *latin_output) { if (len == 0) { return 0; } const uint16_t *data = reinterpret_cast(buf); size_t pos = 0; char *current_write = latin_output; uint16_t word = 0; uint16_t too_large = 0; while (pos < len) { word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; too_large |= word; *current_write++ = char(word & 0xFF); pos++; } if ((too_large & 0xFF00) != 0) { return 0; } return current_write - latin_output; } template inline result convert_with_errors(const char16_t *buf, size_t len, char *latin_output) { if (len == 0) { return result(error_code::SUCCESS, 0); } const uint16_t *data = reinterpret_cast(buf); size_t pos = 0; char *start{latin_output}; uint16_t word; while (pos < len) { if (pos + 16 <= len) { // if it is safe to read 32 more bytes, check that // they are Latin1 uint64_t v1, v2, v3, v4; ::memcpy(&v1, data + pos, sizeof(uint64_t)); ::memcpy(&v2, data + pos + 4, sizeof(uint64_t)); ::memcpy(&v3, data + pos + 8, sizeof(uint64_t)); ::memcpy(&v4, data + pos + 12, sizeof(uint64_t)); if (!match_system(big_endian)) { v1 = (v1 >> 8) | (v1 << (64 - 8)); } if (!match_system(big_endian)) { v2 = (v2 >> 8) | (v2 << (64 - 8)); } if (!match_system(big_endian)) { v3 = (v3 >> 8) | (v3 << (64 - 8)); } if (!match_system(big_endian)) { v4 = (v4 >> 8) | (v4 << (64 - 8)); } if (((v1 | v2 | v3 | v4) & 0xFF00FF00FF00FF00) == 0) { size_t final_pos = pos + 16; while (pos < final_pos) { *latin_output++ = !match_system(big_endian) ? char(u16_swap_bytes(data[pos])) : char(data[pos]); pos++; } continue; } } word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; if ((word & 0xFF00) == 0) { *latin_output++ = char(word & 0xFF); pos++; } else { return result(error_code::TOO_LARGE, pos); } } return result(error_code::SUCCESS, latin_output - start); } } // namespace utf16_to_latin1 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf16_to_latin1/utf16_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/scalar/utf32_to_latin1/utf32_to_latin1.h */ #ifndef SIMDUTF_UTF32_TO_LATIN1_H #define SIMDUTF_UTF32_TO_LATIN1_H namespace simdutf { namespace scalar { namespace { namespace utf32_to_latin1 { inline size_t convert(const char32_t *buf, size_t len, char *latin1_output) { const uint32_t *data = reinterpret_cast(buf); char *start = latin1_output; uint32_t utf32_char; size_t pos = 0; uint32_t too_large = 0; while (pos < len) { utf32_char = (uint32_t)data[pos]; too_large |= utf32_char; *latin1_output++ = (char)(utf32_char & 0xFF); pos++; } if ((too_large & 0xFFFFFF00) != 0) { return 0; } return latin1_output - start; } inline result convert_with_errors(const char32_t *buf, size_t len, char *latin1_output) { const uint32_t *data = reinterpret_cast(buf); char *start{latin1_output}; size_t pos = 0; while (pos < len) { if (pos + 2 <= len) { // if it is safe to read 8 more bytes, check that they are Latin1 uint64_t v; ::memcpy(&v, data + pos, sizeof(uint64_t)); if ((v & 0xFFFFFF00FFFFFF00) == 0) { *latin1_output++ = char(buf[pos]); *latin1_output++ = char(buf[pos + 1]); pos += 2; continue; } } uint32_t utf32_char = data[pos]; if ((utf32_char & 0xFFFFFF00) == 0) { // Check if the character can be represented in Latin-1 *latin1_output++ = (char)(utf32_char & 0xFF); pos++; } else { return result(error_code::TOO_LARGE, pos); }; } return result(error_code::SUCCESS, latin1_output - start); } } // namespace utf32_to_latin1 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf32_to_latin1/utf32_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/scalar/utf8_to_latin1/valid_utf8_to_latin1.h */ #ifndef SIMDUTF_VALID_UTF8_TO_LATIN1_H #define SIMDUTF_VALID_UTF8_TO_LATIN1_H namespace simdutf { namespace scalar { namespace { namespace utf8_to_latin1 { inline size_t convert_valid(const char *buf, size_t len, char *latin_output) { const uint8_t *data = reinterpret_cast(buf); size_t pos = 0; char *start{latin_output}; while (pos < len) { // try to convert the next block of 16 ASCII bytes if (pos + 16 <= len) { // if it is safe to read 16 more bytes, check that they are ascii uint64_t v1; ::memcpy(&v1, data + pos, sizeof(uint64_t)); uint64_t v2; ::memcpy(&v2, data + pos + sizeof(uint64_t), sizeof(uint64_t)); uint64_t v{v1 | v2}; // We are only interested in these bits: 1000 1000 1000 // 1000, so it makes sense to concatenate everything if ((v & 0x8080808080808080) == 0) { // if NONE of these are set, e.g. all of them are zero, then // everything is ASCII size_t final_pos = pos + 16; while (pos < final_pos) { *latin_output++ = char(buf[pos]); pos++; } continue; } } // suppose it is not an all ASCII byte sequence uint8_t leading_byte = data[pos]; // leading byte if (leading_byte < 0b10000000) { // converting one ASCII byte !!! *latin_output++ = char(leading_byte); pos++; } else if ((leading_byte & 0b11100000) == 0b11000000) { // the first three bits indicate: // We have a two-byte UTF-8 if (pos + 1 >= len) { break; } // minimal bound checking if ((data[pos + 1] & 0b11000000) != 0b10000000) { return 0; } // checks if the next byte is a valid continuation byte in UTF-8. A // valid continuation byte starts with 10. // range check - uint32_t code_point = (leading_byte & 0b00011111) << 6 | (data[pos + 1] & 0b00111111); // assembles the Unicode code point from the two bytes. // It does this by discarding the leading 110 and 10 // bits from the two bytes, shifting the remaining bits // of the first byte, and then combining the results // with a bitwise OR operation. *latin_output++ = char(code_point); pos += 2; } else { // we may have a continuation but we do not do error checking return 0; } } return latin_output - start; } } // namespace utf8_to_latin1 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf8_to_latin1/valid_utf8_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/scalar/utf16_to_latin1/valid_utf16_to_latin1.h */ #ifndef SIMDUTF_VALID_UTF16_TO_LATIN1_H #define SIMDUTF_VALID_UTF16_TO_LATIN1_H namespace simdutf { namespace scalar { namespace { namespace utf16_to_latin1 { template inline size_t convert_valid(const char16_t *buf, size_t len, char *latin_output) { const uint16_t *data = reinterpret_cast(buf); size_t pos = 0; char *start{latin_output}; uint16_t word = 0; while (pos < len) { word = !match_system(big_endian) ? u16_swap_bytes(data[pos]) : data[pos]; *latin_output++ = char(word); pos++; } return latin_output - start; } } // namespace utf16_to_latin1 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf16_to_latin1/valid_utf16_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/scalar/utf32_to_latin1/valid_utf32_to_latin1.h */ #ifndef SIMDUTF_VALID_UTF32_TO_LATIN1_H #define SIMDUTF_VALID_UTF32_TO_LATIN1_H namespace simdutf { namespace scalar { namespace { namespace utf32_to_latin1 { inline size_t convert_valid(const char32_t *buf, size_t len, char *latin1_output) { const uint32_t *data = reinterpret_cast(buf); char *start = latin1_output; uint32_t utf32_char; size_t pos = 0; while (pos < len) { utf32_char = (uint32_t)data[pos]; if (pos + 2 <= len) { // if it is safe to read 8 more bytes, check that they are Latin1 uint64_t v; ::memcpy(&v, data + pos, sizeof(uint64_t)); if ((v & 0xFFFFFF00FFFFFF00) == 0) { *latin1_output++ = char(buf[pos]); *latin1_output++ = char(buf[pos + 1]); pos += 2; continue; } else { // output can not be represented in latin1 return 0; } } if ((utf32_char & 0xFFFFFF00) == 0) { *latin1_output++ = char(utf32_char); } else { // output can not be represented in latin1 return 0; } pos++; } return latin1_output - start; } } // namespace utf32_to_latin1 } // unnamed namespace } // namespace scalar } // namespace simdutf #endif /* end file src/scalar/utf32_to_latin1/valid_utf32_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/implementation.cpp */ #include #include #include #if SIMDUTF_ATOMIC_REF /* begin file src/scalar/atomic_util.h */ #ifndef SIMDUTF_ATOMIC_UTIL_H #define SIMDUTF_ATOMIC_UTIL_H #if SIMDUTF_ATOMIC_REF #include namespace simdutf { namespace scalar { // This function is a memcpy that uses atomic operations to read from the // source. inline void memcpy_atomic_read(char *dst, const char *src, size_t len) { static_assert(std::atomic_ref::required_alignment == sizeof(char), "std::atomic_ref requires the same alignment as char_type"); // We expect all 64-bit systems to be able to read 64-bit words from an // aligned memory region atomically. You might be able to do better on // specific systems, e.g., x64 systems can read 128-bit words atomically. constexpr size_t alignment = sizeof(uint64_t); // Lambda for atomic byte-by-byte copy auto bbb_memcpy_atomic_read = [](char *bytedst, const char *bytesrc, size_t bytelen) noexcept { char *mutable_src = const_cast(bytesrc); for (size_t j = 0; j < bytelen; ++j) { bytedst[j] = std::atomic_ref(mutable_src[j]).load(std::memory_order_relaxed); } }; // Handle unaligned start size_t offset = reinterpret_cast(src) % alignment; if (offset) { size_t to_align = std::min(len, alignment - offset); bbb_memcpy_atomic_read(dst, src, to_align); src += to_align; dst += to_align; len -= to_align; } // Process aligned 64-bit chunks while (len >= alignment) { auto *src_aligned = reinterpret_cast(const_cast(src)); const auto dst_value = std::atomic_ref(*src_aligned).load(std::memory_order_relaxed); std::memcpy(dst, &dst_value, sizeof(uint64_t)); src += alignment; dst += alignment; len -= alignment; } // Handle remaining bytes if (len) { bbb_memcpy_atomic_read(dst, src, len); } } // This function is a memcpy that uses atomic operations to write to the // destination. inline void memcpy_atomic_write(char *dst, const char *src, size_t len) { static_assert(std::atomic_ref::required_alignment == sizeof(char), "std::atomic_ref requires the same alignment as char"); // We expect all 64-bit systems to be able to write 64-bit words to an aligned // memory region atomically. // You might be able to do better on specific systems, e.g., x64 systems can // write 128-bit words atomically. constexpr size_t alignment = sizeof(uint64_t); // Lambda for atomic byte-by-byte write auto bbb_memcpy_atomic_write = [](char *bytedst, const char *bytesrc, size_t bytelen) noexcept { for (size_t j = 0; j < bytelen; ++j) { std::atomic_ref(bytedst[j]) .store(bytesrc[j], std::memory_order_relaxed); } }; // Handle unaligned start size_t offset = reinterpret_cast(dst) % alignment; if (offset) { size_t to_align = std::min(len, alignment - offset); bbb_memcpy_atomic_write(dst, src, to_align); dst += to_align; src += to_align; len -= to_align; } // Process aligned 64-bit chunks while (len >= alignment) { auto *dst_aligned = reinterpret_cast(dst); uint64_t src_val; std::memcpy(&src_val, src, sizeof(uint64_t)); // Non-atomic read from src std::atomic_ref(*dst_aligned) .store(src_val, std::memory_order_relaxed); dst += alignment; src += alignment; len -= alignment; } // Handle remaining bytes if (len) { bbb_memcpy_atomic_write(dst, src, len); } } } // namespace scalar } // namespace simdutf #endif // SIMDUTF_ATOMIC_REF #endif // SIMDUTF_ATOMIC_UTIL_H /* end file src/scalar/atomic_util.h */ #endif static_assert(sizeof(uint8_t) == sizeof(char), "simdutf requires that uint8_t be a char"); static_assert(sizeof(uint16_t) == sizeof(char16_t), "simdutf requires that char16_t be 16 bits"); static_assert(sizeof(uint32_t) == sizeof(char32_t), "simdutf requires that char32_t be 32 bits"); // next line is redundant, but it is kept to catch defective systems. static_assert(CHAR_BIT == 8, "simdutf requires 8-bit bytes"); // Useful for debugging purposes namespace simdutf { namespace { template std::string toBinaryString(T b) { std::string binary = ""; T mask = T(1) << (sizeof(T) * CHAR_BIT - 1); while (mask > 0) { binary += ((b & mask) == 0) ? '0' : '1'; mask >>= 1; } return binary; } } // namespace } // namespace simdutf namespace simdutf { bool implementation::supported_by_runtime_system() const { uint32_t required_instruction_sets = this->required_instruction_sets(); uint32_t supported_instruction_sets = internal::detect_supported_architectures(); return ((supported_instruction_sets & required_instruction_sets) == required_instruction_sets); } #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused encoding_type implementation::autodetect_encoding( const char *input, size_t length) const noexcept { // If there is a BOM, then we trust it. auto bom_encoding = simdutf::BOM::check_bom(input, length); if (bom_encoding != encoding_type::unspecified) { return bom_encoding; } // UTF8 is common, it includes ASCII, and is commonly represented // without a BOM, so if it fits, go with that. Note that it is still // possible to get it wrong, we are only 'guessing'. If some has UTF-16 // data without a BOM, it could pass as UTF-8. // // An interesting twist might be to check for UTF-16 ASCII first (every // other byte is zero). if (validate_utf8(input, length)) { return encoding_type::UTF8; } // The next most common encoding that might appear without BOM is probably // UTF-16LE, so try that next. if ((length % 2) == 0) { // important: we need to divide by two if (validate_utf16le(reinterpret_cast(input), length / 2)) { return encoding_type::UTF16_LE; } } if ((length % 4) == 0) { if (validate_utf32(reinterpret_cast(input), length / 4)) { return encoding_type::UTF32_LE; } } return encoding_type::unspecified; } #ifdef SIMDUTF_INTERNAL_TESTS std::vector implementation::internal_tests() const { return {}; } #endif #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused size_t implementation::maximal_binary_length_from_base64( const char *input, size_t length) const noexcept { return scalar::base64::maximal_binary_length_from_base64(input, length); } simdutf_warn_unused size_t implementation::maximal_binary_length_from_base64( const char16_t *input, size_t length) const noexcept { return scalar::base64::maximal_binary_length_from_base64(input, length); } simdutf_warn_unused size_t implementation::base64_length_from_binary( size_t length, base64_options options) const noexcept { return scalar::base64::base64_length_from_binary(length, options); } #endif // SIMDUTF_FEATURE_BASE64 namespace internal { // When there is a single implementation, we should not pay a price // for dispatching to the best implementation. We should just use the // one we have. This is a compile-time check. #define SIMDUTF_SINGLE_IMPLEMENTATION \ (SIMDUTF_IMPLEMENTATION_ICELAKE + SIMDUTF_IMPLEMENTATION_HASWELL + \ SIMDUTF_IMPLEMENTATION_WESTMERE + SIMDUTF_IMPLEMENTATION_ARM64 + \ SIMDUTF_IMPLEMENTATION_PPC64 + SIMDUTF_IMPLEMENTATION_LSX + \ SIMDUTF_IMPLEMENTATION_LASX + SIMDUTF_IMPLEMENTATION_FALLBACK == \ 1) // Static array of known implementations. We are hoping these get baked into the // executable without requiring a static initializer. #if SIMDUTF_IMPLEMENTATION_ICELAKE static const icelake::implementation *get_icelake_singleton() { static const icelake::implementation icelake_singleton{}; return &icelake_singleton; } #endif #if SIMDUTF_IMPLEMENTATION_HASWELL static const haswell::implementation *get_haswell_singleton() { static const haswell::implementation haswell_singleton{}; return &haswell_singleton; } #endif #if SIMDUTF_IMPLEMENTATION_WESTMERE static const westmere::implementation *get_westmere_singleton() { static const westmere::implementation westmere_singleton{}; return &westmere_singleton; } #endif #if SIMDUTF_IMPLEMENTATION_ARM64 static const arm64::implementation *get_arm64_singleton() { static const arm64::implementation arm64_singleton{}; return &arm64_singleton; } #endif #if SIMDUTF_IMPLEMENTATION_PPC64 static const ppc64::implementation *get_ppc64_singleton() { static const ppc64::implementation ppc64_singleton{}; return &ppc64_singleton; } #endif #if SIMDUTF_IMPLEMENTATION_RVV static const rvv::implementation *get_rvv_singleton() { static const rvv::implementation rvv_singleton{}; return &rvv_singleton; } #endif #if SIMDUTF_IMPLEMENTATION_LSX static const lsx::implementation *get_lsx_singleton() { static const lsx::implementation lsx_singleton{}; return &lsx_singleton; } #endif #if SIMDUTF_IMPLEMENTATION_LASX static const lasx::implementation *get_lasx_singleton() { static const lasx::implementation lasx_singleton{}; return &lasx_singleton; } #endif #if SIMDUTF_IMPLEMENTATION_FALLBACK static const fallback::implementation *get_fallback_singleton() { static const fallback::implementation fallback_singleton{}; return &fallback_singleton; } #endif #if SIMDUTF_SINGLE_IMPLEMENTATION static const implementation *get_single_implementation() { return #if SIMDUTF_IMPLEMENTATION_ICELAKE get_icelake_singleton(); #endif #if SIMDUTF_IMPLEMENTATION_HASWELL get_haswell_singleton(); #endif #if SIMDUTF_IMPLEMENTATION_WESTMERE get_westmere_singleton(); #endif #if SIMDUTF_IMPLEMENTATION_ARM64 get_arm64_singleton(); #endif #if SIMDUTF_IMPLEMENTATION_PPC64 get_ppc64_singleton(); #endif #if SIMDUTF_IMPLEMENTATION_LSX get_lsx_singleton(); #endif #if SIMDUTF_IMPLEMENTATION_LASX get_lasx_singleton(); #endif #if SIMDUTF_IMPLEMENTATION_FALLBACK get_fallback_singleton(); #endif } #endif /** * @private Detects best supported implementation on first use, and sets it */ class detect_best_supported_implementation_on_first_use final : public implementation { public: std::string name() const noexcept final { return set_best()->name(); } std::string description() const noexcept final { return set_best()->description(); } uint32_t required_instruction_sets() const noexcept final { return set_best()->required_instruction_sets(); } #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *input, size_t length) const noexcept override { return set_best()->detect_encodings(input, length); } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) const noexcept final override { return set_best()->validate_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors( const char *buf, size_t len) const noexcept final override { return set_best()->validate_utf8_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) const noexcept final override { return set_best()->validate_ascii(buf, len); } simdutf_warn_unused result validate_ascii_with_errors( const char *buf, size_t len) const noexcept final override { return set_best()->validate_ascii_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept final override { return set_best()->validate_utf16le_as_ascii(buf, len); } simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept final override { return set_best()->validate_utf16be_as_ascii(buf, len); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) const noexcept final override { return set_best()->validate_utf16le(buf, len); } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) const noexcept final override { return set_best()->validate_utf16be(buf, len); } simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept final override { return set_best()->validate_utf16le_with_errors(buf, len); } simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept final override { return set_best()->validate_utf16be_with_errors(buf, len); } void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept final override { return set_best()->to_well_formed_utf16be(input, len, output); } void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept final override { return set_best()->to_well_formed_utf16le(input, len, output); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) const noexcept final override { return set_best()->validate_utf32(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept final override { return set_best()->validate_utf32_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8(const char *buf, size_t len, char *utf8_output) const noexcept final override { return set_best()->convert_latin1_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_latin1_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_latin1_to_utf16be(buf, len, utf16_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *latin1_output) const noexcept final override { return set_best()->convert_latin1_to_utf32(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1(const char *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_utf8_to_latin1(buf, len, latin1_output); } simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_utf8_to_latin1_with_errors(buf, len, latin1_output); } simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_valid_utf8_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_utf8_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_utf8_to_utf16be(buf, len, utf16_output); } simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_utf8_to_utf16le_with_errors(buf, len, utf16_output); } simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_utf8_to_utf16be_with_errors(buf, len, utf16_output); } simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_valid_utf8_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_valid_utf8_to_utf16be(buf, len, utf16_output); } simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept final override { return set_best()->utf8_length_from_utf16le_with_replacement(input, length); } simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept final override { return set_best()->utf8_length_from_utf16be_with_replacement(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32(const char *buf, size_t len, char32_t *utf32_output) const noexcept final override { return set_best()->convert_utf8_to_utf32(buf, len, utf32_output); } simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept final override { return set_best()->convert_utf8_to_utf32_with_errors(buf, len, utf32_output); } simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept final override { return set_best()->convert_valid_utf8_to_utf32(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1(const char16_t *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_utf16le_to_latin1(buf, len, latin1_output); } simdutf_warn_unused size_t convert_utf16be_to_latin1(const char16_t *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_utf16be_to_latin1(buf, len, latin1_output); } simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_utf16le_to_latin1_with_errors(buf, len, latin1_output); } simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_utf16be_to_latin1_with_errors(buf, len, latin1_output); } simdutf_warn_unused size_t convert_valid_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_valid_utf16le_to_latin1(buf, len, latin1_output); } simdutf_warn_unused size_t convert_valid_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_valid_utf16be_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8(const char16_t *buf, size_t len, char *utf8_output) const noexcept final override { return set_best()->convert_utf16le_to_utf8(buf, len, utf8_output); } simdutf_warn_unused size_t convert_utf16be_to_utf8(const char16_t *buf, size_t len, char *utf8_output) const noexcept final override { return set_best()->convert_utf16be_to_utf8(buf, len, utf8_output); } simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept final override { return set_best()->convert_utf16le_to_utf8_with_errors(buf, len, utf8_output); } simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept final override { return set_best()->convert_utf16be_to_utf8_with_errors(buf, len, utf8_output); } simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept final override { return set_best()->convert_valid_utf16le_to_utf8(buf, len, utf8_output); } simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept final override { return set_best()->convert_valid_utf16be_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_utf32_to_latin1(buf, len, latin1_output); } simdutf_warn_unused result convert_utf32_to_latin1_with_errors( const char32_t *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_utf32_to_latin1_with_errors(buf, len, latin1_output); } simdutf_warn_unused size_t convert_valid_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept final override { return set_best()->convert_utf32_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_output) const noexcept final override { return set_best()->convert_utf32_to_utf8(buf, len, utf8_output); } simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_output) const noexcept final override { return set_best()->convert_utf32_to_utf8_with_errors(buf, len, utf8_output); } simdutf_warn_unused size_t convert_valid_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_output) const noexcept final override { return set_best()->convert_valid_utf32_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_utf32_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t convert_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_utf32_to_utf16be(buf, len, utf16_output); } simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_utf32_to_utf16le_with_errors(buf, len, utf16_output); } simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_utf32_to_utf16be_with_errors(buf, len, utf16_output); } simdutf_warn_unused size_t convert_valid_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_valid_utf32_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t convert_valid_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept final override { return set_best()->convert_valid_utf32_to_utf16be(buf, len, utf16_output); } simdutf_warn_unused size_t convert_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept final override { return set_best()->convert_utf16le_to_utf32(buf, len, utf32_output); } simdutf_warn_unused size_t convert_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept final override { return set_best()->convert_utf16be_to_utf32(buf, len, utf32_output); } simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept final override { return set_best()->convert_utf16le_to_utf32_with_errors(buf, len, utf32_output); } simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept final override { return set_best()->convert_utf16be_to_utf32_with_errors(buf, len, utf32_output); } simdutf_warn_unused size_t convert_valid_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept final override { return set_best()->convert_valid_utf16le_to_utf32(buf, len, utf32_output); } simdutf_warn_unused size_t convert_valid_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept final override { return set_best()->convert_valid_utf16be_to_utf32(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *buf, size_t len, char16_t *output) const noexcept final override { set_best()->change_endianness_utf16(buf, len, output); } simdutf_warn_unused size_t count_utf16le(const char16_t *buf, size_t len) const noexcept final override { return set_best()->count_utf16le(buf, len); } simdutf_warn_unused size_t count_utf16be(const char16_t *buf, size_t len) const noexcept final override { return set_best()->count_utf16be(buf, len); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *buf, size_t len) const noexcept final override { return set_best()->count_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *buf, size_t len) const noexcept override { return set_best()->latin1_length_from_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *buf, size_t len) const noexcept override { return set_best()->utf8_length_from_latin1(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le( const char16_t *buf, size_t len) const noexcept override { return set_best()->utf8_length_from_utf16le(buf, len); } simdutf_warn_unused size_t utf8_length_from_utf16be( const char16_t *buf, size_t len) const noexcept override { return set_best()->utf8_length_from_utf16be(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le( const char16_t *buf, size_t len) const noexcept override { return set_best()->utf32_length_from_utf16le(buf, len); } simdutf_warn_unused size_t utf32_length_from_utf16be( const char16_t *buf, size_t len) const noexcept override { return set_best()->utf32_length_from_utf16be(buf, len); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *buf, size_t len) const noexcept override { return set_best()->utf16_length_from_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32( const char32_t *buf, size_t len) const noexcept override { return set_best()->utf8_length_from_utf32(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32( const char32_t *buf, size_t len) const noexcept override { return set_best()->utf16_length_from_utf32(buf, len); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *buf, size_t len) const noexcept override { return set_best()->utf32_length_from_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_handling_options = last_chunk_handling_options::loose) const noexcept override { return set_best()->base64_to_binary(input, length, output, options, last_chunk_handling_options); } simdutf_warn_unused full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_handling_options = last_chunk_handling_options::loose) const noexcept override { return set_best()->base64_to_binary_details(input, length, output, options, last_chunk_handling_options); } simdutf_warn_unused result base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_handling_options = last_chunk_handling_options::loose) const noexcept override { return set_best()->base64_to_binary(input, length, output, options, last_chunk_handling_options); } simdutf_warn_unused full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_handling_options = last_chunk_handling_options::loose) const noexcept override { return set_best()->base64_to_binary_details(input, length, output, options, last_chunk_handling_options); } size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept override { return set_best()->binary_to_base64(input, length, output, options); } size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept override { return set_best()->binary_to_base64_with_lines(input, length, output, line_length, options); } const char *find(const char *start, const char *end, char character) const noexcept override { return set_best()->find(start, end, character); } const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept override { return set_best()->find(start, end, character); } #endif // SIMDUTF_FEATURE_BASE64 simdutf_really_inline detect_best_supported_implementation_on_first_use() noexcept : implementation("best_supported_detector", "Detects the best supported implementation and sets it", 0) {} private: const implementation *set_best() const noexcept; }; static_assert(std::is_trivially_destructible< detect_best_supported_implementation_on_first_use>::value, "detect_best_supported_implementation_on_first_use should be " "trivially destructible"); static const std::initializer_list & get_available_implementation_pointers() { static const std::initializer_list available_implementation_pointers{ #if SIMDUTF_IMPLEMENTATION_ICELAKE get_icelake_singleton(), #endif #if SIMDUTF_IMPLEMENTATION_HASWELL get_haswell_singleton(), #endif #if SIMDUTF_IMPLEMENTATION_WESTMERE get_westmere_singleton(), #endif #if SIMDUTF_IMPLEMENTATION_ARM64 get_arm64_singleton(), #endif #if SIMDUTF_IMPLEMENTATION_PPC64 get_ppc64_singleton(), #endif #if SIMDUTF_IMPLEMENTATION_RVV get_rvv_singleton(), #endif #if SIMDUTF_IMPLEMENTATION_LSX get_lsx_singleton(), #endif #if SIMDUTF_IMPLEMENTATION_LASX get_lasx_singleton(), #endif #if SIMDUTF_IMPLEMENTATION_FALLBACK get_fallback_singleton(), #endif }; // available_implementation_pointers return available_implementation_pointers; } // So we can return UNSUPPORTED_ARCHITECTURE from the parser when there is no // support class unsupported_implementation final : public implementation { public: #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int detect_encodings(const char *, size_t) const noexcept override { return encoding_type::unspecified; } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf8(const char *, size_t) const noexcept final override { return false; // Just refuse to validate. Given that we have a fallback // implementation // it seems unlikely that unsupported_implementation will ever be used. If // it is used, then it will flag all strings as invalid. The alternative is // to return an error_code from which the user has to figure out whether the // string is valid UTF-8... which seems like a lot of work just to handle // the very unlikely case that we have an unsupported implementation. And, // when it does happen (that we have an unsupported implementation), what // are the chances that the programmer has a fallback? Given that *we* // provide the fallback, it implies that the programmer would need a // fallback for our fallback. } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result validate_utf8_with_errors( const char *, size_t) const noexcept final override { return result(error_code::OTHER, 0); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *, size_t) const noexcept final override { return false; } simdutf_warn_unused result validate_ascii_with_errors( const char *, size_t) const noexcept final override { return result(error_code::OTHER, 0); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *, size_t) const noexcept final override { return false; } simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *, size_t) const noexcept final override { return false; } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *, size_t) const noexcept final override { return false; } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *, size_t) const noexcept final override { return false; } simdutf_warn_unused result validate_utf16le_with_errors( const char16_t *, size_t) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused result validate_utf16be_with_errors( const char16_t *, size_t) const noexcept final override { return result(error_code::OTHER, 0); } void to_well_formed_utf16be(const char16_t *, size_t, char16_t *) const noexcept final override {} void to_well_formed_utf16le(const char16_t *, size_t, char16_t *) const noexcept final override {} #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf32(const char32_t *, size_t) const noexcept final override { return false; } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result validate_utf32_with_errors( const char32_t *, size_t) const noexcept final override { return result(error_code::OTHER, 0); } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8( const char *, size_t, char *) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *, size_t, char16_t *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *, size_t, char16_t *) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *, size_t, char32_t *) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *, size_t, char *) const noexcept final override { return 0; } simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *, size_t, char *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *, size_t, char *) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *, size_t, char16_t *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *, size_t, char16_t *) const noexcept final override { return 0; } simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *, size_t, char16_t *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *, size_t, char16_t *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *, size_t, char16_t *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *, size_t, char16_t *) const noexcept final override { return 0; } simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *, size_t) const noexcept final override { return {OTHER, 0}; // Not supported } simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *, size_t) const noexcept final override { return {OTHER, 0}; // Not supported } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *, size_t, char32_t *) const noexcept final override { return 0; } simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *, size_t, char32_t *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *, size_t, char32_t *) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16le_to_latin1( const char16_t *, size_t, char *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_utf16be_to_latin1( const char16_t *, size_t, char *) const noexcept final override { return 0; } simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *, size_t, char *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *, size_t, char *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused size_t convert_valid_utf16le_to_latin1( const char16_t *, size_t, char *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_valid_utf16be_to_latin1( const char16_t *, size_t, char *) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8( const char16_t *, size_t, char *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_utf16be_to_utf8( const char16_t *, size_t, char *) const noexcept final override { return 0; } simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *, size_t, char *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *, size_t, char *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *, size_t, char *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *, size_t, char *) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1( const char32_t *, size_t, char *) const noexcept final override { return 0; } simdutf_warn_unused result convert_utf32_to_latin1_with_errors( const char32_t *, size_t, char *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused size_t convert_valid_utf32_to_latin1( const char32_t *, size_t, char *) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8( const char32_t *, size_t, char *) const noexcept final override { return 0; } simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *, size_t, char *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *, size_t, char *) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le( const char32_t *, size_t, char16_t *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_utf32_to_utf16be( const char32_t *, size_t, char16_t *) const noexcept final override { return 0; } simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *, size_t, char16_t *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *, size_t, char16_t *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused size_t convert_valid_utf32_to_utf16le( const char32_t *, size_t, char16_t *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_valid_utf32_to_utf16be( const char32_t *, size_t, char16_t *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_utf16le_to_utf32( const char16_t *, size_t, char32_t *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_utf16be_to_utf32( const char16_t *, size_t, char32_t *) const noexcept final override { return 0; } simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *, size_t, char32_t *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *, size_t, char32_t *) const noexcept final override { return result(error_code::OTHER, 0); } simdutf_warn_unused size_t convert_valid_utf16le_to_utf32( const char16_t *, size_t, char32_t *) const noexcept final override { return 0; } simdutf_warn_unused size_t convert_valid_utf16be_to_utf32( const char16_t *, size_t, char32_t *) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *, size_t, char16_t *) const noexcept final override {} simdutf_warn_unused size_t count_utf16le(const char16_t *, size_t) const noexcept final override { return 0; } simdutf_warn_unused size_t count_utf16be(const char16_t *, size_t) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t count_utf8(const char *, size_t) const noexcept final override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *, size_t) const noexcept override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *, size_t) const noexcept override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *, size_t) const noexcept override { return 0; } simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *, size_t) const noexcept override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16le(const char16_t *, size_t) const noexcept override { return 0; } simdutf_warn_unused size_t utf32_length_from_utf16be(const char16_t *, size_t) const noexcept override { return 0; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *, size_t) const noexcept override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *, size_t) const noexcept override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *, size_t) const noexcept override { return 0; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *, size_t) const noexcept override { return 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary(const char *, size_t, char *, base64_options, last_chunk_handling_options) const noexcept override { return result(error_code::OTHER, 0); } simdutf_warn_unused full_result base64_to_binary_details( const char *, size_t, char *, base64_options, last_chunk_handling_options) const noexcept override { return full_result(error_code::OTHER, 0, 0); } simdutf_warn_unused result base64_to_binary(const char16_t *, size_t, char *, base64_options, last_chunk_handling_options) const noexcept override { return result(error_code::OTHER, 0); } simdutf_warn_unused full_result base64_to_binary_details( const char16_t *, size_t, char *, base64_options, last_chunk_handling_options) const noexcept override { return full_result(error_code::OTHER, 0, 0); } size_t binary_to_base64(const char *, size_t, char *, base64_options) const noexcept override { return 0; } size_t binary_to_base64_with_lines(const char *, size_t, char *, size_t, base64_options) const noexcept override { return 0; } const char *find(const char *, const char *, char) const noexcept override { return nullptr; } const char16_t *find(const char16_t *, const char16_t *, char16_t) const noexcept override { return nullptr; } #endif // SIMDUTF_FEATURE_BASE64 unsupported_implementation() : implementation("unsupported", "Unsupported CPU (no detected SIMD instructions)", 0) {} }; const unsupported_implementation *get_unsupported_singleton() { static const unsupported_implementation unsupported_singleton{}; return &unsupported_singleton; } static_assert(std::is_trivially_destructible::value, "unsupported_singleton should be trivially destructible"); size_t available_implementation_list::size() const noexcept { return internal::get_available_implementation_pointers().size(); } const implementation *const * available_implementation_list::begin() const noexcept { return internal::get_available_implementation_pointers().begin(); } const implementation *const * available_implementation_list::end() const noexcept { return internal::get_available_implementation_pointers().end(); } const implementation * available_implementation_list::detect_best_supported() const noexcept { // They are prelisted in priority order, so we just go down the list uint32_t supported_instruction_sets = internal::detect_supported_architectures(); for (const implementation *impl : internal::get_available_implementation_pointers()) { uint32_t required_instruction_sets = impl->required_instruction_sets(); if ((supported_instruction_sets & required_instruction_sets) == required_instruction_sets) { return impl; } } return get_unsupported_singleton(); // this should never happen? } const implementation * detect_best_supported_implementation_on_first_use::set_best() const noexcept { SIMDUTF_PUSH_DISABLE_WARNINGS SIMDUTF_DISABLE_DEPRECATED_WARNING // Disable CRT_SECURE warning on MSVC: // manually verified this is safe char *force_implementation_name = getenv("SIMDUTF_FORCE_IMPLEMENTATION"); SIMDUTF_POP_DISABLE_WARNINGS if (force_implementation_name) { auto force_implementation = get_available_implementations()[force_implementation_name]; if (force_implementation) { return get_active_implementation() = force_implementation; } else { // Note: abort() and stderr usage within the library is forbidden. return get_active_implementation() = get_unsupported_singleton(); } } return get_active_implementation() = get_available_implementations().detect_best_supported(); } } // namespace internal /** * The list of available implementations compiled into simdutf. */ SIMDUTF_DLLIMPORTEXPORT const internal::available_implementation_list & get_available_implementations() { static const internal::available_implementation_list available_implementations{}; return available_implementations; } /** * The active implementation. */ SIMDUTF_DLLIMPORTEXPORT internal::atomic_ptr & get_active_implementation() { #if SIMDUTF_SINGLE_IMPLEMENTATION // skip runtime detection static internal::atomic_ptr active_implementation{ internal::get_single_implementation()}; return active_implementation; #else static const internal::detect_best_supported_implementation_on_first_use detect_best_supported_implementation_on_first_use_singleton; static internal::atomic_ptr active_implementation{ &detect_best_supported_implementation_on_first_use_singleton}; return active_implementation; #endif } #if SIMDUTF_SINGLE_IMPLEMENTATION const implementation *get_default_implementation() { return internal::get_single_implementation(); } #else internal::atomic_ptr &get_default_implementation() { return get_active_implementation(); } #endif #define SIMDUTF_GET_CURRENT_IMPLEMENTION #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) noexcept { return get_default_implementation()->validate_utf8(buf, len); } simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) noexcept { return get_default_implementation()->validate_utf8_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) noexcept { return get_default_implementation()->validate_ascii(buf, len); } simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) noexcept { return get_default_implementation()->validate_ascii_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) noexcept { return get_default_implementation()->validate_utf16le_as_ascii(buf, len); } simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) noexcept { return get_default_implementation()->validate_utf16be_as_ascii(buf, len); } simdutf_warn_unused bool validate_utf16_as_ascii(const char16_t *input, size_t length) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return validate_utf16be_as_ascii(input, length); #else return validate_utf16le_as_ascii(input, length); #endif } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16( const char *input, size_t length, char16_t *utf16_output) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_utf8_to_utf16be(input, length, utf16_output); #else return convert_utf8_to_utf16le(input, length, utf16_output); #endif } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8(const char *buf, size_t len, char *utf8_output) noexcept { return get_default_implementation()->convert_latin1_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) noexcept { return get_default_implementation()->convert_latin1_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) noexcept { return get_default_implementation()->convert_latin1_to_utf16be(buf, len, utf16_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf32( const char *buf, size_t len, char32_t *latin1_output) noexcept { return get_default_implementation()->convert_latin1_to_utf32(buf, len, latin1_output); } simdutf_warn_unused size_t latin1_length_from_utf32(size_t length) noexcept { return length; } simdutf_warn_unused size_t utf32_length_from_latin1(size_t length) noexcept { return length; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) noexcept { return get_default_implementation()->convert_utf8_to_latin1(buf, len, latin1_output); } simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_output) noexcept { return get_default_implementation()->convert_utf8_to_latin1_with_errors( buf, len, latin1_output); } simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) noexcept { return get_default_implementation()->convert_valid_utf8_to_latin1( buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *input, size_t length, char16_t *utf16_output) noexcept { return get_default_implementation()->convert_utf8_to_utf16le(input, length, utf16_output); } simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *input, size_t length, char16_t *utf16_output) noexcept { return get_default_implementation()->convert_utf8_to_utf16be(input, length, utf16_output); } simdutf_warn_unused result convert_utf8_to_utf16_with_errors( const char *input, size_t length, char16_t *utf16_output) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_utf8_to_utf16be_with_errors(input, length, utf16_output); #else return convert_utf8_to_utf16le_with_errors(input, length, utf16_output); #endif } simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *input, size_t length, char16_t *utf16_output) noexcept { return get_default_implementation()->convert_utf8_to_utf16le_with_errors( input, length, utf16_output); } simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *input, size_t length, char16_t *utf16_output) noexcept { return get_default_implementation()->convert_utf8_to_utf16be_with_errors( input, length, utf16_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf8_to_utf32( const char *input, size_t length, char32_t *utf32_output) noexcept { return get_default_implementation()->convert_utf8_to_utf32(input, length, utf32_output); } simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *input, size_t length, char32_t *utf32_output) noexcept { return get_default_implementation()->convert_utf8_to_utf32_with_errors( input, length, utf32_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16(const char16_t *buf, size_t len) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return validate_utf16be(buf, len); #else return validate_utf16le(buf, len); #endif } void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) noexcept { return get_default_implementation()->to_well_formed_utf16be(input, len, output); } void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) noexcept { return get_default_implementation()->to_well_formed_utf16le(input, len, output); } void to_well_formed_utf16(const char16_t *input, size_t len, char16_t *output) noexcept { #if SIMDUTF_IS_BIG_ENDIAN to_well_formed_utf16be(input, len, output); #else to_well_formed_utf16le(input, len, output); #endif } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) noexcept { return get_default_implementation()->validate_utf16le(buf, len); } #if SIMDUTF_ATOMIC_REF template simdutf_warn_unused result atomic_base64_to_binary_safe_impl( const char_type *input, size_t length, char *output, size_t &outlen, base64_options options, last_chunk_handling_options last_chunk_handling_options, bool decode_up_to_bad_char) noexcept { #if defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION) // We use a smaller buffer during fuzzing to more easily detect bugs. constexpr size_t buffer_size = 128; #else // Arbitrary block sizes: 4KB for input. constexpr size_t buffer_size = 4096; #endif std::array temp_buffer; const char_type *const input_init = input; size_t actual_out = 0; bool last_chunk = false; const size_t length_init = length; result r; while (!last_chunk) { last_chunk |= (temp_buffer.size() >= outlen - actual_out); size_t temp_outlen = (std::min)(temp_buffer.size(), outlen - actual_out); r = base64_to_binary_safe(input, length, temp_buffer.data(), temp_outlen, options, last_chunk_handling_options, decode_up_to_bad_char); // We processed r.count characters of input. // We wrote temp_outlen bytes to temp_buffer. // If there is no ignorable characters, // we should expect that values/4.0*3 == temp_outlen, // except maybe at the tail end of the string. // // We are assuming that when r.error == error_code::OUTPUT_BUFFER_TOO_SMALL, // we truncate the results so that a number of base64 characters divisible // by four is processed. // // // We wrote temp_outlen bytes to temp_buffer. // We need to copy them to output. // Copy with relaxed atomic operations to the output simdutf_log_assert(temp_outlen <= outlen - actual_out, "Output buffer is too small"); simdutf_log_assert(temp_outlen <= temp_buffer.size(), "Output buffer is too small"); simdutf::scalar::memcpy_atomic_write(output + actual_out, temp_buffer.data(), temp_outlen); actual_out += temp_outlen; length -= r.count; input += r.count; if (r.error != error_code::OUTPUT_BUFFER_TOO_SMALL) { break; } } if (size_t(input - input_init) != length_init) { // We did not process all input characters. In such case, we // should not end with an ignorable character. See // https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 while (input > input_init && base64_ignorable(*(input - 1), options)) { --input; } } outlen = actual_out; return {r.error, size_t(input - input_init)}; } simdutf_warn_unused result atomic_base64_to_binary_safe( const char *input, size_t length, char *output, size_t &outlen, base64_options options, last_chunk_handling_options last_chunk_handling_options, bool decode_up_to_bad_char) noexcept { return atomic_base64_to_binary_safe_impl( input, length, output, outlen, options, last_chunk_handling_options, decode_up_to_bad_char); } simdutf_warn_unused result atomic_base64_to_binary_safe( const char16_t *input, size_t length, char *output, size_t &outlen, base64_options options, last_chunk_handling_options last_chunk_handling_options, bool decode_up_to_bad_char) noexcept { return atomic_base64_to_binary_safe_impl( input, length, output, outlen, options, last_chunk_handling_options, decode_up_to_bad_char); } #endif // SIMDUTF_ATOMIC_REF #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) noexcept { return get_default_implementation()->validate_utf16be(buf, len); } simdutf_warn_unused result validate_utf16_with_errors(const char16_t *buf, size_t len) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return validate_utf16be_with_errors(buf, len); #else return validate_utf16le_with_errors(buf, len); #endif } simdutf_warn_unused result validate_utf16le_with_errors(const char16_t *buf, size_t len) noexcept { return get_default_implementation()->validate_utf16le_with_errors(buf, len); } simdutf_warn_unused result validate_utf16be_with_errors(const char16_t *buf, size_t len) noexcept { return get_default_implementation()->validate_utf16be_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) noexcept { return get_default_implementation()->validate_utf32(buf, len); } simdutf_warn_unused result validate_utf32_with_errors(const char32_t *buf, size_t len) noexcept { return get_default_implementation()->validate_utf32_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_valid_utf8_to_utf16( const char *input, size_t length, char16_t *utf16_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_valid_utf8_to_utf16be(input, length, utf16_buffer); #else return convert_valid_utf8_to_utf16le(input, length, utf16_buffer); #endif } simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *input, size_t length, char16_t *utf16_buffer) noexcept { return get_default_implementation()->convert_valid_utf8_to_utf16le( input, length, utf16_buffer); } simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *input, size_t length, char16_t *utf16_buffer) noexcept { return get_default_implementation()->convert_valid_utf8_to_utf16be( input, length, utf16_buffer); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *input, size_t length, char32_t *utf32_buffer) noexcept { return get_default_implementation()->convert_valid_utf8_to_utf32( input, length, utf32_buffer); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16_to_utf8(const char16_t *buf, size_t len, char *utf8_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_utf16be_to_utf8(buf, len, utf8_buffer); #else return convert_utf16le_to_utf8(buf, len, utf8_buffer); #endif } simdutf_warn_unused size_t convert_utf16_to_utf8_safe(const char16_t *buf, size_t len, char *utf8_output, size_t utf8_len) noexcept { const auto start{utf8_output}; // We might be able to go faster by first scanning the input buffer to // determine how many char16_t characters we can read without exceeding the // utf8_len. This is a one-pass algorithm that has the benefit of not // requiring a first pass to determine the length. while (true) { // The worst case for convert_utf16_to_utf8 is when you go from 1 char16_t // to 3 characters of UTF-8. So we can read at most utf8_len / 3 char16_t // characters. auto read_len = std::min(len, utf8_len / 3); if (read_len <= 16) { break; } if (read_len < len) { // If we have a high surrogate at the end of the buffer, we need to // either read one more char16_t or backtrack. if (scalar::utf16::high_surrogate(buf[read_len - 1])) { read_len--; } } if (read_len == 0) { // If we cannot read anything, we are done. break; } const auto write_len = simdutf::convert_utf16_to_utf8(buf, read_len, utf8_output); if (write_len == 0) { // There was an error in the conversion, we cannot continue. return 0; // indicating failure } utf8_output += write_len; utf8_len -= write_len; buf += read_len; len -= read_len; } #if SIMDUTF_IS_BIG_ENDIAN full_result r = scalar::utf16_to_utf8::convert_with_errors( buf, len, utf8_output, utf8_len); #else full_result r = scalar::utf16_to_utf8::convert_with_errors( buf, len, utf8_output, utf8_len); #endif if (r.error != error_code::SUCCESS && r.error != error_code::OUTPUT_BUFFER_TOO_SMALL) { // If there was an error, we return 0 to indicate failure. return 0; // indicating failure } return r.output_count + (utf8_output - start); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf16_to_latin1( const char16_t *buf, size_t len, char *latin1_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_utf16be_to_latin1(buf, len, latin1_buffer); #else return convert_utf16le_to_latin1(buf, len, latin1_buffer); #endif } simdutf_warn_unused size_t convert_latin1_to_utf16( const char *buf, size_t len, char16_t *utf16_output) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_latin1_to_utf16be(buf, len, utf16_output); #else return convert_latin1_to_utf16le(buf, len, utf16_output); #endif } simdutf_warn_unused size_t convert_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_buffer) noexcept { return get_default_implementation()->convert_utf16be_to_latin1(buf, len, latin1_buffer); } simdutf_warn_unused size_t convert_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_buffer) noexcept { return get_default_implementation()->convert_utf16le_to_latin1(buf, len, latin1_buffer); } simdutf_warn_unused size_t convert_valid_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_buffer) noexcept { return get_default_implementation()->convert_valid_utf16be_to_latin1( buf, len, latin1_buffer); } simdutf_warn_unused size_t convert_valid_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_buffer) noexcept { return get_default_implementation()->convert_valid_utf16le_to_latin1( buf, len, latin1_buffer); } simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) noexcept { return get_default_implementation()->convert_utf16le_to_latin1_with_errors( buf, len, latin1_buffer); } simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) noexcept { return get_default_implementation()->convert_utf16be_to_latin1_with_errors( buf, len, latin1_buffer); } simdutf_warn_unused size_t latin1_length_from_utf16(size_t length) noexcept { return length; } simdutf_warn_unused size_t utf16_length_from_latin1(size_t length) noexcept { return length; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_utf16le_to_utf8(const char16_t *buf, size_t len, char *utf8_buffer) noexcept { return get_default_implementation()->convert_utf16le_to_utf8(buf, len, utf8_buffer); } simdutf_warn_unused size_t convert_utf16be_to_utf8(const char16_t *buf, size_t len, char *utf8_buffer) noexcept { return get_default_implementation()->convert_utf16be_to_utf8(buf, len, utf8_buffer); } simdutf_warn_unused result convert_utf16_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_utf16be_to_utf8_with_errors(buf, len, utf8_buffer); #else return convert_utf16le_to_utf8_with_errors(buf, len, utf8_buffer); #endif } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused result convert_utf16_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_utf16be_to_latin1_with_errors(buf, len, latin1_buffer); #else return convert_utf16le_to_latin1_with_errors(buf, len, latin1_buffer); #endif } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) noexcept { return get_default_implementation()->convert_utf16le_to_utf8_with_errors( buf, len, utf8_buffer); } simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_buffer) noexcept { return get_default_implementation()->convert_utf16be_to_utf8_with_errors( buf, len, utf8_buffer); } simdutf_warn_unused size_t convert_valid_utf16_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_valid_utf16be_to_utf8(buf, len, utf8_buffer); #else return convert_valid_utf16le_to_utf8(buf, len, utf8_buffer); #endif } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_valid_utf16_to_latin1( const char16_t *buf, size_t len, char *latin1_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_valid_utf16be_to_latin1(buf, len, latin1_buffer); #else return convert_valid_utf16le_to_latin1(buf, len, latin1_buffer); #endif } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) noexcept { return get_default_implementation()->convert_valid_utf16le_to_utf8( buf, len, utf8_buffer); } simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_buffer) noexcept { return get_default_implementation()->convert_valid_utf16be_to_utf8( buf, len, utf8_buffer); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_buffer) noexcept { return get_default_implementation()->convert_utf32_to_utf8(buf, len, utf8_buffer); } simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_buffer) noexcept { return get_default_implementation()->convert_utf32_to_utf8_with_errors( buf, len, utf8_buffer); } simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_buffer) noexcept { return get_default_implementation()->convert_valid_utf32_to_utf8(buf, len, utf8_buffer); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16( const char32_t *buf, size_t len, char16_t *utf16_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_utf32_to_utf16be(buf, len, utf16_buffer); #else return convert_utf32_to_utf16le(buf, len, utf16_buffer); #endif } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_utf32_to_latin1( const char32_t *input, size_t length, char *latin1_output) noexcept { return get_default_implementation()->convert_utf32_to_latin1(input, length, latin1_output); } simdutf_warn_unused result convert_utf32_to_latin1_with_errors( const char32_t *input, size_t length, char *latin1_buffer) noexcept { return get_default_implementation()->convert_utf32_to_latin1_with_errors( input, length, latin1_buffer); } simdutf_warn_unused size_t convert_valid_utf32_to_latin1( const char32_t *input, size_t length, char *latin1_buffer) noexcept { return get_default_implementation()->convert_valid_utf32_to_latin1( input, length, latin1_buffer); } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t convert_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_buffer) noexcept { return get_default_implementation()->convert_utf32_to_utf16le(buf, len, utf16_buffer); } simdutf_warn_unused size_t convert_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_buffer) noexcept { return get_default_implementation()->convert_utf32_to_utf16be(buf, len, utf16_buffer); } simdutf_warn_unused result convert_utf32_to_utf16_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_utf32_to_utf16be_with_errors(buf, len, utf16_buffer); #else return convert_utf32_to_utf16le_with_errors(buf, len, utf16_buffer); #endif } simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) noexcept { return get_default_implementation()->convert_utf32_to_utf16le_with_errors( buf, len, utf16_buffer); } simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_buffer) noexcept { return get_default_implementation()->convert_utf32_to_utf16be_with_errors( buf, len, utf16_buffer); } simdutf_warn_unused size_t convert_valid_utf32_to_utf16( const char32_t *buf, size_t len, char16_t *utf16_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_valid_utf32_to_utf16be(buf, len, utf16_buffer); #else return convert_valid_utf32_to_utf16le(buf, len, utf16_buffer); #endif } simdutf_warn_unused size_t convert_valid_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_buffer) noexcept { return get_default_implementation()->convert_valid_utf32_to_utf16le( buf, len, utf16_buffer); } simdutf_warn_unused size_t convert_valid_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_buffer) noexcept { return get_default_implementation()->convert_valid_utf32_to_utf16be( buf, len, utf16_buffer); } simdutf_warn_unused size_t convert_utf16_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_utf16be_to_utf32(buf, len, utf32_buffer); #else return convert_utf16le_to_utf32(buf, len, utf32_buffer); #endif } simdutf_warn_unused size_t convert_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_buffer) noexcept { return get_default_implementation()->convert_utf16le_to_utf32(buf, len, utf32_buffer); } simdutf_warn_unused size_t convert_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_buffer) noexcept { return get_default_implementation()->convert_utf16be_to_utf32(buf, len, utf32_buffer); } simdutf_warn_unused result convert_utf16_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_utf16be_to_utf32_with_errors(buf, len, utf32_buffer); #else return convert_utf16le_to_utf32_with_errors(buf, len, utf32_buffer); #endif } simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) noexcept { return get_default_implementation()->convert_utf16le_to_utf32_with_errors( buf, len, utf32_buffer); } simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_buffer) noexcept { return get_default_implementation()->convert_utf16be_to_utf32_with_errors( buf, len, utf32_buffer); } simdutf_warn_unused size_t convert_valid_utf16_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_buffer) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return convert_valid_utf16be_to_utf32(buf, len, utf32_buffer); #else return convert_valid_utf16le_to_utf32(buf, len, utf32_buffer); #endif } simdutf_warn_unused size_t convert_valid_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_buffer) noexcept { return get_default_implementation()->convert_valid_utf16le_to_utf32( buf, len, utf32_buffer); } simdutf_warn_unused size_t convert_valid_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_buffer) noexcept { return get_default_implementation()->convert_valid_utf16be_to_utf32( buf, len, utf32_buffer); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) noexcept { get_default_implementation()->change_endianness_utf16(input, length, output); } simdutf_warn_unused size_t count_utf16(const char16_t *input, size_t length) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return count_utf16be(input, length); #else return count_utf16le(input, length); #endif } simdutf_warn_unused size_t count_utf16le(const char16_t *input, size_t length) noexcept { return get_default_implementation()->count_utf16le(input, length); } simdutf_warn_unused size_t count_utf16be(const char16_t *input, size_t length) noexcept { return get_default_implementation()->count_utf16be(input, length); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t count_utf8(const char *input, size_t length) noexcept { return get_default_implementation()->count_utf8(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t latin1_length_from_utf8(const char *buf, size_t len) noexcept { return get_default_implementation()->latin1_length_from_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t utf8_length_from_latin1(const char *buf, size_t len) noexcept { return get_default_implementation()->utf8_length_from_latin1(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf8_length_from_utf16(const char16_t *input, size_t length) noexcept { #if SIMDUTF_IS_BIG_ENDIAN result r = utf8_length_from_utf16be_with_replacement(input, length); return r.count; #else return utf8_length_from_utf16le(input, length); #endif } simdutf_warn_unused result utf8_length_from_utf16_with_replacement( const char16_t *input, size_t length) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return utf8_length_from_utf16be_with_replacement(input, length); #else return utf8_length_from_utf16le_with_replacement(input, length); #endif } simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) noexcept { return get_default_implementation()->utf8_length_from_utf16le(input, length); } simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) noexcept { return get_default_implementation()->utf8_length_from_utf16be(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf16(const char16_t *input, size_t length) noexcept { #if SIMDUTF_IS_BIG_ENDIAN return utf32_length_from_utf16be(input, length); #else return utf32_length_from_utf16le(input, length); #endif } simdutf_warn_unused size_t utf32_length_from_utf16le(const char16_t *input, size_t length) noexcept { return get_default_implementation()->utf32_length_from_utf16le(input, length); } simdutf_warn_unused size_t utf32_length_from_utf16be(const char16_t *input, size_t length) noexcept { return get_default_implementation()->utf32_length_from_utf16be(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) noexcept { return get_default_implementation()->utf16_length_from_utf8(input, length); } simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) noexcept { return get_default_implementation() ->utf8_length_from_utf16le_with_replacement(input, length); } simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) noexcept { return get_default_implementation() ->utf8_length_from_utf16be_with_replacement(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) noexcept { return get_default_implementation()->utf8_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) noexcept { return get_default_implementation()->utf16_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) noexcept { return get_default_implementation()->utf32_length_from_utf8(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused size_t base64_length_from_binary(size_t length, base64_options option) noexcept { return scalar::base64::base64_length_from_binary(length, option); } simdutf_warn_unused size_t base64_length_from_binary_with_lines( size_t length, base64_options options, size_t line_length) noexcept { return scalar::base64::base64_length_from_binary_with_lines(length, options, line_length); } simdutf_warn_unused const char *find(const char *start, const char *end, char character) noexcept { return get_default_implementation()->find(start, end, character); } simdutf_warn_unused const char16_t * find(const char16_t *start, const char16_t *end, char16_t character) noexcept { return get_default_implementation()->find(start, end, character); } simdutf_warn_unused size_t maximal_binary_length_from_base64(const char *input, size_t length) noexcept { return get_default_implementation()->maximal_binary_length_from_base64( input, length); } simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_handling_options) noexcept { return get_default_implementation()->base64_to_binary( input, length, output, options, last_chunk_handling_options); } simdutf_warn_unused size_t maximal_binary_length_from_base64( const char16_t *input, size_t length) noexcept { return get_default_implementation()->maximal_binary_length_from_base64( input, length); } simdutf_warn_unused result base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_handling_options) noexcept { return get_default_implementation()->base64_to_binary( input, length, output, options, last_chunk_handling_options); } template simdutf_warn_unused result slow_base64_to_binary_safe_impl( const chartype *input, size_t length, char *output, size_t &outlen, base64_options options, last_chunk_handling_options last_chunk_options) noexcept { const bool ignore_garbage = (options & base64_default_accept_garbage) != 0; auto ri = simdutf::scalar::base64::find_end(input, length, options); size_t equallocation = ri.equallocation; size_t equalsigns = ri.equalsigns; length = ri.srclen; size_t full_input_length = ri.full_input_length; (void)full_input_length; if (length == 0) { outlen = 0; if (!ignore_garbage && equalsigns > 0) { return {INVALID_BASE64_CHARACTER, equallocation}; } return {SUCCESS, 0}; } // The parameters of base64_tail_decode_safe are: // - dst: the output buffer // - outlen: the size of the output buffer // - srcr: the input buffer // - length: the size of the input buffer // - padded_characters: the number of padding characters // - options: the options for the base64 decoder // - last_chunk_options: the options for the last chunk // The function will return the number of bytes written to the output buffer // and the number of bytes read from the input buffer. // The function will also return an error code if the input buffer is not // valid base64. full_result r = scalar::base64::base64_tail_decode_safe( output, outlen, input, length, equalsigns, options, last_chunk_options); r = scalar::base64::patch_tail_result(r, 0, 0, equallocation, full_input_length, last_chunk_options); outlen = r.output_count; if (!is_partial(last_chunk_options) && r.error == error_code::SUCCESS && equalsigns > 0) { // additional checks if ((outlen % 3 == 0) || ((outlen % 3) + 1 + equalsigns != 4)) { r.error = error_code::INVALID_BASE64_CHARACTER; } } return {r.error, r.input_count}; // we cannot return r itself because it gets // converted to error/output_count } simdutf_warn_unused bool base64_ignorable(char input, base64_options options) noexcept { return scalar::base64::is_ignorable(input, options); } simdutf_warn_unused bool base64_ignorable(char16_t input, base64_options options) noexcept { return scalar::base64::is_ignorable(input, options); } simdutf_warn_unused bool base64_valid(char input, base64_options options) noexcept { return scalar::base64::is_base64(input, options); } simdutf_warn_unused bool base64_valid(char16_t input, base64_options options) noexcept { return scalar::base64::is_base64(input, options); } simdutf_warn_unused bool base64_valid_or_padding(char input, base64_options options) noexcept { return scalar::base64::is_base64_or_padding(input, options); } simdutf_warn_unused bool base64_valid_or_padding(char16_t input, base64_options options) noexcept { return scalar::base64::is_base64_or_padding(input, options); } template simdutf_warn_unused result base64_to_binary_safe_impl( const chartype *input, size_t length, char *output, size_t &outlen, base64_options options, last_chunk_handling_options last_chunk_handling_options, bool decode_up_to_bad_char) noexcept { static_assert(std::is_same::value || std::is_same::value, "Only char and char16_t are supported."); size_t remaining_input_length = length; size_t remaining_output_length = outlen; size_t input_position = 0; size_t output_position = 0; // We also do a first pass using the fast path to decode as much as possible size_t safe_input = (std::min)( remaining_input_length, base64_length_from_binary(remaining_output_length / 3 * 3, options)); bool done_with_partial = (safe_input == remaining_input_length); simdutf::full_result r = get_default_implementation()->base64_to_binary_details( input + input_position, safe_input, output + output_position, options, done_with_partial ? last_chunk_handling_options : simdutf::last_chunk_handling_options::only_full_chunks); simdutf_log_assert(r.input_count <= safe_input, "You should not read more than safe_input"); simdutf_log_assert(r.output_count <= remaining_output_length, "You should not write more than remaining_output_length"); // Technically redundant, but we want to be explicit about it. input_position += r.input_count; output_position += r.output_count; remaining_input_length -= r.input_count; remaining_output_length -= r.output_count; if (r.error != simdutf::error_code::SUCCESS) { // There is an error. We return. if (decode_up_to_bad_char && r.error == error_code::INVALID_BASE64_CHARACTER) { return slow_base64_to_binary_safe_impl( input, length, output, outlen, options, last_chunk_handling_options); } outlen = output_position; return {r.error, input_position}; } if (done_with_partial) { // We are done. We have decoded everything. outlen = output_position; return {simdutf::error_code::SUCCESS, input_position}; } // We have decoded some data, but we still have some data to decode. // We need to decode the rest of the input buffer. r = simdutf::scalar::base64::base64_to_binary_details_safe_impl( input + input_position, remaining_input_length, output + output_position, remaining_output_length, options, last_chunk_handling_options); input_position += r.input_count; output_position += r.output_count; remaining_input_length -= r.input_count; remaining_output_length -= r.output_count; if (r.error != simdutf::error_code::SUCCESS) { // There is an error. We return. if (decode_up_to_bad_char && r.error == error_code::INVALID_BASE64_CHARACTER) { return slow_base64_to_binary_safe_impl( input, length, output, outlen, options, last_chunk_handling_options); } outlen = output_position; return {r.error, input_position}; } if (input_position < length) { // We cannot process the entire input in one go, so we need to // process it in two steps: first the fast path, then the slow path. // In some cases, the processing might 'eat up' trailing ignorable // characters in the fast path, but that can be a problem. // suppose we have just white space followed by a single base64 character. // If we first process the white space with the fast path, it will // eat all of it. But, by the JavaScript standard, we should consume // no character. See // https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 while (input_position > 0 && base64_ignorable(input[input_position - 1], options)) { input_position--; } } outlen = output_position; return {simdutf::error_code::SUCCESS, input_position}; } #if SIMDUTF_ATOMIC_REF size_t atomic_binary_to_base64(const char *input, size_t length, char *output, base64_options options) noexcept { size_t retval = 0; #if defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION) // We use a smaller buffer during fuzzing to more easily detect bugs. constexpr size_t input_block_size = 128 * 3; #else // Arbitrary block sizes: 3KB for input which produces 4KB in output. constexpr size_t input_block_size = 1024 * 3; #endif std::array inbuf; for (size_t i = 0; i < length; i += input_block_size) { const size_t current_block_size = std::min(input_block_size, length - i); simdutf::scalar::memcpy_atomic_read(inbuf.data(), input + i, current_block_size); const size_t written = binary_to_base64(inbuf.data(), current_block_size, output + retval, options); retval += written; } return retval; } #endif // SIMDUTF_ATOMIC_REF #endif // SIMDUTF_FEATURE_BASE64 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t convert_latin1_to_utf8_safe( const char *buf, size_t len, char *utf8_output, size_t utf8_len) noexcept { const auto start{utf8_output}; while (true) { // convert_latin1_to_utf8 will never write more than input length * 2 auto read_len = std::min(len, utf8_len >> 1); if (read_len <= 16) { break; } const auto write_len = simdutf::convert_latin1_to_utf8(buf, read_len, utf8_output); utf8_output += write_len; utf8_len -= write_len; buf += read_len; len -= read_len; } utf8_output += scalar::latin1_to_utf8::convert_safe(buf, len, utf8_output, utf8_len); return utf8_output - start; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result base64_to_binary_safe(const char *input, size_t length, char *output, size_t &outlen, base64_options options, last_chunk_handling_options last_chunk_handling_options, bool decode_up_to_bad_char) noexcept { return base64_to_binary_safe_impl(input, length, output, outlen, options, last_chunk_handling_options, decode_up_to_bad_char); } simdutf_warn_unused result base64_to_binary_safe(const char16_t *input, size_t length, char *output, size_t &outlen, base64_options options, last_chunk_handling_options last_chunk_handling_options, bool decode_up_to_bad_char) noexcept { return base64_to_binary_safe_impl( input, length, output, outlen, options, last_chunk_handling_options, decode_up_to_bad_char); } size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options) noexcept { return get_default_implementation()->binary_to_base64(input, length, output, options); } size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length, base64_options options) noexcept { return get_default_implementation()->binary_to_base64_with_lines( input, length, output, line_length, options); } #endif // SIMDUTF_FEATURE_BASE64 #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused simdutf::encoding_type autodetect_encoding(const char *buf, size_t length) noexcept { return get_default_implementation()->autodetect_encoding(buf, length); } simdutf_warn_unused int detect_encodings(const char *buf, size_t length) noexcept { return get_default_implementation()->detect_encodings(buf, length); } #endif // SIMDUTF_FEATURE_DETECT_ENCODING const implementation *builtin_implementation() { static const implementation *builtin_impl = get_available_implementations()[SIMDUTF_STRINGIFY( SIMDUTF_BUILTIN_IMPLEMENTATION)]; return builtin_impl; } #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t trim_partial_utf8(const char *input, size_t length) { return scalar::utf8::trim_partial_utf8(input, length); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t trim_partial_utf16be(const char16_t *input, size_t length) { return scalar::utf16::trim_partial_utf16(input, length); } simdutf_warn_unused size_t trim_partial_utf16le(const char16_t *input, size_t length) { return scalar::utf16::trim_partial_utf16(input, length); } simdutf_warn_unused size_t trim_partial_utf16(const char16_t *input, size_t length) { #if SIMDUTF_IS_BIG_ENDIAN return trim_partial_utf16be(input, length); #else return trim_partial_utf16le(input, length); #endif } #endif // SIMDUTF_FEATURE_UTF16 } // namespace simdutf /* end file src/implementation.cpp */ SIMDUTF_PUSH_DISABLE_WARNINGS SIMDUTF_DISABLE_UNDESIRED_WARNINGS #if SIMDUTF_IMPLEMENTATION_ARM64 /* begin file src/arm64/implementation.cpp */ /* begin file src/simdutf/arm64/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "arm64" // #define SIMDUTF_IMPLEMENTATION arm64 #define SIMDUTF_SIMD_HAS_BYTEMASK 1 /* end file src/simdutf/arm64/begin.h */ namespace simdutf { namespace arm64 { namespace { #ifndef SIMDUTF_ARM64_H #error "arm64.h must be included" #endif using namespace simd; #if SIMDUTF_FEATURE_ASCII || SIMDUTF_FEATURE_DETECT_ENCODING || \ SIMDUTF_FEATURE_UTF8 simdutf_really_inline bool is_ascii(const simd8x64 &input) { simd8 bits = input.reduce_or(); return bits.max_val() < 0b10000000u; } #endif // SIMDUTF_FEATURE_ASCII || SIMDUTF_FEATURE_DETECT_ENCODING || // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_really_inline simd8 must_be_2_3_continuation(const simd8 prev2, const simd8 prev3) { simd8 is_third_byte = prev2 >= uint8_t(0b11100000u); simd8 is_fourth_byte = prev3 >= uint8_t(0b11110000u); return is_third_byte ^ is_fourth_byte; } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 && (SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32) // common functions for utf8 conversions simdutf_really_inline uint16x4_t convert_utf8_3_byte_to_utf16(uint8x16_t in) { // Low half contains 10cccccc|1110aaaa // High half contains 10bbbbbb|10bbbbbb #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint8x16_t sh = simdutf_make_uint8x16_t(0, 2, 3, 5, 6, 8, 9, 11, 1, 1, 4, 4, 7, 7, 10, 10); #else const uint8x16_t sh = {0, 2, 3, 5, 6, 8, 9, 11, 1, 1, 4, 4, 7, 7, 10, 10}; #endif uint8x16_t perm = vqtbl1q_u8(in, sh); // Split into half vectors. // 10cccccc|1110aaaa uint8x8_t perm_low = vget_low_u8(perm); // no-op // 10bbbbbb|10bbbbbb uint8x8_t perm_high = vget_high_u8(perm); // xxxxxxxx 10bbbbbb uint16x4_t mid = vreinterpret_u16_u8(perm_high); // no-op // xxxxxxxx 1110aaaa uint16x4_t high = vreinterpret_u16_u8(perm_low); // no-op // Assemble with shift left insert. // xxxxxxaa aabbbbbb uint16x4_t mid_high = vsli_n_u16(mid, high, 6); // (perm_low << 8) | (perm_low >> 8) // xxxxxxxx 10cccccc uint16x4_t low = vreinterpret_u16_u8(vrev16_u8(perm_low)); // Shift left insert into the low bits // aaaabbbb bbcccccc uint16x4_t composed = vsli_n_u16(low, mid_high, 6); return composed; } simdutf_really_inline uint16x8_t convert_utf8_2_byte_to_utf16(uint8x16_t in) { // Converts 6 2 byte UTF-8 characters to 6 UTF-16 characters. // Technically this calculates 8, but 6 does better and happens more often // (The languages which use these codepoints use ASCII spaces so 8 would need // to be in the middle of a very long word). // 10bbbbbb 110aaaaa uint16x8_t upper = vreinterpretq_u16_u8(in); // (in << 8) | (in >> 8) // 110aaaaa 10bbbbbb uint16x8_t lower = vreinterpretq_u16_u8(vrev16q_u8(in)); // 00000000 000aaaaa uint16x8_t upper_masked = vandq_u16(upper, vmovq_n_u16(0x1F)); // Assemble with shift left insert. // 00000aaa aabbbbbb uint16x8_t composed = vsliq_n_u16(lower, upper_masked, 6); return composed; } simdutf_really_inline uint16x8_t convert_utf8_1_to_2_byte_to_utf16(uint8x16_t in, size_t shufutf8_idx) { // Converts 6 1-2 byte UTF-8 characters to 6 UTF-16 characters. // This is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. uint8x16_t sh = vld1q_u8(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[shufutf8_idx])); // Shuffle // 1 byte: 00000000 0bbbbbbb // 2 byte: 110aaaaa 10bbbbbb uint16x8_t perm = vreinterpretq_u16_u8(vqtbl1q_u8(in, sh)); // Mask // 1 byte: 00000000 0bbbbbbb // 2 byte: 00000000 00bbbbbb uint16x8_t ascii = vandq_u16(perm, vmovq_n_u16(0x7f)); // 6 or 7 bits // 1 byte: 00000000 00000000 // 2 byte: 000aaaaa 00000000 uint16x8_t highbyte = vandq_u16(perm, vmovq_n_u16(0x1f00)); // 5 bits // Combine with a shift right accumulate // 1 byte: 00000000 0bbbbbbb // 2 byte: 00000aaa aabbbbbb uint16x8_t composed = vsraq_n_u16(ascii, highbyte, 2); return composed; } #endif // SIMDUTF_FEATURE_UTF8 && (SIMDUTF_FEATURE_UTF16 || // SIMDUTF_FEATURE_UTF32) #if SIMDUTF_FEATURE_UTF16 /* begin file src/arm64/arm_utf16fix.cpp */ /* * Returns if a vector of type uint8x16_t is all zero. */ simdutf_really_inline int veq_non_zero(uint8x16_t v) { // might compile to two instructions: // umaxv s0, v0.4s // fmov w0, s0 // On Apple hardware, they both have a latency of 3 cycles, with a throughput // of four instructions per cycle. So that's 6 cycles of latency (!!!) for the // two instructions. A narrowing shift has the same latency and throughput. return vmaxvq_u32(vreinterpretq_u32_u8(v)); } /* * Process one block of 16 characters. If in_place is false, * copy the block from in to out. If there is a sequencing * error in the block, overwrite the illsequenced characters * with the replacement character. This function reads one * character before the beginning of the buffer as a lookback. * If that character is illsequenced, it too is overwritten. */ template void utf16fix_block(char16_t *out, const char16_t *in) { const char16_t replacement = scalar::utf16::replacement(); uint8x16x2_t lb, block; uint8x16_t lb_masked, block_masked, lb_is_high, block_is_low; uint8x16_t illseq; const int idx = !match_system(big_endian) ? 0 : 1; /* TODO: compute lookback using shifts */ lb = vld2q_u8((const uint8_t *)(in - 1)); block = vld2q_u8((const uint8_t *)in); lb_masked = vandq_u8(lb.val[idx], vdupq_n_u8(0xfc)); block_masked = vandq_u8(block.val[idx], vdupq_n_u8(0xfc)); lb_is_high = vceqq_u8(lb_masked, vdupq_n_u8(0xd8)); block_is_low = vceqq_u8(block_masked, vdupq_n_u8(0xdc)); illseq = veorq_u8(lb_is_high, block_is_low); if (veq_non_zero(illseq)) { uint8x16_t lb_illseq, block_illseq; char16_t lbc; int ill; /* compute the cause of the illegal sequencing */ lb_illseq = vbicq_u8(lb_is_high, block_is_low); block_illseq = vorrq_u8(vbicq_u8(block_is_low, lb_is_high), vextq_u8(lb_illseq, vdupq_n_u8(0), 1)); /* fix illegal sequencing in the lookback */ ill = vgetq_lane_u8(lb_illseq, 0); lbc = out[-1]; out[-1] = ill ? replacement : lbc; /* fix illegal sequencing in the main block */ if (!match_system(big_endian)) { block.val[1] = vbslq_u8(block_illseq, vdupq_n_u8(0xfd), block.val[1]); block.val[0] = vorrq_u8(block_illseq, block.val[0]); } else { block.val[0] = vbslq_u8(block_illseq, vdupq_n_u8(0xfd), block.val[0]); block.val[1] = vorrq_u8(block_illseq, block.val[1]); } vst2q_u8((uint8_t *)out, block); } else if (!inplace) { vst2q_u8((uint8_t *)out, block); } } template uint8x16_t get_mismatch_copy(const char16_t *in, char16_t *out) { const int idx = !match_system(big_endian) ? 0 : 1; uint8x16x2_t lb = vld2q_u8((const uint8_t *)(in - 1)); uint8x16x2_t block = vld2q_u8((const uint8_t *)in); uint8x16_t lb_masked = vandq_u8(lb.val[idx], vdupq_n_u8(0xfc)); uint8x16_t block_masked = vandq_u8(block.val[idx], vdupq_n_u8(0xfc)); uint8x16_t lb_is_high = vceqq_u8(lb_masked, vdupq_n_u8(0xd8)); uint8x16_t block_is_low = vceqq_u8(block_masked, vdupq_n_u8(0xdc)); uint8x16_t illseq = veorq_u8(lb_is_high, block_is_low); if (!inplace) { vst2q_u8((uint8_t *)out, block); } return illseq; } simdutf_really_inline uint64_t get_mask(uint8x16_t illse0, uint8x16_t illse1, uint8x16_t illse2, uint8x16_t illse3) { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO uint8x16_t bit_mask = simdutf_make_uint8x16_t(0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80); #else uint8x16_t bit_mask = {0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80}; #endif uint8x16_t sum0 = vpaddq_u8(vandq_u8(illse0, bit_mask), vandq_u8(illse1, bit_mask)); uint8x16_t sum1 = vpaddq_u8(vandq_u8(illse2, bit_mask), vandq_u8(illse3, bit_mask)); sum0 = vpaddq_u8(sum0, sum1); sum0 = vpaddq_u8(sum0, sum0); return vgetq_lane_u64(vreinterpretq_u64_u8(sum0), 0); } // The idea is to process 64 characters at a time, and if there is a mismatch // we can fix it with a bit of scalar code. When the input is correct, this // function might be faster than alternative implementations working on small // blocks of input. template bool utf16fix_block64(char16_t *out, const char16_t *in) { const char16_t replacement = scalar::utf16::replacement(); uint8x16_t illse0 = inplace ? get_mismatch_copy(in, out) : get_mismatch_copy(in, out); uint8x16_t illse1 = inplace ? get_mismatch_copy(in + 16, out + 16) : get_mismatch_copy(in + 16, out + 16); uint8x16_t illse2 = inplace ? get_mismatch_copy(in + 32, out + 32) : get_mismatch_copy(in + 32, out + 32); uint8x16_t illse3 = inplace ? get_mismatch_copy(in + 48, out + 48) : get_mismatch_copy(in + 48, out + 48); // this branch could be marked as unlikely: if (veq_non_zero( vorrq_u8(vorrq_u8(illse0, illse1), vorrq_u8(illse2, illse3)))) { uint64_t matches = get_mask(illse0, illse1, illse2, illse3); // Given that ARM has a fast bitreverse instruction, we can // reverse once and then use clz to find the first bit set. // It is how it is done in simdjson and *might* be beneficial. // // We might also proceed in reverse to reduce the RAW hazard, // but it might require more instructions. while (matches != 0) { int r = trailing_zeroes(matches); // generates rbit + clz // Either we have a high surrogate followed by a non-low surrogate // or we have a low surrogate not preceded by a high surrogate. bool is_high = scalar::utf16::is_high_surrogate(in[r - 1]); out[r - is_high] = replacement; matches = clear_least_significant_bit(matches); } return false; } return true; } template void utf16fix_neon_64bits(const char16_t *in, size_t n, char16_t *out) { size_t i; const char16_t replacement = scalar::utf16::replacement(); if (n < 17) { return scalar::utf16::to_well_formed_utf16(in, n, out); } out[0] = scalar::utf16::is_low_surrogate(in[0]) ? replacement : in[0]; i = 1; /* duplicate code to have the compiler specialise utf16fix_block() */ if (in == out) { for (i = 1; i + 64 < n; i += 64) { utf16fix_block64(out + i, in + i); } for (; i + 16 < n; i += 16) { utf16fix_block(out + i, in + i); } /* tbd: find carry */ utf16fix_block(out + n - 16, in + n - 16); } else { for (i = 1; i + 64 < n; i += 64) { utf16fix_block64(out + i, in + i); } for (; i + 16 < n; i += 16) { utf16fix_block(out + i, in + i); } utf16fix_block(out + n - 16, in + n - 16); } out[n - 1] = scalar::utf16::is_high_surrogate(out[n - 1]) ? replacement : out[n - 1]; } /* end file src/arm64/arm_utf16fix.cpp */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/arm64/arm_validate_utf16.cpp */ template const char16_t *arm_validate_utf16(const char16_t *input, size_t size) { const char16_t *end = input + size; const auto v_d8 = simd8::splat(0xd8); const auto v_f8 = simd8::splat(0xf8); const auto v_fc = simd8::splat(0xfc); const auto v_dc = simd8::splat(0xdc); while (end - input >= 16) { // 0. Load data: since the validation takes into account only higher // byte of each word, we compress the two vectors into one which // consists only the higher bytes. auto in0 = simd16(input); auto in1 = simd16(input + simd16::SIZE / sizeof(char16_t)); if (!match_system(big_endian)) { in0 = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(in0))); in1 = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(in1))); } const auto t0 = in0.shr<8>(); const auto t1 = in1.shr<8>(); const simd8 in = simd16::pack(t0, t1); // 1. Check whether we have any 0xD800..DFFF word (0b1101'1xxx'yyyy'yyyy). const uint64_t surrogates_wordmask = ((in & v_f8) == v_d8).to_bitmask64(); if (surrogates_wordmask == 0) { input += 16; } else { // 2. We have some surrogates that have to be distinguished: // - low surrogates: 0b1101'10xx'yyyy'yyyy (0xD800..0xDBFF) // - high surrogates: 0b1101'11xx'yyyy'yyyy (0xDC00..0xDFFF) // // Fact: high surrogate has 11th bit set (3rd bit in the higher word) // V - non-surrogate code units // V = not surrogates_wordmask const uint64_t V = ~surrogates_wordmask; // H - word-mask for high surrogates: the six highest bits are 0b1101'11 const auto vH = ((in & v_fc) == v_dc); const uint64_t H = vH.to_bitmask64(); // L - word mask for low surrogates // L = not H and surrogates_wordmask const uint64_t L = ~H & surrogates_wordmask; const uint64_t a = L & (H >> 4); // A low surrogate must be followed by high one. // (A low surrogate placed in the 7th register's word // is an exception we handle.) const uint64_t b = a << 4; // Just mark that the opposite fact is hold, // thanks to that we have only two masks for valid case. const uint64_t c = V | a | b; // Combine all the masks into the final one. if (c == ~0ull) { // The whole input register contains valid UTF-16, i.e., // either single code units or proper surrogate pairs. input += 16; } else if (c == 0xfffffffffffffffull) { // The 15 lower code units of the input register contains valid UTF-16. // The 15th word may be either a low or high surrogate. It the next // iteration we 1) check if the low surrogate is followed by a high // one, 2) reject sole high surrogate. input += 15; } else { return nullptr; } } } return input; } template const char16_t *arm_validate_utf16_as_ascii(const char16_t *input, size_t size) { const char16_t *end = input + size; while (end - input >= 16) { uint16x8_t in1 = vld1q_u16(reinterpret_cast(input)); uint16x8_t in2 = vld1q_u16(reinterpret_cast(input + 8)); uint16x8_t inor = vorrq_u16(in1, in2); if (!match_system(big_endian)) { inor = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(inor))); } // next we compute inor > 0x7f uint16x8_t cmp = vcgtq_u16(inor, vdupq_n_u16(0x7f)); uint64_t mask = vget_lane_u64(vreinterpret_u64_u8(vshrn_n_u16(cmp, 4)), 0); if (mask) { return nullptr; } input += 16; } return input; } template const result arm_validate_utf16_with_errors(const char16_t *input, size_t size) { const char16_t *start = input; const char16_t *end = input + size; const auto v_d8 = simd8::splat(0xd8); const auto v_f8 = simd8::splat(0xf8); const auto v_fc = simd8::splat(0xfc); const auto v_dc = simd8::splat(0xdc); while (input + 16 < end) { // 0. Load data: since the validation takes into account only higher // byte of each word, we compress the two vectors into one which // consists only the higher bytes. auto in0 = simd16(input); auto in1 = simd16(input + simd16::SIZE / sizeof(char16_t)); if (!match_system(big_endian)) { in0 = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(in0))); in1 = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(in1))); } const auto t0 = in0.shr<8>(); const auto t1 = in1.shr<8>(); const simd8 in = simd16::pack(t0, t1); // 1. Check whether we have any 0xD800..DFFF word (0b1101'1xxx'yyyy'yyyy). const uint64_t surrogates_wordmask = ((in & v_f8) == v_d8).to_bitmask64(); if (surrogates_wordmask == 0) { input += 16; } else { // 2. We have some surrogates that have to be distinguished: // - low surrogates: 0b1101'10xx'yyyy'yyyy (0xD800..0xDBFF) // - high surrogates: 0b1101'11xx'yyyy'yyyy (0xDC00..0xDFFF) // // Fact: high surrogate has 11th bit set (3rd bit in the higher word) // V - non-surrogate code units // V = not surrogates_wordmask const uint64_t V = ~surrogates_wordmask; // H - word-mask for high surrogates: the six highest bits are 0b1101'11 const auto vH = ((in & v_fc) == v_dc); const uint64_t H = vH.to_bitmask64(); // L - word mask for low surrogates // L = not H and surrogates_wordmask const uint64_t L = ~H & surrogates_wordmask; const uint64_t a = L & (H >> 4); // A low surrogate must be followed by high one. // (A low surrogate placed in the 7th register's word // is an exception we handle.) const uint64_t b = a << 4; // Just mark that the opposite fact is hold, // thanks to that we have only two masks for valid case. const uint64_t c = V | a | b; // Combine all the masks into the final one. if (c == ~0ull) { // The whole input register contains valid UTF-16, i.e., // either single code units or proper surrogate pairs. input += 16; } else if (c == 0xfffffffffffffffull) { // The 15 lower code units of the input register contains valid UTF-16. // The 15th word may be either a low or high surrogate. It the next // iteration we 1) check if the low surrogate is followed by a high // one, 2) reject sole high surrogate. input += 15; } else { return result(error_code::SURROGATE, input - start); } } } return result(error_code::SUCCESS, input - start); } /* end file src/arm64/arm_validate_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/arm64/arm_validate_utf32le.cpp */ const char32_t *arm_validate_utf32le(const char32_t *input, size_t size) { const char32_t *end = input + size; const uint32x4_t standardmax = vmovq_n_u32(0x10ffff); const uint32x4_t offset = vmovq_n_u32(0xffff2000); const uint32x4_t standardoffsetmax = vmovq_n_u32(0xfffff7ff); uint32x4_t currentmax = vmovq_n_u32(0x0); uint32x4_t currentoffsetmax = vmovq_n_u32(0x0); while (end - input >= 4) { const uint32x4_t in = vld1q_u32(reinterpret_cast(input)); currentmax = vmaxq_u32(in, currentmax); currentoffsetmax = vmaxq_u32(vaddq_u32(in, offset), currentoffsetmax); input += 4; } uint32x4_t is_zero = veorq_u32(vmaxq_u32(currentmax, standardmax), standardmax); if (vmaxvq_u32(is_zero) != 0) { return nullptr; } is_zero = veorq_u32(vmaxq_u32(currentoffsetmax, standardoffsetmax), standardoffsetmax); if (vmaxvq_u32(is_zero) != 0) { return nullptr; } return input; } const result arm_validate_utf32le_with_errors(const char32_t *input, size_t size) { const char32_t *start = input; const char32_t *end = input + size; const uint32x4_t standardmax = vmovq_n_u32(0x10ffff); const uint32x4_t offset = vmovq_n_u32(0xffff2000); const uint32x4_t standardoffsetmax = vmovq_n_u32(0xfffff7ff); uint32x4_t currentmax = vmovq_n_u32(0x0); uint32x4_t currentoffsetmax = vmovq_n_u32(0x0); while (end - input >= 4) { const uint32x4_t in = vld1q_u32(reinterpret_cast(input)); currentmax = vmaxq_u32(in, currentmax); currentoffsetmax = vmaxq_u32(vaddq_u32(in, offset), currentoffsetmax); uint32x4_t is_zero = veorq_u32(vmaxq_u32(currentmax, standardmax), standardmax); if (vmaxvq_u32(is_zero) != 0) { return result(error_code::TOO_LARGE, input - start); } is_zero = veorq_u32(vmaxq_u32(currentoffsetmax, standardoffsetmax), standardoffsetmax); if (vmaxvq_u32(is_zero) != 0) { return result(error_code::SURROGATE, input - start); } input += 4; } return result(error_code::SUCCESS, input - start); } /* end file src/arm64/arm_validate_utf32le.cpp */ #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/arm64/arm_convert_latin1_to_utf16.cpp */ template std::pair arm_convert_latin1_to_utf16(const char *buf, size_t len, char16_t *utf16_output) { const char *end = buf + len; while (end - buf >= 16) { uint8x16_t in8 = vld1q_u8(reinterpret_cast(buf)); uint16x8_t inlow = vmovl_u8(vget_low_u8(in8)); if (!match_system(big_endian)) { inlow = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(inlow))); } vst1q_u16(reinterpret_cast(utf16_output), inlow); uint16x8_t inhigh = vmovl_u8(vget_high_u8(in8)); if (!match_system(big_endian)) { inhigh = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(inhigh))); } vst1q_u16(reinterpret_cast(utf16_output + 8), inhigh); utf16_output += 16; buf += 16; } return std::make_pair(buf, utf16_output); } /* end file src/arm64/arm_convert_latin1_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/arm64/arm_convert_latin1_to_utf32.cpp */ std::pair arm_convert_latin1_to_utf32(const char *buf, size_t len, char32_t *utf32_output) { const char *end = buf + len; while (end - buf >= 16) { uint8x16_t in8 = vld1q_u8(reinterpret_cast(buf)); uint16x8_t in8low = vmovl_u8(vget_low_u8(in8)); uint32x4_t in16lowlow = vmovl_u16(vget_low_u16(in8low)); uint32x4_t in16lowhigh = vmovl_u16(vget_high_u16(in8low)); uint16x8_t in8high = vmovl_u8(vget_high_u8(in8)); uint32x4_t in8highlow = vmovl_u16(vget_low_u16(in8high)); uint32x4_t in8highhigh = vmovl_u16(vget_high_u16(in8high)); vst1q_u32(reinterpret_cast(utf32_output), in16lowlow); vst1q_u32(reinterpret_cast(utf32_output + 4), in16lowhigh); vst1q_u32(reinterpret_cast(utf32_output + 8), in8highlow); vst1q_u32(reinterpret_cast(utf32_output + 12), in8highhigh); utf32_output += 16; buf += 16; } return std::make_pair(buf, utf32_output); } /* end file src/arm64/arm_convert_latin1_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/arm64/arm_convert_latin1_to_utf8.cpp */ /* Returns a pair: the first unprocessed byte from buf and utf8_output A scalar routing should carry on the conversion of the tail. */ std::pair arm_convert_latin1_to_utf8(const char *latin1_input, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char *end = latin1_input + len; const uint16x8_t v_c080 = vmovq_n_u16((uint16_t)0xc080); // We always write 16 bytes, of which more than the first 8 bytes // are valid. A safety margin of 8 is more than sufficient. while (end - latin1_input >= 16 + 8) { uint8x16_t in8 = vld1q_u8(reinterpret_cast(latin1_input)); if (vmaxvq_u8(in8) <= 0x7F) { // ASCII fast path!!!! vst1q_u8(utf8_output, in8); utf8_output += 16; latin1_input += 16; continue; } // We just fallback on UTF-16 code. This could be optimized/simplified // further. uint16x8_t in16 = vmovl_u8(vget_low_u8(in8)); // 1. prepare 2-byte values // input 8-bit word : [aabb|bbbb] x 8 // expected output : [1100|00aa|10bb|bbbb] x 8 const uint16x8_t v_1f00 = vmovq_n_u16((int16_t)0x1f00); const uint16x8_t v_003f = vmovq_n_u16((int16_t)0x003f); // t0 = [0000|00aa|bbbb|bb00] const uint16x8_t t0 = vshlq_n_u16(in16, 2); // t1 = [0000|00aa|0000|0000] const uint16x8_t t1 = vandq_u16(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const uint16x8_t t2 = vandq_u16(in16, v_003f); // t3 = [0000|00aa|00bb|bbbb] const uint16x8_t t3 = vorrq_u16(t1, t2); // t4 = [1100|00aa|10bb|bbbb] const uint16x8_t t4 = vorrq_u16(t3, v_c080); // 2. merge ASCII and 2-byte codewords const uint16x8_t v_007f = vmovq_n_u16((uint16_t)0x007F); const uint16x8_t one_byte_bytemask = vcleq_u16(in16, v_007f); const uint8x16_t utf8_unpacked = vreinterpretq_u8_u16(vbslq_u16(one_byte_bytemask, in16, t4)); // 3. prepare bitmask for 8-bit lookup #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t mask = simdutf_make_uint16x8_t( 0x0001, 0x0004, 0x0010, 0x0040, 0x0002, 0x0008, 0x0020, 0x0080); #else const uint16x8_t mask = {0x0001, 0x0004, 0x0010, 0x0040, 0x0002, 0x0008, 0x0020, 0x0080}; #endif uint16_t m2 = vaddvq_u16(vandq_u16(one_byte_bytemask, mask)); // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[m2][0]; const uint8x16_t shuffle = vld1q_u8(row + 1); const uint8x16_t utf8_packed = vqtbl1q_u8(utf8_unpacked, shuffle); // 5. store bytes vst1q_u8(utf8_output, utf8_packed); // 6. adjust pointers latin1_input += 8; utf8_output += row[0]; } // while return std::make_pair(latin1_input, reinterpret_cast(utf8_output)); } /* end file src/arm64/arm_convert_latin1_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/arm64/arm_convert_utf8_to_latin1.cpp */ // Convert up to 16 bytes from utf8 to utf16 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 16, usually 12). size_t convert_masked_utf8_to_latin1(const char *input, uint64_t utf8_end_of_code_point_mask, char *&latin1_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // uint8x16_t in = vld1q_u8(reinterpret_cast(input)); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // We first try a few fast paths. // The obvious first test is ASCII, which actually consumes the full 16. if (utf8_end_of_code_point_mask == 0xfff) { // We process in chunks of 12 bytes vst1q_u8(reinterpret_cast(latin1_output), in); latin1_output += 12; // We wrote 12 18-bit characters. return 12; // We consumed 12 bytes. } /// We do not have a fast path available, or the fast path is unimportant, so /// we fallback. const uint8_t idx = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][1]; // this indicates an invalid input: if (idx >= 64) { return consumed; } // Here we should have (idx < 64), if not, there is a bug in the validation or // elsewhere. SIX (6) input code-code units this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. Converts 6 // 1-2 byte UTF-8 characters to 6 UTF-16 characters. This is a relatively easy // scenario we process SIX (6) input code-code units. The max length in bytes // of six code code units spanning between 1 and 2 bytes each is 12 bytes. uint8x16_t sh = vld1q_u8(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx])); // Shuffle // 1 byte: 00000000 0bbbbbbb // 2 byte: 110aaaaa 10bbbbbb uint16x8_t perm = vreinterpretq_u16_u8(vqtbl1q_u8(in, sh)); // Mask // 1 byte: 00000000 0bbbbbbb // 2 byte: 00000000 00bbbbbb uint16x8_t ascii = vandq_u16(perm, vmovq_n_u16(0x7f)); // 6 or 7 bits // 1 byte: 00000000 00000000 // 2 byte: 000aaaaa 00000000 uint16x8_t highbyte = vandq_u16(perm, vmovq_n_u16(0x1f00)); // 5 bits // Combine with a shift right accumulate // 1 byte: 00000000 0bbbbbbb // 2 byte: 00000aaa aabbbbbb uint16x8_t composed = vsraq_n_u16(ascii, highbyte, 2); // writing 8 bytes even though we only care about the first 6 bytes. uint8x8_t latin1_packed = vmovn_u16(composed); vst1_u8(reinterpret_cast(latin1_output), latin1_packed); latin1_output += 6; // We wrote 6 bytes. return consumed; } /* end file src/arm64/arm_convert_utf8_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/arm64/arm_convert_utf8_to_utf16.cpp */ // Convert up to 16 bytes from utf8 to utf16 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 16, usually 12). template size_t convert_masked_utf8_to_utf16(const char *input, uint64_t utf8_end_of_code_point_mask, char16_t *&utf16_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // uint8x16_t in = vld1q_u8(reinterpret_cast(input)); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // We first try a few fast paths. // The obvious first test is ASCII, which actually consumes the full 16. if ((utf8_end_of_code_point_mask & 0xFFFF) == 0xffff) { // We process in chunks of 16 bytes // The routine in simd.h is reused. simd8 temp{vreinterpretq_s8_u8(in)}; temp.store_ascii_as_utf16(utf16_output); utf16_output += 16; // We wrote 16 16-bit characters. return 16; // We consumed 16 bytes. } // 3 byte sequences are the next most common, as seen in CJK, which has long // sequences of these. if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 2-byte // UTF-16 code units. uint16x4_t composed = convert_utf8_3_byte_to_utf16(in); // Byte swap if necessary if (!match_system(big_endian)) { composed = vreinterpret_u16_u8(vrev16_u8(vreinterpret_u8_u16(composed))); } vst1_u16(reinterpret_cast(utf16_output), composed); utf16_output += 4; // We wrote 4 16-bit characters. return 12; // We consumed 12 bytes. } // 2 byte sequences occur in short bursts in languages like Greek and Russian. if ((utf8_end_of_code_point_mask & 0xFFF) == 0xaaa) { // We want to take 6 2-byte UTF-8 code units and turn them into 6 2-byte // UTF-16 code units. uint16x8_t composed = convert_utf8_2_byte_to_utf16(in); // Byte swap if necessary if (!match_system(big_endian)) { composed = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(composed))); } vst1q_u16(reinterpret_cast(utf16_output), composed); utf16_output += 6; // We wrote 6 16-bit characters. return 12; // We consumed 12 bytes. } /// We do not have a fast path available, or the fast path is unimportant, so /// we fallback. const uint8_t idx = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][1]; if (idx < 64) { // SIX (6) input code-code units // Convert to UTF-16 uint16x8_t composed = convert_utf8_1_to_2_byte_to_utf16(in, idx); // Byte swap if necessary if (!match_system(big_endian)) { composed = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(composed))); } // Store vst1q_u16(reinterpret_cast(utf16_output), composed); utf16_output += 6; // We wrote 6 16-bit characters. return consumed; } else if (idx < 145) { // FOUR (4) input code-code units // UTF-16 and UTF-32 use similar algorithms, but UTF-32 skips the narrowing. uint8x16_t sh = vld1q_u8(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx])); // XXX: depending on the system scalar instructions might be faster. // 1 byte: 00000000 00000000 0ccccccc // 2 byte: 00000000 110bbbbb 10cccccc // 3 byte: 1110aaaa 10bbbbbb 10cccccc uint32x4_t perm = vreinterpretq_u32_u8(vqtbl1q_u8(in, sh)); // 1 byte: 00000000 0ccccccc // 2 byte: xx0bbbbb x0cccccc // 3 byte: xxbbbbbb x0cccccc uint16x4_t lowperm = vmovn_u32(perm); // Partially mask with bic (doesn't require a temporary register unlike and) // The shift left insert below will clear the top bits. // 1 byte: 00000000 00000000 // 2 byte: xx0bbbbb 00000000 // 3 byte: xxbbbbbb 00000000 uint16x4_t middlebyte = vbic_u16(lowperm, vmov_n_u16(uint16_t(~0xFF00))); // ASCII // 1 byte: 00000000 0ccccccc // 2+byte: 00000000 00cccccc uint16x4_t ascii = vand_u16(lowperm, vmov_n_u16(0x7F)); // Split into narrow vectors. // 2 byte: 00000000 00000000 // 3 byte: 00000000 xxxxaaaa uint16x4_t highperm = vshrn_n_u32(perm, 16); // Shift right accumulate the middle byte // 1 byte: 00000000 0ccccccc // 2 byte: 00xx0bbb bbcccccc // 3 byte: 00xxbbbb bbcccccc uint16x4_t middlelow = vsra_n_u16(ascii, middlebyte, 2); // Shift left and insert the top 4 bits, overwriting the garbage // 1 byte: 00000000 0ccccccc // 2 byte: 00000bbb bbcccccc // 3 byte: aaaabbbb bbcccccc uint16x4_t composed = vsli_n_u16(middlelow, highperm, 12); // Byte swap if necessary if (!match_system(big_endian)) { composed = vreinterpret_u16_u8(vrev16_u8(vreinterpret_u8_u16(composed))); } vst1_u16(reinterpret_cast(utf16_output), composed); utf16_output += 4; // We wrote 4 16-bit codepoints return consumed; } else if (idx < 209) { // THREE (3) input code-code units if (input_utf8_end_of_code_point_mask == 0x888) { // We want to take 3 4-byte UTF-8 code units and turn them into 3 4-byte // UTF-16 pairs. Generating surrogate pairs is a little tricky though, but // it is easier when we can assume they are all pairs. This version does // not use the LUT, but 4 byte sequences are less common and the overhead // of the extra memory access is less important than the early branch // overhead in shorter sequences. // Swap byte pairs // 10dddddd 10cccccc|10bbbbbb 11110aaa // 10cccccc 10dddddd|11110aaa 10bbbbbb uint8x16_t swap = vrev16q_u8(in); // Shift left 2 bits // cccccc00 dddddd00 xxxxxxxx bbbbbb00 uint32x4_t shift = vreinterpretq_u32_u8(vshlq_n_u8(swap, 2)); // Create a magic number containing the low 2 bits of the trail surrogate // and all the corrections needed to create the pair. UTF-8 4b prefix = // -0x0000|0xF000 surrogate offset = -0x0000|0x0040 (0x10000 << 6) // surrogate high = +0x0000|0xD800 // surrogate low = +0xDC00|0x0000 // ------------------------------- // = +0xDC00|0xE7C0 uint32x4_t magic = vmovq_n_u32(0xDC00E7C0); // Generate unadjusted trail surrogate minus lowest 2 bits // xxxxxxxx xxxxxxxx|11110aaa bbbbbb00 uint32x4_t trail = vbslq_u32(vmovq_n_u32(0x0000FF00), vreinterpretq_u32_u8(swap), shift); // Insert low 2 bits of trail surrogate to magic number for later // 11011100 00000000 11100111 110000cc uint16x8_t magic_with_low_2 = vreinterpretq_u16_u32(vsraq_n_u32(magic, shift, 30)); // Generate lead surrogate // xxxxcccc ccdddddd|xxxxxxxx xxxxxxxx uint32x4_t lead = vreinterpretq_u32_u16( vsliq_n_u16(vreinterpretq_u16_u8(swap), vreinterpretq_u16_u8(in), 6)); // Mask out lead // 000000cc ccdddddd|xxxxxxxx xxxxxxxx lead = vbicq_u32(lead, vmovq_n_u32(uint32_t(~0x03FFFFFF))); // Blend pairs // 000000cc ccdddddd|11110aaa bbbbbb00 uint16x8_t blend = vreinterpretq_u16_u32( vbslq_u32(vmovq_n_u32(0x0000FFFF), trail, lead)); // Add magic number to finish the result // 110111CC CCDDDDDD|110110AA BBBBBBCC uint16x8_t composed = vaddq_u16(blend, magic_with_low_2); // Byte swap if necessary if (!match_system(big_endian)) { composed = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(composed))); } uint16_t buffer[8]; vst1q_u16(reinterpret_cast(buffer), composed); for (int k = 0; k < 6; k++) { utf16_output[k] = buffer[k]; } // the loop might compiler to a couple of instructions. // We need some validation. See // https://github.com/simdutf/simdutf/pull/631 #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO uint8x16_t expected_mask = simdutf_make_uint8x16_t( 0xf8, 0xc0, 0xc0, 0xc0, 0xf8, 0xc0, 0xc0, 0xc0, 0xf8, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0); #else uint8x16_t expected_mask = {0xf8, 0xc0, 0xc0, 0xc0, 0xf8, 0xc0, 0xc0, 0xc0, 0xf8, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0}; #endif #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO uint8x16_t expected = simdutf_make_uint8x16_t( 0xf0, 0x80, 0x80, 0x80, 0xf0, 0x80, 0x80, 0x80, 0xf0, 0x80, 0x80, 0x80, 0x0, 0x0, 0x0, 0x0); #else uint8x16_t expected = {0xf0, 0x80, 0x80, 0x80, 0xf0, 0x80, 0x80, 0x80, 0xf0, 0x80, 0x80, 0x80, 0x0, 0x0, 0x0, 0x0}; #endif uint8x16_t check = vceqq_u8(vandq_u8(in, expected_mask), expected); bool correct = (vminvq_u32(vreinterpretq_u32_u8(check)) == 0xFFFFFFFF); // The validation is just three instructions and it is not on a critical // path. if (correct) { utf16_output += 6; // We wrote 3 32-bit surrogate pairs. } return 12; // We consumed 12 bytes. } // 3 1-4 byte sequences uint8x16_t sh = vld1q_u8(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx])); // 1 byte: 00000000 00000000 00000000 0ddddddd // 3 byte: 00000000 00000000 110ccccc 10dddddd // 3 byte: 00000000 1110bbbb 10cccccc 10dddddd // 4 byte: 11110aaa 10bbbbbb 10cccccc 10dddddd uint32x4_t perm = vreinterpretq_u32_u8(vqtbl1q_u8(in, sh)); // added to fix issue https://github.com/simdutf/simdutf/issues/514 // We only want to write 2 * 16-bit code units when that is actually what we // have. Unfortunately, we cannot trust the input. So it is possible to get // 0xff as an input byte and it should not result in a surrogate pair. We // need to check for that. uint32_t permbuffer[4]; vst1q_u32(permbuffer, perm); // Mask the low and middle bytes // 00000000 00000000 00000000 0ddddddd uint32x4_t ascii = vandq_u32(perm, vmovq_n_u32(0x7f)); // Because the surrogates need more work, the high surrogate is computed // first. uint32x4_t middlehigh = vshlq_n_u32(perm, 2); // 00000000 00000000 00cccccc 00000000 uint32x4_t middlebyte = vandq_u32(perm, vmovq_n_u32(0x3F00)); // Start assembling the sequence. Since the 4th byte is in the same position // as it would be in a surrogate and there is no dependency, shift left // instead of right. 3 byte: 00000000 10bbbbxx xxxxxxxx xxxxxxxx 4 byte: // 11110aaa bbbbbbxx xxxxxxxx xxxxxxxx uint32x4_t ab = vbslq_u32(vmovq_n_u32(0xFF000000), perm, middlehigh); // Top 16 bits contains the high ten bits of the surrogate pair before // correction 3 byte: 00000000 10bbbbcc|cccc0000 00000000 4 byte: 11110aaa // bbbbbbcc|cccc0000 00000000 - high 10 bits correct w/o correction uint32x4_t abc = vbslq_u32(vmovq_n_u32(0xFFFC0000), ab, vshlq_n_u32(middlebyte, 4)); // Combine the low 6 or 7 bits by a shift right accumulate // 3 byte: 00000000 00000010|bbbbcccc ccdddddd - low 16 bits correct // 4 byte: 00000011 110aaabb|bbbbcccc ccdddddd - low 10 bits correct w/o // correction uint32x4_t composed = vsraq_n_u32(ascii, abc, 6); // After this is for surrogates // Blend the low and high surrogates // 4 byte: 11110aaa bbbbbbcc|bbbbcccc ccdddddd uint32x4_t mixed = vbslq_u32(vmovq_n_u32(0xFFFF0000), abc, composed); // Clear the upper 6 bits of the low surrogate. Don't clear the upper bits // yet as 0x10000 was not subtracted from the codepoint yet. 4 byte: // 11110aaa bbbbbbcc|000000cc ccdddddd uint16x8_t masked_pair = vreinterpretq_u16_u32( vbicq_u32(mixed, vmovq_n_u32(uint32_t(~0xFFFF03FF)))); // Correct the remaining UTF-8 prefix, surrogate offset, and add the // surrogate prefixes in one magic 16-bit addition. similar magic number but // without the continue byte adjust and halfword swapped UTF-8 4b prefix = // -0xF000|0x0000 surrogate offset = -0x0040|0x0000 (0x10000 << 6) // surrogate high = +0xD800|0x0000 // surrogate low = +0x0000|0xDC00 // ----------------------------------- // = +0xE7C0|0xDC00 uint16x8_t magic = vreinterpretq_u16_u32(vmovq_n_u32(0xE7C0DC00)); // 4 byte: 110110AA BBBBBBCC|110111CC CCDDDDDD - surrogate pair complete uint32x4_t surrogates = vreinterpretq_u32_u16(vaddq_u16(masked_pair, magic)); // If the high bit is 1 (s32 less than zero), this needs a surrogate pair uint32x4_t is_pair = vcltzq_s32(vreinterpretq_s32_u32(perm)); // Select either the 4 byte surrogate pair or the 2 byte solo codepoint // 3 byte: 0xxxxxxx xxxxxxxx|bbbbcccc ccdddddd // 4 byte: 110110AA BBBBBBCC|110111CC CCDDDDDD uint32x4_t selected = vbslq_u32(is_pair, surrogates, composed); // Byte swap if necessary if (!match_system(big_endian)) { selected = vreinterpretq_u32_u8(vrev16q_u8(vreinterpretq_u8_u32(selected))); } // Attempting to shuffle and store would be complex, just scalarize. uint32_t buffer[4]; vst1q_u32(buffer, selected); // Test for the top bit of the surrogate mask. Remove due to issue 514 // const uint32_t SURROGATE_MASK = match_system(big_endian) ? 0x80000000 : // 0x00800000; for (size_t i = 0; i < 3; i++) { // Surrogate // Used to be if (buffer[i] & SURROGATE_MASK) { // See discussion above. // patch for issue https://github.com/simdutf/simdutf/issues/514 if ((permbuffer[i] & 0xf8000000) == 0xf0000000) { utf16_output[0] = uint16_t(buffer[i] >> 16); utf16_output[1] = uint16_t(buffer[i] & 0xFFFF); utf16_output += 2; } else { utf16_output[0] = uint16_t(buffer[i] & 0xFFFF); utf16_output++; } } return consumed; } else { // here we know that there is an error but we do not handle errors return 12; } } /* end file src/arm64/arm_convert_utf8_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/arm64/arm_convert_utf8_to_utf32.cpp */ // Convert up to 12 bytes from utf8 to utf32 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). size_t convert_masked_utf8_to_utf32(const char *input, uint64_t utf8_end_of_code_point_mask, char32_t *&utf32_out) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // uint32_t *&utf32_output = reinterpret_cast(utf32_out); uint8x16_t in = vld1q_u8(reinterpret_cast(input)); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xFFF; // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // // We first try a few fast paths. if (utf8_end_of_code_point_mask == 0xfff) { // We process in chunks of 12 bytes. // use fast implementation in src/simdutf/arm64/simd.h // Ideally the compiler can keep the tables in registers. simd8 temp{vreinterpretq_s8_u8(in)}; temp.store_ascii_as_utf32_tbl(utf32_out); utf32_output += 12; // We wrote 12 32-bit characters. return 12; // We consumed 12 bytes. } if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 4-byte // UTF-32 code units. Convert to UTF-16 uint16x4_t composed_utf16 = convert_utf8_3_byte_to_utf16(in); // Zero extend and store via ST2 with a zero. uint16x4x2_t interleaver = {{composed_utf16, vmov_n_u16(0)}}; vst2_u16(reinterpret_cast(utf32_output), interleaver); utf32_output += 4; // We wrote 4 32-bit characters. return 12; // We consumed 12 bytes. } // 2 byte sequences occur in short bursts in languages like Greek and Russian. if (input_utf8_end_of_code_point_mask == 0xaaa) { // We want to take 6 2-byte UTF-8 code units and turn them into 6 4-byte // UTF-32 code units. Convert to UTF-16 uint16x8_t composed_utf16 = convert_utf8_2_byte_to_utf16(in); // Zero extend and store via ST2 with a zero. uint16x8x2_t interleaver = {{composed_utf16, vmovq_n_u16(0)}}; vst2q_u16(reinterpret_cast(utf32_output), interleaver); utf32_output += 6; // We wrote 6 32-bit characters. return 12; // We consumed 12 bytes. } /// Either no fast path or an unimportant fast path. const uint8_t idx = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][1]; if (idx < 64) { // SIX (6) input code-code units // Convert to UTF-16 uint16x8_t composed_utf16 = convert_utf8_1_to_2_byte_to_utf16(in, idx); // Zero extend and store with ST2 and zero uint16x8x2_t interleaver = {{composed_utf16, vmovq_n_u16(0)}}; vst2q_u16(reinterpret_cast(utf32_output), interleaver); utf32_output += 6; // We wrote 6 32-bit characters. return consumed; } else if (idx < 145) { // FOUR (4) input code-code units // UTF-16 and UTF-32 use similar algorithms, but UTF-32 skips the narrowing. uint8x16_t sh = vld1q_u8(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx])); // Shuffle // 1 byte: 00000000 00000000 0ccccccc // 2 byte: 00000000 110bbbbb 10cccccc // 3 byte: 1110aaaa 10bbbbbb 10cccccc uint32x4_t perm = vreinterpretq_u32_u8(vqtbl1q_u8(in, sh)); // Split // 00000000 00000000 0ccccccc uint32x4_t ascii = vandq_u32(perm, vmovq_n_u32(0x7F)); // 6 or 7 bits // Note: unmasked // xxxxxxxx aaaaxxxx xxxxxxxx uint32x4_t high = vshrq_n_u32(perm, 4); // 4 bits // Use 16 bit bic instead of and. // The top bits will be corrected later in the bsl // 00000000 10bbbbbb 00000000 uint32x4_t middle = vreinterpretq_u32_u16( vbicq_u16(vreinterpretq_u16_u32(perm), vmovq_n_u16(uint16_t(~0xff00)))); // 5 or 6 bits // Combine low and middle with shift right accumulate // 00000000 00xxbbbb bbcccccc uint32x4_t lowmid = vsraq_n_u32(ascii, middle, 2); // Insert top 4 bits from high byte with bitwise select // 00000000 aaaabbbb bbcccccc uint32x4_t composed = vbslq_u32(vmovq_n_u32(0x0000F000), high, lowmid); vst1q_u32(utf32_output, composed); utf32_output += 4; // We wrote 4 32-bit characters. return consumed; } else if (idx < 209) { // THREE (3) input code-code units if (input_utf8_end_of_code_point_mask == 0x888) { // We want to take 3 4-byte UTF-8 code units and turn them into 3 4-byte // UTF-32 code units. This uses the same method as the fixed 3 byte // version, reversing and shift left insert. However, there is no need for // a shuffle mask now, just rev16 and rev32. // // This version does not use the LUT, but 4 byte sequences are less common // and the overhead of the extra memory access is less important than the // early branch overhead in shorter sequences, so it comes last. // Swap pairs of bytes // 10dddddd|10cccccc|10bbbbbb|11110aaa // 10cccccc 10dddddd|11110aaa 10bbbbbb uint16x8_t swap1 = vreinterpretq_u16_u8(vrev16q_u8(in)); // Shift left and insert // xxxxcccc ccdddddd|xxxxxxxa aabbbbbb uint16x8_t merge1 = vsliq_n_u16(swap1, vreinterpretq_u16_u8(in), 6); // Swap 16-bit lanes // xxxxcccc ccdddddd xxxxxxxa aabbbbbb // xxxxxxxa aabbbbbb xxxxcccc ccdddddd uint32x4_t swap2 = vreinterpretq_u32_u16(vrev32q_u16(merge1)); // Shift insert again // xxxxxxxx xxxaaabb bbbbcccc ccdddddd uint32x4_t merge2 = vsliq_n_u32(swap2, vreinterpretq_u32_u16(merge1), 12); // Clear the garbage // 00000000 000aaabb bbbbcccc ccdddddd uint32x4_t composed = vandq_u32(merge2, vmovq_n_u32(0x1FFFFF)); // Store vst1q_u32(utf32_output, composed); utf32_output += 3; // We wrote 3 32-bit characters. return 12; // We consumed 12 bytes. } // Unlike UTF-16, doing a fast codepath doesn't have nearly as much benefit // due to surrogates no longer being involved. uint8x16_t sh = vld1q_u8(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx])); // 1 byte: 00000000 00000000 00000000 0ddddddd // 2 byte: 00000000 00000000 110ccccc 10dddddd // 3 byte: 00000000 1110bbbb 10cccccc 10dddddd // 4 byte: 11110aaa 10bbbbbb 10cccccc 10dddddd uint32x4_t perm = vreinterpretq_u32_u8(vqtbl1q_u8(in, sh)); // Ascii uint32x4_t ascii = vandq_u32(perm, vmovq_n_u32(0x7F)); uint32x4_t middle = vandq_u32(perm, vmovq_n_u32(0x3f00)); // When converting the way we do, the 3 byte prefix will be interpreted as // the 18th bit being set, since the code would interpret the lead byte // (0b1110bbbb) as a continuation byte (0b10bbbbbb). To fix this, we can // either xor or do an 8 bit add of the 6th bit shifted right by 1. Since // NEON has shift right accumulate, we use that. // 4 byte 3 byte // 10bbbbbb 1110bbbb // 00000000 01000000 6th bit // 00000000 00100000 shift right // 10bbbbbb 0000bbbb add // 00bbbbbb 0000bbbb mask uint8x16_t correction = vreinterpretq_u8_u32(vandq_u32(perm, vmovq_n_u32(0x00400000))); uint32x4_t corrected = vreinterpretq_u32_u8( vsraq_n_u8(vreinterpretq_u8_u32(perm), correction, 1)); // 00000000 00000000 0000cccc ccdddddd uint32x4_t cd = vsraq_n_u32(ascii, middle, 2); // Insert twice // xxxxxxxx xxxaaabb bbbbxxxx xxxxxxxx uint32x4_t ab = vbslq_u32(vmovq_n_u32(0x01C0000), vshrq_n_u32(corrected, 6), vshrq_n_u32(corrected, 4)); // 00000000 000aaabb bbbbcccc ccdddddd uint32x4_t composed = vbslq_u32(vmovq_n_u32(0xFFE00FFF), cd, ab); // Store vst1q_u32(utf32_output, composed); utf32_output += 3; // We wrote 3 32-bit characters. return consumed; } else { // here we know that there is an error but we do not handle errors return 12; } } /* end file src/arm64/arm_convert_utf8_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/arm64/arm_convert_utf16_to_latin1.cpp */ template std::pair arm_convert_utf16_to_latin1(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *end = buf + len; while (end - buf >= 8) { uint16x8_t in = vld1q_u16(reinterpret_cast(buf)); if (!match_system(big_endian)) { in = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(in))); } if (vmaxvq_u16(in) <= 0xff) { // 1. pack the bytes uint8x8_t latin1_packed = vmovn_u16(in); // 2. store (8 bytes) vst1_u8(reinterpret_cast(latin1_output), latin1_packed); // 3. adjust pointers buf += 8; latin1_output += 8; } else { return std::make_pair(nullptr, reinterpret_cast(latin1_output)); } } // while return std::make_pair(buf, latin1_output); } template std::pair arm_convert_utf16_to_latin1_with_errors(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *start = buf; const char16_t *end = buf + len; while (end - buf >= 8) { uint16x8_t in = vld1q_u16(reinterpret_cast(buf)); if (!match_system(big_endian)) { in = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(in))); } if (vmaxvq_u16(in) <= 0xff) { // 1. pack the bytes uint8x8_t latin1_packed = vmovn_u16(in); // 2. store (8 bytes) vst1_u8(reinterpret_cast(latin1_output), latin1_packed); // 3. adjust pointers buf += 8; latin1_output += 8; } else { // Let us do a scalar fallback. for (int k = 0; k < 8; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if (word <= 0xff) { *latin1_output++ = char(word); } else { return std::make_pair(result(error_code::TOO_LARGE, buf - start + k), latin1_output); } } } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), latin1_output); } /* end file src/arm64/arm_convert_utf16_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/arm64/arm_convert_utf16_to_utf32.cpp */ /* The vectorized algorithm works on single SSE register i.e., it loads eight 16-bit code units. We consider three cases: 1. an input register contains no surrogates and each value is in range 0x0000 .. 0x07ff. 2. an input register contains no surrogates and values are is in range 0x0000 .. 0xffff. 3. an input register contains surrogates --- i.e. codepoints can have 16 or 32 bits. Ad 1. When values are less than 0x0800, it means that a 16-bit code unit can be converted into: 1) single UTF8 byte (when it is an ASCII char) or 2) two UTF8 bytes. For this case we do only some shuffle to obtain these 2-byte codes and finally compress the whole SSE register with a single shuffle. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. Ad 2. When values fit in 16-bit code units, but are above 0x07ff, then a single word may produce one, two or three UTF8 bytes. We prepare data for all these three cases in two registers. The first register contains lower two UTF8 bytes (used in all cases), while the second one contains just the third byte for the three-UTF8-bytes case. Finally these two registers are interleaved forming eight-element array of 32-bit values. The array spans two SSE registers. The bytes from the registers are compressed using two shuffles. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. To summarize: - We need two 256-entry tables that have 8704 bytes in total. */ /* Returns a pair: the first unprocessed byte from buf and utf8_output A scalar routing should carry on the conversion of the tail. */ template std::pair arm_convert_utf16_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_out) { uint32_t *utf32_output = reinterpret_cast(utf32_out); const char16_t *end = buf + len; const uint16x8_t v_f800 = vmovq_n_u16((uint16_t)0xf800); const uint16x8_t v_d800 = vmovq_n_u16((uint16_t)0xd800); while (end - buf >= 8) { uint16x8_t in = vld1q_u16(reinterpret_cast(buf)); if (!match_system(big_endian)) { in = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(in))); } const uint16x8_t surrogates_bytemask = vceqq_u16(vandq_u16(in, v_f800), v_d800); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (vmaxvq_u16(surrogates_bytemask) == 0) { // case: no surrogate pairs, extend all 16-bit code units to 32-bit code // units vst1q_u32(utf32_output, vmovl_u16(vget_low_u16(in))); vst1q_u32(utf32_output + 4, vmovl_high_u16(in)); utf32_output += 8; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, reinterpret_cast(utf32_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return std::make_pair(buf, reinterpret_cast(utf32_output)); } /* Returns a pair: a result struct and utf8_output. If there is an error, the count field of the result is the position of the error. Otherwise, it is the position of the first unprocessed byte in buf (even if finished). A scalar routing should carry on the conversion of the tail if needed. */ template std::pair arm_convert_utf16_to_utf32_with_errors(const char16_t *buf, size_t len, char32_t *utf32_out) { uint32_t *utf32_output = reinterpret_cast(utf32_out); const char16_t *start = buf; const char16_t *end = buf + len; const uint16x8_t v_f800 = vmovq_n_u16((uint16_t)0xf800); const uint16x8_t v_d800 = vmovq_n_u16((uint16_t)0xd800); while ((end - buf) >= 8) { uint16x8_t in = vld1q_u16(reinterpret_cast(buf)); if (!match_system(big_endian)) { in = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(in))); } const uint16x8_t surrogates_bytemask = vceqq_u16(vandq_u16(in, v_f800), v_d800); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (vmaxvq_u16(surrogates_bytemask) == 0) { // case: no surrogate pairs, extend all 16-bit code units to 32-bit code // units vst1q_u32(utf32_output, vmovl_u16(vget_low_u16(in))); vst1q_u32(utf32_output + 4, vmovl_high_u16(in)); utf32_output += 8; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k - 1), reinterpret_cast(utf32_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf32_output)); } /* end file src/arm64/arm_convert_utf16_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF8 /* begin file src/arm64/arm_convert_utf16_to_utf8.cpp */ /* The vectorized algorithm works on single SSE register i.e., it loads eight 16-bit code units. We consider three cases: 1. an input register contains no surrogates and each value is in range 0x0000 .. 0x07ff. 2. an input register contains no surrogates and values are is in range 0x0000 .. 0xffff. 3. an input register contains surrogates --- i.e. codepoints can have 16 or 32 bits. Ad 1. When values are less than 0x0800, it means that a 16-bit code unit can be converted into: 1) single UTF8 byte (when it is an ASCII char) or 2) two UTF8 bytes. For this case we do only some shuffle to obtain these 2-byte codes and finally compress the whole SSE register with a single shuffle. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. Ad 2. When values fit in 16-bit code units, but are above 0x07ff, then a single word may produce one, two or three UTF8 bytes. We prepare data for all these three cases in two registers. The first register contains lower two UTF8 bytes (used in all cases), while the second one contains just the third byte for the three-UTF8-bytes case. Finally these two registers are interleaved forming eight-element array of 32-bit values. The array spans two SSE registers. The bytes from the registers are compressed using two shuffles. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. To summarize: - We need two 256-entry tables that have 8704 bytes in total. */ /* Returns a pair: the first unprocessed byte from buf and utf8_output A scalar routing should carry on the conversion of the tail. */ template std::pair arm_convert_utf16_to_utf8(const char16_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char16_t *end = buf + len; const uint16x8_t v_f800 = vmovq_n_u16((uint16_t)0xf800); const uint16x8_t v_d800 = vmovq_n_u16((uint16_t)0xd800); const uint16x8_t v_c080 = vmovq_n_u16((uint16_t)0xc080); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { uint16x8_t in = vld1q_u16(reinterpret_cast(buf)); if (!match_system(big_endian)) { in = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(in))); } if (vmaxvq_u16(in) <= 0x7F) { // ASCII fast path!!!! // It is common enough that we have sequences of 16 consecutive ASCII // characters. uint16x8_t nextin = vld1q_u16(reinterpret_cast(buf) + 8); if (!match_system(big_endian)) { nextin = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(nextin))); } if (vmaxvq_u16(nextin) > 0x7F) { // 1. pack the bytes // obviously suboptimal. uint8x8_t utf8_packed = vmovn_u16(in); // 2. store (8 bytes) vst1_u8(utf8_output, utf8_packed); // 3. adjust pointers buf += 8; utf8_output += 8; in = nextin; } else { // 1. pack the bytes // obviously suboptimal. uint8x16_t utf8_packed = vmovn_high_u16(vmovn_u16(in), nextin); // 2. store (16 bytes) vst1q_u8(utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } } if (vmaxvq_u16(in) <= 0x7FF) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const uint16x8_t v_1f00 = vmovq_n_u16((int16_t)0x1f00); const uint16x8_t v_003f = vmovq_n_u16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const uint16x8_t t0 = vshlq_n_u16(in, 2); // t1 = [000a|aaaa|0000|0000] const uint16x8_t t1 = vandq_u16(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const uint16x8_t t2 = vandq_u16(in, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const uint16x8_t t3 = vorrq_u16(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const uint16x8_t t4 = vorrq_u16(t3, v_c080); // 2. merge ASCII and 2-byte codewords const uint16x8_t v_007f = vmovq_n_u16((uint16_t)0x007F); const uint16x8_t one_byte_bytemask = vcleq_u16(in, v_007f); const uint8x16_t utf8_unpacked = vreinterpretq_u8_u16(vbslq_u16(one_byte_bytemask, in, t4)); // 3. prepare bitmask for 8-bit lookup #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t mask = simdutf_make_uint16x8_t( 0x0001, 0x0004, 0x0010, 0x0040, 0x0002, 0x0008, 0x0020, 0x0080); #else const uint16x8_t mask = {0x0001, 0x0004, 0x0010, 0x0040, 0x0002, 0x0008, 0x0020, 0x0080}; #endif uint16_t m2 = vaddvq_u16(vandq_u16(one_byte_bytemask, mask)); // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[m2][0]; const uint8x16_t shuffle = vld1q_u8(row + 1); const uint8x16_t utf8_packed = vqtbl1q_u8(utf8_unpacked, shuffle); // 5. store bytes vst1q_u8(utf8_output, utf8_packed); // 6. adjust pointers buf += 8; utf8_output += row[0]; continue; } const uint16x8_t surrogates_bytemask = vceqq_u16(vandq_u16(in, v_f800), v_d800); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (vmaxvq_u16(surrogates_bytemask) == 0) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t dup_even = simdutf_make_uint16x8_t( 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); #else const uint16x8_t dup_even = {0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e}; #endif /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) vmovq_n_u16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const uint16x8_t t0 = vreinterpretq_u16_u8( vqtbl1q_u8(vreinterpretq_u8_u16(in), vreinterpretq_u8_u16(dup_even))); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const uint16x8_t t1 = vandq_u16(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const uint16x8_t t2 = vorrq_u16(t1, simdutf_vec(0b1000000000000000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] const uint16x8_t s0 = vshrq_n_u16(in, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] const uint16x8_t s1 = vandq_u16(in, simdutf_vec(0b0000111111000000)); // [0000|bbbb|bb00|0000] => [00bb|bbbb|0000|0000] const uint16x8_t s1s = vshlq_n_u16(s1, 2); // [00bb|bbbb|0000|aaaa] const uint16x8_t s2 = vorrq_u16(s0, s1s); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const uint16x8_t s3 = vorrq_u16(s2, simdutf_vec(0b1100000011100000)); const uint16x8_t v_07ff = vmovq_n_u16((uint16_t)0x07FF); const uint16x8_t one_or_two_bytes_bytemask = vcleq_u16(in, v_07ff); const uint16x8_t m0 = vbicq_u16(simdutf_vec(0b0100000000000000), one_or_two_bytes_bytemask); const uint16x8_t s4 = veorq_u16(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const uint8x16_t out0 = vreinterpretq_u8_u16(vzip1q_u16(t2, s4)); const uint8x16_t out1 = vreinterpretq_u8_u16(vzip2q_u16(t2, s4)); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint16x8_t v_007f = vmovq_n_u16((uint16_t)0x007F); const uint16x8_t one_byte_bytemask = vcleq_u16(in, v_007f); #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t onemask = simdutf_make_uint16x8_t( 0x0001, 0x0004, 0x0010, 0x0040, 0x0100, 0x0400, 0x1000, 0x4000); const uint16x8_t twomask = simdutf_make_uint16x8_t( 0x0002, 0x0008, 0x0020, 0x0080, 0x0200, 0x0800, 0x2000, 0x8000); #else const uint16x8_t onemask = {0x0001, 0x0004, 0x0010, 0x0040, 0x0100, 0x0400, 0x1000, 0x4000}; const uint16x8_t twomask = {0x0002, 0x0008, 0x0020, 0x0080, 0x0200, 0x0800, 0x2000, 0x8000}; #endif const uint16x8_t combined = vorrq_u16(vandq_u16(one_byte_bytemask, onemask), vandq_u16(one_or_two_bytes_bytemask, twomask)); const uint16_t mask = vaddvq_u16(combined); // The following fast path may or may not be beneficial. /*if(mask == 0) { // We only have three-byte code units. Use fast path. const uint8x16_t shuffle = {2,3,1,6,7,5,10,11,9,14,15,13,0,0,0,0}; const uint8x16_t utf8_0 = vqtbl1q_u8(out0, shuffle); const uint8x16_t utf8_1 = vqtbl1q_u8(out1, shuffle); vst1q_u8(utf8_output, utf8_0); utf8_output += 12; vst1q_u8(utf8_output, utf8_1); utf8_output += 12; buf += 8; continue; }*/ const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const uint8x16_t shuffle0 = vld1q_u8(row0 + 1); const uint8x16_t utf8_0 = vqtbl1q_u8(out0, shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const uint8x16_t shuffle1 = vld1q_u8(row1 + 1); const uint8x16_t utf8_1 = vqtbl1q_u8(out1, shuffle1); vst1q_u8(utf8_output, utf8_0); utf8_output += row0[0]; vst1q_u8(utf8_output, utf8_1); utf8_output += row1[0]; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(buf, reinterpret_cast(utf8_output)); } /* Returns a pair: a result struct and utf8_output. If there is an error, the count field of the result is the position of the error. Otherwise, it is the position of the first unprocessed byte in buf (even if finished). A scalar routing should carry on the conversion of the tail if needed. */ template std::pair arm_convert_utf16_to_utf8_with_errors(const char16_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char16_t *start = buf; const char16_t *end = buf + len; const uint16x8_t v_f800 = vmovq_n_u16((uint16_t)0xf800); const uint16x8_t v_d800 = vmovq_n_u16((uint16_t)0xd800); const uint16x8_t v_c080 = vmovq_n_u16((uint16_t)0xc080); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { uint16x8_t in = vld1q_u16(reinterpret_cast(buf)); if (!match_system(big_endian)) { in = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(in))); } if (vmaxvq_u16(in) <= 0x7F) { // ASCII fast path!!!! // It is common enough that we have sequences of 16 consecutive ASCII // characters. uint16x8_t nextin = vld1q_u16(reinterpret_cast(buf) + 8); if (!match_system(big_endian)) { nextin = vreinterpretq_u16_u8(vrev16q_u8(vreinterpretq_u8_u16(nextin))); } if (vmaxvq_u16(nextin) > 0x7F) { // 1. pack the bytes // obviously suboptimal. uint8x8_t utf8_packed = vmovn_u16(in); // 2. store (8 bytes) vst1_u8(utf8_output, utf8_packed); // 3. adjust pointers buf += 8; utf8_output += 8; in = nextin; } else { // 1. pack the bytes // obviously suboptimal. uint8x16_t utf8_packed = vmovn_high_u16(vmovn_u16(in), nextin); // 2. store (16 bytes) vst1q_u8(utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } } if (vmaxvq_u16(in) <= 0x7FF) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const uint16x8_t v_1f00 = vmovq_n_u16((int16_t)0x1f00); const uint16x8_t v_003f = vmovq_n_u16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const uint16x8_t t0 = vshlq_n_u16(in, 2); // t1 = [000a|aaaa|0000|0000] const uint16x8_t t1 = vandq_u16(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const uint16x8_t t2 = vandq_u16(in, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const uint16x8_t t3 = vorrq_u16(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const uint16x8_t t4 = vorrq_u16(t3, v_c080); // 2. merge ASCII and 2-byte codewords const uint16x8_t v_007f = vmovq_n_u16((uint16_t)0x007F); const uint16x8_t one_byte_bytemask = vcleq_u16(in, v_007f); const uint8x16_t utf8_unpacked = vreinterpretq_u8_u16(vbslq_u16(one_byte_bytemask, in, t4)); // 3. prepare bitmask for 8-bit lookup #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t mask = simdutf_make_uint16x8_t( 0x0001, 0x0004, 0x0010, 0x0040, 0x0002, 0x0008, 0x0020, 0x0080); #else const uint16x8_t mask = {0x0001, 0x0004, 0x0010, 0x0040, 0x0002, 0x0008, 0x0020, 0x0080}; #endif uint16_t m2 = vaddvq_u16(vandq_u16(one_byte_bytemask, mask)); // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[m2][0]; const uint8x16_t shuffle = vld1q_u8(row + 1); const uint8x16_t utf8_packed = vqtbl1q_u8(utf8_unpacked, shuffle); // 5. store bytes vst1q_u8(utf8_output, utf8_packed); // 6. adjust pointers buf += 8; utf8_output += row[0]; continue; } const uint16x8_t surrogates_bytemask = vceqq_u16(vandq_u16(in, v_f800), v_d800); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (vmaxvq_u16(surrogates_bytemask) == 0) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t dup_even = simdutf_make_uint16x8_t( 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); #else const uint16x8_t dup_even = {0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e}; #endif /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) vmovq_n_u16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const uint16x8_t t0 = vreinterpretq_u16_u8( vqtbl1q_u8(vreinterpretq_u8_u16(in), vreinterpretq_u8_u16(dup_even))); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const uint16x8_t t1 = vandq_u16(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const uint16x8_t t2 = vorrq_u16(t1, simdutf_vec(0b1000000000000000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] const uint16x8_t s0 = vshrq_n_u16(in, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] const uint16x8_t s1 = vandq_u16(in, simdutf_vec(0b0000111111000000)); // [0000|bbbb|bb00|0000] => [00bb|bbbb|0000|0000] const uint16x8_t s1s = vshlq_n_u16(s1, 2); // [00bb|bbbb|0000|aaaa] const uint16x8_t s2 = vorrq_u16(s0, s1s); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const uint16x8_t s3 = vorrq_u16(s2, simdutf_vec(0b1100000011100000)); const uint16x8_t v_07ff = vmovq_n_u16((uint16_t)0x07FF); const uint16x8_t one_or_two_bytes_bytemask = vcleq_u16(in, v_07ff); const uint16x8_t m0 = vbicq_u16(simdutf_vec(0b0100000000000000), one_or_two_bytes_bytemask); const uint16x8_t s4 = veorq_u16(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const uint8x16_t out0 = vreinterpretq_u8_u16(vzip1q_u16(t2, s4)); const uint8x16_t out1 = vreinterpretq_u8_u16(vzip2q_u16(t2, s4)); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint16x8_t v_007f = vmovq_n_u16((uint16_t)0x007F); const uint16x8_t one_byte_bytemask = vcleq_u16(in, v_007f); #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t onemask = simdutf_make_uint16x8_t( 0x0001, 0x0004, 0x0010, 0x0040, 0x0100, 0x0400, 0x1000, 0x4000); const uint16x8_t twomask = simdutf_make_uint16x8_t( 0x0002, 0x0008, 0x0020, 0x0080, 0x0200, 0x0800, 0x2000, 0x8000); #else const uint16x8_t onemask = {0x0001, 0x0004, 0x0010, 0x0040, 0x0100, 0x0400, 0x1000, 0x4000}; const uint16x8_t twomask = {0x0002, 0x0008, 0x0020, 0x0080, 0x0200, 0x0800, 0x2000, 0x8000}; #endif const uint16x8_t combined = vorrq_u16(vandq_u16(one_byte_bytemask, onemask), vandq_u16(one_or_two_bytes_bytemask, twomask)); const uint16_t mask = vaddvq_u16(combined); // The following fast path may or may not be beneficial. /*if(mask == 0) { // We only have three-byte code units. Use fast path. const uint8x16_t shuffle = {2,3,1,6,7,5,10,11,9,14,15,13,0,0,0,0}; const uint8x16_t utf8_0 = vqtbl1q_u8(out0, shuffle); const uint8x16_t utf8_1 = vqtbl1q_u8(out1, shuffle); vst1q_u8(utf8_output, utf8_0); utf8_output += 12; vst1q_u8(utf8_output, utf8_1); utf8_output += 12; buf += 8; continue; }*/ const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const uint8x16_t shuffle0 = vld1q_u8(row0 + 1); const uint8x16_t utf8_0 = vqtbl1q_u8(out0, shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const uint8x16_t shuffle1 = vld1q_u8(row1 + 1); const uint8x16_t utf8_1 = vqtbl1q_u8(out1, shuffle1); vst1q_u8(utf8_output, utf8_0); utf8_output += row0[0]; vst1q_u8(utf8_output, utf8_1); utf8_output += row1[0]; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k - 1), reinterpret_cast(utf8_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf8_output)); } template simdutf_really_inline size_t arm64_utf8_length_from_utf16_bytemask(const char16_t *in, size_t size) { constexpr size_t N = 16; // we process 16 char16_t at a time, this is NEON specific if (N + 1 > size) { return scalar::utf16::utf8_length_from_utf16(in, size); } // special case for short inputs size_t count = 0; const auto one = vmovq_n_u8(1); // The general strategy is as follows: // 1. each code unit yields at least one byte, we can account for that by // adding the size of the input to the count. // 2. ASCII bytes then count for zero. // 3. Values that yield 2 or 3 bytes in UTF-8 add 1 or 2 to the count. // 4. Surrogate pairs are handled by adding 1 for each surrogate code unit // for a total of 4 bytes for the pair. size_t pos = 0; // We will go through the input at least once. for (; size - pos >= N; pos += N) { auto base_input = vld2q_u8(reinterpret_cast(in + pos)); // size_t idx = 1; // we use the second lane of the deinterleaved load if (!match_system(big_endian)) { idx = 0; } size_t idx_lsb = idx ^ 1; auto c0 = vminq_u8(vorrq_u8(vandq_u8(base_input.val[idx_lsb], vdupq_n_u8(0x80)), base_input.val[idx]), one); auto c1 = vminq_u8(vandq_u8(base_input.val[idx], vdupq_n_u8(0xf8)), one); auto is_surrogate = vcleq_u8( vsubq_u8(base_input.val[idx], vdupq_n_u8(0xd8)), vdupq_n_u8(7)); auto v_count = vaddq_u8(c1, c0); v_count = vaddq_u8(v_count, is_surrogate); count += vaddlvq_u8(v_count); // sum the counts in the vector ///////// // The vaddlvq_u8 instruction could be slow on some hardware. We could // consider various alternatives if that is an issue such as accumulating // into a vector of uint16_t or uint8_t and summing only at the end or // periodically. However, on fast chipsets, like Apple Silicon, it is // likely fast enough, or even faster than alternatives. ///////// } count += pos; // If we end with a high surrogate, it might be unpaired or not, we // don't know. It counts as a pair suggarate for now. if (scalar::utf16::is_high_surrogate(in[pos - 1])) { if (pos == size) { count += 2; } else if (scalar::utf16::is_low_surrogate(in[pos])) { pos += 1; count += 2; } } return count + scalar::utf16::utf8_length_from_utf16(in + pos, size - pos); } template simdutf_really_inline result arm64_utf8_length_from_utf16_with_replacement(const char16_t *in, size_t size) { constexpr size_t N = 16; // we process 16 char16_t at a time, this is NEON specific if (N + 1 > size) { return scalar::utf16::utf8_length_from_utf16_with_replacement( in, size); } // special case for short input size_t count = 0; bool any_surrogates = false; const auto one = vmovq_n_u8(1); // The general strategy is as follows: // 1. each code unit yields at least one byte, we can account for that by // adding the size of the input to the count. // 2. ASCII bytes then count for zero. // 3. Values that yield 2 or 3 bytes in UTF-8 add 1 or 2 to the count. // 4. Surrogate pairs are handled by adding 1 for each surrogate code unit // for a total of 4 bytes for the pair. // 5. Unpaired surrogate elements have value 0xfffd in UTF-8, which is 3 // bytes, // so we need to add 2 more bytes for each unpaired surrogate. In effect, // an unpaired surrogate should count for 1 (+1 for the ) // // Our strategy is to proceed like the arm64_utf8_length_from_utf16_bytemask // function, but, at the same time, to record the number of unpaired // surrogates. and then adjust the count accordingly. // If we start with a low surrogate, it is unpaired and the SIMD code won't // detect it, so we handle that here. size_t number_of_unpaired_surrogates = 0; if (scalar::utf16::is_low_surrogate(in[0])) { number_of_unpaired_surrogates += 1; any_surrogates = true; } size_t pos = 0; // We will go through the input at least once. for (; size - pos >= N + 1; pos += N) { auto base_input = vld2q_u8(reinterpret_cast(in + pos)); size_t idx = 1; // we use the second lane of the deinterleaved load if (!match_system(big_endian)) { idx = 0; } size_t idx_lsb = idx ^ 1; auto is_surrogate = vcleq_u8( vsubq_u8(base_input.val[idx], vdupq_n_u8(0xd8)), vdupq_n_u8(7)); // We count on the fact that most inputs do not have surrogates. if (vmaxvq_u32(vreinterpretq_u32_u8(is_surrogate)) || scalar::utf16::is_low_surrogate(in[pos + N])) { any_surrogates = true; // there is at least one surrogate in the block // We use this to check that surrogates are paired correctly. // It is the input shifted by one code unit (two bytes). // We use it to detect *low* surrogates. auto one_unit_offset_input = vld2q_u8(reinterpret_cast(in + pos + 1)); // auto lb_masked = vandq_u8(base_input.val[idx], vdupq_n_u8(0xfc)); auto block_masked = vandq_u8(one_unit_offset_input.val[idx], vdupq_n_u8(0xfc)); auto lb_is_high = vceqq_u8(lb_masked, vdupq_n_u8(0xd8)); auto block_is_low = vceqq_u8(block_masked, vdupq_n_u8(0xdc)); // illseq will mark every low surrogate in the offset block. // that is not preceded by a high surrogate // // It will also mark every high surrogate in the main block // that is not followed by a low surrogate // // This means that it will miss undetectable errors, like a high surrogate // at the last index of the main block. And similarly a low surrogate // at the index prior to the main block that was not preceded by a high // surrogate. // // The interpretation of the values is that they start with the end value // of the prior block, and end just before the end of the main block // (minus one). auto illseq = veorq_u8(lb_is_high, block_is_low); number_of_unpaired_surrogates += vaddlvq_u8(vandq_u8(illseq, one)); } auto c0 = vminq_u8(vorrq_u8(vandq_u8(base_input.val[idx_lsb], vdupq_n_u8(0x80)), base_input.val[idx]), one); auto c1 = vminq_u8(vandq_u8(base_input.val[idx], vdupq_n_u8(0xf8)), one); auto v_count = vaddq_u8(c1, c0); v_count = vaddq_u8(v_count, is_surrogate); count += vaddlvq_u8(v_count); // sum the counts in the vector ///////// // The vaddlvq_u8 instruction could be slow on some hardware. We could // consider various alternatives if that is an issue such as accumulating // into a vector of uint16_t or uint8_t and summing only at the end or // periodically. However, on fast chipsets, like Apple Silicon, it is // likely fast enough, or even faster than alternatives. ///////// } //!!!!!!!!!!!!!!! // Here, we have processed up to pos - 1 (inclusive) code units. Except for // the case where the value at pos is a low surrogate not preceded by a high // surrogate. In this special case, we have already added one to the count for // the unpaired low surrogate. //!!!!!!!!!!!!!!! if (scalar::utf16::is_low_surrogate(in[pos])) { any_surrogates = true; if (!scalar::utf16::is_high_surrogate(in[pos - 1])) { number_of_unpaired_surrogates -= 1; count += 2; pos += 1; } } count += pos; count += number_of_unpaired_surrogates; // If we end with a high surrogate, it might be unpaired or not, we // don't know. It counts as a pair suggarate for now. if (scalar::utf16::is_high_surrogate(in[pos - 1])) { any_surrogates = true; if (pos == size) { count += 2; } else if (scalar::utf16::is_low_surrogate(in[pos])) { pos += 1; count += 2; } } result scalar_result = scalar::utf16::utf8_length_from_utf16_with_replacement( in + pos, size - pos); return {any_surrogates ? SURROGATE : scalar_result.error, count + scalar_result.count}; } /* end file src/arm64/arm_convert_utf16_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_BASE64 /* begin file src/arm64/arm_base64.cpp */ /** * References and further reading: * * Wojciech Muła, Daniel Lemire, Base64 encoding and decoding at almost the * speed of a memory copy, Software: Practice and Experience 50 (2), 2020. * https://arxiv.org/abs/1910.05109 * * Wojciech Muła, Daniel Lemire, Faster Base64 Encoding and Decoding using AVX2 * Instructions, ACM Transactions on the Web 12 (3), 2018. * https://arxiv.org/abs/1704.00605 * * Simon Josefsson. 2006. The Base16, Base32, and Base64 Data Encodings. * https://tools.ietf.org/html/rfc4648. (2006). Internet Engineering Task Force, * Request for Comments: 4648. * * Alfred Klomp. 2014a. Fast Base64 encoding/decoding with SSE vectorization. * http://www.alfredklomp.com/programming/sse-base64/. (2014). * * Alfred Klomp. 2014b. Fast Base64 stream encoder/decoder in C99, with SIMD * acceleration. https://github.com/aklomp/base64. (2014). * * Hanson Char. 2014. A Fast and Correct Base 64 Codec. (2014). * https://aws.amazon.com/blogs/developer/a-fast-and-correct-base-64-codec/ * * Nick Kopp. 2013. Base64 Encoding on a GPU. * https://www.codeproject.com/Articles/276993/Base-Encoding-on-a-GPU. (2013). */ /** * Insert a line feed character in the 16-byte input at index K in [0,16). */ inline uint8x16_t insert_line_feed16(uint8x16_t input, size_t K) { static const uint8_t shuffle_masks[16][16] = { {0x80, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 0x80, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 0x80, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 0x80, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 0x80, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 0x80, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 0x80, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 0x80, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 0x80, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 0x80, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0x80, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0x80, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0x80, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 0x80, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0x80, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0x80}}; // Prepare a vector with '\n' (0x0A) uint8x16_t line_feed_vector = vdupq_n_u8('\n'); // Load the precomputed shuffle mask for K uint8x16_t mask = vld1q_u8(shuffle_masks[K]); // Create a mask where 0x80 indicates the line feed position uint8x16_t lf_pos = vceqq_u8(mask, vdupq_n_u8(0x80)); uint8x16_t result = vqtbl1q_u8(input, mask); // Use vbsl to select '\n' where lf_pos is true, else keep input bytes return vbslq_u8(lf_pos, line_feed_vector, result); } // offset is the number of characters in the current line. // It can range from 0 to line_length (inclusive). // If offset == line_length, we need to insert a line feed before writing // anything. size_t write_output_with_line_feeds(uint8_t *dst, uint8x16_t src, size_t line_length, size_t &offset) { // Fast path: no need to insert line feeds // If we are at offset, we would write from [offset, offset + 16). // We need that line_length >= offset + 16. if (offset + 16 <= line_length) { // No need to insert line feeds vst1q_u8(dst, src); offset += 16; // offset could be line_length here. return 16; } // We have that offset + 16 >= line_length // the common case is that line_length is greater than 16 if (simdutf_likely(line_length >= 16)) { // offset <= line_length. // offset + 16 > line_length // So line_length - offset < 16 // and line_length - offset >= 0 uint8x16_t chunk = insert_line_feed16(src, line_length - offset); vst1q_u8(dst, chunk); // Not ideal to pull the last element and write it separately but // it simplifies the code. *(dst + 16) = vgetq_lane_u8(src, 15); offset += 16 - line_length; return 16 + 1; // we wrote 16 bytes plus one line feed } // Uncommon case where line_length < 16 // This is going to be SLOW. else { uint8_t buffer[16]; vst1q_u8(buffer, src); size_t out_pos = 0; size_t local_offset = offset; for (size_t i = 0; i < 16;) { if (local_offset == line_length) { dst[out_pos++] = '\n'; local_offset = 0; } dst[out_pos++] = buffer[i++]; local_offset++; } offset = local_offset; return out_pos; } } template size_t encode_base64_impl(char *dst, const char *src, size_t srclen, base64_options options, size_t line_length = simdutf::default_line_length) { size_t offset = 0; if (line_length < 4) { line_length = 4; // We do not support line_length less than 4 } // credit: Wojciech Muła uint8_t *out = (uint8_t *)dst; constexpr static uint8_t source_table[64] = { 'A', 'Q', 'g', 'w', 'B', 'R', 'h', 'x', 'C', 'S', 'i', 'y', 'D', 'T', 'j', 'z', 'E', 'U', 'k', '0', 'F', 'V', 'l', '1', 'G', 'W', 'm', '2', 'H', 'X', 'n', '3', 'I', 'Y', 'o', '4', 'J', 'Z', 'p', '5', 'K', 'a', 'q', '6', 'L', 'b', 'r', '7', 'M', 'c', 's', '8', 'N', 'd', 't', '9', 'O', 'e', 'u', '+', 'P', 'f', 'v', '/', }; constexpr static uint8_t source_table_url[64] = { 'A', 'Q', 'g', 'w', 'B', 'R', 'h', 'x', 'C', 'S', 'i', 'y', 'D', 'T', 'j', 'z', 'E', 'U', 'k', '0', 'F', 'V', 'l', '1', 'G', 'W', 'm', '2', 'H', 'X', 'n', '3', 'I', 'Y', 'o', '4', 'J', 'Z', 'p', '5', 'K', 'a', 'q', '6', 'L', 'b', 'r', '7', 'M', 'c', 's', '8', 'N', 'd', 't', '9', 'O', 'e', 'u', '-', 'P', 'f', 'v', '_', }; const uint8x16_t v3f = vdupq_n_u8(0x3f); #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO // When trying to load a uint8_t array, Visual Studio might // error with: error C2664: '__n128x4 neon_ld4m_q8(const char *)': // cannot convert argument 1 from 'const uint8_t [64]' to 'const char * const uint8x16x4_t table = vld4q_u8( (reinterpret_cast(options & base64_url) ? source_table_url : source_table)); #else const uint8x16x4_t table = vld4q_u8((options & base64_url) ? source_table_url : source_table); #endif size_t i = 0; for (; i + 16 * 3 <= srclen; i += 16 * 3) { const uint8x16x3_t in = vld3q_u8((const uint8_t *)src + i); uint8x16x4_t result; result.val[0] = vshrq_n_u8(in.val[0], 2); result.val[1] = vandq_u8(vsliq_n_u8(vshrq_n_u8(in.val[1], 4), in.val[0], 4), v3f); result.val[2] = vandq_u8(vsliq_n_u8(vshrq_n_u8(in.val[2], 6), in.val[1], 2), v3f); result.val[3] = vandq_u8(in.val[2], v3f); result.val[0] = vqtbl4q_u8(table, result.val[0]); result.val[1] = vqtbl4q_u8(table, result.val[1]); result.val[2] = vqtbl4q_u8(table, result.val[2]); result.val[3] = vqtbl4q_u8(table, result.val[3]); if (insert_line_feeds) { if (line_length >= 64) { // fast path vst4q_u8(out, result); if (offset + 64 > line_length) { size_t location_end = line_length - offset; size_t to_move = 64 - location_end; std::memmove(out + location_end + 1, out + location_end, to_move); out[location_end] = '\n'; offset = to_move; out += 64 + 1; } else { offset += 64; out += 64; } } else { // slow path uint8x16x2_t Z0 = vzipq_u8(result.val[0], result.val[1]); uint8x16x2_t Z1 = vzipq_u8(result.val[2], result.val[3]); uint16x8x2_t Z2 = vzipq_u16(vreinterpretq_u16_u8(Z0.val[0]), vreinterpretq_u16_u8(Z1.val[0])); uint16x8x2_t Z3 = vzipq_u16(vreinterpretq_u16_u8(Z0.val[1]), vreinterpretq_u16_u8(Z1.val[1])); uint8x16_t T0 = vreinterpretq_u8_u16(Z2.val[0]); uint8x16_t T1 = vreinterpretq_u8_u16(Z2.val[1]); uint8x16_t T2 = vreinterpretq_u8_u16(Z3.val[0]); uint8x16_t T3 = vreinterpretq_u8_u16(Z3.val[1]); out += write_output_with_line_feeds(out, T0, line_length, offset); out += write_output_with_line_feeds(out, T1, line_length, offset); out += write_output_with_line_feeds(out, T2, line_length, offset); out += write_output_with_line_feeds(out, T3, line_length, offset); } } else { vst4q_u8(out, result); out += 64; } } if (i + 24 <= srclen) { const uint8x8_t v3f_d = vdup_n_u8(0x3f); const uint8x8x3_t in = vld3_u8((const uint8_t *)src + i); uint8x8x4_t result; result.val[0] = vshr_n_u8(in.val[0], 2); result.val[1] = vand_u8(vsli_n_u8(vshr_n_u8(in.val[1], 4), in.val[0], 4), v3f_d); result.val[2] = vand_u8(vsli_n_u8(vshr_n_u8(in.val[2], 6), in.val[1], 2), v3f_d); result.val[3] = vand_u8(in.val[2], v3f_d); result.val[0] = vqtbl4_u8(table, result.val[0]); result.val[1] = vqtbl4_u8(table, result.val[1]); result.val[2] = vqtbl4_u8(table, result.val[2]); result.val[3] = vqtbl4_u8(table, result.val[3]); if (insert_line_feeds) { if (line_length >= 32) { // fast path vst4_u8(out, result); if (offset + 32 > line_length) { size_t location_end = line_length - offset; size_t to_move = 32 - location_end; std::memmove(out + location_end + 1, out + location_end, to_move); out[location_end] = '\n'; offset = to_move; out += 32 + 1; } else { offset += 32; out += 32; } } else { // slow path uint8x8x2_t Z0 = vzip_u8(result.val[0], result.val[1]); uint8x8x2_t Z1 = vzip_u8(result.val[2], result.val[3]); uint16x4x2_t Z2 = vzip_u16(vreinterpret_u16_u8(Z0.val[0]), vreinterpret_u16_u8(Z1.val[0])); uint16x4x2_t Z3 = vzip_u16(vreinterpret_u16_u8(Z0.val[1]), vreinterpret_u16_u8(Z1.val[1])); uint8x8_t T0 = vreinterpret_u8_u16(Z2.val[0]); uint8x8_t T1 = vreinterpret_u8_u16(Z2.val[1]); uint8x8_t T2 = vreinterpret_u8_u16(Z3.val[0]); uint8x8_t T3 = vreinterpret_u8_u16(Z3.val[1]); uint8x16_t TT0 = vcombine_u8(T0, T1); uint8x16_t TT1 = vcombine_u8(T2, T3); out += write_output_with_line_feeds(out, TT0, line_length, offset); out += write_output_with_line_feeds(out, TT1, line_length, offset); } } else { vst4_u8(out, result); out += 32; } i += 24; } out += scalar::base64::tail_encode_base64_impl( (char *)out, src + i, srclen - i, options, line_length, offset); return size_t((char *)out - dst); } size_t encode_base64(char *dst, const char *src, size_t srclen, base64_options options) { return encode_base64_impl(dst, src, srclen, options); } static inline void compress(uint8x16_t data, uint16_t mask, char *output) { if (mask == 0) { vst1q_u8((uint8_t *)output, data); return; } uint8_t mask1 = uint8_t(mask); // least significant 8 bits uint8_t mask2 = uint8_t(mask >> 8); // most significant 8 bits uint64x2_t compactmasku64 = {tables::base64::thintable_epi8[mask1], tables::base64::thintable_epi8[mask2]}; uint8x16_t compactmask = vreinterpretq_u8_u64(compactmasku64); #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint8x16_t off = simdutf_make_uint8x16_t(0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8); #else const uint8x16_t off = {0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8}; #endif compactmask = vaddq_u8(compactmask, off); uint8x16_t pruned = vqtbl1q_u8(data, compactmask); int pop1 = tables::base64::BitsSetTable256mul2[mask1]; // then load the corresponding mask, what it does is to write // only the first pop1 bytes from the first 8 bytes, and then // it fills in with the bytes from the second 8 bytes + some filling // at the end. compactmask = vld1q_u8(tables::base64::pshufb_combine_table + pop1 * 8); uint8x16_t answer = vqtbl1q_u8(pruned, compactmask); vst1q_u8((uint8_t *)output, answer); } struct block64 { uint8x16_t chunks[4]; }; static_assert(sizeof(block64) == 64, "block64 is not 64 bytes"); template uint64_t to_base64_mask(block64 *b, bool *error) { uint8x16_t v0f = vdupq_n_u8(0xf); uint8x16_t v01 = vdupq_n_u8(0x1); uint8x16_t lo_nibbles0 = vandq_u8(b->chunks[0], v0f); uint8x16_t lo_nibbles1 = vandq_u8(b->chunks[1], v0f); uint8x16_t lo_nibbles2 = vandq_u8(b->chunks[2], v0f); uint8x16_t lo_nibbles3 = vandq_u8(b->chunks[3], v0f); // Needed by the decoding step. uint8x16_t hi_bits0 = vshrq_n_u8(b->chunks[0], 3); uint8x16_t hi_bits1 = vshrq_n_u8(b->chunks[1], 3); uint8x16_t hi_bits2 = vshrq_n_u8(b->chunks[2], 3); uint8x16_t hi_bits3 = vshrq_n_u8(b->chunks[3], 3); uint8x16_t lut_lo; #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO if (default_or_url) { lut_lo = simdutf_make_uint8x16_t(0xa9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf1, 0xa2, 0xa1, 0xa5, 0xa0, 0xa6); } else if (base64_url) { lut_lo = simdutf_make_uint8x16_t(0xa9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf1, 0xa0, 0xa1, 0xa5, 0xa0, 0xa2); } else { lut_lo = simdutf_make_uint8x16_t(0xa9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf1, 0xa2, 0xa1, 0xa1, 0xa0, 0xa4); } #else if (default_or_url) { lut_lo = uint8x16_t{0xa9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf1, 0xa2, 0xa1, 0xa5, 0xa0, 0xa6}; } else if (base64_url) { lut_lo = uint8x16_t{0xa9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf1, 0xa0, 0xa1, 0xa5, 0xa0, 0xa2}; } else { lut_lo = uint8x16_t{0xa9, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf9, 0xf1, 0xa2, 0xa1, 0xa1, 0xa0, 0xa4}; } #endif uint8x16_t lo0 = vqtbl1q_u8(lut_lo, lo_nibbles0); uint8x16_t lo1 = vqtbl1q_u8(lut_lo, lo_nibbles1); uint8x16_t lo2 = vqtbl1q_u8(lut_lo, lo_nibbles2); uint8x16_t lo3 = vqtbl1q_u8(lut_lo, lo_nibbles3); uint8x16_t lut_hi; #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO if (default_or_url) { lut_hi = simdutf_make_uint8x16_t(0x0, 0x1, 0x0, 0x0, 0x1, 0x6, 0x8, 0x8, 0x10, 0x20, 0x20, 0x12, 0x40, 0x80, 0x80, 0x40); } else if (base64_url) { lut_hi = simdutf_make_uint8x16_t(0x0, 0x1, 0x0, 0x0, 0x1, 0x6, 0x8, 0x8, 0x10, 0x20, 0x20, 0x12, 0x40, 0x80, 0x80, 0x40); } else { lut_hi = simdutf_make_uint8x16_t(0x0, 0x1, 0x0, 0x0, 0x1, 0x6, 0x8, 0x8, 0x10, 0x20, 0x20, 0x10, 0x40, 0x80, 0x80, 0x40); } #else if (default_or_url) { lut_hi = uint8x16_t{0x0, 0x1, 0x0, 0x0, 0x1, 0x6, 0x8, 0x8, 0x10, 0x20, 0x20, 0x12, 0x40, 0x80, 0x80, 0x40}; } else if (base64_url) { lut_hi = uint8x16_t{0x0, 0x1, 0x0, 0x0, 0x1, 0x4, 0x8, 0x8, 0x10, 0x20, 0x20, 0x12, 0x40, 0x80, 0x80, 0x40}; } else { lut_hi = uint8x16_t{0x0, 0x1, 0x0, 0x0, 0x1, 0x6, 0x8, 0x8, 0x10, 0x20, 0x20, 0x10, 0x40, 0x80, 0x80, 0x40}; } #endif uint8x16_t hi0 = vqtbl1q_u8(lut_hi, hi_bits0); uint8x16_t hi1 = vqtbl1q_u8(lut_hi, hi_bits1); uint8x16_t hi2 = vqtbl1q_u8(lut_hi, hi_bits2); uint8x16_t hi3 = vqtbl1q_u8(lut_hi, hi_bits3); // maps error byte to 0 and space byte to 1, valid bytes are >1 uint8x16_t res0 = vandq_u8(lo0, hi0); uint8x16_t res1 = vandq_u8(lo1, hi1); uint8x16_t res2 = vandq_u8(lo2, hi2); uint8x16_t res3 = vandq_u8(lo3, hi3); uint8_t checks = vminvq_u8(vminq_u8(vminq_u8(res0, res1), vminq_u8(res2, res3))); #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint8x16_t bit_mask = simdutf_make_uint8x16_t(0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80); #else const uint8x16_t bit_mask = {0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80, 0x01, 0x02, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80}; #endif uint64_t badcharmask = 0; *error = checks == 0; if (checks <= 1) { // Add each of the elements next to each other, successively, to stuff each // 8 byte mask into one. uint8x16_t test0 = vcleq_u8(res0, v01); uint8x16_t test1 = vcleq_u8(res1, v01); uint8x16_t test2 = vcleq_u8(res2, v01); uint8x16_t test3 = vcleq_u8(res3, v01); uint8x16_t sum0 = vpaddq_u8(vandq_u8(test0, bit_mask), vandq_u8(test1, bit_mask)); uint8x16_t sum1 = vpaddq_u8(vandq_u8(test2, bit_mask), vandq_u8(test3, bit_mask)); sum0 = vpaddq_u8(sum0, sum1); sum0 = vpaddq_u8(sum0, sum0); badcharmask = vgetq_lane_u64(vreinterpretq_u64_u8(sum0), 0); } // This is the transformation step that can be done while we are waiting for // sum0 uint8x16_t roll_lut; #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO if (default_or_url) { roll_lut = simdutf_make_uint8x16_t(0xBF, 0xE0, 0xB9, 0x13, 0x04, 0xBF, 0xBF, 0xB9, 0xB9, 0x00, 0xFF, 0x11, 0xFF, 0xBF, 0x10, 0xB9); } else if (base64_url) { roll_lut = simdutf_make_uint8x16_t(0xB9, 0xB9, 0xBF, 0xBF, 0x04, 0x11, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); } else { roll_lut = simdutf_make_uint8x16_t(0xB9, 0xB9, 0xBF, 0xBF, 0x04, 0x10, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00); } #else if (default_or_url) { roll_lut = uint8x16_t{0xBF, 0xE0, 0xB9, 0x13, 0x04, 0xBF, 0xBF, 0xB9, 0xB9, 0x00, 0xFF, 0x11, 0xFF, 0xBF, 0x10, 0xB9}; } else if (base64_url) { roll_lut = uint8x16_t{0xB9, 0xB9, 0xBF, 0xBF, 0x04, 0x11, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; } else { roll_lut = uint8x16_t{0xB9, 0xB9, 0xBF, 0xBF, 0x04, 0x10, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; } #endif uint8x16_t roll0, roll1, roll2, roll3; if (default_or_url) { #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint8x16_t delta_asso = simdutf_make_uint8x16_t(0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x16); #else const uint8x16_t delta_asso = uint8x16_t{0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x16}; #endif // the logic of translating is based on westmere uint8x16_t delta_hash0 = vrhaddq_u8(vqtbl1q_u8(delta_asso, lo_nibbles0), hi_bits0); uint8x16_t delta_hash1 = vrhaddq_u8(vqtbl1q_u8(delta_asso, lo_nibbles1), hi_bits1); uint8x16_t delta_hash2 = vrhaddq_u8(vqtbl1q_u8(delta_asso, lo_nibbles2), hi_bits2); uint8x16_t delta_hash3 = vrhaddq_u8(vqtbl1q_u8(delta_asso, lo_nibbles3), hi_bits3); const uint8x16x2_t roll_lut_2 = {roll_lut, roll_lut}; roll0 = vqtbl2q_u8(roll_lut_2, delta_hash0); roll1 = vqtbl2q_u8(roll_lut_2, delta_hash1); roll2 = vqtbl2q_u8(roll_lut_2, delta_hash2); roll3 = vqtbl2q_u8(roll_lut_2, delta_hash3); } else { uint8x16_t delta_hash0 = vclzq_u8(res0); uint8x16_t delta_hash1 = vclzq_u8(res1); uint8x16_t delta_hash2 = vclzq_u8(res2); uint8x16_t delta_hash3 = vclzq_u8(res3); roll0 = vqtbl1q_u8(roll_lut, delta_hash0); roll1 = vqtbl1q_u8(roll_lut, delta_hash1); roll2 = vqtbl1q_u8(roll_lut, delta_hash2); roll3 = vqtbl1q_u8(roll_lut, delta_hash3); } b->chunks[0] = vaddq_u8(b->chunks[0], roll0); b->chunks[1] = vaddq_u8(b->chunks[1], roll1); b->chunks[2] = vaddq_u8(b->chunks[2], roll2); b->chunks[3] = vaddq_u8(b->chunks[3], roll3); return badcharmask; } void copy_block(block64 *b, char *output) { vst1q_u8((uint8_t *)output, b->chunks[0]); vst1q_u8((uint8_t *)output + 16, b->chunks[1]); vst1q_u8((uint8_t *)output + 32, b->chunks[2]); vst1q_u8((uint8_t *)output + 48, b->chunks[3]); } uint64_t compress_block(block64 *b, uint64_t mask, char *output) { uint64_t popcounts = vget_lane_u64(vreinterpret_u64_u8(vcnt_u8(vcreate_u8(~mask))), 0); uint64_t offsets = popcounts * 0x0101010101010101; compress(b->chunks[0], uint16_t(mask), output); compress(b->chunks[1], uint16_t(mask >> 16), &output[(offsets >> 8) & 0xFF]); compress(b->chunks[2], uint16_t(mask >> 32), &output[(offsets >> 24) & 0xFF]); compress(b->chunks[3], uint16_t(mask >> 48), &output[(offsets >> 40) & 0xFF]); return offsets >> 56; } // The caller of this function is responsible to ensure that there are 64 bytes // available from reading at src. The data is read into a block64 structure. void load_block(block64 *b, const char *src) { b->chunks[0] = vld1q_u8(reinterpret_cast(src)); b->chunks[1] = vld1q_u8(reinterpret_cast(src) + 16); b->chunks[2] = vld1q_u8(reinterpret_cast(src) + 32); b->chunks[3] = vld1q_u8(reinterpret_cast(src) + 48); } // The caller of this function is responsible to ensure that there are 32 bytes // available from reading at data. It returns a 16-byte value, narrowing with // saturation the 16-bit words. inline uint8x16_t load_satured(const uint16_t *data) { uint16x8_t in1 = vld1q_u16(data); uint16x8_t in2 = vld1q_u16(data + 8); return vqmovn_high_u16(vqmovn_u16(in1), in2); } // The caller of this function is responsible to ensure that there are 128 bytes // available from reading at src. The data is read into a block64 structure. void load_block(block64 *b, const char16_t *src) { b->chunks[0] = load_satured(reinterpret_cast(src)); b->chunks[1] = load_satured(reinterpret_cast(src) + 16); b->chunks[2] = load_satured(reinterpret_cast(src) + 32); b->chunks[3] = load_satured(reinterpret_cast(src) + 48); } // decode 64 bytes and output 48 bytes void base64_decode_block(char *out, const char *src) { uint8x16x4_t str = vld4q_u8((uint8_t *)src); uint8x16x3_t outvec; outvec.val[0] = vsliq_n_u8(vshrq_n_u8(str.val[1], 4), str.val[0], 2); outvec.val[1] = vsliq_n_u8(vshrq_n_u8(str.val[2], 2), str.val[1], 4); outvec.val[2] = vsliq_n_u8(str.val[3], str.val[2], 6); vst3q_u8((uint8_t *)out, outvec); } static size_t compress_block_single(block64 *b, uint64_t mask, char *output) { const size_t pos64 = trailing_zeroes(mask); const int8_t pos = pos64 & 0xf; // Predefine the index vector #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint8x16_t v1 = simdutf_make_uint8x16_t(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15); #else // SIMDUTF_REGULAR_VISUAL_STUDIO const uint8x16_t v1 = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; #endif // SIMDUTF_REGULAR_VISUAL_STUDIO switch (pos64 >> 4) { case 0b00: { const uint8x16_t v0 = vmovq_n_u8((uint8_t)(pos - 1)); const uint8x16_t v2 = vcgtq_s8(vreinterpretq_s8_u8(v1), vreinterpretq_s8_u8(v0)); // Compare greater than const uint8x16_t sh = vsubq_u8(v1, v2); // Subtract const uint8x16_t compressed = vqtbl1q_u8(b->chunks[0], sh); // Table lookup (shuffle) vst1q_u8((uint8_t *)(output + 0 * 16), compressed); vst1q_u8((uint8_t *)(output + 1 * 16 - 1), b->chunks[1]); vst1q_u8((uint8_t *)(output + 2 * 16 - 1), b->chunks[2]); vst1q_u8((uint8_t *)(output + 3 * 16 - 1), b->chunks[3]); } break; case 0b01: { vst1q_u8((uint8_t *)(output + 0 * 16), b->chunks[0]); const uint8x16_t v0 = vmovq_n_u8((uint8_t)(pos - 1)); const uint8x16_t v2 = vcgtq_s8(vreinterpretq_s8_u8(v1), vreinterpretq_s8_u8(v0)); const uint8x16_t sh = vsubq_u8(v1, v2); const uint8x16_t compressed = vqtbl1q_u8(b->chunks[1], sh); vst1q_u8((uint8_t *)(output + 1 * 16), compressed); vst1q_u8((uint8_t *)(output + 2 * 16 - 1), b->chunks[2]); vst1q_u8((uint8_t *)(output + 3 * 16 - 1), b->chunks[3]); } break; case 0b10: { vst1q_u8((uint8_t *)(output + 0 * 16), b->chunks[0]); vst1q_u8((uint8_t *)(output + 1 * 16), b->chunks[1]); const uint8x16_t v0 = vmovq_n_u8((uint8_t)(pos - 1)); const uint8x16_t v2 = vcgtq_s8(vreinterpretq_s8_u8(v1), vreinterpretq_s8_u8(v0)); const uint8x16_t sh = vsubq_u8(v1, v2); const uint8x16_t compressed = vqtbl1q_u8(b->chunks[2], sh); vst1q_u8((uint8_t *)(output + 2 * 16), compressed); vst1q_u8((uint8_t *)(output + 3 * 16 - 1), b->chunks[3]); } break; case 0b11: { vst1q_u8((uint8_t *)(output + 0 * 16), b->chunks[0]); vst1q_u8((uint8_t *)(output + 1 * 16), b->chunks[1]); vst1q_u8((uint8_t *)(output + 2 * 16), b->chunks[2]); const uint8x16_t v0 = vmovq_n_u8((uint8_t)(pos - 1)); const uint8x16_t v2 = vcgtq_s8(vreinterpretq_s8_u8(v1), vreinterpretq_s8_u8(v0)); const uint8x16_t sh = vsubq_u8(v1, v2); const uint8x16_t compressed = vqtbl1q_u8(b->chunks[3], sh); vst1q_u8((uint8_t *)(output + 3 * 16), compressed); } break; } return 63; } template bool is_power_of_two(T x) { return (x & (x - 1)) == 0; } template full_result compress_decode_base64(char *dst, const char_type *src, size_t srclen, base64_options options, last_chunk_handling_options last_chunk_options) { const uint8_t *to_base64 = default_or_url ? tables::base64::to_base64_default_or_url_value : (base64_url ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); auto ri = simdutf::scalar::base64::find_end(src, srclen, options); size_t equallocation = ri.equallocation; size_t equalsigns = ri.equalsigns; srclen = ri.srclen; size_t full_input_length = ri.full_input_length; if (srclen == 0) { if (!ignore_garbage && equalsigns > 0) { return {INVALID_BASE64_CHARACTER, equallocation, 0}; } return {SUCCESS, full_input_length, 0}; } const char_type *const srcinit = src; const char *const dstinit = dst; const char_type *const srcend = src + srclen; constexpr size_t block_size = 10; char buffer[block_size * 64]; char *bufferptr = buffer; if (srclen >= 64) { const char_type *const srcend64 = src + srclen - 64; while (src <= srcend64) { block64 b; load_block(&b, src); src += 64; bool error = false; uint64_t badcharmask = to_base64_mask(&b, &error); if (badcharmask) { if (error && !ignore_garbage) { src -= 64; while (src < srcend && scalar::base64::is_eight_byte(*src) && to_base64[uint8_t(*src)] <= 64) { src++; } if (src < srcend) { // should never happen } return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit)}; } } if (badcharmask != 0) { // optimization opportunity: check for simple masks like those made of // continuous 1s followed by continuous 0s. And masks containing a // single bad character. if (is_power_of_two(badcharmask)) { bufferptr += compress_block_single(&b, badcharmask, bufferptr); } else { bufferptr += compress_block(&b, badcharmask, bufferptr); } } else { // optimization opportunity: if bufferptr == buffer and mask == 0, we // can avoid the call to compress_block and decode directly. copy_block(&b, bufferptr); bufferptr += 64; } if (bufferptr >= (block_size - 1) * 64 + buffer) { for (size_t i = 0; i < (block_size - 1); i++) { base64_decode_block(dst, buffer + i * 64); dst += 48; } std::memcpy(buffer, buffer + (block_size - 1) * 64, 64); // 64 might be too much bufferptr -= (block_size - 1) * 64; } } } char *buffer_start = buffer; // Optimization note: if this is almost full, then it is worth our // time, otherwise, we should just decode directly. int last_block = (int)((bufferptr - buffer_start) % 64); if (last_block != 0 && srcend - src + last_block >= 64) { while ((bufferptr - buffer_start) % 64 != 0 && src < srcend) { uint8_t val = to_base64[uint8_t(*src)]; *bufferptr = char(val); if ((!scalar::base64::is_eight_byte(*src) || val > 64) && !ignore_garbage) { return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit)}; } bufferptr += (val <= 63); src++; } } for (; buffer_start + 64 <= bufferptr; buffer_start += 64) { base64_decode_block(dst, buffer_start); dst += 48; } if ((bufferptr - buffer_start) % 64 != 0) { while (buffer_start + 4 < bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; triple = scalar::u32_swap_bytes(triple); std::memcpy(dst, &triple, 4); dst += 3; buffer_start += 4; } if (buffer_start + 4 <= bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; triple = scalar::u32_swap_bytes(triple); std::memcpy(dst, &triple, 3); dst += 3; buffer_start += 4; } // we may have 1, 2 or 3 bytes left and we need to decode them so let us // backtrack int leftover = int(bufferptr - buffer_start); while (leftover > 0) { if (!ignore_garbage) { while (to_base64[uint8_t(*(src - 1))] == 64) { src--; } } else { while (to_base64[uint8_t(*(src - 1))] >= 64) { src--; } } src--; leftover--; } } if (src < srcend + equalsigns) { full_result r = scalar::base64::base64_tail_decode( dst, src, srcend - src, equalsigns, options, last_chunk_options); r = scalar::base64::patch_tail_result( r, size_t(src - srcinit), size_t(dst - dstinit), equallocation, full_input_length, last_chunk_options); // When is_partial(last_chunk_options) is true, we must either end with // the end of the stream (beyond whitespace) or right after a non-ignorable // character or at the very beginning of the stream. // See https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 if (is_partial(last_chunk_options) && r.error == error_code::SUCCESS && r.input_count < full_input_length) { // First check if we can extend the input to the end of the stream while (r.input_count < full_input_length && base64_ignorable(*(srcinit + r.input_count), options)) { r.input_count++; } // If we are still not at the end of the stream, then we must backtrack // to the last non-ignorable character. if (r.input_count < full_input_length) { while (r.input_count > 0 && base64_ignorable(*(srcinit + r.input_count - 1), options)) { r.input_count--; } } } return r; } if (equalsigns > 0 && !ignore_garbage) { if ((size_t(dst - dstinit) % 3 == 0) || ((size_t(dst - dstinit) % 3) + 1 + equalsigns != 4)) { return {INVALID_BASE64_CHARACTER, equallocation, size_t(dst - dstinit)}; } } return {SUCCESS, srclen, size_t(dst - dstinit)}; } /* end file src/arm64/arm_base64.cpp */ /* begin file src/arm64/arm_find.cpp */ simdutf_really_inline const char *util_find(const char *start, const char *end, char character) noexcept { // Handle empty or invalid range if (start >= end) return end; const size_t widestep = 64; const size_t step = 16; uint8x16_t char_vec = vdupq_n_u8(static_cast(character)); // Handle unaligned beginning uintptr_t misalignment = reinterpret_cast(start) % step; if (misalignment != 0) { size_t adjustment = step - misalignment; if (size_t(end - start) < adjustment) { adjustment = end - start; } for (size_t i = 0; i < adjustment; ++i) { if (start[i] == character) { return start + i; } } start += adjustment; } // Main loop for full 64-byte chunks while (size_t(end - start) >= widestep) { uint8x16_t data1 = vld1q_u8(reinterpret_cast(start)); uint8x16_t data2 = vld1q_u8(reinterpret_cast(start) + 16); uint8x16_t data3 = vld1q_u8(reinterpret_cast(start) + 32); uint8x16_t data4 = vld1q_u8(reinterpret_cast(start) + 48); uint8x16_t cmp1 = vceqq_u8(data1, char_vec); uint8x16_t cmp2 = vceqq_u8(data2, char_vec); uint8x16_t cmp3 = vceqq_u8(data3, char_vec); uint8x16_t cmp4 = vceqq_u8(data4, char_vec); uint8x16_t cmpall = vorrq_u8(vorrq_u8(cmp1, cmp2), vorrq_u8(cmp3, cmp4)); uint64_t mask = vget_lane_u64( vreinterpret_u64_u8(vshrn_n_u16(vreinterpretq_u16_u8(cmpall), 4)), 0); if (mask != 0) { // Found a match, return the first one uint64_t mask1 = vget_lane_u64( vreinterpret_u64_u8(vshrn_n_u16(vreinterpretq_u16_u8(cmp1), 4)), 0); if (mask1 != 0) { // Found a match in the first chunk int index = trailing_zeroes(mask1) / 4; // Each character maps to 4 bits return start + index; } uint64_t mask2 = vget_lane_u64( vreinterpret_u64_u8(vshrn_n_u16(vreinterpretq_u16_u8(cmp2), 4)), 0); if (mask2 != 0) { // Found a match in the second chunk int index = trailing_zeroes(mask2) / 4; // Each character maps to 4 bits return start + index + 16; } uint64_t mask3 = vget_lane_u64( vreinterpret_u64_u8(vshrn_n_u16(vreinterpretq_u16_u8(cmp3), 4)), 0); if (mask3 != 0) { // Found a match in the third chunk int index = trailing_zeroes(mask3) / 4; // Each character maps to 4 bits return start + index + 32; } uint64_t mask4 = vget_lane_u64( vreinterpret_u64_u8(vshrn_n_u16(vreinterpretq_u16_u8(cmp4), 4)), 0); if (mask4 != 0) { // Found a match in the fourth chunk int index = trailing_zeroes(mask4) / 4; // Each character maps to 4 bits return start + index + 48; } } start += widestep; } // Main loop for full 16-byte chunks while (size_t(end - start) >= step) { uint8x16_t data = vld1q_u8(reinterpret_cast(start)); uint8x16_t cmp = vceqq_u8(data, char_vec); uint64_t mask = vget_lane_u64( vreinterpret_u64_u8(vshrn_n_u16(vreinterpretq_u16_u8(cmp), 4)), 0); if (mask != 0) { // Found a match, return the first one int index = trailing_zeroes(mask) / 4; // Each character maps to 4 bits return start + index; } start += step; } // Handle remaining bytes with scalar loop for (; start < end; ++start) { if (*start == character) { return start; } } return end; } simdutf_really_inline const char16_t *util_find(const char16_t *start, const char16_t *end, char16_t character) noexcept { // Handle empty or invalid range if (start >= end) return end; const size_t step = 8; uint16x8_t char_vec = vdupq_n_u16(character); // Handle unaligned beginning uintptr_t misalignment = reinterpret_cast(start) % (step * sizeof(char16_t)); if (misalignment != 0 && misalignment % 2 == 0) { size_t adjustment = (step * sizeof(char16_t) - misalignment) / sizeof(char16_t); if (size_t(end - start) < adjustment) { adjustment = end - start; } for (size_t i = 0; i < adjustment; ++i) { if (start[i] == character) { return start + i; } } start += adjustment; } // Main loop for full 8-element chunks with unrolling while (size_t(end - start) >= 4 * step) { uint16x8_t data1 = vld1q_u16(reinterpret_cast(start)); uint16x8_t data2 = vld1q_u16(reinterpret_cast(start) + step); uint16x8_t data3 = vld1q_u16(reinterpret_cast(start) + 2 * step); uint16x8_t data4 = vld1q_u16(reinterpret_cast(start) + 3 * step); uint16x8_t cmp1 = vceqq_u16(data1, char_vec); uint16x8_t cmp2 = vceqq_u16(data2, char_vec); uint16x8_t cmp3 = vceqq_u16(data3, char_vec); uint16x8_t cmp4 = vceqq_u16(data4, char_vec); uint64_t mask1 = vget_lane_u64( vreinterpret_u64_u16(vshrn_n_u32(vreinterpretq_u32_u16(cmp1), 4)), 0); if (mask1 != 0) { int index = trailing_zeroes(mask1) / 8; return start + index; } uint64_t mask2 = vget_lane_u64( vreinterpret_u64_u16(vshrn_n_u32(vreinterpretq_u32_u16(cmp2), 4)), 0); if (mask2 != 0) { int index = trailing_zeroes(mask2) / 8; return start + index + step; } uint64_t mask3 = vget_lane_u64( vreinterpret_u64_u16(vshrn_n_u32(vreinterpretq_u32_u16(cmp3), 4)), 0); if (mask3 != 0) { int index = trailing_zeroes(mask3) / 8; return start + index + 2 * step; } uint64_t mask4 = vget_lane_u64( vreinterpret_u64_u16(vshrn_n_u32(vreinterpretq_u32_u16(cmp4), 4)), 0); if (mask4 != 0) { int index = trailing_zeroes(mask4) / 8; return start + index + 3 * step; } start += 4 * step; } // Main loop for full 8-element chunks while (size_t(end - start) >= step) { uint16x8_t data = vld1q_u16(reinterpret_cast(start)); uint16x8_t cmp = vceqq_u16(data, char_vec); uint64_t mask = vget_lane_u64( vreinterpret_u64_u16(vshrn_n_u32(vreinterpretq_u32_u16(cmp), 4)), 0); if (mask != 0) { int index = trailing_zeroes(mask) / 8; return start + index; } start += step; } // Handle remaining elements with scalar loop for (; start < end; ++start) { if (*start == character) { return start; } } return end; } /* end file src/arm64/arm_find.cpp */ #endif // SIMDUTF_FEATURE_BASE64 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/arm64/arm_convert_utf32_to_latin1.cpp */ std::pair arm_convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) { const char32_t *end = buf + len; while (end - buf >= 8) { uint32x4_t in1 = vld1q_u32(reinterpret_cast(buf)); uint32x4_t in2 = vld1q_u32(reinterpret_cast(buf + 4)); uint16x8_t utf16_packed = vcombine_u16(vqmovn_u32(in1), vqmovn_u32(in2)); if (vmaxvq_u16(utf16_packed) <= 0xff) { // 1. pack the bytes uint8x8_t latin1_packed = vmovn_u16(utf16_packed); // 2. store (8 bytes) vst1_u8(reinterpret_cast(latin1_output), latin1_packed); // 3. adjust pointers buf += 8; latin1_output += 8; } else { return std::make_pair(nullptr, reinterpret_cast(latin1_output)); } } // while return std::make_pair(buf, latin1_output); } std::pair arm_convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) { const char32_t *start = buf; const char32_t *end = buf + len; while (end - buf >= 8) { uint32x4_t in1 = vld1q_u32(reinterpret_cast(buf)); uint32x4_t in2 = vld1q_u32(reinterpret_cast(buf + 4)); uint16x8_t utf16_packed = vcombine_u16(vqmovn_u32(in1), vqmovn_u32(in2)); if (vmaxvq_u16(utf16_packed) <= 0xff) { // 1. pack the bytes uint8x8_t latin1_packed = vmovn_u16(utf16_packed); // 2. store (8 bytes) vst1_u8(reinterpret_cast(latin1_output), latin1_packed); // 3. adjust pointers buf += 8; latin1_output += 8; } else { // Let us do a scalar fallback. for (int k = 0; k < 8; k++) { uint32_t word = buf[k]; if (word <= 0xff) { *latin1_output++ = char(word); } else { return std::make_pair(result(error_code::TOO_LARGE, buf - start + k), latin1_output); } } } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), latin1_output); } /* end file src/arm64/arm_convert_utf32_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_UTF16 /* begin file src/arm64/arm_convert_utf32_to_utf16.cpp */ struct expansion_result_t { size_t u16count; uint8x16_t compressed_v; }; // This function is used to check for invalid UTF-32 characters // and surrogate pairs in the input simdutf_really_inline uint64_t invalid_utf32(const uint32x4x2_t in) { const auto standardmax = vdupq_n_u32(0x10ffff); const auto v_d800 = vdupq_n_u32(0xd800); const auto v_fffff800 = vdupq_n_u32(0xfffff800); const auto too_large1 = vcgtq_u32(in.val[0], standardmax); const auto too_large2 = vcgtq_u32(in.val[1], standardmax); const auto surrogate1 = vceqq_u32(vandq_u32(in.val[0], v_fffff800), v_d800); const auto surrogate2 = vceqq_u32(vandq_u32(in.val[1], v_fffff800), v_d800); const auto err1 = vorrq_u32(too_large1, surrogate1); const auto err2 = vorrq_u32(too_large2, surrogate2); const auto err = vuzp2q_u16(vreinterpretq_u16_u32(err1), vreinterpretq_u16_u32(err2)); return vget_lane_u64(vreinterpret_u64_u8(vshrn_n_u16(err, 8)), 0); } // This function is used to check for surrogate pairs in the input simdutf_really_inline uint64_t fast_invalid_utf32(const uint32x4x2_t in) { const auto v_d800 = vdupq_n_u32(0xd800); const auto v_fffff800 = vdupq_n_u32(0xfffff800); const auto surrogate1 = vceqq_u32(vandq_u32(in.val[0], v_fffff800), v_d800); const auto surrogate2 = vceqq_u32(vandq_u32(in.val[1], v_fffff800), v_d800); const auto err = vuzp2q_u16(vreinterpretq_u16_u32(surrogate1), vreinterpretq_u16_u32(surrogate2)); return vget_lane_u64(vreinterpret_u64_u8(vshrn_n_u16(err, 8)), 0); } template simdutf_really_inline expansion_result_t neon_expand_surrogate(const uint32x4_t in) { const uint32x4_t v_ffff0000 = vdupq_n_u32(0xffff0000); const uint32x4_t non_surrogate_mask = vceqzq_u32(vandq_u32(in, v_ffff0000)); const uint64_t cmp_bits = vget_lane_u64(vreinterpret_u64_u32(vshrn_n_u64( vreinterpretq_u64_u32(non_surrogate_mask), 31)), 0); const uint8_t mask = uint8_t(~((cmp_bits & 0x3) | ((cmp_bits >> 30) & 0xc)) & 0xf); const uint32x4_t v_10000 = vdupq_n_u32(0x00010000); const uint32x4_t t0 = vsubq_u32(in, v_10000); const uint32x4_t t1 = vandq_u32(t0, vdupq_n_u32(0xfffff)); const uint32x4_t t2 = vshrq_n_u32(t1, 10); const uint32x4_t t3 = vsliq_n_u32(t2, t1, 16); const uint32x4_t surrogates = vorrq_u32( vandq_u32(t3, vdupq_n_u32(0x03ff03ff)), vdupq_n_u32(0xdc00d800)); const uint8x16_t merged = vreinterpretq_u8_u32(vbslq_u32(non_surrogate_mask, in, surrogates)); const uint8x16_t shuffle_v = vld1q_u8(reinterpret_cast( (byte_order == endianness::LITTLE) ? tables::utf32_to_utf16::pack_utf32_to_utf16le[mask] : tables::utf32_to_utf16::pack_utf32_to_utf16be[mask])); const size_t u16count = 4 + vget_lane_u8(vcnt_u8(vcreate_u8(mask)), 0); const uint8x16_t compressed_v = vqtbl1q_u8(merged, shuffle_v); return {u16count, compressed_v}; } template std::pair arm_convert_utf32_to_utf16(const char32_t *buf, size_t len, char16_t *utf16_out) { uint16_t *utf16_output = reinterpret_cast(utf16_out); const char32_t *end = buf + len; uint16x8_t forbidden_bytemask = vmovq_n_u16(0x0); // To avoid buffer overflow while writing compressed_v const size_t safety_margin = 4; while (end - buf >= std::ptrdiff_t(8 + safety_margin)) { uint32x4x2_t in = vld1q_u32_x2(reinterpret_cast(buf)); // Check if no bits set above 16th uint32_t max_val = vmaxvq_u32(vmaxq_u32(in.val[0], in.val[1])); if (simdutf_likely(max_val <= 0xFFFF)) { uint16x8_t utf16_packed = vuzp1q_u16(vreinterpretq_u16_u32(in.val[0]), vreinterpretq_u16_u32(in.val[1])); const uint16x8_t v_d800 = vmovq_n_u16((uint16_t)0xd800); const uint16x8_t v_f800 = vmovq_n_u16((uint16_t)0xf800); forbidden_bytemask = vorrq_u16(vceqq_u16(vandq_u16(utf16_packed, v_f800), v_d800), forbidden_bytemask); if (!match_system(big_endian)) { utf16_packed = vreinterpretq_u16_u8( vrev16q_u8(vreinterpretq_u8_u16(utf16_packed))); } vst1q_u16(utf16_output, utf16_packed); utf16_output += 8; buf += 8; } else { if (simdutf_unlikely(fast_invalid_utf32(in) || max_val > 0x10ffff)) { return std::make_pair(nullptr, reinterpret_cast(utf16_output)); } expansion_result_t res = neon_expand_surrogate(in.val[0]); vst1q_u8(reinterpret_cast(utf16_output), res.compressed_v); utf16_output += res.u16count; res = neon_expand_surrogate(in.val[1]); vst1q_u8(reinterpret_cast(utf16_output), res.compressed_v); utf16_output += res.u16count; buf += 8; } } // check for invalid input if (vmaxvq_u32(vreinterpretq_u32_u16(forbidden_bytemask)) != 0) { return std::make_pair(nullptr, reinterpret_cast(utf16_output)); } return std::make_pair(buf, reinterpret_cast(utf16_output)); } template std::pair arm_convert_utf32_to_utf16_with_errors(const char32_t *buf, size_t len, char16_t *utf16_out) { uint16_t *utf16_output = reinterpret_cast(utf16_out); const char32_t *start = buf; const char32_t *end = buf + len; // To avoid buffer overflow while writing compressed_v const size_t safety_margin = 4; while (end - buf >= std::ptrdiff_t(8 + safety_margin)) { uint32x4x2_t in = vld1q_u32_x2(reinterpret_cast(buf)); // Check if no bits set above 16th uint32_t max_val = vmaxvq_u32(vmaxq_u32(in.val[0], in.val[1])); if (simdutf_likely(max_val <= 0xFFFF)) { uint16x8_t utf16_packed = vuzp1q_u16(vreinterpretq_u16_u32(in.val[0]), vreinterpretq_u16_u32(in.val[1])); const uint16x8_t v_d800 = vmovq_n_u16((uint16_t)0xd800); const uint16x8_t v_f800 = vmovq_n_u16((uint16_t)0xf800); const uint16x8_t forbidden_bytemask = vceqq_u16(vandq_u16(utf16_packed, v_f800), v_d800); if (vmaxvq_u16(forbidden_bytemask) != 0) { return std::make_pair(result(error_code::SURROGATE, buf - start), reinterpret_cast(utf16_output)); } if (!match_system(big_endian)) { utf16_packed = vreinterpretq_u16_u8( vrev16q_u8(vreinterpretq_u8_u16(utf16_packed))); } vst1q_u16(utf16_output, utf16_packed); utf16_output += 8; buf += 8; } else { const uint64_t err = max_val <= 0x10ffff ? fast_invalid_utf32(in) : invalid_utf32(in); if (simdutf_unlikely(err)) { const size_t pos = trailing_zeroes(err) / 8; for (size_t k = 0; k < pos; k++) { uint32_t word = buf[k]; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair *utf16_output++ = !match_system(big_endian) ? char16_t(word >> 8 | word << 8) : char16_t(word); } else { // will generate a surrogate pair word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = uint16_t(high_surrogate >> 8 | high_surrogate << 8); low_surrogate = uint16_t(low_surrogate << 8 | low_surrogate >> 8); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } } const uint32_t word = buf[pos]; const size_t error_pos = buf - start + pos; if (word > 0x10FFFF) { return {result(error_code::TOO_LARGE, error_pos), reinterpret_cast(utf16_output)}; } if (word >= 0xD800 && word <= 0xDFFF) { return {result(error_code::SURROGATE, error_pos), reinterpret_cast(utf16_output)}; } return {result(error_code::OTHER, error_pos), reinterpret_cast(utf16_output)}; } expansion_result_t res = neon_expand_surrogate(in.val[0]); vst1q_u8(reinterpret_cast(utf16_output), res.compressed_v); utf16_output += res.u16count; res = neon_expand_surrogate(in.val[1]); vst1q_u8(reinterpret_cast(utf16_output), res.compressed_v); utf16_output += res.u16count; buf += 8; } } return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf16_output)); } /* end file src/arm64/arm_convert_utf32_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_UTF8 /* begin file src/arm64/arm_convert_utf32_to_utf8.cpp */ std::pair arm_convert_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char32_t *end = buf + len; const uint16x8_t v_c080 = vmovq_n_u16((uint16_t)0xc080); uint16x8_t forbidden_bytemask = vmovq_n_u16(0x0); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (buf + 16 + safety_margin < end) { uint32x4_t in = vld1q_u32(reinterpret_cast(buf)); uint32x4_t nextin = vld1q_u32(reinterpret_cast(buf + 4)); // Check if no bits set above 16th if (vmaxvq_u32(vorrq_u32(in, nextin)) <= 0xFFFF) { // Pack UTF-32 to UTF-16 safely (without surrogate pairs) // Apply UTF-16 => UTF-8 routine (arm_convert_utf16_to_utf8.cpp) uint16x8_t utf16_packed = vcombine_u16(vmovn_u32(in), vmovn_u32(nextin)); if (vmaxvq_u16(utf16_packed) <= 0x7F) { // ASCII fast path!!!! // 1. pack the bytes // obviously suboptimal. uint8x8_t utf8_packed = vmovn_u16(utf16_packed); // 2. store (8 bytes) vst1_u8(utf8_output, utf8_packed); // 3. adjust pointers buf += 8; utf8_output += 8; continue; // we are done for this round! } if (vmaxvq_u16(utf16_packed) <= 0x7FF) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const uint16x8_t v_1f00 = vmovq_n_u16((int16_t)0x1f00); const uint16x8_t v_003f = vmovq_n_u16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const uint16x8_t t0 = vshlq_n_u16(utf16_packed, 2); // t1 = [000a|aaaa|0000|0000] const uint16x8_t t1 = vandq_u16(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const uint16x8_t t2 = vandq_u16(utf16_packed, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const uint16x8_t t3 = vorrq_u16(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const uint16x8_t t4 = vorrq_u16(t3, v_c080); // 2. merge ASCII and 2-byte codewords const uint16x8_t v_007f = vmovq_n_u16((uint16_t)0x007F); const uint16x8_t one_byte_bytemask = vcleq_u16(utf16_packed, v_007f); const uint8x16_t utf8_unpacked = vreinterpretq_u8_u16( vbslq_u16(one_byte_bytemask, utf16_packed, t4)); // 3. prepare bitmask for 8-bit lookup #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t mask = simdutf_make_uint16x8_t( 0x0001, 0x0004, 0x0010, 0x0040, 0x0002, 0x0008, 0x0020, 0x0080); #else const uint16x8_t mask = {0x0001, 0x0004, 0x0010, 0x0040, 0x0002, 0x0008, 0x0020, 0x0080}; #endif uint16_t m2 = vaddvq_u16(vandq_u16(one_byte_bytemask, mask)); // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[m2][0]; const uint8x16_t shuffle = vld1q_u8(row + 1); const uint8x16_t utf8_packed = vqtbl1q_u8(utf8_unpacked, shuffle); // 5. store bytes vst1q_u8(utf8_output, utf8_packed); // 6. adjust pointers buf += 8; utf8_output += row[0]; continue; } else { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes const uint16x8_t v_d800 = vmovq_n_u16((uint16_t)0xd800); const uint16x8_t v_dfff = vmovq_n_u16((uint16_t)0xdfff); forbidden_bytemask = vorrq_u16(vandq_u16(vcleq_u16(utf16_packed, v_dfff), vcgeq_u16(utf16_packed, v_d800)), forbidden_bytemask); #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t dup_even = simdutf_make_uint16x8_t( 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); #else const uint16x8_t dup_even = {0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e}; #endif /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) vmovq_n_u16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const uint16x8_t t0 = vreinterpretq_u16_u8(vqtbl1q_u8(vreinterpretq_u8_u16(utf16_packed), vreinterpretq_u8_u16(dup_even))); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const uint16x8_t t1 = vandq_u16(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const uint16x8_t t2 = vorrq_u16(t1, simdutf_vec(0b1000000000000000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] const uint16x8_t s0 = vshrq_n_u16(utf16_packed, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] const uint16x8_t s1 = vandq_u16(utf16_packed, simdutf_vec(0b0000111111000000)); // [0000|bbbb|bb00|0000] => [00bb|bbbb|0000|0000] const uint16x8_t s1s = vshlq_n_u16(s1, 2); // [00bb|bbbb|0000|aaaa] const uint16x8_t s2 = vorrq_u16(s0, s1s); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const uint16x8_t s3 = vorrq_u16(s2, simdutf_vec(0b1100000011100000)); const uint16x8_t v_07ff = vmovq_n_u16((uint16_t)0x07FF); const uint16x8_t one_or_two_bytes_bytemask = vcleq_u16(utf16_packed, v_07ff); const uint16x8_t m0 = vbicq_u16(simdutf_vec(0b0100000000000000), one_or_two_bytes_bytemask); const uint16x8_t s4 = veorq_u16(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const uint8x16_t out0 = vreinterpretq_u8_u16(vzip1q_u16(t2, s4)); const uint8x16_t out1 = vreinterpretq_u8_u16(vzip2q_u16(t2, s4)); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint16x8_t v_007f = vmovq_n_u16((uint16_t)0x007F); const uint16x8_t one_byte_bytemask = vcleq_u16(utf16_packed, v_007f); #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t onemask = simdutf_make_uint16x8_t( 0x0001, 0x0004, 0x0010, 0x0040, 0x0100, 0x0400, 0x1000, 0x4000); const uint16x8_t twomask = simdutf_make_uint16x8_t( 0x0002, 0x0008, 0x0020, 0x0080, 0x0200, 0x0800, 0x2000, 0x8000); #else const uint16x8_t onemask = {0x0001, 0x0004, 0x0010, 0x0040, 0x0100, 0x0400, 0x1000, 0x4000}; const uint16x8_t twomask = {0x0002, 0x0008, 0x0020, 0x0080, 0x0200, 0x0800, 0x2000, 0x8000}; #endif const uint16x8_t combined = vorrq_u16(vandq_u16(one_byte_bytemask, onemask), vandq_u16(one_or_two_bytes_bytemask, twomask)); const uint16_t mask = vaddvq_u16(combined); // The following fast path may or may not be beneficial. /*if(mask == 0) { // We only have three-byte code units. Use fast path. const uint8x16_t shuffle = {2,3,1,6,7,5,10,11,9,14,15,13,0,0,0,0}; const uint8x16_t utf8_0 = vqtbl1q_u8(out0, shuffle); const uint8x16_t utf8_1 = vqtbl1q_u8(out1, shuffle); vst1q_u8(utf8_output, utf8_0); utf8_output += 12; vst1q_u8(utf8_output, utf8_1); utf8_output += 12; buf += 8; continue; }*/ const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const uint8x16_t shuffle0 = vld1q_u8(row0 + 1); const uint8x16_t utf8_0 = vqtbl1q_u8(out0, shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const uint8x16_t shuffle1 = vld1q_u8(row1 + 1); const uint8x16_t utf8_1 = vqtbl1q_u8(out1, shuffle1); vst1q_u8(utf8_output, utf8_0); utf8_output += row0[0]; vst1q_u8(utf8_output, utf8_1); utf8_output += row1[0]; buf += 8; } // At least one 32-bit word will produce a surrogate pair in UTF-16 <=> // will produce four UTF-8 bytes. } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (word > 0x10FFFF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while // check for invalid input if (vmaxvq_u16(forbidden_bytemask) != 0) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } return std::make_pair(buf, reinterpret_cast(utf8_output)); } std::pair arm_convert_utf32_to_utf8_with_errors(const char32_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char32_t *start = buf; const char32_t *end = buf + len; const uint16x8_t v_c080 = vmovq_n_u16((uint16_t)0xc080); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (buf + 16 + safety_margin < end) { uint32x4_t in = vld1q_u32(reinterpret_cast(buf)); uint32x4_t nextin = vld1q_u32(reinterpret_cast(buf + 4)); // Check if no bits set above 16th if (vmaxvq_u32(vorrq_u32(in, nextin)) <= 0xFFFF) { // Pack UTF-32 to UTF-16 safely (without surrogate pairs) // Apply UTF-16 => UTF-8 routine (arm_convert_utf16_to_utf8.cpp) uint16x8_t utf16_packed = vcombine_u16(vmovn_u32(in), vmovn_u32(nextin)); if (vmaxvq_u16(utf16_packed) <= 0x7F) { // ASCII fast path!!!! // 1. pack the bytes // obviously suboptimal. uint8x8_t utf8_packed = vmovn_u16(utf16_packed); // 2. store (8 bytes) vst1_u8(utf8_output, utf8_packed); // 3. adjust pointers buf += 8; utf8_output += 8; continue; // we are done for this round! } if (vmaxvq_u16(utf16_packed) <= 0x7FF) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const uint16x8_t v_1f00 = vmovq_n_u16((int16_t)0x1f00); const uint16x8_t v_003f = vmovq_n_u16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const uint16x8_t t0 = vshlq_n_u16(utf16_packed, 2); // t1 = [000a|aaaa|0000|0000] const uint16x8_t t1 = vandq_u16(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const uint16x8_t t2 = vandq_u16(utf16_packed, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const uint16x8_t t3 = vorrq_u16(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const uint16x8_t t4 = vorrq_u16(t3, v_c080); // 2. merge ASCII and 2-byte codewords const uint16x8_t v_007f = vmovq_n_u16((uint16_t)0x007F); const uint16x8_t one_byte_bytemask = vcleq_u16(utf16_packed, v_007f); const uint8x16_t utf8_unpacked = vreinterpretq_u8_u16( vbslq_u16(one_byte_bytemask, utf16_packed, t4)); // 3. prepare bitmask for 8-bit lookup #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t mask = simdutf_make_uint16x8_t( 0x0001, 0x0004, 0x0010, 0x0040, 0x0002, 0x0008, 0x0020, 0x0080); #else const uint16x8_t mask = {0x0001, 0x0004, 0x0010, 0x0040, 0x0002, 0x0008, 0x0020, 0x0080}; #endif uint16_t m2 = vaddvq_u16(vandq_u16(one_byte_bytemask, mask)); // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[m2][0]; const uint8x16_t shuffle = vld1q_u8(row + 1); const uint8x16_t utf8_packed = vqtbl1q_u8(utf8_unpacked, shuffle); // 5. store bytes vst1q_u8(utf8_output, utf8_packed); // 6. adjust pointers buf += 8; utf8_output += row[0]; continue; } else { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes // check for invalid input const uint16x8_t v_d800 = vmovq_n_u16((uint16_t)0xd800); const uint16x8_t v_dfff = vmovq_n_u16((uint16_t)0xdfff); const uint16x8_t forbidden_bytemask = vandq_u16( vcleq_u16(utf16_packed, v_dfff), vcgeq_u16(utf16_packed, v_d800)); if (vmaxvq_u16(forbidden_bytemask) != 0) { return std::make_pair(result(error_code::SURROGATE, buf - start), reinterpret_cast(utf8_output)); } #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t dup_even = simdutf_make_uint16x8_t( 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); #else const uint16x8_t dup_even = {0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e}; #endif /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) vmovq_n_u16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const uint16x8_t t0 = vreinterpretq_u16_u8(vqtbl1q_u8(vreinterpretq_u8_u16(utf16_packed), vreinterpretq_u8_u16(dup_even))); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const uint16x8_t t1 = vandq_u16(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const uint16x8_t t2 = vorrq_u16(t1, simdutf_vec(0b1000000000000000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] const uint16x8_t s0 = vshrq_n_u16(utf16_packed, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] const uint16x8_t s1 = vandq_u16(utf16_packed, simdutf_vec(0b0000111111000000)); // [0000|bbbb|bb00|0000] => [00bb|bbbb|0000|0000] const uint16x8_t s1s = vshlq_n_u16(s1, 2); // [00bb|bbbb|0000|aaaa] const uint16x8_t s2 = vorrq_u16(s0, s1s); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const uint16x8_t s3 = vorrq_u16(s2, simdutf_vec(0b1100000011100000)); const uint16x8_t v_07ff = vmovq_n_u16((uint16_t)0x07FF); const uint16x8_t one_or_two_bytes_bytemask = vcleq_u16(utf16_packed, v_07ff); const uint16x8_t m0 = vbicq_u16(simdutf_vec(0b0100000000000000), one_or_two_bytes_bytemask); const uint16x8_t s4 = veorq_u16(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const uint8x16_t out0 = vreinterpretq_u8_u16(vzip1q_u16(t2, s4)); const uint8x16_t out1 = vreinterpretq_u8_u16(vzip2q_u16(t2, s4)); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint16x8_t v_007f = vmovq_n_u16((uint16_t)0x007F); const uint16x8_t one_byte_bytemask = vcleq_u16(utf16_packed, v_007f); #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO const uint16x8_t onemask = simdutf_make_uint16x8_t( 0x0001, 0x0004, 0x0010, 0x0040, 0x0100, 0x0400, 0x1000, 0x4000); const uint16x8_t twomask = simdutf_make_uint16x8_t( 0x0002, 0x0008, 0x0020, 0x0080, 0x0200, 0x0800, 0x2000, 0x8000); #else const uint16x8_t onemask = {0x0001, 0x0004, 0x0010, 0x0040, 0x0100, 0x0400, 0x1000, 0x4000}; const uint16x8_t twomask = {0x0002, 0x0008, 0x0020, 0x0080, 0x0200, 0x0800, 0x2000, 0x8000}; #endif const uint16x8_t combined = vorrq_u16(vandq_u16(one_byte_bytemask, onemask), vandq_u16(one_or_two_bytes_bytemask, twomask)); const uint16_t mask = vaddvq_u16(combined); // The following fast path may or may not be beneficial. /*if(mask == 0) { // We only have three-byte code units. Use fast path. const uint8x16_t shuffle = {2,3,1,6,7,5,10,11,9,14,15,13,0,0,0,0}; const uint8x16_t utf8_0 = vqtbl1q_u8(out0, shuffle); const uint8x16_t utf8_1 = vqtbl1q_u8(out1, shuffle); vst1q_u8(utf8_output, utf8_0); utf8_output += 12; vst1q_u8(utf8_output, utf8_1); utf8_output += 12; buf += 8; continue; }*/ const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const uint8x16_t shuffle0 = vld1q_u8(row0 + 1); const uint8x16_t utf8_0 = vqtbl1q_u8(out0, shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const uint8x16_t shuffle1 = vld1q_u8(row1 + 1); const uint8x16_t utf8_1 = vqtbl1q_u8(out1, shuffle1); vst1q_u8(utf8_output, utf8_0); utf8_output += row0[0]; vst1q_u8(utf8_output, utf8_1); utf8_output += row1[0]; buf += 8; } // At least one 32-bit word will produce a surrogate pair in UTF-16 <=> // will produce four UTF-8 bytes. } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k), reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (word > 0x10FFFF) { return std::make_pair( result(error_code::TOO_LARGE, buf - start + k), reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf8_output)); } /* end file src/arm64/arm_convert_utf32_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_UTF8 } // unnamed namespace } // namespace arm64 } // namespace simdutf /* begin file src/generic/buf_block_reader.h */ namespace simdutf { namespace arm64 { namespace { // Walks through a buffer in block-sized increments, loading the last part with // spaces template struct buf_block_reader { public: simdutf_really_inline buf_block_reader(const uint8_t *_buf, size_t _len); simdutf_really_inline size_t block_index(); simdutf_really_inline bool has_full_block() const; simdutf_really_inline const uint8_t *full_block() const; /** * Get the last block, padded with spaces. * * There will always be a last block, with at least 1 byte, unless len == 0 * (in which case this function fills the buffer with spaces and returns 0. In * particular, if len == STEP_SIZE there will be 0 full_blocks and 1 remainder * block with STEP_SIZE bytes and no spaces for padding. * * @return the number of effective characters in the last block. */ simdutf_really_inline size_t get_remainder(uint8_t *dst) const; simdutf_really_inline void advance(); private: const uint8_t *buf; const size_t len; const size_t lenminusstep; size_t idx; }; // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text_64(const uint8_t *text) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); for (size_t i = 0; i < sizeof(simd8x64); i++) { buf[i] = int8_t(text[i]) < ' ' ? '_' : int8_t(text[i]); } buf[sizeof(simd8x64)] = '\0'; return buf; } // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text(const simd8x64 &in) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); in.store(reinterpret_cast(buf)); for (size_t i = 0; i < sizeof(simd8x64); i++) { if (buf[i] < ' ') { buf[i] = '_'; } } buf[sizeof(simd8x64)] = '\0'; return buf; } simdutf_unused static char *format_mask(uint64_t mask) { static char *buf = reinterpret_cast(malloc(64 + 1)); for (size_t i = 0; i < 64; i++) { buf[i] = (mask & (size_t(1) << i)) ? 'X' : ' '; } buf[64] = '\0'; return buf; } template simdutf_really_inline buf_block_reader::buf_block_reader(const uint8_t *_buf, size_t _len) : buf{_buf}, len{_len}, lenminusstep{len < STEP_SIZE ? 0 : len - STEP_SIZE}, idx{0} {} template simdutf_really_inline size_t buf_block_reader::block_index() { return idx; } template simdutf_really_inline bool buf_block_reader::has_full_block() const { return idx < lenminusstep; } template simdutf_really_inline const uint8_t * buf_block_reader::full_block() const { return &buf[idx]; } template simdutf_really_inline size_t buf_block_reader::get_remainder(uint8_t *dst) const { if (len == idx) { return 0; } // memcpy(dst, null, 0) will trigger an error with some sanitizers std::memset(dst, 0x20, STEP_SIZE); // std::memset STEP_SIZE because it is more efficient // to write out 8 or 16 bytes at once. std::memcpy(dst, buf + idx, len - idx); return len - idx; } template simdutf_really_inline void buf_block_reader::advance() { idx += STEP_SIZE; } } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/buf_block_reader.h */ #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ namespace simdutf { namespace arm64 { namespace { namespace utf8_validation { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } // // Return nonzero if there are incomplete multibyte characters at the end of the // block: e.g. if there is a 4-byte character, but it is 3 bytes from the end. // simdutf_really_inline simd8 is_incomplete(const simd8 input) { // If the previous input's last 3 bytes match this, they're too short (they // ended at EOF): // ... 1111____ 111_____ 11______ static const uint8_t max_array[32] = {255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0b11110000u - 1, 0b11100000u - 1, 0b11000000u - 1}; const simd8 max_value( &max_array[sizeof(max_array) - sizeof(simd8)]); return input.gt_bits(max_value); } struct utf8_checker { // If this is nonzero, there has been a UTF-8 error. simd8 error; // The last input we received simd8 prev_input_block; // Whether the last input we received was incomplete (used for ASCII fast // path) simd8 prev_incomplete; // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } // The only problem that can happen at EOF is that a multibyte character is // too short or a byte value too large in the last bytes: check_special_cases // only checks for bytes too large in the first of two bytes. simdutf_really_inline void check_eof() { // If the previous block had incomplete UTF-8 characters at the end, an // ASCII block can't possibly finish them. this->error |= this->prev_incomplete; } simdutf_really_inline void check_next_input(const simd8x64 &input) { if (simdutf_likely(is_ascii(input))) { this->error |= this->prev_incomplete; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. static_assert((simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } this->prev_incomplete = is_incomplete(input.chunks[simd8x64::NUM_CHUNKS - 1]); this->prev_input_block = input.chunks[simd8x64::NUM_CHUNKS - 1]; } } // do not forget to call check_eof! simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_validation using utf8_validation::utf8_checker; } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ /* begin file src/generic/utf8_validation/utf8_validator.h */ namespace simdutf { namespace arm64 { namespace { namespace utf8_validation { /** * Validates that the string is actual UTF-8. */ template bool generic_validate_utf8(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); return !c.errors(); } bool generic_validate_utf8(const char *input, size_t length) { return generic_validate_utf8( reinterpret_cast(input), length); } /** * Validates that the string is actual UTF-8 and stops on errors. */ template result generic_validate_utf8_with_errors(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input + count), length - count); res.count += count; return res; } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input) + count, length - count); res.count += count; return res; } else { return result(error_code::SUCCESS, length); } } result generic_validate_utf8_with_errors(const char *input, size_t length) { return generic_validate_utf8_with_errors( reinterpret_cast(input), length); } } // namespace utf8_validation } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/utf8_validation/utf8_validator.h */ #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_ASCII /* begin file src/generic/ascii_validation.h */ namespace simdutf { namespace arm64 { namespace { namespace ascii_validation { bool generic_validate_ascii(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); uint8_t blocks[64]{}; simd::simd8x64 running_or(blocks); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); running_or |= in; reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); running_or |= in; return running_or.is_ascii(); } result generic_validate_ascii_with_errors(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } else { return result(error_code::SUCCESS, length); } } } // namespace ascii_validation } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/ascii_validation.h */ #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 // transcoding from UTF-8 to UTF-16 /* begin file src/generic/utf8_to_utf16/utf8_to_utf16.h */ namespace simdutf { namespace arm64 { namespace { namespace utf8_to_utf16 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } template simdutf_really_inline size_t convert(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf16::convert( in + pos, size - pos, utf16_output); if (howmany == 0) { return 0; } utf16_output += howmany; } return utf16_output - start; } template simdutf_really_inline result convert_with_errors(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf16_output += res.count; } } return result(error_code::SUCCESS, utf16_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf16 } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/utf8_to_utf16/utf8_to_utf16.h */ /* begin file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ namespace simdutf { namespace arm64 { namespace { namespace utf8_to_utf16 { using namespace simd; template simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char16_t *utf16_output) noexcept { // The implementation is not specific to haswell and should be moved to the // generic directory. size_t pos = 0; char16_t *start{utf16_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { // this loop could be unrolled further. For example, we could process the // mask far more than 64 bytes. simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // Slow path. We hope that the compiler will recognize that this is a slow // path. Anything that is not a continuation mask is a 'leading byte', // that is, the start of a new code point. uint64_t utf8_continuation_mask = in.lt(-65 + 1); // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_leading_mask = ~utf8_continuation_mask; // The *start* of code points is not so useful, rather, we want the *end* // of code points. uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times when using solely // the slow/regular path, and at least four times if there are fast paths. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. // // Thus we may allow convert_masked_utf8_to_utf16 to process // more bytes at a time under a fast-path mode where 16 bytes // are consumed at once (e.g., when encountering ASCII). size_t consumed = convert_masked_utf8_to_utf16( input + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } utf16_output += scalar::utf8_to_utf16::convert_valid( input + pos, size - pos, utf16_output); return utf16_output - start; } } // namespace utf8_to_utf16 } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 // transcoding from UTF-8 to UTF-32 /* begin file src/generic/utf8_to_utf32/utf8_to_utf32.h */ namespace simdutf { namespace arm64 { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } simdutf_really_inline size_t convert(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 words when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // we have an error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf32::convert(in + pos, size - pos, utf32_output); if (howmany == 0) { return 0; } utf32_output += howmany; } return utf32_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } if (pos < size) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf32_output += res.count; } } return result(error_code::SUCCESS, utf32_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf32 } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/utf8_to_utf32/utf8_to_utf32.h */ /* begin file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ namespace simdutf { namespace arm64 { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char32_t *utf32_output) noexcept { size_t pos = 0; char32_t *start{utf32_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_continuation_mask = in.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; size_t max_starting_point = (pos + 64) - 12; while (pos < max_starting_point) { size_t consumed = convert_masked_utf8_to_utf32( input + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } } } utf32_output += scalar::utf8_to_utf32::convert_valid(input + pos, size - pos, utf32_output); return utf32_output - start; } } // namespace utf8_to_utf32 } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 // other functions #if SIMDUTF_FEATURE_UTF16 /* begin file src/generic/utf16.h */ namespace simdutf { namespace arm64 { namespace { namespace utf16 { template simdutf_really_inline size_t count_code_points(const char16_t *in, size_t size) { size_t pos = 0; size_t count = 0; for (; pos < size / 32 * 32; pos += 32) { simd16x32 input(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input.swap_bytes(); } uint64_t not_pair = input.not_in_range(0xDC00, 0xDFFF); count += count_ones(not_pair) / 2; } return count + scalar::utf16::count_code_points(in + pos, size - pos); } template simdutf_really_inline size_t utf8_length_from_utf16(const char16_t *in, size_t size) { size_t pos = 0; size_t count = 0; // This algorithm could no doubt be improved! for (; pos < size / 32 * 32; pos += 32) { simd16x32 input(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input.swap_bytes(); } uint64_t ascii_mask = input.lteq(0x7F); uint64_t twobyte_mask = input.lteq(0x7FF); uint64_t not_pair_mask = input.not_in_range(0xD800, 0xDFFF); size_t ascii_count = count_ones(ascii_mask) / 2; size_t twobyte_count = count_ones(twobyte_mask & ~ascii_mask) / 2; size_t threebyte_count = count_ones(not_pair_mask & ~twobyte_mask) / 2; size_t fourbyte_count = 32 - count_ones(not_pair_mask) / 2; count += 2 * fourbyte_count + 3 * threebyte_count + 2 * twobyte_count + ascii_count; } return count + scalar::utf16::utf8_length_from_utf16(in + pos, size - pos); } template simdutf_really_inline size_t utf32_length_from_utf16(const char16_t *in, size_t size) { return count_code_points(in, size); } simdutf_really_inline void change_endianness_utf16(const char16_t *in, size_t size, char16_t *output) { size_t pos = 0; while (pos < size / 32 * 32) { simd16x32 input(reinterpret_cast(in + pos)); input.swap_bytes(); input.store(reinterpret_cast(output)); pos += 32; output += 32; } scalar::utf16::change_endianness_utf16(in + pos, size - pos, output); } } // namespace utf16 } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/utf16.h */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 /* begin file src/generic/utf8.h */ namespace simdutf { namespace arm64 { namespace { namespace utf8 { using namespace simd; simdutf_really_inline size_t count_code_points(const char *in, size_t size) { size_t pos = 0; size_t count = 0; for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.gt(-65); count += count_ones(utf8_continuation_mask); } return count + scalar::utf8::count_code_points(in + pos, size - pos); } #ifdef SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t count_code_points_bytemask(const char *in, size_t size) { using vector_i8 = simd8; using vector_u8 = simd8; using vector_u64 = simd64; constexpr size_t N = vector_i8::SIZE; constexpr size_t max_iterations = 255 / 4; size_t pos = 0; size_t count = 0; auto counters = vector_u64::zero(); auto local = vector_u8::zero(); size_t iterations = 0; for (; pos + 4 * N <= size; pos += 4 * N) { const auto input0 = simd8::load(reinterpret_cast(in + pos + 0 * N)); const auto input1 = simd8::load(reinterpret_cast(in + pos + 1 * N)); const auto input2 = simd8::load(reinterpret_cast(in + pos + 2 * N)); const auto input3 = simd8::load(reinterpret_cast(in + pos + 3 * N)); const auto mask0 = input0 > int8_t(-65); const auto mask1 = input1 > int8_t(-65); const auto mask2 = input2 > int8_t(-65); const auto mask3 = input3 > int8_t(-65); local -= vector_u8(mask0); local -= vector_u8(mask1); local -= vector_u8(mask2); local -= vector_u8(mask3); iterations += 1; if (iterations == max_iterations) { counters += sum_8bytes(local); local = vector_u8::zero(); iterations = 0; } } if (iterations > 0) { count += local.sum_bytes(); } count += counters.sum(); return count + scalar::utf8::count_code_points(in + pos, size - pos); } #endif // SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t utf16_length_from_utf8(const char *in, size_t size) { size_t pos = 0; size_t count = 0; // This algorithm could no doubt be improved! for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.lt(-65 + 1); // We count one word for anything that is not a continuation (so // leading bytes). count += 64 - count_ones(utf8_continuation_mask); int64_t utf8_4byte = input.gteq_unsigned(240); count += count_ones(utf8_4byte); } return count + scalar::utf8::utf16_length_from_utf8(in + pos, size - pos); } } // namespace utf8 } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/utf8.h */ #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 // transcoding from UTF-8 to Latin 1 /* begin file src/generic/utf8_to_latin1/utf8_to_latin1.h */ namespace simdutf { namespace arm64 { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // For UTF-8 to Latin 1, we can allow any ASCII character, and any // continuation byte, but the non-ASCII leading bytes must be 0b11000011 or // 0b11000010 and nothing else. // // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ constexpr const uint8_t FORBIDDEN = 0xff; const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ FORBIDDEN, // 1110____ ________ FORBIDDEN, // 1111____ ________ FORBIDDEN); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ FORBIDDEN, // ____0101 ________ FORBIDDEN, // ____011_ ________ FORBIDDEN, FORBIDDEN, // ____1___ ________ FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, // ____1101 ________ FORBIDDEN, FORBIDDEN, FORBIDDEN); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); this->error |= check_special_cases(input, prev1); } simdutf_really_inline size_t convert(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 16; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert(in + pos, size - pos, latin1_output); if (howmany == 0) { return 0; } latin1_output += howmany; } return latin1_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } uint64_t utf8_continuation_mask = input.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written latin1_output += res.count; } } return result(error_code::SUCCESS, latin1_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_latin1 } // unnamed namespace } // namespace arm64 } // namespace simdutf /* end file src/generic/utf8_to_latin1/utf8_to_latin1.h */ /* begin file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ namespace simdutf { namespace arm64 { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline size_t convert_valid(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the last // 16 bytes, and if the data is valid, then it is entirely safe because 16 // UTF-8 bytes generate much more than 8 bytes. However, you cannot generally // assume that you have valid UTF-8 input, so we are going to go back from the // end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert_valid(in + pos, size - pos, latin1_output); latin1_output += howmany; } return latin1_output - start; } } // namespace utf8_to_latin1 } // namespace } // namespace arm64 } // namespace simdutf // namespace simdutf /* end file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 // // Implementation-specific overrides // namespace simdutf { namespace arm64 { #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int implementation::detect_encodings(const char *input, size_t length) const noexcept { // If there is a BOM, then we trust it. auto bom_encoding = simdutf::BOM::check_bom(input, length); if (bom_encoding != encoding_type::unspecified) { return bom_encoding; } // todo: reimplement as a one-pass algorithm. int out = 0; if (validate_utf8(input, length)) { out |= encoding_type::UTF8; } if ((length % 2) == 0) { if (validate_utf16le(reinterpret_cast(input), length / 2)) { out |= encoding_type::UTF16_LE; } } if ((length % 4) == 0) { if (validate_utf32(reinterpret_cast(input), length / 4)) { out |= encoding_type::UTF32_LE; } } return out; } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf8(const char *buf, size_t len) const noexcept { return arm64::utf8_validation::generic_validate_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result implementation::validate_utf8_with_errors( const char *buf, size_t len) const noexcept { return arm64::utf8_validation::generic_validate_utf8_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_ascii(const char *buf, size_t len) const noexcept { return arm64::ascii_validation::generic_validate_ascii(buf, len); } simdutf_warn_unused result implementation::validate_ascii_with_errors( const char *buf, size_t len) const noexcept { return arm64::ascii_validation::generic_validate_ascii_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const char16_t *tail = arm_validate_utf16_as_ascii(buf, len); if (tail) { return scalar::utf16::validate_as_ascii( tail, len - (tail - buf)); } else { return false; } } simdutf_warn_unused bool implementation::validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const char16_t *tail = arm_validate_utf16_as_ascii(buf, len); if (tail) { return scalar::utf16::validate_as_ascii( tail, len - (tail - buf)); } else { return false; } } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf16le(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const char16_t *tail = arm_validate_utf16(buf, len); if (tail) { return scalar::utf16::validate(tail, len - (tail - buf)); } else { return false; } } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool implementation::validate_utf16be(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const char16_t *tail = arm_validate_utf16(buf, len); if (tail) { return scalar::utf16::validate(tail, len - (tail - buf)); } else { return false; } } simdutf_warn_unused result implementation::validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } result res = arm_validate_utf16_with_errors(buf, len); if (res.count != len) { result scalar_res = scalar::utf16::validate_with_errors( buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } simdutf_warn_unused result implementation::validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } result res = arm_validate_utf16_with_errors(buf, len); if (res.count != len) { result scalar_res = scalar::utf16::validate_with_errors( buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } void implementation::to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept { return utf16fix_neon_64bits(input, len, output); } void implementation::to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept { return utf16fix_neon_64bits(input, len, output); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf32(const char32_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const char32_t *tail = arm_validate_utf32le(buf, len); if (tail) { return scalar::utf32::validate(tail, len - (tail - buf)); } else { return false; } } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result implementation::validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } result res = arm_validate_utf32le_with_errors(buf, len); if (res.count != len) { result scalar_res = scalar::utf32::validate_with_errors(buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = arm_convert_latin1_to_utf8(buf, len, utf8_output); size_t converted_chars = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = arm_convert_latin1_to_utf16(buf, len, utf16_output); size_t converted_chars = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } simdutf_warn_unused size_t implementation::convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = arm_convert_latin1_to_utf16(buf, len, utf16_output); size_t converted_chars = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = arm_convert_latin1_to_utf32(buf, len, utf32_output); size_t converted_chars = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { utf8_to_latin1::validating_transcoder converter; return converter.convert(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_output) const noexcept { utf8_to_latin1::validating_transcoder converter; return converter.convert_with_errors(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { return arm64::utf8_to_latin1::convert_valid(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16le( const char *input, size_t size, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(input, size, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16be( const char *input, size_t size, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(input, size, utf16_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert(buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf32( const char *input, size_t size, char32_t *utf32_output) const noexcept { return utf8_to_utf32::convert_valid(input, size, utf32_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = arm_convert_utf16_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = arm_convert_utf16_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = arm_convert_utf16_to_latin1_with_errors( buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = arm_convert_utf16_to_latin1_with_errors(buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: implement a custom function. return convert_utf16be_to_latin1(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: implement a custom function. return convert_utf16le_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = arm_convert_utf16_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = arm_convert_utf16_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = arm_convert_utf16_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = arm_convert_utf16_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16le_to_utf8(buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16be_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { if (simdutf_unlikely(len == 0)) { return 0; } std::pair ret = arm_convert_utf32_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_output) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = arm_convert_utf32_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = arm_convert_utf16_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = arm_convert_utf16_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = arm_convert_utf16_to_utf32_with_errors(buf, len, utf32_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf32::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf32_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = arm_convert_utf16_to_utf32_with_errors(buf, len, utf32_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf32::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf32_output; // Set count to the number of 8-bit code units written return ret.first; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = arm_convert_utf32_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_latin1_with_errors( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = arm_convert_utf32_to_latin1_with_errors(buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf32_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = arm_convert_utf32_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_latin1::convert_valid( ret.first, len - (ret.first - buf), ret.second); saved_bytes += scalar_saved_bytes; } return saved_bytes; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { // optimization opportunity: implement a custom function. return convert_utf32_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = arm_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = arm_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = arm_convert_utf32_to_utf16_with_errors(buf, len, utf16_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf16::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = arm_convert_utf32_to_utf16_with_errors(buf, len, utf16_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf16::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16be(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16le_to_utf32(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16be_to_utf32(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void implementation::change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) const noexcept { utf16::change_endianness_utf16(input, length, output); } simdutf_warn_unused size_t implementation::count_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } simdutf_warn_unused size_t implementation::count_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t implementation::count_utf8(const char *input, size_t length) const noexcept { return utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::latin1_length_from_utf8( const char *buf, size_t len) const noexcept { return count_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::utf8_length_from_latin1( const char *input, size_t length) const noexcept { // See // https://lemire.me/blog/2023/05/15/computing-the-utf-8-size-of-a-latin-1-string-quickly-arm-neon-edition/ // credit to Pete Cawley const uint8_t *data = reinterpret_cast(input); uint64_t result = 0; const int lanes = sizeof(uint8x16_t); uint8_t rem = length % lanes; const uint8_t *simd_end = data + (length / lanes) * lanes; const uint8x16_t threshold = vdupq_n_u8(0x80); for (; data < simd_end; data += lanes) { // load 16 bytes uint8x16_t input_vec = vld1q_u8(data); // compare to threshold (0x80) uint8x16_t withhighbit = vcgeq_u8(input_vec, threshold); // vertical addition result -= vaddvq_s8(vreinterpretq_s8_u8(withhighbit)); } return result + (length / lanes) * lanes + scalar::latin1::utf8_length_from_latin1((const char *)simd_end, rem); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf8_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return arm64_utf8_length_from_utf16_bytemask(input, length); } simdutf_warn_unused size_t implementation::utf8_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return arm64_utf8_length_from_utf16_bytemask(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } simdutf_warn_unused size_t implementation::utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf16_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::utf16_length_from_utf8(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept { return arm64_utf8_length_from_utf16_with_replacement( input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept { return arm64_utf8_length_from_utf16_with_replacement(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf8_length_from_utf32( const char32_t *input, size_t length) const noexcept { const uint32x4_t v_7f = vmovq_n_u32((uint32_t)0x7f); const uint32x4_t v_7ff = vmovq_n_u32((uint32_t)0x7ff); const uint32x4_t v_ffff = vmovq_n_u32((uint32_t)0xffff); const uint32x4_t v_1 = vmovq_n_u32((uint32_t)0x1); size_t pos = 0; size_t count = 0; for (; pos + 4 <= length; pos += 4) { uint32x4_t in = vld1q_u32(reinterpret_cast(input + pos)); const uint32x4_t ascii_bytes_bytemask = vcleq_u32(in, v_7f); const uint32x4_t one_two_bytes_bytemask = vcleq_u32(in, v_7ff); const uint32x4_t two_bytes_bytemask = veorq_u32(one_two_bytes_bytemask, ascii_bytes_bytemask); const uint32x4_t three_bytes_bytemask = veorq_u32(vcleq_u32(in, v_ffff), one_two_bytes_bytemask); const uint16x8_t reduced_ascii_bytes_bytemask = vreinterpretq_u16_u32(vandq_u32(ascii_bytes_bytemask, v_1)); const uint16x8_t reduced_two_bytes_bytemask = vreinterpretq_u16_u32(vandq_u32(two_bytes_bytemask, v_1)); const uint16x8_t reduced_three_bytes_bytemask = vreinterpretq_u16_u32(vandq_u32(three_bytes_bytemask, v_1)); const uint16x8_t compressed_bytemask0 = vpaddq_u16(reduced_ascii_bytes_bytemask, reduced_two_bytes_bytemask); const uint16x8_t compressed_bytemask1 = vpaddq_u16(reduced_three_bytes_bytemask, reduced_three_bytes_bytemask); size_t ascii_count = count_ones( vgetq_lane_u64(vreinterpretq_u64_u16(compressed_bytemask0), 0)); size_t two_bytes_count = count_ones( vgetq_lane_u64(vreinterpretq_u64_u16(compressed_bytemask0), 1)); size_t three_bytes_count = count_ones( vgetq_lane_u64(vreinterpretq_u64_u16(compressed_bytemask1), 0)); count += 16 - 3 * ascii_count - 2 * two_bytes_count - three_bytes_count; } return count + scalar::utf32::utf8_length_from_utf32(input + pos, length - pos); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf16_length_from_utf32( const char32_t *input, size_t length) const noexcept { const uint32x4_t v_ffff = vmovq_n_u32((uint32_t)0xffff); const uint32x4_t v_1 = vmovq_n_u32((uint32_t)0x1); size_t pos = 0; size_t count = 0; for (; pos + 4 <= length; pos += 4) { uint32x4_t in = vld1q_u32(reinterpret_cast(input + pos)); const uint32x4_t surrogate_bytemask = vcgtq_u32(in, v_ffff); const uint16x8_t reduced_bytemask = vreinterpretq_u16_u32(vandq_u32(surrogate_bytemask, v_1)); const uint16x8_t compressed_bytemask = vpaddq_u16(reduced_bytemask, reduced_bytemask); size_t surrogate_count = count_ones( vgetq_lane_u64(vreinterpretq_u64_u16(compressed_bytemask), 0)); count += 4 + surrogate_count; } return count + scalar::utf32::utf16_length_from_utf32(input + pos, length - pos); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result implementation::base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused result implementation::base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } size_t implementation::binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept { return encode_base64(output, input, length, options); } size_t implementation::binary_to_base64_with_lines( const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept { return encode_base64_impl(output, input, length, options, line_length); } const char *implementation::find(const char *start, const char *end, char character) const noexcept { return util_find(start, end, character); } const char16_t *implementation::find(const char16_t *start, const char16_t *end, char16_t character) const noexcept { return util_find(start, end, character); } #endif // SIMDUTF_FEATURE_BASE64 } // namespace arm64 } // namespace simdutf /* begin file src/simdutf/arm64/end.h */ #undef SIMDUTF_SIMD_HAS_BYTEMASK /* end file src/simdutf/arm64/end.h */ /* end file src/arm64/implementation.cpp */ #endif #if SIMDUTF_IMPLEMENTATION_FALLBACK /* begin file src/fallback/implementation.cpp */ /* begin file src/simdutf/fallback/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "fallback" // #define SIMDUTF_IMPLEMENTATION fallback /* end file src/simdutf/fallback/begin.h */ namespace simdutf { namespace fallback { #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int implementation::detect_encodings(const char *input, size_t length) const noexcept { // If there is a BOM, then we trust it. auto bom_encoding = simdutf::BOM::check_bom(input, length); if (bom_encoding != encoding_type::unspecified) { return bom_encoding; } int out = 0; // todo: reimplement as a one-pass algorithm. if (validate_utf8(input, length)) { out |= encoding_type::UTF8; } if ((length % 2) == 0) { if (validate_utf16le(reinterpret_cast(input), length / 2)) { out |= encoding_type::UTF16_LE; } } if ((length % 4) == 0) { if (validate_utf32(reinterpret_cast(input), length / 4)) { out |= encoding_type::UTF32_LE; } } return out; } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf8(const char *buf, size_t len) const noexcept { return scalar::utf8::validate(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result implementation::validate_utf8_with_errors( const char *buf, size_t len) const noexcept { return scalar::utf8::validate_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_ascii(const char *buf, size_t len) const noexcept { return scalar::ascii::validate(buf, len); } simdutf_warn_unused result implementation::validate_ascii_with_errors( const char *buf, size_t len) const noexcept { return scalar::ascii::validate_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept { return scalar::utf16::validate_as_ascii(buf, len); } simdutf_warn_unused bool implementation::validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept { return scalar::utf16::validate_as_ascii(buf, len); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf16le(const char16_t *buf, size_t len) const noexcept { return scalar::utf16::validate(buf, len); } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool implementation::validate_utf16be(const char16_t *buf, size_t len) const noexcept { return scalar::utf16::validate(buf, len); } simdutf_warn_unused result implementation::validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept { return scalar::utf16::validate_with_errors(buf, len); } simdutf_warn_unused result implementation::validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept { return scalar::utf16::validate_with_errors(buf, len); } void implementation::to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept { return scalar::utf16::to_well_formed_utf16(input, len, output); } void implementation::to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept { return scalar::utf16::to_well_formed_utf16(input, len, output); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf32(const char32_t *buf, size_t len) const noexcept { return scalar::utf32::validate(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result implementation::validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept { return scalar::utf32::validate_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept { return scalar::latin1_to_utf8::convert(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::latin1_to_utf16::convert(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::latin1_to_utf16::convert(buf, len, utf16_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { return scalar::latin1_to_utf32::convert(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf8_to_latin1::convert(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf8_to_latin1::convert_with_errors(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf8_to_latin1::convert_valid(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf8_to_utf16::convert(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf8_to_utf16::convert(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf8_to_utf16::convert_with_errors( buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf8_to_utf16::convert_with_errors( buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf8_to_utf16::convert_valid(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf8_to_utf16::convert_valid(buf, len, utf16_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { return scalar::utf8_to_utf32::convert(buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept { return scalar::utf8_to_utf32::convert_with_errors(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf32( const char *input, size_t size, char32_t *utf32_output) const noexcept { return scalar::utf8_to_utf32::convert_valid(input, size, utf32_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf16_to_latin1::convert(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf16_to_latin1::convert(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf16_to_latin1::convert_with_errors( buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf16_to_latin1::convert_with_errors( buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf16_to_latin1::convert_valid( buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf16_to_latin1::convert_valid(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return scalar::utf16_to_utf8::convert(buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return scalar::utf16_to_utf8::convert(buf, len, utf8_output); } simdutf_warn_unused result implementation::convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return scalar::utf16_to_utf8::convert_with_errors( buf, len, utf8_output); } simdutf_warn_unused result implementation::convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return scalar::utf16_to_utf8::convert_with_errors( buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return scalar::utf16_to_utf8::convert_valid(buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return scalar::utf16_to_utf8::convert_valid(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf32_to_latin1::convert(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf32_to_latin1_with_errors( const char32_t *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf32_to_latin1::convert_with_errors(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { return scalar::utf32_to_latin1::convert_valid(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { return scalar::utf32_to_utf8::convert(buf, len, utf8_output); } simdutf_warn_unused result implementation::convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_output) const noexcept { return scalar::utf32_to_utf8::convert_with_errors(buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { return scalar::utf32_to_utf8::convert_valid(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf32_to_utf16::convert(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf32_to_utf16::convert(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf32_to_utf16::convert_with_errors( buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf32_to_utf16::convert_with_errors( buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf32_to_utf16::convert_valid( buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return scalar::utf32_to_utf16::convert_valid(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return scalar::utf16_to_utf32::convert(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return scalar::utf16_to_utf32::convert(buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return scalar::utf16_to_utf32::convert_with_errors( buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return scalar::utf16_to_utf32::convert_with_errors( buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return scalar::utf16_to_utf32::convert_valid( buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return scalar::utf16_to_utf32::convert_valid(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void implementation::change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) const noexcept { scalar::utf16::change_endianness_utf16(input, length, output); } simdutf_warn_unused size_t implementation::count_utf16le( const char16_t *input, size_t length) const noexcept { return scalar::utf16::count_code_points(input, length); } simdutf_warn_unused size_t implementation::count_utf16be( const char16_t *input, size_t length) const noexcept { return scalar::utf16::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t implementation::count_utf8(const char *input, size_t length) const noexcept { return scalar::utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::latin1_length_from_utf8( const char *buf, size_t len) const noexcept { return scalar::utf8::count_code_points(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::utf8_length_from_latin1( const char *input, size_t length) const noexcept { size_t answer = length; size_t i = 0; auto pop = [](uint64_t v) { return (size_t)(((v >> 7) & UINT64_C(0x0101010101010101)) * UINT64_C(0x0101010101010101) >> 56); }; for (; i + 32 <= length; i += 32) { uint64_t v; memcpy(&v, input + i, 8); answer += pop(v); memcpy(&v, input + i + 8, sizeof(v)); answer += pop(v); memcpy(&v, input + i + 16, sizeof(v)); answer += pop(v); memcpy(&v, input + i + 24, sizeof(v)); answer += pop(v); } for (; i + 8 <= length; i += 8) { uint64_t v; memcpy(&v, input + i, sizeof(v)); answer += pop(v); } for (; i + 1 <= length; i += 1) { answer += static_cast(input[i]) >> 7; } return answer; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf8_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16(input, length); } simdutf_warn_unused size_t implementation::utf8_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf32_length_from_utf16(input, length); } simdutf_warn_unused size_t implementation::utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf32_length_from_utf16(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf16_length_from_utf8( const char *input, size_t length) const noexcept { return scalar::utf8::utf16_length_from_utf8(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16_with_replacement< endianness::LITTLE>(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16_with_replacement< endianness::BIG>(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf8_length_from_utf32( const char32_t *input, size_t length) const noexcept { return scalar::utf32::utf8_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf16_length_from_utf32( const char32_t *input, size_t length) const noexcept { return scalar::utf32::utf16_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf8( const char *input, size_t length) const noexcept { return scalar::utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result implementation::base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { return simdutf::scalar::base64::base64_to_binary_details_impl( input, length, output, options, last_chunk_options); } simdutf_warn_unused result implementation::base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { return simdutf::scalar::base64::base64_to_binary_details_impl( input, length, output, options, last_chunk_options); } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { return simdutf::scalar::base64::base64_to_binary_details_impl( input, length, output, options, last_chunk_options); } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { return simdutf::scalar::base64::base64_to_binary_details_impl( input, length, output, options, last_chunk_options); } size_t implementation::binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept { return scalar::base64::tail_encode_base64(output, input, length, options); } size_t implementation::binary_to_base64_with_lines( const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept { return scalar::base64::tail_encode_base64_impl(output, input, length, options, line_length); } const char *implementation::find(const char *start, const char *end, char character) const noexcept { return std::find(start, end, character); } const char16_t *implementation::find(const char16_t *start, const char16_t *end, char16_t character) const noexcept { return std::find(start, end, character); } #endif // SIMDUTF_FEATURE_BASE64 } // namespace fallback } // namespace simdutf /* begin file src/simdutf/fallback/end.h */ /* end file src/simdutf/fallback/end.h */ /* end file src/fallback/implementation.cpp */ #endif #if SIMDUTF_IMPLEMENTATION_ICELAKE /* begin file src/icelake/implementation.cpp */ #include #include /* begin file src/simdutf/icelake/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "icelake" // #define SIMDUTF_IMPLEMENTATION icelake #if SIMDUTF_CAN_ALWAYS_RUN_ICELAKE // nothing needed. #else SIMDUTF_TARGET_ICELAKE #endif #if SIMDUTF_GCC11ORMORE // workaround for // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105593 // clang-format off SIMDUTF_DISABLE_GCC_WARNING(-Wmaybe-uninitialized) // clang-format on #endif // end of workaround /* end file src/simdutf/icelake/begin.h */ namespace simdutf { namespace icelake { namespace { #ifndef SIMDUTF_ICELAKE_H #error "icelake.h must be included" #endif using namespace simd; /* begin file src/icelake/icelake_macros.inl.cpp */ /* This upcoming macro (SIMDUTF_ICELAKE_TRANSCODE16) takes 16 + 4 bytes (of a UTF-8 string) and loads all possible 4-byte substring into an AVX512 register. For example if we have bytes abcdefgh... we create following 32-bit lanes [abcd|bcde|cdef|defg|efgh|...] ^ ^ byte 0 of reg byte 63 of reg */ /** pshufb # lane{0,1,2} have got bytes: [ 0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15] # lane3 has got bytes: [ 16, 17, 18, 19, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15] expand_ver2 = [ # lane 0: 0, 1, 2, 3, 1, 2, 3, 4, 2, 3, 4, 5, 3, 4, 5, 6, # lane 1: 4, 5, 6, 7, 5, 6, 7, 8, 6, 7, 8, 9, 7, 8, 9, 10, # lane 2: 8, 9, 10, 11, 9, 10, 11, 12, 10, 11, 12, 13, 11, 12, 13, 14, # lane 3 order: 13, 14, 15, 16 14, 15, 16, 17, 15, 16, 17, 18, 16, 17, 18, 19 12, 13, 14, 15, 13, 14, 15, 0, 14, 15, 0, 1, 15, 0, 1, 2, ] */ #define SIMDUTF_ICELAKE_TRANSCODE16(LANE0, LANE1, MASKED) \ { \ const __m512i merged = _mm512_mask_mov_epi32(LANE0, 0x1000, LANE1); \ const __m512i expand_ver2 = _mm512_setr_epi64( \ 0x0403020103020100, 0x0605040305040302, 0x0807060507060504, \ 0x0a09080709080706, 0x0c0b0a090b0a0908, 0x0e0d0c0b0d0c0b0a, \ 0x000f0e0d0f0e0d0c, 0x0201000f01000f0e); \ const __m512i input = _mm512_shuffle_epi8(merged, expand_ver2); \ \ __mmask16 leading_bytes; \ const __m512i v_0000_00c0 = _mm512_set1_epi32(0xc0); \ const __m512i t0 = _mm512_and_si512(input, v_0000_00c0); \ const __m512i v_0000_0080 = _mm512_set1_epi32(0x80); \ leading_bytes = _mm512_cmpneq_epu32_mask(t0, v_0000_0080); \ \ __m512i char_class; \ char_class = _mm512_srli_epi32(input, 4); \ /* char_class = ((input >> 4) & 0x0f) | 0x80808000 */ \ const __m512i v_0000_000f = _mm512_set1_epi32(0x0f); \ const __m512i v_8080_8000 = _mm512_set1_epi32(0x80808000); \ char_class = \ _mm512_ternarylogic_epi32(char_class, v_0000_000f, v_8080_8000, 0xea); \ \ const int valid_count = static_cast(count_ones(leading_bytes)); \ const __m512i utf32 = expanded_utf8_to_utf32(char_class, input); \ \ const __m512i out = _mm512_mask_compress_epi32(_mm512_setzero_si512(), \ leading_bytes, utf32); \ \ if (UTF32) { \ if (MASKED) { \ const __mmask16 valid = uint16_t((1 << valid_count) - 1); \ _mm512_mask_storeu_epi32((__m512i *)output, valid, out); \ } else { \ _mm512_storeu_si512((__m512i *)output, out); \ } \ output += valid_count; \ } else { \ if (MASKED) { \ output += utf32_to_utf16_masked( \ byteflip, out, valid_count, reinterpret_cast(output)); \ } else { \ output += utf32_to_utf16( \ byteflip, out, valid_count, reinterpret_cast(output)); \ } \ } \ } #define SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(INPUT, VALID_COUNT, MASKED) \ { \ if (UTF32) { \ if (MASKED) { \ const __mmask16 valid_mask = uint16_t((1 << VALID_COUNT) - 1); \ _mm512_mask_storeu_epi32((__m512i *)output, valid_mask, INPUT); \ } else { \ _mm512_storeu_si512((__m512i *)output, INPUT); \ } \ output += VALID_COUNT; \ } else { \ if (MASKED) { \ output += utf32_to_utf16_masked( \ byteflip, INPUT, VALID_COUNT, \ reinterpret_cast(output)); \ } else { \ output += \ utf32_to_utf16(byteflip, INPUT, VALID_COUNT, \ reinterpret_cast(output)); \ } \ } \ } #define SIMDUTF_ICELAKE_STORE_ASCII(UTF32, utf8, output) \ if (UTF32) { \ const __m128i t0 = _mm512_castsi512_si128(utf8); \ const __m128i t1 = _mm512_extracti32x4_epi32(utf8, 1); \ const __m128i t2 = _mm512_extracti32x4_epi32(utf8, 2); \ const __m128i t3 = _mm512_extracti32x4_epi32(utf8, 3); \ _mm512_storeu_si512((__m512i *)(output + 0 * 16), \ _mm512_cvtepu8_epi32(t0)); \ _mm512_storeu_si512((__m512i *)(output + 1 * 16), \ _mm512_cvtepu8_epi32(t1)); \ _mm512_storeu_si512((__m512i *)(output + 2 * 16), \ _mm512_cvtepu8_epi32(t2)); \ _mm512_storeu_si512((__m512i *)(output + 3 * 16), \ _mm512_cvtepu8_epi32(t3)); \ } else { \ const __m256i h0 = _mm512_castsi512_si256(utf8); \ const __m256i h1 = _mm512_extracti64x4_epi64(utf8, 1); \ if (big_endian) { \ _mm512_storeu_si512( \ (__m512i *)(output + 0 * 16), \ _mm512_shuffle_epi8(_mm512_cvtepu8_epi16(h0), byteflip)); \ _mm512_storeu_si512( \ (__m512i *)(output + 2 * 16), \ _mm512_shuffle_epi8(_mm512_cvtepu8_epi16(h1), byteflip)); \ } else { \ _mm512_storeu_si512((__m512i *)(output + 0 * 16), \ _mm512_cvtepu8_epi16(h0)); \ _mm512_storeu_si512((__m512i *)(output + 2 * 16), \ _mm512_cvtepu8_epi16(h1)); \ } \ } /* end file src/icelake/icelake_macros.inl.cpp */ /* begin file src/icelake/icelake_common.inl.cpp */ // file included directly /** * Store the last N bytes of previous followed by 512-N bytes from input. */ template __m512i prev(__m512i input, __m512i previous) { static_assert(N <= 32, "N must be no larger than 32"); const __m512i movemask = _mm512_setr_epi32(28, 29, 30, 31, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11); const __m512i rotated = _mm512_permutex2var_epi32(input, movemask, previous); #if SIMDUTF_GCC8 || SIMDUTF_GCC9 constexpr int shift = 16 - N; // workaround for GCC8,9 return _mm512_alignr_epi8(input, rotated, shift); #else return _mm512_alignr_epi8(input, rotated, 16 - N); #endif // SIMDUTF_GCC8 || SIMDUTF_GCC9 } template __m512i shuffle_epi128(__m512i v) { static_assert((idx0 >= 0 && idx0 <= 3), "idx0 must be in range 0..3"); static_assert((idx1 >= 0 && idx1 <= 3), "idx1 must be in range 0..3"); static_assert((idx2 >= 0 && idx2 <= 3), "idx2 must be in range 0..3"); static_assert((idx3 >= 0 && idx3 <= 3), "idx3 must be in range 0..3"); constexpr unsigned shuffle = idx0 | (idx1 << 2) | (idx2 << 4) | (idx3 << 6); return _mm512_shuffle_i32x4(v, v, shuffle); } template constexpr __m512i broadcast_epi128(__m512i v) { return shuffle_epi128(v); } simdutf_really_inline __m512i broadcast_128bit_lane(__m128i lane) { const __m512i tmp = _mm512_castsi128_si512(lane); return broadcast_epi128<0>(tmp); } /* end file src/icelake/icelake_common.inl.cpp */ #if SIMDUTF_FEATURE_UTF8 /* begin file src/icelake/icelake_utf8_common.inl.cpp */ // Common procedures for both validating and non-validating conversions from // UTF-8. enum block_processing_mode { SIMDUTF_FULL, SIMDUTF_TAIL }; using utf8_to_utf16_result = std::pair; using utf8_to_utf32_result = std::pair; /* process_block_utf8_to_utf16 converts up to 64 bytes from 'in' from UTF-8 to UTF-16. When tail = SIMDUTF_FULL, then the full input buffer (64 bytes) might be used. When tail = SIMDUTF_TAIL, we take into account 'gap' which indicates how many input bytes are relevant. Returns true when the result is correct, otherwise it returns false. The provided in and out pointers are advanced according to how many input bytes have been processed, upon success. */ template simdutf_really_inline bool process_block_utf8_to_utf16(const char *&in, char16_t *&out, size_t gap) { // constants __m512i mask_identity = _mm512_set_epi8( 63, 62, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0); __m512i mask_c0c0c0c0 = _mm512_set1_epi32(0xc0c0c0c0); __m512i mask_80808080 = _mm512_set1_epi32(0x80808080); __m512i mask_f0f0f0f0 = _mm512_set1_epi32(0xf0f0f0f0); __m512i mask_dfdfdfdf_tail = _mm512_set_epi64( 0xffffdfdfdfdfdfdf, 0xdfdfdfdfdfdfdfdf, 0xdfdfdfdfdfdfdfdf, 0xdfdfdfdfdfdfdfdf, 0xdfdfdfdfdfdfdfdf, 0xdfdfdfdfdfdfdfdf, 0xdfdfdfdfdfdfdfdf, 0xdfdfdfdfdfdfdfdf); __m512i mask_c2c2c2c2 = _mm512_set1_epi32(0xc2c2c2c2); __m512i mask_ffffffff = _mm512_set1_epi32(0xffffffff); __m512i mask_d7c0d7c0 = _mm512_set1_epi32(0xd7c0d7c0); __m512i mask_dc00dc00 = _mm512_set1_epi32(0xdc00dc00); __m512i byteflip = _mm512_setr_epi64(0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); // Note that 'tail' is a compile-time constant ! __mmask64 b = (tail == SIMDUTF_FULL) ? 0xFFFFFFFFFFFFFFFF : (uint64_t(1) << gap) - 1; __m512i input = (tail == SIMDUTF_FULL) ? _mm512_loadu_si512(in) : _mm512_maskz_loadu_epi8(b, in); __mmask64 m1 = (tail == SIMDUTF_FULL) ? _mm512_cmplt_epu8_mask(input, mask_80808080) : _mm512_mask_cmplt_epu8_mask(b, input, mask_80808080); if (_ktestc_mask64_u8(m1, b)) { // NOT(m1) AND b -- if all zeroes, then all ASCII // alternatively, we could do 'if (m1 == b) { ' if (tail == SIMDUTF_FULL) { in += 64; // consumed 64 bytes // we convert a full 64-byte block, writing 128 bytes. __m512i input1 = _mm512_cvtepu8_epi16(_mm512_castsi512_si256(input)); if (big_endian) { input1 = _mm512_shuffle_epi8(input1, byteflip); } _mm512_storeu_si512(out, input1); out += 32; __m512i input2 = _mm512_cvtepu8_epi16(_mm512_extracti64x4_epi64(input, 1)); if (big_endian) { input2 = _mm512_shuffle_epi8(input2, byteflip); } _mm512_storeu_si512(out, input2); out += 32; return true; // we are done } else { in += gap; if (gap <= 32) { __m512i input1 = _mm512_cvtepu8_epi16(_mm512_castsi512_si256(input)); if (big_endian) { input1 = _mm512_shuffle_epi8(input1, byteflip); } _mm512_mask_storeu_epi16(out, __mmask32((uint64_t(1) << (gap)) - 1), input1); out += gap; } else { __m512i input1 = _mm512_cvtepu8_epi16(_mm512_castsi512_si256(input)); if (big_endian) { input1 = _mm512_shuffle_epi8(input1, byteflip); } _mm512_storeu_si512(out, input1); out += 32; __m512i input2 = _mm512_cvtepu8_epi16(_mm512_extracti64x4_epi64(input, 1)); if (big_endian) { input2 = _mm512_shuffle_epi8(input2, byteflip); } _mm512_mask_storeu_epi16( out, __mmask32((uint32_t(1) << (gap - 32)) - 1), input2); out += gap - 32; } return true; // we are done } } // classify characters further __mmask64 m234 = _mm512_cmp_epu8_mask( mask_c0c0c0c0, input, _MM_CMPINT_LE); // 0xc0 <= input, 2, 3, or 4 leading byte __mmask64 m34 = _mm512_cmp_epu8_mask(mask_dfdfdfdf_tail, input, _MM_CMPINT_LT); // 0xdf < input, 3 or 4 leading byte __mmask64 milltwobytes = _mm512_mask_cmp_epu8_mask( m234, input, mask_c2c2c2c2, _MM_CMPINT_LT); // 0xc0 <= input < 0xc2 (illegal two byte sequence) // Overlong 2-byte sequence if (_ktestz_mask64_u8(milltwobytes, milltwobytes) == 0) { // Overlong 2-byte sequence return false; } if (_ktestz_mask64_u8(m34, m34) == 0) { // We have a 3-byte sequence and/or a 2-byte sequence, or possibly even a // 4-byte sequence! __mmask64 m4 = _mm512_cmp_epu8_mask( input, mask_f0f0f0f0, _MM_CMPINT_NLT); // 0xf0 <= zmm0 (4 byte start bytes) __mmask64 mask_not_ascii = (tail == SIMDUTF_FULL) ? _knot_mask64(m1) : _kand_mask64(_knot_mask64(m1), b); __mmask64 mp1 = _kshiftli_mask64(m234, 1); __mmask64 mp2 = _kshiftli_mask64(m34, 2); // We could do it as follows... // if (_kortestz_mask64_u8(m4,m4)) { // compute the bitwise OR of the 64-bit // masks a and b and return 1 if all zeroes but GCC generates better code // when we do: if (m4 == 0) { // compute the bitwise OR of the 64-bit masks a and b and // return 1 if all zeroes // Fast path with 1,2,3 bytes __mmask64 mc = _kor_mask64(mp1, mp2); // expected continuation bytes __mmask64 m1234 = _kor_mask64(m1, m234); // mismatched continuation bytes: if (tail == SIMDUTF_FULL) { __mmask64 xnormcm1234 = _kxnor_mask64( mc, m1234); // XNOR of mc and m1234 should be all zero if they differ // the presence of a 1 bit indicates that they overlap. // _kortestz_mask64_u8: compute the bitwise OR of 64-bit masksand return // 1 if all zeroes. if (!_kortestz_mask64_u8(xnormcm1234, xnormcm1234)) { return false; } } else { __mmask64 bxorm1234 = _kxor_mask64(b, m1234); if (mc != bxorm1234) { return false; } } // mend: identifying the last bytes of each sequence to be decoded __mmask64 mend = _kshiftri_mask64(m1234, 1); if (tail != SIMDUTF_FULL) { mend = _kor_mask64(mend, (uint64_t(1) << (gap - 1))); } __m512i last_and_third = _mm512_maskz_compress_epi8(mend, mask_identity); __m512i last_and_thirdu16 = _mm512_cvtepu8_epi16(_mm512_castsi512_si256(last_and_third)); __m512i nonasciitags = _mm512_maskz_mov_epi8( mask_not_ascii, mask_c0c0c0c0); // ASCII: 00000000 other: 11000000 __m512i clearedbytes = _mm512_andnot_si512( nonasciitags, input); // high two bits cleared where not ASCII __m512i lastbytes = _mm512_maskz_permutexvar_epi8( 0x5555555555555555, last_and_thirdu16, clearedbytes); // the last byte of each character __mmask64 mask_before_non_ascii = _kshiftri_mask64( mask_not_ascii, 1); // bytes that precede non-ASCII bytes __m512i indexofsecondlastbytes = _mm512_add_epi16( mask_ffffffff, last_and_thirdu16); // indices of the second last bytes __m512i beforeasciibytes = _mm512_maskz_mov_epi8(mask_before_non_ascii, clearedbytes); __m512i secondlastbytes = _mm512_maskz_permutexvar_epi8( 0x5555555555555555, indexofsecondlastbytes, beforeasciibytes); // the second last bytes (of two, three byte seq, // surrogates) secondlastbytes = _mm512_slli_epi16(secondlastbytes, 6); // shifted into position __m512i indexofthirdlastbytes = _mm512_add_epi16( mask_ffffffff, indexofsecondlastbytes); // indices of the second last bytes __m512i thirdlastbyte = _mm512_maskz_mov_epi8(m34, clearedbytes); // only those that are the third // last byte of a sequence __m512i thirdlastbytes = _mm512_maskz_permutexvar_epi8( 0x5555555555555555, indexofthirdlastbytes, thirdlastbyte); // the third last bytes (of three byte sequences, hi // surrogate) thirdlastbytes = _mm512_slli_epi16(thirdlastbytes, 12); // shifted into position __m512i Wout = _mm512_ternarylogic_epi32(lastbytes, secondlastbytes, thirdlastbytes, 254); // the elements of Wout excluding the last element if it happens to be a // high surrogate: __mmask64 mprocessed = (tail == SIMDUTF_FULL) ? _pdep_u64(0xFFFFFFFF, mend) : _pdep_u64( 0xFFFFFFFF, _kand_mask64( mend, b)); // we adjust mend at the end of the output. // Encodings out of range... { // the location of 3-byte sequence start bytes in the input __mmask64 m3 = m34 & (b ^ m4); // code units in Wout corresponding to 3-byte sequences. __mmask32 M3 = __mmask32(_pext_u64(m3 << 2, mend)); __m512i mask_08000800 = _mm512_set1_epi32(0x08000800); __mmask32 Msmall800 = _mm512_mask_cmplt_epu16_mask(M3, Wout, mask_08000800); __m512i mask_d800d800 = _mm512_set1_epi32(0xd800d800); __m512i Moutminusd800 = _mm512_sub_epi16(Wout, mask_d800d800); __mmask32 M3s = _mm512_mask_cmplt_epu16_mask(M3, Moutminusd800, mask_08000800); if (_kor_mask32(Msmall800, M3s)) { return false; } } int64_t nout = _mm_popcnt_u64(mprocessed); in += 64 - _lzcnt_u64(mprocessed); if (big_endian) { Wout = _mm512_shuffle_epi8(Wout, byteflip); } _mm512_mask_storeu_epi16(out, __mmask32((uint64_t(1) << nout) - 1), Wout); out += nout; return true; // ok } // // We have a 4-byte sequence, this is the general case. // Slow! __mmask64 mp3 = _kshiftli_mask64(m4, 3); __mmask64 mc = _kor_mask64(_kor_mask64(mp1, mp2), mp3); // expected continuation bytes __mmask64 m1234 = _kor_mask64(m1, m234); // mend: identifying the last bytes of each sequence to be decoded __mmask64 mend = _kor_mask64(_kshiftri_mask64(_kor_mask64(mp3, m1234), 1), mp3); if (tail != SIMDUTF_FULL) { mend = _kor_mask64(mend, __mmask64(uint64_t(1) << (gap - 1))); } __m512i last_and_third = _mm512_maskz_compress_epi8(mend, mask_identity); __m512i last_and_thirdu16 = _mm512_cvtepu8_epi16(_mm512_castsi512_si256(last_and_third)); __m512i nonasciitags = _mm512_maskz_mov_epi8( mask_not_ascii, mask_c0c0c0c0); // ASCII: 00000000 other: 11000000 __m512i clearedbytes = _mm512_andnot_si512( nonasciitags, input); // high two bits cleared where not ASCII __m512i lastbytes = _mm512_maskz_permutexvar_epi8( 0x5555555555555555, last_and_thirdu16, clearedbytes); // the last byte of each character __mmask64 mask_before_non_ascii = _kshiftri_mask64( mask_not_ascii, 1); // bytes that precede non-ASCII bytes __m512i indexofsecondlastbytes = _mm512_add_epi16( mask_ffffffff, last_and_thirdu16); // indices of the second last bytes __m512i beforeasciibytes = _mm512_maskz_mov_epi8(mask_before_non_ascii, clearedbytes); __m512i secondlastbytes = _mm512_maskz_permutexvar_epi8( 0x5555555555555555, indexofsecondlastbytes, beforeasciibytes); // the second last bytes (of two, three byte seq, // surrogates) secondlastbytes = _mm512_slli_epi16(secondlastbytes, 6); // shifted into position __m512i indexofthirdlastbytes = _mm512_add_epi16( mask_ffffffff, indexofsecondlastbytes); // indices of the second last bytes __m512i thirdlastbyte = _mm512_maskz_mov_epi8( m34, clearedbytes); // only those that are the third last byte of a sequence __m512i thirdlastbytes = _mm512_maskz_permutexvar_epi8( 0x5555555555555555, indexofthirdlastbytes, thirdlastbyte); // the third last bytes (of three byte sequences, hi // surrogate) thirdlastbytes = _mm512_slli_epi16(thirdlastbytes, 12); // shifted into position __m512i thirdsecondandlastbytes = _mm512_ternarylogic_epi32( lastbytes, secondlastbytes, thirdlastbytes, 254); uint64_t Mlo_uint64 = _pext_u64(mp3, mend); __mmask32 Mlo = __mmask32(Mlo_uint64); __mmask32 Mhi = __mmask32(Mlo_uint64 >> 1); __m512i lo_surr_mask = _mm512_maskz_mov_epi16( Mlo, mask_dc00dc00); // lo surr: 1101110000000000, other: 0000000000000000 __m512i shifted4_thirdsecondandlastbytes = _mm512_srli_epi16(thirdsecondandlastbytes, 4); // hi surr: 00000WVUTSRQPNML vuts = WVUTS - 1 __m512i tagged_lo_surrogates = _mm512_or_si512( thirdsecondandlastbytes, lo_surr_mask); // lo surr: 110111KJHGFEDCBA, other: unchanged __m512i Wout = _mm512_mask_add_epi16( tagged_lo_surrogates, Mhi, shifted4_thirdsecondandlastbytes, mask_d7c0d7c0); // hi sur: 110110vutsRQPNML, other: unchanged // the elements of Wout excluding the last element if it happens to be a // high surrogate: __mmask32 Mout = ~(Mhi & 0x80000000); __mmask64 mprocessed = (tail == SIMDUTF_FULL) ? _pdep_u64(Mout, mend) : _pdep_u64( Mout, _kand_mask64(mend, b)); // we adjust mend at the end of the output. // mismatched continuation bytes: if (tail == SIMDUTF_FULL) { __mmask64 xnormcm1234 = _kxnor_mask64( mc, m1234); // XNOR of mc and m1234 should be all zero if they differ // the presence of a 1 bit indicates that they overlap. // _kortestz_mask64_u8: compute the bitwise OR of 64-bit masksand return 1 // if all zeroes. if (!_kortestz_mask64_u8(xnormcm1234, xnormcm1234)) { return false; } } else { __mmask64 bxorm1234 = _kxor_mask64(b, m1234); if (mc != bxorm1234) { return false; } } // Encodings out of range... { // the location of 3-byte sequence start bytes in the input __mmask64 m3 = m34 & (b ^ m4); // code units in Wout corresponding to 3-byte sequences. __mmask32 M3 = __mmask32(_pext_u64(m3 << 2, mend)); __m512i mask_08000800 = _mm512_set1_epi32(0x08000800); __mmask32 Msmall800 = _mm512_mask_cmplt_epu16_mask(M3, Wout, mask_08000800); __m512i mask_d800d800 = _mm512_set1_epi32(0xd800d800); __m512i Moutminusd800 = _mm512_sub_epi16(Wout, mask_d800d800); __mmask32 M3s = _mm512_mask_cmplt_epu16_mask(M3, Moutminusd800, mask_08000800); __m512i mask_04000400 = _mm512_set1_epi32(0x04000400); __mmask32 M4s = _mm512_mask_cmpge_epu16_mask(Mhi, Moutminusd800, mask_04000400); if (!_kortestz_mask32_u8(M4s, _kor_mask32(Msmall800, M3s))) { return false; } } in += 64 - _lzcnt_u64(mprocessed); int64_t nout = _mm_popcnt_u64(mprocessed); if (big_endian) { Wout = _mm512_shuffle_epi8(Wout, byteflip); } _mm512_mask_storeu_epi16(out, __mmask32((uint64_t(1) << nout) - 1), Wout); out += nout; return true; // ok } // Fast path 2: all ASCII or 2 byte __mmask64 continuation_or_ascii = (tail == SIMDUTF_FULL) ? _knot_mask64(m234) : _kand_mask64(_knot_mask64(m234), b); // on top of -0xc0 we subtract -2 which we get back later of the // continuation byte tags __m512i leading2byte = _mm512_maskz_sub_epi8(m234, input, mask_c2c2c2c2); __mmask64 leading = tail == (tail == SIMDUTF_FULL) ? _kor_mask64(m1, m234) : _kand_mask64(_kor_mask64(m1, m234), b); // first bytes of each sequence if (tail == SIMDUTF_FULL) { __mmask64 xnor234leading = _kxnor_mask64(_kshiftli_mask64(m234, 1), leading); if (!_kortestz_mask64_u8(xnor234leading, xnor234leading)) { return false; } } else { __mmask64 bxorleading = _kxor_mask64(b, leading); if (_kshiftli_mask64(m234, 1) != bxorleading) { return false; } } // if (tail == SIMDUTF_FULL) { // In the two-byte/ASCII scenario, we are easily latency bound, so we want // to increment the input buffer as quickly as possible. // We process 32 bytes unless the byte at index 32 is a continuation byte, // in which case we include it as well for a total of 33 bytes. // Note that if x is an ASCII byte, then the following is false: // int8_t(x) <= int8_t(0xc0) under two's complement. in += 32; if (int8_t(*in) <= int8_t(0xc0)) in++; // The alternative is to do // in += 64 - _lzcnt_u64(_pdep_u64(0xFFFFFFFF, continuation_or_ascii)); // but it requires loading the input, doing the mask computation, and // converting back the mask to a general register. It just takes too long, // leaving the processor likely to be idle. } else { in += 64 - _lzcnt_u64(_pdep_u64(0xFFFFFFFF, continuation_or_ascii)); } __m512i lead = _mm512_maskz_compress_epi8( leading, leading2byte); // will contain zero for ascii, and the data lead = _mm512_cvtepu8_epi16( _mm512_castsi512_si256(lead)); // ... zero extended into code units __m512i follow = _mm512_maskz_compress_epi8( continuation_or_ascii, input); // the last bytes of each sequence follow = _mm512_cvtepu8_epi16( _mm512_castsi512_si256(follow)); // ... zero extended into code units lead = _mm512_slli_epi16(lead, 6); // shifted into position __m512i final = _mm512_add_epi16(follow, lead); // combining lead and follow if (big_endian) { final = _mm512_shuffle_epi8(final, byteflip); } if (tail == SIMDUTF_FULL) { // Next part is UTF-16 specific and can be generalized to UTF-32. int nout = _mm_popcnt_u32(uint32_t(leading)); _mm512_mask_storeu_epi16(out, __mmask32((uint64_t(1) << nout) - 1), final); out += nout; // UTF-8 to UTF-16 is only expansionary in this case. } else { int nout = int(_mm_popcnt_u64(_pdep_u64(0xFFFFFFFF, leading))); _mm512_mask_storeu_epi16(out, __mmask32((uint64_t(1) << nout) - 1), final); out += nout; // UTF-8 to UTF-16 is only expansionary in this case. } return true; // we are fine. } /* utf32_to_utf16_masked converts `count` lower UTF-32 code units from input `utf32` into UTF-16. It differs from utf32_to_utf16 in that it 'masks' the writes. Returns how many 16-bit code units were stored. byteflip is used for flipping 16-bit code units, and it should be __m512i byteflip = _mm512_setr_epi64( 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809 ); We pass it to the (always inlined) function to encourage the compiler to keep the value in a (constant) register. */ template simdutf_really_inline size_t utf32_to_utf16_masked(const __m512i byteflip, __m512i utf32, unsigned int count, char16_t *output) { const __mmask16 valid = uint16_t((1 << count) - 1); // 1. check if we have any surrogate pairs const __m512i v_0000_ffff = _mm512_set1_epi32(0x0000ffff); const __mmask16 sp_mask = _mm512_mask_cmpgt_epu32_mask(valid, utf32, v_0000_ffff); if (sp_mask == 0) { if (big_endian) { _mm256_mask_storeu_epi16( (__m256i *)output, valid, _mm256_shuffle_epi8(_mm512_cvtepi32_epi16(utf32), _mm512_castsi512_si256(byteflip))); } else { _mm256_mask_storeu_epi16((__m256i *)output, valid, _mm512_cvtepi32_epi16(utf32)); } return count; } { // build surrogate pair code units in 32-bit lanes // t0 = 8 x [000000000000aaaa|aaaaaabbbbbbbbbb] const __m512i v_0001_0000 = _mm512_set1_epi32(0x00010000); const __m512i t0 = _mm512_sub_epi32(utf32, v_0001_0000); // t1 = 8 x [000000aaaaaaaaaa|bbbbbbbbbb000000] const __m512i t1 = _mm512_slli_epi32(t0, 6); // t2 = 8 x [000000aaaaaaaaaa|aaaaaabbbbbbbbbb] -- copy hi word from t1 // to t0 // 0xe4 = (t1 and v_ffff_0000) or (t0 and not v_ffff_0000) const __m512i v_ffff_0000 = _mm512_set1_epi32(0xffff0000); const __m512i t2 = _mm512_ternarylogic_epi32(t1, t0, v_ffff_0000, 0xe4); // t2 = 8 x [110110aaaaaaaaaa|110111bbbbbbbbbb] -- copy hi word from t1 // to t0 // 0xba = (t2 and not v_fc00_fc000) or v_d800_dc00 const __m512i v_fc00_fc00 = _mm512_set1_epi32(0xfc00fc00); const __m512i v_d800_dc00 = _mm512_set1_epi32(0xd800dc00); const __m512i t3 = _mm512_ternarylogic_epi32(t2, v_fc00_fc00, v_d800_dc00, 0xba); const __m512i t4 = _mm512_mask_blend_epi32(sp_mask, utf32, t3); __m512i t5 = _mm512_ror_epi32(t4, 16); // Here we want to trim all of the upper 16-bit code units from the 2-byte // characters represented as 4-byte values. We can compute it from // sp_mask or the following... It can be more optimized! const __mmask32 nonzero = _kor_mask32( 0xaaaaaaaa, _mm512_cmpneq_epi16_mask(t5, _mm512_setzero_si512())); const __mmask32 nonzero_masked = _kand_mask32(nonzero, __mmask32((uint64_t(1) << (2 * count)) - 1)); if (big_endian) { t5 = _mm512_shuffle_epi8(t5, byteflip); } // we deliberately avoid _mm512_mask_compressstoreu_epi16 for portability // (AMD Zen4 has terrible performance with it, it is effectively broken) __m512i compressed = _mm512_maskz_compress_epi16(nonzero_masked, t5); _mm512_mask_storeu_epi16( output, _bzhi_u32(0xFFFFFFFF, count + _mm_popcnt_u32(sp_mask)), compressed); //_mm512_mask_compressstoreu_epi16(output, nonzero_masked, t5); } return count + static_cast(count_ones(sp_mask)); } /* utf32_to_utf16 converts `count` lower UTF-32 code units from input `utf32` into UTF-16. It may overflow. Returns how many 16-bit code units were stored. byteflip is used for flipping 16-bit code units, and it should be __m512i byteflip = _mm512_setr_epi64( 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809 ); We pass it to the (always inlined) function to encourage the compiler to keep the value in a (constant) register. */ template simdutf_really_inline size_t utf32_to_utf16(const __m512i byteflip, __m512i utf32, unsigned int count, char16_t *output) { // check if we have any surrogate pairs const __m512i v_0000_ffff = _mm512_set1_epi32(0x0000ffff); const __mmask16 sp_mask = _mm512_cmpgt_epu32_mask(utf32, v_0000_ffff); if (sp_mask == 0) { // technically, it should be _mm256_storeu_epi16 if (big_endian) { _mm256_storeu_si256( (__m256i *)output, _mm256_shuffle_epi8(_mm512_cvtepi32_epi16(utf32), _mm512_castsi512_si256(byteflip))); } else { _mm256_storeu_si256((__m256i *)output, _mm512_cvtepi32_epi16(utf32)); } return count; } { // build surrogate pair code units in 32-bit lanes // t0 = 8 x [000000000000aaaa|aaaaaabbbbbbbbbb] const __m512i v_0001_0000 = _mm512_set1_epi32(0x00010000); const __m512i t0 = _mm512_sub_epi32(utf32, v_0001_0000); // t1 = 8 x [000000aaaaaaaaaa|bbbbbbbbbb000000] const __m512i t1 = _mm512_slli_epi32(t0, 6); // t2 = 8 x [000000aaaaaaaaaa|aaaaaabbbbbbbbbb] -- copy hi word from t1 // to t0 // 0xe4 = (t1 and v_ffff_0000) or (t0 and not v_ffff_0000) const __m512i v_ffff_0000 = _mm512_set1_epi32(0xffff0000); const __m512i t2 = _mm512_ternarylogic_epi32(t1, t0, v_ffff_0000, 0xe4); // t2 = 8 x [110110aaaaaaaaaa|110111bbbbbbbbbb] -- copy hi word from t1 // to t0 // 0xba = (t2 and not v_fc00_fc000) or v_d800_dc00 const __m512i v_fc00_fc00 = _mm512_set1_epi32(0xfc00fc00); const __m512i v_d800_dc00 = _mm512_set1_epi32(0xd800dc00); const __m512i t3 = _mm512_ternarylogic_epi32(t2, v_fc00_fc00, v_d800_dc00, 0xba); const __m512i t4 = _mm512_mask_blend_epi32(sp_mask, utf32, t3); __m512i t5 = _mm512_ror_epi32(t4, 16); const __mmask32 nonzero = _kor_mask32( 0xaaaaaaaa, _mm512_cmpneq_epi16_mask(t5, _mm512_setzero_si512())); if (big_endian) { t5 = _mm512_shuffle_epi8(t5, byteflip); } // we deliberately avoid _mm512_mask_compressstoreu_epi16 for portability // (zen4) __m512i compressed = _mm512_maskz_compress_epi16(nonzero, t5); _mm512_mask_storeu_epi16( output, (1 << (count + static_cast(count_ones(sp_mask)))) - 1, compressed); //_mm512_mask_compressstoreu_epi16(output, nonzero, t5); } return count + static_cast(count_ones(sp_mask)); } /* expanded_utf8_to_utf32 converts expanded UTF-8 characters (`utf8`) stored at separate 32-bit lanes. For each lane we have also a character class (`char_class), given in form 0x8080800N, where N is 4 highest bits from the leading byte; 0x80 resets corresponding bytes during pshufb. */ simdutf_really_inline __m512i expanded_utf8_to_utf32(__m512i char_class, __m512i utf8) { /* Input: - utf8: bytes stored at separate 32-bit code units - valid: which code units have valid UTF-8 characters Bit layout of single word. We show 4 cases for each possible UTF-8 character encoding. The `?` denotes bits we must not assume their value. |10dd.dddd|10cc.cccc|10bb.bbbb|1111.0aaa| 4-byte char |????.????|10cc.cccc|10bb.bbbb|1110.aaaa| 3-byte char |????.????|????.????|10bb.bbbb|110a.aaaa| 2-byte char |????.????|????.????|????.????|0aaa.aaaa| ASCII char byte 3 byte 2 byte 1 byte 0 */ /* 1. Reset control bits of continuation bytes and the MSB of the leading byte; this makes all bytes unsigned (and does not alter ASCII char). |00dd.dddd|00cc.cccc|00bb.bbbb|0111.0aaa| 4-byte char |00??.????|00cc.cccc|00bb.bbbb|0110.aaaa| 3-byte char |00??.????|00??.????|00bb.bbbb|010a.aaaa| 2-byte char |00??.????|00??.????|00??.????|0aaa.aaaa| ASCII char ^^ ^^ ^^ ^ */ __m512i values; const __m512i v_3f3f_3f7f = _mm512_set1_epi32(0x3f3f3f7f); values = _mm512_and_si512(utf8, v_3f3f_3f7f); /* 2. Swap and join fields A-B and C-D |0000.cccc|ccdd.dddd|0001.110a|aabb.bbbb| 4-byte char |0000.cccc|cc??.????|0001.10aa|aabb.bbbb| 3-byte char |0000.????|????.????|0001.0aaa|aabb.bbbb| 2-byte char |0000.????|????.????|000a.aaaa|aa??.????| ASCII char */ const __m512i v_0140_0140 = _mm512_set1_epi32(0x01400140); values = _mm512_maddubs_epi16(values, v_0140_0140); /* 3. Swap and join fields AB & CD |0000.0001|110a.aabb|bbbb.cccc|ccdd.dddd| 4-byte char |0000.0001|10aa.aabb|bbbb.cccc|cc??.????| 3-byte char |0000.0001|0aaa.aabb|bbbb.????|????.????| 2-byte char |0000.000a|aaaa.aa??|????.????|????.????| ASCII char */ const __m512i v_0001_1000 = _mm512_set1_epi32(0x00011000); values = _mm512_madd_epi16(values, v_0001_1000); /* 4. Shift left the values by variable amounts to reset highest UTF-8 bits |aaab.bbbb|bccc.cccd|dddd.d000|0000.0000| 4-byte char -- by 11 |aaaa.bbbb|bbcc.cccc|????.??00|0000.0000| 3-byte char -- by 10 |aaaa.abbb|bbb?.????|????.???0|0000.0000| 2-byte char -- by 9 |aaaa.aaa?|????.????|????.????|?000.0000| ASCII char -- by 7 */ { /** pshufb continuation = 0 ascii = 7 _2_bytes = 9 _3_bytes = 10 _4_bytes = 11 shift_left_v3 = 4 * [ ascii, # 0000 ascii, # 0001 ascii, # 0010 ascii, # 0011 ascii, # 0100 ascii, # 0101 ascii, # 0110 ascii, # 0111 continuation, # 1000 continuation, # 1001 continuation, # 1010 continuation, # 1011 _2_bytes, # 1100 _2_bytes, # 1101 _3_bytes, # 1110 _4_bytes, # 1111 ] */ const __m512i shift_left_v3 = _mm512_setr_epi64( 0x0707070707070707, 0x0b0a090900000000, 0x0707070707070707, 0x0b0a090900000000, 0x0707070707070707, 0x0b0a090900000000, 0x0707070707070707, 0x0b0a090900000000); const __m512i shift = _mm512_shuffle_epi8(shift_left_v3, char_class); values = _mm512_sllv_epi32(values, shift); } /* 5. Shift right the values by variable amounts to reset lowest bits |0000.0000|000a.aabb|bbbb.cccc|ccdd.dddd| 4-byte char -- by 11 |0000.0000|0000.0000|aaaa.bbbb|bbcc.cccc| 3-byte char -- by 16 |0000.0000|0000.0000|0000.0aaa|aabb.bbbb| 2-byte char -- by 21 |0000.0000|0000.0000|0000.0000|0aaa.aaaa| ASCII char -- by 25 */ { // 4 * [25, 25, 25, 25, 25, 25, 25, 25, 0, 0, 0, 0, 21, 21, 16, 11] const __m512i shift_right = _mm512_setr_epi64( 0x1919191919191919, 0x0b10151500000000, 0x1919191919191919, 0x0b10151500000000, 0x1919191919191919, 0x0b10151500000000, 0x1919191919191919, 0x0b10151500000000); const __m512i shift = _mm512_shuffle_epi8(shift_right, char_class); values = _mm512_srlv_epi32(values, shift); } return values; } simdutf_really_inline __m512i expand_and_identify(__m512i lane0, __m512i lane1, int &count) { const __m512i merged = _mm512_mask_mov_epi32(lane0, 0x1000, lane1); const __m512i expand_ver2 = _mm512_setr_epi64( 0x0403020103020100, 0x0605040305040302, 0x0807060507060504, 0x0a09080709080706, 0x0c0b0a090b0a0908, 0x0e0d0c0b0d0c0b0a, 0x000f0e0d0f0e0d0c, 0x0201000f01000f0e); const __m512i input = _mm512_shuffle_epi8(merged, expand_ver2); const __m512i v_0000_00c0 = _mm512_set1_epi32(0xc0); const __m512i t0 = _mm512_and_si512(input, v_0000_00c0); const __m512i v_0000_0080 = _mm512_set1_epi32(0x80); const __mmask16 leading_bytes = _mm512_cmpneq_epu32_mask(t0, v_0000_0080); count = static_cast(count_ones(leading_bytes)); return _mm512_mask_compress_epi32(_mm512_setzero_si512(), leading_bytes, input); } simdutf_really_inline __m512i expand_utf8_to_utf32(__m512i input) { __m512i char_class = _mm512_srli_epi32(input, 4); /* char_class = ((input >> 4) & 0x0f) | 0x80808000 */ const __m512i v_0000_000f = _mm512_set1_epi32(0x0f); const __m512i v_8080_8000 = _mm512_set1_epi32(0x80808000); char_class = _mm512_ternarylogic_epi32(char_class, v_0000_000f, v_8080_8000, 0xea); return expanded_utf8_to_utf32(char_class, input); } /* end file src/icelake/icelake_utf8_common.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/icelake/icelake_utf8_validation.inl.cpp */ // file included directly simdutf_really_inline __m512i check_special_cases(__m512i input, const __m512i prev1) { __m512i mask1 = _mm512_setr_epi64(0x0202020202020202, 0x4915012180808080, 0x0202020202020202, 0x4915012180808080, 0x0202020202020202, 0x4915012180808080, 0x0202020202020202, 0x4915012180808080); const __m512i v_0f = _mm512_set1_epi8(0x0f); __m512i index1 = _mm512_and_si512(_mm512_srli_epi16(prev1, 4), v_0f); __m512i byte_1_high = _mm512_shuffle_epi8(mask1, index1); __m512i mask2 = _mm512_setr_epi64(0xcbcbcb8b8383a3e7, 0xcbcbdbcbcbcbcbcb, 0xcbcbcb8b8383a3e7, 0xcbcbdbcbcbcbcbcb, 0xcbcbcb8b8383a3e7, 0xcbcbdbcbcbcbcbcb, 0xcbcbcb8b8383a3e7, 0xcbcbdbcbcbcbcbcb); __m512i index2 = _mm512_and_si512(prev1, v_0f); __m512i byte_1_low = _mm512_shuffle_epi8(mask2, index2); __m512i mask3 = _mm512_setr_epi64(0x101010101010101, 0x1010101babaaee6, 0x101010101010101, 0x1010101babaaee6, 0x101010101010101, 0x1010101babaaee6, 0x101010101010101, 0x1010101babaaee6); __m512i index3 = _mm512_and_si512(_mm512_srli_epi16(input, 4), v_0f); __m512i byte_2_high = _mm512_shuffle_epi8(mask3, index3); return _mm512_ternarylogic_epi64(byte_1_high, byte_1_low, byte_2_high, 128); } simdutf_really_inline __m512i check_multibyte_lengths(const __m512i input, const __m512i prev_input, const __m512i sc) { __m512i prev2 = prev<2>(input, prev_input); __m512i prev3 = prev<3>(input, prev_input); __m512i is_third_byte = _mm512_subs_epu8( prev2, _mm512_set1_epi8(0b11100000u - 1)); // Only 111_____ will be > 0 __m512i is_fourth_byte = _mm512_subs_epu8( prev3, _mm512_set1_epi8(0b11110000u - 1)); // Only 1111____ will be > 0 __m512i is_third_or_fourth_byte = _mm512_or_si512(is_third_byte, is_fourth_byte); const __m512i v_7f = _mm512_set1_epi8(char(0x7f)); is_third_or_fourth_byte = _mm512_adds_epu8(v_7f, is_third_or_fourth_byte); // We want to compute (is_third_or_fourth_byte AND v80) XOR sc. const __m512i v_80 = _mm512_set1_epi8(char(0x80)); return _mm512_ternarylogic_epi32(is_third_or_fourth_byte, v_80, sc, 0b1101010); //__m512i is_third_or_fourth_byte_mask = //_mm512_and_si512(is_third_or_fourth_byte, v_80); return // _mm512_xor_si512(is_third_or_fourth_byte_mask, sc); } // // Return nonzero if there are incomplete multibyte characters at the end of the // block: e.g. if there is a 4-byte character, but it is 3 bytes from the end. // simdutf_really_inline __m512i is_incomplete(const __m512i input) { // If the previous input's last 3 bytes match this, they're too short (they // ended at EOF): // ... 1111____ 111_____ 11______ __m512i max_value = _mm512_setr_epi64(0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xbfdfefffffffffff); return _mm512_subs_epu8(input, max_value); } struct avx512_utf8_checker { // If this is nonzero, there has been a UTF-8 error. __m512i error{}; // The last input we received __m512i prev_input_block{}; // Whether the last input we received was incomplete (used for ASCII fast // path) __m512i prev_incomplete{}; // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const __m512i input, const __m512i prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) __m512i prev1 = prev<1>(input, prev_input); __m512i sc = check_special_cases(input, prev1); this->error = _mm512_or_si512( check_multibyte_lengths(input, prev_input, sc), this->error); } // The only problem that can happen at EOF is that a multibyte character is // too short or a byte value too large in the last bytes: check_special_cases // only checks for bytes too large in the first of two bytes. simdutf_really_inline void check_eof() { // If the previous block had incomplete UTF-8 characters at the end, an // ASCII block can't possibly finish them. this->error = _mm512_or_si512(this->error, this->prev_incomplete); } // returns true if ASCII. simdutf_really_inline bool check_next_input(const __m512i input) { const __m512i v_80 = _mm512_set1_epi8(char(0x80)); const __mmask64 ascii = _mm512_test_epi8_mask(input, v_80); if (ascii == 0) { this->error = _mm512_or_si512(this->error, this->prev_incomplete); return true; } else { this->check_utf8_bytes(input, this->prev_input_block); this->prev_incomplete = is_incomplete(input); this->prev_input_block = input; return false; } } // do not forget to call check_eof! simdutf_really_inline bool errors() const { return _mm512_test_epi8_mask(this->error, this->error) != 0; } }; // struct avx512_utf8_checker /* end file src/icelake/icelake_utf8_validation.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 && \ (SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_LATIN1) /* begin file src/icelake/icelake_from_valid_utf8.inl.cpp */ // file included directly // File contains conversion procedure from VALID UTF-8 strings. /* valid_utf8_to_fixed_length converts a valid UTF-8 string into UTF-32. The `OUTPUT` template type decides what to do with UTF-32: store it directly or convert into UTF-16 (with AVX512). Input: - str - valid UTF-8 string - len - string length - out_buffer - output buffer Result: - pair.first - the first unprocessed input byte - pair.second - the first unprocessed output word */ template std::pair valid_utf8_to_fixed_length(const char *str, size_t len, OUTPUT *dwords) { constexpr bool UTF32 = std::is_same::value; constexpr bool UTF16 = std::is_same::value; static_assert( UTF32 or UTF16, "output type has to be uint32_t (for UTF-32) or char16_t (for UTF-16)"); static_assert(!(UTF32 and big_endian), "we do not currently support big-endian UTF-32"); __m512i byteflip = _mm512_setr_epi64(0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); const char *ptr = str; const char *end = ptr + len; OUTPUT *output = dwords; /** * In the main loop, we consume 64 bytes per iteration, * but we access 64 + 4 bytes. * We check for ptr + 64 + 64 <= end because * we want to be do maskless writes without overruns. */ while (end - ptr >= 64 + 4) { const __m512i utf8 = _mm512_loadu_si512((const __m512i *)ptr); const __m512i v_80 = _mm512_set1_epi8(char(0x80)); const __mmask64 ascii = _mm512_test_epi8_mask(utf8, v_80); if (ascii == 0) { SIMDUTF_ICELAKE_STORE_ASCII(UTF32, utf8, output) output += 64; ptr += 64; continue; } const __m512i lane0 = broadcast_epi128<0>(utf8); const __m512i lane1 = broadcast_epi128<1>(utf8); int valid_count0; __m512i vec0 = expand_and_identify(lane0, lane1, valid_count0); const __m512i lane2 = broadcast_epi128<2>(utf8); int valid_count1; __m512i vec1 = expand_and_identify(lane1, lane2, valid_count1); if (valid_count0 + valid_count1 <= 16) { vec0 = _mm512_mask_expand_epi32( vec0, __mmask16(((1 << valid_count1) - 1) << valid_count0), vec1); valid_count0 += valid_count1; vec0 = expand_utf8_to_utf32(vec0); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) } else { vec0 = expand_utf8_to_utf32(vec0); vec1 = expand_utf8_to_utf32(vec1); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec1, valid_count1, true) } const __m512i lane3 = broadcast_epi128<3>(utf8); int valid_count2; __m512i vec2 = expand_and_identify(lane2, lane3, valid_count2); uint32_t tmp1; ::memcpy(&tmp1, ptr + 64, sizeof(tmp1)); const __m512i lane4 = _mm512_set1_epi32(tmp1); int valid_count3; __m512i vec3 = expand_and_identify(lane3, lane4, valid_count3); if (valid_count2 + valid_count3 <= 16) { vec2 = _mm512_mask_expand_epi32( vec2, __mmask16(((1 << valid_count3) - 1) << valid_count2), vec3); valid_count2 += valid_count3; vec2 = expand_utf8_to_utf32(vec2); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec2, valid_count2, true) } else { vec2 = expand_utf8_to_utf32(vec2); vec3 = expand_utf8_to_utf32(vec3); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec2, valid_count2, true) SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec3, valid_count3, true) } ptr += 4 * 16; } if (end - ptr >= 64) { const __m512i utf8 = _mm512_loadu_si512((const __m512i *)ptr); const __m512i v_80 = _mm512_set1_epi8(char(0x80)); const __mmask64 ascii = _mm512_test_epi8_mask(utf8, v_80); if (ascii == 0) { SIMDUTF_ICELAKE_STORE_ASCII(UTF32, utf8, output) output += 64; ptr += 64; } else { const __m512i lane0 = broadcast_epi128<0>(utf8); const __m512i lane1 = broadcast_epi128<1>(utf8); int valid_count0; __m512i vec0 = expand_and_identify(lane0, lane1, valid_count0); const __m512i lane2 = broadcast_epi128<2>(utf8); int valid_count1; __m512i vec1 = expand_and_identify(lane1, lane2, valid_count1); if (valid_count0 + valid_count1 <= 16) { vec0 = _mm512_mask_expand_epi32( vec0, __mmask16(((1 << valid_count1) - 1) << valid_count0), vec1); valid_count0 += valid_count1; vec0 = expand_utf8_to_utf32(vec0); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) } else { vec0 = expand_utf8_to_utf32(vec0); vec1 = expand_utf8_to_utf32(vec1); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec1, valid_count1, true) } const __m512i lane3 = broadcast_epi128<3>(utf8); SIMDUTF_ICELAKE_TRANSCODE16(lane2, lane3, true) ptr += 3 * 16; } } return {ptr, output}; } using utf8_to_utf16_result = std::pair; /* end file src/icelake/icelake_from_valid_utf8.inl.cpp */ /* begin file src/icelake/icelake_from_utf8.inl.cpp */ // file included directly // File contains conversion procedure from possibly invalid UTF-8 strings. template // todo: replace with the utf-8 to utf-16 routine adapted to utf-32. This code // is legacy. std::pair validating_utf8_to_fixed_length(const char *str, size_t len, OUTPUT *dwords) { constexpr bool UTF32 = std::is_same::value; constexpr bool UTF16 = std::is_same::value; static_assert( UTF32 or UTF16, "output type has to be uint32_t (for UTF-32) or char16_t (for UTF-16)"); static_assert(!(UTF32 and big_endian), "we do not currently support big-endian UTF-32"); const char *ptr = str; const char *end = ptr + len; __m512i byteflip = _mm512_setr_epi64(0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); OUTPUT *output = dwords; avx512_utf8_checker checker{}; /** * In the main loop, we consume 64 bytes per iteration, * but we access 64 + 4 bytes. * We use masked writes to avoid overruns, see * https://github.com/simdutf/simdutf/issues/471 */ while (end - ptr >= 64 + 4) { const __m512i utf8 = _mm512_loadu_si512((const __m512i *)ptr); if (checker.check_next_input(utf8)) { SIMDUTF_ICELAKE_STORE_ASCII(UTF32, utf8, output) output += 64; ptr += 64; continue; } const __m512i lane0 = broadcast_epi128<0>(utf8); const __m512i lane1 = broadcast_epi128<1>(utf8); int valid_count0; __m512i vec0 = expand_and_identify(lane0, lane1, valid_count0); const __m512i lane2 = broadcast_epi128<2>(utf8); int valid_count1; __m512i vec1 = expand_and_identify(lane1, lane2, valid_count1); if (valid_count0 + valid_count1 <= 16) { vec0 = _mm512_mask_expand_epi32( vec0, __mmask16(((1 << valid_count1) - 1) << valid_count0), vec1); valid_count0 += valid_count1; vec0 = expand_utf8_to_utf32(vec0); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) } else { vec0 = expand_utf8_to_utf32(vec0); vec1 = expand_utf8_to_utf32(vec1); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec1, valid_count1, true) } const __m512i lane3 = broadcast_epi128<3>(utf8); int valid_count2; __m512i vec2 = expand_and_identify(lane2, lane3, valid_count2); uint32_t tmp1; ::memcpy(&tmp1, ptr + 64, sizeof(tmp1)); const __m512i lane4 = _mm512_set1_epi32(tmp1); int valid_count3; __m512i vec3 = expand_and_identify(lane3, lane4, valid_count3); if (valid_count2 + valid_count3 <= 16) { vec2 = _mm512_mask_expand_epi32( vec2, __mmask16(((1 << valid_count3) - 1) << valid_count2), vec3); valid_count2 += valid_count3; vec2 = expand_utf8_to_utf32(vec2); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec2, valid_count2, true) } else { vec2 = expand_utf8_to_utf32(vec2); vec3 = expand_utf8_to_utf32(vec3); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec2, valid_count2, true) SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec3, valid_count3, true) } ptr += 4 * 16; } const char *validatedptr = ptr; // validated up to ptr // For the final pass, we validate 64 bytes, but we only transcode // 3*16 bytes, so we may end up double-validating 16 bytes. if (end - ptr >= 64) { const __m512i utf8 = _mm512_loadu_si512((const __m512i *)ptr); if (checker.check_next_input(utf8)) { SIMDUTF_ICELAKE_STORE_ASCII(UTF32, utf8, output) output += 64; ptr += 64; } else { const __m512i lane0 = broadcast_epi128<0>(utf8); const __m512i lane1 = broadcast_epi128<1>(utf8); int valid_count0; __m512i vec0 = expand_and_identify(lane0, lane1, valid_count0); const __m512i lane2 = broadcast_epi128<2>(utf8); int valid_count1; __m512i vec1 = expand_and_identify(lane1, lane2, valid_count1); if (valid_count0 + valid_count1 <= 16) { vec0 = _mm512_mask_expand_epi32( vec0, __mmask16(((1 << valid_count1) - 1) << valid_count0), vec1); valid_count0 += valid_count1; vec0 = expand_utf8_to_utf32(vec0); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) } else { vec0 = expand_utf8_to_utf32(vec0); vec1 = expand_utf8_to_utf32(vec1); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec1, valid_count1, true) } const __m512i lane3 = broadcast_epi128<3>(utf8); SIMDUTF_ICELAKE_TRANSCODE16(lane2, lane3, true) ptr += 3 * 16; } validatedptr += 4 * 16; } if (end != validatedptr) { const __m512i utf8 = _mm512_maskz_loadu_epi8(~UINT64_C(0) >> (64 - (end - validatedptr)), (const __m512i *)validatedptr); checker.check_next_input(utf8); } checker.check_eof(); if (checker.errors()) { return {ptr, nullptr}; // We found an error. } return {ptr, output}; } // Like validating_utf8_to_fixed_length but returns as soon as an error is // identified todo: replace with the utf-8 to utf-16 routine adapted to utf-32. // This code is legacy. template std::tuple validating_utf8_to_fixed_length_with_constant_checks(const char *str, size_t len, OUTPUT *dwords) { constexpr bool UTF32 = std::is_same::value; constexpr bool UTF16 = std::is_same::value; static_assert( UTF32 or UTF16, "output type has to be uint32_t (for UTF-32) or char16_t (for UTF-16)"); static_assert(!(UTF32 and big_endian), "we do not currently support big-endian UTF-32"); const char *ptr = str; const char *end = ptr + len; __m512i byteflip = _mm512_setr_epi64(0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); OUTPUT *output = dwords; avx512_utf8_checker checker{}; /** * In the main loop, we consume 64 bytes per iteration, * but we access 64 + 4 bytes. */ while (end - ptr >= 4 + 64) { const __m512i utf8 = _mm512_loadu_si512((const __m512i *)ptr); bool ascii = checker.check_next_input(utf8); if (checker.errors()) { return {ptr, output, false}; // We found an error. } if (ascii) { SIMDUTF_ICELAKE_STORE_ASCII(UTF32, utf8, output) output += 64; ptr += 64; continue; } const __m512i lane0 = broadcast_epi128<0>(utf8); const __m512i lane1 = broadcast_epi128<1>(utf8); int valid_count0; __m512i vec0 = expand_and_identify(lane0, lane1, valid_count0); const __m512i lane2 = broadcast_epi128<2>(utf8); int valid_count1; __m512i vec1 = expand_and_identify(lane1, lane2, valid_count1); if (valid_count0 + valid_count1 <= 16) { vec0 = _mm512_mask_expand_epi32( vec0, __mmask16(((1 << valid_count1) - 1) << valid_count0), vec1); valid_count0 += valid_count1; vec0 = expand_utf8_to_utf32(vec0); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) } else { vec0 = expand_utf8_to_utf32(vec0); vec1 = expand_utf8_to_utf32(vec1); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec1, valid_count1, true) } const __m512i lane3 = broadcast_epi128<3>(utf8); int valid_count2; __m512i vec2 = expand_and_identify(lane2, lane3, valid_count2); uint32_t tmp1; ::memcpy(&tmp1, ptr + 64, sizeof(tmp1)); const __m512i lane4 = _mm512_set1_epi32(tmp1); int valid_count3; __m512i vec3 = expand_and_identify(lane3, lane4, valid_count3); if (valid_count2 + valid_count3 <= 16) { vec2 = _mm512_mask_expand_epi32( vec2, __mmask16(((1 << valid_count3) - 1) << valid_count2), vec3); valid_count2 += valid_count3; vec2 = expand_utf8_to_utf32(vec2); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec2, valid_count2, true) } else { vec2 = expand_utf8_to_utf32(vec2); vec3 = expand_utf8_to_utf32(vec3); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec2, valid_count2, true) SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec3, valid_count3, true) } ptr += 4 * 16; } const char *validatedptr = ptr; // validated up to ptr // For the final pass, we validate 64 bytes, but we only transcode // 3*16 bytes, so we may end up double-validating 16 bytes. if (end - ptr >= 64) { const __m512i utf8 = _mm512_loadu_si512((const __m512i *)ptr); bool ascii = checker.check_next_input(utf8); if (checker.errors()) { return {ptr, output, false}; // We found an error. } if (ascii) { SIMDUTF_ICELAKE_STORE_ASCII(UTF32, utf8, output) output += 64; ptr += 64; } else { const __m512i lane0 = broadcast_epi128<0>(utf8); const __m512i lane1 = broadcast_epi128<1>(utf8); int valid_count0; __m512i vec0 = expand_and_identify(lane0, lane1, valid_count0); const __m512i lane2 = broadcast_epi128<2>(utf8); int valid_count1; __m512i vec1 = expand_and_identify(lane1, lane2, valid_count1); if (valid_count0 + valid_count1 <= 16) { vec0 = _mm512_mask_expand_epi32( vec0, __mmask16(((1 << valid_count1) - 1) << valid_count0), vec1); valid_count0 += valid_count1; vec0 = expand_utf8_to_utf32(vec0); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) } else { vec0 = expand_utf8_to_utf32(vec0); vec1 = expand_utf8_to_utf32(vec1); SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec0, valid_count0, true) SIMDUTF_ICELAKE_WRITE_UTF16_OR_UTF32(vec1, valid_count1, true) } const __m512i lane3 = broadcast_epi128<3>(utf8); SIMDUTF_ICELAKE_TRANSCODE16(lane2, lane3, true) ptr += 3 * 16; } validatedptr += 4 * 16; } if (end != validatedptr) { const __m512i utf8 = _mm512_maskz_loadu_epi8(~UINT64_C(0) >> (64 - (end - validatedptr)), (const __m512i *)validatedptr); checker.check_next_input(utf8); } checker.check_eof(); if (checker.errors()) { return {ptr, output, false}; // We found an error. } return {ptr, output, true}; } /* end file src/icelake/icelake_from_utf8.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && (SIMDUTF_FEATURE_UTF16 || // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_LATIN1) #if SIMDUTF_FEATURE_UTF16 /* begin file src/icelake/icelake_utf16fix.cpp */ #include /* * Process one block of 32 characters. If in_place is false, * copy the block from in to out. If there is a sequencing * error in the block, overwrite the illsequenced characters * with the replacement character. This function reads one * character before the beginning of the buffer as a lookback. * If that character is illsequenced, it too is overwritten. */ template simdutf_really_inline void utf16fix_block(char16_t *out, const char16_t *in) { const char16_t replacement = scalar::utf16::replacement(); auto swap_if_needed = [](uint16_t c) -> uint16_t { return !simdutf::match_system(big_endian) ? scalar::u16_swap_bytes(c) : c; }; __m512i lookback, block, lb_masked, block_masked; __mmask32 lb_is_high, block_is_low, illseq; lookback = _mm512_loadu_si512((const __m512i *)(in - 1)); block = _mm512_loadu_si512((const __m512i *)in); lb_masked = _mm512_and_epi32(lookback, _mm512_set1_epi16(swap_if_needed(0xfc00U))); block_masked = _mm512_and_epi32(block, _mm512_set1_epi16(swap_if_needed(0xfc00U))); lb_is_high = _mm512_cmpeq_epi16_mask( lb_masked, _mm512_set1_epi16(swap_if_needed(0xd800U))); block_is_low = _mm512_cmpeq_epi16_mask( block_masked, _mm512_set1_epi16(swap_if_needed(0xdc00U))); illseq = _kxor_mask32(lb_is_high, block_is_low); if (!_ktestz_mask32_u8(illseq, illseq)) { __mmask32 lb_illseq, block_illseq; /* compute the cause of the illegal sequencing */ lb_illseq = _kandn_mask32(block_is_low, lb_is_high); block_illseq = _kor_mask32(_kandn_mask32(lb_is_high, block_is_low), _kshiftri_mask32(lb_illseq, 1)); /* fix illegal sequencing in the lookback */ lb_illseq = _kand_mask32(lb_illseq, _cvtu32_mask32(1)); _mm512_mask_storeu_epi16(out - 1, lb_illseq, _mm512_set1_epi16(replacement)); /* fix illegal sequencing in the main block */ if (in_place) { _mm512_mask_storeu_epi16(out, block_illseq, _mm512_set1_epi16(replacement)); } else { _mm512_storeu_epi32( out, _mm512_mask_blend_epi16(block_illseq, block, _mm512_set1_epi16(replacement))); } } else if (!in_place) { _mm512_storeu_si512((__m512i *)out, block); } } /* * Special case for inputs of 0--32 bytes. Works for both in-place and * out-of-place operation. */ template void utf16fix_runt(const char16_t *in, size_t n, char16_t *out) { const char16_t replacement = scalar::utf16::replacement(); auto swap_if_needed = [](uint16_t c) -> uint16_t { return !simdutf::match_system(big_endian) ? scalar::u16_swap_bytes(c) : c; }; __m512i lookback, block, lb_masked, block_masked; __mmask32 lb_is_high, block_is_low, illseq; uint32_t mask = 0xFFFFFFFF >> (32 - n); lookback = _mm512_maskz_loadu_epi16(_cvtmask32_u32(mask << 1), (const uint16_t *)(in - 1)); block = _mm512_maskz_loadu_epi16(_cvtmask32_u32(mask), (const uint16_t *)in); lb_masked = _mm512_and_epi32(lookback, _mm512_set1_epi16(swap_if_needed(0xfc00u))); block_masked = _mm512_and_epi32(block, _mm512_set1_epi16(swap_if_needed(0xfc00u))); lb_is_high = _mm512_cmpeq_epi16_mask( lb_masked, _mm512_set1_epi16(swap_if_needed(0xd800u))); block_is_low = _mm512_cmpeq_epi16_mask( block_masked, _mm512_set1_epi16(swap_if_needed(0xdc00u))); illseq = _kxor_mask32(lb_is_high, block_is_low); if (!_ktestz_mask32_u8(illseq, illseq)) { __mmask32 lb_illseq, block_illseq; /* compute the cause of the illegal sequencing */ lb_illseq = _kandn_mask32(block_is_low, lb_is_high); block_illseq = _kor_mask32(_kandn_mask32(lb_is_high, block_is_low), _kshiftri_mask32(lb_illseq, 1)); /* fix illegal sequencing in the main block */ _mm512_mask_storeu_epi16( (uint16_t *)out, _cvtmask32_u32(mask), _mm512_mask_blend_epi16(block_illseq, block, _mm512_set1_epi16(replacement))); } else { _mm512_mask_storeu_epi16((uint16_t *)out, _cvtmask32_u32(mask), block); } out[n - 1] = scalar::utf16::is_high_surrogate(out[n - 1]) ? replacement : out[n - 1]; } template void utf16fix_avx512(const char16_t *in, size_t n, char16_t *out) { const char16_t replacement = scalar::utf16::replacement(); size_t i; if (n == 0) return; else if (n < 33) { utf16fix_runt(in, n, out); return; } out[0] = scalar::utf16::is_low_surrogate(in[0]) ? replacement : in[0]; /* duplicate code to have the compiler specialise utf16fix_block() */ if (in == out) { for (i = 1; i + 32 < n; i += 32) { utf16fix_block(out + i, in + i); } utf16fix_block(out + n - 32, in + n - 32); } else { for (i = 1; i + 32 < n; i += 32) { utf16fix_block(out + i, in + i); } utf16fix_block(out + n - 32, in + n - 32); } out[n - 1] = scalar::utf16::is_high_surrogate(out[n - 1]) ? replacement : out[n - 1]; } /* end file src/icelake/icelake_utf16fix.cpp */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/icelake/icelake_convert_utf8_to_latin1.inl.cpp */ // file included directly // File contains conversion procedure from possibly invalid UTF-8 strings. template simdutf_really_inline size_t process_block_from_utf8_to_latin1( const char *buf, size_t len, char *latin_output, __m512i minus64, __m512i one, __mmask64 *next_leading_ptr, __mmask64 *next_bit6_ptr) { __mmask64 load_mask = is_remaining ? _bzhi_u64(~0ULL, (unsigned int)len) : ~0ULL; __m512i input = _mm512_maskz_loadu_epi8(load_mask, (__m512i *)buf); __mmask64 nonascii = _mm512_movepi8_mask(input); if (nonascii == 0) { if (*next_leading_ptr) { // If we ended with a leading byte, it is an error. return 0; // Indicates error } is_remaining ? _mm512_mask_storeu_epi8((__m512i *)latin_output, load_mask, input) : _mm512_storeu_si512((__m512i *)latin_output, input); return len; } const __mmask64 leading = _mm512_cmpge_epu8_mask(input, minus64); __m512i highbits = _mm512_xor_si512(input, _mm512_set1_epi8(-62)); __mmask64 invalid_leading_bytes = _mm512_mask_cmpgt_epu8_mask(leading, highbits, one); if (invalid_leading_bytes) { return 0; // Indicates error } __mmask64 leading_shift = (leading << 1) | *next_leading_ptr; if ((nonascii ^ leading) != leading_shift) { return 0; // Indicates error } const __mmask64 bit6 = _mm512_cmpeq_epi8_mask(highbits, one); input = _mm512_mask_sub_epi8(input, (bit6 << 1) | *next_bit6_ptr, input, minus64); __mmask64 retain = ~leading & load_mask; __m512i output = _mm512_maskz_compress_epi8(retain, input); int64_t written_out = count_ones(retain); if (written_out == 0) { return 0; // Indicates error } *next_bit6_ptr = bit6 >> 63; *next_leading_ptr = leading >> 63; __mmask64 store_mask = ~UINT64_C(0) >> (64 - written_out); _mm512_mask_storeu_epi8((__m512i *)latin_output, store_mask, output); return written_out; } size_t utf8_to_latin1_avx512(const char *&inbuf, size_t len, char *&inlatin_output) { const char *buf = inbuf; char *latin_output = inlatin_output; char *start = latin_output; size_t pos = 0; __m512i minus64 = _mm512_set1_epi8(-64); // 11111111111 ... 1100 0000 __m512i one = _mm512_set1_epi8(1); __mmask64 next_leading = 0; __mmask64 next_bit6 = 0; while (pos + 64 <= len) { size_t written = process_block_from_utf8_to_latin1( buf + pos, 64, latin_output, minus64, one, &next_leading, &next_bit6); if (written == 0) { inlatin_output = latin_output; inbuf = buf + pos - next_leading; return 0; // Indicates error at pos or after, or just before pos (too // short error) } latin_output += written; pos += 64; } if (pos < len) { size_t remaining = len - pos; size_t written = process_block_from_utf8_to_latin1( buf + pos, remaining, latin_output, minus64, one, &next_leading, &next_bit6); if (written == 0) { inbuf = buf + pos - next_leading; inlatin_output = latin_output; return 0; // Indicates error at pos or after, or just before pos (too // short error) } latin_output += written; } if (next_leading) { inbuf = buf + len - next_leading; inlatin_output = latin_output; return 0; // Indicates error at end of buffer } inlatin_output = latin_output; inbuf += len; return size_t(latin_output - start); } /* end file src/icelake/icelake_convert_utf8_to_latin1.inl.cpp */ /* begin file src/icelake/icelake_convert_valid_utf8_to_latin1.inl.cpp */ // file included directly // File contains conversion procedure from valid UTF-8 strings. template simdutf_really_inline size_t process_valid_block_from_utf8_to_latin1( const char *buf, size_t len, char *latin_output, __m512i minus64, __m512i one, __mmask64 *next_leading_ptr, __mmask64 *next_bit6_ptr) { __mmask64 load_mask = is_remaining ? _bzhi_u64(~0ULL, (unsigned int)len) : ~0ULL; __m512i input = _mm512_maskz_loadu_epi8(load_mask, (__m512i *)buf); __mmask64 nonascii = _mm512_movepi8_mask(input); if (nonascii == 0) { is_remaining ? _mm512_mask_storeu_epi8((__m512i *)latin_output, load_mask, input) : _mm512_storeu_si512((__m512i *)latin_output, input); return len; } __mmask64 leading = _mm512_cmpge_epu8_mask(input, minus64); __m512i highbits = _mm512_xor_si512(input, _mm512_set1_epi8(-62)); *next_leading_ptr = leading >> 63; __mmask64 bit6 = _mm512_cmpeq_epi8_mask(highbits, one); input = _mm512_mask_sub_epi8(input, (bit6 << 1) | *next_bit6_ptr, input, minus64); *next_bit6_ptr = bit6 >> 63; __mmask64 retain = ~leading & load_mask; __m512i output = _mm512_maskz_compress_epi8(retain, input); int64_t written_out = count_ones(retain); if (written_out == 0) { return 0; // Indicates error } __mmask64 store_mask = ~UINT64_C(0) >> (64 - written_out); // Optimization opportunity: sometimes, masked writes are not needed. _mm512_mask_storeu_epi8((__m512i *)latin_output, store_mask, output); return written_out; } size_t valid_utf8_to_latin1_avx512(const char *buf, size_t len, char *latin_output) { char *start = latin_output; size_t pos = 0; __m512i minus64 = _mm512_set1_epi8(-64); // 11111111111 ... 1100 0000 __m512i one = _mm512_set1_epi8(1); __mmask64 next_leading = 0; __mmask64 next_bit6 = 0; while (pos + 64 <= len) { size_t written = process_valid_block_from_utf8_to_latin1( buf + pos, 64, latin_output, minus64, one, &next_leading, &next_bit6); latin_output += written; pos += 64; } if (pos < len) { size_t remaining = len - pos; size_t written = process_valid_block_from_utf8_to_latin1( buf + pos, remaining, latin_output, minus64, one, &next_leading, &next_bit6); latin_output += written; } return (size_t)(latin_output - start); } /* end file src/icelake/icelake_convert_valid_utf8_to_latin1.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 /* begin file src/icelake/icelake_convert_utf16_to_latin1.inl.cpp */ // file included directly template size_t icelake_convert_utf16_to_latin1(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *end = buf + len; __m512i v_0xFF = _mm512_set1_epi16(0xff); __m512i byteflip = _mm512_setr_epi64(0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); __m512i shufmask = _mm512_set_epi8( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 60, 58, 56, 54, 52, 50, 48, 46, 44, 42, 40, 38, 36, 34, 32, 30, 28, 26, 24, 22, 20, 18, 16, 14, 12, 10, 8, 6, 4, 2, 0); while (end - buf >= 32) { __m512i in = _mm512_loadu_si512((__m512i *)buf); if (big_endian) { in = _mm512_shuffle_epi8(in, byteflip); } if (_mm512_cmpgt_epu16_mask(in, v_0xFF)) { return 0; } _mm256_storeu_si256( (__m256i *)latin1_output, _mm512_castsi512_si256(_mm512_permutexvar_epi8(shufmask, in))); latin1_output += 32; buf += 32; } if (buf < end) { uint32_t mask(uint32_t(1 << (end - buf)) - 1); __m512i in = _mm512_maskz_loadu_epi16(mask, buf); if (big_endian) { in = _mm512_shuffle_epi8(in, byteflip); } if (_mm512_cmpgt_epu16_mask(in, v_0xFF)) { return 0; } _mm256_mask_storeu_epi8( latin1_output, mask, _mm512_castsi512_si256(_mm512_permutexvar_epi8(shufmask, in))); } return len; } template std::pair icelake_convert_utf16_to_latin1_with_errors(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *end = buf + len; const char16_t *start = buf; __m512i byteflip = _mm512_setr_epi64(0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); __m512i v_0xFF = _mm512_set1_epi16(0xff); __m512i shufmask = _mm512_set_epi8( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 60, 58, 56, 54, 52, 50, 48, 46, 44, 42, 40, 38, 36, 34, 32, 30, 28, 26, 24, 22, 20, 18, 16, 14, 12, 10, 8, 6, 4, 2, 0); while (end - buf >= 32) { __m512i in = _mm512_loadu_si512((__m512i *)buf); if (big_endian) { in = _mm512_shuffle_epi8(in, byteflip); } if (_mm512_cmpgt_epu16_mask(in, v_0xFF)) { uint16_t word; while ((word = (big_endian ? scalar::u16_swap_bytes(uint16_t(*buf)) : uint16_t(*buf))) <= 0xff) { *latin1_output++ = uint8_t(word); buf++; } return std::make_pair(result(error_code::TOO_LARGE, buf - start), latin1_output); } _mm256_storeu_si256( (__m256i *)latin1_output, _mm512_castsi512_si256(_mm512_permutexvar_epi8(shufmask, in))); latin1_output += 32; buf += 32; } if (buf < end) { uint32_t mask(uint32_t(1 << (end - buf)) - 1); __m512i in = _mm512_maskz_loadu_epi16(mask, buf); if (big_endian) { in = _mm512_shuffle_epi8(in, byteflip); } if (_mm512_cmpgt_epu16_mask(in, v_0xFF)) { uint16_t word; while ((word = (big_endian ? scalar::u16_swap_bytes(uint16_t(*buf)) : uint16_t(*buf))) <= 0xff) { *latin1_output++ = uint8_t(word); buf++; } return std::make_pair(result(error_code::TOO_LARGE, buf - start), latin1_output); } _mm256_mask_storeu_epi8( latin1_output, mask, _mm512_castsi512_si256(_mm512_permutexvar_epi8(shufmask, in))); } return std::make_pair(result(error_code::SUCCESS, len), latin1_output); } /* end file src/icelake/icelake_convert_utf16_to_latin1.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/icelake/icelake_convert_utf16_to_utf8.inl.cpp */ // file included directly /** * This function converts the input (inbuf, inlen), assumed to be valid * UTF16 (little endian) into UTF-8 (to outbuf). The number of code units * written is written to 'outlen' and the function reports the number of input * word consumed. */ template size_t utf16_to_utf8_avx512i(const char16_t *inbuf, size_t inlen, unsigned char *outbuf, size_t *outlen) { __m512i in; __mmask32 inmask = _cvtu32_mask32(0x7fffffff); __m512i byteflip = _mm512_setr_epi64(0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); const char16_t *const inbuf_orig = inbuf; const unsigned char *const outbuf_orig = outbuf; int adjust = 0; int carry = 0; while (inlen >= 32) { in = _mm512_loadu_si512(inbuf); if (big_endian) { in = _mm512_shuffle_epi8(in, byteflip); } inlen -= 31; lastiteration: inbuf += 31; failiteration: const __mmask32 is234byte = _mm512_mask_cmp_epu16_mask( inmask, in, _mm512_set1_epi16(0x0080), _MM_CMPINT_NLT); if (_ktestz_mask32_u8(inmask, is234byte)) { // fast path for ASCII only _mm512_mask_cvtepi16_storeu_epi8(outbuf, inmask, in); outbuf += 31; carry = 0; if (inlen < 32) { goto tail; } else { continue; } } const __mmask32 is12byte = _mm512_cmp_epu16_mask(in, _mm512_set1_epi16(0x0800), _MM_CMPINT_LT); if (_ktestc_mask32_u8(is12byte, inmask)) { // fast path for 1 and 2 byte only const __m512i twobytes = _mm512_ternarylogic_epi32( _mm512_slli_epi16(in, 8), _mm512_srli_epi16(in, 6), _mm512_set1_epi16(0x3f3f), 0xa8); // (A|B)&C in = _mm512_mask_add_epi16(in, is234byte, twobytes, _mm512_set1_epi16(int16_t(0x80c0))); const __m512i cmpmask = _mm512_mask_blend_epi16(inmask, _mm512_set1_epi16(int16_t(0xffff)), _mm512_set1_epi16(0x0800)); const __mmask64 smoosh = _mm512_cmp_epu8_mask(in, cmpmask, _MM_CMPINT_NLT); const __m512i out = _mm512_maskz_compress_epi8(smoosh, in); _mm512_mask_storeu_epi8(outbuf, _cvtu64_mask64(_pext_u64(_cvtmask64_u64(smoosh), _cvtmask64_u64(smoosh))), out); outbuf += 31 + _mm_popcnt_u32(_cvtmask32_u32(is234byte)); carry = 0; if (inlen < 32) { goto tail; } else { continue; } } __m512i lo = _mm512_cvtepu16_epi32(_mm512_castsi512_si256(in)); __m512i hi = _mm512_cvtepu16_epi32(_mm512_extracti32x8_epi32(in, 1)); __m512i taglo = _mm512_set1_epi32(0x8080e000); __m512i taghi = taglo; const __m512i fc00masked = _mm512_and_epi32(in, _mm512_set1_epi16(int16_t(0xfc00))); const __mmask32 hisurr = _mm512_mask_cmp_epu16_mask( inmask, fc00masked, _mm512_set1_epi16(int16_t(0xd800)), _MM_CMPINT_EQ); const __mmask32 losurr = _mm512_cmp_epu16_mask( fc00masked, _mm512_set1_epi16(int16_t(0xdc00)), _MM_CMPINT_EQ); int carryout = 0; if (!_kortestz_mask32_u8(hisurr, losurr)) { // handle surrogates __m512i los = _mm512_alignr_epi32(hi, lo, 1); __m512i his = _mm512_alignr_epi32(lo, hi, 1); const __mmask32 hisurrhi = _kshiftri_mask32(hisurr, 16); taglo = _mm512_mask_mov_epi32(taglo, __mmask16(hisurr), _mm512_set1_epi32(0x808080f0)); taghi = _mm512_mask_mov_epi32(taghi, __mmask16(hisurrhi), _mm512_set1_epi32(0x808080f0)); lo = _mm512_mask_slli_epi32(lo, __mmask16(hisurr), lo, 10); hi = _mm512_mask_slli_epi32(hi, __mmask16(hisurrhi), hi, 10); los = _mm512_add_epi32(los, _mm512_set1_epi32(0xfca02400)); his = _mm512_add_epi32(his, _mm512_set1_epi32(0xfca02400)); lo = _mm512_mask_add_epi32(lo, __mmask16(hisurr), lo, los); hi = _mm512_mask_add_epi32(hi, __mmask16(hisurrhi), hi, his); carryout = _cvtu32_mask32(_kshiftri_mask32(hisurr, 30)); const uint32_t h = _cvtmask32_u32(hisurr); const uint32_t l = _cvtmask32_u32(losurr); // check for mismatched surrogates if ((h + h + carry) ^ l) { const uint32_t lonohi = l & ~(h + h + carry); const uint32_t hinolo = h & ~(l >> 1); inlen = _tzcnt_u32(hinolo | lonohi); inmask = __mmask32(0x7fffffff & ((1U << inlen) - 1)); in = _mm512_maskz_mov_epi16(inmask, in); adjust = (int)inlen - 31; inlen = 0; goto failiteration; } } hi = _mm512_maskz_mov_epi32(_cvtu32_mask16(0x7fff), hi); carry = carryout; __m512i mslo = _mm512_multishift_epi64_epi8(_mm512_set1_epi64(0x20262c3200060c12), lo); __m512i mshi = _mm512_multishift_epi64_epi8(_mm512_set1_epi64(0x20262c3200060c12), hi); const __mmask32 outmask = __mmask32(_kandn_mask64(losurr, inmask)); const __mmask64 outmhi = _kshiftri_mask64(outmask, 16); const __mmask32 is1byte = __mmask32(_knot_mask64(is234byte)); const __mmask64 is1bhi = _kshiftri_mask64(is1byte, 16); const __mmask64 is12bhi = _kshiftri_mask64(is12byte, 16); taglo = _mm512_mask_mov_epi32(taglo, __mmask16(is12byte), _mm512_set1_epi32(0x80c00000)); taghi = _mm512_mask_mov_epi32(taghi, __mmask16(is12bhi), _mm512_set1_epi32(0x80c00000)); __m512i magiclo = _mm512_mask_blend_epi32(__mmask16(outmask), _mm512_set1_epi32(0xffffffff), _mm512_set1_epi32(0x00010101)); __m512i magichi = _mm512_mask_blend_epi32(__mmask16(outmhi), _mm512_set1_epi32(0xffffffff), _mm512_set1_epi32(0x00010101)); magiclo = _mm512_mask_blend_epi32(__mmask16(outmask), _mm512_set1_epi32(0xffffffff), _mm512_set1_epi32(0x00010101)); magichi = _mm512_mask_blend_epi32(__mmask16(outmhi), _mm512_set1_epi32(0xffffffff), _mm512_set1_epi32(0x00010101)); mslo = _mm512_ternarylogic_epi32(mslo, _mm512_set1_epi32(0x3f3f3f3f), taglo, 0xea); // A&B|C mshi = _mm512_ternarylogic_epi32(mshi, _mm512_set1_epi32(0x3f3f3f3f), taghi, 0xea); mslo = _mm512_mask_slli_epi32(mslo, __mmask16(is1byte), lo, 24); mshi = _mm512_mask_slli_epi32(mshi, __mmask16(is1bhi), hi, 24); const __mmask64 wantlo = _mm512_cmp_epu8_mask(mslo, magiclo, _MM_CMPINT_NLT); const __mmask64 wanthi = _mm512_cmp_epu8_mask(mshi, magichi, _MM_CMPINT_NLT); const __m512i outlo = _mm512_maskz_compress_epi8(wantlo, mslo); const __m512i outhi = _mm512_maskz_compress_epi8(wanthi, mshi); const uint64_t wantlo_uint64 = _cvtmask64_u64(wantlo); const uint64_t wanthi_uint64 = _cvtmask64_u64(wanthi); uint64_t advlo = _mm_popcnt_u64(wantlo_uint64); uint64_t advhi = _mm_popcnt_u64(wanthi_uint64); _mm512_mask_storeu_epi8( outbuf, _cvtu64_mask64(_pext_u64(wantlo_uint64, wantlo_uint64)), outlo); _mm512_mask_storeu_epi8( outbuf + advlo, _cvtu64_mask64(_pext_u64(wanthi_uint64, wanthi_uint64)), outhi); outbuf += advlo + advhi; } outbuf += -adjust; tail: if (inlen != 0) { // We must have inlen < 31. inmask = _cvtu32_mask32((1U << inlen) - 1); in = _mm512_maskz_loadu_epi16(inmask, inbuf); if (big_endian) { in = _mm512_shuffle_epi8(in, byteflip); } adjust = (int)inlen - 31; inlen = 0; goto lastiteration; } *outlen = (outbuf - outbuf_orig) + adjust; return ((inbuf - inbuf_orig) + adjust); } /* end file src/icelake/icelake_convert_utf16_to_utf8.inl.cpp */ /* begin file src/icelake/icelake_convert_utf8_to_utf16.inl.cpp */ // file included directly // File contains conversion procedure from possibly invalid UTF-8 strings. /** * Attempts to convert up to len 1-byte code units from in (in UTF-8 format) to * out. * Returns the position of the input and output after the processing is * completed. Upon error, the output is set to null. */ template utf8_to_utf16_result fast_avx512_convert_utf8_to_utf16(const char *in, size_t len, char16_t *out) { const char *const final_in = in + len; bool result = true; while (result) { if (final_in - in >= 64) { result = process_block_utf8_to_utf16( in, out, final_in - in); } else if (in < final_in) { result = process_block_utf8_to_utf16( in, out, final_in - in); } else { break; } } if (!result) { out = nullptr; } return std::make_pair(in, out); } template simdutf::result fast_avx512_convert_utf8_to_utf16_with_errors(const char *in, size_t len, char16_t *out) { const char *const init_in = in; const char16_t *const init_out = out; const char *const final_in = in + len; bool result = true; while (result) { if (final_in - in >= 64) { result = process_block_utf8_to_utf16( in, out, final_in - in); } else if (in < final_in) { result = process_block_utf8_to_utf16( in, out, final_in - in); } else { break; } } if (!result) { size_t pos = size_t(in - init_in); if (pos < len && (init_in[pos] & 0xc0) == 0x80 && pos >= 64) { // We must check whether we are the fourth continuation byte bool c1 = (init_in[pos - 1] & 0xc0) == 0x80; bool c2 = (init_in[pos - 2] & 0xc0) == 0x80; bool c3 = (init_in[pos - 3] & 0xc0) == 0x80; if (c1 && c2 && c3) { return {simdutf::TOO_LONG, pos}; } } // rewind_and_convert_with_errors will seek a potential error from in // onward, with the ability to go back up to in - init_in bytes, and read // final_in - in bytes forward. simdutf::result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( in - init_in, in, final_in - in, out); res.count += (in - init_in); return res; } else { return simdutf::result(error_code::SUCCESS, out - init_out); } } /* end file src/icelake/icelake_convert_utf8_to_utf16.inl.cpp */ /* begin file src/icelake/icelake_utf8_length_from_utf16.inl.cpp */ template simdutf_really_inline size_t icelake_utf8_length_from_utf16(const char16_t *in, size_t size) { using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; // 32 on AVX-512 if (N + 1 > size) { result scalar_result = scalar::utf16::utf8_length_from_utf16_with_replacement( in, size); return scalar_result.count; } // special case for short inputs size_t pos = 0; const __m512i byteflip = _mm512_setr_epi64( 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); size_t count = 0; for (; pos < size / (2 * N) * (2 * N); pos += 2 * N) { __m512i input1 = _mm512_loadu_si512(reinterpret_cast(in + pos)); __m512i input2 = _mm512_loadu_si512(reinterpret_cast(in + pos + N)); if (!match_system(big_endian)) { input1 = _mm512_shuffle_epi8(input1, byteflip); input2 = _mm512_shuffle_epi8(input2, byteflip); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate __mmask32 is_surrogate1 = _mm512_cmpeq_epi16_mask( _mm512_and_si512(input1, _mm512_set1_epi16(uint16_t(0xf800))), _mm512_set1_epi16(uint16_t(0xd800))); __mmask32 is_surrogate2 = _mm512_cmpeq_epi16_mask( _mm512_and_si512(input2, _mm512_set1_epi16(uint16_t(0xf800))), _mm512_set1_epi16(uint16_t(0xd800))); // c0 - chars that yield 2- or 3-byte UTF-8 codes __mmask32 c01 = _mm512_test_epi16_mask(input1, _mm512_set1_epi16(uint16_t(0xff80))); __mmask32 c02 = _mm512_test_epi16_mask(input2, _mm512_set1_epi16(uint16_t(0xff80))); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) __mmask32 c11 = _mm512_test_epi16_mask(input1, _mm512_set1_epi16(uint16_t(0xf800))); __mmask32 c12 = _mm512_test_epi16_mask(input2, _mm512_set1_epi16(uint16_t(0xf800))); count += count_ones32(c01); count += count_ones32(c11); count -= count_ones32(is_surrogate1); count += count_ones32(c02); count += count_ones32(c12); count -= count_ones32(is_surrogate2); } if (pos + N <= size) { __m512i input = _mm512_loadu_si512(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input = _mm512_shuffle_epi8(input, byteflip); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate __mmask32 is_surrogate = _mm512_cmpeq_epi16_mask( _mm512_and_si512(input, _mm512_set1_epi16(uint16_t(0xf800))), _mm512_set1_epi16(uint16_t(0xd800))); // c0 - chars that yield 2- or 3-byte UTF-8 codes __mmask32 c0 = _mm512_test_epi16_mask(input, _mm512_set1_epi16(uint16_t(0xff80))); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) __mmask32 c1 = _mm512_test_epi16_mask(input, _mm512_set1_epi16(uint16_t(0xf800))); count += count_ones32(c0); count += count_ones32(c1); count -= count_ones32(is_surrogate); pos += N; } // At this point, we have processed 'pos' char16 values and we have less than // N remaining. __mmask32 remaining_mask = 0xFFFFFFFFULL >> (32 - (size - pos)); // mask for the remaining char16 values __m512i input = _mm512_maskz_loadu_epi16(remaining_mask, in + pos); if (!match_system(big_endian)) { input = _mm512_shuffle_epi8(input, byteflip); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate __mmask32 is_surrogate = _mm512_cmpeq_epi16_mask( _mm512_and_si512(input, _mm512_set1_epi16(uint16_t(0xf800))), _mm512_set1_epi16(uint16_t(0xd800))); // c0 - chars that yield 2- or 3-byte UTF-8 codes __mmask32 c0 = _mm512_test_epi16_mask(input, _mm512_set1_epi16(uint16_t(0xff80))); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) __mmask32 c1 = _mm512_test_epi16_mask(input, _mm512_set1_epi16(uint16_t(0xf800))); count += count_ones32(c0); count += count_ones32(c1); count -= count_ones32(is_surrogate); pos = size; count += pos; return count; } template simdutf_really_inline result icelake_utf8_length_from_utf16_with_replacement( const char16_t *in, size_t size) { /////// // We repeat 3 times the same algorithm. // First, we proceed with an unrolled loop of 2*N char16 values (for speed). // Second, we process N char16 values. // Finally, we process the remaining char16 values (less than N). /////// using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; // 32 on AVX-512 if (N + 1 > size) { return scalar::utf16::utf8_length_from_utf16_with_replacement( in, size); } // special case for short inputs size_t pos = 0; const __m512i byteflip = _mm512_setr_epi64( 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); const uint32_t straddle_mask = match_system(big_endian) ? 0xfc00fc00 : 0x00fc00fc; const uint32_t straddle_pair = match_system(big_endian) ? 0xdc00d800 : 0x00dc00d8; size_t count = 0; bool any_surrogates = false; // We assume all surrogates are mismatched and count here the matched // ones. size_t matches = 0; for (; pos < (size - 1) / (2 * N) * (2 * N); pos += 2 * N) { __m512i current1 = _mm512_loadu_si512(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { current1 = _mm512_shuffle_epi8(current1, byteflip); } __m512i current2 = _mm512_loadu_si512(reinterpret_cast(in + pos + N)); if (!match_system(big_endian)) { current2 = _mm512_shuffle_epi8(current2, byteflip); } __mmask32 is_surrogate1 = _mm512_cmpeq_epi16_mask( _mm512_and_si512(current1, _mm512_set1_epi16(uint16_t(0xf800))), _mm512_set1_epi16(uint16_t(0xd800))); __mmask32 is_surrogate2 = _mm512_cmpeq_epi16_mask( _mm512_and_si512(current2, _mm512_set1_epi16(uint16_t(0xf800))), _mm512_set1_epi16(uint16_t(0xd800))); __mmask32 c01 = _mm512_test_epi16_mask(current1, _mm512_set1_epi16(uint16_t(0xff80))); __mmask32 c11 = _mm512_test_epi16_mask(current1, _mm512_set1_epi16(uint16_t(0xf800))); __mmask32 c02 = _mm512_test_epi16_mask(current2, _mm512_set1_epi16(uint16_t(0xff80))); __mmask32 c12 = _mm512_test_epi16_mask(current2, _mm512_set1_epi16(uint16_t(0xf800))); count += count_ones32(c01); count += count_ones32(c11); count += count_ones32(c02); count += count_ones32(c12); if (_kor_mask32(is_surrogate1, is_surrogate2)) { any_surrogates = true; __m512i lb_masked1 = _mm512_and_si512(current1, _mm512_set1_epi16(uint16_t(0xfc00))); __mmask32 hi_surrogates1 = _mm512_cmpeq_epi16_mask( lb_masked1, _mm512_set1_epi16(uint16_t(0xd800))); __mmask32 lo_surrogates1 = _mm512_cmpeq_epi16_mask( lb_masked1, _mm512_set1_epi16(uint16_t(0xdc00))); __m512i lb_masked2 = _mm512_and_si512(current2, _mm512_set1_epi16(uint16_t(0xfc00))); __mmask32 hi_surrogates2 = _mm512_cmpeq_epi16_mask( lb_masked2, _mm512_set1_epi16(uint16_t(0xd800))); __mmask32 lo_surrogates2 = _mm512_cmpeq_epi16_mask( lb_masked2, _mm512_set1_epi16(uint16_t(0xdc00))); matches += count_ones32( _kand_mask32(_kshiftli_mask32(hi_surrogates1, 1), lo_surrogates1)); matches += count_ones32( _kand_mask32(_kshiftli_mask32(hi_surrogates2, 1), lo_surrogates2)); uint32_t straddle1, straddle2; memcpy(&straddle1, in + pos + 1 * N - 1, sizeof(uint32_t)); memcpy(&straddle2, in + pos + 2 * N - 1, sizeof(uint32_t)); matches += ((straddle1 & straddle_mask) == straddle_pair) + ((straddle2 & straddle_mask) == straddle_pair); } } if (pos + N + 1 <= size) { __m512i input = _mm512_loadu_si512(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input = _mm512_shuffle_epi8(input, byteflip); } __mmask32 is_surrogate = _mm512_cmpeq_epi16_mask( _mm512_and_si512(input, _mm512_set1_epi16(uint16_t(0xf800))), _mm512_set1_epi16(uint16_t(0xd800))); __mmask32 c0 = _mm512_test_epi16_mask(input, _mm512_set1_epi16(uint16_t(0xff80))); __mmask32 c1 = _mm512_test_epi16_mask(input, _mm512_set1_epi16(uint16_t(0xf800))); count += count_ones32(c0); count += count_ones32(c1); if (is_surrogate) { any_surrogates = true; __m512i lb_masked = _mm512_and_si512(input, _mm512_set1_epi16(uint16_t(0xfc00))); __mmask32 hi_surrogates = _mm512_cmpeq_epi16_mask( lb_masked, _mm512_set1_epi16(uint16_t(0xd800))); __mmask32 lo_surrogates = _mm512_cmpeq_epi16_mask( lb_masked, _mm512_set1_epi16(uint16_t(0xdc00))); matches += count_ones32( _kand_mask32(_kshiftli_mask32(hi_surrogates, 1), lo_surrogates)); uint32_t straddle; memcpy(&straddle, in + pos + N - 1, sizeof(uint32_t)); matches += (straddle & straddle_mask) == straddle_pair; } pos += N; } size_t overshoot = 32 - (size - pos); __mmask32 remaining_mask = 0xFFFFFFFFULL << overshoot; __m512i input = _mm512_maskz_loadu_epi16(remaining_mask, in + pos - overshoot); if (!match_system(big_endian)) { input = _mm512_shuffle_epi8(input, byteflip); } __mmask32 is_surrogate = _mm512_cmpeq_epi16_mask( _mm512_and_si512(input, _mm512_set1_epi16(uint16_t(0xf800))), _mm512_set1_epi16(uint16_t(0xd800))); __mmask32 c0 = _mm512_test_epi16_mask(input, _mm512_set1_epi16(uint16_t(0xff80))); __mmask32 c1 = _mm512_test_epi16_mask(input, _mm512_set1_epi16(uint16_t(0xf800))); count += count_ones32(c0); count += count_ones32(c1); if (is_surrogate) { any_surrogates = true; __m512i lb_masked = _mm512_and_si512(input, _mm512_set1_epi16(uint16_t(0xfc00))); __mmask32 hi_surrogates = _mm512_cmpeq_epi16_mask(lb_masked, _mm512_set1_epi16(uint16_t(0xd800))); __mmask32 lo_surrogates = _mm512_cmpeq_epi16_mask(lb_masked, _mm512_set1_epi16(uint16_t(0xdc00))); matches += count_ones32( _kand_mask32(_kshiftli_mask32(hi_surrogates, 1), lo_surrogates)); } pos = size; count += pos; count -= 2 * matches; return {any_surrogates ? SURROGATE : SUCCESS, count}; } /* end file src/icelake/icelake_utf8_length_from_utf16.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/icelake/icelake_convert_utf16_to_utf32.inl.cpp */ // file included directly /* Returns a pair: the first unprocessed byte from buf and utf32_output A scalar routing should carry on the conversion of the tail. */ template std::tuple convert_utf16_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_output) { const char16_t *end = buf + len; const __m512i v_fc00 = _mm512_set1_epi16((uint16_t)0xfc00); const __m512i v_d800 = _mm512_set1_epi16((uint16_t)0xd800); const __m512i v_dc00 = _mm512_set1_epi16((uint16_t)0xdc00); __mmask32 carry{0}; const __m512i byteflip = _mm512_setr_epi64( 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); while (std::distance(buf, end) >= 32) { // Always safe because buf + 32 <= end so that end - buf >= 32 bytes: __m512i in = _mm512_loadu_si512((__m512i *)buf); if (big_endian) { in = _mm512_shuffle_epi8(in, byteflip); } // H - bitmask for high surrogates const __mmask32 H = _mm512_cmpeq_epi16_mask(_mm512_and_si512(in, v_fc00), v_d800); // H - bitmask for low surrogates const __mmask32 L = _mm512_cmpeq_epi16_mask(_mm512_and_si512(in, v_fc00), v_dc00); if ((H | L)) { // surrogate pair(s) in a register const __mmask32 V = (L ^ (carry | (H << 1))); // A high surrogate must be followed by low one // and a low one must be preceded by a high one. // If valid, V should be equal to 0 if (V == 0) { // valid case /* Input surrogate pair: |1101.11aa.aaaa.aaaa|1101.10bb.bbbb.bbbb| low surrogate high surrogate */ /* 1. Expand all code units to 32-bit code units in |0000.0000.0000.0000.1101.11aa.aaaa.aaaa|0000.0000.0000.0000.1101.10bb.bbbb.bbbb| */ const __m512i first = _mm512_cvtepu16_epi32(_mm512_castsi512_si256(in)); const __m512i second = _mm512_cvtepu16_epi32(_mm512_extracti32x8_epi32(in, 1)); /* 2. Shift by one 16-bit word to align low surrogates with high surrogates in |0000.0000.0000.0000.1101.11aa.aaaa.aaaa|0000.0000.0000.0000.1101.10bb.bbbb.bbbb| shifted |????.????.????.????.????.????.????.????|0000.0000.0000.0000.1101.11aa.aaaa.aaaa| */ const __m512i shifted_first = _mm512_alignr_epi32(second, first, 1); const __m512i shifted_second = _mm512_alignr_epi32(_mm512_setzero_si512(), second, 1); /* 3. Align all high surrogates in first and second by shifting to the left by 10 bits |0000.0000.0000.0000.1101.11aa.aaaa.aaaa|0000.0011.0110.bbbb.bbbb.bb00.0000.0000| */ const __m512i aligned_first = _mm512_mask_slli_epi32(first, (__mmask16)H, first, 10); const __m512i aligned_second = _mm512_mask_slli_epi32(second, (__mmask16)(H >> 16), second, 10); /* 4. Remove surrogate prefixes and add offset 0x10000 by adding in, shifted and constant in |0000.0000.0000.0000.1101.11aa.aaaa.aaaa|0000.0011.0110.bbbb.bbbb.bb00.0000.0000| shifted |????.????.????.????.????.????.????.????|0000.0000.0000.0000.1101.11aa.aaaa.aaaa| constant|1111.1100.1010.0000.0010.0100.0000.0000|1111.1100.1010.0000.0010.0100.0000.0000| */ const __m512i constant = _mm512_set1_epi32((uint32_t)0xfca02400); const __m512i added_first = _mm512_mask_add_epi32( aligned_first, (__mmask16)H, aligned_first, shifted_first); const __m512i utf32_first = _mm512_mask_add_epi32( added_first, (__mmask16)H, added_first, constant); const __m512i added_second = _mm512_mask_add_epi32(aligned_second, (__mmask16)(H >> 16), aligned_second, shifted_second); const __m512i utf32_second = _mm512_mask_add_epi32( added_second, (__mmask16)(H >> 16), added_second, constant); // 5. Store all valid UTF-32 code units (low surrogate positions and // 32nd word are invalid) const __mmask32 valid = ~L & 0x7fffffff; // We deliberately do a _mm512_maskz_compress_epi32 followed by // storeu_epi32 to ease performance portability to Zen 4. const __m512i compressed_first = _mm512_maskz_compress_epi32((__mmask16)(valid), utf32_first); const size_t howmany1 = count_ones((uint16_t)(valid)); _mm512_storeu_si512((__m512i *)utf32_output, compressed_first); utf32_output += howmany1; const __m512i compressed_second = _mm512_maskz_compress_epi32((__mmask16)(valid >> 16), utf32_second); const size_t howmany2 = count_ones((uint16_t)(valid >> 16)); // The following could be unsafe in some cases? //_mm512_storeu_epi32((__m512i *) utf32_output, compressed_second); _mm512_mask_storeu_epi32((__m512i *)utf32_output, __mmask16((1 << howmany2) - 1), compressed_second); utf32_output += howmany2; // Only process 31 code units, but keep track if the 31st word is a high // surrogate as a carry buf += 31; carry = (H >> 30) & 0x1; } else { // invalid case return std::make_tuple(buf + carry, utf32_output, false); } } else { // no surrogates // extend all thirty-two 16-bit code units to thirty-two 32-bit code units _mm512_storeu_si512((__m512i *)(utf32_output), _mm512_cvtepu16_epi32(_mm512_castsi512_si256(in))); _mm512_storeu_si512( (__m512i *)(utf32_output) + 1, _mm512_cvtepu16_epi32(_mm512_extracti32x8_epi32(in, 1))); utf32_output += 32; buf += 32; carry = 0; } } // while return std::make_tuple(buf + carry, utf32_output, true); } /* end file src/icelake/icelake_convert_utf16_to_utf32.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 /* begin file src/icelake/icelake_convert_utf32_to_latin1.inl.cpp */ // file included directly size_t icelake_convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) { const char32_t *end = buf + len; __m512i v_0xFF = _mm512_set1_epi32(0xff); __m512i shufmask = _mm512_set_epi8( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 56, 52, 48, 44, 40, 36, 32, 28, 24, 20, 16, 12, 8, 4, 0); while (end - buf >= 16) { __m512i in = _mm512_loadu_si512((__m512i *)buf); if (_mm512_cmpgt_epu32_mask(in, v_0xFF)) { return 0; } _mm_storeu_si128( (__m128i *)latin1_output, _mm512_castsi512_si128(_mm512_permutexvar_epi8(shufmask, in))); latin1_output += 16; buf += 16; } if (buf < end) { uint16_t mask = uint16_t((1 << (end - buf)) - 1); __m512i in = _mm512_maskz_loadu_epi32(mask, buf); if (_mm512_cmpgt_epu32_mask(in, v_0xFF)) { return 0; } _mm_mask_storeu_epi8( latin1_output, mask, _mm512_castsi512_si128(_mm512_permutexvar_epi8(shufmask, in))); } return len; } std::pair icelake_convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) { const char32_t *end = buf + len; const char32_t *start = buf; __m512i v_0xFF = _mm512_set1_epi32(0xff); __m512i shufmask = _mm512_set_epi8( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 56, 52, 48, 44, 40, 36, 32, 28, 24, 20, 16, 12, 8, 4, 0); while (end - buf >= 16) { __m512i in = _mm512_loadu_si512((__m512i *)buf); if (_mm512_cmpgt_epu32_mask(in, v_0xFF)) { while (uint32_t(*buf) <= 0xff) { *latin1_output++ = uint8_t(*buf++); } return std::make_pair(result(error_code::TOO_LARGE, buf - start), latin1_output); } _mm_storeu_si128( (__m128i *)latin1_output, _mm512_castsi512_si128(_mm512_permutexvar_epi8(shufmask, in))); latin1_output += 16; buf += 16; } if (buf < end) { uint16_t mask = uint16_t((1 << (end - buf)) - 1); __m512i in = _mm512_maskz_loadu_epi32(mask, buf); if (_mm512_cmpgt_epu32_mask(in, v_0xFF)) { while (uint32_t(*buf) <= 0xff) { *latin1_output++ = uint8_t(*buf++); } return std::make_pair(result(error_code::TOO_LARGE, buf - start), latin1_output); } _mm_mask_storeu_epi8( latin1_output, mask, _mm512_castsi512_si128(_mm512_permutexvar_epi8(shufmask, in))); } return std::make_pair(result(error_code::SUCCESS, len), latin1_output); } /* end file src/icelake/icelake_convert_utf32_to_latin1.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/icelake/icelake_convert_utf32_to_utf8.inl.cpp */ // file included directly // Todo: currently, this is just the haswell code, optimize for icelake kernel. std::pair avx512_convert_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_output) { const char32_t *end = buf + len; const __m256i v_0000 = _mm256_setzero_si256(); const __m256i v_ffff0000 = _mm256_set1_epi32((uint32_t)0xffff0000); const __m256i v_ff80 = _mm256_set1_epi16((uint16_t)0xff80); const __m256i v_f800 = _mm256_set1_epi16((uint16_t)0xf800); const __m256i v_c080 = _mm256_set1_epi16((uint16_t)0xc080); const __m256i v_7fffffff = _mm256_set1_epi32((uint32_t)0x7fffffff); __m256i running_max = _mm256_setzero_si256(); __m256i forbidden_bytemask = _mm256_setzero_si256(); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m256i in = _mm256_loadu_si256((__m256i *)buf); __m256i nextin = _mm256_loadu_si256((__m256i *)buf + 1); running_max = _mm256_max_epu32(_mm256_max_epu32(in, running_max), nextin); // Pack 32-bit UTF-32 code units to 16-bit UTF-16 code units with unsigned // saturation __m256i in_16 = _mm256_packus_epi32(_mm256_and_si256(in, v_7fffffff), _mm256_and_si256(nextin, v_7fffffff)); in_16 = _mm256_permute4x64_epi64(in_16, 0b11011000); // Try to apply UTF-16 => UTF-8 routine on 256 bits // (haswell/avx2_convert_utf16_to_utf8.cpp) if (_mm256_testz_si256(in_16, v_ff80)) { // ASCII fast path!!!! // 1. pack the bytes const __m128i utf8_packed = _mm_packus_epi16( _mm256_castsi256_si128(in_16), _mm256_extractf128_si256(in_16, 1)); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } // no bits set above 7th bit const __m256i one_byte_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_ff80), v_0000); const uint32_t one_byte_bitmask = static_cast(_mm256_movemask_epi8(one_byte_bytemask)); // no bits set above 11th bit const __m256i one_or_two_bytes_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_f800), v_0000); const uint32_t one_or_two_bytes_bitmask = static_cast(_mm256_movemask_epi8(one_or_two_bytes_bytemask)); if (one_or_two_bytes_bitmask == 0xffffffff) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const __m256i v_1f00 = _mm256_set1_epi16((int16_t)0x1f00); const __m256i v_003f = _mm256_set1_epi16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const __m256i t0 = _mm256_slli_epi16(in_16, 2); // t1 = [000a|aaaa|0000|0000] const __m256i t1 = _mm256_and_si256(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const __m256i t2 = _mm256_and_si256(in_16, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const __m256i t3 = _mm256_or_si256(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m256i t4 = _mm256_or_si256(t3, v_c080); // 2. merge ASCII and 2-byte codewords const __m256i utf8_unpacked = _mm256_blendv_epi8(t4, in_16, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup const uint32_t M0 = one_byte_bitmask & 0x55555555; const uint32_t M1 = M0 >> 7; const uint32_t M2 = (M1 | M0) & 0x00ff00ff; // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2)][0]; const uint8_t *row_2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2 >> 16)][0]; const __m128i shuffle = _mm_loadu_si128((__m128i *)(row + 1)); const __m128i shuffle_2 = _mm_loadu_si128((__m128i *)(row_2 + 1)); const __m256i utf8_packed = _mm256_shuffle_epi8( utf8_unpacked, _mm256_setr_m128i(shuffle, shuffle_2)); // 5. store bytes _mm_storeu_si128((__m128i *)utf8_output, _mm256_castsi256_si128(utf8_packed)); utf8_output += row[0]; _mm_storeu_si128((__m128i *)utf8_output, _mm256_extractf128_si256(utf8_packed, 1)); utf8_output += row_2[0]; // 6. adjust pointers buf += 16; continue; } // Must check for overflow in packing const __m256i saturation_bytemask = _mm256_cmpeq_epi32( _mm256_and_si256(_mm256_or_si256(in, nextin), v_ffff0000), v_0000); const uint32_t saturation_bitmask = static_cast(_mm256_movemask_epi8(saturation_bytemask)); if (saturation_bitmask == 0xffffffff) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes const __m256i v_d800 = _mm256_set1_epi16((uint16_t)0xd800); forbidden_bytemask = _mm256_or_si256( forbidden_bytemask, _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_f800), v_d800)); const __m256i dup_even = _mm256_setr_epi16( 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e, 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) _mm256_set1_epi16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const __m256i t0 = _mm256_shuffle_epi8(in_16, dup_even); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const __m256i t1 = _mm256_and_si256(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const __m256i t2 = _mm256_or_si256(t1, simdutf_vec(0b1000000000000000)); // [aaaa|bbbb|bbcc|cccc] => [0000|aaaa|bbbb|bbcc] const __m256i s0 = _mm256_srli_epi16(in_16, 4); // [0000|aaaa|bbbb|bbcc] => [0000|aaaa|bbbb|bb00] const __m256i s1 = _mm256_and_si256(s0, simdutf_vec(0b0000111111111100)); // [0000|aaaa|bbbb|bb00] => [00bb|bbbb|0000|aaaa] const __m256i s2 = _mm256_maddubs_epi16(s1, simdutf_vec(0x0140)); // [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const __m256i s3 = _mm256_or_si256(s2, simdutf_vec(0b1100000011100000)); const __m256i m0 = _mm256_andnot_si256(one_or_two_bytes_bytemask, simdutf_vec(0b0100000000000000)); const __m256i s4 = _mm256_xor_si256(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const __m256i out0 = _mm256_unpacklo_epi16(t2, s4); const __m256i out1 = _mm256_unpackhi_epi16(t2, s4); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint32_t mask = (one_byte_bitmask & 0x55555555) | (one_or_two_bytes_bitmask & 0xaaaaaaaa); // Due to the wider registers, the following path is less likely to be // useful. /*if(mask == 0) { // We only have three-byte code units. Use fast path. const __m256i shuffle = _mm256_setr_epi8(2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1, 2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1); const __m256i utf8_0 = _mm256_shuffle_epi8(out0, shuffle); const __m256i utf8_1 = _mm256_shuffle_epi8(out1, shuffle); _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_0)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_0,1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_1,1)); utf8_output += 12; buf += 16; continue; }*/ const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const __m128i shuffle0 = _mm_loadu_si128((__m128i *)(row0 + 1)); const __m128i utf8_0 = _mm_shuffle_epi8(_mm256_castsi256_si128(out0), shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const __m128i shuffle1 = _mm_loadu_si128((__m128i *)(row1 + 1)); const __m128i utf8_1 = _mm_shuffle_epi8(_mm256_castsi256_si128(out1), shuffle1); const uint8_t mask2 = static_cast(mask >> 16); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask2][0]; const __m128i shuffle2 = _mm_loadu_si128((__m128i *)(row2 + 1)); const __m128i utf8_2 = _mm_shuffle_epi8(_mm256_extractf128_si256(out0, 1), shuffle2); const uint8_t mask3 = static_cast(mask >> 24); const uint8_t *row3 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask3][0]; const __m128i shuffle3 = _mm_loadu_si128((__m128i *)(row3 + 1)); const __m128i utf8_3 = _mm_shuffle_epi8(_mm256_extractf128_si256(out1, 1), shuffle3); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += row0[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += row1[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_2); utf8_output += row2[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_3); utf8_output += row3[0]; buf += 16; } else { // case: at least one 32-bit word is larger than 0xFFFF <=> it will // produce four UTF-8 bytes. Let us do a scalar fallback. It may seem // wasteful to use scalar code, but being efficient with SIMD may require // large, non-trivial tables? size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { // 1-byte (ASCII) *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { // 2-byte *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { // 3-byte if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, utf8_output); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // 4-byte if (word > 0x10FFFF) { return std::make_pair(nullptr, utf8_output); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while // check for invalid input const __m256i v_10ffff = _mm256_set1_epi32((uint32_t)0x10ffff); if (static_cast(_mm256_movemask_epi8(_mm256_cmpeq_epi32( _mm256_max_epu32(running_max, v_10ffff), v_10ffff))) != 0xffffffff) { return std::make_pair(nullptr, utf8_output); } if (static_cast(_mm256_movemask_epi8(forbidden_bytemask)) != 0) { return std::make_pair(nullptr, utf8_output); } return std::make_pair(buf, utf8_output); } // Todo: currently, this is just the haswell code, optimize for icelake kernel. std::pair avx512_convert_utf32_to_utf8_with_errors(const char32_t *buf, size_t len, char *utf8_output) { const char32_t *end = buf + len; const char32_t *start = buf; const __m256i v_0000 = _mm256_setzero_si256(); const __m256i v_ffff0000 = _mm256_set1_epi32((uint32_t)0xffff0000); const __m256i v_ff80 = _mm256_set1_epi16((uint16_t)0xff80); const __m256i v_f800 = _mm256_set1_epi16((uint16_t)0xf800); const __m256i v_c080 = _mm256_set1_epi16((uint16_t)0xc080); const __m256i v_7fffffff = _mm256_set1_epi32((uint32_t)0x7fffffff); const __m256i v_10ffff = _mm256_set1_epi32((uint32_t)0x10ffff); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m256i in = _mm256_loadu_si256((__m256i *)buf); __m256i nextin = _mm256_loadu_si256((__m256i *)buf + 1); // Check for too large input const __m256i max_input = _mm256_max_epu32(_mm256_max_epu32(in, nextin), v_10ffff); if (static_cast(_mm256_movemask_epi8( _mm256_cmpeq_epi32(max_input, v_10ffff))) != 0xffffffff) { return std::make_pair(result(error_code::TOO_LARGE, buf - start), utf8_output); } // Pack 32-bit UTF-32 code units to 16-bit UTF-16 code units with unsigned // saturation __m256i in_16 = _mm256_packus_epi32(_mm256_and_si256(in, v_7fffffff), _mm256_and_si256(nextin, v_7fffffff)); in_16 = _mm256_permute4x64_epi64(in_16, 0b11011000); // Try to apply UTF-16 => UTF-8 routine on 256 bits // (haswell/avx2_convert_utf16_to_utf8.cpp) if (_mm256_testz_si256(in_16, v_ff80)) { // ASCII fast path!!!! // 1. pack the bytes const __m128i utf8_packed = _mm_packus_epi16( _mm256_castsi256_si128(in_16), _mm256_extractf128_si256(in_16, 1)); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } // no bits set above 7th bit const __m256i one_byte_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_ff80), v_0000); const uint32_t one_byte_bitmask = static_cast(_mm256_movemask_epi8(one_byte_bytemask)); // no bits set above 11th bit const __m256i one_or_two_bytes_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_f800), v_0000); const uint32_t one_or_two_bytes_bitmask = static_cast(_mm256_movemask_epi8(one_or_two_bytes_bytemask)); if (one_or_two_bytes_bitmask == 0xffffffff) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const __m256i v_1f00 = _mm256_set1_epi16((int16_t)0x1f00); const __m256i v_003f = _mm256_set1_epi16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const __m256i t0 = _mm256_slli_epi16(in_16, 2); // t1 = [000a|aaaa|0000|0000] const __m256i t1 = _mm256_and_si256(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const __m256i t2 = _mm256_and_si256(in_16, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const __m256i t3 = _mm256_or_si256(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m256i t4 = _mm256_or_si256(t3, v_c080); // 2. merge ASCII and 2-byte codewords const __m256i utf8_unpacked = _mm256_blendv_epi8(t4, in_16, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup const uint32_t M0 = one_byte_bitmask & 0x55555555; const uint32_t M1 = M0 >> 7; const uint32_t M2 = (M1 | M0) & 0x00ff00ff; // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2)][0]; const uint8_t *row_2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2 >> 16)][0]; const __m128i shuffle = _mm_loadu_si128((__m128i *)(row + 1)); const __m128i shuffle_2 = _mm_loadu_si128((__m128i *)(row_2 + 1)); const __m256i utf8_packed = _mm256_shuffle_epi8( utf8_unpacked, _mm256_setr_m128i(shuffle, shuffle_2)); // 5. store bytes _mm_storeu_si128((__m128i *)utf8_output, _mm256_castsi256_si128(utf8_packed)); utf8_output += row[0]; _mm_storeu_si128((__m128i *)utf8_output, _mm256_extractf128_si256(utf8_packed, 1)); utf8_output += row_2[0]; // 6. adjust pointers buf += 16; continue; } // Must check for overflow in packing const __m256i saturation_bytemask = _mm256_cmpeq_epi32( _mm256_and_si256(_mm256_or_si256(in, nextin), v_ffff0000), v_0000); const uint32_t saturation_bitmask = static_cast(_mm256_movemask_epi8(saturation_bytemask)); if (saturation_bitmask == 0xffffffff) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes // Check for illegal surrogate code units const __m256i v_d800 = _mm256_set1_epi16((uint16_t)0xd800); const __m256i forbidden_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_f800), v_d800); if (static_cast(_mm256_movemask_epi8(forbidden_bytemask)) != 0x0) { return std::make_pair(result(error_code::SURROGATE, buf - start), utf8_output); } const __m256i dup_even = _mm256_setr_epi16( 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e, 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) _mm256_set1_epi16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const __m256i t0 = _mm256_shuffle_epi8(in_16, dup_even); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const __m256i t1 = _mm256_and_si256(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const __m256i t2 = _mm256_or_si256(t1, simdutf_vec(0b1000000000000000)); // [aaaa|bbbb|bbcc|cccc] => [0000|aaaa|bbbb|bbcc] const __m256i s0 = _mm256_srli_epi16(in_16, 4); // [0000|aaaa|bbbb|bbcc] => [0000|aaaa|bbbb|bb00] const __m256i s1 = _mm256_and_si256(s0, simdutf_vec(0b0000111111111100)); // [0000|aaaa|bbbb|bb00] => [00bb|bbbb|0000|aaaa] const __m256i s2 = _mm256_maddubs_epi16(s1, simdutf_vec(0x0140)); // [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const __m256i s3 = _mm256_or_si256(s2, simdutf_vec(0b1100000011100000)); const __m256i m0 = _mm256_andnot_si256(one_or_two_bytes_bytemask, simdutf_vec(0b0100000000000000)); const __m256i s4 = _mm256_xor_si256(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const __m256i out0 = _mm256_unpacklo_epi16(t2, s4); const __m256i out1 = _mm256_unpackhi_epi16(t2, s4); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint32_t mask = (one_byte_bitmask & 0x55555555) | (one_or_two_bytes_bitmask & 0xaaaaaaaa); // Due to the wider registers, the following path is less likely to be // useful. /*if(mask == 0) { // We only have three-byte code units. Use fast path. const __m256i shuffle = _mm256_setr_epi8(2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1, 2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1); const __m256i utf8_0 = _mm256_shuffle_epi8(out0, shuffle); const __m256i utf8_1 = _mm256_shuffle_epi8(out1, shuffle); _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_0)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_0,1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_1,1)); utf8_output += 12; buf += 16; continue; }*/ const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const __m128i shuffle0 = _mm_loadu_si128((__m128i *)(row0 + 1)); const __m128i utf8_0 = _mm_shuffle_epi8(_mm256_castsi256_si128(out0), shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const __m128i shuffle1 = _mm_loadu_si128((__m128i *)(row1 + 1)); const __m128i utf8_1 = _mm_shuffle_epi8(_mm256_castsi256_si128(out1), shuffle1); const uint8_t mask2 = static_cast(mask >> 16); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask2][0]; const __m128i shuffle2 = _mm_loadu_si128((__m128i *)(row2 + 1)); const __m128i utf8_2 = _mm_shuffle_epi8(_mm256_extractf128_si256(out0, 1), shuffle2); const uint8_t mask3 = static_cast(mask >> 24); const uint8_t *row3 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask3][0]; const __m128i shuffle3 = _mm_loadu_si128((__m128i *)(row3 + 1)); const __m128i utf8_3 = _mm_shuffle_epi8(_mm256_extractf128_si256(out1, 1), shuffle3); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += row0[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += row1[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_2); utf8_output += row2[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_3); utf8_output += row3[0]; buf += 16; } else { // case: at least one 32-bit word is larger than 0xFFFF <=> it will // produce four UTF-8 bytes. Let us do a scalar fallback. It may seem // wasteful to use scalar code, but being efficient with SIMD may require // large, non-trivial tables? size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { // 1-byte (ASCII) *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { // 2-byte *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { // 3-byte if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k), utf8_output); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // 4-byte if (word > 0x10FFFF) { return std::make_pair( result(error_code::TOO_LARGE, buf - start + k), utf8_output); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), utf8_output); } /* end file src/icelake/icelake_convert_utf32_to_utf8.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/icelake/icelake_convert_utf32_to_utf16.inl.cpp */ // file included directly template std::pair avx512_convert_utf32_to_utf16(const char32_t *buf, size_t len, char16_t *utf16_output) { const char32_t *end = buf + len; __mmask32 forbidden_bytemask = 0; const __m512i v_00000000 = _mm512_setzero_si512(); const __m512i v_ffff0000 = _mm512_set1_epi32((int32_t)0xffff0000); const __m512i v_f800 = _mm512_set1_epi32((uint32_t)0xf800); const __m512i v_d800 = _mm512_set1_epi32((uint32_t)0xd800); const __m512i v_10ffff = _mm512_set1_epi32(0x10FFFF); const __m512i v_10000 = _mm512_set1_epi32(0x10000); const __m512i v_3ff0000 = _mm512_set1_epi32(0x3FF0000); const __m512i v_3ff = _mm512_set1_epi32(0x3FF); const __m512i v_dc00d800 = _mm512_set1_epi32((int32_t)0xDC00D800); while (end - buf >= std::ptrdiff_t(16)) { __m512i in = _mm512_loadu_si512(buf); // no bits set above 16th bit <=> can pack to UTF16 without surrogate pairs const __mmask16 saturation_bitmask = _mm512_cmpeq_epi32_mask(_mm512_and_si512(in, v_ffff0000), v_00000000); if (saturation_bitmask == 0xffff) { forbidden_bytemask |= _mm512_cmpeq_epi32_mask(_mm512_and_si512(in, v_f800), v_d800); __m256i utf16_packed = _mm512_cvtepi32_epi16(in); if (big_endian) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); utf16_packed = _mm256_shuffle_epi8(utf16_packed, swap); } _mm256_storeu_si256((__m256i *)utf16_output, utf16_packed); utf16_output += 16; buf += 16; } else { // saturation_bitmask == 1 words will generate 1 utf16 char, // and saturation_bitmask == 0 words will generate 2 utf16 chars assuming // no errors. Thus we need a output_mask which has the structure b_2i = 1, // b_2i+1 = !saturation_bitmask_i const __mmask32 output_mask = ~_pdep_u32(saturation_bitmask, 0xAAAAAAAA); const __mmask16 surrogate_bitmask = __mmask16(~saturation_bitmask); __mmask32 error = _mm512_mask_cmpeq_epi32_mask( saturation_bitmask, _mm512_and_si512(in, v_f800), v_d800); error |= _mm512_mask_cmpgt_epu32_mask(surrogate_bitmask, in, v_10ffff); if (simdutf_unlikely(error)) { return std::make_pair(nullptr, utf16_output); } __m512i v1, v2, v; // for the bits saturation_bitmask == 0, we need to unpack the 32-bit word // into two 16 bit words corresponding to high_surrogate and // low_surrogate. Once the bits are unpacked and merged, the output will // be compressed as per output_mask. in = _mm512_mask_sub_epi32(in, surrogate_bitmask, in, v_10000); v1 = _mm512_mask_slli_epi32(in, surrogate_bitmask, in, 16); v1 = _mm512_mask_and_epi32(in, surrogate_bitmask, v1, v_3ff0000); v2 = _mm512_mask_srli_epi32(in, surrogate_bitmask, in, 10); v2 = _mm512_mask_and_epi32(in, surrogate_bitmask, v2, v_3ff); v = _mm512_or_si512(v1, v2); in = _mm512_mask_add_epi32(in, surrogate_bitmask, v, v_dc00d800); if (big_endian) { const __m512i swap_512 = _mm512_set_epi8( 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1); in = _mm512_shuffle_epi8(in, swap_512); } // we deliberately avoid _mm512_mask_compressstoreu_epi16 for portability // (AMD Zen4 has terrible performance with it, it is effectively broken) __m512i compressed = _mm512_maskz_compress_epi16(output_mask, in); auto written_out = _mm_popcnt_u32(output_mask); _mm512_mask_storeu_epi16(utf16_output, _bzhi_u32(0xFFFFFFFF, written_out), compressed); //_mm512_mask_compressstoreu_epi16(utf16_output, output_mask, in); utf16_output += written_out; buf += 16; } } size_t remaining_len = size_t(end - buf); if (remaining_len) { __mmask16 input_mask = __mmask16((1 << remaining_len) - 1); __m512i in = _mm512_maskz_loadu_epi32(input_mask, buf); const __mmask16 saturation_bitmask = _mm512_cmpeq_epi32_mask(_mm512_and_si512(in, v_ffff0000), v_00000000) & input_mask; if (saturation_bitmask == input_mask) { forbidden_bytemask |= _mm512_cmpeq_epi32_mask(_mm512_and_si512(in, v_f800), v_d800); __m256i utf16_packed = _mm512_cvtepi32_epi16(in); if (big_endian) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); utf16_packed = _mm256_shuffle_epi8(utf16_packed, swap); } _mm256_mask_storeu_epi16(utf16_output, input_mask, utf16_packed); utf16_output += remaining_len; buf += remaining_len; } else { const __mmask32 output_max_mask = (1 << (remaining_len * 2)) - 1; const __mmask32 output_mask = (~_pdep_u32(saturation_bitmask, 0xAAAAAAAA)) & output_max_mask; const __mmask16 surrogate_bitmask = __mmask16(~saturation_bitmask) & input_mask; __mmask32 error = _mm512_mask_cmpeq_epi32_mask( saturation_bitmask, _mm512_and_si512(in, v_f800), v_d800); error |= _mm512_mask_cmpgt_epu32_mask(surrogate_bitmask, in, v_10ffff); if (simdutf_unlikely(error)) { return std::make_pair(nullptr, utf16_output); } __m512i v1, v2, v; in = _mm512_mask_sub_epi32(in, surrogate_bitmask, in, v_10000); v1 = _mm512_mask_slli_epi32(in, surrogate_bitmask, in, 16); v1 = _mm512_mask_and_epi32(in, surrogate_bitmask, v1, v_3ff0000); v2 = _mm512_mask_srli_epi32(in, surrogate_bitmask, in, 10); v2 = _mm512_mask_and_epi32(in, surrogate_bitmask, v2, v_3ff); v = _mm512_or_si512(v1, v2); in = _mm512_mask_add_epi32(in, surrogate_bitmask, v, v_dc00d800); if (big_endian) { const __m512i swap_512 = _mm512_set_epi8( 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1); in = _mm512_shuffle_epi8(in, swap_512); } // we deliberately avoid _mm512_mask_compressstoreu_epi16 for portability // (AMD Zen4 has terrible performance with it, it is effectively broken) __m512i compressed = _mm512_maskz_compress_epi16(output_mask, in); auto written_out = _mm_popcnt_u32(output_mask); _mm512_mask_storeu_epi16(utf16_output, _bzhi_u32(0xFFFFFFFF, written_out), compressed); //_mm512_mask_compressstoreu_epi16(utf16_output, output_mask, in); utf16_output += written_out; buf += remaining_len; } } // check for invalid input if (forbidden_bytemask != 0) { return std::make_pair(nullptr, utf16_output); } return std::make_pair(buf, utf16_output); } template std::pair avx512_convert_utf32_to_utf16_with_errors(const char32_t *buf, size_t len, char16_t *utf16_output) { const char32_t *start = buf; const char32_t *end = buf + len; const __m512i v_00000000 = _mm512_setzero_si512(); const __m512i v_ffff0000 = _mm512_set1_epi32((int32_t)0xffff0000); const __m512i v_f800 = _mm512_set1_epi32((uint32_t)0xf800); const __m512i v_d800 = _mm512_set1_epi32((uint32_t)0xd800); const __m512i v_10ffff = _mm512_set1_epi32(0x10FFFF); const __m512i v_10000 = _mm512_set1_epi32(0x10000); const __m512i v_3ff0000 = _mm512_set1_epi32(0x3FF0000); const __m512i v_3ff = _mm512_set1_epi32(0x3FF); const __m512i v_dc00d800 = _mm512_set1_epi32((int32_t)0xDC00D800); int error_idx = 0; error_code code = error_code::SUCCESS; bool err = false; while (end - buf >= std::ptrdiff_t(16)) { __m512i in = _mm512_loadu_si512(buf); // no bits set above 16th bit <=> can pack to UTF16 without surrogate pairs const __mmask16 saturation_bitmask = _mm512_cmpeq_epi32_mask(_mm512_and_si512(in, v_ffff0000), v_00000000); if (saturation_bitmask == 0xffff) { __mmask32 forbidden_bytemask = _mm512_cmpeq_epi32_mask(_mm512_and_si512(in, v_f800), v_d800); __m256i utf16_packed = _mm512_cvtepi32_epi16(in); if (big_endian) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); utf16_packed = _mm256_shuffle_epi8(utf16_packed, swap); } if (simdutf_unlikely(forbidden_bytemask)) { int idx = _tzcnt_u32(forbidden_bytemask); _mm256_mask_storeu_epi16( utf16_output, __mmask16(_blsmsk_u32(forbidden_bytemask) >> 1), utf16_packed); return std::make_pair(result(error_code::SURROGATE, buf - start + idx), utf16_output + idx); } _mm256_storeu_si256((__m256i *)utf16_output, utf16_packed); utf16_output += 16; } else { __mmask32 output_mask = ~_pdep_u32(saturation_bitmask, 0xAAAAAAAA); const __mmask16 surrogate_bitmask = __mmask16(~saturation_bitmask); __mmask32 error_surrogate = _mm512_mask_cmpeq_epi32_mask( saturation_bitmask, _mm512_and_si512(in, v_f800), v_d800); __mmask32 error_too_large = _mm512_mask_cmpgt_epu32_mask(surrogate_bitmask, in, v_10ffff); if (simdutf_unlikely(error_surrogate || error_too_large)) { // Need to find the lowest set bit between the two error masks // Need to also write the partial chunk until the error index to output. int large_idx = _tzcnt_u32(error_too_large); int surrogate_idx = _tzcnt_u32(error_surrogate); err = true; if (large_idx < surrogate_idx) { code = error_code::TOO_LARGE; error_idx = large_idx; } else { code = error_code::SURROGATE; error_idx = surrogate_idx; } output_mask &= ((1 << (2 * error_idx)) - 1); } __m512i v1, v2, v; in = _mm512_mask_sub_epi32(in, surrogate_bitmask, in, v_10000); v1 = _mm512_mask_slli_epi32(in, surrogate_bitmask, in, 16); v1 = _mm512_mask_and_epi32(in, surrogate_bitmask, v1, v_3ff0000); v2 = _mm512_mask_srli_epi32(in, surrogate_bitmask, in, 10); v2 = _mm512_mask_and_epi32(in, surrogate_bitmask, v2, v_3ff); v = _mm512_or_si512(v1, v2); in = _mm512_mask_add_epi32(in, surrogate_bitmask, v, v_dc00d800); if (big_endian) { const __m512i swap_512 = _mm512_set_epi8( 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1); in = _mm512_shuffle_epi8(in, swap_512); } // we deliberately avoid _mm512_mask_compressstoreu_epi16 for portability // (AMD Zen4 has terrible performance with it, it is effectively broken) __m512i compressed = _mm512_maskz_compress_epi16(output_mask, in); auto written_out = _mm_popcnt_u32(output_mask); _mm512_mask_storeu_epi16(utf16_output, _bzhi_u32(0xFFFFFFFF, written_out), compressed); //_mm512_mask_compressstoreu_epi16(utf16_output, output_mask, in); utf16_output += written_out; if (simdutf_unlikely(err)) { return std::make_pair(result(code, buf - start + error_idx), utf16_output); } } buf += 16; } size_t remaining_len = size_t(end - buf); if (remaining_len) { __mmask16 input_mask = __mmask16((1 << remaining_len) - 1); __m512i in = _mm512_maskz_loadu_epi32(input_mask, buf); const __mmask16 saturation_bitmask = _mm512_cmpeq_epi32_mask(_mm512_and_si512(in, v_ffff0000), v_00000000) & input_mask; if (saturation_bitmask == input_mask) { __mmask32 forbidden_bytemask = _mm512_cmpeq_epi32_mask(_mm512_and_si512(in, v_f800), v_d800); __m256i utf16_packed = _mm512_cvtepi32_epi16(in); if (big_endian) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); utf16_packed = _mm256_shuffle_epi8(utf16_packed, swap); } if (simdutf_unlikely(forbidden_bytemask)) { int idx = _tzcnt_u32(forbidden_bytemask); _mm256_mask_storeu_epi16( utf16_output, __mmask16(_blsmsk_u32(forbidden_bytemask) >> 1), utf16_packed); return std::make_pair(result(error_code::SURROGATE, buf - start + idx), utf16_output + idx); } _mm256_mask_storeu_epi16(utf16_output, input_mask, utf16_packed); utf16_output += remaining_len; } else { const __mmask32 output_max_mask = (1 << (remaining_len * 2)) - 1; __mmask32 output_mask = (~_pdep_u32(saturation_bitmask, 0xAAAAAAAA)) & output_max_mask; const __mmask16 surrogate_bitmask = __mmask16(~saturation_bitmask) & input_mask; __mmask32 error_surrogate = _mm512_mask_cmpeq_epi32_mask( saturation_bitmask, _mm512_and_si512(in, v_f800), v_d800); __mmask32 error_too_large = _mm512_mask_cmpgt_epu32_mask(surrogate_bitmask, in, v_10ffff); if (simdutf_unlikely(error_surrogate || error_too_large)) { int large_idx = _tzcnt_u32(error_too_large); int surrogate_idx = _tzcnt_u32(error_surrogate); err = true; if (large_idx < surrogate_idx) { code = error_code::TOO_LARGE; error_idx = large_idx; } else { code = error_code::SURROGATE; error_idx = surrogate_idx; } output_mask &= ((1 << (2 * error_idx)) - 1); } __m512i v1, v2, v; in = _mm512_mask_sub_epi32(in, surrogate_bitmask, in, v_10000); v1 = _mm512_mask_slli_epi32(in, surrogate_bitmask, in, 16); v1 = _mm512_mask_and_epi32(in, surrogate_bitmask, v1, v_3ff0000); v2 = _mm512_mask_srli_epi32(in, surrogate_bitmask, in, 10); v2 = _mm512_mask_and_epi32(in, surrogate_bitmask, v2, v_3ff); v = _mm512_or_si512(v1, v2); in = _mm512_mask_add_epi32(in, surrogate_bitmask, v, v_dc00d800); if (big_endian) { const __m512i swap_512 = _mm512_set_epi8( 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1, 14, 15, 12, 13, 10, 11, 8, 9, 6, 7, 4, 5, 2, 3, 0, 1); in = _mm512_shuffle_epi8(in, swap_512); } // we deliberately avoid _mm512_mask_compressstoreu_epi16 for portability // (AMD Zen4 has terrible performance with it, it is effectively broken) __m512i compressed = _mm512_maskz_compress_epi16(output_mask, in); auto written_out = _mm_popcnt_u32(output_mask); _mm512_mask_storeu_epi16(utf16_output, _bzhi_u32(0xFFFFFFFF, written_out), compressed); //_mm512_mask_compressstoreu_epi16(utf16_output, output_mask, in); utf16_output += written_out; if (simdutf_unlikely(err)) { return std::make_pair(result(code, buf - start + error_idx), utf16_output); } } buf += remaining_len; } return std::make_pair(result(error_code::SUCCESS, buf - start), utf16_output); } /* end file src/icelake/icelake_convert_utf32_to_utf16.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_ASCII /* begin file src/icelake/icelake_ascii_validation.inl.cpp */ // file included directly bool validate_ascii(const char *buf, size_t len) { const char *end = buf + len; const __m512i ascii = _mm512_set1_epi8((uint8_t)0x80); __m512i running_or = _mm512_setzero_si512(); for (; end - buf >= 64; buf += 64) { const __m512i utf8 = _mm512_loadu_si512((const __m512i *)buf); running_or = _mm512_ternarylogic_epi32(running_or, utf8, ascii, 0xf8); // running_or | (utf8 & ascii) } if (buf < end) { const __m512i utf8 = _mm512_maskz_loadu_epi8( (uint64_t(1) << (end - buf)) - 1, (const __m512i *)buf); running_or = _mm512_ternarylogic_epi32(running_or, utf8, ascii, 0xf8); // running_or | (utf8 & ascii) } return (_mm512_test_epi8_mask(running_or, running_or) == 0); } /* end file src/icelake/icelake_ascii_validation.inl.cpp */ #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/icelake/icelake_utf32_validation.inl.cpp */ // file included directly bool validate_utf32(const char32_t *buf, size_t len) { if (simdutf_unlikely(len == 0)) { return true; } const char32_t *end = buf + len; const __m512i offset = _mm512_set1_epi32((uint32_t)0xffff2000); __m512i currentmax = _mm512_setzero_si512(); __m512i currentoffsetmax = _mm512_setzero_si512(); while (buf < end - 16) { __m512i utf32 = _mm512_loadu_si512((const __m512i *)buf); buf += 16; currentoffsetmax = _mm512_max_epu32(_mm512_add_epi32(utf32, offset), currentoffsetmax); currentmax = _mm512_max_epu32(utf32, currentmax); } __m512i utf32 = _mm512_maskz_loadu_epi32(__mmask16((1 << (end - buf)) - 1), buf); currentoffsetmax = _mm512_max_epu32(_mm512_add_epi32(utf32, offset), currentoffsetmax); currentmax = _mm512_max_epu32(utf32, currentmax); const __m512i standardmax = _mm512_set1_epi32((uint32_t)0x10ffff); const __m512i standardoffsetmax = _mm512_set1_epi32((uint32_t)0xfffff7ff); const auto outside_range = _mm512_cmpgt_epu32_mask(currentmax, standardmax); if (outside_range != 0) { return false; } const auto surrogate = _mm512_cmpgt_epu32_mask(currentoffsetmax, standardoffsetmax); if (surrogate != 0) { return false; } return true; } /* end file src/icelake/icelake_utf32_validation.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 /* begin file src/icelake/icelake_convert_latin1_to_utf8.inl.cpp */ // file included directly static inline size_t latin1_to_utf8_avx512_vec(__m512i input, size_t input_len, char *utf8_output, int mask_output) { __mmask64 nonascii = _mm512_movepi8_mask(input); size_t output_size = input_len + (size_t)count_ones(nonascii); // Mask to denote whether the byte is a leading byte that is not ascii __mmask64 sixth = _mm512_cmpge_epu8_mask( input, _mm512_set1_epi8(-64)); // binary representation of -64: 1100 0000 const uint64_t alternate_bits = UINT64_C(0x5555555555555555); uint64_t ascii = ~nonascii; // the bits in ascii are inverted and zeros are interspersed in between them uint64_t maskA = ~_pdep_u64(ascii, alternate_bits); uint64_t maskB = ~_pdep_u64(ascii >> 32, alternate_bits); // interleave bytes from top and bottom halves (abcd...ABCD -> aAbBcCdD) __m512i input_interleaved = _mm512_permutexvar_epi8( _mm512_set_epi32(0x3f1f3e1e, 0x3d1d3c1c, 0x3b1b3a1a, 0x39193818, 0x37173616, 0x35153414, 0x33133212, 0x31113010, 0x2f0f2e0e, 0x2d0d2c0c, 0x2b0b2a0a, 0x29092808, 0x27072606, 0x25052404, 0x23032202, 0x21012000), input); // double size of each byte, and insert the leading byte 1100 0010 /* upscale the bytes to 16-bit value, adding the 0b11000000 leading byte in the process. We adjust for the bytes that have their two most significant bits. This takes care of the first 32 bytes, assuming we interleaved the bytes. */ __m512i outputA = _mm512_shldi_epi16(input_interleaved, _mm512_set1_epi8(-62), 8); outputA = _mm512_mask_add_epi16( outputA, (__mmask32)sixth, outputA, _mm512_set1_epi16(1 - 0x4000)); // 1- 0x4000 = 1100 0000 0000 0001???? // in the second 32-bit half, set first or second option based on whether // original input is leading byte (second case) or not (first case) __m512i leadingB = _mm512_mask_blend_epi16((__mmask32)(sixth >> 32), _mm512_set1_epi16(0x00c2), // 0000 0000 1101 0010 _mm512_set1_epi16(0x40c3)); // 0100 0000 1100 0011 __m512i outputB = _mm512_ternarylogic_epi32( input_interleaved, leadingB, _mm512_set1_epi16((short)0xff00), (240 & 170) ^ 204); // (input_interleaved & 0xff00) ^ leadingB // prune redundant bytes outputA = _mm512_maskz_compress_epi8(maskA, outputA); outputB = _mm512_maskz_compress_epi8(maskB, outputB); size_t output_sizeA = (size_t)count_ones((uint32_t)nonascii) + 32; if (mask_output) { if (input_len > 32) { // is the second half of the input vector used? __mmask64 write_mask = _bzhi_u64(~0ULL, (unsigned int)output_sizeA); _mm512_mask_storeu_epi8(utf8_output, write_mask, outputA); utf8_output += output_sizeA; write_mask = _bzhi_u64(~0ULL, (unsigned int)(output_size - output_sizeA)); _mm512_mask_storeu_epi8(utf8_output, write_mask, outputB); } else { __mmask64 write_mask = _bzhi_u64(~0ULL, (unsigned int)output_size); _mm512_mask_storeu_epi8(utf8_output, write_mask, outputA); } } else { _mm512_storeu_si512(utf8_output, outputA); utf8_output += output_sizeA; _mm512_storeu_si512(utf8_output, outputB); } return output_size; } static inline size_t latin1_to_utf8_avx512_branch(__m512i input, char *utf8_output) { __mmask64 nonascii = _mm512_movepi8_mask(input); if (nonascii) { return latin1_to_utf8_avx512_vec(input, 64, utf8_output, 0); } else { _mm512_storeu_si512(utf8_output, input); return 64; } } size_t latin1_to_utf8_avx512_start(const char *buf, size_t len, char *utf8_output) { char *start = utf8_output; size_t pos = 0; // if there's at least 128 bytes remaining, we don't need to mask the output for (; pos + 128 <= len; pos += 64) { __m512i input = _mm512_loadu_si512((__m512i *)(buf + pos)); utf8_output += latin1_to_utf8_avx512_branch(input, utf8_output); } // in the last 128 bytes, the first 64 may require masking the output if (pos + 64 <= len) { __m512i input = _mm512_loadu_si512((__m512i *)(buf + pos)); utf8_output += latin1_to_utf8_avx512_vec(input, 64, utf8_output, 1); pos += 64; } // with the last 64 bytes, the input also needs to be masked if (pos < len) { __mmask64 load_mask = _bzhi_u64(~0ULL, (unsigned int)(len - pos)); __m512i input = _mm512_maskz_loadu_epi8(load_mask, (__m512i *)(buf + pos)); utf8_output += latin1_to_utf8_avx512_vec(input, len - pos, utf8_output, 1); } return (size_t)(utf8_output - start); } /* end file src/icelake/icelake_convert_latin1_to_utf8.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 /* begin file src/icelake/icelake_convert_latin1_to_utf16.inl.cpp */ // file included directly template size_t icelake_convert_latin1_to_utf16(const char *latin1_input, size_t len, char16_t *utf16_output) { size_t rounded_len = len & ~0x1F; // Round down to nearest multiple of 32 __m512i byteflip = _mm512_setr_epi64(0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); for (size_t i = 0; i < rounded_len; i += 32) { // Load 32 Latin1 characters into a 256-bit register __m256i in = _mm256_loadu_si256((__m256i *)&latin1_input[i]); // Zero extend each set of 8 Latin1 characters to 32 16-bit integers __m512i out = _mm512_cvtepu8_epi16(in); if (big_endian) { out = _mm512_shuffle_epi8(out, byteflip); } // Store the results back to memory _mm512_storeu_si512((__m512i *)&utf16_output[i], out); } if (rounded_len != len) { uint32_t mask = uint32_t(1 << (len - rounded_len)) - 1; __m256i in = _mm256_maskz_loadu_epi8(mask, latin1_input + rounded_len); // Zero extend each set of 8 Latin1 characters to 32 16-bit integers __m512i out = _mm512_cvtepu8_epi16(in); if (big_endian) { out = _mm512_shuffle_epi8(out, byteflip); } // Store the results back to memory _mm512_mask_storeu_epi16(utf16_output + rounded_len, mask, out); } return len; } /* end file src/icelake/icelake_convert_latin1_to_utf16.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 /* begin file src/icelake/icelake_convert_latin1_to_utf32.inl.cpp */ void avx512_convert_latin1_to_utf32(const char *buf, size_t len, char32_t *utf32_output) { while (len >= 16) { // Load 16 Latin1 characters into a 128-bit register __m128i in = _mm_loadu_si128((__m128i *)buf); // Zero extend each set of 8 Latin1 characters to 16 32-bit integers using // vpmovzxbd __m512i out = _mm512_cvtepu8_epi32(in); // Store the results back to memory _mm512_storeu_si512((__m512i *)utf32_output, out); len -= 16; buf += 16; utf32_output += 16; } __mmask16 mask = __mmask16((1 << len) - 1); __m128i in = _mm_maskz_loadu_epi8(mask, buf); __m512i out = _mm512_cvtepu8_epi32(in); _mm512_mask_storeu_epi32((__m512i *)utf32_output, mask, out); } /* end file src/icelake/icelake_convert_latin1_to_utf32.inl.cpp */ #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 /* begin file src/icelake/icelake_base64.inl.cpp */ // file included directly /** * References and further reading: * * Wojciech Muła, Daniel Lemire, Base64 encoding and decoding at almost the * speed of a memory copy, Software: Practice and Experience 50 (2), 2020. * https://arxiv.org/abs/1910.05109 * * Wojciech Muła, Daniel Lemire, Faster Base64 Encoding and Decoding using AVX2 * Instructions, ACM Transactions on the Web 12 (3), 2018. * https://arxiv.org/abs/1704.00605 * * Simon Josefsson. 2006. The Base16, Base32, and Base64 Data Encodings. * https://tools.ietf.org/html/rfc4648. (2006). Internet Engineering Task Force, * Request for Comments: 4648. * * Alfred Klomp. 2014a. Fast Base64 encoding/decoding with SSE vectorization. * http://www.alfredklomp.com/programming/sse-base64/. (2014). * * Alfred Klomp. 2014b. Fast Base64 stream encoder/decoder in C99, with SIMD * acceleration. https://github.com/aklomp/base64. (2014). * * Hanson Char. 2014. A Fast and Correct Base 64 Codec. (2014). * https://aws.amazon.com/blogs/developer/a-fast-and-correct-base-64-codec/ * * Nick Kopp. 2013. Base64 Encoding on a GPU. * https://www.codeproject.com/Articles/276993/Base-Encoding-on-a-GPU. (2013). */ struct block64 { __m512i chunks[1]; }; template size_t encode_base64_impl(char *dst, const char *src, size_t srclen, base64_options options, size_t line_length = simdutf::default_line_length) { size_t offset = 0; if (line_length < 4) { line_length = 4; // We do not support line_length less than 4 } // credit: Wojciech Muła const uint8_t *input = (const uint8_t *)src; uint8_t *out = (uint8_t *)dst; static const char *lookup_tbl = base64_url ? "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_" : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; const __m512i shuffle_input = _mm512_setr_epi32( 0x01020001, 0x04050304, 0x07080607, 0x0a0b090a, 0x0d0e0c0d, 0x10110f10, 0x13141213, 0x16171516, 0x191a1819, 0x1c1d1b1c, 0x1f201e1f, 0x22232122, 0x25262425, 0x28292728, 0x2b2c2a2b, 0x2e2f2d2e); const __m512i lookup = _mm512_loadu_si512(reinterpret_cast(lookup_tbl)); const __m512i multi_shifts = _mm512_set1_epi64(UINT64_C(0x3036242a1016040a)); size_t size = srclen; __mmask64 input_mask = 0xffffffffffff; // (1 << 48) - 1 // We want that input == end_input means that we must stop. const uint8_t *end_input = input + (size - (size % 48)); while (input != end_input) { const __m512i v = _mm512_maskz_loadu_epi8( input_mask, reinterpret_cast(input)); const __m512i in = _mm512_permutexvar_epi8(shuffle_input, v); const __m512i indices = _mm512_multishift_epi64_epi8(multi_shifts, in); const __m512i result = _mm512_permutexvar_epi8(indices, lookup); if (use_lines) { if (offset + 64 > line_length) { if (line_length >= 64) { __m512i expanded = _mm512_mask_expand_epi8( _mm512_set1_epi8('\n'), ~(1ULL << ((line_length - offset))), result); _mm512_storeu_si512(reinterpret_cast<__m512i *>(out), expanded); __m128i last_lane = _mm512_extracti32x4_epi32(result, 3); // Lane 3 (bytes 48-63) uint8_t last_byte = static_cast(_mm_extract_epi8(last_lane, 15)); out[64] = last_byte; out += 65; offset = 64 - (line_length - offset); } else { // slow path alignas(64) uint8_t local_buffer[64]; _mm512_storeu_si512(reinterpret_cast<__m512i *>(local_buffer), result); size_t out_pos = 0; size_t local_offset = offset; for (size_t j = 0; j < 64;) { if (local_offset == line_length) { out[out_pos++] = '\n'; local_offset = 0; } out[out_pos++] = local_buffer[j++]; local_offset++; } offset = local_offset; out += out_pos; } } else { _mm512_storeu_si512(reinterpret_cast<__m512i *>(out), result); offset += 64; out += 64; } } else { _mm512_storeu_si512(reinterpret_cast<__m512i *>(out), result); out += 64; } input += 48; } size = size % 48; input_mask = ((__mmask64)1 << size) - 1; const __m512i v = _mm512_maskz_loadu_epi8( input_mask, reinterpret_cast(input)); const __m512i in = _mm512_permutexvar_epi8(shuffle_input, v); const __m512i indices = _mm512_multishift_epi64_epi8(multi_shifts, in); bool padding_needed = (((options & base64_url) == 0) ^ ((options & base64_reverse_padding) == base64_reverse_padding)); size_t padding_amount = ((size % 3) > 0) ? (3 - (size % 3)) : 0; size_t output_len = ((size + 2) / 3) * 4; size_t non_padded_output_len = output_len - padding_amount; if (!padding_needed) { output_len = non_padded_output_len; } // If no output, we are done. if (output_len == 0) { return (size_t)(out - (uint8_t *)dst); } __mmask64 output_mask = 0xFFFFFFFFFFFFFFFF >> (64 - output_len); __m512i result = _mm512_mask_permutexvar_epi8( _mm512_set1_epi8('='), ((__mmask64)1 << non_padded_output_len) - 1, indices, lookup); if (use_lines) { if (offset + output_len > line_length) { if (line_length >= 64) { __m512i expanded = _mm512_mask_expand_epi8( _mm512_set1_epi8('\n'), ~(1ULL << ((line_length - offset))), result); if (output_len == 64) { _mm512_storeu_si512(reinterpret_cast<__m512i *>(out), expanded); out += 64; _mm512_mask_storeu_epi8(reinterpret_cast<__m512i *>(out - 63), 1ULL << 63, result); out++; } else { output_mask = 0xFFFFFFFFFFFFFFFF >> (64 - output_len - 1); _mm512_mask_storeu_epi8(reinterpret_cast<__m512i *>(out), output_mask, expanded); out += output_len + 1; } } else { alignas(64) uint8_t local_buffer[64]; _mm512_storeu_si512(reinterpret_cast<__m512i *>(local_buffer), result); size_t out_pos = 0; size_t local_offset = offset; for (size_t j = 0; j < output_len;) { if (local_offset == line_length) { out[out_pos++] = '\n'; local_offset = 0; } out[out_pos++] = local_buffer[j++]; local_offset++; } offset = local_offset; out += out_pos; } } else { _mm512_mask_storeu_epi8(reinterpret_cast<__m512i *>(out), output_mask, result); out += output_len; } } else { _mm512_mask_storeu_epi8(reinterpret_cast<__m512i *>(out), output_mask, result); out += output_len; } return (size_t)(out - (uint8_t *)dst); } template size_t encode_base64(char *dst, const char *src, size_t srclen, base64_options options) { return encode_base64_impl(dst, src, srclen, options); } template static inline uint64_t to_base64_mask(block64 *b, uint64_t *error, uint64_t input_mask = UINT64_MAX) { __m512i input = b->chunks[0]; const __m512i ascii_space_tbl = _mm512_set_epi8( 0, 0, 13, 12, 0, 10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 13, 12, 0, 10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 13, 12, 0, 10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 13, 12, 0, 10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 32); __m512i lookup0; if (default_or_url) { lookup0 = _mm512_set_epi8( -128, -128, -128, -128, -128, -128, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 63, -128, 62, -128, 62, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -1, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -1, -128, -128, -1, -1, -128, -128, -128, -128, -128, -128, -128, -128, -1); } else if (base64_url) { lookup0 = _mm512_set_epi8( -128, -128, -128, -128, -128, -128, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, -128, -128, 62, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -1, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -1, -128, -128, -1, -1, -128, -128, -128, -128, -128, -128, -128, -128, -1); } else { lookup0 = _mm512_set_epi8( -128, -128, -128, -128, -128, -128, 61, 60, 59, 58, 57, 56, 55, 54, 53, 52, 63, -128, -128, -128, 62, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -1, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -1, -128, -128, -1, -1, -128, -128, -128, -128, -128, -128, -128, -128, -128); } __m512i lookup1; if (default_or_url) { lookup1 = _mm512_set_epi8( -128, -128, -128, -128, -128, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, -128, 63, -128, -128, -128, -128, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, -128); } else if (base64_url) { lookup1 = _mm512_set_epi8( -128, -128, -128, -128, -128, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, -128, 63, -128, -128, -128, -128, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, -128); } else { lookup1 = _mm512_set_epi8( -128, -128, -128, -128, -128, 51, 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, -128, -128, -128, -128, -128, -128, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, -128); } const __m512i translated = _mm512_permutex2var_epi8(lookup0, input, lookup1); const __m512i combined = _mm512_or_si512(translated, input); const __mmask64 mask = _mm512_movepi8_mask(combined) & input_mask; if (!ignore_garbage && mask) { const __mmask64 spaces = _mm512_cmpeq_epi8_mask(_mm512_shuffle_epi8(ascii_space_tbl, input), input) & input_mask; *error = (mask ^ spaces); } b->chunks[0] = translated; return mask | (~input_mask); } static inline void copy_block(block64 *b, char *output) { _mm512_storeu_si512(reinterpret_cast<__m512i *>(output), b->chunks[0]); } static inline uint64_t compress_block(block64 *b, uint64_t mask, char *output) { uint64_t nmask = ~mask; __m512i c = _mm512_maskz_compress_epi8(nmask, b->chunks[0]); _mm512_storeu_si512(reinterpret_cast<__m512i *>(output), c); return _mm_popcnt_u64(nmask); } // The caller of this function is responsible to ensure that there are 64 bytes // available from reading at src. The data is read into a block64 structure. static inline void load_block(block64 *b, const char *src) { b->chunks[0] = _mm512_loadu_si512(reinterpret_cast(src)); } static inline void load_block_partial(block64 *b, const char *src, __mmask64 input_mask) { b->chunks[0] = _mm512_maskz_loadu_epi8( input_mask, reinterpret_cast(src)); } // The caller of this function is responsible to ensure that there are 128 bytes // available from reading at src. The data is read into a block64 structure. static inline void load_block(block64 *b, const char16_t *src) { __m512i m1 = _mm512_loadu_si512(reinterpret_cast(src)); __m512i m2 = _mm512_loadu_si512(reinterpret_cast(src + 32)); __m512i p = _mm512_packus_epi16(m1, m2); b->chunks[0] = _mm512_permutexvar_epi64(_mm512_setr_epi64(0, 2, 4, 6, 1, 3, 5, 7), p); } static inline void load_block_partial(block64 *b, const char16_t *src, __mmask64 input_mask) { __m512i m1 = _mm512_maskz_loadu_epi16((__mmask32)input_mask, reinterpret_cast(src)); __m512i m2 = _mm512_maskz_loadu_epi16((__mmask32)(input_mask >> 32), reinterpret_cast(src + 32)); __m512i p = _mm512_packus_epi16(m1, m2); b->chunks[0] = _mm512_permutexvar_epi64(_mm512_setr_epi64(0, 2, 4, 6, 1, 3, 5, 7), p); } static inline void base64_decode(char *out, __m512i str) { const __m512i merge_ab_and_bc = _mm512_maddubs_epi16(str, _mm512_set1_epi32(0x01400140)); const __m512i merged = _mm512_madd_epi16(merge_ab_and_bc, _mm512_set1_epi32(0x00011000)); const __m512i pack = _mm512_set_epi8( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 61, 62, 56, 57, 58, 52, 53, 54, 48, 49, 50, 44, 45, 46, 40, 41, 42, 36, 37, 38, 32, 33, 34, 28, 29, 30, 24, 25, 26, 20, 21, 22, 16, 17, 18, 12, 13, 14, 8, 9, 10, 4, 5, 6, 0, 1, 2); const __m512i shuffled = _mm512_permutexvar_epi8(pack, merged); _mm512_mask_storeu_epi8( (__m512i *)out, 0xffffffffffff, shuffled); // mask would be 0xffffffffffff since we write 48 bytes. } // decode 64 bytes and output 48 bytes static inline void base64_decode_block(char *out, const char *src) { base64_decode(out, _mm512_loadu_si512(reinterpret_cast(src))); } static inline void base64_decode_block(char *out, block64 *b) { base64_decode(out, b->chunks[0]); } template full_result compress_decode_base64(char *dst, const chartype *src, size_t srclen, base64_options options, last_chunk_handling_options last_chunk_options) { (void)options; const uint8_t *to_base64 = default_or_url ? tables::base64::to_base64_default_or_url_value : (base64_url ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); auto ri = simdutf::scalar::base64::find_end(src, srclen, options); size_t equallocation = ri.equallocation; size_t padding_characters = ri.equalsigns; srclen = ri.srclen; size_t full_input_length = ri.full_input_length; if (srclen == 0) { if (!ignore_garbage && padding_characters > 0) { return {INVALID_BASE64_CHARACTER, equallocation, 0}; } return {SUCCESS, full_input_length, 0}; } const chartype *const srcinit = src; const char *const dstinit = dst; const chartype *const srcend = src + srclen; // figure out why block_size == 2 is sometimes best??? constexpr size_t block_size = 6; char buffer[block_size * 64]; char *bufferptr = buffer; if (srclen >= 64) { const chartype *const srcend64 = src + srclen - 64; while (src <= srcend64) { block64 b; load_block(&b, src); src += 64; uint64_t error = 0; uint64_t badcharmask = to_base64_mask(&b, &error); if (!ignore_garbage && error) { src -= 64; size_t error_offset = _tzcnt_u64(error); return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit + error_offset), size_t(dst - dstinit)}; } if (badcharmask != 0) { // optimization opportunity: check for simple masks like those made of // continuous 1s followed by continuous 0s. And masks containing a // single bad character. bufferptr += compress_block(&b, badcharmask, bufferptr); } else if (bufferptr != buffer) { copy_block(&b, bufferptr); bufferptr += 64; } else { base64_decode_block(dst, &b); dst += 48; } if (bufferptr >= (block_size - 1) * 64 + buffer) { for (size_t i = 0; i < (block_size - 1); i++) { base64_decode_block(dst, buffer + i * 64); dst += 48; } std::memcpy(buffer, buffer + (block_size - 1) * 64, 64); // 64 might be too much bufferptr -= (block_size - 1) * 64; } } } int last_block_len = (int)(srcend - src); if (last_block_len != 0) { __mmask64 input_mask = ((__mmask64)1 << last_block_len) - 1; block64 b; load_block_partial(&b, src, input_mask); uint64_t error = 0; uint64_t badcharmask = to_base64_mask(&b, &error, input_mask); if (!ignore_garbage && error) { size_t error_offset = _tzcnt_u64(error); return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit + error_offset), size_t(dst - dstinit)}; } src += last_block_len; bufferptr += compress_block(&b, badcharmask, bufferptr); } char *buffer_start = buffer; for (; buffer_start + 64 <= bufferptr; buffer_start += 64) { base64_decode_block(dst, buffer_start); dst += 48; } if ((bufferptr - buffer_start) != 0) { // For efficiency reasons, we end up reproducing much of the code // in base64_tail_decode_impl. Better engineering would be to // refactor the code so that we can call it without a performance hit. size_t rem = (bufferptr - buffer_start); int idx = rem % 4; __mmask64 mask = ((__mmask64)1 << rem) - 1; __m512i input = _mm512_maskz_loadu_epi8(mask, buffer_start); size_t output_len = (rem / 4) * 3; __mmask64 output_mask = mask >> (rem - output_len); const __m512i merge_ab_and_bc = _mm512_maddubs_epi16(input, _mm512_set1_epi32(0x01400140)); const __m512i merged = _mm512_madd_epi16(merge_ab_and_bc, _mm512_set1_epi32(0x00011000)); const __m512i pack = _mm512_set_epi8( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 61, 62, 56, 57, 58, 52, 53, 54, 48, 49, 50, 44, 45, 46, 40, 41, 42, 36, 37, 38, 32, 33, 34, 28, 29, 30, 24, 25, 26, 20, 21, 22, 16, 17, 18, 12, 13, 14, 8, 9, 10, 4, 5, 6, 0, 1, 2); const __m512i shuffled = _mm512_permutexvar_epi8(pack, merged); // We never should have that the number of base64 characters + the // number of padding characters is more than 4. if (!ignore_garbage && (idx + padding_characters > 4)) { return {INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit), true}; } // The idea here is that in loose mode, // if there is padding at all, it must be used // to form 4-wise chunk. However, in loose mode, // we do accept no padding at all. if (!ignore_garbage && last_chunk_options == last_chunk_handling_options::loose && (idx >= 2) && padding_characters > 0 && ((idx + padding_characters) & 3) != 0) { return {INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit), true}; } else // The idea here is that in strict mode, we do not want to accept // incomplete base64 chunks. So if the chunk was otherwise valid, we // return BASE64_INPUT_REMAINDER. if (!ignore_garbage && last_chunk_options == last_chunk_handling_options::strict && (idx >= 2) && ((idx + padding_characters) & 3) != 0) { // The partial chunk was at src - idx _mm512_mask_storeu_epi8((__m512i *)dst, output_mask, shuffled); dst += output_len; return {BASE64_INPUT_REMAINDER, equallocation, size_t(dst - dstinit)}; } else // If there is a partial chunk with insufficient padding, with // stop_before_partial, we need to just ignore it. In "only full" mode, // skip the minute there are padding characters. if ((last_chunk_options == last_chunk_handling_options::stop_before_partial && (padding_characters + idx < 4) && (idx != 0) && (idx >= 2 || padding_characters == 0)) || (last_chunk_options == last_chunk_handling_options::only_full_chunks && (idx >= 2 || padding_characters == 0))) { _mm512_mask_storeu_epi8((__m512i *)dst, output_mask, shuffled); dst += output_len; // we need to rewind src to before the partial chunk size_t characters_to_skip = idx; while (characters_to_skip > 0) { src--; auto c = *src; uint8_t code = to_base64[uint8_t(c)]; if (simdutf::scalar::base64::is_eight_byte(c) && code <= 63) { characters_to_skip--; } } // And then we need to skip ignored characters // See https://github.com/simdutf/simdutf/issues/824 while (src > srcinit) { auto c = *(src - 1); uint8_t code = to_base64[uint8_t(c)]; if (simdutf::scalar::base64::is_eight_byte(c) && code <= 63) { break; } src--; } return {SUCCESS, size_t(src - srcinit), size_t(dst - dstinit)}; } else { if (idx == 2) { if (!ignore_garbage && last_chunk_options == last_chunk_handling_options::strict) { uint32_t triple = (uint32_t(bufferptr[-2]) << 3 * 6) + (uint32_t(bufferptr[-1]) << 2 * 6); if (triple & 0xffff) { _mm512_mask_storeu_epi8((__m512i *)dst, output_mask, shuffled); dst += output_len; return {BASE64_EXTRA_BITS, size_t(src - srcinit), size_t(dst - dstinit)}; } } output_mask = (output_mask << 1) | 1; output_len += 1; _mm512_mask_storeu_epi8((__m512i *)dst, output_mask, shuffled); dst += output_len; } else if (idx == 3) { if (!ignore_garbage && last_chunk_options == last_chunk_handling_options::strict) { uint32_t triple = (uint32_t(bufferptr[-3]) << 3 * 6) + (uint32_t(bufferptr[-2]) << 2 * 6) + (uint32_t(bufferptr[-1]) << 1 * 6); if (triple & 0xff) { _mm512_mask_storeu_epi8((__m512i *)dst, output_mask, shuffled); dst += output_len; return {BASE64_EXTRA_BITS, size_t(src - srcinit), size_t(dst - dstinit)}; } } output_mask = (output_mask << 2) | 3; output_len += 2; _mm512_mask_storeu_epi8((__m512i *)dst, output_mask, shuffled); dst += output_len; } else if (!ignore_garbage && idx == 1 && (!is_partial(last_chunk_options) || (is_partial(last_chunk_options) && padding_characters > 0))) { _mm512_mask_storeu_epi8((__m512i *)dst, output_mask, shuffled); dst += output_len; return {BASE64_INPUT_REMAINDER, size_t(src - srcinit), size_t(dst - dstinit)}; } else if (!ignore_garbage && idx == 0 && padding_characters > 0) { _mm512_mask_storeu_epi8((__m512i *)dst, output_mask, shuffled); dst += output_len; return {INVALID_BASE64_CHARACTER, equallocation, size_t(dst - dstinit)}; } else { _mm512_mask_storeu_epi8((__m512i *)dst, output_mask, shuffled); dst += output_len; } } if (!ignore_garbage && !is_partial(last_chunk_options) && padding_characters > 0) { size_t output_count = size_t(dst - dstinit); if ((output_count % 3 == 0) || ((output_count % 3) + 1 + padding_characters != 4)) { return {INVALID_BASE64_CHARACTER, equallocation, output_count}; } } return {SUCCESS, full_input_length, size_t(dst - dstinit)}; } if (!ignore_garbage && padding_characters > 0) { if ((size_t(dst - dstinit) % 3 == 0) || ((size_t(dst - dstinit) % 3) + 1 + padding_characters != 4)) { return {INVALID_BASE64_CHARACTER, equallocation, size_t(dst - dstinit)}; } } return {SUCCESS, srclen, size_t(dst - dstinit)}; } /* end file src/icelake/icelake_base64.inl.cpp */ /* begin file src/icelake/icelake_find.inl.cpp */ simdutf_really_inline const char *util_find(const char *start, const char *end, char character) noexcept { // Handle empty or invalid range if (start >= end) return end; const size_t step = 64; __m512i char_vec = _mm512_set1_epi8(character); // Handle unaligned beginning with a masked load uintptr_t misalignment = reinterpret_cast(start) % step; if (misalignment != 0) { size_t adjustment = step - misalignment; if (size_t(end - start) < adjustment) { adjustment = end - start; } __mmask64 load_mask = 0xFFFFFFFFFFFFFFFF >> (64 - adjustment); __m512i data = _mm512_maskz_loadu_epi8( load_mask, reinterpret_cast(start)); __mmask64 match_mask = _mm512_cmpeq_epi8_mask(data, char_vec); if (match_mask != 0) { size_t index = _tzcnt_u64(match_mask); return start + index; } start += adjustment; } // Process 64 bytes (512 bits) at a time with AVX-512 // Main loop for full 128-byte chunks while (size_t(end - start) >= 2 * step) { __m512i data1 = _mm512_loadu_si512(reinterpret_cast(start)); __mmask64 mask1 = _mm512_cmpeq_epi8_mask(data1, char_vec); __m512i data2 = _mm512_loadu_si512(reinterpret_cast(start + step)); __mmask64 mask2 = _mm512_cmpeq_epi8_mask(data2, char_vec); if (!_kortestz_mask64_u8(mask1, mask2)) { if (mask1 != 0) { // Found a match, return the first one size_t index = _tzcnt_u64(mask1); return start + index; } size_t index = _tzcnt_u64(mask2); return start + index + step; } start += 2 * step; } // Main loop for full 64-byte chunks while (size_t(end - start) >= step) { __m512i data = _mm512_loadu_si512(reinterpret_cast(start)); __mmask64 mask = _mm512_cmpeq_epi8_mask(data, char_vec); if (mask != 0) { // Found a match, return the first one size_t index = _tzcnt_u64(mask); return start + index; } start += step; } // Handle remaining bytes with masked load size_t remaining = end - start; if (remaining > 0) { // Create a mask for the remaining bytes using shifted 0xFFFFFFFFFFFFFFFF __mmask64 load_mask = 0xFFFFFFFFFFFFFFFF >> (64 - remaining); __m512i data = _mm512_maskz_loadu_epi8( load_mask, reinterpret_cast(start)); __mmask64 match_mask = _mm512_cmpeq_epi8_mask(data, char_vec); // Apply load mask to avoid false positives match_mask &= load_mask; if (match_mask != 0) { // Found a match in the remaining bytes size_t index = _tzcnt_u64(match_mask); return start + index; } } return end; } simdutf_really_inline const char16_t *util_find(const char16_t *start, const char16_t *end, char16_t character) noexcept { // Handle empty or invalid range if (start >= end) return end; // Process 32 char16_t (64 bytes, 512 bits) at a time with AVX-512 const size_t step = 32; __m512i char_vec = _mm512_set1_epi16(character); // Handle unaligned beginning with a masked load uintptr_t misalignment = reinterpret_cast(start) % (step * sizeof(char16_t)); if (misalignment != 0 && misalignment % 2 == 0) { size_t adjustment = (step * sizeof(char16_t) - misalignment) / sizeof(char16_t); if (size_t(end - start) < adjustment) { adjustment = end - start; } __mmask32 load_mask = 0xFFFFFFFF >> (32 - adjustment); __m512i data = _mm512_maskz_loadu_epi16( load_mask, reinterpret_cast(start)); __mmask32 match_mask = _mm512_cmpeq_epi16_mask(data, char_vec); if (match_mask != 0) { size_t index = _tzcnt_u32(match_mask); return start + index; } start += adjustment; } // Main loop for full 32-element chunks while (size_t(end - start) >= step) { __m512i data = _mm512_loadu_si512(reinterpret_cast(start)); __mmask32 mask = _mm512_cmpeq_epi16_mask(data, char_vec); if (mask != 0) { // Found a match, return the first one size_t index = _tzcnt_u32(mask); return start + index; } start += step; } // Handle remaining elements with masked load size_t remaining = end - start; if (remaining > 0) { __mmask32 load_mask = 0xFFFFFFFF >> (32 - remaining); __m512i data = _mm512_maskz_loadu_epi16( load_mask, reinterpret_cast(start)); __mmask32 match_mask = _mm512_cmpeq_epi16_mask(data, char_vec); if (match_mask != 0) { size_t index = _tzcnt_u32(match_mask); return start + index; } } return end; } /* end file src/icelake/icelake_find.inl.cpp */ #endif // SIMDUTF_FEATURE_BASE64 #include } // namespace } // namespace icelake } // namespace simdutf #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/generic/utf32.h */ #include namespace simdutf { namespace icelake { namespace { namespace utf32 { template T min(T a, T b) { return a <= b ? a : b; } simdutf_really_inline size_t utf8_length_from_utf32(const char32_t *input, size_t length) { using vector_u32 = simd32; const char32_t *start = input; // we add up to three ones in a single iteration (see the vectorized loop in // section #2 below) const size_t max_increment = 3; const size_t N = vector_u32::ELEMENTS; #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP const auto v_0000007f = vector_u32::splat(0x0000007f); const auto v_000007ff = vector_u32::splat(0x000007ff); const auto v_0000ffff = vector_u32::splat(0x0000ffff); #else const auto v_ffffff80 = vector_u32::splat(0xffffff80); const auto v_fffff800 = vector_u32::splat(0xfffff800); const auto v_ffff0000 = vector_u32::splat(0xffff0000); const auto one = vector_u32::splat(1); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP size_t counter = 0; // 1. vectorized loop unrolled 4 times { // we use vector of uint32 counters, this is why this limit is used const size_t max_iterations = std::numeric_limits::max() / (max_increment * 4); size_t blocks = length / (N * 4); length -= blocks * (N * 4); while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; simd32 acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in0 = vector_u32(input + 0 * N); const auto in1 = vector_u32(input + 1 * N); const auto in2 = vector_u32(input + 2 * N); const auto in3 = vector_u32(input + 3 * N); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in0 > v_0000007f); acc -= as_vector_u32(in1 > v_0000007f); acc -= as_vector_u32(in2 > v_0000007f); acc -= as_vector_u32(in3 > v_0000007f); acc -= as_vector_u32(in0 > v_000007ff); acc -= as_vector_u32(in1 > v_000007ff); acc -= as_vector_u32(in2 > v_000007ff); acc -= as_vector_u32(in3 > v_000007ff); acc -= as_vector_u32(in0 > v_0000ffff); acc -= as_vector_u32(in1 > v_0000ffff); acc -= as_vector_u32(in2 > v_0000ffff); acc -= as_vector_u32(in3 > v_0000ffff); #else acc += min(one, in0 & v_ffffff80); acc += min(one, in1 & v_ffffff80); acc += min(one, in2 & v_ffffff80); acc += min(one, in3 & v_ffffff80); acc += min(one, in0 & v_fffff800); acc += min(one, in1 & v_fffff800); acc += min(one, in2 & v_fffff800); acc += min(one, in3 & v_fffff800); acc += min(one, in0 & v_ffff0000); acc += min(one, in1 & v_ffff0000); acc += min(one, in2 & v_ffff0000); acc += min(one, in3 & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += 4 * N; } counter += acc.sum(); } } // 2. vectorized loop for tail { const size_t max_iterations = std::numeric_limits::max() / max_increment; size_t blocks = length / N; length -= blocks * N; while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; auto acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in = vector_u32(input); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in > v_0000007f); acc -= as_vector_u32(in > v_000007ff); acc -= as_vector_u32(in > v_0000ffff); #else acc += min(one, in & v_ffffff80); acc += min(one, in & v_fffff800); acc += min(one, in & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += N; } counter += acc.sum(); } } const size_t consumed = input - start; if (consumed != 0) { // We don't count 0th bytes in the vectorized loops above, this // is why we need to count them in the end. counter += consumed; } return counter + scalar::utf32::utf8_length_from_utf32(input, length); } } // namespace utf32 } // unnamed namespace } // namespace icelake } // namespace simdutf /* end file src/generic/utf32.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 namespace simdutf { namespace icelake { #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int implementation::detect_encodings(const char *input, size_t length) const noexcept { // If there is a BOM, then we trust it. auto bom_encoding = simdutf::BOM::check_bom(input, length); if (bom_encoding != encoding_type::unspecified) { return bom_encoding; } int out = 0; uint32_t utf16_err = (length % 2); uint32_t utf32_err = (length % 4); uint32_t ends_with_high = 0; avx512_utf8_checker checker{}; const __m512i offset = _mm512_set1_epi32((uint32_t)0xffff2000); __m512i currentmax = _mm512_setzero_si512(); __m512i currentoffsetmax = _mm512_setzero_si512(); const char *ptr = input; const char *end = ptr + length; for (; end - ptr >= 64; ptr += 64) { // utf8 checks const __m512i data = _mm512_loadu_si512((const __m512i *)ptr); checker.check_next_input(data); // utf16le_checks __m512i diff = _mm512_sub_epi16(data, _mm512_set1_epi16(uint16_t(0xD800))); __mmask32 surrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0800))); __mmask32 highsurrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0400))); __mmask32 lowsurrogates = surrogates ^ highsurrogates; utf16_err |= (((highsurrogates << 1) | ends_with_high) != lowsurrogates); ends_with_high = ((highsurrogates & 0x80000000) != 0); // utf32le checks currentoffsetmax = _mm512_max_epu32(_mm512_add_epi32(data, offset), currentoffsetmax); currentmax = _mm512_max_epu32(data, currentmax); } // last block with 0 <= len < 64 __mmask64 read_mask = (__mmask64(1) << (end - ptr)) - 1; const __m512i data = _mm512_maskz_loadu_epi8(read_mask, (const __m512i *)ptr); checker.check_next_input(data); __m512i diff = _mm512_sub_epi16(data, _mm512_set1_epi16(uint16_t(0xD800))); __mmask32 surrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0800))); __mmask32 highsurrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0400))); __mmask32 lowsurrogates = surrogates ^ highsurrogates; utf16_err |= (((highsurrogates << 1) | ends_with_high) != lowsurrogates); currentoffsetmax = _mm512_max_epu32(_mm512_add_epi32(data, offset), currentoffsetmax); currentmax = _mm512_max_epu32(data, currentmax); const __m512i standardmax = _mm512_set1_epi32((uint32_t)0x10ffff); const __m512i standardoffsetmax = _mm512_set1_epi32((uint32_t)0xfffff7ff); __m512i is_zero = _mm512_xor_si512(_mm512_max_epu32(currentmax, standardmax), standardmax); utf32_err |= (_mm512_test_epi8_mask(is_zero, is_zero) != 0); is_zero = _mm512_xor_si512( _mm512_max_epu32(currentoffsetmax, standardoffsetmax), standardoffsetmax); utf32_err |= (_mm512_test_epi8_mask(is_zero, is_zero) != 0); checker.check_eof(); bool is_valid_utf8 = !checker.errors(); if (is_valid_utf8) { out |= encoding_type::UTF8; } if (utf16_err == 0) { out |= encoding_type::UTF16_LE; } if (utf32_err == 0) { out |= encoding_type::UTF32_LE; } return out; } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf8(const char *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return true; } avx512_utf8_checker checker{}; const char *ptr = buf; const char *end = ptr + len; for (; end - ptr >= 64; ptr += 64) { const __m512i utf8 = _mm512_loadu_si512((const __m512i *)ptr); checker.check_next_input(utf8); } if (end != ptr) { const __m512i utf8 = _mm512_maskz_loadu_epi8( ~UINT64_C(0) >> (64 - (end - ptr)), (const __m512i *)ptr); checker.check_next_input(utf8); } checker.check_eof(); return !checker.errors(); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result implementation::validate_utf8_with_errors( const char *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, len); } avx512_utf8_checker checker{}; const char *ptr = buf; const char *end = ptr + len; size_t count{0}; for (; end - ptr >= 64; ptr += 64) { const __m512i utf8 = _mm512_loadu_si512((const __m512i *)ptr); checker.check_next_input(utf8); if (checker.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(buf), reinterpret_cast(buf + count), len - count); res.count += count; return res; } count += 64; } if (end != ptr) { const __m512i utf8 = _mm512_maskz_loadu_epi8( ~UINT64_C(0) >> (64 - (end - ptr)), (const __m512i *)ptr); checker.check_next_input(utf8); } checker.check_eof(); if (checker.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(buf), reinterpret_cast(buf + count), len - count); res.count += count; return res; } return result(error_code::SUCCESS, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_ascii(const char *buf, size_t len) const noexcept { return icelake::validate_ascii(buf, len); } simdutf_warn_unused result implementation::validate_ascii_with_errors( const char *buf, size_t len) const noexcept { const char *buf_orig = buf; const char *end = buf + len; const __m512i ascii = _mm512_set1_epi8((uint8_t)0x80); for (; end - buf >= 64; buf += 64) { const __m512i input = _mm512_loadu_si512((const __m512i *)buf); __mmask64 notascii = _mm512_cmp_epu8_mask(input, ascii, _MM_CMPINT_NLT); if (notascii) { return result(error_code::TOO_LARGE, buf - buf_orig + _tzcnt_u64(notascii)); } } if (end != buf) { const __m512i input = _mm512_maskz_loadu_epi8( ~UINT64_C(0) >> (64 - (end - buf)), (const __m512i *)buf); __mmask64 notascii = _mm512_cmp_epu8_mask(input, ascii, _MM_CMPINT_NLT); if (notascii) { return result(error_code::TOO_LARGE, buf - buf_orig + _tzcnt_u64(notascii)); } } return result(error_code::SUCCESS, len); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept { const char16_t *end = buf + len; __m512i limit = _mm512_set1_epi16(uint16_t(0x007F)); for (; end - buf >= 32;) { __m512i in = _mm512_loadu_si512((__m512i *)buf); auto mask = _mm512_cmpgt_epu16_mask(in, limit); if (mask) { return false; } buf += 32; } if (buf < end) { __m512i in = _mm512_maskz_loadu_epi16((1U << (end - buf)) - 1, (__m512i *)buf); auto mask = _mm512_cmpgt_epu16_mask(in, limit); if (mask) { return false; } } return true; } simdutf_warn_unused bool implementation::validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept { const char16_t *end = buf + len; const __m512i byteflip = _mm512_setr_epi64( 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); __m512i limit = _mm512_set1_epi16(uint16_t(0x007F)); for (; end - buf >= 32;) { __m512i in = _mm512_loadu_si512((__m512i *)buf); in = _mm512_shuffle_epi8(in, byteflip); auto mask = _mm512_cmpgt_epu16_mask(in, limit); if (mask) { return false; } buf += 32; } if (buf < end) { __m512i in = _mm512_maskz_loadu_epi16((1U << (end - buf)) - 1, (__m512i *)buf); in = _mm512_shuffle_epi8(in, byteflip); auto mask = _mm512_cmpgt_epu16_mask(in, limit); if (mask) { return false; } } return true; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf16le(const char16_t *buf, size_t len) const noexcept { const char16_t *end = buf + len; for (; end - buf >= 32;) { __m512i in = _mm512_loadu_si512((__m512i *)buf); __m512i diff = _mm512_sub_epi16(in, _mm512_set1_epi16(uint16_t(0xD800))); __mmask32 surrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0800))); if (surrogates) { __mmask32 highsurrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0400))); __mmask32 lowsurrogates = surrogates ^ highsurrogates; // high must be followed by low if ((highsurrogates << 1) != lowsurrogates) { return false; } bool ends_with_high = ((highsurrogates & 0x80000000) != 0); if (ends_with_high) { buf += 31; // advance only by 31 code units so that we start with the // high surrogate on the next round. } else { buf += 32; } } else { buf += 32; } } if (buf < end) { __m512i in = _mm512_maskz_loadu_epi16((1U << (end - buf)) - 1, (__m512i *)buf); __m512i diff = _mm512_sub_epi16(in, _mm512_set1_epi16(uint16_t(0xD800))); __mmask32 surrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0800))); if (surrogates) { __mmask32 highsurrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0400))); __mmask32 lowsurrogates = surrogates ^ highsurrogates; // high must be followed by low if ((highsurrogates << 1) != lowsurrogates) { return false; } } } return true; } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool implementation::validate_utf16be(const char16_t *buf, size_t len) const noexcept { const char16_t *end = buf + len; for (; end - buf >= 32;) { __m512i in = _mm512_slli_epi32(_mm512_loadu_si512((__m512i *)buf), 8); __m512i diff = _mm512_sub_epi16(in, _mm512_set1_epi16(uint16_t(0xD800))); __mmask32 surrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0800))); if (surrogates) { __mmask32 highsurrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0400))); __mmask32 lowsurrogates = surrogates ^ highsurrogates; // high must be followed by low if ((highsurrogates << 1) != lowsurrogates) { return false; } bool ends_with_high = ((highsurrogates & 0x80000000) != 0); if (ends_with_high) { buf += 31; // advance only by 31 code units so that we start with the // high surrogate on the next round. } else { buf += 32; } } else { buf += 32; } } if (buf < end) { __m512i in = _mm512_slli_epi16( _mm512_maskz_loadu_epi16((1U << (end - buf)) - 1, (__m512i *)buf), 8); __m512i diff = _mm512_sub_epi16(in, _mm512_set1_epi16(uint16_t(0xD800))); __mmask32 surrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0800))); if (surrogates) { __mmask32 highsurrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0400))); __mmask32 lowsurrogates = surrogates ^ highsurrogates; // high must be followed by low if ((highsurrogates << 1) != lowsurrogates) { return false; } } } return true; } simdutf_warn_unused result implementation::validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept { const char16_t *start_buf = buf; const char16_t *end = buf + len; for (; end - buf >= 32;) { __m512i in = _mm512_loadu_si512((__m512i *)buf); __m512i diff = _mm512_sub_epi16(in, _mm512_set1_epi16(uint16_t(0xD800))); __mmask32 surrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0800))); if (surrogates) { __mmask32 highsurrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0400))); __mmask32 lowsurrogates = surrogates ^ highsurrogates; // high must be followed by low if ((highsurrogates << 1) != lowsurrogates) { uint32_t extra_low = _tzcnt_u32(lowsurrogates & ~(highsurrogates << 1)); uint32_t extra_high = _tzcnt_u32(highsurrogates & ~(lowsurrogates >> 1)); return result(error_code::SURROGATE, (buf - start_buf) + (extra_low < extra_high ? extra_low : extra_high)); } bool ends_with_high = ((highsurrogates & 0x80000000) != 0); if (ends_with_high) { buf += 31; // advance only by 31 code units so that we start with the // high surrogate on the next round. } else { buf += 32; } } else { buf += 32; } } if (buf < end) { __m512i in = _mm512_maskz_loadu_epi16((1U << (end - buf)) - 1, (__m512i *)buf); __m512i diff = _mm512_sub_epi16(in, _mm512_set1_epi16(uint16_t(0xD800))); __mmask32 surrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0800))); if (surrogates) { __mmask32 highsurrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0400))); __mmask32 lowsurrogates = surrogates ^ highsurrogates; // high must be followed by low if ((highsurrogates << 1) != lowsurrogates) { uint32_t extra_low = _tzcnt_u32(lowsurrogates & ~(highsurrogates << 1)); uint32_t extra_high = _tzcnt_u32(highsurrogates & ~(lowsurrogates >> 1)); return result(error_code::SURROGATE, (buf - start_buf) + (extra_low < extra_high ? extra_low : extra_high)); } } } return result(error_code::SUCCESS, len); } simdutf_warn_unused result implementation::validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept { const char16_t *start_buf = buf; const char16_t *end = buf + len; for (; end - buf >= 32;) { __m512i in = _mm512_slli_epi16(_mm512_loadu_si512((__m512i *)buf), 8); __m512i diff = _mm512_sub_epi16(in, _mm512_set1_epi16(uint16_t(0xD800))); __mmask32 surrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0800))); if (surrogates) { __mmask32 highsurrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0400))); __mmask32 lowsurrogates = surrogates ^ highsurrogates; // high must be followed by low if ((highsurrogates << 1) != lowsurrogates) { uint32_t extra_low = _tzcnt_u32(lowsurrogates & ~(highsurrogates << 1)); uint32_t extra_high = _tzcnt_u32(highsurrogates & ~(lowsurrogates >> 1)); return result(error_code::SURROGATE, (buf - start_buf) + (extra_low < extra_high ? extra_low : extra_high)); } bool ends_with_high = ((highsurrogates & 0x80000000) != 0); if (ends_with_high) { buf += 31; // advance only by 31 code units so that we start with the // high surrogate on the next round. } else { buf += 32; } } else { buf += 32; } } if (buf < end) { __m512i in = _mm512_slli_epi16( _mm512_maskz_loadu_epi16((1U << (end - buf)) - 1, (__m512i *)buf), 8); __m512i diff = _mm512_sub_epi16(in, _mm512_set1_epi16(uint16_t(0xD800))); __mmask32 surrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0800))); if (surrogates) { __mmask32 highsurrogates = _mm512_cmplt_epu16_mask(diff, _mm512_set1_epi16(uint16_t(0x0400))); __mmask32 lowsurrogates = surrogates ^ highsurrogates; // high must be followed by low if ((highsurrogates << 1) != lowsurrogates) { uint32_t extra_low = _tzcnt_u32(lowsurrogates & ~(highsurrogates << 1)); uint32_t extra_high = _tzcnt_u32(highsurrogates & ~(lowsurrogates >> 1)); return result(error_code::SURROGATE, (buf - start_buf) + (extra_low < extra_high ? extra_low : extra_high)); } } } return result(error_code::SUCCESS, len); } void implementation::to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept { return utf16fix_avx512(input, len, output); } void implementation::to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept { return utf16fix_avx512(input, len, output); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf32(const char32_t *buf, size_t len) const noexcept { return icelake::validate_utf32(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result implementation::validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept { const char32_t *buf_orig = buf; if (len >= 16) { const char32_t *end = buf + len - 16; while (buf <= end) { __m512i utf32 = _mm512_loadu_si512((const __m512i *)buf); __mmask16 outside_range = _mm512_cmp_epu32_mask( utf32, _mm512_set1_epi32(0x10ffff), _MM_CMPINT_GT); __m512i utf32_off = _mm512_add_epi32(utf32, _mm512_set1_epi32(0xffff2000)); __mmask16 surrogate_range = _mm512_cmp_epu32_mask( utf32_off, _mm512_set1_epi32(0xfffff7ff), _MM_CMPINT_GT); if ((outside_range | surrogate_range)) { auto outside_idx = _tzcnt_u32(outside_range); auto surrogate_idx = _tzcnt_u32(surrogate_range); if (outside_idx < surrogate_idx) { return result(error_code::TOO_LARGE, buf - buf_orig + outside_idx); } return result(error_code::SURROGATE, buf - buf_orig + surrogate_idx); } buf += 16; } } if (len > 0) { __m512i utf32 = _mm512_maskz_loadu_epi32( __mmask16((1U << (buf_orig + len - buf)) - 1), (const __m512i *)buf); __mmask16 outside_range = _mm512_cmp_epu32_mask( utf32, _mm512_set1_epi32(0x10ffff), _MM_CMPINT_GT); __m512i utf32_off = _mm512_add_epi32(utf32, _mm512_set1_epi32(0xffff2000)); __mmask16 surrogate_range = _mm512_cmp_epu32_mask( utf32_off, _mm512_set1_epi32(0xfffff7ff), _MM_CMPINT_GT); if ((outside_range | surrogate_range)) { auto outside_idx = _tzcnt_u32(outside_range); auto surrogate_idx = _tzcnt_u32(surrogate_range); if (outside_idx < surrogate_idx) { return result(error_code::TOO_LARGE, buf - buf_orig + outside_idx); } return result(error_code::SURROGATE, buf - buf_orig + surrogate_idx); } } return result(error_code::SUCCESS, len); } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept { return icelake::latin1_to_utf8_avx512_start(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return icelake_convert_latin1_to_utf16(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return icelake_convert_latin1_to_utf16(buf, len, utf16_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { avx512_convert_latin1_to_utf32(buf, len, utf32_output); return len; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { return icelake::utf8_to_latin1_avx512(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_output) const noexcept { // First, try to convert as much as possible using the SIMD implementation. const char *obuf = buf; char *olatin1_output = latin1_output; size_t written = icelake::utf8_to_latin1_avx512(obuf, len, olatin1_output); // If we have completely converted the string if (obuf == buf + len) { return {simdutf::SUCCESS, written}; } size_t pos = obuf - buf; result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, buf + pos, len - pos, latin1_output); res.count += pos; return res; } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { return icelake::valid_utf8_to_latin1_avx512(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16_result ret = fast_avx512_convert_utf8_to_utf16(buf, len, utf16_output); if (ret.second == nullptr) { return 0; } return ret.second - utf16_output; } simdutf_warn_unused size_t implementation::convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16_result ret = fast_avx512_convert_utf8_to_utf16( buf, len, utf16_output); if (ret.second == nullptr) { return 0; } return ret.second - utf16_output; } simdutf_warn_unused result implementation::convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return fast_avx512_convert_utf8_to_utf16_with_errors( buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return fast_avx512_convert_utf8_to_utf16_with_errors( buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16_result ret = icelake::valid_utf8_to_fixed_length( buf, len, utf16_output); size_t saved_bytes = ret.second - utf16_output; const char *end = buf + len; if (ret.first == end) { return saved_bytes; } // Note: AVX512 procedure looks up 4 bytes forward, and // correctly converts multi-byte chars even if their // continuation bytes lie outsiede 16-byte window. // It meas, we have to skip continuation bytes from // the beginning ret.first, as they were already consumed. while (ret.first != end && ((uint8_t(*ret.first) & 0xc0) == 0x80)) { ret.first += 1; } if (ret.first != end) { const size_t scalar_saved_bytes = scalar::utf8_to_utf16::convert_valid( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16_result ret = icelake::valid_utf8_to_fixed_length( buf, len, utf16_output); size_t saved_bytes = ret.second - utf16_output; const char *end = buf + len; if (ret.first == end) { return saved_bytes; } // Note: AVX512 procedure looks up 4 bytes forward, and // correctly converts multi-byte chars even if their // continuation bytes lie outsiede 16-byte window. // It meas, we have to skip continuation bytes from // the beginning ret.first, as they were already consumed. while (ret.first != end && ((uint8_t(*ret.first) & 0xc0) == 0x80)) { ret.first += 1; } if (ret.first != end) { const size_t scalar_saved_bytes = scalar::utf8_to_utf16::convert_valid( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_out) const noexcept { uint32_t *utf32_output = reinterpret_cast(utf32_out); utf8_to_utf32_result ret = icelake::validating_utf8_to_fixed_length( buf, len, utf32_output); if (ret.second == nullptr) return 0; size_t saved_bytes = ret.second - utf32_output; const char *end = buf + len; if (ret.first == end) { return saved_bytes; } // Note: the AVX512 procedure looks up 4 bytes forward, and // correctly converts multi-byte chars even if their // continuation bytes lie outside 16-byte window. // It means, we have to skip continuation bytes from // the beginning ret.first, as they were already consumed. while (ret.first != end && ((uint8_t(*ret.first) & 0xc0) == 0x80)) { ret.first += 1; } if (ret.first != end) { const size_t scalar_saved_bytes = scalar::utf8_to_utf32::convert( ret.first, len - (ret.first - buf), utf32_out + saved_bytes); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32) const noexcept { if (simdutf_unlikely(len == 0)) { return {error_code::SUCCESS, 0}; } uint32_t *utf32_output = reinterpret_cast(utf32); auto ret = icelake::validating_utf8_to_fixed_length_with_constant_checks< endianness::LITTLE, uint32_t>(buf, len, utf32_output); if (!std::get<2>(ret)) { size_t pos = std::get<0>(ret) - buf; // We might have an error that occurs right before pos. // This is only a concern if buf[pos] is not a continuation byte. if ((buf[pos] & 0xc0) != 0x80 && pos >= 64) { pos -= 1; } else if ((buf[pos] & 0xc0) == 0x80 && pos >= 64) { // We must check whether we are the fourth continuation byte bool c1 = (buf[pos - 1] & 0xc0) == 0x80; bool c2 = (buf[pos - 2] & 0xc0) == 0x80; bool c3 = (buf[pos - 3] & 0xc0) == 0x80; if (c1 && c2 && c3) { return {simdutf::TOO_LONG, pos}; } } // todo: we reset the output to utf32 instead of using std::get<2.(ret) as // you'd expect. that is because // validating_utf8_to_fixed_length_with_constant_checks may have processed // data beyond the error. result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, buf + pos, len - pos, utf32); res.count += pos; return res; } size_t saved_bytes = std::get<1>(ret) - utf32_output; const char *end = buf + len; if (std::get<0>(ret) == end) { return {simdutf::SUCCESS, saved_bytes}; } // Note: the AVX512 procedure looks up 4 bytes forward, and // correctly converts multi-byte chars even if their // continuation bytes lie outside 16-byte window. // It means, we have to skip continuation bytes from // the beginning ret.first, as they were already consumed. while (std::get<0>(ret) != end and ((uint8_t(*std::get<0>(ret)) & 0xc0) == 0x80)) { std::get<0>(ret) += 1; } if (std::get<0>(ret) != end) { auto scalar_result = scalar::utf8_to_utf32::convert_with_errors( std::get<0>(ret), len - (std::get<0>(ret) - buf), reinterpret_cast(utf32_output) + saved_bytes); if (scalar_result.error != simdutf::SUCCESS) { scalar_result.count += (std::get<0>(ret) - buf); } else { scalar_result.count += saved_bytes; } return scalar_result; } return {simdutf::SUCCESS, size_t(std::get<1>(ret) - utf32_output)}; } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_out) const noexcept { uint32_t *utf32_output = reinterpret_cast(utf32_out); utf8_to_utf32_result ret = icelake::valid_utf8_to_fixed_length( buf, len, utf32_output); size_t saved_bytes = ret.second - utf32_output; const char *end = buf + len; if (ret.first == end) { return saved_bytes; } // Note: AVX512 procedure looks up 4 bytes forward, and // correctly converts multi-byte chars even if their // continuation bytes lie outsiede 16-byte window. // It meas, we have to skip continuation bytes from // the beginning ret.first, as they were already consumed. while (ret.first != end && ((uint8_t(*ret.first) & 0xc0) == 0x80)) { ret.first += 1; } if (ret.first != end) { const size_t scalar_saved_bytes = scalar::utf8_to_utf32::convert_valid( ret.first, len - (ret.first - buf), utf32_out + saved_bytes); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return icelake_convert_utf16_to_latin1(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return icelake_convert_utf16_to_latin1(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return icelake_convert_utf16_to_latin1_with_errors( buf, len, latin1_output) .first; } simdutf_warn_unused result implementation::convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return icelake_convert_utf16_to_latin1_with_errors( buf, len, latin1_output) .first; } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: implement custom function return convert_utf16be_to_latin1(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: implement custom function return convert_utf16le_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { size_t outlen; size_t inlen = utf16_to_utf8_avx512i( buf, len, (unsigned char *)utf8_output, &outlen); if (inlen != len) { return 0; } return outlen; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { size_t outlen; size_t inlen = utf16_to_utf8_avx512i( buf, len, (unsigned char *)utf8_output, &outlen); if (inlen != len) { return 0; } return outlen; } simdutf_warn_unused result implementation::convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { size_t outlen; size_t inlen = utf16_to_utf8_avx512i( buf, len, (unsigned char *)utf8_output, &outlen); if (inlen != len) { result res = scalar::utf16_to_utf8::convert_with_errors( buf + inlen, len - inlen, utf8_output + outlen); res.count += inlen; return res; } return {simdutf::SUCCESS, outlen}; } simdutf_warn_unused result implementation::convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { size_t outlen; size_t inlen = utf16_to_utf8_avx512i( buf, len, (unsigned char *)utf8_output, &outlen); if (inlen != len) { result res = scalar::utf16_to_utf8::convert_with_errors( buf + inlen, len - inlen, utf8_output + outlen); res.count += inlen; return res; } return {simdutf::SUCCESS, outlen}; } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16le_to_utf8(buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16be_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { return icelake_convert_utf32_to_latin1(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf32_to_latin1_with_errors( const char32_t *buf, size_t len, char *latin1_output) const noexcept { return icelake_convert_utf32_to_latin1_with_errors(buf, len, latin1_output) .first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { return icelake_convert_utf32_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = avx512_convert_utf32_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = icelake::avx512_convert_utf32_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf32_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = avx512_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = avx512_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = avx512_convert_utf32_to_utf16_with_errors( buf, len, utf16_output); if (ret.first.error) { return ret.first; } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = avx512_convert_utf32_to_utf16_with_errors(buf, len, utf16_output); if (ret.first.error) { return ret.first; } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16be(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::tuple ret = icelake::convert_utf16_to_utf32(buf, len, utf32_output); if (!std::get<2>(ret)) { return 0; } size_t saved_bytes = std::get<1>(ret) - utf32_output; if (std::get<0>(ret) != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( std::get<0>(ret), len - (std::get<0>(ret) - buf), std::get<1>(ret)); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::tuple ret = icelake::convert_utf16_to_utf32(buf, len, utf32_output); if (!std::get<2>(ret)) { return 0; } size_t saved_bytes = std::get<1>(ret) - utf32_output; if (std::get<0>(ret) != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( std::get<0>(ret), len - (std::get<0>(ret) - buf), std::get<1>(ret)); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::tuple ret = icelake::convert_utf16_to_utf32(buf, len, utf32_output); if (!std::get<2>(ret)) { result scalar_res = scalar::utf16_to_utf32::convert_with_errors( std::get<0>(ret), len - (std::get<0>(ret) - buf), std::get<1>(ret)); scalar_res.count += (std::get<0>(ret) - buf); return scalar_res; } size_t saved_bytes = std::get<1>(ret) - utf32_output; if (std::get<0>(ret) != buf + len) { result scalar_res = scalar::utf16_to_utf32::convert_with_errors( std::get<0>(ret), len - (std::get<0>(ret) - buf), std::get<1>(ret)); if (scalar_res.error) { scalar_res.count += (std::get<0>(ret) - buf); return scalar_res; } else { scalar_res.count += saved_bytes; return scalar_res; } } return simdutf::result(simdutf::SUCCESS, saved_bytes); } simdutf_warn_unused result implementation::convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::tuple ret = icelake::convert_utf16_to_utf32(buf, len, utf32_output); if (!std::get<2>(ret)) { result scalar_res = scalar::utf16_to_utf32::convert_with_errors( std::get<0>(ret), len - (std::get<0>(ret) - buf), std::get<1>(ret)); scalar_res.count += (std::get<0>(ret) - buf); return scalar_res; } size_t saved_bytes = std::get<1>(ret) - utf32_output; if (std::get<0>(ret) != buf + len) { result scalar_res = scalar::utf16_to_utf32::convert_with_errors( std::get<0>(ret), len - (std::get<0>(ret) - buf), std::get<1>(ret)); if (scalar_res.error) { scalar_res.count += (std::get<0>(ret) - buf); return scalar_res; } else { scalar_res.count += saved_bytes; return scalar_res; } } return simdutf::result(simdutf::SUCCESS, saved_bytes); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::tuple ret = icelake::convert_utf16_to_utf32(buf, len, utf32_output); if (!std::get<2>(ret)) { return 0; } size_t saved_bytes = std::get<1>(ret) - utf32_output; if (std::get<0>(ret) != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( std::get<0>(ret), len - (std::get<0>(ret) - buf), std::get<1>(ret)); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::tuple ret = icelake::convert_utf16_to_utf32(buf, len, utf32_output); if (!std::get<2>(ret)) { return 0; } size_t saved_bytes = std::get<1>(ret) - utf32_output; if (std::get<0>(ret) != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( std::get<0>(ret), len - (std::get<0>(ret) - buf), std::get<1>(ret)); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void implementation::change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) const noexcept { size_t pos = 0; const __m512i byteflip = _mm512_setr_epi64( 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); while (pos + 32 <= length) { __m512i utf16 = _mm512_loadu_si512((const __m512i *)(input + pos)); utf16 = _mm512_shuffle_epi8(utf16, byteflip); _mm512_storeu_si512(output + pos, utf16); pos += 32; } if (pos < length) { __mmask32 m((1U << (length - pos)) - 1); __m512i utf16 = _mm512_maskz_loadu_epi16(m, (const __m512i *)(input + pos)); utf16 = _mm512_shuffle_epi8(utf16, byteflip); _mm512_mask_storeu_epi16(output + pos, m, utf16); } } simdutf_warn_unused size_t implementation::count_utf16le( const char16_t *input, size_t length) const noexcept { const char16_t *ptr = input; size_t count{0}; if (length >= 32) { const char16_t *end = input + length - 32; const __m512i low = _mm512_set1_epi16((uint16_t)0xdc00); const __m512i high = _mm512_set1_epi16((uint16_t)0xdfff); while (ptr <= end) { __m512i utf16 = _mm512_loadu_si512((const __m512i *)ptr); ptr += 32; uint64_t not_high_surrogate = static_cast(_mm512_cmpgt_epu16_mask(utf16, high) | _mm512_cmplt_epu16_mask(utf16, low)); count += count_ones(not_high_surrogate); } } return count + scalar::utf16::count_code_points( ptr, length - (ptr - input)); } simdutf_warn_unused size_t implementation::count_utf16be( const char16_t *input, size_t length) const noexcept { const char16_t *ptr = input; size_t count{0}; if (length >= 32) { const char16_t *end = input + length - 32; const __m512i low = _mm512_set1_epi16((uint16_t)0xdc00); const __m512i high = _mm512_set1_epi16((uint16_t)0xdfff); const __m512i byteflip = _mm512_setr_epi64( 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809, 0x0607040502030001, 0x0e0f0c0d0a0b0809); while (ptr <= end) { __m512i utf16 = _mm512_shuffle_epi8(_mm512_loadu_si512((__m512i *)ptr), byteflip); ptr += 32; uint64_t not_high_surrogate = static_cast(_mm512_cmpgt_epu16_mask(utf16, high) | _mm512_cmplt_epu16_mask(utf16, low)); count += count_ones(not_high_surrogate); } } return count + scalar::utf16::count_code_points( ptr, length - (ptr - input)); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t implementation::count_utf8(const char *input, size_t length) const noexcept { const uint8_t *str = reinterpret_cast(input); size_t answer = length / sizeof(__m512i) * sizeof(__m512i); // Number of 512-bit chunks that fits into the length. size_t i = 0; __m512i unrolled_popcount{0}; const __m512i continuation = _mm512_set1_epi8(char(0b10111111)); while (i + sizeof(__m512i) <= length) { size_t iterations = (length - i) / sizeof(__m512i); size_t max_i = i + iterations * sizeof(__m512i) - sizeof(__m512i); for (; i + 8 * sizeof(__m512i) <= max_i; i += 8 * sizeof(__m512i)) { __m512i input1 = _mm512_loadu_si512((const __m512i *)(str + i)); __m512i input2 = _mm512_loadu_si512((const __m512i *)(str + i + sizeof(__m512i))); __m512i input3 = _mm512_loadu_si512((const __m512i *)(str + i + 2 * sizeof(__m512i))); __m512i input4 = _mm512_loadu_si512((const __m512i *)(str + i + 3 * sizeof(__m512i))); __m512i input5 = _mm512_loadu_si512((const __m512i *)(str + i + 4 * sizeof(__m512i))); __m512i input6 = _mm512_loadu_si512((const __m512i *)(str + i + 5 * sizeof(__m512i))); __m512i input7 = _mm512_loadu_si512((const __m512i *)(str + i + 6 * sizeof(__m512i))); __m512i input8 = _mm512_loadu_si512((const __m512i *)(str + i + 7 * sizeof(__m512i))); __mmask64 mask1 = _mm512_cmple_epi8_mask(input1, continuation); __mmask64 mask2 = _mm512_cmple_epi8_mask(input2, continuation); __mmask64 mask3 = _mm512_cmple_epi8_mask(input3, continuation); __mmask64 mask4 = _mm512_cmple_epi8_mask(input4, continuation); __mmask64 mask5 = _mm512_cmple_epi8_mask(input5, continuation); __mmask64 mask6 = _mm512_cmple_epi8_mask(input6, continuation); __mmask64 mask7 = _mm512_cmple_epi8_mask(input7, continuation); __mmask64 mask8 = _mm512_cmple_epi8_mask(input8, continuation); __m512i mask_register = _mm512_set_epi64(mask8, mask7, mask6, mask5, mask4, mask3, mask2, mask1); unrolled_popcount = _mm512_add_epi64(unrolled_popcount, _mm512_popcnt_epi64(mask_register)); } for (; i <= max_i; i += sizeof(__m512i)) { __m512i more_input = _mm512_loadu_si512((const __m512i *)(str + i)); uint64_t continuation_bitmask = static_cast( _mm512_cmple_epi8_mask(more_input, continuation)); answer -= count_ones(continuation_bitmask); } } answer -= _mm512_reduce_add_epi64(unrolled_popcount); return answer + scalar::utf8::count_code_points( reinterpret_cast(str + i), length - i); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::latin1_length_from_utf8( const char *buf, size_t len) const noexcept { return count_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf8_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return icelake_utf8_length_from_utf16(input, length); } simdutf_warn_unused size_t implementation::utf8_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return icelake_utf8_length_from_utf16(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return implementation::count_utf16le(input, length); } simdutf_warn_unused size_t implementation::utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return implementation::count_utf16be(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::utf8_length_from_latin1( const char *input, size_t length) const noexcept { const uint8_t *str = reinterpret_cast(input); size_t answer = length / sizeof(__m512i) * sizeof(__m512i); size_t i = 0; if (answer >= 2048) // long strings optimization { unsigned char v_0xFF = 0xff; __m512i eight_64bits = _mm512_setzero_si512(); while (i + sizeof(__m512i) <= length) { __m512i runner = _mm512_setzero_si512(); size_t iterations = (length - i) / sizeof(__m512i); if (iterations > 255) { iterations = 255; } size_t max_i = i + iterations * sizeof(__m512i) - sizeof(__m512i); for (; i + 4 * sizeof(__m512i) <= max_i; i += 4 * sizeof(__m512i)) { // Load four __m512i vectors __m512i input1 = _mm512_loadu_si512((const __m512i *)(str + i)); __m512i input2 = _mm512_loadu_si512((const __m512i *)(str + i + sizeof(__m512i))); __m512i input3 = _mm512_loadu_si512( (const __m512i *)(str + i + 2 * sizeof(__m512i))); __m512i input4 = _mm512_loadu_si512( (const __m512i *)(str + i + 3 * sizeof(__m512i))); // Generate four masks __mmask64 mask1 = _mm512_cmpgt_epi8_mask(_mm512_setzero_si512(), input1); __mmask64 mask2 = _mm512_cmpgt_epi8_mask(_mm512_setzero_si512(), input2); __mmask64 mask3 = _mm512_cmpgt_epi8_mask(_mm512_setzero_si512(), input3); __mmask64 mask4 = _mm512_cmpgt_epi8_mask(_mm512_setzero_si512(), input4); // Apply the masks and subtract from the runner __m512i not_ascii1 = _mm512_mask_set1_epi8(_mm512_setzero_si512(), mask1, v_0xFF); __m512i not_ascii2 = _mm512_mask_set1_epi8(_mm512_setzero_si512(), mask2, v_0xFF); __m512i not_ascii3 = _mm512_mask_set1_epi8(_mm512_setzero_si512(), mask3, v_0xFF); __m512i not_ascii4 = _mm512_mask_set1_epi8(_mm512_setzero_si512(), mask4, v_0xFF); runner = _mm512_sub_epi8(runner, not_ascii1); runner = _mm512_sub_epi8(runner, not_ascii2); runner = _mm512_sub_epi8(runner, not_ascii3); runner = _mm512_sub_epi8(runner, not_ascii4); } for (; i <= max_i; i += sizeof(__m512i)) { __m512i more_input = _mm512_loadu_si512((const __m512i *)(str + i)); __mmask64 mask = _mm512_cmpgt_epi8_mask(_mm512_setzero_si512(), more_input); __m512i not_ascii = _mm512_mask_set1_epi8(_mm512_setzero_si512(), mask, v_0xFF); runner = _mm512_sub_epi8(runner, not_ascii); } eight_64bits = _mm512_add_epi64( eight_64bits, _mm512_sad_epu8(runner, _mm512_setzero_si512())); } answer += _mm512_reduce_add_epi64(eight_64bits); } else if (answer > 0) { for (; i + sizeof(__m512i) <= length; i += sizeof(__m512i)) { __m512i latin = _mm512_loadu_si512((const __m512i *)(str + i)); uint64_t non_ascii = _mm512_movepi8_mask(latin); answer += count_ones(non_ascii); } } return answer + scalar::latin1::utf8_length_from_latin1( reinterpret_cast(str + i), length - i); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf16_length_from_utf8( const char *input, size_t length) const noexcept { size_t pos = 0; // UTF-16 char length based on the four most significant bits of UTF-8 bytes const __m128i utf8_length_128 = _mm_setr_epi8( // ASCII chars /* 0000 */ 1, /* 0001 */ 1, /* 0010 */ 1, /* 0011 */ 1, /* 0100 */ 1, /* 0101 */ 1, /* 0110 */ 1, /* 0111 */ 1, // continutation bytes /* 1000 */ 0, /* 1001 */ 0, /* 1010 */ 0, /* 1011 */ 0, // leading bytes /* 1100 */ 1, // 2-byte UTF-8 char => 1 UTF-16 word /* 1101 */ 1, // 2-byte UTF-8 char => 1 UTF-16 word /* 1110 */ 1, // 3-byte UTF-8 char => 1 UTF-16 word /* 1111 */ 2 // 4-byte UTF-8 char => 2 UTF-16 words (surrogate pair) ); const __m512i char_length = broadcast_128bit_lane(utf8_length_128); constexpr size_t max_iterations = 255 / 2; size_t iterations = 0; const auto zero = _mm512_setzero_si512(); __m512i local = _mm512_setzero_si512(); // byte-wise counters __m512i counters = _mm512_setzero_si512(); // 64-bit counters for (; pos + 64 <= length; pos += 64) { __m512i utf8 = _mm512_loadu_si512((const __m512i *)(input + pos)); const auto t0 = _mm512_srli_epi32(utf8, 4); const auto t1 = _mm512_and_si512(t0, _mm512_set1_epi8(0xf)); const auto t2 = _mm512_shuffle_epi8(char_length, t1); local = _mm512_add_epi8(local, t2); iterations += 1; if (iterations == max_iterations) { counters = _mm512_add_epi64(counters, _mm512_sad_epu8(local, zero)); local = zero; iterations = 0; } } size_t count = 0; if (pos > 0) { // don't waste time for short strings if (iterations > 0) { counters = _mm512_add_epi64(counters, _mm512_sad_epu8(local, zero)); } const auto l0 = _mm512_extracti32x4_epi32(counters, 0); const auto l1 = _mm512_extracti32x4_epi32(counters, 1); const auto l2 = _mm512_extracti32x4_epi32(counters, 2); const auto l3 = _mm512_extracti32x4_epi32(counters, 3); const auto sum = _mm_add_epi64(_mm_add_epi64(l0, l1), _mm_add_epi64(l2, l3)); count = uint64_t(_mm_extract_epi64(sum, 0)) + uint64_t(_mm_extract_epi64(sum, 1)); } return count + scalar::utf8::utf16_length_from_utf8(input + pos, length - pos); } simdutf_warn_unused result implementation::utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept { return icelake_utf8_length_from_utf16_with_replacement( input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept { return icelake_utf8_length_from_utf16_with_replacement( input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf8_length_from_utf32( const char32_t *input, size_t length) const noexcept { return utf32::utf8_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf16_length_from_utf32( const char32_t *input, size_t length) const noexcept { const char32_t *ptr = input; size_t count{0}; if (length >= 16) { const char32_t *end = input + length - 16; const __m512i v_0000_ffff = _mm512_set1_epi32((uint32_t)0x0000ffff); while (ptr <= end) { __m512i utf32 = _mm512_loadu_si512((const __m512i *)ptr); ptr += 16; __mmask16 surrogates_bitmask = _mm512_cmpgt_epu32_mask(utf32, v_0000_ffff); count += 16 + count_ones(surrogates_bitmask); } } return count + scalar::utf32::utf16_length_from_utf32(ptr, length - (ptr - input)); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf8( const char *input, size_t length) const noexcept { return implementation::count_utf8(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result implementation::base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused result implementation::base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } size_t implementation::binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept { if (options & base64_url) { return encode_base64(output, input, length, options); } else { return encode_base64(output, input, length, options); } } size_t implementation::binary_to_base64_with_lines( const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept { if (options & base64_url) { return encode_base64_impl(output, input, length, options, line_length); } else { return encode_base64_impl(output, input, length, options, line_length); } } const char *implementation::find(const char *start, const char *end, char character) const noexcept { return util_find(start, end, character); } const char16_t *implementation::find(const char16_t *start, const char16_t *end, char16_t character) const noexcept { return util_find(start, end, character); } #endif // SIMDUTF_FEATURE_BASE64 } // namespace icelake } // namespace simdutf /* begin file src/simdutf/icelake/end.h */ #if SIMDUTF_CAN_ALWAYS_RUN_ICELAKE // nothing needed. #else SIMDUTF_UNTARGET_REGION #endif #if SIMDUTF_GCC11ORMORE // workaround for // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105593 SIMDUTF_POP_DISABLE_WARNINGS #endif // end of workaround /* end file src/simdutf/icelake/end.h */ /* end file src/icelake/implementation.cpp */ #endif #if SIMDUTF_IMPLEMENTATION_HASWELL /* begin file src/haswell/implementation.cpp */ /* begin file src/simdutf/haswell/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "haswell" // #define SIMDUTF_IMPLEMENTATION haswell #define SIMDUTF_SIMD_HAS_BYTEMASK 1 #if SIMDUTF_CAN_ALWAYS_RUN_HASWELL // nothing needed. #else SIMDUTF_TARGET_HASWELL #endif #if SIMDUTF_GCC11ORMORE // workaround for // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105593 // clang-format off SIMDUTF_DISABLE_GCC_WARNING(-Wmaybe-uninitialized) // clang-format on #endif // end of workaround /* end file src/simdutf/haswell/begin.h */ namespace simdutf { namespace haswell { namespace { #ifndef SIMDUTF_HASWELL_H #error "haswell.h must be included" #endif using namespace simd; #if SIMDUTF_FEATURE_ASCII || SIMDUTF_FEATURE_DETECT_ENCODING || \ SIMDUTF_FEATURE_UTF8 simdutf_really_inline bool is_ascii(const simd8x64 &input) { return input.reduce_or().is_ascii(); } #endif // SIMDUTF_FEATURE_ASCII || SIMDUTF_FEATURE_DETECT_ENCODING || // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_really_inline simd8 must_be_2_3_continuation(const simd8 prev2, const simd8 prev3) { simd8 is_third_byte = prev2.saturating_sub(0xe0u - 0x80); // Only 111_____ will be > 0x80 simd8 is_fourth_byte = prev3.saturating_sub(0xf0u - 0x80); // Only 1111____ will be > 0x80 return simd8(is_third_byte | is_fourth_byte); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING namespace utf16 { /* begin file src/haswell/avx2_validate_utf16.cpp */ template simd8 utf16_gather_high_bytes(const simd16 &in0, const simd16 &in1) { if (big_endian) { // we want lower bytes const auto mask = simd16(0x00ff); const auto t0 = in0 & mask; const auto t1 = in1 & mask; return simd16::pack(t0, t1); } else { const auto t0 = in0.shr<8>(); const auto t1 = in1.shr<8>(); return simd16::pack(t0, t1); } } /* end file src/haswell/avx2_validate_utf16.cpp */ } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 /* begin file src/haswell/avx2_utf16fix.cpp */ /* * Process one block of 16 characters. If in_place is false, * copy the block from in to out. If there is a sequencing * error in the block, overwrite the illsequenced characters * with the replacement character. This function reads one * character before the beginning of the buffer as a lookback. * If that character is illsequenced, it too is overwritten. */ template void utf16fix_block(char16_t *out, const char16_t *in) { const char16_t replacement = scalar::utf16::replacement(); auto swap_if_needed = [](uint16_t c) -> uint16_t { return !simdutf::match_system(big_endian) ? scalar::u16_swap_bytes(c) : c; }; __m256i lookback, block, lb_masked, block_masked, lb_is_high, block_is_low; __m256i illseq, lb_illseq, block_illseq, lb_illseq_shifted; lookback = _mm256_loadu_si256((const __m256i *)(in - 1)); block = _mm256_loadu_si256((const __m256i *)in); lb_masked = _mm256_and_si256(lookback, _mm256_set1_epi16(swap_if_needed(0xfc00u))); block_masked = _mm256_and_si256(block, _mm256_set1_epi16(swap_if_needed(0xfc00u))); lb_is_high = _mm256_cmpeq_epi16(lb_masked, _mm256_set1_epi16(swap_if_needed(0xd800u))); block_is_low = _mm256_cmpeq_epi16(block_masked, _mm256_set1_epi16(swap_if_needed(0xdc00u))); illseq = _mm256_xor_si256(lb_is_high, block_is_low); if (!_mm256_testz_si256(illseq, illseq)) { int lb; /* compute the cause of the illegal sequencing */ lb_illseq = _mm256_andnot_si256(block_is_low, lb_is_high); #if SIMDUTF_GCC9OROLDER // Old GCC versions are missing _mm256_zextsi128_si256, so we emulate it. __m128i tmp_legacygcc = _mm_bslli_si128(_mm256_extracti128_si256(lb_illseq, 1), 14); __m256i tmp_legacygcc256 = _mm256_set_m128i(_mm_setzero_si128(), tmp_legacygcc); lb_illseq_shifted = _mm256_or_si256(_mm256_bsrli_epi128(lb_illseq, 2), tmp_legacygcc256); #else lb_illseq_shifted = _mm256_or_si256(_mm256_bsrli_epi128(lb_illseq, 2), _mm256_zextsi128_si256(_mm_bslli_si128( _mm256_extracti128_si256(lb_illseq, 1), 14))); #endif // SIMDUTF_GCC9OROLDER block_illseq = _mm256_or_si256( _mm256_andnot_si256(lb_is_high, block_is_low), lb_illseq_shifted); /* fix illegal sequencing in the lookback */ #if SIMDUTF_GCC10 || SIMDUTF_GCC9OROLDER // GCC 10 is missing important intrinsics. lb = _mm_cvtsi128_si32(_mm256_extractf128_si256(lb_illseq, 0)); #else lb = _mm256_cvtsi256_si32(lb_illseq); #endif lb = (lb & replacement) | (~lb & out[-1]); out[-1] = char16_t(lb); /* fix illegal sequencing in the main block */ block = _mm256_blendv_epi8(block, _mm256_set1_epi16(replacement), block_illseq); _mm256_storeu_si256((__m256i *)out, block); } else if (!in_place) { _mm256_storeu_si256((__m256i *)out, block); } } template void utf16fix_block_sse(char16_t *out, const char16_t *in) { const char16_t replacement = scalar::utf16::replacement(); auto swap_if_needed = [](uint16_t c) -> uint16_t { return !simdutf::match_system(big_endian) ? scalar::u16_swap_bytes(c) : c; }; __m128i lookback, block, lb_masked, block_masked, lb_is_high, block_is_low; __m128i illseq, lb_illseq, block_illseq; lookback = _mm_loadu_si128((const __m128i *)(in - 1)); block = _mm_loadu_si128((const __m128i *)in); lb_masked = _mm_and_si128(lookback, _mm_set1_epi16(swap_if_needed(0xfc00U))); block_masked = _mm_and_si128(block, _mm_set1_epi16(swap_if_needed(0xfc00U))); lb_is_high = _mm_cmpeq_epi16(lb_masked, _mm_set1_epi16(swap_if_needed(0xd800U))); block_is_low = _mm_cmpeq_epi16(block_masked, _mm_set1_epi16(swap_if_needed(0xdc00U))); illseq = _mm_xor_si128(lb_is_high, block_is_low); if (_mm_movemask_epi8(illseq) != 0) { /* compute the cause of the illegal sequencing */ lb_illseq = _mm_andnot_si128(block_is_low, lb_is_high); block_illseq = _mm_or_si128(_mm_andnot_si128(lb_is_high, block_is_low), _mm_bsrli_si128(lb_illseq, 2)); /* fix illegal sequencing in the lookback */ int lb = _mm_cvtsi128_si32(lb_illseq); lb = (lb & replacement) | (~lb & out[-1]); out[-1] = char16_t(lb); /* fix illegal sequencing in the main block */ block = _mm_or_si128(_mm_andnot_si128(block_illseq, block), _mm_and_si128(block_illseq, _mm_set1_epi16(replacement))); _mm_storeu_si128((__m128i *)out, block); } else if (!in_place) { _mm_storeu_si128((__m128i *)out, block); } } template void utf16fix_sse(const char16_t *in, size_t n, char16_t *out) { const char16_t replacement = scalar::utf16::replacement(); size_t i; if (n < 9) { scalar::utf16::to_well_formed_utf16(in, n, out); return; } out[0] = scalar::utf16::is_low_surrogate(in[0]) ? replacement : in[0]; /* duplicate code to have the compiler specialise utf16fix_block() */ if (in == out) { for (i = 1; i + 8 < n; i += 8) { utf16fix_block_sse(out + i, in + i); } utf16fix_block_sse(out + n - 8, in + n - 8); } else { for (i = 1; i + 8 < n; i += 8) { utf16fix_block_sse(out + i, in + i); } utf16fix_block_sse(out + n - 8, in + n - 8); } out[n - 1] = scalar::utf16::is_high_surrogate(out[n - 1]) ? replacement : out[n - 1]; } template void utf16fix_avx(const char16_t *in, size_t n, char16_t *out) { const char16_t replacement = scalar::utf16::replacement(); size_t i; if (n < 17) { utf16fix_sse(in, n, out); return; } out[0] = scalar::utf16::is_low_surrogate(in[0]) ? replacement : in[0]; /* duplicate code to have the compiler specialise utf16fix_block() */ if (in == out) { for (i = 1; i + 16 < n; i += 16) { utf16fix_block(out + i, in + i); } utf16fix_block(out + n - 16, in + n - 16); } else { for (i = 1; i + 16 < n; i += 16) { utf16fix_block(out + i, in + i); } utf16fix_block(out + n - 16, in + n - 16); } out[n - 1] = scalar::utf16::is_high_surrogate(out[n - 1]) ? replacement : out[n - 1]; } /* end file src/haswell/avx2_utf16fix.cpp */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/haswell/avx2_convert_latin1_to_utf8.cpp */ std::pair avx2_convert_latin1_to_utf8(const char *latin1_input, size_t len, char *utf8_output) { const char *end = latin1_input + len; const __m256i v_0000 = _mm256_setzero_si256(); const __m256i v_c080 = _mm256_set1_epi16((int16_t)0xc080); const __m256i v_ff80 = _mm256_set1_epi16((int16_t)0xff80); const size_t safety_margin = 12; while (end - latin1_input >= std::ptrdiff_t(16 + safety_margin)) { __m128i in8 = _mm_loadu_si128((__m128i *)latin1_input); // a single 16-bit UTF-16 word can yield 1, 2 or 3 UTF-8 bytes const __m128i v_80 = _mm_set1_epi8((char)0x80); if (_mm_testz_si128(in8, v_80)) { // ASCII fast path!!!! // 1. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, in8); // 2. adjust pointers latin1_input += 16; utf8_output += 16; continue; // we are done for this round! } // We proceed only with the first 16 bytes. const __m256i in = _mm256_cvtepu8_epi16((in8)); // 1. prepare 2-byte values // input 16-bit word : [0000|0000|aabb|bbbb] x 8 // expected output : [1100|00aa|10bb|bbbb] x 8 const __m256i v_1f00 = _mm256_set1_epi16((int16_t)0x1f00); const __m256i v_003f = _mm256_set1_epi16((int16_t)0x003f); // t0 = [0000|00aa|bbbb|bb00] const __m256i t0 = _mm256_slli_epi16(in, 2); // t1 = [0000|00aa|0000|0000] const __m256i t1 = _mm256_and_si256(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const __m256i t2 = _mm256_and_si256(in, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const __m256i t3 = _mm256_or_si256(t1, t2); // t4 = [1100|00aa|10bb|bbbb] const __m256i t4 = _mm256_or_si256(t3, v_c080); // 2. merge ASCII and 2-byte codewords // no bits set above 7th bit const __m256i one_byte_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in, v_ff80), v_0000); const uint32_t one_byte_bitmask = static_cast(_mm256_movemask_epi8(one_byte_bytemask)); const __m256i utf8_unpacked = _mm256_blendv_epi8(t4, in, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup const uint32_t M0 = one_byte_bitmask & 0x55555555; const uint32_t M1 = M0 >> 7; const uint32_t M2 = (M1 | M0) & 0x00ff00ff; // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2)][0]; const uint8_t *row_2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2 >> 16)] [0]; const __m128i shuffle = _mm_loadu_si128((__m128i *)(row + 1)); const __m128i shuffle_2 = _mm_loadu_si128((__m128i *)(row_2 + 1)); const __m256i utf8_packed = _mm256_shuffle_epi8( utf8_unpacked, _mm256_setr_m128i(shuffle, shuffle_2)); // 5. store bytes _mm_storeu_si128((__m128i *)utf8_output, _mm256_castsi256_si128(utf8_packed)); utf8_output += row[0]; _mm_storeu_si128((__m128i *)utf8_output, _mm256_extractf128_si256(utf8_packed, 1)); utf8_output += row_2[0]; // 6. adjust pointers latin1_input += 16; continue; } // while return std::make_pair(latin1_input, utf8_output); } /* end file src/haswell/avx2_convert_latin1_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/haswell/avx2_convert_latin1_to_utf16.cpp */ template std::pair avx2_convert_latin1_to_utf16(const char *latin1_input, size_t len, char16_t *utf16_output) { size_t rounded_len = len & ~0xF; // Round down to nearest multiple of 16 size_t i = 0; for (; i < rounded_len; i += 16) { // Load 16 bytes from the address (input + i) into a xmm register const __m128i latin1 = _mm_loadu_si128(reinterpret_cast(latin1_input + i)); // Zero extend each byte in `in` to word __m256i utf16 = _mm256_cvtepu8_epi16(latin1); if (big_endian) { const __m128i swap128 = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); const __m256i swap = _mm256_set_m128i(swap128, swap128); utf16 = _mm256_shuffle_epi8(utf16, swap); } // Store the contents of xmm1 into the address pointed by (output + i) _mm256_storeu_si256(reinterpret_cast<__m256i *>(utf16_output + i), utf16); } return std::make_pair(latin1_input + rounded_len, utf16_output + rounded_len); } /* end file src/haswell/avx2_convert_latin1_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/haswell/avx2_convert_latin1_to_utf32.cpp */ std::pair avx2_convert_latin1_to_utf32(const char *buf, size_t len, char32_t *utf32_output) { size_t rounded_len = ((len | 7) ^ 7); // Round down to nearest multiple of 8 for (size_t i = 0; i < rounded_len; i += 8) { // Load 8 Latin1 characters into a 64-bit register __m128i in = _mm_loadl_epi64((__m128i *)&buf[i]); // Zero extend each set of 8 Latin1 characters to 8 32-bit integers using // vpmovzxbd __m256i out = _mm256_cvtepu8_epi32(in); // Store the results back to memory _mm256_storeu_si256((__m256i *)&utf32_output[i], out); } // return pointers pointing to where we left off return std::make_pair(buf + rounded_len, utf32_output + rounded_len); } /* end file src/haswell/avx2_convert_latin1_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/haswell/avx2_convert_utf8_to_utf16.cpp */ // depends on "tables/utf8_to_utf16_tables.h" // Convert up to 12 bytes from utf8 to utf16 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). template size_t convert_masked_utf8_to_utf16(const char *input, uint64_t utf8_end_of_code_point_mask, char16_t *&utf16_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // // We first try a few fast paths. const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); const __m128i in = _mm_loadu_si128((__m128i *)input); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; if (utf8_end_of_code_point_mask == 0xfff) { // We process the data in chunks of 12 bytes. __m256i ascii = _mm256_cvtepu8_epi16(in); if (big_endian) { const __m256i swap256 = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 17, 16, 19, 18, 21, 20, 23, 22, 25, 24, 27, 26, 29, 28, 31, 30); ascii = _mm256_shuffle_epi8(ascii, swap256); } _mm256_storeu_si256(reinterpret_cast<__m256i *>(utf16_output), ascii); utf16_output += 12; // We wrote 12 16-bit characters. return 12; // We consumed 12 bytes. } if (((utf8_end_of_code_point_mask & 0xffff) == 0xaaaa)) { // We want to take 8 2-byte UTF-8 code units and turn them into 8 2-byte // UTF-16 code units. There is probably a more efficient sequence, but the // following might do. const __m128i sh = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi16(0x7f)); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi16(0x1f00)); __m128i composed = _mm_or_si128(ascii, _mm_srli_epi16(highbyte, 2)); if (big_endian) composed = _mm_shuffle_epi8(composed, swap); _mm_storeu_si128((__m128i *)utf16_output, composed); utf16_output += 8; // We wrote 16 bytes, 8 code points. return 16; } if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 2-byte // UTF-16 code units. There is probably a more efficient sequence, but the // following might do. const __m128i sh = _mm_setr_epi8(2, 1, 0, -1, 5, 4, 3, -1, 8, 7, 6, -1, 11, 10, 9, -1); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); // 7 or 6 bits const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); // 5 or 6 bits const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0x0f0000)); // 4 bits const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 4); const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), highbyte_shifted); __m128i composed_repacked = _mm_packus_epi32(composed, composed); if (big_endian) composed_repacked = _mm_shuffle_epi8(composed_repacked, swap); _mm_storeu_si128((__m128i *)utf16_output, composed_repacked); utf16_output += 4; return 12; } const uint8_t idx = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][1]; if (idx < 64) { // SIX (6) input code-code units // this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. On // processors where pdep/pext is fast, we might be able to use a small // lookup table. const __m128i sh = _mm_loadu_si128( (const __m128i *)simdutf::tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi16(0x7f)); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi16(0x1f00)); __m128i composed = _mm_or_si128(ascii, _mm_srli_epi16(highbyte, 2)); if (big_endian) composed = _mm_shuffle_epi8(composed, swap); _mm_storeu_si128((__m128i *)utf16_output, composed); utf16_output += 6; // We wrote 12 bytes, 6 code points. There is a potential // overflow of 4 bytes. } else if (idx < 145) { // FOUR (4) input code-code units const __m128i sh = _mm_loadu_si128( (const __m128i *)simdutf::tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); // 7 or 6 bits const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); // 5 or 6 bits const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0x0f0000)); // 4 bits const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 4); const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), highbyte_shifted); __m128i composed_repacked = _mm_packus_epi32(composed, composed); if (big_endian) composed_repacked = _mm_shuffle_epi8(composed_repacked, swap); _mm_storeu_si128((__m128i *)utf16_output, composed_repacked); utf16_output += 4; // Here we overflow by 8 bytes. } else if (idx < 209) { // TWO (2) input code-code units ////////////// // There might be garbage inputs where a leading byte mascarades as a // four-byte leading byte (by being followed by 3 continuation byte), but is // not greater than 0xf0. This could trigger a buffer overflow if we only // counted leading bytes of the form 0xf0 as generating surrogate pairs, // without further UTF-8 validation. Thus we must be careful to ensure that // only leading bytes at least as large as 0xf0 generate surrogate pairs. We // do as at the cost of an extra mask. ///////////// const __m128i sh = _mm_loadu_si128( (const __m128i *)simdutf::tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); __m128i middlehighbyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f0000)); // correct for spurious high bit const __m128i correct = _mm_srli_epi32(_mm_and_si128(perm, _mm_set1_epi32(0x400000)), 1); middlehighbyte = _mm_xor_si128(correct, middlehighbyte); const __m128i middlehighbyte_shifted = _mm_srli_epi32(middlehighbyte, 4); // We deliberately carry the leading four bits in highbyte if they are // present, we remove them later when computing hightenbits. const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0xff000000)); const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 6); // When we need to generate a surrogate pair (leading byte > 0xF0), then // the corresponding 32-bit value in 'composed' will be greater than // > (0xff00000>>6) or > 0x3c00000. This can be used later to identify the // location of the surrogate pairs. const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), _mm_or_si128(highbyte_shifted, middlehighbyte_shifted)); const __m128i composedminus = _mm_sub_epi32(composed, _mm_set1_epi32(0x10000)); const __m128i lowtenbits = _mm_and_si128(composedminus, _mm_set1_epi32(0x3ff)); // Notice the 0x3ff mask: const __m128i hightenbits = _mm_and_si128(_mm_srli_epi32(composedminus, 10), _mm_set1_epi32(0x3ff)); const __m128i lowtenbitsadd = _mm_add_epi32(lowtenbits, _mm_set1_epi32(0xDC00)); const __m128i hightenbitsadd = _mm_add_epi32(hightenbits, _mm_set1_epi32(0xD800)); const __m128i lowtenbitsaddshifted = _mm_slli_epi32(lowtenbitsadd, 16); __m128i surrogates = _mm_or_si128(hightenbitsadd, lowtenbitsaddshifted); uint32_t basic_buffer[4]; uint32_t basic_buffer_swap[4]; if (big_endian) { _mm_storeu_si128((__m128i *)basic_buffer_swap, _mm_shuffle_epi8(composed, swap)); surrogates = _mm_shuffle_epi8(surrogates, swap); } _mm_storeu_si128((__m128i *)basic_buffer, composed); uint32_t surrogate_buffer[4]; _mm_storeu_si128((__m128i *)surrogate_buffer, surrogates); for (size_t i = 0; i < 3; i++) { if (basic_buffer[i] > 0x3c00000) { utf16_output[0] = uint16_t(surrogate_buffer[i] & 0xffff); utf16_output[1] = uint16_t(surrogate_buffer[i] >> 16); utf16_output += 2; } else { utf16_output[0] = big_endian ? uint16_t(basic_buffer_swap[i]) : uint16_t(basic_buffer[i]); utf16_output++; } } } else { // here we know that there is an error but we do not handle errors } return consumed; } /* end file src/haswell/avx2_convert_utf8_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/haswell/avx2_convert_utf8_to_utf32.cpp */ // depends on "tables/utf8_to_utf16_tables.h" // Convert up to 12 bytes from utf8 to utf32 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). size_t convert_masked_utf8_to_utf32(const char *input, uint64_t utf8_end_of_code_point_mask, char32_t *&utf32_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // // We first try a few fast paths. const __m128i in = _mm_loadu_si128((__m128i *)input); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; if (utf8_end_of_code_point_mask == 0xfff) { // We process the data in chunks of 12 bytes. _mm256_storeu_si256(reinterpret_cast<__m256i *>(utf32_output), _mm256_cvtepu8_epi32(in)); _mm256_storeu_si256(reinterpret_cast<__m256i *>(utf32_output + 8), _mm256_cvtepu8_epi32(_mm_srli_si128(in, 8))); utf32_output += 12; // We wrote 12 32-bit characters. return 12; // We consumed 12 bytes. } if (((utf8_end_of_code_point_mask & 0xffff) == 0xaaaa)) { // We want to take 8 2-byte UTF-8 code units and turn them into 8 4-byte // UTF-32 code units. There is probably a more efficient sequence, but the // following might do. const __m128i sh = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi16(0x7f)); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi16(0x1f00)); const __m128i composed = _mm_or_si128(ascii, _mm_srli_epi16(highbyte, 2)); _mm256_storeu_si256((__m256i *)utf32_output, _mm256_cvtepu16_epi32(composed)); utf32_output += 8; // We wrote 16 bytes, 8 code points. return 16; } if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 4-byte // UTF-32 code units. There is probably a more efficient sequence, but the // following might do. const __m128i sh = _mm_setr_epi8(2, 1, 0, -1, 5, 4, 3, -1, 8, 7, 6, -1, 11, 10, 9, -1); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); // 7 or 6 bits const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); // 5 or 6 bits const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0x0f0000)); // 4 bits const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 4); const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), highbyte_shifted); _mm_storeu_si128((__m128i *)utf32_output, composed); utf32_output += 4; return 12; } /// We do not have a fast path available, so we fallback. const uint8_t idx = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][1]; if (idx < 64) { // SIX (6) input code-code units // this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. On // processors where pdep/pext is fast, we might be able to use a small // lookup table. const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi16(0x7f)); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi16(0x1f00)); const __m128i composed = _mm_or_si128(ascii, _mm_srli_epi16(highbyte, 2)); _mm256_storeu_si256((__m256i *)utf32_output, _mm256_cvtepu16_epi32(composed)); utf32_output += 6; // We wrote 24 bytes, 6 code points. There is a potential // overflow of 32 - 24 = 8 bytes. } else if (idx < 145) { // FOUR (4) input code-code units const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); // 7 or 6 bits const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); // 5 or 6 bits const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0x0f0000)); // 4 bits const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 4); const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), highbyte_shifted); _mm_storeu_si128((__m128i *)utf32_output, composed); utf32_output += 4; } else if (idx < 209) { // TWO (2) input code-code units const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); __m128i middlehighbyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f0000)); // correct for spurious high bit const __m128i correct = _mm_srli_epi32(_mm_and_si128(perm, _mm_set1_epi32(0x400000)), 1); middlehighbyte = _mm_xor_si128(correct, middlehighbyte); const __m128i middlehighbyte_shifted = _mm_srli_epi32(middlehighbyte, 4); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0x07000000)); const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 6); const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), _mm_or_si128(highbyte_shifted, middlehighbyte_shifted)); _mm_storeu_si128((__m128i *)utf32_output, composed); utf32_output += 3; // We wrote 3 * 4 bytes, there is a potential overflow of 4 bytes. } else { // here we know that there is an error but we do not handle errors } return consumed; } /* end file src/haswell/avx2_convert_utf8_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/haswell/avx2_convert_utf16_to_latin1.cpp */ template std::pair avx2_convert_utf16_to_latin1(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *end = buf + len; while (end - buf >= 32) { // Load 16 UTF-16 characters into 256-bit AVX2 register __m256i in0 = _mm256_loadu_si256(reinterpret_cast(buf)); __m256i in1 = _mm256_loadu_si256(reinterpret_cast(buf + 16)); if (!match_system(big_endian)) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 17, 16, 19, 18, 21, 20, 23, 22, 25, 24, 27, 26, 29, 28, 31, 30); in0 = _mm256_shuffle_epi8(in0, swap); in1 = _mm256_shuffle_epi8(in1, swap); } __m256i high_byte_mask = _mm256_set1_epi16((int16_t)0xFF00); if (_mm256_testz_si256(_mm256_or_si256(in0, in1), high_byte_mask)) { // Pack 16-bit characters into 8-bit and store in latin1_output const __m256i packed = _mm256_packus_epi16(in0, in1); const __m256i result = _mm256_permute4x64_epi64(packed, 0b11011000); _mm256_storeu_si256(reinterpret_cast<__m256i *>(latin1_output), result); // Adjust pointers for the next iteration buf += 32; latin1_output += 32; } else { return std::make_pair(nullptr, reinterpret_cast(latin1_output)); } } // while return std::make_pair(buf, latin1_output); } template std::pair avx2_convert_utf16_to_latin1_with_errors(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *start = buf; const char16_t *end = buf + len; while (end - buf >= 16) { __m256i in = _mm256_loadu_si256(reinterpret_cast(buf)); if (!match_system(big_endian)) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 17, 16, 19, 18, 21, 20, 23, 22, 25, 24, 27, 26, 29, 28, 31, 30); in = _mm256_shuffle_epi8(in, swap); } __m256i high_byte_mask = _mm256_set1_epi16((int16_t)0xFF00); if (_mm256_testz_si256(in, high_byte_mask)) { __m128i lo = _mm256_extractf128_si256(in, 0); __m128i hi = _mm256_extractf128_si256(in, 1); __m128i latin1_packed_lo = _mm_packus_epi16(lo, lo); __m128i latin1_packed_hi = _mm_packus_epi16(hi, hi); _mm_storel_epi64(reinterpret_cast<__m128i *>(latin1_output), latin1_packed_lo); _mm_storel_epi64(reinterpret_cast<__m128i *>(latin1_output + 8), latin1_packed_hi); buf += 16; latin1_output += 16; } else { // Fallback to scalar code for handling errors for (int k = 0; k < 16; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if (word <= 0xff) { *latin1_output++ = char(word); } else { return std::make_pair( result{error_code::TOO_LARGE, (size_t)(buf - start + k)}, latin1_output); } } buf += 16; } } // while return std::make_pair(result{error_code::SUCCESS, (size_t)(buf - start)}, latin1_output); } /* end file src/haswell/avx2_convert_utf16_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/haswell/avx2_convert_utf16_to_utf8.cpp */ /* The vectorized algorithm works on single SSE register i.e., it loads eight 16-bit code units. We consider three cases: 1. an input register contains no surrogates and each value is in range 0x0000 .. 0x07ff. 2. an input register contains no surrogates and values are is in range 0x0000 .. 0xffff. 3. an input register contains surrogates --- i.e. codepoints can have 16 or 32 bits. Ad 1. When values are less than 0x0800, it means that a 16-bit code unit can be converted into: 1) single UTF8 byte (when it is an ASCII char) or 2) two UTF8 bytes. For this case we do only some shuffle to obtain these 2-byte codes and finally compress the whole SSE register with a single shuffle. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. Ad 2. When values fit in 16-bit code units, but are above 0x07ff, then a single word may produce one, two or three UTF8 bytes. We prepare data for all these three cases in two registers. The first register contains lower two UTF8 bytes (used in all cases), while the second one contains just the third byte for the three-UTF8-bytes case. Finally these two registers are interleaved forming eight-element array of 32-bit values. The array spans two SSE registers. The bytes from the registers are compressed using two shuffles. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. To summarize: - We need two 256-entry tables that have 8704 bytes in total. */ /* Returns a pair: the first unprocessed byte from buf and utf8_output A scalar routing should carry on the conversion of the tail. */ template std::pair avx2_convert_utf16_to_utf8(const char16_t *buf, size_t len, char *utf8_output) { const char16_t *end = buf + len; const __m256i v_0000 = _mm256_setzero_si256(); const __m256i v_f800 = _mm256_set1_epi16((int16_t)0xf800); const __m256i v_d800 = _mm256_set1_epi16((int16_t)0xd800); const __m256i v_c080 = _mm256_set1_epi16((int16_t)0xc080); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m256i in = _mm256_loadu_si256((__m256i *)buf); if (big_endian) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 17, 16, 19, 18, 21, 20, 23, 22, 25, 24, 27, 26, 29, 28, 31, 30); in = _mm256_shuffle_epi8(in, swap); } // a single 16-bit UTF-16 word can yield 1, 2 or 3 UTF-8 bytes const __m256i v_ff80 = _mm256_set1_epi16((int16_t)0xff80); if (_mm256_testz_si256(in, v_ff80)) { // ASCII fast path!!!! // 1. pack the bytes const __m128i utf8_packed = _mm_packus_epi16( _mm256_castsi256_si128(in), _mm256_extractf128_si256(in, 1)); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } // no bits set above 7th bit const __m256i one_byte_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in, v_ff80), v_0000); const uint32_t one_byte_bitmask = static_cast(_mm256_movemask_epi8(one_byte_bytemask)); // no bits set above 11th bit const __m256i one_or_two_bytes_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in, v_f800), v_0000); const uint32_t one_or_two_bytes_bitmask = static_cast(_mm256_movemask_epi8(one_or_two_bytes_bytemask)); if (one_or_two_bytes_bitmask == 0xffffffff) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const __m256i v_1f00 = _mm256_set1_epi16((int16_t)0x1f00); const __m256i v_003f = _mm256_set1_epi16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const __m256i t0 = _mm256_slli_epi16(in, 2); // t1 = [000a|aaaa|0000|0000] const __m256i t1 = _mm256_and_si256(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const __m256i t2 = _mm256_and_si256(in, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const __m256i t3 = _mm256_or_si256(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m256i t4 = _mm256_or_si256(t3, v_c080); // 2. merge ASCII and 2-byte codewords const __m256i utf8_unpacked = _mm256_blendv_epi8(t4, in, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup const uint32_t M0 = one_byte_bitmask & 0x55555555; const uint32_t M1 = M0 >> 7; const uint32_t M2 = (M1 | M0) & 0x00ff00ff; // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2)][0]; const uint8_t *row_2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2 >> 16)][0]; const __m128i shuffle = _mm_loadu_si128((__m128i *)(row + 1)); const __m128i shuffle_2 = _mm_loadu_si128((__m128i *)(row_2 + 1)); const __m256i utf8_packed = _mm256_shuffle_epi8( utf8_unpacked, _mm256_setr_m128i(shuffle, shuffle_2)); // 5. store bytes _mm_storeu_si128((__m128i *)utf8_output, _mm256_castsi256_si128(utf8_packed)); utf8_output += row[0]; _mm_storeu_si128((__m128i *)utf8_output, _mm256_extractf128_si256(utf8_packed, 1)); utf8_output += row_2[0]; // 6. adjust pointers buf += 16; continue; } // 1. Check if there are any surrogate word in the input chunk. // We have also deal with situation when there is a surrogate word // at the end of a chunk. const __m256i surrogates_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in, v_f800), v_d800); // bitmask = 0x0000 if there are no surrogates // = 0xc000 if the last word is a surrogate const uint32_t surrogates_bitmask = static_cast(_mm256_movemask_epi8(surrogates_bytemask)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (surrogates_bitmask == 0x00000000) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes const __m256i dup_even = _mm256_setr_epi16( 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e, 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) _mm256_set1_epi16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const __m256i t0 = _mm256_shuffle_epi8(in, dup_even); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const __m256i t1 = _mm256_and_si256(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const __m256i t2 = _mm256_or_si256(t1, simdutf_vec(0b1000000000000000)); // [aaaa|bbbb|bbcc|cccc] => [0000|aaaa|bbbb|bbcc] const __m256i s0 = _mm256_srli_epi16(in, 4); // [0000|aaaa|bbbb|bbcc] => [0000|aaaa|bbbb|bb00] const __m256i s1 = _mm256_and_si256(s0, simdutf_vec(0b0000111111111100)); // [0000|aaaa|bbbb|bb00] => [00bb|bbbb|0000|aaaa] const __m256i s2 = _mm256_maddubs_epi16(s1, simdutf_vec(0x0140)); // [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const __m256i s3 = _mm256_or_si256(s2, simdutf_vec(0b1100000011100000)); const __m256i m0 = _mm256_andnot_si256(one_or_two_bytes_bytemask, simdutf_vec(0b0100000000000000)); const __m256i s4 = _mm256_xor_si256(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const __m256i out0 = _mm256_unpacklo_epi16(t2, s4); const __m256i out1 = _mm256_unpackhi_epi16(t2, s4); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint32_t mask = (one_byte_bitmask & 0x55555555) | (one_or_two_bytes_bitmask & 0xaaaaaaaa); // Due to the wider registers, the following path is less likely to be // useful. /*if(mask == 0) { // We only have three-byte code units. Use fast path. const __m256i shuffle = _mm256_setr_epi8(2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1, 2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1); const __m256i utf8_0 = _mm256_shuffle_epi8(out0, shuffle); const __m256i utf8_1 = _mm256_shuffle_epi8(out1, shuffle); _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_0)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_0,1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_1,1)); utf8_output += 12; buf += 16; continue; }*/ const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const __m128i shuffle0 = _mm_loadu_si128((__m128i *)(row0 + 1)); const __m128i utf8_0 = _mm_shuffle_epi8(_mm256_castsi256_si128(out0), shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const __m128i shuffle1 = _mm_loadu_si128((__m128i *)(row1 + 1)); const __m128i utf8_1 = _mm_shuffle_epi8(_mm256_castsi256_si128(out1), shuffle1); const uint8_t mask2 = static_cast(mask >> 16); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask2][0]; const __m128i shuffle2 = _mm_loadu_si128((__m128i *)(row2 + 1)); const __m128i utf8_2 = _mm_shuffle_epi8(_mm256_extractf128_si256(out0, 1), shuffle2); const uint8_t mask3 = static_cast(mask >> 24); const uint8_t *row3 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask3][0]; const __m128i shuffle3 = _mm_loadu_si128((__m128i *)(row3 + 1)); const __m128i utf8_3 = _mm_shuffle_epi8(_mm256_extractf128_si256(out1, 1), shuffle3); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += row0[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += row1[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_2); utf8_output += row2[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_3); utf8_output += row3[0]; buf += 16; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = big_endian ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = big_endian ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, utf8_output); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(buf, utf8_output); } /* Returns a pair: a result struct and utf8_output. If there is an error, the count field of the result is the position of the error. Otherwise, it is the position of the first unprocessed byte in buf (even if finished). A scalar routing should carry on the conversion of the tail if needed. */ template std::pair avx2_convert_utf16_to_utf8_with_errors(const char16_t *buf, size_t len, char *utf8_output) { const char16_t *start = buf; const char16_t *end = buf + len; const __m256i v_0000 = _mm256_setzero_si256(); const __m256i v_f800 = _mm256_set1_epi16((int16_t)0xf800); const __m256i v_d800 = _mm256_set1_epi16((int16_t)0xd800); const __m256i v_c080 = _mm256_set1_epi16((int16_t)0xc080); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m256i in = _mm256_loadu_si256((__m256i *)buf); if (big_endian) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 17, 16, 19, 18, 21, 20, 23, 22, 25, 24, 27, 26, 29, 28, 31, 30); in = _mm256_shuffle_epi8(in, swap); } // a single 16-bit UTF-16 word can yield 1, 2 or 3 UTF-8 bytes const __m256i v_ff80 = _mm256_set1_epi16((int16_t)0xff80); if (_mm256_testz_si256(in, v_ff80)) { // ASCII fast path!!!! // 1. pack the bytes const __m128i utf8_packed = _mm_packus_epi16( _mm256_castsi256_si128(in), _mm256_extractf128_si256(in, 1)); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } // no bits set above 7th bit const __m256i one_byte_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in, v_ff80), v_0000); const uint32_t one_byte_bitmask = static_cast(_mm256_movemask_epi8(one_byte_bytemask)); // no bits set above 11th bit const __m256i one_or_two_bytes_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in, v_f800), v_0000); const uint32_t one_or_two_bytes_bitmask = static_cast(_mm256_movemask_epi8(one_or_two_bytes_bytemask)); if (one_or_two_bytes_bitmask == 0xffffffff) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const __m256i v_1f00 = _mm256_set1_epi16((int16_t)0x1f00); const __m256i v_003f = _mm256_set1_epi16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const __m256i t0 = _mm256_slli_epi16(in, 2); // t1 = [000a|aaaa|0000|0000] const __m256i t1 = _mm256_and_si256(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const __m256i t2 = _mm256_and_si256(in, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const __m256i t3 = _mm256_or_si256(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m256i t4 = _mm256_or_si256(t3, v_c080); // 2. merge ASCII and 2-byte codewords const __m256i utf8_unpacked = _mm256_blendv_epi8(t4, in, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup const uint32_t M0 = one_byte_bitmask & 0x55555555; const uint32_t M1 = M0 >> 7; const uint32_t M2 = (M1 | M0) & 0x00ff00ff; // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2)][0]; const uint8_t *row_2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2 >> 16)][0]; const __m128i shuffle = _mm_loadu_si128((__m128i *)(row + 1)); const __m128i shuffle_2 = _mm_loadu_si128((__m128i *)(row_2 + 1)); const __m256i utf8_packed = _mm256_shuffle_epi8( utf8_unpacked, _mm256_setr_m128i(shuffle, shuffle_2)); // 5. store bytes _mm_storeu_si128((__m128i *)utf8_output, _mm256_castsi256_si128(utf8_packed)); utf8_output += row[0]; _mm_storeu_si128((__m128i *)utf8_output, _mm256_extractf128_si256(utf8_packed, 1)); utf8_output += row_2[0]; // 6. adjust pointers buf += 16; continue; } // 1. Check if there are any surrogate word in the input chunk. // We have also deal with situation when there is a surrogate word // at the end of a chunk. const __m256i surrogates_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in, v_f800), v_d800); // bitmask = 0x0000 if there are no surrogates // = 0xc000 if the last word is a surrogate const uint32_t surrogates_bitmask = static_cast(_mm256_movemask_epi8(surrogates_bytemask)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (surrogates_bitmask == 0x00000000) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes const __m256i dup_even = _mm256_setr_epi16( 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e, 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) _mm256_set1_epi16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const __m256i t0 = _mm256_shuffle_epi8(in, dup_even); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const __m256i t1 = _mm256_and_si256(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const __m256i t2 = _mm256_or_si256(t1, simdutf_vec(0b1000000000000000)); // [aaaa|bbbb|bbcc|cccc] => [0000|aaaa|bbbb|bbcc] const __m256i s0 = _mm256_srli_epi16(in, 4); // [0000|aaaa|bbbb|bbcc] => [0000|aaaa|bbbb|bb00] const __m256i s1 = _mm256_and_si256(s0, simdutf_vec(0b0000111111111100)); // [0000|aaaa|bbbb|bb00] => [00bb|bbbb|0000|aaaa] const __m256i s2 = _mm256_maddubs_epi16(s1, simdutf_vec(0x0140)); // [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const __m256i s3 = _mm256_or_si256(s2, simdutf_vec(0b1100000011100000)); const __m256i m0 = _mm256_andnot_si256(one_or_two_bytes_bytemask, simdutf_vec(0b0100000000000000)); const __m256i s4 = _mm256_xor_si256(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const __m256i out0 = _mm256_unpacklo_epi16(t2, s4); const __m256i out1 = _mm256_unpackhi_epi16(t2, s4); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint32_t mask = (one_byte_bitmask & 0x55555555) | (one_or_two_bytes_bitmask & 0xaaaaaaaa); // Due to the wider registers, the following path is less likely to be // useful. /*if(mask == 0) { // We only have three-byte code units. Use fast path. const __m256i shuffle = _mm256_setr_epi8(2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1, 2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1); const __m256i utf8_0 = _mm256_shuffle_epi8(out0, shuffle); const __m256i utf8_1 = _mm256_shuffle_epi8(out1, shuffle); _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_0)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_0,1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_1,1)); utf8_output += 12; buf += 16; continue; }*/ const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const __m128i shuffle0 = _mm_loadu_si128((__m128i *)(row0 + 1)); const __m128i utf8_0 = _mm_shuffle_epi8(_mm256_castsi256_si128(out0), shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const __m128i shuffle1 = _mm_loadu_si128((__m128i *)(row1 + 1)); const __m128i utf8_1 = _mm_shuffle_epi8(_mm256_castsi256_si128(out1), shuffle1); const uint8_t mask2 = static_cast(mask >> 16); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask2][0]; const __m128i shuffle2 = _mm_loadu_si128((__m128i *)(row2 + 1)); const __m128i utf8_2 = _mm_shuffle_epi8(_mm256_extractf128_si256(out0, 1), shuffle2); const uint8_t mask3 = static_cast(mask >> 24); const uint8_t *row3 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask3][0]; const __m128i shuffle3 = _mm_loadu_si128((__m128i *)(row3 + 1)); const __m128i utf8_3 = _mm_shuffle_epi8(_mm256_extractf128_si256(out1, 1), shuffle3); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += row0[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += row1[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_2); utf8_output += row2[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_3); utf8_output += row3[0]; buf += 16; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = big_endian ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = big_endian ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k - 1), utf8_output); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), utf8_output); } /* end file src/haswell/avx2_convert_utf16_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/haswell/avx2_convert_utf16_to_utf32.cpp */ /* The vectorized algorithm works on single SSE register i.e., it loads eight 16-bit code units. We consider three cases: 1. an input register contains no surrogates and each value is in range 0x0000 .. 0x07ff. 2. an input register contains no surrogates and values are in range 0x0000 .. 0xffff. 3. an input register contains surrogates --- i.e. codepoints can have 16 or 32 bits. Ad 1. When values are less than 0x0800, it means that a 16-bit code unit can be converted into: 1) single UTF8 byte (when it is an ASCII char) or 2) two UTF8 bytes. For this case we do only some shuffle to obtain these 2-byte codes and finally compress the whole SSE register with a single shuffle. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. Ad 2. When values fit in 16-bit code units, but are above 0x07ff, then a single word may produce one, two or three UTF8 bytes. We prepare data for all these three cases in two registers. The first register contains lower two UTF8 bytes (used in all cases), while the second one contains just the third byte for the three-UTF8-bytes case. Finally these two registers are interleaved forming eight-element array of 32-bit values. The array spans two SSE registers. The bytes from the registers are compressed using two shuffles. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. To summarize: - We need two 256-entry tables that have 8704 bytes in total. */ /* Returns a pair: the first unprocessed byte from buf and utf32_output A scalar routing should carry on the conversion of the tail. */ template std::pair avx2_convert_utf16_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_output) { const char16_t *end = buf + len; const __m256i v_f800 = _mm256_set1_epi16((int16_t)0xf800); const __m256i v_d800 = _mm256_set1_epi16((int16_t)0xd800); while (end - buf >= 16) { __m256i in = _mm256_loadu_si256((__m256i *)buf); if (big_endian) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 17, 16, 19, 18, 21, 20, 23, 22, 25, 24, 27, 26, 29, 28, 31, 30); in = _mm256_shuffle_epi8(in, swap); } // 1. Check if there are any surrogate word in the input chunk. // We have also deal with situation when there is a surrogate word // at the end of a chunk. const __m256i surrogates_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in, v_f800), v_d800); // bitmask = 0x0000 if there are no surrogates // = 0xc000 if the last word is a surrogate const uint32_t surrogates_bitmask = static_cast(_mm256_movemask_epi8(surrogates_bytemask)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (surrogates_bitmask == 0x00000000) { // case: we extend all sixteen 16-bit code units to sixteen 32-bit code // units _mm256_storeu_si256(reinterpret_cast<__m256i *>(utf32_output), _mm256_cvtepu16_epi32(_mm256_castsi256_si128(in))); _mm256_storeu_si256( reinterpret_cast<__m256i *>(utf32_output + 8), _mm256_cvtepu16_epi32(_mm256_extractf128_si256(in, 1))); utf32_output += 16; buf += 16; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = big_endian ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { // No surrogate pair *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = big_endian ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, utf32_output); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return std::make_pair(buf, utf32_output); } /* Returns a pair: a result struct and utf8_output. If there is an error, the count field of the result is the position of the error. Otherwise, it is the position of the first unprocessed byte in buf (even if finished). A scalar routing should carry on the conversion of the tail if needed. */ template std::pair avx2_convert_utf16_to_utf32_with_errors(const char16_t *buf, size_t len, char32_t *utf32_output) { const char16_t *start = buf; const char16_t *end = buf + len; const __m256i v_f800 = _mm256_set1_epi16((int16_t)0xf800); const __m256i v_d800 = _mm256_set1_epi16((int16_t)0xd800); while (end - buf >= 16) { __m256i in = _mm256_loadu_si256((__m256i *)buf); if (big_endian) { const __m256i swap = _mm256_setr_epi8( 1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14, 17, 16, 19, 18, 21, 20, 23, 22, 25, 24, 27, 26, 29, 28, 31, 30); in = _mm256_shuffle_epi8(in, swap); } // 1. Check if there are any surrogate word in the input chunk. // We have also deal with situation when there is a surrogate word // at the end of a chunk. const __m256i surrogates_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in, v_f800), v_d800); // bitmask = 0x0000 if there are no surrogates // = 0xc000 if the last word is a surrogate const uint32_t surrogates_bitmask = static_cast(_mm256_movemask_epi8(surrogates_bytemask)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (surrogates_bitmask == 0x00000000) { // case: we extend all sixteen 16-bit code units to sixteen 32-bit code // units _mm256_storeu_si256(reinterpret_cast<__m256i *>(utf32_output), _mm256_cvtepu16_epi32(_mm256_castsi256_si128(in))); _mm256_storeu_si256( reinterpret_cast<__m256i *>(utf32_output + 8), _mm256_cvtepu16_epi32(_mm256_extractf128_si256(in, 1))); utf32_output += 16; buf += 16; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = big_endian ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { // No surrogate pair *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = big_endian ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k - 1), utf32_output); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), utf32_output); } /* end file src/haswell/avx2_convert_utf16_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/haswell/avx2_convert_utf32_to_latin1.cpp */ std::pair avx2_convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) { const size_t rounded_len = len & ~0x1F; // Round down to nearest multiple of 32 const __m256i high_bytes_mask = _mm256_set1_epi32(0xFFFFFF00); for (size_t i = 0; i < rounded_len; i += 4 * 8) { __m256i a = _mm256_loadu_si256((__m256i *)(buf + 0 * 8)); __m256i b = _mm256_loadu_si256((__m256i *)(buf + 1 * 8)); __m256i c = _mm256_loadu_si256((__m256i *)(buf + 2 * 8)); __m256i d = _mm256_loadu_si256((__m256i *)(buf + 3 * 8)); const __m256i check_combined = _mm256_or_si256(_mm256_or_si256(a, b), _mm256_or_si256(c, d)); if (!_mm256_testz_si256(check_combined, high_bytes_mask)) { return std::make_pair(nullptr, latin1_output); } b = _mm256_slli_epi32(b, 1 * 8); c = _mm256_slli_epi32(c, 2 * 8); d = _mm256_slli_epi32(d, 3 * 8); // clang-format off // a = [.. .. .. a7|.. .. .. a6|.. .. .. a5|.. .. .. a4||.. .. .. a3|.. .. .. a2|.. .. .. a1|.. .. .. a0] // b = [.. .. b7 ..|.. .. b6 ..|.. .. b5 ..|.. .. b4 ..||.. .. b3 ..|.. .. b2 ..|.. .. b1 ..|.. .. b0 ..] // c = [.. c7 .. ..|.. c6 .. ..|.. c5 .. ..|.. c4 .. ..||.. c3 .. ..|.. c2 .. ..|.. c1 .. ..|.. c0 .. ..] // d = [d7 .. .. ..|d6 .. .. ..|d5 .. .. ..|d4 .. .. ..||d3 .. .. ..|d2 .. .. ..|d1 .. .. ..|d0 .. .. ..] // t0 = [d7 c7 b7 a7|d6 c6 b6 a6|d5 c5 b5 a5|d4 c4 b4 a4||d3 c3 b3 a3|d2 c2 b2 a2|d1 c1 b1 a1|d0 c0 b0 a0] const __m256i t0 = _mm256_or_si256(_mm256_or_si256(a, b), _mm256_or_si256(c, d)); // shuffle bytes within 128-bit lanes // t1 = [d7 d6 d5 d4|c7 c6 c5 c4|b7 b6 b5 b4|a7 a6 a5 a4||d3 d2 d1 d0|c3 c2 c1 c0|b3 b2 b1 b0|a3 a2 a1 a0] const __m256i shuffle_bytes = _mm256_setr_epi8(0, 4, 8, 12, 1, 5, 9, 13, 2, 6, 10, 14, 3, 7, 11, 15, 0, 4, 8, 12, 1, 5, 9, 13, 2, 6, 10, 14, 3, 7, 11, 15); const __m256i t1 = _mm256_shuffle_epi8(t0, shuffle_bytes); // reshuffle dwords // t2 = [d7 d6 d5 d4|d3 d2 d1 d0|c7 c6 c5 c4|c3 c2 c1 c0||b7 b6 b5 b4|b3 b2 b1 b0|a7 a6 a5 a4|a3 a2 a1 a0] const __m256i shuffle_dwords = _mm256_setr_epi32(0, 4, 1, 5, 2, 6, 3, 7); const __m256i t2 = _mm256_permutevar8x32_epi32(t1, shuffle_dwords); // clang format on _mm256_storeu_si256((__m256i *)latin1_output, t2); latin1_output += 32; buf += 32; } return std::make_pair(buf, latin1_output); } std::pair avx2_convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) { const size_t rounded_len = len & ~0x1F; // Round down to nearest multiple of 32 const char32_t *start = buf; const __m256i high_bytes_mask = _mm256_set1_epi32(0xFFFFFF00); for (size_t i = 0; i < rounded_len; i += 4 * 8) { __m256i a = _mm256_loadu_si256((__m256i *)(buf + 0 * 8)); __m256i b = _mm256_loadu_si256((__m256i *)(buf + 1 * 8)); __m256i c = _mm256_loadu_si256((__m256i *)(buf + 2 * 8)); __m256i d = _mm256_loadu_si256((__m256i *)(buf + 3 * 8)); const __m256i check_combined = _mm256_or_si256(_mm256_or_si256(a, b), _mm256_or_si256(c, d)); if (!_mm256_testz_si256(check_combined, high_bytes_mask)) { // Fallback to scalar code for handling errors for (int k = 0; k < 4 * 8; k++) { char32_t codepoint = buf[k]; if (codepoint <= 0xFF) { *latin1_output++ = static_cast(codepoint); } else { return std::make_pair(result(error_code::TOO_LARGE, buf - start + k), latin1_output); } } } b = _mm256_slli_epi32(b, 1 * 8); c = _mm256_slli_epi32(c, 2 * 8); d = _mm256_slli_epi32(d, 3 * 8); const __m256i t0 = _mm256_or_si256(_mm256_or_si256(a, b), _mm256_or_si256(c, d)); const __m256i shuffle_bytes = _mm256_setr_epi8(0, 4, 8, 12, 1, 5, 9, 13, 2, 6, 10, 14, 3, 7, 11, 15, 0, 4, 8, 12, 1, 5, 9, 13, 2, 6, 10, 14, 3, 7, 11, 15); const __m256i t1 = _mm256_shuffle_epi8(t0, shuffle_bytes); const __m256i shuffle_dwords = _mm256_setr_epi32(0, 4, 1, 5, 2, 6, 3, 7); const __m256i t2 = _mm256_permutevar8x32_epi32(t1, shuffle_dwords); _mm256_storeu_si256((__m256i *)latin1_output, t2); latin1_output += 32; buf += 32; } return std::make_pair(result(error_code::SUCCESS, buf - start), latin1_output); } /* end file src/haswell/avx2_convert_utf32_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/haswell/avx2_convert_utf32_to_utf8.cpp */ std::pair avx2_convert_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_output) { const char32_t *end = buf + len; const __m256i v_0000 = _mm256_setzero_si256(); const __m256i v_ffff0000 = _mm256_set1_epi32((uint32_t)0xffff0000); const __m256i v_ff80 = _mm256_set1_epi16((uint16_t)0xff80); const __m256i v_f800 = _mm256_set1_epi16((uint16_t)0xf800); const __m256i v_c080 = _mm256_set1_epi16((uint16_t)0xc080); const __m256i v_7fffffff = _mm256_set1_epi32((uint32_t)0x7fffffff); __m256i running_max = _mm256_setzero_si256(); __m256i forbidden_bytemask = _mm256_setzero_si256(); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m256i in = _mm256_loadu_si256((__m256i *)buf); __m256i nextin = _mm256_loadu_si256((__m256i *)buf + 1); running_max = _mm256_max_epu32(_mm256_max_epu32(in, running_max), nextin); // Pack 32-bit UTF-32 code units to 16-bit UTF-16 code units with unsigned // saturation __m256i in_16 = _mm256_packus_epi32(_mm256_and_si256(in, v_7fffffff), _mm256_and_si256(nextin, v_7fffffff)); in_16 = _mm256_permute4x64_epi64(in_16, 0b11011000); // Try to apply UTF-16 => UTF-8 routine on 256 bits // (haswell/avx2_convert_utf16_to_utf8.cpp) if (_mm256_testz_si256(in_16, v_ff80)) { // ASCII fast path!!!! // 1. pack the bytes const __m128i utf8_packed = _mm_packus_epi16( _mm256_castsi256_si128(in_16), _mm256_extractf128_si256(in_16, 1)); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } // no bits set above 7th bit const __m256i one_byte_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_ff80), v_0000); const uint32_t one_byte_bitmask = static_cast(_mm256_movemask_epi8(one_byte_bytemask)); // no bits set above 11th bit const __m256i one_or_two_bytes_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_f800), v_0000); const uint32_t one_or_two_bytes_bitmask = static_cast(_mm256_movemask_epi8(one_or_two_bytes_bytemask)); if (one_or_two_bytes_bitmask == 0xffffffff) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const __m256i v_1f00 = _mm256_set1_epi16((int16_t)0x1f00); const __m256i v_003f = _mm256_set1_epi16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const __m256i t0 = _mm256_slli_epi16(in_16, 2); // t1 = [000a|aaaa|0000|0000] const __m256i t1 = _mm256_and_si256(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const __m256i t2 = _mm256_and_si256(in_16, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const __m256i t3 = _mm256_or_si256(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m256i t4 = _mm256_or_si256(t3, v_c080); // 2. merge ASCII and 2-byte codewords const __m256i utf8_unpacked = _mm256_blendv_epi8(t4, in_16, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup const uint32_t M0 = one_byte_bitmask & 0x55555555; const uint32_t M1 = M0 >> 7; const uint32_t M2 = (M1 | M0) & 0x00ff00ff; // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2)][0]; const uint8_t *row_2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2 >> 16)][0]; const __m128i shuffle = _mm_loadu_si128((__m128i *)(row + 1)); const __m128i shuffle_2 = _mm_loadu_si128((__m128i *)(row_2 + 1)); const __m256i utf8_packed = _mm256_shuffle_epi8( utf8_unpacked, _mm256_setr_m128i(shuffle, shuffle_2)); // 5. store bytes _mm_storeu_si128((__m128i *)utf8_output, _mm256_castsi256_si128(utf8_packed)); utf8_output += row[0]; _mm_storeu_si128((__m128i *)utf8_output, _mm256_extractf128_si256(utf8_packed, 1)); utf8_output += row_2[0]; // 6. adjust pointers buf += 16; continue; } // Must check for overflow in packing const __m256i saturation_bytemask = _mm256_cmpeq_epi32( _mm256_and_si256(_mm256_or_si256(in, nextin), v_ffff0000), v_0000); const uint32_t saturation_bitmask = static_cast(_mm256_movemask_epi8(saturation_bytemask)); if (saturation_bitmask == 0xffffffff) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes const __m256i v_d800 = _mm256_set1_epi16((uint16_t)0xd800); forbidden_bytemask = _mm256_or_si256( forbidden_bytemask, _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_f800), v_d800)); const __m256i dup_even = _mm256_setr_epi16( 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e, 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) _mm256_set1_epi16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const __m256i t0 = _mm256_shuffle_epi8(in_16, dup_even); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const __m256i t1 = _mm256_and_si256(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const __m256i t2 = _mm256_or_si256(t1, simdutf_vec(0b1000000000000000)); // [aaaa|bbbb|bbcc|cccc] => [0000|aaaa|bbbb|bbcc] const __m256i s0 = _mm256_srli_epi16(in_16, 4); // [0000|aaaa|bbbb|bbcc] => [0000|aaaa|bbbb|bb00] const __m256i s1 = _mm256_and_si256(s0, simdutf_vec(0b0000111111111100)); // [0000|aaaa|bbbb|bb00] => [00bb|bbbb|0000|aaaa] const __m256i s2 = _mm256_maddubs_epi16(s1, simdutf_vec(0x0140)); // [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const __m256i s3 = _mm256_or_si256(s2, simdutf_vec(0b1100000011100000)); const __m256i m0 = _mm256_andnot_si256(one_or_two_bytes_bytemask, simdutf_vec(0b0100000000000000)); const __m256i s4 = _mm256_xor_si256(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const __m256i out0 = _mm256_unpacklo_epi16(t2, s4); const __m256i out1 = _mm256_unpackhi_epi16(t2, s4); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint32_t mask = (one_byte_bitmask & 0x55555555) | (one_or_two_bytes_bitmask & 0xaaaaaaaa); // Due to the wider registers, the following path is less likely to be // useful. /*if(mask == 0) { // We only have three-byte code units. Use fast path. const __m256i shuffle = _mm256_setr_epi8(2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1, 2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1); const __m256i utf8_0 = _mm256_shuffle_epi8(out0, shuffle); const __m256i utf8_1 = _mm256_shuffle_epi8(out1, shuffle); _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_0)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_0,1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_1,1)); utf8_output += 12; buf += 16; continue; }*/ const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const __m128i shuffle0 = _mm_loadu_si128((__m128i *)(row0 + 1)); const __m128i utf8_0 = _mm_shuffle_epi8(_mm256_castsi256_si128(out0), shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const __m128i shuffle1 = _mm_loadu_si128((__m128i *)(row1 + 1)); const __m128i utf8_1 = _mm_shuffle_epi8(_mm256_castsi256_si128(out1), shuffle1); const uint8_t mask2 = static_cast(mask >> 16); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask2][0]; const __m128i shuffle2 = _mm_loadu_si128((__m128i *)(row2 + 1)); const __m128i utf8_2 = _mm_shuffle_epi8(_mm256_extractf128_si256(out0, 1), shuffle2); const uint8_t mask3 = static_cast(mask >> 24); const uint8_t *row3 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask3][0]; const __m128i shuffle3 = _mm_loadu_si128((__m128i *)(row3 + 1)); const __m128i utf8_3 = _mm_shuffle_epi8(_mm256_extractf128_si256(out1, 1), shuffle3); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += row0[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += row1[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_2); utf8_output += row2[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_3); utf8_output += row3[0]; buf += 16; } else { // case: at least one 32-bit word is larger than 0xFFFF <=> it will // produce four UTF-8 bytes. Let us do a scalar fallback. It may seem // wasteful to use scalar code, but being efficient with SIMD may require // large, non-trivial tables? size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { // 1-byte (ASCII) *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { // 2-byte *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { // 3-byte if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, utf8_output); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // 4-byte if (word > 0x10FFFF) { return std::make_pair(nullptr, utf8_output); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while // check for invalid input const __m256i v_10ffff = _mm256_set1_epi32((uint32_t)0x10ffff); if (static_cast(_mm256_movemask_epi8(_mm256_cmpeq_epi32( _mm256_max_epu32(running_max, v_10ffff), v_10ffff))) != 0xffffffff) { return std::make_pair(nullptr, utf8_output); } if (static_cast(_mm256_movemask_epi8(forbidden_bytemask)) != 0) { return std::make_pair(nullptr, utf8_output); } return std::make_pair(buf, utf8_output); } std::pair avx2_convert_utf32_to_utf8_with_errors(const char32_t *buf, size_t len, char *utf8_output) { const char32_t *end = buf + len; const char32_t *start = buf; const __m256i v_0000 = _mm256_setzero_si256(); const __m256i v_ffff0000 = _mm256_set1_epi32((uint32_t)0xffff0000); const __m256i v_ff80 = _mm256_set1_epi16((uint16_t)0xff80); const __m256i v_f800 = _mm256_set1_epi16((uint16_t)0xf800); const __m256i v_c080 = _mm256_set1_epi16((uint16_t)0xc080); const __m256i v_7fffffff = _mm256_set1_epi32((uint32_t)0x7fffffff); const __m256i v_10ffff = _mm256_set1_epi32((uint32_t)0x10ffff); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m256i in = _mm256_loadu_si256((__m256i *)buf); __m256i nextin = _mm256_loadu_si256((__m256i *)buf + 1); // Check for too large input const __m256i max_input = _mm256_max_epu32(_mm256_max_epu32(in, nextin), v_10ffff); if (static_cast(_mm256_movemask_epi8( _mm256_cmpeq_epi32(max_input, v_10ffff))) != 0xffffffff) { return std::make_pair(result(error_code::TOO_LARGE, buf - start), utf8_output); } // Pack 32-bit UTF-32 code units to 16-bit UTF-16 code units with unsigned // saturation __m256i in_16 = _mm256_packus_epi32(_mm256_and_si256(in, v_7fffffff), _mm256_and_si256(nextin, v_7fffffff)); in_16 = _mm256_permute4x64_epi64(in_16, 0b11011000); // Try to apply UTF-16 => UTF-8 routine on 256 bits // (haswell/avx2_convert_utf16_to_utf8.cpp) if (_mm256_testz_si256(in_16, v_ff80)) { // ASCII fast path!!!! // 1. pack the bytes const __m128i utf8_packed = _mm_packus_epi16( _mm256_castsi256_si128(in_16), _mm256_extractf128_si256(in_16, 1)); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } // no bits set above 7th bit const __m256i one_byte_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_ff80), v_0000); const uint32_t one_byte_bitmask = static_cast(_mm256_movemask_epi8(one_byte_bytemask)); // no bits set above 11th bit const __m256i one_or_two_bytes_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_f800), v_0000); const uint32_t one_or_two_bytes_bitmask = static_cast(_mm256_movemask_epi8(one_or_two_bytes_bytemask)); if (one_or_two_bytes_bitmask == 0xffffffff) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const __m256i v_1f00 = _mm256_set1_epi16((int16_t)0x1f00); const __m256i v_003f = _mm256_set1_epi16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const __m256i t0 = _mm256_slli_epi16(in_16, 2); // t1 = [000a|aaaa|0000|0000] const __m256i t1 = _mm256_and_si256(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const __m256i t2 = _mm256_and_si256(in_16, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const __m256i t3 = _mm256_or_si256(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m256i t4 = _mm256_or_si256(t3, v_c080); // 2. merge ASCII and 2-byte codewords const __m256i utf8_unpacked = _mm256_blendv_epi8(t4, in_16, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup const uint32_t M0 = one_byte_bitmask & 0x55555555; const uint32_t M1 = M0 >> 7; const uint32_t M2 = (M1 | M0) & 0x00ff00ff; // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2)][0]; const uint8_t *row_2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[uint8_t(M2 >> 16)][0]; const __m128i shuffle = _mm_loadu_si128((__m128i *)(row + 1)); const __m128i shuffle_2 = _mm_loadu_si128((__m128i *)(row_2 + 1)); const __m256i utf8_packed = _mm256_shuffle_epi8( utf8_unpacked, _mm256_setr_m128i(shuffle, shuffle_2)); // 5. store bytes _mm_storeu_si128((__m128i *)utf8_output, _mm256_castsi256_si128(utf8_packed)); utf8_output += row[0]; _mm_storeu_si128((__m128i *)utf8_output, _mm256_extractf128_si256(utf8_packed, 1)); utf8_output += row_2[0]; // 6. adjust pointers buf += 16; continue; } // Must check for overflow in packing const __m256i saturation_bytemask = _mm256_cmpeq_epi32( _mm256_and_si256(_mm256_or_si256(in, nextin), v_ffff0000), v_0000); const uint32_t saturation_bitmask = static_cast(_mm256_movemask_epi8(saturation_bytemask)); if (saturation_bitmask == 0xffffffff) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes // Check for illegal surrogate code units const __m256i v_d800 = _mm256_set1_epi16((uint16_t)0xd800); const __m256i forbidden_bytemask = _mm256_cmpeq_epi16(_mm256_and_si256(in_16, v_f800), v_d800); if (static_cast(_mm256_movemask_epi8(forbidden_bytemask)) != 0x0) { return std::make_pair(result(error_code::SURROGATE, buf - start), utf8_output); } const __m256i dup_even = _mm256_setr_epi16( 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e, 0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) _mm256_set1_epi16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const __m256i t0 = _mm256_shuffle_epi8(in_16, dup_even); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const __m256i t1 = _mm256_and_si256(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const __m256i t2 = _mm256_or_si256(t1, simdutf_vec(0b1000000000000000)); // [aaaa|bbbb|bbcc|cccc] => [0000|aaaa|bbbb|bbcc] const __m256i s0 = _mm256_srli_epi16(in_16, 4); // [0000|aaaa|bbbb|bbcc] => [0000|aaaa|bbbb|bb00] const __m256i s1 = _mm256_and_si256(s0, simdutf_vec(0b0000111111111100)); // [0000|aaaa|bbbb|bb00] => [00bb|bbbb|0000|aaaa] const __m256i s2 = _mm256_maddubs_epi16(s1, simdutf_vec(0x0140)); // [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const __m256i s3 = _mm256_or_si256(s2, simdutf_vec(0b1100000011100000)); const __m256i m0 = _mm256_andnot_si256(one_or_two_bytes_bytemask, simdutf_vec(0b0100000000000000)); const __m256i s4 = _mm256_xor_si256(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const __m256i out0 = _mm256_unpacklo_epi16(t2, s4); const __m256i out1 = _mm256_unpackhi_epi16(t2, s4); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint32_t mask = (one_byte_bitmask & 0x55555555) | (one_or_two_bytes_bitmask & 0xaaaaaaaa); // Due to the wider registers, the following path is less likely to be // useful. /*if(mask == 0) { // We only have three-byte code units. Use fast path. const __m256i shuffle = _mm256_setr_epi8(2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1, 2,3,1,6,7,5,10,11,9,14,15,13,-1,-1,-1,-1); const __m256i utf8_0 = _mm256_shuffle_epi8(out0, shuffle); const __m256i utf8_1 = _mm256_shuffle_epi8(out1, shuffle); _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_0)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_castsi256_si128(utf8_1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_0,1)); utf8_output += 12; _mm_storeu_si128((__m128i*)utf8_output, _mm256_extractf128_si256(utf8_1,1)); utf8_output += 12; buf += 16; continue; }*/ const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const __m128i shuffle0 = _mm_loadu_si128((__m128i *)(row0 + 1)); const __m128i utf8_0 = _mm_shuffle_epi8(_mm256_castsi256_si128(out0), shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const __m128i shuffle1 = _mm_loadu_si128((__m128i *)(row1 + 1)); const __m128i utf8_1 = _mm_shuffle_epi8(_mm256_castsi256_si128(out1), shuffle1); const uint8_t mask2 = static_cast(mask >> 16); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask2][0]; const __m128i shuffle2 = _mm_loadu_si128((__m128i *)(row2 + 1)); const __m128i utf8_2 = _mm_shuffle_epi8(_mm256_extractf128_si256(out0, 1), shuffle2); const uint8_t mask3 = static_cast(mask >> 24); const uint8_t *row3 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask3][0]; const __m128i shuffle3 = _mm_loadu_si128((__m128i *)(row3 + 1)); const __m128i utf8_3 = _mm_shuffle_epi8(_mm256_extractf128_si256(out1, 1), shuffle3); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += row0[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += row1[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_2); utf8_output += row2[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_3); utf8_output += row3[0]; buf += 16; } else { // case: at least one 32-bit word is larger than 0xFFFF <=> it will // produce four UTF-8 bytes. Let us do a scalar fallback. It may seem // wasteful to use scalar code, but being efficient with SIMD may require // large, non-trivial tables? size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { // 1-byte (ASCII) *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { // 2-byte *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { // 3-byte if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k), utf8_output); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // 4-byte if (word > 0x10FFFF) { return std::make_pair( result(error_code::TOO_LARGE, buf - start + k), utf8_output); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), utf8_output); } /* end file src/haswell/avx2_convert_utf32_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/haswell/avx2_convert_utf32_to_utf16.cpp */ template std::pair avx2_convert_utf32_to_utf16(const char32_t *buf, size_t len, char16_t *utf16_output) { const char32_t *end = buf + len; const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 __m256i forbidden_bytemask = _mm256_setzero_si256(); const __m256i v_ffff0000 = _mm256_set1_epi32((int32_t)0xffff0000); const __m256i v_f800 = _mm256_set1_epi32((uint32_t)0xf800); const __m256i v_d800 = _mm256_set1_epi32((uint32_t)0xd800); while (end - buf >= std::ptrdiff_t(8 + safety_margin)) { const __m256i in = _mm256_loadu_si256((__m256i *)buf); if (simdutf_likely(_mm256_testz_si256(in, v_ffff0000))) { // no bits set above 16th bit <=> can pack to UTF16 // without surrogate pairs forbidden_bytemask = _mm256_or_si256( forbidden_bytemask, _mm256_cmpeq_epi32(_mm256_and_si256(in, v_f800), v_d800)); __m128i utf16_packed = _mm_packus_epi32(_mm256_castsi256_si128(in), _mm256_extractf128_si256(in, 1)); if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); utf16_packed = _mm_shuffle_epi8(utf16_packed, swap); } _mm_storeu_si128((__m128i *)utf16_output, utf16_packed); utf16_output += 8; buf += 8; } else { size_t forward = 7; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, utf16_output); } *utf16_output++ = big_endian ? char16_t((uint16_t(word) >> 8) | (uint16_t(word) << 8)) : char16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return std::make_pair(nullptr, utf16_output); } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (big_endian) { high_surrogate = uint16_t((high_surrogate >> 8) | (high_surrogate << 8)); low_surrogate = uint16_t((low_surrogate >> 8) | (low_surrogate << 8)); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } } buf += k; } } // check for invalid input if (static_cast(_mm256_movemask_epi8(forbidden_bytemask)) != 0) { return std::make_pair(nullptr, utf16_output); } return std::make_pair(buf, utf16_output); } template std::pair avx2_convert_utf32_to_utf16_with_errors(const char32_t *buf, size_t len, char16_t *utf16_output) { const char32_t *start = buf; const char32_t *end = buf + len; const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 const __m256i v_ffff0000 = _mm256_set1_epi32((int32_t)0xffff0000); const __m256i v_f800 = _mm256_set1_epi32((uint32_t)0xf800); const __m256i v_d800 = _mm256_set1_epi32((uint32_t)0xd800); while (end - buf >= std::ptrdiff_t(8 + safety_margin)) { const __m256i in = _mm256_loadu_si256((__m256i *)buf); if (simdutf_likely(_mm256_testz_si256(in, v_ffff0000))) { // no bits set above 16th bit <=> can pack to UTF16 without surrogate // pairs const __m256i forbidden_bytemask = _mm256_cmpeq_epi32(_mm256_and_si256(in, v_f800), v_d800); if (static_cast(_mm256_movemask_epi8(forbidden_bytemask)) != 0x0) { return std::make_pair(result(error_code::SURROGATE, buf - start), utf16_output); } __m128i utf16_packed = _mm_packus_epi32(_mm256_castsi256_si128(in), _mm256_extractf128_si256(in, 1)); if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); utf16_packed = _mm_shuffle_epi8(utf16_packed, swap); } _mm_storeu_si128((__m128i *)utf16_output, utf16_packed); utf16_output += 8; buf += 8; } else { size_t forward = 7; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k), utf16_output); } *utf16_output++ = big_endian ? char16_t((uint16_t(word) >> 8) | (uint16_t(word) << 8)) : char16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return std::make_pair( result(error_code::TOO_LARGE, buf - start + k), utf16_output); } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (big_endian) { high_surrogate = uint16_t((high_surrogate >> 8) | (high_surrogate << 8)); low_surrogate = uint16_t((low_surrogate >> 8) | (low_surrogate << 8)); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } } buf += k; } } return std::make_pair(result(error_code::SUCCESS, buf - start), utf16_output); } /* end file src/haswell/avx2_convert_utf32_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/haswell/avx2_convert_utf8_to_latin1.cpp */ // depends on "tables/utf8_to_utf16_tables.h" // Convert up to 12 bytes from utf8 to latin1 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). size_t convert_masked_utf8_to_latin1(const char *input, uint64_t utf8_end_of_code_point_mask, char *&latin1_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // const __m128i in = _mm_loadu_si128((__m128i *)input); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; // we are only processing 12 bytes in case it is not all ASCII if (utf8_end_of_code_point_mask == 0xfff) { // We process the data in chunks of 12 bytes. _mm_storeu_si128(reinterpret_cast<__m128i *>(latin1_output), in); latin1_output += 12; // We wrote 12 characters. return 12; // We consumed 1 bytes. } /// We do not have a fast path available, so we fallback. const uint8_t idx = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][1]; // this indicates an invalid input: if (idx >= 64) { return consumed; } // Here we should have (idx < 64), if not, there is a bug in the validation or // elsewhere. SIX (6) input code-code units this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. On // processors where pdep/pext is fast, we might be able to use a small lookup // table. const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi16(0x7f)); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi16(0x1f00)); __m128i composed = _mm_or_si128(ascii, _mm_srli_epi16(highbyte, 2)); const __m128i latin1_packed = _mm_packus_epi16(composed, composed); // writing 8 bytes even though we only care about the first 6 bytes. // performance note: it would be faster to use _mm_storeu_si128, we should // investigate. _mm_storel_epi64((__m128i *)latin1_output, latin1_packed); latin1_output += 6; // We wrote 6 bytes. return consumed; } /* end file src/haswell/avx2_convert_utf8_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 /* begin file src/haswell/avx2_base64.cpp */ /** * References and further reading: * * Wojciech Muła, Daniel Lemire, Base64 encoding and decoding at almost the * speed of a memory copy, Software: Practice and Experience 50 (2), 2020. * https://arxiv.org/abs/1910.05109 * * Wojciech Muła, Daniel Lemire, Faster Base64 Encoding and Decoding using AVX2 * Instructions, ACM Transactions on the Web 12 (3), 2018. * https://arxiv.org/abs/1704.00605 * * Simon Josefsson. 2006. The Base16, Base32, and Base64 Data Encodings. * https://tools.ietf.org/html/rfc4648. (2006). Internet Engineering Task Force, * Request for Comments: 4648. * * Alfred Klomp. 2014a. Fast Base64 encoding/decoding with SSE vectorization. * http://www.alfredklomp.com/programming/sse-base64/. (2014). * * Alfred Klomp. 2014b. Fast Base64 stream encoder/decoder in C99, with SIMD * acceleration. https://github.com/aklomp/base64. (2014). * * Hanson Char. 2014. A Fast and Correct Base 64 Codec. (2014). * https://aws.amazon.com/blogs/developer/a-fast-and-correct-base-64-codec/ * * Nick Kopp. 2013. Base64 Encoding on a GPU. * https://www.codeproject.com/Articles/276993/Base-Encoding-on-a-GPU. (2013). */ template simdutf_really_inline __m256i lookup_pshufb_improved(const __m256i input) { // Precomputed shuffle masks for K = 1 to 16 // credit: Wojciech Muła __m256i result = _mm256_subs_epu8(input, _mm256_set1_epi8(51)); const __m256i less = _mm256_cmpgt_epi8(_mm256_set1_epi8(26), input); result = _mm256_or_si256(result, _mm256_and_si256(less, _mm256_set1_epi8(13))); __m256i shift_LUT; if (base64_url) { shift_LUT = _mm256_setr_epi8( 'a' - 26, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '-' - 62, '_' - 63, 'A', 0, 0, 'a' - 26, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '-' - 62, '_' - 63, 'A', 0, 0); } else { shift_LUT = _mm256_setr_epi8( 'a' - 26, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '+' - 62, '/' - 63, 'A', 0, 0, 'a' - 26, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '+' - 62, '/' - 63, 'A', 0, 0); } result = _mm256_shuffle_epi8(shift_LUT, result); return _mm256_add_epi8(result, input); } simdutf_really_inline __m256i insert_line_feed32(__m256i input, int K) { static const uint8_t low_table[16][32] = { {0x80, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 0x80, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 0x80, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 0x80, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 0x80, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 0x80, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 0x80, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 0x80, 7, 8, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 7, 0x80, 8, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 0x80, 9, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0x80, 10, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0x80, 11, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0x80, 12, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 0x80, 13, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0x80, 14, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0x80, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}}; static const uint8_t high_table[16][32] = { {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0x80, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 0x80, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 0x80, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 0x80, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 0x80, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 0x80, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 0x80, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 0x80, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 0x80, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 0x80, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0x80, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0x80, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0x80, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 0x80, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0x80, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0x80}}; __m256i line_feed_vector = _mm256_set1_epi8('\n'); if (K >= 16) { __m256i mask = _mm256_loadu_si256((const __m256i *)high_table[K - 16]); __m256i lf_pos = _mm256_cmpeq_epi8(mask, _mm256_set1_epi8(static_cast(0x80))); __m256i shuffled = _mm256_shuffle_epi8(input, mask); __m256i result = _mm256_blendv_epi8(shuffled, line_feed_vector, lf_pos); return result; } // Shift input right by 1 byte __m256i shift = _mm256_alignr_epi8( input, _mm256_permute2x128_si256(input, input, 0x21), 15); input = _mm256_blend_epi32(input, shift, 0xF0); __m256i mask = _mm256_loadu_si256((const __m256i *)low_table[K]); __m256i lf_pos = _mm256_cmpeq_epi8(mask, _mm256_set1_epi8(static_cast(0x80))); __m256i shuffled = _mm256_shuffle_epi8(input, mask); __m256i result = _mm256_blendv_epi8(shuffled, line_feed_vector, lf_pos); return result; } template size_t avx2_encode_base64_impl(char *dst, const char *src, size_t srclen, base64_options options, size_t line_length = simdutf::default_line_length) { size_t offset = 0; if (line_length < 4) { line_length = 4; // We do not support line_length less than 4 } // credit: Wojciech Muła const uint8_t *input = (const uint8_t *)src; uint8_t *out = (uint8_t *)dst; const __m256i shuf = _mm256_set_epi8(10, 11, 9, 10, 7, 8, 6, 7, 4, 5, 3, 4, 1, 2, 0, 1, 10, 11, 9, 10, 7, 8, 6, 7, 4, 5, 3, 4, 1, 2, 0, 1); size_t i = 0; for (; i + 100 <= srclen; i += 96) { const __m128i lo0 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 0)); const __m128i hi0 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 1)); const __m128i lo1 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 2)); const __m128i hi1 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 3)); const __m128i lo2 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 4)); const __m128i hi2 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 5)); const __m128i lo3 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 6)); const __m128i hi3 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 7)); __m256i in0 = _mm256_shuffle_epi8(_mm256_set_m128i(hi0, lo0), shuf); __m256i in1 = _mm256_shuffle_epi8(_mm256_set_m128i(hi1, lo1), shuf); __m256i in2 = _mm256_shuffle_epi8(_mm256_set_m128i(hi2, lo2), shuf); __m256i in3 = _mm256_shuffle_epi8(_mm256_set_m128i(hi3, lo3), shuf); const __m256i t0_0 = _mm256_and_si256(in0, _mm256_set1_epi32(0x0fc0fc00)); const __m256i t0_1 = _mm256_and_si256(in1, _mm256_set1_epi32(0x0fc0fc00)); const __m256i t0_2 = _mm256_and_si256(in2, _mm256_set1_epi32(0x0fc0fc00)); const __m256i t0_3 = _mm256_and_si256(in3, _mm256_set1_epi32(0x0fc0fc00)); const __m256i t1_0 = _mm256_mulhi_epu16(t0_0, _mm256_set1_epi32(0x04000040)); const __m256i t1_1 = _mm256_mulhi_epu16(t0_1, _mm256_set1_epi32(0x04000040)); const __m256i t1_2 = _mm256_mulhi_epu16(t0_2, _mm256_set1_epi32(0x04000040)); const __m256i t1_3 = _mm256_mulhi_epu16(t0_3, _mm256_set1_epi32(0x04000040)); const __m256i t2_0 = _mm256_and_si256(in0, _mm256_set1_epi32(0x003f03f0)); const __m256i t2_1 = _mm256_and_si256(in1, _mm256_set1_epi32(0x003f03f0)); const __m256i t2_2 = _mm256_and_si256(in2, _mm256_set1_epi32(0x003f03f0)); const __m256i t2_3 = _mm256_and_si256(in3, _mm256_set1_epi32(0x003f03f0)); const __m256i t3_0 = _mm256_mullo_epi16(t2_0, _mm256_set1_epi32(0x01000010)); const __m256i t3_1 = _mm256_mullo_epi16(t2_1, _mm256_set1_epi32(0x01000010)); const __m256i t3_2 = _mm256_mullo_epi16(t2_2, _mm256_set1_epi32(0x01000010)); const __m256i t3_3 = _mm256_mullo_epi16(t2_3, _mm256_set1_epi32(0x01000010)); const __m256i input0 = _mm256_or_si256(t1_0, t3_0); const __m256i input1 = _mm256_or_si256(t1_1, t3_1); const __m256i input2 = _mm256_or_si256(t1_2, t3_2); const __m256i input3 = _mm256_or_si256(t1_3, t3_3); if (use_lines) { if (line_length >= 32) { // fast path __m256i result; result = lookup_pshufb_improved(input0); if (offset + 32 > line_length) { size_t location_end = line_length - offset; size_t to_move = 32 - location_end; // We could do this, or extract instead. _mm256_storeu_si256(reinterpret_cast<__m256i *>(out + 1), result); _mm256_storeu_si256( reinterpret_cast<__m256i *>(out), insert_line_feed32(result, static_cast(location_end))); offset = to_move; out += 32 + 1; } else { _mm256_storeu_si256(reinterpret_cast<__m256i *>(out), result); offset += 32; out += 32; } result = lookup_pshufb_improved(input1); if (offset + 32 > line_length) { size_t location_end = line_length - offset; size_t to_move = 32 - location_end; // We could do this, or extract instead. _mm256_storeu_si256(reinterpret_cast<__m256i *>(out + 1), result); _mm256_storeu_si256( reinterpret_cast<__m256i *>(out), insert_line_feed32(result, static_cast(location_end))); // see above. // out[32] = static_cast(_mm256_extract_epi8(result, 31)); offset = to_move; out += 32 + 1; } else { _mm256_storeu_si256(reinterpret_cast<__m256i *>(out), result); offset += 32; out += 32; } result = lookup_pshufb_improved(input2); if (offset + 32 > line_length) { size_t location_end = line_length - offset; size_t to_move = 32 - location_end; // We could do this, or extract instead. _mm256_storeu_si256(reinterpret_cast<__m256i *>(out + 1), result); _mm256_storeu_si256( reinterpret_cast<__m256i *>(out), insert_line_feed32(result, static_cast(location_end))); // see above. // out[32] = static_cast(_mm256_extract_epi8(result, 31)); offset = to_move; out += 32 + 1; } else { _mm256_storeu_si256(reinterpret_cast<__m256i *>(out), result); offset += 32; out += 32; } result = lookup_pshufb_improved(input3); if (offset + 32 > line_length) { size_t location_end = line_length - offset; size_t to_move = 32 - location_end; // We could do this, or extract instead. _mm256_storeu_si256(reinterpret_cast<__m256i *>(out + 1), result); _mm256_storeu_si256( reinterpret_cast<__m256i *>(out), insert_line_feed32(result, static_cast(location_end))); // see above. // out[32] = static_cast(_mm256_extract_epi8(result, 31)); offset = to_move; out += 32 + 1; } else { _mm256_storeu_si256(reinterpret_cast<__m256i *>(out), result); offset += 32; out += 32; } } else { // slow path // could be optimized uint8_t buffer[128]; _mm256_storeu_si256(reinterpret_cast<__m256i *>(buffer), lookup_pshufb_improved(input0)); _mm256_storeu_si256(reinterpret_cast<__m256i *>(buffer + 32), lookup_pshufb_improved(input1)); _mm256_storeu_si256(reinterpret_cast<__m256i *>(buffer + 64), lookup_pshufb_improved(input2)); _mm256_storeu_si256(reinterpret_cast<__m256i *>(buffer + 96), lookup_pshufb_improved(input3)); size_t out_pos = 0; size_t local_offset = offset; for (size_t j = 0; j < 128;) { if (local_offset == line_length) { out[out_pos++] = '\n'; local_offset = 0; } out[out_pos++] = buffer[j++]; local_offset++; } offset = local_offset; out += out_pos; } } else { _mm256_storeu_si256(reinterpret_cast<__m256i *>(out), lookup_pshufb_improved(input0)); _mm256_storeu_si256(reinterpret_cast<__m256i *>(out + 32), lookup_pshufb_improved(input1)); _mm256_storeu_si256(reinterpret_cast<__m256i *>(out + 64), lookup_pshufb_improved(input2)); _mm256_storeu_si256(reinterpret_cast<__m256i *>(out + 96), lookup_pshufb_improved(input3)); out += 128; } } for (; i + 28 <= srclen; i += 24) { // lo = [xxxx|DDDC|CCBB|BAAA] // hi = [xxxx|HHHG|GGFF|FEEE] const __m128i lo = _mm_loadu_si128(reinterpret_cast(input + i)); const __m128i hi = _mm_loadu_si128(reinterpret_cast(input + i + 4 * 3)); // bytes from groups A, B and C are needed in separate 32-bit lanes // in = [0HHH|0GGG|0FFF|0EEE[0DDD|0CCC|0BBB|0AAA] __m256i in = _mm256_shuffle_epi8(_mm256_set_m128i(hi, lo), shuf); // this part is well commented in encode.sse.cpp const __m256i t0 = _mm256_and_si256(in, _mm256_set1_epi32(0x0fc0fc00)); const __m256i t1 = _mm256_mulhi_epu16(t0, _mm256_set1_epi32(0x04000040)); const __m256i t2 = _mm256_and_si256(in, _mm256_set1_epi32(0x003f03f0)); const __m256i t3 = _mm256_mullo_epi16(t2, _mm256_set1_epi32(0x01000010)); const __m256i indices = _mm256_or_si256(t1, t3); if (use_lines) { if (line_length >= 32) { // fast path _mm256_storeu_si256(reinterpret_cast<__m256i *>(out), lookup_pshufb_improved(indices)); if (offset + 32 > line_length) { size_t location_end = line_length - offset; size_t to_move = 32 - location_end; std::memmove(out + location_end + 1, out + location_end, to_move); out[location_end] = '\n'; offset = to_move; out += 32 + 1; } else { offset += 32; out += 32; } } else { // slow path // could be optimized alignas(32) uint8_t buffer[32]; _mm256_storeu_si256(reinterpret_cast<__m256i *>(buffer), lookup_pshufb_improved(indices)); std::memcpy(out, buffer, 32); size_t out_pos = 0; size_t local_offset = offset; for (size_t j = 0; j < 32;) { if (local_offset == line_length) { out[out_pos++] = '\n'; local_offset = 0; } out[out_pos++] = buffer[j++]; local_offset++; } offset = local_offset; out += out_pos; } } else { _mm256_storeu_si256(reinterpret_cast<__m256i *>(out), lookup_pshufb_improved(indices)); out += 32; } } return ((char *)out - (char *)dst) + scalar::base64::tail_encode_base64_impl( (char *)out, src + i, srclen - i, options, line_length, offset); } template size_t encode_base64(char *dst, const char *src, size_t srclen, base64_options options) { return avx2_encode_base64_impl(dst, src, srclen, options); } static inline void compress(__m128i data, uint16_t mask, char *output) { if (mask == 0) { _mm_storeu_si128(reinterpret_cast<__m128i *>(output), data); return; } // this particular implementation was inspired by work done by @animetosho // we do it in two steps, first 8 bytes and then second 8 bytes uint8_t mask1 = uint8_t(mask); // least significant 8 bits uint8_t mask2 = uint8_t(mask >> 8); // most significant 8 bits // next line just loads the 64-bit values thintable_epi8[mask1] and // thintable_epi8[mask2] into a 128-bit register, using only // two instructions on most compilers. __m128i shufmask = _mm_set_epi64x(tables::base64::thintable_epi8[mask2], tables::base64::thintable_epi8[mask1]); // we increment by 0x08 the second half of the mask shufmask = _mm_add_epi8(shufmask, _mm_set_epi32(0x08080808, 0x08080808, 0, 0)); // this is the version "nearly pruned" __m128i pruned = _mm_shuffle_epi8(data, shufmask); // we still need to put the two halves together. // we compute the popcount of the first half: int pop1 = tables::base64::BitsSetTable256mul2[mask1]; // then load the corresponding mask, what it does is to write // only the first pop1 bytes from the first 8 bytes, and then // it fills in with the bytes from the second 8 bytes + some filling // at the end. __m128i compactmask = _mm_loadu_si128(reinterpret_cast( tables::base64::pshufb_combine_table + pop1 * 8)); __m128i answer = _mm_shuffle_epi8(pruned, compactmask); _mm_storeu_si128(reinterpret_cast<__m128i *>(output), answer); } // --- decoding ----------------------------------------------- template simdutf_really_inline void compress(__m256i data, uint32_t mask, char *output) { if (mask == 0) { _mm256_storeu_si256(reinterpret_cast<__m256i *>(output), data); return; } compress(_mm256_castsi256_si128(data), uint16_t(mask), output); compress(_mm256_extracti128_si256(data, 1), uint16_t(mask >> 16), output + count_ones(~mask & 0xFFFF)); } template simdutf_really_inline void base64_decode(char *out, __m256i str) { // credit: aqrit const __m256i pack_shuffle = _mm256_setr_epi8(2, 1, 0, 6, 5, 4, 10, 9, 8, 14, 13, 12, -1, -1, -1, -1, 2, 1, 0, 6, 5, 4, 10, 9, 8, 14, 13, 12, -1, -1, -1, -1); const __m256i t0 = _mm256_maddubs_epi16(str, _mm256_set1_epi32(0x01400140)); const __m256i t1 = _mm256_madd_epi16(t0, _mm256_set1_epi32(0x00011000)); const __m256i t2 = _mm256_shuffle_epi8(t1, pack_shuffle); // Store the output: _mm_storeu_si128((__m128i *)out, _mm256_castsi256_si128(t2)); _mm_storeu_si128((__m128i *)(out + 12), _mm256_extracti128_si256(t2, 1)); } template simdutf_really_inline void base64_decode_block(char *out, const char *src) { base64_decode(out, _mm256_loadu_si256(reinterpret_cast(src))); base64_decode(out + 24, _mm256_loadu_si256( reinterpret_cast(src + 32))); } template simdutf_really_inline void base64_decode_block_safe(char *out, const char *src) { base64_decode(out, _mm256_loadu_si256(reinterpret_cast(src))); alignas(32) char buffer[32]; // We enforce safety with a buffer. base64_decode( buffer, _mm256_loadu_si256(reinterpret_cast(src + 32))); std::memcpy(out + 24, buffer, 24); } // --- decoding - base64 class -------------------------------- class block64 { __m256i chunks[2]; public: // The caller of this function is responsible to ensure that there are 64 // bytes available from reading at src. simdutf_really_inline block64(const char *src) { chunks[0] = _mm256_loadu_si256(reinterpret_cast(src)); chunks[1] = _mm256_loadu_si256(reinterpret_cast(src + 32)); } // The caller of this function is responsible to ensure that there are 128 // bytes available from reading at src. simdutf_really_inline block64(const char16_t *src) { const auto m1 = _mm256_loadu_si256(reinterpret_cast(src)); const auto m2 = _mm256_loadu_si256(reinterpret_cast(src + 16)); const auto m3 = _mm256_loadu_si256(reinterpret_cast(src + 32)); const auto m4 = _mm256_loadu_si256(reinterpret_cast(src + 48)); const auto m1p = _mm256_permute2x128_si256(m1, m2, 0x20); const auto m2p = _mm256_permute2x128_si256(m1, m2, 0x31); const auto m3p = _mm256_permute2x128_si256(m3, m4, 0x20); const auto m4p = _mm256_permute2x128_si256(m3, m4, 0x31); chunks[0] = _mm256_packus_epi16(m1p, m2p); chunks[1] = _mm256_packus_epi16(m3p, m4p); } simdutf_really_inline void copy_block(char *output) { _mm256_storeu_si256(reinterpret_cast<__m256i *>(output), chunks[0]); _mm256_storeu_si256(reinterpret_cast<__m256i *>(output + 32), chunks[1]); } // decode 64 bytes and output 48 bytes simdutf_really_inline void base64_decode_block(char *out) { base64_decode(out, chunks[0]); base64_decode(out + 24, chunks[1]); } simdutf_really_inline void base64_decode_block_safe(char *out) { base64_decode(out, chunks[0]); alignas(32) char buffer[32]; // We enforce safety with a buffer. base64_decode(buffer, chunks[1]); std::memcpy(out + 24, buffer, 24); } template simdutf_really_inline uint64_t to_base64_mask(uint64_t *error) { uint32_t err0 = 0; uint32_t err1 = 0; uint64_t m0 = to_base64_mask( &chunks[0], &err0); uint64_t m1 = to_base64_mask( &chunks[1], &err1); if (!ignore_garbage) { *error = err0 | ((uint64_t)err1 << 32); } return m0 | (m1 << 32); } template simdutf_really_inline uint32_t to_base64_mask(__m256i *src, uint32_t *error) { const __m256i ascii_space_tbl = _mm256_setr_epi8(0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xa, 0x0, 0xc, 0xd, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xa, 0x0, 0xc, 0xd, 0x0, 0x0); // credit: aqrit __m256i delta_asso; if (default_or_url) { delta_asso = _mm256_setr_epi8( 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x16, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x16); } else if (base64_url) { delta_asso = _mm256_setr_epi8(0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xF, 0x0, 0xF, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xF, 0x0, 0xF); } else { delta_asso = _mm256_setr_epi8( 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x0F, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x0F); } __m256i delta_values; if (default_or_url) { delta_values = _mm256_setr_epi8( uint8_t(0xBF), uint8_t(0xE0), uint8_t(0xB9), uint8_t(0x13), uint8_t(0x04), uint8_t(0xBF), uint8_t(0xBF), uint8_t(0xB9), uint8_t(0xB9), uint8_t(0x00), uint8_t(0xFF), uint8_t(0x11), uint8_t(0xFF), uint8_t(0xBF), uint8_t(0x10), uint8_t(0xB9), uint8_t(0xBF), uint8_t(0xE0), uint8_t(0xB9), uint8_t(0x13), uint8_t(0x04), uint8_t(0xBF), uint8_t(0xBF), uint8_t(0xB9), uint8_t(0xB9), uint8_t(0x00), uint8_t(0xFF), uint8_t(0x11), uint8_t(0xFF), uint8_t(0xBF), uint8_t(0x10), uint8_t(0xB9)); } else if (base64_url) { delta_values = _mm256_setr_epi8( 0x0, 0x0, 0x0, 0x13, 0x4, uint8_t(0xBF), uint8_t(0xBF), uint8_t(0xB9), uint8_t(0xB9), 0x0, 0x11, uint8_t(0xC3), uint8_t(0xBF), uint8_t(0xE0), uint8_t(0xB9), uint8_t(0xB9), 0x0, 0x0, 0x0, 0x13, 0x4, uint8_t(0xBF), uint8_t(0xBF), uint8_t(0xB9), uint8_t(0xB9), 0x0, 0x11, uint8_t(0xC3), uint8_t(0xBF), uint8_t(0xE0), uint8_t(0xB9), uint8_t(0xB9)); } else { delta_values = _mm256_setr_epi8( int8_t(0x00), int8_t(0x00), int8_t(0x00), int8_t(0x13), int8_t(0x04), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9), int8_t(0x00), int8_t(0x10), int8_t(0xC3), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9), int8_t(0x00), int8_t(0x00), int8_t(0x00), int8_t(0x13), int8_t(0x04), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9), int8_t(0x00), int8_t(0x10), int8_t(0xC3), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9)); } __m256i check_asso; if (default_or_url) { check_asso = _mm256_setr_epi8( 0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0E, 0x0B, 0x06, 0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0E, 0x0B, 0x06); } else if (base64_url) { check_asso = _mm256_setr_epi8(0xD, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3, 0x7, 0xB, 0xE, 0xB, 0x6, 0xD, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3, 0x7, 0xB, 0xE, 0xB, 0x6); } else { check_asso = _mm256_setr_epi8( 0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0B, 0x0B, 0x0F, 0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0B, 0x0B, 0x0F); } __m256i check_values; if (default_or_url) { check_values = _mm256_setr_epi8( uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0xCF), uint8_t(0xBF), uint8_t(0xD5), uint8_t(0xA6), uint8_t(0xB5), uint8_t(0xA1), uint8_t(0x00), uint8_t(0x80), uint8_t(0x00), uint8_t(0x80), uint8_t(0x00), uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0xCF), uint8_t(0xBF), uint8_t(0xD5), uint8_t(0xA6), uint8_t(0xB5), uint8_t(0xA1), uint8_t(0x00), uint8_t(0x80), uint8_t(0x00), uint8_t(0x80), uint8_t(0x00), uint8_t(0x80)); } else if (base64_url) { check_values = _mm256_setr_epi8( uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0xCF), uint8_t(0xBF), uint8_t(0xB6), uint8_t(0xA6), uint8_t(0xB5), uint8_t(0xA1), 0x0, uint8_t(0x80), 0x0, uint8_t(0x80), 0x0, uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0xCF), uint8_t(0xBF), uint8_t(0xB6), uint8_t(0xA6), uint8_t(0xB5), uint8_t(0xA1), 0x0, uint8_t(0x80), 0x0, uint8_t(0x80), 0x0, uint8_t(0x80)); } else { check_values = _mm256_setr_epi8( int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0xCF), int8_t(0xBF), int8_t(0xD5), int8_t(0xA6), int8_t(0xB5), int8_t(0x86), int8_t(0xD1), int8_t(0x80), int8_t(0xB1), int8_t(0x80), int8_t(0x91), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0xCF), int8_t(0xBF), int8_t(0xD5), int8_t(0xA6), int8_t(0xB5), int8_t(0x86), int8_t(0xD1), int8_t(0x80), int8_t(0xB1), int8_t(0x80), int8_t(0x91), int8_t(0x80)); } const __m256i shifted = _mm256_srli_epi32(*src, 3); __m256i delta_hash = _mm256_avg_epu8(_mm256_shuffle_epi8(delta_asso, *src), shifted); if (default_or_url) { delta_hash = _mm256_and_si256(delta_hash, _mm256_set1_epi8(0xf)); } const __m256i check_hash = _mm256_avg_epu8(_mm256_shuffle_epi8(check_asso, *src), shifted); const __m256i out = _mm256_adds_epi8(_mm256_shuffle_epi8(delta_values, delta_hash), *src); const __m256i chk = _mm256_adds_epi8(_mm256_shuffle_epi8(check_values, check_hash), *src); const int mask = _mm256_movemask_epi8(chk); if (!ignore_garbage && mask) { __m256i ascii_space = _mm256_cmpeq_epi8(_mm256_shuffle_epi8(ascii_space_tbl, *src), *src); *error = (mask ^ _mm256_movemask_epi8(ascii_space)); } *src = out; return (uint32_t)mask; } simdutf_really_inline uint64_t compress_block(uint64_t mask, char *output) { if (is_power_of_two(mask)) { return compress_block_single(mask, output); } uint64_t nmask = ~mask; compress(chunks[0], uint32_t(mask), output); compress(chunks[1], uint32_t(mask >> 32), output + count_ones(nmask & 0xFFFFFFFF)); return count_ones(nmask); } simdutf_really_inline size_t compress_block_single(uint64_t mask, char *output) { const size_t pos64 = trailing_zeroes(mask); const int8_t pos = pos64 & 0xf; switch (pos64 >> 4) { case 0b00: { const __m128i lane0 = _mm256_extracti128_si256(chunks[0], 0); const __m128i lane1 = _mm256_extracti128_si256(chunks[0], 1); const __m128i v0 = _mm_set1_epi8(char(pos - 1)); const __m128i v1 = _mm_setr_epi8(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15); const __m128i v2 = _mm_cmpgt_epi8(v1, v0); const __m128i sh = _mm_sub_epi8(v1, v2); const __m128i compressed = _mm_shuffle_epi8(lane0, sh); _mm_storeu_si128((__m128i *)(output + 0 * 16), compressed); _mm_storeu_si128((__m128i *)(output + 1 * 16 - 1), lane1); _mm256_storeu_si256((__m256i *)(output + 2 * 16 - 1), chunks[1]); } break; case 0b01: { const __m128i lane0 = _mm256_extracti128_si256(chunks[0], 0); const __m128i lane1 = _mm256_extracti128_si256(chunks[0], 1); _mm_storeu_si128((__m128i *)(output + 0 * 16), lane0); const __m128i v0 = _mm_set1_epi8(char(pos - 1)); const __m128i v1 = _mm_setr_epi8(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15); const __m128i v2 = _mm_cmpgt_epi8(v1, v0); const __m128i sh = _mm_sub_epi8(v1, v2); const __m128i compressed = _mm_shuffle_epi8(lane1, sh); _mm_storeu_si128((__m128i *)(output + 1 * 16), compressed); _mm256_storeu_si256((__m256i *)(output + 2 * 16 - 1), chunks[1]); } break; case 0b10: { const __m128i lane2 = _mm256_extracti128_si256(chunks[1], 0); const __m128i lane3 = _mm256_extracti128_si256(chunks[1], 1); _mm256_storeu_si256((__m256i *)(output + 0 * 16), chunks[0]); const __m128i v0 = _mm_set1_epi8(char(pos - 1)); const __m128i v1 = _mm_setr_epi8(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15); const __m128i v2 = _mm_cmpgt_epi8(v1, v0); const __m128i sh = _mm_sub_epi8(v1, v2); const __m128i compressed = _mm_shuffle_epi8(lane2, sh); _mm_storeu_si128((__m128i *)(output + 2 * 16), compressed); _mm_storeu_si128((__m128i *)(output + 3 * 16 - 1), lane3); } break; case 0b11: { const __m128i lane2 = _mm256_extracti128_si256(chunks[1], 0); const __m128i lane3 = _mm256_extracti128_si256(chunks[1], 1); _mm256_storeu_si256((__m256i *)(output + 0 * 16), chunks[0]); _mm_storeu_si128((__m128i *)(output + 2 * 16), lane2); const __m128i v0 = _mm_set1_epi8(char(pos - 1)); const __m128i v1 = _mm_setr_epi8(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15); const __m128i v2 = _mm_cmpgt_epi8(v1, v0); const __m128i sh = _mm_sub_epi8(v1, v2); const __m128i compressed = _mm_shuffle_epi8(lane3, sh); _mm_storeu_si128((__m128i *)(output + 3 * 16), compressed); } break; } return 63; } }; /* end file src/haswell/avx2_base64.cpp */ #endif // SIMDUTF_FEATURE_BASE64 } // unnamed namespace } // namespace haswell } // namespace simdutf /* begin file src/generic/buf_block_reader.h */ namespace simdutf { namespace haswell { namespace { // Walks through a buffer in block-sized increments, loading the last part with // spaces template struct buf_block_reader { public: simdutf_really_inline buf_block_reader(const uint8_t *_buf, size_t _len); simdutf_really_inline size_t block_index(); simdutf_really_inline bool has_full_block() const; simdutf_really_inline const uint8_t *full_block() const; /** * Get the last block, padded with spaces. * * There will always be a last block, with at least 1 byte, unless len == 0 * (in which case this function fills the buffer with spaces and returns 0. In * particular, if len == STEP_SIZE there will be 0 full_blocks and 1 remainder * block with STEP_SIZE bytes and no spaces for padding. * * @return the number of effective characters in the last block. */ simdutf_really_inline size_t get_remainder(uint8_t *dst) const; simdutf_really_inline void advance(); private: const uint8_t *buf; const size_t len; const size_t lenminusstep; size_t idx; }; // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text_64(const uint8_t *text) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); for (size_t i = 0; i < sizeof(simd8x64); i++) { buf[i] = int8_t(text[i]) < ' ' ? '_' : int8_t(text[i]); } buf[sizeof(simd8x64)] = '\0'; return buf; } // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text(const simd8x64 &in) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); in.store(reinterpret_cast(buf)); for (size_t i = 0; i < sizeof(simd8x64); i++) { if (buf[i] < ' ') { buf[i] = '_'; } } buf[sizeof(simd8x64)] = '\0'; return buf; } simdutf_unused static char *format_mask(uint64_t mask) { static char *buf = reinterpret_cast(malloc(64 + 1)); for (size_t i = 0; i < 64; i++) { buf[i] = (mask & (size_t(1) << i)) ? 'X' : ' '; } buf[64] = '\0'; return buf; } template simdutf_really_inline buf_block_reader::buf_block_reader(const uint8_t *_buf, size_t _len) : buf{_buf}, len{_len}, lenminusstep{len < STEP_SIZE ? 0 : len - STEP_SIZE}, idx{0} {} template simdutf_really_inline size_t buf_block_reader::block_index() { return idx; } template simdutf_really_inline bool buf_block_reader::has_full_block() const { return idx < lenminusstep; } template simdutf_really_inline const uint8_t * buf_block_reader::full_block() const { return &buf[idx]; } template simdutf_really_inline size_t buf_block_reader::get_remainder(uint8_t *dst) const { if (len == idx) { return 0; } // memcpy(dst, null, 0) will trigger an error with some sanitizers std::memset(dst, 0x20, STEP_SIZE); // std::memset STEP_SIZE because it is more efficient // to write out 8 or 16 bytes at once. std::memcpy(dst, buf + idx, len - idx); return len - idx; } template simdutf_really_inline void buf_block_reader::advance() { idx += STEP_SIZE; } } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/buf_block_reader.h */ #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ namespace simdutf { namespace haswell { namespace { namespace utf8_validation { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } // // Return nonzero if there are incomplete multibyte characters at the end of the // block: e.g. if there is a 4-byte character, but it is 3 bytes from the end. // simdutf_really_inline simd8 is_incomplete(const simd8 input) { // If the previous input's last 3 bytes match this, they're too short (they // ended at EOF): // ... 1111____ 111_____ 11______ static const uint8_t max_array[32] = {255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0b11110000u - 1, 0b11100000u - 1, 0b11000000u - 1}; const simd8 max_value( &max_array[sizeof(max_array) - sizeof(simd8)]); return input.gt_bits(max_value); } struct utf8_checker { // If this is nonzero, there has been a UTF-8 error. simd8 error; // The last input we received simd8 prev_input_block; // Whether the last input we received was incomplete (used for ASCII fast // path) simd8 prev_incomplete; // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } // The only problem that can happen at EOF is that a multibyte character is // too short or a byte value too large in the last bytes: check_special_cases // only checks for bytes too large in the first of two bytes. simdutf_really_inline void check_eof() { // If the previous block had incomplete UTF-8 characters at the end, an // ASCII block can't possibly finish them. this->error |= this->prev_incomplete; } simdutf_really_inline void check_next_input(const simd8x64 &input) { if (simdutf_likely(is_ascii(input))) { this->error |= this->prev_incomplete; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. static_assert((simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } this->prev_incomplete = is_incomplete(input.chunks[simd8x64::NUM_CHUNKS - 1]); this->prev_input_block = input.chunks[simd8x64::NUM_CHUNKS - 1]; } } // do not forget to call check_eof! simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_validation using utf8_validation::utf8_checker; } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ /* begin file src/generic/utf8_validation/utf8_validator.h */ namespace simdutf { namespace haswell { namespace { namespace utf8_validation { /** * Validates that the string is actual UTF-8. */ template bool generic_validate_utf8(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); return !c.errors(); } bool generic_validate_utf8(const char *input, size_t length) { return generic_validate_utf8( reinterpret_cast(input), length); } /** * Validates that the string is actual UTF-8 and stops on errors. */ template result generic_validate_utf8_with_errors(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input + count), length - count); res.count += count; return res; } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input) + count, length - count); res.count += count; return res; } else { return result(error_code::SUCCESS, length); } } result generic_validate_utf8_with_errors(const char *input, size_t length) { return generic_validate_utf8_with_errors( reinterpret_cast(input), length); } } // namespace utf8_validation } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf8_validation/utf8_validator.h */ #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_ASCII /* begin file src/generic/ascii_validation.h */ namespace simdutf { namespace haswell { namespace { namespace ascii_validation { bool generic_validate_ascii(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); uint8_t blocks[64]{}; simd::simd8x64 running_or(blocks); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); running_or |= in; reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); running_or |= in; return running_or.is_ascii(); } result generic_validate_ascii_with_errors(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } else { return result(error_code::SUCCESS, length); } } } // namespace ascii_validation } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/ascii_validation.h */ #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 // transcoding from UTF-8 to UTF-16 /* begin file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ namespace simdutf { namespace haswell { namespace { namespace utf8_to_utf16 { using namespace simd; template simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char16_t *utf16_output) noexcept { // The implementation is not specific to haswell and should be moved to the // generic directory. size_t pos = 0; char16_t *start{utf16_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { // this loop could be unrolled further. For example, we could process the // mask far more than 64 bytes. simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // Slow path. We hope that the compiler will recognize that this is a slow // path. Anything that is not a continuation mask is a 'leading byte', // that is, the start of a new code point. uint64_t utf8_continuation_mask = in.lt(-65 + 1); // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_leading_mask = ~utf8_continuation_mask; // The *start* of code points is not so useful, rather, we want the *end* // of code points. uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times when using solely // the slow/regular path, and at least four times if there are fast paths. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. // // Thus we may allow convert_masked_utf8_to_utf16 to process // more bytes at a time under a fast-path mode where 16 bytes // are consumed at once (e.g., when encountering ASCII). size_t consumed = convert_masked_utf8_to_utf16( input + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } utf16_output += scalar::utf8_to_utf16::convert_valid( input + pos, size - pos, utf16_output); return utf16_output - start; } } // namespace utf8_to_utf16 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ /* begin file src/generic/utf8_to_utf16/utf8_to_utf16.h */ namespace simdutf { namespace haswell { namespace { namespace utf8_to_utf16 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } template simdutf_really_inline size_t convert(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf16::convert( in + pos, size - pos, utf16_output); if (howmany == 0) { return 0; } utf16_output += howmany; } return utf16_output - start; } template simdutf_really_inline result convert_with_errors(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf16_output += res.count; } } return result(error_code::SUCCESS, utf16_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf16 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf8_to_utf16/utf8_to_utf16.h */ /* begin file src/generic/utf8/utf16_length_from_utf8_bytemask.h */ namespace simdutf { namespace haswell { namespace { namespace utf8 { using namespace simd; simdutf_really_inline size_t utf16_length_from_utf8_bytemask(const char *in, size_t size) { using vector_i8 = simd8; using vector_u8 = simd8; using vector_u64 = simd64; constexpr size_t N = vector_i8::SIZE; constexpr size_t max_iterations = 255 / 2; auto counters = vector_u64::zero(); auto local = vector_u8::zero(); size_t iterations = 0; size_t pos = 0; size_t count = 0; for (; pos + N <= size; pos += N) { const auto input = vector_i8::load(reinterpret_cast(in + pos)); const auto continuation = input > int8_t(-65); const auto utf_4bytes = vector_u8(input.value) >= uint8_t(240); local -= vector_u8(continuation); local -= vector_u8(utf_4bytes); iterations += 1; if (iterations == max_iterations) { counters += sum_8bytes(local); local = vector_u8::zero(); iterations = 0; } } if (iterations > 0) { count += local.sum_bytes(); } count += counters.sum(); return count + scalar::utf8::utf16_length_from_utf8(in + pos, size - pos); } } // namespace utf8 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf8/utf16_length_from_utf8_bytemask.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 // transcoding from UTF-8 to UTF-32 /* begin file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ namespace simdutf { namespace haswell { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char32_t *utf32_output) noexcept { size_t pos = 0; char32_t *start{utf32_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_continuation_mask = in.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; size_t max_starting_point = (pos + 64) - 12; while (pos < max_starting_point) { size_t consumed = convert_masked_utf8_to_utf32( input + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } } } utf32_output += scalar::utf8_to_utf32::convert_valid(input + pos, size - pos, utf32_output); return utf32_output - start; } } // namespace utf8_to_utf32 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ /* begin file src/generic/utf8_to_utf32/utf8_to_utf32.h */ namespace simdutf { namespace haswell { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } simdutf_really_inline size_t convert(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 words when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // we have an error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf32::convert(in + pos, size - pos, utf32_output); if (howmany == 0) { return 0; } utf32_output += howmany; } return utf32_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } if (pos < size) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf32_output += res.count; } } return result(error_code::SUCCESS, utf32_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf32 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf8_to_utf32/utf8_to_utf32.h */ /* begin file src/generic/utf32.h */ #include namespace simdutf { namespace haswell { namespace { namespace utf32 { template T min(T a, T b) { return a <= b ? a : b; } simdutf_really_inline size_t utf8_length_from_utf32(const char32_t *input, size_t length) { using vector_u32 = simd32; const char32_t *start = input; // we add up to three ones in a single iteration (see the vectorized loop in // section #2 below) const size_t max_increment = 3; const size_t N = vector_u32::ELEMENTS; #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP const auto v_0000007f = vector_u32::splat(0x0000007f); const auto v_000007ff = vector_u32::splat(0x000007ff); const auto v_0000ffff = vector_u32::splat(0x0000ffff); #else const auto v_ffffff80 = vector_u32::splat(0xffffff80); const auto v_fffff800 = vector_u32::splat(0xfffff800); const auto v_ffff0000 = vector_u32::splat(0xffff0000); const auto one = vector_u32::splat(1); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP size_t counter = 0; // 1. vectorized loop unrolled 4 times { // we use vector of uint32 counters, this is why this limit is used const size_t max_iterations = std::numeric_limits::max() / (max_increment * 4); size_t blocks = length / (N * 4); length -= blocks * (N * 4); while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; simd32 acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in0 = vector_u32(input + 0 * N); const auto in1 = vector_u32(input + 1 * N); const auto in2 = vector_u32(input + 2 * N); const auto in3 = vector_u32(input + 3 * N); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in0 > v_0000007f); acc -= as_vector_u32(in1 > v_0000007f); acc -= as_vector_u32(in2 > v_0000007f); acc -= as_vector_u32(in3 > v_0000007f); acc -= as_vector_u32(in0 > v_000007ff); acc -= as_vector_u32(in1 > v_000007ff); acc -= as_vector_u32(in2 > v_000007ff); acc -= as_vector_u32(in3 > v_000007ff); acc -= as_vector_u32(in0 > v_0000ffff); acc -= as_vector_u32(in1 > v_0000ffff); acc -= as_vector_u32(in2 > v_0000ffff); acc -= as_vector_u32(in3 > v_0000ffff); #else acc += min(one, in0 & v_ffffff80); acc += min(one, in1 & v_ffffff80); acc += min(one, in2 & v_ffffff80); acc += min(one, in3 & v_ffffff80); acc += min(one, in0 & v_fffff800); acc += min(one, in1 & v_fffff800); acc += min(one, in2 & v_fffff800); acc += min(one, in3 & v_fffff800); acc += min(one, in0 & v_ffff0000); acc += min(one, in1 & v_ffff0000); acc += min(one, in2 & v_ffff0000); acc += min(one, in3 & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += 4 * N; } counter += acc.sum(); } } // 2. vectorized loop for tail { const size_t max_iterations = std::numeric_limits::max() / max_increment; size_t blocks = length / N; length -= blocks * N; while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; auto acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in = vector_u32(input); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in > v_0000007f); acc -= as_vector_u32(in > v_000007ff); acc -= as_vector_u32(in > v_0000ffff); #else acc += min(one, in & v_ffffff80); acc += min(one, in & v_fffff800); acc += min(one, in & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += N; } counter += acc.sum(); } } const size_t consumed = input - start; if (consumed != 0) { // We don't count 0th bytes in the vectorized loops above, this // is why we need to count them in the end. counter += consumed; } return counter + scalar::utf32::utf8_length_from_utf32(input, length); } } // namespace utf32 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf32.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 // other functions #if SIMDUTF_FEATURE_UTF8 /* begin file src/generic/utf8.h */ namespace simdutf { namespace haswell { namespace { namespace utf8 { using namespace simd; simdutf_really_inline size_t count_code_points(const char *in, size_t size) { size_t pos = 0; size_t count = 0; for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.gt(-65); count += count_ones(utf8_continuation_mask); } return count + scalar::utf8::count_code_points(in + pos, size - pos); } #ifdef SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t count_code_points_bytemask(const char *in, size_t size) { using vector_i8 = simd8; using vector_u8 = simd8; using vector_u64 = simd64; constexpr size_t N = vector_i8::SIZE; constexpr size_t max_iterations = 255 / 4; size_t pos = 0; size_t count = 0; auto counters = vector_u64::zero(); auto local = vector_u8::zero(); size_t iterations = 0; for (; pos + 4 * N <= size; pos += 4 * N) { const auto input0 = simd8::load(reinterpret_cast(in + pos + 0 * N)); const auto input1 = simd8::load(reinterpret_cast(in + pos + 1 * N)); const auto input2 = simd8::load(reinterpret_cast(in + pos + 2 * N)); const auto input3 = simd8::load(reinterpret_cast(in + pos + 3 * N)); const auto mask0 = input0 > int8_t(-65); const auto mask1 = input1 > int8_t(-65); const auto mask2 = input2 > int8_t(-65); const auto mask3 = input3 > int8_t(-65); local -= vector_u8(mask0); local -= vector_u8(mask1); local -= vector_u8(mask2); local -= vector_u8(mask3); iterations += 1; if (iterations == max_iterations) { counters += sum_8bytes(local); local = vector_u8::zero(); iterations = 0; } } if (iterations > 0) { count += local.sum_bytes(); } count += counters.sum(); return count + scalar::utf8::count_code_points(in + pos, size - pos); } #endif // SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t utf16_length_from_utf8(const char *in, size_t size) { size_t pos = 0; size_t count = 0; // This algorithm could no doubt be improved! for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.lt(-65 + 1); // We count one word for anything that is not a continuation (so // leading bytes). count += 64 - count_ones(utf8_continuation_mask); int64_t utf8_4byte = input.gteq_unsigned(240); count += count_ones(utf8_4byte); } return count + scalar::utf8::utf16_length_from_utf8(in + pos, size - pos); } } // namespace utf8 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf8.h */ #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 /* begin file src/generic/utf16.h */ namespace simdutf { namespace haswell { namespace { namespace utf16 { template simdutf_really_inline size_t count_code_points(const char16_t *in, size_t size) { size_t pos = 0; size_t count = 0; for (; pos < size / 32 * 32; pos += 32) { simd16x32 input(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input.swap_bytes(); } uint64_t not_pair = input.not_in_range(0xDC00, 0xDFFF); count += count_ones(not_pair) / 2; } return count + scalar::utf16::count_code_points(in + pos, size - pos); } template simdutf_really_inline size_t utf8_length_from_utf16(const char16_t *in, size_t size) { size_t pos = 0; size_t count = 0; // This algorithm could no doubt be improved! for (; pos < size / 32 * 32; pos += 32) { simd16x32 input(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input.swap_bytes(); } uint64_t ascii_mask = input.lteq(0x7F); uint64_t twobyte_mask = input.lteq(0x7FF); uint64_t not_pair_mask = input.not_in_range(0xD800, 0xDFFF); size_t ascii_count = count_ones(ascii_mask) / 2; size_t twobyte_count = count_ones(twobyte_mask & ~ascii_mask) / 2; size_t threebyte_count = count_ones(not_pair_mask & ~twobyte_mask) / 2; size_t fourbyte_count = 32 - count_ones(not_pair_mask) / 2; count += 2 * fourbyte_count + 3 * threebyte_count + 2 * twobyte_count + ascii_count; } return count + scalar::utf16::utf8_length_from_utf16(in + pos, size - pos); } template simdutf_really_inline size_t utf32_length_from_utf16(const char16_t *in, size_t size) { return count_code_points(in, size); } simdutf_really_inline void change_endianness_utf16(const char16_t *in, size_t size, char16_t *output) { size_t pos = 0; while (pos < size / 32 * 32) { simd16x32 input(reinterpret_cast(in + pos)); input.swap_bytes(); input.store(reinterpret_cast(output)); pos += 32; output += 32; } scalar::utf16::change_endianness_utf16(in + pos, size - pos, output); } } // namespace utf16 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf16.h */ /* begin file src/generic/utf16/utf8_length_from_utf16_bytemask.h */ namespace simdutf { namespace haswell { namespace { namespace utf16 { using namespace simd; template simdutf_really_inline size_t utf8_length_from_utf16_bytemask(const char16_t *in, size_t size) { size_t pos = 0; using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; const auto one = vector_u16::splat(1); auto v_count = vector_u16::zero(); // each char16 yields at least one byte size_t count = size / N * N; // in a single iteration the increment is 0, 1 or 2, despite we have // three additions constexpr size_t max_iterations = 65535 / 2; size_t iteration = max_iterations; for (; pos < size / N * N; pos += N) { auto input = vector_u16::load(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input = input.swap_bytes(); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate const auto is_surrogate = ((input & uint16_t(0xf800)) == uint16_t(0xd800)); // c0 - chars that yield 2- or 3-byte UTF-8 codes const auto c0 = min(input & uint16_t(0xff80), one); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) const auto c1 = min(input & uint16_t(0xf800), one); /* Explanation how the counting works. In the case of a non-surrogate character we count: * always 1 -- see how `count` is initialized above; * c0 = 1 if the current char yields 2 or 3 bytes; * c1 = 1 if the current char yields 3 bytes. Thus, we always have correct count for the current char: from 1, 2 or 3 bytes. A trickier part is how we count surrogate pairs. Whether we encounter a surrogate (low or high), we count it as 3 chars and then minus 1 (`is_surrogate` is -1 or 0). Each surrogate char yields 2. A surrogate pair, that is a low surrogate followed by a high one, yields the expected 4 bytes. It also correctly handles cases when low surrogate is processed by the this loop, but high surrogate is counted by the scalar procedure. The scalar procedure uses exactly the described approach, thanks to that for valid UTF-16 strings it always count correctly. */ v_count += c0; v_count += c1; v_count += vector_u16(is_surrogate); iteration -= 1; if (iteration == 0) { count += v_count.sum(); v_count = vector_u16::zero(); iteration = max_iterations; } } if (iteration > 0) { count += v_count.sum(); } return count + scalar::utf16::utf8_length_from_utf16(in + pos, size - pos); } template simdutf_really_inline result utf8_length_from_utf16_with_replacement(const char16_t *in, size_t size) { using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; if (N + 1 > size) { return scalar::utf16::utf8_length_from_utf16_with_replacement( in, size); } // special case for short inputs size_t pos = 0; bool any_surrogates = false; const auto one = vector_u16::splat(1); auto v_count = vector_u16::zero(); auto v_mismatched_count = vector_u16::zero(); size_t count = 0; size_t mismatched_count = 0; // in a single iteration the increment is 0, 1 or 2, despite we have // three additions constexpr size_t max_iterations = 65535 / 2; size_t iteration = max_iterations; if (scalar::utf16::is_low_surrogate(in[0])) { any_surrogates = true; mismatched_count += 1; } for (; pos < (size - 1) / N * N; pos += N) { auto input = vector_u16::load(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input = input.swap_bytes(); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate const auto is_surrogate = ((input & uint16_t(0xf800)) == uint16_t(0xd800)); // c0 - chars that yield 2- or 3-byte UTF-8 codes const auto c0 = min(input & uint16_t(0xff80), one); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) const auto c1 = min(input & uint16_t(0xf800), one); v_count += c0; v_count += c1; v_count += vector_u16(is_surrogate); if (is_surrogate.to_bitmask() != 0 || scalar::utf16::is_low_surrogate(in[pos + N])) { any_surrogates = true; auto input_next = vector_u16::load(reinterpret_cast(in + pos + 1)); if (!match_system(big_endian)) { input_next = input_next.swap_bytes(); } const auto lb_masked = input & (0xfc00); const auto block_masked = input_next & (0xfc00); const auto lb_is_high = lb_masked == (0xd800); const auto block_is_low = block_masked == (0xdc00); const auto illseq = min(vector_u16(lb_is_high ^ block_is_low), one); v_mismatched_count += illseq; } iteration -= 1; if (iteration == 0) { count += v_count.sum(); v_count = vector_u16::zero(); mismatched_count += v_mismatched_count.sum(); v_mismatched_count = vector_u16::zero(); iteration = max_iterations; } } if (iteration > 0) { count += v_count.sum(); mismatched_count += v_mismatched_count.sum(); } if (scalar::utf16::is_low_surrogate(in[pos])) { any_surrogates = true; if (!scalar::utf16::is_high_surrogate(in[pos - 1])) { mismatched_count -= 1; count += 2; pos += 1; } } count += pos; count += mismatched_count; if (scalar::utf16::is_high_surrogate(in[pos - 1])) { any_surrogates = true; if (pos == size) { count += 2; } else if (scalar::utf16::is_low_surrogate(in[pos])) { pos += 1; count += 2; } } result scalar_result = scalar::utf16::utf8_length_from_utf16_with_replacement( in + pos, size - pos); return {any_surrogates ? SURROGATE : scalar_result.error, count + scalar_result.count}; } } // namespace utf16 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf16/utf8_length_from_utf16_bytemask.h */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/validate_utf16.h */ namespace simdutf { namespace haswell { namespace { namespace utf16 { /* UTF-16 validation -------------------------------------------------- In UTF-16 code units in range 0xD800 to 0xDFFF have special meaning. In a vectorized algorithm we want to examine the most significant nibble in order to select a fast path. If none of highest nibbles are 0xD (13), than we are sure that UTF-16 chunk in a vector register is valid. Let us analyze what we need to check if the nibble is 0xD. The value of the preceding nibble determines what we have: 0xd000 .. 0xd7ff - a valid word 0xd800 .. 0xdbff - low surrogate 0xdc00 .. 0xdfff - high surrogate Other constraints we have to consider: - there must not be two consecutive low surrogates (0xd800 .. 0xdbff) - there must not be two consecutive high surrogates (0xdc00 .. 0xdfff) - there must not be sole low surrogate nor high surrogate We are going to build three bitmasks based on the 3rd nibble: - V = valid word, - L = low surrogate (0xd800 .. 0xdbff) - H = high surrogate (0xdc00 .. 0xdfff) 0 1 2 3 4 5 6 7 <--- word index [ V | L | H | L | H | V | V | L ] 1 0 0 0 0 1 1 0 - V = valid masks 0 1 0 1 0 0 0 1 - L = low surrogate 0 0 1 0 1 0 0 0 - H high surrogate 1 0 0 0 0 1 1 0 V = valid masks 0 1 0 1 0 0 0 0 a = L & (H >> 1) 0 0 1 0 1 0 0 0 b = a << 1 1 1 1 1 1 1 1 0 c = V | a | b ^ the last bit can be zero, we just consume 7 code units and recheck this word in the next iteration */ template const result validate_utf16_with_errors(const char16_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { return result(error_code::SUCCESS, 0); } const char16_t *start = input; const char16_t *end = input + size; const auto v_d8 = simd8::splat(0xd8); const auto v_f8 = simd8::splat(0xf8); const auto v_fc = simd8::splat(0xfc); const auto v_dc = simd8::splat(0xdc); while (input + simd16::SIZE * 2 < end) { // 0. Load data: since the validation takes into account only higher // byte of each word, we compress the two vectors into one which // consists only the higher bytes. auto in0 = simd16(input); auto in1 = simd16(input + simd16::SIZE / sizeof(char16_t)); // Function `utf16_gather_high_bytes` consumes two vectors of UTF-16 // and yields a single vector having only higher bytes of characters. const auto in = utf16_gather_high_bytes(in0, in1); // 1. Check whether we have any 0xD800..DFFF word (0b1101'1xxx'yyyy'yyyy). const auto surrogates_wordmask = (in & v_f8) == v_d8; const uint16_t surrogates_bitmask = static_cast(surrogates_wordmask.to_bitmask()); if (surrogates_bitmask == 0x0000) { input += 16; } else { // 2. We have some surrogates that have to be distinguished: // - low surrogates: 0b1101'10xx'yyyy'yyyy (0xD800..0xDBFF) // - high surrogates: 0b1101'11xx'yyyy'yyyy (0xDC00..0xDFFF) // // Fact: high surrogate has 11th bit set (3rd bit in the higher byte) // V - non-surrogate code units // V = not surrogates_wordmask const uint16_t V = static_cast(~surrogates_bitmask); // H - word-mask for high surrogates: the six highest bits are 0b1101'11 const auto vH = (in & v_fc) == v_dc; const uint16_t H = static_cast(vH.to_bitmask()); // L - word mask for low surrogates // L = not H and surrogates_wordmask const uint16_t L = static_cast(~H & surrogates_bitmask); const uint16_t a = static_cast( L & (H >> 1)); // A low surrogate must be followed by high one. // (A low surrogate placed in the 7th register's word // is an exception we handle.) const uint16_t b = static_cast( a << 1); // Just mark that the opinput - startite fact is hold, // thanks to that we have only two masks for valid case. const uint16_t c = static_cast( V | a | b); // Combine all the masks into the final one. if (c == 0xffff) { // The whole input register contains valid UTF-16, i.e., // either single code units or proper surrogate pairs. input += 16; } else if (c == 0x7fff) { // The 15 lower code units of the input register contains valid UTF-16. // The 15th word may be either a low or high surrogate. It the next // iteration we 1) check if the low surrogate is followed by a high // one, 2) reject sole high surrogate. input += 15; } else { return result(error_code::SURROGATE, input - start); } } } return result(error_code::SUCCESS, input - start); } template const result validate_utf16_as_ascii_with_errors(const char16_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { return result(error_code::SUCCESS, 0); } size_t pos = 0; for (; pos < size / 32 * 32; pos += 32) { simd16x32 input_vec( reinterpret_cast(input + pos)); if (!match_system(big_endian)) { input_vec.swap_bytes(); } uint64_t matches = input_vec.lteq(uint16_t(0x7f)); if (~matches) { // Found a match, return the first one int index = trailing_zeroes(~matches) / 2; return result(error_code::TOO_LARGE, pos + index); } } // Scalar tail while (pos < size) { char16_t v = big_endian ? scalar::u16_swap_bytes(input[pos]) : input[pos]; if (v > 0x7F) { return result(error_code::TOO_LARGE, pos); } pos++; } return result(error_code::SUCCESS, size); } } // namespace utf16 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/validate_utf16.h */ #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 // transcoding from UTF-8 to Latin 1 /* begin file src/generic/utf8_to_latin1/utf8_to_latin1.h */ namespace simdutf { namespace haswell { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // For UTF-8 to Latin 1, we can allow any ASCII character, and any // continuation byte, but the non-ASCII leading bytes must be 0b11000011 or // 0b11000010 and nothing else. // // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ constexpr const uint8_t FORBIDDEN = 0xff; const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ FORBIDDEN, // 1110____ ________ FORBIDDEN, // 1111____ ________ FORBIDDEN); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ FORBIDDEN, // ____0101 ________ FORBIDDEN, // ____011_ ________ FORBIDDEN, FORBIDDEN, // ____1___ ________ FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, // ____1101 ________ FORBIDDEN, FORBIDDEN, FORBIDDEN); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); this->error |= check_special_cases(input, prev1); } simdutf_really_inline size_t convert(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 16; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert(in + pos, size - pos, latin1_output); if (howmany == 0) { return 0; } latin1_output += howmany; } return latin1_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } uint64_t utf8_continuation_mask = input.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written latin1_output += res.count; } } return result(error_code::SUCCESS, latin1_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_latin1 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/utf8_to_latin1/utf8_to_latin1.h */ /* begin file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ namespace simdutf { namespace haswell { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline size_t convert_valid(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the last // 16 bytes, and if the data is valid, then it is entirely safe because 16 // UTF-8 bytes generate much more than 8 bytes. However, you cannot generally // assume that you have valid UTF-8 input, so we are going to go back from the // end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert_valid(in + pos, size - pos, latin1_output); latin1_output += howmany; } return latin1_output - start; } } // namespace utf8_to_latin1 } // namespace } // namespace haswell } // namespace simdutf // namespace simdutf /* end file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/validate_utf32.h */ namespace simdutf { namespace haswell { namespace { namespace utf32 { simdutf_really_inline bool validate(const char32_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { // empty input is valid UTF-32. protect the implementation from // handling nullptr return true; } const char32_t *end = input + size; using vector_u32 = simd32; const auto standardmax = vector_u32::splat(0x10ffff); const auto offset = vector_u32::splat(0xffff2000); const auto standardoffsetmax = vector_u32::splat(0xfffff7ff); auto currentmax = vector_u32::zero(); auto currentoffsetmax = vector_u32::zero(); constexpr size_t N = vector_u32::ELEMENTS; while (input + N < end) { auto in = vector_u32(input); if (!match_system(endianness::BIG)) { in.swap_bytes(); } currentmax = max(currentmax, in); currentoffsetmax = max(currentoffsetmax, in + offset); input += N; } const auto too_large = currentmax > standardmax; if (too_large.any()) { return false; } const auto surrogate = currentoffsetmax > standardoffsetmax; if (surrogate.any()) { return false; } return scalar::utf32::validate(input, end - input); } simdutf_really_inline result validate_with_errors(const char32_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { // empty input is valid UTF-32. protect the implementation from // handling nullptr return result(error_code::SUCCESS, 0); } const char32_t *start = input; const char32_t *end = input + size; using vector_u32 = simd32; const auto standardmax = vector_u32::splat(0x10ffff + 1); const auto surrogate_mask = vector_u32::splat(0xfffff800); const auto surrogate_byte = vector_u32::splat(0x0000d800); constexpr size_t N = vector_u32::ELEMENTS; while (input + N < end) { auto in = vector_u32(input); if (!match_system(endianness::BIG)) { in.swap_bytes(); } const auto too_large = in >= standardmax; const auto surrogate = (in & surrogate_mask) == surrogate_byte; const auto combined = too_large | surrogate; if (simdutf_unlikely(combined.any())) { const size_t consumed = input - start; auto sr = scalar::utf32::validate_with_errors(input, end - input); sr.count += consumed; return sr; } input += N; } const size_t consumed = input - start; auto sr = scalar::utf32::validate_with_errors(input, end - input); sr.count += consumed; return sr; } } // namespace utf32 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/validate_utf32.h */ #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_BASE64 /* begin file src/generic/base64.h */ /** * References and further reading: * * Wojciech Muła, Daniel Lemire, Base64 encoding and decoding at almost the * speed of a memory copy, Software: Practice and Experience 50 (2), 2020. * https://arxiv.org/abs/1910.05109 * * Wojciech Muła, Daniel Lemire, Faster Base64 Encoding and Decoding using AVX2 * Instructions, ACM Transactions on the Web 12 (3), 2018. * https://arxiv.org/abs/1704.00605 * * Simon Josefsson. 2006. The Base16, Base32, and Base64 Data Encodings. * https://tools.ietf.org/html/rfc4648. (2006). Internet Engineering Task Force, * Request for Comments: 4648. * * Alfred Klomp. 2014a. Fast Base64 encoding/decoding with SSE vectorization. * http://www.alfredklomp.com/programming/sse-base64/. (2014). * * Alfred Klomp. 2014b. Fast Base64 stream encoder/decoder in C99, with SIMD * acceleration. https://github.com/aklomp/base64. (2014). * * Hanson Char. 2014. A Fast and Correct Base 64 Codec. (2014). * https://aws.amazon.com/blogs/developer/a-fast-and-correct-base-64-codec/ * * Nick Kopp. 2013. Base64 Encoding on a GPU. * https://www.codeproject.com/Articles/276993/Base-Encoding-on-a-GPU. (2013). */ namespace simdutf { namespace haswell { namespace { namespace base64 { /* The following template function implements API for Base64 decoding. An implementation is responsible for providing the `block64` type and associated methods that perform actual conversion. Please refer to any vectorized implementation to learn the API of these procedures. */ template full_result compress_decode_base64(char *dst, const chartype *src, size_t srclen, base64_options options, last_chunk_handling_options last_chunk_options) { const uint8_t *to_base64 = default_or_url ? tables::base64::to_base64_default_or_url_value : (base64_url ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); auto ri = simdutf::scalar::base64::find_end(src, srclen, options); size_t equallocation = ri.equallocation; size_t equalsigns = ri.equalsigns; srclen = ri.srclen; size_t full_input_length = ri.full_input_length; if (srclen == 0) { if (!ignore_garbage && equalsigns > 0) { return {INVALID_BASE64_CHARACTER, equallocation, 0}; } return {SUCCESS, full_input_length, 0}; } char *end_of_safe_64byte_zone = dst == nullptr ? nullptr : ((srclen + 3) / 4 * 3 >= 63 ? dst + (srclen + 3) / 4 * 3 - 63 : dst); const chartype *const srcinit = src; const char *const dstinit = dst; const chartype *const srcend = src + srclen; constexpr size_t block_size = 6; static_assert(block_size >= 2, "block_size must be at least two"); char buffer[block_size * 64]; char *bufferptr = buffer; if (srclen >= 64) { const chartype *const srcend64 = src + srclen - 64; while (src <= srcend64) { block64 b(src); src += 64; uint64_t error = 0; const uint64_t badcharmask = b.to_base64_mask(&error); if (!ignore_garbage && error) { src -= 64; const size_t error_offset = trailing_zeroes(error); return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit + error_offset), size_t(dst - dstinit)}; } if (badcharmask != 0) { bufferptr += b.compress_block(badcharmask, bufferptr); } else if (bufferptr != buffer) { b.copy_block(bufferptr); bufferptr += 64; } else { if (dst >= end_of_safe_64byte_zone) { b.base64_decode_block_safe(dst); } else { b.base64_decode_block(dst); } dst += 48; } if (bufferptr >= (block_size - 1) * 64 + buffer) { for (size_t i = 0; i < (block_size - 2); i++) { base64_decode_block(dst, buffer + i * 64); dst += 48; } if (dst >= end_of_safe_64byte_zone) { base64_decode_block_safe(dst, buffer + (block_size - 2) * 64); } else { base64_decode_block(dst, buffer + (block_size - 2) * 64); } dst += 48; std::memcpy(buffer, buffer + (block_size - 1) * 64, 64); // 64 might be too much bufferptr -= (block_size - 1) * 64; } } } char *buffer_start = buffer; // Optimization note: if this is almost full, then it is worth our // time, otherwise, we should just decode directly. int last_block = (int)((bufferptr - buffer_start) % 64); if (last_block != 0 && srcend - src + last_block >= 64) { while ((bufferptr - buffer_start) % 64 != 0 && src < srcend) { uint8_t val = to_base64[uint8_t(*src)]; *bufferptr = char(val); if (!ignore_garbage && (!scalar::base64::is_eight_byte(*src) || val > 64)) { return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit)}; } bufferptr += (val <= 63); src++; } } for (; buffer_start + 64 <= bufferptr; buffer_start += 64) { if (dst >= end_of_safe_64byte_zone) { base64_decode_block_safe(dst, buffer_start); } else { base64_decode_block(dst, buffer_start); } dst += 48; } if ((bufferptr - buffer_start) % 64 != 0) { while (buffer_start + 4 < bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; #if !SIMDUTF_IS_BIG_ENDIAN triple = scalar::u32_swap_bytes(triple); #endif std::memcpy(dst, &triple, 3); dst += 3; buffer_start += 4; } if (buffer_start + 4 <= bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; #if !SIMDUTF_IS_BIG_ENDIAN triple = scalar::u32_swap_bytes(triple); #endif std::memcpy(dst, &triple, 3); dst += 3; buffer_start += 4; } // we may have 1, 2 or 3 bytes left and we need to decode them so let us // backtrack int leftover = int(bufferptr - buffer_start); while (leftover > 0) { if (!ignore_garbage) { while (to_base64[uint8_t(*(src - 1))] == 64) { src--; } } else { while (to_base64[uint8_t(*(src - 1))] >= 64) { src--; } } src--; leftover--; } } if (src < srcend + equalsigns) { full_result r = scalar::base64::base64_tail_decode( dst, src, srcend - src, equalsigns, options, last_chunk_options); r = scalar::base64::patch_tail_result( r, size_t(src - srcinit), size_t(dst - dstinit), equallocation, full_input_length, last_chunk_options); // When is_partial(last_chunk_options) is true, we must either end with // the end of the stream (beyond whitespace) or right after a non-ignorable // character or at the very beginning of the stream. // See https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 if (is_partial(last_chunk_options) && r.error == error_code::SUCCESS && r.input_count < full_input_length) { // First check if we can extend the input to the end of the stream while (r.input_count < full_input_length && base64_ignorable(*(srcinit + r.input_count), options)) { r.input_count++; } // If we are still not at the end of the stream, then we must backtrack // to the last non-ignorable character. if (r.input_count < full_input_length) { while (r.input_count > 0 && base64_ignorable(*(srcinit + r.input_count - 1), options)) { r.input_count--; } } } return r; } if (!ignore_garbage && equalsigns > 0) { if ((size_t(dst - dstinit) % 3 == 0) || ((size_t(dst - dstinit) % 3) + 1 + equalsigns != 4)) { return {INVALID_BASE64_CHARACTER, equallocation, size_t(dst - dstinit)}; } } return {SUCCESS, srclen, size_t(dst - dstinit)}; } } // namespace base64 } // unnamed namespace } // namespace haswell } // namespace simdutf /* end file src/generic/base64.h */ /* begin file src/generic/find.h */ namespace simdutf { namespace haswell { namespace { namespace util { simdutf_really_inline const char *find(const char *start, const char *end, char character) noexcept { // Handle empty or invalid range if (start >= end) return end; // Align the start pointer to 64 bytes uintptr_t misalignment = reinterpret_cast(start) % 64; if (misalignment != 0) { size_t adjustment = 64 - misalignment; if (size_t(std::distance(start, end)) < adjustment) { adjustment = std::distance(start, end); } for (size_t i = 0; i < adjustment; i++) { if (start[i] == character) { return start + i; } } start += adjustment; } // Main loop for 64-byte aligned data for (; std::distance(start, end) >= 64; start += 64) { simd8x64 input(reinterpret_cast(start)); uint64_t matches = input.eq(uint8_t(character)); if (matches != 0) { // Found a match, return the first one int index = trailing_zeroes(matches); return start + index; } } return std::find(start, end, character); } simdutf_really_inline const char16_t * find(const char16_t *start, const char16_t *end, char16_t character) noexcept { // Handle empty or invalid range if (start >= end) return end; // Align the start pointer to 64 bytes if misalignment is even uintptr_t misalignment = reinterpret_cast(start) % 64; if (misalignment != 0 && misalignment % 2 == 0) { size_t adjustment = (64 - misalignment) / sizeof(char16_t); if (size_t(std::distance(start, end)) < adjustment) { adjustment = std::distance(start, end); } for (size_t i = 0; i < adjustment; i++) { if (start[i] == character) { return start + i; } } start += adjustment; } // Main loop for 64-byte aligned data for (; std::distance(start, end) >= 32; start += 32) { simd16x32 input(reinterpret_cast(start)); uint64_t matches = input.eq(uint16_t(character)); if (matches != 0) { // Found a match, return the first one int index = trailing_zeroes(matches) / 2; return start + index; } } return std::find(start, end, character); } } // namespace util } // namespace } // namespace haswell } // namespace simdutf /* end file src/generic/find.h */ #endif // SIMDUTF_FEATURE_BASE64 namespace simdutf { namespace haswell { #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int implementation::detect_encodings(const char *input, size_t length) const noexcept { // If there is a BOM, then we trust it. auto bom_encoding = simdutf::BOM::check_bom(input, length); if (bom_encoding != encoding_type::unspecified) { return bom_encoding; } int out = 0; uint32_t utf16_err = (length % 2); uint32_t utf32_err = (length % 4); uint32_t ends_with_high = 0; const auto v_d8 = simd8::splat(0xd8); const auto v_f8 = simd8::splat(0xf8); const auto v_fc = simd8::splat(0xfc); const auto v_dc = simd8::splat(0xdc); const __m256i standardmax = _mm256_set1_epi32(0x10ffff); const __m256i offset = _mm256_set1_epi32(0xffff2000); const __m256i standardoffsetmax = _mm256_set1_epi32(0xfffff7ff); __m256i currentmax = _mm256_setzero_si256(); __m256i currentoffsetmax = _mm256_setzero_si256(); utf8_checker c{}; buf_block_reader<64> reader(reinterpret_cast(input), length); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); // utf8 checks c.check_next_input(in); // utf16le checks auto in0 = simd16(in.chunks[0]); auto in1 = simd16(in.chunks[1]); const auto t0 = in0.shr<8>(); const auto t1 = in1.shr<8>(); const auto in2 = simd16::pack(t0, t1); const auto surrogates_wordmask = (in2 & v_f8) == v_d8; const uint32_t surrogates_bitmask = surrogates_wordmask.to_bitmask(); const auto vL = (in2 & v_fc) == v_dc; const uint32_t L = vL.to_bitmask(); const uint32_t H = L ^ surrogates_bitmask; utf16_err |= (((H << 1) | ends_with_high) != L); ends_with_high = (H & 0x80000000) != 0; // utf32le checks currentmax = _mm256_max_epu32(in.chunks[0], currentmax); currentoffsetmax = _mm256_max_epu32(_mm256_add_epi32(in.chunks[0], offset), currentoffsetmax); currentmax = _mm256_max_epu32(in.chunks[1], currentmax); currentoffsetmax = _mm256_max_epu32(_mm256_add_epi32(in.chunks[1], offset), currentoffsetmax); reader.advance(); } uint8_t block[64]{}; size_t idx = reader.block_index(); std::memcpy(block, &input[idx], length - idx); simd::simd8x64 in(block); c.check_next_input(in); // utf16le last block check auto in0 = simd16(in.chunks[0]); auto in1 = simd16(in.chunks[1]); const auto t0 = in0.shr<8>(); const auto t1 = in1.shr<8>(); const auto in2 = simd16::pack(t0, t1); const auto surrogates_wordmask = (in2 & v_f8) == v_d8; const uint32_t surrogates_bitmask = surrogates_wordmask.to_bitmask(); const auto vL = (in2 & v_fc) == v_dc; const uint32_t L = vL.to_bitmask(); const uint32_t H = L ^ surrogates_bitmask; utf16_err |= (((H << 1) | ends_with_high) != L); // this is required to check for last byte ending in high and end of input // is reached ends_with_high = (H & 0x80000000) != 0; utf16_err |= ends_with_high; // utf32le last block check currentmax = _mm256_max_epu32(in.chunks[0], currentmax); currentoffsetmax = _mm256_max_epu32(_mm256_add_epi32(in.chunks[0], offset), currentoffsetmax); currentmax = _mm256_max_epu32(in.chunks[1], currentmax); currentoffsetmax = _mm256_max_epu32(_mm256_add_epi32(in.chunks[1], offset), currentoffsetmax); reader.advance(); c.check_eof(); bool is_valid_utf8 = !c.errors(); __m256i is_zero = _mm256_xor_si256(_mm256_max_epu32(currentmax, standardmax), standardmax); utf32_err |= (_mm256_testz_si256(is_zero, is_zero) == 0); is_zero = _mm256_xor_si256( _mm256_max_epu32(currentoffsetmax, standardoffsetmax), standardoffsetmax); utf32_err |= (_mm256_testz_si256(is_zero, is_zero) == 0); if (is_valid_utf8) { out |= encoding_type::UTF8; } if (utf16_err == 0) { out |= encoding_type::UTF16_LE; } if (utf32_err == 0) { out |= encoding_type::UTF32_LE; } return out; } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf8(const char *buf, size_t len) const noexcept { return haswell::utf8_validation::generic_validate_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result implementation::validate_utf8_with_errors( const char *buf, size_t len) const noexcept { return haswell::utf8_validation::generic_validate_utf8_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_ascii(const char *buf, size_t len) const noexcept { return haswell::ascii_validation::generic_validate_ascii(buf, len); } simdutf_warn_unused result implementation::validate_ascii_with_errors( const char *buf, size_t len) const noexcept { return haswell::ascii_validation::generic_validate_ascii_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept { return haswell::utf16::validate_utf16_as_ascii_with_errors< endianness::LITTLE>(buf, len) .error == SUCCESS; } simdutf_warn_unused bool implementation::validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept { return haswell::utf16::validate_utf16_as_ascii_with_errors( buf, len) .error == SUCCESS; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf16le(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid UTF-16. protect the implementation from // handling nullptr return true; } const auto res = haswell::utf16::validate_utf16_with_errors(buf, len); if (res.is_err()) { return false; } if (res.count == len) { return true; } return scalar::utf16::validate(buf + res.count, len - res.count); } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool implementation::validate_utf16be(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid UTF-16. protect the implementation from // handling nullptr return true; } const auto res = haswell::utf16::validate_utf16_with_errors(buf, len); if (res.is_err()) { return false; } if (res.count == len) { return true; } return scalar::utf16::validate(buf + res.count, len - res.count); } simdutf_warn_unused result implementation::validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept { const result res = haswell::utf16::validate_utf16_with_errors(buf, len); if (res.count != len) { const result scalar_res = scalar::utf16::validate_with_errors( buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } simdutf_warn_unused result implementation::validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept { const result res = haswell::utf16::validate_utf16_with_errors(buf, len); if (res.count != len) { const result scalar_res = scalar::utf16::validate_with_errors(buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } void implementation::to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept { return utf16fix_avx(input, len, output); } void implementation::to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept { return utf16fix_avx(input, len, output); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf32(const char32_t *buf, size_t len) const noexcept { return utf32::validate(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result implementation::validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept { return utf32::validate_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = avx2_convert_latin1_to_utf8(buf, len, utf8_output); size_t converted_chars = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = avx2_convert_latin1_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t converted_chars = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_converted_chars == 0) { return 0; } converted_chars += scalar_converted_chars; } return converted_chars; } simdutf_warn_unused size_t implementation::convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = avx2_convert_latin1_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t converted_chars = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_converted_chars == 0) { return 0; } converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = avx2_convert_latin1_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t converted_chars = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_converted_chars == 0) { return 0; } converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { utf8_to_latin1::validating_transcoder converter; return converter.convert(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_output) const noexcept { utf8_to_latin1::validating_transcoder converter; return converter.convert_with_errors(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_latin1( const char *input, size_t size, char *latin1_output) const noexcept { return utf8_to_latin1::convert_valid(input, size, latin1_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16le( const char *input, size_t size, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(input, size, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16be( const char *input, size_t size, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(input, size, utf16_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert(buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf32( const char *input, size_t size, char32_t *utf32_output) const noexcept { return utf8_to_utf32::convert_valid(input, size, utf32_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = haswell::avx2_convert_utf16_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = haswell::avx2_convert_utf16_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = avx2_convert_utf16_to_latin1_with_errors( buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = avx2_convert_utf16_to_latin1_with_errors(buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: implement a custom function return convert_utf16be_to_latin1(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: implement a custom function return convert_utf16le_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = haswell::avx2_convert_utf16_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = haswell::avx2_convert_utf16_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = haswell::avx2_convert_utf16_to_utf8_with_errors( buf, len, utf8_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = haswell::avx2_convert_utf16_to_utf8_with_errors( buf, len, utf8_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16le_to_utf8(buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16be_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = avx2_convert_utf32_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = avx2_convert_utf32_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_latin1_with_errors( const char32_t *buf, size_t len, char *latin1_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = avx2_convert_utf32_to_latin1_with_errors(buf, len, latin1_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { return convert_utf32_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result implementation::convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = haswell::avx2_convert_utf32_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = haswell::avx2_convert_utf16_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = haswell::avx2_convert_utf16_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = haswell::avx2_convert_utf16_to_utf32_with_errors( buf, len, utf32_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf32::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf32_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = haswell::avx2_convert_utf16_to_utf32_with_errors( buf, len, utf32_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf32::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf32_output; // Set count to the number of 8-bit code units written return ret.first; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf32_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = avx2_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = avx2_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = haswell::avx2_convert_utf32_to_utf16_with_errors( buf, len, utf16_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf16::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = haswell::avx2_convert_utf32_to_utf16_with_errors( buf, len, utf16_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf16::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16be(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16le_to_utf32(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16be_to_utf32(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void implementation::change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) const noexcept { utf16::change_endianness_utf16(input, length, output); } simdutf_warn_unused size_t implementation::count_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } simdutf_warn_unused size_t implementation::count_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t implementation::count_utf8(const char *in, size_t size) const noexcept { return utf8::count_code_points_bytemask(in, size); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::latin1_length_from_utf8( const char *buf, size_t len) const noexcept { return count_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf8_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_bytemask(input, length); } simdutf_warn_unused size_t implementation::utf8_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_bytemask(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } simdutf_warn_unused size_t implementation::utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf16_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::utf16_length_from_utf8_bytemask(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_with_replacement( input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_with_replacement( input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::utf8_length_from_latin1( const char *input, size_t len) const noexcept { const uint8_t *data = reinterpret_cast(input); size_t answer = len / sizeof(__m256i) * sizeof(__m256i); size_t i = 0; if (answer >= 2048) { // long strings optimization __m256i four_64bits = _mm256_setzero_si256(); while (i + sizeof(__m256i) <= len) { __m256i runner = _mm256_setzero_si256(); // We can do up to 255 loops without overflow. size_t iterations = (len - i) / sizeof(__m256i); if (iterations > 255) { iterations = 255; } size_t max_i = i + iterations * sizeof(__m256i) - sizeof(__m256i); for (; i + 4 * sizeof(__m256i) <= max_i; i += 4 * sizeof(__m256i)) { __m256i input1 = _mm256_loadu_si256((const __m256i *)(data + i)); __m256i input2 = _mm256_loadu_si256((const __m256i *)(data + i + sizeof(__m256i))); __m256i input3 = _mm256_loadu_si256( (const __m256i *)(data + i + 2 * sizeof(__m256i))); __m256i input4 = _mm256_loadu_si256( (const __m256i *)(data + i + 3 * sizeof(__m256i))); __m256i input12 = _mm256_add_epi8(_mm256_cmpgt_epi8(_mm256_setzero_si256(), input1), _mm256_cmpgt_epi8(_mm256_setzero_si256(), input2)); __m256i input23 = _mm256_add_epi8(_mm256_cmpgt_epi8(_mm256_setzero_si256(), input3), _mm256_cmpgt_epi8(_mm256_setzero_si256(), input4)); __m256i input1234 = _mm256_add_epi8(input12, input23); runner = _mm256_sub_epi8(runner, input1234); } for (; i <= max_i; i += sizeof(__m256i)) { __m256i input_256_chunk = _mm256_loadu_si256((const __m256i *)(data + i)); runner = _mm256_sub_epi8( runner, _mm256_cmpgt_epi8(_mm256_setzero_si256(), input_256_chunk)); } four_64bits = _mm256_add_epi64( four_64bits, _mm256_sad_epu8(runner, _mm256_setzero_si256())); } answer += _mm256_extract_epi64(four_64bits, 0) + _mm256_extract_epi64(four_64bits, 1) + _mm256_extract_epi64(four_64bits, 2) + _mm256_extract_epi64(four_64bits, 3); } else if (answer > 0) { for (; i + sizeof(__m256i) <= len; i += sizeof(__m256i)) { __m256i latin = _mm256_loadu_si256((const __m256i *)(data + i)); uint32_t non_ascii = _mm256_movemask_epi8(latin); answer += count_ones(non_ascii); } } return answer + scalar::latin1::utf8_length_from_latin1( reinterpret_cast(data + i), len - i); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf8_length_from_utf32( const char32_t *input, size_t length) const noexcept { return utf32::utf8_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf16_length_from_utf32( const char32_t *input, size_t length) const noexcept { const __m256i v_00000000 = _mm256_setzero_si256(); const __m256i v_ffff0000 = _mm256_set1_epi32((uint32_t)0xffff0000); size_t pos = 0; size_t count = 0; for (; pos + 8 <= length; pos += 8) { __m256i in = _mm256_loadu_si256((__m256i *)(input + pos)); const __m256i surrogate_bytemask = _mm256_cmpeq_epi32(_mm256_and_si256(in, v_ffff0000), v_00000000); const uint32_t surrogate_bitmask = static_cast(_mm256_movemask_epi8(surrogate_bytemask)); size_t surrogate_count = (32 - count_ones(surrogate_bitmask)) / 4; count += 8 + surrogate_count; } return count + scalar::utf32::utf16_length_from_utf32(input + pos, length - pos); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result implementation::base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused result implementation::base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } size_t implementation::binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept { if (options & base64_url) { return encode_base64(output, input, length, options); } else { return encode_base64(output, input, length, options); } } size_t implementation::binary_to_base64_with_lines( const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept { if (options & base64_url) { return avx2_encode_base64_impl(output, input, length, options, line_length); } else { return avx2_encode_base64_impl(output, input, length, options, line_length); } } const char *implementation::find(const char *start, const char *end, char character) const noexcept { return util::find(start, end, character); } const char16_t *implementation::find(const char16_t *start, const char16_t *end, char16_t character) const noexcept { return util::find(start, end, character); } #endif // SIMDUTF_FEATURE_BASE64 } // namespace haswell } // namespace simdutf /* begin file src/simdutf/haswell/end.h */ #if SIMDUTF_CAN_ALWAYS_RUN_HASWELL // nothing needed. #else SIMDUTF_UNTARGET_REGION #endif #undef SIMDUTF_SIMD_HAS_BYTEMASK #if SIMDUTF_GCC11ORMORE // workaround for // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105593 SIMDUTF_POP_DISABLE_WARNINGS #endif // end of workaround /* end file src/simdutf/haswell/end.h */ /* end file src/haswell/implementation.cpp */ #endif #if SIMDUTF_IMPLEMENTATION_PPC64 /* begin file src/ppc64/implementation.cpp */ /* begin file src/simdutf/ppc64/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "ppc64" // #define SIMDUTF_IMPLEMENTATION ppc64 /* end file src/simdutf/ppc64/begin.h */ /* begin file src/ppc64/ppc64_utf16_to_utf8_tables.h */ // Code generated automatically; DO NOT EDIT // file generated by scripts/ppc64_convert_utf16_to_utf8.py #ifndef PPC64_SIMDUTF_UTF16_TO_UTF8_TABLES_H #define PPC64_SIMDUTF_UTF16_TO_UTF8_TABLES_H namespace simdutf { namespace { namespace tables { namespace ppc64_utf16_to_utf8 { #if SIMDUTF_IS_BIG_ENDIAN // 1 byte for length, 16 bytes for mask const uint8_t pack_1_2_3_utf8_bytes[256][17] = { {12, 1, 0, 16, 3, 2, 18, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80}, {9, 3, 2, 18, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 0, 16, 3, 2, 18, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 17, 3, 2, 18, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 16, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 16, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 17, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 16, 2, 18, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 18, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 16, 2, 18, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 17, 2, 18, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 16, 19, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 19, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 16, 19, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 17, 19, 5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 16, 3, 2, 18, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 2, 18, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 16, 3, 2, 18, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 17, 3, 2, 18, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 0, 16, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 16, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 17, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 2, 18, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 18, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 2, 18, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 2, 18, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 19, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 19, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 19, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 19, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 16, 3, 2, 18, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 2, 18, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 16, 3, 2, 18, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 17, 3, 2, 18, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 16, 2, 18, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 18, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 16, 2, 18, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 17, 2, 18, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 16, 19, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 19, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 16, 19, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 17, 19, 4, 20, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 16, 3, 2, 18, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 2, 18, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 16, 3, 2, 18, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 17, 3, 2, 18, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 16, 2, 18, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 18, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 16, 2, 18, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 17, 2, 18, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 19, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 19, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 19, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 19, 21, 7, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 16, 3, 2, 18, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 2, 18, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 16, 3, 2, 18, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 17, 3, 2, 18, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 0, 16, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 16, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 17, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 2, 18, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 18, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 2, 18, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 2, 18, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 19, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 19, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 19, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 19, 5, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 0, 16, 3, 2, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 3, 2, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 16, 3, 2, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 17, 3, 2, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 1, 0, 16, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {0, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 0, 16, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 17, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 0, 16, 2, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 2, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 16, 2, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 17, 2, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 1, 0, 16, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 0, 16, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 17, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 3, 2, 18, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 2, 18, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 3, 2, 18, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 3, 2, 18, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 0, 16, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 16, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 17, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 2, 18, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 2, 18, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 2, 18, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 2, 18, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 0, 16, 19, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 19, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 16, 19, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 17, 19, 4, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 3, 2, 18, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 2, 18, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 3, 2, 18, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 3, 2, 18, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 1, 0, 16, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 0, 16, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 17, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 0, 16, 2, 18, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 2, 18, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 16, 2, 18, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 17, 2, 18, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 0, 16, 19, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 19, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 16, 19, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 17, 19, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 0, 16, 3, 2, 18, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 2, 18, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 16, 3, 2, 18, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 17, 3, 2, 18, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 16, 2, 18, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 18, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 16, 2, 18, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 17, 2, 18, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 16, 19, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 19, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 16, 19, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 17, 19, 5, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 3, 2, 18, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 2, 18, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 3, 2, 18, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 3, 2, 18, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 0, 16, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 16, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 17, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 2, 18, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 2, 18, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 2, 18, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 2, 18, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 0, 16, 19, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 19, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 16, 19, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 17, 19, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 16, 3, 2, 18, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 2, 18, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 16, 3, 2, 18, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 17, 3, 2, 18, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 16, 2, 18, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 18, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 16, 2, 18, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 17, 2, 18, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 19, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 19, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 19, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 19, 4, 20, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 16, 3, 2, 18, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 2, 18, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 16, 3, 2, 18, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 17, 3, 2, 18, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 0, 16, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 16, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 17, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 2, 18, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 18, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 2, 18, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 2, 18, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 19, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 19, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 19, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 19, 21, 6, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 0, 16, 3, 2, 18, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 2, 18, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 16, 3, 2, 18, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 17, 3, 2, 18, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 16, 2, 18, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 18, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 16, 2, 18, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 17, 2, 18, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 19, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 19, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 19, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 19, 5, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 3, 2, 18, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 2, 18, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 3, 2, 18, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 3, 2, 18, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 1, 0, 16, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 0, 16, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 17, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 0, 16, 2, 18, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 2, 18, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 16, 2, 18, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 17, 2, 18, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 0, 16, 19, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 19, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 16, 19, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 17, 19, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 0, 16, 3, 2, 18, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 2, 18, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 16, 3, 2, 18, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 17, 3, 2, 18, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 0, 16, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 16, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 17, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 2, 18, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 18, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 2, 18, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 2, 18, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 19, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 19, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 19, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 19, 4, 20, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 0, 16, 3, 2, 18, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 2, 18, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 16, 3, 2, 18, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 17, 3, 2, 18, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 0, 16, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 16, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 17, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 0, 16, 2, 18, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 2, 18, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 16, 2, 18, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 17, 2, 18, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 0, 16, 19, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 19, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 16, 19, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 17, 19, 21, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, }; #else // 1 byte for length, 16 bytes for mask const uint8_t pack_1_2_3_utf8_bytes[256][17] = { {12, 0, 1, 17, 2, 3, 19, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80}, {9, 2, 3, 19, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 1, 17, 2, 3, 19, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 16, 2, 3, 19, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 1, 17, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 17, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 16, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 0, 1, 17, 3, 19, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 3, 19, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 17, 3, 19, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 16, 3, 19, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 1, 17, 18, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 18, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 17, 18, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 16, 18, 4, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 1, 17, 2, 3, 19, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 19, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 17, 2, 3, 19, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 16, 2, 3, 19, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 1, 17, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 17, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 16, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 3, 19, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 19, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 3, 19, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 3, 19, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 18, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 18, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 18, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 18, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 0, 1, 17, 2, 3, 19, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 19, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 17, 2, 3, 19, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 16, 2, 3, 19, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 1, 17, 3, 19, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 19, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 17, 3, 19, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 16, 3, 19, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 1, 17, 18, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 18, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 17, 18, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 16, 18, 5, 21, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 1, 17, 2, 3, 19, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 19, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 17, 2, 3, 19, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 16, 2, 3, 19, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 1, 17, 3, 19, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 19, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 17, 3, 19, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 16, 3, 19, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 18, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 18, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 18, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 18, 20, 6, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 1, 17, 2, 3, 19, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 19, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 17, 2, 3, 19, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 16, 2, 3, 19, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 1, 17, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 17, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 16, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 3, 19, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 19, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 3, 19, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 3, 19, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 18, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 18, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 18, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 18, 4, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 1, 17, 2, 3, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 2, 3, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 17, 2, 3, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 16, 2, 3, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 0, 1, 17, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {0, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 1, 17, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 16, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 1, 17, 3, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 3, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 1, 17, 3, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 16, 3, 19, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 1, 17, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 1, 17, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 16, 18, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 2, 3, 19, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 3, 19, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 2, 3, 19, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 2, 3, 19, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 1, 17, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 1, 17, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 16, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 3, 19, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 19, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 3, 19, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 3, 19, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 1, 17, 18, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 18, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 17, 18, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 16, 18, 5, 21, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 2, 3, 19, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 2, 3, 19, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 2, 3, 19, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 2, 3, 19, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 1, 17, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 1, 17, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 16, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 1, 17, 3, 19, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 3, 19, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 17, 3, 19, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 16, 3, 19, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 1, 17, 18, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 18, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 1, 17, 18, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 16, 18, 20, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {11, 0, 1, 17, 2, 3, 19, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 2, 3, 19, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 1, 17, 2, 3, 19, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 16, 2, 3, 19, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 1, 17, 3, 19, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 3, 19, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 17, 3, 19, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 16, 3, 19, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 1, 17, 18, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 18, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 17, 18, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 16, 18, 4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 2, 3, 19, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 3, 19, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 2, 3, 19, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 2, 3, 19, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 1, 17, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 1, 17, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 16, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 3, 19, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 19, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 3, 19, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 3, 19, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 1, 17, 18, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 18, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 17, 18, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 16, 18, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 1, 17, 2, 3, 19, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 19, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 17, 2, 3, 19, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 16, 2, 3, 19, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 1, 17, 3, 19, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 19, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 17, 3, 19, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 16, 3, 19, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 18, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 18, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 18, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 18, 5, 21, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 1, 17, 2, 3, 19, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 19, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 17, 2, 3, 19, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 16, 2, 3, 19, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 1, 17, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 17, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 16, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 3, 19, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 19, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 3, 19, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 3, 19, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 18, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 18, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 18, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 18, 20, 7, 23, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {10, 0, 1, 17, 2, 3, 19, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 2, 3, 19, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 1, 17, 2, 3, 19, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 16, 2, 3, 19, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 1, 17, 3, 19, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 3, 19, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 17, 3, 19, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 16, 3, 19, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 18, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 18, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 18, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 18, 4, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 2, 3, 19, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 2, 3, 19, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 2, 3, 19, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 2, 3, 19, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 0, 1, 17, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {1, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 1, 17, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 16, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 1, 17, 3, 19, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 3, 19, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 17, 3, 19, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 16, 3, 19, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 1, 17, 18, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 18, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 1, 17, 18, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 16, 18, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {9, 0, 1, 17, 2, 3, 19, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 2, 3, 19, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 1, 17, 2, 3, 19, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 16, 2, 3, 19, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 1, 17, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 17, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 16, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 3, 19, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 3, 19, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 3, 19, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 3, 19, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 18, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 18, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 18, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 18, 5, 21, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {8, 0, 1, 17, 2, 3, 19, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 2, 3, 19, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 1, 17, 2, 3, 19, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 16, 2, 3, 19, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 0, 1, 17, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {2, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 1, 17, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 16, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {7, 0, 1, 17, 3, 19, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 3, 19, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 1, 17, 3, 19, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 16, 3, 19, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {6, 0, 1, 17, 18, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {3, 18, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {5, 1, 17, 18, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, {4, 16, 18, 20, 22, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80}, }; #endif // SIMDUTF_IS_BIG_ENDIAN } // namespace ppc64_utf16_to_utf8 } // namespace tables } // unnamed namespace } // namespace simdutf #endif // PPC64_SIMDUTF_UTF16_TO_UTF8_TABLES_H /* end file src/ppc64/ppc64_utf16_to_utf8_tables.h */ namespace simdutf { namespace ppc64 { namespace { #ifndef SIMDUTF_PPC64_H #error "ppc64.h must be included" #endif using namespace simd; simdutf_really_inline bool is_ascii(const simd8x64 &input) { // careful: 0x80 is not ascii. return input.reduce_or().saturating_sub(0b01111111u).bits_not_set_anywhere(); } simdutf_really_inline simd8 must_be_2_3_continuation(const simd8 prev2, const simd8 prev3) { simd8 is_third_byte = prev2.saturating_sub(0xe0u - 0x80); // Only 111_____ will be >= 0x80 simd8 is_fourth_byte = prev3.saturating_sub(0xf0u - 0x80); // Only 1111____ will be >= 0x80 // Caller requires a bool (all 1's). All values resulting from the subtraction // will be <= 64, so signed comparison is fine. return simd8(is_third_byte | is_fourth_byte); } /// ErrorReporting describes behaviour of a vectorized procedure regarding error /// checking enum class ErrorReporting { precise, // the procedure will report *approximate* or *precise* error // position at_the_end, // the procedure will only inform about an error after scanning // the whole input (or its significant portion) none, // no error checking is done, we assume valid inputs }; #if SIMDUTF_FEATURE_UTF16 /* begin file src/ppc64/ppc64_validate_utf16.cpp */ template simd8 utf16_gather_high_bytes(const simd16 in0, const simd16 in1) { if (big_endian) { const vec_u8_t pack_high = { 0, 2, 4, 6, 8, 10, 12, 14, // in0 16, 18, 20, 22, 24, 26, 28, 30 // in1 }; return vec_perm(vec_u8_t(in0.value), vec_u8_t(in1.value), pack_high); } else { const vec_u8_t pack_high = { 1, 3, 5, 7, 9, 11, 13, 15, // in0 17, 19, 21, 23, 25, 27, 29, 31 // in1 }; return vec_perm(vec_u8_t(in0.value), vec_u8_t(in1.value), pack_high); } } /* end file src/ppc64/ppc64_validate_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_LATIN1 && SIMDUTF_FEATURE_UTF8 /* begin file src/ppc64/ppc64_convert_latin1_to_utf8.cpp */ /* * reads a vector of uint16 values * bits after 11th are ignored * first 11 bits are encoded into utf8 * !important! utf8_output must have at least 16 writable bytes */ simdutf_really_inline void write_v_u16_11bits_to_utf8(const vector_u16 v_u16, char *&utf8_output, const vector_u8 one_byte_bytemask, const uint16_t one_byte_bitmask) { // 0b1100_0000_1000_0000 const auto v_c080 = vector_u16(0xc080); // 0b0011_1111_0000_0000 const auto v_1f00 = vector_u16(0x1f00); // 0b0000_0000_0011_1111 const auto v_003f = vector_u16(0x003f); // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 // t0 = [0000|0000|00bb|bbbb] const auto t0 = v_u16 & v_003f; // t1 = [000a|aaaa|bbbb|bb00] const auto t1 = v_u16.shl<2>(); // t2 = [000a|aaaa|00bb|bbbb] const auto t2 = select(v_1f00, t1, t0); // t3 = [110a|aaaa|10bb|bbbb] const auto t3 = t2 | v_c080; // 2. merge ASCII and 2-byte codewords const auto utf8_unpacked1 = select(one_byte_bytemask, as_vector_u8(v_u16), as_vector_u8(t3)); #if SIMDUTF_IS_BIG_ENDIAN const auto tmp = as_vector_u16(utf8_unpacked1).swap_bytes(); #else const auto tmp = as_vector_u16(utf8_unpacked1); #endif // SIMDUTF_IS_BIG_ENDIAN const auto utf8_unpacked = as_vector_u8(tmp); // 3. prepare bitmask for 8-bit lookup // one_byte_bitmask = hhggffeeddccbbaa -- the bits are doubled (h - MSB, a // - LSB) const uint16_t m0 = one_byte_bitmask & 0x5555; // m0 = 0h0g0f0e0d0c0b0a const uint16_t m1 = static_cast(m0 >> 7); // m1 = 00000000h0g0f0e0 const uint8_t m2 = static_cast((m0 | m1) & 0xff); // m2 = hdgcfbea // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[m2][0]; const auto shuffle = vector_u8::load(row + 1); const auto utf8_packed = shuffle.lookup_16(utf8_unpacked); // 5. store bytes utf8_packed.store(utf8_output); // 6. adjust pointers utf8_output += row[0]; } inline void write_v_u16_11bits_to_utf8(const vector_u16 v_u16, char *&utf8_output, const vector_u16 v_0000, const vector_u16 v_ff80) { // no bits set above 7th bit const auto one_byte_bytemask = (v_u16 & v_ff80) == v_0000; const uint16_t one_byte_bitmask = one_byte_bytemask.to_bitmask(); write_v_u16_11bits_to_utf8(v_u16, utf8_output, as_vector_u8(one_byte_bytemask), one_byte_bitmask); } std::pair ppc64_convert_latin1_to_utf8(const char *latin_input, const size_t latin_input_length, char *utf8_output) { const char *end = latin_input + latin_input_length; const auto v_0000 = vector_u16::zero(); const auto v_00 = vector_u8::zero(); // 0b1111_1111_1000_0000 const auto v_ff80 = vector_u16(0xff80); #if SIMDUTF_IS_BIG_ENDIAN const auto latin_1_half_into_u16_byte_mask = vector_u8(16, 0, 16, 1, 16, 2, 16, 3, 16, 4, 16, 5, 16, 6, 16, 7); const auto latin_2_half_into_u16_byte_mask = vector_u8(16, 8, 16, 9, 16, 10, 16, 11, 16, 12, 16, 13, 16, 14, 16, 15); #else const auto latin_1_half_into_u16_byte_mask = vector_u8(0, 16, 1, 16, 2, 16, 3, 16, 4, 16, 5, 16, 6, 16, 7, 16); const auto latin_2_half_into_u16_byte_mask = vector_u8(8, 16, 9, 16, 10, 16, 11, 16, 12, 16, 13, 16, 14, 16, 15, 16); #endif // SIMDUTF_IS_BIG_ENDIAN // each latin1 takes 1-2 utf8 bytes // slow path writes useful 8-15 bytes twice (eagerly writes 16 bytes and then // adjust the pointer) so the last write can exceed the utf8_output size by // 8-1 bytes by reserving 8 extra input bytes, we expect the output to have // 8-16 bytes free while (end - latin_input >= 16 + 8) { // Load 16 Latin1 characters (16 bytes) into a 128-bit register const auto v_latin = vector_u8::load(latin_input); if (v_latin.is_ascii()) { // ASCII fast path!!!! v_latin.store(utf8_output); latin_input += 16; utf8_output += 16; continue; } // assuming a/b are bytes and A/B are uint16 of the same value // aaaa_aaaa_bbbb_bbbb -> AAAA_AAAA const vector_u16 v_u16_latin_1_half = as_vector_u16(latin_1_half_into_u16_byte_mask.lookup_32(v_latin, v_00)); // aaaa_aaaa_bbbb_bbbb -> BBBB_BBBB const vector_u16 v_u16_latin_2_half = as_vector_u16(latin_2_half_into_u16_byte_mask.lookup_32(v_latin, v_00)); write_v_u16_11bits_to_utf8(v_u16_latin_1_half, utf8_output, v_0000, v_ff80); write_v_u16_11bits_to_utf8(v_u16_latin_2_half, utf8_output, v_0000, v_ff80); latin_input += 16; } if (end - latin_input >= 16) { // Load 16 Latin1 characters (16 bytes) into a 128-bit register const auto v_latin = vector_u8::load(latin_input); if (v_latin.is_ascii()) { // ASCII fast path!!!! v_latin.store(utf8_output); latin_input += 16; utf8_output += 16; } else { // assuming a/b are bytes and A/B are uint16 of the same value // aaaa_aaaa_bbbb_bbbb -> AAAA_AAAA const auto v_u16_latin_1_half = as_vector_u16( latin_1_half_into_u16_byte_mask.lookup_32(v_latin, v_00)); write_v_u16_11bits_to_utf8(v_u16_latin_1_half, utf8_output, v_0000, v_ff80); latin_input += 8; } } return std::make_pair(latin_input, utf8_output); } /* end file src/ppc64/ppc64_convert_latin1_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_LATIN1 && SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_LATIN1 && SIMDUTF_FEATURE_UTF16 /* begin file src/ppc64/ppc64_convert_latin1_to_utf16.cpp */ template size_t ppc64_convert_latin1_to_utf16(const char *latin1_input, size_t len, char16_t *utf16_output) { const size_t rounded_len = align_down(len); for (size_t i = 0; i < rounded_len; i += vector_u8::ELEMENTS) { const auto in = vector_u8::load(&latin1_input[i]); in.store_bytes_as_utf16(&utf16_output[i]); } return rounded_len; } /* end file src/ppc64/ppc64_convert_latin1_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_LATIN1 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_LATIN1 && SIMDUTF_FEATURE_UTF32 /* begin file src/ppc64/ppc64_convert_latin1_to_utf32.cpp */ std::pair ppc64_convert_latin1_to_utf32(const char *buf, size_t len, char32_t *utf32_output) { const size_t rounded_len = align_down(len); for (size_t i = 0; i < rounded_len; i += vector_u8::ELEMENTS) { const auto in = vector_u8::load(&buf[i]); in.store_bytes_as_utf32(&utf32_output[i]); } return std::make_pair(buf + rounded_len, utf32_output + rounded_len); } /* end file src/ppc64/ppc64_convert_latin1_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_LATIN1 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/ppc64/ppc64_convert_utf8_to_latin1.cpp */ // depends on "tables/utf8_to_utf16_tables.h" // Convert up to 12 bytes from utf8 to latin1 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). size_t convert_masked_utf8_to_latin1(const char *input, uint64_t utf8_end_of_code_point_mask, char *&latin1_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // const auto in = vector_u8::load(input); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; // we are only processing 12 bytes in case it is not all ASCII if (utf8_end_of_code_point_mask == 0xfff) { // We process the data in chunks of 12 bytes. in.store(latin1_output); latin1_output += 12; // We wrote 12 characters. return 12; // We consumed 12 bytes. } /// We do not have a fast path available, so we fallback. const uint8_t idx = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][1]; // this indicates an invalid input: if (idx >= 64) { return consumed; } // Here we should have (idx < 64), if not, there is a bug in the validation or // elsewhere. SIX (6) input code-code units this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. On // processors where pdep/pext is fast, we might be able to use a small lookup // table. const auto reshuffle = vector_u8::load(&tables::utf8_to_utf16::shufutf8[idx]); const auto perm8 = reshuffle.lookup_32(in, vector_u8::zero()); #if SIMDUTF_IS_BIG_ENDIAN const auto perm16 = as_vector_u16(perm8).swap_bytes(); #else const auto perm16 = as_vector_u16(perm8); #endif // SIMDUTF_IS_BIG_ENDIAN const auto ascii = perm16 & uint16_t(0x7f); const auto highbyte = perm16 & uint16_t(0x1f00); const auto composed = ascii | highbyte.shr<2>(); const auto latin1_packed = vector_u16::pack(composed, composed); #if defined(__clang__) __attribute__((aligned(16))) char buf[16]; latin1_packed.store(buf); memcpy(latin1_output, buf, 6); #else // writing 8 bytes even though we only care about the first 6 bytes. const auto tmp = vec_u64_t(latin1_packed.value); memcpy(latin1_output, &tmp[0], 8); #endif latin1_output += 6; // We wrote 6 bytes. return consumed; } /* end file src/ppc64/ppc64_convert_utf8_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/ppc64/ppc64_convert_utf8_to_utf16.cpp */ // depends on "tables/utf8_to_utf16_tables.h" // Convert up to 12 bytes from utf8 to utf16 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). template size_t convert_masked_utf8_to_utf16(const char *input, uint64_t utf8_end_of_code_point_mask, char16_t *&utf16_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // // We first try a few fast paths. const auto in = vector_u8::load(input); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; if (utf8_end_of_code_point_mask == 0xfff) { // We process the data in chunks of 12 bytes. // Note: using 16 bytes is unsafe, see issue_ossfuzz_71218 in.store_bytes_as_utf16(utf16_output); utf16_output += 12; // We wrote 12 16-bit characters. return 12; // We consumed 12 bytes. } if (((utf8_end_of_code_point_mask & 0xFFFF) == 0xaaaa)) { // We want to take 8 2-byte UTF-8 code units and turn them into 8 2-byte // UTF-16 code units. #if SIMDUTF_IS_BIG_ENDIAN const auto in16 = as_vector_u16(in); #else const auto in16 = as_vector_u16(in).swap_bytes(); #endif // SIMDUTF_IS_BIG_ENDIAN const auto lo = in16 & uint16_t(0x007f); const auto hi = in16.shr<2>(); auto composed = select(uint16_t(0x1f00 >> 2), hi, lo); if (!match_system(big_endian)) { composed = composed.swap_bytes(); } composed.store(utf16_output); utf16_output += 8; // We wrote 16 bytes, 8 code points. return 16; } if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 2-byte // UTF-16 code units. There is probably a more efficient sequence, but the // following might do. // AltiVec: it might be done better, for now SSE translation const auto sh = vector_u8(2, 1, 0, 16, 5, 4, 3, 16, 8, 7, 6, 16, 11, 10, 9, 16); #if SIMDUTF_IS_BIG_ENDIAN const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())).swap_bytes(); #else const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())); #endif // SIMDUTF_IS_BIG_ENDIAN const auto b0 = perm & uint32_t(0x0000007f); const auto b1 = select(uint32_t(0x00003f00 >> 2), perm.shr<2>(), b0); const auto b2 = select(uint32_t(0x000f0000 >> 4), perm.shr<4>(), b1); const auto composed = b2; auto packed = vector_u32::pack(composed, composed); if (!match_system(big_endian)) { packed = packed.swap_bytes(); } packed.store(utf16_output); utf16_output += 4; return 12; } /// We do not have a fast path available, so we fallback. const uint8_t idx = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][1]; if (idx < 64) { // SIX (6) input code-code units // this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. On // processors where pdep/pext is fast, we might be able to use a small // lookup table. const auto sh = vector_u8::load(&tables::utf8_to_utf16::shufutf8[idx]); #if SIMDUTF_IS_BIG_ENDIAN const auto perm = as_vector_u16(sh.lookup_32(in, vector_u8::zero())).swap_bytes(); #else const auto perm = as_vector_u16(sh.lookup_32(in, vector_u8::zero())); #endif // SIMDUTF_IS_BIG_ENDIAN const auto b0 = perm & uint16_t(0x007f); const auto b1 = perm & uint16_t(0x1f00); auto composed = b0 | b1.shr<2>(); if (!match_system(big_endian)) { composed = composed.swap_bytes(); } composed.store(utf16_output); utf16_output += 6; // We wrote 12 bytes, 6 code points. } else if (idx < 145) { // FOUR (4) input code-code units const auto sh = vector_u8::load(&tables::utf8_to_utf16::shufutf8[idx]); #if SIMDUTF_IS_BIG_ENDIAN const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())).swap_bytes(); #else const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())); #endif // SIMDUTF_IS_BIG_ENDIAN const auto b0 = perm & uint32_t(0x0000007f); const auto b1 = perm & uint32_t(0x00003f00); const auto b2 = perm & uint32_t(0x000f0000); const auto composed = b0 | b1.shr<2>() | b2.shr<4>(); auto packed = vector_u32::pack(composed, composed); if (!match_system(big_endian)) { packed = packed.swap_bytes(); } packed.store(utf16_output); utf16_output += 4; } else if (idx < 209) { // TWO (2) input code-code units ////////////// // There might be garbage inputs where a leading byte mascarades as a // four-byte leading byte (by being followed by 3 continuation byte), but is // not greater than 0xf0. This could trigger a buffer overflow if we only // counted leading bytes of the form 0xf0 as generating surrogate pairs, // without further UTF-8 validation. Thus we must be careful to ensure that // only leading bytes at least as large as 0xf0 generate surrogate pairs. We // do as at the cost of an extra mask. ///////////// const auto sh = vector_u8::load(&tables::utf8_to_utf16::shufutf8[idx]); #if SIMDUTF_IS_BIG_ENDIAN const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())).swap_bytes(); #else const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())); #endif // SIMDUTF_IS_BIG_ENDIAN const auto ascii = perm & uint32_t(0x00000007f); const auto middlebyte = perm & uint32_t(0x00003f00); const auto middlebyte_shifted = middlebyte.shr<2>(); auto middlehighbyte = perm & uint32_t(0x003f0000); // correct for spurious high bit const auto correct = (perm & uint32_t(0x00400000)).shr<1>(); middlehighbyte = correct ^ middlehighbyte; const auto middlehighbyte_shifted = middlehighbyte.shr<4>(); // We deliberately carry the leading four bits in highbyte if they are // present, we remove them later when computing hightenbits. const auto highbyte = perm & uint32_t(0xff000000); const auto highbyte_shifted = highbyte.shr<6>(); // When we need to generate a surrogate pair (leading byte > 0xF0), then // the corresponding 32-bit value in 'composed' will be greater than // > (0xff00000>>6) or > 0x3c00000. This can be used later to identify the // location of the surrogate pairs. const auto composed = ascii | middlebyte_shifted | highbyte_shifted | middlehighbyte_shifted; const auto composedminus = composed - uint32_t(0x10000); const auto lowtenbits = composedminus & uint32_t(0x3ff); // Notice the 0x3ff mask: const auto hightenbits = composedminus.shr<10>() & uint32_t(0x3ff); const auto lowtenbitsadd = lowtenbits + uint32_t(0xDC00); const auto hightenbitsadd = hightenbits + uint32_t(0xD800); const auto lowtenbitsaddshifted = lowtenbitsadd.shl<16>(); auto surrogates = hightenbitsadd | lowtenbitsaddshifted; uint32_t basic_buffer[4]; composed.store(basic_buffer); uint32_t surrogate_buffer[4]; surrogates.swap_bytes().store(surrogate_buffer); for (size_t i = 0; i < 3; i++) { if (basic_buffer[i] > 0x3c00000) { const auto ch0 = uint16_t(surrogate_buffer[i] & 0xffff); const auto ch1 = uint16_t(surrogate_buffer[i] >> 16); if (match_system(big_endian)) { utf16_output[1] = scalar::u16_swap_bytes(ch0); utf16_output[0] = scalar::u16_swap_bytes(ch1); } else { utf16_output[1] = ch0; utf16_output[0] = ch1; } utf16_output += 2; } else { const auto chr = uint16_t(basic_buffer[i]); if (match_system(big_endian)) { utf16_output[0] = chr; } else { utf16_output[0] = scalar::u16_swap_bytes(chr); } utf16_output++; } } } else { // here we know that there is an error but we do not handle errors } return consumed; } /* end file src/ppc64/ppc64_convert_utf8_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/ppc64/ppc64_convert_utf8_to_utf32.cpp */ // depends on "tables/utf8_to_utf16_tables.h" // Convert up to 12 bytes from utf8 to utf32 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). size_t convert_masked_utf8_to_utf32(const char *input, uint64_t utf8_end_of_code_point_mask, char32_t *&utf32_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // // We first try a few fast paths. const auto in = vector_u8::load(input); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; if (utf8_end_of_code_point_mask == 0xfff) { // We process the data in chunks of 12 bytes. in.store_bytes_as_utf32(utf32_output); utf32_output += 12; // We wrote 12 32-bit characters. return 12; // We consumed 12 bytes. } if (((utf8_end_of_code_point_mask & 0xffff) == 0xaaaa)) { // We want to take 8 2-byte UTF-8 code units and turn them into 8 4-byte // UTF-32 code units. #if SIMDUTF_IS_BIG_ENDIAN const auto perm = as_vector_u16(in); #else const auto perm = as_vector_u16(in).swap_bytes(); #endif // SIMDUTF_IS_BIG_ENDIAN // in = [110aaaaa|10bbbbbb] // t0 = [00000000|00bbbbbb] const auto t0 = perm & uint16_t(0x007f); // t1 = [00110aaa|aabbbbbb] const auto t1 = perm.shr<2>(); const auto composed = select(uint16_t(0x1f00 >> 2), t1, t0); const auto composed8 = as_vector_u8(composed); composed8.store_words_as_utf32(utf32_output); utf32_output += 8; // We wrote 32 bytes, 8 code points. return 16; } if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 4-byte // UTF-32 code units. #if SIMDUTF_IS_BIG_ENDIAN const auto sh = vector_u8(-1, 0, 1, 2, -1, 3, 4, 5, -1, 6, 7, 8, -1, 9, 10, 11); #else const auto sh = vector_u8(2, 1, 0, -1, 5, 4, 3, -1, 8, 7, 6, -1, 11, 10, 9, -1); #endif // SIMDUTF_IS_BIG_ENDIAN const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())); // in = [1110aaaa|10bbbbbb|10cccccc] // t0 = [00000000|00000000|00cccccc] const auto t0 = perm & uint32_t(0x0000007f); // t2 = [00000000|0000bbbb|bbcccccc] const auto t1 = perm.shr<2>(); const auto t2 = select(uint32_t(0x00003f00 >> 2), t1, t0); // t4 = [00000000|aaaabbbb|bbcccccc] const auto t3 = perm.shr<4>(); const auto t4 = select(uint32_t(0x0f0000 >> 4), t3, t2); t4.store(utf32_output); utf32_output += 4; return 12; } /// We do not have a fast path available, so we fallback. const uint8_t idx = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][1]; if (idx < 64) { // SIX (6) input code-code units // this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. On // processors where pdep/pext is fast, we might be able to use a small // lookup table. const auto sh = vector_u8::load(&tables::utf8_to_utf16::shufutf8[idx]); #if SIMDUTF_IS_BIG_ENDIAN const auto perm = as_vector_u16(sh.lookup_32(in, vector_u8::zero())).swap_bytes(); #else const auto perm = as_vector_u16(sh.lookup_32(in, vector_u8::zero())); #endif // SIMDUTF_IS_BIG_ENDIAN const auto ascii = perm & uint16_t(0x7f); const auto highbyte = perm & uint16_t(0x1f00); const auto composed = ascii | highbyte.shr<2>(); as_vector_u8(composed).store_words_as_utf32(utf32_output); utf32_output += 6; // We wrote 12 bytes, 6 code points. } else if (idx < 145) { // FOUR (4) input code-code units const auto sh = vector_u8::load(&tables::utf8_to_utf16::shufutf8[idx]); #if SIMDUTF_IS_BIG_ENDIAN const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())).swap_bytes(); #else const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())); #endif // SIMDUTF_IS_BIG_ENDIAN const auto ascii = perm & uint32_t(0x7f); const auto middlebyte = perm & uint32_t(0x3f00); const auto middlebyte_shifted = middlebyte.shr<2>(); const auto highbyte = perm & uint32_t(0x0f0000); const auto highbyte_shifted = highbyte.shr<4>(); const auto composed = ascii | middlebyte_shifted | highbyte_shifted; composed.store(utf32_output); utf32_output += 4; } else if (idx < 209) { // TWO (2) input code-code units const auto sh = vector_u8::load(&tables::utf8_to_utf16::shufutf8[idx]); #if SIMDUTF_IS_BIG_ENDIAN const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())).swap_bytes(); #else const auto perm = as_vector_u32(sh.lookup_32(in, vector_u8::zero())); #endif // SIMDUTF_IS_BIG_ENDIAN const auto ascii = perm & uint32_t(0x0000007f); const auto middlebyte = perm & uint32_t(0x3f00); const auto middlebyte_shifted = middlebyte.shr<2>(); auto middlehighbyte = perm & uint32_t(0x003f0000); // correct for spurious high bit const auto correct0 = perm & uint32_t(0x00400000); const auto correct = correct0.shr<1>(); middlehighbyte = correct ^ middlehighbyte; const auto middlehighbyte_shifted = middlehighbyte.shr<4>(); const auto highbyte = perm & uint32_t(0x07000000); const auto highbyte_shifted = highbyte.shr<6>(); const auto composed = ascii | middlebyte_shifted | highbyte_shifted | middlehighbyte_shifted; composed.store(utf32_output); utf32_output += 3; } else { // here we know that there is an error but we do not handle errors } return consumed; } /* end file src/ppc64/ppc64_convert_utf8_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/ppc64/ppc64_convert_utf16_to_latin1.cpp */ struct utf16_to_latin1_t { error_code err; const char16_t *input; char *output; }; template utf16_to_latin1_t ppc64_convert_utf16_to_latin1(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *end = buf + len; while (end - buf >= 8) { // Load 8 x UTF-16 characters auto in = vector_u8::load(buf); // Move low bytes of UTF-16 chars to lower half of `in` // and upper bytes to upper half of `in`. if (!match_system(big_endian)) { const auto perm = vector_u8(0, 2, 4, 6, 8, 10, 12, 14, 1, 3, 5, 7, 9, 11, 13, 15); in = perm.lookup_16(in); } else { const auto perm = vector_u8(1, 3, 5, 7, 9, 11, 13, 15, 0, 2, 4, 6, 8, 10, 12, 14); in = perm.lookup_16(in); } // AltiVec-specific #if defined(__clang__) __attribute__((aligned(16))) uint64_t tmp[8]; in.store(tmp); #if SIMDUTF_IS_BIG_ENDIAN memcpy(latin1_output, &tmp[0], 8); const uint64_t upper = tmp[1]; #else memcpy(latin1_output, &tmp[1], 8); const uint64_t upper = tmp[0]; #endif // SIMDUTF_IS_BIG_ENDIAN #else const auto tmp = vec_u64_t(in.value); #if SIMDUTF_IS_BIG_ENDIAN memcpy(latin1_output, &tmp[0], 8); const uint64_t upper = tmp[1]; #else memcpy(latin1_output, &tmp[1], 8); const uint64_t upper = tmp[0]; #endif // SIMDUTF_IS_BIG_ENDIAN #endif // defined(__clang__) // AltiVec if (simdutf_unlikely(upper)) { uint8_t bytes[8]; memcpy(bytes, &upper, 8); for (size_t k = 0; k < 8; k++) { if (bytes[k] != 0) { return utf16_to_latin1_t{error_code::TOO_LARGE, buf + k, latin1_output}; } } } else { // Adjust pointers for next iteration buf += 8; latin1_output += 8; } } // while return utf16_to_latin1_t{error_code::SUCCESS, buf, latin1_output}; } /* end file src/ppc64/ppc64_convert_utf16_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF8 /* begin file src/ppc64/ppc64_convert_utf16_to_utf8.cpp */ /* The vectorized algorithm works on single SSE register i.e., it loads eight 16-bit code units. We consider three cases: 1. an input register contains no surrogates and each value is in range 0x0000 .. 0x07ff. 2. an input register contains no surrogates and values are is in range 0x0000 .. 0xffff. 3. an input register contains surrogates --- i.e. codepoints can have 16 or 32 bits. Ad 1. When values are less than 0x0800, it means that a 16-bit code unit can be converted into: 1) single UTF8 byte (when it is an ASCII char) or 2) two UTF8 bytes. For this case we do only some shuffle to obtain these 2-byte codes and finally compress the whole SSE register with a single shuffle. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. Ad 2. When values fit in 16-bit code units, but are above 0x07ff, then a single word may produce one, two or three UTF8 bytes. We prepare data for all these three cases in two registers. The first register contains lower two UTF8 bytes (used in all cases), while the second one contains just the third byte for the three-UTF8-bytes case. Finally these two registers are interleaved forming eight-element array of 32-bit values. The array spans two SSE registers. The bytes from the registers are compressed using two shuffles. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. To summarize: - We need two 256-entry tables that have 8704 bytes in total. */ // Auxiliary procedure used by UTF-16 and UTF-32 into UTF-8. // Note the pointer is passed by reference, it is updated by the procedure. template simdutf_really_inline void ppc64_convert_utf16_to_1_2_3_bytes_of_utf8( const vector_u16 in, uint16_t one_byte_bitmask, const T one_or_two_bytes_bytemask, uint16_t one_or_two_bytes_bitmask, char *&utf8_output) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes #if SIMDUTF_IS_BIG_ENDIAN const auto dup_lsb = vector_u8(1, 1, 3, 3, 5, 5, 7, 7, 9, 9, 11, 11, 13, 13, 15, 15); #else const auto dup_lsb = vector_u8(0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14); #endif // SIMDUTF_IS_BIG_ENDIAN /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const auto t0 = as_vector_u16(dup_lsb.lookup_16(as_vector_u8(in))); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const auto t1 = t0 & uint16_t(0b0011111101111111); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const auto t2 = t1 | uint16_t(0b1000000000000000); // in = [aaaa|bbbb|bbcc|cccc] // a0 = [0000|0000|0000|aaaa] const auto a0 = in.shr<12>(); // b0 = [aabb|bbbb|cccc|cc00] const auto b0 = in.shl<2>(); // s0 = [00bb|bbbb|00cc|cccc] const auto s0 = select(uint16_t(0x3f00), b0, a0); // s3 = [11bb|bbbb|1110|aaaa] const auto s3 = s0 | uint16_t(0b1100000011100000); const auto m0 = ~as_vector_u16(one_or_two_bytes_bytemask) & uint16_t(0b0100000000000000); const auto s4 = s3 ^ m0; // 4. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint16_t mask = (one_byte_bitmask & 0x5555) | (one_or_two_bytes_bitmask & 0xaaaa); if (mask == 0) { // We only have three-byte code units. Use fast path. #if SIMDUTF_IS_BIG_ENDIAN // Lookups produced by scripts/ppc64_convert_utf16_to_utf8.py const auto shuffle0 = vector_u8(1, 0, 16, 3, 2, 18, 5, 4, 20, 7, 6, 22, 9, 8, 24, 11); const auto shuffle1 = vector_u8(10, 26, 13, 12, 28, 15, 14, 30, -1, -1, -1, -1, -1, -1, -1, -1); #else const auto shuffle0 = vector_u8(0, 1, 17, 2, 3, 19, 4, 5, 21, 6, 7, 23, 8, 9, 25, 10); const auto shuffle1 = vector_u8(11, 27, 12, 13, 29, 14, 15, 31, -1, -1, -1, -1, -1, -1, -1, -1); #endif // SIMDUTF_IS_BIG_ENDIAN const auto utf8_0 = shuffle0.lookup_32(as_vector_u8(s4), as_vector_u8(t2)); const auto utf8_1 = shuffle1.lookup_32(as_vector_u8(s4), as_vector_u8(t2)); utf8_0.store(utf8_output); utf8_output += 16; utf8_1.store(utf8_output); utf8_output += 8; return; } const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::ppc64_utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const auto shuffle0 = vector_u8::load(row0 + 1); const auto utf8_0 = shuffle0.lookup_32(as_vector_u8(s4), as_vector_u8(t2)); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::ppc64_utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const auto shuffle1 = vector_u8::load(row1 + 1) + uint8_t(8); const auto utf8_1 = shuffle1.lookup_32(as_vector_u8(s4), as_vector_u8(t2)); utf8_0.store(utf8_output); utf8_output += row0[0]; utf8_1.store(utf8_output); utf8_output += row1[0]; } struct utf16_to_utf8_t { error_code err; const char16_t *input; char *output; }; /* Returns utf16_to_utf8_t value A scalar routine should carry on the conversion of the tail, iff there was no error. */ template utf16_to_utf8_t ppc64_convert_utf16_to_utf8(const char16_t *buf, size_t len, char *utf8_output) { const char16_t *end = buf + len; const auto v_f800 = vector_u16(0xf800); const auto v_d800 = vector_u16(0xd800); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { auto in = vector_u16::load(buf); if (not match_system(big_endian)) { in = in.swap_bytes(); } // a single 16-bit UTF-16 word can yield 1, 2 or 3 UTF-8 bytes if (in.is_ascii()) { auto nextin = vector_u16::load(buf + vector_u16::ELEMENTS); if (not match_system(big_endian)) { nextin = nextin.swap_bytes(); } if (nextin.is_ascii()) { // 1. pack the bytes const auto utf8_packed = vector_u16::pack(in, nextin); // 2. store (16 bytes) utf8_packed.store(utf8_output); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } // next block is not ASCII const auto utf8_packed = vector_u16::pack(in, in); // 2. store (16 bytes) utf8_packed.store(utf8_output); // 3. adjust pointers buf += 8; utf8_output += 8; in = nextin; // fallback } // no bits set above 7th bit const auto one_byte_bytemask = in < uint16_t(1 << 7); const uint16_t one_byte_bitmask = one_byte_bytemask.to_bitmask(); // no bits set above 11th bit const auto one_or_two_bytes_bytemask = in < uint16_t(1 << 11); const uint16_t one_or_two_bytes_bitmask = one_or_two_bytes_bytemask.to_bitmask(); if (one_or_two_bytes_bitmask == 0xffff) { write_v_u16_11bits_to_utf8( in, utf8_output, as_vector_u8(one_byte_bytemask), one_byte_bitmask); buf += 8; continue; } // 1. Check if there are any surrogate word in the input chunk. // We have also to deal with situation when there is a surrogate word // at the end of a chunk. const auto surrogates_bytemask = (in & v_f800) == v_d800; // bitmask = 0x0000 if there are no surrogates // = 0xc000 if the last word is a surrogate const uint16_t surrogates_bitmask = surrogates_bytemask.to_bitmask(); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (surrogates_bitmask == 0x0000) { ppc64_convert_utf16_to_1_2_3_bytes_of_utf8( in, one_byte_bitmask, one_or_two_bytes_bytemask, one_or_two_bytes_bitmask, utf8_output); buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = not match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = uint8_t(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = uint8_t((word >> 6) | 0b11000000); *utf8_output++ = uint8_t((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = uint8_t((word >> 12) | 0b11100000); *utf8_output++ = uint8_t(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = uint8_t((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = not match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return utf16_to_utf8_t{error_code::SURROGATE, buf + k - 1, utf8_output}; } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = uint8_t((value >> 18) | 0b11110000); *utf8_output++ = uint8_t(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = uint8_t(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = uint8_t((value & 0b111111) | 0b10000000); } } buf += k; } } // while return utf16_to_utf8_t{error_code::SUCCESS, buf, utf8_output}; } /* end file src/ppc64/ppc64_convert_utf16_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/ppc64/ppc64_convert_utf16_to_utf32.cpp */ struct utf16_to_utf32_t { error_code err; // error code const char16_t *input; // last position in input buffer char32_t *output; // last position in output buffer }; template utf16_to_utf32_t ppc64_convert_utf16_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_output) { const char16_t *end = buf + len; const auto v_f800 = vector_u16::splat(0xf800); const auto v_d800 = vector_u16::splat(0xd800); const auto zero = vector_u8::zero(); while (end - buf >= vector_u16::ELEMENTS) { auto in = vector_u16::load(buf); if (not match_system(big_endian)) { in = in.swap_bytes(); } // 1. Check if there are any surrogate word in the input chunk. // We have also deal with situation when there is a surrogate word // at the end of a chunk. const auto surrogates_bytemask = (in & v_f800) == v_d800; // bitmask = 0x0000 if there are no surrogates const uint16_t surrogates_bitmask = surrogates_bytemask.to_bitmask(); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (surrogates_bitmask == 0x0000) { // case: no surrogate pairs, extend 16-bit code units to 32-bit code units #if SIMDUTF_IS_BIG_ENDIAN const auto lo = vector_u8(16, 16, 0, 1, 16, 16, 2, 3, 16, 16, 4, 5, 16, 16, 6, 7); const auto hi = vector_u8(16, 16, 8 + 0, 8 + 1, 16, 16, 8 + 2, 8 + 3, 16, 16, 8 + 4, 8 + 5, 16, 16, 8 + 6, 8 + 7); #else const auto lo = vector_u8(0, 1, 16, 16, 2, 3, 16, 16, 4, 5, 16, 16, 6, 7, 16, 16); const auto hi = vector_u8(8 + 0, 8 + 1, 16, 16, 8 + 2, 8 + 3, 16, 16, 8 + 4, 8 + 5, 16, 16, 8 + 6, 8 + 7, 16, 16); #endif // SIMDUTF_IS_BIG_ENDIAN const auto utf32_0 = lo.lookup_32(as_vector_u8(in), zero); const auto utf32_1 = hi.lookup_32(as_vector_u8(in), zero); utf32_0.store(utf32_output); utf32_1.store(utf32_output + 4); utf32_output += 8; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { const uint16_t word = not match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = not match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return utf16_to_utf32_t{error_code::SURROGATE, buf + k - 1, utf32_output}; } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return utf16_to_utf32_t{error_code::SUCCESS, buf, utf32_output}; } /* end file src/ppc64/ppc64_convert_utf16_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/ppc64/ppc64_convert_utf32_to_latin1.cpp */ enum class ErrorChecking { disabled, enabled }; struct utf32_to_latin1_t { error_code err; const char32_t *input; char *output; }; template utf32_to_latin1_t simdutf_really_inline ppc64_convert_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) { constexpr size_t N = vector_u32::ELEMENTS; const size_t rounded_len = align_down<4 * N>(len); const auto high_bytes_mask = vector_u32::splat(0xFFFFFF00); for (size_t i = 0; i < rounded_len; i += 4 * N) { const auto in1 = vector_u32::load(buf + 0 * N); const auto in2 = vector_u32::load(buf + 1 * N); const auto in3 = vector_u32::load(buf + 2 * N); const auto in4 = vector_u32::load(buf + 3 * N); if (ec == ErrorChecking::enabled) { const auto combined = in1 | in2 | in3 | in4; const auto too_big = (combined & high_bytes_mask) != uint32_t(0); if (simdutf_unlikely(too_big.any())) { // Scalar code will carry on from the beginning of the current block // and report the exact error position. return utf32_to_latin1_t{error_code::OTHER, buf, latin1_output}; } } // Note: element #1 contains 0, and is used to mask-out elements #if SIMDUTF_IS_BIG_ENDIAN const auto shlo = vector_u8(0 + 3, 4 + 3, 8 + 3, 12 + 3, 16 + 3, 20 + 3, 24 + 3, 28 + 3, 1, 1, 1, 1, 1, 1, 1, 1); const auto shhi = vector_u8(1, 1, 1, 1, 1, 1, 1, 1, 0 + 3, 4 + 3, 8 + 3, 12 + 3, 16 + 3, 20 + 3, 24 + 3, 28 + 3); #else const auto shlo = vector_u8(0, 4, 8, 12, 16, 20, 24, 28, 1, 1, 1, 1, 1, 1, 1, 1); const auto shhi = vector_u8(1, 1, 1, 1, 1, 1, 1, 1, 0, 4, 8, 12, 16, 20, 24, 28); #endif // SIMDUTF_IS_BIG_ENDIAN const auto lo = shlo.lookup_32(as_vector_u8(in1), as_vector_u8(in2)); const auto hi = shhi.lookup_32(as_vector_u8(in3), as_vector_u8(in4)); const auto merged = lo | hi; merged.store(latin1_output); latin1_output += 4 * N; buf += 4 * N; } return utf32_to_latin1_t{error_code::SUCCESS, buf, latin1_output}; } /* end file src/ppc64/ppc64_convert_utf32_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_UTF16 /* begin file src/ppc64/ppc64_convert_utf32_to_utf16.cpp */ struct utf32_to_utf16_t { error_code err; const char32_t *input; char16_t *output; }; template utf32_to_utf16_t ppc64_convert_utf32_to_utf16(const char32_t *buf, size_t len, char16_t *utf16_output) { const char32_t *end = buf + len; const auto zero = vector_u32::zero(); const auto v_ffff0000 = vector_u32::splat(0xffff0000); auto forbidden_global = simd16(); while (end - buf >= 8) { const auto in0 = vector_u32::load(buf); const auto in1 = vector_u32::load(buf + vector_u32::ELEMENTS); const auto any_surrogate = ((in0 | in1) & v_ffff0000) != zero; // Check if no bits set above 15th if (any_surrogate.is_zero()) { // Pack UTF-32 to UTF-16 #if SIMDUTF_IS_BIG_ENDIAN const auto sh = big_endian ? vector_u8(2, 3, 6, 7, 10, 11, 14, 15, 18, 19, 22, 23, 26, 27, 30, 31) : vector_u8(3, 2, 7, 6, 11, 10, 15, 14, 19, 18, 23, 22, 27, 26, 31, 30); #else const auto sh = big_endian ? vector_u8(1, 0, 5, 4, 9, 8, 13, 12, 17, 16, 21, 20, 25, 24, 29, 28) : vector_u8(0, 1, 4, 5, 8, 9, 12, 13, 16, 17, 20, 21, 24, 25, 28, 29); #endif // SIMDUTF_IS_BIG_ENDIAN const auto packed0 = sh.lookup_32(as_vector_u8(in0), as_vector_u8(in1)); const auto packed = as_vector_u16(packed0); #if SIMDUTF_IS_BIG_ENDIAN const auto v_f800 = big_endian ? vector_u16::splat(0xf800) : vector_u16::splat(0x00f8); const auto v_d800 = big_endian ? vector_u16::splat(0xd800) : vector_u16::splat(0x00d8); #else const auto v_f800 = big_endian ? vector_u16::splat(0x00f8) : vector_u16::splat(0xf800); const auto v_d800 = big_endian ? vector_u16::splat(0x00d8) : vector_u16::splat(0xd800); #endif // SIMDUTF_IS_BIG_ENDIAN const auto forbidden = (packed & v_f800) == v_d800; switch (er) { case ErrorReporting::precise: if (not forbidden.is_zero()) { // scalar procedure will rescan the portion of buffer we've just // analysed return utf32_to_utf16_t{error_code::OTHER, buf, utf16_output}; } break; case ErrorReporting::at_the_end: forbidden_global |= forbidden; break; case ErrorReporting::none: break; } packed.store(utf16_output); utf16_output += 8; buf += 8; } else { size_t forward = 7; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair if (word >= 0xD800 && word <= 0xDFFF) { return utf32_to_utf16_t{error_code::SURROGATE, buf + k, utf16_output}; } *utf16_output++ = not match_system(big_endian) ? scalar::u16_swap_bytes(uint16_t(word)) : uint16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return utf32_to_utf16_t{error_code::TOO_LARGE, buf + k, utf16_output}; } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (not match_system(big_endian)) { high_surrogate = scalar::u16_swap_bytes(high_surrogate); low_surrogate = scalar::u16_swap_bytes(low_surrogate); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } } buf += k; } } if (er == ErrorReporting::at_the_end) { // check for invalid input if (not forbidden_global.is_zero()) { return utf32_to_utf16_t{error_code::SURROGATE, buf, utf16_output}; } } return utf32_to_utf16_t{error_code::SUCCESS, buf, utf16_output}; } /* end file src/ppc64/ppc64_convert_utf32_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_UTF32 /* begin file src/ppc64/ppc64_convert_utf32_to_utf8.cpp */ struct utf32_to_utf8_t { error_code err; const char32_t *input; char *output; }; template utf32_to_utf8_t ppc64_convert_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_output) { const char32_t *end = buf + len; const auto v_f800 = vector_u16::splat(0xf800); const auto v_d800 = vector_u16::splat(0xd800); const auto v_ffff0000 = vector_u32::splat(0xffff0000); const auto v_00000000 = vector_u32::zero(); auto forbidden_bytemask = simd16(); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t( 16 + safety_margin)) { // buf is a char32_t pointer, each char32_t // has 4 bytes or 32 bits, thus buf + 16 * // char_32t = 512 bits = 64 bytes // We load two 16 bytes registers for a total of 32 bytes or 16 characters. // These two values can hold only 8 UTF32 chars auto in0 = vector_u32::load(buf); auto in1 = vector_u32::load(buf + vector_u32::ELEMENTS); // Pack 32-bit UTF-32 code units to 16-bit UTF-16 code units with unsigned // saturation auto in = vector_u32::pack(in0, in1); // Try to apply UTF-16 => UTF-8 from ./ppc64_convert_utf16_to_utf8.cpp // Check for ASCII fast path // ASCII fast path!!!! // We eagerly load another 32 bytes, hoping that they will be ASCII too. // The intuition is that we try to collect 16 ASCII characters which // requires a total of 64 bytes of input. If we fail, we just pass thirdin // and fourthin as our new inputs. if (in.is_ascii()) { // if the first two blocks are ASCII const auto in2 = vector_u32::load(buf + 2 * vector_u32::ELEMENTS); const auto in3 = vector_u32::load(buf + 3 * vector_u32::ELEMENTS); const auto next = vector_u32::pack(in2, in3); if (next.is_ascii()) { // 1. pack the bytes const auto utf8_packed = vector_u16::pack(in, next); // 2. store (16 bytes) utf8_packed.store(utf8_output); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } // `next` is not ASCII, write `in` and carry on with next // 1. pack the bytes const auto utf8_packed = vector_u16::pack(in, in); utf8_packed.store(utf8_output); // 3. adjust pointers buf += 8; utf8_output += 8; // Proceed with next input in = next; in0 = in2; in1 = in3; } // no bits set above 7th bit const auto one_byte_bytemask = in < uint16_t(1 << 7); const uint16_t one_byte_bitmask = one_byte_bytemask.to_bitmask(); // no bits set above 11th bit const auto one_or_two_bytes_bytemask = in < uint16_t(1 << 11); const uint16_t one_or_two_bytes_bitmask = one_or_two_bytes_bytemask.to_bitmask(); if (one_or_two_bytes_bitmask == 0xffff) { write_v_u16_11bits_to_utf8( in, utf8_output, as_vector_u8(one_byte_bytemask), one_byte_bitmask); buf += 8; continue; } // Check for overflow in packing const auto saturation_bytemask = ((in0 | in1) & v_ffff0000) == v_00000000; const uint16_t saturation_bitmask = saturation_bytemask.to_bitmask(); if (saturation_bitmask == 0xffff) { switch (er) { case ErrorReporting::precise: { const auto forbidden = (in & v_f800) == v_d800; if (forbidden.any()) { // We return no error code, instead we force the scalar procedure // to rescan the portion of input where we've just found an error. return utf32_to_utf8_t{error_code::SUCCESS, buf, utf8_output}; } } break; case ErrorReporting::at_the_end: forbidden_bytemask |= (in & v_f800) == v_d800; break; case ErrorReporting::none: break; } ppc64_convert_utf16_to_1_2_3_bytes_of_utf8( in, one_byte_bitmask, one_or_two_bytes_bytemask, one_or_two_bytes_bitmask, utf8_output); buf += 8; } else { // case: at least one 32-bit word produce a surrogate pair in UTF-16 <=> // will produce four UTF-8 bytes Let us do a scalar fallback. It may seem // wasteful to use scalar code, but being efficient with SIMD in the // presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (er != ErrorReporting::none and (word >= 0xD800 && word <= 0xDFFF)) { return utf32_to_utf8_t{error_code::SURROGATE, buf + k, utf8_output}; } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (er != ErrorReporting::none and (word > 0x10FFFF)) { return utf32_to_utf8_t{error_code::TOO_LARGE, buf + k, utf8_output}; } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while if (er == ErrorReporting::at_the_end) { if (forbidden_bytemask.any()) { return utf32_to_utf8_t{error_code::SURROGATE, buf, utf8_output}; } } return utf32_to_utf8_t{ error_code::SUCCESS, buf, utf8_output, }; } /* end file src/ppc64/ppc64_convert_utf32_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/ppc64/ppc64_utf8_length_from_latin1.cpp */ template T min(T a, T b) { return a <= b ? a : b; } std::pair ppc64_utf8_length_from_latin1(const char *input, size_t length) { constexpr size_t N = vector_u8::ELEMENTS; length = (length / N); size_t count = length * N; while (length != 0) { vector_u32 partial = vector_u32::zero(); // partial accumulator has 32 bits => this yields (2^31 / 16) size_t chunk = min(length, size_t(0xffffffff / N)); length -= chunk; while (chunk != 0) { auto local = vector_u8::zero(); // local accumulator has 8 bits => this yields 255 max (we increment by 1 // in each iteration) const size_t n = min(chunk, size_t(255)); chunk -= n; for (size_t i = 0; i < n; i++) { const auto in = vector_i8::load(input); input += N; local -= as_vector_u8(in < vector_i8::splat(0)); } partial = sum4bytes(local, partial); } for (int i = 0; i < vector_u32::ELEMENTS; i++) { count += size_t(partial.value[i]); } } return std::make_pair(input, count); } /* end file src/ppc64/ppc64_utf8_length_from_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 /* begin file src/ppc64/ppc64_base64.cpp */ /* * References and further reading: * * Wojciech Muła, Daniel Lemire, Base64 encoding and decoding at almost the * speed of a memory copy, Software: Practice and Experience 50 (2), 2020. * https://arxiv.org/abs/1910.05109 * * Wojciech Muła, Daniel Lemire, Faster Base64 Encoding and Decoding using AVX2 * Instructions, ACM Transactions on the Web 12 (3), 2018. * https://arxiv.org/abs/1704.00605 * * Simon Josefsson. 2006. The Base16, Base32, and Base64 Data Encodings. * https://tools.ietf.org/html/rfc4648. (2006). Internet Engineering Task Force, * Request for Comments: 4648. * * Alfred Klomp. 2014a. Fast Base64 encoding/decoding with SSE vectorization. * http://www.alfredklomp.com/programming/sse-base64/. (2014). * * Alfred Klomp. 2014b. Fast Base64 stream encoder/decoder in C99, with SIMD * acceleration. https://github.com/aklomp/base64. (2014). * * Hanson Char. 2014. A Fast and Correct Base 64 Codec. (2014). * https://aws.amazon.com/blogs/developer/a-fast-and-correct-base-64-codec/ * * Nick Kopp. 2013. Base64 Encoding on a GPU. * https://www.codeproject.com/Articles/276993/Base-Encoding-on-a-GPU. (2013). * * AMD XOP specific: http://0x80.pl/notesen/2016-01-12-sse-base64-encoding.html * Altivec has capabilites of AMD XOP (or vice versa): shuffle using 2 vectors * and variable shifts, thus this implementation shares some code solution * (modulo intrisic function names). */ constexpr bool with_base64_std = false; constexpr bool with_base64_url = true; constexpr bool with_ignore_errors = true; constexpr bool with_ignore_garbage = true; constexpr bool with_strict_checking = false; // --- encoding ----------------------------------------------- /* Procedure translates vector of bytes having 6-bit values into ASCII counterparts. */ template vector_u8 encoding_translate_6bit_values(const vector_u8 input) { // credit: Wojciech Muła // reduce 0..51 -> 0 // 52..61 -> 1 .. 10 // 62 -> 11 // 63 -> 12 auto result = input.saturating_sub(vector_u8::splat(51)); // distinguish between ranges 0..25 and 26..51: // 0 .. 25 -> remains 13 // 26 .. 51 -> becomes 0 const auto lt = input < vector_u8::splat(26); result = select(as_vector_u8(lt), vector_u8::splat(13), result); const auto shift_LUT = base64_url ? vector_u8('a' - 26, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '-' - 62, '_' - 63, 'A', 0, 0) : vector_u8('a' - 26, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '+' - 62, '/' - 63, 'A', 0, 0); // read shift result = result.lookup_16(shift_LUT); return input + result; } /* Procedure expands 12 bytes (4*3 bytes) into 16 bytes, each byte stores 6 bits of data */ template simdutf_really_inline vector_u8 encoding_expand_6bit_fields(vector_u8 input) { #if SIMDUTF_IS_BIG_ENDIAN #define indices4(dx) (dx + 0), (dx + 1), (dx + 1), (dx + 2) const auto expand_3_to_4 = vector_u8(indices4(0 * 3), indices4(1 * 3), indices4(2 * 3), indices4(3 * 3)); #undef indices4 // input = [........|ccdddddd|bbbbcccc|aaaaaabb] as uint8_t // 3 2 1 0 // // in' = [aaaaaabb|bbbbcccc|bbbbcccc|ccdddddd] as uint32_t // 0 1 1 2 const auto in = as_vector_u32(expand_3_to_4.lookup_16(input)); // t0 = [00000000|00000000|00000000|00dddddd] const auto t0 = in & uint32_t(0x0000003f); // t1 = [00000000|00000000|00cccccc|00dddddd] const auto t1 = select(uint32_t(0x00003f00), in.shl<2>(), t0); // t2 = [00000000|00bbbbbb|00cccccc|00dddddd] const auto t2 = select(uint32_t(0x003f0000), in.shr<4>(), t1); // t3 = [00aaaaaa|00bbbbbb|00cccccc|00dddddd] const auto t3 = select(uint32_t(0x3f000000), in.shr<2>(), t2); return as_vector_u8(t3); #else #define indices4(dx) (dx + 1), (dx + 0), (dx + 2), (dx + 1) const auto expand_3_to_4 = vector_u8(indices4(0 * 3), indices4(1 * 3), indices4(2 * 3), indices4(3 * 3)); #undef indices4 // input = [........|ccdddddd|bbbbcccc|aaaaaabb] as uint8_t // 3 2 1 0 // // in' = [bbbbcccc|ccdddddd|aaaaaabb|bbbbcccc] as uint32_t // 1 2 0 1 const auto in = as_vector_u32(expand_3_to_4.lookup_16(input)); // t0 = [00dddddd|00000000|00000000|00000000] const auto t0 = in.shl<8>() & uint32_t(0x3f000000); // t1 = [00dddddd|00cccccc|00000000|00000000] const auto t1 = select(uint32_t(0x003f0000), in.shr<6>(), t0); // t2 = [00dddddd|00cccccc|00bbbbbb|00000000] const auto t2 = select(uint32_t(0x00003f00), in.shl<4>(), t1); // t3 = [00dddddd|00cccccc|00bbbbbb|00aaaaaa] const auto t3 = select(uint32_t(0x0000003f), in.shr<10>(), t2); return as_vector_u8(t3); #endif // SIMDUTF_IS_BIG_ENDIAN } template size_t encode_base64(char *dst, const char *src, size_t srclen, base64_options options) { const uint8_t *input = (const uint8_t *)src; uint8_t *out = (uint8_t *)dst; size_t i = 0; for (; i + 52 <= srclen; i += 48) { const auto in0 = vector_u8::load(input + i + 12 * 0); const auto in1 = vector_u8::load(input + i + 12 * 1); const auto in2 = vector_u8::load(input + i + 12 * 2); const auto in3 = vector_u8::load(input + i + 12 * 3); const auto expanded0 = encoding_expand_6bit_fields(in0); const auto expanded1 = encoding_expand_6bit_fields(in1); const auto expanded2 = encoding_expand_6bit_fields(in2); const auto expanded3 = encoding_expand_6bit_fields(in3); const auto base64_0 = encoding_translate_6bit_values(expanded0); const auto base64_1 = encoding_translate_6bit_values(expanded1); const auto base64_2 = encoding_translate_6bit_values(expanded2); const auto base64_3 = encoding_translate_6bit_values(expanded3); base64_0.store(out); out += 16; base64_1.store(out); out += 16; base64_2.store(out); out += 16; base64_3.store(out); out += 16; } for (; i + 16 <= srclen; i += 12) { const auto in = vector_u8::load(input + i); const auto expanded = encoding_expand_6bit_fields(in); const auto base64 = encoding_translate_6bit_values(expanded); base64.store(out); out += 16; } return i / 3 * 4 + scalar::base64::tail_encode_base64((char *)out, src + i, srclen - i, options); } // --- decoding ----------------------------------------------- static simdutf_really_inline void compress(const vector_u8 data, uint16_t mask, char *output) { if (mask == 0) { data.store(output); return; } // this particular implementation was inspired by work done by @animetosho // we do it in two steps, first 8 bytes and then second 8 bytes uint8_t mask1 = uint8_t(mask); // least significant 8 bits uint8_t mask2 = uint8_t(mask >> 8); // most significant 8 bits // next line just loads the 64-bit values thintable_epi8[mask1] and // thintable_epi8[mask2] into a 128-bit register, using only // two instructions on most compilers. #if SIMDUTF_IS_BIG_ENDIAN vec_u64_t tmp = { tables::base64::thintable_epi8[mask2], tables::base64::thintable_epi8[mask1], }; auto shufmask = vector_u8(vec_reve(vec_u8_t(tmp))); // we increment by 0x08 the second half of the mask shufmask = shufmask + vector_u8(0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8); #else vec_u64_t tmp = { tables::base64::thintable_epi8[mask1], tables::base64::thintable_epi8[mask2], }; auto shufmask = vector_u8(vec_u8_t(tmp)); // we increment by 0x08 the second half of the mask shufmask = shufmask + vector_u8(0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8); #endif // SIMDUTF_IS_BIG_ENDIAN // this is the version "nearly pruned" const auto pruned = shufmask.lookup_16(data); // we still need to put the two halves together. // we compute the popcount of the first half: const int pop1 = tables::base64::BitsSetTable256mul2[mask1]; // then load the corresponding mask, what it does is to write // only the first pop1 bytes from the first 8 bytes, and then // it fills in with the bytes from the second 8 bytes + some filling // at the end. const auto compactmask = vector_u8::load(tables::base64::pshufb_combine_table + pop1 * 8); const auto answer = compactmask.lookup_16(pruned); answer.store(output); } static simdutf_really_inline vector_u8 decoding_pack(vector_u8 input) { #if SIMDUTF_IS_BIG_ENDIAN // in = [00aaaaaa|00bbbbbb|00cccccc|00dddddd] // want = [00000000|aaaaaabb|bbbbcccc|ccdddddd] auto in = as_vector_u16(input); // t0 = [00??aaaa|aabbbbbb|00??cccc|ccdddddd] const auto t0 = in.shr<2>(); const auto t1 = select(uint16_t(0x0fc0), t0, in); // t0 = [00??????|aaaaaabb|bbbbcccc|ccdddddd] const auto t2 = as_vector_u32(t1); const auto t3 = t2.shr<4>(); const auto t4 = select(uint32_t(0x00fff000), t3, t2); const auto tmp = as_vector_u8(t4); const auto shuffle = vector_u8(1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 0, 0, 0, 0); const auto t = shuffle.lookup_16(tmp); return t; #else // in = [00dddddd|00cccccc|00bbbbbb|00aaaaaa] // want = [00000000|aaaaaabb|bbbbcccc|ccdddddd] auto u = as_vector_u32(input).swap_bytes(); auto in = vector_u16((vec_u16_t)u.value); // t0 = [00??aaaa|aabbbbbb|00??cccc|ccdddddd] const auto t0 = in.shr<2>(); const auto t1 = select(uint16_t(0x0fc0), t0, in); // t0 = [00??????|aaaaaabb|bbbbcccc|ccdddddd] const auto t2 = as_vector_u32(t1); const auto t3 = t2.shr<4>(); const auto t4 = select(uint32_t(0x00fff000), t3, t2); const auto tmp = as_vector_u8(t4); const auto shuffle = vector_u8(2, 1, 0, 6, 5, 4, 10, 9, 8, 14, 13, 12, 0, 0, 0, 0); const auto t = shuffle.lookup_16(tmp); return t; #endif // SIMDUTF_IS_BIG_ENDIAN } static simdutf_really_inline void base64_decode(char *out, vector_u8 input) { const auto expanded = decoding_pack(input); expanded.store(out); } static simdutf_really_inline void base64_decode_block(char *out, const char *src) { base64_decode(out + 12 * 0, vector_u8::load(src + 0 * 16)); base64_decode(out + 12 * 1, vector_u8::load(src + 1 * 16)); base64_decode(out + 12 * 2, vector_u8::load(src + 2 * 16)); base64_decode(out + 12 * 3, vector_u8::load(src + 3 * 16)); } static simdutf_really_inline void base64_decode_block_safe(char *out, const char *src) { base64_decode(out + 12 * 0, vector_u8::load(src + 0 * 16)); base64_decode(out + 12 * 1, vector_u8::load(src + 1 * 16)); base64_decode(out + 12 * 2, vector_u8::load(src + 2 * 16)); char buffer[16]; base64_decode(buffer, vector_u8::load(src + 3 * 16)); std::memcpy(out + 36, buffer, 12); } // ---base64 decoding::block64 class -------------------------- class block64 { simd8x64 b; public: simdutf_really_inline block64(const char *src) : b(load_block(src)) {} simdutf_really_inline block64(const char16_t *src) : b(load_block(src)) {} private: // The caller of this function is responsible to ensure that there are 64 // bytes available from reading at src. The data is read into a block64 // structure. static simdutf_really_inline simd8x64 load_block(const char *src) { const auto v0 = vector_u8::load(src + 16 * 0); const auto v1 = vector_u8::load(src + 16 * 1); const auto v2 = vector_u8::load(src + 16 * 2); const auto v3 = vector_u8::load(src + 16 * 3); return simd8x64(v0, v1, v2, v3); } // The caller of this function is responsible to ensure that there are 128 // bytes available from reading at src. The data is read into a block64 // structure. static simdutf_really_inline simd8x64 load_block(const char16_t *src) { const auto m1 = vector_u16::load(src + 8 * 0); const auto m2 = vector_u16::load(src + 8 * 1); const auto m3 = vector_u16::load(src + 8 * 2); const auto m4 = vector_u16::load(src + 8 * 3); const auto m5 = vector_u16::load(src + 8 * 4); const auto m6 = vector_u16::load(src + 8 * 5); const auto m7 = vector_u16::load(src + 8 * 6); const auto m8 = vector_u16::load(src + 8 * 7); return simd8x64(vector_u16::pack(m1, m2), vector_u16::pack(m3, m4), vector_u16::pack(m5, m6), vector_u16::pack(m7, m8)); } public: template static inline uint16_t to_base64_mask(vector_u8 &src, uint16_t &error) { const auto ascii_space_tbl = vector_u8(0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xa, 0x0, 0xc, 0xd, 0x0, 0x0); // credit: aqrit const auto delta_asso = default_or_url ? vector_u8(0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x16) : vector_u8(0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x0F); const auto delta_values = default_or_url ? vector_u8(0xBF, 0xE0, 0xB9, 0x13, 0x04, 0xBF, 0xBF, 0xB9, 0xB9, 0x00, 0xFF, 0x11, 0xFF, 0xBF, 0x10, 0xB9) : (base64_url ? vector_u8(0x0, 0x0, 0x0, 0x13, 0x4, 0xBF, 0xBF, 0xB9, 0xB9, 0x0, 0x11, 0xC3, 0xBF, 0xE0, 0xB9, 0xB9) : vector_u8(0x00, 0x00, 0x00, 0x13, 0x04, 0xBF, 0xBF, 0xB9, 0xB9, 0x00, 0x10, 0xC3, 0xBF, 0xBF, 0xB9, 0xB9)); const auto check_asso = default_or_url ? vector_u8(0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0E, 0x0B, 0x06) : (base64_url ? vector_u8(0xD, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3, 0x7, 0xB, 0xE, 0xB, 0x6) : vector_u8(0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0B, 0x0B, 0x0F)); const auto check_values = default_or_url ? vector_u8(0x80, 0x80, 0x80, 0x80, 0xCF, 0xBF, 0xD5, 0xA6, 0xB5, 0xA1, 0x00, 0x80, 0x00, 0x80, 0x00, 0x80) : (base64_url ? vector_u8(0x80, 0x80, 0x80, 0x80, 0xCF, 0xBF, 0xB6, 0xA6, 0xB5, 0xA1, 0x0, 0x80, 0x0, 0x80, 0x0, 0x80) : vector_u8(0x80, 0x80, 0x80, 0x80, 0xCF, 0xBF, 0xD5, 0xA6, 0xB5, 0x86, 0xD1, 0x80, 0xB1, 0x80, 0x91, 0x80)); const auto shifted = src.shr<3>(); const auto delta_hash = avg(src.lookup_16(delta_asso), shifted); const auto check_hash = avg(src.lookup_16(check_asso), shifted); const auto out = as_vector_i8(delta_hash.lookup_16(delta_values)) .saturating_add(as_vector_i8(src)); const auto chk = as_vector_i8(check_hash.lookup_16(check_values)) .saturating_add(as_vector_i8(src)); const uint16_t mask = chk.to_bitmask(); if (!ignore_garbage && mask) { const auto ascii = src.lookup_16(ascii_space_tbl); const auto ascii_space = (ascii == src); error = (mask ^ ascii_space.to_bitmask()); } src = out; return mask; } template simdutf_really_inline uint64_t to_base64_mask(uint64_t *error) { uint16_t err0 = 0; uint16_t err1 = 0; uint16_t err2 = 0; uint16_t err3 = 0; uint64_t m0 = to_base64_mask( b.chunks[0], err0); uint64_t m1 = to_base64_mask( b.chunks[1], err1); uint64_t m2 = to_base64_mask( b.chunks[2], err2); uint64_t m3 = to_base64_mask( b.chunks[3], err3); if (!ignore_garbage) { *error = (err0) | ((uint64_t)err1 << 16) | ((uint64_t)err2 << 32) | ((uint64_t)err3 << 48); } return m0 | (m1 << 16) | (m2 << 32) | (m3 << 48); } simdutf_really_inline void copy_block(char *output) { b.store(reinterpret_cast(output)); } simdutf_really_inline uint64_t compress_block(uint64_t mask, char *output) { uint64_t nmask = ~mask; compress(b.chunks[0], uint16_t(mask), output); compress(b.chunks[1], uint16_t(mask >> 16), output + count_ones(nmask & 0xFFFF)); compress(b.chunks[2], uint16_t(mask >> 32), output + count_ones(nmask & 0xFFFFFFFF)); compress(b.chunks[3], uint16_t(mask >> 48), output + count_ones(nmask & 0xFFFFFFFFFFFFULL)); return count_ones(nmask); } simdutf_really_inline void base64_decode_block(char *out) { base64_decode(out + 12 * 0, b.chunks[0]); base64_decode(out + 12 * 1, b.chunks[1]); base64_decode(out + 12 * 2, b.chunks[2]); base64_decode(out + 12 * 3, b.chunks[3]); } simdutf_really_inline void base64_decode_block_safe(char *out) { base64_decode(out + 12 * 0, b.chunks[0]); base64_decode(out + 12 * 1, b.chunks[1]); base64_decode(out + 12 * 2, b.chunks[2]); char buffer[16]; base64_decode(buffer, b.chunks[3]); std::memcpy(out + 12 * 3, buffer, 12); } }; /* end file src/ppc64/ppc64_base64.cpp */ #endif // SIMDUTF_FEATURE_BASE64 } // unnamed namespace } // namespace ppc64 } // namespace simdutf #if SIMDUTF_FEATURE_UTF8 /* begin file src/generic/buf_block_reader.h */ namespace simdutf { namespace ppc64 { namespace { // Walks through a buffer in block-sized increments, loading the last part with // spaces template struct buf_block_reader { public: simdutf_really_inline buf_block_reader(const uint8_t *_buf, size_t _len); simdutf_really_inline size_t block_index(); simdutf_really_inline bool has_full_block() const; simdutf_really_inline const uint8_t *full_block() const; /** * Get the last block, padded with spaces. * * There will always be a last block, with at least 1 byte, unless len == 0 * (in which case this function fills the buffer with spaces and returns 0. In * particular, if len == STEP_SIZE there will be 0 full_blocks and 1 remainder * block with STEP_SIZE bytes and no spaces for padding. * * @return the number of effective characters in the last block. */ simdutf_really_inline size_t get_remainder(uint8_t *dst) const; simdutf_really_inline void advance(); private: const uint8_t *buf; const size_t len; const size_t lenminusstep; size_t idx; }; // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text_64(const uint8_t *text) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); for (size_t i = 0; i < sizeof(simd8x64); i++) { buf[i] = int8_t(text[i]) < ' ' ? '_' : int8_t(text[i]); } buf[sizeof(simd8x64)] = '\0'; return buf; } // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text(const simd8x64 &in) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); in.store(reinterpret_cast(buf)); for (size_t i = 0; i < sizeof(simd8x64); i++) { if (buf[i] < ' ') { buf[i] = '_'; } } buf[sizeof(simd8x64)] = '\0'; return buf; } simdutf_unused static char *format_mask(uint64_t mask) { static char *buf = reinterpret_cast(malloc(64 + 1)); for (size_t i = 0; i < 64; i++) { buf[i] = (mask & (size_t(1) << i)) ? 'X' : ' '; } buf[64] = '\0'; return buf; } template simdutf_really_inline buf_block_reader::buf_block_reader(const uint8_t *_buf, size_t _len) : buf{_buf}, len{_len}, lenminusstep{len < STEP_SIZE ? 0 : len - STEP_SIZE}, idx{0} {} template simdutf_really_inline size_t buf_block_reader::block_index() { return idx; } template simdutf_really_inline bool buf_block_reader::has_full_block() const { return idx < lenminusstep; } template simdutf_really_inline const uint8_t * buf_block_reader::full_block() const { return &buf[idx]; } template simdutf_really_inline size_t buf_block_reader::get_remainder(uint8_t *dst) const { if (len == idx) { return 0; } // memcpy(dst, null, 0) will trigger an error with some sanitizers std::memset(dst, 0x20, STEP_SIZE); // std::memset STEP_SIZE because it is more efficient // to write out 8 or 16 bytes at once. std::memcpy(dst, buf + idx, len - idx); return len - idx; } template simdutf_really_inline void buf_block_reader::advance() { idx += STEP_SIZE; } } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/buf_block_reader.h */ /* begin file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf8_validation { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } // // Return nonzero if there are incomplete multibyte characters at the end of the // block: e.g. if there is a 4-byte character, but it is 3 bytes from the end. // simdutf_really_inline simd8 is_incomplete(const simd8 input) { // If the previous input's last 3 bytes match this, they're too short (they // ended at EOF): // ... 1111____ 111_____ 11______ static const uint8_t max_array[32] = {255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0b11110000u - 1, 0b11100000u - 1, 0b11000000u - 1}; const simd8 max_value( &max_array[sizeof(max_array) - sizeof(simd8)]); return input.gt_bits(max_value); } struct utf8_checker { // If this is nonzero, there has been a UTF-8 error. simd8 error; // The last input we received simd8 prev_input_block; // Whether the last input we received was incomplete (used for ASCII fast // path) simd8 prev_incomplete; // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } // The only problem that can happen at EOF is that a multibyte character is // too short or a byte value too large in the last bytes: check_special_cases // only checks for bytes too large in the first of two bytes. simdutf_really_inline void check_eof() { // If the previous block had incomplete UTF-8 characters at the end, an // ASCII block can't possibly finish them. this->error |= this->prev_incomplete; } simdutf_really_inline void check_next_input(const simd8x64 &input) { if (simdutf_likely(is_ascii(input))) { this->error |= this->prev_incomplete; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. static_assert((simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } this->prev_incomplete = is_incomplete(input.chunks[simd8x64::NUM_CHUNKS - 1]); this->prev_input_block = input.chunks[simd8x64::NUM_CHUNKS - 1]; } } // do not forget to call check_eof! simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_validation using utf8_validation::utf8_checker; } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ /* begin file src/generic/utf8_validation/utf8_validator.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf8_validation { /** * Validates that the string is actual UTF-8. */ template bool generic_validate_utf8(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); return !c.errors(); } bool generic_validate_utf8(const char *input, size_t length) { return generic_validate_utf8( reinterpret_cast(input), length); } /** * Validates that the string is actual UTF-8 and stops on errors. */ template result generic_validate_utf8_with_errors(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input + count), length - count); res.count += count; return res; } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input) + count, length - count); res.count += count; return res; } else { return result(error_code::SUCCESS, length); } } result generic_validate_utf8_with_errors(const char *input, size_t length) { return generic_validate_utf8_with_errors( reinterpret_cast(input), length); } } // namespace utf8_validation } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/utf8_validation/utf8_validator.h */ #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/generic/utf8_to_utf16/utf8_to_utf16.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf8_to_utf16 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } template simdutf_really_inline size_t convert(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf16::convert( in + pos, size - pos, utf16_output); if (howmany == 0) { return 0; } utf16_output += howmany; } return utf16_output - start; } template simdutf_really_inline result convert_with_errors(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf16_output += res.count; } } return result(error_code::SUCCESS, utf16_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf16 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/utf8_to_utf16/utf8_to_utf16.h */ /* begin file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf8_to_utf16 { using namespace simd; template simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char16_t *utf16_output) noexcept { // The implementation is not specific to haswell and should be moved to the // generic directory. size_t pos = 0; char16_t *start{utf16_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { // this loop could be unrolled further. For example, we could process the // mask far more than 64 bytes. simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // Slow path. We hope that the compiler will recognize that this is a slow // path. Anything that is not a continuation mask is a 'leading byte', // that is, the start of a new code point. uint64_t utf8_continuation_mask = in.lt(-65 + 1); // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_leading_mask = ~utf8_continuation_mask; // The *start* of code points is not so useful, rather, we want the *end* // of code points. uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times when using solely // the slow/regular path, and at least four times if there are fast paths. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. // // Thus we may allow convert_masked_utf8_to_utf16 to process // more bytes at a time under a fast-path mode where 16 bytes // are consumed at once (e.g., when encountering ASCII). size_t consumed = convert_masked_utf8_to_utf16( input + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } utf16_output += scalar::utf8_to_utf16::convert_valid( input + pos, size - pos, utf16_output); return utf16_output - start; } } // namespace utf8_to_utf16 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/generic/utf8_to_utf32/utf8_to_utf32.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } simdutf_really_inline size_t convert(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 words when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // we have an error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf32::convert(in + pos, size - pos, utf32_output); if (howmany == 0) { return 0; } utf32_output += howmany; } return utf32_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } if (pos < size) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf32_output += res.count; } } return result(error_code::SUCCESS, utf32_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf32 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/utf8_to_utf32/utf8_to_utf32.h */ /* begin file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char32_t *utf32_output) noexcept { size_t pos = 0; char32_t *start{utf32_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_continuation_mask = in.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; size_t max_starting_point = (pos + 64) - 12; while (pos < max_starting_point) { size_t consumed = convert_masked_utf8_to_utf32( input + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } } } utf32_output += scalar::utf8_to_utf32::convert_valid(input + pos, size - pos, utf32_output); return utf32_output - start; } } // namespace utf8_to_utf32 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 /* begin file src/generic/utf8.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf8 { using namespace simd; simdutf_really_inline size_t count_code_points(const char *in, size_t size) { size_t pos = 0; size_t count = 0; for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.gt(-65); count += count_ones(utf8_continuation_mask); } return count + scalar::utf8::count_code_points(in + pos, size - pos); } #ifdef SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t count_code_points_bytemask(const char *in, size_t size) { using vector_i8 = simd8; using vector_u8 = simd8; using vector_u64 = simd64; constexpr size_t N = vector_i8::SIZE; constexpr size_t max_iterations = 255 / 4; size_t pos = 0; size_t count = 0; auto counters = vector_u64::zero(); auto local = vector_u8::zero(); size_t iterations = 0; for (; pos + 4 * N <= size; pos += 4 * N) { const auto input0 = simd8::load(reinterpret_cast(in + pos + 0 * N)); const auto input1 = simd8::load(reinterpret_cast(in + pos + 1 * N)); const auto input2 = simd8::load(reinterpret_cast(in + pos + 2 * N)); const auto input3 = simd8::load(reinterpret_cast(in + pos + 3 * N)); const auto mask0 = input0 > int8_t(-65); const auto mask1 = input1 > int8_t(-65); const auto mask2 = input2 > int8_t(-65); const auto mask3 = input3 > int8_t(-65); local -= vector_u8(mask0); local -= vector_u8(mask1); local -= vector_u8(mask2); local -= vector_u8(mask3); iterations += 1; if (iterations == max_iterations) { counters += sum_8bytes(local); local = vector_u8::zero(); iterations = 0; } } if (iterations > 0) { count += local.sum_bytes(); } count += counters.sum(); return count + scalar::utf8::count_code_points(in + pos, size - pos); } #endif // SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t utf16_length_from_utf8(const char *in, size_t size) { size_t pos = 0; size_t count = 0; // This algorithm could no doubt be improved! for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.lt(-65 + 1); // We count one word for anything that is not a continuation (so // leading bytes). count += 64 - count_ones(utf8_continuation_mask); int64_t utf8_4byte = input.gteq_unsigned(240); count += count_ones(utf8_4byte); } return count + scalar::utf8::utf16_length_from_utf8(in + pos, size - pos); } } // namespace utf8 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/utf8.h */ #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 /* begin file src/generic/utf16.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf16 { template simdutf_really_inline size_t count_code_points(const char16_t *in, size_t size) { size_t pos = 0; size_t count = 0; for (; pos < size / 32 * 32; pos += 32) { simd16x32 input(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input.swap_bytes(); } uint64_t not_pair = input.not_in_range(0xDC00, 0xDFFF); count += count_ones(not_pair) / 2; } return count + scalar::utf16::count_code_points(in + pos, size - pos); } template simdutf_really_inline size_t utf8_length_from_utf16(const char16_t *in, size_t size) { size_t pos = 0; size_t count = 0; // This algorithm could no doubt be improved! for (; pos < size / 32 * 32; pos += 32) { simd16x32 input(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input.swap_bytes(); } uint64_t ascii_mask = input.lteq(0x7F); uint64_t twobyte_mask = input.lteq(0x7FF); uint64_t not_pair_mask = input.not_in_range(0xD800, 0xDFFF); size_t ascii_count = count_ones(ascii_mask) / 2; size_t twobyte_count = count_ones(twobyte_mask & ~ascii_mask) / 2; size_t threebyte_count = count_ones(not_pair_mask & ~twobyte_mask) / 2; size_t fourbyte_count = 32 - count_ones(not_pair_mask) / 2; count += 2 * fourbyte_count + 3 * threebyte_count + 2 * twobyte_count + ascii_count; } return count + scalar::utf16::utf8_length_from_utf16(in + pos, size - pos); } template simdutf_really_inline size_t utf32_length_from_utf16(const char16_t *in, size_t size) { return count_code_points(in, size); } simdutf_really_inline void change_endianness_utf16(const char16_t *in, size_t size, char16_t *output) { size_t pos = 0; while (pos < size / 32 * 32) { simd16x32 input(reinterpret_cast(in + pos)); input.swap_bytes(); input.store(reinterpret_cast(output)); pos += 32; output += 32; } scalar::utf16::change_endianness_utf16(in + pos, size - pos, output); } } // namespace utf16 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/utf16.h */ /* begin file src/generic/validate_utf16.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf16 { /* UTF-16 validation -------------------------------------------------- In UTF-16 code units in range 0xD800 to 0xDFFF have special meaning. In a vectorized algorithm we want to examine the most significant nibble in order to select a fast path. If none of highest nibbles are 0xD (13), than we are sure that UTF-16 chunk in a vector register is valid. Let us analyze what we need to check if the nibble is 0xD. The value of the preceding nibble determines what we have: 0xd000 .. 0xd7ff - a valid word 0xd800 .. 0xdbff - low surrogate 0xdc00 .. 0xdfff - high surrogate Other constraints we have to consider: - there must not be two consecutive low surrogates (0xd800 .. 0xdbff) - there must not be two consecutive high surrogates (0xdc00 .. 0xdfff) - there must not be sole low surrogate nor high surrogate We are going to build three bitmasks based on the 3rd nibble: - V = valid word, - L = low surrogate (0xd800 .. 0xdbff) - H = high surrogate (0xdc00 .. 0xdfff) 0 1 2 3 4 5 6 7 <--- word index [ V | L | H | L | H | V | V | L ] 1 0 0 0 0 1 1 0 - V = valid masks 0 1 0 1 0 0 0 1 - L = low surrogate 0 0 1 0 1 0 0 0 - H high surrogate 1 0 0 0 0 1 1 0 V = valid masks 0 1 0 1 0 0 0 0 a = L & (H >> 1) 0 0 1 0 1 0 0 0 b = a << 1 1 1 1 1 1 1 1 0 c = V | a | b ^ the last bit can be zero, we just consume 7 code units and recheck this word in the next iteration */ template const result validate_utf16_with_errors(const char16_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { return result(error_code::SUCCESS, 0); } const char16_t *start = input; const char16_t *end = input + size; const auto v_d8 = simd8::splat(0xd8); const auto v_f8 = simd8::splat(0xf8); const auto v_fc = simd8::splat(0xfc); const auto v_dc = simd8::splat(0xdc); while (input + simd16::SIZE * 2 < end) { // 0. Load data: since the validation takes into account only higher // byte of each word, we compress the two vectors into one which // consists only the higher bytes. auto in0 = simd16(input); auto in1 = simd16(input + simd16::SIZE / sizeof(char16_t)); // Function `utf16_gather_high_bytes` consumes two vectors of UTF-16 // and yields a single vector having only higher bytes of characters. const auto in = utf16_gather_high_bytes(in0, in1); // 1. Check whether we have any 0xD800..DFFF word (0b1101'1xxx'yyyy'yyyy). const auto surrogates_wordmask = (in & v_f8) == v_d8; const uint16_t surrogates_bitmask = static_cast(surrogates_wordmask.to_bitmask()); if (surrogates_bitmask == 0x0000) { input += 16; } else { // 2. We have some surrogates that have to be distinguished: // - low surrogates: 0b1101'10xx'yyyy'yyyy (0xD800..0xDBFF) // - high surrogates: 0b1101'11xx'yyyy'yyyy (0xDC00..0xDFFF) // // Fact: high surrogate has 11th bit set (3rd bit in the higher byte) // V - non-surrogate code units // V = not surrogates_wordmask const uint16_t V = static_cast(~surrogates_bitmask); // H - word-mask for high surrogates: the six highest bits are 0b1101'11 const auto vH = (in & v_fc) == v_dc; const uint16_t H = static_cast(vH.to_bitmask()); // L - word mask for low surrogates // L = not H and surrogates_wordmask const uint16_t L = static_cast(~H & surrogates_bitmask); const uint16_t a = static_cast( L & (H >> 1)); // A low surrogate must be followed by high one. // (A low surrogate placed in the 7th register's word // is an exception we handle.) const uint16_t b = static_cast( a << 1); // Just mark that the opinput - startite fact is hold, // thanks to that we have only two masks for valid case. const uint16_t c = static_cast( V | a | b); // Combine all the masks into the final one. if (c == 0xffff) { // The whole input register contains valid UTF-16, i.e., // either single code units or proper surrogate pairs. input += 16; } else if (c == 0x7fff) { // The 15 lower code units of the input register contains valid UTF-16. // The 15th word may be either a low or high surrogate. It the next // iteration we 1) check if the low surrogate is followed by a high // one, 2) reject sole high surrogate. input += 15; } else { return result(error_code::SURROGATE, input - start); } } } return result(error_code::SUCCESS, input - start); } template const result validate_utf16_as_ascii_with_errors(const char16_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { return result(error_code::SUCCESS, 0); } size_t pos = 0; for (; pos < size / 32 * 32; pos += 32) { simd16x32 input_vec( reinterpret_cast(input + pos)); if (!match_system(big_endian)) { input_vec.swap_bytes(); } uint64_t matches = input_vec.lteq(uint16_t(0x7f)); if (~matches) { // Found a match, return the first one int index = trailing_zeroes(~matches) / 2; return result(error_code::TOO_LARGE, pos + index); } } // Scalar tail while (pos < size) { char16_t v = big_endian ? scalar::u16_swap_bytes(input[pos]) : input[pos]; if (v > 0x7F) { return result(error_code::TOO_LARGE, pos); } pos++; } return result(error_code::SUCCESS, size); } } // namespace utf16 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/validate_utf16.h */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 /* begin file src/generic/utf32.h */ #include namespace simdutf { namespace ppc64 { namespace { namespace utf32 { template T min(T a, T b) { return a <= b ? a : b; } simdutf_really_inline size_t utf8_length_from_utf32(const char32_t *input, size_t length) { using vector_u32 = simd32; const char32_t *start = input; // we add up to three ones in a single iteration (see the vectorized loop in // section #2 below) const size_t max_increment = 3; const size_t N = vector_u32::ELEMENTS; #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP const auto v_0000007f = vector_u32::splat(0x0000007f); const auto v_000007ff = vector_u32::splat(0x000007ff); const auto v_0000ffff = vector_u32::splat(0x0000ffff); #else const auto v_ffffff80 = vector_u32::splat(0xffffff80); const auto v_fffff800 = vector_u32::splat(0xfffff800); const auto v_ffff0000 = vector_u32::splat(0xffff0000); const auto one = vector_u32::splat(1); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP size_t counter = 0; // 1. vectorized loop unrolled 4 times { // we use vector of uint32 counters, this is why this limit is used const size_t max_iterations = std::numeric_limits::max() / (max_increment * 4); size_t blocks = length / (N * 4); length -= blocks * (N * 4); while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; simd32 acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in0 = vector_u32(input + 0 * N); const auto in1 = vector_u32(input + 1 * N); const auto in2 = vector_u32(input + 2 * N); const auto in3 = vector_u32(input + 3 * N); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in0 > v_0000007f); acc -= as_vector_u32(in1 > v_0000007f); acc -= as_vector_u32(in2 > v_0000007f); acc -= as_vector_u32(in3 > v_0000007f); acc -= as_vector_u32(in0 > v_000007ff); acc -= as_vector_u32(in1 > v_000007ff); acc -= as_vector_u32(in2 > v_000007ff); acc -= as_vector_u32(in3 > v_000007ff); acc -= as_vector_u32(in0 > v_0000ffff); acc -= as_vector_u32(in1 > v_0000ffff); acc -= as_vector_u32(in2 > v_0000ffff); acc -= as_vector_u32(in3 > v_0000ffff); #else acc += min(one, in0 & v_ffffff80); acc += min(one, in1 & v_ffffff80); acc += min(one, in2 & v_ffffff80); acc += min(one, in3 & v_ffffff80); acc += min(one, in0 & v_fffff800); acc += min(one, in1 & v_fffff800); acc += min(one, in2 & v_fffff800); acc += min(one, in3 & v_fffff800); acc += min(one, in0 & v_ffff0000); acc += min(one, in1 & v_ffff0000); acc += min(one, in2 & v_ffff0000); acc += min(one, in3 & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += 4 * N; } counter += acc.sum(); } } // 2. vectorized loop for tail { const size_t max_iterations = std::numeric_limits::max() / max_increment; size_t blocks = length / N; length -= blocks * N; while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; auto acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in = vector_u32(input); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in > v_0000007f); acc -= as_vector_u32(in > v_000007ff); acc -= as_vector_u32(in > v_0000ffff); #else acc += min(one, in & v_ffffff80); acc += min(one, in & v_fffff800); acc += min(one, in & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += N; } counter += acc.sum(); } } const size_t consumed = input - start; if (consumed != 0) { // We don't count 0th bytes in the vectorized loops above, this // is why we need to count them in the end. counter += consumed; } return counter + scalar::utf32::utf8_length_from_utf32(input, length); } } // namespace utf32 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/utf32.h */ /* begin file src/generic/validate_utf32.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf32 { simdutf_really_inline bool validate(const char32_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { // empty input is valid UTF-32. protect the implementation from // handling nullptr return true; } const char32_t *end = input + size; using vector_u32 = simd32; const auto standardmax = vector_u32::splat(0x10ffff); const auto offset = vector_u32::splat(0xffff2000); const auto standardoffsetmax = vector_u32::splat(0xfffff7ff); auto currentmax = vector_u32::zero(); auto currentoffsetmax = vector_u32::zero(); constexpr size_t N = vector_u32::ELEMENTS; while (input + N < end) { auto in = vector_u32(input); if (!match_system(endianness::BIG)) { in.swap_bytes(); } currentmax = max(currentmax, in); currentoffsetmax = max(currentoffsetmax, in + offset); input += N; } const auto too_large = currentmax > standardmax; if (too_large.any()) { return false; } const auto surrogate = currentoffsetmax > standardoffsetmax; if (surrogate.any()) { return false; } return scalar::utf32::validate(input, end - input); } simdutf_really_inline result validate_with_errors(const char32_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { // empty input is valid UTF-32. protect the implementation from // handling nullptr return result(error_code::SUCCESS, 0); } const char32_t *start = input; const char32_t *end = input + size; using vector_u32 = simd32; const auto standardmax = vector_u32::splat(0x10ffff + 1); const auto surrogate_mask = vector_u32::splat(0xfffff800); const auto surrogate_byte = vector_u32::splat(0x0000d800); constexpr size_t N = vector_u32::ELEMENTS; while (input + N < end) { auto in = vector_u32(input); if (!match_system(endianness::BIG)) { in.swap_bytes(); } const auto too_large = in >= standardmax; const auto surrogate = (in & surrogate_mask) == surrogate_byte; const auto combined = too_large | surrogate; if (simdutf_unlikely(combined.any())) { const size_t consumed = input - start; auto sr = scalar::utf32::validate_with_errors(input, end - input); sr.count += consumed; return sr; } input += N; } const size_t consumed = input - start; auto sr = scalar::utf32::validate_with_errors(input, end - input); sr.count += consumed; return sr; } } // namespace utf32 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/validate_utf32.h */ #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_ASCII /* begin file src/generic/ascii_validation.h */ namespace simdutf { namespace ppc64 { namespace { namespace ascii_validation { bool generic_validate_ascii(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); uint8_t blocks[64]{}; simd::simd8x64 running_or(blocks); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); running_or |= in; reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); running_or |= in; return running_or.is_ascii(); } result generic_validate_ascii_with_errors(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } else { return result(error_code::SUCCESS, length); } } } // namespace ascii_validation } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/ascii_validation.h */ #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/generic/utf8_to_latin1/utf8_to_latin1.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // For UTF-8 to Latin 1, we can allow any ASCII character, and any // continuation byte, but the non-ASCII leading bytes must be 0b11000011 or // 0b11000010 and nothing else. // // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ constexpr const uint8_t FORBIDDEN = 0xff; const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ FORBIDDEN, // 1110____ ________ FORBIDDEN, // 1111____ ________ FORBIDDEN); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ FORBIDDEN, // ____0101 ________ FORBIDDEN, // ____011_ ________ FORBIDDEN, FORBIDDEN, // ____1___ ________ FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, // ____1101 ________ FORBIDDEN, FORBIDDEN, FORBIDDEN); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); this->error |= check_special_cases(input, prev1); } simdutf_really_inline size_t convert(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 16; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert(in + pos, size - pos, latin1_output); if (howmany == 0) { return 0; } latin1_output += howmany; } return latin1_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } uint64_t utf8_continuation_mask = input.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written latin1_output += res.count; } } return result(error_code::SUCCESS, latin1_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_latin1 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/utf8_to_latin1/utf8_to_latin1.h */ /* begin file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ namespace simdutf { namespace ppc64 { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline size_t convert_valid(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the last // 16 bytes, and if the data is valid, then it is entirely safe because 16 // UTF-8 bytes generate much more than 8 bytes. However, you cannot generally // assume that you have valid UTF-8 input, so we are going to go back from the // end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert_valid(in + pos, size - pos, latin1_output); latin1_output += howmany; } return latin1_output - start; } } // namespace utf8_to_latin1 } // namespace } // namespace ppc64 } // namespace simdutf // namespace simdutf /* end file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_BASE64 /* begin file src/generic/base64.h */ /** * References and further reading: * * Wojciech Muła, Daniel Lemire, Base64 encoding and decoding at almost the * speed of a memory copy, Software: Practice and Experience 50 (2), 2020. * https://arxiv.org/abs/1910.05109 * * Wojciech Muła, Daniel Lemire, Faster Base64 Encoding and Decoding using AVX2 * Instructions, ACM Transactions on the Web 12 (3), 2018. * https://arxiv.org/abs/1704.00605 * * Simon Josefsson. 2006. The Base16, Base32, and Base64 Data Encodings. * https://tools.ietf.org/html/rfc4648. (2006). Internet Engineering Task Force, * Request for Comments: 4648. * * Alfred Klomp. 2014a. Fast Base64 encoding/decoding with SSE vectorization. * http://www.alfredklomp.com/programming/sse-base64/. (2014). * * Alfred Klomp. 2014b. Fast Base64 stream encoder/decoder in C99, with SIMD * acceleration. https://github.com/aklomp/base64. (2014). * * Hanson Char. 2014. A Fast and Correct Base 64 Codec. (2014). * https://aws.amazon.com/blogs/developer/a-fast-and-correct-base-64-codec/ * * Nick Kopp. 2013. Base64 Encoding on a GPU. * https://www.codeproject.com/Articles/276993/Base-Encoding-on-a-GPU. (2013). */ namespace simdutf { namespace ppc64 { namespace { namespace base64 { /* The following template function implements API for Base64 decoding. An implementation is responsible for providing the `block64` type and associated methods that perform actual conversion. Please refer to any vectorized implementation to learn the API of these procedures. */ template full_result compress_decode_base64(char *dst, const chartype *src, size_t srclen, base64_options options, last_chunk_handling_options last_chunk_options) { const uint8_t *to_base64 = default_or_url ? tables::base64::to_base64_default_or_url_value : (base64_url ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); auto ri = simdutf::scalar::base64::find_end(src, srclen, options); size_t equallocation = ri.equallocation; size_t equalsigns = ri.equalsigns; srclen = ri.srclen; size_t full_input_length = ri.full_input_length; if (srclen == 0) { if (!ignore_garbage && equalsigns > 0) { return {INVALID_BASE64_CHARACTER, equallocation, 0}; } return {SUCCESS, full_input_length, 0}; } char *end_of_safe_64byte_zone = dst == nullptr ? nullptr : ((srclen + 3) / 4 * 3 >= 63 ? dst + (srclen + 3) / 4 * 3 - 63 : dst); const chartype *const srcinit = src; const char *const dstinit = dst; const chartype *const srcend = src + srclen; constexpr size_t block_size = 6; static_assert(block_size >= 2, "block_size must be at least two"); char buffer[block_size * 64]; char *bufferptr = buffer; if (srclen >= 64) { const chartype *const srcend64 = src + srclen - 64; while (src <= srcend64) { block64 b(src); src += 64; uint64_t error = 0; const uint64_t badcharmask = b.to_base64_mask(&error); if (!ignore_garbage && error) { src -= 64; const size_t error_offset = trailing_zeroes(error); return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit + error_offset), size_t(dst - dstinit)}; } if (badcharmask != 0) { bufferptr += b.compress_block(badcharmask, bufferptr); } else if (bufferptr != buffer) { b.copy_block(bufferptr); bufferptr += 64; } else { if (dst >= end_of_safe_64byte_zone) { b.base64_decode_block_safe(dst); } else { b.base64_decode_block(dst); } dst += 48; } if (bufferptr >= (block_size - 1) * 64 + buffer) { for (size_t i = 0; i < (block_size - 2); i++) { base64_decode_block(dst, buffer + i * 64); dst += 48; } if (dst >= end_of_safe_64byte_zone) { base64_decode_block_safe(dst, buffer + (block_size - 2) * 64); } else { base64_decode_block(dst, buffer + (block_size - 2) * 64); } dst += 48; std::memcpy(buffer, buffer + (block_size - 1) * 64, 64); // 64 might be too much bufferptr -= (block_size - 1) * 64; } } } char *buffer_start = buffer; // Optimization note: if this is almost full, then it is worth our // time, otherwise, we should just decode directly. int last_block = (int)((bufferptr - buffer_start) % 64); if (last_block != 0 && srcend - src + last_block >= 64) { while ((bufferptr - buffer_start) % 64 != 0 && src < srcend) { uint8_t val = to_base64[uint8_t(*src)]; *bufferptr = char(val); if (!ignore_garbage && (!scalar::base64::is_eight_byte(*src) || val > 64)) { return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit)}; } bufferptr += (val <= 63); src++; } } for (; buffer_start + 64 <= bufferptr; buffer_start += 64) { if (dst >= end_of_safe_64byte_zone) { base64_decode_block_safe(dst, buffer_start); } else { base64_decode_block(dst, buffer_start); } dst += 48; } if ((bufferptr - buffer_start) % 64 != 0) { while (buffer_start + 4 < bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; #if !SIMDUTF_IS_BIG_ENDIAN triple = scalar::u32_swap_bytes(triple); #endif std::memcpy(dst, &triple, 3); dst += 3; buffer_start += 4; } if (buffer_start + 4 <= bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; #if !SIMDUTF_IS_BIG_ENDIAN triple = scalar::u32_swap_bytes(triple); #endif std::memcpy(dst, &triple, 3); dst += 3; buffer_start += 4; } // we may have 1, 2 or 3 bytes left and we need to decode them so let us // backtrack int leftover = int(bufferptr - buffer_start); while (leftover > 0) { if (!ignore_garbage) { while (to_base64[uint8_t(*(src - 1))] == 64) { src--; } } else { while (to_base64[uint8_t(*(src - 1))] >= 64) { src--; } } src--; leftover--; } } if (src < srcend + equalsigns) { full_result r = scalar::base64::base64_tail_decode( dst, src, srcend - src, equalsigns, options, last_chunk_options); r = scalar::base64::patch_tail_result( r, size_t(src - srcinit), size_t(dst - dstinit), equallocation, full_input_length, last_chunk_options); // When is_partial(last_chunk_options) is true, we must either end with // the end of the stream (beyond whitespace) or right after a non-ignorable // character or at the very beginning of the stream. // See https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 if (is_partial(last_chunk_options) && r.error == error_code::SUCCESS && r.input_count < full_input_length) { // First check if we can extend the input to the end of the stream while (r.input_count < full_input_length && base64_ignorable(*(srcinit + r.input_count), options)) { r.input_count++; } // If we are still not at the end of the stream, then we must backtrack // to the last non-ignorable character. if (r.input_count < full_input_length) { while (r.input_count > 0 && base64_ignorable(*(srcinit + r.input_count - 1), options)) { r.input_count--; } } } return r; } if (!ignore_garbage && equalsigns > 0) { if ((size_t(dst - dstinit) % 3 == 0) || ((size_t(dst - dstinit) % 3) + 1 + equalsigns != 4)) { return {INVALID_BASE64_CHARACTER, equallocation, size_t(dst - dstinit)}; } } return {SUCCESS, srclen, size_t(dst - dstinit)}; } } // namespace base64 } // unnamed namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/base64.h */ /* begin file src/generic/find.h */ namespace simdutf { namespace ppc64 { namespace { namespace util { simdutf_really_inline const char *find(const char *start, const char *end, char character) noexcept { // Handle empty or invalid range if (start >= end) return end; // Align the start pointer to 64 bytes uintptr_t misalignment = reinterpret_cast(start) % 64; if (misalignment != 0) { size_t adjustment = 64 - misalignment; if (size_t(std::distance(start, end)) < adjustment) { adjustment = std::distance(start, end); } for (size_t i = 0; i < adjustment; i++) { if (start[i] == character) { return start + i; } } start += adjustment; } // Main loop for 64-byte aligned data for (; std::distance(start, end) >= 64; start += 64) { simd8x64 input(reinterpret_cast(start)); uint64_t matches = input.eq(uint8_t(character)); if (matches != 0) { // Found a match, return the first one int index = trailing_zeroes(matches); return start + index; } } return std::find(start, end, character); } simdutf_really_inline const char16_t * find(const char16_t *start, const char16_t *end, char16_t character) noexcept { // Handle empty or invalid range if (start >= end) return end; // Align the start pointer to 64 bytes if misalignment is even uintptr_t misalignment = reinterpret_cast(start) % 64; if (misalignment != 0 && misalignment % 2 == 0) { size_t adjustment = (64 - misalignment) / sizeof(char16_t); if (size_t(std::distance(start, end)) < adjustment) { adjustment = std::distance(start, end); } for (size_t i = 0; i < adjustment; i++) { if (start[i] == character) { return start + i; } } start += adjustment; } // Main loop for 64-byte aligned data for (; std::distance(start, end) >= 32; start += 32) { simd16x32 input(reinterpret_cast(start)); uint64_t matches = input.eq(uint16_t(character)); if (matches != 0) { // Found a match, return the first one int index = trailing_zeroes(matches) / 2; return start + index; } } return std::find(start, end, character); } } // namespace util } // namespace } // namespace ppc64 } // namespace simdutf /* end file src/generic/find.h */ #endif // SIMDUTF_FEATURE_BASE64 /* begin file src/ppc64/templates.cpp */ /* Template `convert_impl` implements generic conversion routine between different encodings. Procedure returns the number of written elements, or zero in the case of error. Parameters: * VectorizedConvert - vectorized procedure that returns structure having three fields: error_code (err), const Source* (input), Destination* (output) * ScalarConvert - scalar procedure that carries on conversion of tail * Source - type of input char (like char16_t, char) * Destination - type of input char */ template size_t convert_impl(VectorizedConvert vectorized_convert, ScalarConvert scalar_convert, const Source *buf, size_t len, Destination *output) { const auto vr = vectorized_convert(buf, len, output); const size_t consumed = vr.input - buf; const size_t written = vr.output - output; if (vr.err != simdutf::error_code::SUCCESS) { if (vr.err == simdutf::error_code::OTHER) { // Vectorized procedure detected an error, but does not know // exact position. The scalar procedure rescan the portion of // input and figure out where the error is located. return scalar_convert(vr.input, len - consumed, vr.output); } return 0; } if (consumed == len) { return written; } const auto ret = scalar_convert(vr.input, len - consumed, vr.output); if (ret == 0) { return 0; } return written + ret; } /* Template `convert_with_errors_impl` implements generic conversion routine between different encodings. Procedure returns a `result` instance --- please refer to its documentation for details. Parameters: * VectorizedConvert - vectorized procedure that returns structure having three fields: error_code (err), const Source* (input), Destination* (output) * ScalarConvert - scalar procedure that carries on conversion of tail * Source - type of input char (like char16_t, char) * Destination - type of input char */ template simdutf::result convert_with_errors_impl(VectorizedConvert vectorized_convert, ScalarConvert scalar_convert, const Source *buf, size_t len, Destination *output) { const auto vr = vectorized_convert(buf, len, output); const size_t consumed = vr.input - buf; const size_t written = vr.output - output; if (vr.err != simdutf::error_code::SUCCESS) { if (vr.err == simdutf::error_code::OTHER) { // Vectorized procedure detected an error, but does not know // exact position. The scalar procedure rescan the portion of // input and figure out where the error is located. auto sr = scalar_convert(vr.input, len - consumed, vr.output); sr.count += consumed; return sr; } return simdutf::result(vr.err, consumed); } if (consumed == len) { return simdutf::result(simdutf::error_code::SUCCESS, written); } simdutf::result sr = scalar_convert(vr.input, len - consumed, vr.output); if (sr.is_ok()) { sr.count += written; } else { sr.count += consumed; } return sr; } /* end file src/ppc64/templates.cpp */ #ifdef SIMDUTF_INTERNAL_TESTS #if SIMDUTF_FEATURE_BASE64 #include "ppc64_base64_internal_tests.cpp" #endif // SIMDUTF_FEATURE_BASE64 #endif // SIMDUTF_INTERNAL_TESTS // // Implementation-specific overrides // namespace simdutf { namespace ppc64 { #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int implementation::detect_encodings(const char *input, size_t length) const noexcept { // If there is a BOM, then we trust it. auto bom_encoding = simdutf::BOM::check_bom(input, length); if (bom_encoding != encoding_type::unspecified) { return bom_encoding; } int out = 0; // todo: reimplement as a one-pass algorithm. if (validate_utf8(input, length)) { out |= encoding_type::UTF8; } if ((length % 2) == 0) { if (validate_utf16le(reinterpret_cast(input), length / 2)) { out |= encoding_type::UTF16_LE; } } if ((length % 4) == 0) { if (validate_utf32(reinterpret_cast(input), length / 4)) { out |= encoding_type::UTF32_LE; } } return out; } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf8(const char *buf, size_t len) const noexcept { return ppc64::utf8_validation::generic_validate_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result implementation::validate_utf8_with_errors( const char *buf, size_t len) const noexcept { return ppc64::utf8_validation::generic_validate_utf8_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_ascii(const char *buf, size_t len) const noexcept { return ppc64::ascii_validation::generic_validate_ascii(buf, len); } simdutf_warn_unused result implementation::validate_ascii_with_errors( const char *buf, size_t len) const noexcept { return ppc64::ascii_validation::generic_validate_ascii_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept { return ppc64::utf16::validate_utf16_as_ascii_with_errors( buf, len) .error == SUCCESS; } simdutf_warn_unused bool implementation::validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept { return ppc64::utf16::validate_utf16_as_ascii_with_errors(buf, len) .error == SUCCESS; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf16le(const char16_t *buf, size_t len) const noexcept { const auto res = ppc64::utf16::validate_utf16_with_errors(buf, len); if (res.is_err()) { return false; } if (res.count != len) { return scalar::utf16::validate(buf + res.count, len - res.count); } return true; } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool implementation::validate_utf16be(const char16_t *buf, size_t len) const noexcept { return validate_utf16be_with_errors(buf, len).is_ok(); } void implementation::to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept { return scalar::utf16::to_well_formed_utf16(input, len, output); } void implementation::to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept { return scalar::utf16::to_well_formed_utf16(input, len, output); } simdutf_warn_unused result implementation::validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept { const auto res = ppc64::utf16::validate_utf16_with_errors(buf, len); if (res.count != len) { auto scalar = scalar::utf16::validate_with_errors( buf + res.count, len - res.count); scalar.count += res.count; return scalar; } return res; } simdutf_warn_unused result implementation::validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept { const auto res = ppc64::utf16::validate_utf16_with_errors(buf, len); if (res.count != len) { auto scalar = scalar::utf16::validate_with_errors( buf + res.count, len - res.count); scalar.count += res.count; return scalar; } return res; } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf32(const char32_t *buf, size_t len) const noexcept { return utf32::validate(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result implementation::validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept { return utf32::validate_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept { const auto ret = ppc64_convert_latin1_to_utf8(buf, len, utf8_output); size_t converted_chars = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { size_t n = ppc64_convert_latin1_to_utf16(buf, len, utf16_output); if (n < len) { n += scalar::latin1_to_utf16::convert(buf + n, len - n, utf16_output + n); } return n; } simdutf_warn_unused size_t implementation::convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { size_t n = ppc64_convert_latin1_to_utf16(buf, len, utf16_output); if (n < len) { n += scalar::latin1_to_utf16::convert(buf + n, len - n, utf16_output + n); } return n; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { const auto ret = ppc64_convert_latin1_to_utf32(buf, len, utf32_output); if (ret.first != buf + len) { const size_t processed = ret.first - buf; scalar::latin1_to_utf32::convert(ret.first, len - processed, ret.second); } return len; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { utf8_to_latin1::validating_transcoder converter; return converter.convert(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_output) const noexcept { utf8_to_latin1::validating_transcoder converter; return converter.convert_with_errors(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { return ppc64::utf8_to_latin1::convert_valid(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(buf, len, utf16_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert(buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf32( const char *input, size_t size, char32_t *utf32_output) const noexcept { return utf8_to_utf32::convert_valid(input, size, utf32_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return convert_impl(ppc64_convert_utf16_to_latin1, scalar::utf16_to_latin1::convert, buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return convert_impl(ppc64_convert_utf16_to_latin1, scalar::utf16_to_latin1::convert, buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return convert_with_errors_impl( ppc64_convert_utf16_to_latin1, scalar::utf16_to_latin1::convert_with_errors, buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { return convert_with_errors_impl( ppc64_convert_utf16_to_latin1, scalar::utf16_to_latin1::convert_with_errors, buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: we could provide an optimized function. return convert_utf16be_to_latin1(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: we could provide an optimized function. return convert_utf16le_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_impl(ppc64_convert_utf16_to_utf8, scalar::utf16_to_utf8::convert, buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_impl(ppc64_convert_utf16_to_utf8, scalar::utf16_to_utf8::convert, buf, len, utf8_output); } simdutf_warn_unused result implementation::convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_with_errors_impl( ppc64_convert_utf16_to_utf8, scalar::utf16_to_utf8::simple_convert_with_errors, buf, len, utf8_output); } simdutf_warn_unused result implementation::convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_with_errors_impl( ppc64_convert_utf16_to_utf8, scalar::utf16_to_utf8::simple_convert_with_errors, buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16le_to_utf8(buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16be_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { return convert_impl(ppc64_convert_utf32_to_latin1, scalar::utf32_to_latin1::convert, buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf32_to_latin1_with_errors( const char32_t *buf, size_t len, char *latin1_output) const noexcept { return convert_with_errors_impl( ppc64_convert_utf32_to_latin1, scalar::utf32_to_latin1::convert_with_errors, buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { return convert_impl(ppc64_convert_utf32_to_latin1, scalar::utf32_to_latin1::convert, buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { return convert_impl(ppc64_convert_utf32_to_utf8, scalar::utf32_to_utf8::convert, buf, len, utf8_output); } simdutf_warn_unused result implementation::convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_output) const noexcept { return convert_with_errors_impl( ppc64_convert_utf32_to_utf8, scalar::utf32_to_utf8::convert_with_errors, buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { return convert_impl(ppc64_convert_utf32_to_utf8, scalar::utf32_to_utf8::convert, buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_impl(ppc64_convert_utf32_to_utf16, scalar::utf32_to_utf16::convert, buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_impl( ppc64_convert_utf32_to_utf16, scalar::utf32_to_utf16::convert, buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_with_errors_impl( ppc64_convert_utf32_to_utf16, scalar::utf32_to_utf16::convert_with_errors, buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_with_errors_impl( ppc64_convert_utf32_to_utf16, scalar::utf32_to_utf16::convert_with_errors, buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_impl( ppc64_convert_utf32_to_utf16, scalar::utf32_to_utf16::convert, buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_impl( ppc64_convert_utf32_to_utf16, scalar::utf32_to_utf16::convert, buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_impl(ppc64_convert_utf16_to_utf32, scalar::utf16_to_utf32::convert, buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_impl(ppc64_convert_utf16_to_utf32, scalar::utf16_to_utf32::convert, buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_with_errors_impl( ppc64_convert_utf16_to_utf32, scalar::utf16_to_utf32::convert_with_errors, buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_with_errors_impl( ppc64_convert_utf16_to_utf32, scalar::utf16_to_utf32::convert_with_errors, buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16le_to_utf32(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16be_to_utf32(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void implementation::change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) const noexcept { utf16::change_endianness_utf16(input, length, output); } simdutf_warn_unused size_t implementation::count_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } simdutf_warn_unused size_t implementation::count_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t implementation::count_utf8(const char *input, size_t length) const noexcept { return utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::latin1_length_from_utf8( const char *buf, size_t len) const noexcept { return count_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::utf8_length_from_latin1( const char *input, size_t length) const noexcept { const auto ret = ppc64_utf8_length_from_latin1(input, length); const size_t consumed = ret.first - input; if (consumed == length) { return ret.second; } const auto scalar = scalar::latin1::utf8_length_from_latin1(ret.first, length - consumed); return scalar + ret.second; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf8_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16(input, length); } simdutf_warn_unused size_t implementation::utf8_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } simdutf_warn_unused size_t implementation::utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf16_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::utf16_length_from_utf8(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16_with_replacement< endianness::LITTLE>(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16_with_replacement< endianness::BIG>(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf8_length_from_utf32( const char32_t *input, size_t length) const noexcept { return utf32::utf8_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf16_length_from_utf32( const char32_t *input, size_t length) const noexcept { return scalar::utf32::utf16_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused size_t implementation::maximal_binary_length_from_base64( const char *input, size_t length) const noexcept { return scalar::base64::maximal_binary_length_from_base64(input, length); } simdutf_warn_unused result implementation::base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused result implementation::base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } size_t implementation::binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept { if (options & base64_url) { return encode_base64(output, input, length, options); } else { return encode_base64(output, input, length, options); } } size_t implementation::binary_to_base64_with_lines( const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept { return scalar::base64::tail_encode_base64_impl(output, input, length, options, line_length); } const char *implementation::find(const char *start, const char *end, char character) const noexcept { return util::find(start, end, character); } const char16_t *implementation::find(const char16_t *start, const char16_t *end, char16_t character) const noexcept { return util::find(start, end, character); } #endif // SIMDUTF_FEATURE_BASE64 #ifdef SIMDUTF_INTERNAL_TESTS std::vector implementation::internal_tests() const { #define entry(proc) \ TestProcedure { #proc, proc } return {entry(base64_encoding_translate_6bit_values), entry(base64_encoding_expand_6bit_fields), entry(base64_decoding_valid), entry(base64_decoding_invalid_ignore_errors), entry(base64url_decoding_invalid_ignore_errors), entry(base64_decoding_invalid_strict_errors), entry(base64url_decoding_invalid_strict_errors), entry(base64_decoding_pack), entry(base64_compress)}; #undef entry } #endif } // namespace ppc64 } // namespace simdutf /* begin file src/simdutf/ppc64/end.h */ /* end file src/simdutf/ppc64/end.h */ /* end file src/ppc64/implementation.cpp */ #endif #if SIMDUTF_IMPLEMENTATION_RVV /* begin file src/rvv/implementation.cpp */ /* begin file src/simdutf/rvv/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "rvv" // #define SIMDUTF_IMPLEMENTATION rvv #if SIMDUTF_CAN_ALWAYS_RUN_RVV // nothing needed. #else SIMDUTF_TARGET_RVV #endif /* end file src/simdutf/rvv/begin.h */ namespace simdutf { namespace rvv { namespace { #ifndef SIMDUTF_RVV_H #error "rvv.h must be included" #endif } // unnamed namespace } // namespace rvv } // namespace simdutf // // Implementation-specific overrides // namespace simdutf { namespace rvv { /* begin file src/rvv/rvv_helpers.inl.cpp */ template simdutf_really_inline static size_t rvv_utf32_store_utf16_m4(uint16_t *dst, vuint32m4_t utf32, size_t vl, vbool4_t m4even) { /* convert [000000000000aaaa|aaaaaabbbbbbbbbb] * to [110111bbbbbbbbbb|110110aaaaaaaaaa] */ vuint32m4_t sur = __riscv_vsub_vx_u32m4(utf32, 0x10000, vl); sur = __riscv_vor_vv_u32m4(__riscv_vsll_vx_u32m4(sur, 16, vl), __riscv_vsrl_vx_u32m4(sur, 10, vl), vl); sur = __riscv_vand_vx_u32m4(sur, 0x3FF03FF, vl); sur = __riscv_vor_vx_u32m4(sur, 0xDC00D800, vl); /* merge 1 byte utf32 and 2 byte sur */ vbool8_t m4 = __riscv_vmsgtu_vx_u32m4_b8(utf32, 0xFFFF, vl); vuint16m4_t utf32_16 = __riscv_vreinterpret_v_u32m4_u16m4( __riscv_vmerge_vvm_u32m4(utf32, sur, m4, vl)); /* compress and store */ vbool4_t mOut = __riscv_vmor_mm_b4( __riscv_vmsne_vx_u16m4_b4(utf32_16, 0, vl * 2), m4even, vl * 2); vuint16m4_t vout = __riscv_vcompress_vm_u16m4(utf32_16, mOut, vl * 2); vl = __riscv_vcpop_m_b4(mOut, vl * 2); __riscv_vse16_v_u16m4(dst, simdutf_byteflip(vout, vl), vl); return vl; }; /* end file src/rvv/rvv_helpers.inl.cpp */ /* begin file src/rvv/rvv_length_from.inl.cpp */ #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::count_utf16le(const char16_t *src, size_t len) const noexcept { return utf32_length_from_utf16le(src, len); } simdutf_warn_unused size_t implementation::count_utf16be(const char16_t *src, size_t len) const noexcept { return utf32_length_from_utf16be(src, len); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t implementation::count_utf8(const char *src, size_t len) const noexcept { return utf32_length_from_utf8(src, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::latin1_length_from_utf8( const char *src, size_t len) const noexcept { return utf32_length_from_utf8(src, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf8( const char *src, size_t len) const noexcept { size_t count = 0; for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e8m8(len); vint8m8_t v = __riscv_vle8_v_i8m8((int8_t *)src, vl); vbool1_t mask = __riscv_vmsgt_vx_i8m8_b1(v, -65, vl); count += __riscv_vcpop_m_b1(mask, vl); } return count; } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32 template simdutf_really_inline static size_t rvv_utf32_length_from_utf16(const char16_t *src, size_t len) { size_t count = 0; for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e16m8(len); vuint16m8_t v = __riscv_vle16_v_u16m8((uint16_t *)src, vl); v = simdutf_byteflip(v, vl); vbool2_t notHigh = __riscv_vmor_mm_b2(__riscv_vmsgtu_vx_u16m8_b2(v, 0xDFFF, vl), __riscv_vmsltu_vx_u16m8_b2(v, 0xDC00, vl), vl); count += __riscv_vcpop_m_b2(notHigh, vl); } return count; } simdutf_warn_unused size_t implementation::utf32_length_from_utf16le( const char16_t *src, size_t len) const noexcept { return rvv_utf32_length_from_utf16(src, len); } simdutf_warn_unused size_t implementation::utf32_length_from_utf16be( const char16_t *src, size_t len) const noexcept { if (supports_zvbb()) return rvv_utf32_length_from_utf16(src, len); else return rvv_utf32_length_from_utf16(src, len); } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::utf8_length_from_latin1( const char *src, size_t len) const noexcept { size_t count = len; for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e8m8(len); vint8m8_t v = __riscv_vle8_v_i8m8((int8_t *)src, vl); count += __riscv_vcpop_m_b1(__riscv_vmslt_vx_i8m8_b1(v, 0, vl), vl); } return count; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 template simdutf_really_inline static size_t rvv_utf8_length_from_utf16(const char16_t *src, size_t len) { size_t count = 0; for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e16m8(len); vuint16m8_t v = __riscv_vle16_v_u16m8((uint16_t *)src, vl); v = simdutf_byteflip(v, vl); vbool2_t m234 = __riscv_vmsgtu_vx_u16m8_b2(v, 0x7F, vl); vbool2_t m34 = __riscv_vmsgtu_vx_u16m8_b2(v, 0x7FF, vl); vbool2_t notSur = __riscv_vmor_mm_b2(__riscv_vmsltu_vx_u16m8_b2(v, 0xD800, vl), __riscv_vmsgtu_vx_u16m8_b2(v, 0xDFFF, vl), vl); vbool2_t m3 = __riscv_vmand_mm_b2(m34, notSur, vl); count += vl + __riscv_vcpop_m_b2(m234, vl) + __riscv_vcpop_m_b2(m3, vl); } return count; } simdutf_warn_unused size_t implementation::utf8_length_from_utf16le( const char16_t *src, size_t len) const noexcept { return rvv_utf8_length_from_utf16(src, len); } simdutf_warn_unused size_t implementation::utf8_length_from_utf16be( const char16_t *src, size_t len) const noexcept { if (supports_zvbb()) return rvv_utf8_length_from_utf16(src, len); else return rvv_utf8_length_from_utf16(src, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf8_length_from_utf32( const char32_t *src, size_t len) const noexcept { size_t count = 0; for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e32m8(len); vuint32m8_t v = __riscv_vle32_v_u32m8((uint32_t *)src, vl); vbool4_t m234 = __riscv_vmsgtu_vx_u32m8_b4(v, 0x7F, vl); vbool4_t m34 = __riscv_vmsgtu_vx_u32m8_b4(v, 0x7FF, vl); vbool4_t m4 = __riscv_vmsgtu_vx_u32m8_b4(v, 0xFFFF, vl); count += vl + __riscv_vcpop_m_b4(m234, vl) + __riscv_vcpop_m_b4(m34, vl) + __riscv_vcpop_m_b4(m4, vl); } return count; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf16_length_from_utf8( const char *src, size_t len) const noexcept { size_t count = 0; for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e8m8(len); vint8m8_t v = __riscv_vle8_v_i8m8((int8_t *)src, vl); vbool1_t m1234 = __riscv_vmsgt_vx_i8m8_b1(v, -65, vl); vbool1_t m4 = __riscv_vmsgtu_vx_u8m8_b1(__riscv_vreinterpret_u8m8(v), (uint8_t)0b11101111, vl); count += __riscv_vcpop_m_b1(m1234, vl) + __riscv_vcpop_m_b1(m4, vl); } return count; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf16_length_from_utf32( const char32_t *src, size_t len) const noexcept { size_t count = 0; for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e32m8(len); vuint32m8_t v = __riscv_vle32_v_u32m8((uint32_t *)src, vl); vbool4_t m4 = __riscv_vmsgtu_vx_u32m8_b4(v, 0xFFFF, vl); count += vl + __riscv_vcpop_m_b4(m4, vl); } return count; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* end file src/rvv/rvv_length_from.inl.cpp */ /* begin file src/rvv/rvv_validate.inl.cpp */ #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_ascii(const char *src, size_t len) const noexcept { size_t vlmax = __riscv_vsetvlmax_e8m8(); vint8m8_t mask = __riscv_vmv_v_x_i8m8(0, vlmax); for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e8m8(len); vint8m8_t v = __riscv_vle8_v_i8m8((int8_t *)src, vl); mask = __riscv_vor_vv_i8m8_tu(mask, mask, v, vl); } return __riscv_vfirst_m_b1(__riscv_vmslt_vx_i8m8_b1(mask, 0, vlmax), vlmax) < 0; } simdutf_warn_unused result implementation::validate_ascii_with_errors( const char *src, size_t len) const noexcept { const char *beg = src; for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e8m8(len); vint8m8_t v = __riscv_vle8_v_i8m8((int8_t *)src, vl); long idx = __riscv_vfirst_m_b1(__riscv_vmslt_vx_i8m8_b1(v, 0, vl), vl); if (idx >= 0) return result(error_code::TOO_LARGE, src - beg + idx); } return result(error_code::SUCCESS, src - beg); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII template simdutf_really_inline bool rvv_validate_utf16_as_ascii(const char16_t *buf, size_t len) noexcept { const char16_t *src = buf; for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e16m8(len); vuint16m8_t v = __riscv_vle16_v_u16m8((uint16_t *)src, vl); v = simdutf_byteflip(v, vl); long idx = __riscv_vfirst_m_b2(__riscv_vmsgtu_vx_u16m8_b2(v, 0x7f, vl), vl); if (idx >= 0) return false; } return true; } simdutf_warn_unused bool implementation::validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept { return rvv_validate_utf16_as_ascii(buf, len); } simdutf_warn_unused bool implementation::validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept { if (supports_zvbb()) return rvv_validate_utf16_as_ascii(buf, len); else return rvv_validate_utf16_as_ascii(buf, len); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING /* Returns a close estimation of the number of valid UTF-8 bytes up to the * first invalid one, but never overestimating. */ simdutf_really_inline static size_t rvv_count_valid_utf8(const char *src, size_t len) { const char *beg = src; if (len < 32) return 0; /* validate first three bytes */ { size_t idx = 3; while (idx < len && (uint8_t(src[idx]) >> 6) == 0b10) ++idx; if (idx > 3 + 3 || !scalar::utf8::validate(src, idx)) return 0; } static const uint64_t err1m[] = {0x0202020202020202, 0x4915012180808080}; static const uint64_t err2m[] = {0xCBCBCB8B8383A3E7, 0xCBCBDBCBCBCBCBCB}; static const uint64_t err3m[] = {0x0101010101010101, 0X01010101BABAAEE6}; const vuint8m1_t err1tbl = __riscv_vreinterpret_v_u64m1_u8m1(__riscv_vle64_v_u64m1(err1m, 2)); const vuint8m1_t err2tbl = __riscv_vreinterpret_v_u64m1_u8m1(__riscv_vle64_v_u64m1(err2m, 2)); const vuint8m1_t err3tbl = __riscv_vreinterpret_v_u64m1_u8m1(__riscv_vle64_v_u64m1(err3m, 2)); size_t tail = 3; size_t n = len - tail; for (size_t vl; n > 0; n -= vl, src += vl) { vl = __riscv_vsetvl_e8m4(n); vuint8m4_t v0 = __riscv_vle8_v_u8m4((uint8_t const *)src, vl); uint8_t next0 = src[vl + 0]; uint8_t next1 = src[vl + 1]; uint8_t next2 = src[vl + 2]; /* fast path: ASCII */ if (__riscv_vfirst_m_b2(__riscv_vmsgtu_vx_u8m4_b2(v0, 0b01111111, vl), vl) < 0 && (next0 | next1 | next2) < 0b10000000) continue; /* see "Validating UTF-8 In Less Than One Instruction Per Byte" * https://arxiv.org/abs/2010.03090 */ vuint8m4_t v1 = __riscv_vslide1down_vx_u8m4(v0, next0, vl); vuint8m4_t v2 = __riscv_vslide1down_vx_u8m4(v1, next1, vl); vuint8m4_t v2_hi_nibble = __riscv_vsrl_vx_u8m4(v2, 4, vl); vuint8m4_t v3_hi_nibble = __riscv_vslide1down_vx_u8m4(v2_hi_nibble, next2 >> 4, vl); vuint8m4_t idx2 = __riscv_vand_vx_u8m4(v2, 0xF, vl); vuint8m4_t idx1 = v2_hi_nibble; vuint8m4_t idx3 = v3_hi_nibble; vuint8m4_t err1 = simdutf_vrgather_u8m1x4(err1tbl, idx1); vuint8m4_t err2 = simdutf_vrgather_u8m1x4(err2tbl, idx2); vuint8m4_t err3 = simdutf_vrgather_u8m1x4(err3tbl, idx3); vint8m4_t errs = __riscv_vreinterpret_v_u8m4_i8m4( __riscv_vand_vv_u8m4(__riscv_vand_vv_u8m4(err1, err2, vl), err3, vl)); vbool2_t is_3 = __riscv_vmsgtu_vx_u8m4_b2(v1, 0b11100000 - 1, vl); vbool2_t is_4 = __riscv_vmsgtu_vx_u8m4_b2(v0, 0b11110000 - 1, vl); vbool2_t is_34 = __riscv_vmor_mm_b2(is_3, is_4, vl); vbool2_t err34 = __riscv_vmxor_mm_b2(is_34, __riscv_vmslt_vx_i8m4_b2(errs, 0, vl), vl); vbool2_t errm = __riscv_vmor_mm_b2(__riscv_vmsgt_vx_i8m4_b2(errs, 0, vl), err34, vl); if (__riscv_vfirst_m_b2(errm, vl) >= 0) break; } /* we need to validate the last character */ while (tail < len && (uint8_t(src[0]) >> 6) == 0b10) --src, ++tail; return src - beg; } simdutf_warn_unused bool implementation::validate_utf8(const char *src, size_t len) const noexcept { size_t count = rvv_count_valid_utf8(src, len); return scalar::utf8::validate(src + count, len - count); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result implementation::validate_utf8_with_errors( const char *src, size_t len) const noexcept { size_t count = rvv_count_valid_utf8(src, len); result res = scalar::utf8::validate_with_errors(src + count, len - count); return result(res.error, count + res.count); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING template simdutf_really_inline static result rvv_validate_utf16_with_errors(const char16_t *src, size_t len) { const char16_t *beg = src; const uint16_t mask = simdutf_byteflip(0xfc00); const uint16_t hi_surrogate = simdutf_byteflip(0xd800); const uint16_t lo_surrogate = simdutf_byteflip(0xdc00); uint16_t last = 0; for (size_t vl; len > 0; len -= vl, src += vl, last = src[-1]) { vl = __riscv_vsetvl_e16m8(len); vuint16m8_t v1 = __riscv_vle16_v_u16m8((const uint16_t *)src, vl); vuint16m8_t v0 = __riscv_vslide1up_vx_u16m8(v1, last, vl); vbool2_t surhi = __riscv_vmseq_vx_u16m8_b2( __riscv_vand_vx_u16m8(v0, mask, vl), hi_surrogate, vl); vbool2_t surlo = __riscv_vmseq_vx_u16m8_b2( __riscv_vand_vx_u16m8(v1, mask, vl), lo_surrogate, vl); long idx = __riscv_vfirst_m_b2(__riscv_vmxor_mm_b2(surhi, surlo, vl), vl); if (idx >= 0) { last = simdutf_byteflip(idx > 0 ? src[idx - 1] : last); return result(error_code::SURROGATE, src - beg + idx - (last - 0xD800u < 0x400u)); break; } } if (simdutf_byteflip(last) - 0xD800u < 0x400u) { return result(error_code::SURROGATE, src - beg - 1); /* end on high surrogate */ } else { return result(error_code::SUCCESS, src - beg); } } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf16le(const char16_t *src, size_t len) const noexcept { return rvv_validate_utf16_with_errors(src, len) .error == error_code::SUCCESS; } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool implementation::validate_utf16be(const char16_t *src, size_t len) const noexcept { return validate_utf16be_with_errors(src, len).error == error_code::SUCCESS; } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused result implementation::validate_utf16le_with_errors( const char16_t *src, size_t len) const noexcept { return rvv_validate_utf16_with_errors(src, len); } simdutf_warn_unused result implementation::validate_utf16be_with_errors( const char16_t *src, size_t len) const noexcept { if (supports_zvbb()) return rvv_validate_utf16_with_errors(src, len); else return rvv_validate_utf16_with_errors(src, len); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf32(const char32_t *src, size_t len) const noexcept { size_t vlmax = __riscv_vsetvlmax_e32m8(); vuint32m8_t max = __riscv_vmv_v_x_u32m8(0x10FFFF, vlmax); vuint32m8_t maxOff = __riscv_vmv_v_x_u32m8(0xFFFFF7FF, vlmax); for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e32m8(len); vuint32m8_t v = __riscv_vle32_v_u32m8((uint32_t *)src, vl); vuint32m8_t off = __riscv_vadd_vx_u32m8(v, 0xFFFF2000, vl); max = __riscv_vmaxu_vv_u32m8_tu(max, max, v, vl); maxOff = __riscv_vmaxu_vv_u32m8_tu(maxOff, maxOff, off, vl); } return __riscv_vfirst_m_b4( __riscv_vmor_mm_b4( __riscv_vmsne_vx_u32m8_b4(max, 0x10FFFF, vlmax), __riscv_vmsne_vx_u32m8_b4(maxOff, 0xFFFFF7FF, vlmax), vlmax), vlmax) < 0; } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result implementation::validate_utf32_with_errors( const char32_t *src, size_t len) const noexcept { const char32_t *beg = src; for (size_t vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e32m8(len); vuint32m8_t v = __riscv_vle32_v_u32m8((uint32_t *)src, vl); vuint32m8_t off = __riscv_vadd_vx_u32m8(v, 0xFFFF2000, vl); long idx1 = __riscv_vfirst_m_b4(__riscv_vmsgtu_vx_u32m8_b4(v, 0x10FFFF, vl), vl); long idx2 = __riscv_vfirst_m_b4( __riscv_vmsgtu_vx_u32m8_b4(off, 0xFFFFF7FF, vl), vl); if (idx1 >= 0 && idx2 >= 0) { if (idx1 <= idx2) { return result(error_code::TOO_LARGE, src - beg + idx1); } else { return result(error_code::SURROGATE, src - beg + idx2); } } if (idx1 >= 0) { return result(error_code::TOO_LARGE, src - beg + idx1); } if (idx2 >= 0) { return result(error_code::SURROGATE, src - beg + idx2); } } return result(error_code::SUCCESS, src - beg); } #endif // SIMDUTF_FEATURE_UTF32 /* end file src/rvv/rvv_validate.inl.cpp */ /* begin file src/rvv/rvv_latin1_to.inl.cpp */ #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf8( const char *src, size_t len, char *dst) const noexcept { char *beg = dst; for (size_t vl, vlOut; len > 0; len -= vl, src += vl, dst += vlOut) { vl = __riscv_vsetvl_e8m2(len); vuint8m2_t v1 = __riscv_vle8_v_u8m2((uint8_t *)src, vl); vbool4_t nascii = __riscv_vmslt_vx_i8m2_b4(__riscv_vreinterpret_v_u8m2_i8m2(v1), 0, vl); size_t cnt = __riscv_vcpop_m_b4(nascii, vl); vlOut = vl + cnt; if (cnt == 0) { __riscv_vse8_v_u8m2((uint8_t *)dst, v1, vlOut); continue; } vuint8m2_t v0 = __riscv_vor_vx_u8m2(__riscv_vsrl_vx_u8m2(v1, 6, vl), 0b11000000, vl); v1 = __riscv_vand_vx_u8m2_mu(nascii, v1, v1, 0b10111111, vl); vuint8m4_t wide = __riscv_vreinterpret_v_u16m4_u8m4(__riscv_vwmaccu_vx_u16m4( __riscv_vwaddu_vv_u16m4(v0, v1, vl), 0xFF, v1, vl)); vbool2_t mask = __riscv_vmsgtu_vx_u8m4_b2( __riscv_vsub_vx_u8m4(wide, 0b11000000, vl * 2), 1, vl * 2); vuint8m4_t comp = __riscv_vcompress_vm_u8m4(wide, mask, vl * 2); __riscv_vse8_v_u8m4((uint8_t *)dst, comp, vlOut); } return dst - beg; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf16le( const char *src, size_t len, char16_t *dst) const noexcept { char16_t *beg = dst; for (size_t vl; len > 0; len -= vl, src += vl, dst += vl) { vl = __riscv_vsetvl_e8m4(len); vuint8m4_t v = __riscv_vle8_v_u8m4((uint8_t *)src, vl); __riscv_vse16_v_u16m8((uint16_t *)dst, __riscv_vzext_vf2_u16m8(v, vl), vl); } return dst - beg; } simdutf_warn_unused size_t implementation::convert_latin1_to_utf16be( const char *src, size_t len, char16_t *dst) const noexcept { char16_t *beg = dst; for (size_t vl; len > 0; len -= vl, src += vl, dst += vl) { vl = __riscv_vsetvl_e8m4(len); vuint8m4_t v = __riscv_vle8_v_u8m4((uint8_t *)src, vl); __riscv_vse16_v_u16m8( (uint16_t *)dst, __riscv_vsll_vx_u16m8(__riscv_vzext_vf2_u16m8(v, vl), 8, vl), vl); } return dst - beg; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf32( const char *src, size_t len, char32_t *dst) const noexcept { char32_t *beg = dst; for (size_t vl; len > 0; len -= vl, src += vl, dst += vl) { vl = __riscv_vsetvl_e8m2(len); vuint8m2_t v = __riscv_vle8_v_u8m2((uint8_t *)src, vl); __riscv_vse32_v_u32m8((uint32_t *)dst, __riscv_vzext_vf4_u32m8(v, vl), vl); } return dst - beg; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* end file src/rvv/rvv_latin1_to.inl.cpp */ /* begin file src/rvv/rvv_utf16_to.inl.cpp */ #if SIMDUTF_FEATURE_UTF16 template simdutf_really_inline static result rvv_utf16_to_latin1_with_errors(const char16_t *src, size_t len, char *dst) { const char16_t *const beg = src; for (size_t vl; len > 0; len -= vl, src += vl, dst += vl) { vl = __riscv_vsetvl_e16m8(len); vuint16m8_t v = __riscv_vle16_v_u16m8((uint16_t *)src, vl); v = simdutf_byteflip(v, vl); long idx = __riscv_vfirst_m_b2(__riscv_vmsgtu_vx_u16m8_b2(v, 255, vl), vl); if (idx >= 0) return result(error_code::TOO_LARGE, src - beg + idx); __riscv_vse8_v_u8m4((uint8_t *)dst, __riscv_vncvt_x_x_w_u8m4(v, vl), vl); } return result(error_code::SUCCESS, src - beg); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf16le_to_latin1( const char16_t *src, size_t len, char *dst) const noexcept { result res = convert_utf16le_to_latin1_with_errors(src, len, dst); return res.error == error_code::SUCCESS ? res.count : 0; } simdutf_warn_unused size_t implementation::convert_utf16be_to_latin1( const char16_t *src, size_t len, char *dst) const noexcept { result res = convert_utf16be_to_latin1_with_errors(src, len, dst); return res.error == error_code::SUCCESS ? res.count : 0; } simdutf_warn_unused result implementation::convert_utf16le_to_latin1_with_errors( const char16_t *src, size_t len, char *dst) const noexcept { return rvv_utf16_to_latin1_with_errors(src, len, dst); } simdutf_warn_unused result implementation::convert_utf16be_to_latin1_with_errors( const char16_t *src, size_t len, char *dst) const noexcept { if (supports_zvbb()) return rvv_utf16_to_latin1_with_errors(src, len, dst); else return rvv_utf16_to_latin1_with_errors(src, len, dst); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_latin1( const char16_t *src, size_t len, char *dst) const noexcept { const char16_t *const beg = src; for (size_t vl; len > 0; len -= vl, src += vl, dst += vl) { vl = __riscv_vsetvl_e16m8(len); vuint16m8_t v = __riscv_vle16_v_u16m8((uint16_t *)src, vl); __riscv_vse8_v_u8m4((uint8_t *)dst, __riscv_vncvt_x_x_w_u8m4(v, vl), vl); } return src - beg; } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_latin1( const char16_t *src, size_t len, char *dst) const noexcept { const char16_t *const beg = src; for (size_t vl; len > 0; len -= vl, src += vl, dst += vl) { vl = __riscv_vsetvl_e16m8(len); vuint16m8_t v = __riscv_vle16_v_u16m8((uint16_t *)src, vl); __riscv_vse8_v_u8m4((uint8_t *)dst, __riscv_vnsrl_wx_u8m4(v, 8, vl), vl); } return src - beg; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 template simdutf_really_inline static result rvv_utf16_to_utf8_with_errors(const char16_t *src, size_t len, char *dst) { size_t n = len; const char16_t *srcBeg = src; const char *dstBeg = dst; size_t vl8m4 = __riscv_vsetvlmax_e8m4(); vbool2_t m4mulp2 = __riscv_vmseq_vx_u8m4_b2( __riscv_vand_vx_u8m4(__riscv_vid_v_u8m4(vl8m4), 3, vl8m4), 2, vl8m4); for (size_t vl, vlOut; n > 0;) { vl = __riscv_vsetvl_e16m2(n); vuint16m2_t v = __riscv_vle16_v_u16m2((uint16_t const *)src, vl); v = simdutf_byteflip(v, vl); vbool8_t m234 = __riscv_vmsgtu_vx_u16m2_b8(v, 0x80 - 1, vl); if (__riscv_vfirst_m_b8(m234, vl) < 0) { /* 1 byte utf8 */ vlOut = vl; __riscv_vse8_v_u8m1((uint8_t *)dst, __riscv_vncvt_x_x_w_u8m1(v, vlOut), vlOut); n -= vl, src += vl, dst += vlOut; continue; } vbool8_t m34 = __riscv_vmsgtu_vx_u16m2_b8(v, 0x800 - 1, vl); if (__riscv_vfirst_m_b8(m34, vl) < 0) { /* 1/2 byte utf8 */ /* 0: [ aaa|aabbbbbb] * 1: [aabbbbbb| ] vsll 8 * 2: [ | aaaaa] vsrl 6 * 3: [00111111|00011111] * 4: [ bbbbbb|000aaaaa] (1|2)&3 * 5: [11000000|11000000] * 6: [10bbbbbb|110aaaaa] 4|5 */ vuint16m2_t twoByte = __riscv_vand_vx_u16m2( __riscv_vor_vv_u16m2(__riscv_vsll_vx_u16m2(v, 8, vl), __riscv_vsrl_vx_u16m2(v, 6, vl), vl), 0b0011111100011111, vl); vuint16m2_t vout16 = __riscv_vor_vx_u16m2_mu(m234, v, twoByte, 0b1000000011000000, vl); vuint8m2_t vout = __riscv_vreinterpret_v_u16m2_u8m2(vout16); /* Every high byte that is zero should be compressed * low bytes should never be compressed, so we set them * to all ones, and then create a non-zero bytes mask */ vbool4_t mcomp = __riscv_vmsne_vx_u8m2_b4(__riscv_vreinterpret_v_u16m2_u8m2( __riscv_vor_vx_u16m2(vout16, 0xFF, vl)), 0, vl * 2); vlOut = __riscv_vcpop_m_b4(mcomp, vl * 2); vout = __riscv_vcompress_vm_u8m2(vout, mcomp, vl * 2); __riscv_vse8_v_u8m2((uint8_t *)dst, vout, vlOut); n -= vl, src += vl, dst += vlOut; continue; } vbool8_t sur = __riscv_vmseq_vx_u16m2_b8( __riscv_vand_vx_u16m2(v, 0xF800, vl), 0xD800, vl); long first = __riscv_vfirst_m_b8(sur, vl); size_t tail = vl - first; vl = first < 0 ? vl : first; if (vl > 0) { /* 1/2/3 byte utf8 */ /* in: [aaaabbbb|bbcccccc] * v1: [0bcccccc| ] vsll 8 * v1: [10cccccc| ] vsll 8 & 0b00111111 | 0b10000000 * v2: [ |110bbbbb] vsrl 6 & 0b00111111 | 0b11000000 * v2: [ |10bbbbbb] vsrl 6 & 0b00111111 | 0b10000000 * v3: [ |1110aaaa] vsrl 12 | 0b11100000 * 1: [00000000|0bcccccc|00000000|00000000] => [0bcccccc] * 2: [00000000|10cccccc|110bbbbb|00000000] => [110bbbbb] [10cccccc] * 3: [00000000|10cccccc|10bbbbbb|1110aaaa] => [1110aaaa] [10bbbbbb] * [10cccccc] */ vuint16m2_t v1, v2, v3, v12; v1 = __riscv_vor_vx_u16m2_mu( m234, v, __riscv_vand_vx_u16m2(v, 0b00111111, vl), 0b10000000, vl); v1 = __riscv_vsll_vx_u16m2(v1, 8, vl); v2 = __riscv_vor_vx_u16m2( __riscv_vand_vx_u16m2(__riscv_vsrl_vx_u16m2(v, 6, vl), 0b00111111, vl), 0b10000000, vl); v2 = __riscv_vor_vx_u16m2_mu(__riscv_vmnot_m_b8(m34, vl), v2, v2, 0b01000000, vl); v3 = __riscv_vor_vx_u16m2(__riscv_vsrl_vx_u16m2(v, 12, vl), 0b11100000, vl); v12 = __riscv_vor_vv_u16m2_mu(m234, v1, v1, v2, vl); vuint32m4_t w12 = __riscv_vwmulu_vx_u32m4(v12, 1 << 8, vl); vuint32m4_t w123 = __riscv_vwaddu_wv_u32m4_mu(m34, w12, w12, v3, vl); vuint8m4_t vout = __riscv_vreinterpret_v_u32m4_u8m4(w123); vbool2_t mcomp = __riscv_vmor_mm_b2( m4mulp2, __riscv_vmsne_vx_u8m4_b2(vout, 0, vl * 4), vl * 4); vlOut = __riscv_vcpop_m_b2(mcomp, vl * 4); vout = __riscv_vcompress_vm_u8m4(vout, mcomp, vl * 4); __riscv_vse8_v_u8m4((uint8_t *)dst, vout, vlOut); n -= vl, src += vl, dst += vlOut; } if (tail) while (n) { uint16_t word = simdutf_byteflip(src[0]); if ((word & 0xFF80) == 0) { break; } else if ((word & 0xF800) == 0) { break; } else if ((word & 0xF800) != 0xD800) { break; } else { // must be a surrogate pair if (n <= 1) return result(error_code::SURROGATE, src - srcBeg); uint16_t diff = word - 0xD800; if (diff > 0x3FF) return result(error_code::SURROGATE, src - srcBeg); uint16_t diff2 = simdutf_byteflip(src[1]) - 0xDC00; if (diff2 > 0x3FF) return result(error_code::SURROGATE, src - srcBeg); uint32_t value = ((diff + 0x40) << 10) + diff2; // will generate four UTF-8 bytes // we have 0b11110XXX 0b10XXXXXX 0b10XXXXXX 0b10XXXXXX *dst++ = (char)((value >> 18) | 0b11110000); *dst++ = (char)(((value >> 12) & 0b111111) | 0b10000000); *dst++ = (char)(((value >> 6) & 0b111111) | 0b10000000); *dst++ = (char)((value & 0b111111) | 0b10000000); src += 2; n -= 2; } } } return result(error_code::SUCCESS, dst - dstBeg); } simdutf_warn_unused size_t implementation::convert_utf16le_to_utf8( const char16_t *src, size_t len, char *dst) const noexcept { result res = convert_utf16le_to_utf8_with_errors(src, len, dst); return res.error == error_code::SUCCESS ? res.count : 0; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf8( const char16_t *src, size_t len, char *dst) const noexcept { result res = convert_utf16be_to_utf8_with_errors(src, len, dst); return res.error == error_code::SUCCESS ? res.count : 0; } simdutf_warn_unused result implementation::convert_utf16le_to_utf8_with_errors( const char16_t *src, size_t len, char *dst) const noexcept { return rvv_utf16_to_utf8_with_errors(src, len, dst); } simdutf_warn_unused result implementation::convert_utf16be_to_utf8_with_errors( const char16_t *src, size_t len, char *dst) const noexcept { if (supports_zvbb()) return rvv_utf16_to_utf8_with_errors(src, len, dst); else return rvv_utf16_to_utf8_with_errors(src, len, dst); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf8( const char16_t *src, size_t len, char *dst) const noexcept { return convert_utf16le_to_utf8(src, len, dst); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf8( const char16_t *src, size_t len, char *dst) const noexcept { return convert_utf16be_to_utf8(src, len, dst); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 template simdutf_really_inline static result rvv_utf16_to_utf32_with_errors(const char16_t *src, size_t len, char32_t *dst) { const char16_t *const srcBeg = src; char32_t *const dstBeg = dst; constexpr const uint16_t ANY_SURROGATE_MASK = 0xf800; constexpr const uint16_t ANY_SURROGATE_VALUE = 0xd800; constexpr const uint16_t LO_SURROGATE_MASK = 0xfc00; constexpr const uint16_t LO_SURROGATE_VALUE = 0xdc00; constexpr const uint16_t HI_SURROGATE_MASK = 0xfc00; constexpr const uint16_t HI_SURROGATE_VALUE = 0xd800; uint16_t last = 0; while (len > 0) { size_t vl = __riscv_vsetvl_e16m2(len); vuint16m2_t v0 = __riscv_vle16_v_u16m2((uint16_t const *)src, vl); v0 = simdutf_byteflip(v0, vl); { // check fast-path const vuint16m2_t v = __riscv_vand_vx_u16m2(v0, ANY_SURROGATE_MASK, vl); const vbool8_t any_surrogate = __riscv_vmseq_vx_u16m2_b8(v, ANY_SURROGATE_VALUE, vl); if (__riscv_vfirst_m_b8(any_surrogate, vl) < 0) { /* no surrogates */ __riscv_vse32_v_u32m4((uint32_t *)dst, __riscv_vzext_vf2_u32m4(v0, vl), vl); len -= vl; src += vl; dst += vl; continue; } } if ((simdutf_byteflip(src[0]) & LO_SURROGATE_MASK) == LO_SURROGATE_VALUE) { return result(error_code::SURROGATE, src - srcBeg); } // decode surrogates vuint16m2_t v1 = __riscv_vslide1down_vx_u16m2(v0, 0, vl); vl = __riscv_vsetvl_e16m2(vl - 1); if (vl == 0) { return result(error_code::SURROGATE, src - srcBeg); } const vbool8_t surhi = __riscv_vmseq_vx_u16m2_b8( __riscv_vand_vx_u16m2(v0, HI_SURROGATE_MASK, vl), HI_SURROGATE_VALUE, vl); const vbool8_t surlo = __riscv_vmseq_vx_u16m2_b8( __riscv_vand_vx_u16m2(v1, LO_SURROGATE_MASK, vl), LO_SURROGATE_VALUE, vl); // compress everything but lo surrogates const vbool8_t compress = __riscv_vmsne_vx_u16m2_b8( __riscv_vand_vx_u16m2(v0, LO_SURROGATE_MASK, vl), LO_SURROGATE_VALUE, vl); { const vbool8_t diff = __riscv_vmxor_mm_b8(surhi, surlo, vl); const long idx = __riscv_vfirst_m_b8(diff, vl); if (idx >= 0) { uint16_t word = simdutf_byteflip(src[idx]); if (word < 0xD800 || word > 0xDBFF) { return result(error_code::SURROGATE, src - srcBeg + idx + 1); } return result(error_code::SURROGATE, src - srcBeg + idx); } } last = simdutf_byteflip(src[vl]); vuint32m4_t utf32 = __riscv_vzext_vf2_u32m4(v0, vl); // v0 = 110110yyyyyyyyyy (0xd800 + yyyyyyyyyy) --- hi surrogate // v1 = 110111xxxxxxxxxx (0xdc00 + xxxxxxxxxx) --- lo surrogate // t0 = u16( 0000_00yy_yyyy_yyyy) const vuint32m4_t t0 = __riscv_vzext_vf2_u32m4(__riscv_vand_vx_u16m2(v0, 0x03ff, vl), vl); // t1 = u32(0000_0000_0000_yyyy_yyyy_yy00_0000_0000) const vuint32m4_t t1 = __riscv_vsll_vx_u32m4(t0, 10, vl); // t2 = u32(0000_0000_0000_0000_0000_00xx_xxxx_xxxx) const vuint32m4_t t2 = __riscv_vzext_vf2_u32m4(__riscv_vand_vx_u16m2(v1, 0x03ff, vl), vl); // t3 = u32(0000_0000_0000_yyyy_yyyy_yyxx_xxxx_xxxx) const vuint32m4_t t3 = __riscv_vor_vv_u32m4(t1, t2, vl); // t4 = utf32 from surrogate pairs const vuint32m4_t t4 = __riscv_vadd_vx_u32m4(t3, 0x10000, vl); const vuint32m4_t result = __riscv_vmerge_vvm_u32m4(utf32, t4, surhi, vl); const vuint32m4_t comp = __riscv_vcompress_vm_u32m4(result, compress, vl); const size_t vlOut = __riscv_vcpop_m_b8(compress, vl); __riscv_vse32_v_u32m4((uint32_t *)dst, comp, vlOut); len -= vl; src += vl; dst += vlOut; if ((last & LO_SURROGATE_MASK) == LO_SURROGATE_VALUE) { // last item is lo surrogate and got already consumed len -= 1; src += 1; } } return result(error_code::SUCCESS, dst - dstBeg); } simdutf_warn_unused size_t implementation::convert_utf16le_to_utf32( const char16_t *src, size_t len, char32_t *dst) const noexcept { result res = convert_utf16le_to_utf32_with_errors(src, len, dst); return res.error == error_code::SUCCESS ? res.count : 0; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf32( const char16_t *src, size_t len, char32_t *dst) const noexcept { result res = convert_utf16be_to_utf32_with_errors(src, len, dst); return res.error == error_code::SUCCESS ? res.count : 0; } simdutf_warn_unused result implementation::convert_utf16le_to_utf32_with_errors( const char16_t *src, size_t len, char32_t *dst) const noexcept { return rvv_utf16_to_utf32_with_errors(src, len, dst); } simdutf_warn_unused result implementation::convert_utf16be_to_utf32_with_errors( const char16_t *src, size_t len, char32_t *dst) const noexcept { if (supports_zvbb()) return rvv_utf16_to_utf32_with_errors(src, len, dst); else return rvv_utf16_to_utf32_with_errors(src, len, dst); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf32( const char16_t *src, size_t len, char32_t *dst) const noexcept { return convert_utf16le_to_utf32(src, len, dst); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf32( const char16_t *src, size_t len, char32_t *dst) const noexcept { return convert_utf16be_to_utf32(src, len, dst); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* end file src/rvv/rvv_utf16_to.inl.cpp */ /* begin file src/rvv/rvv_utf32_to.inl.cpp */ #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf32_to_latin1( const char32_t *src, size_t len, char *dst) const noexcept { result res = convert_utf32_to_latin1_with_errors(src, len, dst); return res.error == error_code::SUCCESS ? res.count : 0; } simdutf_warn_unused result implementation::convert_utf32_to_latin1_with_errors( const char32_t *src, size_t len, char *dst) const noexcept { const char32_t *const beg = src; for (size_t vl; len > 0; len -= vl, src += vl, dst += vl) { vl = __riscv_vsetvl_e32m8(len); vuint32m8_t v = __riscv_vle32_v_u32m8((uint32_t *)src, vl); long idx = __riscv_vfirst_m_b4(__riscv_vmsgtu_vx_u32m8_b4(v, 255, vl), vl); if (idx >= 0) return result(error_code::TOO_LARGE, src - beg + idx); /* We don't use vcompress here, because its performance varies widely on * current platforms. This might be worth reconsidering once there is more * hardware available. */ __riscv_vse8_v_u8m2( (uint8_t *)dst, __riscv_vncvt_x_x_w_u8m2(__riscv_vncvt_x_x_w_u16m4(v, vl), vl), vl); } return result(error_code::SUCCESS, src - beg); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_latin1( const char32_t *src, size_t len, char *dst) const noexcept { return convert_utf32_to_latin1(src, len, dst); } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 template simdutf_warn_unused result convert_utf32_to_utf8_aux(const char32_t *src, size_t len, char *dst) noexcept { size_t n = len; const char32_t *srcBeg = src; const char *dstBeg = dst; size_t vl8m4 = __riscv_vsetvlmax_e8m4(); vbool2_t m4mulp2 = __riscv_vmseq_vx_u8m4_b2( __riscv_vand_vx_u8m4(__riscv_vid_v_u8m4(vl8m4), 3, vl8m4), 2, vl8m4); for (size_t vl, vlOut; n > 0;) { vl = __riscv_vsetvl_e32m4(n); vuint32m4_t v = __riscv_vle32_v_u32m4((uint32_t const *)src, vl); vbool8_t m234 = __riscv_vmsgtu_vx_u32m4_b8(v, 0x80 - 1, vl); vuint16m2_t vn = __riscv_vncvt_x_x_w_u16m2(v, vl); if (__riscv_vfirst_m_b8(m234, vl) < 0) { /* 1 byte utf8 */ vlOut = vl; __riscv_vse8_v_u8m1((uint8_t *)dst, __riscv_vncvt_x_x_w_u8m1(vn, vlOut), vlOut); n -= vl, src += vl, dst += vlOut; continue; } vbool8_t m34 = __riscv_vmsgtu_vx_u32m4_b8(v, 0x800 - 1, vl); if (__riscv_vfirst_m_b8(m34, vl) < 0) { /* 1/2 byte utf8 */ /* 0: [ aaa|aabbbbbb] * 1: [aabbbbbb| ] vsll 8 * 2: [ | aaaaa] vsrl 6 * 3: [00111111|00111111] * 4: [ bbbbbb|000aaaaa] (1|2)&3 * 5: [10000000|11000000] * 6: [10bbbbbb|110aaaaa] 4|5 */ vuint16m2_t twoByte = __riscv_vand_vx_u16m2( __riscv_vor_vv_u16m2(__riscv_vsll_vx_u16m2(vn, 8, vl), __riscv_vsrl_vx_u16m2(vn, 6, vl), vl), 0b0011111100111111, vl); vuint16m2_t vout16 = __riscv_vor_vx_u16m2_mu(m234, vn, twoByte, 0b1000000011000000, vl); vuint8m2_t vout = __riscv_vreinterpret_v_u16m2_u8m2(vout16); /* Every high byte that is zero should be compressed * low bytes should never be compressed, so we set them * to all ones, and then create a non-zero bytes mask */ vbool4_t mcomp = __riscv_vmsne_vx_u8m2_b4(__riscv_vreinterpret_v_u16m2_u8m2( __riscv_vor_vx_u16m2(vout16, 0xFF, vl)), 0, vl * 2); vlOut = __riscv_vcpop_m_b4(mcomp, vl * 2); vout = __riscv_vcompress_vm_u8m2(vout, mcomp, vl * 2); __riscv_vse8_v_u8m2((uint8_t *)dst, vout, vlOut); n -= vl, src += vl, dst += vlOut; continue; } if (with_validation) { const long idx1 = __riscv_vfirst_m_b8(__riscv_vmsgtu_vx_u32m4_b8(v, 0x10FFFF, vl), vl); vbool8_t sur = __riscv_vmseq_vx_u32m4_b8( __riscv_vand_vx_u32m4(v, 0xFFFFF800, vl), 0xD800, vl); const long idx2 = __riscv_vfirst_m_b8(sur, vl); if (idx1 >= 0 || idx2 >= 0) { if (static_cast(idx1) <= static_cast(idx2)) { return result(error_code::TOO_LARGE, src - srcBeg + idx1); } else { return result(error_code::SURROGATE, src - srcBeg + idx2); } } } vbool8_t m4 = __riscv_vmsgtu_vx_u32m4_b8(v, 0x10000 - 1, vl); long first = __riscv_vfirst_m_b8(m4, vl); size_t tail = vl - first; vl = first < 0 ? vl : first; if (vl > 0) { /* 1/2/3 byte utf8 */ /* vn: [aaaabbbb|bbcccccc] * v1: [0bcccccc| ] vsll 8 * v1: [10cccccc| ] vsll 8 & 0b00111111 | 0b10000000 * v2: [ |110bbbbb] vsrl 6 & 0b00111111 | 0b11000000 * v2: [ |10bbbbbb] vsrl 6 & 0b00111111 | 0b10000000 * v3: [ |1110aaaa] vsrl 12 | 0b11100000 * 1: [00000000|0bcccccc|00000000|00000000] => [0bcccccc] * 2: [00000000|10cccccc|110bbbbb|00000000] => [110bbbbb] [10cccccc] * 3: [00000000|10cccccc|10bbbbbb|1110aaaa] => [1110aaaa] [10bbbbbb] * [10cccccc] */ vuint16m2_t v1, v2, v3, v12; v1 = __riscv_vor_vx_u16m2_mu( m234, vn, __riscv_vand_vx_u16m2(vn, 0b00111111, vl), 0b10000000, vl); v1 = __riscv_vsll_vx_u16m2(v1, 8, vl); v2 = __riscv_vor_vx_u16m2( __riscv_vand_vx_u16m2(__riscv_vsrl_vx_u16m2(vn, 6, vl), 0b00111111, vl), 0b10000000, vl); v2 = __riscv_vor_vx_u16m2_mu(__riscv_vmnot_m_b8(m34, vl), v2, v2, 0b01000000, vl); v3 = __riscv_vor_vx_u16m2(__riscv_vsrl_vx_u16m2(vn, 12, vl), 0b11100000, vl); v12 = __riscv_vor_vv_u16m2_mu(m234, v1, v1, v2, vl); vuint32m4_t w12 = __riscv_vwmulu_vx_u32m4(v12, 1 << 8, vl); vuint32m4_t w123 = __riscv_vwaddu_wv_u32m4_mu(m34, w12, w12, v3, vl); vuint8m4_t vout = __riscv_vreinterpret_v_u32m4_u8m4(w123); vbool2_t mcomp = __riscv_vmor_mm_b2( m4mulp2, __riscv_vmsne_vx_u8m4_b2(vout, 0, vl * 4), vl * 4); vlOut = __riscv_vcpop_m_b2(mcomp, vl * 4); vout = __riscv_vcompress_vm_u8m4(vout, mcomp, vl * 4); __riscv_vse8_v_u8m4((uint8_t *)dst, vout, vlOut); n -= vl, src += vl, dst += vlOut; } if (tail) while (n) { uint32_t word = src[0]; if (word < 0x10000) break; if (word > 0x10FFFF) return result(error_code::TOO_LARGE, src - srcBeg); *dst++ = (uint8_t)((word >> 18) | 0b11110000); *dst++ = (uint8_t)(((word >> 12) & 0b111111) | 0b10000000); *dst++ = (uint8_t)(((word >> 6) & 0b111111) | 0b10000000); *dst++ = (uint8_t)((word & 0b111111) | 0b10000000); ++src; --n; } } return result(error_code::SUCCESS, dst - dstBeg); } simdutf_warn_unused result implementation::convert_utf32_to_utf8_with_errors( const char32_t *src, size_t len, char *dst) const noexcept { constexpr bool with_validation = true; return convert_utf32_to_utf8_aux(src, len, dst); } simdutf_warn_unused size_t implementation::convert_utf32_to_utf8( const char32_t *src, size_t len, char *dst) const noexcept { result res = convert_utf32_to_utf8_with_errors(src, len, dst); return res.error == error_code::SUCCESS ? res.count : 0; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf8( const char32_t *src, size_t len, char *dst) const noexcept { constexpr bool with_validation = false; const auto res = convert_utf32_to_utf8_aux(src, len, dst); return res.count; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 template simdutf_really_inline static result rvv_convert_utf32_to_utf16_with_errors(const char32_t *src, size_t len, char16_t *dst) { size_t vl8m2 = __riscv_vsetvlmax_e8m2(); vbool4_t m4even = __riscv_vmseq_vx_u8m2_b4( __riscv_vand_vx_u8m2(__riscv_vid_v_u8m2(vl8m2), 1, vl8m2), 0, vl8m2); const char16_t *dstBeg = dst; const char32_t *srcBeg = src; for (size_t vl, vlOut; len > 0; len -= vl, src += vl, dst += vlOut) { vl = __riscv_vsetvl_e32m4(len); vuint32m4_t v = __riscv_vle32_v_u32m4((uint32_t *)src, vl); vuint32m4_t off = __riscv_vadd_vx_u32m4(v, 0xFFFF2000, vl); const long err_surrogate_idx = __riscv_vfirst_m_b8( __riscv_vmsgtu_vx_u32m4_b8(off, 0xFFFFF7FF, vl), vl); const long idx = __riscv_vfirst_m_b8(__riscv_vmsgtu_vx_u32m4_b8(v, 0xFFFF, vl), vl); if (idx < 0) { if (err_surrogate_idx >= 0) { return result(error_code::SURROGATE, src - srcBeg + err_surrogate_idx); } vlOut = vl; vuint16m2_t n = simdutf_byteflip(__riscv_vncvt_x_x_w_u16m2(v, vlOut), vlOut); __riscv_vse16_v_u16m2((uint16_t *)dst, n, vlOut); continue; } const long err_too_big_idx = __riscv_vfirst_m_b8(__riscv_vmsgtu_vx_u32m4_b8(v, 0x10FFFF, vl), vl); if (err_too_big_idx >= 0 || err_surrogate_idx >= 0) { if (static_cast(err_too_big_idx) <= static_cast(err_surrogate_idx)) { return result(error_code::TOO_LARGE, src - srcBeg + err_too_big_idx); } else { return result(error_code::SURROGATE, src - srcBeg + err_surrogate_idx); } } vlOut = rvv_utf32_store_utf16_m4((uint16_t *)dst, v, vl, m4even); } return result(error_code::SUCCESS, dst - dstBeg); } simdutf_warn_unused size_t implementation::convert_utf32_to_utf16le( const char32_t *src, size_t len, char16_t *dst) const noexcept { result res = convert_utf32_to_utf16le_with_errors(src, len, dst); return res.error == error_code::SUCCESS ? res.count : 0; } simdutf_warn_unused size_t implementation::convert_utf32_to_utf16be( const char32_t *src, size_t len, char16_t *dst) const noexcept { result res = convert_utf32_to_utf16be_with_errors(src, len, dst); return res.error == error_code::SUCCESS ? res.count : 0; } simdutf_warn_unused result implementation::convert_utf32_to_utf16le_with_errors( const char32_t *src, size_t len, char16_t *dst) const noexcept { return rvv_convert_utf32_to_utf16_with_errors( src, len, dst); } simdutf_warn_unused result implementation::convert_utf32_to_utf16be_with_errors( const char32_t *src, size_t len, char16_t *dst) const noexcept { if (supports_zvbb()) return rvv_convert_utf32_to_utf16_with_errors( src, len, dst); else return rvv_convert_utf32_to_utf16_with_errors(src, len, dst); } template simdutf_really_inline static size_t rvv_convert_valid_utf32_to_utf16(const char32_t *src, size_t len, char16_t *dst) { size_t vl8m2 = __riscv_vsetvlmax_e8m2(); vbool4_t m4even = __riscv_vmseq_vx_u8m2_b4( __riscv_vand_vx_u8m2(__riscv_vid_v_u8m2(vl8m2), 1, vl8m2), 0, vl8m2); char16_t *dstBeg = dst; for (size_t vl, vlOut; len > 0; len -= vl, src += vl, dst += vlOut) { vl = __riscv_vsetvl_e32m4(len); vuint32m4_t v = __riscv_vle32_v_u32m4((uint32_t *)src, vl); if (__riscv_vfirst_m_b8(__riscv_vmsgtu_vx_u32m4_b8(v, 0xFFFF, vl), vl) < 0) { vlOut = vl; vuint16m2_t n = simdutf_byteflip(__riscv_vncvt_x_x_w_u16m2(v, vlOut), vlOut); __riscv_vse16_v_u16m2((uint16_t *)dst, n, vlOut); continue; } vlOut = rvv_utf32_store_utf16_m4((uint16_t *)dst, v, vl, m4even); } return dst - dstBeg; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16le( const char32_t *src, size_t len, char16_t *dst) const noexcept { return rvv_convert_valid_utf32_to_utf16(src, len, dst); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16be( const char32_t *src, size_t len, char16_t *dst) const noexcept { if (supports_zvbb()) return rvv_convert_valid_utf32_to_utf16(src, len, dst); else return rvv_convert_valid_utf32_to_utf16(src, len, dst); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* end file src/rvv/rvv_utf32_to.inl.cpp */ /* begin file src/rvv/rvv_utf8_to.inl.cpp */ #if SIMDUTF_FEATURE_UTF8 && (SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32) template simdutf_really_inline static size_t rvv_utf8_to_common(char const *src, size_t len, Tdst *dst) { static_assert(std::is_same() || std::is_same(), "invalid type"); constexpr bool is16 = std::is_same(); constexpr endianness endian = bflip == simdutf_ByteFlip::NONE ? endianness::LITTLE : endianness::BIG; const auto scalar = [](char const *in, size_t count, Tdst *out) { return is16 ? scalar::utf8_to_utf16::convert(in, count, (char16_t *)out) : scalar::utf8_to_utf32::convert(in, count, (char32_t *)out); }; if (len < 32) return scalar(src, len, dst); /* validate first three bytes */ if (validate) { size_t idx = 3; while (idx < len && (uint8_t(src[idx]) >> 6) == 0b10) ++idx; if (idx > 3 + 3 || !scalar::utf8::validate(src, idx)) return 0; } size_t tail = 3; size_t n = len - tail; Tdst *beg = dst; static const uint64_t err1m[] = {0x0202020202020202, 0x4915012180808080}; static const uint64_t err2m[] = {0xCBCBCB8B8383A3E7, 0xCBCBDBCBCBCBCBCB}; static const uint64_t err3m[] = {0x0101010101010101, 0X01010101BABAAEE6}; const vuint8m1_t err1tbl = __riscv_vreinterpret_v_u64m1_u8m1(__riscv_vle64_v_u64m1(err1m, 2)); const vuint8m1_t err2tbl = __riscv_vreinterpret_v_u64m1_u8m1(__riscv_vle64_v_u64m1(err2m, 2)); const vuint8m1_t err3tbl = __riscv_vreinterpret_v_u64m1_u8m1(__riscv_vle64_v_u64m1(err3m, 2)); size_t vl8m1 = __riscv_vsetvlmax_e8m1(); size_t vl8m2 = __riscv_vsetvlmax_e8m2(); vbool4_t m4even = __riscv_vmseq_vx_u8m2_b4( __riscv_vand_vx_u8m2(__riscv_vid_v_u8m2(vl8m2), 1, vl8m2), 0, vl8m2); for (size_t vl, vlOut; n > 0; n -= vl, src += vl, dst += vlOut) { vl = __riscv_vsetvl_e8m2(n); vuint8m2_t v0 = __riscv_vle8_v_u8m2((uint8_t const *)src, vl); uint64_t max = __riscv_vmv_x_s_u8m1_u8( __riscv_vredmaxu_vs_u8m2_u8m1(v0, __riscv_vmv_s_x_u8m1(0, vl), vl)); uint8_t next0 = src[vl + 0]; uint8_t next1 = src[vl + 1]; uint8_t next2 = src[vl + 2]; /* fast path: ASCII */ if ((max | next0 | next1 | next2) < 0b10000000) { vlOut = vl; if (is16) __riscv_vse16_v_u16m4( (uint16_t *)dst, simdutf_byteflip(__riscv_vzext_vf2_u16m4(v0, vlOut), vlOut), vlOut); else __riscv_vse32_v_u32m8((uint32_t *)dst, __riscv_vzext_vf4_u32m8(v0, vlOut), vlOut); continue; } /* see "Validating UTF-8 In Less Than One Instruction Per Byte" * https://arxiv.org/abs/2010.03090 */ vuint8m2_t v1 = __riscv_vslide1down_vx_u8m2(v0, next0, vl); vuint8m2_t v2 = __riscv_vslide1down_vx_u8m2(v1, next1, vl); vuint8m2_t v3 = __riscv_vslide1down_vx_u8m2(v2, next2, vl); if (validate) { vuint8m2_t idx2 = __riscv_vand_vx_u8m2(v2, 0xF, vl); vuint8m2_t idx1 = __riscv_vsrl_vx_u8m2(v2, 4, vl); vuint8m2_t idx3 = __riscv_vsrl_vx_u8m2(v3, 4, vl); vuint8m2_t err1 = simdutf_vrgather_u8m1x2(err1tbl, idx1); vuint8m2_t err2 = simdutf_vrgather_u8m1x2(err2tbl, idx2); vuint8m2_t err3 = simdutf_vrgather_u8m1x2(err3tbl, idx3); vint8m2_t errs = __riscv_vreinterpret_v_u8m2_i8m2( __riscv_vand_vv_u8m2(__riscv_vand_vv_u8m2(err1, err2, vl), err3, vl)); vbool4_t is_3 = __riscv_vmsgtu_vx_u8m2_b4(v1, 0b11100000 - 1, vl); vbool4_t is_4 = __riscv_vmsgtu_vx_u8m2_b4(v0, 0b11110000 - 1, vl); vbool4_t is_34 = __riscv_vmor_mm_b4(is_3, is_4, vl); vbool4_t err34 = __riscv_vmxor_mm_b4(is_34, __riscv_vmslt_vx_i8m2_b4(errs, 0, vl), vl); vbool4_t errm = __riscv_vmor_mm_b4(__riscv_vmsgt_vx_i8m2_b4(errs, 0, vl), err34, vl); if (__riscv_vfirst_m_b4(errm, vl) >= 0) return 0; } /* decoding */ /* mask of non continuation bytes */ vbool4_t m = __riscv_vmsgt_vx_i8m2_b4(__riscv_vreinterpret_v_u8m2_i8m2(v0), -65, vl); vlOut = __riscv_vcpop_m_b4(m, vl); /* extract first and second bytes */ vuint8m2_t b1 = __riscv_vcompress_vm_u8m2(v0, m, vl); vuint8m2_t b2 = __riscv_vcompress_vm_u8m2(v1, m, vl); /* fast path: one and two byte */ if (max < 0b11100000) { b2 = __riscv_vand_vx_u8m2(b2, 0b00111111, vlOut); vbool4_t m1 = __riscv_vmsgtu_vx_u8m2_b4(b1, 0b10111111, vlOut); b1 = __riscv_vand_vx_u8m2_mu(m1, b1, b1, 63, vlOut); vuint16m4_t b12 = __riscv_vwmulu_vv_u16m4( b1, __riscv_vmerge_vxm_u8m2(__riscv_vmv_v_x_u8m2(1, vlOut), 1 << 6, m1, vlOut), vlOut); b12 = __riscv_vwaddu_wv_u16m4_mu(m1, b12, b12, b2, vlOut); if (is16) __riscv_vse16_v_u16m4((uint16_t *)dst, simdutf_byteflip(b12, vlOut), vlOut); else __riscv_vse32_v_u32m8((uint32_t *)dst, __riscv_vzext_vf2_u32m8(b12, vlOut), vlOut); continue; } /* fast path: one, two and three byte */ if (max < 0b11110000) { vuint8m2_t b3 = __riscv_vcompress_vm_u8m2(v2, m, vl); b2 = __riscv_vand_vx_u8m2(b2, 0b00111111, vlOut); b3 = __riscv_vand_vx_u8m2(b3, 0b00111111, vlOut); vbool4_t m1 = __riscv_vmsgtu_vx_u8m2_b4(b1, 0b10111111, vlOut); vbool4_t m3 = __riscv_vmsgtu_vx_u8m2_b4(b1, 0b11011111, vlOut); vuint8m2_t t1 = __riscv_vand_vx_u8m2_mu(m1, b1, b1, 63, vlOut); b1 = __riscv_vand_vx_u8m2_mu(m3, t1, b1, 15, vlOut); vuint16m4_t b12 = __riscv_vwmulu_vv_u16m4( b1, __riscv_vmerge_vxm_u8m2(__riscv_vmv_v_x_u8m2(1, vlOut), 1 << 6, m1, vlOut), vlOut); b12 = __riscv_vwaddu_wv_u16m4_mu(m1, b12, b12, b2, vlOut); vuint16m4_t b123 = __riscv_vwaddu_wv_u16m4_mu( m3, b12, __riscv_vsll_vx_u16m4_mu(m3, b12, b12, 6, vlOut), b3, vlOut); if (is16) __riscv_vse16_v_u16m4((uint16_t *)dst, simdutf_byteflip(b123, vlOut), vlOut); else __riscv_vse32_v_u32m8((uint32_t *)dst, __riscv_vzext_vf2_u32m8(b123, vlOut), vlOut); continue; } /* extract third and fourth bytes */ vuint8m2_t b3 = __riscv_vcompress_vm_u8m2(v2, m, vl); vuint8m2_t b4 = __riscv_vcompress_vm_u8m2(v3, m, vl); /* remove prefix from leading bytes * * We could also use vrgather here, but it increases register pressure, * and its performance varies widely on current platforms. It might be * worth reconsidering, though, once there is more hardware available. * Same goes for the __riscv_vsrl_vv_u32m4 correction step. * * We shift left and then right by the number of bytes in the prefix, * which can be calculated as follows: * x max(x-10, 0) * 0xxx -> 0000-0111 -> sift by 0 or 1 -> 0 * 10xx -> 1000-1011 -> don't care * 110x -> 1100,1101 -> sift by 3 -> 2,3 * 1110 -> 1110 -> sift by 4 -> 4 * 1111 -> 1111 -> sift by 5 -> 5 * * vssubu.vx v, 10, (max(x-10, 0)) almost gives us what we want, we * just need to manually detect and handle the one special case: */ #define SIMDUTF_RVV_UTF8_TO_COMMON_M1(idx) \ vuint8m1_t c1 = __riscv_vget_v_u8m2_u8m1(b1, idx); \ vuint8m1_t c2 = __riscv_vget_v_u8m2_u8m1(b2, idx); \ vuint8m1_t c3 = __riscv_vget_v_u8m2_u8m1(b3, idx); \ vuint8m1_t c4 = __riscv_vget_v_u8m2_u8m1(b4, idx); \ /* remove prefix from trailing bytes */ \ c2 = __riscv_vand_vx_u8m1(c2, 0b00111111, vlOut); \ c3 = __riscv_vand_vx_u8m1(c3, 0b00111111, vlOut); \ c4 = __riscv_vand_vx_u8m1(c4, 0b00111111, vlOut); \ vuint8m1_t shift = __riscv_vsrl_vx_u8m1(c1, 4, vlOut); \ shift = __riscv_vmerge_vxm_u8m1( \ __riscv_vssubu_vx_u8m1(shift, 10, vlOut), 3, \ __riscv_vmseq_vx_u8m1_b8(shift, 12, vlOut), vlOut); \ c1 = __riscv_vsll_vv_u8m1(c1, shift, vlOut); \ c1 = __riscv_vsrl_vv_u8m1(c1, shift, vlOut); \ /* unconditionally widen and combine to c1234 */ \ vuint16m2_t c34 = __riscv_vwaddu_wv_u16m2( \ __riscv_vwmulu_vx_u16m2(c3, 1 << 6, vlOut), c4, vlOut); \ vuint16m2_t c12 = __riscv_vwaddu_wv_u16m2( \ __riscv_vwmulu_vx_u16m2(c1, 1 << 6, vlOut), c2, vlOut); \ vuint32m4_t c1234 = __riscv_vwaddu_wv_u32m4( \ __riscv_vwmulu_vx_u32m4(c12, 1 << 12, vlOut), c34, vlOut); \ /* derive required right-shift amount from `shift` to reduce \ * c1234 to the required number of bytes */ \ c1234 = __riscv_vsrl_vv_u32m4( \ c1234, \ __riscv_vzext_vf4_u32m4( \ __riscv_vmul_vx_u8m1( \ __riscv_vrsub_vx_u8m1(__riscv_vssubu_vx_u8m1(shift, 2, vlOut), \ 3, vlOut), \ 6, vlOut), \ vlOut), \ vlOut); \ /* store result in desired format */ \ if (is16) \ vlDst = rvv_utf32_store_utf16_m4((uint16_t *)dst, c1234, vlOut, \ m4even); \ else \ vlDst = vlOut, __riscv_vse32_v_u32m4((uint32_t *)dst, c1234, vlOut); /* Unrolling this manually reduces register pressure and allows * us to terminate early. */ { size_t vlOutm2 = vlOut, vlDst; vlOut = __riscv_vsetvl_e8m1(vlOut < vl8m1 ? vlOut : vl8m1); SIMDUTF_RVV_UTF8_TO_COMMON_M1(0) if (vlOutm2 == vlOut) { vlOut = vlDst; continue; } dst += vlDst; vlOut = vlOutm2 - vlOut; } { size_t vlDst; SIMDUTF_RVV_UTF8_TO_COMMON_M1(1) vlOut = vlDst; } #undef SIMDUTF_RVV_UTF8_TO_COMMON_M1 } /* validate the last character and reparse it + tail */ if (len > tail) { if ((uint8_t(src[0]) >> 6) == 0b10) --dst; while ((uint8_t(src[0]) >> 6) == 0b10 && tail < len) --src, ++tail; if (is16) { /* go back one more, when on high surrogate */ if (simdutf_byteflip((uint16_t)dst[-1]) >= 0xD800 && simdutf_byteflip((uint16_t)dst[-1]) <= 0xDBFF) --dst; } } size_t ret = scalar(src, tail, dst); if (ret == 0) return 0; return (size_t)(dst - beg) + ret; } #endif // SIMDUTF_FEATURE_UTF8 && (SIMDUTF_FEATURE_UTF16 || // SIMDUTF_FEATURE_UTF32) #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf8_to_latin1( const char *src, size_t len, char *dst) const noexcept { const char *beg = dst; uint8_t last = 0; for (size_t vl, vlOut; len > 0; len -= vl, src += vl, dst += vlOut, last = src[-1]) { vl = __riscv_vsetvl_e8m2(len); vuint8m2_t v1 = __riscv_vle8_v_u8m2((uint8_t *)src, vl); // check which bytes are ASCII vbool4_t ascii = __riscv_vmsltu_vx_u8m2_b4(v1, 0b10000000, vl); // count ASCII bytes vlOut = __riscv_vcpop_m_b4(ascii, vl); // The original code would only enter the next block after this check: // vbool4_t m = __riscv_vmsltu_vx_u8m2_b4(v1, 0b11000000, vl); // vlOut = __riscv_vcpop_m_b4(m, vl); // if (vlOut != vl || last > 0b01111111) {...}q // So that everything is ASCII or continuation bytes, we just proceeded // without any processing, going straight to __riscv_vse8_v_u8m2. // But you need the __riscv_vslide1up_vx_u8m2 whenever there is a non-ASCII // byte. if (vlOut != vl) { // If not pure ASCII // Non-ASCII characters // We now want to mark the ascii and continuation bytes vbool4_t m = __riscv_vmsltu_vx_u8m2_b4(v1, 0b11000000, vl); // We count them, that's our new vlOut (output vector length) vlOut = __riscv_vcpop_m_b4(m, vl); vuint8m2_t v0 = __riscv_vslide1up_vx_u8m2(v1, last, vl); vbool4_t leading0 = __riscv_vmsgtu_vx_u8m2_b4(v0, 0b10111111, vl); vbool4_t trailing1 = __riscv_vmslt_vx_i8m2_b4( __riscv_vreinterpret_v_u8m2_i8m2(v1), (uint8_t)0b11000000, vl); // -62 i 0b11000010, so we check whether any of v0 is too big vbool4_t tobig = __riscv_vmand_mm_b4( leading0, __riscv_vmsgtu_vx_u8m2_b4(__riscv_vxor_vx_u8m2(v0, (uint8_t)-62, vl), 1, vl), vl); if (__riscv_vfirst_m_b4( __riscv_vmor_mm_b4( tobig, __riscv_vmxor_mm_b4(leading0, trailing1, vl), vl), vl) >= 0) return 0; v1 = __riscv_vor_vx_u8m2_mu(__riscv_vmseq_vx_u8m2_b4(v0, 0b11000011, vl), v1, v1, 0b01000000, vl); v1 = __riscv_vcompress_vm_u8m2(v1, m, vl); } else if (last >= 0b11000000) { // If last byte is a leading byte and we // got only ASCII, error! return 0; } __riscv_vse8_v_u8m2((uint8_t *)dst, v1, vlOut); } if (last > 0b10111111) return 0; return dst - beg; } simdutf_warn_unused result implementation::convert_utf8_to_latin1_with_errors( const char *src, size_t len, char *dst) const noexcept { size_t res = convert_utf8_to_latin1(src, len, dst); if (res) return result(error_code::SUCCESS, res); return scalar::utf8_to_latin1::convert_with_errors(src, len, dst); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_latin1( const char *src, size_t len, char *dst) const noexcept { const char *beg = dst; uint8_t last = 0; for (size_t vl, vlOut; len > 0; len -= vl, src += vl, dst += vlOut, last = src[-1]) { vl = __riscv_vsetvl_e8m2(len); vuint8m2_t v1 = __riscv_vle8_v_u8m2((uint8_t *)src, vl); vbool4_t ascii = __riscv_vmsltu_vx_u8m2_b4(v1, 0b10000000, vl); vlOut = __riscv_vcpop_m_b4(ascii, vl); if (vlOut != vl) { // If not pure ASCII vbool4_t m = __riscv_vmsltu_vx_u8m2_b4(v1, 0b11000000, vl); vlOut = __riscv_vcpop_m_b4(m, vl); vuint8m2_t v0 = __riscv_vslide1up_vx_u8m2(v1, last, vl); v1 = __riscv_vor_vx_u8m2_mu(__riscv_vmseq_vx_u8m2_b4(v0, 0b11000011, vl), v1, v1, 0b01000000, vl); v1 = __riscv_vcompress_vm_u8m2(v1, m, vl); } __riscv_vse8_v_u8m2((uint8_t *)dst, v1, vlOut); } return dst - beg; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf8_to_utf16le( const char *src, size_t len, char16_t *dst) const noexcept { return rvv_utf8_to_common(src, len, (uint16_t *)dst); } simdutf_warn_unused size_t implementation::convert_utf8_to_utf16be( const char *src, size_t len, char16_t *dst) const noexcept { if (supports_zvbb()) return rvv_utf8_to_common( src, len, (uint16_t *)dst); else return rvv_utf8_to_common(src, len, (uint16_t *)dst); } simdutf_warn_unused result implementation::convert_utf8_to_utf16le_with_errors( const char *src, size_t len, char16_t *dst) const noexcept { size_t res = convert_utf8_to_utf16le(src, len, dst); if (res) return result(error_code::SUCCESS, res); return scalar::utf8_to_utf16::convert_with_errors( src, len, dst); } simdutf_warn_unused result implementation::convert_utf8_to_utf16be_with_errors( const char *src, size_t len, char16_t *dst) const noexcept { size_t res = convert_utf8_to_utf16be(src, len, dst); if (res) return result(error_code::SUCCESS, res); return scalar::utf8_to_utf16::convert_with_errors(src, len, dst); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16le( const char *src, size_t len, char16_t *dst) const noexcept { return rvv_utf8_to_common( src, len, (uint16_t *)dst); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16be( const char *src, size_t len, char16_t *dst) const noexcept { if (supports_zvbb()) return rvv_utf8_to_common( src, len, (uint16_t *)dst); else return rvv_utf8_to_common( src, len, (uint16_t *)dst); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf8_to_utf32( const char *src, size_t len, char32_t *dst) const noexcept { return rvv_utf8_to_common(src, len, (uint32_t *)dst); } simdutf_warn_unused result implementation::convert_utf8_to_utf32_with_errors( const char *src, size_t len, char32_t *dst) const noexcept { size_t res = convert_utf8_to_utf32(src, len, dst); if (res) return result(error_code::SUCCESS, res); return scalar::utf8_to_utf32::convert_with_errors(src, len, dst); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf32( const char *src, size_t len, char32_t *dst) const noexcept { return rvv_utf8_to_common( src, len, (uint32_t *)dst); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* end file src/rvv/rvv_utf8_to.inl.cpp */ #if SIMDUTF_FEATURE_BASE64 /* begin file src/rvv/rvv_find.cpp */ const char *implementation::find(const char *start, const char *end, char character) const noexcept { const char *src = start; for (size_t len = end - start, vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e8m8(len); vuint8m8_t v = __riscv_vle8_v_u8m8((uint8_t *)src, vl); long idx = __riscv_vfirst_m_b1(__riscv_vmseq_vx_u8m8_b1(v, character, vl), vl); if (idx >= 0) return src + idx; } return end; } const char16_t *implementation::find(const char16_t *start, const char16_t *end, char16_t character) const noexcept { const char16_t *src = start; for (size_t len = end - start, vl; len > 0; len -= vl, src += vl) { vl = __riscv_vsetvl_e16m8(len); vuint16m8_t v = __riscv_vle16_v_u16m8((uint16_t *)src, vl); long idx = __riscv_vfirst_m_b2(__riscv_vmseq_vx_u16m8_b2(v, character, vl), vl); if (idx >= 0) return src + idx; } return end; } /* end file src/rvv/rvv_find.cpp */ #endif // SIMDUTF_FEATURE_BASE64 #if SIMDUTF_FEATURE_UTF16 /* begin file src/rvv/rvv_utf16fix.cpp */ template simdutf_really_inline void utf16fix_block_rvv(char16_t *out, const char16_t *in, size_t vl) { const char16_t replacement = scalar::utf16::replacement(); auto swap_if_needed = [](uint16_t c) -> uint16_t { return !simdutf::match_system(big_endian) ? scalar::u16_swap_bytes(c) : c; }; vuint16m8_t block = __riscv_vle16_v_u16m8((const uint16_t *)in, vl); vuint16m8_t lookback = __riscv_vslide1up_vx_u16m8(block, in[-1], vl); vuint16m8_t lb_masked = __riscv_vand_vx_u16m8(lookback, swap_if_needed(0xfc00U), vl); vuint16m8_t block_masked = __riscv_vand_vx_u16m8(block, swap_if_needed(0xfc00U), vl); vbool2_t lb_is_high = __riscv_vmseq_vx_u16m8_b2(lb_masked, swap_if_needed(0xd800U), vl); vbool2_t block_is_low = __riscv_vmseq_vx_u16m8_b2(block_masked, swap_if_needed(0xdc00U), vl); vbool2_t illseq = __riscv_vmxor_mm_b2(lb_is_high, block_is_low, vl); if (__riscv_vfirst_m_b2(illseq, vl) >= 0) { vbool2_t lb_illseq = __riscv_vmandn_mm_b2(lb_is_high, block_is_low, vl); vbool2_t lb_illseq_right_shifted; if (vlmax) { /* right shift mask register directly via reinterpret at vlmax */ size_t vlm = __riscv_vsetvlmax_e8mf2(); vuint8mf2_t vlb_illseq = __riscv_vlmul_trunc_u8mf2(__riscv_vreinterpret_u8m1(lb_illseq)); lb_illseq_right_shifted = __riscv_vreinterpret_b2(__riscv_vlmul_ext_u8m1(__riscv_vmacc_vx_u8mf2( __riscv_vsrl_vx_u8mf2(vlb_illseq, 1, vlm), 1 << 7, __riscv_vslide1down_vx_u8mf2(vlb_illseq, 0, vlm), vlm))); } else { lb_illseq_right_shifted = __riscv_vmandn_mm_b2( __riscv_vmseq_vx_u16m8_b2( __riscv_vslide1down_vx_u16m8(lb_masked, 0, vl), swap_if_needed(0xd800U), vl), __riscv_vmseq_vx_u16m8_b2( __riscv_vslide1down_vx_u16m8(block_masked, 0, vl), swap_if_needed(0xdc00U), vl), vl); } char16_t last = out[-1]; /* allow compiler to generate branchless code */ out[-1] = __riscv_vfirst_m_b2(lb_illseq, vl) == 0 ? replacement : last; vbool2_t block_illseq = __riscv_vmor_mm_b2(__riscv_vmandn_mm_b2(block_is_low, lb_is_high, vl), lb_illseq_right_shifted, vl); block = __riscv_vmerge_vxm_u16m8(block, replacement, block_illseq, vl); __riscv_vse16_v_u16m8((uint16_t *)out, block, vl); } else if (!in_place) { __riscv_vse16_v_u16m8((uint16_t *)out, block, vl); } } template void rvv_to_well_formed_utf16(const char16_t *in, size_t n, char16_t *out) { const char16_t replacement = scalar::utf16::replacement(); const size_t VL = __riscv_vsetvlmax_e16m8(); if (n == 0) return; out[0] = scalar::utf16::is_low_surrogate(in[0]) ? replacement : in[0]; n -= 1; in += 1; out += 1; /* duplicate code to have the compiler specialise utf16fix_block() */ if (in == out) { for (; n > VL; n -= VL, in += VL, out += VL) { utf16fix_block_rvv(out, in, VL); } utf16fix_block_rvv(out, in, n); } else { for (; n > VL; n -= VL, in += VL, out += VL) { utf16fix_block_rvv(out, in, VL); } utf16fix_block_rvv(out, in, n); } out[n - 1] = scalar::utf16::is_high_surrogate(out[n - 1]) ? replacement : out[n - 1]; } void implementation::to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept { return rvv_to_well_formed_utf16(input, len, output); } void implementation::to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept { return rvv_to_well_formed_utf16(input, len, output); } template simdutf_really_inline static void rvv_change_endianness_utf16(const char16_t *src, size_t len, char16_t *dst) { for (size_t vl; len > 0; len -= vl, src += vl, dst += vl) { vl = __riscv_vsetvl_e16m8(len); vuint16m8_t v = __riscv_vle16_v_u16m8((uint16_t *)src, vl); __riscv_vse16_v_u16m8((uint16_t *)dst, simdutf_byteflip(v, vl), vl); } } void implementation::change_endianness_utf16(const char16_t *src, size_t len, char16_t *dst) const noexcept { if (supports_zvbb()) return rvv_change_endianness_utf16(src, len, dst); else return rvv_change_endianness_utf16(src, len, dst); } /* end file src/rvv/rvv_utf16fix.cpp */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int implementation::detect_encodings(const char *input, size_t length) const noexcept { // If there is a BOM, then we trust it. auto bom_encoding = simdutf::BOM::check_bom(input, length); if (bom_encoding != encoding_type::unspecified) return bom_encoding; // todo: reimplement as a one-pass algorithm. int out = 0; if (validate_utf8(input, length)) out |= encoding_type::UTF8; if (length % 2 == 0) { if (validate_utf16le(reinterpret_cast(input), length / 2)) out |= encoding_type::UTF16_LE; } if (length % 4 == 0) { if (validate_utf32(reinterpret_cast(input), length / 4)) out |= encoding_type::UTF32_LE; } return out; } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result implementation::base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { return simdutf::scalar::base64::base64_to_binary_details_impl( input, length, output, options, last_chunk_options); } simdutf_warn_unused result implementation::base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { return simdutf::scalar::base64::base64_to_binary_details_impl( input, length, output, options, last_chunk_options); } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { return simdutf::scalar::base64::base64_to_binary_details_impl( input, length, output, options, last_chunk_options); } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { return simdutf::scalar::base64::base64_to_binary_details_impl( input, length, output, options, last_chunk_options); } size_t implementation::binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept { return scalar::base64::tail_encode_base64(output, input, length, options); } size_t implementation::binary_to_base64_with_lines( const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept { return scalar::base64::tail_encode_base64_impl(output, input, length, options, line_length); } #endif // SIMDUTF_FEATURE_BASE64 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused result implementation::utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16_with_replacement< endianness::LITTLE>(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16_with_replacement< endianness::BIG>(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 } // namespace rvv } // namespace simdutf /* begin file src/simdutf/rvv/end.h */ #if SIMDUTF_CAN_ALWAYS_RUN_RVV // nothing needed. #else SIMDUTF_UNTARGET_REGION #endif /* end file src/simdutf/rvv/end.h */ /* end file src/rvv/implementation.cpp */ #endif #if SIMDUTF_IMPLEMENTATION_WESTMERE /* begin file src/westmere/implementation.cpp */ /* begin file src/simdutf/westmere/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "westmere" // #define SIMDUTF_IMPLEMENTATION westmere #define SIMDUTF_SIMD_HAS_BYTEMASK 1 #if SIMDUTF_CAN_ALWAYS_RUN_WESTMERE // nothing needed. #else SIMDUTF_TARGET_WESTMERE #endif /* end file src/simdutf/westmere/begin.h */ namespace simdutf { namespace westmere { namespace { #ifndef SIMDUTF_WESTMERE_H #error "westmere.h must be included" #endif using namespace simd; #if SIMDUTF_FEATURE_ASCII || SIMDUTF_FEATURE_DETECT_ENCODING || \ SIMDUTF_FEATURE_UTF8 simdutf_really_inline bool is_ascii(const simd8x64 &input) { return input.reduce_or().is_ascii(); } #endif // SIMDUTF_FEATURE_ASCII || SIMDUTF_FEATURE_DETECT_ENCODING || // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_really_inline simd8 must_be_2_3_continuation(const simd8 prev2, const simd8 prev3) { simd8 is_third_byte = prev2.saturating_sub(0xe0u - 0x80); // Only 111_____ will be >= 0x80 simd8 is_fourth_byte = prev3.saturating_sub(0xf0u - 0x80); // Only 1111____ will be >= 0x80 return simd8(is_third_byte | is_fourth_byte); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 /* begin file src/westmere/internal/loader.cpp */ namespace internal { namespace westmere { /* begin file src/westmere/internal/write_v_u16_11bits_to_utf8.cpp */ /* * reads a vector of uint16 values * bits after 11th are ignored * first 11 bits are encoded into utf8 * !important! utf8_output must have at least 16 writable bytes */ inline void write_v_u16_11bits_to_utf8(const __m128i v_u16, char *&utf8_output, const __m128i one_byte_bytemask, const uint16_t one_byte_bitmask) { // 0b1100_0000_1000_0000 const __m128i v_c080 = _mm_set1_epi16((int16_t)0xc080); // 0b0001_1111_0000_0000 const __m128i v_1f00 = _mm_set1_epi16((int16_t)0x1f00); // 0b0000_0000_0011_1111 const __m128i v_003f = _mm_set1_epi16((int16_t)0x003f); // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 // t0 = [000a|aaaa|bbbb|bb00] const __m128i t0 = _mm_slli_epi16(v_u16, 2); // t1 = [000a|aaaa|0000|0000] const __m128i t1 = _mm_and_si128(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const __m128i t2 = _mm_and_si128(v_u16, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const __m128i t3 = _mm_or_si128(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m128i t4 = _mm_or_si128(t3, v_c080); // 2. merge ASCII and 2-byte codewords const __m128i utf8_unpacked = _mm_blendv_epi8(t4, v_u16, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup // one_byte_bitmask = hhggffeeddccbbaa -- the bits are doubled (h - MSB, a // - LSB) const uint16_t m0 = one_byte_bitmask & 0x5555; // m0 = 0h0g0f0e0d0c0b0a const uint16_t m1 = static_cast(m0 >> 7); // m1 = 00000000h0g0f0e0 const uint8_t m2 = static_cast((m0 | m1) & 0xff); // m2 = hdgcfbea // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[m2][0]; const __m128i shuffle = _mm_loadu_si128((__m128i *)(row + 1)); const __m128i utf8_packed = _mm_shuffle_epi8(utf8_unpacked, shuffle); // 5. store bytes _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 6. adjust pointers utf8_output += row[0]; } inline void write_v_u16_11bits_to_utf8(const __m128i v_u16, char *&utf8_output, const __m128i v_0000, const __m128i v_ff80) { // no bits set above 7th bit const __m128i one_byte_bytemask = _mm_cmpeq_epi16(_mm_and_si128(v_u16, v_ff80), v_0000); const uint16_t one_byte_bitmask = static_cast(_mm_movemask_epi8(one_byte_bytemask)); write_v_u16_11bits_to_utf8(v_u16, utf8_output, one_byte_bytemask, one_byte_bitmask); } /* end file src/westmere/internal/write_v_u16_11bits_to_utf8.cpp */ } // namespace westmere } // namespace internal /* end file src/westmere/internal/loader.cpp */ #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 /* begin file src/westmere/sse_utf16fix.cpp */ /* * Process one block of 8 characters. If in_place is false, * copy the block from in to out. If there is a sequencing * error in the block, overwrite the illsequenced characters * with the replacement character. This function reads one * character before the beginning of the buffer as a lookback. * If that character is illsequenced, it too is overwritten. */ template simdutf_really_inline void utf16fix_block_sse(char16_t *out, const char16_t *in) { const char16_t replacement = scalar::utf16::replacement(); auto swap_if_needed = [](uint16_t c) -> uint16_t { return !simdutf::match_system(big_endian) ? scalar::u16_swap_bytes(c) : c; }; __m128i lookback, block, lb_masked, block_masked, lb_is_high, block_is_low; __m128i illseq, lb_illseq, block_illseq; lookback = _mm_loadu_si128((const __m128i *)(in - 1)); block = _mm_loadu_si128((const __m128i *)in); lb_masked = _mm_and_si128(lookback, _mm_set1_epi16(swap_if_needed(0xfc00U))); block_masked = _mm_and_si128(block, _mm_set1_epi16(swap_if_needed(0xfc00U))); lb_is_high = _mm_cmpeq_epi16(lb_masked, _mm_set1_epi16(swap_if_needed(0xd800U))); block_is_low = _mm_cmpeq_epi16(block_masked, _mm_set1_epi16(swap_if_needed(0xdc00U))); illseq = _mm_xor_si128(lb_is_high, block_is_low); if (_mm_movemask_epi8(illseq) != 0) { int lb; /* compute the cause of the illegal sequencing */ lb_illseq = _mm_andnot_si128(block_is_low, lb_is_high); block_illseq = _mm_or_si128(_mm_andnot_si128(lb_is_high, block_is_low), _mm_bsrli_si128(lb_illseq, 2)); /* fix illegal sequencing in the lookback */ lb = _mm_cvtsi128_si32(lb_illseq); lb = (lb & replacement) | (~lb & out[-1]); out[-1] = char16_t(lb); /* fix illegal sequencing in the main block */ block = _mm_or_si128(_mm_andnot_si128(block_illseq, block), _mm_and_si128(block_illseq, _mm_set1_epi16(replacement))); _mm_storeu_si128((__m128i *)out, block); } else if (!in_place) { _mm_storeu_si128((__m128i *)out, block); } } template void utf16fix_sse(const char16_t *in, size_t n, char16_t *out) { const char16_t replacement = scalar::utf16::replacement(); size_t i; if (n < 9) { scalar::utf16::to_well_formed_utf16(in, n, out); return; } out[0] = scalar::utf16::is_low_surrogate(in[0]) ? replacement : in[0]; /* duplicate code to have the compiler specialise utf16fix_block() */ if (in == out) { for (i = 1; i + 8 < n; i += 8) { utf16fix_block_sse(out + i, in + i); } utf16fix_block_sse(out + n - 8, in + n - 8); } else { for (i = 1; i + 8 < n; i += 8) { utf16fix_block_sse(out + i, in + i); } utf16fix_block_sse(out + n - 8, in + n - 8); } out[n - 1] = scalar::utf16::is_high_surrogate(out[n - 1]) ? replacement : out[n - 1]; } /* end file src/westmere/sse_utf16fix.cpp */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/westmere/sse_validate_utf16.cpp */ template simd8 utf16_gather_high_bytes(const simd16 in0, const simd16 in1) { if (big_endian) { // we want lower bytes const auto mask = simd16(0x00ff); const auto t0 = in0 & mask; const auto t1 = in1 & mask; return simd16::pack(t0, t1); } else { const auto t0 = in0.shr<8>(); const auto t1 = in1.shr<8>(); return simd16::pack(t0, t1); } } /* end file src/westmere/sse_validate_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/westmere/sse_convert_latin1_to_utf8.cpp */ std::pair sse_convert_latin1_to_utf8(const char *latin_input, const size_t latin_input_length, char *utf8_output) { const char *end = latin_input + latin_input_length; const __m128i v_0000 = _mm_setzero_si128(); // 0b1000_0000 const __m128i v_80 = _mm_set1_epi8((uint8_t)0x80); // 0b1111_1111_1000_0000 const __m128i v_ff80 = _mm_set1_epi16((uint16_t)0xff80); const __m128i latin_1_half_into_u16_byte_mask = _mm_setr_epi8(0, '\x80', 1, '\x80', 2, '\x80', 3, '\x80', 4, '\x80', 5, '\x80', 6, '\x80', 7, '\x80'); const __m128i latin_2_half_into_u16_byte_mask = _mm_setr_epi8(8, '\x80', 9, '\x80', 10, '\x80', 11, '\x80', 12, '\x80', 13, '\x80', 14, '\x80', 15, '\x80'); // each latin1 takes 1-2 utf8 bytes // slow path writes useful 8-15 bytes twice (eagerly writes 16 bytes and then // adjust the pointer) so the last write can exceed the utf8_output size by // 8-1 bytes by reserving 8 extra input bytes, we expect the output to have // 8-16 bytes free while (end - latin_input >= 16 + 8) { // Load 16 Latin1 characters (16 bytes) into a 128-bit register __m128i v_latin = _mm_loadu_si128((__m128i *)latin_input); if (_mm_testz_si128(v_latin, v_80)) { // ASCII fast path!!!! _mm_storeu_si128((__m128i *)utf8_output, v_latin); latin_input += 16; utf8_output += 16; continue; } // assuming a/b are bytes and A/B are uint16 of the same value // aaaa_aaaa_bbbb_bbbb -> AAAA_AAAA __m128i v_u16_latin_1_half = _mm_shuffle_epi8(v_latin, latin_1_half_into_u16_byte_mask); // aaaa_aaaa_bbbb_bbbb -> BBBB_BBBB __m128i v_u16_latin_2_half = _mm_shuffle_epi8(v_latin, latin_2_half_into_u16_byte_mask); internal::westmere::write_v_u16_11bits_to_utf8(v_u16_latin_1_half, utf8_output, v_0000, v_ff80); internal::westmere::write_v_u16_11bits_to_utf8(v_u16_latin_2_half, utf8_output, v_0000, v_ff80); latin_input += 16; } if (end - latin_input >= 16) { // Load 16 Latin1 characters (16 bytes) into a 128-bit register __m128i v_latin = _mm_loadu_si128((__m128i *)latin_input); if (_mm_testz_si128(v_latin, v_80)) { // ASCII fast path!!!! _mm_storeu_si128((__m128i *)utf8_output, v_latin); latin_input += 16; utf8_output += 16; } else { // assuming a/b are bytes and A/B are uint16 of the same value // aaaa_aaaa_bbbb_bbbb -> AAAA_AAAA __m128i v_u16_latin_1_half = _mm_shuffle_epi8(v_latin, latin_1_half_into_u16_byte_mask); internal::westmere::write_v_u16_11bits_to_utf8( v_u16_latin_1_half, utf8_output, v_0000, v_ff80); latin_input += 8; } } return std::make_pair(latin_input, utf8_output); } /* end file src/westmere/sse_convert_latin1_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/westmere/sse_convert_latin1_to_utf16.cpp */ template std::pair sse_convert_latin1_to_utf16(const char *latin1_input, size_t len, char16_t *utf16_output) { size_t rounded_len = len & ~0xF; // Round down to nearest multiple of 16 for (size_t i = 0; i < rounded_len; i += 16) { // Load 16 Latin1 characters into a 128-bit register __m128i in = _mm_loadu_si128(reinterpret_cast(&latin1_input[i])); __m128i out1 = big_endian ? _mm_unpacklo_epi8(_mm_setzero_si128(), in) : _mm_unpacklo_epi8(in, _mm_setzero_si128()); __m128i out2 = big_endian ? _mm_unpackhi_epi8(_mm_setzero_si128(), in) : _mm_unpackhi_epi8(in, _mm_setzero_si128()); // Zero extend each Latin1 character to 16-bit integers and store the // results back to memory _mm_storeu_si128(reinterpret_cast<__m128i *>(&utf16_output[i]), out1); _mm_storeu_si128(reinterpret_cast<__m128i *>(&utf16_output[i + 8]), out2); } // return pointers pointing to where we left off return std::make_pair(latin1_input + rounded_len, utf16_output + rounded_len); } /* end file src/westmere/sse_convert_latin1_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/westmere/sse_convert_latin1_to_utf32.cpp */ std::pair sse_convert_latin1_to_utf32(const char *buf, size_t len, char32_t *utf32_output) { const char *end = buf + len; while (end - buf >= 16) { // Load 16 Latin1 characters (16 bytes) into a 128-bit register __m128i in = _mm_loadu_si128((__m128i *)buf); // Shift input to process next 4 bytes __m128i in_shifted1 = _mm_srli_si128(in, 4); __m128i in_shifted2 = _mm_srli_si128(in, 8); __m128i in_shifted3 = _mm_srli_si128(in, 12); // expand 8-bit to 32-bit unit __m128i out1 = _mm_cvtepu8_epi32(in); __m128i out2 = _mm_cvtepu8_epi32(in_shifted1); __m128i out3 = _mm_cvtepu8_epi32(in_shifted2); __m128i out4 = _mm_cvtepu8_epi32(in_shifted3); _mm_storeu_si128((__m128i *)utf32_output, out1); _mm_storeu_si128((__m128i *)(utf32_output + 4), out2); _mm_storeu_si128((__m128i *)(utf32_output + 8), out3); _mm_storeu_si128((__m128i *)(utf32_output + 12), out4); utf32_output += 16; buf += 16; } return std::make_pair(buf, utf32_output); } /* end file src/westmere/sse_convert_latin1_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/westmere/sse_convert_utf8_to_utf16.cpp */ // depends on "tables/utf8_to_utf16_tables.h" // Convert up to 12 bytes from utf8 to utf16 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). template size_t convert_masked_utf8_to_utf16(const char *input, uint64_t utf8_end_of_code_point_mask, char16_t *&utf16_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // // We first try a few fast paths. const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); const __m128i in = _mm_loadu_si128((__m128i *)input); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; if (utf8_end_of_code_point_mask == 0xfff) { // We process the data in chunks of 12 bytes. // Note: using 16 bytes is unsafe, see issue_ossfuzz_71218 __m128i ascii_first = _mm_cvtepu8_epi16(in); __m128i ascii_second = _mm_cvtepu8_epi16(_mm_srli_si128(in, 8)); if (big_endian) { ascii_first = _mm_shuffle_epi8(ascii_first, swap); ascii_second = _mm_shuffle_epi8(ascii_second, swap); } _mm_storeu_si128(reinterpret_cast<__m128i *>(utf16_output), ascii_first); _mm_storeu_si128(reinterpret_cast<__m128i *>(utf16_output + 8), ascii_second); utf16_output += 12; // We wrote 12 16-bit characters. return 12; // We consumed 12 bytes. } if (((utf8_end_of_code_point_mask & 0xFFFF) == 0xaaaa)) { // We want to take 8 2-byte UTF-8 code units and turn them into 8 2-byte // UTF-16 code units. There is probably a more efficient sequence, but the // following might do. const __m128i sh = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi16(0x7f)); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi16(0x1f00)); __m128i composed = _mm_or_si128(ascii, _mm_srli_epi16(highbyte, 2)); if (big_endian) composed = _mm_shuffle_epi8(composed, swap); _mm_storeu_si128((__m128i *)utf16_output, composed); utf16_output += 8; // We wrote 16 bytes, 8 code points. return 16; } if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 2-byte // UTF-16 code units. There is probably a more efficient sequence, but the // following might do. const __m128i sh = _mm_setr_epi8(2, 1, 0, -1, 5, 4, 3, -1, 8, 7, 6, -1, 11, 10, 9, -1); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); // 7 or 6 bits const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); // 5 or 6 bits const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0x0f0000)); // 4 bits const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 4); const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), highbyte_shifted); __m128i composed_repacked = _mm_packus_epi32(composed, composed); if (big_endian) composed_repacked = _mm_shuffle_epi8(composed_repacked, swap); _mm_storeu_si128((__m128i *)utf16_output, composed_repacked); utf16_output += 4; return 12; } /// We do not have a fast path available, so we fallback. const uint8_t idx = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][1]; if (idx < 64) { // SIX (6) input code-code units // this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. On // processors where pdep/pext is fast, we might be able to use a small // lookup table. const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi16(0x7f)); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi16(0x1f00)); __m128i composed = _mm_or_si128(ascii, _mm_srli_epi16(highbyte, 2)); if (big_endian) composed = _mm_shuffle_epi8(composed, swap); _mm_storeu_si128((__m128i *)utf16_output, composed); utf16_output += 6; // We wrote 12 bytes, 6 code points. } else if (idx < 145) { // FOUR (4) input code-code units const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); // 7 or 6 bits const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); // 5 or 6 bits const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0x0f0000)); // 4 bits const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 4); const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), highbyte_shifted); __m128i composed_repacked = _mm_packus_epi32(composed, composed); if (big_endian) composed_repacked = _mm_shuffle_epi8(composed_repacked, swap); _mm_storeu_si128((__m128i *)utf16_output, composed_repacked); utf16_output += 4; } else if (idx < 209) { // TWO (2) input code-code units ////////////// // There might be garbage inputs where a leading byte mascarades as a // four-byte leading byte (by being followed by 3 continuation byte), but is // not greater than 0xf0. This could trigger a buffer overflow if we only // counted leading bytes of the form 0xf0 as generating surrogate pairs, // without further UTF-8 validation. Thus we must be careful to ensure that // only leading bytes at least as large as 0xf0 generate surrogate pairs. We // do as at the cost of an extra mask. ///////////// const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); __m128i middlehighbyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f0000)); // correct for spurious high bit const __m128i correct = _mm_srli_epi32(_mm_and_si128(perm, _mm_set1_epi32(0x400000)), 1); middlehighbyte = _mm_xor_si128(correct, middlehighbyte); const __m128i middlehighbyte_shifted = _mm_srli_epi32(middlehighbyte, 4); // We deliberately carry the leading four bits in highbyte if they are // present, we remove them later when computing hightenbits. const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0xff000000)); const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 6); // When we need to generate a surrogate pair (leading byte > 0xF0), then // the corresponding 32-bit value in 'composed' will be greater than // > (0xff00000>>6) or > 0x3c00000. This can be used later to identify the // location of the surrogate pairs. const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), _mm_or_si128(highbyte_shifted, middlehighbyte_shifted)); const __m128i composedminus = _mm_sub_epi32(composed, _mm_set1_epi32(0x10000)); const __m128i lowtenbits = _mm_and_si128(composedminus, _mm_set1_epi32(0x3ff)); // Notice the 0x3ff mask: const __m128i hightenbits = _mm_and_si128(_mm_srli_epi32(composedminus, 10), _mm_set1_epi32(0x3ff)); const __m128i lowtenbitsadd = _mm_add_epi32(lowtenbits, _mm_set1_epi32(0xDC00)); const __m128i hightenbitsadd = _mm_add_epi32(hightenbits, _mm_set1_epi32(0xD800)); const __m128i lowtenbitsaddshifted = _mm_slli_epi32(lowtenbitsadd, 16); __m128i surrogates = _mm_or_si128(hightenbitsadd, lowtenbitsaddshifted); uint32_t basic_buffer[4]; uint32_t basic_buffer_swap[4]; if (big_endian) { _mm_storeu_si128((__m128i *)basic_buffer_swap, _mm_shuffle_epi8(composed, swap)); surrogates = _mm_shuffle_epi8(surrogates, swap); } _mm_storeu_si128((__m128i *)basic_buffer, composed); uint32_t surrogate_buffer[4]; _mm_storeu_si128((__m128i *)surrogate_buffer, surrogates); for (size_t i = 0; i < 3; i++) { if (basic_buffer[i] > 0x3c00000) { utf16_output[0] = uint16_t(surrogate_buffer[i] & 0xffff); utf16_output[1] = uint16_t(surrogate_buffer[i] >> 16); utf16_output += 2; } else { utf16_output[0] = big_endian ? uint16_t(basic_buffer_swap[i]) : uint16_t(basic_buffer[i]); utf16_output++; } } } else { // here we know that there is an error but we do not handle errors } return consumed; } /* end file src/westmere/sse_convert_utf8_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/westmere/sse_convert_utf8_to_utf32.cpp */ // depends on "tables/utf8_to_utf16_tables.h" // Convert up to 12 bytes from utf8 to utf32 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). size_t convert_masked_utf8_to_utf32(const char *input, uint64_t utf8_end_of_code_point_mask, char32_t *&utf32_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // // We first try a few fast paths. const __m128i in = _mm_loadu_si128((__m128i *)input); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; if (utf8_end_of_code_point_mask == 0xfff) { // We process the data in chunks of 12 bytes. _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output), _mm_cvtepu8_epi32(in)); _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output + 4), _mm_cvtepu8_epi32(_mm_srli_si128(in, 4))); _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output + 8), _mm_cvtepu8_epi32(_mm_srli_si128(in, 8))); _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output + 12), _mm_cvtepu8_epi32(_mm_srli_si128(in, 12))); utf32_output += 12; // We wrote 12 32-bit characters. return 12; // We consumed 12 bytes. } if (((utf8_end_of_code_point_mask & 0xffff) == 0xaaaa)) { // We want to take 8 2-byte UTF-8 code units and turn them into 8 4-byte // UTF-32 code units. There is probably a more efficient sequence, but the // following might do. const __m128i sh = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi16(0x7f)); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi16(0x1f00)); const __m128i composed = _mm_or_si128(ascii, _mm_srli_epi16(highbyte, 2)); _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output), _mm_cvtepu16_epi32(composed)); _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output + 4), _mm_cvtepu16_epi32(_mm_srli_si128(composed, 8))); utf32_output += 8; // We wrote 32 bytes, 8 code points. return 16; } if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 4-byte // UTF-32 code units. There is probably a more efficient sequence, but the // following might do. const __m128i sh = _mm_setr_epi8(2, 1, 0, -1, 5, 4, 3, -1, 8, 7, 6, -1, 11, 10, 9, -1); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); // 7 or 6 bits const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); // 5 or 6 bits const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0x0f0000)); // 4 bits const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 4); const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), highbyte_shifted); _mm_storeu_si128((__m128i *)utf32_output, composed); utf32_output += 4; return 12; } /// We do not have a fast path available, so we fallback. const uint8_t idx = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][1]; if (idx < 64) { // SIX (6) input code-code units // this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. On // processors where pdep/pext is fast, we might be able to use a small // lookup table. const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi16(0x7f)); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi16(0x1f00)); const __m128i composed = _mm_or_si128(ascii, _mm_srli_epi16(highbyte, 2)); _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output), _mm_cvtepu16_epi32(composed)); _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output + 4), _mm_cvtepu16_epi32(_mm_srli_si128(composed, 8))); utf32_output += 6; // We wrote 12 bytes, 6 code points. } else if (idx < 145) { // FOUR (4) input code-code units const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); // 7 or 6 bits const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); // 5 or 6 bits const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0x0f0000)); // 4 bits const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 4); const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), highbyte_shifted); _mm_storeu_si128((__m128i *)utf32_output, composed); utf32_output += 4; } else if (idx < 209) { // TWO (2) input code-code units const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi32(0x7f)); const __m128i middlebyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f00)); const __m128i middlebyte_shifted = _mm_srli_epi32(middlebyte, 2); __m128i middlehighbyte = _mm_and_si128(perm, _mm_set1_epi32(0x3f0000)); // correct for spurious high bit const __m128i correct = _mm_srli_epi32(_mm_and_si128(perm, _mm_set1_epi32(0x400000)), 1); middlehighbyte = _mm_xor_si128(correct, middlehighbyte); const __m128i middlehighbyte_shifted = _mm_srli_epi32(middlehighbyte, 4); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi32(0x07000000)); const __m128i highbyte_shifted = _mm_srli_epi32(highbyte, 6); const __m128i composed = _mm_or_si128(_mm_or_si128(ascii, middlebyte_shifted), _mm_or_si128(highbyte_shifted, middlehighbyte_shifted)); _mm_storeu_si128((__m128i *)utf32_output, composed); utf32_output += 3; } else { // here we know that there is an error but we do not handle errors } return consumed; } /* end file src/westmere/sse_convert_utf8_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/westmere/sse_convert_utf8_to_latin1.cpp */ // depends on "tables/utf8_to_utf16_tables.h" // Convert up to 12 bytes from utf8 to latin1 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). size_t convert_masked_utf8_to_latin1(const char *input, uint64_t utf8_end_of_code_point_mask, char *&latin1_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // const __m128i in = _mm_loadu_si128((__m128i *)input); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; // we are only processing 12 bytes in case it is not all ASCII if (utf8_end_of_code_point_mask == 0xfff) { // We process the data in chunks of 12 bytes. _mm_storeu_si128(reinterpret_cast<__m128i *>(latin1_output), in); latin1_output += 12; // We wrote 12 characters. return 12; // We consumed 12 bytes. } /// We do not have a fast path available, so we fallback. const uint8_t idx = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = tables::utf8_to_utf16::utf8bigindex[input_utf8_end_of_code_point_mask][1]; // this indicates an invalid input: if (idx >= 64) { return consumed; } // Here we should have (idx < 64), if not, there is a bug in the validation or // elsewhere. SIX (6) input code-code units this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. On // processors where pdep/pext is fast, we might be able to use a small lookup // table. const __m128i sh = _mm_loadu_si128((const __m128i *)tables::utf8_to_utf16::shufutf8[idx]); const __m128i perm = _mm_shuffle_epi8(in, sh); const __m128i ascii = _mm_and_si128(perm, _mm_set1_epi16(0x7f)); const __m128i highbyte = _mm_and_si128(perm, _mm_set1_epi16(0x1f00)); __m128i composed = _mm_or_si128(ascii, _mm_srli_epi16(highbyte, 2)); const __m128i latin1_packed = _mm_packus_epi16(composed, composed); // writing 8 bytes even though we only care about the first 6 bytes. // performance note: it would be faster to use _mm_storeu_si128, we should // investigate. _mm_storel_epi64((__m128i *)latin1_output, latin1_packed); latin1_output += 6; // We wrote 6 bytes. return consumed; } /* end file src/westmere/sse_convert_utf8_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/westmere/sse_convert_utf16_to_latin1.cpp */ template std::pair sse_convert_utf16_to_latin1(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *end = buf + len; while (end - buf >= 8) { // Load 8 UTF-16 characters into 128-bit SSE register __m128i in = _mm_loadu_si128(reinterpret_cast(buf)); if (!match_system(big_endian)) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); in = _mm_shuffle_epi8(in, swap); } __m128i high_byte_mask = _mm_set1_epi16((int16_t)0xFF00); if (_mm_testz_si128(in, high_byte_mask)) { // Pack 16-bit characters into 8-bit and store in latin1_output __m128i latin1_packed = _mm_packus_epi16(in, in); _mm_storel_epi64(reinterpret_cast<__m128i *>(latin1_output), latin1_packed); // Adjust pointers for next iteration buf += 8; latin1_output += 8; } else { return std::make_pair(nullptr, reinterpret_cast(latin1_output)); } } // while return std::make_pair(buf, latin1_output); } template std::pair sse_convert_utf16_to_latin1_with_errors(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *start = buf; const char16_t *end = buf + len; while (end - buf >= 8) { __m128i in = _mm_loadu_si128(reinterpret_cast(buf)); if (!match_system(big_endian)) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); in = _mm_shuffle_epi8(in, swap); } __m128i high_byte_mask = _mm_set1_epi16((int16_t)0xFF00); if (_mm_testz_si128(in, high_byte_mask)) { __m128i latin1_packed = _mm_packus_epi16(in, in); _mm_storel_epi64(reinterpret_cast<__m128i *>(latin1_output), latin1_packed); buf += 8; latin1_output += 8; } else { // Fallback to scalar code for handling errors for (int k = 0; k < 8; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if (word <= 0xff) { *latin1_output++ = char(word); } else { return std::make_pair(result(error_code::TOO_LARGE, buf - start + k), latin1_output); } } buf += 8; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), latin1_output); } /* end file src/westmere/sse_convert_utf16_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/westmere/sse_convert_utf16_to_utf8.cpp */ /* The vectorized algorithm works on single SSE register i.e., it loads eight 16-bit code units. We consider three cases: 1. an input register contains no surrogates and each value is in range 0x0000 .. 0x07ff. 2. an input register contains no surrogates and values are is in range 0x0000 .. 0xffff. 3. an input register contains surrogates --- i.e. codepoints can have 16 or 32 bits. Ad 1. When values are less than 0x0800, it means that a 16-bit code unit can be converted into: 1) single UTF8 byte (when it is an ASCII char) or 2) two UTF8 bytes. For this case we do only some shuffle to obtain these 2-byte codes and finally compress the whole SSE register with a single shuffle. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. Ad 2. When values fit in 16-bit code units, but are above 0x07ff, then a single word may produce one, two or three UTF8 bytes. We prepare data for all these three cases in two registers. The first register contains lower two UTF8 bytes (used in all cases), while the second one contains just the third byte for the three-UTF8-bytes case. Finally these two registers are interleaved forming eight-element array of 32-bit values. The array spans two SSE registers. The bytes from the registers are compressed using two shuffles. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. To summarize: - We need two 256-entry tables that have 8704 bytes in total. */ /* Returns a pair: the first unprocessed byte from buf and utf8_output A scalar routing should carry on the conversion of the tail. */ template std::pair sse_convert_utf16_to_utf8(const char16_t *buf, size_t len, char *utf8_output) { const char16_t *end = buf + len; const __m128i v_0000 = _mm_setzero_si128(); const __m128i v_f800 = _mm_set1_epi16((int16_t)0xf800); const __m128i v_d800 = _mm_set1_epi16((int16_t)0xd800); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m128i in = _mm_loadu_si128((__m128i *)buf); if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); in = _mm_shuffle_epi8(in, swap); } // a single 16-bit UTF-16 word can yield 1, 2 or 3 UTF-8 bytes const __m128i v_ff80 = _mm_set1_epi16((int16_t)0xff80); if (_mm_testz_si128(in, v_ff80)) { // ASCII fast path!!!! __m128i nextin = _mm_loadu_si128((__m128i *)buf + 1); if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); nextin = _mm_shuffle_epi8(nextin, swap); } if (!_mm_testz_si128(nextin, v_ff80)) { // 1. pack the bytes // obviously suboptimal. const __m128i utf8_packed = _mm_packus_epi16(in, in); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 8; utf8_output += 8; in = nextin; } else { // 1. pack the bytes // obviously suboptimal. const __m128i utf8_packed = _mm_packus_epi16(in, nextin); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } } // no bits set above 7th bit const __m128i one_byte_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in, v_ff80), v_0000); const uint16_t one_byte_bitmask = static_cast(_mm_movemask_epi8(one_byte_bytemask)); // no bits set above 11th bit const __m128i one_or_two_bytes_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in, v_f800), v_0000); const uint16_t one_or_two_bytes_bitmask = static_cast(_mm_movemask_epi8(one_or_two_bytes_bytemask)); if (one_or_two_bytes_bitmask == 0xffff) { internal::westmere::write_v_u16_11bits_to_utf8( in, utf8_output, one_byte_bytemask, one_byte_bitmask); buf += 8; continue; } // 1. Check if there are any surrogate word in the input chunk. // We have also deal with situation when there is a surrogate word // at the end of a chunk. const __m128i surrogates_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in, v_f800), v_d800); // bitmask = 0x0000 if there are no surrogates // = 0xc000 if the last word is a surrogate const uint16_t surrogates_bitmask = static_cast(_mm_movemask_epi8(surrogates_bytemask)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (surrogates_bitmask == 0x0000) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes const __m128i dup_even = _mm_setr_epi16(0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) _mm_set1_epi16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const __m128i t0 = _mm_shuffle_epi8(in, dup_even); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const __m128i t1 = _mm_and_si128(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const __m128i t2 = _mm_or_si128(t1, simdutf_vec(0b1000000000000000)); // [aaaa|bbbb|bbcc|cccc] => [0000|aaaa|bbbb|bbcc] const __m128i s0 = _mm_srli_epi16(in, 4); // [0000|aaaa|bbbb|bbcc] => [0000|aaaa|bbbb|bb00] const __m128i s1 = _mm_and_si128(s0, simdutf_vec(0b0000111111111100)); // [0000|aaaa|bbbb|bb00] => [00bb|bbbb|0000|aaaa] const __m128i s2 = _mm_maddubs_epi16(s1, simdutf_vec(0x0140)); // [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const __m128i s3 = _mm_or_si128(s2, simdutf_vec(0b1100000011100000)); const __m128i m0 = _mm_andnot_si128(one_or_two_bytes_bytemask, simdutf_vec(0b0100000000000000)); const __m128i s4 = _mm_xor_si128(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const __m128i out0 = _mm_unpacklo_epi16(t2, s4); const __m128i out1 = _mm_unpackhi_epi16(t2, s4); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint16_t mask = (one_byte_bitmask & 0x5555) | (one_or_two_bytes_bitmask & 0xaaaa); if (mask == 0) { // We only have three-byte code units. Use fast path. const __m128i shuffle = _mm_setr_epi8(2, 3, 1, 6, 7, 5, 10, 11, 9, 14, 15, 13, -1, -1, -1, -1); const __m128i utf8_0 = _mm_shuffle_epi8(out0, shuffle); const __m128i utf8_1 = _mm_shuffle_epi8(out1, shuffle); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += 12; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += 12; buf += 8; continue; } const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const __m128i shuffle0 = _mm_loadu_si128((__m128i *)(row0 + 1)); const __m128i utf8_0 = _mm_shuffle_epi8(out0, shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const __m128i shuffle1 = _mm_loadu_si128((__m128i *)(row1 + 1)); const __m128i utf8_1 = _mm_shuffle_epi8(out1, shuffle1); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += row0[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += row1[0]; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = big_endian ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = big_endian ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, utf8_output); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(buf, utf8_output); } /* Returns a pair: a result struct and utf8_output. If there is an error, the count field of the result is the position of the error. Otherwise, it is the position of the first unprocessed byte in buf (even if finished). A scalar routing should carry on the conversion of the tail if needed. */ template std::pair sse_convert_utf16_to_utf8_with_errors(const char16_t *buf, size_t len, char *utf8_output) { const char16_t *start = buf; const char16_t *end = buf + len; const __m128i v_0000 = _mm_setzero_si128(); const __m128i v_f800 = _mm_set1_epi16((int16_t)0xf800); const __m128i v_d800 = _mm_set1_epi16((int16_t)0xd800); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m128i in = _mm_loadu_si128((__m128i *)buf); if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); in = _mm_shuffle_epi8(in, swap); } // a single 16-bit UTF-16 word can yield 1, 2 or 3 UTF-8 bytes const __m128i v_ff80 = _mm_set1_epi16((int16_t)0xff80); if (_mm_testz_si128(in, v_ff80)) { // ASCII fast path!!!! __m128i nextin = _mm_loadu_si128((__m128i *)buf + 1); if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); nextin = _mm_shuffle_epi8(nextin, swap); } if (!_mm_testz_si128(nextin, v_ff80)) { // 1. pack the bytes // obviously suboptimal. const __m128i utf8_packed = _mm_packus_epi16(in, in); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 8; utf8_output += 8; in = nextin; } else { // 1. pack the bytes // obviously suboptimal. const __m128i utf8_packed = _mm_packus_epi16(in, nextin); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } } // no bits set above 7th bit const __m128i one_byte_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in, v_ff80), v_0000); const uint16_t one_byte_bitmask = static_cast(_mm_movemask_epi8(one_byte_bytemask)); // no bits set above 11th bit const __m128i one_or_two_bytes_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in, v_f800), v_0000); const uint16_t one_or_two_bytes_bitmask = static_cast(_mm_movemask_epi8(one_or_two_bytes_bytemask)); if (one_or_two_bytes_bitmask == 0xffff) { internal::westmere::write_v_u16_11bits_to_utf8( in, utf8_output, one_byte_bytemask, one_byte_bitmask); buf += 8; continue; } // 1. Check if there are any surrogate word in the input chunk. // We have also deal with situation when there is a surrogate word // at the end of a chunk. const __m128i surrogates_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in, v_f800), v_d800); // bitmask = 0x0000 if there are no surrogates // = 0xc000 if the last word is a surrogate const uint16_t surrogates_bitmask = static_cast(_mm_movemask_epi8(surrogates_bytemask)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (surrogates_bitmask == 0x0000) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes const __m128i dup_even = _mm_setr_epi16(0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) _mm_set1_epi16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const __m128i t0 = _mm_shuffle_epi8(in, dup_even); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const __m128i t1 = _mm_and_si128(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const __m128i t2 = _mm_or_si128(t1, simdutf_vec(0b1000000000000000)); // [aaaa|bbbb|bbcc|cccc] => [0000|aaaa|bbbb|bbcc] const __m128i s0 = _mm_srli_epi16(in, 4); // [0000|aaaa|bbbb|bbcc] => [0000|aaaa|bbbb|bb00] const __m128i s1 = _mm_and_si128(s0, simdutf_vec(0b0000111111111100)); // [0000|aaaa|bbbb|bb00] => [00bb|bbbb|0000|aaaa] const __m128i s2 = _mm_maddubs_epi16(s1, simdutf_vec(0x0140)); // [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const __m128i s3 = _mm_or_si128(s2, simdutf_vec(0b1100000011100000)); const __m128i m0 = _mm_andnot_si128(one_or_two_bytes_bytemask, simdutf_vec(0b0100000000000000)); const __m128i s4 = _mm_xor_si128(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const __m128i out0 = _mm_unpacklo_epi16(t2, s4); const __m128i out1 = _mm_unpackhi_epi16(t2, s4); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint16_t mask = (one_byte_bitmask & 0x5555) | (one_or_two_bytes_bitmask & 0xaaaa); if (mask == 0) { // We only have three-byte code units. Use fast path. const __m128i shuffle = _mm_setr_epi8(2, 3, 1, 6, 7, 5, 10, 11, 9, 14, 15, 13, -1, -1, -1, -1); const __m128i utf8_0 = _mm_shuffle_epi8(out0, shuffle); const __m128i utf8_1 = _mm_shuffle_epi8(out1, shuffle); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += 12; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += 12; buf += 8; continue; } const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const __m128i shuffle0 = _mm_loadu_si128((__m128i *)(row0 + 1)); const __m128i utf8_0 = _mm_shuffle_epi8(out0, shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const __m128i shuffle1 = _mm_loadu_si128((__m128i *)(row1 + 1)); const __m128i utf8_1 = _mm_shuffle_epi8(out1, shuffle1); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += row0[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += row1[0]; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = big_endian ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = big_endian ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k - 1), utf8_output); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), utf8_output); } /* end file src/westmere/sse_convert_utf16_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/westmere/sse_convert_utf16_to_utf32.cpp */ /* The vectorized algorithm works on single SSE register i.e., it loads eight 16-bit code units. We consider three cases: 1. an input register contains no surrogates and each value is in range 0x0000 .. 0x07ff. 2. an input register contains no surrogates and values are is in range 0x0000 .. 0xffff. 3. an input register contains surrogates --- i.e. codepoints can have 16 or 32 bits. Ad 1. When values are less than 0x0800, it means that a 16-bit code unit can be converted into: 1) single UTF8 byte (when it's an ASCII char) or 2) two UTF8 bytes. For this case we do only some shuffle to obtain these 2-byte codes and finally compress the whole SSE register with a single shuffle. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. Ad 2. When values fit in 16-bit code units, but are above 0x07ff, then a single word may produce one, two or three UTF8 bytes. We prepare data for all these three cases in two registers. The first register contains lower two UTF8 bytes (used in all cases), while the second one contains just the third byte for the three-UTF8-bytes case. Finally these two registers are interleaved forming eight-element array of 32-bit values. The array spans two SSE registers. The bytes from the registers are compressed using two shuffles. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. To summarize: - We need two 256-entry tables that have 8704 bytes in total. */ /* Returns a pair: the first unprocessed byte from buf and utf8_output A scalar routine should carry on the conversion of the tail. */ template std::pair sse_convert_utf16_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_output) { const char16_t *end = buf + len; const __m128i v_f800 = _mm_set1_epi16((int16_t)0xf800); const __m128i v_d800 = _mm_set1_epi16((int16_t)0xd800); while (end - buf >= 8) { __m128i in = _mm_loadu_si128((__m128i *)buf); if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); in = _mm_shuffle_epi8(in, swap); } // 1. Check if there are any surrogate word in the input chunk. // We have also deal with situation when there is a surrogate word // at the end of a chunk. const __m128i surrogates_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in, v_f800), v_d800); // bitmask = 0x0000 if there are no surrogates // = 0xc000 if the last word is a surrogate const uint16_t surrogates_bitmask = static_cast(_mm_movemask_epi8(surrogates_bytemask)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (surrogates_bitmask == 0x0000) { // case: no surrogate pair, extend 16-bit code units to 32-bit code units _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output), _mm_cvtepu16_epi32(in)); _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output + 4), _mm_cvtepu16_epi32(_mm_srli_si128(in, 8))); utf32_output += 8; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = big_endian ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = big_endian ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, utf32_output); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return std::make_pair(buf, utf32_output); } /* Returns a pair: a result struct and utf8_output. If there is an error, the count field of the result is the position of the error. Otherwise, it is the position of the first unprocessed byte in buf (even if finished). A scalar routing should carry on the conversion of the tail if needed. */ template std::pair sse_convert_utf16_to_utf32_with_errors(const char16_t *buf, size_t len, char32_t *utf32_output) { const char16_t *start = buf; const char16_t *end = buf + len; const __m128i v_f800 = _mm_set1_epi16((int16_t)0xf800); const __m128i v_d800 = _mm_set1_epi16((int16_t)0xd800); while (end - buf >= 8) { __m128i in = _mm_loadu_si128((__m128i *)buf); if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); in = _mm_shuffle_epi8(in, swap); } // 1. Check if there are any surrogate word in the input chunk. // We have also deal with situation when there is a surrogate word // at the end of a chunk. const __m128i surrogates_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in, v_f800), v_d800); // bitmask = 0x0000 if there are no surrogates // = 0xc000 if the last word is a surrogate const uint16_t surrogates_bitmask = static_cast(_mm_movemask_epi8(surrogates_bytemask)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (surrogates_bitmask == 0x0000) { // case: no surrogate pair, extend 16-bit code units to 32-bit code units _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output), _mm_cvtepu16_epi32(in)); _mm_storeu_si128(reinterpret_cast<__m128i *>(utf32_output + 4), _mm_cvtepu16_epi32(_mm_srli_si128(in, 8))); utf32_output += 8; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = big_endian ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = big_endian ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k - 1), utf32_output); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), utf32_output); } /* end file src/westmere/sse_convert_utf16_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/westmere/sse_convert_utf32_to_latin1.cpp */ std::pair sse_convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) { const size_t rounded_len = len & ~0xF; // Round down to nearest multiple of 16 __m128i high_bytes_mask = _mm_set1_epi32(0xFFFFFF00); __m128i shufmask = _mm_set_epi8(-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 12, 8, 4, 0); for (size_t i = 0; i < rounded_len; i += 16) { __m128i in1 = _mm_loadu_si128((__m128i *)buf); __m128i in2 = _mm_loadu_si128((__m128i *)(buf + 4)); __m128i in3 = _mm_loadu_si128((__m128i *)(buf + 8)); __m128i in4 = _mm_loadu_si128((__m128i *)(buf + 12)); __m128i check_combined = _mm_or_si128(in1, in2); check_combined = _mm_or_si128(check_combined, in3); check_combined = _mm_or_si128(check_combined, in4); if (!_mm_testz_si128(check_combined, high_bytes_mask)) { return std::make_pair(nullptr, latin1_output); } __m128i pack1 = _mm_unpacklo_epi32(_mm_shuffle_epi8(in1, shufmask), _mm_shuffle_epi8(in2, shufmask)); __m128i pack2 = _mm_unpacklo_epi32(_mm_shuffle_epi8(in3, shufmask), _mm_shuffle_epi8(in4, shufmask)); __m128i pack = _mm_unpacklo_epi64(pack1, pack2); _mm_storeu_si128((__m128i *)latin1_output, pack); latin1_output += 16; buf += 16; } return std::make_pair(buf, latin1_output); } std::pair sse_convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) { const char32_t *start = buf; const size_t rounded_len = len & ~0xF; // Round down to nearest multiple of 16 __m128i high_bytes_mask = _mm_set1_epi32(0xFFFFFF00); __m128i shufmask = _mm_set_epi8(-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 12, 8, 4, 0); for (size_t i = 0; i < rounded_len; i += 16) { __m128i in1 = _mm_loadu_si128((__m128i *)buf); __m128i in2 = _mm_loadu_si128((__m128i *)(buf + 4)); __m128i in3 = _mm_loadu_si128((__m128i *)(buf + 8)); __m128i in4 = _mm_loadu_si128((__m128i *)(buf + 12)); __m128i check_combined = _mm_or_si128(in1, in2); check_combined = _mm_or_si128(check_combined, in3); check_combined = _mm_or_si128(check_combined, in4); if (!_mm_testz_si128(check_combined, high_bytes_mask)) { // Fallback to scalar code for handling errors for (int k = 0; k < 16; k++) { char32_t codepoint = buf[k]; if (codepoint <= 0xff) { *latin1_output++ = char(codepoint); } else { return std::make_pair(result(error_code::TOO_LARGE, buf - start + k), latin1_output); } } buf += 16; continue; } __m128i pack1 = _mm_unpacklo_epi32(_mm_shuffle_epi8(in1, shufmask), _mm_shuffle_epi8(in2, shufmask)); __m128i pack2 = _mm_unpacklo_epi32(_mm_shuffle_epi8(in3, shufmask), _mm_shuffle_epi8(in4, shufmask)); __m128i pack = _mm_unpacklo_epi64(pack1, pack2); _mm_storeu_si128((__m128i *)latin1_output, pack); latin1_output += 16; buf += 16; } return std::make_pair(result(error_code::SUCCESS, buf - start), latin1_output); } /* end file src/westmere/sse_convert_utf32_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/westmere/sse_convert_utf32_to_utf8.cpp */ std::pair sse_convert_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_output) { const char32_t *end = buf + len; const __m128i v_0000 = _mm_setzero_si128(); //__m128 = 128 bits const __m128i v_f800 = _mm_set1_epi16((uint16_t)0xf800); // 1111 1000 0000 // 0000 const __m128i v_c080 = _mm_set1_epi16((uint16_t)0xc080); // 1100 0000 1000 // 0000 const __m128i v_ff80 = _mm_set1_epi16((uint16_t)0xff80); // 1111 1111 1000 // 0000 const __m128i v_ffff0000 = _mm_set1_epi32( (uint32_t)0xffff0000); // 1111 1111 1111 1111 0000 0000 0000 0000 const __m128i v_7fffffff = _mm_set1_epi32( (uint32_t)0x7fffffff); // 0111 1111 1111 1111 1111 1111 1111 1111 __m128i running_max = _mm_setzero_si128(); __m128i forbidden_bytemask = _mm_setzero_si128(); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t( 16 + safety_margin)) { // buf is a char32_t pointer, each char32_t // has 4 bytes or 32 bits, thus buf + 16 * // char_32t = 512 bits = 64 bytes // We load two 16 bytes registers for a total of 32 bytes or 16 characters. __m128i in = _mm_loadu_si128((__m128i *)buf); __m128i nextin = _mm_loadu_si128( (__m128i *)buf + 1); // These two values can hold only 8 UTF32 chars running_max = _mm_max_epu32( _mm_max_epu32(in, running_max), // take element-wise max char32_t from // in and running_max vector nextin); // and take element-wise max element from nextin and // running_max vector // Pack 32-bit UTF-32 code units to 16-bit UTF-16 code units with unsigned // saturation __m128i in_16 = _mm_packus_epi32( _mm_and_si128(in, v_7fffffff), _mm_and_si128( nextin, v_7fffffff)); // in this context pack the two __m128 into a single // By ensuring the highest bit is set to 0(&v_7fffffff), we are making sure // all values are interpreted as non-negative, or specifically, the values // are within the range of valid Unicode code points. remember : having // leading byte 0 means a positive number by the two complements system. // Unicode is well beneath the range where you'll start getting issues so // that's OK. // Try to apply UTF-16 => UTF-8 from ./sse_convert_utf16_to_utf8.cpp // Check for ASCII fast path // ASCII fast path!!!! // We eagerly load another 32 bytes, hoping that they will be ASCII too. // The intuition is that we try to collect 16 ASCII characters which // requires a total of 64 bytes of input. If we fail, we just pass thirdin // and fourthin as our new inputs. if (_mm_testz_si128(in_16, v_ff80)) { // if the first two blocks are ASCII __m128i thirdin = _mm_loadu_si128((__m128i *)buf + 2); __m128i fourthin = _mm_loadu_si128((__m128i *)buf + 3); running_max = _mm_max_epu32( _mm_max_epu32(thirdin, running_max), fourthin); // take the running max of all 4 vectors thus far __m128i nextin_16 = _mm_packus_epi32( _mm_and_si128(thirdin, v_7fffffff), _mm_and_si128(fourthin, v_7fffffff)); // pack into 1 vector, now you have two if (!_mm_testz_si128( nextin_16, v_ff80)) { // checks if the second packed vector is ASCII, if not: // 1. pack the bytes // obviously suboptimal. const __m128i utf8_packed = _mm_packus_epi16( in_16, in_16); // creates two copy of in_16 in 1 vector // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // put them into the output // 3. adjust pointers buf += 8; // the char32_t buffer pointer goes up 8 char32_t chars* 32 // bits = 256 bits utf8_output += 8; // same with output, e.g. lift the first two blocks alone. // Proceed with next input in_16 = nextin_16; // We need to update in and nextin because they are used later. in = thirdin; nextin = fourthin; } else { // 1. pack the bytes const __m128i utf8_packed = _mm_packus_epi16(in_16, nextin_16); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } } // no bits set above 7th bit -- find out all the ASCII characters const __m128i one_byte_bytemask = _mm_cmpeq_epi16( // this takes four bytes at a time and compares: _mm_and_si128(in_16, v_ff80), // the vector that get only the first // 9 bits of each 16-bit/2-byte units v_0000 // ); // they should be all zero if they are ASCII. E.g. ASCII in UTF32 is // of format 0000 0000 0000 0XXX XXXX // _mm_cmpeq_epi16 should now return a 1111 1111 1111 1111 for equals, and // 0000 0000 0000 0000 if not for each 16-bit/2-byte units const uint16_t one_byte_bitmask = static_cast(_mm_movemask_epi8( one_byte_bytemask)); // collect the MSB from previous vector and put // them into uint16_t mas // no bits set above 11th bit const __m128i one_or_two_bytes_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in_16, v_f800), v_0000); const uint16_t one_or_two_bytes_bitmask = static_cast(_mm_movemask_epi8(one_or_two_bytes_bytemask)); if (one_or_two_bytes_bitmask == 0xffff) { // case: all code units either produce 1 or 2 UTF-8 bytes (at least one // produces 2 bytes) // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const __m128i v_1f00 = _mm_set1_epi16((int16_t)0x1f00); // 0001 1111 0000 0000 const __m128i v_003f = _mm_set1_epi16((int16_t)0x003f); // 0000 0000 0011 1111 // t0 = [000a|aaaa|bbbb|bb00] const __m128i t0 = _mm_slli_epi16(in_16, 2); // shift packed vector by two // t1 = [000a|aaaa|0000|0000] const __m128i t1 = _mm_and_si128(t0, v_1f00); // potentital first utf8 byte // t2 = [0000|0000|00bb|bbbb] const __m128i t2 = _mm_and_si128(in_16, v_003f); // potential second utf8 byte // t3 = [000a|aaaa|00bb|bbbb] const __m128i t3 = _mm_or_si128(t1, t2); // first and second potential utf8 byte together // t4 = [110a|aaaa|10bb|bbbb] const __m128i t4 = _mm_or_si128( t3, v_c080); // t3 | 1100 0000 1000 0000 = full potential 2-byte utf8 unit // 2. merge ASCII and 2-byte codewords const __m128i utf8_unpacked = _mm_blendv_epi8(t4, in_16, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup // one_byte_bitmask = hhggffeeddccbbaa -- the bits are doubled (h - // MSB, a - LSB) const uint16_t m0 = one_byte_bitmask & 0x5555; // m0 = 0h0g0f0e0d0c0b0a const uint16_t m1 = static_cast(m0 >> 7); // m1 = 00000000h0g0f0e0 const uint8_t m2 = static_cast((m0 | m1) & 0xff); // m2 = hdgcfbea // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[m2][0]; const __m128i shuffle = _mm_loadu_si128((__m128i *)(row + 1)); const __m128i utf8_packed = _mm_shuffle_epi8(utf8_unpacked, shuffle); // 5. store bytes _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 6. adjust pointers buf += 8; utf8_output += row[0]; continue; } // Check for overflow in packing const __m128i saturation_bytemask = _mm_cmpeq_epi32( _mm_and_si128(_mm_or_si128(in, nextin), v_ffff0000), v_0000); const uint32_t saturation_bitmask = static_cast(_mm_movemask_epi8(saturation_bytemask)); if (saturation_bitmask == 0xffff) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes const __m128i v_d800 = _mm_set1_epi16((uint16_t)0xd800); forbidden_bytemask = _mm_or_si128(forbidden_bytemask, _mm_cmpeq_epi16(_mm_and_si128(in_16, v_f800), v_d800)); const __m128i dup_even = _mm_setr_epi16(0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) _mm_set1_epi16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const __m128i t0 = _mm_shuffle_epi8(in_16, dup_even); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const __m128i t1 = _mm_and_si128(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const __m128i t2 = _mm_or_si128(t1, simdutf_vec(0b1000000000000000)); // [aaaa|bbbb|bbcc|cccc] => [0000|aaaa|bbbb|bbcc] const __m128i s0 = _mm_srli_epi16(in_16, 4); // [0000|aaaa|bbbb|bbcc] => [0000|aaaa|bbbb|bb00] const __m128i s1 = _mm_and_si128(s0, simdutf_vec(0b0000111111111100)); // [0000|aaaa|bbbb|bb00] => [00bb|bbbb|0000|aaaa] const __m128i s2 = _mm_maddubs_epi16(s1, simdutf_vec(0x0140)); // [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const __m128i s3 = _mm_or_si128(s2, simdutf_vec(0b1100000011100000)); const __m128i m0 = _mm_andnot_si128(one_or_two_bytes_bytemask, simdutf_vec(0b0100000000000000)); const __m128i s4 = _mm_xor_si128(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const __m128i out0 = _mm_unpacklo_epi16(t2, s4); const __m128i out1 = _mm_unpackhi_epi16(t2, s4); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint16_t mask = (one_byte_bitmask & 0x5555) | (one_or_two_bytes_bitmask & 0xaaaa); if (mask == 0) { // We only have three-byte code units. Use fast path. const __m128i shuffle = _mm_setr_epi8(2, 3, 1, 6, 7, 5, 10, 11, 9, 14, 15, 13, -1, -1, -1, -1); const __m128i utf8_0 = _mm_shuffle_epi8(out0, shuffle); const __m128i utf8_1 = _mm_shuffle_epi8(out1, shuffle); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += 12; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += 12; buf += 8; continue; } const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const __m128i shuffle0 = _mm_loadu_si128((__m128i *)(row0 + 1)); const __m128i utf8_0 = _mm_shuffle_epi8(out0, shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const __m128i shuffle1 = _mm_loadu_si128((__m128i *)(row1 + 1)); const __m128i utf8_1 = _mm_shuffle_epi8(out1, shuffle1); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += row0[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += row1[0]; buf += 8; } else { // case: at least one 32-bit word produce a surrogate pair in UTF-16 <=> // will produce four UTF-8 bytes Let us do a scalar fallback. It may seem // wasteful to use scalar code, but being efficient with SIMD in the // presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, utf8_output); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (word > 0x10FFFF) { return std::make_pair(nullptr, utf8_output); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while // check for invalid input const __m128i v_10ffff = _mm_set1_epi32((uint32_t)0x10ffff); if (static_cast(_mm_movemask_epi8(_mm_cmpeq_epi32( _mm_max_epu32(running_max, v_10ffff), v_10ffff))) != 0xffff) { return std::make_pair(nullptr, utf8_output); } if (static_cast(_mm_movemask_epi8(forbidden_bytemask)) != 0) { return std::make_pair(nullptr, utf8_output); } return std::make_pair(buf, utf8_output); } std::pair sse_convert_utf32_to_utf8_with_errors(const char32_t *buf, size_t len, char *utf8_output) { const char32_t *end = buf + len; const char32_t *start = buf; const __m128i v_0000 = _mm_setzero_si128(); const __m128i v_f800 = _mm_set1_epi16((uint16_t)0xf800); const __m128i v_c080 = _mm_set1_epi16((uint16_t)0xc080); const __m128i v_ff80 = _mm_set1_epi16((uint16_t)0xff80); const __m128i v_ffff0000 = _mm_set1_epi32((uint32_t)0xffff0000); const __m128i v_7fffffff = _mm_set1_epi32((uint32_t)0x7fffffff); const __m128i v_10ffff = _mm_set1_epi32((uint32_t)0x10ffff); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { // We load two 16 bytes registers for a total of 32 bytes or 8 characters. __m128i in = _mm_loadu_si128((__m128i *)buf); __m128i nextin = _mm_loadu_si128((__m128i *)buf + 1); // Check for too large input __m128i max_input = _mm_max_epu32(_mm_max_epu32(in, nextin), v_10ffff); if (static_cast(_mm_movemask_epi8( _mm_cmpeq_epi32(max_input, v_10ffff))) != 0xffff) { return std::make_pair(result(error_code::TOO_LARGE, buf - start), utf8_output); } // Pack 32-bit UTF-32 code units to 16-bit UTF-16 code units with unsigned // saturation __m128i in_16 = _mm_packus_epi32(_mm_and_si128(in, v_7fffffff), _mm_and_si128(nextin, v_7fffffff)); // Try to apply UTF-16 => UTF-8 from ./sse_convert_utf16_to_utf8.cpp // Check for ASCII fast path if (_mm_testz_si128(in_16, v_ff80)) { // ASCII fast path!!!! // 1. pack the bytes // obviously suboptimal. const __m128i utf8_packed = _mm_packus_epi16(in_16, in_16); // 2. store (16 bytes) _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 3. adjust pointers buf += 8; utf8_output += 8; continue; } // no bits set above 7th bit const __m128i one_byte_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in_16, v_ff80), v_0000); const uint16_t one_byte_bitmask = static_cast(_mm_movemask_epi8(one_byte_bytemask)); // no bits set above 11th bit const __m128i one_or_two_bytes_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in_16, v_f800), v_0000); const uint16_t one_or_two_bytes_bitmask = static_cast(_mm_movemask_epi8(one_or_two_bytes_bytemask)); if (one_or_two_bytes_bitmask == 0xffff) { // case: all code units either produce 1 or 2 UTF-8 bytes (at least one // produces 2 bytes) // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 const __m128i v_1f00 = _mm_set1_epi16((int16_t)0x1f00); const __m128i v_003f = _mm_set1_epi16((int16_t)0x003f); // t0 = [000a|aaaa|bbbb|bb00] const __m128i t0 = _mm_slli_epi16(in_16, 2); // t1 = [000a|aaaa|0000|0000] const __m128i t1 = _mm_and_si128(t0, v_1f00); // t2 = [0000|0000|00bb|bbbb] const __m128i t2 = _mm_and_si128(in_16, v_003f); // t3 = [000a|aaaa|00bb|bbbb] const __m128i t3 = _mm_or_si128(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m128i t4 = _mm_or_si128(t3, v_c080); // 2. merge ASCII and 2-byte codewords const __m128i utf8_unpacked = _mm_blendv_epi8(t4, in_16, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup // one_byte_bitmask = hhggffeeddccbbaa -- the bits are doubled (h - // MSB, a - LSB) const uint16_t m0 = one_byte_bitmask & 0x5555; // m0 = 0h0g0f0e0d0c0b0a const uint16_t m1 = static_cast(m0 >> 7); // m1 = 00000000h0g0f0e0 const uint8_t m2 = static_cast((m0 | m1) & 0xff); // m2 = hdgcfbea // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes[m2][0]; const __m128i shuffle = _mm_loadu_si128((__m128i *)(row + 1)); const __m128i utf8_packed = _mm_shuffle_epi8(utf8_unpacked, shuffle); // 5. store bytes _mm_storeu_si128((__m128i *)utf8_output, utf8_packed); // 6. adjust pointers buf += 8; utf8_output += row[0]; continue; } // Check for overflow in packing const __m128i saturation_bytemask = _mm_cmpeq_epi32( _mm_and_si128(_mm_or_si128(in, nextin), v_ffff0000), v_0000); const uint32_t saturation_bitmask = static_cast(_mm_movemask_epi8(saturation_bytemask)); if (saturation_bitmask == 0xffff) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes // Check for illegal surrogate code units const __m128i v_d800 = _mm_set1_epi16((uint16_t)0xd800); const __m128i forbidden_bytemask = _mm_cmpeq_epi16(_mm_and_si128(in_16, v_f800), v_d800); if (static_cast(_mm_movemask_epi8(forbidden_bytemask)) != 0) { return std::make_pair(result(error_code::SURROGATE, buf - start), utf8_output); } const __m128i dup_even = _mm_setr_epi16(0x0000, 0x0202, 0x0404, 0x0606, 0x0808, 0x0a0a, 0x0c0c, 0x0e0e); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ #define simdutf_vec(x) _mm_set1_epi16(static_cast(x)) // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] const __m128i t0 = _mm_shuffle_epi8(in_16, dup_even); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] const __m128i t1 = _mm_and_si128(t0, simdutf_vec(0b0011111101111111)); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] const __m128i t2 = _mm_or_si128(t1, simdutf_vec(0b1000000000000000)); // [aaaa|bbbb|bbcc|cccc] => [0000|aaaa|bbbb|bbcc] const __m128i s0 = _mm_srli_epi16(in_16, 4); // [0000|aaaa|bbbb|bbcc] => [0000|aaaa|bbbb|bb00] const __m128i s1 = _mm_and_si128(s0, simdutf_vec(0b0000111111111100)); // [0000|aaaa|bbbb|bb00] => [00bb|bbbb|0000|aaaa] const __m128i s2 = _mm_maddubs_epi16(s1, simdutf_vec(0x0140)); // [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] const __m128i s3 = _mm_or_si128(s2, simdutf_vec(0b1100000011100000)); const __m128i m0 = _mm_andnot_si128(one_or_two_bytes_bytemask, simdutf_vec(0b0100000000000000)); const __m128i s4 = _mm_xor_si128(s3, m0); #undef simdutf_vec // 4. expand code units 16-bit => 32-bit const __m128i out0 = _mm_unpacklo_epi16(t2, s4); const __m128i out1 = _mm_unpackhi_epi16(t2, s4); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle const uint16_t mask = (one_byte_bitmask & 0x5555) | (one_or_two_bytes_bitmask & 0xaaaa); if (mask == 0) { // We only have three-byte code units. Use fast path. const __m128i shuffle = _mm_setr_epi8(2, 3, 1, 6, 7, 5, 10, 11, 9, 14, 15, 13, -1, -1, -1, -1); const __m128i utf8_0 = _mm_shuffle_epi8(out0, shuffle); const __m128i utf8_1 = _mm_shuffle_epi8(out1, shuffle); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += 12; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += 12; buf += 8; continue; } const uint8_t mask0 = uint8_t(mask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; const __m128i shuffle0 = _mm_loadu_si128((__m128i *)(row0 + 1)); const __m128i utf8_0 = _mm_shuffle_epi8(out0, shuffle0); const uint8_t mask1 = static_cast(mask >> 8); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; const __m128i shuffle1 = _mm_loadu_si128((__m128i *)(row1 + 1)); const __m128i utf8_1 = _mm_shuffle_epi8(out1, shuffle1); _mm_storeu_si128((__m128i *)utf8_output, utf8_0); utf8_output += row0[0]; _mm_storeu_si128((__m128i *)utf8_output, utf8_1); utf8_output += row1[0]; buf += 8; } else { // case: at least one 32-bit word produce a surrogate pair in UTF-16 <=> // will produce four UTF-8 bytes Let us do a scalar fallback. It may seem // wasteful to use scalar code, but being efficient with SIMD in the // presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k), utf8_output); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (word > 0x10FFFF) { return std::make_pair( result(error_code::TOO_LARGE, buf - start + k), utf8_output); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), utf8_output); } /* end file src/westmere/sse_convert_utf32_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/westmere/sse_convert_utf32_to_utf16.cpp */ struct expansion_result_t { size_t u16count; __m128i compressed; }; // Function sse_expand_surrogate takes four **valid** UTF-32 characters // having at least one code-point producing a surrogate pair. template expansion_result_t sse_expand_surrogate(const __m128i x) { using vector_u32 = simd32; using vector_u8 = simd8; const auto in = vector_u32(x); const auto non_surrogate_mask = (in & uint32_t(0xffff0000)) == uint32_t(0); const auto mask = (~non_surrogate_mask.to_4bit_bitmask()) & 0xf; const auto t0 = in - uint32_t(0x00010000); const auto hi = t0.shr<10>() & uint32_t(0x000003ff); const auto lo = t0.shl<16>() & uint32_t(0x03ff0000); const auto surrogates = (lo | hi) | uint32_t(0xdc00d800); const auto merged = as_vector_u8(select(non_surrogate_mask, in, surrogates)); const auto shuffle = vector_u8::load( (byte_order == endianness::LITTLE) ? tables::utf32_to_utf16::pack_utf32_to_utf16le[mask] : tables::utf32_to_utf16::pack_utf32_to_utf16be[mask]); const size_t u16count = (4 + count_ones(mask)); const auto compressed = shuffle.lookup_16(merged); return {u16count, compressed}; } // Function `validate_utf32` checks 2 x 4 UTF-32 characters for their validity. simdutf_really_inline bool validate_utf32(const __m128i a, const __m128i b) { using vector_u32 = simd32; const auto in0 = vector_u32(a); const auto in1 = vector_u32(b); const auto standardmax = vector_u32::splat(0x10ffff); const auto offset = vector_u32::splat(0xffff2000); const auto standardoffsetmax = vector_u32::splat(0xfffff7ff); const auto too_large = max(in0, in1) > standardmax; const auto surrogate0 = (in0 + offset) > standardoffsetmax; const auto surrogate1 = (in1 + offset) > standardoffsetmax; const auto combined = too_large | surrogate0 | surrogate1; return !combined.any(); } template std::pair sse_convert_utf32_to_utf16(const char32_t *buf, size_t len, char16_t *utf16_output) { const char32_t *end = buf + len; const __m128i v_ffff0000 = _mm_set1_epi32((int32_t)0xffff0000); __m128i forbidden_bytemask = _mm_setzero_si128(); while (end - buf >= 16 + 8) { const __m128i *ptr = reinterpret_cast(buf); const __m128i in0 = _mm_loadu_si128(ptr + 0); const __m128i in1 = _mm_loadu_si128(ptr + 1); const __m128i in2 = _mm_loadu_si128(ptr + 2); const __m128i in3 = _mm_loadu_si128(ptr + 3); const __m128i combined = _mm_or_si128(_mm_or_si128(in2, in3), _mm_or_si128(in0, in1)); if (simdutf_likely(_mm_testz_si128(combined, v_ffff0000))) { // No bits set above 16th, directly pack UTF-32 to UTF-16 __m128i utf16_packed0 = _mm_packus_epi32(in0, in1); __m128i utf16_packed1 = _mm_packus_epi32(in2, in3); const __m128i v_f800 = _mm_set1_epi16((uint16_t)0xf800); const __m128i v_d800 = _mm_set1_epi16((uint16_t)0xd800); forbidden_bytemask = _mm_or_si128( forbidden_bytemask, _mm_or_si128( _mm_cmpeq_epi16(_mm_and_si128(utf16_packed0, v_f800), v_d800), _mm_cmpeq_epi16(_mm_and_si128(utf16_packed1, v_f800), v_d800))); if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); utf16_packed0 = _mm_shuffle_epi8(utf16_packed0, swap); utf16_packed1 = _mm_shuffle_epi8(utf16_packed1, swap); } _mm_storeu_si128((__m128i *)utf16_output + 0, utf16_packed0); _mm_storeu_si128((__m128i *)utf16_output + 1, utf16_packed1); utf16_output += 16; buf += 16; } else { if (!validate_utf32(in0, in1) || !validate_utf32(in2, in3)) { return std::make_pair(nullptr, utf16_output); } const auto ret0 = sse_expand_surrogate(in0); _mm_storeu_si128((__m128i *)utf16_output, ret0.compressed); utf16_output += ret0.u16count; const auto ret1 = sse_expand_surrogate(in1); _mm_storeu_si128((__m128i *)utf16_output, ret1.compressed); utf16_output += ret1.u16count; const auto ret2 = sse_expand_surrogate(in2); _mm_storeu_si128((__m128i *)utf16_output, ret2.compressed); utf16_output += ret2.u16count; const auto ret3 = sse_expand_surrogate(in3); _mm_storeu_si128((__m128i *)utf16_output, ret3.compressed); utf16_output += ret3.u16count; buf += 16; } } // check for invalid input if (static_cast(_mm_movemask_epi8(forbidden_bytemask)) != 0) { return std::make_pair(nullptr, utf16_output); } return std::make_pair(buf, utf16_output); } template std::pair sse_convert_utf32_to_utf16_with_errors(const char32_t *buf, size_t len, char16_t *utf16_output) { const char32_t *start = buf; const char32_t *end = buf + len; const __m128i v_ffff0000 = _mm_set1_epi32((int32_t)0xffff0000); while (end - buf >= 8) { const __m128i in = _mm_loadu_si128((__m128i *)buf); const __m128i nextin = _mm_loadu_si128((__m128i *)buf + 1); const __m128i combined = _mm_or_si128(in, nextin); if (simdutf_likely(_mm_testz_si128(combined, v_ffff0000))) { // No bits set above 16th, directly pack UTF-32 to UTF-16 __m128i utf16_packed = _mm_packus_epi32(in, nextin); const __m128i v_f800 = _mm_set1_epi16((uint16_t)0xf800); const __m128i v_d800 = _mm_set1_epi16((uint16_t)0xd800); const __m128i forbidden_bytemask = _mm_cmpeq_epi16(_mm_and_si128(utf16_packed, v_f800), v_d800); if (static_cast(_mm_movemask_epi8(forbidden_bytemask)) != 0) { return std::make_pair(result(error_code::SURROGATE, buf - start), utf16_output); } if (big_endian) { const __m128i swap = _mm_setr_epi8(1, 0, 3, 2, 5, 4, 7, 6, 9, 8, 11, 10, 13, 12, 15, 14); utf16_packed = _mm_shuffle_epi8(utf16_packed, swap); } _mm_storeu_si128((__m128i *)utf16_output, utf16_packed); utf16_output += 8; buf += 8; } else { size_t forward = 7; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k), utf16_output); } *utf16_output++ = big_endian ? char16_t((uint16_t(word) >> 8) | (uint16_t(word) << 8)) : char16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return std::make_pair( result(error_code::TOO_LARGE, buf - start + k), utf16_output); } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (big_endian) { high_surrogate = uint16_t((high_surrogate >> 8) | (high_surrogate << 8)); low_surrogate = uint16_t((low_surrogate >> 8) | (low_surrogate << 8)); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } } buf += k; } } return std::make_pair(result(error_code::SUCCESS, buf - start), utf16_output); } /* end file src/westmere/sse_convert_utf32_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 /* begin file src/westmere/sse_base64.cpp */ /** * References and further reading: * * Wojciech Muła, Daniel Lemire, Base64 encoding and decoding at almost the * speed of a memory copy, Software: Practice and Experience 50 (2), 2020. * https://arxiv.org/abs/1910.05109 * * Wojciech Muła, Daniel Lemire, Faster Base64 Encoding and Decoding using AVX2 * Instructions, ACM Transactions on the Web 12 (3), 2018. * https://arxiv.org/abs/1704.00605 * * Simon Josefsson. 2006. The Base16, Base32, and Base64 Data Encodings. * https://tools.ietf.org/html/rfc4648. (2006). Internet Engineering Task Force, * Request for Comments: 4648. * * Alfred Klomp. 2014a. Fast Base64 encoding/decoding with SSE vectorization. * http://www.alfredklomp.com/programming/sse-base64/. (2014). * * Alfred Klomp. 2014b. Fast Base64 stream encoder/decoder in C99, with SIMD * acceleration. https://github.com/aklomp/base64. (2014). * * Hanson Char. 2014. A Fast and Correct Base 64 Codec. (2014). * https://aws.amazon.com/blogs/developer/a-fast-and-correct-base-64-codec/ * * Nick Kopp. 2013. Base64 Encoding on a GPU. * https://www.codeproject.com/Articles/276993/Base-Encoding-on-a-GPU. (2013). */ // --- encoding ---------------------------------------------------- template __m128i lookup_pshufb_improved(const __m128i input) { // credit: Wojciech Muła // reduce 0..51 -> 0 // 52..61 -> 1 .. 10 // 62 -> 11 // 63 -> 12 __m128i result = _mm_subs_epu8(input, _mm_set1_epi8(51)); // distinguish between ranges 0..25 and 26..51: // 0 .. 25 -> remains 0 // 26 .. 51 -> becomes 13 const __m128i less = _mm_cmpgt_epi8(_mm_set1_epi8(26), input); result = _mm_or_si128(result, _mm_and_si128(less, _mm_set1_epi8(13))); __m128i shift_LUT; if (base64_url) { shift_LUT = _mm_setr_epi8('a' - 26, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '-' - 62, '_' - 63, 'A', 0, 0); } else { shift_LUT = _mm_setr_epi8('a' - 26, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '0' - 52, '+' - 62, '/' - 63, 'A', 0, 0); } // read shift result = _mm_shuffle_epi8(shift_LUT, result); return _mm_add_epi8(result, input); } inline __m128i insert_line_feed16(__m128i input, size_t K) { static const uint8_t shuffle_masks[16][16] = { {0x80, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 0x80, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 0x80, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 0x80, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 0x80, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 0x80, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 0x80, 6, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 0x80, 7, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 0x80, 8, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 0x80, 9, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0x80, 10, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0x80, 11, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 0x80, 12, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 0x80, 13, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0x80, 14}, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0x80}}; // Prepare a vector with '\n' (0x0A) __m128i line_feed_vector = _mm_set1_epi8('\n'); // Load the precomputed shuffle mask for K (index K-1) __m128i mask = _mm_loadu_si128((__m128i *)shuffle_masks[K]); __m128i lf_pos = _mm_cmpeq_epi8(mask, _mm_set1_epi8(static_cast(0x80))); // Perform the shuffle to reposition the K bytes __m128i shuffled = _mm_shuffle_epi8(input, mask); // Blend with line_feed_vector to insert '\n' at the appropriate positions __m128i result = _mm_blendv_epi8(shuffled, line_feed_vector, lf_pos); return result; } template size_t encode_base64_impl(char *dst, const char *src, size_t srclen, base64_options options, size_t line_length = simdutf::default_line_length) { size_t offset = 0; if (line_length < 4) { line_length = 4; // We do not support line_length less than 4 } // credit: Wojciech Muła // SSE (lookup: pshufb improved unrolled) const uint8_t *input = (const uint8_t *)src; uint8_t *out = (uint8_t *)dst; const __m128i shuf = _mm_set_epi8(10, 11, 9, 10, 7, 8, 6, 7, 4, 5, 3, 4, 1, 2, 0, 1); size_t i = 0; for (; i + 52 <= srclen; i += 48) { __m128i in0 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 0)); __m128i in1 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 1)); __m128i in2 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 2)); __m128i in3 = _mm_loadu_si128( reinterpret_cast(input + i + 4 * 3 * 3)); in0 = _mm_shuffle_epi8(in0, shuf); in1 = _mm_shuffle_epi8(in1, shuf); in2 = _mm_shuffle_epi8(in2, shuf); in3 = _mm_shuffle_epi8(in3, shuf); const __m128i t0_0 = _mm_and_si128(in0, _mm_set1_epi32(0x0fc0fc00)); const __m128i t0_1 = _mm_and_si128(in1, _mm_set1_epi32(0x0fc0fc00)); const __m128i t0_2 = _mm_and_si128(in2, _mm_set1_epi32(0x0fc0fc00)); const __m128i t0_3 = _mm_and_si128(in3, _mm_set1_epi32(0x0fc0fc00)); const __m128i t1_0 = _mm_mulhi_epu16(t0_0, _mm_set1_epi32(0x04000040)); const __m128i t1_1 = _mm_mulhi_epu16(t0_1, _mm_set1_epi32(0x04000040)); const __m128i t1_2 = _mm_mulhi_epu16(t0_2, _mm_set1_epi32(0x04000040)); const __m128i t1_3 = _mm_mulhi_epu16(t0_3, _mm_set1_epi32(0x04000040)); const __m128i t2_0 = _mm_and_si128(in0, _mm_set1_epi32(0x003f03f0)); const __m128i t2_1 = _mm_and_si128(in1, _mm_set1_epi32(0x003f03f0)); const __m128i t2_2 = _mm_and_si128(in2, _mm_set1_epi32(0x003f03f0)); const __m128i t2_3 = _mm_and_si128(in3, _mm_set1_epi32(0x003f03f0)); const __m128i t3_0 = _mm_mullo_epi16(t2_0, _mm_set1_epi32(0x01000010)); const __m128i t3_1 = _mm_mullo_epi16(t2_1, _mm_set1_epi32(0x01000010)); const __m128i t3_2 = _mm_mullo_epi16(t2_2, _mm_set1_epi32(0x01000010)); const __m128i t3_3 = _mm_mullo_epi16(t2_3, _mm_set1_epi32(0x01000010)); const __m128i input0 = _mm_or_si128(t1_0, t3_0); const __m128i input1 = _mm_or_si128(t1_1, t3_1); const __m128i input2 = _mm_or_si128(t1_2, t3_2); const __m128i input3 = _mm_or_si128(t1_3, t3_3); const __m128i t0 = lookup_pshufb_improved(input0); const __m128i t1 = lookup_pshufb_improved(input1); const __m128i t2 = lookup_pshufb_improved(input2); const __m128i t3 = lookup_pshufb_improved(input3); if (use_lines) { if (line_length >= 64) { // fast path if (offset + 64 > line_length) { size_t location_end = line_length - offset; size_t to_move = 64 - location_end; if (location_end < 16) { // We can store or extract store. See below. //_mm_storeu_si128(reinterpret_cast<__m128i *>(out+1), t0); _mm_storeu_si128(reinterpret_cast<__m128i *>(out), insert_line_feed16(t0, location_end)); out[16] = static_cast(_mm_extract_epi8(t0, 15)); out += 17; } else { _mm_storeu_si128(reinterpret_cast<__m128i *>(out), t0); out += 16; } if (location_end >= 16 && location_end < 32) { // We can store or extract store. See below. //_mm_storeu_si128(reinterpret_cast<__m128i *>(out+1), t1); _mm_storeu_si128(reinterpret_cast<__m128i *>(out), insert_line_feed16(t1, location_end - 16)); out[16] = static_cast(_mm_extract_epi8(t1, 15)); out += 17; } else { _mm_storeu_si128(reinterpret_cast<__m128i *>(out), t1); out += 16; } if (location_end >= 32 && location_end < 48) { // We can store or extract store. See below. //_mm_storeu_si128(reinterpret_cast<__m128i *>(out+1), t2); _mm_storeu_si128(reinterpret_cast<__m128i *>(out), insert_line_feed16(t2, location_end - 32)); out[16] = static_cast(_mm_extract_epi8(t2, 15)); out += 17; } else { _mm_storeu_si128(reinterpret_cast<__m128i *>(out), t2); out += 16; } if (location_end >= 48) { // We can store or extract store. See below. //_mm_storeu_si128(reinterpret_cast<__m128i *>(out+1), t3); _mm_storeu_si128(reinterpret_cast<__m128i *>(out), insert_line_feed16(t3, location_end - 48)); out[16] = static_cast(_mm_extract_epi8(t3, 15)); out += 17; } else { _mm_storeu_si128(reinterpret_cast<__m128i *>(out), t3); out += 16; } offset = to_move; } else { _mm_storeu_si128(reinterpret_cast<__m128i *>(out), t0); _mm_storeu_si128(reinterpret_cast<__m128i *>(out + 16), t1); _mm_storeu_si128(reinterpret_cast<__m128i *>(out + 32), t2); _mm_storeu_si128(reinterpret_cast<__m128i *>(out + 48), t3); offset += 64; out += 64; } } else { // slow path // could be optimized alignas(64) uint8_t buffer[64]; _mm_storeu_si128(reinterpret_cast<__m128i *>(buffer), t0); _mm_storeu_si128(reinterpret_cast<__m128i *>(buffer + 16), t1); _mm_storeu_si128(reinterpret_cast<__m128i *>(buffer + 32), t2); _mm_storeu_si128(reinterpret_cast<__m128i *>(buffer + 48), t3); std::memcpy(out, buffer, 64); size_t out_pos = 0; size_t local_offset = offset; for (size_t j = 0; j < 64;) { if (local_offset == line_length) { out[out_pos++] = '\n'; local_offset = 0; } out[out_pos++] = buffer[j++]; local_offset++; } offset = local_offset; out += out_pos; } } else { _mm_storeu_si128(reinterpret_cast<__m128i *>(out), t0); _mm_storeu_si128(reinterpret_cast<__m128i *>(out + 16), t1); _mm_storeu_si128(reinterpret_cast<__m128i *>(out + 32), t2); _mm_storeu_si128(reinterpret_cast<__m128i *>(out + 48), t3); out += 64; } } for (; i + 16 <= srclen; i += 12) { __m128i in = _mm_loadu_si128(reinterpret_cast(input + i)); // bytes from groups A, B and C are needed in separate 32-bit lanes // in = [DDDD|CCCC|BBBB|AAAA] // // an input triplet has layout // [????????|ccdddddd|bbbbcccc|aaaaaabb] // byte 3 byte 2 byte 1 byte 0 -- byte 3 comes from the next // triplet // // shuffling changes the order of bytes: 1, 0, 2, 1 // [bbbbcccc|ccdddddd|aaaaaabb|bbbbcccc] // ^^^^ ^^^^^^^^ ^^^^^^^^ ^^^^ // processed bits in = _mm_shuffle_epi8(in, shuf); // unpacking // t0 = [0000cccc|cc000000|aaaaaa00|00000000] const __m128i t0 = _mm_and_si128(in, _mm_set1_epi32(0x0fc0fc00)); // t1 = [00000000|00cccccc|00000000|00aaaaaa] // (c * (1 << 10), a * (1 << 6)) >> 16 (note: an unsigned // multiplication) const __m128i t1 = _mm_mulhi_epu16(t0, _mm_set1_epi32(0x04000040)); // t2 = [00000000|00dddddd|000000bb|bbbb0000] const __m128i t2 = _mm_and_si128(in, _mm_set1_epi32(0x003f03f0)); // t3 = [00dddddd|00000000|00bbbbbb|00000000]( // (d * (1 << 8), b * (1 << 4)) const __m128i t3 = _mm_mullo_epi16(t2, _mm_set1_epi32(0x01000010)); // res = [00dddddd|00cccccc|00bbbbbb|00aaaaaa] = t1 | t3 const __m128i indices = _mm_or_si128(t1, t3); const __m128i T0 = lookup_pshufb_improved(indices); _mm_storeu_si128(reinterpret_cast<__m128i *>(out), T0); if (use_lines) { if (line_length >= 16) { // fast path _mm_storeu_si128(reinterpret_cast<__m128i *>(out), T0); if (offset + 16 > line_length) { size_t location_end = line_length - offset; size_t to_move = 16 - location_end; std::memmove(out + location_end + 1, out + location_end, to_move); out[location_end] = '\n'; offset = to_move; out += 16 + 1; } else { offset += 16; out += 16; } } else { // slow path // could be optimized uint8_t buffer[16]; _mm_storeu_si128(reinterpret_cast<__m128i *>(buffer), T0); size_t out_pos = 0; size_t local_offset = offset; for (size_t j = 0; j < 16;) { if (local_offset == line_length) { out[out_pos++] = '\n'; local_offset = 0; } out[out_pos++] = buffer[j++]; local_offset++; } offset = local_offset; out += out_pos; } } else { _mm_storeu_si128(reinterpret_cast<__m128i *>(out), T0); out += 16; } } return ((char *)out - (char *)dst) + scalar::base64::tail_encode_base64_impl( (char *)out, src + i, srclen - i, options, line_length, offset); } template size_t encode_base64(char *dst, const char *src, size_t srclen, base64_options options) { return encode_base64_impl(dst, src, srclen, options); } // --- decoding ----------------------------------------------- static simdutf_really_inline void compress(__m128i data, uint16_t mask, char *output) { if (mask == 0) { _mm_storeu_si128(reinterpret_cast<__m128i *>(output), data); return; } // this particular implementation was inspired by work done by @animetosho // we do it in two steps, first 8 bytes and then second 8 bytes uint8_t mask1 = uint8_t(mask); // least significant 8 bits uint8_t mask2 = uint8_t(mask >> 8); // most significant 8 bits // next line just loads the 64-bit values thintable_epi8[mask1] and // thintable_epi8[mask2] into a 128-bit register, using only // two instructions on most compilers. __m128i shufmask = _mm_set_epi64x(tables::base64::thintable_epi8[mask2], tables::base64::thintable_epi8[mask1]); // we increment by 0x08 the second half of the mask shufmask = _mm_add_epi8(shufmask, _mm_set_epi32(0x08080808, 0x08080808, 0, 0)); // this is the version "nearly pruned" __m128i pruned = _mm_shuffle_epi8(data, shufmask); // we still need to put the two halves together. // we compute the popcount of the first half: int pop1 = tables::base64::BitsSetTable256mul2[mask1]; // then load the corresponding mask, what it does is to write // only the first pop1 bytes from the first 8 bytes, and then // it fills in with the bytes from the second 8 bytes + some filling // at the end. __m128i compactmask = _mm_loadu_si128(reinterpret_cast( tables::base64::pshufb_combine_table + pop1 * 8)); __m128i answer = _mm_shuffle_epi8(pruned, compactmask); _mm_storeu_si128(reinterpret_cast<__m128i *>(output), answer); } static simdutf_really_inline void base64_decode(char *out, __m128i str) { // credit: aqrit const __m128i pack_shuffle = _mm_setr_epi8(2, 1, 0, 6, 5, 4, 10, 9, 8, 14, 13, 12, -1, -1, -1, -1); const __m128i t0 = _mm_maddubs_epi16(str, _mm_set1_epi32(0x01400140)); const __m128i t1 = _mm_madd_epi16(t0, _mm_set1_epi32(0x00011000)); const __m128i t2 = _mm_shuffle_epi8(t1, pack_shuffle); // Store the output: // this writes 16 bytes, but we only need 12. _mm_storeu_si128((__m128i *)out, t2); } // decode 64 bytes and output 48 bytes static inline void base64_decode_block(char *out, const char *src) { base64_decode(out, _mm_loadu_si128(reinterpret_cast(src))); base64_decode(out + 12, _mm_loadu_si128(reinterpret_cast(src + 16))); base64_decode(out + 24, _mm_loadu_si128(reinterpret_cast(src + 32))); base64_decode(out + 36, _mm_loadu_si128(reinterpret_cast(src + 48))); } static inline void base64_decode_block_safe(char *out, const char *src) { base64_decode(out, _mm_loadu_si128(reinterpret_cast(src))); base64_decode(out + 12, _mm_loadu_si128(reinterpret_cast(src + 16))); base64_decode(out + 24, _mm_loadu_si128(reinterpret_cast(src + 32))); char buffer[16]; base64_decode(buffer, _mm_loadu_si128(reinterpret_cast(src + 48))); std::memcpy(out + 36, buffer, 12); } // --- decoding - base64 class -------------------------------- class block64 { __m128i chunks[4]; public: // The caller of this function is responsible to ensure that there are 64 // bytes available from reading at src. simdutf_really_inline block64(const char *src) { chunks[0] = _mm_loadu_si128(reinterpret_cast(src)); chunks[1] = _mm_loadu_si128(reinterpret_cast(src + 16)); chunks[2] = _mm_loadu_si128(reinterpret_cast(src + 32)); chunks[3] = _mm_loadu_si128(reinterpret_cast(src + 48)); } public: // The caller of this function is responsible to ensure that there are 128 // bytes available from reading at src. The data is read into a block64 // structure. simdutf_really_inline block64(const char16_t *src) { const auto m1 = _mm_loadu_si128(reinterpret_cast(src)); const auto m2 = _mm_loadu_si128(reinterpret_cast(src + 8)); const auto m3 = _mm_loadu_si128(reinterpret_cast(src + 16)); const auto m4 = _mm_loadu_si128(reinterpret_cast(src + 24)); const auto m5 = _mm_loadu_si128(reinterpret_cast(src + 32)); const auto m6 = _mm_loadu_si128(reinterpret_cast(src + 40)); const auto m7 = _mm_loadu_si128(reinterpret_cast(src + 48)); const auto m8 = _mm_loadu_si128(reinterpret_cast(src + 56)); chunks[0] = _mm_packus_epi16(m1, m2); chunks[1] = _mm_packus_epi16(m3, m4); chunks[2] = _mm_packus_epi16(m5, m6); chunks[3] = _mm_packus_epi16(m7, m8); } public: simdutf_really_inline void copy_block(char *output) { _mm_storeu_si128(reinterpret_cast<__m128i *>(output), chunks[0]); _mm_storeu_si128(reinterpret_cast<__m128i *>(output + 16), chunks[1]); _mm_storeu_si128(reinterpret_cast<__m128i *>(output + 32), chunks[2]); _mm_storeu_si128(reinterpret_cast<__m128i *>(output + 48), chunks[3]); } public: simdutf_really_inline uint64_t compress_block(uint64_t mask, char *output) { if (is_power_of_two(mask)) { return compress_block_single(mask, output); } uint64_t nmask = ~mask; compress(chunks[0], uint16_t(mask), output); compress(chunks[1], uint16_t(mask >> 16), output + count_ones(nmask & 0xFFFF)); compress(chunks[2], uint16_t(mask >> 32), output + count_ones(nmask & 0xFFFFFFFF)); compress(chunks[3], uint16_t(mask >> 48), output + count_ones(nmask & 0xFFFFFFFFFFFFULL)); return count_ones(nmask); } private: simdutf_really_inline size_t compress_block_single(uint64_t mask, char *output) { const size_t pos64 = trailing_zeroes(mask); const int8_t pos = pos64 & 0xf; switch (pos64 >> 4) { case 0b00: { const __m128i v0 = _mm_set1_epi8(char(pos - 1)); const __m128i v1 = _mm_setr_epi8(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15); const __m128i v2 = _mm_cmpgt_epi8(v1, v0); const __m128i sh = _mm_sub_epi8(v1, v2); const __m128i compressed = _mm_shuffle_epi8(chunks[0], sh); _mm_storeu_si128((__m128i *)(output + 0 * 16), compressed); _mm_storeu_si128((__m128i *)(output + 1 * 16 - 1), chunks[1]); _mm_storeu_si128((__m128i *)(output + 2 * 16 - 1), chunks[2]); _mm_storeu_si128((__m128i *)(output + 3 * 16 - 1), chunks[3]); } break; case 0b01: { _mm_storeu_si128((__m128i *)(output + 0 * 16), chunks[0]); const __m128i v0 = _mm_set1_epi8(char(pos - 1)); const __m128i v1 = _mm_setr_epi8(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15); const __m128i v2 = _mm_cmpgt_epi8(v1, v0); const __m128i sh = _mm_sub_epi8(v1, v2); const __m128i compressed = _mm_shuffle_epi8(chunks[1], sh); _mm_storeu_si128((__m128i *)(output + 1 * 16), compressed); _mm_storeu_si128((__m128i *)(output + 2 * 16 - 1), chunks[2]); _mm_storeu_si128((__m128i *)(output + 3 * 16 - 1), chunks[3]); } break; case 0b10: { _mm_storeu_si128((__m128i *)(output + 0 * 16), chunks[0]); _mm_storeu_si128((__m128i *)(output + 1 * 16), chunks[1]); const __m128i v0 = _mm_set1_epi8(char(pos - 1)); const __m128i v1 = _mm_setr_epi8(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15); const __m128i v2 = _mm_cmpgt_epi8(v1, v0); const __m128i sh = _mm_sub_epi8(v1, v2); const __m128i compressed = _mm_shuffle_epi8(chunks[2], sh); _mm_storeu_si128((__m128i *)(output + 2 * 16), compressed); _mm_storeu_si128((__m128i *)(output + 3 * 16 - 1), chunks[3]); } break; case 0b11: { _mm_storeu_si128((__m128i *)(output + 0 * 16), chunks[0]); _mm_storeu_si128((__m128i *)(output + 1 * 16), chunks[1]); _mm_storeu_si128((__m128i *)(output + 2 * 16), chunks[2]); const __m128i v0 = _mm_set1_epi8(char(pos - 1)); const __m128i v1 = _mm_setr_epi8(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15); const __m128i v2 = _mm_cmpgt_epi8(v1, v0); const __m128i sh = _mm_sub_epi8(v1, v2); const __m128i compressed = _mm_shuffle_epi8(chunks[3], sh); _mm_storeu_si128((__m128i *)(output + 3 * 16), compressed); } break; } return 63; } public: template simdutf_really_inline uint64_t to_base64_mask(uint64_t *error) { uint32_t err0 = 0; uint32_t err1 = 0; uint32_t err2 = 0; uint32_t err3 = 0; uint64_t m0 = to_base64_mask( &chunks[0], &err0); uint64_t m1 = to_base64_mask( &chunks[1], &err1); uint64_t m2 = to_base64_mask( &chunks[2], &err2); uint64_t m3 = to_base64_mask( &chunks[3], &err3); if (!ignore_garbage) { *error = (err0) | ((uint64_t)err1 << 16) | ((uint64_t)err2 << 32) | ((uint64_t)err3 << 48); } return m0 | (m1 << 16) | (m2 << 32) | (m3 << 48); } private: template simdutf_really_inline uint16_t to_base64_mask(__m128i *src, uint32_t *error) { const __m128i ascii_space_tbl = _mm_setr_epi8(0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xa, 0x0, 0xc, 0xd, 0x0, 0x0); // credit: aqrit __m128i delta_asso; if (default_or_url) { delta_asso = _mm_setr_epi8(0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x16); } else if (base64_url) { delta_asso = _mm_setr_epi8(0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xF, 0x0, 0xF); } else { delta_asso = _mm_setr_epi8(0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x0F); } __m128i delta_values; if (default_or_url) { delta_values = _mm_setr_epi8( uint8_t(0xBF), uint8_t(0xE0), uint8_t(0xB9), uint8_t(0x13), uint8_t(0x04), uint8_t(0xBF), uint8_t(0xBF), uint8_t(0xB9), uint8_t(0xB9), uint8_t(0x00), uint8_t(0xFF), uint8_t(0x11), uint8_t(0xFF), uint8_t(0xBF), uint8_t(0x10), uint8_t(0xB9)); } else if (base64_url) { delta_values = _mm_setr_epi8(0x0, 0x0, 0x0, 0x13, 0x4, uint8_t(0xBF), uint8_t(0xBF), uint8_t(0xB9), uint8_t(0xB9), 0x0, 0x11, uint8_t(0xC3), uint8_t(0xBF), uint8_t(0xE0), uint8_t(0xB9), uint8_t(0xB9)); } else { delta_values = _mm_setr_epi8(int8_t(0x00), int8_t(0x00), int8_t(0x00), int8_t(0x13), int8_t(0x04), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9), int8_t(0x00), int8_t(0x10), int8_t(0xC3), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9)); } __m128i check_asso; if (default_or_url) { check_asso = _mm_setr_epi8(0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0E, 0x0B, 0x06); } else if (base64_url) { check_asso = _mm_setr_epi8(0xD, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x3, 0x7, 0xB, 0xE, 0xB, 0x6); } else { check_asso = _mm_setr_epi8(0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0B, 0x0B, 0x0F); } __m128i check_values; if (default_or_url) { check_values = _mm_setr_epi8( uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0xCF), uint8_t(0xBF), uint8_t(0xD5), uint8_t(0xA6), uint8_t(0xB5), uint8_t(0xA1), uint8_t(0x00), uint8_t(0x80), uint8_t(0x00), uint8_t(0x80), uint8_t(0x00), uint8_t(0x80)); } else if (base64_url) { check_values = _mm_setr_epi8(uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0x80), uint8_t(0xCF), uint8_t(0xBF), uint8_t(0xB6), uint8_t(0xA6), uint8_t(0xB5), uint8_t(0xA1), 0x0, uint8_t(0x80), 0x0, uint8_t(0x80), 0x0, uint8_t(0x80)); } else { check_values = _mm_setr_epi8(int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0xCF), int8_t(0xBF), int8_t(0xD5), int8_t(0xA6), int8_t(0xB5), int8_t(0x86), int8_t(0xD1), int8_t(0x80), int8_t(0xB1), int8_t(0x80), int8_t(0x91), int8_t(0x80)); } const __m128i shifted = _mm_srli_epi32(*src, 3); __m128i delta_hash = _mm_avg_epu8(_mm_shuffle_epi8(delta_asso, *src), shifted); if (default_or_url) { delta_hash = _mm_and_si128(delta_hash, _mm_set1_epi8(0xf)); } const __m128i check_hash = _mm_avg_epu8(_mm_shuffle_epi8(check_asso, *src), shifted); const __m128i out = _mm_adds_epi8(_mm_shuffle_epi8(delta_values, delta_hash), *src); const __m128i chk = _mm_adds_epi8(_mm_shuffle_epi8(check_values, check_hash), *src); const int mask = _mm_movemask_epi8(chk); if (!ignore_garbage && mask) { __m128i ascii_space = _mm_cmpeq_epi8(_mm_shuffle_epi8(ascii_space_tbl, *src), *src); *error = (mask ^ _mm_movemask_epi8(ascii_space)); } *src = out; return (uint16_t)mask; } public: simdutf_really_inline void base64_decode_block(char *out) { base64_decode(out, chunks[0]); base64_decode(out + 12, chunks[1]); base64_decode(out + 24, chunks[2]); base64_decode(out + 36, chunks[3]); } public: simdutf_really_inline void base64_decode_block_safe(char *out) { base64_decode(out, chunks[0]); base64_decode(out + 12, chunks[1]); base64_decode(out + 24, chunks[2]); char buffer[16]; base64_decode(buffer, chunks[3]); std::memcpy(out + 36, buffer, 12); } }; /* end file src/westmere/sse_base64.cpp */ #endif // SIMDUTF_FEATURE_BASE64 } // unnamed namespace } // namespace westmere } // namespace simdutf /* begin file src/generic/buf_block_reader.h */ namespace simdutf { namespace westmere { namespace { // Walks through a buffer in block-sized increments, loading the last part with // spaces template struct buf_block_reader { public: simdutf_really_inline buf_block_reader(const uint8_t *_buf, size_t _len); simdutf_really_inline size_t block_index(); simdutf_really_inline bool has_full_block() const; simdutf_really_inline const uint8_t *full_block() const; /** * Get the last block, padded with spaces. * * There will always be a last block, with at least 1 byte, unless len == 0 * (in which case this function fills the buffer with spaces and returns 0. In * particular, if len == STEP_SIZE there will be 0 full_blocks and 1 remainder * block with STEP_SIZE bytes and no spaces for padding. * * @return the number of effective characters in the last block. */ simdutf_really_inline size_t get_remainder(uint8_t *dst) const; simdutf_really_inline void advance(); private: const uint8_t *buf; const size_t len; const size_t lenminusstep; size_t idx; }; // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text_64(const uint8_t *text) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); for (size_t i = 0; i < sizeof(simd8x64); i++) { buf[i] = int8_t(text[i]) < ' ' ? '_' : int8_t(text[i]); } buf[sizeof(simd8x64)] = '\0'; return buf; } // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text(const simd8x64 &in) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); in.store(reinterpret_cast(buf)); for (size_t i = 0; i < sizeof(simd8x64); i++) { if (buf[i] < ' ') { buf[i] = '_'; } } buf[sizeof(simd8x64)] = '\0'; return buf; } simdutf_unused static char *format_mask(uint64_t mask) { static char *buf = reinterpret_cast(malloc(64 + 1)); for (size_t i = 0; i < 64; i++) { buf[i] = (mask & (size_t(1) << i)) ? 'X' : ' '; } buf[64] = '\0'; return buf; } template simdutf_really_inline buf_block_reader::buf_block_reader(const uint8_t *_buf, size_t _len) : buf{_buf}, len{_len}, lenminusstep{len < STEP_SIZE ? 0 : len - STEP_SIZE}, idx{0} {} template simdutf_really_inline size_t buf_block_reader::block_index() { return idx; } template simdutf_really_inline bool buf_block_reader::has_full_block() const { return idx < lenminusstep; } template simdutf_really_inline const uint8_t * buf_block_reader::full_block() const { return &buf[idx]; } template simdutf_really_inline size_t buf_block_reader::get_remainder(uint8_t *dst) const { if (len == idx) { return 0; } // memcpy(dst, null, 0) will trigger an error with some sanitizers std::memset(dst, 0x20, STEP_SIZE); // std::memset STEP_SIZE because it is more efficient // to write out 8 or 16 bytes at once. std::memcpy(dst, buf + idx, len - idx); return len - idx; } template simdutf_really_inline void buf_block_reader::advance() { idx += STEP_SIZE; } } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/buf_block_reader.h */ #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ namespace simdutf { namespace westmere { namespace { namespace utf8_validation { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } // // Return nonzero if there are incomplete multibyte characters at the end of the // block: e.g. if there is a 4-byte character, but it is 3 bytes from the end. // simdutf_really_inline simd8 is_incomplete(const simd8 input) { // If the previous input's last 3 bytes match this, they're too short (they // ended at EOF): // ... 1111____ 111_____ 11______ static const uint8_t max_array[32] = {255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0b11110000u - 1, 0b11100000u - 1, 0b11000000u - 1}; const simd8 max_value( &max_array[sizeof(max_array) - sizeof(simd8)]); return input.gt_bits(max_value); } struct utf8_checker { // If this is nonzero, there has been a UTF-8 error. simd8 error; // The last input we received simd8 prev_input_block; // Whether the last input we received was incomplete (used for ASCII fast // path) simd8 prev_incomplete; // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } // The only problem that can happen at EOF is that a multibyte character is // too short or a byte value too large in the last bytes: check_special_cases // only checks for bytes too large in the first of two bytes. simdutf_really_inline void check_eof() { // If the previous block had incomplete UTF-8 characters at the end, an // ASCII block can't possibly finish them. this->error |= this->prev_incomplete; } simdutf_really_inline void check_next_input(const simd8x64 &input) { if (simdutf_likely(is_ascii(input))) { this->error |= this->prev_incomplete; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. static_assert((simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } this->prev_incomplete = is_incomplete(input.chunks[simd8x64::NUM_CHUNKS - 1]); this->prev_input_block = input.chunks[simd8x64::NUM_CHUNKS - 1]; } } // do not forget to call check_eof! simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_validation using utf8_validation::utf8_checker; } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ /* begin file src/generic/utf8_validation/utf8_validator.h */ namespace simdutf { namespace westmere { namespace { namespace utf8_validation { /** * Validates that the string is actual UTF-8. */ template bool generic_validate_utf8(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); return !c.errors(); } bool generic_validate_utf8(const char *input, size_t length) { return generic_validate_utf8( reinterpret_cast(input), length); } /** * Validates that the string is actual UTF-8 and stops on errors. */ template result generic_validate_utf8_with_errors(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input + count), length - count); res.count += count; return res; } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input) + count, length - count); res.count += count; return res; } else { return result(error_code::SUCCESS, length); } } result generic_validate_utf8_with_errors(const char *input, size_t length) { return generic_validate_utf8_with_errors( reinterpret_cast(input), length); } } // namespace utf8_validation } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf8_validation/utf8_validator.h */ #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_ASCII /* begin file src/generic/ascii_validation.h */ namespace simdutf { namespace westmere { namespace { namespace ascii_validation { bool generic_validate_ascii(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); uint8_t blocks[64]{}; simd::simd8x64 running_or(blocks); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); running_or |= in; reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); running_or |= in; return running_or.is_ascii(); } result generic_validate_ascii_with_errors(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } else { return result(error_code::SUCCESS, length); } } } // namespace ascii_validation } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/ascii_validation.h */ #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 // transcoding from UTF-8 to UTF-16 /* begin file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ namespace simdutf { namespace westmere { namespace { namespace utf8_to_utf16 { using namespace simd; template simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char16_t *utf16_output) noexcept { // The implementation is not specific to haswell and should be moved to the // generic directory. size_t pos = 0; char16_t *start{utf16_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { // this loop could be unrolled further. For example, we could process the // mask far more than 64 bytes. simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // Slow path. We hope that the compiler will recognize that this is a slow // path. Anything that is not a continuation mask is a 'leading byte', // that is, the start of a new code point. uint64_t utf8_continuation_mask = in.lt(-65 + 1); // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_leading_mask = ~utf8_continuation_mask; // The *start* of code points is not so useful, rather, we want the *end* // of code points. uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times when using solely // the slow/regular path, and at least four times if there are fast paths. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. // // Thus we may allow convert_masked_utf8_to_utf16 to process // more bytes at a time under a fast-path mode where 16 bytes // are consumed at once (e.g., when encountering ASCII). size_t consumed = convert_masked_utf8_to_utf16( input + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } utf16_output += scalar::utf8_to_utf16::convert_valid( input + pos, size - pos, utf16_output); return utf16_output - start; } } // namespace utf8_to_utf16 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ /* begin file src/generic/utf8_to_utf16/utf8_to_utf16.h */ namespace simdutf { namespace westmere { namespace { namespace utf8_to_utf16 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } template simdutf_really_inline size_t convert(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf16::convert( in + pos, size - pos, utf16_output); if (howmany == 0) { return 0; } utf16_output += howmany; } return utf16_output - start; } template simdutf_really_inline result convert_with_errors(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf16_output += res.count; } } return result(error_code::SUCCESS, utf16_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf16 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf8_to_utf16/utf8_to_utf16.h */ /* begin file src/generic/utf8/utf16_length_from_utf8_bytemask.h */ namespace simdutf { namespace westmere { namespace { namespace utf8 { using namespace simd; simdutf_really_inline size_t utf16_length_from_utf8_bytemask(const char *in, size_t size) { using vector_i8 = simd8; using vector_u8 = simd8; using vector_u64 = simd64; constexpr size_t N = vector_i8::SIZE; constexpr size_t max_iterations = 255 / 2; auto counters = vector_u64::zero(); auto local = vector_u8::zero(); size_t iterations = 0; size_t pos = 0; size_t count = 0; for (; pos + N <= size; pos += N) { const auto input = vector_i8::load(reinterpret_cast(in + pos)); const auto continuation = input > int8_t(-65); const auto utf_4bytes = vector_u8(input.value) >= uint8_t(240); local -= vector_u8(continuation); local -= vector_u8(utf_4bytes); iterations += 1; if (iterations == max_iterations) { counters += sum_8bytes(local); local = vector_u8::zero(); iterations = 0; } } if (iterations > 0) { count += local.sum_bytes(); } count += counters.sum(); return count + scalar::utf8::utf16_length_from_utf8(in + pos, size - pos); } } // namespace utf8 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf8/utf16_length_from_utf8_bytemask.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ namespace simdutf { namespace westmere { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char32_t *utf32_output) noexcept { size_t pos = 0; char32_t *start{utf32_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_continuation_mask = in.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; size_t max_starting_point = (pos + 64) - 12; while (pos < max_starting_point) { size_t consumed = convert_masked_utf8_to_utf32( input + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } } } utf32_output += scalar::utf8_to_utf32::convert_valid(input + pos, size - pos, utf32_output); return utf32_output - start; } } // namespace utf8_to_utf32 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ /* begin file src/generic/utf8_to_utf32/utf8_to_utf32.h */ namespace simdutf { namespace westmere { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } simdutf_really_inline size_t convert(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 words when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // we have an error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf32::convert(in + pos, size - pos, utf32_output); if (howmany == 0) { return 0; } utf32_output += howmany; } return utf32_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } if (pos < size) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf32_output += res.count; } } return result(error_code::SUCCESS, utf32_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf32 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf8_to_utf32/utf8_to_utf32.h */ /* begin file src/generic/utf32.h */ #include namespace simdutf { namespace westmere { namespace { namespace utf32 { template T min(T a, T b) { return a <= b ? a : b; } simdutf_really_inline size_t utf8_length_from_utf32(const char32_t *input, size_t length) { using vector_u32 = simd32; const char32_t *start = input; // we add up to three ones in a single iteration (see the vectorized loop in // section #2 below) const size_t max_increment = 3; const size_t N = vector_u32::ELEMENTS; #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP const auto v_0000007f = vector_u32::splat(0x0000007f); const auto v_000007ff = vector_u32::splat(0x000007ff); const auto v_0000ffff = vector_u32::splat(0x0000ffff); #else const auto v_ffffff80 = vector_u32::splat(0xffffff80); const auto v_fffff800 = vector_u32::splat(0xfffff800); const auto v_ffff0000 = vector_u32::splat(0xffff0000); const auto one = vector_u32::splat(1); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP size_t counter = 0; // 1. vectorized loop unrolled 4 times { // we use vector of uint32 counters, this is why this limit is used const size_t max_iterations = std::numeric_limits::max() / (max_increment * 4); size_t blocks = length / (N * 4); length -= blocks * (N * 4); while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; simd32 acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in0 = vector_u32(input + 0 * N); const auto in1 = vector_u32(input + 1 * N); const auto in2 = vector_u32(input + 2 * N); const auto in3 = vector_u32(input + 3 * N); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in0 > v_0000007f); acc -= as_vector_u32(in1 > v_0000007f); acc -= as_vector_u32(in2 > v_0000007f); acc -= as_vector_u32(in3 > v_0000007f); acc -= as_vector_u32(in0 > v_000007ff); acc -= as_vector_u32(in1 > v_000007ff); acc -= as_vector_u32(in2 > v_000007ff); acc -= as_vector_u32(in3 > v_000007ff); acc -= as_vector_u32(in0 > v_0000ffff); acc -= as_vector_u32(in1 > v_0000ffff); acc -= as_vector_u32(in2 > v_0000ffff); acc -= as_vector_u32(in3 > v_0000ffff); #else acc += min(one, in0 & v_ffffff80); acc += min(one, in1 & v_ffffff80); acc += min(one, in2 & v_ffffff80); acc += min(one, in3 & v_ffffff80); acc += min(one, in0 & v_fffff800); acc += min(one, in1 & v_fffff800); acc += min(one, in2 & v_fffff800); acc += min(one, in3 & v_fffff800); acc += min(one, in0 & v_ffff0000); acc += min(one, in1 & v_ffff0000); acc += min(one, in2 & v_ffff0000); acc += min(one, in3 & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += 4 * N; } counter += acc.sum(); } } // 2. vectorized loop for tail { const size_t max_iterations = std::numeric_limits::max() / max_increment; size_t blocks = length / N; length -= blocks * N; while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; auto acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in = vector_u32(input); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in > v_0000007f); acc -= as_vector_u32(in > v_000007ff); acc -= as_vector_u32(in > v_0000ffff); #else acc += min(one, in & v_ffffff80); acc += min(one, in & v_fffff800); acc += min(one, in & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += N; } counter += acc.sum(); } } const size_t consumed = input - start; if (consumed != 0) { // We don't count 0th bytes in the vectorized loops above, this // is why we need to count them in the end. counter += consumed; } return counter + scalar::utf32::utf8_length_from_utf32(input, length); } } // namespace utf32 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf32.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 /* begin file src/generic/utf8.h */ namespace simdutf { namespace westmere { namespace { namespace utf8 { using namespace simd; simdutf_really_inline size_t count_code_points(const char *in, size_t size) { size_t pos = 0; size_t count = 0; for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.gt(-65); count += count_ones(utf8_continuation_mask); } return count + scalar::utf8::count_code_points(in + pos, size - pos); } #ifdef SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t count_code_points_bytemask(const char *in, size_t size) { using vector_i8 = simd8; using vector_u8 = simd8; using vector_u64 = simd64; constexpr size_t N = vector_i8::SIZE; constexpr size_t max_iterations = 255 / 4; size_t pos = 0; size_t count = 0; auto counters = vector_u64::zero(); auto local = vector_u8::zero(); size_t iterations = 0; for (; pos + 4 * N <= size; pos += 4 * N) { const auto input0 = simd8::load(reinterpret_cast(in + pos + 0 * N)); const auto input1 = simd8::load(reinterpret_cast(in + pos + 1 * N)); const auto input2 = simd8::load(reinterpret_cast(in + pos + 2 * N)); const auto input3 = simd8::load(reinterpret_cast(in + pos + 3 * N)); const auto mask0 = input0 > int8_t(-65); const auto mask1 = input1 > int8_t(-65); const auto mask2 = input2 > int8_t(-65); const auto mask3 = input3 > int8_t(-65); local -= vector_u8(mask0); local -= vector_u8(mask1); local -= vector_u8(mask2); local -= vector_u8(mask3); iterations += 1; if (iterations == max_iterations) { counters += sum_8bytes(local); local = vector_u8::zero(); iterations = 0; } } if (iterations > 0) { count += local.sum_bytes(); } count += counters.sum(); return count + scalar::utf8::count_code_points(in + pos, size - pos); } #endif // SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t utf16_length_from_utf8(const char *in, size_t size) { size_t pos = 0; size_t count = 0; // This algorithm could no doubt be improved! for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.lt(-65 + 1); // We count one word for anything that is not a continuation (so // leading bytes). count += 64 - count_ones(utf8_continuation_mask); int64_t utf8_4byte = input.gteq_unsigned(240); count += count_ones(utf8_4byte); } return count + scalar::utf8::utf16_length_from_utf8(in + pos, size - pos); } } // namespace utf8 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf8.h */ #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 /* begin file src/generic/utf16.h */ namespace simdutf { namespace westmere { namespace { namespace utf16 { template simdutf_really_inline size_t count_code_points(const char16_t *in, size_t size) { size_t pos = 0; size_t count = 0; for (; pos < size / 32 * 32; pos += 32) { simd16x32 input(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input.swap_bytes(); } uint64_t not_pair = input.not_in_range(0xDC00, 0xDFFF); count += count_ones(not_pair) / 2; } return count + scalar::utf16::count_code_points(in + pos, size - pos); } template simdutf_really_inline size_t utf8_length_from_utf16(const char16_t *in, size_t size) { size_t pos = 0; size_t count = 0; // This algorithm could no doubt be improved! for (; pos < size / 32 * 32; pos += 32) { simd16x32 input(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input.swap_bytes(); } uint64_t ascii_mask = input.lteq(0x7F); uint64_t twobyte_mask = input.lteq(0x7FF); uint64_t not_pair_mask = input.not_in_range(0xD800, 0xDFFF); size_t ascii_count = count_ones(ascii_mask) / 2; size_t twobyte_count = count_ones(twobyte_mask & ~ascii_mask) / 2; size_t threebyte_count = count_ones(not_pair_mask & ~twobyte_mask) / 2; size_t fourbyte_count = 32 - count_ones(not_pair_mask) / 2; count += 2 * fourbyte_count + 3 * threebyte_count + 2 * twobyte_count + ascii_count; } return count + scalar::utf16::utf8_length_from_utf16(in + pos, size - pos); } template simdutf_really_inline size_t utf32_length_from_utf16(const char16_t *in, size_t size) { return count_code_points(in, size); } simdutf_really_inline void change_endianness_utf16(const char16_t *in, size_t size, char16_t *output) { size_t pos = 0; while (pos < size / 32 * 32) { simd16x32 input(reinterpret_cast(in + pos)); input.swap_bytes(); input.store(reinterpret_cast(output)); pos += 32; output += 32; } scalar::utf16::change_endianness_utf16(in + pos, size - pos, output); } } // namespace utf16 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf16.h */ /* begin file src/generic/utf16/utf8_length_from_utf16_bytemask.h */ namespace simdutf { namespace westmere { namespace { namespace utf16 { using namespace simd; template simdutf_really_inline size_t utf8_length_from_utf16_bytemask(const char16_t *in, size_t size) { size_t pos = 0; using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; const auto one = vector_u16::splat(1); auto v_count = vector_u16::zero(); // each char16 yields at least one byte size_t count = size / N * N; // in a single iteration the increment is 0, 1 or 2, despite we have // three additions constexpr size_t max_iterations = 65535 / 2; size_t iteration = max_iterations; for (; pos < size / N * N; pos += N) { auto input = vector_u16::load(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input = input.swap_bytes(); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate const auto is_surrogate = ((input & uint16_t(0xf800)) == uint16_t(0xd800)); // c0 - chars that yield 2- or 3-byte UTF-8 codes const auto c0 = min(input & uint16_t(0xff80), one); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) const auto c1 = min(input & uint16_t(0xf800), one); /* Explanation how the counting works. In the case of a non-surrogate character we count: * always 1 -- see how `count` is initialized above; * c0 = 1 if the current char yields 2 or 3 bytes; * c1 = 1 if the current char yields 3 bytes. Thus, we always have correct count for the current char: from 1, 2 or 3 bytes. A trickier part is how we count surrogate pairs. Whether we encounter a surrogate (low or high), we count it as 3 chars and then minus 1 (`is_surrogate` is -1 or 0). Each surrogate char yields 2. A surrogate pair, that is a low surrogate followed by a high one, yields the expected 4 bytes. It also correctly handles cases when low surrogate is processed by the this loop, but high surrogate is counted by the scalar procedure. The scalar procedure uses exactly the described approach, thanks to that for valid UTF-16 strings it always count correctly. */ v_count += c0; v_count += c1; v_count += vector_u16(is_surrogate); iteration -= 1; if (iteration == 0) { count += v_count.sum(); v_count = vector_u16::zero(); iteration = max_iterations; } } if (iteration > 0) { count += v_count.sum(); } return count + scalar::utf16::utf8_length_from_utf16(in + pos, size - pos); } template simdutf_really_inline result utf8_length_from_utf16_with_replacement(const char16_t *in, size_t size) { using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; if (N + 1 > size) { return scalar::utf16::utf8_length_from_utf16_with_replacement( in, size); } // special case for short inputs size_t pos = 0; bool any_surrogates = false; const auto one = vector_u16::splat(1); auto v_count = vector_u16::zero(); auto v_mismatched_count = vector_u16::zero(); size_t count = 0; size_t mismatched_count = 0; // in a single iteration the increment is 0, 1 or 2, despite we have // three additions constexpr size_t max_iterations = 65535 / 2; size_t iteration = max_iterations; if (scalar::utf16::is_low_surrogate(in[0])) { any_surrogates = true; mismatched_count += 1; } for (; pos < (size - 1) / N * N; pos += N) { auto input = vector_u16::load(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input = input.swap_bytes(); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate const auto is_surrogate = ((input & uint16_t(0xf800)) == uint16_t(0xd800)); // c0 - chars that yield 2- or 3-byte UTF-8 codes const auto c0 = min(input & uint16_t(0xff80), one); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) const auto c1 = min(input & uint16_t(0xf800), one); v_count += c0; v_count += c1; v_count += vector_u16(is_surrogate); if (is_surrogate.to_bitmask() != 0 || scalar::utf16::is_low_surrogate(in[pos + N])) { any_surrogates = true; auto input_next = vector_u16::load(reinterpret_cast(in + pos + 1)); if (!match_system(big_endian)) { input_next = input_next.swap_bytes(); } const auto lb_masked = input & (0xfc00); const auto block_masked = input_next & (0xfc00); const auto lb_is_high = lb_masked == (0xd800); const auto block_is_low = block_masked == (0xdc00); const auto illseq = min(vector_u16(lb_is_high ^ block_is_low), one); v_mismatched_count += illseq; } iteration -= 1; if (iteration == 0) { count += v_count.sum(); v_count = vector_u16::zero(); mismatched_count += v_mismatched_count.sum(); v_mismatched_count = vector_u16::zero(); iteration = max_iterations; } } if (iteration > 0) { count += v_count.sum(); mismatched_count += v_mismatched_count.sum(); } if (scalar::utf16::is_low_surrogate(in[pos])) { any_surrogates = true; if (!scalar::utf16::is_high_surrogate(in[pos - 1])) { mismatched_count -= 1; count += 2; pos += 1; } } count += pos; count += mismatched_count; if (scalar::utf16::is_high_surrogate(in[pos - 1])) { any_surrogates = true; if (pos == size) { count += 2; } else if (scalar::utf16::is_low_surrogate(in[pos])) { pos += 1; count += 2; } } result scalar_result = scalar::utf16::utf8_length_from_utf16_with_replacement( in + pos, size - pos); return {any_surrogates ? SURROGATE : scalar_result.error, count + scalar_result.count}; } } // namespace utf16 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf16/utf8_length_from_utf16_bytemask.h */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/validate_utf16.h */ namespace simdutf { namespace westmere { namespace { namespace utf16 { /* UTF-16 validation -------------------------------------------------- In UTF-16 code units in range 0xD800 to 0xDFFF have special meaning. In a vectorized algorithm we want to examine the most significant nibble in order to select a fast path. If none of highest nibbles are 0xD (13), than we are sure that UTF-16 chunk in a vector register is valid. Let us analyze what we need to check if the nibble is 0xD. The value of the preceding nibble determines what we have: 0xd000 .. 0xd7ff - a valid word 0xd800 .. 0xdbff - low surrogate 0xdc00 .. 0xdfff - high surrogate Other constraints we have to consider: - there must not be two consecutive low surrogates (0xd800 .. 0xdbff) - there must not be two consecutive high surrogates (0xdc00 .. 0xdfff) - there must not be sole low surrogate nor high surrogate We are going to build three bitmasks based on the 3rd nibble: - V = valid word, - L = low surrogate (0xd800 .. 0xdbff) - H = high surrogate (0xdc00 .. 0xdfff) 0 1 2 3 4 5 6 7 <--- word index [ V | L | H | L | H | V | V | L ] 1 0 0 0 0 1 1 0 - V = valid masks 0 1 0 1 0 0 0 1 - L = low surrogate 0 0 1 0 1 0 0 0 - H high surrogate 1 0 0 0 0 1 1 0 V = valid masks 0 1 0 1 0 0 0 0 a = L & (H >> 1) 0 0 1 0 1 0 0 0 b = a << 1 1 1 1 1 1 1 1 0 c = V | a | b ^ the last bit can be zero, we just consume 7 code units and recheck this word in the next iteration */ template const result validate_utf16_with_errors(const char16_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { return result(error_code::SUCCESS, 0); } const char16_t *start = input; const char16_t *end = input + size; const auto v_d8 = simd8::splat(0xd8); const auto v_f8 = simd8::splat(0xf8); const auto v_fc = simd8::splat(0xfc); const auto v_dc = simd8::splat(0xdc); while (input + simd16::SIZE * 2 < end) { // 0. Load data: since the validation takes into account only higher // byte of each word, we compress the two vectors into one which // consists only the higher bytes. auto in0 = simd16(input); auto in1 = simd16(input + simd16::SIZE / sizeof(char16_t)); // Function `utf16_gather_high_bytes` consumes two vectors of UTF-16 // and yields a single vector having only higher bytes of characters. const auto in = utf16_gather_high_bytes(in0, in1); // 1. Check whether we have any 0xD800..DFFF word (0b1101'1xxx'yyyy'yyyy). const auto surrogates_wordmask = (in & v_f8) == v_d8; const uint16_t surrogates_bitmask = static_cast(surrogates_wordmask.to_bitmask()); if (surrogates_bitmask == 0x0000) { input += 16; } else { // 2. We have some surrogates that have to be distinguished: // - low surrogates: 0b1101'10xx'yyyy'yyyy (0xD800..0xDBFF) // - high surrogates: 0b1101'11xx'yyyy'yyyy (0xDC00..0xDFFF) // // Fact: high surrogate has 11th bit set (3rd bit in the higher byte) // V - non-surrogate code units // V = not surrogates_wordmask const uint16_t V = static_cast(~surrogates_bitmask); // H - word-mask for high surrogates: the six highest bits are 0b1101'11 const auto vH = (in & v_fc) == v_dc; const uint16_t H = static_cast(vH.to_bitmask()); // L - word mask for low surrogates // L = not H and surrogates_wordmask const uint16_t L = static_cast(~H & surrogates_bitmask); const uint16_t a = static_cast( L & (H >> 1)); // A low surrogate must be followed by high one. // (A low surrogate placed in the 7th register's word // is an exception we handle.) const uint16_t b = static_cast( a << 1); // Just mark that the opinput - startite fact is hold, // thanks to that we have only two masks for valid case. const uint16_t c = static_cast( V | a | b); // Combine all the masks into the final one. if (c == 0xffff) { // The whole input register contains valid UTF-16, i.e., // either single code units or proper surrogate pairs. input += 16; } else if (c == 0x7fff) { // The 15 lower code units of the input register contains valid UTF-16. // The 15th word may be either a low or high surrogate. It the next // iteration we 1) check if the low surrogate is followed by a high // one, 2) reject sole high surrogate. input += 15; } else { return result(error_code::SURROGATE, input - start); } } } return result(error_code::SUCCESS, input - start); } template const result validate_utf16_as_ascii_with_errors(const char16_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { return result(error_code::SUCCESS, 0); } size_t pos = 0; for (; pos < size / 32 * 32; pos += 32) { simd16x32 input_vec( reinterpret_cast(input + pos)); if (!match_system(big_endian)) { input_vec.swap_bytes(); } uint64_t matches = input_vec.lteq(uint16_t(0x7f)); if (~matches) { // Found a match, return the first one int index = trailing_zeroes(~matches) / 2; return result(error_code::TOO_LARGE, pos + index); } } // Scalar tail while (pos < size) { char16_t v = big_endian ? scalar::u16_swap_bytes(input[pos]) : input[pos]; if (v > 0x7F) { return result(error_code::TOO_LARGE, pos); } pos++; } return result(error_code::SUCCESS, size); } } // namespace utf16 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/validate_utf16.h */ #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/generic/utf8_to_latin1/utf8_to_latin1.h */ namespace simdutf { namespace westmere { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // For UTF-8 to Latin 1, we can allow any ASCII character, and any // continuation byte, but the non-ASCII leading bytes must be 0b11000011 or // 0b11000010 and nothing else. // // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ constexpr const uint8_t FORBIDDEN = 0xff; const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ FORBIDDEN, // 1110____ ________ FORBIDDEN, // 1111____ ________ FORBIDDEN); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ FORBIDDEN, // ____0101 ________ FORBIDDEN, // ____011_ ________ FORBIDDEN, FORBIDDEN, // ____1___ ________ FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, // ____1101 ________ FORBIDDEN, FORBIDDEN, FORBIDDEN); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); this->error |= check_special_cases(input, prev1); } simdutf_really_inline size_t convert(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 16; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert(in + pos, size - pos, latin1_output); if (howmany == 0) { return 0; } latin1_output += howmany; } return latin1_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } uint64_t utf8_continuation_mask = input.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written latin1_output += res.count; } } return result(error_code::SUCCESS, latin1_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_latin1 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/utf8_to_latin1/utf8_to_latin1.h */ /* begin file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ namespace simdutf { namespace westmere { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline size_t convert_valid(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the last // 16 bytes, and if the data is valid, then it is entirely safe because 16 // UTF-8 bytes generate much more than 8 bytes. However, you cannot generally // assume that you have valid UTF-8 input, so we are going to go back from the // end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert_valid(in + pos, size - pos, latin1_output); latin1_output += howmany; } return latin1_output - start; } } // namespace utf8_to_latin1 } // namespace } // namespace westmere } // namespace simdutf // namespace simdutf /* end file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/validate_utf32.h */ namespace simdutf { namespace westmere { namespace { namespace utf32 { simdutf_really_inline bool validate(const char32_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { // empty input is valid UTF-32. protect the implementation from // handling nullptr return true; } const char32_t *end = input + size; using vector_u32 = simd32; const auto standardmax = vector_u32::splat(0x10ffff); const auto offset = vector_u32::splat(0xffff2000); const auto standardoffsetmax = vector_u32::splat(0xfffff7ff); auto currentmax = vector_u32::zero(); auto currentoffsetmax = vector_u32::zero(); constexpr size_t N = vector_u32::ELEMENTS; while (input + N < end) { auto in = vector_u32(input); if (!match_system(endianness::BIG)) { in.swap_bytes(); } currentmax = max(currentmax, in); currentoffsetmax = max(currentoffsetmax, in + offset); input += N; } const auto too_large = currentmax > standardmax; if (too_large.any()) { return false; } const auto surrogate = currentoffsetmax > standardoffsetmax; if (surrogate.any()) { return false; } return scalar::utf32::validate(input, end - input); } simdutf_really_inline result validate_with_errors(const char32_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { // empty input is valid UTF-32. protect the implementation from // handling nullptr return result(error_code::SUCCESS, 0); } const char32_t *start = input; const char32_t *end = input + size; using vector_u32 = simd32; const auto standardmax = vector_u32::splat(0x10ffff + 1); const auto surrogate_mask = vector_u32::splat(0xfffff800); const auto surrogate_byte = vector_u32::splat(0x0000d800); constexpr size_t N = vector_u32::ELEMENTS; while (input + N < end) { auto in = vector_u32(input); if (!match_system(endianness::BIG)) { in.swap_bytes(); } const auto too_large = in >= standardmax; const auto surrogate = (in & surrogate_mask) == surrogate_byte; const auto combined = too_large | surrogate; if (simdutf_unlikely(combined.any())) { const size_t consumed = input - start; auto sr = scalar::utf32::validate_with_errors(input, end - input); sr.count += consumed; return sr; } input += N; } const size_t consumed = input - start; auto sr = scalar::utf32::validate_with_errors(input, end - input); sr.count += consumed; return sr; } } // namespace utf32 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/validate_utf32.h */ #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_BASE64 /* begin file src/generic/base64.h */ /** * References and further reading: * * Wojciech Muła, Daniel Lemire, Base64 encoding and decoding at almost the * speed of a memory copy, Software: Practice and Experience 50 (2), 2020. * https://arxiv.org/abs/1910.05109 * * Wojciech Muła, Daniel Lemire, Faster Base64 Encoding and Decoding using AVX2 * Instructions, ACM Transactions on the Web 12 (3), 2018. * https://arxiv.org/abs/1704.00605 * * Simon Josefsson. 2006. The Base16, Base32, and Base64 Data Encodings. * https://tools.ietf.org/html/rfc4648. (2006). Internet Engineering Task Force, * Request for Comments: 4648. * * Alfred Klomp. 2014a. Fast Base64 encoding/decoding with SSE vectorization. * http://www.alfredklomp.com/programming/sse-base64/. (2014). * * Alfred Klomp. 2014b. Fast Base64 stream encoder/decoder in C99, with SIMD * acceleration. https://github.com/aklomp/base64. (2014). * * Hanson Char. 2014. A Fast and Correct Base 64 Codec. (2014). * https://aws.amazon.com/blogs/developer/a-fast-and-correct-base-64-codec/ * * Nick Kopp. 2013. Base64 Encoding on a GPU. * https://www.codeproject.com/Articles/276993/Base-Encoding-on-a-GPU. (2013). */ namespace simdutf { namespace westmere { namespace { namespace base64 { /* The following template function implements API for Base64 decoding. An implementation is responsible for providing the `block64` type and associated methods that perform actual conversion. Please refer to any vectorized implementation to learn the API of these procedures. */ template full_result compress_decode_base64(char *dst, const chartype *src, size_t srclen, base64_options options, last_chunk_handling_options last_chunk_options) { const uint8_t *to_base64 = default_or_url ? tables::base64::to_base64_default_or_url_value : (base64_url ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); auto ri = simdutf::scalar::base64::find_end(src, srclen, options); size_t equallocation = ri.equallocation; size_t equalsigns = ri.equalsigns; srclen = ri.srclen; size_t full_input_length = ri.full_input_length; if (srclen == 0) { if (!ignore_garbage && equalsigns > 0) { return {INVALID_BASE64_CHARACTER, equallocation, 0}; } return {SUCCESS, full_input_length, 0}; } char *end_of_safe_64byte_zone = dst == nullptr ? nullptr : ((srclen + 3) / 4 * 3 >= 63 ? dst + (srclen + 3) / 4 * 3 - 63 : dst); const chartype *const srcinit = src; const char *const dstinit = dst; const chartype *const srcend = src + srclen; constexpr size_t block_size = 6; static_assert(block_size >= 2, "block_size must be at least two"); char buffer[block_size * 64]; char *bufferptr = buffer; if (srclen >= 64) { const chartype *const srcend64 = src + srclen - 64; while (src <= srcend64) { block64 b(src); src += 64; uint64_t error = 0; const uint64_t badcharmask = b.to_base64_mask(&error); if (!ignore_garbage && error) { src -= 64; const size_t error_offset = trailing_zeroes(error); return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit + error_offset), size_t(dst - dstinit)}; } if (badcharmask != 0) { bufferptr += b.compress_block(badcharmask, bufferptr); } else if (bufferptr != buffer) { b.copy_block(bufferptr); bufferptr += 64; } else { if (dst >= end_of_safe_64byte_zone) { b.base64_decode_block_safe(dst); } else { b.base64_decode_block(dst); } dst += 48; } if (bufferptr >= (block_size - 1) * 64 + buffer) { for (size_t i = 0; i < (block_size - 2); i++) { base64_decode_block(dst, buffer + i * 64); dst += 48; } if (dst >= end_of_safe_64byte_zone) { base64_decode_block_safe(dst, buffer + (block_size - 2) * 64); } else { base64_decode_block(dst, buffer + (block_size - 2) * 64); } dst += 48; std::memcpy(buffer, buffer + (block_size - 1) * 64, 64); // 64 might be too much bufferptr -= (block_size - 1) * 64; } } } char *buffer_start = buffer; // Optimization note: if this is almost full, then it is worth our // time, otherwise, we should just decode directly. int last_block = (int)((bufferptr - buffer_start) % 64); if (last_block != 0 && srcend - src + last_block >= 64) { while ((bufferptr - buffer_start) % 64 != 0 && src < srcend) { uint8_t val = to_base64[uint8_t(*src)]; *bufferptr = char(val); if (!ignore_garbage && (!scalar::base64::is_eight_byte(*src) || val > 64)) { return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit)}; } bufferptr += (val <= 63); src++; } } for (; buffer_start + 64 <= bufferptr; buffer_start += 64) { if (dst >= end_of_safe_64byte_zone) { base64_decode_block_safe(dst, buffer_start); } else { base64_decode_block(dst, buffer_start); } dst += 48; } if ((bufferptr - buffer_start) % 64 != 0) { while (buffer_start + 4 < bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; #if !SIMDUTF_IS_BIG_ENDIAN triple = scalar::u32_swap_bytes(triple); #endif std::memcpy(dst, &triple, 3); dst += 3; buffer_start += 4; } if (buffer_start + 4 <= bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; #if !SIMDUTF_IS_BIG_ENDIAN triple = scalar::u32_swap_bytes(triple); #endif std::memcpy(dst, &triple, 3); dst += 3; buffer_start += 4; } // we may have 1, 2 or 3 bytes left and we need to decode them so let us // backtrack int leftover = int(bufferptr - buffer_start); while (leftover > 0) { if (!ignore_garbage) { while (to_base64[uint8_t(*(src - 1))] == 64) { src--; } } else { while (to_base64[uint8_t(*(src - 1))] >= 64) { src--; } } src--; leftover--; } } if (src < srcend + equalsigns) { full_result r = scalar::base64::base64_tail_decode( dst, src, srcend - src, equalsigns, options, last_chunk_options); r = scalar::base64::patch_tail_result( r, size_t(src - srcinit), size_t(dst - dstinit), equallocation, full_input_length, last_chunk_options); // When is_partial(last_chunk_options) is true, we must either end with // the end of the stream (beyond whitespace) or right after a non-ignorable // character or at the very beginning of the stream. // See https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 if (is_partial(last_chunk_options) && r.error == error_code::SUCCESS && r.input_count < full_input_length) { // First check if we can extend the input to the end of the stream while (r.input_count < full_input_length && base64_ignorable(*(srcinit + r.input_count), options)) { r.input_count++; } // If we are still not at the end of the stream, then we must backtrack // to the last non-ignorable character. if (r.input_count < full_input_length) { while (r.input_count > 0 && base64_ignorable(*(srcinit + r.input_count - 1), options)) { r.input_count--; } } } return r; } if (!ignore_garbage && equalsigns > 0) { if ((size_t(dst - dstinit) % 3 == 0) || ((size_t(dst - dstinit) % 3) + 1 + equalsigns != 4)) { return {INVALID_BASE64_CHARACTER, equallocation, size_t(dst - dstinit)}; } } return {SUCCESS, srclen, size_t(dst - dstinit)}; } } // namespace base64 } // unnamed namespace } // namespace westmere } // namespace simdutf /* end file src/generic/base64.h */ /* begin file src/generic/find.h */ namespace simdutf { namespace westmere { namespace { namespace util { simdutf_really_inline const char *find(const char *start, const char *end, char character) noexcept { // Handle empty or invalid range if (start >= end) return end; // Align the start pointer to 64 bytes uintptr_t misalignment = reinterpret_cast(start) % 64; if (misalignment != 0) { size_t adjustment = 64 - misalignment; if (size_t(std::distance(start, end)) < adjustment) { adjustment = std::distance(start, end); } for (size_t i = 0; i < adjustment; i++) { if (start[i] == character) { return start + i; } } start += adjustment; } // Main loop for 64-byte aligned data for (; std::distance(start, end) >= 64; start += 64) { simd8x64 input(reinterpret_cast(start)); uint64_t matches = input.eq(uint8_t(character)); if (matches != 0) { // Found a match, return the first one int index = trailing_zeroes(matches); return start + index; } } return std::find(start, end, character); } simdutf_really_inline const char16_t * find(const char16_t *start, const char16_t *end, char16_t character) noexcept { // Handle empty or invalid range if (start >= end) return end; // Align the start pointer to 64 bytes if misalignment is even uintptr_t misalignment = reinterpret_cast(start) % 64; if (misalignment != 0 && misalignment % 2 == 0) { size_t adjustment = (64 - misalignment) / sizeof(char16_t); if (size_t(std::distance(start, end)) < adjustment) { adjustment = std::distance(start, end); } for (size_t i = 0; i < adjustment; i++) { if (start[i] == character) { return start + i; } } start += adjustment; } // Main loop for 64-byte aligned data for (; std::distance(start, end) >= 32; start += 32) { simd16x32 input(reinterpret_cast(start)); uint64_t matches = input.eq(uint16_t(character)); if (matches != 0) { // Found a match, return the first one int index = trailing_zeroes(matches) / 2; return start + index; } } return std::find(start, end, character); } } // namespace util } // namespace } // namespace westmere } // namespace simdutf /* end file src/generic/find.h */ #endif // SIMDUTF_FEATURE_BASE64 // // Implementation-specific overrides // namespace simdutf { namespace westmere { #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int implementation::detect_encodings(const char *input, size_t length) const noexcept { // If there is a BOM, then we trust it. auto bom_encoding = simdutf::BOM::check_bom(input, length); if (bom_encoding != encoding_type::unspecified) { return bom_encoding; } int out = 0; uint32_t utf16_err = (length % 2); uint32_t utf32_err = (length % 4); uint32_t ends_with_high = 0; const auto v_d8 = simd8::splat(0xd8); const auto v_f8 = simd8::splat(0xf8); const auto v_fc = simd8::splat(0xfc); const auto v_dc = simd8::splat(0xdc); const __m128i standardmax = _mm_set1_epi32(0x10ffff); const __m128i offset = _mm_set1_epi32(0xffff2000); const __m128i standardoffsetmax = _mm_set1_epi32(0xfffff7ff); __m128i currentmax = _mm_setzero_si128(); __m128i currentoffsetmax = _mm_setzero_si128(); utf8_checker c{}; buf_block_reader<64> reader(reinterpret_cast(input), length); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); // utf8 checks c.check_next_input(in); // utf16le checks auto in0 = simd16(in.chunks[0]); auto in1 = simd16(in.chunks[1]); const auto t0 = in0.shr<8>(); const auto t1 = in1.shr<8>(); const auto packed1 = simd16::pack(t0, t1); auto in2 = simd16(in.chunks[2]); auto in3 = simd16(in.chunks[3]); const auto t2 = in2.shr<8>(); const auto t3 = in3.shr<8>(); const auto packed2 = simd16::pack(t2, t3); const auto surrogates_wordmask_lo = (packed1 & v_f8) == v_d8; const auto surrogates_wordmask_hi = (packed2 & v_f8) == v_d8; const uint32_t surrogates_bitmask = (surrogates_wordmask_hi.to_bitmask() << 16) | surrogates_wordmask_lo.to_bitmask(); const auto vL_lo = (packed1 & v_fc) == v_dc; const auto vL_hi = (packed2 & v_fc) == v_dc; const uint32_t L = (vL_hi.to_bitmask() << 16) | vL_lo.to_bitmask(); const uint32_t H = L ^ surrogates_bitmask; utf16_err |= (((H << 1) | ends_with_high) != L); ends_with_high = (H & 0x80000000) != 0; // utf32le checks currentmax = _mm_max_epu32(in.chunks[0], currentmax); currentoffsetmax = _mm_max_epu32(_mm_add_epi32(in.chunks[0], offset), currentoffsetmax); currentmax = _mm_max_epu32(in.chunks[1], currentmax); currentoffsetmax = _mm_max_epu32(_mm_add_epi32(in.chunks[1], offset), currentoffsetmax); currentmax = _mm_max_epu32(in.chunks[2], currentmax); currentoffsetmax = _mm_max_epu32(_mm_add_epi32(in.chunks[2], offset), currentoffsetmax); currentmax = _mm_max_epu32(in.chunks[3], currentmax); currentoffsetmax = _mm_max_epu32(_mm_add_epi32(in.chunks[3], offset), currentoffsetmax); reader.advance(); } uint8_t block[64]{}; size_t idx = reader.block_index(); std::memcpy(block, &input[idx], length - idx); simd::simd8x64 in(block); c.check_next_input(in); // utf16le last block check auto in0 = simd16(in.chunks[0]); auto in1 = simd16(in.chunks[1]); const auto t0 = in0.shr<8>(); const auto t1 = in1.shr<8>(); const auto packed1 = simd16::pack(t0, t1); auto in2 = simd16(in.chunks[2]); auto in3 = simd16(in.chunks[3]); const auto t2 = in2.shr<8>(); const auto t3 = in3.shr<8>(); const auto packed2 = simd16::pack(t2, t3); const auto surrogates_wordmask_lo = (packed1 & v_f8) == v_d8; const auto surrogates_wordmask_hi = (packed2 & v_f8) == v_d8; const uint32_t surrogates_bitmask = (surrogates_wordmask_hi.to_bitmask() << 16) | surrogates_wordmask_lo.to_bitmask(); const auto vL_lo = (packed1 & v_fc) == v_dc; const auto vL_hi = (packed2 & v_fc) == v_dc; const uint32_t L = (vL_hi.to_bitmask() << 16) | vL_lo.to_bitmask(); const uint32_t H = L ^ surrogates_bitmask; utf16_err |= (((H << 1) | ends_with_high) != L); // this is required to check for last byte ending in high and end of input // is reached ends_with_high = (H & 0x80000000) != 0; utf16_err |= ends_with_high; // utf32le last block check currentmax = _mm_max_epu32(in.chunks[0], currentmax); currentoffsetmax = _mm_max_epu32(_mm_add_epi32(in.chunks[0], offset), currentoffsetmax); currentmax = _mm_max_epu32(in.chunks[1], currentmax); currentoffsetmax = _mm_max_epu32(_mm_add_epi32(in.chunks[1], offset), currentoffsetmax); currentmax = _mm_max_epu32(in.chunks[2], currentmax); currentoffsetmax = _mm_max_epu32(_mm_add_epi32(in.chunks[2], offset), currentoffsetmax); currentmax = _mm_max_epu32(in.chunks[3], currentmax); currentoffsetmax = _mm_max_epu32(_mm_add_epi32(in.chunks[3], offset), currentoffsetmax); reader.advance(); c.check_eof(); bool is_valid_utf8 = !c.errors(); __m128i is_zero = _mm_xor_si128(_mm_max_epu32(currentmax, standardmax), standardmax); utf32_err |= (_mm_test_all_zeros(is_zero, is_zero) == 0); is_zero = _mm_xor_si128(_mm_max_epu32(currentoffsetmax, standardoffsetmax), standardoffsetmax); utf32_err |= (_mm_test_all_zeros(is_zero, is_zero) == 0); if (is_valid_utf8) { out |= encoding_type::UTF8; } if (utf16_err == 0) { out |= encoding_type::UTF16_LE; } if (utf32_err == 0) { out |= encoding_type::UTF32_LE; } return out; } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf8(const char *buf, size_t len) const noexcept { return westmere::utf8_validation::generic_validate_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result implementation::validate_utf8_with_errors( const char *buf, size_t len) const noexcept { return westmere::utf8_validation::generic_validate_utf8_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_ascii(const char *buf, size_t len) const noexcept { return westmere::ascii_validation::generic_validate_ascii(buf, len); } simdutf_warn_unused result implementation::validate_ascii_with_errors( const char *buf, size_t len) const noexcept { return westmere::ascii_validation::generic_validate_ascii_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept { return westmere::utf16::validate_utf16_as_ascii_with_errors< endianness::LITTLE>(buf, len) .error == SUCCESS; } simdutf_warn_unused bool implementation::validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept { return westmere::utf16::validate_utf16_as_ascii_with_errors( buf, len) .error == SUCCESS; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf16le(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid UTF-16. protect the implementation from // handling nullptr return true; } const auto res = westmere::utf16::validate_utf16_with_errors(buf, len); if (res.is_err()) { return false; } if (res.count == len) return true; return scalar::utf16::validate(buf + res.count, len - res.count); } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool implementation::validate_utf16be(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid UTF-16. protect the implementation from // handling nullptr return true; } const auto res = westmere::utf16::validate_utf16_with_errors(buf, len); if (res.is_err()) { return false; } if (res.count == len) return true; return scalar::utf16::validate(buf + res.count, len - res.count); } simdutf_warn_unused result implementation::validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept { const result res = westmere::utf16::validate_utf16_with_errors(buf, len); if (res.count != len) { const result scalar_res = scalar::utf16::validate_with_errors( buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } simdutf_warn_unused result implementation::validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept { const result res = westmere::utf16::validate_utf16_with_errors(buf, len); if (res.count != len) { result scalar_res = scalar::utf16::validate_with_errors( buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } void implementation::to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept { return utf16fix_sse(input, len, output); } void implementation::to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept { return utf16fix_sse(input, len, output); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf32(const char32_t *buf, size_t len) const noexcept { return utf32::validate(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result implementation::validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept { return utf32::validate_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = sse_convert_latin1_to_utf8(buf, len, utf8_output); size_t converted_chars = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = sse_convert_latin1_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t converted_chars = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_converted_chars == 0) { return 0; } converted_chars += scalar_converted_chars; } return converted_chars; } simdutf_warn_unused size_t implementation::convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = sse_convert_latin1_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t converted_chars = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_converted_chars == 0) { return 0; } converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = sse_convert_latin1_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t converted_chars = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_converted_chars == 0) { return 0; } converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { utf8_to_latin1::validating_transcoder converter; return converter.convert(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_output) const noexcept { utf8_to_latin1::validating_transcoder converter; return converter.convert_with_errors(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { return westmere::utf8_to_latin1::convert_valid(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16le( const char *input, size_t size, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(input, size, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16be( const char *input, size_t size, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(input, size, utf16_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert(buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf32( const char *input, size_t size, char32_t *utf32_output) const noexcept { return utf8_to_utf32::convert_valid(input, size, utf32_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = sse_convert_utf16_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = sse_convert_utf16_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = sse_convert_utf16_to_latin1_with_errors( buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = sse_convert_utf16_to_latin1_with_errors(buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: we could provide an optimized function. return convert_utf16be_to_latin1(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: we could provide an optimized function. return convert_utf16le_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = sse_convert_utf16_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = sse_convert_utf16_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = westmere::sse_convert_utf16_to_utf8_with_errors( buf, len, utf8_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = westmere::sse_convert_utf16_to_utf8_with_errors( buf, len, utf8_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16le_to_utf8(buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16be_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = sse_convert_utf32_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; // if (ret.first != buf + len) { if (ret.first < buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_latin1_with_errors( const char32_t *buf, size_t len, char *latin1_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = westmere::sse_convert_utf32_to_latin1_with_errors(buf, len, latin1_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: we could provide an optimized function. return convert_utf32_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = sse_convert_utf32_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = westmere::sse_convert_utf32_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = sse_convert_utf16_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = sse_convert_utf16_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = westmere::sse_convert_utf16_to_utf32_with_errors( buf, len, utf32_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf32::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf32_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = westmere::sse_convert_utf16_to_utf32_with_errors( buf, len, utf32_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf32::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf32_output; // Set count to the number of 8-bit code units written return ret.first; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf32_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = sse_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = sse_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = westmere::sse_convert_utf32_to_utf16_with_errors( buf, len, utf16_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf16::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = westmere::sse_convert_utf32_to_utf16_with_errors( buf, len, utf16_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf16::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16be(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16le_to_utf32(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16be_to_utf32(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void implementation::change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) const noexcept { utf16::change_endianness_utf16(input, length, output); } simdutf_warn_unused size_t implementation::count_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } simdutf_warn_unused size_t implementation::count_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t implementation::count_utf8(const char *input, size_t length) const noexcept { return utf8::count_code_points_bytemask(input, length); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::latin1_length_from_utf8( const char *buf, size_t len) const noexcept { return count_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf8_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_bytemask(input, length); } simdutf_warn_unused size_t implementation::utf8_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_bytemask(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::utf8_length_from_latin1( const char *input, size_t len) const noexcept { const uint8_t *str = reinterpret_cast(input); size_t answer = len / sizeof(__m128i) * sizeof(__m128i); size_t i = 0; if (answer >= 2048) { // long strings optimization __m128i two_64bits = _mm_setzero_si128(); while (i + sizeof(__m128i) <= len) { __m128i runner = _mm_setzero_si128(); size_t iterations = (len - i) / sizeof(__m128i); if (iterations > 255) { iterations = 255; } size_t max_i = i + iterations * sizeof(__m128i) - sizeof(__m128i); for (; i + 4 * sizeof(__m128i) <= max_i; i += 4 * sizeof(__m128i)) { __m128i input1 = _mm_loadu_si128((const __m128i *)(str + i)); __m128i input2 = _mm_loadu_si128((const __m128i *)(str + i + sizeof(__m128i))); __m128i input3 = _mm_loadu_si128((const __m128i *)(str + i + 2 * sizeof(__m128i))); __m128i input4 = _mm_loadu_si128((const __m128i *)(str + i + 3 * sizeof(__m128i))); __m128i input12 = _mm_add_epi8(_mm_cmpgt_epi8(_mm_setzero_si128(), input1), _mm_cmpgt_epi8(_mm_setzero_si128(), input2)); __m128i input34 = _mm_add_epi8(_mm_cmpgt_epi8(_mm_setzero_si128(), input3), _mm_cmpgt_epi8(_mm_setzero_si128(), input4)); __m128i input1234 = _mm_add_epi8(input12, input34); runner = _mm_sub_epi8(runner, input1234); } for (; i <= max_i; i += sizeof(__m128i)) { __m128i more_input = _mm_loadu_si128((const __m128i *)(str + i)); runner = _mm_sub_epi8(runner, _mm_cmpgt_epi8(_mm_setzero_si128(), more_input)); } two_64bits = _mm_add_epi64(two_64bits, _mm_sad_epu8(runner, _mm_setzero_si128())); } answer += _mm_extract_epi64(two_64bits, 0) + _mm_extract_epi64(two_64bits, 1); } else if (answer > 0) { // short string optimization for (; i + 2 * sizeof(__m128i) <= len; i += 2 * sizeof(__m128i)) { __m128i latin = _mm_loadu_si128((const __m128i *)(input + i)); uint16_t non_ascii = (uint16_t)_mm_movemask_epi8(latin); answer += count_ones(non_ascii); latin = _mm_loadu_si128((const __m128i *)(input + i) + 1); non_ascii = (uint16_t)_mm_movemask_epi8(latin); answer += count_ones(non_ascii); } for (; i + sizeof(__m128i) <= len; i += sizeof(__m128i)) { __m128i latin = _mm_loadu_si128((const __m128i *)(input + i)); uint16_t non_ascii = (uint16_t)_mm_movemask_epi8(latin); answer += count_ones(non_ascii); } } return answer + scalar::latin1::utf8_length_from_latin1( reinterpret_cast(str + i), len - i); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } simdutf_warn_unused size_t implementation::utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf16_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::utf16_length_from_utf8_bytemask(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_with_replacement( input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_with_replacement( input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf8_length_from_utf32( const char32_t *input, size_t length) const noexcept { return utf32::utf8_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf16_length_from_utf32( const char32_t *input, size_t length) const noexcept { const __m128i v_00000000 = _mm_setzero_si128(); const __m128i v_ffff0000 = _mm_set1_epi32((uint32_t)0xffff0000); size_t pos = 0; size_t count = 0; for (; pos + 4 <= length; pos += 4) { __m128i in = _mm_loadu_si128((__m128i *)(input + pos)); const __m128i surrogate_bytemask = _mm_cmpeq_epi32(_mm_and_si128(in, v_ffff0000), v_00000000); const uint16_t surrogate_bitmask = static_cast(_mm_movemask_epi8(surrogate_bytemask)); size_t surrogate_count = (16 - count_ones(surrogate_bitmask)) / 4; count += 4 + surrogate_count; } return count + scalar::utf32::utf16_length_from_utf32(input + pos, length - pos); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result implementation::base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused result implementation::base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } else { return base64::compress_decode_base64( output, input, length, options, last_chunk_options); } } } size_t implementation::binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept { if (options & base64_url) { return encode_base64(output, input, length, options); } else { return encode_base64(output, input, length, options); } } size_t implementation::binary_to_base64_with_lines( const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept { if (options & base64_url) { return encode_base64_impl(output, input, length, options, line_length); } else { return encode_base64_impl(output, input, length, options, line_length); } } const char *implementation::find(const char *start, const char *end, char character) const noexcept { return util::find(start, end, character); } const char16_t *implementation::find(const char16_t *start, const char16_t *end, char16_t character) const noexcept { return util::find(start, end, character); } #endif // SIMDUTF_FEATURE_BASE64 } // namespace westmere } // namespace simdutf /* begin file src/simdutf/westmere/end.h */ #if SIMDUTF_CAN_ALWAYS_RUN_WESTMERE // nothing needed. #else SIMDUTF_UNTARGET_REGION #endif #undef SIMDUTF_SIMD_HAS_BYTEMASK /* end file src/simdutf/westmere/end.h */ /* end file src/westmere/implementation.cpp */ #endif #if SIMDUTF_IMPLEMENTATION_LSX /* begin file src/lsx/implementation.cpp */ /* begin file src/simdutf/lsx/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "lsx" // #define SIMDUTF_IMPLEMENTATION lsx #define SIMDUTF_SIMD_HAS_UNSIGNED_CMP 1 /* end file src/simdutf/lsx/begin.h */ namespace simdutf { namespace lsx { namespace { #ifndef SIMDUTF_LSX_H #error "lsx.h must be included" #endif using namespace simd; #if SIMDUTF_FEATURE_UTF8 // convert vmskltz/vmskgez/vmsknz to // simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes index const uint8_t lsx_1_2_utf8_bytes_mask[] = { 0, 1, 4, 5, 16, 17, 20, 21, 64, 65, 68, 69, 80, 81, 84, 85, 2, 3, 6, 7, 18, 19, 22, 23, 66, 67, 70, 71, 82, 83, 86, 87, 8, 9, 12, 13, 24, 25, 28, 29, 72, 73, 76, 77, 88, 89, 92, 93, 10, 11, 14, 15, 26, 27, 30, 31, 74, 75, 78, 79, 90, 91, 94, 95, 32, 33, 36, 37, 48, 49, 52, 53, 96, 97, 100, 101, 112, 113, 116, 117, 34, 35, 38, 39, 50, 51, 54, 55, 98, 99, 102, 103, 114, 115, 118, 119, 40, 41, 44, 45, 56, 57, 60, 61, 104, 105, 108, 109, 120, 121, 124, 125, 42, 43, 46, 47, 58, 59, 62, 63, 106, 107, 110, 111, 122, 123, 126, 127, 128, 129, 132, 133, 144, 145, 148, 149, 192, 193, 196, 197, 208, 209, 212, 213, 130, 131, 134, 135, 146, 147, 150, 151, 194, 195, 198, 199, 210, 211, 214, 215, 136, 137, 140, 141, 152, 153, 156, 157, 200, 201, 204, 205, 216, 217, 220, 221, 138, 139, 142, 143, 154, 155, 158, 159, 202, 203, 206, 207, 218, 219, 222, 223, 160, 161, 164, 165, 176, 177, 180, 181, 224, 225, 228, 229, 240, 241, 244, 245, 162, 163, 166, 167, 178, 179, 182, 183, 226, 227, 230, 231, 242, 243, 246, 247, 168, 169, 172, 173, 184, 185, 188, 189, 232, 233, 236, 237, 248, 249, 252, 253, 170, 171, 174, 175, 186, 187, 190, 191, 234, 235, 238, 239, 250, 251, 254, 255}; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32 simdutf_really_inline __m128i lsx_swap_bytes(__m128i vec) { return __lsx_vshuf4i_b(vec, 0b10110001); } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_ASCII || SIMDUTF_FEATURE_DETECT_ENCODING || \ SIMDUTF_FEATURE_UTF8 simdutf_really_inline bool is_ascii(const simd8x64 &input) { return input.is_ascii(); } #endif // SIMDUTF_FEATURE_ASCII || SIMDUTF_FEATURE_DETECT_ENCODING || // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_really_inline simd8 must_be_2_3_continuation(const simd8 prev2, const simd8 prev3) { simd8 is_third_byte = prev2 >= uint8_t(0b11100000u); simd8 is_fourth_byte = prev3 >= uint8_t(0b11110000u); return is_third_byte ^ is_fourth_byte; } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 && (SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32) // common functions for utf8 conversions simdutf_really_inline __m128i convert_utf8_3_byte_to_utf16(__m128i in) { // Low half contains 10bbbbbb|10cccccc // High half contains 1110aaaa|1110aaaa const v16u8 sh = {2, 1, 5, 4, 8, 7, 11, 10, 0, 0, 3, 3, 6, 6, 9, 9}; const v8u16 v0fff = {0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff}; __m128i perm = __lsx_vshuf_b(__lsx_vldi(0), in, (__m128i)sh); // 1110aaaa => aaaa0000 __m128i perm_high = __lsx_vslli_b(__lsx_vbsrl_v(perm, 8), 4); // 10bbbbbb 10cccccc => 0010bbbb bbcccccc __m128i composed = __lsx_vbitsel_v(__lsx_vsrli_h(perm, 2), /* perm >> 2*/ perm, __lsx_vrepli_h(0x3f) /* 0x003f */); // 0010bbbb bbcccccc => aaaabbbb bbcccccc composed = __lsx_vbitsel_v(perm_high, composed, (__m128i)v0fff); return composed; } simdutf_really_inline __m128i convert_utf8_2_byte_to_utf16(__m128i in) { // 10bbbbb 110aaaaa => 00bbbbb 000aaaaa __m128i composed = __lsx_vand_v(in, __lsx_vldi(0x3f)); // 00bbbbbb 000aaaaa => 00000aaa aabbbbbb composed = __lsx_vbitsel_v( __lsx_vsrli_h(__lsx_vslli_h(composed, 8), 2), /* (aaaaa << 8) >> 2 */ __lsx_vsrli_h(composed, 8), /* bbbbbb >> 8 */ __lsx_vrepli_h(0x3f)); /* 0x003f */ return composed; } simdutf_really_inline __m128i convert_utf8_1_to_2_byte_to_utf16(__m128i in, size_t shufutf8_idx) { // Converts 6 1-2 byte UTF-8 characters to 6 UTF-16 characters. // This is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[shufutf8_idx]), 0); // Shuffle // 1 byte: 00000000 0bbbbbbb // 2 byte: 110aaaaa 10bbbbbb __m128i perm = __lsx_vshuf_b(__lsx_vldi(0), in, sh); // 1 byte: 00000000 0bbbbbbb // 2 byte: 00000000 00bbbbbb __m128i ascii = __lsx_vand_v(perm, __lsx_vrepli_h(0x7f)); // 6 or 7 bits // 1 byte: 00000000 00000000 // 2 byte: 00000aaa aa000000 const __m128i v1f00 = lsx_splat_u16(0x1f00); __m128i composed = __lsx_vsrli_h(__lsx_vand_v(perm, v1f00), 2); // 5 bits // Combine with a shift right accumulate // 1 byte: 00000000 0bbbbbbb // 2 byte: 00000aaa aabbbbbb composed = __lsx_vadd_h(ascii, composed); return composed; } #endif // SIMDUTF_FEATURE_UTF8 && (SIMDUTF_FEATURE_UTF16 || // SIMDUTF_FEATURE_UTF32) #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/lsx/lsx_validate_utf16.cpp */ template simd8 utf16_gather_high_bytes(const simd16 in0, const simd16 in1) { if (big_endian) { const auto mask = simd16(0x00ff); const auto t0 = in0 & mask; const auto t1 = in1 & mask; return simd16::pack(t0, t1); } else { return simd16::pack_shifted_right<8>(in0, in1); } } /* end file src/lsx/lsx_validate_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/lsx/lsx_validate_utf32le.cpp */ const char32_t *lsx_validate_utf32le(const char32_t *input, size_t size) { const char32_t *end = input + size; __m128i offset = lsx_splat_u32(0xffff2000); __m128i standardoffsetmax = lsx_splat_u32(0xfffff7ff); __m128i standardmax = lsx_splat_u32(0x10ffff); __m128i currentmax = lsx_splat_u32(0); __m128i currentoffsetmax = lsx_splat_u32(0); while (input + 4 < end) { __m128i in = __lsx_vld(reinterpret_cast(input), 0); currentmax = __lsx_vmax_wu(in, currentmax); // 0xD8__ + 0x2000 = 0xF8__ => 0xF8__ > 0xF7FF currentoffsetmax = __lsx_vmax_wu(__lsx_vadd_w(in, offset), currentoffsetmax); input += 4; } __m128i is_zero = __lsx_vxor_v(__lsx_vmax_wu(currentmax, standardmax), standardmax); if (__lsx_bnz_v(is_zero)) { return nullptr; } is_zero = __lsx_vxor_v(__lsx_vmax_wu(currentoffsetmax, standardoffsetmax), standardoffsetmax); if (__lsx_bnz_v(is_zero)) { return nullptr; } return input; } const result lsx_validate_utf32le_with_errors(const char32_t *input, size_t size) { const char32_t *start = input; const char32_t *end = input + size; __m128i offset = lsx_splat_u32(0xffff2000); __m128i standardoffsetmax = lsx_splat_u32(0xfffff7ff); __m128i standardmax = lsx_splat_u32(0x10ffff); __m128i currentmax = lsx_splat_u32(0); __m128i currentoffsetmax = lsx_splat_u32(0); while (input + 4 < end) { __m128i in = __lsx_vld(reinterpret_cast(input), 0); currentmax = __lsx_vmax_wu(in, currentmax); currentoffsetmax = __lsx_vmax_wu(__lsx_vadd_w(in, offset), currentoffsetmax); __m128i is_zero = __lsx_vxor_v(__lsx_vmax_wu(currentmax, standardmax), standardmax); if (__lsx_bnz_v(is_zero)) { return result(error_code::TOO_LARGE, input - start); } is_zero = __lsx_vxor_v(__lsx_vmax_wu(currentoffsetmax, standardoffsetmax), standardoffsetmax); if (__lsx_bnz_v(is_zero)) { return result(error_code::SURROGATE, input - start); } input += 4; } return result(error_code::SUCCESS, input - start); } /* end file src/lsx/lsx_validate_utf32le.cpp */ #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lsx/lsx_convert_latin1_to_utf8.cpp */ /* Returns a pair: the first unprocessed byte from buf and utf8_output A scalar routing should carry on the conversion of the tail. */ std::pair lsx_convert_latin1_to_utf8(const char *latin1_input, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char *end = latin1_input + len; __m128i zero = __lsx_vldi(0); // We always write 16 bytes, of which more than the first 8 bytes // are valid. A safety margin of 8 is more than sufficient. while (end - latin1_input >= 16) { __m128i in8 = __lsx_vld(reinterpret_cast(latin1_input), 0); uint32_t ascii = __lsx_vpickve2gr_hu(__lsx_vmskgez_b(in8), 0); if (ascii == 0xffff) { // ASCII fast path!!!! __lsx_vst(in8, utf8_output, 0); utf8_output += 16; latin1_input += 16; continue; } // We just fallback on UTF-16 code. This could be optimized/simplified // further. __m128i in16 = __lsx_vilvl_b(zero, in8); // 1. prepare 2-byte values // input 8-bit word : [aabb|bbbb] x 8 // expected output : [1100|00aa|10bb|bbbb] x 8 // t0 = [0000|00aa|bbbb|bb00] __m128i t0 = __lsx_vslli_h(in16, 2); // t1 = [0000|00aa|0000|0000] __m128i t1 = __lsx_vand_v(t0, lsx_splat_u16(0x300)); // t3 = [0000|00aa|00bb|bbbb] __m128i t2 = __lsx_vbitsel_v(t1, in16, __lsx_vrepli_h(0x3f)); // t4 = [1100|00aa|10bb|bbbb] __m128i t3 = __lsx_vor_v(t2, __lsx_vreplgr2vr_h(uint16_t(0xc080))); // merge ASCII and 2-byte codewords __m128i one_byte_bytemask = __lsx_vsle_hu(in16, __lsx_vrepli_h(0x7F)); __m128i utf8_unpacked = __lsx_vbitsel_v(t3, in16, one_byte_bytemask); const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lsx_1_2_utf8_bytes_mask[(ascii & 0xff)]][0]; __m128i shuffle = __lsx_vld(row + 1, 0); __m128i utf8_packed = __lsx_vshuf_b(zero, utf8_unpacked, shuffle); // store bytes __lsx_vst(utf8_packed, utf8_output, 0); // adjust pointers latin1_input += 8; utf8_output += row[0]; } // while return std::make_pair(latin1_input, reinterpret_cast(utf8_output)); } /* end file src/lsx/lsx_convert_latin1_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lsx/lsx_convert_latin1_to_utf16.cpp */ std::pair lsx_convert_latin1_to_utf16le(const char *buf, size_t len, char16_t *utf16_output) { const char *end = buf + len; __m128i zero = __lsx_vldi(0); while (end - buf >= 16) { __m128i in8 = __lsx_vld(reinterpret_cast(buf), 0); __m128i inlow = __lsx_vilvl_b(zero, in8); __m128i inhigh = __lsx_vilvh_b(zero, in8); __lsx_vst(inlow, reinterpret_cast(utf16_output), 0); __lsx_vst(inhigh, reinterpret_cast(utf16_output), 16); utf16_output += 16; buf += 16; } return std::make_pair(buf, utf16_output); } std::pair lsx_convert_latin1_to_utf16be(const char *buf, size_t len, char16_t *utf16_output) { const char *end = buf + len; __m128i zero = __lsx_vldi(0); while (end - buf >= 16) { __m128i in8 = __lsx_vld(reinterpret_cast(buf), 0); __m128i inlow = __lsx_vilvl_b(in8, zero); __m128i inhigh = __lsx_vilvh_b(in8, zero); __lsx_vst(inlow, reinterpret_cast(utf16_output), 0); __lsx_vst(inhigh, reinterpret_cast(utf16_output), 16); utf16_output += 16; buf += 16; } return std::make_pair(buf, utf16_output); } /* end file src/lsx/lsx_convert_latin1_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lsx/lsx_convert_latin1_to_utf32.cpp */ std::pair lsx_convert_latin1_to_utf32(const char *buf, size_t len, char32_t *utf32_output) { const char *end = buf + len; while (end - buf >= 16) { __m128i in8 = __lsx_vld(reinterpret_cast(buf), 0); __m128i zero = __lsx_vldi(0); __m128i in16low = __lsx_vilvl_b(zero, in8); __m128i in16high = __lsx_vilvh_b(zero, in8); __m128i in32_0 = __lsx_vilvl_h(zero, in16low); __m128i in32_1 = __lsx_vilvh_h(zero, in16low); __m128i in32_2 = __lsx_vilvl_h(zero, in16high); __m128i in32_3 = __lsx_vilvh_h(zero, in16high); __lsx_vst(in32_0, reinterpret_cast(utf32_output), 0); __lsx_vst(in32_1, reinterpret_cast(utf32_output + 4), 0); __lsx_vst(in32_2, reinterpret_cast(utf32_output + 8), 0); __lsx_vst(in32_3, reinterpret_cast(utf32_output + 12), 0); utf32_output += 16; buf += 16; } return std::make_pair(buf, utf32_output); } /* end file src/lsx/lsx_convert_latin1_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/lsx/lsx_convert_utf8_to_utf16.cpp */ // Convert up to 16 bytes from utf8 to utf16 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 16, usually 12). template size_t convert_masked_utf8_to_utf16(const char *input, uint64_t utf8_end_of_code_point_mask, char16_t *&utf16_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // __m128i in = __lsx_vld(reinterpret_cast(input), 0); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // We first try a few fast paths. // The obvious first test is ASCII, which actually consumes the full 16. if ((utf8_end_of_code_point_mask & 0xFFFF) == 0xFFFF) { // We process in chunks of 16 bytes // The routine in simd.h is reused. simd8 temp{in}; temp.store_ascii_as_utf16(utf16_output); utf16_output += 16; // We wrote 16 16-bit characters. return 16; // We consumed 16 bytes. } uint64_t buffer[2]; // 3 byte sequences are the next most common, as seen in CJK, which has long // sequences of these. if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 2-byte // UTF-16 code units. __m128i composed = convert_utf8_3_byte_to_utf16(in); // Byte swap if necessary if (!match_system(big_endian)) { composed = lsx_swap_bytes(composed); } __lsx_vst(composed, reinterpret_cast(utf16_output), 0); utf16_output += 4; // We wrote 4 16-bit characters. return 12; // We consumed 12 bytes. } // 2 byte sequences occur in short bursts in languages like Greek and Russian. if ((utf8_end_of_code_point_mask & 0xFFFF) == 0xAAAA) { // We want to take 6 2-byte UTF-8 code units and turn them into 6 2-byte // UTF-16 code units. __m128i composed = convert_utf8_2_byte_to_utf16(in); // Byte swap if necessary if (!match_system(big_endian)) { composed = lsx_swap_bytes(composed); } __lsx_vst(composed, reinterpret_cast(utf16_output), 0); utf16_output += 6; // We wrote 6 16-bit characters. return 12; // We consumed 12 bytes. } /// We do not have a fast path available, or the fast path is unimportant, so /// we fallback. const uint8_t idx = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][1]; const __m128i zero = __lsx_vldi(0); if (idx < 64) { // SIX (6) input code-code units // Convert to UTF-16 __m128i composed = convert_utf8_1_to_2_byte_to_utf16(in, idx); // Byte swap if necessary if (!match_system(big_endian)) { composed = lsx_swap_bytes(composed); } // Store __lsx_vst(composed, reinterpret_cast(utf16_output), 0); utf16_output += 6; // We wrote 6 16-bit characters. return consumed; } else if (idx < 145) { // FOUR (4) input code-code units // UTF-16 and UTF-32 use similar algorithms, but UTF-32 skips the narrowing. __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx]), 0); // XXX: depending on the system scalar instructions might be faster. // 1 byte: 00000000 00000000 0ccccccc // 2 byte: 00000000 110bbbbb 10cccccc // 3 byte: 1110aaaa 10bbbbbb 10cccccc sh = __lsx_vand_v(sh, __lsx_vldi(0x1f)); __m128i perm = __lsx_vshuf_b(zero, in, sh); // 1 byte: 00000000 0ccccccc // 2 byte: xx0bbbbb x0cccccc // 3 byte: xxbbbbbb x0cccccc __m128i lowperm = __lsx_vpickev_h(perm, perm); // 1 byte: 00000000 00000000 // 2 byte: 00000000 00000000 // 3 byte: 00000000 1110aaaa __m128i highperm = __lsx_vpickod_h(perm, perm); // 3 byte: aaaa0000 00000000 highperm = __lsx_vslli_h(highperm, 12); // ASCII // 1 byte: 00000000 0ccccccc // 2+byte: 00000000 00cccccc __m128i ascii = __lsx_vand_v(lowperm, __lsx_vrepli_h(0x7f)); // 1 byte: 00000000 00000000 // 2 byte: xx0bbbbb 00000000 // 3 byte: xxbbbbbb 00000000 __m128i middlebyte = __lsx_vand_v(lowperm, lsx_splat_u16(0xFF00)); // 1 byte: 00000000 0ccccccc // 2 byte: 0010bbbb bbcccccc // 3 byte: 0010bbbb bbcccccc __m128i composed = __lsx_vor_v(__lsx_vsrli_h(middlebyte, 2), ascii); __m128i v0fff = __lsx_vreplgr2vr_h(uint16_t(0xfff)); // aaaabbbb bbcccccc composed = __lsx_vbitsel_v(highperm, composed, v0fff); if (!match_system(big_endian)) { composed = lsx_swap_bytes(composed); } __lsx_vst(composed, reinterpret_cast(utf16_output), 0); utf16_output += 4; // We wrote 4 16-bit codepoints return consumed; } else if (idx < 209) { // THREE (3) input code-code units if (input_utf8_end_of_code_point_mask == 0x888) { // We want to take 3 4-byte UTF-8 code units and turn them into 3 4-byte // UTF-16 pairs. Generating surrogate pairs is a little tricky though, but // it is easier when we can assume they are all pairs. This version does // not use the LUT, but 4 byte sequences are less common and the overhead // of the extra memory access is less important than the early branch // overhead in shorter sequences. __m128i expected_mask = (__m128i)v16u8{0xf8, 0xc0, 0xc0, 0xc0, 0xf8, 0xc0, 0xc0, 0xc0, 0xf8, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0}; __m128i expected = (__m128i)v16u8{0xf0, 0x80, 0x80, 0x80, 0xf0, 0x80, 0x80, 0x80, 0xf0, 0x80, 0x80, 0x80, 0x0, 0x0, 0x0, 0x0}; __m128i check = __lsx_vseq_b(__lsx_vand_v(in, expected_mask), expected); if (__lsx_bz_b(check)) return 12; // Swap byte pairs // 10dddddd 10cccccc|10bbbbbb 11110aaa // 10cccccc 10dddddd|11110aaa 10bbbbbb __m128i swap = lsx_swap_bytes(in); // Shift left 2 bits // cccccc00 dddddd00 xxxxxxxx bbbbbb00 __m128i shift = __lsx_vslli_b(swap, 2); // Create a magic number containing the low 2 bits of the trail surrogate // and all the corrections needed to create the pair. UTF-8 4b prefix = // -0x0000|0xF000 surrogate offset = -0x0000|0x0040 (0x10000 << 6) // surrogate high = +0x0000|0xD800 // surrogate low = +0xDC00|0x0000 // ------------------------------- // = +0xDC00|0xE7C0 __m128i magic = __lsx_vreplgr2vr_w(uint32_t(0xDC00E7C0)); // Generate unadjusted trail surrogate minus lowest 2 bits // xxxxxxxx xxxxxxxx|11110aaa bbbbbb00 __m128i trail = __lsx_vbitsel_v(shift, swap, lsx_splat_u32(0x0000ff00)); // Insert low 2 bits of trail surrogate to magic number for later // 11011100 00000000 11100111 110000cc __m128i magic_with_low_2 = __lsx_vor_v(__lsx_vsrli_w(shift, 30), magic); // Generate lead surrogate // xxxxcccc ccdddddd|xxxxxxxx xxxxxxxx // 000000cc ccdddddd|xxxxxxxx xxxxxxxx __m128i lead = __lsx_vbitsel_v( __lsx_vsrli_h(__lsx_vand_v(shift, __lsx_vldi(0x3F)), 4), swap, __lsx_vrepli_h(0x3f /* 0x003f*/)); // Blend pairs // 000000cc ccdddddd|11110aaa bbbbbb00 __m128i blend = __lsx_vbitsel_v(lead, trail, lsx_splat_u32(0x0000FFFF)); // Add magic number to finish the result // 110111CC CCDDDDDD|110110AA BBBBBBCC __m128i composed = __lsx_vadd_h(blend, magic_with_low_2); // Byte swap if necessary if (!match_system(big_endian)) { composed = lsx_swap_bytes(composed); } // __lsx_vst(composed, reinterpret_cast(utf16_output), 0); __lsx_vst(composed, reinterpret_cast(buffer), 0); std::memcpy(utf16_output, buffer, 12); utf16_output += 6; // We 3 32-bit surrogate pairs. return 12; // We consumed 12 bytes. } // 3 1-4 byte sequences __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx]), 0); // 1 byte: 00000000 00000000 00000000 0ddddddd // 3 byte: 00000000 00000000 110ccccc 10dddddd // 3 byte: 00000000 1110bbbb 10cccccc 10dddddd // 4 byte: 11110aaa 10bbbbbb 10cccccc 10dddddd sh = __lsx_vand_v(sh, __lsx_vldi(0x1f)); __m128i perm = __lsx_vshuf_b(zero, in, sh); // added to fix issue https://github.com/simdutf/simdutf/issues/514 // We only want to write 2 * 16-bit code units when that is actually what we // have. Unfortunately, we cannot trust the input. So it is possible to get // 0xff as an input byte and it should not result in a surrogate pair. We // need to check for that. uint32_t permbuffer[4]; __lsx_vst(perm, permbuffer, 0); // Mask the low and middle bytes // 00000000 00000000 00000000 0ddddddd __m128i ascii = __lsx_vand_v(perm, __lsx_vrepli_w(0x7f)); // Because the surrogates need more work, the high surrogate is computed // first. __m128i middlehigh = __lsx_vslli_w(perm, 2); // 00000000 00000000 00cccccc 00000000 __m128i middlebyte = __lsx_vand_v(perm, lsx_splat_u32(0x00003F00)); // Start assembling the sequence. Since the 4th byte is in the same position // as it would be in a surrogate and there is no dependency, shift left // instead of right. 3 byte: 00000000 10bbbbxx xxxxxxxx xxxxxxxx 4 byte: // 11110aaa bbbbbbxx xxxxxxxx xxxxxxxx __m128i ab = __lsx_vbitsel_v(middlehigh, perm, lsx_splat_u32(0xFF000000)); // Top 16 bits contains the high ten bits of the surrogate pair before // correction 3 byte: 00000000 10bbbbcc|cccc0000 00000000 4 byte: 11110aaa // bbbbbbcc|cccc0000 00000000 - high 10 bits correct w/o correction __m128i v_fffc0000 = __lsx_vreplgr2vr_w(uint32_t(0xFFFC0000)); __m128i abc = __lsx_vbitsel_v(__lsx_vslli_w(middlebyte, 4), ab, v_fffc0000); // Combine the low 6 or 7 bits by a shift right accumulate // 3 byte: 00000000 00000010|bbbbcccc ccdddddd - low 16 bits correct // 4 byte: 00000011 110aaabb|bbbbcccc ccdddddd - low 10 bits correct w/o // correction __m128i composed = __lsx_vor_v(ascii, __lsx_vsrli_w(abc, 6)); // After this is for surrogates // Blend the low and high surrogates // 4 byte: 11110aaa bbbbbbcc|bbbbcccc ccdddddd __m128i mixed = __lsx_vbitsel_v(abc, composed, lsx_splat_u32(0x0000FFFF)); // Clear the upper 6 bits of the low surrogate. Don't clear the upper bits // yet as 0x10000 was not subtracted from the codepoint yet. 4 byte: // 11110aaa bbbbbbcc|000000cc ccdddddd __m128i v_ffff03ff = __lsx_vreplgr2vr_w(uint32_t(0xFFFF03FF)); __m128i masked_pair = __lsx_vand_v(mixed, v_ffff03ff); // Correct the remaining UTF-8 prefix, surrogate offset, and add the // surrogate prefixes in one magic 16-bit addition. similar magic number but // without the continue byte adjust and halfword swapped UTF-8 4b prefix = // -0xF000|0x0000 surrogate offset = -0x0040|0x0000 (0x10000 << 6) // surrogate high = +0xD800|0x0000 // surrogate low = +0x0000|0xDC00 // ----------------------------------- // = +0xE7C0|0xDC00 __m128i magic = __lsx_vreplgr2vr_w(uint32_t(0xE7C0DC00)); // 4 byte: 110110AA BBBBBBCC|110111CC CCDDDDDD - surrogate pair complete __m128i surrogates = __lsx_vadd_w(masked_pair, magic); // If the high bit is 1 (s32 less than zero), this needs a surrogate pair __m128i is_pair = __lsx_vslt_w(perm, zero); // Select either the 4 byte surrogate pair or the 2 byte solo codepoint // 3 byte: 0xxxxxxx xxxxxxxx|bbbbcccc ccdddddd // 4 byte: 110110AA BBBBBBCC|110111CC CCDDDDDD __m128i selected = __lsx_vbitsel_v(composed, surrogates, is_pair); // Byte swap if necessary if (!match_system(big_endian)) { selected = lsx_swap_bytes(selected); } // Attempting to shuffle and store would be complex, just scalarize. uint32_t buffer_tmp[4]; __lsx_vst(selected, buffer_tmp, 0); // Test for the top bit of the surrogate mask. Remove due to issue 514 // const uint32_t SURROGATE_MASK = match_system(big_endian) ? 0x80000000 : // 0x00800000; for (size_t i = 0; i < 3; i++) { // Surrogate // Used to be if (buffer[i] & SURROGATE_MASK) { // See discussion above. // patch for issue https://github.com/simdutf/simdutf/issues/514 if ((permbuffer[i] & 0xf8000000) == 0xf0000000) { utf16_output[0] = uint16_t(buffer_tmp[i] >> 16); utf16_output[1] = uint16_t(buffer_tmp[i] & 0xFFFF); utf16_output += 2; } else { utf16_output[0] = uint16_t(buffer_tmp[i] & 0xFFFF); utf16_output++; } } return consumed; } else { // here we know that there is an error but we do not handle errors return 12; } } /* end file src/lsx/lsx_convert_utf8_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/lsx/lsx_convert_utf8_to_utf32.cpp */ // Convert up to 12 bytes from utf8 to utf32 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). size_t convert_masked_utf8_to_utf32(const char *input, uint64_t utf8_end_of_code_point_mask, char32_t *&utf32_out) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // uint32_t *&utf32_output = reinterpret_cast(utf32_out); __m128i in = __lsx_vld(reinterpret_cast(input), 0); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xFFF; // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // // We first try a few fast paths. if ((utf8_end_of_code_point_mask & 0xffff) == 0xffff) { // We process in chunks of 16 bytes. // use fast implementation in src/simdutf/arm64/simd.h // Ideally the compiler can keep the tables in registers. simd8 temp{in}; temp.store_ascii_as_utf32_tbl(utf32_out); utf32_output += 16; // We wrote 16 32-bit characters. return 16; // We consumed 16 bytes. } __m128i zero = __lsx_vldi(0); if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 4-byte // UTF-32 code units. Convert to UTF-16 __m128i composed_utf16 = convert_utf8_3_byte_to_utf16(in); __m128i utf32_low = __lsx_vilvl_h(zero, composed_utf16); __lsx_vst(utf32_low, reinterpret_cast(utf32_output), 0); utf32_output += 4; // We wrote 4 32-bit characters. return 12; // We consumed 12 bytes. } // 2 byte sequences occur in short bursts in languages like Greek and Russian. if (input_utf8_end_of_code_point_mask == 0xaaa) { // We want to take 6 2-byte UTF-8 code units and turn them into 6 4-byte // UTF-32 code units. Convert to UTF-16 __m128i composed_utf16 = convert_utf8_2_byte_to_utf16(in); __m128i utf32_low = __lsx_vilvl_h(zero, composed_utf16); __m128i utf32_high = __lsx_vilvh_h(zero, composed_utf16); __lsx_vst(utf32_low, reinterpret_cast(utf32_output), 0); __lsx_vst(utf32_high, reinterpret_cast(utf32_output), 16); utf32_output += 6; return 12; // We consumed 12 bytes. } /// Either no fast path or an unimportant fast path. const uint8_t idx = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][1]; if (idx < 64) { // SIX (6) input code-code units // Convert to UTF-16 __m128i composed_utf16 = convert_utf8_1_to_2_byte_to_utf16(in, idx); __m128i utf32_low = __lsx_vilvl_h(zero, composed_utf16); __m128i utf32_high = __lsx_vilvh_h(zero, composed_utf16); __lsx_vst(utf32_low, reinterpret_cast(utf32_output), 0); __lsx_vst(utf32_high, reinterpret_cast(utf32_output), 16); utf32_output += 6; return consumed; } else if (idx < 145) { // FOUR (4) input code-code units // UTF-16 and UTF-32 use similar algorithms, but UTF-32 skips the narrowing. __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx]), 0); // Shuffle // 1 byte: 00000000 00000000 0ccccccc // 2 byte: 00000000 110bbbbb 10cccccc // 3 byte: 1110aaaa 10bbbbbb 10cccccc sh = __lsx_vand_v(sh, __lsx_vldi(0x1f)); __m128i perm = __lsx_vshuf_b(zero, in, sh); // Split // 00000000 00000000 0ccccccc __m128i ascii = __lsx_vand_v(perm, __lsx_vrepli_w(0x7F)); // 6 or 7 bits // Note: unmasked // xxxxxxxx aaaaxxxx xxxxxxxx __m128i high = __lsx_vsrli_w(__lsx_vand_v(perm, __lsx_vldi(0xf)), 4); // 4 bits // Use 16 bit bic instead of and. // The top bits will be corrected later in the bsl // 00000000 10bbbbbb 00000000 __m128i middle = __lsx_vand_v(perm, lsx_splat_u32(0x0000FF00)); // 5 or 6 bits // Combine low and middle with shift right accumulate // 00000000 00xxbbbb bbcccccc __m128i lowmid = __lsx_vor_v(ascii, __lsx_vsrli_w(middle, 2)); // Insert top 4 bits from high byte with bitwise select // 00000000 aaaabbbb bbcccccc __m128i composed = __lsx_vbitsel_v(lowmid, high, lsx_splat_u32(0x0000F000)); __lsx_vst(composed, utf32_output, 0); utf32_output += 4; // We wrote 4 32-bit characters. return consumed; } else if (idx < 209) { // THREE (3) input code-code units if (input_utf8_end_of_code_point_mask == 0x888) { // We want to take 3 4-byte UTF-8 code units and turn them into 3 4-byte // UTF-32 code units. This uses the same method as the fixed 3 byte // version, reversing and shift left insert. However, there is no need for // a shuffle mask now, just rev16 and rev32. // // This version does not use the LUT, but 4 byte sequences are less common // and the overhead of the extra memory access is less important than the // early branch overhead in shorter sequences, so it comes last. // Swap pairs of bytes // 10dddddd|10cccccc|10bbbbbb|11110aaa // 10cccccc 10dddddd|11110aaa 10bbbbbb __m128i swap = lsx_swap_bytes(in); // Shift left and insert // xxxxcccc ccdddddd|xxxxxxxa aabbbbbb __m128i merge1 = __lsx_vbitsel_v(__lsx_vsrli_h(swap, 2), swap, __lsx_vrepli_h(0x3f /*0x003F*/)); // Shift insert again // xxxxxxxx xxxaaabb bbbbcccc ccdddddd __m128i merge2 = __lsx_vbitsel_v(__lsx_vslli_w(merge1, 12), /* merge1 << 12 */ __lsx_vsrli_w(merge1, 16), /* merge1 >> 16 */ lsx_splat_u32(0x00000FFF)); // Clear the garbage // 00000000 000aaabb bbbbcccc ccdddddd __m128i composed = __lsx_vand_v(merge2, lsx_splat_u32(0x1FFFFF)); // Store __lsx_vst(composed, utf32_output, 0); utf32_output += 3; // We wrote 3 32-bit characters. return 12; // We consumed 12 bytes. } // Unlike UTF-16, doing a fast codepath doesn't have nearly as much benefit // due to surrogates no longer being involved. __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx]), 0); // 1 byte: 00000000 00000000 00000000 0ddddddd // 2 byte: 00000000 00000000 110ccccc 10dddddd // 3 byte: 00000000 1110bbbb 10cccccc 10dddddd // 4 byte: 11110aaa 10bbbbbb 10cccccc 10dddddd sh = __lsx_vand_v(sh, __lsx_vldi(0x1f)); __m128i perm = __lsx_vshuf_b(zero, in, sh); // Ascii __m128i ascii = __lsx_vand_v(perm, __lsx_vrepli_w(0x7F)); __m128i middle = __lsx_vand_v(perm, lsx_splat_u32(0x00003f00)); // 00000000 00000000 0000cccc ccdddddd __m128i cd = __lsx_vor_v(__lsx_vsrli_w(middle, 2), ascii); __m128i correction = __lsx_vand_v(perm, lsx_splat_u32(0x00400000)); __m128i corrected = __lsx_vadd_b(perm, __lsx_vsrli_w(correction, 1)); // Insert twice // 00000000 000aaabb bbbbxxxx xxxxxxxx __m128i corrected_srli2 = __lsx_vsrli_w(__lsx_vand_v(corrected, __lsx_vrepli_b(0x7)), 2); __m128i ab = __lsx_vbitsel_v(corrected_srli2, corrected, __lsx_vrepli_h(0x3f)); ab = __lsx_vsrli_w(ab, 4); // 00000000 000aaabb bbbbcccc ccdddddd __m128i composed = __lsx_vbitsel_v(ab, cd, lsx_splat_u32(0x00000FFF)); // Store __lsx_vst(composed, utf32_output, 0); utf32_output += 3; // We wrote 3 32-bit characters. return consumed; } else { // here we know that there is an error but we do not handle errors return 12; } } /* end file src/lsx/lsx_convert_utf8_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lsx/lsx_convert_utf8_to_latin1.cpp */ size_t convert_masked_utf8_to_latin1(const char *input, uint64_t utf8_end_of_code_point_mask, char *&latin1_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // __m128i in = __lsx_vld(reinterpret_cast(input), 0); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // We first try a few fast paths. // The obvious first test is ASCII, which actually consumes the full 16. if ((utf8_end_of_code_point_mask & 0xFFFF) == 0xFFFF) { // We process in chunks of 16 bytes __lsx_vst(in, reinterpret_cast(latin1_output), 0); latin1_output += 16; // We wrote 16 18-bit characters. return 16; // We consumed 16 bytes. } /// We do not have a fast path available, or the fast path is unimportant, so /// we fallback. const uint8_t idx = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][1]; // this indicates an invalid input: if (idx >= 64) { return consumed; } // Here we should have (idx < 64), if not, there is a bug in the validation or // elsewhere. SIX (6) input code-code units this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. Converts 6 // 1-2 byte UTF-8 characters to 6 UTF-16 characters. This is a relatively easy // scenario we process SIX (6) input code-code units. The max length in bytes // of six code code units spanning between 1 and 2 bytes each is 12 bytes. __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx]), 0); // Shuffle // 1 byte: 00000000 0bbbbbbb // 2 byte: 110aaaaa 10bbbbbb sh = __lsx_vand_v(sh, __lsx_vldi(0x1f)); __m128i perm = __lsx_vshuf_b(__lsx_vldi(0), in, sh); // ascii mask // 1 byte: 11111111 11111111 // 2 byte: 00000000 00000000 __m128i ascii_mask = __lsx_vslt_bu(perm, __lsx_vldi(0x80)); // utf8 mask // 1 byte: 00000000 00000000 // 2 byte: 00111111 00111111 __m128i utf8_mask = __lsx_vand_v(__lsx_vsle_bu(__lsx_vldi(0x80), perm), __lsx_vldi(0b00111111)); // mask // 1 byte: 11111111 11111111 // 2 byte: 00111111 00111111 __m128i mask = __lsx_vor_v(utf8_mask, ascii_mask); __m128i composed = __lsx_vbitsel_v(__lsx_vsrli_h(perm, 2), perm, mask); // writing 8 bytes even though we only care about the first 6 bytes. __m128i latin1_packed = __lsx_vpickev_b(__lsx_vldi(0), composed); uint64_t buffer[2]; // __lsx_vst(latin1_packed, reinterpret_cast(latin1_output), 0); __lsx_vst(latin1_packed, reinterpret_cast(buffer), 0); std::memcpy(latin1_output, buffer, 6); latin1_output += 6; // We wrote 6 bytes. return consumed; } /* end file src/lsx/lsx_convert_utf8_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lsx/lsx_convert_utf16_to_latin1.cpp */ template std::pair lsx_convert_utf16_to_latin1(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *end = buf + len; while (end - buf >= 16) { __m128i in = __lsx_vld(reinterpret_cast(buf), 0); __m128i in1 = __lsx_vld(reinterpret_cast(buf), 16); if (!match_system(big_endian)) { in = lsx_swap_bytes(in); in1 = lsx_swap_bytes(in1); } if (__lsx_bz_v(__lsx_vpickod_b(in1, in))) { // 1. pack the bytes __m128i latin1_packed = __lsx_vpickev_b(in1, in); // 2. store (8 bytes) __lsx_vst(latin1_packed, reinterpret_cast(latin1_output), 0); // 3. adjust pointers buf += 16; latin1_output += 16; } else { return std::make_pair(nullptr, reinterpret_cast(latin1_output)); } } // while return std::make_pair(buf, latin1_output); } template std::pair lsx_convert_utf16_to_latin1_with_errors(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *start = buf; const char16_t *end = buf + len; while (end - buf >= 16) { __m128i in = __lsx_vld(reinterpret_cast(buf), 0); __m128i in1 = __lsx_vld(reinterpret_cast(buf), 16); if (!match_system(big_endian)) { in = lsx_swap_bytes(in); in1 = lsx_swap_bytes(in1); } if (__lsx_bz_v(__lsx_vpickod_b(in1, in))) { // 1. pack the bytes __m128i latin1_packed = __lsx_vpickev_b(in1, in); // 2. store (8 bytes) __lsx_vst(latin1_packed, reinterpret_cast(latin1_output), 0); // 3. adjust pointers buf += 16; latin1_output += 16; } else { // Let us do a scalar fallback. for (int k = 0; k < 16; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if (word <= 0xff) { *latin1_output++ = char(word); } else { return std::make_pair(result(error_code::TOO_LARGE, buf - start + k), latin1_output); } } } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), latin1_output); } /* end file src/lsx/lsx_convert_utf16_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF8 /* begin file src/lsx/lsx_convert_utf16_to_utf8.cpp */ /* The vectorized algorithm works on single SSE register i.e., it loads eight 16-bit code units. We consider three cases: 1. an input register contains no surrogates and each value is in range 0x0000 .. 0x07ff. 2. an input register contains no surrogates and values are is in range 0x0000 .. 0xffff. 3. an input register contains surrogates --- i.e. codepoints can have 16 or 32 bits. Ad 1. When values are less than 0x0800, it means that a 16-bit code unit can be converted into: 1) single UTF8 byte (when it's an ASCII char) or 2) two UTF8 bytes. For this case we do only some shuffle to obtain these 2-byte codes and finally compress the whole SSE register with a single shuffle. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. Ad 2. When values fit in 16-bit code units, but are above 0x07ff, then a single word may produce one, two or three UTF8 bytes. We prepare data for all these three cases in two registers. The first register contains lower two UTF8 bytes (used in all cases), while the second one contains just the third byte for the three-UTF8-bytes case. Finally these two registers are interleaved forming eight-element array of 32-bit values. The array spans two SSE registers. The bytes from the registers are compressed using two shuffles. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. To summarize: - We need two 256-entry tables that have 8704 bytes in total. */ /* Returns a pair: the first unprocessed byte from buf and utf8_output A scalar routing should carry on the conversion of the tail. */ template std::pair lsx_convert_utf16_to_utf8(const char16_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char16_t *end = buf + len; const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 __m128i v_07ff = __lsx_vreplgr2vr_h(uint16_t(0x7ff)); while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m128i in = __lsx_vld(reinterpret_cast(buf), 0); if (!match_system(big_endian)) { in = lsx_swap_bytes(in); } if (__lsx_bz_v( __lsx_vslt_hu(__lsx_vrepli_h(0x7F), in))) { // ASCII fast path!!!! // It is common enough that we have sequences of 16 consecutive ASCII // characters. __m128i nextin = __lsx_vld(reinterpret_cast(buf), 16); if (!match_system(big_endian)) { nextin = lsx_swap_bytes(nextin); } if (__lsx_bz_v(__lsx_vslt_hu(__lsx_vrepli_h(0x7F), nextin))) { // 1. pack the bytes // obviously suboptimal. __m128i utf8_packed = __lsx_vpickev_b(nextin, in); // 2. store (16 bytes) __lsx_vst(utf8_packed, utf8_output, 0); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } else { // 1. pack the bytes // obviously suboptimal. __m128i utf8_packed = __lsx_vpickev_b(in, in); // 2. store (8 bytes) __lsx_vst(utf8_packed, utf8_output, 0); // 3. adjust pointers buf += 8; utf8_output += 8; in = nextin; } } __m128i zero = __lsx_vldi(0); if (__lsx_bz_v(__lsx_vslt_hu(v_07ff, in))) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 // t0 = [000a|aaaa|bbbb|bb00] __m128i t0 = __lsx_vslli_h(in, 2); // t1 = [000a|aaaa|0000|0000] __m128i t1 = __lsx_vand_v(t0, lsx_splat_u16(0x1f00)); // t2 = [0000|0000|00bb|bbbb] __m128i t2 = __lsx_vand_v(in, __lsx_vrepli_h(0x3f)); // t3 = [000a|aaaa|00bb|bbbb] __m128i t3 = __lsx_vor_v(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] __m128i v_c080 = __lsx_vreplgr2vr_h(uint16_t(0xc080)); __m128i t4 = __lsx_vor_v(t3, v_c080); // 2. merge ASCII and 2-byte codewords __m128i one_byte_bytemask = __lsx_vsle_hu(in, __lsx_vrepli_h(0x7F /*0x007F*/)); __m128i utf8_unpacked = __lsx_vbitsel_v(t4, in, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup uint32_t m2 = __lsx_vpickve2gr_bu(__lsx_vmskltz_h(one_byte_bytemask), 0); // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lsx_1_2_utf8_bytes_mask[m2]][0]; __m128i shuffle = __lsx_vld(row, 1); __m128i utf8_packed = __lsx_vshuf_b(zero, utf8_unpacked, shuffle); // 5. store bytes __lsx_vst(utf8_packed, utf8_output, 0); // 6. adjust pointers buf += 8; utf8_output += row[0]; continue; } __m128i surrogates_bytemask = __lsx_vseq_h( __lsx_vand_v(in, lsx_splat_u16(0xf800)), lsx_splat_u16(0xd800)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (__lsx_bz_v(surrogates_bytemask)) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] __m128i t0 = __lsx_vpickev_b(in, in); t0 = __lsx_vilvl_b(t0, t0); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|00cc|cccc] __m128i v_3f7f = __lsx_vreplgr2vr_h(uint16_t(0x3F7F)); __m128i t1 = __lsx_vand_v(t0, v_3f7f); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] __m128i t2 = __lsx_vor_v(t1, lsx_splat_u16(0x8000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] __m128i s0 = __lsx_vsrli_h(in, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] __m128i s1 = __lsx_vslli_h(in, 2); // s1: [aabb|bbbb|cccc|cc00] => [00bb|bbbb|0000|0000] s1 = __lsx_vand_v(s1, lsx_splat_u16(0x3f00)); // [00bb|bbbb|0000|aaaa] __m128i s2 = __lsx_vor_v(s0, s1); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] __m128i v_c0e0 = __lsx_vreplgr2vr_h(uint16_t(0xC0E0)); __m128i s3 = __lsx_vor_v(s2, v_c0e0); __m128i one_or_two_bytes_bytemask = __lsx_vsle_hu(in, v_07ff); __m128i m0 = __lsx_vandn_v(one_or_two_bytes_bytemask, lsx_splat_u16(0x4000)); __m128i s4 = __lsx_vxor_v(s3, m0); // 4. expand code units 16-bit => 32-bit __m128i out0 = __lsx_vilvl_h(s4, t2); __m128i out1 = __lsx_vilvh_h(s4, t2); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle __m128i one_byte_bytemask = __lsx_vsle_hu(in, __lsx_vrepli_h(0x7F)); __m128i one_or_two_bytes_bytemask_low = __lsx_vilvl_h(one_or_two_bytes_bytemask, zero); __m128i one_or_two_bytes_bytemask_high = __lsx_vilvh_h(one_or_two_bytes_bytemask, zero); __m128i one_byte_bytemask_low = __lsx_vilvl_h(one_byte_bytemask, one_byte_bytemask); __m128i one_byte_bytemask_high = __lsx_vilvh_h(one_byte_bytemask, one_byte_bytemask); const uint32_t mask0 = __lsx_vpickve2gr_bu( __lsx_vmskltz_h(__lsx_vor_v(one_or_two_bytes_bytemask_low, one_byte_bytemask_low)), 0); const uint32_t mask1 = __lsx_vpickve2gr_bu( __lsx_vmskltz_h(__lsx_vor_v(one_or_two_bytes_bytemask_high, one_byte_bytemask_high)), 0); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; __m128i shuffle0 = __lsx_vld(row0, 1); __m128i utf8_0 = __lsx_vshuf_b(zero, out0, shuffle0); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_1 = __lsx_vshuf_b(zero, out1, shuffle1); __lsx_vst(utf8_0, utf8_output, 0); utf8_output += row0[0]; __lsx_vst(utf8_1, utf8_output, 0); utf8_output += row1[0]; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(buf, reinterpret_cast(utf8_output)); } /* Returns a pair: a result struct and utf8_output. If there is an error, the count field of the result is the position of the error. Otherwise, it is the position of the first unprocessed byte in buf (even if finished). A scalar routing should carry on the conversion of the tail if needed. */ template std::pair lsx_convert_utf16_to_utf8_with_errors(const char16_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char16_t *start = buf; const char16_t *end = buf + len; const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m128i in = __lsx_vld(reinterpret_cast(buf), 0); if (!match_system(big_endian)) { in = lsx_swap_bytes(in); } if (__lsx_bz_v( __lsx_vslt_hu(__lsx_vrepli_h(0x7F), in))) { // ASCII fast path!!!! // It is common enough that we have sequences of 16 consecutive ASCII // characters. __m128i nextin = __lsx_vld(reinterpret_cast(buf), 16); if (!match_system(big_endian)) { nextin = lsx_swap_bytes(nextin); } if (__lsx_bz_v(__lsx_vslt_hu(__lsx_vrepli_h(0x7F), nextin))) { // 1. pack the bytes // obviously suboptimal. __m128i utf8_packed = __lsx_vpickev_b(nextin, in); // 2. store (16 bytes) __lsx_vst(utf8_packed, utf8_output, 0); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } else { // 1. pack the bytes // obviously suboptimal. __m128i utf8_packed = __lsx_vpickev_b(in, in); // 2. store (8 bytes) __lsx_vst(utf8_packed, utf8_output, 0); // 3. adjust pointers buf += 8; utf8_output += 8; in = nextin; } } __m128i v_07ff = __lsx_vreplgr2vr_h(uint16_t(0x7ff)); __m128i zero = __lsx_vldi(0); if (__lsx_bz_v(__lsx_vslt_hu(v_07ff, in))) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 // t0 = [000a|aaaa|bbbb|bb00] __m128i t0 = __lsx_vslli_h(in, 2); // t1 = [000a|aaaa|0000|0000] __m128i t1 = __lsx_vand_v(t0, lsx_splat_u16(0x1f00)); // t2 = [0000|0000|00bb|bbbb] __m128i t2 = __lsx_vand_v(in, __lsx_vrepli_h(0x3f)); // t3 = [000a|aaaa|00bb|bbbb] __m128i t3 = __lsx_vor_v(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] __m128i v_c080 = __lsx_vreplgr2vr_h(uint16_t(0xc080)); __m128i t4 = __lsx_vor_v(t3, v_c080); // 2. merge ASCII and 2-byte codewords __m128i one_byte_bytemask = __lsx_vsle_hu(in, __lsx_vrepli_h(0x7F /*0x007F*/)); __m128i utf8_unpacked = __lsx_vbitsel_v(t4, in, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup uint32_t m2 = __lsx_vpickve2gr_bu(__lsx_vmskltz_h(one_byte_bytemask), 0); // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lsx_1_2_utf8_bytes_mask[m2]][0]; __m128i shuffle = __lsx_vld(row, 1); __m128i utf8_packed = __lsx_vshuf_b(zero, utf8_unpacked, shuffle); // 5. store bytes __lsx_vst(utf8_packed, utf8_output, 0); // 6. adjust pointers buf += 8; utf8_output += row[0]; continue; } __m128i surrogates_bytemask = __lsx_vseq_h( __lsx_vand_v(in, lsx_splat_u16(0xf800)), lsx_splat_u16(0xd800)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (__lsx_bz_v(surrogates_bytemask)) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] __m128i t0 = __lsx_vpickev_b(in, in); t0 = __lsx_vilvl_b(t0, t0); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|00cc|cccc] __m128i v_3f7f = __lsx_vreplgr2vr_h(uint16_t(0x3F7F)); __m128i t1 = __lsx_vand_v(t0, v_3f7f); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] __m128i t2 = __lsx_vor_v(t1, lsx_splat_u16(0x8000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] __m128i s0 = __lsx_vsrli_h(in, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] __m128i s1 = __lsx_vslli_h(in, 2); // s1: [aabb|bbbb|cccc|cc00] => [00bb|bbbb|0000|0000] s1 = __lsx_vand_v(s1, lsx_splat_u16(0x3f00)); // [00bb|bbbb|0000|aaaa] __m128i s2 = __lsx_vor_v(s0, s1); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] __m128i v_c0e0 = __lsx_vreplgr2vr_h(uint16_t(0xC0E0)); __m128i s3 = __lsx_vor_v(s2, v_c0e0); __m128i one_or_two_bytes_bytemask = __lsx_vsle_hu(in, v_07ff); __m128i m0 = __lsx_vandn_v(one_or_two_bytes_bytemask, lsx_splat_u16(0x4000)); __m128i s4 = __lsx_vxor_v(s3, m0); // 4. expand code units 16-bit => 32-bit __m128i out0 = __lsx_vilvl_h(s4, t2); __m128i out1 = __lsx_vilvh_h(s4, t2); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle __m128i one_byte_bytemask = __lsx_vsle_hu(in, __lsx_vrepli_h(0x7F)); __m128i one_or_two_bytes_bytemask_low = __lsx_vilvl_h(one_or_two_bytes_bytemask, zero); __m128i one_or_two_bytes_bytemask_high = __lsx_vilvh_h(one_or_two_bytes_bytemask, zero); __m128i one_byte_bytemask_low = __lsx_vilvl_h(one_byte_bytemask, one_byte_bytemask); __m128i one_byte_bytemask_high = __lsx_vilvh_h(one_byte_bytemask, one_byte_bytemask); const uint32_t mask0 = __lsx_vpickve2gr_bu( __lsx_vmskltz_h(__lsx_vor_v(one_or_two_bytes_bytemask_low, one_byte_bytemask_low)), 0); const uint32_t mask1 = __lsx_vpickve2gr_bu( __lsx_vmskltz_h(__lsx_vor_v(one_or_two_bytes_bytemask_high, one_byte_bytemask_high)), 0); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; __m128i shuffle0 = __lsx_vld(row0, 1); __m128i utf8_0 = __lsx_vshuf_b(zero, out0, shuffle0); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_1 = __lsx_vshuf_b(zero, out1, shuffle1); __lsx_vst(utf8_0, utf8_output, 0); utf8_output += row0[0]; __lsx_vst(utf8_1, utf8_output, 0); utf8_output += row1[0]; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k - 1), reinterpret_cast(utf8_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf8_output)); } /* end file src/lsx/lsx_convert_utf16_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/lsx/lsx_convert_utf16_to_utf32.cpp */ template std::pair lsx_convert_utf16_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_out) { uint32_t *utf32_output = reinterpret_cast(utf32_out); const char16_t *end = buf + len; __m128i zero = __lsx_vldi(0); __m128i v_f800 = lsx_splat_u16(0xf800); __m128i v_d800 = lsx_splat_u16(0xd800); while (end - buf >= 8) { __m128i in = __lsx_vld(reinterpret_cast(buf), 0); if (!match_system(big_endian)) { in = lsx_swap_bytes(in); } __m128i surrogates_bytemask = __lsx_vseq_h(__lsx_vand_v(in, v_f800), v_d800); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (__lsx_bz_v(surrogates_bytemask)) { // case: no surrogate pairs, extend all 16-bit code units to 32-bit code // units __lsx_vst(__lsx_vilvl_h(zero, in), utf32_output, 0); __lsx_vst(__lsx_vilvh_h(zero, in), utf32_output, 16); utf32_output += 8; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, reinterpret_cast(utf32_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return std::make_pair(buf, reinterpret_cast(utf32_output)); } /* Returns a pair: a result struct and utf8_output. If there is an error, the count field of the result is the position of the error. Otherwise, it is the position of the first unprocessed byte in buf (even if finished). A scalar routing should carry on the conversion of the tail if needed. */ template std::pair lsx_convert_utf16_to_utf32_with_errors(const char16_t *buf, size_t len, char32_t *utf32_out) { uint32_t *utf32_output = reinterpret_cast(utf32_out); const char16_t *start = buf; const char16_t *end = buf + len; __m128i zero = __lsx_vldi(0); __m128i v_f800 = lsx_splat_u16(0xf800); __m128i v_d800 = lsx_splat_u16(0xd800); while (end - buf >= 8) { __m128i in = __lsx_vld(reinterpret_cast(buf), 0); if (!match_system(big_endian)) { in = lsx_swap_bytes(in); } __m128i surrogates_bytemask = __lsx_vseq_h(__lsx_vand_v(in, v_f800), v_d800); if (__lsx_bz_v(surrogates_bytemask)) { // case: no surrogate pairs, extend all 16-bit code units to 32-bit code // units __lsx_vst(__lsx_vilvl_h(zero, in), utf32_output, 0); __lsx_vst(__lsx_vilvh_h(zero, in), utf32_output, 16); utf32_output += 8; buf += 8; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k - 1), reinterpret_cast(utf32_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf32_output)); } /* end file src/lsx/lsx_convert_utf16_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lsx/lsx_convert_utf32_to_latin1.cpp */ std::pair lsx_convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) { const char32_t *end = buf + len; const v16u8 shuf_mask = {0, 4, 8, 12, 16, 20, 24, 28, 0, 0, 0, 0, 0, 0, 0, 0}; __m128i v_ff = __lsx_vrepli_w(0xFF); while (end - buf >= 16) { __m128i in1 = __lsx_vld(reinterpret_cast(buf), 0); __m128i in2 = __lsx_vld(reinterpret_cast(buf), 16); __m128i in12 = __lsx_vor_v(in1, in2); if (__lsx_bz_v(__lsx_vslt_wu(v_ff, in12))) { // 1. pack the bytes __m128i latin1_packed = __lsx_vshuf_b(in2, in1, (__m128i)shuf_mask); // 2. store (8 bytes) __lsx_vst(latin1_packed, reinterpret_cast(latin1_output), 0); // 3. adjust pointers buf += 8; latin1_output += 8; } else { return std::make_pair(nullptr, reinterpret_cast(latin1_output)); } } // while return std::make_pair(buf, latin1_output); } std::pair lsx_convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) { const char32_t *start = buf; const char32_t *end = buf + len; const v16u8 shuf_mask = {0, 4, 8, 12, 16, 20, 24, 28, 0, 0, 0, 0, 0, 0, 0, 0}; __m128i v_ff = __lsx_vrepli_w(0xFF); while (end - buf >= 16) { __m128i in1 = __lsx_vld(reinterpret_cast(buf), 0); __m128i in2 = __lsx_vld(reinterpret_cast(buf), 16); __m128i in12 = __lsx_vor_v(in1, in2); if (__lsx_bz_v(__lsx_vslt_wu(v_ff, in12))) { // 1. pack the bytes __m128i latin1_packed = __lsx_vshuf_b(in2, in1, (__m128i)shuf_mask); // 2. store (8 bytes) __lsx_vst(latin1_packed, reinterpret_cast(latin1_output), 0); // 3. adjust pointers buf += 8; latin1_output += 8; } else { // Let us do a scalar fallback. for (int k = 0; k < 8; k++) { uint32_t word = buf[k]; if (word <= 0xff) { *latin1_output++ = char(word); } else { return std::make_pair(result(error_code::TOO_LARGE, buf - start + k), latin1_output); } } } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), latin1_output); } /* end file src/lsx/lsx_convert_utf32_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/lsx/lsx_convert_utf32_to_utf8.cpp */ std::pair lsx_convert_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char32_t *end = buf + len; __m128i v_c080 = lsx_splat_u16(0xc080); __m128i v_07ff = lsx_splat_u16(0x07ff); __m128i v_dfff = lsx_splat_u16(0xdfff); __m128i v_d800 = lsx_splat_u16(0xd800); __m128i forbidden_bytemask = __lsx_vldi(0x0); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf > std::ptrdiff_t(16 + safety_margin)) { __m128i in = __lsx_vld(reinterpret_cast(buf), 0); __m128i nextin = __lsx_vld(reinterpret_cast(buf), 16); // Check if no bits set above 16th if (__lsx_bz_v(__lsx_vpickod_h(in, nextin))) { // Pack UTF-32 to UTF-16 safely (without surrogate pairs) // Apply UTF-16 => UTF-8 routine (lsx_convert_utf16_to_utf8.cpp) __m128i utf16_packed = __lsx_vpickev_h(nextin, in); if (__lsx_bz_v(__lsx_vslt_hu(__lsx_vrepli_h(0x7F), utf16_packed))) { // ASCII fast path!!!! // 1. pack the bytes // obviously suboptimal. __m128i utf8_packed = __lsx_vpickev_b(utf16_packed, utf16_packed); // 2. store (8 bytes) __lsx_vst(utf8_packed, utf8_output, 0); // 3. adjust pointers buf += 8; utf8_output += 8; continue; // we are done for this round! } __m128i zero = __lsx_vldi(0); if (__lsx_bz_v(__lsx_vslt_hu(v_07ff, utf16_packed))) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 // t0 = [000a|aaaa|bbbb|bb00] const __m128i t0 = __lsx_vslli_h(utf16_packed, 2); // t1 = [000a|aaaa|0000|0000] const __m128i t1 = __lsx_vand_v(t0, lsx_splat_u16(0x1f00)); // t2 = [0000|0000|00bb|bbbb] const __m128i t2 = __lsx_vand_v(utf16_packed, __lsx_vrepli_h(0x3f)); // t3 = [000a|aaaa|00bb|bbbb] const __m128i t3 = __lsx_vor_v(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m128i t4 = __lsx_vor_v(t3, v_c080); // 2. merge ASCII and 2-byte codewords __m128i one_byte_bytemask = __lsx_vsle_hu(utf16_packed, __lsx_vrepli_h(0x7F /*0x007F*/)); __m128i utf8_unpacked = __lsx_vbitsel_v(t4, utf16_packed, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup uint32_t m2 = __lsx_vpickve2gr_bu(__lsx_vmskltz_h(one_byte_bytemask), 0); // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lsx_1_2_utf8_bytes_mask[m2]][0]; __m128i shuffle = __lsx_vld(row, 1); __m128i utf8_packed = __lsx_vshuf_b(zero, utf8_unpacked, shuffle); // 5. store bytes __lsx_vst(utf8_packed, utf8_output, 0); // 6. adjust pointers buf += 8; utf8_output += row[0]; continue; } else { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes forbidden_bytemask = __lsx_vor_v( __lsx_vand_v( __lsx_vsle_h(utf16_packed, v_dfff), // utf16_packed <= 0xdfff __lsx_vsle_h(v_d800, utf16_packed)), // utf16_packed >= 0xd800 forbidden_bytemask); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] __m128i t0 = __lsx_vpickev_b(utf16_packed, utf16_packed); t0 = __lsx_vilvl_b(t0, t0); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] __m128i v_3f7f = __lsx_vreplgr2vr_h(uint16_t(0x3F7F)); __m128i t1 = __lsx_vand_v(t0, v_3f7f); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] __m128i t2 = __lsx_vor_v(t1, lsx_splat_u16(0x8000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] __m128i s0 = __lsx_vsrli_h(utf16_packed, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] __m128i s1 = __lsx_vslli_h(utf16_packed, 2); // [0000|bbbb|bb00|0000] => [00bb|bbbb|0000|0000] s1 = __lsx_vand_v(s1, lsx_splat_u16(0x3F00)); // [00bb|bbbb|0000|aaaa] __m128i s2 = __lsx_vor_v(s0, s1); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] __m128i v_c0e0 = __lsx_vreplgr2vr_h(uint16_t(0xC0E0)); __m128i s3 = __lsx_vor_v(s2, v_c0e0); __m128i one_or_two_bytes_bytemask = __lsx_vsle_hu(utf16_packed, v_07ff); __m128i m0 = __lsx_vandn_v(one_or_two_bytes_bytemask, lsx_splat_u16(0x4000)); __m128i s4 = __lsx_vxor_v(s3, m0); // 4. expand code units 16-bit => 32-bit __m128i out0 = __lsx_vilvl_h(s4, t2); __m128i out1 = __lsx_vilvh_h(s4, t2); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle __m128i one_byte_bytemask = __lsx_vsle_hu(utf16_packed, __lsx_vrepli_h(0x7F)); __m128i one_or_two_bytes_bytemask_u16_to_u32_low = __lsx_vilvl_h(one_or_two_bytes_bytemask, zero); __m128i one_or_two_bytes_bytemask_u16_to_u32_high = __lsx_vilvh_h(one_or_two_bytes_bytemask, zero); __m128i one_byte_bytemask_u16_to_u32_low = __lsx_vilvl_h(one_byte_bytemask, one_byte_bytemask); __m128i one_byte_bytemask_u16_to_u32_high = __lsx_vilvh_h(one_byte_bytemask, one_byte_bytemask); const uint32_t mask0 = __lsx_vpickve2gr_bu(__lsx_vmskltz_h(__lsx_vor_v( one_or_two_bytes_bytemask_u16_to_u32_low, one_byte_bytemask_u16_to_u32_low)), 0); const uint32_t mask1 = __lsx_vpickve2gr_bu(__lsx_vmskltz_h(__lsx_vor_v( one_or_two_bytes_bytemask_u16_to_u32_high, one_byte_bytemask_u16_to_u32_high)), 0); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; __m128i shuffle0 = __lsx_vld(row0, 1); __m128i utf8_0 = __lsx_vshuf_b(zero, out0, shuffle0); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_1 = __lsx_vshuf_b(zero, out1, shuffle1); __lsx_vst(utf8_0, utf8_output, 0); utf8_output += row0[0]; __lsx_vst(utf8_1, utf8_output, 0); utf8_output += row1[0]; buf += 8; } // At least one 32-bit word will produce a surrogate pair in UTF-16 <=> // will produce four UTF-8 bytes. } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (word > 0x10FFFF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while // check for invalid input if (__lsx_bnz_v(forbidden_bytemask)) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } return std::make_pair(buf, reinterpret_cast(utf8_output)); } std::pair lsx_convert_utf32_to_utf8_with_errors(const char32_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char32_t *start = buf; const char32_t *end = buf + len; __m128i v_c080 = lsx_splat_u16(0xc080); __m128i v_07ff = lsx_splat_u16(0x07ff); __m128i v_dfff = lsx_splat_u16(0xdfff); __m128i v_d800 = lsx_splat_u16(0xd800); __m128i forbidden_bytemask = __lsx_vldi(0x0); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf > std::ptrdiff_t(16 + safety_margin)) { __m128i in = __lsx_vld(reinterpret_cast(buf), 0); __m128i nextin = __lsx_vld(reinterpret_cast(buf), 16); // Check if no bits set above 16th if (__lsx_bz_v(__lsx_vpickod_h(in, nextin))) { // Pack UTF-32 to UTF-16 safely (without surrogate pairs) // Apply UTF-16 => UTF-8 routine (lsx_convert_utf16_to_utf8.cpp) __m128i utf16_packed = __lsx_vpickev_h(nextin, in); if (__lsx_bz_v(__lsx_vslt_hu(__lsx_vrepli_h(0x7F), utf16_packed))) { // ASCII fast path!!!! // 1. pack the bytes // obviously suboptimal. __m128i utf8_packed = __lsx_vpickev_b(utf16_packed, utf16_packed); // 2. store (8 bytes) __lsx_vst(utf8_packed, utf8_output, 0); // 3. adjust pointers buf += 8; utf8_output += 8; continue; // we are done for this round! } __m128i zero = __lsx_vldi(0); if (__lsx_bz_v(__lsx_vslt_hu(v_07ff, utf16_packed))) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 // t0 = [000a|aaaa|bbbb|bb00] const __m128i t0 = __lsx_vslli_h(utf16_packed, 2); // t1 = [000a|aaaa|0000|0000] const __m128i t1 = __lsx_vand_v(t0, lsx_splat_u16(0x1f00)); // t2 = [0000|0000|00bb|bbbb] const __m128i t2 = __lsx_vand_v(utf16_packed, __lsx_vrepli_h(0x3f)); // t3 = [000a|aaaa|00bb|bbbb] const __m128i t3 = __lsx_vor_v(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m128i t4 = __lsx_vor_v(t3, v_c080); // 2. merge ASCII and 2-byte codewords __m128i one_byte_bytemask = __lsx_vsle_hu(utf16_packed, __lsx_vrepli_h(0x7F /*0x007F*/)); __m128i utf8_unpacked = __lsx_vbitsel_v(t4, utf16_packed, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup uint32_t m2 = __lsx_vpickve2gr_bu(__lsx_vmskltz_h(one_byte_bytemask), 0); // 4. pack the bytes const uint8_t *row = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lsx_1_2_utf8_bytes_mask[m2]][0]; __m128i shuffle = __lsx_vld(row, 1); __m128i utf8_packed = __lsx_vshuf_b(zero, utf8_unpacked, shuffle); // 5. store bytes __lsx_vst(utf8_packed, utf8_output, 0); // 6. adjust pointers buf += 8; utf8_output += row[0]; continue; } else { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes forbidden_bytemask = __lsx_vor_v( __lsx_vand_v( __lsx_vsle_h(utf16_packed, v_dfff), // utf16_packed <= 0xdfff __lsx_vsle_h(v_d800, utf16_packed)), // utf16_packed >= 0xd800 forbidden_bytemask); if (__lsx_bnz_v(forbidden_bytemask)) { return std::make_pair(result(error_code::SURROGATE, buf - start), reinterpret_cast(utf8_output)); } /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] __m128i t0 = __lsx_vpickev_b(utf16_packed, utf16_packed); t0 = __lsx_vilvl_b(t0, t0); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] __m128i v_3f7f = __lsx_vreplgr2vr_h(uint16_t(0x3F7F)); __m128i t1 = __lsx_vand_v(t0, v_3f7f); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] __m128i t2 = __lsx_vor_v(t1, lsx_splat_u16(0x8000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] __m128i s0 = __lsx_vsrli_h(utf16_packed, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] __m128i s1 = __lsx_vslli_h(utf16_packed, 2); // [0000|bbbb|bb00|0000] => [00bb|bbbb|0000|0000] s1 = __lsx_vand_v(s1, lsx_splat_u16(0x3F00)); // [00bb|bbbb|0000|aaaa] __m128i s2 = __lsx_vor_v(s0, s1); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] __m128i v_c0e0 = __lsx_vreplgr2vr_h(uint16_t(0xC0E0)); __m128i s3 = __lsx_vor_v(s2, v_c0e0); // __m128i v_07ff = vmovq_n_u16((uint16_t)0x07FF); __m128i one_or_two_bytes_bytemask = __lsx_vsle_hu(utf16_packed, v_07ff); __m128i m0 = __lsx_vandn_v(one_or_two_bytes_bytemask, lsx_splat_u16(0x4000)); __m128i s4 = __lsx_vxor_v(s3, m0); // 4. expand code units 16-bit => 32-bit __m128i out0 = __lsx_vilvl_h(s4, t2); __m128i out1 = __lsx_vilvh_h(s4, t2); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle __m128i one_byte_bytemask = __lsx_vsle_hu(utf16_packed, __lsx_vrepli_h(0x7F)); __m128i one_or_two_bytes_bytemask_u16_to_u32_low = __lsx_vilvl_h(one_or_two_bytes_bytemask, zero); __m128i one_or_two_bytes_bytemask_u16_to_u32_high = __lsx_vilvh_h(one_or_two_bytes_bytemask, zero); __m128i one_byte_bytemask_u16_to_u32_low = __lsx_vilvl_h(one_byte_bytemask, one_byte_bytemask); __m128i one_byte_bytemask_u16_to_u32_high = __lsx_vilvh_h(one_byte_bytemask, one_byte_bytemask); const uint32_t mask0 = __lsx_vpickve2gr_bu(__lsx_vmskltz_h(__lsx_vor_v( one_or_two_bytes_bytemask_u16_to_u32_low, one_byte_bytemask_u16_to_u32_low)), 0); const uint32_t mask1 = __lsx_vpickve2gr_bu(__lsx_vmskltz_h(__lsx_vor_v( one_or_two_bytes_bytemask_u16_to_u32_high, one_byte_bytemask_u16_to_u32_high)), 0); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask0][0]; __m128i shuffle0 = __lsx_vld(row0, 1); __m128i utf8_0 = __lsx_vshuf_b(zero, out0, shuffle0); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask1][0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_1 = __lsx_vshuf_b(zero, out1, shuffle1); __lsx_vst(utf8_0, utf8_output, 0); utf8_output += row0[0]; __lsx_vst(utf8_1, utf8_output, 0); utf8_output += row1[0]; buf += 8; } // At least one 32-bit word will produce a surrogate pair in UTF-16 <=> // will produce four UTF-8 bytes. } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k), reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (word > 0x10FFFF) { return std::make_pair( result(error_code::TOO_LARGE, buf - start + k), reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf8_output)); } /* end file src/lsx/lsx_convert_utf32_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/lsx/lsx_convert_utf32_to_utf16.cpp */ template std::pair lsx_convert_utf32_to_utf16(const char32_t *buf, size_t len, char16_t *utf16_out) { uint16_t *utf16_output = reinterpret_cast(utf16_out); const char32_t *end = buf + len; __m128i forbidden_bytemask = __lsx_vrepli_h(0); __m128i v_d800 = lsx_splat_u16(0xd800); __m128i v_dfff = lsx_splat_u16(0xdfff); while (end - buf >= 8) { __m128i in0 = __lsx_vld(reinterpret_cast(buf), 0); __m128i in1 = __lsx_vld(reinterpret_cast(buf), 16); // Check if no bits set above 16th if (__lsx_bz_v(__lsx_vpickod_h(in1, in0))) { __m128i utf16_packed = __lsx_vpickev_h(in1, in0); forbidden_bytemask = __lsx_vor_v( __lsx_vand_v( __lsx_vsle_h(utf16_packed, v_dfff), // utf16_packed <= 0xdfff __lsx_vsle_h(v_d800, utf16_packed)), // utf16_packed >= 0xd800 forbidden_bytemask); if (!match_system(big_endian)) { utf16_packed = lsx_swap_bytes(utf16_packed); } __lsx_vst(utf16_packed, utf16_output, 0); utf16_output += 8; buf += 8; } else { size_t forward = 3; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, reinterpret_cast(utf16_output)); } *utf16_output++ = !match_system(big_endian) ? char16_t(word >> 8 | word << 8) : char16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return std::make_pair(nullptr, reinterpret_cast(utf16_output)); } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = uint16_t(high_surrogate >> 8 | high_surrogate << 8); low_surrogate = uint16_t(low_surrogate << 8 | low_surrogate >> 8); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } } buf += k; } } // check for invalid input if (__lsx_bnz_v(forbidden_bytemask)) { return std::make_pair(nullptr, reinterpret_cast(utf16_output)); } return std::make_pair(buf, reinterpret_cast(utf16_output)); } template std::pair lsx_convert_utf32_to_utf16_with_errors(const char32_t *buf, size_t len, char16_t *utf16_out) { uint16_t *utf16_output = reinterpret_cast(utf16_out); const char32_t *start = buf; const char32_t *end = buf + len; __m128i forbidden_bytemask = __lsx_vrepli_h(0); __m128i v_d800 = lsx_splat_u16(0xd800); __m128i v_dfff = lsx_splat_u16(0xdfff); while (end - buf >= 8) { __m128i in0 = __lsx_vld(reinterpret_cast(buf), 0); __m128i in1 = __lsx_vld(reinterpret_cast(buf), 16); // Check if no bits set above 16th if (__lsx_bz_v(__lsx_vpickod_h(in1, in0))) { __m128i utf16_packed = __lsx_vpickev_h(in1, in0); forbidden_bytemask = __lsx_vor_v( __lsx_vand_v( __lsx_vsle_h(utf16_packed, v_dfff), // utf16_packed <= 0xdfff __lsx_vsle_h(v_d800, utf16_packed)), // utf16_packed >= 0xd800 forbidden_bytemask); if (__lsx_bnz_v(forbidden_bytemask)) { return std::make_pair(result(error_code::SURROGATE, buf - start), reinterpret_cast(utf16_output)); } if (!match_system(big_endian)) { utf16_packed = lsx_swap_bytes(utf16_packed); } __lsx_vst(utf16_packed, utf16_output, 0); utf16_output += 8; buf += 8; } else { size_t forward = 3; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k), reinterpret_cast(utf16_output)); } *utf16_output++ = !match_system(big_endian) ? char16_t(word >> 8 | word << 8) : char16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return std::make_pair( result(error_code::TOO_LARGE, buf - start + k), reinterpret_cast(utf16_output)); } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = uint16_t(high_surrogate >> 8 | high_surrogate << 8); low_surrogate = uint16_t(low_surrogate << 8 | low_surrogate >> 8); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } } buf += k; } } return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf16_output)); } /* end file src/lsx/lsx_convert_utf32_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 /* begin file src/lsx/lsx_base64.cpp */ /** * References and further reading: * * Wojciech Muła, Daniel Lemire, Base64 encoding and decoding at almost the * speed of a memory copy, Software: Practice and Experience 50 (2), 2020. * https://arxiv.org/abs/1910.05109 * * Wojciech Muła, Daniel Lemire, Faster Base64 Encoding and Decoding using AVX2 * Instructions, ACM Transactions on the Web 12 (3), 2018. * https://arxiv.org/abs/1704.00605 * * Simon Josefsson. 2006. The Base16, Base32, and Base64 Data Encodings. * https://tools.ietf.org/html/rfc4648. (2006). Internet Engineering Task Force, * Request for Comments: 4648. * * Alfred Klomp. 2014a. Fast Base64 encoding/decoding with SSE vectorization. * http://www.alfredklomp.com/programming/sse-base64/. (2014). * * Alfred Klomp. 2014b. Fast Base64 stream encoder/decoder in C99, with SIMD * acceleration. https://github.com/aklomp/base64. (2014). * * Hanson Char. 2014. A Fast and Correct Base 64 Codec. (2014). * https://aws.amazon.com/blogs/developer/a-fast-and-correct-base-64-codec/ * * Nick Kopp. 2013. Base64 Encoding on a GPU. * https://www.codeproject.com/Articles/276993/Base-Encoding-on-a-GPU. (2013). */ template size_t encode_base64(char *dst, const char *src, size_t srclen, base64_options options) { // credit: Wojciech Muła // SSE (lookup: pshufb improved unrolled) const uint8_t *input = (const uint8_t *)src; static const char *lookup_tbl = isbase64url ? "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_" : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; uint8_t *out = (uint8_t *)dst; v16u8 shuf; __m128i v_fc0fc00, v_3f03f0, shift_r, shift_l, base64_tbl0, base64_tbl1, base64_tbl2, base64_tbl3; if (srclen >= 16) { shuf = v16u8{1, 0, 2, 1, 4, 3, 5, 4, 7, 6, 8, 7, 10, 9, 11, 10}; v_fc0fc00 = __lsx_vreplgr2vr_w(uint32_t(0x0fc0fc00)); v_3f03f0 = __lsx_vreplgr2vr_w(uint32_t(0x003f03f0)); shift_r = __lsx_vreplgr2vr_w(uint32_t(0x0006000a)); shift_l = __lsx_vreplgr2vr_w(uint32_t(0x00080004)); base64_tbl0 = __lsx_vld(lookup_tbl, 0); base64_tbl1 = __lsx_vld(lookup_tbl, 16); base64_tbl2 = __lsx_vld(lookup_tbl, 32); base64_tbl3 = __lsx_vld(lookup_tbl, 48); } size_t i = 0; for (; i + 52 <= srclen; i += 48) { __m128i in0 = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 0); __m128i in1 = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 1); __m128i in2 = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 2); __m128i in3 = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 3); in0 = __lsx_vshuf_b(in0, in0, (__m128i)shuf); in1 = __lsx_vshuf_b(in1, in1, (__m128i)shuf); in2 = __lsx_vshuf_b(in2, in2, (__m128i)shuf); in3 = __lsx_vshuf_b(in3, in3, (__m128i)shuf); __m128i t0_0 = __lsx_vand_v(in0, v_fc0fc00); __m128i t0_1 = __lsx_vand_v(in1, v_fc0fc00); __m128i t0_2 = __lsx_vand_v(in2, v_fc0fc00); __m128i t0_3 = __lsx_vand_v(in3, v_fc0fc00); __m128i t1_0 = __lsx_vsrl_h(t0_0, shift_r); __m128i t1_1 = __lsx_vsrl_h(t0_1, shift_r); __m128i t1_2 = __lsx_vsrl_h(t0_2, shift_r); __m128i t1_3 = __lsx_vsrl_h(t0_3, shift_r); __m128i t2_0 = __lsx_vand_v(in0, v_3f03f0); __m128i t2_1 = __lsx_vand_v(in1, v_3f03f0); __m128i t2_2 = __lsx_vand_v(in2, v_3f03f0); __m128i t2_3 = __lsx_vand_v(in3, v_3f03f0); __m128i t3_0 = __lsx_vsll_h(t2_0, shift_l); __m128i t3_1 = __lsx_vsll_h(t2_1, shift_l); __m128i t3_2 = __lsx_vsll_h(t2_2, shift_l); __m128i t3_3 = __lsx_vsll_h(t2_3, shift_l); __m128i input0 = __lsx_vor_v(t1_0, t3_0); __m128i input0_shuf0 = __lsx_vshuf_b(base64_tbl1, base64_tbl0, input0); __m128i input0_shuf1 = __lsx_vshuf_b(base64_tbl3, base64_tbl2, __lsx_vsub_b(input0, __lsx_vldi(32))); __m128i input0_mask = __lsx_vslei_bu(input0, 31); __m128i input0_result = __lsx_vbitsel_v(input0_shuf1, input0_shuf0, input0_mask); __lsx_vst(input0_result, reinterpret_cast<__m128i *>(out), 0); out += 16; __m128i input1 = __lsx_vor_v(t1_1, t3_1); __m128i input1_shuf0 = __lsx_vshuf_b(base64_tbl1, base64_tbl0, input1); __m128i input1_shuf1 = __lsx_vshuf_b(base64_tbl3, base64_tbl2, __lsx_vsub_b(input1, __lsx_vldi(32))); __m128i input1_mask = __lsx_vslei_bu(input1, 31); __m128i input1_result = __lsx_vbitsel_v(input1_shuf1, input1_shuf0, input1_mask); __lsx_vst(input1_result, reinterpret_cast<__m128i *>(out), 0); out += 16; __m128i input2 = __lsx_vor_v(t1_2, t3_2); __m128i input2_shuf0 = __lsx_vshuf_b(base64_tbl1, base64_tbl0, input2); __m128i input2_shuf1 = __lsx_vshuf_b(base64_tbl3, base64_tbl2, __lsx_vsub_b(input2, __lsx_vldi(32))); __m128i input2_mask = __lsx_vslei_bu(input2, 31); __m128i input2_result = __lsx_vbitsel_v(input2_shuf1, input2_shuf0, input2_mask); __lsx_vst(input2_result, reinterpret_cast<__m128i *>(out), 0); out += 16; __m128i input3 = __lsx_vor_v(t1_3, t3_3); __m128i input3_shuf0 = __lsx_vshuf_b(base64_tbl1, base64_tbl0, input3); __m128i input3_shuf1 = __lsx_vshuf_b(base64_tbl3, base64_tbl2, __lsx_vsub_b(input3, __lsx_vldi(32))); __m128i input3_mask = __lsx_vslei_bu(input3, 31); __m128i input3_result = __lsx_vbitsel_v(input3_shuf1, input3_shuf0, input3_mask); __lsx_vst(input3_result, reinterpret_cast<__m128i *>(out), 0); out += 16; } for (; i + 16 <= srclen; i += 12) { __m128i in = __lsx_vld(reinterpret_cast(input + i), 0); // bytes from groups A, B and C are needed in separate 32-bit lanes // in = [DDDD|CCCC|BBBB|AAAA] // // an input triplet has layout // [????????|ccdddddd|bbbbcccc|aaaaaabb] // byte 3 byte 2 byte 1 byte 0 -- byte 3 comes from the next // triplet // // shuffling changes the order of bytes: 1, 0, 2, 1 // [bbbbcccc|ccdddddd|aaaaaabb|bbbbcccc] // ^^^^ ^^^^^^^^ ^^^^^^^^ ^^^^ // processed bits in = __lsx_vshuf_b(in, in, (__m128i)shuf); // unpacking // t0 = [0000cccc|cc000000|aaaaaa00|00000000] __m128i t0 = __lsx_vand_v(in, v_fc0fc00); // t1 = [00000000|00cccccc|00000000|00aaaaaa] // ((c >> 6), (a >> 10)) __m128i t1 = __lsx_vsrl_h(t0, shift_r); // t2 = [00000000|00dddddd|000000bb|bbbb0000] __m128i t2 = __lsx_vand_v(in, v_3f03f0); // t3 = [00dddddd|00000000|00bbbbbb|00000000] // ((d << 8), (b << 4)) __m128i t3 = __lsx_vsll_h(t2, shift_l); // res = [00dddddd|00cccccc|00bbbbbb|00aaaaaa] = t1 | t3 __m128i indices = __lsx_vor_v(t1, t3); __m128i indices_shuf0 = __lsx_vshuf_b(base64_tbl1, base64_tbl0, indices); __m128i indices_shuf1 = __lsx_vshuf_b( base64_tbl3, base64_tbl2, __lsx_vsub_b(indices, __lsx_vldi(32))); __m128i indices_mask = __lsx_vslei_bu(indices, 31); __m128i indices_result = __lsx_vbitsel_v(indices_shuf1, indices_shuf0, indices_mask); __lsx_vst(indices_result, reinterpret_cast<__m128i *>(out), 0); out += 16; } return i / 3 * 4 + scalar::base64::tail_encode_base64((char *)out, src + i, srclen - i, options); } static inline void compress(__m128i data, uint16_t mask, char *output) { if (mask == 0) { __lsx_vst(data, reinterpret_cast<__m128i *>(output), 0); return; } // this particular implementation was inspired by work done by @animetosho // we do it in two steps, first 8 bytes and then second 8 bytes uint8_t mask1 = uint8_t(mask); // least significant 8 bits uint8_t mask2 = uint8_t(mask >> 8); // most significant 8 bits // next line just loads the 64-bit values thintable_epi8[mask1] and // thintable_epi8[mask2] into a 128-bit register, using only // two instructions on most compilers. v2u64 shufmask = {tables::base64::thintable_epi8[mask1], tables::base64::thintable_epi8[mask2]}; // we increment by 0x08 the second half of the mask v4u32 hi = {0, 0, 0x08080808, 0x08080808}; __m128i shufmask1 = __lsx_vadd_b((__m128i)shufmask, (__m128i)hi); // this is the version "nearly pruned" __m128i pruned = __lsx_vshuf_b(data, data, shufmask1); // we still need to put the two halves together. // we compute the popcount of the first half: int pop1 = tables::base64::BitsSetTable256mul2[mask1]; // then load the corresponding mask, what it does is to write // only the first pop1 bytes from the first 8 bytes, and then // it fills in with the bytes from the second 8 bytes + some filling // at the end. __m128i compactmask = __lsx_vld(reinterpret_cast( tables::base64::pshufb_combine_table + pop1 * 8), 0); __m128i answer = __lsx_vshuf_b(pruned, pruned, compactmask); __lsx_vst(answer, reinterpret_cast<__m128i *>(output), 0); } struct block64 { __m128i chunks[4]; }; template static inline uint16_t to_base64_mask(__m128i *src, bool *error) { const v16u8 ascii_space_tbl = {0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xa, 0x0, 0xc, 0xd, 0x0, 0x0}; // credit: aqrit /* '0'(0x30)-'9'(0x39) => delta_values_index = 4 'A'(0x41)-'Z'(0x5a) => delta_values_index = 4/5/12(4+8) 'a'(0x61)-'z'(0x7a) => delta_values_index = 6/7/14(6+8) '+'(0x2b) => delta_values_index = 3 '/'(0x2f) => delta_values_index = 2+8 = 10 '-'(0x2d) => delta_values_index = 2+8 = 10 '_'(0x5f) => delta_values_index = 5+8 = 13 */ v16u8 delta_asso; if (default_or_url) { delta_asso = v16u8{0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x16}; } else { delta_asso = v16u8{0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xF, 0x0, 0xF}; } v16i8 delta_values; if (default_or_url) { delta_values = v16i8{int8_t(0xBF), int8_t(0xE0), int8_t(0xB9), int8_t(0x13), int8_t(0x04), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9), int8_t(0x00), int8_t(0xFF), int8_t(0x11), int8_t(0xFF), int8_t(0xBF), int8_t(0x10), int8_t(0xB9)}; } else if (base64_url) { delta_values = v16i8{int8_t(0x00), int8_t(0x00), int8_t(0x00), int8_t(0x13), int8_t(0x04), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9), int8_t(0x00), int8_t(0x11), int8_t(0xC3), int8_t(0xBF), int8_t(0xE0), int8_t(0xB9), int8_t(0xB9)}; } else { delta_values = v16i8{int8_t(0x00), int8_t(0x00), int8_t(0x00), int8_t(0x13), int8_t(0x04), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9), int8_t(0x00), int8_t(0x10), int8_t(0xC3), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9)}; } v16u8 check_asso; if (default_or_url) { check_asso = v16u8{0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0E, 0x0B, 0x06}; } else if (base64_url) { check_asso = v16u8{0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x06, 0x0B, 0x12}; } else { check_asso = v16u8{0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0B, 0x0B, 0x0F}; } v16i8 check_values; if (default_or_url) { check_values = v16i8{int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0xCF), int8_t(0xBF), int8_t(0xD5), int8_t(0xA6), int8_t(0xB5), int8_t(0xA1), int8_t(0x00), int8_t(0x80), int8_t(0x00), int8_t(0x80), int8_t(0x00), int8_t(0x80)}; } else if (base64_url) { check_values = v16i8{int8_t(0x0), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0xCF), int8_t(0xBF), int8_t(0xD3), int8_t(0xA6), int8_t(0xB5), int8_t(0x86), int8_t(0xD0), int8_t(0x80), int8_t(0xB0), int8_t(0x80), int8_t(0x0), int8_t(0x0)}; } else { check_values = v16i8{int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0xCF), int8_t(0xBF), int8_t(0xD5), int8_t(0xA6), int8_t(0xB5), int8_t(0x86), int8_t(0xD1), int8_t(0x80), int8_t(0xB1), int8_t(0x80), int8_t(0x91), int8_t(0x80)}; } const __m128i shifted = __lsx_vsrli_b(*src, 3); __m128i asso_index = __lsx_vand_v(*src, __lsx_vldi(0xF)); const __m128i delta_hash = __lsx_vavgr_bu(__lsx_vshuf_b((__m128i)delta_asso, (__m128i)delta_asso, (__m128i)asso_index), shifted); const __m128i check_hash = __lsx_vavgr_bu(__lsx_vshuf_b((__m128i)check_asso, (__m128i)check_asso, (__m128i)asso_index), shifted); const __m128i out = __lsx_vsadd_b(__lsx_vshuf_b((__m128i)delta_values, (__m128i)delta_values, (__m128i)delta_hash), *src); const __m128i chk = __lsx_vsadd_b(__lsx_vshuf_b((__m128i)check_values, (__m128i)check_values, (__m128i)check_hash), *src); unsigned int mask = __lsx_vpickve2gr_hu(__lsx_vmskltz_b(chk), 0); if (mask) { __m128i ascii_space = __lsx_vseq_b(__lsx_vshuf_b((__m128i)ascii_space_tbl, (__m128i)ascii_space_tbl, (__m128i)asso_index), *src); *error |= (mask != __lsx_vpickve2gr_hu(__lsx_vmskltz_b((__m128i)ascii_space), 0)); } *src = out; return (uint16_t)mask; } template static inline uint64_t to_base64_mask(block64 *b, bool *error) { *error = 0; uint64_t m0 = to_base64_mask(&b->chunks[0], error); uint64_t m1 = to_base64_mask(&b->chunks[1], error); uint64_t m2 = to_base64_mask(&b->chunks[2], error); uint64_t m3 = to_base64_mask(&b->chunks[3], error); return m0 | (m1 << 16) | (m2 << 32) | (m3 << 48); } static inline void copy_block(block64 *b, char *output) { __lsx_vst(b->chunks[0], reinterpret_cast<__m128i *>(output), 0); __lsx_vst(b->chunks[1], reinterpret_cast<__m128i *>(output), 16); __lsx_vst(b->chunks[2], reinterpret_cast<__m128i *>(output), 32); __lsx_vst(b->chunks[3], reinterpret_cast<__m128i *>(output), 48); } static inline uint64_t compress_block(block64 *b, uint64_t mask, char *output) { uint64_t nmask = ~mask; uint64_t count = __lsx_vpickve2gr_d(__lsx_vpcnt_h(__lsx_vreplgr2vr_d(nmask)), 0); uint16_t *count_ptr = (uint16_t *)&count; compress(b->chunks[0], uint16_t(mask), output); compress(b->chunks[1], uint16_t(mask >> 16), output + count_ptr[0]); compress(b->chunks[2], uint16_t(mask >> 32), output + count_ptr[0] + count_ptr[1]); compress(b->chunks[3], uint16_t(mask >> 48), output + count_ptr[0] + count_ptr[1] + count_ptr[2]); return count_ones(nmask); } // The caller of this function is responsible to ensure that there are 64 bytes // available from reading at src. The data is read into a block64 structure. static inline void load_block(block64 *b, const char *src) { b->chunks[0] = __lsx_vld(reinterpret_cast(src), 0); b->chunks[1] = __lsx_vld(reinterpret_cast(src), 16); b->chunks[2] = __lsx_vld(reinterpret_cast(src), 32); b->chunks[3] = __lsx_vld(reinterpret_cast(src), 48); } // The caller of this function is responsible to ensure that there are 128 bytes // available from reading at src. The data is read into a block64 structure. static inline void load_block(block64 *b, const char16_t *src) { __m128i m1 = __lsx_vld(reinterpret_cast(src), 0); __m128i m2 = __lsx_vld(reinterpret_cast(src), 16); __m128i m3 = __lsx_vld(reinterpret_cast(src), 32); __m128i m4 = __lsx_vld(reinterpret_cast(src), 48); __m128i m5 = __lsx_vld(reinterpret_cast(src), 64); __m128i m6 = __lsx_vld(reinterpret_cast(src), 80); __m128i m7 = __lsx_vld(reinterpret_cast(src), 96); __m128i m8 = __lsx_vld(reinterpret_cast(src), 112); b->chunks[0] = __lsx_vssrlni_bu_h(m2, m1, 0); b->chunks[1] = __lsx_vssrlni_bu_h(m4, m3, 0); b->chunks[2] = __lsx_vssrlni_bu_h(m6, m5, 0); b->chunks[3] = __lsx_vssrlni_bu_h(m8, m7, 0); } static inline void base64_decode(char *out, __m128i str) { __m128i t0 = __lsx_vor_v( __lsx_vslli_w(str, 26), __lsx_vslli_w(__lsx_vand_v(str, lsx_splat_u32(0x0000FF00)), 12)); __m128i t1 = __lsx_vsrli_w(__lsx_vand_v(str, lsx_splat_u32(0x003F0000)), 2); __m128i t2 = __lsx_vor_v(t0, t1); __m128i t3 = __lsx_vor_v(t2, __lsx_vsrli_w(str, 16)); const v16u8 pack_shuffle = {3, 2, 1, 7, 6, 5, 11, 10, 9, 15, 14, 13, 0, 0, 0, 0}; t3 = __lsx_vshuf_b(t3, t3, (__m128i)pack_shuffle); // Store the output: // we only need 12. __lsx_vstelm_d(t3, out, 0, 0); __lsx_vstelm_w(t3, out + 8, 0, 2); } // decode 64 bytes and output 48 bytes static inline void base64_decode_block(char *out, const char *src) { base64_decode(out, __lsx_vld(reinterpret_cast(src), 0)); base64_decode(out + 12, __lsx_vld(reinterpret_cast(src), 16)); base64_decode(out + 24, __lsx_vld(reinterpret_cast(src), 32)); base64_decode(out + 36, __lsx_vld(reinterpret_cast(src), 48)); } static inline void base64_decode_block_safe(char *out, const char *src) { base64_decode_block(out, src); } static inline void base64_decode_block(char *out, block64 *b) { base64_decode(out, b->chunks[0]); base64_decode(out + 12, b->chunks[1]); base64_decode(out + 24, b->chunks[2]); base64_decode(out + 36, b->chunks[3]); } static inline void base64_decode_block_safe(char *out, block64 *b) { base64_decode_block(out, b); } template full_result compress_decode_base64(char *dst, const char_type *src, size_t srclen, base64_options options, last_chunk_handling_options last_chunk_options) { const uint8_t *to_base64 = default_or_url ? tables::base64::to_base64_default_or_url_value : (base64_url ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); auto ri = simdutf::scalar::base64::find_end(src, srclen, options); size_t equallocation = ri.equallocation; size_t equalsigns = ri.equalsigns; srclen = ri.srclen; size_t full_input_length = ri.full_input_length; if (srclen == 0) { if (!ignore_garbage && equalsigns > 0) { return {INVALID_BASE64_CHARACTER, equallocation, 0}; } return {SUCCESS, full_input_length, 0}; } const char_type *const srcinit = src; const char *const dstinit = dst; const char_type *const srcend = src + srclen; constexpr size_t block_size = 10; char buffer[block_size * 64]; char *bufferptr = buffer; if (srclen >= 64) { const char_type *const srcend64 = src + srclen - 64; while (src <= srcend64) { block64 b; load_block(&b, src); src += 64; bool error = false; uint64_t badcharmask = to_base64_mask(&b, &error); if (badcharmask) { if (error && !ignore_garbage) { src -= 64; while (src < srcend && scalar::base64::is_eight_byte(*src) && to_base64[uint8_t(*src)] <= 64) { src++; } if (src < srcend) { // should never happen } return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit)}; } } if (badcharmask != 0) { // optimization opportunity: check for simple masks like those made of // continuous 1s followed by continuous 0s. And masks containing a // single bad character. bufferptr += compress_block(&b, badcharmask, bufferptr); } else { // optimization opportunity: if bufferptr == buffer and mask == 0, we // can avoid the call to compress_block and decode directly. copy_block(&b, bufferptr); bufferptr += 64; } if (bufferptr >= (block_size - 1) * 64 + buffer) { for (size_t i = 0; i < (block_size - 1); i++) { base64_decode_block(dst, buffer + i * 64); dst += 48; } std::memcpy(buffer, buffer + (block_size - 1) * 64, 64); // 64 might be too much bufferptr -= (block_size - 1) * 64; } } } char *buffer_start = buffer; // Optimization note: if this is almost full, then it is worth our // time, otherwise, we should just decode directly. int last_block = (int)((bufferptr - buffer_start) % 64); if (last_block != 0 && srcend - src + last_block >= 64) { while ((bufferptr - buffer_start) % 64 != 0 && src < srcend) { uint8_t val = to_base64[uint8_t(*src)]; *bufferptr = char(val); if ((!scalar::base64::is_eight_byte(*src) || val > 64) && !ignore_garbage) { return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit)}; } bufferptr += (val <= 63); src++; } } for (; buffer_start + 64 <= bufferptr; buffer_start += 64) { base64_decode_block(dst, buffer_start); dst += 48; } if ((bufferptr - buffer_start) % 64 != 0) { while (buffer_start + 4 < bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; triple = scalar::u32_swap_bytes(triple); std::memcpy(dst, &triple, 4); dst += 3; buffer_start += 4; } if (buffer_start + 4 <= bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; triple = scalar::u32_swap_bytes(triple); std::memcpy(dst, &triple, 3); dst += 3; buffer_start += 4; } // we may have 1, 2 or 3 bytes left and we need to decode them so let us // backtrack int leftover = int(bufferptr - buffer_start); while (leftover > 0) { if (!ignore_garbage) { while (to_base64[uint8_t(*(src - 1))] == 64) { src--; } } else { while (to_base64[uint8_t(*(src - 1))] >= 64) { src--; } } src--; leftover--; } } if (src < srcend + equalsigns) { full_result r = scalar::base64::base64_tail_decode( dst, src, srcend - src, equalsigns, options, last_chunk_options); r = scalar::base64::patch_tail_result( r, size_t(src - srcinit), size_t(dst - dstinit), equallocation, full_input_length, last_chunk_options); // When is_partial(last_chunk_options) is true, we must either end with // the end of the stream (beyond whitespace) or right after a non-ignorable // character or at the very beginning of the stream. // See https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 if (is_partial(last_chunk_options) && r.error == error_code::SUCCESS && r.input_count < full_input_length) { // First check if we can extend the input to the end of the stream while (r.input_count < full_input_length && base64_ignorable(*(srcinit + r.input_count), options)) { r.input_count++; } // If we are still not at the end of the stream, then we must backtrack // to the last non-ignorable character. if (r.input_count < full_input_length) { while (r.input_count > 0 && base64_ignorable(*(srcinit + r.input_count - 1), options)) { r.input_count--; } } } return r; } if (equalsigns > 0 && !ignore_garbage) { if ((size_t(dst - dstinit) % 3 == 0) || ((size_t(dst - dstinit) % 3) + 1 + equalsigns != 4)) { return {INVALID_BASE64_CHARACTER, equallocation, size_t(dst - dstinit)}; } } return {SUCCESS, srclen, size_t(dst - dstinit)}; } /* end file src/lsx/lsx_base64.cpp */ /* begin file src/lsx/lsx_find.cpp */ simdutf_really_inline const char *util_find(const char *start, const char *end, char character) noexcept { if (start >= end) return end; const int step = 16; __m128i char_vec = __lsx_vreplgr2vr_b(static_cast(character)); while (end - start >= step) { __m128i data = __lsx_vld(reinterpret_cast(start), 0); __m128i cmp = __lsx_vseq_b(data, char_vec); if (__lsx_bnz_v(cmp)) { uint16_t mask = static_cast(__lsx_vpickve2gr_hu(__lsx_vmsknz_b(cmp), 0)); return start + trailing_zeroes(mask); } start += step; } // Handle remaining bytes with scalar loop for (; start < end; ++start) { if (*start == character) { return start; } } return end; } simdutf_really_inline const char16_t *util_find(const char16_t *start, const char16_t *end, char16_t character) noexcept { if (start >= end) return end; const int step = 8; __m128i char_vec = __lsx_vreplgr2vr_h(static_cast(character)); while (end - start >= step) { __m128i data = __lsx_vld(reinterpret_cast(start), 0); __m128i cmp = __lsx_vseq_h(data, char_vec); if (__lsx_bnz_v(cmp)) { uint16_t mask = static_cast(__lsx_vpickve2gr_hu(__lsx_vmsknz_b(cmp), 0)); return start + trailing_zeroes(mask) / 2; } start += step; } // Handle remaining elements with scalar loop for (; start < end; ++start) { if (*start == character) { return start; } } return end; } /* end file src/lsx/lsx_find.cpp */ #endif // SIMDUTF_FEATURE_BASE64 } // namespace } // namespace lsx } // namespace simdutf /* begin file src/generic/buf_block_reader.h */ namespace simdutf { namespace lsx { namespace { // Walks through a buffer in block-sized increments, loading the last part with // spaces template struct buf_block_reader { public: simdutf_really_inline buf_block_reader(const uint8_t *_buf, size_t _len); simdutf_really_inline size_t block_index(); simdutf_really_inline bool has_full_block() const; simdutf_really_inline const uint8_t *full_block() const; /** * Get the last block, padded with spaces. * * There will always be a last block, with at least 1 byte, unless len == 0 * (in which case this function fills the buffer with spaces and returns 0. In * particular, if len == STEP_SIZE there will be 0 full_blocks and 1 remainder * block with STEP_SIZE bytes and no spaces for padding. * * @return the number of effective characters in the last block. */ simdutf_really_inline size_t get_remainder(uint8_t *dst) const; simdutf_really_inline void advance(); private: const uint8_t *buf; const size_t len; const size_t lenminusstep; size_t idx; }; // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text_64(const uint8_t *text) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); for (size_t i = 0; i < sizeof(simd8x64); i++) { buf[i] = int8_t(text[i]) < ' ' ? '_' : int8_t(text[i]); } buf[sizeof(simd8x64)] = '\0'; return buf; } // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text(const simd8x64 &in) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); in.store(reinterpret_cast(buf)); for (size_t i = 0; i < sizeof(simd8x64); i++) { if (buf[i] < ' ') { buf[i] = '_'; } } buf[sizeof(simd8x64)] = '\0'; return buf; } simdutf_unused static char *format_mask(uint64_t mask) { static char *buf = reinterpret_cast(malloc(64 + 1)); for (size_t i = 0; i < 64; i++) { buf[i] = (mask & (size_t(1) << i)) ? 'X' : ' '; } buf[64] = '\0'; return buf; } template simdutf_really_inline buf_block_reader::buf_block_reader(const uint8_t *_buf, size_t _len) : buf{_buf}, len{_len}, lenminusstep{len < STEP_SIZE ? 0 : len - STEP_SIZE}, idx{0} {} template simdutf_really_inline size_t buf_block_reader::block_index() { return idx; } template simdutf_really_inline bool buf_block_reader::has_full_block() const { return idx < lenminusstep; } template simdutf_really_inline const uint8_t * buf_block_reader::full_block() const { return &buf[idx]; } template simdutf_really_inline size_t buf_block_reader::get_remainder(uint8_t *dst) const { if (len == idx) { return 0; } // memcpy(dst, null, 0) will trigger an error with some sanitizers std::memset(dst, 0x20, STEP_SIZE); // std::memset STEP_SIZE because it is more efficient // to write out 8 or 16 bytes at once. std::memcpy(dst, buf + idx, len - idx); return len - idx; } template simdutf_really_inline void buf_block_reader::advance() { idx += STEP_SIZE; } } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/buf_block_reader.h */ #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ namespace simdutf { namespace lsx { namespace { namespace utf8_validation { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } // // Return nonzero if there are incomplete multibyte characters at the end of the // block: e.g. if there is a 4-byte character, but it is 3 bytes from the end. // simdutf_really_inline simd8 is_incomplete(const simd8 input) { // If the previous input's last 3 bytes match this, they're too short (they // ended at EOF): // ... 1111____ 111_____ 11______ static const uint8_t max_array[32] = {255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0b11110000u - 1, 0b11100000u - 1, 0b11000000u - 1}; const simd8 max_value( &max_array[sizeof(max_array) - sizeof(simd8)]); return input.gt_bits(max_value); } struct utf8_checker { // If this is nonzero, there has been a UTF-8 error. simd8 error; // The last input we received simd8 prev_input_block; // Whether the last input we received was incomplete (used for ASCII fast // path) simd8 prev_incomplete; // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } // The only problem that can happen at EOF is that a multibyte character is // too short or a byte value too large in the last bytes: check_special_cases // only checks for bytes too large in the first of two bytes. simdutf_really_inline void check_eof() { // If the previous block had incomplete UTF-8 characters at the end, an // ASCII block can't possibly finish them. this->error |= this->prev_incomplete; } simdutf_really_inline void check_next_input(const simd8x64 &input) { if (simdutf_likely(is_ascii(input))) { this->error |= this->prev_incomplete; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. static_assert((simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } this->prev_incomplete = is_incomplete(input.chunks[simd8x64::NUM_CHUNKS - 1]); this->prev_input_block = input.chunks[simd8x64::NUM_CHUNKS - 1]; } } // do not forget to call check_eof! simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_validation using utf8_validation::utf8_checker; } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ /* begin file src/generic/utf8_validation/utf8_validator.h */ namespace simdutf { namespace lsx { namespace { namespace utf8_validation { /** * Validates that the string is actual UTF-8. */ template bool generic_validate_utf8(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); return !c.errors(); } bool generic_validate_utf8(const char *input, size_t length) { return generic_validate_utf8( reinterpret_cast(input), length); } /** * Validates that the string is actual UTF-8 and stops on errors. */ template result generic_validate_utf8_with_errors(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input + count), length - count); res.count += count; return res; } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input) + count, length - count); res.count += count; return res; } else { return result(error_code::SUCCESS, length); } } result generic_validate_utf8_with_errors(const char *input, size_t length) { return generic_validate_utf8_with_errors( reinterpret_cast(input), length); } } // namespace utf8_validation } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf8_validation/utf8_validator.h */ #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_ASCII /* begin file src/generic/ascii_validation.h */ namespace simdutf { namespace lsx { namespace { namespace ascii_validation { bool generic_validate_ascii(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); uint8_t blocks[64]{}; simd::simd8x64 running_or(blocks); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); running_or |= in; reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); running_or |= in; return running_or.is_ascii(); } result generic_validate_ascii_with_errors(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } else { return result(error_code::SUCCESS, length); } } } // namespace ascii_validation } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/ascii_validation.h */ #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 // transcoding from UTF-8 to Latin 1 /* begin file src/generic/utf8_to_latin1/utf8_to_latin1.h */ namespace simdutf { namespace lsx { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // For UTF-8 to Latin 1, we can allow any ASCII character, and any // continuation byte, but the non-ASCII leading bytes must be 0b11000011 or // 0b11000010 and nothing else. // // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ constexpr const uint8_t FORBIDDEN = 0xff; const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ FORBIDDEN, // 1110____ ________ FORBIDDEN, // 1111____ ________ FORBIDDEN); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ FORBIDDEN, // ____0101 ________ FORBIDDEN, // ____011_ ________ FORBIDDEN, FORBIDDEN, // ____1___ ________ FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, // ____1101 ________ FORBIDDEN, FORBIDDEN, FORBIDDEN); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); this->error |= check_special_cases(input, prev1); } simdutf_really_inline size_t convert(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 16; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert(in + pos, size - pos, latin1_output); if (howmany == 0) { return 0; } latin1_output += howmany; } return latin1_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } uint64_t utf8_continuation_mask = input.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written latin1_output += res.count; } } return result(error_code::SUCCESS, latin1_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_latin1 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf8_to_latin1/utf8_to_latin1.h */ /* begin file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ namespace simdutf { namespace lsx { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline size_t convert_valid(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the last // 16 bytes, and if the data is valid, then it is entirely safe because 16 // UTF-8 bytes generate much more than 8 bytes. However, you cannot generally // assume that you have valid UTF-8 input, so we are going to go back from the // end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert_valid(in + pos, size - pos, latin1_output); latin1_output += howmany; } return latin1_output - start; } } // namespace utf8_to_latin1 } // namespace } // namespace lsx } // namespace simdutf // namespace simdutf /* end file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 // transcoding from UTF-8 to UTF-16 /* begin file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ namespace simdutf { namespace lsx { namespace { namespace utf8_to_utf16 { using namespace simd; template simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char16_t *utf16_output) noexcept { // The implementation is not specific to haswell and should be moved to the // generic directory. size_t pos = 0; char16_t *start{utf16_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { // this loop could be unrolled further. For example, we could process the // mask far more than 64 bytes. simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // Slow path. We hope that the compiler will recognize that this is a slow // path. Anything that is not a continuation mask is a 'leading byte', // that is, the start of a new code point. uint64_t utf8_continuation_mask = in.lt(-65 + 1); // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_leading_mask = ~utf8_continuation_mask; // The *start* of code points is not so useful, rather, we want the *end* // of code points. uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times when using solely // the slow/regular path, and at least four times if there are fast paths. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. // // Thus we may allow convert_masked_utf8_to_utf16 to process // more bytes at a time under a fast-path mode where 16 bytes // are consumed at once (e.g., when encountering ASCII). size_t consumed = convert_masked_utf8_to_utf16( input + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } utf16_output += scalar::utf8_to_utf16::convert_valid( input + pos, size - pos, utf16_output); return utf16_output - start; } } // namespace utf8_to_utf16 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ /* begin file src/generic/utf8_to_utf16/utf8_to_utf16.h */ namespace simdutf { namespace lsx { namespace { namespace utf8_to_utf16 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } template simdutf_really_inline size_t convert(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf16::convert( in + pos, size - pos, utf16_output); if (howmany == 0) { return 0; } utf16_output += howmany; } return utf16_output - start; } template simdutf_really_inline result convert_with_errors(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf16_output += res.count; } } return result(error_code::SUCCESS, utf16_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf16 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf8_to_utf16/utf8_to_utf16.h */ /* begin file src/generic/utf8/utf16_length_from_utf8_bytemask.h */ namespace simdutf { namespace lsx { namespace { namespace utf8 { using namespace simd; simdutf_really_inline size_t utf16_length_from_utf8_bytemask(const char *in, size_t size) { using vector_i8 = simd8; using vector_u8 = simd8; using vector_u64 = simd64; constexpr size_t N = vector_i8::SIZE; constexpr size_t max_iterations = 255 / 2; auto counters = vector_u64::zero(); auto local = vector_u8::zero(); size_t iterations = 0; size_t pos = 0; size_t count = 0; for (; pos + N <= size; pos += N) { const auto input = vector_i8::load(reinterpret_cast(in + pos)); const auto continuation = input > int8_t(-65); const auto utf_4bytes = vector_u8(input.value) >= uint8_t(240); local -= vector_u8(continuation); local -= vector_u8(utf_4bytes); iterations += 1; if (iterations == max_iterations) { counters += sum_8bytes(local); local = vector_u8::zero(); iterations = 0; } } if (iterations > 0) { count += local.sum_bytes(); } count += counters.sum(); return count + scalar::utf8::utf16_length_from_utf8(in + pos, size - pos); } } // namespace utf8 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf8/utf16_length_from_utf8_bytemask.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 // transcoding from UTF-8 to UTF-32 /* begin file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ namespace simdutf { namespace lsx { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char32_t *utf32_output) noexcept { size_t pos = 0; char32_t *start{utf32_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_continuation_mask = in.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; size_t max_starting_point = (pos + 64) - 12; while (pos < max_starting_point) { size_t consumed = convert_masked_utf8_to_utf32( input + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } } } utf32_output += scalar::utf8_to_utf32::convert_valid(input + pos, size - pos, utf32_output); return utf32_output - start; } } // namespace utf8_to_utf32 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ /* begin file src/generic/utf8_to_utf32/utf8_to_utf32.h */ namespace simdutf { namespace lsx { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } simdutf_really_inline size_t convert(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 words when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // we have an error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf32::convert(in + pos, size - pos, utf32_output); if (howmany == 0) { return 0; } utf32_output += howmany; } return utf32_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } if (pos < size) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf32_output += res.count; } } return result(error_code::SUCCESS, utf32_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf32 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf8_to_utf32/utf8_to_utf32.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 /* begin file src/generic/utf8.h */ namespace simdutf { namespace lsx { namespace { namespace utf8 { using namespace simd; simdutf_really_inline size_t count_code_points(const char *in, size_t size) { size_t pos = 0; size_t count = 0; for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.gt(-65); count += count_ones(utf8_continuation_mask); } return count + scalar::utf8::count_code_points(in + pos, size - pos); } #ifdef SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t count_code_points_bytemask(const char *in, size_t size) { using vector_i8 = simd8; using vector_u8 = simd8; using vector_u64 = simd64; constexpr size_t N = vector_i8::SIZE; constexpr size_t max_iterations = 255 / 4; size_t pos = 0; size_t count = 0; auto counters = vector_u64::zero(); auto local = vector_u8::zero(); size_t iterations = 0; for (; pos + 4 * N <= size; pos += 4 * N) { const auto input0 = simd8::load(reinterpret_cast(in + pos + 0 * N)); const auto input1 = simd8::load(reinterpret_cast(in + pos + 1 * N)); const auto input2 = simd8::load(reinterpret_cast(in + pos + 2 * N)); const auto input3 = simd8::load(reinterpret_cast(in + pos + 3 * N)); const auto mask0 = input0 > int8_t(-65); const auto mask1 = input1 > int8_t(-65); const auto mask2 = input2 > int8_t(-65); const auto mask3 = input3 > int8_t(-65); local -= vector_u8(mask0); local -= vector_u8(mask1); local -= vector_u8(mask2); local -= vector_u8(mask3); iterations += 1; if (iterations == max_iterations) { counters += sum_8bytes(local); local = vector_u8::zero(); iterations = 0; } } if (iterations > 0) { count += local.sum_bytes(); } count += counters.sum(); return count + scalar::utf8::count_code_points(in + pos, size - pos); } #endif // SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t utf16_length_from_utf8(const char *in, size_t size) { size_t pos = 0; size_t count = 0; // This algorithm could no doubt be improved! for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.lt(-65 + 1); // We count one word for anything that is not a continuation (so // leading bytes). count += 64 - count_ones(utf8_continuation_mask); int64_t utf8_4byte = input.gteq_unsigned(240); count += count_ones(utf8_4byte); } return count + scalar::utf8::utf16_length_from_utf8(in + pos, size - pos); } } // namespace utf8 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf8.h */ #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 /* begin file src/generic/utf16/count_code_points_bytemask.h */ namespace simdutf { namespace lsx { namespace { namespace utf16 { using namespace simd; template simdutf_really_inline size_t count_code_points(const char16_t *in, size_t size) { using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; size_t pos = 0; size_t count = 0; constexpr size_t max_itertions = 65535; const auto one = vector_u16::splat(1); const auto zero = vector_u16::zero(); size_t itertion = 0; auto counters = zero; for (; pos < size / N * N; pos += N) { auto input = vector_u16::load(in + pos); if (!match_system(big_endian)) { input = input.swap_bytes(); } const auto t0 = input & uint16_t(0xfc00); const auto t1 = t0 ^ uint16_t(0xdc00); // t2[0] == 1 iff input[0] outside range 0xdc00..dfff (the word is not a // high surrogate) const auto t2 = min(t1, one); counters += t2; itertion += 1; if (itertion == max_itertions) { count += counters.sum(); counters = zero; itertion = 0; } } if (itertion > 0) { count += counters.sum(); } return count + scalar::utf16::count_code_points(in + pos, size - pos); } } // namespace utf16 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf16/count_code_points_bytemask.h */ /* begin file src/generic/utf16/change_endianness.h */ namespace simdutf { namespace lsx { namespace { namespace utf16 { simdutf_really_inline void change_endianness_utf16(const char16_t *in, size_t size, char16_t *output) { size_t pos = 0; while (pos < size / 32 * 32) { simd16x32 input(reinterpret_cast(in + pos)); input.swap_bytes(); input.store(reinterpret_cast(output)); pos += 32; output += 32; } scalar::utf16::change_endianness_utf16(in + pos, size - pos, output); } } // namespace utf16 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf16/change_endianness.h */ /* begin file src/generic/utf16/utf8_length_from_utf16_bytemask.h */ namespace simdutf { namespace lsx { namespace { namespace utf16 { using namespace simd; template simdutf_really_inline size_t utf8_length_from_utf16_bytemask(const char16_t *in, size_t size) { size_t pos = 0; using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; const auto one = vector_u16::splat(1); auto v_count = vector_u16::zero(); // each char16 yields at least one byte size_t count = size / N * N; // in a single iteration the increment is 0, 1 or 2, despite we have // three additions constexpr size_t max_iterations = 65535 / 2; size_t iteration = max_iterations; for (; pos < size / N * N; pos += N) { auto input = vector_u16::load(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input = input.swap_bytes(); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate const auto is_surrogate = ((input & uint16_t(0xf800)) == uint16_t(0xd800)); // c0 - chars that yield 2- or 3-byte UTF-8 codes const auto c0 = min(input & uint16_t(0xff80), one); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) const auto c1 = min(input & uint16_t(0xf800), one); /* Explanation how the counting works. In the case of a non-surrogate character we count: * always 1 -- see how `count` is initialized above; * c0 = 1 if the current char yields 2 or 3 bytes; * c1 = 1 if the current char yields 3 bytes. Thus, we always have correct count for the current char: from 1, 2 or 3 bytes. A trickier part is how we count surrogate pairs. Whether we encounter a surrogate (low or high), we count it as 3 chars and then minus 1 (`is_surrogate` is -1 or 0). Each surrogate char yields 2. A surrogate pair, that is a low surrogate followed by a high one, yields the expected 4 bytes. It also correctly handles cases when low surrogate is processed by the this loop, but high surrogate is counted by the scalar procedure. The scalar procedure uses exactly the described approach, thanks to that for valid UTF-16 strings it always count correctly. */ v_count += c0; v_count += c1; v_count += vector_u16(is_surrogate); iteration -= 1; if (iteration == 0) { count += v_count.sum(); v_count = vector_u16::zero(); iteration = max_iterations; } } if (iteration > 0) { count += v_count.sum(); } return count + scalar::utf16::utf8_length_from_utf16(in + pos, size - pos); } template simdutf_really_inline result utf8_length_from_utf16_with_replacement(const char16_t *in, size_t size) { using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; if (N + 1 > size) { return scalar::utf16::utf8_length_from_utf16_with_replacement( in, size); } // special case for short inputs size_t pos = 0; bool any_surrogates = false; const auto one = vector_u16::splat(1); auto v_count = vector_u16::zero(); auto v_mismatched_count = vector_u16::zero(); size_t count = 0; size_t mismatched_count = 0; // in a single iteration the increment is 0, 1 or 2, despite we have // three additions constexpr size_t max_iterations = 65535 / 2; size_t iteration = max_iterations; if (scalar::utf16::is_low_surrogate(in[0])) { any_surrogates = true; mismatched_count += 1; } for (; pos < (size - 1) / N * N; pos += N) { auto input = vector_u16::load(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input = input.swap_bytes(); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate const auto is_surrogate = ((input & uint16_t(0xf800)) == uint16_t(0xd800)); // c0 - chars that yield 2- or 3-byte UTF-8 codes const auto c0 = min(input & uint16_t(0xff80), one); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) const auto c1 = min(input & uint16_t(0xf800), one); v_count += c0; v_count += c1; v_count += vector_u16(is_surrogate); if (is_surrogate.to_bitmask() != 0 || scalar::utf16::is_low_surrogate(in[pos + N])) { any_surrogates = true; auto input_next = vector_u16::load(reinterpret_cast(in + pos + 1)); if (!match_system(big_endian)) { input_next = input_next.swap_bytes(); } const auto lb_masked = input & (0xfc00); const auto block_masked = input_next & (0xfc00); const auto lb_is_high = lb_masked == (0xd800); const auto block_is_low = block_masked == (0xdc00); const auto illseq = min(vector_u16(lb_is_high ^ block_is_low), one); v_mismatched_count += illseq; } iteration -= 1; if (iteration == 0) { count += v_count.sum(); v_count = vector_u16::zero(); mismatched_count += v_mismatched_count.sum(); v_mismatched_count = vector_u16::zero(); iteration = max_iterations; } } if (iteration > 0) { count += v_count.sum(); mismatched_count += v_mismatched_count.sum(); } if (scalar::utf16::is_low_surrogate(in[pos])) { any_surrogates = true; if (!scalar::utf16::is_high_surrogate(in[pos - 1])) { mismatched_count -= 1; count += 2; pos += 1; } } count += pos; count += mismatched_count; if (scalar::utf16::is_high_surrogate(in[pos - 1])) { any_surrogates = true; if (pos == size) { count += 2; } else if (scalar::utf16::is_low_surrogate(in[pos])) { pos += 1; count += 2; } } result scalar_result = scalar::utf16::utf8_length_from_utf16_with_replacement( in + pos, size - pos); return {any_surrogates ? SURROGATE : scalar_result.error, count + scalar_result.count}; } } // namespace utf16 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf16/utf8_length_from_utf16_bytemask.h */ /* begin file src/generic/utf16/utf32_length_from_utf16.h */ namespace simdutf { namespace lsx { namespace { namespace utf16 { template simdutf_really_inline size_t utf32_length_from_utf16(const char16_t *in, size_t size) { return count_code_points(in, size); } } // namespace utf16 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf16/utf32_length_from_utf16.h */ /* begin file src/generic/utf16/to_well_formed.h */ namespace simdutf { namespace lsx { namespace { namespace utf16 { // Note: this is direct translation of westmere implementation. /* * Process one block of 8 characters. If in_place is false, * copy the block from in to out. If there is a sequencing * error in the block, overwrite the illsequenced characters * with the replacement character. This function reads one * character before the beginning of the buffer as a lookback. * If that character is illsequenced, it too is overwritten. */ template simdutf_really_inline void utf16fix_block(char16_t *out, const char16_t *in) { const char16_t replacement = scalar::utf16::replacement(); auto swap_if_needed = [](uint16_t c) -> uint16_t { return !simdutf::match_system(big_endian) ? scalar::u16_swap_bytes(c) : c; }; using vector_u16 = simd16; const auto lookback = vector_u16::load(in - 1); const auto block = vector_u16::load(in); const auto lb_masked = lookback & swap_if_needed(0xfc00); const auto block_masked = block & swap_if_needed(0xfc00); const auto lb_is_high = lb_masked == swap_if_needed(0xd800); const auto block_is_low = block_masked == swap_if_needed(0xdc00); const auto illseq = lb_is_high ^ block_is_low; if (!illseq.is_zero()) { /* compute the cause of the illegal sequencing */ const auto lb_illseq = ~block_is_low & lb_is_high; const auto block_illseq = (~lb_is_high & block_is_low) | lb_illseq.template byte_right_shift<2>(); /* fix illegal sequencing in the lookback */ const auto lb = lb_illseq.first(); out[-1] = char16_t((lb & replacement) | (~lb & out[-1])); /* fix illegal sequencing in the main block */ const auto mask = as_vector_u16(block_illseq); const auto fixed = (~mask & block) | (mask & replacement); fixed.store(reinterpret_cast(out)); } else if (!in_place) { block.store(reinterpret_cast(out)); } } template void to_well_formed(const char16_t *in, size_t n, char16_t *out) { using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; if (n < N + 1) { scalar::utf16::to_well_formed_utf16(in, n, out); return; } const char16_t replacement = scalar::utf16::replacement(); out[0] = scalar::utf16::is_low_surrogate(in[0]) ? replacement : in[0]; /* duplicate code to have the compiler specialise utf16fix_block() */ if (in == out) { constexpr bool inplace = true; for (size_t i = 1; i + N < n; i += N) { utf16fix_block(out + i, in + i); } utf16fix_block(out + n - N, in + n - N); } else { constexpr bool copy_data = false; for (size_t i = 1; i + N < n; i += N) { utf16fix_block(out + i, in + i); } utf16fix_block(out + n - N, in + n - N); } out[n - 1] = scalar::utf16::is_high_surrogate(out[n - 1]) ? replacement : out[n - 1]; } } // namespace utf16 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf16/to_well_formed.h */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/validate_utf16.h */ namespace simdutf { namespace lsx { namespace { namespace utf16 { /* UTF-16 validation -------------------------------------------------- In UTF-16 code units in range 0xD800 to 0xDFFF have special meaning. In a vectorized algorithm we want to examine the most significant nibble in order to select a fast path. If none of highest nibbles are 0xD (13), than we are sure that UTF-16 chunk in a vector register is valid. Let us analyze what we need to check if the nibble is 0xD. The value of the preceding nibble determines what we have: 0xd000 .. 0xd7ff - a valid word 0xd800 .. 0xdbff - low surrogate 0xdc00 .. 0xdfff - high surrogate Other constraints we have to consider: - there must not be two consecutive low surrogates (0xd800 .. 0xdbff) - there must not be two consecutive high surrogates (0xdc00 .. 0xdfff) - there must not be sole low surrogate nor high surrogate We are going to build three bitmasks based on the 3rd nibble: - V = valid word, - L = low surrogate (0xd800 .. 0xdbff) - H = high surrogate (0xdc00 .. 0xdfff) 0 1 2 3 4 5 6 7 <--- word index [ V | L | H | L | H | V | V | L ] 1 0 0 0 0 1 1 0 - V = valid masks 0 1 0 1 0 0 0 1 - L = low surrogate 0 0 1 0 1 0 0 0 - H high surrogate 1 0 0 0 0 1 1 0 V = valid masks 0 1 0 1 0 0 0 0 a = L & (H >> 1) 0 0 1 0 1 0 0 0 b = a << 1 1 1 1 1 1 1 1 0 c = V | a | b ^ the last bit can be zero, we just consume 7 code units and recheck this word in the next iteration */ template const result validate_utf16_with_errors(const char16_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { return result(error_code::SUCCESS, 0); } const char16_t *start = input; const char16_t *end = input + size; const auto v_d8 = simd8::splat(0xd8); const auto v_f8 = simd8::splat(0xf8); const auto v_fc = simd8::splat(0xfc); const auto v_dc = simd8::splat(0xdc); while (input + simd16::SIZE * 2 < end) { // 0. Load data: since the validation takes into account only higher // byte of each word, we compress the two vectors into one which // consists only the higher bytes. auto in0 = simd16(input); auto in1 = simd16(input + simd16::SIZE / sizeof(char16_t)); // Function `utf16_gather_high_bytes` consumes two vectors of UTF-16 // and yields a single vector having only higher bytes of characters. const auto in = utf16_gather_high_bytes(in0, in1); // 1. Check whether we have any 0xD800..DFFF word (0b1101'1xxx'yyyy'yyyy). const auto surrogates_wordmask = (in & v_f8) == v_d8; const uint16_t surrogates_bitmask = static_cast(surrogates_wordmask.to_bitmask()); if (surrogates_bitmask == 0x0000) { input += 16; } else { // 2. We have some surrogates that have to be distinguished: // - low surrogates: 0b1101'10xx'yyyy'yyyy (0xD800..0xDBFF) // - high surrogates: 0b1101'11xx'yyyy'yyyy (0xDC00..0xDFFF) // // Fact: high surrogate has 11th bit set (3rd bit in the higher byte) // V - non-surrogate code units // V = not surrogates_wordmask const uint16_t V = static_cast(~surrogates_bitmask); // H - word-mask for high surrogates: the six highest bits are 0b1101'11 const auto vH = (in & v_fc) == v_dc; const uint16_t H = static_cast(vH.to_bitmask()); // L - word mask for low surrogates // L = not H and surrogates_wordmask const uint16_t L = static_cast(~H & surrogates_bitmask); const uint16_t a = static_cast( L & (H >> 1)); // A low surrogate must be followed by high one. // (A low surrogate placed in the 7th register's word // is an exception we handle.) const uint16_t b = static_cast( a << 1); // Just mark that the opinput - startite fact is hold, // thanks to that we have only two masks for valid case. const uint16_t c = static_cast( V | a | b); // Combine all the masks into the final one. if (c == 0xffff) { // The whole input register contains valid UTF-16, i.e., // either single code units or proper surrogate pairs. input += 16; } else if (c == 0x7fff) { // The 15 lower code units of the input register contains valid UTF-16. // The 15th word may be either a low or high surrogate. It the next // iteration we 1) check if the low surrogate is followed by a high // one, 2) reject sole high surrogate. input += 15; } else { return result(error_code::SURROGATE, input - start); } } } return result(error_code::SUCCESS, input - start); } template const result validate_utf16_as_ascii_with_errors(const char16_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { return result(error_code::SUCCESS, 0); } size_t pos = 0; for (; pos < size / 32 * 32; pos += 32) { simd16x32 input_vec( reinterpret_cast(input + pos)); if (!match_system(big_endian)) { input_vec.swap_bytes(); } uint64_t matches = input_vec.lteq(uint16_t(0x7f)); if (~matches) { // Found a match, return the first one int index = trailing_zeroes(~matches) / 2; return result(error_code::TOO_LARGE, pos + index); } } // Scalar tail while (pos < size) { char16_t v = big_endian ? scalar::u16_swap_bytes(input[pos]) : input[pos]; if (v > 0x7F) { return result(error_code::TOO_LARGE, pos); } pos++; } return result(error_code::SUCCESS, size); } } // namespace utf16 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/validate_utf16.h */ #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 /* begin file src/generic/utf32.h */ #include namespace simdutf { namespace lsx { namespace { namespace utf32 { template T min(T a, T b) { return a <= b ? a : b; } simdutf_really_inline size_t utf8_length_from_utf32(const char32_t *input, size_t length) { using vector_u32 = simd32; const char32_t *start = input; // we add up to three ones in a single iteration (see the vectorized loop in // section #2 below) const size_t max_increment = 3; const size_t N = vector_u32::ELEMENTS; #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP const auto v_0000007f = vector_u32::splat(0x0000007f); const auto v_000007ff = vector_u32::splat(0x000007ff); const auto v_0000ffff = vector_u32::splat(0x0000ffff); #else const auto v_ffffff80 = vector_u32::splat(0xffffff80); const auto v_fffff800 = vector_u32::splat(0xfffff800); const auto v_ffff0000 = vector_u32::splat(0xffff0000); const auto one = vector_u32::splat(1); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP size_t counter = 0; // 1. vectorized loop unrolled 4 times { // we use vector of uint32 counters, this is why this limit is used const size_t max_iterations = std::numeric_limits::max() / (max_increment * 4); size_t blocks = length / (N * 4); length -= blocks * (N * 4); while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; simd32 acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in0 = vector_u32(input + 0 * N); const auto in1 = vector_u32(input + 1 * N); const auto in2 = vector_u32(input + 2 * N); const auto in3 = vector_u32(input + 3 * N); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in0 > v_0000007f); acc -= as_vector_u32(in1 > v_0000007f); acc -= as_vector_u32(in2 > v_0000007f); acc -= as_vector_u32(in3 > v_0000007f); acc -= as_vector_u32(in0 > v_000007ff); acc -= as_vector_u32(in1 > v_000007ff); acc -= as_vector_u32(in2 > v_000007ff); acc -= as_vector_u32(in3 > v_000007ff); acc -= as_vector_u32(in0 > v_0000ffff); acc -= as_vector_u32(in1 > v_0000ffff); acc -= as_vector_u32(in2 > v_0000ffff); acc -= as_vector_u32(in3 > v_0000ffff); #else acc += min(one, in0 & v_ffffff80); acc += min(one, in1 & v_ffffff80); acc += min(one, in2 & v_ffffff80); acc += min(one, in3 & v_ffffff80); acc += min(one, in0 & v_fffff800); acc += min(one, in1 & v_fffff800); acc += min(one, in2 & v_fffff800); acc += min(one, in3 & v_fffff800); acc += min(one, in0 & v_ffff0000); acc += min(one, in1 & v_ffff0000); acc += min(one, in2 & v_ffff0000); acc += min(one, in3 & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += 4 * N; } counter += acc.sum(); } } // 2. vectorized loop for tail { const size_t max_iterations = std::numeric_limits::max() / max_increment; size_t blocks = length / N; length -= blocks * N; while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; auto acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in = vector_u32(input); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in > v_0000007f); acc -= as_vector_u32(in > v_000007ff); acc -= as_vector_u32(in > v_0000ffff); #else acc += min(one, in & v_ffffff80); acc += min(one, in & v_fffff800); acc += min(one, in & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += N; } counter += acc.sum(); } } const size_t consumed = input - start; if (consumed != 0) { // We don't count 0th bytes in the vectorized loops above, this // is why we need to count them in the end. counter += consumed; } return counter + scalar::utf32::utf8_length_from_utf32(input, length); } } // namespace utf32 } // unnamed namespace } // namespace lsx } // namespace simdutf /* end file src/generic/utf32.h */ #endif // SIMDUTF_FEATURE_UTF32 // // Implementation-specific overrides // namespace simdutf { namespace lsx { #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int implementation::detect_encodings(const char *input, size_t length) const noexcept { // If there is a BOM, then we trust it. auto bom_encoding = simdutf::BOM::check_bom(input, length); // todo: reimplement as a one-pass algorithm. if (bom_encoding != encoding_type::unspecified) { return bom_encoding; } int out = 0; if (validate_utf8(input, length)) { out |= encoding_type::UTF8; } if ((length % 2) == 0) { if (validate_utf16le(reinterpret_cast(input), length / 2)) { out |= encoding_type::UTF16_LE; } } if ((length % 4) == 0) { if (validate_utf32(reinterpret_cast(input), length / 4)) { out |= encoding_type::UTF32_LE; } } return out; } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf8(const char *buf, size_t len) const noexcept { return lsx::utf8_validation::generic_validate_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result implementation::validate_utf8_with_errors( const char *buf, size_t len) const noexcept { return lsx::utf8_validation::generic_validate_utf8_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_ascii(const char *buf, size_t len) const noexcept { return lsx::ascii_validation::generic_validate_ascii(buf, len); } simdutf_warn_unused result implementation::validate_ascii_with_errors( const char *buf, size_t len) const noexcept { return lsx::ascii_validation::generic_validate_ascii_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept { return lsx::utf16::validate_utf16_as_ascii_with_errors( buf, len) .error == SUCCESS; } simdutf_warn_unused bool implementation::validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept { return lsx::utf16::validate_utf16_as_ascii_with_errors(buf, len) .error == SUCCESS; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf16le(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const auto res = lsx::utf16::validate_utf16_with_errors(buf, len); if (res.is_err()) { return false; } if (res.count != len) { return scalar::utf16::validate(buf + res.count, len - res.count); } return true; } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool implementation::validate_utf16be(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const auto res = lsx::utf16::validate_utf16_with_errors(buf, len); if (res.is_err()) { return false; } if (res.count != len) { return scalar::utf16::validate(buf + res.count, len - res.count); } return true; } simdutf_warn_unused result implementation::validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } const result res = lsx::utf16::validate_utf16_with_errors(buf, len); if (res.count != len) { const result scalar_res = scalar::utf16::validate_with_errors( buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } simdutf_warn_unused result implementation::validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } const result res = lsx::utf16::validate_utf16_with_errors(buf, len); if (res.count != len) { const result scalar_res = scalar::utf16::validate_with_errors(buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } void implementation::to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept { utf16::to_well_formed(input, len, output); } void implementation::to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept { utf16::to_well_formed(input, len, output); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf32(const char32_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const char32_t *tail = lsx_validate_utf32le(buf, len); if (tail) { return scalar::utf32::validate(tail, len - (tail - buf)); } else { return false; } } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result implementation::validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } result res = lsx_validate_utf32le_with_errors(buf, len); if (res.count != len) { result scalar_res = scalar::utf32::validate_with_errors(buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = lsx_convert_latin1_to_utf8(buf, len, utf8_output); size_t converted_chars = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = lsx_convert_latin1_to_utf16le(buf, len, utf16_output); size_t converted_chars = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } simdutf_warn_unused size_t implementation::convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = lsx_convert_latin1_to_utf16be(buf, len, utf16_output); size_t converted_chars = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = lsx_convert_latin1_to_utf32(buf, len, utf32_output); size_t converted_chars = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { utf8_to_latin1::validating_transcoder converter; return converter.convert(buf, len, latin1_output); } simdutf_warn_unused result implementation::convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_output) const noexcept { utf8_to_latin1::validating_transcoder converter; return converter.convert_with_errors(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { return lsx::utf8_to_latin1::convert_valid(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16le( const char *input, size_t size, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(input, size, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16be( const char *input, size_t size, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(input, size, utf16_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert(buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf32( const char *input, size_t size, char32_t *utf32_output) const noexcept { return utf8_to_utf32::convert_valid(input, size, utf32_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lsx_convert_utf16_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lsx_convert_utf16_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lsx_convert_utf16_to_latin1_with_errors( buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lsx_convert_utf16_to_latin1_with_errors(buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: implement a custom function. return convert_utf16be_to_latin1(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: implement a custom function. return convert_utf16le_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = lsx_convert_utf16_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = lsx_convert_utf16_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lsx_convert_utf16_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lsx_convert_utf16_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16le_to_utf8(buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16be_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { if (simdutf_unlikely(len == 0)) { return 0; } std::pair ret = lsx_convert_utf32_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_output) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lsx_convert_utf32_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = lsx_convert_utf16_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = lsx_convert_utf16_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lsx_convert_utf16_to_utf32_with_errors(buf, len, utf32_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf32::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf32_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lsx_convert_utf16_to_utf32_with_errors(buf, len, utf32_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf32::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf32_output; // Set count to the number of 8-bit code units written return ret.first; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lsx_convert_utf32_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_latin1_with_errors( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lsx_convert_utf32_to_latin1_with_errors(buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf32_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lsx_convert_utf32_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_latin1::convert_valid( ret.first, len - (ret.first - buf), ret.second); saved_bytes += scalar_saved_bytes; } return saved_bytes; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { // optimization opportunity: implement a custom function. return convert_utf32_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = lsx_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = lsx_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lsx_convert_utf32_to_utf16_with_errors(buf, len, utf16_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf16::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lsx_convert_utf32_to_utf16_with_errors(buf, len, utf16_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf16::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16be(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16le_to_utf32(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16be_to_utf32(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void implementation::change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) const noexcept { utf16::change_endianness_utf16(input, length, output); } simdutf_warn_unused size_t implementation::count_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } simdutf_warn_unused size_t implementation::count_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t implementation::count_utf8(const char *input, size_t length) const noexcept { return utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::latin1_length_from_utf8( const char *buf, size_t len) const noexcept { return count_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::utf8_length_from_latin1( const char *input, size_t length) const noexcept { const uint8_t *data = reinterpret_cast(input); const uint8_t *data_end = data + length; uint64_t result = 0; while (data_end - data > 16) { uint64_t two_bytes = 0; __m128i input_vec = __lsx_vld(data, 0); two_bytes = __lsx_vpickve2gr_hu(__lsx_vpcnt_h(__lsx_vmskltz_b(input_vec)), 0); result += 16 + two_bytes; data += 16; } return result + scalar::latin1::utf8_length_from_latin1((const char *)data, data_end - data); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf8_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_bytemask(input, length); } simdutf_warn_unused size_t implementation::utf8_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_bytemask(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } simdutf_warn_unused size_t implementation::utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf16_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::utf16_length_from_utf8_bytemask(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16_with_replacement< endianness::LITTLE>(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16_with_replacement< endianness::BIG>(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf8_length_from_utf32( const char32_t *input, size_t length) const noexcept { return utf32::utf8_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf16_length_from_utf32( const char32_t *input, size_t length) const noexcept { const __m128i v_ffff = lsx_splat_u32(0x0000ffff); size_t pos = 0; size_t count = 0; for (; pos + 4 <= length; pos += 4) { __m128i in = __lsx_vld(reinterpret_cast(input + pos), 0); const __m128i surrogate_bytemask = __lsx_vslt_wu(v_ffff, in); size_t surrogate_count = __lsx_vpickve2gr_bu( __lsx_vpcnt_b(__lsx_vmskltz_w(surrogate_bytemask)), 0); count += 4 + surrogate_count; } return count + scalar::utf32::utf16_length_from_utf32(input + pos, length - pos); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result implementation::base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused result implementation::base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } size_t implementation::binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept { if (options & base64_url) { return encode_base64(output, input, length, options); } else { return encode_base64(output, input, length, options); } } size_t implementation::binary_to_base64_with_lines( const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept { return scalar::base64::tail_encode_base64_impl(output, input, length, options, line_length); } const char *implementation::find(const char *start, const char *end, char character) const noexcept { return util_find(start, end, character); } const char16_t *implementation::find(const char16_t *start, const char16_t *end, char16_t character) const noexcept { return util_find(start, end, character); } #endif // SIMDUTF_FEATURE_BASE64 } // namespace lsx } // namespace simdutf /* begin file src/simdutf/lsx/end.h */ #undef SIMDUTF_SIMD_HAS_UNSIGNED_CMP /* end file src/simdutf/lsx/end.h */ /* end file src/lsx/implementation.cpp */ #endif #if SIMDUTF_IMPLEMENTATION_LASX /* begin file src/lasx/implementation.cpp */ /* begin file src/simdutf/lasx/begin.h */ // redefining SIMDUTF_IMPLEMENTATION to "lasx" // #define SIMDUTF_IMPLEMENTATION lasx #define SIMDUTF_SIMD_HAS_UNSIGNED_CMP 1 /* end file src/simdutf/lasx/begin.h */ namespace simdutf { namespace lasx { namespace { #ifndef SIMDUTF_LASX_H #error "lasx.h must be included" #endif using namespace simd; #if SIMDUTF_FEATURE_UTF8 // convert vmskltz/vmskgez/vmsknz to // simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes index const uint8_t lasx_1_2_utf8_bytes_mask[] = { 0, 1, 4, 5, 16, 17, 20, 21, 64, 65, 68, 69, 80, 81, 84, 85, 2, 3, 6, 7, 18, 19, 22, 23, 66, 67, 70, 71, 82, 83, 86, 87, 8, 9, 12, 13, 24, 25, 28, 29, 72, 73, 76, 77, 88, 89, 92, 93, 10, 11, 14, 15, 26, 27, 30, 31, 74, 75, 78, 79, 90, 91, 94, 95, 32, 33, 36, 37, 48, 49, 52, 53, 96, 97, 100, 101, 112, 113, 116, 117, 34, 35, 38, 39, 50, 51, 54, 55, 98, 99, 102, 103, 114, 115, 118, 119, 40, 41, 44, 45, 56, 57, 60, 61, 104, 105, 108, 109, 120, 121, 124, 125, 42, 43, 46, 47, 58, 59, 62, 63, 106, 107, 110, 111, 122, 123, 126, 127, 128, 129, 132, 133, 144, 145, 148, 149, 192, 193, 196, 197, 208, 209, 212, 213, 130, 131, 134, 135, 146, 147, 150, 151, 194, 195, 198, 199, 210, 211, 214, 215, 136, 137, 140, 141, 152, 153, 156, 157, 200, 201, 204, 205, 216, 217, 220, 221, 138, 139, 142, 143, 154, 155, 158, 159, 202, 203, 206, 207, 218, 219, 222, 223, 160, 161, 164, 165, 176, 177, 180, 181, 224, 225, 228, 229, 240, 241, 244, 245, 162, 163, 166, 167, 178, 179, 182, 183, 226, 227, 230, 231, 242, 243, 246, 247, 168, 169, 172, 173, 184, 185, 188, 189, 232, 233, 236, 237, 248, 249, 252, 253, 170, 171, 174, 175, 186, 187, 190, 191, 234, 235, 238, 239, 250, 251, 254, 255}; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32 simdutf_really_inline __m128i lsx_swap_bytes(__m128i vec) { return __lsx_vshuf4i_b(vec, 0b10110001); } simdutf_really_inline __m256i lasx_swap_bytes(__m256i vec) { return __lasx_xvshuf4i_b(vec, 0b10110001); } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_ASCII || SIMDUTF_FEATURE_DETECT_ENCODING || \ SIMDUTF_FEATURE_UTF8 simdutf_really_inline bool is_ascii(const simd8x64 &input) { return input.is_ascii(); } #endif // SIMDUTF_FEATURE_ASCII || SIMDUTF_FEATURE_DETECT_ENCODING || // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_really_inline simd8 must_be_2_3_continuation(const simd8 prev2, const simd8 prev3) { simd8 is_third_byte = prev2 >= uint8_t(0b11100000u); simd8 is_fourth_byte = prev3 >= uint8_t(0b11110000u); return is_third_byte ^ is_fourth_byte; } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 && (SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_UTF32) // common functions for utf8 conversions simdutf_really_inline __m128i convert_utf8_3_byte_to_utf16(__m128i in) { // Low half contains 10bbbbbb|10cccccc // High half contains 1110aaaa|1110aaaa const v16u8 sh = {2, 1, 5, 4, 8, 7, 11, 10, 0, 0, 3, 3, 6, 6, 9, 9}; const v8u16 v0fff = {0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff}; __m128i perm = __lsx_vshuf_b(__lsx_vldi(0), in, (__m128i)sh); // 1110aaaa => aaaa0000 __m128i perm_high = __lsx_vslli_b(__lsx_vbsrl_v(perm, 8), 4); // 10bbbbbb 10cccccc => 0010bbbb bbcccccc __m128i composed = __lsx_vbitsel_v(__lsx_vsrli_h(perm, 2), /* perm >> 2*/ perm, __lsx_vrepli_h(0x3f) /* 0x003f */); // 0010bbbb bbcccccc => aaaabbbb bbcccccc composed = __lsx_vbitsel_v(perm_high, composed, (__m128i)v0fff); return composed; } simdutf_really_inline __m128i convert_utf8_2_byte_to_utf16(__m128i in) { // 10bbbbb 110aaaaa => 00bbbbb 000aaaaa __m128i composed = __lsx_vand_v(in, __lsx_vldi(0x3f)); // 00bbbbbb 000aaaaa => 00000aaa aabbbbbb composed = __lsx_vbitsel_v( __lsx_vsrli_h(__lsx_vslli_h(composed, 8), 2), /* (aaaaa << 8) >> 2 */ __lsx_vsrli_h(composed, 8), /* bbbbbb >> 8 */ __lsx_vrepli_h(0x3f)); /* 0x003f */ return composed; } simdutf_really_inline __m128i convert_utf8_1_to_2_byte_to_utf16(__m128i in, size_t shufutf8_idx) { // Converts 6 1-2 byte UTF-8 characters to 6 UTF-16 characters. // This is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[shufutf8_idx]), 0); // Shuffle // 1 byte: 00000000 0bbbbbbb // 2 byte: 110aaaaa 10bbbbbb __m128i perm = __lsx_vshuf_b(__lsx_vldi(0), in, sh); // 1 byte: 00000000 0bbbbbbb // 2 byte: 00000000 00bbbbbb __m128i ascii = __lsx_vand_v(perm, __lsx_vrepli_h(0x7f)); // 6 or 7 bits // 1 byte: 00000000 00000000 // 2 byte: 00000aaa aa000000 __m128i v1f00 = lsx_splat_u16(0x1f00); __m128i composed = __lsx_vsrli_h(__lsx_vand_v(perm, v1f00), 2); // 5 bits // Combine with a shift right accumulate // 1 byte: 00000000 0bbbbbbb // 2 byte: 00000aaa aabbbbbb composed = __lsx_vadd_h(ascii, composed); return composed; } #endif // SIMDUTF_FEATURE_UTF8 && (SIMDUTF_FEATURE_UTF16 || // SIMDUTF_FEATURE_UTF32) #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/lasx/lasx_validate_utf16.cpp */ template simd8 utf16_gather_high_bytes(const simd16 in0, const simd16 in1) { if (big_endian) { const auto mask = simd16(0x00ff); const auto t0 = in0 & mask; const auto t1 = in1 & mask; return simd16::pack(t0, t1); } else { return simd16::pack_shifted_right<8>(in0, in1); } } /* end file src/lasx/lasx_validate_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/lasx/lasx_validate_utf32le.cpp */ const char32_t *lasx_validate_utf32le(const char32_t *input, size_t size) { const char32_t *end = input + size; // Performance degradation when memory address is not 32-byte aligned while (((uint64_t)input & 0x1F) && input < end) { uint32_t word = *input++; if (word > 0x10FFFF || (word >= 0xD800 && word <= 0xDFFF)) { return nullptr; } } __m256i offset = lasx_splat_u32(0xffff2000); __m256i standardoffsetmax = lasx_splat_u32(0xfffff7ff); __m256i standardmax = lasx_splat_u32(0x10ffff); __m256i currentmax = __lasx_xvldi(0x0); __m256i currentoffsetmax = __lasx_xvldi(0x0); while (input + 8 < end) { __m256i in = __lasx_xvld(reinterpret_cast(input), 0); currentmax = __lasx_xvmax_wu(in, currentmax); // 0xD8__ + 0x2000 = 0xF8__ => 0xF8__ > 0xF7FF currentoffsetmax = __lasx_xvmax_wu(__lasx_xvadd_w(in, offset), currentoffsetmax); input += 8; } __m256i is_zero = __lasx_xvxor_v(__lasx_xvmax_wu(currentmax, standardmax), standardmax); if (__lasx_xbnz_v(is_zero)) { return nullptr; } is_zero = __lasx_xvxor_v(__lasx_xvmax_wu(currentoffsetmax, standardoffsetmax), standardoffsetmax); if (__lasx_xbnz_v(is_zero)) { return nullptr; } return input; } const result lasx_validate_utf32le_with_errors(const char32_t *input, size_t size) { const char32_t *start = input; const char32_t *end = input + size; // Performance degradation when memory address is not 32-byte aligned while (((uint64_t)input & 0x1F) && input < end) { uint32_t word = *input; if (word > 0x10FFFF) { return result(error_code::TOO_LARGE, input - start); } if (word >= 0xD800 && word <= 0xDFFF) { return result(error_code::SURROGATE, input - start); } input++; } __m256i offset = lasx_splat_u32(0xffff2000); __m256i standardoffsetmax = lasx_splat_u32(0xfffff7ff); __m256i standardmax = lasx_splat_u32(0x10ffff); __m256i currentmax = __lasx_xvldi(0x0); __m256i currentoffsetmax = __lasx_xvldi(0x0); while (input + 8 < end) { __m256i in = __lasx_xvld(reinterpret_cast(input), 0); currentmax = __lasx_xvmax_wu(in, currentmax); currentoffsetmax = __lasx_xvmax_wu(__lasx_xvadd_w(in, offset), currentoffsetmax); __m256i is_zero = __lasx_xvxor_v(__lasx_xvmax_wu(currentmax, standardmax), standardmax); if (__lasx_xbnz_v(is_zero)) { return result(error_code::TOO_LARGE, input - start); } is_zero = __lasx_xvxor_v(__lasx_xvmax_wu(currentoffsetmax, standardoffsetmax), standardoffsetmax); if (__lasx_xbnz_v(is_zero)) { return result(error_code::SURROGATE, input - start); } input += 8; } return result(error_code::SUCCESS, input - start); } /* end file src/lasx/lasx_validate_utf32le.cpp */ #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lasx/lasx_convert_latin1_to_utf8.cpp */ /* Returns a pair: the first unprocessed byte from buf and utf8_output A scalar routing should carry on the conversion of the tail. */ std::pair lasx_convert_latin1_to_utf8(const char *latin1_input, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const size_t safety_margin = 12; const char *end = latin1_input + len; // We always write 16 bytes, of which more than the first 8 bytes // are valid. A safety margin of 8 is more than sufficient. while (end - latin1_input >= std::ptrdiff_t(16 + safety_margin)) { __m128i in8 = __lsx_vld(reinterpret_cast(latin1_input), 0); uint32_t ascii_mask = __lsx_vpickve2gr_wu(__lsx_vmskgez_b(in8), 0); if (ascii_mask == 0xFFFF) { __lsx_vst(in8, utf8_output, 0); utf8_output += 16; latin1_input += 16; continue; } // We just fallback on UTF-16 code. This could be optimized/simplified // further. __m256i in16 = __lasx_vext2xv_hu_bu(____m256i(in8)); // 1. prepare 2-byte values // input 8-bit word : [aabb|bbbb] x 16 // expected output : [1100|00aa|10bb|bbbb] x 16 // t0 = [0000|00aa|bbbb|bb00] __m256i t0 = __lasx_xvslli_h(in16, 2); // t1 = [0000|00aa|0000|0000] __m256i t1 = __lasx_xvand_v(t0, lasx_splat_u16(0x300)); // t3 = [0000|00aa|00bb|bbbb] __m256i t2 = __lasx_xvbitsel_v(t1, in16, __lasx_xvrepli_h(0x3f)); // t4 = [1100|00aa|10bb|bbbb] __m256i t3 = __lasx_xvor_v(t2, __lasx_xvreplgr2vr_h(uint16_t(0xc080))); // merge ASCII and 2-byte codewords __m256i one_byte_bytemask = __lasx_xvsle_hu(in16, __lasx_xvrepli_h(0x7F)); __m256i utf8_unpacked = __lasx_xvbitsel_v(t3, in16, one_byte_bytemask); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lasx_1_2_utf8_bytes_mask[(ascii_mask & 0xFF)]][0]; __m128i shuffle0 = __lsx_vld(row0 + 1, 0); __m128i utf8_unpacked_lo = lasx_extracti128_lo(utf8_unpacked); __m128i utf8_packed0 = __lsx_vshuf_b(utf8_unpacked_lo, utf8_unpacked_lo, shuffle0); __lsx_vst(utf8_packed0, utf8_output, 0); utf8_output += row0[0]; const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lasx_1_2_utf8_bytes_mask[(ascii_mask >> 8)]][0]; __m128i shuffle1 = __lsx_vld(row1 + 1, 0); __m128i utf8_unpacked_hi = lasx_extracti128_hi(utf8_unpacked); __m128i utf8_packed1 = __lsx_vshuf_b(utf8_unpacked_hi, utf8_unpacked_hi, shuffle1); __lsx_vst(utf8_packed1, utf8_output, 0); utf8_output += row1[0]; latin1_input += 16; } // while return std::make_pair(latin1_input, reinterpret_cast(utf8_output)); } /* end file src/lasx/lasx_convert_latin1_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lasx/lasx_convert_latin1_to_utf16.cpp */ std::pair lasx_convert_latin1_to_utf16le(const char *buf, size_t len, char16_t *utf16_output) { const char *end = buf + len; // Performance degradation when memory address is not 32-byte aligned while (((uint64_t)utf16_output & 0x1F) && buf < end) { *utf16_output++ = uint8_t(*buf) & 0xFF; buf++; } while (end - buf >= 32) { __m256i in8 = __lasx_xvld(reinterpret_cast(buf), 0); __m256i inlow = __lasx_vext2xv_hu_bu(in8); __m256i in8_high = __lasx_xvpermi_q(in8, in8, 0b00000001); __m256i inhigh = __lasx_vext2xv_hu_bu(in8_high); __lasx_xvst(inlow, reinterpret_cast(utf16_output), 0); __lasx_xvst(inhigh, reinterpret_cast(utf16_output), 32); utf16_output += 32; buf += 32; } if (end - buf >= 16) { __m128i zero = __lsx_vldi(0); __m128i in8 = __lsx_vld(reinterpret_cast(buf), 0); __m128i inlow = __lsx_vilvl_b(zero, in8); __m128i inhigh = __lsx_vilvh_b(zero, in8); __lsx_vst(inlow, reinterpret_cast(utf16_output), 0); __lsx_vst(inhigh, reinterpret_cast(utf16_output), 16); utf16_output += 16; buf += 16; } return std::make_pair(buf, utf16_output); } std::pair lasx_convert_latin1_to_utf16be(const char *buf, size_t len, char16_t *utf16_output) { const char *end = buf + len; while (((uint64_t)utf16_output & 0x1F) && buf < end) { *utf16_output++ = (uint16_t(*buf++) << 8); } __m256i zero = __lasx_xvldi(0); while (end - buf >= 32) { __m256i in8 = __lasx_xvld(reinterpret_cast(buf), 0); __m256i in8_shuf = __lasx_xvpermi_d(in8, 0b11011000); __m256i inlow = __lasx_xvilvl_b(in8_shuf, zero); __m256i inhigh = __lasx_xvilvh_b(in8_shuf, zero); __lasx_xvst(inlow, reinterpret_cast(utf16_output), 0); __lasx_xvst(inhigh, reinterpret_cast(utf16_output), 32); utf16_output += 32; buf += 32; } if (end - buf >= 16) { __m128i zero_128 = __lsx_vldi(0); __m128i in8 = __lsx_vld(reinterpret_cast(buf), 0); __m128i inlow = __lsx_vilvl_b(in8, zero_128); __m128i inhigh = __lsx_vilvh_b(in8, zero_128); __lsx_vst(inlow, reinterpret_cast(utf16_output), 0); __lsx_vst(inhigh, reinterpret_cast(utf16_output), 16); utf16_output += 16; buf += 16; } return std::make_pair(buf, utf16_output); } /* end file src/lasx/lasx_convert_latin1_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lasx/lasx_convert_latin1_to_utf32.cpp */ std::pair lasx_convert_latin1_to_utf32(const char *buf, size_t len, char32_t *utf32_output) { const char *end = buf + len; // LASX requires 32-byte alignment, otherwise performance will be degraded while (((uint64_t)utf32_output & 0x1F) && buf < end) { *utf32_output++ = ((uint32_t)*buf) & 0xFF; buf++; } while (end - buf >= 32) { __m256i in8 = __lasx_xvld(reinterpret_cast(buf), 0); __m256i in32_0 = __lasx_vext2xv_wu_bu(in8); __lasx_xvst(in32_0, reinterpret_cast(utf32_output), 0); __m256i in8_1 = __lasx_xvpermi_d(in8, 0b00000001); __m256i in32_1 = __lasx_vext2xv_wu_bu(in8_1); __lasx_xvst(in32_1, reinterpret_cast(utf32_output), 32); __m256i in8_2 = __lasx_xvpermi_d(in8, 0b00000010); __m256i in32_2 = __lasx_vext2xv_wu_bu(in8_2); __lasx_xvst(in32_2, reinterpret_cast(utf32_output), 64); __m256i in8_3 = __lasx_xvpermi_d(in8, 0b00000011); __m256i in32_3 = __lasx_vext2xv_wu_bu(in8_3); __lasx_xvst(in32_3, reinterpret_cast(utf32_output), 96); utf32_output += 32; buf += 32; } if (end - buf >= 16) { __m128i in8 = __lsx_vld(reinterpret_cast(buf), 0); __m128i zero = __lsx_vldi(0); __m128i in16low = __lsx_vilvl_b(zero, in8); __m128i in16high = __lsx_vilvh_b(zero, in8); __m128i in32_0 = __lsx_vilvl_h(zero, in16low); __m128i in32_1 = __lsx_vilvh_h(zero, in16low); __m128i in32_2 = __lsx_vilvl_h(zero, in16high); __m128i in32_3 = __lsx_vilvh_h(zero, in16high); __lsx_vst(in32_0, reinterpret_cast(utf32_output), 0); __lsx_vst(in32_1, reinterpret_cast(utf32_output), 16); __lsx_vst(in32_2, reinterpret_cast(utf32_output), 32); __lsx_vst(in32_3, reinterpret_cast(utf32_output), 48); utf32_output += 16; buf += 16; } return std::make_pair(buf, utf32_output); } /* end file src/lasx/lasx_convert_latin1_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/lasx/lasx_convert_utf8_to_utf16.cpp */ // Convert up to 16 bytes from utf8 to utf16 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 16, usually 12). template size_t convert_masked_utf8_to_utf16(const char *input, uint64_t utf8_end_of_code_point_mask, char16_t *&utf16_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // __m128i in = __lsx_vld(reinterpret_cast(input), 0); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // We first try a few fast paths. // The obvious first test is ASCII, which actually consumes the full 16. if ((utf8_end_of_code_point_mask & 0xFFFF) == 0xFFFF) { __m128i zero = __lsx_vldi(0); if (match_system(big_endian)) { __lsx_vst(__lsx_vilvl_b(zero, in), reinterpret_cast(utf16_output), 0); __lsx_vst(__lsx_vilvh_b(zero, in), reinterpret_cast(utf16_output), 16); } else { __lsx_vst(__lsx_vilvl_b(in, zero), reinterpret_cast(utf16_output), 0); __lsx_vst(__lsx_vilvh_b(in, zero), reinterpret_cast(utf16_output), 16); } utf16_output += 16; // We wrote 16 16-bit characters. return 16; // We consumed 16 bytes. } // 3 byte sequences are the next most common, as seen in CJK, which has long // sequences of these. if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 2-byte // UTF-16 code units. __m128i composed = convert_utf8_3_byte_to_utf16(in); // Byte swap if necessary if (!match_system(big_endian)) { composed = lsx_swap_bytes(composed); } __lsx_vst(composed, reinterpret_cast(utf16_output), 0); utf16_output += 4; // We wrote 4 16-bit characters. return 12; // We consumed 12 bytes. } // 2 byte sequences occur in short bursts in languages like Greek and Russian. if ((utf8_end_of_code_point_mask & 0xFFFF) == 0xAAAA) { // We want to take 6 2-byte UTF-8 code units and turn them into 6 2-byte // UTF-16 code units. __m128i composed = convert_utf8_2_byte_to_utf16(in); // Byte swap if necessary if (!match_system(big_endian)) { composed = lsx_swap_bytes(composed); } __lsx_vst(composed, reinterpret_cast(utf16_output), 0); utf16_output += 8; // We wrote 6 16-bit characters. return 16; // We consumed 12 bytes. } /// We do not have a fast path available, or the fast path is unimportant, so /// we fallback. const uint8_t idx = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][1]; const __m128i zero = __lsx_vldi(0); if (idx < 64) { // SIX (6) input code-code units // Convert to UTF-16 __m128i composed = convert_utf8_1_to_2_byte_to_utf16(in, idx); // Byte swap if necessary if (!match_system(big_endian)) { composed = lsx_swap_bytes(composed); } // Store __lsx_vst(composed, reinterpret_cast(utf16_output), 0); utf16_output += 6; // We wrote 6 16-bit characters. return consumed; } else if (idx < 145) { // FOUR (4) input code-code units // UTF-16 and UTF-32 use similar algorithms, but UTF-32 skips the narrowing. __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx]), 0); // XXX: depending on the system scalar instructions might be faster. // 1 byte: 00000000 00000000 0ccccccc // 2 byte: 00000000 110bbbbb 10cccccc // 3 byte: 1110aaaa 10bbbbbb 10cccccc sh = __lsx_vand_v(sh, __lsx_vldi(0x1f)); __m128i perm = __lsx_vshuf_b(zero, in, sh); // 1 byte: 00000000 0ccccccc // 2 byte: xx0bbbbb x0cccccc // 3 byte: xxbbbbbb x0cccccc __m128i lowperm = __lsx_vpickev_h(perm, perm); // 1 byte: 00000000 00000000 // 2 byte: 00000000 00000000 // 3 byte: 00000000 1110aaaa __m128i highperm = __lsx_vpickod_h(perm, perm); // 3 byte: aaaa0000 00000000 highperm = __lsx_vslli_h(highperm, 12); // ASCII // 1 byte: 00000000 0ccccccc // 2+byte: 00000000 00cccccc __m128i ascii = __lsx_vand_v(lowperm, __lsx_vrepli_h(0x7f)); // 1 byte: 00000000 00000000 // 2 byte: xx0bbbbb 00000000 // 3 byte: xxbbbbbb 00000000 __m128i middlebyte = __lsx_vand_v(lowperm, lsx_splat_u16(0xFF00)); // 1 byte: 00000000 0ccccccc // 2 byte: 0010bbbb bbcccccc // 3 byte: 0010bbbb bbcccccc __m128i composed = __lsx_vor_v(__lsx_vsrli_h(middlebyte, 2), ascii); __m128i v0fff = __lsx_vreplgr2vr_h(uint16_t(0xfff)); // aaaabbbb bbcccccc composed = __lsx_vbitsel_v(highperm, composed, v0fff); if (!match_system(big_endian)) { composed = lsx_swap_bytes(composed); } __lsx_vst(composed, reinterpret_cast(utf16_output), 0); utf16_output += 4; // We wrote 4 16-bit codepoints return consumed; } else if (idx < 209) { // THREE (3) input code-code units if (input_utf8_end_of_code_point_mask == 0x888) { __m128i expected_mask = (__m128i)v16u8{0xf8, 0xc0, 0xc0, 0xc0, 0xf8, 0xc0, 0xc0, 0xc0, 0xf8, 0xc0, 0xc0, 0xc0, 0x0, 0x0, 0x0, 0x0}; __m128i expected = (__m128i)v16u8{0xf0, 0x80, 0x80, 0x80, 0xf0, 0x80, 0x80, 0x80, 0xf0, 0x80, 0x80, 0x80, 0x0, 0x0, 0x0, 0x0}; __m128i check = __lsx_vseq_b(__lsx_vand_v(in, expected_mask), expected); if (__lsx_bz_b(check)) return 12; // We want to take 3 4-byte UTF-8 code units and turn them into 3 4-byte // UTF-16 pairs. Generating surrogate pairs is a little tricky though, but // it is easier when we can assume they are all pairs. This version does // not use the LUT, but 4 byte sequences are less common and the overhead // of the extra memory access is less important than the early branch // overhead in shorter sequences. // Swap byte pairs // 10dddddd 10cccccc|10bbbbbb 11110aaa // 10cccccc 10dddddd|11110aaa 10bbbbbb __m128i swap = lsx_swap_bytes(in); // Shift left 2 bits // cccccc00 dddddd00 xxxxxxxx bbbbbb00 __m128i shift = __lsx_vslli_b(swap, 2); // Create a magic number containing the low 2 bits of the trail surrogate // and all the corrections needed to create the pair. UTF-8 4b prefix = // -0x0000|0xF000 surrogate offset = -0x0000|0x0040 (0x10000 << 6) // surrogate high = +0x0000|0xD800 // surrogate low = +0xDC00|0x0000 // ------------------------------- // = +0xDC00|0xE7C0 __m128i magic = __lsx_vreplgr2vr_w(uint32_t(0xDC00E7C0)); // Generate unadjusted trail surrogate minus lowest 2 bits // xxxxxxxx xxxxxxxx|11110aaa bbbbbb00 __m128i trail = __lsx_vbitsel_v(shift, swap, lsx_splat_u32(0x0000FF00)); // Insert low 2 bits of trail surrogate to magic number for later // 11011100 00000000 11100111 110000cc __m128i magic_with_low_2 = __lsx_vor_v(__lsx_vsrli_w(shift, 30), magic); // Generate lead surrogate // xxxxcccc ccdddddd|xxxxxxxx xxxxxxxx // 000000cc ccdddddd|xxxxxxxx xxxxxxxx __m128i lead = __lsx_vbitsel_v( __lsx_vsrli_h(__lsx_vand_v(shift, __lsx_vldi(0x3F)), 4), swap, __lsx_vrepli_h(0x3f /* 0x003f*/)); // Blend pairs // 000000cc ccdddddd|11110aaa bbbbbb00 __m128i blend = __lsx_vbitsel_v(lead, trail, lsx_splat_u32(0x0000FFFF)); // Add magic number to finish the result // 110111CC CCDDDDDD|110110AA BBBBBBCC __m128i composed = __lsx_vadd_h(blend, magic_with_low_2); // Byte swap if necessary if (!match_system(big_endian)) { composed = lsx_swap_bytes(composed); } __lsx_vst(composed, reinterpret_cast(utf16_output), 0); utf16_output += 6; // We 3 32-bit surrogate pairs. return 12; // We consumed 12 bytes. } // 3 1-4 byte sequences __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx]), 0); // 1 byte: 00000000 00000000 00000000 0ddddddd // 3 byte: 00000000 00000000 110ccccc 10dddddd // 3 byte: 00000000 1110bbbb 10cccccc 10dddddd // 4 byte: 11110aaa 10bbbbbb 10cccccc 10dddddd sh = __lsx_vand_v(sh, __lsx_vldi(0x1f)); __m128i perm = __lsx_vshuf_b(zero, in, sh); // added to fix issue https://github.com/simdutf/simdutf/issues/514 // We only want to write 2 * 16-bit code units when that is actually what we // have. Unfortunately, we cannot trust the input. So it is possible to get // 0xff as an input byte and it should not result in a surrogate pair. We // need to check for that. uint32_t permbuffer[4]; __lsx_vst(perm, permbuffer, 0); // Mask the low and middle bytes // 00000000 00000000 00000000 0ddddddd __m128i ascii = __lsx_vand_v(perm, __lsx_vrepli_w(0x7f)); // Because the surrogates need more work, the high surrogate is computed // first. __m128i middlehigh = __lsx_vslli_w(perm, 2); // 00000000 00000000 00cccccc 00000000 __m128i middlebyte = __lsx_vand_v(perm, lsx_splat_u32(0x00003F00)); // Start assembling the sequence. Since the 4th byte is in the same position // as it would be in a surrogate and there is no dependency, shift left // instead of right. 3 byte: 00000000 10bbbbxx xxxxxxxx xxxxxxxx 4 byte: // 11110aaa bbbbbbxx xxxxxxxx xxxxxxxx __m128i ab = __lsx_vbitsel_v(middlehigh, perm, lsx_splat_u32(0xFF000000)); // Top 16 bits contains the high ten bits of the surrogate pair before // correction 3 byte: 00000000 10bbbbcc|cccc0000 00000000 4 byte: 11110aaa // bbbbbbcc|cccc0000 00000000 - high 10 bits correct w/o correction __m128i v_fffc0000 = __lsx_vreplgr2vr_w(uint32_t(0xFFFC0000)); __m128i abc = __lsx_vbitsel_v(__lsx_vslli_w(middlebyte, 4), ab, v_fffc0000); // Combine the low 6 or 7 bits by a shift right accumulate // 3 byte: 00000000 00000010|bbbbcccc ccdddddd - low 16 bits correct // 4 byte: 00000011 110aaabb|bbbbcccc ccdddddd - low 10 bits correct w/o // correction __m128i composed = __lsx_vor_v(ascii, __lsx_vsrli_w(abc, 6)); // After this is for surrogates // Blend the low and high surrogates // 4 byte: 11110aaa bbbbbbcc|bbbbcccc ccdddddd __m128i mixed = __lsx_vbitsel_v(abc, composed, lsx_splat_u32(0x0000FFFF)); // Clear the upper 6 bits of the low surrogate. Don't clear the upper bits // yet as 0x10000 was not subtracted from the codepoint yet. 4 byte: // 11110aaa bbbbbbcc|000000cc ccdddddd __m128i v_ffff03ff = __lsx_vreplgr2vr_w(uint32_t(0xFFFF03FF)); __m128i masked_pair = __lsx_vand_v(mixed, v_ffff03ff); // Correct the remaining UTF-8 prefix, surrogate offset, and add the // surrogate prefixes in one magic 16-bit addition. similar magic number but // without the continue byte adjust and halfword swapped UTF-8 4b prefix = // -0xF000|0x0000 surrogate offset = -0x0040|0x0000 (0x10000 << 6) // surrogate high = +0xD800|0x0000 // surrogate low = +0x0000|0xDC00 // ----------------------------------- // = +0xE7C0|0xDC00 __m128i magic = __lsx_vreplgr2vr_w(uint32_t(0xE7C0DC00)); // 4 byte: 110110AA BBBBBBCC|110111CC CCDDDDDD - surrogate pair complete __m128i surrogates = __lsx_vadd_w(masked_pair, magic); // If the high bit is 1 (s32 less than zero), this needs a surrogate pair __m128i is_pair = __lsx_vslt_w(perm, zero); // Select either the 4 byte surrogate pair or the 2 byte solo codepoint // 3 byte: 0xxxxxxx xxxxxxxx|bbbbcccc ccdddddd // 4 byte: 110110AA BBBBBBCC|110111CC CCDDDDDD __m128i selected = __lsx_vbitsel_v(composed, surrogates, is_pair); // Byte swap if necessary if (!match_system(big_endian)) { selected = lsx_swap_bytes(selected); } // Attempting to shuffle and store would be complex, just scalarize. uint32_t buffer_tmp[4]; __lsx_vst(selected, buffer_tmp, 0); // Test for the top bit of the surrogate mask. Remove due to issue 514 // const uint32_t SURROGATE_MASK = match_system(big_endian) ? 0x80000000 : // 0x00800000; for (size_t i = 0; i < 3; i++) { // Surrogate // Used to be if (buffer[i] & SURROGATE_MASK) { // See discussion above. // patch for issue https://github.com/simdutf/simdutf/issues/514 if ((permbuffer[i] & 0xf8000000) == 0xf0000000) { utf16_output[0] = uint16_t(buffer_tmp[i] >> 16); utf16_output[1] = uint16_t(buffer_tmp[i] & 0xFFFF); utf16_output += 2; } else { utf16_output[0] = uint16_t(buffer_tmp[i] & 0xFFFF); utf16_output++; } } return consumed; } else { // here we know that there is an error but we do not handle errors return 12; } } /* end file src/lasx/lasx_convert_utf8_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/lasx/lasx_convert_utf8_to_utf32.cpp */ // Convert up to 12 bytes from utf8 to utf32 using a mask indicating the // end of the code points. Only the least significant 12 bits of the mask // are accessed. // It returns how many bytes were consumed (up to 12). size_t convert_masked_utf8_to_utf32(const char *input, uint64_t utf8_end_of_code_point_mask, char32_t *&utf32_out) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // uint32_t *&utf32_output = reinterpret_cast(utf32_out); __m128i in = __lsx_vld(reinterpret_cast(input), 0); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xFFF; // // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // // We first try a few fast paths. if ((utf8_end_of_code_point_mask & 0xffff) == 0xffff) { // We process in chunks of 16 bytes. // use fast implementation in src/simdutf/arm64/simd.h // Ideally the compiler can keep the tables in registers. __m128i zero = __lsx_vldi(0); __m128i in16low = __lsx_vilvl_b(zero, in); __m128i in16high = __lsx_vilvh_b(zero, in); __m128i in32_0 = __lsx_vilvl_h(zero, in16low); __m128i in32_1 = __lsx_vilvh_h(zero, in16low); __m128i in32_2 = __lsx_vilvl_h(zero, in16high); __m128i in32_3 = __lsx_vilvh_h(zero, in16high); __lsx_vst(in32_0, reinterpret_cast(utf32_output), 0); __lsx_vst(in32_1, reinterpret_cast(utf32_output), 16); __lsx_vst(in32_2, reinterpret_cast(utf32_output), 32); __lsx_vst(in32_3, reinterpret_cast(utf32_output), 48); utf32_output += 16; // We wrote 16 32-bit characters. return 16; // We consumed 16 bytes. } __m128i zero = __lsx_vldi(0); if (input_utf8_end_of_code_point_mask == 0x924) { // We want to take 4 3-byte UTF-8 code units and turn them into 4 4-byte // UTF-32 code units. Convert to UTF-16 __m128i composed_utf16 = convert_utf8_3_byte_to_utf16(in); __m128i utf32_low = __lsx_vilvl_h(zero, composed_utf16); __lsx_vst(utf32_low, reinterpret_cast(utf32_output), 0); utf32_output += 4; // We wrote 4 32-bit characters. return 12; // We consumed 12 bytes. } // 2 byte sequences occur in short bursts in languages like Greek and Russian. if (input_utf8_end_of_code_point_mask == 0xaaa) { // We want to take 6 2-byte UTF-8 code units and turn them into 6 4-byte // UTF-32 code units. Convert to UTF-16 __m128i composed_utf16 = convert_utf8_2_byte_to_utf16(in); __m128i utf32_low = __lsx_vilvl_h(zero, composed_utf16); __m128i utf32_high = __lsx_vilvh_h(zero, composed_utf16); __lsx_vst(utf32_low, reinterpret_cast(utf32_output), 0); __lsx_vst(utf32_high, reinterpret_cast(utf32_output), 16); utf32_output += 6; return 12; // We consumed 12 bytes. } // Either no fast path or an unimportant fast path. const uint8_t idx = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][1]; if (idx < 64) { // SIX (6) input code-code units // Convert to UTF-16 __m128i composed_utf16 = convert_utf8_1_to_2_byte_to_utf16(in, idx); __m128i utf32_low = __lsx_vilvl_h(zero, composed_utf16); __m128i utf32_high = __lsx_vilvh_h(zero, composed_utf16); __lsx_vst(utf32_low, reinterpret_cast(utf32_output), 0); __lsx_vst(utf32_high, reinterpret_cast(utf32_output), 16); utf32_output += 6; return consumed; } else if (idx < 145) { // FOUR (4) input code-code units // UTF-16 and UTF-32 use similar algorithms, but UTF-32 skips the narrowing. __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx]), 0); // Shuffle // 1 byte: 00000000 00000000 0ccccccc // 2 byte: 00000000 110bbbbb 10cccccc // 3 byte: 1110aaaa 10bbbbbb 10cccccc sh = __lsx_vand_v(sh, __lsx_vldi(0x1f)); __m128i perm = __lsx_vshuf_b(zero, in, sh); // Split // 00000000 00000000 0ccccccc __m128i ascii = __lsx_vand_v(perm, __lsx_vrepli_w(0x7F)); // 6 or 7 bits // Note: unmasked // xxxxxxxx aaaaxxxx xxxxxxxx __m128i high = __lsx_vsrli_w(__lsx_vand_v(perm, __lsx_vldi(0xf)), 4); // 4 bits // Use 16 bit bic instead of and. // The top bits will be corrected later in the bsl // 00000000 10bbbbbb 00000000 __m128i middle = __lsx_vand_v(perm, lsx_splat_u32(0x0000FF00)); // 5 or 6 bits // Combine low and middle with shift right accumulate // 00000000 00xxbbbb bbcccccc __m128i lowmid = __lsx_vor_v(ascii, __lsx_vsrli_w(middle, 2)); // Insert top 4 bits from high byte with bitwise select // 00000000 aaaabbbb bbcccccc __m128i composed = __lsx_vbitsel_v(lowmid, high, lsx_splat_u32(0x0000F000)); __lsx_vst(composed, utf32_output, 0); utf32_output += 4; // We wrote 4 32-bit characters. return consumed; } else if (idx < 209) { // THREE (3) input code-code units if (input_utf8_end_of_code_point_mask == 0x888) { // We want to take 3 4-byte UTF-8 code units and turn them into 3 4-byte // UTF-32 code units. This uses the same method as the fixed 3 byte // version, reversing and shift left insert. However, there is no need for // a shuffle mask now, just rev16 and rev32. // // This version does not use the LUT, but 4 byte sequences are less common // and the overhead of the extra memory access is less important than the // early branch overhead in shorter sequences, so it comes last. // Swap pairs of bytes // 10dddddd|10cccccc|10bbbbbb|11110aaa // 10cccccc 10dddddd|11110aaa 10bbbbbb __m128i swap = lsx_swap_bytes(in); // Shift left and insert // xxxxcccc ccdddddd|xxxxxxxa aabbbbbb __m128i merge1 = __lsx_vbitsel_v(__lsx_vsrli_h(swap, 2), swap, __lsx_vrepli_h(0x3f /*0x003F*/)); // Shift insert again // xxxxxxxx xxxaaabb bbbbcccc ccdddddd __m128i merge2 = __lsx_vbitsel_v(__lsx_vslli_w(merge1, 12), /* merge1 << 12 */ __lsx_vsrli_w(merge1, 16), /* merge1 >> 16 */ lsx_splat_u32(0x00000FFF)); // Clear the garbage // 00000000 000aaabb bbbbcccc ccdddddd __m128i composed = __lsx_vand_v(merge2, lsx_splat_u32(0x1FFFFF)); // Store __lsx_vst(composed, utf32_output, 0); utf32_output += 3; // We wrote 3 32-bit characters. return 12; // We consumed 12 bytes. } // Unlike UTF-16, doing a fast codepath doesn't have nearly as much benefit // due to surrogates no longer being involved. __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx]), 0); // 1 byte: 00000000 00000000 00000000 0ddddddd // 2 byte: 00000000 00000000 110ccccc 10dddddd // 3 byte: 00000000 1110bbbb 10cccccc 10dddddd // 4 byte: 11110aaa 10bbbbbb 10cccccc 10dddddd sh = __lsx_vand_v(sh, __lsx_vldi(0x1f)); __m128i perm = __lsx_vshuf_b(zero, in, sh); // Ascii __m128i ascii = __lsx_vand_v(perm, __lsx_vrepli_w(0x7F)); __m128i middle = __lsx_vand_v(perm, lsx_splat_u32(0x00003f00)); // 00000000 00000000 0000cccc ccdddddd __m128i cd = __lsx_vor_v(__lsx_vsrli_w(middle, 2), ascii); __m128i correction = __lsx_vand_v(perm, lsx_splat_u32(0x00400000)); __m128i corrected = __lsx_vadd_b(perm, __lsx_vsrli_w(correction, 1)); // Insert twice // 00000000 000aaabb bbbbxxxx xxxxxxxx __m128i corrected_srli2 = __lsx_vsrli_w(__lsx_vand_v(corrected, __lsx_vrepli_b(0x7)), 2); __m128i ab = __lsx_vbitsel_v(corrected_srli2, corrected, __lsx_vrepli_h(0x3f)); ab = __lsx_vsrli_w(ab, 4); // 00000000 000aaabb bbbbcccc ccdddddd __m128i composed = __lsx_vbitsel_v(ab, cd, lsx_splat_u32(0x00000FFF)); // Store __lsx_vst(composed, utf32_output, 0); utf32_output += 3; // We wrote 3 32-bit characters. return consumed; } else { // here we know that there is an error but we do not handle errors return 12; } } /* end file src/lasx/lasx_convert_utf8_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lasx/lasx_convert_utf8_to_latin1.cpp */ size_t convert_masked_utf8_to_latin1(const char *input, uint64_t utf8_end_of_code_point_mask, char *&latin1_output) { // we use an approach where we try to process up to 12 input bytes. // Why 12 input bytes and not 16? Because we are concerned with the size of // the lookup tables. Also 12 is nicely divisible by two and three. // __m128i in = __lsx_vld(reinterpret_cast(input), 0); const uint16_t input_utf8_end_of_code_point_mask = utf8_end_of_code_point_mask & 0xfff; // Optimization note: our main path below is load-latency dependent. Thus it // is maybe beneficial to have fast paths that depend on branch prediction but // have less latency. This results in more instructions but, potentially, also // higher speeds. // We first try a few fast paths. // The obvious first test is ASCII, which actually consumes the full 16. if ((utf8_end_of_code_point_mask & 0xFFFF) == 0xFFFF) { // We process in chunks of 16 bytes __lsx_vst(in, reinterpret_cast(latin1_output), 0); latin1_output += 16; // We wrote 16 18-bit characters. return 16; // We consumed 16 bytes. } /// We do not have a fast path available, or the fast path is unimportant, so /// we fallback. const uint8_t idx = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][0]; const uint8_t consumed = simdutf::tables::utf8_to_utf16::utf8bigindex [input_utf8_end_of_code_point_mask][1]; // this indicates an invalid input: if (idx >= 64) { return consumed; } // Here we should have (idx < 64), if not, there is a bug in the validation or // elsewhere. SIX (6) input code-code units this is a relatively easy scenario // we process SIX (6) input code-code units. The max length in bytes of six // code code units spanning between 1 and 2 bytes each is 12 bytes. Converts 6 // 1-2 byte UTF-8 characters to 6 UTF-16 characters. This is a relatively easy // scenario we process SIX (6) input code-code units. The max length in bytes // of six code code units spanning between 1 and 2 bytes each is 12 bytes. __m128i sh = __lsx_vld(reinterpret_cast( simdutf::tables::utf8_to_utf16::shufutf8[idx]), 0); // Shuffle // 1 byte: 00000000 0bbbbbbb // 2 byte: 110aaaaa 10bbbbbb sh = __lsx_vand_v(sh, __lsx_vldi(0x1f)); __m128i perm = __lsx_vshuf_b(__lsx_vldi(0), in, sh); // ascii mask // 1 byte: 11111111 11111111 // 2 byte: 00000000 00000000 __m128i ascii_mask = __lsx_vslt_bu(perm, __lsx_vldi(0x80)); // utf8 mask // 1 byte: 00000000 00000000 // 2 byte: 00111111 00111111 __m128i utf8_mask = __lsx_vand_v(__lsx_vsle_bu(__lsx_vldi(0x80), perm), __lsx_vldi(0b00111111)); // mask // 1 byte: 11111111 11111111 // 2 byte: 00111111 00111111 __m128i mask = __lsx_vor_v(utf8_mask, ascii_mask); __m128i composed = __lsx_vbitsel_v(__lsx_vsrli_h(perm, 2), perm, mask); // writing 8 bytes even though we only care about the first 6 bytes. __m128i latin1_packed = __lsx_vpickev_b(__lsx_vldi(0), composed); __lsx_vst(latin1_packed, reinterpret_cast(latin1_output), 0); latin1_output += 6; // We wrote 6 bytes. return consumed; } /* end file src/lasx/lasx_convert_utf8_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lasx/lasx_convert_utf16_to_latin1.cpp */ template std::pair lasx_convert_utf16_to_latin1(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *end = buf + len; while (end - buf >= 16) { __m128i in = __lsx_vld(reinterpret_cast(buf), 0); __m128i in1 = __lsx_vld(reinterpret_cast(buf), 16); if (!match_system(big_endian)) { in = lsx_swap_bytes(in); in1 = lsx_swap_bytes(in1); } if (__lsx_bz_v(__lsx_vpickod_b(in1, in))) { // 1. pack the bytes __m128i latin1_packed = __lsx_vpickev_b(in1, in); // 2. store (8 bytes) __lsx_vst(latin1_packed, reinterpret_cast(latin1_output), 0); // 3. adjust pointers buf += 16; latin1_output += 16; } else { return std::make_pair(nullptr, reinterpret_cast(latin1_output)); } } // while return std::make_pair(buf, latin1_output); } template std::pair lasx_convert_utf16_to_latin1_with_errors(const char16_t *buf, size_t len, char *latin1_output) { const char16_t *start = buf; const char16_t *end = buf + len; while (end - buf >= 16) { __m128i in = __lsx_vld(reinterpret_cast(buf), 0); __m128i in1 = __lsx_vld(reinterpret_cast(buf), 16); if (!match_system(big_endian)) { in = lsx_swap_bytes(in); in1 = lsx_swap_bytes(in1); } if (__lsx_bz_v(__lsx_vpickod_b(in1, in))) { // 1. pack the bytes __m128i latin1_packed = __lsx_vpickev_b(in1, in); // 2. store (8 bytes) __lsx_vst(latin1_packed, reinterpret_cast(latin1_output), 0); // 3. adjust pointers buf += 16; latin1_output += 16; } else { // Let us do a scalar fallback. for (int k = 0; k < 16; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if (word <= 0xff) { *latin1_output++ = char(word); } else { return std::make_pair(result(error_code::TOO_LARGE, buf - start + k), latin1_output); } } } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), latin1_output); } /* end file src/lasx/lasx_convert_utf16_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /* begin file src/lasx/lasx_convert_utf16_to_utf8.cpp */ /* The vectorized algorithm works on single LASX register i.e., it loads eight 16-bit code units. We consider three cases: 1. an input register contains no surrogates and each value is in range 0x0000 .. 0x07ff. 2. an input register contains no surrogates and values are is in range 0x0000 .. 0xffff. 3. an input register contains surrogates --- i.e. codepoints can have 16 or 32 bits. Ad 1. When values are less than 0x0800, it means that a 16-bit code unit can be converted into: 1) single UTF8 byte (when it's an ASCII char) or 2) two UTF8 bytes. For this case we do only some shuffle to obtain these 2-byte codes and finally compress the whole LASX register with a single shuffle. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. Ad 2. When values fit in 16-bit code units, but are above 0x07ff, then a single word may produce one, two or three UTF8 bytes. We prepare data for all these three cases in two registers. The first register contains lower two UTF8 bytes (used in all cases), while the second one contains just the third byte for the three-UTF8-bytes case. Finally these two registers are interleaved forming eight-element array of 32-bit values. The array spans two LASX registers. The bytes from the registers are compressed using two shuffles. We need 256-entry lookup table to get a compression pattern and the number of output bytes in the compressed vector register. Each entry occupies 17 bytes. To summarize: - We need two 256-entry tables that have 8704 bytes in total. */ /* Returns a pair: the first unprocessed byte from buf and utf8_output A scalar routing should carry on the conversion of the tail. */ template std::pair lasx_convert_utf16_to_utf8(const char16_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char16_t *end = buf + len; const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 __m256i v_07ff = __lasx_xvreplgr2vr_h(uint16_t(0x7ff)); __m256i zero = __lasx_xvldi(0); __m128i zero_128 = __lsx_vldi(0); while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m256i in = __lasx_xvld(reinterpret_cast(buf), 0); if (!match_system(big_endian)) { in = lasx_swap_bytes(in); } if (__lasx_xbnz_h(__lasx_xvslt_hu( in, __lasx_xvrepli_h(0x7F)))) { // ASCII fast path!!!! // 1. pack the bytes __m256i utf8_packed = __lasx_xvpermi_d(__lasx_xvpickev_b(in, in), 0b00001000); // 2. store (16 bytes) __lsx_vst(lasx_extracti128_lo(utf8_packed), utf8_output, 0); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } if (__lasx_xbz_v(__lasx_xvslt_hu(v_07ff, in))) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 16 // expected output : [110a|aaaa|10bb|bbbb] x 16 // t0 = [000a|aaaa|bbbb|bb00] __m256i t0 = __lasx_xvslli_h(in, 2); // t1 = [000a|aaaa|0000|0000] __m256i t1 = __lasx_xvand_v(t0, lasx_splat_u16(0x1f00)); // t2 = [0000|0000|00bb|bbbb] __m256i t2 = __lasx_xvand_v(in, __lasx_xvrepli_h(0x3f)); // t3 = [000a|aaaa|00bb|bbbb] __m256i t3 = __lasx_xvor_v(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] __m256i v_c080 = __lasx_xvreplgr2vr_h(uint16_t(0xc080)); __m256i t4 = __lasx_xvor_v(t3, v_c080); // 2. merge ASCII and 2-byte codewords __m256i one_byte_bytemask = __lasx_xvsle_hu(in, __lasx_xvrepli_h(0x7F /*0x007F*/)); __m256i utf8_unpacked = __lasx_xvbitsel_v(t4, in, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup __m256i mask = __lasx_xvmskltz_h(one_byte_bytemask); uint32_t m1 = __lasx_xvpickve2gr_wu(mask, 0); uint32_t m2 = __lasx_xvpickve2gr_wu(mask, 4); // 4. pack the bytes const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lasx_1_2_utf8_bytes_mask[m1]][0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_packed1 = __lsx_vshuf_b(zero_128, lasx_extracti128_lo(utf8_unpacked), shuffle1); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lasx_1_2_utf8_bytes_mask[m2]][0]; __m128i shuffle2 = __lsx_vld(row2, 1); __m128i utf8_packed2 = __lsx_vshuf_b(zero_128, lasx_extracti128_hi(utf8_unpacked), shuffle2); // 5. store bytes __lsx_vst(utf8_packed1, utf8_output, 0); utf8_output += row1[0]; __lsx_vst(utf8_packed2, utf8_output, 0); utf8_output += row2[0]; buf += 16; continue; } __m256i surrogates_bytemask = __lasx_xvseq_h( __lasx_xvand_v(in, lasx_splat_u16(0xf800)), lasx_splat_u16(0xd800)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (__lasx_xbz_v(surrogates_bytemask)) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] __m256i t0 = __lasx_xvpickev_b(in, in); t0 = __lasx_xvilvl_b(t0, t0); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|00cc|cccc] __m256i v_3f7f = __lasx_xvreplgr2vr_h(uint16_t(0x3F7F)); __m256i t1 = __lasx_xvand_v(t0, v_3f7f); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] __m256i t2 = __lasx_xvor_v(t1, lasx_splat_u16(0x8000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] __m256i s0 = __lasx_xvsrli_h(in, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] __m256i s1 = __lasx_xvslli_h(in, 2); // s1: [aabb|bbbb|cccc|cc00] => [00bb|bbbb|0000|0000] s1 = __lasx_xvand_v(s1, lasx_splat_u16(0x3f00)); // [00bb|bbbb|0000|aaaa] __m256i s2 = __lasx_xvor_v(s0, s1); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] __m256i v_c0e0 = __lasx_xvreplgr2vr_h(uint16_t(0xC0E0)); __m256i s3 = __lasx_xvor_v(s2, v_c0e0); __m256i one_or_two_bytes_bytemask = __lasx_xvsle_hu(in, v_07ff); __m256i m0 = __lasx_xvandn_v(one_or_two_bytes_bytemask, lasx_splat_u16(0x4000)); __m256i s4 = __lasx_xvxor_v(s3, m0); // 4. expand code units 16-bit => 32-bit __m256i out0 = __lasx_xvilvl_h(s4, t2); __m256i out1 = __lasx_xvilvh_h(s4, t2); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle __m256i one_byte_bytemask = __lasx_xvsle_hu(in, __lasx_xvrepli_h(0x7F)); __m256i one_byte_bytemask_low = __lasx_xvilvl_h(one_byte_bytemask, one_byte_bytemask); __m256i one_byte_bytemask_high = __lasx_xvilvh_h(one_byte_bytemask, one_byte_bytemask); __m256i one_or_two_bytes_bytemask_low = __lasx_xvilvl_h(one_or_two_bytes_bytemask, zero); __m256i one_or_two_bytes_bytemask_high = __lasx_xvilvh_h(one_or_two_bytes_bytemask, zero); __m256i mask0 = __lasx_xvmskltz_h( __lasx_xvor_v(one_or_two_bytes_bytemask_low, one_byte_bytemask_low)); __m256i mask1 = __lasx_xvmskltz_h(__lasx_xvor_v( one_or_two_bytes_bytemask_high, one_byte_bytemask_high)); uint32_t mask = __lasx_xvpickve2gr_wu(mask0, 0); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle0 = __lsx_vld(row0, 1); __m128i utf8_0 = __lsx_vshuf_b(zero_128, lasx_extracti128_lo(out0), shuffle0); __lsx_vst(utf8_0, utf8_output, 0); utf8_output += row0[0]; mask = __lasx_xvpickve2gr_wu(mask1, 0); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_1 = __lsx_vshuf_b(zero_128, lasx_extracti128_lo(out1), shuffle1); __lsx_vst(utf8_1, utf8_output, 0); utf8_output += row1[0]; mask = __lasx_xvpickve2gr_wu(mask0, 4); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle2 = __lsx_vld(row2, 1); __m128i utf8_2 = __lsx_vshuf_b(zero_128, lasx_extracti128_hi(out0), shuffle2); __lsx_vst(utf8_2, utf8_output, 0); utf8_output += row2[0]; mask = __lasx_xvpickve2gr_wu(mask1, 4); const uint8_t *row3 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle3 = __lsx_vld(row3, 1); __m128i utf8_3 = __lsx_vshuf_b(zero_128, lasx_extracti128_hi(out1), shuffle3); __lsx_vst(utf8_3, utf8_output, 0); utf8_output += row3[0]; buf += 16; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(buf, reinterpret_cast(utf8_output)); } /* Returns a pair: a result struct and utf8_output. If there is an error, the count field of the result is the position of the error. Otherwise, it is the position of the first unprocessed byte in buf (even if finished). A scalar routing should carry on the conversion of the tail if needed. */ template std::pair lasx_convert_utf16_to_utf8_with_errors(const char16_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char16_t *start = buf; const char16_t *end = buf + len; const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 __m256i v_07ff = __lasx_xvreplgr2vr_h(uint16_t(0x7ff)); __m256i zero = __lasx_xvldi(0); __m128i zero_128 = __lsx_vldi(0); while (end - buf >= std::ptrdiff_t(16 + safety_margin)) { __m256i in = __lasx_xvld(reinterpret_cast(buf), 0); if (!match_system(big_endian)) { in = lasx_swap_bytes(in); } if (__lasx_xbnz_h(__lasx_xvslt_hu( in, __lasx_xvrepli_h(0x7F)))) { // ASCII fast path!!!! // 1. pack the bytes __m256i utf8_packed = __lasx_xvpermi_d(__lasx_xvpickev_b(in, in), 0b00001000); // 2. store (16 bytes) __lsx_vst(lasx_extracti128_lo(utf8_packed), utf8_output, 0); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } if (__lasx_xbz_v(__lasx_xvslt_hu(v_07ff, in))) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 16 // expected output : [110a|aaaa|10bb|bbbb] x 16 // t0 = [000a|aaaa|bbbb|bb00] __m256i t0 = __lasx_xvslli_h(in, 2); // t1 = [000a|aaaa|0000|0000] __m256i t1 = __lasx_xvand_v(t0, lasx_splat_u16(0x1f00)); // t2 = [0000|0000|00bb|bbbb] __m256i t2 = __lasx_xvand_v(in, __lasx_xvrepli_h(0x3f)); // t3 = [000a|aaaa|00bb|bbbb] __m256i t3 = __lasx_xvor_v(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] __m256i v_c080 = __lasx_xvreplgr2vr_h(uint16_t(0xc080)); __m256i t4 = __lasx_xvor_v(t3, v_c080); // 2. merge ASCII and 2-byte codewords __m256i one_byte_bytemask = __lasx_xvsle_hu(in, __lasx_xvrepli_h(0x7F /*0x007F*/)); __m256i utf8_unpacked = __lasx_xvbitsel_v(t4, in, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup __m256i mask = __lasx_xvmskltz_h(one_byte_bytemask); uint32_t m1 = __lasx_xvpickve2gr_wu(mask, 0); uint32_t m2 = __lasx_xvpickve2gr_wu(mask, 4); // 4. pack the bytes const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lasx_1_2_utf8_bytes_mask[m1]][0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_packed1 = __lsx_vshuf_b(zero_128, lasx_extracti128_lo(utf8_unpacked), shuffle1); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lasx_1_2_utf8_bytes_mask[m2]][0]; __m128i shuffle2 = __lsx_vld(row2, 1); __m128i utf8_packed2 = __lsx_vshuf_b(zero_128, lasx_extracti128_hi(utf8_unpacked), shuffle2); // 5. store bytes __lsx_vst(utf8_packed1, utf8_output, 0); utf8_output += row1[0]; __lsx_vst(utf8_packed2, utf8_output, 0); utf8_output += row2[0]; buf += 16; continue; } __m256i surrogates_bytemask = __lasx_xvseq_h( __lasx_xvand_v(in, lasx_splat_u16(0xf800)), lasx_splat_u16(0xd800)); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (__lasx_xbz_v(surrogates_bytemask)) { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] __m256i t0 = __lasx_xvpickev_b(in, in); t0 = __lasx_xvilvl_b(t0, t0); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|00cc|cccc] __m256i v_3f7f = __lasx_xvreplgr2vr_h(uint16_t(0x3F7F)); __m256i t1 = __lasx_xvand_v(t0, v_3f7f); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] __m256i t2 = __lasx_xvor_v(t1, lasx_splat_u16(0x8000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] __m256i s0 = __lasx_xvsrli_h(in, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] __m256i s1 = __lasx_xvslli_h(in, 2); // s1: [aabb|bbbb|cccc|cc00] => [00bb|bbbb|0000|0000] s1 = __lasx_xvand_v(s1, lasx_splat_u16(0x3f00)); // [00bb|bbbb|0000|aaaa] __m256i s2 = __lasx_xvor_v(s0, s1); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] __m256i v_c0e0 = __lasx_xvreplgr2vr_h(uint16_t(0xC0E0)); __m256i s3 = __lasx_xvor_v(s2, v_c0e0); __m256i one_or_two_bytes_bytemask = __lasx_xvsle_hu(in, v_07ff); __m256i m0 = __lasx_xvandn_v(one_or_two_bytes_bytemask, lasx_splat_u16(0x4000)); __m256i s4 = __lasx_xvxor_v(s3, m0); // 4. expand code units 16-bit => 32-bit __m256i out0 = __lasx_xvilvl_h(s4, t2); __m256i out1 = __lasx_xvilvh_h(s4, t2); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle __m256i one_byte_bytemask = __lasx_xvsle_hu(in, __lasx_xvrepli_h(0x7F)); __m256i one_byte_bytemask_low = __lasx_xvilvl_h(one_byte_bytemask, one_byte_bytemask); __m256i one_byte_bytemask_high = __lasx_xvilvh_h(one_byte_bytemask, one_byte_bytemask); __m256i one_or_two_bytes_bytemask_low = __lasx_xvilvl_h(one_or_two_bytes_bytemask, zero); __m256i one_or_two_bytes_bytemask_high = __lasx_xvilvh_h(one_or_two_bytes_bytemask, zero); __m256i mask0 = __lasx_xvmskltz_h( __lasx_xvor_v(one_or_two_bytes_bytemask_low, one_byte_bytemask_low)); __m256i mask1 = __lasx_xvmskltz_h(__lasx_xvor_v( one_or_two_bytes_bytemask_high, one_byte_bytemask_high)); uint32_t mask = __lasx_xvpickve2gr_wu(mask0, 0); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle0 = __lsx_vld(row0, 1); __m128i utf8_0 = __lsx_vshuf_b(zero_128, lasx_extracti128_lo(out0), shuffle0); __lsx_vst(utf8_0, utf8_output, 0); utf8_output += row0[0]; mask = __lasx_xvpickve2gr_wu(mask1, 0); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_1 = __lsx_vshuf_b(zero_128, lasx_extracti128_lo(out1), shuffle1); __lsx_vst(utf8_1, utf8_output, 0); utf8_output += row1[0]; mask = __lasx_xvpickve2gr_wu(mask0, 4); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle2 = __lsx_vld(row2, 1); __m128i utf8_2 = __lsx_vshuf_b(zero_128, lasx_extracti128_hi(out0), shuffle2); __lsx_vst(utf8_2, utf8_output, 0); utf8_output += row2[0]; mask = __lasx_xvpickve2gr_wu(mask1, 4); const uint8_t *row3 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle3 = __lsx_vld(row3, 1); __m128i utf8_3 = __lsx_vshuf_b(zero_128, lasx_extracti128_hi(out1), shuffle3); __lsx_vst(utf8_3, utf8_output, 0); utf8_output += row3[0]; buf += 16; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xF800) != 0xD800) { *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k - 1), reinterpret_cast(utf8_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf8_output++ = char((value >> 18) | 0b11110000); *utf8_output++ = char(((value >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((value >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((value & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf8_output)); } /* end file src/lasx/lasx_convert_utf16_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/lasx/lasx_convert_utf16_to_utf32.cpp */ template std::pair lasx_convert_utf16_to_utf32(const char16_t *buf, size_t len, char32_t *utf32_out) { uint32_t *utf32_output = reinterpret_cast(utf32_out); const char16_t *end = buf + len; // Performance degradation when memory address is not 32-byte aligned while (((uint64_t)utf32_output & 0x1f) && buf < end) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[0]) : buf[0]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); buf++; } else { if (buf + 1 >= end) { return std::make_pair(nullptr, reinterpret_cast(utf32_output)); } // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[1]) : buf[1]; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, reinterpret_cast(utf32_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); buf += 2; } } __m256i v_f800 = lasx_splat_u16(0xf800); __m256i v_d800 = lasx_splat_u16(0xd800); while (end - buf >= 16) { __m256i in = __lasx_xvld(reinterpret_cast(buf), 0); if (!match_system(big_endian)) { in = lasx_swap_bytes(in); } __m256i surrogates_bytemask = __lasx_xvseq_h(__lasx_xvand_v(in, v_f800), v_d800); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (__lasx_xbz_v(surrogates_bytemask)) { // case: no surrogate pairs, extend all 16-bit code units to 32-bit code // units __m256i in_hi = __lasx_xvpermi_q(in, in, 0b00000001); __lasx_xvst(__lasx_vext2xv_wu_hu(in), utf32_output, 0); __lasx_xvst(__lasx_vext2xv_wu_hu(in_hi), utf32_output, 32); utf32_output += 16; buf += 16; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(nullptr, reinterpret_cast(utf32_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return std::make_pair(buf, reinterpret_cast(utf32_output)); } /* Returns a pair: a result struct and utf8_output. If there is an error, the count field of the result is the position of the error. Otherwise, it is the position of the first unprocessed byte in buf (even if finished). A scalar routing should carry on the conversion of the tail if needed. */ template std::pair lasx_convert_utf16_to_utf32_with_errors(const char16_t *buf, size_t len, char32_t *utf32_out) { uint32_t *utf32_output = reinterpret_cast(utf32_out); const char16_t *start = buf; const char16_t *end = buf + len; // Performance degradation when memory address is not 32-byte aligned while (((uint64_t)utf32_output & 0x1f) && buf < end) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[0]) : buf[0]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); buf++; } else if (buf + 1 < end) { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[1]) : buf[1]; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair(result(error_code::SURROGATE, buf - start), reinterpret_cast(utf32_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); buf += 2; } else { return std::make_pair(result(error_code::SURROGATE, buf - start), reinterpret_cast(utf32_output)); } } __m256i v_f800 = lasx_splat_u16(0xf800); __m256i v_d800 = lasx_splat_u16(0xd800); while (end - buf >= 16) { __m256i in = __lasx_xvld(reinterpret_cast(buf), 0); if (!match_system(big_endian)) { in = lasx_swap_bytes(in); } __m256i surrogates_bytemask = __lasx_xvseq_h(__lasx_xvand_v(in, v_f800), v_d800); // It might seem like checking for surrogates_bitmask == 0xc000 could help. // However, it is likely an uncommon occurrence. if (__lasx_xbz_v(surrogates_bytemask)) { // case: no surrogate pairs, extend all 16-bit code units to 32-bit code // units __m256i in_hi = __lasx_xvpermi_q(in, in, 0b00000001); __lasx_xvst(__lasx_vext2xv_wu_hu(in), utf32_output, 0); __lasx_xvst(__lasx_vext2xv_wu_hu(in_hi), utf32_output, 32); utf32_output += 16; buf += 16; // surrogate pair(s) in a register } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint16_t word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k]) : buf[k]; if ((word & 0xF800) != 0xD800) { *utf32_output++ = char32_t(word); } else { // must be a surrogate pair uint16_t diff = uint16_t(word - 0xD800); uint16_t next_word = !match_system(big_endian) ? scalar::u16_swap_bytes(buf[k + 1]) : buf[k + 1]; k++; uint16_t diff2 = uint16_t(next_word - 0xDC00); if ((diff | diff2) > 0x3FF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k - 1), reinterpret_cast(utf32_output)); } uint32_t value = (diff << 10) + diff2 + 0x10000; *utf32_output++ = char32_t(value); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf32_output)); } /* end file src/lasx/lasx_convert_utf16_to_utf32.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /* begin file src/lasx/lasx_convert_utf32_to_latin1.cpp */ std::pair lasx_convert_utf32_to_latin1(const char32_t *buf, size_t len, char *latin1_output) { const char32_t *end = buf + len; const __m256i shuf_mask = ____m256i( (__m128i)v16u8{0, 4, 8, 12, 16, 20, 24, 28, 0, 0, 0, 0, 0, 0, 0, 0}); __m256i v_ff = __lasx_xvrepli_w(0xFF); while (end - buf >= 16) { __m256i in1 = __lasx_xvld(reinterpret_cast(buf), 0); __m256i in2 = __lasx_xvld(reinterpret_cast(buf), 32); __m256i in12 = __lasx_xvor_v(in1, in2); if (__lasx_xbz_v(__lasx_xvslt_wu(v_ff, in12))) { // 1. pack the bytes __m256i latin1_packed_tmp = __lasx_xvshuf_b(in2, in1, shuf_mask); latin1_packed_tmp = __lasx_xvpermi_d(latin1_packed_tmp, 0b00001000); __m128i latin1_packed = lasx_extracti128_lo(latin1_packed_tmp); latin1_packed = __lsx_vpermi_w(latin1_packed, latin1_packed, 0b11011000); // 2. store (8 bytes) __lsx_vst(latin1_packed, reinterpret_cast(latin1_output), 0); // 3. adjust pointers buf += 16; latin1_output += 16; } else { return std::make_pair(nullptr, reinterpret_cast(latin1_output)); } } // while return std::make_pair(buf, latin1_output); } std::pair lasx_convert_utf32_to_latin1_with_errors(const char32_t *buf, size_t len, char *latin1_output) { const char32_t *start = buf; const char32_t *end = buf + len; const __m256i shuf_mask = ____m256i( (__m128i)v16u8{0, 4, 8, 12, 16, 20, 24, 28, 0, 0, 0, 0, 0, 0, 0, 0}); __m256i v_ff = __lasx_xvrepli_w(0xFF); while (end - buf >= 16) { __m256i in1 = __lasx_xvld(reinterpret_cast(buf), 0); __m256i in2 = __lasx_xvld(reinterpret_cast(buf), 32); __m256i in12 = __lasx_xvor_v(in1, in2); if (__lasx_xbz_v(__lasx_xvslt_wu(v_ff, in12))) { // 1. pack the bytes __m256i latin1_packed_tmp = __lasx_xvshuf_b(in2, in1, shuf_mask); latin1_packed_tmp = __lasx_xvpermi_d(latin1_packed_tmp, 0b00001000); __m128i latin1_packed = lasx_extracti128_lo(latin1_packed_tmp); latin1_packed = __lsx_vpermi_w(latin1_packed, latin1_packed, 0b11011000); // 2. store (8 bytes) __lsx_vst(latin1_packed, reinterpret_cast(latin1_output), 0); // 3. adjust pointers buf += 16; latin1_output += 16; } else { // Let us do a scalar fallback. for (int k = 0; k < 16; k++) { uint32_t word = buf[k]; if (word <= 0xff) { *latin1_output++ = char(word); } else { return std::make_pair(result(error_code::TOO_LARGE, buf - start + k), latin1_output); } } } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), latin1_output); } /* end file src/lasx/lasx_convert_utf32_to_latin1.cpp */ #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /* begin file src/lasx/lasx_convert_utf32_to_utf8.cpp */ std::pair lasx_convert_utf32_to_utf8(const char32_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char32_t *end = buf + len; // load addr align 32 while (((uint64_t)buf & 0x1F) && buf < end) { uint32_t word = *buf; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (word > 0x10FFFF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } buf++; } __m256i v_c080 = lasx_splat_u16(0xc080); __m256i v_07ff = lasx_splat_u16(0x07ff); __m256i v_dfff = lasx_splat_u16(0xdfff); __m256i v_d800 = lasx_splat_u16(0xd800); __m256i zero = __lasx_xvldi(0); __m128i zero_128 = __lsx_vldi(0); __m256i forbidden_bytemask = __lasx_xvldi(0x0); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf > std::ptrdiff_t(16 + safety_margin)) { __m256i in = __lasx_xvld(reinterpret_cast(buf), 0); __m256i nextin = __lasx_xvld(reinterpret_cast(buf), 32); // Check if no bits set above 16th if (__lasx_xbz_v(__lasx_xvpickod_h(in, nextin))) { // Pack UTF-32 to UTF-16 safely (without surrogate pairs) // Apply UTF-16 => UTF-8 routine (lasx_convert_utf16_to_utf8.cpp) __m256i utf16_packed = __lasx_xvpermi_d(__lasx_xvpickev_h(nextin, in), 0b11011000); if (__lasx_xbz_v(__lasx_xvslt_hu(__lasx_xvrepli_h(0x7F), utf16_packed))) { // ASCII fast path!!!! // 1. pack the bytes // obviously suboptimal. __m256i utf8_packed = __lasx_xvpermi_d( __lasx_xvpickev_b(utf16_packed, utf16_packed), 0b00001000); // 2. store (8 bytes) __lsx_vst(lasx_extracti128_lo(utf8_packed), utf8_output, 0); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } if (__lasx_xbz_v(__lasx_xvslt_hu(v_07ff, utf16_packed))) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 // t0 = [000a|aaaa|bbbb|bb00] const __m256i t0 = __lasx_xvslli_h(utf16_packed, 2); // t1 = [000a|aaaa|0000|0000] const __m256i t1 = __lasx_xvand_v(t0, lasx_splat_u16(0x1f00)); // t2 = [0000|0000|00bb|bbbb] const __m256i t2 = __lasx_xvand_v(utf16_packed, __lasx_xvrepli_h(0x3f)); // t3 = [000a|aaaa|00bb|bbbb] const __m256i t3 = __lasx_xvor_v(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m256i t4 = __lasx_xvor_v(t3, v_c080); // 2. merge ASCII and 2-byte codewords __m256i one_byte_bytemask = __lasx_xvsle_hu(utf16_packed, __lasx_xvrepli_h(0x7F /*0x007F*/)); __m256i utf8_unpacked = __lasx_xvbitsel_v(t4, utf16_packed, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup __m256i mask = __lasx_xvmskltz_h(one_byte_bytemask); uint32_t m1 = __lasx_xvpickve2gr_wu(mask, 0); uint32_t m2 = __lasx_xvpickve2gr_wu(mask, 4); // 4. pack the bytes const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lasx_1_2_utf8_bytes_mask[m1]][0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_packed1 = __lsx_vshuf_b( zero_128, lasx_extracti128_lo(utf8_unpacked), shuffle1); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lasx_1_2_utf8_bytes_mask[m2]][0]; __m128i shuffle2 = __lsx_vld(row2, 1); __m128i utf8_packed2 = __lsx_vshuf_b( zero_128, lasx_extracti128_hi(utf8_unpacked), shuffle2); // 5. store bytes __lsx_vst(utf8_packed1, utf8_output, 0); utf8_output += row1[0]; __lsx_vst(utf8_packed2, utf8_output, 0); utf8_output += row2[0]; buf += 16; continue; } else { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes forbidden_bytemask = __lasx_xvor_v( __lasx_xvand_v( __lasx_xvsle_h(utf16_packed, v_dfff), // utf16_packed <= 0xdfff __lasx_xvsle_h(v_d800, utf16_packed)), // utf16_packed >= 0xd800 forbidden_bytemask); /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] __m256i t0 = __lasx_xvpickev_b(utf16_packed, utf16_packed); t0 = __lasx_xvilvl_b(t0, t0); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] __m256i v_3f7f = __lasx_xvreplgr2vr_h(uint16_t(0x3F7F)); __m256i t1 = __lasx_xvand_v(t0, v_3f7f); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] __m256i t2 = __lasx_xvor_v(t1, lasx_splat_u16(0x8000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] __m256i s0 = __lasx_xvsrli_h(utf16_packed, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] __m256i s1 = __lasx_xvslli_h(utf16_packed, 2); // [0000|bbbb|bb00|0000] => [00bb|bbbb|0000|0000] s1 = __lasx_xvand_v(s1, lasx_splat_u16(0x3f00)); // [00bb|bbbb|0000|aaaa] __m256i s2 = __lasx_xvor_v(s0, s1); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] __m256i v_c0e0 = __lasx_xvreplgr2vr_h(uint16_t(0xC0E0)); __m256i s3 = __lasx_xvor_v(s2, v_c0e0); // __m256i v_07ff = vmovq_n_u16((uint16_t)0x07FF); __m256i one_or_two_bytes_bytemask = __lasx_xvsle_hu(utf16_packed, v_07ff); __m256i m0 = __lasx_xvandn_v(one_or_two_bytes_bytemask, lasx_splat_u16(0x4000)); __m256i s4 = __lasx_xvxor_v(s3, m0); // 4. expand code units 16-bit => 32-bit __m256i out0 = __lasx_xvilvl_h(s4, t2); __m256i out1 = __lasx_xvilvh_h(s4, t2); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle __m256i one_byte_bytemask = __lasx_xvsle_hu(utf16_packed, __lasx_xvrepli_h(0x7F)); __m256i one_or_two_bytes_bytemask_u16_to_u32_low = __lasx_xvilvl_h(one_or_two_bytes_bytemask, zero); __m256i one_or_two_bytes_bytemask_u16_to_u32_high = __lasx_xvilvh_h(one_or_two_bytes_bytemask, zero); __m256i one_byte_bytemask_u16_to_u32_low = __lasx_xvilvl_h(one_byte_bytemask, one_byte_bytemask); __m256i one_byte_bytemask_u16_to_u32_high = __lasx_xvilvh_h(one_byte_bytemask, one_byte_bytemask); __m256i mask0 = __lasx_xvmskltz_h( __lasx_xvor_v(one_or_two_bytes_bytemask_u16_to_u32_low, one_byte_bytemask_u16_to_u32_low)); __m256i mask1 = __lasx_xvmskltz_h( __lasx_xvor_v(one_or_two_bytes_bytemask_u16_to_u32_high, one_byte_bytemask_u16_to_u32_high)); uint32_t mask = __lasx_xvpickve2gr_wu(mask0, 0); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle0 = __lsx_vld(row0, 1); __m128i utf8_0 = __lsx_vshuf_b(zero_128, lasx_extracti128_lo(out0), shuffle0); __lsx_vst(utf8_0, utf8_output, 0); utf8_output += row0[0]; mask = __lasx_xvpickve2gr_wu(mask1, 0); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_1 = __lsx_vshuf_b(zero_128, lasx_extracti128_lo(out1), shuffle1); __lsx_vst(utf8_1, utf8_output, 0); utf8_output += row1[0]; mask = __lasx_xvpickve2gr_wu(mask0, 4); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle2 = __lsx_vld(row2, 1); __m128i utf8_2 = __lsx_vshuf_b(zero_128, lasx_extracti128_hi(out0), shuffle2); __lsx_vst(utf8_2, utf8_output, 0); utf8_output += row2[0]; mask = __lasx_xvpickve2gr_wu(mask1, 4); const uint8_t *row3 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle3 = __lsx_vld(row3, 1); __m128i utf8_3 = __lsx_vshuf_b(zero_128, lasx_extracti128_hi(out1), shuffle3); __lsx_vst(utf8_3, utf8_output, 0); utf8_output += row3[0]; buf += 16; } // At least one 32-bit word will produce a surrogate pair in UTF-16 <=> // will produce four UTF-8 bytes. } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (word > 0x10FFFF) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while // check for invalid input if (__lasx_xbnz_v(forbidden_bytemask)) { return std::make_pair(nullptr, reinterpret_cast(utf8_output)); } return std::make_pair(buf, reinterpret_cast(utf8_output)); } std::pair lasx_convert_utf32_to_utf8_with_errors(const char32_t *buf, size_t len, char *utf8_out) { uint8_t *utf8_output = reinterpret_cast(utf8_out); const char32_t *start = buf; const char32_t *end = buf + len; // load addr align 32 while (((uint64_t)buf & 0x1F) && buf < end) { uint32_t word = *buf; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(result(error_code::SURROGATE, buf - start), reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (word > 0x10FFFF) { return std::make_pair(result(error_code::TOO_LARGE, buf - start), reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } buf++; } __m256i v_c080 = lasx_splat_u16(0xc080); __m256i v_07ff = lasx_splat_u16(0x07ff); __m256i v_dfff = lasx_splat_u16(0xdfff); __m256i v_d800 = lasx_splat_u16(0xd800); __m256i zero = __lasx_xvldi(0); __m128i zero_128 = __lsx_vldi(0); __m256i forbidden_bytemask = __lasx_xvldi(0x0); const size_t safety_margin = 12; // to avoid overruns, see issue // https://github.com/simdutf/simdutf/issues/92 while (end - buf > std::ptrdiff_t(16 + safety_margin)) { __m256i in = __lasx_xvld(reinterpret_cast(buf), 0); __m256i nextin = __lasx_xvld(reinterpret_cast(buf), 32); // Check if no bits set above 16th if (__lasx_xbz_v(__lasx_xvpickod_h(in, nextin))) { // Pack UTF-32 to UTF-16 safely (without surrogate pairs) // Apply UTF-16 => UTF-8 routine (lasx_convert_utf16_to_utf8.cpp) __m256i utf16_packed = __lasx_xvpermi_d(__lasx_xvpickev_h(nextin, in), 0b11011000); if (__lasx_xbz_v(__lasx_xvslt_hu(__lasx_xvrepli_h(0x7F), utf16_packed))) { // ASCII fast path!!!! // 1. pack the bytes // obviously suboptimal. __m256i utf8_packed = __lasx_xvpermi_d( __lasx_xvpickev_b(utf16_packed, utf16_packed), 0b00001000); // 2. store (8 bytes) __lsx_vst(lasx_extracti128_lo(utf8_packed), utf8_output, 0); // 3. adjust pointers buf += 16; utf8_output += 16; continue; // we are done for this round! } if (__lasx_xbz_v(__lasx_xvslt_hu(v_07ff, utf16_packed))) { // 1. prepare 2-byte values // input 16-bit word : [0000|0aaa|aabb|bbbb] x 8 // expected output : [110a|aaaa|10bb|bbbb] x 8 // t0 = [000a|aaaa|bbbb|bb00] const __m256i t0 = __lasx_xvslli_h(utf16_packed, 2); // t1 = [000a|aaaa|0000|0000] const __m256i t1 = __lasx_xvand_v(t0, lasx_splat_u16(0x1f00)); // t2 = [0000|0000|00bb|bbbb] const __m256i t2 = __lasx_xvand_v(utf16_packed, __lasx_xvrepli_h(0x3f)); // t3 = [000a|aaaa|00bb|bbbb] const __m256i t3 = __lasx_xvor_v(t1, t2); // t4 = [110a|aaaa|10bb|bbbb] const __m256i t4 = __lasx_xvor_v(t3, v_c080); // 2. merge ASCII and 2-byte codewords __m256i one_byte_bytemask = __lasx_xvsle_hu(utf16_packed, __lasx_xvrepli_h(0x7F /*0x007F*/)); __m256i utf8_unpacked = __lasx_xvbitsel_v(t4, utf16_packed, one_byte_bytemask); // 3. prepare bitmask for 8-bit lookup __m256i mask = __lasx_xvmskltz_h(one_byte_bytemask); uint32_t m1 = __lasx_xvpickve2gr_wu(mask, 0); uint32_t m2 = __lasx_xvpickve2gr_wu(mask, 4); // 4. pack the bytes const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lasx_1_2_utf8_bytes_mask[m1]][0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_packed1 = __lsx_vshuf_b( zero_128, lasx_extracti128_lo(utf8_unpacked), shuffle1); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_utf8_bytes [lasx_1_2_utf8_bytes_mask[m2]][0]; __m128i shuffle2 = __lsx_vld(row2, 1); __m128i utf8_packed2 = __lsx_vshuf_b( zero_128, lasx_extracti128_hi(utf8_unpacked), shuffle2); // 5. store bytes __lsx_vst(utf8_packed1, utf8_output, 0); utf8_output += row1[0]; __lsx_vst(utf8_packed2, utf8_output, 0); utf8_output += row2[0]; buf += 16; continue; } else { // case: code units from register produce either 1, 2 or 3 UTF-8 bytes forbidden_bytemask = __lasx_xvor_v( __lasx_xvand_v( __lasx_xvsle_h(utf16_packed, v_dfff), // utf16_packed <= 0xdfff __lasx_xvsle_h(v_d800, utf16_packed)), // utf16_packed >= 0xd800 forbidden_bytemask); if (__lasx_xbnz_v(forbidden_bytemask)) { return std::make_pair(result(error_code::SURROGATE, buf - start), reinterpret_cast(utf8_output)); } /* In this branch we handle three cases: 1. [0000|0000|0ccc|cccc] => [0ccc|cccc] - single UFT-8 byte 2. [0000|0bbb|bbcc|cccc] => [110b|bbbb], [10cc|cccc] - two UTF-8 bytes 3. [aaaa|bbbb|bbcc|cccc] => [1110|aaaa], [10bb|bbbb], [10cc|cccc] - three UTF-8 bytes We expand the input word (16-bit) into two code units (32-bit), thus we have room for four bytes. However, we need five distinct bit layouts. Note that the last byte in cases #2 and #3 is the same. We precompute byte 1 for case #1 and the common byte for cases #2 & #3 in register t2. We precompute byte 1 for case #3 and -- **conditionally** -- precompute either byte 1 for case #2 or byte 2 for case #3. Note that they differ by exactly one bit. Finally from these two code units we build proper UTF-8 sequence, taking into account the case (i.e, the number of bytes to write). */ /** * Given [aaaa|bbbb|bbcc|cccc] our goal is to produce: * t2 => [0ccc|cccc] [10cc|cccc] * s4 => [1110|aaaa] ([110b|bbbb] OR [10bb|bbbb]) */ // [aaaa|bbbb|bbcc|cccc] => [bbcc|cccc|bbcc|cccc] __m256i t0 = __lasx_xvpickev_b(utf16_packed, utf16_packed); t0 = __lasx_xvilvl_b(t0, t0); // [bbcc|cccc|bbcc|cccc] => [00cc|cccc|0bcc|cccc] __m256i v_3f7f = __lasx_xvreplgr2vr_h(uint16_t(0x3F7F)); __m256i t1 = __lasx_xvand_v(t0, v_3f7f); // [00cc|cccc|0bcc|cccc] => [10cc|cccc|0bcc|cccc] __m256i t2 = __lasx_xvor_v(t1, lasx_splat_u16(0x8000)); // s0: [aaaa|bbbb|bbcc|cccc] => [0000|0000|0000|aaaa] __m256i s0 = __lasx_xvsrli_h(utf16_packed, 12); // s1: [aaaa|bbbb|bbcc|cccc] => [0000|bbbb|bb00|0000] __m256i s1 = __lasx_xvslli_h(utf16_packed, 2); // [0000|bbbb|bb00|0000] => [00bb|bbbb|0000|0000] s1 = __lasx_xvand_v(s1, lasx_splat_u16(0x3F00)); // [00bb|bbbb|0000|aaaa] __m256i s2 = __lasx_xvor_v(s0, s1); // s3: [00bb|bbbb|0000|aaaa] => [11bb|bbbb|1110|aaaa] __m256i v_c0e0 = __lasx_xvreplgr2vr_h(uint16_t(0xC0E0)); __m256i s3 = __lasx_xvor_v(s2, v_c0e0); // __m256i v_07ff = vmovq_n_u16((uint16_t)0x07FF); __m256i one_or_two_bytes_bytemask = __lasx_xvsle_hu(utf16_packed, v_07ff); __m256i m0 = __lasx_xvandn_v(one_or_two_bytes_bytemask, lasx_splat_u16(0x4000)); __m256i s4 = __lasx_xvxor_v(s3, m0); // 4. expand code units 16-bit => 32-bit __m256i out0 = __lasx_xvilvl_h(s4, t2); __m256i out1 = __lasx_xvilvh_h(s4, t2); // 5. compress 32-bit code units into 1, 2 or 3 bytes -- 2 x shuffle __m256i one_byte_bytemask = __lasx_xvsle_hu(utf16_packed, __lasx_xvrepli_h(0x7F)); __m256i one_or_two_bytes_bytemask_u16_to_u32_low = __lasx_xvilvl_h(one_or_two_bytes_bytemask, zero); __m256i one_or_two_bytes_bytemask_u16_to_u32_high = __lasx_xvilvh_h(one_or_two_bytes_bytemask, zero); __m256i one_byte_bytemask_u16_to_u32_low = __lasx_xvilvl_h(one_byte_bytemask, one_byte_bytemask); __m256i one_byte_bytemask_u16_to_u32_high = __lasx_xvilvh_h(one_byte_bytemask, one_byte_bytemask); __m256i mask0 = __lasx_xvmskltz_h( __lasx_xvor_v(one_or_two_bytes_bytemask_u16_to_u32_low, one_byte_bytemask_u16_to_u32_low)); __m256i mask1 = __lasx_xvmskltz_h( __lasx_xvor_v(one_or_two_bytes_bytemask_u16_to_u32_high, one_byte_bytemask_u16_to_u32_high)); uint32_t mask = __lasx_xvpickve2gr_wu(mask0, 0); const uint8_t *row0 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle0 = __lsx_vld(row0, 1); __m128i utf8_0 = __lsx_vshuf_b(zero_128, lasx_extracti128_lo(out0), shuffle0); __lsx_vst(utf8_0, utf8_output, 0); utf8_output += row0[0]; mask = __lasx_xvpickve2gr_wu(mask1, 0); const uint8_t *row1 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle1 = __lsx_vld(row1, 1); __m128i utf8_1 = __lsx_vshuf_b(zero_128, lasx_extracti128_lo(out1), shuffle1); __lsx_vst(utf8_1, utf8_output, 0); utf8_output += row1[0]; mask = __lasx_xvpickve2gr_wu(mask0, 4); const uint8_t *row2 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle2 = __lsx_vld(row2, 1); __m128i utf8_2 = __lsx_vshuf_b(zero_128, lasx_extracti128_hi(out0), shuffle2); __lsx_vst(utf8_2, utf8_output, 0); utf8_output += row2[0]; mask = __lasx_xvpickve2gr_wu(mask1, 4); const uint8_t *row3 = &simdutf::tables::utf16_to_utf8::pack_1_2_3_utf8_bytes[mask & 0xFF] [0]; __m128i shuffle3 = __lsx_vld(row3, 1); __m128i utf8_3 = __lsx_vshuf_b(zero_128, lasx_extracti128_hi(out1), shuffle3); __lsx_vst(utf8_3, utf8_output, 0); utf8_output += row3[0]; buf += 16; } // At least one 32-bit word will produce a surrogate pair in UTF-16 <=> // will produce four UTF-8 bytes. } else { // Let us do a scalar fallback. // It may seem wasteful to use scalar code, but being efficient with SIMD // in the presence of surrogate pairs may require non-trivial tables. size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFFFF80) == 0) { *utf8_output++ = char(word); } else if ((word & 0xFFFFF800) == 0) { *utf8_output++ = char((word >> 6) | 0b11000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else if ((word & 0xFFFF0000) == 0) { if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k), reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 12) | 0b11100000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } else { if (word > 0x10FFFF) { return std::make_pair( result(error_code::TOO_LARGE, buf - start + k), reinterpret_cast(utf8_output)); } *utf8_output++ = char((word >> 18) | 0b11110000); *utf8_output++ = char(((word >> 12) & 0b111111) | 0b10000000); *utf8_output++ = char(((word >> 6) & 0b111111) | 0b10000000); *utf8_output++ = char((word & 0b111111) | 0b10000000); } } buf += k; } } // while return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf8_output)); } /* end file src/lasx/lasx_convert_utf32_to_utf8.cpp */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /* begin file src/lasx/lasx_convert_utf32_to_utf16.cpp */ template std::pair lasx_convert_utf32_to_utf16(const char32_t *buf, size_t len, char16_t *utf16_out) { uint16_t *utf16_output = reinterpret_cast(utf16_out); const char32_t *end = buf + len; // Performance degradation when memory address is not 32-byte aligned while (((uint64_t)utf16_output & 0x1F) && buf < end) { uint32_t word = *buf++; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, reinterpret_cast(utf16_output)); } *utf16_output++ = !match_system(big_endian) ? char16_t(word >> 8 | word << 8) : char16_t(word); // buf++; } else { // will generate a surrogate pair if (word > 0x10FFFF) { return std::make_pair(nullptr, reinterpret_cast(utf16_output)); } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = uint16_t(high_surrogate >> 8 | high_surrogate << 8); low_surrogate = uint16_t(low_surrogate << 8 | low_surrogate >> 8); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); // buf++; } } __m256i forbidden_bytemask = __lasx_xvrepli_h(0); __m256i v_d800 = lasx_splat_u16(0xd800); __m256i v_dfff = lasx_splat_u16(0xdfff); while (end - buf >= 16) { __m256i in0 = __lasx_xvld(reinterpret_cast(buf), 0); __m256i in1 = __lasx_xvld(reinterpret_cast(buf), 32); // Check if no bits set above 16th if (__lasx_xbz_v(__lasx_xvpickod_h(in1, in0))) { __m256i utf16_packed = __lasx_xvpermi_d(__lasx_xvpickev_h(in1, in0), 0b11011000); forbidden_bytemask = __lasx_xvor_v( __lasx_xvand_v( __lasx_xvsle_h(utf16_packed, v_dfff), // utf16_packed <= 0xdfff __lasx_xvsle_h(v_d800, utf16_packed)), // utf16_packed >= 0xd800 forbidden_bytemask); if (!match_system(big_endian)) { utf16_packed = lasx_swap_bytes(utf16_packed); } __lasx_xvst(utf16_packed, utf16_output, 0); utf16_output += 16; buf += 16; } else { size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(nullptr, reinterpret_cast(utf16_output)); } *utf16_output++ = !match_system(big_endian) ? char16_t(word >> 8 | word << 8) : char16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return std::make_pair(nullptr, reinterpret_cast(utf16_output)); } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = uint16_t(high_surrogate >> 8 | high_surrogate << 8); low_surrogate = uint16_t(low_surrogate << 8 | low_surrogate >> 8); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } } buf += k; } } // check for invalid input if (__lasx_xbnz_v(forbidden_bytemask)) { return std::make_pair(nullptr, reinterpret_cast(utf16_output)); } return std::make_pair(buf, reinterpret_cast(utf16_output)); } template std::pair lasx_convert_utf32_to_utf16_with_errors(const char32_t *buf, size_t len, char16_t *utf16_out) { uint16_t *utf16_output = reinterpret_cast(utf16_out); const char32_t *start = buf; const char32_t *end = buf + len; // Performance degradation when memory address is not 32-byte aligned while (((uint64_t)utf16_output & 0x1F) && buf < end) { uint32_t word = *buf++; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair(result(error_code::SURROGATE, buf - start - 1), reinterpret_cast(utf16_output)); } *utf16_output++ = !match_system(big_endian) ? char16_t(word >> 8 | word << 8) : char16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return std::make_pair(result(error_code::TOO_LARGE, buf - start - 1), reinterpret_cast(utf16_output)); } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = uint16_t(high_surrogate >> 8 | high_surrogate << 8); low_surrogate = uint16_t(low_surrogate << 8 | low_surrogate >> 8); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } } __m256i forbidden_bytemask = __lasx_xvrepli_h(0); __m256i v_d800 = lasx_splat_u16(0xd800); __m256i v_dfff = lasx_splat_u16(0xdfff); while (end - buf >= 16) { __m256i in0 = __lasx_xvld(reinterpret_cast(buf), 0); __m256i in1 = __lasx_xvld(reinterpret_cast(buf), 32); // Check if no bits set above 16th if (__lasx_xbz_v(__lasx_xvpickod_h(in1, in0))) { __m256i utf16_packed = __lasx_xvpermi_d(__lasx_xvpickev_h(in1, in0), 0b11011000); forbidden_bytemask = __lasx_xvor_v( __lasx_xvand_v( __lasx_xvsle_h(utf16_packed, v_dfff), // utf16_packed <= 0xdfff __lasx_xvsle_h(v_d800, utf16_packed)), // utf16_packed >= 0xd800 forbidden_bytemask); if (__lasx_xbnz_v(forbidden_bytemask)) { return std::make_pair(result(error_code::SURROGATE, buf - start), reinterpret_cast(utf16_output)); } if (!match_system(big_endian)) { utf16_packed = lasx_swap_bytes(utf16_packed); } __lasx_xvst(utf16_packed, utf16_output, 0); utf16_output += 16; buf += 16; } else { size_t forward = 15; size_t k = 0; if (size_t(end - buf) < forward + 1) { forward = size_t(end - buf - 1); } for (; k < forward; k++) { uint32_t word = buf[k]; if ((word & 0xFFFF0000) == 0) { // will not generate a surrogate pair if (word >= 0xD800 && word <= 0xDFFF) { return std::make_pair( result(error_code::SURROGATE, buf - start + k), reinterpret_cast(utf16_output)); } *utf16_output++ = !match_system(big_endian) ? char16_t(word >> 8 | word << 8) : char16_t(word); } else { // will generate a surrogate pair if (word > 0x10FFFF) { return std::make_pair( result(error_code::TOO_LARGE, buf - start + k), reinterpret_cast(utf16_output)); } word -= 0x10000; uint16_t high_surrogate = uint16_t(0xD800 + (word >> 10)); uint16_t low_surrogate = uint16_t(0xDC00 + (word & 0x3FF)); if (!match_system(big_endian)) { high_surrogate = uint16_t(high_surrogate >> 8 | high_surrogate << 8); low_surrogate = uint16_t(low_surrogate << 8 | low_surrogate >> 8); } *utf16_output++ = char16_t(high_surrogate); *utf16_output++ = char16_t(low_surrogate); } } buf += k; } } return std::make_pair(result(error_code::SUCCESS, buf - start), reinterpret_cast(utf16_output)); } /* end file src/lasx/lasx_convert_utf32_to_utf16.cpp */ #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 /* begin file src/lasx/lasx_base64.cpp */ /** * References and further reading: * * Wojciech Muła, Daniel Lemire, Base64 encoding and decoding at almost the * speed of a memory copy, Software: Practice and Experience 50 (2), 2020. * https://arxiv.org/abs/1910.05109 * * Wojciech Muła, Daniel Lemire, Faster Base64 Encoding and Decoding using AVX2 * Instructions, ACM Transactions on the Web 12 (3), 2018. * https://arxiv.org/abs/1704.00605 * * Simon Josefsson. 2006. The Base16, Base32, and Base64 Data Encodings. * https://tools.ietf.org/html/rfc4648. (2006). Internet Engineering Task Force, * Request for Comments: 4648. * * Alfred Klomp. 2014a. Fast Base64 encoding/decoding with SSE vectorization. * http://www.alfredklomp.com/programming/sse-base64/. (2014). * * Alfred Klomp. 2014b. Fast Base64 stream encoder/decoder in C99, with SIMD * acceleration. https://github.com/aklomp/base64. (2014). * * Hanson Char. 2014. A Fast and Correct Base 64 Codec. (2014). * https://aws.amazon.com/blogs/developer/a-fast-and-correct-base-64-codec/ * * Nick Kopp. 2013. Base64 Encoding on a GPU. * https://www.codeproject.com/Articles/276993/Base-Encoding-on-a-GPU. (2013). */ template size_t encode_base64(char *dst, const char *src, size_t srclen, base64_options options) { // credit: Wojciech Muła // SSE (lookup: pshufb improved unrolled) const uint8_t *input = (const uint8_t *)src; static const char *lookup_tbl = isbase64url ? "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_" : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; uint8_t *out = (uint8_t *)dst; v32u8 shuf; __m256i v_fc0fc00, v_3f03f0, shift_r, shift_l, base64_tbl0, base64_tbl1, base64_tbl2, base64_tbl3; if (srclen >= 28) { shuf = v32u8{1, 0, 2, 1, 4, 3, 5, 4, 7, 6, 8, 7, 10, 9, 11, 10, 1, 0, 2, 1, 4, 3, 5, 4, 7, 6, 8, 7, 10, 9, 11, 10}; v_fc0fc00 = __lasx_xvreplgr2vr_w(uint32_t(0x0fc0fc00)); v_3f03f0 = __lasx_xvreplgr2vr_w(uint32_t(0x003f03f0)); shift_r = __lasx_xvreplgr2vr_w(uint32_t(0x0006000a)); shift_l = __lasx_xvreplgr2vr_w(uint32_t(0x00080004)); base64_tbl0 = ____m256i(__lsx_vld(lookup_tbl, 0)); base64_tbl1 = ____m256i(__lsx_vld(lookup_tbl, 16)); base64_tbl2 = ____m256i(__lsx_vld(lookup_tbl, 32)); base64_tbl3 = ____m256i(__lsx_vld(lookup_tbl, 48)); } size_t i = 0; for (; i + 100 <= srclen; i += 96) { __m128i in0_lo = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 0); __m128i in0_hi = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 1); __m128i in1_lo = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 2); __m128i in1_hi = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 3); __m128i in2_lo = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 4); __m128i in2_hi = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 5); __m128i in3_lo = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 6); __m128i in3_hi = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 7); __m256i in0 = lasx_set_q(in0_hi, in0_lo); __m256i in1 = lasx_set_q(in1_hi, in1_lo); __m256i in2 = lasx_set_q(in2_hi, in2_lo); __m256i in3 = lasx_set_q(in3_hi, in3_lo); in0 = __lasx_xvshuf_b(in0, in0, (__m256i)shuf); in1 = __lasx_xvshuf_b(in1, in1, (__m256i)shuf); in2 = __lasx_xvshuf_b(in2, in2, (__m256i)shuf); in3 = __lasx_xvshuf_b(in3, in3, (__m256i)shuf); __m256i t0_0 = __lasx_xvand_v(in0, v_fc0fc00); __m256i t0_1 = __lasx_xvand_v(in1, v_fc0fc00); __m256i t0_2 = __lasx_xvand_v(in2, v_fc0fc00); __m256i t0_3 = __lasx_xvand_v(in3, v_fc0fc00); __m256i t1_0 = __lasx_xvsrl_h(t0_0, shift_r); __m256i t1_1 = __lasx_xvsrl_h(t0_1, shift_r); __m256i t1_2 = __lasx_xvsrl_h(t0_2, shift_r); __m256i t1_3 = __lasx_xvsrl_h(t0_3, shift_r); __m256i t2_0 = __lasx_xvand_v(in0, v_3f03f0); __m256i t2_1 = __lasx_xvand_v(in1, v_3f03f0); __m256i t2_2 = __lasx_xvand_v(in2, v_3f03f0); __m256i t2_3 = __lasx_xvand_v(in3, v_3f03f0); __m256i t3_0 = __lasx_xvsll_h(t2_0, shift_l); __m256i t3_1 = __lasx_xvsll_h(t2_1, shift_l); __m256i t3_2 = __lasx_xvsll_h(t2_2, shift_l); __m256i t3_3 = __lasx_xvsll_h(t2_3, shift_l); __m256i input0 = __lasx_xvor_v(t1_0, t3_0); __m256i input0_shuf0 = __lasx_xvshuf_b(base64_tbl1, base64_tbl0, input0); __m256i input0_shuf1 = __lasx_xvshuf_b( base64_tbl3, base64_tbl2, __lasx_xvsub_b(input0, __lasx_xvldi(32))); __m256i input0_mask = __lasx_xvslei_bu(input0, 31); __m256i input0_result = __lasx_xvbitsel_v(input0_shuf1, input0_shuf0, input0_mask); __lasx_xvst(input0_result, reinterpret_cast<__m256i *>(out), 0); out += 32; __m256i input1 = __lasx_xvor_v(t1_1, t3_1); __m256i input1_shuf0 = __lasx_xvshuf_b(base64_tbl1, base64_tbl0, input1); __m256i input1_shuf1 = __lasx_xvshuf_b( base64_tbl3, base64_tbl2, __lasx_xvsub_b(input1, __lasx_xvldi(32))); __m256i input1_mask = __lasx_xvslei_bu(input1, 31); __m256i input1_result = __lasx_xvbitsel_v(input1_shuf1, input1_shuf0, input1_mask); __lasx_xvst(input1_result, reinterpret_cast<__m256i *>(out), 0); out += 32; __m256i input2 = __lasx_xvor_v(t1_2, t3_2); __m256i input2_shuf0 = __lasx_xvshuf_b(base64_tbl1, base64_tbl0, input2); __m256i input2_shuf1 = __lasx_xvshuf_b( base64_tbl3, base64_tbl2, __lasx_xvsub_b(input2, __lasx_xvldi(32))); __m256i input2_mask = __lasx_xvslei_bu(input2, 31); __m256i input2_result = __lasx_xvbitsel_v(input2_shuf1, input2_shuf0, input2_mask); __lasx_xvst(input2_result, reinterpret_cast<__m256i *>(out), 0); out += 32; __m256i input3 = __lasx_xvor_v(t1_3, t3_3); __m256i input3_shuf0 = __lasx_xvshuf_b(base64_tbl1, base64_tbl0, input3); __m256i input3_shuf1 = __lasx_xvshuf_b( base64_tbl3, base64_tbl2, __lasx_xvsub_b(input3, __lasx_xvldi(32))); __m256i input3_mask = __lasx_xvslei_bu(input3, 31); __m256i input3_result = __lasx_xvbitsel_v(input3_shuf1, input3_shuf0, input3_mask); __lasx_xvst(input3_result, reinterpret_cast<__m256i *>(out), 0); out += 32; } for (; i + 28 <= srclen; i += 24) { __m128i in_lo = __lsx_vld(reinterpret_cast(input + i), 0); __m128i in_hi = __lsx_vld(reinterpret_cast(input + i), 4 * 3 * 1); __m256i in = lasx_set_q(in_hi, in_lo); // bytes from groups A, B and C are needed in separate 32-bit lanes // in = [DDDD|CCCC|BBBB|AAAA] // // an input triplet has layout // [????????|ccdddddd|bbbbcccc|aaaaaabb] // byte 3 byte 2 byte 1 byte 0 -- byte 3 comes from the next // triplet // // shuffling changes the order of bytes: 1, 0, 2, 1 // [bbbbcccc|ccdddddd|aaaaaabb|bbbbcccc] // ^^^^ ^^^^^^^^ ^^^^^^^^ ^^^^ // processed bits in = __lasx_xvshuf_b(in, in, (__m256i)shuf); // unpacking // t0 = [0000cccc|cc000000|aaaaaa00|00000000] __m256i t0 = __lasx_xvand_v(in, v_fc0fc00); // t1 = [00000000|00cccccc|00000000|00aaaaaa] // ((c >> 6), (a >> 10)) __m256i t1 = __lasx_xvsrl_h(t0, shift_r); // t2 = [00000000|00dddddd|000000bb|bbbb0000] __m256i t2 = __lasx_xvand_v(in, v_3f03f0); // t3 = [00dddddd|00000000|00bbbbbb|00000000] // ((d << 8), (b << 4)) __m256i t3 = __lasx_xvsll_h(t2, shift_l); // res = [00dddddd|00cccccc|00bbbbbb|00aaaaaa] = t1 | t3 __m256i indices = __lasx_xvor_v(t1, t3); __m256i indices_shuf0 = __lasx_xvshuf_b(base64_tbl1, base64_tbl0, indices); __m256i indices_shuf1 = __lasx_xvshuf_b( base64_tbl3, base64_tbl2, __lasx_xvsub_b(indices, __lasx_xvldi(32))); __m256i indices_mask = __lasx_xvslei_bu(indices, 31); __m256i indices_result = __lasx_xvbitsel_v(indices_shuf1, indices_shuf0, indices_mask); __lasx_xvst(indices_result, reinterpret_cast<__m256i *>(out), 0); out += 32; } return i / 3 * 4 + scalar::base64::tail_encode_base64((char *)out, src + i, srclen - i, options); } static inline void compress(__m128i data, uint16_t mask, char *output) { if (mask == 0) { __lsx_vst(data, reinterpret_cast<__m128i *>(output), 0); return; } // this particular implementation was inspired by work done by @animetosho // we do it in two steps, first 8 bytes and then second 8 bytes uint8_t mask1 = uint8_t(mask); // least significant 8 bits uint8_t mask2 = uint8_t(mask >> 8); // most significant 8 bits // next line just loads the 64-bit values thintable_epi8[mask1] and // thintable_epi8[mask2] into a 128-bit register, using only // two instructions on most compilers. v2u64 shufmask = {tables::base64::thintable_epi8[mask1], tables::base64::thintable_epi8[mask2]}; // we increment by 0x08 the second half of the mask const v4u32 hi = {0, 0, 0x08080808, 0x08080808}; __m128i shufmask1 = __lsx_vadd_b((__m128i)shufmask, (__m128i)hi); // this is the version "nearly pruned" __m128i pruned = __lsx_vshuf_b(data, data, shufmask1); // we still need to put the two halves together. // we compute the popcount of the first half: int pop1 = tables::base64::BitsSetTable256mul2[mask1]; // then load the corresponding mask, what it does is to write // only the first pop1 bytes from the first 8 bytes, and then // it fills in with the bytes from the second 8 bytes + some filling // at the end. __m128i compactmask = __lsx_vld(reinterpret_cast( tables::base64::pshufb_combine_table + pop1 * 8), 0); __m128i answer = __lsx_vshuf_b(pruned, pruned, compactmask); __lsx_vst(answer, reinterpret_cast<__m128i *>(output), 0); } struct block64 { __m256i chunks[2]; }; template static inline uint32_t to_base64_mask(__m256i *src, bool *error) { __m256i ascii_space_tbl = ____m256i((__m128i)v16u8{0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0xa, 0x0, 0xc, 0xd, 0x0, 0x0}); // credit: aqrit __m256i delta_asso; if (default_or_url) { delta_asso = ____m256i((__m128i)v16u8{0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x0, 0x16}); } else { delta_asso = ____m256i((__m128i)v16u8{0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0xF, 0x0, 0xF}); } __m256i delta_values; if (default_or_url) { delta_values = ____m256i( (__m128i)v16i8{int8_t(0xBF), int8_t(0xE0), int8_t(0xB9), int8_t(0x13), int8_t(0x04), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9), int8_t(0x00), int8_t(0xFF), int8_t(0x11), int8_t(0xFF), int8_t(0xBF), int8_t(0x10), int8_t(0xB9)}); } else if (base64_url) { delta_values = ____m256i( (__m128i)v16i8{int8_t(0x00), int8_t(0x00), int8_t(0x00), int8_t(0x13), int8_t(0x04), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9), int8_t(0x00), int8_t(0x11), int8_t(0xC3), int8_t(0xBF), int8_t(0xE0), int8_t(0xB9), int8_t(0xB9)}); } else { delta_values = ____m256i( (__m128i)v16i8{int8_t(0x00), int8_t(0x00), int8_t(0x00), int8_t(0x13), int8_t(0x04), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9), int8_t(0x00), int8_t(0x10), int8_t(0xC3), int8_t(0xBF), int8_t(0xBF), int8_t(0xB9), int8_t(0xB9)}); } __m256i check_asso; if (default_or_url) { check_asso = ____m256i((__m128i)v16u8{0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0E, 0x0B, 0x06}); } else if (base64_url) { check_asso = ____m256i((__m128i)v16u8{0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x06, 0x0B, 0x12}); } else { check_asso = ____m256i((__m128i)v16u8{0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x0B, 0x0B, 0x0B, 0x0F}); } __m256i check_values; if (default_or_url) { check_values = ____m256i( (__m128i)v16i8{int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0xCF), int8_t(0xBF), int8_t(0xD5), int8_t(0xA6), int8_t(0xB5), int8_t(0xA1), int8_t(0x00), int8_t(0x80), int8_t(0x00), int8_t(0x80), int8_t(0x00), int8_t(0x80)}); } else if (base64_url) { check_values = ____m256i( (__m128i)v16i8{int8_t(0x0), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0xCF), int8_t(0xBF), int8_t(0xD3), int8_t(0xA6), int8_t(0xB5), int8_t(0x86), int8_t(0xD0), int8_t(0x80), int8_t(0xB0), int8_t(0x80), int8_t(0x0), int8_t(0x0)}); } else { check_values = ____m256i( (__m128i)v16i8{int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0x80), int8_t(0xCF), int8_t(0xBF), int8_t(0xD5), int8_t(0xA6), int8_t(0xB5), int8_t(0x86), int8_t(0xD1), int8_t(0x80), int8_t(0xB1), int8_t(0x80), int8_t(0x91), int8_t(0x80)}); } __m256i shifted = __lasx_xvsrli_b(*src, 3); __m256i asso_index = __lasx_xvand_v(*src, __lasx_xvldi(0xF)); __m256i delta_hash = __lasx_xvavgr_bu( __lasx_xvshuf_b(delta_asso, delta_asso, asso_index), shifted); __m256i check_hash = __lasx_xvavgr_bu( __lasx_xvshuf_b(check_asso, check_asso, asso_index), shifted); __m256i out = __lasx_xvsadd_b( __lasx_xvshuf_b(delta_values, delta_values, delta_hash), *src); __m256i chk = __lasx_xvsadd_b( __lasx_xvshuf_b(check_values, check_values, check_hash), *src); __m256i chk_ltz = __lasx_xvmskltz_b(chk); unsigned int mask = __lasx_xvpickve2gr_wu(chk_ltz, 0); mask = mask | (__lsx_vpickve2gr_hu(lasx_extracti128_hi(chk_ltz), 0) << 16); if (mask) { __m256i ascii_space = __lasx_xvseq_b( __lasx_xvshuf_b(ascii_space_tbl, ascii_space_tbl, asso_index), *src); __m256i ascii_space_ltz = __lasx_xvmskltz_b(ascii_space); unsigned int ascii_space_mask = __lasx_xvpickve2gr_wu(ascii_space_ltz, 0); ascii_space_mask = ascii_space_mask | (__lsx_vpickve2gr_hu(lasx_extracti128_hi(ascii_space_ltz), 0) << 16); *error |= (mask != ascii_space_mask); } *src = out; return (uint32_t)mask; } template static inline uint64_t to_base64_mask(block64 *b, bool *error) { *error = 0; uint64_t m0 = to_base64_mask(&b->chunks[0], error); uint64_t m1 = to_base64_mask(&b->chunks[1], error); return m0 | (m1 << 32); } static inline void copy_block(block64 *b, char *output) { __lasx_xvst(b->chunks[0], reinterpret_cast<__m256i *>(output), 0); __lasx_xvst(b->chunks[1], reinterpret_cast<__m256i *>(output), 32); } static inline uint64_t compress_block(block64 *b, uint64_t mask, char *output) { uint64_t nmask = ~mask; uint64_t count = __lsx_vpickve2gr_d(__lsx_vpcnt_h(__lsx_vreplgr2vr_d(nmask)), 0); uint16_t *count_ptr = (uint16_t *)&count; compress(lasx_extracti128_lo(b->chunks[0]), uint16_t(mask), output); compress(lasx_extracti128_hi(b->chunks[0]), uint16_t(mask >> 16), output + count_ptr[0]); compress(lasx_extracti128_lo(b->chunks[1]), uint16_t(mask >> 32), output + count_ptr[0] + count_ptr[1]); compress(lasx_extracti128_hi(b->chunks[1]), uint16_t(mask >> 48), output + count_ptr[0] + count_ptr[1] + count_ptr[2]); return count_ones(nmask); } // The caller of this function is responsible to ensure that there are 64 bytes // available from reading at src. The data is read into a block64 structure. static inline void load_block(block64 *b, const char *src) { b->chunks[0] = __lasx_xvld(reinterpret_cast(src), 0); b->chunks[1] = __lasx_xvld(reinterpret_cast(src), 32); } // The caller of this function is responsible to ensure that there are 128 bytes // available from reading at src. The data is read into a block64 structure. static inline void load_block(block64 *b, const char16_t *src) { __m256i m1 = __lasx_xvld(reinterpret_cast(src), 0); __m256i m2 = __lasx_xvld(reinterpret_cast(src), 32); __m256i m3 = __lasx_xvld(reinterpret_cast(src), 64); __m256i m4 = __lasx_xvld(reinterpret_cast(src), 96); b->chunks[0] = __lasx_xvpermi_d(__lasx_xvssrlni_bu_h(m2, m1, 0), 0b11011000); b->chunks[1] = __lasx_xvpermi_d(__lasx_xvssrlni_bu_h(m4, m3, 0), 0b11011000); } static inline void base64_decode(char *out, __m256i str) { __m256i t0 = __lasx_xvor_v( __lasx_xvslli_w(str, 26), __lasx_xvslli_w(__lasx_xvand_v(str, lasx_splat_u32(0x0000ff00)), 12)); __m256i t1 = __lasx_xvsrli_w(__lasx_xvand_v(str, lasx_splat_u32(0x003f0000)), 2); __m256i t2 = __lasx_xvor_v(t0, t1); __m256i t3 = __lasx_xvor_v(t2, __lasx_xvsrli_w(str, 16)); __m256i pack_shuffle = ____m256i( (__m128i)v16u8{3, 2, 1, 7, 6, 5, 11, 10, 9, 15, 14, 13, 0, 0, 0, 0}); t3 = __lasx_xvshuf_b(t3, t3, (__m256i)pack_shuffle); // Store the output: __lsx_vst(lasx_extracti128_lo(t3), out, 0); __lsx_vst(lasx_extracti128_hi(t3), out, 12); } // decode 64 bytes and output 48 bytes static inline void base64_decode_block(char *out, const char *src) { base64_decode(out, __lasx_xvld(reinterpret_cast(src), 0)); base64_decode(out + 24, __lasx_xvld(reinterpret_cast(src), 32)); } static inline void base64_decode_block_safe(char *out, const char *src) { base64_decode(out, __lasx_xvld(reinterpret_cast(src), 0)); alignas(32) char buffer[32]; base64_decode(buffer, __lasx_xvld(reinterpret_cast(src), 32)); std::memcpy(out + 24, buffer, 24); } static inline void base64_decode_block(char *out, block64 *b) { base64_decode(out, b->chunks[0]); base64_decode(out + 24, b->chunks[1]); } static inline void base64_decode_block_safe(char *out, block64 *b) { base64_decode(out, b->chunks[0]); alignas(32) char buffer[32]; base64_decode(buffer, b->chunks[1]); std::memcpy(out + 24, buffer, 24); } template full_result compress_decode_base64(char *dst, const chartype *src, size_t srclen, base64_options options, last_chunk_handling_options last_chunk_options) { const uint8_t *to_base64 = default_or_url ? tables::base64::to_base64_default_or_url_value : (base64_url ? tables::base64::to_base64_url_value : tables::base64::to_base64_value); auto ri = simdutf::scalar::base64::find_end(src, srclen, options); size_t equallocation = ri.equallocation; size_t equalsigns = ri.equalsigns; srclen = ri.srclen; size_t full_input_length = ri.full_input_length; if (srclen == 0) { if (!ignore_garbage && equalsigns > 0) { return {INVALID_BASE64_CHARACTER, equallocation, 0}; } return {SUCCESS, full_input_length, 0}; } char *end_of_safe_64byte_zone = (srclen + 3) / 4 * 3 >= 63 ? dst + (srclen + 3) / 4 * 3 - 63 : dst; const chartype *const srcinit = src; const char *const dstinit = dst; const chartype *const srcend = src + srclen; constexpr size_t block_size = 6; static_assert(block_size >= 2, "block_size must be at least two"); char buffer[block_size * 64]; char *bufferptr = buffer; if (srclen >= 64) { const chartype *const srcend64 = src + srclen - 64; while (src <= srcend64) { block64 b; load_block(&b, src); src += 64; bool error = false; uint64_t badcharmask = to_base64_mask(&b, &error); if (error && !ignore_garbage) { src -= 64; while (src < srcend && scalar::base64::is_eight_byte(*src) && to_base64[uint8_t(*src)] <= 64) { src++; } return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit)}; } if (badcharmask != 0) { // optimization opportunity: check for simple masks like those made of // continuous 1s followed by continuous 0s. And masks containing a // single bad character. bufferptr += compress_block(&b, badcharmask, bufferptr); } else if (bufferptr != buffer) { copy_block(&b, bufferptr); bufferptr += 64; } else { if (dst >= end_of_safe_64byte_zone) { base64_decode_block_safe(dst, &b); } else { base64_decode_block(dst, &b); } dst += 48; } if (bufferptr >= (block_size - 1) * 64 + buffer) { for (size_t i = 0; i < (block_size - 2); i++) { base64_decode_block(dst, buffer + i * 64); dst += 48; } if (dst >= end_of_safe_64byte_zone) { base64_decode_block_safe(dst, buffer + (block_size - 2) * 64); } else { base64_decode_block(dst, buffer + (block_size - 2) * 64); } dst += 48; std::memcpy(buffer, buffer + (block_size - 1) * 64, 64); // 64 might be too much bufferptr -= (block_size - 1) * 64; } } } char *buffer_start = buffer; // Optimization note: if this is almost full, then it is worth our // time, otherwise, we should just decode directly. int last_block = (int)((bufferptr - buffer_start) % 64); if (last_block != 0 && srcend - src + last_block >= 64) { while ((bufferptr - buffer_start) % 64 != 0 && src < srcend) { uint8_t val = to_base64[uint8_t(*src)]; *bufferptr = char(val); if ((!scalar::base64::is_eight_byte(*src) || val > 64) && !ignore_garbage) { return {error_code::INVALID_BASE64_CHARACTER, size_t(src - srcinit), size_t(dst - dstinit)}; } bufferptr += (val <= 63); src++; } } for (; buffer_start + 64 <= bufferptr; buffer_start += 64) { if (dst >= end_of_safe_64byte_zone) { base64_decode_block_safe(dst, buffer_start); } else { base64_decode_block(dst, buffer_start); } dst += 48; } if ((bufferptr - buffer_start) % 64 != 0) { while (buffer_start + 4 < bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; triple = scalar::u32_swap_bytes(triple); std::memcpy(dst, &triple, 4); dst += 3; buffer_start += 4; } if (buffer_start + 4 <= bufferptr) { uint32_t triple = ((uint32_t(uint8_t(buffer_start[0])) << 3 * 6) + (uint32_t(uint8_t(buffer_start[1])) << 2 * 6) + (uint32_t(uint8_t(buffer_start[2])) << 1 * 6) + (uint32_t(uint8_t(buffer_start[3])) << 0 * 6)) << 8; triple = scalar::u32_swap_bytes(triple); std::memcpy(dst, &triple, 3); dst += 3; buffer_start += 4; } // we may have 1, 2 or 3 bytes left and we need to decode them so let us // backtrack int leftover = int(bufferptr - buffer_start); while (leftover > 0) { if (!ignore_garbage) { while (to_base64[uint8_t(*(src - 1))] == 64) { src--; } } else { while (to_base64[uint8_t(*(src - 1))] >= 64) { src--; } } src--; leftover--; } } if (src < srcend + equalsigns) { full_result r = scalar::base64::base64_tail_decode( dst, src, srcend - src, equalsigns, options, last_chunk_options); r = scalar::base64::patch_tail_result( r, size_t(src - srcinit), size_t(dst - dstinit), equallocation, full_input_length, last_chunk_options); // When is_partial(last_chunk_options) is true, we must either end with // the end of the stream (beyond whitespace) or right after a non-ignorable // character or at the very beginning of the stream. // See https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 if (is_partial(last_chunk_options) && r.error == error_code::SUCCESS && r.input_count < full_input_length) { // First check if we can extend the input to the end of the stream while (r.input_count < full_input_length && base64_ignorable(*(srcinit + r.input_count), options)) { r.input_count++; } // If we are still not at the end of the stream, then we must backtrack // to the last non-ignorable character. if (r.input_count < full_input_length) { while (r.input_count > 0 && base64_ignorable(*(srcinit + r.input_count - 1), options)) { r.input_count--; } } } return r; } if (equalsigns > 0 && !ignore_garbage) { if ((size_t(dst - dstinit) % 3 == 0) || ((size_t(dst - dstinit) % 3) + 1 + equalsigns != 4)) { return {INVALID_BASE64_CHARACTER, equallocation, size_t(dst - dstinit)}; } } return {SUCCESS, srclen, size_t(dst - dstinit)}; } /* end file src/lasx/lasx_base64.cpp */ /* begin file src/lasx/lasx_find.cpp */ simdutf_really_inline const char *util_find(const char *start, const char *end, char character) noexcept { if (start >= end) return end; const int step = 32; __m256i char_vec = __lasx_xvreplgr2vr_b(static_cast(character)); while (end - start >= step) { __m256i data = __lasx_xvld(reinterpret_cast(start), 0); __m256i cmp = __lasx_xvseq_b(data, char_vec); if (__lasx_xbnz_v(cmp)) { __m256i res = __lasx_xvmsknz_b(cmp); uint32_t mask0 = __lasx_xvpickve2gr_wu(res, 0); uint32_t mask1 = __lasx_xvpickve2gr_wu(res, 4); uint32_t mask = (mask0 | (mask1 << 16)); return start + trailing_zeroes(mask); } start += step; } // Handle remaining bytes with scalar loop for (; start < end; ++start) { if (*start == character) { return start; } } return end; } simdutf_really_inline const char16_t *util_find(const char16_t *start, const char16_t *end, char16_t character) noexcept { if (start >= end) return end; const int step = 16; __m256i char_vec = __lasx_xvreplgr2vr_h(static_cast(character)); while (end - start >= step) { __m256i data = __lasx_xvld(reinterpret_cast(start), 0); __m256i cmp = __lasx_xvseq_h(data, char_vec); if (__lasx_xbnz_v(cmp)) { __m256i res = __lasx_xvmsknz_b(cmp); uint32_t mask0 = __lasx_xvpickve2gr_wu(res, 0); uint32_t mask1 = __lasx_xvpickve2gr_wu(res, 4); uint32_t mask = (mask0 | (mask1 << 16)); return start + trailing_zeroes(mask) / 2; } start += step; } // Handle remaining elements with scalar loop for (; start < end; ++start) { if (*start == character) { return start; } } return end; } /* end file src/lasx/lasx_find.cpp */ #endif // SIMDUTF_FEATURE_BASE64 } // namespace } // namespace lasx } // namespace simdutf /* begin file src/generic/buf_block_reader.h */ namespace simdutf { namespace lasx { namespace { // Walks through a buffer in block-sized increments, loading the last part with // spaces template struct buf_block_reader { public: simdutf_really_inline buf_block_reader(const uint8_t *_buf, size_t _len); simdutf_really_inline size_t block_index(); simdutf_really_inline bool has_full_block() const; simdutf_really_inline const uint8_t *full_block() const; /** * Get the last block, padded with spaces. * * There will always be a last block, with at least 1 byte, unless len == 0 * (in which case this function fills the buffer with spaces and returns 0. In * particular, if len == STEP_SIZE there will be 0 full_blocks and 1 remainder * block with STEP_SIZE bytes and no spaces for padding. * * @return the number of effective characters in the last block. */ simdutf_really_inline size_t get_remainder(uint8_t *dst) const; simdutf_really_inline void advance(); private: const uint8_t *buf; const size_t len; const size_t lenminusstep; size_t idx; }; // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text_64(const uint8_t *text) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); for (size_t i = 0; i < sizeof(simd8x64); i++) { buf[i] = int8_t(text[i]) < ' ' ? '_' : int8_t(text[i]); } buf[sizeof(simd8x64)] = '\0'; return buf; } // Routines to print masks and text for debugging bitmask operations simdutf_unused static char *format_input_text(const simd8x64 &in) { static char *buf = reinterpret_cast(malloc(sizeof(simd8x64) + 1)); in.store(reinterpret_cast(buf)); for (size_t i = 0; i < sizeof(simd8x64); i++) { if (buf[i] < ' ') { buf[i] = '_'; } } buf[sizeof(simd8x64)] = '\0'; return buf; } simdutf_unused static char *format_mask(uint64_t mask) { static char *buf = reinterpret_cast(malloc(64 + 1)); for (size_t i = 0; i < 64; i++) { buf[i] = (mask & (size_t(1) << i)) ? 'X' : ' '; } buf[64] = '\0'; return buf; } template simdutf_really_inline buf_block_reader::buf_block_reader(const uint8_t *_buf, size_t _len) : buf{_buf}, len{_len}, lenminusstep{len < STEP_SIZE ? 0 : len - STEP_SIZE}, idx{0} {} template simdutf_really_inline size_t buf_block_reader::block_index() { return idx; } template simdutf_really_inline bool buf_block_reader::has_full_block() const { return idx < lenminusstep; } template simdutf_really_inline const uint8_t * buf_block_reader::full_block() const { return &buf[idx]; } template simdutf_really_inline size_t buf_block_reader::get_remainder(uint8_t *dst) const { if (len == idx) { return 0; } // memcpy(dst, null, 0) will trigger an error with some sanitizers std::memset(dst, 0x20, STEP_SIZE); // std::memset STEP_SIZE because it is more efficient // to write out 8 or 16 bytes at once. std::memcpy(dst, buf + idx, len - idx); return len - idx; } template simdutf_really_inline void buf_block_reader::advance() { idx += STEP_SIZE; } } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/buf_block_reader.h */ #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ namespace simdutf { namespace lasx { namespace { namespace utf8_validation { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } // // Return nonzero if there are incomplete multibyte characters at the end of the // block: e.g. if there is a 4-byte character, but it is 3 bytes from the end. // simdutf_really_inline simd8 is_incomplete(const simd8 input) { // If the previous input's last 3 bytes match this, they're too short (they // ended at EOF): // ... 1111____ 111_____ 11______ static const uint8_t max_array[32] = {255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 0b11110000u - 1, 0b11100000u - 1, 0b11000000u - 1}; const simd8 max_value( &max_array[sizeof(max_array) - sizeof(simd8)]); return input.gt_bits(max_value); } struct utf8_checker { // If this is nonzero, there has been a UTF-8 error. simd8 error; // The last input we received simd8 prev_input_block; // Whether the last input we received was incomplete (used for ASCII fast // path) simd8 prev_incomplete; // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } // The only problem that can happen at EOF is that a multibyte character is // too short or a byte value too large in the last bytes: check_special_cases // only checks for bytes too large in the first of two bytes. simdutf_really_inline void check_eof() { // If the previous block had incomplete UTF-8 characters at the end, an // ASCII block can't possibly finish them. this->error |= this->prev_incomplete; } simdutf_really_inline void check_next_input(const simd8x64 &input) { if (simdutf_likely(is_ascii(input))) { this->error |= this->prev_incomplete; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. static_assert((simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], this->prev_input_block); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } this->prev_incomplete = is_incomplete(input.chunks[simd8x64::NUM_CHUNKS - 1]); this->prev_input_block = input.chunks[simd8x64::NUM_CHUNKS - 1]; } } // do not forget to call check_eof! simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_validation using utf8_validation::utf8_checker; } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf8_validation/utf8_lookup4_algorithm.h */ /* begin file src/generic/utf8_validation/utf8_validator.h */ namespace simdutf { namespace lasx { namespace { namespace utf8_validation { /** * Validates that the string is actual UTF-8. */ template bool generic_validate_utf8(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); return !c.errors(); } bool generic_validate_utf8(const char *input, size_t length) { return generic_validate_utf8( reinterpret_cast(input), length); } /** * Validates that the string is actual UTF-8 and stops on errors. */ template result generic_validate_utf8_with_errors(const uint8_t *input, size_t length) { checker c{}; buf_block_reader<64> reader(input, length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); c.check_next_input(in); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input + count), length - count); res.count += count; return res; } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); c.check_next_input(in); reader.advance(); c.check_eof(); if (c.errors()) { if (count != 0) { count--; } // Sometimes the error is only detected in the next chunk result res = scalar::utf8::rewind_and_validate_with_errors( reinterpret_cast(input), reinterpret_cast(input) + count, length - count); res.count += count; return res; } else { return result(error_code::SUCCESS, length); } } result generic_validate_utf8_with_errors(const char *input, size_t length) { return generic_validate_utf8_with_errors( reinterpret_cast(input), length); } } // namespace utf8_validation } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf8_validation/utf8_validator.h */ #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_ASCII /* begin file src/generic/ascii_validation.h */ namespace simdutf { namespace lasx { namespace { namespace ascii_validation { bool generic_validate_ascii(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); uint8_t blocks[64]{}; simd::simd8x64 running_or(blocks); while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); running_or |= in; reader.advance(); } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); running_or |= in; return running_or.is_ascii(); } result generic_validate_ascii_with_errors(const char *input, size_t length) { buf_block_reader<64> reader(reinterpret_cast(input), length); size_t count{0}; while (reader.has_full_block()) { simd::simd8x64 in(reader.full_block()); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } reader.advance(); count += 64; } uint8_t block[64]{}; reader.get_remainder(block); simd::simd8x64 in(block); if (!in.is_ascii()) { result res = scalar::ascii::validate_with_errors( reinterpret_cast(input + count), length - count); return result(res.error, count + res.count); } else { return result(error_code::SUCCESS, length); } } } // namespace ascii_validation } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/ascii_validation.h */ #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 // transcoding from UTF-8 to Latin 1 /* begin file src/generic/utf8_to_latin1/utf8_to_latin1.h */ namespace simdutf { namespace lasx { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // For UTF-8 to Latin 1, we can allow any ASCII character, and any // continuation byte, but the non-ASCII leading bytes must be 0b11000011 or // 0b11000010 and nothing else. // // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ constexpr const uint8_t FORBIDDEN = 0xff; const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ FORBIDDEN, // 1110____ ________ FORBIDDEN, // 1111____ ________ FORBIDDEN); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ FORBIDDEN, // ____0101 ________ FORBIDDEN, // ____011_ ________ FORBIDDEN, FORBIDDEN, // ____1___ ________ FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, FORBIDDEN, // ____1101 ________ FORBIDDEN, FORBIDDEN, FORBIDDEN); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); this->error |= check_special_cases(input, prev1); } simdutf_really_inline size_t convert(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 16; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert(in + pos, size - pos, latin1_output); if (howmany == 0) { return 0; } latin1_output += howmany; } return latin1_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } uint64_t utf8_continuation_mask = input.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_latin1::rewind_and_convert_with_errors( pos, in + pos, size - pos, latin1_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written latin1_output += res.count; } } return result(error_code::SUCCESS, latin1_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_latin1 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf8_to_latin1/utf8_to_latin1.h */ /* begin file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ namespace simdutf { namespace lasx { namespace { namespace utf8_to_latin1 { using namespace simd; simdutf_really_inline size_t convert_valid(const char *in, size_t size, char *latin1_output) { size_t pos = 0; char *start{latin1_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_latin1. If you skip the last // 16 bytes, and if the data is valid, then it is entirely safe because 16 // UTF-8 bytes generate much more than 8 bytes. However, you cannot generally // assume that you have valid UTF-8 input, so we are going to go back from the // end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); // twos complement of -65 is 1011 1111 ... } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store((int8_t *)latin1_output); latin1_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, it // is not good enough. uint64_t utf8_continuation_mask = input.lt(-65 + 1); // -64 is 1100 0000 in twos complement. Note: in // this case, we also have ASCII to account for. uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_latin1( in + pos, utf8_end_of_code_point_mask, latin1_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (pos < size) { size_t howmany = scalar::utf8_to_latin1::convert_valid(in + pos, size - pos, latin1_output); latin1_output += howmany; } return latin1_output - start; } } // namespace utf8_to_latin1 } // namespace } // namespace lasx } // namespace simdutf // namespace simdutf /* end file src/generic/utf8_to_latin1/valid_utf8_to_latin1.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 // transcoding from UTF-8 to UTF-16 /* begin file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ namespace simdutf { namespace lasx { namespace { namespace utf8_to_utf16 { using namespace simd; template simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char16_t *utf16_output) noexcept { // The implementation is not specific to haswell and should be moved to the // generic directory. size_t pos = 0; char16_t *start{utf16_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { // this loop could be unrolled further. For example, we could process the // mask far more than 64 bytes. simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // Slow path. We hope that the compiler will recognize that this is a slow // path. Anything that is not a continuation mask is a 'leading byte', // that is, the start of a new code point. uint64_t utf8_continuation_mask = in.lt(-65 + 1); // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_leading_mask = ~utf8_continuation_mask; // The *start* of code points is not so useful, rather, we want the *end* // of code points. uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times when using solely // the slow/regular path, and at least four times if there are fast paths. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. // // Thus we may allow convert_masked_utf8_to_utf16 to process // more bytes at a time under a fast-path mode where 16 bytes // are consumed at once (e.g., when encountering ASCII). size_t consumed = convert_masked_utf8_to_utf16( input + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } utf16_output += scalar::utf8_to_utf16::convert_valid( input + pos, size - pos, utf16_output); return utf16_output - start; } } // namespace utf8_to_utf16 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf8_to_utf16/valid_utf8_to_utf16.h */ /* begin file src/generic/utf8_to_utf16/utf8_to_utf16.h */ namespace simdutf { namespace lasx { namespace { namespace utf8_to_utf16 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } template simdutf_really_inline size_t convert(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf16::convert( in + pos, size - pos, utf16_output); if (howmany == 0) { return 0; } utf16_output += howmany; } return utf16_output - start; } template simdutf_really_inline result convert_with_errors(const char *in, size_t size, char16_t *utf16_output) { size_t pos = 0; char16_t *start{utf16_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf16. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the eight last // leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf16(utf16_output); utf16_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { // rewind_and_convert_with_errors will seek a potential error from // in+pos onward, with the ability to go back up to pos bytes, and // read size-pos bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf16( in + pos, utf8_end_of_code_point_mask, utf16_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); res.count += pos; return res; } if (pos < size) { // rewind_and_convert_with_errors will seek a potential error from in+pos // onward, with the ability to go back up to pos bytes, and read size-pos // bytes forward. result res = scalar::utf8_to_utf16::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf16_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf16_output += res.count; } } return result(error_code::SUCCESS, utf16_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf16 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf8_to_utf16/utf8_to_utf16.h */ /* begin file src/generic/utf8/utf16_length_from_utf8_bytemask.h */ namespace simdutf { namespace lasx { namespace { namespace utf8 { using namespace simd; simdutf_really_inline size_t utf16_length_from_utf8_bytemask(const char *in, size_t size) { using vector_i8 = simd8; using vector_u8 = simd8; using vector_u64 = simd64; constexpr size_t N = vector_i8::SIZE; constexpr size_t max_iterations = 255 / 2; auto counters = vector_u64::zero(); auto local = vector_u8::zero(); size_t iterations = 0; size_t pos = 0; size_t count = 0; for (; pos + N <= size; pos += N) { const auto input = vector_i8::load(reinterpret_cast(in + pos)); const auto continuation = input > int8_t(-65); const auto utf_4bytes = vector_u8(input.value) >= uint8_t(240); local -= vector_u8(continuation); local -= vector_u8(utf_4bytes); iterations += 1; if (iterations == max_iterations) { counters += sum_8bytes(local); local = vector_u8::zero(); iterations = 0; } } if (iterations > 0) { count += local.sum_bytes(); } count += counters.sum(); return count + scalar::utf8::utf16_length_from_utf8(in + pos, size - pos); } } // namespace utf8 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf8/utf16_length_from_utf8_bytemask.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 // transcoding from UTF-8 to UTF-32 /* begin file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ namespace simdutf { namespace lasx { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_warn_unused size_t convert_valid(const char *input, size_t size, char32_t *utf32_output) noexcept { size_t pos = 0; char32_t *start{utf32_output}; const size_t safety_margin = 16; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 in(reinterpret_cast(input + pos)); if (in.is_ascii()) { in.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // -65 is 0b10111111 in two-complement's, so largest possible continuation // byte uint64_t utf8_continuation_mask = in.lt(-65 + 1); uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; size_t max_starting_point = (pos + 64) - 12; while (pos < max_starting_point) { size_t consumed = convert_masked_utf8_to_utf32( input + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } } } utf32_output += scalar::utf8_to_utf32::convert_valid(input + pos, size - pos, utf32_output); return utf32_output - start; } } // namespace utf8_to_utf32 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf8_to_utf32/valid_utf8_to_utf32.h */ /* begin file src/generic/utf8_to_utf32/utf8_to_utf32.h */ namespace simdutf { namespace lasx { namespace { namespace utf8_to_utf32 { using namespace simd; simdutf_really_inline simd8 check_special_cases(const simd8 input, const simd8 prev1) { // Bit 0 = Too Short (lead byte/ASCII followed by lead byte/ASCII) // Bit 1 = Too Long (ASCII followed by continuation) // Bit 2 = Overlong 3-byte // Bit 4 = Surrogate // Bit 5 = Overlong 2-byte // Bit 7 = Two Continuations constexpr const uint8_t TOO_SHORT = 1 << 0; // 11______ 0_______ // 11______ 11______ constexpr const uint8_t TOO_LONG = 1 << 1; // 0_______ 10______ constexpr const uint8_t OVERLONG_3 = 1 << 2; // 11100000 100_____ constexpr const uint8_t SURROGATE = 1 << 4; // 11101101 101_____ constexpr const uint8_t OVERLONG_2 = 1 << 5; // 1100000_ 10______ constexpr const uint8_t TWO_CONTS = 1 << 7; // 10______ 10______ constexpr const uint8_t TOO_LARGE = 1 << 3; // 11110100 1001____ // 11110100 101_____ // 11110101 1001____ // 11110101 101_____ // 1111011_ 1001____ // 1111011_ 101_____ // 11111___ 1001____ // 11111___ 101_____ constexpr const uint8_t TOO_LARGE_1000 = 1 << 6; // 11110101 1000____ // 1111011_ 1000____ // 11111___ 1000____ constexpr const uint8_t OVERLONG_4 = 1 << 6; // 11110000 1000____ const simd8 byte_1_high = prev1.shr<4>().lookup_16( // 0_______ ________ TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, TOO_LONG, // 10______ ________ TWO_CONTS, TWO_CONTS, TWO_CONTS, TWO_CONTS, // 1100____ ________ TOO_SHORT | OVERLONG_2, // 1101____ ________ TOO_SHORT, // 1110____ ________ TOO_SHORT | OVERLONG_3 | SURROGATE, // 1111____ ________ TOO_SHORT | TOO_LARGE | TOO_LARGE_1000 | OVERLONG_4); constexpr const uint8_t CARRY = TOO_SHORT | TOO_LONG | TWO_CONTS; // These all have ____ in byte 1 . const simd8 byte_1_low = (prev1 & 0x0F) .lookup_16( // ____0000 ________ CARRY | OVERLONG_3 | OVERLONG_2 | OVERLONG_4, // ____0001 ________ CARRY | OVERLONG_2, // ____001_ ________ CARRY, CARRY, // ____0100 ________ CARRY | TOO_LARGE, // ____0101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000, // ____011_ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1___ ________ CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000, // ____1101 ________ CARRY | TOO_LARGE | TOO_LARGE_1000 | SURROGATE, CARRY | TOO_LARGE | TOO_LARGE_1000, CARRY | TOO_LARGE | TOO_LARGE_1000); const simd8 byte_2_high = input.shr<4>().lookup_16( // ________ 0_______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT, // ________ 1000____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE_1000 | OVERLONG_4, // ________ 1001____ TOO_LONG | OVERLONG_2 | TWO_CONTS | OVERLONG_3 | TOO_LARGE, // ________ 101_____ TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, TOO_LONG | OVERLONG_2 | TWO_CONTS | SURROGATE | TOO_LARGE, // ________ 11______ TOO_SHORT, TOO_SHORT, TOO_SHORT, TOO_SHORT); return (byte_1_high & byte_1_low & byte_2_high); } simdutf_really_inline simd8 check_multibyte_lengths(const simd8 input, const simd8 prev_input, const simd8 sc) { simd8 prev2 = input.prev<2>(prev_input); simd8 prev3 = input.prev<3>(prev_input); simd8 must23 = simd8(must_be_2_3_continuation(prev2, prev3)); simd8 must23_80 = must23 & uint8_t(0x80); return must23_80 ^ sc; } struct validating_transcoder { // If this is nonzero, there has been a UTF-8 error. simd8 error; validating_transcoder() : error(uint8_t(0)) {} // // Check whether the current bytes are valid UTF-8. // simdutf_really_inline void check_utf8_bytes(const simd8 input, const simd8 prev_input) { // Flip prev1...prev3 so we can easily determine if they are 2+, 3+ or 4+ // lead bytes (2, 3, 4-byte leads become large positive numbers instead of // small negative numbers) simd8 prev1 = input.prev<1>(prev_input); simd8 sc = check_special_cases(input, prev1); this->error |= check_multibyte_lengths(input, prev_input, sc); } simdutf_really_inline size_t convert(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 words when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 16 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (utf8_continuation_mask & 1) { return 0; // we have an error } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { return 0; } if (pos < size) { size_t howmany = scalar::utf8_to_utf32::convert(in + pos, size - pos, utf32_output); if (howmany == 0) { return 0; } utf32_output += howmany; } return utf32_output - start; } simdutf_really_inline result convert_with_errors(const char *in, size_t size, char32_t *utf32_output) { size_t pos = 0; char32_t *start{utf32_output}; // In the worst case, we have the haswell kernel which can cause an overflow // of 8 bytes when calling convert_masked_utf8_to_utf32. If you skip the // last 16 bytes, and if the data is valid, then it is entirely safe because // 16 UTF-8 bytes generate much more than 8 bytes. However, you cannot // generally assume that you have valid UTF-8 input, so we are going to go // back from the end counting 8 leading bytes, to give us a good margin. size_t leading_byte = 0; size_t margin = size; for (; margin > 0 && leading_byte < 8; margin--) { leading_byte += (int8_t(in[margin - 1]) > -65); } // If the input is long enough, then we have that margin-1 is the fourth // last leading byte. const size_t safety_margin = size - margin + 1; // to avoid overruns! while (pos + 64 + safety_margin <= size) { simd8x64 input(reinterpret_cast(in + pos)); if (input.is_ascii()) { input.store_ascii_as_utf32(utf32_output); utf32_output += 64; pos += 64; } else { // you might think that a for-loop would work, but under Visual Studio, // it is not good enough. static_assert( (simd8x64::NUM_CHUNKS == 2) || (simd8x64::NUM_CHUNKS == 4), "We support either two or four chunks per 64-byte block."); auto zero = simd8{uint8_t(0)}; if (simd8x64::NUM_CHUNKS == 2) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); } else if (simd8x64::NUM_CHUNKS == 4) { this->check_utf8_bytes(input.chunks[0], zero); this->check_utf8_bytes(input.chunks[1], input.chunks[0]); this->check_utf8_bytes(input.chunks[2], input.chunks[1]); this->check_utf8_bytes(input.chunks[3], input.chunks[2]); } uint64_t utf8_continuation_mask = input.lt(-65 + 1); if (errors() || (utf8_continuation_mask & 1)) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } uint64_t utf8_leading_mask = ~utf8_continuation_mask; uint64_t utf8_end_of_code_point_mask = utf8_leading_mask >> 1; // We process in blocks of up to 12 bytes except possibly // for fast paths which may process up to 16 bytes. For the // slow path to work, we should have at least 12 input bytes left. size_t max_starting_point = (pos + 64) - 12; // Next loop is going to run at least five times. while (pos < max_starting_point) { // Performance note: our ability to compute 'consumed' and // then shift and recompute is critical. If there is a // latency of, say, 4 cycles on getting 'consumed', then // the inner loop might have a total latency of about 6 cycles. // Yet we process between 6 to 12 inputs bytes, thus we get // a speed limit between 1 cycle/byte and 0.5 cycle/byte // for this section of the code. Hence, there is a limit // to how much we can further increase this latency before // it seriously harms performance. size_t consumed = convert_masked_utf8_to_utf32( in + pos, utf8_end_of_code_point_mask, utf32_output); pos += consumed; utf8_end_of_code_point_mask >>= consumed; } // At this point there may remain between 0 and 12 bytes in the // 64-byte block. These bytes will be processed again. So we have an // 80% efficiency (in the worst case). In practice we expect an // 85% to 90% efficiency. } } if (errors()) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); res.count += pos; return res; } if (pos < size) { result res = scalar::utf8_to_utf32::rewind_and_convert_with_errors( pos, in + pos, size - pos, utf32_output); if (res.error) { // In case of error, we want the error position res.count += pos; return res; } else { // In case of success, we want the number of word written utf32_output += res.count; } } return result(error_code::SUCCESS, utf32_output - start); } simdutf_really_inline bool errors() const { return this->error.any_bits_set_anywhere(); } }; // struct utf8_checker } // namespace utf8_to_utf32 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf8_to_utf32/utf8_to_utf32.h */ #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 /* begin file src/generic/utf8.h */ namespace simdutf { namespace lasx { namespace { namespace utf8 { using namespace simd; simdutf_really_inline size_t count_code_points(const char *in, size_t size) { size_t pos = 0; size_t count = 0; for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.gt(-65); count += count_ones(utf8_continuation_mask); } return count + scalar::utf8::count_code_points(in + pos, size - pos); } #ifdef SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t count_code_points_bytemask(const char *in, size_t size) { using vector_i8 = simd8; using vector_u8 = simd8; using vector_u64 = simd64; constexpr size_t N = vector_i8::SIZE; constexpr size_t max_iterations = 255 / 4; size_t pos = 0; size_t count = 0; auto counters = vector_u64::zero(); auto local = vector_u8::zero(); size_t iterations = 0; for (; pos + 4 * N <= size; pos += 4 * N) { const auto input0 = simd8::load(reinterpret_cast(in + pos + 0 * N)); const auto input1 = simd8::load(reinterpret_cast(in + pos + 1 * N)); const auto input2 = simd8::load(reinterpret_cast(in + pos + 2 * N)); const auto input3 = simd8::load(reinterpret_cast(in + pos + 3 * N)); const auto mask0 = input0 > int8_t(-65); const auto mask1 = input1 > int8_t(-65); const auto mask2 = input2 > int8_t(-65); const auto mask3 = input3 > int8_t(-65); local -= vector_u8(mask0); local -= vector_u8(mask1); local -= vector_u8(mask2); local -= vector_u8(mask3); iterations += 1; if (iterations == max_iterations) { counters += sum_8bytes(local); local = vector_u8::zero(); iterations = 0; } } if (iterations > 0) { count += local.sum_bytes(); } count += counters.sum(); return count + scalar::utf8::count_code_points(in + pos, size - pos); } #endif // SIMDUTF_SIMD_HAS_BYTEMASK simdutf_really_inline size_t utf16_length_from_utf8(const char *in, size_t size) { size_t pos = 0; size_t count = 0; // This algorithm could no doubt be improved! for (; pos + 64 <= size; pos += 64) { simd8x64 input(reinterpret_cast(in + pos)); uint64_t utf8_continuation_mask = input.lt(-65 + 1); // We count one word for anything that is not a continuation (so // leading bytes). count += 64 - count_ones(utf8_continuation_mask); int64_t utf8_4byte = input.gteq_unsigned(240); count += count_ones(utf8_4byte); } return count + scalar::utf8::utf16_length_from_utf8(in + pos, size - pos); } } // namespace utf8 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf8.h */ #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 /* begin file src/generic/utf16/count_code_points_bytemask.h */ namespace simdutf { namespace lasx { namespace { namespace utf16 { using namespace simd; template simdutf_really_inline size_t count_code_points(const char16_t *in, size_t size) { using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; size_t pos = 0; size_t count = 0; constexpr size_t max_itertions = 65535; const auto one = vector_u16::splat(1); const auto zero = vector_u16::zero(); size_t itertion = 0; auto counters = zero; for (; pos < size / N * N; pos += N) { auto input = vector_u16::load(in + pos); if (!match_system(big_endian)) { input = input.swap_bytes(); } const auto t0 = input & uint16_t(0xfc00); const auto t1 = t0 ^ uint16_t(0xdc00); // t2[0] == 1 iff input[0] outside range 0xdc00..dfff (the word is not a // high surrogate) const auto t2 = min(t1, one); counters += t2; itertion += 1; if (itertion == max_itertions) { count += counters.sum(); counters = zero; itertion = 0; } } if (itertion > 0) { count += counters.sum(); } return count + scalar::utf16::count_code_points(in + pos, size - pos); } } // namespace utf16 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf16/count_code_points_bytemask.h */ /* begin file src/generic/utf16/change_endianness.h */ namespace simdutf { namespace lasx { namespace { namespace utf16 { simdutf_really_inline void change_endianness_utf16(const char16_t *in, size_t size, char16_t *output) { size_t pos = 0; while (pos < size / 32 * 32) { simd16x32 input(reinterpret_cast(in + pos)); input.swap_bytes(); input.store(reinterpret_cast(output)); pos += 32; output += 32; } scalar::utf16::change_endianness_utf16(in + pos, size - pos, output); } } // namespace utf16 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf16/change_endianness.h */ /* begin file src/generic/utf16/utf8_length_from_utf16_bytemask.h */ namespace simdutf { namespace lasx { namespace { namespace utf16 { using namespace simd; template simdutf_really_inline size_t utf8_length_from_utf16_bytemask(const char16_t *in, size_t size) { size_t pos = 0; using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; const auto one = vector_u16::splat(1); auto v_count = vector_u16::zero(); // each char16 yields at least one byte size_t count = size / N * N; // in a single iteration the increment is 0, 1 or 2, despite we have // three additions constexpr size_t max_iterations = 65535 / 2; size_t iteration = max_iterations; for (; pos < size / N * N; pos += N) { auto input = vector_u16::load(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input = input.swap_bytes(); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate const auto is_surrogate = ((input & uint16_t(0xf800)) == uint16_t(0xd800)); // c0 - chars that yield 2- or 3-byte UTF-8 codes const auto c0 = min(input & uint16_t(0xff80), one); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) const auto c1 = min(input & uint16_t(0xf800), one); /* Explanation how the counting works. In the case of a non-surrogate character we count: * always 1 -- see how `count` is initialized above; * c0 = 1 if the current char yields 2 or 3 bytes; * c1 = 1 if the current char yields 3 bytes. Thus, we always have correct count for the current char: from 1, 2 or 3 bytes. A trickier part is how we count surrogate pairs. Whether we encounter a surrogate (low or high), we count it as 3 chars and then minus 1 (`is_surrogate` is -1 or 0). Each surrogate char yields 2. A surrogate pair, that is a low surrogate followed by a high one, yields the expected 4 bytes. It also correctly handles cases when low surrogate is processed by the this loop, but high surrogate is counted by the scalar procedure. The scalar procedure uses exactly the described approach, thanks to that for valid UTF-16 strings it always count correctly. */ v_count += c0; v_count += c1; v_count += vector_u16(is_surrogate); iteration -= 1; if (iteration == 0) { count += v_count.sum(); v_count = vector_u16::zero(); iteration = max_iterations; } } if (iteration > 0) { count += v_count.sum(); } return count + scalar::utf16::utf8_length_from_utf16(in + pos, size - pos); } template simdutf_really_inline result utf8_length_from_utf16_with_replacement(const char16_t *in, size_t size) { using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; if (N + 1 > size) { return scalar::utf16::utf8_length_from_utf16_with_replacement( in, size); } // special case for short inputs size_t pos = 0; bool any_surrogates = false; const auto one = vector_u16::splat(1); auto v_count = vector_u16::zero(); auto v_mismatched_count = vector_u16::zero(); size_t count = 0; size_t mismatched_count = 0; // in a single iteration the increment is 0, 1 or 2, despite we have // three additions constexpr size_t max_iterations = 65535 / 2; size_t iteration = max_iterations; if (scalar::utf16::is_low_surrogate(in[0])) { any_surrogates = true; mismatched_count += 1; } for (; pos < (size - 1) / N * N; pos += N) { auto input = vector_u16::load(reinterpret_cast(in + pos)); if (!match_system(big_endian)) { input = input.swap_bytes(); } // 0xd800 .. 0xdbff - low surrogate // 0xdc00 .. 0xdfff - high surrogate const auto is_surrogate = ((input & uint16_t(0xf800)) == uint16_t(0xd800)); // c0 - chars that yield 2- or 3-byte UTF-8 codes const auto c0 = min(input & uint16_t(0xff80), one); // c1 - chars that yield 3-byte UTF-8 codes (including surrogates) const auto c1 = min(input & uint16_t(0xf800), one); v_count += c0; v_count += c1; v_count += vector_u16(is_surrogate); if (is_surrogate.to_bitmask() != 0 || scalar::utf16::is_low_surrogate(in[pos + N])) { any_surrogates = true; auto input_next = vector_u16::load(reinterpret_cast(in + pos + 1)); if (!match_system(big_endian)) { input_next = input_next.swap_bytes(); } const auto lb_masked = input & (0xfc00); const auto block_masked = input_next & (0xfc00); const auto lb_is_high = lb_masked == (0xd800); const auto block_is_low = block_masked == (0xdc00); const auto illseq = min(vector_u16(lb_is_high ^ block_is_low), one); v_mismatched_count += illseq; } iteration -= 1; if (iteration == 0) { count += v_count.sum(); v_count = vector_u16::zero(); mismatched_count += v_mismatched_count.sum(); v_mismatched_count = vector_u16::zero(); iteration = max_iterations; } } if (iteration > 0) { count += v_count.sum(); mismatched_count += v_mismatched_count.sum(); } if (scalar::utf16::is_low_surrogate(in[pos])) { any_surrogates = true; if (!scalar::utf16::is_high_surrogate(in[pos - 1])) { mismatched_count -= 1; count += 2; pos += 1; } } count += pos; count += mismatched_count; if (scalar::utf16::is_high_surrogate(in[pos - 1])) { any_surrogates = true; if (pos == size) { count += 2; } else if (scalar::utf16::is_low_surrogate(in[pos])) { pos += 1; count += 2; } } result scalar_result = scalar::utf16::utf8_length_from_utf16_with_replacement( in + pos, size - pos); return {any_surrogates ? SURROGATE : scalar_result.error, count + scalar_result.count}; } } // namespace utf16 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf16/utf8_length_from_utf16_bytemask.h */ /* begin file src/generic/utf16/utf32_length_from_utf16.h */ namespace simdutf { namespace lasx { namespace { namespace utf16 { template simdutf_really_inline size_t utf32_length_from_utf16(const char16_t *in, size_t size) { return count_code_points(in, size); } } // namespace utf16 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf16/utf32_length_from_utf16.h */ /* begin file src/generic/utf16/to_well_formed.h */ namespace simdutf { namespace lasx { namespace { namespace utf16 { // Note: this is direct translation of westmere implementation. /* * Process one block of 8 characters. If in_place is false, * copy the block from in to out. If there is a sequencing * error in the block, overwrite the illsequenced characters * with the replacement character. This function reads one * character before the beginning of the buffer as a lookback. * If that character is illsequenced, it too is overwritten. */ template simdutf_really_inline void utf16fix_block(char16_t *out, const char16_t *in) { const char16_t replacement = scalar::utf16::replacement(); auto swap_if_needed = [](uint16_t c) -> uint16_t { return !simdutf::match_system(big_endian) ? scalar::u16_swap_bytes(c) : c; }; using vector_u16 = simd16; const auto lookback = vector_u16::load(in - 1); const auto block = vector_u16::load(in); const auto lb_masked = lookback & swap_if_needed(0xfc00); const auto block_masked = block & swap_if_needed(0xfc00); const auto lb_is_high = lb_masked == swap_if_needed(0xd800); const auto block_is_low = block_masked == swap_if_needed(0xdc00); const auto illseq = lb_is_high ^ block_is_low; if (!illseq.is_zero()) { /* compute the cause of the illegal sequencing */ const auto lb_illseq = ~block_is_low & lb_is_high; const auto block_illseq = (~lb_is_high & block_is_low) | lb_illseq.template byte_right_shift<2>(); /* fix illegal sequencing in the lookback */ const auto lb = lb_illseq.first(); out[-1] = char16_t((lb & replacement) | (~lb & out[-1])); /* fix illegal sequencing in the main block */ const auto mask = as_vector_u16(block_illseq); const auto fixed = (~mask & block) | (mask & replacement); fixed.store(reinterpret_cast(out)); } else if (!in_place) { block.store(reinterpret_cast(out)); } } template void to_well_formed(const char16_t *in, size_t n, char16_t *out) { using vector_u16 = simd16; constexpr size_t N = vector_u16::ELEMENTS; if (n < N + 1) { scalar::utf16::to_well_formed_utf16(in, n, out); return; } const char16_t replacement = scalar::utf16::replacement(); out[0] = scalar::utf16::is_low_surrogate(in[0]) ? replacement : in[0]; /* duplicate code to have the compiler specialise utf16fix_block() */ if (in == out) { constexpr bool inplace = true; for (size_t i = 1; i + N < n; i += N) { utf16fix_block(out + i, in + i); } utf16fix_block(out + n - N, in + n - N); } else { constexpr bool copy_data = false; for (size_t i = 1; i + N < n; i += N) { utf16fix_block(out + i, in + i); } utf16fix_block(out + n - N, in + n - N); } out[n - 1] = scalar::utf16::is_high_surrogate(out[n - 1]) ? replacement : out[n - 1]; } } // namespace utf16 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf16/to_well_formed.h */ #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING /* begin file src/generic/validate_utf16.h */ namespace simdutf { namespace lasx { namespace { namespace utf16 { /* UTF-16 validation -------------------------------------------------- In UTF-16 code units in range 0xD800 to 0xDFFF have special meaning. In a vectorized algorithm we want to examine the most significant nibble in order to select a fast path. If none of highest nibbles are 0xD (13), than we are sure that UTF-16 chunk in a vector register is valid. Let us analyze what we need to check if the nibble is 0xD. The value of the preceding nibble determines what we have: 0xd000 .. 0xd7ff - a valid word 0xd800 .. 0xdbff - low surrogate 0xdc00 .. 0xdfff - high surrogate Other constraints we have to consider: - there must not be two consecutive low surrogates (0xd800 .. 0xdbff) - there must not be two consecutive high surrogates (0xdc00 .. 0xdfff) - there must not be sole low surrogate nor high surrogate We are going to build three bitmasks based on the 3rd nibble: - V = valid word, - L = low surrogate (0xd800 .. 0xdbff) - H = high surrogate (0xdc00 .. 0xdfff) 0 1 2 3 4 5 6 7 <--- word index [ V | L | H | L | H | V | V | L ] 1 0 0 0 0 1 1 0 - V = valid masks 0 1 0 1 0 0 0 1 - L = low surrogate 0 0 1 0 1 0 0 0 - H high surrogate 1 0 0 0 0 1 1 0 V = valid masks 0 1 0 1 0 0 0 0 a = L & (H >> 1) 0 0 1 0 1 0 0 0 b = a << 1 1 1 1 1 1 1 1 0 c = V | a | b ^ the last bit can be zero, we just consume 7 code units and recheck this word in the next iteration */ template const result validate_utf16_with_errors(const char16_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { return result(error_code::SUCCESS, 0); } const char16_t *start = input; const char16_t *end = input + size; const auto v_d8 = simd8::splat(0xd8); const auto v_f8 = simd8::splat(0xf8); const auto v_fc = simd8::splat(0xfc); const auto v_dc = simd8::splat(0xdc); while (input + simd16::SIZE * 2 < end) { // 0. Load data: since the validation takes into account only higher // byte of each word, we compress the two vectors into one which // consists only the higher bytes. auto in0 = simd16(input); auto in1 = simd16(input + simd16::SIZE / sizeof(char16_t)); // Function `utf16_gather_high_bytes` consumes two vectors of UTF-16 // and yields a single vector having only higher bytes of characters. const auto in = utf16_gather_high_bytes(in0, in1); // 1. Check whether we have any 0xD800..DFFF word (0b1101'1xxx'yyyy'yyyy). const auto surrogates_wordmask = (in & v_f8) == v_d8; const uint16_t surrogates_bitmask = static_cast(surrogates_wordmask.to_bitmask()); if (surrogates_bitmask == 0x0000) { input += 16; } else { // 2. We have some surrogates that have to be distinguished: // - low surrogates: 0b1101'10xx'yyyy'yyyy (0xD800..0xDBFF) // - high surrogates: 0b1101'11xx'yyyy'yyyy (0xDC00..0xDFFF) // // Fact: high surrogate has 11th bit set (3rd bit in the higher byte) // V - non-surrogate code units // V = not surrogates_wordmask const uint16_t V = static_cast(~surrogates_bitmask); // H - word-mask for high surrogates: the six highest bits are 0b1101'11 const auto vH = (in & v_fc) == v_dc; const uint16_t H = static_cast(vH.to_bitmask()); // L - word mask for low surrogates // L = not H and surrogates_wordmask const uint16_t L = static_cast(~H & surrogates_bitmask); const uint16_t a = static_cast( L & (H >> 1)); // A low surrogate must be followed by high one. // (A low surrogate placed in the 7th register's word // is an exception we handle.) const uint16_t b = static_cast( a << 1); // Just mark that the opinput - startite fact is hold, // thanks to that we have only two masks for valid case. const uint16_t c = static_cast( V | a | b); // Combine all the masks into the final one. if (c == 0xffff) { // The whole input register contains valid UTF-16, i.e., // either single code units or proper surrogate pairs. input += 16; } else if (c == 0x7fff) { // The 15 lower code units of the input register contains valid UTF-16. // The 15th word may be either a low or high surrogate. It the next // iteration we 1) check if the low surrogate is followed by a high // one, 2) reject sole high surrogate. input += 15; } else { return result(error_code::SURROGATE, input - start); } } } return result(error_code::SUCCESS, input - start); } template const result validate_utf16_as_ascii_with_errors(const char16_t *input, size_t size) { if (simdutf_unlikely(size == 0)) { return result(error_code::SUCCESS, 0); } size_t pos = 0; for (; pos < size / 32 * 32; pos += 32) { simd16x32 input_vec( reinterpret_cast(input + pos)); if (!match_system(big_endian)) { input_vec.swap_bytes(); } uint64_t matches = input_vec.lteq(uint16_t(0x7f)); if (~matches) { // Found a match, return the first one int index = trailing_zeroes(~matches) / 2; return result(error_code::TOO_LARGE, pos + index); } } // Scalar tail while (pos < size) { char16_t v = big_endian ? scalar::u16_swap_bytes(input[pos]) : input[pos]; if (v > 0x7F) { return result(error_code::TOO_LARGE, pos); } pos++; } return result(error_code::SUCCESS, size); } } // namespace utf16 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/validate_utf16.h */ #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 /* begin file src/generic/utf32.h */ #include namespace simdutf { namespace lasx { namespace { namespace utf32 { template T min(T a, T b) { return a <= b ? a : b; } simdutf_really_inline size_t utf8_length_from_utf32(const char32_t *input, size_t length) { using vector_u32 = simd32; const char32_t *start = input; // we add up to three ones in a single iteration (see the vectorized loop in // section #2 below) const size_t max_increment = 3; const size_t N = vector_u32::ELEMENTS; #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP const auto v_0000007f = vector_u32::splat(0x0000007f); const auto v_000007ff = vector_u32::splat(0x000007ff); const auto v_0000ffff = vector_u32::splat(0x0000ffff); #else const auto v_ffffff80 = vector_u32::splat(0xffffff80); const auto v_fffff800 = vector_u32::splat(0xfffff800); const auto v_ffff0000 = vector_u32::splat(0xffff0000); const auto one = vector_u32::splat(1); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP size_t counter = 0; // 1. vectorized loop unrolled 4 times { // we use vector of uint32 counters, this is why this limit is used const size_t max_iterations = std::numeric_limits::max() / (max_increment * 4); size_t blocks = length / (N * 4); length -= blocks * (N * 4); while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; simd32 acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in0 = vector_u32(input + 0 * N); const auto in1 = vector_u32(input + 1 * N); const auto in2 = vector_u32(input + 2 * N); const auto in3 = vector_u32(input + 3 * N); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in0 > v_0000007f); acc -= as_vector_u32(in1 > v_0000007f); acc -= as_vector_u32(in2 > v_0000007f); acc -= as_vector_u32(in3 > v_0000007f); acc -= as_vector_u32(in0 > v_000007ff); acc -= as_vector_u32(in1 > v_000007ff); acc -= as_vector_u32(in2 > v_000007ff); acc -= as_vector_u32(in3 > v_000007ff); acc -= as_vector_u32(in0 > v_0000ffff); acc -= as_vector_u32(in1 > v_0000ffff); acc -= as_vector_u32(in2 > v_0000ffff); acc -= as_vector_u32(in3 > v_0000ffff); #else acc += min(one, in0 & v_ffffff80); acc += min(one, in1 & v_ffffff80); acc += min(one, in2 & v_ffffff80); acc += min(one, in3 & v_ffffff80); acc += min(one, in0 & v_fffff800); acc += min(one, in1 & v_fffff800); acc += min(one, in2 & v_fffff800); acc += min(one, in3 & v_fffff800); acc += min(one, in0 & v_ffff0000); acc += min(one, in1 & v_ffff0000); acc += min(one, in2 & v_ffff0000); acc += min(one, in3 & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += 4 * N; } counter += acc.sum(); } } // 2. vectorized loop for tail { const size_t max_iterations = std::numeric_limits::max() / max_increment; size_t blocks = length / N; length -= blocks * N; while (blocks != 0) { const size_t iterations = min(blocks, max_iterations); blocks -= iterations; auto acc = vector_u32::zero(); for (size_t i = 0; i < iterations; i++) { const auto in = vector_u32(input); #if SIMDUTF_SIMD_HAS_UNSIGNED_CMP acc -= as_vector_u32(in > v_0000007f); acc -= as_vector_u32(in > v_000007ff); acc -= as_vector_u32(in > v_0000ffff); #else acc += min(one, in & v_ffffff80); acc += min(one, in & v_fffff800); acc += min(one, in & v_ffff0000); #endif // SIMDUTF_SIMD_HAS_UNSIGNED_CMP input += N; } counter += acc.sum(); } } const size_t consumed = input - start; if (consumed != 0) { // We don't count 0th bytes in the vectorized loops above, this // is why we need to count them in the end. counter += consumed; } return counter + scalar::utf32::utf8_length_from_utf32(input, length); } } // namespace utf32 } // unnamed namespace } // namespace lasx } // namespace simdutf /* end file src/generic/utf32.h */ #endif // SIMDUTF_FEATURE_UTF32 // // Implementation-specific overrides // namespace simdutf { namespace lasx { #if SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused int implementation::detect_encodings(const char *input, size_t length) const noexcept { // If there is a BOM, then we trust it. auto bom_encoding = simdutf::BOM::check_bom(input, length); // todo: reimplement as a one-pass algorithm. if (bom_encoding != encoding_type::unspecified) { return bom_encoding; } int out = 0; if (validate_utf8(input, length)) { out |= encoding_type::UTF8; } if ((length % 2) == 0) { if (validate_utf16le(reinterpret_cast(input), length / 2)) { out |= encoding_type::UTF16_LE; } } if ((length % 4) == 0) { if (validate_utf32(reinterpret_cast(input), length / 4)) { out |= encoding_type::UTF32_LE; } } return out; } #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf8(const char *buf, size_t len) const noexcept { return lasx::utf8_validation::generic_validate_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused result implementation::validate_utf8_with_errors( const char *buf, size_t len) const noexcept { return lasx::utf8_validation::generic_validate_utf8_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_ascii(const char *buf, size_t len) const noexcept { return lasx::ascii_validation::generic_validate_ascii(buf, len); } simdutf_warn_unused result implementation::validate_ascii_with_errors( const char *buf, size_t len) const noexcept { return lasx::ascii_validation::generic_validate_ascii_with_errors(buf, len); } #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII simdutf_warn_unused bool implementation::validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept { return lasx::utf16::validate_utf16_as_ascii_with_errors( buf, len) .error == SUCCESS; } simdutf_warn_unused bool implementation::validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept { return lasx::utf16::validate_utf16_as_ascii_with_errors(buf, len) .error == SUCCESS; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf16le(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const auto res = lasx::utf16::validate_utf16_with_errors(buf, len); if (res.is_err()) { return false; } if (res.count != len) { return scalar::utf16::validate(buf + res.count, len - res.count); } return true; } #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 simdutf_warn_unused bool implementation::validate_utf16be(const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const auto res = lasx::utf16::validate_utf16_with_errors(buf, len); if (res.is_err()) { return false; } if (res.count != len) { return scalar::utf16::validate(buf + res.count, len - res.count); } return true; } simdutf_warn_unused result implementation::validate_utf16le_with_errors( const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } const result res = lasx::utf16::validate_utf16_with_errors(buf, len); if (res.count != len) { const result scalar_res = scalar::utf16::validate_with_errors( buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } simdutf_warn_unused result implementation::validate_utf16be_with_errors( const char16_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } const result res = lasx::utf16::validate_utf16_with_errors(buf, len); if (res.count != len) { const result scalar_res = scalar::utf16::validate_with_errors(buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } void implementation::to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept { return utf16::to_well_formed(input, len, output); } void implementation::to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept { return utf16::to_well_formed(input, len, output); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING simdutf_warn_unused bool implementation::validate_utf32(const char32_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { // empty input is valid. protected the implementation from nullptr. return true; } const char32_t *tail = lasx_validate_utf32le(buf, len); if (tail) { return scalar::utf32::validate(tail, len - (tail - buf)); } else { return false; } } #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 simdutf_warn_unused result implementation::validate_utf32_with_errors( const char32_t *buf, size_t len) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } result res = lasx_validate_utf32le_with_errors(buf, len); if (res.count != len) { result scalar_res = scalar::utf32::validate_with_errors(buf + res.count, len - res.count); return result(scalar_res.error, res.count + scalar_res.count); } else { return res; } } #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf8( const char *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = lasx_convert_latin1_to_utf8(buf, len, utf8_output); size_t converted_chars = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = lasx_convert_latin1_to_utf16le(buf, len, utf16_output); size_t converted_chars = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } simdutf_warn_unused size_t implementation::convert_latin1_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = lasx_convert_latin1_to_utf16be(buf, len, utf16_output); size_t converted_chars = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_latin1_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = lasx_convert_latin1_to_utf32(buf, len, utf32_output); size_t converted_chars = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_converted_chars = scalar::latin1_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); converted_chars += scalar_converted_chars; } return converted_chars; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { size_t pos = 0; char *output_start{latin1_output}; // Performance degradation when memory address is not 32-byte aligned while (((uint64_t)latin1_output & 0x1F) && pos < len) { if (buf[pos] & 0x80) { if (pos + 1 >= len) return 0; if ((buf[pos] & 0b11100000) == 0b11000000) { if ((buf[pos + 1] & 0b11000000) != 0b10000000) return 0; uint32_t code_point = (buf[pos] & 0b00011111) << 6 | (buf[pos + 1] & 0b00111111); if (code_point < 0x80 || 0xFF < code_point) { return 0; } *latin1_output++ = char(code_point); pos += 2; } else { return 0; } } else { *latin1_output++ = char(buf[pos]); pos++; } } size_t convert_size = latin1_output - output_start; if (pos == len) return convert_size; utf8_to_latin1::validating_transcoder converter; size_t convert_result = converter.convert(buf + pos, len - pos, latin1_output); return convert_result ? convert_size + convert_result : 0; } simdutf_warn_unused result implementation::convert_utf8_to_latin1_with_errors( const char *buf, size_t len, char *latin1_output) const noexcept { size_t pos = 0; char *output_start{latin1_output}; // Performance degradation when memory address is not 32-byte aligned while (((uint64_t)latin1_output & 0x1F) && pos < len) { if (buf[pos] & 0x80) { if ((buf[pos] & 0b11100000) == 0b11000000) { if (pos + 1 >= len) return result(error_code::TOO_SHORT, pos); if ((buf[pos + 1] & 0b11000000) != 0b10000000) return result(error_code::TOO_SHORT, pos); uint32_t code_point = (buf[pos] & 0b00011111) << 6 | (buf[pos + 1] & 0b00111111); if (code_point < 0x80) return result(error_code::OVERLONG, pos); if (0xFF < code_point) return result(error_code::TOO_LARGE, pos); *latin1_output++ = char(code_point); pos += 2; } else if ((buf[pos] & 0b11110000) == 0b11100000) { return result(error_code::TOO_LARGE, pos); } else if ((buf[pos] & 0b11111000) == 0b11110000) { return result(error_code::TOO_LARGE, pos); } else { if ((buf[pos] & 0b11000000) == 0b10000000) { return result(error_code::TOO_LONG, pos); } return result(error_code::HEADER_BITS, pos); } } else { *latin1_output++ = char(buf[pos]); pos++; } } size_t convert_size = latin1_output - output_start; if (pos == len) return result(error_code::SUCCESS, convert_size); utf8_to_latin1::validating_transcoder converter; result res = converter.convert_with_errors(buf + pos, len - pos, latin1_output); return res.error ? result(res.error, res.count + pos) : result(res.error, res.count + convert_size); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_latin1( const char *buf, size_t len, char *latin1_output) const noexcept { size_t pos = 0; char *output_start{latin1_output}; // Performance degradation when memory address is not 32-byte aligned while (((uint64_t)latin1_output & 0x1F) && pos < len) { if (buf[pos] & 0x80) { if (pos + 1 >= len) break; if ((buf[pos] & 0b11100000) == 0b11000000) { if ((buf[pos + 1] & 0b11000000) != 0b10000000) return 0; uint32_t code_point = (buf[pos] & 0b00011111) << 6 | (buf[pos + 1] & 0b00111111); *latin1_output++ = char(code_point); pos += 2; } else { return 0; } } else { *latin1_output++ = char(buf[pos]); pos++; } } size_t convert_size = latin1_output - output_start; if (pos == len) return convert_size; size_t convert_result = lasx::utf8_to_latin1::convert_valid(buf + pos, len - pos, latin1_output); return convert_result ? convert_size + convert_result : 0; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf8_to_utf16le( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_utf8_to_utf16be( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16le_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf16be_with_errors( const char *buf, size_t len, char16_t *utf16_output) const noexcept { utf8_to_utf16::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16le( const char *input, size_t size, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(input, size, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf16be( const char *input, size_t size, char16_t *utf16_output) const noexcept { return utf8_to_utf16::convert_valid(input, size, utf16_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf8_to_utf32( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert(buf, len, utf32_output); } simdutf_warn_unused result implementation::convert_utf8_to_utf32_with_errors( const char *buf, size_t len, char32_t *utf32_output) const noexcept { utf8_to_utf32::validating_transcoder converter; return converter.convert_with_errors(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf8_to_utf32( const char *input, size_t size, char32_t *utf32_output) const noexcept { return utf8_to_utf32::convert_valid(input, size, utf32_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lasx_convert_utf16_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lasx_convert_utf16_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lasx_convert_utf16_to_latin1_with_errors( buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_latin1_with_errors( const char16_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lasx_convert_utf16_to_latin1_with_errors(buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: implement a custom function. return convert_utf16be_to_latin1(buf, len, latin1_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_latin1( const char16_t *buf, size_t len, char *latin1_output) const noexcept { // optimization opportunity: implement a custom function. return convert_utf16le_to_latin1(buf, len, latin1_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = lasx_convert_utf16_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { std::pair ret = lasx_convert_utf16_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lasx_convert_utf16_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_utf8_with_errors( const char16_t *buf, size_t len, char *utf8_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lasx_convert_utf16_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16le_to_utf8(buf, len, utf8_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf8( const char16_t *buf, size_t len, char *utf8_output) const noexcept { return convert_utf16be_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { if (simdutf_unlikely(len == 0)) { return 0; } std::pair ret = lasx_convert_utf32_to_utf8(buf, len, utf8_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf8_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf8::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf8_with_errors( const char32_t *buf, size_t len, char *utf8_output) const noexcept { if (simdutf_unlikely(len == 0)) { return result(error_code::SUCCESS, 0); } // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lasx_convert_utf32_to_utf8_with_errors(buf, len, utf8_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf8::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf8_output; // Set count to the number of 8-bit code units written return ret.first; } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = lasx_convert_utf16_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { std::pair ret = lasx_convert_utf16_to_utf32(buf, len, utf32_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf32_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf16_to_utf32::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf16le_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lasx_convert_utf16_to_utf32_with_errors(buf, len, utf32_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf32::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf32_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf16be_to_utf32_with_errors( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lasx_convert_utf16_to_utf32_with_errors(buf, len, utf32_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf16_to_utf32::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf32_output; // Set count to the number of 8-bit code units written return ret.first; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::convert_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lasx_convert_utf32_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_latin1::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_latin1_with_errors( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lasx_convert_utf32_to_latin1_with_errors(buf, len, latin1_output); if (ret.first.error) { return ret.first; } // Can return directly since scalar fallback already found correct // ret.first.count if (ret.first.count != len) { // All good so far, but not finished result scalar_res = scalar::utf32_to_latin1::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - latin1_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_latin1( const char32_t *buf, size_t len, char *latin1_output) const noexcept { std::pair ret = lasx_convert_utf32_to_latin1(buf, len, latin1_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - latin1_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_latin1::convert_valid( ret.first, len - (ret.first - buf), ret.second); saved_bytes += scalar_saved_bytes; } return saved_bytes; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf8( const char32_t *buf, size_t len, char *utf8_output) const noexcept { // optimization opportunity: implement a custom function. return convert_utf32_to_utf8(buf, len, utf8_output); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::convert_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = lasx_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused size_t implementation::convert_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { std::pair ret = lasx_convert_utf32_to_utf16(buf, len, utf16_output); if (ret.first == nullptr) { return 0; } size_t saved_bytes = ret.second - utf16_output; if (ret.first != buf + len) { const size_t scalar_saved_bytes = scalar::utf32_to_utf16::convert( ret.first, len - (ret.first - buf), ret.second); if (scalar_saved_bytes == 0) { return 0; } saved_bytes += scalar_saved_bytes; } return saved_bytes; } simdutf_warn_unused result implementation::convert_utf32_to_utf16le_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lasx_convert_utf32_to_utf16_with_errors(buf, len, utf16_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf16::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused result implementation::convert_utf32_to_utf16be_with_errors( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { // ret.first.count is always the position in the buffer, not the number of // code units written even if finished std::pair ret = lasx_convert_utf32_to_utf16_with_errors(buf, len, utf16_output); if (ret.first.count != len) { result scalar_res = scalar::utf32_to_utf16::convert_with_errors( buf + ret.first.count, len - ret.first.count, ret.second); if (scalar_res.error) { scalar_res.count += ret.first.count; return scalar_res; } else { ret.second += scalar_res.count; } } ret.first.count = ret.second - utf16_output; // Set count to the number of 8-bit code units written return ret.first; } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16le( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16le(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf32_to_utf16be( const char32_t *buf, size_t len, char16_t *utf16_output) const noexcept { return convert_utf32_to_utf16be(buf, len, utf16_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16le_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16le_to_utf32(buf, len, utf32_output); } simdutf_warn_unused size_t implementation::convert_valid_utf16be_to_utf32( const char16_t *buf, size_t len, char32_t *utf32_output) const noexcept { return convert_utf16be_to_utf32(buf, len, utf32_output); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 void implementation::change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) const noexcept { utf16::change_endianness_utf16(input, length, output); } simdutf_warn_unused size_t implementation::count_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } simdutf_warn_unused size_t implementation::count_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 simdutf_warn_unused size_t implementation::count_utf8(const char *input, size_t length) const noexcept { size_t pos = 0; size_t count = 0; // Performance degradation when memory address is not 32-byte aligned while ((((uint64_t)input + pos) & 0x1F && pos < length)) { if (input[pos++] > -65) { count++; } } __m256i v_bf = __lasx_xvldi(0xBF); // 0b10111111 for (; pos + 32 <= length; pos += 32) { __m256i in = __lasx_xvld(reinterpret_cast(input + pos), 0); __m256i utf8_count = __lasx_xvpcnt_h(__lasx_xvmskltz_b(__lasx_xvslt_b(v_bf, in))); count = count + __lasx_xvpickve2gr_wu(utf8_count, 0) + __lasx_xvpickve2gr_wu(utf8_count, 4); } return count + scalar::utf8::count_code_points(input + pos, length - pos); } #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::latin1_length_from_utf8( const char *buf, size_t len) const noexcept { return count_utf8(buf, len); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 simdutf_warn_unused size_t implementation::utf8_length_from_latin1( const char *input, size_t length) const noexcept { const uint8_t *data = reinterpret_cast(input); const uint8_t *data_end = data + length; uint64_t result = 0; while (data_end - data > 16) { uint64_t two_bytes = 0; __m128i input_vec = __lsx_vld(data, 0); two_bytes = __lsx_vpickve2gr_hu(__lsx_vpcnt_h(__lsx_vmskltz_b(input_vec)), 0); result += 16 + two_bytes; data += 16; } return result + scalar::latin1::utf8_length_from_latin1((const char *)data, data_end - data); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf8_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_bytemask(input, length); } simdutf_warn_unused size_t implementation::utf8_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf8_length_from_utf16_bytemask(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf16le( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } simdutf_warn_unused size_t implementation::utf32_length_from_utf16be( const char16_t *input, size_t length) const noexcept { return utf16::utf32_length_from_utf16(input, length); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 simdutf_warn_unused size_t implementation::utf16_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::utf16_length_from_utf8_bytemask(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16_with_replacement< endianness::LITTLE>(input, length); } simdutf_warn_unused result implementation::utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept { return scalar::utf16::utf8_length_from_utf16_with_replacement< endianness::BIG>(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf8_length_from_utf32( const char32_t *input, size_t length) const noexcept { return utf32::utf8_length_from_utf32(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf16_length_from_utf32( const char32_t *input, size_t length) const noexcept { __m128i v_ffff = lsx_splat_u32(0x0000ffff); size_t pos = 0; size_t count = 0; for (; pos + 4 <= length; pos += 4) { __m128i in = __lsx_vld(reinterpret_cast(input + pos), 0); __m128i surrogate_bytemask = __lsx_vslt_wu(v_ffff, in); size_t surrogate_count = __lsx_vpickve2gr_bu( __lsx_vpcnt_b(__lsx_vmskltz_w(surrogate_bytemask)), 0); count += 4 + surrogate_count; } return count + scalar::utf32::utf16_length_from_utf32(input + pos, length - pos); } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 simdutf_warn_unused size_t implementation::utf32_length_from_utf8( const char *input, size_t length) const noexcept { return utf8::count_code_points(input, length); } #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_BASE64 simdutf_warn_unused result implementation::base64_to_binary( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused result implementation::base64_to_binary( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } simdutf_warn_unused full_result implementation::base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options, last_chunk_handling_options last_chunk_options) const noexcept { if (options & base64_default_or_url) { if (options == base64_options::base64_default_or_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else if (options & base64_url) { if (options == base64_options::base64_url_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } else { if (options == base64_options::base64_default_accept_garbage) { return compress_decode_base64( output, input, length, options, last_chunk_options); } else { return compress_decode_base64( output, input, length, options, last_chunk_options); } } } size_t implementation::binary_to_base64(const char *input, size_t length, char *output, base64_options options) const noexcept { if (options & base64_url) { return encode_base64(output, input, length, options); } else { return encode_base64(output, input, length, options); } } size_t implementation::binary_to_base64_with_lines( const char *input, size_t length, char *output, size_t line_length, base64_options options) const noexcept { return scalar::base64::tail_encode_base64_impl(output, input, length, options, line_length); } const char *implementation::find(const char *start, const char *end, char character) const noexcept { return util_find(start, end, character); } const char16_t *implementation::find(const char16_t *start, const char16_t *end, char16_t character) const noexcept { return util_find(start, end, character); } #endif // SIMDUTF_FEATURE_BASE64 } // namespace lasx } // namespace simdutf /* begin file src/simdutf/lasx/end.h */ #undef SIMDUTF_SIMD_HAS_UNSIGNED_CMP /* end file src/simdutf/lasx/end.h */ /* end file src/lasx/implementation.cpp */ #endif SIMDUTF_POP_DISABLE_WARNINGS /* end file src/simdutf.cpp */ zsv-1.3.0/app/external/simdutf/simdutf.h000066400000000000000000010337031511312357700202520ustar00rootroot00000000000000/* auto-generated on 2025-11-21 22:27:43 -0500. Do not edit! */ /* begin file include/simdutf.h */ #ifndef SIMDUTF_H #define SIMDUTF_H #include /* begin file include/simdutf/compiler_check.h */ #ifndef SIMDUTF_COMPILER_CHECK_H #define SIMDUTF_COMPILER_CHECK_H #ifndef __cplusplus #error simdutf requires a C++ compiler #endif #ifndef SIMDUTF_CPLUSPLUS #if defined(_MSVC_LANG) && !defined(__clang__) #define SIMDUTF_CPLUSPLUS (_MSC_VER == 1900 ? 201103L : _MSVC_LANG) #else #define SIMDUTF_CPLUSPLUS __cplusplus #endif #endif // C++ 23 #if !defined(SIMDUTF_CPLUSPLUS23) && (SIMDUTF_CPLUSPLUS >= 202302L) #define SIMDUTF_CPLUSPLUS23 1 #endif // C++ 20 #if !defined(SIMDUTF_CPLUSPLUS20) && (SIMDUTF_CPLUSPLUS >= 202002L) #define SIMDUTF_CPLUSPLUS20 1 #endif // C++ 17 #if !defined(SIMDUTF_CPLUSPLUS17) && (SIMDUTF_CPLUSPLUS >= 201703L) #define SIMDUTF_CPLUSPLUS17 1 #endif // C++ 14 #if !defined(SIMDUTF_CPLUSPLUS14) && (SIMDUTF_CPLUSPLUS >= 201402L) #define SIMDUTF_CPLUSPLUS14 1 #endif // C++ 11 #if !defined(SIMDUTF_CPLUSPLUS11) && (SIMDUTF_CPLUSPLUS >= 201103L) #define SIMDUTF_CPLUSPLUS11 1 #endif #ifndef SIMDUTF_CPLUSPLUS11 #error simdutf requires a compiler compliant with the C++11 standard #endif #endif // SIMDUTF_COMPILER_CHECK_H /* end file include/simdutf/compiler_check.h */ /* begin file include/simdutf/common_defs.h */ #ifndef SIMDUTF_COMMON_DEFS_H #define SIMDUTF_COMMON_DEFS_H /* begin file include/simdutf/portability.h */ #ifndef SIMDUTF_PORTABILITY_H #define SIMDUTF_PORTABILITY_H #include #include #include #include #ifndef _WIN32 // strcasecmp, strncasecmp #include #endif #if defined(__apple_build_version__) #if __apple_build_version__ < 14000000 #define SIMDUTF_SPAN_DISABLED \ 1 // apple-clang/13 doesn't support std::convertible_to #endif #endif #if SIMDUTF_CPLUSPLUS20 #include #if __cpp_concepts >= 201907L && __cpp_lib_span >= 202002L && \ !defined(SIMDUTF_SPAN_DISABLED) #define SIMDUTF_SPAN 1 #endif // __cpp_concepts >= 201907L && __cpp_lib_span >= 202002L #if __cpp_lib_atomic_ref >= 201806L #define SIMDUTF_ATOMIC_REF 1 #endif // __cpp_lib_atomic_ref #if __has_cpp_attribute(maybe_unused) >= 201603L #define SIMDUTF_MAYBE_UNUSED_AVAILABLE 1 #endif // __has_cpp_attribute(maybe_unused) >= 201603L #endif /** * We want to check that it is actually a little endian system at * compile-time. */ #if defined(__BYTE_ORDER__) && defined(__ORDER_BIG_ENDIAN__) #define SIMDUTF_IS_BIG_ENDIAN (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__) #elif defined(_WIN32) #define SIMDUTF_IS_BIG_ENDIAN 0 #else #if defined(__APPLE__) || \ defined(__FreeBSD__) // defined __BYTE_ORDER__ && defined // __ORDER_BIG_ENDIAN__ #include #elif defined(sun) || \ defined(__sun) // defined(__APPLE__) || defined(__FreeBSD__) #include #else // defined(__APPLE__) || defined(__FreeBSD__) #ifdef __has_include #if __has_include() #include #endif //__has_include() #endif //__has_include #endif // defined(__APPLE__) || defined(__FreeBSD__) #ifndef !defined(__BYTE_ORDER__) || !defined(__ORDER_LITTLE_ENDIAN__) #define SIMDUTF_IS_BIG_ENDIAN 0 #endif #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ #define SIMDUTF_IS_BIG_ENDIAN 0 #else // __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ #define SIMDUTF_IS_BIG_ENDIAN 1 #endif // __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ #endif // defined __BYTE_ORDER__ && defined __ORDER_BIG_ENDIAN__ /** * At this point in time, SIMDUTF_IS_BIG_ENDIAN is defined. */ #ifdef _MSC_VER #define SIMDUTF_VISUAL_STUDIO 1 /** * We want to differentiate carefully between * clang under visual studio and regular visual * studio. * * Under clang for Windows, we enable: * * target pragmas so that part and only part of the * code gets compiled for advanced instructions. * */ #ifdef __clang__ // clang under visual studio #define SIMDUTF_CLANG_VISUAL_STUDIO 1 #else // just regular visual studio (best guess) #define SIMDUTF_REGULAR_VISUAL_STUDIO 1 #endif // __clang__ #endif // _MSC_VER #ifdef SIMDUTF_REGULAR_VISUAL_STUDIO // https://en.wikipedia.org/wiki/C_alternative_tokens // This header should have no effect, except maybe // under Visual Studio. #include #endif #if (defined(__x86_64__) || defined(_M_AMD64)) && !defined(_M_ARM64EC) #define SIMDUTF_IS_X86_64 1 #elif defined(__aarch64__) || defined(_M_ARM64) || defined(_M_ARM64EC) #define SIMDUTF_IS_ARM64 1 #elif defined(__PPC64__) || defined(_M_PPC64) #if defined(__VEC__) && defined(__ALTIVEC__) #define SIMDUTF_IS_PPC64 1 #endif #elif defined(__s390__) // s390 IBM system. Big endian. #elif (defined(__riscv) || defined(__riscv__)) && __riscv_xlen == 64 // RISC-V 64-bit #define SIMDUTF_IS_RISCV64 1 // #if __riscv_v_intrinsic >= 1000000 // #define SIMDUTF_HAS_RVV_INTRINSICS 1 // #define SIMDUTF_HAS_RVV_TARGET_REGION 1 // #elif ... // Check for special compiler versions that implement pre v1.0 intrinsics #if __riscv_v_intrinsic >= 11000 #define SIMDUTF_HAS_RVV_INTRINSICS 1 #endif #define SIMDUTF_HAS_ZVBB_INTRINSICS \ 0 // there is currently no way to detect this #if SIMDUTF_HAS_RVV_INTRINSICS && __riscv_vector && \ __riscv_v_min_vlen >= 128 && __riscv_v_elen >= 64 // RISC-V V extension #define SIMDUTF_IS_RVV 1 #if SIMDUTF_HAS_ZVBB_INTRINSICS && __riscv_zvbb >= 1000000 // RISC-V Vector Basic Bit-manipulation #define SIMDUTF_IS_ZVBB 1 #endif #endif #elif defined(__loongarch_lp64) #if defined(__loongarch_sx) && defined(__loongarch_asx) #define SIMDUTF_IS_LSX 1 #define SIMDUTF_IS_LASX 1 #elif defined(__loongarch_sx) #define SIMDUTF_IS_LSX 1 #endif #else // The simdutf library is designed // for 64-bit processors and it seems that you are not // compiling for a known 64-bit platform. Please // use a 64-bit target such as x64 or 64-bit ARM for best performance. #define SIMDUTF_IS_32BITS 1 // We do not support 32-bit platforms, but it can be // handy to identify them. #if defined(_M_IX86) || defined(__i386__) #define SIMDUTF_IS_X86_32BITS 1 #elif defined(__arm__) || defined(_M_ARM) #define SIMDUTF_IS_ARM_32BITS 1 #elif defined(__PPC__) || defined(_M_PPC) #define SIMDUTF_IS_PPC_32BITS 1 #endif #endif // defined(__x86_64__) || defined(_M_AMD64) #ifdef SIMDUTF_IS_32BITS #ifndef SIMDUTF_NO_PORTABILITY_WARNING // In the future, we may want to warn users of 32-bit systems that // the simdutf does not support accelerated kernels for such systems. #endif // SIMDUTF_NO_PORTABILITY_WARNING #endif // SIMDUTF_IS_32BITS // this is almost standard? #define SIMDUTF_STRINGIFY_IMPLEMENTATION_(a) #a #define SIMDUTF_STRINGIFY(a) SIMDUTF_STRINGIFY_IMPLEMENTATION_(a) // Our fast kernels require 64-bit systems. // // On 32-bit x86, we lack 64-bit popcnt, lzcnt, blsr instructions. // Furthermore, the number of SIMD registers is reduced. // // On 32-bit ARM, we would have smaller registers. // // The simdutf users should still have the fallback kernel. It is // slower, but it should run everywhere. // // Enable valid runtime implementations, and select // SIMDUTF_BUILTIN_IMPLEMENTATION // // We are going to use runtime dispatch. #ifdef SIMDUTF_IS_X86_64 #ifdef __clang__ // clang does not have GCC push pop // warning: clang attribute push can't be used within a namespace in clang // up til 8.0 so SIMDUTF_TARGET_REGION and SIMDUTF_UNTARGET_REGION must be // *outside* of a namespace. #define SIMDUTF_TARGET_REGION(T) \ _Pragma(SIMDUTF_STRINGIFY(clang attribute push( \ __attribute__((target(T))), apply_to = function))) #define SIMDUTF_UNTARGET_REGION _Pragma("clang attribute pop") #elif defined(__GNUC__) // GCC is easier #define SIMDUTF_TARGET_REGION(T) \ _Pragma("GCC push_options") _Pragma(SIMDUTF_STRINGIFY(GCC target(T))) #define SIMDUTF_UNTARGET_REGION _Pragma("GCC pop_options") #endif // clang then gcc #endif // x86 // Default target region macros don't do anything. #ifndef SIMDUTF_TARGET_REGION #define SIMDUTF_TARGET_REGION(T) #define SIMDUTF_UNTARGET_REGION #endif // Is threading enabled? #if defined(_REENTRANT) || defined(_MT) #ifndef SIMDUTF_THREADS_ENABLED #define SIMDUTF_THREADS_ENABLED #endif #endif // workaround for large stack sizes under -O0. // https://github.com/simdutf/simdutf/issues/691 #ifdef __APPLE__ #ifndef __OPTIMIZE__ // Apple systems have small stack sizes in secondary threads. // Lack of compiler optimization may generate high stack usage. // Users may want to disable threads for safety, but only when // in debug mode which we detect by the fact that the __OPTIMIZE__ // macro is not defined. #undef SIMDUTF_THREADS_ENABLED #endif #endif #ifdef SIMDUTF_VISUAL_STUDIO // This is one case where we do not distinguish between // regular visual studio and clang under visual studio. // clang under Windows has _stricmp (like visual studio) but not strcasecmp // (as clang normally has) #define simdutf_strcasecmp _stricmp #define simdutf_strncasecmp _strnicmp #else // The strcasecmp, strncasecmp, and strcasestr functions do not work with // multibyte strings (e.g. UTF-8). So they are only useful for ASCII in our // context. // https://www.gnu.org/software/libunistring/manual/libunistring.html#char-_002a-strings #define simdutf_strcasecmp strcasecmp #define simdutf_strncasecmp strncasecmp #endif #if defined(__GNUC__) && !defined(__clang__) #if __GNUC__ >= 11 #define SIMDUTF_GCC11ORMORE 1 #endif // __GNUC__ >= 11 #if __GNUC__ == 10 #define SIMDUTF_GCC10 1 #endif // __GNUC__ == 10 #if __GNUC__ < 10 #define SIMDUTF_GCC9OROLDER 1 #endif // __GNUC__ == 10 #endif // defined(__GNUC__) && !defined(__clang__) #endif // SIMDUTF_PORTABILITY_H /* end file include/simdutf/portability.h */ /* begin file include/simdutf/avx512.h */ #ifndef SIMDUTF_AVX512_H_ #define SIMDUTF_AVX512_H_ /* It's possible to override AVX512 settings with cmake DCMAKE_CXX_FLAGS. All preprocessor directives has form `SIMDUTF_HAS_AVX512{feature}`, where a feature is a code name for extensions. Please see the listing below to find which are supported. */ #ifndef SIMDUTF_HAS_AVX512F #if defined(__AVX512F__) && __AVX512F__ == 1 #define SIMDUTF_HAS_AVX512F 1 #endif #endif #ifndef SIMDUTF_HAS_AVX512DQ #if defined(__AVX512DQ__) && __AVX512DQ__ == 1 #define SIMDUTF_HAS_AVX512DQ 1 #endif #endif #ifndef SIMDUTF_HAS_AVX512IFMA #if defined(__AVX512IFMA__) && __AVX512IFMA__ == 1 #define SIMDUTF_HAS_AVX512IFMA 1 #endif #endif #ifndef SIMDUTF_HAS_AVX512CD #if defined(__AVX512CD__) && __AVX512CD__ == 1 #define SIMDUTF_HAS_AVX512CD 1 #endif #endif #ifndef SIMDUTF_HAS_AVX512BW #if defined(__AVX512BW__) && __AVX512BW__ == 1 #define SIMDUTF_HAS_AVX512BW 1 #endif #endif #ifndef SIMDUTF_HAS_AVX512VL #if defined(__AVX512VL__) && __AVX512VL__ == 1 #define SIMDUTF_HAS_AVX512VL 1 #endif #endif #ifndef SIMDUTF_HAS_AVX512VBMI #if defined(__AVX512VBMI__) && __AVX512VBMI__ == 1 #define SIMDUTF_HAS_AVX512VBMI 1 #endif #endif #ifndef SIMDUTF_HAS_AVX512VBMI2 #if defined(__AVX512VBMI2__) && __AVX512VBMI2__ == 1 #define SIMDUTF_HAS_AVX512VBMI2 1 #endif #endif #ifndef SIMDUTF_HAS_AVX512VNNI #if defined(__AVX512VNNI__) && __AVX512VNNI__ == 1 #define SIMDUTF_HAS_AVX512VNNI 1 #endif #endif #ifndef SIMDUTF_HAS_AVX512BITALG #if defined(__AVX512BITALG__) && __AVX512BITALG__ == 1 #define SIMDUTF_HAS_AVX512BITALG 1 #endif #endif #ifndef SIMDUTF_HAS_AVX512VPOPCNTDQ #if defined(__AVX512VPOPCNTDQ__) && __AVX512VPOPCNTDQ__ == 1 #define SIMDUTF_HAS_AVX512VPOPCNTDQ 1 #endif #endif #endif // SIMDUTF_AVX512_H_ /* end file include/simdutf/avx512.h */ // Sometimes logging is useful, but we want it disabled by default // and free of any logging code in release builds. #ifdef SIMDUTF_LOGGING #include #define simdutf_log(msg) \ std::cout << "[" << __FUNCTION__ << "]: " << msg << std::endl \ << "\t" << __FILE__ << ":" << __LINE__ << std::endl; #define simdutf_log_assert(cond, msg) \ do { \ if (!(cond)) { \ std::cerr << "[" << __FUNCTION__ << "]: " << msg << std::endl \ << "\t" << __FILE__ << ":" << __LINE__ << std::endl; \ std::abort(); \ } \ } while (0) #else #define simdutf_log(msg) #define simdutf_log_assert(cond, msg) #endif #if defined(SIMDUTF_REGULAR_VISUAL_STUDIO) #define SIMDUTF_DEPRECATED __declspec(deprecated) #define simdutf_really_inline __forceinline // really inline in release mode #define simdutf_always_inline __forceinline // always inline, no matter what #define simdutf_never_inline __declspec(noinline) #define simdutf_unused #define simdutf_warn_unused #ifndef simdutf_likely #define simdutf_likely(x) x #endif #ifndef simdutf_unlikely #define simdutf_unlikely(x) x #endif #define SIMDUTF_PUSH_DISABLE_WARNINGS __pragma(warning(push)) #define SIMDUTF_PUSH_DISABLE_ALL_WARNINGS __pragma(warning(push, 0)) #define SIMDUTF_DISABLE_VS_WARNING(WARNING_NUMBER) \ __pragma(warning(disable : WARNING_NUMBER)) // Get rid of Intellisense-only warnings (Code Analysis) // Though __has_include is C++17, it is supported in Visual Studio 2017 or // better (_MSC_VER>=1910). #ifdef __has_include #if __has_include() #include #define SIMDUTF_DISABLE_UNDESIRED_WARNINGS \ SIMDUTF_DISABLE_VS_WARNING(ALL_CPPCORECHECK_WARNINGS) #endif #endif #ifndef SIMDUTF_DISABLE_UNDESIRED_WARNINGS #define SIMDUTF_DISABLE_UNDESIRED_WARNINGS #endif #define SIMDUTF_DISABLE_DEPRECATED_WARNING SIMDUTF_DISABLE_VS_WARNING(4996) #define SIMDUTF_DISABLE_STRICT_OVERFLOW_WARNING #define SIMDUTF_POP_DISABLE_WARNINGS __pragma(warning(pop)) #define SIMDUTF_DISABLE_UNUSED_WARNING #else // SIMDUTF_REGULAR_VISUAL_STUDIO #if defined(__OPTIMIZE__) || defined(NDEBUG) #define simdutf_really_inline inline __attribute__((always_inline)) #else #define simdutf_really_inline inline #endif #define simdutf_always_inline \ inline __attribute__((always_inline)) // always inline, no matter what #define SIMDUTF_DEPRECATED __attribute__((deprecated)) #define simdutf_never_inline inline __attribute__((noinline)) #define simdutf_unused __attribute__((unused)) #define simdutf_warn_unused __attribute__((warn_unused_result)) #ifndef simdutf_likely #define simdutf_likely(x) __builtin_expect(!!(x), 1) #endif #ifndef simdutf_unlikely #define simdutf_unlikely(x) __builtin_expect(!!(x), 0) #endif // clang-format off #define SIMDUTF_PUSH_DISABLE_WARNINGS _Pragma("GCC diagnostic push") // gcc doesn't seem to disable all warnings with all and extra, add warnings // here as necessary #define SIMDUTF_PUSH_DISABLE_ALL_WARNINGS \ SIMDUTF_PUSH_DISABLE_WARNINGS \ SIMDUTF_DISABLE_GCC_WARNING(-Weffc++) \ SIMDUTF_DISABLE_GCC_WARNING(-Wall) \ SIMDUTF_DISABLE_GCC_WARNING(-Wconversion) \ SIMDUTF_DISABLE_GCC_WARNING(-Wextra) \ SIMDUTF_DISABLE_GCC_WARNING(-Wattributes) \ SIMDUTF_DISABLE_GCC_WARNING(-Wimplicit-fallthrough) \ SIMDUTF_DISABLE_GCC_WARNING(-Wnon-virtual-dtor) \ SIMDUTF_DISABLE_GCC_WARNING(-Wreturn-type) \ SIMDUTF_DISABLE_GCC_WARNING(-Wshadow) \ SIMDUTF_DISABLE_GCC_WARNING(-Wunused-parameter) \ SIMDUTF_DISABLE_GCC_WARNING(-Wunused-variable) #define SIMDUTF_PRAGMA(P) _Pragma(#P) #define SIMDUTF_DISABLE_GCC_WARNING(WARNING) \ SIMDUTF_PRAGMA(GCC diagnostic ignored #WARNING) #if defined(SIMDUTF_CLANG_VISUAL_STUDIO) #define SIMDUTF_DISABLE_UNDESIRED_WARNINGS \ SIMDUTF_DISABLE_GCC_WARNING(-Wmicrosoft-include) #else #define SIMDUTF_DISABLE_UNDESIRED_WARNINGS #endif #define SIMDUTF_DISABLE_DEPRECATED_WARNING \ SIMDUTF_DISABLE_GCC_WARNING(-Wdeprecated-declarations) #define SIMDUTF_DISABLE_STRICT_OVERFLOW_WARNING \ SIMDUTF_DISABLE_GCC_WARNING(-Wstrict-overflow) #define SIMDUTF_POP_DISABLE_WARNINGS _Pragma("GCC diagnostic pop") #define SIMDUTF_DISABLE_UNUSED_WARNING \ SIMDUTF_PUSH_DISABLE_WARNINGS \ SIMDUTF_DISABLE_GCC_WARNING(-Wunused-function) \ SIMDUTF_DISABLE_GCC_WARNING(-Wunused-const-variable) // clang-format on #endif // MSC_VER #ifndef SIMDUTF_DLLIMPORTEXPORT #if defined(SIMDUTF_VISUAL_STUDIO) // Visual Studio /** * Windows users need to do some extra work when building * or using a dynamic library (DLL). When building, we need * to set SIMDUTF_DLLIMPORTEXPORT to __declspec(dllexport). * When *using* the DLL, the user needs to set * SIMDUTF_DLLIMPORTEXPORT __declspec(dllimport). * * Static libraries not need require such work. * * It does not matter here whether you are using * the regular visual studio or clang under visual * studio, you still need to handle these issues. * * Non-Windows systems do not have this complexity. */ #if SIMDUTF_BUILDING_WINDOWS_DYNAMIC_LIBRARY // We set SIMDUTF_BUILDING_WINDOWS_DYNAMIC_LIBRARY when we build a DLL // under Windows. It should never happen that both // SIMDUTF_BUILDING_WINDOWS_DYNAMIC_LIBRARY and // SIMDUTF_USING_WINDOWS_DYNAMIC_LIBRARY are set. #define SIMDUTF_DLLIMPORTEXPORT __declspec(dllexport) #elif SIMDUTF_USING_WINDOWS_DYNAMIC_LIBRARY // Windows user who call a dynamic library should set // SIMDUTF_USING_WINDOWS_DYNAMIC_LIBRARY to 1. #define SIMDUTF_DLLIMPORTEXPORT __declspec(dllimport) #else // We assume by default static linkage #define SIMDUTF_DLLIMPORTEXPORT #endif #else // defined(SIMDUTF_VISUAL_STUDIO) // Non-Windows systems do not have this complexity. #define SIMDUTF_DLLIMPORTEXPORT #endif // defined(SIMDUTF_VISUAL_STUDIO) #endif #if SIMDUTF_MAYBE_UNUSED_AVAILABLE #define simdutf_maybe_unused [[maybe_unused]] #else #define simdutf_maybe_unused #endif #endif // SIMDUTF_COMMON_DEFS_H /* end file include/simdutf/common_defs.h */ /* begin file include/simdutf/encoding_types.h */ #ifndef SIMDUTF_ENCODING_TYPES_H #define SIMDUTF_ENCODING_TYPES_H #include namespace simdutf { enum encoding_type { UTF8 = 1, // BOM 0xef 0xbb 0xbf UTF16_LE = 2, // BOM 0xff 0xfe UTF16_BE = 4, // BOM 0xfe 0xff UTF32_LE = 8, // BOM 0xff 0xfe 0x00 0x00 UTF32_BE = 16, // BOM 0x00 0x00 0xfe 0xff Latin1 = 32, unspecified = 0 }; enum endianness { LITTLE = 0, BIG = 1 }; constexpr bool match_system(endianness e) { #ifndef SIMDUTF_IS_BIG_ENDIAN #error "SIMDUTF_IS_BIG_ENDIAN needs to be defined." #endif #if SIMDUTF_IS_BIG_ENDIAN return e == endianness::BIG; #else return e == endianness::LITTLE; #endif } std::string to_string(encoding_type bom); // Note that BOM for UTF8 is discouraged. namespace BOM { /** * Checks for a BOM. If not, returns unspecified * @param input the string to process * @param length the length of the string in code units * @return the corresponding encoding */ encoding_type check_bom(const uint8_t *byte, size_t length); encoding_type check_bom(const char *byte, size_t length); /** * Returns the size, in bytes, of the BOM for a given encoding type. * Note that UTF8 BOM are discouraged. * @param bom the encoding type * @return the size in bytes of the corresponding BOM */ size_t bom_byte_size(encoding_type bom); } // namespace BOM } // namespace simdutf #endif /* end file include/simdutf/encoding_types.h */ /* begin file include/simdutf/error.h */ #ifndef SIMDUTF_ERROR_H #define SIMDUTF_ERROR_H namespace simdutf { enum error_code { SUCCESS = 0, HEADER_BITS, // Any byte must have fewer than 5 header bits. TOO_SHORT, // The leading byte must be followed by N-1 continuation bytes, // where N is the UTF-8 character length This is also the error // when the input is truncated. TOO_LONG, // We either have too many consecutive continuation bytes or the // string starts with a continuation byte. OVERLONG, // The decoded character must be above U+7F for two-byte characters, // U+7FF for three-byte characters, and U+FFFF for four-byte // characters. TOO_LARGE, // The decoded character must be less than or equal to // U+10FFFF,less than or equal than U+7F for ASCII OR less than // equal than U+FF for Latin1 SURROGATE, // The decoded character must be not be in U+D800...DFFF (UTF-8 or // UTF-32) // OR // a high surrogate must be followed by a low surrogate // and a low surrogate must be preceded by a high surrogate // (UTF-16) // OR // there must be no surrogate at all and one is // found (Latin1 functions) // OR // *specifically* for the function // utf8_length_from_utf16_with_replacement, a surrogate (whether // in error or not) has been found (I.e., whether we are in the // Basic Multilingual Plane or not). INVALID_BASE64_CHARACTER, // Found a character that cannot be part of a valid // base64 string. This may include a misplaced // padding character ('='). BASE64_INPUT_REMAINDER, // The base64 input terminates with a single // character, excluding padding (=). It is also used // in strict mode when padding is not adequate. BASE64_EXTRA_BITS, // The base64 input terminates with non-zero // padding bits. OUTPUT_BUFFER_TOO_SMALL, // The provided buffer is too small. OTHER // Not related to validation/transcoding. }; #if SIMDUTF_CPLUSPLUS17 inline std::string_view error_to_string(error_code code) noexcept { switch (code) { case SUCCESS: return "SUCCESS"; case HEADER_BITS: return "HEADER_BITS"; case TOO_SHORT: return "TOO_SHORT"; case TOO_LONG: return "TOO_LONG"; case OVERLONG: return "OVERLONG"; case TOO_LARGE: return "TOO_LARGE"; case SURROGATE: return "SURROGATE"; case INVALID_BASE64_CHARACTER: return "INVALID_BASE64_CHARACTER"; case BASE64_INPUT_REMAINDER: return "BASE64_INPUT_REMAINDER"; case BASE64_EXTRA_BITS: return "BASE64_EXTRA_BITS"; case OUTPUT_BUFFER_TOO_SMALL: return "OUTPUT_BUFFER_TOO_SMALL"; default: return "OTHER"; } } #endif struct result { error_code error; size_t count; // In case of error, indicates the position of the error. In // case of success, indicates the number of code units // validated/written. simdutf_really_inline result() noexcept : error{error_code::SUCCESS}, count{0} {} simdutf_really_inline result(error_code err, size_t pos) noexcept : error{err}, count{pos} {} simdutf_really_inline bool is_ok() const noexcept { return error == error_code::SUCCESS; } simdutf_really_inline bool is_err() const noexcept { return error != error_code::SUCCESS; } }; struct full_result { error_code error; size_t input_count; size_t output_count; bool padding_error = false; // true if the error is due to padding, only // meaningful when error is not SUCCESS simdutf_really_inline full_result() noexcept : error{error_code::SUCCESS}, input_count{0}, output_count{0} {} simdutf_really_inline full_result(error_code err, size_t pos_in, size_t pos_out) noexcept : error{err}, input_count{pos_in}, output_count{pos_out} {} simdutf_really_inline full_result(error_code err, size_t pos_in, size_t pos_out, bool padding_err) noexcept : error{err}, input_count{pos_in}, output_count{pos_out}, padding_error{padding_err} {} simdutf_really_inline operator result() const noexcept { if (error == error_code::SUCCESS) { return result{error, output_count}; } else { return result{error, input_count}; } } }; } // namespace simdutf #endif /* end file include/simdutf/error.h */ SIMDUTF_PUSH_DISABLE_WARNINGS SIMDUTF_DISABLE_UNDESIRED_WARNINGS // Public API /* begin file include/simdutf/simdutf_version.h */ // /include/simdutf/simdutf_version.h automatically generated by release.py, // do not change by hand #ifndef SIMDUTF_SIMDUTF_VERSION_H #define SIMDUTF_SIMDUTF_VERSION_H /** The version of simdutf being used (major.minor.revision) */ #define SIMDUTF_VERSION "7.7.0" namespace simdutf { enum { /** * The major version (MAJOR.minor.revision) of simdutf being used. */ SIMDUTF_VERSION_MAJOR = 7, /** * The minor version (major.MINOR.revision) of simdutf being used. */ SIMDUTF_VERSION_MINOR = 7, /** * The revision (major.minor.REVISION) of simdutf being used. */ SIMDUTF_VERSION_REVISION = 0 }; } // namespace simdutf #endif // SIMDUTF_SIMDUTF_VERSION_H /* end file include/simdutf/simdutf_version.h */ /* begin file include/simdutf/implementation.h */ #ifndef SIMDUTF_IMPLEMENTATION_H #define SIMDUTF_IMPLEMENTATION_H #if !defined(SIMDUTF_NO_THREADS) #include #endif #include #ifdef SIMDUTF_INTERNAL_TESTS #include #endif /* begin file include/simdutf/internal/isadetection.h */ /* From https://github.com/endorno/pytorch/blob/master/torch/lib/TH/generic/simd/simd.h Highly modified. Copyright (c) 2016- Facebook, Inc (Adam Paszke) Copyright (c) 2014- Facebook, Inc (Soumith Chintala) Copyright (c) 2011-2014 Idiap Research Institute (Ronan Collobert) Copyright (c) 2012-2014 Deepmind Technologies (Koray Kavukcuoglu) Copyright (c) 2011-2012 NEC Laboratories America (Koray Kavukcuoglu) Copyright (c) 2011-2013 NYU (Clement Farabet) Copyright (c) 2006-2010 NEC Laboratories America (Ronan Collobert, Leon Bottou, Iain Melvin, Jason Weston) Copyright (c) 2006 Idiap Research Institute (Samy Bengio) Copyright (c) 2001-2004 Idiap Research Institute (Ronan Collobert, Samy Bengio, Johnny Mariethoz) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the names of Facebook, Deepmind Technologies, NYU, NEC Laboratories America and IDIAP Research Institute nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef SIMDutf_INTERNAL_ISADETECTION_H #define SIMDutf_INTERNAL_ISADETECTION_H #include #include #if defined(_MSC_VER) #include #elif defined(HAVE_GCC_GET_CPUID) && defined(USE_GCC_GET_CPUID) #include #endif // RISC-V ISA detection utilities #if SIMDUTF_IS_RISCV64 && defined(__linux__) #include // for syscall // We define these ourselves, for backwards compatibility struct simdutf_riscv_hwprobe { int64_t key; uint64_t value; }; #define simdutf_riscv_hwprobe(...) syscall(258, __VA_ARGS__) #define SIMDUTF_RISCV_HWPROBE_KEY_IMA_EXT_0 4 #define SIMDUTF_RISCV_HWPROBE_IMA_V (1 << 2) #define SIMDUTF_RISCV_HWPROBE_EXT_ZVBB (1 << 17) #endif // SIMDUTF_IS_RISCV64 && defined(__linux__) #if defined(__loongarch__) && defined(__linux__) #include // bits/hwcap.h // #define HWCAP_LOONGARCH_LSX (1 << 4) // #define HWCAP_LOONGARCH_LASX (1 << 5) #endif namespace simdutf { namespace internal { enum instruction_set { DEFAULT = 0x0, NEON = 0x1, AVX2 = 0x4, SSE42 = 0x8, PCLMULQDQ = 0x10, BMI1 = 0x20, BMI2 = 0x40, ALTIVEC = 0x80, AVX512F = 0x100, AVX512DQ = 0x200, AVX512IFMA = 0x400, AVX512PF = 0x800, AVX512ER = 0x1000, AVX512CD = 0x2000, AVX512BW = 0x4000, AVX512VL = 0x8000, AVX512VBMI2 = 0x10000, AVX512VPOPCNTDQ = 0x2000, RVV = 0x4000, ZVBB = 0x8000, LSX = 0x40000, LASX = 0x80000, }; #if defined(__PPC64__) static inline uint32_t detect_supported_architectures() { return instruction_set::ALTIVEC; } #elif SIMDUTF_IS_RISCV64 static inline uint32_t detect_supported_architectures() { uint32_t host_isa = instruction_set::DEFAULT; #if SIMDUTF_IS_RVV host_isa |= instruction_set::RVV; #endif #if SIMDUTF_IS_ZVBB host_isa |= instruction_set::ZVBB; #endif #if defined(__linux__) simdutf_riscv_hwprobe probes[] = {{SIMDUTF_RISCV_HWPROBE_KEY_IMA_EXT_0, 0}}; long ret = simdutf_riscv_hwprobe(&probes, sizeof probes / sizeof *probes, 0, nullptr, 0); if (ret == 0) { uint64_t extensions = probes[0].value; if (extensions & SIMDUTF_RISCV_HWPROBE_IMA_V) host_isa |= instruction_set::RVV; if (extensions & SIMDUTF_RISCV_HWPROBE_EXT_ZVBB) host_isa |= instruction_set::ZVBB; } #endif #if defined(RUN_IN_SPIKE_SIMULATOR) // Proxy Kernel does not implement yet hwprobe syscall host_isa |= instruction_set::RVV; #endif return host_isa; } #elif defined(__aarch64__) || defined(_M_ARM64) || defined(_M_ARM64EC) static inline uint32_t detect_supported_architectures() { return instruction_set::NEON; } #elif defined(__x86_64__) || defined(_M_AMD64) // x64 namespace { namespace cpuid_bit { // Can be found on Intel ISA Reference for CPUID // EAX = 0x01 constexpr uint32_t pclmulqdq = uint32_t(1) << 1; ///< @private bit 1 of ECX for EAX=0x1 constexpr uint32_t sse42 = uint32_t(1) << 20; ///< @private bit 20 of ECX for EAX=0x1 constexpr uint32_t osxsave = (uint32_t(1) << 26) | (uint32_t(1) << 27); ///< @private bits 26+27 of ECX for EAX=0x1 // EAX = 0x7f (Structured Extended Feature Flags), ECX = 0x00 (Sub-leaf) // See: "Table 3-8. Information Returned by CPUID Instruction" namespace ebx { constexpr uint32_t bmi1 = uint32_t(1) << 3; constexpr uint32_t avx2 = uint32_t(1) << 5; constexpr uint32_t bmi2 = uint32_t(1) << 8; constexpr uint32_t avx512f = uint32_t(1) << 16; constexpr uint32_t avx512dq = uint32_t(1) << 17; constexpr uint32_t avx512ifma = uint32_t(1) << 21; constexpr uint32_t avx512cd = uint32_t(1) << 28; constexpr uint32_t avx512bw = uint32_t(1) << 30; constexpr uint32_t avx512vl = uint32_t(1) << 31; } // namespace ebx namespace ecx { constexpr uint32_t avx512vbmi = uint32_t(1) << 1; constexpr uint32_t avx512vbmi2 = uint32_t(1) << 6; constexpr uint32_t avx512vnni = uint32_t(1) << 11; constexpr uint32_t avx512bitalg = uint32_t(1) << 12; constexpr uint32_t avx512vpopcnt = uint32_t(1) << 14; } // namespace ecx namespace edx { constexpr uint32_t avx512vp2intersect = uint32_t(1) << 8; } namespace xcr0_bit { constexpr uint64_t avx256_saved = uint64_t(1) << 2; ///< @private bit 2 = AVX constexpr uint64_t avx512_saved = uint64_t(7) << 5; ///< @private bits 5,6,7 = opmask, ZMM_hi256, hi16_ZMM } // namespace xcr0_bit } // namespace cpuid_bit } // namespace static inline void cpuid(uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx) { #if defined(_MSC_VER) int cpu_info[4]; __cpuidex(cpu_info, *eax, *ecx); *eax = cpu_info[0]; *ebx = cpu_info[1]; *ecx = cpu_info[2]; *edx = cpu_info[3]; #elif defined(HAVE_GCC_GET_CPUID) && defined(USE_GCC_GET_CPUID) uint32_t level = *eax; __get_cpuid(level, eax, ebx, ecx, edx); #else uint32_t a = *eax, b, c = *ecx, d; asm volatile("cpuid\n\t" : "+a"(a), "=b"(b), "+c"(c), "=d"(d)); *eax = a; *ebx = b; *ecx = c; *edx = d; #endif } static inline uint64_t xgetbv() { #if defined(_MSC_VER) return _xgetbv(0); #else uint32_t xcr0_lo, xcr0_hi; asm volatile("xgetbv\n\t" : "=a"(xcr0_lo), "=d"(xcr0_hi) : "c"(0)); return xcr0_lo | ((uint64_t)xcr0_hi << 32); #endif } static inline uint32_t detect_supported_architectures() { uint32_t eax; uint32_t ebx = 0; uint32_t ecx = 0; uint32_t edx = 0; uint32_t host_isa = 0x0; // EBX for EAX=0x1 eax = 0x1; cpuid(&eax, &ebx, &ecx, &edx); if (ecx & cpuid_bit::sse42) { host_isa |= instruction_set::SSE42; } if (ecx & cpuid_bit::pclmulqdq) { host_isa |= instruction_set::PCLMULQDQ; } if ((ecx & cpuid_bit::osxsave) != cpuid_bit::osxsave) { return host_isa; } // xgetbv for checking if the OS saves registers uint64_t xcr0 = xgetbv(); if ((xcr0 & cpuid_bit::xcr0_bit::avx256_saved) == 0) { return host_isa; } // ECX for EAX=0x7 eax = 0x7; ecx = 0x0; // Sub-leaf = 0 cpuid(&eax, &ebx, &ecx, &edx); if (ebx & cpuid_bit::ebx::avx2) { host_isa |= instruction_set::AVX2; } if (ebx & cpuid_bit::ebx::bmi1) { host_isa |= instruction_set::BMI1; } if (ebx & cpuid_bit::ebx::bmi2) { host_isa |= instruction_set::BMI2; } if (!((xcr0 & cpuid_bit::xcr0_bit::avx512_saved) == cpuid_bit::xcr0_bit::avx512_saved)) { return host_isa; } if (ebx & cpuid_bit::ebx::avx512f) { host_isa |= instruction_set::AVX512F; } if (ebx & cpuid_bit::ebx::avx512bw) { host_isa |= instruction_set::AVX512BW; } if (ebx & cpuid_bit::ebx::avx512cd) { host_isa |= instruction_set::AVX512CD; } if (ebx & cpuid_bit::ebx::avx512dq) { host_isa |= instruction_set::AVX512DQ; } if (ebx & cpuid_bit::ebx::avx512vl) { host_isa |= instruction_set::AVX512VL; } if (ecx & cpuid_bit::ecx::avx512vbmi2) { host_isa |= instruction_set::AVX512VBMI2; } if (ecx & cpuid_bit::ecx::avx512vpopcnt) { host_isa |= instruction_set::AVX512VPOPCNTDQ; } return host_isa; } #elif defined(__loongarch__) static inline uint32_t detect_supported_architectures() { uint32_t host_isa = instruction_set::DEFAULT; #if defined(__linux__) uint64_t hwcap = 0; hwcap = getauxval(AT_HWCAP); if (hwcap & HWCAP_LOONGARCH_LSX) { host_isa |= instruction_set::LSX; } if (hwcap & HWCAP_LOONGARCH_LASX) { host_isa |= instruction_set::LASX; } #endif return host_isa; } #else // fallback // includes 32-bit ARM. static inline uint32_t detect_supported_architectures() { return instruction_set::DEFAULT; } #endif // end SIMD extension detection code } // namespace internal } // namespace simdutf #endif // SIMDutf_INTERNAL_ISADETECTION_H /* end file include/simdutf/internal/isadetection.h */ #if SIMDUTF_SPAN #include #include #include #include #endif #if SIMDUTF_CPLUSPLUS17 #include #endif // The following defines are conditionally enabled/disabled during amalgamation. // By default all features are enabled, regular code shouldn't check them. Only // when user code really relies of a selected subset, it's good to verify these // flags, like: // // #if !SIMDUTF_FEATURE_UTF16 // # error("Please amalgamate simdutf with UTF-16 support") // #endif // #define SIMDUTF_FEATURE_DETECT_ENCODING 1 #define SIMDUTF_FEATURE_ASCII 1 #define SIMDUTF_FEATURE_LATIN1 1 #define SIMDUTF_FEATURE_UTF8 1 #define SIMDUTF_FEATURE_UTF16 1 #define SIMDUTF_FEATURE_UTF32 1 #define SIMDUTF_FEATURE_BASE64 1 namespace simdutf { constexpr size_t default_line_length = 76; ///< default line length for base64 encoding with lines #if SIMDUTF_SPAN /// helpers placed in namespace detail are not a part of the public API namespace detail { /** * matches a byte, in the many ways C++ allows. note that these * are all distinct types. */ template concept byte_like = std::is_same_v || // std::is_same_v || // std::is_same_v || // std::is_same_v; template concept is_byte_like = byte_like>; template concept is_pointer = std::is_pointer_v; /** * matches anything that behaves like std::span and points to character-like * data such as: std::byte, char, unsigned char, signed char, std::int8_t, * std::uint8_t */ template concept input_span_of_byte_like = requires(const T &t) { { t.size() } noexcept -> std::convertible_to; { t.data() } noexcept -> is_pointer; { *t.data() } noexcept -> is_byte_like; }; template concept is_mutable = !std::is_const_v>; /** * like span_of_byte_like, but for an output span (intended to be written to) */ template concept output_span_of_byte_like = requires(T &t) { { t.size() } noexcept -> std::convertible_to; { t.data() } noexcept -> is_pointer; { *t.data() } noexcept -> is_byte_like; { *t.data() } noexcept -> is_mutable; }; } // namespace detail #endif #if SIMDUTF_FEATURE_DETECT_ENCODING /** * Autodetect the encoding of the input, a single encoding is recommended. * E.g., the function might return simdutf::encoding_type::UTF8, * simdutf::encoding_type::UTF16_LE, simdutf::encoding_type::UTF16_BE, or * simdutf::encoding_type::UTF32_LE. * * @param input the string to analyze. * @param length the length of the string in bytes. * @return the detected encoding type */ simdutf_warn_unused simdutf::encoding_type autodetect_encoding(const char *input, size_t length) noexcept; simdutf_really_inline simdutf_warn_unused simdutf::encoding_type autodetect_encoding(const uint8_t *input, size_t length) noexcept { return autodetect_encoding(reinterpret_cast(input), length); } #if SIMDUTF_SPAN /** * Autodetect the encoding of the input, a single encoding is recommended. * E.g., the function might return simdutf::encoding_type::UTF8, * simdutf::encoding_type::UTF16_LE, simdutf::encoding_type::UTF16_BE, or * simdutf::encoding_type::UTF32_LE. * * @param input the string to analyze. can be a anything span-like that has a * data() and size() that points to character data: std::string, * std::string_view, std::vector, std::span etc. * @return the detected encoding type */ simdutf_really_inline simdutf_warn_unused simdutf::encoding_type autodetect_encoding( const detail::input_span_of_byte_like auto &input) noexcept { return autodetect_encoding(reinterpret_cast(input.data()), input.size()); } #endif // SIMDUTF_SPAN /** * Autodetect the possible encodings of the input in one pass. * E.g., if the input might be UTF-16LE or UTF-8, this function returns * the value (simdutf::encoding_type::UTF8 | simdutf::encoding_type::UTF16_LE). * * Overridden by each implementation. * * @param input the string to analyze. * @param length the length of the string in bytes. * @return the detected encoding type */ simdutf_warn_unused int detect_encodings(const char *input, size_t length) noexcept; simdutf_really_inline simdutf_warn_unused int detect_encodings(const uint8_t *input, size_t length) noexcept { return detect_encodings(reinterpret_cast(input), length); } #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused int detect_encodings(const detail::input_span_of_byte_like auto &input) noexcept { return detect_encodings(reinterpret_cast(input.data()), input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING /** * Validate the UTF-8 string. This function may be best when you expect * the input to be almost always valid. Otherwise, consider using * validate_utf8_with_errors. * * Overridden by each implementation. * * @param buf the UTF-8 string to validate. * @param len the length of the string in bytes. * @return true if and only if the string is valid UTF-8. */ simdutf_warn_unused bool validate_utf8(const char *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused bool validate_utf8(const detail::input_span_of_byte_like auto &input) noexcept { return validate_utf8(reinterpret_cast(input.data()), input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 /** * Validate the UTF-8 string and stop on error. * * Overridden by each implementation. * * @param buf the UTF-8 string to validate. * @param len the length of the string in bytes. * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated if * successful. */ simdutf_warn_unused result validate_utf8_with_errors(const char *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result validate_utf8_with_errors( const detail::input_span_of_byte_like auto &input) noexcept { return validate_utf8_with_errors(reinterpret_cast(input.data()), input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII /** * Validate the ASCII string. * * Overridden by each implementation. * * @param buf the ASCII string to validate. * @param len the length of the string in bytes. * @return true if and only if the string is valid ASCII. */ simdutf_warn_unused bool validate_ascii(const char *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused bool validate_ascii(const detail::input_span_of_byte_like auto &input) noexcept { return validate_ascii(reinterpret_cast(input.data()), input.size()); } #endif // SIMDUTF_SPAN /** * Validate the ASCII string and stop on error. It might be faster than * validate_utf8 when an error is expected to occur early. * * Overridden by each implementation. * * @param buf the ASCII string to validate. * @param len the length of the string in bytes. * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated if * successful. */ simdutf_warn_unused result validate_ascii_with_errors(const char *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result validate_ascii_with_errors( const detail::input_span_of_byte_like auto &input) noexcept { return validate_ascii_with_errors( reinterpret_cast(input.data()), input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII /** * Validate the ASCII string as a UTF-16 sequence. * An UTF-16 sequence is considered an ASCII sequence * if it could be converted to an ASCII string losslessly. * * Overridden by each implementation. * * @param buf the UTF-16 string to validate. * @param len the length of the string in bytes. * @return true if and only if the string is valid ASCII. */ simdutf_warn_unused bool validate_utf16_as_ascii(const char16_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused bool validate_utf16_as_ascii(std::span input) noexcept { return validate_utf16_as_ascii(input.data(), input.size()); } #endif // SIMDUTF_SPAN /** * Validate the ASCII string as a UTF-16BE sequence. * An UTF-16 sequence is considered an ASCII sequence * if it could be converted to an ASCII string losslessly. * * Overridden by each implementation. * * @param buf the UTF-16BE string to validate. * @param len the length of the string in bytes. * @return true if and only if the string is valid ASCII. */ simdutf_warn_unused bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused bool validate_utf16be_as_ascii(std::span input) noexcept { return validate_utf16be_as_ascii(input.data(), input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII /** * Validate the ASCII string as a UTF-16LE sequence. * An UTF-16 sequence is considered an ASCII sequence * if it could be converted to an ASCII string losslessly. * * Overridden by each implementation. * * @param buf the UTF-16LE string to validate. * @param len the length of the string in bytes. * @return true if and only if the string is valid ASCII. */ simdutf_warn_unused bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused bool validate_utf16le_as_ascii(std::span input) noexcept { return validate_utf16le_as_ascii(input.data(), input.size()); } #endif // SIMDUTF_SPAN #if SIMDUTF_FEATURE_UTF16 /** * Using native endianness; Validate the UTF-16 string. * This function may be best when you expect the input to be almost always * valid. Otherwise, consider using validate_utf16_with_errors. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-16 string to validate. * @param len the length of the string in number of 2-byte code units * (char16_t). * @return true if and only if the string is valid UTF-16. */ simdutf_warn_unused bool validate_utf16(const char16_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused bool validate_utf16(std::span input) noexcept { return validate_utf16(input.data(), input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING /** * Validate the UTF-16LE string. This function may be best when you expect * the input to be almost always valid. Otherwise, consider using * validate_utf16le_with_errors. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-16LE string to validate. * @param len the length of the string in number of 2-byte code units * (char16_t). * @return true if and only if the string is valid UTF-16LE. */ simdutf_warn_unused bool validate_utf16le(const char16_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused bool validate_utf16le(std::span input) noexcept { return validate_utf16le(input.data(), input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 /** * Validate the UTF-16BE string. This function may be best when you expect * the input to be almost always valid. Otherwise, consider using * validate_utf16be_with_errors. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-16BE string to validate. * @param len the length of the string in number of 2-byte code units * (char16_t). * @return true if and only if the string is valid UTF-16BE. */ simdutf_warn_unused bool validate_utf16be(const char16_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused bool validate_utf16be(std::span input) noexcept { return validate_utf16be(input.data(), input.size()); } #endif // SIMDUTF_SPAN /** * Using native endianness; Validate the UTF-16 string and stop on error. * It might be faster than validate_utf16 when an error is expected to occur * early. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-16 string to validate. * @param len the length of the string in number of 2-byte code units * (char16_t). * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated if * successful. */ simdutf_warn_unused result validate_utf16_with_errors(const char16_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result validate_utf16_with_errors(std::span input) noexcept { return validate_utf16_with_errors(input.data(), input.size()); } #endif // SIMDUTF_SPAN /** * Validate the UTF-16LE string and stop on error. It might be faster than * validate_utf16le when an error is expected to occur early. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-16LE string to validate. * @param len the length of the string in number of 2-byte code units * (char16_t). * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated if * successful. */ simdutf_warn_unused result validate_utf16le_with_errors(const char16_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result validate_utf16le_with_errors(std::span input) noexcept { return validate_utf16le_with_errors(input.data(), input.size()); } #endif // SIMDUTF_SPAN /** * Validate the UTF-16BE string and stop on error. It might be faster than * validate_utf16be when an error is expected to occur early. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-16BE string to validate. * @param len the length of the string in number of 2-byte code units * (char16_t). * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated if * successful. */ simdutf_warn_unused result validate_utf16be_with_errors(const char16_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result validate_utf16be_with_errors(std::span input) noexcept { return validate_utf16be_with_errors(input.data(), input.size()); } #endif // SIMDUTF_SPAN /** * Fixes an ill-formed UTF-16LE string by replacing mismatched surrogates with * the Unicode replacement character U+FFFD. If input and output points to * different memory areas, the procedure copies string, and it's expected that * output memory is at least as big as the input. It's also possible to set * input equal output, that makes replacements an in-place operation. * * @param input the UTF-16LE string to correct. * @param len the length of the string in number of 2-byte code units * (char16_t). * @param output the output buffer. */ void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline void to_well_formed_utf16le(std::span input, std::span output) noexcept { to_well_formed_utf16le(input.data(), input.size(), output.data()); } #endif // SIMDUTF_SPAN /** * Fixes an ill-formed UTF-16BE string by replacing mismatched surrogates with * the Unicode replacement character U+FFFD. If input and output points to * different memory areas, the procedure copies string, and it's expected that * output memory is at least as big as the input. It's also possible to set * input equal output, that makes replacements an in-place operation. * * @param input the UTF-16BE string to correct. * @param len the length of the string in number of 2-byte code units * (char16_t). * @param output the output buffer. */ void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline void to_well_formed_utf16be(std::span input, std::span output) noexcept { to_well_formed_utf16be(input.data(), input.size(), output.data()); } #endif // SIMDUTF_SPAN /** * Fixes an ill-formed UTF-16 string by replacing mismatched surrogates with the * Unicode replacement character U+FFFD. If input and output points to different * memory areas, the procedure copies string, and it's expected that output * memory is at least as big as the input. It's also possible to set input equal * output, that makes replacements an in-place operation. * * @param input the UTF-16 string to correct. * @param len the length of the string in number of 2-byte code units * (char16_t). * @param output the output buffer. */ void to_well_formed_utf16(const char16_t *input, size_t len, char16_t *output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline void to_well_formed_utf16(std::span input, std::span output) noexcept { to_well_formed_utf16(input.data(), input.size(), output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING /** * Validate the UTF-32 string. This function may be best when you expect * the input to be almost always valid. Otherwise, consider using * validate_utf32_with_errors. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-32 string to validate. * @param len the length of the string in number of 4-byte code units * (char32_t). * @return true if and only if the string is valid UTF-32. */ simdutf_warn_unused bool validate_utf32(const char32_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused bool validate_utf32(std::span input) noexcept { return validate_utf32(input.data(), input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 /** * Validate the UTF-32 string and stop on error. It might be faster than * validate_utf32 when an error is expected to occur early. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-32 string to validate. * @param len the length of the string in number of 4-byte code units * (char32_t). * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated if * successful. */ simdutf_warn_unused result validate_utf32_with_errors(const char32_t *buf, size_t len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result validate_utf32_with_errors(std::span input) noexcept { return validate_utf32_with_errors(input.data(), input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /** * Convert Latin1 string into UTF-8 string. * * This function is suitable to work with inputs from untrusted sources. * * @param input the Latin1 string to convert * @param length the length of the string in bytes * @param utf8_output the pointer to buffer that can hold conversion result * @return the number of written char; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_latin1_to_utf8(const char *input, size_t length, char *utf8_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_latin1_to_utf8( const detail::input_span_of_byte_like auto &latin1_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_latin1_to_utf8( reinterpret_cast(latin1_input.data()), latin1_input.size(), utf8_output.data()); } #endif // SIMDUTF_SPAN /** * Convert Latin1 string into UTF-8 string with output limit. * * This function is suitable to work with inputs from untrusted sources. * * We write as many characters as possible. * * @param input the Latin1 string to convert * @param length the length of the string in bytes * @param utf8_output the pointer to buffer that can hold conversion result * @param utf8_len the maximum output length * @return the number of written char; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_latin1_to_utf8_safe(const char *input, size_t length, char *utf8_output, size_t utf8_len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_latin1_to_utf8_safe( const detail::input_span_of_byte_like auto &input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { // implementation note: outputspan is a forwarding ref to avoid copying and // allow both lvalues and rvalues. std::span can be copied without problems, // but std::vector should not, and this function should accept both. it will // allow using an owning rvalue ref (example: passing a temporary std::string) // as output, but the user will quickly find out that he has no way of getting // the data out of the object in that case. return convert_latin1_to_utf8_safe( input.data(), input.size(), reinterpret_cast(utf8_output.data()), utf8_output.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /** * Convert possibly Latin1 string into UTF-16LE string. * * This function is suitable to work with inputs from untrusted sources. * * @param input the Latin1 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_latin1_to_utf16le( const char *input, size_t length, char16_t *utf16_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_latin1_to_utf16le( const detail::input_span_of_byte_like auto &latin1_input, std::span utf16_output) noexcept { return convert_latin1_to_utf16le( reinterpret_cast(latin1_input.data()), latin1_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert Latin1 string into UTF-16BE string. * * This function is suitable to work with inputs from untrusted sources. * * @param input the Latin1 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_latin1_to_utf16be( const char *input, size_t length, char16_t *utf16_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_latin1_to_utf16be(const detail::input_span_of_byte_like auto &input, std::span output) noexcept { return convert_latin1_to_utf16be(reinterpret_cast(input.data()), input.size(), output.data()); } #endif // SIMDUTF_SPAN /** * Compute the number of bytes that this UTF-16 string would require in Latin1 * format. * * @param length the length of the string in Latin1 code units (char) * @return the length of the string in Latin1 code units (char) required to * encode the UTF-16 string as Latin1 */ simdutf_warn_unused size_t latin1_length_from_utf16(size_t length) noexcept; /** * Compute the number of code units that this Latin1 string would require in * UTF-16 format. * * @param length the length of the string in Latin1 code units (char) * @return the length of the string in 2-byte code units (char16_t) required to * encode the Latin1 string as UTF-16 */ simdutf_warn_unused size_t utf16_length_from_latin1(size_t length) noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /** * Convert Latin1 string into UTF-32 string. * * This function is suitable to work with inputs from untrusted sources. * * @param input the Latin1 string to convert * @param length the length of the string in bytes * @param utf32_buffer the pointer to buffer that can hold conversion result * @return the number of written char32_t; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_latin1_to_utf32( const char *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_latin1_to_utf32( const detail::input_span_of_byte_like auto &latin1_input, std::span utf32_output) noexcept { return convert_latin1_to_utf32( reinterpret_cast(latin1_input.data()), latin1_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /** * Convert possibly broken UTF-8 string into latin1 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param latin1_output the pointer to buffer that can hold conversion result * @return the number of written char; 0 if the input was not valid UTF-8 string * or if it cannot be represented as Latin1 */ simdutf_warn_unused size_t convert_utf8_to_latin1(const char *input, size_t length, char *latin1_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf8_to_latin1( const detail::input_span_of_byte_like auto &input, detail::output_span_of_byte_like auto &&output) noexcept { return convert_utf8_to_latin1(reinterpret_cast(input.data()), input.size(), reinterpret_cast(output.data())); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Using native endianness, convert possibly broken UTF-8 string into a UTF-16 * string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t; 0 if the input was not valid UTF-8 * string */ simdutf_warn_unused size_t convert_utf8_to_utf16( const char *input, size_t length, char16_t *utf16_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf8_to_utf16(const detail::input_span_of_byte_like auto &input, std::span output) noexcept { return convert_utf8_to_utf16(reinterpret_cast(input.data()), input.size(), output.data()); } #endif // SIMDUTF_SPAN /** * Compute the number of bytes that this UTF-16LE string would require in UTF-8 * format even when the UTF-16LE content contains mismatched surrogates * that have to be replaced by the replacement character (0xFFFD). * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @return a result pair struct (of type simdutf::result containing the two * fields error and count) where the count is the number of bytes required to * encode the UTF-16LE string as UTF-8, and the error code is either SUCCESS or * SURROGATE. The count is correct regardless of the error field. * When SURROGATE is returned, it does not indicate an error in the case of this * function: it indicates that at least one surrogate has been encountered: the * surrogates may be matched or not (thus this function does not validate). If * the returned error code is SUCCESS, then the input contains no surrogate, is * in the Basic Multilingual Plane, and is necessarily valid. */ simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( std::span valid_utf16_input) noexcept { return utf8_length_from_utf16le_with_replacement(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN /** * Compute the number of bytes that this UTF-16BE string would require in UTF-8 * format even when the UTF-16BE content contains mismatched surrogates * that have to be replaced by the replacement character (0xFFFD). * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @return a result pair struct (of type simdutf::result containing the two * fields error and count) where the count is the number of bytes required to * encode the UTF-16BE string as UTF-8, and the error code is either SUCCESS or * SURROGATE. The count is correct regardless of the error field. * When SURROGATE is returned, it does not indicate an error in the case of this * function: it indicates that at least one surrogate has been encountered: the * surrogates may be matched or not (thus this function does not validate). If * the returned error code is SUCCESS, then the input contains no surrogate, is * in the Basic Multilingual Plane, and is necessarily valid. */ simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( std::span valid_utf16_input) noexcept { return utf8_length_from_utf16be_with_replacement(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /** * Using native endianness, convert a Latin1 string into a UTF-16 string. * * @param input the Latin1 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t. */ simdutf_warn_unused size_t convert_latin1_to_utf16( const char *input, size_t length, char16_t *utf16_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_latin1_to_utf16(const detail::input_span_of_byte_like auto &input, std::span output) noexcept { return convert_latin1_to_utf16(reinterpret_cast(input.data()), input.size(), output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Convert possibly broken UTF-8 string into UTF-16LE string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t; 0 if the input was not valid UTF-8 * string */ simdutf_warn_unused size_t convert_utf8_to_utf16le( const char *input, size_t length, char16_t *utf16_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf8_to_utf16le(const detail::input_span_of_byte_like auto &utf8_input, std::span utf16_output) noexcept { return convert_utf8_to_utf16le( reinterpret_cast(utf8_input.data()), utf8_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-8 string into UTF-16BE string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t; 0 if the input was not valid UTF-8 * string */ simdutf_warn_unused size_t convert_utf8_to_utf16be( const char *input, size_t length, char16_t *utf16_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf8_to_utf16be(const detail::input_span_of_byte_like auto &utf8_input, std::span utf16_output) noexcept { return convert_utf8_to_utf16be( reinterpret_cast(utf8_input.data()), utf8_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /** * Convert possibly broken UTF-8 string into latin1 string with errors. * If the string cannot be represented as Latin1, an error * code is returned. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param latin1_output the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated if * successful. */ simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const char *input, size_t length, char *latin1_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf8_to_latin1_with_errors( const detail::input_span_of_byte_like auto &utf8_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_utf8_to_latin1_with_errors( reinterpret_cast(utf8_input.data()), utf8_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Using native endianness, convert possibly broken UTF-8 string into UTF-16 * string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char16_t written if * successful. */ simdutf_warn_unused result convert_utf8_to_utf16_with_errors( const char *input, size_t length, char16_t *utf16_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf8_to_utf16_with_errors( const detail::input_span_of_byte_like auto &utf8_input, std::span utf16_output) noexcept { return convert_utf8_to_utf16_with_errors( reinterpret_cast(utf8_input.data()), utf8_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-8 string into UTF-16LE string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char16_t written if * successful. */ simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const char *input, size_t length, char16_t *utf16_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf8_to_utf16le_with_errors( const detail::input_span_of_byte_like auto &utf8_input, std::span utf16_output) noexcept { return convert_utf8_to_utf16le_with_errors( reinterpret_cast(utf8_input.data()), utf8_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-8 string into UTF-16BE string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char16_t written if * successful. */ simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const char *input, size_t length, char16_t *utf16_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf8_to_utf16be_with_errors( const detail::input_span_of_byte_like auto &utf8_input, std::span utf16_output) noexcept { return convert_utf8_to_utf16be_with_errors( reinterpret_cast(utf8_input.data()), utf8_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /** * Convert possibly broken UTF-8 string into UTF-32 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf32_buffer the pointer to buffer that can hold conversion result * @return the number of written char32_t; 0 if the input was not valid UTF-8 * string */ simdutf_warn_unused size_t convert_utf8_to_utf32( const char *input, size_t length, char32_t *utf32_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf8_to_utf32(const detail::input_span_of_byte_like auto &utf8_input, std::span utf32_output) noexcept { return convert_utf8_to_utf32( reinterpret_cast(utf8_input.data()), utf8_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-8 string into UTF-32 string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf32_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char32_t written if * successful. */ simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const char *input, size_t length, char32_t *utf32_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf8_to_utf32_with_errors( const detail::input_span_of_byte_like auto &utf8_input, std::span utf32_output) noexcept { return convert_utf8_to_utf32_with_errors( reinterpret_cast(utf8_input.data()), utf8_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /** * Convert valid UTF-8 string into latin1 string. * * This function assumes that the input string is valid UTF-8 and that it can be * represented as Latin1. If you violate this assumption, the result is * implementation defined and may include system-dependent behavior such as * crashes. * * This function is for expert users only and not part of our public API. Use * convert_utf8_to_latin1 instead. The function may be removed from the library * in the future. * * This function is not BOM-aware. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param latin1_output the pointer to buffer that can hold conversion result * @return the number of written char; 0 if the input was not valid UTF-8 string */ simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const char *input, size_t length, char *latin1_output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf8_to_latin1( const detail::input_span_of_byte_like auto &valid_utf8_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_valid_utf8_to_latin1( reinterpret_cast(valid_utf8_input.data()), valid_utf8_input.size(), latin1_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Using native endianness, convert valid UTF-8 string into a UTF-16 string. * * This function assumes that the input string is valid UTF-8. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t */ simdutf_warn_unused size_t convert_valid_utf8_to_utf16( const char *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf8_to_utf16( const detail::input_span_of_byte_like auto &valid_utf8_input, std::span utf16_output) noexcept { return convert_valid_utf8_to_utf16( reinterpret_cast(valid_utf8_input.data()), valid_utf8_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-8 string into UTF-16LE string. * * This function assumes that the input string is valid UTF-8. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t */ simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const char *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf8_to_utf16le( const detail::input_span_of_byte_like auto &valid_utf8_input, std::span utf16_output) noexcept { return convert_valid_utf8_to_utf16le( reinterpret_cast(valid_utf8_input.data()), valid_utf8_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-8 string into UTF-16BE string. * * This function assumes that the input string is valid UTF-8. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t */ simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const char *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf8_to_utf16be( const detail::input_span_of_byte_like auto &valid_utf8_input, std::span utf16_output) noexcept { return convert_valid_utf8_to_utf16be( reinterpret_cast(valid_utf8_input.data()), valid_utf8_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /** * Convert valid UTF-8 string into UTF-32 string. * * This function assumes that the input string is valid UTF-8. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf32_buffer the pointer to buffer that can hold conversion result * @return the number of written char32_t */ simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const char *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf8_to_utf32( const detail::input_span_of_byte_like auto &valid_utf8_input, std::span utf32_output) noexcept { return convert_valid_utf8_to_utf32( reinterpret_cast(valid_utf8_input.data()), valid_utf8_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /** * Return the number of bytes that this Latin1 string would require in UTF-8 * format. * * @param input the Latin1 string to convert * @param length the length of the string bytes * @return the number of bytes required to encode the Latin1 string as UTF-8 */ simdutf_warn_unused size_t utf8_length_from_latin1(const char *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf8_length_from_latin1( const detail::input_span_of_byte_like auto &latin1_input) noexcept { return utf8_length_from_latin1( reinterpret_cast(latin1_input.data()), latin1_input.size()); } #endif // SIMDUTF_SPAN /** * Compute the number of bytes that this UTF-8 string would require in Latin1 * format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-8 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-8 string to convert * @param length the length of the string in byte * @return the number of bytes required to encode the UTF-8 string as Latin1 */ simdutf_warn_unused size_t latin1_length_from_utf8(const char *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t latin1_length_from_utf8( const detail::input_span_of_byte_like auto &valid_utf8_input) noexcept { return latin1_length_from_utf8( reinterpret_cast(valid_utf8_input.data()), valid_utf8_input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Compute the number of 2-byte code units that this UTF-8 string would require * in UTF-16LE format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-8 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-8 string to process * @param length the length of the string in bytes * @return the number of char16_t code units required to encode the UTF-8 string * as UTF-16LE */ simdutf_warn_unused size_t utf16_length_from_utf8(const char *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf16_length_from_utf8( const detail::input_span_of_byte_like auto &valid_utf8_input) noexcept { return utf16_length_from_utf8( reinterpret_cast(valid_utf8_input.data()), valid_utf8_input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /** * Compute the number of 4-byte code units that this UTF-8 string would require * in UTF-32 format. * * This function is equivalent to count_utf8 * * This function does not validate the input. It is acceptable to pass invalid * UTF-8 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-8 string to process * @param length the length of the string in bytes * @return the number of char32_t code units required to encode the UTF-8 string * as UTF-32 */ simdutf_warn_unused size_t utf32_length_from_utf8(const char *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf32_length_from_utf8( const detail::input_span_of_byte_like auto &valid_utf8_input) noexcept { return utf32_length_from_utf8( reinterpret_cast(valid_utf8_input.data()), valid_utf8_input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Using native endianness, convert possibly broken UTF-16 string into UTF-8 * string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16LE * string */ simdutf_warn_unused size_t convert_utf16_to_utf8(const char16_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf16_to_utf8( std::span utf16_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_utf16_to_utf8(utf16_input.data(), utf16_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN /** * Using native endianness, convert possibly broken UTF-16 string into UTF-8 * string with output limit. * * We write as many characters as possible into the output buffer, * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * * @param input the UTF-16 string to convert * @param length the length of the string in 16-bit code units (char16_t) * @param utf8_output the pointer to buffer that can hold conversion result * @param utf8_len the maximum output length * @return the number of written char; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_utf16_to_utf8_safe(const char16_t *input, size_t length, char *utf8_output, size_t utf8_len) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf16_to_utf8_safe( std::span utf16_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { // implementation note: outputspan is a forwarding ref to avoid copying and // allow both lvalues and rvalues. std::span can be copied without problems, // but std::vector should not, and this function should accept both. it will // allow using an owning rvalue ref (example: passing a temporary std::string) // as output, but the user will quickly find out that he has no way of getting // the data out of the object in that case. return convert_utf16_to_utf8_safe( utf16_input.data(), utf16_input.size(), reinterpret_cast(utf8_output.data()), utf8_output.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /** * Using native endianness, convert possibly broken UTF-16 string into Latin1 * string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16 string * or if it cannot be represented as Latin1 */ simdutf_warn_unused size_t convert_utf16_to_latin1( const char16_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf16_to_latin1( std::span utf16_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_utf16_to_latin1( utf16_input.data(), utf16_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16LE string into Latin1 string. * If the string cannot be represented as Latin1, an error * is returned. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16LE * string or if it cannot be represented as Latin1 */ simdutf_warn_unused size_t convert_utf16le_to_latin1( const char16_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf16le_to_latin1( std::span utf16_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_utf16le_to_latin1( utf16_input.data(), utf16_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16BE string into Latin1 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16BE * string or if it cannot be represented as Latin1 */ simdutf_warn_unused size_t convert_utf16be_to_latin1( const char16_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf16be_to_latin1( std::span utf16_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_utf16be_to_latin1( utf16_input.data(), utf16_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Convert possibly broken UTF-16LE string into UTF-8 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16LE * string */ simdutf_warn_unused size_t convert_utf16le_to_utf8(const char16_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf16le_to_utf8( std::span utf16_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_utf16le_to_utf8(utf16_input.data(), utf16_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16BE string into UTF-8 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16LE * string */ simdutf_warn_unused size_t convert_utf16be_to_utf8(const char16_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf16be_to_utf8( std::span utf16_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_utf16be_to_utf8(utf16_input.data(), utf16_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /** * Using native endianness, convert possibly broken UTF-16 string into Latin1 * string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * This function is not BOM-aware. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused result convert_utf16_to_latin1_with_errors( const char16_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf16_to_latin1_with_errors( std::span utf16_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_utf16_to_latin1_with_errors( utf16_input.data(), utf16_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16LE string into Latin1 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( const char16_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf16le_to_latin1_with_errors( std::span utf16_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_utf16le_to_latin1_with_errors( utf16_input.data(), utf16_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16BE string into Latin1 string. * If the string cannot be represented as Latin1, an error * is returned. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( const char16_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf16be_to_latin1_with_errors( std::span utf16_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_utf16be_to_latin1_with_errors( utf16_input.data(), utf16_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Using native endianness, convert possibly broken UTF-16 string into UTF-8 * string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused result convert_utf16_to_utf8_with_errors( const char16_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf16_to_utf8_with_errors( std::span utf16_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_utf16_to_utf8_with_errors( utf16_input.data(), utf16_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16LE string into UTF-8 string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( const char16_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf16le_to_utf8_with_errors( std::span utf16_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_utf16le_to_utf8_with_errors( utf16_input.data(), utf16_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16BE string into UTF-8 string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( const char16_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf16be_to_utf8_with_errors( std::span utf16_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_utf16be_to_utf8_with_errors( utf16_input.data(), utf16_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN /** * Using native endianness, convert valid UTF-16 string into UTF-8 string. * * This function assumes that the input string is valid UTF-16LE. * * This function is not BOM-aware. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf8_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf16_to_utf8( const char16_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf16_to_utf8( std::span valid_utf16_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_valid_utf16_to_utf8( valid_utf16_input.data(), valid_utf16_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /** * Using native endianness, convert UTF-16 string into Latin1 string. * * This function assumes that the input string is valid UTF-16 and that it can * be represented as Latin1. If you violate this assumption, the result is * implementation defined and may include system-dependent behavior such as * crashes. * * This function is for expert users only and not part of our public API. Use * convert_utf16_to_latin1 instead. The function may be removed from the library * in the future. * * This function is not BOM-aware. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf16_to_latin1( const char16_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf16_to_latin1( std::span valid_utf16_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_valid_utf16_to_latin1( valid_utf16_input.data(), valid_utf16_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-16LE string into Latin1 string. * * This function assumes that the input string is valid UTF-16LE and that it can * be represented as Latin1. If you violate this assumption, the result is * implementation defined and may include system-dependent behavior such as * crashes. * * This function is for expert users only and not part of our public API. Use * convert_utf16le_to_latin1 instead. The function may be removed from the * library in the future. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf16le_to_latin1( const char16_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf16le_to_latin1( std::span valid_utf16_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_valid_utf16le_to_latin1( valid_utf16_input.data(), valid_utf16_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-16BE string into Latin1 string. * * This function assumes that the input string is valid UTF-16BE and that it can * be represented as Latin1. If you violate this assumption, the result is * implementation defined and may include system-dependent behavior such as * crashes. * * This function is for expert users only and not part of our public API. Use * convert_utf16be_to_latin1 instead. The function may be removed from the * library in the future. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf16be_to_latin1( const char16_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf16be_to_latin1( std::span valid_utf16_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_valid_utf16be_to_latin1( valid_utf16_input.data(), valid_utf16_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Convert valid UTF-16LE string into UTF-8 string. * * This function assumes that the input string is valid UTF-16LE and that it can * be represented as Latin1. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf8_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( const char16_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf16le_to_utf8( std::span valid_utf16_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_valid_utf16le_to_utf8( valid_utf16_input.data(), valid_utf16_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-16BE string into UTF-8 string. * * This function assumes that the input string is valid UTF-16BE. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf8_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( const char16_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf16be_to_utf8( std::span valid_utf16_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_valid_utf16be_to_utf8( valid_utf16_input.data(), valid_utf16_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /** * Using native endianness, convert possibly broken UTF-16 string into UTF-32 * string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf32_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16LE * string */ simdutf_warn_unused size_t convert_utf16_to_utf32( const char16_t *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf16_to_utf32(std::span utf16_input, std::span utf32_output) noexcept { return convert_utf16_to_utf32(utf16_input.data(), utf16_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16LE string into UTF-32 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf32_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16LE * string */ simdutf_warn_unused size_t convert_utf16le_to_utf32( const char16_t *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf16le_to_utf32(std::span utf16_input, std::span utf32_output) noexcept { return convert_utf16le_to_utf32(utf16_input.data(), utf16_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16BE string into UTF-32 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf32_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16LE * string */ simdutf_warn_unused size_t convert_utf16be_to_utf32( const char16_t *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf16be_to_utf32(std::span utf16_input, std::span utf32_output) noexcept { return convert_utf16be_to_utf32(utf16_input.data(), utf16_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN /** * Using native endianness, convert possibly broken UTF-16 string into * UTF-32 string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf32_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char32_t written if * successful. */ simdutf_warn_unused result convert_utf16_to_utf32_with_errors( const char16_t *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf16_to_utf32_with_errors(std::span utf16_input, std::span utf32_output) noexcept { return convert_utf16_to_utf32_with_errors( utf16_input.data(), utf16_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16LE string into UTF-32 string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf32_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char32_t written if * successful. */ simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( const char16_t *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf16le_to_utf32_with_errors( std::span utf16_input, std::span utf32_output) noexcept { return convert_utf16le_to_utf32_with_errors( utf16_input.data(), utf16_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-16BE string into UTF-32 string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf32_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char32_t written if * successful. */ simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( const char16_t *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf16be_to_utf32_with_errors( std::span utf16_input, std::span utf32_output) noexcept { return convert_utf16be_to_utf32_with_errors( utf16_input.data(), utf16_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN /** * Using native endianness, convert valid UTF-16 string into UTF-32 string. * * This function assumes that the input string is valid UTF-16 (native * endianness). * * This function is not BOM-aware. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf32_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf16_to_utf32( const char16_t *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf16_to_utf32(std::span valid_utf16_input, std::span utf32_output) noexcept { return convert_valid_utf16_to_utf32( valid_utf16_input.data(), valid_utf16_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-16LE string into UTF-32 string. * * This function assumes that the input string is valid UTF-16LE. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf32_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf16le_to_utf32( const char16_t *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf16le_to_utf32(std::span valid_utf16_input, std::span utf32_output) noexcept { return convert_valid_utf16le_to_utf32( valid_utf16_input.data(), valid_utf16_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-16BE string into UTF-32 string. * * This function assumes that the input string is valid UTF-16LE. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @param utf32_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf16be_to_utf32( const char16_t *input, size_t length, char32_t *utf32_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf16be_to_utf32(std::span valid_utf16_input, std::span utf32_output) noexcept { return convert_valid_utf16be_to_utf32( valid_utf16_input.data(), valid_utf16_input.size(), utf32_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /** * Compute the number of bytes that this UTF-16LE/BE string would require in * Latin1 format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param length the length of the string in 2-byte code units (char16_t) * @return the number of bytes required to encode the UTF-16LE string as Latin1 */ simdutf_warn_unused size_t latin1_length_from_utf16(size_t length) noexcept; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Using native endianness; Compute the number of bytes that this UTF-16 * string would require in UTF-8 format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @return the number of bytes required to encode the UTF-16LE string as UTF-8 */ simdutf_warn_unused size_t utf8_length_from_utf16(const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf8_length_from_utf16(std::span valid_utf16_input) noexcept { return utf8_length_from_utf16(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN /** * Using native endianness; compute the number of bytes that this UTF-16 * string would require in UTF-8 format even when the UTF-16LE content contains * mismatched surrogates that have to be replaced by the replacement character * (0xFFFD). * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @return a result pair struct (of type simdutf::result containing the two * fields error and count) where the count is the number of bytes required to * encode the UTF-16 string as UTF-8, and the error code is either SUCCESS or * SURROGATE. The count is correct regardless of the error field. * When SURROGATE is returned, it does not indicate an error in the case of this * function: it indicates that at least one surrogate has been encountered: the * surrogates may be matched or not (thus this function does not validate). If * the returned error code is SUCCESS, then the input contains no surrogate, is * in the Basic Multilingual Plane, and is necessarily valid. */ simdutf_warn_unused result utf8_length_from_utf16_with_replacement( const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result utf8_length_from_utf16_with_replacement( std::span valid_utf16_input) noexcept { return utf8_length_from_utf16_with_replacement(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN /** * Compute the number of bytes that this UTF-16LE string would require in UTF-8 * format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @return the number of bytes required to encode the UTF-16LE string as UTF-8 */ simdutf_warn_unused size_t utf8_length_from_utf16le(const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf8_length_from_utf16le(std::span valid_utf16_input) noexcept { return utf8_length_from_utf16le(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN /** * Compute the number of bytes that this UTF-16BE string would require in UTF-8 * format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @return the number of bytes required to encode the UTF-16BE string as UTF-8 */ simdutf_warn_unused size_t utf8_length_from_utf16be(const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf8_length_from_utf16be(std::span valid_utf16_input) noexcept { return utf8_length_from_utf16be(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /** * Convert possibly broken UTF-32 string into UTF-8 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-32 string */ simdutf_warn_unused size_t convert_utf32_to_utf8(const char32_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf32_to_utf8( std::span utf32_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_utf32_to_utf8(utf32_input.data(), utf32_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-32 string into UTF-8 string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused result convert_utf32_to_utf8_with_errors( const char32_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf32_to_utf8_with_errors( std::span utf32_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_utf32_to_utf8_with_errors( utf32_input.data(), utf32_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-32 string into UTF-8 string. * * This function assumes that the input string is valid UTF-32. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf8_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf32_to_utf8( const char32_t *input, size_t length, char *utf8_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf32_to_utf8( std::span valid_utf32_input, detail::output_span_of_byte_like auto &&utf8_output) noexcept { return convert_valid_utf32_to_utf8( valid_utf32_input.data(), valid_utf32_input.size(), reinterpret_cast(utf8_output.data())); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /** * Using native endianness, convert possibly broken UTF-32 string into a UTF-16 * string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf16_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-32 string */ simdutf_warn_unused size_t convert_utf32_to_utf16( const char32_t *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf32_to_utf16(std::span utf32_input, std::span utf16_output) noexcept { return convert_utf32_to_utf16(utf32_input.data(), utf32_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-32 string into UTF-16LE string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf16_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-32 string */ simdutf_warn_unused size_t convert_utf32_to_utf16le( const char32_t *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf32_to_utf16le(std::span utf32_input, std::span utf16_output) noexcept { return convert_utf32_to_utf16le(utf32_input.data(), utf32_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /** * Convert possibly broken UTF-32 string into Latin1 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-32 string * or if it cannot be represented as Latin1 */ simdutf_warn_unused size_t convert_utf32_to_latin1( const char32_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf32_to_latin1( std::span utf32_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_utf32_to_latin1( utf32_input.data(), utf32_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-32 string into Latin1 string and stop on error. * If the string cannot be represented as Latin1, an error is returned. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param latin1_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused result convert_utf32_to_latin1_with_errors( const char32_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf32_to_latin1_with_errors( std::span utf32_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_utf32_to_latin1_with_errors( utf32_input.data(), utf32_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-32 string into Latin1 string. * * This function assumes that the input string is valid UTF-32 and that it can * be represented as Latin1. If you violate this assumption, the result is * implementation defined and may include system-dependent behavior such as * crashes. * * This function is for expert users only and not part of our public API. Use * convert_utf32_to_latin1 instead. The function may be removed from the library * in the future. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param latin1_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf32_to_latin1( const char32_t *input, size_t length, char *latin1_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf32_to_latin1( std::span valid_utf32_input, detail::output_span_of_byte_like auto &&latin1_output) noexcept { return convert_valid_utf32_to_latin1( valid_utf32_input.data(), valid_utf32_input.size(), reinterpret_cast(latin1_output.data())); } #endif // SIMDUTF_SPAN /** * Compute the number of bytes that this UTF-32 string would require in Latin1 * format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-32 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param length the length of the string in 4-byte code units (char32_t) * @return the number of bytes required to encode the UTF-32 string as Latin1 */ simdutf_warn_unused size_t latin1_length_from_utf32(size_t length) noexcept; /** * Compute the number of bytes that this Latin1 string would require in UTF-32 * format. * * @param length the length of the string in Latin1 code units (char) * @return the length of the string in 4-byte code units (char32_t) required to * encode the Latin1 string as UTF-32 */ simdutf_warn_unused size_t utf32_length_from_latin1(size_t length) noexcept; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /** * Convert possibly broken UTF-32 string into UTF-16BE string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf16_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-32 string */ simdutf_warn_unused size_t convert_utf32_to_utf16be( const char32_t *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_utf32_to_utf16be(std::span utf32_input, std::span utf16_output) noexcept { return convert_utf32_to_utf16be(utf32_input.data(), utf32_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Using native endianness, convert possibly broken UTF-32 string into UTF-16 * string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf16_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char16_t written if * successful. */ simdutf_warn_unused result convert_utf32_to_utf16_with_errors( const char32_t *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf32_to_utf16_with_errors(std::span utf32_input, std::span utf16_output) noexcept { return convert_utf32_to_utf16_with_errors( utf32_input.data(), utf32_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-32 string into UTF-16LE string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf16_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char16_t written if * successful. */ simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( const char32_t *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf32_to_utf16le_with_errors( std::span utf32_input, std::span utf16_output) noexcept { return convert_utf32_to_utf16le_with_errors( utf32_input.data(), utf32_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert possibly broken UTF-32 string into UTF-16BE string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf16_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char16_t written if * successful. */ simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( const char32_t *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result convert_utf32_to_utf16be_with_errors( std::span utf32_input, std::span utf16_output) noexcept { return convert_utf32_to_utf16be_with_errors( utf32_input.data(), utf32_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Using native endianness, convert valid UTF-32 string into a UTF-16 string. * * This function assumes that the input string is valid UTF-32. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf16_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf32_to_utf16( const char32_t *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf32_to_utf16(std::span valid_utf32_input, std::span utf16_output) noexcept { return convert_valid_utf32_to_utf16( valid_utf32_input.data(), valid_utf32_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-32 string into UTF-16LE string. * * This function assumes that the input string is valid UTF-32. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf16_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf32_to_utf16le( const char32_t *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(std::span valid_utf32_input, std::span utf16_output) noexcept { return convert_valid_utf32_to_utf16le( valid_utf32_input.data(), valid_utf32_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN /** * Convert valid UTF-32 string into UTF-16BE string. * * This function assumes that the input string is valid UTF-32. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @param utf16_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused size_t convert_valid_utf32_to_utf16be( const char32_t *input, size_t length, char16_t *utf16_buffer) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(std::span valid_utf32_input, std::span utf16_output) noexcept { return convert_valid_utf32_to_utf16be( valid_utf32_input.data(), valid_utf32_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 /** * Change the endianness of the input. Can be used to go from UTF-16LE to * UTF-16BE or from UTF-16BE to UTF-16LE. * * This function does not validate the input. * * This function is not BOM-aware. * * @param input the UTF-16 string to process * @param length the length of the string in 2-byte code units (char16_t) * @param output the pointer to a buffer that can hold the conversion * result */ void change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) noexcept; #if SIMDUTF_SPAN simdutf_really_inline void change_endianness_utf16(std::span utf16_input, std::span utf16_output) noexcept { return change_endianness_utf16(utf16_input.data(), utf16_input.size(), utf16_output.data()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /** * Compute the number of bytes that this UTF-32 string would require in UTF-8 * format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-32 strings but in such cases the result is implementation defined. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @return the number of bytes required to encode the UTF-32 string as UTF-8 */ simdutf_warn_unused size_t utf8_length_from_utf32(const char32_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf8_length_from_utf32(std::span valid_utf32_input) noexcept { return utf8_length_from_utf32(valid_utf32_input.data(), valid_utf32_input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /** * Compute the number of two-byte code units that this UTF-32 string would * require in UTF-16 format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-32 strings but in such cases the result is implementation defined. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units (char32_t) * @return the number of bytes required to encode the UTF-32 string as UTF-16 */ simdutf_warn_unused size_t utf16_length_from_utf32(const char32_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf16_length_from_utf32(std::span valid_utf32_input) noexcept { return utf16_length_from_utf32(valid_utf32_input.data(), valid_utf32_input.size()); } #endif // SIMDUTF_SPAN /** * Using native endianness; Compute the number of bytes that this UTF-16 * string would require in UTF-32 format. * * This function is equivalent to count_utf16. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units (char16_t) * @return the number of bytes required to encode the UTF-16LE string as UTF-32 */ simdutf_warn_unused size_t utf32_length_from_utf16(const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf32_length_from_utf16(std::span valid_utf16_input) noexcept { return utf32_length_from_utf16(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN /** * Compute the number of bytes that this UTF-16LE string would require in UTF-32 * format. * * This function is equivalent to count_utf16le. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @return the number of bytes required to encode the UTF-16LE string as UTF-32 */ simdutf_warn_unused size_t utf32_length_from_utf16le(const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf32_length_from_utf16le( std::span valid_utf16_input) noexcept { return utf32_length_from_utf16le(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN /** * Compute the number of bytes that this UTF-16BE string would require in UTF-32 * format. * * This function is equivalent to count_utf16be. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units (char16_t) * @return the number of bytes required to encode the UTF-16BE string as UTF-32 */ simdutf_warn_unused size_t utf32_length_from_utf16be(const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t utf32_length_from_utf16be( std::span valid_utf16_input) noexcept { return utf32_length_from_utf16be(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 /** * Count the number of code points (characters) in the string assuming that * it is valid. * * This function assumes that the input string is valid UTF-16 (native * endianness). It is acceptable to pass invalid UTF-16 strings but in such * cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16 string to process * @param length the length of the string in 2-byte code units (char16_t) * @return number of code points */ simdutf_warn_unused size_t count_utf16(const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t count_utf16(std::span valid_utf16_input) noexcept { return count_utf16(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN /** * Count the number of code points (characters) in the string assuming that * it is valid. * * This function assumes that the input string is valid UTF-16LE. * It is acceptable to pass invalid UTF-16 strings but in such cases * the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16LE string to process * @param length the length of the string in 2-byte code units (char16_t) * @return number of code points */ simdutf_warn_unused size_t count_utf16le(const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t count_utf16le(std::span valid_utf16_input) noexcept { return count_utf16le(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN /** * Count the number of code points (characters) in the string assuming that * it is valid. * * This function assumes that the input string is valid UTF-16BE. * It is acceptable to pass invalid UTF-16 strings but in such cases * the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16BE string to process * @param length the length of the string in 2-byte code units (char16_t) * @return number of code points */ simdutf_warn_unused size_t count_utf16be(const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t count_utf16be(std::span valid_utf16_input) noexcept { return count_utf16be(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 /** * Count the number of code points (characters) in the string assuming that * it is valid. * * This function assumes that the input string is valid UTF-8. * It is acceptable to pass invalid UTF-8 strings but in such cases * the result is implementation defined. * * @param input the UTF-8 string to process * @param length the length of the string in bytes * @return number of code points */ simdutf_warn_unused size_t count_utf8(const char *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t count_utf8( const detail::input_span_of_byte_like auto &valid_utf8_input) noexcept { return count_utf8(reinterpret_cast(valid_utf8_input.data()), valid_utf8_input.size()); } #endif // SIMDUTF_SPAN /** * Given a valid UTF-8 string having a possibly truncated last character, * this function checks the end of string. If the last character is truncated * (or partial), then it returns a shorter length (shorter by 1 to 3 bytes) so * that the short UTF-8 strings only contain complete characters. If there is no * truncated character, the original length is returned. * * This function assumes that the input string is valid UTF-8, but possibly * truncated. * * @param input the UTF-8 string to process * @param length the length of the string in bytes * @return the length of the string in bytes, possibly shorter by 1 to 3 bytes */ simdutf_warn_unused size_t trim_partial_utf8(const char *input, size_t length); #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t trim_partial_utf8( const detail::input_span_of_byte_like auto &valid_utf8_input) noexcept { return trim_partial_utf8( reinterpret_cast(valid_utf8_input.data()), valid_utf8_input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_UTF16 /** * Given a valid UTF-16BE string having a possibly truncated last character, * this function checks the end of string. If the last character is truncated * (or partial), then it returns a shorter length (shorter by 1 unit) so that * the short UTF-16BE strings only contain complete characters. If there is no * truncated character, the original length is returned. * * This function assumes that the input string is valid UTF-16BE, but possibly * truncated. * * @param input the UTF-16BE string to process * @param length the length of the string in bytes * @return the length of the string in bytes, possibly shorter by 1 unit */ simdutf_warn_unused size_t trim_partial_utf16be(const char16_t *input, size_t length); #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t trim_partial_utf16be(std::span valid_utf16_input) noexcept { return trim_partial_utf16be(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN /** * Given a valid UTF-16LE string having a possibly truncated last character, * this function checks the end of string. If the last character is truncated * (or partial), then it returns a shorter length (shorter by 1 unit) so that * the short UTF-16LE strings only contain complete characters. If there is no * truncated character, the original length is returned. * * This function assumes that the input string is valid UTF-16LE, but possibly * truncated. * * @param input the UTF-16LE string to process * @param length the length of the string in bytes * @return the length of the string in unit, possibly shorter by 1 unit */ simdutf_warn_unused size_t trim_partial_utf16le(const char16_t *input, size_t length); #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t trim_partial_utf16le(std::span valid_utf16_input) noexcept { return trim_partial_utf16le(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN /** * Given a valid UTF-16 string having a possibly truncated last character, * this function checks the end of string. If the last character is truncated * (or partial), then it returns a shorter length (shorter by 1 unit) so that * the short UTF-16 strings only contain complete characters. If there is no * truncated character, the original length is returned. * * This function assumes that the input string is valid UTF-16, but possibly * truncated. We use the native endianness. * * @param input the UTF-16 string to process * @param length the length of the string in bytes * @return the length of the string in unit, possibly shorter by 1 unit */ simdutf_warn_unused size_t trim_partial_utf16(const char16_t *input, size_t length); #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t trim_partial_utf16(std::span valid_utf16_input) noexcept { return trim_partial_utf16(valid_utf16_input.data(), valid_utf16_input.size()); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_BASE64 #ifndef SIMDUTF_NEED_TRAILING_ZEROES #define SIMDUTF_NEED_TRAILING_ZEROES 1 #endif // base64_options are used to specify the base64 encoding options. // ASCII spaces are ' ', '\t', '\n', '\r', '\f' // garbage characters are characters that are not part of the base64 alphabet // nor ASCII spaces. constexpr uint64_t base64_reverse_padding = 2; /* modifier for base64_default and base64_url */ enum base64_options : uint64_t { base64_default = 0, /* standard base64 format (with padding) */ base64_url = 1, /* base64url format (no padding) */ base64_default_no_padding = base64_default | base64_reverse_padding, /* standard base64 format without padding */ base64_url_with_padding = base64_url | base64_reverse_padding, /* base64url with padding */ base64_default_accept_garbage = 4, /* standard base64 format accepting garbage characters, the input stops with the first '=' if any */ base64_url_accept_garbage = 5, /* base64url format accepting garbage characters, the input stops with the first '=' if any */ base64_default_or_url = 8, /* standard/base64url hybrid format (only meaningful for decoding!) */ base64_default_or_url_accept_garbage = 12, /* standard/base64url hybrid format accepting garbage characters (only meaningful for decoding!), the input stops with the first '=' if any */ }; #if SIMDUTF_CPLUSPLUS17 inline std::string_view to_string(base64_options options) { switch (options) { case base64_default: return "base64_default"; case base64_url: return "base64_url"; case base64_reverse_padding: return "base64_reverse_padding"; case base64_url_with_padding: return "base64_url_with_padding"; case base64_default_accept_garbage: return "base64_default_accept_garbage"; case base64_url_accept_garbage: return "base64_url_accept_garbage"; case base64_default_or_url: return "base64_default_or_url"; case base64_default_or_url_accept_garbage: return "base64_default_or_url_accept_garbage"; } return ""; } #endif // SIMDUTF_CPLUSPLUS17 // last_chunk_handling_options are used to specify the handling of the last // chunk in base64 decoding. // https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 enum last_chunk_handling_options : uint64_t { loose = 0, /* standard base64 format, decode partial final chunk */ strict = 1, /* error when the last chunk is partial, 2 or 3 chars, and unpadded, or non-zero bit padding */ stop_before_partial = 2, /* if the last chunk is partial, ignore it (no error) */ only_full_chunks = 3 /* only decode full blocks (4 base64 characters, no padding) */ }; inline bool is_partial(last_chunk_handling_options options) { return (options == stop_before_partial) || (options == only_full_chunks); } #if SIMDUTF_CPLUSPLUS17 inline std::string_view to_string(last_chunk_handling_options options) { switch (options) { case loose: return "loose"; case strict: return "strict"; case stop_before_partial: return "stop_before_partial"; case only_full_chunks: return "only_full_chunks"; } return ""; } #endif /** * Provide the maximal binary length in bytes given the base64 input. * In general, if the input contains ASCII spaces, the result will be less than * the maximum length. * * @param input the base64 input to process * @param length the length of the base64 input in bytes * @return maximum number of binary bytes */ simdutf_warn_unused size_t maximal_binary_length_from_base64(const char *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t maximal_binary_length_from_base64( const detail::input_span_of_byte_like auto &input) noexcept { return maximal_binary_length_from_base64( reinterpret_cast(input.data()), input.size()); } #endif // SIMDUTF_SPAN /** * Provide the maximal binary length in bytes given the base64 input. * In general, if the input contains ASCII spaces, the result will be less than * the maximum length. * * @param input the base64 input to process, in ASCII stored as 16-bit * units * @param length the length of the base64 input in 16-bit units * @return maximal number of binary bytes */ simdutf_warn_unused size_t maximal_binary_length_from_base64( const char16_t *input, size_t length) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t maximal_binary_length_from_base64(std::span input) noexcept { return maximal_binary_length_from_base64(input.data(), input.size()); } #endif // SIMDUTF_SPAN /** * Convert a base64 input to a binary output. * * This function follows the WHATWG forgiving-base64 format, which means that it * will ignore any ASCII spaces in the input. You may provide a padded input * (with one or two equal signs at the end) or an unpadded input (without any * equal signs at the end). * * See https://infra.spec.whatwg.org/#forgiving-base64-decode * * This function will fail in case of invalid input. When last_chunk_options = * loose, there are two possible reasons for failure: the input contains a * number of base64 characters that when divided by 4, leaves a single remainder * character (BASE64_INPUT_REMAINDER), or the input contains a character that is * not a valid base64 character (INVALID_BASE64_CHARACTER). * * When the error is INVALID_BASE64_CHARACTER, r.count contains the index in the * input where the invalid character was found. When the error is * BASE64_INPUT_REMAINDER, then r.count contains the number of bytes decoded. * * The default option (simdutf::base64_default) expects the characters `+` and * `/` as part of its alphabet. The URL option (simdutf::base64_url) expects the * characters `-` and `_` as part of its alphabet. * * The padding (`=`) is validated if present. There may be at most two padding * characters at the end of the input. If there are any padding characters, the * total number of characters (excluding spaces but including padding * characters) must be divisible by four. * * You should call this function with a buffer that is at least * maximal_binary_length_from_base64(input, length) bytes long. If you fail to * provide that much space, the function may cause a buffer overflow. * * Advanced users may want to tailor how the last chunk is handled. By default, * we use a loose (forgiving) approach but we also support a strict approach * as well as a stop_before_partial approach, as per the following proposal: * * https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 * * @param input the base64 string to process * @param length the length of the string in bytes * @param output the pointer to a buffer that can hold the conversion * result (should be at least maximal_binary_length_from_base64(input, length) * bytes long). * @param options the base64 options to use, usually base64_default or * base64_url, and base64_default by default. * @param last_chunk_options the last chunk handling options, * last_chunk_handling_options::loose by default * but can also be last_chunk_handling_options::strict or * last_chunk_handling_options::stop_before_partial. * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in bytes) if any, or the number of bytes written if successful. */ simdutf_warn_unused result base64_to_binary( const char *input, size_t length, char *output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = loose) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result base64_to_binary( const detail::input_span_of_byte_like auto &input, detail::output_span_of_byte_like auto &&binary_output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = loose) noexcept { return base64_to_binary(reinterpret_cast(input.data()), input.size(), reinterpret_cast(binary_output.data()), options, last_chunk_options); } #endif // SIMDUTF_SPAN /** * Provide the base64 length in bytes given the length of a binary input. * * @param length the length of the input in bytes * @return number of base64 bytes */ simdutf_warn_unused size_t base64_length_from_binary( size_t length, base64_options options = base64_default) noexcept; /** * Provide the base64 length in bytes given the length of a binary input, * taking into account line breaks. * * @param length the length of the input in bytes * @param line_length the length of lines, must be at least 4 (otherwise it is * interpreted as 4), * @return number of base64 bytes */ simdutf_warn_unused size_t base64_length_from_binary_with_lines( size_t length, base64_options options = base64_default, size_t line_length = default_line_length) noexcept; /** * Convert a binary input to a base64 output. * * The default option (simdutf::base64_default) uses the characters `+` and `/` * as part of its alphabet. Further, it adds padding (`=`) at the end of the * output to ensure that the output length is a multiple of four. * * The URL option (simdutf::base64_url) uses the characters `-` and `_` as part * of its alphabet. No padding is added at the end of the output. * * This function always succeeds. * * @param input the binary to process * @param length the length of the input in bytes * @param output the pointer to a buffer that can hold the conversion * result (should be at least base64_length_from_binary(length) bytes long) * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @return number of written bytes, will be equal to * base64_length_from_binary(length, options) */ size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options = base64_default) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t binary_to_base64(const detail::input_span_of_byte_like auto &input, detail::output_span_of_byte_like auto &&binary_output, base64_options options = base64_default) noexcept { return binary_to_base64( reinterpret_cast(input.data()), input.size(), reinterpret_cast(binary_output.data()), options); } #endif // SIMDUTF_SPAN /** * Convert a binary input to a base64 output with line breaks. * * The default option (simdutf::base64_default) uses the characters `+` and `/` * as part of its alphabet. Further, it adds padding (`=`) at the end of the * output to ensure that the output length is a multiple of four. * * The URL option (simdutf::base64_url) uses the characters `-` and `_` as part * of its alphabet. No padding is added at the end of the output. * * This function always succeeds. * * @param input the binary to process * @param length the length of the input in bytes * @param output the pointer to a buffer that can hold the conversion * result (should be at least base64_length_from_binary_with_lines(length, * options, line_length) bytes long) * @param line_length the length of lines, must be at least 4 (otherwise it is * interpreted as 4), * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @return number of written bytes, will be equal to * base64_length_from_binary_with_lines(length, options) */ size_t binary_to_base64_with_lines(const char *input, size_t length, char *output, size_t line_length = simdutf::default_line_length, base64_options options = base64_default) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t binary_to_base64_with_lines( const detail::input_span_of_byte_like auto &input, detail::output_span_of_byte_like auto &&binary_output, size_t line_length = simdutf::default_line_length, base64_options options = base64_default) noexcept { return binary_to_base64_with_lines( reinterpret_cast(input.data()), input.size(), reinterpret_cast(binary_output.data()), line_length, options); } #endif // SIMDUTF_SPAN #if SIMDUTF_ATOMIC_REF /** * Convert a binary input to a base64 output, using atomic accesses. * This function comes with a potentially significant performance * penalty, but it may be useful in some cases where the input * buffers are shared between threads, to avoid undefined * behavior in case of data races. * * The function is for advanced users. Its main use case is when * to silence sanitizer warnings. We have no documented use case * where this function is actually necessary in terms of practical correctness. * * This function is only available when simdutf is compiled with * C++20 support and __cpp_lib_atomic_ref >= 201806L. You may check * the availability of this function by checking the macro * SIMDUTF_ATOMIC_REF. * * The default option (simdutf::base64_default) uses the characters `+` and `/` * as part of its alphabet. Further, it adds padding (`=`) at the end of the * output to ensure that the output length is a multiple of four. * * The URL option (simdutf::base64_url) uses the characters `-` and `_` as part * of its alphabet. No padding is added at the end of the output. * * This function always succeeds. * * This function is considered experimental. It is not tested by default * (see the CMake option SIMDUTF_ATOMIC_BASE64_TESTS) nor is it fuzz tested. * It is not documented in the public API documentation (README). It is * offered on a best effort basis. We rely on the community for further * testing and feedback. * * @brief atomic_binary_to_base64 * @param input the binary to process * @param length the length of the input in bytes * @param output the pointer to a buffer that can hold the conversion * result (should be at least base64_length_from_binary(length) bytes long) * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @return number of written bytes, will be equal to * base64_length_from_binary(length, options) */ size_t atomic_binary_to_base64(const char *input, size_t length, char *output, base64_options options = base64_default) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused size_t atomic_binary_to_base64(const detail::input_span_of_byte_like auto &input, detail::output_span_of_byte_like auto &&binary_output, base64_options options = base64_default) noexcept { return atomic_binary_to_base64( reinterpret_cast(input.data()), input.size(), reinterpret_cast(binary_output.data()), options); } #endif // SIMDUTF_SPAN #endif // SIMDUTF_ATOMIC_REF /** * Convert a base64 input to a binary output. * * This function follows the WHATWG forgiving-base64 format, which means that it * will ignore any ASCII spaces in the input. You may provide a padded input * (with one or two equal signs at the end) or an unpadded input (without any * equal signs at the end). * * See https://infra.spec.whatwg.org/#forgiving-base64-decode * * This function will fail in case of invalid input. When last_chunk_options = * loose, there are two possible reasons for failure: the input contains a * number of base64 characters that when divided by 4, leaves a single remainder * character (BASE64_INPUT_REMAINDER), or the input contains a character that is * not a valid base64 character (INVALID_BASE64_CHARACTER). * * When the error is INVALID_BASE64_CHARACTER, r.count contains the index in the * input where the invalid character was found. When the error is * BASE64_INPUT_REMAINDER, then r.count contains the number of bytes decoded. * * The default option (simdutf::base64_default) expects the characters `+` and * `/` as part of its alphabet. The URL option (simdutf::base64_url) expects the * characters `-` and `_` as part of its alphabet. * * The padding (`=`) is validated if present. There may be at most two padding * characters at the end of the input. If there are any padding characters, the * total number of characters (excluding spaces but including padding * characters) must be divisible by four. * * You should call this function with a buffer that is at least * maximal_binary_length_from_base64(input, length) bytes long. If you fail * to provide that much space, the function may cause a buffer overflow. * * Advanced users may want to tailor how the last chunk is handled. By default, * we use a loose (forgiving) approach but we also support a strict approach * as well as a stop_before_partial approach, as per the following proposal: * * https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 * * @param input the base64 string to process, in ASCII stored as 16-bit * units * @param length the length of the string in 16-bit units * @param output the pointer to a buffer that can hold the conversion * result (should be at least maximal_binary_length_from_base64(input, length) * bytes long). * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @param last_chunk_options the last chunk handling options, * last_chunk_handling_options::loose by default * but can also be last_chunk_handling_options::strict or * last_chunk_handling_options::stop_before_partial. * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and position of the * INVALID_BASE64_CHARACTER error (in the input in units) if any, or the number * of bytes written if successful. */ simdutf_warn_unused result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) noexcept; #if SIMDUTF_SPAN simdutf_really_inline simdutf_warn_unused result base64_to_binary( std::span input, detail::output_span_of_byte_like auto &&binary_output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = loose) noexcept { return base64_to_binary(input.data(), input.size(), reinterpret_cast(binary_output.data()), options, last_chunk_options); } #endif // SIMDUTF_SPAN /** * Check if a character is an ignorabl base64 character. * Checking a large input, character by character, is not computationally * efficient. * * @param input the character to check * @param options the base64 options to use, is base64_default by default. * @return true if the character is an ignorablee base64 character, false * otherwise. */ simdutf_warn_unused bool base64_ignorable(char input, base64_options options = base64_default) noexcept; simdutf_warn_unused bool base64_ignorable(char16_t input, base64_options options = base64_default) noexcept; /** * Check if a character is a valid base64 character. * Checking a large input, character by character, is not computationally * efficient. * Note that padding characters are not considered valid base64 characters in * this context, nor are spaces. * * @param input the character to check * @param options the base64 options to use, is base64_default by default. * @return true if the character is a base64 character, false otherwise. */ simdutf_warn_unused bool base64_valid(char input, base64_options options = base64_default) noexcept; simdutf_warn_unused bool base64_valid(char16_t input, base64_options options = base64_default) noexcept; /** * Check if a character is a valid base64 character or the padding character * ('='). Checking a large input, character by character, is not computationally * efficient. * * @param input the character to check * @param options the base64 options to use, is base64_default by default. * @return true if the character is a base64 character, false otherwise. */ simdutf_warn_unused bool base64_valid_or_padding(char input, base64_options options = base64_default) noexcept; simdutf_warn_unused bool base64_valid_or_padding(char16_t input, base64_options options = base64_default) noexcept; /** * Convert a base64 input to a binary output. * * This function follows the WHATWG forgiving-base64 format, which means that it * will ignore any ASCII spaces in the input. You may provide a padded input * (with one or two equal signs at the end) or an unpadded input (without any * equal signs at the end). * * See https://infra.spec.whatwg.org/#forgiving-base64-decode * * This function will fail in case of invalid input. When last_chunk_options = * loose, there are three possible reasons for failure: the input contains a * number of base64 characters that when divided by 4, leaves a single remainder * character (BASE64_INPUT_REMAINDER), the input contains a character that is * not a valid base64 character (INVALID_BASE64_CHARACTER), or the output buffer * is too small (OUTPUT_BUFFER_TOO_SMALL). * * When OUTPUT_BUFFER_TOO_SMALL, we return both the number of bytes written * and the number of units processed, see description of the parameters and * returned value. * * When the error is INVALID_BASE64_CHARACTER, r.count contains the index in the * input where the invalid character was found. When the error is * BASE64_INPUT_REMAINDER, then r.count contains the number of bytes decoded. * * The default option (simdutf::base64_default) expects the characters `+` and * `/` as part of its alphabet. The URL option (simdutf::base64_url) expects the * characters `-` and `_` as part of its alphabet. * * The padding (`=`) is validated if present. There may be at most two padding * characters at the end of the input. If there are any padding characters, the * total number of characters (excluding spaces but including padding * characters) must be divisible by four. * * The INVALID_BASE64_CHARACTER cases are considered fatal and you are expected * to discard the output unless the parameter decode_up_to_bad_char is set to * true. In that case, the function will decode up to the first invalid * character. Extra padding characters ('=') are considered invalid characters. * * Advanced users may want to tailor how the last chunk is handled. By default, * we use a loose (forgiving) approach but we also support a strict approach * as well as a stop_before_partial approach, as per the following proposal: * * https://tc39.es/proposal-arraybuffer-base64/spec/#sec-frombase64 * * @param input the base64 string to process, in ASCII stored as 8-bit * or 16-bit units * @param length the length of the string in 8-bit or 16-bit units. * @param output the pointer to a buffer that can hold the conversion * result. * @param outlen the number of bytes that can be written in the output * buffer. Upon return, it is modified to reflect how many bytes were written. * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @param last_chunk_options the last chunk handling options, * last_chunk_handling_options::loose by default * but can also be last_chunk_handling_options::strict or * last_chunk_handling_options::stop_before_partial. * @param decode_up_to_bad_char if true, the function will decode up to the * first invalid character. By default (false), it is assumed that the output * buffer is to be discarded. When there are multiple errors in the input, * using decode_up_to_bad_char might trigger a different error. * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and position of the * INVALID_BASE64_CHARACTER error (in the input in units) if any, or the number * of units processed if successful. */ simdutf_warn_unused result base64_to_binary_safe(const char *input, size_t length, char *output, size_t &outlen, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose, bool decode_up_to_bad_char = false) noexcept; #if SIMDUTF_SPAN /** * @brief span overload * @return a tuple of result and outlen */ simdutf_really_inline simdutf_warn_unused std::tuple base64_to_binary_safe(const detail::input_span_of_byte_like auto &input, detail::output_span_of_byte_like auto &&binary_output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = loose, bool decode_up_to_bad_char = false) noexcept { size_t outlen = binary_output.size(); auto r = base64_to_binary_safe( reinterpret_cast(input.data()), input.size(), reinterpret_cast(binary_output.data()), outlen, options, last_chunk_options, decode_up_to_bad_char); return {r, outlen}; } #endif // SIMDUTF_SPAN simdutf_warn_unused result base64_to_binary_safe(const char16_t *input, size_t length, char *output, size_t &outlen, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose, bool decode_up_to_bad_char = false) noexcept; #if SIMDUTF_SPAN /** * @brief span overload * @return a tuple of result and outlen */ simdutf_really_inline simdutf_warn_unused std::tuple base64_to_binary_safe(std::span input, detail::output_span_of_byte_like auto &&binary_output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = loose, bool decode_up_to_bad_char = false) noexcept { size_t outlen = binary_output.size(); auto r = base64_to_binary_safe(input.data(), input.size(), reinterpret_cast(binary_output.data()), outlen, options, last_chunk_options, decode_up_to_bad_char); return {r, outlen}; } #endif // SIMDUTF_SPAN #if SIMDUTF_ATOMIC_REF /** * Convert a base64 input to a binary output with a size limit and using atomic * operations. * * Like `base64_to_binary_safe` but using atomic operations, this function is * thread-safe for concurrent memory access, allowing the output * buffers to be shared between threads without undefined behavior in case of * data races. * * This function comes with a potentially significant performance penalty, but * is useful when thread safety is needed during base64 decoding. * * This function is only available when simdutf is compiled with * C++20 support and __cpp_lib_atomic_ref >= 201806L. You may check * the availability of this function by checking the macro * SIMDUTF_ATOMIC_REF. * * This function is considered experimental. It is not tested by default * (see the CMake option SIMDUTF_ATOMIC_BASE64_TESTS) nor is it fuzz tested. * It is not documented in the public API documentation (README). It is * offered on a best effort basis. We rely on the community for further * testing and feedback. * * @param input the base64 input to decode * @param length the length of the input in bytes * @param output the pointer to buffer that can hold the conversion * result * @param outlen the number of bytes that can be written in the output * buffer. Upon return, it is modified to reflect how many bytes were written. * @param options the base64 options to use (default, url, etc.) * @param last_chunk_options the last chunk handling options (loose, strict, * stop_before_partial) * @param decode_up_to_bad_char if true, the function will decode up to the * first invalid character. By default (false), it is assumed that the output * buffer is to be discarded. When there are multiple errors in the input, * using decode_up_to_bad_char might trigger a different error. * @return a result struct with an error code and count indicating error * position or success */ simdutf_warn_unused result atomic_base64_to_binary_safe( const char *input, size_t length, char *output, size_t &outlen, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose, bool decode_up_to_bad_char = false) noexcept; simdutf_warn_unused result atomic_base64_to_binary_safe( const char16_t *input, size_t length, char *output, size_t &outlen, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = loose, bool decode_up_to_bad_char = false) noexcept; #if SIMDUTF_SPAN /** * @brief span overload * @return a tuple of result and outlen */ simdutf_really_inline simdutf_warn_unused std::tuple atomic_base64_to_binary_safe( const detail::input_span_of_byte_like auto &binary_input, detail::output_span_of_byte_like auto &&output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose, bool decode_up_to_bad_char = false) noexcept { size_t outlen = output.size(); auto ret = atomic_base64_to_binary_safe( reinterpret_cast(binary_input.data()), binary_input.size(), reinterpret_cast(output.data()), outlen, options, last_chunk_options, decode_up_to_bad_char); return {ret, outlen}; } /** * @brief span overload * @return a tuple of result and outlen */ simdutf_warn_unused std::tuple atomic_base64_to_binary_safe( std::span base64_input, detail::output_span_of_byte_like auto &&binary_output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = loose, bool decode_up_to_bad_char = false) noexcept { size_t outlen = binary_output.size(); auto ret = atomic_base64_to_binary_safe( base64_input.data(), base64_input.size(), reinterpret_cast(binary_output.data()), outlen, options, last_chunk_options, decode_up_to_bad_char); return {ret, outlen}; } #endif // SIMDUTF_SPAN #endif // SIMDUTF_ATOMIC_REF /** * Find the first occurrence of a character in a string. If the character is * not found, return a pointer to the end of the string. * @param start the start of the string * @param end the end of the string * @param character the character to find * @return a pointer to the first occurrence of the character in the string, * or a pointer to the end of the string if the character is not found. * */ simdutf_warn_unused const char *find(const char *start, const char *end, char character) noexcept; simdutf_warn_unused const char16_t * find(const char16_t *start, const char16_t *end, char16_t character) noexcept; #endif // SIMDUTF_FEATURE_BASE64 /** * An implementation of simdutf for a particular CPU architecture. * * Also used to maintain the currently active implementation. The active * implementation is automatically initialized on first use to the most advanced * implementation supported by the host. */ class implementation { public: /** * The name of this implementation. * * const implementation *impl = simdutf::active_implementation; * cout << "simdutf is optimized for " << impl->name() << "(" << * impl->description() << ")" << endl; * * @return the name of the implementation, e.g. "haswell", "westmere", "arm64" */ virtual std::string name() const { return std::string(_name); } /** * The description of this implementation. * * const implementation *impl = simdutf::active_implementation; * cout << "simdutf is optimized for " << impl->name() << "(" << * impl->description() << ")" << endl; * * @return the name of the implementation, e.g. "haswell", "westmere", "arm64" */ virtual std::string description() const { return std::string(_description); } /** * The instruction sets this implementation is compiled against * and the current CPU match. This function may poll the current CPU/system * and should therefore not be called too often if performance is a concern. * * * @return true if the implementation can be safely used on the current system * (determined at runtime) */ bool supported_by_runtime_system() const; #if SIMDUTF_FEATURE_DETECT_ENCODING /** * This function will try to detect the encoding * @param input the string to identify * @param length the length of the string in bytes. * @return the encoding type detected */ virtual encoding_type autodetect_encoding(const char *input, size_t length) const noexcept; /** * This function will try to detect the possible encodings in one pass * @param input the string to identify * @param length the length of the string in bytes. * @return the encoding type detected */ virtual int detect_encodings(const char *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_DETECT_ENCODING /** * @private For internal implementation use * * The instruction sets this implementation is compiled against. * * @return a mask of all required `internal::instruction_set::` values */ virtual uint32_t required_instruction_sets() const { return _required_instruction_sets; } #if SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING /** * Validate the UTF-8 string. * * Overridden by each implementation. * * @param buf the UTF-8 string to validate. * @param len the length of the string in bytes. * @return true if and only if the string is valid UTF-8. */ simdutf_warn_unused virtual bool validate_utf8(const char *buf, size_t len) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF8 /** * Validate the UTF-8 string and stop on errors. * * Overridden by each implementation. * * @param buf the UTF-8 string to validate. * @param len the length of the string in bytes. * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated * if successful. */ simdutf_warn_unused virtual result validate_utf8_with_errors(const char *buf, size_t len) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_ASCII /** * Validate the ASCII string. * * Overridden by each implementation. * * @param buf the ASCII string to validate. * @param len the length of the string in bytes. * @return true if and only if the string is valid ASCII. */ simdutf_warn_unused virtual bool validate_ascii(const char *buf, size_t len) const noexcept = 0; /** * Validate the ASCII string and stop on error. * * Overridden by each implementation. * * @param buf the ASCII string to validate. * @param len the length of the string in bytes. * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated * if successful. */ simdutf_warn_unused virtual result validate_ascii_with_errors(const char *buf, size_t len) const noexcept = 0; #endif // SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII /** * Validate the ASCII string as a UTF-16BE sequence. * An UTF-16 sequence is considered an ASCII sequence * if it could be converted to an ASCII string losslessly. * * Overridden by each implementation. * * @param buf the UTF-16BE string to validate. * @param len the length of the string in bytes. * @return true if and only if the string is valid ASCII. */ simdutf_warn_unused virtual bool validate_utf16be_as_ascii(const char16_t *buf, size_t len) const noexcept = 0; /** * Validate the ASCII string as a UTF-16LE sequence. * An UTF-16 sequence is considered an ASCII sequence * if it could be converted to an ASCII string losslessly. * * Overridden by each implementation. * * @param buf the UTF-16LE string to validate. * @param len the length of the string in bytes. * @return true if and only if the string is valid ASCII. */ simdutf_warn_unused virtual bool validate_utf16le_as_ascii(const char16_t *buf, size_t len) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_ASCII #if SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING /** * Validate the UTF-16LE string.This function may be best when you expect * the input to be almost always valid. Otherwise, consider using * validate_utf16le_with_errors. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-16LE string to validate. * @param len the length of the string in number of 2-byte code units * (char16_t). * @return true if and only if the string is valid UTF-16LE. */ simdutf_warn_unused virtual bool validate_utf16le(const char16_t *buf, size_t len) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF16 /** * Validate the UTF-16BE string. This function may be best when you expect * the input to be almost always valid. Otherwise, consider using * validate_utf16be_with_errors. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-16BE string to validate. * @param len the length of the string in number of 2-byte code units * (char16_t). * @return true if and only if the string is valid UTF-16BE. */ simdutf_warn_unused virtual bool validate_utf16be(const char16_t *buf, size_t len) const noexcept = 0; /** * Validate the UTF-16LE string and stop on error. It might be faster than * validate_utf16le when an error is expected to occur early. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-16LE string to validate. * @param len the length of the string in number of 2-byte code units * (char16_t). * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated * if successful. */ simdutf_warn_unused virtual result validate_utf16le_with_errors(const char16_t *buf, size_t len) const noexcept = 0; /** * Validate the UTF-16BE string and stop on error. It might be faster than * validate_utf16be when an error is expected to occur early. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-16BE string to validate. * @param len the length of the string in number of 2-byte code units * (char16_t). * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated * if successful. */ simdutf_warn_unused virtual result validate_utf16be_with_errors(const char16_t *buf, size_t len) const noexcept = 0; /** * Copies the UTF-16LE string while replacing mismatched surrogates with the * Unicode replacement character U+FFFD. We allow the input and output to be * the same buffer so that the correction is done in-place. * * Overridden by each implementation. * * @param input the UTF-16LE string to correct. * @param len the length of the string in number of 2-byte code units * (char16_t). * @param output the output buffer. */ virtual void to_well_formed_utf16le(const char16_t *input, size_t len, char16_t *output) const noexcept = 0; /** * Copies the UTF-16BE string while replacing mismatched surrogates with the * Unicode replacement character U+FFFD. We allow the input and output to be * the same buffer so that the correction is done in-place. * * Overridden by each implementation. * * @param input the UTF-16BE string to correct. * @param len the length of the string in number of 2-byte code units * (char16_t). * @param output the output buffer. */ virtual void to_well_formed_utf16be(const char16_t *input, size_t len, char16_t *output) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING /** * Validate the UTF-32 string. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-32 string to validate. * @param len the length of the string in number of 4-byte code units * (char32_t). * @return true if and only if the string is valid UTF-32. */ simdutf_warn_unused virtual bool validate_utf32(const char32_t *buf, size_t len) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF32 || SIMDUTF_FEATURE_DETECT_ENCODING #if SIMDUTF_FEATURE_UTF32 /** * Validate the UTF-32 string and stop on error. * * Overridden by each implementation. * * This function is not BOM-aware. * * @param buf the UTF-32 string to validate. * @param len the length of the string in number of 4-byte code units * (char32_t). * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated * if successful. */ simdutf_warn_unused virtual result validate_utf32_with_errors(const char32_t *buf, size_t len) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /** * Convert Latin1 string into UTF-8 string. * * This function is suitable to work with inputs from untrusted sources. * * @param input the Latin1 string to convert * @param length the length of the string in bytes * @param utf8_output the pointer to buffer that can hold conversion result * @return the number of written char; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_latin1_to_utf8(const char *input, size_t length, char *utf8_output) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /** * Convert possibly Latin1 string into UTF-16LE string. * * This function is suitable to work with inputs from untrusted sources. * * @param input the Latin1 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_latin1_to_utf16le(const char *input, size_t length, char16_t *utf16_output) const noexcept = 0; /** * Convert Latin1 string into UTF-16BE string. * * This function is suitable to work with inputs from untrusted sources. * * @param input the Latin1 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_latin1_to_utf16be(const char *input, size_t length, char16_t *utf16_output) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /** * Convert Latin1 string into UTF-32 string. * * This function is suitable to work with inputs from untrusted sources. * * @param input the Latin1 string to convert * @param length the length of the string in bytes * @param utf32_buffer the pointer to buffer that can hold conversion result * @return the number of written char32_t; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_latin1_to_utf32(const char *input, size_t length, char32_t *utf32_buffer) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /** * Convert possibly broken UTF-8 string into latin1 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param latin1_output the pointer to buffer that can hold conversion result * @return the number of written char; 0 if the input was not valid UTF-8 * string or if it cannot be represented as Latin1 */ simdutf_warn_unused virtual size_t convert_utf8_to_latin1(const char *input, size_t length, char *latin1_output) const noexcept = 0; /** * Convert possibly broken UTF-8 string into latin1 string with errors. * If the string cannot be represented as Latin1, an error * code is returned. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param latin1_output the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated * if successful. */ simdutf_warn_unused virtual result convert_utf8_to_latin1_with_errors(const char *input, size_t length, char *latin1_output) const noexcept = 0; /** * Convert valid UTF-8 string into latin1 string. * * This function assumes that the input string is valid UTF-8 and that it can * be represented as Latin1. If you violate this assumption, the result is * implementation defined and may include system-dependent behavior such as * crashes. * * This function is for expert users only and not part of our public API. Use * convert_utf8_to_latin1 instead. * * This function is not BOM-aware. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param latin1_output the pointer to buffer that can hold conversion result * @return the number of written char; 0 if the input was not valid UTF-8 * string */ simdutf_warn_unused virtual size_t convert_valid_utf8_to_latin1(const char *input, size_t length, char *latin1_output) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Convert possibly broken UTF-8 string into UTF-16LE string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t; 0 if the input was not valid UTF-8 * string */ simdutf_warn_unused virtual size_t convert_utf8_to_utf16le(const char *input, size_t length, char16_t *utf16_output) const noexcept = 0; /** * Convert possibly broken UTF-8 string into UTF-16BE string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t; 0 if the input was not valid UTF-8 * string */ simdutf_warn_unused virtual size_t convert_utf8_to_utf16be(const char *input, size_t length, char16_t *utf16_output) const noexcept = 0; /** * Convert possibly broken UTF-8 string into UTF-16LE string and stop on * error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated * if successful. */ simdutf_warn_unused virtual result convert_utf8_to_utf16le_with_errors( const char *input, size_t length, char16_t *utf16_output) const noexcept = 0; /** * Convert possibly broken UTF-8 string into UTF-16BE string and stop on * error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of code units validated * if successful. */ simdutf_warn_unused virtual result convert_utf8_to_utf16be_with_errors( const char *input, size_t length, char16_t *utf16_output) const noexcept = 0; /** * Compute the number of bytes that this UTF-16LE string would require in * UTF-8 format even when the UTF-16LE content contains mismatched * surrogates that have to be replaced by the replacement character (0xFFFD). * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @return a result pair struct (of type simdutf::result containing the two * fields error and count) where the count is the number of bytes required to * encode the UTF-16LE string as UTF-8, and the error code is either SUCCESS * or SURROGATE. The count is correct regardless of the error field. * When SURROGATE is returned, it does not indicate an error in the case of * this function: it indicates that at least one surrogate has been * encountered: the surrogates may be matched or not (thus this function does * not validate). If the returned error code is SUCCESS, then the input * contains no surrogate, is in the Basic Multilingual Plane, and is * necessarily valid. */ virtual simdutf_warn_unused result utf8_length_from_utf16le_with_replacement( const char16_t *input, size_t length) const noexcept = 0; /** * Compute the number of bytes that this UTF-16BE string would require in * UTF-8 format even when the UTF-16BE content contains mismatched * surrogates that have to be replaced by the replacement character (0xFFFD). * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @return a result pair struct (of type simdutf::result containing the two * fields error and count) where the count is the number of bytes required to * encode the UTF-16BE string as UTF-8, and the error code is either SUCCESS * or SURROGATE. The count is correct regardless of the error field. * When SURROGATE is returned, it does not indicate an error in the case of * this function: it indicates that at least one surrogate has been * encountered: the surrogates may be matched or not (thus this function does * not validate). If the returned error code is SUCCESS, then the input * contains no surrogate, is in the Basic Multilingual Plane, and is * necessarily valid. */ virtual simdutf_warn_unused result utf8_length_from_utf16be_with_replacement( const char16_t *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /** * Convert possibly broken UTF-8 string into UTF-32 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf32_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t; 0 if the input was not valid UTF-8 * string */ simdutf_warn_unused virtual size_t convert_utf8_to_utf32(const char *input, size_t length, char32_t *utf32_output) const noexcept = 0; /** * Convert possibly broken UTF-8 string into UTF-32 string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf32_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char32_t written if * successful. */ simdutf_warn_unused virtual result convert_utf8_to_utf32_with_errors(const char *input, size_t length, char32_t *utf32_output) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Convert valid UTF-8 string into UTF-16LE string. * * This function assumes that the input string is valid UTF-8. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t */ simdutf_warn_unused virtual size_t convert_valid_utf8_to_utf16le(const char *input, size_t length, char16_t *utf16_buffer) const noexcept = 0; /** * Convert valid UTF-8 string into UTF-16BE string. * * This function assumes that the input string is valid UTF-8. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char16_t */ simdutf_warn_unused virtual size_t convert_valid_utf8_to_utf16be(const char *input, size_t length, char16_t *utf16_buffer) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /** * Convert valid UTF-8 string into UTF-32 string. * * This function assumes that the input string is valid UTF-8. * * @param input the UTF-8 string to convert * @param length the length of the string in bytes * @param utf16_buffer the pointer to buffer that can hold conversion result * @return the number of written char32_t */ simdutf_warn_unused virtual size_t convert_valid_utf8_to_utf32(const char *input, size_t length, char32_t *utf32_buffer) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Compute the number of 2-byte code units that this UTF-8 string would * require in UTF-16LE format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-8 strings but in such cases the result is implementation defined. * * @param input the UTF-8 string to process * @param length the length of the string in bytes * @return the number of char16_t code units required to encode the UTF-8 * string as UTF-16LE */ simdutf_warn_unused virtual size_t utf16_length_from_utf8(const char *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /** * Compute the number of 4-byte code units that this UTF-8 string would * require in UTF-32 format. * * This function is equivalent to count_utf8. It is acceptable to pass invalid * UTF-8 strings but in such cases the result is implementation defined. * * This function does not validate the input. * * @param input the UTF-8 string to process * @param length the length of the string in bytes * @return the number of char32_t code units required to encode the UTF-8 * string as UTF-32 */ simdutf_warn_unused virtual size_t utf32_length_from_utf8(const char *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /** * Convert possibly broken UTF-16LE string into Latin1 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion * result * @return number of written code units; 0 if input is not a valid UTF-16LE * string or if it cannot be represented as Latin1 */ simdutf_warn_unused virtual size_t convert_utf16le_to_latin1(const char16_t *input, size_t length, char *latin1_buffer) const noexcept = 0; /** * Convert possibly broken UTF-16BE string into Latin1 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion * result * @return number of written code units; 0 if input is not a valid UTF-16BE * string or if it cannot be represented as Latin1 */ simdutf_warn_unused virtual size_t convert_utf16be_to_latin1(const char16_t *input, size_t length, char *latin1_buffer) const noexcept = 0; /** * Convert possibly broken UTF-16LE string into Latin1 string. * If the string cannot be represented as Latin1, an error * is returned. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion * result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused virtual result convert_utf16le_to_latin1_with_errors(const char16_t *input, size_t length, char *latin1_buffer) const noexcept = 0; /** * Convert possibly broken UTF-16BE string into Latin1 string. * If the string cannot be represented as Latin1, an error * is returned. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion * result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused virtual result convert_utf16be_to_latin1_with_errors(const char16_t *input, size_t length, char *latin1_buffer) const noexcept = 0; /** * Convert valid UTF-16LE string into Latin1 string. * * This function assumes that the input string is valid UTF-L16LE and that it * can be represented as Latin1. If you violate this assumption, the result is * implementation defined and may include system-dependent behavior such as * crashes. * * This function is for expert users only and not part of our public API. Use * convert_utf16le_to_latin1 instead. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_valid_utf16le_to_latin1(const char16_t *input, size_t length, char *latin1_buffer) const noexcept = 0; /** * Convert valid UTF-16BE string into Latin1 string. * * This function assumes that the input string is valid UTF16-BE and that it * can be represented as Latin1. If you violate this assumption, the result is * implementation defined and may include system-dependent behavior such as * crashes. * * This function is for expert users only and not part of our public API. Use * convert_utf16be_to_latin1 instead. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param latin1_buffer the pointer to buffer that can hold conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_valid_utf16be_to_latin1(const char16_t *input, size_t length, char *latin1_buffer) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Convert possibly broken UTF-16LE string into UTF-8 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16LE * string */ simdutf_warn_unused virtual size_t convert_utf16le_to_utf8(const char16_t *input, size_t length, char *utf8_buffer) const noexcept = 0; /** * Convert possibly broken UTF-16BE string into UTF-8 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16BE * string */ simdutf_warn_unused virtual size_t convert_utf16be_to_utf8(const char16_t *input, size_t length, char *utf8_buffer) const noexcept = 0; /** * Convert possibly broken UTF-16LE string into UTF-8 string and stop on * error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused virtual result convert_utf16le_to_utf8_with_errors(const char16_t *input, size_t length, char *utf8_buffer) const noexcept = 0; /** * Convert possibly broken UTF-16BE string into UTF-8 string and stop on * error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused virtual result convert_utf16be_to_utf8_with_errors(const char16_t *input, size_t length, char *utf8_buffer) const noexcept = 0; /** * Convert valid UTF-16LE string into UTF-8 string. * * This function assumes that the input string is valid UTF-16LE. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf8_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_valid_utf16le_to_utf8(const char16_t *input, size_t length, char *utf8_buffer) const noexcept = 0; /** * Convert valid UTF-16BE string into UTF-8 string. * * This function assumes that the input string is valid UTF-16BE. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf8_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_valid_utf16be_to_utf8(const char16_t *input, size_t length, char *utf8_buffer) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /** * Convert possibly broken UTF-16LE string into UTF-32 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf32_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16LE * string */ simdutf_warn_unused virtual size_t convert_utf16le_to_utf32(const char16_t *input, size_t length, char32_t *utf32_buffer) const noexcept = 0; /** * Convert possibly broken UTF-16BE string into UTF-32 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf32_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-16BE * string */ simdutf_warn_unused virtual size_t convert_utf16be_to_utf32(const char16_t *input, size_t length, char32_t *utf32_buffer) const noexcept = 0; /** * Convert possibly broken UTF-16LE string into UTF-32 string and stop on * error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf32_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char32_t written if * successful. */ simdutf_warn_unused virtual result convert_utf16le_to_utf32_with_errors( const char16_t *input, size_t length, char32_t *utf32_buffer) const noexcept = 0; /** * Convert possibly broken UTF-16BE string into UTF-32 string and stop on * error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf32_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char32_t written if * successful. */ simdutf_warn_unused virtual result convert_utf16be_to_utf32_with_errors( const char16_t *input, size_t length, char32_t *utf32_buffer) const noexcept = 0; /** * Convert valid UTF-16LE string into UTF-32 string. * * This function assumes that the input string is valid UTF-16LE. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf32_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_valid_utf16le_to_utf32(const char16_t *input, size_t length, char32_t *utf32_buffer) const noexcept = 0; /** * Convert valid UTF-16LE string into UTF-32BE string. * * This function assumes that the input string is valid UTF-16BE. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @param utf32_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_valid_utf16be_to_utf32(const char16_t *input, size_t length, char32_t *utf32_buffer) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 /** * Compute the number of bytes that this UTF-16LE string would require in * UTF-8 format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @return the number of bytes required to encode the UTF-16LE string as UTF-8 */ simdutf_warn_unused virtual size_t utf8_length_from_utf16le(const char16_t *input, size_t length) const noexcept = 0; /** * Compute the number of bytes that this UTF-16BE string would require in * UTF-8 format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @return the number of bytes required to encode the UTF-16BE string as UTF-8 */ simdutf_warn_unused virtual size_t utf8_length_from_utf16be(const char16_t *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /** * Convert possibly broken UTF-32 string into Latin1 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param latin1_buffer the pointer to buffer that can hold conversion * result * @return number of written code units; 0 if input is not a valid UTF-32 * string */ simdutf_warn_unused virtual size_t convert_utf32_to_latin1(const char32_t *input, size_t length, char *latin1_buffer) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /** * Convert possibly broken UTF-32 string into Latin1 string and stop on error. * If the string cannot be represented as Latin1, an error is returned. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param latin1_buffer the pointer to buffer that can hold conversion * result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused virtual result convert_utf32_to_latin1_with_errors(const char32_t *input, size_t length, char *latin1_buffer) const noexcept = 0; /** * Convert valid UTF-32 string into Latin1 string. * * This function assumes that the input string is valid UTF-32 and can be * represented as Latin1. If you violate this assumption, the result is * implementation defined and may include system-dependent behavior such as * crashes. * * This function is for expert users only and not part of our public API. Use * convert_utf32_to_latin1 instead. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param latin1_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_valid_utf32_to_latin1(const char32_t *input, size_t length, char *latin1_buffer) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /** * Convert possibly broken UTF-32 string into UTF-8 string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-32 * string */ simdutf_warn_unused virtual size_t convert_utf32_to_utf8(const char32_t *input, size_t length, char *utf8_buffer) const noexcept = 0; /** * Convert possibly broken UTF-32 string into UTF-8 string and stop on error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param utf8_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char written if * successful. */ simdutf_warn_unused virtual result convert_utf32_to_utf8_with_errors(const char32_t *input, size_t length, char *utf8_buffer) const noexcept = 0; /** * Convert valid UTF-32 string into UTF-8 string. * * This function assumes that the input string is valid UTF-32. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param utf8_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_valid_utf32_to_utf8(const char32_t *input, size_t length, char *utf8_buffer) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /** * Return the number of bytes that this UTF-16 string would require in Latin1 * format. * * * @param input the UTF-16 string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @return the number of bytes required to encode the UTF-16 string as Latin1 */ simdutf_warn_unused virtual size_t utf16_length_from_latin1(size_t length) const noexcept { return length; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /** * Convert possibly broken UTF-32 string into UTF-16LE string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param utf16_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-32 * string */ simdutf_warn_unused virtual size_t convert_utf32_to_utf16le(const char32_t *input, size_t length, char16_t *utf16_buffer) const noexcept = 0; /** * Convert possibly broken UTF-32 string into UTF-16BE string. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param utf16_buffer the pointer to buffer that can hold conversion result * @return number of written code units; 0 if input is not a valid UTF-32 * string */ simdutf_warn_unused virtual size_t convert_utf32_to_utf16be(const char32_t *input, size_t length, char16_t *utf16_buffer) const noexcept = 0; /** * Convert possibly broken UTF-32 string into UTF-16LE string and stop on * error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param utf16_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char16_t written if * successful. */ simdutf_warn_unused virtual result convert_utf32_to_utf16le_with_errors( const char32_t *input, size_t length, char16_t *utf16_buffer) const noexcept = 0; /** * Convert possibly broken UTF-32 string into UTF-16BE string and stop on * error. * * During the conversion also validation of the input string is done. * This function is suitable to work with inputs from untrusted sources. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param utf16_buffer the pointer to buffer that can hold conversion result * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in code units) if any, or the number of char16_t written if * successful. */ simdutf_warn_unused virtual result convert_utf32_to_utf16be_with_errors( const char32_t *input, size_t length, char16_t *utf16_buffer) const noexcept = 0; /** * Convert valid UTF-32 string into UTF-16LE string. * * This function assumes that the input string is valid UTF-32. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param utf16_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_valid_utf32_to_utf16le(const char32_t *input, size_t length, char16_t *utf16_buffer) const noexcept = 0; /** * Convert valid UTF-32 string into UTF-16BE string. * * This function assumes that the input string is valid UTF-32. * * This function is not BOM-aware. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @param utf16_buffer the pointer to a buffer that can hold the conversion * result * @return number of written code units; 0 if conversion is not possible */ simdutf_warn_unused virtual size_t convert_valid_utf32_to_utf16be(const char32_t *input, size_t length, char16_t *utf16_buffer) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 /** * Change the endianness of the input. Can be used to go from UTF-16LE to * UTF-16BE or from UTF-16BE to UTF-16LE. * * This function does not validate the input. * * This function is not BOM-aware. * * @param input the UTF-16 string to process * @param length the length of the string in 2-byte code units * (char16_t) * @param output the pointer to a buffer that can hold the conversion * result */ virtual void change_endianness_utf16(const char16_t *input, size_t length, char16_t *output) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /** * Return the number of bytes that this Latin1 string would require in UTF-8 * format. * * @param input the Latin1 string to convert * @param length the length of the string bytes * @return the number of bytes required to encode the Latin1 string as UTF-8 */ simdutf_warn_unused virtual size_t utf8_length_from_latin1(const char *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 /** * Compute the number of bytes that this UTF-32 string would require in UTF-8 * format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-32 strings but in such cases the result is implementation defined. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @return the number of bytes required to encode the UTF-32 string as UTF-8 */ simdutf_warn_unused virtual size_t utf8_length_from_utf32(const char32_t *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /** * Compute the number of bytes that this UTF-32 string would require in Latin1 * format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-32 strings but in such cases the result is implementation defined. * * @param length the length of the string in 4-byte code units * (char32_t) * @return the number of bytes required to encode the UTF-32 string as Latin1 */ simdutf_warn_unused virtual size_t latin1_length_from_utf32(size_t length) const noexcept { return length; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 /** * Compute the number of bytes that this UTF-8 string would require in Latin1 * format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-8 strings but in such cases the result is implementation defined. * * @param input the UTF-8 string to convert * @param length the length of the string in byte * @return the number of bytes required to encode the UTF-8 string as Latin1 */ simdutf_warn_unused virtual size_t latin1_length_from_utf8(const char *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 /** * Compute the number of bytes that this UTF-16LE/BE string would require in * Latin1 format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @return the number of bytes required to encode the UTF-16LE string as * Latin1 */ simdutf_warn_unused virtual size_t latin1_length_from_utf16(size_t length) const noexcept { return length; } #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /** * Compute the number of two-byte code units that this UTF-32 string would * require in UTF-16 format. * * This function does not validate the input. It is acceptable to pass invalid * UTF-32 strings but in such cases the result is implementation defined. * * @param input the UTF-32 string to convert * @param length the length of the string in 4-byte code units * (char32_t) * @return the number of bytes required to encode the UTF-32 string as UTF-16 */ simdutf_warn_unused virtual size_t utf16_length_from_utf32(const char32_t *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 /** * Return the number of bytes that this UTF-32 string would require in Latin1 * format. * * @param length the length of the string in 4-byte code units * (char32_t) * @return the number of bytes required to encode the UTF-32 string as Latin1 */ simdutf_warn_unused virtual size_t utf32_length_from_latin1(size_t length) const noexcept { return length; } #endif // SIMDUTF_FEATURE_UTF32 && SIMDUTF_FEATURE_LATIN1 #if SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 /** * Compute the number of bytes that this UTF-16LE string would require in * UTF-32 format. * * This function is equivalent to count_utf16le. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16LE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @return the number of bytes required to encode the UTF-16LE string as * UTF-32 */ simdutf_warn_unused virtual size_t utf32_length_from_utf16le(const char16_t *input, size_t length) const noexcept = 0; /** * Compute the number of bytes that this UTF-16BE string would require in * UTF-32 format. * * This function is equivalent to count_utf16be. * * This function does not validate the input. It is acceptable to pass invalid * UTF-16 strings but in such cases the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16BE string to convert * @param length the length of the string in 2-byte code units * (char16_t) * @return the number of bytes required to encode the UTF-16BE string as * UTF-32 */ simdutf_warn_unused virtual size_t utf32_length_from_utf16be(const char16_t *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 && SIMDUTF_FEATURE_UTF32 #if SIMDUTF_FEATURE_UTF16 /** * Count the number of code points (characters) in the string assuming that * it is valid. * * This function assumes that the input string is valid UTF-16LE. * It is acceptable to pass invalid UTF-16 strings but in such cases * the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16LE string to process * @param length the length of the string in 2-byte code units * (char16_t) * @return number of code points */ simdutf_warn_unused virtual size_t count_utf16le(const char16_t *input, size_t length) const noexcept = 0; /** * Count the number of code points (characters) in the string assuming that * it is valid. * * This function assumes that the input string is valid UTF-16BE. * It is acceptable to pass invalid UTF-16 strings but in such cases * the result is implementation defined. * * This function is not BOM-aware. * * @param input the UTF-16BE string to process * @param length the length of the string in 2-byte code units * (char16_t) * @return number of code points */ simdutf_warn_unused virtual size_t count_utf16be(const char16_t *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF16 #if SIMDUTF_FEATURE_UTF8 /** * Count the number of code points (characters) in the string assuming that * it is valid. * * This function assumes that the input string is valid UTF-8. * It is acceptable to pass invalid UTF-8 strings but in such cases * the result is implementation defined. * * @param input the UTF-8 string to process * @param length the length of the string in bytes * @return number of code points */ simdutf_warn_unused virtual size_t count_utf8(const char *input, size_t length) const noexcept = 0; #endif // SIMDUTF_FEATURE_UTF8 #if SIMDUTF_FEATURE_BASE64 /** * Provide the maximal binary length in bytes given the base64 input. * In general, if the input contains ASCII spaces, the result will be less * than the maximum length. It is acceptable to pass invalid base64 strings * but in such cases the result is implementation defined. * * @param input the base64 input to process * @param length the length of the base64 input in bytes * @return maximal number of binary bytes */ simdutf_warn_unused size_t maximal_binary_length_from_base64( const char *input, size_t length) const noexcept; /** * Provide the maximal binary length in bytes given the base64 input. * In general, if the input contains ASCII spaces, the result will be less * than the maximum length. It is acceptable to pass invalid base64 strings * but in such cases the result is implementation defined. * * @param input the base64 input to process, in ASCII stored as 16-bit * units * @param length the length of the base64 input in 16-bit units * @return maximal number of binary bytes */ simdutf_warn_unused size_t maximal_binary_length_from_base64( const char16_t *input, size_t length) const noexcept; /** * Convert a base64 input to a binary output. * * This function follows the WHATWG forgiving-base64 format, which means that * it will ignore any ASCII spaces in the input. You may provide a padded * input (with one or two equal signs at the end) or an unpadded input * (without any equal signs at the end). * * See https://infra.spec.whatwg.org/#forgiving-base64-decode * * This function will fail in case of invalid input. When last_chunk_options = * loose, there are two possible reasons for failure: the input contains a * number of base64 characters that when divided by 4, leaves a single * remainder character (BASE64_INPUT_REMAINDER), or the input contains a * character that is not a valid base64 character (INVALID_BASE64_CHARACTER). * * You should call this function with a buffer that is at least * maximal_binary_length_from_base64(input, length) bytes long. If you fail to * provide that much space, the function may cause a buffer overflow. * * @param input the base64 string to process * @param length the length of the string in bytes * @param output the pointer to a buffer that can hold the conversion * result (should be at least maximal_binary_length_from_base64(input, length) * bytes long). * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and either position of the error * (in the input in bytes) if any, or the number of bytes written if * successful. */ simdutf_warn_unused virtual result base64_to_binary(const char *input, size_t length, char *output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept = 0; /** * Convert a base64 input to a binary output while returning more details * than base64_to_binary. * * This function follows the WHATWG forgiving-base64 format, which means that * it will ignore any ASCII spaces in the input. You may provide a padded * input (with one or two equal signs at the end) or an unpadded input * (without any equal signs at the end). * * See https://infra.spec.whatwg.org/#forgiving-base64-decode * * This function will fail in case of invalid input. When last_chunk_options = * loose, there are two possible reasons for failure: the input contains a * number of base64 characters that when divided by 4, leaves a single * remainder character (BASE64_INPUT_REMAINDER), or the input contains a * character that is not a valid base64 character (INVALID_BASE64_CHARACTER). * * You should call this function with a buffer that is at least * maximal_binary_length_from_base64(input, length) bytes long. If you fail to * provide that much space, the function may cause a buffer overflow. * * @param input the base64 string to process * @param length the length of the string in bytes * @param output the pointer to a buffer that can hold the conversion * result (should be at least maximal_binary_length_from_base64(input, length) * bytes long). * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @return a full_result pair struct (of type simdutf::result containing the * three fields error, input_count and output_count). */ simdutf_warn_unused virtual full_result base64_to_binary_details( const char *input, size_t length, char *output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept = 0; /** * Convert a base64 input to a binary output. * * This function follows the WHATWG forgiving-base64 format, which means that * it will ignore any ASCII spaces in the input. You may provide a padded * input (with one or two equal signs at the end) or an unpadded input * (without any equal signs at the end). * * See https://infra.spec.whatwg.org/#forgiving-base64-decode * * This function will fail in case of invalid input. When last_chunk_options = * loose, there are two possible reasons for failure: the input contains a * number of base64 characters that when divided by 4, leaves a single * remainder character (BASE64_INPUT_REMAINDER), or the input contains a * character that is not a valid base64 character (INVALID_BASE64_CHARACTER). * * You should call this function with a buffer that is at least * maximal_binary_length_from_base64(input, length) bytes long. If you * fail to provide that much space, the function may cause a buffer overflow. * * @param input the base64 string to process, in ASCII stored as * 16-bit units * @param length the length of the string in 16-bit units * @param output the pointer to a buffer that can hold the conversion * result (should be at least maximal_binary_length_from_base64(input, length) * bytes long). * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @return a result pair struct (of type simdutf::result containing the two * fields error and count) with an error code and position of the * INVALID_BASE64_CHARACTER error (in the input in units) if any, or the * number of bytes written if successful. */ simdutf_warn_unused virtual result base64_to_binary(const char16_t *input, size_t length, char *output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept = 0; /** * Convert a base64 input to a binary output while returning more details * than base64_to_binary. * * This function follows the WHATWG forgiving-base64 format, which means that * it will ignore any ASCII spaces in the input. You may provide a padded * input (with one or two equal signs at the end) or an unpadded input * (without any equal signs at the end). * * See https://infra.spec.whatwg.org/#forgiving-base64-decode * * This function will fail in case of invalid input. When last_chunk_options = * loose, there are two possible reasons for failure: the input contains a * number of base64 characters that when divided by 4, leaves a single * remainder character (BASE64_INPUT_REMAINDER), or the input contains a * character that is not a valid base64 character (INVALID_BASE64_CHARACTER). * * You should call this function with a buffer that is at least * maximal_binary_length_from_base64(input, length) bytes long. If you fail to * provide that much space, the function may cause a buffer overflow. * * @param input the base64 string to process * @param length the length of the string in bytes * @param output the pointer to a buffer that can hold the conversion * result (should be at least maximal_binary_length_from_base64(input, length) * bytes long). * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @return a full_result pair struct (of type simdutf::result containing the * three fields error, input_count and output_count). */ simdutf_warn_unused virtual full_result base64_to_binary_details( const char16_t *input, size_t length, char *output, base64_options options = base64_default, last_chunk_handling_options last_chunk_options = last_chunk_handling_options::loose) const noexcept = 0; /** * Provide the base64 length in bytes given the length of a binary input. * * @param length the length of the input in bytes * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @return number of base64 bytes */ simdutf_warn_unused size_t base64_length_from_binary( size_t length, base64_options options = base64_default) const noexcept; /** * Convert a binary input to a base64 output. * * The default option (simdutf::base64_default) uses the characters `+` and * `/` as part of its alphabet. Further, it adds padding (`=`) at the end of * the output to ensure that the output length is a multiple of four. * * The URL option (simdutf::base64_url) uses the characters `-` and `_` as * part of its alphabet. No padding is added at the end of the output. * * This function always succeeds. * * @param input the binary to process * @param length the length of the input in bytes * @param output the pointer to a buffer that can hold the conversion * result (should be at least base64_length_from_binary(length) bytes long) * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @return number of written bytes, will be equal to * base64_length_from_binary(length, options) */ virtual size_t binary_to_base64(const char *input, size_t length, char *output, base64_options options = base64_default) const noexcept = 0; /** * Convert a binary input to a base64 output with lines of given length. * Lines are separated by a single linefeed character. * * The default option (simdutf::base64_default) uses the characters `+` and * `/` as part of its alphabet. Further, it adds padding (`=`) at the end of * the output to ensure that the output length is a multiple of four. * * The URL option (simdutf::base64_url) uses the characters `-` and `_` as * part of its alphabet. No padding is added at the end of the output. * * This function always succeeds. * * @param input the binary to process * @param length the length of the input in bytes * @param output the pointer to a buffer that can hold the conversion * result (should be at least base64_length_from_binary_with_lines(length, * options, line_length) bytes long) * @param line_length the length of each line, values smaller than 4 are * interpreted as 4 * @param options the base64 options to use, can be base64_default or * base64_url, is base64_default by default. * @return number of written bytes, will be equal to * base64_length_from_binary_with_lines(length, options, line_length) */ virtual size_t binary_to_base64_with_lines( const char *input, size_t length, char *output, size_t line_length = simdutf::default_line_length, base64_options options = base64_default) const noexcept = 0; /** * Find the first occurrence of a character in a string. If the character is * not found, return a pointer to the end of the string. * @param start the start of the string * @param end the end of the string * @param character the character to find * @return a pointer to the first occurrence of the character in the string, * or a pointer to the end of the string if the character is not found. * */ virtual const char *find(const char *start, const char *end, char character) const noexcept = 0; virtual const char16_t *find(const char16_t *start, const char16_t *end, char16_t character) const noexcept = 0; #endif // SIMDUTF_FEATURE_BASE64 #ifdef SIMDUTF_INTERNAL_TESTS // This method is exported only in developer mode, its purpose // is to expose some internal test procedures from the given // implementation and then use them through our standard test // framework. // // Regular users should not use it, the tests of the public // API are enough. struct TestProcedure { // display name std::string name; // procedure should return whether given test pass or not void (*procedure)(const implementation &); }; virtual std::vector internal_tests() const; #endif protected: /** @private Construct an implementation with the given name and description. * For subclasses. */ simdutf_really_inline implementation(const char *name, const char *description, uint32_t required_instruction_sets) : _name(name), _description(description), _required_instruction_sets(required_instruction_sets) {} protected: ~implementation() = default; private: /** * The name of this implementation. */ const char *_name; /** * The description of this implementation. */ const char *_description; /** * Instruction sets required for this implementation. */ const uint32_t _required_instruction_sets; }; /** @private */ namespace internal { /** * The list of available implementations compiled into simdutf. */ class available_implementation_list { public: /** Get the list of available implementations compiled into simdutf */ simdutf_really_inline available_implementation_list() {} /** Number of implementations */ size_t size() const noexcept; /** STL const begin() iterator */ const implementation *const *begin() const noexcept; /** STL const end() iterator */ const implementation *const *end() const noexcept; /** * Get the implementation with the given name. * * Case sensitive. * * const implementation *impl = * simdutf::available_implementations["westmere"]; if (!impl) { exit(1); } if * (!imp->supported_by_runtime_system()) { exit(1); } * simdutf::active_implementation = impl; * * @param name the implementation to find, e.g. "westmere", "haswell", "arm64" * @return the implementation, or nullptr if the parse failed. */ const implementation *operator[](const std::string &name) const noexcept { for (const implementation *impl : *this) { if (impl->name() == name) { return impl; } } return nullptr; } /** * Detect the most advanced implementation supported by the current host. * * This is used to initialize the implementation on startup. * * const implementation *impl = * simdutf::available_implementation::detect_best_supported(); * simdutf::active_implementation = impl; * * @return the most advanced supported implementation for the current host, or * an implementation that returns UNSUPPORTED_ARCHITECTURE if there is no * supported implementation. Will never return nullptr. */ const implementation *detect_best_supported() const noexcept; }; template class atomic_ptr { public: atomic_ptr(T *_ptr) : ptr{_ptr} {} #if defined(SIMDUTF_NO_THREADS) operator const T *() const { return ptr; } const T &operator*() const { return *ptr; } const T *operator->() const { return ptr; } operator T *() { return ptr; } T &operator*() { return *ptr; } T *operator->() { return ptr; } atomic_ptr &operator=(T *_ptr) { ptr = _ptr; return *this; } #else operator const T *() const { return ptr.load(); } const T &operator*() const { return *ptr; } const T *operator->() const { return ptr.load(); } operator T *() { return ptr.load(); } T &operator*() { return *ptr; } T *operator->() { return ptr.load(); } atomic_ptr &operator=(T *_ptr) { ptr = _ptr; return *this; } #endif private: #if defined(SIMDUTF_NO_THREADS) T *ptr; #else std::atomic ptr; #endif }; class detect_best_supported_implementation_on_first_use; } // namespace internal /** * The list of available implementations compiled into simdutf. */ extern SIMDUTF_DLLIMPORTEXPORT const internal::available_implementation_list & get_available_implementations(); /** * The active implementation. * * Automatically initialized on first use to the most advanced implementation * supported by this hardware. */ extern SIMDUTF_DLLIMPORTEXPORT internal::atomic_ptr & get_active_implementation(); } // namespace simdutf #endif // SIMDUTF_IMPLEMENTATION_H /* end file include/simdutf/implementation.h */ // Implementation-internal files (must be included before the implementations // themselves, to keep amalgamation working--otherwise, the first time a file is // included, it might be put inside the #ifdef // SIMDUTF_IMPLEMENTATION_ARM64/FALLBACK/etc., which means the other // implementations can't compile unless that implementation is turned on). SIMDUTF_POP_DISABLE_WARNINGS #endif // SIMDUTF_H /* end file include/simdutf.h */ zsv-1.3.0/app/external/sqlite3/000077500000000000000000000000001511312357700163305ustar00rootroot00000000000000zsv-1.3.0/app/external/sqlite3/sqlite3.c000066400000000000000000370275471511312357700201110ustar00rootroot00000000000000/****************************************************************************** ** This file is an amalgamation of many separate C source files from SQLite ** version 3.33.0. By combining all the individual C code files into this ** single large file, the entire code can be compiled as a single translation ** unit. This allows many compilers to do optimizations that would not be ** possible if the files were compiled separately. Performance improvements ** of 5% or more are commonly seen when SQLite is compiled as a single ** translation unit. ** ** This file is all you need to compile SQLite. To use SQLite in other ** programs, you need this file and the "sqlite3.h" header file that defines ** the programming interface to the SQLite library. (If you do not have ** the "sqlite3.h" header file at hand, you will find a copy embedded within ** the text of this file. Search for "Begin file sqlite3.h" to find the start ** of the embedded sqlite3.h header file.) Additional code files may be needed ** if you want a wrapper to interface SQLite with your choice of programming ** language. The code for the "sqlite3" command-line shell is also in a ** separate file. This file contains only code for the core SQLite library. */ #define SQLITE_CORE 1 #define SQLITE_AMALGAMATION 1 #ifndef SQLITE_PRIVATE # define SQLITE_PRIVATE static #endif /************** Begin file ctime.c *******************************************/ /* ** 2010 February 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file implements routines used to report what compile-time options ** SQLite was built with. */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS /* IMP: R-16824-07538 */ /* ** Include the configuration header output by 'configure' if we're using the ** autoconf-based build */ #if defined(_HAVE_SQLITE_CONFIG_H) && !defined(SQLITECONFIG_H) #include "config.h" #define SQLITECONFIG_H 1 #endif /* These macros are provided to "stringify" the value of the define ** for those options in which the value is meaningful. */ #define CTIMEOPT_VAL_(opt) #opt #define CTIMEOPT_VAL(opt) CTIMEOPT_VAL_(opt) /* Like CTIMEOPT_VAL, but especially for SQLITE_DEFAULT_LOOKASIDE. This ** option requires a separate macro because legal values contain a single ** comma. e.g. (-DSQLITE_DEFAULT_LOOKASIDE="100,100") */ #define CTIMEOPT_VAL2_(opt1,opt2) #opt1 "," #opt2 #define CTIMEOPT_VAL2(opt) CTIMEOPT_VAL2_(opt) /* ** An array of names of all compile-time options. This array should ** be sorted A-Z. ** ** This array looks large, but in a typical installation actually uses ** only a handful of compile-time options, so most times this array is usually ** rather short and uses little memory space. */ static const char * const sqlite3azCompileOpt[] = { /* ** BEGIN CODE GENERATED BY tool/mkctime.tcl */ #if SQLITE_32BIT_ROWID "32BIT_ROWID", #endif #if SQLITE_4_BYTE_ALIGNED_MALLOC "4_BYTE_ALIGNED_MALLOC", #endif #if SQLITE_64BIT_STATS "64BIT_STATS", #endif #if SQLITE_ALLOW_COVERING_INDEX_SCAN "ALLOW_COVERING_INDEX_SCAN", #endif #if SQLITE_ALLOW_URI_AUTHORITY "ALLOW_URI_AUTHORITY", #endif #ifdef SQLITE_BITMASK_TYPE "BITMASK_TYPE=" CTIMEOPT_VAL(SQLITE_BITMASK_TYPE), #endif #if SQLITE_BUG_COMPATIBLE_20160819 "BUG_COMPATIBLE_20160819", #endif #if SQLITE_CASE_SENSITIVE_LIKE "CASE_SENSITIVE_LIKE", #endif #if SQLITE_CHECK_PAGES "CHECK_PAGES", #endif #if defined(__clang__) && defined(__clang_major__) "COMPILER=clang-" CTIMEOPT_VAL(__clang_major__) "." CTIMEOPT_VAL(__clang_minor__) "." CTIMEOPT_VAL(__clang_patchlevel__), #elif defined(_MSC_VER) "COMPILER=msvc-" CTIMEOPT_VAL(_MSC_VER), #elif defined(__GNUC__) && defined(__VERSION__) "COMPILER=gcc-" __VERSION__, #endif #if SQLITE_COVERAGE_TEST "COVERAGE_TEST", #endif #if SQLITE_DEBUG "DEBUG", #endif #if SQLITE_DEFAULT_AUTOMATIC_INDEX "DEFAULT_AUTOMATIC_INDEX", #endif #if SQLITE_DEFAULT_AUTOVACUUM "DEFAULT_AUTOVACUUM", #endif #ifdef SQLITE_DEFAULT_CACHE_SIZE "DEFAULT_CACHE_SIZE=" CTIMEOPT_VAL(SQLITE_DEFAULT_CACHE_SIZE), #endif #if SQLITE_DEFAULT_CKPTFULLFSYNC "DEFAULT_CKPTFULLFSYNC", #endif #ifdef SQLITE_DEFAULT_FILE_FORMAT "DEFAULT_FILE_FORMAT=" CTIMEOPT_VAL(SQLITE_DEFAULT_FILE_FORMAT), #endif #ifdef SQLITE_DEFAULT_FILE_PERMISSIONS "DEFAULT_FILE_PERMISSIONS=" CTIMEOPT_VAL(SQLITE_DEFAULT_FILE_PERMISSIONS), #endif #if SQLITE_DEFAULT_FOREIGN_KEYS "DEFAULT_FOREIGN_KEYS", #endif #ifdef SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT "DEFAULT_JOURNAL_SIZE_LIMIT=" CTIMEOPT_VAL(SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT), #endif #ifdef SQLITE_DEFAULT_LOCKING_MODE "DEFAULT_LOCKING_MODE=" CTIMEOPT_VAL(SQLITE_DEFAULT_LOCKING_MODE), #endif #ifdef SQLITE_DEFAULT_LOOKASIDE "DEFAULT_LOOKASIDE=" CTIMEOPT_VAL2(SQLITE_DEFAULT_LOOKASIDE), #endif #if SQLITE_DEFAULT_MEMSTATUS "DEFAULT_MEMSTATUS", #endif #ifdef SQLITE_DEFAULT_MMAP_SIZE "DEFAULT_MMAP_SIZE=" CTIMEOPT_VAL(SQLITE_DEFAULT_MMAP_SIZE), #endif #ifdef SQLITE_DEFAULT_PAGE_SIZE "DEFAULT_PAGE_SIZE=" CTIMEOPT_VAL(SQLITE_DEFAULT_PAGE_SIZE), #endif #ifdef SQLITE_DEFAULT_PCACHE_INITSZ "DEFAULT_PCACHE_INITSZ=" CTIMEOPT_VAL(SQLITE_DEFAULT_PCACHE_INITSZ), #endif #ifdef SQLITE_DEFAULT_PROXYDIR_PERMISSIONS "DEFAULT_PROXYDIR_PERMISSIONS=" CTIMEOPT_VAL(SQLITE_DEFAULT_PROXYDIR_PERMISSIONS), #endif #if SQLITE_DEFAULT_RECURSIVE_TRIGGERS "DEFAULT_RECURSIVE_TRIGGERS", #endif #ifdef SQLITE_DEFAULT_ROWEST "DEFAULT_ROWEST=" CTIMEOPT_VAL(SQLITE_DEFAULT_ROWEST), #endif #ifdef SQLITE_DEFAULT_SECTOR_SIZE "DEFAULT_SECTOR_SIZE=" CTIMEOPT_VAL(SQLITE_DEFAULT_SECTOR_SIZE), #endif #ifdef SQLITE_DEFAULT_SYNCHRONOUS "DEFAULT_SYNCHRONOUS=" CTIMEOPT_VAL(SQLITE_DEFAULT_SYNCHRONOUS), #endif #ifdef SQLITE_DEFAULT_WAL_AUTOCHECKPOINT "DEFAULT_WAL_AUTOCHECKPOINT=" CTIMEOPT_VAL(SQLITE_DEFAULT_WAL_AUTOCHECKPOINT), #endif #ifdef SQLITE_DEFAULT_WAL_SYNCHRONOUS "DEFAULT_WAL_SYNCHRONOUS=" CTIMEOPT_VAL(SQLITE_DEFAULT_WAL_SYNCHRONOUS), #endif #ifdef SQLITE_DEFAULT_WORKER_THREADS "DEFAULT_WORKER_THREADS=" CTIMEOPT_VAL(SQLITE_DEFAULT_WORKER_THREADS), #endif #if SQLITE_DIRECT_OVERFLOW_READ "DIRECT_OVERFLOW_READ", #endif #if SQLITE_DISABLE_DIRSYNC "DISABLE_DIRSYNC", #endif #if SQLITE_DISABLE_FTS3_UNICODE "DISABLE_FTS3_UNICODE", #endif #if SQLITE_DISABLE_FTS4_DEFERRED "DISABLE_FTS4_DEFERRED", #endif #if SQLITE_DISABLE_INTRINSIC "DISABLE_INTRINSIC", #endif #if SQLITE_DISABLE_LFS "DISABLE_LFS", #endif #if SQLITE_DISABLE_PAGECACHE_OVERFLOW_STATS "DISABLE_PAGECACHE_OVERFLOW_STATS", #endif #if SQLITE_DISABLE_SKIPAHEAD_DISTINCT "DISABLE_SKIPAHEAD_DISTINCT", #endif #ifdef SQLITE_ENABLE_8_3_NAMES "ENABLE_8_3_NAMES=" CTIMEOPT_VAL(SQLITE_ENABLE_8_3_NAMES), #endif #if SQLITE_ENABLE_API_ARMOR "ENABLE_API_ARMOR", #endif #if SQLITE_ENABLE_ATOMIC_WRITE "ENABLE_ATOMIC_WRITE", #endif #if SQLITE_ENABLE_BATCH_ATOMIC_WRITE "ENABLE_BATCH_ATOMIC_WRITE", #endif #if SQLITE_ENABLE_BYTECODE_VTAB "ENABLE_BYTECODE_VTAB", #endif #if SQLITE_ENABLE_CEROD "ENABLE_CEROD=" CTIMEOPT_VAL(SQLITE_ENABLE_CEROD), #endif #if SQLITE_ENABLE_COLUMN_METADATA "ENABLE_COLUMN_METADATA", #endif #if SQLITE_ENABLE_COLUMN_USED_MASK "ENABLE_COLUMN_USED_MASK", #endif #if SQLITE_ENABLE_COSTMULT "ENABLE_COSTMULT", #endif #if SQLITE_ENABLE_CURSOR_HINTS "ENABLE_CURSOR_HINTS", #endif #if SQLITE_ENABLE_DBSTAT_VTAB "ENABLE_DBSTAT_VTAB", #endif #if SQLITE_ENABLE_EXPENSIVE_ASSERT "ENABLE_EXPENSIVE_ASSERT", #endif #if SQLITE_ENABLE_FTS1 "ENABLE_FTS1", #endif #if SQLITE_ENABLE_FTS2 "ENABLE_FTS2", #endif #if SQLITE_ENABLE_FTS3 "ENABLE_FTS3", #endif #if SQLITE_ENABLE_FTS3_PARENTHESIS "ENABLE_FTS3_PARENTHESIS", #endif #if SQLITE_ENABLE_FTS3_TOKENIZER "ENABLE_FTS3_TOKENIZER", #endif #if SQLITE_ENABLE_FTS4 "ENABLE_FTS4", #endif #if SQLITE_ENABLE_FTS5 "ENABLE_FTS5", #endif #if SQLITE_ENABLE_GEOPOLY "ENABLE_GEOPOLY", #endif #if SQLITE_ENABLE_HIDDEN_COLUMNS "ENABLE_HIDDEN_COLUMNS", #endif #if SQLITE_ENABLE_ICU "ENABLE_ICU", #endif #if SQLITE_ENABLE_IOTRACE "ENABLE_IOTRACE", #endif #if SQLITE_ENABLE_JSON1 "ENABLE_JSON1", #endif #if SQLITE_ENABLE_LOAD_EXTENSION "ENABLE_LOAD_EXTENSION", #endif #ifdef SQLITE_ENABLE_LOCKING_STYLE "ENABLE_LOCKING_STYLE=" CTIMEOPT_VAL(SQLITE_ENABLE_LOCKING_STYLE), #endif #if SQLITE_ENABLE_MEMORY_MANAGEMENT "ENABLE_MEMORY_MANAGEMENT", #endif #if SQLITE_ENABLE_MEMSYS3 "ENABLE_MEMSYS3", #endif #if SQLITE_ENABLE_MEMSYS5 "ENABLE_MEMSYS5", #endif #if SQLITE_ENABLE_MULTIPLEX "ENABLE_MULTIPLEX", #endif #if SQLITE_ENABLE_NORMALIZE "ENABLE_NORMALIZE", #endif #if SQLITE_ENABLE_NULL_TRIM "ENABLE_NULL_TRIM", #endif #if SQLITE_ENABLE_OVERSIZE_CELL_CHECK "ENABLE_OVERSIZE_CELL_CHECK", #endif #if SQLITE_ENABLE_PREUPDATE_HOOK "ENABLE_PREUPDATE_HOOK", #endif #if SQLITE_ENABLE_QPSG "ENABLE_QPSG", #endif #if SQLITE_ENABLE_RBU "ENABLE_RBU", #endif #if SQLITE_ENABLE_RTREE "ENABLE_RTREE", #endif #if SQLITE_ENABLE_SELECTTRACE "ENABLE_SELECTTRACE", #endif #if SQLITE_ENABLE_SESSION "ENABLE_SESSION", #endif #if SQLITE_ENABLE_SNAPSHOT "ENABLE_SNAPSHOT", #endif #if SQLITE_ENABLE_SORTER_REFERENCES "ENABLE_SORTER_REFERENCES", #endif #if SQLITE_ENABLE_SQLLOG "ENABLE_SQLLOG", #endif #if defined(SQLITE_ENABLE_STAT4) "ENABLE_STAT4", #endif #if SQLITE_ENABLE_STMTVTAB "ENABLE_STMTVTAB", #endif #if SQLITE_ENABLE_STMT_SCANSTATUS "ENABLE_STMT_SCANSTATUS", #endif #if SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION "ENABLE_UNKNOWN_SQL_FUNCTION", #endif #if SQLITE_ENABLE_UNLOCK_NOTIFY "ENABLE_UNLOCK_NOTIFY", #endif #if SQLITE_ENABLE_UPDATE_DELETE_LIMIT "ENABLE_UPDATE_DELETE_LIMIT", #endif #if SQLITE_ENABLE_URI_00_ERROR "ENABLE_URI_00_ERROR", #endif #if SQLITE_ENABLE_VFSTRACE "ENABLE_VFSTRACE", #endif #if SQLITE_ENABLE_WHERETRACE "ENABLE_WHERETRACE", #endif #if SQLITE_ENABLE_ZIPVFS "ENABLE_ZIPVFS", #endif #if SQLITE_EXPLAIN_ESTIMATED_ROWS "EXPLAIN_ESTIMATED_ROWS", #endif #if SQLITE_EXTRA_IFNULLROW "EXTRA_IFNULLROW", #endif #ifdef SQLITE_EXTRA_INIT "EXTRA_INIT=" CTIMEOPT_VAL(SQLITE_EXTRA_INIT), #endif #ifdef SQLITE_EXTRA_SHUTDOWN "EXTRA_SHUTDOWN=" CTIMEOPT_VAL(SQLITE_EXTRA_SHUTDOWN), #endif #ifdef SQLITE_FTS3_MAX_EXPR_DEPTH "FTS3_MAX_EXPR_DEPTH=" CTIMEOPT_VAL(SQLITE_FTS3_MAX_EXPR_DEPTH), #endif #if SQLITE_FTS5_ENABLE_TEST_MI "FTS5_ENABLE_TEST_MI", #endif #if SQLITE_FTS5_NO_WITHOUT_ROWID "FTS5_NO_WITHOUT_ROWID", #endif #if HAVE_ISNAN || SQLITE_HAVE_ISNAN "HAVE_ISNAN", #endif #if SQLITE_HOMEGROWN_RECURSIVE_MUTEX "HOMEGROWN_RECURSIVE_MUTEX", #endif #if SQLITE_IGNORE_AFP_LOCK_ERRORS "IGNORE_AFP_LOCK_ERRORS", #endif #if SQLITE_IGNORE_FLOCK_LOCK_ERRORS "IGNORE_FLOCK_LOCK_ERRORS", #endif #if SQLITE_INLINE_MEMCPY "INLINE_MEMCPY", #endif #if SQLITE_INT64_TYPE "INT64_TYPE", #endif #ifdef SQLITE_INTEGRITY_CHECK_ERROR_MAX "INTEGRITY_CHECK_ERROR_MAX=" CTIMEOPT_VAL(SQLITE_INTEGRITY_CHECK_ERROR_MAX), #endif #if SQLITE_LIKE_DOESNT_MATCH_BLOBS "LIKE_DOESNT_MATCH_BLOBS", #endif #if SQLITE_LOCK_TRACE "LOCK_TRACE", #endif #if SQLITE_LOG_CACHE_SPILL "LOG_CACHE_SPILL", #endif #ifdef SQLITE_MALLOC_SOFT_LIMIT "MALLOC_SOFT_LIMIT=" CTIMEOPT_VAL(SQLITE_MALLOC_SOFT_LIMIT), #endif #ifdef SQLITE_MAX_ATTACHED "MAX_ATTACHED=" CTIMEOPT_VAL(SQLITE_MAX_ATTACHED), #endif #ifdef SQLITE_MAX_COLUMN "MAX_COLUMN=" CTIMEOPT_VAL(SQLITE_MAX_COLUMN), #endif #ifdef SQLITE_MAX_COMPOUND_SELECT "MAX_COMPOUND_SELECT=" CTIMEOPT_VAL(SQLITE_MAX_COMPOUND_SELECT), #endif #ifdef SQLITE_MAX_DEFAULT_PAGE_SIZE "MAX_DEFAULT_PAGE_SIZE=" CTIMEOPT_VAL(SQLITE_MAX_DEFAULT_PAGE_SIZE), #endif #ifdef SQLITE_MAX_EXPR_DEPTH "MAX_EXPR_DEPTH=" CTIMEOPT_VAL(SQLITE_MAX_EXPR_DEPTH), #endif #ifdef SQLITE_MAX_FUNCTION_ARG "MAX_FUNCTION_ARG=" CTIMEOPT_VAL(SQLITE_MAX_FUNCTION_ARG), #endif #ifdef SQLITE_MAX_LENGTH "MAX_LENGTH=" CTIMEOPT_VAL(SQLITE_MAX_LENGTH), #endif #ifdef SQLITE_MAX_LIKE_PATTERN_LENGTH "MAX_LIKE_PATTERN_LENGTH=" CTIMEOPT_VAL(SQLITE_MAX_LIKE_PATTERN_LENGTH), #endif #ifdef SQLITE_MAX_MEMORY "MAX_MEMORY=" CTIMEOPT_VAL(SQLITE_MAX_MEMORY), #endif #ifdef SQLITE_MAX_MMAP_SIZE "MAX_MMAP_SIZE=" CTIMEOPT_VAL(SQLITE_MAX_MMAP_SIZE), #endif #ifdef SQLITE_MAX_MMAP_SIZE_ "MAX_MMAP_SIZE_=" CTIMEOPT_VAL(SQLITE_MAX_MMAP_SIZE_), #endif #ifdef SQLITE_MAX_PAGE_COUNT "MAX_PAGE_COUNT=" CTIMEOPT_VAL(SQLITE_MAX_PAGE_COUNT), #endif #ifdef SQLITE_MAX_PAGE_SIZE "MAX_PAGE_SIZE=" CTIMEOPT_VAL(SQLITE_MAX_PAGE_SIZE), #endif #ifdef SQLITE_MAX_SCHEMA_RETRY "MAX_SCHEMA_RETRY=" CTIMEOPT_VAL(SQLITE_MAX_SCHEMA_RETRY), #endif #ifdef SQLITE_MAX_SQL_LENGTH "MAX_SQL_LENGTH=" CTIMEOPT_VAL(SQLITE_MAX_SQL_LENGTH), #endif #ifdef SQLITE_MAX_TRIGGER_DEPTH "MAX_TRIGGER_DEPTH=" CTIMEOPT_VAL(SQLITE_MAX_TRIGGER_DEPTH), #endif #ifdef SQLITE_MAX_VARIABLE_NUMBER "MAX_VARIABLE_NUMBER=" CTIMEOPT_VAL(SQLITE_MAX_VARIABLE_NUMBER), #endif #ifdef SQLITE_MAX_VDBE_OP "MAX_VDBE_OP=" CTIMEOPT_VAL(SQLITE_MAX_VDBE_OP), #endif #ifdef SQLITE_MAX_WORKER_THREADS "MAX_WORKER_THREADS=" CTIMEOPT_VAL(SQLITE_MAX_WORKER_THREADS), #endif #if SQLITE_MEMDEBUG "MEMDEBUG", #endif #if SQLITE_MIXED_ENDIAN_64BIT_FLOAT "MIXED_ENDIAN_64BIT_FLOAT", #endif #if SQLITE_MMAP_READWRITE "MMAP_READWRITE", #endif #if SQLITE_MUTEX_NOOP "MUTEX_NOOP", #endif #if SQLITE_MUTEX_NREF "MUTEX_NREF", #endif #if SQLITE_MUTEX_OMIT "MUTEX_OMIT", #endif #if SQLITE_MUTEX_PTHREADS "MUTEX_PTHREADS", #endif #if SQLITE_MUTEX_W32 "MUTEX_W32", #endif #if SQLITE_NEED_ERR_NAME "NEED_ERR_NAME", #endif #if SQLITE_NOINLINE "NOINLINE", #endif #if SQLITE_NO_SYNC "NO_SYNC", #endif #if SQLITE_OMIT_ALTERTABLE "OMIT_ALTERTABLE", #endif #if SQLITE_OMIT_ANALYZE "OMIT_ANALYZE", #endif #if SQLITE_OMIT_ATTACH "OMIT_ATTACH", #endif #if SQLITE_OMIT_AUTHORIZATION "OMIT_AUTHORIZATION", #endif #if SQLITE_OMIT_AUTOINCREMENT "OMIT_AUTOINCREMENT", #endif #if SQLITE_OMIT_AUTOINIT "OMIT_AUTOINIT", #endif #if SQLITE_OMIT_AUTOMATIC_INDEX "OMIT_AUTOMATIC_INDEX", #endif #if SQLITE_OMIT_AUTORESET "OMIT_AUTORESET", #endif #if SQLITE_OMIT_AUTOVACUUM "OMIT_AUTOVACUUM", #endif #if SQLITE_OMIT_BETWEEN_OPTIMIZATION "OMIT_BETWEEN_OPTIMIZATION", #endif #if SQLITE_OMIT_BLOB_LITERAL "OMIT_BLOB_LITERAL", #endif #if SQLITE_OMIT_CAST "OMIT_CAST", #endif #if SQLITE_OMIT_CHECK "OMIT_CHECK", #endif #if SQLITE_OMIT_COMPLETE "OMIT_COMPLETE", #endif #if SQLITE_OMIT_COMPOUND_SELECT "OMIT_COMPOUND_SELECT", #endif #if SQLITE_OMIT_CONFLICT_CLAUSE "OMIT_CONFLICT_CLAUSE", #endif #if SQLITE_OMIT_CTE "OMIT_CTE", #endif #if SQLITE_OMIT_DATETIME_FUNCS "OMIT_DATETIME_FUNCS", #endif #if SQLITE_OMIT_DECLTYPE "OMIT_DECLTYPE", #endif #if SQLITE_OMIT_DEPRECATED "OMIT_DEPRECATED", #endif #if SQLITE_OMIT_DISKIO "OMIT_DISKIO", #endif #if SQLITE_OMIT_EXPLAIN "OMIT_EXPLAIN", #endif #if SQLITE_OMIT_FLAG_PRAGMAS "OMIT_FLAG_PRAGMAS", #endif #if SQLITE_OMIT_FLOATING_POINT "OMIT_FLOATING_POINT", #endif #if SQLITE_OMIT_FOREIGN_KEY "OMIT_FOREIGN_KEY", #endif #if SQLITE_OMIT_GET_TABLE "OMIT_GET_TABLE", #endif #if SQLITE_OMIT_HEX_INTEGER "OMIT_HEX_INTEGER", #endif #if SQLITE_OMIT_INCRBLOB "OMIT_INCRBLOB", #endif #if SQLITE_OMIT_INTEGRITY_CHECK "OMIT_INTEGRITY_CHECK", #endif #if SQLITE_OMIT_LIKE_OPTIMIZATION "OMIT_LIKE_OPTIMIZATION", #endif #if SQLITE_OMIT_LOAD_EXTENSION "OMIT_LOAD_EXTENSION", #endif #if SQLITE_OMIT_LOCALTIME "OMIT_LOCALTIME", #endif #if SQLITE_OMIT_LOOKASIDE "OMIT_LOOKASIDE", #endif #if SQLITE_OMIT_MEMORYDB "OMIT_MEMORYDB", #endif #if SQLITE_OMIT_OR_OPTIMIZATION "OMIT_OR_OPTIMIZATION", #endif #if SQLITE_OMIT_PAGER_PRAGMAS "OMIT_PAGER_PRAGMAS", #endif #if SQLITE_OMIT_PARSER_TRACE "OMIT_PARSER_TRACE", #endif #if SQLITE_OMIT_POPEN "OMIT_POPEN", #endif #if SQLITE_OMIT_PRAGMA "OMIT_PRAGMA", #endif #if SQLITE_OMIT_PROGRESS_CALLBACK "OMIT_PROGRESS_CALLBACK", #endif #if SQLITE_OMIT_QUICKBALANCE "OMIT_QUICKBALANCE", #endif #if SQLITE_OMIT_REINDEX "OMIT_REINDEX", #endif #if SQLITE_OMIT_SCHEMA_PRAGMAS "OMIT_SCHEMA_PRAGMAS", #endif #if SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS "OMIT_SCHEMA_VERSION_PRAGMAS", #endif #if SQLITE_OMIT_SHARED_CACHE "OMIT_SHARED_CACHE", #endif #if SQLITE_OMIT_SHUTDOWN_DIRECTORIES "OMIT_SHUTDOWN_DIRECTORIES", #endif #if SQLITE_OMIT_SUBQUERY "OMIT_SUBQUERY", #endif #if SQLITE_OMIT_TCL_VARIABLE "OMIT_TCL_VARIABLE", #endif #if SQLITE_OMIT_TEMPDB "OMIT_TEMPDB", #endif #if SQLITE_OMIT_TEST_CONTROL "OMIT_TEST_CONTROL", #endif #if SQLITE_OMIT_TRACE "OMIT_TRACE", #endif #if SQLITE_OMIT_TRIGGER "OMIT_TRIGGER", #endif #if SQLITE_OMIT_TRUNCATE_OPTIMIZATION "OMIT_TRUNCATE_OPTIMIZATION", #endif #if SQLITE_OMIT_UTF16 "OMIT_UTF16", #endif #if SQLITE_OMIT_VACUUM "OMIT_VACUUM", #endif #if SQLITE_OMIT_VIEW "OMIT_VIEW", #endif #if SQLITE_OMIT_VIRTUALTABLE "OMIT_VIRTUALTABLE", #endif #if SQLITE_OMIT_WAL "OMIT_WAL", #endif #if SQLITE_OMIT_WSD "OMIT_WSD", #endif #if SQLITE_OMIT_XFER_OPT "OMIT_XFER_OPT", #endif #if SQLITE_PCACHE_SEPARATE_HEADER "PCACHE_SEPARATE_HEADER", #endif #if SQLITE_PERFORMANCE_TRACE "PERFORMANCE_TRACE", #endif #if SQLITE_POWERSAFE_OVERWRITE "POWERSAFE_OVERWRITE", #endif #if SQLITE_PREFER_PROXY_LOCKING "PREFER_PROXY_LOCKING", #endif #if SQLITE_PROXY_DEBUG "PROXY_DEBUG", #endif #if SQLITE_REVERSE_UNORDERED_SELECTS "REVERSE_UNORDERED_SELECTS", #endif #if SQLITE_RTREE_INT_ONLY "RTREE_INT_ONLY", #endif #if SQLITE_SECURE_DELETE "SECURE_DELETE", #endif #if SQLITE_SMALL_STACK "SMALL_STACK", #endif #ifdef SQLITE_SORTER_PMASZ "SORTER_PMASZ=" CTIMEOPT_VAL(SQLITE_SORTER_PMASZ), #endif #if SQLITE_SOUNDEX "SOUNDEX", #endif #ifdef SQLITE_STAT4_SAMPLES "STAT4_SAMPLES=" CTIMEOPT_VAL(SQLITE_STAT4_SAMPLES), #endif #ifdef SQLITE_STMTJRNL_SPILL "STMTJRNL_SPILL=" CTIMEOPT_VAL(SQLITE_STMTJRNL_SPILL), #endif #if SQLITE_SUBSTR_COMPATIBILITY "SUBSTR_COMPATIBILITY", #endif #if SQLITE_SYSTEM_MALLOC "SYSTEM_MALLOC", #endif #if SQLITE_TCL "TCL", #endif #ifdef SQLITE_TEMP_STORE "TEMP_STORE=" CTIMEOPT_VAL(SQLITE_TEMP_STORE), #endif #if SQLITE_TEST "TEST", #endif #if defined(SQLITE_THREADSAFE) "THREADSAFE=" CTIMEOPT_VAL(SQLITE_THREADSAFE), #elif defined(THREADSAFE) "THREADSAFE=" CTIMEOPT_VAL(THREADSAFE), #else "THREADSAFE=1", #endif #if SQLITE_UNLINK_AFTER_CLOSE "UNLINK_AFTER_CLOSE", #endif #if SQLITE_UNTESTABLE "UNTESTABLE", #endif #if SQLITE_USER_AUTHENTICATION "USER_AUTHENTICATION", #endif #if SQLITE_USE_ALLOCA "USE_ALLOCA", #endif #if SQLITE_USE_FCNTL_TRACE "USE_FCNTL_TRACE", #endif #if SQLITE_USE_URI "USE_URI", #endif #if SQLITE_VDBE_COVERAGE "VDBE_COVERAGE", #endif #if SQLITE_WIN32_MALLOC "WIN32_MALLOC", #endif #if SQLITE_ZERO_MALLOC "ZERO_MALLOC", #endif /* ** END CODE GENERATED BY tool/mkctime.tcl */ }; SQLITE_PRIVATE const char **sqlite3CompileOptions(int *pnOpt){ *pnOpt = sizeof(sqlite3azCompileOpt) / sizeof(sqlite3azCompileOpt[0]); return (const char**)sqlite3azCompileOpt; } #endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ /************** End of ctime.c ***********************************************/ /************** Begin file sqliteInt.h ***************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Internal interface definitions for SQLite. ** */ #ifndef SQLITEINT_H #define SQLITEINT_H /* Special Comments: ** ** Some comments have special meaning to the tools that measure test ** coverage: ** ** NO_TEST - The branches on this line are not ** measured by branch coverage. This is ** used on lines of code that actually ** implement parts of coverage testing. ** ** OPTIMIZATION-IF-TRUE - This branch is allowed to alway be false ** and the correct answer is still obtained, ** though perhaps more slowly. ** ** OPTIMIZATION-IF-FALSE - This branch is allowed to alway be true ** and the correct answer is still obtained, ** though perhaps more slowly. ** ** PREVENTS-HARMLESS-OVERREAD - This branch prevents a buffer overread ** that would be harmless and undetectable ** if it did occur. ** ** In all cases, the special comment must be enclosed in the usual ** slash-asterisk...asterisk-slash comment marks, with no spaces between the ** asterisks and the comment text. */ /* ** Make sure the Tcl calling convention macro is defined. This macro is ** only used by test code and Tcl integration code. */ #ifndef SQLITE_TCLAPI # define SQLITE_TCLAPI #endif /* ** Include the header file used to customize the compiler options for MSVC. ** This should be done first so that it can successfully prevent spurious ** compiler warnings due to subsequent content in this file and other files ** that are included by this file. */ /************** Include msvc.h in the middle of sqliteInt.h ******************/ /************** Begin file msvc.h ********************************************/ /* ** 2015 January 12 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains code that is specific to MSVC. */ #ifndef SQLITE_MSVC_H #define SQLITE_MSVC_H #if defined(_MSC_VER) #pragma warning(disable : 4054) #pragma warning(disable : 4055) #pragma warning(disable : 4100) #pragma warning(disable : 4127) #pragma warning(disable : 4130) #pragma warning(disable : 4152) #pragma warning(disable : 4189) #pragma warning(disable : 4206) #pragma warning(disable : 4210) #pragma warning(disable : 4232) #pragma warning(disable : 4244) #pragma warning(disable : 4305) #pragma warning(disable : 4306) #pragma warning(disable : 4702) #pragma warning(disable : 4706) #endif /* defined(_MSC_VER) */ #if defined(_MSC_VER) && !defined(_WIN64) #undef SQLITE_4_BYTE_ALIGNED_MALLOC #define SQLITE_4_BYTE_ALIGNED_MALLOC #endif /* defined(_MSC_VER) && !defined(_WIN64) */ #endif /* SQLITE_MSVC_H */ /************** End of msvc.h ************************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /* ** Special setup for VxWorks */ /************** Include vxworks.h in the middle of sqliteInt.h ***************/ /************** Begin file vxworks.h *****************************************/ /* ** 2015-03-02 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains code that is specific to Wind River's VxWorks */ #if defined(__RTP__) || defined(_WRS_KERNEL) /* This is VxWorks. Set up things specially for that OS */ #include #include /* amalgamator: dontcache */ #define OS_VXWORKS 1 #define SQLITE_OS_OTHER 0 #define SQLITE_HOMEGROWN_RECURSIVE_MUTEX 1 #define SQLITE_OMIT_LOAD_EXTENSION 1 #define SQLITE_ENABLE_LOCKING_STYLE 0 #define HAVE_UTIME 1 #else /* This is not VxWorks. */ #define OS_VXWORKS 0 #define HAVE_FCHOWN 1 #define HAVE_READLINK 1 #define HAVE_LSTAT 1 #endif /* defined(_WRS_KERNEL) */ /************** End of vxworks.h *********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /* ** These #defines should enable >2GB file support on POSIX if the ** underlying operating system supports it. If the OS lacks ** large file support, or if the OS is windows, these should be no-ops. ** ** Ticket #2739: The _LARGEFILE_SOURCE macro must appear before any ** system #includes. Hence, this block of code must be the very first ** code in all source files. ** ** Large file support can be disabled using the -DSQLITE_DISABLE_LFS switch ** on the compiler command line. This is necessary if you are compiling ** on a recent machine (ex: Red Hat 7.2) but you want your code to work ** on an older machine (ex: Red Hat 6.0). If you compile on Red Hat 7.2 ** without this option, LFS is enable. But LFS does not exist in the kernel ** in Red Hat 6.0, so the code won't work. Hence, for maximum binary ** portability you should omit LFS. ** ** The previous paragraph was written in 2005. (This paragraph is written ** on 2008-11-28.) These days, all Linux kernels support large files, so ** you should probably leave LFS enabled. But some embedded platforms might ** lack LFS in which case the SQLITE_DISABLE_LFS macro might still be useful. ** ** Similar is true for Mac OS X. LFS is only supported on Mac OS X 9 and later. */ #ifndef SQLITE_DISABLE_LFS # define _LARGE_FILE 1 # ifndef _FILE_OFFSET_BITS # define _FILE_OFFSET_BITS 64 # endif # define _LARGEFILE_SOURCE 1 #endif /* The GCC_VERSION and MSVC_VERSION macros are used to ** conditionally include optimizations for each of these compilers. A ** value of 0 means that compiler is not being used. The ** SQLITE_DISABLE_INTRINSIC macro means do not use any compiler-specific ** optimizations, and hence set all compiler macros to 0 ** ** There was once also a CLANG_VERSION macro. However, we learn that the ** version numbers in clang are for "marketing" only and are inconsistent ** and unreliable. Fortunately, all versions of clang also recognize the ** gcc version numbers and have reasonable settings for gcc version numbers, ** so the GCC_VERSION macro will be set to a correct non-zero value even ** when compiling with clang. */ #if defined(__GNUC__) && !defined(SQLITE_DISABLE_INTRINSIC) # define GCC_VERSION (__GNUC__*1000000+__GNUC_MINOR__*1000+__GNUC_PATCHLEVEL__) #else # define GCC_VERSION 0 #endif #if defined(_MSC_VER) && !defined(SQLITE_DISABLE_INTRINSIC) # define MSVC_VERSION _MSC_VER #else # define MSVC_VERSION 0 #endif /* Needed for various definitions... */ #if defined(__GNUC__) && !defined(_GNU_SOURCE) # define _GNU_SOURCE #endif #if defined(__OpenBSD__) && !defined(_BSD_SOURCE) # define _BSD_SOURCE #endif /* ** Macro to disable warnings about missing "break" at the end of a "case". */ #if GCC_VERSION>=7000000 # define deliberate_fall_through __attribute__((fallthrough)); #else # define deliberate_fall_through #endif /* ** For MinGW, check to see if we can include the header file containing its ** version information, among other things. Normally, this internal MinGW ** header file would [only] be included automatically by other MinGW header ** files; however, the contained version information is now required by this ** header file to work around binary compatibility issues (see below) and ** this is the only known way to reliably obtain it. This entire #if block ** would be completely unnecessary if there was any other way of detecting ** MinGW via their preprocessor (e.g. if they customized their GCC to define ** some MinGW-specific macros). When compiling for MinGW, either the ** _HAVE_MINGW_H or _HAVE__MINGW_H (note the extra underscore) macro must be ** defined; otherwise, detection of conditions specific to MinGW will be ** disabled. */ #if defined(_HAVE_MINGW_H) # include "mingw.h" #elif defined(_HAVE__MINGW_H) # include "_mingw.h" #endif /* ** For MinGW version 4.x (and higher), check to see if the _USE_32BIT_TIME_T ** define is required to maintain binary compatibility with the MSVC runtime ** library in use (e.g. for Windows XP). */ #if !defined(_USE_32BIT_TIME_T) && !defined(_USE_64BIT_TIME_T) && \ defined(_WIN32) && !defined(_WIN64) && \ defined(__MINGW_MAJOR_VERSION) && __MINGW_MAJOR_VERSION >= 4 && \ defined(__MSVCRT__) # define _USE_32BIT_TIME_T #endif /* The public SQLite interface. The _FILE_OFFSET_BITS macro must appear ** first in QNX. Also, the _USE_32BIT_TIME_T macro must appear first for ** MinGW. */ /************** Include sqlite3.h in the middle of sqliteInt.h ***************/ /************** Begin file sqlite3.h *****************************************/ /* ** 2001-09-15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface that the SQLite library ** presents to client programs. If a C-function, structure, datatype, ** or constant definition does not appear in this file, then it is ** not a published API of SQLite, is subject to change without ** notice, and should not be referenced by programs that use SQLite. ** ** Some of the definitions that are in this file are marked as ** "experimental". Experimental interfaces are normally new ** features recently added to SQLite. We do not anticipate changes ** to experimental interfaces but reserve the right to make minor changes ** if experience from use "in the wild" suggest such changes are prudent. ** ** The official C-language API documentation for SQLite is derived ** from comments in this file. This file is the authoritative source ** on how SQLite interfaces are supposed to operate. ** ** The name of this file under configuration management is "sqlite.h.in". ** The makefile makes some minor changes to this file (such as inserting ** the version number) and changes its name to "sqlite3.h" as ** part of the build process. */ #ifndef SQLITE3_H #define SQLITE3_H #include /* Needed for the definition of va_list */ /* ** Make sure we can call this stuff from C++. */ #if 0 extern "C" { #endif /* ** Provide the ability to override linkage features of the interface. */ #ifndef SQLITE_EXTERN # define SQLITE_EXTERN extern #endif #ifndef SQLITE_API # define SQLITE_API #endif #ifndef SQLITE_CDECL # define SQLITE_CDECL #endif #ifndef SQLITE_APICALL # define SQLITE_APICALL #endif #ifndef SQLITE_STDCALL # define SQLITE_STDCALL SQLITE_APICALL #endif #ifndef SQLITE_CALLBACK # define SQLITE_CALLBACK #endif #ifndef SQLITE_SYSAPI # define SQLITE_SYSAPI #endif /* ** These no-op macros are used in front of interfaces to mark those ** interfaces as either deprecated or experimental. New applications ** should not use deprecated interfaces - they are supported for backwards ** compatibility only. Application writers should be aware that ** experimental interfaces are subject to change in point releases. ** ** These macros used to resolve to various kinds of compiler magic that ** would generate warning messages when they were used. But that ** compiler magic ended up generating such a flurry of bug reports ** that we have taken it all out and gone back to using simple ** noop macros. */ #define SQLITE_DEPRECATED #define SQLITE_EXPERIMENTAL /* ** Ensure these symbols were not defined by some previous header file. */ #ifdef SQLITE_VERSION # undef SQLITE_VERSION #endif #ifdef SQLITE_VERSION_NUMBER # undef SQLITE_VERSION_NUMBER #endif /* ** CAPI3REF: Compile-Time Library Version Numbers ** ** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header ** evaluates to a string literal that is the SQLite version in the ** format "X.Y.Z" where X is the major version number (always 3 for ** SQLite3) and Y is the minor version number and Z is the release number.)^ ** ^(The [SQLITE_VERSION_NUMBER] C preprocessor macro resolves to an integer ** with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same ** numbers used in [SQLITE_VERSION].)^ ** The SQLITE_VERSION_NUMBER for any given release of SQLite will also ** be larger than the release from which it is derived. Either Y will ** be held constant and Z will be incremented or else Y will be incremented ** and Z will be reset to zero. ** ** Since [version 3.6.18] ([dateof:3.6.18]), ** SQLite source code has been stored in the ** Fossil configuration management ** system. ^The SQLITE_SOURCE_ID macro evaluates to ** a string which identifies a particular check-in of SQLite ** within its configuration management system. ^The SQLITE_SOURCE_ID ** string contains the date and time of the check-in (UTC) and a SHA1 ** or SHA3-256 hash of the entire source tree. If the source code has ** been edited in any way since it was last checked in, then the last ** four hexadecimal digits of the hash may be modified. ** ** See also: [sqlite3_libversion()], ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ #define SQLITE_VERSION "3.33.0" #define SQLITE_VERSION_NUMBER 3033000 #define SQLITE_SOURCE_ID "2020-08-14 13:23:32 fca8dc8b578f215a969cd899336378966156154710873e68b3d9ac5881b0ff3f" /* ** CAPI3REF: Run-Time Library Version Numbers ** KEYWORDS: sqlite3_version sqlite3_sourceid ** ** These interfaces provide the same information as the [SQLITE_VERSION], ** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros ** but are associated with the library instead of the header file. ^(Cautious ** programmers might include assert() statements in their application to ** verify that values returned by these interfaces match the macros in ** the header, and thus ensure that the application is ** compiled with matching library and header files. ** **

** assert( sqlite3_libversion_number()==SQLITE_VERSION_NUMBER );
** assert( strncmp(sqlite3_sourceid(),SQLITE_SOURCE_ID,80)==0 );
** assert( strcmp(sqlite3_libversion(),SQLITE_VERSION)==0 );
** 
)^ ** ** ^The sqlite3_version[] string constant contains the text of [SQLITE_VERSION] ** macro. ^The sqlite3_libversion() function returns a pointer to the ** to the sqlite3_version[] string constant. The sqlite3_libversion() ** function is provided for use in DLLs since DLL users usually do not have ** direct access to string constants within the DLL. ^The ** sqlite3_libversion_number() function returns an integer equal to ** [SQLITE_VERSION_NUMBER]. ^(The sqlite3_sourceid() function returns ** a pointer to a string constant whose value is the same as the ** [SQLITE_SOURCE_ID] C preprocessor macro. Except if SQLite is built ** using an edited copy of [the amalgamation], then the last four characters ** of the hash might be different from [SQLITE_SOURCE_ID].)^ ** ** See also: [sqlite_version()] and [sqlite_source_id()]. */ SQLITE_API const char sqlite3_version[] = SQLITE_VERSION; SQLITE_API const char *sqlite3_libversion(void); SQLITE_API const char *sqlite3_sourceid(void); SQLITE_API int sqlite3_libversion_number(void); /* ** CAPI3REF: Run-Time Library Compilation Options Diagnostics ** ** ^The sqlite3_compileoption_used() function returns 0 or 1 ** indicating whether the specified option was defined at ** compile time. ^The SQLITE_ prefix may be omitted from the ** option name passed to sqlite3_compileoption_used(). ** ** ^The sqlite3_compileoption_get() function allows iterating ** over the list of options that were defined at compile time by ** returning the N-th compile time option string. ^If N is out of range, ** sqlite3_compileoption_get() returns a NULL pointer. ^The SQLITE_ ** prefix is omitted from any strings returned by ** sqlite3_compileoption_get(). ** ** ^Support for the diagnostic functions sqlite3_compileoption_used() ** and sqlite3_compileoption_get() may be omitted by specifying the ** [SQLITE_OMIT_COMPILEOPTION_DIAGS] option at compile time. ** ** See also: SQL functions [sqlite_compileoption_used()] and ** [sqlite_compileoption_get()] and the [compile_options pragma]. */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS SQLITE_API int sqlite3_compileoption_used(const char *zOptName); SQLITE_API const char *sqlite3_compileoption_get(int N); #else # define sqlite3_compileoption_used(X) 0 # define sqlite3_compileoption_get(X) ((void*)0) #endif /* ** CAPI3REF: Test To See If The Library Is Threadsafe ** ** ^The sqlite3_threadsafe() function returns zero if and only if ** SQLite was compiled with mutexing code omitted due to the ** [SQLITE_THREADSAFE] compile-time option being set to 0. ** ** SQLite can be compiled with or without mutexes. When ** the [SQLITE_THREADSAFE] C preprocessor macro is 1 or 2, mutexes ** are enabled and SQLite is threadsafe. When the ** [SQLITE_THREADSAFE] macro is 0, ** the mutexes are omitted. Without the mutexes, it is not safe ** to use SQLite concurrently from more than one thread. ** ** Enabling mutexes incurs a measurable performance penalty. ** So if speed is of utmost importance, it makes sense to disable ** the mutexes. But for maximum safety, mutexes should be enabled. ** ^The default behavior is for mutexes to be enabled. ** ** This interface can be used by an application to make sure that the ** version of SQLite that it is linking against was compiled with ** the desired setting of the [SQLITE_THREADSAFE] macro. ** ** This interface only reports on the compile-time mutex setting ** of the [SQLITE_THREADSAFE] flag. If SQLite is compiled with ** SQLITE_THREADSAFE=1 or =2 then mutexes are enabled by default but ** can be fully or partially disabled using a call to [sqlite3_config()] ** with the verbs [SQLITE_CONFIG_SINGLETHREAD], [SQLITE_CONFIG_MULTITHREAD], ** or [SQLITE_CONFIG_SERIALIZED]. ^(The return value of the ** sqlite3_threadsafe() function shows only the compile-time setting of ** thread safety, not any run-time changes to that setting made by ** sqlite3_config(). In other words, the return value from sqlite3_threadsafe() ** is unchanged by calls to sqlite3_config().)^ ** ** See the [threading mode] documentation for additional information. */ SQLITE_API int sqlite3_threadsafe(void); /* ** CAPI3REF: Database Connection Handle ** KEYWORDS: {database connection} {database connections} ** ** Each open SQLite database is represented by a pointer to an instance of ** the opaque structure named "sqlite3". It is useful to think of an sqlite3 ** pointer as an object. The [sqlite3_open()], [sqlite3_open16()], and ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] ** and [sqlite3_close_v2()] are its destructors. There are many other ** interfaces (such as ** [sqlite3_prepare_v2()], [sqlite3_create_function()], and ** [sqlite3_busy_timeout()] to name but three) that are methods on an ** sqlite3 object. */ typedef struct sqlite3 sqlite3; /* ** CAPI3REF: 64-Bit Integer Types ** KEYWORDS: sqlite_int64 sqlite_uint64 ** ** Because there is no cross-platform way to specify 64-bit integer types ** SQLite includes typedefs for 64-bit signed and unsigned integers. ** ** The sqlite3_int64 and sqlite3_uint64 are the preferred type definitions. ** The sqlite_int64 and sqlite_uint64 types are supported for backwards ** compatibility only. ** ** ^The sqlite3_int64 and sqlite_int64 types can store integer values ** between -9223372036854775808 and +9223372036854775807 inclusive. ^The ** sqlite3_uint64 and sqlite_uint64 types can store integer values ** between 0 and +18446744073709551615 inclusive. */ #ifdef SQLITE_INT64_TYPE typedef SQLITE_INT64_TYPE sqlite_int64; # ifdef SQLITE_UINT64_TYPE typedef SQLITE_UINT64_TYPE sqlite_uint64; # else typedef unsigned SQLITE_INT64_TYPE sqlite_uint64; # endif #elif defined(_MSC_VER) || defined(__BORLANDC__) typedef __int64 sqlite_int64; typedef unsigned __int64 sqlite_uint64; #else typedef long long int sqlite_int64; typedef unsigned long long int sqlite_uint64; #endif typedef sqlite_int64 sqlite3_int64; typedef sqlite_uint64 sqlite3_uint64; /* ** If compiling for a processor that lacks floating point support, ** substitute integer for floating-point. */ #ifdef SQLITE_OMIT_FLOATING_POINT # define double sqlite3_int64 #endif /* ** CAPI3REF: Closing A Database Connection ** DESTRUCTOR: sqlite3 ** ** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors ** for the [sqlite3] object. ** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if ** the [sqlite3] object is successfully destroyed and all associated ** resources are deallocated. ** ** Ideally, applications should [sqlite3_finalize | finalize] all ** [prepared statements], [sqlite3_blob_close | close] all [BLOB handles], and ** [sqlite3_backup_finish | finish] all [sqlite3_backup] objects associated ** with the [sqlite3] object prior to attempting to close the object. ** ^If the database connection is associated with unfinalized prepared ** statements, BLOB handlers, and/or unfinished sqlite3_backup objects then ** sqlite3_close() will leave the database connection open and return ** [SQLITE_BUSY]. ^If sqlite3_close_v2() is called with unfinalized prepared ** statements, unclosed BLOB handlers, and/or unfinished sqlite3_backups, ** it returns [SQLITE_OK] regardless, but instead of deallocating the database ** connection immediately, it marks the database connection as an unusable ** "zombie" and makes arrangements to automatically deallocate the database ** connection after all prepared statements are finalized, all BLOB handles ** are closed, and all backups have finished. The sqlite3_close_v2() interface ** is intended for use with host languages that are garbage collected, and ** where the order in which destructors are called is arbitrary. ** ** ^If an [sqlite3] object is destroyed while a transaction is open, ** the transaction is automatically rolled back. ** ** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)] ** must be either a NULL ** pointer or an [sqlite3] object pointer obtained ** from [sqlite3_open()], [sqlite3_open16()], or ** [sqlite3_open_v2()], and not previously closed. ** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer ** argument is a harmless no-op. */ SQLITE_API int sqlite3_close(sqlite3*); SQLITE_API int sqlite3_close_v2(sqlite3*); /* ** The type for a callback function. ** This is legacy and deprecated. It is included for historical ** compatibility and is not documented. */ typedef int (*sqlite3_callback)(void*,int,char**, char**); /* ** CAPI3REF: One-Step Query Execution Interface ** METHOD: sqlite3 ** ** The sqlite3_exec() interface is a convenience wrapper around ** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()], ** that allows an application to run multiple statements of SQL ** without having to use a lot of C code. ** ** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded, ** semicolon-separate SQL statements passed into its 2nd argument, ** in the context of the [database connection] passed in as its 1st ** argument. ^If the callback function of the 3rd argument to ** sqlite3_exec() is not NULL, then it is invoked for each result row ** coming out of the evaluated SQL statements. ^The 4th argument to ** sqlite3_exec() is relayed through to the 1st argument of each ** callback invocation. ^If the callback pointer to sqlite3_exec() ** is NULL, then no callback is ever invoked and result rows are ** ignored. ** ** ^If an error occurs while evaluating the SQL statements passed into ** sqlite3_exec(), then execution of the current statement stops and ** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec() ** is not NULL then any error message is written into memory obtained ** from [sqlite3_malloc()] and passed back through the 5th parameter. ** To avoid memory leaks, the application should invoke [sqlite3_free()] ** on error message strings returned through the 5th parameter of ** sqlite3_exec() after the error message string is no longer needed. ** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors ** occur, then sqlite3_exec() sets the pointer in its 5th parameter to ** NULL before returning. ** ** ^If an sqlite3_exec() callback returns non-zero, the sqlite3_exec() ** routine returns SQLITE_ABORT without invoking the callback again and ** without running any subsequent SQL statements. ** ** ^The 2nd argument to the sqlite3_exec() callback function is the ** number of columns in the result. ^The 3rd argument to the sqlite3_exec() ** callback is an array of pointers to strings obtained as if from ** [sqlite3_column_text()], one for each column. ^If an element of a ** result row is NULL then the corresponding string pointer for the ** sqlite3_exec() callback is a NULL pointer. ^The 4th argument to the ** sqlite3_exec() callback is an array of pointers to strings where each ** entry represents the name of corresponding result column as obtained ** from [sqlite3_column_name()]. ** ** ^If the 2nd parameter to sqlite3_exec() is a NULL pointer, a pointer ** to an empty string, or a pointer that contains only whitespace and/or ** SQL comments, then no SQL statements are evaluated and the database ** is not changed. ** ** Restrictions: ** **
    **
  • The application must ensure that the 1st parameter to sqlite3_exec() ** is a valid and open [database connection]. **
  • The application must not close the [database connection] specified by ** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running. **
  • The application must not modify the SQL statement text passed into ** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running. **
*/ SQLITE_API int sqlite3_exec( sqlite3*, /* An open database */ const char *sql, /* SQL to be evaluated */ int (*callback)(void*,int,char**,char**), /* Callback function */ void *, /* 1st argument to callback */ char **errmsg /* Error msg written here */ ); /* ** CAPI3REF: Result Codes ** KEYWORDS: {result code definitions} ** ** Many SQLite functions return an integer result code from the set shown ** here in order to indicate success or failure. ** ** New error codes may be added in future versions of SQLite. ** ** See also: [extended result code definitions] */ #define SQLITE_OK 0 /* Successful result */ /* beginning-of-error-codes */ #define SQLITE_ERROR 1 /* Generic error */ #define SQLITE_INTERNAL 2 /* Internal logic error in SQLite */ #define SQLITE_PERM 3 /* Access permission denied */ #define SQLITE_ABORT 4 /* Callback routine requested an abort */ #define SQLITE_BUSY 5 /* The database file is locked */ #define SQLITE_LOCKED 6 /* A table in the database is locked */ #define SQLITE_NOMEM 7 /* A malloc() failed */ #define SQLITE_READONLY 8 /* Attempt to write a readonly database */ #define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite3_interrupt()*/ #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ #define SQLITE_CORRUPT 11 /* The database disk image is malformed */ #define SQLITE_NOTFOUND 12 /* Unknown opcode in sqlite3_file_control() */ #define SQLITE_FULL 13 /* Insertion failed because database is full */ #define SQLITE_CANTOPEN 14 /* Unable to open the database file */ #define SQLITE_PROTOCOL 15 /* Database lock protocol error */ #define SQLITE_EMPTY 16 /* Internal use only */ #define SQLITE_SCHEMA 17 /* The database schema changed */ #define SQLITE_TOOBIG 18 /* String or BLOB exceeds size limit */ #define SQLITE_CONSTRAINT 19 /* Abort due to constraint violation */ #define SQLITE_MISMATCH 20 /* Data type mismatch */ #define SQLITE_MISUSE 21 /* Library used incorrectly */ #define SQLITE_NOLFS 22 /* Uses OS features not supported on host */ #define SQLITE_AUTH 23 /* Authorization denied */ #define SQLITE_FORMAT 24 /* Not used */ #define SQLITE_RANGE 25 /* 2nd parameter to sqlite3_bind out of range */ #define SQLITE_NOTADB 26 /* File opened that is not a database file */ #define SQLITE_NOTICE 27 /* Notifications from sqlite3_log() */ #define SQLITE_WARNING 28 /* Warnings from sqlite3_log() */ #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ /* end-of-error-codes */ /* ** CAPI3REF: Extended Result Codes ** KEYWORDS: {extended result code definitions} ** ** In its default configuration, SQLite API routines return one of 30 integer ** [result codes]. However, experience has shown that many of ** these result codes are too coarse-grained. They do not provide as ** much information about problems as programmers might like. In an effort to ** address this, newer versions of SQLite (version 3.3.8 [dateof:3.3.8] ** and later) include ** support for additional result codes that provide more detailed information ** about errors. These [extended result codes] are enabled or disabled ** on a per database connection basis using the ** [sqlite3_extended_result_codes()] API. Or, the extended code for ** the most recent error can be obtained using ** [sqlite3_extended_errcode()]. */ #define SQLITE_ERROR_MISSING_COLLSEQ (SQLITE_ERROR | (1<<8)) #define SQLITE_ERROR_RETRY (SQLITE_ERROR | (2<<8)) #define SQLITE_ERROR_SNAPSHOT (SQLITE_ERROR | (3<<8)) #define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) #define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) #define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) #define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) #define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) #define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) #define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) #define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) #define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) #define SQLITE_IOERR_DELETE (SQLITE_IOERR | (10<<8)) #define SQLITE_IOERR_BLOCKED (SQLITE_IOERR | (11<<8)) #define SQLITE_IOERR_NOMEM (SQLITE_IOERR | (12<<8)) #define SQLITE_IOERR_ACCESS (SQLITE_IOERR | (13<<8)) #define SQLITE_IOERR_CHECKRESERVEDLOCK (SQLITE_IOERR | (14<<8)) #define SQLITE_IOERR_LOCK (SQLITE_IOERR | (15<<8)) #define SQLITE_IOERR_CLOSE (SQLITE_IOERR | (16<<8)) #define SQLITE_IOERR_DIR_CLOSE (SQLITE_IOERR | (17<<8)) #define SQLITE_IOERR_SHMOPEN (SQLITE_IOERR | (18<<8)) #define SQLITE_IOERR_SHMSIZE (SQLITE_IOERR | (19<<8)) #define SQLITE_IOERR_SHMLOCK (SQLITE_IOERR | (20<<8)) #define SQLITE_IOERR_SHMMAP (SQLITE_IOERR | (21<<8)) #define SQLITE_IOERR_SEEK (SQLITE_IOERR | (22<<8)) #define SQLITE_IOERR_DELETE_NOENT (SQLITE_IOERR | (23<<8)) #define SQLITE_IOERR_MMAP (SQLITE_IOERR | (24<<8)) #define SQLITE_IOERR_GETTEMPPATH (SQLITE_IOERR | (25<<8)) #define SQLITE_IOERR_CONVPATH (SQLITE_IOERR | (26<<8)) #define SQLITE_IOERR_VNODE (SQLITE_IOERR | (27<<8)) #define SQLITE_IOERR_AUTH (SQLITE_IOERR | (28<<8)) #define SQLITE_IOERR_BEGIN_ATOMIC (SQLITE_IOERR | (29<<8)) #define SQLITE_IOERR_COMMIT_ATOMIC (SQLITE_IOERR | (30<<8)) #define SQLITE_IOERR_ROLLBACK_ATOMIC (SQLITE_IOERR | (31<<8)) #define SQLITE_IOERR_DATA (SQLITE_IOERR | (32<<8)) #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8)) #define SQLITE_LOCKED_VTAB (SQLITE_LOCKED | (2<<8)) #define SQLITE_BUSY_RECOVERY (SQLITE_BUSY | (1<<8)) #define SQLITE_BUSY_SNAPSHOT (SQLITE_BUSY | (2<<8)) #define SQLITE_BUSY_TIMEOUT (SQLITE_BUSY | (3<<8)) #define SQLITE_CANTOPEN_NOTEMPDIR (SQLITE_CANTOPEN | (1<<8)) #define SQLITE_CANTOPEN_ISDIR (SQLITE_CANTOPEN | (2<<8)) #define SQLITE_CANTOPEN_FULLPATH (SQLITE_CANTOPEN | (3<<8)) #define SQLITE_CANTOPEN_CONVPATH (SQLITE_CANTOPEN | (4<<8)) #define SQLITE_CANTOPEN_DIRTYWAL (SQLITE_CANTOPEN | (5<<8)) /* Not Used */ #define SQLITE_CANTOPEN_SYMLINK (SQLITE_CANTOPEN | (6<<8)) #define SQLITE_CORRUPT_VTAB (SQLITE_CORRUPT | (1<<8)) #define SQLITE_CORRUPT_SEQUENCE (SQLITE_CORRUPT | (2<<8)) #define SQLITE_CORRUPT_INDEX (SQLITE_CORRUPT | (3<<8)) #define SQLITE_READONLY_RECOVERY (SQLITE_READONLY | (1<<8)) #define SQLITE_READONLY_CANTLOCK (SQLITE_READONLY | (2<<8)) #define SQLITE_READONLY_ROLLBACK (SQLITE_READONLY | (3<<8)) #define SQLITE_READONLY_DBMOVED (SQLITE_READONLY | (4<<8)) #define SQLITE_READONLY_CANTINIT (SQLITE_READONLY | (5<<8)) #define SQLITE_READONLY_DIRECTORY (SQLITE_READONLY | (6<<8)) #define SQLITE_ABORT_ROLLBACK (SQLITE_ABORT | (2<<8)) #define SQLITE_CONSTRAINT_CHECK (SQLITE_CONSTRAINT | (1<<8)) #define SQLITE_CONSTRAINT_COMMITHOOK (SQLITE_CONSTRAINT | (2<<8)) #define SQLITE_CONSTRAINT_FOREIGNKEY (SQLITE_CONSTRAINT | (3<<8)) #define SQLITE_CONSTRAINT_FUNCTION (SQLITE_CONSTRAINT | (4<<8)) #define SQLITE_CONSTRAINT_NOTNULL (SQLITE_CONSTRAINT | (5<<8)) #define SQLITE_CONSTRAINT_PRIMARYKEY (SQLITE_CONSTRAINT | (6<<8)) #define SQLITE_CONSTRAINT_TRIGGER (SQLITE_CONSTRAINT | (7<<8)) #define SQLITE_CONSTRAINT_UNIQUE (SQLITE_CONSTRAINT | (8<<8)) #define SQLITE_CONSTRAINT_VTAB (SQLITE_CONSTRAINT | (9<<8)) #define SQLITE_CONSTRAINT_ROWID (SQLITE_CONSTRAINT |(10<<8)) #define SQLITE_CONSTRAINT_PINNED (SQLITE_CONSTRAINT |(11<<8)) #define SQLITE_NOTICE_RECOVER_WAL (SQLITE_NOTICE | (1<<8)) #define SQLITE_NOTICE_RECOVER_ROLLBACK (SQLITE_NOTICE | (2<<8)) #define SQLITE_WARNING_AUTOINDEX (SQLITE_WARNING | (1<<8)) #define SQLITE_AUTH_USER (SQLITE_AUTH | (1<<8)) #define SQLITE_OK_LOAD_PERMANENTLY (SQLITE_OK | (1<<8)) #define SQLITE_OK_SYMLINK (SQLITE_OK | (2<<8)) /* ** CAPI3REF: Flags For File Open Operations ** ** These bit values are intended for use in the ** 3rd parameter to the [sqlite3_open_v2()] interface and ** in the 4th parameter to the [sqlite3_vfs.xOpen] method. */ #define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_DELETEONCLOSE 0x00000008 /* VFS only */ #define SQLITE_OPEN_EXCLUSIVE 0x00000010 /* VFS only */ #define SQLITE_OPEN_AUTOPROXY 0x00000020 /* VFS only */ #define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_MEMORY 0x00000080 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_MAIN_DB 0x00000100 /* VFS only */ #define SQLITE_OPEN_TEMP_DB 0x00000200 /* VFS only */ #define SQLITE_OPEN_TRANSIENT_DB 0x00000400 /* VFS only */ #define SQLITE_OPEN_MAIN_JOURNAL 0x00000800 /* VFS only */ #define SQLITE_OPEN_TEMP_JOURNAL 0x00001000 /* VFS only */ #define SQLITE_OPEN_SUBJOURNAL 0x00002000 /* VFS only */ #define SQLITE_OPEN_SUPER_JOURNAL 0x00004000 /* VFS only */ #define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_PRIVATECACHE 0x00040000 /* Ok for sqlite3_open_v2() */ #define SQLITE_OPEN_WAL 0x00080000 /* VFS only */ #define SQLITE_OPEN_NOFOLLOW 0x01000000 /* Ok for sqlite3_open_v2() */ /* Reserved: 0x00F00000 */ /* Legacy compatibility: */ #define SQLITE_OPEN_MASTER_JOURNAL 0x00004000 /* VFS only */ /* ** CAPI3REF: Device Characteristics ** ** The xDeviceCharacteristics method of the [sqlite3_io_methods] ** object returns an integer which is a vector of these ** bit values expressing I/O characteristics of the mass storage ** device that holds the file that the [sqlite3_io_methods] ** refers to. ** ** The SQLITE_IOCAP_ATOMIC property means that all writes of ** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values ** mean that writes of blocks that are nnn bytes in size and ** are aligned to an address which is an integer multiple of ** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means ** that when data is appended to a file, the data is appended ** first then the size of the file is extended, never the other ** way around. The SQLITE_IOCAP_SEQUENTIAL property means that ** information is written to disk in the same order as calls ** to xWrite(). The SQLITE_IOCAP_POWERSAFE_OVERWRITE property means that ** after reboot following a crash or power loss, the only bytes in a ** file that were written at the application level might have changed ** and that adjacent bytes, even bytes within the same sector are ** guaranteed to be unchanged. The SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN ** flag indicates that a file cannot be deleted when open. The ** SQLITE_IOCAP_IMMUTABLE flag indicates that the file is on ** read-only media and cannot be changed even by processes with ** elevated privileges. ** ** The SQLITE_IOCAP_BATCH_ATOMIC property means that the underlying ** filesystem supports doing multiple write operations atomically when those ** write operations are bracketed by [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] and ** [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE]. */ #define SQLITE_IOCAP_ATOMIC 0x00000001 #define SQLITE_IOCAP_ATOMIC512 0x00000002 #define SQLITE_IOCAP_ATOMIC1K 0x00000004 #define SQLITE_IOCAP_ATOMIC2K 0x00000008 #define SQLITE_IOCAP_ATOMIC4K 0x00000010 #define SQLITE_IOCAP_ATOMIC8K 0x00000020 #define SQLITE_IOCAP_ATOMIC16K 0x00000040 #define SQLITE_IOCAP_ATOMIC32K 0x00000080 #define SQLITE_IOCAP_ATOMIC64K 0x00000100 #define SQLITE_IOCAP_SAFE_APPEND 0x00000200 #define SQLITE_IOCAP_SEQUENTIAL 0x00000400 #define SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN 0x00000800 #define SQLITE_IOCAP_POWERSAFE_OVERWRITE 0x00001000 #define SQLITE_IOCAP_IMMUTABLE 0x00002000 #define SQLITE_IOCAP_BATCH_ATOMIC 0x00004000 /* ** CAPI3REF: File Locking Levels ** ** SQLite uses one of these integer values as the second ** argument to calls it makes to the xLock() and xUnlock() methods ** of an [sqlite3_io_methods] object. */ #define SQLITE_LOCK_NONE 0 #define SQLITE_LOCK_SHARED 1 #define SQLITE_LOCK_RESERVED 2 #define SQLITE_LOCK_PENDING 3 #define SQLITE_LOCK_EXCLUSIVE 4 /* ** CAPI3REF: Synchronization Type Flags ** ** When SQLite invokes the xSync() method of an ** [sqlite3_io_methods] object it uses a combination of ** these integer values as the second argument. ** ** When the SQLITE_SYNC_DATAONLY flag is used, it means that the ** sync operation only needs to flush data to mass storage. Inode ** information need not be flushed. If the lower four bits of the flag ** equal SQLITE_SYNC_NORMAL, that means to use normal fsync() semantics. ** If the lower four bits equal SQLITE_SYNC_FULL, that means ** to use Mac OS X style fullsync instead of fsync(). ** ** Do not confuse the SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL flags ** with the [PRAGMA synchronous]=NORMAL and [PRAGMA synchronous]=FULL ** settings. The [synchronous pragma] determines when calls to the ** xSync VFS method occur and applies uniformly across all platforms. ** The SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL flags determine how ** energetic or rigorous or forceful the sync operations are and ** only make a difference on Mac OSX for the default SQLite code. ** (Third-party VFS implementations might also make the distinction ** between SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL, but among the ** operating systems natively supported by SQLite, only Mac OSX ** cares about the difference.) */ #define SQLITE_SYNC_NORMAL 0x00002 #define SQLITE_SYNC_FULL 0x00003 #define SQLITE_SYNC_DATAONLY 0x00010 /* ** CAPI3REF: OS Interface Open File Handle ** ** An [sqlite3_file] object represents an open file in the ** [sqlite3_vfs | OS interface layer]. Individual OS interface ** implementations will ** want to subclass this object by appending additional fields ** for their own use. The pMethods entry is a pointer to an ** [sqlite3_io_methods] object that defines methods for performing ** I/O operations on the open file. */ typedef struct sqlite3_file sqlite3_file; struct sqlite3_file { const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ }; /* ** CAPI3REF: OS Interface File Virtual Methods Object ** ** Every file opened by the [sqlite3_vfs.xOpen] method populates an ** [sqlite3_file] object (or, more commonly, a subclass of the ** [sqlite3_file] object) with a pointer to an instance of this object. ** This object defines the methods used to perform various operations ** against the open file represented by the [sqlite3_file] object. ** ** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element ** to a non-NULL pointer, then the sqlite3_io_methods.xClose method ** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The ** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen] ** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element ** to NULL. ** ** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or ** [SQLITE_SYNC_FULL]. The first choice is the normal fsync(). ** The second choice is a Mac OS X style fullsync. The [SQLITE_SYNC_DATAONLY] ** flag may be ORed in to indicate that only the data of the file ** and not its inode needs to be synced. ** ** The integer values to xLock() and xUnlock() are one of **
    **
  • [SQLITE_LOCK_NONE], **
  • [SQLITE_LOCK_SHARED], **
  • [SQLITE_LOCK_RESERVED], **
  • [SQLITE_LOCK_PENDING], or **
  • [SQLITE_LOCK_EXCLUSIVE]. **
** xLock() increases the lock. xUnlock() decreases the lock. ** The xCheckReservedLock() method checks whether any database connection, ** either in this process or in some other process, is holding a RESERVED, ** PENDING, or EXCLUSIVE lock on the file. It returns true ** if such a lock exists and false otherwise. ** ** The xFileControl() method is a generic interface that allows custom ** VFS implementations to directly control an open file using the ** [sqlite3_file_control()] interface. The second "op" argument is an ** integer opcode. The third argument is a generic pointer intended to ** point to a structure that may contain arguments or space in which to ** write return values. Potential uses for xFileControl() might be ** functions to enable blocking locks with timeouts, to change the ** locking strategy (for example to use dot-file locks), to inquire ** about the status of a lock, or to break stale locks. The SQLite ** core reserves all opcodes less than 100 for its own use. ** A [file control opcodes | list of opcodes] less than 100 is available. ** Applications that define a custom xFileControl method should use opcodes ** greater than 100 to avoid conflicts. VFS implementations should ** return [SQLITE_NOTFOUND] for file control opcodes that they do not ** recognize. ** ** The xSectorSize() method returns the sector size of the ** device that underlies the file. The sector size is the ** minimum write that can be performed without disturbing ** other bytes in the file. The xDeviceCharacteristics() ** method returns a bit vector describing behaviors of the ** underlying device: ** **
    **
  • [SQLITE_IOCAP_ATOMIC] **
  • [SQLITE_IOCAP_ATOMIC512] **
  • [SQLITE_IOCAP_ATOMIC1K] **
  • [SQLITE_IOCAP_ATOMIC2K] **
  • [SQLITE_IOCAP_ATOMIC4K] **
  • [SQLITE_IOCAP_ATOMIC8K] **
  • [SQLITE_IOCAP_ATOMIC16K] **
  • [SQLITE_IOCAP_ATOMIC32K] **
  • [SQLITE_IOCAP_ATOMIC64K] **
  • [SQLITE_IOCAP_SAFE_APPEND] **
  • [SQLITE_IOCAP_SEQUENTIAL] **
  • [SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN] **
  • [SQLITE_IOCAP_POWERSAFE_OVERWRITE] **
  • [SQLITE_IOCAP_IMMUTABLE] **
  • [SQLITE_IOCAP_BATCH_ATOMIC] **
** ** The SQLITE_IOCAP_ATOMIC property means that all writes of ** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values ** mean that writes of blocks that are nnn bytes in size and ** are aligned to an address which is an integer multiple of ** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means ** that when data is appended to a file, the data is appended ** first then the size of the file is extended, never the other ** way around. The SQLITE_IOCAP_SEQUENTIAL property means that ** information is written to disk in the same order as calls ** to xWrite(). ** ** If xRead() returns SQLITE_IOERR_SHORT_READ it must also fill ** in the unread portions of the buffer with zeros. A VFS that ** fails to zero-fill short reads might seem to work. However, ** failure to zero-fill short reads will eventually lead to ** database corruption. */ typedef struct sqlite3_io_methods sqlite3_io_methods; struct sqlite3_io_methods { int iVersion; int (*xClose)(sqlite3_file*); int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); int (*xSync)(sqlite3_file*, int flags); int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); int (*xLock)(sqlite3_file*, int); int (*xUnlock)(sqlite3_file*, int); int (*xCheckReservedLock)(sqlite3_file*, int *pResOut); int (*xFileControl)(sqlite3_file*, int op, void *pArg); int (*xSectorSize)(sqlite3_file*); int (*xDeviceCharacteristics)(sqlite3_file*); /* Methods above are valid for version 1 */ int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**); int (*xShmLock)(sqlite3_file*, int offset, int n, int flags); void (*xShmBarrier)(sqlite3_file*); int (*xShmUnmap)(sqlite3_file*, int deleteFlag); /* Methods above are valid for version 2 */ int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p); /* Methods above are valid for version 3 */ /* Additional methods may be added in future releases */ }; /* ** CAPI3REF: Standard File Control Opcodes ** KEYWORDS: {file control opcodes} {file control opcode} ** ** These integer constants are opcodes for the xFileControl method ** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] ** interface. ** **
    **
  • [[SQLITE_FCNTL_LOCKSTATE]] ** The [SQLITE_FCNTL_LOCKSTATE] opcode is used for debugging. This ** opcode causes the xFileControl method to write the current state of ** the lock (one of [SQLITE_LOCK_NONE], [SQLITE_LOCK_SHARED], ** [SQLITE_LOCK_RESERVED], [SQLITE_LOCK_PENDING], or [SQLITE_LOCK_EXCLUSIVE]) ** into an integer that the pArg argument points to. This capability ** is used during testing and is only available when the SQLITE_TEST ** compile-time option is used. ** **
  • [[SQLITE_FCNTL_SIZE_HINT]] ** The [SQLITE_FCNTL_SIZE_HINT] opcode is used by SQLite to give the VFS ** layer a hint of how large the database file will grow to be during the ** current transaction. This hint is not guaranteed to be accurate but it ** is often close. The underlying VFS might choose to preallocate database ** file space based on this hint in order to help writes to the database ** file run faster. ** **
  • [[SQLITE_FCNTL_SIZE_LIMIT]] ** The [SQLITE_FCNTL_SIZE_LIMIT] opcode is used by in-memory VFS that ** implements [sqlite3_deserialize()] to set an upper bound on the size ** of the in-memory database. The argument is a pointer to a [sqlite3_int64]. ** If the integer pointed to is negative, then it is filled in with the ** current limit. Otherwise the limit is set to the larger of the value ** of the integer pointed to and the current database size. The integer ** pointed to is set to the new limit. ** **
  • [[SQLITE_FCNTL_CHUNK_SIZE]] ** The [SQLITE_FCNTL_CHUNK_SIZE] opcode is used to request that the VFS ** extends and truncates the database file in chunks of a size specified ** by the user. The fourth argument to [sqlite3_file_control()] should ** point to an integer (type int) containing the new chunk-size to use ** for the nominated database. Allocating database file space in large ** chunks (say 1MB at a time), may reduce file-system fragmentation and ** improve performance on some systems. ** **
  • [[SQLITE_FCNTL_FILE_POINTER]] ** The [SQLITE_FCNTL_FILE_POINTER] opcode is used to obtain a pointer ** to the [sqlite3_file] object associated with a particular database ** connection. See also [SQLITE_FCNTL_JOURNAL_POINTER]. ** **
  • [[SQLITE_FCNTL_JOURNAL_POINTER]] ** The [SQLITE_FCNTL_JOURNAL_POINTER] opcode is used to obtain a pointer ** to the [sqlite3_file] object associated with the journal file (either ** the [rollback journal] or the [write-ahead log]) for a particular database ** connection. See also [SQLITE_FCNTL_FILE_POINTER]. ** **
  • [[SQLITE_FCNTL_SYNC_OMITTED]] ** No longer in use. ** **
  • [[SQLITE_FCNTL_SYNC]] ** The [SQLITE_FCNTL_SYNC] opcode is generated internally by SQLite and ** sent to the VFS immediately before the xSync method is invoked on a ** database file descriptor. Or, if the xSync method is not invoked ** because the user has configured SQLite with ** [PRAGMA synchronous | PRAGMA synchronous=OFF] it is invoked in place ** of the xSync method. In most cases, the pointer argument passed with ** this file-control is NULL. However, if the database file is being synced ** as part of a multi-database commit, the argument points to a nul-terminated ** string containing the transactions super-journal file name. VFSes that ** do not need this signal should silently ignore this opcode. Applications ** should not call [sqlite3_file_control()] with this opcode as doing so may ** disrupt the operation of the specialized VFSes that do require it. ** **
  • [[SQLITE_FCNTL_COMMIT_PHASETWO]] ** The [SQLITE_FCNTL_COMMIT_PHASETWO] opcode is generated internally by SQLite ** and sent to the VFS after a transaction has been committed immediately ** but before the database is unlocked. VFSes that do not need this signal ** should silently ignore this opcode. Applications should not call ** [sqlite3_file_control()] with this opcode as doing so may disrupt the ** operation of the specialized VFSes that do require it. ** **
  • [[SQLITE_FCNTL_WIN32_AV_RETRY]] ** ^The [SQLITE_FCNTL_WIN32_AV_RETRY] opcode is used to configure automatic ** retry counts and intervals for certain disk I/O operations for the ** windows [VFS] in order to provide robustness in the presence of ** anti-virus programs. By default, the windows VFS will retry file read, ** file write, and file delete operations up to 10 times, with a delay ** of 25 milliseconds before the first retry and with the delay increasing ** by an additional 25 milliseconds with each subsequent retry. This ** opcode allows these two values (10 retries and 25 milliseconds of delay) ** to be adjusted. The values are changed for all database connections ** within the same process. The argument is a pointer to an array of two ** integers where the first integer is the new retry count and the second ** integer is the delay. If either integer is negative, then the setting ** is not changed but instead the prior value of that setting is written ** into the array entry, allowing the current retry settings to be ** interrogated. The zDbName parameter is ignored. ** **
  • [[SQLITE_FCNTL_PERSIST_WAL]] ** ^The [SQLITE_FCNTL_PERSIST_WAL] opcode is used to set or query the ** persistent [WAL | Write Ahead Log] setting. By default, the auxiliary ** write ahead log ([WAL file]) and shared memory ** files used for transaction control ** are automatically deleted when the latest connection to the database ** closes. Setting persistent WAL mode causes those files to persist after ** close. Persisting the files is useful when other processes that do not ** have write permission on the directory containing the database file want ** to read the database file, as the WAL and shared memory files must exist ** in order for the database to be readable. The fourth parameter to ** [sqlite3_file_control()] for this opcode should be a pointer to an integer. ** That integer is 0 to disable persistent WAL mode or 1 to enable persistent ** WAL mode. If the integer is -1, then it is overwritten with the current ** WAL persistence setting. ** **
  • [[SQLITE_FCNTL_POWERSAFE_OVERWRITE]] ** ^The [SQLITE_FCNTL_POWERSAFE_OVERWRITE] opcode is used to set or query the ** persistent "powersafe-overwrite" or "PSOW" setting. The PSOW setting ** determines the [SQLITE_IOCAP_POWERSAFE_OVERWRITE] bit of the ** xDeviceCharacteristics methods. The fourth parameter to ** [sqlite3_file_control()] for this opcode should be a pointer to an integer. ** That integer is 0 to disable zero-damage mode or 1 to enable zero-damage ** mode. If the integer is -1, then it is overwritten with the current ** zero-damage mode setting. ** **
  • [[SQLITE_FCNTL_OVERWRITE]] ** ^The [SQLITE_FCNTL_OVERWRITE] opcode is invoked by SQLite after opening ** a write transaction to indicate that, unless it is rolled back for some ** reason, the entire database file will be overwritten by the current ** transaction. This is used by VACUUM operations. ** **
  • [[SQLITE_FCNTL_VFSNAME]] ** ^The [SQLITE_FCNTL_VFSNAME] opcode can be used to obtain the names of ** all [VFSes] in the VFS stack. The names are of all VFS shims and the ** final bottom-level VFS are written into memory obtained from ** [sqlite3_malloc()] and the result is stored in the char* variable ** that the fourth parameter of [sqlite3_file_control()] points to. ** The caller is responsible for freeing the memory when done. As with ** all file-control actions, there is no guarantee that this will actually ** do anything. Callers should initialize the char* variable to a NULL ** pointer in case this file-control is not implemented. This file-control ** is intended for diagnostic use only. ** **
  • [[SQLITE_FCNTL_VFS_POINTER]] ** ^The [SQLITE_FCNTL_VFS_POINTER] opcode finds a pointer to the top-level ** [VFSes] currently in use. ^(The argument X in ** sqlite3_file_control(db,SQLITE_FCNTL_VFS_POINTER,X) must be ** of type "[sqlite3_vfs] **". This opcodes will set *X ** to a pointer to the top-level VFS.)^ ** ^When there are multiple VFS shims in the stack, this opcode finds the ** upper-most shim only. ** **
  • [[SQLITE_FCNTL_PRAGMA]] ** ^Whenever a [PRAGMA] statement is parsed, an [SQLITE_FCNTL_PRAGMA] ** file control is sent to the open [sqlite3_file] object corresponding ** to the database file to which the pragma statement refers. ^The argument ** to the [SQLITE_FCNTL_PRAGMA] file control is an array of ** pointers to strings (char**) in which the second element of the array ** is the name of the pragma and the third element is the argument to the ** pragma or NULL if the pragma has no argument. ^The handler for an ** [SQLITE_FCNTL_PRAGMA] file control can optionally make the first element ** of the char** argument point to a string obtained from [sqlite3_mprintf()] ** or the equivalent and that string will become the result of the pragma or ** the error message if the pragma fails. ^If the ** [SQLITE_FCNTL_PRAGMA] file control returns [SQLITE_NOTFOUND], then normal ** [PRAGMA] processing continues. ^If the [SQLITE_FCNTL_PRAGMA] ** file control returns [SQLITE_OK], then the parser assumes that the ** VFS has handled the PRAGMA itself and the parser generates a no-op ** prepared statement if result string is NULL, or that returns a copy ** of the result string if the string is non-NULL. ** ^If the [SQLITE_FCNTL_PRAGMA] file control returns ** any result code other than [SQLITE_OK] or [SQLITE_NOTFOUND], that means ** that the VFS encountered an error while handling the [PRAGMA] and the ** compilation of the PRAGMA fails with an error. ^The [SQLITE_FCNTL_PRAGMA] ** file control occurs at the beginning of pragma statement analysis and so ** it is able to override built-in [PRAGMA] statements. ** **
  • [[SQLITE_FCNTL_BUSYHANDLER]] ** ^The [SQLITE_FCNTL_BUSYHANDLER] ** file-control may be invoked by SQLite on the database file handle ** shortly after it is opened in order to provide a custom VFS with access ** to the connection's busy-handler callback. The argument is of type (void**) ** - an array of two (void *) values. The first (void *) actually points ** to a function of type (int (*)(void *)). In order to invoke the connection's ** busy-handler, this function should be invoked with the second (void *) in ** the array as the only argument. If it returns non-zero, then the operation ** should be retried. If it returns zero, the custom VFS should abandon the ** current operation. ** **
  • [[SQLITE_FCNTL_TEMPFILENAME]] ** ^Applications can invoke the [SQLITE_FCNTL_TEMPFILENAME] file-control ** to have SQLite generate a ** temporary filename using the same algorithm that is followed to generate ** temporary filenames for TEMP tables and other internal uses. The ** argument should be a char** which will be filled with the filename ** written into memory obtained from [sqlite3_malloc()]. The caller should ** invoke [sqlite3_free()] on the result to avoid a memory leak. ** **
  • [[SQLITE_FCNTL_MMAP_SIZE]] ** The [SQLITE_FCNTL_MMAP_SIZE] file control is used to query or set the ** maximum number of bytes that will be used for memory-mapped I/O. ** The argument is a pointer to a value of type sqlite3_int64 that ** is an advisory maximum number of bytes in the file to memory map. The ** pointer is overwritten with the old value. The limit is not changed if ** the value originally pointed to is negative, and so the current limit ** can be queried by passing in a pointer to a negative number. This ** file-control is used internally to implement [PRAGMA mmap_size]. ** **
  • [[SQLITE_FCNTL_TRACE]] ** The [SQLITE_FCNTL_TRACE] file control provides advisory information ** to the VFS about what the higher layers of the SQLite stack are doing. ** This file control is used by some VFS activity tracing [shims]. ** The argument is a zero-terminated string. Higher layers in the ** SQLite stack may generate instances of this file control if ** the [SQLITE_USE_FCNTL_TRACE] compile-time option is enabled. ** **
  • [[SQLITE_FCNTL_HAS_MOVED]] ** The [SQLITE_FCNTL_HAS_MOVED] file control interprets its argument as a ** pointer to an integer and it writes a boolean into that integer depending ** on whether or not the file has been renamed, moved, or deleted since it ** was first opened. ** **
  • [[SQLITE_FCNTL_WIN32_GET_HANDLE]] ** The [SQLITE_FCNTL_WIN32_GET_HANDLE] opcode can be used to obtain the ** underlying native file handle associated with a file handle. This file ** control interprets its argument as a pointer to a native file handle and ** writes the resulting value there. ** **
  • [[SQLITE_FCNTL_WIN32_SET_HANDLE]] ** The [SQLITE_FCNTL_WIN32_SET_HANDLE] opcode is used for debugging. This ** opcode causes the xFileControl method to swap the file handle with the one ** pointed to by the pArg argument. This capability is used during testing ** and only needs to be supported when SQLITE_TEST is defined. ** **
  • [[SQLITE_FCNTL_WAL_BLOCK]] ** The [SQLITE_FCNTL_WAL_BLOCK] is a signal to the VFS layer that it might ** be advantageous to block on the next WAL lock if the lock is not immediately ** available. The WAL subsystem issues this signal during rare ** circumstances in order to fix a problem with priority inversion. ** Applications should not use this file-control. ** **
  • [[SQLITE_FCNTL_ZIPVFS]] ** The [SQLITE_FCNTL_ZIPVFS] opcode is implemented by zipvfs only. All other ** VFS should return SQLITE_NOTFOUND for this opcode. ** **
  • [[SQLITE_FCNTL_RBU]] ** The [SQLITE_FCNTL_RBU] opcode is implemented by the special VFS used by ** the RBU extension only. All other VFS should return SQLITE_NOTFOUND for ** this opcode. ** **
  • [[SQLITE_FCNTL_BEGIN_ATOMIC_WRITE]] ** If the [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] opcode returns SQLITE_OK, then ** the file descriptor is placed in "batch write mode", which ** means all subsequent write operations will be deferred and done ** atomically at the next [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE]. Systems ** that do not support batch atomic writes will return SQLITE_NOTFOUND. ** ^Following a successful SQLITE_FCNTL_BEGIN_ATOMIC_WRITE and prior to ** the closing [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE] or ** [SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE], SQLite will make ** no VFS interface calls on the same [sqlite3_file] file descriptor ** except for calls to the xWrite method and the xFileControl method ** with [SQLITE_FCNTL_SIZE_HINT]. ** **
  • [[SQLITE_FCNTL_COMMIT_ATOMIC_WRITE]] ** The [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE] opcode causes all write ** operations since the previous successful call to ** [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] to be performed atomically. ** This file control returns [SQLITE_OK] if and only if the writes were ** all performed successfully and have been committed to persistent storage. ** ^Regardless of whether or not it is successful, this file control takes ** the file descriptor out of batch write mode so that all subsequent ** write operations are independent. ** ^SQLite will never invoke SQLITE_FCNTL_COMMIT_ATOMIC_WRITE without ** a prior successful call to [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE]. ** **
  • [[SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE]] ** The [SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE] opcode causes all write ** operations since the previous successful call to ** [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] to be rolled back. ** ^This file control takes the file descriptor out of batch write mode ** so that all subsequent write operations are independent. ** ^SQLite will never invoke SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE without ** a prior successful call to [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE]. ** **
  • [[SQLITE_FCNTL_LOCK_TIMEOUT]] ** The [SQLITE_FCNTL_LOCK_TIMEOUT] opcode is used to configure a VFS ** to block for up to M milliseconds before failing when attempting to ** obtain a file lock using the xLock or xShmLock methods of the VFS. ** The parameter is a pointer to a 32-bit signed integer that contains ** the value that M is to be set to. Before returning, the 32-bit signed ** integer is overwritten with the previous value of M. ** **
  • [[SQLITE_FCNTL_DATA_VERSION]] ** The [SQLITE_FCNTL_DATA_VERSION] opcode is used to detect changes to ** a database file. The argument is a pointer to a 32-bit unsigned integer. ** The "data version" for the pager is written into the pointer. The ** "data version" changes whenever any change occurs to the corresponding ** database file, either through SQL statements on the same database ** connection or through transactions committed by separate database ** connections possibly in other processes. The [sqlite3_total_changes()] ** interface can be used to find if any database on the connection has changed, ** but that interface responds to changes on TEMP as well as MAIN and does ** not provide a mechanism to detect changes to MAIN only. Also, the ** [sqlite3_total_changes()] interface responds to internal changes only and ** omits changes made by other database connections. The ** [PRAGMA data_version] command provides a mechanism to detect changes to ** a single attached database that occur due to other database connections, ** but omits changes implemented by the database connection on which it is ** called. This file control is the only mechanism to detect changes that ** happen either internally or externally and that are associated with ** a particular attached database. ** **
  • [[SQLITE_FCNTL_CKPT_START]] ** The [SQLITE_FCNTL_CKPT_START] opcode is invoked from within a checkpoint ** in wal mode before the client starts to copy pages from the wal ** file to the database file. ** **
  • [[SQLITE_FCNTL_CKPT_DONE]] ** The [SQLITE_FCNTL_CKPT_DONE] opcode is invoked from within a checkpoint ** in wal mode after the client has finished copying pages from the wal ** file to the database file, but before the *-shm file is updated to ** record the fact that the pages have been checkpointed. **
*/ #define SQLITE_FCNTL_LOCKSTATE 1 #define SQLITE_FCNTL_GET_LOCKPROXYFILE 2 #define SQLITE_FCNTL_SET_LOCKPROXYFILE 3 #define SQLITE_FCNTL_LAST_ERRNO 4 #define SQLITE_FCNTL_SIZE_HINT 5 #define SQLITE_FCNTL_CHUNK_SIZE 6 #define SQLITE_FCNTL_FILE_POINTER 7 #define SQLITE_FCNTL_SYNC_OMITTED 8 #define SQLITE_FCNTL_WIN32_AV_RETRY 9 #define SQLITE_FCNTL_PERSIST_WAL 10 #define SQLITE_FCNTL_OVERWRITE 11 #define SQLITE_FCNTL_VFSNAME 12 #define SQLITE_FCNTL_POWERSAFE_OVERWRITE 13 #define SQLITE_FCNTL_PRAGMA 14 #define SQLITE_FCNTL_BUSYHANDLER 15 #define SQLITE_FCNTL_TEMPFILENAME 16 #define SQLITE_FCNTL_MMAP_SIZE 18 #define SQLITE_FCNTL_TRACE 19 #define SQLITE_FCNTL_HAS_MOVED 20 #define SQLITE_FCNTL_SYNC 21 #define SQLITE_FCNTL_COMMIT_PHASETWO 22 #define SQLITE_FCNTL_WIN32_SET_HANDLE 23 #define SQLITE_FCNTL_WAL_BLOCK 24 #define SQLITE_FCNTL_ZIPVFS 25 #define SQLITE_FCNTL_RBU 26 #define SQLITE_FCNTL_VFS_POINTER 27 #define SQLITE_FCNTL_JOURNAL_POINTER 28 #define SQLITE_FCNTL_WIN32_GET_HANDLE 29 #define SQLITE_FCNTL_PDB 30 #define SQLITE_FCNTL_BEGIN_ATOMIC_WRITE 31 #define SQLITE_FCNTL_COMMIT_ATOMIC_WRITE 32 #define SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE 33 #define SQLITE_FCNTL_LOCK_TIMEOUT 34 #define SQLITE_FCNTL_DATA_VERSION 35 #define SQLITE_FCNTL_SIZE_LIMIT 36 #define SQLITE_FCNTL_CKPT_DONE 37 #define SQLITE_FCNTL_RESERVE_BYTES 38 #define SQLITE_FCNTL_CKPT_START 39 /* deprecated names */ #define SQLITE_GET_LOCKPROXYFILE SQLITE_FCNTL_GET_LOCKPROXYFILE #define SQLITE_SET_LOCKPROXYFILE SQLITE_FCNTL_SET_LOCKPROXYFILE #define SQLITE_LAST_ERRNO SQLITE_FCNTL_LAST_ERRNO /* ** CAPI3REF: Mutex Handle ** ** The mutex module within SQLite defines [sqlite3_mutex] to be an ** abstract type for a mutex object. The SQLite core never looks ** at the internal representation of an [sqlite3_mutex]. It only ** deals with pointers to the [sqlite3_mutex] object. ** ** Mutexes are created using [sqlite3_mutex_alloc()]. */ typedef struct sqlite3_mutex sqlite3_mutex; /* ** CAPI3REF: Loadable Extension Thunk ** ** A pointer to the opaque sqlite3_api_routines structure is passed as ** the third parameter to entry points of [loadable extensions]. This ** structure must be typedefed in order to work around compiler warnings ** on some platforms. */ typedef struct sqlite3_api_routines sqlite3_api_routines; /* ** CAPI3REF: OS Interface Object ** ** An instance of the sqlite3_vfs object defines the interface between ** the SQLite core and the underlying operating system. The "vfs" ** in the name of the object stands for "virtual file system". See ** the [VFS | VFS documentation] for further information. ** ** The VFS interface is sometimes extended by adding new methods onto ** the end. Each time such an extension occurs, the iVersion field ** is incremented. The iVersion value started out as 1 in ** SQLite [version 3.5.0] on [dateof:3.5.0], then increased to 2 ** with SQLite [version 3.7.0] on [dateof:3.7.0], and then increased ** to 3 with SQLite [version 3.7.6] on [dateof:3.7.6]. Additional fields ** may be appended to the sqlite3_vfs object and the iVersion value ** may increase again in future versions of SQLite. ** Note that due to an oversight, the structure ** of the sqlite3_vfs object changed in the transition from ** SQLite [version 3.5.9] to [version 3.6.0] on [dateof:3.6.0] ** and yet the iVersion field was not increased. ** ** The szOsFile field is the size of the subclassed [sqlite3_file] ** structure used by this VFS. mxPathname is the maximum length of ** a pathname in this VFS. ** ** Registered sqlite3_vfs objects are kept on a linked list formed by ** the pNext pointer. The [sqlite3_vfs_register()] ** and [sqlite3_vfs_unregister()] interfaces manage this list ** in a thread-safe way. The [sqlite3_vfs_find()] interface ** searches the list. Neither the application code nor the VFS ** implementation should use the pNext pointer. ** ** The pNext field is the only field in the sqlite3_vfs ** structure that SQLite will ever modify. SQLite will only access ** or modify this field while holding a particular static mutex. ** The application should never modify anything within the sqlite3_vfs ** object once the object has been registered. ** ** The zName field holds the name of the VFS module. The name must ** be unique across all VFS modules. ** ** [[sqlite3_vfs.xOpen]] ** ^SQLite guarantees that the zFilename parameter to xOpen ** is either a NULL pointer or string obtained ** from xFullPathname() with an optional suffix added. ** ^If a suffix is added to the zFilename parameter, it will ** consist of a single "-" character followed by no more than ** 11 alphanumeric and/or "-" characters. ** ^SQLite further guarantees that ** the string will be valid and unchanged until xClose() is ** called. Because of the previous sentence, ** the [sqlite3_file] can safely store a pointer to the ** filename if it needs to remember the filename for some reason. ** If the zFilename parameter to xOpen is a NULL pointer then xOpen ** must invent its own temporary name for the file. ^Whenever the ** xFilename parameter is NULL it will also be the case that the ** flags parameter will include [SQLITE_OPEN_DELETEONCLOSE]. ** ** The flags argument to xOpen() includes all bits set in ** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()] ** or [sqlite3_open16()] is used, then flags includes at least ** [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]. ** If xOpen() opens a file read-only then it sets *pOutFlags to ** include [SQLITE_OPEN_READONLY]. Other bits in *pOutFlags may be set. ** ** ^(SQLite will also add one of the following flags to the xOpen() ** call, depending on the object being opened: ** **
    **
  • [SQLITE_OPEN_MAIN_DB] **
  • [SQLITE_OPEN_MAIN_JOURNAL] **
  • [SQLITE_OPEN_TEMP_DB] **
  • [SQLITE_OPEN_TEMP_JOURNAL] **
  • [SQLITE_OPEN_TRANSIENT_DB] **
  • [SQLITE_OPEN_SUBJOURNAL] **
  • [SQLITE_OPEN_SUPER_JOURNAL] **
  • [SQLITE_OPEN_WAL] **
)^ ** ** The file I/O implementation can use the object type flags to ** change the way it deals with files. For example, an application ** that does not care about crash recovery or rollback might make ** the open of a journal file a no-op. Writes to this journal would ** also be no-ops, and any attempt to read the journal would return ** SQLITE_IOERR. Or the implementation might recognize that a database ** file will be doing page-aligned sector reads and writes in a random ** order and set up its I/O subsystem accordingly. ** ** SQLite might also add one of the following flags to the xOpen method: ** **
    **
  • [SQLITE_OPEN_DELETEONCLOSE] **
  • [SQLITE_OPEN_EXCLUSIVE] **
** ** The [SQLITE_OPEN_DELETEONCLOSE] flag means the file should be ** deleted when it is closed. ^The [SQLITE_OPEN_DELETEONCLOSE] ** will be set for TEMP databases and their journals, transient ** databases, and subjournals. ** ** ^The [SQLITE_OPEN_EXCLUSIVE] flag is always used in conjunction ** with the [SQLITE_OPEN_CREATE] flag, which are both directly ** analogous to the O_EXCL and O_CREAT flags of the POSIX open() ** API. The SQLITE_OPEN_EXCLUSIVE flag, when paired with the ** SQLITE_OPEN_CREATE, is used to indicate that file should always ** be created, and that it is an error if it already exists. ** It is not used to indicate the file should be opened ** for exclusive access. ** ** ^At least szOsFile bytes of memory are allocated by SQLite ** to hold the [sqlite3_file] structure passed as the third ** argument to xOpen. The xOpen method does not have to ** allocate the structure; it should just fill it in. Note that ** the xOpen method must set the sqlite3_file.pMethods to either ** a valid [sqlite3_io_methods] object or to NULL. xOpen must do ** this even if the open fails. SQLite expects that the sqlite3_file.pMethods ** element will be valid after xOpen returns regardless of the success ** or failure of the xOpen call. ** ** [[sqlite3_vfs.xAccess]] ** ^The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS] ** to test for the existence of a file, or [SQLITE_ACCESS_READWRITE] to ** test whether a file is readable and writable, or [SQLITE_ACCESS_READ] ** to test whether a file is at least readable. The SQLITE_ACCESS_READ ** flag is never actually used and is not implemented in the built-in ** VFSes of SQLite. The file is named by the second argument and can be a ** directory. The xAccess method returns [SQLITE_OK] on success or some ** non-zero error code if there is an I/O error or if the name of ** the file given in the second argument is illegal. If SQLITE_OK ** is returned, then non-zero or zero is written into *pResOut to indicate ** whether or not the file is accessible. ** ** ^SQLite will always allocate at least mxPathname+1 bytes for the ** output buffer xFullPathname. The exact size of the output buffer ** is also passed as a parameter to both methods. If the output buffer ** is not large enough, [SQLITE_CANTOPEN] should be returned. Since this is ** handled as a fatal error by SQLite, vfs implementations should endeavor ** to prevent this by setting mxPathname to a sufficiently large value. ** ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64() ** interfaces are not strictly a part of the filesystem, but they are ** included in the VFS structure for completeness. ** The xRandomness() function attempts to return nBytes bytes ** of good-quality randomness into zOut. The return value is ** the actual number of bytes of randomness obtained. ** The xSleep() method causes the calling thread to sleep for at ** least the number of microseconds given. ^The xCurrentTime() ** method returns a Julian Day Number for the current date and time as ** a floating point value. ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian ** Day Number multiplied by 86400000 (the number of milliseconds in ** a 24-hour day). ** ^SQLite will use the xCurrentTimeInt64() method to get the current ** date and time if that method is available (if iVersion is 2 or ** greater and the function pointer is not NULL) and will fall back ** to xCurrentTime() if xCurrentTimeInt64() is unavailable. ** ** ^The xSetSystemCall(), xGetSystemCall(), and xNestSystemCall() interfaces ** are not used by the SQLite core. These optional interfaces are provided ** by some VFSes to facilitate testing of the VFS code. By overriding ** system calls with functions under its control, a test program can ** simulate faults and error conditions that would otherwise be difficult ** or impossible to induce. The set of system calls that can be overridden ** varies from one VFS to another, and from one version of the same VFS to the ** next. Applications that use these interfaces must be prepared for any ** or all of these interfaces to be NULL or for their behavior to change ** from one release to the next. Applications must not attempt to access ** any of these methods if the iVersion of the VFS is less than 3. */ typedef struct sqlite3_vfs sqlite3_vfs; typedef void (*sqlite3_syscall_ptr)(void); struct sqlite3_vfs { int iVersion; /* Structure version number (currently 3) */ int szOsFile; /* Size of subclassed sqlite3_file */ int mxPathname; /* Maximum file pathname length */ sqlite3_vfs *pNext; /* Next registered VFS */ const char *zName; /* Name of this virtual file system */ void *pAppData; /* Pointer to application-specific data */ int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, int flags, int *pOutFlags); int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); void (*xDlClose)(sqlite3_vfs*, void*); int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); int (*xSleep)(sqlite3_vfs*, int microseconds); int (*xCurrentTime)(sqlite3_vfs*, double*); int (*xGetLastError)(sqlite3_vfs*, int, char *); /* ** The methods above are in version 1 of the sqlite_vfs object ** definition. Those that follow are added in version 2 or later */ int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); /* ** The methods above are in versions 1 and 2 of the sqlite_vfs object. ** Those below are for version 3 and greater. */ int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); /* ** The methods above are in versions 1 through 3 of the sqlite_vfs object. ** New fields may be appended in future versions. The iVersion ** value will increment whenever this happens. */ }; /* ** CAPI3REF: Flags for the xAccess VFS method ** ** These integer constants can be used as the third parameter to ** the xAccess method of an [sqlite3_vfs] object. They determine ** what kind of permissions the xAccess method is looking for. ** With SQLITE_ACCESS_EXISTS, the xAccess method ** simply checks whether the file exists. ** With SQLITE_ACCESS_READWRITE, the xAccess method ** checks whether the named directory is both readable and writable ** (in other words, if files can be added, removed, and renamed within ** the directory). ** The SQLITE_ACCESS_READWRITE constant is currently used only by the ** [temp_store_directory pragma], though this could change in a future ** release of SQLite. ** With SQLITE_ACCESS_READ, the xAccess method ** checks whether the file is readable. The SQLITE_ACCESS_READ constant is ** currently unused, though it might be used in a future release of ** SQLite. */ #define SQLITE_ACCESS_EXISTS 0 #define SQLITE_ACCESS_READWRITE 1 /* Used by PRAGMA temp_store_directory */ #define SQLITE_ACCESS_READ 2 /* Unused */ /* ** CAPI3REF: Flags for the xShmLock VFS method ** ** These integer constants define the various locking operations ** allowed by the xShmLock method of [sqlite3_io_methods]. The ** following are the only legal combinations of flags to the ** xShmLock method: ** **
    **
  • SQLITE_SHM_LOCK | SQLITE_SHM_SHARED **
  • SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE **
  • SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED **
  • SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE **
** ** When unlocking, the same SHARED or EXCLUSIVE flag must be supplied as ** was given on the corresponding lock. ** ** The xShmLock method can transition between unlocked and SHARED or ** between unlocked and EXCLUSIVE. It cannot transition between SHARED ** and EXCLUSIVE. */ #define SQLITE_SHM_UNLOCK 1 #define SQLITE_SHM_LOCK 2 #define SQLITE_SHM_SHARED 4 #define SQLITE_SHM_EXCLUSIVE 8 /* ** CAPI3REF: Maximum xShmLock index ** ** The xShmLock method on [sqlite3_io_methods] may use values ** between 0 and this upper bound as its "offset" argument. ** The SQLite core will never attempt to acquire or release a ** lock outside of this range */ #define SQLITE_SHM_NLOCK 8 /* ** CAPI3REF: Initialize The SQLite Library ** ** ^The sqlite3_initialize() routine initializes the ** SQLite library. ^The sqlite3_shutdown() routine ** deallocates any resources that were allocated by sqlite3_initialize(). ** These routines are designed to aid in process initialization and ** shutdown on embedded systems. Workstation applications using ** SQLite normally do not need to invoke either of these routines. ** ** A call to sqlite3_initialize() is an "effective" call if it is ** the first time sqlite3_initialize() is invoked during the lifetime of ** the process, or if it is the first time sqlite3_initialize() is invoked ** following a call to sqlite3_shutdown(). ^(Only an effective call ** of sqlite3_initialize() does any initialization. All other calls ** are harmless no-ops.)^ ** ** A call to sqlite3_shutdown() is an "effective" call if it is the first ** call to sqlite3_shutdown() since the last sqlite3_initialize(). ^(Only ** an effective call to sqlite3_shutdown() does any deinitialization. ** All other valid calls to sqlite3_shutdown() are harmless no-ops.)^ ** ** The sqlite3_initialize() interface is threadsafe, but sqlite3_shutdown() ** is not. The sqlite3_shutdown() interface must only be called from a ** single thread. All open [database connections] must be closed and all ** other SQLite resources must be deallocated prior to invoking ** sqlite3_shutdown(). ** ** Among other things, ^sqlite3_initialize() will invoke ** sqlite3_os_init(). Similarly, ^sqlite3_shutdown() ** will invoke sqlite3_os_end(). ** ** ^The sqlite3_initialize() routine returns [SQLITE_OK] on success. ** ^If for some reason, sqlite3_initialize() is unable to initialize ** the library (perhaps it is unable to allocate a needed resource such ** as a mutex) it returns an [error code] other than [SQLITE_OK]. ** ** ^The sqlite3_initialize() routine is called internally by many other ** SQLite interfaces so that an application usually does not need to ** invoke sqlite3_initialize() directly. For example, [sqlite3_open()] ** calls sqlite3_initialize() so the SQLite library will be automatically ** initialized when [sqlite3_open()] is called if it has not be initialized ** already. ^However, if SQLite is compiled with the [SQLITE_OMIT_AUTOINIT] ** compile-time option, then the automatic calls to sqlite3_initialize() ** are omitted and the application must call sqlite3_initialize() directly ** prior to using any other SQLite interface. For maximum portability, ** it is recommended that applications always invoke sqlite3_initialize() ** directly prior to using any other SQLite interface. Future releases ** of SQLite may require this. In other words, the behavior exhibited ** when SQLite is compiled with [SQLITE_OMIT_AUTOINIT] might become the ** default behavior in some future release of SQLite. ** ** The sqlite3_os_init() routine does operating-system specific ** initialization of the SQLite library. The sqlite3_os_end() ** routine undoes the effect of sqlite3_os_init(). Typical tasks ** performed by these routines include allocation or deallocation ** of static resources, initialization of global variables, ** setting up a default [sqlite3_vfs] module, or setting up ** a default configuration using [sqlite3_config()]. ** ** The application should never invoke either sqlite3_os_init() ** or sqlite3_os_end() directly. The application should only invoke ** sqlite3_initialize() and sqlite3_shutdown(). The sqlite3_os_init() ** interface is called automatically by sqlite3_initialize() and ** sqlite3_os_end() is called by sqlite3_shutdown(). Appropriate ** implementations for sqlite3_os_init() and sqlite3_os_end() ** are built into SQLite when it is compiled for Unix, Windows, or OS/2. ** When [custom builds | built for other platforms] ** (using the [SQLITE_OS_OTHER=1] compile-time ** option) the application must supply a suitable implementation for ** sqlite3_os_init() and sqlite3_os_end(). An application-supplied ** implementation of sqlite3_os_init() or sqlite3_os_end() ** must return [SQLITE_OK] on success and some other [error code] upon ** failure. */ SQLITE_API int sqlite3_initialize(void); SQLITE_API int sqlite3_shutdown(void); SQLITE_API int sqlite3_os_init(void); SQLITE_API int sqlite3_os_end(void); /* ** CAPI3REF: Configuring The SQLite Library ** ** The sqlite3_config() interface is used to make global configuration ** changes to SQLite in order to tune SQLite to the specific needs of ** the application. The default configuration is recommended for most ** applications and so this routine is usually not necessary. It is ** provided to support rare applications with unusual needs. ** ** The sqlite3_config() interface is not threadsafe. The application ** must ensure that no other SQLite interfaces are invoked by other ** threads while sqlite3_config() is running. ** ** The sqlite3_config() interface ** may only be invoked prior to library initialization using ** [sqlite3_initialize()] or after shutdown by [sqlite3_shutdown()]. ** ^If sqlite3_config() is called after [sqlite3_initialize()] and before ** [sqlite3_shutdown()] then it will return SQLITE_MISUSE. ** Note, however, that ^sqlite3_config() can be called as part of the ** implementation of an application-defined [sqlite3_os_init()]. ** ** The first argument to sqlite3_config() is an integer ** [configuration option] that determines ** what property of SQLite is to be configured. Subsequent arguments ** vary depending on the [configuration option] ** in the first argument. ** ** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK]. ** ^If the option is unknown or SQLite is unable to set the option ** then this routine returns a non-zero [error code]. */ SQLITE_API int sqlite3_config(int, ...); /* ** CAPI3REF: Configure database connections ** METHOD: sqlite3 ** ** The sqlite3_db_config() interface is used to make configuration ** changes to a [database connection]. The interface is similar to ** [sqlite3_config()] except that the changes apply to a single ** [database connection] (specified in the first argument). ** ** The second argument to sqlite3_db_config(D,V,...) is the ** [SQLITE_DBCONFIG_LOOKASIDE | configuration verb] - an integer code ** that indicates what aspect of the [database connection] is being configured. ** Subsequent arguments vary depending on the configuration verb. ** ** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if ** the call is considered successful. */ SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...); /* ** CAPI3REF: Memory Allocation Routines ** ** An instance of this object defines the interface between SQLite ** and low-level memory allocation routines. ** ** This object is used in only one place in the SQLite interface. ** A pointer to an instance of this object is the argument to ** [sqlite3_config()] when the configuration option is ** [SQLITE_CONFIG_MALLOC] or [SQLITE_CONFIG_GETMALLOC]. ** By creating an instance of this object ** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC]) ** during configuration, an application can specify an alternative ** memory allocation subsystem for SQLite to use for all of its ** dynamic memory needs. ** ** Note that SQLite comes with several [built-in memory allocators] ** that are perfectly adequate for the overwhelming majority of applications ** and that this object is only useful to a tiny minority of applications ** with specialized memory allocation requirements. This object is ** also used during testing of SQLite in order to specify an alternative ** memory allocator that simulates memory out-of-memory conditions in ** order to verify that SQLite recovers gracefully from such ** conditions. ** ** The xMalloc, xRealloc, and xFree methods must work like the ** malloc(), realloc() and free() functions from the standard C library. ** ^SQLite guarantees that the second argument to ** xRealloc is always a value returned by a prior call to xRoundup. ** ** xSize should return the allocated size of a memory allocation ** previously obtained from xMalloc or xRealloc. The allocated size ** is always at least as big as the requested size but may be larger. ** ** The xRoundup method returns what would be the allocated size of ** a memory allocation given a particular requested size. Most memory ** allocators round up memory allocations at least to the next multiple ** of 8. Some allocators round up to a larger multiple or to a power of 2. ** Every memory allocation request coming in through [sqlite3_malloc()] ** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0, ** that causes the corresponding memory allocation to fail. ** ** The xInit method initializes the memory allocator. For example, ** it might allocate any required mutexes or initialize internal data ** structures. The xShutdown method is invoked (indirectly) by ** [sqlite3_shutdown()] and should deallocate any resources acquired ** by xInit. The pAppData pointer is used as the only parameter to ** xInit and xShutdown. ** ** SQLite holds the [SQLITE_MUTEX_STATIC_MAIN] mutex when it invokes ** the xInit method, so the xInit method need not be threadsafe. The ** xShutdown method is only called from [sqlite3_shutdown()] so it does ** not need to be threadsafe either. For all other methods, SQLite ** holds the [SQLITE_MUTEX_STATIC_MEM] mutex as long as the ** [SQLITE_CONFIG_MEMSTATUS] configuration option is turned on (which ** it is by default) and so the methods are automatically serialized. ** However, if [SQLITE_CONFIG_MEMSTATUS] is disabled, then the other ** methods must be threadsafe or else make their own arrangements for ** serialization. ** ** SQLite will never invoke xInit() more than once without an intervening ** call to xShutdown(). */ typedef struct sqlite3_mem_methods sqlite3_mem_methods; struct sqlite3_mem_methods { void *(*xMalloc)(int); /* Memory allocation function */ void (*xFree)(void*); /* Free a prior allocation */ void *(*xRealloc)(void*,int); /* Resize an allocation */ int (*xSize)(void*); /* Return the size of an allocation */ int (*xRoundup)(int); /* Round up request size to allocation size */ int (*xInit)(void*); /* Initialize the memory allocator */ void (*xShutdown)(void*); /* Deinitialize the memory allocator */ void *pAppData; /* Argument to xInit() and xShutdown() */ }; /* ** CAPI3REF: Configuration Options ** KEYWORDS: {configuration option} ** ** These constants are the available integer configuration options that ** can be passed as the first argument to the [sqlite3_config()] interface. ** ** New configuration options may be added in future releases of SQLite. ** Existing configuration options might be discontinued. Applications ** should check the return code from [sqlite3_config()] to make sure that ** the call worked. The [sqlite3_config()] interface will return a ** non-zero [error code] if a discontinued or unsupported configuration option ** is invoked. ** **
** [[SQLITE_CONFIG_SINGLETHREAD]]
SQLITE_CONFIG_SINGLETHREAD
**
There are no arguments to this option. ^This option sets the ** [threading mode] to Single-thread. In other words, it disables ** all mutexing and puts SQLite into a mode where it can only be used ** by a single thread. ^If SQLite is compiled with ** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then ** it is not possible to change the [threading mode] from its default ** value of Single-thread and so [sqlite3_config()] will return ** [SQLITE_ERROR] if called with the SQLITE_CONFIG_SINGLETHREAD ** configuration option.
** ** [[SQLITE_CONFIG_MULTITHREAD]]
SQLITE_CONFIG_MULTITHREAD
**
There are no arguments to this option. ^This option sets the ** [threading mode] to Multi-thread. In other words, it disables ** mutexing on [database connection] and [prepared statement] objects. ** The application is responsible for serializing access to ** [database connections] and [prepared statements]. But other mutexes ** are enabled so that SQLite will be safe to use in a multi-threaded ** environment as long as no two threads attempt to use the same ** [database connection] at the same time. ^If SQLite is compiled with ** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then ** it is not possible to set the Multi-thread [threading mode] and ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the ** SQLITE_CONFIG_MULTITHREAD configuration option.
** ** [[SQLITE_CONFIG_SERIALIZED]]
SQLITE_CONFIG_SERIALIZED
**
There are no arguments to this option. ^This option sets the ** [threading mode] to Serialized. In other words, this option enables ** all mutexes including the recursive ** mutexes on [database connection] and [prepared statement] objects. ** In this mode (which is the default when SQLite is compiled with ** [SQLITE_THREADSAFE=1]) the SQLite library will itself serialize access ** to [database connections] and [prepared statements] so that the ** application is free to use the same [database connection] or the ** same [prepared statement] in different threads at the same time. ** ^If SQLite is compiled with ** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then ** it is not possible to set the Serialized [threading mode] and ** [sqlite3_config()] will return [SQLITE_ERROR] if called with the ** SQLITE_CONFIG_SERIALIZED configuration option.
** ** [[SQLITE_CONFIG_MALLOC]]
SQLITE_CONFIG_MALLOC
**
^(The SQLITE_CONFIG_MALLOC option takes a single argument which is ** a pointer to an instance of the [sqlite3_mem_methods] structure. ** The argument specifies ** alternative low-level memory allocation routines to be used in place of ** the memory allocation routines built into SQLite.)^ ^SQLite makes ** its own private copy of the content of the [sqlite3_mem_methods] structure ** before the [sqlite3_config()] call returns.
** ** [[SQLITE_CONFIG_GETMALLOC]]
SQLITE_CONFIG_GETMALLOC
**
^(The SQLITE_CONFIG_GETMALLOC option takes a single argument which ** is a pointer to an instance of the [sqlite3_mem_methods] structure. ** The [sqlite3_mem_methods] ** structure is filled with the currently defined memory allocation routines.)^ ** This option can be used to overload the default memory allocation ** routines with a wrapper that simulations memory allocation failure or ** tracks memory usage, for example.
** ** [[SQLITE_CONFIG_SMALL_MALLOC]]
SQLITE_CONFIG_SMALL_MALLOC
**
^The SQLITE_CONFIG_SMALL_MALLOC option takes single argument of ** type int, interpreted as a boolean, which if true provides a hint to ** SQLite that it should avoid large memory allocations if possible. ** SQLite will run faster if it is free to make large memory allocations, ** but some application might prefer to run slower in exchange for ** guarantees about memory fragmentation that are possible if large ** allocations are avoided. This hint is normally off. **
** ** [[SQLITE_CONFIG_MEMSTATUS]]
SQLITE_CONFIG_MEMSTATUS
**
^The SQLITE_CONFIG_MEMSTATUS option takes single argument of type int, ** interpreted as a boolean, which enables or disables the collection of ** memory allocation statistics. ^(When memory allocation statistics are ** disabled, the following SQLite interfaces become non-operational: **
    **
  • [sqlite3_hard_heap_limit64()] **
  • [sqlite3_memory_used()] **
  • [sqlite3_memory_highwater()] **
  • [sqlite3_soft_heap_limit64()] **
  • [sqlite3_status64()] **
)^ ** ^Memory allocation statistics are enabled by default unless SQLite is ** compiled with [SQLITE_DEFAULT_MEMSTATUS]=0 in which case memory ** allocation statistics are disabled by default. **
** ** [[SQLITE_CONFIG_SCRATCH]]
SQLITE_CONFIG_SCRATCH
**
The SQLITE_CONFIG_SCRATCH option is no longer used. **
** ** [[SQLITE_CONFIG_PAGECACHE]]
SQLITE_CONFIG_PAGECACHE
**
^The SQLITE_CONFIG_PAGECACHE option specifies a memory pool ** that SQLite can use for the database page cache with the default page ** cache implementation. ** This configuration option is a no-op if an application-defined page ** cache implementation is loaded using the [SQLITE_CONFIG_PCACHE2]. ** ^There are three arguments to SQLITE_CONFIG_PAGECACHE: A pointer to ** 8-byte aligned memory (pMem), the size of each page cache line (sz), ** and the number of cache lines (N). ** The sz argument should be the size of the largest database page ** (a power of two between 512 and 65536) plus some extra bytes for each ** page header. ^The number of extra bytes needed by the page header ** can be determined using [SQLITE_CONFIG_PCACHE_HDRSZ]. ** ^It is harmless, apart from the wasted memory, ** for the sz parameter to be larger than necessary. The pMem ** argument must be either a NULL pointer or a pointer to an 8-byte ** aligned block of memory of at least sz*N bytes, otherwise ** subsequent behavior is undefined. ** ^When pMem is not NULL, SQLite will strive to use the memory provided ** to satisfy page cache needs, falling back to [sqlite3_malloc()] if ** a page cache line is larger than sz bytes or if all of the pMem buffer ** is exhausted. ** ^If pMem is NULL and N is non-zero, then each database connection ** does an initial bulk allocation for page cache memory ** from [sqlite3_malloc()] sufficient for N cache lines if N is positive or ** of -1024*N bytes if N is negative, . ^If additional ** page cache memory is needed beyond what is provided by the initial ** allocation, then SQLite goes to [sqlite3_malloc()] separately for each ** additional cache line.
** ** [[SQLITE_CONFIG_HEAP]]
SQLITE_CONFIG_HEAP
**
^The SQLITE_CONFIG_HEAP option specifies a static memory buffer ** that SQLite will use for all of its dynamic memory allocation needs ** beyond those provided for by [SQLITE_CONFIG_PAGECACHE]. ** ^The SQLITE_CONFIG_HEAP option is only available if SQLite is compiled ** with either [SQLITE_ENABLE_MEMSYS3] or [SQLITE_ENABLE_MEMSYS5] and returns ** [SQLITE_ERROR] if invoked otherwise. ** ^There are three arguments to SQLITE_CONFIG_HEAP: ** An 8-byte aligned pointer to the memory, ** the number of bytes in the memory buffer, and the minimum allocation size. ** ^If the first pointer (the memory pointer) is NULL, then SQLite reverts ** to using its default memory allocator (the system malloc() implementation), ** undoing any prior invocation of [SQLITE_CONFIG_MALLOC]. ^If the ** memory pointer is not NULL then the alternative memory ** allocator is engaged to handle all of SQLites memory allocation needs. ** The first pointer (the memory pointer) must be aligned to an 8-byte ** boundary or subsequent behavior of SQLite will be undefined. ** The minimum allocation size is capped at 2**12. Reasonable values ** for the minimum allocation size are 2**5 through 2**8.
** ** [[SQLITE_CONFIG_MUTEX]]
SQLITE_CONFIG_MUTEX
**
^(The SQLITE_CONFIG_MUTEX option takes a single argument which is a ** pointer to an instance of the [sqlite3_mutex_methods] structure. ** The argument specifies alternative low-level mutex routines to be used ** in place the mutex routines built into SQLite.)^ ^SQLite makes a copy of ** the content of the [sqlite3_mutex_methods] structure before the call to ** [sqlite3_config()] returns. ^If SQLite is compiled with ** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then ** the entire mutexing subsystem is omitted from the build and hence calls to ** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will ** return [SQLITE_ERROR].
** ** [[SQLITE_CONFIG_GETMUTEX]]
SQLITE_CONFIG_GETMUTEX
**
^(The SQLITE_CONFIG_GETMUTEX option takes a single argument which ** is a pointer to an instance of the [sqlite3_mutex_methods] structure. The ** [sqlite3_mutex_methods] ** structure is filled with the currently defined mutex routines.)^ ** This option can be used to overload the default mutex allocation ** routines with a wrapper used to track mutex usage for performance ** profiling or testing, for example. ^If SQLite is compiled with ** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then ** the entire mutexing subsystem is omitted from the build and hence calls to ** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will ** return [SQLITE_ERROR].
** ** [[SQLITE_CONFIG_LOOKASIDE]]
SQLITE_CONFIG_LOOKASIDE
**
^(The SQLITE_CONFIG_LOOKASIDE option takes two arguments that determine ** the default size of lookaside memory on each [database connection]. ** The first argument is the ** size of each lookaside buffer slot and the second is the number of ** slots allocated to each database connection.)^ ^(SQLITE_CONFIG_LOOKASIDE ** sets the default lookaside size. The [SQLITE_DBCONFIG_LOOKASIDE] ** option to [sqlite3_db_config()] can be used to change the lookaside ** configuration on individual connections.)^
** ** [[SQLITE_CONFIG_PCACHE2]]
SQLITE_CONFIG_PCACHE2
**
^(The SQLITE_CONFIG_PCACHE2 option takes a single argument which is ** a pointer to an [sqlite3_pcache_methods2] object. This object specifies ** the interface to a custom page cache implementation.)^ ** ^SQLite makes a copy of the [sqlite3_pcache_methods2] object.
** ** [[SQLITE_CONFIG_GETPCACHE2]]
SQLITE_CONFIG_GETPCACHE2
**
^(The SQLITE_CONFIG_GETPCACHE2 option takes a single argument which ** is a pointer to an [sqlite3_pcache_methods2] object. SQLite copies of ** the current page cache implementation into that object.)^
** ** [[SQLITE_CONFIG_LOG]]
SQLITE_CONFIG_LOG
**
The SQLITE_CONFIG_LOG option is used to configure the SQLite ** global [error log]. ** (^The SQLITE_CONFIG_LOG option takes two arguments: a pointer to a ** function with a call signature of void(*)(void*,int,const char*), ** and a pointer to void. ^If the function pointer is not NULL, it is ** invoked by [sqlite3_log()] to process each logging event. ^If the ** function pointer is NULL, the [sqlite3_log()] interface becomes a no-op. ** ^The void pointer that is the second argument to SQLITE_CONFIG_LOG is ** passed through as the first parameter to the application-defined logger ** function whenever that function is invoked. ^The second parameter to ** the logger function is a copy of the first parameter to the corresponding ** [sqlite3_log()] call and is intended to be a [result code] or an ** [extended result code]. ^The third parameter passed to the logger is ** log message after formatting via [sqlite3_snprintf()]. ** The SQLite logging interface is not reentrant; the logger function ** supplied by the application must not invoke any SQLite interface. ** In a multi-threaded application, the application-defined logger ** function must be threadsafe.
** ** [[SQLITE_CONFIG_URI]]
SQLITE_CONFIG_URI **
^(The SQLITE_CONFIG_URI option takes a single argument of type int. ** If non-zero, then URI handling is globally enabled. If the parameter is zero, ** then URI handling is globally disabled.)^ ^If URI handling is globally ** enabled, all filenames passed to [sqlite3_open()], [sqlite3_open_v2()], ** [sqlite3_open16()] or ** specified as part of [ATTACH] commands are interpreted as URIs, regardless ** of whether or not the [SQLITE_OPEN_URI] flag is set when the database ** connection is opened. ^If it is globally disabled, filenames are ** only interpreted as URIs if the SQLITE_OPEN_URI flag is set when the ** database connection is opened. ^(By default, URI handling is globally ** disabled. The default value may be changed by compiling with the ** [SQLITE_USE_URI] symbol defined.)^ ** ** [[SQLITE_CONFIG_COVERING_INDEX_SCAN]]
SQLITE_CONFIG_COVERING_INDEX_SCAN **
^The SQLITE_CONFIG_COVERING_INDEX_SCAN option takes a single integer ** argument which is interpreted as a boolean in order to enable or disable ** the use of covering indices for full table scans in the query optimizer. ** ^The default setting is determined ** by the [SQLITE_ALLOW_COVERING_INDEX_SCAN] compile-time option, or is "on" ** if that compile-time option is omitted. ** The ability to disable the use of covering indices for full table scans ** is because some incorrectly coded legacy applications might malfunction ** when the optimization is enabled. Providing the ability to ** disable the optimization allows the older, buggy application code to work ** without change even with newer versions of SQLite. ** ** [[SQLITE_CONFIG_PCACHE]] [[SQLITE_CONFIG_GETPCACHE]] **
SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE **
These options are obsolete and should not be used by new code. ** They are retained for backwards compatibility but are now no-ops. **
** ** [[SQLITE_CONFIG_SQLLOG]] **
SQLITE_CONFIG_SQLLOG **
This option is only available if sqlite is compiled with the ** [SQLITE_ENABLE_SQLLOG] pre-processor macro defined. The first argument should ** be a pointer to a function of type void(*)(void*,sqlite3*,const char*, int). ** The second should be of type (void*). The callback is invoked by the library ** in three separate circumstances, identified by the value passed as the ** fourth parameter. If the fourth parameter is 0, then the database connection ** passed as the second argument has just been opened. The third argument ** points to a buffer containing the name of the main database file. If the ** fourth parameter is 1, then the SQL statement that the third parameter ** points to has just been executed. Or, if the fourth parameter is 2, then ** the connection being passed as the second parameter is being closed. The ** third parameter is passed NULL In this case. An example of using this ** configuration option can be seen in the "test_sqllog.c" source file in ** the canonical SQLite source tree.
** ** [[SQLITE_CONFIG_MMAP_SIZE]] **
SQLITE_CONFIG_MMAP_SIZE **
^SQLITE_CONFIG_MMAP_SIZE takes two 64-bit integer (sqlite3_int64) values ** that are the default mmap size limit (the default setting for ** [PRAGMA mmap_size]) and the maximum allowed mmap size limit. ** ^The default setting can be overridden by each database connection using ** either the [PRAGMA mmap_size] command, or by using the ** [SQLITE_FCNTL_MMAP_SIZE] file control. ^(The maximum allowed mmap size ** will be silently truncated if necessary so that it does not exceed the ** compile-time maximum mmap size set by the ** [SQLITE_MAX_MMAP_SIZE] compile-time option.)^ ** ^If either argument to this option is negative, then that argument is ** changed to its compile-time default. ** ** [[SQLITE_CONFIG_WIN32_HEAPSIZE]] **
SQLITE_CONFIG_WIN32_HEAPSIZE **
^The SQLITE_CONFIG_WIN32_HEAPSIZE option is only available if SQLite is ** compiled for Windows with the [SQLITE_WIN32_MALLOC] pre-processor macro ** defined. ^SQLITE_CONFIG_WIN32_HEAPSIZE takes a 32-bit unsigned integer value ** that specifies the maximum size of the created heap. ** ** [[SQLITE_CONFIG_PCACHE_HDRSZ]] **
SQLITE_CONFIG_PCACHE_HDRSZ **
^The SQLITE_CONFIG_PCACHE_HDRSZ option takes a single parameter which ** is a pointer to an integer and writes into that integer the number of extra ** bytes per page required for each page in [SQLITE_CONFIG_PAGECACHE]. ** The amount of extra space required can change depending on the compiler, ** target platform, and SQLite version. ** ** [[SQLITE_CONFIG_PMASZ]] **
SQLITE_CONFIG_PMASZ **
^The SQLITE_CONFIG_PMASZ option takes a single parameter which ** is an unsigned integer and sets the "Minimum PMA Size" for the multithreaded ** sorter to that integer. The default minimum PMA Size is set by the ** [SQLITE_SORTER_PMASZ] compile-time option. New threads are launched ** to help with sort operations when multithreaded sorting ** is enabled (using the [PRAGMA threads] command) and the amount of content ** to be sorted exceeds the page size times the minimum of the ** [PRAGMA cache_size] setting and this value. ** ** [[SQLITE_CONFIG_STMTJRNL_SPILL]] **
SQLITE_CONFIG_STMTJRNL_SPILL **
^The SQLITE_CONFIG_STMTJRNL_SPILL option takes a single parameter which ** becomes the [statement journal] spill-to-disk threshold. ** [Statement journals] are held in memory until their size (in bytes) ** exceeds this threshold, at which point they are written to disk. ** Or if the threshold is -1, statement journals are always held ** exclusively in memory. ** Since many statement journals never become large, setting the spill ** threshold to a value such as 64KiB can greatly reduce the amount of ** I/O required to support statement rollback. ** The default value for this setting is controlled by the ** [SQLITE_STMTJRNL_SPILL] compile-time option. ** ** [[SQLITE_CONFIG_SORTERREF_SIZE]] **
SQLITE_CONFIG_SORTERREF_SIZE **
The SQLITE_CONFIG_SORTERREF_SIZE option accepts a single parameter ** of type (int) - the new value of the sorter-reference size threshold. ** Usually, when SQLite uses an external sort to order records according ** to an ORDER BY clause, all fields required by the caller are present in the ** sorted records. However, if SQLite determines based on the declared type ** of a table column that its values are likely to be very large - larger ** than the configured sorter-reference size threshold - then a reference ** is stored in each sorted record and the required column values loaded ** from the database as records are returned in sorted order. The default ** value for this option is to never use this optimization. Specifying a ** negative value for this option restores the default behaviour. ** This option is only available if SQLite is compiled with the ** [SQLITE_ENABLE_SORTER_REFERENCES] compile-time option. ** ** [[SQLITE_CONFIG_MEMDB_MAXSIZE]] **
SQLITE_CONFIG_MEMDB_MAXSIZE **
The SQLITE_CONFIG_MEMDB_MAXSIZE option accepts a single parameter ** [sqlite3_int64] parameter which is the default maximum size for an in-memory ** database created using [sqlite3_deserialize()]. This default maximum ** size can be adjusted up or down for individual databases using the ** [SQLITE_FCNTL_SIZE_LIMIT] [sqlite3_file_control|file-control]. If this ** configuration setting is never used, then the default maximum is determined ** by the [SQLITE_MEMDB_DEFAULT_MAXSIZE] compile-time option. If that ** compile-time option is not set, then the default maximum is 1073741824. **
*/ #define SQLITE_CONFIG_SINGLETHREAD 1 /* nil */ #define SQLITE_CONFIG_MULTITHREAD 2 /* nil */ #define SQLITE_CONFIG_SERIALIZED 3 /* nil */ #define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */ #define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */ #define SQLITE_CONFIG_SCRATCH 6 /* No longer used */ #define SQLITE_CONFIG_PAGECACHE 7 /* void*, int sz, int N */ #define SQLITE_CONFIG_HEAP 8 /* void*, int nByte, int min */ #define SQLITE_CONFIG_MEMSTATUS 9 /* boolean */ #define SQLITE_CONFIG_MUTEX 10 /* sqlite3_mutex_methods* */ #define SQLITE_CONFIG_GETMUTEX 11 /* sqlite3_mutex_methods* */ /* previously SQLITE_CONFIG_CHUNKALLOC 12 which is now unused. */ #define SQLITE_CONFIG_LOOKASIDE 13 /* int int */ #define SQLITE_CONFIG_PCACHE 14 /* no-op */ #define SQLITE_CONFIG_GETPCACHE 15 /* no-op */ #define SQLITE_CONFIG_LOG 16 /* xFunc, void* */ #define SQLITE_CONFIG_URI 17 /* int */ #define SQLITE_CONFIG_PCACHE2 18 /* sqlite3_pcache_methods2* */ #define SQLITE_CONFIG_GETPCACHE2 19 /* sqlite3_pcache_methods2* */ #define SQLITE_CONFIG_COVERING_INDEX_SCAN 20 /* int */ #define SQLITE_CONFIG_SQLLOG 21 /* xSqllog, void* */ #define SQLITE_CONFIG_MMAP_SIZE 22 /* sqlite3_int64, sqlite3_int64 */ #define SQLITE_CONFIG_WIN32_HEAPSIZE 23 /* int nByte */ #define SQLITE_CONFIG_PCACHE_HDRSZ 24 /* int *psz */ #define SQLITE_CONFIG_PMASZ 25 /* unsigned int szPma */ #define SQLITE_CONFIG_STMTJRNL_SPILL 26 /* int nByte */ #define SQLITE_CONFIG_SMALL_MALLOC 27 /* boolean */ #define SQLITE_CONFIG_SORTERREF_SIZE 28 /* int nByte */ #define SQLITE_CONFIG_MEMDB_MAXSIZE 29 /* sqlite3_int64 */ /* ** CAPI3REF: Database Connection Configuration Options ** ** These constants are the available integer configuration options that ** can be passed as the second argument to the [sqlite3_db_config()] interface. ** ** New configuration options may be added in future releases of SQLite. ** Existing configuration options might be discontinued. Applications ** should check the return code from [sqlite3_db_config()] to make sure that ** the call worked. ^The [sqlite3_db_config()] interface will return a ** non-zero [error code] if a discontinued or unsupported configuration option ** is invoked. ** **
** [[SQLITE_DBCONFIG_LOOKASIDE]] **
SQLITE_DBCONFIG_LOOKASIDE
**
^This option takes three additional arguments that determine the ** [lookaside memory allocator] configuration for the [database connection]. ** ^The first argument (the third parameter to [sqlite3_db_config()] is a ** pointer to a memory buffer to use for lookaside memory. ** ^The first argument after the SQLITE_DBCONFIG_LOOKASIDE verb ** may be NULL in which case SQLite will allocate the ** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the ** size of each lookaside buffer slot. ^The third argument is the number of ** slots. The size of the buffer in the first argument must be greater than ** or equal to the product of the second and third arguments. The buffer ** must be aligned to an 8-byte boundary. ^If the second argument to ** SQLITE_DBCONFIG_LOOKASIDE is not a multiple of 8, it is internally ** rounded down to the next smaller multiple of 8. ^(The lookaside memory ** configuration for a database connection can only be changed when that ** connection is not currently using lookaside memory, or in other words ** when the "current value" returned by ** [sqlite3_db_status](D,[SQLITE_CONFIG_LOOKASIDE],...) is zero. ** Any attempt to change the lookaside memory configuration when lookaside ** memory is in use leaves the configuration unchanged and returns ** [SQLITE_BUSY].)^
** ** [[SQLITE_DBCONFIG_ENABLE_FKEY]] **
SQLITE_DBCONFIG_ENABLE_FKEY
**
^This option is used to enable or disable the enforcement of ** [foreign key constraints]. There should be two additional arguments. ** The first argument is an integer which is 0 to disable FK enforcement, ** positive to enable FK enforcement or negative to leave FK enforcement ** unchanged. The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether FK enforcement is off or on ** following this call. The second parameter may be a NULL pointer, in ** which case the FK enforcement setting is not reported back.
** ** [[SQLITE_DBCONFIG_ENABLE_TRIGGER]] **
SQLITE_DBCONFIG_ENABLE_TRIGGER
**
^This option is used to enable or disable [CREATE TRIGGER | triggers]. ** There should be two additional arguments. ** The first argument is an integer which is 0 to disable triggers, ** positive to enable triggers or negative to leave the setting unchanged. ** The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether triggers are disabled or enabled ** following this call. The second parameter may be a NULL pointer, in ** which case the trigger setting is not reported back.
** ** [[SQLITE_DBCONFIG_ENABLE_VIEW]] **
SQLITE_DBCONFIG_ENABLE_VIEW
**
^This option is used to enable or disable [CREATE VIEW | views]. ** There should be two additional arguments. ** The first argument is an integer which is 0 to disable views, ** positive to enable views or negative to leave the setting unchanged. ** The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether views are disabled or enabled ** following this call. The second parameter may be a NULL pointer, in ** which case the view setting is not reported back.
** ** [[SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER]] **
SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER
**
^This option is used to enable or disable the ** [fts3_tokenizer()] function which is part of the ** [FTS3] full-text search engine extension. ** There should be two additional arguments. ** The first argument is an integer which is 0 to disable fts3_tokenizer() or ** positive to enable fts3_tokenizer() or negative to leave the setting ** unchanged. ** The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether fts3_tokenizer is disabled or enabled ** following this call. The second parameter may be a NULL pointer, in ** which case the new setting is not reported back.
** ** [[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION]] **
SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION
**
^This option is used to enable or disable the [sqlite3_load_extension()] ** interface independently of the [load_extension()] SQL function. ** The [sqlite3_enable_load_extension()] API enables or disables both the ** C-API [sqlite3_load_extension()] and the SQL function [load_extension()]. ** There should be two additional arguments. ** When the first argument to this interface is 1, then only the C-API is ** enabled and the SQL function remains disabled. If the first argument to ** this interface is 0, then both the C-API and the SQL function are disabled. ** If the first argument is -1, then no changes are made to state of either the ** C-API or the SQL function. ** The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether [sqlite3_load_extension()] interface ** is disabled or enabled following this call. The second parameter may ** be a NULL pointer, in which case the new setting is not reported back. **
** ** [[SQLITE_DBCONFIG_MAINDBNAME]]
SQLITE_DBCONFIG_MAINDBNAME
**
^This option is used to change the name of the "main" database ** schema. ^The sole argument is a pointer to a constant UTF8 string ** which will become the new schema name in place of "main". ^SQLite ** does not make a copy of the new main schema name string, so the application ** must ensure that the argument passed into this DBCONFIG option is unchanged ** until after the database connection closes. **
** ** [[SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE]] **
SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE
**
Usually, when a database in wal mode is closed or detached from a ** database handle, SQLite checks if this will mean that there are now no ** connections at all to the database. If so, it performs a checkpoint ** operation before closing the connection. This option may be used to ** override this behaviour. The first parameter passed to this operation ** is an integer - positive to disable checkpoints-on-close, or zero (the ** default) to enable them, and negative to leave the setting unchanged. ** The second parameter is a pointer to an integer ** into which is written 0 or 1 to indicate whether checkpoints-on-close ** have been disabled - 0 if they are not disabled, 1 if they are. **
** ** [[SQLITE_DBCONFIG_ENABLE_QPSG]]
SQLITE_DBCONFIG_ENABLE_QPSG
**
^(The SQLITE_DBCONFIG_ENABLE_QPSG option activates or deactivates ** the [query planner stability guarantee] (QPSG). When the QPSG is active, ** a single SQL query statement will always use the same algorithm regardless ** of values of [bound parameters].)^ The QPSG disables some query optimizations ** that look at the values of bound parameters, which can make some queries ** slower. But the QPSG has the advantage of more predictable behavior. With ** the QPSG active, SQLite will always use the same query plan in the field as ** was used during testing in the lab. ** The first argument to this setting is an integer which is 0 to disable ** the QPSG, positive to enable QPSG, or negative to leave the setting ** unchanged. The second parameter is a pointer to an integer into which ** is written 0 or 1 to indicate whether the QPSG is disabled or enabled ** following this call. **
** ** [[SQLITE_DBCONFIG_TRIGGER_EQP]]
SQLITE_DBCONFIG_TRIGGER_EQP
**
By default, the output of EXPLAIN QUERY PLAN commands does not ** include output for any operations performed by trigger programs. This ** option is used to set or clear (the default) a flag that governs this ** behavior. The first parameter passed to this operation is an integer - ** positive to enable output for trigger programs, or zero to disable it, ** or negative to leave the setting unchanged. ** The second parameter is a pointer to an integer into which is written ** 0 or 1 to indicate whether output-for-triggers has been disabled - 0 if ** it is not disabled, 1 if it is. **
** ** [[SQLITE_DBCONFIG_RESET_DATABASE]]
SQLITE_DBCONFIG_RESET_DATABASE
**
Set the SQLITE_DBCONFIG_RESET_DATABASE flag and then run ** [VACUUM] in order to reset a database back to an empty database ** with no schema and no content. The following process works even for ** a badly corrupted database file: **
    **
  1. If the database connection is newly opened, make sure it has read the ** database schema by preparing then discarding some query against the ** database, or calling sqlite3_table_column_metadata(), ignoring any ** errors. This step is only necessary if the application desires to keep ** the database in WAL mode after the reset if it was in WAL mode before ** the reset. **
  2. sqlite3_db_config(db, SQLITE_DBCONFIG_RESET_DATABASE, 1, 0); **
  3. [sqlite3_exec](db, "[VACUUM]", 0, 0, 0); **
  4. sqlite3_db_config(db, SQLITE_DBCONFIG_RESET_DATABASE, 0, 0); **
** Because resetting a database is destructive and irreversible, the ** process requires the use of this obscure API and multiple steps to help ** ensure that it does not happen by accident. ** ** [[SQLITE_DBCONFIG_DEFENSIVE]]
SQLITE_DBCONFIG_DEFENSIVE
**
The SQLITE_DBCONFIG_DEFENSIVE option activates or deactivates the ** "defensive" flag for a database connection. When the defensive ** flag is enabled, language features that allow ordinary SQL to ** deliberately corrupt the database file are disabled. The disabled ** features include but are not limited to the following: **
    **
  • The [PRAGMA writable_schema=ON] statement. **
  • The [PRAGMA journal_mode=OFF] statement. **
  • Writes to the [sqlite_dbpage] virtual table. **
  • Direct writes to [shadow tables]. **
**
** ** [[SQLITE_DBCONFIG_WRITABLE_SCHEMA]]
SQLITE_DBCONFIG_WRITABLE_SCHEMA
**
The SQLITE_DBCONFIG_WRITABLE_SCHEMA option activates or deactivates the ** "writable_schema" flag. This has the same effect and is logically equivalent ** to setting [PRAGMA writable_schema=ON] or [PRAGMA writable_schema=OFF]. ** The first argument to this setting is an integer which is 0 to disable ** the writable_schema, positive to enable writable_schema, or negative to ** leave the setting unchanged. The second parameter is a pointer to an ** integer into which is written 0 or 1 to indicate whether the writable_schema ** is enabled or disabled following this call. **
** ** [[SQLITE_DBCONFIG_LEGACY_ALTER_TABLE]] **
SQLITE_DBCONFIG_LEGACY_ALTER_TABLE
**
The SQLITE_DBCONFIG_LEGACY_ALTER_TABLE option activates or deactivates ** the legacy behavior of the [ALTER TABLE RENAME] command such it ** behaves as it did prior to [version 3.24.0] (2018-06-04). See the ** "Compatibility Notice" on the [ALTER TABLE RENAME documentation] for ** additional information. This feature can also be turned on and off ** using the [PRAGMA legacy_alter_table] statement. **
** ** [[SQLITE_DBCONFIG_DQS_DML]] **
SQLITE_DBCONFIG_DQS_DML **
The SQLITE_DBCONFIG_DQS_DML option activates or deactivates ** the legacy [double-quoted string literal] misfeature for DML statements ** only, that is DELETE, INSERT, SELECT, and UPDATE statements. The ** default value of this setting is determined by the [-DSQLITE_DQS] ** compile-time option. **
** ** [[SQLITE_DBCONFIG_DQS_DDL]] **
SQLITE_DBCONFIG_DQS_DDL **
The SQLITE_DBCONFIG_DQS option activates or deactivates ** the legacy [double-quoted string literal] misfeature for DDL statements, ** such as CREATE TABLE and CREATE INDEX. The ** default value of this setting is determined by the [-DSQLITE_DQS] ** compile-time option. **
** ** [[SQLITE_DBCONFIG_TRUSTED_SCHEMA]] **
SQLITE_DBCONFIG_TRUSTED_SCHEMA **
The SQLITE_DBCONFIG_TRUSTED_SCHEMA option tells SQLite to ** assume that database schemas are untainted by malicious content. ** When the SQLITE_DBCONFIG_TRUSTED_SCHEMA option is disabled, SQLite ** takes additional defensive steps to protect the application from harm ** including: **
    **
  • Prohibit the use of SQL functions inside triggers, views, ** CHECK constraints, DEFAULT clauses, expression indexes, ** partial indexes, or generated columns ** unless those functions are tagged with [SQLITE_INNOCUOUS]. **
  • Prohibit the use of virtual tables inside of triggers or views ** unless those virtual tables are tagged with [SQLITE_VTAB_INNOCUOUS]. **
** This setting defaults to "on" for legacy compatibility, however ** all applications are advised to turn it off if possible. This setting ** can also be controlled using the [PRAGMA trusted_schema] statement. **
** ** [[SQLITE_DBCONFIG_LEGACY_FILE_FORMAT]] **
SQLITE_DBCONFIG_LEGACY_FILE_FORMAT **
The SQLITE_DBCONFIG_LEGACY_FILE_FORMAT option activates or deactivates ** the legacy file format flag. When activated, this flag causes all newly ** created database file to have a schema format version number (the 4-byte ** integer found at offset 44 into the database header) of 1. This in turn ** means that the resulting database file will be readable and writable by ** any SQLite version back to 3.0.0 ([dateof:3.0.0]). Without this setting, ** newly created databases are generally not understandable by SQLite versions ** prior to 3.3.0 ([dateof:3.3.0]). As these words are written, there ** is now scarcely any need to generated database files that are compatible ** all the way back to version 3.0.0, and so this setting is of little ** practical use, but is provided so that SQLite can continue to claim the ** ability to generate new database files that are compatible with version ** 3.0.0. **

Note that when the SQLITE_DBCONFIG_LEGACY_FILE_FORMAT setting is on, ** the [VACUUM] command will fail with an obscure error when attempting to ** process a table with generated columns and a descending index. This is ** not considered a bug since SQLite versions 3.3.0 and earlier do not support ** either generated columns or decending indexes. **

**
*/ #define SQLITE_DBCONFIG_MAINDBNAME 1000 /* const char* */ #define SQLITE_DBCONFIG_LOOKASIDE 1001 /* void* int int */ #define SQLITE_DBCONFIG_ENABLE_FKEY 1002 /* int int* */ #define SQLITE_DBCONFIG_ENABLE_TRIGGER 1003 /* int int* */ #define SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER 1004 /* int int* */ #define SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION 1005 /* int int* */ #define SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE 1006 /* int int* */ #define SQLITE_DBCONFIG_ENABLE_QPSG 1007 /* int int* */ #define SQLITE_DBCONFIG_TRIGGER_EQP 1008 /* int int* */ #define SQLITE_DBCONFIG_RESET_DATABASE 1009 /* int int* */ #define SQLITE_DBCONFIG_DEFENSIVE 1010 /* int int* */ #define SQLITE_DBCONFIG_WRITABLE_SCHEMA 1011 /* int int* */ #define SQLITE_DBCONFIG_LEGACY_ALTER_TABLE 1012 /* int int* */ #define SQLITE_DBCONFIG_DQS_DML 1013 /* int int* */ #define SQLITE_DBCONFIG_DQS_DDL 1014 /* int int* */ #define SQLITE_DBCONFIG_ENABLE_VIEW 1015 /* int int* */ #define SQLITE_DBCONFIG_LEGACY_FILE_FORMAT 1016 /* int int* */ #define SQLITE_DBCONFIG_TRUSTED_SCHEMA 1017 /* int int* */ #define SQLITE_DBCONFIG_MAX 1017 /* Largest DBCONFIG */ /* ** CAPI3REF: Enable Or Disable Extended Result Codes ** METHOD: sqlite3 ** ** ^The sqlite3_extended_result_codes() routine enables or disables the ** [extended result codes] feature of SQLite. ^The extended result ** codes are disabled by default for historical compatibility. */ SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff); /* ** CAPI3REF: Last Insert Rowid ** METHOD: sqlite3 ** ** ^Each entry in most SQLite tables (except for [WITHOUT ROWID] tables) ** has a unique 64-bit signed ** integer key called the [ROWID | "rowid"]. ^The rowid is always available ** as an undeclared column named ROWID, OID, or _ROWID_ as long as those ** names are not also used by explicitly declared columns. ^If ** the table has a column of type [INTEGER PRIMARY KEY] then that column ** is another alias for the rowid. ** ** ^The sqlite3_last_insert_rowid(D) interface usually returns the [rowid] of ** the most recent successful [INSERT] into a rowid table or [virtual table] ** on database connection D. ^Inserts into [WITHOUT ROWID] tables are not ** recorded. ^If no successful [INSERT]s into rowid tables have ever occurred ** on the database connection D, then sqlite3_last_insert_rowid(D) returns ** zero. ** ** As well as being set automatically as rows are inserted into database ** tables, the value returned by this function may be set explicitly by ** [sqlite3_set_last_insert_rowid()] ** ** Some virtual table implementations may INSERT rows into rowid tables as ** part of committing a transaction (e.g. to flush data accumulated in memory ** to disk). In this case subsequent calls to this function return the rowid ** associated with these internal INSERT operations, which leads to ** unintuitive results. Virtual table implementations that do write to rowid ** tables in this way can avoid this problem by restoring the original ** rowid value using [sqlite3_set_last_insert_rowid()] before returning ** control to the user. ** ** ^(If an [INSERT] occurs within a trigger then this routine will ** return the [rowid] of the inserted row as long as the trigger is ** running. Once the trigger program ends, the value returned ** by this routine reverts to what it was before the trigger was fired.)^ ** ** ^An [INSERT] that fails due to a constraint violation is not a ** successful [INSERT] and does not change the value returned by this ** routine. ^Thus INSERT OR FAIL, INSERT OR IGNORE, INSERT OR ROLLBACK, ** and INSERT OR ABORT make no changes to the return value of this ** routine when their insertion fails. ^(When INSERT OR REPLACE ** encounters a constraint violation, it does not fail. The ** INSERT continues to completion after deleting rows that caused ** the constraint problem so INSERT OR REPLACE will always change ** the return value of this interface.)^ ** ** ^For the purposes of this routine, an [INSERT] is considered to ** be successful even if it is subsequently rolled back. ** ** This function is accessible to SQL statements via the ** [last_insert_rowid() SQL function]. ** ** If a separate thread performs a new [INSERT] on the same ** database connection while the [sqlite3_last_insert_rowid()] ** function is running and thus changes the last insert [rowid], ** then the value returned by [sqlite3_last_insert_rowid()] is ** unpredictable and might not equal either the old or the new ** last insert [rowid]. */ SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*); /* ** CAPI3REF: Set the Last Insert Rowid value. ** METHOD: sqlite3 ** ** The sqlite3_set_last_insert_rowid(D, R) method allows the application to ** set the value returned by calling sqlite3_last_insert_rowid(D) to R ** without inserting a row into the database. */ SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3*,sqlite3_int64); /* ** CAPI3REF: Count The Number Of Rows Modified ** METHOD: sqlite3 ** ** ^This function returns the number of rows modified, inserted or ** deleted by the most recently completed INSERT, UPDATE or DELETE ** statement on the database connection specified by the only parameter. ** ^Executing any other type of SQL statement does not modify the value ** returned by this function. ** ** ^Only changes made directly by the INSERT, UPDATE or DELETE statement are ** considered - auxiliary changes caused by [CREATE TRIGGER | triggers], ** [foreign key actions] or [REPLACE] constraint resolution are not counted. ** ** Changes to a view that are intercepted by ** [INSTEAD OF trigger | INSTEAD OF triggers] are not counted. ^The value ** returned by sqlite3_changes() immediately after an INSERT, UPDATE or ** DELETE statement run on a view is always zero. Only changes made to real ** tables are counted. ** ** Things are more complicated if the sqlite3_changes() function is ** executed while a trigger program is running. This may happen if the ** program uses the [changes() SQL function], or if some other callback ** function invokes sqlite3_changes() directly. Essentially: ** **
    **
  • ^(Before entering a trigger program the value returned by ** sqlite3_changes() function is saved. After the trigger program ** has finished, the original value is restored.)^ ** **
  • ^(Within a trigger program each INSERT, UPDATE and DELETE ** statement sets the value returned by sqlite3_changes() ** upon completion as normal. Of course, this value will not include ** any changes performed by sub-triggers, as the sqlite3_changes() ** value will be saved and restored after each sub-trigger has run.)^ **
** ** ^This means that if the changes() SQL function (or similar) is used ** by the first INSERT, UPDATE or DELETE statement within a trigger, it ** returns the value as set when the calling statement began executing. ** ^If it is used by the second or subsequent such statement within a trigger ** program, the value returned reflects the number of rows modified by the ** previous INSERT, UPDATE or DELETE statement within the same trigger. ** ** If a separate thread makes changes on the same database connection ** while [sqlite3_changes()] is running then the value returned ** is unpredictable and not meaningful. ** ** See also: **
    **
  • the [sqlite3_total_changes()] interface **
  • the [count_changes pragma] **
  • the [changes() SQL function] **
  • the [data_version pragma] **
*/ SQLITE_API int sqlite3_changes(sqlite3*); /* ** CAPI3REF: Total Number Of Rows Modified ** METHOD: sqlite3 ** ** ^This function returns the total number of rows inserted, modified or ** deleted by all [INSERT], [UPDATE] or [DELETE] statements completed ** since the database connection was opened, including those executed as ** part of trigger programs. ^Executing any other type of SQL statement ** does not affect the value returned by sqlite3_total_changes(). ** ** ^Changes made as part of [foreign key actions] are included in the ** count, but those made as part of REPLACE constraint resolution are ** not. ^Changes to a view that are intercepted by INSTEAD OF triggers ** are not counted. ** ** The [sqlite3_total_changes(D)] interface only reports the number ** of rows that changed due to SQL statement run against database ** connection D. Any changes by other database connections are ignored. ** To detect changes against a database file from other database ** connections use the [PRAGMA data_version] command or the ** [SQLITE_FCNTL_DATA_VERSION] [file control]. ** ** If a separate thread makes changes on the same database connection ** while [sqlite3_total_changes()] is running then the value ** returned is unpredictable and not meaningful. ** ** See also: **
    **
  • the [sqlite3_changes()] interface **
  • the [count_changes pragma] **
  • the [changes() SQL function] **
  • the [data_version pragma] **
  • the [SQLITE_FCNTL_DATA_VERSION] [file control] **
*/ SQLITE_API int sqlite3_total_changes(sqlite3*); /* ** CAPI3REF: Interrupt A Long-Running Query ** METHOD: sqlite3 ** ** ^This function causes any pending database operation to abort and ** return at its earliest opportunity. This routine is typically ** called in response to a user action such as pressing "Cancel" ** or Ctrl-C where the user wants a long query operation to halt ** immediately. ** ** ^It is safe to call this routine from a thread different from the ** thread that is currently running the database operation. But it ** is not safe to call this routine with a [database connection] that ** is closed or might close before sqlite3_interrupt() returns. ** ** ^If an SQL operation is very nearly finished at the time when ** sqlite3_interrupt() is called, then it might not have an opportunity ** to be interrupted and might continue to completion. ** ** ^An SQL operation that is interrupted will return [SQLITE_INTERRUPT]. ** ^If the interrupted SQL operation is an INSERT, UPDATE, or DELETE ** that is inside an explicit transaction, then the entire transaction ** will be rolled back automatically. ** ** ^The sqlite3_interrupt(D) call is in effect until all currently running ** SQL statements on [database connection] D complete. ^Any new SQL statements ** that are started after the sqlite3_interrupt() call and before the ** running statement count reaches zero are interrupted as if they had been ** running prior to the sqlite3_interrupt() call. ^New SQL statements ** that are started after the running statement count reaches zero are ** not effected by the sqlite3_interrupt(). ** ^A call to sqlite3_interrupt(D) that occurs when there are no running ** SQL statements is a no-op and has no effect on SQL statements ** that are started after the sqlite3_interrupt() call returns. */ SQLITE_API void sqlite3_interrupt(sqlite3*); /* ** CAPI3REF: Determine If An SQL Statement Is Complete ** ** These routines are useful during command-line input to determine if the ** currently entered text seems to form a complete SQL statement or ** if additional input is needed before sending the text into ** SQLite for parsing. ^These routines return 1 if the input string ** appears to be a complete SQL statement. ^A statement is judged to be ** complete if it ends with a semicolon token and is not a prefix of a ** well-formed CREATE TRIGGER statement. ^Semicolons that are embedded within ** string literals or quoted identifier names or comments are not ** independent tokens (they are part of the token in which they are ** embedded) and thus do not count as a statement terminator. ^Whitespace ** and comments that follow the final semicolon are ignored. ** ** ^These routines return 0 if the statement is incomplete. ^If a ** memory allocation fails, then SQLITE_NOMEM is returned. ** ** ^These routines do not parse the SQL statements thus ** will not detect syntactically incorrect SQL. ** ** ^(If SQLite has not been initialized using [sqlite3_initialize()] prior ** to invoking sqlite3_complete16() then sqlite3_initialize() is invoked ** automatically by sqlite3_complete16(). If that initialization fails, ** then the return value from sqlite3_complete16() will be non-zero ** regardless of whether or not the input SQL is complete.)^ ** ** The input to [sqlite3_complete()] must be a zero-terminated ** UTF-8 string. ** ** The input to [sqlite3_complete16()] must be a zero-terminated ** UTF-16 string in native byte order. */ SQLITE_API int sqlite3_complete(const char *sql); SQLITE_API int sqlite3_complete16(const void *sql); /* ** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors ** KEYWORDS: {busy-handler callback} {busy handler} ** METHOD: sqlite3 ** ** ^The sqlite3_busy_handler(D,X,P) routine sets a callback function X ** that might be invoked with argument P whenever ** an attempt is made to access a database table associated with ** [database connection] D when another thread ** or process has the table locked. ** The sqlite3_busy_handler() interface is used to implement ** [sqlite3_busy_timeout()] and [PRAGMA busy_timeout]. ** ** ^If the busy callback is NULL, then [SQLITE_BUSY] ** is returned immediately upon encountering the lock. ^If the busy callback ** is not NULL, then the callback might be invoked with two arguments. ** ** ^The first argument to the busy handler is a copy of the void* pointer which ** is the third argument to sqlite3_busy_handler(). ^The second argument to ** the busy handler callback is the number of times that the busy handler has ** been invoked previously for the same locking event. ^If the ** busy callback returns 0, then no additional attempts are made to ** access the database and [SQLITE_BUSY] is returned ** to the application. ** ^If the callback returns non-zero, then another attempt ** is made to access the database and the cycle repeats. ** ** The presence of a busy handler does not guarantee that it will be invoked ** when there is lock contention. ^If SQLite determines that invoking the busy ** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY] ** to the application instead of invoking the ** busy handler. ** Consider a scenario where one process is holding a read lock that ** it is trying to promote to a reserved lock and ** a second process is holding a reserved lock that it is trying ** to promote to an exclusive lock. The first process cannot proceed ** because it is blocked by the second and the second process cannot ** proceed because it is blocked by the first. If both processes ** invoke the busy handlers, neither will make any progress. Therefore, ** SQLite returns [SQLITE_BUSY] for the first process, hoping that this ** will induce the first process to release its read lock and allow ** the second process to proceed. ** ** ^The default busy callback is NULL. ** ** ^(There can only be a single busy handler defined for each ** [database connection]. Setting a new busy handler clears any ** previously set handler.)^ ^Note that calling [sqlite3_busy_timeout()] ** or evaluating [PRAGMA busy_timeout=N] will change the ** busy handler and thus clear any previously set busy handler. ** ** The busy callback should not take any actions which modify the ** database connection that invoked the busy handler. In other words, ** the busy handler is not reentrant. Any such actions ** result in undefined behavior. ** ** A busy handler must not close the database connection ** or [prepared statement] that invoked the busy handler. */ SQLITE_API int sqlite3_busy_handler(sqlite3*,int(*)(void*,int),void*); /* ** CAPI3REF: Set A Busy Timeout ** METHOD: sqlite3 ** ** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps ** for a specified amount of time when a table is locked. ^The handler ** will sleep multiple times until at least "ms" milliseconds of sleeping ** have accumulated. ^After at least "ms" milliseconds of sleeping, ** the handler returns 0 which causes [sqlite3_step()] to return ** [SQLITE_BUSY]. ** ** ^Calling this routine with an argument less than or equal to zero ** turns off all busy handlers. ** ** ^(There can only be a single busy handler for a particular ** [database connection] at any given moment. If another busy handler ** was defined (using [sqlite3_busy_handler()]) prior to calling ** this routine, that other busy handler is cleared.)^ ** ** See also: [PRAGMA busy_timeout] */ SQLITE_API int sqlite3_busy_timeout(sqlite3*, int ms); /* ** CAPI3REF: Convenience Routines For Running Queries ** METHOD: sqlite3 ** ** This is a legacy interface that is preserved for backwards compatibility. ** Use of this interface is not recommended. ** ** Definition: A result table is memory data structure created by the ** [sqlite3_get_table()] interface. A result table records the ** complete query results from one or more queries. ** ** The table conceptually has a number of rows and columns. But ** these numbers are not part of the result table itself. These ** numbers are obtained separately. Let N be the number of rows ** and M be the number of columns. ** ** A result table is an array of pointers to zero-terminated UTF-8 strings. ** There are (N+1)*M elements in the array. The first M pointers point ** to zero-terminated strings that contain the names of the columns. ** The remaining entries all point to query results. NULL values result ** in NULL pointers. All other values are in their UTF-8 zero-terminated ** string representation as returned by [sqlite3_column_text()]. ** ** A result table might consist of one or more memory allocations. ** It is not safe to pass a result table directly to [sqlite3_free()]. ** A result table should be deallocated using [sqlite3_free_table()]. ** ** ^(As an example of the result table format, suppose a query result ** is as follows: ** **
**        Name        | Age
**        -----------------------
**        Alice       | 43
**        Bob         | 28
**        Cindy       | 21
** 
** ** There are two columns (M==2) and three rows (N==3). Thus the ** result table has 8 entries. Suppose the result table is stored ** in an array named azResult. Then azResult holds this content: ** **
**        azResult[0] = "Name";
**        azResult[1] = "Age";
**        azResult[2] = "Alice";
**        azResult[3] = "43";
**        azResult[4] = "Bob";
**        azResult[5] = "28";
**        azResult[6] = "Cindy";
**        azResult[7] = "21";
** 
)^ ** ** ^The sqlite3_get_table() function evaluates one or more ** semicolon-separated SQL statements in the zero-terminated UTF-8 ** string of its 2nd parameter and returns a result table to the ** pointer given in its 3rd parameter. ** ** After the application has finished with the result from sqlite3_get_table(), ** it must pass the result table pointer to sqlite3_free_table() in order to ** release the memory that was malloced. Because of the way the ** [sqlite3_malloc()] happens within sqlite3_get_table(), the calling ** function must not try to call [sqlite3_free()] directly. Only ** [sqlite3_free_table()] is able to release the memory properly and safely. ** ** The sqlite3_get_table() interface is implemented as a wrapper around ** [sqlite3_exec()]. The sqlite3_get_table() routine does not have access ** to any internal data structures of SQLite. It uses only the public ** interface defined here. As a consequence, errors that occur in the ** wrapper layer outside of the internal [sqlite3_exec()] call are not ** reflected in subsequent calls to [sqlite3_errcode()] or ** [sqlite3_errmsg()]. */ SQLITE_API int sqlite3_get_table( sqlite3 *db, /* An open database */ const char *zSql, /* SQL to be evaluated */ char ***pazResult, /* Results of the query */ int *pnRow, /* Number of result rows written here */ int *pnColumn, /* Number of result columns written here */ char **pzErrmsg /* Error msg written here */ ); SQLITE_API void sqlite3_free_table(char **result); /* ** CAPI3REF: Formatted String Printing Functions ** ** These routines are work-alikes of the "printf()" family of functions ** from the standard C library. ** These routines understand most of the common formatting options from ** the standard library printf() ** plus some additional non-standard formats ([%q], [%Q], [%w], and [%z]). ** See the [built-in printf()] documentation for details. ** ** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their ** results into memory obtained from [sqlite3_malloc64()]. ** The strings returned by these two routines should be ** released by [sqlite3_free()]. ^Both routines return a ** NULL pointer if [sqlite3_malloc64()] is unable to allocate enough ** memory to hold the resulting string. ** ** ^(The sqlite3_snprintf() routine is similar to "snprintf()" from ** the standard C library. The result is written into the ** buffer supplied as the second parameter whose size is given by ** the first parameter. Note that the order of the ** first two parameters is reversed from snprintf().)^ This is an ** historical accident that cannot be fixed without breaking ** backwards compatibility. ^(Note also that sqlite3_snprintf() ** returns a pointer to its buffer instead of the number of ** characters actually written into the buffer.)^ We admit that ** the number of characters written would be a more useful return ** value but we cannot change the implementation of sqlite3_snprintf() ** now without breaking compatibility. ** ** ^As long as the buffer size is greater than zero, sqlite3_snprintf() ** guarantees that the buffer is always zero-terminated. ^The first ** parameter "n" is the total size of the buffer, including space for ** the zero terminator. So the longest string that can be completely ** written will be n-1 characters. ** ** ^The sqlite3_vsnprintf() routine is a varargs version of sqlite3_snprintf(). ** ** See also: [built-in printf()], [printf() SQL function] */ SQLITE_API char *sqlite3_mprintf(const char*,...); SQLITE_API char *sqlite3_vmprintf(const char*, va_list); SQLITE_API char *sqlite3_snprintf(int,char*,const char*, ...); SQLITE_API char *sqlite3_vsnprintf(int,char*,const char*, va_list); /* ** CAPI3REF: Memory Allocation Subsystem ** ** The SQLite core uses these three routines for all of its own ** internal memory allocation needs. "Core" in the previous sentence ** does not include operating-system specific [VFS] implementation. The ** Windows VFS uses native malloc() and free() for some operations. ** ** ^The sqlite3_malloc() routine returns a pointer to a block ** of memory at least N bytes in length, where N is the parameter. ** ^If sqlite3_malloc() is unable to obtain sufficient free ** memory, it returns a NULL pointer. ^If the parameter N to ** sqlite3_malloc() is zero or negative then sqlite3_malloc() returns ** a NULL pointer. ** ** ^The sqlite3_malloc64(N) routine works just like ** sqlite3_malloc(N) except that N is an unsigned 64-bit integer instead ** of a signed 32-bit integer. ** ** ^Calling sqlite3_free() with a pointer previously returned ** by sqlite3_malloc() or sqlite3_realloc() releases that memory so ** that it might be reused. ^The sqlite3_free() routine is ** a no-op if is called with a NULL pointer. Passing a NULL pointer ** to sqlite3_free() is harmless. After being freed, memory ** should neither be read nor written. Even reading previously freed ** memory might result in a segmentation fault or other severe error. ** Memory corruption, a segmentation fault, or other severe error ** might result if sqlite3_free() is called with a non-NULL pointer that ** was not obtained from sqlite3_malloc() or sqlite3_realloc(). ** ** ^The sqlite3_realloc(X,N) interface attempts to resize a ** prior memory allocation X to be at least N bytes. ** ^If the X parameter to sqlite3_realloc(X,N) ** is a NULL pointer then its behavior is identical to calling ** sqlite3_malloc(N). ** ^If the N parameter to sqlite3_realloc(X,N) is zero or ** negative then the behavior is exactly the same as calling ** sqlite3_free(X). ** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation ** of at least N bytes in size or NULL if insufficient memory is available. ** ^If M is the size of the prior allocation, then min(N,M) bytes ** of the prior allocation are copied into the beginning of buffer returned ** by sqlite3_realloc(X,N) and the prior allocation is freed. ** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the ** prior allocation is not freed. ** ** ^The sqlite3_realloc64(X,N) interfaces works the same as ** sqlite3_realloc(X,N) except that N is a 64-bit unsigned integer instead ** of a 32-bit signed integer. ** ** ^If X is a memory allocation previously obtained from sqlite3_malloc(), ** sqlite3_malloc64(), sqlite3_realloc(), or sqlite3_realloc64(), then ** sqlite3_msize(X) returns the size of that memory allocation in bytes. ** ^The value returned by sqlite3_msize(X) might be larger than the number ** of bytes requested when X was allocated. ^If X is a NULL pointer then ** sqlite3_msize(X) returns zero. If X points to something that is not ** the beginning of memory allocation, or if it points to a formerly ** valid memory allocation that has now been freed, then the behavior ** of sqlite3_msize(X) is undefined and possibly harmful. ** ** ^The memory returned by sqlite3_malloc(), sqlite3_realloc(), ** sqlite3_malloc64(), and sqlite3_realloc64() ** is always aligned to at least an 8 byte boundary, or to a ** 4 byte boundary if the [SQLITE_4_BYTE_ALIGNED_MALLOC] compile-time ** option is used. ** ** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()] ** must be either NULL or else pointers obtained from a prior ** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have ** not yet been released. ** ** The application must not read or write any part of ** a block of memory after it has been released using ** [sqlite3_free()] or [sqlite3_realloc()]. */ SQLITE_API void *sqlite3_malloc(int); SQLITE_API void *sqlite3_malloc64(sqlite3_uint64); SQLITE_API void *sqlite3_realloc(void*, int); SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64); SQLITE_API void sqlite3_free(void*); SQLITE_API sqlite3_uint64 sqlite3_msize(void*); /* ** CAPI3REF: Memory Allocator Statistics ** ** SQLite provides these two interfaces for reporting on the status ** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()] ** routines, which form the built-in memory allocation subsystem. ** ** ^The [sqlite3_memory_used()] routine returns the number of bytes ** of memory currently outstanding (malloced but not freed). ** ^The [sqlite3_memory_highwater()] routine returns the maximum ** value of [sqlite3_memory_used()] since the high-water mark ** was last reset. ^The values returned by [sqlite3_memory_used()] and ** [sqlite3_memory_highwater()] include any overhead ** added by SQLite in its implementation of [sqlite3_malloc()], ** but not overhead added by the any underlying system library ** routines that [sqlite3_malloc()] may call. ** ** ^The memory high-water mark is reset to the current value of ** [sqlite3_memory_used()] if and only if the parameter to ** [sqlite3_memory_highwater()] is true. ^The value returned ** by [sqlite3_memory_highwater(1)] is the high-water mark ** prior to the reset. */ SQLITE_API sqlite3_int64 sqlite3_memory_used(void); SQLITE_API sqlite3_int64 sqlite3_memory_highwater(int resetFlag); /* ** CAPI3REF: Pseudo-Random Number Generator ** ** SQLite contains a high-quality pseudo-random number generator (PRNG) used to ** select random [ROWID | ROWIDs] when inserting new records into a table that ** already uses the largest possible [ROWID]. The PRNG is also used for ** the built-in random() and randomblob() SQL functions. This interface allows ** applications to access the same PRNG for other purposes. ** ** ^A call to this routine stores N bytes of randomness into buffer P. ** ^The P parameter can be a NULL pointer. ** ** ^If this routine has not been previously called or if the previous ** call had N less than one or a NULL pointer for P, then the PRNG is ** seeded using randomness obtained from the xRandomness method of ** the default [sqlite3_vfs] object. ** ^If the previous call to this routine had an N of 1 or more and a ** non-NULL P then the pseudo-randomness is generated ** internally and without recourse to the [sqlite3_vfs] xRandomness ** method. */ SQLITE_API void sqlite3_randomness(int N, void *P); /* ** CAPI3REF: Compile-Time Authorization Callbacks ** METHOD: sqlite3 ** KEYWORDS: {authorizer callback} ** ** ^This routine registers an authorizer callback with a particular ** [database connection], supplied in the first argument. ** ^The authorizer callback is invoked as SQL statements are being compiled ** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()], ** [sqlite3_prepare_v3()], [sqlite3_prepare16()], [sqlite3_prepare16_v2()], ** and [sqlite3_prepare16_v3()]. ^At various ** points during the compilation process, as logic is being created ** to perform various actions, the authorizer callback is invoked to ** see if those actions are allowed. ^The authorizer callback should ** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the ** specific action but allow the SQL statement to continue to be ** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be ** rejected with an error. ^If the authorizer callback returns ** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY] ** then the [sqlite3_prepare_v2()] or equivalent call that triggered ** the authorizer will fail with an error message. ** ** When the callback returns [SQLITE_OK], that means the operation ** requested is ok. ^When the callback returns [SQLITE_DENY], the ** [sqlite3_prepare_v2()] or equivalent call that triggered the ** authorizer will fail with an error message explaining that ** access is denied. ** ** ^The first parameter to the authorizer callback is a copy of the third ** parameter to the sqlite3_set_authorizer() interface. ^The second parameter ** to the callback is an integer [SQLITE_COPY | action code] that specifies ** the particular action to be authorized. ^The third through sixth parameters ** to the callback are either NULL pointers or zero-terminated strings ** that contain additional details about the action to be authorized. ** Applications must always be prepared to encounter a NULL pointer in any ** of the third through the sixth parameters of the authorization callback. ** ** ^If the action code is [SQLITE_READ] ** and the callback returns [SQLITE_IGNORE] then the ** [prepared statement] statement is constructed to substitute ** a NULL value in place of the table column that would have ** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE] ** return can be used to deny an untrusted user access to individual ** columns of a table. ** ^When a table is referenced by a [SELECT] but no column values are ** extracted from that table (for example in a query like ** "SELECT count(*) FROM tab") then the [SQLITE_READ] authorizer callback ** is invoked once for that table with a column name that is an empty string. ** ^If the action code is [SQLITE_DELETE] and the callback returns ** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the ** [truncate optimization] is disabled and all rows are deleted individually. ** ** An authorizer is used when [sqlite3_prepare | preparing] ** SQL statements from an untrusted source, to ensure that the SQL statements ** do not try to access data they are not allowed to see, or that they do not ** try to execute malicious statements that damage the database. For ** example, an application may allow a user to enter arbitrary ** SQL queries for evaluation by a database. But the application does ** not want the user to be able to make arbitrary changes to the ** database. An authorizer could then be put in place while the ** user-entered SQL is being [sqlite3_prepare | prepared] that ** disallows everything except [SELECT] statements. ** ** Applications that need to process SQL from untrusted sources ** might also consider lowering resource limits using [sqlite3_limit()] ** and limiting database size using the [max_page_count] [PRAGMA] ** in addition to using an authorizer. ** ** ^(Only a single authorizer can be in place on a database connection ** at a time. Each call to sqlite3_set_authorizer overrides the ** previous call.)^ ^Disable the authorizer by installing a NULL callback. ** The authorizer is disabled by default. ** ** The authorizer callback must not do anything that will modify ** the database connection that invoked the authorizer callback. ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their ** database connections for the meaning of "modify" in this paragraph. ** ** ^When [sqlite3_prepare_v2()] is used to prepare a statement, the ** statement might be re-prepared during [sqlite3_step()] due to a ** schema change. Hence, the application should ensure that the ** correct authorizer callback remains in place during the [sqlite3_step()]. ** ** ^Note that the authorizer callback is invoked only during ** [sqlite3_prepare()] or its variants. Authorization is not ** performed during statement evaluation in [sqlite3_step()], unless ** as stated in the previous paragraph, sqlite3_step() invokes ** sqlite3_prepare_v2() to reprepare a statement after a schema change. */ SQLITE_API int sqlite3_set_authorizer( sqlite3*, int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), void *pUserData ); /* ** CAPI3REF: Authorizer Return Codes ** ** The [sqlite3_set_authorizer | authorizer callback function] must ** return either [SQLITE_OK] or one of these two constants in order ** to signal SQLite whether or not the action is permitted. See the ** [sqlite3_set_authorizer | authorizer documentation] for additional ** information. ** ** Note that SQLITE_IGNORE is also used as a [conflict resolution mode] ** returned from the [sqlite3_vtab_on_conflict()] interface. */ #define SQLITE_DENY 1 /* Abort the SQL statement with an error */ #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ /* ** CAPI3REF: Authorizer Action Codes ** ** The [sqlite3_set_authorizer()] interface registers a callback function ** that is invoked to authorize certain SQL statement actions. The ** second parameter to the callback is an integer code that specifies ** what action is being authorized. These are the integer action codes that ** the authorizer callback may be passed. ** ** These action code values signify what kind of operation is to be ** authorized. The 3rd and 4th parameters to the authorization ** callback function will be parameters or NULL depending on which of these ** codes is used as the second parameter. ^(The 5th parameter to the ** authorizer callback is the name of the database ("main", "temp", ** etc.) if applicable.)^ ^The 6th parameter to the authorizer callback ** is the name of the inner-most trigger or view that is responsible for ** the access attempt or NULL if this access attempt is directly from ** top-level SQL code. */ /******************************************* 3rd ************ 4th ***********/ #define SQLITE_CREATE_INDEX 1 /* Index Name Table Name */ #define SQLITE_CREATE_TABLE 2 /* Table Name NULL */ #define SQLITE_CREATE_TEMP_INDEX 3 /* Index Name Table Name */ #define SQLITE_CREATE_TEMP_TABLE 4 /* Table Name NULL */ #define SQLITE_CREATE_TEMP_TRIGGER 5 /* Trigger Name Table Name */ #define SQLITE_CREATE_TEMP_VIEW 6 /* View Name NULL */ #define SQLITE_CREATE_TRIGGER 7 /* Trigger Name Table Name */ #define SQLITE_CREATE_VIEW 8 /* View Name NULL */ #define SQLITE_DELETE 9 /* Table Name NULL */ #define SQLITE_DROP_INDEX 10 /* Index Name Table Name */ #define SQLITE_DROP_TABLE 11 /* Table Name NULL */ #define SQLITE_DROP_TEMP_INDEX 12 /* Index Name Table Name */ #define SQLITE_DROP_TEMP_TABLE 13 /* Table Name NULL */ #define SQLITE_DROP_TEMP_TRIGGER 14 /* Trigger Name Table Name */ #define SQLITE_DROP_TEMP_VIEW 15 /* View Name NULL */ #define SQLITE_DROP_TRIGGER 16 /* Trigger Name Table Name */ #define SQLITE_DROP_VIEW 17 /* View Name NULL */ #define SQLITE_INSERT 18 /* Table Name NULL */ #define SQLITE_PRAGMA 19 /* Pragma Name 1st arg or NULL */ #define SQLITE_READ 20 /* Table Name Column Name */ #define SQLITE_SELECT 21 /* NULL NULL */ #define SQLITE_TRANSACTION 22 /* Operation NULL */ #define SQLITE_UPDATE 23 /* Table Name Column Name */ #define SQLITE_ATTACH 24 /* Filename NULL */ #define SQLITE_DETACH 25 /* Database Name NULL */ #define SQLITE_ALTER_TABLE 26 /* Database Name Table Name */ #define SQLITE_REINDEX 27 /* Index Name NULL */ #define SQLITE_ANALYZE 28 /* Table Name NULL */ #define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */ #define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */ #define SQLITE_FUNCTION 31 /* NULL Function Name */ #define SQLITE_SAVEPOINT 32 /* Operation Savepoint Name */ #define SQLITE_COPY 0 /* No longer used */ #define SQLITE_RECURSIVE 33 /* NULL NULL */ /* ** CAPI3REF: Tracing And Profiling Functions ** METHOD: sqlite3 ** ** These routines are deprecated. Use the [sqlite3_trace_v2()] interface ** instead of the routines described here. ** ** These routines register callback functions that can be used for ** tracing and profiling the execution of SQL statements. ** ** ^The callback function registered by sqlite3_trace() is invoked at ** various times when an SQL statement is being run by [sqlite3_step()]. ** ^The sqlite3_trace() callback is invoked with a UTF-8 rendering of the ** SQL statement text as the statement first begins executing. ** ^(Additional sqlite3_trace() callbacks might occur ** as each triggered subprogram is entered. The callbacks for triggers ** contain a UTF-8 SQL comment that identifies the trigger.)^ ** ** The [SQLITE_TRACE_SIZE_LIMIT] compile-time option can be used to limit ** the length of [bound parameter] expansion in the output of sqlite3_trace(). ** ** ^The callback function registered by sqlite3_profile() is invoked ** as each SQL statement finishes. ^The profile callback contains ** the original statement text and an estimate of wall-clock time ** of how long that statement took to run. ^The profile callback ** time is in units of nanoseconds, however the current implementation ** is only capable of millisecond resolution so the six least significant ** digits in the time are meaningless. Future versions of SQLite ** might provide greater resolution on the profiler callback. Invoking ** either [sqlite3_trace()] or [sqlite3_trace_v2()] will cancel the ** profile callback. */ SQLITE_API SQLITE_DEPRECATED void *sqlite3_trace(sqlite3*, void(*xTrace)(void*,const char*), void*); SQLITE_API SQLITE_DEPRECATED void *sqlite3_profile(sqlite3*, void(*xProfile)(void*,const char*,sqlite3_uint64), void*); /* ** CAPI3REF: SQL Trace Event Codes ** KEYWORDS: SQLITE_TRACE ** ** These constants identify classes of events that can be monitored ** using the [sqlite3_trace_v2()] tracing logic. The M argument ** to [sqlite3_trace_v2(D,M,X,P)] is an OR-ed combination of one or more of ** the following constants. ^The first argument to the trace callback ** is one of the following constants. ** ** New tracing constants may be added in future releases. ** ** ^A trace callback has four arguments: xCallback(T,C,P,X). ** ^The T argument is one of the integer type codes above. ** ^The C argument is a copy of the context pointer passed in as the ** fourth argument to [sqlite3_trace_v2()]. ** The P and X arguments are pointers whose meanings depend on T. ** **
** [[SQLITE_TRACE_STMT]]
SQLITE_TRACE_STMT
**
^An SQLITE_TRACE_STMT callback is invoked when a prepared statement ** first begins running and possibly at other times during the ** execution of the prepared statement, such as at the start of each ** trigger subprogram. ^The P argument is a pointer to the ** [prepared statement]. ^The X argument is a pointer to a string which ** is the unexpanded SQL text of the prepared statement or an SQL comment ** that indicates the invocation of a trigger. ^The callback can compute ** the same text that would have been returned by the legacy [sqlite3_trace()] ** interface by using the X argument when X begins with "--" and invoking ** [sqlite3_expanded_sql(P)] otherwise. ** ** [[SQLITE_TRACE_PROFILE]]
SQLITE_TRACE_PROFILE
**
^An SQLITE_TRACE_PROFILE callback provides approximately the same ** information as is provided by the [sqlite3_profile()] callback. ** ^The P argument is a pointer to the [prepared statement] and the ** X argument points to a 64-bit integer which is the estimated of ** the number of nanosecond that the prepared statement took to run. ** ^The SQLITE_TRACE_PROFILE callback is invoked when the statement finishes. ** ** [[SQLITE_TRACE_ROW]]
SQLITE_TRACE_ROW
**
^An SQLITE_TRACE_ROW callback is invoked whenever a prepared ** statement generates a single row of result. ** ^The P argument is a pointer to the [prepared statement] and the ** X argument is unused. ** ** [[SQLITE_TRACE_CLOSE]]
SQLITE_TRACE_CLOSE
**
^An SQLITE_TRACE_CLOSE callback is invoked when a database ** connection closes. ** ^The P argument is a pointer to the [database connection] object ** and the X argument is unused. **
*/ #define SQLITE_TRACE_STMT 0x01 #define SQLITE_TRACE_PROFILE 0x02 #define SQLITE_TRACE_ROW 0x04 #define SQLITE_TRACE_CLOSE 0x08 /* ** CAPI3REF: SQL Trace Hook ** METHOD: sqlite3 ** ** ^The sqlite3_trace_v2(D,M,X,P) interface registers a trace callback ** function X against [database connection] D, using property mask M ** and context pointer P. ^If the X callback is ** NULL or if the M mask is zero, then tracing is disabled. The ** M argument should be the bitwise OR-ed combination of ** zero or more [SQLITE_TRACE] constants. ** ** ^Each call to either sqlite3_trace() or sqlite3_trace_v2() overrides ** (cancels) any prior calls to sqlite3_trace() or sqlite3_trace_v2(). ** ** ^The X callback is invoked whenever any of the events identified by ** mask M occur. ^The integer return value from the callback is currently ** ignored, though this may change in future releases. Callback ** implementations should return zero to ensure future compatibility. ** ** ^A trace callback is invoked with four arguments: callback(T,C,P,X). ** ^The T argument is one of the [SQLITE_TRACE] ** constants to indicate why the callback was invoked. ** ^The C argument is a copy of the context pointer. ** The P and X arguments are pointers whose meanings depend on T. ** ** The sqlite3_trace_v2() interface is intended to replace the legacy ** interfaces [sqlite3_trace()] and [sqlite3_profile()], both of which ** are deprecated. */ SQLITE_API int sqlite3_trace_v2( sqlite3*, unsigned uMask, int(*xCallback)(unsigned,void*,void*,void*), void *pCtx ); /* ** CAPI3REF: Query Progress Callbacks ** METHOD: sqlite3 ** ** ^The sqlite3_progress_handler(D,N,X,P) interface causes the callback ** function X to be invoked periodically during long running calls to ** [sqlite3_exec()], [sqlite3_step()] and [sqlite3_get_table()] for ** database connection D. An example use for this ** interface is to keep a GUI updated during a large query. ** ** ^The parameter P is passed through as the only parameter to the ** callback function X. ^The parameter N is the approximate number of ** [virtual machine instructions] that are evaluated between successive ** invocations of the callback X. ^If N is less than one then the progress ** handler is disabled. ** ** ^Only a single progress handler may be defined at one time per ** [database connection]; setting a new progress handler cancels the ** old one. ^Setting parameter X to NULL disables the progress handler. ** ^The progress handler is also disabled by setting N to a value less ** than 1. ** ** ^If the progress callback returns non-zero, the operation is ** interrupted. This feature can be used to implement a ** "Cancel" button on a GUI progress dialog box. ** ** The progress handler callback must not do anything that will modify ** the database connection that invoked the progress handler. ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their ** database connections for the meaning of "modify" in this paragraph. ** */ SQLITE_API void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*); /* ** CAPI3REF: Opening A New Database Connection ** CONSTRUCTOR: sqlite3 ** ** ^These routines open an SQLite database file as specified by the ** filename argument. ^The filename argument is interpreted as UTF-8 for ** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte ** order for sqlite3_open16(). ^(A [database connection] handle is usually ** returned in *ppDb, even if an error occurs. The only exception is that ** if SQLite is unable to allocate memory to hold the [sqlite3] object, ** a NULL will be written into *ppDb instead of a pointer to the [sqlite3] ** object.)^ ^(If the database is opened (and/or created) successfully, then ** [SQLITE_OK] is returned. Otherwise an [error code] is returned.)^ ^The ** [sqlite3_errmsg()] or [sqlite3_errmsg16()] routines can be used to obtain ** an English language description of the error following a failure of any ** of the sqlite3_open() routines. ** ** ^The default encoding will be UTF-8 for databases created using ** sqlite3_open() or sqlite3_open_v2(). ^The default encoding for databases ** created using sqlite3_open16() will be UTF-16 in the native byte order. ** ** Whether or not an error occurs when it is opened, resources ** associated with the [database connection] handle should be released by ** passing it to [sqlite3_close()] when it is no longer required. ** ** The sqlite3_open_v2() interface works like sqlite3_open() ** except that it accepts two additional parameters for additional control ** over the new database connection. ^(The flags parameter to ** sqlite3_open_v2() must include, at a minimum, one of the following ** three flag combinations:)^ ** **
** ^(
[SQLITE_OPEN_READONLY]
**
The database is opened in read-only mode. If the database does not ** already exist, an error is returned.
)^ ** ** ^(
[SQLITE_OPEN_READWRITE]
**
The database is opened for reading and writing if possible, or reading ** only if the file is write protected by the operating system. In either ** case the database must already exist, otherwise an error is returned.
)^ ** ** ^(
[SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]
**
The database is opened for reading and writing, and is created if ** it does not already exist. This is the behavior that is always used for ** sqlite3_open() and sqlite3_open16().
)^ **
** ** In addition to the required flags, the following optional flags are ** also supported: ** **
** ^(
[SQLITE_OPEN_URI]
**
The filename can be interpreted as a URI if this flag is set.
)^ ** ** ^(
[SQLITE_OPEN_MEMORY]
**
The database will be opened as an in-memory database. The database ** is named by the "filename" argument for the purposes of cache-sharing, ** if shared cache mode is enabled, but the "filename" is otherwise ignored. **
)^ ** ** ^(
[SQLITE_OPEN_NOMUTEX]
**
The new database connection will use the "multi-thread" ** [threading mode].)^ This means that separate threads are allowed ** to use SQLite at the same time, as long as each thread is using ** a different [database connection]. ** ** ^(
[SQLITE_OPEN_FULLMUTEX]
**
The new database connection will use the "serialized" ** [threading mode].)^ This means the multiple threads can safely ** attempt to use the same database connection at the same time. ** (Mutexes will block any actual concurrency, but in this mode ** there is no harm in trying.) ** ** ^(
[SQLITE_OPEN_SHAREDCACHE]
**
The database is opened [shared cache] enabled, overriding ** the default shared cache setting provided by ** [sqlite3_enable_shared_cache()].)^ ** ** ^(
[SQLITE_OPEN_PRIVATECACHE]
**
The database is opened [shared cache] disabled, overriding ** the default shared cache setting provided by ** [sqlite3_enable_shared_cache()].)^ ** ** [[OPEN_NOFOLLOW]] ^(
[SQLITE_OPEN_NOFOLLOW]
**
The database filename is not allowed to be a symbolic link
**
)^ ** ** If the 3rd parameter to sqlite3_open_v2() is not one of the ** required combinations shown above optionally combined with other ** [SQLITE_OPEN_READONLY | SQLITE_OPEN_* bits] ** then the behavior is undefined. ** ** ^The fourth parameter to sqlite3_open_v2() is the name of the ** [sqlite3_vfs] object that defines the operating system interface that ** the new database connection should use. ^If the fourth parameter is ** a NULL pointer then the default [sqlite3_vfs] object is used. ** ** ^If the filename is ":memory:", then a private, temporary in-memory database ** is created for the connection. ^This in-memory database will vanish when ** the database connection is closed. Future versions of SQLite might ** make use of additional special filenames that begin with the ":" character. ** It is recommended that when a database filename actually does begin with ** a ":" character you should prefix the filename with a pathname such as ** "./" to avoid ambiguity. ** ** ^If the filename is an empty string, then a private, temporary ** on-disk database will be created. ^This private database will be ** automatically deleted as soon as the database connection is closed. ** ** [[URI filenames in sqlite3_open()]]

URI Filenames

** ** ^If [URI filename] interpretation is enabled, and the filename argument ** begins with "file:", then the filename is interpreted as a URI. ^URI ** filename interpretation is enabled if the [SQLITE_OPEN_URI] flag is ** set in the third argument to sqlite3_open_v2(), or if it has ** been enabled globally using the [SQLITE_CONFIG_URI] option with the ** [sqlite3_config()] method or by the [SQLITE_USE_URI] compile-time option. ** URI filename interpretation is turned off ** by default, but future releases of SQLite might enable URI filename ** interpretation by default. See "[URI filenames]" for additional ** information. ** ** URI filenames are parsed according to RFC 3986. ^If the URI contains an ** authority, then it must be either an empty string or the string ** "localhost". ^If the authority is not an empty string or "localhost", an ** error is returned to the caller. ^The fragment component of a URI, if ** present, is ignored. ** ** ^SQLite uses the path component of the URI as the name of the disk file ** which contains the database. ^If the path begins with a '/' character, ** then it is interpreted as an absolute path. ^If the path does not begin ** with a '/' (meaning that the authority section is omitted from the URI) ** then the path is interpreted as a relative path. ** ^(On windows, the first component of an absolute path ** is a drive specification (e.g. "C:").)^ ** ** [[core URI query parameters]] ** The query component of a URI may contain parameters that are interpreted ** either by SQLite itself, or by a [VFS | custom VFS implementation]. ** SQLite and its built-in [VFSes] interpret the ** following query parameters: ** **
    **
  • vfs: ^The "vfs" parameter may be used to specify the name of ** a VFS object that provides the operating system interface that should ** be used to access the database file on disk. ^If this option is set to ** an empty string the default VFS object is used. ^Specifying an unknown ** VFS is an error. ^If sqlite3_open_v2() is used and the vfs option is ** present, then the VFS specified by the option takes precedence over ** the value passed as the fourth parameter to sqlite3_open_v2(). ** **
  • mode: ^(The mode parameter may be set to either "ro", "rw", ** "rwc", or "memory". Attempting to set it to any other value is ** an error)^. ** ^If "ro" is specified, then the database is opened for read-only ** access, just as if the [SQLITE_OPEN_READONLY] flag had been set in the ** third argument to sqlite3_open_v2(). ^If the mode option is set to ** "rw", then the database is opened for read-write (but not create) ** access, as if SQLITE_OPEN_READWRITE (but not SQLITE_OPEN_CREATE) had ** been set. ^Value "rwc" is equivalent to setting both ** SQLITE_OPEN_READWRITE and SQLITE_OPEN_CREATE. ^If the mode option is ** set to "memory" then a pure [in-memory database] that never reads ** or writes from disk is used. ^It is an error to specify a value for ** the mode parameter that is less restrictive than that specified by ** the flags passed in the third parameter to sqlite3_open_v2(). ** **
  • cache: ^The cache parameter may be set to either "shared" or ** "private". ^Setting it to "shared" is equivalent to setting the ** SQLITE_OPEN_SHAREDCACHE bit in the flags argument passed to ** sqlite3_open_v2(). ^Setting the cache parameter to "private" is ** equivalent to setting the SQLITE_OPEN_PRIVATECACHE bit. ** ^If sqlite3_open_v2() is used and the "cache" parameter is present in ** a URI filename, its value overrides any behavior requested by setting ** SQLITE_OPEN_PRIVATECACHE or SQLITE_OPEN_SHAREDCACHE flag. ** **
  • psow: ^The psow parameter indicates whether or not the ** [powersafe overwrite] property does or does not apply to the ** storage media on which the database file resides. ** **
  • nolock: ^The nolock parameter is a boolean query parameter ** which if set disables file locking in rollback journal modes. This ** is useful for accessing a database on a filesystem that does not ** support locking. Caution: Database corruption might result if two ** or more processes write to the same database and any one of those ** processes uses nolock=1. ** **
  • immutable: ^The immutable parameter is a boolean query ** parameter that indicates that the database file is stored on ** read-only media. ^When immutable is set, SQLite assumes that the ** database file cannot be changed, even by a process with higher ** privilege, and so the database is opened read-only and all locking ** and change detection is disabled. Caution: Setting the immutable ** property on a database file that does in fact change can result ** in incorrect query results and/or [SQLITE_CORRUPT] errors. ** See also: [SQLITE_IOCAP_IMMUTABLE]. ** **
** ** ^Specifying an unknown parameter in the query component of a URI is not an ** error. Future versions of SQLite might understand additional query ** parameters. See "[query parameters with special meaning to SQLite]" for ** additional information. ** ** [[URI filename examples]]

URI filename examples

** **
**
URI filenames Results **
file:data.db ** Open the file "data.db" in the current directory. **
file:/home/fred/data.db
** file:///home/fred/data.db
** file://localhost/home/fred/data.db
** Open the database file "/home/fred/data.db". **
file://darkstar/home/fred/data.db ** An error. "darkstar" is not a recognized authority. **
** file:///C:/Documents%20and%20Settings/fred/Desktop/data.db ** Windows only: Open the file "data.db" on fred's desktop on drive ** C:. Note that the %20 escaping in this example is not strictly ** necessary - space characters can be used literally ** in URI filenames. **
file:data.db?mode=ro&cache=private ** Open file "data.db" in the current directory for read-only access. ** Regardless of whether or not shared-cache mode is enabled by ** default, use a private cache. **
file:/home/fred/data.db?vfs=unix-dotfile ** Open file "/home/fred/data.db". Use the special VFS "unix-dotfile" ** that uses dot-files in place of posix advisory locking. **
file:data.db?mode=readonly ** An error. "readonly" is not a valid option for the "mode" parameter. **
** ** ^URI hexadecimal escape sequences (%HH) are supported within the path and ** query components of a URI. A hexadecimal escape sequence consists of a ** percent sign - "%" - followed by exactly two hexadecimal digits ** specifying an octet value. ^Before the path or query components of a ** URI filename are interpreted, they are encoded using UTF-8 and all ** hexadecimal escape sequences replaced by a single byte containing the ** corresponding octet. If this process generates an invalid UTF-8 encoding, ** the results are undefined. ** ** Note to Windows users: The encoding used for the filename argument ** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever ** codepage is currently defined. Filenames containing international ** characters must be converted to UTF-8 prior to passing them into ** sqlite3_open() or sqlite3_open_v2(). ** ** Note to Windows Runtime users: The temporary directory must be set ** prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various ** features that require the use of temporary files may fail. ** ** See also: [sqlite3_temp_directory] */ SQLITE_API int sqlite3_open( const char *filename, /* Database filename (UTF-8) */ sqlite3 **ppDb /* OUT: SQLite db handle */ ); SQLITE_API int sqlite3_open16( const void *filename, /* Database filename (UTF-16) */ sqlite3 **ppDb /* OUT: SQLite db handle */ ); SQLITE_API int sqlite3_open_v2( const char *filename, /* Database filename (UTF-8) */ sqlite3 **ppDb, /* OUT: SQLite db handle */ int flags, /* Flags */ const char *zVfs /* Name of VFS module to use */ ); /* ** CAPI3REF: Obtain Values For URI Parameters ** ** These are utility routines, useful to [VFS|custom VFS implementations], ** that check if a database file was a URI that contained a specific query ** parameter, and if so obtains the value of that query parameter. ** ** The first parameter to these interfaces (hereafter referred to ** as F) must be one of: **
    **
  • A database filename pointer created by the SQLite core and ** passed into the xOpen() method of a VFS implemention, or **
  • A filename obtained from [sqlite3_db_filename()], or **
  • A new filename constructed using [sqlite3_create_filename()]. **
** If the F parameter is not one of the above, then the behavior is ** undefined and probably undesirable. Older versions of SQLite were ** more tolerant of invalid F parameters than newer versions. ** ** If F is a suitable filename (as described in the previous paragraph) ** and if P is the name of the query parameter, then ** sqlite3_uri_parameter(F,P) returns the value of the P ** parameter if it exists or a NULL pointer if P does not appear as a ** query parameter on F. If P is a query parameter of F and it ** has no explicit value, then sqlite3_uri_parameter(F,P) returns ** a pointer to an empty string. ** ** The sqlite3_uri_boolean(F,P,B) routine assumes that P is a boolean ** parameter and returns true (1) or false (0) according to the value ** of P. The sqlite3_uri_boolean(F,P,B) routine returns true (1) if the ** value of query parameter P is one of "yes", "true", or "on" in any ** case or if the value begins with a non-zero number. The ** sqlite3_uri_boolean(F,P,B) routines returns false (0) if the value of ** query parameter P is one of "no", "false", or "off" in any case or ** if the value begins with a numeric zero. If P is not a query ** parameter on F or if the value of P does not match any of the ** above, then sqlite3_uri_boolean(F,P,B) returns (B!=0). ** ** The sqlite3_uri_int64(F,P,D) routine converts the value of P into a ** 64-bit signed integer and returns that integer, or D if P does not ** exist. If the value of P is something other than an integer, then ** zero is returned. ** ** The sqlite3_uri_key(F,N) returns a pointer to the name (not ** the value) of the N-th query parameter for filename F, or a NULL ** pointer if N is less than zero or greater than the number of query ** parameters minus 1. The N value is zero-based so N should be 0 to obtain ** the name of the first query parameter, 1 for the second parameter, and ** so forth. ** ** If F is a NULL pointer, then sqlite3_uri_parameter(F,P) returns NULL and ** sqlite3_uri_boolean(F,P,B) returns B. If F is not a NULL pointer and ** is not a database file pathname pointer that the SQLite core passed ** into the xOpen VFS method, then the behavior of this routine is undefined ** and probably undesirable. ** ** Beginning with SQLite [version 3.31.0] ([dateof:3.31.0]) the input F ** parameter can also be the name of a rollback journal file or WAL file ** in addition to the main database file. Prior to version 3.31.0, these ** routines would only work if F was the name of the main database file. ** When the F parameter is the name of the rollback journal or WAL file, ** it has access to all the same query parameters as were found on the ** main database file. ** ** See the [URI filename] documentation for additional information. */ SQLITE_API const char *sqlite3_uri_parameter(const char *zFilename, const char *zParam); SQLITE_API int sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault); SQLITE_API sqlite3_int64 sqlite3_uri_int64(const char*, const char*, sqlite3_int64); SQLITE_API const char *sqlite3_uri_key(const char *zFilename, int N); /* ** CAPI3REF: Translate filenames ** ** These routines are available to [VFS|custom VFS implementations] for ** translating filenames between the main database file, the journal file, ** and the WAL file. ** ** If F is the name of an sqlite database file, journal file, or WAL file ** passed by the SQLite core into the VFS, then sqlite3_filename_database(F) ** returns the name of the corresponding database file. ** ** If F is the name of an sqlite database file, journal file, or WAL file ** passed by the SQLite core into the VFS, or if F is a database filename ** obtained from [sqlite3_db_filename()], then sqlite3_filename_journal(F) ** returns the name of the corresponding rollback journal file. ** ** If F is the name of an sqlite database file, journal file, or WAL file ** that was passed by the SQLite core into the VFS, or if F is a database ** filename obtained from [sqlite3_db_filename()], then ** sqlite3_filename_wal(F) returns the name of the corresponding ** WAL file. ** ** In all of the above, if F is not the name of a database, journal or WAL ** filename passed into the VFS from the SQLite core and F is not the ** return value from [sqlite3_db_filename()], then the result is ** undefined and is likely a memory access violation. */ SQLITE_API const char *sqlite3_filename_database(const char*); SQLITE_API const char *sqlite3_filename_journal(const char*); SQLITE_API const char *sqlite3_filename_wal(const char*); /* ** CAPI3REF: Database File Corresponding To A Journal ** ** ^If X is the name of a rollback or WAL-mode journal file that is ** passed into the xOpen method of [sqlite3_vfs], then ** sqlite3_database_file_object(X) returns a pointer to the [sqlite3_file] ** object that represents the main database file. ** ** This routine is intended for use in custom [VFS] implementations ** only. It is not a general-purpose interface. ** The argument sqlite3_file_object(X) must be a filename pointer that ** has been passed into [sqlite3_vfs].xOpen method where the ** flags parameter to xOpen contains one of the bits ** [SQLITE_OPEN_MAIN_JOURNAL] or [SQLITE_OPEN_WAL]. Any other use ** of this routine results in undefined and probably undesirable ** behavior. */ SQLITE_API sqlite3_file *sqlite3_database_file_object(const char*); /* ** CAPI3REF: Create and Destroy VFS Filenames ** ** These interfces are provided for use by [VFS shim] implementations and ** are not useful outside of that context. ** ** The sqlite3_create_filename(D,J,W,N,P) allocates memory to hold a version of ** database filename D with corresponding journal file J and WAL file W and ** with N URI parameters key/values pairs in the array P. The result from ** sqlite3_create_filename(D,J,W,N,P) is a pointer to a database filename that ** is safe to pass to routines like: **
    **
  • [sqlite3_uri_parameter()], **
  • [sqlite3_uri_boolean()], **
  • [sqlite3_uri_int64()], **
  • [sqlite3_uri_key()], **
  • [sqlite3_filename_database()], **
  • [sqlite3_filename_journal()], or **
  • [sqlite3_filename_wal()]. **
** If a memory allocation error occurs, sqlite3_create_filename() might ** return a NULL pointer. The memory obtained from sqlite3_create_filename(X) ** must be released by a corresponding call to sqlite3_free_filename(Y). ** ** The P parameter in sqlite3_create_filename(D,J,W,N,P) should be an array ** of 2*N pointers to strings. Each pair of pointers in this array corresponds ** to a key and value for a query parameter. The P parameter may be a NULL ** pointer if N is zero. None of the 2*N pointers in the P array may be ** NULL pointers and key pointers should not be empty strings. ** None of the D, J, or W parameters to sqlite3_create_filename(D,J,W,N,P) may ** be NULL pointers, though they can be empty strings. ** ** The sqlite3_free_filename(Y) routine releases a memory allocation ** previously obtained from sqlite3_create_filename(). Invoking ** sqlite3_free_filename(Y) where Y is a NULL pointer is a harmless no-op. ** ** If the Y parameter to sqlite3_free_filename(Y) is anything other ** than a NULL pointer or a pointer previously acquired from ** sqlite3_create_filename(), then bad things such as heap ** corruption or segfaults may occur. The value Y should be ** used again after sqlite3_free_filename(Y) has been called. This means ** that if the [sqlite3_vfs.xOpen()] method of a VFS has been called using Y, ** then the corresponding [sqlite3_module.xClose() method should also be ** invoked prior to calling sqlite3_free_filename(Y). */ SQLITE_API char *sqlite3_create_filename( const char *zDatabase, const char *zJournal, const char *zWal, int nParam, const char **azParam ); SQLITE_API void sqlite3_free_filename(char*); /* ** CAPI3REF: Error Codes And Messages ** METHOD: sqlite3 ** ** ^If the most recent sqlite3_* API call associated with ** [database connection] D failed, then the sqlite3_errcode(D) interface ** returns the numeric [result code] or [extended result code] for that ** API call. ** ^The sqlite3_extended_errcode() ** interface is the same except that it always returns the ** [extended result code] even when extended result codes are ** disabled. ** ** The values returned by sqlite3_errcode() and/or ** sqlite3_extended_errcode() might change with each API call. ** Except, there are some interfaces that are guaranteed to never ** change the value of the error code. The error-code preserving ** interfaces are: ** **
    **
  • sqlite3_errcode() **
  • sqlite3_extended_errcode() **
  • sqlite3_errmsg() **
  • sqlite3_errmsg16() **
** ** ^The sqlite3_errmsg() and sqlite3_errmsg16() return English-language ** text that describes the error, as either UTF-8 or UTF-16 respectively. ** ^(Memory to hold the error message string is managed internally. ** The application does not need to worry about freeing the result. ** However, the error string might be overwritten or deallocated by ** subsequent calls to other SQLite interface functions.)^ ** ** ^The sqlite3_errstr() interface returns the English-language text ** that describes the [result code], as UTF-8. ** ^(Memory to hold the error message string is managed internally ** and must not be freed by the application)^. ** ** When the serialized [threading mode] is in use, it might be the ** case that a second error occurs on a separate thread in between ** the time of the first error and the call to these interfaces. ** When that happens, the second error will be reported since these ** interfaces always report the most recent result. To avoid ** this, each thread can obtain exclusive use of the [database connection] D ** by invoking [sqlite3_mutex_enter]([sqlite3_db_mutex](D)) before beginning ** to use D and invoking [sqlite3_mutex_leave]([sqlite3_db_mutex](D)) after ** all calls to the interfaces listed here are completed. ** ** If an interface fails with SQLITE_MISUSE, that means the interface ** was invoked incorrectly by the application. In that case, the ** error code and message may or may not be set. */ SQLITE_API int sqlite3_errcode(sqlite3 *db); SQLITE_API int sqlite3_extended_errcode(sqlite3 *db); SQLITE_API const char *sqlite3_errmsg(sqlite3*); SQLITE_API const void *sqlite3_errmsg16(sqlite3*); SQLITE_API const char *sqlite3_errstr(int); /* ** CAPI3REF: Prepared Statement Object ** KEYWORDS: {prepared statement} {prepared statements} ** ** An instance of this object represents a single SQL statement that ** has been compiled into binary form and is ready to be evaluated. ** ** Think of each SQL statement as a separate computer program. The ** original SQL text is source code. A prepared statement object ** is the compiled object code. All SQL must be converted into a ** prepared statement before it can be run. ** ** The life-cycle of a prepared statement object usually goes like this: ** **
    **
  1. Create the prepared statement object using [sqlite3_prepare_v2()]. **
  2. Bind values to [parameters] using the sqlite3_bind_*() ** interfaces. **
  3. Run the SQL by calling [sqlite3_step()] one or more times. **
  4. Reset the prepared statement using [sqlite3_reset()] then go back ** to step 2. Do this zero or more times. **
  5. Destroy the object using [sqlite3_finalize()]. **
*/ typedef struct sqlite3_stmt sqlite3_stmt; /* ** CAPI3REF: Run-time Limits ** METHOD: sqlite3 ** ** ^(This interface allows the size of various constructs to be limited ** on a connection by connection basis. The first parameter is the ** [database connection] whose limit is to be set or queried. The ** second parameter is one of the [limit categories] that define a ** class of constructs to be size limited. The third parameter is the ** new limit for that construct.)^ ** ** ^If the new limit is a negative number, the limit is unchanged. ** ^(For each limit category SQLITE_LIMIT_NAME there is a ** [limits | hard upper bound] ** set at compile-time by a C preprocessor macro called ** [limits | SQLITE_MAX_NAME]. ** (The "_LIMIT_" in the name is changed to "_MAX_".))^ ** ^Attempts to increase a limit above its hard upper bound are ** silently truncated to the hard upper bound. ** ** ^Regardless of whether or not the limit was changed, the ** [sqlite3_limit()] interface returns the prior value of the limit. ** ^Hence, to find the current value of a limit without changing it, ** simply invoke this interface with the third parameter set to -1. ** ** Run-time limits are intended for use in applications that manage ** both their own internal database and also databases that are controlled ** by untrusted external sources. An example application might be a ** web browser that has its own databases for storing history and ** separate databases controlled by JavaScript applications downloaded ** off the Internet. The internal databases can be given the ** large, default limits. Databases managed by external sources can ** be given much smaller limits designed to prevent a denial of service ** attack. Developers might also want to use the [sqlite3_set_authorizer()] ** interface to further control untrusted SQL. The size of the database ** created by an untrusted script can be contained using the ** [max_page_count] [PRAGMA]. ** ** New run-time limit categories may be added in future releases. */ SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal); /* ** CAPI3REF: Run-Time Limit Categories ** KEYWORDS: {limit category} {*limit categories} ** ** These constants define various performance limits ** that can be lowered at run-time using [sqlite3_limit()]. ** The synopsis of the meanings of the various limits is shown below. ** Additional information is available at [limits | Limits in SQLite]. ** **
** [[SQLITE_LIMIT_LENGTH]] ^(
SQLITE_LIMIT_LENGTH
**
The maximum size of any string or BLOB or table row, in bytes.
)^ ** ** [[SQLITE_LIMIT_SQL_LENGTH]] ^(
SQLITE_LIMIT_SQL_LENGTH
**
The maximum length of an SQL statement, in bytes.
)^ ** ** [[SQLITE_LIMIT_COLUMN]] ^(
SQLITE_LIMIT_COLUMN
**
The maximum number of columns in a table definition or in the ** result set of a [SELECT] or the maximum number of columns in an index ** or in an ORDER BY or GROUP BY clause.
)^ ** ** [[SQLITE_LIMIT_EXPR_DEPTH]] ^(
SQLITE_LIMIT_EXPR_DEPTH
**
The maximum depth of the parse tree on any expression.
)^ ** ** [[SQLITE_LIMIT_COMPOUND_SELECT]] ^(
SQLITE_LIMIT_COMPOUND_SELECT
**
The maximum number of terms in a compound SELECT statement.
)^ ** ** [[SQLITE_LIMIT_VDBE_OP]] ^(
SQLITE_LIMIT_VDBE_OP
**
The maximum number of instructions in a virtual machine program ** used to implement an SQL statement. If [sqlite3_prepare_v2()] or ** the equivalent tries to allocate space for more than this many opcodes ** in a single prepared statement, an SQLITE_NOMEM error is returned.
)^ ** ** [[SQLITE_LIMIT_FUNCTION_ARG]] ^(
SQLITE_LIMIT_FUNCTION_ARG
**
The maximum number of arguments on a function.
)^ ** ** [[SQLITE_LIMIT_ATTACHED]] ^(
SQLITE_LIMIT_ATTACHED
**
The maximum number of [ATTACH | attached databases].)^
** ** [[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]] ** ^(
SQLITE_LIMIT_LIKE_PATTERN_LENGTH
**
The maximum length of the pattern argument to the [LIKE] or ** [GLOB] operators.
)^ ** ** [[SQLITE_LIMIT_VARIABLE_NUMBER]] ** ^(
SQLITE_LIMIT_VARIABLE_NUMBER
**
The maximum index number of any [parameter] in an SQL statement.)^ ** ** [[SQLITE_LIMIT_TRIGGER_DEPTH]] ^(
SQLITE_LIMIT_TRIGGER_DEPTH
**
The maximum depth of recursion for triggers.
)^ ** ** [[SQLITE_LIMIT_WORKER_THREADS]] ^(
SQLITE_LIMIT_WORKER_THREADS
**
The maximum number of auxiliary worker threads that a single ** [prepared statement] may start.
)^ **
*/ #define SQLITE_LIMIT_LENGTH 0 #define SQLITE_LIMIT_SQL_LENGTH 1 #define SQLITE_LIMIT_COLUMN 2 #define SQLITE_LIMIT_EXPR_DEPTH 3 #define SQLITE_LIMIT_COMPOUND_SELECT 4 #define SQLITE_LIMIT_VDBE_OP 5 #define SQLITE_LIMIT_FUNCTION_ARG 6 #define SQLITE_LIMIT_ATTACHED 7 #define SQLITE_LIMIT_LIKE_PATTERN_LENGTH 8 #define SQLITE_LIMIT_VARIABLE_NUMBER 9 #define SQLITE_LIMIT_TRIGGER_DEPTH 10 #define SQLITE_LIMIT_WORKER_THREADS 11 /* ** CAPI3REF: Prepare Flags ** ** These constants define various flags that can be passed into ** "prepFlags" parameter of the [sqlite3_prepare_v3()] and ** [sqlite3_prepare16_v3()] interfaces. ** ** New flags may be added in future releases of SQLite. ** **
** [[SQLITE_PREPARE_PERSISTENT]] ^(
SQLITE_PREPARE_PERSISTENT
**
The SQLITE_PREPARE_PERSISTENT flag is a hint to the query planner ** that the prepared statement will be retained for a long time and ** probably reused many times.)^ ^Without this flag, [sqlite3_prepare_v3()] ** and [sqlite3_prepare16_v3()] assume that the prepared statement will ** be used just once or at most a few times and then destroyed using ** [sqlite3_finalize()] relatively soon. The current implementation acts ** on this hint by avoiding the use of [lookaside memory] so as not to ** deplete the limited store of lookaside memory. Future versions of ** SQLite may act on this hint differently. ** ** [[SQLITE_PREPARE_NORMALIZE]]
SQLITE_PREPARE_NORMALIZE
**
The SQLITE_PREPARE_NORMALIZE flag is a no-op. This flag used ** to be required for any prepared statement that wanted to use the ** [sqlite3_normalized_sql()] interface. However, the ** [sqlite3_normalized_sql()] interface is now available to all ** prepared statements, regardless of whether or not they use this ** flag. ** ** [[SQLITE_PREPARE_NO_VTAB]]
SQLITE_PREPARE_NO_VTAB
**
The SQLITE_PREPARE_NO_VTAB flag causes the SQL compiler ** to return an error (error code SQLITE_ERROR) if the statement uses ** any virtual tables. **
*/ #define SQLITE_PREPARE_PERSISTENT 0x01 #define SQLITE_PREPARE_NORMALIZE 0x02 #define SQLITE_PREPARE_NO_VTAB 0x04 /* ** CAPI3REF: Compiling An SQL Statement ** KEYWORDS: {SQL statement compiler} ** METHOD: sqlite3 ** CONSTRUCTOR: sqlite3_stmt ** ** To execute an SQL statement, it must first be compiled into a byte-code ** program using one of these routines. Or, in other words, these routines ** are constructors for the [prepared statement] object. ** ** The preferred routine to use is [sqlite3_prepare_v2()]. The ** [sqlite3_prepare()] interface is legacy and should be avoided. ** [sqlite3_prepare_v3()] has an extra "prepFlags" option that is used ** for special purposes. ** ** The use of the UTF-8 interfaces is preferred, as SQLite currently ** does all parsing using UTF-8. The UTF-16 interfaces are provided ** as a convenience. The UTF-16 interfaces work by converting the ** input text into UTF-8, then invoking the corresponding UTF-8 interface. ** ** The first argument, "db", is a [database connection] obtained from a ** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or ** [sqlite3_open16()]. The database connection must not have been closed. ** ** The second argument, "zSql", is the statement to be compiled, encoded ** as either UTF-8 or UTF-16. The sqlite3_prepare(), sqlite3_prepare_v2(), ** and sqlite3_prepare_v3() ** interfaces use UTF-8, and sqlite3_prepare16(), sqlite3_prepare16_v2(), ** and sqlite3_prepare16_v3() use UTF-16. ** ** ^If the nByte argument is negative, then zSql is read up to the ** first zero terminator. ^If nByte is positive, then it is the ** number of bytes read from zSql. ^If nByte is zero, then no prepared ** statement is generated. ** If the caller knows that the supplied string is nul-terminated, then ** there is a small performance advantage to passing an nByte parameter that ** is the number of bytes in the input string including ** the nul-terminator. ** ** ^If pzTail is not NULL then *pzTail is made to point to the first byte ** past the end of the first SQL statement in zSql. These routines only ** compile the first statement in zSql, so *pzTail is left pointing to ** what remains uncompiled. ** ** ^*ppStmt is left pointing to a compiled [prepared statement] that can be ** executed using [sqlite3_step()]. ^If there is an error, *ppStmt is set ** to NULL. ^If the input text contains no SQL (if the input is an empty ** string or a comment) then *ppStmt is set to NULL. ** The calling procedure is responsible for deleting the compiled ** SQL statement using [sqlite3_finalize()] after it has finished with it. ** ppStmt may not be NULL. ** ** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK]; ** otherwise an [error code] is returned. ** ** The sqlite3_prepare_v2(), sqlite3_prepare_v3(), sqlite3_prepare16_v2(), ** and sqlite3_prepare16_v3() interfaces are recommended for all new programs. ** The older interfaces (sqlite3_prepare() and sqlite3_prepare16()) ** are retained for backwards compatibility, but their use is discouraged. ** ^In the "vX" interfaces, the prepared statement ** that is returned (the [sqlite3_stmt] object) contains a copy of the ** original SQL text. This causes the [sqlite3_step()] interface to ** behave differently in three ways: ** **
    **
  1. ** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it ** always used to do, [sqlite3_step()] will automatically recompile the SQL ** statement and try to run it again. As many as [SQLITE_MAX_SCHEMA_RETRY] ** retries will occur before sqlite3_step() gives up and returns an error. **
  2. ** **
  3. ** ^When an error occurs, [sqlite3_step()] will return one of the detailed ** [error codes] or [extended error codes]. ^The legacy behavior was that ** [sqlite3_step()] would only return a generic [SQLITE_ERROR] result code ** and the application would have to make a second call to [sqlite3_reset()] ** in order to find the underlying cause of the problem. With the "v2" prepare ** interfaces, the underlying reason for the error is returned immediately. **
  4. ** **
  5. ** ^If the specific value bound to a [parameter | host parameter] in the ** WHERE clause might influence the choice of query plan for a statement, ** then the statement will be automatically recompiled, as if there had been ** a schema change, on the first [sqlite3_step()] call following any change ** to the [sqlite3_bind_text | bindings] of that [parameter]. ** ^The specific value of a WHERE-clause [parameter] might influence the ** choice of query plan if the parameter is the left-hand side of a [LIKE] ** or [GLOB] operator or if the parameter is compared to an indexed column ** and the [SQLITE_ENABLE_STAT4] compile-time option is enabled. **
  6. **
** **

^sqlite3_prepare_v3() differs from sqlite3_prepare_v2() only in having ** the extra prepFlags parameter, which is a bit array consisting of zero or ** more of the [SQLITE_PREPARE_PERSISTENT|SQLITE_PREPARE_*] flags. ^The ** sqlite3_prepare_v2() interface works exactly the same as ** sqlite3_prepare_v3() with a zero prepFlags parameter. */ SQLITE_API int sqlite3_prepare( sqlite3 *db, /* Database handle */ const char *zSql, /* SQL statement, UTF-8 encoded */ int nByte, /* Maximum length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const char **pzTail /* OUT: Pointer to unused portion of zSql */ ); SQLITE_API int sqlite3_prepare_v2( sqlite3 *db, /* Database handle */ const char *zSql, /* SQL statement, UTF-8 encoded */ int nByte, /* Maximum length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const char **pzTail /* OUT: Pointer to unused portion of zSql */ ); SQLITE_API int sqlite3_prepare_v3( sqlite3 *db, /* Database handle */ const char *zSql, /* SQL statement, UTF-8 encoded */ int nByte, /* Maximum length of zSql in bytes. */ unsigned int prepFlags, /* Zero or more SQLITE_PREPARE_ flags */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const char **pzTail /* OUT: Pointer to unused portion of zSql */ ); SQLITE_API int sqlite3_prepare16( sqlite3 *db, /* Database handle */ const void *zSql, /* SQL statement, UTF-16 encoded */ int nByte, /* Maximum length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const void **pzTail /* OUT: Pointer to unused portion of zSql */ ); SQLITE_API int sqlite3_prepare16_v2( sqlite3 *db, /* Database handle */ const void *zSql, /* SQL statement, UTF-16 encoded */ int nByte, /* Maximum length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const void **pzTail /* OUT: Pointer to unused portion of zSql */ ); SQLITE_API int sqlite3_prepare16_v3( sqlite3 *db, /* Database handle */ const void *zSql, /* SQL statement, UTF-16 encoded */ int nByte, /* Maximum length of zSql in bytes. */ unsigned int prepFlags, /* Zero or more SQLITE_PREPARE_ flags */ sqlite3_stmt **ppStmt, /* OUT: Statement handle */ const void **pzTail /* OUT: Pointer to unused portion of zSql */ ); /* ** CAPI3REF: Retrieving Statement SQL ** METHOD: sqlite3_stmt ** ** ^The sqlite3_sql(P) interface returns a pointer to a copy of the UTF-8 ** SQL text used to create [prepared statement] P if P was ** created by [sqlite3_prepare_v2()], [sqlite3_prepare_v3()], ** [sqlite3_prepare16_v2()], or [sqlite3_prepare16_v3()]. ** ^The sqlite3_expanded_sql(P) interface returns a pointer to a UTF-8 ** string containing the SQL text of prepared statement P with ** [bound parameters] expanded. ** ^The sqlite3_normalized_sql(P) interface returns a pointer to a UTF-8 ** string containing the normalized SQL text of prepared statement P. The ** semantics used to normalize a SQL statement are unspecified and subject ** to change. At a minimum, literal values will be replaced with suitable ** placeholders. ** ** ^(For example, if a prepared statement is created using the SQL ** text "SELECT $abc,:xyz" and if parameter $abc is bound to integer 2345 ** and parameter :xyz is unbound, then sqlite3_sql() will return ** the original string, "SELECT $abc,:xyz" but sqlite3_expanded_sql() ** will return "SELECT 2345,NULL".)^ ** ** ^The sqlite3_expanded_sql() interface returns NULL if insufficient memory ** is available to hold the result, or if the result would exceed the ** the maximum string length determined by the [SQLITE_LIMIT_LENGTH]. ** ** ^The [SQLITE_TRACE_SIZE_LIMIT] compile-time option limits the size of ** bound parameter expansions. ^The [SQLITE_OMIT_TRACE] compile-time ** option causes sqlite3_expanded_sql() to always return NULL. ** ** ^The strings returned by sqlite3_sql(P) and sqlite3_normalized_sql(P) ** are managed by SQLite and are automatically freed when the prepared ** statement is finalized. ** ^The string returned by sqlite3_expanded_sql(P), on the other hand, ** is obtained from [sqlite3_malloc()] and must be free by the application ** by passing it to [sqlite3_free()]. */ SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt); SQLITE_API char *sqlite3_expanded_sql(sqlite3_stmt *pStmt); SQLITE_API const char *sqlite3_normalized_sql(sqlite3_stmt *pStmt); /* ** CAPI3REF: Determine If An SQL Statement Writes The Database ** METHOD: sqlite3_stmt ** ** ^The sqlite3_stmt_readonly(X) interface returns true (non-zero) if ** and only if the [prepared statement] X makes no direct changes to ** the content of the database file. ** ** Note that [application-defined SQL functions] or ** [virtual tables] might change the database indirectly as a side effect. ** ^(For example, if an application defines a function "eval()" that ** calls [sqlite3_exec()], then the following SQL statement would ** change the database file through side-effects: ** **

**    SELECT eval('DELETE FROM t1') FROM t2;
** 
** ** But because the [SELECT] statement does not change the database file ** directly, sqlite3_stmt_readonly() would still return true.)^ ** ** ^Transaction control statements such as [BEGIN], [COMMIT], [ROLLBACK], ** [SAVEPOINT], and [RELEASE] cause sqlite3_stmt_readonly() to return true, ** since the statements themselves do not actually modify the database but ** rather they control the timing of when other statements modify the ** database. ^The [ATTACH] and [DETACH] statements also cause ** sqlite3_stmt_readonly() to return true since, while those statements ** change the configuration of a database connection, they do not make ** changes to the content of the database files on disk. ** ^The sqlite3_stmt_readonly() interface returns true for [BEGIN] since ** [BEGIN] merely sets internal flags, but the [BEGIN|BEGIN IMMEDIATE] and ** [BEGIN|BEGIN EXCLUSIVE] commands do touch the database and so ** sqlite3_stmt_readonly() returns false for those commands. */ SQLITE_API int sqlite3_stmt_readonly(sqlite3_stmt *pStmt); /* ** CAPI3REF: Query The EXPLAIN Setting For A Prepared Statement ** METHOD: sqlite3_stmt ** ** ^The sqlite3_stmt_isexplain(S) interface returns 1 if the ** prepared statement S is an EXPLAIN statement, or 2 if the ** statement S is an EXPLAIN QUERY PLAN. ** ^The sqlite3_stmt_isexplain(S) interface returns 0 if S is ** an ordinary statement or a NULL pointer. */ SQLITE_API int sqlite3_stmt_isexplain(sqlite3_stmt *pStmt); /* ** CAPI3REF: Determine If A Prepared Statement Has Been Reset ** METHOD: sqlite3_stmt ** ** ^The sqlite3_stmt_busy(S) interface returns true (non-zero) if the ** [prepared statement] S has been stepped at least once using ** [sqlite3_step(S)] but has neither run to completion (returned ** [SQLITE_DONE] from [sqlite3_step(S)]) nor ** been reset using [sqlite3_reset(S)]. ^The sqlite3_stmt_busy(S) ** interface returns false if S is a NULL pointer. If S is not a ** NULL pointer and is not a pointer to a valid [prepared statement] ** object, then the behavior is undefined and probably undesirable. ** ** This interface can be used in combination [sqlite3_next_stmt()] ** to locate all prepared statements associated with a database ** connection that are in need of being reset. This can be used, ** for example, in diagnostic routines to search for prepared ** statements that are holding a transaction open. */ SQLITE_API int sqlite3_stmt_busy(sqlite3_stmt*); /* ** CAPI3REF: Dynamically Typed Value Object ** KEYWORDS: {protected sqlite3_value} {unprotected sqlite3_value} ** ** SQLite uses the sqlite3_value object to represent all values ** that can be stored in a database table. SQLite uses dynamic typing ** for the values it stores. ^Values stored in sqlite3_value objects ** can be integers, floating point values, strings, BLOBs, or NULL. ** ** An sqlite3_value object may be either "protected" or "unprotected". ** Some interfaces require a protected sqlite3_value. Other interfaces ** will accept either a protected or an unprotected sqlite3_value. ** Every interface that accepts sqlite3_value arguments specifies ** whether or not it requires a protected sqlite3_value. The ** [sqlite3_value_dup()] interface can be used to construct a new ** protected sqlite3_value from an unprotected sqlite3_value. ** ** The terms "protected" and "unprotected" refer to whether or not ** a mutex is held. An internal mutex is held for a protected ** sqlite3_value object but no mutex is held for an unprotected ** sqlite3_value object. If SQLite is compiled to be single-threaded ** (with [SQLITE_THREADSAFE=0] and with [sqlite3_threadsafe()] returning 0) ** or if SQLite is run in one of reduced mutex modes ** [SQLITE_CONFIG_SINGLETHREAD] or [SQLITE_CONFIG_MULTITHREAD] ** then there is no distinction between protected and unprotected ** sqlite3_value objects and they can be used interchangeably. However, ** for maximum code portability it is recommended that applications ** still make the distinction between protected and unprotected ** sqlite3_value objects even when not strictly required. ** ** ^The sqlite3_value objects that are passed as parameters into the ** implementation of [application-defined SQL functions] are protected. ** ^The sqlite3_value object returned by ** [sqlite3_column_value()] is unprotected. ** Unprotected sqlite3_value objects may only be used as arguments ** to [sqlite3_result_value()], [sqlite3_bind_value()], and ** [sqlite3_value_dup()]. ** The [sqlite3_value_blob | sqlite3_value_type()] family of ** interfaces require protected sqlite3_value objects. */ typedef struct sqlite3_value sqlite3_value; /* ** CAPI3REF: SQL Function Context Object ** ** The context in which an SQL function executes is stored in an ** sqlite3_context object. ^A pointer to an sqlite3_context object ** is always first parameter to [application-defined SQL functions]. ** The application-defined SQL function implementation will pass this ** pointer through into calls to [sqlite3_result_int | sqlite3_result()], ** [sqlite3_aggregate_context()], [sqlite3_user_data()], ** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()], ** and/or [sqlite3_set_auxdata()]. */ typedef struct sqlite3_context sqlite3_context; /* ** CAPI3REF: Binding Values To Prepared Statements ** KEYWORDS: {host parameter} {host parameters} {host parameter name} ** KEYWORDS: {SQL parameter} {SQL parameters} {parameter binding} ** METHOD: sqlite3_stmt ** ** ^(In the SQL statement text input to [sqlite3_prepare_v2()] and its variants, ** literals may be replaced by a [parameter] that matches one of following ** templates: ** **
    **
  • ? **
  • ?NNN **
  • :VVV **
  • @VVV **
  • $VVV **
** ** In the templates above, NNN represents an integer literal, ** and VVV represents an alphanumeric identifier.)^ ^The values of these ** parameters (also called "host parameter names" or "SQL parameters") ** can be set using the sqlite3_bind_*() routines defined here. ** ** ^The first argument to the sqlite3_bind_*() routines is always ** a pointer to the [sqlite3_stmt] object returned from ** [sqlite3_prepare_v2()] or its variants. ** ** ^The second argument is the index of the SQL parameter to be set. ** ^The leftmost SQL parameter has an index of 1. ^When the same named ** SQL parameter is used more than once, second and subsequent ** occurrences have the same index as the first occurrence. ** ^The index for named parameters can be looked up using the ** [sqlite3_bind_parameter_index()] API if desired. ^The index ** for "?NNN" parameters is the value of NNN. ** ^The NNN value must be between 1 and the [sqlite3_limit()] ** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 32766). ** ** ^The third argument is the value to bind to the parameter. ** ^If the third parameter to sqlite3_bind_text() or sqlite3_bind_text16() ** or sqlite3_bind_blob() is a NULL pointer then the fourth parameter ** is ignored and the end result is the same as sqlite3_bind_null(). ** ^If the third parameter to sqlite3_bind_text() is not NULL, then ** it should be a pointer to well-formed UTF8 text. ** ^If the third parameter to sqlite3_bind_text16() is not NULL, then ** it should be a pointer to well-formed UTF16 text. ** ^If the third parameter to sqlite3_bind_text64() is not NULL, then ** it should be a pointer to a well-formed unicode string that is ** either UTF8 if the sixth parameter is SQLITE_UTF8, or UTF16 ** otherwise. ** ** [[byte-order determination rules]] ^The byte-order of ** UTF16 input text is determined by the byte-order mark (BOM, U+FEFF) ** found in first character, which is removed, or in the absence of a BOM ** the byte order is the native byte order of the host ** machine for sqlite3_bind_text16() or the byte order specified in ** the 6th parameter for sqlite3_bind_text64().)^ ** ^If UTF16 input text contains invalid unicode ** characters, then SQLite might change those invalid characters ** into the unicode replacement character: U+FFFD. ** ** ^(In those routines that have a fourth argument, its value is the ** number of bytes in the parameter. To be clear: the value is the ** number of bytes in the value, not the number of characters.)^ ** ^If the fourth parameter to sqlite3_bind_text() or sqlite3_bind_text16() ** is negative, then the length of the string is ** the number of bytes up to the first zero terminator. ** If the fourth parameter to sqlite3_bind_blob() is negative, then ** the behavior is undefined. ** If a non-negative fourth parameter is provided to sqlite3_bind_text() ** or sqlite3_bind_text16() or sqlite3_bind_text64() then ** that parameter must be the byte offset ** where the NUL terminator would occur assuming the string were NUL ** terminated. If any NUL characters occurs at byte offsets less than ** the value of the fourth parameter then the resulting string value will ** contain embedded NULs. The result of expressions involving strings ** with embedded NULs is undefined. ** ** ^The fifth argument to the BLOB and string binding interfaces ** is a destructor used to dispose of the BLOB or ** string after SQLite has finished with it. ^The destructor is called ** to dispose of the BLOB or string even if the call to the bind API fails, ** except the destructor is not called if the third parameter is a NULL ** pointer or the fourth parameter is negative. ** ^If the fifth argument is ** the special value [SQLITE_STATIC], then SQLite assumes that the ** information is in static, unmanaged space and does not need to be freed. ** ^If the fifth argument has the value [SQLITE_TRANSIENT], then ** SQLite makes its own private copy of the data immediately, before ** the sqlite3_bind_*() routine returns. ** ** ^The sixth argument to sqlite3_bind_text64() must be one of ** [SQLITE_UTF8], [SQLITE_UTF16], [SQLITE_UTF16BE], or [SQLITE_UTF16LE] ** to specify the encoding of the text in the third parameter. If ** the sixth argument to sqlite3_bind_text64() is not one of the ** allowed values shown above, or if the text encoding is different ** from the encoding specified by the sixth parameter, then the behavior ** is undefined. ** ** ^The sqlite3_bind_zeroblob() routine binds a BLOB of length N that ** is filled with zeroes. ^A zeroblob uses a fixed amount of memory ** (just an integer to hold its size) while it is being processed. ** Zeroblobs are intended to serve as placeholders for BLOBs whose ** content is later written using ** [sqlite3_blob_open | incremental BLOB I/O] routines. ** ^A negative value for the zeroblob results in a zero-length BLOB. ** ** ^The sqlite3_bind_pointer(S,I,P,T,D) routine causes the I-th parameter in ** [prepared statement] S to have an SQL value of NULL, but to also be ** associated with the pointer P of type T. ^D is either a NULL pointer or ** a pointer to a destructor function for P. ^SQLite will invoke the ** destructor D with a single argument of P when it is finished using ** P. The T parameter should be a static string, preferably a string ** literal. The sqlite3_bind_pointer() routine is part of the ** [pointer passing interface] added for SQLite 3.20.0. ** ** ^If any of the sqlite3_bind_*() routines are called with a NULL pointer ** for the [prepared statement] or with a prepared statement for which ** [sqlite3_step()] has been called more recently than [sqlite3_reset()], ** then the call will return [SQLITE_MISUSE]. If any sqlite3_bind_() ** routine is passed a [prepared statement] that has been finalized, the ** result is undefined and probably harmful. ** ** ^Bindings are not cleared by the [sqlite3_reset()] routine. ** ^Unbound parameters are interpreted as NULL. ** ** ^The sqlite3_bind_* routines return [SQLITE_OK] on success or an ** [error code] if anything goes wrong. ** ^[SQLITE_TOOBIG] might be returned if the size of a string or BLOB ** exceeds limits imposed by [sqlite3_limit]([SQLITE_LIMIT_LENGTH]) or ** [SQLITE_MAX_LENGTH]. ** ^[SQLITE_RANGE] is returned if the parameter ** index is out of range. ^[SQLITE_NOMEM] is returned if malloc() fails. ** ** See also: [sqlite3_bind_parameter_count()], ** [sqlite3_bind_parameter_name()], and [sqlite3_bind_parameter_index()]. */ SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*)); SQLITE_API int sqlite3_bind_blob64(sqlite3_stmt*, int, const void*, sqlite3_uint64, void(*)(void*)); SQLITE_API int sqlite3_bind_double(sqlite3_stmt*, int, double); SQLITE_API int sqlite3_bind_int(sqlite3_stmt*, int, int); SQLITE_API int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64); SQLITE_API int sqlite3_bind_null(sqlite3_stmt*, int); SQLITE_API int sqlite3_bind_text(sqlite3_stmt*,int,const char*,int,void(*)(void*)); SQLITE_API int sqlite3_bind_text16(sqlite3_stmt*, int, const void*, int, void(*)(void*)); SQLITE_API int sqlite3_bind_text64(sqlite3_stmt*, int, const char*, sqlite3_uint64, void(*)(void*), unsigned char encoding); SQLITE_API int sqlite3_bind_value(sqlite3_stmt*, int, const sqlite3_value*); SQLITE_API int sqlite3_bind_pointer(sqlite3_stmt*, int, void*, const char*,void(*)(void*)); SQLITE_API int sqlite3_bind_zeroblob(sqlite3_stmt*, int, int n); SQLITE_API int sqlite3_bind_zeroblob64(sqlite3_stmt*, int, sqlite3_uint64); /* ** CAPI3REF: Number Of SQL Parameters ** METHOD: sqlite3_stmt ** ** ^This routine can be used to find the number of [SQL parameters] ** in a [prepared statement]. SQL parameters are tokens of the ** form "?", "?NNN", ":AAA", "$AAA", or "@AAA" that serve as ** placeholders for values that are [sqlite3_bind_blob | bound] ** to the parameters at a later time. ** ** ^(This routine actually returns the index of the largest (rightmost) ** parameter. For all forms except ?NNN, this will correspond to the ** number of unique parameters. If parameters of the ?NNN form are used, ** there may be gaps in the list.)^ ** ** See also: [sqlite3_bind_blob|sqlite3_bind()], ** [sqlite3_bind_parameter_name()], and ** [sqlite3_bind_parameter_index()]. */ SQLITE_API int sqlite3_bind_parameter_count(sqlite3_stmt*); /* ** CAPI3REF: Name Of A Host Parameter ** METHOD: sqlite3_stmt ** ** ^The sqlite3_bind_parameter_name(P,N) interface returns ** the name of the N-th [SQL parameter] in the [prepared statement] P. ** ^(SQL parameters of the form "?NNN" or ":AAA" or "@AAA" or "$AAA" ** have a name which is the string "?NNN" or ":AAA" or "@AAA" or "$AAA" ** respectively. ** In other words, the initial ":" or "$" or "@" or "?" ** is included as part of the name.)^ ** ^Parameters of the form "?" without a following integer have no name ** and are referred to as "nameless" or "anonymous parameters". ** ** ^The first host parameter has an index of 1, not 0. ** ** ^If the value N is out of range or if the N-th parameter is ** nameless, then NULL is returned. ^The returned string is ** always in UTF-8 encoding even if the named parameter was ** originally specified as UTF-16 in [sqlite3_prepare16()], ** [sqlite3_prepare16_v2()], or [sqlite3_prepare16_v3()]. ** ** See also: [sqlite3_bind_blob|sqlite3_bind()], ** [sqlite3_bind_parameter_count()], and ** [sqlite3_bind_parameter_index()]. */ SQLITE_API const char *sqlite3_bind_parameter_name(sqlite3_stmt*, int); /* ** CAPI3REF: Index Of A Parameter With A Given Name ** METHOD: sqlite3_stmt ** ** ^Return the index of an SQL parameter given its name. ^The ** index value returned is suitable for use as the second ** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero ** is returned if no matching parameter is found. ^The parameter ** name must be given in UTF-8 even if the original statement ** was prepared from UTF-16 text using [sqlite3_prepare16_v2()] or ** [sqlite3_prepare16_v3()]. ** ** See also: [sqlite3_bind_blob|sqlite3_bind()], ** [sqlite3_bind_parameter_count()], and ** [sqlite3_bind_parameter_name()]. */ SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName); /* ** CAPI3REF: Reset All Bindings On A Prepared Statement ** METHOD: sqlite3_stmt ** ** ^Contrary to the intuition of many, [sqlite3_reset()] does not reset ** the [sqlite3_bind_blob | bindings] on a [prepared statement]. ** ^Use this routine to reset all host parameters to NULL. */ SQLITE_API int sqlite3_clear_bindings(sqlite3_stmt*); /* ** CAPI3REF: Number Of Columns In A Result Set ** METHOD: sqlite3_stmt ** ** ^Return the number of columns in the result set returned by the ** [prepared statement]. ^If this routine returns 0, that means the ** [prepared statement] returns no data (for example an [UPDATE]). ** ^However, just because this routine returns a positive number does not ** mean that one or more rows of data will be returned. ^A SELECT statement ** will always have a positive sqlite3_column_count() but depending on the ** WHERE clause constraints and the table content, it might return no rows. ** ** See also: [sqlite3_data_count()] */ SQLITE_API int sqlite3_column_count(sqlite3_stmt *pStmt); /* ** CAPI3REF: Column Names In A Result Set ** METHOD: sqlite3_stmt ** ** ^These routines return the name assigned to a particular column ** in the result set of a [SELECT] statement. ^The sqlite3_column_name() ** interface returns a pointer to a zero-terminated UTF-8 string ** and sqlite3_column_name16() returns a pointer to a zero-terminated ** UTF-16 string. ^The first parameter is the [prepared statement] ** that implements the [SELECT] statement. ^The second parameter is the ** column number. ^The leftmost column is number 0. ** ** ^The returned string pointer is valid until either the [prepared statement] ** is destroyed by [sqlite3_finalize()] or until the statement is automatically ** reprepared by the first call to [sqlite3_step()] for a particular run ** or until the next call to ** sqlite3_column_name() or sqlite3_column_name16() on the same column. ** ** ^If sqlite3_malloc() fails during the processing of either routine ** (for example during a conversion from UTF-8 to UTF-16) then a ** NULL pointer is returned. ** ** ^The name of a result column is the value of the "AS" clause for ** that column, if there is an AS clause. If there is no AS clause ** then the name of the column is unspecified and may change from ** one release of SQLite to the next. */ SQLITE_API const char *sqlite3_column_name(sqlite3_stmt*, int N); SQLITE_API const void *sqlite3_column_name16(sqlite3_stmt*, int N); /* ** CAPI3REF: Source Of Data In A Query Result ** METHOD: sqlite3_stmt ** ** ^These routines provide a means to determine the database, table, and ** table column that is the origin of a particular result column in ** [SELECT] statement. ** ^The name of the database or table or column can be returned as ** either a UTF-8 or UTF-16 string. ^The _database_ routines return ** the database name, the _table_ routines return the table name, and ** the origin_ routines return the column name. ** ^The returned string is valid until the [prepared statement] is destroyed ** using [sqlite3_finalize()] or until the statement is automatically ** reprepared by the first call to [sqlite3_step()] for a particular run ** or until the same information is requested ** again in a different encoding. ** ** ^The names returned are the original un-aliased names of the ** database, table, and column. ** ** ^The first argument to these interfaces is a [prepared statement]. ** ^These functions return information about the Nth result column returned by ** the statement, where N is the second function argument. ** ^The left-most column is column 0 for these routines. ** ** ^If the Nth column returned by the statement is an expression or ** subquery and is not a column value, then all of these functions return ** NULL. ^These routines might also return NULL if a memory allocation error ** occurs. ^Otherwise, they return the name of the attached database, table, ** or column that query result column was extracted from. ** ** ^As with all other SQLite APIs, those whose names end with "16" return ** UTF-16 encoded strings and the other functions return UTF-8. ** ** ^These APIs are only available if the library was compiled with the ** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol. ** ** If two or more threads call one or more ** [sqlite3_column_database_name | column metadata interfaces] ** for the same [prepared statement] and result column ** at the same time then the results are undefined. */ SQLITE_API const char *sqlite3_column_database_name(sqlite3_stmt*,int); SQLITE_API const void *sqlite3_column_database_name16(sqlite3_stmt*,int); SQLITE_API const char *sqlite3_column_table_name(sqlite3_stmt*,int); SQLITE_API const void *sqlite3_column_table_name16(sqlite3_stmt*,int); SQLITE_API const char *sqlite3_column_origin_name(sqlite3_stmt*,int); SQLITE_API const void *sqlite3_column_origin_name16(sqlite3_stmt*,int); /* ** CAPI3REF: Declared Datatype Of A Query Result ** METHOD: sqlite3_stmt ** ** ^(The first parameter is a [prepared statement]. ** If this statement is a [SELECT] statement and the Nth column of the ** returned result set of that [SELECT] is a table column (not an ** expression or subquery) then the declared type of the table ** column is returned.)^ ^If the Nth column of the result set is an ** expression or subquery, then a NULL pointer is returned. ** ^The returned string is always UTF-8 encoded. ** ** ^(For example, given the database schema: ** ** CREATE TABLE t1(c1 VARIANT); ** ** and the following statement to be compiled: ** ** SELECT c1 + 1, c1 FROM t1; ** ** this routine would return the string "VARIANT" for the second result ** column (i==1), and a NULL pointer for the first result column (i==0).)^ ** ** ^SQLite uses dynamic run-time typing. ^So just because a column ** is declared to contain a particular type does not mean that the ** data stored in that column is of the declared type. SQLite is ** strongly typed, but the typing is dynamic not static. ^Type ** is associated with individual values, not with the containers ** used to hold those values. */ SQLITE_API const char *sqlite3_column_decltype(sqlite3_stmt*,int); SQLITE_API const void *sqlite3_column_decltype16(sqlite3_stmt*,int); /* ** CAPI3REF: Evaluate An SQL Statement ** METHOD: sqlite3_stmt ** ** After a [prepared statement] has been prepared using any of ** [sqlite3_prepare_v2()], [sqlite3_prepare_v3()], [sqlite3_prepare16_v2()], ** or [sqlite3_prepare16_v3()] or one of the legacy ** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function ** must be called one or more times to evaluate the statement. ** ** The details of the behavior of the sqlite3_step() interface depend ** on whether the statement was prepared using the newer "vX" interfaces ** [sqlite3_prepare_v3()], [sqlite3_prepare_v2()], [sqlite3_prepare16_v3()], ** [sqlite3_prepare16_v2()] or the older legacy ** interfaces [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the ** new "vX" interface is recommended for new applications but the legacy ** interface will continue to be supported. ** ** ^In the legacy interface, the return value will be either [SQLITE_BUSY], ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE]. ** ^With the "v2" interface, any of the other [result codes] or ** [extended result codes] might be returned as well. ** ** ^[SQLITE_BUSY] means that the database engine was unable to acquire the ** database locks it needs to do its job. ^If the statement is a [COMMIT] ** or occurs outside of an explicit transaction, then you can retry the ** statement. If the statement is not a [COMMIT] and occurs within an ** explicit transaction then you should rollback the transaction before ** continuing. ** ** ^[SQLITE_DONE] means that the statement has finished executing ** successfully. sqlite3_step() should not be called again on this virtual ** machine without first calling [sqlite3_reset()] to reset the virtual ** machine back to its initial state. ** ** ^If the SQL statement being executed returns any data, then [SQLITE_ROW] ** is returned each time a new row of data is ready for processing by the ** caller. The values may be accessed using the [column access functions]. ** sqlite3_step() is called again to retrieve the next row of data. ** ** ^[SQLITE_ERROR] means that a run-time error (such as a constraint ** violation) has occurred. sqlite3_step() should not be called again on ** the VM. More information may be found by calling [sqlite3_errmsg()]. ** ^With the legacy interface, a more specific error code (for example, ** [SQLITE_INTERRUPT], [SQLITE_SCHEMA], [SQLITE_CORRUPT], and so forth) ** can be obtained by calling [sqlite3_reset()] on the ** [prepared statement]. ^In the "v2" interface, ** the more specific error code is returned directly by sqlite3_step(). ** ** [SQLITE_MISUSE] means that the this routine was called inappropriately. ** Perhaps it was called on a [prepared statement] that has ** already been [sqlite3_finalize | finalized] or on one that had ** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could ** be the case that the same database connection is being used by two or ** more threads at the same moment in time. ** ** For all versions of SQLite up to and including 3.6.23.1, a call to ** [sqlite3_reset()] was required after sqlite3_step() returned anything ** other than [SQLITE_ROW] before any subsequent invocation of ** sqlite3_step(). Failure to reset the prepared statement using ** [sqlite3_reset()] would result in an [SQLITE_MISUSE] return from ** sqlite3_step(). But after [version 3.6.23.1] ([dateof:3.6.23.1], ** sqlite3_step() began ** calling [sqlite3_reset()] automatically in this circumstance rather ** than returning [SQLITE_MISUSE]. This is not considered a compatibility ** break because any application that ever receives an SQLITE_MISUSE error ** is broken by definition. The [SQLITE_OMIT_AUTORESET] compile-time option ** can be used to restore the legacy behavior. ** ** Goofy Interface Alert: In the legacy interface, the sqlite3_step() ** API always returns a generic error code, [SQLITE_ERROR], following any ** error other than [SQLITE_BUSY] and [SQLITE_MISUSE]. You must call ** [sqlite3_reset()] or [sqlite3_finalize()] in order to find one of the ** specific [error codes] that better describes the error. ** We admit that this is a goofy design. The problem has been fixed ** with the "v2" interface. If you prepare all of your SQL statements ** using [sqlite3_prepare_v3()] or [sqlite3_prepare_v2()] ** or [sqlite3_prepare16_v2()] or [sqlite3_prepare16_v3()] instead ** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces, ** then the more specific [error codes] are returned directly ** by sqlite3_step(). The use of the "vX" interfaces is recommended. */ SQLITE_API int sqlite3_step(sqlite3_stmt*); /* ** CAPI3REF: Number of columns in a result set ** METHOD: sqlite3_stmt ** ** ^The sqlite3_data_count(P) interface returns the number of columns in the ** current row of the result set of [prepared statement] P. ** ^If prepared statement P does not have results ready to return ** (via calls to the [sqlite3_column_int | sqlite3_column()] family of ** interfaces) then sqlite3_data_count(P) returns 0. ** ^The sqlite3_data_count(P) routine also returns 0 if P is a NULL pointer. ** ^The sqlite3_data_count(P) routine returns 0 if the previous call to ** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P) ** will return non-zero if previous call to [sqlite3_step](P) returned ** [SQLITE_ROW], except in the case of the [PRAGMA incremental_vacuum] ** where it always returns zero since each step of that multi-step ** pragma returns 0 columns of data. ** ** See also: [sqlite3_column_count()] */ SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt); /* ** CAPI3REF: Fundamental Datatypes ** KEYWORDS: SQLITE_TEXT ** ** ^(Every value in SQLite has one of five fundamental datatypes: ** **
    **
  • 64-bit signed integer **
  • 64-bit IEEE floating point number **
  • string **
  • BLOB **
  • NULL **
)^ ** ** These constants are codes for each of those types. ** ** Note that the SQLITE_TEXT constant was also used in SQLite version 2 ** for a completely different meaning. Software that links against both ** SQLite version 2 and SQLite version 3 should use SQLITE3_TEXT, not ** SQLITE_TEXT. */ #define SQLITE_INTEGER 1 #define SQLITE_FLOAT 2 #define SQLITE_BLOB 4 #define SQLITE_NULL 5 #ifdef SQLITE_TEXT # undef SQLITE_TEXT #else # define SQLITE_TEXT 3 #endif #define SQLITE3_TEXT 3 /* ** CAPI3REF: Result Values From A Query ** KEYWORDS: {column access functions} ** METHOD: sqlite3_stmt ** ** Summary: **
**
sqlite3_column_blobBLOB result **
sqlite3_column_doubleREAL result **
sqlite3_column_int32-bit INTEGER result **
sqlite3_column_int6464-bit INTEGER result **
sqlite3_column_textUTF-8 TEXT result **
sqlite3_column_text16UTF-16 TEXT result **
sqlite3_column_valueThe result as an ** [sqlite3_value|unprotected sqlite3_value] object. **
    **
sqlite3_column_bytesSize of a BLOB ** or a UTF-8 TEXT result in bytes **
sqlite3_column_bytes16   ** →  Size of UTF-16 ** TEXT in bytes **
sqlite3_column_typeDefault ** datatype of the result **
** ** Details: ** ** ^These routines return information about a single column of the current ** result row of a query. ^In every case the first argument is a pointer ** to the [prepared statement] that is being evaluated (the [sqlite3_stmt*] ** that was returned from [sqlite3_prepare_v2()] or one of its variants) ** and the second argument is the index of the column for which information ** should be returned. ^The leftmost column of the result set has the index 0. ** ^The number of columns in the result can be determined using ** [sqlite3_column_count()]. ** ** If the SQL statement does not currently point to a valid row, or if the ** column index is out of range, the result is undefined. ** These routines may only be called when the most recent call to ** [sqlite3_step()] has returned [SQLITE_ROW] and neither ** [sqlite3_reset()] nor [sqlite3_finalize()] have been called subsequently. ** If any of these routines are called after [sqlite3_reset()] or ** [sqlite3_finalize()] or after [sqlite3_step()] has returned ** something other than [SQLITE_ROW], the results are undefined. ** If [sqlite3_step()] or [sqlite3_reset()] or [sqlite3_finalize()] ** are called from a different thread while any of these routines ** are pending, then the results are undefined. ** ** The first six interfaces (_blob, _double, _int, _int64, _text, and _text16) ** each return the value of a result column in a specific data format. If ** the result column is not initially in the requested format (for example, ** if the query returns an integer but the sqlite3_column_text() interface ** is used to extract the value) then an automatic type conversion is performed. ** ** ^The sqlite3_column_type() routine returns the ** [SQLITE_INTEGER | datatype code] for the initial data type ** of the result column. ^The returned value is one of [SQLITE_INTEGER], ** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL]. ** The return value of sqlite3_column_type() can be used to decide which ** of the first six interface should be used to extract the column value. ** The value returned by sqlite3_column_type() is only meaningful if no ** automatic type conversions have occurred for the value in question. ** After a type conversion, the result of calling sqlite3_column_type() ** is undefined, though harmless. Future ** versions of SQLite may change the behavior of sqlite3_column_type() ** following a type conversion. ** ** If the result is a BLOB or a TEXT string, then the sqlite3_column_bytes() ** or sqlite3_column_bytes16() interfaces can be used to determine the size ** of that BLOB or string. ** ** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes() ** routine returns the number of bytes in that BLOB or string. ** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts ** the string to UTF-8 and then returns the number of bytes. ** ^If the result is a numeric value then sqlite3_column_bytes() uses ** [sqlite3_snprintf()] to convert that value to a UTF-8 string and returns ** the number of bytes in that string. ** ^If the result is NULL, then sqlite3_column_bytes() returns zero. ** ** ^If the result is a BLOB or UTF-16 string then the sqlite3_column_bytes16() ** routine returns the number of bytes in that BLOB or string. ** ^If the result is a UTF-8 string, then sqlite3_column_bytes16() converts ** the string to UTF-16 and then returns the number of bytes. ** ^If the result is a numeric value then sqlite3_column_bytes16() uses ** [sqlite3_snprintf()] to convert that value to a UTF-16 string and returns ** the number of bytes in that string. ** ^If the result is NULL, then sqlite3_column_bytes16() returns zero. ** ** ^The values returned by [sqlite3_column_bytes()] and ** [sqlite3_column_bytes16()] do not include the zero terminators at the end ** of the string. ^For clarity: the values returned by ** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of ** bytes in the string, not the number of characters. ** ** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(), ** even empty strings, are always zero-terminated. ^The return ** value from sqlite3_column_blob() for a zero-length BLOB is a NULL pointer. ** ** Warning: ^The object returned by [sqlite3_column_value()] is an ** [unprotected sqlite3_value] object. In a multithreaded environment, ** an unprotected sqlite3_value object may only be used safely with ** [sqlite3_bind_value()] and [sqlite3_result_value()]. ** If the [unprotected sqlite3_value] object returned by ** [sqlite3_column_value()] is used in any other way, including calls ** to routines like [sqlite3_value_int()], [sqlite3_value_text()], ** or [sqlite3_value_bytes()], the behavior is not threadsafe. ** Hence, the sqlite3_column_value() interface ** is normally only useful within the implementation of ** [application-defined SQL functions] or [virtual tables], not within ** top-level application code. ** ** The these routines may attempt to convert the datatype of the result. ** ^For example, if the internal representation is FLOAT and a text result ** is requested, [sqlite3_snprintf()] is used internally to perform the ** conversion automatically. ^(The following table details the conversions ** that are applied: ** **
** **
Internal
Type
Requested
Type
Conversion ** **
NULL INTEGER Result is 0 **
NULL FLOAT Result is 0.0 **
NULL TEXT Result is a NULL pointer **
NULL BLOB Result is a NULL pointer **
INTEGER FLOAT Convert from integer to float **
INTEGER TEXT ASCII rendering of the integer **
INTEGER BLOB Same as INTEGER->TEXT **
FLOAT INTEGER [CAST] to INTEGER **
FLOAT TEXT ASCII rendering of the float **
FLOAT BLOB [CAST] to BLOB **
TEXT INTEGER [CAST] to INTEGER **
TEXT FLOAT [CAST] to REAL **
TEXT BLOB No change **
BLOB INTEGER [CAST] to INTEGER **
BLOB FLOAT [CAST] to REAL **
BLOB TEXT Add a zero terminator if needed **
**
)^ ** ** Note that when type conversions occur, pointers returned by prior ** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or ** sqlite3_column_text16() may be invalidated. ** Type conversions and pointer invalidations might occur ** in the following cases: ** **
    **
  • The initial content is a BLOB and sqlite3_column_text() or ** sqlite3_column_text16() is called. A zero-terminator might ** need to be added to the string.
  • **
  • The initial content is UTF-8 text and sqlite3_column_bytes16() or ** sqlite3_column_text16() is called. The content must be converted ** to UTF-16.
  • **
  • The initial content is UTF-16 text and sqlite3_column_bytes() or ** sqlite3_column_text() is called. The content must be converted ** to UTF-8.
  • **
** ** ^Conversions between UTF-16be and UTF-16le are always done in place and do ** not invalidate a prior pointer, though of course the content of the buffer ** that the prior pointer references will have been modified. Other kinds ** of conversion are done in place when it is possible, but sometimes they ** are not possible and in those cases prior pointers are invalidated. ** ** The safest policy is to invoke these routines ** in one of the following ways: ** **
    **
  • sqlite3_column_text() followed by sqlite3_column_bytes()
  • **
  • sqlite3_column_blob() followed by sqlite3_column_bytes()
  • **
  • sqlite3_column_text16() followed by sqlite3_column_bytes16()
  • **
** ** In other words, you should call sqlite3_column_text(), ** sqlite3_column_blob(), or sqlite3_column_text16() first to force the result ** into the desired format, then invoke sqlite3_column_bytes() or ** sqlite3_column_bytes16() to find the size of the result. Do not mix calls ** to sqlite3_column_text() or sqlite3_column_blob() with calls to ** sqlite3_column_bytes16(), and do not mix calls to sqlite3_column_text16() ** with calls to sqlite3_column_bytes(). ** ** ^The pointers returned are valid until a type conversion occurs as ** described above, or until [sqlite3_step()] or [sqlite3_reset()] or ** [sqlite3_finalize()] is called. ^The memory space used to hold strings ** and BLOBs is freed automatically. Do not pass the pointers returned ** from [sqlite3_column_blob()], [sqlite3_column_text()], etc. into ** [sqlite3_free()]. ** ** As long as the input parameters are correct, these routines will only ** fail if an out-of-memory error occurs during a format conversion. ** Only the following subset of interfaces are subject to out-of-memory ** errors: ** **
    **
  • sqlite3_column_blob() **
  • sqlite3_column_text() **
  • sqlite3_column_text16() **
  • sqlite3_column_bytes() **
  • sqlite3_column_bytes16() **
** ** If an out-of-memory error occurs, then the return value from these ** routines is the same as if the column had contained an SQL NULL value. ** Valid SQL NULL returns can be distinguished from out-of-memory errors ** by invoking the [sqlite3_errcode()] immediately after the suspect ** return value is obtained and before any ** other SQLite interface is called on the same [database connection]. */ SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt*, int iCol); SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol); SQLITE_API int sqlite3_column_int(sqlite3_stmt*, int iCol); SQLITE_API sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol); SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol); SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt*, int iCol); SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol); SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol); SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt*, int iCol); SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol); /* ** CAPI3REF: Destroy A Prepared Statement Object ** DESTRUCTOR: sqlite3_stmt ** ** ^The sqlite3_finalize() function is called to delete a [prepared statement]. ** ^If the most recent evaluation of the statement encountered no errors ** or if the statement is never been evaluated, then sqlite3_finalize() returns ** SQLITE_OK. ^If the most recent evaluation of statement S failed, then ** sqlite3_finalize(S) returns the appropriate [error code] or ** [extended error code]. ** ** ^The sqlite3_finalize(S) routine can be called at any point during ** the life cycle of [prepared statement] S: ** before statement S is ever evaluated, after ** one or more calls to [sqlite3_reset()], or after any call ** to [sqlite3_step()] regardless of whether or not the statement has ** completed execution. ** ** ^Invoking sqlite3_finalize() on a NULL pointer is a harmless no-op. ** ** The application must finalize every [prepared statement] in order to avoid ** resource leaks. It is a grievous error for the application to try to use ** a prepared statement after it has been finalized. Any use of a prepared ** statement after it has been finalized can result in undefined and ** undesirable behavior such as segfaults and heap corruption. */ SQLITE_API int sqlite3_finalize(sqlite3_stmt *pStmt); /* ** CAPI3REF: Reset A Prepared Statement Object ** METHOD: sqlite3_stmt ** ** The sqlite3_reset() function is called to reset a [prepared statement] ** object back to its initial state, ready to be re-executed. ** ^Any SQL statement variables that had values bound to them using ** the [sqlite3_bind_blob | sqlite3_bind_*() API] retain their values. ** Use [sqlite3_clear_bindings()] to reset the bindings. ** ** ^The [sqlite3_reset(S)] interface resets the [prepared statement] S ** back to the beginning of its program. ** ** ^If the most recent call to [sqlite3_step(S)] for the ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE], ** or if [sqlite3_step(S)] has never before been called on S, ** then [sqlite3_reset(S)] returns [SQLITE_OK]. ** ** ^If the most recent call to [sqlite3_step(S)] for the ** [prepared statement] S indicated an error, then ** [sqlite3_reset(S)] returns an appropriate [error code]. ** ** ^The [sqlite3_reset(S)] interface does not change the values ** of any [sqlite3_bind_blob|bindings] on the [prepared statement] S. */ SQLITE_API int sqlite3_reset(sqlite3_stmt *pStmt); /* ** CAPI3REF: Create Or Redefine SQL Functions ** KEYWORDS: {function creation routines} ** METHOD: sqlite3 ** ** ^These functions (collectively known as "function creation routines") ** are used to add SQL functions or aggregates or to redefine the behavior ** of existing SQL functions or aggregates. The only differences between ** the three "sqlite3_create_function*" routines are the text encoding ** expected for the second parameter (the name of the function being ** created) and the presence or absence of a destructor callback for ** the application data pointer. Function sqlite3_create_window_function() ** is similar, but allows the user to supply the extra callback functions ** needed by [aggregate window functions]. ** ** ^The first parameter is the [database connection] to which the SQL ** function is to be added. ^If an application uses more than one database ** connection then application-defined SQL functions must be added ** to each database connection separately. ** ** ^The second parameter is the name of the SQL function to be created or ** redefined. ^The length of the name is limited to 255 bytes in a UTF-8 ** representation, exclusive of the zero-terminator. ^Note that the name ** length limit is in UTF-8 bytes, not characters nor UTF-16 bytes. ** ^Any attempt to create a function with a longer name ** will result in [SQLITE_MISUSE] being returned. ** ** ^The third parameter (nArg) ** is the number of arguments that the SQL function or ** aggregate takes. ^If this parameter is -1, then the SQL function or ** aggregate may take any number of arguments between 0 and the limit ** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third ** parameter is less than -1 or greater than 127 then the behavior is ** undefined. ** ** ^The fourth parameter, eTextRep, specifies what ** [SQLITE_UTF8 | text encoding] this SQL function prefers for ** its parameters. The application should set this parameter to ** [SQLITE_UTF16LE] if the function implementation invokes ** [sqlite3_value_text16le()] on an input, or [SQLITE_UTF16BE] if the ** implementation invokes [sqlite3_value_text16be()] on an input, or ** [SQLITE_UTF16] if [sqlite3_value_text16()] is used, or [SQLITE_UTF8] ** otherwise. ^The same SQL function may be registered multiple times using ** different preferred text encodings, with different implementations for ** each encoding. ** ^When multiple implementations of the same function are available, SQLite ** will pick the one that involves the least amount of data conversion. ** ** ^The fourth parameter may optionally be ORed with [SQLITE_DETERMINISTIC] ** to signal that the function will always return the same result given ** the same inputs within a single SQL statement. Most SQL functions are ** deterministic. The built-in [random()] SQL function is an example of a ** function that is not deterministic. The SQLite query planner is able to ** perform additional optimizations on deterministic functions, so use ** of the [SQLITE_DETERMINISTIC] flag is recommended where possible. ** ** ^The fourth parameter may also optionally include the [SQLITE_DIRECTONLY] ** flag, which if present prevents the function from being invoked from ** within VIEWs, TRIGGERs, CHECK constraints, generated column expressions, ** index expressions, or the WHERE clause of partial indexes. ** ** ** For best security, the [SQLITE_DIRECTONLY] flag is recommended for ** all application-defined SQL functions that do not need to be ** used inside of triggers, view, CHECK constraints, or other elements of ** the database schema. This flags is especially recommended for SQL ** functions that have side effects or reveal internal application state. ** Without this flag, an attacker might be able to modify the schema of ** a database file to include invocations of the function with parameters ** chosen by the attacker, which the application will then execute when ** the database file is opened and read. ** ** ** ^(The fifth parameter is an arbitrary pointer. The implementation of the ** function can gain access to this pointer using [sqlite3_user_data()].)^ ** ** ^The sixth, seventh and eighth parameters passed to the three ** "sqlite3_create_function*" functions, xFunc, xStep and xFinal, are ** pointers to C-language functions that implement the SQL function or ** aggregate. ^A scalar SQL function requires an implementation of the xFunc ** callback only; NULL pointers must be passed as the xStep and xFinal ** parameters. ^An aggregate SQL function requires an implementation of xStep ** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing ** SQL function or aggregate, pass NULL pointers for all three function ** callbacks. ** ** ^The sixth, seventh, eighth and ninth parameters (xStep, xFinal, xValue ** and xInverse) passed to sqlite3_create_window_function are pointers to ** C-language callbacks that implement the new function. xStep and xFinal ** must both be non-NULL. xValue and xInverse may either both be NULL, in ** which case a regular aggregate function is created, or must both be ** non-NULL, in which case the new function may be used as either an aggregate ** or aggregate window function. More details regarding the implementation ** of aggregate window functions are ** [user-defined window functions|available here]. ** ** ^(If the final parameter to sqlite3_create_function_v2() or ** sqlite3_create_window_function() is not NULL, then it is destructor for ** the application data pointer. The destructor is invoked when the function ** is deleted, either by being overloaded or when the database connection ** closes.)^ ^The destructor is also invoked if the call to ** sqlite3_create_function_v2() fails. ^When the destructor callback is ** invoked, it is passed a single argument which is a copy of the application ** data pointer which was the fifth parameter to sqlite3_create_function_v2(). ** ** ^It is permitted to register multiple implementations of the same ** functions with the same name but with either differing numbers of ** arguments or differing preferred text encodings. ^SQLite will use ** the implementation that most closely matches the way in which the ** SQL function is used. ^A function implementation with a non-negative ** nArg parameter is a better match than a function implementation with ** a negative nArg. ^A function where the preferred text encoding ** matches the database encoding is a better ** match than a function where the encoding is different. ** ^A function where the encoding difference is between UTF16le and UTF16be ** is a closer match than a function where the encoding difference is ** between UTF8 and UTF16. ** ** ^Built-in functions may be overloaded by new application-defined functions. ** ** ^An application-defined function is permitted to call other ** SQLite interfaces. However, such calls must not ** close the database connection nor finalize or reset the prepared ** statement in which the function is running. */ SQLITE_API int sqlite3_create_function( sqlite3 *db, const char *zFunctionName, int nArg, int eTextRep, void *pApp, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ); SQLITE_API int sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *pApp, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ); SQLITE_API int sqlite3_create_function_v2( sqlite3 *db, const char *zFunctionName, int nArg, int eTextRep, void *pApp, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void(*xDestroy)(void*) ); SQLITE_API int sqlite3_create_window_function( sqlite3 *db, const char *zFunctionName, int nArg, int eTextRep, void *pApp, void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value**), void(*xDestroy)(void*) ); /* ** CAPI3REF: Text Encodings ** ** These constant define integer codes that represent the various ** text encodings supported by SQLite. */ #define SQLITE_UTF8 1 /* IMP: R-37514-35566 */ #define SQLITE_UTF16LE 2 /* IMP: R-03371-37637 */ #define SQLITE_UTF16BE 3 /* IMP: R-51971-34154 */ #define SQLITE_UTF16 4 /* Use native byte order */ #define SQLITE_ANY 5 /* Deprecated */ #define SQLITE_UTF16_ALIGNED 8 /* sqlite3_create_collation only */ /* ** CAPI3REF: Function Flags ** ** These constants may be ORed together with the ** [SQLITE_UTF8 | preferred text encoding] as the fourth argument ** to [sqlite3_create_function()], [sqlite3_create_function16()], or ** [sqlite3_create_function_v2()]. ** **
** [[SQLITE_DETERMINISTIC]]
SQLITE_DETERMINISTIC
** The SQLITE_DETERMINISTIC flag means that the new function always gives ** the same output when the input parameters are the same. ** The [abs|abs() function] is deterministic, for example, but ** [randomblob|randomblob()] is not. Functions must ** be deterministic in order to be used in certain contexts such as ** with the WHERE clause of [partial indexes] or in [generated columns]. ** SQLite might also optimize deterministic functions by factoring them ** out of inner loops. **
** ** [[SQLITE_DIRECTONLY]]
SQLITE_DIRECTONLY
** The SQLITE_DIRECTONLY flag means that the function may only be invoked ** from top-level SQL, and cannot be used in VIEWs or TRIGGERs nor in ** schema structures such as [CHECK constraints], [DEFAULT clauses], ** [expression indexes], [partial indexes], or [generated columns]. ** The SQLITE_DIRECTONLY flags is a security feature which is recommended ** for all [application-defined SQL functions], and especially for functions ** that have side-effects or that could potentially leak sensitive ** information. **
** ** [[SQLITE_INNOCUOUS]]
SQLITE_INNOCUOUS
** The SQLITE_INNOCUOUS flag means that the function is unlikely ** to cause problems even if misused. An innocuous function should have ** no side effects and should not depend on any values other than its ** input parameters. The [abs|abs() function] is an example of an ** innocuous function. ** The [load_extension() SQL function] is not innocuous because of its ** side effects. **

SQLITE_INNOCUOUS is similar to SQLITE_DETERMINISTIC, but is not ** exactly the same. The [random|random() function] is an example of a ** function that is innocuous but not deterministic. **

Some heightened security settings ** ([SQLITE_DBCONFIG_TRUSTED_SCHEMA] and [PRAGMA trusted_schema=OFF]) ** disable the use of SQL functions inside views and triggers and in ** schema structures such as [CHECK constraints], [DEFAULT clauses], ** [expression indexes], [partial indexes], and [generated columns] unless ** the function is tagged with SQLITE_INNOCUOUS. Most built-in functions ** are innocuous. Developers are advised to avoid using the ** SQLITE_INNOCUOUS flag for application-defined functions unless the ** function has been carefully audited and found to be free of potentially ** security-adverse side-effects and information-leaks. **

** ** [[SQLITE_SUBTYPE]]
SQLITE_SUBTYPE
** The SQLITE_SUBTYPE flag indicates to SQLite that a function may call ** [sqlite3_value_subtype()] to inspect the sub-types of its arguments. ** Specifying this flag makes no difference for scalar or aggregate user ** functions. However, if it is not specified for a user-defined window ** function, then any sub-types belonging to arguments passed to the window ** function may be discarded before the window function is called (i.e. ** sqlite3_value_subtype() will always return 0). **
**
*/ #define SQLITE_DETERMINISTIC 0x000000800 #define SQLITE_DIRECTONLY 0x000080000 #define SQLITE_SUBTYPE 0x000100000 #define SQLITE_INNOCUOUS 0x000200000 /* ** CAPI3REF: Deprecated Functions ** DEPRECATED ** ** These functions are [deprecated]. In order to maintain ** backwards compatibility with older code, these functions continue ** to be supported. However, new applications should avoid ** the use of these functions. To encourage programmers to avoid ** these functions, we will not explain what they do. */ #ifndef SQLITE_OMIT_DEPRECATED SQLITE_API SQLITE_DEPRECATED int sqlite3_aggregate_count(sqlite3_context*); SQLITE_API SQLITE_DEPRECATED int sqlite3_expired(sqlite3_stmt*); SQLITE_API SQLITE_DEPRECATED int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*); SQLITE_API SQLITE_DEPRECATED int sqlite3_global_recover(void); SQLITE_API SQLITE_DEPRECATED void sqlite3_thread_cleanup(void); SQLITE_API SQLITE_DEPRECATED int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int), void*,sqlite3_int64); #endif /* ** CAPI3REF: Obtaining SQL Values ** METHOD: sqlite3_value ** ** Summary: **
**
sqlite3_value_blobBLOB value **
sqlite3_value_doubleREAL value **
sqlite3_value_int32-bit INTEGER value **
sqlite3_value_int6464-bit INTEGER value **
sqlite3_value_pointerPointer value **
sqlite3_value_textUTF-8 TEXT value **
sqlite3_value_text16UTF-16 TEXT value in ** the native byteorder **
sqlite3_value_text16beUTF-16be TEXT value **
sqlite3_value_text16leUTF-16le TEXT value **
    **
sqlite3_value_bytesSize of a BLOB ** or a UTF-8 TEXT in bytes **
sqlite3_value_bytes16   ** →  Size of UTF-16 ** TEXT in bytes **
sqlite3_value_typeDefault ** datatype of the value **
sqlite3_value_numeric_type   ** →  Best numeric datatype of the value **
sqlite3_value_nochange   ** →  True if the column is unchanged in an UPDATE ** against a virtual table. **
sqlite3_value_frombind   ** →  True if value originated from a [bound parameter] **
** ** Details: ** ** These routines extract type, size, and content information from ** [protected sqlite3_value] objects. Protected sqlite3_value objects ** are used to pass parameter information into the functions that ** implement [application-defined SQL functions] and [virtual tables]. ** ** These routines work only with [protected sqlite3_value] objects. ** Any attempt to use these routines on an [unprotected sqlite3_value] ** is not threadsafe. ** ** ^These routines work just like the corresponding [column access functions] ** except that these routines take a single [protected sqlite3_value] object ** pointer instead of a [sqlite3_stmt*] pointer and an integer column number. ** ** ^The sqlite3_value_text16() interface extracts a UTF-16 string ** in the native byte-order of the host machine. ^The ** sqlite3_value_text16be() and sqlite3_value_text16le() interfaces ** extract UTF-16 strings as big-endian and little-endian respectively. ** ** ^If [sqlite3_value] object V was initialized ** using [sqlite3_bind_pointer(S,I,P,X,D)] or [sqlite3_result_pointer(C,P,X,D)] ** and if X and Y are strings that compare equal according to strcmp(X,Y), ** then sqlite3_value_pointer(V,Y) will return the pointer P. ^Otherwise, ** sqlite3_value_pointer(V,Y) returns a NULL. The sqlite3_bind_pointer() ** routine is part of the [pointer passing interface] added for SQLite 3.20.0. ** ** ^(The sqlite3_value_type(V) interface returns the ** [SQLITE_INTEGER | datatype code] for the initial datatype of the ** [sqlite3_value] object V. The returned value is one of [SQLITE_INTEGER], ** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL].)^ ** Other interfaces might change the datatype for an sqlite3_value object. ** For example, if the datatype is initially SQLITE_INTEGER and ** sqlite3_value_text(V) is called to extract a text value for that ** integer, then subsequent calls to sqlite3_value_type(V) might return ** SQLITE_TEXT. Whether or not a persistent internal datatype conversion ** occurs is undefined and may change from one release of SQLite to the next. ** ** ^(The sqlite3_value_numeric_type() interface attempts to apply ** numeric affinity to the value. This means that an attempt is ** made to convert the value to an integer or floating point. If ** such a conversion is possible without loss of information (in other ** words, if the value is a string that looks like a number) ** then the conversion is performed. Otherwise no conversion occurs. ** The [SQLITE_INTEGER | datatype] after conversion is returned.)^ ** ** ^Within the [xUpdate] method of a [virtual table], the ** sqlite3_value_nochange(X) interface returns true if and only if ** the column corresponding to X is unchanged by the UPDATE operation ** that the xUpdate method call was invoked to implement and if ** and the prior [xColumn] method call that was invoked to extracted ** the value for that column returned without setting a result (probably ** because it queried [sqlite3_vtab_nochange()] and found that the column ** was unchanging). ^Within an [xUpdate] method, any value for which ** sqlite3_value_nochange(X) is true will in all other respects appear ** to be a NULL value. If sqlite3_value_nochange(X) is invoked anywhere other ** than within an [xUpdate] method call for an UPDATE statement, then ** the return value is arbitrary and meaningless. ** ** ^The sqlite3_value_frombind(X) interface returns non-zero if the ** value X originated from one of the [sqlite3_bind_int|sqlite3_bind()] ** interfaces. ^If X comes from an SQL literal value, or a table column, ** or an expression, then sqlite3_value_frombind(X) returns zero. ** ** Please pay particular attention to the fact that the pointer returned ** from [sqlite3_value_blob()], [sqlite3_value_text()], or ** [sqlite3_value_text16()] can be invalidated by a subsequent call to ** [sqlite3_value_bytes()], [sqlite3_value_bytes16()], [sqlite3_value_text()], ** or [sqlite3_value_text16()]. ** ** These routines must be called from the same thread as ** the SQL function that supplied the [sqlite3_value*] parameters. ** ** As long as the input parameter is correct, these routines can only ** fail if an out-of-memory error occurs during a format conversion. ** Only the following subset of interfaces are subject to out-of-memory ** errors: ** **
    **
  • sqlite3_value_blob() **
  • sqlite3_value_text() **
  • sqlite3_value_text16() **
  • sqlite3_value_text16le() **
  • sqlite3_value_text16be() **
  • sqlite3_value_bytes() **
  • sqlite3_value_bytes16() **
** ** If an out-of-memory error occurs, then the return value from these ** routines is the same as if the column had contained an SQL NULL value. ** Valid SQL NULL returns can be distinguished from out-of-memory errors ** by invoking the [sqlite3_errcode()] immediately after the suspect ** return value is obtained and before any ** other SQLite interface is called on the same [database connection]. */ SQLITE_API const void *sqlite3_value_blob(sqlite3_value*); SQLITE_API double sqlite3_value_double(sqlite3_value*); SQLITE_API int sqlite3_value_int(sqlite3_value*); SQLITE_API sqlite3_int64 sqlite3_value_int64(sqlite3_value*); SQLITE_API void *sqlite3_value_pointer(sqlite3_value*, const char*); SQLITE_API const unsigned char *sqlite3_value_text(sqlite3_value*); SQLITE_API const void *sqlite3_value_text16(sqlite3_value*); SQLITE_API const void *sqlite3_value_text16le(sqlite3_value*); SQLITE_API const void *sqlite3_value_text16be(sqlite3_value*); SQLITE_API int sqlite3_value_bytes(sqlite3_value*); SQLITE_API int sqlite3_value_bytes16(sqlite3_value*); SQLITE_API int sqlite3_value_type(sqlite3_value*); SQLITE_API int sqlite3_value_numeric_type(sqlite3_value*); SQLITE_API int sqlite3_value_nochange(sqlite3_value*); SQLITE_API int sqlite3_value_frombind(sqlite3_value*); /* ** CAPI3REF: Finding The Subtype Of SQL Values ** METHOD: sqlite3_value ** ** The sqlite3_value_subtype(V) function returns the subtype for ** an [application-defined SQL function] argument V. The subtype ** information can be used to pass a limited amount of context from ** one SQL function to another. Use the [sqlite3_result_subtype()] ** routine to set the subtype for the return value of an SQL function. */ SQLITE_API unsigned int sqlite3_value_subtype(sqlite3_value*); /* ** CAPI3REF: Copy And Free SQL Values ** METHOD: sqlite3_value ** ** ^The sqlite3_value_dup(V) interface makes a copy of the [sqlite3_value] ** object D and returns a pointer to that copy. ^The [sqlite3_value] returned ** is a [protected sqlite3_value] object even if the input is not. ** ^The sqlite3_value_dup(V) interface returns NULL if V is NULL or if a ** memory allocation fails. ** ** ^The sqlite3_value_free(V) interface frees an [sqlite3_value] object ** previously obtained from [sqlite3_value_dup()]. ^If V is a NULL pointer ** then sqlite3_value_free(V) is a harmless no-op. */ SQLITE_API sqlite3_value *sqlite3_value_dup(const sqlite3_value*); SQLITE_API void sqlite3_value_free(sqlite3_value*); /* ** CAPI3REF: Obtain Aggregate Function Context ** METHOD: sqlite3_context ** ** Implementations of aggregate SQL functions use this ** routine to allocate memory for storing their state. ** ** ^The first time the sqlite3_aggregate_context(C,N) routine is called ** for a particular aggregate function, SQLite allocates ** N bytes of memory, zeroes out that memory, and returns a pointer ** to the new memory. ^On second and subsequent calls to ** sqlite3_aggregate_context() for the same aggregate function instance, ** the same buffer is returned. Sqlite3_aggregate_context() is normally ** called once for each invocation of the xStep callback and then one ** last time when the xFinal callback is invoked. ^(When no rows match ** an aggregate query, the xStep() callback of the aggregate function ** implementation is never called and xFinal() is called exactly once. ** In those cases, sqlite3_aggregate_context() might be called for the ** first time from within xFinal().)^ ** ** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer ** when first called if N is less than or equal to zero or if a memory ** allocate error occurs. ** ** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is ** determined by the N parameter on first successful call. Changing the ** value of N in any subsequent call to sqlite3_aggregate_context() within ** the same aggregate function instance will not resize the memory ** allocation.)^ Within the xFinal callback, it is customary to set ** N=0 in calls to sqlite3_aggregate_context(C,N) so that no ** pointless memory allocations occur. ** ** ^SQLite automatically frees the memory allocated by ** sqlite3_aggregate_context() when the aggregate query concludes. ** ** The first parameter must be a copy of the ** [sqlite3_context | SQL function context] that is the first parameter ** to the xStep or xFinal callback routine that implements the aggregate ** function. ** ** This routine must be called from the same thread in which ** the aggregate SQL function is running. */ SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes); /* ** CAPI3REF: User Data For Functions ** METHOD: sqlite3_context ** ** ^The sqlite3_user_data() interface returns a copy of ** the pointer that was the pUserData parameter (the 5th parameter) ** of the [sqlite3_create_function()] ** and [sqlite3_create_function16()] routines that originally ** registered the application defined function. ** ** This routine must be called from the same thread in which ** the application-defined function is running. */ SQLITE_API void *sqlite3_user_data(sqlite3_context*); /* ** CAPI3REF: Database Connection For Functions ** METHOD: sqlite3_context ** ** ^The sqlite3_context_db_handle() interface returns a copy of ** the pointer to the [database connection] (the 1st parameter) ** of the [sqlite3_create_function()] ** and [sqlite3_create_function16()] routines that originally ** registered the application defined function. */ SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context*); /* ** CAPI3REF: Function Auxiliary Data ** METHOD: sqlite3_context ** ** These functions may be used by (non-aggregate) SQL functions to ** associate metadata with argument values. If the same value is passed to ** multiple invocations of the same SQL function during query execution, under ** some circumstances the associated metadata may be preserved. An example ** of where this might be useful is in a regular-expression matching ** function. The compiled version of the regular expression can be stored as ** metadata associated with the pattern string. ** Then as long as the pattern string remains the same, ** the compiled regular expression can be reused on multiple ** invocations of the same function. ** ** ^The sqlite3_get_auxdata(C,N) interface returns a pointer to the metadata ** associated by the sqlite3_set_auxdata(C,N,P,X) function with the Nth argument ** value to the application-defined function. ^N is zero for the left-most ** function argument. ^If there is no metadata ** associated with the function argument, the sqlite3_get_auxdata(C,N) interface ** returns a NULL pointer. ** ** ^The sqlite3_set_auxdata(C,N,P,X) interface saves P as metadata for the N-th ** argument of the application-defined function. ^Subsequent ** calls to sqlite3_get_auxdata(C,N) return P from the most recent ** sqlite3_set_auxdata(C,N,P,X) call if the metadata is still valid or ** NULL if the metadata has been discarded. ** ^After each call to sqlite3_set_auxdata(C,N,P,X) where X is not NULL, ** SQLite will invoke the destructor function X with parameter P exactly ** once, when the metadata is discarded. ** SQLite is free to discard the metadata at any time, including:
    **
  • ^(when the corresponding function parameter changes)^, or **
  • ^(when [sqlite3_reset()] or [sqlite3_finalize()] is called for the ** SQL statement)^, or **
  • ^(when sqlite3_set_auxdata() is invoked again on the same ** parameter)^, or **
  • ^(during the original sqlite3_set_auxdata() call when a memory ** allocation error occurs.)^
** ** Note the last bullet in particular. The destructor X in ** sqlite3_set_auxdata(C,N,P,X) might be called immediately, before the ** sqlite3_set_auxdata() interface even returns. Hence sqlite3_set_auxdata() ** should be called near the end of the function implementation and the ** function implementation should not make any use of P after ** sqlite3_set_auxdata() has been called. ** ** ^(In practice, metadata is preserved between function calls for ** function parameters that are compile-time constants, including literal ** values and [parameters] and expressions composed from the same.)^ ** ** The value of the N parameter to these interfaces should be non-negative. ** Future enhancements may make use of negative N values to define new ** kinds of function caching behavior. ** ** These routines must be called from the same thread in which ** the SQL function is running. */ SQLITE_API void *sqlite3_get_auxdata(sqlite3_context*, int N); SQLITE_API void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(void*)); /* ** CAPI3REF: Constants Defining Special Destructor Behavior ** ** These are special values for the destructor that is passed in as the ** final argument to routines like [sqlite3_result_blob()]. ^If the destructor ** argument is SQLITE_STATIC, it means that the content pointer is constant ** and will never change. It does not need to be destroyed. ^The ** SQLITE_TRANSIENT value means that the content will likely change in ** the near future and that SQLite should make its own private copy of ** the content before returning. ** ** The typedef is necessary to work around problems in certain ** C++ compilers. */ typedef void (*sqlite3_destructor_type)(void*); #define SQLITE_STATIC ((sqlite3_destructor_type)0) #define SQLITE_TRANSIENT ((sqlite3_destructor_type)-1) /* ** CAPI3REF: Setting The Result Of An SQL Function ** METHOD: sqlite3_context ** ** These routines are used by the xFunc or xFinal callbacks that ** implement SQL functions and aggregates. See ** [sqlite3_create_function()] and [sqlite3_create_function16()] ** for additional information. ** ** These functions work very much like the [parameter binding] family of ** functions used to bind values to host parameters in prepared statements. ** Refer to the [SQL parameter] documentation for additional information. ** ** ^The sqlite3_result_blob() interface sets the result from ** an application-defined function to be the BLOB whose content is pointed ** to by the second parameter and which is N bytes long where N is the ** third parameter. ** ** ^The sqlite3_result_zeroblob(C,N) and sqlite3_result_zeroblob64(C,N) ** interfaces set the result of the application-defined function to be ** a BLOB containing all zero bytes and N bytes in size. ** ** ^The sqlite3_result_double() interface sets the result from ** an application-defined function to be a floating point value specified ** by its 2nd argument. ** ** ^The sqlite3_result_error() and sqlite3_result_error16() functions ** cause the implemented SQL function to throw an exception. ** ^SQLite uses the string pointed to by the ** 2nd parameter of sqlite3_result_error() or sqlite3_result_error16() ** as the text of an error message. ^SQLite interprets the error ** message string from sqlite3_result_error() as UTF-8. ^SQLite ** interprets the string from sqlite3_result_error16() as UTF-16 using ** the same [byte-order determination rules] as [sqlite3_bind_text16()]. ** ^If the third parameter to sqlite3_result_error() ** or sqlite3_result_error16() is negative then SQLite takes as the error ** message all text up through the first zero character. ** ^If the third parameter to sqlite3_result_error() or ** sqlite3_result_error16() is non-negative then SQLite takes that many ** bytes (not characters) from the 2nd parameter as the error message. ** ^The sqlite3_result_error() and sqlite3_result_error16() ** routines make a private copy of the error message text before ** they return. Hence, the calling function can deallocate or ** modify the text after they return without harm. ** ^The sqlite3_result_error_code() function changes the error code ** returned by SQLite as a result of an error in a function. ^By default, ** the error code is SQLITE_ERROR. ^A subsequent call to sqlite3_result_error() ** or sqlite3_result_error16() resets the error code to SQLITE_ERROR. ** ** ^The sqlite3_result_error_toobig() interface causes SQLite to throw an ** error indicating that a string or BLOB is too long to represent. ** ** ^The sqlite3_result_error_nomem() interface causes SQLite to throw an ** error indicating that a memory allocation failed. ** ** ^The sqlite3_result_int() interface sets the return value ** of the application-defined function to be the 32-bit signed integer ** value given in the 2nd argument. ** ^The sqlite3_result_int64() interface sets the return value ** of the application-defined function to be the 64-bit signed integer ** value given in the 2nd argument. ** ** ^The sqlite3_result_null() interface sets the return value ** of the application-defined function to be NULL. ** ** ^The sqlite3_result_text(), sqlite3_result_text16(), ** sqlite3_result_text16le(), and sqlite3_result_text16be() interfaces ** set the return value of the application-defined function to be ** a text string which is represented as UTF-8, UTF-16 native byte order, ** UTF-16 little endian, or UTF-16 big endian, respectively. ** ^The sqlite3_result_text64() interface sets the return value of an ** application-defined function to be a text string in an encoding ** specified by the fifth (and last) parameter, which must be one ** of [SQLITE_UTF8], [SQLITE_UTF16], [SQLITE_UTF16BE], or [SQLITE_UTF16LE]. ** ^SQLite takes the text result from the application from ** the 2nd parameter of the sqlite3_result_text* interfaces. ** ^If the 3rd parameter to the sqlite3_result_text* interfaces ** is negative, then SQLite takes result text from the 2nd parameter ** through the first zero character. ** ^If the 3rd parameter to the sqlite3_result_text* interfaces ** is non-negative, then as many bytes (not characters) of the text ** pointed to by the 2nd parameter are taken as the application-defined ** function result. If the 3rd parameter is non-negative, then it ** must be the byte offset into the string where the NUL terminator would ** appear if the string where NUL terminated. If any NUL characters occur ** in the string at a byte offset that is less than the value of the 3rd ** parameter, then the resulting string will contain embedded NULs and the ** result of expressions operating on strings with embedded NULs is undefined. ** ^If the 4th parameter to the sqlite3_result_text* interfaces ** or sqlite3_result_blob is a non-NULL pointer, then SQLite calls that ** function as the destructor on the text or BLOB result when it has ** finished using that result. ** ^If the 4th parameter to the sqlite3_result_text* interfaces or to ** sqlite3_result_blob is the special constant SQLITE_STATIC, then SQLite ** assumes that the text or BLOB result is in constant space and does not ** copy the content of the parameter nor call a destructor on the content ** when it has finished using that result. ** ^If the 4th parameter to the sqlite3_result_text* interfaces ** or sqlite3_result_blob is the special constant SQLITE_TRANSIENT ** then SQLite makes a copy of the result into space obtained ** from [sqlite3_malloc()] before it returns. ** ** ^For the sqlite3_result_text16(), sqlite3_result_text16le(), and ** sqlite3_result_text16be() routines, and for sqlite3_result_text64() ** when the encoding is not UTF8, if the input UTF16 begins with a ** byte-order mark (BOM, U+FEFF) then the BOM is removed from the ** string and the rest of the string is interpreted according to the ** byte-order specified by the BOM. ^The byte-order specified by ** the BOM at the beginning of the text overrides the byte-order ** specified by the interface procedure. ^So, for example, if ** sqlite3_result_text16le() is invoked with text that begins ** with bytes 0xfe, 0xff (a big-endian byte-order mark) then the ** first two bytes of input are skipped and the remaining input ** is interpreted as UTF16BE text. ** ** ^For UTF16 input text to the sqlite3_result_text16(), ** sqlite3_result_text16be(), sqlite3_result_text16le(), and ** sqlite3_result_text64() routines, if the text contains invalid ** UTF16 characters, the invalid characters might be converted ** into the unicode replacement character, U+FFFD. ** ** ^The sqlite3_result_value() interface sets the result of ** the application-defined function to be a copy of the ** [unprotected sqlite3_value] object specified by the 2nd parameter. ^The ** sqlite3_result_value() interface makes a copy of the [sqlite3_value] ** so that the [sqlite3_value] specified in the parameter may change or ** be deallocated after sqlite3_result_value() returns without harm. ** ^A [protected sqlite3_value] object may always be used where an ** [unprotected sqlite3_value] object is required, so either ** kind of [sqlite3_value] object can be used with this interface. ** ** ^The sqlite3_result_pointer(C,P,T,D) interface sets the result to an ** SQL NULL value, just like [sqlite3_result_null(C)], except that it ** also associates the host-language pointer P or type T with that ** NULL value such that the pointer can be retrieved within an ** [application-defined SQL function] using [sqlite3_value_pointer()]. ** ^If the D parameter is not NULL, then it is a pointer to a destructor ** for the P parameter. ^SQLite invokes D with P as its only argument ** when SQLite is finished with P. The T parameter should be a static ** string and preferably a string literal. The sqlite3_result_pointer() ** routine is part of the [pointer passing interface] added for SQLite 3.20.0. ** ** If these routines are called from within the different thread ** than the one containing the application-defined function that received ** the [sqlite3_context] pointer, the results are undefined. */ SQLITE_API void sqlite3_result_blob(sqlite3_context*, const void*, int, void(*)(void*)); SQLITE_API void sqlite3_result_blob64(sqlite3_context*,const void*, sqlite3_uint64,void(*)(void*)); SQLITE_API void sqlite3_result_double(sqlite3_context*, double); SQLITE_API void sqlite3_result_error(sqlite3_context*, const char*, int); SQLITE_API void sqlite3_result_error16(sqlite3_context*, const void*, int); SQLITE_API void sqlite3_result_error_toobig(sqlite3_context*); SQLITE_API void sqlite3_result_error_nomem(sqlite3_context*); SQLITE_API void sqlite3_result_error_code(sqlite3_context*, int); SQLITE_API void sqlite3_result_int(sqlite3_context*, int); SQLITE_API void sqlite3_result_int64(sqlite3_context*, sqlite3_int64); SQLITE_API void sqlite3_result_null(sqlite3_context*); SQLITE_API void sqlite3_result_text(sqlite3_context*, const char*, int, void(*)(void*)); SQLITE_API void sqlite3_result_text64(sqlite3_context*, const char*,sqlite3_uint64, void(*)(void*), unsigned char encoding); SQLITE_API void sqlite3_result_text16(sqlite3_context*, const void*, int, void(*)(void*)); SQLITE_API void sqlite3_result_text16le(sqlite3_context*, const void*, int,void(*)(void*)); SQLITE_API void sqlite3_result_text16be(sqlite3_context*, const void*, int,void(*)(void*)); SQLITE_API void sqlite3_result_value(sqlite3_context*, sqlite3_value*); SQLITE_API void sqlite3_result_pointer(sqlite3_context*, void*,const char*,void(*)(void*)); SQLITE_API void sqlite3_result_zeroblob(sqlite3_context*, int n); SQLITE_API int sqlite3_result_zeroblob64(sqlite3_context*, sqlite3_uint64 n); /* ** CAPI3REF: Setting The Subtype Of An SQL Function ** METHOD: sqlite3_context ** ** The sqlite3_result_subtype(C,T) function causes the subtype of ** the result from the [application-defined SQL function] with ** [sqlite3_context] C to be the value T. Only the lower 8 bits ** of the subtype T are preserved in current versions of SQLite; ** higher order bits are discarded. ** The number of subtype bytes preserved by SQLite might increase ** in future releases of SQLite. */ SQLITE_API void sqlite3_result_subtype(sqlite3_context*,unsigned int); /* ** CAPI3REF: Define New Collating Sequences ** METHOD: sqlite3 ** ** ^These functions add, remove, or modify a [collation] associated ** with the [database connection] specified as the first argument. ** ** ^The name of the collation is a UTF-8 string ** for sqlite3_create_collation() and sqlite3_create_collation_v2() ** and a UTF-16 string in native byte order for sqlite3_create_collation16(). ** ^Collation names that compare equal according to [sqlite3_strnicmp()] are ** considered to be the same name. ** ** ^(The third argument (eTextRep) must be one of the constants: **
    **
  • [SQLITE_UTF8], **
  • [SQLITE_UTF16LE], **
  • [SQLITE_UTF16BE], **
  • [SQLITE_UTF16], or **
  • [SQLITE_UTF16_ALIGNED]. **
)^ ** ^The eTextRep argument determines the encoding of strings passed ** to the collating function callback, xCompare. ** ^The [SQLITE_UTF16] and [SQLITE_UTF16_ALIGNED] values for eTextRep ** force strings to be UTF16 with native byte order. ** ^The [SQLITE_UTF16_ALIGNED] value for eTextRep forces strings to begin ** on an even byte address. ** ** ^The fourth argument, pArg, is an application data pointer that is passed ** through as the first argument to the collating function callback. ** ** ^The fifth argument, xCompare, is a pointer to the collating function. ** ^Multiple collating functions can be registered using the same name but ** with different eTextRep parameters and SQLite will use whichever ** function requires the least amount of data transformation. ** ^If the xCompare argument is NULL then the collating function is ** deleted. ^When all collating functions having the same name are deleted, ** that collation is no longer usable. ** ** ^The collating function callback is invoked with a copy of the pArg ** application data pointer and with two strings in the encoding specified ** by the eTextRep argument. The two integer parameters to the collating ** function callback are the length of the two strings, in bytes. The collating ** function must return an integer that is negative, zero, or positive ** if the first string is less than, equal to, or greater than the second, ** respectively. A collating function must always return the same answer ** given the same inputs. If two or more collating functions are registered ** to the same collation name (using different eTextRep values) then all ** must give an equivalent answer when invoked with equivalent strings. ** The collating function must obey the following properties for all ** strings A, B, and C: ** **
    **
  1. If A==B then B==A. **
  2. If A==B and B==C then A==C. **
  3. If A<B THEN B>A. **
  4. If A<B and B<C then A<C. **
** ** If a collating function fails any of the above constraints and that ** collating function is registered and used, then the behavior of SQLite ** is undefined. ** ** ^The sqlite3_create_collation_v2() works like sqlite3_create_collation() ** with the addition that the xDestroy callback is invoked on pArg when ** the collating function is deleted. ** ^Collating functions are deleted when they are overridden by later ** calls to the collation creation functions or when the ** [database connection] is closed using [sqlite3_close()]. ** ** ^The xDestroy callback is not called if the ** sqlite3_create_collation_v2() function fails. Applications that invoke ** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should ** check the return code and dispose of the application data pointer ** themselves rather than expecting SQLite to deal with it for them. ** This is different from every other SQLite interface. The inconsistency ** is unfortunate but cannot be changed without breaking backwards ** compatibility. ** ** See also: [sqlite3_collation_needed()] and [sqlite3_collation_needed16()]. */ SQLITE_API int sqlite3_create_collation( sqlite3*, const char *zName, int eTextRep, void *pArg, int(*xCompare)(void*,int,const void*,int,const void*) ); SQLITE_API int sqlite3_create_collation_v2( sqlite3*, const char *zName, int eTextRep, void *pArg, int(*xCompare)(void*,int,const void*,int,const void*), void(*xDestroy)(void*) ); SQLITE_API int sqlite3_create_collation16( sqlite3*, const void *zName, int eTextRep, void *pArg, int(*xCompare)(void*,int,const void*,int,const void*) ); /* ** CAPI3REF: Collation Needed Callbacks ** METHOD: sqlite3 ** ** ^To avoid having to register all collation sequences before a database ** can be used, a single callback function may be registered with the ** [database connection] to be invoked whenever an undefined collation ** sequence is required. ** ** ^If the function is registered using the sqlite3_collation_needed() API, ** then it is passed the names of undefined collation sequences as strings ** encoded in UTF-8. ^If sqlite3_collation_needed16() is used, ** the names are passed as UTF-16 in machine native byte order. ** ^A call to either function replaces the existing collation-needed callback. ** ** ^(When the callback is invoked, the first argument passed is a copy ** of the second argument to sqlite3_collation_needed() or ** sqlite3_collation_needed16(). The second argument is the database ** connection. The third argument is one of [SQLITE_UTF8], [SQLITE_UTF16BE], ** or [SQLITE_UTF16LE], indicating the most desirable form of the collation ** sequence function required. The fourth parameter is the name of the ** required collation sequence.)^ ** ** The callback function should register the desired collation using ** [sqlite3_create_collation()], [sqlite3_create_collation16()], or ** [sqlite3_create_collation_v2()]. */ SQLITE_API int sqlite3_collation_needed( sqlite3*, void*, void(*)(void*,sqlite3*,int eTextRep,const char*) ); SQLITE_API int sqlite3_collation_needed16( sqlite3*, void*, void(*)(void*,sqlite3*,int eTextRep,const void*) ); #ifdef SQLITE_ENABLE_CEROD /* ** Specify the activation key for a CEROD database. Unless ** activated, none of the CEROD routines will work. */ SQLITE_API void sqlite3_activate_cerod( const char *zPassPhrase /* Activation phrase */ ); #endif /* ** CAPI3REF: Suspend Execution For A Short Time ** ** The sqlite3_sleep() function causes the current thread to suspend execution ** for at least a number of milliseconds specified in its parameter. ** ** If the operating system does not support sleep requests with ** millisecond time resolution, then the time will be rounded up to ** the nearest second. The number of milliseconds of sleep actually ** requested from the operating system is returned. ** ** ^SQLite implements this interface by calling the xSleep() ** method of the default [sqlite3_vfs] object. If the xSleep() method ** of the default VFS is not implemented correctly, or not implemented at ** all, then the behavior of sqlite3_sleep() may deviate from the description ** in the previous paragraphs. */ SQLITE_API int sqlite3_sleep(int); /* ** CAPI3REF: Name Of The Folder Holding Temporary Files ** ** ^(If this global variable is made to point to a string which is ** the name of a folder (a.k.a. directory), then all temporary files ** created by SQLite when using a built-in [sqlite3_vfs | VFS] ** will be placed in that directory.)^ ^If this variable ** is a NULL pointer, then SQLite performs a search for an appropriate ** temporary file directory. ** ** Applications are strongly discouraged from using this global variable. ** It is required to set a temporary folder on Windows Runtime (WinRT). ** But for all other platforms, it is highly recommended that applications ** neither read nor write this variable. This global variable is a relic ** that exists for backwards compatibility of legacy applications and should ** be avoided in new projects. ** ** It is not safe to read or modify this variable in more than one ** thread at a time. It is not safe to read or modify this variable ** if a [database connection] is being used at the same time in a separate ** thread. ** It is intended that this variable be set once ** as part of process initialization and before any SQLite interface ** routines have been called and that this variable remain unchanged ** thereafter. ** ** ^The [temp_store_directory pragma] may modify this variable and cause ** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore, ** the [temp_store_directory pragma] always assumes that any string ** that this variable points to is held in memory obtained from ** [sqlite3_malloc] and the pragma may attempt to free that memory ** using [sqlite3_free]. ** Hence, if this variable is modified directly, either it should be ** made NULL or made to point to memory obtained from [sqlite3_malloc] ** or else the use of the [temp_store_directory pragma] should be avoided. ** Except when requested by the [temp_store_directory pragma], SQLite ** does not free the memory that sqlite3_temp_directory points to. If ** the application wants that memory to be freed, it must do ** so itself, taking care to only do so after all [database connection] ** objects have been destroyed. ** ** Note to Windows Runtime users: The temporary directory must be set ** prior to calling [sqlite3_open] or [sqlite3_open_v2]. Otherwise, various ** features that require the use of temporary files may fail. Here is an ** example of how to do this using C++ with the Windows Runtime: ** **
** LPCWSTR zPath = Windows::Storage::ApplicationData::Current->
**       TemporaryFolder->Path->Data();
** char zPathBuf[MAX_PATH + 1];
** memset(zPathBuf, 0, sizeof(zPathBuf));
** WideCharToMultiByte(CP_UTF8, 0, zPath, -1, zPathBuf, sizeof(zPathBuf),
**       NULL, NULL);
** sqlite3_temp_directory = sqlite3_mprintf("%s", zPathBuf);
** 
*/ SQLITE_API char *sqlite3_temp_directory; /* ** CAPI3REF: Name Of The Folder Holding Database Files ** ** ^(If this global variable is made to point to a string which is ** the name of a folder (a.k.a. directory), then all database files ** specified with a relative pathname and created or accessed by ** SQLite when using a built-in windows [sqlite3_vfs | VFS] will be assumed ** to be relative to that directory.)^ ^If this variable is a NULL ** pointer, then SQLite assumes that all database files specified ** with a relative pathname are relative to the current directory ** for the process. Only the windows VFS makes use of this global ** variable; it is ignored by the unix VFS. ** ** Changing the value of this variable while a database connection is ** open can result in a corrupt database. ** ** It is not safe to read or modify this variable in more than one ** thread at a time. It is not safe to read or modify this variable ** if a [database connection] is being used at the same time in a separate ** thread. ** It is intended that this variable be set once ** as part of process initialization and before any SQLite interface ** routines have been called and that this variable remain unchanged ** thereafter. ** ** ^The [data_store_directory pragma] may modify this variable and cause ** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore, ** the [data_store_directory pragma] always assumes that any string ** that this variable points to is held in memory obtained from ** [sqlite3_malloc] and the pragma may attempt to free that memory ** using [sqlite3_free]. ** Hence, if this variable is modified directly, either it should be ** made NULL or made to point to memory obtained from [sqlite3_malloc] ** or else the use of the [data_store_directory pragma] should be avoided. */ SQLITE_API char *sqlite3_data_directory; /* ** CAPI3REF: Win32 Specific Interface ** ** These interfaces are available only on Windows. The ** [sqlite3_win32_set_directory] interface is used to set the value associated ** with the [sqlite3_temp_directory] or [sqlite3_data_directory] variable, to ** zValue, depending on the value of the type parameter. The zValue parameter ** should be NULL to cause the previous value to be freed via [sqlite3_free]; ** a non-NULL value will be copied into memory obtained from [sqlite3_malloc] ** prior to being used. The [sqlite3_win32_set_directory] interface returns ** [SQLITE_OK] to indicate success, [SQLITE_ERROR] if the type is unsupported, ** or [SQLITE_NOMEM] if memory could not be allocated. The value of the ** [sqlite3_data_directory] variable is intended to act as a replacement for ** the current directory on the sub-platforms of Win32 where that concept is ** not present, e.g. WinRT and UWP. The [sqlite3_win32_set_directory8] and ** [sqlite3_win32_set_directory16] interfaces behave exactly the same as the ** sqlite3_win32_set_directory interface except the string parameter must be ** UTF-8 or UTF-16, respectively. */ SQLITE_API int sqlite3_win32_set_directory( unsigned long type, /* Identifier for directory being set or reset */ void *zValue /* New value for directory being set or reset */ ); SQLITE_API int sqlite3_win32_set_directory8(unsigned long type, const char *zValue); SQLITE_API int sqlite3_win32_set_directory16(unsigned long type, const void *zValue); /* ** CAPI3REF: Win32 Directory Types ** ** These macros are only available on Windows. They define the allowed values ** for the type argument to the [sqlite3_win32_set_directory] interface. */ #define SQLITE_WIN32_DATA_DIRECTORY_TYPE 1 #define SQLITE_WIN32_TEMP_DIRECTORY_TYPE 2 /* ** CAPI3REF: Test For Auto-Commit Mode ** KEYWORDS: {autocommit mode} ** METHOD: sqlite3 ** ** ^The sqlite3_get_autocommit() interface returns non-zero or ** zero if the given database connection is or is not in autocommit mode, ** respectively. ^Autocommit mode is on by default. ** ^Autocommit mode is disabled by a [BEGIN] statement. ** ^Autocommit mode is re-enabled by a [COMMIT] or [ROLLBACK]. ** ** If certain kinds of errors occur on a statement within a multi-statement ** transaction (errors including [SQLITE_FULL], [SQLITE_IOERR], ** [SQLITE_NOMEM], [SQLITE_BUSY], and [SQLITE_INTERRUPT]) then the ** transaction might be rolled back automatically. The only way to ** find out whether SQLite automatically rolled back the transaction after ** an error is to use this function. ** ** If another thread changes the autocommit status of the database ** connection while this routine is running, then the return value ** is undefined. */ SQLITE_API int sqlite3_get_autocommit(sqlite3*); /* ** CAPI3REF: Find The Database Handle Of A Prepared Statement ** METHOD: sqlite3_stmt ** ** ^The sqlite3_db_handle interface returns the [database connection] handle ** to which a [prepared statement] belongs. ^The [database connection] ** returned by sqlite3_db_handle is the same [database connection] ** that was the first argument ** to the [sqlite3_prepare_v2()] call (or its variants) that was used to ** create the statement in the first place. */ SQLITE_API sqlite3 *sqlite3_db_handle(sqlite3_stmt*); /* ** CAPI3REF: Return The Filename For A Database Connection ** METHOD: sqlite3 ** ** ^The sqlite3_db_filename(D,N) interface returns a pointer to the filename ** associated with database N of connection D. ** ^If there is no attached database N on the database ** connection D, or if database N is a temporary or in-memory database, then ** this function will return either a NULL pointer or an empty string. ** ** ^The string value returned by this routine is owned and managed by ** the database connection. ^The value will be valid until the database N ** is [DETACH]-ed or until the database connection closes. ** ** ^The filename returned by this function is the output of the ** xFullPathname method of the [VFS]. ^In other words, the filename ** will be an absolute pathname, even if the filename used ** to open the database originally was a URI or relative pathname. ** ** If the filename pointer returned by this routine is not NULL, then it ** can be used as the filename input parameter to these routines: **
    **
  • [sqlite3_uri_parameter()] **
  • [sqlite3_uri_boolean()] **
  • [sqlite3_uri_int64()] **
  • [sqlite3_filename_database()] **
  • [sqlite3_filename_journal()] **
  • [sqlite3_filename_wal()] **
*/ SQLITE_API const char *sqlite3_db_filename(sqlite3 *db, const char *zDbName); /* ** CAPI3REF: Determine if a database is read-only ** METHOD: sqlite3 ** ** ^The sqlite3_db_readonly(D,N) interface returns 1 if the database N ** of connection D is read-only, 0 if it is read/write, or -1 if N is not ** the name of a database on connection D. */ SQLITE_API int sqlite3_db_readonly(sqlite3 *db, const char *zDbName); /* ** CAPI3REF: Find the next prepared statement ** METHOD: sqlite3 ** ** ^This interface returns a pointer to the next [prepared statement] after ** pStmt associated with the [database connection] pDb. ^If pStmt is NULL ** then this interface returns a pointer to the first prepared statement ** associated with the database connection pDb. ^If no prepared statement ** satisfies the conditions of this routine, it returns NULL. ** ** The [database connection] pointer D in a call to ** [sqlite3_next_stmt(D,S)] must refer to an open database ** connection and in particular must not be a NULL pointer. */ SQLITE_API sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt); /* ** CAPI3REF: Commit And Rollback Notification Callbacks ** METHOD: sqlite3 ** ** ^The sqlite3_commit_hook() interface registers a callback ** function to be invoked whenever a transaction is [COMMIT | committed]. ** ^Any callback set by a previous call to sqlite3_commit_hook() ** for the same database connection is overridden. ** ^The sqlite3_rollback_hook() interface registers a callback ** function to be invoked whenever a transaction is [ROLLBACK | rolled back]. ** ^Any callback set by a previous call to sqlite3_rollback_hook() ** for the same database connection is overridden. ** ^The pArg argument is passed through to the callback. ** ^If the callback on a commit hook function returns non-zero, ** then the commit is converted into a rollback. ** ** ^The sqlite3_commit_hook(D,C,P) and sqlite3_rollback_hook(D,C,P) functions ** return the P argument from the previous call of the same function ** on the same [database connection] D, or NULL for ** the first call for each function on D. ** ** The commit and rollback hook callbacks are not reentrant. ** The callback implementation must not do anything that will modify ** the database connection that invoked the callback. Any actions ** to modify the database connection must be deferred until after the ** completion of the [sqlite3_step()] call that triggered the commit ** or rollback hook in the first place. ** Note that running any other SQL statements, including SELECT statements, ** or merely calling [sqlite3_prepare_v2()] and [sqlite3_step()] will modify ** the database connections for the meaning of "modify" in this paragraph. ** ** ^Registering a NULL function disables the callback. ** ** ^When the commit hook callback routine returns zero, the [COMMIT] ** operation is allowed to continue normally. ^If the commit hook ** returns non-zero, then the [COMMIT] is converted into a [ROLLBACK]. ** ^The rollback hook is invoked on a rollback that results from a commit ** hook returning non-zero, just as it would be with any other rollback. ** ** ^For the purposes of this API, a transaction is said to have been ** rolled back if an explicit "ROLLBACK" statement is executed, or ** an error or constraint causes an implicit rollback to occur. ** ^The rollback callback is not invoked if a transaction is ** automatically rolled back because the database connection is closed. ** ** See also the [sqlite3_update_hook()] interface. */ SQLITE_API void *sqlite3_commit_hook(sqlite3*, int(*)(void*), void*); SQLITE_API void *sqlite3_rollback_hook(sqlite3*, void(*)(void *), void*); /* ** CAPI3REF: Data Change Notification Callbacks ** METHOD: sqlite3 ** ** ^The sqlite3_update_hook() interface registers a callback function ** with the [database connection] identified by the first argument ** to be invoked whenever a row is updated, inserted or deleted in ** a [rowid table]. ** ^Any callback set by a previous call to this function ** for the same database connection is overridden. ** ** ^The second argument is a pointer to the function to invoke when a ** row is updated, inserted or deleted in a rowid table. ** ^The first argument to the callback is a copy of the third argument ** to sqlite3_update_hook(). ** ^The second callback argument is one of [SQLITE_INSERT], [SQLITE_DELETE], ** or [SQLITE_UPDATE], depending on the operation that caused the callback ** to be invoked. ** ^The third and fourth arguments to the callback contain pointers to the ** database and table name containing the affected row. ** ^The final callback parameter is the [rowid] of the row. ** ^In the case of an update, this is the [rowid] after the update takes place. ** ** ^(The update hook is not invoked when internal system tables are ** modified (i.e. sqlite_sequence).)^ ** ^The update hook is not invoked when [WITHOUT ROWID] tables are modified. ** ** ^In the current implementation, the update hook ** is not invoked when conflicting rows are deleted because of an ** [ON CONFLICT | ON CONFLICT REPLACE] clause. ^Nor is the update hook ** invoked when rows are deleted using the [truncate optimization]. ** The exceptions defined in this paragraph might change in a future ** release of SQLite. ** ** The update hook implementation must not do anything that will modify ** the database connection that invoked the update hook. Any actions ** to modify the database connection must be deferred until after the ** completion of the [sqlite3_step()] call that triggered the update hook. ** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their ** database connections for the meaning of "modify" in this paragraph. ** ** ^The sqlite3_update_hook(D,C,P) function ** returns the P argument from the previous call ** on the same [database connection] D, or NULL for ** the first call on D. ** ** See also the [sqlite3_commit_hook()], [sqlite3_rollback_hook()], ** and [sqlite3_preupdate_hook()] interfaces. */ SQLITE_API void *sqlite3_update_hook( sqlite3*, void(*)(void *,int ,char const *,char const *,sqlite3_int64), void* ); /* ** CAPI3REF: Enable Or Disable Shared Pager Cache ** ** ^(This routine enables or disables the sharing of the database cache ** and schema data structures between [database connection | connections] ** to the same database. Sharing is enabled if the argument is true ** and disabled if the argument is false.)^ ** ** ^Cache sharing is enabled and disabled for an entire process. ** This is a change as of SQLite [version 3.5.0] ([dateof:3.5.0]). ** In prior versions of SQLite, ** sharing was enabled or disabled for each thread separately. ** ** ^(The cache sharing mode set by this interface effects all subsequent ** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()]. ** Existing database connections continue to use the sharing mode ** that was in effect at the time they were opened.)^ ** ** ^(This routine returns [SQLITE_OK] if shared cache was enabled or disabled ** successfully. An [error code] is returned otherwise.)^ ** ** ^Shared cache is disabled by default. It is recommended that it stay ** that way. In other words, do not use this routine. This interface ** continues to be provided for historical compatibility, but its use is ** discouraged. Any use of shared cache is discouraged. If shared cache ** must be used, it is recommended that shared cache only be enabled for ** individual database connections using the [sqlite3_open_v2()] interface ** with the [SQLITE_OPEN_SHAREDCACHE] flag. ** ** Note: This method is disabled on MacOS X 10.7 and iOS version 5.0 ** and will always return SQLITE_MISUSE. On those systems, ** shared cache mode should be enabled per-database connection via ** [sqlite3_open_v2()] with [SQLITE_OPEN_SHAREDCACHE]. ** ** This interface is threadsafe on processors where writing a ** 32-bit integer is atomic. ** ** See Also: [SQLite Shared-Cache Mode] */ SQLITE_API int sqlite3_enable_shared_cache(int); /* ** CAPI3REF: Attempt To Free Heap Memory ** ** ^The sqlite3_release_memory() interface attempts to free N bytes ** of heap memory by deallocating non-essential memory allocations ** held by the database library. Memory used to cache database ** pages to improve performance is an example of non-essential memory. ** ^sqlite3_release_memory() returns the number of bytes actually freed, ** which might be more or less than the amount requested. ** ^The sqlite3_release_memory() routine is a no-op returning zero ** if SQLite is not compiled with [SQLITE_ENABLE_MEMORY_MANAGEMENT]. ** ** See also: [sqlite3_db_release_memory()] */ SQLITE_API int sqlite3_release_memory(int); /* ** CAPI3REF: Free Memory Used By A Database Connection ** METHOD: sqlite3 ** ** ^The sqlite3_db_release_memory(D) interface attempts to free as much heap ** memory as possible from database connection D. Unlike the ** [sqlite3_release_memory()] interface, this interface is in effect even ** when the [SQLITE_ENABLE_MEMORY_MANAGEMENT] compile-time option is ** omitted. ** ** See also: [sqlite3_release_memory()] */ SQLITE_API int sqlite3_db_release_memory(sqlite3*); /* ** CAPI3REF: Impose A Limit On Heap Size ** ** These interfaces impose limits on the amount of heap memory that will be ** by all database connections within a single process. ** ** ^The sqlite3_soft_heap_limit64() interface sets and/or queries the ** soft limit on the amount of heap memory that may be allocated by SQLite. ** ^SQLite strives to keep heap memory utilization below the soft heap ** limit by reducing the number of pages held in the page cache ** as heap memory usages approaches the limit. ** ^The soft heap limit is "soft" because even though SQLite strives to stay ** below the limit, it will exceed the limit rather than generate ** an [SQLITE_NOMEM] error. In other words, the soft heap limit ** is advisory only. ** ** ^The sqlite3_hard_heap_limit64(N) interface sets a hard upper bound of ** N bytes on the amount of memory that will be allocated. ^The ** sqlite3_hard_heap_limit64(N) interface is similar to ** sqlite3_soft_heap_limit64(N) except that memory allocations will fail ** when the hard heap limit is reached. ** ** ^The return value from both sqlite3_soft_heap_limit64() and ** sqlite3_hard_heap_limit64() is the size of ** the heap limit prior to the call, or negative in the case of an ** error. ^If the argument N is negative ** then no change is made to the heap limit. Hence, the current ** size of heap limits can be determined by invoking ** sqlite3_soft_heap_limit64(-1) or sqlite3_hard_heap_limit(-1). ** ** ^Setting the heap limits to zero disables the heap limiter mechanism. ** ** ^The soft heap limit may not be greater than the hard heap limit. ** ^If the hard heap limit is enabled and if sqlite3_soft_heap_limit(N) ** is invoked with a value of N that is greater than the hard heap limit, ** the the soft heap limit is set to the value of the hard heap limit. ** ^The soft heap limit is automatically enabled whenever the hard heap ** limit is enabled. ^When sqlite3_hard_heap_limit64(N) is invoked and ** the soft heap limit is outside the range of 1..N, then the soft heap ** limit is set to N. ^Invoking sqlite3_soft_heap_limit64(0) when the ** hard heap limit is enabled makes the soft heap limit equal to the ** hard heap limit. ** ** The memory allocation limits can also be adjusted using ** [PRAGMA soft_heap_limit] and [PRAGMA hard_heap_limit]. ** ** ^(The heap limits are not enforced in the current implementation ** if one or more of following conditions are true: ** **
    **
  • The limit value is set to zero. **
  • Memory accounting is disabled using a combination of the ** [sqlite3_config]([SQLITE_CONFIG_MEMSTATUS],...) start-time option and ** the [SQLITE_DEFAULT_MEMSTATUS] compile-time option. **
  • An alternative page cache implementation is specified using ** [sqlite3_config]([SQLITE_CONFIG_PCACHE2],...). **
  • The page cache allocates from its own memory pool supplied ** by [sqlite3_config]([SQLITE_CONFIG_PAGECACHE],...) rather than ** from the heap. **
)^ ** ** The circumstances under which SQLite will enforce the heap limits may ** changes in future releases of SQLite. */ SQLITE_API sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 N); SQLITE_API sqlite3_int64 sqlite3_hard_heap_limit64(sqlite3_int64 N); /* ** CAPI3REF: Deprecated Soft Heap Limit Interface ** DEPRECATED ** ** This is a deprecated version of the [sqlite3_soft_heap_limit64()] ** interface. This routine is provided for historical compatibility ** only. All new applications should use the ** [sqlite3_soft_heap_limit64()] interface rather than this one. */ SQLITE_API SQLITE_DEPRECATED void sqlite3_soft_heap_limit(int N); /* ** CAPI3REF: Extract Metadata About A Column Of A Table ** METHOD: sqlite3 ** ** ^(The sqlite3_table_column_metadata(X,D,T,C,....) routine returns ** information about column C of table T in database D ** on [database connection] X.)^ ^The sqlite3_table_column_metadata() ** interface returns SQLITE_OK and fills in the non-NULL pointers in ** the final five arguments with appropriate values if the specified ** column exists. ^The sqlite3_table_column_metadata() interface returns ** SQLITE_ERROR if the specified column does not exist. ** ^If the column-name parameter to sqlite3_table_column_metadata() is a ** NULL pointer, then this routine simply checks for the existence of the ** table and returns SQLITE_OK if the table exists and SQLITE_ERROR if it ** does not. If the table name parameter T in a call to ** sqlite3_table_column_metadata(X,D,T,C,...) is NULL then the result is ** undefined behavior. ** ** ^The column is identified by the second, third and fourth parameters to ** this function. ^(The second parameter is either the name of the database ** (i.e. "main", "temp", or an attached database) containing the specified ** table or NULL.)^ ^If it is NULL, then all attached databases are searched ** for the table using the same algorithm used by the database engine to ** resolve unqualified table references. ** ** ^The third and fourth parameters to this function are the table and column ** name of the desired column, respectively. ** ** ^Metadata is returned by writing to the memory locations passed as the 5th ** and subsequent parameters to this function. ^Any of these arguments may be ** NULL, in which case the corresponding element of metadata is omitted. ** ** ^(
** **
Parameter Output
Type
Description ** **
5th const char* Data type **
6th const char* Name of default collation sequence **
7th int True if column has a NOT NULL constraint **
8th int True if column is part of the PRIMARY KEY **
9th int True if column is [AUTOINCREMENT] **
**
)^ ** ** ^The memory pointed to by the character pointers returned for the ** declaration type and collation sequence is valid until the next ** call to any SQLite API function. ** ** ^If the specified table is actually a view, an [error code] is returned. ** ** ^If the specified column is "rowid", "oid" or "_rowid_" and the table ** is not a [WITHOUT ROWID] table and an ** [INTEGER PRIMARY KEY] column has been explicitly declared, then the output ** parameters are set for the explicitly declared column. ^(If there is no ** [INTEGER PRIMARY KEY] column, then the outputs ** for the [rowid] are set as follows: ** **
**     data type: "INTEGER"
**     collation sequence: "BINARY"
**     not null: 0
**     primary key: 1
**     auto increment: 0
** 
)^ ** ** ^This function causes all database schemas to be read from disk and ** parsed, if that has not already been done, and returns an error if ** any errors are encountered while loading the schema. */ SQLITE_API int sqlite3_table_column_metadata( sqlite3 *db, /* Connection handle */ const char *zDbName, /* Database name or NULL */ const char *zTableName, /* Table name */ const char *zColumnName, /* Column name */ char const **pzDataType, /* OUTPUT: Declared data type */ char const **pzCollSeq, /* OUTPUT: Collation sequence name */ int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */ int *pPrimaryKey, /* OUTPUT: True if column part of PK */ int *pAutoinc /* OUTPUT: True if column is auto-increment */ ); /* ** CAPI3REF: Load An Extension ** METHOD: sqlite3 ** ** ^This interface loads an SQLite extension library from the named file. ** ** ^The sqlite3_load_extension() interface attempts to load an ** [SQLite extension] library contained in the file zFile. If ** the file cannot be loaded directly, attempts are made to load ** with various operating-system specific extensions added. ** So for example, if "samplelib" cannot be loaded, then names like ** "samplelib.so" or "samplelib.dylib" or "samplelib.dll" might ** be tried also. ** ** ^The entry point is zProc. ** ^(zProc may be 0, in which case SQLite will try to come up with an ** entry point name on its own. It first tries "sqlite3_extension_init". ** If that does not work, it constructs a name "sqlite3_X_init" where the ** X is consists of the lower-case equivalent of all ASCII alphabetic ** characters in the filename from the last "/" to the first following ** "." and omitting any initial "lib".)^ ** ^The sqlite3_load_extension() interface returns ** [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong. ** ^If an error occurs and pzErrMsg is not 0, then the ** [sqlite3_load_extension()] interface shall attempt to ** fill *pzErrMsg with error message text stored in memory ** obtained from [sqlite3_malloc()]. The calling function ** should free this memory by calling [sqlite3_free()]. ** ** ^Extension loading must be enabled using ** [sqlite3_enable_load_extension()] or ** [sqlite3_db_config](db,[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION],1,NULL) ** prior to calling this API, ** otherwise an error will be returned. ** ** Security warning: It is recommended that the ** [SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION] method be used to enable only this ** interface. The use of the [sqlite3_enable_load_extension()] interface ** should be avoided. This will keep the SQL function [load_extension()] ** disabled and prevent SQL injections from giving attackers ** access to extension loading capabilities. ** ** See also the [load_extension() SQL function]. */ SQLITE_API int sqlite3_load_extension( sqlite3 *db, /* Load the extension into this database connection */ const char *zFile, /* Name of the shared library containing extension */ const char *zProc, /* Entry point. Derived from zFile if 0 */ char **pzErrMsg /* Put error message here if not 0 */ ); /* ** CAPI3REF: Enable Or Disable Extension Loading ** METHOD: sqlite3 ** ** ^So as not to open security holes in older applications that are ** unprepared to deal with [extension loading], and as a means of disabling ** [extension loading] while evaluating user-entered SQL, the following API ** is provided to turn the [sqlite3_load_extension()] mechanism on and off. ** ** ^Extension loading is off by default. ** ^Call the sqlite3_enable_load_extension() routine with onoff==1 ** to turn extension loading on and call it with onoff==0 to turn ** it back off again. ** ** ^This interface enables or disables both the C-API ** [sqlite3_load_extension()] and the SQL function [load_extension()]. ** ^(Use [sqlite3_db_config](db,[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION],..) ** to enable or disable only the C-API.)^ ** ** Security warning: It is recommended that extension loading ** be enabled using the [SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION] method ** rather than this interface, so the [load_extension()] SQL function ** remains disabled. This will prevent SQL injections from giving attackers ** access to extension loading capabilities. */ SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff); /* ** CAPI3REF: Automatically Load Statically Linked Extensions ** ** ^This interface causes the xEntryPoint() function to be invoked for ** each new [database connection] that is created. The idea here is that ** xEntryPoint() is the entry point for a statically linked [SQLite extension] ** that is to be automatically loaded into all new database connections. ** ** ^(Even though the function prototype shows that xEntryPoint() takes ** no arguments and returns void, SQLite invokes xEntryPoint() with three ** arguments and expects an integer result as if the signature of the ** entry point where as follows: ** **
**    int xEntryPoint(
**      sqlite3 *db,
**      const char **pzErrMsg,
**      const struct sqlite3_api_routines *pThunk
**    );
** 
)^ ** ** If the xEntryPoint routine encounters an error, it should make *pzErrMsg ** point to an appropriate error message (obtained from [sqlite3_mprintf()]) ** and return an appropriate [error code]. ^SQLite ensures that *pzErrMsg ** is NULL before calling the xEntryPoint(). ^SQLite will invoke ** [sqlite3_free()] on *pzErrMsg after xEntryPoint() returns. ^If any ** xEntryPoint() returns an error, the [sqlite3_open()], [sqlite3_open16()], ** or [sqlite3_open_v2()] call that provoked the xEntryPoint() will fail. ** ** ^Calling sqlite3_auto_extension(X) with an entry point X that is already ** on the list of automatic extensions is a harmless no-op. ^No entry point ** will be called more than once for each database connection that is opened. ** ** See also: [sqlite3_reset_auto_extension()] ** and [sqlite3_cancel_auto_extension()] */ SQLITE_API int sqlite3_auto_extension(void(*xEntryPoint)(void)); /* ** CAPI3REF: Cancel Automatic Extension Loading ** ** ^The [sqlite3_cancel_auto_extension(X)] interface unregisters the ** initialization routine X that was registered using a prior call to ** [sqlite3_auto_extension(X)]. ^The [sqlite3_cancel_auto_extension(X)] ** routine returns 1 if initialization routine X was successfully ** unregistered and it returns 0 if X was not on the list of initialization ** routines. */ SQLITE_API int sqlite3_cancel_auto_extension(void(*xEntryPoint)(void)); /* ** CAPI3REF: Reset Automatic Extension Loading ** ** ^This interface disables all automatic extensions previously ** registered using [sqlite3_auto_extension()]. */ SQLITE_API void sqlite3_reset_auto_extension(void); /* ** The interface to the virtual-table mechanism is currently considered ** to be experimental. The interface might change in incompatible ways. ** If this is a problem for you, do not use the interface at this time. ** ** When the virtual-table mechanism stabilizes, we will declare the ** interface fixed, support it indefinitely, and remove this comment. */ /* ** Structures used by the virtual table interface */ typedef struct sqlite3_vtab sqlite3_vtab; typedef struct sqlite3_index_info sqlite3_index_info; typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; typedef struct sqlite3_module sqlite3_module; /* ** CAPI3REF: Virtual Table Object ** KEYWORDS: sqlite3_module {virtual table module} ** ** This structure, sometimes called a "virtual table module", ** defines the implementation of a [virtual table]. ** This structure consists mostly of methods for the module. ** ** ^A virtual table module is created by filling in a persistent ** instance of this structure and passing a pointer to that instance ** to [sqlite3_create_module()] or [sqlite3_create_module_v2()]. ** ^The registration remains valid until it is replaced by a different ** module or until the [database connection] closes. The content ** of this structure must not change while it is registered with ** any database connection. */ struct sqlite3_module { int iVersion; int (*xCreate)(sqlite3*, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVTab, char**); int (*xConnect)(sqlite3*, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVTab, char**); int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); int (*xDisconnect)(sqlite3_vtab *pVTab); int (*xDestroy)(sqlite3_vtab *pVTab); int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); int (*xClose)(sqlite3_vtab_cursor*); int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, int argc, sqlite3_value **argv); int (*xNext)(sqlite3_vtab_cursor*); int (*xEof)(sqlite3_vtab_cursor*); int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int); int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid); int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *); int (*xBegin)(sqlite3_vtab *pVTab); int (*xSync)(sqlite3_vtab *pVTab); int (*xCommit)(sqlite3_vtab *pVTab); int (*xRollback)(sqlite3_vtab *pVTab); int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName, void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), void **ppArg); int (*xRename)(sqlite3_vtab *pVtab, const char *zNew); /* The methods above are in version 1 of the sqlite_module object. Those ** below are for version 2 and greater. */ int (*xSavepoint)(sqlite3_vtab *pVTab, int); int (*xRelease)(sqlite3_vtab *pVTab, int); int (*xRollbackTo)(sqlite3_vtab *pVTab, int); /* The methods above are in versions 1 and 2 of the sqlite_module object. ** Those below are for version 3 and greater. */ int (*xShadowName)(const char*); }; /* ** CAPI3REF: Virtual Table Indexing Information ** KEYWORDS: sqlite3_index_info ** ** The sqlite3_index_info structure and its substructures is used as part ** of the [virtual table] interface to ** pass information into and receive the reply from the [xBestIndex] ** method of a [virtual table module]. The fields under **Inputs** are the ** inputs to xBestIndex and are read-only. xBestIndex inserts its ** results into the **Outputs** fields. ** ** ^(The aConstraint[] array records WHERE clause constraints of the form: ** **
column OP expr
** ** where OP is =, <, <=, >, or >=.)^ ^(The particular operator is ** stored in aConstraint[].op using one of the ** [SQLITE_INDEX_CONSTRAINT_EQ | SQLITE_INDEX_CONSTRAINT_ values].)^ ** ^(The index of the column is stored in ** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the ** expr on the right-hand side can be evaluated (and thus the constraint ** is usable) and false if it cannot.)^ ** ** ^The optimizer automatically inverts terms of the form "expr OP column" ** and makes other simplifications to the WHERE clause in an attempt to ** get as many WHERE clause terms into the form shown above as possible. ** ^The aConstraint[] array only reports WHERE clause terms that are ** relevant to the particular virtual table being queried. ** ** ^Information about the ORDER BY clause is stored in aOrderBy[]. ** ^Each term of aOrderBy records a column of the ORDER BY clause. ** ** The colUsed field indicates which columns of the virtual table may be ** required by the current scan. Virtual table columns are numbered from ** zero in the order in which they appear within the CREATE TABLE statement ** passed to sqlite3_declare_vtab(). For the first 63 columns (columns 0-62), ** the corresponding bit is set within the colUsed mask if the column may be ** required by SQLite. If the table has at least 64 columns and any column ** to the right of the first 63 is required, then bit 63 of colUsed is also ** set. In other words, column iCol may be required if the expression ** (colUsed & ((sqlite3_uint64)1 << (iCol>=63 ? 63 : iCol))) evaluates to ** non-zero. ** ** The [xBestIndex] method must fill aConstraintUsage[] with information ** about what parameters to pass to xFilter. ^If argvIndex>0 then ** the right-hand side of the corresponding aConstraint[] is evaluated ** and becomes the argvIndex-th entry in argv. ^(If aConstraintUsage[].omit ** is true, then the constraint is assumed to be fully handled by the ** virtual table and might not be checked again by the byte code.)^ ^(The ** aConstraintUsage[].omit flag is an optimization hint. When the omit flag ** is left in its default setting of false, the constraint will always be ** checked separately in byte code. If the omit flag is change to true, then ** the constraint may or may not be checked in byte code. In other words, ** when the omit flag is true there is no guarantee that the constraint will ** not be checked again using byte code.)^ ** ** ^The idxNum and idxPtr values are recorded and passed into the ** [xFilter] method. ** ^[sqlite3_free()] is used to free idxPtr if and only if ** needToFreeIdxPtr is true. ** ** ^The orderByConsumed means that output from [xFilter]/[xNext] will occur in ** the correct order to satisfy the ORDER BY clause so that no separate ** sorting step is required. ** ** ^The estimatedCost value is an estimate of the cost of a particular ** strategy. A cost of N indicates that the cost of the strategy is similar ** to a linear scan of an SQLite table with N rows. A cost of log(N) ** indicates that the expense of the operation is similar to that of a ** binary search on a unique indexed field of an SQLite table with N rows. ** ** ^The estimatedRows value is an estimate of the number of rows that ** will be returned by the strategy. ** ** The xBestIndex method may optionally populate the idxFlags field with a ** mask of SQLITE_INDEX_SCAN_* flags. Currently there is only one such flag - ** SQLITE_INDEX_SCAN_UNIQUE. If the xBestIndex method sets this flag, SQLite ** assumes that the strategy may visit at most one row. ** ** Additionally, if xBestIndex sets the SQLITE_INDEX_SCAN_UNIQUE flag, then ** SQLite also assumes that if a call to the xUpdate() method is made as ** part of the same statement to delete or update a virtual table row and the ** implementation returns SQLITE_CONSTRAINT, then there is no need to rollback ** any database changes. In other words, if the xUpdate() returns ** SQLITE_CONSTRAINT, the database contents must be exactly as they were ** before xUpdate was called. By contrast, if SQLITE_INDEX_SCAN_UNIQUE is not ** set and xUpdate returns SQLITE_CONSTRAINT, any database changes made by ** the xUpdate method are automatically rolled back by SQLite. ** ** IMPORTANT: The estimatedRows field was added to the sqlite3_index_info ** structure for SQLite [version 3.8.2] ([dateof:3.8.2]). ** If a virtual table extension is ** used with an SQLite version earlier than 3.8.2, the results of attempting ** to read or write the estimatedRows field are undefined (but are likely ** to include crashing the application). The estimatedRows field should ** therefore only be used if [sqlite3_libversion_number()] returns a ** value greater than or equal to 3008002. Similarly, the idxFlags field ** was added for [version 3.9.0] ([dateof:3.9.0]). ** It may therefore only be used if ** sqlite3_libversion_number() returns a value greater than or equal to ** 3009000. */ struct sqlite3_index_info { /* Inputs */ int nConstraint; /* Number of entries in aConstraint */ struct sqlite3_index_constraint { int iColumn; /* Column constrained. -1 for ROWID */ unsigned char op; /* Constraint operator */ unsigned char usable; /* True if this constraint is usable */ int iTermOffset; /* Used internally - xBestIndex should ignore */ } *aConstraint; /* Table of WHERE clause constraints */ int nOrderBy; /* Number of terms in the ORDER BY clause */ struct sqlite3_index_orderby { int iColumn; /* Column number */ unsigned char desc; /* True for DESC. False for ASC. */ } *aOrderBy; /* The ORDER BY clause */ /* Outputs */ struct sqlite3_index_constraint_usage { int argvIndex; /* if >0, constraint is part of argv to xFilter */ unsigned char omit; /* Do not code a test for this constraint */ } *aConstraintUsage; int idxNum; /* Number used to identify the index */ char *idxStr; /* String, possibly obtained from sqlite3_malloc */ int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if true */ int orderByConsumed; /* True if output is already ordered */ double estimatedCost; /* Estimated cost of using this index */ /* Fields below are only available in SQLite 3.8.2 and later */ sqlite3_int64 estimatedRows; /* Estimated number of rows returned */ /* Fields below are only available in SQLite 3.9.0 and later */ int idxFlags; /* Mask of SQLITE_INDEX_SCAN_* flags */ /* Fields below are only available in SQLite 3.10.0 and later */ sqlite3_uint64 colUsed; /* Input: Mask of columns used by statement */ }; /* ** CAPI3REF: Virtual Table Scan Flags ** ** Virtual table implementations are allowed to set the ** [sqlite3_index_info].idxFlags field to some combination of ** these bits. */ #define SQLITE_INDEX_SCAN_UNIQUE 1 /* Scan visits at most 1 row */ /* ** CAPI3REF: Virtual Table Constraint Operator Codes ** ** These macros define the allowed values for the ** [sqlite3_index_info].aConstraint[].op field. Each value represents ** an operator that is part of a constraint term in the wHERE clause of ** a query that uses a [virtual table]. */ #define SQLITE_INDEX_CONSTRAINT_EQ 2 #define SQLITE_INDEX_CONSTRAINT_GT 4 #define SQLITE_INDEX_CONSTRAINT_LE 8 #define SQLITE_INDEX_CONSTRAINT_LT 16 #define SQLITE_INDEX_CONSTRAINT_GE 32 #define SQLITE_INDEX_CONSTRAINT_MATCH 64 #define SQLITE_INDEX_CONSTRAINT_LIKE 65 #define SQLITE_INDEX_CONSTRAINT_GLOB 66 #define SQLITE_INDEX_CONSTRAINT_REGEXP 67 #define SQLITE_INDEX_CONSTRAINT_NE 68 #define SQLITE_INDEX_CONSTRAINT_ISNOT 69 #define SQLITE_INDEX_CONSTRAINT_ISNOTNULL 70 #define SQLITE_INDEX_CONSTRAINT_ISNULL 71 #define SQLITE_INDEX_CONSTRAINT_IS 72 #define SQLITE_INDEX_CONSTRAINT_FUNCTION 150 /* ** CAPI3REF: Register A Virtual Table Implementation ** METHOD: sqlite3 ** ** ^These routines are used to register a new [virtual table module] name. ** ^Module names must be registered before ** creating a new [virtual table] using the module and before using a ** preexisting [virtual table] for the module. ** ** ^The module name is registered on the [database connection] specified ** by the first parameter. ^The name of the module is given by the ** second parameter. ^The third parameter is a pointer to ** the implementation of the [virtual table module]. ^The fourth ** parameter is an arbitrary client data pointer that is passed through ** into the [xCreate] and [xConnect] methods of the virtual table module ** when a new virtual table is be being created or reinitialized. ** ** ^The sqlite3_create_module_v2() interface has a fifth parameter which ** is a pointer to a destructor for the pClientData. ^SQLite will ** invoke the destructor function (if it is not NULL) when SQLite ** no longer needs the pClientData pointer. ^The destructor will also ** be invoked if the call to sqlite3_create_module_v2() fails. ** ^The sqlite3_create_module() ** interface is equivalent to sqlite3_create_module_v2() with a NULL ** destructor. ** ** ^If the third parameter (the pointer to the sqlite3_module object) is ** NULL then no new module is create and any existing modules with the ** same name are dropped. ** ** See also: [sqlite3_drop_modules()] */ SQLITE_API int sqlite3_create_module( sqlite3 *db, /* SQLite connection to register module with */ const char *zName, /* Name of the module */ const sqlite3_module *p, /* Methods for the module */ void *pClientData /* Client data for xCreate/xConnect */ ); SQLITE_API int sqlite3_create_module_v2( sqlite3 *db, /* SQLite connection to register module with */ const char *zName, /* Name of the module */ const sqlite3_module *p, /* Methods for the module */ void *pClientData, /* Client data for xCreate/xConnect */ void(*xDestroy)(void*) /* Module destructor function */ ); /* ** CAPI3REF: Remove Unnecessary Virtual Table Implementations ** METHOD: sqlite3 ** ** ^The sqlite3_drop_modules(D,L) interface removes all virtual ** table modules from database connection D except those named on list L. ** The L parameter must be either NULL or a pointer to an array of pointers ** to strings where the array is terminated by a single NULL pointer. ** ^If the L parameter is NULL, then all virtual table modules are removed. ** ** See also: [sqlite3_create_module()] */ SQLITE_API int sqlite3_drop_modules( sqlite3 *db, /* Remove modules from this connection */ const char **azKeep /* Except, do not remove the ones named here */ ); /* ** CAPI3REF: Virtual Table Instance Object ** KEYWORDS: sqlite3_vtab ** ** Every [virtual table module] implementation uses a subclass ** of this object to describe a particular instance ** of the [virtual table]. Each subclass will ** be tailored to the specific needs of the module implementation. ** The purpose of this superclass is to define certain fields that are ** common to all module implementations. ** ** ^Virtual tables methods can set an error message by assigning a ** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should ** take care that any prior string is freed by a call to [sqlite3_free()] ** prior to assigning a new string to zErrMsg. ^After the error message ** is delivered up to the client application, the string will be automatically ** freed by sqlite3_free() and the zErrMsg field will be zeroed. */ struct sqlite3_vtab { const sqlite3_module *pModule; /* The module for this virtual table */ int nRef; /* Number of open cursors */ char *zErrMsg; /* Error message from sqlite3_mprintf() */ /* Virtual table implementations will typically add additional fields */ }; /* ** CAPI3REF: Virtual Table Cursor Object ** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor} ** ** Every [virtual table module] implementation uses a subclass of the ** following structure to describe cursors that point into the ** [virtual table] and are used ** to loop through the virtual table. Cursors are created using the ** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed ** by the [sqlite3_module.xClose | xClose] method. Cursors are used ** by the [xFilter], [xNext], [xEof], [xColumn], and [xRowid] methods ** of the module. Each module implementation will define ** the content of a cursor structure to suit its own needs. ** ** This superclass exists in order to define fields of the cursor that ** are common to all implementations. */ struct sqlite3_vtab_cursor { sqlite3_vtab *pVtab; /* Virtual table of this cursor */ /* Virtual table implementations will typically add additional fields */ }; /* ** CAPI3REF: Declare The Schema Of A Virtual Table ** ** ^The [xCreate] and [xConnect] methods of a ** [virtual table module] call this interface ** to declare the format (the names and datatypes of the columns) of ** the virtual tables they implement. */ SQLITE_API int sqlite3_declare_vtab(sqlite3*, const char *zSQL); /* ** CAPI3REF: Overload A Function For A Virtual Table ** METHOD: sqlite3 ** ** ^(Virtual tables can provide alternative implementations of functions ** using the [xFindFunction] method of the [virtual table module]. ** But global versions of those functions ** must exist in order to be overloaded.)^ ** ** ^(This API makes sure a global version of a function with a particular ** name and number of parameters exists. If no such function exists ** before this API is called, a new function is created.)^ ^The implementation ** of the new function always causes an exception to be thrown. So ** the new function is not good for anything by itself. Its only ** purpose is to be a placeholder function that can be overloaded ** by a [virtual table]. */ SQLITE_API int sqlite3_overload_function(sqlite3*, const char *zFuncName, int nArg); /* ** The interface to the virtual-table mechanism defined above (back up ** to a comment remarkably similar to this one) is currently considered ** to be experimental. The interface might change in incompatible ways. ** If this is a problem for you, do not use the interface at this time. ** ** When the virtual-table mechanism stabilizes, we will declare the ** interface fixed, support it indefinitely, and remove this comment. */ /* ** CAPI3REF: A Handle To An Open BLOB ** KEYWORDS: {BLOB handle} {BLOB handles} ** ** An instance of this object represents an open BLOB on which ** [sqlite3_blob_open | incremental BLOB I/O] can be performed. ** ^Objects of this type are created by [sqlite3_blob_open()] ** and destroyed by [sqlite3_blob_close()]. ** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces ** can be used to read or write small subsections of the BLOB. ** ^The [sqlite3_blob_bytes()] interface returns the size of the BLOB in bytes. */ typedef struct sqlite3_blob sqlite3_blob; /* ** CAPI3REF: Open A BLOB For Incremental I/O ** METHOD: sqlite3 ** CONSTRUCTOR: sqlite3_blob ** ** ^(This interfaces opens a [BLOB handle | handle] to the BLOB located ** in row iRow, column zColumn, table zTable in database zDb; ** in other words, the same BLOB that would be selected by: ** **
**     SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
** 
)^ ** ** ^(Parameter zDb is not the filename that contains the database, but ** rather the symbolic name of the database. For attached databases, this is ** the name that appears after the AS keyword in the [ATTACH] statement. ** For the main database file, the database name is "main". For TEMP ** tables, the database name is "temp".)^ ** ** ^If the flags parameter is non-zero, then the BLOB is opened for read ** and write access. ^If the flags parameter is zero, the BLOB is opened for ** read-only access. ** ** ^(On success, [SQLITE_OK] is returned and the new [BLOB handle] is stored ** in *ppBlob. Otherwise an [error code] is returned and, unless the error ** code is SQLITE_MISUSE, *ppBlob is set to NULL.)^ ^This means that, provided ** the API is not misused, it is always safe to call [sqlite3_blob_close()] ** on *ppBlob after this function it returns. ** ** This function fails with SQLITE_ERROR if any of the following are true: **
    **
  • ^(Database zDb does not exist)^, **
  • ^(Table zTable does not exist within database zDb)^, **
  • ^(Table zTable is a WITHOUT ROWID table)^, **
  • ^(Column zColumn does not exist)^, **
  • ^(Row iRow is not present in the table)^, **
  • ^(The specified column of row iRow contains a value that is not ** a TEXT or BLOB value)^, **
  • ^(Column zColumn is part of an index, PRIMARY KEY or UNIQUE ** constraint and the blob is being opened for read/write access)^, **
  • ^([foreign key constraints | Foreign key constraints] are enabled, ** column zColumn is part of a [child key] definition and the blob is ** being opened for read/write access)^. **
** ** ^Unless it returns SQLITE_MISUSE, this function sets the ** [database connection] error code and message accessible via ** [sqlite3_errcode()] and [sqlite3_errmsg()] and related functions. ** ** A BLOB referenced by sqlite3_blob_open() may be read using the ** [sqlite3_blob_read()] interface and modified by using ** [sqlite3_blob_write()]. The [BLOB handle] can be moved to a ** different row of the same table using the [sqlite3_blob_reopen()] ** interface. However, the column, table, or database of a [BLOB handle] ** cannot be changed after the [BLOB handle] is opened. ** ** ^(If the row that a BLOB handle points to is modified by an ** [UPDATE], [DELETE], or by [ON CONFLICT] side-effects ** then the BLOB handle is marked as "expired". ** This is true if any column of the row is changed, even a column ** other than the one the BLOB handle is open on.)^ ** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for ** an expired BLOB handle fail with a return code of [SQLITE_ABORT]. ** ^(Changes written into a BLOB prior to the BLOB expiring are not ** rolled back by the expiration of the BLOB. Such changes will eventually ** commit if the transaction continues to completion.)^ ** ** ^Use the [sqlite3_blob_bytes()] interface to determine the size of ** the opened blob. ^The size of a blob may not be changed by this ** interface. Use the [UPDATE] SQL command to change the size of a ** blob. ** ** ^The [sqlite3_bind_zeroblob()] and [sqlite3_result_zeroblob()] interfaces ** and the built-in [zeroblob] SQL function may be used to create a ** zero-filled blob to read or write using the incremental-blob interface. ** ** To avoid a resource leak, every open [BLOB handle] should eventually ** be released by a call to [sqlite3_blob_close()]. ** ** See also: [sqlite3_blob_close()], ** [sqlite3_blob_reopen()], [sqlite3_blob_read()], ** [sqlite3_blob_bytes()], [sqlite3_blob_write()]. */ SQLITE_API int sqlite3_blob_open( sqlite3*, const char *zDb, const char *zTable, const char *zColumn, sqlite3_int64 iRow, int flags, sqlite3_blob **ppBlob ); /* ** CAPI3REF: Move a BLOB Handle to a New Row ** METHOD: sqlite3_blob ** ** ^This function is used to move an existing [BLOB handle] so that it points ** to a different row of the same database table. ^The new row is identified ** by the rowid value passed as the second argument. Only the row can be ** changed. ^The database, table and column on which the blob handle is open ** remain the same. Moving an existing [BLOB handle] to a new row is ** faster than closing the existing handle and opening a new one. ** ** ^(The new row must meet the same criteria as for [sqlite3_blob_open()] - ** it must exist and there must be either a blob or text value stored in ** the nominated column.)^ ^If the new row is not present in the table, or if ** it does not contain a blob or text value, or if another error occurs, an ** SQLite error code is returned and the blob handle is considered aborted. ** ^All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or ** [sqlite3_blob_reopen()] on an aborted blob handle immediately return ** SQLITE_ABORT. ^Calling [sqlite3_blob_bytes()] on an aborted blob handle ** always returns zero. ** ** ^This function sets the database handle error code and message. */ SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64); /* ** CAPI3REF: Close A BLOB Handle ** DESTRUCTOR: sqlite3_blob ** ** ^This function closes an open [BLOB handle]. ^(The BLOB handle is closed ** unconditionally. Even if this routine returns an error code, the ** handle is still closed.)^ ** ** ^If the blob handle being closed was opened for read-write access, and if ** the database is in auto-commit mode and there are no other open read-write ** blob handles or active write statements, the current transaction is ** committed. ^If an error occurs while committing the transaction, an error ** code is returned and the transaction rolled back. ** ** Calling this function with an argument that is not a NULL pointer or an ** open blob handle results in undefined behaviour. ^Calling this routine ** with a null pointer (such as would be returned by a failed call to ** [sqlite3_blob_open()]) is a harmless no-op. ^Otherwise, if this function ** is passed a valid open blob handle, the values returned by the ** sqlite3_errcode() and sqlite3_errmsg() functions are set before returning. */ SQLITE_API int sqlite3_blob_close(sqlite3_blob *); /* ** CAPI3REF: Return The Size Of An Open BLOB ** METHOD: sqlite3_blob ** ** ^Returns the size in bytes of the BLOB accessible via the ** successfully opened [BLOB handle] in its only argument. ^The ** incremental blob I/O routines can only read or overwriting existing ** blob content; they cannot change the size of a blob. ** ** This routine only works on a [BLOB handle] which has been created ** by a prior successful call to [sqlite3_blob_open()] and which has not ** been closed by [sqlite3_blob_close()]. Passing any other pointer in ** to this routine results in undefined and probably undesirable behavior. */ SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *); /* ** CAPI3REF: Read Data From A BLOB Incrementally ** METHOD: sqlite3_blob ** ** ^(This function is used to read data from an open [BLOB handle] into a ** caller-supplied buffer. N bytes of data are copied into buffer Z ** from the open BLOB, starting at offset iOffset.)^ ** ** ^If offset iOffset is less than N bytes from the end of the BLOB, ** [SQLITE_ERROR] is returned and no data is read. ^If N or iOffset is ** less than zero, [SQLITE_ERROR] is returned and no data is read. ** ^The size of the blob (and hence the maximum value of N+iOffset) ** can be determined using the [sqlite3_blob_bytes()] interface. ** ** ^An attempt to read from an expired [BLOB handle] fails with an ** error code of [SQLITE_ABORT]. ** ** ^(On success, sqlite3_blob_read() returns SQLITE_OK. ** Otherwise, an [error code] or an [extended error code] is returned.)^ ** ** This routine only works on a [BLOB handle] which has been created ** by a prior successful call to [sqlite3_blob_open()] and which has not ** been closed by [sqlite3_blob_close()]. Passing any other pointer in ** to this routine results in undefined and probably undesirable behavior. ** ** See also: [sqlite3_blob_write()]. */ SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset); /* ** CAPI3REF: Write Data Into A BLOB Incrementally ** METHOD: sqlite3_blob ** ** ^(This function is used to write data into an open [BLOB handle] from a ** caller-supplied buffer. N bytes of data are copied from the buffer Z ** into the open BLOB, starting at offset iOffset.)^ ** ** ^(On success, sqlite3_blob_write() returns SQLITE_OK. ** Otherwise, an [error code] or an [extended error code] is returned.)^ ** ^Unless SQLITE_MISUSE is returned, this function sets the ** [database connection] error code and message accessible via ** [sqlite3_errcode()] and [sqlite3_errmsg()] and related functions. ** ** ^If the [BLOB handle] passed as the first argument was not opened for ** writing (the flags parameter to [sqlite3_blob_open()] was zero), ** this function returns [SQLITE_READONLY]. ** ** This function may only modify the contents of the BLOB; it is ** not possible to increase the size of a BLOB using this API. ** ^If offset iOffset is less than N bytes from the end of the BLOB, ** [SQLITE_ERROR] is returned and no data is written. The size of the ** BLOB (and hence the maximum value of N+iOffset) can be determined ** using the [sqlite3_blob_bytes()] interface. ^If N or iOffset are less ** than zero [SQLITE_ERROR] is returned and no data is written. ** ** ^An attempt to write to an expired [BLOB handle] fails with an ** error code of [SQLITE_ABORT]. ^Writes to the BLOB that occurred ** before the [BLOB handle] expired are not rolled back by the ** expiration of the handle, though of course those changes might ** have been overwritten by the statement that expired the BLOB handle ** or by other independent statements. ** ** This routine only works on a [BLOB handle] which has been created ** by a prior successful call to [sqlite3_blob_open()] and which has not ** been closed by [sqlite3_blob_close()]. Passing any other pointer in ** to this routine results in undefined and probably undesirable behavior. ** ** See also: [sqlite3_blob_read()]. */ SQLITE_API int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset); /* ** CAPI3REF: Virtual File System Objects ** ** A virtual filesystem (VFS) is an [sqlite3_vfs] object ** that SQLite uses to interact ** with the underlying operating system. Most SQLite builds come with a ** single default VFS that is appropriate for the host computer. ** New VFSes can be registered and existing VFSes can be unregistered. ** The following interfaces are provided. ** ** ^The sqlite3_vfs_find() interface returns a pointer to a VFS given its name. ** ^Names are case sensitive. ** ^Names are zero-terminated UTF-8 strings. ** ^If there is no match, a NULL pointer is returned. ** ^If zVfsName is NULL then the default VFS is returned. ** ** ^New VFSes are registered with sqlite3_vfs_register(). ** ^Each new VFS becomes the default VFS if the makeDflt flag is set. ** ^The same VFS can be registered multiple times without injury. ** ^To make an existing VFS into the default VFS, register it again ** with the makeDflt flag set. If two different VFSes with the ** same name are registered, the behavior is undefined. If a ** VFS is registered with a name that is NULL or an empty string, ** then the behavior is undefined. ** ** ^Unregister a VFS with the sqlite3_vfs_unregister() interface. ** ^(If the default VFS is unregistered, another VFS is chosen as ** the default. The choice for the new VFS is arbitrary.)^ */ SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName); SQLITE_API int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt); SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*); /* ** CAPI3REF: Mutexes ** ** The SQLite core uses these routines for thread ** synchronization. Though they are intended for internal ** use by SQLite, code that links against SQLite is ** permitted to use any of these routines. ** ** The SQLite source code contains multiple implementations ** of these mutex routines. An appropriate implementation ** is selected automatically at compile-time. The following ** implementations are available in the SQLite core: ** **
    **
  • SQLITE_MUTEX_PTHREADS **
  • SQLITE_MUTEX_W32 **
  • SQLITE_MUTEX_NOOP **
** ** The SQLITE_MUTEX_NOOP implementation is a set of routines ** that does no real locking and is appropriate for use in ** a single-threaded application. The SQLITE_MUTEX_PTHREADS and ** SQLITE_MUTEX_W32 implementations are appropriate for use on Unix ** and Windows. ** ** If SQLite is compiled with the SQLITE_MUTEX_APPDEF preprocessor ** macro defined (with "-DSQLITE_MUTEX_APPDEF=1"), then no mutex ** implementation is included with the library. In this case the ** application must supply a custom mutex implementation using the ** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function ** before calling sqlite3_initialize() or any other public sqlite3_ ** function that calls sqlite3_initialize(). ** ** ^The sqlite3_mutex_alloc() routine allocates a new ** mutex and returns a pointer to it. ^The sqlite3_mutex_alloc() ** routine returns NULL if it is unable to allocate the requested ** mutex. The argument to sqlite3_mutex_alloc() must one of these ** integer constants: ** **
    **
  • SQLITE_MUTEX_FAST **
  • SQLITE_MUTEX_RECURSIVE **
  • SQLITE_MUTEX_STATIC_MAIN **
  • SQLITE_MUTEX_STATIC_MEM **
  • SQLITE_MUTEX_STATIC_OPEN **
  • SQLITE_MUTEX_STATIC_PRNG **
  • SQLITE_MUTEX_STATIC_LRU **
  • SQLITE_MUTEX_STATIC_PMEM **
  • SQLITE_MUTEX_STATIC_APP1 **
  • SQLITE_MUTEX_STATIC_APP2 **
  • SQLITE_MUTEX_STATIC_APP3 **
  • SQLITE_MUTEX_STATIC_VFS1 **
  • SQLITE_MUTEX_STATIC_VFS2 **
  • SQLITE_MUTEX_STATIC_VFS3 **
** ** ^The first two constants (SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) ** cause sqlite3_mutex_alloc() to create ** a new mutex. ^The new mutex is recursive when SQLITE_MUTEX_RECURSIVE ** is used but not necessarily so when SQLITE_MUTEX_FAST is used. ** The mutex implementation does not need to make a distinction ** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does ** not want to. SQLite will only request a recursive mutex in ** cases where it really needs one. If a faster non-recursive mutex ** implementation is available on the host platform, the mutex subsystem ** might return such a mutex in response to SQLITE_MUTEX_FAST. ** ** ^The other allowed parameters to sqlite3_mutex_alloc() (anything other ** than SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) each return ** a pointer to a static preexisting mutex. ^Nine static mutexes are ** used by the current version of SQLite. Future versions of SQLite ** may add additional static mutexes. Static mutexes are for internal ** use by SQLite only. Applications that use SQLite mutexes should ** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or ** SQLITE_MUTEX_RECURSIVE. ** ** ^Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc() ** returns a different mutex on every call. ^For the static ** mutex types, the same mutex is returned on every call that has ** the same type number. ** ** ^The sqlite3_mutex_free() routine deallocates a previously ** allocated dynamic mutex. Attempting to deallocate a static ** mutex results in undefined behavior. ** ** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt ** to enter a mutex. ^If another thread is already within the mutex, ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return ** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK] ** upon successful entry. ^(Mutexes created using ** SQLITE_MUTEX_RECURSIVE can be entered multiple times by the same thread. ** In such cases, the ** mutex must be exited an equal number of times before another thread ** can enter.)^ If the same thread tries to enter any mutex other ** than an SQLITE_MUTEX_RECURSIVE more than once, the behavior is undefined. ** ** ^(Some systems (for example, Windows 95) do not support the operation ** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try() ** will always return SQLITE_BUSY. The SQLite core only ever uses ** sqlite3_mutex_try() as an optimization so this is acceptable ** behavior.)^ ** ** ^The sqlite3_mutex_leave() routine exits a mutex that was ** previously entered by the same thread. The behavior ** is undefined if the mutex is not currently entered by the ** calling thread or is not currently allocated. ** ** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or ** sqlite3_mutex_leave() is a NULL pointer, then all three routines ** behave as no-ops. ** ** See also: [sqlite3_mutex_held()] and [sqlite3_mutex_notheld()]. */ SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int); SQLITE_API void sqlite3_mutex_free(sqlite3_mutex*); SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex*); SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*); SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex*); /* ** CAPI3REF: Mutex Methods Object ** ** An instance of this structure defines the low-level routines ** used to allocate and use mutexes. ** ** Usually, the default mutex implementations provided by SQLite are ** sufficient, however the application has the option of substituting a custom ** implementation for specialized deployments or systems for which SQLite ** does not provide a suitable implementation. In this case, the application ** creates and populates an instance of this structure to pass ** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option. ** Additionally, an instance of this structure can be used as an ** output variable when querying the system for the current mutex ** implementation, using the [SQLITE_CONFIG_GETMUTEX] option. ** ** ^The xMutexInit method defined by this structure is invoked as ** part of system initialization by the sqlite3_initialize() function. ** ^The xMutexInit routine is called by SQLite exactly once for each ** effective call to [sqlite3_initialize()]. ** ** ^The xMutexEnd method defined by this structure is invoked as ** part of system shutdown by the sqlite3_shutdown() function. The ** implementation of this method is expected to release all outstanding ** resources obtained by the mutex methods implementation, especially ** those obtained by the xMutexInit method. ^The xMutexEnd() ** interface is invoked exactly once for each call to [sqlite3_shutdown()]. ** ** ^(The remaining seven methods defined by this structure (xMutexAlloc, ** xMutexFree, xMutexEnter, xMutexTry, xMutexLeave, xMutexHeld and ** xMutexNotheld) implement the following interfaces (respectively): ** **
    **
  • [sqlite3_mutex_alloc()]
  • **
  • [sqlite3_mutex_free()]
  • **
  • [sqlite3_mutex_enter()]
  • **
  • [sqlite3_mutex_try()]
  • **
  • [sqlite3_mutex_leave()]
  • **
  • [sqlite3_mutex_held()]
  • **
  • [sqlite3_mutex_notheld()]
  • **
)^ ** ** The only difference is that the public sqlite3_XXX functions enumerated ** above silently ignore any invocations that pass a NULL pointer instead ** of a valid mutex handle. The implementations of the methods defined ** by this structure are not required to handle this case. The results ** of passing a NULL pointer instead of a valid mutex handle are undefined ** (i.e. it is acceptable to provide an implementation that segfaults if ** it is passed a NULL pointer). ** ** The xMutexInit() method must be threadsafe. It must be harmless to ** invoke xMutexInit() multiple times within the same process and without ** intervening calls to xMutexEnd(). Second and subsequent calls to ** xMutexInit() must be no-ops. ** ** xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()] ** and its associates). Similarly, xMutexAlloc() must not use SQLite memory ** allocation for a static mutex. ^However xMutexAlloc() may use SQLite ** memory allocation for a fast or recursive mutex. ** ** ^SQLite will invoke the xMutexEnd() method when [sqlite3_shutdown()] is ** called, but only if the prior call to xMutexInit returned SQLITE_OK. ** If xMutexInit fails in any way, it is expected to clean up after itself ** prior to returning. */ typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; struct sqlite3_mutex_methods { int (*xMutexInit)(void); int (*xMutexEnd)(void); sqlite3_mutex *(*xMutexAlloc)(int); void (*xMutexFree)(sqlite3_mutex *); void (*xMutexEnter)(sqlite3_mutex *); int (*xMutexTry)(sqlite3_mutex *); void (*xMutexLeave)(sqlite3_mutex *); int (*xMutexHeld)(sqlite3_mutex *); int (*xMutexNotheld)(sqlite3_mutex *); }; /* ** CAPI3REF: Mutex Verification Routines ** ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routines ** are intended for use inside assert() statements. The SQLite core ** never uses these routines except inside an assert() and applications ** are advised to follow the lead of the core. The SQLite core only ** provides implementations for these routines when it is compiled ** with the SQLITE_DEBUG flag. External mutex implementations ** are only required to provide these routines if SQLITE_DEBUG is ** defined and if NDEBUG is not defined. ** ** These routines should return true if the mutex in their argument ** is held or not held, respectively, by the calling thread. ** ** The implementation is not required to provide versions of these ** routines that actually work. If the implementation does not provide working ** versions of these routines, it should at least provide stubs that always ** return true so that one does not get spurious assertion failures. ** ** If the argument to sqlite3_mutex_held() is a NULL pointer then ** the routine should return 1. This seems counter-intuitive since ** clearly the mutex cannot be held if it does not exist. But ** the reason the mutex does not exist is because the build is not ** using mutexes. And we do not want the assert() containing the ** call to sqlite3_mutex_held() to fail, so a non-zero return is ** the appropriate thing to do. The sqlite3_mutex_notheld() ** interface should also return 1 when given a NULL pointer. */ #ifndef NDEBUG SQLITE_API int sqlite3_mutex_held(sqlite3_mutex*); SQLITE_API int sqlite3_mutex_notheld(sqlite3_mutex*); #endif /* ** CAPI3REF: Mutex Types ** ** The [sqlite3_mutex_alloc()] interface takes a single argument ** which is one of these integer constants. ** ** The set of static mutexes may change from one SQLite release to the ** next. Applications that override the built-in mutex logic must be ** prepared to accommodate additional static mutexes. */ #define SQLITE_MUTEX_FAST 0 #define SQLITE_MUTEX_RECURSIVE 1 #define SQLITE_MUTEX_STATIC_MAIN 2 #define SQLITE_MUTEX_STATIC_MEM 3 /* sqlite3_malloc() */ #define SQLITE_MUTEX_STATIC_MEM2 4 /* NOT USED */ #define SQLITE_MUTEX_STATIC_OPEN 4 /* sqlite3BtreeOpen() */ #define SQLITE_MUTEX_STATIC_PRNG 5 /* sqlite3_randomness() */ #define SQLITE_MUTEX_STATIC_LRU 6 /* lru page list */ #define SQLITE_MUTEX_STATIC_LRU2 7 /* NOT USED */ #define SQLITE_MUTEX_STATIC_PMEM 7 /* sqlite3PageMalloc() */ #define SQLITE_MUTEX_STATIC_APP1 8 /* For use by application */ #define SQLITE_MUTEX_STATIC_APP2 9 /* For use by application */ #define SQLITE_MUTEX_STATIC_APP3 10 /* For use by application */ #define SQLITE_MUTEX_STATIC_VFS1 11 /* For use by built-in VFS */ #define SQLITE_MUTEX_STATIC_VFS2 12 /* For use by extension VFS */ #define SQLITE_MUTEX_STATIC_VFS3 13 /* For use by application VFS */ /* Legacy compatibility: */ #define SQLITE_MUTEX_STATIC_MASTER 2 /* ** CAPI3REF: Retrieve the mutex for a database connection ** METHOD: sqlite3 ** ** ^This interface returns a pointer the [sqlite3_mutex] object that ** serializes access to the [database connection] given in the argument ** when the [threading mode] is Serialized. ** ^If the [threading mode] is Single-thread or Multi-thread then this ** routine returns a NULL pointer. */ SQLITE_API sqlite3_mutex *sqlite3_db_mutex(sqlite3*); /* ** CAPI3REF: Low-Level Control Of Database Files ** METHOD: sqlite3 ** KEYWORDS: {file control} ** ** ^The [sqlite3_file_control()] interface makes a direct call to the ** xFileControl method for the [sqlite3_io_methods] object associated ** with a particular database identified by the second argument. ^The ** name of the database is "main" for the main database or "temp" for the ** TEMP database, or the name that appears after the AS keyword for ** databases that are added using the [ATTACH] SQL command. ** ^A NULL pointer can be used in place of "main" to refer to the ** main database file. ** ^The third and fourth parameters to this routine ** are passed directly through to the second and third parameters of ** the xFileControl method. ^The return value of the xFileControl ** method becomes the return value of this routine. ** ** A few opcodes for [sqlite3_file_control()] are handled directly ** by the SQLite core and never invoke the ** sqlite3_io_methods.xFileControl method. ** ^The [SQLITE_FCNTL_FILE_POINTER] value for the op parameter causes ** a pointer to the underlying [sqlite3_file] object to be written into ** the space pointed to by the 4th parameter. The ** [SQLITE_FCNTL_JOURNAL_POINTER] works similarly except that it returns ** the [sqlite3_file] object associated with the journal file instead of ** the main database. The [SQLITE_FCNTL_VFS_POINTER] opcode returns ** a pointer to the underlying [sqlite3_vfs] object for the file. ** The [SQLITE_FCNTL_DATA_VERSION] returns the data version counter ** from the pager. ** ** ^If the second parameter (zDbName) does not match the name of any ** open database file, then SQLITE_ERROR is returned. ^This error ** code is not remembered and will not be recalled by [sqlite3_errcode()] ** or [sqlite3_errmsg()]. The underlying xFileControl method might ** also return SQLITE_ERROR. There is no way to distinguish between ** an incorrect zDbName and an SQLITE_ERROR return from the underlying ** xFileControl method. ** ** See also: [file control opcodes] */ SQLITE_API int sqlite3_file_control(sqlite3*, const char *zDbName, int op, void*); /* ** CAPI3REF: Testing Interface ** ** ^The sqlite3_test_control() interface is used to read out internal ** state of SQLite and to inject faults into SQLite for testing ** purposes. ^The first parameter is an operation code that determines ** the number, meaning, and operation of all subsequent parameters. ** ** This interface is not for use by applications. It exists solely ** for verifying the correct operation of the SQLite library. Depending ** on how the SQLite library is compiled, this interface might not exist. ** ** The details of the operation codes, their meanings, the parameters ** they take, and what they do are all subject to change without notice. ** Unlike most of the SQLite API, this function is not guaranteed to ** operate consistently from one release to the next. */ SQLITE_API int sqlite3_test_control(int op, ...); /* ** CAPI3REF: Testing Interface Operation Codes ** ** These constants are the valid operation code parameters used ** as the first argument to [sqlite3_test_control()]. ** ** These parameters and their meanings are subject to change ** without notice. These values are for testing purposes only. ** Applications should not use any of these parameters or the ** [sqlite3_test_control()] interface. */ #define SQLITE_TESTCTRL_FIRST 5 #define SQLITE_TESTCTRL_PRNG_SAVE 5 #define SQLITE_TESTCTRL_PRNG_RESTORE 6 #define SQLITE_TESTCTRL_PRNG_RESET 7 /* NOT USED */ #define SQLITE_TESTCTRL_BITVEC_TEST 8 #define SQLITE_TESTCTRL_FAULT_INSTALL 9 #define SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS 10 #define SQLITE_TESTCTRL_PENDING_BYTE 11 #define SQLITE_TESTCTRL_ASSERT 12 #define SQLITE_TESTCTRL_ALWAYS 13 #define SQLITE_TESTCTRL_RESERVE 14 /* NOT USED */ #define SQLITE_TESTCTRL_OPTIMIZATIONS 15 #define SQLITE_TESTCTRL_ISKEYWORD 16 /* NOT USED */ #define SQLITE_TESTCTRL_SCRATCHMALLOC 17 /* NOT USED */ #define SQLITE_TESTCTRL_INTERNAL_FUNCTIONS 17 #define SQLITE_TESTCTRL_LOCALTIME_FAULT 18 #define SQLITE_TESTCTRL_EXPLAIN_STMT 19 /* NOT USED */ #define SQLITE_TESTCTRL_ONCE_RESET_THRESHOLD 19 #define SQLITE_TESTCTRL_NEVER_CORRUPT 20 #define SQLITE_TESTCTRL_VDBE_COVERAGE 21 #define SQLITE_TESTCTRL_BYTEORDER 22 #define SQLITE_TESTCTRL_ISINIT 23 #define SQLITE_TESTCTRL_SORTER_MMAP 24 #define SQLITE_TESTCTRL_IMPOSTER 25 #define SQLITE_TESTCTRL_PARSER_COVERAGE 26 #define SQLITE_TESTCTRL_RESULT_INTREAL 27 #define SQLITE_TESTCTRL_PRNG_SEED 28 #define SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS 29 #define SQLITE_TESTCTRL_LAST 29 /* Largest TESTCTRL */ /* ** CAPI3REF: SQL Keyword Checking ** ** These routines provide access to the set of SQL language keywords ** recognized by SQLite. Applications can uses these routines to determine ** whether or not a specific identifier needs to be escaped (for example, ** by enclosing in double-quotes) so as not to confuse the parser. ** ** The sqlite3_keyword_count() interface returns the number of distinct ** keywords understood by SQLite. ** ** The sqlite3_keyword_name(N,Z,L) interface finds the N-th keyword and ** makes *Z point to that keyword expressed as UTF8 and writes the number ** of bytes in the keyword into *L. The string that *Z points to is not ** zero-terminated. The sqlite3_keyword_name(N,Z,L) routine returns ** SQLITE_OK if N is within bounds and SQLITE_ERROR if not. If either Z ** or L are NULL or invalid pointers then calls to ** sqlite3_keyword_name(N,Z,L) result in undefined behavior. ** ** The sqlite3_keyword_check(Z,L) interface checks to see whether or not ** the L-byte UTF8 identifier that Z points to is a keyword, returning non-zero ** if it is and zero if not. ** ** The parser used by SQLite is forgiving. It is often possible to use ** a keyword as an identifier as long as such use does not result in a ** parsing ambiguity. For example, the statement ** "CREATE TABLE BEGIN(REPLACE,PRAGMA,END);" is accepted by SQLite, and ** creates a new table named "BEGIN" with three columns named ** "REPLACE", "PRAGMA", and "END". Nevertheless, best practice is to avoid ** using keywords as identifiers. Common techniques used to avoid keyword ** name collisions include: **
    **
  • Put all identifier names inside double-quotes. This is the official ** SQL way to escape identifier names. **
  • Put identifier names inside [...]. This is not standard SQL, ** but it is what SQL Server does and so lots of programmers use this ** technique. **
  • Begin every identifier with the letter "Z" as no SQL keywords start ** with "Z". **
  • Include a digit somewhere in every identifier name. **
** ** Note that the number of keywords understood by SQLite can depend on ** compile-time options. For example, "VACUUM" is not a keyword if ** SQLite is compiled with the [-DSQLITE_OMIT_VACUUM] option. Also, ** new keywords may be added to future releases of SQLite. */ SQLITE_API int sqlite3_keyword_count(void); SQLITE_API int sqlite3_keyword_name(int,const char**,int*); SQLITE_API int sqlite3_keyword_check(const char*,int); /* ** CAPI3REF: Dynamic String Object ** KEYWORDS: {dynamic string} ** ** An instance of the sqlite3_str object contains a dynamically-sized ** string under construction. ** ** The lifecycle of an sqlite3_str object is as follows: **
    **
  1. ^The sqlite3_str object is created using [sqlite3_str_new()]. **
  2. ^Text is appended to the sqlite3_str object using various ** methods, such as [sqlite3_str_appendf()]. **
  3. ^The sqlite3_str object is destroyed and the string it created ** is returned using the [sqlite3_str_finish()] interface. **
*/ typedef struct sqlite3_str sqlite3_str; /* ** CAPI3REF: Create A New Dynamic String Object ** CONSTRUCTOR: sqlite3_str ** ** ^The [sqlite3_str_new(D)] interface allocates and initializes ** a new [sqlite3_str] object. To avoid memory leaks, the object returned by ** [sqlite3_str_new()] must be freed by a subsequent call to ** [sqlite3_str_finish(X)]. ** ** ^The [sqlite3_str_new(D)] interface always returns a pointer to a ** valid [sqlite3_str] object, though in the event of an out-of-memory ** error the returned object might be a special singleton that will ** silently reject new text, always return SQLITE_NOMEM from ** [sqlite3_str_errcode()], always return 0 for ** [sqlite3_str_length()], and always return NULL from ** [sqlite3_str_finish(X)]. It is always safe to use the value ** returned by [sqlite3_str_new(D)] as the sqlite3_str parameter ** to any of the other [sqlite3_str] methods. ** ** The D parameter to [sqlite3_str_new(D)] may be NULL. If the ** D parameter in [sqlite3_str_new(D)] is not NULL, then the maximum ** length of the string contained in the [sqlite3_str] object will be ** the value set for [sqlite3_limit](D,[SQLITE_LIMIT_LENGTH]) instead ** of [SQLITE_MAX_LENGTH]. */ SQLITE_API sqlite3_str *sqlite3_str_new(sqlite3*); /* ** CAPI3REF: Finalize A Dynamic String ** DESTRUCTOR: sqlite3_str ** ** ^The [sqlite3_str_finish(X)] interface destroys the sqlite3_str object X ** and returns a pointer to a memory buffer obtained from [sqlite3_malloc64()] ** that contains the constructed string. The calling application should ** pass the returned value to [sqlite3_free()] to avoid a memory leak. ** ^The [sqlite3_str_finish(X)] interface may return a NULL pointer if any ** errors were encountered during construction of the string. ^The ** [sqlite3_str_finish(X)] interface will also return a NULL pointer if the ** string in [sqlite3_str] object X is zero bytes long. */ SQLITE_API char *sqlite3_str_finish(sqlite3_str*); /* ** CAPI3REF: Add Content To A Dynamic String ** METHOD: sqlite3_str ** ** These interfaces add content to an sqlite3_str object previously obtained ** from [sqlite3_str_new()]. ** ** ^The [sqlite3_str_appendf(X,F,...)] and ** [sqlite3_str_vappendf(X,F,V)] interfaces uses the [built-in printf] ** functionality of SQLite to append formatted text onto the end of ** [sqlite3_str] object X. ** ** ^The [sqlite3_str_append(X,S,N)] method appends exactly N bytes from string S ** onto the end of the [sqlite3_str] object X. N must be non-negative. ** S must contain at least N non-zero bytes of content. To append a ** zero-terminated string in its entirety, use the [sqlite3_str_appendall()] ** method instead. ** ** ^The [sqlite3_str_appendall(X,S)] method appends the complete content of ** zero-terminated string S onto the end of [sqlite3_str] object X. ** ** ^The [sqlite3_str_appendchar(X,N,C)] method appends N copies of the ** single-byte character C onto the end of [sqlite3_str] object X. ** ^This method can be used, for example, to add whitespace indentation. ** ** ^The [sqlite3_str_reset(X)] method resets the string under construction ** inside [sqlite3_str] object X back to zero bytes in length. ** ** These methods do not return a result code. ^If an error occurs, that fact ** is recorded in the [sqlite3_str] object and can be recovered by a ** subsequent call to [sqlite3_str_errcode(X)]. */ SQLITE_API void sqlite3_str_appendf(sqlite3_str*, const char *zFormat, ...); SQLITE_API void sqlite3_str_vappendf(sqlite3_str*, const char *zFormat, va_list); SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N); SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn); SQLITE_API void sqlite3_str_appendchar(sqlite3_str*, int N, char C); SQLITE_API void sqlite3_str_reset(sqlite3_str*); /* ** CAPI3REF: Status Of A Dynamic String ** METHOD: sqlite3_str ** ** These interfaces return the current status of an [sqlite3_str] object. ** ** ^If any prior errors have occurred while constructing the dynamic string ** in sqlite3_str X, then the [sqlite3_str_errcode(X)] method will return ** an appropriate error code. ^The [sqlite3_str_errcode(X)] method returns ** [SQLITE_NOMEM] following any out-of-memory error, or ** [SQLITE_TOOBIG] if the size of the dynamic string exceeds ** [SQLITE_MAX_LENGTH], or [SQLITE_OK] if there have been no errors. ** ** ^The [sqlite3_str_length(X)] method returns the current length, in bytes, ** of the dynamic string under construction in [sqlite3_str] object X. ** ^The length returned by [sqlite3_str_length(X)] does not include the ** zero-termination byte. ** ** ^The [sqlite3_str_value(X)] method returns a pointer to the current ** content of the dynamic string under construction in X. The value ** returned by [sqlite3_str_value(X)] is managed by the sqlite3_str object X ** and might be freed or altered by any subsequent method on the same ** [sqlite3_str] object. Applications must not used the pointer returned ** [sqlite3_str_value(X)] after any subsequent method call on the same ** object. ^Applications may change the content of the string returned ** by [sqlite3_str_value(X)] as long as they do not write into any bytes ** outside the range of 0 to [sqlite3_str_length(X)] and do not read or ** write any byte after any subsequent sqlite3_str method call. */ SQLITE_API int sqlite3_str_errcode(sqlite3_str*); SQLITE_API int sqlite3_str_length(sqlite3_str*); SQLITE_API char *sqlite3_str_value(sqlite3_str*); /* ** CAPI3REF: SQLite Runtime Status ** ** ^These interfaces are used to retrieve runtime status information ** about the performance of SQLite, and optionally to reset various ** highwater marks. ^The first argument is an integer code for ** the specific parameter to measure. ^(Recognized integer codes ** are of the form [status parameters | SQLITE_STATUS_...].)^ ** ^The current value of the parameter is returned into *pCurrent. ** ^The highest recorded value is returned in *pHighwater. ^If the ** resetFlag is true, then the highest record value is reset after ** *pHighwater is written. ^(Some parameters do not record the highest ** value. For those parameters ** nothing is written into *pHighwater and the resetFlag is ignored.)^ ** ^(Other parameters record only the highwater mark and not the current ** value. For these latter parameters nothing is written into *pCurrent.)^ ** ** ^The sqlite3_status() and sqlite3_status64() routines return ** SQLITE_OK on success and a non-zero [error code] on failure. ** ** If either the current value or the highwater mark is too large to ** be represented by a 32-bit integer, then the values returned by ** sqlite3_status() are undefined. ** ** See also: [sqlite3_db_status()] */ SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag); SQLITE_API int sqlite3_status64( int op, sqlite3_int64 *pCurrent, sqlite3_int64 *pHighwater, int resetFlag ); /* ** CAPI3REF: Status Parameters ** KEYWORDS: {status parameters} ** ** These integer constants designate various run-time status parameters ** that can be returned by [sqlite3_status()]. ** **
** [[SQLITE_STATUS_MEMORY_USED]] ^(
SQLITE_STATUS_MEMORY_USED
**
This parameter is the current amount of memory checked out ** using [sqlite3_malloc()], either directly or indirectly. The ** figure includes calls made to [sqlite3_malloc()] by the application ** and internal memory usage by the SQLite library. Auxiliary page-cache ** memory controlled by [SQLITE_CONFIG_PAGECACHE] is not included in ** this parameter. The amount returned is the sum of the allocation ** sizes as reported by the xSize method in [sqlite3_mem_methods].
)^ ** ** [[SQLITE_STATUS_MALLOC_SIZE]] ^(
SQLITE_STATUS_MALLOC_SIZE
**
This parameter records the largest memory allocation request ** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their ** internal equivalents). Only the value returned in the ** *pHighwater parameter to [sqlite3_status()] is of interest. ** The value written into the *pCurrent parameter is undefined.
)^ ** ** [[SQLITE_STATUS_MALLOC_COUNT]] ^(
SQLITE_STATUS_MALLOC_COUNT
**
This parameter records the number of separate memory allocations ** currently checked out.
)^ ** ** [[SQLITE_STATUS_PAGECACHE_USED]] ^(
SQLITE_STATUS_PAGECACHE_USED
**
This parameter returns the number of pages used out of the ** [pagecache memory allocator] that was configured using ** [SQLITE_CONFIG_PAGECACHE]. The ** value returned is in pages, not in bytes.
)^ ** ** [[SQLITE_STATUS_PAGECACHE_OVERFLOW]] ** ^(
SQLITE_STATUS_PAGECACHE_OVERFLOW
**
This parameter returns the number of bytes of page cache ** allocation which could not be satisfied by the [SQLITE_CONFIG_PAGECACHE] ** buffer and where forced to overflow to [sqlite3_malloc()]. The ** returned value includes allocations that overflowed because they ** where too large (they were larger than the "sz" parameter to ** [SQLITE_CONFIG_PAGECACHE]) and allocations that overflowed because ** no space was left in the page cache.
)^ ** ** [[SQLITE_STATUS_PAGECACHE_SIZE]] ^(
SQLITE_STATUS_PAGECACHE_SIZE
**
This parameter records the largest memory allocation request ** handed to the [pagecache memory allocator]. Only the value returned in the ** *pHighwater parameter to [sqlite3_status()] is of interest. ** The value written into the *pCurrent parameter is undefined.
)^ ** ** [[SQLITE_STATUS_SCRATCH_USED]]
SQLITE_STATUS_SCRATCH_USED
**
No longer used.
** ** [[SQLITE_STATUS_SCRATCH_OVERFLOW]] ^(
SQLITE_STATUS_SCRATCH_OVERFLOW
**
No longer used.
** ** [[SQLITE_STATUS_SCRATCH_SIZE]]
SQLITE_STATUS_SCRATCH_SIZE
**
No longer used.
** ** [[SQLITE_STATUS_PARSER_STACK]] ^(
SQLITE_STATUS_PARSER_STACK
**
The *pHighwater parameter records the deepest parser stack. ** The *pCurrent value is undefined. The *pHighwater value is only ** meaningful if SQLite is compiled with [YYTRACKMAXSTACKDEPTH].
)^ **
** ** New status parameters may be added from time to time. */ #define SQLITE_STATUS_MEMORY_USED 0 #define SQLITE_STATUS_PAGECACHE_USED 1 #define SQLITE_STATUS_PAGECACHE_OVERFLOW 2 #define SQLITE_STATUS_SCRATCH_USED 3 /* NOT USED */ #define SQLITE_STATUS_SCRATCH_OVERFLOW 4 /* NOT USED */ #define SQLITE_STATUS_MALLOC_SIZE 5 #define SQLITE_STATUS_PARSER_STACK 6 #define SQLITE_STATUS_PAGECACHE_SIZE 7 #define SQLITE_STATUS_SCRATCH_SIZE 8 /* NOT USED */ #define SQLITE_STATUS_MALLOC_COUNT 9 /* ** CAPI3REF: Database Connection Status ** METHOD: sqlite3 ** ** ^This interface is used to retrieve runtime status information ** about a single [database connection]. ^The first argument is the ** database connection object to be interrogated. ^The second argument ** is an integer constant, taken from the set of ** [SQLITE_DBSTATUS options], that ** determines the parameter to interrogate. The set of ** [SQLITE_DBSTATUS options] is likely ** to grow in future releases of SQLite. ** ** ^The current value of the requested parameter is written into *pCur ** and the highest instantaneous value is written into *pHiwtr. ^If ** the resetFlg is true, then the highest instantaneous value is ** reset back down to the current value. ** ** ^The sqlite3_db_status() routine returns SQLITE_OK on success and a ** non-zero [error code] on failure. ** ** See also: [sqlite3_status()] and [sqlite3_stmt_status()]. */ SQLITE_API int sqlite3_db_status(sqlite3*, int op, int *pCur, int *pHiwtr, int resetFlg); /* ** CAPI3REF: Status Parameters for database connections ** KEYWORDS: {SQLITE_DBSTATUS options} ** ** These constants are the available integer "verbs" that can be passed as ** the second argument to the [sqlite3_db_status()] interface. ** ** New verbs may be added in future releases of SQLite. Existing verbs ** might be discontinued. Applications should check the return code from ** [sqlite3_db_status()] to make sure that the call worked. ** The [sqlite3_db_status()] interface will return a non-zero error code ** if a discontinued or unsupported verb is invoked. ** **
** [[SQLITE_DBSTATUS_LOOKASIDE_USED]] ^(
SQLITE_DBSTATUS_LOOKASIDE_USED
**
This parameter returns the number of lookaside memory slots currently ** checked out.
)^ ** ** [[SQLITE_DBSTATUS_LOOKASIDE_HIT]] ^(
SQLITE_DBSTATUS_LOOKASIDE_HIT
**
This parameter returns the number of malloc attempts that were ** satisfied using lookaside memory. Only the high-water value is meaningful; ** the current value is always zero.)^ ** ** [[SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE]] ** ^(
SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE
**
This parameter returns the number malloc attempts that might have ** been satisfied using lookaside memory but failed due to the amount of ** memory requested being larger than the lookaside slot size. ** Only the high-water value is meaningful; ** the current value is always zero.)^ ** ** [[SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL]] ** ^(
SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL
**
This parameter returns the number malloc attempts that might have ** been satisfied using lookaside memory but failed due to all lookaside ** memory already being in use. ** Only the high-water value is meaningful; ** the current value is always zero.)^ ** ** [[SQLITE_DBSTATUS_CACHE_USED]] ^(
SQLITE_DBSTATUS_CACHE_USED
**
This parameter returns the approximate number of bytes of heap ** memory used by all pager caches associated with the database connection.)^ ** ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_USED is always 0. ** ** [[SQLITE_DBSTATUS_CACHE_USED_SHARED]] ** ^(
SQLITE_DBSTATUS_CACHE_USED_SHARED
**
This parameter is similar to DBSTATUS_CACHE_USED, except that if a ** pager cache is shared between two or more connections the bytes of heap ** memory used by that pager cache is divided evenly between the attached ** connections.)^ In other words, if none of the pager caches associated ** with the database connection are shared, this request returns the same ** value as DBSTATUS_CACHE_USED. Or, if one or more or the pager caches are ** shared, the value returned by this call will be smaller than that returned ** by DBSTATUS_CACHE_USED. ^The highwater mark associated with ** SQLITE_DBSTATUS_CACHE_USED_SHARED is always 0. ** ** [[SQLITE_DBSTATUS_SCHEMA_USED]] ^(
SQLITE_DBSTATUS_SCHEMA_USED
**
This parameter returns the approximate number of bytes of heap ** memory used to store the schema for all databases associated ** with the connection - main, temp, and any [ATTACH]-ed databases.)^ ** ^The full amount of memory used by the schemas is reported, even if the ** schema memory is shared with other database connections due to ** [shared cache mode] being enabled. ** ^The highwater mark associated with SQLITE_DBSTATUS_SCHEMA_USED is always 0. ** ** [[SQLITE_DBSTATUS_STMT_USED]] ^(
SQLITE_DBSTATUS_STMT_USED
**
This parameter returns the approximate number of bytes of heap ** and lookaside memory used by all prepared statements associated with ** the database connection.)^ ** ^The highwater mark associated with SQLITE_DBSTATUS_STMT_USED is always 0. **
** ** [[SQLITE_DBSTATUS_CACHE_HIT]] ^(
SQLITE_DBSTATUS_CACHE_HIT
**
This parameter returns the number of pager cache hits that have ** occurred.)^ ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_HIT ** is always 0. **
** ** [[SQLITE_DBSTATUS_CACHE_MISS]] ^(
SQLITE_DBSTATUS_CACHE_MISS
**
This parameter returns the number of pager cache misses that have ** occurred.)^ ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_MISS ** is always 0. **
** ** [[SQLITE_DBSTATUS_CACHE_WRITE]] ^(
SQLITE_DBSTATUS_CACHE_WRITE
**
This parameter returns the number of dirty cache entries that have ** been written to disk. Specifically, the number of pages written to the ** wal file in wal mode databases, or the number of pages written to the ** database file in rollback mode databases. Any pages written as part of ** transaction rollback or database recovery operations are not included. ** If an IO or other error occurs while writing a page to disk, the effect ** on subsequent SQLITE_DBSTATUS_CACHE_WRITE requests is undefined.)^ ^The ** highwater mark associated with SQLITE_DBSTATUS_CACHE_WRITE is always 0. **
** ** [[SQLITE_DBSTATUS_CACHE_SPILL]] ^(
SQLITE_DBSTATUS_CACHE_SPILL
**
This parameter returns the number of dirty cache entries that have ** been written to disk in the middle of a transaction due to the page ** cache overflowing. Transactions are more efficient if they are written ** to disk all at once. When pages spill mid-transaction, that introduces ** additional overhead. This parameter can be used help identify ** inefficiencies that can be resolved by increasing the cache size. **
** ** [[SQLITE_DBSTATUS_DEFERRED_FKS]] ^(
SQLITE_DBSTATUS_DEFERRED_FKS
**
This parameter returns zero for the current value if and only if ** all foreign key constraints (deferred or immediate) have been ** resolved.)^ ^The highwater mark is always 0. **
**
*/ #define SQLITE_DBSTATUS_LOOKASIDE_USED 0 #define SQLITE_DBSTATUS_CACHE_USED 1 #define SQLITE_DBSTATUS_SCHEMA_USED 2 #define SQLITE_DBSTATUS_STMT_USED 3 #define SQLITE_DBSTATUS_LOOKASIDE_HIT 4 #define SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE 5 #define SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL 6 #define SQLITE_DBSTATUS_CACHE_HIT 7 #define SQLITE_DBSTATUS_CACHE_MISS 8 #define SQLITE_DBSTATUS_CACHE_WRITE 9 #define SQLITE_DBSTATUS_DEFERRED_FKS 10 #define SQLITE_DBSTATUS_CACHE_USED_SHARED 11 #define SQLITE_DBSTATUS_CACHE_SPILL 12 #define SQLITE_DBSTATUS_MAX 12 /* Largest defined DBSTATUS */ /* ** CAPI3REF: Prepared Statement Status ** METHOD: sqlite3_stmt ** ** ^(Each prepared statement maintains various ** [SQLITE_STMTSTATUS counters] that measure the number ** of times it has performed specific operations.)^ These counters can ** be used to monitor the performance characteristics of the prepared ** statements. For example, if the number of table steps greatly exceeds ** the number of table searches or result rows, that would tend to indicate ** that the prepared statement is using a full table scan rather than ** an index. ** ** ^(This interface is used to retrieve and reset counter values from ** a [prepared statement]. The first argument is the prepared statement ** object to be interrogated. The second argument ** is an integer code for a specific [SQLITE_STMTSTATUS counter] ** to be interrogated.)^ ** ^The current value of the requested counter is returned. ** ^If the resetFlg is true, then the counter is reset to zero after this ** interface call returns. ** ** See also: [sqlite3_status()] and [sqlite3_db_status()]. */ SQLITE_API int sqlite3_stmt_status(sqlite3_stmt*, int op,int resetFlg); /* ** CAPI3REF: Status Parameters for prepared statements ** KEYWORDS: {SQLITE_STMTSTATUS counter} {SQLITE_STMTSTATUS counters} ** ** These preprocessor macros define integer codes that name counter ** values associated with the [sqlite3_stmt_status()] interface. ** The meanings of the various counters are as follows: ** **
** [[SQLITE_STMTSTATUS_FULLSCAN_STEP]]
SQLITE_STMTSTATUS_FULLSCAN_STEP
**
^This is the number of times that SQLite has stepped forward in ** a table as part of a full table scan. Large numbers for this counter ** may indicate opportunities for performance improvement through ** careful use of indices.
** ** [[SQLITE_STMTSTATUS_SORT]]
SQLITE_STMTSTATUS_SORT
**
^This is the number of sort operations that have occurred. ** A non-zero value in this counter may indicate an opportunity to ** improvement performance through careful use of indices.
** ** [[SQLITE_STMTSTATUS_AUTOINDEX]]
SQLITE_STMTSTATUS_AUTOINDEX
**
^This is the number of rows inserted into transient indices that ** were created automatically in order to help joins run faster. ** A non-zero value in this counter may indicate an opportunity to ** improvement performance by adding permanent indices that do not ** need to be reinitialized each time the statement is run.
** ** [[SQLITE_STMTSTATUS_VM_STEP]]
SQLITE_STMTSTATUS_VM_STEP
**
^This is the number of virtual machine operations executed ** by the prepared statement if that number is less than or equal ** to 2147483647. The number of virtual machine operations can be ** used as a proxy for the total work done by the prepared statement. ** If the number of virtual machine operations exceeds 2147483647 ** then the value returned by this statement status code is undefined. ** ** [[SQLITE_STMTSTATUS_REPREPARE]]
SQLITE_STMTSTATUS_REPREPARE
**
^This is the number of times that the prepare statement has been ** automatically regenerated due to schema changes or changes to ** [bound parameters] that might affect the query plan. ** ** [[SQLITE_STMTSTATUS_RUN]]
SQLITE_STMTSTATUS_RUN
**
^This is the number of times that the prepared statement has ** been run. A single "run" for the purposes of this counter is one ** or more calls to [sqlite3_step()] followed by a call to [sqlite3_reset()]. ** The counter is incremented on the first [sqlite3_step()] call of each ** cycle. ** ** [[SQLITE_STMTSTATUS_MEMUSED]]
SQLITE_STMTSTATUS_MEMUSED
**
^This is the approximate number of bytes of heap memory ** used to store the prepared statement. ^This value is not actually ** a counter, and so the resetFlg parameter to sqlite3_stmt_status() ** is ignored when the opcode is SQLITE_STMTSTATUS_MEMUSED. **
**
*/ #define SQLITE_STMTSTATUS_FULLSCAN_STEP 1 #define SQLITE_STMTSTATUS_SORT 2 #define SQLITE_STMTSTATUS_AUTOINDEX 3 #define SQLITE_STMTSTATUS_VM_STEP 4 #define SQLITE_STMTSTATUS_REPREPARE 5 #define SQLITE_STMTSTATUS_RUN 6 #define SQLITE_STMTSTATUS_MEMUSED 99 /* ** CAPI3REF: Custom Page Cache Object ** ** The sqlite3_pcache type is opaque. It is implemented by ** the pluggable module. The SQLite core has no knowledge of ** its size or internal structure and never deals with the ** sqlite3_pcache object except by holding and passing pointers ** to the object. ** ** See [sqlite3_pcache_methods2] for additional information. */ typedef struct sqlite3_pcache sqlite3_pcache; /* ** CAPI3REF: Custom Page Cache Object ** ** The sqlite3_pcache_page object represents a single page in the ** page cache. The page cache will allocate instances of this ** object. Various methods of the page cache use pointers to instances ** of this object as parameters or as their return value. ** ** See [sqlite3_pcache_methods2] for additional information. */ typedef struct sqlite3_pcache_page sqlite3_pcache_page; struct sqlite3_pcache_page { void *pBuf; /* The content of the page */ void *pExtra; /* Extra information associated with the page */ }; /* ** CAPI3REF: Application Defined Page Cache. ** KEYWORDS: {page cache} ** ** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE2], ...) interface can ** register an alternative page cache implementation by passing in an ** instance of the sqlite3_pcache_methods2 structure.)^ ** In many applications, most of the heap memory allocated by ** SQLite is used for the page cache. ** By implementing a ** custom page cache using this API, an application can better control ** the amount of memory consumed by SQLite, the way in which ** that memory is allocated and released, and the policies used to ** determine exactly which parts of a database file are cached and for ** how long. ** ** The alternative page cache mechanism is an ** extreme measure that is only needed by the most demanding applications. ** The built-in page cache is recommended for most uses. ** ** ^(The contents of the sqlite3_pcache_methods2 structure are copied to an ** internal buffer by SQLite within the call to [sqlite3_config]. Hence ** the application may discard the parameter after the call to ** [sqlite3_config()] returns.)^ ** ** [[the xInit() page cache method]] ** ^(The xInit() method is called once for each effective ** call to [sqlite3_initialize()])^ ** (usually only once during the lifetime of the process). ^(The xInit() ** method is passed a copy of the sqlite3_pcache_methods2.pArg value.)^ ** The intent of the xInit() method is to set up global data structures ** required by the custom page cache implementation. ** ^(If the xInit() method is NULL, then the ** built-in default page cache is used instead of the application defined ** page cache.)^ ** ** [[the xShutdown() page cache method]] ** ^The xShutdown() method is called by [sqlite3_shutdown()]. ** It can be used to clean up ** any outstanding resources before process shutdown, if required. ** ^The xShutdown() method may be NULL. ** ** ^SQLite automatically serializes calls to the xInit method, ** so the xInit method need not be threadsafe. ^The ** xShutdown method is only called from [sqlite3_shutdown()] so it does ** not need to be threadsafe either. All other methods must be threadsafe ** in multithreaded applications. ** ** ^SQLite will never invoke xInit() more than once without an intervening ** call to xShutdown(). ** ** [[the xCreate() page cache methods]] ** ^SQLite invokes the xCreate() method to construct a new cache instance. ** SQLite will typically create one cache instance for each open database file, ** though this is not guaranteed. ^The ** first parameter, szPage, is the size in bytes of the pages that must ** be allocated by the cache. ^szPage will always a power of two. ^The ** second parameter szExtra is a number of bytes of extra storage ** associated with each page cache entry. ^The szExtra parameter will ** a number less than 250. SQLite will use the ** extra szExtra bytes on each page to store metadata about the underlying ** database page on disk. The value passed into szExtra depends ** on the SQLite version, the target platform, and how SQLite was compiled. ** ^The third argument to xCreate(), bPurgeable, is true if the cache being ** created will be used to cache database pages of a file stored on disk, or ** false if it is used for an in-memory database. The cache implementation ** does not have to do anything special based with the value of bPurgeable; ** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will ** never invoke xUnpin() except to deliberately delete a page. ** ^In other words, calls to xUnpin() on a cache with bPurgeable set to ** false will always have the "discard" flag set to true. ** ^Hence, a cache created with bPurgeable false will ** never contain any unpinned pages. ** ** [[the xCachesize() page cache method]] ** ^(The xCachesize() method may be called at any time by SQLite to set the ** suggested maximum cache-size (number of pages stored by) the cache ** instance passed as the first argument. This is the value configured using ** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable ** parameter, the implementation is not required to do anything with this ** value; it is advisory only. ** ** [[the xPagecount() page cache methods]] ** The xPagecount() method must return the number of pages currently ** stored in the cache, both pinned and unpinned. ** ** [[the xFetch() page cache methods]] ** The xFetch() method locates a page in the cache and returns a pointer to ** an sqlite3_pcache_page object associated with that page, or a NULL pointer. ** The pBuf element of the returned sqlite3_pcache_page object will be a ** pointer to a buffer of szPage bytes used to store the content of a ** single database page. The pExtra element of sqlite3_pcache_page will be ** a pointer to the szExtra bytes of extra storage that SQLite has requested ** for each entry in the page cache. ** ** The page to be fetched is determined by the key. ^The minimum key value ** is 1. After it has been retrieved using xFetch, the page is considered ** to be "pinned". ** ** If the requested page is already in the page cache, then the page cache ** implementation must return a pointer to the page buffer with its content ** intact. If the requested page is not already in the cache, then the ** cache implementation should use the value of the createFlag ** parameter to help it determined what action to take: ** ** **
createFlag Behavior when page is not already in cache **
0 Do not allocate a new page. Return NULL. **
1 Allocate a new page if it easy and convenient to do so. ** Otherwise return NULL. **
2 Make every effort to allocate a new page. Only return ** NULL if allocating a new page is effectively impossible. **
** ** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite ** will only use a createFlag of 2 after a prior call with a createFlag of 1 ** failed.)^ In between the xFetch() calls, SQLite may ** attempt to unpin one or more cache pages by spilling the content of ** pinned pages to disk and synching the operating system disk cache. ** ** [[the xUnpin() page cache method]] ** ^xUnpin() is called by SQLite with a pointer to a currently pinned page ** as its second argument. If the third parameter, discard, is non-zero, ** then the page must be evicted from the cache. ** ^If the discard parameter is ** zero, then the page may be discarded or retained at the discretion of ** page cache implementation. ^The page cache implementation ** may choose to evict unpinned pages at any time. ** ** The cache must not perform any reference counting. A single ** call to xUnpin() unpins the page regardless of the number of prior calls ** to xFetch(). ** ** [[the xRekey() page cache methods]] ** The xRekey() method is used to change the key value associated with the ** page passed as the second argument. If the cache ** previously contains an entry associated with newKey, it must be ** discarded. ^Any prior cache entry associated with newKey is guaranteed not ** to be pinned. ** ** When SQLite calls the xTruncate() method, the cache must discard all ** existing cache entries with page numbers (keys) greater than or equal ** to the value of the iLimit parameter passed to xTruncate(). If any ** of these pages are pinned, they are implicitly unpinned, meaning that ** they can be safely discarded. ** ** [[the xDestroy() page cache method]] ** ^The xDestroy() method is used to delete a cache allocated by xCreate(). ** All resources associated with the specified cache should be freed. ^After ** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*] ** handle invalid, and will not use it with any other sqlite3_pcache_methods2 ** functions. ** ** [[the xShrink() page cache method]] ** ^SQLite invokes the xShrink() method when it wants the page cache to ** free up as much of heap memory as possible. The page cache implementation ** is not obligated to free any memory, but well-behaved implementations should ** do their best. */ typedef struct sqlite3_pcache_methods2 sqlite3_pcache_methods2; struct sqlite3_pcache_methods2 { int iVersion; void *pArg; int (*xInit)(void*); void (*xShutdown)(void*); sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable); void (*xCachesize)(sqlite3_pcache*, int nCachesize); int (*xPagecount)(sqlite3_pcache*); sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_page*, int discard); void (*xRekey)(sqlite3_pcache*, sqlite3_pcache_page*, unsigned oldKey, unsigned newKey); void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); void (*xDestroy)(sqlite3_pcache*); void (*xShrink)(sqlite3_pcache*); }; /* ** This is the obsolete pcache_methods object that has now been replaced ** by sqlite3_pcache_methods2. This object is not used by SQLite. It is ** retained in the header file for backwards compatibility only. */ typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; struct sqlite3_pcache_methods { void *pArg; int (*xInit)(void*); void (*xShutdown)(void*); sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); void (*xCachesize)(sqlite3_pcache*, int nCachesize); int (*xPagecount)(sqlite3_pcache*); void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); void (*xUnpin)(sqlite3_pcache*, void*, int discard); void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey); void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); void (*xDestroy)(sqlite3_pcache*); }; /* ** CAPI3REF: Online Backup Object ** ** The sqlite3_backup object records state information about an ongoing ** online backup operation. ^The sqlite3_backup object is created by ** a call to [sqlite3_backup_init()] and is destroyed by a call to ** [sqlite3_backup_finish()]. ** ** See Also: [Using the SQLite Online Backup API] */ typedef struct sqlite3_backup sqlite3_backup; /* ** CAPI3REF: Online Backup API. ** ** The backup API copies the content of one database into another. ** It is useful either for creating backups of databases or ** for copying in-memory databases to or from persistent files. ** ** See Also: [Using the SQLite Online Backup API] ** ** ^SQLite holds a write transaction open on the destination database file ** for the duration of the backup operation. ** ^The source database is read-locked only while it is being read; ** it is not locked continuously for the entire backup operation. ** ^Thus, the backup may be performed on a live source database without ** preventing other database connections from ** reading or writing to the source database while the backup is underway. ** ** ^(To perform a backup operation: **
    **
  1. sqlite3_backup_init() is called once to initialize the ** backup, **
  2. sqlite3_backup_step() is called one or more times to transfer ** the data between the two databases, and finally **
  3. sqlite3_backup_finish() is called to release all resources ** associated with the backup operation. **
)^ ** There should be exactly one call to sqlite3_backup_finish() for each ** successful call to sqlite3_backup_init(). ** ** [[sqlite3_backup_init()]] sqlite3_backup_init() ** ** ^The D and N arguments to sqlite3_backup_init(D,N,S,M) are the ** [database connection] associated with the destination database ** and the database name, respectively. ** ^The database name is "main" for the main database, "temp" for the ** temporary database, or the name specified after the AS keyword in ** an [ATTACH] statement for an attached database. ** ^The S and M arguments passed to ** sqlite3_backup_init(D,N,S,M) identify the [database connection] ** and database name of the source database, respectively. ** ^The source and destination [database connections] (parameters S and D) ** must be different or else sqlite3_backup_init(D,N,S,M) will fail with ** an error. ** ** ^A call to sqlite3_backup_init() will fail, returning NULL, if ** there is already a read or read-write transaction open on the ** destination database. ** ** ^If an error occurs within sqlite3_backup_init(D,N,S,M), then NULL is ** returned and an error code and error message are stored in the ** destination [database connection] D. ** ^The error code and message for the failed call to sqlite3_backup_init() ** can be retrieved using the [sqlite3_errcode()], [sqlite3_errmsg()], and/or ** [sqlite3_errmsg16()] functions. ** ^A successful call to sqlite3_backup_init() returns a pointer to an ** [sqlite3_backup] object. ** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and ** sqlite3_backup_finish() functions to perform the specified backup ** operation. ** ** [[sqlite3_backup_step()]] sqlite3_backup_step() ** ** ^Function sqlite3_backup_step(B,N) will copy up to N pages between ** the source and destination databases specified by [sqlite3_backup] object B. ** ^If N is negative, all remaining source pages are copied. ** ^If sqlite3_backup_step(B,N) successfully copies N pages and there ** are still more pages to be copied, then the function returns [SQLITE_OK]. ** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages ** from source to destination, then it returns [SQLITE_DONE]. ** ^If an error occurs while running sqlite3_backup_step(B,N), ** then an [error code] is returned. ^As well as [SQLITE_OK] and ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY], ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an ** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX] extended error code. ** ** ^(The sqlite3_backup_step() might return [SQLITE_READONLY] if **
    **
  1. the destination database was opened read-only, or **
  2. the destination database is using write-ahead-log journaling ** and the destination and source page sizes differ, or **
  3. the destination database is an in-memory database and the ** destination and source page sizes differ. **
)^ ** ** ^If sqlite3_backup_step() cannot obtain a required file-system lock, then ** the [sqlite3_busy_handler | busy-handler function] ** is invoked (if one is specified). ^If the ** busy-handler returns non-zero before the lock is available, then ** [SQLITE_BUSY] is returned to the caller. ^In this case the call to ** sqlite3_backup_step() can be retried later. ^If the source ** [database connection] ** is being used to write to the source database when sqlite3_backup_step() ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this ** case the call to sqlite3_backup_step() can be retried later on. ^(If ** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX], [SQLITE_NOMEM], or ** [SQLITE_READONLY] is returned, then ** there is no point in retrying the call to sqlite3_backup_step(). These ** errors are considered fatal.)^ The application must accept ** that the backup operation has failed and pass the backup operation handle ** to the sqlite3_backup_finish() to release associated resources. ** ** ^The first call to sqlite3_backup_step() obtains an exclusive lock ** on the destination file. ^The exclusive lock is not released until either ** sqlite3_backup_finish() is called or the backup operation is complete ** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to ** sqlite3_backup_step() obtains a [shared lock] on the source database that ** lasts for the duration of the sqlite3_backup_step() call. ** ^Because the source database is not locked between calls to ** sqlite3_backup_step(), the source database may be modified mid-way ** through the backup process. ^If the source database is modified by an ** external process or via a database connection other than the one being ** used by the backup operation, then the backup will be automatically ** restarted by the next call to sqlite3_backup_step(). ^If the source ** database is modified by the using the same database connection as is used ** by the backup operation, then the backup database is automatically ** updated at the same time. ** ** [[sqlite3_backup_finish()]] sqlite3_backup_finish() ** ** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the ** application wishes to abandon the backup operation, the application ** should destroy the [sqlite3_backup] by passing it to sqlite3_backup_finish(). ** ^The sqlite3_backup_finish() interfaces releases all ** resources associated with the [sqlite3_backup] object. ** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any ** active write-transaction on the destination database is rolled back. ** The [sqlite3_backup] object is invalid ** and may not be used following a call to sqlite3_backup_finish(). ** ** ^The value returned by sqlite3_backup_finish is [SQLITE_OK] if no ** sqlite3_backup_step() errors occurred, regardless or whether or not ** sqlite3_backup_step() completed. ** ^If an out-of-memory condition or IO error occurred during any prior ** sqlite3_backup_step() call on the same [sqlite3_backup] object, then ** sqlite3_backup_finish() returns the corresponding [error code]. ** ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step() ** is not a permanent error and does not affect the return value of ** sqlite3_backup_finish(). ** ** [[sqlite3_backup_remaining()]] [[sqlite3_backup_pagecount()]] ** sqlite3_backup_remaining() and sqlite3_backup_pagecount() ** ** ^The sqlite3_backup_remaining() routine returns the number of pages still ** to be backed up at the conclusion of the most recent sqlite3_backup_step(). ** ^The sqlite3_backup_pagecount() routine returns the total number of pages ** in the source database at the conclusion of the most recent ** sqlite3_backup_step(). ** ^(The values returned by these functions are only updated by ** sqlite3_backup_step(). If the source database is modified in a way that ** changes the size of the source database or the number of pages remaining, ** those changes are not reflected in the output of sqlite3_backup_pagecount() ** and sqlite3_backup_remaining() until after the next ** sqlite3_backup_step().)^ ** ** Concurrent Usage of Database Handles ** ** ^The source [database connection] may be used by the application for other ** purposes while a backup operation is underway or being initialized. ** ^If SQLite is compiled and configured to support threadsafe database ** connections, then the source database connection may be used concurrently ** from within other threads. ** ** However, the application must guarantee that the destination ** [database connection] is not passed to any other API (by any thread) after ** sqlite3_backup_init() is called and before the corresponding call to ** sqlite3_backup_finish(). SQLite does not currently check to see ** if the application incorrectly accesses the destination [database connection] ** and so no error code is reported, but the operations may malfunction ** nevertheless. Use of the destination database connection while a ** backup is in progress might also also cause a mutex deadlock. ** ** If running in [shared cache mode], the application must ** guarantee that the shared cache used by the destination database ** is not accessed while the backup is running. In practice this means ** that the application must guarantee that the disk file being ** backed up to is not accessed by any connection within the process, ** not just the specific connection that was passed to sqlite3_backup_init(). ** ** The [sqlite3_backup] object itself is partially threadsafe. Multiple ** threads may safely make multiple concurrent calls to sqlite3_backup_step(). ** However, the sqlite3_backup_remaining() and sqlite3_backup_pagecount() ** APIs are not strictly speaking threadsafe. If they are invoked at the ** same time as another thread is invoking sqlite3_backup_step() it is ** possible that they return invalid values. */ SQLITE_API sqlite3_backup *sqlite3_backup_init( sqlite3 *pDest, /* Destination database handle */ const char *zDestName, /* Destination database name */ sqlite3 *pSource, /* Source database handle */ const char *zSourceName /* Source database name */ ); SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage); SQLITE_API int sqlite3_backup_finish(sqlite3_backup *p); SQLITE_API int sqlite3_backup_remaining(sqlite3_backup *p); SQLITE_API int sqlite3_backup_pagecount(sqlite3_backup *p); /* ** CAPI3REF: Unlock Notification ** METHOD: sqlite3 ** ** ^When running in shared-cache mode, a database operation may fail with ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or ** individual tables within the shared-cache cannot be obtained. See ** [SQLite Shared-Cache Mode] for a description of shared-cache locking. ** ^This API may be used to register a callback that SQLite will invoke ** when the connection currently holding the required lock relinquishes it. ** ^This API is only available if the library was compiled with the ** [SQLITE_ENABLE_UNLOCK_NOTIFY] C-preprocessor symbol defined. ** ** See Also: [Using the SQLite Unlock Notification Feature]. ** ** ^Shared-cache locks are released when a database connection concludes ** its current transaction, either by committing it or rolling it back. ** ** ^When a connection (known as the blocked connection) fails to obtain a ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the ** identity of the database connection (the blocking connection) that ** has locked the required resource is stored internally. ^After an ** application receives an SQLITE_LOCKED error, it may call the ** sqlite3_unlock_notify() method with the blocked connection handle as ** the first argument to register for a callback that will be invoked ** when the blocking connections current transaction is concluded. ^The ** callback is invoked from within the [sqlite3_step] or [sqlite3_close] ** call that concludes the blocking connection's transaction. ** ** ^(If sqlite3_unlock_notify() is called in a multi-threaded application, ** there is a chance that the blocking connection will have already ** concluded its transaction by the time sqlite3_unlock_notify() is invoked. ** If this happens, then the specified callback is invoked immediately, ** from within the call to sqlite3_unlock_notify().)^ ** ** ^If the blocked connection is attempting to obtain a write-lock on a ** shared-cache table, and more than one other connection currently holds ** a read-lock on the same table, then SQLite arbitrarily selects one of ** the other connections to use as the blocking connection. ** ** ^(There may be at most one unlock-notify callback registered by a ** blocked connection. If sqlite3_unlock_notify() is called when the ** blocked connection already has a registered unlock-notify callback, ** then the new callback replaces the old.)^ ^If sqlite3_unlock_notify() is ** called with a NULL pointer as its second argument, then any existing ** unlock-notify callback is canceled. ^The blocked connections ** unlock-notify callback may also be canceled by closing the blocked ** connection using [sqlite3_close()]. ** ** The unlock-notify callback is not reentrant. If an application invokes ** any sqlite3_xxx API functions from within an unlock-notify callback, a ** crash or deadlock may be the result. ** ** ^Unless deadlock is detected (see below), sqlite3_unlock_notify() always ** returns SQLITE_OK. ** ** Callback Invocation Details ** ** When an unlock-notify callback is registered, the application provides a ** single void* pointer that is passed to the callback when it is invoked. ** However, the signature of the callback function allows SQLite to pass ** it an array of void* context pointers. The first argument passed to ** an unlock-notify callback is a pointer to an array of void* pointers, ** and the second is the number of entries in the array. ** ** When a blocking connection's transaction is concluded, there may be ** more than one blocked connection that has registered for an unlock-notify ** callback. ^If two or more such blocked connections have specified the ** same callback function, then instead of invoking the callback function ** multiple times, it is invoked once with the set of void* context pointers ** specified by the blocked connections bundled together into an array. ** This gives the application an opportunity to prioritize any actions ** related to the set of unblocked database connections. ** ** Deadlock Detection ** ** Assuming that after registering for an unlock-notify callback a ** database waits for the callback to be issued before taking any further ** action (a reasonable assumption), then using this API may cause the ** application to deadlock. For example, if connection X is waiting for ** connection Y's transaction to be concluded, and similarly connection ** Y is waiting on connection X's transaction, then neither connection ** will proceed and the system may remain deadlocked indefinitely. ** ** To avoid this scenario, the sqlite3_unlock_notify() performs deadlock ** detection. ^If a given call to sqlite3_unlock_notify() would put the ** system in a deadlocked state, then SQLITE_LOCKED is returned and no ** unlock-notify callback is registered. The system is said to be in ** a deadlocked state if connection A has registered for an unlock-notify ** callback on the conclusion of connection B's transaction, and connection ** B has itself registered for an unlock-notify callback when connection ** A's transaction is concluded. ^Indirect deadlock is also detected, so ** the system is also considered to be deadlocked if connection B has ** registered for an unlock-notify callback on the conclusion of connection ** C's transaction, where connection C is waiting on connection A. ^Any ** number of levels of indirection are allowed. ** ** The "DROP TABLE" Exception ** ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost ** always appropriate to call sqlite3_unlock_notify(). There is however, ** one exception. When executing a "DROP TABLE" or "DROP INDEX" statement, ** SQLite checks if there are any currently executing SELECT statements ** that belong to the same connection. If there are, SQLITE_LOCKED is ** returned. In this case there is no "blocking connection", so invoking ** sqlite3_unlock_notify() results in the unlock-notify callback being ** invoked immediately. If the application then re-attempts the "DROP TABLE" ** or "DROP INDEX" query, an infinite loop might be the result. ** ** One way around this problem is to check the extended error code returned ** by an sqlite3_step() call. ^(If there is a blocking connection, then the ** extended error code is set to SQLITE_LOCKED_SHAREDCACHE. Otherwise, in ** the special "DROP TABLE/INDEX" case, the extended error code is just ** SQLITE_LOCKED.)^ */ SQLITE_API int sqlite3_unlock_notify( sqlite3 *pBlocked, /* Waiting connection */ void (*xNotify)(void **apArg, int nArg), /* Callback function to invoke */ void *pNotifyArg /* Argument to pass to xNotify */ ); /* ** CAPI3REF: String Comparison ** ** ^The [sqlite3_stricmp()] and [sqlite3_strnicmp()] APIs allow applications ** and extensions to compare the contents of two buffers containing UTF-8 ** strings in a case-independent fashion, using the same definition of "case ** independence" that SQLite uses internally when comparing identifiers. */ SQLITE_API int sqlite3_stricmp(const char *, const char *); SQLITE_API int sqlite3_strnicmp(const char *, const char *, int); /* ** CAPI3REF: String Globbing * ** ^The [sqlite3_strglob(P,X)] interface returns zero if and only if ** string X matches the [GLOB] pattern P. ** ^The definition of [GLOB] pattern matching used in ** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the ** SQL dialect understood by SQLite. ^The [sqlite3_strglob(P,X)] function ** is case sensitive. ** ** Note that this routine returns zero on a match and non-zero if the strings ** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()]. ** ** See also: [sqlite3_strlike()]. */ SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr); /* ** CAPI3REF: String LIKE Matching * ** ^The [sqlite3_strlike(P,X,E)] interface returns zero if and only if ** string X matches the [LIKE] pattern P with escape character E. ** ^The definition of [LIKE] pattern matching used in ** [sqlite3_strlike(P,X,E)] is the same as for the "X LIKE P ESCAPE E" ** operator in the SQL dialect understood by SQLite. ^For "X LIKE P" without ** the ESCAPE clause, set the E parameter of [sqlite3_strlike(P,X,E)] to 0. ** ^As with the LIKE operator, the [sqlite3_strlike(P,X,E)] function is case ** insensitive - equivalent upper and lower case ASCII characters match ** one another. ** ** ^The [sqlite3_strlike(P,X,E)] function matches Unicode characters, though ** only ASCII characters are case folded. ** ** Note that this routine returns zero on a match and non-zero if the strings ** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()]. ** ** See also: [sqlite3_strglob()]. */ SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc); /* ** CAPI3REF: Error Logging Interface ** ** ^The [sqlite3_log()] interface writes a message into the [error log] ** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()]. ** ^If logging is enabled, the zFormat string and subsequent arguments are ** used with [sqlite3_snprintf()] to generate the final output string. ** ** The sqlite3_log() interface is intended for use by extensions such as ** virtual tables, collating functions, and SQL functions. While there is ** nothing to prevent an application from calling sqlite3_log(), doing so ** is considered bad form. ** ** The zFormat string must not be NULL. ** ** To avoid deadlocks and other threading problems, the sqlite3_log() routine ** will not use dynamically allocated memory. The log message is stored in ** a fixed-length buffer on the stack. If the log message is longer than ** a few hundred characters, it will be truncated to the length of the ** buffer. */ SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...); /* ** CAPI3REF: Write-Ahead Log Commit Hook ** METHOD: sqlite3 ** ** ^The [sqlite3_wal_hook()] function is used to register a callback that ** is invoked each time data is committed to a database in wal mode. ** ** ^(The callback is invoked by SQLite after the commit has taken place and ** the associated write-lock on the database released)^, so the implementation ** may read, write or [checkpoint] the database as required. ** ** ^The first parameter passed to the callback function when it is invoked ** is a copy of the third parameter passed to sqlite3_wal_hook() when ** registering the callback. ^The second is a copy of the database handle. ** ^The third parameter is the name of the database that was written to - ** either "main" or the name of an [ATTACH]-ed database. ^The fourth parameter ** is the number of pages currently in the write-ahead log file, ** including those that were just committed. ** ** The callback function should normally return [SQLITE_OK]. ^If an error ** code is returned, that error will propagate back up through the ** SQLite code base to cause the statement that provoked the callback ** to report an error, though the commit will have still occurred. If the ** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value ** that does not correspond to any valid SQLite error code, the results ** are undefined. ** ** A single database handle may have at most a single write-ahead log callback ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any ** previously registered write-ahead log callback. ^Note that the ** [sqlite3_wal_autocheckpoint()] interface and the ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will ** overwrite any prior [sqlite3_wal_hook()] settings. */ SQLITE_API void *sqlite3_wal_hook( sqlite3*, int(*)(void *,sqlite3*,const char*,int), void* ); /* ** CAPI3REF: Configure an auto-checkpoint ** METHOD: sqlite3 ** ** ^The [sqlite3_wal_autocheckpoint(D,N)] is a wrapper around ** [sqlite3_wal_hook()] that causes any database on [database connection] D ** to automatically [checkpoint] ** after committing a transaction if there are N or ** more frames in the [write-ahead log] file. ^Passing zero or ** a negative value as the nFrame parameter disables automatic ** checkpoints entirely. ** ** ^The callback registered by this function replaces any existing callback ** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback ** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism ** configured by this function. ** ** ^The [wal_autocheckpoint pragma] can be used to invoke this interface ** from SQL. ** ** ^Checkpoints initiated by this mechanism are ** [sqlite3_wal_checkpoint_v2|PASSIVE]. ** ** ^Every new [database connection] defaults to having the auto-checkpoint ** enabled with a threshold of 1000 or [SQLITE_DEFAULT_WAL_AUTOCHECKPOINT] ** pages. The use of this interface ** is only necessary if the default setting is found to be suboptimal ** for a particular application. */ SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int N); /* ** CAPI3REF: Checkpoint a database ** METHOD: sqlite3 ** ** ^(The sqlite3_wal_checkpoint(D,X) is equivalent to ** [sqlite3_wal_checkpoint_v2](D,X,[SQLITE_CHECKPOINT_PASSIVE],0,0).)^ ** ** In brief, sqlite3_wal_checkpoint(D,X) causes the content in the ** [write-ahead log] for database X on [database connection] D to be ** transferred into the database file and for the write-ahead log to ** be reset. See the [checkpointing] documentation for addition ** information. ** ** This interface used to be the only way to cause a checkpoint to ** occur. But then the newer and more powerful [sqlite3_wal_checkpoint_v2()] ** interface was added. This interface is retained for backwards ** compatibility and as a convenience for applications that need to manually ** start a callback but which do not need the full power (and corresponding ** complication) of [sqlite3_wal_checkpoint_v2()]. */ SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb); /* ** CAPI3REF: Checkpoint a database ** METHOD: sqlite3 ** ** ^(The sqlite3_wal_checkpoint_v2(D,X,M,L,C) interface runs a checkpoint ** operation on database X of [database connection] D in mode M. Status ** information is written back into integers pointed to by L and C.)^ ** ^(The M parameter must be a valid [checkpoint mode]:)^ ** **
**
SQLITE_CHECKPOINT_PASSIVE
** ^Checkpoint as many frames as possible without waiting for any database ** readers or writers to finish, then sync the database file if all frames ** in the log were checkpointed. ^The [busy-handler callback] ** is never invoked in the SQLITE_CHECKPOINT_PASSIVE mode. ** ^On the other hand, passive mode might leave the checkpoint unfinished ** if there are concurrent readers or writers. ** **
SQLITE_CHECKPOINT_FULL
** ^This mode blocks (it invokes the ** [sqlite3_busy_handler|busy-handler callback]) until there is no ** database writer and all readers are reading from the most recent database ** snapshot. ^It then checkpoints all frames in the log file and syncs the ** database file. ^This mode blocks new database writers while it is pending, ** but new database readers are allowed to continue unimpeded. ** **
SQLITE_CHECKPOINT_RESTART
** ^This mode works the same way as SQLITE_CHECKPOINT_FULL with the addition ** that after checkpointing the log file it blocks (calls the ** [busy-handler callback]) ** until all readers are reading from the database file only. ^This ensures ** that the next writer will restart the log file from the beginning. ** ^Like SQLITE_CHECKPOINT_FULL, this mode blocks new ** database writer attempts while it is pending, but does not impede readers. ** **
SQLITE_CHECKPOINT_TRUNCATE
** ^This mode works the same way as SQLITE_CHECKPOINT_RESTART with the ** addition that it also truncates the log file to zero bytes just prior ** to a successful return. **
** ** ^If pnLog is not NULL, then *pnLog is set to the total number of frames in ** the log file or to -1 if the checkpoint could not run because ** of an error or because the database is not in [WAL mode]. ^If pnCkpt is not ** NULL,then *pnCkpt is set to the total number of checkpointed frames in the ** log file (including any that were already checkpointed before the function ** was called) or to -1 if the checkpoint could not run due to an error or ** because the database is not in WAL mode. ^Note that upon successful ** completion of an SQLITE_CHECKPOINT_TRUNCATE, the log file will have been ** truncated to zero bytes and so both *pnLog and *pnCkpt will be set to zero. ** ** ^All calls obtain an exclusive "checkpoint" lock on the database file. ^If ** any other process is running a checkpoint operation at the same time, the ** lock cannot be obtained and SQLITE_BUSY is returned. ^Even if there is a ** busy-handler configured, it will not be invoked in this case. ** ** ^The SQLITE_CHECKPOINT_FULL, RESTART and TRUNCATE modes also obtain the ** exclusive "writer" lock on the database file. ^If the writer lock cannot be ** obtained immediately, and a busy-handler is configured, it is invoked and ** the writer lock retried until either the busy-handler returns 0 or the lock ** is successfully obtained. ^The busy-handler is also invoked while waiting for ** database readers as described above. ^If the busy-handler returns 0 before ** the writer lock is obtained or while waiting for database readers, the ** checkpoint operation proceeds from that point in the same way as ** SQLITE_CHECKPOINT_PASSIVE - checkpointing as many frames as possible ** without blocking any further. ^SQLITE_BUSY is returned in this case. ** ** ^If parameter zDb is NULL or points to a zero length string, then the ** specified operation is attempted on all WAL databases [attached] to ** [database connection] db. In this case the ** values written to output parameters *pnLog and *pnCkpt are undefined. ^If ** an SQLITE_BUSY error is encountered when processing one or more of the ** attached WAL databases, the operation is still attempted on any remaining ** attached databases and SQLITE_BUSY is returned at the end. ^If any other ** error occurs while processing an attached database, processing is abandoned ** and the error code is returned to the caller immediately. ^If no error ** (SQLITE_BUSY or otherwise) is encountered while processing the attached ** databases, SQLITE_OK is returned. ** ** ^If database zDb is the name of an attached database that is not in WAL ** mode, SQLITE_OK is returned and both *pnLog and *pnCkpt set to -1. ^If ** zDb is not NULL (or a zero length string) and is not the name of any ** attached database, SQLITE_ERROR is returned to the caller. ** ** ^Unless it returns SQLITE_MISUSE, ** the sqlite3_wal_checkpoint_v2() interface ** sets the error information that is queried by ** [sqlite3_errcode()] and [sqlite3_errmsg()]. ** ** ^The [PRAGMA wal_checkpoint] command can be used to invoke this interface ** from SQL. */ SQLITE_API int sqlite3_wal_checkpoint_v2( sqlite3 *db, /* Database handle */ const char *zDb, /* Name of attached database (or NULL) */ int eMode, /* SQLITE_CHECKPOINT_* value */ int *pnLog, /* OUT: Size of WAL log in frames */ int *pnCkpt /* OUT: Total number of frames checkpointed */ ); /* ** CAPI3REF: Checkpoint Mode Values ** KEYWORDS: {checkpoint mode} ** ** These constants define all valid values for the "checkpoint mode" passed ** as the third parameter to the [sqlite3_wal_checkpoint_v2()] interface. ** See the [sqlite3_wal_checkpoint_v2()] documentation for details on the ** meaning of each of these checkpoint modes. */ #define SQLITE_CHECKPOINT_PASSIVE 0 /* Do as much as possible w/o blocking */ #define SQLITE_CHECKPOINT_FULL 1 /* Wait for writers, then checkpoint */ #define SQLITE_CHECKPOINT_RESTART 2 /* Like FULL but wait for for readers */ #define SQLITE_CHECKPOINT_TRUNCATE 3 /* Like RESTART but also truncate WAL */ /* ** CAPI3REF: Virtual Table Interface Configuration ** ** This function may be called by either the [xConnect] or [xCreate] method ** of a [virtual table] implementation to configure ** various facets of the virtual table interface. ** ** If this interface is invoked outside the context of an xConnect or ** xCreate virtual table method then the behavior is undefined. ** ** In the call sqlite3_vtab_config(D,C,...) the D parameter is the ** [database connection] in which the virtual table is being created and ** which is passed in as the first argument to the [xConnect] or [xCreate] ** method that is invoking sqlite3_vtab_config(). The C parameter is one ** of the [virtual table configuration options]. The presence and meaning ** of parameters after C depend on which [virtual table configuration option] ** is used. */ SQLITE_API int sqlite3_vtab_config(sqlite3*, int op, ...); /* ** CAPI3REF: Virtual Table Configuration Options ** KEYWORDS: {virtual table configuration options} ** KEYWORDS: {virtual table configuration option} ** ** These macros define the various options to the ** [sqlite3_vtab_config()] interface that [virtual table] implementations ** can use to customize and optimize their behavior. ** **
** [[SQLITE_VTAB_CONSTRAINT_SUPPORT]] **
SQLITE_VTAB_CONSTRAINT_SUPPORT
**
Calls of the form ** [sqlite3_vtab_config](db,SQLITE_VTAB_CONSTRAINT_SUPPORT,X) are supported, ** where X is an integer. If X is zero, then the [virtual table] whose ** [xCreate] or [xConnect] method invoked [sqlite3_vtab_config()] does not ** support constraints. In this configuration (which is the default) if ** a call to the [xUpdate] method returns [SQLITE_CONSTRAINT], then the entire ** statement is rolled back as if [ON CONFLICT | OR ABORT] had been ** specified as part of the users SQL statement, regardless of the actual ** ON CONFLICT mode specified. ** ** If X is non-zero, then the virtual table implementation guarantees ** that if [xUpdate] returns [SQLITE_CONSTRAINT], it will do so before ** any modifications to internal or persistent data structures have been made. ** If the [ON CONFLICT] mode is ABORT, FAIL, IGNORE or ROLLBACK, SQLite ** is able to roll back a statement or database transaction, and abandon ** or continue processing the current SQL statement as appropriate. ** If the ON CONFLICT mode is REPLACE and the [xUpdate] method returns ** [SQLITE_CONSTRAINT], SQLite handles this as if the ON CONFLICT mode ** had been ABORT. ** ** Virtual table implementations that are required to handle OR REPLACE ** must do so within the [xUpdate] method. If a call to the ** [sqlite3_vtab_on_conflict()] function indicates that the current ON ** CONFLICT policy is REPLACE, the virtual table implementation should ** silently replace the appropriate rows within the xUpdate callback and ** return SQLITE_OK. Or, if this is not possible, it may return ** SQLITE_CONSTRAINT, in which case SQLite falls back to OR ABORT ** constraint handling. **
** ** [[SQLITE_VTAB_DIRECTONLY]]
SQLITE_VTAB_DIRECTONLY
**
Calls of the form ** [sqlite3_vtab_config](db,SQLITE_VTAB_DIRECTONLY) from within the ** the [xConnect] or [xCreate] methods of a [virtual table] implmentation ** prohibits that virtual table from being used from within triggers and ** views. **
** ** [[SQLITE_VTAB_INNOCUOUS]]
SQLITE_VTAB_INNOCUOUS
**
Calls of the form ** [sqlite3_vtab_config](db,SQLITE_VTAB_INNOCUOUS) from within the ** the [xConnect] or [xCreate] methods of a [virtual table] implmentation ** identify that virtual table as being safe to use from within triggers ** and views. Conceptually, the SQLITE_VTAB_INNOCUOUS tag means that the ** virtual table can do no serious harm even if it is controlled by a ** malicious hacker. Developers should avoid setting the SQLITE_VTAB_INNOCUOUS ** flag unless absolutely necessary. **
**
*/ #define SQLITE_VTAB_CONSTRAINT_SUPPORT 1 #define SQLITE_VTAB_INNOCUOUS 2 #define SQLITE_VTAB_DIRECTONLY 3 /* ** CAPI3REF: Determine The Virtual Table Conflict Policy ** ** This function may only be called from within a call to the [xUpdate] method ** of a [virtual table] implementation for an INSERT or UPDATE operation. ^The ** value returned is one of [SQLITE_ROLLBACK], [SQLITE_IGNORE], [SQLITE_FAIL], ** [SQLITE_ABORT], or [SQLITE_REPLACE], according to the [ON CONFLICT] mode ** of the SQL statement that triggered the call to the [xUpdate] method of the ** [virtual table]. */ SQLITE_API int sqlite3_vtab_on_conflict(sqlite3 *); /* ** CAPI3REF: Determine If Virtual Table Column Access Is For UPDATE ** ** If the sqlite3_vtab_nochange(X) routine is called within the [xColumn] ** method of a [virtual table], then it returns true if and only if the ** column is being fetched as part of an UPDATE operation during which the ** column value will not change. Applications might use this to substitute ** a return value that is less expensive to compute and that the corresponding ** [xUpdate] method understands as a "no-change" value. ** ** If the [xColumn] method calls sqlite3_vtab_nochange() and finds that ** the column is not changed by the UPDATE statement, then the xColumn ** method can optionally return without setting a result, without calling ** any of the [sqlite3_result_int|sqlite3_result_xxxxx() interfaces]. ** In that case, [sqlite3_value_nochange(X)] will return true for the ** same column in the [xUpdate] method. */ SQLITE_API int sqlite3_vtab_nochange(sqlite3_context*); /* ** CAPI3REF: Determine The Collation For a Virtual Table Constraint ** ** This function may only be called from within a call to the [xBestIndex] ** method of a [virtual table]. ** ** The first argument must be the sqlite3_index_info object that is the ** first parameter to the xBestIndex() method. The second argument must be ** an index into the aConstraint[] array belonging to the sqlite3_index_info ** structure passed to xBestIndex. This function returns a pointer to a buffer ** containing the name of the collation sequence for the corresponding ** constraint. */ SQLITE_API SQLITE_EXPERIMENTAL const char *sqlite3_vtab_collation(sqlite3_index_info*,int); /* ** CAPI3REF: Conflict resolution modes ** KEYWORDS: {conflict resolution mode} ** ** These constants are returned by [sqlite3_vtab_on_conflict()] to ** inform a [virtual table] implementation what the [ON CONFLICT] mode ** is for the SQL statement being evaluated. ** ** Note that the [SQLITE_IGNORE] constant is also used as a potential ** return value from the [sqlite3_set_authorizer()] callback and that ** [SQLITE_ABORT] is also a [result code]. */ #define SQLITE_ROLLBACK 1 /* #define SQLITE_IGNORE 2 // Also used by sqlite3_authorizer() callback */ #define SQLITE_FAIL 3 /* #define SQLITE_ABORT 4 // Also an error code */ #define SQLITE_REPLACE 5 /* ** CAPI3REF: Prepared Statement Scan Status Opcodes ** KEYWORDS: {scanstatus options} ** ** The following constants can be used for the T parameter to the ** [sqlite3_stmt_scanstatus(S,X,T,V)] interface. Each constant designates a ** different metric for sqlite3_stmt_scanstatus() to return. ** ** When the value returned to V is a string, space to hold that string is ** managed by the prepared statement S and will be automatically freed when ** S is finalized. ** **
** [[SQLITE_SCANSTAT_NLOOP]]
SQLITE_SCANSTAT_NLOOP
**
^The [sqlite3_int64] variable pointed to by the V parameter will be ** set to the total number of times that the X-th loop has run.
** ** [[SQLITE_SCANSTAT_NVISIT]]
SQLITE_SCANSTAT_NVISIT
**
^The [sqlite3_int64] variable pointed to by the V parameter will be set ** to the total number of rows examined by all iterations of the X-th loop.
** ** [[SQLITE_SCANSTAT_EST]]
SQLITE_SCANSTAT_EST
**
^The "double" variable pointed to by the V parameter will be set to the ** query planner's estimate for the average number of rows output from each ** iteration of the X-th loop. If the query planner's estimates was accurate, ** then this value will approximate the quotient NVISIT/NLOOP and the ** product of this value for all prior loops with the same SELECTID will ** be the NLOOP value for the current loop. ** ** [[SQLITE_SCANSTAT_NAME]]
SQLITE_SCANSTAT_NAME
**
^The "const char *" variable pointed to by the V parameter will be set ** to a zero-terminated UTF-8 string containing the name of the index or table ** used for the X-th loop. ** ** [[SQLITE_SCANSTAT_EXPLAIN]]
SQLITE_SCANSTAT_EXPLAIN
**
^The "const char *" variable pointed to by the V parameter will be set ** to a zero-terminated UTF-8 string containing the [EXPLAIN QUERY PLAN] ** description for the X-th loop. ** ** [[SQLITE_SCANSTAT_SELECTID]]
SQLITE_SCANSTAT_SELECT
**
^The "int" variable pointed to by the V parameter will be set to the ** "select-id" for the X-th loop. The select-id identifies which query or ** subquery the loop is part of. The main query has a select-id of zero. ** The select-id is the same value as is output in the first column ** of an [EXPLAIN QUERY PLAN] query. **
*/ #define SQLITE_SCANSTAT_NLOOP 0 #define SQLITE_SCANSTAT_NVISIT 1 #define SQLITE_SCANSTAT_EST 2 #define SQLITE_SCANSTAT_NAME 3 #define SQLITE_SCANSTAT_EXPLAIN 4 #define SQLITE_SCANSTAT_SELECTID 5 /* ** CAPI3REF: Prepared Statement Scan Status ** METHOD: sqlite3_stmt ** ** This interface returns information about the predicted and measured ** performance for pStmt. Advanced applications can use this ** interface to compare the predicted and the measured performance and ** issue warnings and/or rerun [ANALYZE] if discrepancies are found. ** ** Since this interface is expected to be rarely used, it is only ** available if SQLite is compiled using the [SQLITE_ENABLE_STMT_SCANSTATUS] ** compile-time option. ** ** The "iScanStatusOp" parameter determines which status information to return. ** The "iScanStatusOp" must be one of the [scanstatus options] or the behavior ** of this interface is undefined. ** ^The requested measurement is written into a variable pointed to by ** the "pOut" parameter. ** Parameter "idx" identifies the specific loop to retrieve statistics for. ** Loops are numbered starting from zero. ^If idx is out of range - less than ** zero or greater than or equal to the total number of loops used to implement ** the statement - a non-zero value is returned and the variable that pOut ** points to is unchanged. ** ** ^Statistics might not be available for all loops in all statements. ^In cases ** where there exist loops with no available statistics, this function behaves ** as if the loop did not exist - it returns non-zero and leave the variable ** that pOut points to unchanged. ** ** See also: [sqlite3_stmt_scanstatus_reset()] */ SQLITE_API int sqlite3_stmt_scanstatus( sqlite3_stmt *pStmt, /* Prepared statement for which info desired */ int idx, /* Index of loop to report on */ int iScanStatusOp, /* Information desired. SQLITE_SCANSTAT_* */ void *pOut /* Result written here */ ); /* ** CAPI3REF: Zero Scan-Status Counters ** METHOD: sqlite3_stmt ** ** ^Zero all [sqlite3_stmt_scanstatus()] related event counters. ** ** This API is only available if the library is built with pre-processor ** symbol [SQLITE_ENABLE_STMT_SCANSTATUS] defined. */ SQLITE_API void sqlite3_stmt_scanstatus_reset(sqlite3_stmt*); /* ** CAPI3REF: Flush caches to disk mid-transaction ** ** ^If a write-transaction is open on [database connection] D when the ** [sqlite3_db_cacheflush(D)] interface invoked, any dirty ** pages in the pager-cache that are not currently in use are written out ** to disk. A dirty page may be in use if a database cursor created by an ** active SQL statement is reading from it, or if it is page 1 of a database ** file (page 1 is always "in use"). ^The [sqlite3_db_cacheflush(D)] ** interface flushes caches for all schemas - "main", "temp", and ** any [attached] databases. ** ** ^If this function needs to obtain extra database locks before dirty pages ** can be flushed to disk, it does so. ^If those locks cannot be obtained ** immediately and there is a busy-handler callback configured, it is invoked ** in the usual manner. ^If the required lock still cannot be obtained, then ** the database is skipped and an attempt made to flush any dirty pages ** belonging to the next (if any) database. ^If any databases are skipped ** because locks cannot be obtained, but no other error occurs, this ** function returns SQLITE_BUSY. ** ** ^If any other error occurs while flushing dirty pages to disk (for ** example an IO error or out-of-memory condition), then processing is ** abandoned and an SQLite [error code] is returned to the caller immediately. ** ** ^Otherwise, if no error occurs, [sqlite3_db_cacheflush()] returns SQLITE_OK. ** ** ^This function does not set the database handle error code or message ** returned by the [sqlite3_errcode()] and [sqlite3_errmsg()] functions. */ SQLITE_API int sqlite3_db_cacheflush(sqlite3*); /* ** CAPI3REF: The pre-update hook. ** ** ^These interfaces are only available if SQLite is compiled using the ** [SQLITE_ENABLE_PREUPDATE_HOOK] compile-time option. ** ** ^The [sqlite3_preupdate_hook()] interface registers a callback function ** that is invoked prior to each [INSERT], [UPDATE], and [DELETE] operation ** on a database table. ** ^At most one preupdate hook may be registered at a time on a single ** [database connection]; each call to [sqlite3_preupdate_hook()] overrides ** the previous setting. ** ^The preupdate hook is disabled by invoking [sqlite3_preupdate_hook()] ** with a NULL pointer as the second parameter. ** ^The third parameter to [sqlite3_preupdate_hook()] is passed through as ** the first parameter to callbacks. ** ** ^The preupdate hook only fires for changes to real database tables; the ** preupdate hook is not invoked for changes to [virtual tables] or to ** system tables like sqlite_sequence or sqlite_stat1. ** ** ^The second parameter to the preupdate callback is a pointer to ** the [database connection] that registered the preupdate hook. ** ^The third parameter to the preupdate callback is one of the constants ** [SQLITE_INSERT], [SQLITE_DELETE], or [SQLITE_UPDATE] to identify the ** kind of update operation that is about to occur. ** ^(The fourth parameter to the preupdate callback is the name of the ** database within the database connection that is being modified. This ** will be "main" for the main database or "temp" for TEMP tables or ** the name given after the AS keyword in the [ATTACH] statement for attached ** databases.)^ ** ^The fifth parameter to the preupdate callback is the name of the ** table that is being modified. ** ** For an UPDATE or DELETE operation on a [rowid table], the sixth ** parameter passed to the preupdate callback is the initial [rowid] of the ** row being modified or deleted. For an INSERT operation on a rowid table, ** or any operation on a WITHOUT ROWID table, the value of the sixth ** parameter is undefined. For an INSERT or UPDATE on a rowid table the ** seventh parameter is the final rowid value of the row being inserted ** or updated. The value of the seventh parameter passed to the callback ** function is not defined for operations on WITHOUT ROWID tables, or for ** INSERT operations on rowid tables. ** ** The [sqlite3_preupdate_old()], [sqlite3_preupdate_new()], ** [sqlite3_preupdate_count()], and [sqlite3_preupdate_depth()] interfaces ** provide additional information about a preupdate event. These routines ** may only be called from within a preupdate callback. Invoking any of ** these routines from outside of a preupdate callback or with a ** [database connection] pointer that is different from the one supplied ** to the preupdate callback results in undefined and probably undesirable ** behavior. ** ** ^The [sqlite3_preupdate_count(D)] interface returns the number of columns ** in the row that is being inserted, updated, or deleted. ** ** ^The [sqlite3_preupdate_old(D,N,P)] interface writes into P a pointer to ** a [protected sqlite3_value] that contains the value of the Nth column of ** the table row before it is updated. The N parameter must be between 0 ** and one less than the number of columns or the behavior will be ** undefined. This must only be used within SQLITE_UPDATE and SQLITE_DELETE ** preupdate callbacks; if it is used by an SQLITE_INSERT callback then the ** behavior is undefined. The [sqlite3_value] that P points to ** will be destroyed when the preupdate callback returns. ** ** ^The [sqlite3_preupdate_new(D,N,P)] interface writes into P a pointer to ** a [protected sqlite3_value] that contains the value of the Nth column of ** the table row after it is updated. The N parameter must be between 0 ** and one less than the number of columns or the behavior will be ** undefined. This must only be used within SQLITE_INSERT and SQLITE_UPDATE ** preupdate callbacks; if it is used by an SQLITE_DELETE callback then the ** behavior is undefined. The [sqlite3_value] that P points to ** will be destroyed when the preupdate callback returns. ** ** ^The [sqlite3_preupdate_depth(D)] interface returns 0 if the preupdate ** callback was invoked as a result of a direct insert, update, or delete ** operation; or 1 for inserts, updates, or deletes invoked by top-level ** triggers; or 2 for changes resulting from triggers called by top-level ** triggers; and so forth. ** ** See also: [sqlite3_update_hook()] */ #if defined(SQLITE_ENABLE_PREUPDATE_HOOK) SQLITE_API void *sqlite3_preupdate_hook( sqlite3 *db, void(*xPreUpdate)( void *pCtx, /* Copy of third arg to preupdate_hook() */ sqlite3 *db, /* Database handle */ int op, /* SQLITE_UPDATE, DELETE or INSERT */ char const *zDb, /* Database name */ char const *zName, /* Table name */ sqlite3_int64 iKey1, /* Rowid of row about to be deleted/updated */ sqlite3_int64 iKey2 /* New rowid value (for a rowid UPDATE) */ ), void* ); SQLITE_API int sqlite3_preupdate_old(sqlite3 *, int, sqlite3_value **); SQLITE_API int sqlite3_preupdate_count(sqlite3 *); SQLITE_API int sqlite3_preupdate_depth(sqlite3 *); SQLITE_API int sqlite3_preupdate_new(sqlite3 *, int, sqlite3_value **); #endif /* ** CAPI3REF: Low-level system error code ** ** ^Attempt to return the underlying operating system error code or error ** number that caused the most recent I/O error or failure to open a file. ** The return value is OS-dependent. For example, on unix systems, after ** [sqlite3_open_v2()] returns [SQLITE_CANTOPEN], this interface could be ** called to get back the underlying "errno" that caused the problem, such ** as ENOSPC, EAUTH, EISDIR, and so forth. */ SQLITE_API int sqlite3_system_errno(sqlite3*); /* ** CAPI3REF: Database Snapshot ** KEYWORDS: {snapshot} {sqlite3_snapshot} ** ** An instance of the snapshot object records the state of a [WAL mode] ** database for some specific point in history. ** ** In [WAL mode], multiple [database connections] that are open on the ** same database file can each be reading a different historical version ** of the database file. When a [database connection] begins a read ** transaction, that connection sees an unchanging copy of the database ** as it existed for the point in time when the transaction first started. ** Subsequent changes to the database from other connections are not seen ** by the reader until a new read transaction is started. ** ** The sqlite3_snapshot object records state information about an historical ** version of the database file so that it is possible to later open a new read ** transaction that sees that historical version of the database rather than ** the most recent version. */ typedef struct sqlite3_snapshot { unsigned char hidden[48]; } sqlite3_snapshot; /* ** CAPI3REF: Record A Database Snapshot ** CONSTRUCTOR: sqlite3_snapshot ** ** ^The [sqlite3_snapshot_get(D,S,P)] interface attempts to make a ** new [sqlite3_snapshot] object that records the current state of ** schema S in database connection D. ^On success, the ** [sqlite3_snapshot_get(D,S,P)] interface writes a pointer to the newly ** created [sqlite3_snapshot] object into *P and returns SQLITE_OK. ** If there is not already a read-transaction open on schema S when ** this function is called, one is opened automatically. ** ** The following must be true for this function to succeed. If any of ** the following statements are false when sqlite3_snapshot_get() is ** called, SQLITE_ERROR is returned. The final value of *P is undefined ** in this case. ** **
    **
  • The database handle must not be in [autocommit mode]. ** **
  • Schema S of [database connection] D must be a [WAL mode] database. ** **
  • There must not be a write transaction open on schema S of database ** connection D. ** **
  • One or more transactions must have been written to the current wal ** file since it was created on disk (by any connection). This means ** that a snapshot cannot be taken on a wal mode database with no wal ** file immediately after it is first opened. At least one transaction ** must be written to it first. **
** ** This function may also return SQLITE_NOMEM. If it is called with the ** database handle in autocommit mode but fails for some other reason, ** whether or not a read transaction is opened on schema S is undefined. ** ** The [sqlite3_snapshot] object returned from a successful call to ** [sqlite3_snapshot_get()] must be freed using [sqlite3_snapshot_free()] ** to avoid a memory leak. ** ** The [sqlite3_snapshot_get()] interface is only available when the ** [SQLITE_ENABLE_SNAPSHOT] compile-time option is used. */ SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_get( sqlite3 *db, const char *zSchema, sqlite3_snapshot **ppSnapshot ); /* ** CAPI3REF: Start a read transaction on an historical snapshot ** METHOD: sqlite3_snapshot ** ** ^The [sqlite3_snapshot_open(D,S,P)] interface either starts a new read ** transaction or upgrades an existing one for schema S of ** [database connection] D such that the read transaction refers to ** historical [snapshot] P, rather than the most recent change to the ** database. ^The [sqlite3_snapshot_open()] interface returns SQLITE_OK ** on success or an appropriate [error code] if it fails. ** ** ^In order to succeed, the database connection must not be in ** [autocommit mode] when [sqlite3_snapshot_open(D,S,P)] is called. If there ** is already a read transaction open on schema S, then the database handle ** must have no active statements (SELECT statements that have been passed ** to sqlite3_step() but not sqlite3_reset() or sqlite3_finalize()). ** SQLITE_ERROR is returned if either of these conditions is violated, or ** if schema S does not exist, or if the snapshot object is invalid. ** ** ^A call to sqlite3_snapshot_open() will fail to open if the specified ** snapshot has been overwritten by a [checkpoint]. In this case ** SQLITE_ERROR_SNAPSHOT is returned. ** ** If there is already a read transaction open when this function is ** invoked, then the same read transaction remains open (on the same ** database snapshot) if SQLITE_ERROR, SQLITE_BUSY or SQLITE_ERROR_SNAPSHOT ** is returned. If another error code - for example SQLITE_PROTOCOL or an ** SQLITE_IOERR error code - is returned, then the final state of the ** read transaction is undefined. If SQLITE_OK is returned, then the ** read transaction is now open on database snapshot P. ** ** ^(A call to [sqlite3_snapshot_open(D,S,P)] will fail if the ** database connection D does not know that the database file for ** schema S is in [WAL mode]. A database connection might not know ** that the database file is in [WAL mode] if there has been no prior ** I/O on that database connection, or if the database entered [WAL mode] ** after the most recent I/O on the database connection.)^ ** (Hint: Run "[PRAGMA application_id]" against a newly opened ** database connection in order to make it ready to use snapshots.) ** ** The [sqlite3_snapshot_open()] interface is only available when the ** [SQLITE_ENABLE_SNAPSHOT] compile-time option is used. */ SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_open( sqlite3 *db, const char *zSchema, sqlite3_snapshot *pSnapshot ); /* ** CAPI3REF: Destroy a snapshot ** DESTRUCTOR: sqlite3_snapshot ** ** ^The [sqlite3_snapshot_free(P)] interface destroys [sqlite3_snapshot] P. ** The application must eventually free every [sqlite3_snapshot] object ** using this routine to avoid a memory leak. ** ** The [sqlite3_snapshot_free()] interface is only available when the ** [SQLITE_ENABLE_SNAPSHOT] compile-time option is used. */ SQLITE_API SQLITE_EXPERIMENTAL void sqlite3_snapshot_free(sqlite3_snapshot*); /* ** CAPI3REF: Compare the ages of two snapshot handles. ** METHOD: sqlite3_snapshot ** ** The sqlite3_snapshot_cmp(P1, P2) interface is used to compare the ages ** of two valid snapshot handles. ** ** If the two snapshot handles are not associated with the same database ** file, the result of the comparison is undefined. ** ** Additionally, the result of the comparison is only valid if both of the ** snapshot handles were obtained by calling sqlite3_snapshot_get() since the ** last time the wal file was deleted. The wal file is deleted when the ** database is changed back to rollback mode or when the number of database ** clients drops to zero. If either snapshot handle was obtained before the ** wal file was last deleted, the value returned by this function ** is undefined. ** ** Otherwise, this API returns a negative value if P1 refers to an older ** snapshot than P2, zero if the two handles refer to the same database ** snapshot, and a positive value if P1 is a newer snapshot than P2. ** ** This interface is only available if SQLite is compiled with the ** [SQLITE_ENABLE_SNAPSHOT] option. */ SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_cmp( sqlite3_snapshot *p1, sqlite3_snapshot *p2 ); /* ** CAPI3REF: Recover snapshots from a wal file ** METHOD: sqlite3_snapshot ** ** If a [WAL file] remains on disk after all database connections close ** (either through the use of the [SQLITE_FCNTL_PERSIST_WAL] [file control] ** or because the last process to have the database opened exited without ** calling [sqlite3_close()]) and a new connection is subsequently opened ** on that database and [WAL file], the [sqlite3_snapshot_open()] interface ** will only be able to open the last transaction added to the WAL file ** even though the WAL file contains other valid transactions. ** ** This function attempts to scan the WAL file associated with database zDb ** of database handle db and make all valid snapshots available to ** sqlite3_snapshot_open(). It is an error if there is already a read ** transaction open on the database, or if the database is not a WAL mode ** database. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. ** ** This interface is only available if SQLite is compiled with the ** [SQLITE_ENABLE_SNAPSHOT] option. */ SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_recover(sqlite3 *db, const char *zDb); /* ** CAPI3REF: Serialize a database ** ** The sqlite3_serialize(D,S,P,F) interface returns a pointer to memory ** that is a serialization of the S database on [database connection] D. ** If P is not a NULL pointer, then the size of the database in bytes ** is written into *P. ** ** For an ordinary on-disk database file, the serialization is just a ** copy of the disk file. For an in-memory database or a "TEMP" database, ** the serialization is the same sequence of bytes which would be written ** to disk if that database where backed up to disk. ** ** The usual case is that sqlite3_serialize() copies the serialization of ** the database into memory obtained from [sqlite3_malloc64()] and returns ** a pointer to that memory. The caller is responsible for freeing the ** returned value to avoid a memory leak. However, if the F argument ** contains the SQLITE_SERIALIZE_NOCOPY bit, then no memory allocations ** are made, and the sqlite3_serialize() function will return a pointer ** to the contiguous memory representation of the database that SQLite ** is currently using for that database, or NULL if the no such contiguous ** memory representation of the database exists. A contiguous memory ** representation of the database will usually only exist if there has ** been a prior call to [sqlite3_deserialize(D,S,...)] with the same ** values of D and S. ** The size of the database is written into *P even if the ** SQLITE_SERIALIZE_NOCOPY bit is set but no contiguous copy ** of the database exists. ** ** A call to sqlite3_serialize(D,S,P,F) might return NULL even if the ** SQLITE_SERIALIZE_NOCOPY bit is omitted from argument F if a memory ** allocation error occurs. ** ** This interface is only available if SQLite is compiled with the ** [SQLITE_ENABLE_DESERIALIZE] option. */ SQLITE_API unsigned char *sqlite3_serialize( sqlite3 *db, /* The database connection */ const char *zSchema, /* Which DB to serialize. ex: "main", "temp", ... */ sqlite3_int64 *piSize, /* Write size of the DB here, if not NULL */ unsigned int mFlags /* Zero or more SQLITE_SERIALIZE_* flags */ ); /* ** CAPI3REF: Flags for sqlite3_serialize ** ** Zero or more of the following constants can be OR-ed together for ** the F argument to [sqlite3_serialize(D,S,P,F)]. ** ** SQLITE_SERIALIZE_NOCOPY means that [sqlite3_serialize()] will return ** a pointer to contiguous in-memory database that it is currently using, ** without making a copy of the database. If SQLite is not currently using ** a contiguous in-memory database, then this option causes ** [sqlite3_serialize()] to return a NULL pointer. SQLite will only be ** using a contiguous in-memory database if it has been initialized by a ** prior call to [sqlite3_deserialize()]. */ #define SQLITE_SERIALIZE_NOCOPY 0x001 /* Do no memory allocations */ /* ** CAPI3REF: Deserialize a database ** ** The sqlite3_deserialize(D,S,P,N,M,F) interface causes the ** [database connection] D to disconnect from database S and then ** reopen S as an in-memory database based on the serialization contained ** in P. The serialized database P is N bytes in size. M is the size of ** the buffer P, which might be larger than N. If M is larger than N, and ** the SQLITE_DESERIALIZE_READONLY bit is not set in F, then SQLite is ** permitted to add content to the in-memory database as long as the total ** size does not exceed M bytes. ** ** If the SQLITE_DESERIALIZE_FREEONCLOSE bit is set in F, then SQLite will ** invoke sqlite3_free() on the serialization buffer when the database ** connection closes. If the SQLITE_DESERIALIZE_RESIZEABLE bit is set, then ** SQLite will try to increase the buffer size using sqlite3_realloc64() ** if writes on the database cause it to grow larger than M bytes. ** ** The sqlite3_deserialize() interface will fail with SQLITE_BUSY if the ** database is currently in a read transaction or is involved in a backup ** operation. ** ** If sqlite3_deserialize(D,S,P,N,M,F) fails for any reason and if the ** SQLITE_DESERIALIZE_FREEONCLOSE bit is set in argument F, then ** [sqlite3_free()] is invoked on argument P prior to returning. ** ** This interface is only available if SQLite is compiled with the ** [SQLITE_ENABLE_DESERIALIZE] option. */ SQLITE_API int sqlite3_deserialize( sqlite3 *db, /* The database connection */ const char *zSchema, /* Which DB to reopen with the deserialization */ unsigned char *pData, /* The serialized database content */ sqlite3_int64 szDb, /* Number bytes in the deserialization */ sqlite3_int64 szBuf, /* Total size of buffer pData[] */ unsigned mFlags /* Zero or more SQLITE_DESERIALIZE_* flags */ ); /* ** CAPI3REF: Flags for sqlite3_deserialize() ** ** The following are allowed values for 6th argument (the F argument) to ** the [sqlite3_deserialize(D,S,P,N,M,F)] interface. ** ** The SQLITE_DESERIALIZE_FREEONCLOSE means that the database serialization ** in the P argument is held in memory obtained from [sqlite3_malloc64()] ** and that SQLite should take ownership of this memory and automatically ** free it when it has finished using it. Without this flag, the caller ** is responsible for freeing any dynamically allocated memory. ** ** The SQLITE_DESERIALIZE_RESIZEABLE flag means that SQLite is allowed to ** grow the size of the database using calls to [sqlite3_realloc64()]. This ** flag should only be used if SQLITE_DESERIALIZE_FREEONCLOSE is also used. ** Without this flag, the deserialized database cannot increase in size beyond ** the number of bytes specified by the M parameter. ** ** The SQLITE_DESERIALIZE_READONLY flag means that the deserialized database ** should be treated as read-only. */ #define SQLITE_DESERIALIZE_FREEONCLOSE 1 /* Call sqlite3_free() on close */ #define SQLITE_DESERIALIZE_RESIZEABLE 2 /* Resize using sqlite3_realloc64() */ #define SQLITE_DESERIALIZE_READONLY 4 /* Database is read-only */ /* ** Undo the hack that converts floating point types to integer for ** builds on processors without floating point support. */ #ifdef SQLITE_OMIT_FLOATING_POINT # undef double #endif #if 0 } /* End of the 'extern "C"' block */ #endif #endif /* SQLITE3_H */ /******** Begin file sqlite3rtree.h *********/ /* ** 2010 August 30 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* */ #ifndef _SQLITE3RTREE_H_ #define _SQLITE3RTREE_H_ #if 0 extern "C" { #endif typedef struct sqlite3_rtree_geometry sqlite3_rtree_geometry; typedef struct sqlite3_rtree_query_info sqlite3_rtree_query_info; /* The double-precision datatype used by RTree depends on the ** SQLITE_RTREE_INT_ONLY compile-time option. */ #ifdef SQLITE_RTREE_INT_ONLY typedef sqlite3_int64 sqlite3_rtree_dbl; #else typedef double sqlite3_rtree_dbl; #endif /* ** Register a geometry callback named zGeom that can be used as part of an ** R-Tree geometry query as follows: ** ** SELECT ... FROM WHERE MATCH $zGeom(... params ...) */ SQLITE_API int sqlite3_rtree_geometry_callback( sqlite3 *db, const char *zGeom, int (*xGeom)(sqlite3_rtree_geometry*, int, sqlite3_rtree_dbl*,int*), void *pContext ); /* ** A pointer to a structure of the following type is passed as the first ** argument to callbacks registered using rtree_geometry_callback(). */ struct sqlite3_rtree_geometry { void *pContext; /* Copy of pContext passed to s_r_g_c() */ int nParam; /* Size of array aParam[] */ sqlite3_rtree_dbl *aParam; /* Parameters passed to SQL geom function */ void *pUser; /* Callback implementation user data */ void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */ }; /* ** Register a 2nd-generation geometry callback named zScore that can be ** used as part of an R-Tree geometry query as follows: ** ** SELECT ... FROM WHERE MATCH $zQueryFunc(... params ...) */ SQLITE_API int sqlite3_rtree_query_callback( sqlite3 *db, const char *zQueryFunc, int (*xQueryFunc)(sqlite3_rtree_query_info*), void *pContext, void (*xDestructor)(void*) ); /* ** A pointer to a structure of the following type is passed as the ** argument to scored geometry callback registered using ** sqlite3_rtree_query_callback(). ** ** Note that the first 5 fields of this structure are identical to ** sqlite3_rtree_geometry. This structure is a subclass of ** sqlite3_rtree_geometry. */ struct sqlite3_rtree_query_info { void *pContext; /* pContext from when function registered */ int nParam; /* Number of function parameters */ sqlite3_rtree_dbl *aParam; /* value of function parameters */ void *pUser; /* callback can use this, if desired */ void (*xDelUser)(void*); /* function to free pUser */ sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */ unsigned int *anQueue; /* Number of pending entries in the queue */ int nCoord; /* Number of coordinates */ int iLevel; /* Level of current node or entry */ int mxLevel; /* The largest iLevel value in the tree */ sqlite3_int64 iRowid; /* Rowid for current entry */ sqlite3_rtree_dbl rParentScore; /* Score of parent node */ int eParentWithin; /* Visibility of parent node */ int eWithin; /* OUT: Visibility */ sqlite3_rtree_dbl rScore; /* OUT: Write the score here */ /* The following fields are only available in 3.8.11 and later */ sqlite3_value **apSqlParam; /* Original SQL values of parameters */ }; /* ** Allowed values for sqlite3_rtree_query.eWithin and .eParentWithin. */ #define NOT_WITHIN 0 /* Object completely outside of query region */ #define PARTLY_WITHIN 1 /* Object partially overlaps query region */ #define FULLY_WITHIN 2 /* Object fully contained within query region */ #if 0 } /* end of the 'extern "C"' block */ #endif #endif /* ifndef _SQLITE3RTREE_H_ */ /******** End of sqlite3rtree.h *********/ /******** Begin file sqlite3session.h *********/ #if !defined(__SQLITESESSION_H_) && defined(SQLITE_ENABLE_SESSION) #define __SQLITESESSION_H_ 1 /* ** Make sure we can call this stuff from C++. */ #if 0 extern "C" { #endif /* ** CAPI3REF: Session Object Handle ** ** An instance of this object is a [session] that can be used to ** record changes to a database. */ typedef struct sqlite3_session sqlite3_session; /* ** CAPI3REF: Changeset Iterator Handle ** ** An instance of this object acts as a cursor for iterating ** over the elements of a [changeset] or [patchset]. */ typedef struct sqlite3_changeset_iter sqlite3_changeset_iter; /* ** CAPI3REF: Create A New Session Object ** CONSTRUCTOR: sqlite3_session ** ** Create a new session object attached to database handle db. If successful, ** a pointer to the new object is written to *ppSession and SQLITE_OK is ** returned. If an error occurs, *ppSession is set to NULL and an SQLite ** error code (e.g. SQLITE_NOMEM) is returned. ** ** It is possible to create multiple session objects attached to a single ** database handle. ** ** Session objects created using this function should be deleted using the ** [sqlite3session_delete()] function before the database handle that they ** are attached to is itself closed. If the database handle is closed before ** the session object is deleted, then the results of calling any session ** module function, including [sqlite3session_delete()] on the session object ** are undefined. ** ** Because the session module uses the [sqlite3_preupdate_hook()] API, it ** is not possible for an application to register a pre-update hook on a ** database handle that has one or more session objects attached. Nor is ** it possible to create a session object attached to a database handle for ** which a pre-update hook is already defined. The results of attempting ** either of these things are undefined. ** ** The session object will be used to create changesets for tables in ** database zDb, where zDb is either "main", or "temp", or the name of an ** attached database. It is not an error if database zDb is not attached ** to the database when the session object is created. */ SQLITE_API int sqlite3session_create( sqlite3 *db, /* Database handle */ const char *zDb, /* Name of db (e.g. "main") */ sqlite3_session **ppSession /* OUT: New session object */ ); /* ** CAPI3REF: Delete A Session Object ** DESTRUCTOR: sqlite3_session ** ** Delete a session object previously allocated using ** [sqlite3session_create()]. Once a session object has been deleted, the ** results of attempting to use pSession with any other session module ** function are undefined. ** ** Session objects must be deleted before the database handle to which they ** are attached is closed. Refer to the documentation for ** [sqlite3session_create()] for details. */ SQLITE_API void sqlite3session_delete(sqlite3_session *pSession); /* ** CAPI3REF: Enable Or Disable A Session Object ** METHOD: sqlite3_session ** ** Enable or disable the recording of changes by a session object. When ** enabled, a session object records changes made to the database. When ** disabled - it does not. A newly created session object is enabled. ** Refer to the documentation for [sqlite3session_changeset()] for further ** details regarding how enabling and disabling a session object affects ** the eventual changesets. ** ** Passing zero to this function disables the session. Passing a value ** greater than zero enables it. Passing a value less than zero is a ** no-op, and may be used to query the current state of the session. ** ** The return value indicates the final state of the session object: 0 if ** the session is disabled, or 1 if it is enabled. */ SQLITE_API int sqlite3session_enable(sqlite3_session *pSession, int bEnable); /* ** CAPI3REF: Set Or Clear the Indirect Change Flag ** METHOD: sqlite3_session ** ** Each change recorded by a session object is marked as either direct or ** indirect. A change is marked as indirect if either: ** **
    **
  • The session object "indirect" flag is set when the change is ** made, or **
  • The change is made by an SQL trigger or foreign key action ** instead of directly as a result of a users SQL statement. **
** ** If a single row is affected by more than one operation within a session, ** then the change is considered indirect if all operations meet the criteria ** for an indirect change above, or direct otherwise. ** ** This function is used to set, clear or query the session object indirect ** flag. If the second argument passed to this function is zero, then the ** indirect flag is cleared. If it is greater than zero, the indirect flag ** is set. Passing a value less than zero does not modify the current value ** of the indirect flag, and may be used to query the current state of the ** indirect flag for the specified session object. ** ** The return value indicates the final state of the indirect flag: 0 if ** it is clear, or 1 if it is set. */ SQLITE_API int sqlite3session_indirect(sqlite3_session *pSession, int bIndirect); /* ** CAPI3REF: Attach A Table To A Session Object ** METHOD: sqlite3_session ** ** If argument zTab is not NULL, then it is the name of a table to attach ** to the session object passed as the first argument. All subsequent changes ** made to the table while the session object is enabled will be recorded. See ** documentation for [sqlite3session_changeset()] for further details. ** ** Or, if argument zTab is NULL, then changes are recorded for all tables ** in the database. If additional tables are added to the database (by ** executing "CREATE TABLE" statements) after this call is made, changes for ** the new tables are also recorded. ** ** Changes can only be recorded for tables that have a PRIMARY KEY explicitly ** defined as part of their CREATE TABLE statement. It does not matter if the ** PRIMARY KEY is an "INTEGER PRIMARY KEY" (rowid alias) or not. The PRIMARY ** KEY may consist of a single column, or may be a composite key. ** ** It is not an error if the named table does not exist in the database. Nor ** is it an error if the named table does not have a PRIMARY KEY. However, ** no changes will be recorded in either of these scenarios. ** ** Changes are not recorded for individual rows that have NULL values stored ** in one or more of their PRIMARY KEY columns. ** ** SQLITE_OK is returned if the call completes without error. Or, if an error ** occurs, an SQLite error code (e.g. SQLITE_NOMEM) is returned. ** **

Special sqlite_stat1 Handling

** ** As of SQLite version 3.22.0, the "sqlite_stat1" table is an exception to ** some of the rules above. In SQLite, the schema of sqlite_stat1 is: **
**        CREATE TABLE sqlite_stat1(tbl,idx,stat)
**  
** ** Even though sqlite_stat1 does not have a PRIMARY KEY, changes are ** recorded for it as if the PRIMARY KEY is (tbl,idx). Additionally, changes ** are recorded for rows for which (idx IS NULL) is true. However, for such ** rows a zero-length blob (SQL value X'') is stored in the changeset or ** patchset instead of a NULL value. This allows such changesets to be ** manipulated by legacy implementations of sqlite3changeset_invert(), ** concat() and similar. ** ** The sqlite3changeset_apply() function automatically converts the ** zero-length blob back to a NULL value when updating the sqlite_stat1 ** table. However, if the application calls sqlite3changeset_new(), ** sqlite3changeset_old() or sqlite3changeset_conflict on a changeset ** iterator directly (including on a changeset iterator passed to a ** conflict-handler callback) then the X'' value is returned. The application ** must translate X'' to NULL itself if required. ** ** Legacy (older than 3.22.0) versions of the sessions module cannot capture ** changes made to the sqlite_stat1 table. Legacy versions of the ** sqlite3changeset_apply() function silently ignore any modifications to the ** sqlite_stat1 table that are part of a changeset or patchset. */ SQLITE_API int sqlite3session_attach( sqlite3_session *pSession, /* Session object */ const char *zTab /* Table name */ ); /* ** CAPI3REF: Set a table filter on a Session Object. ** METHOD: sqlite3_session ** ** The second argument (xFilter) is the "filter callback". For changes to rows ** in tables that are not attached to the Session object, the filter is called ** to determine whether changes to the table's rows should be tracked or not. ** If xFilter returns 0, changes are not tracked. Note that once a table is ** attached, xFilter will not be called again. */ SQLITE_API void sqlite3session_table_filter( sqlite3_session *pSession, /* Session object */ int(*xFilter)( void *pCtx, /* Copy of third arg to _filter_table() */ const char *zTab /* Table name */ ), void *pCtx /* First argument passed to xFilter */ ); /* ** CAPI3REF: Generate A Changeset From A Session Object ** METHOD: sqlite3_session ** ** Obtain a changeset containing changes to the tables attached to the ** session object passed as the first argument. If successful, ** set *ppChangeset to point to a buffer containing the changeset ** and *pnChangeset to the size of the changeset in bytes before returning ** SQLITE_OK. If an error occurs, set both *ppChangeset and *pnChangeset to ** zero and return an SQLite error code. ** ** A changeset consists of zero or more INSERT, UPDATE and/or DELETE changes, ** each representing a change to a single row of an attached table. An INSERT ** change contains the values of each field of a new database row. A DELETE ** contains the original values of each field of a deleted database row. An ** UPDATE change contains the original values of each field of an updated ** database row along with the updated values for each updated non-primary-key ** column. It is not possible for an UPDATE change to represent a change that ** modifies the values of primary key columns. If such a change is made, it ** is represented in a changeset as a DELETE followed by an INSERT. ** ** Changes are not recorded for rows that have NULL values stored in one or ** more of their PRIMARY KEY columns. If such a row is inserted or deleted, ** no corresponding change is present in the changesets returned by this ** function. If an existing row with one or more NULL values stored in ** PRIMARY KEY columns is updated so that all PRIMARY KEY columns are non-NULL, ** only an INSERT is appears in the changeset. Similarly, if an existing row ** with non-NULL PRIMARY KEY values is updated so that one or more of its ** PRIMARY KEY columns are set to NULL, the resulting changeset contains a ** DELETE change only. ** ** The contents of a changeset may be traversed using an iterator created ** using the [sqlite3changeset_start()] API. A changeset may be applied to ** a database with a compatible schema using the [sqlite3changeset_apply()] ** API. ** ** Within a changeset generated by this function, all changes related to a ** single table are grouped together. In other words, when iterating through ** a changeset or when applying a changeset to a database, all changes related ** to a single table are processed before moving on to the next table. Tables ** are sorted in the same order in which they were attached (or auto-attached) ** to the sqlite3_session object. The order in which the changes related to ** a single table are stored is undefined. ** ** Following a successful call to this function, it is the responsibility of ** the caller to eventually free the buffer that *ppChangeset points to using ** [sqlite3_free()]. ** **

Changeset Generation

** ** Once a table has been attached to a session object, the session object ** records the primary key values of all new rows inserted into the table. ** It also records the original primary key and other column values of any ** deleted or updated rows. For each unique primary key value, data is only ** recorded once - the first time a row with said primary key is inserted, ** updated or deleted in the lifetime of the session. ** ** There is one exception to the previous paragraph: when a row is inserted, ** updated or deleted, if one or more of its primary key columns contain a ** NULL value, no record of the change is made. ** ** The session object therefore accumulates two types of records - those ** that consist of primary key values only (created when the user inserts ** a new record) and those that consist of the primary key values and the ** original values of other table columns (created when the users deletes ** or updates a record). ** ** When this function is called, the requested changeset is created using ** both the accumulated records and the current contents of the database ** file. Specifically: ** **
    **
  • For each record generated by an insert, the database is queried ** for a row with a matching primary key. If one is found, an INSERT ** change is added to the changeset. If no such row is found, no change ** is added to the changeset. ** **
  • For each record generated by an update or delete, the database is ** queried for a row with a matching primary key. If such a row is ** found and one or more of the non-primary key fields have been ** modified from their original values, an UPDATE change is added to ** the changeset. Or, if no such row is found in the table, a DELETE ** change is added to the changeset. If there is a row with a matching ** primary key in the database, but all fields contain their original ** values, no change is added to the changeset. **
** ** This means, amongst other things, that if a row is inserted and then later ** deleted while a session object is active, neither the insert nor the delete ** will be present in the changeset. Or if a row is deleted and then later a ** row with the same primary key values inserted while a session object is ** active, the resulting changeset will contain an UPDATE change instead of ** a DELETE and an INSERT. ** ** When a session object is disabled (see the [sqlite3session_enable()] API), ** it does not accumulate records when rows are inserted, updated or deleted. ** This may appear to have some counter-intuitive effects if a single row ** is written to more than once during a session. For example, if a row ** is inserted while a session object is enabled, then later deleted while ** the same session object is disabled, no INSERT record will appear in the ** changeset, even though the delete took place while the session was disabled. ** Or, if one field of a row is updated while a session is disabled, and ** another field of the same row is updated while the session is enabled, the ** resulting changeset will contain an UPDATE change that updates both fields. */ SQLITE_API int sqlite3session_changeset( sqlite3_session *pSession, /* Session object */ int *pnChangeset, /* OUT: Size of buffer at *ppChangeset */ void **ppChangeset /* OUT: Buffer containing changeset */ ); /* ** CAPI3REF: Load The Difference Between Tables Into A Session ** METHOD: sqlite3_session ** ** If it is not already attached to the session object passed as the first ** argument, this function attaches table zTbl in the same manner as the ** [sqlite3session_attach()] function. If zTbl does not exist, or if it ** does not have a primary key, this function is a no-op (but does not return ** an error). ** ** Argument zFromDb must be the name of a database ("main", "temp" etc.) ** attached to the same database handle as the session object that contains ** a table compatible with the table attached to the session by this function. ** A table is considered compatible if it: ** **
    **
  • Has the same name, **
  • Has the same set of columns declared in the same order, and **
  • Has the same PRIMARY KEY definition. **
** ** If the tables are not compatible, SQLITE_SCHEMA is returned. If the tables ** are compatible but do not have any PRIMARY KEY columns, it is not an error ** but no changes are added to the session object. As with other session ** APIs, tables without PRIMARY KEYs are simply ignored. ** ** This function adds a set of changes to the session object that could be ** used to update the table in database zFrom (call this the "from-table") ** so that its content is the same as the table attached to the session ** object (call this the "to-table"). Specifically: ** **
    **
  • For each row (primary key) that exists in the to-table but not in ** the from-table, an INSERT record is added to the session object. ** **
  • For each row (primary key) that exists in the to-table but not in ** the from-table, a DELETE record is added to the session object. ** **
  • For each row (primary key) that exists in both tables, but features ** different non-PK values in each, an UPDATE record is added to the ** session. **
** ** To clarify, if this function is called and then a changeset constructed ** using [sqlite3session_changeset()], then after applying that changeset to ** database zFrom the contents of the two compatible tables would be ** identical. ** ** It an error if database zFrom does not exist or does not contain the ** required compatible table. ** ** If the operation is successful, SQLITE_OK is returned. Otherwise, an SQLite ** error code. In this case, if argument pzErrMsg is not NULL, *pzErrMsg ** may be set to point to a buffer containing an English language error ** message. It is the responsibility of the caller to free this buffer using ** sqlite3_free(). */ SQLITE_API int sqlite3session_diff( sqlite3_session *pSession, const char *zFromDb, const char *zTbl, char **pzErrMsg ); /* ** CAPI3REF: Generate A Patchset From A Session Object ** METHOD: sqlite3_session ** ** The differences between a patchset and a changeset are that: ** **
    **
  • DELETE records consist of the primary key fields only. The ** original values of other fields are omitted. **
  • The original values of any modified fields are omitted from ** UPDATE records. **
** ** A patchset blob may be used with up to date versions of all ** sqlite3changeset_xxx API functions except for sqlite3changeset_invert(), ** which returns SQLITE_CORRUPT if it is passed a patchset. Similarly, ** attempting to use a patchset blob with old versions of the ** sqlite3changeset_xxx APIs also provokes an SQLITE_CORRUPT error. ** ** Because the non-primary key "old.*" fields are omitted, no ** SQLITE_CHANGESET_DATA conflicts can be detected or reported if a patchset ** is passed to the sqlite3changeset_apply() API. Other conflict types work ** in the same way as for changesets. ** ** Changes within a patchset are ordered in the same way as for changesets ** generated by the sqlite3session_changeset() function (i.e. all changes for ** a single table are grouped together, tables appear in the order in which ** they were attached to the session object). */ SQLITE_API int sqlite3session_patchset( sqlite3_session *pSession, /* Session object */ int *pnPatchset, /* OUT: Size of buffer at *ppPatchset */ void **ppPatchset /* OUT: Buffer containing patchset */ ); /* ** CAPI3REF: Test if a changeset has recorded any changes. ** ** Return non-zero if no changes to attached tables have been recorded by ** the session object passed as the first argument. Otherwise, if one or ** more changes have been recorded, return zero. ** ** Even if this function returns zero, it is possible that calling ** [sqlite3session_changeset()] on the session handle may still return a ** changeset that contains no changes. This can happen when a row in ** an attached table is modified and then later on the original values ** are restored. However, if this function returns non-zero, then it is ** guaranteed that a call to sqlite3session_changeset() will return a ** changeset containing zero changes. */ SQLITE_API int sqlite3session_isempty(sqlite3_session *pSession); /* ** CAPI3REF: Create An Iterator To Traverse A Changeset ** CONSTRUCTOR: sqlite3_changeset_iter ** ** Create an iterator used to iterate through the contents of a changeset. ** If successful, *pp is set to point to the iterator handle and SQLITE_OK ** is returned. Otherwise, if an error occurs, *pp is set to zero and an ** SQLite error code is returned. ** ** The following functions can be used to advance and query a changeset ** iterator created by this function: ** **
    **
  • [sqlite3changeset_next()] **
  • [sqlite3changeset_op()] **
  • [sqlite3changeset_new()] **
  • [sqlite3changeset_old()] **
** ** It is the responsibility of the caller to eventually destroy the iterator ** by passing it to [sqlite3changeset_finalize()]. The buffer containing the ** changeset (pChangeset) must remain valid until after the iterator is ** destroyed. ** ** Assuming the changeset blob was created by one of the ** [sqlite3session_changeset()], [sqlite3changeset_concat()] or ** [sqlite3changeset_invert()] functions, all changes within the changeset ** that apply to a single table are grouped together. This means that when ** an application iterates through a changeset using an iterator created by ** this function, all changes that relate to a single table are visited ** consecutively. There is no chance that the iterator will visit a change ** the applies to table X, then one for table Y, and then later on visit ** another change for table X. ** ** The behavior of sqlite3changeset_start_v2() and its streaming equivalent ** may be modified by passing a combination of ** [SQLITE_CHANGESETSTART_INVERT | supported flags] as the 4th parameter. ** ** Note that the sqlite3changeset_start_v2() API is still experimental ** and therefore subject to change. */ SQLITE_API int sqlite3changeset_start( sqlite3_changeset_iter **pp, /* OUT: New changeset iterator handle */ int nChangeset, /* Size of changeset blob in bytes */ void *pChangeset /* Pointer to blob containing changeset */ ); SQLITE_API int sqlite3changeset_start_v2( sqlite3_changeset_iter **pp, /* OUT: New changeset iterator handle */ int nChangeset, /* Size of changeset blob in bytes */ void *pChangeset, /* Pointer to blob containing changeset */ int flags /* SESSION_CHANGESETSTART_* flags */ ); /* ** CAPI3REF: Flags for sqlite3changeset_start_v2 ** ** The following flags may passed via the 4th parameter to ** [sqlite3changeset_start_v2] and [sqlite3changeset_start_v2_strm]: ** **
SQLITE_CHANGESETAPPLY_INVERT
** Invert the changeset while iterating through it. This is equivalent to ** inverting a changeset using sqlite3changeset_invert() before applying it. ** It is an error to specify this flag with a patchset. */ #define SQLITE_CHANGESETSTART_INVERT 0x0002 /* ** CAPI3REF: Advance A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** This function may only be used with iterators created by the function ** [sqlite3changeset_start()]. If it is called on an iterator passed to ** a conflict-handler callback by [sqlite3changeset_apply()], SQLITE_MISUSE ** is returned and the call has no effect. ** ** Immediately after an iterator is created by sqlite3changeset_start(), it ** does not point to any change in the changeset. Assuming the changeset ** is not empty, the first call to this function advances the iterator to ** point to the first change in the changeset. Each subsequent call advances ** the iterator to point to the next change in the changeset (if any). If ** no error occurs and the iterator points to a valid change after a call ** to sqlite3changeset_next() has advanced it, SQLITE_ROW is returned. ** Otherwise, if all changes in the changeset have already been visited, ** SQLITE_DONE is returned. ** ** If an error occurs, an SQLite error code is returned. Possible error ** codes include SQLITE_CORRUPT (if the changeset buffer is corrupt) or ** SQLITE_NOMEM. */ SQLITE_API int sqlite3changeset_next(sqlite3_changeset_iter *pIter); /* ** CAPI3REF: Obtain The Current Operation From A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** The pIter argument passed to this function may either be an iterator ** passed to a conflict-handler by [sqlite3changeset_apply()], or an iterator ** created by [sqlite3changeset_start()]. In the latter case, the most recent ** call to [sqlite3changeset_next()] must have returned [SQLITE_ROW]. If this ** is not the case, this function returns [SQLITE_MISUSE]. ** ** If argument pzTab is not NULL, then *pzTab is set to point to a ** nul-terminated utf-8 encoded string containing the name of the table ** affected by the current change. The buffer remains valid until either ** sqlite3changeset_next() is called on the iterator or until the ** conflict-handler function returns. If pnCol is not NULL, then *pnCol is ** set to the number of columns in the table affected by the change. If ** pbIndirect is not NULL, then *pbIndirect is set to true (1) if the change ** is an indirect change, or false (0) otherwise. See the documentation for ** [sqlite3session_indirect()] for a description of direct and indirect ** changes. Finally, if pOp is not NULL, then *pOp is set to one of ** [SQLITE_INSERT], [SQLITE_DELETE] or [SQLITE_UPDATE], depending on the ** type of change that the iterator currently points to. ** ** If no error occurs, SQLITE_OK is returned. If an error does occur, an ** SQLite error code is returned. The values of the output variables may not ** be trusted in this case. */ SQLITE_API int sqlite3changeset_op( sqlite3_changeset_iter *pIter, /* Iterator object */ const char **pzTab, /* OUT: Pointer to table name */ int *pnCol, /* OUT: Number of columns in table */ int *pOp, /* OUT: SQLITE_INSERT, DELETE or UPDATE */ int *pbIndirect /* OUT: True for an 'indirect' change */ ); /* ** CAPI3REF: Obtain The Primary Key Definition Of A Table ** METHOD: sqlite3_changeset_iter ** ** For each modified table, a changeset includes the following: ** **
    **
  • The number of columns in the table, and **
  • Which of those columns make up the tables PRIMARY KEY. **
** ** This function is used to find which columns comprise the PRIMARY KEY of ** the table modified by the change that iterator pIter currently points to. ** If successful, *pabPK is set to point to an array of nCol entries, where ** nCol is the number of columns in the table. Elements of *pabPK are set to ** 0x01 if the corresponding column is part of the tables primary key, or ** 0x00 if it is not. ** ** If argument pnCol is not NULL, then *pnCol is set to the number of columns ** in the table. ** ** If this function is called when the iterator does not point to a valid ** entry, SQLITE_MISUSE is returned and the output variables zeroed. Otherwise, ** SQLITE_OK is returned and the output variables populated as described ** above. */ SQLITE_API int sqlite3changeset_pk( sqlite3_changeset_iter *pIter, /* Iterator object */ unsigned char **pabPK, /* OUT: Array of boolean - true for PK cols */ int *pnCol /* OUT: Number of entries in output array */ ); /* ** CAPI3REF: Obtain old.* Values From A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** The pIter argument passed to this function may either be an iterator ** passed to a conflict-handler by [sqlite3changeset_apply()], or an iterator ** created by [sqlite3changeset_start()]. In the latter case, the most recent ** call to [sqlite3changeset_next()] must have returned SQLITE_ROW. ** Furthermore, it may only be called if the type of change that the iterator ** currently points to is either [SQLITE_DELETE] or [SQLITE_UPDATE]. Otherwise, ** this function returns [SQLITE_MISUSE] and sets *ppValue to NULL. ** ** Argument iVal must be greater than or equal to 0, and less than the number ** of columns in the table affected by the current change. Otherwise, ** [SQLITE_RANGE] is returned and *ppValue is set to NULL. ** ** If successful, this function sets *ppValue to point to a protected ** sqlite3_value object containing the iVal'th value from the vector of ** original row values stored as part of the UPDATE or DELETE change and ** returns SQLITE_OK. The name of the function comes from the fact that this ** is similar to the "old.*" columns available to update or delete triggers. ** ** If some other error occurs (e.g. an OOM condition), an SQLite error code ** is returned and *ppValue is set to NULL. */ SQLITE_API int sqlite3changeset_old( sqlite3_changeset_iter *pIter, /* Changeset iterator */ int iVal, /* Column number */ sqlite3_value **ppValue /* OUT: Old value (or NULL pointer) */ ); /* ** CAPI3REF: Obtain new.* Values From A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** The pIter argument passed to this function may either be an iterator ** passed to a conflict-handler by [sqlite3changeset_apply()], or an iterator ** created by [sqlite3changeset_start()]. In the latter case, the most recent ** call to [sqlite3changeset_next()] must have returned SQLITE_ROW. ** Furthermore, it may only be called if the type of change that the iterator ** currently points to is either [SQLITE_UPDATE] or [SQLITE_INSERT]. Otherwise, ** this function returns [SQLITE_MISUSE] and sets *ppValue to NULL. ** ** Argument iVal must be greater than or equal to 0, and less than the number ** of columns in the table affected by the current change. Otherwise, ** [SQLITE_RANGE] is returned and *ppValue is set to NULL. ** ** If successful, this function sets *ppValue to point to a protected ** sqlite3_value object containing the iVal'th value from the vector of ** new row values stored as part of the UPDATE or INSERT change and ** returns SQLITE_OK. If the change is an UPDATE and does not include ** a new value for the requested column, *ppValue is set to NULL and ** SQLITE_OK returned. The name of the function comes from the fact that ** this is similar to the "new.*" columns available to update or delete ** triggers. ** ** If some other error occurs (e.g. an OOM condition), an SQLite error code ** is returned and *ppValue is set to NULL. */ SQLITE_API int sqlite3changeset_new( sqlite3_changeset_iter *pIter, /* Changeset iterator */ int iVal, /* Column number */ sqlite3_value **ppValue /* OUT: New value (or NULL pointer) */ ); /* ** CAPI3REF: Obtain Conflicting Row Values From A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** This function should only be used with iterator objects passed to a ** conflict-handler callback by [sqlite3changeset_apply()] with either ** [SQLITE_CHANGESET_DATA] or [SQLITE_CHANGESET_CONFLICT]. If this function ** is called on any other iterator, [SQLITE_MISUSE] is returned and *ppValue ** is set to NULL. ** ** Argument iVal must be greater than or equal to 0, and less than the number ** of columns in the table affected by the current change. Otherwise, ** [SQLITE_RANGE] is returned and *ppValue is set to NULL. ** ** If successful, this function sets *ppValue to point to a protected ** sqlite3_value object containing the iVal'th value from the ** "conflicting row" associated with the current conflict-handler callback ** and returns SQLITE_OK. ** ** If some other error occurs (e.g. an OOM condition), an SQLite error code ** is returned and *ppValue is set to NULL. */ SQLITE_API int sqlite3changeset_conflict( sqlite3_changeset_iter *pIter, /* Changeset iterator */ int iVal, /* Column number */ sqlite3_value **ppValue /* OUT: Value from conflicting row */ ); /* ** CAPI3REF: Determine The Number Of Foreign Key Constraint Violations ** METHOD: sqlite3_changeset_iter ** ** This function may only be called with an iterator passed to an ** SQLITE_CHANGESET_FOREIGN_KEY conflict handler callback. In this case ** it sets the output variable to the total number of known foreign key ** violations in the destination database and returns SQLITE_OK. ** ** In all other cases this function returns SQLITE_MISUSE. */ SQLITE_API int sqlite3changeset_fk_conflicts( sqlite3_changeset_iter *pIter, /* Changeset iterator */ int *pnOut /* OUT: Number of FK violations */ ); /* ** CAPI3REF: Finalize A Changeset Iterator ** METHOD: sqlite3_changeset_iter ** ** This function is used to finalize an iterator allocated with ** [sqlite3changeset_start()]. ** ** This function should only be called on iterators created using the ** [sqlite3changeset_start()] function. If an application calls this ** function with an iterator passed to a conflict-handler by ** [sqlite3changeset_apply()], [SQLITE_MISUSE] is immediately returned and the ** call has no effect. ** ** If an error was encountered within a call to an sqlite3changeset_xxx() ** function (for example an [SQLITE_CORRUPT] in [sqlite3changeset_next()] or an ** [SQLITE_NOMEM] in [sqlite3changeset_new()]) then an error code corresponding ** to that error is returned by this function. Otherwise, SQLITE_OK is ** returned. This is to allow the following pattern (pseudo-code): ** **
**   sqlite3changeset_start();
**   while( SQLITE_ROW==sqlite3changeset_next() ){
**     // Do something with change.
**   }
**   rc = sqlite3changeset_finalize();
**   if( rc!=SQLITE_OK ){
**     // An error has occurred
**   }
** 
*/ SQLITE_API int sqlite3changeset_finalize(sqlite3_changeset_iter *pIter); /* ** CAPI3REF: Invert A Changeset ** ** This function is used to "invert" a changeset object. Applying an inverted ** changeset to a database reverses the effects of applying the uninverted ** changeset. Specifically: ** **
    **
  • Each DELETE change is changed to an INSERT, and **
  • Each INSERT change is changed to a DELETE, and **
  • For each UPDATE change, the old.* and new.* values are exchanged. **
** ** This function does not change the order in which changes appear within ** the changeset. It merely reverses the sense of each individual change. ** ** If successful, a pointer to a buffer containing the inverted changeset ** is stored in *ppOut, the size of the same buffer is stored in *pnOut, and ** SQLITE_OK is returned. If an error occurs, both *pnOut and *ppOut are ** zeroed and an SQLite error code returned. ** ** It is the responsibility of the caller to eventually call sqlite3_free() ** on the *ppOut pointer to free the buffer allocation following a successful ** call to this function. ** ** WARNING/TODO: This function currently assumes that the input is a valid ** changeset. If it is not, the results are undefined. */ SQLITE_API int sqlite3changeset_invert( int nIn, const void *pIn, /* Input changeset */ int *pnOut, void **ppOut /* OUT: Inverse of input */ ); /* ** CAPI3REF: Concatenate Two Changeset Objects ** ** This function is used to concatenate two changesets, A and B, into a ** single changeset. The result is a changeset equivalent to applying ** changeset A followed by changeset B. ** ** This function combines the two input changesets using an ** sqlite3_changegroup object. Calling it produces similar results as the ** following code fragment: ** **
**   sqlite3_changegroup *pGrp;
**   rc = sqlite3_changegroup_new(&pGrp);
**   if( rc==SQLITE_OK ) rc = sqlite3changegroup_add(pGrp, nA, pA);
**   if( rc==SQLITE_OK ) rc = sqlite3changegroup_add(pGrp, nB, pB);
**   if( rc==SQLITE_OK ){
**     rc = sqlite3changegroup_output(pGrp, pnOut, ppOut);
**   }else{
**     *ppOut = 0;
**     *pnOut = 0;
**   }
** 
** ** Refer to the sqlite3_changegroup documentation below for details. */ SQLITE_API int sqlite3changeset_concat( int nA, /* Number of bytes in buffer pA */ void *pA, /* Pointer to buffer containing changeset A */ int nB, /* Number of bytes in buffer pB */ void *pB, /* Pointer to buffer containing changeset B */ int *pnOut, /* OUT: Number of bytes in output changeset */ void **ppOut /* OUT: Buffer containing output changeset */ ); /* ** CAPI3REF: Changegroup Handle ** ** A changegroup is an object used to combine two or more ** [changesets] or [patchsets] */ typedef struct sqlite3_changegroup sqlite3_changegroup; /* ** CAPI3REF: Create A New Changegroup Object ** CONSTRUCTOR: sqlite3_changegroup ** ** An sqlite3_changegroup object is used to combine two or more changesets ** (or patchsets) into a single changeset (or patchset). A single changegroup ** object may combine changesets or patchsets, but not both. The output is ** always in the same format as the input. ** ** If successful, this function returns SQLITE_OK and populates (*pp) with ** a pointer to a new sqlite3_changegroup object before returning. The caller ** should eventually free the returned object using a call to ** sqlite3changegroup_delete(). If an error occurs, an SQLite error code ** (i.e. SQLITE_NOMEM) is returned and *pp is set to NULL. ** ** The usual usage pattern for an sqlite3_changegroup object is as follows: ** **
    **
  • It is created using a call to sqlite3changegroup_new(). ** **
  • Zero or more changesets (or patchsets) are added to the object ** by calling sqlite3changegroup_add(). ** **
  • The result of combining all input changesets together is obtained ** by the application via a call to sqlite3changegroup_output(). ** **
  • The object is deleted using a call to sqlite3changegroup_delete(). **
** ** Any number of calls to add() and output() may be made between the calls to ** new() and delete(), and in any order. ** ** As well as the regular sqlite3changegroup_add() and ** sqlite3changegroup_output() functions, also available are the streaming ** versions sqlite3changegroup_add_strm() and sqlite3changegroup_output_strm(). */ SQLITE_API int sqlite3changegroup_new(sqlite3_changegroup **pp); /* ** CAPI3REF: Add A Changeset To A Changegroup ** METHOD: sqlite3_changegroup ** ** Add all changes within the changeset (or patchset) in buffer pData (size ** nData bytes) to the changegroup. ** ** If the buffer contains a patchset, then all prior calls to this function ** on the same changegroup object must also have specified patchsets. Or, if ** the buffer contains a changeset, so must have the earlier calls to this ** function. Otherwise, SQLITE_ERROR is returned and no changes are added ** to the changegroup. ** ** Rows within the changeset and changegroup are identified by the values in ** their PRIMARY KEY columns. A change in the changeset is considered to ** apply to the same row as a change already present in the changegroup if ** the two rows have the same primary key. ** ** Changes to rows that do not already appear in the changegroup are ** simply copied into it. Or, if both the new changeset and the changegroup ** contain changes that apply to a single row, the final contents of the ** changegroup depends on the type of each change, as follows: ** ** ** ** **
Existing Change New Change Output Change **
INSERT INSERT ** The new change is ignored. This case does not occur if the new ** changeset was recorded immediately after the changesets already ** added to the changegroup. **
INSERT UPDATE ** The INSERT change remains in the changegroup. The values in the ** INSERT change are modified as if the row was inserted by the ** existing change and then updated according to the new change. **
INSERT DELETE ** The existing INSERT is removed from the changegroup. The DELETE is ** not added. **
UPDATE INSERT ** The new change is ignored. This case does not occur if the new ** changeset was recorded immediately after the changesets already ** added to the changegroup. **
UPDATE UPDATE ** The existing UPDATE remains within the changegroup. It is amended ** so that the accompanying values are as if the row was updated once ** by the existing change and then again by the new change. **
UPDATE DELETE ** The existing UPDATE is replaced by the new DELETE within the ** changegroup. **
DELETE INSERT ** If one or more of the column values in the row inserted by the ** new change differ from those in the row deleted by the existing ** change, the existing DELETE is replaced by an UPDATE within the ** changegroup. Otherwise, if the inserted row is exactly the same ** as the deleted row, the existing DELETE is simply discarded. **
DELETE UPDATE ** The new change is ignored. This case does not occur if the new ** changeset was recorded immediately after the changesets already ** added to the changegroup. **
DELETE DELETE ** The new change is ignored. This case does not occur if the new ** changeset was recorded immediately after the changesets already ** added to the changegroup. **
** ** If the new changeset contains changes to a table that is already present ** in the changegroup, then the number of columns and the position of the ** primary key columns for the table must be consistent. If this is not the ** case, this function fails with SQLITE_SCHEMA. If the input changeset ** appears to be corrupt and the corruption is detected, SQLITE_CORRUPT is ** returned. Or, if an out-of-memory condition occurs during processing, this ** function returns SQLITE_NOMEM. In all cases, if an error occurs the state ** of the final contents of the changegroup is undefined. ** ** If no error occurs, SQLITE_OK is returned. */ SQLITE_API int sqlite3changegroup_add(sqlite3_changegroup*, int nData, void *pData); /* ** CAPI3REF: Obtain A Composite Changeset From A Changegroup ** METHOD: sqlite3_changegroup ** ** Obtain a buffer containing a changeset (or patchset) representing the ** current contents of the changegroup. If the inputs to the changegroup ** were themselves changesets, the output is a changeset. Or, if the ** inputs were patchsets, the output is also a patchset. ** ** As with the output of the sqlite3session_changeset() and ** sqlite3session_patchset() functions, all changes related to a single ** table are grouped together in the output of this function. Tables appear ** in the same order as for the very first changeset added to the changegroup. ** If the second or subsequent changesets added to the changegroup contain ** changes for tables that do not appear in the first changeset, they are ** appended onto the end of the output changeset, again in the order in ** which they are first encountered. ** ** If an error occurs, an SQLite error code is returned and the output ** variables (*pnData) and (*ppData) are set to 0. Otherwise, SQLITE_OK ** is returned and the output variables are set to the size of and a ** pointer to the output buffer, respectively. In this case it is the ** responsibility of the caller to eventually free the buffer using a ** call to sqlite3_free(). */ SQLITE_API int sqlite3changegroup_output( sqlite3_changegroup*, int *pnData, /* OUT: Size of output buffer in bytes */ void **ppData /* OUT: Pointer to output buffer */ ); /* ** CAPI3REF: Delete A Changegroup Object ** DESTRUCTOR: sqlite3_changegroup */ SQLITE_API void sqlite3changegroup_delete(sqlite3_changegroup*); /* ** CAPI3REF: Apply A Changeset To A Database ** ** Apply a changeset or patchset to a database. These functions attempt to ** update the "main" database attached to handle db with the changes found in ** the changeset passed via the second and third arguments. ** ** The fourth argument (xFilter) passed to these functions is the "filter ** callback". If it is not NULL, then for each table affected by at least one ** change in the changeset, the filter callback is invoked with ** the table name as the second argument, and a copy of the context pointer ** passed as the sixth argument as the first. If the "filter callback" ** returns zero, then no attempt is made to apply any changes to the table. ** Otherwise, if the return value is non-zero or the xFilter argument to ** is NULL, all changes related to the table are attempted. ** ** For each table that is not excluded by the filter callback, this function ** tests that the target database contains a compatible table. A table is ** considered compatible if all of the following are true: ** **
    **
  • The table has the same name as the name recorded in the ** changeset, and **
  • The table has at least as many columns as recorded in the ** changeset, and **
  • The table has primary key columns in the same position as ** recorded in the changeset. **
** ** If there is no compatible table, it is not an error, but none of the ** changes associated with the table are applied. A warning message is issued ** via the sqlite3_log() mechanism with the error code SQLITE_SCHEMA. At most ** one such warning is issued for each table in the changeset. ** ** For each change for which there is a compatible table, an attempt is made ** to modify the table contents according to the UPDATE, INSERT or DELETE ** change. If a change cannot be applied cleanly, the conflict handler ** function passed as the fifth argument to sqlite3changeset_apply() may be ** invoked. A description of exactly when the conflict handler is invoked for ** each type of change is below. ** ** Unlike the xFilter argument, xConflict may not be passed NULL. The results ** of passing anything other than a valid function pointer as the xConflict ** argument are undefined. ** ** Each time the conflict handler function is invoked, it must return one ** of [SQLITE_CHANGESET_OMIT], [SQLITE_CHANGESET_ABORT] or ** [SQLITE_CHANGESET_REPLACE]. SQLITE_CHANGESET_REPLACE may only be returned ** if the second argument passed to the conflict handler is either ** SQLITE_CHANGESET_DATA or SQLITE_CHANGESET_CONFLICT. If the conflict-handler ** returns an illegal value, any changes already made are rolled back and ** the call to sqlite3changeset_apply() returns SQLITE_MISUSE. Different ** actions are taken by sqlite3changeset_apply() depending on the value ** returned by each invocation of the conflict-handler function. Refer to ** the documentation for the three ** [SQLITE_CHANGESET_OMIT|available return values] for details. ** **
**
DELETE Changes
** For each DELETE change, the function checks if the target database ** contains a row with the same primary key value (or values) as the ** original row values stored in the changeset. If it does, and the values ** stored in all non-primary key columns also match the values stored in ** the changeset the row is deleted from the target database. ** ** If a row with matching primary key values is found, but one or more of ** the non-primary key fields contains a value different from the original ** row value stored in the changeset, the conflict-handler function is ** invoked with [SQLITE_CHANGESET_DATA] as the second argument. If the ** database table has more columns than are recorded in the changeset, ** only the values of those non-primary key fields are compared against ** the current database contents - any trailing database table columns ** are ignored. ** ** If no row with matching primary key values is found in the database, ** the conflict-handler function is invoked with [SQLITE_CHANGESET_NOTFOUND] ** passed as the second argument. ** ** If the DELETE operation is attempted, but SQLite returns SQLITE_CONSTRAINT ** (which can only happen if a foreign key constraint is violated), the ** conflict-handler function is invoked with [SQLITE_CHANGESET_CONSTRAINT] ** passed as the second argument. This includes the case where the DELETE ** operation is attempted because an earlier call to the conflict handler ** function returned [SQLITE_CHANGESET_REPLACE]. ** **
INSERT Changes
** For each INSERT change, an attempt is made to insert the new row into ** the database. If the changeset row contains fewer fields than the ** database table, the trailing fields are populated with their default ** values. ** ** If the attempt to insert the row fails because the database already ** contains a row with the same primary key values, the conflict handler ** function is invoked with the second argument set to ** [SQLITE_CHANGESET_CONFLICT]. ** ** If the attempt to insert the row fails because of some other constraint ** violation (e.g. NOT NULL or UNIQUE), the conflict handler function is ** invoked with the second argument set to [SQLITE_CHANGESET_CONSTRAINT]. ** This includes the case where the INSERT operation is re-attempted because ** an earlier call to the conflict handler function returned ** [SQLITE_CHANGESET_REPLACE]. ** **
UPDATE Changes
** For each UPDATE change, the function checks if the target database ** contains a row with the same primary key value (or values) as the ** original row values stored in the changeset. If it does, and the values ** stored in all modified non-primary key columns also match the values ** stored in the changeset the row is updated within the target database. ** ** If a row with matching primary key values is found, but one or more of ** the modified non-primary key fields contains a value different from an ** original row value stored in the changeset, the conflict-handler function ** is invoked with [SQLITE_CHANGESET_DATA] as the second argument. Since ** UPDATE changes only contain values for non-primary key fields that are ** to be modified, only those fields need to match the original values to ** avoid the SQLITE_CHANGESET_DATA conflict-handler callback. ** ** If no row with matching primary key values is found in the database, ** the conflict-handler function is invoked with [SQLITE_CHANGESET_NOTFOUND] ** passed as the second argument. ** ** If the UPDATE operation is attempted, but SQLite returns ** SQLITE_CONSTRAINT, the conflict-handler function is invoked with ** [SQLITE_CHANGESET_CONSTRAINT] passed as the second argument. ** This includes the case where the UPDATE operation is attempted after ** an earlier call to the conflict handler function returned ** [SQLITE_CHANGESET_REPLACE]. **
** ** It is safe to execute SQL statements, including those that write to the ** table that the callback related to, from within the xConflict callback. ** This can be used to further customize the application's conflict ** resolution strategy. ** ** All changes made by these functions are enclosed in a savepoint transaction. ** If any other error (aside from a constraint failure when attempting to ** write to the target database) occurs, then the savepoint transaction is ** rolled back, restoring the target database to its original state, and an ** SQLite error code returned. ** ** If the output parameters (ppRebase) and (pnRebase) are non-NULL and ** the input is a changeset (not a patchset), then sqlite3changeset_apply_v2() ** may set (*ppRebase) to point to a "rebase" that may be used with the ** sqlite3_rebaser APIs buffer before returning. In this case (*pnRebase) ** is set to the size of the buffer in bytes. It is the responsibility of the ** caller to eventually free any such buffer using sqlite3_free(). The buffer ** is only allocated and populated if one or more conflicts were encountered ** while applying the patchset. See comments surrounding the sqlite3_rebaser ** APIs for further details. ** ** The behavior of sqlite3changeset_apply_v2() and its streaming equivalent ** may be modified by passing a combination of ** [SQLITE_CHANGESETAPPLY_NOSAVEPOINT | supported flags] as the 9th parameter. ** ** Note that the sqlite3changeset_apply_v2() API is still experimental ** and therefore subject to change. */ SQLITE_API int sqlite3changeset_apply( sqlite3 *db, /* Apply change to "main" db of this handle */ int nChangeset, /* Size of changeset in bytes */ void *pChangeset, /* Changeset blob */ int(*xFilter)( void *pCtx, /* Copy of sixth arg to _apply() */ const char *zTab /* Table name */ ), int(*xConflict)( void *pCtx, /* Copy of sixth arg to _apply() */ int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ sqlite3_changeset_iter *p /* Handle describing change and conflict */ ), void *pCtx /* First argument passed to xConflict */ ); SQLITE_API int sqlite3changeset_apply_v2( sqlite3 *db, /* Apply change to "main" db of this handle */ int nChangeset, /* Size of changeset in bytes */ void *pChangeset, /* Changeset blob */ int(*xFilter)( void *pCtx, /* Copy of sixth arg to _apply() */ const char *zTab /* Table name */ ), int(*xConflict)( void *pCtx, /* Copy of sixth arg to _apply() */ int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ sqlite3_changeset_iter *p /* Handle describing change and conflict */ ), void *pCtx, /* First argument passed to xConflict */ void **ppRebase, int *pnRebase, /* OUT: Rebase data */ int flags /* SESSION_CHANGESETAPPLY_* flags */ ); /* ** CAPI3REF: Flags for sqlite3changeset_apply_v2 ** ** The following flags may passed via the 9th parameter to ** [sqlite3changeset_apply_v2] and [sqlite3changeset_apply_v2_strm]: ** **
**
SQLITE_CHANGESETAPPLY_NOSAVEPOINT
** Usually, the sessions module encloses all operations performed by ** a single call to apply_v2() or apply_v2_strm() in a [SAVEPOINT]. The ** SAVEPOINT is committed if the changeset or patchset is successfully ** applied, or rolled back if an error occurs. Specifying this flag ** causes the sessions module to omit this savepoint. In this case, if the ** caller has an open transaction or savepoint when apply_v2() is called, ** it may revert the partially applied changeset by rolling it back. ** **
SQLITE_CHANGESETAPPLY_INVERT
** Invert the changeset before applying it. This is equivalent to inverting ** a changeset using sqlite3changeset_invert() before applying it. It is ** an error to specify this flag with a patchset. */ #define SQLITE_CHANGESETAPPLY_NOSAVEPOINT 0x0001 #define SQLITE_CHANGESETAPPLY_INVERT 0x0002 /* ** CAPI3REF: Constants Passed To The Conflict Handler ** ** Values that may be passed as the second argument to a conflict-handler. ** **
**
SQLITE_CHANGESET_DATA
** The conflict handler is invoked with CHANGESET_DATA as the second argument ** when processing a DELETE or UPDATE change if a row with the required ** PRIMARY KEY fields is present in the database, but one or more other ** (non primary-key) fields modified by the update do not contain the ** expected "before" values. ** ** The conflicting row, in this case, is the database row with the matching ** primary key. ** **
SQLITE_CHANGESET_NOTFOUND
** The conflict handler is invoked with CHANGESET_NOTFOUND as the second ** argument when processing a DELETE or UPDATE change if a row with the ** required PRIMARY KEY fields is not present in the database. ** ** There is no conflicting row in this case. The results of invoking the ** sqlite3changeset_conflict() API are undefined. ** **
SQLITE_CHANGESET_CONFLICT
** CHANGESET_CONFLICT is passed as the second argument to the conflict ** handler while processing an INSERT change if the operation would result ** in duplicate primary key values. ** ** The conflicting row in this case is the database row with the matching ** primary key. ** **
SQLITE_CHANGESET_FOREIGN_KEY
** If foreign key handling is enabled, and applying a changeset leaves the ** database in a state containing foreign key violations, the conflict ** handler is invoked with CHANGESET_FOREIGN_KEY as the second argument ** exactly once before the changeset is committed. If the conflict handler ** returns CHANGESET_OMIT, the changes, including those that caused the ** foreign key constraint violation, are committed. Or, if it returns ** CHANGESET_ABORT, the changeset is rolled back. ** ** No current or conflicting row information is provided. The only function ** it is possible to call on the supplied sqlite3_changeset_iter handle ** is sqlite3changeset_fk_conflicts(). ** **
SQLITE_CHANGESET_CONSTRAINT
** If any other constraint violation occurs while applying a change (i.e. ** a UNIQUE, CHECK or NOT NULL constraint), the conflict handler is ** invoked with CHANGESET_CONSTRAINT as the second argument. ** ** There is no conflicting row in this case. The results of invoking the ** sqlite3changeset_conflict() API are undefined. ** **
*/ #define SQLITE_CHANGESET_DATA 1 #define SQLITE_CHANGESET_NOTFOUND 2 #define SQLITE_CHANGESET_CONFLICT 3 #define SQLITE_CHANGESET_CONSTRAINT 4 #define SQLITE_CHANGESET_FOREIGN_KEY 5 /* ** CAPI3REF: Constants Returned By The Conflict Handler ** ** A conflict handler callback must return one of the following three values. ** **
**
SQLITE_CHANGESET_OMIT
** If a conflict handler returns this value no special action is taken. The ** change that caused the conflict is not applied. The session module ** continues to the next change in the changeset. ** **
SQLITE_CHANGESET_REPLACE
** This value may only be returned if the second argument to the conflict ** handler was SQLITE_CHANGESET_DATA or SQLITE_CHANGESET_CONFLICT. If this ** is not the case, any changes applied so far are rolled back and the ** call to sqlite3changeset_apply() returns SQLITE_MISUSE. ** ** If CHANGESET_REPLACE is returned by an SQLITE_CHANGESET_DATA conflict ** handler, then the conflicting row is either updated or deleted, depending ** on the type of change. ** ** If CHANGESET_REPLACE is returned by an SQLITE_CHANGESET_CONFLICT conflict ** handler, then the conflicting row is removed from the database and a ** second attempt to apply the change is made. If this second attempt fails, ** the original row is restored to the database before continuing. ** **
SQLITE_CHANGESET_ABORT
** If this value is returned, any changes applied so far are rolled back ** and the call to sqlite3changeset_apply() returns SQLITE_ABORT. **
*/ #define SQLITE_CHANGESET_OMIT 0 #define SQLITE_CHANGESET_REPLACE 1 #define SQLITE_CHANGESET_ABORT 2 /* ** CAPI3REF: Rebasing changesets ** EXPERIMENTAL ** ** Suppose there is a site hosting a database in state S0. And that ** modifications are made that move that database to state S1 and a ** changeset recorded (the "local" changeset). Then, a changeset based ** on S0 is received from another site (the "remote" changeset) and ** applied to the database. The database is then in state ** (S1+"remote"), where the exact state depends on any conflict ** resolution decisions (OMIT or REPLACE) made while applying "remote". ** Rebasing a changeset is to update it to take those conflict ** resolution decisions into account, so that the same conflicts ** do not have to be resolved elsewhere in the network. ** ** For example, if both the local and remote changesets contain an ** INSERT of the same key on "CREATE TABLE t1(a PRIMARY KEY, b)": ** ** local: INSERT INTO t1 VALUES(1, 'v1'); ** remote: INSERT INTO t1 VALUES(1, 'v2'); ** ** and the conflict resolution is REPLACE, then the INSERT change is ** removed from the local changeset (it was overridden). Or, if the ** conflict resolution was "OMIT", then the local changeset is modified ** to instead contain: ** ** UPDATE t1 SET b = 'v2' WHERE a=1; ** ** Changes within the local changeset are rebased as follows: ** **
**
Local INSERT
** This may only conflict with a remote INSERT. If the conflict ** resolution was OMIT, then add an UPDATE change to the rebased ** changeset. Or, if the conflict resolution was REPLACE, add ** nothing to the rebased changeset. ** **
Local DELETE
** This may conflict with a remote UPDATE or DELETE. In both cases the ** only possible resolution is OMIT. If the remote operation was a ** DELETE, then add no change to the rebased changeset. If the remote ** operation was an UPDATE, then the old.* fields of change are updated ** to reflect the new.* values in the UPDATE. ** **
Local UPDATE
** This may conflict with a remote UPDATE or DELETE. If it conflicts ** with a DELETE, and the conflict resolution was OMIT, then the update ** is changed into an INSERT. Any undefined values in the new.* record ** from the update change are filled in using the old.* values from ** the conflicting DELETE. Or, if the conflict resolution was REPLACE, ** the UPDATE change is simply omitted from the rebased changeset. ** ** If conflict is with a remote UPDATE and the resolution is OMIT, then ** the old.* values are rebased using the new.* values in the remote ** change. Or, if the resolution is REPLACE, then the change is copied ** into the rebased changeset with updates to columns also updated by ** the conflicting remote UPDATE removed. If this means no columns would ** be updated, the change is omitted. **
** ** A local change may be rebased against multiple remote changes ** simultaneously. If a single key is modified by multiple remote ** changesets, they are combined as follows before the local changeset ** is rebased: ** **
    **
  • If there has been one or more REPLACE resolutions on a ** key, it is rebased according to a REPLACE. ** **
  • If there have been no REPLACE resolutions on a key, then ** the local changeset is rebased according to the most recent ** of the OMIT resolutions. **
** ** Note that conflict resolutions from multiple remote changesets are ** combined on a per-field basis, not per-row. This means that in the ** case of multiple remote UPDATE operations, some fields of a single ** local change may be rebased for REPLACE while others are rebased for ** OMIT. ** ** In order to rebase a local changeset, the remote changeset must first ** be applied to the local database using sqlite3changeset_apply_v2() and ** the buffer of rebase information captured. Then: ** **
    **
  1. An sqlite3_rebaser object is created by calling ** sqlite3rebaser_create(). **
  2. The new object is configured with the rebase buffer obtained from ** sqlite3changeset_apply_v2() by calling sqlite3rebaser_configure(). ** If the local changeset is to be rebased against multiple remote ** changesets, then sqlite3rebaser_configure() should be called ** multiple times, in the same order that the multiple ** sqlite3changeset_apply_v2() calls were made. **
  3. Each local changeset is rebased by calling sqlite3rebaser_rebase(). **
  4. The sqlite3_rebaser object is deleted by calling ** sqlite3rebaser_delete(). **
*/ typedef struct sqlite3_rebaser sqlite3_rebaser; /* ** CAPI3REF: Create a changeset rebaser object. ** EXPERIMENTAL ** ** Allocate a new changeset rebaser object. If successful, set (*ppNew) to ** point to the new object and return SQLITE_OK. Otherwise, if an error ** occurs, return an SQLite error code (e.g. SQLITE_NOMEM) and set (*ppNew) ** to NULL. */ SQLITE_API int sqlite3rebaser_create(sqlite3_rebaser **ppNew); /* ** CAPI3REF: Configure a changeset rebaser object. ** EXPERIMENTAL ** ** Configure the changeset rebaser object to rebase changesets according ** to the conflict resolutions described by buffer pRebase (size nRebase ** bytes), which must have been obtained from a previous call to ** sqlite3changeset_apply_v2(). */ SQLITE_API int sqlite3rebaser_configure( sqlite3_rebaser*, int nRebase, const void *pRebase ); /* ** CAPI3REF: Rebase a changeset ** EXPERIMENTAL ** ** Argument pIn must point to a buffer containing a changeset nIn bytes ** in size. This function allocates and populates a buffer with a copy ** of the changeset rebased according to the configuration of the ** rebaser object passed as the first argument. If successful, (*ppOut) ** is set to point to the new buffer containing the rebased changeset and ** (*pnOut) to its size in bytes and SQLITE_OK returned. It is the ** responsibility of the caller to eventually free the new buffer using ** sqlite3_free(). Otherwise, if an error occurs, (*ppOut) and (*pnOut) ** are set to zero and an SQLite error code returned. */ SQLITE_API int sqlite3rebaser_rebase( sqlite3_rebaser*, int nIn, const void *pIn, int *pnOut, void **ppOut ); /* ** CAPI3REF: Delete a changeset rebaser object. ** EXPERIMENTAL ** ** Delete the changeset rebaser object and all associated resources. There ** should be one call to this function for each successful invocation ** of sqlite3rebaser_create(). */ SQLITE_API void sqlite3rebaser_delete(sqlite3_rebaser *p); /* ** CAPI3REF: Streaming Versions of API functions. ** ** The six streaming API xxx_strm() functions serve similar purposes to the ** corresponding non-streaming API functions: ** ** ** **
Streaming functionNon-streaming equivalent
sqlite3changeset_apply_strm[sqlite3changeset_apply] **
sqlite3changeset_apply_strm_v2[sqlite3changeset_apply_v2] **
sqlite3changeset_concat_strm[sqlite3changeset_concat] **
sqlite3changeset_invert_strm[sqlite3changeset_invert] **
sqlite3changeset_start_strm[sqlite3changeset_start] **
sqlite3session_changeset_strm[sqlite3session_changeset] **
sqlite3session_patchset_strm[sqlite3session_patchset] **
** ** Non-streaming functions that accept changesets (or patchsets) as input ** require that the entire changeset be stored in a single buffer in memory. ** Similarly, those that return a changeset or patchset do so by returning ** a pointer to a single large buffer allocated using sqlite3_malloc(). ** Normally this is convenient. However, if an application running in a ** low-memory environment is required to handle very large changesets, the ** large contiguous memory allocations required can become onerous. ** ** In order to avoid this problem, instead of a single large buffer, input ** is passed to a streaming API functions by way of a callback function that ** the sessions module invokes to incrementally request input data as it is ** required. In all cases, a pair of API function parameters such as ** **
**        int nChangeset,
**        void *pChangeset,
**  
** ** Is replaced by: ** **
**        int (*xInput)(void *pIn, void *pData, int *pnData),
**        void *pIn,
**  
** ** Each time the xInput callback is invoked by the sessions module, the first ** argument passed is a copy of the supplied pIn context pointer. The second ** argument, pData, points to a buffer (*pnData) bytes in size. Assuming no ** error occurs the xInput method should copy up to (*pnData) bytes of data ** into the buffer and set (*pnData) to the actual number of bytes copied ** before returning SQLITE_OK. If the input is completely exhausted, (*pnData) ** should be set to zero to indicate this. Or, if an error occurs, an SQLite ** error code should be returned. In all cases, if an xInput callback returns ** an error, all processing is abandoned and the streaming API function ** returns a copy of the error code to the caller. ** ** In the case of sqlite3changeset_start_strm(), the xInput callback may be ** invoked by the sessions module at any point during the lifetime of the ** iterator. If such an xInput callback returns an error, the iterator enters ** an error state, whereby all subsequent calls to iterator functions ** immediately fail with the same error code as returned by xInput. ** ** Similarly, streaming API functions that return changesets (or patchsets) ** return them in chunks by way of a callback function instead of via a ** pointer to a single large buffer. In this case, a pair of parameters such ** as: ** **
**        int *pnChangeset,
**        void **ppChangeset,
**  
** ** Is replaced by: ** **
**        int (*xOutput)(void *pOut, const void *pData, int nData),
**        void *pOut
**  
** ** The xOutput callback is invoked zero or more times to return data to ** the application. The first parameter passed to each call is a copy of the ** pOut pointer supplied by the application. The second parameter, pData, ** points to a buffer nData bytes in size containing the chunk of output ** data being returned. If the xOutput callback successfully processes the ** supplied data, it should return SQLITE_OK to indicate success. Otherwise, ** it should return some other SQLite error code. In this case processing ** is immediately abandoned and the streaming API function returns a copy ** of the xOutput error code to the application. ** ** The sessions module never invokes an xOutput callback with the third ** parameter set to a value less than or equal to zero. Other than this, ** no guarantees are made as to the size of the chunks of data returned. */ SQLITE_API int sqlite3changeset_apply_strm( sqlite3 *db, /* Apply change to "main" db of this handle */ int (*xInput)(void *pIn, void *pData, int *pnData), /* Input function */ void *pIn, /* First arg for xInput */ int(*xFilter)( void *pCtx, /* Copy of sixth arg to _apply() */ const char *zTab /* Table name */ ), int(*xConflict)( void *pCtx, /* Copy of sixth arg to _apply() */ int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ sqlite3_changeset_iter *p /* Handle describing change and conflict */ ), void *pCtx /* First argument passed to xConflict */ ); SQLITE_API int sqlite3changeset_apply_v2_strm( sqlite3 *db, /* Apply change to "main" db of this handle */ int (*xInput)(void *pIn, void *pData, int *pnData), /* Input function */ void *pIn, /* First arg for xInput */ int(*xFilter)( void *pCtx, /* Copy of sixth arg to _apply() */ const char *zTab /* Table name */ ), int(*xConflict)( void *pCtx, /* Copy of sixth arg to _apply() */ int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ sqlite3_changeset_iter *p /* Handle describing change and conflict */ ), void *pCtx, /* First argument passed to xConflict */ void **ppRebase, int *pnRebase, int flags ); SQLITE_API int sqlite3changeset_concat_strm( int (*xInputA)(void *pIn, void *pData, int *pnData), void *pInA, int (*xInputB)(void *pIn, void *pData, int *pnData), void *pInB, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); SQLITE_API int sqlite3changeset_invert_strm( int (*xInput)(void *pIn, void *pData, int *pnData), void *pIn, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); SQLITE_API int sqlite3changeset_start_strm( sqlite3_changeset_iter **pp, int (*xInput)(void *pIn, void *pData, int *pnData), void *pIn ); SQLITE_API int sqlite3changeset_start_v2_strm( sqlite3_changeset_iter **pp, int (*xInput)(void *pIn, void *pData, int *pnData), void *pIn, int flags ); SQLITE_API int sqlite3session_changeset_strm( sqlite3_session *pSession, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); SQLITE_API int sqlite3session_patchset_strm( sqlite3_session *pSession, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); SQLITE_API int sqlite3changegroup_add_strm(sqlite3_changegroup*, int (*xInput)(void *pIn, void *pData, int *pnData), void *pIn ); SQLITE_API int sqlite3changegroup_output_strm(sqlite3_changegroup*, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); SQLITE_API int sqlite3rebaser_rebase_strm( sqlite3_rebaser *pRebaser, int (*xInput)(void *pIn, void *pData, int *pnData), void *pIn, int (*xOutput)(void *pOut, const void *pData, int nData), void *pOut ); /* ** CAPI3REF: Configure global parameters ** ** The sqlite3session_config() interface is used to make global configuration ** changes to the sessions module in order to tune it to the specific needs ** of the application. ** ** The sqlite3session_config() interface is not threadsafe. If it is invoked ** while any other thread is inside any other sessions method then the ** results are undefined. Furthermore, if it is invoked after any sessions ** related objects have been created, the results are also undefined. ** ** The first argument to the sqlite3session_config() function must be one ** of the SQLITE_SESSION_CONFIG_XXX constants defined below. The ** interpretation of the (void*) value passed as the second parameter and ** the effect of calling this function depends on the value of the first ** parameter. ** **
**
SQLITE_SESSION_CONFIG_STRMSIZE
** By default, the sessions module streaming interfaces attempt to input ** and output data in approximately 1 KiB chunks. This operand may be used ** to set and query the value of this configuration setting. The pointer ** passed as the second argument must point to a value of type (int). ** If this value is greater than 0, it is used as the new streaming data ** chunk size for both input and output. Before returning, the (int) value ** pointed to by pArg is set to the final value of the streaming interface ** chunk size. **
** ** This function returns SQLITE_OK if successful, or an SQLite error code ** otherwise. */ SQLITE_API int sqlite3session_config(int op, void *pArg); /* ** CAPI3REF: Values for sqlite3session_config(). */ #define SQLITE_SESSION_CONFIG_STRMSIZE 1 /* ** Make sure we can call this stuff from C++. */ #if 0 } #endif #endif /* !defined(__SQLITESESSION_H_) && defined(SQLITE_ENABLE_SESSION) */ /******** End of sqlite3session.h *********/ /******** Begin file fts5.h *********/ /* ** 2014 May 31 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** Interfaces to extend FTS5. Using the interfaces defined in this file, ** FTS5 may be extended with: ** ** * custom tokenizers, and ** * custom auxiliary functions. */ #ifndef _FTS5_H #define _FTS5_H #if 0 extern "C" { #endif /************************************************************************* ** CUSTOM AUXILIARY FUNCTIONS ** ** Virtual table implementations may overload SQL functions by implementing ** the sqlite3_module.xFindFunction() method. */ typedef struct Fts5ExtensionApi Fts5ExtensionApi; typedef struct Fts5Context Fts5Context; typedef struct Fts5PhraseIter Fts5PhraseIter; typedef void (*fts5_extension_function)( const Fts5ExtensionApi *pApi, /* API offered by current FTS version */ Fts5Context *pFts, /* First arg to pass to pApi functions */ sqlite3_context *pCtx, /* Context for returning result/error */ int nVal, /* Number of values in apVal[] array */ sqlite3_value **apVal /* Array of trailing arguments */ ); struct Fts5PhraseIter { const unsigned char *a; const unsigned char *b; }; /* ** EXTENSION API FUNCTIONS ** ** xUserData(pFts): ** Return a copy of the context pointer the extension function was ** registered with. ** ** xColumnTotalSize(pFts, iCol, pnToken): ** If parameter iCol is less than zero, set output variable *pnToken ** to the total number of tokens in the FTS5 table. Or, if iCol is ** non-negative but less than the number of columns in the table, return ** the total number of tokens in column iCol, considering all rows in ** the FTS5 table. ** ** If parameter iCol is greater than or equal to the number of columns ** in the table, SQLITE_RANGE is returned. Or, if an error occurs (e.g. ** an OOM condition or IO error), an appropriate SQLite error code is ** returned. ** ** xColumnCount(pFts): ** Return the number of columns in the table. ** ** xColumnSize(pFts, iCol, pnToken): ** If parameter iCol is less than zero, set output variable *pnToken ** to the total number of tokens in the current row. Or, if iCol is ** non-negative but less than the number of columns in the table, set ** *pnToken to the number of tokens in column iCol of the current row. ** ** If parameter iCol is greater than or equal to the number of columns ** in the table, SQLITE_RANGE is returned. Or, if an error occurs (e.g. ** an OOM condition or IO error), an appropriate SQLite error code is ** returned. ** ** This function may be quite inefficient if used with an FTS5 table ** created with the "columnsize=0" option. ** ** xColumnText: ** This function attempts to retrieve the text of column iCol of the ** current document. If successful, (*pz) is set to point to a buffer ** containing the text in utf-8 encoding, (*pn) is set to the size in bytes ** (not characters) of the buffer and SQLITE_OK is returned. Otherwise, ** if an error occurs, an SQLite error code is returned and the final values ** of (*pz) and (*pn) are undefined. ** ** xPhraseCount: ** Returns the number of phrases in the current query expression. ** ** xPhraseSize: ** Returns the number of tokens in phrase iPhrase of the query. Phrases ** are numbered starting from zero. ** ** xInstCount: ** Set *pnInst to the total number of occurrences of all phrases within ** the query within the current row. Return SQLITE_OK if successful, or ** an error code (i.e. SQLITE_NOMEM) if an error occurs. ** ** This API can be quite slow if used with an FTS5 table created with the ** "detail=none" or "detail=column" option. If the FTS5 table is created ** with either "detail=none" or "detail=column" and "content=" option ** (i.e. if it is a contentless table), then this API always returns 0. ** ** xInst: ** Query for the details of phrase match iIdx within the current row. ** Phrase matches are numbered starting from zero, so the iIdx argument ** should be greater than or equal to zero and smaller than the value ** output by xInstCount(). ** ** Usually, output parameter *piPhrase is set to the phrase number, *piCol ** to the column in which it occurs and *piOff the token offset of the ** first token of the phrase. Returns SQLITE_OK if successful, or an error ** code (i.e. SQLITE_NOMEM) if an error occurs. ** ** This API can be quite slow if used with an FTS5 table created with the ** "detail=none" or "detail=column" option. ** ** xRowid: ** Returns the rowid of the current row. ** ** xTokenize: ** Tokenize text using the tokenizer belonging to the FTS5 table. ** ** xQueryPhrase(pFts5, iPhrase, pUserData, xCallback): ** This API function is used to query the FTS table for phrase iPhrase ** of the current query. Specifically, a query equivalent to: ** ** ... FROM ftstable WHERE ftstable MATCH $p ORDER BY rowid ** ** with $p set to a phrase equivalent to the phrase iPhrase of the ** current query is executed. Any column filter that applies to ** phrase iPhrase of the current query is included in $p. For each ** row visited, the callback function passed as the fourth argument ** is invoked. The context and API objects passed to the callback ** function may be used to access the properties of each matched row. ** Invoking Api.xUserData() returns a copy of the pointer passed as ** the third argument to pUserData. ** ** If the callback function returns any value other than SQLITE_OK, the ** query is abandoned and the xQueryPhrase function returns immediately. ** If the returned value is SQLITE_DONE, xQueryPhrase returns SQLITE_OK. ** Otherwise, the error code is propagated upwards. ** ** If the query runs to completion without incident, SQLITE_OK is returned. ** Or, if some error occurs before the query completes or is aborted by ** the callback, an SQLite error code is returned. ** ** ** xSetAuxdata(pFts5, pAux, xDelete) ** ** Save the pointer passed as the second argument as the extension function's ** "auxiliary data". The pointer may then be retrieved by the current or any ** future invocation of the same fts5 extension function made as part of ** the same MATCH query using the xGetAuxdata() API. ** ** Each extension function is allocated a single auxiliary data slot for ** each FTS query (MATCH expression). If the extension function is invoked ** more than once for a single FTS query, then all invocations share a ** single auxiliary data context. ** ** If there is already an auxiliary data pointer when this function is ** invoked, then it is replaced by the new pointer. If an xDelete callback ** was specified along with the original pointer, it is invoked at this ** point. ** ** The xDelete callback, if one is specified, is also invoked on the ** auxiliary data pointer after the FTS5 query has finished. ** ** If an error (e.g. an OOM condition) occurs within this function, ** the auxiliary data is set to NULL and an error code returned. If the ** xDelete parameter was not NULL, it is invoked on the auxiliary data ** pointer before returning. ** ** ** xGetAuxdata(pFts5, bClear) ** ** Returns the current auxiliary data pointer for the fts5 extension ** function. See the xSetAuxdata() method for details. ** ** If the bClear argument is non-zero, then the auxiliary data is cleared ** (set to NULL) before this function returns. In this case the xDelete, ** if any, is not invoked. ** ** ** xRowCount(pFts5, pnRow) ** ** This function is used to retrieve the total number of rows in the table. ** In other words, the same value that would be returned by: ** ** SELECT count(*) FROM ftstable; ** ** xPhraseFirst() ** This function is used, along with type Fts5PhraseIter and the xPhraseNext ** method, to iterate through all instances of a single query phrase within ** the current row. This is the same information as is accessible via the ** xInstCount/xInst APIs. While the xInstCount/xInst APIs are more convenient ** to use, this API may be faster under some circumstances. To iterate ** through instances of phrase iPhrase, use the following code: ** ** Fts5PhraseIter iter; ** int iCol, iOff; ** for(pApi->xPhraseFirst(pFts, iPhrase, &iter, &iCol, &iOff); ** iCol>=0; ** pApi->xPhraseNext(pFts, &iter, &iCol, &iOff) ** ){ ** // An instance of phrase iPhrase at offset iOff of column iCol ** } ** ** The Fts5PhraseIter structure is defined above. Applications should not ** modify this structure directly - it should only be used as shown above ** with the xPhraseFirst() and xPhraseNext() API methods (and by ** xPhraseFirstColumn() and xPhraseNextColumn() as illustrated below). ** ** This API can be quite slow if used with an FTS5 table created with the ** "detail=none" or "detail=column" option. If the FTS5 table is created ** with either "detail=none" or "detail=column" and "content=" option ** (i.e. if it is a contentless table), then this API always iterates ** through an empty set (all calls to xPhraseFirst() set iCol to -1). ** ** xPhraseNext() ** See xPhraseFirst above. ** ** xPhraseFirstColumn() ** This function and xPhraseNextColumn() are similar to the xPhraseFirst() ** and xPhraseNext() APIs described above. The difference is that instead ** of iterating through all instances of a phrase in the current row, these ** APIs are used to iterate through the set of columns in the current row ** that contain one or more instances of a specified phrase. For example: ** ** Fts5PhraseIter iter; ** int iCol; ** for(pApi->xPhraseFirstColumn(pFts, iPhrase, &iter, &iCol); ** iCol>=0; ** pApi->xPhraseNextColumn(pFts, &iter, &iCol) ** ){ ** // Column iCol contains at least one instance of phrase iPhrase ** } ** ** This API can be quite slow if used with an FTS5 table created with the ** "detail=none" option. If the FTS5 table is created with either ** "detail=none" "content=" option (i.e. if it is a contentless table), ** then this API always iterates through an empty set (all calls to ** xPhraseFirstColumn() set iCol to -1). ** ** The information accessed using this API and its companion ** xPhraseFirstColumn() may also be obtained using xPhraseFirst/xPhraseNext ** (or xInst/xInstCount). The chief advantage of this API is that it is ** significantly more efficient than those alternatives when used with ** "detail=column" tables. ** ** xPhraseNextColumn() ** See xPhraseFirstColumn above. */ struct Fts5ExtensionApi { int iVersion; /* Currently always set to 3 */ void *(*xUserData)(Fts5Context*); int (*xColumnCount)(Fts5Context*); int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow); int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken); int (*xTokenize)(Fts5Context*, const char *pText, int nText, /* Text to tokenize */ void *pCtx, /* Context passed to xToken() */ int (*xToken)(void*, int, const char*, int, int, int) /* Callback */ ); int (*xPhraseCount)(Fts5Context*); int (*xPhraseSize)(Fts5Context*, int iPhrase); int (*xInstCount)(Fts5Context*, int *pnInst); int (*xInst)(Fts5Context*, int iIdx, int *piPhrase, int *piCol, int *piOff); sqlite3_int64 (*xRowid)(Fts5Context*); int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn); int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken); int (*xQueryPhrase)(Fts5Context*, int iPhrase, void *pUserData, int(*)(const Fts5ExtensionApi*,Fts5Context*,void*) ); int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*)); void *(*xGetAuxdata)(Fts5Context*, int bClear); int (*xPhraseFirst)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*, int*); void (*xPhraseNext)(Fts5Context*, Fts5PhraseIter*, int *piCol, int *piOff); int (*xPhraseFirstColumn)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*); void (*xPhraseNextColumn)(Fts5Context*, Fts5PhraseIter*, int *piCol); }; /* ** CUSTOM AUXILIARY FUNCTIONS *************************************************************************/ /************************************************************************* ** CUSTOM TOKENIZERS ** ** Applications may also register custom tokenizer types. A tokenizer ** is registered by providing fts5 with a populated instance of the ** following structure. All structure methods must be defined, setting ** any member of the fts5_tokenizer struct to NULL leads to undefined ** behaviour. The structure methods are expected to function as follows: ** ** xCreate: ** This function is used to allocate and initialize a tokenizer instance. ** A tokenizer instance is required to actually tokenize text. ** ** The first argument passed to this function is a copy of the (void*) ** pointer provided by the application when the fts5_tokenizer object ** was registered with FTS5 (the third argument to xCreateTokenizer()). ** The second and third arguments are an array of nul-terminated strings ** containing the tokenizer arguments, if any, specified following the ** tokenizer name as part of the CREATE VIRTUAL TABLE statement used ** to create the FTS5 table. ** ** The final argument is an output variable. If successful, (*ppOut) ** should be set to point to the new tokenizer handle and SQLITE_OK ** returned. If an error occurs, some value other than SQLITE_OK should ** be returned. In this case, fts5 assumes that the final value of *ppOut ** is undefined. ** ** xDelete: ** This function is invoked to delete a tokenizer handle previously ** allocated using xCreate(). Fts5 guarantees that this function will ** be invoked exactly once for each successful call to xCreate(). ** ** xTokenize: ** This function is expected to tokenize the nText byte string indicated ** by argument pText. pText may or may not be nul-terminated. The first ** argument passed to this function is a pointer to an Fts5Tokenizer object ** returned by an earlier call to xCreate(). ** ** The second argument indicates the reason that FTS5 is requesting ** tokenization of the supplied text. This is always one of the following ** four values: ** **
  • FTS5_TOKENIZE_DOCUMENT - A document is being inserted into ** or removed from the FTS table. The tokenizer is being invoked to ** determine the set of tokens to add to (or delete from) the ** FTS index. ** **
  • FTS5_TOKENIZE_QUERY - A MATCH query is being executed ** against the FTS index. The tokenizer is being called to tokenize ** a bareword or quoted string specified as part of the query. ** **
  • (FTS5_TOKENIZE_QUERY | FTS5_TOKENIZE_PREFIX) - Same as ** FTS5_TOKENIZE_QUERY, except that the bareword or quoted string is ** followed by a "*" character, indicating that the last token ** returned by the tokenizer will be treated as a token prefix. ** **
  • FTS5_TOKENIZE_AUX - The tokenizer is being invoked to ** satisfy an fts5_api.xTokenize() request made by an auxiliary ** function. Or an fts5_api.xColumnSize() request made by the same ** on a columnsize=0 database. **
** ** For each token in the input string, the supplied callback xToken() must ** be invoked. The first argument to it should be a copy of the pointer ** passed as the second argument to xTokenize(). The third and fourth ** arguments are a pointer to a buffer containing the token text, and the ** size of the token in bytes. The 4th and 5th arguments are the byte offsets ** of the first byte of and first byte immediately following the text from ** which the token is derived within the input. ** ** The second argument passed to the xToken() callback ("tflags") should ** normally be set to 0. The exception is if the tokenizer supports ** synonyms. In this case see the discussion below for details. ** ** FTS5 assumes the xToken() callback is invoked for each token in the ** order that they occur within the input text. ** ** If an xToken() callback returns any value other than SQLITE_OK, then ** the tokenization should be abandoned and the xTokenize() method should ** immediately return a copy of the xToken() return value. Or, if the ** input buffer is exhausted, xTokenize() should return SQLITE_OK. Finally, ** if an error occurs with the xTokenize() implementation itself, it ** may abandon the tokenization and return any error code other than ** SQLITE_OK or SQLITE_DONE. ** ** SYNONYM SUPPORT ** ** Custom tokenizers may also support synonyms. Consider a case in which a ** user wishes to query for a phrase such as "first place". Using the ** built-in tokenizers, the FTS5 query 'first + place' will match instances ** of "first place" within the document set, but not alternative forms ** such as "1st place". In some applications, it would be better to match ** all instances of "first place" or "1st place" regardless of which form ** the user specified in the MATCH query text. ** ** There are several ways to approach this in FTS5: ** **
  1. By mapping all synonyms to a single token. In this case, using ** the above example, this means that the tokenizer returns the ** same token for inputs "first" and "1st". Say that token is in ** fact "first", so that when the user inserts the document "I won ** 1st place" entries are added to the index for tokens "i", "won", ** "first" and "place". If the user then queries for '1st + place', ** the tokenizer substitutes "first" for "1st" and the query works ** as expected. ** **
  2. By querying the index for all synonyms of each query term ** separately. In this case, when tokenizing query text, the ** tokenizer may provide multiple synonyms for a single term ** within the document. FTS5 then queries the index for each ** synonym individually. For example, faced with the query: ** ** ** ... MATCH 'first place' ** ** the tokenizer offers both "1st" and "first" as synonyms for the ** first token in the MATCH query and FTS5 effectively runs a query ** similar to: ** ** ** ... MATCH '(first OR 1st) place' ** ** except that, for the purposes of auxiliary functions, the query ** still appears to contain just two phrases - "(first OR 1st)" ** being treated as a single phrase. ** **
  3. By adding multiple synonyms for a single term to the FTS index. ** Using this method, when tokenizing document text, the tokenizer ** provides multiple synonyms for each token. So that when a ** document such as "I won first place" is tokenized, entries are ** added to the FTS index for "i", "won", "first", "1st" and ** "place". ** ** This way, even if the tokenizer does not provide synonyms ** when tokenizing query text (it should not - to do so would be ** inefficient), it doesn't matter if the user queries for ** 'first + place' or '1st + place', as there are entries in the ** FTS index corresponding to both forms of the first token. **
** ** Whether it is parsing document or query text, any call to xToken that ** specifies a tflags argument with the FTS5_TOKEN_COLOCATED bit ** is considered to supply a synonym for the previous token. For example, ** when parsing the document "I won first place", a tokenizer that supports ** synonyms would call xToken() 5 times, as follows: ** ** ** xToken(pCtx, 0, "i", 1, 0, 1); ** xToken(pCtx, 0, "won", 3, 2, 5); ** xToken(pCtx, 0, "first", 5, 6, 11); ** xToken(pCtx, FTS5_TOKEN_COLOCATED, "1st", 3, 6, 11); ** xToken(pCtx, 0, "place", 5, 12, 17); ** ** ** It is an error to specify the FTS5_TOKEN_COLOCATED flag the first time ** xToken() is called. Multiple synonyms may be specified for a single token ** by making multiple calls to xToken(FTS5_TOKEN_COLOCATED) in sequence. ** There is no limit to the number of synonyms that may be provided for a ** single token. ** ** In many cases, method (1) above is the best approach. It does not add ** extra data to the FTS index or require FTS5 to query for multiple terms, ** so it is efficient in terms of disk space and query speed. However, it ** does not support prefix queries very well. If, as suggested above, the ** token "first" is substituted for "1st" by the tokenizer, then the query: ** ** ** ... MATCH '1s*' ** ** will not match documents that contain the token "1st" (as the tokenizer ** will probably not map "1s" to any prefix of "first"). ** ** For full prefix support, method (3) may be preferred. In this case, ** because the index contains entries for both "first" and "1st", prefix ** queries such as 'fi*' or '1s*' will match correctly. However, because ** extra entries are added to the FTS index, this method uses more space ** within the database. ** ** Method (2) offers a midpoint between (1) and (3). Using this method, ** a query such as '1s*' will match documents that contain the literal ** token "1st", but not "first" (assuming the tokenizer is not able to ** provide synonyms for prefixes). However, a non-prefix query like '1st' ** will match against "1st" and "first". This method does not require ** extra disk space, as no extra entries are added to the FTS index. ** On the other hand, it may require more CPU cycles to run MATCH queries, ** as separate queries of the FTS index are required for each synonym. ** ** When using methods (2) or (3), it is important that the tokenizer only ** provide synonyms when tokenizing document text (method (2)) or query ** text (method (3)), not both. Doing so will not cause any errors, but is ** inefficient. */ typedef struct Fts5Tokenizer Fts5Tokenizer; typedef struct fts5_tokenizer fts5_tokenizer; struct fts5_tokenizer { int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut); void (*xDelete)(Fts5Tokenizer*); int (*xTokenize)(Fts5Tokenizer*, void *pCtx, int flags, /* Mask of FTS5_TOKENIZE_* flags */ const char *pText, int nText, int (*xToken)( void *pCtx, /* Copy of 2nd argument to xTokenize() */ int tflags, /* Mask of FTS5_TOKEN_* flags */ const char *pToken, /* Pointer to buffer containing token */ int nToken, /* Size of token in bytes */ int iStart, /* Byte offset of token within input text */ int iEnd /* Byte offset of end of token within input text */ ) ); }; /* Flags that may be passed as the third argument to xTokenize() */ #define FTS5_TOKENIZE_QUERY 0x0001 #define FTS5_TOKENIZE_PREFIX 0x0002 #define FTS5_TOKENIZE_DOCUMENT 0x0004 #define FTS5_TOKENIZE_AUX 0x0008 /* Flags that may be passed by the tokenizer implementation back to FTS5 ** as the third argument to the supplied xToken callback. */ #define FTS5_TOKEN_COLOCATED 0x0001 /* Same position as prev. token */ /* ** END OF CUSTOM TOKENIZERS *************************************************************************/ /************************************************************************* ** FTS5 EXTENSION REGISTRATION API */ typedef struct fts5_api fts5_api; struct fts5_api { int iVersion; /* Currently always set to 2 */ /* Create a new tokenizer */ int (*xCreateTokenizer)( fts5_api *pApi, const char *zName, void *pContext, fts5_tokenizer *pTokenizer, void (*xDestroy)(void*) ); /* Find an existing tokenizer */ int (*xFindTokenizer)( fts5_api *pApi, const char *zName, void **ppContext, fts5_tokenizer *pTokenizer ); /* Create a new auxiliary function */ int (*xCreateFunction)( fts5_api *pApi, const char *zName, void *pContext, fts5_extension_function xFunction, void (*xDestroy)(void*) ); }; /* ** END OF REGISTRATION API *************************************************************************/ #if 0 } /* end of the 'extern "C"' block */ #endif #endif /* _FTS5_H */ /******** End of fts5.h *********/ /************** End of sqlite3.h *********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /* ** Include the configuration header output by 'configure' if we're using the ** autoconf-based build */ #if defined(_HAVE_SQLITE_CONFIG_H) && !defined(SQLITECONFIG_H) /* #include "config.h" */ #define SQLITECONFIG_H 1 #endif /************** Include sqliteLimit.h in the middle of sqliteInt.h ***********/ /************** Begin file sqliteLimit.h *************************************/ /* ** 2007 May 7 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file defines various limits of what SQLite can process. */ /* ** The maximum length of a TEXT or BLOB in bytes. This also ** limits the size of a row in a table or index. ** ** The hard limit is the ability of a 32-bit signed integer ** to count the size: 2^31-1 or 2147483647. */ #ifndef SQLITE_MAX_LENGTH # define SQLITE_MAX_LENGTH 1000000000 #endif /* ** This is the maximum number of ** ** * Columns in a table ** * Columns in an index ** * Columns in a view ** * Terms in the SET clause of an UPDATE statement ** * Terms in the result set of a SELECT statement ** * Terms in the GROUP BY or ORDER BY clauses of a SELECT statement. ** * Terms in the VALUES clause of an INSERT statement ** ** The hard upper limit here is 32676. Most database people will ** tell you that in a well-normalized database, you usually should ** not have more than a dozen or so columns in any table. And if ** that is the case, there is no point in having more than a few ** dozen values in any of the other situations described above. */ #ifndef SQLITE_MAX_COLUMN # define SQLITE_MAX_COLUMN 2000 #endif /* ** The maximum length of a single SQL statement in bytes. ** ** It used to be the case that setting this value to zero would ** turn the limit off. That is no longer true. It is not possible ** to turn this limit off. */ #ifndef SQLITE_MAX_SQL_LENGTH # define SQLITE_MAX_SQL_LENGTH 1000000000 #endif /* ** The maximum depth of an expression tree. This is limited to ** some extent by SQLITE_MAX_SQL_LENGTH. But sometime you might ** want to place more severe limits on the complexity of an ** expression. ** ** A value of 0 used to mean that the limit was not enforced. ** But that is no longer true. The limit is now strictly enforced ** at all times. */ #ifndef SQLITE_MAX_EXPR_DEPTH # define SQLITE_MAX_EXPR_DEPTH 1000 #endif /* ** The maximum number of terms in a compound SELECT statement. ** The code generator for compound SELECT statements does one ** level of recursion for each term. A stack overflow can result ** if the number of terms is too large. In practice, most SQL ** never has more than 3 or 4 terms. Use a value of 0 to disable ** any limit on the number of terms in a compount SELECT. */ #ifndef SQLITE_MAX_COMPOUND_SELECT # define SQLITE_MAX_COMPOUND_SELECT 500 #endif /* ** The maximum number of opcodes in a VDBE program. ** Not currently enforced. */ #ifndef SQLITE_MAX_VDBE_OP # define SQLITE_MAX_VDBE_OP 250000000 #endif /* ** The maximum number of arguments to an SQL function. */ #ifndef SQLITE_MAX_FUNCTION_ARG # define SQLITE_MAX_FUNCTION_ARG 127 #endif /* ** The suggested maximum number of in-memory pages to use for ** the main database table and for temporary tables. ** ** IMPLEMENTATION-OF: R-30185-15359 The default suggested cache size is -2000, ** which means the cache size is limited to 2048000 bytes of memory. ** IMPLEMENTATION-OF: R-48205-43578 The default suggested cache size can be ** altered using the SQLITE_DEFAULT_CACHE_SIZE compile-time options. */ #ifndef SQLITE_DEFAULT_CACHE_SIZE # define SQLITE_DEFAULT_CACHE_SIZE -2000 #endif /* ** The default number of frames to accumulate in the log file before ** checkpointing the database in WAL mode. */ #ifndef SQLITE_DEFAULT_WAL_AUTOCHECKPOINT # define SQLITE_DEFAULT_WAL_AUTOCHECKPOINT 1000 #endif /* ** The maximum number of attached databases. This must be between 0 ** and 125. The upper bound of 125 is because the attached databases are ** counted using a signed 8-bit integer which has a maximum value of 127 ** and we have to allow 2 extra counts for the "main" and "temp" databases. */ #ifndef SQLITE_MAX_ATTACHED # define SQLITE_MAX_ATTACHED 10 #endif /* ** The maximum value of a ?nnn wildcard that the parser will accept. ** If the value exceeds 32767 then extra space is required for the Expr ** structure. But otherwise, we believe that the number can be as large ** as a signed 32-bit integer can hold. */ #ifndef SQLITE_MAX_VARIABLE_NUMBER # define SQLITE_MAX_VARIABLE_NUMBER 32766 #endif /* Maximum page size. The upper bound on this value is 65536. This a limit ** imposed by the use of 16-bit offsets within each page. ** ** Earlier versions of SQLite allowed the user to change this value at ** compile time. This is no longer permitted, on the grounds that it creates ** a library that is technically incompatible with an SQLite library ** compiled with a different limit. If a process operating on a database ** with a page-size of 65536 bytes crashes, then an instance of SQLite ** compiled with the default page-size limit will not be able to rollback ** the aborted transaction. This could lead to database corruption. */ #ifdef SQLITE_MAX_PAGE_SIZE # undef SQLITE_MAX_PAGE_SIZE #endif #define SQLITE_MAX_PAGE_SIZE 65536 /* ** The default size of a database page. */ #ifndef SQLITE_DEFAULT_PAGE_SIZE # define SQLITE_DEFAULT_PAGE_SIZE 4096 #endif #if SQLITE_DEFAULT_PAGE_SIZE>SQLITE_MAX_PAGE_SIZE # undef SQLITE_DEFAULT_PAGE_SIZE # define SQLITE_DEFAULT_PAGE_SIZE SQLITE_MAX_PAGE_SIZE #endif /* ** Ordinarily, if no value is explicitly provided, SQLite creates databases ** with page size SQLITE_DEFAULT_PAGE_SIZE. However, based on certain ** device characteristics (sector-size and atomic write() support), ** SQLite may choose a larger value. This constant is the maximum value ** SQLite will choose on its own. */ #ifndef SQLITE_MAX_DEFAULT_PAGE_SIZE # define SQLITE_MAX_DEFAULT_PAGE_SIZE 8192 #endif #if SQLITE_MAX_DEFAULT_PAGE_SIZE>SQLITE_MAX_PAGE_SIZE # undef SQLITE_MAX_DEFAULT_PAGE_SIZE # define SQLITE_MAX_DEFAULT_PAGE_SIZE SQLITE_MAX_PAGE_SIZE #endif /* ** Maximum number of pages in one database file. ** ** This is really just the default value for the max_page_count pragma. ** This value can be lowered (or raised) at run-time using that the ** max_page_count macro. */ #ifndef SQLITE_MAX_PAGE_COUNT # define SQLITE_MAX_PAGE_COUNT 1073741823 #endif /* ** Maximum length (in bytes) of the pattern in a LIKE or GLOB ** operator. */ #ifndef SQLITE_MAX_LIKE_PATTERN_LENGTH # define SQLITE_MAX_LIKE_PATTERN_LENGTH 50000 #endif /* ** Maximum depth of recursion for triggers. ** ** A value of 1 means that a trigger program will not be able to itself ** fire any triggers. A value of 0 means that no trigger programs at all ** may be executed. */ #ifndef SQLITE_MAX_TRIGGER_DEPTH # define SQLITE_MAX_TRIGGER_DEPTH 1000 #endif /************** End of sqliteLimit.h *****************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /* Disable nuisance warnings on Borland compilers */ #if defined(__BORLANDC__) #pragma warn -rch /* unreachable code */ #pragma warn -ccc /* Condition is always true or false */ #pragma warn -aus /* Assigned value is never used */ #pragma warn -csu /* Comparing signed and unsigned */ #pragma warn -spa /* Suspicious pointer arithmetic */ #endif /* ** WAL mode depends on atomic aligned 32-bit loads and stores in a few ** places. The following macros try to make this explicit. */ #ifndef __has_extension # define __has_extension(x) 0 /* compatibility with non-clang compilers */ #endif #if GCC_VERSION>=4007000 || __has_extension(c_atomic) # define AtomicLoad(PTR) __atomic_load_n((PTR),__ATOMIC_RELAXED) # define AtomicStore(PTR,VAL) __atomic_store_n((PTR),(VAL),__ATOMIC_RELAXED) #else # define AtomicLoad(PTR) (*(PTR)) # define AtomicStore(PTR,VAL) (*(PTR) = (VAL)) #endif /* ** Include standard header files as necessary */ #ifdef HAVE_STDINT_H #include #endif #ifdef HAVE_INTTYPES_H #include #endif /* ** The following macros are used to cast pointers to integers and ** integers to pointers. The way you do this varies from one compiler ** to the next, so we have developed the following set of #if statements ** to generate appropriate macros for a wide range of compilers. ** ** The correct "ANSI" way to do this is to use the intptr_t type. ** Unfortunately, that typedef is not available on all compilers, or ** if it is available, it requires an #include of specific headers ** that vary from one machine to the next. ** ** Ticket #3860: The llvm-gcc-4.2 compiler from Apple chokes on ** the ((void*)&((char*)0)[X]) construct. But MSVC chokes on ((void*)(X)). ** So we have to define the macros in different ways depending on the ** compiler. */ #if defined(HAVE_STDINT_H) /* Use this case if we have ANSI headers */ # define SQLITE_INT_TO_PTR(X) ((void*)(intptr_t)(X)) # define SQLITE_PTR_TO_INT(X) ((int)(intptr_t)(X)) #elif defined(__PTRDIFF_TYPE__) /* This case should work for GCC */ # define SQLITE_INT_TO_PTR(X) ((void*)(__PTRDIFF_TYPE__)(X)) # define SQLITE_PTR_TO_INT(X) ((int)(__PTRDIFF_TYPE__)(X)) #elif !defined(__GNUC__) /* Works for compilers other than LLVM */ # define SQLITE_INT_TO_PTR(X) ((void*)&((char*)0)[X]) # define SQLITE_PTR_TO_INT(X) ((int)(((char*)X)-(char*)0)) #else /* Generates a warning - but it always works */ # define SQLITE_INT_TO_PTR(X) ((void*)(X)) # define SQLITE_PTR_TO_INT(X) ((int)(X)) #endif /* ** A macro to hint to the compiler that a function should not be ** inlined. */ #if defined(__GNUC__) # define SQLITE_NOINLINE __attribute__((noinline)) #elif defined(_MSC_VER) && _MSC_VER>=1310 # define SQLITE_NOINLINE __declspec(noinline) #else # define SQLITE_NOINLINE #endif /* ** Make sure that the compiler intrinsics we desire are enabled when ** compiling with an appropriate version of MSVC unless prevented by ** the SQLITE_DISABLE_INTRINSIC define. */ #if !defined(SQLITE_DISABLE_INTRINSIC) # if defined(_MSC_VER) && _MSC_VER>=1400 # if !defined(_WIN32_WCE) # include # pragma intrinsic(_byteswap_ushort) # pragma intrinsic(_byteswap_ulong) # pragma intrinsic(_byteswap_uint64) # pragma intrinsic(_ReadWriteBarrier) # else # include # endif # endif #endif /* ** The SQLITE_THREADSAFE macro must be defined as 0, 1, or 2. ** 0 means mutexes are permanently disable and the library is never ** threadsafe. 1 means the library is serialized which is the highest ** level of threadsafety. 2 means the library is multithreaded - multiple ** threads can use SQLite as long as no two threads try to use the same ** database connection at the same time. ** ** Older versions of SQLite used an optional THREADSAFE macro. ** We support that for legacy. ** ** To ensure that the correct value of "THREADSAFE" is reported when querying ** for compile-time options at runtime (e.g. "PRAGMA compile_options"), this ** logic is partially replicated in ctime.c. If it is updated here, it should ** also be updated there. */ #if !defined(SQLITE_THREADSAFE) # if defined(THREADSAFE) # define SQLITE_THREADSAFE THREADSAFE # else # define SQLITE_THREADSAFE 1 /* IMP: R-07272-22309 */ # endif #endif /* ** Powersafe overwrite is on by default. But can be turned off using ** the -DSQLITE_POWERSAFE_OVERWRITE=0 command-line option. */ #ifndef SQLITE_POWERSAFE_OVERWRITE # define SQLITE_POWERSAFE_OVERWRITE 1 #endif /* ** EVIDENCE-OF: R-25715-37072 Memory allocation statistics are enabled by ** default unless SQLite is compiled with SQLITE_DEFAULT_MEMSTATUS=0 in ** which case memory allocation statistics are disabled by default. */ #if !defined(SQLITE_DEFAULT_MEMSTATUS) # define SQLITE_DEFAULT_MEMSTATUS 1 #endif /* ** Exactly one of the following macros must be defined in order to ** specify which memory allocation subsystem to use. ** ** SQLITE_SYSTEM_MALLOC // Use normal system malloc() ** SQLITE_WIN32_MALLOC // Use Win32 native heap API ** SQLITE_ZERO_MALLOC // Use a stub allocator that always fails ** SQLITE_MEMDEBUG // Debugging version of system malloc() ** ** On Windows, if the SQLITE_WIN32_MALLOC_VALIDATE macro is defined and the ** assert() macro is enabled, each call into the Win32 native heap subsystem ** will cause HeapValidate to be called. If heap validation should fail, an ** assertion will be triggered. ** ** If none of the above are defined, then set SQLITE_SYSTEM_MALLOC as ** the default. */ #if defined(SQLITE_SYSTEM_MALLOC) \ + defined(SQLITE_WIN32_MALLOC) \ + defined(SQLITE_ZERO_MALLOC) \ + defined(SQLITE_MEMDEBUG)>1 # error "Two or more of the following compile-time configuration options\ are defined but at most one is allowed:\ SQLITE_SYSTEM_MALLOC, SQLITE_WIN32_MALLOC, SQLITE_MEMDEBUG,\ SQLITE_ZERO_MALLOC" #endif #if defined(SQLITE_SYSTEM_MALLOC) \ + defined(SQLITE_WIN32_MALLOC) \ + defined(SQLITE_ZERO_MALLOC) \ + defined(SQLITE_MEMDEBUG)==0 # define SQLITE_SYSTEM_MALLOC 1 #endif /* ** If SQLITE_MALLOC_SOFT_LIMIT is not zero, then try to keep the ** sizes of memory allocations below this value where possible. */ #if !defined(SQLITE_MALLOC_SOFT_LIMIT) # define SQLITE_MALLOC_SOFT_LIMIT 1024 #endif /* ** We need to define _XOPEN_SOURCE as follows in order to enable ** recursive mutexes on most Unix systems and fchmod() on OpenBSD. ** But _XOPEN_SOURCE define causes problems for Mac OS X, so omit ** it. */ #if !defined(_XOPEN_SOURCE) && !defined(__DARWIN__) && !defined(__APPLE__) # define _XOPEN_SOURCE 600 #endif /* ** NDEBUG and SQLITE_DEBUG are opposites. It should always be true that ** defined(NDEBUG)==!defined(SQLITE_DEBUG). If this is not currently true, ** make it true by defining or undefining NDEBUG. ** ** Setting NDEBUG makes the code smaller and faster by disabling the ** assert() statements in the code. So we want the default action ** to be for NDEBUG to be set and NDEBUG to be undefined only if SQLITE_DEBUG ** is set. Thus NDEBUG becomes an opt-in rather than an opt-out ** feature. */ #if !defined(NDEBUG) && !defined(SQLITE_DEBUG) # define NDEBUG 1 #endif #if defined(NDEBUG) && defined(SQLITE_DEBUG) # undef NDEBUG #endif /* ** Enable SQLITE_ENABLE_EXPLAIN_COMMENTS if SQLITE_DEBUG is turned on. */ #if !defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) && defined(SQLITE_DEBUG) # define SQLITE_ENABLE_EXPLAIN_COMMENTS 1 #endif /* ** The testcase() macro is used to aid in coverage testing. When ** doing coverage testing, the condition inside the argument to ** testcase() must be evaluated both true and false in order to ** get full branch coverage. The testcase() macro is inserted ** to help ensure adequate test coverage in places where simple ** condition/decision coverage is inadequate. For example, testcase() ** can be used to make sure boundary values are tested. For ** bitmask tests, testcase() can be used to make sure each bit ** is significant and used at least once. On switch statements ** where multiple cases go to the same block of code, testcase() ** can insure that all cases are evaluated. ** */ #ifdef SQLITE_COVERAGE_TEST SQLITE_PRIVATE void sqlite3Coverage(int); # define testcase(X) if( X ){ sqlite3Coverage(__LINE__); } #else # define testcase(X) #endif /* ** The TESTONLY macro is used to enclose variable declarations or ** other bits of code that are needed to support the arguments ** within testcase() and assert() macros. */ #if !defined(NDEBUG) || defined(SQLITE_COVERAGE_TEST) # define TESTONLY(X) X #else # define TESTONLY(X) #endif /* ** Sometimes we need a small amount of code such as a variable initialization ** to setup for a later assert() statement. We do not want this code to ** appear when assert() is disabled. The following macro is therefore ** used to contain that setup code. The "VVA" acronym stands for ** "Verification, Validation, and Accreditation". In other words, the ** code within VVA_ONLY() will only run during verification processes. */ #ifndef NDEBUG # define VVA_ONLY(X) X #else # define VVA_ONLY(X) #endif /* ** The ALWAYS and NEVER macros surround boolean expressions which ** are intended to always be true or false, respectively. Such ** expressions could be omitted from the code completely. But they ** are included in a few cases in order to enhance the resilience ** of SQLite to unexpected behavior - to make the code "self-healing" ** or "ductile" rather than being "brittle" and crashing at the first ** hint of unplanned behavior. ** ** In other words, ALWAYS and NEVER are added for defensive code. ** ** When doing coverage testing ALWAYS and NEVER are hard-coded to ** be true and false so that the unreachable code they specify will ** not be counted as untested code. */ #if defined(SQLITE_COVERAGE_TEST) || defined(SQLITE_MUTATION_TEST) # define ALWAYS(X) (1) # define NEVER(X) (0) #elif !defined(NDEBUG) # define ALWAYS(X) ((X)?1:(assert(0),0)) # define NEVER(X) ((X)?(assert(0),1):0) #else # define ALWAYS(X) (X) # define NEVER(X) (X) #endif /* ** The harmless(X) macro indicates that expression X is usually false ** but can be true without causing any problems, but we don't know of ** any way to cause X to be true. ** ** In debugging and testing builds, this macro will abort if X is ever ** true. In this way, developers are alerted to a possible test case ** that causes X to be true. If a harmless macro ever fails, that is ** an opportunity to change the macro into a testcase() and add a new ** test case to the test suite. ** ** For normal production builds, harmless(X) is a no-op, since it does ** not matter whether expression X is true or false. */ #ifdef SQLITE_DEBUG # define harmless(X) assert(!(X)); #else # define harmless(X) #endif /* ** Some conditionals are optimizations only. In other words, if the ** conditionals are replaced with a constant 1 (true) or 0 (false) then ** the correct answer is still obtained, though perhaps not as quickly. ** ** The following macros mark these optimizations conditionals. */ #if defined(SQLITE_MUTATION_TEST) # define OK_IF_ALWAYS_TRUE(X) (1) # define OK_IF_ALWAYS_FALSE(X) (0) #else # define OK_IF_ALWAYS_TRUE(X) (X) # define OK_IF_ALWAYS_FALSE(X) (X) #endif /* ** Some malloc failures are only possible if SQLITE_TEST_REALLOC_STRESS is ** defined. We need to defend against those failures when testing with ** SQLITE_TEST_REALLOC_STRESS, but we don't want the unreachable branches ** during a normal build. The following macro can be used to disable tests ** that are always false except when SQLITE_TEST_REALLOC_STRESS is set. */ #if defined(SQLITE_TEST_REALLOC_STRESS) # define ONLY_IF_REALLOC_STRESS(X) (X) #elif !defined(NDEBUG) # define ONLY_IF_REALLOC_STRESS(X) ((X)?(assert(0),1):0) #else # define ONLY_IF_REALLOC_STRESS(X) (0) #endif /* ** Declarations used for tracing the operating system interfaces. */ #if defined(SQLITE_FORCE_OS_TRACE) || defined(SQLITE_TEST) || \ (defined(SQLITE_DEBUG) && SQLITE_OS_WIN) extern int sqlite3OSTrace; # define OSTRACE(X) if( sqlite3OSTrace ) sqlite3DebugPrintf X # define SQLITE_HAVE_OS_TRACE #else # define OSTRACE(X) # undef SQLITE_HAVE_OS_TRACE #endif /* ** Is the sqlite3ErrName() function needed in the build? Currently, ** it is needed by "mutex_w32.c" (when debugging), "os_win.c" (when ** OSTRACE is enabled), and by several "test*.c" files (which are ** compiled using SQLITE_TEST). */ #if defined(SQLITE_HAVE_OS_TRACE) || defined(SQLITE_TEST) || \ (defined(SQLITE_DEBUG) && SQLITE_OS_WIN) # define SQLITE_NEED_ERR_NAME #else # undef SQLITE_NEED_ERR_NAME #endif /* ** SQLITE_ENABLE_EXPLAIN_COMMENTS is incompatible with SQLITE_OMIT_EXPLAIN */ #ifdef SQLITE_OMIT_EXPLAIN # undef SQLITE_ENABLE_EXPLAIN_COMMENTS #endif /* ** Return true (non-zero) if the input is an integer that is too large ** to fit in 32-bits. This macro is used inside of various testcase() ** macros to verify that we have tested SQLite for large-file support. */ #define IS_BIG_INT(X) (((X)&~(i64)0xffffffff)!=0) /* ** The macro unlikely() is a hint that surrounds a boolean ** expression that is usually false. Macro likely() surrounds ** a boolean expression that is usually true. These hints could, ** in theory, be used by the compiler to generate better code, but ** currently they are just comments for human readers. */ #define likely(X) (X) #define unlikely(X) (X) /************** Include hash.h in the middle of sqliteInt.h ******************/ /************** Begin file hash.h ********************************************/ /* ** 2001 September 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This is the header file for the generic hash-table implementation ** used in SQLite. */ #ifndef SQLITE_HASH_H #define SQLITE_HASH_H /* Forward declarations of structures. */ typedef struct Hash Hash; typedef struct HashElem HashElem; /* A complete hash table is an instance of the following structure. ** The internals of this structure are intended to be opaque -- client ** code should not attempt to access or modify the fields of this structure ** directly. Change this structure only by using the routines below. ** However, some of the "procedures" and "functions" for modifying and ** accessing this structure are really macros, so we can't really make ** this structure opaque. ** ** All elements of the hash table are on a single doubly-linked list. ** Hash.first points to the head of this list. ** ** There are Hash.htsize buckets. Each bucket points to a spot in ** the global doubly-linked list. The contents of the bucket are the ** element pointed to plus the next _ht.count-1 elements in the list. ** ** Hash.htsize and Hash.ht may be zero. In that case lookup is done ** by a linear search of the global list. For small tables, the ** Hash.ht table is never allocated because if there are few elements ** in the table, it is faster to do a linear search than to manage ** the hash table. */ struct Hash { unsigned int htsize; /* Number of buckets in the hash table */ unsigned int count; /* Number of entries in this table */ HashElem *first; /* The first element of the array */ struct _ht { /* the hash table */ unsigned int count; /* Number of entries with this hash */ HashElem *chain; /* Pointer to first entry with this hash */ } *ht; }; /* Each element in the hash table is an instance of the following ** structure. All elements are stored on a single doubly-linked list. ** ** Again, this structure is intended to be opaque, but it can't really ** be opaque because it is used by macros. */ struct HashElem { HashElem *next, *prev; /* Next and previous elements in the table */ void *data; /* Data associated with this element */ const char *pKey; /* Key associated with this element */ }; /* ** Access routines. To delete, insert a NULL pointer. */ SQLITE_PRIVATE void sqlite3HashInit(Hash*); SQLITE_PRIVATE void *sqlite3HashInsert(Hash*, const char *pKey, void *pData); SQLITE_PRIVATE void *sqlite3HashFind(const Hash*, const char *pKey); SQLITE_PRIVATE void sqlite3HashClear(Hash*); /* ** Macros for looping over all elements of a hash table. The idiom is ** like this: ** ** Hash h; ** HashElem *p; ** ... ** for(p=sqliteHashFirst(&h); p; p=sqliteHashNext(p)){ ** SomeStructure *pData = sqliteHashData(p); ** // do something with pData ** } */ #define sqliteHashFirst(H) ((H)->first) #define sqliteHashNext(E) ((E)->next) #define sqliteHashData(E) ((E)->data) /* #define sqliteHashKey(E) ((E)->pKey) // NOT USED */ /* #define sqliteHashKeysize(E) ((E)->nKey) // NOT USED */ /* ** Number of entries in a hash table */ /* #define sqliteHashCount(H) ((H)->count) // NOT USED */ #endif /* SQLITE_HASH_H */ /************** End of hash.h ************************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include parse.h in the middle of sqliteInt.h *****************/ /************** Begin file parse.h *******************************************/ #define TK_SEMI 1 #define TK_EXPLAIN 2 #define TK_QUERY 3 #define TK_PLAN 4 #define TK_BEGIN 5 #define TK_TRANSACTION 6 #define TK_DEFERRED 7 #define TK_IMMEDIATE 8 #define TK_EXCLUSIVE 9 #define TK_COMMIT 10 #define TK_END 11 #define TK_ROLLBACK 12 #define TK_SAVEPOINT 13 #define TK_RELEASE 14 #define TK_TO 15 #define TK_TABLE 16 #define TK_CREATE 17 #define TK_IF 18 #define TK_NOT 19 #define TK_EXISTS 20 #define TK_TEMP 21 #define TK_LP 22 #define TK_RP 23 #define TK_AS 24 #define TK_WITHOUT 25 #define TK_COMMA 26 #define TK_ABORT 27 #define TK_ACTION 28 #define TK_AFTER 29 #define TK_ANALYZE 30 #define TK_ASC 31 #define TK_ATTACH 32 #define TK_BEFORE 33 #define TK_BY 34 #define TK_CASCADE 35 #define TK_CAST 36 #define TK_CONFLICT 37 #define TK_DATABASE 38 #define TK_DESC 39 #define TK_DETACH 40 #define TK_EACH 41 #define TK_FAIL 42 #define TK_OR 43 #define TK_AND 44 #define TK_IS 45 #define TK_MATCH 46 #define TK_LIKE_KW 47 #define TK_BETWEEN 48 #define TK_IN 49 #define TK_ISNULL 50 #define TK_NOTNULL 51 #define TK_NE 52 #define TK_EQ 53 #define TK_GT 54 #define TK_LE 55 #define TK_LT 56 #define TK_GE 57 #define TK_ESCAPE 58 #define TK_ID 59 #define TK_COLUMNKW 60 #define TK_DO 61 #define TK_FOR 62 #define TK_IGNORE 63 #define TK_INITIALLY 64 #define TK_INSTEAD 65 #define TK_NO 66 #define TK_KEY 67 #define TK_OF 68 #define TK_OFFSET 69 #define TK_PRAGMA 70 #define TK_RAISE 71 #define TK_RECURSIVE 72 #define TK_REPLACE 73 #define TK_RESTRICT 74 #define TK_ROW 75 #define TK_ROWS 76 #define TK_TRIGGER 77 #define TK_VACUUM 78 #define TK_VIEW 79 #define TK_VIRTUAL 80 #define TK_WITH 81 #define TK_NULLS 82 #define TK_FIRST 83 #define TK_LAST 84 #define TK_CURRENT 85 #define TK_FOLLOWING 86 #define TK_PARTITION 87 #define TK_PRECEDING 88 #define TK_RANGE 89 #define TK_UNBOUNDED 90 #define TK_EXCLUDE 91 #define TK_GROUPS 92 #define TK_OTHERS 93 #define TK_TIES 94 #define TK_GENERATED 95 #define TK_ALWAYS 96 #define TK_REINDEX 97 #define TK_RENAME 98 #define TK_CTIME_KW 99 #define TK_ANY 100 #define TK_BITAND 101 #define TK_BITOR 102 #define TK_LSHIFT 103 #define TK_RSHIFT 104 #define TK_PLUS 105 #define TK_MINUS 106 #define TK_STAR 107 #define TK_SLASH 108 #define TK_REM 109 #define TK_CONCAT 110 #define TK_COLLATE 111 #define TK_BITNOT 112 #define TK_ON 113 #define TK_INDEXED 114 #define TK_STRING 115 #define TK_JOIN_KW 116 #define TK_CONSTRAINT 117 #define TK_DEFAULT 118 #define TK_NULL 119 #define TK_PRIMARY 120 #define TK_UNIQUE 121 #define TK_CHECK 122 #define TK_REFERENCES 123 #define TK_AUTOINCR 124 #define TK_INSERT 125 #define TK_DELETE 126 #define TK_UPDATE 127 #define TK_SET 128 #define TK_DEFERRABLE 129 #define TK_FOREIGN 130 #define TK_DROP 131 #define TK_UNION 132 #define TK_ALL 133 #define TK_EXCEPT 134 #define TK_INTERSECT 135 #define TK_SELECT 136 #define TK_VALUES 137 #define TK_DISTINCT 138 #define TK_DOT 139 #define TK_FROM 140 #define TK_JOIN 141 #define TK_USING 142 #define TK_ORDER 143 #define TK_GROUP 144 #define TK_HAVING 145 #define TK_LIMIT 146 #define TK_WHERE 147 #define TK_INTO 148 #define TK_NOTHING 149 #define TK_FLOAT 150 #define TK_BLOB 151 #define TK_INTEGER 152 #define TK_VARIABLE 153 #define TK_CASE 154 #define TK_WHEN 155 #define TK_THEN 156 #define TK_ELSE 157 #define TK_INDEX 158 #define TK_ALTER 159 #define TK_ADD 160 #define TK_WINDOW 161 #define TK_OVER 162 #define TK_FILTER 163 #define TK_COLUMN 164 #define TK_AGG_FUNCTION 165 #define TK_AGG_COLUMN 166 #define TK_TRUEFALSE 167 #define TK_ISNOT 168 #define TK_FUNCTION 169 #define TK_UMINUS 170 #define TK_UPLUS 171 #define TK_TRUTH 172 #define TK_REGISTER 173 #define TK_VECTOR 174 #define TK_SELECT_COLUMN 175 #define TK_IF_NULL_ROW 176 #define TK_ASTERISK 177 #define TK_SPAN 178 #define TK_SPACE 179 #define TK_ILLEGAL 180 /************** End of parse.h ***********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ #include #include #include #include #include /* ** Use a macro to replace memcpy() if compiled with SQLITE_INLINE_MEMCPY. ** This allows better measurements of where memcpy() is used when running ** cachegrind. But this macro version of memcpy() is very slow so it ** should not be used in production. This is a performance measurement ** hack only. */ #ifdef SQLITE_INLINE_MEMCPY # define memcpy(D,S,N) {char*xxd=(char*)(D);const char*xxs=(const char*)(S);\ int xxn=(N);while(xxn-->0)*(xxd++)=*(xxs++);} #endif /* ** If compiling for a processor that lacks floating point support, ** substitute integer for floating-point */ #ifdef SQLITE_OMIT_FLOATING_POINT # define double sqlite_int64 # define float sqlite_int64 # define LONGDOUBLE_TYPE sqlite_int64 # ifndef SQLITE_BIG_DBL # define SQLITE_BIG_DBL (((sqlite3_int64)1)<<50) # endif # define SQLITE_OMIT_DATETIME_FUNCS 1 # define SQLITE_OMIT_TRACE 1 # undef SQLITE_MIXED_ENDIAN_64BIT_FLOAT # undef SQLITE_HAVE_ISNAN #endif #ifndef SQLITE_BIG_DBL # define SQLITE_BIG_DBL (1e99) #endif /* ** OMIT_TEMPDB is set to 1 if SQLITE_OMIT_TEMPDB is defined, or 0 ** afterward. Having this macro allows us to cause the C compiler ** to omit code used by TEMP tables without messy #ifndef statements. */ #ifdef SQLITE_OMIT_TEMPDB #define OMIT_TEMPDB 1 #else #define OMIT_TEMPDB 0 #endif /* ** The "file format" number is an integer that is incremented whenever ** the VDBE-level file format changes. The following macros define the ** the default file format for new databases and the maximum file format ** that the library can read. */ #define SQLITE_MAX_FILE_FORMAT 4 #ifndef SQLITE_DEFAULT_FILE_FORMAT # define SQLITE_DEFAULT_FILE_FORMAT 4 #endif /* ** Determine whether triggers are recursive by default. This can be ** changed at run-time using a pragma. */ #ifndef SQLITE_DEFAULT_RECURSIVE_TRIGGERS # define SQLITE_DEFAULT_RECURSIVE_TRIGGERS 0 #endif /* ** Provide a default value for SQLITE_TEMP_STORE in case it is not specified ** on the command-line */ #ifndef SQLITE_TEMP_STORE # define SQLITE_TEMP_STORE 1 #endif /* ** If no value has been provided for SQLITE_MAX_WORKER_THREADS, or if ** SQLITE_TEMP_STORE is set to 3 (never use temporary files), set it ** to zero. */ #if SQLITE_TEMP_STORE==3 || SQLITE_THREADSAFE==0 # undef SQLITE_MAX_WORKER_THREADS # define SQLITE_MAX_WORKER_THREADS 0 #endif #ifndef SQLITE_MAX_WORKER_THREADS # define SQLITE_MAX_WORKER_THREADS 8 #endif #ifndef SQLITE_DEFAULT_WORKER_THREADS # define SQLITE_DEFAULT_WORKER_THREADS 0 #endif #if SQLITE_DEFAULT_WORKER_THREADS>SQLITE_MAX_WORKER_THREADS # undef SQLITE_MAX_WORKER_THREADS # define SQLITE_MAX_WORKER_THREADS SQLITE_DEFAULT_WORKER_THREADS #endif /* ** The default initial allocation for the pagecache when using separate ** pagecaches for each database connection. A positive number is the ** number of pages. A negative number N translations means that a buffer ** of -1024*N bytes is allocated and used for as many pages as it will hold. ** ** The default value of "20" was choosen to minimize the run-time of the ** speedtest1 test program with options: --shrink-memory --reprepare */ #ifndef SQLITE_DEFAULT_PCACHE_INITSZ # define SQLITE_DEFAULT_PCACHE_INITSZ 20 #endif /* ** Default value for the SQLITE_CONFIG_SORTERREF_SIZE option. */ #ifndef SQLITE_DEFAULT_SORTERREF_SIZE # define SQLITE_DEFAULT_SORTERREF_SIZE 0x7fffffff #endif /* ** The compile-time options SQLITE_MMAP_READWRITE and ** SQLITE_ENABLE_BATCH_ATOMIC_WRITE are not compatible with one another. ** You must choose one or the other (or neither) but not both. */ #if defined(SQLITE_MMAP_READWRITE) && defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) #error Cannot use both SQLITE_MMAP_READWRITE and SQLITE_ENABLE_BATCH_ATOMIC_WRITE #endif /* ** GCC does not define the offsetof() macro so we'll have to do it ** ourselves. */ #ifndef offsetof #define offsetof(STRUCTURE,FIELD) ((int)((char*)&((STRUCTURE*)0)->FIELD)) #endif /* ** Macros to compute minimum and maximum of two numbers. */ #ifndef MIN # define MIN(A,B) ((A)<(B)?(A):(B)) #endif #ifndef MAX # define MAX(A,B) ((A)>(B)?(A):(B)) #endif /* ** Swap two objects of type TYPE. */ #define SWAP(TYPE,A,B) {TYPE t=A; A=B; B=t;} /* ** Check to see if this machine uses EBCDIC. (Yes, believe it or ** not, there are still machines out there that use EBCDIC.) */ #if 'A' == '\301' # define SQLITE_EBCDIC 1 #else # define SQLITE_ASCII 1 #endif /* ** Integers of known sizes. These typedefs might change for architectures ** where the sizes very. Preprocessor macros are available so that the ** types can be conveniently redefined at compile-type. Like this: ** ** cc '-DUINTPTR_TYPE=long long int' ... */ #ifndef UINT32_TYPE # ifdef HAVE_UINT32_T # define UINT32_TYPE uint32_t # else # define UINT32_TYPE unsigned int # endif #endif #ifndef UINT16_TYPE # ifdef HAVE_UINT16_T # define UINT16_TYPE uint16_t # else # define UINT16_TYPE unsigned short int # endif #endif #ifndef INT16_TYPE # ifdef HAVE_INT16_T # define INT16_TYPE int16_t # else # define INT16_TYPE short int # endif #endif #ifndef UINT8_TYPE # ifdef HAVE_UINT8_T # define UINT8_TYPE uint8_t # else # define UINT8_TYPE unsigned char # endif #endif #ifndef INT8_TYPE # ifdef HAVE_INT8_T # define INT8_TYPE int8_t # else # define INT8_TYPE signed char # endif #endif #ifndef LONGDOUBLE_TYPE # define LONGDOUBLE_TYPE long double #endif typedef sqlite_int64 i64; /* 8-byte signed integer */ typedef sqlite_uint64 u64; /* 8-byte unsigned integer */ typedef UINT32_TYPE u32; /* 4-byte unsigned integer */ typedef UINT16_TYPE u16; /* 2-byte unsigned integer */ typedef INT16_TYPE i16; /* 2-byte signed integer */ typedef UINT8_TYPE u8; /* 1-byte unsigned integer */ typedef INT8_TYPE i8; /* 1-byte signed integer */ /* ** SQLITE_MAX_U32 is a u64 constant that is the maximum u64 value ** that can be stored in a u32 without loss of data. The value ** is 0x00000000ffffffff. But because of quirks of some compilers, we ** have to specify the value in the less intuitive manner shown: */ #define SQLITE_MAX_U32 ((((u64)1)<<32)-1) /* ** The datatype used to store estimates of the number of rows in a ** table or index. This is an unsigned integer type. For 99.9% of ** the world, a 32-bit integer is sufficient. But a 64-bit integer ** can be used at compile-time if desired. */ #ifdef SQLITE_64BIT_STATS typedef u64 tRowcnt; /* 64-bit only if requested at compile-time */ #else typedef u32 tRowcnt; /* 32-bit is the default */ #endif /* ** Estimated quantities used for query planning are stored as 16-bit ** logarithms. For quantity X, the value stored is 10*log2(X). This ** gives a possible range of values of approximately 1.0e986 to 1e-986. ** But the allowed values are "grainy". Not every value is representable. ** For example, quantities 16 and 17 are both represented by a LogEst ** of 40. However, since LogEst quantities are suppose to be estimates, ** not exact values, this imprecision is not a problem. ** ** "LogEst" is short for "Logarithmic Estimate". ** ** Examples: ** 1 -> 0 20 -> 43 10000 -> 132 ** 2 -> 10 25 -> 46 25000 -> 146 ** 3 -> 16 100 -> 66 1000000 -> 199 ** 4 -> 20 1000 -> 99 1048576 -> 200 ** 10 -> 33 1024 -> 100 4294967296 -> 320 ** ** The LogEst can be negative to indicate fractional values. ** Examples: ** ** 0.5 -> -10 0.1 -> -33 0.0625 -> -40 */ typedef INT16_TYPE LogEst; /* ** Set the SQLITE_PTRSIZE macro to the number of bytes in a pointer */ #ifndef SQLITE_PTRSIZE # if defined(__SIZEOF_POINTER__) # define SQLITE_PTRSIZE __SIZEOF_POINTER__ # elif defined(i386) || defined(__i386__) || defined(_M_IX86) || \ defined(_M_ARM) || defined(__arm__) || defined(__x86) || \ (defined(__TOS_AIX__) && !defined(__64BIT__)) # define SQLITE_PTRSIZE 4 # else # define SQLITE_PTRSIZE 8 # endif #endif /* The uptr type is an unsigned integer large enough to hold a pointer */ #if defined(HAVE_STDINT_H) typedef uintptr_t uptr; #elif SQLITE_PTRSIZE==4 typedef u32 uptr; #else typedef u64 uptr; #endif /* ** The SQLITE_WITHIN(P,S,E) macro checks to see if pointer P points to ** something between S (inclusive) and E (exclusive). ** ** In other words, S is a buffer and E is a pointer to the first byte after ** the end of buffer S. This macro returns true if P points to something ** contained within the buffer S. */ #define SQLITE_WITHIN(P,S,E) (((uptr)(P)>=(uptr)(S))&&((uptr)(P)<(uptr)(E))) /* ** Macros to determine whether the machine is big or little endian, ** and whether or not that determination is run-time or compile-time. ** ** For best performance, an attempt is made to guess at the byte-order ** using C-preprocessor macros. If that is unsuccessful, or if ** -DSQLITE_BYTEORDER=0 is set, then byte-order is determined ** at run-time. */ #ifndef SQLITE_BYTEORDER # if defined(i386) || defined(__i386__) || defined(_M_IX86) || \ defined(__x86_64) || defined(__x86_64__) || defined(_M_X64) || \ defined(_M_AMD64) || defined(_M_ARM) || defined(__x86) || \ defined(__ARMEL__) || defined(__AARCH64EL__) || defined(_M_ARM64) # define SQLITE_BYTEORDER 1234 # elif defined(sparc) || defined(__ppc__) || \ defined(__ARMEB__) || defined(__AARCH64EB__) # define SQLITE_BYTEORDER 4321 # else # define SQLITE_BYTEORDER 0 # endif #endif #if SQLITE_BYTEORDER==4321 # define SQLITE_BIGENDIAN 1 # define SQLITE_LITTLEENDIAN 0 # define SQLITE_UTF16NATIVE SQLITE_UTF16BE #elif SQLITE_BYTEORDER==1234 # define SQLITE_BIGENDIAN 0 # define SQLITE_LITTLEENDIAN 1 # define SQLITE_UTF16NATIVE SQLITE_UTF16LE #else # ifdef SQLITE_AMALGAMATION const int sqlite3one = 1; # else extern const int sqlite3one; # endif # define SQLITE_BIGENDIAN (*(char *)(&sqlite3one)==0) # define SQLITE_LITTLEENDIAN (*(char *)(&sqlite3one)==1) # define SQLITE_UTF16NATIVE (SQLITE_BIGENDIAN?SQLITE_UTF16BE:SQLITE_UTF16LE) #endif /* ** Constants for the largest and smallest possible 64-bit signed integers. ** These macros are designed to work correctly on both 32-bit and 64-bit ** compilers. */ #define LARGEST_INT64 (0xffffffff|(((i64)0x7fffffff)<<32)) #define LARGEST_UINT64 (0xffffffff|(((u64)0xffffffff)<<32)) #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) /* ** Round up a number to the next larger multiple of 8. This is used ** to force 8-byte alignment on 64-bit architectures. */ #define ROUND8(x) (((x)+7)&~7) /* ** Round down to the nearest multiple of 8 */ #define ROUNDDOWN8(x) ((x)&~7) /* ** Assert that the pointer X is aligned to an 8-byte boundary. This ** macro is used only within assert() to verify that the code gets ** all alignment restrictions correct. ** ** Except, if SQLITE_4_BYTE_ALIGNED_MALLOC is defined, then the ** underlying malloc() implementation might return us 4-byte aligned ** pointers. In that case, only verify 4-byte alignment. */ #ifdef SQLITE_4_BYTE_ALIGNED_MALLOC # define EIGHT_BYTE_ALIGNMENT(X) ((((char*)(X) - (char*)0)&3)==0) #else # define EIGHT_BYTE_ALIGNMENT(X) ((((char*)(X) - (char*)0)&7)==0) #endif /* ** Disable MMAP on platforms where it is known to not work */ #if defined(__OpenBSD__) || defined(__QNXNTO__) # undef SQLITE_MAX_MMAP_SIZE # define SQLITE_MAX_MMAP_SIZE 0 #endif /* ** Default maximum size of memory used by memory-mapped I/O in the VFS */ #ifdef __APPLE__ # include #endif #ifndef SQLITE_MAX_MMAP_SIZE # if defined(__linux__) \ || defined(_WIN32) \ || (defined(__APPLE__) && defined(__MACH__)) \ || defined(__sun) \ || defined(__FreeBSD__) \ || defined(__DragonFly__) # define SQLITE_MAX_MMAP_SIZE 0x7fff0000 /* 2147418112 */ # else # define SQLITE_MAX_MMAP_SIZE 0 # endif #endif /* ** The default MMAP_SIZE is zero on all platforms. Or, even if a larger ** default MMAP_SIZE is specified at compile-time, make sure that it does ** not exceed the maximum mmap size. */ #ifndef SQLITE_DEFAULT_MMAP_SIZE # define SQLITE_DEFAULT_MMAP_SIZE 0 #endif #if SQLITE_DEFAULT_MMAP_SIZE>SQLITE_MAX_MMAP_SIZE # undef SQLITE_DEFAULT_MMAP_SIZE # define SQLITE_DEFAULT_MMAP_SIZE SQLITE_MAX_MMAP_SIZE #endif /* ** SELECTTRACE_ENABLED will be either 1 or 0 depending on whether or not ** the Select query generator tracing logic is turned on. */ #if defined(SQLITE_ENABLE_SELECTTRACE) # define SELECTTRACE_ENABLED 1 #else # define SELECTTRACE_ENABLED 0 #endif #if defined(SQLITE_ENABLE_SELECTTRACE) # define SELECTTRACE_ENABLED 1 # define SELECTTRACE(K,P,S,X) \ if(sqlite3_unsupported_selecttrace&(K)) \ sqlite3DebugPrintf("%u/%d/%p: ",(S)->selId,(P)->addrExplain,(S)),\ sqlite3DebugPrintf X #else # define SELECTTRACE(K,P,S,X) # define SELECTTRACE_ENABLED 0 #endif /* ** An instance of the following structure is used to store the busy-handler ** callback for a given sqlite handle. ** ** The sqlite.busyHandler member of the sqlite struct contains the busy ** callback for the database handle. Each pager opened via the sqlite ** handle is passed a pointer to sqlite.busyHandler. The busy-handler ** callback is currently invoked only from within pager.c. */ typedef struct BusyHandler BusyHandler; struct BusyHandler { int (*xBusyHandler)(void *,int); /* The busy callback */ void *pBusyArg; /* First arg to busy callback */ int nBusy; /* Incremented with each busy call */ }; /* ** Name of table that holds the database schema. */ #define DFLT_SCHEMA_TABLE "sqlite_master" #define DFLT_TEMP_SCHEMA_TABLE "sqlite_temp_master" #define ALT_SCHEMA_TABLE "sqlite_schema" #define ALT_TEMP_SCHEMA_TABLE "sqlite_temp_schema" /* ** The root-page of the schema table. */ #define SCHEMA_ROOT 1 /* ** The name of the schema table. The name is different for TEMP. */ #define SCHEMA_TABLE(x) \ ((!OMIT_TEMPDB)&&(x==1)?DFLT_TEMP_SCHEMA_TABLE:DFLT_SCHEMA_TABLE) /* ** A convenience macro that returns the number of elements in ** an array. */ #define ArraySize(X) ((int)(sizeof(X)/sizeof(X[0]))) /* ** Determine if the argument is a power of two */ #define IsPowerOfTwo(X) (((X)&((X)-1))==0) /* ** The following value as a destructor means to use sqlite3DbFree(). ** The sqlite3DbFree() routine requires two parameters instead of the ** one parameter that destructors normally want. So we have to introduce ** this magic value that the code knows to handle differently. Any ** pointer will work here as long as it is distinct from SQLITE_STATIC ** and SQLITE_TRANSIENT. */ #define SQLITE_DYNAMIC ((sqlite3_destructor_type)sqlite3OomFault) /* ** When SQLITE_OMIT_WSD is defined, it means that the target platform does ** not support Writable Static Data (WSD) such as global and static variables. ** All variables must either be on the stack or dynamically allocated from ** the heap. When WSD is unsupported, the variable declarations scattered ** throughout the SQLite code must become constants instead. The SQLITE_WSD ** macro is used for this purpose. And instead of referencing the variable ** directly, we use its constant as a key to lookup the run-time allocated ** buffer that holds real variable. The constant is also the initializer ** for the run-time allocated buffer. ** ** In the usual case where WSD is supported, the SQLITE_WSD and GLOBAL ** macros become no-ops and have zero performance impact. */ #ifdef SQLITE_OMIT_WSD #define SQLITE_WSD const #define GLOBAL(t,v) (*(t*)sqlite3_wsd_find((void*)&(v), sizeof(v))) #define sqlite3GlobalConfig GLOBAL(struct Sqlite3Config, sqlite3Config) SQLITE_API int sqlite3_wsd_init(int N, int J); SQLITE_API void *sqlite3_wsd_find(void *K, int L); #else #define SQLITE_WSD #define GLOBAL(t,v) v #define sqlite3GlobalConfig sqlite3Config #endif /* ** The following macros are used to suppress compiler warnings and to ** make it clear to human readers when a function parameter is deliberately ** left unused within the body of a function. This usually happens when ** a function is called via a function pointer. For example the ** implementation of an SQL aggregate step callback may not use the ** parameter indicating the number of arguments passed to the aggregate, ** if it knows that this is enforced elsewhere. ** ** When a function parameter is not used at all within the body of a function, ** it is generally named "NotUsed" or "NotUsed2" to make things even clearer. ** However, these macros may also be used to suppress warnings related to ** parameters that may or may not be used depending on compilation options. ** For example those parameters only used in assert() statements. In these ** cases the parameters are named as per the usual conventions. */ #define UNUSED_PARAMETER(x) (void)(x) #define UNUSED_PARAMETER2(x,y) UNUSED_PARAMETER(x),UNUSED_PARAMETER(y) /* ** Forward references to structures */ typedef struct AggInfo AggInfo; typedef struct AuthContext AuthContext; typedef struct AutoincInfo AutoincInfo; typedef struct Bitvec Bitvec; typedef struct CollSeq CollSeq; typedef struct Column Column; typedef struct Db Db; typedef struct Schema Schema; typedef struct Expr Expr; typedef struct ExprList ExprList; typedef struct FKey FKey; typedef struct FuncDestructor FuncDestructor; typedef struct FuncDef FuncDef; typedef struct FuncDefHash FuncDefHash; typedef struct IdList IdList; typedef struct Index Index; typedef struct IndexSample IndexSample; typedef struct KeyClass KeyClass; typedef struct KeyInfo KeyInfo; typedef struct Lookaside Lookaside; typedef struct LookasideSlot LookasideSlot; typedef struct Module Module; typedef struct NameContext NameContext; typedef struct Parse Parse; typedef struct PreUpdate PreUpdate; typedef struct PrintfArguments PrintfArguments; typedef struct RenameToken RenameToken; typedef struct RowSet RowSet; typedef struct Savepoint Savepoint; typedef struct Select Select; typedef struct SQLiteThread SQLiteThread; typedef struct SelectDest SelectDest; typedef struct SrcList SrcList; typedef struct sqlite3_str StrAccum; /* Internal alias for sqlite3_str */ typedef struct Table Table; typedef struct TableLock TableLock; typedef struct Token Token; typedef struct TreeView TreeView; typedef struct Trigger Trigger; typedef struct TriggerPrg TriggerPrg; typedef struct TriggerStep TriggerStep; typedef struct UnpackedRecord UnpackedRecord; typedef struct Upsert Upsert; typedef struct VTable VTable; typedef struct VtabCtx VtabCtx; typedef struct Walker Walker; typedef struct WhereInfo WhereInfo; typedef struct Window Window; typedef struct With With; /* ** The bitmask datatype defined below is used for various optimizations. ** ** Changing this from a 64-bit to a 32-bit type limits the number of ** tables in a join to 32 instead of 64. But it also reduces the size ** of the library by 738 bytes on ix86. */ #ifdef SQLITE_BITMASK_TYPE typedef SQLITE_BITMASK_TYPE Bitmask; #else typedef u64 Bitmask; #endif /* ** The number of bits in a Bitmask. "BMS" means "BitMask Size". */ #define BMS ((int)(sizeof(Bitmask)*8)) /* ** A bit in a Bitmask */ #define MASKBIT(n) (((Bitmask)1)<<(n)) #define MASKBIT64(n) (((u64)1)<<(n)) #define MASKBIT32(n) (((unsigned int)1)<<(n)) #define ALLBITS ((Bitmask)-1) /* A VList object records a mapping between parameters/variables/wildcards ** in the SQL statement (such as $abc, @pqr, or :xyz) and the integer ** variable number associated with that parameter. See the format description ** on the sqlite3VListAdd() routine for more information. A VList is really ** just an array of integers. */ typedef int VList; /* ** Defer sourcing vdbe.h and btree.h until after the "u8" and ** "BusyHandler" typedefs. vdbe.h also requires a few of the opaque ** pointer types (i.e. FuncDef) defined above. */ /************** Include pager.h in the middle of sqliteInt.h *****************/ /************** Begin file pager.h *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface that the sqlite page cache ** subsystem. The page cache subsystem reads and writes a file a page ** at a time and provides a journal for rollback. */ #ifndef SQLITE_PAGER_H #define SQLITE_PAGER_H /* ** Default maximum size for persistent journal files. A negative ** value means no limit. This value may be overridden using the ** sqlite3PagerJournalSizeLimit() API. See also "PRAGMA journal_size_limit". */ #ifndef SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT #define SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT -1 #endif /* ** The type used to represent a page number. The first page in a file ** is called page 1. 0 is used to represent "not a page". */ typedef u32 Pgno; /* ** Each open file is managed by a separate instance of the "Pager" structure. */ typedef struct Pager Pager; /* ** Handle type for pages. */ typedef struct PgHdr DbPage; /* ** Page number PAGER_MJ_PGNO is never used in an SQLite database (it is ** reserved for working around a windows/posix incompatibility). It is ** used in the journal to signify that the remainder of the journal file ** is devoted to storing a super-journal name - there are no more pages to ** roll back. See comments for function writeSuperJournal() in pager.c ** for details. */ #define PAGER_MJ_PGNO(x) ((Pgno)((PENDING_BYTE/((x)->pageSize))+1)) /* ** Allowed values for the flags parameter to sqlite3PagerOpen(). ** ** NOTE: These values must match the corresponding BTREE_ values in btree.h. */ #define PAGER_OMIT_JOURNAL 0x0001 /* Do not use a rollback journal */ #define PAGER_MEMORY 0x0002 /* In-memory database */ /* ** Valid values for the second argument to sqlite3PagerLockingMode(). */ #define PAGER_LOCKINGMODE_QUERY -1 #define PAGER_LOCKINGMODE_NORMAL 0 #define PAGER_LOCKINGMODE_EXCLUSIVE 1 /* ** Numeric constants that encode the journalmode. ** ** The numeric values encoded here (other than PAGER_JOURNALMODE_QUERY) ** are exposed in the API via the "PRAGMA journal_mode" command and ** therefore cannot be changed without a compatibility break. */ #define PAGER_JOURNALMODE_QUERY (-1) /* Query the value of journalmode */ #define PAGER_JOURNALMODE_DELETE 0 /* Commit by deleting journal file */ #define PAGER_JOURNALMODE_PERSIST 1 /* Commit by zeroing journal header */ #define PAGER_JOURNALMODE_OFF 2 /* Journal omitted. */ #define PAGER_JOURNALMODE_TRUNCATE 3 /* Commit by truncating journal */ #define PAGER_JOURNALMODE_MEMORY 4 /* In-memory journal file */ #define PAGER_JOURNALMODE_WAL 5 /* Use write-ahead logging */ /* ** Flags that make up the mask passed to sqlite3PagerGet(). */ #define PAGER_GET_NOCONTENT 0x01 /* Do not load data from disk */ #define PAGER_GET_READONLY 0x02 /* Read-only page is acceptable */ /* ** Flags for sqlite3PagerSetFlags() ** ** Value constraints (enforced via assert()): ** PAGER_FULLFSYNC == SQLITE_FullFSync ** PAGER_CKPT_FULLFSYNC == SQLITE_CkptFullFSync ** PAGER_CACHE_SPILL == SQLITE_CacheSpill */ #define PAGER_SYNCHRONOUS_OFF 0x01 /* PRAGMA synchronous=OFF */ #define PAGER_SYNCHRONOUS_NORMAL 0x02 /* PRAGMA synchronous=NORMAL */ #define PAGER_SYNCHRONOUS_FULL 0x03 /* PRAGMA synchronous=FULL */ #define PAGER_SYNCHRONOUS_EXTRA 0x04 /* PRAGMA synchronous=EXTRA */ #define PAGER_SYNCHRONOUS_MASK 0x07 /* Mask for four values above */ #define PAGER_FULLFSYNC 0x08 /* PRAGMA fullfsync=ON */ #define PAGER_CKPT_FULLFSYNC 0x10 /* PRAGMA checkpoint_fullfsync=ON */ #define PAGER_CACHESPILL 0x20 /* PRAGMA cache_spill=ON */ #define PAGER_FLAGS_MASK 0x38 /* All above except SYNCHRONOUS */ /* ** The remainder of this file contains the declarations of the functions ** that make up the Pager sub-system API. See source code comments for ** a detailed description of each routine. */ /* Open and close a Pager connection. */ SQLITE_PRIVATE int sqlite3PagerOpen( sqlite3_vfs*, Pager **ppPager, const char*, int, int, int, void(*)(DbPage*) ); SQLITE_PRIVATE int sqlite3PagerClose(Pager *pPager, sqlite3*); SQLITE_PRIVATE int sqlite3PagerReadFileheader(Pager*, int, unsigned char*); /* Functions used to configure a Pager object. */ SQLITE_PRIVATE void sqlite3PagerSetBusyHandler(Pager*, int(*)(void *), void *); SQLITE_PRIVATE int sqlite3PagerSetPagesize(Pager*, u32*, int); SQLITE_PRIVATE Pgno sqlite3PagerMaxPageCount(Pager*, Pgno); SQLITE_PRIVATE void sqlite3PagerSetCachesize(Pager*, int); SQLITE_PRIVATE int sqlite3PagerSetSpillsize(Pager*, int); SQLITE_PRIVATE void sqlite3PagerSetMmapLimit(Pager *, sqlite3_int64); SQLITE_PRIVATE void sqlite3PagerShrink(Pager*); SQLITE_PRIVATE void sqlite3PagerSetFlags(Pager*,unsigned); SQLITE_PRIVATE int sqlite3PagerLockingMode(Pager *, int); SQLITE_PRIVATE int sqlite3PagerSetJournalMode(Pager *, int); SQLITE_PRIVATE int sqlite3PagerGetJournalMode(Pager*); SQLITE_PRIVATE int sqlite3PagerOkToChangeJournalMode(Pager*); SQLITE_PRIVATE i64 sqlite3PagerJournalSizeLimit(Pager *, i64); SQLITE_PRIVATE sqlite3_backup **sqlite3PagerBackupPtr(Pager*); SQLITE_PRIVATE int sqlite3PagerFlush(Pager*); /* Functions used to obtain and release page references. */ SQLITE_PRIVATE int sqlite3PagerGet(Pager *pPager, Pgno pgno, DbPage **ppPage, int clrFlag); SQLITE_PRIVATE DbPage *sqlite3PagerLookup(Pager *pPager, Pgno pgno); SQLITE_PRIVATE void sqlite3PagerRef(DbPage*); SQLITE_PRIVATE void sqlite3PagerUnref(DbPage*); SQLITE_PRIVATE void sqlite3PagerUnrefNotNull(DbPage*); SQLITE_PRIVATE void sqlite3PagerUnrefPageOne(DbPage*); /* Operations on page references. */ SQLITE_PRIVATE int sqlite3PagerWrite(DbPage*); SQLITE_PRIVATE void sqlite3PagerDontWrite(DbPage*); SQLITE_PRIVATE int sqlite3PagerMovepage(Pager*,DbPage*,Pgno,int); SQLITE_PRIVATE int sqlite3PagerPageRefcount(DbPage*); SQLITE_PRIVATE void *sqlite3PagerGetData(DbPage *); SQLITE_PRIVATE void *sqlite3PagerGetExtra(DbPage *); /* Functions used to manage pager transactions and savepoints. */ SQLITE_PRIVATE void sqlite3PagerPagecount(Pager*, int*); SQLITE_PRIVATE int sqlite3PagerBegin(Pager*, int exFlag, int); SQLITE_PRIVATE int sqlite3PagerCommitPhaseOne(Pager*,const char *zSuper, int); SQLITE_PRIVATE int sqlite3PagerExclusiveLock(Pager*); SQLITE_PRIVATE int sqlite3PagerSync(Pager *pPager, const char *zSuper); SQLITE_PRIVATE int sqlite3PagerCommitPhaseTwo(Pager*); SQLITE_PRIVATE int sqlite3PagerRollback(Pager*); SQLITE_PRIVATE int sqlite3PagerOpenSavepoint(Pager *pPager, int n); SQLITE_PRIVATE int sqlite3PagerSavepoint(Pager *pPager, int op, int iSavepoint); SQLITE_PRIVATE int sqlite3PagerSharedLock(Pager *pPager); #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3PagerCheckpoint(Pager *pPager, sqlite3*, int, int*, int*); SQLITE_PRIVATE int sqlite3PagerWalSupported(Pager *pPager); SQLITE_PRIVATE int sqlite3PagerWalCallback(Pager *pPager); SQLITE_PRIVATE int sqlite3PagerOpenWal(Pager *pPager, int *pisOpen); SQLITE_PRIVATE int sqlite3PagerCloseWal(Pager *pPager, sqlite3*); # ifdef SQLITE_ENABLE_SNAPSHOT SQLITE_PRIVATE int sqlite3PagerSnapshotGet(Pager*, sqlite3_snapshot **ppSnapshot); SQLITE_PRIVATE int sqlite3PagerSnapshotOpen(Pager*, sqlite3_snapshot *pSnapshot); SQLITE_PRIVATE int sqlite3PagerSnapshotRecover(Pager *pPager); SQLITE_PRIVATE int sqlite3PagerSnapshotCheck(Pager *pPager, sqlite3_snapshot *pSnapshot); SQLITE_PRIVATE void sqlite3PagerSnapshotUnlock(Pager *pPager); # endif #endif #if !defined(SQLITE_OMIT_WAL) && defined(SQLITE_ENABLE_SETLK_TIMEOUT) SQLITE_PRIVATE int sqlite3PagerWalWriteLock(Pager*, int); SQLITE_PRIVATE void sqlite3PagerWalDb(Pager*, sqlite3*); #else # define sqlite3PagerWalWriteLock(y,z) SQLITE_OK # define sqlite3PagerWalDb(x,y) #endif #ifdef SQLITE_DIRECT_OVERFLOW_READ SQLITE_PRIVATE int sqlite3PagerDirectReadOk(Pager *pPager, Pgno pgno); #endif #ifdef SQLITE_ENABLE_ZIPVFS SQLITE_PRIVATE int sqlite3PagerWalFramesize(Pager *pPager); #endif /* Functions used to query pager state and configuration. */ SQLITE_PRIVATE u8 sqlite3PagerIsreadonly(Pager*); SQLITE_PRIVATE u32 sqlite3PagerDataVersion(Pager*); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3PagerRefcount(Pager*); #endif SQLITE_PRIVATE int sqlite3PagerMemUsed(Pager*); SQLITE_PRIVATE const char *sqlite3PagerFilename(const Pager*, int); SQLITE_PRIVATE sqlite3_vfs *sqlite3PagerVfs(Pager*); SQLITE_PRIVATE sqlite3_file *sqlite3PagerFile(Pager*); SQLITE_PRIVATE sqlite3_file *sqlite3PagerJrnlFile(Pager*); SQLITE_PRIVATE const char *sqlite3PagerJournalname(Pager*); SQLITE_PRIVATE void *sqlite3PagerTempSpace(Pager*); SQLITE_PRIVATE int sqlite3PagerIsMemdb(Pager*); SQLITE_PRIVATE void sqlite3PagerCacheStat(Pager *, int, int, int *); SQLITE_PRIVATE void sqlite3PagerClearCache(Pager*); SQLITE_PRIVATE int sqlite3SectorSize(sqlite3_file *); /* Functions used to truncate the database file. */ SQLITE_PRIVATE void sqlite3PagerTruncateImage(Pager*,Pgno); SQLITE_PRIVATE void sqlite3PagerRekey(DbPage*, Pgno, u16); /* Functions to support testing and debugging. */ #if !defined(NDEBUG) || defined(SQLITE_TEST) SQLITE_PRIVATE Pgno sqlite3PagerPagenumber(DbPage*); SQLITE_PRIVATE int sqlite3PagerIswriteable(DbPage*); #endif #ifdef SQLITE_TEST SQLITE_PRIVATE int *sqlite3PagerStats(Pager*); SQLITE_PRIVATE void sqlite3PagerRefdump(Pager*); void disable_simulated_io_errors(void); void enable_simulated_io_errors(void); #else # define disable_simulated_io_errors() # define enable_simulated_io_errors() #endif #endif /* SQLITE_PAGER_H */ /************** End of pager.h ***********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include btree.h in the middle of sqliteInt.h *****************/ /************** Begin file btree.h *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface that the sqlite B-Tree file ** subsystem. See comments in the source code for a detailed description ** of what each interface routine does. */ #ifndef SQLITE_BTREE_H #define SQLITE_BTREE_H /* TODO: This definition is just included so other modules compile. It ** needs to be revisited. */ #define SQLITE_N_BTREE_META 16 /* ** If defined as non-zero, auto-vacuum is enabled by default. Otherwise ** it must be turned on for each database using "PRAGMA auto_vacuum = 1". */ #ifndef SQLITE_DEFAULT_AUTOVACUUM #define SQLITE_DEFAULT_AUTOVACUUM 0 #endif #define BTREE_AUTOVACUUM_NONE 0 /* Do not do auto-vacuum */ #define BTREE_AUTOVACUUM_FULL 1 /* Do full auto-vacuum */ #define BTREE_AUTOVACUUM_INCR 2 /* Incremental vacuum */ /* ** Forward declarations of structure */ typedef struct Btree Btree; typedef struct BtCursor BtCursor; typedef struct BtShared BtShared; typedef struct BtreePayload BtreePayload; SQLITE_PRIVATE int sqlite3BtreeOpen( sqlite3_vfs *pVfs, /* VFS to use with this b-tree */ const char *zFilename, /* Name of database file to open */ sqlite3 *db, /* Associated database connection */ Btree **ppBtree, /* Return open Btree* here */ int flags, /* Flags */ int vfsFlags /* Flags passed through to VFS open */ ); /* The flags parameter to sqlite3BtreeOpen can be the bitwise or of the ** following values. ** ** NOTE: These values must match the corresponding PAGER_ values in ** pager.h. */ #define BTREE_OMIT_JOURNAL 1 /* Do not create or use a rollback journal */ #define BTREE_MEMORY 2 /* This is an in-memory DB */ #define BTREE_SINGLE 4 /* The file contains at most 1 b-tree */ #define BTREE_UNORDERED 8 /* Use of a hash implementation is OK */ SQLITE_PRIVATE int sqlite3BtreeClose(Btree*); SQLITE_PRIVATE int sqlite3BtreeSetCacheSize(Btree*,int); SQLITE_PRIVATE int sqlite3BtreeSetSpillSize(Btree*,int); #if SQLITE_MAX_MMAP_SIZE>0 SQLITE_PRIVATE int sqlite3BtreeSetMmapLimit(Btree*,sqlite3_int64); #endif SQLITE_PRIVATE int sqlite3BtreeSetPagerFlags(Btree*,unsigned); SQLITE_PRIVATE int sqlite3BtreeSetPageSize(Btree *p, int nPagesize, int nReserve, int eFix); SQLITE_PRIVATE int sqlite3BtreeGetPageSize(Btree*); SQLITE_PRIVATE Pgno sqlite3BtreeMaxPageCount(Btree*,Pgno); SQLITE_PRIVATE Pgno sqlite3BtreeLastPage(Btree*); SQLITE_PRIVATE int sqlite3BtreeSecureDelete(Btree*,int); SQLITE_PRIVATE int sqlite3BtreeGetRequestedReserve(Btree*); SQLITE_PRIVATE int sqlite3BtreeGetReserveNoMutex(Btree *p); SQLITE_PRIVATE int sqlite3BtreeSetAutoVacuum(Btree *, int); SQLITE_PRIVATE int sqlite3BtreeGetAutoVacuum(Btree *); SQLITE_PRIVATE int sqlite3BtreeBeginTrans(Btree*,int,int*); SQLITE_PRIVATE int sqlite3BtreeCommitPhaseOne(Btree*, const char*); SQLITE_PRIVATE int sqlite3BtreeCommitPhaseTwo(Btree*, int); SQLITE_PRIVATE int sqlite3BtreeCommit(Btree*); SQLITE_PRIVATE int sqlite3BtreeRollback(Btree*,int,int); SQLITE_PRIVATE int sqlite3BtreeBeginStmt(Btree*,int); SQLITE_PRIVATE int sqlite3BtreeCreateTable(Btree*, Pgno*, int flags); SQLITE_PRIVATE int sqlite3BtreeIsInTrans(Btree*); SQLITE_PRIVATE int sqlite3BtreeIsInReadTrans(Btree*); SQLITE_PRIVATE int sqlite3BtreeIsInBackup(Btree*); SQLITE_PRIVATE void *sqlite3BtreeSchema(Btree *, int, void(*)(void *)); SQLITE_PRIVATE int sqlite3BtreeSchemaLocked(Btree *pBtree); #ifndef SQLITE_OMIT_SHARED_CACHE SQLITE_PRIVATE int sqlite3BtreeLockTable(Btree *pBtree, int iTab, u8 isWriteLock); #endif SQLITE_PRIVATE int sqlite3BtreeSavepoint(Btree *, int, int); SQLITE_PRIVATE const char *sqlite3BtreeGetFilename(Btree *); SQLITE_PRIVATE const char *sqlite3BtreeGetJournalname(Btree *); SQLITE_PRIVATE int sqlite3BtreeCopyFile(Btree *, Btree *); SQLITE_PRIVATE int sqlite3BtreeIncrVacuum(Btree *); /* The flags parameter to sqlite3BtreeCreateTable can be the bitwise OR ** of the flags shown below. ** ** Every SQLite table must have either BTREE_INTKEY or BTREE_BLOBKEY set. ** With BTREE_INTKEY, the table key is a 64-bit integer and arbitrary data ** is stored in the leaves. (BTREE_INTKEY is used for SQL tables.) With ** BTREE_BLOBKEY, the key is an arbitrary BLOB and no content is stored ** anywhere - the key is the content. (BTREE_BLOBKEY is used for SQL ** indices.) */ #define BTREE_INTKEY 1 /* Table has only 64-bit signed integer keys */ #define BTREE_BLOBKEY 2 /* Table has keys only - no data */ SQLITE_PRIVATE int sqlite3BtreeDropTable(Btree*, int, int*); SQLITE_PRIVATE int sqlite3BtreeClearTable(Btree*, int, int*); SQLITE_PRIVATE int sqlite3BtreeClearTableOfCursor(BtCursor*); SQLITE_PRIVATE int sqlite3BtreeTripAllCursors(Btree*, int, int); SQLITE_PRIVATE void sqlite3BtreeGetMeta(Btree *pBtree, int idx, u32 *pValue); SQLITE_PRIVATE int sqlite3BtreeUpdateMeta(Btree*, int idx, u32 value); SQLITE_PRIVATE int sqlite3BtreeNewDb(Btree *p); /* ** The second parameter to sqlite3BtreeGetMeta or sqlite3BtreeUpdateMeta ** should be one of the following values. The integer values are assigned ** to constants so that the offset of the corresponding field in an ** SQLite database header may be found using the following formula: ** ** offset = 36 + (idx * 4) ** ** For example, the free-page-count field is located at byte offset 36 of ** the database file header. The incr-vacuum-flag field is located at ** byte offset 64 (== 36+4*7). ** ** The BTREE_DATA_VERSION value is not really a value stored in the header. ** It is a read-only number computed by the pager. But we merge it with ** the header value access routines since its access pattern is the same. ** Call it a "virtual meta value". */ #define BTREE_FREE_PAGE_COUNT 0 #define BTREE_SCHEMA_VERSION 1 #define BTREE_FILE_FORMAT 2 #define BTREE_DEFAULT_CACHE_SIZE 3 #define BTREE_LARGEST_ROOT_PAGE 4 #define BTREE_TEXT_ENCODING 5 #define BTREE_USER_VERSION 6 #define BTREE_INCR_VACUUM 7 #define BTREE_APPLICATION_ID 8 #define BTREE_DATA_VERSION 15 /* A virtual meta-value */ /* ** Kinds of hints that can be passed into the sqlite3BtreeCursorHint() ** interface. ** ** BTREE_HINT_RANGE (arguments: Expr*, Mem*) ** ** The first argument is an Expr* (which is guaranteed to be constant for ** the lifetime of the cursor) that defines constraints on which rows ** might be fetched with this cursor. The Expr* tree may contain ** TK_REGISTER nodes that refer to values stored in the array of registers ** passed as the second parameter. In other words, if Expr.op==TK_REGISTER ** then the value of the node is the value in Mem[pExpr.iTable]. Any ** TK_COLUMN node in the expression tree refers to the Expr.iColumn-th ** column of the b-tree of the cursor. The Expr tree will not contain ** any function calls nor subqueries nor references to b-trees other than ** the cursor being hinted. ** ** The design of the _RANGE hint is aid b-tree implementations that try ** to prefetch content from remote machines - to provide those ** implementations with limits on what needs to be prefetched and thereby ** reduce network bandwidth. ** ** Note that BTREE_HINT_FLAGS with BTREE_BULKLOAD is the only hint used by ** standard SQLite. The other hints are provided for extentions that use ** the SQLite parser and code generator but substitute their own storage ** engine. */ #define BTREE_HINT_RANGE 0 /* Range constraints on queries */ /* ** Values that may be OR'd together to form the argument to the ** BTREE_HINT_FLAGS hint for sqlite3BtreeCursorHint(): ** ** The BTREE_BULKLOAD flag is set on index cursors when the index is going ** to be filled with content that is already in sorted order. ** ** The BTREE_SEEK_EQ flag is set on cursors that will get OP_SeekGE or ** OP_SeekLE opcodes for a range search, but where the range of entries ** selected will all have the same key. In other words, the cursor will ** be used only for equality key searches. ** */ #define BTREE_BULKLOAD 0x00000001 /* Used to full index in sorted order */ #define BTREE_SEEK_EQ 0x00000002 /* EQ seeks only - no range seeks */ /* ** Flags passed as the third argument to sqlite3BtreeCursor(). ** ** For read-only cursors the wrFlag argument is always zero. For read-write ** cursors it may be set to either (BTREE_WRCSR|BTREE_FORDELETE) or just ** (BTREE_WRCSR). If the BTREE_FORDELETE bit is set, then the cursor will ** only be used by SQLite for the following: ** ** * to seek to and then delete specific entries, and/or ** ** * to read values that will be used to create keys that other ** BTREE_FORDELETE cursors will seek to and delete. ** ** The BTREE_FORDELETE flag is an optimization hint. It is not used by ** by this, the native b-tree engine of SQLite, but it is available to ** alternative storage engines that might be substituted in place of this ** b-tree system. For alternative storage engines in which a delete of ** the main table row automatically deletes corresponding index rows, ** the FORDELETE flag hint allows those alternative storage engines to ** skip a lot of work. Namely: FORDELETE cursors may treat all SEEK ** and DELETE operations as no-ops, and any READ operation against a ** FORDELETE cursor may return a null row: 0x01 0x00. */ #define BTREE_WRCSR 0x00000004 /* read-write cursor */ #define BTREE_FORDELETE 0x00000008 /* Cursor is for seek/delete only */ SQLITE_PRIVATE int sqlite3BtreeCursor( Btree*, /* BTree containing table to open */ Pgno iTable, /* Index of root page */ int wrFlag, /* 1 for writing. 0 for read-only */ struct KeyInfo*, /* First argument to compare function */ BtCursor *pCursor /* Space to write cursor structure */ ); SQLITE_PRIVATE BtCursor *sqlite3BtreeFakeValidCursor(void); SQLITE_PRIVATE int sqlite3BtreeCursorSize(void); SQLITE_PRIVATE void sqlite3BtreeCursorZero(BtCursor*); SQLITE_PRIVATE void sqlite3BtreeCursorHintFlags(BtCursor*, unsigned); #ifdef SQLITE_ENABLE_CURSOR_HINTS SQLITE_PRIVATE void sqlite3BtreeCursorHint(BtCursor*, int, ...); #endif SQLITE_PRIVATE int sqlite3BtreeCloseCursor(BtCursor*); SQLITE_PRIVATE int sqlite3BtreeMovetoUnpacked( BtCursor*, UnpackedRecord *pUnKey, i64 intKey, int bias, int *pRes ); SQLITE_PRIVATE int sqlite3BtreeCursorHasMoved(BtCursor*); SQLITE_PRIVATE int sqlite3BtreeCursorRestore(BtCursor*, int*); SQLITE_PRIVATE int sqlite3BtreeDelete(BtCursor*, u8 flags); /* Allowed flags for sqlite3BtreeDelete() and sqlite3BtreeInsert() */ #define BTREE_SAVEPOSITION 0x02 /* Leave cursor pointing at NEXT or PREV */ #define BTREE_AUXDELETE 0x04 /* not the primary delete operation */ #define BTREE_APPEND 0x08 /* Insert is likely an append */ /* An instance of the BtreePayload object describes the content of a single ** entry in either an index or table btree. ** ** Index btrees (used for indexes and also WITHOUT ROWID tables) contain ** an arbitrary key and no data. These btrees have pKey,nKey set to the ** key and the pData,nData,nZero fields are uninitialized. The aMem,nMem ** fields give an array of Mem objects that are a decomposition of the key. ** The nMem field might be zero, indicating that no decomposition is available. ** ** Table btrees (used for rowid tables) contain an integer rowid used as ** the key and passed in the nKey field. The pKey field is zero. ** pData,nData hold the content of the new entry. nZero extra zero bytes ** are appended to the end of the content when constructing the entry. ** The aMem,nMem fields are uninitialized for table btrees. ** ** Field usage summary: ** ** Table BTrees Index Btrees ** ** pKey always NULL encoded key ** nKey the ROWID length of pKey ** pData data not used ** aMem not used decomposed key value ** nMem not used entries in aMem ** nData length of pData not used ** nZero extra zeros after pData not used ** ** This object is used to pass information into sqlite3BtreeInsert(). The ** same information used to be passed as five separate parameters. But placing ** the information into this object helps to keep the interface more ** organized and understandable, and it also helps the resulting code to ** run a little faster by using fewer registers for parameter passing. */ struct BtreePayload { const void *pKey; /* Key content for indexes. NULL for tables */ sqlite3_int64 nKey; /* Size of pKey for indexes. PRIMARY KEY for tabs */ const void *pData; /* Data for tables. */ sqlite3_value *aMem; /* First of nMem value in the unpacked pKey */ u16 nMem; /* Number of aMem[] value. Might be zero */ int nData; /* Size of pData. 0 if none. */ int nZero; /* Extra zero data appended after pData,nData */ }; SQLITE_PRIVATE int sqlite3BtreeInsert(BtCursor*, const BtreePayload *pPayload, int flags, int seekResult); SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor*, int *pRes); SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor*, int *pRes); SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor*, int flags); SQLITE_PRIVATE int sqlite3BtreeEof(BtCursor*); SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor*, int flags); SQLITE_PRIVATE i64 sqlite3BtreeIntegerKey(BtCursor*); SQLITE_PRIVATE void sqlite3BtreeCursorPin(BtCursor*); SQLITE_PRIVATE void sqlite3BtreeCursorUnpin(BtCursor*); #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC SQLITE_PRIVATE i64 sqlite3BtreeOffset(BtCursor*); #endif SQLITE_PRIVATE int sqlite3BtreePayload(BtCursor*, u32 offset, u32 amt, void*); SQLITE_PRIVATE const void *sqlite3BtreePayloadFetch(BtCursor*, u32 *pAmt); SQLITE_PRIVATE u32 sqlite3BtreePayloadSize(BtCursor*); SQLITE_PRIVATE sqlite3_int64 sqlite3BtreeMaxRecordSize(BtCursor*); SQLITE_PRIVATE char *sqlite3BtreeIntegrityCheck(sqlite3*,Btree*,Pgno*aRoot,int nRoot,int,int*); SQLITE_PRIVATE struct Pager *sqlite3BtreePager(Btree*); SQLITE_PRIVATE i64 sqlite3BtreeRowCountEst(BtCursor*); #ifndef SQLITE_OMIT_INCRBLOB SQLITE_PRIVATE int sqlite3BtreePayloadChecked(BtCursor*, u32 offset, u32 amt, void*); SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor*, u32 offset, u32 amt, void*); SQLITE_PRIVATE void sqlite3BtreeIncrblobCursor(BtCursor *); #endif SQLITE_PRIVATE void sqlite3BtreeClearCursor(BtCursor *); SQLITE_PRIVATE int sqlite3BtreeSetVersion(Btree *pBt, int iVersion); SQLITE_PRIVATE int sqlite3BtreeCursorHasHint(BtCursor*, unsigned int mask); SQLITE_PRIVATE int sqlite3BtreeIsReadonly(Btree *pBt); SQLITE_PRIVATE int sqlite3HeaderSizeBtree(void); #ifndef NDEBUG SQLITE_PRIVATE int sqlite3BtreeCursorIsValid(BtCursor*); #endif SQLITE_PRIVATE int sqlite3BtreeCursorIsValidNN(BtCursor*); SQLITE_PRIVATE int sqlite3BtreeCount(sqlite3*, BtCursor*, i64*); #ifdef SQLITE_TEST SQLITE_PRIVATE int sqlite3BtreeCursorInfo(BtCursor*, int*, int); SQLITE_PRIVATE void sqlite3BtreeCursorList(Btree*); #endif #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3BtreeCheckpoint(Btree*, int, int *, int *); #endif /* ** If we are not using shared cache, then there is no need to ** use mutexes to access the BtShared structures. So make the ** Enter and Leave procedures no-ops. */ #ifndef SQLITE_OMIT_SHARED_CACHE SQLITE_PRIVATE void sqlite3BtreeEnter(Btree*); SQLITE_PRIVATE void sqlite3BtreeEnterAll(sqlite3*); SQLITE_PRIVATE int sqlite3BtreeSharable(Btree*); SQLITE_PRIVATE void sqlite3BtreeEnterCursor(BtCursor*); SQLITE_PRIVATE int sqlite3BtreeConnectionCount(Btree*); #else # define sqlite3BtreeEnter(X) # define sqlite3BtreeEnterAll(X) # define sqlite3BtreeSharable(X) 0 # define sqlite3BtreeEnterCursor(X) # define sqlite3BtreeConnectionCount(X) 1 #endif #if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE SQLITE_PRIVATE void sqlite3BtreeLeave(Btree*); SQLITE_PRIVATE void sqlite3BtreeLeaveCursor(BtCursor*); SQLITE_PRIVATE void sqlite3BtreeLeaveAll(sqlite3*); #ifndef NDEBUG /* These routines are used inside assert() statements only. */ SQLITE_PRIVATE int sqlite3BtreeHoldsMutex(Btree*); SQLITE_PRIVATE int sqlite3BtreeHoldsAllMutexes(sqlite3*); SQLITE_PRIVATE int sqlite3SchemaMutexHeld(sqlite3*,int,Schema*); #endif #else # define sqlite3BtreeLeave(X) # define sqlite3BtreeLeaveCursor(X) # define sqlite3BtreeLeaveAll(X) # define sqlite3BtreeHoldsMutex(X) 1 # define sqlite3BtreeHoldsAllMutexes(X) 1 # define sqlite3SchemaMutexHeld(X,Y,Z) 1 #endif #endif /* SQLITE_BTREE_H */ /************** End of btree.h ***********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include vdbe.h in the middle of sqliteInt.h ******************/ /************** Begin file vdbe.h ********************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Header file for the Virtual DataBase Engine (VDBE) ** ** This header defines the interface to the virtual database engine ** or VDBE. The VDBE implements an abstract machine that runs a ** simple program to access and modify the underlying database. */ #ifndef SQLITE_VDBE_H #define SQLITE_VDBE_H /* #include */ /* ** A single VDBE is an opaque structure named "Vdbe". Only routines ** in the source file sqliteVdbe.c are allowed to see the insides ** of this structure. */ typedef struct Vdbe Vdbe; /* ** The names of the following types declared in vdbeInt.h are required ** for the VdbeOp definition. */ typedef struct sqlite3_value Mem; typedef struct SubProgram SubProgram; /* ** A single instruction of the virtual machine has an opcode ** and as many as three operands. The instruction is recorded ** as an instance of the following structure: */ struct VdbeOp { u8 opcode; /* What operation to perform */ signed char p4type; /* One of the P4_xxx constants for p4 */ u16 p5; /* Fifth parameter is an unsigned 16-bit integer */ int p1; /* First operand */ int p2; /* Second parameter (often the jump destination) */ int p3; /* The third parameter */ union p4union { /* fourth parameter */ int i; /* Integer value if p4type==P4_INT32 */ void *p; /* Generic pointer */ char *z; /* Pointer to data for string (char array) types */ i64 *pI64; /* Used when p4type is P4_INT64 */ double *pReal; /* Used when p4type is P4_REAL */ FuncDef *pFunc; /* Used when p4type is P4_FUNCDEF */ sqlite3_context *pCtx; /* Used when p4type is P4_FUNCCTX */ CollSeq *pColl; /* Used when p4type is P4_COLLSEQ */ Mem *pMem; /* Used when p4type is P4_MEM */ VTable *pVtab; /* Used when p4type is P4_VTAB */ KeyInfo *pKeyInfo; /* Used when p4type is P4_KEYINFO */ u32 *ai; /* Used when p4type is P4_INTARRAY */ SubProgram *pProgram; /* Used when p4type is P4_SUBPROGRAM */ Table *pTab; /* Used when p4type is P4_TABLE */ #ifdef SQLITE_ENABLE_CURSOR_HINTS Expr *pExpr; /* Used when p4type is P4_EXPR */ #endif int (*xAdvance)(BtCursor *, int); } p4; #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS char *zComment; /* Comment to improve readability */ #endif #ifdef VDBE_PROFILE u32 cnt; /* Number of times this instruction was executed */ u64 cycles; /* Total time spent executing this instruction */ #endif #ifdef SQLITE_VDBE_COVERAGE u32 iSrcLine; /* Source-code line that generated this opcode ** with flags in the upper 8 bits */ #endif }; typedef struct VdbeOp VdbeOp; /* ** A sub-routine used to implement a trigger program. */ struct SubProgram { VdbeOp *aOp; /* Array of opcodes for sub-program */ int nOp; /* Elements in aOp[] */ int nMem; /* Number of memory cells required */ int nCsr; /* Number of cursors required */ u8 *aOnce; /* Array of OP_Once flags */ void *token; /* id that may be used to recursive triggers */ SubProgram *pNext; /* Next sub-program already visited */ }; /* ** A smaller version of VdbeOp used for the VdbeAddOpList() function because ** it takes up less space. */ struct VdbeOpList { u8 opcode; /* What operation to perform */ signed char p1; /* First operand */ signed char p2; /* Second parameter (often the jump destination) */ signed char p3; /* Third parameter */ }; typedef struct VdbeOpList VdbeOpList; /* ** Allowed values of VdbeOp.p4type */ #define P4_NOTUSED 0 /* The P4 parameter is not used */ #define P4_TRANSIENT 0 /* P4 is a pointer to a transient string */ #define P4_STATIC (-1) /* Pointer to a static string */ #define P4_COLLSEQ (-2) /* P4 is a pointer to a CollSeq structure */ #define P4_INT32 (-3) /* P4 is a 32-bit signed integer */ #define P4_SUBPROGRAM (-4) /* P4 is a pointer to a SubProgram structure */ #define P4_ADVANCE (-5) /* P4 is a pointer to BtreeNext() or BtreePrev() */ #define P4_TABLE (-6) /* P4 is a pointer to a Table structure */ /* Above do not own any resources. Must free those below */ #define P4_FREE_IF_LE (-7) #define P4_DYNAMIC (-7) /* Pointer to memory from sqliteMalloc() */ #define P4_FUNCDEF (-8) /* P4 is a pointer to a FuncDef structure */ #define P4_KEYINFO (-9) /* P4 is a pointer to a KeyInfo structure */ #define P4_EXPR (-10) /* P4 is a pointer to an Expr tree */ #define P4_MEM (-11) /* P4 is a pointer to a Mem* structure */ #define P4_VTAB (-12) /* P4 is a pointer to an sqlite3_vtab structure */ #define P4_REAL (-13) /* P4 is a 64-bit floating point value */ #define P4_INT64 (-14) /* P4 is a 64-bit signed integer */ #define P4_INTARRAY (-15) /* P4 is a vector of 32-bit integers */ #define P4_FUNCCTX (-16) /* P4 is a pointer to an sqlite3_context object */ #define P4_DYNBLOB (-17) /* Pointer to memory from sqliteMalloc() */ /* Error message codes for OP_Halt */ #define P5_ConstraintNotNull 1 #define P5_ConstraintUnique 2 #define P5_ConstraintCheck 3 #define P5_ConstraintFK 4 /* ** The Vdbe.aColName array contains 5n Mem structures, where n is the ** number of columns of data returned by the statement. */ #define COLNAME_NAME 0 #define COLNAME_DECLTYPE 1 #define COLNAME_DATABASE 2 #define COLNAME_TABLE 3 #define COLNAME_COLUMN 4 #ifdef SQLITE_ENABLE_COLUMN_METADATA # define COLNAME_N 5 /* Number of COLNAME_xxx symbols */ #else # ifdef SQLITE_OMIT_DECLTYPE # define COLNAME_N 1 /* Store only the name */ # else # define COLNAME_N 2 /* Store the name and decltype */ # endif #endif /* ** The following macro converts a label returned by sqlite3VdbeMakeLabel() ** into an index into the Parse.aLabel[] array that contains the resolved ** address of that label. */ #define ADDR(X) (~(X)) /* ** The makefile scans the vdbe.c source file and creates the "opcodes.h" ** header file that defines a number for each opcode used by the VDBE. */ /************** Include opcodes.h in the middle of vdbe.h ********************/ /************** Begin file opcodes.h *****************************************/ /* Automatically generated. Do not edit */ /* See the tool/mkopcodeh.tcl script for details */ #define OP_Savepoint 0 #define OP_AutoCommit 1 #define OP_Transaction 2 #define OP_SorterNext 3 /* jump */ #define OP_Prev 4 /* jump */ #define OP_Next 5 /* jump */ #define OP_Checkpoint 6 #define OP_JournalMode 7 #define OP_Vacuum 8 #define OP_VFilter 9 /* jump, synopsis: iplan=r[P3] zplan='P4' */ #define OP_VUpdate 10 /* synopsis: data=r[P3@P2] */ #define OP_Goto 11 /* jump */ #define OP_Gosub 12 /* jump */ #define OP_InitCoroutine 13 /* jump */ #define OP_Yield 14 /* jump */ #define OP_MustBeInt 15 /* jump */ #define OP_Jump 16 /* jump */ #define OP_Once 17 /* jump */ #define OP_If 18 /* jump */ #define OP_Not 19 /* same as TK_NOT, synopsis: r[P2]= !r[P1] */ #define OP_IfNot 20 /* jump */ #define OP_IfNullRow 21 /* jump, synopsis: if P1.nullRow then r[P3]=NULL, goto P2 */ #define OP_SeekLT 22 /* jump, synopsis: key=r[P3@P4] */ #define OP_SeekLE 23 /* jump, synopsis: key=r[P3@P4] */ #define OP_SeekGE 24 /* jump, synopsis: key=r[P3@P4] */ #define OP_SeekGT 25 /* jump, synopsis: key=r[P3@P4] */ #define OP_IfNotOpen 26 /* jump, synopsis: if( !csr[P1] ) goto P2 */ #define OP_IfNoHope 27 /* jump, synopsis: key=r[P3@P4] */ #define OP_NoConflict 28 /* jump, synopsis: key=r[P3@P4] */ #define OP_NotFound 29 /* jump, synopsis: key=r[P3@P4] */ #define OP_Found 30 /* jump, synopsis: key=r[P3@P4] */ #define OP_SeekRowid 31 /* jump, synopsis: intkey=r[P3] */ #define OP_NotExists 32 /* jump, synopsis: intkey=r[P3] */ #define OP_Last 33 /* jump */ #define OP_IfSmaller 34 /* jump */ #define OP_SorterSort 35 /* jump */ #define OP_Sort 36 /* jump */ #define OP_Rewind 37 /* jump */ #define OP_IdxLE 38 /* jump, synopsis: key=r[P3@P4] */ #define OP_IdxGT 39 /* jump, synopsis: key=r[P3@P4] */ #define OP_IdxLT 40 /* jump, synopsis: key=r[P3@P4] */ #define OP_IdxGE 41 /* jump, synopsis: key=r[P3@P4] */ #define OP_RowSetRead 42 /* jump, synopsis: r[P3]=rowset(P1) */ #define OP_Or 43 /* same as TK_OR, synopsis: r[P3]=(r[P1] || r[P2]) */ #define OP_And 44 /* same as TK_AND, synopsis: r[P3]=(r[P1] && r[P2]) */ #define OP_RowSetTest 45 /* jump, synopsis: if r[P3] in rowset(P1) goto P2 */ #define OP_Program 46 /* jump */ #define OP_FkIfZero 47 /* jump, synopsis: if fkctr[P1]==0 goto P2 */ #define OP_IfPos 48 /* jump, synopsis: if r[P1]>0 then r[P1]-=P3, goto P2 */ #define OP_IfNotZero 49 /* jump, synopsis: if r[P1]!=0 then r[P1]--, goto P2 */ #define OP_IsNull 50 /* jump, same as TK_ISNULL, synopsis: if r[P1]==NULL goto P2 */ #define OP_NotNull 51 /* jump, same as TK_NOTNULL, synopsis: if r[P1]!=NULL goto P2 */ #define OP_Ne 52 /* jump, same as TK_NE, synopsis: IF r[P3]!=r[P1] */ #define OP_Eq 53 /* jump, same as TK_EQ, synopsis: IF r[P3]==r[P1] */ #define OP_Gt 54 /* jump, same as TK_GT, synopsis: IF r[P3]>r[P1] */ #define OP_Le 55 /* jump, same as TK_LE, synopsis: IF r[P3]<=r[P1] */ #define OP_Lt 56 /* jump, same as TK_LT, synopsis: IF r[P3]=r[P1] */ #define OP_ElseNotEq 58 /* jump, same as TK_ESCAPE */ #define OP_DecrJumpZero 59 /* jump, synopsis: if (--r[P1])==0 goto P2 */ #define OP_IncrVacuum 60 /* jump */ #define OP_VNext 61 /* jump */ #define OP_Init 62 /* jump, synopsis: Start at P2 */ #define OP_PureFunc 63 /* synopsis: r[P3]=func(r[P2@NP]) */ #define OP_Function 64 /* synopsis: r[P3]=func(r[P2@NP]) */ #define OP_Return 65 #define OP_EndCoroutine 66 #define OP_HaltIfNull 67 /* synopsis: if r[P3]=null halt */ #define OP_Halt 68 #define OP_Integer 69 /* synopsis: r[P2]=P1 */ #define OP_Int64 70 /* synopsis: r[P2]=P4 */ #define OP_String 71 /* synopsis: r[P2]='P4' (len=P1) */ #define OP_Null 72 /* synopsis: r[P2..P3]=NULL */ #define OP_SoftNull 73 /* synopsis: r[P1]=NULL */ #define OP_Blob 74 /* synopsis: r[P2]=P4 (len=P1) */ #define OP_Variable 75 /* synopsis: r[P2]=parameter(P1,P4) */ #define OP_Move 76 /* synopsis: r[P2@P3]=r[P1@P3] */ #define OP_Copy 77 /* synopsis: r[P2@P3+1]=r[P1@P3+1] */ #define OP_SCopy 78 /* synopsis: r[P2]=r[P1] */ #define OP_IntCopy 79 /* synopsis: r[P2]=r[P1] */ #define OP_ResultRow 80 /* synopsis: output=r[P1@P2] */ #define OP_CollSeq 81 #define OP_AddImm 82 /* synopsis: r[P1]=r[P1]+P2 */ #define OP_RealAffinity 83 #define OP_Cast 84 /* synopsis: affinity(r[P1]) */ #define OP_Permutation 85 #define OP_Compare 86 /* synopsis: r[P1@P3] <-> r[P2@P3] */ #define OP_IsTrue 87 /* synopsis: r[P2] = coalesce(r[P1]==TRUE,P3) ^ P4 */ #define OP_Offset 88 /* synopsis: r[P3] = sqlite_offset(P1) */ #define OP_Column 89 /* synopsis: r[P3]=PX */ #define OP_Affinity 90 /* synopsis: affinity(r[P1@P2]) */ #define OP_MakeRecord 91 /* synopsis: r[P3]=mkrec(r[P1@P2]) */ #define OP_Count 92 /* synopsis: r[P2]=count() */ #define OP_ReadCookie 93 #define OP_SetCookie 94 #define OP_ReopenIdx 95 /* synopsis: root=P2 iDb=P3 */ #define OP_OpenRead 96 /* synopsis: root=P2 iDb=P3 */ #define OP_OpenWrite 97 /* synopsis: root=P2 iDb=P3 */ #define OP_OpenDup 98 #define OP_OpenAutoindex 99 /* synopsis: nColumn=P2 */ #define OP_OpenEphemeral 100 /* synopsis: nColumn=P2 */ #define OP_BitAnd 101 /* same as TK_BITAND, synopsis: r[P3]=r[P1]&r[P2] */ #define OP_BitOr 102 /* same as TK_BITOR, synopsis: r[P3]=r[P1]|r[P2] */ #define OP_ShiftLeft 103 /* same as TK_LSHIFT, synopsis: r[P3]=r[P2]<>r[P1] */ #define OP_Add 105 /* same as TK_PLUS, synopsis: r[P3]=r[P1]+r[P2] */ #define OP_Subtract 106 /* same as TK_MINUS, synopsis: r[P3]=r[P2]-r[P1] */ #define OP_Multiply 107 /* same as TK_STAR, synopsis: r[P3]=r[P1]*r[P2] */ #define OP_Divide 108 /* same as TK_SLASH, synopsis: r[P3]=r[P2]/r[P1] */ #define OP_Remainder 109 /* same as TK_REM, synopsis: r[P3]=r[P2]%r[P1] */ #define OP_Concat 110 /* same as TK_CONCAT, synopsis: r[P3]=r[P2]+r[P1] */ #define OP_SorterOpen 111 #define OP_BitNot 112 /* same as TK_BITNOT, synopsis: r[P2]= ~r[P1] */ #define OP_SequenceTest 113 /* synopsis: if( cursor[P1].ctr++ ) pc = P2 */ #define OP_OpenPseudo 114 /* synopsis: P3 columns in r[P2] */ #define OP_String8 115 /* same as TK_STRING, synopsis: r[P2]='P4' */ #define OP_Close 116 #define OP_ColumnsUsed 117 #define OP_SeekHit 118 /* synopsis: seekHit=P2 */ #define OP_Sequence 119 /* synopsis: r[P2]=cursor[P1].ctr++ */ #define OP_NewRowid 120 /* synopsis: r[P2]=rowid */ #define OP_Insert 121 /* synopsis: intkey=r[P3] data=r[P2] */ #define OP_Delete 122 #define OP_ResetCount 123 #define OP_SorterCompare 124 /* synopsis: if key(P1)!=trim(r[P3],P4) goto P2 */ #define OP_SorterData 125 /* synopsis: r[P2]=data */ #define OP_RowData 126 /* synopsis: r[P2]=data */ #define OP_Rowid 127 /* synopsis: r[P2]=rowid */ #define OP_NullRow 128 #define OP_SeekEnd 129 #define OP_IdxInsert 130 /* synopsis: key=r[P2] */ #define OP_SorterInsert 131 /* synopsis: key=r[P2] */ #define OP_IdxDelete 132 /* synopsis: key=r[P2@P3] */ #define OP_DeferredSeek 133 /* synopsis: Move P3 to P1.rowid if needed */ #define OP_IdxRowid 134 /* synopsis: r[P2]=rowid */ #define OP_FinishSeek 135 #define OP_Destroy 136 #define OP_Clear 137 #define OP_ResetSorter 138 #define OP_CreateBtree 139 /* synopsis: r[P2]=root iDb=P1 flags=P3 */ #define OP_SqlExec 140 #define OP_ParseSchema 141 #define OP_LoadAnalysis 142 #define OP_DropTable 143 #define OP_DropIndex 144 #define OP_DropTrigger 145 #define OP_IntegrityCk 146 #define OP_RowSetAdd 147 /* synopsis: rowset(P1)=r[P2] */ #define OP_Param 148 #define OP_FkCounter 149 /* synopsis: fkctr[P1]+=P2 */ #define OP_Real 150 /* same as TK_FLOAT, synopsis: r[P2]=P4 */ #define OP_MemMax 151 /* synopsis: r[P1]=max(r[P1],r[P2]) */ #define OP_OffsetLimit 152 /* synopsis: if r[P1]>0 then r[P2]=r[P1]+max(0,r[P3]) else r[P2]=(-1) */ #define OP_AggInverse 153 /* synopsis: accum=r[P3] inverse(r[P2@P5]) */ #define OP_AggStep 154 /* synopsis: accum=r[P3] step(r[P2@P5]) */ #define OP_AggStep1 155 /* synopsis: accum=r[P3] step(r[P2@P5]) */ #define OP_AggValue 156 /* synopsis: r[P3]=value N=P2 */ #define OP_AggFinal 157 /* synopsis: accum=r[P1] N=P2 */ #define OP_Expire 158 #define OP_CursorLock 159 #define OP_CursorUnlock 160 #define OP_TableLock 161 /* synopsis: iDb=P1 root=P2 write=P3 */ #define OP_VBegin 162 #define OP_VCreate 163 #define OP_VDestroy 164 #define OP_VOpen 165 #define OP_VColumn 166 /* synopsis: r[P3]=vcolumn(P2) */ #define OP_VRename 167 #define OP_Pagecount 168 #define OP_MaxPgcnt 169 #define OP_Trace 170 #define OP_CursorHint 171 #define OP_ReleaseReg 172 /* synopsis: release r[P1@P2] mask P3 */ #define OP_Noop 173 #define OP_Explain 174 #define OP_Abortable 175 /* Properties such as "out2" or "jump" that are specified in ** comments following the "case" for each opcode in the vdbe.c ** are encoded into bitvectors as follows: */ #define OPFLG_JUMP 0x01 /* jump: P2 holds jmp target */ #define OPFLG_IN1 0x02 /* in1: P1 is an input */ #define OPFLG_IN2 0x04 /* in2: P2 is an input */ #define OPFLG_IN3 0x08 /* in3: P3 is an input */ #define OPFLG_OUT2 0x10 /* out2: P2 is an output */ #define OPFLG_OUT3 0x20 /* out3: P3 is an output */ #define OPFLG_INITIALIZER {\ /* 0 */ 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x10,\ /* 8 */ 0x00, 0x01, 0x00, 0x01, 0x01, 0x01, 0x03, 0x03,\ /* 16 */ 0x01, 0x01, 0x03, 0x12, 0x03, 0x01, 0x09, 0x09,\ /* 24 */ 0x09, 0x09, 0x01, 0x09, 0x09, 0x09, 0x09, 0x09,\ /* 32 */ 0x09, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,\ /* 40 */ 0x01, 0x01, 0x23, 0x26, 0x26, 0x0b, 0x01, 0x01,\ /* 48 */ 0x03, 0x03, 0x03, 0x03, 0x0b, 0x0b, 0x0b, 0x0b,\ /* 56 */ 0x0b, 0x0b, 0x01, 0x03, 0x01, 0x01, 0x01, 0x00,\ /* 64 */ 0x00, 0x02, 0x02, 0x08, 0x00, 0x10, 0x10, 0x10,\ /* 72 */ 0x10, 0x00, 0x10, 0x10, 0x00, 0x00, 0x10, 0x10,\ /* 80 */ 0x00, 0x00, 0x02, 0x02, 0x02, 0x00, 0x00, 0x12,\ /* 88 */ 0x20, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00,\ /* 96 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x26, 0x26,\ /* 104 */ 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x00,\ /* 112 */ 0x12, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,\ /* 120 */ 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10,\ /* 128 */ 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x10, 0x00,\ /* 136 */ 0x10, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00,\ /* 144 */ 0x00, 0x00, 0x00, 0x06, 0x10, 0x00, 0x10, 0x04,\ /* 152 */ 0x1a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\ /* 160 */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\ /* 168 */ 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\ } /* The sqlite3P2Values() routine is able to run faster if it knows ** the value of the largest JUMP opcode. The smaller the maximum ** JUMP opcode the better, so the mkopcodeh.tcl script that ** generated this include file strives to group all JUMP opcodes ** together near the beginning of the list. */ #define SQLITE_MX_JUMP_OPCODE 62 /* Maximum JUMP opcode */ /************** End of opcodes.h *********************************************/ /************** Continuing where we left off in vdbe.h ***********************/ /* ** Additional non-public SQLITE_PREPARE_* flags */ #define SQLITE_PREPARE_SAVESQL 0x80 /* Preserve SQL text */ #define SQLITE_PREPARE_MASK 0x0f /* Mask of public flags */ /* ** Prototypes for the VDBE interface. See comments on the implementation ** for a description of what each of these routines does. */ SQLITE_PRIVATE Vdbe *sqlite3VdbeCreate(Parse*); SQLITE_PRIVATE Parse *sqlite3VdbeParser(Vdbe*); SQLITE_PRIVATE int sqlite3VdbeAddOp0(Vdbe*,int); SQLITE_PRIVATE int sqlite3VdbeAddOp1(Vdbe*,int,int); SQLITE_PRIVATE int sqlite3VdbeAddOp2(Vdbe*,int,int,int); SQLITE_PRIVATE int sqlite3VdbeGoto(Vdbe*,int); SQLITE_PRIVATE int sqlite3VdbeLoadString(Vdbe*,int,const char*); SQLITE_PRIVATE void sqlite3VdbeMultiLoad(Vdbe*,int,const char*,...); SQLITE_PRIVATE int sqlite3VdbeAddOp3(Vdbe*,int,int,int,int); SQLITE_PRIVATE int sqlite3VdbeAddOp4(Vdbe*,int,int,int,int,const char *zP4,int); SQLITE_PRIVATE int sqlite3VdbeAddOp4Dup8(Vdbe*,int,int,int,int,const u8*,int); SQLITE_PRIVATE int sqlite3VdbeAddOp4Int(Vdbe*,int,int,int,int,int); SQLITE_PRIVATE int sqlite3VdbeAddFunctionCall(Parse*,int,int,int,int,const FuncDef*,int); SQLITE_PRIVATE void sqlite3VdbeEndCoroutine(Vdbe*,int); #if defined(SQLITE_DEBUG) && !defined(SQLITE_TEST_REALLOC_STRESS) SQLITE_PRIVATE void sqlite3VdbeVerifyNoMallocRequired(Vdbe *p, int N); SQLITE_PRIVATE void sqlite3VdbeVerifyNoResultRow(Vdbe *p); #else # define sqlite3VdbeVerifyNoMallocRequired(A,B) # define sqlite3VdbeVerifyNoResultRow(A) #endif #if defined(SQLITE_DEBUG) SQLITE_PRIVATE void sqlite3VdbeVerifyAbortable(Vdbe *p, int); #else # define sqlite3VdbeVerifyAbortable(A,B) #endif SQLITE_PRIVATE VdbeOp *sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp,int iLineno); #ifndef SQLITE_OMIT_EXPLAIN SQLITE_PRIVATE void sqlite3VdbeExplain(Parse*,u8,const char*,...); SQLITE_PRIVATE void sqlite3VdbeExplainPop(Parse*); SQLITE_PRIVATE int sqlite3VdbeExplainParent(Parse*); # define ExplainQueryPlan(P) sqlite3VdbeExplain P # define ExplainQueryPlanPop(P) sqlite3VdbeExplainPop(P) # define ExplainQueryPlanParent(P) sqlite3VdbeExplainParent(P) #else # define ExplainQueryPlan(P) # define ExplainQueryPlanPop(P) # define ExplainQueryPlanParent(P) 0 # define sqlite3ExplainBreakpoint(A,B) /*no-op*/ #endif #if defined(SQLITE_DEBUG) && !defined(SQLITE_OMIT_EXPLAIN) SQLITE_PRIVATE void sqlite3ExplainBreakpoint(const char*,const char*); #else # define sqlite3ExplainBreakpoint(A,B) /*no-op*/ #endif SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe*,int,char*); SQLITE_PRIVATE void sqlite3VdbeChangeOpcode(Vdbe*, int addr, u8); SQLITE_PRIVATE void sqlite3VdbeChangeP1(Vdbe*, int addr, int P1); SQLITE_PRIVATE void sqlite3VdbeChangeP2(Vdbe*, int addr, int P2); SQLITE_PRIVATE void sqlite3VdbeChangeP3(Vdbe*, int addr, int P3); SQLITE_PRIVATE void sqlite3VdbeChangeP5(Vdbe*, u16 P5); SQLITE_PRIVATE void sqlite3VdbeJumpHere(Vdbe*, int addr); SQLITE_PRIVATE void sqlite3VdbeJumpHereOrPopInst(Vdbe*, int addr); SQLITE_PRIVATE int sqlite3VdbeChangeToNoop(Vdbe*, int addr); SQLITE_PRIVATE int sqlite3VdbeDeletePriorOpcode(Vdbe*, u8 op); #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3VdbeReleaseRegisters(Parse*,int addr, int n, u32 mask, int); #else # define sqlite3VdbeReleaseRegisters(P,A,N,M,F) #endif SQLITE_PRIVATE void sqlite3VdbeChangeP4(Vdbe*, int addr, const char *zP4, int N); SQLITE_PRIVATE void sqlite3VdbeAppendP4(Vdbe*, void *pP4, int p4type); SQLITE_PRIVATE void sqlite3VdbeSetP4KeyInfo(Parse*, Index*); SQLITE_PRIVATE void sqlite3VdbeUsesBtree(Vdbe*, int); SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe*, int); SQLITE_PRIVATE int sqlite3VdbeMakeLabel(Parse*); SQLITE_PRIVATE void sqlite3VdbeRunOnlyOnce(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeReusable(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeDelete(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeClearObject(sqlite3*,Vdbe*); SQLITE_PRIVATE void sqlite3VdbeMakeReady(Vdbe*,Parse*); SQLITE_PRIVATE int sqlite3VdbeFinalize(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeResolveLabel(Vdbe*, int); SQLITE_PRIVATE int sqlite3VdbeCurrentAddr(Vdbe*); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3VdbeAssertMayAbort(Vdbe *, int); #endif SQLITE_PRIVATE void sqlite3VdbeResetStepResult(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeRewind(Vdbe*); SQLITE_PRIVATE int sqlite3VdbeReset(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeSetNumCols(Vdbe*,int); SQLITE_PRIVATE int sqlite3VdbeSetColName(Vdbe*, int, int, const char *, void(*)(void*)); SQLITE_PRIVATE void sqlite3VdbeCountChanges(Vdbe*); SQLITE_PRIVATE sqlite3 *sqlite3VdbeDb(Vdbe*); SQLITE_PRIVATE u8 sqlite3VdbePrepareFlags(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeSetSql(Vdbe*, const char *z, int n, u8); #ifdef SQLITE_ENABLE_NORMALIZE SQLITE_PRIVATE void sqlite3VdbeAddDblquoteStr(sqlite3*,Vdbe*,const char*); SQLITE_PRIVATE int sqlite3VdbeUsesDoubleQuotedString(Vdbe*,const char*); #endif SQLITE_PRIVATE void sqlite3VdbeSwap(Vdbe*,Vdbe*); SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe*, int*, int*); SQLITE_PRIVATE sqlite3_value *sqlite3VdbeGetBoundValue(Vdbe*, int, u8); SQLITE_PRIVATE void sqlite3VdbeSetVarmask(Vdbe*, int); #ifndef SQLITE_OMIT_TRACE SQLITE_PRIVATE char *sqlite3VdbeExpandSql(Vdbe*, const char*); #endif SQLITE_PRIVATE int sqlite3MemCompare(const Mem*, const Mem*, const CollSeq*); SQLITE_PRIVATE int sqlite3BlobCompare(const Mem*, const Mem*); SQLITE_PRIVATE void sqlite3VdbeRecordUnpack(KeyInfo*,int,const void*,UnpackedRecord*); SQLITE_PRIVATE int sqlite3VdbeRecordCompare(int,const void*,UnpackedRecord*); SQLITE_PRIVATE int sqlite3VdbeRecordCompareWithSkip(int, const void *, UnpackedRecord *, int); SQLITE_PRIVATE UnpackedRecord *sqlite3VdbeAllocUnpackedRecord(KeyInfo*); typedef int (*RecordCompare)(int,const void*,UnpackedRecord*); SQLITE_PRIVATE RecordCompare sqlite3VdbeFindCompare(UnpackedRecord*); SQLITE_PRIVATE void sqlite3VdbeLinkSubProgram(Vdbe *, SubProgram *); SQLITE_PRIVATE int sqlite3VdbeHasSubProgram(Vdbe*); SQLITE_PRIVATE int sqlite3NotPureFunc(sqlite3_context*); #ifdef SQLITE_ENABLE_BYTECODE_VTAB SQLITE_PRIVATE int sqlite3VdbeBytecodeVtabInit(sqlite3*); #endif /* Use SQLITE_ENABLE_COMMENTS to enable generation of extra comments on ** each VDBE opcode. ** ** Use the SQLITE_ENABLE_MODULE_COMMENTS macro to see some extra no-op ** comments in VDBE programs that show key decision points in the code ** generator. */ #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS SQLITE_PRIVATE void sqlite3VdbeComment(Vdbe*, const char*, ...); # define VdbeComment(X) sqlite3VdbeComment X SQLITE_PRIVATE void sqlite3VdbeNoopComment(Vdbe*, const char*, ...); # define VdbeNoopComment(X) sqlite3VdbeNoopComment X # ifdef SQLITE_ENABLE_MODULE_COMMENTS # define VdbeModuleComment(X) sqlite3VdbeNoopComment X # else # define VdbeModuleComment(X) # endif #else # define VdbeComment(X) # define VdbeNoopComment(X) # define VdbeModuleComment(X) #endif /* ** The VdbeCoverage macros are used to set a coverage testing point ** for VDBE branch instructions. The coverage testing points are line ** numbers in the sqlite3.c source file. VDBE branch coverage testing ** only works with an amalagmation build. That's ok since a VDBE branch ** coverage build designed for testing the test suite only. No application ** should ever ship with VDBE branch coverage measuring turned on. ** ** VdbeCoverage(v) // Mark the previously coded instruction ** // as a branch ** ** VdbeCoverageIf(v, conditional) // Mark previous if conditional true ** ** VdbeCoverageAlwaysTaken(v) // Previous branch is always taken ** ** VdbeCoverageNeverTaken(v) // Previous branch is never taken ** ** VdbeCoverageNeverNull(v) // Previous three-way branch is only ** // taken on the first two ways. The ** // NULL option is not possible ** ** VdbeCoverageEqNe(v) // Previous OP_Jump is only interested ** // in distingishing equal and not-equal. ** ** Every VDBE branch operation must be tagged with one of the macros above. ** If not, then when "make test" is run with -DSQLITE_VDBE_COVERAGE and ** -DSQLITE_DEBUG then an ALWAYS() will fail in the vdbeTakeBranch() ** routine in vdbe.c, alerting the developer to the missed tag. ** ** During testing, the test application will invoke ** sqlite3_test_control(SQLITE_TESTCTRL_VDBE_COVERAGE,...) to set a callback ** routine that is invoked as each bytecode branch is taken. The callback ** contains the sqlite3.c source line number ov the VdbeCoverage macro and ** flags to indicate whether or not the branch was taken. The test application ** is responsible for keeping track of this and reporting byte-code branches ** that are never taken. ** ** See the VdbeBranchTaken() macro and vdbeTakeBranch() function in the ** vdbe.c source file for additional information. */ #ifdef SQLITE_VDBE_COVERAGE SQLITE_PRIVATE void sqlite3VdbeSetLineNumber(Vdbe*,int); # define VdbeCoverage(v) sqlite3VdbeSetLineNumber(v,__LINE__) # define VdbeCoverageIf(v,x) if(x)sqlite3VdbeSetLineNumber(v,__LINE__) # define VdbeCoverageAlwaysTaken(v) \ sqlite3VdbeSetLineNumber(v,__LINE__|0x5000000); # define VdbeCoverageNeverTaken(v) \ sqlite3VdbeSetLineNumber(v,__LINE__|0x6000000); # define VdbeCoverageNeverNull(v) \ sqlite3VdbeSetLineNumber(v,__LINE__|0x4000000); # define VdbeCoverageNeverNullIf(v,x) \ if(x)sqlite3VdbeSetLineNumber(v,__LINE__|0x4000000); # define VdbeCoverageEqNe(v) \ sqlite3VdbeSetLineNumber(v,__LINE__|0x8000000); # define VDBE_OFFSET_LINENO(x) (__LINE__+x) #else # define VdbeCoverage(v) # define VdbeCoverageIf(v,x) # define VdbeCoverageAlwaysTaken(v) # define VdbeCoverageNeverTaken(v) # define VdbeCoverageNeverNull(v) # define VdbeCoverageNeverNullIf(v,x) # define VdbeCoverageEqNe(v) # define VDBE_OFFSET_LINENO(x) 0 #endif #ifdef SQLITE_ENABLE_STMT_SCANSTATUS SQLITE_PRIVATE void sqlite3VdbeScanStatus(Vdbe*, int, int, int, LogEst, const char*); #else # define sqlite3VdbeScanStatus(a,b,c,d,e) #endif #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) SQLITE_PRIVATE void sqlite3VdbePrintOp(FILE*, int, VdbeOp*); #endif #endif /* SQLITE_VDBE_H */ /************** End of vdbe.h ************************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include pcache.h in the middle of sqliteInt.h ****************/ /************** Begin file pcache.h ******************************************/ /* ** 2008 August 05 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface that the sqlite page cache ** subsystem. */ #ifndef _PCACHE_H_ typedef struct PgHdr PgHdr; typedef struct PCache PCache; /* ** Every page in the cache is controlled by an instance of the following ** structure. */ struct PgHdr { sqlite3_pcache_page *pPage; /* Pcache object page handle */ void *pData; /* Page data */ void *pExtra; /* Extra content */ PCache *pCache; /* PRIVATE: Cache that owns this page */ PgHdr *pDirty; /* Transient list of dirty sorted by pgno */ Pager *pPager; /* The pager this page is part of */ Pgno pgno; /* Page number for this page */ #ifdef SQLITE_CHECK_PAGES u32 pageHash; /* Hash of page content */ #endif u16 flags; /* PGHDR flags defined below */ /********************************************************************** ** Elements above, except pCache, are public. All that follow are ** private to pcache.c and should not be accessed by other modules. ** pCache is grouped with the public elements for efficiency. */ i16 nRef; /* Number of users of this page */ PgHdr *pDirtyNext; /* Next element in list of dirty pages */ PgHdr *pDirtyPrev; /* Previous element in list of dirty pages */ /* NB: pDirtyNext and pDirtyPrev are undefined if the ** PgHdr object is not dirty */ }; /* Bit values for PgHdr.flags */ #define PGHDR_CLEAN 0x001 /* Page not on the PCache.pDirty list */ #define PGHDR_DIRTY 0x002 /* Page is on the PCache.pDirty list */ #define PGHDR_WRITEABLE 0x004 /* Journaled and ready to modify */ #define PGHDR_NEED_SYNC 0x008 /* Fsync the rollback journal before ** writing this page to the database */ #define PGHDR_DONT_WRITE 0x010 /* Do not write content to disk */ #define PGHDR_MMAP 0x020 /* This is an mmap page object */ #define PGHDR_WAL_APPEND 0x040 /* Appended to wal file */ /* Initialize and shutdown the page cache subsystem */ SQLITE_PRIVATE int sqlite3PcacheInitialize(void); SQLITE_PRIVATE void sqlite3PcacheShutdown(void); /* Page cache buffer management: ** These routines implement SQLITE_CONFIG_PAGECACHE. */ SQLITE_PRIVATE void sqlite3PCacheBufferSetup(void *, int sz, int n); /* Create a new pager cache. ** Under memory stress, invoke xStress to try to make pages clean. ** Only clean and unpinned pages can be reclaimed. */ SQLITE_PRIVATE int sqlite3PcacheOpen( int szPage, /* Size of every page */ int szExtra, /* Extra space associated with each page */ int bPurgeable, /* True if pages are on backing store */ int (*xStress)(void*, PgHdr*), /* Call to try to make pages clean */ void *pStress, /* Argument to xStress */ PCache *pToInit /* Preallocated space for the PCache */ ); /* Modify the page-size after the cache has been created. */ SQLITE_PRIVATE int sqlite3PcacheSetPageSize(PCache *, int); /* Return the size in bytes of a PCache object. Used to preallocate ** storage space. */ SQLITE_PRIVATE int sqlite3PcacheSize(void); /* One release per successful fetch. Page is pinned until released. ** Reference counted. */ SQLITE_PRIVATE sqlite3_pcache_page *sqlite3PcacheFetch(PCache*, Pgno, int createFlag); SQLITE_PRIVATE int sqlite3PcacheFetchStress(PCache*, Pgno, sqlite3_pcache_page**); SQLITE_PRIVATE PgHdr *sqlite3PcacheFetchFinish(PCache*, Pgno, sqlite3_pcache_page *pPage); SQLITE_PRIVATE void sqlite3PcacheRelease(PgHdr*); SQLITE_PRIVATE void sqlite3PcacheDrop(PgHdr*); /* Remove page from cache */ SQLITE_PRIVATE void sqlite3PcacheMakeDirty(PgHdr*); /* Make sure page is marked dirty */ SQLITE_PRIVATE void sqlite3PcacheMakeClean(PgHdr*); /* Mark a single page as clean */ SQLITE_PRIVATE void sqlite3PcacheCleanAll(PCache*); /* Mark all dirty list pages as clean */ SQLITE_PRIVATE void sqlite3PcacheClearWritable(PCache*); /* Change a page number. Used by incr-vacuum. */ SQLITE_PRIVATE void sqlite3PcacheMove(PgHdr*, Pgno); /* Remove all pages with pgno>x. Reset the cache if x==0 */ SQLITE_PRIVATE void sqlite3PcacheTruncate(PCache*, Pgno x); /* Get a list of all dirty pages in the cache, sorted by page number */ SQLITE_PRIVATE PgHdr *sqlite3PcacheDirtyList(PCache*); /* Reset and close the cache object */ SQLITE_PRIVATE void sqlite3PcacheClose(PCache*); /* Clear flags from pages of the page cache */ SQLITE_PRIVATE void sqlite3PcacheClearSyncFlags(PCache *); /* Discard the contents of the cache */ SQLITE_PRIVATE void sqlite3PcacheClear(PCache*); /* Return the total number of outstanding page references */ SQLITE_PRIVATE int sqlite3PcacheRefCount(PCache*); /* Increment the reference count of an existing page */ SQLITE_PRIVATE void sqlite3PcacheRef(PgHdr*); SQLITE_PRIVATE int sqlite3PcachePageRefcount(PgHdr*); /* Return the total number of pages stored in the cache */ SQLITE_PRIVATE int sqlite3PcachePagecount(PCache*); #if defined(SQLITE_CHECK_PAGES) || defined(SQLITE_DEBUG) /* Iterate through all dirty pages currently stored in the cache. This ** interface is only available if SQLITE_CHECK_PAGES is defined when the ** library is built. */ SQLITE_PRIVATE void sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *)); #endif #if defined(SQLITE_DEBUG) /* Check invariants on a PgHdr object */ SQLITE_PRIVATE int sqlite3PcachePageSanity(PgHdr*); #endif /* Set and get the suggested cache-size for the specified pager-cache. ** ** If no global maximum is configured, then the system attempts to limit ** the total number of pages cached by purgeable pager-caches to the sum ** of the suggested cache-sizes. */ SQLITE_PRIVATE void sqlite3PcacheSetCachesize(PCache *, int); #ifdef SQLITE_TEST SQLITE_PRIVATE int sqlite3PcacheGetCachesize(PCache *); #endif /* Set or get the suggested spill-size for the specified pager-cache. ** ** The spill-size is the minimum number of pages in cache before the cache ** will attempt to spill dirty pages by calling xStress. */ SQLITE_PRIVATE int sqlite3PcacheSetSpillsize(PCache *, int); /* Free up as much memory as possible from the page cache */ SQLITE_PRIVATE void sqlite3PcacheShrink(PCache*); #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT /* Try to return memory used by the pcache module to the main memory heap */ SQLITE_PRIVATE int sqlite3PcacheReleaseMemory(int); #endif #ifdef SQLITE_TEST SQLITE_PRIVATE void sqlite3PcacheStats(int*,int*,int*,int*); #endif SQLITE_PRIVATE void sqlite3PCacheSetDefault(void); /* Return the header size */ SQLITE_PRIVATE int sqlite3HeaderSizePcache(void); SQLITE_PRIVATE int sqlite3HeaderSizePcache1(void); /* Number of dirty pages as a percentage of the configured cache size */ SQLITE_PRIVATE int sqlite3PCachePercentDirty(PCache*); #ifdef SQLITE_DIRECT_OVERFLOW_READ SQLITE_PRIVATE int sqlite3PCacheIsDirty(PCache *pCache); #endif #endif /* _PCACHE_H_ */ /************** End of pcache.h **********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include os.h in the middle of sqliteInt.h ********************/ /************** Begin file os.h **********************************************/ /* ** 2001 September 16 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This header file (together with is companion C source-code file ** "os.c") attempt to abstract the underlying operating system so that ** the SQLite library will work on both POSIX and windows systems. ** ** This header file is #include-ed by sqliteInt.h and thus ends up ** being included by every source file. */ #ifndef _SQLITE_OS_H_ #define _SQLITE_OS_H_ /* ** Attempt to automatically detect the operating system and setup the ** necessary pre-processor macros for it. */ /************** Include os_setup.h in the middle of os.h *********************/ /************** Begin file os_setup.h ****************************************/ /* ** 2013 November 25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains pre-processor directives related to operating system ** detection and/or setup. */ #ifndef SQLITE_OS_SETUP_H #define SQLITE_OS_SETUP_H /* ** Figure out if we are dealing with Unix, Windows, or some other operating ** system. ** ** After the following block of preprocess macros, all of SQLITE_OS_UNIX, ** SQLITE_OS_WIN, and SQLITE_OS_OTHER will defined to either 1 or 0. One of ** the three will be 1. The other two will be 0. */ #if defined(SQLITE_OS_OTHER) # if SQLITE_OS_OTHER==1 # undef SQLITE_OS_UNIX # define SQLITE_OS_UNIX 0 # undef SQLITE_OS_WIN # define SQLITE_OS_WIN 0 # else # undef SQLITE_OS_OTHER # endif #endif #if !defined(SQLITE_OS_UNIX) && !defined(SQLITE_OS_OTHER) # define SQLITE_OS_OTHER 0 # ifndef SQLITE_OS_WIN # if defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__) || \ defined(__MINGW32__) || defined(__BORLANDC__) # define SQLITE_OS_WIN 1 # define SQLITE_OS_UNIX 0 # else # define SQLITE_OS_WIN 0 # define SQLITE_OS_UNIX 1 # endif # else # define SQLITE_OS_UNIX 0 # endif #else # ifndef SQLITE_OS_WIN # define SQLITE_OS_WIN 0 # endif #endif #endif /* SQLITE_OS_SETUP_H */ /************** End of os_setup.h ********************************************/ /************** Continuing where we left off in os.h *************************/ /* If the SET_FULLSYNC macro is not defined above, then make it ** a no-op */ #ifndef SET_FULLSYNC # define SET_FULLSYNC(x,y) #endif /* ** The default size of a disk sector */ #ifndef SQLITE_DEFAULT_SECTOR_SIZE # define SQLITE_DEFAULT_SECTOR_SIZE 4096 #endif /* ** Temporary files are named starting with this prefix followed by 16 random ** alphanumeric characters, and no file extension. They are stored in the ** OS's standard temporary file directory, and are deleted prior to exit. ** If sqlite is being embedded in another program, you may wish to change the ** prefix to reflect your program's name, so that if your program exits ** prematurely, old temporary files can be easily identified. This can be done ** using -DSQLITE_TEMP_FILE_PREFIX=myprefix_ on the compiler command line. ** ** 2006-10-31: The default prefix used to be "sqlite_". But then ** Mcafee started using SQLite in their anti-virus product and it ** started putting files with the "sqlite" name in the c:/temp folder. ** This annoyed many windows users. Those users would then do a ** Google search for "sqlite", find the telephone numbers of the ** developers and call to wake them up at night and complain. ** For this reason, the default name prefix is changed to be "sqlite" ** spelled backwards. So the temp files are still identified, but ** anybody smart enough to figure out the code is also likely smart ** enough to know that calling the developer will not help get rid ** of the file. */ #ifndef SQLITE_TEMP_FILE_PREFIX # define SQLITE_TEMP_FILE_PREFIX "etilqs_" #endif /* ** The following values may be passed as the second argument to ** sqlite3OsLock(). The various locks exhibit the following semantics: ** ** SHARED: Any number of processes may hold a SHARED lock simultaneously. ** RESERVED: A single process may hold a RESERVED lock on a file at ** any time. Other processes may hold and obtain new SHARED locks. ** PENDING: A single process may hold a PENDING lock on a file at ** any one time. Existing SHARED locks may persist, but no new ** SHARED locks may be obtained by other processes. ** EXCLUSIVE: An EXCLUSIVE lock precludes all other locks. ** ** PENDING_LOCK may not be passed directly to sqlite3OsLock(). Instead, a ** process that requests an EXCLUSIVE lock may actually obtain a PENDING ** lock. This can be upgraded to an EXCLUSIVE lock by a subsequent call to ** sqlite3OsLock(). */ #define NO_LOCK 0 #define SHARED_LOCK 1 #define RESERVED_LOCK 2 #define PENDING_LOCK 3 #define EXCLUSIVE_LOCK 4 /* ** File Locking Notes: (Mostly about windows but also some info for Unix) ** ** We cannot use LockFileEx() or UnlockFileEx() on Win95/98/ME because ** those functions are not available. So we use only LockFile() and ** UnlockFile(). ** ** LockFile() prevents not just writing but also reading by other processes. ** A SHARED_LOCK is obtained by locking a single randomly-chosen ** byte out of a specific range of bytes. The lock byte is obtained at ** random so two separate readers can probably access the file at the ** same time, unless they are unlucky and choose the same lock byte. ** An EXCLUSIVE_LOCK is obtained by locking all bytes in the range. ** There can only be one writer. A RESERVED_LOCK is obtained by locking ** a single byte of the file that is designated as the reserved lock byte. ** A PENDING_LOCK is obtained by locking a designated byte different from ** the RESERVED_LOCK byte. ** ** On WinNT/2K/XP systems, LockFileEx() and UnlockFileEx() are available, ** which means we can use reader/writer locks. When reader/writer locks ** are used, the lock is placed on the same range of bytes that is used ** for probabilistic locking in Win95/98/ME. Hence, the locking scheme ** will support two or more Win95 readers or two or more WinNT readers. ** But a single Win95 reader will lock out all WinNT readers and a single ** WinNT reader will lock out all other Win95 readers. ** ** The following #defines specify the range of bytes used for locking. ** SHARED_SIZE is the number of bytes available in the pool from which ** a random byte is selected for a shared lock. The pool of bytes for ** shared locks begins at SHARED_FIRST. ** ** The same locking strategy and ** byte ranges are used for Unix. This leaves open the possibility of having ** clients on win95, winNT, and unix all talking to the same shared file ** and all locking correctly. To do so would require that samba (or whatever ** tool is being used for file sharing) implements locks correctly between ** windows and unix. I'm guessing that isn't likely to happen, but by ** using the same locking range we are at least open to the possibility. ** ** Locking in windows is manditory. For this reason, we cannot store ** actual data in the bytes used for locking. The pager never allocates ** the pages involved in locking therefore. SHARED_SIZE is selected so ** that all locks will fit on a single page even at the minimum page size. ** PENDING_BYTE defines the beginning of the locks. By default PENDING_BYTE ** is set high so that we don't have to allocate an unused page except ** for very large databases. But one should test the page skipping logic ** by setting PENDING_BYTE low and running the entire regression suite. ** ** Changing the value of PENDING_BYTE results in a subtly incompatible ** file format. Depending on how it is changed, you might not notice ** the incompatibility right away, even running a full regression test. ** The default location of PENDING_BYTE is the first byte past the ** 1GB boundary. ** */ #ifdef SQLITE_OMIT_WSD # define PENDING_BYTE (0x40000000) #else # define PENDING_BYTE sqlite3PendingByte #endif #define RESERVED_BYTE (PENDING_BYTE+1) #define SHARED_FIRST (PENDING_BYTE+2) #define SHARED_SIZE 510 /* ** Wrapper around OS specific sqlite3_os_init() function. */ SQLITE_PRIVATE int sqlite3OsInit(void); /* ** Functions for accessing sqlite3_file methods */ SQLITE_PRIVATE void sqlite3OsClose(sqlite3_file*); SQLITE_PRIVATE int sqlite3OsRead(sqlite3_file*, void*, int amt, i64 offset); SQLITE_PRIVATE int sqlite3OsWrite(sqlite3_file*, const void*, int amt, i64 offset); SQLITE_PRIVATE int sqlite3OsTruncate(sqlite3_file*, i64 size); SQLITE_PRIVATE int sqlite3OsSync(sqlite3_file*, int); SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file*, i64 *pSize); SQLITE_PRIVATE int sqlite3OsLock(sqlite3_file*, int); SQLITE_PRIVATE int sqlite3OsUnlock(sqlite3_file*, int); SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut); SQLITE_PRIVATE int sqlite3OsFileControl(sqlite3_file*,int,void*); SQLITE_PRIVATE void sqlite3OsFileControlHint(sqlite3_file*,int,void*); #define SQLITE_FCNTL_DB_UNCHANGED 0xca093fa0 SQLITE_PRIVATE int sqlite3OsSectorSize(sqlite3_file *id); SQLITE_PRIVATE int sqlite3OsDeviceCharacteristics(sqlite3_file *id); #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3OsShmMap(sqlite3_file *,int,int,int,void volatile **); SQLITE_PRIVATE int sqlite3OsShmLock(sqlite3_file *id, int, int, int); SQLITE_PRIVATE void sqlite3OsShmBarrier(sqlite3_file *id); SQLITE_PRIVATE int sqlite3OsShmUnmap(sqlite3_file *id, int); #endif /* SQLITE_OMIT_WAL */ SQLITE_PRIVATE int sqlite3OsFetch(sqlite3_file *id, i64, int, void **); SQLITE_PRIVATE int sqlite3OsUnfetch(sqlite3_file *, i64, void *); /* ** Functions for accessing sqlite3_vfs methods */ SQLITE_PRIVATE int sqlite3OsOpen(sqlite3_vfs *, const char *, sqlite3_file*, int, int *); SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *, const char *, int); SQLITE_PRIVATE int sqlite3OsAccess(sqlite3_vfs *, const char *, int, int *pResOut); SQLITE_PRIVATE int sqlite3OsFullPathname(sqlite3_vfs *, const char *, int, char *); #ifndef SQLITE_OMIT_LOAD_EXTENSION SQLITE_PRIVATE void *sqlite3OsDlOpen(sqlite3_vfs *, const char *); SQLITE_PRIVATE void sqlite3OsDlError(sqlite3_vfs *, int, char *); SQLITE_PRIVATE void (*sqlite3OsDlSym(sqlite3_vfs *, void *, const char *))(void); SQLITE_PRIVATE void sqlite3OsDlClose(sqlite3_vfs *, void *); #endif /* SQLITE_OMIT_LOAD_EXTENSION */ SQLITE_PRIVATE int sqlite3OsRandomness(sqlite3_vfs *, int, char *); SQLITE_PRIVATE int sqlite3OsSleep(sqlite3_vfs *, int); SQLITE_PRIVATE int sqlite3OsGetLastError(sqlite3_vfs*); SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *, sqlite3_int64*); /* ** Convenience functions for opening and closing files using ** sqlite3_malloc() to obtain space for the file-handle structure. */ SQLITE_PRIVATE int sqlite3OsOpenMalloc(sqlite3_vfs *, const char *, sqlite3_file **, int,int*); SQLITE_PRIVATE void sqlite3OsCloseFree(sqlite3_file *); #endif /* _SQLITE_OS_H_ */ /************** End of os.h **************************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /************** Include mutex.h in the middle of sqliteInt.h *****************/ /************** Begin file mutex.h *******************************************/ /* ** 2007 August 28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains the common header for all mutex implementations. ** The sqliteInt.h header #includes this file so that it is available ** to all source files. We break it out in an effort to keep the code ** better organized. ** ** NOTE: source files should *not* #include this header file directly. ** Source files should #include the sqliteInt.h file and let that file ** include this one indirectly. */ /* ** Figure out what version of the code to use. The choices are ** ** SQLITE_MUTEX_OMIT No mutex logic. Not even stubs. The ** mutexes implementation cannot be overridden ** at start-time. ** ** SQLITE_MUTEX_NOOP For single-threaded applications. No ** mutual exclusion is provided. But this ** implementation can be overridden at ** start-time. ** ** SQLITE_MUTEX_PTHREADS For multi-threaded applications on Unix. ** ** SQLITE_MUTEX_W32 For multi-threaded applications on Win32. */ #if !SQLITE_THREADSAFE # define SQLITE_MUTEX_OMIT #endif #if SQLITE_THREADSAFE && !defined(SQLITE_MUTEX_NOOP) # if SQLITE_OS_UNIX # define SQLITE_MUTEX_PTHREADS # elif SQLITE_OS_WIN # define SQLITE_MUTEX_W32 # else # define SQLITE_MUTEX_NOOP # endif #endif #ifdef SQLITE_MUTEX_OMIT /* ** If this is a no-op implementation, implement everything as macros. */ #define sqlite3_mutex_alloc(X) ((sqlite3_mutex*)8) #define sqlite3_mutex_free(X) #define sqlite3_mutex_enter(X) #define sqlite3_mutex_try(X) SQLITE_OK #define sqlite3_mutex_leave(X) #define sqlite3_mutex_held(X) ((void)(X),1) #define sqlite3_mutex_notheld(X) ((void)(X),1) #define sqlite3MutexAlloc(X) ((sqlite3_mutex*)8) #define sqlite3MutexInit() SQLITE_OK #define sqlite3MutexEnd() #define MUTEX_LOGIC(X) #else #define MUTEX_LOGIC(X) X SQLITE_API int sqlite3_mutex_held(sqlite3_mutex*); #endif /* defined(SQLITE_MUTEX_OMIT) */ /************** End of mutex.h ***********************************************/ /************** Continuing where we left off in sqliteInt.h ******************/ /* The SQLITE_EXTRA_DURABLE compile-time option used to set the default ** synchronous setting to EXTRA. It is no longer supported. */ #ifdef SQLITE_EXTRA_DURABLE # warning Use SQLITE_DEFAULT_SYNCHRONOUS=3 instead of SQLITE_EXTRA_DURABLE # define SQLITE_DEFAULT_SYNCHRONOUS 3 #endif /* ** Default synchronous levels. ** ** Note that (for historcal reasons) the PAGER_SYNCHRONOUS_* macros differ ** from the SQLITE_DEFAULT_SYNCHRONOUS value by 1. ** ** PAGER_SYNCHRONOUS DEFAULT_SYNCHRONOUS ** OFF 1 0 ** NORMAL 2 1 ** FULL 3 2 ** EXTRA 4 3 ** ** The "PRAGMA synchronous" statement also uses the zero-based numbers. ** In other words, the zero-based numbers are used for all external interfaces ** and the one-based values are used internally. */ #ifndef SQLITE_DEFAULT_SYNCHRONOUS # define SQLITE_DEFAULT_SYNCHRONOUS 2 #endif #ifndef SQLITE_DEFAULT_WAL_SYNCHRONOUS # define SQLITE_DEFAULT_WAL_SYNCHRONOUS SQLITE_DEFAULT_SYNCHRONOUS #endif /* ** Each database file to be accessed by the system is an instance ** of the following structure. There are normally two of these structures ** in the sqlite.aDb[] array. aDb[0] is the main database file and ** aDb[1] is the database file used to hold temporary tables. Additional ** databases may be attached. */ struct Db { char *zDbSName; /* Name of this database. (schema name, not filename) */ Btree *pBt; /* The B*Tree structure for this database file */ u8 safety_level; /* How aggressive at syncing data to disk */ u8 bSyncSet; /* True if "PRAGMA synchronous=N" has been run */ Schema *pSchema; /* Pointer to database schema (possibly shared) */ }; /* ** An instance of the following structure stores a database schema. ** ** Most Schema objects are associated with a Btree. The exception is ** the Schema for the TEMP databaes (sqlite3.aDb[1]) which is free-standing. ** In shared cache mode, a single Schema object can be shared by multiple ** Btrees that refer to the same underlying BtShared object. ** ** Schema objects are automatically deallocated when the last Btree that ** references them is destroyed. The TEMP Schema is manually freed by ** sqlite3_close(). * ** A thread must be holding a mutex on the corresponding Btree in order ** to access Schema content. This implies that the thread must also be ** holding a mutex on the sqlite3 connection pointer that owns the Btree. ** For a TEMP Schema, only the connection mutex is required. */ struct Schema { int schema_cookie; /* Database schema version number for this file */ int iGeneration; /* Generation counter. Incremented with each change */ Hash tblHash; /* All tables indexed by name */ Hash idxHash; /* All (named) indices indexed by name */ Hash trigHash; /* All triggers indexed by name */ Hash fkeyHash; /* All foreign keys by referenced table name */ Table *pSeqTab; /* The sqlite_sequence table used by AUTOINCREMENT */ u8 file_format; /* Schema format version for this file */ u8 enc; /* Text encoding used by this database */ u16 schemaFlags; /* Flags associated with this schema */ int cache_size; /* Number of pages to use in the cache */ }; /* ** These macros can be used to test, set, or clear bits in the ** Db.pSchema->flags field. */ #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P)) #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0) #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P) #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P) /* ** Allowed values for the DB.pSchema->flags field. ** ** The DB_SchemaLoaded flag is set after the database schema has been ** read into internal hash tables. ** ** DB_UnresetViews means that one or more views have column names that ** have been filled out. If the schema changes, these column names might ** changes and so the view will need to be reset. */ #define DB_SchemaLoaded 0x0001 /* The schema has been loaded */ #define DB_UnresetViews 0x0002 /* Some views have defined column names */ #define DB_ResetWanted 0x0008 /* Reset the schema when nSchemaLock==0 */ /* ** The number of different kinds of things that can be limited ** using the sqlite3_limit() interface. */ #define SQLITE_N_LIMIT (SQLITE_LIMIT_WORKER_THREADS+1) /* ** Lookaside malloc is a set of fixed-size buffers that can be used ** to satisfy small transient memory allocation requests for objects ** associated with a particular database connection. The use of ** lookaside malloc provides a significant performance enhancement ** (approx 10%) by avoiding numerous malloc/free requests while parsing ** SQL statements. ** ** The Lookaside structure holds configuration information about the ** lookaside malloc subsystem. Each available memory allocation in ** the lookaside subsystem is stored on a linked list of LookasideSlot ** objects. ** ** Lookaside allocations are only allowed for objects that are associated ** with a particular database connection. Hence, schema information cannot ** be stored in lookaside because in shared cache mode the schema information ** is shared by multiple database connections. Therefore, while parsing ** schema information, the Lookaside.bEnabled flag is cleared so that ** lookaside allocations are not used to construct the schema objects. ** ** New lookaside allocations are only allowed if bDisable==0. When ** bDisable is greater than zero, sz is set to zero which effectively ** disables lookaside without adding a new test for the bDisable flag ** in a performance-critical path. sz should be set by to szTrue whenever ** bDisable changes back to zero. ** ** Lookaside buffers are initially held on the pInit list. As they are ** used and freed, they are added back to the pFree list. New allocations ** come off of pFree first, then pInit as a fallback. This dual-list ** allows use to compute a high-water mark - the maximum number of allocations ** outstanding at any point in the past - by subtracting the number of ** allocations on the pInit list from the total number of allocations. ** ** Enhancement on 2019-12-12: Two-size-lookaside ** The default lookaside configuration is 100 slots of 1200 bytes each. ** The larger slot sizes are important for performance, but they waste ** a lot of space, as most lookaside allocations are less than 128 bytes. ** The two-size-lookaside enhancement breaks up the lookaside allocation ** into two pools: One of 128-byte slots and the other of the default size ** (1200-byte) slots. Allocations are filled from the small-pool first, ** failing over to the full-size pool if that does not work. Thus more ** lookaside slots are available while also using less memory. ** This enhancement can be omitted by compiling with ** SQLITE_OMIT_TWOSIZE_LOOKASIDE. */ struct Lookaside { u32 bDisable; /* Only operate the lookaside when zero */ u16 sz; /* Size of each buffer in bytes */ u16 szTrue; /* True value of sz, even if disabled */ u8 bMalloced; /* True if pStart obtained from sqlite3_malloc() */ u32 nSlot; /* Number of lookaside slots allocated */ u32 anStat[3]; /* 0: hits. 1: size misses. 2: full misses */ LookasideSlot *pInit; /* List of buffers not previously used */ LookasideSlot *pFree; /* List of available buffers */ #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE LookasideSlot *pSmallInit; /* List of small buffers not prediously used */ LookasideSlot *pSmallFree; /* List of available small buffers */ void *pMiddle; /* First byte past end of full-size buffers and ** the first byte of LOOKASIDE_SMALL buffers */ #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ void *pStart; /* First byte of available memory space */ void *pEnd; /* First byte past end of available space */ }; struct LookasideSlot { LookasideSlot *pNext; /* Next buffer in the list of free buffers */ }; #define DisableLookaside db->lookaside.bDisable++;db->lookaside.sz=0 #define EnableLookaside db->lookaside.bDisable--;\ db->lookaside.sz=db->lookaside.bDisable?0:db->lookaside.szTrue /* Size of the smaller allocations in two-size lookside */ #ifdef SQLITE_OMIT_TWOSIZE_LOOKASIDE # define LOOKASIDE_SMALL 0 #else # define LOOKASIDE_SMALL 128 #endif /* ** A hash table for built-in function definitions. (Application-defined ** functions use a regular table table from hash.h.) ** ** Hash each FuncDef structure into one of the FuncDefHash.a[] slots. ** Collisions are on the FuncDef.u.pHash chain. Use the SQLITE_FUNC_HASH() ** macro to compute a hash on the function name. */ #define SQLITE_FUNC_HASH_SZ 23 struct FuncDefHash { FuncDef *a[SQLITE_FUNC_HASH_SZ]; /* Hash table for functions */ }; #define SQLITE_FUNC_HASH(C,L) (((C)+(L))%SQLITE_FUNC_HASH_SZ) #ifdef SQLITE_USER_AUTHENTICATION /* ** Information held in the "sqlite3" database connection object and used ** to manage user authentication. */ typedef struct sqlite3_userauth sqlite3_userauth; struct sqlite3_userauth { u8 authLevel; /* Current authentication level */ int nAuthPW; /* Size of the zAuthPW in bytes */ char *zAuthPW; /* Password used to authenticate */ char *zAuthUser; /* User name used to authenticate */ }; /* Allowed values for sqlite3_userauth.authLevel */ #define UAUTH_Unknown 0 /* Authentication not yet checked */ #define UAUTH_Fail 1 /* User authentication failed */ #define UAUTH_User 2 /* Authenticated as a normal user */ #define UAUTH_Admin 3 /* Authenticated as an administrator */ /* Functions used only by user authorization logic */ SQLITE_PRIVATE int sqlite3UserAuthTable(const char*); SQLITE_PRIVATE int sqlite3UserAuthCheckLogin(sqlite3*,const char*,u8*); SQLITE_PRIVATE void sqlite3UserAuthInit(sqlite3*); SQLITE_PRIVATE void sqlite3CryptFunc(sqlite3_context*,int,sqlite3_value**); #endif /* SQLITE_USER_AUTHENTICATION */ /* ** typedef for the authorization callback function. */ #ifdef SQLITE_USER_AUTHENTICATION typedef int (*sqlite3_xauth)(void*,int,const char*,const char*,const char*, const char*, const char*); #else typedef int (*sqlite3_xauth)(void*,int,const char*,const char*,const char*, const char*); #endif #ifndef SQLITE_OMIT_DEPRECATED /* This is an extra SQLITE_TRACE macro that indicates "legacy" tracing ** in the style of sqlite3_trace() */ #define SQLITE_TRACE_LEGACY 0x40 /* Use the legacy xTrace */ #define SQLITE_TRACE_XPROFILE 0x80 /* Use the legacy xProfile */ #else #define SQLITE_TRACE_LEGACY 0 #define SQLITE_TRACE_XPROFILE 0 #endif /* SQLITE_OMIT_DEPRECATED */ #define SQLITE_TRACE_NONLEGACY_MASK 0x0f /* Normal flags */ /* ** Each database connection is an instance of the following structure. */ struct sqlite3 { sqlite3_vfs *pVfs; /* OS Interface */ struct Vdbe *pVdbe; /* List of active virtual machines */ CollSeq *pDfltColl; /* BINARY collseq for the database encoding */ sqlite3_mutex *mutex; /* Connection mutex */ Db *aDb; /* All backends */ int nDb; /* Number of backends currently in use */ u32 mDbFlags; /* flags recording internal state */ u64 flags; /* flags settable by pragmas. See below */ i64 lastRowid; /* ROWID of most recent insert (see above) */ i64 szMmap; /* Default mmap_size setting */ u32 nSchemaLock; /* Do not reset the schema when non-zero */ unsigned int openFlags; /* Flags passed to sqlite3_vfs.xOpen() */ int errCode; /* Most recent error code (SQLITE_*) */ int errMask; /* & result codes with this before returning */ int iSysErrno; /* Errno value from last system error */ u16 dbOptFlags; /* Flags to enable/disable optimizations */ u8 enc; /* Text encoding */ u8 autoCommit; /* The auto-commit flag. */ u8 temp_store; /* 1: file 2: memory 0: default */ u8 mallocFailed; /* True if we have seen a malloc failure */ u8 bBenignMalloc; /* Do not require OOMs if true */ u8 dfltLockMode; /* Default locking-mode for attached dbs */ signed char nextAutovac; /* Autovac setting after VACUUM if >=0 */ u8 suppressErr; /* Do not issue error messages if true */ u8 vtabOnConflict; /* Value to return for s3_vtab_on_conflict() */ u8 isTransactionSavepoint; /* True if the outermost savepoint is a TS */ u8 mTrace; /* zero or more SQLITE_TRACE flags */ u8 noSharedCache; /* True if no shared-cache backends */ u8 nSqlExec; /* Number of pending OP_SqlExec opcodes */ int nextPagesize; /* Pagesize after VACUUM if >0 */ u32 magic; /* Magic number for detect library misuse */ int nChange; /* Value returned by sqlite3_changes() */ int nTotalChange; /* Value returned by sqlite3_total_changes() */ int aLimit[SQLITE_N_LIMIT]; /* Limits */ int nMaxSorterMmap; /* Maximum size of regions mapped by sorter */ struct sqlite3InitInfo { /* Information used during initialization */ Pgno newTnum; /* Rootpage of table being initialized */ u8 iDb; /* Which db file is being initialized */ u8 busy; /* TRUE if currently initializing */ unsigned orphanTrigger : 1; /* Last statement is orphaned TEMP trigger */ unsigned imposterTable : 1; /* Building an imposter table */ unsigned reopenMemdb : 1; /* ATTACH is really a reopen using MemDB */ char **azInit; /* "type", "name", and "tbl_name" columns */ } init; int nVdbeActive; /* Number of VDBEs currently running */ int nVdbeRead; /* Number of active VDBEs that read or write */ int nVdbeWrite; /* Number of active VDBEs that read and write */ int nVdbeExec; /* Number of nested calls to VdbeExec() */ int nVDestroy; /* Number of active OP_VDestroy operations */ int nExtension; /* Number of loaded extensions */ void **aExtension; /* Array of shared library handles */ union { void (*xLegacy)(void*,const char*); /* Legacy trace function */ int (*xV2)(u32,void*,void*,void*); /* V2 Trace function */ } trace; void *pTraceArg; /* Argument to the trace function */ #ifndef SQLITE_OMIT_DEPRECATED void (*xProfile)(void*,const char*,u64); /* Profiling function */ void *pProfileArg; /* Argument to profile function */ #endif void *pCommitArg; /* Argument to xCommitCallback() */ int (*xCommitCallback)(void*); /* Invoked at every commit. */ void *pRollbackArg; /* Argument to xRollbackCallback() */ void (*xRollbackCallback)(void*); /* Invoked at every commit. */ void *pUpdateArg; void (*xUpdateCallback)(void*,int, const char*,const char*,sqlite_int64); Parse *pParse; /* Current parse */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK void *pPreUpdateArg; /* First argument to xPreUpdateCallback */ void (*xPreUpdateCallback)( /* Registered using sqlite3_preupdate_hook() */ void*,sqlite3*,int,char const*,char const*,sqlite3_int64,sqlite3_int64 ); PreUpdate *pPreUpdate; /* Context for active pre-update callback */ #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifndef SQLITE_OMIT_WAL int (*xWalCallback)(void *, sqlite3 *, const char *, int); void *pWalArg; #endif void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*); void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*); void *pCollNeededArg; sqlite3_value *pErr; /* Most recent error message */ union { volatile int isInterrupted; /* True if sqlite3_interrupt has been called */ double notUsed1; /* Spacer */ } u1; Lookaside lookaside; /* Lookaside malloc configuration */ #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth; /* Access authorization function */ void *pAuthArg; /* 1st argument to the access auth function */ #endif #ifndef SQLITE_OMIT_PROGRESS_CALLBACK int (*xProgress)(void *); /* The progress callback */ void *pProgressArg; /* Argument to the progress callback */ unsigned nProgressOps; /* Number of opcodes for progress callback */ #endif #ifndef SQLITE_OMIT_VIRTUALTABLE int nVTrans; /* Allocated size of aVTrans */ Hash aModule; /* populated by sqlite3_create_module() */ VtabCtx *pVtabCtx; /* Context for active vtab connect/create */ VTable **aVTrans; /* Virtual tables with open transactions */ VTable *pDisconnect; /* Disconnect these in next sqlite3_prepare() */ #endif Hash aFunc; /* Hash table of connection functions */ Hash aCollSeq; /* All collating sequences */ BusyHandler busyHandler; /* Busy callback */ Db aDbStatic[2]; /* Static space for the 2 default backends */ Savepoint *pSavepoint; /* List of active savepoints */ int nAnalysisLimit; /* Number of index rows to ANALYZE */ int busyTimeout; /* Busy handler timeout, in msec */ int nSavepoint; /* Number of non-transaction savepoints */ int nStatement; /* Number of nested statement-transactions */ i64 nDeferredCons; /* Net deferred constraints this transaction. */ i64 nDeferredImmCons; /* Net deferred immediate constraints */ int *pnBytesFreed; /* If not NULL, increment this in DbFree() */ #ifdef SQLITE_ENABLE_UNLOCK_NOTIFY /* The following variables are all protected by the STATIC_MAIN ** mutex, not by sqlite3.mutex. They are used by code in notify.c. ** ** When X.pUnlockConnection==Y, that means that X is waiting for Y to ** unlock so that it can proceed. ** ** When X.pBlockingConnection==Y, that means that something that X tried ** tried to do recently failed with an SQLITE_LOCKED error due to locks ** held by Y. */ sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */ sqlite3 *pUnlockConnection; /* Connection to watch for unlock */ void *pUnlockArg; /* Argument to xUnlockNotify */ void (*xUnlockNotify)(void **, int); /* Unlock notify callback */ sqlite3 *pNextBlocked; /* Next in list of all blocked connections */ #endif #ifdef SQLITE_USER_AUTHENTICATION sqlite3_userauth auth; /* User authentication information */ #endif }; /* ** A macro to discover the encoding of a database. */ #define SCHEMA_ENC(db) ((db)->aDb[0].pSchema->enc) #define ENC(db) ((db)->enc) /* ** A u64 constant where the lower 32 bits are all zeros. Only the ** upper 32 bits are included in the argument. Necessary because some ** C-compilers still do not accept LL integer literals. */ #define HI(X) ((u64)(X)<<32) /* ** Possible values for the sqlite3.flags. ** ** Value constraints (enforced via assert()): ** SQLITE_FullFSync == PAGER_FULLFSYNC ** SQLITE_CkptFullFSync == PAGER_CKPT_FULLFSYNC ** SQLITE_CacheSpill == PAGER_CACHE_SPILL */ #define SQLITE_WriteSchema 0x00000001 /* OK to update SQLITE_SCHEMA */ #define SQLITE_LegacyFileFmt 0x00000002 /* Create new databases in format 1 */ #define SQLITE_FullColNames 0x00000004 /* Show full column names on SELECT */ #define SQLITE_FullFSync 0x00000008 /* Use full fsync on the backend */ #define SQLITE_CkptFullFSync 0x00000010 /* Use full fsync for checkpoint */ #define SQLITE_CacheSpill 0x00000020 /* OK to spill pager cache */ #define SQLITE_ShortColNames 0x00000040 /* Show short columns names */ #define SQLITE_TrustedSchema 0x00000080 /* Allow unsafe functions and ** vtabs in the schema definition */ #define SQLITE_NullCallback 0x00000100 /* Invoke the callback once if the */ /* result set is empty */ #define SQLITE_IgnoreChecks 0x00000200 /* Do not enforce check constraints */ #define SQLITE_ReadUncommit 0x00000400 /* READ UNCOMMITTED in shared-cache */ #define SQLITE_NoCkptOnClose 0x00000800 /* No checkpoint on close()/DETACH */ #define SQLITE_ReverseOrder 0x00001000 /* Reverse unordered SELECTs */ #define SQLITE_RecTriggers 0x00002000 /* Enable recursive triggers */ #define SQLITE_ForeignKeys 0x00004000 /* Enforce foreign key constraints */ #define SQLITE_AutoIndex 0x00008000 /* Enable automatic indexes */ #define SQLITE_LoadExtension 0x00010000 /* Enable load_extension */ #define SQLITE_LoadExtFunc 0x00020000 /* Enable load_extension() SQL func */ #define SQLITE_EnableTrigger 0x00040000 /* True to enable triggers */ #define SQLITE_DeferFKs 0x00080000 /* Defer all FK constraints */ #define SQLITE_QueryOnly 0x00100000 /* Disable database changes */ #define SQLITE_CellSizeCk 0x00200000 /* Check btree cell sizes on load */ #define SQLITE_Fts3Tokenizer 0x00400000 /* Enable fts3_tokenizer(2) */ #define SQLITE_EnableQPSG 0x00800000 /* Query Planner Stability Guarantee*/ #define SQLITE_TriggerEQP 0x01000000 /* Show trigger EXPLAIN QUERY PLAN */ #define SQLITE_ResetDatabase 0x02000000 /* Reset the database */ #define SQLITE_LegacyAlter 0x04000000 /* Legacy ALTER TABLE behaviour */ #define SQLITE_NoSchemaError 0x08000000 /* Do not report schema parse errors*/ #define SQLITE_Defensive 0x10000000 /* Input SQL is likely hostile */ #define SQLITE_DqsDDL 0x20000000 /* dbl-quoted strings allowed in DDL*/ #define SQLITE_DqsDML 0x40000000 /* dbl-quoted strings allowed in DML*/ #define SQLITE_EnableView 0x80000000 /* Enable the use of views */ #define SQLITE_CountRows HI(0x00001) /* Count rows changed by INSERT, */ /* DELETE, or UPDATE and return */ /* the count using a callback. */ /* Flags used only if debugging */ #ifdef SQLITE_DEBUG #define SQLITE_SqlTrace HI(0x0100000) /* Debug print SQL as it executes */ #define SQLITE_VdbeListing HI(0x0200000) /* Debug listings of VDBE progs */ #define SQLITE_VdbeTrace HI(0x0400000) /* True to trace VDBE execution */ #define SQLITE_VdbeAddopTrace HI(0x0800000) /* Trace sqlite3VdbeAddOp() calls */ #define SQLITE_VdbeEQP HI(0x1000000) /* Debug EXPLAIN QUERY PLAN */ #define SQLITE_ParserTrace HI(0x2000000) /* PRAGMA parser_trace=ON */ #endif /* ** Allowed values for sqlite3.mDbFlags */ #define DBFLAG_SchemaChange 0x0001 /* Uncommitted Hash table changes */ #define DBFLAG_PreferBuiltin 0x0002 /* Preference to built-in funcs */ #define DBFLAG_Vacuum 0x0004 /* Currently in a VACUUM */ #define DBFLAG_VacuumInto 0x0008 /* Currently running VACUUM INTO */ #define DBFLAG_SchemaKnownOk 0x0010 /* Schema is known to be valid */ #define DBFLAG_InternalFunc 0x0020 /* Allow use of internal functions */ #define DBFLAG_EncodingFixed 0x0040 /* No longer possible to change enc. */ /* ** Bits of the sqlite3.dbOptFlags field that are used by the ** sqlite3_test_control(SQLITE_TESTCTRL_OPTIMIZATIONS,...) interface to ** selectively disable various optimizations. */ #define SQLITE_QueryFlattener 0x0001 /* Query flattening */ #define SQLITE_WindowFunc 0x0002 /* Use xInverse for window functions */ #define SQLITE_GroupByOrder 0x0004 /* GROUPBY cover of ORDERBY */ #define SQLITE_FactorOutConst 0x0008 /* Constant factoring */ #define SQLITE_DistinctOpt 0x0010 /* DISTINCT using indexes */ #define SQLITE_CoverIdxScan 0x0020 /* Covering index scans */ #define SQLITE_OrderByIdxJoin 0x0040 /* ORDER BY of joins via index */ #define SQLITE_Transitive 0x0080 /* Transitive constraints */ #define SQLITE_OmitNoopJoin 0x0100 /* Omit unused tables in joins */ #define SQLITE_CountOfView 0x0200 /* The count-of-view optimization */ #define SQLITE_CursorHints 0x0400 /* Add OP_CursorHint opcodes */ #define SQLITE_Stat4 0x0800 /* Use STAT4 data */ /* TH3 expects the Stat4 ^^^^^^ value to be 0x0800. Don't change it */ #define SQLITE_PushDown 0x1000 /* The push-down optimization */ #define SQLITE_SimplifyJoin 0x2000 /* Convert LEFT JOIN to JOIN */ #define SQLITE_SkipScan 0x4000 /* Skip-scans */ #define SQLITE_PropagateConst 0x8000 /* The constant propagation opt */ #define SQLITE_AllOpts 0xffff /* All optimizations */ /* ** Macros for testing whether or not optimizations are enabled or disabled. */ #define OptimizationDisabled(db, mask) (((db)->dbOptFlags&(mask))!=0) #define OptimizationEnabled(db, mask) (((db)->dbOptFlags&(mask))==0) /* ** Return true if it OK to factor constant expressions into the initialization ** code. The argument is a Parse object for the code generator. */ #define ConstFactorOk(P) ((P)->okConstFactor) /* ** Possible values for the sqlite.magic field. ** The numbers are obtained at random and have no special meaning, other ** than being distinct from one another. */ #define SQLITE_MAGIC_OPEN 0xa029a697 /* Database is open */ #define SQLITE_MAGIC_CLOSED 0x9f3c2d33 /* Database is closed */ #define SQLITE_MAGIC_SICK 0x4b771290 /* Error and awaiting close */ #define SQLITE_MAGIC_BUSY 0xf03b7906 /* Database currently in use */ #define SQLITE_MAGIC_ERROR 0xb5357930 /* An SQLITE_MISUSE error occurred */ #define SQLITE_MAGIC_ZOMBIE 0x64cffc7f /* Close with last statement close */ /* ** Each SQL function is defined by an instance of the following ** structure. For global built-in functions (ex: substr(), max(), count()) ** a pointer to this structure is held in the sqlite3BuiltinFunctions object. ** For per-connection application-defined functions, a pointer to this ** structure is held in the db->aHash hash table. ** ** The u.pHash field is used by the global built-ins. The u.pDestructor ** field is used by per-connection app-def functions. */ struct FuncDef { i8 nArg; /* Number of arguments. -1 means unlimited */ u32 funcFlags; /* Some combination of SQLITE_FUNC_* */ void *pUserData; /* User data parameter */ FuncDef *pNext; /* Next function with same name */ void (*xSFunc)(sqlite3_context*,int,sqlite3_value**); /* func or agg-step */ void (*xFinalize)(sqlite3_context*); /* Agg finalizer */ void (*xValue)(sqlite3_context*); /* Current agg value */ void (*xInverse)(sqlite3_context*,int,sqlite3_value**); /* inverse agg-step */ const char *zName; /* SQL name of the function. */ union { FuncDef *pHash; /* Next with a different name but the same hash */ FuncDestructor *pDestructor; /* Reference counted destructor function */ } u; }; /* ** This structure encapsulates a user-function destructor callback (as ** configured using create_function_v2()) and a reference counter. When ** create_function_v2() is called to create a function with a destructor, ** a single object of this type is allocated. FuncDestructor.nRef is set to ** the number of FuncDef objects created (either 1 or 3, depending on whether ** or not the specified encoding is SQLITE_ANY). The FuncDef.pDestructor ** member of each of the new FuncDef objects is set to point to the allocated ** FuncDestructor. ** ** Thereafter, when one of the FuncDef objects is deleted, the reference ** count on this object is decremented. When it reaches 0, the destructor ** is invoked and the FuncDestructor structure freed. */ struct FuncDestructor { int nRef; void (*xDestroy)(void *); void *pUserData; }; /* ** Possible values for FuncDef.flags. Note that the _LENGTH and _TYPEOF ** values must correspond to OPFLAG_LENGTHARG and OPFLAG_TYPEOFARG. And ** SQLITE_FUNC_CONSTANT must be the same as SQLITE_DETERMINISTIC. There ** are assert() statements in the code to verify this. ** ** Value constraints (enforced via assert()): ** SQLITE_FUNC_MINMAX == NC_MinMaxAgg == SF_MinMaxAgg ** SQLITE_FUNC_LENGTH == OPFLAG_LENGTHARG ** SQLITE_FUNC_TYPEOF == OPFLAG_TYPEOFARG ** SQLITE_FUNC_CONSTANT == SQLITE_DETERMINISTIC from the API ** SQLITE_FUNC_DIRECT == SQLITE_DIRECTONLY from the API ** SQLITE_FUNC_UNSAFE == SQLITE_INNOCUOUS ** SQLITE_FUNC_ENCMASK depends on SQLITE_UTF* macros in the API */ #define SQLITE_FUNC_ENCMASK 0x0003 /* SQLITE_UTF8, SQLITE_UTF16BE or UTF16LE */ #define SQLITE_FUNC_LIKE 0x0004 /* Candidate for the LIKE optimization */ #define SQLITE_FUNC_CASE 0x0008 /* Case-sensitive LIKE-type function */ #define SQLITE_FUNC_EPHEM 0x0010 /* Ephemeral. Delete with VDBE */ #define SQLITE_FUNC_NEEDCOLL 0x0020 /* sqlite3GetFuncCollSeq() might be called*/ #define SQLITE_FUNC_LENGTH 0x0040 /* Built-in length() function */ #define SQLITE_FUNC_TYPEOF 0x0080 /* Built-in typeof() function */ #define SQLITE_FUNC_COUNT 0x0100 /* Built-in count(*) aggregate */ /* 0x0200 -- available for reuse */ #define SQLITE_FUNC_UNLIKELY 0x0400 /* Built-in unlikely() function */ #define SQLITE_FUNC_CONSTANT 0x0800 /* Constant inputs give a constant output */ #define SQLITE_FUNC_MINMAX 0x1000 /* True for min() and max() aggregates */ #define SQLITE_FUNC_SLOCHNG 0x2000 /* "Slow Change". Value constant during a ** single query - might change over time */ #define SQLITE_FUNC_TEST 0x4000 /* Built-in testing functions */ #define SQLITE_FUNC_OFFSET 0x8000 /* Built-in sqlite_offset() function */ #define SQLITE_FUNC_WINDOW 0x00010000 /* Built-in window-only function */ #define SQLITE_FUNC_INTERNAL 0x00040000 /* For use by NestedParse() only */ #define SQLITE_FUNC_DIRECT 0x00080000 /* Not for use in TRIGGERs or VIEWs */ #define SQLITE_FUNC_SUBTYPE 0x00100000 /* Result likely to have sub-type */ #define SQLITE_FUNC_UNSAFE 0x00200000 /* Function has side effects */ #define SQLITE_FUNC_INLINE 0x00400000 /* Functions implemented in-line */ /* Identifier numbers for each in-line function */ #define INLINEFUNC_coalesce 0 #define INLINEFUNC_implies_nonnull_row 1 #define INLINEFUNC_expr_implies_expr 2 #define INLINEFUNC_expr_compare 3 #define INLINEFUNC_affinity 4 #define INLINEFUNC_iif 5 #define INLINEFUNC_unlikely 99 /* Default case */ /* ** The following three macros, FUNCTION(), LIKEFUNC() and AGGREGATE() are ** used to create the initializers for the FuncDef structures. ** ** FUNCTION(zName, nArg, iArg, bNC, xFunc) ** Used to create a scalar function definition of a function zName ** implemented by C function xFunc that accepts nArg arguments. The ** value passed as iArg is cast to a (void*) and made available ** as the user-data (sqlite3_user_data()) for the function. If ** argument bNC is true, then the SQLITE_FUNC_NEEDCOLL flag is set. ** ** VFUNCTION(zName, nArg, iArg, bNC, xFunc) ** Like FUNCTION except it omits the SQLITE_FUNC_CONSTANT flag. ** ** SFUNCTION(zName, nArg, iArg, bNC, xFunc) ** Like FUNCTION except it omits the SQLITE_FUNC_CONSTANT flag and ** adds the SQLITE_DIRECTONLY flag. ** ** INLINE_FUNC(zName, nArg, iFuncId, mFlags) ** zName is the name of a function that is implemented by in-line ** byte code rather than by the usual callbacks. The iFuncId ** parameter determines the function id. The mFlags parameter is ** optional SQLITE_FUNC_ flags for this function. ** ** TEST_FUNC(zName, nArg, iFuncId, mFlags) ** zName is the name of a test-only function implemented by in-line ** byte code rather than by the usual callbacks. The iFuncId ** parameter determines the function id. The mFlags parameter is ** optional SQLITE_FUNC_ flags for this function. ** ** DFUNCTION(zName, nArg, iArg, bNC, xFunc) ** Like FUNCTION except it omits the SQLITE_FUNC_CONSTANT flag and ** adds the SQLITE_FUNC_SLOCHNG flag. Used for date & time functions ** and functions like sqlite_version() that can change, but not during ** a single query. The iArg is ignored. The user-data is always set ** to a NULL pointer. The bNC parameter is not used. ** ** PURE_DATE(zName, nArg, iArg, bNC, xFunc) ** Used for "pure" date/time functions, this macro is like DFUNCTION ** except that it does set the SQLITE_FUNC_CONSTANT flags. iArg is ** ignored and the user-data for these functions is set to an ** arbitrary non-NULL pointer. The bNC parameter is not used. ** ** AGGREGATE(zName, nArg, iArg, bNC, xStep, xFinal) ** Used to create an aggregate function definition implemented by ** the C functions xStep and xFinal. The first four parameters ** are interpreted in the same way as the first 4 parameters to ** FUNCTION(). ** ** WFUNCTION(zName, nArg, iArg, xStep, xFinal, xValue, xInverse) ** Used to create an aggregate function definition implemented by ** the C functions xStep and xFinal. The first four parameters ** are interpreted in the same way as the first 4 parameters to ** FUNCTION(). ** ** LIKEFUNC(zName, nArg, pArg, flags) ** Used to create a scalar function definition of a function zName ** that accepts nArg arguments and is implemented by a call to C ** function likeFunc. Argument pArg is cast to a (void *) and made ** available as the function user-data (sqlite3_user_data()). The ** FuncDef.flags variable is set to the value passed as the flags ** parameter. */ #define FUNCTION(zName, nArg, iArg, bNC, xFunc) \ {nArg, SQLITE_FUNC_CONSTANT|SQLITE_UTF8|(bNC*SQLITE_FUNC_NEEDCOLL), \ SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } #define VFUNCTION(zName, nArg, iArg, bNC, xFunc) \ {nArg, SQLITE_UTF8|(bNC*SQLITE_FUNC_NEEDCOLL), \ SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } #define SFUNCTION(zName, nArg, iArg, bNC, xFunc) \ {nArg, SQLITE_UTF8|SQLITE_DIRECTONLY|SQLITE_FUNC_UNSAFE, \ SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } #define INLINE_FUNC(zName, nArg, iArg, mFlags) \ {nArg, SQLITE_UTF8|SQLITE_FUNC_INLINE|SQLITE_FUNC_CONSTANT|(mFlags), \ SQLITE_INT_TO_PTR(iArg), 0, noopFunc, 0, 0, 0, #zName, {0} } #define TEST_FUNC(zName, nArg, iArg, mFlags) \ {nArg, SQLITE_UTF8|SQLITE_FUNC_INTERNAL|SQLITE_FUNC_TEST| \ SQLITE_FUNC_INLINE|SQLITE_FUNC_CONSTANT|(mFlags), \ SQLITE_INT_TO_PTR(iArg), 0, noopFunc, 0, 0, 0, #zName, {0} } #define DFUNCTION(zName, nArg, iArg, bNC, xFunc) \ {nArg, SQLITE_FUNC_SLOCHNG|SQLITE_UTF8, \ 0, 0, xFunc, 0, 0, 0, #zName, {0} } #define PURE_DATE(zName, nArg, iArg, bNC, xFunc) \ {nArg, SQLITE_FUNC_SLOCHNG|SQLITE_UTF8|SQLITE_FUNC_CONSTANT, \ (void*)&sqlite3Config, 0, xFunc, 0, 0, 0, #zName, {0} } #define FUNCTION2(zName, nArg, iArg, bNC, xFunc, extraFlags) \ {nArg,SQLITE_FUNC_CONSTANT|SQLITE_UTF8|(bNC*SQLITE_FUNC_NEEDCOLL)|extraFlags,\ SQLITE_INT_TO_PTR(iArg), 0, xFunc, 0, 0, 0, #zName, {0} } #define STR_FUNCTION(zName, nArg, pArg, bNC, xFunc) \ {nArg, SQLITE_FUNC_SLOCHNG|SQLITE_UTF8|(bNC*SQLITE_FUNC_NEEDCOLL), \ pArg, 0, xFunc, 0, 0, 0, #zName, } #define LIKEFUNC(zName, nArg, arg, flags) \ {nArg, SQLITE_FUNC_CONSTANT|SQLITE_UTF8|flags, \ (void *)arg, 0, likeFunc, 0, 0, 0, #zName, {0} } #define WAGGREGATE(zName, nArg, arg, nc, xStep, xFinal, xValue, xInverse, f) \ {nArg, SQLITE_UTF8|(nc*SQLITE_FUNC_NEEDCOLL)|f, \ SQLITE_INT_TO_PTR(arg), 0, xStep,xFinal,xValue,xInverse,#zName, {0}} #define INTERNAL_FUNCTION(zName, nArg, xFunc) \ {nArg, SQLITE_FUNC_INTERNAL|SQLITE_UTF8|SQLITE_FUNC_CONSTANT, \ 0, 0, xFunc, 0, 0, 0, #zName, {0} } /* ** All current savepoints are stored in a linked list starting at ** sqlite3.pSavepoint. The first element in the list is the most recently ** opened savepoint. Savepoints are added to the list by the vdbe ** OP_Savepoint instruction. */ struct Savepoint { char *zName; /* Savepoint name (nul-terminated) */ i64 nDeferredCons; /* Number of deferred fk violations */ i64 nDeferredImmCons; /* Number of deferred imm fk. */ Savepoint *pNext; /* Parent savepoint (if any) */ }; /* ** The following are used as the second parameter to sqlite3Savepoint(), ** and as the P1 argument to the OP_Savepoint instruction. */ #define SAVEPOINT_BEGIN 0 #define SAVEPOINT_RELEASE 1 #define SAVEPOINT_ROLLBACK 2 /* ** Each SQLite module (virtual table definition) is defined by an ** instance of the following structure, stored in the sqlite3.aModule ** hash table. */ struct Module { const sqlite3_module *pModule; /* Callback pointers */ const char *zName; /* Name passed to create_module() */ int nRefModule; /* Number of pointers to this object */ void *pAux; /* pAux passed to create_module() */ void (*xDestroy)(void *); /* Module destructor function */ Table *pEpoTab; /* Eponymous table for this module */ }; /* ** Information about each column of an SQL table is held in an instance ** of the Column structure, in the Table.aCol[] array. ** ** Definitions: ** ** "table column index" This is the index of the column in the ** Table.aCol[] array, and also the index of ** the column in the original CREATE TABLE stmt. ** ** "storage column index" This is the index of the column in the ** record BLOB generated by the OP_MakeRecord ** opcode. The storage column index is less than ** or equal to the table column index. It is ** equal if and only if there are no VIRTUAL ** columns to the left. */ struct Column { char *zName; /* Name of this column, \000, then the type */ Expr *pDflt; /* Default value or GENERATED ALWAYS AS value */ char *zColl; /* Collating sequence. If NULL, use the default */ u8 notNull; /* An OE_ code for handling a NOT NULL constraint */ char affinity; /* One of the SQLITE_AFF_... values */ u8 szEst; /* Estimated size of value in this column. sizeof(INT)==1 */ u8 hName; /* Column name hash for faster lookup */ u16 colFlags; /* Boolean properties. See COLFLAG_ defines below */ }; /* Allowed values for Column.colFlags: */ #define COLFLAG_PRIMKEY 0x0001 /* Column is part of the primary key */ #define COLFLAG_HIDDEN 0x0002 /* A hidden column in a virtual table */ #define COLFLAG_HASTYPE 0x0004 /* Type name follows column name */ #define COLFLAG_UNIQUE 0x0008 /* Column def contains "UNIQUE" or "PK" */ #define COLFLAG_SORTERREF 0x0010 /* Use sorter-refs with this column */ #define COLFLAG_VIRTUAL 0x0020 /* GENERATED ALWAYS AS ... VIRTUAL */ #define COLFLAG_STORED 0x0040 /* GENERATED ALWAYS AS ... STORED */ #define COLFLAG_NOTAVAIL 0x0080 /* STORED column not yet calculated */ #define COLFLAG_BUSY 0x0100 /* Blocks recursion on GENERATED columns */ #define COLFLAG_GENERATED 0x0060 /* Combo: _STORED, _VIRTUAL */ #define COLFLAG_NOINSERT 0x0062 /* Combo: _HIDDEN, _STORED, _VIRTUAL */ /* ** A "Collating Sequence" is defined by an instance of the following ** structure. Conceptually, a collating sequence consists of a name and ** a comparison routine that defines the order of that sequence. ** ** If CollSeq.xCmp is NULL, it means that the ** collating sequence is undefined. Indices built on an undefined ** collating sequence may not be read or written. */ struct CollSeq { char *zName; /* Name of the collating sequence, UTF-8 encoded */ u8 enc; /* Text encoding handled by xCmp() */ void *pUser; /* First argument to xCmp() */ int (*xCmp)(void*,int, const void*, int, const void*); void (*xDel)(void*); /* Destructor for pUser */ }; /* ** A sort order can be either ASC or DESC. */ #define SQLITE_SO_ASC 0 /* Sort in ascending order */ #define SQLITE_SO_DESC 1 /* Sort in ascending order */ #define SQLITE_SO_UNDEFINED -1 /* No sort order specified */ /* ** Column affinity types. ** ** These used to have mnemonic name like 'i' for SQLITE_AFF_INTEGER and ** 't' for SQLITE_AFF_TEXT. But we can save a little space and improve ** the speed a little by numbering the values consecutively. ** ** But rather than start with 0 or 1, we begin with 'A'. That way, ** when multiple affinity types are concatenated into a string and ** used as the P4 operand, they will be more readable. ** ** Note also that the numeric types are grouped together so that testing ** for a numeric type is a single comparison. And the BLOB type is first. */ #define SQLITE_AFF_NONE 0x40 /* '@' */ #define SQLITE_AFF_BLOB 0x41 /* 'A' */ #define SQLITE_AFF_TEXT 0x42 /* 'B' */ #define SQLITE_AFF_NUMERIC 0x43 /* 'C' */ #define SQLITE_AFF_INTEGER 0x44 /* 'D' */ #define SQLITE_AFF_REAL 0x45 /* 'E' */ #define sqlite3IsNumericAffinity(X) ((X)>=SQLITE_AFF_NUMERIC) /* ** The SQLITE_AFF_MASK values masks off the significant bits of an ** affinity value. */ #define SQLITE_AFF_MASK 0x47 /* ** Additional bit values that can be ORed with an affinity without ** changing the affinity. ** ** The SQLITE_NOTNULL flag is a combination of NULLEQ and JUMPIFNULL. ** It causes an assert() to fire if either operand to a comparison ** operator is NULL. It is added to certain comparison operators to ** prove that the operands are always NOT NULL. */ #define SQLITE_KEEPNULL 0x08 /* Used by vector == or <> */ #define SQLITE_JUMPIFNULL 0x10 /* jumps if either operand is NULL */ #define SQLITE_STOREP2 0x20 /* Store result in reg[P2] rather than jump */ #define SQLITE_NULLEQ 0x80 /* NULL=NULL */ #define SQLITE_NOTNULL 0x90 /* Assert that operands are never NULL */ /* ** An object of this type is created for each virtual table present in ** the database schema. ** ** If the database schema is shared, then there is one instance of this ** structure for each database connection (sqlite3*) that uses the shared ** schema. This is because each database connection requires its own unique ** instance of the sqlite3_vtab* handle used to access the virtual table ** implementation. sqlite3_vtab* handles can not be shared between ** database connections, even when the rest of the in-memory database ** schema is shared, as the implementation often stores the database ** connection handle passed to it via the xConnect() or xCreate() method ** during initialization internally. This database connection handle may ** then be used by the virtual table implementation to access real tables ** within the database. So that they appear as part of the callers ** transaction, these accesses need to be made via the same database ** connection as that used to execute SQL operations on the virtual table. ** ** All VTable objects that correspond to a single table in a shared ** database schema are initially stored in a linked-list pointed to by ** the Table.pVTable member variable of the corresponding Table object. ** When an sqlite3_prepare() operation is required to access the virtual ** table, it searches the list for the VTable that corresponds to the ** database connection doing the preparing so as to use the correct ** sqlite3_vtab* handle in the compiled query. ** ** When an in-memory Table object is deleted (for example when the ** schema is being reloaded for some reason), the VTable objects are not ** deleted and the sqlite3_vtab* handles are not xDisconnect()ed ** immediately. Instead, they are moved from the Table.pVTable list to ** another linked list headed by the sqlite3.pDisconnect member of the ** corresponding sqlite3 structure. They are then deleted/xDisconnected ** next time a statement is prepared using said sqlite3*. This is done ** to avoid deadlock issues involving multiple sqlite3.mutex mutexes. ** Refer to comments above function sqlite3VtabUnlockList() for an ** explanation as to why it is safe to add an entry to an sqlite3.pDisconnect ** list without holding the corresponding sqlite3.mutex mutex. ** ** The memory for objects of this type is always allocated by ** sqlite3DbMalloc(), using the connection handle stored in VTable.db as ** the first argument. */ struct VTable { sqlite3 *db; /* Database connection associated with this table */ Module *pMod; /* Pointer to module implementation */ sqlite3_vtab *pVtab; /* Pointer to vtab instance */ int nRef; /* Number of pointers to this structure */ u8 bConstraint; /* True if constraints are supported */ u8 eVtabRisk; /* Riskiness of allowing hacker access */ int iSavepoint; /* Depth of the SAVEPOINT stack */ VTable *pNext; /* Next in linked list (see above) */ }; /* Allowed values for VTable.eVtabRisk */ #define SQLITE_VTABRISK_Low 0 #define SQLITE_VTABRISK_Normal 1 #define SQLITE_VTABRISK_High 2 /* ** The schema for each SQL table and view is represented in memory ** by an instance of the following structure. */ struct Table { char *zName; /* Name of the table or view */ Column *aCol; /* Information about each column */ Index *pIndex; /* List of SQL indexes on this table. */ Select *pSelect; /* NULL for tables. Points to definition if a view. */ FKey *pFKey; /* Linked list of all foreign keys in this table */ char *zColAff; /* String defining the affinity of each column */ ExprList *pCheck; /* All CHECK constraints */ /* ... also used as column name list in a VIEW */ Pgno tnum; /* Root BTree page for this table */ u32 nTabRef; /* Number of pointers to this Table */ u32 tabFlags; /* Mask of TF_* values */ i16 iPKey; /* If not negative, use aCol[iPKey] as the rowid */ i16 nCol; /* Number of columns in this table */ i16 nNVCol; /* Number of columns that are not VIRTUAL */ LogEst nRowLogEst; /* Estimated rows in table - from sqlite_stat1 table */ LogEst szTabRow; /* Estimated size of each table row in bytes */ #ifdef SQLITE_ENABLE_COSTMULT LogEst costMult; /* Cost multiplier for using this table */ #endif u8 keyConf; /* What to do in case of uniqueness conflict on iPKey */ #ifndef SQLITE_OMIT_ALTERTABLE int addColOffset; /* Offset in CREATE TABLE stmt to add a new column */ #endif #ifndef SQLITE_OMIT_VIRTUALTABLE int nModuleArg; /* Number of arguments to the module */ char **azModuleArg; /* 0: module 1: schema 2: vtab name 3...: args */ VTable *pVTable; /* List of VTable objects. */ #endif Trigger *pTrigger; /* List of triggers stored in pSchema */ Schema *pSchema; /* Schema that contains this table */ Table *pNextZombie; /* Next on the Parse.pZombieTab list */ }; /* ** Allowed values for Table.tabFlags. ** ** TF_OOOHidden applies to tables or view that have hidden columns that are ** followed by non-hidden columns. Example: "CREATE VIRTUAL TABLE x USING ** vtab1(a HIDDEN, b);". Since "b" is a non-hidden column but "a" is hidden, ** the TF_OOOHidden attribute would apply in this case. Such tables require ** special handling during INSERT processing. The "OOO" means "Out Of Order". ** ** Constraints: ** ** TF_HasVirtual == COLFLAG_Virtual ** TF_HasStored == COLFLAG_Stored */ #define TF_Readonly 0x0001 /* Read-only system table */ #define TF_Ephemeral 0x0002 /* An ephemeral table */ #define TF_HasPrimaryKey 0x0004 /* Table has a primary key */ #define TF_Autoincrement 0x0008 /* Integer primary key is autoincrement */ #define TF_HasStat1 0x0010 /* nRowLogEst set from sqlite_stat1 */ #define TF_HasVirtual 0x0020 /* Has one or more VIRTUAL columns */ #define TF_HasStored 0x0040 /* Has one or more STORED columns */ #define TF_HasGenerated 0x0060 /* Combo: HasVirtual + HasStored */ #define TF_WithoutRowid 0x0080 /* No rowid. PRIMARY KEY is the key */ #define TF_StatsUsed 0x0100 /* Query planner decisions affected by ** Index.aiRowLogEst[] values */ #define TF_NoVisibleRowid 0x0200 /* No user-visible "rowid" column */ #define TF_OOOHidden 0x0400 /* Out-of-Order hidden columns */ #define TF_HasNotNull 0x0800 /* Contains NOT NULL constraints */ #define TF_Shadow 0x1000 /* True for a shadow table */ /* ** Test to see whether or not a table is a virtual table. This is ** done as a macro so that it will be optimized out when virtual ** table support is omitted from the build. */ #ifndef SQLITE_OMIT_VIRTUALTABLE # define IsVirtual(X) ((X)->nModuleArg) # define ExprIsVtab(X) \ ((X)->op==TK_COLUMN && (X)->y.pTab!=0 && (X)->y.pTab->nModuleArg) #else # define IsVirtual(X) 0 # define ExprIsVtab(X) 0 #endif /* ** Macros to determine if a column is hidden. IsOrdinaryHiddenColumn() ** only works for non-virtual tables (ordinary tables and views) and is ** always false unless SQLITE_ENABLE_HIDDEN_COLUMNS is defined. The ** IsHiddenColumn() macro is general purpose. */ #if defined(SQLITE_ENABLE_HIDDEN_COLUMNS) # define IsHiddenColumn(X) (((X)->colFlags & COLFLAG_HIDDEN)!=0) # define IsOrdinaryHiddenColumn(X) (((X)->colFlags & COLFLAG_HIDDEN)!=0) #elif !defined(SQLITE_OMIT_VIRTUALTABLE) # define IsHiddenColumn(X) (((X)->colFlags & COLFLAG_HIDDEN)!=0) # define IsOrdinaryHiddenColumn(X) 0 #else # define IsHiddenColumn(X) 0 # define IsOrdinaryHiddenColumn(X) 0 #endif /* Does the table have a rowid */ #define HasRowid(X) (((X)->tabFlags & TF_WithoutRowid)==0) #define VisibleRowid(X) (((X)->tabFlags & TF_NoVisibleRowid)==0) /* ** Each foreign key constraint is an instance of the following structure. ** ** A foreign key is associated with two tables. The "from" table is ** the table that contains the REFERENCES clause that creates the foreign ** key. The "to" table is the table that is named in the REFERENCES clause. ** Consider this example: ** ** CREATE TABLE ex1( ** a INTEGER PRIMARY KEY, ** b INTEGER CONSTRAINT fk1 REFERENCES ex2(x) ** ); ** ** For foreign key "fk1", the from-table is "ex1" and the to-table is "ex2". ** Equivalent names: ** ** from-table == child-table ** to-table == parent-table ** ** Each REFERENCES clause generates an instance of the following structure ** which is attached to the from-table. The to-table need not exist when ** the from-table is created. The existence of the to-table is not checked. ** ** The list of all parents for child Table X is held at X.pFKey. ** ** A list of all children for a table named Z (which might not even exist) ** is held in Schema.fkeyHash with a hash key of Z. */ struct FKey { Table *pFrom; /* Table containing the REFERENCES clause (aka: Child) */ FKey *pNextFrom; /* Next FKey with the same in pFrom. Next parent of pFrom */ char *zTo; /* Name of table that the key points to (aka: Parent) */ FKey *pNextTo; /* Next with the same zTo. Next child of zTo. */ FKey *pPrevTo; /* Previous with the same zTo */ int nCol; /* Number of columns in this key */ /* EV: R-30323-21917 */ u8 isDeferred; /* True if constraint checking is deferred till COMMIT */ u8 aAction[2]; /* ON DELETE and ON UPDATE actions, respectively */ Trigger *apTrigger[2];/* Triggers for aAction[] actions */ struct sColMap { /* Mapping of columns in pFrom to columns in zTo */ int iFrom; /* Index of column in pFrom */ char *zCol; /* Name of column in zTo. If NULL use PRIMARY KEY */ } aCol[1]; /* One entry for each of nCol columns */ }; /* ** SQLite supports many different ways to resolve a constraint ** error. ROLLBACK processing means that a constraint violation ** causes the operation in process to fail and for the current transaction ** to be rolled back. ABORT processing means the operation in process ** fails and any prior changes from that one operation are backed out, ** but the transaction is not rolled back. FAIL processing means that ** the operation in progress stops and returns an error code. But prior ** changes due to the same operation are not backed out and no rollback ** occurs. IGNORE means that the particular row that caused the constraint ** error is not inserted or updated. Processing continues and no error ** is returned. REPLACE means that preexisting database rows that caused ** a UNIQUE constraint violation are removed so that the new insert or ** update can proceed. Processing continues and no error is reported. ** ** RESTRICT, SETNULL, and CASCADE actions apply only to foreign keys. ** RESTRICT is the same as ABORT for IMMEDIATE foreign keys and the ** same as ROLLBACK for DEFERRED keys. SETNULL means that the foreign ** key is set to NULL. CASCADE means that a DELETE or UPDATE of the ** referenced table row is propagated into the row that holds the ** foreign key. ** ** The following symbolic values are used to record which type ** of action to take. */ #define OE_None 0 /* There is no constraint to check */ #define OE_Rollback 1 /* Fail the operation and rollback the transaction */ #define OE_Abort 2 /* Back out changes but do no rollback transaction */ #define OE_Fail 3 /* Stop the operation but leave all prior changes */ #define OE_Ignore 4 /* Ignore the error. Do not do the INSERT or UPDATE */ #define OE_Replace 5 /* Delete existing record, then do INSERT or UPDATE */ #define OE_Update 6 /* Process as a DO UPDATE in an upsert */ #define OE_Restrict 7 /* OE_Abort for IMMEDIATE, OE_Rollback for DEFERRED */ #define OE_SetNull 8 /* Set the foreign key value to NULL */ #define OE_SetDflt 9 /* Set the foreign key value to its default */ #define OE_Cascade 10 /* Cascade the changes */ #define OE_Default 11 /* Do whatever the default action is */ /* ** An instance of the following structure is passed as the first ** argument to sqlite3VdbeKeyCompare and is used to control the ** comparison of the two index keys. ** ** Note that aSortOrder[] and aColl[] have nField+1 slots. There ** are nField slots for the columns of an index then one extra slot ** for the rowid at the end. */ struct KeyInfo { u32 nRef; /* Number of references to this KeyInfo object */ u8 enc; /* Text encoding - one of the SQLITE_UTF* values */ u16 nKeyField; /* Number of key columns in the index */ u16 nAllField; /* Total columns, including key plus others */ sqlite3 *db; /* The database connection */ u8 *aSortFlags; /* Sort order for each column. */ CollSeq *aColl[1]; /* Collating sequence for each term of the key */ }; /* ** Allowed bit values for entries in the KeyInfo.aSortFlags[] array. */ #define KEYINFO_ORDER_DESC 0x01 /* DESC sort order */ #define KEYINFO_ORDER_BIGNULL 0x02 /* NULL is larger than any other value */ /* ** This object holds a record which has been parsed out into individual ** fields, for the purposes of doing a comparison. ** ** A record is an object that contains one or more fields of data. ** Records are used to store the content of a table row and to store ** the key of an index. A blob encoding of a record is created by ** the OP_MakeRecord opcode of the VDBE and is disassembled by the ** OP_Column opcode. ** ** An instance of this object serves as a "key" for doing a search on ** an index b+tree. The goal of the search is to find the entry that ** is closed to the key described by this object. This object might hold ** just a prefix of the key. The number of fields is given by ** pKeyInfo->nField. ** ** The r1 and r2 fields are the values to return if this key is less than ** or greater than a key in the btree, respectively. These are normally ** -1 and +1 respectively, but might be inverted to +1 and -1 if the b-tree ** is in DESC order. ** ** The key comparison functions actually return default_rc when they find ** an equals comparison. default_rc can be -1, 0, or +1. If there are ** multiple entries in the b-tree with the same key (when only looking ** at the first pKeyInfo->nFields,) then default_rc can be set to -1 to ** cause the search to find the last match, or +1 to cause the search to ** find the first match. ** ** The key comparison functions will set eqSeen to true if they ever ** get and equal results when comparing this structure to a b-tree record. ** When default_rc!=0, the search might end up on the record immediately ** before the first match or immediately after the last match. The ** eqSeen field will indicate whether or not an exact match exists in the ** b-tree. */ struct UnpackedRecord { KeyInfo *pKeyInfo; /* Collation and sort-order information */ Mem *aMem; /* Values */ u16 nField; /* Number of entries in apMem[] */ i8 default_rc; /* Comparison result if keys are equal */ u8 errCode; /* Error detected by xRecordCompare (CORRUPT or NOMEM) */ i8 r1; /* Value to return if (lhs < rhs) */ i8 r2; /* Value to return if (lhs > rhs) */ u8 eqSeen; /* True if an equality comparison has been seen */ }; /* ** Each SQL index is represented in memory by an ** instance of the following structure. ** ** The columns of the table that are to be indexed are described ** by the aiColumn[] field of this structure. For example, suppose ** we have the following table and index: ** ** CREATE TABLE Ex1(c1 int, c2 int, c3 text); ** CREATE INDEX Ex2 ON Ex1(c3,c1); ** ** In the Table structure describing Ex1, nCol==3 because there are ** three columns in the table. In the Index structure describing ** Ex2, nColumn==2 since 2 of the 3 columns of Ex1 are indexed. ** The value of aiColumn is {2, 0}. aiColumn[0]==2 because the ** first column to be indexed (c3) has an index of 2 in Ex1.aCol[]. ** The second column to be indexed (c1) has an index of 0 in ** Ex1.aCol[], hence Ex2.aiColumn[1]==0. ** ** The Index.onError field determines whether or not the indexed columns ** must be unique and what to do if they are not. When Index.onError=OE_None, ** it means this is not a unique index. Otherwise it is a unique index ** and the value of Index.onError indicate the which conflict resolution ** algorithm to employ whenever an attempt is made to insert a non-unique ** element. ** ** While parsing a CREATE TABLE or CREATE INDEX statement in order to ** generate VDBE code (as opposed to parsing one read from an sqlite_schema ** table as part of parsing an existing database schema), transient instances ** of this structure may be created. In this case the Index.tnum variable is ** used to store the address of a VDBE instruction, not a database page ** number (it cannot - the database page is not allocated until the VDBE ** program is executed). See convertToWithoutRowidTable() for details. */ struct Index { char *zName; /* Name of this index */ i16 *aiColumn; /* Which columns are used by this index. 1st is 0 */ LogEst *aiRowLogEst; /* From ANALYZE: Est. rows selected by each column */ Table *pTable; /* The SQL table being indexed */ char *zColAff; /* String defining the affinity of each column */ Index *pNext; /* The next index associated with the same table */ Schema *pSchema; /* Schema containing this index */ u8 *aSortOrder; /* for each column: True==DESC, False==ASC */ const char **azColl; /* Array of collation sequence names for index */ Expr *pPartIdxWhere; /* WHERE clause for partial indices */ ExprList *aColExpr; /* Column expressions */ Pgno tnum; /* DB Page containing root of this index */ LogEst szIdxRow; /* Estimated average row size in bytes */ u16 nKeyCol; /* Number of columns forming the key */ u16 nColumn; /* Number of columns stored in the index */ u8 onError; /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */ unsigned idxType:2; /* 0:Normal 1:UNIQUE, 2:PRIMARY KEY, 3:IPK */ unsigned bUnordered:1; /* Use this index for == or IN queries only */ unsigned uniqNotNull:1; /* True if UNIQUE and NOT NULL for all columns */ unsigned isResized:1; /* True if resizeIndexObject() has been called */ unsigned isCovering:1; /* True if this is a covering index */ unsigned noSkipScan:1; /* Do not try to use skip-scan if true */ unsigned hasStat1:1; /* aiRowLogEst values come from sqlite_stat1 */ unsigned bNoQuery:1; /* Do not use this index to optimize queries */ unsigned bAscKeyBug:1; /* True if the bba7b69f9849b5bf bug applies */ unsigned bHasVCol:1; /* Index references one or more VIRTUAL columns */ #ifdef SQLITE_ENABLE_STAT4 int nSample; /* Number of elements in aSample[] */ int nSampleCol; /* Size of IndexSample.anEq[] and so on */ tRowcnt *aAvgEq; /* Average nEq values for keys not in aSample */ IndexSample *aSample; /* Samples of the left-most key */ tRowcnt *aiRowEst; /* Non-logarithmic stat1 data for this index */ tRowcnt nRowEst0; /* Non-logarithmic number of rows in the index */ #endif Bitmask colNotIdxed; /* 0 for unindexed columns in pTab */ }; /* ** Allowed values for Index.idxType */ #define SQLITE_IDXTYPE_APPDEF 0 /* Created using CREATE INDEX */ #define SQLITE_IDXTYPE_UNIQUE 1 /* Implements a UNIQUE constraint */ #define SQLITE_IDXTYPE_PRIMARYKEY 2 /* Is the PRIMARY KEY for the table */ #define SQLITE_IDXTYPE_IPK 3 /* INTEGER PRIMARY KEY index */ /* Return true if index X is a PRIMARY KEY index */ #define IsPrimaryKeyIndex(X) ((X)->idxType==SQLITE_IDXTYPE_PRIMARYKEY) /* Return true if index X is a UNIQUE index */ #define IsUniqueIndex(X) ((X)->onError!=OE_None) /* The Index.aiColumn[] values are normally positive integer. But ** there are some negative values that have special meaning: */ #define XN_ROWID (-1) /* Indexed column is the rowid */ #define XN_EXPR (-2) /* Indexed column is an expression */ /* ** Each sample stored in the sqlite_stat4 table is represented in memory ** using a structure of this type. See documentation at the top of the ** analyze.c source file for additional information. */ struct IndexSample { void *p; /* Pointer to sampled record */ int n; /* Size of record in bytes */ tRowcnt *anEq; /* Est. number of rows where the key equals this sample */ tRowcnt *anLt; /* Est. number of rows where key is less than this sample */ tRowcnt *anDLt; /* Est. number of distinct keys less than this sample */ }; /* ** Possible values to use within the flags argument to sqlite3GetToken(). */ #define SQLITE_TOKEN_QUOTED 0x1 /* Token is a quoted identifier. */ #define SQLITE_TOKEN_KEYWORD 0x2 /* Token is a keyword. */ /* ** Each token coming out of the lexer is an instance of ** this structure. Tokens are also used as part of an expression. ** ** The memory that "z" points to is owned by other objects. Take care ** that the owner of the "z" string does not deallocate the string before ** the Token goes out of scope! Very often, the "z" points to some place ** in the middle of the Parse.zSql text. But it might also point to a ** static string. */ struct Token { const char *z; /* Text of the token. Not NULL-terminated! */ unsigned int n; /* Number of characters in this token */ }; /* ** An instance of this structure contains information needed to generate ** code for a SELECT that contains aggregate functions. ** ** If Expr.op==TK_AGG_COLUMN or TK_AGG_FUNCTION then Expr.pAggInfo is a ** pointer to this structure. The Expr.iAgg field is the index in ** AggInfo.aCol[] or AggInfo.aFunc[] of information needed to generate ** code for that node. ** ** AggInfo.pGroupBy and AggInfo.aFunc.pExpr point to fields within the ** original Select structure that describes the SELECT statement. These ** fields do not need to be freed when deallocating the AggInfo structure. */ struct AggInfo { u8 directMode; /* Direct rendering mode means take data directly ** from source tables rather than from accumulators */ u8 useSortingIdx; /* In direct mode, reference the sorting index rather ** than the source table */ int sortingIdx; /* Cursor number of the sorting index */ int sortingIdxPTab; /* Cursor number of pseudo-table */ int nSortingColumn; /* Number of columns in the sorting index */ int mnReg, mxReg; /* Range of registers allocated for aCol and aFunc */ ExprList *pGroupBy; /* The group by clause */ struct AggInfo_col { /* For each column used in source tables */ Table *pTab; /* Source table */ Expr *pCExpr; /* The original expression */ int iTable; /* Cursor number of the source table */ int iMem; /* Memory location that acts as accumulator */ i16 iColumn; /* Column number within the source table */ i16 iSorterColumn; /* Column number in the sorting index */ } *aCol; int nColumn; /* Number of used entries in aCol[] */ int nAccumulator; /* Number of columns that show through to the output. ** Additional columns are used only as parameters to ** aggregate functions */ struct AggInfo_func { /* For each aggregate function */ Expr *pFExpr; /* Expression encoding the function */ FuncDef *pFunc; /* The aggregate function implementation */ int iMem; /* Memory location that acts as accumulator */ int iDistinct; /* Ephemeral table used to enforce DISTINCT */ } *aFunc; int nFunc; /* Number of entries in aFunc[] */ u32 selId; /* Select to which this AggInfo belongs */ AggInfo *pNext; /* Next in list of them all */ }; /* ** The datatype ynVar is a signed integer, either 16-bit or 32-bit. ** Usually it is 16-bits. But if SQLITE_MAX_VARIABLE_NUMBER is greater ** than 32767 we have to make it 32-bit. 16-bit is preferred because ** it uses less memory in the Expr object, which is a big memory user ** in systems with lots of prepared statements. And few applications ** need more than about 10 or 20 variables. But some extreme users want ** to have prepared statements with over 32766 variables, and for them ** the option is available (at compile-time). */ #if SQLITE_MAX_VARIABLE_NUMBER<32767 typedef i16 ynVar; #else typedef int ynVar; #endif /* ** Each node of an expression in the parse tree is an instance ** of this structure. ** ** Expr.op is the opcode. The integer parser token codes are reused ** as opcodes here. For example, the parser defines TK_GE to be an integer ** code representing the ">=" operator. This same integer code is reused ** to represent the greater-than-or-equal-to operator in the expression ** tree. ** ** If the expression is an SQL literal (TK_INTEGER, TK_FLOAT, TK_BLOB, ** or TK_STRING), then Expr.token contains the text of the SQL literal. If ** the expression is a variable (TK_VARIABLE), then Expr.token contains the ** variable name. Finally, if the expression is an SQL function (TK_FUNCTION), ** then Expr.token contains the name of the function. ** ** Expr.pRight and Expr.pLeft are the left and right subexpressions of a ** binary operator. Either or both may be NULL. ** ** Expr.x.pList is a list of arguments if the expression is an SQL function, ** a CASE expression or an IN expression of the form " IN (, ...)". ** Expr.x.pSelect is used if the expression is a sub-select or an expression of ** the form " IN (SELECT ...)". If the EP_xIsSelect bit is set in the ** Expr.flags mask, then Expr.x.pSelect is valid. Otherwise, Expr.x.pList is ** valid. ** ** An expression of the form ID or ID.ID refers to a column in a table. ** For such expressions, Expr.op is set to TK_COLUMN and Expr.iTable is ** the integer cursor number of a VDBE cursor pointing to that table and ** Expr.iColumn is the column number for the specific column. If the ** expression is used as a result in an aggregate SELECT, then the ** value is also stored in the Expr.iAgg column in the aggregate so that ** it can be accessed after all aggregates are computed. ** ** If the expression is an unbound variable marker (a question mark ** character '?' in the original SQL) then the Expr.iTable holds the index ** number for that variable. ** ** If the expression is a subquery then Expr.iColumn holds an integer ** register number containing the result of the subquery. If the ** subquery gives a constant result, then iTable is -1. If the subquery ** gives a different answer at different times during statement processing ** then iTable is the address of a subroutine that computes the subquery. ** ** If the Expr is of type OP_Column, and the table it is selecting from ** is a disk table or the "old.*" pseudo-table, then pTab points to the ** corresponding table definition. ** ** ALLOCATION NOTES: ** ** Expr objects can use a lot of memory space in database schema. To ** help reduce memory requirements, sometimes an Expr object will be ** truncated. And to reduce the number of memory allocations, sometimes ** two or more Expr objects will be stored in a single memory allocation, ** together with Expr.zToken strings. ** ** If the EP_Reduced and EP_TokenOnly flags are set when ** an Expr object is truncated. When EP_Reduced is set, then all ** the child Expr objects in the Expr.pLeft and Expr.pRight subtrees ** are contained within the same memory allocation. Note, however, that ** the subtrees in Expr.x.pList or Expr.x.pSelect are always separately ** allocated, regardless of whether or not EP_Reduced is set. */ struct Expr { u8 op; /* Operation performed by this node */ char affExpr; /* affinity, or RAISE type */ u8 op2; /* TK_REGISTER/TK_TRUTH: original value of Expr.op ** TK_COLUMN: the value of p5 for OP_Column ** TK_AGG_FUNCTION: nesting depth ** TK_FUNCTION: NC_SelfRef flag if needs OP_PureFunc */ #ifdef SQLITE_DEBUG u8 vvaFlags; /* Verification flags. */ #endif u32 flags; /* Various flags. EP_* See below */ union { char *zToken; /* Token value. Zero terminated and dequoted */ int iValue; /* Non-negative integer value if EP_IntValue */ } u; /* If the EP_TokenOnly flag is set in the Expr.flags mask, then no ** space is allocated for the fields below this point. An attempt to ** access them will result in a segfault or malfunction. *********************************************************************/ Expr *pLeft; /* Left subnode */ Expr *pRight; /* Right subnode */ union { ExprList *pList; /* op = IN, EXISTS, SELECT, CASE, FUNCTION, BETWEEN */ Select *pSelect; /* EP_xIsSelect and op = IN, EXISTS, SELECT */ } x; /* If the EP_Reduced flag is set in the Expr.flags mask, then no ** space is allocated for the fields below this point. An attempt to ** access them will result in a segfault or malfunction. *********************************************************************/ #if SQLITE_MAX_EXPR_DEPTH>0 int nHeight; /* Height of the tree headed by this node */ #endif int iTable; /* TK_COLUMN: cursor number of table holding column ** TK_REGISTER: register number ** TK_TRIGGER: 1 -> new, 0 -> old ** EP_Unlikely: 134217728 times likelihood ** TK_IN: ephemerial table holding RHS ** TK_SELECT_COLUMN: Number of columns on the LHS ** TK_SELECT: 1st register of result vector */ ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid. ** TK_VARIABLE: variable number (always >= 1). ** TK_SELECT_COLUMN: column of the result vector */ i16 iAgg; /* Which entry in pAggInfo->aCol[] or ->aFunc[] */ i16 iRightJoinTable; /* If EP_FromJoin, the right table of the join */ AggInfo *pAggInfo; /* Used by TK_AGG_COLUMN and TK_AGG_FUNCTION */ union { Table *pTab; /* TK_COLUMN: Table containing column. Can be NULL ** for a column of an index on an expression */ Window *pWin; /* EP_WinFunc: Window/Filter defn for a function */ struct { /* TK_IN, TK_SELECT, and TK_EXISTS */ int iAddr; /* Subroutine entry address */ int regReturn; /* Register used to hold return address */ } sub; } y; }; /* ** The following are the meanings of bits in the Expr.flags field. ** Value restrictions: ** ** EP_Agg == NC_HasAgg == SF_HasAgg ** EP_Win == NC_HasWin */ #define EP_FromJoin 0x000001 /* Originates in ON/USING clause of outer join */ #define EP_Distinct 0x000002 /* Aggregate function with DISTINCT keyword */ #define EP_HasFunc 0x000004 /* Contains one or more functions of any kind */ #define EP_FixedCol 0x000008 /* TK_Column with a known fixed value */ #define EP_Agg 0x000010 /* Contains one or more aggregate functions */ #define EP_VarSelect 0x000020 /* pSelect is correlated, not constant */ #define EP_DblQuoted 0x000040 /* token.z was originally in "..." */ #define EP_InfixFunc 0x000080 /* True for an infix function: LIKE, GLOB, etc */ #define EP_Collate 0x000100 /* Tree contains a TK_COLLATE operator */ #define EP_Commuted 0x000200 /* Comparison operator has been commuted */ #define EP_IntValue 0x000400 /* Integer value contained in u.iValue */ #define EP_xIsSelect 0x000800 /* x.pSelect is valid (otherwise x.pList is) */ #define EP_Skip 0x001000 /* Operator does not contribute to affinity */ #define EP_Reduced 0x002000 /* Expr struct EXPR_REDUCEDSIZE bytes only */ #define EP_TokenOnly 0x004000 /* Expr struct EXPR_TOKENONLYSIZE bytes only */ #define EP_Win 0x008000 /* Contains window functions */ #define EP_MemToken 0x010000 /* Need to sqlite3DbFree() Expr.zToken */ /* 0x020000 // available for reuse */ #define EP_Unlikely 0x040000 /* unlikely() or likelihood() function */ #define EP_ConstFunc 0x080000 /* A SQLITE_FUNC_CONSTANT or _SLOCHNG function */ #define EP_CanBeNull 0x100000 /* Can be null despite NOT NULL constraint */ #define EP_Subquery 0x200000 /* Tree contains a TK_SELECT operator */ #define EP_Alias 0x400000 /* Is an alias for a result set column */ #define EP_Leaf 0x800000 /* Expr.pLeft, .pRight, .u.pSelect all NULL */ #define EP_WinFunc 0x1000000 /* TK_FUNCTION with Expr.y.pWin set */ #define EP_Subrtn 0x2000000 /* Uses Expr.y.sub. TK_IN, _SELECT, or _EXISTS */ #define EP_Quoted 0x4000000 /* TK_ID was originally quoted */ #define EP_Static 0x8000000 /* Held in memory not obtained from malloc() */ #define EP_IsTrue 0x10000000 /* Always has boolean value of TRUE */ #define EP_IsFalse 0x20000000 /* Always has boolean value of FALSE */ #define EP_FromDDL 0x40000000 /* Originates from sqlite_schema */ /* 0x80000000 // Available */ /* ** The EP_Propagate mask is a set of properties that automatically propagate ** upwards into parent nodes. */ #define EP_Propagate (EP_Collate|EP_Subquery|EP_HasFunc) /* ** These macros can be used to test, set, or clear bits in the ** Expr.flags field. */ #define ExprHasProperty(E,P) (((E)->flags&(P))!=0) #define ExprHasAllProperty(E,P) (((E)->flags&(P))==(P)) #define ExprSetProperty(E,P) (E)->flags|=(P) #define ExprClearProperty(E,P) (E)->flags&=~(P) #define ExprAlwaysTrue(E) (((E)->flags&(EP_FromJoin|EP_IsTrue))==EP_IsTrue) #define ExprAlwaysFalse(E) (((E)->flags&(EP_FromJoin|EP_IsFalse))==EP_IsFalse) /* Flags for use with Expr.vvaFlags */ #define EP_NoReduce 0x01 /* Cannot EXPRDUP_REDUCE this Expr */ #define EP_Immutable 0x02 /* Do not change this Expr node */ /* The ExprSetVVAProperty() macro is used for Verification, Validation, ** and Accreditation only. It works like ExprSetProperty() during VVA ** processes but is a no-op for delivery. */ #ifdef SQLITE_DEBUG # define ExprSetVVAProperty(E,P) (E)->vvaFlags|=(P) # define ExprHasVVAProperty(E,P) (((E)->vvaFlags&(P))!=0) # define ExprClearVVAProperties(E) (E)->vvaFlags = 0 #else # define ExprSetVVAProperty(E,P) # define ExprHasVVAProperty(E,P) 0 # define ExprClearVVAProperties(E) #endif /* ** Macros to determine the number of bytes required by a normal Expr ** struct, an Expr struct with the EP_Reduced flag set in Expr.flags ** and an Expr struct with the EP_TokenOnly flag set. */ #define EXPR_FULLSIZE sizeof(Expr) /* Full size */ #define EXPR_REDUCEDSIZE offsetof(Expr,iTable) /* Common features */ #define EXPR_TOKENONLYSIZE offsetof(Expr,pLeft) /* Fewer features */ /* ** Flags passed to the sqlite3ExprDup() function. See the header comment ** above sqlite3ExprDup() for details. */ #define EXPRDUP_REDUCE 0x0001 /* Used reduced-size Expr nodes */ /* ** True if the expression passed as an argument was a function with ** an OVER() clause (a window function). */ #ifdef SQLITE_OMIT_WINDOWFUNC # define IsWindowFunc(p) 0 #else # define IsWindowFunc(p) ( \ ExprHasProperty((p), EP_WinFunc) && p->y.pWin->eFrmType!=TK_FILTER \ ) #endif /* ** A list of expressions. Each expression may optionally have a ** name. An expr/name combination can be used in several ways, such ** as the list of "expr AS ID" fields following a "SELECT" or in the ** list of "ID = expr" items in an UPDATE. A list of expressions can ** also be used as the argument to a function, in which case the a.zName ** field is not used. ** ** In order to try to keep memory usage down, the Expr.a.zEName field ** is used for multiple purposes: ** ** eEName Usage ** ---------- ------------------------- ** ENAME_NAME (1) the AS of result set column ** (2) COLUMN= of an UPDATE ** ** ENAME_TAB DB.TABLE.NAME used to resolve names ** of subqueries ** ** ENAME_SPAN Text of the original result set ** expression. */ struct ExprList { int nExpr; /* Number of expressions on the list */ struct ExprList_item { /* For each expression in the list */ Expr *pExpr; /* The parse tree for this expression */ char *zEName; /* Token associated with this expression */ u8 sortFlags; /* Mask of KEYINFO_ORDER_* flags */ unsigned eEName :2; /* Meaning of zEName */ unsigned done :1; /* A flag to indicate when processing is finished */ unsigned reusable :1; /* Constant expression is reusable */ unsigned bSorterRef :1; /* Defer evaluation until after sorting */ unsigned bNulls: 1; /* True if explicit "NULLS FIRST/LAST" */ union { struct { u16 iOrderByCol; /* For ORDER BY, column number in result set */ u16 iAlias; /* Index into Parse.aAlias[] for zName */ } x; int iConstExprReg; /* Register in which Expr value is cached */ } u; } a[1]; /* One slot for each expression in the list */ }; /* ** Allowed values for Expr.a.eEName */ #define ENAME_NAME 0 /* The AS clause of a result set */ #define ENAME_SPAN 1 /* Complete text of the result set expression */ #define ENAME_TAB 2 /* "DB.TABLE.NAME" for the result set */ /* ** An instance of this structure can hold a simple list of identifiers, ** such as the list "a,b,c" in the following statements: ** ** INSERT INTO t(a,b,c) VALUES ...; ** CREATE INDEX idx ON t(a,b,c); ** CREATE TRIGGER trig BEFORE UPDATE ON t(a,b,c) ...; ** ** The IdList.a.idx field is used when the IdList represents the list of ** column names after a table name in an INSERT statement. In the statement ** ** INSERT INTO t(a,b,c) ... ** ** If "a" is the k-th column of table "t", then IdList.a[0].idx==k. */ struct IdList { struct IdList_item { char *zName; /* Name of the identifier */ int idx; /* Index in some Table.aCol[] of a column named zName */ } *a; int nId; /* Number of identifiers on the list */ }; /* ** The following structure describes the FROM clause of a SELECT statement. ** Each table or subquery in the FROM clause is a separate element of ** the SrcList.a[] array. ** ** With the addition of multiple database support, the following structure ** can also be used to describe a particular table such as the table that ** is modified by an INSERT, DELETE, or UPDATE statement. In standard SQL, ** such a table must be a simple name: ID. But in SQLite, the table can ** now be identified by a database name, a dot, then the table name: ID.ID. ** ** The jointype starts out showing the join type between the current table ** and the next table on the list. The parser builds the list this way. ** But sqlite3SrcListShiftJoinType() later shifts the jointypes so that each ** jointype expresses the join between the table and the previous table. ** ** In the colUsed field, the high-order bit (bit 63) is set if the table ** contains more than 63 columns and the 64-th or later column is used. */ struct SrcList { int nSrc; /* Number of tables or subqueries in the FROM clause */ u32 nAlloc; /* Number of entries allocated in a[] below */ struct SrcList_item { Schema *pSchema; /* Schema to which this item is fixed */ char *zDatabase; /* Name of database holding this table */ char *zName; /* Name of the table */ char *zAlias; /* The "B" part of a "A AS B" phrase. zName is the "A" */ Table *pTab; /* An SQL table corresponding to zName */ Select *pSelect; /* A SELECT statement used in place of a table name */ int addrFillSub; /* Address of subroutine to manifest a subquery */ int regReturn; /* Register holding return address of addrFillSub */ int regResult; /* Registers holding results of a co-routine */ struct { u8 jointype; /* Type of join between this table and the previous */ unsigned notIndexed :1; /* True if there is a NOT INDEXED clause */ unsigned isIndexedBy :1; /* True if there is an INDEXED BY clause */ unsigned isTabFunc :1; /* True if table-valued-function syntax */ unsigned isCorrelated :1; /* True if sub-query is correlated */ unsigned viaCoroutine :1; /* Implemented as a co-routine */ unsigned isRecursive :1; /* True for recursive reference in WITH */ unsigned fromDDL :1; /* Comes from sqlite_schema */ } fg; int iCursor; /* The VDBE cursor number used to access this table */ Expr *pOn; /* The ON clause of a join */ IdList *pUsing; /* The USING clause of a join */ Bitmask colUsed; /* Bit N (1<" clause */ ExprList *pFuncArg; /* Arguments to table-valued-function */ } u1; Index *pIBIndex; /* Index structure corresponding to u1.zIndexedBy */ } a[1]; /* One entry for each identifier on the list */ }; /* ** Permitted values of the SrcList.a.jointype field */ #define JT_INNER 0x0001 /* Any kind of inner or cross join */ #define JT_CROSS 0x0002 /* Explicit use of the CROSS keyword */ #define JT_NATURAL 0x0004 /* True for a "natural" join */ #define JT_LEFT 0x0008 /* Left outer join */ #define JT_RIGHT 0x0010 /* Right outer join */ #define JT_OUTER 0x0020 /* The "OUTER" keyword is present */ #define JT_ERROR 0x0040 /* unknown or unsupported join type */ /* ** Flags appropriate for the wctrlFlags parameter of sqlite3WhereBegin() ** and the WhereInfo.wctrlFlags member. ** ** Value constraints (enforced via assert()): ** WHERE_USE_LIMIT == SF_FixedLimit */ #define WHERE_ORDERBY_NORMAL 0x0000 /* No-op */ #define WHERE_ORDERBY_MIN 0x0001 /* ORDER BY processing for min() func */ #define WHERE_ORDERBY_MAX 0x0002 /* ORDER BY processing for max() func */ #define WHERE_ONEPASS_DESIRED 0x0004 /* Want to do one-pass UPDATE/DELETE */ #define WHERE_ONEPASS_MULTIROW 0x0008 /* ONEPASS is ok with multiple rows */ #define WHERE_DUPLICATES_OK 0x0010 /* Ok to return a row more than once */ #define WHERE_OR_SUBCLAUSE 0x0020 /* Processing a sub-WHERE as part of ** the OR optimization */ #define WHERE_GROUPBY 0x0040 /* pOrderBy is really a GROUP BY */ #define WHERE_DISTINCTBY 0x0080 /* pOrderby is really a DISTINCT clause */ #define WHERE_WANT_DISTINCT 0x0100 /* All output needs to be distinct */ #define WHERE_SORTBYGROUP 0x0200 /* Support sqlite3WhereIsSorted() */ #define WHERE_SEEK_TABLE 0x0400 /* Do not defer seeks on main table */ #define WHERE_ORDERBY_LIMIT 0x0800 /* ORDERBY+LIMIT on the inner loop */ #define WHERE_SEEK_UNIQ_TABLE 0x1000 /* Do not defer seeks if unique */ /* 0x2000 not currently used */ #define WHERE_USE_LIMIT 0x4000 /* Use the LIMIT in cost estimates */ /* 0x8000 not currently used */ /* Allowed return values from sqlite3WhereIsDistinct() */ #define WHERE_DISTINCT_NOOP 0 /* DISTINCT keyword not used */ #define WHERE_DISTINCT_UNIQUE 1 /* No duplicates */ #define WHERE_DISTINCT_ORDERED 2 /* All duplicates are adjacent */ #define WHERE_DISTINCT_UNORDERED 3 /* Duplicates are scattered */ /* ** A NameContext defines a context in which to resolve table and column ** names. The context consists of a list of tables (the pSrcList) field and ** a list of named expression (pEList). The named expression list may ** be NULL. The pSrc corresponds to the FROM clause of a SELECT or ** to the table being operated on by INSERT, UPDATE, or DELETE. The ** pEList corresponds to the result set of a SELECT and is NULL for ** other statements. ** ** NameContexts can be nested. When resolving names, the inner-most ** context is searched first. If no match is found, the next outer ** context is checked. If there is still no match, the next context ** is checked. This process continues until either a match is found ** or all contexts are check. When a match is found, the nRef member of ** the context containing the match is incremented. ** ** Each subquery gets a new NameContext. The pNext field points to the ** NameContext in the parent query. Thus the process of scanning the ** NameContext list corresponds to searching through successively outer ** subqueries looking for a match. */ struct NameContext { Parse *pParse; /* The parser */ SrcList *pSrcList; /* One or more tables used to resolve names */ union { ExprList *pEList; /* Optional list of result-set columns */ AggInfo *pAggInfo; /* Information about aggregates at this level */ Upsert *pUpsert; /* ON CONFLICT clause information from an upsert */ } uNC; NameContext *pNext; /* Next outer name context. NULL for outermost */ int nRef; /* Number of names resolved by this context */ int nErr; /* Number of errors encountered while resolving names */ int ncFlags; /* Zero or more NC_* flags defined below */ Select *pWinSelect; /* SELECT statement for any window functions */ }; /* ** Allowed values for the NameContext, ncFlags field. ** ** Value constraints (all checked via assert()): ** NC_HasAgg == SF_HasAgg == EP_Agg ** NC_MinMaxAgg == SF_MinMaxAgg == SQLITE_FUNC_MINMAX ** NC_HasWin == EP_Win ** */ #define NC_AllowAgg 0x00001 /* Aggregate functions are allowed here */ #define NC_PartIdx 0x00002 /* True if resolving a partial index WHERE */ #define NC_IsCheck 0x00004 /* True if resolving a CHECK constraint */ #define NC_GenCol 0x00008 /* True for a GENERATED ALWAYS AS clause */ #define NC_HasAgg 0x00010 /* One or more aggregate functions seen */ #define NC_IdxExpr 0x00020 /* True if resolving columns of CREATE INDEX */ #define NC_SelfRef 0x0002e /* Combo: PartIdx, isCheck, GenCol, and IdxExpr */ #define NC_VarSelect 0x00040 /* A correlated subquery has been seen */ #define NC_UEList 0x00080 /* True if uNC.pEList is used */ #define NC_UAggInfo 0x00100 /* True if uNC.pAggInfo is used */ #define NC_UUpsert 0x00200 /* True if uNC.pUpsert is used */ #define NC_MinMaxAgg 0x01000 /* min/max aggregates seen. See note above */ #define NC_Complex 0x02000 /* True if a function or subquery seen */ #define NC_AllowWin 0x04000 /* Window functions are allowed here */ #define NC_HasWin 0x08000 /* One or more window functions seen */ #define NC_IsDDL 0x10000 /* Resolving names in a CREATE statement */ #define NC_InAggFunc 0x20000 /* True if analyzing arguments to an agg func */ #define NC_FromDDL 0x40000 /* SQL text comes from sqlite_schema */ /* ** An instance of the following object describes a single ON CONFLICT ** clause in an upsert. ** ** The pUpsertTarget field is only set if the ON CONFLICT clause includes ** conflict-target clause. (In "ON CONFLICT(a,b)" the "(a,b)" is the ** conflict-target clause.) The pUpsertTargetWhere is the optional ** WHERE clause used to identify partial unique indexes. ** ** pUpsertSet is the list of column=expr terms of the UPDATE statement. ** The pUpsertSet field is NULL for a ON CONFLICT DO NOTHING. The ** pUpsertWhere is the WHERE clause for the UPDATE and is NULL if the ** WHERE clause is omitted. */ struct Upsert { ExprList *pUpsertTarget; /* Optional description of conflicting index */ Expr *pUpsertTargetWhere; /* WHERE clause for partial index targets */ ExprList *pUpsertSet; /* The SET clause from an ON CONFLICT UPDATE */ Expr *pUpsertWhere; /* WHERE clause for the ON CONFLICT UPDATE */ /* The fields above comprise the parse tree for the upsert clause. ** The fields below are used to transfer information from the INSERT ** processing down into the UPDATE processing while generating code. ** Upsert owns the memory allocated above, but not the memory below. */ Index *pUpsertIdx; /* Constraint that pUpsertTarget identifies */ SrcList *pUpsertSrc; /* Table to be updated */ int regData; /* First register holding array of VALUES */ int iDataCur; /* Index of the data cursor */ int iIdxCur; /* Index of the first index cursor */ }; /* ** An instance of the following structure contains all information ** needed to generate code for a single SELECT statement. ** ** See the header comment on the computeLimitRegisters() routine for a ** detailed description of the meaning of the iLimit and iOffset fields. ** ** addrOpenEphm[] entries contain the address of OP_OpenEphemeral opcodes. ** These addresses must be stored so that we can go back and fill in ** the P4_KEYINFO and P2 parameters later. Neither the KeyInfo nor ** the number of columns in P2 can be computed at the same time ** as the OP_OpenEphm instruction is coded because not ** enough information about the compound query is known at that point. ** The KeyInfo for addrOpenTran[0] and [1] contains collating sequences ** for the result set. The KeyInfo for addrOpenEphm[2] contains collating ** sequences for the ORDER BY clause. */ struct Select { u8 op; /* One of: TK_UNION TK_ALL TK_INTERSECT TK_EXCEPT */ LogEst nSelectRow; /* Estimated number of result rows */ u32 selFlags; /* Various SF_* values */ int iLimit, iOffset; /* Memory registers holding LIMIT & OFFSET counters */ u32 selId; /* Unique identifier number for this SELECT */ int addrOpenEphm[2]; /* OP_OpenEphem opcodes related to this select */ ExprList *pEList; /* The fields of the result */ SrcList *pSrc; /* The FROM clause */ Expr *pWhere; /* The WHERE clause */ ExprList *pGroupBy; /* The GROUP BY clause */ Expr *pHaving; /* The HAVING clause */ ExprList *pOrderBy; /* The ORDER BY clause */ Select *pPrior; /* Prior select in a compound select statement */ Select *pNext; /* Next select to the left in a compound */ Expr *pLimit; /* LIMIT expression. NULL means not used. */ With *pWith; /* WITH clause attached to this select. Or NULL. */ #ifndef SQLITE_OMIT_WINDOWFUNC Window *pWin; /* List of window functions */ Window *pWinDefn; /* List of named window definitions */ #endif }; /* ** Allowed values for Select.selFlags. The "SF" prefix stands for ** "Select Flag". ** ** Value constraints (all checked via assert()) ** SF_HasAgg == NC_HasAgg ** SF_MinMaxAgg == NC_MinMaxAgg == SQLITE_FUNC_MINMAX ** SF_FixedLimit == WHERE_USE_LIMIT */ #define SF_Distinct 0x0000001 /* Output should be DISTINCT */ #define SF_All 0x0000002 /* Includes the ALL keyword */ #define SF_Resolved 0x0000004 /* Identifiers have been resolved */ #define SF_Aggregate 0x0000008 /* Contains agg functions or a GROUP BY */ #define SF_HasAgg 0x0000010 /* Contains aggregate functions */ #define SF_UsesEphemeral 0x0000020 /* Uses the OpenEphemeral opcode */ #define SF_Expanded 0x0000040 /* sqlite3SelectExpand() called on this */ #define SF_HasTypeInfo 0x0000080 /* FROM subqueries have Table metadata */ #define SF_Compound 0x0000100 /* Part of a compound query */ #define SF_Values 0x0000200 /* Synthesized from VALUES clause */ #define SF_MultiValue 0x0000400 /* Single VALUES term with multiple rows */ #define SF_NestedFrom 0x0000800 /* Part of a parenthesized FROM clause */ #define SF_MinMaxAgg 0x0001000 /* Aggregate containing min() or max() */ #define SF_Recursive 0x0002000 /* The recursive part of a recursive CTE */ #define SF_FixedLimit 0x0004000 /* nSelectRow set by a constant LIMIT */ #define SF_MaybeConvert 0x0008000 /* Need convertCompoundSelectToSubquery() */ #define SF_Converted 0x0010000 /* By convertCompoundSelectToSubquery() */ #define SF_IncludeHidden 0x0020000 /* Include hidden columns in output */ #define SF_ComplexResult 0x0040000 /* Result contains subquery or function */ #define SF_WhereBegin 0x0080000 /* Really a WhereBegin() call. Debug Only */ #define SF_WinRewrite 0x0100000 /* Window function rewrite accomplished */ #define SF_View 0x0200000 /* SELECT statement is a view */ #define SF_NoopOrderBy 0x0400000 /* ORDER BY is ignored for this query */ #define SF_UpdateFrom 0x0800000 /* Statement is an UPDATE...FROM */ /* ** The results of a SELECT can be distributed in several ways, as defined ** by one of the following macros. The "SRT" prefix means "SELECT Result ** Type". ** ** SRT_Union Store results as a key in a temporary index ** identified by pDest->iSDParm. ** ** SRT_Except Remove results from the temporary index pDest->iSDParm. ** ** SRT_Exists Store a 1 in memory cell pDest->iSDParm if the result ** set is not empty. ** ** SRT_Discard Throw the results away. This is used by SELECT ** statements within triggers whose only purpose is ** the side-effects of functions. ** ** All of the above are free to ignore their ORDER BY clause. Those that ** follow must honor the ORDER BY clause. ** ** SRT_Output Generate a row of output (using the OP_ResultRow ** opcode) for each row in the result set. ** ** SRT_Mem Only valid if the result is a single column. ** Store the first column of the first result row ** in register pDest->iSDParm then abandon the rest ** of the query. This destination implies "LIMIT 1". ** ** SRT_Set The result must be a single column. Store each ** row of result as the key in table pDest->iSDParm. ** Apply the affinity pDest->affSdst before storing ** results. Used to implement "IN (SELECT ...)". ** ** SRT_EphemTab Create an temporary table pDest->iSDParm and store ** the result there. The cursor is left open after ** returning. This is like SRT_Table except that ** this destination uses OP_OpenEphemeral to create ** the table first. ** ** SRT_Coroutine Generate a co-routine that returns a new row of ** results each time it is invoked. The entry point ** of the co-routine is stored in register pDest->iSDParm ** and the result row is stored in pDest->nDest registers ** starting with pDest->iSdst. ** ** SRT_Table Store results in temporary table pDest->iSDParm. ** SRT_Fifo This is like SRT_EphemTab except that the table ** is assumed to already be open. SRT_Fifo has ** the additional property of being able to ignore ** the ORDER BY clause. ** ** SRT_DistFifo Store results in a temporary table pDest->iSDParm. ** But also use temporary table pDest->iSDParm+1 as ** a record of all prior results and ignore any duplicate ** rows. Name means: "Distinct Fifo". ** ** SRT_Queue Store results in priority queue pDest->iSDParm (really ** an index). Append a sequence number so that all entries ** are distinct. ** ** SRT_DistQueue Store results in priority queue pDest->iSDParm only if ** the same record has never been stored before. The ** index at pDest->iSDParm+1 hold all prior stores. ** ** SRT_Upfrom Store results in the temporary table already opened by ** pDest->iSDParm. If (pDest->iSDParm<0), then the temp ** table is an intkey table - in this case the first ** column returned by the SELECT is used as the integer ** key. If (pDest->iSDParm>0), then the table is an index ** table. (pDest->iSDParm) is the number of key columns in ** each index record in this case. */ #define SRT_Union 1 /* Store result as keys in an index */ #define SRT_Except 2 /* Remove result from a UNION index */ #define SRT_Exists 3 /* Store 1 if the result is not empty */ #define SRT_Discard 4 /* Do not save the results anywhere */ #define SRT_Fifo 5 /* Store result as data with an automatic rowid */ #define SRT_DistFifo 6 /* Like SRT_Fifo, but unique results only */ #define SRT_Queue 7 /* Store result in an queue */ #define SRT_DistQueue 8 /* Like SRT_Queue, but unique results only */ /* The ORDER BY clause is ignored for all of the above */ #define IgnorableOrderby(X) ((X->eDest)<=SRT_DistQueue) #define SRT_Output 9 /* Output each row of result */ #define SRT_Mem 10 /* Store result in a memory cell */ #define SRT_Set 11 /* Store results as keys in an index */ #define SRT_EphemTab 12 /* Create transient tab and store like SRT_Table */ #define SRT_Coroutine 13 /* Generate a single row of result */ #define SRT_Table 14 /* Store result as data with an automatic rowid */ #define SRT_Upfrom 15 /* Store result as data with rowid */ /* ** An instance of this object describes where to put of the results of ** a SELECT statement. */ struct SelectDest { u8 eDest; /* How to dispose of the results. One of SRT_* above. */ int iSDParm; /* A parameter used by the eDest disposal method */ int iSDParm2; /* A second parameter for the eDest disposal method */ int iSdst; /* Base register where results are written */ int nSdst; /* Number of registers allocated */ char *zAffSdst; /* Affinity used when eDest==SRT_Set */ ExprList *pOrderBy; /* Key columns for SRT_Queue and SRT_DistQueue */ }; /* ** During code generation of statements that do inserts into AUTOINCREMENT ** tables, the following information is attached to the Table.u.autoInc.p ** pointer of each autoincrement table to record some side information that ** the code generator needs. We have to keep per-table autoincrement ** information in case inserts are done within triggers. Triggers do not ** normally coordinate their activities, but we do need to coordinate the ** loading and saving of autoincrement information. */ struct AutoincInfo { AutoincInfo *pNext; /* Next info block in a list of them all */ Table *pTab; /* Table this info block refers to */ int iDb; /* Index in sqlite3.aDb[] of database holding pTab */ int regCtr; /* Memory register holding the rowid counter */ }; /* ** At least one instance of the following structure is created for each ** trigger that may be fired while parsing an INSERT, UPDATE or DELETE ** statement. All such objects are stored in the linked list headed at ** Parse.pTriggerPrg and deleted once statement compilation has been ** completed. ** ** A Vdbe sub-program that implements the body and WHEN clause of trigger ** TriggerPrg.pTrigger, assuming a default ON CONFLICT clause of ** TriggerPrg.orconf, is stored in the TriggerPrg.pProgram variable. ** The Parse.pTriggerPrg list never contains two entries with the same ** values for both pTrigger and orconf. ** ** The TriggerPrg.aColmask[0] variable is set to a mask of old.* columns ** accessed (or set to 0 for triggers fired as a result of INSERT ** statements). Similarly, the TriggerPrg.aColmask[1] variable is set to ** a mask of new.* columns used by the program. */ struct TriggerPrg { Trigger *pTrigger; /* Trigger this program was coded from */ TriggerPrg *pNext; /* Next entry in Parse.pTriggerPrg list */ SubProgram *pProgram; /* Program implementing pTrigger/orconf */ int orconf; /* Default ON CONFLICT policy */ u32 aColmask[2]; /* Masks of old.*, new.* columns accessed */ }; /* ** The yDbMask datatype for the bitmask of all attached databases. */ #if SQLITE_MAX_ATTACHED>30 typedef unsigned char yDbMask[(SQLITE_MAX_ATTACHED+9)/8]; # define DbMaskTest(M,I) (((M)[(I)/8]&(1<<((I)&7)))!=0) # define DbMaskZero(M) memset((M),0,sizeof(M)) # define DbMaskSet(M,I) (M)[(I)/8]|=(1<<((I)&7)) # define DbMaskAllZero(M) sqlite3DbMaskAllZero(M) # define DbMaskNonZero(M) (sqlite3DbMaskAllZero(M)==0) #else typedef unsigned int yDbMask; # define DbMaskTest(M,I) (((M)&(((yDbMask)1)<<(I)))!=0) # define DbMaskZero(M) (M)=0 # define DbMaskSet(M,I) (M)|=(((yDbMask)1)<<(I)) # define DbMaskAllZero(M) (M)==0 # define DbMaskNonZero(M) (M)!=0 #endif /* ** An SQL parser context. A copy of this structure is passed through ** the parser and down into all the parser action routine in order to ** carry around information that is global to the entire parse. ** ** The structure is divided into two parts. When the parser and code ** generate call themselves recursively, the first part of the structure ** is constant but the second part is reset at the beginning and end of ** each recursion. ** ** The nTableLock and aTableLock variables are only used if the shared-cache ** feature is enabled (if sqlite3Tsd()->useSharedData is true). They are ** used to store the set of table-locks required by the statement being ** compiled. Function sqlite3TableLock() is used to add entries to the ** list. */ struct Parse { sqlite3 *db; /* The main database structure */ char *zErrMsg; /* An error message */ Vdbe *pVdbe; /* An engine for executing database bytecode */ int rc; /* Return code from execution */ u8 colNamesSet; /* TRUE after OP_ColumnName has been issued to pVdbe */ u8 checkSchema; /* Causes schema cookie check after an error */ u8 nested; /* Number of nested calls to the parser/code generator */ u8 nTempReg; /* Number of temporary registers in aTempReg[] */ u8 isMultiWrite; /* True if statement may modify/insert multiple rows */ u8 mayAbort; /* True if statement may throw an ABORT exception */ u8 hasCompound; /* Need to invoke convertCompoundSelectToSubquery() */ u8 okConstFactor; /* OK to factor out constants */ u8 disableLookaside; /* Number of times lookaside has been disabled */ u8 disableVtab; /* Disable all virtual tables for this parse */ int nRangeReg; /* Size of the temporary register block */ int iRangeReg; /* First register in temporary register block */ int nErr; /* Number of errors seen */ int nTab; /* Number of previously allocated VDBE cursors */ int nMem; /* Number of memory cells used so far */ int szOpAlloc; /* Bytes of memory space allocated for Vdbe.aOp[] */ int iSelfTab; /* Table associated with an index on expr, or negative ** of the base register during check-constraint eval */ int nLabel; /* The *negative* of the number of labels used */ int nLabelAlloc; /* Number of slots in aLabel */ int *aLabel; /* Space to hold the labels */ ExprList *pConstExpr;/* Constant expressions */ Token constraintName;/* Name of the constraint currently being parsed */ yDbMask writeMask; /* Start a write transaction on these databases */ yDbMask cookieMask; /* Bitmask of schema verified databases */ int regRowid; /* Register holding rowid of CREATE TABLE entry */ int regRoot; /* Register holding root page number for new objects */ int nMaxArg; /* Max args passed to user function by sub-program */ int nSelect; /* Number of SELECT stmts. Counter for Select.selId */ #ifndef SQLITE_OMIT_SHARED_CACHE int nTableLock; /* Number of locks in aTableLock */ TableLock *aTableLock; /* Required table locks for shared-cache mode */ #endif AutoincInfo *pAinc; /* Information about AUTOINCREMENT counters */ Parse *pToplevel; /* Parse structure for main program (or NULL) */ Table *pTriggerTab; /* Table triggers are being coded for */ Parse *pParentParse; /* Parent parser if this parser is nested */ AggInfo *pAggList; /* List of all AggInfo objects */ int addrCrTab; /* Address of OP_CreateBtree opcode on CREATE TABLE */ u32 nQueryLoop; /* Est number of iterations of a query (10*log2(N)) */ u32 oldmask; /* Mask of old.* columns referenced */ u32 newmask; /* Mask of new.* columns referenced */ u8 eTriggerOp; /* TK_UPDATE, TK_INSERT or TK_DELETE */ u8 eOrconf; /* Default ON CONFLICT policy for trigger steps */ u8 disableTriggers; /* True to disable triggers */ /************************************************************************** ** Fields above must be initialized to zero. The fields that follow, ** down to the beginning of the recursive section, do not need to be ** initialized as they will be set before being used. The boundary is ** determined by offsetof(Parse,aTempReg). **************************************************************************/ int aTempReg[8]; /* Holding area for temporary registers */ Token sNameToken; /* Token with unqualified schema object name */ /************************************************************************ ** Above is constant between recursions. Below is reset before and after ** each recursion. The boundary between these two regions is determined ** using offsetof(Parse,sLastToken) so the sLastToken field must be the ** first field in the recursive region. ************************************************************************/ Token sLastToken; /* The last token parsed */ ynVar nVar; /* Number of '?' variables seen in the SQL so far */ u8 iPkSortOrder; /* ASC or DESC for INTEGER PRIMARY KEY */ u8 explain; /* True if the EXPLAIN flag is found on the query */ u8 eParseMode; /* PARSE_MODE_XXX constant */ #ifndef SQLITE_OMIT_VIRTUALTABLE int nVtabLock; /* Number of virtual tables to lock */ #endif int nHeight; /* Expression tree height of current sub-select */ #ifndef SQLITE_OMIT_EXPLAIN int addrExplain; /* Address of current OP_Explain opcode */ #endif VList *pVList; /* Mapping between variable names and numbers */ Vdbe *pReprepare; /* VM being reprepared (sqlite3Reprepare()) */ const char *zTail; /* All SQL text past the last semicolon parsed */ Table *pNewTable; /* A table being constructed by CREATE TABLE */ Index *pNewIndex; /* An index being constructed by CREATE INDEX. ** Also used to hold redundant UNIQUE constraints ** during a RENAME COLUMN */ Trigger *pNewTrigger; /* Trigger under construct by a CREATE TRIGGER */ const char *zAuthContext; /* The 6th parameter to db->xAuth callbacks */ #ifndef SQLITE_OMIT_VIRTUALTABLE Token sArg; /* Complete text of a module argument */ Table **apVtabLock; /* Pointer to virtual tables needing locking */ #endif Table *pZombieTab; /* List of Table objects to delete after code gen */ TriggerPrg *pTriggerPrg; /* Linked list of coded triggers */ With *pWith; /* Current WITH clause, or NULL */ With *pWithToFree; /* Free this WITH object at the end of the parse */ #ifndef SQLITE_OMIT_ALTERTABLE RenameToken *pRename; /* Tokens subject to renaming by ALTER TABLE */ #endif }; #define PARSE_MODE_NORMAL 0 #define PARSE_MODE_DECLARE_VTAB 1 #define PARSE_MODE_RENAME 2 #define PARSE_MODE_UNMAP 3 /* ** Sizes and pointers of various parts of the Parse object. */ #define PARSE_HDR_SZ offsetof(Parse,aTempReg) /* Recursive part w/o aColCache*/ #define PARSE_RECURSE_SZ offsetof(Parse,sLastToken) /* Recursive part */ #define PARSE_TAIL_SZ (sizeof(Parse)-PARSE_RECURSE_SZ) /* Non-recursive part */ #define PARSE_TAIL(X) (((char*)(X))+PARSE_RECURSE_SZ) /* Pointer to tail */ /* ** Return true if currently inside an sqlite3_declare_vtab() call. */ #ifdef SQLITE_OMIT_VIRTUALTABLE #define IN_DECLARE_VTAB 0 #else #define IN_DECLARE_VTAB (pParse->eParseMode==PARSE_MODE_DECLARE_VTAB) #endif #if defined(SQLITE_OMIT_ALTERTABLE) #define IN_RENAME_OBJECT 0 #else #define IN_RENAME_OBJECT (pParse->eParseMode>=PARSE_MODE_RENAME) #endif #if defined(SQLITE_OMIT_VIRTUALTABLE) && defined(SQLITE_OMIT_ALTERTABLE) #define IN_SPECIAL_PARSE 0 #else #define IN_SPECIAL_PARSE (pParse->eParseMode!=PARSE_MODE_NORMAL) #endif /* ** An instance of the following structure can be declared on a stack and used ** to save the Parse.zAuthContext value so that it can be restored later. */ struct AuthContext { const char *zAuthContext; /* Put saved Parse.zAuthContext here */ Parse *pParse; /* The Parse structure */ }; /* ** Bitfield flags for P5 value in various opcodes. ** ** Value constraints (enforced via assert()): ** OPFLAG_LENGTHARG == SQLITE_FUNC_LENGTH ** OPFLAG_TYPEOFARG == SQLITE_FUNC_TYPEOF ** OPFLAG_BULKCSR == BTREE_BULKLOAD ** OPFLAG_SEEKEQ == BTREE_SEEK_EQ ** OPFLAG_FORDELETE == BTREE_FORDELETE ** OPFLAG_SAVEPOSITION == BTREE_SAVEPOSITION ** OPFLAG_AUXDELETE == BTREE_AUXDELETE */ #define OPFLAG_NCHANGE 0x01 /* OP_Insert: Set to update db->nChange */ /* Also used in P2 (not P5) of OP_Delete */ #define OPFLAG_NOCHNG 0x01 /* OP_VColumn nochange for UPDATE */ #define OPFLAG_EPHEM 0x01 /* OP_Column: Ephemeral output is ok */ #define OPFLAG_LASTROWID 0x20 /* Set to update db->lastRowid */ #define OPFLAG_ISUPDATE 0x04 /* This OP_Insert is an sql UPDATE */ #define OPFLAG_APPEND 0x08 /* This is likely to be an append */ #define OPFLAG_USESEEKRESULT 0x10 /* Try to avoid a seek in BtreeInsert() */ #define OPFLAG_ISNOOP 0x40 /* OP_Delete does pre-update-hook only */ #define OPFLAG_LENGTHARG 0x40 /* OP_Column only used for length() */ #define OPFLAG_TYPEOFARG 0x80 /* OP_Column only used for typeof() */ #define OPFLAG_BULKCSR 0x01 /* OP_Open** used to open bulk cursor */ #define OPFLAG_SEEKEQ 0x02 /* OP_Open** cursor uses EQ seek only */ #define OPFLAG_FORDELETE 0x08 /* OP_Open should use BTREE_FORDELETE */ #define OPFLAG_P2ISREG 0x10 /* P2 to OP_Open** is a register number */ #define OPFLAG_PERMUTE 0x01 /* OP_Compare: use the permutation */ #define OPFLAG_SAVEPOSITION 0x02 /* OP_Delete/Insert: save cursor pos */ #define OPFLAG_AUXDELETE 0x04 /* OP_Delete: index in a DELETE op */ #define OPFLAG_NOCHNG_MAGIC 0x6d /* OP_MakeRecord: serialtype 10 is ok */ /* * Each trigger present in the database schema is stored as an instance of * struct Trigger. * * Pointers to instances of struct Trigger are stored in two ways. * 1. In the "trigHash" hash table (part of the sqlite3* that represents the * database). This allows Trigger structures to be retrieved by name. * 2. All triggers associated with a single table form a linked list, using the * pNext member of struct Trigger. A pointer to the first element of the * linked list is stored as the "pTrigger" member of the associated * struct Table. * * The "step_list" member points to the first element of a linked list * containing the SQL statements specified as the trigger program. */ struct Trigger { char *zName; /* The name of the trigger */ char *table; /* The table or view to which the trigger applies */ u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT */ u8 tr_tm; /* One of TRIGGER_BEFORE, TRIGGER_AFTER */ Expr *pWhen; /* The WHEN clause of the expression (may be NULL) */ IdList *pColumns; /* If this is an UPDATE OF trigger, the is stored here */ Schema *pSchema; /* Schema containing the trigger */ Schema *pTabSchema; /* Schema containing the table */ TriggerStep *step_list; /* Link list of trigger program steps */ Trigger *pNext; /* Next trigger associated with the table */ }; /* ** A trigger is either a BEFORE or an AFTER trigger. The following constants ** determine which. ** ** If there are multiple triggers, you might of some BEFORE and some AFTER. ** In that cases, the constants below can be ORed together. */ #define TRIGGER_BEFORE 1 #define TRIGGER_AFTER 2 /* * An instance of struct TriggerStep is used to store a single SQL statement * that is a part of a trigger-program. * * Instances of struct TriggerStep are stored in a singly linked list (linked * using the "pNext" member) referenced by the "step_list" member of the * associated struct Trigger instance. The first element of the linked list is * the first step of the trigger-program. * * The "op" member indicates whether this is a "DELETE", "INSERT", "UPDATE" or * "SELECT" statement. The meanings of the other members is determined by the * value of "op" as follows: * * (op == TK_INSERT) * orconf -> stores the ON CONFLICT algorithm * pSelect -> If this is an INSERT INTO ... SELECT ... statement, then * this stores a pointer to the SELECT statement. Otherwise NULL. * zTarget -> Dequoted name of the table to insert into. * pExprList -> If this is an INSERT INTO ... VALUES ... statement, then * this stores values to be inserted. Otherwise NULL. * pIdList -> If this is an INSERT INTO ... () VALUES ... * statement, then this stores the column-names to be * inserted into. * * (op == TK_DELETE) * zTarget -> Dequoted name of the table to delete from. * pWhere -> The WHERE clause of the DELETE statement if one is specified. * Otherwise NULL. * * (op == TK_UPDATE) * zTarget -> Dequoted name of the table to update. * pWhere -> The WHERE clause of the UPDATE statement if one is specified. * Otherwise NULL. * pExprList -> A list of the columns to update and the expressions to update * them to. See sqlite3Update() documentation of "pChanges" * argument. * */ struct TriggerStep { u8 op; /* One of TK_DELETE, TK_UPDATE, TK_INSERT, TK_SELECT */ u8 orconf; /* OE_Rollback etc. */ Trigger *pTrig; /* The trigger that this step is a part of */ Select *pSelect; /* SELECT statement or RHS of INSERT INTO SELECT ... */ char *zTarget; /* Target table for DELETE, UPDATE, INSERT */ SrcList *pFrom; /* FROM clause for UPDATE statement (if any) */ Expr *pWhere; /* The WHERE clause for DELETE or UPDATE steps */ ExprList *pExprList; /* SET clause for UPDATE */ IdList *pIdList; /* Column names for INSERT */ Upsert *pUpsert; /* Upsert clauses on an INSERT */ char *zSpan; /* Original SQL text of this command */ TriggerStep *pNext; /* Next in the link-list */ TriggerStep *pLast; /* Last element in link-list. Valid for 1st elem only */ }; /* ** The following structure contains information used by the sqliteFix... ** routines as they walk the parse tree to make database references ** explicit. */ typedef struct DbFixer DbFixer; struct DbFixer { Parse *pParse; /* The parsing context. Error messages written here */ Schema *pSchema; /* Fix items to this schema */ u8 bTemp; /* True for TEMP schema entries */ const char *zDb; /* Make sure all objects are contained in this database */ const char *zType; /* Type of the container - used for error messages */ const Token *pName; /* Name of the container - used for error messages */ }; /* ** An objected used to accumulate the text of a string where we ** do not necessarily know how big the string will be in the end. */ struct sqlite3_str { sqlite3 *db; /* Optional database for lookaside. Can be NULL */ char *zText; /* The string collected so far */ u32 nAlloc; /* Amount of space allocated in zText */ u32 mxAlloc; /* Maximum allowed allocation. 0 for no malloc usage */ u32 nChar; /* Length of the string so far */ u8 accError; /* SQLITE_NOMEM or SQLITE_TOOBIG */ u8 printfFlags; /* SQLITE_PRINTF flags below */ }; #define SQLITE_PRINTF_INTERNAL 0x01 /* Internal-use-only converters allowed */ #define SQLITE_PRINTF_SQLFUNC 0x02 /* SQL function arguments to VXPrintf */ #define SQLITE_PRINTF_MALLOCED 0x04 /* True if xText is allocated space */ #define isMalloced(X) (((X)->printfFlags & SQLITE_PRINTF_MALLOCED)!=0) /* ** A pointer to this structure is used to communicate information ** from sqlite3Init and OP_ParseSchema into the sqlite3InitCallback. */ typedef struct { sqlite3 *db; /* The database being initialized */ char **pzErrMsg; /* Error message stored here */ int iDb; /* 0 for main database. 1 for TEMP, 2.. for ATTACHed */ int rc; /* Result code stored here */ u32 mInitFlags; /* Flags controlling error messages */ u32 nInitRow; /* Number of rows processed */ Pgno mxPage; /* Maximum page number. 0 for no limit. */ } InitData; /* ** Allowed values for mInitFlags */ #define INITFLAG_AlterTable 0x0001 /* This is a reparse after ALTER TABLE */ /* ** Structure containing global configuration data for the SQLite library. ** ** This structure also contains some state information. */ struct Sqlite3Config { int bMemstat; /* True to enable memory status */ u8 bCoreMutex; /* True to enable core mutexing */ u8 bFullMutex; /* True to enable full mutexing */ u8 bOpenUri; /* True to interpret filenames as URIs */ u8 bUseCis; /* Use covering indices for full-scans */ u8 bSmallMalloc; /* Avoid large memory allocations if true */ u8 bExtraSchemaChecks; /* Verify type,name,tbl_name in schema */ int mxStrlen; /* Maximum string length */ int neverCorrupt; /* Database is always well-formed */ int szLookaside; /* Default lookaside buffer size */ int nLookaside; /* Default lookaside buffer count */ int nStmtSpill; /* Stmt-journal spill-to-disk threshold */ sqlite3_mem_methods m; /* Low-level memory allocation interface */ sqlite3_mutex_methods mutex; /* Low-level mutex interface */ sqlite3_pcache_methods2 pcache2; /* Low-level page-cache interface */ void *pHeap; /* Heap storage space */ int nHeap; /* Size of pHeap[] */ int mnReq, mxReq; /* Min and max heap requests sizes */ sqlite3_int64 szMmap; /* mmap() space per open file */ sqlite3_int64 mxMmap; /* Maximum value for szMmap */ void *pPage; /* Page cache memory */ int szPage; /* Size of each page in pPage[] */ int nPage; /* Number of pages in pPage[] */ int mxParserStack; /* maximum depth of the parser stack */ int sharedCacheEnabled; /* true if shared-cache mode enabled */ u32 szPma; /* Maximum Sorter PMA size */ /* The above might be initialized to non-zero. The following need to always ** initially be zero, however. */ int isInit; /* True after initialization has finished */ int inProgress; /* True while initialization in progress */ int isMutexInit; /* True after mutexes are initialized */ int isMallocInit; /* True after malloc is initialized */ int isPCacheInit; /* True after malloc is initialized */ int nRefInitMutex; /* Number of users of pInitMutex */ sqlite3_mutex *pInitMutex; /* Mutex used by sqlite3_initialize() */ void (*xLog)(void*,int,const char*); /* Function for logging */ void *pLogArg; /* First argument to xLog() */ #ifdef SQLITE_ENABLE_SQLLOG void(*xSqllog)(void*,sqlite3*,const char*, int); void *pSqllogArg; #endif #ifdef SQLITE_VDBE_COVERAGE /* The following callback (if not NULL) is invoked on every VDBE branch ** operation. Set the callback using SQLITE_TESTCTRL_VDBE_COVERAGE. */ void (*xVdbeBranch)(void*,unsigned iSrcLine,u8 eThis,u8 eMx); /* Callback */ void *pVdbeBranchArg; /* 1st argument */ #endif #ifdef SQLITE_ENABLE_DESERIALIZE sqlite3_int64 mxMemdbSize; /* Default max memdb size */ #endif #ifndef SQLITE_UNTESTABLE int (*xTestCallback)(int); /* Invoked by sqlite3FaultSim() */ #endif int bLocaltimeFault; /* True to fail localtime() calls */ int iOnceResetThreshold; /* When to reset OP_Once counters */ u32 szSorterRef; /* Min size in bytes to use sorter-refs */ unsigned int iPrngSeed; /* Alternative fixed seed for the PRNG */ }; /* ** This macro is used inside of assert() statements to indicate that ** the assert is only valid on a well-formed database. Instead of: ** ** assert( X ); ** ** One writes: ** ** assert( X || CORRUPT_DB ); ** ** CORRUPT_DB is true during normal operation. CORRUPT_DB does not indicate ** that the database is definitely corrupt, only that it might be corrupt. ** For most test cases, CORRUPT_DB is set to false using a special ** sqlite3_test_control(). This enables assert() statements to prove ** things that are always true for well-formed databases. */ #define CORRUPT_DB (sqlite3Config.neverCorrupt==0) /* ** Context pointer passed down through the tree-walk. */ struct Walker { Parse *pParse; /* Parser context. */ int (*xExprCallback)(Walker*, Expr*); /* Callback for expressions */ int (*xSelectCallback)(Walker*,Select*); /* Callback for SELECTs */ void (*xSelectCallback2)(Walker*,Select*);/* Second callback for SELECTs */ int walkerDepth; /* Number of subqueries */ u16 eCode; /* A small processing code */ union { /* Extra data for callback */ NameContext *pNC; /* Naming context */ int n; /* A counter */ int iCur; /* A cursor number */ SrcList *pSrcList; /* FROM clause */ struct SrcCount *pSrcCount; /* Counting column references */ struct CCurHint *pCCurHint; /* Used by codeCursorHint() */ int *aiCol; /* array of column indexes */ struct IdxCover *pIdxCover; /* Check for index coverage */ struct IdxExprTrans *pIdxTrans; /* Convert idxed expr to column */ ExprList *pGroupBy; /* GROUP BY clause */ Select *pSelect; /* HAVING to WHERE clause ctx */ struct WindowRewrite *pRewrite; /* Window rewrite context */ struct WhereConst *pConst; /* WHERE clause constants */ struct RenameCtx *pRename; /* RENAME COLUMN context */ struct Table *pTab; /* Table of generated column */ struct SrcList_item *pSrcItem; /* A single FROM clause item */ } u; }; /* Forward declarations */ SQLITE_PRIVATE int sqlite3WalkExpr(Walker*, Expr*); SQLITE_PRIVATE int sqlite3WalkExprList(Walker*, ExprList*); SQLITE_PRIVATE int sqlite3WalkSelect(Walker*, Select*); SQLITE_PRIVATE int sqlite3WalkSelectExpr(Walker*, Select*); SQLITE_PRIVATE int sqlite3WalkSelectFrom(Walker*, Select*); SQLITE_PRIVATE int sqlite3ExprWalkNoop(Walker*, Expr*); SQLITE_PRIVATE int sqlite3SelectWalkNoop(Walker*, Select*); SQLITE_PRIVATE int sqlite3SelectWalkFail(Walker*, Select*); SQLITE_PRIVATE int sqlite3WalkerDepthIncrease(Walker*,Select*); SQLITE_PRIVATE void sqlite3WalkerDepthDecrease(Walker*,Select*); #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3SelectWalkAssert2(Walker*, Select*); #endif /* ** Return code from the parse-tree walking primitives and their ** callbacks. */ #define WRC_Continue 0 /* Continue down into children */ #define WRC_Prune 1 /* Omit children but continue walking siblings */ #define WRC_Abort 2 /* Abandon the tree walk */ /* ** An instance of this structure represents a set of one or more CTEs ** (common table expressions) created by a single WITH clause. */ struct With { int nCte; /* Number of CTEs in the WITH clause */ With *pOuter; /* Containing WITH clause, or NULL */ struct Cte { /* For each CTE in the WITH clause.... */ char *zName; /* Name of this CTE */ ExprList *pCols; /* List of explicit column names, or NULL */ Select *pSelect; /* The definition of this CTE */ const char *zCteErr; /* Error message for circular references */ } a[1]; }; #ifdef SQLITE_DEBUG /* ** An instance of the TreeView object is used for printing the content of ** data structures on sqlite3DebugPrintf() using a tree-like view. */ struct TreeView { int iLevel; /* Which level of the tree we are on */ u8 bLine[100]; /* Draw vertical in column i if bLine[i] is true */ }; #endif /* SQLITE_DEBUG */ /* ** This object is used in various ways, most (but not all) related to window ** functions. ** ** (1) A single instance of this structure is attached to the ** the Expr.y.pWin field for each window function in an expression tree. ** This object holds the information contained in the OVER clause, ** plus additional fields used during code generation. ** ** (2) All window functions in a single SELECT form a linked-list ** attached to Select.pWin. The Window.pFunc and Window.pExpr ** fields point back to the expression that is the window function. ** ** (3) The terms of the WINDOW clause of a SELECT are instances of this ** object on a linked list attached to Select.pWinDefn. ** ** (4) For an aggregate function with a FILTER clause, an instance ** of this object is stored in Expr.y.pWin with eFrmType set to ** TK_FILTER. In this case the only field used is Window.pFilter. ** ** The uses (1) and (2) are really the same Window object that just happens ** to be accessible in two different ways. Use case (3) are separate objects. */ struct Window { char *zName; /* Name of window (may be NULL) */ char *zBase; /* Name of base window for chaining (may be NULL) */ ExprList *pPartition; /* PARTITION BY clause */ ExprList *pOrderBy; /* ORDER BY clause */ u8 eFrmType; /* TK_RANGE, TK_GROUPS, TK_ROWS, or 0 */ u8 eStart; /* UNBOUNDED, CURRENT, PRECEDING or FOLLOWING */ u8 eEnd; /* UNBOUNDED, CURRENT, PRECEDING or FOLLOWING */ u8 bImplicitFrame; /* True if frame was implicitly specified */ u8 eExclude; /* TK_NO, TK_CURRENT, TK_TIES, TK_GROUP, or 0 */ Expr *pStart; /* Expression for " PRECEDING" */ Expr *pEnd; /* Expression for " FOLLOWING" */ Window **ppThis; /* Pointer to this object in Select.pWin list */ Window *pNextWin; /* Next window function belonging to this SELECT */ Expr *pFilter; /* The FILTER expression */ FuncDef *pFunc; /* The function */ int iEphCsr; /* Partition buffer or Peer buffer */ int regAccum; /* Accumulator */ int regResult; /* Interim result */ int csrApp; /* Function cursor (used by min/max) */ int regApp; /* Function register (also used by min/max) */ int regPart; /* Array of registers for PARTITION BY values */ Expr *pOwner; /* Expression object this window is attached to */ int nBufferCol; /* Number of columns in buffer table */ int iArgCol; /* Offset of first argument for this function */ int regOne; /* Register containing constant value 1 */ int regStartRowid; int regEndRowid; u8 bExprArgs; /* Defer evaluation of window function arguments ** due to the SQLITE_SUBTYPE flag */ }; #ifndef SQLITE_OMIT_WINDOWFUNC SQLITE_PRIVATE void sqlite3WindowDelete(sqlite3*, Window*); SQLITE_PRIVATE void sqlite3WindowUnlinkFromSelect(Window*); SQLITE_PRIVATE void sqlite3WindowListDelete(sqlite3 *db, Window *p); SQLITE_PRIVATE Window *sqlite3WindowAlloc(Parse*, int, int, Expr*, int , Expr*, u8); SQLITE_PRIVATE void sqlite3WindowAttach(Parse*, Expr*, Window*); SQLITE_PRIVATE void sqlite3WindowLink(Select *pSel, Window *pWin); SQLITE_PRIVATE int sqlite3WindowCompare(Parse*, Window*, Window*, int); SQLITE_PRIVATE void sqlite3WindowCodeInit(Parse*, Select*); SQLITE_PRIVATE void sqlite3WindowCodeStep(Parse*, Select*, WhereInfo*, int, int); SQLITE_PRIVATE int sqlite3WindowRewrite(Parse*, Select*); SQLITE_PRIVATE int sqlite3ExpandSubquery(Parse*, struct SrcList_item*); SQLITE_PRIVATE void sqlite3WindowUpdate(Parse*, Window*, Window*, FuncDef*); SQLITE_PRIVATE Window *sqlite3WindowDup(sqlite3 *db, Expr *pOwner, Window *p); SQLITE_PRIVATE Window *sqlite3WindowListDup(sqlite3 *db, Window *p); SQLITE_PRIVATE void sqlite3WindowFunctions(void); SQLITE_PRIVATE void sqlite3WindowChain(Parse*, Window*, Window*); SQLITE_PRIVATE Window *sqlite3WindowAssemble(Parse*, Window*, ExprList*, ExprList*, Token*); #else # define sqlite3WindowDelete(a,b) # define sqlite3WindowFunctions() # define sqlite3WindowAttach(a,b,c) #endif /* ** Assuming zIn points to the first byte of a UTF-8 character, ** advance zIn to point to the first byte of the next UTF-8 character. */ #define SQLITE_SKIP_UTF8(zIn) { \ if( (*(zIn++))>=0xc0 ){ \ while( (*zIn & 0xc0)==0x80 ){ zIn++; } \ } \ } /* ** The SQLITE_*_BKPT macros are substitutes for the error codes with ** the same name but without the _BKPT suffix. These macros invoke ** routines that report the line-number on which the error originated ** using sqlite3_log(). The routines also provide a convenient place ** to set a debugger breakpoint. */ SQLITE_PRIVATE int sqlite3ReportError(int iErr, int lineno, const char *zType); SQLITE_PRIVATE int sqlite3CorruptError(int); SQLITE_PRIVATE int sqlite3MisuseError(int); SQLITE_PRIVATE int sqlite3CantopenError(int); #define SQLITE_CORRUPT_BKPT sqlite3CorruptError(__LINE__) #define SQLITE_MISUSE_BKPT sqlite3MisuseError(__LINE__) #define SQLITE_CANTOPEN_BKPT sqlite3CantopenError(__LINE__) #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3NomemError(int); SQLITE_PRIVATE int sqlite3IoerrnomemError(int); # define SQLITE_NOMEM_BKPT sqlite3NomemError(__LINE__) # define SQLITE_IOERR_NOMEM_BKPT sqlite3IoerrnomemError(__LINE__) #else # define SQLITE_NOMEM_BKPT SQLITE_NOMEM # define SQLITE_IOERR_NOMEM_BKPT SQLITE_IOERR_NOMEM #endif #if defined(SQLITE_DEBUG) || defined(SQLITE_ENABLE_CORRUPT_PGNO) SQLITE_PRIVATE int sqlite3CorruptPgnoError(int,Pgno); # define SQLITE_CORRUPT_PGNO(P) sqlite3CorruptPgnoError(__LINE__,(P)) #else # define SQLITE_CORRUPT_PGNO(P) sqlite3CorruptError(__LINE__) #endif /* ** FTS3 and FTS4 both require virtual table support */ #if defined(SQLITE_OMIT_VIRTUALTABLE) # undef SQLITE_ENABLE_FTS3 # undef SQLITE_ENABLE_FTS4 #endif /* ** FTS4 is really an extension for FTS3. It is enabled using the ** SQLITE_ENABLE_FTS3 macro. But to avoid confusion we also call ** the SQLITE_ENABLE_FTS4 macro to serve as an alias for SQLITE_ENABLE_FTS3. */ #if defined(SQLITE_ENABLE_FTS4) && !defined(SQLITE_ENABLE_FTS3) # define SQLITE_ENABLE_FTS3 1 #endif /* ** The ctype.h header is needed for non-ASCII systems. It is also ** needed by FTS3 when FTS3 is included in the amalgamation. */ #if !defined(SQLITE_ASCII) || \ (defined(SQLITE_ENABLE_FTS3) && defined(SQLITE_AMALGAMATION)) # include #endif /* ** The following macros mimic the standard library functions toupper(), ** isspace(), isalnum(), isdigit() and isxdigit(), respectively. The ** sqlite versions only work for ASCII characters, regardless of locale. */ #ifdef SQLITE_ASCII # define sqlite3Toupper(x) ((x)&~(sqlite3CtypeMap[(unsigned char)(x)]&0x20)) # define sqlite3Isspace(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x01) # define sqlite3Isalnum(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x06) # define sqlite3Isalpha(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x02) # define sqlite3Isdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x04) # define sqlite3Isxdigit(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x08) # define sqlite3Tolower(x) (sqlite3UpperToLower[(unsigned char)(x)]) # define sqlite3Isquote(x) (sqlite3CtypeMap[(unsigned char)(x)]&0x80) #else # define sqlite3Toupper(x) toupper((unsigned char)(x)) # define sqlite3Isspace(x) isspace((unsigned char)(x)) # define sqlite3Isalnum(x) isalnum((unsigned char)(x)) # define sqlite3Isalpha(x) isalpha((unsigned char)(x)) # define sqlite3Isdigit(x) isdigit((unsigned char)(x)) # define sqlite3Isxdigit(x) isxdigit((unsigned char)(x)) # define sqlite3Tolower(x) tolower((unsigned char)(x)) # define sqlite3Isquote(x) ((x)=='"'||(x)=='\''||(x)=='['||(x)=='`') #endif SQLITE_PRIVATE int sqlite3IsIdChar(u8); /* ** Internal function prototypes */ SQLITE_PRIVATE int sqlite3StrICmp(const char*,const char*); SQLITE_PRIVATE int sqlite3Strlen30(const char*); #define sqlite3Strlen30NN(C) (strlen(C)&0x3fffffff) SQLITE_PRIVATE char *sqlite3ColumnType(Column*,char*); #define sqlite3StrNICmp sqlite3_strnicmp SQLITE_PRIVATE int sqlite3MallocInit(void); SQLITE_PRIVATE void sqlite3MallocEnd(void); SQLITE_PRIVATE void *sqlite3Malloc(u64); SQLITE_PRIVATE void *sqlite3MallocZero(u64); SQLITE_PRIVATE void *sqlite3DbMallocZero(sqlite3*, u64); SQLITE_PRIVATE void *sqlite3DbMallocRaw(sqlite3*, u64); SQLITE_PRIVATE void *sqlite3DbMallocRawNN(sqlite3*, u64); SQLITE_PRIVATE char *sqlite3DbStrDup(sqlite3*,const char*); SQLITE_PRIVATE char *sqlite3DbStrNDup(sqlite3*,const char*, u64); SQLITE_PRIVATE char *sqlite3DbSpanDup(sqlite3*,const char*,const char*); SQLITE_PRIVATE void *sqlite3Realloc(void*, u64); SQLITE_PRIVATE void *sqlite3DbReallocOrFree(sqlite3 *, void *, u64); SQLITE_PRIVATE void *sqlite3DbRealloc(sqlite3 *, void *, u64); SQLITE_PRIVATE void sqlite3DbFree(sqlite3*, void*); SQLITE_PRIVATE void sqlite3DbFreeNN(sqlite3*, void*); SQLITE_PRIVATE int sqlite3MallocSize(void*); SQLITE_PRIVATE int sqlite3DbMallocSize(sqlite3*, void*); SQLITE_PRIVATE void *sqlite3PageMalloc(int); SQLITE_PRIVATE void sqlite3PageFree(void*); SQLITE_PRIVATE void sqlite3MemSetDefault(void); #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE void sqlite3BenignMallocHooks(void (*)(void), void (*)(void)); #endif SQLITE_PRIVATE int sqlite3HeapNearlyFull(void); /* ** On systems with ample stack space and that support alloca(), make ** use of alloca() to obtain space for large automatic objects. By default, ** obtain space from malloc(). ** ** The alloca() routine never returns NULL. This will cause code paths ** that deal with sqlite3StackAlloc() failures to be unreachable. */ #ifdef SQLITE_USE_ALLOCA # define sqlite3StackAllocRaw(D,N) alloca(N) # define sqlite3StackAllocZero(D,N) memset(alloca(N), 0, N) # define sqlite3StackFree(D,P) #else # define sqlite3StackAllocRaw(D,N) sqlite3DbMallocRaw(D,N) # define sqlite3StackAllocZero(D,N) sqlite3DbMallocZero(D,N) # define sqlite3StackFree(D,P) sqlite3DbFree(D,P) #endif /* Do not allow both MEMSYS5 and MEMSYS3 to be defined together. If they ** are, disable MEMSYS3 */ #ifdef SQLITE_ENABLE_MEMSYS5 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void); #undef SQLITE_ENABLE_MEMSYS3 #endif #ifdef SQLITE_ENABLE_MEMSYS3 SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void); #endif #ifndef SQLITE_MUTEX_OMIT SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void); SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3NoopMutex(void); SQLITE_PRIVATE sqlite3_mutex *sqlite3MutexAlloc(int); SQLITE_PRIVATE int sqlite3MutexInit(void); SQLITE_PRIVATE int sqlite3MutexEnd(void); #endif #if !defined(SQLITE_MUTEX_OMIT) && !defined(SQLITE_MUTEX_NOOP) SQLITE_PRIVATE void sqlite3MemoryBarrier(void); #else # define sqlite3MemoryBarrier() #endif SQLITE_PRIVATE sqlite3_int64 sqlite3StatusValue(int); SQLITE_PRIVATE void sqlite3StatusUp(int, int); SQLITE_PRIVATE void sqlite3StatusDown(int, int); SQLITE_PRIVATE void sqlite3StatusHighwater(int, int); SQLITE_PRIVATE int sqlite3LookasideUsed(sqlite3*,int*); /* Access to mutexes used by sqlite3_status() */ SQLITE_PRIVATE sqlite3_mutex *sqlite3Pcache1Mutex(void); SQLITE_PRIVATE sqlite3_mutex *sqlite3MallocMutex(void); #if defined(SQLITE_ENABLE_MULTITHREADED_CHECKS) && !defined(SQLITE_MUTEX_OMIT) SQLITE_PRIVATE void sqlite3MutexWarnOnContention(sqlite3_mutex*); #else # define sqlite3MutexWarnOnContention(x) #endif #ifndef SQLITE_OMIT_FLOATING_POINT # define EXP754 (((u64)0x7ff)<<52) # define MAN754 ((((u64)1)<<52)-1) # define IsNaN(X) (((X)&EXP754)==EXP754 && ((X)&MAN754)!=0) SQLITE_PRIVATE int sqlite3IsNaN(double); #else # define IsNaN(X) 0 # define sqlite3IsNaN(X) 0 #endif /* ** An instance of the following structure holds information about SQL ** functions arguments that are the parameters to the printf() function. */ struct PrintfArguments { int nArg; /* Total number of arguments */ int nUsed; /* Number of arguments used so far */ sqlite3_value **apArg; /* The argument values */ }; SQLITE_PRIVATE char *sqlite3MPrintf(sqlite3*,const char*, ...); SQLITE_PRIVATE char *sqlite3VMPrintf(sqlite3*,const char*, va_list); #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) SQLITE_PRIVATE void sqlite3DebugPrintf(const char*, ...); #endif #if defined(SQLITE_TEST) SQLITE_PRIVATE void *sqlite3TestTextToPtr(const char*); #endif #if defined(SQLITE_DEBUG) SQLITE_PRIVATE void sqlite3TreeViewExpr(TreeView*, const Expr*, u8); SQLITE_PRIVATE void sqlite3TreeViewBareExprList(TreeView*, const ExprList*, const char*); SQLITE_PRIVATE void sqlite3TreeViewExprList(TreeView*, const ExprList*, u8, const char*); SQLITE_PRIVATE void sqlite3TreeViewSrcList(TreeView*, const SrcList*); SQLITE_PRIVATE void sqlite3TreeViewSelect(TreeView*, const Select*, u8); SQLITE_PRIVATE void sqlite3TreeViewWith(TreeView*, const With*, u8); #ifndef SQLITE_OMIT_WINDOWFUNC SQLITE_PRIVATE void sqlite3TreeViewWindow(TreeView*, const Window*, u8); SQLITE_PRIVATE void sqlite3TreeViewWinFunc(TreeView*, const Window*, u8); #endif #endif SQLITE_PRIVATE void sqlite3SetString(char **, sqlite3*, const char*); SQLITE_PRIVATE void sqlite3ErrorMsg(Parse*, const char*, ...); SQLITE_PRIVATE int sqlite3ErrorToParser(sqlite3*,int); SQLITE_PRIVATE void sqlite3Dequote(char*); SQLITE_PRIVATE void sqlite3DequoteExpr(Expr*); SQLITE_PRIVATE void sqlite3TokenInit(Token*,char*); SQLITE_PRIVATE int sqlite3KeywordCode(const unsigned char*, int); SQLITE_PRIVATE int sqlite3RunParser(Parse*, const char*, char **); SQLITE_PRIVATE void sqlite3FinishCoding(Parse*); SQLITE_PRIVATE int sqlite3GetTempReg(Parse*); SQLITE_PRIVATE void sqlite3ReleaseTempReg(Parse*,int); SQLITE_PRIVATE int sqlite3GetTempRange(Parse*,int); SQLITE_PRIVATE void sqlite3ReleaseTempRange(Parse*,int,int); SQLITE_PRIVATE void sqlite3ClearTempRegCache(Parse*); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3NoTempsInRange(Parse*,int,int); #endif SQLITE_PRIVATE Expr *sqlite3ExprAlloc(sqlite3*,int,const Token*,int); SQLITE_PRIVATE Expr *sqlite3Expr(sqlite3*,int,const char*); SQLITE_PRIVATE void sqlite3ExprAttachSubtrees(sqlite3*,Expr*,Expr*,Expr*); SQLITE_PRIVATE Expr *sqlite3PExpr(Parse*, int, Expr*, Expr*); SQLITE_PRIVATE void sqlite3PExprAddSelect(Parse*, Expr*, Select*); SQLITE_PRIVATE Expr *sqlite3ExprAnd(Parse*,Expr*, Expr*); SQLITE_PRIVATE Expr *sqlite3ExprSimplifiedAndOr(Expr*); SQLITE_PRIVATE Expr *sqlite3ExprFunction(Parse*,ExprList*, Token*, int); SQLITE_PRIVATE void sqlite3ExprFunctionUsable(Parse*,Expr*,FuncDef*); SQLITE_PRIVATE void sqlite3ExprAssignVarNumber(Parse*, Expr*, u32); SQLITE_PRIVATE void sqlite3ExprDelete(sqlite3*, Expr*); SQLITE_PRIVATE void sqlite3ExprUnmapAndDelete(Parse*, Expr*); SQLITE_PRIVATE ExprList *sqlite3ExprListAppend(Parse*,ExprList*,Expr*); SQLITE_PRIVATE ExprList *sqlite3ExprListAppendVector(Parse*,ExprList*,IdList*,Expr*); SQLITE_PRIVATE void sqlite3ExprListSetSortOrder(ExprList*,int,int); SQLITE_PRIVATE void sqlite3ExprListSetName(Parse*,ExprList*,Token*,int); SQLITE_PRIVATE void sqlite3ExprListSetSpan(Parse*,ExprList*,const char*,const char*); SQLITE_PRIVATE void sqlite3ExprListDelete(sqlite3*, ExprList*); SQLITE_PRIVATE u32 sqlite3ExprListFlags(const ExprList*); SQLITE_PRIVATE int sqlite3IndexHasDuplicateRootPage(Index*); SQLITE_PRIVATE int sqlite3Init(sqlite3*, char**); SQLITE_PRIVATE int sqlite3InitCallback(void*, int, char**, char**); SQLITE_PRIVATE int sqlite3InitOne(sqlite3*, int, char**, u32); SQLITE_PRIVATE void sqlite3Pragma(Parse*,Token*,Token*,Token*,int); #ifndef SQLITE_OMIT_VIRTUALTABLE SQLITE_PRIVATE Module *sqlite3PragmaVtabRegister(sqlite3*,const char *zName); #endif SQLITE_PRIVATE void sqlite3ResetAllSchemasOfConnection(sqlite3*); SQLITE_PRIVATE void sqlite3ResetOneSchema(sqlite3*,int); SQLITE_PRIVATE void sqlite3CollapseDatabaseArray(sqlite3*); SQLITE_PRIVATE void sqlite3CommitInternalChanges(sqlite3*); SQLITE_PRIVATE void sqlite3DeleteColumnNames(sqlite3*,Table*); SQLITE_PRIVATE int sqlite3ColumnsFromExprList(Parse*,ExprList*,i16*,Column**); SQLITE_PRIVATE void sqlite3SelectAddColumnTypeAndCollation(Parse*,Table*,Select*,char); SQLITE_PRIVATE Table *sqlite3ResultSetOfSelect(Parse*,Select*,char); SQLITE_PRIVATE void sqlite3OpenSchemaTable(Parse *, int); SQLITE_PRIVATE Index *sqlite3PrimaryKeyIndex(Table*); SQLITE_PRIVATE i16 sqlite3TableColumnToIndex(Index*, i16); #ifdef SQLITE_OMIT_GENERATED_COLUMNS # define sqlite3TableColumnToStorage(T,X) (X) /* No-op pass-through */ # define sqlite3StorageColumnToTable(T,X) (X) /* No-op pass-through */ #else SQLITE_PRIVATE i16 sqlite3TableColumnToStorage(Table*, i16); SQLITE_PRIVATE i16 sqlite3StorageColumnToTable(Table*, i16); #endif SQLITE_PRIVATE void sqlite3StartTable(Parse*,Token*,Token*,int,int,int,int); #if SQLITE_ENABLE_HIDDEN_COLUMNS SQLITE_PRIVATE void sqlite3ColumnPropertiesFromName(Table*, Column*); #else # define sqlite3ColumnPropertiesFromName(T,C) /* no-op */ #endif SQLITE_PRIVATE void sqlite3AddColumn(Parse*,Token*,Token*); SQLITE_PRIVATE void sqlite3AddNotNull(Parse*, int); SQLITE_PRIVATE void sqlite3AddPrimaryKey(Parse*, ExprList*, int, int, int); SQLITE_PRIVATE void sqlite3AddCheckConstraint(Parse*, Expr*); SQLITE_PRIVATE void sqlite3AddDefaultValue(Parse*,Expr*,const char*,const char*); SQLITE_PRIVATE void sqlite3AddCollateType(Parse*, Token*); SQLITE_PRIVATE void sqlite3AddGenerated(Parse*,Expr*,Token*); SQLITE_PRIVATE void sqlite3EndTable(Parse*,Token*,Token*,u8,Select*); SQLITE_PRIVATE int sqlite3ParseUri(const char*,const char*,unsigned int*, sqlite3_vfs**,char**,char **); #define sqlite3CodecQueryParameters(A,B,C) 0 SQLITE_PRIVATE Btree *sqlite3DbNameToBtree(sqlite3*,const char*); #ifdef SQLITE_UNTESTABLE # define sqlite3FaultSim(X) SQLITE_OK #else SQLITE_PRIVATE int sqlite3FaultSim(int); #endif SQLITE_PRIVATE Bitvec *sqlite3BitvecCreate(u32); SQLITE_PRIVATE int sqlite3BitvecTest(Bitvec*, u32); SQLITE_PRIVATE int sqlite3BitvecTestNotNull(Bitvec*, u32); SQLITE_PRIVATE int sqlite3BitvecSet(Bitvec*, u32); SQLITE_PRIVATE void sqlite3BitvecClear(Bitvec*, u32, void*); SQLITE_PRIVATE void sqlite3BitvecDestroy(Bitvec*); SQLITE_PRIVATE u32 sqlite3BitvecSize(Bitvec*); #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE int sqlite3BitvecBuiltinTest(int,int*); #endif SQLITE_PRIVATE RowSet *sqlite3RowSetInit(sqlite3*); SQLITE_PRIVATE void sqlite3RowSetDelete(void*); SQLITE_PRIVATE void sqlite3RowSetClear(void*); SQLITE_PRIVATE void sqlite3RowSetInsert(RowSet*, i64); SQLITE_PRIVATE int sqlite3RowSetTest(RowSet*, int iBatch, i64); SQLITE_PRIVATE int sqlite3RowSetNext(RowSet*, i64*); SQLITE_PRIVATE void sqlite3CreateView(Parse*,Token*,Token*,Token*,ExprList*,Select*,int,int); #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) SQLITE_PRIVATE int sqlite3ViewGetColumnNames(Parse*,Table*); #else # define sqlite3ViewGetColumnNames(A,B) 0 #endif #if SQLITE_MAX_ATTACHED>30 SQLITE_PRIVATE int sqlite3DbMaskAllZero(yDbMask); #endif SQLITE_PRIVATE void sqlite3DropTable(Parse*, SrcList*, int, int); SQLITE_PRIVATE void sqlite3CodeDropTable(Parse*, Table*, int, int); SQLITE_PRIVATE void sqlite3DeleteTable(sqlite3*, Table*); SQLITE_PRIVATE void sqlite3FreeIndex(sqlite3*, Index*); #ifndef SQLITE_OMIT_AUTOINCREMENT SQLITE_PRIVATE void sqlite3AutoincrementBegin(Parse *pParse); SQLITE_PRIVATE void sqlite3AutoincrementEnd(Parse *pParse); #else # define sqlite3AutoincrementBegin(X) # define sqlite3AutoincrementEnd(X) #endif SQLITE_PRIVATE void sqlite3Insert(Parse*, SrcList*, Select*, IdList*, int, Upsert*); #ifndef SQLITE_OMIT_GENERATED_COLUMNS SQLITE_PRIVATE void sqlite3ComputeGeneratedColumns(Parse*, int, Table*); #endif SQLITE_PRIVATE void *sqlite3ArrayAllocate(sqlite3*,void*,int,int*,int*); SQLITE_PRIVATE IdList *sqlite3IdListAppend(Parse*, IdList*, Token*); SQLITE_PRIVATE int sqlite3IdListIndex(IdList*,const char*); SQLITE_PRIVATE SrcList *sqlite3SrcListEnlarge(Parse*, SrcList*, int, int); SQLITE_PRIVATE SrcList *sqlite3SrcListAppendList(Parse *pParse, SrcList *p1, SrcList *p2); SQLITE_PRIVATE SrcList *sqlite3SrcListAppend(Parse*, SrcList*, Token*, Token*); SQLITE_PRIVATE SrcList *sqlite3SrcListAppendFromTerm(Parse*, SrcList*, Token*, Token*, Token*, Select*, Expr*, IdList*); SQLITE_PRIVATE void sqlite3SrcListIndexedBy(Parse *, SrcList *, Token *); SQLITE_PRIVATE void sqlite3SrcListFuncArgs(Parse*, SrcList*, ExprList*); SQLITE_PRIVATE int sqlite3IndexedByLookup(Parse *, struct SrcList_item *); SQLITE_PRIVATE void sqlite3SrcListShiftJoinType(SrcList*); SQLITE_PRIVATE void sqlite3SrcListAssignCursors(Parse*, SrcList*); SQLITE_PRIVATE void sqlite3IdListDelete(sqlite3*, IdList*); SQLITE_PRIVATE void sqlite3SrcListDelete(sqlite3*, SrcList*); SQLITE_PRIVATE Index *sqlite3AllocateIndexObject(sqlite3*,i16,int,char**); SQLITE_PRIVATE void sqlite3CreateIndex(Parse*,Token*,Token*,SrcList*,ExprList*,int,Token*, Expr*, int, int, u8); SQLITE_PRIVATE void sqlite3DropIndex(Parse*, SrcList*, int); SQLITE_PRIVATE int sqlite3Select(Parse*, Select*, SelectDest*); SQLITE_PRIVATE Select *sqlite3SelectNew(Parse*,ExprList*,SrcList*,Expr*,ExprList*, Expr*,ExprList*,u32,Expr*); SQLITE_PRIVATE void sqlite3SelectDelete(sqlite3*, Select*); SQLITE_PRIVATE Table *sqlite3SrcListLookup(Parse*, SrcList*); SQLITE_PRIVATE int sqlite3IsReadOnly(Parse*, Table*, int); SQLITE_PRIVATE void sqlite3OpenTable(Parse*, int iCur, int iDb, Table*, int); #if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) && !defined(SQLITE_OMIT_SUBQUERY) SQLITE_PRIVATE Expr *sqlite3LimitWhere(Parse*,SrcList*,Expr*,ExprList*,Expr*,char*); #endif SQLITE_PRIVATE void sqlite3DeleteFrom(Parse*, SrcList*, Expr*, ExprList*, Expr*); SQLITE_PRIVATE void sqlite3Update(Parse*, SrcList*, ExprList*,Expr*,int,ExprList*,Expr*, Upsert*); SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin(Parse*,SrcList*,Expr*,ExprList*,ExprList*,u16,int); SQLITE_PRIVATE void sqlite3WhereEnd(WhereInfo*); SQLITE_PRIVATE LogEst sqlite3WhereOutputRowCount(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereIsDistinct(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereIsOrdered(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereOrderByLimitOptLabel(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereIsSorted(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereContinueLabel(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereBreakLabel(WhereInfo*); SQLITE_PRIVATE int sqlite3WhereOkOnePass(WhereInfo*, int*); #define ONEPASS_OFF 0 /* Use of ONEPASS not allowed */ #define ONEPASS_SINGLE 1 /* ONEPASS valid for a single row update */ #define ONEPASS_MULTI 2 /* ONEPASS is valid for multiple rows */ SQLITE_PRIVATE int sqlite3WhereUsesDeferredSeek(WhereInfo*); SQLITE_PRIVATE void sqlite3ExprCodeLoadIndexColumn(Parse*, Index*, int, int, int); SQLITE_PRIVATE int sqlite3ExprCodeGetColumn(Parse*, Table*, int, int, int, u8); SQLITE_PRIVATE void sqlite3ExprCodeGetColumnOfTable(Vdbe*, Table*, int, int, int); SQLITE_PRIVATE void sqlite3ExprCodeMove(Parse*, int, int, int); SQLITE_PRIVATE void sqlite3ExprCode(Parse*, Expr*, int); #ifndef SQLITE_OMIT_GENERATED_COLUMNS SQLITE_PRIVATE void sqlite3ExprCodeGeneratedColumn(Parse*, Column*, int); #endif SQLITE_PRIVATE void sqlite3ExprCodeCopy(Parse*, Expr*, int); SQLITE_PRIVATE void sqlite3ExprCodeFactorable(Parse*, Expr*, int); SQLITE_PRIVATE int sqlite3ExprCodeRunJustOnce(Parse*, Expr*, int); SQLITE_PRIVATE int sqlite3ExprCodeTemp(Parse*, Expr*, int*); SQLITE_PRIVATE int sqlite3ExprCodeTarget(Parse*, Expr*, int); SQLITE_PRIVATE int sqlite3ExprCodeExprList(Parse*, ExprList*, int, int, u8); #define SQLITE_ECEL_DUP 0x01 /* Deep, not shallow copies */ #define SQLITE_ECEL_FACTOR 0x02 /* Factor out constant terms */ #define SQLITE_ECEL_REF 0x04 /* Use ExprList.u.x.iOrderByCol */ #define SQLITE_ECEL_OMITREF 0x08 /* Omit if ExprList.u.x.iOrderByCol */ SQLITE_PRIVATE void sqlite3ExprIfTrue(Parse*, Expr*, int, int); SQLITE_PRIVATE void sqlite3ExprIfFalse(Parse*, Expr*, int, int); SQLITE_PRIVATE void sqlite3ExprIfFalseDup(Parse*, Expr*, int, int); SQLITE_PRIVATE Table *sqlite3FindTable(sqlite3*,const char*, const char*); #define LOCATE_VIEW 0x01 #define LOCATE_NOERR 0x02 SQLITE_PRIVATE Table *sqlite3LocateTable(Parse*,u32 flags,const char*, const char*); SQLITE_PRIVATE Table *sqlite3LocateTableItem(Parse*,u32 flags,struct SrcList_item *); SQLITE_PRIVATE Index *sqlite3FindIndex(sqlite3*,const char*, const char*); SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTable(sqlite3*,int,const char*); SQLITE_PRIVATE void sqlite3UnlinkAndDeleteIndex(sqlite3*,int,const char*); SQLITE_PRIVATE void sqlite3Vacuum(Parse*,Token*,Expr*); SQLITE_PRIVATE int sqlite3RunVacuum(char**, sqlite3*, int, sqlite3_value*); SQLITE_PRIVATE char *sqlite3NameFromToken(sqlite3*, Token*); SQLITE_PRIVATE int sqlite3ExprCompare(Parse*,Expr*, Expr*, int); SQLITE_PRIVATE int sqlite3ExprCompareSkip(Expr*, Expr*, int); SQLITE_PRIVATE int sqlite3ExprListCompare(ExprList*, ExprList*, int); SQLITE_PRIVATE int sqlite3ExprImpliesExpr(Parse*,Expr*, Expr*, int); SQLITE_PRIVATE int sqlite3ExprImpliesNonNullRow(Expr*,int); SQLITE_PRIVATE void sqlite3AggInfoPersistWalkerInit(Walker*,Parse*); SQLITE_PRIVATE void sqlite3ExprAnalyzeAggregates(NameContext*, Expr*); SQLITE_PRIVATE void sqlite3ExprAnalyzeAggList(NameContext*,ExprList*); SQLITE_PRIVATE int sqlite3ExprCoveredByIndex(Expr*, int iCur, Index *pIdx); SQLITE_PRIVATE int sqlite3FunctionUsesThisSrc(Expr*, SrcList*); SQLITE_PRIVATE Vdbe *sqlite3GetVdbe(Parse*); #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE void sqlite3PrngSaveState(void); SQLITE_PRIVATE void sqlite3PrngRestoreState(void); #endif SQLITE_PRIVATE void sqlite3RollbackAll(sqlite3*,int); SQLITE_PRIVATE void sqlite3CodeVerifySchema(Parse*, int); SQLITE_PRIVATE void sqlite3CodeVerifyNamedSchema(Parse*, const char *zDb); SQLITE_PRIVATE void sqlite3BeginTransaction(Parse*, int); SQLITE_PRIVATE void sqlite3EndTransaction(Parse*,int); SQLITE_PRIVATE void sqlite3Savepoint(Parse*, int, Token*); SQLITE_PRIVATE void sqlite3CloseSavepoints(sqlite3 *); SQLITE_PRIVATE void sqlite3LeaveMutexAndCloseZombie(sqlite3*); SQLITE_PRIVATE u32 sqlite3IsTrueOrFalse(const char*); SQLITE_PRIVATE int sqlite3ExprIdToTrueFalse(Expr*); SQLITE_PRIVATE int sqlite3ExprTruthValue(const Expr*); SQLITE_PRIVATE int sqlite3ExprIsConstant(Expr*); SQLITE_PRIVATE int sqlite3ExprIsConstantNotJoin(Expr*); SQLITE_PRIVATE int sqlite3ExprIsConstantOrFunction(Expr*, u8); SQLITE_PRIVATE int sqlite3ExprIsConstantOrGroupBy(Parse*, Expr*, ExprList*); SQLITE_PRIVATE int sqlite3ExprIsTableConstant(Expr*,int); #ifdef SQLITE_ENABLE_CURSOR_HINTS SQLITE_PRIVATE int sqlite3ExprContainsSubquery(Expr*); #endif SQLITE_PRIVATE int sqlite3ExprIsInteger(Expr*, int*); SQLITE_PRIVATE int sqlite3ExprCanBeNull(const Expr*); SQLITE_PRIVATE int sqlite3ExprNeedsNoAffinityChange(const Expr*, char); SQLITE_PRIVATE int sqlite3IsRowid(const char*); SQLITE_PRIVATE void sqlite3GenerateRowDelete( Parse*,Table*,Trigger*,int,int,int,i16,u8,u8,u8,int); SQLITE_PRIVATE void sqlite3GenerateRowIndexDelete(Parse*, Table*, int, int, int*, int); SQLITE_PRIVATE int sqlite3GenerateIndexKey(Parse*, Index*, int, int, int, int*,Index*,int); SQLITE_PRIVATE void sqlite3ResolvePartIdxLabel(Parse*,int); SQLITE_PRIVATE int sqlite3ExprReferencesUpdatedColumn(Expr*,int*,int); SQLITE_PRIVATE void sqlite3GenerateConstraintChecks(Parse*,Table*,int*,int,int,int,int, u8,u8,int,int*,int*,Upsert*); #ifdef SQLITE_ENABLE_NULL_TRIM SQLITE_PRIVATE void sqlite3SetMakeRecordP5(Vdbe*,Table*); #else # define sqlite3SetMakeRecordP5(A,B) #endif SQLITE_PRIVATE void sqlite3CompleteInsertion(Parse*,Table*,int,int,int,int*,int,int,int); SQLITE_PRIVATE int sqlite3OpenTableAndIndices(Parse*, Table*, int, u8, int, u8*, int*, int*); SQLITE_PRIVATE void sqlite3BeginWriteOperation(Parse*, int, int); SQLITE_PRIVATE void sqlite3MultiWrite(Parse*); SQLITE_PRIVATE void sqlite3MayAbort(Parse*); SQLITE_PRIVATE void sqlite3HaltConstraint(Parse*, int, int, char*, i8, u8); SQLITE_PRIVATE void sqlite3UniqueConstraint(Parse*, int, Index*); SQLITE_PRIVATE void sqlite3RowidConstraint(Parse*, int, Table*); SQLITE_PRIVATE Expr *sqlite3ExprDup(sqlite3*,Expr*,int); SQLITE_PRIVATE ExprList *sqlite3ExprListDup(sqlite3*,ExprList*,int); SQLITE_PRIVATE SrcList *sqlite3SrcListDup(sqlite3*,SrcList*,int); SQLITE_PRIVATE IdList *sqlite3IdListDup(sqlite3*,IdList*); SQLITE_PRIVATE Select *sqlite3SelectDup(sqlite3*,Select*,int); SQLITE_PRIVATE FuncDef *sqlite3FunctionSearch(int,const char*); SQLITE_PRIVATE void sqlite3InsertBuiltinFuncs(FuncDef*,int); SQLITE_PRIVATE FuncDef *sqlite3FindFunction(sqlite3*,const char*,int,u8,u8); SQLITE_PRIVATE void sqlite3RegisterBuiltinFunctions(void); SQLITE_PRIVATE void sqlite3RegisterDateTimeFunctions(void); SQLITE_PRIVATE void sqlite3RegisterPerConnectionBuiltinFunctions(sqlite3*); SQLITE_PRIVATE int sqlite3SafetyCheckOk(sqlite3*); SQLITE_PRIVATE int sqlite3SafetyCheckSickOrOk(sqlite3*); SQLITE_PRIVATE void sqlite3ChangeCookie(Parse*, int); #if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) SQLITE_PRIVATE void sqlite3MaterializeView(Parse*, Table*, Expr*, ExprList*,Expr*,int); #endif #ifndef SQLITE_OMIT_TRIGGER SQLITE_PRIVATE void sqlite3BeginTrigger(Parse*, Token*,Token*,int,int,IdList*,SrcList*, Expr*,int, int); SQLITE_PRIVATE void sqlite3FinishTrigger(Parse*, TriggerStep*, Token*); SQLITE_PRIVATE void sqlite3DropTrigger(Parse*, SrcList*, int); SQLITE_PRIVATE void sqlite3DropTriggerPtr(Parse*, Trigger*); SQLITE_PRIVATE Trigger *sqlite3TriggersExist(Parse *, Table*, int, ExprList*, int *pMask); SQLITE_PRIVATE Trigger *sqlite3TriggerList(Parse *, Table *); SQLITE_PRIVATE void sqlite3CodeRowTrigger(Parse*, Trigger *, int, ExprList*, int, Table *, int, int, int); SQLITE_PRIVATE void sqlite3CodeRowTriggerDirect(Parse *, Trigger *, Table *, int, int, int); void sqliteViewTriggers(Parse*, Table*, Expr*, int, ExprList*); SQLITE_PRIVATE void sqlite3DeleteTriggerStep(sqlite3*, TriggerStep*); SQLITE_PRIVATE TriggerStep *sqlite3TriggerSelectStep(sqlite3*,Select*, const char*,const char*); SQLITE_PRIVATE TriggerStep *sqlite3TriggerInsertStep(Parse*,Token*, IdList*, Select*,u8,Upsert*, const char*,const char*); SQLITE_PRIVATE TriggerStep *sqlite3TriggerUpdateStep(Parse*,Token*,SrcList*,ExprList*, Expr*, u8, const char*,const char*); SQLITE_PRIVATE TriggerStep *sqlite3TriggerDeleteStep(Parse*,Token*, Expr*, const char*,const char*); SQLITE_PRIVATE void sqlite3DeleteTrigger(sqlite3*, Trigger*); SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTrigger(sqlite3*,int,const char*); SQLITE_PRIVATE u32 sqlite3TriggerColmask(Parse*,Trigger*,ExprList*,int,int,Table*,int); SQLITE_PRIVATE SrcList *sqlite3TriggerStepSrc(Parse*, TriggerStep*); # define sqlite3ParseToplevel(p) ((p)->pToplevel ? (p)->pToplevel : (p)) # define sqlite3IsToplevel(p) ((p)->pToplevel==0) #else # define sqlite3TriggersExist(B,C,D,E,F) 0 # define sqlite3DeleteTrigger(A,B) # define sqlite3DropTriggerPtr(A,B) # define sqlite3UnlinkAndDeleteTrigger(A,B,C) # define sqlite3CodeRowTrigger(A,B,C,D,E,F,G,H,I) # define sqlite3CodeRowTriggerDirect(A,B,C,D,E,F) # define sqlite3TriggerList(X, Y) 0 # define sqlite3ParseToplevel(p) p # define sqlite3IsToplevel(p) 1 # define sqlite3TriggerColmask(A,B,C,D,E,F,G) 0 # define sqlite3TriggerStepSrc(A,B) 0 #endif SQLITE_PRIVATE int sqlite3JoinType(Parse*, Token*, Token*, Token*); SQLITE_PRIVATE void sqlite3SetJoinExpr(Expr*,int); SQLITE_PRIVATE void sqlite3CreateForeignKey(Parse*, ExprList*, Token*, ExprList*, int); SQLITE_PRIVATE void sqlite3DeferForeignKey(Parse*, int); #ifndef SQLITE_OMIT_AUTHORIZATION SQLITE_PRIVATE void sqlite3AuthRead(Parse*,Expr*,Schema*,SrcList*); SQLITE_PRIVATE int sqlite3AuthCheck(Parse*,int, const char*, const char*, const char*); SQLITE_PRIVATE void sqlite3AuthContextPush(Parse*, AuthContext*, const char*); SQLITE_PRIVATE void sqlite3AuthContextPop(AuthContext*); SQLITE_PRIVATE int sqlite3AuthReadCol(Parse*, const char *, const char *, int); #else # define sqlite3AuthRead(a,b,c,d) # define sqlite3AuthCheck(a,b,c,d,e) SQLITE_OK # define sqlite3AuthContextPush(a,b,c) # define sqlite3AuthContextPop(a) ((void)(a)) #endif SQLITE_PRIVATE int sqlite3DbIsNamed(sqlite3 *db, int iDb, const char *zName); SQLITE_PRIVATE void sqlite3Attach(Parse*, Expr*, Expr*, Expr*); SQLITE_PRIVATE void sqlite3Detach(Parse*, Expr*); SQLITE_PRIVATE void sqlite3FixInit(DbFixer*, Parse*, int, const char*, const Token*); SQLITE_PRIVATE int sqlite3FixSrcList(DbFixer*, SrcList*); SQLITE_PRIVATE int sqlite3FixSelect(DbFixer*, Select*); SQLITE_PRIVATE int sqlite3FixExpr(DbFixer*, Expr*); SQLITE_PRIVATE int sqlite3FixExprList(DbFixer*, ExprList*); SQLITE_PRIVATE int sqlite3FixTriggerStep(DbFixer*, TriggerStep*); SQLITE_PRIVATE int sqlite3RealSameAsInt(double,sqlite3_int64); SQLITE_PRIVATE void sqlite3Int64ToText(i64,char*); SQLITE_PRIVATE int sqlite3AtoF(const char *z, double*, int, u8); SQLITE_PRIVATE int sqlite3GetInt32(const char *, int*); SQLITE_PRIVATE int sqlite3GetUInt32(const char*, u32*); SQLITE_PRIVATE int sqlite3Atoi(const char*); #ifndef SQLITE_OMIT_UTF16 SQLITE_PRIVATE int sqlite3Utf16ByteLen(const void *pData, int nChar); #endif SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *pData, int nByte); SQLITE_PRIVATE u32 sqlite3Utf8Read(const u8**); SQLITE_PRIVATE LogEst sqlite3LogEst(u64); SQLITE_PRIVATE LogEst sqlite3LogEstAdd(LogEst,LogEst); #ifndef SQLITE_OMIT_VIRTUALTABLE SQLITE_PRIVATE LogEst sqlite3LogEstFromDouble(double); #endif #if defined(SQLITE_ENABLE_STMT_SCANSTATUS) || \ defined(SQLITE_ENABLE_STAT4) || \ defined(SQLITE_EXPLAIN_ESTIMATED_ROWS) SQLITE_PRIVATE u64 sqlite3LogEstToInt(LogEst); #endif SQLITE_PRIVATE VList *sqlite3VListAdd(sqlite3*,VList*,const char*,int,int); SQLITE_PRIVATE const char *sqlite3VListNumToName(VList*,int); SQLITE_PRIVATE int sqlite3VListNameToNum(VList*,const char*,int); /* ** Routines to read and write variable-length integers. These used to ** be defined locally, but now we use the varint routines in the util.c ** file. */ SQLITE_PRIVATE int sqlite3PutVarint(unsigned char*, u64); SQLITE_PRIVATE u8 sqlite3GetVarint(const unsigned char *, u64 *); SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *, u32 *); SQLITE_PRIVATE int sqlite3VarintLen(u64 v); /* ** The common case is for a varint to be a single byte. They following ** macros handle the common case without a procedure call, but then call ** the procedure for larger varints. */ #define getVarint32(A,B) \ (u8)((*(A)<(u8)0x80)?((B)=(u32)*(A)),1:sqlite3GetVarint32((A),(u32 *)&(B))) #define getVarint32NR(A,B) \ B=(u32)*(A);if(B>=0x80)sqlite3GetVarint32((A),(u32*)&(B)) #define putVarint32(A,B) \ (u8)(((u32)(B)<(u32)0x80)?(*(A)=(unsigned char)(B)),1:\ sqlite3PutVarint((A),(B))) #define getVarint sqlite3GetVarint #define putVarint sqlite3PutVarint SQLITE_PRIVATE const char *sqlite3IndexAffinityStr(sqlite3*, Index*); SQLITE_PRIVATE void sqlite3TableAffinity(Vdbe*, Table*, int); SQLITE_PRIVATE char sqlite3CompareAffinity(const Expr *pExpr, char aff2); SQLITE_PRIVATE int sqlite3IndexAffinityOk(const Expr *pExpr, char idx_affinity); SQLITE_PRIVATE char sqlite3TableColumnAffinity(Table*,int); SQLITE_PRIVATE char sqlite3ExprAffinity(const Expr *pExpr); SQLITE_PRIVATE int sqlite3Atoi64(const char*, i64*, int, u8); SQLITE_PRIVATE int sqlite3DecOrHexToI64(const char*, i64*); SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3*, int, const char*,...); SQLITE_PRIVATE void sqlite3Error(sqlite3*,int); SQLITE_PRIVATE void sqlite3SystemError(sqlite3*,int); SQLITE_PRIVATE void *sqlite3HexToBlob(sqlite3*, const char *z, int n); SQLITE_PRIVATE u8 sqlite3HexToInt(int h); SQLITE_PRIVATE int sqlite3TwoPartName(Parse *, Token *, Token *, Token **); #if defined(SQLITE_NEED_ERR_NAME) SQLITE_PRIVATE const char *sqlite3ErrName(int); #endif #ifdef SQLITE_ENABLE_DESERIALIZE SQLITE_PRIVATE int sqlite3MemdbInit(void); #endif SQLITE_PRIVATE const char *sqlite3ErrStr(int); SQLITE_PRIVATE int sqlite3ReadSchema(Parse *pParse); SQLITE_PRIVATE CollSeq *sqlite3FindCollSeq(sqlite3*,u8 enc, const char*,int); SQLITE_PRIVATE int sqlite3IsBinary(const CollSeq*); SQLITE_PRIVATE CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char*zName); SQLITE_PRIVATE void sqlite3SetTextEncoding(sqlite3 *db, u8); SQLITE_PRIVATE CollSeq *sqlite3ExprCollSeq(Parse *pParse, const Expr *pExpr); SQLITE_PRIVATE CollSeq *sqlite3ExprNNCollSeq(Parse *pParse, const Expr *pExpr); SQLITE_PRIVATE int sqlite3ExprCollSeqMatch(Parse*,const Expr*,const Expr*); SQLITE_PRIVATE Expr *sqlite3ExprAddCollateToken(Parse *pParse, Expr*, const Token*, int); SQLITE_PRIVATE Expr *sqlite3ExprAddCollateString(Parse*,Expr*,const char*); SQLITE_PRIVATE Expr *sqlite3ExprSkipCollate(Expr*); SQLITE_PRIVATE Expr *sqlite3ExprSkipCollateAndLikely(Expr*); SQLITE_PRIVATE int sqlite3CheckCollSeq(Parse *, CollSeq *); SQLITE_PRIVATE int sqlite3WritableSchema(sqlite3*); SQLITE_PRIVATE int sqlite3CheckObjectName(Parse*, const char*,const char*,const char*); SQLITE_PRIVATE void sqlite3VdbeSetChanges(sqlite3 *, int); SQLITE_PRIVATE int sqlite3AddInt64(i64*,i64); SQLITE_PRIVATE int sqlite3SubInt64(i64*,i64); SQLITE_PRIVATE int sqlite3MulInt64(i64*,i64); SQLITE_PRIVATE int sqlite3AbsInt32(int); #ifdef SQLITE_ENABLE_8_3_NAMES SQLITE_PRIVATE void sqlite3FileSuffix3(const char*, char*); #else # define sqlite3FileSuffix3(X,Y) #endif SQLITE_PRIVATE u8 sqlite3GetBoolean(const char *z,u8); SQLITE_PRIVATE const void *sqlite3ValueText(sqlite3_value*, u8); SQLITE_PRIVATE int sqlite3ValueBytes(sqlite3_value*, u8); SQLITE_PRIVATE void sqlite3ValueSetStr(sqlite3_value*, int, const void *,u8, void(*)(void*)); SQLITE_PRIVATE void sqlite3ValueSetNull(sqlite3_value*); SQLITE_PRIVATE void sqlite3ValueFree(sqlite3_value*); #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE void sqlite3ResultIntReal(sqlite3_context*); #endif SQLITE_PRIVATE sqlite3_value *sqlite3ValueNew(sqlite3 *); #ifndef SQLITE_OMIT_UTF16 SQLITE_PRIVATE char *sqlite3Utf16to8(sqlite3 *, const void*, int, u8); #endif SQLITE_PRIVATE int sqlite3ValueFromExpr(sqlite3 *, Expr *, u8, u8, sqlite3_value **); SQLITE_PRIVATE void sqlite3ValueApplyAffinity(sqlite3_value *, u8, u8); #ifndef SQLITE_AMALGAMATION SQLITE_PRIVATE const unsigned char sqlite3OpcodeProperty[]; SQLITE_PRIVATE const char sqlite3StrBINARY[]; SQLITE_PRIVATE const unsigned char sqlite3UpperToLower[]; SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[]; SQLITE_PRIVATE SQLITE_WSD struct Sqlite3Config sqlite3Config; SQLITE_PRIVATE FuncDefHash sqlite3BuiltinFunctions; SQLITE_API extern u32 sqlite3_unsupported_selecttrace; #ifndef SQLITE_OMIT_WSD SQLITE_PRIVATE int sqlite3PendingByte; #endif #endif /* SQLITE_AMALGAMATION */ #ifdef VDBE_PROFILE SQLITE_PRIVATE sqlite3_uint64 sqlite3NProfileCnt; #endif SQLITE_PRIVATE void sqlite3RootPageMoved(sqlite3*, int, Pgno, Pgno); SQLITE_PRIVATE void sqlite3Reindex(Parse*, Token*, Token*); SQLITE_PRIVATE void sqlite3AlterFunctions(void); SQLITE_PRIVATE void sqlite3AlterRenameTable(Parse*, SrcList*, Token*); SQLITE_PRIVATE void sqlite3AlterRenameColumn(Parse*, SrcList*, Token*, Token*); SQLITE_PRIVATE int sqlite3GetToken(const unsigned char *, int *); SQLITE_PRIVATE void sqlite3NestedParse(Parse*, const char*, ...); SQLITE_PRIVATE void sqlite3ExpirePreparedStatements(sqlite3*, int); SQLITE_PRIVATE void sqlite3CodeRhsOfIN(Parse*, Expr*, int); SQLITE_PRIVATE int sqlite3CodeSubselect(Parse*, Expr*); SQLITE_PRIVATE void sqlite3SelectPrep(Parse*, Select*, NameContext*); SQLITE_PRIVATE void sqlite3SelectWrongNumTermsError(Parse *pParse, Select *p); SQLITE_PRIVATE int sqlite3MatchEName( const struct ExprList_item*, const char*, const char*, const char* ); SQLITE_PRIVATE Bitmask sqlite3ExprColUsed(Expr*); SQLITE_PRIVATE u8 sqlite3StrIHash(const char*); SQLITE_PRIVATE int sqlite3ResolveExprNames(NameContext*, Expr*); SQLITE_PRIVATE int sqlite3ResolveExprListNames(NameContext*, ExprList*); SQLITE_PRIVATE void sqlite3ResolveSelectNames(Parse*, Select*, NameContext*); SQLITE_PRIVATE int sqlite3ResolveSelfReference(Parse*,Table*,int,Expr*,ExprList*); SQLITE_PRIVATE int sqlite3ResolveOrderGroupBy(Parse*, Select*, ExprList*, const char*); SQLITE_PRIVATE void sqlite3ColumnDefault(Vdbe *, Table *, int, int); SQLITE_PRIVATE void sqlite3AlterFinishAddColumn(Parse *, Token *); SQLITE_PRIVATE void sqlite3AlterBeginAddColumn(Parse *, SrcList *); SQLITE_PRIVATE void *sqlite3RenameTokenMap(Parse*, void*, Token*); SQLITE_PRIVATE void sqlite3RenameTokenRemap(Parse*, void *pTo, void *pFrom); SQLITE_PRIVATE void sqlite3RenameExprUnmap(Parse*, Expr*); SQLITE_PRIVATE void sqlite3RenameExprlistUnmap(Parse*, ExprList*); SQLITE_PRIVATE CollSeq *sqlite3GetCollSeq(Parse*, u8, CollSeq *, const char*); SQLITE_PRIVATE char sqlite3AffinityType(const char*, Column*); SQLITE_PRIVATE void sqlite3Analyze(Parse*, Token*, Token*); SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler*); SQLITE_PRIVATE int sqlite3FindDb(sqlite3*, Token*); SQLITE_PRIVATE int sqlite3FindDbName(sqlite3 *, const char *); SQLITE_PRIVATE int sqlite3AnalysisLoad(sqlite3*,int iDB); SQLITE_PRIVATE void sqlite3DeleteIndexSamples(sqlite3*,Index*); SQLITE_PRIVATE void sqlite3DefaultRowEst(Index*); SQLITE_PRIVATE void sqlite3RegisterLikeFunctions(sqlite3*, int); SQLITE_PRIVATE int sqlite3IsLikeFunction(sqlite3*,Expr*,int*,char*); SQLITE_PRIVATE void sqlite3SchemaClear(void *); SQLITE_PRIVATE Schema *sqlite3SchemaGet(sqlite3 *, Btree *); SQLITE_PRIVATE int sqlite3SchemaToIndex(sqlite3 *db, Schema *); SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoAlloc(sqlite3*,int,int); SQLITE_PRIVATE void sqlite3KeyInfoUnref(KeyInfo*); SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoRef(KeyInfo*); SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoOfIndex(Parse*, Index*); SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoFromExprList(Parse*, ExprList*, int, int); SQLITE_PRIVATE int sqlite3HasExplicitNulls(Parse*, ExprList*); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3KeyInfoIsWriteable(KeyInfo*); #endif SQLITE_PRIVATE int sqlite3CreateFunc(sqlite3 *, const char *, int, int, void *, void (*)(sqlite3_context*,int,sqlite3_value **), void (*)(sqlite3_context*,int,sqlite3_value **), void (*)(sqlite3_context*), void (*)(sqlite3_context*), void (*)(sqlite3_context*,int,sqlite3_value **), FuncDestructor *pDestructor ); SQLITE_PRIVATE void sqlite3NoopDestructor(void*); SQLITE_PRIVATE void sqlite3OomFault(sqlite3*); SQLITE_PRIVATE void sqlite3OomClear(sqlite3*); SQLITE_PRIVATE int sqlite3ApiExit(sqlite3 *db, int); SQLITE_PRIVATE int sqlite3OpenTempDatabase(Parse *); SQLITE_PRIVATE void sqlite3StrAccumInit(StrAccum*, sqlite3*, char*, int, int); SQLITE_PRIVATE char *sqlite3StrAccumFinish(StrAccum*); SQLITE_PRIVATE void sqlite3SelectDestInit(SelectDest*,int,int); SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *, SrcList *, int, int); SQLITE_PRIVATE void sqlite3BackupRestart(sqlite3_backup *); SQLITE_PRIVATE void sqlite3BackupUpdate(sqlite3_backup *, Pgno, const u8 *); #ifndef SQLITE_OMIT_SUBQUERY SQLITE_PRIVATE int sqlite3ExprCheckIN(Parse*, Expr*); #else # define sqlite3ExprCheckIN(x,y) SQLITE_OK #endif #ifdef SQLITE_ENABLE_STAT4 SQLITE_PRIVATE int sqlite3Stat4ProbeSetValue( Parse*,Index*,UnpackedRecord**,Expr*,int,int,int*); SQLITE_PRIVATE int sqlite3Stat4ValueFromExpr(Parse*, Expr*, u8, sqlite3_value**); SQLITE_PRIVATE void sqlite3Stat4ProbeFree(UnpackedRecord*); SQLITE_PRIVATE int sqlite3Stat4Column(sqlite3*, const void*, int, int, sqlite3_value**); SQLITE_PRIVATE char sqlite3IndexColumnAffinity(sqlite3*, Index*, int); #endif /* ** The interface to the LEMON-generated parser */ #ifndef SQLITE_AMALGAMATION SQLITE_PRIVATE void *sqlite3ParserAlloc(void*(*)(u64), Parse*); SQLITE_PRIVATE void sqlite3ParserFree(void*, void(*)(void*)); #endif SQLITE_PRIVATE void sqlite3Parser(void*, int, Token); SQLITE_PRIVATE int sqlite3ParserFallback(int); #ifdef YYTRACKMAXSTACKDEPTH SQLITE_PRIVATE int sqlite3ParserStackPeak(void*); #endif SQLITE_PRIVATE void sqlite3AutoLoadExtensions(sqlite3*); #ifndef SQLITE_OMIT_LOAD_EXTENSION SQLITE_PRIVATE void sqlite3CloseExtensions(sqlite3*); #else # define sqlite3CloseExtensions(X) #endif #ifndef SQLITE_OMIT_SHARED_CACHE SQLITE_PRIVATE void sqlite3TableLock(Parse *, int, Pgno, u8, const char *); #else #define sqlite3TableLock(v,w,x,y,z) #endif #ifdef SQLITE_TEST SQLITE_PRIVATE int sqlite3Utf8To8(unsigned char*); #endif #ifdef SQLITE_OMIT_VIRTUALTABLE # define sqlite3VtabClear(Y) # define sqlite3VtabSync(X,Y) SQLITE_OK # define sqlite3VtabRollback(X) # define sqlite3VtabCommit(X) # define sqlite3VtabInSync(db) 0 # define sqlite3VtabLock(X) # define sqlite3VtabUnlock(X) # define sqlite3VtabModuleUnref(D,X) # define sqlite3VtabUnlockList(X) # define sqlite3VtabSavepoint(X, Y, Z) SQLITE_OK # define sqlite3GetVTable(X,Y) ((VTable*)0) #else SQLITE_PRIVATE void sqlite3VtabClear(sqlite3 *db, Table*); SQLITE_PRIVATE void sqlite3VtabDisconnect(sqlite3 *db, Table *p); SQLITE_PRIVATE int sqlite3VtabSync(sqlite3 *db, Vdbe*); SQLITE_PRIVATE int sqlite3VtabRollback(sqlite3 *db); SQLITE_PRIVATE int sqlite3VtabCommit(sqlite3 *db); SQLITE_PRIVATE void sqlite3VtabLock(VTable *); SQLITE_PRIVATE void sqlite3VtabUnlock(VTable *); SQLITE_PRIVATE void sqlite3VtabModuleUnref(sqlite3*,Module*); SQLITE_PRIVATE void sqlite3VtabUnlockList(sqlite3*); SQLITE_PRIVATE int sqlite3VtabSavepoint(sqlite3 *, int, int); SQLITE_PRIVATE void sqlite3VtabImportErrmsg(Vdbe*, sqlite3_vtab*); SQLITE_PRIVATE VTable *sqlite3GetVTable(sqlite3*, Table*); SQLITE_PRIVATE Module *sqlite3VtabCreateModule( sqlite3*, const char*, const sqlite3_module*, void*, void(*)(void*) ); # define sqlite3VtabInSync(db) ((db)->nVTrans>0 && (db)->aVTrans==0) #endif SQLITE_PRIVATE int sqlite3ReadOnlyShadowTables(sqlite3 *db); #ifndef SQLITE_OMIT_VIRTUALTABLE SQLITE_PRIVATE int sqlite3ShadowTableName(sqlite3 *db, const char *zName); SQLITE_PRIVATE int sqlite3IsShadowTableOf(sqlite3*,Table*,const char*); #else # define sqlite3ShadowTableName(A,B) 0 # define sqlite3IsShadowTableOf(A,B,C) 0 #endif SQLITE_PRIVATE int sqlite3VtabEponymousTableInit(Parse*,Module*); SQLITE_PRIVATE void sqlite3VtabEponymousTableClear(sqlite3*,Module*); SQLITE_PRIVATE void sqlite3VtabMakeWritable(Parse*,Table*); SQLITE_PRIVATE void sqlite3VtabBeginParse(Parse*, Token*, Token*, Token*, int); SQLITE_PRIVATE void sqlite3VtabFinishParse(Parse*, Token*); SQLITE_PRIVATE void sqlite3VtabArgInit(Parse*); SQLITE_PRIVATE void sqlite3VtabArgExtend(Parse*, Token*); SQLITE_PRIVATE int sqlite3VtabCallCreate(sqlite3*, int, const char *, char **); SQLITE_PRIVATE int sqlite3VtabCallConnect(Parse*, Table*); SQLITE_PRIVATE int sqlite3VtabCallDestroy(sqlite3*, int, const char *); SQLITE_PRIVATE int sqlite3VtabBegin(sqlite3 *, VTable *); SQLITE_PRIVATE FuncDef *sqlite3VtabOverloadFunction(sqlite3 *,FuncDef*, int nArg, Expr*); SQLITE_PRIVATE sqlite3_int64 sqlite3StmtCurrentTime(sqlite3_context*); SQLITE_PRIVATE int sqlite3VdbeParameterIndex(Vdbe*, const char*, int); SQLITE_PRIVATE int sqlite3TransferBindings(sqlite3_stmt *, sqlite3_stmt *); SQLITE_PRIVATE void sqlite3ParserReset(Parse*); #ifdef SQLITE_ENABLE_NORMALIZE SQLITE_PRIVATE char *sqlite3Normalize(Vdbe*, const char*); #endif SQLITE_PRIVATE int sqlite3Reprepare(Vdbe*); SQLITE_PRIVATE void sqlite3ExprListCheckLength(Parse*, ExprList*, const char*); SQLITE_PRIVATE CollSeq *sqlite3ExprCompareCollSeq(Parse*,const Expr*); SQLITE_PRIVATE CollSeq *sqlite3BinaryCompareCollSeq(Parse *, const Expr*, const Expr*); SQLITE_PRIVATE int sqlite3TempInMemory(const sqlite3*); SQLITE_PRIVATE const char *sqlite3JournalModename(int); #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3Checkpoint(sqlite3*, int, int, int*, int*); SQLITE_PRIVATE int sqlite3WalDefaultHook(void*,sqlite3*,const char*,int); #endif #ifndef SQLITE_OMIT_CTE SQLITE_PRIVATE With *sqlite3WithAdd(Parse*,With*,Token*,ExprList*,Select*); SQLITE_PRIVATE void sqlite3WithDelete(sqlite3*,With*); SQLITE_PRIVATE void sqlite3WithPush(Parse*, With*, u8); #else #define sqlite3WithPush(x,y,z) #define sqlite3WithDelete(x,y) #endif #ifndef SQLITE_OMIT_UPSERT SQLITE_PRIVATE Upsert *sqlite3UpsertNew(sqlite3*,ExprList*,Expr*,ExprList*,Expr*); SQLITE_PRIVATE void sqlite3UpsertDelete(sqlite3*,Upsert*); SQLITE_PRIVATE Upsert *sqlite3UpsertDup(sqlite3*,Upsert*); SQLITE_PRIVATE int sqlite3UpsertAnalyzeTarget(Parse*,SrcList*,Upsert*); SQLITE_PRIVATE void sqlite3UpsertDoUpdate(Parse*,Upsert*,Table*,Index*,int); #else #define sqlite3UpsertNew(v,w,x,y,z) ((Upsert*)0) #define sqlite3UpsertDelete(x,y) #define sqlite3UpsertDup(x,y) ((Upsert*)0) #endif /* Declarations for functions in fkey.c. All of these are replaced by ** no-op macros if OMIT_FOREIGN_KEY is defined. In this case no foreign ** key functionality is available. If OMIT_TRIGGER is defined but ** OMIT_FOREIGN_KEY is not, only some of the functions are no-oped. In ** this case foreign keys are parsed, but no other functionality is ** provided (enforcement of FK constraints requires the triggers sub-system). */ #if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) SQLITE_PRIVATE void sqlite3FkCheck(Parse*, Table*, int, int, int*, int); SQLITE_PRIVATE void sqlite3FkDropTable(Parse*, SrcList *, Table*); SQLITE_PRIVATE void sqlite3FkActions(Parse*, Table*, ExprList*, int, int*, int); SQLITE_PRIVATE int sqlite3FkRequired(Parse*, Table*, int*, int); SQLITE_PRIVATE u32 sqlite3FkOldmask(Parse*, Table*); SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *); #else #define sqlite3FkActions(a,b,c,d,e,f) #define sqlite3FkCheck(a,b,c,d,e,f) #define sqlite3FkDropTable(a,b,c) #define sqlite3FkOldmask(a,b) 0 #define sqlite3FkRequired(a,b,c,d) 0 #define sqlite3FkReferences(a) 0 #endif #ifndef SQLITE_OMIT_FOREIGN_KEY SQLITE_PRIVATE void sqlite3FkDelete(sqlite3 *, Table*); SQLITE_PRIVATE int sqlite3FkLocateIndex(Parse*,Table*,FKey*,Index**,int**); #else #define sqlite3FkDelete(a,b) #define sqlite3FkLocateIndex(a,b,c,d,e) #endif /* ** Available fault injectors. Should be numbered beginning with 0. */ #define SQLITE_FAULTINJECTOR_MALLOC 0 #define SQLITE_FAULTINJECTOR_COUNT 1 /* ** The interface to the code in fault.c used for identifying "benign" ** malloc failures. This is only present if SQLITE_UNTESTABLE ** is not defined. */ #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE void sqlite3BeginBenignMalloc(void); SQLITE_PRIVATE void sqlite3EndBenignMalloc(void); #else #define sqlite3BeginBenignMalloc() #define sqlite3EndBenignMalloc() #endif /* ** Allowed return values from sqlite3FindInIndex() */ #define IN_INDEX_ROWID 1 /* Search the rowid of the table */ #define IN_INDEX_EPH 2 /* Search an ephemeral b-tree */ #define IN_INDEX_INDEX_ASC 3 /* Existing index ASCENDING */ #define IN_INDEX_INDEX_DESC 4 /* Existing index DESCENDING */ #define IN_INDEX_NOOP 5 /* No table available. Use comparisons */ /* ** Allowed flags for the 3rd parameter to sqlite3FindInIndex(). */ #define IN_INDEX_NOOP_OK 0x0001 /* OK to return IN_INDEX_NOOP */ #define IN_INDEX_MEMBERSHIP 0x0002 /* IN operator used for membership test */ #define IN_INDEX_LOOP 0x0004 /* IN operator used as a loop */ SQLITE_PRIVATE int sqlite3FindInIndex(Parse *, Expr *, u32, int*, int*, int*); SQLITE_PRIVATE int sqlite3JournalOpen(sqlite3_vfs *, const char *, sqlite3_file *, int, int); SQLITE_PRIVATE int sqlite3JournalSize(sqlite3_vfs *); #if defined(SQLITE_ENABLE_ATOMIC_WRITE) \ || defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) SQLITE_PRIVATE int sqlite3JournalCreate(sqlite3_file *); #endif SQLITE_PRIVATE int sqlite3JournalIsInMemory(sqlite3_file *p); SQLITE_PRIVATE void sqlite3MemJournalOpen(sqlite3_file *); SQLITE_PRIVATE void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p); #if SQLITE_MAX_EXPR_DEPTH>0 SQLITE_PRIVATE int sqlite3SelectExprHeight(Select *); SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse*, int); #else #define sqlite3SelectExprHeight(x) 0 #define sqlite3ExprCheckHeight(x,y) #endif SQLITE_PRIVATE u32 sqlite3Get4byte(const u8*); SQLITE_PRIVATE void sqlite3Put4byte(u8*, u32); #ifdef SQLITE_ENABLE_UNLOCK_NOTIFY SQLITE_PRIVATE void sqlite3ConnectionBlocked(sqlite3 *, sqlite3 *); SQLITE_PRIVATE void sqlite3ConnectionUnlocked(sqlite3 *db); SQLITE_PRIVATE void sqlite3ConnectionClosed(sqlite3 *db); #else #define sqlite3ConnectionBlocked(x,y) #define sqlite3ConnectionUnlocked(x) #define sqlite3ConnectionClosed(x) #endif #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3ParserTrace(FILE*, char *); #endif #if defined(YYCOVERAGE) SQLITE_PRIVATE int sqlite3ParserCoverage(FILE*); #endif /* ** If the SQLITE_ENABLE IOTRACE exists then the global variable ** sqlite3IoTrace is a pointer to a printf-like routine used to ** print I/O tracing messages. */ #ifdef SQLITE_ENABLE_IOTRACE # define IOTRACE(A) if( sqlite3IoTrace ){ sqlite3IoTrace A; } SQLITE_PRIVATE void sqlite3VdbeIOTraceSql(Vdbe*); SQLITE_API SQLITE_EXTERN void (SQLITE_CDECL *sqlite3IoTrace)(const char*,...); #else # define IOTRACE(A) # define sqlite3VdbeIOTraceSql(X) #endif /* ** These routines are available for the mem2.c debugging memory allocator ** only. They are used to verify that different "types" of memory ** allocations are properly tracked by the system. ** ** sqlite3MemdebugSetType() sets the "type" of an allocation to one of ** the MEMTYPE_* macros defined below. The type must be a bitmask with ** a single bit set. ** ** sqlite3MemdebugHasType() returns true if any of the bits in its second ** argument match the type set by the previous sqlite3MemdebugSetType(). ** sqlite3MemdebugHasType() is intended for use inside assert() statements. ** ** sqlite3MemdebugNoType() returns true if none of the bits in its second ** argument match the type set by the previous sqlite3MemdebugSetType(). ** ** Perhaps the most important point is the difference between MEMTYPE_HEAP ** and MEMTYPE_LOOKASIDE. If an allocation is MEMTYPE_LOOKASIDE, that means ** it might have been allocated by lookaside, except the allocation was ** too large or lookaside was already full. It is important to verify ** that allocations that might have been satisfied by lookaside are not ** passed back to non-lookaside free() routines. Asserts such as the ** example above are placed on the non-lookaside free() routines to verify ** this constraint. ** ** All of this is no-op for a production build. It only comes into ** play when the SQLITE_MEMDEBUG compile-time option is used. */ #ifdef SQLITE_MEMDEBUG SQLITE_PRIVATE void sqlite3MemdebugSetType(void*,u8); SQLITE_PRIVATE int sqlite3MemdebugHasType(void*,u8); SQLITE_PRIVATE int sqlite3MemdebugNoType(void*,u8); #else # define sqlite3MemdebugSetType(X,Y) /* no-op */ # define sqlite3MemdebugHasType(X,Y) 1 # define sqlite3MemdebugNoType(X,Y) 1 #endif #define MEMTYPE_HEAP 0x01 /* General heap allocations */ #define MEMTYPE_LOOKASIDE 0x02 /* Heap that might have been lookaside */ #define MEMTYPE_PCACHE 0x04 /* Page cache allocations */ /* ** Threading interface */ #if SQLITE_MAX_WORKER_THREADS>0 SQLITE_PRIVATE int sqlite3ThreadCreate(SQLiteThread**,void*(*)(void*),void*); SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread*, void**); #endif #if defined(SQLITE_ENABLE_DBPAGE_VTAB) || defined(SQLITE_TEST) SQLITE_PRIVATE int sqlite3DbpageRegister(sqlite3*); #endif #if defined(SQLITE_ENABLE_DBSTAT_VTAB) || defined(SQLITE_TEST) SQLITE_PRIVATE int sqlite3DbstatRegister(sqlite3*); #endif SQLITE_PRIVATE int sqlite3ExprVectorSize(Expr *pExpr); SQLITE_PRIVATE int sqlite3ExprIsVector(Expr *pExpr); SQLITE_PRIVATE Expr *sqlite3VectorFieldSubexpr(Expr*, int); SQLITE_PRIVATE Expr *sqlite3ExprForVectorField(Parse*,Expr*,int); SQLITE_PRIVATE void sqlite3VectorErrorMsg(Parse*, Expr*); #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS SQLITE_PRIVATE const char **sqlite3CompileOptions(int *pnOpt); #endif #endif /* SQLITEINT_H */ /************** End of sqliteInt.h *******************************************/ /************** Begin file global.c ******************************************/ /* ** 2008 June 13 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains definitions of global variables and constants. */ /* #include "sqliteInt.h" */ /* An array to map all upper-case characters into their corresponding ** lower-case character. ** ** SQLite only considers US-ASCII (or EBCDIC) characters. We do not ** handle case conversions for the UTF character set since the tables ** involved are nearly as big or bigger than SQLite itself. */ SQLITE_PRIVATE const unsigned char sqlite3UpperToLower[] = { #ifdef SQLITE_ASCII 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 97, 98, 99,100,101,102,103, 104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121, 122, 91, 92, 93, 94, 95, 96, 97, 98, 99,100,101,102,103,104,105,106,107, 108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125, 126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161, 162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179, 180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197, 198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215, 216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233, 234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251, 252,253,254,255 #endif #ifdef SQLITE_EBCDIC 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, /* 0x */ 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, /* 1x */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, /* 2x */ 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, /* 3x */ 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, /* 4x */ 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, /* 5x */ 96, 97, 98, 99,100,101,102,103,104,105,106,107,108,109,110,111, /* 6x */ 112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127, /* 7x */ 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, /* 8x */ 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159, /* 9x */ 160,161,162,163,164,165,166,167,168,169,170,171,140,141,142,175, /* Ax */ 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191, /* Bx */ 192,129,130,131,132,133,134,135,136,137,202,203,204,205,206,207, /* Cx */ 208,145,146,147,148,149,150,151,152,153,218,219,220,221,222,223, /* Dx */ 224,225,162,163,164,165,166,167,168,169,234,235,236,237,238,239, /* Ex */ 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255, /* Fx */ #endif }; /* ** The following 256 byte lookup table is used to support SQLites built-in ** equivalents to the following standard library functions: ** ** isspace() 0x01 ** isalpha() 0x02 ** isdigit() 0x04 ** isalnum() 0x06 ** isxdigit() 0x08 ** toupper() 0x20 ** SQLite identifier character 0x40 ** Quote character 0x80 ** ** Bit 0x20 is set if the mapped character requires translation to upper ** case. i.e. if the character is a lower-case ASCII character. ** If x is a lower-case ASCII character, then its upper-case equivalent ** is (x - 0x20). Therefore toupper() can be implemented as: ** ** (x & ~(map[x]&0x20)) ** ** The equivalent of tolower() is implemented using the sqlite3UpperToLower[] ** array. tolower() is used more often than toupper() by SQLite. ** ** Bit 0x40 is set if the character is non-alphanumeric and can be used in an ** SQLite identifier. Identifiers are alphanumerics, "_", "$", and any ** non-ASCII UTF character. Hence the test for whether or not a character is ** part of an identifier is 0x46. */ SQLITE_PRIVATE const unsigned char sqlite3CtypeMap[256] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 00..07 ........ */ 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, /* 08..0f ........ */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 10..17 ........ */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 18..1f ........ */ 0x01, 0x00, 0x80, 0x00, 0x40, 0x00, 0x00, 0x80, /* 20..27 !"#$%&' */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 28..2f ()*+,-./ */ 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, 0x0c, /* 30..37 01234567 */ 0x0c, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 38..3f 89:;<=>? */ 0x00, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x0a, 0x02, /* 40..47 @ABCDEFG */ 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, /* 48..4f HIJKLMNO */ 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, /* 50..57 PQRSTUVW */ 0x02, 0x02, 0x02, 0x80, 0x00, 0x00, 0x00, 0x40, /* 58..5f XYZ[\]^_ */ 0x80, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x22, /* 60..67 `abcdefg */ 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, /* 68..6f hijklmno */ 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, /* 70..77 pqrstuvw */ 0x22, 0x22, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, /* 78..7f xyz{|}~. */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* 80..87 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* 88..8f ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* 90..97 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* 98..9f ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* a0..a7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* a8..af ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* b0..b7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* b8..bf ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* c0..c7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* c8..cf ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* d0..d7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* d8..df ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* e0..e7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* e8..ef ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, /* f0..f7 ........ */ 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40 /* f8..ff ........ */ }; /* EVIDENCE-OF: R-02982-34736 In order to maintain full backwards ** compatibility for legacy applications, the URI filename capability is ** disabled by default. ** ** EVIDENCE-OF: R-38799-08373 URI filenames can be enabled or disabled ** using the SQLITE_USE_URI=1 or SQLITE_USE_URI=0 compile-time options. ** ** EVIDENCE-OF: R-43642-56306 By default, URI handling is globally ** disabled. The default value may be changed by compiling with the ** SQLITE_USE_URI symbol defined. */ #ifndef SQLITE_USE_URI # define SQLITE_USE_URI 0 #endif /* EVIDENCE-OF: R-38720-18127 The default setting is determined by the ** SQLITE_ALLOW_COVERING_INDEX_SCAN compile-time option, or is "on" if ** that compile-time option is omitted. */ #if !defined(SQLITE_ALLOW_COVERING_INDEX_SCAN) # define SQLITE_ALLOW_COVERING_INDEX_SCAN 1 #else # if !SQLITE_ALLOW_COVERING_INDEX_SCAN # error "Compile-time disabling of covering index scan using the\ -DSQLITE_ALLOW_COVERING_INDEX_SCAN=0 option is deprecated.\ Contact SQLite developers if this is a problem for you, and\ delete this #error macro to continue with your build." # endif #endif /* The minimum PMA size is set to this value multiplied by the database ** page size in bytes. */ #ifndef SQLITE_SORTER_PMASZ # define SQLITE_SORTER_PMASZ 250 #endif /* Statement journals spill to disk when their size exceeds the following ** threshold (in bytes). 0 means that statement journals are created and ** written to disk immediately (the default behavior for SQLite versions ** before 3.12.0). -1 means always keep the entire statement journal in ** memory. (The statement journal is also always held entirely in memory ** if journal_mode=MEMORY or if temp_store=MEMORY, regardless of this ** setting.) */ #ifndef SQLITE_STMTJRNL_SPILL # define SQLITE_STMTJRNL_SPILL (64*1024) #endif /* ** The default lookaside-configuration, the format "SZ,N". SZ is the ** number of bytes in each lookaside slot (should be a multiple of 8) ** and N is the number of slots. The lookaside-configuration can be ** changed as start-time using sqlite3_config(SQLITE_CONFIG_LOOKASIDE) ** or at run-time for an individual database connection using ** sqlite3_db_config(db, SQLITE_DBCONFIG_LOOKASIDE); ** ** With the two-size-lookaside enhancement, less lookaside is required. ** The default configuration of 1200,40 actually provides 30 1200-byte slots ** and 93 128-byte slots, which is more lookaside than is available ** using the older 1200,100 configuration without two-size-lookaside. */ #ifndef SQLITE_DEFAULT_LOOKASIDE # ifdef SQLITE_OMIT_TWOSIZE_LOOKASIDE # define SQLITE_DEFAULT_LOOKASIDE 1200,100 /* 120KB of memory */ # else # define SQLITE_DEFAULT_LOOKASIDE 1200,40 /* 48KB of memory */ # endif #endif /* The default maximum size of an in-memory database created using ** sqlite3_deserialize() */ #ifndef SQLITE_MEMDB_DEFAULT_MAXSIZE # define SQLITE_MEMDB_DEFAULT_MAXSIZE 1073741824 #endif /* ** The following singleton contains the global configuration for ** the SQLite library. */ SQLITE_PRIVATE SQLITE_WSD struct Sqlite3Config sqlite3Config = { SQLITE_DEFAULT_MEMSTATUS, /* bMemstat */ 1, /* bCoreMutex */ SQLITE_THREADSAFE==1, /* bFullMutex */ SQLITE_USE_URI, /* bOpenUri */ SQLITE_ALLOW_COVERING_INDEX_SCAN, /* bUseCis */ 0, /* bSmallMalloc */ 1, /* bExtraSchemaChecks */ 0x7ffffffe, /* mxStrlen */ 0, /* neverCorrupt */ SQLITE_DEFAULT_LOOKASIDE, /* szLookaside, nLookaside */ SQLITE_STMTJRNL_SPILL, /* nStmtSpill */ {0,0,0,0,0,0,0,0}, /* m */ {0,0,0,0,0,0,0,0,0}, /* mutex */ {0,0,0,0,0,0,0,0,0,0,0,0,0},/* pcache2 */ (void*)0, /* pHeap */ 0, /* nHeap */ 0, 0, /* mnHeap, mxHeap */ SQLITE_DEFAULT_MMAP_SIZE, /* szMmap */ SQLITE_MAX_MMAP_SIZE, /* mxMmap */ (void*)0, /* pPage */ 0, /* szPage */ SQLITE_DEFAULT_PCACHE_INITSZ, /* nPage */ 0, /* mxParserStack */ 0, /* sharedCacheEnabled */ SQLITE_SORTER_PMASZ, /* szPma */ /* All the rest should always be initialized to zero */ 0, /* isInit */ 0, /* inProgress */ 0, /* isMutexInit */ 0, /* isMallocInit */ 0, /* isPCacheInit */ 0, /* nRefInitMutex */ 0, /* pInitMutex */ 0, /* xLog */ 0, /* pLogArg */ #ifdef SQLITE_ENABLE_SQLLOG 0, /* xSqllog */ 0, /* pSqllogArg */ #endif #ifdef SQLITE_VDBE_COVERAGE 0, /* xVdbeBranch */ 0, /* pVbeBranchArg */ #endif #ifdef SQLITE_ENABLE_DESERIALIZE SQLITE_MEMDB_DEFAULT_MAXSIZE, /* mxMemdbSize */ #endif #ifndef SQLITE_UNTESTABLE 0, /* xTestCallback */ #endif 0, /* bLocaltimeFault */ 0x7ffffffe, /* iOnceResetThreshold */ SQLITE_DEFAULT_SORTERREF_SIZE, /* szSorterRef */ 0, /* iPrngSeed */ }; /* ** Hash table for global functions - functions common to all ** database connections. After initialization, this table is ** read-only. */ SQLITE_PRIVATE FuncDefHash sqlite3BuiltinFunctions; #ifdef VDBE_PROFILE /* ** The following performance counter can be used in place of ** sqlite3Hwtime() for profiling. This is a no-op on standard builds. */ SQLITE_PRIVATE sqlite3_uint64 sqlite3NProfileCnt = 0; #endif /* ** The value of the "pending" byte must be 0x40000000 (1 byte past the ** 1-gibabyte boundary) in a compatible database. SQLite never uses ** the database page that contains the pending byte. It never attempts ** to read or write that page. The pending byte page is set aside ** for use by the VFS layers as space for managing file locks. ** ** During testing, it is often desirable to move the pending byte to ** a different position in the file. This allows code that has to ** deal with the pending byte to run on files that are much smaller ** than 1 GiB. The sqlite3_test_control() interface can be used to ** move the pending byte. ** ** IMPORTANT: Changing the pending byte to any value other than ** 0x40000000 results in an incompatible database file format! ** Changing the pending byte during operation will result in undefined ** and incorrect behavior. */ #ifndef SQLITE_OMIT_WSD SQLITE_PRIVATE int sqlite3PendingByte = 0x40000000; #endif /* ** Flags for select tracing and the ".selecttrace" macro of the CLI */ SQLITE_API u32 sqlite3_unsupported_selecttrace = 0; /* #include "opcodes.h" */ /* ** Properties of opcodes. The OPFLG_INITIALIZER macro is ** created by mkopcodeh.awk during compilation. Data is obtained ** from the comments following the "case OP_xxxx:" statements in ** the vdbe.c file. */ SQLITE_PRIVATE const unsigned char sqlite3OpcodeProperty[] = OPFLG_INITIALIZER; /* ** Name of the default collating sequence */ SQLITE_PRIVATE const char sqlite3StrBINARY[] = "BINARY"; /************** End of global.c **********************************************/ /************** Begin file status.c ******************************************/ /* ** 2008 June 18 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This module implements the sqlite3_status() interface and related ** functionality. */ /* #include "sqliteInt.h" */ /************** Include vdbeInt.h in the middle of status.c ******************/ /************** Begin file vdbeInt.h *****************************************/ /* ** 2003 September 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This is the header file for information that is private to the ** VDBE. This information used to all be at the top of the single ** source code file "vdbe.c". When that file became too big (over ** 6000 lines long) it was split up into several smaller files and ** this header information was factored out. */ #ifndef SQLITE_VDBEINT_H #define SQLITE_VDBEINT_H /* ** The maximum number of times that a statement will try to reparse ** itself before giving up and returning SQLITE_SCHEMA. */ #ifndef SQLITE_MAX_SCHEMA_RETRY # define SQLITE_MAX_SCHEMA_RETRY 50 #endif /* ** VDBE_DISPLAY_P4 is true or false depending on whether or not the ** "explain" P4 display logic is enabled. */ #if !defined(SQLITE_OMIT_EXPLAIN) || !defined(NDEBUG) \ || defined(VDBE_PROFILE) || defined(SQLITE_DEBUG) \ || defined(SQLITE_ENABLE_BYTECODE_VTAB) # define VDBE_DISPLAY_P4 1 #else # define VDBE_DISPLAY_P4 0 #endif /* ** SQL is translated into a sequence of instructions to be ** executed by a virtual machine. Each instruction is an instance ** of the following structure. */ typedef struct VdbeOp Op; /* ** Boolean values */ typedef unsigned Bool; /* Opaque type used by code in vdbesort.c */ typedef struct VdbeSorter VdbeSorter; /* Elements of the linked list at Vdbe.pAuxData */ typedef struct AuxData AuxData; /* Types of VDBE cursors */ #define CURTYPE_BTREE 0 #define CURTYPE_SORTER 1 #define CURTYPE_VTAB 2 #define CURTYPE_PSEUDO 3 /* ** A VdbeCursor is an superclass (a wrapper) for various cursor objects: ** ** * A b-tree cursor ** - In the main database or in an ephemeral database ** - On either an index or a table ** * A sorter ** * A virtual table ** * A one-row "pseudotable" stored in a single register */ typedef struct VdbeCursor VdbeCursor; struct VdbeCursor { u8 eCurType; /* One of the CURTYPE_* values above */ i8 iDb; /* Index of cursor database in db->aDb[] (or -1) */ u8 nullRow; /* True if pointing to a row with no data */ u8 deferredMoveto; /* A call to sqlite3BtreeMoveto() is needed */ u8 isTable; /* True for rowid tables. False for indexes */ #ifdef SQLITE_DEBUG u8 seekOp; /* Most recent seek operation on this cursor */ u8 wrFlag; /* The wrFlag argument to sqlite3BtreeCursor() */ #endif Bool isEphemeral:1; /* True for an ephemeral table */ Bool useRandomRowid:1; /* Generate new record numbers semi-randomly */ Bool isOrdered:1; /* True if the table is not BTREE_UNORDERED */ Bool seekHit:1; /* See the OP_SeekHit and OP_IfNoHope opcodes */ Btree *pBtx; /* Separate file holding temporary table */ i64 seqCount; /* Sequence counter */ u32 *aAltMap; /* Mapping from table to index column numbers */ /* Cached OP_Column parse information is only valid if cacheStatus matches ** Vdbe.cacheCtr. Vdbe.cacheCtr will never take on the value of ** CACHE_STALE (0) and so setting cacheStatus=CACHE_STALE guarantees that ** the cache is out of date. */ u32 cacheStatus; /* Cache is valid if this matches Vdbe.cacheCtr */ int seekResult; /* Result of previous sqlite3BtreeMoveto() or 0 ** if there have been no prior seeks on the cursor. */ /* seekResult does not distinguish between "no seeks have ever occurred ** on this cursor" and "the most recent seek was an exact match". ** For CURTYPE_PSEUDO, seekResult is the register holding the record */ /* When a new VdbeCursor is allocated, only the fields above are zeroed. ** The fields that follow are uninitialized, and must be individually ** initialized prior to first use. */ VdbeCursor *pAltCursor; /* Associated index cursor from which to read */ union { BtCursor *pCursor; /* CURTYPE_BTREE or _PSEUDO. Btree cursor */ sqlite3_vtab_cursor *pVCur; /* CURTYPE_VTAB. Vtab cursor */ VdbeSorter *pSorter; /* CURTYPE_SORTER. Sorter object */ } uc; KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */ u32 iHdrOffset; /* Offset to next unparsed byte of the header */ Pgno pgnoRoot; /* Root page of the open btree cursor */ i16 nField; /* Number of fields in the header */ u16 nHdrParsed; /* Number of header fields parsed so far */ i64 movetoTarget; /* Argument to the deferred sqlite3BtreeMoveto() */ u32 *aOffset; /* Pointer to aType[nField] */ const u8 *aRow; /* Data for the current row, if all on one page */ u32 payloadSize; /* Total number of bytes in the record */ u32 szRow; /* Byte available in aRow */ #ifdef SQLITE_ENABLE_COLUMN_USED_MASK u64 maskUsed; /* Mask of columns used by this cursor */ #endif /* 2*nField extra array elements allocated for aType[], beyond the one ** static element declared in the structure. nField total array slots for ** aType[] and nField+1 array slots for aOffset[] */ u32 aType[1]; /* Type values record decode. MUST BE LAST */ }; /* ** A value for VdbeCursor.cacheStatus that means the cache is always invalid. */ #define CACHE_STALE 0 /* ** When a sub-program is executed (OP_Program), a structure of this type ** is allocated to store the current value of the program counter, as ** well as the current memory cell array and various other frame specific ** values stored in the Vdbe struct. When the sub-program is finished, ** these values are copied back to the Vdbe from the VdbeFrame structure, ** restoring the state of the VM to as it was before the sub-program ** began executing. ** ** The memory for a VdbeFrame object is allocated and managed by a memory ** cell in the parent (calling) frame. When the memory cell is deleted or ** overwritten, the VdbeFrame object is not freed immediately. Instead, it ** is linked into the Vdbe.pDelFrame list. The contents of the Vdbe.pDelFrame ** list is deleted when the VM is reset in VdbeHalt(). The reason for doing ** this instead of deleting the VdbeFrame immediately is to avoid recursive ** calls to sqlite3VdbeMemRelease() when the memory cells belonging to the ** child frame are released. ** ** The currently executing frame is stored in Vdbe.pFrame. Vdbe.pFrame is ** set to NULL if the currently executing frame is the main program. */ typedef struct VdbeFrame VdbeFrame; struct VdbeFrame { Vdbe *v; /* VM this frame belongs to */ VdbeFrame *pParent; /* Parent of this frame, or NULL if parent is main */ Op *aOp; /* Program instructions for parent frame */ i64 *anExec; /* Event counters from parent frame */ Mem *aMem; /* Array of memory cells for parent frame */ VdbeCursor **apCsr; /* Array of Vdbe cursors for parent frame */ u8 *aOnce; /* Bitmask used by OP_Once */ void *token; /* Copy of SubProgram.token */ i64 lastRowid; /* Last insert rowid (sqlite3.lastRowid) */ AuxData *pAuxData; /* Linked list of auxdata allocations */ #if SQLITE_DEBUG u32 iFrameMagic; /* magic number for sanity checking */ #endif int nCursor; /* Number of entries in apCsr */ int pc; /* Program Counter in parent (calling) frame */ int nOp; /* Size of aOp array */ int nMem; /* Number of entries in aMem */ int nChildMem; /* Number of memory cells for child frame */ int nChildCsr; /* Number of cursors for child frame */ int nChange; /* Statement changes (Vdbe.nChange) */ int nDbChange; /* Value of db->nChange */ }; /* Magic number for sanity checking on VdbeFrame objects */ #define SQLITE_FRAME_MAGIC 0x879fb71e /* ** Return a pointer to the array of registers allocated for use ** by a VdbeFrame. */ #define VdbeFrameMem(p) ((Mem *)&((u8 *)p)[ROUND8(sizeof(VdbeFrame))]) /* ** Internally, the vdbe manipulates nearly all SQL values as Mem ** structures. Each Mem struct may cache multiple representations (string, ** integer etc.) of the same value. */ struct sqlite3_value { union MemValue { double r; /* Real value used when MEM_Real is set in flags */ i64 i; /* Integer value used when MEM_Int is set in flags */ int nZero; /* Extra zero bytes when MEM_Zero and MEM_Blob set */ const char *zPType; /* Pointer type when MEM_Term|MEM_Subtype|MEM_Null */ FuncDef *pDef; /* Used only when flags==MEM_Agg */ } u; u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */ u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */ u8 eSubtype; /* Subtype for this value */ int n; /* Number of characters in string value, excluding '\0' */ char *z; /* String or BLOB value */ /* ShallowCopy only needs to copy the information above */ char *zMalloc; /* Space to hold MEM_Str or MEM_Blob if szMalloc>0 */ int szMalloc; /* Size of the zMalloc allocation */ u32 uTemp; /* Transient storage for serial_type in OP_MakeRecord */ sqlite3 *db; /* The associated database connection */ void (*xDel)(void*);/* Destructor for Mem.z - only valid if MEM_Dyn */ #ifdef SQLITE_DEBUG Mem *pScopyFrom; /* This Mem is a shallow copy of pScopyFrom */ u16 mScopyFlags; /* flags value immediately after the shallow copy */ #endif }; /* ** Size of struct Mem not including the Mem.zMalloc member or anything that ** follows. */ #define MEMCELLSIZE offsetof(Mem,zMalloc) /* One or more of the following flags are set to indicate the validOK ** representations of the value stored in the Mem struct. ** ** If the MEM_Null flag is set, then the value is an SQL NULL value. ** For a pointer type created using sqlite3_bind_pointer() or ** sqlite3_result_pointer() the MEM_Term and MEM_Subtype flags are also set. ** ** If the MEM_Str flag is set then Mem.z points at a string representation. ** Usually this is encoded in the same unicode encoding as the main ** database (see below for exceptions). If the MEM_Term flag is also ** set, then the string is nul terminated. The MEM_Int and MEM_Real ** flags may coexist with the MEM_Str flag. */ #define MEM_Null 0x0001 /* Value is NULL (or a pointer) */ #define MEM_Str 0x0002 /* Value is a string */ #define MEM_Int 0x0004 /* Value is an integer */ #define MEM_Real 0x0008 /* Value is a real number */ #define MEM_Blob 0x0010 /* Value is a BLOB */ #define MEM_IntReal 0x0020 /* MEM_Int that stringifies like MEM_Real */ #define MEM_AffMask 0x003f /* Mask of affinity bits */ #define MEM_FromBind 0x0040 /* Value originates from sqlite3_bind() */ #define MEM_Undefined 0x0080 /* Value is undefined */ #define MEM_Cleared 0x0100 /* NULL set by OP_Null, not from data */ #define MEM_TypeMask 0xc1bf /* Mask of type bits */ /* Whenever Mem contains a valid string or blob representation, one of ** the following flags must be set to determine the memory management ** policy for Mem.z. The MEM_Term flag tells us whether or not the ** string is \000 or \u0000 terminated */ #define MEM_Term 0x0200 /* String in Mem.z is zero terminated */ #define MEM_Dyn 0x0400 /* Need to call Mem.xDel() on Mem.z */ #define MEM_Static 0x0800 /* Mem.z points to a static string */ #define MEM_Ephem 0x1000 /* Mem.z points to an ephemeral string */ #define MEM_Agg 0x2000 /* Mem.z points to an agg function context */ #define MEM_Zero 0x4000 /* Mem.i contains count of 0s appended to blob */ #define MEM_Subtype 0x8000 /* Mem.eSubtype is valid */ #ifdef SQLITE_OMIT_INCRBLOB #undef MEM_Zero #define MEM_Zero 0x0000 #endif /* Return TRUE if Mem X contains dynamically allocated content - anything ** that needs to be deallocated to avoid a leak. */ #define VdbeMemDynamic(X) \ (((X)->flags&(MEM_Agg|MEM_Dyn))!=0) /* ** Clear any existing type flags from a Mem and replace them with f */ #define MemSetTypeFlag(p, f) \ ((p)->flags = ((p)->flags&~(MEM_TypeMask|MEM_Zero))|f) /* ** True if Mem X is a NULL-nochng type. */ #define MemNullNochng(X) \ (((X)->flags&MEM_TypeMask)==(MEM_Null|MEM_Zero) \ && (X)->n==0 && (X)->u.nZero==0) /* ** Return true if a memory cell is not marked as invalid. This macro ** is for use inside assert() statements only. */ #ifdef SQLITE_DEBUG #define memIsValid(M) ((M)->flags & MEM_Undefined)==0 #endif /* ** Each auxiliary data pointer stored by a user defined function ** implementation calling sqlite3_set_auxdata() is stored in an instance ** of this structure. All such structures associated with a single VM ** are stored in a linked list headed at Vdbe.pAuxData. All are destroyed ** when the VM is halted (if not before). */ struct AuxData { int iAuxOp; /* Instruction number of OP_Function opcode */ int iAuxArg; /* Index of function argument. */ void *pAux; /* Aux data pointer */ void (*xDeleteAux)(void*); /* Destructor for the aux data */ AuxData *pNextAux; /* Next element in list */ }; /* ** The "context" argument for an installable function. A pointer to an ** instance of this structure is the first argument to the routines used ** implement the SQL functions. ** ** There is a typedef for this structure in sqlite.h. So all routines, ** even the public interface to SQLite, can use a pointer to this structure. ** But this file is the only place where the internal details of this ** structure are known. ** ** This structure is defined inside of vdbeInt.h because it uses substructures ** (Mem) which are only defined there. */ struct sqlite3_context { Mem *pOut; /* The return value is stored here */ FuncDef *pFunc; /* Pointer to function information */ Mem *pMem; /* Memory cell used to store aggregate context */ Vdbe *pVdbe; /* The VM that owns this context */ int iOp; /* Instruction number of OP_Function */ int isError; /* Error code returned by the function. */ u8 skipFlag; /* Skip accumulator loading if true */ u8 argc; /* Number of arguments */ sqlite3_value *argv[1]; /* Argument set */ }; /* A bitfield type for use inside of structures. Always follow with :N where ** N is the number of bits. */ typedef unsigned bft; /* Bit Field Type */ /* The ScanStatus object holds a single value for the ** sqlite3_stmt_scanstatus() interface. */ typedef struct ScanStatus ScanStatus; struct ScanStatus { int addrExplain; /* OP_Explain for loop */ int addrLoop; /* Address of "loops" counter */ int addrVisit; /* Address of "rows visited" counter */ int iSelectID; /* The "Select-ID" for this loop */ LogEst nEst; /* Estimated output rows per loop */ char *zName; /* Name of table or index */ }; /* The DblquoteStr object holds the text of a double-quoted ** string for a prepared statement. A linked list of these objects ** is constructed during statement parsing and is held on Vdbe.pDblStr. ** When computing a normalized SQL statement for an SQL statement, that ** list is consulted for each double-quoted identifier to see if the ** identifier should really be a string literal. */ typedef struct DblquoteStr DblquoteStr; struct DblquoteStr { DblquoteStr *pNextStr; /* Next string literal in the list */ char z[8]; /* Dequoted value for the string */ }; /* ** An instance of the virtual machine. This structure contains the complete ** state of the virtual machine. ** ** The "sqlite3_stmt" structure pointer that is returned by sqlite3_prepare() ** is really a pointer to an instance of this structure. */ struct Vdbe { sqlite3 *db; /* The database connection that owns this statement */ Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */ Parse *pParse; /* Parsing context used to create this Vdbe */ ynVar nVar; /* Number of entries in aVar[] */ u32 magic; /* Magic number for sanity checking */ int nMem; /* Number of memory locations currently allocated */ int nCursor; /* Number of slots in apCsr[] */ u32 cacheCtr; /* VdbeCursor row cache generation counter */ int pc; /* The program counter */ int rc; /* Value to return */ int nChange; /* Number of db changes made since last reset */ int iStatement; /* Statement number (or 0 if has no opened stmt) */ i64 iCurrentTime; /* Value of julianday('now') for this statement */ i64 nFkConstraint; /* Number of imm. FK constraints this VM */ i64 nStmtDefCons; /* Number of def. constraints when stmt started */ i64 nStmtDefImmCons; /* Number of def. imm constraints when stmt started */ Mem *aMem; /* The memory locations */ Mem **apArg; /* Arguments to currently executing user function */ VdbeCursor **apCsr; /* One element of this array for each open cursor */ Mem *aVar; /* Values for the OP_Variable opcode. */ /* When allocating a new Vdbe object, all of the fields below should be ** initialized to zero or NULL */ Op *aOp; /* Space to hold the virtual machine's program */ int nOp; /* Number of instructions in the program */ int nOpAlloc; /* Slots allocated for aOp[] */ Mem *aColName; /* Column names to return */ Mem *pResultSet; /* Pointer to an array of results */ char *zErrMsg; /* Error message written here */ VList *pVList; /* Name of variables */ #ifndef SQLITE_OMIT_TRACE i64 startTime; /* Time when query started - used for profiling */ #endif #ifdef SQLITE_DEBUG int rcApp; /* errcode set by sqlite3_result_error_code() */ u32 nWrite; /* Number of write operations that have occurred */ #endif u16 nResColumn; /* Number of columns in one row of the result set */ u8 errorAction; /* Recovery action to do in case of an error */ u8 minWriteFileFormat; /* Minimum file format for writable database files */ u8 prepFlags; /* SQLITE_PREPARE_* flags */ u8 doingRerun; /* True if rerunning after an auto-reprepare */ bft expired:2; /* 1: recompile VM immediately 2: when convenient */ bft explain:2; /* True if EXPLAIN present on SQL command */ bft changeCntOn:1; /* True to update the change-counter */ bft runOnlyOnce:1; /* Automatically expire on reset */ bft usesStmtJournal:1; /* True if uses a statement journal */ bft readOnly:1; /* True for statements that do not write */ bft bIsReader:1; /* True for statements that read */ yDbMask btreeMask; /* Bitmask of db->aDb[] entries referenced */ yDbMask lockMask; /* Subset of btreeMask that requires a lock */ u32 aCounter[7]; /* Counters used by sqlite3_stmt_status() */ char *zSql; /* Text of the SQL statement that generated this */ #ifdef SQLITE_ENABLE_NORMALIZE char *zNormSql; /* Normalization of the associated SQL statement */ DblquoteStr *pDblStr; /* List of double-quoted string literals */ #endif void *pFree; /* Free this when deleting the vdbe */ VdbeFrame *pFrame; /* Parent frame */ VdbeFrame *pDelFrame; /* List of frame objects to free on VM reset */ int nFrame; /* Number of frames in pFrame list */ u32 expmask; /* Binding to these vars invalidates VM */ SubProgram *pProgram; /* Linked list of all sub-programs used by VM */ AuxData *pAuxData; /* Linked list of auxdata allocations */ #ifdef SQLITE_ENABLE_STMT_SCANSTATUS i64 *anExec; /* Number of times each op has been executed */ int nScan; /* Entries in aScan[] */ ScanStatus *aScan; /* Scan definitions for sqlite3_stmt_scanstatus() */ #endif }; /* ** The following are allowed values for Vdbe.magic */ #define VDBE_MAGIC_INIT 0x16bceaa5 /* Building a VDBE program */ #define VDBE_MAGIC_RUN 0x2df20da3 /* VDBE is ready to execute */ #define VDBE_MAGIC_HALT 0x319c2973 /* VDBE has completed execution */ #define VDBE_MAGIC_RESET 0x48fa9f76 /* Reset and ready to run again */ #define VDBE_MAGIC_DEAD 0x5606c3c8 /* The VDBE has been deallocated */ /* ** Structure used to store the context required by the ** sqlite3_preupdate_*() API functions. */ struct PreUpdate { Vdbe *v; VdbeCursor *pCsr; /* Cursor to read old values from */ int op; /* One of SQLITE_INSERT, UPDATE, DELETE */ u8 *aRecord; /* old.* database record */ KeyInfo keyinfo; UnpackedRecord *pUnpacked; /* Unpacked version of aRecord[] */ UnpackedRecord *pNewUnpacked; /* Unpacked version of new.* record */ int iNewReg; /* Register for new.* values */ i64 iKey1; /* First key value passed to hook */ i64 iKey2; /* Second key value passed to hook */ Mem *aNew; /* Array of new.* values */ Table *pTab; /* Schema object being upated */ Index *pPk; /* PK index if pTab is WITHOUT ROWID */ }; /* ** Function prototypes */ SQLITE_PRIVATE void sqlite3VdbeError(Vdbe*, const char *, ...); SQLITE_PRIVATE void sqlite3VdbeFreeCursor(Vdbe *, VdbeCursor*); void sqliteVdbePopStack(Vdbe*,int); SQLITE_PRIVATE int SQLITE_NOINLINE sqlite3VdbeFinishMoveto(VdbeCursor*); SQLITE_PRIVATE int sqlite3VdbeCursorMoveto(VdbeCursor**, u32*); SQLITE_PRIVATE int sqlite3VdbeCursorRestore(VdbeCursor*); SQLITE_PRIVATE u32 sqlite3VdbeSerialTypeLen(u32); SQLITE_PRIVATE u8 sqlite3VdbeOneByteSerialTypeLen(u8); SQLITE_PRIVATE u32 sqlite3VdbeSerialPut(unsigned char*, Mem*, u32); SQLITE_PRIVATE u32 sqlite3VdbeSerialGet(const unsigned char*, u32, Mem*); SQLITE_PRIVATE void sqlite3VdbeDeleteAuxData(sqlite3*, AuxData**, int, int); int sqlite2BtreeKeyCompare(BtCursor *, const void *, int, int, int *); SQLITE_PRIVATE int sqlite3VdbeIdxKeyCompare(sqlite3*,VdbeCursor*,UnpackedRecord*,int*); SQLITE_PRIVATE int sqlite3VdbeIdxRowid(sqlite3*, BtCursor*, i64*); SQLITE_PRIVATE int sqlite3VdbeExec(Vdbe*); #if !defined(SQLITE_OMIT_EXPLAIN) || defined(SQLITE_ENABLE_BYTECODE_VTAB) SQLITE_PRIVATE int sqlite3VdbeNextOpcode(Vdbe*,Mem*,int,int*,int*,Op**); SQLITE_PRIVATE char *sqlite3VdbeDisplayP4(sqlite3*,Op*); #endif #if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) SQLITE_PRIVATE char *sqlite3VdbeDisplayComment(sqlite3*,const Op*,const char*); #endif #if !defined(SQLITE_OMIT_EXPLAIN) SQLITE_PRIVATE int sqlite3VdbeList(Vdbe*); #endif SQLITE_PRIVATE int sqlite3VdbeHalt(Vdbe*); SQLITE_PRIVATE int sqlite3VdbeChangeEncoding(Mem *, int); SQLITE_PRIVATE int sqlite3VdbeMemTooBig(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemCopy(Mem*, const Mem*); SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem*, const Mem*, int); SQLITE_PRIVATE void sqlite3VdbeMemMove(Mem*, Mem*); SQLITE_PRIVATE int sqlite3VdbeMemNulTerminate(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemSetStr(Mem*, const char*, int, u8, void(*)(void*)); SQLITE_PRIVATE void sqlite3VdbeMemSetInt64(Mem*, i64); #ifdef SQLITE_OMIT_FLOATING_POINT # define sqlite3VdbeMemSetDouble sqlite3VdbeMemSetInt64 #else SQLITE_PRIVATE void sqlite3VdbeMemSetDouble(Mem*, double); #endif SQLITE_PRIVATE void sqlite3VdbeMemSetPointer(Mem*, void*, const char*, void(*)(void*)); SQLITE_PRIVATE void sqlite3VdbeMemInit(Mem*,sqlite3*,u16); SQLITE_PRIVATE void sqlite3VdbeMemSetNull(Mem*); SQLITE_PRIVATE void sqlite3VdbeMemSetZeroBlob(Mem*,int); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3VdbeMemIsRowSet(const Mem*); #endif SQLITE_PRIVATE int sqlite3VdbeMemSetRowSet(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemMakeWriteable(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemStringify(Mem*, u8, u8); SQLITE_PRIVATE i64 sqlite3VdbeIntValue(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemIntegerify(Mem*); SQLITE_PRIVATE double sqlite3VdbeRealValue(Mem*); SQLITE_PRIVATE int sqlite3VdbeBooleanValue(Mem*, int ifNull); SQLITE_PRIVATE void sqlite3VdbeIntegerAffinity(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemRealify(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemNumerify(Mem*); SQLITE_PRIVATE int sqlite3VdbeMemCast(Mem*,u8,u8); SQLITE_PRIVATE int sqlite3VdbeMemFromBtree(BtCursor*,u32,u32,Mem*); SQLITE_PRIVATE int sqlite3VdbeMemFromBtreeZeroOffset(BtCursor*,u32,Mem*); SQLITE_PRIVATE void sqlite3VdbeMemRelease(Mem *p); SQLITE_PRIVATE int sqlite3VdbeMemFinalize(Mem*, FuncDef*); #ifndef SQLITE_OMIT_WINDOWFUNC SQLITE_PRIVATE int sqlite3VdbeMemAggValue(Mem*, Mem*, FuncDef*); #endif #if !defined(SQLITE_OMIT_EXPLAIN) || defined(SQLITE_ENABLE_BYTECODE_VTAB) SQLITE_PRIVATE const char *sqlite3OpcodeName(int); #endif SQLITE_PRIVATE int sqlite3VdbeMemGrow(Mem *pMem, int n, int preserve); SQLITE_PRIVATE int sqlite3VdbeMemClearAndResize(Mem *pMem, int n); SQLITE_PRIVATE int sqlite3VdbeCloseStatement(Vdbe *, int); #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3VdbeFrameIsValid(VdbeFrame*); #endif SQLITE_PRIVATE void sqlite3VdbeFrameMemDel(void*); /* Destructor on Mem */ SQLITE_PRIVATE void sqlite3VdbeFrameDelete(VdbeFrame*); /* Actually deletes the Frame */ SQLITE_PRIVATE int sqlite3VdbeFrameRestore(VdbeFrame *); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK SQLITE_PRIVATE void sqlite3VdbePreUpdateHook(Vdbe*,VdbeCursor*,int,const char*,Table*,i64,int); #endif SQLITE_PRIVATE int sqlite3VdbeTransferError(Vdbe *p); SQLITE_PRIVATE int sqlite3VdbeSorterInit(sqlite3 *, int, VdbeCursor *); SQLITE_PRIVATE void sqlite3VdbeSorterReset(sqlite3 *, VdbeSorter *); SQLITE_PRIVATE void sqlite3VdbeSorterClose(sqlite3 *, VdbeCursor *); SQLITE_PRIVATE int sqlite3VdbeSorterRowkey(const VdbeCursor *, Mem *); SQLITE_PRIVATE int sqlite3VdbeSorterNext(sqlite3 *, const VdbeCursor *); SQLITE_PRIVATE int sqlite3VdbeSorterRewind(const VdbeCursor *, int *); SQLITE_PRIVATE int sqlite3VdbeSorterWrite(const VdbeCursor *, Mem *); SQLITE_PRIVATE int sqlite3VdbeSorterCompare(const VdbeCursor *, Mem *, int, int *); #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3VdbeIncrWriteCounter(Vdbe*, VdbeCursor*); SQLITE_PRIVATE void sqlite3VdbeAssertAbortable(Vdbe*); #else # define sqlite3VdbeIncrWriteCounter(V,C) # define sqlite3VdbeAssertAbortable(V) #endif #if !defined(SQLITE_OMIT_SHARED_CACHE) SQLITE_PRIVATE void sqlite3VdbeEnter(Vdbe*); #else # define sqlite3VdbeEnter(X) #endif #if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE>0 SQLITE_PRIVATE void sqlite3VdbeLeave(Vdbe*); #else # define sqlite3VdbeLeave(X) #endif #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3VdbeMemAboutToChange(Vdbe*,Mem*); SQLITE_PRIVATE int sqlite3VdbeCheckMemInvariants(Mem*); #endif #ifndef SQLITE_OMIT_FOREIGN_KEY SQLITE_PRIVATE int sqlite3VdbeCheckFk(Vdbe *, int); #else # define sqlite3VdbeCheckFk(p,i) 0 #endif #ifdef SQLITE_DEBUG SQLITE_PRIVATE void sqlite3VdbePrintSql(Vdbe*); SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, StrAccum *pStr); #endif #ifndef SQLITE_OMIT_UTF16 SQLITE_PRIVATE int sqlite3VdbeMemTranslate(Mem*, u8); SQLITE_PRIVATE int sqlite3VdbeMemHandleBom(Mem *pMem); #endif #ifndef SQLITE_OMIT_INCRBLOB SQLITE_PRIVATE int sqlite3VdbeMemExpandBlob(Mem *); #define ExpandBlob(P) (((P)->flags&MEM_Zero)?sqlite3VdbeMemExpandBlob(P):0) #else #define sqlite3VdbeMemExpandBlob(x) SQLITE_OK #define ExpandBlob(P) SQLITE_OK #endif #endif /* !defined(SQLITE_VDBEINT_H) */ /************** End of vdbeInt.h *********************************************/ /************** Continuing where we left off in status.c *********************/ /* ** Variables in which to record status information. */ #if SQLITE_PTRSIZE>4 typedef sqlite3_int64 sqlite3StatValueType; #else typedef u32 sqlite3StatValueType; #endif typedef struct sqlite3StatType sqlite3StatType; static SQLITE_WSD struct sqlite3StatType { sqlite3StatValueType nowValue[10]; /* Current value */ sqlite3StatValueType mxValue[10]; /* Maximum value */ } sqlite3Stat = { {0,}, {0,} }; /* ** Elements of sqlite3Stat[] are protected by either the memory allocator ** mutex, or by the pcache1 mutex. The following array determines which. */ static const char statMutex[] = { 0, /* SQLITE_STATUS_MEMORY_USED */ 1, /* SQLITE_STATUS_PAGECACHE_USED */ 1, /* SQLITE_STATUS_PAGECACHE_OVERFLOW */ 0, /* SQLITE_STATUS_SCRATCH_USED */ 0, /* SQLITE_STATUS_SCRATCH_OVERFLOW */ 0, /* SQLITE_STATUS_MALLOC_SIZE */ 0, /* SQLITE_STATUS_PARSER_STACK */ 1, /* SQLITE_STATUS_PAGECACHE_SIZE */ 0, /* SQLITE_STATUS_SCRATCH_SIZE */ 0, /* SQLITE_STATUS_MALLOC_COUNT */ }; /* The "wsdStat" macro will resolve to the status information ** state vector. If writable static data is unsupported on the target, ** we have to locate the state vector at run-time. In the more common ** case where writable static data is supported, wsdStat can refer directly ** to the "sqlite3Stat" state vector declared above. */ #ifdef SQLITE_OMIT_WSD # define wsdStatInit sqlite3StatType *x = &GLOBAL(sqlite3StatType,sqlite3Stat) # define wsdStat x[0] #else # define wsdStatInit # define wsdStat sqlite3Stat #endif /* ** Return the current value of a status parameter. The caller must ** be holding the appropriate mutex. */ SQLITE_PRIVATE sqlite3_int64 sqlite3StatusValue(int op){ wsdStatInit; assert( op>=0 && op=0 && op=0 && op=0 && opwsdStat.mxValue[op] ){ wsdStat.mxValue[op] = wsdStat.nowValue[op]; } } SQLITE_PRIVATE void sqlite3StatusDown(int op, int N){ wsdStatInit; assert( N>=0 ); assert( op>=0 && op=0 && op=0 ); newValue = (sqlite3StatValueType)X; assert( op>=0 && op=0 && opwsdStat.mxValue[op] ){ wsdStat.mxValue[op] = newValue; } } /* ** Query status information. */ SQLITE_API int sqlite3_status64( int op, sqlite3_int64 *pCurrent, sqlite3_int64 *pHighwater, int resetFlag ){ sqlite3_mutex *pMutex; wsdStatInit; if( op<0 || op>=ArraySize(wsdStat.nowValue) ){ return SQLITE_MISUSE_BKPT; } #ifdef SQLITE_ENABLE_API_ARMOR if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT; #endif pMutex = statMutex[op] ? sqlite3Pcache1Mutex() : sqlite3MallocMutex(); sqlite3_mutex_enter(pMutex); *pCurrent = wsdStat.nowValue[op]; *pHighwater = wsdStat.mxValue[op]; if( resetFlag ){ wsdStat.mxValue[op] = wsdStat.nowValue[op]; } sqlite3_mutex_leave(pMutex); (void)pMutex; /* Prevent warning when SQLITE_THREADSAFE=0 */ return SQLITE_OK; } SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag){ sqlite3_int64 iCur = 0, iHwtr = 0; int rc; #ifdef SQLITE_ENABLE_API_ARMOR if( pCurrent==0 || pHighwater==0 ) return SQLITE_MISUSE_BKPT; #endif rc = sqlite3_status64(op, &iCur, &iHwtr, resetFlag); if( rc==0 ){ *pCurrent = (int)iCur; *pHighwater = (int)iHwtr; } return rc; } /* ** Return the number of LookasideSlot elements on the linked list */ static u32 countLookasideSlots(LookasideSlot *p){ u32 cnt = 0; while( p ){ p = p->pNext; cnt++; } return cnt; } /* ** Count the number of slots of lookaside memory that are outstanding */ SQLITE_PRIVATE int sqlite3LookasideUsed(sqlite3 *db, int *pHighwater){ u32 nInit = countLookasideSlots(db->lookaside.pInit); u32 nFree = countLookasideSlots(db->lookaside.pFree); #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE nInit += countLookasideSlots(db->lookaside.pSmallInit); nFree += countLookasideSlots(db->lookaside.pSmallFree); #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ if( pHighwater ) *pHighwater = db->lookaside.nSlot - nInit; return db->lookaside.nSlot - (nInit+nFree); } /* ** Query status information for a single database connection */ SQLITE_API int sqlite3_db_status( sqlite3 *db, /* The database connection whose status is desired */ int op, /* Status verb */ int *pCurrent, /* Write current value here */ int *pHighwater, /* Write high-water mark here */ int resetFlag /* Reset high-water mark if true */ ){ int rc = SQLITE_OK; /* Return code */ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || pCurrent==0|| pHighwater==0 ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); switch( op ){ case SQLITE_DBSTATUS_LOOKASIDE_USED: { *pCurrent = sqlite3LookasideUsed(db, pHighwater); if( resetFlag ){ LookasideSlot *p = db->lookaside.pFree; if( p ){ while( p->pNext ) p = p->pNext; p->pNext = db->lookaside.pInit; db->lookaside.pInit = db->lookaside.pFree; db->lookaside.pFree = 0; } #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE p = db->lookaside.pSmallFree; if( p ){ while( p->pNext ) p = p->pNext; p->pNext = db->lookaside.pSmallInit; db->lookaside.pSmallInit = db->lookaside.pSmallFree; db->lookaside.pSmallFree = 0; } #endif } break; } case SQLITE_DBSTATUS_LOOKASIDE_HIT: case SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE: case SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL: { testcase( op==SQLITE_DBSTATUS_LOOKASIDE_HIT ); testcase( op==SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE ); testcase( op==SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL ); assert( (op-SQLITE_DBSTATUS_LOOKASIDE_HIT)>=0 ); assert( (op-SQLITE_DBSTATUS_LOOKASIDE_HIT)<3 ); *pCurrent = 0; *pHighwater = db->lookaside.anStat[op - SQLITE_DBSTATUS_LOOKASIDE_HIT]; if( resetFlag ){ db->lookaside.anStat[op - SQLITE_DBSTATUS_LOOKASIDE_HIT] = 0; } break; } /* ** Return an approximation for the amount of memory currently used ** by all pagers associated with the given database connection. The ** highwater mark is meaningless and is returned as zero. */ case SQLITE_DBSTATUS_CACHE_USED_SHARED: case SQLITE_DBSTATUS_CACHE_USED: { int totalUsed = 0; int i; sqlite3BtreeEnterAll(db); for(i=0; inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ Pager *pPager = sqlite3BtreePager(pBt); int nByte = sqlite3PagerMemUsed(pPager); if( op==SQLITE_DBSTATUS_CACHE_USED_SHARED ){ nByte = nByte / sqlite3BtreeConnectionCount(pBt); } totalUsed += nByte; } } sqlite3BtreeLeaveAll(db); *pCurrent = totalUsed; *pHighwater = 0; break; } /* ** *pCurrent gets an accurate estimate of the amount of memory used ** to store the schema for all databases (main, temp, and any ATTACHed ** databases. *pHighwater is set to zero. */ case SQLITE_DBSTATUS_SCHEMA_USED: { int i; /* Used to iterate through schemas */ int nByte = 0; /* Used to accumulate return value */ sqlite3BtreeEnterAll(db); db->pnBytesFreed = &nByte; for(i=0; inDb; i++){ Schema *pSchema = db->aDb[i].pSchema; if( ALWAYS(pSchema!=0) ){ HashElem *p; nByte += sqlite3GlobalConfig.m.xRoundup(sizeof(HashElem)) * ( pSchema->tblHash.count + pSchema->trigHash.count + pSchema->idxHash.count + pSchema->fkeyHash.count ); nByte += sqlite3_msize(pSchema->tblHash.ht); nByte += sqlite3_msize(pSchema->trigHash.ht); nByte += sqlite3_msize(pSchema->idxHash.ht); nByte += sqlite3_msize(pSchema->fkeyHash.ht); for(p=sqliteHashFirst(&pSchema->trigHash); p; p=sqliteHashNext(p)){ sqlite3DeleteTrigger(db, (Trigger*)sqliteHashData(p)); } for(p=sqliteHashFirst(&pSchema->tblHash); p; p=sqliteHashNext(p)){ sqlite3DeleteTable(db, (Table *)sqliteHashData(p)); } } } db->pnBytesFreed = 0; sqlite3BtreeLeaveAll(db); *pHighwater = 0; *pCurrent = nByte; break; } /* ** *pCurrent gets an accurate estimate of the amount of memory used ** to store all prepared statements. ** *pHighwater is set to zero. */ case SQLITE_DBSTATUS_STMT_USED: { struct Vdbe *pVdbe; /* Used to iterate through VMs */ int nByte = 0; /* Used to accumulate return value */ db->pnBytesFreed = &nByte; for(pVdbe=db->pVdbe; pVdbe; pVdbe=pVdbe->pNext){ sqlite3VdbeClearObject(db, pVdbe); sqlite3DbFree(db, pVdbe); } db->pnBytesFreed = 0; *pHighwater = 0; /* IMP: R-64479-57858 */ *pCurrent = nByte; break; } /* ** Set *pCurrent to the total cache hits or misses encountered by all ** pagers the database handle is connected to. *pHighwater is always set ** to zero. */ case SQLITE_DBSTATUS_CACHE_SPILL: op = SQLITE_DBSTATUS_CACHE_WRITE+1; /* no break */ deliberate_fall_through case SQLITE_DBSTATUS_CACHE_HIT: case SQLITE_DBSTATUS_CACHE_MISS: case SQLITE_DBSTATUS_CACHE_WRITE:{ int i; int nRet = 0; assert( SQLITE_DBSTATUS_CACHE_MISS==SQLITE_DBSTATUS_CACHE_HIT+1 ); assert( SQLITE_DBSTATUS_CACHE_WRITE==SQLITE_DBSTATUS_CACHE_HIT+2 ); for(i=0; inDb; i++){ if( db->aDb[i].pBt ){ Pager *pPager = sqlite3BtreePager(db->aDb[i].pBt); sqlite3PagerCacheStat(pPager, op, resetFlag, &nRet); } } *pHighwater = 0; /* IMP: R-42420-56072 */ /* IMP: R-54100-20147 */ /* IMP: R-29431-39229 */ *pCurrent = nRet; break; } /* Set *pCurrent to non-zero if there are unresolved deferred foreign ** key constraints. Set *pCurrent to zero if all foreign key constraints ** have been satisfied. The *pHighwater is always set to zero. */ case SQLITE_DBSTATUS_DEFERRED_FKS: { *pHighwater = 0; /* IMP: R-11967-56545 */ *pCurrent = db->nDeferredImmCons>0 || db->nDeferredCons>0; break; } default: { rc = SQLITE_ERROR; } } sqlite3_mutex_leave(db->mutex); return rc; } /************** End of status.c **********************************************/ /************** Begin file date.c ********************************************/ /* ** 2003 October 31 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement date and time ** functions for SQLite. ** ** There is only one exported symbol in this file - the function ** sqlite3RegisterDateTimeFunctions() found at the bottom of the file. ** All other code has file scope. ** ** SQLite processes all times and dates as julian day numbers. The ** dates and times are stored as the number of days since noon ** in Greenwich on November 24, 4714 B.C. according to the Gregorian ** calendar system. ** ** 1970-01-01 00:00:00 is JD 2440587.5 ** 2000-01-01 00:00:00 is JD 2451544.5 ** ** This implementation requires years to be expressed as a 4-digit number ** which means that only dates between 0000-01-01 and 9999-12-31 can ** be represented, even though julian day numbers allow a much wider ** range of dates. ** ** The Gregorian calendar system is used for all dates and times, ** even those that predate the Gregorian calendar. Historians usually ** use the julian calendar for dates prior to 1582-10-15 and for some ** dates afterwards, depending on locale. Beware of this difference. ** ** The conversion algorithms are implemented based on descriptions ** in the following text: ** ** Jean Meeus ** Astronomical Algorithms, 2nd Edition, 1998 ** ISBN 0-943396-61-1 ** Willmann-Bell, Inc ** Richmond, Virginia (USA) */ /* #include "sqliteInt.h" */ /* #include */ /* #include */ #include #ifndef SQLITE_OMIT_DATETIME_FUNCS /* ** The MSVC CRT on Windows CE may not have a localtime() function. ** So declare a substitute. The substitute function itself is ** defined in "os_win.c". */ #if !defined(SQLITE_OMIT_LOCALTIME) && defined(_WIN32_WCE) && \ (!defined(SQLITE_MSVC_LOCALTIME_API) || !SQLITE_MSVC_LOCALTIME_API) struct tm *__cdecl localtime(const time_t *); #endif /* ** A structure for holding a single date and time. */ typedef struct DateTime DateTime; struct DateTime { sqlite3_int64 iJD; /* The julian day number times 86400000 */ int Y, M, D; /* Year, month, and day */ int h, m; /* Hour and minutes */ int tz; /* Timezone offset in minutes */ double s; /* Seconds */ char validJD; /* True (1) if iJD is valid */ char rawS; /* Raw numeric value stored in s */ char validYMD; /* True (1) if Y,M,D are valid */ char validHMS; /* True (1) if h,m,s are valid */ char validTZ; /* True (1) if tz is valid */ char tzSet; /* Timezone was set explicitly */ char isError; /* An overflow has occurred */ }; /* ** Convert zDate into one or more integers according to the conversion ** specifier zFormat. ** ** zFormat[] contains 4 characters for each integer converted, except for ** the last integer which is specified by three characters. The meaning ** of a four-character format specifiers ABCD is: ** ** A: number of digits to convert. Always "2" or "4". ** B: minimum value. Always "0" or "1". ** C: maximum value, decoded as: ** a: 12 ** b: 14 ** c: 24 ** d: 31 ** e: 59 ** f: 9999 ** D: the separator character, or \000 to indicate this is the ** last number to convert. ** ** Example: To translate an ISO-8601 date YYYY-MM-DD, the format would ** be "40f-21a-20c". The "40f-" indicates the 4-digit year followed by "-". ** The "21a-" indicates the 2-digit month followed by "-". The "20c" indicates ** the 2-digit day which is the last integer in the set. ** ** The function returns the number of successful conversions. */ static int getDigits(const char *zDate, const char *zFormat, ...){ /* The aMx[] array translates the 3rd character of each format ** spec into a max size: a b c d e f */ static const u16 aMx[] = { 12, 14, 24, 31, 59, 9999 }; va_list ap; int cnt = 0; char nextC; va_start(ap, zFormat); do{ char N = zFormat[0] - '0'; char min = zFormat[1] - '0'; int val = 0; u16 max; assert( zFormat[2]>='a' && zFormat[2]<='f' ); max = aMx[zFormat[2] - 'a']; nextC = zFormat[3]; val = 0; while( N-- ){ if( !sqlite3Isdigit(*zDate) ){ goto end_getDigits; } val = val*10 + *zDate - '0'; zDate++; } if( val<(int)min || val>(int)max || (nextC!=0 && nextC!=*zDate) ){ goto end_getDigits; } *va_arg(ap,int*) = val; zDate++; cnt++; zFormat += 4; }while( nextC ); end_getDigits: va_end(ap); return cnt; } /* ** Parse a timezone extension on the end of a date-time. ** The extension is of the form: ** ** (+/-)HH:MM ** ** Or the "zulu" notation: ** ** Z ** ** If the parse is successful, write the number of minutes ** of change in p->tz and return 0. If a parser error occurs, ** return non-zero. ** ** A missing specifier is not considered an error. */ static int parseTimezone(const char *zDate, DateTime *p){ int sgn = 0; int nHr, nMn; int c; while( sqlite3Isspace(*zDate) ){ zDate++; } p->tz = 0; c = *zDate; if( c=='-' ){ sgn = -1; }else if( c=='+' ){ sgn = +1; }else if( c=='Z' || c=='z' ){ zDate++; goto zulu_time; }else{ return c!=0; } zDate++; if( getDigits(zDate, "20b:20e", &nHr, &nMn)!=2 ){ return 1; } zDate += 5; p->tz = sgn*(nMn + nHr*60); zulu_time: while( sqlite3Isspace(*zDate) ){ zDate++; } p->tzSet = 1; return *zDate!=0; } /* ** Parse times of the form HH:MM or HH:MM:SS or HH:MM:SS.FFFF. ** The HH, MM, and SS must each be exactly 2 digits. The ** fractional seconds FFFF can be one or more digits. ** ** Return 1 if there is a parsing error and 0 on success. */ static int parseHhMmSs(const char *zDate, DateTime *p){ int h, m, s; double ms = 0.0; if( getDigits(zDate, "20c:20e", &h, &m)!=2 ){ return 1; } zDate += 5; if( *zDate==':' ){ zDate++; if( getDigits(zDate, "20e", &s)!=1 ){ return 1; } zDate += 2; if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){ double rScale = 1.0; zDate++; while( sqlite3Isdigit(*zDate) ){ ms = ms*10.0 + *zDate - '0'; rScale *= 10.0; zDate++; } ms /= rScale; } }else{ s = 0; } p->validJD = 0; p->rawS = 0; p->validHMS = 1; p->h = h; p->m = m; p->s = s + ms; if( parseTimezone(zDate, p) ) return 1; p->validTZ = (p->tz!=0)?1:0; return 0; } /* ** Put the DateTime object into its error state. */ static void datetimeError(DateTime *p){ memset(p, 0, sizeof(*p)); p->isError = 1; } /* ** Convert from YYYY-MM-DD HH:MM:SS to julian day. We always assume ** that the YYYY-MM-DD is according to the Gregorian calendar. ** ** Reference: Meeus page 61 */ static void computeJD(DateTime *p){ int Y, M, D, A, B, X1, X2; if( p->validJD ) return; if( p->validYMD ){ Y = p->Y; M = p->M; D = p->D; }else{ Y = 2000; /* If no YMD specified, assume 2000-Jan-01 */ M = 1; D = 1; } if( Y<-4713 || Y>9999 || p->rawS ){ datetimeError(p); return; } if( M<=2 ){ Y--; M += 12; } A = Y/100; B = 2 - A + (A/4); X1 = 36525*(Y+4716)/100; X2 = 306001*(M+1)/10000; p->iJD = (sqlite3_int64)((X1 + X2 + D + B - 1524.5 ) * 86400000); p->validJD = 1; if( p->validHMS ){ p->iJD += p->h*3600000 + p->m*60000 + (sqlite3_int64)(p->s*1000); if( p->validTZ ){ p->iJD -= p->tz*60000; p->validYMD = 0; p->validHMS = 0; p->validTZ = 0; } } } /* ** Parse dates of the form ** ** YYYY-MM-DD HH:MM:SS.FFF ** YYYY-MM-DD HH:MM:SS ** YYYY-MM-DD HH:MM ** YYYY-MM-DD ** ** Write the result into the DateTime structure and return 0 ** on success and 1 if the input string is not a well-formed ** date. */ static int parseYyyyMmDd(const char *zDate, DateTime *p){ int Y, M, D, neg; if( zDate[0]=='-' ){ zDate++; neg = 1; }else{ neg = 0; } if( getDigits(zDate, "40f-21a-21d", &Y, &M, &D)!=3 ){ return 1; } zDate += 10; while( sqlite3Isspace(*zDate) || 'T'==*(u8*)zDate ){ zDate++; } if( parseHhMmSs(zDate, p)==0 ){ /* We got the time */ }else if( *zDate==0 ){ p->validHMS = 0; }else{ return 1; } p->validJD = 0; p->validYMD = 1; p->Y = neg ? -Y : Y; p->M = M; p->D = D; if( p->validTZ ){ computeJD(p); } return 0; } /* ** Set the time to the current time reported by the VFS. ** ** Return the number of errors. */ static int setDateTimeToCurrent(sqlite3_context *context, DateTime *p){ p->iJD = sqlite3StmtCurrentTime(context); if( p->iJD>0 ){ p->validJD = 1; return 0; }else{ return 1; } } /* ** Input "r" is a numeric quantity which might be a julian day number, ** or the number of seconds since 1970. If the value if r is within ** range of a julian day number, install it as such and set validJD. ** If the value is a valid unix timestamp, put it in p->s and set p->rawS. */ static void setRawDateNumber(DateTime *p, double r){ p->s = r; p->rawS = 1; if( r>=0.0 && r<5373484.5 ){ p->iJD = (sqlite3_int64)(r*86400000.0 + 0.5); p->validJD = 1; } } /* ** Attempt to parse the given string into a julian day number. Return ** the number of errors. ** ** The following are acceptable forms for the input string: ** ** YYYY-MM-DD HH:MM:SS.FFF +/-HH:MM ** DDDD.DD ** now ** ** In the first form, the +/-HH:MM is always optional. The fractional ** seconds extension (the ".FFF") is optional. The seconds portion ** (":SS.FFF") is option. The year and date can be omitted as long ** as there is a time string. The time string can be omitted as long ** as there is a year and date. */ static int parseDateOrTime( sqlite3_context *context, const char *zDate, DateTime *p ){ double r; if( parseYyyyMmDd(zDate,p)==0 ){ return 0; }else if( parseHhMmSs(zDate, p)==0 ){ return 0; }else if( sqlite3StrICmp(zDate,"now")==0 && sqlite3NotPureFunc(context) ){ return setDateTimeToCurrent(context, p); }else if( sqlite3AtoF(zDate, &r, sqlite3Strlen30(zDate), SQLITE_UTF8)>0 ){ setRawDateNumber(p, r); return 0; } return 1; } /* The julian day number for 9999-12-31 23:59:59.999 is 5373484.4999999. ** Multiplying this by 86400000 gives 464269060799999 as the maximum value ** for DateTime.iJD. ** ** But some older compilers (ex: gcc 4.2.1 on older Macs) cannot deal with ** such a large integer literal, so we have to encode it. */ #define INT_464269060799999 ((((i64)0x1a640)<<32)|0x1072fdff) /* ** Return TRUE if the given julian day number is within range. ** ** The input is the JulianDay times 86400000. */ static int validJulianDay(sqlite3_int64 iJD){ return iJD>=0 && iJD<=INT_464269060799999; } /* ** Compute the Year, Month, and Day from the julian day number. */ static void computeYMD(DateTime *p){ int Z, A, B, C, D, E, X1; if( p->validYMD ) return; if( !p->validJD ){ p->Y = 2000; p->M = 1; p->D = 1; }else if( !validJulianDay(p->iJD) ){ datetimeError(p); return; }else{ Z = (int)((p->iJD + 43200000)/86400000); A = (int)((Z - 1867216.25)/36524.25); A = Z + 1 + A - (A/4); B = A + 1524; C = (int)((B - 122.1)/365.25); D = (36525*(C&32767))/100; E = (int)((B-D)/30.6001); X1 = (int)(30.6001*E); p->D = B - D - X1; p->M = E<14 ? E-1 : E-13; p->Y = p->M>2 ? C - 4716 : C - 4715; } p->validYMD = 1; } /* ** Compute the Hour, Minute, and Seconds from the julian day number. */ static void computeHMS(DateTime *p){ int s; if( p->validHMS ) return; computeJD(p); s = (int)((p->iJD + 43200000) % 86400000); p->s = s/1000.0; s = (int)p->s; p->s -= s; p->h = s/3600; s -= p->h*3600; p->m = s/60; p->s += s - p->m*60; p->rawS = 0; p->validHMS = 1; } /* ** Compute both YMD and HMS */ static void computeYMD_HMS(DateTime *p){ computeYMD(p); computeHMS(p); } /* ** Clear the YMD and HMS and the TZ */ static void clearYMD_HMS_TZ(DateTime *p){ p->validYMD = 0; p->validHMS = 0; p->validTZ = 0; } #ifndef SQLITE_OMIT_LOCALTIME /* ** On recent Windows platforms, the localtime_s() function is available ** as part of the "Secure CRT". It is essentially equivalent to ** localtime_r() available under most POSIX platforms, except that the ** order of the parameters is reversed. ** ** See http://msdn.microsoft.com/en-us/library/a442x3ye(VS.80).aspx. ** ** If the user has not indicated to use localtime_r() or localtime_s() ** already, check for an MSVC build environment that provides ** localtime_s(). */ #if !HAVE_LOCALTIME_R && !HAVE_LOCALTIME_S \ && defined(_MSC_VER) && defined(_CRT_INSECURE_DEPRECATE) #undef HAVE_LOCALTIME_S #define HAVE_LOCALTIME_S 1 #endif /* ** The following routine implements the rough equivalent of localtime_r() ** using whatever operating-system specific localtime facility that ** is available. This routine returns 0 on success and ** non-zero on any kind of error. ** ** If the sqlite3GlobalConfig.bLocaltimeFault variable is true then this ** routine will always fail. ** ** EVIDENCE-OF: R-62172-00036 In this implementation, the standard C ** library function localtime_r() is used to assist in the calculation of ** local time. */ static int osLocaltime(time_t *t, struct tm *pTm){ int rc; #if !HAVE_LOCALTIME_R && !HAVE_LOCALTIME_S struct tm *pX; #if SQLITE_THREADSAFE>0 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); #endif sqlite3_mutex_enter(mutex); pX = localtime(t); #ifndef SQLITE_UNTESTABLE if( sqlite3GlobalConfig.bLocaltimeFault ) pX = 0; #endif if( pX ) *pTm = *pX; sqlite3_mutex_leave(mutex); rc = pX==0; #else #ifndef SQLITE_UNTESTABLE if( sqlite3GlobalConfig.bLocaltimeFault ) return 1; #endif #if HAVE_LOCALTIME_R rc = localtime_r(t, pTm)==0; #else rc = localtime_s(pTm, t); #endif /* HAVE_LOCALTIME_R */ #endif /* HAVE_LOCALTIME_R || HAVE_LOCALTIME_S */ return rc; } #endif /* SQLITE_OMIT_LOCALTIME */ #ifndef SQLITE_OMIT_LOCALTIME /* ** Compute the difference (in milliseconds) between localtime and UTC ** (a.k.a. GMT) for the time value p where p is in UTC. If no error occurs, ** return this value and set *pRc to SQLITE_OK. ** ** Or, if an error does occur, set *pRc to SQLITE_ERROR. The returned value ** is undefined in this case. */ static sqlite3_int64 localtimeOffset( DateTime *p, /* Date at which to calculate offset */ sqlite3_context *pCtx, /* Write error here if one occurs */ int *pRc /* OUT: Error code. SQLITE_OK or ERROR */ ){ DateTime x, y; time_t t; struct tm sLocal; /* Initialize the contents of sLocal to avoid a compiler warning. */ memset(&sLocal, 0, sizeof(sLocal)); x = *p; computeYMD_HMS(&x); if( x.Y<1971 || x.Y>=2038 ){ /* EVIDENCE-OF: R-55269-29598 The localtime_r() C function normally only ** works for years between 1970 and 2037. For dates outside this range, ** SQLite attempts to map the year into an equivalent year within this ** range, do the calculation, then map the year back. */ x.Y = 2000; x.M = 1; x.D = 1; x.h = 0; x.m = 0; x.s = 0.0; } else { int s = (int)(x.s + 0.5); x.s = s; } x.tz = 0; x.validJD = 0; computeJD(&x); t = (time_t)(x.iJD/1000 - 21086676*(i64)10000); if( osLocaltime(&t, &sLocal) ){ sqlite3_result_error(pCtx, "local time unavailable", -1); *pRc = SQLITE_ERROR; return 0; } y.Y = sLocal.tm_year + 1900; y.M = sLocal.tm_mon + 1; y.D = sLocal.tm_mday; y.h = sLocal.tm_hour; y.m = sLocal.tm_min; y.s = sLocal.tm_sec; y.validYMD = 1; y.validHMS = 1; y.validJD = 0; y.rawS = 0; y.validTZ = 0; y.isError = 0; computeJD(&y); *pRc = SQLITE_OK; return y.iJD - x.iJD; } #endif /* SQLITE_OMIT_LOCALTIME */ /* ** The following table defines various date transformations of the form ** ** 'NNN days' ** ** Where NNN is an arbitrary floating-point number and "days" can be one ** of several units of time. */ static const struct { u8 eType; /* Transformation type code */ u8 nName; /* Length of th name */ char *zName; /* Name of the transformation */ double rLimit; /* Maximum NNN value for this transform */ double rXform; /* Constant used for this transform */ } aXformType[] = { { 0, 6, "second", 464269060800.0, 1000.0 }, { 0, 6, "minute", 7737817680.0, 60000.0 }, { 0, 4, "hour", 128963628.0, 3600000.0 }, { 0, 3, "day", 5373485.0, 86400000.0 }, { 1, 5, "month", 176546.0, 2592000000.0 }, { 2, 4, "year", 14713.0, 31536000000.0 }, }; /* ** Process a modifier to a date-time stamp. The modifiers are ** as follows: ** ** NNN days ** NNN hours ** NNN minutes ** NNN.NNNN seconds ** NNN months ** NNN years ** start of month ** start of year ** start of week ** start of day ** weekday N ** unixepoch ** localtime ** utc ** ** Return 0 on success and 1 if there is any kind of error. If the error ** is in a system call (i.e. localtime()), then an error message is written ** to context pCtx. If the error is an unrecognized modifier, no error is ** written to pCtx. */ static int parseModifier( sqlite3_context *pCtx, /* Function context */ const char *z, /* The text of the modifier */ int n, /* Length of zMod in bytes */ DateTime *p /* The date/time value to be modified */ ){ int rc = 1; double r; switch(sqlite3UpperToLower[(u8)z[0]] ){ #ifndef SQLITE_OMIT_LOCALTIME case 'l': { /* localtime ** ** Assuming the current time value is UTC (a.k.a. GMT), shift it to ** show local time. */ if( sqlite3_stricmp(z, "localtime")==0 && sqlite3NotPureFunc(pCtx) ){ computeJD(p); p->iJD += localtimeOffset(p, pCtx, &rc); clearYMD_HMS_TZ(p); } break; } #endif case 'u': { /* ** unixepoch ** ** Treat the current value of p->s as the number of ** seconds since 1970. Convert to a real julian day number. */ if( sqlite3_stricmp(z, "unixepoch")==0 && p->rawS ){ r = p->s*1000.0 + 210866760000000.0; if( r>=0.0 && r<464269060800000.0 ){ clearYMD_HMS_TZ(p); p->iJD = (sqlite3_int64)(r + 0.5); p->validJD = 1; p->rawS = 0; rc = 0; } } #ifndef SQLITE_OMIT_LOCALTIME else if( sqlite3_stricmp(z, "utc")==0 && sqlite3NotPureFunc(pCtx) ){ if( p->tzSet==0 ){ sqlite3_int64 c1; computeJD(p); c1 = localtimeOffset(p, pCtx, &rc); if( rc==SQLITE_OK ){ p->iJD -= c1; clearYMD_HMS_TZ(p); p->iJD += c1 - localtimeOffset(p, pCtx, &rc); } p->tzSet = 1; }else{ rc = SQLITE_OK; } } #endif break; } case 'w': { /* ** weekday N ** ** Move the date to the same time on the next occurrence of ** weekday N where 0==Sunday, 1==Monday, and so forth. If the ** date is already on the appropriate weekday, this is a no-op. */ if( sqlite3_strnicmp(z, "weekday ", 8)==0 && sqlite3AtoF(&z[8], &r, sqlite3Strlen30(&z[8]), SQLITE_UTF8)>0 && (n=(int)r)==r && n>=0 && r<7 ){ sqlite3_int64 Z; computeYMD_HMS(p); p->validTZ = 0; p->validJD = 0; computeJD(p); Z = ((p->iJD + 129600000)/86400000) % 7; if( Z>n ) Z -= 7; p->iJD += (n - Z)*86400000; clearYMD_HMS_TZ(p); rc = 0; } break; } case 's': { /* ** start of TTTTT ** ** Move the date backwards to the beginning of the current day, ** or month or year. */ if( sqlite3_strnicmp(z, "start of ", 9)!=0 ) break; if( !p->validJD && !p->validYMD && !p->validHMS ) break; z += 9; computeYMD(p); p->validHMS = 1; p->h = p->m = 0; p->s = 0.0; p->rawS = 0; p->validTZ = 0; p->validJD = 0; if( sqlite3_stricmp(z,"month")==0 ){ p->D = 1; rc = 0; }else if( sqlite3_stricmp(z,"year")==0 ){ p->M = 1; p->D = 1; rc = 0; }else if( sqlite3_stricmp(z,"day")==0 ){ rc = 0; } break; } case '+': case '-': case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { double rRounder; int i; for(n=1; z[n] && z[n]!=':' && !sqlite3Isspace(z[n]); n++){} if( sqlite3AtoF(z, &r, n, SQLITE_UTF8)<=0 ){ rc = 1; break; } if( z[n]==':' ){ /* A modifier of the form (+|-)HH:MM:SS.FFF adds (or subtracts) the ** specified number of hours, minutes, seconds, and fractional seconds ** to the time. The ".FFF" may be omitted. The ":SS.FFF" may be ** omitted. */ const char *z2 = z; DateTime tx; sqlite3_int64 day; if( !sqlite3Isdigit(*z2) ) z2++; memset(&tx, 0, sizeof(tx)); if( parseHhMmSs(z2, &tx) ) break; computeJD(&tx); tx.iJD -= 43200000; day = tx.iJD/86400000; tx.iJD -= day*86400000; if( z[0]=='-' ) tx.iJD = -tx.iJD; computeJD(p); clearYMD_HMS_TZ(p); p->iJD += tx.iJD; rc = 0; break; } /* If control reaches this point, it means the transformation is ** one of the forms like "+NNN days". */ z += n; while( sqlite3Isspace(*z) ) z++; n = sqlite3Strlen30(z); if( n>10 || n<3 ) break; if( sqlite3UpperToLower[(u8)z[n-1]]=='s' ) n--; computeJD(p); rc = 1; rRounder = r<0 ? -0.5 : +0.5; for(i=0; i-aXformType[i].rLimit && rM += (int)r; x = p->M>0 ? (p->M-1)/12 : (p->M-12)/12; p->Y += x; p->M -= x*12; p->validJD = 0; r -= (int)r; break; } case 2: { /* Special processing to add years */ int y = (int)r; computeYMD_HMS(p); p->Y += y; p->validJD = 0; r -= (int)r; break; } } computeJD(p); p->iJD += (sqlite3_int64)(r*aXformType[i].rXform + rRounder); rc = 0; break; } } clearYMD_HMS_TZ(p); break; } default: { break; } } return rc; } /* ** Process time function arguments. argv[0] is a date-time stamp. ** argv[1] and following are modifiers. Parse them all and write ** the resulting time into the DateTime structure p. Return 0 ** on success and 1 if there are any errors. ** ** If there are zero parameters (if even argv[0] is undefined) ** then assume a default value of "now" for argv[0]. */ static int isDate( sqlite3_context *context, int argc, sqlite3_value **argv, DateTime *p ){ int i, n; const unsigned char *z; int eType; memset(p, 0, sizeof(*p)); if( argc==0 ){ return setDateTimeToCurrent(context, p); } if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT || eType==SQLITE_INTEGER ){ setRawDateNumber(p, sqlite3_value_double(argv[0])); }else{ z = sqlite3_value_text(argv[0]); if( !z || parseDateOrTime(context, (char*)z, p) ){ return 1; } } for(i=1; iisError || !validJulianDay(p->iJD) ) return 1; return 0; } /* ** The following routines implement the various date and time functions ** of SQLite. */ /* ** julianday( TIMESTRING, MOD, MOD, ...) ** ** Return the julian day number of the date specified in the arguments */ static void juliandayFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; if( isDate(context, argc, argv, &x)==0 ){ computeJD(&x); sqlite3_result_double(context, x.iJD/86400000.0); } } /* ** datetime( TIMESTRING, MOD, MOD, ...) ** ** Return YYYY-MM-DD HH:MM:SS */ static void datetimeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; if( isDate(context, argc, argv, &x)==0 ){ char zBuf[100]; computeYMD_HMS(&x); sqlite3_snprintf(sizeof(zBuf), zBuf, "%04d-%02d-%02d %02d:%02d:%02d", x.Y, x.M, x.D, x.h, x.m, (int)(x.s)); sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT); } } /* ** time( TIMESTRING, MOD, MOD, ...) ** ** Return HH:MM:SS */ static void timeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; if( isDate(context, argc, argv, &x)==0 ){ char zBuf[100]; computeHMS(&x); sqlite3_snprintf(sizeof(zBuf), zBuf, "%02d:%02d:%02d", x.h, x.m, (int)x.s); sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT); } } /* ** date( TIMESTRING, MOD, MOD, ...) ** ** Return YYYY-MM-DD */ static void dateFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; if( isDate(context, argc, argv, &x)==0 ){ char zBuf[100]; computeYMD(&x); sqlite3_snprintf(sizeof(zBuf), zBuf, "%04d-%02d-%02d", x.Y, x.M, x.D); sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT); } } /* ** strftime( FORMAT, TIMESTRING, MOD, MOD, ...) ** ** Return a string described by FORMAT. Conversions as follows: ** ** %d day of month ** %f ** fractional seconds SS.SSS ** %H hour 00-24 ** %j day of year 000-366 ** %J ** julian day number ** %m month 01-12 ** %M minute 00-59 ** %s seconds since 1970-01-01 ** %S seconds 00-59 ** %w day of week 0-6 sunday==0 ** %W week of year 00-53 ** %Y year 0000-9999 ** %% % */ static void strftimeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ DateTime x; u64 n; size_t i,j; char *z; sqlite3 *db; const char *zFmt; char zBuf[100]; if( argc==0 ) return; zFmt = (const char*)sqlite3_value_text(argv[0]); if( zFmt==0 || isDate(context, argc-1, argv+1, &x) ) return; db = sqlite3_context_db_handle(context); for(i=0, n=1; zFmt[i]; i++, n++){ if( zFmt[i]=='%' ){ switch( zFmt[i+1] ){ case 'd': case 'H': case 'm': case 'M': case 'S': case 'W': n++; /* fall thru */ case 'w': case '%': break; case 'f': n += 8; break; case 'j': n += 3; break; case 'Y': n += 8; break; case 's': case 'J': n += 50; break; default: return; /* ERROR. return a NULL */ } i++; } } testcase( n==sizeof(zBuf)-1 ); testcase( n==sizeof(zBuf) ); testcase( n==(u64)db->aLimit[SQLITE_LIMIT_LENGTH]+1 ); testcase( n==(u64)db->aLimit[SQLITE_LIMIT_LENGTH] ); if( n(u64)db->aLimit[SQLITE_LIMIT_LENGTH] ){ sqlite3_result_error_toobig(context); return; }else{ z = sqlite3DbMallocRawNN(db, (int)n); if( z==0 ){ sqlite3_result_error_nomem(context); return; } } computeJD(&x); computeYMD_HMS(&x); for(i=j=0; zFmt[i]; i++){ if( zFmt[i]!='%' ){ z[j++] = zFmt[i]; }else{ i++; switch( zFmt[i] ){ case 'd': sqlite3_snprintf(3, &z[j],"%02d",x.D); j+=2; break; case 'f': { double s = x.s; if( s>59.999 ) s = 59.999; sqlite3_snprintf(7, &z[j],"%06.3f", s); j += sqlite3Strlen30(&z[j]); break; } case 'H': sqlite3_snprintf(3, &z[j],"%02d",x.h); j+=2; break; case 'W': /* Fall thru */ case 'j': { int nDay; /* Number of days since 1st day of year */ DateTime y = x; y.validJD = 0; y.M = 1; y.D = 1; computeJD(&y); nDay = (int)((x.iJD-y.iJD+43200000)/86400000); if( zFmt[i]=='W' ){ int wd; /* 0=Monday, 1=Tuesday, ... 6=Sunday */ wd = (int)(((x.iJD+43200000)/86400000)%7); sqlite3_snprintf(3, &z[j],"%02d",(nDay+7-wd)/7); j += 2; }else{ sqlite3_snprintf(4, &z[j],"%03d",nDay+1); j += 3; } break; } case 'J': { sqlite3_snprintf(20, &z[j],"%.16g",x.iJD/86400000.0); j+=sqlite3Strlen30(&z[j]); break; } case 'm': sqlite3_snprintf(3, &z[j],"%02d",x.M); j+=2; break; case 'M': sqlite3_snprintf(3, &z[j],"%02d",x.m); j+=2; break; case 's': { i64 iS = (i64)(x.iJD/1000 - 21086676*(i64)10000); sqlite3Int64ToText(iS, &z[j]); j += sqlite3Strlen30(&z[j]); break; } case 'S': sqlite3_snprintf(3,&z[j],"%02d",(int)x.s); j+=2; break; case 'w': { z[j++] = (char)(((x.iJD+129600000)/86400000) % 7) + '0'; break; } case 'Y': { sqlite3_snprintf(5,&z[j],"%04d",x.Y); j+=sqlite3Strlen30(&z[j]); break; } default: z[j++] = '%'; break; } } } z[j] = 0; sqlite3_result_text(context, z, -1, z==zBuf ? SQLITE_TRANSIENT : SQLITE_DYNAMIC); } /* ** current_time() ** ** This function returns the same value as time('now'). */ static void ctimeFunc( sqlite3_context *context, int NotUsed, sqlite3_value **NotUsed2 ){ UNUSED_PARAMETER2(NotUsed, NotUsed2); timeFunc(context, 0, 0); } /* ** current_date() ** ** This function returns the same value as date('now'). */ static void cdateFunc( sqlite3_context *context, int NotUsed, sqlite3_value **NotUsed2 ){ UNUSED_PARAMETER2(NotUsed, NotUsed2); dateFunc(context, 0, 0); } /* ** current_timestamp() ** ** This function returns the same value as datetime('now'). */ static void ctimestampFunc( sqlite3_context *context, int NotUsed, sqlite3_value **NotUsed2 ){ UNUSED_PARAMETER2(NotUsed, NotUsed2); datetimeFunc(context, 0, 0); } #endif /* !defined(SQLITE_OMIT_DATETIME_FUNCS) */ #ifdef SQLITE_OMIT_DATETIME_FUNCS /* ** If the library is compiled to omit the full-scale date and time ** handling (to get a smaller binary), the following minimal version ** of the functions current_time(), current_date() and current_timestamp() ** are included instead. This is to support column declarations that ** include "DEFAULT CURRENT_TIME" etc. ** ** This function uses the C-library functions time(), gmtime() ** and strftime(). The format string to pass to strftime() is supplied ** as the user-data for the function. */ static void currentTimeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ time_t t; char *zFormat = (char *)sqlite3_user_data(context); sqlite3_int64 iT; struct tm *pTm; struct tm sNow; char zBuf[20]; UNUSED_PARAMETER(argc); UNUSED_PARAMETER(argv); iT = sqlite3StmtCurrentTime(context); if( iT<=0 ) return; t = iT/1000 - 10000*(sqlite3_int64)21086676; #if HAVE_GMTIME_R pTm = gmtime_r(&t, &sNow); #else sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN)); pTm = gmtime(&t); if( pTm ) memcpy(&sNow, pTm, sizeof(sNow)); sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN)); #endif if( pTm ){ strftime(zBuf, 20, zFormat, &sNow); sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT); } } #endif /* ** This function registered all of the above C functions as SQL ** functions. This should be the only routine in this file with ** external linkage. */ SQLITE_PRIVATE void sqlite3RegisterDateTimeFunctions(void){ static FuncDef aDateTimeFuncs[] = { #ifndef SQLITE_OMIT_DATETIME_FUNCS PURE_DATE(julianday, -1, 0, 0, juliandayFunc ), PURE_DATE(date, -1, 0, 0, dateFunc ), PURE_DATE(time, -1, 0, 0, timeFunc ), PURE_DATE(datetime, -1, 0, 0, datetimeFunc ), PURE_DATE(strftime, -1, 0, 0, strftimeFunc ), DFUNCTION(current_time, 0, 0, 0, ctimeFunc ), DFUNCTION(current_timestamp, 0, 0, 0, ctimestampFunc), DFUNCTION(current_date, 0, 0, 0, cdateFunc ), #else STR_FUNCTION(current_time, 0, "%H:%M:%S", 0, currentTimeFunc), STR_FUNCTION(current_date, 0, "%Y-%m-%d", 0, currentTimeFunc), STR_FUNCTION(current_timestamp, 0, "%Y-%m-%d %H:%M:%S", 0, currentTimeFunc), #endif }; sqlite3InsertBuiltinFuncs(aDateTimeFuncs, ArraySize(aDateTimeFuncs)); } /************** End of date.c ************************************************/ /************** Begin file os.c **********************************************/ /* ** 2005 November 29 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains OS interface code that is common to all ** architectures. */ /* #include "sqliteInt.h" */ /* ** If we compile with the SQLITE_TEST macro set, then the following block ** of code will give us the ability to simulate a disk I/O error. This ** is used for testing the I/O recovery logic. */ #if defined(SQLITE_TEST) SQLITE_API int sqlite3_io_error_hit = 0; /* Total number of I/O Errors */ SQLITE_API int sqlite3_io_error_hardhit = 0; /* Number of non-benign errors */ SQLITE_API int sqlite3_io_error_pending = 0; /* Count down to first I/O error */ SQLITE_API int sqlite3_io_error_persist = 0; /* True if I/O errors persist */ SQLITE_API int sqlite3_io_error_benign = 0; /* True if errors are benign */ SQLITE_API int sqlite3_diskfull_pending = 0; SQLITE_API int sqlite3_diskfull = 0; #endif /* defined(SQLITE_TEST) */ /* ** When testing, also keep a count of the number of open files. */ #if defined(SQLITE_TEST) SQLITE_API int sqlite3_open_file_count = 0; #endif /* defined(SQLITE_TEST) */ /* ** The default SQLite sqlite3_vfs implementations do not allocate ** memory (actually, os_unix.c allocates a small amount of memory ** from within OsOpen()), but some third-party implementations may. ** So we test the effects of a malloc() failing and the sqlite3OsXXX() ** function returning SQLITE_IOERR_NOMEM using the DO_OS_MALLOC_TEST macro. ** ** The following functions are instrumented for malloc() failure ** testing: ** ** sqlite3OsRead() ** sqlite3OsWrite() ** sqlite3OsSync() ** sqlite3OsFileSize() ** sqlite3OsLock() ** sqlite3OsCheckReservedLock() ** sqlite3OsFileControl() ** sqlite3OsShmMap() ** sqlite3OsOpen() ** sqlite3OsDelete() ** sqlite3OsAccess() ** sqlite3OsFullPathname() ** */ #if defined(SQLITE_TEST) SQLITE_API int sqlite3_memdebug_vfs_oom_test = 1; #define DO_OS_MALLOC_TEST(x) \ if (sqlite3_memdebug_vfs_oom_test && (!x || !sqlite3JournalIsInMemory(x))) { \ void *pTstAlloc = sqlite3Malloc(10); \ if (!pTstAlloc) return SQLITE_IOERR_NOMEM_BKPT; \ sqlite3_free(pTstAlloc); \ } #else #define DO_OS_MALLOC_TEST(x) #endif /* ** The following routines are convenience wrappers around methods ** of the sqlite3_file object. This is mostly just syntactic sugar. All ** of this would be completely automatic if SQLite were coded using ** C++ instead of plain old C. */ SQLITE_PRIVATE void sqlite3OsClose(sqlite3_file *pId){ if( pId->pMethods ){ pId->pMethods->xClose(pId); pId->pMethods = 0; } } SQLITE_PRIVATE int sqlite3OsRead(sqlite3_file *id, void *pBuf, int amt, i64 offset){ DO_OS_MALLOC_TEST(id); return id->pMethods->xRead(id, pBuf, amt, offset); } SQLITE_PRIVATE int sqlite3OsWrite(sqlite3_file *id, const void *pBuf, int amt, i64 offset){ DO_OS_MALLOC_TEST(id); return id->pMethods->xWrite(id, pBuf, amt, offset); } SQLITE_PRIVATE int sqlite3OsTruncate(sqlite3_file *id, i64 size){ return id->pMethods->xTruncate(id, size); } SQLITE_PRIVATE int sqlite3OsSync(sqlite3_file *id, int flags){ DO_OS_MALLOC_TEST(id); return flags ? id->pMethods->xSync(id, flags) : SQLITE_OK; } SQLITE_PRIVATE int sqlite3OsFileSize(sqlite3_file *id, i64 *pSize){ DO_OS_MALLOC_TEST(id); return id->pMethods->xFileSize(id, pSize); } SQLITE_PRIVATE int sqlite3OsLock(sqlite3_file *id, int lockType){ DO_OS_MALLOC_TEST(id); return id->pMethods->xLock(id, lockType); } SQLITE_PRIVATE int sqlite3OsUnlock(sqlite3_file *id, int lockType){ return id->pMethods->xUnlock(id, lockType); } SQLITE_PRIVATE int sqlite3OsCheckReservedLock(sqlite3_file *id, int *pResOut){ DO_OS_MALLOC_TEST(id); return id->pMethods->xCheckReservedLock(id, pResOut); } /* ** Use sqlite3OsFileControl() when we are doing something that might fail ** and we need to know about the failures. Use sqlite3OsFileControlHint() ** when simply tossing information over the wall to the VFS and we do not ** really care if the VFS receives and understands the information since it ** is only a hint and can be safely ignored. The sqlite3OsFileControlHint() ** routine has no return value since the return value would be meaningless. */ SQLITE_PRIVATE int sqlite3OsFileControl(sqlite3_file *id, int op, void *pArg){ if( id->pMethods==0 ) return SQLITE_NOTFOUND; #ifdef SQLITE_TEST if( op!=SQLITE_FCNTL_COMMIT_PHASETWO && op!=SQLITE_FCNTL_LOCK_TIMEOUT ){ /* Faults are not injected into COMMIT_PHASETWO because, assuming SQLite ** is using a regular VFS, it is called after the corresponding ** transaction has been committed. Injecting a fault at this point ** confuses the test scripts - the COMMIT comand returns SQLITE_NOMEM ** but the transaction is committed anyway. ** ** The core must call OsFileControl() though, not OsFileControlHint(), ** as if a custom VFS (e.g. zipvfs) returns an error here, it probably ** means the commit really has failed and an error should be returned ** to the user. */ DO_OS_MALLOC_TEST(id); } #endif return id->pMethods->xFileControl(id, op, pArg); } SQLITE_PRIVATE void sqlite3OsFileControlHint(sqlite3_file *id, int op, void *pArg){ if( id->pMethods ) (void)id->pMethods->xFileControl(id, op, pArg); } SQLITE_PRIVATE int sqlite3OsSectorSize(sqlite3_file *id){ int (*xSectorSize)(sqlite3_file*) = id->pMethods->xSectorSize; return (xSectorSize ? xSectorSize(id) : SQLITE_DEFAULT_SECTOR_SIZE); } SQLITE_PRIVATE int sqlite3OsDeviceCharacteristics(sqlite3_file *id){ return id->pMethods->xDeviceCharacteristics(id); } #ifndef SQLITE_OMIT_WAL SQLITE_PRIVATE int sqlite3OsShmLock(sqlite3_file *id, int offset, int n, int flags){ return id->pMethods->xShmLock(id, offset, n, flags); } SQLITE_PRIVATE void sqlite3OsShmBarrier(sqlite3_file *id){ id->pMethods->xShmBarrier(id); } SQLITE_PRIVATE int sqlite3OsShmUnmap(sqlite3_file *id, int deleteFlag){ return id->pMethods->xShmUnmap(id, deleteFlag); } SQLITE_PRIVATE int sqlite3OsShmMap( sqlite3_file *id, /* Database file handle */ int iPage, int pgsz, int bExtend, /* True to extend file if necessary */ void volatile **pp /* OUT: Pointer to mapping */ ){ DO_OS_MALLOC_TEST(id); return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp); } #endif /* SQLITE_OMIT_WAL */ #if SQLITE_MAX_MMAP_SIZE>0 /* The real implementation of xFetch and xUnfetch */ SQLITE_PRIVATE int sqlite3OsFetch(sqlite3_file *id, i64 iOff, int iAmt, void **pp){ DO_OS_MALLOC_TEST(id); return id->pMethods->xFetch(id, iOff, iAmt, pp); } SQLITE_PRIVATE int sqlite3OsUnfetch(sqlite3_file *id, i64 iOff, void *p){ return id->pMethods->xUnfetch(id, iOff, p); } #else /* No-op stubs to use when memory-mapped I/O is disabled */ SQLITE_PRIVATE int sqlite3OsFetch(sqlite3_file *id, i64 iOff, int iAmt, void **pp){ *pp = 0; return SQLITE_OK; } SQLITE_PRIVATE int sqlite3OsUnfetch(sqlite3_file *id, i64 iOff, void *p){ return SQLITE_OK; } #endif /* ** The next group of routines are convenience wrappers around the ** VFS methods. */ SQLITE_PRIVATE int sqlite3OsOpen( sqlite3_vfs *pVfs, const char *zPath, sqlite3_file *pFile, int flags, int *pFlagsOut ){ int rc; DO_OS_MALLOC_TEST(0); /* 0x87f7f is a mask of SQLITE_OPEN_ flags that are valid to be passed ** down into the VFS layer. Some SQLITE_OPEN_ flags (for example, ** SQLITE_OPEN_FULLMUTEX or SQLITE_OPEN_SHAREDCACHE) are blocked before ** reaching the VFS. */ rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x1087f7f, pFlagsOut); assert( rc==SQLITE_OK || pFile->pMethods==0 ); return rc; } SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ DO_OS_MALLOC_TEST(0); assert( dirSync==0 || dirSync==1 ); return pVfs->xDelete(pVfs, zPath, dirSync); } SQLITE_PRIVATE int sqlite3OsAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ){ DO_OS_MALLOC_TEST(0); return pVfs->xAccess(pVfs, zPath, flags, pResOut); } SQLITE_PRIVATE int sqlite3OsFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nPathOut, char *zPathOut ){ DO_OS_MALLOC_TEST(0); zPathOut[0] = 0; return pVfs->xFullPathname(pVfs, zPath, nPathOut, zPathOut); } #ifndef SQLITE_OMIT_LOAD_EXTENSION SQLITE_PRIVATE void *sqlite3OsDlOpen(sqlite3_vfs *pVfs, const char *zPath){ return pVfs->xDlOpen(pVfs, zPath); } SQLITE_PRIVATE void sqlite3OsDlError(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ pVfs->xDlError(pVfs, nByte, zBufOut); } SQLITE_PRIVATE void (*sqlite3OsDlSym(sqlite3_vfs *pVfs, void *pHdle, const char *zSym))(void){ return pVfs->xDlSym(pVfs, pHdle, zSym); } SQLITE_PRIVATE void sqlite3OsDlClose(sqlite3_vfs *pVfs, void *pHandle){ pVfs->xDlClose(pVfs, pHandle); } #endif /* SQLITE_OMIT_LOAD_EXTENSION */ SQLITE_PRIVATE int sqlite3OsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ if( sqlite3Config.iPrngSeed ){ memset(zBufOut, 0, nByte); if( ALWAYS(nByte>(signed)sizeof(unsigned)) ) nByte = sizeof(unsigned int); memcpy(zBufOut, &sqlite3Config.iPrngSeed, nByte); return SQLITE_OK; }else{ return pVfs->xRandomness(pVfs, nByte, zBufOut); } } SQLITE_PRIVATE int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ return pVfs->xSleep(pVfs, nMicro); } SQLITE_PRIVATE int sqlite3OsGetLastError(sqlite3_vfs *pVfs){ return pVfs->xGetLastError ? pVfs->xGetLastError(pVfs, 0, 0) : 0; } SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ int rc; /* IMPLEMENTATION-OF: R-49045-42493 SQLite will use the xCurrentTimeInt64() ** method to get the current date and time if that method is available ** (if iVersion is 2 or greater and the function pointer is not NULL) and ** will fall back to xCurrentTime() if xCurrentTimeInt64() is ** unavailable. */ if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){ rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); }else{ double r; rc = pVfs->xCurrentTime(pVfs, &r); *pTimeOut = (sqlite3_int64)(r*86400000.0); } return rc; } SQLITE_PRIVATE int sqlite3OsOpenMalloc( sqlite3_vfs *pVfs, const char *zFile, sqlite3_file **ppFile, int flags, int *pOutFlags ){ int rc; sqlite3_file *pFile; pFile = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile); if( pFile ){ rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); if( rc!=SQLITE_OK ){ sqlite3_free(pFile); }else{ *ppFile = pFile; } }else{ rc = SQLITE_NOMEM_BKPT; } return rc; } SQLITE_PRIVATE void sqlite3OsCloseFree(sqlite3_file *pFile){ assert( pFile ); sqlite3OsClose(pFile); sqlite3_free(pFile); } /* ** This function is a wrapper around the OS specific implementation of ** sqlite3_os_init(). The purpose of the wrapper is to provide the ** ability to simulate a malloc failure, so that the handling of an ** error in sqlite3_os_init() by the upper layers can be tested. */ SQLITE_PRIVATE int sqlite3OsInit(void){ void *p = sqlite3_malloc(10); if( p==0 ) return SQLITE_NOMEM_BKPT; sqlite3_free(p); return sqlite3_os_init(); } /* ** The list of all registered VFS implementations. */ static sqlite3_vfs * SQLITE_WSD vfsList = 0; #define vfsList GLOBAL(sqlite3_vfs *, vfsList) /* ** Locate a VFS by name. If no name is given, simply return the ** first VFS on the list. */ SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfs){ sqlite3_vfs *pVfs = 0; #if SQLITE_THREADSAFE sqlite3_mutex *mutex; #endif #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return 0; #endif #if SQLITE_THREADSAFE mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); #endif sqlite3_mutex_enter(mutex); for(pVfs = vfsList; pVfs; pVfs=pVfs->pNext){ if( zVfs==0 ) break; if( strcmp(zVfs, pVfs->zName)==0 ) break; } sqlite3_mutex_leave(mutex); return pVfs; } /* ** Unlink a VFS from the linked list */ static void vfsUnlink(sqlite3_vfs *pVfs){ assert( sqlite3_mutex_held(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN)) ); if( pVfs==0 ){ /* No-op */ }else if( vfsList==pVfs ){ vfsList = pVfs->pNext; }else if( vfsList ){ sqlite3_vfs *p = vfsList; while( p->pNext && p->pNext!=pVfs ){ p = p->pNext; } if( p->pNext==pVfs ){ p->pNext = pVfs->pNext; } } } /* ** Register a VFS with the system. It is harmless to register the same ** VFS multiple times. The new VFS becomes the default if makeDflt is ** true. */ SQLITE_API int sqlite3_vfs_register(sqlite3_vfs *pVfs, int makeDflt){ MUTEX_LOGIC(sqlite3_mutex *mutex;) #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return rc; #endif #ifdef SQLITE_ENABLE_API_ARMOR if( pVfs==0 ) return SQLITE_MISUSE_BKPT; #endif MUTEX_LOGIC( mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); ) sqlite3_mutex_enter(mutex); vfsUnlink(pVfs); if( makeDflt || vfsList==0 ){ pVfs->pNext = vfsList; vfsList = pVfs; }else{ pVfs->pNext = vfsList->pNext; vfsList->pNext = pVfs; } assert(vfsList); sqlite3_mutex_leave(mutex); return SQLITE_OK; } /* ** Unregister a VFS so that it is no longer accessible. */ SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs *pVfs){ MUTEX_LOGIC(sqlite3_mutex *mutex;) #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return rc; #endif MUTEX_LOGIC( mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); ) sqlite3_mutex_enter(mutex); vfsUnlink(pVfs); sqlite3_mutex_leave(mutex); return SQLITE_OK; } /************** End of os.c **************************************************/ /************** Begin file fault.c *******************************************/ /* ** 2008 Jan 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code to support the concept of "benign" ** malloc failures (when the xMalloc() or xRealloc() method of the ** sqlite3_mem_methods structure fails to allocate a block of memory ** and returns 0). ** ** Most malloc failures are non-benign. After they occur, SQLite ** abandons the current operation and returns an error code (usually ** SQLITE_NOMEM) to the user. However, sometimes a fault is not necessarily ** fatal. For example, if a malloc fails while resizing a hash table, this ** is completely recoverable simply by not carrying out the resize. The ** hash table will continue to function normally. So a malloc failure ** during a hash table resize is a benign fault. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_UNTESTABLE /* ** Global variables. */ typedef struct BenignMallocHooks BenignMallocHooks; static SQLITE_WSD struct BenignMallocHooks { void (*xBenignBegin)(void); void (*xBenignEnd)(void); } sqlite3Hooks = { 0, 0 }; /* The "wsdHooks" macro will resolve to the appropriate BenignMallocHooks ** structure. If writable static data is unsupported on the target, ** we have to locate the state vector at run-time. In the more common ** case where writable static data is supported, wsdHooks can refer directly ** to the "sqlite3Hooks" state vector declared above. */ #ifdef SQLITE_OMIT_WSD # define wsdHooksInit \ BenignMallocHooks *x = &GLOBAL(BenignMallocHooks,sqlite3Hooks) # define wsdHooks x[0] #else # define wsdHooksInit # define wsdHooks sqlite3Hooks #endif /* ** Register hooks to call when sqlite3BeginBenignMalloc() and ** sqlite3EndBenignMalloc() are called, respectively. */ SQLITE_PRIVATE void sqlite3BenignMallocHooks( void (*xBenignBegin)(void), void (*xBenignEnd)(void) ){ wsdHooksInit; wsdHooks.xBenignBegin = xBenignBegin; wsdHooks.xBenignEnd = xBenignEnd; } /* ** This (sqlite3EndBenignMalloc()) is called by SQLite code to indicate that ** subsequent malloc failures are benign. A call to sqlite3EndBenignMalloc() ** indicates that subsequent malloc failures are non-benign. */ SQLITE_PRIVATE void sqlite3BeginBenignMalloc(void){ wsdHooksInit; if( wsdHooks.xBenignBegin ){ wsdHooks.xBenignBegin(); } } SQLITE_PRIVATE void sqlite3EndBenignMalloc(void){ wsdHooksInit; if( wsdHooks.xBenignEnd ){ wsdHooks.xBenignEnd(); } } #endif /* #ifndef SQLITE_UNTESTABLE */ /************** End of fault.c ***********************************************/ /************** Begin file mem0.c ********************************************/ /* ** 2008 October 28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains a no-op memory allocation drivers for use when ** SQLITE_ZERO_MALLOC is defined. The allocation drivers implemented ** here always fail. SQLite will not operate with these drivers. These ** are merely placeholders. Real drivers must be substituted using ** sqlite3_config() before SQLite will operate. */ /* #include "sqliteInt.h" */ /* ** This version of the memory allocator is the default. It is ** used when no other memory allocator is specified using compile-time ** macros. */ #ifdef SQLITE_ZERO_MALLOC /* ** No-op versions of all memory allocation routines */ static void *sqlite3MemMalloc(int nByte){ return 0; } static void sqlite3MemFree(void *pPrior){ return; } static void *sqlite3MemRealloc(void *pPrior, int nByte){ return 0; } static int sqlite3MemSize(void *pPrior){ return 0; } static int sqlite3MemRoundup(int n){ return n; } static int sqlite3MemInit(void *NotUsed){ return SQLITE_OK; } static void sqlite3MemShutdown(void *NotUsed){ return; } /* ** This routine is the only routine in this file with external linkage. ** ** Populate the low-level memory allocation function pointers in ** sqlite3GlobalConfig.m with pointers to the routines in this file. */ SQLITE_PRIVATE void sqlite3MemSetDefault(void){ static const sqlite3_mem_methods defaultMethods = { sqlite3MemMalloc, sqlite3MemFree, sqlite3MemRealloc, sqlite3MemSize, sqlite3MemRoundup, sqlite3MemInit, sqlite3MemShutdown, 0 }; sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods); } #endif /* SQLITE_ZERO_MALLOC */ /************** End of mem0.c ************************************************/ /************** Begin file mem1.c ********************************************/ /* ** 2007 August 14 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains low-level memory allocation drivers for when ** SQLite will use the standard C-library malloc/realloc/free interface ** to obtain the memory it needs. ** ** This file contains implementations of the low-level memory allocation ** routines specified in the sqlite3_mem_methods object. The content of ** this file is only used if SQLITE_SYSTEM_MALLOC is defined. The ** SQLITE_SYSTEM_MALLOC macro is defined automatically if neither the ** SQLITE_MEMDEBUG nor the SQLITE_WIN32_MALLOC macros are defined. The ** default configuration is to use memory allocation routines in this ** file. ** ** C-preprocessor macro summary: ** ** HAVE_MALLOC_USABLE_SIZE The configure script sets this symbol if ** the malloc_usable_size() interface exists ** on the target platform. Or, this symbol ** can be set manually, if desired. ** If an equivalent interface exists by ** a different name, using a separate -D ** option to rename it. ** ** SQLITE_WITHOUT_ZONEMALLOC Some older macs lack support for the zone ** memory allocator. Set this symbol to enable ** building on older macs. ** ** SQLITE_WITHOUT_MSIZE Set this symbol to disable the use of ** _msize() on windows systems. This might ** be necessary when compiling for Delphi, ** for example. */ /* #include "sqliteInt.h" */ /* ** This version of the memory allocator is the default. It is ** used when no other memory allocator is specified using compile-time ** macros. */ #ifdef SQLITE_SYSTEM_MALLOC #if defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC) /* ** Use the zone allocator available on apple products unless the ** SQLITE_WITHOUT_ZONEMALLOC symbol is defined. */ #include #include #ifdef SQLITE_MIGHT_BE_SINGLE_CORE #include #endif /* SQLITE_MIGHT_BE_SINGLE_CORE */ static malloc_zone_t* _sqliteZone_; #define SQLITE_MALLOC(x) malloc_zone_malloc(_sqliteZone_, (x)) #define SQLITE_FREE(x) malloc_zone_free(_sqliteZone_, (x)); #define SQLITE_REALLOC(x,y) malloc_zone_realloc(_sqliteZone_, (x), (y)) #define SQLITE_MALLOCSIZE(x) \ (_sqliteZone_ ? _sqliteZone_->size(_sqliteZone_,x) : malloc_size(x)) #else /* if not __APPLE__ */ /* ** Use standard C library malloc and free on non-Apple systems. ** Also used by Apple systems if SQLITE_WITHOUT_ZONEMALLOC is defined. */ #define SQLITE_MALLOC(x) malloc(x) #define SQLITE_FREE(x) free(x) #define SQLITE_REALLOC(x,y) realloc((x),(y)) /* ** The malloc.h header file is needed for malloc_usable_size() function ** on some systems (e.g. Linux). */ #if HAVE_MALLOC_H && HAVE_MALLOC_USABLE_SIZE # define SQLITE_USE_MALLOC_H 1 # define SQLITE_USE_MALLOC_USABLE_SIZE 1 /* ** The MSVCRT has malloc_usable_size(), but it is called _msize(). The ** use of _msize() is automatic, but can be disabled by compiling with ** -DSQLITE_WITHOUT_MSIZE. Using the _msize() function also requires ** the malloc.h header file. */ #elif defined(_MSC_VER) && !defined(SQLITE_WITHOUT_MSIZE) # define SQLITE_USE_MALLOC_H # define SQLITE_USE_MSIZE #endif /* ** Include the malloc.h header file, if necessary. Also set define macro ** SQLITE_MALLOCSIZE to the appropriate function name, which is _msize() ** for MSVC and malloc_usable_size() for most other systems (e.g. Linux). ** The memory size function can always be overridden manually by defining ** the macro SQLITE_MALLOCSIZE to the desired function name. */ #if defined(SQLITE_USE_MALLOC_H) # include # if defined(SQLITE_USE_MALLOC_USABLE_SIZE) # if !defined(SQLITE_MALLOCSIZE) # define SQLITE_MALLOCSIZE(x) malloc_usable_size(x) # endif # elif defined(SQLITE_USE_MSIZE) # if !defined(SQLITE_MALLOCSIZE) # define SQLITE_MALLOCSIZE _msize # endif # endif #endif /* defined(SQLITE_USE_MALLOC_H) */ #endif /* __APPLE__ or not __APPLE__ */ /* ** Like malloc(), but remember the size of the allocation ** so that we can find it later using sqlite3MemSize(). ** ** For this low-level routine, we are guaranteed that nByte>0 because ** cases of nByte<=0 will be intercepted and dealt with by higher level ** routines. */ static void *sqlite3MemMalloc(int nByte){ #ifdef SQLITE_MALLOCSIZE void *p; testcase( ROUND8(nByte)==nByte ); p = SQLITE_MALLOC( nByte ); if( p==0 ){ testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte); } return p; #else sqlite3_int64 *p; assert( nByte>0 ); testcase( ROUND8(nByte)!=nByte ); p = SQLITE_MALLOC( nByte+8 ); if( p ){ p[0] = nByte; p++; }else{ testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte); } return (void *)p; #endif } /* ** Like free() but works for allocations obtained from sqlite3MemMalloc() ** or sqlite3MemRealloc(). ** ** For this low-level routine, we already know that pPrior!=0 since ** cases where pPrior==0 will have been intecepted and dealt with ** by higher-level routines. */ static void sqlite3MemFree(void *pPrior){ #ifdef SQLITE_MALLOCSIZE SQLITE_FREE(pPrior); #else sqlite3_int64 *p = (sqlite3_int64*)pPrior; assert( pPrior!=0 ); p--; SQLITE_FREE(p); #endif } /* ** Report the allocated size of a prior return from xMalloc() ** or xRealloc(). */ static int sqlite3MemSize(void *pPrior){ #ifdef SQLITE_MALLOCSIZE assert( pPrior!=0 ); return (int)SQLITE_MALLOCSIZE(pPrior); #else sqlite3_int64 *p; assert( pPrior!=0 ); p = (sqlite3_int64*)pPrior; p--; return (int)p[0]; #endif } /* ** Like realloc(). Resize an allocation previously obtained from ** sqlite3MemMalloc(). ** ** For this low-level interface, we know that pPrior!=0. Cases where ** pPrior==0 while have been intercepted by higher-level routine and ** redirected to xMalloc. Similarly, we know that nByte>0 because ** cases where nByte<=0 will have been intercepted by higher-level ** routines and redirected to xFree. */ static void *sqlite3MemRealloc(void *pPrior, int nByte){ #ifdef SQLITE_MALLOCSIZE void *p = SQLITE_REALLOC(pPrior, nByte); if( p==0 ){ testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(SQLITE_NOMEM, "failed memory resize %u to %u bytes", SQLITE_MALLOCSIZE(pPrior), nByte); } return p; #else sqlite3_int64 *p = (sqlite3_int64*)pPrior; assert( pPrior!=0 && nByte>0 ); assert( nByte==ROUND8(nByte) ); /* EV: R-46199-30249 */ p--; p = SQLITE_REALLOC(p, nByte+8 ); if( p ){ p[0] = nByte; p++; }else{ testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(SQLITE_NOMEM, "failed memory resize %u to %u bytes", sqlite3MemSize(pPrior), nByte); } return (void*)p; #endif } /* ** Round up a request size to the next valid allocation size. */ static int sqlite3MemRoundup(int n){ return ROUND8(n); } /* ** Initialize this module. */ static int sqlite3MemInit(void *NotUsed){ #if defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC) int cpuCount; size_t len; if( _sqliteZone_ ){ return SQLITE_OK; } len = sizeof(cpuCount); /* One usually wants to use hw.acctivecpu for MT decisions, but not here */ sysctlbyname("hw.ncpu", &cpuCount, &len, NULL, 0); if( cpuCount>1 ){ /* defer MT decisions to system malloc */ _sqliteZone_ = malloc_default_zone(); }else{ /* only 1 core, use our own zone to contention over global locks, ** e.g. we have our own dedicated locks */ _sqliteZone_ = malloc_create_zone(4096, 0); malloc_set_zone_name(_sqliteZone_, "Sqlite_Heap"); } #endif /* defined(__APPLE__) && !defined(SQLITE_WITHOUT_ZONEMALLOC) */ UNUSED_PARAMETER(NotUsed); return SQLITE_OK; } /* ** Deinitialize this module. */ static void sqlite3MemShutdown(void *NotUsed){ UNUSED_PARAMETER(NotUsed); return; } /* ** This routine is the only routine in this file with external linkage. ** ** Populate the low-level memory allocation function pointers in ** sqlite3GlobalConfig.m with pointers to the routines in this file. */ SQLITE_PRIVATE void sqlite3MemSetDefault(void){ static const sqlite3_mem_methods defaultMethods = { sqlite3MemMalloc, sqlite3MemFree, sqlite3MemRealloc, sqlite3MemSize, sqlite3MemRoundup, sqlite3MemInit, sqlite3MemShutdown, 0 }; sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods); } #endif /* SQLITE_SYSTEM_MALLOC */ /************** End of mem1.c ************************************************/ /************** Begin file mem2.c ********************************************/ /* ** 2007 August 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains low-level memory allocation drivers for when ** SQLite will use the standard C-library malloc/realloc/free interface ** to obtain the memory it needs while adding lots of additional debugging ** information to each allocation in order to help detect and fix memory ** leaks and memory usage errors. ** ** This file contains implementations of the low-level memory allocation ** routines specified in the sqlite3_mem_methods object. */ /* #include "sqliteInt.h" */ /* ** This version of the memory allocator is used only if the ** SQLITE_MEMDEBUG macro is defined */ #ifdef SQLITE_MEMDEBUG /* ** The backtrace functionality is only available with GLIBC */ #ifdef __GLIBC__ extern int backtrace(void**,int); extern void backtrace_symbols_fd(void*const*,int,int); #else # define backtrace(A,B) 1 # define backtrace_symbols_fd(A,B,C) #endif /* #include */ /* ** Each memory allocation looks like this: ** ** ------------------------------------------------------------------------ ** | Title | backtrace pointers | MemBlockHdr | allocation | EndGuard | ** ------------------------------------------------------------------------ ** ** The application code sees only a pointer to the allocation. We have ** to back up from the allocation pointer to find the MemBlockHdr. The ** MemBlockHdr tells us the size of the allocation and the number of ** backtrace pointers. There is also a guard word at the end of the ** MemBlockHdr. */ struct MemBlockHdr { i64 iSize; /* Size of this allocation */ struct MemBlockHdr *pNext, *pPrev; /* Linked list of all unfreed memory */ char nBacktrace; /* Number of backtraces on this alloc */ char nBacktraceSlots; /* Available backtrace slots */ u8 nTitle; /* Bytes of title; includes '\0' */ u8 eType; /* Allocation type code */ int iForeGuard; /* Guard word for sanity */ }; /* ** Guard words */ #define FOREGUARD 0x80F5E153 #define REARGUARD 0xE4676B53 /* ** Number of malloc size increments to track. */ #define NCSIZE 1000 /* ** All of the static variables used by this module are collected ** into a single structure named "mem". This is to keep the ** static variables organized and to reduce namespace pollution ** when this module is combined with other in the amalgamation. */ static struct { /* ** Mutex to control access to the memory allocation subsystem. */ sqlite3_mutex *mutex; /* ** Head and tail of a linked list of all outstanding allocations */ struct MemBlockHdr *pFirst; struct MemBlockHdr *pLast; /* ** The number of levels of backtrace to save in new allocations. */ int nBacktrace; void (*xBacktrace)(int, int, void **); /* ** Title text to insert in front of each block */ int nTitle; /* Bytes of zTitle to save. Includes '\0' and padding */ char zTitle[100]; /* The title text */ /* ** sqlite3MallocDisallow() increments the following counter. ** sqlite3MallocAllow() decrements it. */ int disallow; /* Do not allow memory allocation */ /* ** Gather statistics on the sizes of memory allocations. ** nAlloc[i] is the number of allocation attempts of i*8 ** bytes. i==NCSIZE is the number of allocation attempts for ** sizes more than NCSIZE*8 bytes. */ int nAlloc[NCSIZE]; /* Total number of allocations */ int nCurrent[NCSIZE]; /* Current number of allocations */ int mxCurrent[NCSIZE]; /* Highwater mark for nCurrent */ } mem; /* ** Adjust memory usage statistics */ static void adjustStats(int iSize, int increment){ int i = ROUND8(iSize)/8; if( i>NCSIZE-1 ){ i = NCSIZE - 1; } if( increment>0 ){ mem.nAlloc[i]++; mem.nCurrent[i]++; if( mem.nCurrent[i]>mem.mxCurrent[i] ){ mem.mxCurrent[i] = mem.nCurrent[i]; } }else{ mem.nCurrent[i]--; assert( mem.nCurrent[i]>=0 ); } } /* ** Given an allocation, find the MemBlockHdr for that allocation. ** ** This routine checks the guards at either end of the allocation and ** if they are incorrect it asserts. */ static struct MemBlockHdr *sqlite3MemsysGetHeader(void *pAllocation){ struct MemBlockHdr *p; int *pInt; u8 *pU8; int nReserve; p = (struct MemBlockHdr*)pAllocation; p--; assert( p->iForeGuard==(int)FOREGUARD ); nReserve = ROUND8(p->iSize); pInt = (int*)pAllocation; pU8 = (u8*)pAllocation; assert( pInt[nReserve/sizeof(int)]==(int)REARGUARD ); /* This checks any of the "extra" bytes allocated due ** to rounding up to an 8 byte boundary to ensure ** they haven't been overwritten. */ while( nReserve-- > p->iSize ) assert( pU8[nReserve]==0x65 ); return p; } /* ** Return the number of bytes currently allocated at address p. */ static int sqlite3MemSize(void *p){ struct MemBlockHdr *pHdr; if( !p ){ return 0; } pHdr = sqlite3MemsysGetHeader(p); return (int)pHdr->iSize; } /* ** Initialize the memory allocation subsystem. */ static int sqlite3MemInit(void *NotUsed){ UNUSED_PARAMETER(NotUsed); assert( (sizeof(struct MemBlockHdr)&7) == 0 ); if( !sqlite3GlobalConfig.bMemstat ){ /* If memory status is enabled, then the malloc.c wrapper will already ** hold the STATIC_MEM mutex when the routines here are invoked. */ mem.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM); } return SQLITE_OK; } /* ** Deinitialize the memory allocation subsystem. */ static void sqlite3MemShutdown(void *NotUsed){ UNUSED_PARAMETER(NotUsed); mem.mutex = 0; } /* ** Round up a request size to the next valid allocation size. */ static int sqlite3MemRoundup(int n){ return ROUND8(n); } /* ** Fill a buffer with pseudo-random bytes. This is used to preset ** the content of a new memory allocation to unpredictable values and ** to clear the content of a freed allocation to unpredictable values. */ static void randomFill(char *pBuf, int nByte){ unsigned int x, y, r; x = SQLITE_PTR_TO_INT(pBuf); y = nByte | 1; while( nByte >= 4 ){ x = (x>>1) ^ (-(int)(x&1) & 0xd0000001); y = y*1103515245 + 12345; r = x ^ y; *(int*)pBuf = r; pBuf += 4; nByte -= 4; } while( nByte-- > 0 ){ x = (x>>1) ^ (-(int)(x&1) & 0xd0000001); y = y*1103515245 + 12345; r = x ^ y; *(pBuf++) = r & 0xff; } } /* ** Allocate nByte bytes of memory. */ static void *sqlite3MemMalloc(int nByte){ struct MemBlockHdr *pHdr; void **pBt; char *z; int *pInt; void *p = 0; int totalSize; int nReserve; sqlite3_mutex_enter(mem.mutex); assert( mem.disallow==0 ); nReserve = ROUND8(nByte); totalSize = nReserve + sizeof(*pHdr) + sizeof(int) + mem.nBacktrace*sizeof(void*) + mem.nTitle; p = malloc(totalSize); if( p ){ z = p; pBt = (void**)&z[mem.nTitle]; pHdr = (struct MemBlockHdr*)&pBt[mem.nBacktrace]; pHdr->pNext = 0; pHdr->pPrev = mem.pLast; if( mem.pLast ){ mem.pLast->pNext = pHdr; }else{ mem.pFirst = pHdr; } mem.pLast = pHdr; pHdr->iForeGuard = FOREGUARD; pHdr->eType = MEMTYPE_HEAP; pHdr->nBacktraceSlots = mem.nBacktrace; pHdr->nTitle = mem.nTitle; if( mem.nBacktrace ){ void *aAddr[40]; pHdr->nBacktrace = backtrace(aAddr, mem.nBacktrace+1)-1; memcpy(pBt, &aAddr[1], pHdr->nBacktrace*sizeof(void*)); assert(pBt[0]); if( mem.xBacktrace ){ mem.xBacktrace(nByte, pHdr->nBacktrace-1, &aAddr[1]); } }else{ pHdr->nBacktrace = 0; } if( mem.nTitle ){ memcpy(z, mem.zTitle, mem.nTitle); } pHdr->iSize = nByte; adjustStats(nByte, +1); pInt = (int*)&pHdr[1]; pInt[nReserve/sizeof(int)] = REARGUARD; randomFill((char*)pInt, nByte); memset(((char*)pInt)+nByte, 0x65, nReserve-nByte); p = (void*)pInt; } sqlite3_mutex_leave(mem.mutex); return p; } /* ** Free memory. */ static void sqlite3MemFree(void *pPrior){ struct MemBlockHdr *pHdr; void **pBt; char *z; assert( sqlite3GlobalConfig.bMemstat || sqlite3GlobalConfig.bCoreMutex==0 || mem.mutex!=0 ); pHdr = sqlite3MemsysGetHeader(pPrior); pBt = (void**)pHdr; pBt -= pHdr->nBacktraceSlots; sqlite3_mutex_enter(mem.mutex); if( pHdr->pPrev ){ assert( pHdr->pPrev->pNext==pHdr ); pHdr->pPrev->pNext = pHdr->pNext; }else{ assert( mem.pFirst==pHdr ); mem.pFirst = pHdr->pNext; } if( pHdr->pNext ){ assert( pHdr->pNext->pPrev==pHdr ); pHdr->pNext->pPrev = pHdr->pPrev; }else{ assert( mem.pLast==pHdr ); mem.pLast = pHdr->pPrev; } z = (char*)pBt; z -= pHdr->nTitle; adjustStats((int)pHdr->iSize, -1); randomFill(z, sizeof(void*)*pHdr->nBacktraceSlots + sizeof(*pHdr) + (int)pHdr->iSize + sizeof(int) + pHdr->nTitle); free(z); sqlite3_mutex_leave(mem.mutex); } /* ** Change the size of an existing memory allocation. ** ** For this debugging implementation, we *always* make a copy of the ** allocation into a new place in memory. In this way, if the ** higher level code is using pointer to the old allocation, it is ** much more likely to break and we are much more liking to find ** the error. */ static void *sqlite3MemRealloc(void *pPrior, int nByte){ struct MemBlockHdr *pOldHdr; void *pNew; assert( mem.disallow==0 ); assert( (nByte & 7)==0 ); /* EV: R-46199-30249 */ pOldHdr = sqlite3MemsysGetHeader(pPrior); pNew = sqlite3MemMalloc(nByte); if( pNew ){ memcpy(pNew, pPrior, (int)(nByteiSize ? nByte : pOldHdr->iSize)); if( nByte>pOldHdr->iSize ){ randomFill(&((char*)pNew)[pOldHdr->iSize], nByte - (int)pOldHdr->iSize); } sqlite3MemFree(pPrior); } return pNew; } /* ** Populate the low-level memory allocation function pointers in ** sqlite3GlobalConfig.m with pointers to the routines in this file. */ SQLITE_PRIVATE void sqlite3MemSetDefault(void){ static const sqlite3_mem_methods defaultMethods = { sqlite3MemMalloc, sqlite3MemFree, sqlite3MemRealloc, sqlite3MemSize, sqlite3MemRoundup, sqlite3MemInit, sqlite3MemShutdown, 0 }; sqlite3_config(SQLITE_CONFIG_MALLOC, &defaultMethods); } /* ** Set the "type" of an allocation. */ SQLITE_PRIVATE void sqlite3MemdebugSetType(void *p, u8 eType){ if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){ struct MemBlockHdr *pHdr; pHdr = sqlite3MemsysGetHeader(p); assert( pHdr->iForeGuard==FOREGUARD ); pHdr->eType = eType; } } /* ** Return TRUE if the mask of type in eType matches the type of the ** allocation p. Also return true if p==NULL. ** ** This routine is designed for use within an assert() statement, to ** verify the type of an allocation. For example: ** ** assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); */ SQLITE_PRIVATE int sqlite3MemdebugHasType(void *p, u8 eType){ int rc = 1; if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){ struct MemBlockHdr *pHdr; pHdr = sqlite3MemsysGetHeader(p); assert( pHdr->iForeGuard==FOREGUARD ); /* Allocation is valid */ if( (pHdr->eType&eType)==0 ){ rc = 0; } } return rc; } /* ** Return TRUE if the mask of type in eType matches no bits of the type of the ** allocation p. Also return true if p==NULL. ** ** This routine is designed for use within an assert() statement, to ** verify the type of an allocation. For example: ** ** assert( sqlite3MemdebugNoType(p, MEMTYPE_LOOKASIDE) ); */ SQLITE_PRIVATE int sqlite3MemdebugNoType(void *p, u8 eType){ int rc = 1; if( p && sqlite3GlobalConfig.m.xFree==sqlite3MemFree ){ struct MemBlockHdr *pHdr; pHdr = sqlite3MemsysGetHeader(p); assert( pHdr->iForeGuard==FOREGUARD ); /* Allocation is valid */ if( (pHdr->eType&eType)!=0 ){ rc = 0; } } return rc; } /* ** Set the number of backtrace levels kept for each allocation. ** A value of zero turns off backtracing. The number is always rounded ** up to a multiple of 2. */ SQLITE_PRIVATE void sqlite3MemdebugBacktrace(int depth){ if( depth<0 ){ depth = 0; } if( depth>20 ){ depth = 20; } depth = (depth+1)&0xfe; mem.nBacktrace = depth; } SQLITE_PRIVATE void sqlite3MemdebugBacktraceCallback(void (*xBacktrace)(int, int, void **)){ mem.xBacktrace = xBacktrace; } /* ** Set the title string for subsequent allocations. */ SQLITE_PRIVATE void sqlite3MemdebugSettitle(const char *zTitle){ unsigned int n = sqlite3Strlen30(zTitle) + 1; sqlite3_mutex_enter(mem.mutex); if( n>=sizeof(mem.zTitle) ) n = sizeof(mem.zTitle)-1; memcpy(mem.zTitle, zTitle, n); mem.zTitle[n] = 0; mem.nTitle = ROUND8(n); sqlite3_mutex_leave(mem.mutex); } SQLITE_PRIVATE void sqlite3MemdebugSync(){ struct MemBlockHdr *pHdr; for(pHdr=mem.pFirst; pHdr; pHdr=pHdr->pNext){ void **pBt = (void**)pHdr; pBt -= pHdr->nBacktraceSlots; mem.xBacktrace((int)pHdr->iSize, pHdr->nBacktrace-1, &pBt[1]); } } /* ** Open the file indicated and write a log of all unfreed memory ** allocations into that log. */ SQLITE_PRIVATE void sqlite3MemdebugDump(const char *zFilename){ FILE *out; struct MemBlockHdr *pHdr; void **pBt; int i; out = fopen(zFilename, "w"); if( out==0 ){ fprintf(stderr, "** Unable to output memory debug output log: %s **\n", zFilename); return; } for(pHdr=mem.pFirst; pHdr; pHdr=pHdr->pNext){ char *z = (char*)pHdr; z -= pHdr->nBacktraceSlots*sizeof(void*) + pHdr->nTitle; fprintf(out, "**** %lld bytes at %p from %s ****\n", pHdr->iSize, &pHdr[1], pHdr->nTitle ? z : "???"); if( pHdr->nBacktrace ){ fflush(out); pBt = (void**)pHdr; pBt -= pHdr->nBacktraceSlots; backtrace_symbols_fd(pBt, pHdr->nBacktrace, fileno(out)); fprintf(out, "\n"); } } fprintf(out, "COUNTS:\n"); for(i=0; i=1 ); size = mem3.aPool[i-1].u.hdr.size4x/4; assert( size==mem3.aPool[i+size-1].u.hdr.prevSize ); assert( size>=2 ); if( size <= MX_SMALL ){ memsys3UnlinkFromList(i, &mem3.aiSmall[size-2]); }else{ hash = size % N_HASH; memsys3UnlinkFromList(i, &mem3.aiHash[hash]); } } /* ** Link the chunk at mem3.aPool[i] so that is on the list rooted ** at *pRoot. */ static void memsys3LinkIntoList(u32 i, u32 *pRoot){ assert( sqlite3_mutex_held(mem3.mutex) ); mem3.aPool[i].u.list.next = *pRoot; mem3.aPool[i].u.list.prev = 0; if( *pRoot ){ mem3.aPool[*pRoot].u.list.prev = i; } *pRoot = i; } /* ** Link the chunk at index i into either the appropriate ** small chunk list, or into the large chunk hash table. */ static void memsys3Link(u32 i){ u32 size, hash; assert( sqlite3_mutex_held(mem3.mutex) ); assert( i>=1 ); assert( (mem3.aPool[i-1].u.hdr.size4x & 1)==0 ); size = mem3.aPool[i-1].u.hdr.size4x/4; assert( size==mem3.aPool[i+size-1].u.hdr.prevSize ); assert( size>=2 ); if( size <= MX_SMALL ){ memsys3LinkIntoList(i, &mem3.aiSmall[size-2]); }else{ hash = size % N_HASH; memsys3LinkIntoList(i, &mem3.aiHash[hash]); } } /* ** If the STATIC_MEM mutex is not already held, obtain it now. The mutex ** will already be held (obtained by code in malloc.c) if ** sqlite3GlobalConfig.bMemStat is true. */ static void memsys3Enter(void){ if( sqlite3GlobalConfig.bMemstat==0 && mem3.mutex==0 ){ mem3.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM); } sqlite3_mutex_enter(mem3.mutex); } static void memsys3Leave(void){ sqlite3_mutex_leave(mem3.mutex); } /* ** Called when we are unable to satisfy an allocation of nBytes. */ static void memsys3OutOfMemory(int nByte){ if( !mem3.alarmBusy ){ mem3.alarmBusy = 1; assert( sqlite3_mutex_held(mem3.mutex) ); sqlite3_mutex_leave(mem3.mutex); sqlite3_release_memory(nByte); sqlite3_mutex_enter(mem3.mutex); mem3.alarmBusy = 0; } } /* ** Chunk i is a free chunk that has been unlinked. Adjust its ** size parameters for check-out and return a pointer to the ** user portion of the chunk. */ static void *memsys3Checkout(u32 i, u32 nBlock){ u32 x; assert( sqlite3_mutex_held(mem3.mutex) ); assert( i>=1 ); assert( mem3.aPool[i-1].u.hdr.size4x/4==nBlock ); assert( mem3.aPool[i+nBlock-1].u.hdr.prevSize==nBlock ); x = mem3.aPool[i-1].u.hdr.size4x; mem3.aPool[i-1].u.hdr.size4x = nBlock*4 | 1 | (x&2); mem3.aPool[i+nBlock-1].u.hdr.prevSize = nBlock; mem3.aPool[i+nBlock-1].u.hdr.size4x |= 2; return &mem3.aPool[i]; } /* ** Carve a piece off of the end of the mem3.iKeyBlk free chunk. ** Return a pointer to the new allocation. Or, if the key chunk ** is not large enough, return 0. */ static void *memsys3FromKeyBlk(u32 nBlock){ assert( sqlite3_mutex_held(mem3.mutex) ); assert( mem3.szKeyBlk>=nBlock ); if( nBlock>=mem3.szKeyBlk-1 ){ /* Use the entire key chunk */ void *p = memsys3Checkout(mem3.iKeyBlk, mem3.szKeyBlk); mem3.iKeyBlk = 0; mem3.szKeyBlk = 0; mem3.mnKeyBlk = 0; return p; }else{ /* Split the key block. Return the tail. */ u32 newi, x; newi = mem3.iKeyBlk + mem3.szKeyBlk - nBlock; assert( newi > mem3.iKeyBlk+1 ); mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.prevSize = nBlock; mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.size4x |= 2; mem3.aPool[newi-1].u.hdr.size4x = nBlock*4 + 1; mem3.szKeyBlk -= nBlock; mem3.aPool[newi-1].u.hdr.prevSize = mem3.szKeyBlk; x = mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x & 2; mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x = mem3.szKeyBlk*4 | x; if( mem3.szKeyBlk < mem3.mnKeyBlk ){ mem3.mnKeyBlk = mem3.szKeyBlk; } return (void*)&mem3.aPool[newi]; } } /* ** *pRoot is the head of a list of free chunks of the same size ** or same size hash. In other words, *pRoot is an entry in either ** mem3.aiSmall[] or mem3.aiHash[]. ** ** This routine examines all entries on the given list and tries ** to coalesce each entries with adjacent free chunks. ** ** If it sees a chunk that is larger than mem3.iKeyBlk, it replaces ** the current mem3.iKeyBlk with the new larger chunk. In order for ** this mem3.iKeyBlk replacement to work, the key chunk must be ** linked into the hash tables. That is not the normal state of ** affairs, of course. The calling routine must link the key ** chunk before invoking this routine, then must unlink the (possibly ** changed) key chunk once this routine has finished. */ static void memsys3Merge(u32 *pRoot){ u32 iNext, prev, size, i, x; assert( sqlite3_mutex_held(mem3.mutex) ); for(i=*pRoot; i>0; i=iNext){ iNext = mem3.aPool[i].u.list.next; size = mem3.aPool[i-1].u.hdr.size4x; assert( (size&1)==0 ); if( (size&2)==0 ){ memsys3UnlinkFromList(i, pRoot); assert( i > mem3.aPool[i-1].u.hdr.prevSize ); prev = i - mem3.aPool[i-1].u.hdr.prevSize; if( prev==iNext ){ iNext = mem3.aPool[prev].u.list.next; } memsys3Unlink(prev); size = i + size/4 - prev; x = mem3.aPool[prev-1].u.hdr.size4x & 2; mem3.aPool[prev-1].u.hdr.size4x = size*4 | x; mem3.aPool[prev+size-1].u.hdr.prevSize = size; memsys3Link(prev); i = prev; }else{ size /= 4; } if( size>mem3.szKeyBlk ){ mem3.iKeyBlk = i; mem3.szKeyBlk = size; } } } /* ** Return a block of memory of at least nBytes in size. ** Return NULL if unable. ** ** This function assumes that the necessary mutexes, if any, are ** already held by the caller. Hence "Unsafe". */ static void *memsys3MallocUnsafe(int nByte){ u32 i; u32 nBlock; u32 toFree; assert( sqlite3_mutex_held(mem3.mutex) ); assert( sizeof(Mem3Block)==8 ); if( nByte<=12 ){ nBlock = 2; }else{ nBlock = (nByte + 11)/8; } assert( nBlock>=2 ); /* STEP 1: ** Look for an entry of the correct size in either the small ** chunk table or in the large chunk hash table. This is ** successful most of the time (about 9 times out of 10). */ if( nBlock <= MX_SMALL ){ i = mem3.aiSmall[nBlock-2]; if( i>0 ){ memsys3UnlinkFromList(i, &mem3.aiSmall[nBlock-2]); return memsys3Checkout(i, nBlock); } }else{ int hash = nBlock % N_HASH; for(i=mem3.aiHash[hash]; i>0; i=mem3.aPool[i].u.list.next){ if( mem3.aPool[i-1].u.hdr.size4x/4==nBlock ){ memsys3UnlinkFromList(i, &mem3.aiHash[hash]); return memsys3Checkout(i, nBlock); } } } /* STEP 2: ** Try to satisfy the allocation by carving a piece off of the end ** of the key chunk. This step usually works if step 1 fails. */ if( mem3.szKeyBlk>=nBlock ){ return memsys3FromKeyBlk(nBlock); } /* STEP 3: ** Loop through the entire memory pool. Coalesce adjacent free ** chunks. Recompute the key chunk as the largest free chunk. ** Then try again to satisfy the allocation by carving a piece off ** of the end of the key chunk. This step happens very ** rarely (we hope!) */ for(toFree=nBlock*16; toFree<(mem3.nPool*16); toFree *= 2){ memsys3OutOfMemory(toFree); if( mem3.iKeyBlk ){ memsys3Link(mem3.iKeyBlk); mem3.iKeyBlk = 0; mem3.szKeyBlk = 0; } for(i=0; i=nBlock ){ return memsys3FromKeyBlk(nBlock); } } } /* If none of the above worked, then we fail. */ return 0; } /* ** Free an outstanding memory allocation. ** ** This function assumes that the necessary mutexes, if any, are ** already held by the caller. Hence "Unsafe". */ static void memsys3FreeUnsafe(void *pOld){ Mem3Block *p = (Mem3Block*)pOld; int i; u32 size, x; assert( sqlite3_mutex_held(mem3.mutex) ); assert( p>mem3.aPool && p<&mem3.aPool[mem3.nPool] ); i = p - mem3.aPool; assert( (mem3.aPool[i-1].u.hdr.size4x&1)==1 ); size = mem3.aPool[i-1].u.hdr.size4x/4; assert( i+size<=mem3.nPool+1 ); mem3.aPool[i-1].u.hdr.size4x &= ~1; mem3.aPool[i+size-1].u.hdr.prevSize = size; mem3.aPool[i+size-1].u.hdr.size4x &= ~2; memsys3Link(i); /* Try to expand the key using the newly freed chunk */ if( mem3.iKeyBlk ){ while( (mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x&2)==0 ){ size = mem3.aPool[mem3.iKeyBlk-1].u.hdr.prevSize; mem3.iKeyBlk -= size; mem3.szKeyBlk += size; memsys3Unlink(mem3.iKeyBlk); x = mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x & 2; mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x = mem3.szKeyBlk*4 | x; mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.prevSize = mem3.szKeyBlk; } x = mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x & 2; while( (mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.size4x&1)==0 ){ memsys3Unlink(mem3.iKeyBlk+mem3.szKeyBlk); mem3.szKeyBlk += mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.size4x/4; mem3.aPool[mem3.iKeyBlk-1].u.hdr.size4x = mem3.szKeyBlk*4 | x; mem3.aPool[mem3.iKeyBlk+mem3.szKeyBlk-1].u.hdr.prevSize = mem3.szKeyBlk; } } } /* ** Return the size of an outstanding allocation, in bytes. The ** size returned omits the 8-byte header overhead. This only ** works for chunks that are currently checked out. */ static int memsys3Size(void *p){ Mem3Block *pBlock; assert( p!=0 ); pBlock = (Mem3Block*)p; assert( (pBlock[-1].u.hdr.size4x&1)!=0 ); return (pBlock[-1].u.hdr.size4x&~3)*2 - 4; } /* ** Round up a request size to the next valid allocation size. */ static int memsys3Roundup(int n){ if( n<=12 ){ return 12; }else{ return ((n+11)&~7) - 4; } } /* ** Allocate nBytes of memory. */ static void *memsys3Malloc(int nBytes){ sqlite3_int64 *p; assert( nBytes>0 ); /* malloc.c filters out 0 byte requests */ memsys3Enter(); p = memsys3MallocUnsafe(nBytes); memsys3Leave(); return (void*)p; } /* ** Free memory. */ static void memsys3Free(void *pPrior){ assert( pPrior ); memsys3Enter(); memsys3FreeUnsafe(pPrior); memsys3Leave(); } /* ** Change the size of an existing memory allocation */ static void *memsys3Realloc(void *pPrior, int nBytes){ int nOld; void *p; if( pPrior==0 ){ return sqlite3_malloc(nBytes); } if( nBytes<=0 ){ sqlite3_free(pPrior); return 0; } nOld = memsys3Size(pPrior); if( nBytes<=nOld && nBytes>=nOld-128 ){ return pPrior; } memsys3Enter(); p = memsys3MallocUnsafe(nBytes); if( p ){ if( nOld>1)!=(size&1) ){ fprintf(out, "%p tail checkout bit is incorrect\n", &mem3.aPool[i]); assert( 0 ); break; } if( size&1 ){ fprintf(out, "%p %6d bytes checked out\n", &mem3.aPool[i], (size/4)*8-8); }else{ fprintf(out, "%p %6d bytes free%s\n", &mem3.aPool[i], (size/4)*8-8, i==mem3.iKeyBlk ? " **key**" : ""); } } for(i=0; i0; j=mem3.aPool[j].u.list.next){ fprintf(out, " %p(%d)", &mem3.aPool[j], (mem3.aPool[j-1].u.hdr.size4x/4)*8-8); } fprintf(out, "\n"); } for(i=0; i0; j=mem3.aPool[j].u.list.next){ fprintf(out, " %p(%d)", &mem3.aPool[j], (mem3.aPool[j-1].u.hdr.size4x/4)*8-8); } fprintf(out, "\n"); } fprintf(out, "key=%d\n", mem3.iKeyBlk); fprintf(out, "nowUsed=%d\n", mem3.nPool*8 - mem3.szKeyBlk*8); fprintf(out, "mxUsed=%d\n", mem3.nPool*8 - mem3.mnKeyBlk*8); sqlite3_mutex_leave(mem3.mutex); if( out==stdout ){ fflush(stdout); }else{ fclose(out); } #else UNUSED_PARAMETER(zFilename); #endif } /* ** This routine is the only routine in this file with external ** linkage. ** ** Populate the low-level memory allocation function pointers in ** sqlite3GlobalConfig.m with pointers to the routines in this file. The ** arguments specify the block of memory to manage. ** ** This routine is only called by sqlite3_config(), and therefore ** is not required to be threadsafe (it is not). */ SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys3(void){ static const sqlite3_mem_methods mempoolMethods = { memsys3Malloc, memsys3Free, memsys3Realloc, memsys3Size, memsys3Roundup, memsys3Init, memsys3Shutdown, 0 }; return &mempoolMethods; } #endif /* SQLITE_ENABLE_MEMSYS3 */ /************** End of mem3.c ************************************************/ /************** Begin file mem5.c ********************************************/ /* ** 2007 October 14 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement a memory ** allocation subsystem for use by SQLite. ** ** This version of the memory allocation subsystem omits all ** use of malloc(). The application gives SQLite a block of memory ** before calling sqlite3_initialize() from which allocations ** are made and returned by the xMalloc() and xRealloc() ** implementations. Once sqlite3_initialize() has been called, ** the amount of memory available to SQLite is fixed and cannot ** be changed. ** ** This version of the memory allocation subsystem is included ** in the build only if SQLITE_ENABLE_MEMSYS5 is defined. ** ** This memory allocator uses the following algorithm: ** ** 1. All memory allocation sizes are rounded up to a power of 2. ** ** 2. If two adjacent free blocks are the halves of a larger block, ** then the two blocks are coalesced into the single larger block. ** ** 3. New memory is allocated from the first available free block. ** ** This algorithm is described in: J. M. Robson. "Bounds for Some Functions ** Concerning Dynamic Storage Allocation". Journal of the Association for ** Computing Machinery, Volume 21, Number 8, July 1974, pages 491-499. ** ** Let n be the size of the largest allocation divided by the minimum ** allocation size (after rounding all sizes up to a power of 2.) Let M ** be the maximum amount of memory ever outstanding at one time. Let ** N be the total amount of memory available for allocation. Robson ** proved that this memory allocator will never breakdown due to ** fragmentation as long as the following constraint holds: ** ** N >= M*(1 + log2(n)/2) - n + 1 ** ** The sqlite3_status() logic tracks the maximum values of n and M so ** that an application can, at any time, verify this constraint. */ /* #include "sqliteInt.h" */ /* ** This version of the memory allocator is used only when ** SQLITE_ENABLE_MEMSYS5 is defined. */ #ifdef SQLITE_ENABLE_MEMSYS5 /* ** A minimum allocation is an instance of the following structure. ** Larger allocations are an array of these structures where the ** size of the array is a power of 2. ** ** The size of this object must be a power of two. That fact is ** verified in memsys5Init(). */ typedef struct Mem5Link Mem5Link; struct Mem5Link { int next; /* Index of next free chunk */ int prev; /* Index of previous free chunk */ }; /* ** Maximum size of any allocation is ((1<=0 && i=0 && iLogsize<=LOGMAX ); assert( (mem5.aCtrl[i] & CTRL_LOGSIZE)==iLogsize ); next = MEM5LINK(i)->next; prev = MEM5LINK(i)->prev; if( prev<0 ){ mem5.aiFreelist[iLogsize] = next; }else{ MEM5LINK(prev)->next = next; } if( next>=0 ){ MEM5LINK(next)->prev = prev; } } /* ** Link the chunk at mem5.aPool[i] so that is on the iLogsize ** free list. */ static void memsys5Link(int i, int iLogsize){ int x; assert( sqlite3_mutex_held(mem5.mutex) ); assert( i>=0 && i=0 && iLogsize<=LOGMAX ); assert( (mem5.aCtrl[i] & CTRL_LOGSIZE)==iLogsize ); x = MEM5LINK(i)->next = mem5.aiFreelist[iLogsize]; MEM5LINK(i)->prev = -1; if( x>=0 ){ assert( xprev = i; } mem5.aiFreelist[iLogsize] = i; } /* ** Obtain or release the mutex needed to access global data structures. */ static void memsys5Enter(void){ sqlite3_mutex_enter(mem5.mutex); } static void memsys5Leave(void){ sqlite3_mutex_leave(mem5.mutex); } /* ** Return the size of an outstanding allocation, in bytes. ** This only works for chunks that are currently checked out. */ static int memsys5Size(void *p){ int iSize, i; assert( p!=0 ); i = (int)(((u8 *)p-mem5.zPool)/mem5.szAtom); assert( i>=0 && i0 ); /* No more than 1GiB per allocation */ if( nByte > 0x40000000 ) return 0; #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) /* Keep track of the maximum allocation request. Even unfulfilled ** requests are counted */ if( (u32)nByte>mem5.maxRequest ){ mem5.maxRequest = nByte; } #endif /* Round nByte up to the next valid power of two */ for(iFullSz=mem5.szAtom,iLogsize=0; iFullSzLOGMAX ){ testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes", nByte); return 0; } i = mem5.aiFreelist[iBin]; memsys5Unlink(i, iBin); while( iBin>iLogsize ){ int newSize; iBin--; newSize = 1 << iBin; mem5.aCtrl[i+newSize] = CTRL_FREE | iBin; memsys5Link(i+newSize, iBin); } mem5.aCtrl[i] = iLogsize; #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) /* Update allocator performance statistics. */ mem5.nAlloc++; mem5.totalAlloc += iFullSz; mem5.totalExcess += iFullSz - nByte; mem5.currentCount++; mem5.currentOut += iFullSz; if( mem5.maxCount=0 && iBlock0 ); assert( mem5.currentOut>=(size*mem5.szAtom) ); mem5.currentCount--; mem5.currentOut -= size*mem5.szAtom; assert( mem5.currentOut>0 || mem5.currentCount==0 ); assert( mem5.currentCount>0 || mem5.currentOut==0 ); #endif mem5.aCtrl[iBlock] = CTRL_FREE | iLogsize; while( ALWAYS(iLogsize>iLogsize) & 1 ){ iBuddy = iBlock - size; assert( iBuddy>=0 ); }else{ iBuddy = iBlock + size; if( iBuddy>=mem5.nBlock ) break; } if( mem5.aCtrl[iBuddy]!=(CTRL_FREE | iLogsize) ) break; memsys5Unlink(iBuddy, iLogsize); iLogsize++; if( iBuddy0 ){ memsys5Enter(); p = memsys5MallocUnsafe(nBytes); memsys5Leave(); } return (void*)p; } /* ** Free memory. ** ** The outer layer memory allocator prevents this routine from ** being called with pPrior==0. */ static void memsys5Free(void *pPrior){ assert( pPrior!=0 ); memsys5Enter(); memsys5FreeUnsafe(pPrior); memsys5Leave(); } /* ** Change the size of an existing memory allocation. ** ** The outer layer memory allocator prevents this routine from ** being called with pPrior==0. ** ** nBytes is always a value obtained from a prior call to ** memsys5Round(). Hence nBytes is always a non-negative power ** of two. If nBytes==0 that means that an oversize allocation ** (an allocation larger than 0x40000000) was requested and this ** routine should return 0 without freeing pPrior. */ static void *memsys5Realloc(void *pPrior, int nBytes){ int nOld; void *p; assert( pPrior!=0 ); assert( (nBytes&(nBytes-1))==0 ); /* EV: R-46199-30249 */ assert( nBytes>=0 ); if( nBytes==0 ){ return 0; } nOld = memsys5Size(pPrior); if( nBytes<=nOld ){ return pPrior; } p = memsys5Malloc(nBytes); if( p ){ memcpy(p, pPrior, nOld); memsys5Free(pPrior); } return p; } /* ** Round up a request size to the next valid allocation size. If ** the allocation is too large to be handled by this allocation system, ** return 0. ** ** All allocations must be a power of two and must be expressed by a ** 32-bit signed integer. Hence the largest allocation is 0x40000000 ** or 1073741824 bytes. */ static int memsys5Roundup(int n){ int iFullSz; if( n > 0x40000000 ) return 0; for(iFullSz=mem5.szAtom; iFullSz 0 ** memsys5Log(2) -> 1 ** memsys5Log(4) -> 2 ** memsys5Log(5) -> 3 ** memsys5Log(8) -> 3 ** memsys5Log(9) -> 4 */ static int memsys5Log(int iValue){ int iLog; for(iLog=0; (iLog<(int)((sizeof(int)*8)-1)) && (1<mem5.szAtom ){ mem5.szAtom = mem5.szAtom << 1; } mem5.nBlock = (nByte / (mem5.szAtom+sizeof(u8))); mem5.zPool = zByte; mem5.aCtrl = (u8 *)&mem5.zPool[mem5.nBlock*mem5.szAtom]; for(ii=0; ii<=LOGMAX; ii++){ mem5.aiFreelist[ii] = -1; } iOffset = 0; for(ii=LOGMAX; ii>=0; ii--){ int nAlloc = (1<mem5.nBlock); } /* If a mutex is required for normal operation, allocate one */ if( sqlite3GlobalConfig.bMemstat==0 ){ mem5.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MEM); } return SQLITE_OK; } /* ** Deinitialize this module. */ static void memsys5Shutdown(void *NotUsed){ UNUSED_PARAMETER(NotUsed); mem5.mutex = 0; return; } #ifdef SQLITE_TEST /* ** Open the file indicated and write a log of all unfreed memory ** allocations into that log. */ SQLITE_PRIVATE void sqlite3Memsys5Dump(const char *zFilename){ FILE *out; int i, j, n; int nMinLog; if( zFilename==0 || zFilename[0]==0 ){ out = stdout; }else{ out = fopen(zFilename, "w"); if( out==0 ){ fprintf(stderr, "** Unable to output memory debug output log: %s **\n", zFilename); return; } } memsys5Enter(); nMinLog = memsys5Log(mem5.szAtom); for(i=0; i<=LOGMAX && i+nMinLog<32; i++){ for(n=0, j=mem5.aiFreelist[i]; j>=0; j = MEM5LINK(j)->next, n++){} fprintf(out, "freelist items of size %d: %d\n", mem5.szAtom << i, n); } fprintf(out, "mem5.nAlloc = %llu\n", mem5.nAlloc); fprintf(out, "mem5.totalAlloc = %llu\n", mem5.totalAlloc); fprintf(out, "mem5.totalExcess = %llu\n", mem5.totalExcess); fprintf(out, "mem5.currentOut = %u\n", mem5.currentOut); fprintf(out, "mem5.currentCount = %u\n", mem5.currentCount); fprintf(out, "mem5.maxOut = %u\n", mem5.maxOut); fprintf(out, "mem5.maxCount = %u\n", mem5.maxCount); fprintf(out, "mem5.maxRequest = %u\n", mem5.maxRequest); memsys5Leave(); if( out==stdout ){ fflush(stdout); }else{ fclose(out); } } #endif /* ** This routine is the only routine in this file with external ** linkage. It returns a pointer to a static sqlite3_mem_methods ** struct populated with the memsys5 methods. */ SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetMemsys5(void){ static const sqlite3_mem_methods memsys5Methods = { memsys5Malloc, memsys5Free, memsys5Realloc, memsys5Size, memsys5Roundup, memsys5Init, memsys5Shutdown, 0 }; return &memsys5Methods; } #endif /* SQLITE_ENABLE_MEMSYS5 */ /************** End of mem5.c ************************************************/ /************** Begin file mutex.c *******************************************/ /* ** 2007 August 14 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement mutexes. ** ** This file contains code that is common across all mutex implementations. */ /* #include "sqliteInt.h" */ #if defined(SQLITE_DEBUG) && !defined(SQLITE_MUTEX_OMIT) /* ** For debugging purposes, record when the mutex subsystem is initialized ** and uninitialized so that we can assert() if there is an attempt to ** allocate a mutex while the system is uninitialized. */ static SQLITE_WSD int mutexIsInit = 0; #endif /* SQLITE_DEBUG && !defined(SQLITE_MUTEX_OMIT) */ #ifndef SQLITE_MUTEX_OMIT #ifdef SQLITE_ENABLE_MULTITHREADED_CHECKS /* ** This block (enclosed by SQLITE_ENABLE_MULTITHREADED_CHECKS) contains ** the implementation of a wrapper around the system default mutex ** implementation (sqlite3DefaultMutex()). ** ** Most calls are passed directly through to the underlying default ** mutex implementation. Except, if a mutex is configured by calling ** sqlite3MutexWarnOnContention() on it, then if contention is ever ** encountered within xMutexEnter() a warning is emitted via sqlite3_log(). ** ** This type of mutex is used as the database handle mutex when testing ** apps that usually use SQLITE_CONFIG_MULTITHREAD mode. */ /* ** Type for all mutexes used when SQLITE_ENABLE_MULTITHREADED_CHECKS ** is defined. Variable CheckMutex.mutex is a pointer to the real mutex ** allocated by the system mutex implementation. Variable iType is usually set ** to the type of mutex requested - SQLITE_MUTEX_RECURSIVE, SQLITE_MUTEX_FAST ** or one of the static mutex identifiers. Or, if this is a recursive mutex ** that has been configured using sqlite3MutexWarnOnContention(), it is ** set to SQLITE_MUTEX_WARNONCONTENTION. */ typedef struct CheckMutex CheckMutex; struct CheckMutex { int iType; sqlite3_mutex *mutex; }; #define SQLITE_MUTEX_WARNONCONTENTION (-1) /* ** Pointer to real mutex methods object used by the CheckMutex ** implementation. Set by checkMutexInit(). */ static SQLITE_WSD const sqlite3_mutex_methods *pGlobalMutexMethods; #ifdef SQLITE_DEBUG static int checkMutexHeld(sqlite3_mutex *p){ return pGlobalMutexMethods->xMutexHeld(((CheckMutex*)p)->mutex); } static int checkMutexNotheld(sqlite3_mutex *p){ return pGlobalMutexMethods->xMutexNotheld(((CheckMutex*)p)->mutex); } #endif /* ** Initialize and deinitialize the mutex subsystem. */ static int checkMutexInit(void){ pGlobalMutexMethods = sqlite3DefaultMutex(); return SQLITE_OK; } static int checkMutexEnd(void){ pGlobalMutexMethods = 0; return SQLITE_OK; } /* ** Allocate a mutex. */ static sqlite3_mutex *checkMutexAlloc(int iType){ static CheckMutex staticMutexes[] = { {2, 0}, {3, 0}, {4, 0}, {5, 0}, {6, 0}, {7, 0}, {8, 0}, {9, 0}, {10, 0}, {11, 0}, {12, 0}, {13, 0} }; CheckMutex *p = 0; assert( SQLITE_MUTEX_RECURSIVE==1 && SQLITE_MUTEX_FAST==0 ); if( iType<2 ){ p = sqlite3MallocZero(sizeof(CheckMutex)); if( p==0 ) return 0; p->iType = iType; }else{ #ifdef SQLITE_ENABLE_API_ARMOR if( iType-2>=ArraySize(staticMutexes) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif p = &staticMutexes[iType-2]; } if( p->mutex==0 ){ p->mutex = pGlobalMutexMethods->xMutexAlloc(iType); if( p->mutex==0 ){ if( iType<2 ){ sqlite3_free(p); } p = 0; } } return (sqlite3_mutex*)p; } /* ** Free a mutex. */ static void checkMutexFree(sqlite3_mutex *p){ assert( SQLITE_MUTEX_RECURSIVE<2 ); assert( SQLITE_MUTEX_FAST<2 ); assert( SQLITE_MUTEX_WARNONCONTENTION<2 ); #if SQLITE_ENABLE_API_ARMOR if( ((CheckMutex*)p)->iType<2 ) #endif { CheckMutex *pCheck = (CheckMutex*)p; pGlobalMutexMethods->xMutexFree(pCheck->mutex); sqlite3_free(pCheck); } #ifdef SQLITE_ENABLE_API_ARMOR else{ (void)SQLITE_MISUSE_BKPT; } #endif } /* ** Enter the mutex. */ static void checkMutexEnter(sqlite3_mutex *p){ CheckMutex *pCheck = (CheckMutex*)p; if( pCheck->iType==SQLITE_MUTEX_WARNONCONTENTION ){ if( SQLITE_OK==pGlobalMutexMethods->xMutexTry(pCheck->mutex) ){ return; } sqlite3_log(SQLITE_MISUSE, "illegal multi-threaded access to database connection" ); } pGlobalMutexMethods->xMutexEnter(pCheck->mutex); } /* ** Enter the mutex (do not block). */ static int checkMutexTry(sqlite3_mutex *p){ CheckMutex *pCheck = (CheckMutex*)p; return pGlobalMutexMethods->xMutexTry(pCheck->mutex); } /* ** Leave the mutex. */ static void checkMutexLeave(sqlite3_mutex *p){ CheckMutex *pCheck = (CheckMutex*)p; pGlobalMutexMethods->xMutexLeave(pCheck->mutex); } sqlite3_mutex_methods const *multiThreadedCheckMutex(void){ static const sqlite3_mutex_methods sMutex = { checkMutexInit, checkMutexEnd, checkMutexAlloc, checkMutexFree, checkMutexEnter, checkMutexTry, checkMutexLeave, #ifdef SQLITE_DEBUG checkMutexHeld, checkMutexNotheld #else 0, 0 #endif }; return &sMutex; } /* ** Mark the SQLITE_MUTEX_RECURSIVE mutex passed as the only argument as ** one on which there should be no contention. */ SQLITE_PRIVATE void sqlite3MutexWarnOnContention(sqlite3_mutex *p){ if( sqlite3GlobalConfig.mutex.xMutexAlloc==checkMutexAlloc ){ CheckMutex *pCheck = (CheckMutex*)p; assert( pCheck->iType==SQLITE_MUTEX_RECURSIVE ); pCheck->iType = SQLITE_MUTEX_WARNONCONTENTION; } } #endif /* ifdef SQLITE_ENABLE_MULTITHREADED_CHECKS */ /* ** Initialize the mutex system. */ SQLITE_PRIVATE int sqlite3MutexInit(void){ int rc = SQLITE_OK; if( !sqlite3GlobalConfig.mutex.xMutexAlloc ){ /* If the xMutexAlloc method has not been set, then the user did not ** install a mutex implementation via sqlite3_config() prior to ** sqlite3_initialize() being called. This block copies pointers to ** the default implementation into the sqlite3GlobalConfig structure. */ sqlite3_mutex_methods const *pFrom; sqlite3_mutex_methods *pTo = &sqlite3GlobalConfig.mutex; if( sqlite3GlobalConfig.bCoreMutex ){ #ifdef SQLITE_ENABLE_MULTITHREADED_CHECKS pFrom = multiThreadedCheckMutex(); #else pFrom = sqlite3DefaultMutex(); #endif }else{ pFrom = sqlite3NoopMutex(); } pTo->xMutexInit = pFrom->xMutexInit; pTo->xMutexEnd = pFrom->xMutexEnd; pTo->xMutexFree = pFrom->xMutexFree; pTo->xMutexEnter = pFrom->xMutexEnter; pTo->xMutexTry = pFrom->xMutexTry; pTo->xMutexLeave = pFrom->xMutexLeave; pTo->xMutexHeld = pFrom->xMutexHeld; pTo->xMutexNotheld = pFrom->xMutexNotheld; sqlite3MemoryBarrier(); pTo->xMutexAlloc = pFrom->xMutexAlloc; } assert( sqlite3GlobalConfig.mutex.xMutexInit ); rc = sqlite3GlobalConfig.mutex.xMutexInit(); #ifdef SQLITE_DEBUG GLOBAL(int, mutexIsInit) = 1; #endif sqlite3MemoryBarrier(); return rc; } /* ** Shutdown the mutex system. This call frees resources allocated by ** sqlite3MutexInit(). */ SQLITE_PRIVATE int sqlite3MutexEnd(void){ int rc = SQLITE_OK; if( sqlite3GlobalConfig.mutex.xMutexEnd ){ rc = sqlite3GlobalConfig.mutex.xMutexEnd(); } #ifdef SQLITE_DEBUG GLOBAL(int, mutexIsInit) = 0; #endif return rc; } /* ** Retrieve a pointer to a static mutex or allocate a new dynamic one. */ SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int id){ #ifndef SQLITE_OMIT_AUTOINIT if( id<=SQLITE_MUTEX_RECURSIVE && sqlite3_initialize() ) return 0; if( id>SQLITE_MUTEX_RECURSIVE && sqlite3MutexInit() ) return 0; #endif assert( sqlite3GlobalConfig.mutex.xMutexAlloc ); return sqlite3GlobalConfig.mutex.xMutexAlloc(id); } SQLITE_PRIVATE sqlite3_mutex *sqlite3MutexAlloc(int id){ if( !sqlite3GlobalConfig.bCoreMutex ){ return 0; } assert( GLOBAL(int, mutexIsInit) ); assert( sqlite3GlobalConfig.mutex.xMutexAlloc ); return sqlite3GlobalConfig.mutex.xMutexAlloc(id); } /* ** Free a dynamic mutex. */ SQLITE_API void sqlite3_mutex_free(sqlite3_mutex *p){ if( p ){ assert( sqlite3GlobalConfig.mutex.xMutexFree ); sqlite3GlobalConfig.mutex.xMutexFree(p); } } /* ** Obtain the mutex p. If some other thread already has the mutex, block ** until it can be obtained. */ SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex *p){ if( p ){ assert( sqlite3GlobalConfig.mutex.xMutexEnter ); sqlite3GlobalConfig.mutex.xMutexEnter(p); } } /* ** Obtain the mutex p. If successful, return SQLITE_OK. Otherwise, if another ** thread holds the mutex and it cannot be obtained, return SQLITE_BUSY. */ SQLITE_API int sqlite3_mutex_try(sqlite3_mutex *p){ int rc = SQLITE_OK; if( p ){ assert( sqlite3GlobalConfig.mutex.xMutexTry ); return sqlite3GlobalConfig.mutex.xMutexTry(p); } return rc; } /* ** The sqlite3_mutex_leave() routine exits a mutex that was previously ** entered by the same thread. The behavior is undefined if the mutex ** is not currently entered. If a NULL pointer is passed as an argument ** this function is a no-op. */ SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex *p){ if( p ){ assert( sqlite3GlobalConfig.mutex.xMutexLeave ); sqlite3GlobalConfig.mutex.xMutexLeave(p); } } #ifndef NDEBUG /* ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are ** intended for use inside assert() statements. */ SQLITE_API int sqlite3_mutex_held(sqlite3_mutex *p){ assert( p==0 || sqlite3GlobalConfig.mutex.xMutexHeld ); return p==0 || sqlite3GlobalConfig.mutex.xMutexHeld(p); } SQLITE_API int sqlite3_mutex_notheld(sqlite3_mutex *p){ assert( p==0 || sqlite3GlobalConfig.mutex.xMutexNotheld ); return p==0 || sqlite3GlobalConfig.mutex.xMutexNotheld(p); } #endif #endif /* !defined(SQLITE_MUTEX_OMIT) */ /************** End of mutex.c ***********************************************/ /************** Begin file mutex_noop.c **************************************/ /* ** 2008 October 07 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement mutexes. ** ** This implementation in this file does not provide any mutual ** exclusion and is thus suitable for use only in applications ** that use SQLite in a single thread. The routines defined ** here are place-holders. Applications can substitute working ** mutex routines at start-time using the ** ** sqlite3_config(SQLITE_CONFIG_MUTEX,...) ** ** interface. ** ** If compiled with SQLITE_DEBUG, then additional logic is inserted ** that does error checking on mutexes to make sure they are being ** called correctly. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_MUTEX_OMIT #ifndef SQLITE_DEBUG /* ** Stub routines for all mutex methods. ** ** This routines provide no mutual exclusion or error checking. */ static int noopMutexInit(void){ return SQLITE_OK; } static int noopMutexEnd(void){ return SQLITE_OK; } static sqlite3_mutex *noopMutexAlloc(int id){ UNUSED_PARAMETER(id); return (sqlite3_mutex*)8; } static void noopMutexFree(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } static void noopMutexEnter(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } static int noopMutexTry(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return SQLITE_OK; } static void noopMutexLeave(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; } SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3NoopMutex(void){ static const sqlite3_mutex_methods sMutex = { noopMutexInit, noopMutexEnd, noopMutexAlloc, noopMutexFree, noopMutexEnter, noopMutexTry, noopMutexLeave, 0, 0, }; return &sMutex; } #endif /* !SQLITE_DEBUG */ #ifdef SQLITE_DEBUG /* ** In this implementation, error checking is provided for testing ** and debugging purposes. The mutexes still do not provide any ** mutual exclusion. */ /* ** The mutex object */ typedef struct sqlite3_debug_mutex { int id; /* The mutex type */ int cnt; /* Number of entries without a matching leave */ } sqlite3_debug_mutex; /* ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are ** intended for use inside assert() statements. */ static int debugMutexHeld(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; return p==0 || p->cnt>0; } static int debugMutexNotheld(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; return p==0 || p->cnt==0; } /* ** Initialize and deinitialize the mutex subsystem. */ static int debugMutexInit(void){ return SQLITE_OK; } static int debugMutexEnd(void){ return SQLITE_OK; } /* ** The sqlite3_mutex_alloc() routine allocates a new ** mutex and returns a pointer to it. If it returns NULL ** that means that a mutex could not be allocated. */ static sqlite3_mutex *debugMutexAlloc(int id){ static sqlite3_debug_mutex aStatic[SQLITE_MUTEX_STATIC_VFS3 - 1]; sqlite3_debug_mutex *pNew = 0; switch( id ){ case SQLITE_MUTEX_FAST: case SQLITE_MUTEX_RECURSIVE: { pNew = sqlite3Malloc(sizeof(*pNew)); if( pNew ){ pNew->id = id; pNew->cnt = 0; } break; } default: { #ifdef SQLITE_ENABLE_API_ARMOR if( id-2<0 || id-2>=ArraySize(aStatic) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif pNew = &aStatic[id-2]; pNew->id = id; break; } } return (sqlite3_mutex*)pNew; } /* ** This routine deallocates a previously allocated mutex. */ static void debugMutexFree(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; assert( p->cnt==0 ); if( p->id==SQLITE_MUTEX_RECURSIVE || p->id==SQLITE_MUTEX_FAST ){ sqlite3_free(p); }else{ #ifdef SQLITE_ENABLE_API_ARMOR (void)SQLITE_MISUSE_BKPT; #endif } } /* ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt ** to enter a mutex. If another thread is already within the mutex, ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK ** upon successful entry. Mutexes created using SQLITE_MUTEX_RECURSIVE can ** be entered multiple times by the same thread. In such cases the, ** mutex must be exited an equal number of times before another thread ** can enter. If the same thread tries to enter any other kind of mutex ** more than once, the behavior is undefined. */ static void debugMutexEnter(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) ); p->cnt++; } static int debugMutexTry(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) ); p->cnt++; return SQLITE_OK; } /* ** The sqlite3_mutex_leave() routine exits a mutex that was ** previously entered by the same thread. The behavior ** is undefined if the mutex is not currently entered or ** is not currently allocated. SQLite will never do either. */ static void debugMutexLeave(sqlite3_mutex *pX){ sqlite3_debug_mutex *p = (sqlite3_debug_mutex*)pX; assert( debugMutexHeld(pX) ); p->cnt--; assert( p->id==SQLITE_MUTEX_RECURSIVE || debugMutexNotheld(pX) ); } SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3NoopMutex(void){ static const sqlite3_mutex_methods sMutex = { debugMutexInit, debugMutexEnd, debugMutexAlloc, debugMutexFree, debugMutexEnter, debugMutexTry, debugMutexLeave, debugMutexHeld, debugMutexNotheld }; return &sMutex; } #endif /* SQLITE_DEBUG */ /* ** If compiled with SQLITE_MUTEX_NOOP, then the no-op mutex implementation ** is used regardless of the run-time threadsafety setting. */ #ifdef SQLITE_MUTEX_NOOP SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){ return sqlite3NoopMutex(); } #endif /* defined(SQLITE_MUTEX_NOOP) */ #endif /* !defined(SQLITE_MUTEX_OMIT) */ /************** End of mutex_noop.c ******************************************/ /************** Begin file mutex_unix.c **************************************/ /* ** 2007 August 28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement mutexes for pthreads */ /* #include "sqliteInt.h" */ /* ** The code in this file is only used if we are compiling threadsafe ** under unix with pthreads. ** ** Note that this implementation requires a version of pthreads that ** supports recursive mutexes. */ #ifdef SQLITE_MUTEX_PTHREADS #include /* ** The sqlite3_mutex.id, sqlite3_mutex.nRef, and sqlite3_mutex.owner fields ** are necessary under two condidtions: (1) Debug builds and (2) using ** home-grown mutexes. Encapsulate these conditions into a single #define. */ #if defined(SQLITE_DEBUG) || defined(SQLITE_HOMEGROWN_RECURSIVE_MUTEX) # define SQLITE_MUTEX_NREF 1 #else # define SQLITE_MUTEX_NREF 0 #endif /* ** Each recursive mutex is an instance of the following structure. */ struct sqlite3_mutex { pthread_mutex_t mutex; /* Mutex controlling the lock */ #if SQLITE_MUTEX_NREF || defined(SQLITE_ENABLE_API_ARMOR) int id; /* Mutex type */ #endif #if SQLITE_MUTEX_NREF volatile int nRef; /* Number of entrances */ volatile pthread_t owner; /* Thread that is within this mutex */ int trace; /* True to trace changes */ #endif }; #if SQLITE_MUTEX_NREF # define SQLITE3_MUTEX_INITIALIZER(id) \ {PTHREAD_MUTEX_INITIALIZER,id,0,(pthread_t)0,0} #elif defined(SQLITE_ENABLE_API_ARMOR) # define SQLITE3_MUTEX_INITIALIZER(id) { PTHREAD_MUTEX_INITIALIZER, id } #else #define SQLITE3_MUTEX_INITIALIZER(id) { PTHREAD_MUTEX_INITIALIZER } #endif /* ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are ** intended for use only inside assert() statements. On some platforms, ** there might be race conditions that can cause these routines to ** deliver incorrect results. In particular, if pthread_equal() is ** not an atomic operation, then these routines might delivery ** incorrect results. On most platforms, pthread_equal() is a ** comparison of two integers and is therefore atomic. But we are ** told that HPUX is not such a platform. If so, then these routines ** will not always work correctly on HPUX. ** ** On those platforms where pthread_equal() is not atomic, SQLite ** should be compiled without -DSQLITE_DEBUG and with -DNDEBUG to ** make sure no assert() statements are evaluated and hence these ** routines are never called. */ #if !defined(NDEBUG) || defined(SQLITE_DEBUG) static int pthreadMutexHeld(sqlite3_mutex *p){ return (p->nRef!=0 && pthread_equal(p->owner, pthread_self())); } static int pthreadMutexNotheld(sqlite3_mutex *p){ return p->nRef==0 || pthread_equal(p->owner, pthread_self())==0; } #endif /* ** Try to provide a memory barrier operation, needed for initialization ** and also for the implementation of xShmBarrier in the VFS in cases ** where SQLite is compiled without mutexes. */ SQLITE_PRIVATE void sqlite3MemoryBarrier(void){ #if defined(SQLITE_MEMORY_BARRIER) SQLITE_MEMORY_BARRIER; #elif defined(__GNUC__) && GCC_VERSION>=4001000 __sync_synchronize(); #endif } /* ** Initialize and deinitialize the mutex subsystem. */ static int pthreadMutexInit(void){ return SQLITE_OK; } static int pthreadMutexEnd(void){ return SQLITE_OK; } /* ** The sqlite3_mutex_alloc() routine allocates a new ** mutex and returns a pointer to it. If it returns NULL ** that means that a mutex could not be allocated. SQLite ** will unwind its stack and return an error. The argument ** to sqlite3_mutex_alloc() is one of these integer constants: ** **
    **
  • SQLITE_MUTEX_FAST **
  • SQLITE_MUTEX_RECURSIVE **
  • SQLITE_MUTEX_STATIC_MAIN **
  • SQLITE_MUTEX_STATIC_MEM **
  • SQLITE_MUTEX_STATIC_OPEN **
  • SQLITE_MUTEX_STATIC_PRNG **
  • SQLITE_MUTEX_STATIC_LRU **
  • SQLITE_MUTEX_STATIC_PMEM **
  • SQLITE_MUTEX_STATIC_APP1 **
  • SQLITE_MUTEX_STATIC_APP2 **
  • SQLITE_MUTEX_STATIC_APP3 **
  • SQLITE_MUTEX_STATIC_VFS1 **
  • SQLITE_MUTEX_STATIC_VFS2 **
  • SQLITE_MUTEX_STATIC_VFS3 **
** ** The first two constants cause sqlite3_mutex_alloc() to create ** a new mutex. The new mutex is recursive when SQLITE_MUTEX_RECURSIVE ** is used but not necessarily so when SQLITE_MUTEX_FAST is used. ** The mutex implementation does not need to make a distinction ** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does ** not want to. But SQLite will only request a recursive mutex in ** cases where it really needs one. If a faster non-recursive mutex ** implementation is available on the host platform, the mutex subsystem ** might return such a mutex in response to SQLITE_MUTEX_FAST. ** ** The other allowed parameters to sqlite3_mutex_alloc() each return ** a pointer to a static preexisting mutex. Six static mutexes are ** used by the current version of SQLite. Future versions of SQLite ** may add additional static mutexes. Static mutexes are for internal ** use by SQLite only. Applications that use SQLite mutexes should ** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or ** SQLITE_MUTEX_RECURSIVE. ** ** Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc() ** returns a different mutex on every call. But for the static ** mutex types, the same mutex is returned on every call that has ** the same type number. */ static sqlite3_mutex *pthreadMutexAlloc(int iType){ static sqlite3_mutex staticMutexes[] = { SQLITE3_MUTEX_INITIALIZER(2), SQLITE3_MUTEX_INITIALIZER(3), SQLITE3_MUTEX_INITIALIZER(4), SQLITE3_MUTEX_INITIALIZER(5), SQLITE3_MUTEX_INITIALIZER(6), SQLITE3_MUTEX_INITIALIZER(7), SQLITE3_MUTEX_INITIALIZER(8), SQLITE3_MUTEX_INITIALIZER(9), SQLITE3_MUTEX_INITIALIZER(10), SQLITE3_MUTEX_INITIALIZER(11), SQLITE3_MUTEX_INITIALIZER(12), SQLITE3_MUTEX_INITIALIZER(13) }; sqlite3_mutex *p; switch( iType ){ case SQLITE_MUTEX_RECURSIVE: { p = sqlite3MallocZero( sizeof(*p) ); if( p ){ #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX /* If recursive mutexes are not available, we will have to ** build our own. See below. */ pthread_mutex_init(&p->mutex, 0); #else /* Use a recursive mutex if it is available */ pthread_mutexattr_t recursiveAttr; pthread_mutexattr_init(&recursiveAttr); pthread_mutexattr_settype(&recursiveAttr, PTHREAD_MUTEX_RECURSIVE); pthread_mutex_init(&p->mutex, &recursiveAttr); pthread_mutexattr_destroy(&recursiveAttr); #endif #if SQLITE_MUTEX_NREF || defined(SQLITE_ENABLE_API_ARMOR) p->id = SQLITE_MUTEX_RECURSIVE; #endif } break; } case SQLITE_MUTEX_FAST: { p = sqlite3MallocZero( sizeof(*p) ); if( p ){ pthread_mutex_init(&p->mutex, 0); #if SQLITE_MUTEX_NREF || defined(SQLITE_ENABLE_API_ARMOR) p->id = SQLITE_MUTEX_FAST; #endif } break; } default: { #ifdef SQLITE_ENABLE_API_ARMOR if( iType-2<0 || iType-2>=ArraySize(staticMutexes) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif p = &staticMutexes[iType-2]; break; } } #if SQLITE_MUTEX_NREF || defined(SQLITE_ENABLE_API_ARMOR) assert( p==0 || p->id==iType ); #endif return p; } /* ** This routine deallocates a previously ** allocated mutex. SQLite is careful to deallocate every ** mutex that it allocates. */ static void pthreadMutexFree(sqlite3_mutex *p){ assert( p->nRef==0 ); #if SQLITE_ENABLE_API_ARMOR if( p->id==SQLITE_MUTEX_FAST || p->id==SQLITE_MUTEX_RECURSIVE ) #endif { pthread_mutex_destroy(&p->mutex); sqlite3_free(p); } #ifdef SQLITE_ENABLE_API_ARMOR else{ (void)SQLITE_MISUSE_BKPT; } #endif } /* ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt ** to enter a mutex. If another thread is already within the mutex, ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK ** upon successful entry. Mutexes created using SQLITE_MUTEX_RECURSIVE can ** be entered multiple times by the same thread. In such cases the, ** mutex must be exited an equal number of times before another thread ** can enter. If the same thread tries to enter any other kind of mutex ** more than once, the behavior is undefined. */ static void pthreadMutexEnter(sqlite3_mutex *p){ assert( p->id==SQLITE_MUTEX_RECURSIVE || pthreadMutexNotheld(p) ); #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX /* If recursive mutexes are not available, then we have to grow ** our own. This implementation assumes that pthread_equal() ** is atomic - that it cannot be deceived into thinking self ** and p->owner are equal if p->owner changes between two values ** that are not equal to self while the comparison is taking place. ** This implementation also assumes a coherent cache - that ** separate processes cannot read different values from the same ** address at the same time. If either of these two conditions ** are not met, then the mutexes will fail and problems will result. */ { pthread_t self = pthread_self(); if( p->nRef>0 && pthread_equal(p->owner, self) ){ p->nRef++; }else{ pthread_mutex_lock(&p->mutex); assert( p->nRef==0 ); p->owner = self; p->nRef = 1; } } #else /* Use the built-in recursive mutexes if they are available. */ pthread_mutex_lock(&p->mutex); #if SQLITE_MUTEX_NREF assert( p->nRef>0 || p->owner==0 ); p->owner = pthread_self(); p->nRef++; #endif #endif #ifdef SQLITE_DEBUG if( p->trace ){ printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); } #endif } static int pthreadMutexTry(sqlite3_mutex *p){ int rc; assert( p->id==SQLITE_MUTEX_RECURSIVE || pthreadMutexNotheld(p) ); #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX /* If recursive mutexes are not available, then we have to grow ** our own. This implementation assumes that pthread_equal() ** is atomic - that it cannot be deceived into thinking self ** and p->owner are equal if p->owner changes between two values ** that are not equal to self while the comparison is taking place. ** This implementation also assumes a coherent cache - that ** separate processes cannot read different values from the same ** address at the same time. If either of these two conditions ** are not met, then the mutexes will fail and problems will result. */ { pthread_t self = pthread_self(); if( p->nRef>0 && pthread_equal(p->owner, self) ){ p->nRef++; rc = SQLITE_OK; }else if( pthread_mutex_trylock(&p->mutex)==0 ){ assert( p->nRef==0 ); p->owner = self; p->nRef = 1; rc = SQLITE_OK; }else{ rc = SQLITE_BUSY; } } #else /* Use the built-in recursive mutexes if they are available. */ if( pthread_mutex_trylock(&p->mutex)==0 ){ #if SQLITE_MUTEX_NREF p->owner = pthread_self(); p->nRef++; #endif rc = SQLITE_OK; }else{ rc = SQLITE_BUSY; } #endif #ifdef SQLITE_DEBUG if( rc==SQLITE_OK && p->trace ){ printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); } #endif return rc; } /* ** The sqlite3_mutex_leave() routine exits a mutex that was ** previously entered by the same thread. The behavior ** is undefined if the mutex is not currently entered or ** is not currently allocated. SQLite will never do either. */ static void pthreadMutexLeave(sqlite3_mutex *p){ assert( pthreadMutexHeld(p) ); #if SQLITE_MUTEX_NREF p->nRef--; if( p->nRef==0 ) p->owner = 0; #endif assert( p->nRef==0 || p->id==SQLITE_MUTEX_RECURSIVE ); #ifdef SQLITE_HOMEGROWN_RECURSIVE_MUTEX if( p->nRef==0 ){ pthread_mutex_unlock(&p->mutex); } #else pthread_mutex_unlock(&p->mutex); #endif #ifdef SQLITE_DEBUG if( p->trace ){ printf("leave mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); } #endif } SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){ static const sqlite3_mutex_methods sMutex = { pthreadMutexInit, pthreadMutexEnd, pthreadMutexAlloc, pthreadMutexFree, pthreadMutexEnter, pthreadMutexTry, pthreadMutexLeave, #ifdef SQLITE_DEBUG pthreadMutexHeld, pthreadMutexNotheld #else 0, 0 #endif }; return &sMutex; } #endif /* SQLITE_MUTEX_PTHREADS */ /************** End of mutex_unix.c ******************************************/ /************** Begin file mutex_w32.c ***************************************/ /* ** 2007 August 14 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C functions that implement mutexes for Win32. */ /* #include "sqliteInt.h" */ #if SQLITE_OS_WIN /* ** Include code that is common to all os_*.c files */ /************** Include os_common.h in the middle of mutex_w32.c *************/ /************** Begin file os_common.h ***************************************/ /* ** 2004 May 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains macros and a little bit of code that is common to ** all of the platform-specific files (os_*.c) and is #included into those ** files. ** ** This file should be #included by the os_*.c files only. It is not a ** general purpose header file. */ #ifndef _OS_COMMON_H_ #define _OS_COMMON_H_ /* ** At least two bugs have slipped in because we changed the MEMORY_DEBUG ** macro to SQLITE_DEBUG and some older makefiles have not yet made the ** switch. The following code should catch this problem at compile-time. */ #ifdef MEMORY_DEBUG # error "The MEMORY_DEBUG macro is obsolete. Use SQLITE_DEBUG instead." #endif /* ** Macros for performance tracing. Normally turned off. Only works ** on i486 hardware. */ #ifdef SQLITE_PERFORMANCE_TRACE /* ** hwtime.h contains inline assembler code for implementing ** high-performance timing routines. */ /************** Include hwtime.h in the middle of os_common.h ****************/ /************** Begin file hwtime.h ******************************************/ /* ** 2008 May 27 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains inline asm code for retrieving "high-performance" ** counters for x86 and x86_64 class CPUs. */ #ifndef SQLITE_HWTIME_H #define SQLITE_HWTIME_H /* ** The following routine only works on pentium-class (or newer) processors. ** It uses the RDTSC opcode to read the cycle count value out of the ** processor and returns that value. This can be used for high-res ** profiling. */ #if !defined(__STRICT_ANSI__) && \ (defined(__GNUC__) || defined(_MSC_VER)) && \ (defined(i386) || defined(__i386__) || defined(_M_IX86)) #if defined(__GNUC__) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned int lo, hi; __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi)); return (sqlite_uint64)hi << 32 | lo; } #elif defined(_MSC_VER) __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ __asm { rdtsc ret ; return value at EDX:EAX } } #endif #elif !defined(__STRICT_ANSI__) && (defined(__GNUC__) && defined(__x86_64__)) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned long val; __asm__ __volatile__ ("rdtsc" : "=A" (val)); return val; } #elif !defined(__STRICT_ANSI__) && (defined(__GNUC__) && defined(__ppc__)) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned long long retval; unsigned long junk; __asm__ __volatile__ ("\n\ 1: mftbu %1\n\ mftb %L0\n\ mftbu %0\n\ cmpw %0,%1\n\ bne 1b" : "=r" (retval), "=r" (junk)); return retval; } #else /* ** asm() is needed for hardware timing support. Without asm(), ** disable the sqlite3Hwtime() routine. ** ** sqlite3Hwtime() is only used for some obscure debugging ** and analysis configurations, not in any deliverable, so this ** should not be a great loss. */ SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); } #endif #endif /* !defined(SQLITE_HWTIME_H) */ /************** End of hwtime.h **********************************************/ /************** Continuing where we left off in os_common.h ******************/ static sqlite_uint64 g_start; static sqlite_uint64 g_elapsed; #define TIMER_START g_start=sqlite3Hwtime() #define TIMER_END g_elapsed=sqlite3Hwtime()-g_start #define TIMER_ELAPSED g_elapsed #else #define TIMER_START #define TIMER_END #define TIMER_ELAPSED ((sqlite_uint64)0) #endif /* ** If we compile with the SQLITE_TEST macro set, then the following block ** of code will give us the ability to simulate a disk I/O error. This ** is used for testing the I/O recovery logic. */ #if defined(SQLITE_TEST) SQLITE_API extern int sqlite3_io_error_hit; SQLITE_API extern int sqlite3_io_error_hardhit; SQLITE_API extern int sqlite3_io_error_pending; SQLITE_API extern int sqlite3_io_error_persist; SQLITE_API extern int sqlite3_io_error_benign; SQLITE_API extern int sqlite3_diskfull_pending; SQLITE_API extern int sqlite3_diskfull; #define SimulateIOErrorBenign(X) sqlite3_io_error_benign=(X) #define SimulateIOError(CODE) \ if( (sqlite3_io_error_persist && sqlite3_io_error_hit) \ || sqlite3_io_error_pending-- == 1 ) \ { local_ioerr(); CODE; } static void local_ioerr(){ IOTRACE(("IOERR\n")); sqlite3_io_error_hit++; if( !sqlite3_io_error_benign ) sqlite3_io_error_hardhit++; } #define SimulateDiskfullError(CODE) \ if( sqlite3_diskfull_pending ){ \ if( sqlite3_diskfull_pending == 1 ){ \ local_ioerr(); \ sqlite3_diskfull = 1; \ sqlite3_io_error_hit = 1; \ CODE; \ }else{ \ sqlite3_diskfull_pending--; \ } \ } #else #define SimulateIOErrorBenign(X) #define SimulateIOError(A) #define SimulateDiskfullError(A) #endif /* defined(SQLITE_TEST) */ /* ** When testing, keep a count of the number of open files. */ #if defined(SQLITE_TEST) SQLITE_API extern int sqlite3_open_file_count; #define OpenCounter(X) sqlite3_open_file_count+=(X) #else #define OpenCounter(X) #endif /* defined(SQLITE_TEST) */ #endif /* !defined(_OS_COMMON_H_) */ /************** End of os_common.h *******************************************/ /************** Continuing where we left off in mutex_w32.c ******************/ /* ** Include the header file for the Windows VFS. */ /************** Include os_win.h in the middle of mutex_w32.c ****************/ /************** Begin file os_win.h ******************************************/ /* ** 2013 November 25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains code that is specific to Windows. */ #ifndef SQLITE_OS_WIN_H #define SQLITE_OS_WIN_H /* ** Include the primary Windows SDK header file. */ #include "windows.h" #ifdef __CYGWIN__ # include # include /* amalgamator: dontcache */ #endif /* ** Determine if we are dealing with Windows NT. ** ** We ought to be able to determine if we are compiling for Windows 9x or ** Windows NT using the _WIN32_WINNT macro as follows: ** ** #if defined(_WIN32_WINNT) ** # define SQLITE_OS_WINNT 1 ** #else ** # define SQLITE_OS_WINNT 0 ** #endif ** ** However, Visual Studio 2005 does not set _WIN32_WINNT by default, as ** it ought to, so the above test does not work. We'll just assume that ** everything is Windows NT unless the programmer explicitly says otherwise ** by setting SQLITE_OS_WINNT to 0. */ #if SQLITE_OS_WIN && !defined(SQLITE_OS_WINNT) # define SQLITE_OS_WINNT 1 #endif /* ** Determine if we are dealing with Windows CE - which has a much reduced ** API. */ #if defined(_WIN32_WCE) # define SQLITE_OS_WINCE 1 #else # define SQLITE_OS_WINCE 0 #endif /* ** Determine if we are dealing with WinRT, which provides only a subset of ** the full Win32 API. */ #if !defined(SQLITE_OS_WINRT) # define SQLITE_OS_WINRT 0 #endif /* ** For WinCE, some API function parameters do not appear to be declared as ** volatile. */ #if SQLITE_OS_WINCE # define SQLITE_WIN32_VOLATILE #else # define SQLITE_WIN32_VOLATILE volatile #endif /* ** For some Windows sub-platforms, the _beginthreadex() / _endthreadex() ** functions are not available (e.g. those not using MSVC, Cygwin, etc). */ #if SQLITE_OS_WIN && !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && \ SQLITE_THREADSAFE>0 && !defined(__CYGWIN__) # define SQLITE_OS_WIN_THREADS 1 #else # define SQLITE_OS_WIN_THREADS 0 #endif #endif /* SQLITE_OS_WIN_H */ /************** End of os_win.h **********************************************/ /************** Continuing where we left off in mutex_w32.c ******************/ #endif /* ** The code in this file is only used if we are compiling multithreaded ** on a Win32 system. */ #ifdef SQLITE_MUTEX_W32 /* ** Each recursive mutex is an instance of the following structure. */ struct sqlite3_mutex { CRITICAL_SECTION mutex; /* Mutex controlling the lock */ int id; /* Mutex type */ #ifdef SQLITE_DEBUG volatile int nRef; /* Number of enterances */ volatile DWORD owner; /* Thread holding this mutex */ volatile LONG trace; /* True to trace changes */ #endif }; /* ** These are the initializer values used when declaring a "static" mutex ** on Win32. It should be noted that all mutexes require initialization ** on the Win32 platform. */ #define SQLITE_W32_MUTEX_INITIALIZER { 0 } #ifdef SQLITE_DEBUG #define SQLITE3_MUTEX_INITIALIZER(id) { SQLITE_W32_MUTEX_INITIALIZER, id, \ 0L, (DWORD)0, 0 } #else #define SQLITE3_MUTEX_INITIALIZER(id) { SQLITE_W32_MUTEX_INITIALIZER, id } #endif #ifdef SQLITE_DEBUG /* ** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routine are ** intended for use only inside assert() statements. */ static int winMutexHeld(sqlite3_mutex *p){ return p->nRef!=0 && p->owner==GetCurrentThreadId(); } static int winMutexNotheld2(sqlite3_mutex *p, DWORD tid){ return p->nRef==0 || p->owner!=tid; } static int winMutexNotheld(sqlite3_mutex *p){ DWORD tid = GetCurrentThreadId(); return winMutexNotheld2(p, tid); } #endif /* ** Try to provide a memory barrier operation, needed for initialization ** and also for the xShmBarrier method of the VFS in cases when SQLite is ** compiled without mutexes (SQLITE_THREADSAFE=0). */ SQLITE_PRIVATE void sqlite3MemoryBarrier(void){ #if defined(SQLITE_MEMORY_BARRIER) SQLITE_MEMORY_BARRIER; #elif defined(__GNUC__) __sync_synchronize(); #elif MSVC_VERSION>=1300 _ReadWriteBarrier(); #elif defined(MemoryBarrier) MemoryBarrier(); #endif } /* ** Initialize and deinitialize the mutex subsystem. */ static sqlite3_mutex winMutex_staticMutexes[] = { SQLITE3_MUTEX_INITIALIZER(2), SQLITE3_MUTEX_INITIALIZER(3), SQLITE3_MUTEX_INITIALIZER(4), SQLITE3_MUTEX_INITIALIZER(5), SQLITE3_MUTEX_INITIALIZER(6), SQLITE3_MUTEX_INITIALIZER(7), SQLITE3_MUTEX_INITIALIZER(8), SQLITE3_MUTEX_INITIALIZER(9), SQLITE3_MUTEX_INITIALIZER(10), SQLITE3_MUTEX_INITIALIZER(11), SQLITE3_MUTEX_INITIALIZER(12), SQLITE3_MUTEX_INITIALIZER(13) }; static int winMutex_isInit = 0; static int winMutex_isNt = -1; /* <0 means "need to query" */ /* As the winMutexInit() and winMutexEnd() functions are called as part ** of the sqlite3_initialize() and sqlite3_shutdown() processing, the ** "interlocked" magic used here is probably not strictly necessary. */ static LONG SQLITE_WIN32_VOLATILE winMutex_lock = 0; SQLITE_API int sqlite3_win32_is_nt(void); /* os_win.c */ SQLITE_API void sqlite3_win32_sleep(DWORD milliseconds); /* os_win.c */ static int winMutexInit(void){ /* The first to increment to 1 does actual initialization */ if( InterlockedCompareExchange(&winMutex_lock, 1, 0)==0 ){ int i; for(i=0; i **
  • SQLITE_MUTEX_FAST **
  • SQLITE_MUTEX_RECURSIVE **
  • SQLITE_MUTEX_STATIC_MAIN **
  • SQLITE_MUTEX_STATIC_MEM **
  • SQLITE_MUTEX_STATIC_OPEN **
  • SQLITE_MUTEX_STATIC_PRNG **
  • SQLITE_MUTEX_STATIC_LRU **
  • SQLITE_MUTEX_STATIC_PMEM **
  • SQLITE_MUTEX_STATIC_APP1 **
  • SQLITE_MUTEX_STATIC_APP2 **
  • SQLITE_MUTEX_STATIC_APP3 **
  • SQLITE_MUTEX_STATIC_VFS1 **
  • SQLITE_MUTEX_STATIC_VFS2 **
  • SQLITE_MUTEX_STATIC_VFS3 ** ** ** The first two constants cause sqlite3_mutex_alloc() to create ** a new mutex. The new mutex is recursive when SQLITE_MUTEX_RECURSIVE ** is used but not necessarily so when SQLITE_MUTEX_FAST is used. ** The mutex implementation does not need to make a distinction ** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does ** not want to. But SQLite will only request a recursive mutex in ** cases where it really needs one. If a faster non-recursive mutex ** implementation is available on the host platform, the mutex subsystem ** might return such a mutex in response to SQLITE_MUTEX_FAST. ** ** The other allowed parameters to sqlite3_mutex_alloc() each return ** a pointer to a static preexisting mutex. Six static mutexes are ** used by the current version of SQLite. Future versions of SQLite ** may add additional static mutexes. Static mutexes are for internal ** use by SQLite only. Applications that use SQLite mutexes should ** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or ** SQLITE_MUTEX_RECURSIVE. ** ** Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST ** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc() ** returns a different mutex on every call. But for the static ** mutex types, the same mutex is returned on every call that has ** the same type number. */ static sqlite3_mutex *winMutexAlloc(int iType){ sqlite3_mutex *p; switch( iType ){ case SQLITE_MUTEX_FAST: case SQLITE_MUTEX_RECURSIVE: { p = sqlite3MallocZero( sizeof(*p) ); if( p ){ p->id = iType; #ifdef SQLITE_DEBUG #ifdef SQLITE_WIN32_MUTEX_TRACE_DYNAMIC p->trace = 1; #endif #endif #if SQLITE_OS_WINRT InitializeCriticalSectionEx(&p->mutex, 0, 0); #else InitializeCriticalSection(&p->mutex); #endif } break; } default: { #ifdef SQLITE_ENABLE_API_ARMOR if( iType-2<0 || iType-2>=ArraySize(winMutex_staticMutexes) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif p = &winMutex_staticMutexes[iType-2]; #ifdef SQLITE_DEBUG #ifdef SQLITE_WIN32_MUTEX_TRACE_STATIC InterlockedCompareExchange(&p->trace, 1, 0); #endif #endif break; } } assert( p==0 || p->id==iType ); return p; } /* ** This routine deallocates a previously ** allocated mutex. SQLite is careful to deallocate every ** mutex that it allocates. */ static void winMutexFree(sqlite3_mutex *p){ assert( p ); assert( p->nRef==0 && p->owner==0 ); if( p->id==SQLITE_MUTEX_FAST || p->id==SQLITE_MUTEX_RECURSIVE ){ DeleteCriticalSection(&p->mutex); sqlite3_free(p); }else{ #ifdef SQLITE_ENABLE_API_ARMOR (void)SQLITE_MISUSE_BKPT; #endif } } /* ** The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt ** to enter a mutex. If another thread is already within the mutex, ** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return ** SQLITE_BUSY. The sqlite3_mutex_try() interface returns SQLITE_OK ** upon successful entry. Mutexes created using SQLITE_MUTEX_RECURSIVE can ** be entered multiple times by the same thread. In such cases the, ** mutex must be exited an equal number of times before another thread ** can enter. If the same thread tries to enter any other kind of mutex ** more than once, the behavior is undefined. */ static void winMutexEnter(sqlite3_mutex *p){ #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) DWORD tid = GetCurrentThreadId(); #endif #ifdef SQLITE_DEBUG assert( p ); assert( p->id==SQLITE_MUTEX_RECURSIVE || winMutexNotheld2(p, tid) ); #else assert( p ); #endif assert( winMutex_isInit==1 ); EnterCriticalSection(&p->mutex); #ifdef SQLITE_DEBUG assert( p->nRef>0 || p->owner==0 ); p->owner = tid; p->nRef++; if( p->trace ){ OSTRACE(("ENTER-MUTEX tid=%lu, mutex(%d)=%p (%d), nRef=%d\n", tid, p->id, p, p->trace, p->nRef)); } #endif } static int winMutexTry(sqlite3_mutex *p){ #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) DWORD tid = GetCurrentThreadId(); #endif int rc = SQLITE_BUSY; assert( p ); assert( p->id==SQLITE_MUTEX_RECURSIVE || winMutexNotheld2(p, tid) ); /* ** The sqlite3_mutex_try() routine is very rarely used, and when it ** is used it is merely an optimization. So it is OK for it to always ** fail. ** ** The TryEnterCriticalSection() interface is only available on WinNT. ** And some windows compilers complain if you try to use it without ** first doing some #defines that prevent SQLite from building on Win98. ** For that reason, we will omit this optimization for now. See ** ticket #2685. */ #if defined(_WIN32_WINNT) && _WIN32_WINNT >= 0x0400 assert( winMutex_isInit==1 ); assert( winMutex_isNt>=-1 && winMutex_isNt<=1 ); if( winMutex_isNt<0 ){ winMutex_isNt = sqlite3_win32_is_nt(); } assert( winMutex_isNt==0 || winMutex_isNt==1 ); if( winMutex_isNt && TryEnterCriticalSection(&p->mutex) ){ #ifdef SQLITE_DEBUG p->owner = tid; p->nRef++; #endif rc = SQLITE_OK; } #else UNUSED_PARAMETER(p); #endif #ifdef SQLITE_DEBUG if( p->trace ){ OSTRACE(("TRY-MUTEX tid=%lu, mutex(%d)=%p (%d), owner=%lu, nRef=%d, rc=%s\n", tid, p->id, p, p->trace, p->owner, p->nRef, sqlite3ErrName(rc))); } #endif return rc; } /* ** The sqlite3_mutex_leave() routine exits a mutex that was ** previously entered by the same thread. The behavior ** is undefined if the mutex is not currently entered or ** is not currently allocated. SQLite will never do either. */ static void winMutexLeave(sqlite3_mutex *p){ #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) DWORD tid = GetCurrentThreadId(); #endif assert( p ); #ifdef SQLITE_DEBUG assert( p->nRef>0 ); assert( p->owner==tid ); p->nRef--; if( p->nRef==0 ) p->owner = 0; assert( p->nRef==0 || p->id==SQLITE_MUTEX_RECURSIVE ); #endif assert( winMutex_isInit==1 ); LeaveCriticalSection(&p->mutex); #ifdef SQLITE_DEBUG if( p->trace ){ OSTRACE(("LEAVE-MUTEX tid=%lu, mutex(%d)=%p (%d), nRef=%d\n", tid, p->id, p, p->trace, p->nRef)); } #endif } SQLITE_PRIVATE sqlite3_mutex_methods const *sqlite3DefaultMutex(void){ static const sqlite3_mutex_methods sMutex = { winMutexInit, winMutexEnd, winMutexAlloc, winMutexFree, winMutexEnter, winMutexTry, winMutexLeave, #ifdef SQLITE_DEBUG winMutexHeld, winMutexNotheld #else 0, 0 #endif }; return &sMutex; } #endif /* SQLITE_MUTEX_W32 */ /************** End of mutex_w32.c *******************************************/ /************** Begin file malloc.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** Memory allocation functions used throughout sqlite. */ /* #include "sqliteInt.h" */ /* #include */ /* ** Attempt to release up to n bytes of non-essential memory currently ** held by SQLite. An example of non-essential memory is memory used to ** cache database pages that are not currently in use. */ SQLITE_API int sqlite3_release_memory(int n){ #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT return sqlite3PcacheReleaseMemory(n); #else /* IMPLEMENTATION-OF: R-34391-24921 The sqlite3_release_memory() routine ** is a no-op returning zero if SQLite is not compiled with ** SQLITE_ENABLE_MEMORY_MANAGEMENT. */ UNUSED_PARAMETER(n); return 0; #endif } /* ** Default value of the hard heap limit. 0 means "no limit". */ #ifndef SQLITE_MAX_MEMORY # define SQLITE_MAX_MEMORY 0 #endif /* ** State information local to the memory allocation subsystem. */ static SQLITE_WSD struct Mem0Global { sqlite3_mutex *mutex; /* Mutex to serialize access */ sqlite3_int64 alarmThreshold; /* The soft heap limit */ sqlite3_int64 hardLimit; /* The hard upper bound on memory */ /* ** True if heap is nearly "full" where "full" is defined by the ** sqlite3_soft_heap_limit() setting. */ int nearlyFull; } mem0 = { 0, SQLITE_MAX_MEMORY, SQLITE_MAX_MEMORY, 0 }; #define mem0 GLOBAL(struct Mem0Global, mem0) /* ** Return the memory allocator mutex. sqlite3_status() needs it. */ SQLITE_PRIVATE sqlite3_mutex *sqlite3MallocMutex(void){ return mem0.mutex; } #ifndef SQLITE_OMIT_DEPRECATED /* ** Deprecated external interface. It used to set an alarm callback ** that was invoked when memory usage grew too large. Now it is a ** no-op. */ SQLITE_API int sqlite3_memory_alarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ){ (void)xCallback; (void)pArg; (void)iThreshold; return SQLITE_OK; } #endif /* ** Set the soft heap-size limit for the library. An argument of ** zero disables the limit. A negative argument is a no-op used to ** obtain the return value. ** ** The return value is the value of the heap limit just before this ** interface was called. ** ** If the hard heap limit is enabled, then the soft heap limit cannot ** be disabled nor raised above the hard heap limit. */ SQLITE_API sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 n){ sqlite3_int64 priorLimit; sqlite3_int64 excess; sqlite3_int64 nUsed; #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return -1; #endif sqlite3_mutex_enter(mem0.mutex); priorLimit = mem0.alarmThreshold; if( n<0 ){ sqlite3_mutex_leave(mem0.mutex); return priorLimit; } if( mem0.hardLimit>0 && (n>mem0.hardLimit || n==0) ){ n = mem0.hardLimit; } mem0.alarmThreshold = n; nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); AtomicStore(&mem0.nearlyFull, n>0 && n<=nUsed); sqlite3_mutex_leave(mem0.mutex); excess = sqlite3_memory_used() - n; if( excess>0 ) sqlite3_release_memory((int)(excess & 0x7fffffff)); return priorLimit; } SQLITE_API void sqlite3_soft_heap_limit(int n){ if( n<0 ) n = 0; sqlite3_soft_heap_limit64(n); } /* ** Set the hard heap-size limit for the library. An argument of zero ** disables the hard heap limit. A negative argument is a no-op used ** to obtain the return value without affecting the hard heap limit. ** ** The return value is the value of the hard heap limit just prior to ** calling this interface. ** ** Setting the hard heap limit will also activate the soft heap limit ** and constrain the soft heap limit to be no more than the hard heap ** limit. */ SQLITE_API sqlite3_int64 sqlite3_hard_heap_limit64(sqlite3_int64 n){ sqlite3_int64 priorLimit; #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return -1; #endif sqlite3_mutex_enter(mem0.mutex); priorLimit = mem0.hardLimit; if( n>=0 ){ mem0.hardLimit = n; if( n0 ); /* In Firefox (circa 2017-02-08), xRoundup() is remapped to an internal ** implementation of malloc_good_size(), which must be called in debug ** mode and specifically when the DMD "Dark Matter Detector" is enabled ** or else a crash results. Hence, do not attempt to optimize out the ** following xRoundup() call. */ nFull = sqlite3GlobalConfig.m.xRoundup(n); sqlite3StatusHighwater(SQLITE_STATUS_MALLOC_SIZE, n); if( mem0.alarmThreshold>0 ){ sqlite3_int64 nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); if( nUsed >= mem0.alarmThreshold - nFull ){ AtomicStore(&mem0.nearlyFull, 1); sqlite3MallocAlarm(nFull); if( mem0.hardLimit ){ nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); if( nUsed >= mem0.hardLimit - nFull ){ *pp = 0; return; } } }else{ AtomicStore(&mem0.nearlyFull, 0); } } p = sqlite3GlobalConfig.m.xMalloc(nFull); #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT if( p==0 && mem0.alarmThreshold>0 ){ sqlite3MallocAlarm(nFull); p = sqlite3GlobalConfig.m.xMalloc(nFull); } #endif if( p ){ nFull = sqlite3MallocSize(p); sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nFull); sqlite3StatusUp(SQLITE_STATUS_MALLOC_COUNT, 1); } *pp = p; } /* ** Allocate memory. This routine is like sqlite3_malloc() except that it ** assumes the memory subsystem has already been initialized. */ SQLITE_PRIVATE void *sqlite3Malloc(u64 n){ void *p; if( n==0 || n>=0x7fffff00 ){ /* A memory allocation of a number of bytes which is near the maximum ** signed integer value might cause an integer overflow inside of the ** xMalloc(). Hence we limit the maximum size to 0x7fffff00, giving ** 255 bytes of overhead. SQLite itself will never use anything near ** this amount. The only way to reach the limit is with sqlite3_malloc() */ p = 0; }else if( sqlite3GlobalConfig.bMemstat ){ sqlite3_mutex_enter(mem0.mutex); mallocWithAlarm((int)n, &p); sqlite3_mutex_leave(mem0.mutex); }else{ p = sqlite3GlobalConfig.m.xMalloc((int)n); } assert( EIGHT_BYTE_ALIGNMENT(p) ); /* IMP: R-11148-40995 */ return p; } /* ** This version of the memory allocation is for use by the application. ** First make sure the memory subsystem is initialized, then do the ** allocation. */ SQLITE_API void *sqlite3_malloc(int n){ #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return n<=0 ? 0 : sqlite3Malloc(n); } SQLITE_API void *sqlite3_malloc64(sqlite3_uint64 n){ #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return sqlite3Malloc(n); } /* ** TRUE if p is a lookaside memory allocation from db */ #ifndef SQLITE_OMIT_LOOKASIDE static int isLookaside(sqlite3 *db, void *p){ return SQLITE_WITHIN(p, db->lookaside.pStart, db->lookaside.pEnd); } #else #define isLookaside(A,B) 0 #endif /* ** Return the size of a memory allocation previously obtained from ** sqlite3Malloc() or sqlite3_malloc(). */ SQLITE_PRIVATE int sqlite3MallocSize(void *p){ assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); return sqlite3GlobalConfig.m.xSize(p); } static int lookasideMallocSize(sqlite3 *db, void *p){ #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE return plookaside.pMiddle ? db->lookaside.szTrue : LOOKASIDE_SMALL; #else return db->lookaside.szTrue; #endif } SQLITE_PRIVATE int sqlite3DbMallocSize(sqlite3 *db, void *p){ assert( p!=0 ); #ifdef SQLITE_DEBUG if( db==0 || !isLookaside(db,p) ){ if( db==0 ){ assert( sqlite3MemdebugNoType(p, (u8)~MEMTYPE_HEAP) ); assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); }else{ assert( sqlite3MemdebugHasType(p, (MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); assert( sqlite3MemdebugNoType(p, (u8)~(MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); } } #endif if( db ){ if( ((uptr)p)<(uptr)(db->lookaside.pEnd) ){ #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE if( ((uptr)p)>=(uptr)(db->lookaside.pMiddle) ){ assert( sqlite3_mutex_held(db->mutex) ); return LOOKASIDE_SMALL; } #endif if( ((uptr)p)>=(uptr)(db->lookaside.pStart) ){ assert( sqlite3_mutex_held(db->mutex) ); return db->lookaside.szTrue; } } } return sqlite3GlobalConfig.m.xSize(p); } SQLITE_API sqlite3_uint64 sqlite3_msize(void *p){ assert( sqlite3MemdebugNoType(p, (u8)~MEMTYPE_HEAP) ); assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); return p ? sqlite3GlobalConfig.m.xSize(p) : 0; } /* ** Free memory previously obtained from sqlite3Malloc(). */ SQLITE_API void sqlite3_free(void *p){ if( p==0 ) return; /* IMP: R-49053-54554 */ assert( sqlite3MemdebugHasType(p, MEMTYPE_HEAP) ); assert( sqlite3MemdebugNoType(p, (u8)~MEMTYPE_HEAP) ); if( sqlite3GlobalConfig.bMemstat ){ sqlite3_mutex_enter(mem0.mutex); sqlite3StatusDown(SQLITE_STATUS_MEMORY_USED, sqlite3MallocSize(p)); sqlite3StatusDown(SQLITE_STATUS_MALLOC_COUNT, 1); sqlite3GlobalConfig.m.xFree(p); sqlite3_mutex_leave(mem0.mutex); }else{ sqlite3GlobalConfig.m.xFree(p); } } /* ** Add the size of memory allocation "p" to the count in ** *db->pnBytesFreed. */ static SQLITE_NOINLINE void measureAllocationSize(sqlite3 *db, void *p){ *db->pnBytesFreed += sqlite3DbMallocSize(db,p); } /* ** Free memory that might be associated with a particular database ** connection. Calling sqlite3DbFree(D,X) for X==0 is a harmless no-op. ** The sqlite3DbFreeNN(D,X) version requires that X be non-NULL. */ SQLITE_PRIVATE void sqlite3DbFreeNN(sqlite3 *db, void *p){ assert( db==0 || sqlite3_mutex_held(db->mutex) ); assert( p!=0 ); if( db ){ if( db->pnBytesFreed ){ measureAllocationSize(db, p); return; } if( ((uptr)p)<(uptr)(db->lookaside.pEnd) ){ #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE if( ((uptr)p)>=(uptr)(db->lookaside.pMiddle) ){ LookasideSlot *pBuf = (LookasideSlot*)p; #ifdef SQLITE_DEBUG memset(p, 0xaa, LOOKASIDE_SMALL); /* Trash freed content */ #endif pBuf->pNext = db->lookaside.pSmallFree; db->lookaside.pSmallFree = pBuf; return; } #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ if( ((uptr)p)>=(uptr)(db->lookaside.pStart) ){ LookasideSlot *pBuf = (LookasideSlot*)p; #ifdef SQLITE_DEBUG memset(p, 0xaa, db->lookaside.szTrue); /* Trash freed content */ #endif pBuf->pNext = db->lookaside.pFree; db->lookaside.pFree = pBuf; return; } } } assert( sqlite3MemdebugHasType(p, (MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); assert( sqlite3MemdebugNoType(p, (u8)~(MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); assert( db!=0 || sqlite3MemdebugNoType(p, MEMTYPE_LOOKASIDE) ); sqlite3MemdebugSetType(p, MEMTYPE_HEAP); sqlite3_free(p); } SQLITE_PRIVATE void sqlite3DbFree(sqlite3 *db, void *p){ assert( db==0 || sqlite3_mutex_held(db->mutex) ); if( p ) sqlite3DbFreeNN(db, p); } /* ** Change the size of an existing memory allocation */ SQLITE_PRIVATE void *sqlite3Realloc(void *pOld, u64 nBytes){ int nOld, nNew, nDiff; void *pNew; assert( sqlite3MemdebugHasType(pOld, MEMTYPE_HEAP) ); assert( sqlite3MemdebugNoType(pOld, (u8)~MEMTYPE_HEAP) ); if( pOld==0 ){ return sqlite3Malloc(nBytes); /* IMP: R-04300-56712 */ } if( nBytes==0 ){ sqlite3_free(pOld); /* IMP: R-26507-47431 */ return 0; } if( nBytes>=0x7fffff00 ){ /* The 0x7ffff00 limit term is explained in comments on sqlite3Malloc() */ return 0; } nOld = sqlite3MallocSize(pOld); /* IMPLEMENTATION-OF: R-46199-30249 SQLite guarantees that the second ** argument to xRealloc is always a value returned by a prior call to ** xRoundup. */ nNew = sqlite3GlobalConfig.m.xRoundup((int)nBytes); if( nOld==nNew ){ pNew = pOld; }else if( sqlite3GlobalConfig.bMemstat ){ sqlite3_mutex_enter(mem0.mutex); sqlite3StatusHighwater(SQLITE_STATUS_MALLOC_SIZE, (int)nBytes); nDiff = nNew - nOld; if( nDiff>0 && sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED) >= mem0.alarmThreshold-nDiff ){ sqlite3MallocAlarm(nDiff); } pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT if( pNew==0 && mem0.alarmThreshold>0 ){ sqlite3MallocAlarm((int)nBytes); pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); } #endif if( pNew ){ nNew = sqlite3MallocSize(pNew); sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nNew-nOld); } sqlite3_mutex_leave(mem0.mutex); }else{ pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); } assert( EIGHT_BYTE_ALIGNMENT(pNew) ); /* IMP: R-11148-40995 */ return pNew; } /* ** The public interface to sqlite3Realloc. Make sure that the memory ** subsystem is initialized prior to invoking sqliteRealloc. */ SQLITE_API void *sqlite3_realloc(void *pOld, int n){ #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif if( n<0 ) n = 0; /* IMP: R-26507-47431 */ return sqlite3Realloc(pOld, n); } SQLITE_API void *sqlite3_realloc64(void *pOld, sqlite3_uint64 n){ #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return sqlite3Realloc(pOld, n); } /* ** Allocate and zero memory. */ SQLITE_PRIVATE void *sqlite3MallocZero(u64 n){ void *p = sqlite3Malloc(n); if( p ){ memset(p, 0, (size_t)n); } return p; } /* ** Allocate and zero memory. If the allocation fails, make ** the mallocFailed flag in the connection pointer. */ SQLITE_PRIVATE void *sqlite3DbMallocZero(sqlite3 *db, u64 n){ void *p; testcase( db==0 ); p = sqlite3DbMallocRaw(db, n); if( p ) memset(p, 0, (size_t)n); return p; } /* Finish the work of sqlite3DbMallocRawNN for the unusual and ** slower case when the allocation cannot be fulfilled using lookaside. */ static SQLITE_NOINLINE void *dbMallocRawFinish(sqlite3 *db, u64 n){ void *p; assert( db!=0 ); p = sqlite3Malloc(n); if( !p ) sqlite3OomFault(db); sqlite3MemdebugSetType(p, (db->lookaside.bDisable==0) ? MEMTYPE_LOOKASIDE : MEMTYPE_HEAP); return p; } /* ** Allocate memory, either lookaside (if possible) or heap. ** If the allocation fails, set the mallocFailed flag in ** the connection pointer. ** ** If db!=0 and db->mallocFailed is true (indicating a prior malloc ** failure on the same database connection) then always return 0. ** Hence for a particular database connection, once malloc starts ** failing, it fails consistently until mallocFailed is reset. ** This is an important assumption. There are many places in the ** code that do things like this: ** ** int *a = (int*)sqlite3DbMallocRaw(db, 100); ** int *b = (int*)sqlite3DbMallocRaw(db, 200); ** if( b ) a[10] = 9; ** ** In other words, if a subsequent malloc (ex: "b") worked, it is assumed ** that all prior mallocs (ex: "a") worked too. ** ** The sqlite3MallocRawNN() variant guarantees that the "db" parameter is ** not a NULL pointer. */ SQLITE_PRIVATE void *sqlite3DbMallocRaw(sqlite3 *db, u64 n){ void *p; if( db ) return sqlite3DbMallocRawNN(db, n); p = sqlite3Malloc(n); sqlite3MemdebugSetType(p, MEMTYPE_HEAP); return p; } SQLITE_PRIVATE void *sqlite3DbMallocRawNN(sqlite3 *db, u64 n){ #ifndef SQLITE_OMIT_LOOKASIDE LookasideSlot *pBuf; assert( db!=0 ); assert( sqlite3_mutex_held(db->mutex) ); assert( db->pnBytesFreed==0 ); if( n>db->lookaside.sz ){ if( !db->lookaside.bDisable ){ db->lookaside.anStat[1]++; }else if( db->mallocFailed ){ return 0; } return dbMallocRawFinish(db, n); } #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE if( n<=LOOKASIDE_SMALL ){ if( (pBuf = db->lookaside.pSmallFree)!=0 ){ db->lookaside.pSmallFree = pBuf->pNext; db->lookaside.anStat[0]++; return (void*)pBuf; }else if( (pBuf = db->lookaside.pSmallInit)!=0 ){ db->lookaside.pSmallInit = pBuf->pNext; db->lookaside.anStat[0]++; return (void*)pBuf; } } #endif if( (pBuf = db->lookaside.pFree)!=0 ){ db->lookaside.pFree = pBuf->pNext; db->lookaside.anStat[0]++; return (void*)pBuf; }else if( (pBuf = db->lookaside.pInit)!=0 ){ db->lookaside.pInit = pBuf->pNext; db->lookaside.anStat[0]++; return (void*)pBuf; }else{ db->lookaside.anStat[2]++; } #else assert( db!=0 ); assert( sqlite3_mutex_held(db->mutex) ); assert( db->pnBytesFreed==0 ); if( db->mallocFailed ){ return 0; } #endif return dbMallocRawFinish(db, n); } /* Forward declaration */ static SQLITE_NOINLINE void *dbReallocFinish(sqlite3 *db, void *p, u64 n); /* ** Resize the block of memory pointed to by p to n bytes. If the ** resize fails, set the mallocFailed flag in the connection object. */ SQLITE_PRIVATE void *sqlite3DbRealloc(sqlite3 *db, void *p, u64 n){ assert( db!=0 ); if( p==0 ) return sqlite3DbMallocRawNN(db, n); assert( sqlite3_mutex_held(db->mutex) ); if( ((uptr)p)<(uptr)db->lookaside.pEnd ){ #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE if( ((uptr)p)>=(uptr)db->lookaside.pMiddle ){ if( n<=LOOKASIDE_SMALL ) return p; }else #endif if( ((uptr)p)>=(uptr)db->lookaside.pStart ){ if( n<=db->lookaside.szTrue ) return p; } } return dbReallocFinish(db, p, n); } static SQLITE_NOINLINE void *dbReallocFinish(sqlite3 *db, void *p, u64 n){ void *pNew = 0; assert( db!=0 ); assert( p!=0 ); if( db->mallocFailed==0 ){ if( isLookaside(db, p) ){ pNew = sqlite3DbMallocRawNN(db, n); if( pNew ){ memcpy(pNew, p, lookasideMallocSize(db, p)); sqlite3DbFree(db, p); } }else{ assert( sqlite3MemdebugHasType(p, (MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); assert( sqlite3MemdebugNoType(p, (u8)~(MEMTYPE_LOOKASIDE|MEMTYPE_HEAP)) ); sqlite3MemdebugSetType(p, MEMTYPE_HEAP); pNew = sqlite3Realloc(p, n); if( !pNew ){ sqlite3OomFault(db); } sqlite3MemdebugSetType(pNew, (db->lookaside.bDisable==0 ? MEMTYPE_LOOKASIDE : MEMTYPE_HEAP)); } } return pNew; } /* ** Attempt to reallocate p. If the reallocation fails, then free p ** and set the mallocFailed flag in the database connection. */ SQLITE_PRIVATE void *sqlite3DbReallocOrFree(sqlite3 *db, void *p, u64 n){ void *pNew; pNew = sqlite3DbRealloc(db, p, n); if( !pNew ){ sqlite3DbFree(db, p); } return pNew; } /* ** Make a copy of a string in memory obtained from sqliteMalloc(). These ** functions call sqlite3MallocRaw() directly instead of sqliteMalloc(). This ** is because when memory debugging is turned on, these two functions are ** called via macros that record the current file and line number in the ** ThreadData structure. */ SQLITE_PRIVATE char *sqlite3DbStrDup(sqlite3 *db, const char *z){ char *zNew; size_t n; if( z==0 ){ return 0; } n = strlen(z) + 1; zNew = sqlite3DbMallocRaw(db, n); if( zNew ){ memcpy(zNew, z, n); } return zNew; } SQLITE_PRIVATE char *sqlite3DbStrNDup(sqlite3 *db, const char *z, u64 n){ char *zNew; assert( db!=0 ); assert( z!=0 || n==0 ); assert( (n&0x7fffffff)==n ); zNew = z ? sqlite3DbMallocRawNN(db, n+1) : 0; if( zNew ){ memcpy(zNew, z, (size_t)n); zNew[n] = 0; } return zNew; } /* ** The text between zStart and zEnd represents a phrase within a larger ** SQL statement. Make a copy of this phrase in space obtained form ** sqlite3DbMalloc(). Omit leading and trailing whitespace. */ SQLITE_PRIVATE char *sqlite3DbSpanDup(sqlite3 *db, const char *zStart, const char *zEnd){ int n; while( sqlite3Isspace(zStart[0]) ) zStart++; n = (int)(zEnd - zStart); while( ALWAYS(n>0) && sqlite3Isspace(zStart[n-1]) ) n--; return sqlite3DbStrNDup(db, zStart, n); } /* ** Free any prior content in *pz and replace it with a copy of zNew. */ SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zNew){ sqlite3DbFree(db, *pz); *pz = sqlite3DbStrDup(db, zNew); } /* ** Call this routine to record the fact that an OOM (out-of-memory) error ** has happened. This routine will set db->mallocFailed, and also ** temporarily disable the lookaside memory allocator and interrupt ** any running VDBEs. */ SQLITE_PRIVATE void sqlite3OomFault(sqlite3 *db){ if( db->mallocFailed==0 && db->bBenignMalloc==0 ){ db->mallocFailed = 1; if( db->nVdbeExec>0 ){ AtomicStore(&db->u1.isInterrupted, 1); } DisableLookaside; if( db->pParse ){ db->pParse->rc = SQLITE_NOMEM_BKPT; } } } /* ** This routine reactivates the memory allocator and clears the ** db->mallocFailed flag as necessary. ** ** The memory allocator is not restarted if there are running ** VDBEs. */ SQLITE_PRIVATE void sqlite3OomClear(sqlite3 *db){ if( db->mallocFailed && db->nVdbeExec==0 ){ db->mallocFailed = 0; AtomicStore(&db->u1.isInterrupted, 0); assert( db->lookaside.bDisable>0 ); EnableLookaside; } } /* ** Take actions at the end of an API call to indicate an OOM error */ static SQLITE_NOINLINE int apiOomError(sqlite3 *db){ sqlite3OomClear(db); sqlite3Error(db, SQLITE_NOMEM); return SQLITE_NOMEM_BKPT; } /* ** This function must be called before exiting any API function (i.e. ** returning control to the user) that has called sqlite3_malloc or ** sqlite3_realloc. ** ** The returned value is normally a copy of the second argument to this ** function. However, if a malloc() failure has occurred since the previous ** invocation SQLITE_NOMEM is returned instead. ** ** If an OOM as occurred, then the connection error-code (the value ** returned by sqlite3_errcode()) is set to SQLITE_NOMEM. */ SQLITE_PRIVATE int sqlite3ApiExit(sqlite3* db, int rc){ /* If the db handle must hold the connection handle mutex here. ** Otherwise the read (and possible write) of db->mallocFailed ** is unsafe, as is the call to sqlite3Error(). */ assert( db!=0 ); assert( sqlite3_mutex_held(db->mutex) ); if( db->mallocFailed || rc==SQLITE_IOERR_NOMEM ){ return apiOomError(db); } return rc & db->errMask; } /************** End of malloc.c **********************************************/ /************** Begin file printf.c ******************************************/ /* ** The "printf" code that follows dates from the 1980's. It is in ** the public domain. ** ************************************************************************** ** ** This file contains code for a set of "printf"-like routines. These ** routines format strings much like the printf() from the standard C ** library, though the implementation here has enhancements to support ** SQLite. */ /* #include "sqliteInt.h" */ /* ** Conversion types fall into various categories as defined by the ** following enumeration. */ #define etRADIX 0 /* non-decimal integer types. %x %o */ #define etFLOAT 1 /* Floating point. %f */ #define etEXP 2 /* Exponentional notation. %e and %E */ #define etGENERIC 3 /* Floating or exponential, depending on exponent. %g */ #define etSIZE 4 /* Return number of characters processed so far. %n */ #define etSTRING 5 /* Strings. %s */ #define etDYNSTRING 6 /* Dynamically allocated strings. %z */ #define etPERCENT 7 /* Percent symbol. %% */ #define etCHARX 8 /* Characters. %c */ /* The rest are extensions, not normally found in printf() */ #define etSQLESCAPE 9 /* Strings with '\'' doubled. %q */ #define etSQLESCAPE2 10 /* Strings with '\'' doubled and enclosed in '', NULL pointers replaced by SQL NULL. %Q */ #define etTOKEN 11 /* a pointer to a Token structure */ #define etSRCLIST 12 /* a pointer to a SrcList */ #define etPOINTER 13 /* The %p conversion */ #define etSQLESCAPE3 14 /* %w -> Strings with '\"' doubled */ #define etORDINAL 15 /* %r -> 1st, 2nd, 3rd, 4th, etc. English only */ #define etDECIMAL 16 /* %d or %u, but not %x, %o */ #define etINVALID 17 /* Any unrecognized conversion type */ /* ** An "etByte" is an 8-bit unsigned value. */ typedef unsigned char etByte; /* ** Each builtin conversion character (ex: the 'd' in "%d") is described ** by an instance of the following structure */ typedef struct et_info { /* Information about each format field */ char fmttype; /* The format field code letter */ etByte base; /* The base for radix conversion */ etByte flags; /* One or more of FLAG_ constants below */ etByte type; /* Conversion paradigm */ etByte charset; /* Offset into aDigits[] of the digits string */ etByte prefix; /* Offset into aPrefix[] of the prefix string */ } et_info; /* ** Allowed values for et_info.flags */ #define FLAG_SIGNED 1 /* True if the value to convert is signed */ #define FLAG_STRING 4 /* Allow infinite precision */ /* ** The following table is searched linearly, so it is good to put the ** most frequently used conversion types first. */ static const char aDigits[] = "0123456789ABCDEF0123456789abcdef"; static const char aPrefix[] = "-x0\000X0"; static const et_info fmtinfo[] = { { 'd', 10, 1, etDECIMAL, 0, 0 }, { 's', 0, 4, etSTRING, 0, 0 }, { 'g', 0, 1, etGENERIC, 30, 0 }, { 'z', 0, 4, etDYNSTRING, 0, 0 }, { 'q', 0, 4, etSQLESCAPE, 0, 0 }, { 'Q', 0, 4, etSQLESCAPE2, 0, 0 }, { 'w', 0, 4, etSQLESCAPE3, 0, 0 }, { 'c', 0, 0, etCHARX, 0, 0 }, { 'o', 8, 0, etRADIX, 0, 2 }, { 'u', 10, 0, etDECIMAL, 0, 0 }, { 'x', 16, 0, etRADIX, 16, 1 }, { 'X', 16, 0, etRADIX, 0, 4 }, #ifndef SQLITE_OMIT_FLOATING_POINT { 'f', 0, 1, etFLOAT, 0, 0 }, { 'e', 0, 1, etEXP, 30, 0 }, { 'E', 0, 1, etEXP, 14, 0 }, { 'G', 0, 1, etGENERIC, 14, 0 }, #endif { 'i', 10, 1, etDECIMAL, 0, 0 }, { 'n', 0, 0, etSIZE, 0, 0 }, { '%', 0, 0, etPERCENT, 0, 0 }, { 'p', 16, 0, etPOINTER, 0, 1 }, /* All the rest are undocumented and are for internal use only */ { 'T', 0, 0, etTOKEN, 0, 0 }, { 'S', 0, 0, etSRCLIST, 0, 0 }, { 'r', 10, 1, etORDINAL, 0, 0 }, }; /* Floating point constants used for rounding */ static const double arRound[] = { 5.0e-01, 5.0e-02, 5.0e-03, 5.0e-04, 5.0e-05, 5.0e-06, 5.0e-07, 5.0e-08, 5.0e-09, 5.0e-10, }; /* ** If SQLITE_OMIT_FLOATING_POINT is defined, then none of the floating point ** conversions will work. */ #ifndef SQLITE_OMIT_FLOATING_POINT /* ** "*val" is a double such that 0.1 <= *val < 10.0 ** Return the ascii code for the leading digit of *val, then ** multiply "*val" by 10.0 to renormalize. ** ** Example: ** input: *val = 3.14159 ** output: *val = 1.4159 function return = '3' ** ** The counter *cnt is incremented each time. After counter exceeds ** 16 (the number of significant digits in a 64-bit float) '0' is ** always returned. */ static char et_getdigit(LONGDOUBLE_TYPE *val, int *cnt){ int digit; LONGDOUBLE_TYPE d; if( (*cnt)<=0 ) return '0'; (*cnt)--; digit = (int)*val; d = digit; digit += '0'; *val = (*val - d)*10.0; return (char)digit; } #endif /* SQLITE_OMIT_FLOATING_POINT */ /* ** Set the StrAccum object to an error mode. */ static void setStrAccumError(StrAccum *p, u8 eError){ assert( eError==SQLITE_NOMEM || eError==SQLITE_TOOBIG ); p->accError = eError; if( p->mxAlloc ) sqlite3_str_reset(p); if( eError==SQLITE_TOOBIG ) sqlite3ErrorToParser(p->db, eError); } /* ** Extra argument values from a PrintfArguments object */ static sqlite3_int64 getIntArg(PrintfArguments *p){ if( p->nArg<=p->nUsed ) return 0; return sqlite3_value_int64(p->apArg[p->nUsed++]); } static double getDoubleArg(PrintfArguments *p){ if( p->nArg<=p->nUsed ) return 0.0; return sqlite3_value_double(p->apArg[p->nUsed++]); } static char *getTextArg(PrintfArguments *p){ if( p->nArg<=p->nUsed ) return 0; return (char*)sqlite3_value_text(p->apArg[p->nUsed++]); } /* ** Allocate memory for a temporary buffer needed for printf rendering. ** ** If the requested size of the temp buffer is larger than the size ** of the output buffer in pAccum, then cause an SQLITE_TOOBIG error. ** Do the size check before the memory allocation to prevent rogue ** SQL from requesting large allocations using the precision or width ** field of the printf() function. */ static char *printfTempBuf(sqlite3_str *pAccum, sqlite3_int64 n){ char *z; if( pAccum->accError ) return 0; if( n>pAccum->nAlloc && n>pAccum->mxAlloc ){ setStrAccumError(pAccum, SQLITE_TOOBIG); return 0; } z = sqlite3DbMallocRaw(pAccum->db, n); if( z==0 ){ setStrAccumError(pAccum, SQLITE_NOMEM); } return z; } /* ** On machines with a small stack size, you can redefine the ** SQLITE_PRINT_BUF_SIZE to be something smaller, if desired. */ #ifndef SQLITE_PRINT_BUF_SIZE # define SQLITE_PRINT_BUF_SIZE 70 #endif #define etBUFSIZE SQLITE_PRINT_BUF_SIZE /* Size of the output buffer */ /* ** Hard limit on the precision of floating-point conversions. */ #ifndef SQLITE_PRINTF_PRECISION_LIMIT # define SQLITE_FP_PRECISION_LIMIT 100000000 #endif /* ** Render a string given by "fmt" into the StrAccum object. */ SQLITE_API void sqlite3_str_vappendf( sqlite3_str *pAccum, /* Accumulate results here */ const char *fmt, /* Format string */ va_list ap /* arguments */ ){ int c; /* Next character in the format string */ char *bufpt; /* Pointer to the conversion buffer */ int precision; /* Precision of the current field */ int length; /* Length of the field */ int idx; /* A general purpose loop counter */ int width; /* Width of the current field */ etByte flag_leftjustify; /* True if "-" flag is present */ etByte flag_prefix; /* '+' or ' ' or 0 for prefix */ etByte flag_alternateform; /* True if "#" flag is present */ etByte flag_altform2; /* True if "!" flag is present */ etByte flag_zeropad; /* True if field width constant starts with zero */ etByte flag_long; /* 1 for the "l" flag, 2 for "ll", 0 by default */ etByte done; /* Loop termination flag */ etByte cThousand; /* Thousands separator for %d and %u */ etByte xtype = etINVALID; /* Conversion paradigm */ u8 bArgList; /* True for SQLITE_PRINTF_SQLFUNC */ char prefix; /* Prefix character. "+" or "-" or " " or '\0'. */ sqlite_uint64 longvalue; /* Value for integer types */ LONGDOUBLE_TYPE realvalue; /* Value for real types */ const et_info *infop; /* Pointer to the appropriate info structure */ char *zOut; /* Rendering buffer */ int nOut; /* Size of the rendering buffer */ char *zExtra = 0; /* Malloced memory used by some conversion */ #ifndef SQLITE_OMIT_FLOATING_POINT int exp, e2; /* exponent of real numbers */ int nsd; /* Number of significant digits returned */ double rounder; /* Used for rounding floating point values */ etByte flag_dp; /* True if decimal point should be shown */ etByte flag_rtz; /* True if trailing zeros should be removed */ #endif PrintfArguments *pArgList = 0; /* Arguments for SQLITE_PRINTF_SQLFUNC */ char buf[etBUFSIZE]; /* Conversion buffer */ /* pAccum never starts out with an empty buffer that was obtained from ** malloc(). This precondition is required by the mprintf("%z...") ** optimization. */ assert( pAccum->nChar>0 || (pAccum->printfFlags&SQLITE_PRINTF_MALLOCED)==0 ); bufpt = 0; if( (pAccum->printfFlags & SQLITE_PRINTF_SQLFUNC)!=0 ){ pArgList = va_arg(ap, PrintfArguments*); bArgList = 1; }else{ bArgList = 0; } for(; (c=(*fmt))!=0; ++fmt){ if( c!='%' ){ bufpt = (char *)fmt; #if HAVE_STRCHRNUL fmt = strchrnul(fmt, '%'); #else do{ fmt++; }while( *fmt && *fmt != '%' ); #endif sqlite3_str_append(pAccum, bufpt, (int)(fmt - bufpt)); if( *fmt==0 ) break; } if( (c=(*++fmt))==0 ){ sqlite3_str_append(pAccum, "%", 1); break; } /* Find out what flags are present */ flag_leftjustify = flag_prefix = cThousand = flag_alternateform = flag_altform2 = flag_zeropad = 0; done = 0; width = 0; flag_long = 0; precision = -1; do{ switch( c ){ case '-': flag_leftjustify = 1; break; case '+': flag_prefix = '+'; break; case ' ': flag_prefix = ' '; break; case '#': flag_alternateform = 1; break; case '!': flag_altform2 = 1; break; case '0': flag_zeropad = 1; break; case ',': cThousand = ','; break; default: done = 1; break; case 'l': { flag_long = 1; c = *++fmt; if( c=='l' ){ c = *++fmt; flag_long = 2; } done = 1; break; } case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { unsigned wx = c - '0'; while( (c = *++fmt)>='0' && c<='9' ){ wx = wx*10 + c - '0'; } testcase( wx>0x7fffffff ); width = wx & 0x7fffffff; #ifdef SQLITE_PRINTF_PRECISION_LIMIT if( width>SQLITE_PRINTF_PRECISION_LIMIT ){ width = SQLITE_PRINTF_PRECISION_LIMIT; } #endif if( c!='.' && c!='l' ){ done = 1; }else{ fmt--; } break; } case '*': { if( bArgList ){ width = (int)getIntArg(pArgList); }else{ width = va_arg(ap,int); } if( width<0 ){ flag_leftjustify = 1; width = width >= -2147483647 ? -width : 0; } #ifdef SQLITE_PRINTF_PRECISION_LIMIT if( width>SQLITE_PRINTF_PRECISION_LIMIT ){ width = SQLITE_PRINTF_PRECISION_LIMIT; } #endif if( (c = fmt[1])!='.' && c!='l' ){ c = *++fmt; done = 1; } break; } case '.': { c = *++fmt; if( c=='*' ){ if( bArgList ){ precision = (int)getIntArg(pArgList); }else{ precision = va_arg(ap,int); } if( precision<0 ){ precision = precision >= -2147483647 ? -precision : -1; } c = *++fmt; }else{ unsigned px = 0; while( c>='0' && c<='9' ){ px = px*10 + c - '0'; c = *++fmt; } testcase( px>0x7fffffff ); precision = px & 0x7fffffff; } #ifdef SQLITE_PRINTF_PRECISION_LIMIT if( precision>SQLITE_PRINTF_PRECISION_LIMIT ){ precision = SQLITE_PRINTF_PRECISION_LIMIT; } #endif if( c=='l' ){ --fmt; }else{ done = 1; } break; } } }while( !done && (c=(*++fmt))!=0 ); /* Fetch the info entry for the field */ infop = &fmtinfo[0]; xtype = etINVALID; for(idx=0; idxtype; break; } } /* ** At this point, variables are initialized as follows: ** ** flag_alternateform TRUE if a '#' is present. ** flag_altform2 TRUE if a '!' is present. ** flag_prefix '+' or ' ' or zero ** flag_leftjustify TRUE if a '-' is present or if the ** field width was negative. ** flag_zeropad TRUE if the width began with 0. ** flag_long 1 for "l", 2 for "ll" ** width The specified field width. This is ** always non-negative. Zero is the default. ** precision The specified precision. The default ** is -1. ** xtype The class of the conversion. ** infop Pointer to the appropriate info struct. */ assert( width>=0 ); assert( precision>=(-1) ); switch( xtype ){ case etPOINTER: flag_long = sizeof(char*)==sizeof(i64) ? 2 : sizeof(char*)==sizeof(long int) ? 1 : 0; /* no break */ deliberate_fall_through case etORDINAL: case etRADIX: cThousand = 0; /* no break */ deliberate_fall_through case etDECIMAL: if( infop->flags & FLAG_SIGNED ){ i64 v; if( bArgList ){ v = getIntArg(pArgList); }else if( flag_long ){ if( flag_long==2 ){ v = va_arg(ap,i64) ; }else{ v = va_arg(ap,long int); } }else{ v = va_arg(ap,int); } if( v<0 ){ if( v==SMALLEST_INT64 ){ longvalue = ((u64)1)<<63; }else{ longvalue = -v; } prefix = '-'; }else{ longvalue = v; prefix = flag_prefix; } }else{ if( bArgList ){ longvalue = (u64)getIntArg(pArgList); }else if( flag_long ){ if( flag_long==2 ){ longvalue = va_arg(ap,u64); }else{ longvalue = va_arg(ap,unsigned long int); } }else{ longvalue = va_arg(ap,unsigned int); } prefix = 0; } if( longvalue==0 ) flag_alternateform = 0; if( flag_zeropad && precision=4 || (longvalue/10)%10==1 ){ x = 0; } *(--bufpt) = zOrd[x*2+1]; *(--bufpt) = zOrd[x*2]; } { const char *cset = &aDigits[infop->charset]; u8 base = infop->base; do{ /* Convert to ascii */ *(--bufpt) = cset[longvalue%base]; longvalue = longvalue/base; }while( longvalue>0 ); } length = (int)(&zOut[nOut-1]-bufpt); while( precision>length ){ *(--bufpt) = '0'; /* Zero pad */ length++; } if( cThousand ){ int nn = (length - 1)/3; /* Number of "," to insert */ int ix = (length - 1)%3 + 1; bufpt -= nn; for(idx=0; nn>0; idx++){ bufpt[idx] = bufpt[idx+nn]; ix--; if( ix==0 ){ bufpt[++idx] = cThousand; nn--; ix = 3; } } } if( prefix ) *(--bufpt) = prefix; /* Add sign */ if( flag_alternateform && infop->prefix ){ /* Add "0" or "0x" */ const char *pre; char x; pre = &aPrefix[infop->prefix]; for(; (x=(*pre))!=0; pre++) *(--bufpt) = x; } length = (int)(&zOut[nOut-1]-bufpt); break; case etFLOAT: case etEXP: case etGENERIC: if( bArgList ){ realvalue = getDoubleArg(pArgList); }else{ realvalue = va_arg(ap,double); } #ifdef SQLITE_OMIT_FLOATING_POINT length = 0; #else if( precision<0 ) precision = 6; /* Set default precision */ #ifdef SQLITE_FP_PRECISION_LIMIT if( precision>SQLITE_FP_PRECISION_LIMIT ){ precision = SQLITE_FP_PRECISION_LIMIT; } #endif if( realvalue<0.0 ){ realvalue = -realvalue; prefix = '-'; }else{ prefix = flag_prefix; } if( xtype==etGENERIC && precision>0 ) precision--; testcase( precision>0xfff ); idx = precision & 0xfff; rounder = arRound[idx%10]; while( idx>=10 ){ rounder *= 1.0e-10; idx -= 10; } if( xtype==etFLOAT ){ double rx = (double)realvalue; sqlite3_uint64 u; int ex; memcpy(&u, &rx, sizeof(u)); ex = -1023 + (int)((u>>52)&0x7ff); if( precision+(ex/3) < 15 ) rounder += realvalue*3e-16; realvalue += rounder; } /* Normalize realvalue to within 10.0 > realvalue >= 1.0 */ exp = 0; if( sqlite3IsNaN((double)realvalue) ){ bufpt = "NaN"; length = 3; break; } if( realvalue>0.0 ){ LONGDOUBLE_TYPE scale = 1.0; while( realvalue>=1e100*scale && exp<=350 ){ scale *= 1e100;exp+=100;} while( realvalue>=1e10*scale && exp<=350 ){ scale *= 1e10; exp+=10; } while( realvalue>=10.0*scale && exp<=350 ){ scale *= 10.0; exp++; } realvalue /= scale; while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; } while( realvalue<1.0 ){ realvalue *= 10.0; exp--; } if( exp>350 ){ bufpt = buf; buf[0] = prefix; memcpy(buf+(prefix!=0),"Inf",4); length = 3+(prefix!=0); break; } } bufpt = buf; /* ** If the field type is etGENERIC, then convert to either etEXP ** or etFLOAT, as appropriate. */ if( xtype!=etFLOAT ){ realvalue += rounder; if( realvalue>=10.0 ){ realvalue *= 0.1; exp++; } } if( xtype==etGENERIC ){ flag_rtz = !flag_alternateform; if( exp<-4 || exp>precision ){ xtype = etEXP; }else{ precision = precision - exp; xtype = etFLOAT; } }else{ flag_rtz = flag_altform2; } if( xtype==etEXP ){ e2 = 0; }else{ e2 = exp; } { i64 szBufNeeded; /* Size of a temporary buffer needed */ szBufNeeded = MAX(e2,0)+(i64)precision+(i64)width+15; if( szBufNeeded > etBUFSIZE ){ bufpt = zExtra = printfTempBuf(pAccum, szBufNeeded); if( bufpt==0 ) return; } } zOut = bufpt; nsd = 16 + flag_altform2*10; flag_dp = (precision>0 ?1:0) | flag_alternateform | flag_altform2; /* The sign in front of the number */ if( prefix ){ *(bufpt++) = prefix; } /* Digits prior to the decimal point */ if( e2<0 ){ *(bufpt++) = '0'; }else{ for(; e2>=0; e2--){ *(bufpt++) = et_getdigit(&realvalue,&nsd); } } /* The decimal point */ if( flag_dp ){ *(bufpt++) = '.'; } /* "0" digits after the decimal point but before the first ** significant digit of the number */ for(e2++; e2<0; precision--, e2++){ assert( precision>0 ); *(bufpt++) = '0'; } /* Significant digits after the decimal point */ while( (precision--)>0 ){ *(bufpt++) = et_getdigit(&realvalue,&nsd); } /* Remove trailing zeros and the "." if no digits follow the "." */ if( flag_rtz && flag_dp ){ while( bufpt[-1]=='0' ) *(--bufpt) = 0; assert( bufpt>zOut ); if( bufpt[-1]=='.' ){ if( flag_altform2 ){ *(bufpt++) = '0'; }else{ *(--bufpt) = 0; } } } /* Add the "eNNN" suffix */ if( xtype==etEXP ){ *(bufpt++) = aDigits[infop->charset]; if( exp<0 ){ *(bufpt++) = '-'; exp = -exp; }else{ *(bufpt++) = '+'; } if( exp>=100 ){ *(bufpt++) = (char)((exp/100)+'0'); /* 100's digit */ exp %= 100; } *(bufpt++) = (char)(exp/10+'0'); /* 10's digit */ *(bufpt++) = (char)(exp%10+'0'); /* 1's digit */ } *bufpt = 0; /* The converted number is in buf[] and zero terminated. Output it. ** Note that the number is in the usual order, not reversed as with ** integer conversions. */ length = (int)(bufpt-zOut); bufpt = zOut; /* Special case: Add leading zeros if the flag_zeropad flag is ** set and we are not left justified */ if( flag_zeropad && !flag_leftjustify && length < width){ int i; int nPad = width - length; for(i=width; i>=nPad; i--){ bufpt[i] = bufpt[i-nPad]; } i = prefix!=0; while( nPad-- ) bufpt[i++] = '0'; length = width; } #endif /* !defined(SQLITE_OMIT_FLOATING_POINT) */ break; case etSIZE: if( !bArgList ){ *(va_arg(ap,int*)) = pAccum->nChar; } length = width = 0; break; case etPERCENT: buf[0] = '%'; bufpt = buf; length = 1; break; case etCHARX: if( bArgList ){ bufpt = getTextArg(pArgList); length = 1; if( bufpt ){ buf[0] = c = *(bufpt++); if( (c&0xc0)==0xc0 ){ while( length<4 && (bufpt[0]&0xc0)==0x80 ){ buf[length++] = *(bufpt++); } } }else{ buf[0] = 0; } }else{ unsigned int ch = va_arg(ap,unsigned int); if( ch<0x00080 ){ buf[0] = ch & 0xff; length = 1; }else if( ch<0x00800 ){ buf[0] = 0xc0 + (u8)((ch>>6)&0x1f); buf[1] = 0x80 + (u8)(ch & 0x3f); length = 2; }else if( ch<0x10000 ){ buf[0] = 0xe0 + (u8)((ch>>12)&0x0f); buf[1] = 0x80 + (u8)((ch>>6) & 0x3f); buf[2] = 0x80 + (u8)(ch & 0x3f); length = 3; }else{ buf[0] = 0xf0 + (u8)((ch>>18) & 0x07); buf[1] = 0x80 + (u8)((ch>>12) & 0x3f); buf[2] = 0x80 + (u8)((ch>>6) & 0x3f); buf[3] = 0x80 + (u8)(ch & 0x3f); length = 4; } } if( precision>1 ){ width -= precision-1; if( width>1 && !flag_leftjustify ){ sqlite3_str_appendchar(pAccum, width-1, ' '); width = 0; } while( precision-- > 1 ){ sqlite3_str_append(pAccum, buf, length); } } bufpt = buf; flag_altform2 = 1; goto adjust_width_for_utf8; case etSTRING: case etDYNSTRING: if( bArgList ){ bufpt = getTextArg(pArgList); xtype = etSTRING; }else{ bufpt = va_arg(ap,char*); } if( bufpt==0 ){ bufpt = ""; }else if( xtype==etDYNSTRING ){ if( pAccum->nChar==0 && pAccum->mxAlloc && width==0 && precision<0 && pAccum->accError==0 ){ /* Special optimization for sqlite3_mprintf("%z..."): ** Extend an existing memory allocation rather than creating ** a new one. */ assert( (pAccum->printfFlags&SQLITE_PRINTF_MALLOCED)==0 ); pAccum->zText = bufpt; pAccum->nAlloc = sqlite3DbMallocSize(pAccum->db, bufpt); pAccum->nChar = 0x7fffffff & (int)strlen(bufpt); pAccum->printfFlags |= SQLITE_PRINTF_MALLOCED; length = 0; break; } zExtra = bufpt; } if( precision>=0 ){ if( flag_altform2 ){ /* Set length to the number of bytes needed in order to display ** precision characters */ unsigned char *z = (unsigned char*)bufpt; while( precision-- > 0 && z[0] ){ SQLITE_SKIP_UTF8(z); } length = (int)(z - (unsigned char*)bufpt); }else{ for(length=0; length0 ){ /* Adjust width to account for extra bytes in UTF-8 characters */ int ii = length - 1; while( ii>=0 ) if( (bufpt[ii--] & 0xc0)==0x80 ) width++; } break; case etSQLESCAPE: /* %q: Escape ' characters */ case etSQLESCAPE2: /* %Q: Escape ' and enclose in '...' */ case etSQLESCAPE3: { /* %w: Escape " characters */ int i, j, k, n, isnull; int needQuote; char ch; char q = ((xtype==etSQLESCAPE3)?'"':'\''); /* Quote character */ char *escarg; if( bArgList ){ escarg = getTextArg(pArgList); }else{ escarg = va_arg(ap,char*); } isnull = escarg==0; if( isnull ) escarg = (xtype==etSQLESCAPE2 ? "NULL" : "(NULL)"); /* For %q, %Q, and %w, the precision is the number of bytes (or ** characters if the ! flags is present) to use from the input. ** Because of the extra quoting characters inserted, the number ** of output characters may be larger than the precision. */ k = precision; for(i=n=0; k!=0 && (ch=escarg[i])!=0; i++, k--){ if( ch==q ) n++; if( flag_altform2 && (ch&0xc0)==0xc0 ){ while( (escarg[i+1]&0xc0)==0x80 ){ i++; } } } needQuote = !isnull && xtype==etSQLESCAPE2; n += i + 3; if( n>etBUFSIZE ){ bufpt = zExtra = printfTempBuf(pAccum, n); if( bufpt==0 ) return; }else{ bufpt = buf; } j = 0; if( needQuote ) bufpt[j++] = q; k = i; for(i=0; iprintfFlags & SQLITE_PRINTF_INTERNAL)==0 ) return; pToken = va_arg(ap, Token*); assert( bArgList==0 ); if( pToken && pToken->n ){ sqlite3_str_append(pAccum, (const char*)pToken->z, pToken->n); } length = width = 0; break; } case etSRCLIST: { SrcList *pSrc; int k; struct SrcList_item *pItem; if( (pAccum->printfFlags & SQLITE_PRINTF_INTERNAL)==0 ) return; pSrc = va_arg(ap, SrcList*); k = va_arg(ap, int); pItem = &pSrc->a[k]; assert( bArgList==0 ); assert( k>=0 && knSrc ); if( pItem->zDatabase ){ sqlite3_str_appendall(pAccum, pItem->zDatabase); sqlite3_str_append(pAccum, ".", 1); } sqlite3_str_appendall(pAccum, pItem->zName); length = width = 0; break; } default: { assert( xtype==etINVALID ); return; } }/* End switch over the format type */ /* ** The text of the conversion is pointed to by "bufpt" and is ** "length" characters long. The field width is "width". Do ** the output. Both length and width are in bytes, not characters, ** at this point. If the "!" flag was present on string conversions ** indicating that width and precision should be expressed in characters, ** then the values have been translated prior to reaching this point. */ width -= length; if( width>0 ){ if( !flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); sqlite3_str_append(pAccum, bufpt, length); if( flag_leftjustify ) sqlite3_str_appendchar(pAccum, width, ' '); }else{ sqlite3_str_append(pAccum, bufpt, length); } if( zExtra ){ sqlite3DbFree(pAccum->db, zExtra); zExtra = 0; } }/* End for loop over the format string */ } /* End of function */ /* ** Enlarge the memory allocation on a StrAccum object so that it is ** able to accept at least N more bytes of text. ** ** Return the number of bytes of text that StrAccum is able to accept ** after the attempted enlargement. The value returned might be zero. */ static int sqlite3StrAccumEnlarge(StrAccum *p, int N){ char *zNew; assert( p->nChar+(i64)N >= p->nAlloc ); /* Only called if really needed */ if( p->accError ){ testcase(p->accError==SQLITE_TOOBIG); testcase(p->accError==SQLITE_NOMEM); return 0; } if( p->mxAlloc==0 ){ setStrAccumError(p, SQLITE_TOOBIG); return p->nAlloc - p->nChar - 1; }else{ char *zOld = isMalloced(p) ? p->zText : 0; i64 szNew = p->nChar; szNew += N + 1; if( szNew+p->nChar<=p->mxAlloc ){ /* Force exponential buffer size growth as long as it does not overflow, ** to avoid having to call this routine too often */ szNew += p->nChar; } if( szNew > p->mxAlloc ){ sqlite3_str_reset(p); setStrAccumError(p, SQLITE_TOOBIG); return 0; }else{ p->nAlloc = (int)szNew; } if( p->db ){ zNew = sqlite3DbRealloc(p->db, zOld, p->nAlloc); }else{ zNew = sqlite3Realloc(zOld, p->nAlloc); } if( zNew ){ assert( p->zText!=0 || p->nChar==0 ); if( !isMalloced(p) && p->nChar>0 ) memcpy(zNew, p->zText, p->nChar); p->zText = zNew; p->nAlloc = sqlite3DbMallocSize(p->db, zNew); p->printfFlags |= SQLITE_PRINTF_MALLOCED; }else{ sqlite3_str_reset(p); setStrAccumError(p, SQLITE_NOMEM); return 0; } } return N; } /* ** Append N copies of character c to the given string buffer. */ SQLITE_API void sqlite3_str_appendchar(sqlite3_str *p, int N, char c){ testcase( p->nChar + (i64)N > 0x7fffffff ); if( p->nChar+(i64)N >= p->nAlloc && (N = sqlite3StrAccumEnlarge(p, N))<=0 ){ return; } while( (N--)>0 ) p->zText[p->nChar++] = c; } /* ** The StrAccum "p" is not large enough to accept N new bytes of z[]. ** So enlarge if first, then do the append. ** ** This is a helper routine to sqlite3_str_append() that does special-case ** work (enlarging the buffer) using tail recursion, so that the ** sqlite3_str_append() routine can use fast calling semantics. */ static void SQLITE_NOINLINE enlargeAndAppend(StrAccum *p, const char *z, int N){ N = sqlite3StrAccumEnlarge(p, N); if( N>0 ){ memcpy(&p->zText[p->nChar], z, N); p->nChar += N; } } /* ** Append N bytes of text from z to the StrAccum object. Increase the ** size of the memory allocation for StrAccum if necessary. */ SQLITE_API void sqlite3_str_append(sqlite3_str *p, const char *z, int N){ assert( z!=0 || N==0 ); assert( p->zText!=0 || p->nChar==0 || p->accError ); assert( N>=0 ); assert( p->accError==0 || p->nAlloc==0 || p->mxAlloc==0 ); if( p->nChar+N >= p->nAlloc ){ enlargeAndAppend(p,z,N); }else if( N ){ assert( p->zText ); p->nChar += N; memcpy(&p->zText[p->nChar-N], z, N); } } /* ** Append the complete text of zero-terminated string z[] to the p string. */ SQLITE_API void sqlite3_str_appendall(sqlite3_str *p, const char *z){ sqlite3_str_append(p, z, sqlite3Strlen30(z)); } /* ** Finish off a string by making sure it is zero-terminated. ** Return a pointer to the resulting string. Return a NULL ** pointer if any kind of error was encountered. */ static SQLITE_NOINLINE char *strAccumFinishRealloc(StrAccum *p){ char *zText; assert( p->mxAlloc>0 && !isMalloced(p) ); zText = sqlite3DbMallocRaw(p->db, p->nChar+1 ); if( zText ){ memcpy(zText, p->zText, p->nChar+1); p->printfFlags |= SQLITE_PRINTF_MALLOCED; }else{ setStrAccumError(p, SQLITE_NOMEM); } p->zText = zText; return zText; } SQLITE_PRIVATE char *sqlite3StrAccumFinish(StrAccum *p){ if( p->zText ){ p->zText[p->nChar] = 0; if( p->mxAlloc>0 && !isMalloced(p) ){ return strAccumFinishRealloc(p); } } return p->zText; } /* ** This singleton is an sqlite3_str object that is returned if ** sqlite3_malloc() fails to provide space for a real one. This ** sqlite3_str object accepts no new text and always returns ** an SQLITE_NOMEM error. */ static sqlite3_str sqlite3OomStr = { 0, 0, 0, 0, 0, SQLITE_NOMEM, 0 }; /* Finalize a string created using sqlite3_str_new(). */ SQLITE_API char *sqlite3_str_finish(sqlite3_str *p){ char *z; if( p!=0 && p!=&sqlite3OomStr ){ z = sqlite3StrAccumFinish(p); sqlite3_free(p); }else{ z = 0; } return z; } /* Return any error code associated with p */ SQLITE_API int sqlite3_str_errcode(sqlite3_str *p){ return p ? p->accError : SQLITE_NOMEM; } /* Return the current length of p in bytes */ SQLITE_API int sqlite3_str_length(sqlite3_str *p){ return p ? p->nChar : 0; } /* Return the current value for p */ SQLITE_API char *sqlite3_str_value(sqlite3_str *p){ if( p==0 || p->nChar==0 ) return 0; p->zText[p->nChar] = 0; return p->zText; } /* ** Reset an StrAccum string. Reclaim all malloced memory. */ SQLITE_API void sqlite3_str_reset(StrAccum *p){ if( isMalloced(p) ){ sqlite3DbFree(p->db, p->zText); p->printfFlags &= ~SQLITE_PRINTF_MALLOCED; } p->nAlloc = 0; p->nChar = 0; p->zText = 0; } /* ** Initialize a string accumulator. ** ** p: The accumulator to be initialized. ** db: Pointer to a database connection. May be NULL. Lookaside ** memory is used if not NULL. db->mallocFailed is set appropriately ** when not NULL. ** zBase: An initial buffer. May be NULL in which case the initial buffer ** is malloced. ** n: Size of zBase in bytes. If total space requirements never exceed ** n then no memory allocations ever occur. ** mx: Maximum number of bytes to accumulate. If mx==0 then no memory ** allocations will ever occur. */ SQLITE_PRIVATE void sqlite3StrAccumInit(StrAccum *p, sqlite3 *db, char *zBase, int n, int mx){ p->zText = zBase; p->db = db; p->nAlloc = n; p->mxAlloc = mx; p->nChar = 0; p->accError = 0; p->printfFlags = 0; } /* Allocate and initialize a new dynamic string object */ SQLITE_API sqlite3_str *sqlite3_str_new(sqlite3 *db){ sqlite3_str *p = sqlite3_malloc64(sizeof(*p)); if( p ){ sqlite3StrAccumInit(p, 0, 0, 0, db ? db->aLimit[SQLITE_LIMIT_LENGTH] : SQLITE_MAX_LENGTH); }else{ p = &sqlite3OomStr; } return p; } /* ** Print into memory obtained from sqliteMalloc(). Use the internal ** %-conversion extensions. */ SQLITE_PRIVATE char *sqlite3VMPrintf(sqlite3 *db, const char *zFormat, va_list ap){ char *z; char zBase[SQLITE_PRINT_BUF_SIZE]; StrAccum acc; assert( db!=0 ); sqlite3StrAccumInit(&acc, db, zBase, sizeof(zBase), db->aLimit[SQLITE_LIMIT_LENGTH]); acc.printfFlags = SQLITE_PRINTF_INTERNAL; sqlite3_str_vappendf(&acc, zFormat, ap); z = sqlite3StrAccumFinish(&acc); if( acc.accError==SQLITE_NOMEM ){ sqlite3OomFault(db); } return z; } /* ** Print into memory obtained from sqliteMalloc(). Use the internal ** %-conversion extensions. */ SQLITE_PRIVATE char *sqlite3MPrintf(sqlite3 *db, const char *zFormat, ...){ va_list ap; char *z; va_start(ap, zFormat); z = sqlite3VMPrintf(db, zFormat, ap); va_end(ap); return z; } /* ** Print into memory obtained from sqlite3_malloc(). Omit the internal ** %-conversion extensions. */ SQLITE_API char *sqlite3_vmprintf(const char *zFormat, va_list ap){ char *z; char zBase[SQLITE_PRINT_BUF_SIZE]; StrAccum acc; #ifdef SQLITE_ENABLE_API_ARMOR if( zFormat==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif sqlite3StrAccumInit(&acc, 0, zBase, sizeof(zBase), SQLITE_MAX_LENGTH); sqlite3_str_vappendf(&acc, zFormat, ap); z = sqlite3StrAccumFinish(&acc); return z; } /* ** Print into memory obtained from sqlite3_malloc()(). Omit the internal ** %-conversion extensions. */ SQLITE_API char *sqlite3_mprintf(const char *zFormat, ...){ va_list ap; char *z; #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif va_start(ap, zFormat); z = sqlite3_vmprintf(zFormat, ap); va_end(ap); return z; } /* ** sqlite3_snprintf() works like snprintf() except that it ignores the ** current locale settings. This is important for SQLite because we ** are not able to use a "," as the decimal point in place of "." as ** specified by some locales. ** ** Oops: The first two arguments of sqlite3_snprintf() are backwards ** from the snprintf() standard. Unfortunately, it is too late to change ** this without breaking compatibility, so we just have to live with the ** mistake. ** ** sqlite3_vsnprintf() is the varargs version. */ SQLITE_API char *sqlite3_vsnprintf(int n, char *zBuf, const char *zFormat, va_list ap){ StrAccum acc; if( n<=0 ) return zBuf; #ifdef SQLITE_ENABLE_API_ARMOR if( zBuf==0 || zFormat==0 ) { (void)SQLITE_MISUSE_BKPT; if( zBuf ) zBuf[0] = 0; return zBuf; } #endif sqlite3StrAccumInit(&acc, 0, zBuf, n, 0); sqlite3_str_vappendf(&acc, zFormat, ap); zBuf[acc.nChar] = 0; return zBuf; } SQLITE_API char *sqlite3_snprintf(int n, char *zBuf, const char *zFormat, ...){ char *z; va_list ap; va_start(ap,zFormat); z = sqlite3_vsnprintf(n, zBuf, zFormat, ap); va_end(ap); return z; } /* ** This is the routine that actually formats the sqlite3_log() message. ** We house it in a separate routine from sqlite3_log() to avoid using ** stack space on small-stack systems when logging is disabled. ** ** sqlite3_log() must render into a static buffer. It cannot dynamically ** allocate memory because it might be called while the memory allocator ** mutex is held. ** ** sqlite3_str_vappendf() might ask for *temporary* memory allocations for ** certain format characters (%q) or for very large precisions or widths. ** Care must be taken that any sqlite3_log() calls that occur while the ** memory mutex is held do not use these mechanisms. */ static void renderLogMsg(int iErrCode, const char *zFormat, va_list ap){ StrAccum acc; /* String accumulator */ char zMsg[SQLITE_PRINT_BUF_SIZE*3]; /* Complete log message */ sqlite3StrAccumInit(&acc, 0, zMsg, sizeof(zMsg), 0); sqlite3_str_vappendf(&acc, zFormat, ap); sqlite3GlobalConfig.xLog(sqlite3GlobalConfig.pLogArg, iErrCode, sqlite3StrAccumFinish(&acc)); } /* ** Format and write a message to the log if logging is enabled. */ SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...){ va_list ap; /* Vararg list */ if( sqlite3GlobalConfig.xLog ){ va_start(ap, zFormat); renderLogMsg(iErrCode, zFormat, ap); va_end(ap); } } #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) /* ** A version of printf() that understands %lld. Used for debugging. ** The printf() built into some versions of windows does not understand %lld ** and segfaults if you give it a long long int. */ SQLITE_PRIVATE void sqlite3DebugPrintf(const char *zFormat, ...){ va_list ap; StrAccum acc; char zBuf[SQLITE_PRINT_BUF_SIZE*10]; sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); va_start(ap,zFormat); sqlite3_str_vappendf(&acc, zFormat, ap); va_end(ap); sqlite3StrAccumFinish(&acc); #ifdef SQLITE_OS_TRACE_PROC { extern void SQLITE_OS_TRACE_PROC(const char *zBuf, int nBuf); SQLITE_OS_TRACE_PROC(zBuf, sizeof(zBuf)); } #else fprintf(stdout,"%s", zBuf); fflush(stdout); #endif } #endif /* ** variable-argument wrapper around sqlite3_str_vappendf(). The bFlags argument ** can contain the bit SQLITE_PRINTF_INTERNAL enable internal formats. */ SQLITE_API void sqlite3_str_appendf(StrAccum *p, const char *zFormat, ...){ va_list ap; va_start(ap,zFormat); sqlite3_str_vappendf(p, zFormat, ap); va_end(ap); } /************** End of printf.c **********************************************/ /************** Begin file treeview.c ****************************************/ /* ** 2015-06-08 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains C code to implement the TreeView debugging routines. ** These routines print a parse tree to standard output for debugging and ** analysis. ** ** The interfaces in this file is only available when compiling ** with SQLITE_DEBUG. */ /* #include "sqliteInt.h" */ #ifdef SQLITE_DEBUG /* ** Add a new subitem to the tree. The moreToFollow flag indicates that this ** is not the last item in the tree. */ static TreeView *sqlite3TreeViewPush(TreeView *p, u8 moreToFollow){ if( p==0 ){ p = sqlite3_malloc64( sizeof(*p) ); if( p==0 ) return 0; memset(p, 0, sizeof(*p)); }else{ p->iLevel++; } assert( moreToFollow==0 || moreToFollow==1 ); if( p->iLevelbLine) ) p->bLine[p->iLevel] = moreToFollow; return p; } /* ** Finished with one layer of the tree */ static void sqlite3TreeViewPop(TreeView *p){ if( p==0 ) return; p->iLevel--; if( p->iLevel<0 ) sqlite3_free(p); } /* ** Generate a single line of output for the tree, with a prefix that contains ** all the appropriate tree lines */ static void sqlite3TreeViewLine(TreeView *p, const char *zFormat, ...){ va_list ap; int i; StrAccum acc; char zBuf[500]; sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); if( p ){ for(i=0; iiLevel && ibLine)-1; i++){ sqlite3_str_append(&acc, p->bLine[i] ? "| " : " ", 4); } sqlite3_str_append(&acc, p->bLine[i] ? "|-- " : "'-- ", 4); } if( zFormat!=0 ){ va_start(ap, zFormat); sqlite3_str_vappendf(&acc, zFormat, ap); va_end(ap); assert( acc.nChar>0 || acc.accError ); sqlite3_str_append(&acc, "\n", 1); } sqlite3StrAccumFinish(&acc); fprintf(stdout,"%s", zBuf); fflush(stdout); } /* ** Shorthand for starting a new tree item that consists of a single label */ static void sqlite3TreeViewItem(TreeView *p, const char *zLabel,u8 moreFollows){ p = sqlite3TreeViewPush(p, moreFollows); sqlite3TreeViewLine(p, "%s", zLabel); } /* ** Generate a human-readable description of a WITH clause. */ SQLITE_PRIVATE void sqlite3TreeViewWith(TreeView *pView, const With *pWith, u8 moreToFollow){ int i; if( pWith==0 ) return; if( pWith->nCte==0 ) return; if( pWith->pOuter ){ sqlite3TreeViewLine(pView, "WITH (0x%p, pOuter=0x%p)",pWith,pWith->pOuter); }else{ sqlite3TreeViewLine(pView, "WITH (0x%p)", pWith); } if( pWith->nCte>0 ){ pView = sqlite3TreeViewPush(pView, 1); for(i=0; inCte; i++){ StrAccum x; char zLine[1000]; const struct Cte *pCte = &pWith->a[i]; sqlite3StrAccumInit(&x, 0, zLine, sizeof(zLine), 0); sqlite3_str_appendf(&x, "%s", pCte->zName); if( pCte->pCols && pCte->pCols->nExpr>0 ){ char cSep = '('; int j; for(j=0; jpCols->nExpr; j++){ sqlite3_str_appendf(&x, "%c%s", cSep, pCte->pCols->a[j].zEName); cSep = ','; } sqlite3_str_appendf(&x, ")"); } sqlite3_str_appendf(&x, " AS"); sqlite3StrAccumFinish(&x); sqlite3TreeViewItem(pView, zLine, inCte-1); sqlite3TreeViewSelect(pView, pCte->pSelect, 0); sqlite3TreeViewPop(pView); } sqlite3TreeViewPop(pView); } } /* ** Generate a human-readable description of a SrcList object. */ SQLITE_PRIVATE void sqlite3TreeViewSrcList(TreeView *pView, const SrcList *pSrc){ int i; for(i=0; inSrc; i++){ const struct SrcList_item *pItem = &pSrc->a[i]; StrAccum x; char zLine[100]; sqlite3StrAccumInit(&x, 0, zLine, sizeof(zLine), 0); sqlite3_str_appendf(&x, "{%d:*}", pItem->iCursor); if( pItem->zDatabase ){ sqlite3_str_appendf(&x, " %s.%s", pItem->zDatabase, pItem->zName); }else if( pItem->zName ){ sqlite3_str_appendf(&x, " %s", pItem->zName); } if( pItem->pTab ){ sqlite3_str_appendf(&x, " tab=%Q nCol=%d ptr=%p used=%llx", pItem->pTab->zName, pItem->pTab->nCol, pItem->pTab, pItem->colUsed); } if( pItem->zAlias ){ sqlite3_str_appendf(&x, " (AS %s)", pItem->zAlias); } if( pItem->fg.jointype & JT_LEFT ){ sqlite3_str_appendf(&x, " LEFT-JOIN"); } if( pItem->fg.fromDDL ){ sqlite3_str_appendf(&x, " DDL"); } sqlite3StrAccumFinish(&x); sqlite3TreeViewItem(pView, zLine, inSrc-1); if( pItem->pSelect ){ sqlite3TreeViewSelect(pView, pItem->pSelect, 0); } if( pItem->fg.isTabFunc ){ sqlite3TreeViewExprList(pView, pItem->u1.pFuncArg, 0, "func-args:"); } sqlite3TreeViewPop(pView); } } /* ** Generate a human-readable description of a Select object. */ SQLITE_PRIVATE void sqlite3TreeViewSelect(TreeView *pView, const Select *p, u8 moreToFollow){ int n = 0; int cnt = 0; if( p==0 ){ sqlite3TreeViewLine(pView, "nil-SELECT"); return; } pView = sqlite3TreeViewPush(pView, moreToFollow); if( p->pWith ){ sqlite3TreeViewWith(pView, p->pWith, 1); cnt = 1; sqlite3TreeViewPush(pView, 1); } do{ if( p->selFlags & SF_WhereBegin ){ sqlite3TreeViewLine(pView, "sqlite3WhereBegin()"); }else{ sqlite3TreeViewLine(pView, "SELECT%s%s (%u/%p) selFlags=0x%x nSelectRow=%d", ((p->selFlags & SF_Distinct) ? " DISTINCT" : ""), ((p->selFlags & SF_Aggregate) ? " agg_flag" : ""), p->selId, p, p->selFlags, (int)p->nSelectRow ); } if( cnt++ ) sqlite3TreeViewPop(pView); if( p->pPrior ){ n = 1000; }else{ n = 0; if( p->pSrc && p->pSrc->nSrc ) n++; if( p->pWhere ) n++; if( p->pGroupBy ) n++; if( p->pHaving ) n++; if( p->pOrderBy ) n++; if( p->pLimit ) n++; #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWin ) n++; if( p->pWinDefn ) n++; #endif } if( p->pEList ){ sqlite3TreeViewExprList(pView, p->pEList, n>0, "result-set"); } n--; #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWin ){ Window *pX; pView = sqlite3TreeViewPush(pView, (n--)>0); sqlite3TreeViewLine(pView, "window-functions"); for(pX=p->pWin; pX; pX=pX->pNextWin){ sqlite3TreeViewWinFunc(pView, pX, pX->pNextWin!=0); } sqlite3TreeViewPop(pView); } #endif if( p->pSrc && p->pSrc->nSrc ){ pView = sqlite3TreeViewPush(pView, (n--)>0); sqlite3TreeViewLine(pView, "FROM"); sqlite3TreeViewSrcList(pView, p->pSrc); sqlite3TreeViewPop(pView); } if( p->pWhere ){ sqlite3TreeViewItem(pView, "WHERE", (n--)>0); sqlite3TreeViewExpr(pView, p->pWhere, 0); sqlite3TreeViewPop(pView); } if( p->pGroupBy ){ sqlite3TreeViewExprList(pView, p->pGroupBy, (n--)>0, "GROUPBY"); } if( p->pHaving ){ sqlite3TreeViewItem(pView, "HAVING", (n--)>0); sqlite3TreeViewExpr(pView, p->pHaving, 0); sqlite3TreeViewPop(pView); } #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWinDefn ){ Window *pX; sqlite3TreeViewItem(pView, "WINDOW", (n--)>0); for(pX=p->pWinDefn; pX; pX=pX->pNextWin){ sqlite3TreeViewWindow(pView, pX, pX->pNextWin!=0); } sqlite3TreeViewPop(pView); } #endif if( p->pOrderBy ){ sqlite3TreeViewExprList(pView, p->pOrderBy, (n--)>0, "ORDERBY"); } if( p->pLimit ){ sqlite3TreeViewItem(pView, "LIMIT", (n--)>0); sqlite3TreeViewExpr(pView, p->pLimit->pLeft, p->pLimit->pRight!=0); if( p->pLimit->pRight ){ sqlite3TreeViewItem(pView, "OFFSET", (n--)>0); sqlite3TreeViewExpr(pView, p->pLimit->pRight, 0); sqlite3TreeViewPop(pView); } sqlite3TreeViewPop(pView); } if( p->pPrior ){ const char *zOp = "UNION"; switch( p->op ){ case TK_ALL: zOp = "UNION ALL"; break; case TK_INTERSECT: zOp = "INTERSECT"; break; case TK_EXCEPT: zOp = "EXCEPT"; break; } sqlite3TreeViewItem(pView, zOp, 1); } p = p->pPrior; }while( p!=0 ); sqlite3TreeViewPop(pView); } #ifndef SQLITE_OMIT_WINDOWFUNC /* ** Generate a description of starting or stopping bounds */ SQLITE_PRIVATE void sqlite3TreeViewBound( TreeView *pView, /* View context */ u8 eBound, /* UNBOUNDED, CURRENT, PRECEDING, FOLLOWING */ Expr *pExpr, /* Value for PRECEDING or FOLLOWING */ u8 moreToFollow /* True if more to follow */ ){ switch( eBound ){ case TK_UNBOUNDED: { sqlite3TreeViewItem(pView, "UNBOUNDED", moreToFollow); sqlite3TreeViewPop(pView); break; } case TK_CURRENT: { sqlite3TreeViewItem(pView, "CURRENT", moreToFollow); sqlite3TreeViewPop(pView); break; } case TK_PRECEDING: { sqlite3TreeViewItem(pView, "PRECEDING", moreToFollow); sqlite3TreeViewExpr(pView, pExpr, 0); sqlite3TreeViewPop(pView); break; } case TK_FOLLOWING: { sqlite3TreeViewItem(pView, "FOLLOWING", moreToFollow); sqlite3TreeViewExpr(pView, pExpr, 0); sqlite3TreeViewPop(pView); break; } } } #endif /* SQLITE_OMIT_WINDOWFUNC */ #ifndef SQLITE_OMIT_WINDOWFUNC /* ** Generate a human-readable explanation for a Window object */ SQLITE_PRIVATE void sqlite3TreeViewWindow(TreeView *pView, const Window *pWin, u8 more){ int nElement = 0; if( pWin->pFilter ){ sqlite3TreeViewItem(pView, "FILTER", 1); sqlite3TreeViewExpr(pView, pWin->pFilter, 0); sqlite3TreeViewPop(pView); } pView = sqlite3TreeViewPush(pView, more); if( pWin->zName ){ sqlite3TreeViewLine(pView, "OVER %s (%p)", pWin->zName, pWin); }else{ sqlite3TreeViewLine(pView, "OVER (%p)", pWin); } if( pWin->zBase ) nElement++; if( pWin->pOrderBy ) nElement++; if( pWin->eFrmType ) nElement++; if( pWin->eExclude ) nElement++; if( pWin->zBase ){ sqlite3TreeViewPush(pView, (--nElement)>0); sqlite3TreeViewLine(pView, "window: %s", pWin->zBase); sqlite3TreeViewPop(pView); } if( pWin->pPartition ){ sqlite3TreeViewExprList(pView, pWin->pPartition, nElement>0,"PARTITION-BY"); } if( pWin->pOrderBy ){ sqlite3TreeViewExprList(pView, pWin->pOrderBy, (--nElement)>0, "ORDER-BY"); } if( pWin->eFrmType ){ char zBuf[30]; const char *zFrmType = "ROWS"; if( pWin->eFrmType==TK_RANGE ) zFrmType = "RANGE"; if( pWin->eFrmType==TK_GROUPS ) zFrmType = "GROUPS"; sqlite3_snprintf(sizeof(zBuf),zBuf,"%s%s",zFrmType, pWin->bImplicitFrame ? " (implied)" : ""); sqlite3TreeViewItem(pView, zBuf, (--nElement)>0); sqlite3TreeViewBound(pView, pWin->eStart, pWin->pStart, 1); sqlite3TreeViewBound(pView, pWin->eEnd, pWin->pEnd, 0); sqlite3TreeViewPop(pView); } if( pWin->eExclude ){ char zBuf[30]; const char *zExclude; switch( pWin->eExclude ){ case TK_NO: zExclude = "NO OTHERS"; break; case TK_CURRENT: zExclude = "CURRENT ROW"; break; case TK_GROUP: zExclude = "GROUP"; break; case TK_TIES: zExclude = "TIES"; break; default: sqlite3_snprintf(sizeof(zBuf),zBuf,"invalid(%d)", pWin->eExclude); zExclude = zBuf; break; } sqlite3TreeViewPush(pView, 0); sqlite3TreeViewLine(pView, "EXCLUDE %s", zExclude); sqlite3TreeViewPop(pView); } sqlite3TreeViewPop(pView); } #endif /* SQLITE_OMIT_WINDOWFUNC */ #ifndef SQLITE_OMIT_WINDOWFUNC /* ** Generate a human-readable explanation for a Window Function object */ SQLITE_PRIVATE void sqlite3TreeViewWinFunc(TreeView *pView, const Window *pWin, u8 more){ pView = sqlite3TreeViewPush(pView, more); sqlite3TreeViewLine(pView, "WINFUNC %s(%d)", pWin->pFunc->zName, pWin->pFunc->nArg); sqlite3TreeViewWindow(pView, pWin, 0); sqlite3TreeViewPop(pView); } #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** Generate a human-readable explanation of an expression tree. */ SQLITE_PRIVATE void sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 moreToFollow){ const char *zBinOp = 0; /* Binary operator */ const char *zUniOp = 0; /* Unary operator */ char zFlgs[200]; pView = sqlite3TreeViewPush(pView, moreToFollow); if( pExpr==0 ){ sqlite3TreeViewLine(pView, "nil"); sqlite3TreeViewPop(pView); return; } if( pExpr->flags || pExpr->affExpr || pExpr->vvaFlags ){ StrAccum x; sqlite3StrAccumInit(&x, 0, zFlgs, sizeof(zFlgs), 0); sqlite3_str_appendf(&x, " fg.af=%x.%c", pExpr->flags, pExpr->affExpr ? pExpr->affExpr : 'n'); if( ExprHasProperty(pExpr, EP_FromJoin) ){ sqlite3_str_appendf(&x, " iRJT=%d", pExpr->iRightJoinTable); } if( ExprHasProperty(pExpr, EP_FromDDL) ){ sqlite3_str_appendf(&x, " DDL"); } if( ExprHasVVAProperty(pExpr, EP_Immutable) ){ sqlite3_str_appendf(&x, " IMMUTABLE"); } sqlite3StrAccumFinish(&x); }else{ zFlgs[0] = 0; } switch( pExpr->op ){ case TK_AGG_COLUMN: { sqlite3TreeViewLine(pView, "AGG{%d:%d}%s", pExpr->iTable, pExpr->iColumn, zFlgs); break; } case TK_COLUMN: { if( pExpr->iTable<0 ){ /* This only happens when coding check constraints */ char zOp2[16]; if( pExpr->op2 ){ sqlite3_snprintf(sizeof(zOp2),zOp2," op2=0x%02x",pExpr->op2); }else{ zOp2[0] = 0; } sqlite3TreeViewLine(pView, "COLUMN(%d)%s%s", pExpr->iColumn, zFlgs, zOp2); }else{ sqlite3TreeViewLine(pView, "{%d:%d} pTab=%p%s", pExpr->iTable, pExpr->iColumn, pExpr->y.pTab, zFlgs); } if( ExprHasProperty(pExpr, EP_FixedCol) ){ sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); } break; } case TK_INTEGER: { if( pExpr->flags & EP_IntValue ){ sqlite3TreeViewLine(pView, "%d", pExpr->u.iValue); }else{ sqlite3TreeViewLine(pView, "%s", pExpr->u.zToken); } break; } #ifndef SQLITE_OMIT_FLOATING_POINT case TK_FLOAT: { sqlite3TreeViewLine(pView,"%s", pExpr->u.zToken); break; } #endif case TK_STRING: { sqlite3TreeViewLine(pView,"%Q", pExpr->u.zToken); break; } case TK_NULL: { sqlite3TreeViewLine(pView,"NULL"); break; } case TK_TRUEFALSE: { sqlite3TreeViewLine(pView, sqlite3ExprTruthValue(pExpr) ? "TRUE" : "FALSE"); break; } #ifndef SQLITE_OMIT_BLOB_LITERAL case TK_BLOB: { sqlite3TreeViewLine(pView,"%s", pExpr->u.zToken); break; } #endif case TK_VARIABLE: { sqlite3TreeViewLine(pView,"VARIABLE(%s,%d)", pExpr->u.zToken, pExpr->iColumn); break; } case TK_REGISTER: { sqlite3TreeViewLine(pView,"REGISTER(%d)", pExpr->iTable); break; } case TK_ID: { sqlite3TreeViewLine(pView,"ID \"%w\"", pExpr->u.zToken); break; } #ifndef SQLITE_OMIT_CAST case TK_CAST: { /* Expressions of the form: CAST(pLeft AS token) */ sqlite3TreeViewLine(pView,"CAST %Q", pExpr->u.zToken); sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); break; } #endif /* SQLITE_OMIT_CAST */ case TK_LT: zBinOp = "LT"; break; case TK_LE: zBinOp = "LE"; break; case TK_GT: zBinOp = "GT"; break; case TK_GE: zBinOp = "GE"; break; case TK_NE: zBinOp = "NE"; break; case TK_EQ: zBinOp = "EQ"; break; case TK_IS: zBinOp = "IS"; break; case TK_ISNOT: zBinOp = "ISNOT"; break; case TK_AND: zBinOp = "AND"; break; case TK_OR: zBinOp = "OR"; break; case TK_PLUS: zBinOp = "ADD"; break; case TK_STAR: zBinOp = "MUL"; break; case TK_MINUS: zBinOp = "SUB"; break; case TK_REM: zBinOp = "REM"; break; case TK_BITAND: zBinOp = "BITAND"; break; case TK_BITOR: zBinOp = "BITOR"; break; case TK_SLASH: zBinOp = "DIV"; break; case TK_LSHIFT: zBinOp = "LSHIFT"; break; case TK_RSHIFT: zBinOp = "RSHIFT"; break; case TK_CONCAT: zBinOp = "CONCAT"; break; case TK_DOT: zBinOp = "DOT"; break; case TK_LIMIT: zBinOp = "LIMIT"; break; case TK_UMINUS: zUniOp = "UMINUS"; break; case TK_UPLUS: zUniOp = "UPLUS"; break; case TK_BITNOT: zUniOp = "BITNOT"; break; case TK_NOT: zUniOp = "NOT"; break; case TK_ISNULL: zUniOp = "ISNULL"; break; case TK_NOTNULL: zUniOp = "NOTNULL"; break; case TK_TRUTH: { int x; const char *azOp[] = { "IS-FALSE", "IS-TRUE", "IS-NOT-FALSE", "IS-NOT-TRUE" }; assert( pExpr->op2==TK_IS || pExpr->op2==TK_ISNOT ); assert( pExpr->pRight ); assert( sqlite3ExprSkipCollate(pExpr->pRight)->op==TK_TRUEFALSE ); x = (pExpr->op2==TK_ISNOT)*2 + sqlite3ExprTruthValue(pExpr->pRight); zUniOp = azOp[x]; break; } case TK_SPAN: { sqlite3TreeViewLine(pView, "SPAN %Q", pExpr->u.zToken); sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); break; } case TK_COLLATE: { /* COLLATE operators without the EP_Collate flag are intended to ** emulate collation associated with a table column. These show ** up in the treeview output as "SOFT-COLLATE". Explicit COLLATE ** operators that appear in the original SQL always have the ** EP_Collate bit set and appear in treeview output as just "COLLATE" */ sqlite3TreeViewLine(pView, "%sCOLLATE %Q%s", !ExprHasProperty(pExpr, EP_Collate) ? "SOFT-" : "", pExpr->u.zToken, zFlgs); sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); break; } case TK_AGG_FUNCTION: case TK_FUNCTION: { ExprList *pFarg; /* List of function arguments */ Window *pWin; if( ExprHasProperty(pExpr, EP_TokenOnly) ){ pFarg = 0; pWin = 0; }else{ pFarg = pExpr->x.pList; #ifndef SQLITE_OMIT_WINDOWFUNC pWin = ExprHasProperty(pExpr, EP_WinFunc) ? pExpr->y.pWin : 0; #else pWin = 0; #endif } if( pExpr->op==TK_AGG_FUNCTION ){ sqlite3TreeViewLine(pView, "AGG_FUNCTION%d %Q%s agg=%d[%d]/%p", pExpr->op2, pExpr->u.zToken, zFlgs, pExpr->pAggInfo ? pExpr->pAggInfo->selId : 0, pExpr->iAgg, pExpr->pAggInfo); }else if( pExpr->op2!=0 ){ const char *zOp2; char zBuf[8]; sqlite3_snprintf(sizeof(zBuf),zBuf,"0x%02x",pExpr->op2); zOp2 = zBuf; if( pExpr->op2==NC_IsCheck ) zOp2 = "NC_IsCheck"; if( pExpr->op2==NC_IdxExpr ) zOp2 = "NC_IdxExpr"; if( pExpr->op2==NC_PartIdx ) zOp2 = "NC_PartIdx"; if( pExpr->op2==NC_GenCol ) zOp2 = "NC_GenCol"; sqlite3TreeViewLine(pView, "FUNCTION %Q%s op2=%s", pExpr->u.zToken, zFlgs, zOp2); }else{ sqlite3TreeViewLine(pView, "FUNCTION %Q%s", pExpr->u.zToken, zFlgs); } if( pFarg ){ sqlite3TreeViewExprList(pView, pFarg, pWin!=0, 0); } #ifndef SQLITE_OMIT_WINDOWFUNC if( pWin ){ sqlite3TreeViewWindow(pView, pWin, 0); } #endif break; } #ifndef SQLITE_OMIT_SUBQUERY case TK_EXISTS: { sqlite3TreeViewLine(pView, "EXISTS-expr flags=0x%x", pExpr->flags); sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0); break; } case TK_SELECT: { sqlite3TreeViewLine(pView, "subquery-expr flags=0x%x", pExpr->flags); sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0); break; } case TK_IN: { sqlite3TreeViewLine(pView, "IN flags=0x%x", pExpr->flags); sqlite3TreeViewExpr(pView, pExpr->pLeft, 1); if( ExprHasProperty(pExpr, EP_xIsSelect) ){ sqlite3TreeViewSelect(pView, pExpr->x.pSelect, 0); }else{ sqlite3TreeViewExprList(pView, pExpr->x.pList, 0, 0); } break; } #endif /* SQLITE_OMIT_SUBQUERY */ /* ** x BETWEEN y AND z ** ** This is equivalent to ** ** x>=y AND x<=z ** ** X is stored in pExpr->pLeft. ** Y is stored in pExpr->pList->a[0].pExpr. ** Z is stored in pExpr->pList->a[1].pExpr. */ case TK_BETWEEN: { Expr *pX = pExpr->pLeft; Expr *pY = pExpr->x.pList->a[0].pExpr; Expr *pZ = pExpr->x.pList->a[1].pExpr; sqlite3TreeViewLine(pView, "BETWEEN"); sqlite3TreeViewExpr(pView, pX, 1); sqlite3TreeViewExpr(pView, pY, 1); sqlite3TreeViewExpr(pView, pZ, 0); break; } case TK_TRIGGER: { /* If the opcode is TK_TRIGGER, then the expression is a reference ** to a column in the new.* or old.* pseudo-tables available to ** trigger programs. In this case Expr.iTable is set to 1 for the ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn ** is set to the column of the pseudo-table to read, or to -1 to ** read the rowid field. */ sqlite3TreeViewLine(pView, "%s(%d)", pExpr->iTable ? "NEW" : "OLD", pExpr->iColumn); break; } case TK_CASE: { sqlite3TreeViewLine(pView, "CASE"); sqlite3TreeViewExpr(pView, pExpr->pLeft, 1); sqlite3TreeViewExprList(pView, pExpr->x.pList, 0, 0); break; } #ifndef SQLITE_OMIT_TRIGGER case TK_RAISE: { const char *zType = "unk"; switch( pExpr->affExpr ){ case OE_Rollback: zType = "rollback"; break; case OE_Abort: zType = "abort"; break; case OE_Fail: zType = "fail"; break; case OE_Ignore: zType = "ignore"; break; } sqlite3TreeViewLine(pView, "RAISE %s(%Q)", zType, pExpr->u.zToken); break; } #endif case TK_MATCH: { sqlite3TreeViewLine(pView, "MATCH {%d:%d}%s", pExpr->iTable, pExpr->iColumn, zFlgs); sqlite3TreeViewExpr(pView, pExpr->pRight, 0); break; } case TK_VECTOR: { char *z = sqlite3_mprintf("VECTOR%s",zFlgs); sqlite3TreeViewBareExprList(pView, pExpr->x.pList, z); sqlite3_free(z); break; } case TK_SELECT_COLUMN: { sqlite3TreeViewLine(pView, "SELECT-COLUMN %d", pExpr->iColumn); sqlite3TreeViewSelect(pView, pExpr->pLeft->x.pSelect, 0); break; } case TK_IF_NULL_ROW: { sqlite3TreeViewLine(pView, "IF-NULL-ROW %d", pExpr->iTable); sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); break; } default: { sqlite3TreeViewLine(pView, "op=%d", pExpr->op); break; } } if( zBinOp ){ sqlite3TreeViewLine(pView, "%s%s", zBinOp, zFlgs); sqlite3TreeViewExpr(pView, pExpr->pLeft, 1); sqlite3TreeViewExpr(pView, pExpr->pRight, 0); }else if( zUniOp ){ sqlite3TreeViewLine(pView, "%s%s", zUniOp, zFlgs); sqlite3TreeViewExpr(pView, pExpr->pLeft, 0); } sqlite3TreeViewPop(pView); } /* ** Generate a human-readable explanation of an expression list. */ SQLITE_PRIVATE void sqlite3TreeViewBareExprList( TreeView *pView, const ExprList *pList, const char *zLabel ){ if( zLabel==0 || zLabel[0]==0 ) zLabel = "LIST"; if( pList==0 ){ sqlite3TreeViewLine(pView, "%s (empty)", zLabel); }else{ int i; sqlite3TreeViewLine(pView, "%s", zLabel); for(i=0; inExpr; i++){ int j = pList->a[i].u.x.iOrderByCol; char *zName = pList->a[i].zEName; int moreToFollow = inExpr - 1; if( pList->a[i].eEName!=ENAME_NAME ) zName = 0; if( j || zName ){ sqlite3TreeViewPush(pView, moreToFollow); moreToFollow = 0; sqlite3TreeViewLine(pView, 0); if( zName ){ fprintf(stdout, "AS %s ", zName); } if( j ){ fprintf(stdout, "iOrderByCol=%d", j); } fprintf(stdout, "\n"); fflush(stdout); } sqlite3TreeViewExpr(pView, pList->a[i].pExpr, moreToFollow); if( j || zName ){ sqlite3TreeViewPop(pView); } } } } SQLITE_PRIVATE void sqlite3TreeViewExprList( TreeView *pView, const ExprList *pList, u8 moreToFollow, const char *zLabel ){ pView = sqlite3TreeViewPush(pView, moreToFollow); sqlite3TreeViewBareExprList(pView, pList, zLabel); sqlite3TreeViewPop(pView); } #endif /* SQLITE_DEBUG */ /************** End of treeview.c ********************************************/ /************** Begin file random.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code to implement a pseudo-random number ** generator (PRNG) for SQLite. ** ** Random numbers are used by some of the database backends in order ** to generate random integer keys for tables or random filenames. */ /* #include "sqliteInt.h" */ /* All threads share a single random number generator. ** This structure is the current state of the generator. */ static SQLITE_WSD struct sqlite3PrngType { unsigned char isInit; /* True if initialized */ unsigned char i, j; /* State variables */ unsigned char s[256]; /* State variables */ } sqlite3Prng; /* ** Return N random bytes. */ SQLITE_API void sqlite3_randomness(int N, void *pBuf){ unsigned char t; unsigned char *zBuf = pBuf; /* The "wsdPrng" macro will resolve to the pseudo-random number generator ** state vector. If writable static data is unsupported on the target, ** we have to locate the state vector at run-time. In the more common ** case where writable static data is supported, wsdPrng can refer directly ** to the "sqlite3Prng" state vector declared above. */ #ifdef SQLITE_OMIT_WSD struct sqlite3PrngType *p = &GLOBAL(struct sqlite3PrngType, sqlite3Prng); # define wsdPrng p[0] #else # define wsdPrng sqlite3Prng #endif #if SQLITE_THREADSAFE sqlite3_mutex *mutex; #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return; #endif #if SQLITE_THREADSAFE mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_PRNG); #endif sqlite3_mutex_enter(mutex); if( N<=0 || pBuf==0 ){ wsdPrng.isInit = 0; sqlite3_mutex_leave(mutex); return; } /* Initialize the state of the random number generator once, ** the first time this routine is called. The seed value does ** not need to contain a lot of randomness since we are not ** trying to do secure encryption or anything like that... ** ** Nothing in this file or anywhere else in SQLite does any kind of ** encryption. The RC4 algorithm is being used as a PRNG (pseudo-random ** number generator) not as an encryption device. */ if( !wsdPrng.isInit ){ int i; char k[256]; wsdPrng.j = 0; wsdPrng.i = 0; sqlite3OsRandomness(sqlite3_vfs_find(0), 256, k); for(i=0; i<256; i++){ wsdPrng.s[i] = (u8)i; } for(i=0; i<256; i++){ wsdPrng.j += wsdPrng.s[i] + k[i]; t = wsdPrng.s[wsdPrng.j]; wsdPrng.s[wsdPrng.j] = wsdPrng.s[i]; wsdPrng.s[i] = t; } wsdPrng.isInit = 1; } assert( N>0 ); do{ wsdPrng.i++; t = wsdPrng.s[wsdPrng.i]; wsdPrng.j += t; wsdPrng.s[wsdPrng.i] = wsdPrng.s[wsdPrng.j]; wsdPrng.s[wsdPrng.j] = t; t += wsdPrng.s[wsdPrng.i]; *(zBuf++) = wsdPrng.s[t]; }while( --N ); sqlite3_mutex_leave(mutex); } #ifndef SQLITE_UNTESTABLE /* ** For testing purposes, we sometimes want to preserve the state of ** PRNG and restore the PRNG to its saved state at a later time, or ** to reset the PRNG to its initial state. These routines accomplish ** those tasks. ** ** The sqlite3_test_control() interface calls these routines to ** control the PRNG. */ static SQLITE_WSD struct sqlite3PrngType sqlite3SavedPrng; SQLITE_PRIVATE void sqlite3PrngSaveState(void){ memcpy( &GLOBAL(struct sqlite3PrngType, sqlite3SavedPrng), &GLOBAL(struct sqlite3PrngType, sqlite3Prng), sizeof(sqlite3Prng) ); } SQLITE_PRIVATE void sqlite3PrngRestoreState(void){ memcpy( &GLOBAL(struct sqlite3PrngType, sqlite3Prng), &GLOBAL(struct sqlite3PrngType, sqlite3SavedPrng), sizeof(sqlite3Prng) ); } #endif /* SQLITE_UNTESTABLE */ /************** End of random.c **********************************************/ /************** Begin file threads.c *****************************************/ /* ** 2012 July 21 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file presents a simple cross-platform threading interface for ** use internally by SQLite. ** ** A "thread" can be created using sqlite3ThreadCreate(). This thread ** runs independently of its creator until it is joined using ** sqlite3ThreadJoin(), at which point it terminates. ** ** Threads do not have to be real. It could be that the work of the ** "thread" is done by the main thread at either the sqlite3ThreadCreate() ** or sqlite3ThreadJoin() call. This is, in fact, what happens in ** single threaded systems. Nothing in SQLite requires multiple threads. ** This interface exists so that applications that want to take advantage ** of multiple cores can do so, while also allowing applications to stay ** single-threaded if desired. */ /* #include "sqliteInt.h" */ #if SQLITE_OS_WIN /* # include "os_win.h" */ #endif #if SQLITE_MAX_WORKER_THREADS>0 /********************************* Unix Pthreads ****************************/ #if SQLITE_OS_UNIX && defined(SQLITE_MUTEX_PTHREADS) && SQLITE_THREADSAFE>0 #define SQLITE_THREADS_IMPLEMENTED 1 /* Prevent the single-thread code below */ /* #include */ /* A running thread */ struct SQLiteThread { pthread_t tid; /* Thread ID */ int done; /* Set to true when thread finishes */ void *pOut; /* Result returned by the thread */ void *(*xTask)(void*); /* The thread routine */ void *pIn; /* Argument to the thread */ }; /* Create a new thread */ SQLITE_PRIVATE int sqlite3ThreadCreate( SQLiteThread **ppThread, /* OUT: Write the thread object here */ void *(*xTask)(void*), /* Routine to run in a separate thread */ void *pIn /* Argument passed into xTask() */ ){ SQLiteThread *p; int rc; assert( ppThread!=0 ); assert( xTask!=0 ); /* This routine is never used in single-threaded mode */ assert( sqlite3GlobalConfig.bCoreMutex!=0 ); *ppThread = 0; p = sqlite3Malloc(sizeof(*p)); if( p==0 ) return SQLITE_NOMEM_BKPT; memset(p, 0, sizeof(*p)); p->xTask = xTask; p->pIn = pIn; /* If the SQLITE_TESTCTRL_FAULT_INSTALL callback is registered to a ** function that returns SQLITE_ERROR when passed the argument 200, that ** forces worker threads to run sequentially and deterministically ** for testing purposes. */ if( sqlite3FaultSim(200) ){ rc = 1; }else{ rc = pthread_create(&p->tid, 0, xTask, pIn); } if( rc ){ p->done = 1; p->pOut = xTask(pIn); } *ppThread = p; return SQLITE_OK; } /* Get the results of the thread */ SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread *p, void **ppOut){ int rc; assert( ppOut!=0 ); if( NEVER(p==0) ) return SQLITE_NOMEM_BKPT; if( p->done ){ *ppOut = p->pOut; rc = SQLITE_OK; }else{ rc = pthread_join(p->tid, ppOut) ? SQLITE_ERROR : SQLITE_OK; } sqlite3_free(p); return rc; } #endif /* SQLITE_OS_UNIX && defined(SQLITE_MUTEX_PTHREADS) */ /******************************** End Unix Pthreads *************************/ /********************************* Win32 Threads ****************************/ #if SQLITE_OS_WIN_THREADS #define SQLITE_THREADS_IMPLEMENTED 1 /* Prevent the single-thread code below */ #include /* A running thread */ struct SQLiteThread { void *tid; /* The thread handle */ unsigned id; /* The thread identifier */ void *(*xTask)(void*); /* The routine to run as a thread */ void *pIn; /* Argument to xTask */ void *pResult; /* Result of xTask */ }; /* Thread procedure Win32 compatibility shim */ static unsigned __stdcall sqlite3ThreadProc( void *pArg /* IN: Pointer to the SQLiteThread structure */ ){ SQLiteThread *p = (SQLiteThread *)pArg; assert( p!=0 ); #if 0 /* ** This assert appears to trigger spuriously on certain ** versions of Windows, possibly due to _beginthreadex() ** and/or CreateThread() not fully setting their thread ** ID parameter before starting the thread. */ assert( p->id==GetCurrentThreadId() ); #endif assert( p->xTask!=0 ); p->pResult = p->xTask(p->pIn); _endthreadex(0); return 0; /* NOT REACHED */ } /* Create a new thread */ SQLITE_PRIVATE int sqlite3ThreadCreate( SQLiteThread **ppThread, /* OUT: Write the thread object here */ void *(*xTask)(void*), /* Routine to run in a separate thread */ void *pIn /* Argument passed into xTask() */ ){ SQLiteThread *p; assert( ppThread!=0 ); assert( xTask!=0 ); *ppThread = 0; p = sqlite3Malloc(sizeof(*p)); if( p==0 ) return SQLITE_NOMEM_BKPT; /* If the SQLITE_TESTCTRL_FAULT_INSTALL callback is registered to a ** function that returns SQLITE_ERROR when passed the argument 200, that ** forces worker threads to run sequentially and deterministically ** (via the sqlite3FaultSim() term of the conditional) for testing ** purposes. */ if( sqlite3GlobalConfig.bCoreMutex==0 || sqlite3FaultSim(200) ){ memset(p, 0, sizeof(*p)); }else{ p->xTask = xTask; p->pIn = pIn; p->tid = (void*)_beginthreadex(0, 0, sqlite3ThreadProc, p, 0, &p->id); if( p->tid==0 ){ memset(p, 0, sizeof(*p)); } } if( p->xTask==0 ){ p->id = GetCurrentThreadId(); p->pResult = xTask(pIn); } *ppThread = p; return SQLITE_OK; } SQLITE_PRIVATE DWORD sqlite3Win32Wait(HANDLE hObject); /* os_win.c */ /* Get the results of the thread */ SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread *p, void **ppOut){ DWORD rc; BOOL bRc; assert( ppOut!=0 ); if( NEVER(p==0) ) return SQLITE_NOMEM_BKPT; if( p->xTask==0 ){ /* assert( p->id==GetCurrentThreadId() ); */ rc = WAIT_OBJECT_0; assert( p->tid==0 ); }else{ assert( p->id!=0 && p->id!=GetCurrentThreadId() ); rc = sqlite3Win32Wait((HANDLE)p->tid); assert( rc!=WAIT_IO_COMPLETION ); bRc = CloseHandle((HANDLE)p->tid); assert( bRc ); } if( rc==WAIT_OBJECT_0 ) *ppOut = p->pResult; sqlite3_free(p); return (rc==WAIT_OBJECT_0) ? SQLITE_OK : SQLITE_ERROR; } #endif /* SQLITE_OS_WIN_THREADS */ /******************************** End Win32 Threads *************************/ /********************************* Single-Threaded **************************/ #ifndef SQLITE_THREADS_IMPLEMENTED /* ** This implementation does not actually create a new thread. It does the ** work of the thread in the main thread, when either the thread is created ** or when it is joined */ /* A running thread */ struct SQLiteThread { void *(*xTask)(void*); /* The routine to run as a thread */ void *pIn; /* Argument to xTask */ void *pResult; /* Result of xTask */ }; /* Create a new thread */ SQLITE_PRIVATE int sqlite3ThreadCreate( SQLiteThread **ppThread, /* OUT: Write the thread object here */ void *(*xTask)(void*), /* Routine to run in a separate thread */ void *pIn /* Argument passed into xTask() */ ){ SQLiteThread *p; assert( ppThread!=0 ); assert( xTask!=0 ); *ppThread = 0; p = sqlite3Malloc(sizeof(*p)); if( p==0 ) return SQLITE_NOMEM_BKPT; if( (SQLITE_PTR_TO_INT(p)/17)&1 ){ p->xTask = xTask; p->pIn = pIn; }else{ p->xTask = 0; p->pResult = xTask(pIn); } *ppThread = p; return SQLITE_OK; } /* Get the results of the thread */ SQLITE_PRIVATE int sqlite3ThreadJoin(SQLiteThread *p, void **ppOut){ assert( ppOut!=0 ); if( NEVER(p==0) ) return SQLITE_NOMEM_BKPT; if( p->xTask ){ *ppOut = p->xTask(p->pIn); }else{ *ppOut = p->pResult; } sqlite3_free(p); #if defined(SQLITE_TEST) { void *pTstAlloc = sqlite3Malloc(10); if (!pTstAlloc) return SQLITE_NOMEM_BKPT; sqlite3_free(pTstAlloc); } #endif return SQLITE_OK; } #endif /* !defined(SQLITE_THREADS_IMPLEMENTED) */ /****************************** End Single-Threaded *************************/ #endif /* SQLITE_MAX_WORKER_THREADS>0 */ /************** End of threads.c *********************************************/ /************** Begin file utf.c *********************************************/ /* ** 2004 April 13 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains routines used to translate between UTF-8, ** UTF-16, UTF-16BE, and UTF-16LE. ** ** Notes on UTF-8: ** ** Byte-0 Byte-1 Byte-2 Byte-3 Value ** 0xxxxxxx 00000000 00000000 0xxxxxxx ** 110yyyyy 10xxxxxx 00000000 00000yyy yyxxxxxx ** 1110zzzz 10yyyyyy 10xxxxxx 00000000 zzzzyyyy yyxxxxxx ** 11110uuu 10uuzzzz 10yyyyyy 10xxxxxx 000uuuuu zzzzyyyy yyxxxxxx ** ** ** Notes on UTF-16: (with wwww+1==uuuuu) ** ** Word-0 Word-1 Value ** 110110ww wwzzzzyy 110111yy yyxxxxxx 000uuuuu zzzzyyyy yyxxxxxx ** zzzzyyyy yyxxxxxx 00000000 zzzzyyyy yyxxxxxx ** ** ** BOM or Byte Order Mark: ** 0xff 0xfe little-endian utf-16 follows ** 0xfe 0xff big-endian utf-16 follows ** */ /* #include "sqliteInt.h" */ /* #include */ /* #include "vdbeInt.h" */ #if !defined(SQLITE_AMALGAMATION) && SQLITE_BYTEORDER==0 /* ** The following constant value is used by the SQLITE_BIGENDIAN and ** SQLITE_LITTLEENDIAN macros. */ SQLITE_PRIVATE const int sqlite3one = 1; #endif /* SQLITE_AMALGAMATION && SQLITE_BYTEORDER==0 */ /* ** This lookup table is used to help decode the first byte of ** a multi-byte UTF8 character. */ static const unsigned char sqlite3Utf8Trans1[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, }; #define WRITE_UTF8(zOut, c) { \ if( c<0x00080 ){ \ *zOut++ = (u8)(c&0xFF); \ } \ else if( c<0x00800 ){ \ *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ } \ else if( c<0x10000 ){ \ *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \ *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ }else{ \ *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \ *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \ *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ } \ } #define WRITE_UTF16LE(zOut, c) { \ if( c<=0xFFFF ){ \ *zOut++ = (u8)(c&0x00FF); \ *zOut++ = (u8)((c>>8)&0x00FF); \ }else{ \ *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \ *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \ *zOut++ = (u8)(c&0x00FF); \ *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \ } \ } #define WRITE_UTF16BE(zOut, c) { \ if( c<=0xFFFF ){ \ *zOut++ = (u8)((c>>8)&0x00FF); \ *zOut++ = (u8)(c&0x00FF); \ }else{ \ *zOut++ = (u8)(0x00D8 + (((c-0x10000)>>18)&0x03)); \ *zOut++ = (u8)(((c>>10)&0x003F) + (((c-0x10000)>>10)&0x00C0)); \ *zOut++ = (u8)(0x00DC + ((c>>8)&0x03)); \ *zOut++ = (u8)(c&0x00FF); \ } \ } /* ** Translate a single UTF-8 character. Return the unicode value. ** ** During translation, assume that the byte that zTerm points ** is a 0x00. ** ** Write a pointer to the next unread byte back into *pzNext. ** ** Notes On Invalid UTF-8: ** ** * This routine never allows a 7-bit character (0x00 through 0x7f) to ** be encoded as a multi-byte character. Any multi-byte character that ** attempts to encode a value between 0x00 and 0x7f is rendered as 0xfffd. ** ** * This routine never allows a UTF16 surrogate value to be encoded. ** If a multi-byte character attempts to encode a value between ** 0xd800 and 0xe000 then it is rendered as 0xfffd. ** ** * Bytes in the range of 0x80 through 0xbf which occur as the first ** byte of a character are interpreted as single-byte characters ** and rendered as themselves even though they are technically ** invalid characters. ** ** * This routine accepts over-length UTF8 encodings ** for unicode values 0x80 and greater. It does not change over-length ** encodings to 0xfffd as some systems recommend. */ #define READ_UTF8(zIn, zTerm, c) \ c = *(zIn++); \ if( c>=0xc0 ){ \ c = sqlite3Utf8Trans1[c-0xc0]; \ while( zIn!=zTerm && (*zIn & 0xc0)==0x80 ){ \ c = (c<<6) + (0x3f & *(zIn++)); \ } \ if( c<0x80 \ || (c&0xFFFFF800)==0xD800 \ || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \ } SQLITE_PRIVATE u32 sqlite3Utf8Read( const unsigned char **pz /* Pointer to string from which to read char */ ){ unsigned int c; /* Same as READ_UTF8() above but without the zTerm parameter. ** For this routine, we assume the UTF8 string is always zero-terminated. */ c = *((*pz)++); if( c>=0xc0 ){ c = sqlite3Utf8Trans1[c-0xc0]; while( (*(*pz) & 0xc0)==0x80 ){ c = (c<<6) + (0x3f & *((*pz)++)); } if( c<0x80 || (c&0xFFFFF800)==0xD800 || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } } return c; } /* ** If the TRANSLATE_TRACE macro is defined, the value of each Mem is ** printed on stderr on the way into and out of sqlite3VdbeMemTranslate(). */ /* #define TRANSLATE_TRACE 1 */ #ifndef SQLITE_OMIT_UTF16 /* ** This routine transforms the internal text encoding used by pMem to ** desiredEnc. It is an error if the string is already of the desired ** encoding, or if *pMem does not contain a string value. */ SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3VdbeMemTranslate(Mem *pMem, u8 desiredEnc){ sqlite3_int64 len; /* Maximum length of output string in bytes */ unsigned char *zOut; /* Output buffer */ unsigned char *zIn; /* Input iterator */ unsigned char *zTerm; /* End of input */ unsigned char *z; /* Output iterator */ unsigned int c; assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( pMem->flags&MEM_Str ); assert( pMem->enc!=desiredEnc ); assert( pMem->enc!=0 ); assert( pMem->n>=0 ); #if defined(TRANSLATE_TRACE) && defined(SQLITE_DEBUG) { StrAccum acc; char zBuf[1000]; sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); sqlite3VdbeMemPrettyPrint(pMem, &acc); fprintf(stderr, "INPUT: %s\n", sqlite3StrAccumFinish(&acc)); } #endif /* If the translation is between UTF-16 little and big endian, then ** all that is required is to swap the byte order. This case is handled ** differently from the others. */ if( pMem->enc!=SQLITE_UTF8 && desiredEnc!=SQLITE_UTF8 ){ u8 temp; int rc; rc = sqlite3VdbeMemMakeWriteable(pMem); if( rc!=SQLITE_OK ){ assert( rc==SQLITE_NOMEM ); return SQLITE_NOMEM_BKPT; } zIn = (u8*)pMem->z; zTerm = &zIn[pMem->n&~1]; while( zInenc = desiredEnc; goto translate_out; } /* Set len to the maximum number of bytes required in the output buffer. */ if( desiredEnc==SQLITE_UTF8 ){ /* When converting from UTF-16, the maximum growth results from ** translating a 2-byte character to a 4-byte UTF-8 character. ** A single byte is required for the output string ** nul-terminator. */ pMem->n &= ~1; len = 2 * (sqlite3_int64)pMem->n + 1; }else{ /* When converting from UTF-8 to UTF-16 the maximum growth is caused ** when a 1-byte UTF-8 character is translated into a 2-byte UTF-16 ** character. Two bytes are required in the output buffer for the ** nul-terminator. */ len = 2 * (sqlite3_int64)pMem->n + 2; } /* Set zIn to point at the start of the input buffer and zTerm to point 1 ** byte past the end. ** ** Variable zOut is set to point at the output buffer, space obtained ** from sqlite3_malloc(). */ zIn = (u8*)pMem->z; zTerm = &zIn[pMem->n]; zOut = sqlite3DbMallocRaw(pMem->db, len); if( !zOut ){ return SQLITE_NOMEM_BKPT; } z = zOut; if( pMem->enc==SQLITE_UTF8 ){ if( desiredEnc==SQLITE_UTF16LE ){ /* UTF-8 -> UTF-16 Little-endian */ while( zIn UTF-16 Big-endian */ while( zInn = (int)(z - zOut); *z++ = 0; }else{ assert( desiredEnc==SQLITE_UTF8 ); if( pMem->enc==SQLITE_UTF16LE ){ /* UTF-16 Little-endian -> UTF-8 */ while( zIn=0xd800 && c<0xe000 ){ #ifdef SQLITE_REPLACE_INVALID_UTF if( c>=0xdc00 || zIn>=zTerm ){ c = 0xfffd; }else{ int c2 = *(zIn++); c2 += (*(zIn++))<<8; if( c2<0xdc00 || c2>=0xe000 ){ zIn -= 2; c = 0xfffd; }else{ c = ((c&0x3ff)<<10) + (c2&0x3ff) + 0x10000; } } #else if( zIn UTF-8 */ while( zIn=0xd800 && c<0xe000 ){ #ifdef SQLITE_REPLACE_INVALID_UTF if( c>=0xdc00 || zIn>=zTerm ){ c = 0xfffd; }else{ int c2 = (*(zIn++))<<8; c2 += *(zIn++); if( c2<0xdc00 || c2>=0xe000 ){ zIn -= 2; c = 0xfffd; }else{ c = ((c&0x3ff)<<10) + (c2&0x3ff) + 0x10000; } } #else if( zInn = (int)(z - zOut); } *z = 0; assert( (pMem->n+(desiredEnc==SQLITE_UTF8?1:2))<=len ); c = MEM_Str|MEM_Term|(pMem->flags&(MEM_AffMask|MEM_Subtype)); sqlite3VdbeMemRelease(pMem); pMem->flags = c; pMem->enc = desiredEnc; pMem->z = (char*)zOut; pMem->zMalloc = pMem->z; pMem->szMalloc = sqlite3DbMallocSize(pMem->db, pMem->z); translate_out: #if defined(TRANSLATE_TRACE) && defined(SQLITE_DEBUG) { StrAccum acc; char zBuf[1000]; sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); sqlite3VdbeMemPrettyPrint(pMem, &acc); fprintf(stderr, "OUTPUT: %s\n", sqlite3StrAccumFinish(&acc)); } #endif return SQLITE_OK; } #endif /* SQLITE_OMIT_UTF16 */ #ifndef SQLITE_OMIT_UTF16 /* ** This routine checks for a byte-order mark at the beginning of the ** UTF-16 string stored in *pMem. If one is present, it is removed and ** the encoding of the Mem adjusted. This routine does not do any ** byte-swapping, it just sets Mem.enc appropriately. ** ** The allocation (static, dynamic etc.) and encoding of the Mem may be ** changed by this function. */ SQLITE_PRIVATE int sqlite3VdbeMemHandleBom(Mem *pMem){ int rc = SQLITE_OK; u8 bom = 0; assert( pMem->n>=0 ); if( pMem->n>1 ){ u8 b1 = *(u8 *)pMem->z; u8 b2 = *(((u8 *)pMem->z) + 1); if( b1==0xFE && b2==0xFF ){ bom = SQLITE_UTF16BE; } if( b1==0xFF && b2==0xFE ){ bom = SQLITE_UTF16LE; } } if( bom ){ rc = sqlite3VdbeMemMakeWriteable(pMem); if( rc==SQLITE_OK ){ pMem->n -= 2; memmove(pMem->z, &pMem->z[2], pMem->n); pMem->z[pMem->n] = '\0'; pMem->z[pMem->n+1] = '\0'; pMem->flags |= MEM_Term; pMem->enc = bom; } } return rc; } #endif /* SQLITE_OMIT_UTF16 */ /* ** pZ is a UTF-8 encoded unicode string. If nByte is less than zero, ** return the number of unicode characters in pZ up to (but not including) ** the first 0x00 byte. If nByte is not less than zero, return the ** number of unicode characters in the first nByte of pZ (or up to ** the first 0x00, whichever comes first). */ SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *zIn, int nByte){ int r = 0; const u8 *z = (const u8*)zIn; const u8 *zTerm; if( nByte>=0 ){ zTerm = &z[nByte]; }else{ zTerm = (const u8*)(-1); } assert( z<=zTerm ); while( *z!=0 && zmallocFailed ){ sqlite3VdbeMemRelease(&m); m.z = 0; } assert( (m.flags & MEM_Term)!=0 || db->mallocFailed ); assert( (m.flags & MEM_Str)!=0 || db->mallocFailed ); assert( m.z || db->mallocFailed ); return m.z; } /* ** zIn is a UTF-16 encoded unicode string at least nChar characters long. ** Return the number of bytes in the first nChar unicode characters ** in pZ. nChar must be non-negative. */ SQLITE_PRIVATE int sqlite3Utf16ByteLen(const void *zIn, int nChar){ int c; unsigned char const *z = zIn; int n = 0; if( SQLITE_UTF16NATIVE==SQLITE_UTF16LE ) z++; while( n=0xd8 && c<0xdc && z[0]>=0xdc && z[0]<0xe0 ) z += 2; n++; } return (int)(z-(unsigned char const *)zIn) - (SQLITE_UTF16NATIVE==SQLITE_UTF16LE); } #if defined(SQLITE_TEST) /* ** This routine is called from the TCL test function "translate_selftest". ** It checks that the primitives for serializing and deserializing ** characters in each encoding are inverses of each other. */ SQLITE_PRIVATE void sqlite3UtfSelfTest(void){ unsigned int i, t; unsigned char zBuf[20]; unsigned char *z; int n; unsigned int c; for(i=0; i<0x00110000; i++){ z = zBuf; WRITE_UTF8(z, i); n = (int)(z-zBuf); assert( n>0 && n<=4 ); z[0] = 0; z = zBuf; c = sqlite3Utf8Read((const u8**)&z); t = i; if( i>=0xD800 && i<=0xDFFF ) t = 0xFFFD; if( (i&0xFFFFFFFE)==0xFFFE ) t = 0xFFFD; assert( c==t ); assert( (z-zBuf)==n ); } } #endif /* SQLITE_TEST */ #endif /* SQLITE_OMIT_UTF16 */ /************** End of utf.c *************************************************/ /************** Begin file util.c ********************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Utility functions used throughout sqlite. ** ** This file contains functions for allocating memory, comparing ** strings, and stuff like that. ** */ /* #include "sqliteInt.h" */ /* #include */ #ifndef SQLITE_OMIT_FLOATING_POINT #include #endif /* ** Routine needed to support the testcase() macro. */ #ifdef SQLITE_COVERAGE_TEST SQLITE_PRIVATE void sqlite3Coverage(int x){ static unsigned dummy = 0; dummy += (unsigned)x; } #endif /* ** Calls to sqlite3FaultSim() are used to simulate a failure during testing, ** or to bypass normal error detection during testing in order to let ** execute proceed futher downstream. ** ** In deployment, sqlite3FaultSim() *always* return SQLITE_OK (0). The ** sqlite3FaultSim() function only returns non-zero during testing. ** ** During testing, if the test harness has set a fault-sim callback using ** a call to sqlite3_test_control(SQLITE_TESTCTRL_FAULT_INSTALL), then ** each call to sqlite3FaultSim() is relayed to that application-supplied ** callback and the integer return value form the application-supplied ** callback is returned by sqlite3FaultSim(). ** ** The integer argument to sqlite3FaultSim() is a code to identify which ** sqlite3FaultSim() instance is being invoked. Each call to sqlite3FaultSim() ** should have a unique code. To prevent legacy testing applications from ** breaking, the codes should not be changed or reused. */ #ifndef SQLITE_UNTESTABLE SQLITE_PRIVATE int sqlite3FaultSim(int iTest){ int (*xCallback)(int) = sqlite3GlobalConfig.xTestCallback; return xCallback ? xCallback(iTest) : SQLITE_OK; } #endif #ifndef SQLITE_OMIT_FLOATING_POINT /* ** Return true if the floating point value is Not a Number (NaN). */ SQLITE_PRIVATE int sqlite3IsNaN(double x){ u64 y; memcpy(&y,&x,sizeof(y)); return IsNaN(y); } #endif /* SQLITE_OMIT_FLOATING_POINT */ /* ** Compute a string length that is limited to what can be stored in ** lower 30 bits of a 32-bit signed integer. ** ** The value returned will never be negative. Nor will it ever be greater ** than the actual length of the string. For very long strings (greater ** than 1GiB) the value returned might be less than the true string length. */ SQLITE_PRIVATE int sqlite3Strlen30(const char *z){ if( z==0 ) return 0; return 0x3fffffff & (int)strlen(z); } /* ** Return the declared type of a column. Or return zDflt if the column ** has no declared type. ** ** The column type is an extra string stored after the zero-terminator on ** the column name if and only if the COLFLAG_HASTYPE flag is set. */ SQLITE_PRIVATE char *sqlite3ColumnType(Column *pCol, char *zDflt){ if( (pCol->colFlags & COLFLAG_HASTYPE)==0 ) return zDflt; return pCol->zName + strlen(pCol->zName) + 1; } /* ** Helper function for sqlite3Error() - called rarely. Broken out into ** a separate routine to avoid unnecessary register saves on entry to ** sqlite3Error(). */ static SQLITE_NOINLINE void sqlite3ErrorFinish(sqlite3 *db, int err_code){ if( db->pErr ) sqlite3ValueSetNull(db->pErr); sqlite3SystemError(db, err_code); } /* ** Set the current error code to err_code and clear any prior error message. ** Also set iSysErrno (by calling sqlite3System) if the err_code indicates ** that would be appropriate. */ SQLITE_PRIVATE void sqlite3Error(sqlite3 *db, int err_code){ assert( db!=0 ); db->errCode = err_code; if( err_code || db->pErr ) sqlite3ErrorFinish(db, err_code); } /* ** Load the sqlite3.iSysErrno field if that is an appropriate thing ** to do based on the SQLite error code in rc. */ SQLITE_PRIVATE void sqlite3SystemError(sqlite3 *db, int rc){ if( rc==SQLITE_IOERR_NOMEM ) return; rc &= 0xff; if( rc==SQLITE_CANTOPEN || rc==SQLITE_IOERR ){ db->iSysErrno = sqlite3OsGetLastError(db->pVfs); } } /* ** Set the most recent error code and error string for the sqlite ** handle "db". The error code is set to "err_code". ** ** If it is not NULL, string zFormat specifies the format of the ** error string in the style of the printf functions: The following ** format characters are allowed: ** ** %s Insert a string ** %z A string that should be freed after use ** %d Insert an integer ** %T Insert a token ** %S Insert the first element of a SrcList ** ** zFormat and any string tokens that follow it are assumed to be ** encoded in UTF-8. ** ** To clear the most recent error for sqlite handle "db", sqlite3Error ** should be called with err_code set to SQLITE_OK and zFormat set ** to NULL. */ SQLITE_PRIVATE void sqlite3ErrorWithMsg(sqlite3 *db, int err_code, const char *zFormat, ...){ assert( db!=0 ); db->errCode = err_code; sqlite3SystemError(db, err_code); if( zFormat==0 ){ sqlite3Error(db, err_code); }else if( db->pErr || (db->pErr = sqlite3ValueNew(db))!=0 ){ char *z; va_list ap; va_start(ap, zFormat); z = sqlite3VMPrintf(db, zFormat, ap); va_end(ap); sqlite3ValueSetStr(db->pErr, -1, z, SQLITE_UTF8, SQLITE_DYNAMIC); } } /* ** Add an error message to pParse->zErrMsg and increment pParse->nErr. ** The following formatting characters are allowed: ** ** %s Insert a string ** %z A string that should be freed after use ** %d Insert an integer ** %T Insert a token ** %S Insert the first element of a SrcList ** ** This function should be used to report any error that occurs while ** compiling an SQL statement (i.e. within sqlite3_prepare()). The ** last thing the sqlite3_prepare() function does is copy the error ** stored by this function into the database handle using sqlite3Error(). ** Functions sqlite3Error() or sqlite3ErrorWithMsg() should be used ** during statement execution (sqlite3_step() etc.). */ SQLITE_PRIVATE void sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...){ char *zMsg; va_list ap; sqlite3 *db = pParse->db; va_start(ap, zFormat); zMsg = sqlite3VMPrintf(db, zFormat, ap); va_end(ap); if( db->suppressErr ){ sqlite3DbFree(db, zMsg); }else{ pParse->nErr++; sqlite3DbFree(db, pParse->zErrMsg); pParse->zErrMsg = zMsg; pParse->rc = SQLITE_ERROR; pParse->pWith = 0; } } /* ** If database connection db is currently parsing SQL, then transfer ** error code errCode to that parser if the parser has not already ** encountered some other kind of error. */ SQLITE_PRIVATE int sqlite3ErrorToParser(sqlite3 *db, int errCode){ Parse *pParse; if( db==0 || (pParse = db->pParse)==0 ) return errCode; pParse->rc = errCode; pParse->nErr++; return errCode; } /* ** Convert an SQL-style quoted string into a normal string by removing ** the quote characters. The conversion is done in-place. If the ** input does not begin with a quote character, then this routine ** is a no-op. ** ** The input string must be zero-terminated. A new zero-terminator ** is added to the dequoted string. ** ** The return value is -1 if no dequoting occurs or the length of the ** dequoted string, exclusive of the zero terminator, if dequoting does ** occur. ** ** 2002-02-14: This routine is extended to remove MS-Access style ** brackets from around identifiers. For example: "[a-b-c]" becomes ** "a-b-c". */ SQLITE_PRIVATE void sqlite3Dequote(char *z){ char quote; int i, j; if( z==0 ) return; quote = z[0]; if( !sqlite3Isquote(quote) ) return; if( quote=='[' ) quote = ']'; for(i=1, j=0;; i++){ assert( z[i] ); if( z[i]==quote ){ if( z[i+1]==quote ){ z[j++] = quote; i++; }else{ break; } }else{ z[j++] = z[i]; } } z[j] = 0; } SQLITE_PRIVATE void sqlite3DequoteExpr(Expr *p){ assert( sqlite3Isquote(p->u.zToken[0]) ); p->flags |= p->u.zToken[0]=='"' ? EP_Quoted|EP_DblQuoted : EP_Quoted; sqlite3Dequote(p->u.zToken); } /* ** Generate a Token object from a string */ SQLITE_PRIVATE void sqlite3TokenInit(Token *p, char *z){ p->z = z; p->n = sqlite3Strlen30(z); } /* Convenient short-hand */ #define UpperToLower sqlite3UpperToLower /* ** Some systems have stricmp(). Others have strcasecmp(). Because ** there is no consistency, we will define our own. ** ** IMPLEMENTATION-OF: R-30243-02494 The sqlite3_stricmp() and ** sqlite3_strnicmp() APIs allow applications and extensions to compare ** the contents of two buffers containing UTF-8 strings in a ** case-independent fashion, using the same definition of "case ** independence" that SQLite uses internally when comparing identifiers. */ SQLITE_API int sqlite3_stricmp(const char *zLeft, const char *zRight){ if( zLeft==0 ){ return zRight ? -1 : 0; }else if( zRight==0 ){ return 1; } return sqlite3StrICmp(zLeft, zRight); } SQLITE_PRIVATE int sqlite3StrICmp(const char *zLeft, const char *zRight){ unsigned char *a, *b; int c, x; a = (unsigned char *)zLeft; b = (unsigned char *)zRight; for(;;){ c = *a; x = *b; if( c==x ){ if( c==0 ) break; }else{ c = (int)UpperToLower[c] - (int)UpperToLower[x]; if( c ) break; } a++; b++; } return c; } SQLITE_API int sqlite3_strnicmp(const char *zLeft, const char *zRight, int N){ register unsigned char *a, *b; if( zLeft==0 ){ return zRight ? -1 : 0; }else if( zRight==0 ){ return 1; } a = (unsigned char *)zLeft; b = (unsigned char *)zRight; while( N-- > 0 && *a!=0 && UpperToLower[*a]==UpperToLower[*b]){ a++; b++; } return N<0 ? 0 : UpperToLower[*a] - UpperToLower[*b]; } /* ** Compute an 8-bit hash on a string that is insensitive to case differences */ SQLITE_PRIVATE u8 sqlite3StrIHash(const char *z){ u8 h = 0; if( z==0 ) return 0; while( z[0] ){ h += UpperToLower[(unsigned char)z[0]]; z++; } return h; } /* ** Compute 10 to the E-th power. Examples: E==1 results in 10. ** E==2 results in 100. E==50 results in 1.0e50. ** ** This routine only works for values of E between 1 and 341. */ static LONGDOUBLE_TYPE sqlite3Pow10(int E){ #if defined(_MSC_VER) static const LONGDOUBLE_TYPE x[] = { 1.0e+001L, 1.0e+002L, 1.0e+004L, 1.0e+008L, 1.0e+016L, 1.0e+032L, 1.0e+064L, 1.0e+128L, 1.0e+256L }; LONGDOUBLE_TYPE r = 1.0; int i; assert( E>=0 && E<=307 ); for(i=0; E!=0; i++, E >>=1){ if( E & 1 ) r *= x[i]; } return r; #else LONGDOUBLE_TYPE x = 10.0; LONGDOUBLE_TYPE r = 1.0; while(1){ if( E & 1 ) r *= x; E >>= 1; if( E==0 ) break; x *= x; } return r; #endif } /* ** The string z[] is an text representation of a real number. ** Convert this string to a double and write it into *pResult. ** ** The string z[] is length bytes in length (bytes, not characters) and ** uses the encoding enc. The string is not necessarily zero-terminated. ** ** Return TRUE if the result is a valid real number (or integer) and FALSE ** if the string is empty or contains extraneous text. More specifically ** return ** 1 => The input string is a pure integer ** 2 or more => The input has a decimal point or eNNN clause ** 0 or less => The input string is not a valid number ** -1 => Not a valid number, but has a valid prefix which ** includes a decimal point and/or an eNNN clause ** ** Valid numbers are in one of these formats: ** ** [+-]digits[E[+-]digits] ** [+-]digits.[digits][E[+-]digits] ** [+-].digits[E[+-]digits] ** ** Leading and trailing whitespace is ignored for the purpose of determining ** validity. ** ** If some prefix of the input string is a valid number, this routine ** returns FALSE but it still converts the prefix and writes the result ** into *pResult. */ #if defined(_MSC_VER) #pragma warning(disable : 4756) #endif SQLITE_PRIVATE int sqlite3AtoF(const char *z, double *pResult, int length, u8 enc){ #ifndef SQLITE_OMIT_FLOATING_POINT int incr; const char *zEnd; /* sign * significand * (10 ^ (esign * exponent)) */ int sign = 1; /* sign of significand */ i64 s = 0; /* significand */ int d = 0; /* adjust exponent for shifting decimal point */ int esign = 1; /* sign of exponent */ int e = 0; /* exponent */ int eValid = 1; /* True exponent is either not used or is well-formed */ double result; int nDigit = 0; /* Number of digits processed */ int eType = 1; /* 1: pure integer, 2+: fractional -1 or less: bad UTF16 */ assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE ); *pResult = 0.0; /* Default return value, in case of an error */ if( length==0 ) return 0; if( enc==SQLITE_UTF8 ){ incr = 1; zEnd = z + length; }else{ int i; incr = 2; length &= ~1; assert( SQLITE_UTF16LE==2 && SQLITE_UTF16BE==3 ); testcase( enc==SQLITE_UTF16LE ); testcase( enc==SQLITE_UTF16BE ); for(i=3-enc; i=zEnd ) return 0; /* get sign of significand */ if( *z=='-' ){ sign = -1; z+=incr; }else if( *z=='+' ){ z+=incr; } /* copy max significant digits to significand */ while( z=((LARGEST_INT64-9)/10) ){ /* skip non-significant significand digits ** (increase exponent by d to shift decimal left) */ while( z=zEnd ) goto do_atof_calc; /* if decimal point is present */ if( *z=='.' ){ z+=incr; eType++; /* copy digits from after decimal to significand ** (decrease exponent by d to shift decimal right) */ while( z=zEnd ) goto do_atof_calc; /* if exponent is present */ if( *z=='e' || *z=='E' ){ z+=incr; eValid = 0; eType++; /* This branch is needed to avoid a (harmless) buffer overread. The ** special comment alerts the mutation tester that the correct answer ** is obtained even if the branch is omitted */ if( z>=zEnd ) goto do_atof_calc; /*PREVENTS-HARMLESS-OVERREAD*/ /* get sign of exponent */ if( *z=='-' ){ esign = -1; z+=incr; }else if( *z=='+' ){ z+=incr; } /* copy digits to exponent */ while( z0 ){ /*OPTIMIZATION-IF-TRUE*/ if( esign>0 ){ if( s>=(LARGEST_INT64/10) ) break; /*OPTIMIZATION-IF-FALSE*/ s *= 10; }else{ if( s%10!=0 ) break; /*OPTIMIZATION-IF-FALSE*/ s /= 10; } e--; } /* adjust the sign of significand */ s = sign<0 ? -s : s; if( e==0 ){ /*OPTIMIZATION-IF-TRUE*/ result = (double)s; }else{ /* attempt to handle extremely small/large numbers better */ if( e>307 ){ /*OPTIMIZATION-IF-TRUE*/ if( e<342 ){ /*OPTIMIZATION-IF-TRUE*/ LONGDOUBLE_TYPE scale = sqlite3Pow10(e-308); if( esign<0 ){ result = s / scale; result /= 1.0e+308; }else{ result = s * scale; result *= 1.0e+308; } }else{ assert( e>=342 ); if( esign<0 ){ result = 0.0*s; }else{ #ifdef INFINITY result = INFINITY*s; #else result = 1e308*1e308*s; /* Infinity */ #endif } } }else{ LONGDOUBLE_TYPE scale = sqlite3Pow10(e); if( esign<0 ){ result = s / scale; }else{ result = s * scale; } } } } /* store the result */ *pResult = result; /* return true if number and no extra non-whitespace chracters after */ if( z==zEnd && nDigit>0 && eValid && eType>0 ){ return eType; }else if( eType>=2 && (eType==3 || eValid) && nDigit>0 ){ return -1; }else{ return 0; } #else return !sqlite3Atoi64(z, pResult, length, enc); #endif /* SQLITE_OMIT_FLOATING_POINT */ } #if defined(_MSC_VER) #pragma warning(default : 4756) #endif /* ** Render an signed 64-bit integer as text. Store the result in zOut[]. ** ** The caller must ensure that zOut[] is at least 21 bytes in size. */ SQLITE_PRIVATE void sqlite3Int64ToText(i64 v, char *zOut){ int i; u64 x; char zTemp[22]; if( v<0 ){ x = (v==SMALLEST_INT64) ? ((u64)1)<<63 : (u64)-v; }else{ x = v; } i = sizeof(zTemp)-2; zTemp[sizeof(zTemp)-1] = 0; do{ zTemp[i--] = (x%10) + '0'; x = x/10; }while( x ); if( v<0 ) zTemp[i--] = '-'; memcpy(zOut, &zTemp[i+1], sizeof(zTemp)-1-i); } /* ** Compare the 19-character string zNum against the text representation ** value 2^63: 9223372036854775808. Return negative, zero, or positive ** if zNum is less than, equal to, or greater than the string. ** Note that zNum must contain exactly 19 characters. ** ** Unlike memcmp() this routine is guaranteed to return the difference ** in the values of the last digit if the only difference is in the ** last digit. So, for example, ** ** compare2pow63("9223372036854775800", 1) ** ** will return -8. */ static int compare2pow63(const char *zNum, int incr){ int c = 0; int i; /* 012345678901234567 */ const char *pow63 = "922337203685477580"; for(i=0; c==0 && i<18; i++){ c = (zNum[i*incr]-pow63[i])*10; } if( c==0 ){ c = zNum[18*incr] - '8'; testcase( c==(-1) ); testcase( c==0 ); testcase( c==(+1) ); } return c; } /* ** Convert zNum to a 64-bit signed integer. zNum must be decimal. This ** routine does *not* accept hexadecimal notation. ** ** Returns: ** ** -1 Not even a prefix of the input text looks like an integer ** 0 Successful transformation. Fits in a 64-bit signed integer. ** 1 Excess non-space text after the integer value ** 2 Integer too large for a 64-bit signed integer or is malformed ** 3 Special case of 9223372036854775808 ** ** length is the number of bytes in the string (bytes, not characters). ** The string is not necessarily zero-terminated. The encoding is ** given by enc. */ SQLITE_PRIVATE int sqlite3Atoi64(const char *zNum, i64 *pNum, int length, u8 enc){ int incr; u64 u = 0; int neg = 0; /* assume positive */ int i; int c = 0; int nonNum = 0; /* True if input contains UTF16 with high byte non-zero */ int rc; /* Baseline return code */ const char *zStart; const char *zEnd = zNum + length; assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE ); if( enc==SQLITE_UTF8 ){ incr = 1; }else{ incr = 2; assert( SQLITE_UTF16LE==2 && SQLITE_UTF16BE==3 ); for(i=3-enc; i='0' && c<='9'; i+=incr){ u = u*10 + c - '0'; } testcase( i==18*incr ); testcase( i==19*incr ); testcase( i==20*incr ); if( u>LARGEST_INT64 ){ /* This test and assignment is needed only to suppress UB warnings ** from clang and -fsanitize=undefined. This test and assignment make ** the code a little larger and slower, and no harm comes from omitting ** them, but we must appaise the undefined-behavior pharisees. */ *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; }else if( neg ){ *pNum = -(i64)u; }else{ *pNum = (i64)u; } rc = 0; if( i==0 && zStart==zNum ){ /* No digits */ rc = -1; }else if( nonNum ){ /* UTF16 with high-order bytes non-zero */ rc = 1; }else if( &zNum[i]19*incr ? 1 : compare2pow63(zNum, incr); if( c<0 ){ /* zNum is less than 9223372036854775808 so it fits */ assert( u<=LARGEST_INT64 ); return rc; }else{ *pNum = neg ? SMALLEST_INT64 : LARGEST_INT64; if( c>0 ){ /* zNum is greater than 9223372036854775808 so it overflows */ return 2; }else{ /* zNum is exactly 9223372036854775808. Fits if negative. The ** special case 2 overflow if positive */ assert( u-1==LARGEST_INT64 ); return neg ? rc : 3; } } } } /* ** Transform a UTF-8 integer literal, in either decimal or hexadecimal, ** into a 64-bit signed integer. This routine accepts hexadecimal literals, ** whereas sqlite3Atoi64() does not. ** ** Returns: ** ** 0 Successful transformation. Fits in a 64-bit signed integer. ** 1 Excess text after the integer value ** 2 Integer too large for a 64-bit signed integer or is malformed ** 3 Special case of 9223372036854775808 */ SQLITE_PRIVATE int sqlite3DecOrHexToI64(const char *z, i64 *pOut){ #ifndef SQLITE_OMIT_HEX_INTEGER if( z[0]=='0' && (z[1]=='x' || z[1]=='X') ){ u64 u = 0; int i, k; for(i=2; z[i]=='0'; i++){} for(k=i; sqlite3Isxdigit(z[k]); k++){ u = u*16 + sqlite3HexToInt(z[k]); } memcpy(pOut, &u, 8); return (z[k]==0 && k-i<=16) ? 0 : 2; }else #endif /* SQLITE_OMIT_HEX_INTEGER */ { return sqlite3Atoi64(z, pOut, sqlite3Strlen30(z), SQLITE_UTF8); } } /* ** If zNum represents an integer that will fit in 32-bits, then set ** *pValue to that integer and return true. Otherwise return false. ** ** This routine accepts both decimal and hexadecimal notation for integers. ** ** Any non-numeric characters that following zNum are ignored. ** This is different from sqlite3Atoi64() which requires the ** input number to be zero-terminated. */ SQLITE_PRIVATE int sqlite3GetInt32(const char *zNum, int *pValue){ sqlite_int64 v = 0; int i, c; int neg = 0; if( zNum[0]=='-' ){ neg = 1; zNum++; }else if( zNum[0]=='+' ){ zNum++; } #ifndef SQLITE_OMIT_HEX_INTEGER else if( zNum[0]=='0' && (zNum[1]=='x' || zNum[1]=='X') && sqlite3Isxdigit(zNum[2]) ){ u32 u = 0; zNum += 2; while( zNum[0]=='0' ) zNum++; for(i=0; sqlite3Isxdigit(zNum[i]) && i<8; i++){ u = u*16 + sqlite3HexToInt(zNum[i]); } if( (u&0x80000000)==0 && sqlite3Isxdigit(zNum[i])==0 ){ memcpy(pValue, &u, 4); return 1; }else{ return 0; } } #endif if( !sqlite3Isdigit(zNum[0]) ) return 0; while( zNum[0]=='0' ) zNum++; for(i=0; i<11 && (c = zNum[i] - '0')>=0 && c<=9; i++){ v = v*10 + c; } /* The longest decimal representation of a 32 bit integer is 10 digits: ** ** 1234567890 ** 2^31 -> 2147483648 */ testcase( i==10 ); if( i>10 ){ return 0; } testcase( v-neg==2147483647 ); if( v-neg>2147483647 ){ return 0; } if( neg ){ v = -v; } *pValue = (int)v; return 1; } /* ** Return a 32-bit integer value extracted from a string. If the ** string is not an integer, just return 0. */ SQLITE_PRIVATE int sqlite3Atoi(const char *z){ int x = 0; sqlite3GetInt32(z, &x); return x; } /* ** Try to convert z into an unsigned 32-bit integer. Return true on ** success and false if there is an error. ** ** Only decimal notation is accepted. */ SQLITE_PRIVATE int sqlite3GetUInt32(const char *z, u32 *pI){ u64 v = 0; int i; for(i=0; sqlite3Isdigit(z[i]); i++){ v = v*10 + z[i] - '0'; if( v>4294967296LL ){ *pI = 0; return 0; } } if( i==0 || z[i]!=0 ){ *pI = 0; return 0; } *pI = (u32)v; return 1; } /* ** The variable-length integer encoding is as follows: ** ** KEY: ** A = 0xxxxxxx 7 bits of data and one flag bit ** B = 1xxxxxxx 7 bits of data and one flag bit ** C = xxxxxxxx 8 bits of data ** ** 7 bits - A ** 14 bits - BA ** 21 bits - BBA ** 28 bits - BBBA ** 35 bits - BBBBA ** 42 bits - BBBBBA ** 49 bits - BBBBBBA ** 56 bits - BBBBBBBA ** 64 bits - BBBBBBBBC */ /* ** Write a 64-bit variable-length integer to memory starting at p[0]. ** The length of data write will be between 1 and 9 bytes. The number ** of bytes written is returned. ** ** A variable-length integer consists of the lower 7 bits of each byte ** for all bytes that have the 8th bit set and one byte with the 8th ** bit clear. Except, if we get to the 9th byte, it stores the full ** 8 bits and is the last byte. */ static int SQLITE_NOINLINE putVarint64(unsigned char *p, u64 v){ int i, j, n; u8 buf[10]; if( v & (((u64)0xff000000)<<32) ){ p[8] = (u8)v; v >>= 8; for(i=7; i>=0; i--){ p[i] = (u8)((v & 0x7f) | 0x80); v >>= 7; } return 9; } n = 0; do{ buf[n++] = (u8)((v & 0x7f) | 0x80); v >>= 7; }while( v!=0 ); buf[0] &= 0x7f; assert( n<=9 ); for(i=0, j=n-1; j>=0; j--, i++){ p[i] = buf[j]; } return n; } SQLITE_PRIVATE int sqlite3PutVarint(unsigned char *p, u64 v){ if( v<=0x7f ){ p[0] = v&0x7f; return 1; } if( v<=0x3fff ){ p[0] = ((v>>7)&0x7f)|0x80; p[1] = v&0x7f; return 2; } return putVarint64(p,v); } /* ** Bitmasks used by sqlite3GetVarint(). These precomputed constants ** are defined here rather than simply putting the constant expressions ** inline in order to work around bugs in the RVT compiler. ** ** SLOT_2_0 A mask for (0x7f<<14) | 0x7f ** ** SLOT_4_2_0 A mask for (0x7f<<28) | SLOT_2_0 */ #define SLOT_2_0 0x001fc07f #define SLOT_4_2_0 0xf01fc07f /* ** Read a 64-bit variable-length integer from memory starting at p[0]. ** Return the number of bytes read. The value is stored in *v. */ SQLITE_PRIVATE u8 sqlite3GetVarint(const unsigned char *p, u64 *v){ u32 a,b,s; if( ((signed char*)p)[0]>=0 ){ *v = *p; return 1; } if( ((signed char*)p)[1]>=0 ){ *v = ((u32)(p[0]&0x7f)<<7) | p[1]; return 2; } /* Verify that constants are precomputed correctly */ assert( SLOT_2_0 == ((0x7f<<14) | (0x7f)) ); assert( SLOT_4_2_0 == ((0xfU<<28) | (0x7f<<14) | (0x7f)) ); a = ((u32)p[0])<<14; b = p[1]; p += 2; a |= *p; /* a: p0<<14 | p2 (unmasked) */ if (!(a&0x80)) { a &= SLOT_2_0; b &= 0x7f; b = b<<7; a |= b; *v = a; return 3; } /* CSE1 from below */ a &= SLOT_2_0; p++; b = b<<14; b |= *p; /* b: p1<<14 | p3 (unmasked) */ if (!(b&0x80)) { b &= SLOT_2_0; /* moved CSE1 up */ /* a &= (0x7f<<14)|(0x7f); */ a = a<<7; a |= b; *v = a; return 4; } /* a: p0<<14 | p2 (masked) */ /* b: p1<<14 | p3 (unmasked) */ /* 1:save off p0<<21 | p1<<14 | p2<<7 | p3 (masked) */ /* moved CSE1 up */ /* a &= (0x7f<<14)|(0x7f); */ b &= SLOT_2_0; s = a; /* s: p0<<14 | p2 (masked) */ p++; a = a<<14; a |= *p; /* a: p0<<28 | p2<<14 | p4 (unmasked) */ if (!(a&0x80)) { /* we can skip these cause they were (effectively) done above ** while calculating s */ /* a &= (0x7f<<28)|(0x7f<<14)|(0x7f); */ /* b &= (0x7f<<14)|(0x7f); */ b = b<<7; a |= b; s = s>>18; *v = ((u64)s)<<32 | a; return 5; } /* 2:save off p0<<21 | p1<<14 | p2<<7 | p3 (masked) */ s = s<<7; s |= b; /* s: p0<<21 | p1<<14 | p2<<7 | p3 (masked) */ p++; b = b<<14; b |= *p; /* b: p1<<28 | p3<<14 | p5 (unmasked) */ if (!(b&0x80)) { /* we can skip this cause it was (effectively) done above in calc'ing s */ /* b &= (0x7f<<28)|(0x7f<<14)|(0x7f); */ a &= SLOT_2_0; a = a<<7; a |= b; s = s>>18; *v = ((u64)s)<<32 | a; return 6; } p++; a = a<<14; a |= *p; /* a: p2<<28 | p4<<14 | p6 (unmasked) */ if (!(a&0x80)) { a &= SLOT_4_2_0; b &= SLOT_2_0; b = b<<7; a |= b; s = s>>11; *v = ((u64)s)<<32 | a; return 7; } /* CSE2 from below */ a &= SLOT_2_0; p++; b = b<<14; b |= *p; /* b: p3<<28 | p5<<14 | p7 (unmasked) */ if (!(b&0x80)) { b &= SLOT_4_2_0; /* moved CSE2 up */ /* a &= (0x7f<<14)|(0x7f); */ a = a<<7; a |= b; s = s>>4; *v = ((u64)s)<<32 | a; return 8; } p++; a = a<<15; a |= *p; /* a: p4<<29 | p6<<15 | p8 (unmasked) */ /* moved CSE2 up */ /* a &= (0x7f<<29)|(0x7f<<15)|(0xff); */ b &= SLOT_2_0; b = b<<8; a |= b; s = s<<4; b = p[-4]; b &= 0x7f; b = b>>3; s |= b; *v = ((u64)s)<<32 | a; return 9; } /* ** Read a 32-bit variable-length integer from memory starting at p[0]. ** Return the number of bytes read. The value is stored in *v. ** ** If the varint stored in p[0] is larger than can fit in a 32-bit unsigned ** integer, then set *v to 0xffffffff. ** ** A MACRO version, getVarint32, is provided which inlines the ** single-byte case. All code should use the MACRO version as ** this function assumes the single-byte case has already been handled. */ SQLITE_PRIVATE u8 sqlite3GetVarint32(const unsigned char *p, u32 *v){ u32 a,b; /* The 1-byte case. Overwhelmingly the most common. Handled inline ** by the getVarin32() macro */ a = *p; /* a: p0 (unmasked) */ #ifndef getVarint32 if (!(a&0x80)) { /* Values between 0 and 127 */ *v = a; return 1; } #endif /* The 2-byte case */ p++; b = *p; /* b: p1 (unmasked) */ if (!(b&0x80)) { /* Values between 128 and 16383 */ a &= 0x7f; a = a<<7; *v = a | b; return 2; } /* The 3-byte case */ p++; a = a<<14; a |= *p; /* a: p0<<14 | p2 (unmasked) */ if (!(a&0x80)) { /* Values between 16384 and 2097151 */ a &= (0x7f<<14)|(0x7f); b &= 0x7f; b = b<<7; *v = a | b; return 3; } /* A 32-bit varint is used to store size information in btrees. ** Objects are rarely larger than 2MiB limit of a 3-byte varint. ** A 3-byte varint is sufficient, for example, to record the size ** of a 1048569-byte BLOB or string. ** ** We only unroll the first 1-, 2-, and 3- byte cases. The very ** rare larger cases can be handled by the slower 64-bit varint ** routine. */ #if 1 { u64 v64; u8 n; n = sqlite3GetVarint(p-2, &v64); assert( n>3 && n<=9 ); if( (v64 & SQLITE_MAX_U32)!=v64 ){ *v = 0xffffffff; }else{ *v = (u32)v64; } return n; } #else /* For following code (kept for historical record only) shows an ** unrolling for the 3- and 4-byte varint cases. This code is ** slightly faster, but it is also larger and much harder to test. */ p++; b = b<<14; b |= *p; /* b: p1<<14 | p3 (unmasked) */ if (!(b&0x80)) { /* Values between 2097152 and 268435455 */ b &= (0x7f<<14)|(0x7f); a &= (0x7f<<14)|(0x7f); a = a<<7; *v = a | b; return 4; } p++; a = a<<14; a |= *p; /* a: p0<<28 | p2<<14 | p4 (unmasked) */ if (!(a&0x80)) { /* Values between 268435456 and 34359738367 */ a &= SLOT_4_2_0; b &= SLOT_4_2_0; b = b<<7; *v = a | b; return 5; } /* We can only reach this point when reading a corrupt database ** file. In that case we are not in any hurry. Use the (relatively ** slow) general-purpose sqlite3GetVarint() routine to extract the ** value. */ { u64 v64; u8 n; p -= 4; n = sqlite3GetVarint(p, &v64); assert( n>5 && n<=9 ); *v = (u32)v64; return n; } #endif } /* ** Return the number of bytes that will be needed to store the given ** 64-bit integer. */ SQLITE_PRIVATE int sqlite3VarintLen(u64 v){ int i; for(i=1; (v >>= 7)!=0; i++){ assert( i<10 ); } return i; } /* ** Read or write a four-byte big-endian integer value. */ SQLITE_PRIVATE u32 sqlite3Get4byte(const u8 *p){ #if SQLITE_BYTEORDER==4321 u32 x; memcpy(&x,p,4); return x; #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 u32 x; memcpy(&x,p,4); return __builtin_bswap32(x); #elif SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 u32 x; memcpy(&x,p,4); return _byteswap_ulong(x); #else testcase( p[0]&0x80 ); return ((unsigned)p[0]<<24) | (p[1]<<16) | (p[2]<<8) | p[3]; #endif } SQLITE_PRIVATE void sqlite3Put4byte(unsigned char *p, u32 v){ #if SQLITE_BYTEORDER==4321 memcpy(p,&v,4); #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 u32 x = __builtin_bswap32(v); memcpy(p,&x,4); #elif SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 u32 x = _byteswap_ulong(v); memcpy(p,&x,4); #else p[0] = (u8)(v>>24); p[1] = (u8)(v>>16); p[2] = (u8)(v>>8); p[3] = (u8)v; #endif } /* ** Translate a single byte of Hex into an integer. ** This routine only works if h really is a valid hexadecimal ** character: 0..9a..fA..F */ SQLITE_PRIVATE u8 sqlite3HexToInt(int h){ assert( (h>='0' && h<='9') || (h>='a' && h<='f') || (h>='A' && h<='F') ); #ifdef SQLITE_ASCII h += 9*(1&(h>>6)); #endif #ifdef SQLITE_EBCDIC h += 9*(1&~(h>>4)); #endif return (u8)(h & 0xf); } #if !defined(SQLITE_OMIT_BLOB_LITERAL) /* ** Convert a BLOB literal of the form "x'hhhhhh'" into its binary ** value. Return a pointer to its binary value. Space to hold the ** binary value has been obtained from malloc and must be freed by ** the calling routine. */ SQLITE_PRIVATE void *sqlite3HexToBlob(sqlite3 *db, const char *z, int n){ char *zBlob; int i; zBlob = (char *)sqlite3DbMallocRawNN(db, n/2 + 1); n--; if( zBlob ){ for(i=0; imagic; if( magic!=SQLITE_MAGIC_OPEN ){ if( sqlite3SafetyCheckSickOrOk(db) ){ testcase( sqlite3GlobalConfig.xLog!=0 ); logBadConnection("unopened"); } return 0; }else{ return 1; } } SQLITE_PRIVATE int sqlite3SafetyCheckSickOrOk(sqlite3 *db){ u32 magic; magic = db->magic; if( magic!=SQLITE_MAGIC_SICK && magic!=SQLITE_MAGIC_OPEN && magic!=SQLITE_MAGIC_BUSY ){ testcase( sqlite3GlobalConfig.xLog!=0 ); logBadConnection("invalid"); return 0; }else{ return 1; } } /* ** Attempt to add, substract, or multiply the 64-bit signed value iB against ** the other 64-bit signed integer at *pA and store the result in *pA. ** Return 0 on success. Or if the operation would have resulted in an ** overflow, leave *pA unchanged and return 1. */ SQLITE_PRIVATE int sqlite3AddInt64(i64 *pA, i64 iB){ #if GCC_VERSION>=5004000 && !defined(__INTEL_COMPILER) return __builtin_add_overflow(*pA, iB, pA); #else i64 iA = *pA; testcase( iA==0 ); testcase( iA==1 ); testcase( iB==-1 ); testcase( iB==0 ); if( iB>=0 ){ testcase( iA>0 && LARGEST_INT64 - iA == iB ); testcase( iA>0 && LARGEST_INT64 - iA == iB - 1 ); if( iA>0 && LARGEST_INT64 - iA < iB ) return 1; }else{ testcase( iA<0 && -(iA + LARGEST_INT64) == iB + 1 ); testcase( iA<0 && -(iA + LARGEST_INT64) == iB + 2 ); if( iA<0 && -(iA + LARGEST_INT64) > iB + 1 ) return 1; } *pA += iB; return 0; #endif } SQLITE_PRIVATE int sqlite3SubInt64(i64 *pA, i64 iB){ #if GCC_VERSION>=5004000 && !defined(__INTEL_COMPILER) return __builtin_sub_overflow(*pA, iB, pA); #else testcase( iB==SMALLEST_INT64+1 ); if( iB==SMALLEST_INT64 ){ testcase( (*pA)==(-1) ); testcase( (*pA)==0 ); if( (*pA)>=0 ) return 1; *pA -= iB; return 0; }else{ return sqlite3AddInt64(pA, -iB); } #endif } SQLITE_PRIVATE int sqlite3MulInt64(i64 *pA, i64 iB){ #if GCC_VERSION>=5004000 && !defined(__INTEL_COMPILER) return __builtin_mul_overflow(*pA, iB, pA); #else i64 iA = *pA; if( iB>0 ){ if( iA>LARGEST_INT64/iB ) return 1; if( iA0 ){ if( iBLARGEST_INT64/-iB ) return 1; } } *pA = iA*iB; return 0; #endif } /* ** Compute the absolute value of a 32-bit signed integer, of possible. Or ** if the integer has a value of -2147483648, return +2147483647 */ SQLITE_PRIVATE int sqlite3AbsInt32(int x){ if( x>=0 ) return x; if( x==(int)0x80000000 ) return 0x7fffffff; return -x; } #ifdef SQLITE_ENABLE_8_3_NAMES /* ** If SQLITE_ENABLE_8_3_NAMES is set at compile-time and if the database ** filename in zBaseFilename is a URI with the "8_3_names=1" parameter and ** if filename in z[] has a suffix (a.k.a. "extension") that is longer than ** three characters, then shorten the suffix on z[] to be the last three ** characters of the original suffix. ** ** If SQLITE_ENABLE_8_3_NAMES is set to 2 at compile-time, then always ** do the suffix shortening regardless of URI parameter. ** ** Examples: ** ** test.db-journal => test.nal ** test.db-wal => test.wal ** test.db-shm => test.shm ** test.db-mj7f3319fa => test.9fa */ SQLITE_PRIVATE void sqlite3FileSuffix3(const char *zBaseFilename, char *z){ #if SQLITE_ENABLE_8_3_NAMES<2 if( sqlite3_uri_boolean(zBaseFilename, "8_3_names", 0) ) #endif { int i, sz; sz = sqlite3Strlen30(z); for(i=sz-1; i>0 && z[i]!='/' && z[i]!='.'; i--){} if( z[i]=='.' && ALWAYS(sz>i+4) ) memmove(&z[i+1], &z[sz-3], 4); } } #endif /* ** Find (an approximate) sum of two LogEst values. This computation is ** not a simple "+" operator because LogEst is stored as a logarithmic ** value. ** */ SQLITE_PRIVATE LogEst sqlite3LogEstAdd(LogEst a, LogEst b){ static const unsigned char x[] = { 10, 10, /* 0,1 */ 9, 9, /* 2,3 */ 8, 8, /* 4,5 */ 7, 7, 7, /* 6,7,8 */ 6, 6, 6, /* 9,10,11 */ 5, 5, 5, /* 12-14 */ 4, 4, 4, 4, /* 15-18 */ 3, 3, 3, 3, 3, 3, /* 19-24 */ 2, 2, 2, 2, 2, 2, 2, /* 25-31 */ }; if( a>=b ){ if( a>b+49 ) return a; if( a>b+31 ) return a+1; return a+x[a-b]; }else{ if( b>a+49 ) return b; if( b>a+31 ) return b+1; return b+x[b-a]; } } /* ** Convert an integer into a LogEst. In other words, compute an ** approximation for 10*log2(x). */ SQLITE_PRIVATE LogEst sqlite3LogEst(u64 x){ static LogEst a[] = { 0, 2, 3, 5, 6, 7, 8, 9 }; LogEst y = 40; if( x<8 ){ if( x<2 ) return 0; while( x<8 ){ y -= 10; x <<= 1; } }else{ #if GCC_VERSION>=5004000 int i = 60 - __builtin_clzll(x); y += i*10; x >>= i; #else while( x>255 ){ y += 40; x >>= 4; } /*OPTIMIZATION-IF-TRUE*/ while( x>15 ){ y += 10; x >>= 1; } #endif } return a[x&7] + y - 10; } #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Convert a double into a LogEst ** In other words, compute an approximation for 10*log2(x). */ SQLITE_PRIVATE LogEst sqlite3LogEstFromDouble(double x){ u64 a; LogEst e; assert( sizeof(x)==8 && sizeof(a)==8 ); if( x<=1 ) return 0; if( x<=2000000000 ) return sqlite3LogEst((u64)x); memcpy(&a, &x, 8); e = (a>>52) - 1022; return e*10; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #if defined(SQLITE_ENABLE_STMT_SCANSTATUS) || \ defined(SQLITE_ENABLE_STAT4) || \ defined(SQLITE_EXPLAIN_ESTIMATED_ROWS) /* ** Convert a LogEst into an integer. ** ** Note that this routine is only used when one or more of various ** non-standard compile-time options is enabled. */ SQLITE_PRIVATE u64 sqlite3LogEstToInt(LogEst x){ u64 n; n = x%10; x /= 10; if( n>=5 ) n -= 2; else if( n>=1 ) n -= 1; #if defined(SQLITE_ENABLE_STMT_SCANSTATUS) || \ defined(SQLITE_EXPLAIN_ESTIMATED_ROWS) if( x>60 ) return (u64)LARGEST_INT64; #else /* If only SQLITE_ENABLE_STAT4 is on, then the largest input ** possible to this routine is 310, resulting in a maximum x of 31 */ assert( x<=60 ); #endif return x>=3 ? (n+8)<<(x-3) : (n+8)>>(3-x); } #endif /* defined SCANSTAT or STAT4 or ESTIMATED_ROWS */ /* ** Add a new name/number pair to a VList. This might require that the ** VList object be reallocated, so return the new VList. If an OOM ** error occurs, the original VList returned and the ** db->mallocFailed flag is set. ** ** A VList is really just an array of integers. To destroy a VList, ** simply pass it to sqlite3DbFree(). ** ** The first integer is the number of integers allocated for the whole ** VList. The second integer is the number of integers actually used. ** Each name/number pair is encoded by subsequent groups of 3 or more ** integers. ** ** Each name/number pair starts with two integers which are the numeric ** value for the pair and the size of the name/number pair, respectively. ** The text name overlays one or more following integers. The text name ** is always zero-terminated. ** ** Conceptually: ** ** struct VList { ** int nAlloc; // Number of allocated slots ** int nUsed; // Number of used slots ** struct VListEntry { ** int iValue; // Value for this entry ** int nSlot; // Slots used by this entry ** // ... variable name goes here ** } a[0]; ** } ** ** During code generation, pointers to the variable names within the ** VList are taken. When that happens, nAlloc is set to zero as an ** indication that the VList may never again be enlarged, since the ** accompanying realloc() would invalidate the pointers. */ SQLITE_PRIVATE VList *sqlite3VListAdd( sqlite3 *db, /* The database connection used for malloc() */ VList *pIn, /* The input VList. Might be NULL */ const char *zName, /* Name of symbol to add */ int nName, /* Bytes of text in zName */ int iVal /* Value to associate with zName */ ){ int nInt; /* number of sizeof(int) objects needed for zName */ char *z; /* Pointer to where zName will be stored */ int i; /* Index in pIn[] where zName is stored */ nInt = nName/4 + 3; assert( pIn==0 || pIn[0]>=3 ); /* Verify ok to add new elements */ if( pIn==0 || pIn[1]+nInt > pIn[0] ){ /* Enlarge the allocation */ sqlite3_int64 nAlloc = (pIn ? 2*(sqlite3_int64)pIn[0] : 10) + nInt; VList *pOut = sqlite3DbRealloc(db, pIn, nAlloc*sizeof(int)); if( pOut==0 ) return pIn; if( pIn==0 ) pOut[1] = 2; pIn = pOut; pIn[0] = nAlloc; } i = pIn[1]; pIn[i] = iVal; pIn[i+1] = nInt; z = (char*)&pIn[i+2]; pIn[1] = i+nInt; assert( pIn[1]<=pIn[0] ); memcpy(z, zName, nName); z[nName] = 0; return pIn; } /* ** Return a pointer to the name of a variable in the given VList that ** has the value iVal. Or return a NULL if there is no such variable in ** the list */ SQLITE_PRIVATE const char *sqlite3VListNumToName(VList *pIn, int iVal){ int i, mx; if( pIn==0 ) return 0; mx = pIn[1]; i = 2; do{ if( pIn[i]==iVal ) return (char*)&pIn[i+2]; i += pIn[i+1]; }while( i */ /* Turn bulk memory into a hash table object by initializing the ** fields of the Hash structure. ** ** "pNew" is a pointer to the hash table that is to be initialized. */ SQLITE_PRIVATE void sqlite3HashInit(Hash *pNew){ assert( pNew!=0 ); pNew->first = 0; pNew->count = 0; pNew->htsize = 0; pNew->ht = 0; } /* Remove all entries from a hash table. Reclaim all memory. ** Call this routine to delete a hash table or to reset a hash table ** to the empty state. */ SQLITE_PRIVATE void sqlite3HashClear(Hash *pH){ HashElem *elem; /* For looping over all elements of the table */ assert( pH!=0 ); elem = pH->first; pH->first = 0; sqlite3_free(pH->ht); pH->ht = 0; pH->htsize = 0; while( elem ){ HashElem *next_elem = elem->next; sqlite3_free(elem); elem = next_elem; } pH->count = 0; } /* ** The hashing function. */ static unsigned int strHash(const char *z){ unsigned int h = 0; unsigned char c; while( (c = (unsigned char)*z++)!=0 ){ /*OPTIMIZATION-IF-TRUE*/ /* Knuth multiplicative hashing. (Sorting & Searching, p. 510). ** 0x9e3779b1 is 2654435761 which is the closest prime number to ** (2**32)*golden_ratio, where golden_ratio = (sqrt(5) - 1)/2. */ h += sqlite3UpperToLower[c]; h *= 0x9e3779b1; } return h; } /* Link pNew element into the hash table pH. If pEntry!=0 then also ** insert pNew into the pEntry hash bucket. */ static void insertElement( Hash *pH, /* The complete hash table */ struct _ht *pEntry, /* The entry into which pNew is inserted */ HashElem *pNew /* The element to be inserted */ ){ HashElem *pHead; /* First element already in pEntry */ if( pEntry ){ pHead = pEntry->count ? pEntry->chain : 0; pEntry->count++; pEntry->chain = pNew; }else{ pHead = 0; } if( pHead ){ pNew->next = pHead; pNew->prev = pHead->prev; if( pHead->prev ){ pHead->prev->next = pNew; } else { pH->first = pNew; } pHead->prev = pNew; }else{ pNew->next = pH->first; if( pH->first ){ pH->first->prev = pNew; } pNew->prev = 0; pH->first = pNew; } } /* Resize the hash table so that it cantains "new_size" buckets. ** ** The hash table might fail to resize if sqlite3_malloc() fails or ** if the new size is the same as the prior size. ** Return TRUE if the resize occurs and false if not. */ static int rehash(Hash *pH, unsigned int new_size){ struct _ht *new_ht; /* The new hash table */ HashElem *elem, *next_elem; /* For looping over existing elements */ #if SQLITE_MALLOC_SOFT_LIMIT>0 if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){ new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht); } if( new_size==pH->htsize ) return 0; #endif /* The inability to allocates space for a larger hash table is ** a performance hit but it is not a fatal error. So mark the ** allocation as a benign. Use sqlite3Malloc()/memset(0) instead of ** sqlite3MallocZero() to make the allocation, as sqlite3MallocZero() ** only zeroes the requested number of bytes whereas this module will ** use the actual amount of space allocated for the hash table (which ** may be larger than the requested amount). */ sqlite3BeginBenignMalloc(); new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) ); sqlite3EndBenignMalloc(); if( new_ht==0 ) return 0; sqlite3_free(pH->ht); pH->ht = new_ht; pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht); memset(new_ht, 0, new_size*sizeof(struct _ht)); for(elem=pH->first, pH->first=0; elem; elem = next_elem){ unsigned int h = strHash(elem->pKey) % new_size; next_elem = elem->next; insertElement(pH, &new_ht[h], elem); } return 1; } /* This function (for internal use only) locates an element in an ** hash table that matches the given key. If no element is found, ** a pointer to a static null element with HashElem.data==0 is returned. ** If pH is not NULL, then the hash for this key is written to *pH. */ static HashElem *findElementWithHash( const Hash *pH, /* The pH to be searched */ const char *pKey, /* The key we are searching for */ unsigned int *pHash /* Write the hash value here */ ){ HashElem *elem; /* Used to loop thru the element list */ unsigned int count; /* Number of elements left to test */ unsigned int h; /* The computed hash */ static HashElem nullElement = { 0, 0, 0, 0 }; if( pH->ht ){ /*OPTIMIZATION-IF-TRUE*/ struct _ht *pEntry; h = strHash(pKey) % pH->htsize; pEntry = &pH->ht[h]; elem = pEntry->chain; count = pEntry->count; }else{ h = 0; elem = pH->first; count = pH->count; } if( pHash ) *pHash = h; while( count-- ){ assert( elem!=0 ); if( sqlite3StrICmp(elem->pKey,pKey)==0 ){ return elem; } elem = elem->next; } return &nullElement; } /* Remove a single entry from the hash table given a pointer to that ** element and a hash on the element's key. */ static void removeElementGivenHash( Hash *pH, /* The pH containing "elem" */ HashElem* elem, /* The element to be removed from the pH */ unsigned int h /* Hash value for the element */ ){ struct _ht *pEntry; if( elem->prev ){ elem->prev->next = elem->next; }else{ pH->first = elem->next; } if( elem->next ){ elem->next->prev = elem->prev; } if( pH->ht ){ pEntry = &pH->ht[h]; if( pEntry->chain==elem ){ pEntry->chain = elem->next; } assert( pEntry->count>0 ); pEntry->count--; } sqlite3_free( elem ); pH->count--; if( pH->count==0 ){ assert( pH->first==0 ); assert( pH->count==0 ); sqlite3HashClear(pH); } } /* Attempt to locate an element of the hash table pH with a key ** that matches pKey. Return the data for this element if it is ** found, or NULL if there is no match. */ SQLITE_PRIVATE void *sqlite3HashFind(const Hash *pH, const char *pKey){ assert( pH!=0 ); assert( pKey!=0 ); return findElementWithHash(pH, pKey, 0)->data; } /* Insert an element into the hash table pH. The key is pKey ** and the data is "data". ** ** If no element exists with a matching key, then a new ** element is created and NULL is returned. ** ** If another element already exists with the same key, then the ** new data replaces the old data and the old data is returned. ** The key is not copied in this instance. If a malloc fails, then ** the new data is returned and the hash table is unchanged. ** ** If the "data" parameter to this function is NULL, then the ** element corresponding to "key" is removed from the hash table. */ SQLITE_PRIVATE void *sqlite3HashInsert(Hash *pH, const char *pKey, void *data){ unsigned int h; /* the hash of the key modulo hash table size */ HashElem *elem; /* Used to loop thru the element list */ HashElem *new_elem; /* New element added to the pH */ assert( pH!=0 ); assert( pKey!=0 ); elem = findElementWithHash(pH,pKey,&h); if( elem->data ){ void *old_data = elem->data; if( data==0 ){ removeElementGivenHash(pH,elem,h); }else{ elem->data = data; elem->pKey = pKey; } return old_data; } if( data==0 ) return 0; new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) ); if( new_elem==0 ) return data; new_elem->pKey = pKey; new_elem->data = data; pH->count++; if( pH->count>=10 && pH->count > 2*pH->htsize ){ if( rehash(pH, pH->count*2) ){ assert( pH->htsize>0 ); h = strHash(pKey) % pH->htsize; } } insertElement(pH, pH->ht ? &pH->ht[h] : 0, new_elem); return 0; } /************** End of hash.c ************************************************/ /************** Begin file opcodes.c *****************************************/ /* Automatically generated. Do not edit */ /* See the tool/mkopcodec.tcl script for details. */ #if !defined(SQLITE_OMIT_EXPLAIN) \ || defined(VDBE_PROFILE) \ || defined(SQLITE_DEBUG) #if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) || defined(SQLITE_DEBUG) # define OpHelp(X) "\0" X #else # define OpHelp(X) #endif SQLITE_PRIVATE const char *sqlite3OpcodeName(int i){ static const char *const azName[] = { /* 0 */ "Savepoint" OpHelp(""), /* 1 */ "AutoCommit" OpHelp(""), /* 2 */ "Transaction" OpHelp(""), /* 3 */ "SorterNext" OpHelp(""), /* 4 */ "Prev" OpHelp(""), /* 5 */ "Next" OpHelp(""), /* 6 */ "Checkpoint" OpHelp(""), /* 7 */ "JournalMode" OpHelp(""), /* 8 */ "Vacuum" OpHelp(""), /* 9 */ "VFilter" OpHelp("iplan=r[P3] zplan='P4'"), /* 10 */ "VUpdate" OpHelp("data=r[P3@P2]"), /* 11 */ "Goto" OpHelp(""), /* 12 */ "Gosub" OpHelp(""), /* 13 */ "InitCoroutine" OpHelp(""), /* 14 */ "Yield" OpHelp(""), /* 15 */ "MustBeInt" OpHelp(""), /* 16 */ "Jump" OpHelp(""), /* 17 */ "Once" OpHelp(""), /* 18 */ "If" OpHelp(""), /* 19 */ "Not" OpHelp("r[P2]= !r[P1]"), /* 20 */ "IfNot" OpHelp(""), /* 21 */ "IfNullRow" OpHelp("if P1.nullRow then r[P3]=NULL, goto P2"), /* 22 */ "SeekLT" OpHelp("key=r[P3@P4]"), /* 23 */ "SeekLE" OpHelp("key=r[P3@P4]"), /* 24 */ "SeekGE" OpHelp("key=r[P3@P4]"), /* 25 */ "SeekGT" OpHelp("key=r[P3@P4]"), /* 26 */ "IfNotOpen" OpHelp("if( !csr[P1] ) goto P2"), /* 27 */ "IfNoHope" OpHelp("key=r[P3@P4]"), /* 28 */ "NoConflict" OpHelp("key=r[P3@P4]"), /* 29 */ "NotFound" OpHelp("key=r[P3@P4]"), /* 30 */ "Found" OpHelp("key=r[P3@P4]"), /* 31 */ "SeekRowid" OpHelp("intkey=r[P3]"), /* 32 */ "NotExists" OpHelp("intkey=r[P3]"), /* 33 */ "Last" OpHelp(""), /* 34 */ "IfSmaller" OpHelp(""), /* 35 */ "SorterSort" OpHelp(""), /* 36 */ "Sort" OpHelp(""), /* 37 */ "Rewind" OpHelp(""), /* 38 */ "IdxLE" OpHelp("key=r[P3@P4]"), /* 39 */ "IdxGT" OpHelp("key=r[P3@P4]"), /* 40 */ "IdxLT" OpHelp("key=r[P3@P4]"), /* 41 */ "IdxGE" OpHelp("key=r[P3@P4]"), /* 42 */ "RowSetRead" OpHelp("r[P3]=rowset(P1)"), /* 43 */ "Or" OpHelp("r[P3]=(r[P1] || r[P2])"), /* 44 */ "And" OpHelp("r[P3]=(r[P1] && r[P2])"), /* 45 */ "RowSetTest" OpHelp("if r[P3] in rowset(P1) goto P2"), /* 46 */ "Program" OpHelp(""), /* 47 */ "FkIfZero" OpHelp("if fkctr[P1]==0 goto P2"), /* 48 */ "IfPos" OpHelp("if r[P1]>0 then r[P1]-=P3, goto P2"), /* 49 */ "IfNotZero" OpHelp("if r[P1]!=0 then r[P1]--, goto P2"), /* 50 */ "IsNull" OpHelp("if r[P1]==NULL goto P2"), /* 51 */ "NotNull" OpHelp("if r[P1]!=NULL goto P2"), /* 52 */ "Ne" OpHelp("IF r[P3]!=r[P1]"), /* 53 */ "Eq" OpHelp("IF r[P3]==r[P1]"), /* 54 */ "Gt" OpHelp("IF r[P3]>r[P1]"), /* 55 */ "Le" OpHelp("IF r[P3]<=r[P1]"), /* 56 */ "Lt" OpHelp("IF r[P3]=r[P1]"), /* 58 */ "ElseNotEq" OpHelp(""), /* 59 */ "DecrJumpZero" OpHelp("if (--r[P1])==0 goto P2"), /* 60 */ "IncrVacuum" OpHelp(""), /* 61 */ "VNext" OpHelp(""), /* 62 */ "Init" OpHelp("Start at P2"), /* 63 */ "PureFunc" OpHelp("r[P3]=func(r[P2@NP])"), /* 64 */ "Function" OpHelp("r[P3]=func(r[P2@NP])"), /* 65 */ "Return" OpHelp(""), /* 66 */ "EndCoroutine" OpHelp(""), /* 67 */ "HaltIfNull" OpHelp("if r[P3]=null halt"), /* 68 */ "Halt" OpHelp(""), /* 69 */ "Integer" OpHelp("r[P2]=P1"), /* 70 */ "Int64" OpHelp("r[P2]=P4"), /* 71 */ "String" OpHelp("r[P2]='P4' (len=P1)"), /* 72 */ "Null" OpHelp("r[P2..P3]=NULL"), /* 73 */ "SoftNull" OpHelp("r[P1]=NULL"), /* 74 */ "Blob" OpHelp("r[P2]=P4 (len=P1)"), /* 75 */ "Variable" OpHelp("r[P2]=parameter(P1,P4)"), /* 76 */ "Move" OpHelp("r[P2@P3]=r[P1@P3]"), /* 77 */ "Copy" OpHelp("r[P2@P3+1]=r[P1@P3+1]"), /* 78 */ "SCopy" OpHelp("r[P2]=r[P1]"), /* 79 */ "IntCopy" OpHelp("r[P2]=r[P1]"), /* 80 */ "ResultRow" OpHelp("output=r[P1@P2]"), /* 81 */ "CollSeq" OpHelp(""), /* 82 */ "AddImm" OpHelp("r[P1]=r[P1]+P2"), /* 83 */ "RealAffinity" OpHelp(""), /* 84 */ "Cast" OpHelp("affinity(r[P1])"), /* 85 */ "Permutation" OpHelp(""), /* 86 */ "Compare" OpHelp("r[P1@P3] <-> r[P2@P3]"), /* 87 */ "IsTrue" OpHelp("r[P2] = coalesce(r[P1]==TRUE,P3) ^ P4"), /* 88 */ "Offset" OpHelp("r[P3] = sqlite_offset(P1)"), /* 89 */ "Column" OpHelp("r[P3]=PX"), /* 90 */ "Affinity" OpHelp("affinity(r[P1@P2])"), /* 91 */ "MakeRecord" OpHelp("r[P3]=mkrec(r[P1@P2])"), /* 92 */ "Count" OpHelp("r[P2]=count()"), /* 93 */ "ReadCookie" OpHelp(""), /* 94 */ "SetCookie" OpHelp(""), /* 95 */ "ReopenIdx" OpHelp("root=P2 iDb=P3"), /* 96 */ "OpenRead" OpHelp("root=P2 iDb=P3"), /* 97 */ "OpenWrite" OpHelp("root=P2 iDb=P3"), /* 98 */ "OpenDup" OpHelp(""), /* 99 */ "OpenAutoindex" OpHelp("nColumn=P2"), /* 100 */ "OpenEphemeral" OpHelp("nColumn=P2"), /* 101 */ "BitAnd" OpHelp("r[P3]=r[P1]&r[P2]"), /* 102 */ "BitOr" OpHelp("r[P3]=r[P1]|r[P2]"), /* 103 */ "ShiftLeft" OpHelp("r[P3]=r[P2]<>r[P1]"), /* 105 */ "Add" OpHelp("r[P3]=r[P1]+r[P2]"), /* 106 */ "Subtract" OpHelp("r[P3]=r[P2]-r[P1]"), /* 107 */ "Multiply" OpHelp("r[P3]=r[P1]*r[P2]"), /* 108 */ "Divide" OpHelp("r[P3]=r[P2]/r[P1]"), /* 109 */ "Remainder" OpHelp("r[P3]=r[P2]%r[P1]"), /* 110 */ "Concat" OpHelp("r[P3]=r[P2]+r[P1]"), /* 111 */ "SorterOpen" OpHelp(""), /* 112 */ "BitNot" OpHelp("r[P2]= ~r[P1]"), /* 113 */ "SequenceTest" OpHelp("if( cursor[P1].ctr++ ) pc = P2"), /* 114 */ "OpenPseudo" OpHelp("P3 columns in r[P2]"), /* 115 */ "String8" OpHelp("r[P2]='P4'"), /* 116 */ "Close" OpHelp(""), /* 117 */ "ColumnsUsed" OpHelp(""), /* 118 */ "SeekHit" OpHelp("seekHit=P2"), /* 119 */ "Sequence" OpHelp("r[P2]=cursor[P1].ctr++"), /* 120 */ "NewRowid" OpHelp("r[P2]=rowid"), /* 121 */ "Insert" OpHelp("intkey=r[P3] data=r[P2]"), /* 122 */ "Delete" OpHelp(""), /* 123 */ "ResetCount" OpHelp(""), /* 124 */ "SorterCompare" OpHelp("if key(P1)!=trim(r[P3],P4) goto P2"), /* 125 */ "SorterData" OpHelp("r[P2]=data"), /* 126 */ "RowData" OpHelp("r[P2]=data"), /* 127 */ "Rowid" OpHelp("r[P2]=rowid"), /* 128 */ "NullRow" OpHelp(""), /* 129 */ "SeekEnd" OpHelp(""), /* 130 */ "IdxInsert" OpHelp("key=r[P2]"), /* 131 */ "SorterInsert" OpHelp("key=r[P2]"), /* 132 */ "IdxDelete" OpHelp("key=r[P2@P3]"), /* 133 */ "DeferredSeek" OpHelp("Move P3 to P1.rowid if needed"), /* 134 */ "IdxRowid" OpHelp("r[P2]=rowid"), /* 135 */ "FinishSeek" OpHelp(""), /* 136 */ "Destroy" OpHelp(""), /* 137 */ "Clear" OpHelp(""), /* 138 */ "ResetSorter" OpHelp(""), /* 139 */ "CreateBtree" OpHelp("r[P2]=root iDb=P1 flags=P3"), /* 140 */ "SqlExec" OpHelp(""), /* 141 */ "ParseSchema" OpHelp(""), /* 142 */ "LoadAnalysis" OpHelp(""), /* 143 */ "DropTable" OpHelp(""), /* 144 */ "DropIndex" OpHelp(""), /* 145 */ "DropTrigger" OpHelp(""), /* 146 */ "IntegrityCk" OpHelp(""), /* 147 */ "RowSetAdd" OpHelp("rowset(P1)=r[P2]"), /* 148 */ "Param" OpHelp(""), /* 149 */ "FkCounter" OpHelp("fkctr[P1]+=P2"), /* 150 */ "Real" OpHelp("r[P2]=P4"), /* 151 */ "MemMax" OpHelp("r[P1]=max(r[P1],r[P2])"), /* 152 */ "OffsetLimit" OpHelp("if r[P1]>0 then r[P2]=r[P1]+max(0,r[P3]) else r[P2]=(-1)"), /* 153 */ "AggInverse" OpHelp("accum=r[P3] inverse(r[P2@P5])"), /* 154 */ "AggStep" OpHelp("accum=r[P3] step(r[P2@P5])"), /* 155 */ "AggStep1" OpHelp("accum=r[P3] step(r[P2@P5])"), /* 156 */ "AggValue" OpHelp("r[P3]=value N=P2"), /* 157 */ "AggFinal" OpHelp("accum=r[P1] N=P2"), /* 158 */ "Expire" OpHelp(""), /* 159 */ "CursorLock" OpHelp(""), /* 160 */ "CursorUnlock" OpHelp(""), /* 161 */ "TableLock" OpHelp("iDb=P1 root=P2 write=P3"), /* 162 */ "VBegin" OpHelp(""), /* 163 */ "VCreate" OpHelp(""), /* 164 */ "VDestroy" OpHelp(""), /* 165 */ "VOpen" OpHelp(""), /* 166 */ "VColumn" OpHelp("r[P3]=vcolumn(P2)"), /* 167 */ "VRename" OpHelp(""), /* 168 */ "Pagecount" OpHelp(""), /* 169 */ "MaxPgcnt" OpHelp(""), /* 170 */ "Trace" OpHelp(""), /* 171 */ "CursorHint" OpHelp(""), /* 172 */ "ReleaseReg" OpHelp("release r[P1@P2] mask P3"), /* 173 */ "Noop" OpHelp(""), /* 174 */ "Explain" OpHelp(""), /* 175 */ "Abortable" OpHelp(""), }; return azName[i]; } #endif /************** End of opcodes.c *********************************************/ /************** Begin file os_unix.c *****************************************/ /* ** 2004 May 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains the VFS implementation for unix-like operating systems ** include Linux, MacOSX, *BSD, QNX, VxWorks, AIX, HPUX, and others. ** ** There are actually several different VFS implementations in this file. ** The differences are in the way that file locking is done. The default ** implementation uses Posix Advisory Locks. Alternative implementations ** use flock(), dot-files, various proprietary locking schemas, or simply ** skip locking all together. ** ** This source file is organized into divisions where the logic for various ** subfunctions is contained within the appropriate division. PLEASE ** KEEP THE STRUCTURE OF THIS FILE INTACT. New code should be placed ** in the correct division and should be clearly labeled. ** ** The layout of divisions is as follows: ** ** * General-purpose declarations and utility functions. ** * Unique file ID logic used by VxWorks. ** * Various locking primitive implementations (all except proxy locking): ** + for Posix Advisory Locks ** + for no-op locks ** + for dot-file locks ** + for flock() locking ** + for named semaphore locks (VxWorks only) ** + for AFP filesystem locks (MacOSX only) ** * sqlite3_file methods not associated with locking. ** * Definitions of sqlite3_io_methods objects for all locking ** methods plus "finder" functions for each locking method. ** * sqlite3_vfs method implementations. ** * Locking primitives for the proxy uber-locking-method. (MacOSX only) ** * Definitions of sqlite3_vfs objects for all locking methods ** plus implementations of sqlite3_os_init() and sqlite3_os_end(). */ /* #include "sqliteInt.h" */ #if SQLITE_OS_UNIX /* This file is used on unix only */ /* ** There are various methods for file locking used for concurrency ** control: ** ** 1. POSIX locking (the default), ** 2. No locking, ** 3. Dot-file locking, ** 4. flock() locking, ** 5. AFP locking (OSX only), ** 6. Named POSIX semaphores (VXWorks only), ** 7. proxy locking. (OSX only) ** ** Styles 4, 5, and 7 are only available of SQLITE_ENABLE_LOCKING_STYLE ** is defined to 1. The SQLITE_ENABLE_LOCKING_STYLE also enables automatic ** selection of the appropriate locking style based on the filesystem ** where the database is located. */ #if !defined(SQLITE_ENABLE_LOCKING_STYLE) # if defined(__APPLE__) # define SQLITE_ENABLE_LOCKING_STYLE 1 # else # define SQLITE_ENABLE_LOCKING_STYLE 0 # endif #endif /* Use pread() and pwrite() if they are available */ #if defined(__APPLE__) # define HAVE_PREAD 1 # define HAVE_PWRITE 1 #endif #if defined(HAVE_PREAD64) && defined(HAVE_PWRITE64) # undef USE_PREAD # define USE_PREAD64 1 #elif defined(HAVE_PREAD) && defined(HAVE_PWRITE) # undef USE_PREAD64 # define USE_PREAD 1 #endif /* ** standard include files. */ #include #include #include #include #include /* #include */ #include #include #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 # include #endif #if SQLITE_ENABLE_LOCKING_STYLE /* # include */ # include # include #endif /* SQLITE_ENABLE_LOCKING_STYLE */ /* ** Try to determine if gethostuuid() is available based on standard ** macros. This might sometimes compute the wrong value for some ** obscure platforms. For those cases, simply compile with one of ** the following: ** ** -DHAVE_GETHOSTUUID=0 ** -DHAVE_GETHOSTUUID=1 ** ** None if this matters except when building on Apple products with ** -DSQLITE_ENABLE_LOCKING_STYLE. */ #ifndef HAVE_GETHOSTUUID # define HAVE_GETHOSTUUID 0 # if defined(__APPLE__) && ((__MAC_OS_X_VERSION_MIN_REQUIRED > 1050) || \ (__IPHONE_OS_VERSION_MIN_REQUIRED > 2000)) # if (!defined(TARGET_OS_EMBEDDED) || (TARGET_OS_EMBEDDED==0)) \ && (!defined(TARGET_IPHONE_SIMULATOR) || (TARGET_IPHONE_SIMULATOR==0)) # undef HAVE_GETHOSTUUID # define HAVE_GETHOSTUUID 1 # else # warning "gethostuuid() is disabled." # endif # endif #endif #if OS_VXWORKS /* # include */ # include # include #endif /* OS_VXWORKS */ #if defined(__APPLE__) || SQLITE_ENABLE_LOCKING_STYLE # include #endif #ifdef HAVE_UTIME # include #endif /* ** Allowed values of unixFile.fsFlags */ #define SQLITE_FSFLAGS_IS_MSDOS 0x1 /* ** If we are to be thread-safe, include the pthreads header. */ #if SQLITE_THREADSAFE /* # include */ #endif /* ** Default permissions when creating a new file */ #ifndef SQLITE_DEFAULT_FILE_PERMISSIONS # define SQLITE_DEFAULT_FILE_PERMISSIONS 0644 #endif /* ** Default permissions when creating auto proxy dir */ #ifndef SQLITE_DEFAULT_PROXYDIR_PERMISSIONS # define SQLITE_DEFAULT_PROXYDIR_PERMISSIONS 0755 #endif /* ** Maximum supported path-length. */ #define MAX_PATHNAME 512 /* ** Maximum supported symbolic links */ #define SQLITE_MAX_SYMLINKS 100 /* Always cast the getpid() return type for compatibility with ** kernel modules in VxWorks. */ #define osGetpid(X) (pid_t)getpid() /* ** Only set the lastErrno if the error code is a real error and not ** a normal expected return code of SQLITE_BUSY or SQLITE_OK */ #define IS_LOCK_ERROR(x) ((x != SQLITE_OK) && (x != SQLITE_BUSY)) /* Forward references */ typedef struct unixShm unixShm; /* Connection shared memory */ typedef struct unixShmNode unixShmNode; /* Shared memory instance */ typedef struct unixInodeInfo unixInodeInfo; /* An i-node */ typedef struct UnixUnusedFd UnixUnusedFd; /* An unused file descriptor */ /* ** Sometimes, after a file handle is closed by SQLite, the file descriptor ** cannot be closed immediately. In these cases, instances of the following ** structure are used to store the file descriptor while waiting for an ** opportunity to either close or reuse it. */ struct UnixUnusedFd { int fd; /* File descriptor to close */ int flags; /* Flags this file descriptor was opened with */ UnixUnusedFd *pNext; /* Next unused file descriptor on same file */ }; /* ** The unixFile structure is subclass of sqlite3_file specific to the unix ** VFS implementations. */ typedef struct unixFile unixFile; struct unixFile { sqlite3_io_methods const *pMethod; /* Always the first entry */ sqlite3_vfs *pVfs; /* The VFS that created this unixFile */ unixInodeInfo *pInode; /* Info about locks on this inode */ int h; /* The file descriptor */ unsigned char eFileLock; /* The type of lock held on this fd */ unsigned short int ctrlFlags; /* Behavioral bits. UNIXFILE_* flags */ int lastErrno; /* The unix errno from last I/O error */ void *lockingContext; /* Locking style specific state */ UnixUnusedFd *pPreallocatedUnused; /* Pre-allocated UnixUnusedFd */ const char *zPath; /* Name of the file */ unixShm *pShm; /* Shared memory segment information */ int szChunk; /* Configured by FCNTL_CHUNK_SIZE */ #if SQLITE_MAX_MMAP_SIZE>0 int nFetchOut; /* Number of outstanding xFetch refs */ sqlite3_int64 mmapSize; /* Usable size of mapping at pMapRegion */ sqlite3_int64 mmapSizeActual; /* Actual size of mapping at pMapRegion */ sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */ void *pMapRegion; /* Memory mapped region */ #endif int sectorSize; /* Device sector size */ int deviceCharacteristics; /* Precomputed device characteristics */ #if SQLITE_ENABLE_LOCKING_STYLE int openFlags; /* The flags specified at open() */ #endif #if SQLITE_ENABLE_LOCKING_STYLE || defined(__APPLE__) unsigned fsFlags; /* cached details from statfs() */ #endif #ifdef SQLITE_ENABLE_SETLK_TIMEOUT unsigned iBusyTimeout; /* Wait this many millisec on locks */ #endif #if OS_VXWORKS struct vxworksFileId *pId; /* Unique file ID */ #endif #ifdef SQLITE_DEBUG /* The next group of variables are used to track whether or not the ** transaction counter in bytes 24-27 of database files are updated ** whenever any part of the database changes. An assertion fault will ** occur if a file is updated without also updating the transaction ** counter. This test is made to avoid new problems similar to the ** one described by ticket #3584. */ unsigned char transCntrChng; /* True if the transaction counter changed */ unsigned char dbUpdate; /* True if any part of database file changed */ unsigned char inNormalWrite; /* True if in a normal write operation */ #endif #ifdef SQLITE_TEST /* In test mode, increase the size of this structure a bit so that ** it is larger than the struct CrashFile defined in test6.c. */ char aPadding[32]; #endif }; /* This variable holds the process id (pid) from when the xRandomness() ** method was called. If xOpen() is called from a different process id, ** indicating that a fork() has occurred, the PRNG will be reset. */ static pid_t randomnessPid = 0; /* ** Allowed values for the unixFile.ctrlFlags bitmask: */ #define UNIXFILE_EXCL 0x01 /* Connections from one process only */ #define UNIXFILE_RDONLY 0x02 /* Connection is read only */ #define UNIXFILE_PERSIST_WAL 0x04 /* Persistent WAL mode */ #ifndef SQLITE_DISABLE_DIRSYNC # define UNIXFILE_DIRSYNC 0x08 /* Directory sync needed */ #else # define UNIXFILE_DIRSYNC 0x00 #endif #define UNIXFILE_PSOW 0x10 /* SQLITE_IOCAP_POWERSAFE_OVERWRITE */ #define UNIXFILE_DELETE 0x20 /* Delete on close */ #define UNIXFILE_URI 0x40 /* Filename might have query parameters */ #define UNIXFILE_NOLOCK 0x80 /* Do no file locking */ /* ** Include code that is common to all os_*.c files */ /************** Include os_common.h in the middle of os_unix.c ***************/ /************** Begin file os_common.h ***************************************/ /* ** 2004 May 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains macros and a little bit of code that is common to ** all of the platform-specific files (os_*.c) and is #included into those ** files. ** ** This file should be #included by the os_*.c files only. It is not a ** general purpose header file. */ #ifndef _OS_COMMON_H_ #define _OS_COMMON_H_ /* ** At least two bugs have slipped in because we changed the MEMORY_DEBUG ** macro to SQLITE_DEBUG and some older makefiles have not yet made the ** switch. The following code should catch this problem at compile-time. */ #ifdef MEMORY_DEBUG # error "The MEMORY_DEBUG macro is obsolete. Use SQLITE_DEBUG instead." #endif /* ** Macros for performance tracing. Normally turned off. Only works ** on i486 hardware. */ #ifdef SQLITE_PERFORMANCE_TRACE /* ** hwtime.h contains inline assembler code for implementing ** high-performance timing routines. */ /************** Include hwtime.h in the middle of os_common.h ****************/ /************** Begin file hwtime.h ******************************************/ /* ** 2008 May 27 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains inline asm code for retrieving "high-performance" ** counters for x86 and x86_64 class CPUs. */ #ifndef SQLITE_HWTIME_H #define SQLITE_HWTIME_H /* ** The following routine only works on pentium-class (or newer) processors. ** It uses the RDTSC opcode to read the cycle count value out of the ** processor and returns that value. This can be used for high-res ** profiling. */ #if !defined(__STRICT_ANSI__) && \ (defined(__GNUC__) || defined(_MSC_VER)) && \ (defined(i386) || defined(__i386__) || defined(_M_IX86)) #if defined(__GNUC__) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned int lo, hi; __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi)); return (sqlite_uint64)hi << 32 | lo; } #elif defined(_MSC_VER) __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ __asm { rdtsc ret ; return value at EDX:EAX } } #endif #elif !defined(__STRICT_ANSI__) && (defined(__GNUC__) && defined(__x86_64__)) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned long val; __asm__ __volatile__ ("rdtsc" : "=A" (val)); return val; } #elif !defined(__STRICT_ANSI__) && (defined(__GNUC__) && defined(__ppc__)) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned long long retval; unsigned long junk; __asm__ __volatile__ ("\n\ 1: mftbu %1\n\ mftb %L0\n\ mftbu %0\n\ cmpw %0,%1\n\ bne 1b" : "=r" (retval), "=r" (junk)); return retval; } #else /* ** asm() is needed for hardware timing support. Without asm(), ** disable the sqlite3Hwtime() routine. ** ** sqlite3Hwtime() is only used for some obscure debugging ** and analysis configurations, not in any deliverable, so this ** should not be a great loss. */ SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); } #endif #endif /* !defined(SQLITE_HWTIME_H) */ /************** End of hwtime.h **********************************************/ /************** Continuing where we left off in os_common.h ******************/ static sqlite_uint64 g_start; static sqlite_uint64 g_elapsed; #define TIMER_START g_start=sqlite3Hwtime() #define TIMER_END g_elapsed=sqlite3Hwtime()-g_start #define TIMER_ELAPSED g_elapsed #else #define TIMER_START #define TIMER_END #define TIMER_ELAPSED ((sqlite_uint64)0) #endif /* ** If we compile with the SQLITE_TEST macro set, then the following block ** of code will give us the ability to simulate a disk I/O error. This ** is used for testing the I/O recovery logic. */ #if defined(SQLITE_TEST) SQLITE_API extern int sqlite3_io_error_hit; SQLITE_API extern int sqlite3_io_error_hardhit; SQLITE_API extern int sqlite3_io_error_pending; SQLITE_API extern int sqlite3_io_error_persist; SQLITE_API extern int sqlite3_io_error_benign; SQLITE_API extern int sqlite3_diskfull_pending; SQLITE_API extern int sqlite3_diskfull; #define SimulateIOErrorBenign(X) sqlite3_io_error_benign=(X) #define SimulateIOError(CODE) \ if( (sqlite3_io_error_persist && sqlite3_io_error_hit) \ || sqlite3_io_error_pending-- == 1 ) \ { local_ioerr(); CODE; } static void local_ioerr(){ IOTRACE(("IOERR\n")); sqlite3_io_error_hit++; if( !sqlite3_io_error_benign ) sqlite3_io_error_hardhit++; } #define SimulateDiskfullError(CODE) \ if( sqlite3_diskfull_pending ){ \ if( sqlite3_diskfull_pending == 1 ){ \ local_ioerr(); \ sqlite3_diskfull = 1; \ sqlite3_io_error_hit = 1; \ CODE; \ }else{ \ sqlite3_diskfull_pending--; \ } \ } #else #define SimulateIOErrorBenign(X) #define SimulateIOError(A) #define SimulateDiskfullError(A) #endif /* defined(SQLITE_TEST) */ /* ** When testing, keep a count of the number of open files. */ #if defined(SQLITE_TEST) SQLITE_API extern int sqlite3_open_file_count; #define OpenCounter(X) sqlite3_open_file_count+=(X) #else #define OpenCounter(X) #endif /* defined(SQLITE_TEST) */ #endif /* !defined(_OS_COMMON_H_) */ /************** End of os_common.h *******************************************/ /************** Continuing where we left off in os_unix.c ********************/ /* ** Define various macros that are missing from some systems. */ #ifndef O_LARGEFILE # define O_LARGEFILE 0 #endif #ifdef SQLITE_DISABLE_LFS # undef O_LARGEFILE # define O_LARGEFILE 0 #endif #ifndef O_NOFOLLOW # define O_NOFOLLOW 0 #endif #ifndef O_BINARY # define O_BINARY 0 #endif /* ** The threadid macro resolves to the thread-id or to 0. Used for ** testing and debugging only. */ #if SQLITE_THREADSAFE #define threadid pthread_self() #else #define threadid 0 #endif /* ** HAVE_MREMAP defaults to true on Linux and false everywhere else. */ #if !defined(HAVE_MREMAP) # if defined(__linux__) && defined(_GNU_SOURCE) # define HAVE_MREMAP 1 # else # define HAVE_MREMAP 0 # endif #endif /* ** Explicitly call the 64-bit version of lseek() on Android. Otherwise, lseek() ** is the 32-bit version, even if _FILE_OFFSET_BITS=64 is defined. */ #ifdef __ANDROID__ # define lseek lseek64 #endif #ifdef __linux__ /* ** Linux-specific IOCTL magic numbers used for controlling F2FS */ #define F2FS_IOCTL_MAGIC 0xf5 #define F2FS_IOC_START_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 1) #define F2FS_IOC_COMMIT_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 2) #define F2FS_IOC_START_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 3) #define F2FS_IOC_ABORT_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 5) #define F2FS_IOC_GET_FEATURES _IOR(F2FS_IOCTL_MAGIC, 12, u32) #define F2FS_FEATURE_ATOMIC_WRITE 0x0004 #endif /* __linux__ */ /* ** Different Unix systems declare open() in different ways. Same use ** open(const char*,int,mode_t). Others use open(const char*,int,...). ** The difference is important when using a pointer to the function. ** ** The safest way to deal with the problem is to always use this wrapper ** which always has the same well-defined interface. */ static int posixOpen(const char *zFile, int flags, int mode){ return open(zFile, flags, mode); } /* Forward reference */ static int openDirectory(const char*, int*); static int unixGetpagesize(void); /* ** Many system calls are accessed through pointer-to-functions so that ** they may be overridden at runtime to facilitate fault injection during ** testing and sandboxing. The following array holds the names and pointers ** to all overrideable system calls. */ static struct unix_syscall { const char *zName; /* Name of the system call */ sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ sqlite3_syscall_ptr pDefault; /* Default value */ } aSyscall[] = { { "open", (sqlite3_syscall_ptr)posixOpen, 0 }, #define osOpen ((int(*)(const char*,int,int))aSyscall[0].pCurrent) { "close", (sqlite3_syscall_ptr)close, 0 }, #define osClose ((int(*)(int))aSyscall[1].pCurrent) { "access", (sqlite3_syscall_ptr)access, 0 }, #define osAccess ((int(*)(const char*,int))aSyscall[2].pCurrent) { "getcwd", (sqlite3_syscall_ptr)getcwd, 0 }, #define osGetcwd ((char*(*)(char*,size_t))aSyscall[3].pCurrent) { "stat", (sqlite3_syscall_ptr)stat, 0 }, #define osStat ((int(*)(const char*,struct stat*))aSyscall[4].pCurrent) /* ** The DJGPP compiler environment looks mostly like Unix, but it ** lacks the fcntl() system call. So redefine fcntl() to be something ** that always succeeds. This means that locking does not occur under ** DJGPP. But it is DOS - what did you expect? */ #ifdef __DJGPP__ { "fstat", 0, 0 }, #define osFstat(a,b,c) 0 #else { "fstat", (sqlite3_syscall_ptr)fstat, 0 }, #define osFstat ((int(*)(int,struct stat*))aSyscall[5].pCurrent) #endif { "ftruncate", (sqlite3_syscall_ptr)ftruncate, 0 }, #define osFtruncate ((int(*)(int,off_t))aSyscall[6].pCurrent) { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 }, #define osFcntl ((int(*)(int,int,...))aSyscall[7].pCurrent) { "read", (sqlite3_syscall_ptr)read, 0 }, #define osRead ((ssize_t(*)(int,void*,size_t))aSyscall[8].pCurrent) #if defined(USE_PREAD) || SQLITE_ENABLE_LOCKING_STYLE { "pread", (sqlite3_syscall_ptr)pread, 0 }, #else { "pread", (sqlite3_syscall_ptr)0, 0 }, #endif #define osPread ((ssize_t(*)(int,void*,size_t,off_t))aSyscall[9].pCurrent) #if defined(USE_PREAD64) { "pread64", (sqlite3_syscall_ptr)pread64, 0 }, #else { "pread64", (sqlite3_syscall_ptr)0, 0 }, #endif #define osPread64 ((ssize_t(*)(int,void*,size_t,off64_t))aSyscall[10].pCurrent) { "write", (sqlite3_syscall_ptr)write, 0 }, #define osWrite ((ssize_t(*)(int,const void*,size_t))aSyscall[11].pCurrent) #if defined(USE_PREAD) || SQLITE_ENABLE_LOCKING_STYLE { "pwrite", (sqlite3_syscall_ptr)pwrite, 0 }, #else { "pwrite", (sqlite3_syscall_ptr)0, 0 }, #endif #define osPwrite ((ssize_t(*)(int,const void*,size_t,off_t))\ aSyscall[12].pCurrent) #if defined(USE_PREAD64) { "pwrite64", (sqlite3_syscall_ptr)pwrite64, 0 }, #else { "pwrite64", (sqlite3_syscall_ptr)0, 0 }, #endif #define osPwrite64 ((ssize_t(*)(int,const void*,size_t,off64_t))\ aSyscall[13].pCurrent) { "fchmod", (sqlite3_syscall_ptr)fchmod, 0 }, #define osFchmod ((int(*)(int,mode_t))aSyscall[14].pCurrent) #if defined(HAVE_POSIX_FALLOCATE) && HAVE_POSIX_FALLOCATE { "fallocate", (sqlite3_syscall_ptr)posix_fallocate, 0 }, #else { "fallocate", (sqlite3_syscall_ptr)0, 0 }, #endif #define osFallocate ((int(*)(int,off_t,off_t))aSyscall[15].pCurrent) { "unlink", (sqlite3_syscall_ptr)unlink, 0 }, #define osUnlink ((int(*)(const char*))aSyscall[16].pCurrent) { "openDirectory", (sqlite3_syscall_ptr)openDirectory, 0 }, #define osOpenDirectory ((int(*)(const char*,int*))aSyscall[17].pCurrent) { "mkdir", (sqlite3_syscall_ptr)mkdir, 0 }, #define osMkdir ((int(*)(const char*,mode_t))aSyscall[18].pCurrent) { "rmdir", (sqlite3_syscall_ptr)rmdir, 0 }, #define osRmdir ((int(*)(const char*))aSyscall[19].pCurrent) #if defined(HAVE_FCHOWN) { "fchown", (sqlite3_syscall_ptr)fchown, 0 }, #else { "fchown", (sqlite3_syscall_ptr)0, 0 }, #endif #define osFchown ((int(*)(int,uid_t,gid_t))aSyscall[20].pCurrent) #if defined(HAVE_FCHOWN) { "geteuid", (sqlite3_syscall_ptr)geteuid, 0 }, #else { "geteuid", (sqlite3_syscall_ptr)0, 0 }, #endif #define osGeteuid ((uid_t(*)(void))aSyscall[21].pCurrent) #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 { "mmap", (sqlite3_syscall_ptr)mmap, 0 }, #else { "mmap", (sqlite3_syscall_ptr)0, 0 }, #endif #define osMmap ((void*(*)(void*,size_t,int,int,int,off_t))aSyscall[22].pCurrent) #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 { "munmap", (sqlite3_syscall_ptr)munmap, 0 }, #else { "munmap", (sqlite3_syscall_ptr)0, 0 }, #endif #define osMunmap ((int(*)(void*,size_t))aSyscall[23].pCurrent) #if HAVE_MREMAP && (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) { "mremap", (sqlite3_syscall_ptr)mremap, 0 }, #else { "mremap", (sqlite3_syscall_ptr)0, 0 }, #endif #define osMremap ((void*(*)(void*,size_t,size_t,int,...))aSyscall[24].pCurrent) #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 { "getpagesize", (sqlite3_syscall_ptr)unixGetpagesize, 0 }, #else { "getpagesize", (sqlite3_syscall_ptr)0, 0 }, #endif #define osGetpagesize ((int(*)(void))aSyscall[25].pCurrent) #if defined(HAVE_READLINK) { "readlink", (sqlite3_syscall_ptr)readlink, 0 }, #else { "readlink", (sqlite3_syscall_ptr)0, 0 }, #endif #define osReadlink ((ssize_t(*)(const char*,char*,size_t))aSyscall[26].pCurrent) #if defined(HAVE_LSTAT) { "lstat", (sqlite3_syscall_ptr)lstat, 0 }, #else { "lstat", (sqlite3_syscall_ptr)0, 0 }, #endif #define osLstat ((int(*)(const char*,struct stat*))aSyscall[27].pCurrent) #if defined(__linux__) && defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) # ifdef __ANDROID__ { "ioctl", (sqlite3_syscall_ptr)(int(*)(int, int, ...))ioctl, 0 }, #define osIoctl ((int(*)(int,int,...))aSyscall[28].pCurrent) # else { "ioctl", (sqlite3_syscall_ptr)ioctl, 0 }, #define osIoctl ((int(*)(int,unsigned long,...))aSyscall[28].pCurrent) # endif #else { "ioctl", (sqlite3_syscall_ptr)0, 0 }, #endif }; /* End of the overrideable system calls */ /* ** On some systems, calls to fchown() will trigger a message in a security ** log if they come from non-root processes. So avoid calling fchown() if ** we are not running as root. */ static int robustFchown(int fd, uid_t uid, gid_t gid){ #if defined(HAVE_FCHOWN) return osGeteuid() ? 0 : osFchown(fd,uid,gid); #else return 0; #endif } /* ** This is the xSetSystemCall() method of sqlite3_vfs for all of the ** "unix" VFSes. Return SQLITE_OK opon successfully updating the ** system call pointer, or SQLITE_NOTFOUND if there is no configurable ** system call named zName. */ static int unixSetSystemCall( sqlite3_vfs *pNotUsed, /* The VFS pointer. Not used */ const char *zName, /* Name of system call to override */ sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */ ){ unsigned int i; int rc = SQLITE_NOTFOUND; UNUSED_PARAMETER(pNotUsed); if( zName==0 ){ /* If no zName is given, restore all system calls to their default ** settings and return NULL */ rc = SQLITE_OK; for(i=0; i=SQLITE_MINIMUM_FILE_DESCRIPTOR ) break; osClose(fd); sqlite3_log(SQLITE_WARNING, "attempt to open \"%s\" as file descriptor %d", z, fd); fd = -1; if( osOpen("/dev/null", O_RDONLY, m)<0 ) break; } if( fd>=0 ){ if( m!=0 ){ struct stat statbuf; if( osFstat(fd, &statbuf)==0 && statbuf.st_size==0 && (statbuf.st_mode&0777)!=m ){ osFchmod(fd, m); } } #if defined(FD_CLOEXEC) && (!defined(O_CLOEXEC) || O_CLOEXEC==0) osFcntl(fd, F_SETFD, osFcntl(fd, F_GETFD, 0) | FD_CLOEXEC); #endif } return fd; } /* ** Helper functions to obtain and relinquish the global mutex. The ** global mutex is used to protect the unixInodeInfo and ** vxworksFileId objects used by this file, all of which may be ** shared by multiple threads. ** ** Function unixMutexHeld() is used to assert() that the global mutex ** is held when required. This function is only used as part of assert() ** statements. e.g. ** ** unixEnterMutex() ** assert( unixMutexHeld() ); ** unixEnterLeave() ** ** To prevent deadlock, the global unixBigLock must must be acquired ** before the unixInodeInfo.pLockMutex mutex, if both are held. It is ** OK to get the pLockMutex without holding unixBigLock first, but if ** that happens, the unixBigLock mutex must not be acquired until after ** pLockMutex is released. ** ** OK: enter(unixBigLock), enter(pLockInfo) ** OK: enter(unixBigLock) ** OK: enter(pLockInfo) ** ERROR: enter(pLockInfo), enter(unixBigLock) */ static sqlite3_mutex *unixBigLock = 0; static void unixEnterMutex(void){ assert( sqlite3_mutex_notheld(unixBigLock) ); /* Not a recursive mutex */ sqlite3_mutex_enter(unixBigLock); } static void unixLeaveMutex(void){ assert( sqlite3_mutex_held(unixBigLock) ); sqlite3_mutex_leave(unixBigLock); } #ifdef SQLITE_DEBUG static int unixMutexHeld(void) { return sqlite3_mutex_held(unixBigLock); } #endif #ifdef SQLITE_HAVE_OS_TRACE /* ** Helper function for printing out trace information from debugging ** binaries. This returns the string representation of the supplied ** integer lock-type. */ static const char *azFileLock(int eFileLock){ switch( eFileLock ){ case NO_LOCK: return "NONE"; case SHARED_LOCK: return "SHARED"; case RESERVED_LOCK: return "RESERVED"; case PENDING_LOCK: return "PENDING"; case EXCLUSIVE_LOCK: return "EXCLUSIVE"; } return "ERROR"; } #endif #ifdef SQLITE_LOCK_TRACE /* ** Print out information about all locking operations. ** ** This routine is used for troubleshooting locks on multithreaded ** platforms. Enable by compiling with the -DSQLITE_LOCK_TRACE ** command-line option on the compiler. This code is normally ** turned off. */ static int lockTrace(int fd, int op, struct flock *p){ char *zOpName, *zType; int s; int savedErrno; if( op==F_GETLK ){ zOpName = "GETLK"; }else if( op==F_SETLK ){ zOpName = "SETLK"; }else{ s = osFcntl(fd, op, p); sqlite3DebugPrintf("fcntl unknown %d %d %d\n", fd, op, s); return s; } if( p->l_type==F_RDLCK ){ zType = "RDLCK"; }else if( p->l_type==F_WRLCK ){ zType = "WRLCK"; }else if( p->l_type==F_UNLCK ){ zType = "UNLCK"; }else{ assert( 0 ); } assert( p->l_whence==SEEK_SET ); s = osFcntl(fd, op, p); savedErrno = errno; sqlite3DebugPrintf("fcntl %d %d %s %s %d %d %d %d\n", threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len, (int)p->l_pid, s); if( s==(-1) && op==F_SETLK && (p->l_type==F_RDLCK || p->l_type==F_WRLCK) ){ struct flock l2; l2 = *p; osFcntl(fd, F_GETLK, &l2); if( l2.l_type==F_RDLCK ){ zType = "RDLCK"; }else if( l2.l_type==F_WRLCK ){ zType = "WRLCK"; }else if( l2.l_type==F_UNLCK ){ zType = "UNLCK"; }else{ assert( 0 ); } sqlite3DebugPrintf("fcntl-failure-reason: %s %d %d %d\n", zType, (int)l2.l_start, (int)l2.l_len, (int)l2.l_pid); } errno = savedErrno; return s; } #undef osFcntl #define osFcntl lockTrace #endif /* SQLITE_LOCK_TRACE */ /* ** Retry ftruncate() calls that fail due to EINTR ** ** All calls to ftruncate() within this file should be made through ** this wrapper. On the Android platform, bypassing the logic below ** could lead to a corrupt database. */ static int robust_ftruncate(int h, sqlite3_int64 sz){ int rc; #ifdef __ANDROID__ /* On Android, ftruncate() always uses 32-bit offsets, even if ** _FILE_OFFSET_BITS=64 is defined. This means it is unsafe to attempt to ** truncate a file to any size larger than 2GiB. Silently ignore any ** such attempts. */ if( sz>(sqlite3_int64)0x7FFFFFFF ){ rc = SQLITE_OK; }else #endif do{ rc = osFtruncate(h,sz); }while( rc<0 && errno==EINTR ); return rc; } /* ** This routine translates a standard POSIX errno code into something ** useful to the clients of the sqlite3 functions. Specifically, it is ** intended to translate a variety of "try again" errors into SQLITE_BUSY ** and a variety of "please close the file descriptor NOW" errors into ** SQLITE_IOERR ** ** Errors during initialization of locks, or file system support for locks, ** should handle ENOLCK, ENOTSUP, EOPNOTSUPP separately. */ static int sqliteErrorFromPosixError(int posixError, int sqliteIOErr) { assert( (sqliteIOErr == SQLITE_IOERR_LOCK) || (sqliteIOErr == SQLITE_IOERR_UNLOCK) || (sqliteIOErr == SQLITE_IOERR_RDLOCK) || (sqliteIOErr == SQLITE_IOERR_CHECKRESERVEDLOCK) ); switch (posixError) { case EACCES: case EAGAIN: case ETIMEDOUT: case EBUSY: case EINTR: case ENOLCK: /* random NFS retry error, unless during file system support * introspection, in which it actually means what it says */ return SQLITE_BUSY; case EPERM: return SQLITE_PERM; default: return sqliteIOErr; } } /****************************************************************************** ****************** Begin Unique File ID Utility Used By VxWorks *************** ** ** On most versions of unix, we can get a unique ID for a file by concatenating ** the device number and the inode number. But this does not work on VxWorks. ** On VxWorks, a unique file id must be based on the canonical filename. ** ** A pointer to an instance of the following structure can be used as a ** unique file ID in VxWorks. Each instance of this structure contains ** a copy of the canonical filename. There is also a reference count. ** The structure is reclaimed when the number of pointers to it drops to ** zero. ** ** There are never very many files open at one time and lookups are not ** a performance-critical path, so it is sufficient to put these ** structures on a linked list. */ struct vxworksFileId { struct vxworksFileId *pNext; /* Next in a list of them all */ int nRef; /* Number of references to this one */ int nName; /* Length of the zCanonicalName[] string */ char *zCanonicalName; /* Canonical filename */ }; #if OS_VXWORKS /* ** All unique filenames are held on a linked list headed by this ** variable: */ static struct vxworksFileId *vxworksFileList = 0; /* ** Simplify a filename into its canonical form ** by making the following changes: ** ** * removing any trailing and duplicate / ** * convert /./ into just / ** * convert /A/../ where A is any simple name into just / ** ** Changes are made in-place. Return the new name length. ** ** The original filename is in z[0..n-1]. Return the number of ** characters in the simplified name. */ static int vxworksSimplifyName(char *z, int n){ int i, j; while( n>1 && z[n-1]=='/' ){ n--; } for(i=j=0; i0 && z[j-1]!='/' ){ j--; } if( j>0 ){ j--; } i += 2; continue; } } z[j++] = z[i]; } z[j] = 0; return j; } /* ** Find a unique file ID for the given absolute pathname. Return ** a pointer to the vxworksFileId object. This pointer is the unique ** file ID. ** ** The nRef field of the vxworksFileId object is incremented before ** the object is returned. A new vxworksFileId object is created ** and added to the global list if necessary. ** ** If a memory allocation error occurs, return NULL. */ static struct vxworksFileId *vxworksFindFileId(const char *zAbsoluteName){ struct vxworksFileId *pNew; /* search key and new file ID */ struct vxworksFileId *pCandidate; /* For looping over existing file IDs */ int n; /* Length of zAbsoluteName string */ assert( zAbsoluteName[0]=='/' ); n = (int)strlen(zAbsoluteName); pNew = sqlite3_malloc64( sizeof(*pNew) + (n+1) ); if( pNew==0 ) return 0; pNew->zCanonicalName = (char*)&pNew[1]; memcpy(pNew->zCanonicalName, zAbsoluteName, n+1); n = vxworksSimplifyName(pNew->zCanonicalName, n); /* Search for an existing entry that matching the canonical name. ** If found, increment the reference count and return a pointer to ** the existing file ID. */ unixEnterMutex(); for(pCandidate=vxworksFileList; pCandidate; pCandidate=pCandidate->pNext){ if( pCandidate->nName==n && memcmp(pCandidate->zCanonicalName, pNew->zCanonicalName, n)==0 ){ sqlite3_free(pNew); pCandidate->nRef++; unixLeaveMutex(); return pCandidate; } } /* No match was found. We will make a new file ID */ pNew->nRef = 1; pNew->nName = n; pNew->pNext = vxworksFileList; vxworksFileList = pNew; unixLeaveMutex(); return pNew; } /* ** Decrement the reference count on a vxworksFileId object. Free ** the object when the reference count reaches zero. */ static void vxworksReleaseFileId(struct vxworksFileId *pId){ unixEnterMutex(); assert( pId->nRef>0 ); pId->nRef--; if( pId->nRef==0 ){ struct vxworksFileId **pp; for(pp=&vxworksFileList; *pp && *pp!=pId; pp = &((*pp)->pNext)){} assert( *pp==pId ); *pp = pId->pNext; sqlite3_free(pId); } unixLeaveMutex(); } #endif /* OS_VXWORKS */ /*************** End of Unique File ID Utility Used By VxWorks **************** ******************************************************************************/ /****************************************************************************** *************************** Posix Advisory Locking **************************** ** ** POSIX advisory locks are broken by design. ANSI STD 1003.1 (1996) ** section 6.5.2.2 lines 483 through 490 specify that when a process ** sets or clears a lock, that operation overrides any prior locks set ** by the same process. It does not explicitly say so, but this implies ** that it overrides locks set by the same process using a different ** file descriptor. Consider this test case: ** ** int fd1 = open("./file1", O_RDWR|O_CREAT, 0644); ** int fd2 = open("./file2", O_RDWR|O_CREAT, 0644); ** ** Suppose ./file1 and ./file2 are really the same file (because ** one is a hard or symbolic link to the other) then if you set ** an exclusive lock on fd1, then try to get an exclusive lock ** on fd2, it works. I would have expected the second lock to ** fail since there was already a lock on the file due to fd1. ** But not so. Since both locks came from the same process, the ** second overrides the first, even though they were on different ** file descriptors opened on different file names. ** ** This means that we cannot use POSIX locks to synchronize file access ** among competing threads of the same process. POSIX locks will work fine ** to synchronize access for threads in separate processes, but not ** threads within the same process. ** ** To work around the problem, SQLite has to manage file locks internally ** on its own. Whenever a new database is opened, we have to find the ** specific inode of the database file (the inode is determined by the ** st_dev and st_ino fields of the stat structure that fstat() fills in) ** and check for locks already existing on that inode. When locks are ** created or removed, we have to look at our own internal record of the ** locks to see if another thread has previously set a lock on that same ** inode. ** ** (Aside: The use of inode numbers as unique IDs does not work on VxWorks. ** For VxWorks, we have to use the alternative unique ID system based on ** canonical filename and implemented in the previous division.) ** ** The sqlite3_file structure for POSIX is no longer just an integer file ** descriptor. It is now a structure that holds the integer file ** descriptor and a pointer to a structure that describes the internal ** locks on the corresponding inode. There is one locking structure ** per inode, so if the same inode is opened twice, both unixFile structures ** point to the same locking structure. The locking structure keeps ** a reference count (so we will know when to delete it) and a "cnt" ** field that tells us its internal lock status. cnt==0 means the ** file is unlocked. cnt==-1 means the file has an exclusive lock. ** cnt>0 means there are cnt shared locks on the file. ** ** Any attempt to lock or unlock a file first checks the locking ** structure. The fcntl() system call is only invoked to set a ** POSIX lock if the internal lock structure transitions between ** a locked and an unlocked state. ** ** But wait: there are yet more problems with POSIX advisory locks. ** ** If you close a file descriptor that points to a file that has locks, ** all locks on that file that are owned by the current process are ** released. To work around this problem, each unixInodeInfo object ** maintains a count of the number of pending locks on tha inode. ** When an attempt is made to close an unixFile, if there are ** other unixFile open on the same inode that are holding locks, the call ** to close() the file descriptor is deferred until all of the locks clear. ** The unixInodeInfo structure keeps a list of file descriptors that need to ** be closed and that list is walked (and cleared) when the last lock ** clears. ** ** Yet another problem: LinuxThreads do not play well with posix locks. ** ** Many older versions of linux use the LinuxThreads library which is ** not posix compliant. Under LinuxThreads, a lock created by thread ** A cannot be modified or overridden by a different thread B. ** Only thread A can modify the lock. Locking behavior is correct ** if the appliation uses the newer Native Posix Thread Library (NPTL) ** on linux - with NPTL a lock created by thread A can override locks ** in thread B. But there is no way to know at compile-time which ** threading library is being used. So there is no way to know at ** compile-time whether or not thread A can override locks on thread B. ** One has to do a run-time check to discover the behavior of the ** current process. ** ** SQLite used to support LinuxThreads. But support for LinuxThreads ** was dropped beginning with version 3.7.0. SQLite will still work with ** LinuxThreads provided that (1) there is no more than one connection ** per database file in the same process and (2) database connections ** do not move across threads. */ /* ** An instance of the following structure serves as the key used ** to locate a particular unixInodeInfo object. */ struct unixFileId { dev_t dev; /* Device number */ #if OS_VXWORKS struct vxworksFileId *pId; /* Unique file ID for vxworks. */ #else /* We are told that some versions of Android contain a bug that ** sizes ino_t at only 32-bits instead of 64-bits. (See ** https://android-review.googlesource.com/#/c/115351/3/dist/sqlite3.c) ** To work around this, always allocate 64-bits for the inode number. ** On small machines that only have 32-bit inodes, this wastes 4 bytes, ** but that should not be a big deal. */ /* WAS: ino_t ino; */ u64 ino; /* Inode number */ #endif }; /* ** An instance of the following structure is allocated for each open ** inode. ** ** A single inode can have multiple file descriptors, so each unixFile ** structure contains a pointer to an instance of this object and this ** object keeps a count of the number of unixFile pointing to it. ** ** Mutex rules: ** ** (1) Only the pLockMutex mutex must be held in order to read or write ** any of the locking fields: ** nShared, nLock, eFileLock, bProcessLock, pUnused ** ** (2) When nRef>0, then the following fields are unchanging and can ** be read (but not written) without holding any mutex: ** fileId, pLockMutex ** ** (3) With the exceptions above, all the fields may only be read ** or written while holding the global unixBigLock mutex. ** ** Deadlock prevention: The global unixBigLock mutex may not ** be acquired while holding the pLockMutex mutex. If both unixBigLock ** and pLockMutex are needed, then unixBigLock must be acquired first. */ struct unixInodeInfo { struct unixFileId fileId; /* The lookup key */ sqlite3_mutex *pLockMutex; /* Hold this mutex for... */ int nShared; /* Number of SHARED locks held */ int nLock; /* Number of outstanding file locks */ unsigned char eFileLock; /* One of SHARED_LOCK, RESERVED_LOCK etc. */ unsigned char bProcessLock; /* An exclusive process lock is held */ UnixUnusedFd *pUnused; /* Unused file descriptors to close */ int nRef; /* Number of pointers to this structure */ unixShmNode *pShmNode; /* Shared memory associated with this inode */ unixInodeInfo *pNext; /* List of all unixInodeInfo objects */ unixInodeInfo *pPrev; /* .... doubly linked */ #if SQLITE_ENABLE_LOCKING_STYLE unsigned long long sharedByte; /* for AFP simulated shared lock */ #endif #if OS_VXWORKS sem_t *pSem; /* Named POSIX semaphore */ char aSemName[MAX_PATHNAME+2]; /* Name of that semaphore */ #endif }; /* ** A lists of all unixInodeInfo objects. ** ** Must hold unixBigLock in order to read or write this variable. */ static unixInodeInfo *inodeList = 0; /* All unixInodeInfo objects */ #ifdef SQLITE_DEBUG /* ** True if the inode mutex (on the unixFile.pFileMutex field) is held, or not. ** This routine is used only within assert() to help verify correct mutex ** usage. */ int unixFileMutexHeld(unixFile *pFile){ assert( pFile->pInode ); return sqlite3_mutex_held(pFile->pInode->pLockMutex); } int unixFileMutexNotheld(unixFile *pFile){ assert( pFile->pInode ); return sqlite3_mutex_notheld(pFile->pInode->pLockMutex); } #endif /* ** ** This function - unixLogErrorAtLine(), is only ever called via the macro ** unixLogError(). ** ** It is invoked after an error occurs in an OS function and errno has been ** set. It logs a message using sqlite3_log() containing the current value of ** errno and, if possible, the human-readable equivalent from strerror() or ** strerror_r(). ** ** The first argument passed to the macro should be the error code that ** will be returned to SQLite (e.g. SQLITE_IOERR_DELETE, SQLITE_CANTOPEN). ** The two subsequent arguments should be the name of the OS function that ** failed (e.g. "unlink", "open") and the associated file-system path, ** if any. */ #define unixLogError(a,b,c) unixLogErrorAtLine(a,b,c,__LINE__) static int unixLogErrorAtLine( int errcode, /* SQLite error code */ const char *zFunc, /* Name of OS function that failed */ const char *zPath, /* File path associated with error */ int iLine /* Source line number where error occurred */ ){ char *zErr; /* Message from strerror() or equivalent */ int iErrno = errno; /* Saved syscall error number */ /* If this is not a threadsafe build (SQLITE_THREADSAFE==0), then use ** the strerror() function to obtain the human-readable error message ** equivalent to errno. Otherwise, use strerror_r(). */ #if SQLITE_THREADSAFE && defined(HAVE_STRERROR_R) char aErr[80]; memset(aErr, 0, sizeof(aErr)); zErr = aErr; /* If STRERROR_R_CHAR_P (set by autoconf scripts) or __USE_GNU is defined, ** assume that the system provides the GNU version of strerror_r() that ** returns a pointer to a buffer containing the error message. That pointer ** may point to aErr[], or it may point to some static storage somewhere. ** Otherwise, assume that the system provides the POSIX version of ** strerror_r(), which always writes an error message into aErr[]. ** ** If the code incorrectly assumes that it is the POSIX version that is ** available, the error message will often be an empty string. Not a ** huge problem. Incorrectly concluding that the GNU version is available ** could lead to a segfault though. */ #if defined(STRERROR_R_CHAR_P) || defined(__USE_GNU) zErr = # endif strerror_r(iErrno, aErr, sizeof(aErr)-1); #elif SQLITE_THREADSAFE /* This is a threadsafe build, but strerror_r() is not available. */ zErr = ""; #else /* Non-threadsafe build, use strerror(). */ zErr = strerror(iErrno); #endif if( zPath==0 ) zPath = ""; sqlite3_log(errcode, "os_unix.c:%d: (%d) %s(%s) - %s", iLine, iErrno, zFunc, zPath, zErr ); return errcode; } /* ** Close a file descriptor. ** ** We assume that close() almost always works, since it is only in a ** very sick application or on a very sick platform that it might fail. ** If it does fail, simply leak the file descriptor, but do log the ** error. ** ** Note that it is not safe to retry close() after EINTR since the ** file descriptor might have already been reused by another thread. ** So we don't even try to recover from an EINTR. Just log the error ** and move on. */ static void robust_close(unixFile *pFile, int h, int lineno){ if( osClose(h) ){ unixLogErrorAtLine(SQLITE_IOERR_CLOSE, "close", pFile ? pFile->zPath : 0, lineno); } } /* ** Set the pFile->lastErrno. Do this in a subroutine as that provides ** a convenient place to set a breakpoint. */ static void storeLastErrno(unixFile *pFile, int error){ pFile->lastErrno = error; } /* ** Close all file descriptors accumuated in the unixInodeInfo->pUnused list. */ static void closePendingFds(unixFile *pFile){ unixInodeInfo *pInode = pFile->pInode; UnixUnusedFd *p; UnixUnusedFd *pNext; assert( unixFileMutexHeld(pFile) ); for(p=pInode->pUnused; p; p=pNext){ pNext = p->pNext; robust_close(pFile, p->fd, __LINE__); sqlite3_free(p); } pInode->pUnused = 0; } /* ** Release a unixInodeInfo structure previously allocated by findInodeInfo(). ** ** The global mutex must be held when this routine is called, but the mutex ** on the inode being deleted must NOT be held. */ static void releaseInodeInfo(unixFile *pFile){ unixInodeInfo *pInode = pFile->pInode; assert( unixMutexHeld() ); assert( unixFileMutexNotheld(pFile) ); if( ALWAYS(pInode) ){ pInode->nRef--; if( pInode->nRef==0 ){ assert( pInode->pShmNode==0 ); sqlite3_mutex_enter(pInode->pLockMutex); closePendingFds(pFile); sqlite3_mutex_leave(pInode->pLockMutex); if( pInode->pPrev ){ assert( pInode->pPrev->pNext==pInode ); pInode->pPrev->pNext = pInode->pNext; }else{ assert( inodeList==pInode ); inodeList = pInode->pNext; } if( pInode->pNext ){ assert( pInode->pNext->pPrev==pInode ); pInode->pNext->pPrev = pInode->pPrev; } sqlite3_mutex_free(pInode->pLockMutex); sqlite3_free(pInode); } } } /* ** Given a file descriptor, locate the unixInodeInfo object that ** describes that file descriptor. Create a new one if necessary. The ** return value might be uninitialized if an error occurs. ** ** The global mutex must held when calling this routine. ** ** Return an appropriate error code. */ static int findInodeInfo( unixFile *pFile, /* Unix file with file desc used in the key */ unixInodeInfo **ppInode /* Return the unixInodeInfo object here */ ){ int rc; /* System call return code */ int fd; /* The file descriptor for pFile */ struct unixFileId fileId; /* Lookup key for the unixInodeInfo */ struct stat statbuf; /* Low-level file information */ unixInodeInfo *pInode = 0; /* Candidate unixInodeInfo object */ assert( unixMutexHeld() ); /* Get low-level information about the file that we can used to ** create a unique name for the file. */ fd = pFile->h; rc = osFstat(fd, &statbuf); if( rc!=0 ){ storeLastErrno(pFile, errno); #if defined(EOVERFLOW) && defined(SQLITE_DISABLE_LFS) if( pFile->lastErrno==EOVERFLOW ) return SQLITE_NOLFS; #endif return SQLITE_IOERR; } #ifdef __APPLE__ /* On OS X on an msdos filesystem, the inode number is reported ** incorrectly for zero-size files. See ticket #3260. To work ** around this problem (we consider it a bug in OS X, not SQLite) ** we always increase the file size to 1 by writing a single byte ** prior to accessing the inode number. The one byte written is ** an ASCII 'S' character which also happens to be the first byte ** in the header of every SQLite database. In this way, if there ** is a race condition such that another thread has already populated ** the first page of the database, no damage is done. */ if( statbuf.st_size==0 && (pFile->fsFlags & SQLITE_FSFLAGS_IS_MSDOS)!=0 ){ do{ rc = osWrite(fd, "S", 1); }while( rc<0 && errno==EINTR ); if( rc!=1 ){ storeLastErrno(pFile, errno); return SQLITE_IOERR; } rc = osFstat(fd, &statbuf); if( rc!=0 ){ storeLastErrno(pFile, errno); return SQLITE_IOERR; } } #endif memset(&fileId, 0, sizeof(fileId)); fileId.dev = statbuf.st_dev; #if OS_VXWORKS fileId.pId = pFile->pId; #else fileId.ino = (u64)statbuf.st_ino; #endif assert( unixMutexHeld() ); pInode = inodeList; while( pInode && memcmp(&fileId, &pInode->fileId, sizeof(fileId)) ){ pInode = pInode->pNext; } if( pInode==0 ){ pInode = sqlite3_malloc64( sizeof(*pInode) ); if( pInode==0 ){ return SQLITE_NOMEM_BKPT; } memset(pInode, 0, sizeof(*pInode)); memcpy(&pInode->fileId, &fileId, sizeof(fileId)); if( sqlite3GlobalConfig.bCoreMutex ){ pInode->pLockMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); if( pInode->pLockMutex==0 ){ sqlite3_free(pInode); return SQLITE_NOMEM_BKPT; } } pInode->nRef = 1; assert( unixMutexHeld() ); pInode->pNext = inodeList; pInode->pPrev = 0; if( inodeList ) inodeList->pPrev = pInode; inodeList = pInode; }else{ pInode->nRef++; } *ppInode = pInode; return SQLITE_OK; } /* ** Return TRUE if pFile has been renamed or unlinked since it was first opened. */ static int fileHasMoved(unixFile *pFile){ #if OS_VXWORKS return pFile->pInode!=0 && pFile->pId!=pFile->pInode->fileId.pId; #else struct stat buf; return pFile->pInode!=0 && (osStat(pFile->zPath, &buf)!=0 || (u64)buf.st_ino!=pFile->pInode->fileId.ino); #endif } /* ** Check a unixFile that is a database. Verify the following: ** ** (1) There is exactly one hard link on the file ** (2) The file is not a symbolic link ** (3) The file has not been renamed or unlinked ** ** Issue sqlite3_log(SQLITE_WARNING,...) messages if anything is not right. */ static void verifyDbFile(unixFile *pFile){ struct stat buf; int rc; /* These verifications occurs for the main database only */ if( pFile->ctrlFlags & UNIXFILE_NOLOCK ) return; rc = osFstat(pFile->h, &buf); if( rc!=0 ){ sqlite3_log(SQLITE_WARNING, "cannot fstat db file %s", pFile->zPath); return; } if( buf.st_nlink==0 ){ sqlite3_log(SQLITE_WARNING, "file unlinked while open: %s", pFile->zPath); return; } if( buf.st_nlink>1 ){ sqlite3_log(SQLITE_WARNING, "multiple links to file: %s", pFile->zPath); return; } if( fileHasMoved(pFile) ){ sqlite3_log(SQLITE_WARNING, "file renamed while open: %s", pFile->zPath); return; } } /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. */ static int unixCheckReservedLock(sqlite3_file *id, int *pResOut){ int rc = SQLITE_OK; int reserved = 0; unixFile *pFile = (unixFile*)id; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); assert( pFile ); assert( pFile->eFileLock<=SHARED_LOCK ); sqlite3_mutex_enter(pFile->pInode->pLockMutex); /* Check if a thread in this process holds such a lock */ if( pFile->pInode->eFileLock>SHARED_LOCK ){ reserved = 1; } /* Otherwise see if some other process holds it. */ #ifndef __DJGPP__ if( !reserved && !pFile->pInode->bProcessLock ){ struct flock lock; lock.l_whence = SEEK_SET; lock.l_start = RESERVED_BYTE; lock.l_len = 1; lock.l_type = F_WRLCK; if( osFcntl(pFile->h, F_GETLK, &lock) ){ rc = SQLITE_IOERR_CHECKRESERVEDLOCK; storeLastErrno(pFile, errno); } else if( lock.l_type!=F_UNLCK ){ reserved = 1; } } #endif sqlite3_mutex_leave(pFile->pInode->pLockMutex); OSTRACE(("TEST WR-LOCK %d %d %d (unix)\n", pFile->h, rc, reserved)); *pResOut = reserved; return rc; } /* ** Set a posix-advisory-lock. ** ** There are two versions of this routine. If compiled with ** SQLITE_ENABLE_SETLK_TIMEOUT then the routine has an extra parameter ** which is a pointer to a unixFile. If the unixFile->iBusyTimeout ** value is set, then it is the number of milliseconds to wait before ** failing the lock. The iBusyTimeout value is always reset back to ** zero on each call. ** ** If SQLITE_ENABLE_SETLK_TIMEOUT is not defined, then do a non-blocking ** attempt to set the lock. */ #ifndef SQLITE_ENABLE_SETLK_TIMEOUT # define osSetPosixAdvisoryLock(h,x,t) osFcntl(h,F_SETLK,x) #else static int osSetPosixAdvisoryLock( int h, /* The file descriptor on which to take the lock */ struct flock *pLock, /* The description of the lock */ unixFile *pFile /* Structure holding timeout value */ ){ int tm = pFile->iBusyTimeout; int rc = osFcntl(h,F_SETLK,pLock); while( rc<0 && tm>0 ){ /* On systems that support some kind of blocking file lock with a timeout, ** make appropriate changes here to invoke that blocking file lock. On ** generic posix, however, there is no such API. So we simply try the ** lock once every millisecond until either the timeout expires, or until ** the lock is obtained. */ usleep(1000); rc = osFcntl(h,F_SETLK,pLock); tm--; } return rc; } #endif /* SQLITE_ENABLE_SETLK_TIMEOUT */ /* ** Attempt to set a system-lock on the file pFile. The lock is ** described by pLock. ** ** If the pFile was opened read/write from unix-excl, then the only lock ** ever obtained is an exclusive lock, and it is obtained exactly once ** the first time any lock is attempted. All subsequent system locking ** operations become no-ops. Locking operations still happen internally, ** in order to coordinate access between separate database connections ** within this process, but all of that is handled in memory and the ** operating system does not participate. ** ** This function is a pass-through to fcntl(F_SETLK) if pFile is using ** any VFS other than "unix-excl" or if pFile is opened on "unix-excl" ** and is read-only. ** ** Zero is returned if the call completes successfully, or -1 if a call ** to fcntl() fails. In this case, errno is set appropriately (by fcntl()). */ static int unixFileLock(unixFile *pFile, struct flock *pLock){ int rc; unixInodeInfo *pInode = pFile->pInode; assert( pInode!=0 ); assert( sqlite3_mutex_held(pInode->pLockMutex) ); if( (pFile->ctrlFlags & (UNIXFILE_EXCL|UNIXFILE_RDONLY))==UNIXFILE_EXCL ){ if( pInode->bProcessLock==0 ){ struct flock lock; assert( pInode->nLock==0 ); lock.l_whence = SEEK_SET; lock.l_start = SHARED_FIRST; lock.l_len = SHARED_SIZE; lock.l_type = F_WRLCK; rc = osSetPosixAdvisoryLock(pFile->h, &lock, pFile); if( rc<0 ) return rc; pInode->bProcessLock = 1; pInode->nLock++; }else{ rc = 0; } }else{ rc = osSetPosixAdvisoryLock(pFile->h, pLock, pFile); } return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. */ static int unixLock(sqlite3_file *id, int eFileLock){ /* The following describes the implementation of the various locks and ** lock transitions in terms of the POSIX advisory shared and exclusive ** lock primitives (called read-locks and write-locks below, to avoid ** confusion with SQLite lock names). The algorithms are complicated ** slightly in order to be compatible with Windows95 systems simultaneously ** accessing the same database file, in case that is ever required. ** ** Symbols defined in os.h indentify the 'pending byte' and the 'reserved ** byte', each single bytes at well known offsets, and the 'shared byte ** range', a range of 510 bytes at a well known offset. ** ** To obtain a SHARED lock, a read-lock is obtained on the 'pending ** byte'. If this is successful, 'shared byte range' is read-locked ** and the lock on the 'pending byte' released. (Legacy note: When ** SQLite was first developed, Windows95 systems were still very common, ** and Widnows95 lacks a shared-lock capability. So on Windows95, a ** single randomly selected by from the 'shared byte range' is locked. ** Windows95 is now pretty much extinct, but this work-around for the ** lack of shared-locks on Windows95 lives on, for backwards ** compatibility.) ** ** A process may only obtain a RESERVED lock after it has a SHARED lock. ** A RESERVED lock is implemented by grabbing a write-lock on the ** 'reserved byte'. ** ** A process may only obtain a PENDING lock after it has obtained a ** SHARED lock. A PENDING lock is implemented by obtaining a write-lock ** on the 'pending byte'. This ensures that no new SHARED locks can be ** obtained, but existing SHARED locks are allowed to persist. A process ** does not have to obtain a RESERVED lock on the way to a PENDING lock. ** This property is used by the algorithm for rolling back a journal file ** after a crash. ** ** An EXCLUSIVE lock, obtained after a PENDING lock is held, is ** implemented by obtaining a write-lock on the entire 'shared byte ** range'. Since all other locks require a read-lock on one of the bytes ** within this range, this ensures that no other locks are held on the ** database. */ int rc = SQLITE_OK; unixFile *pFile = (unixFile*)id; unixInodeInfo *pInode; struct flock lock; int tErrno = 0; assert( pFile ); OSTRACE(("LOCK %d %s was %s(%s,%d) pid=%d (unix)\n", pFile->h, azFileLock(eFileLock), azFileLock(pFile->eFileLock), azFileLock(pFile->pInode->eFileLock), pFile->pInode->nShared, osGetpid(0))); /* If there is already a lock of this type or more restrictive on the ** unixFile, do nothing. Don't use the end_lock: exit path, as ** unixEnterMutex() hasn't been called yet. */ if( pFile->eFileLock>=eFileLock ){ OSTRACE(("LOCK %d %s ok (already held) (unix)\n", pFile->h, azFileLock(eFileLock))); return SQLITE_OK; } /* Make sure the locking sequence is correct. ** (1) We never move from unlocked to anything higher than shared lock. ** (2) SQLite never explicitly requests a pendig lock. ** (3) A shared lock is always held when a reserve lock is requested. */ assert( pFile->eFileLock!=NO_LOCK || eFileLock==SHARED_LOCK ); assert( eFileLock!=PENDING_LOCK ); assert( eFileLock!=RESERVED_LOCK || pFile->eFileLock==SHARED_LOCK ); /* This mutex is needed because pFile->pInode is shared across threads */ pInode = pFile->pInode; sqlite3_mutex_enter(pInode->pLockMutex); /* If some thread using this PID has a lock via a different unixFile* ** handle that precludes the requested lock, return BUSY. */ if( (pFile->eFileLock!=pInode->eFileLock && (pInode->eFileLock>=PENDING_LOCK || eFileLock>SHARED_LOCK)) ){ rc = SQLITE_BUSY; goto end_lock; } /* If a SHARED lock is requested, and some thread using this PID already ** has a SHARED or RESERVED lock, then increment reference counts and ** return SQLITE_OK. */ if( eFileLock==SHARED_LOCK && (pInode->eFileLock==SHARED_LOCK || pInode->eFileLock==RESERVED_LOCK) ){ assert( eFileLock==SHARED_LOCK ); assert( pFile->eFileLock==0 ); assert( pInode->nShared>0 ); pFile->eFileLock = SHARED_LOCK; pInode->nShared++; pInode->nLock++; goto end_lock; } /* A PENDING lock is needed before acquiring a SHARED lock and before ** acquiring an EXCLUSIVE lock. For the SHARED lock, the PENDING will ** be released. */ lock.l_len = 1L; lock.l_whence = SEEK_SET; if( eFileLock==SHARED_LOCK || (eFileLock==EXCLUSIVE_LOCK && pFile->eFileLocknShared==0 ); assert( pInode->eFileLock==0 ); assert( rc==SQLITE_OK ); /* Now get the read-lock */ lock.l_start = SHARED_FIRST; lock.l_len = SHARED_SIZE; if( unixFileLock(pFile, &lock) ){ tErrno = errno; rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); } /* Drop the temporary PENDING lock */ lock.l_start = PENDING_BYTE; lock.l_len = 1L; lock.l_type = F_UNLCK; if( unixFileLock(pFile, &lock) && rc==SQLITE_OK ){ /* This could happen with a network mount */ tErrno = errno; rc = SQLITE_IOERR_UNLOCK; } if( rc ){ if( rc!=SQLITE_BUSY ){ storeLastErrno(pFile, tErrno); } goto end_lock; }else{ pFile->eFileLock = SHARED_LOCK; pInode->nLock++; pInode->nShared = 1; } }else if( eFileLock==EXCLUSIVE_LOCK && pInode->nShared>1 ){ /* We are trying for an exclusive lock but another thread in this ** same process is still holding a shared lock. */ rc = SQLITE_BUSY; }else{ /* The request was for a RESERVED or EXCLUSIVE lock. It is ** assumed that there is a SHARED or greater lock on the file ** already. */ assert( 0!=pFile->eFileLock ); lock.l_type = F_WRLCK; assert( eFileLock==RESERVED_LOCK || eFileLock==EXCLUSIVE_LOCK ); if( eFileLock==RESERVED_LOCK ){ lock.l_start = RESERVED_BYTE; lock.l_len = 1L; }else{ lock.l_start = SHARED_FIRST; lock.l_len = SHARED_SIZE; } if( unixFileLock(pFile, &lock) ){ tErrno = errno; rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); if( rc!=SQLITE_BUSY ){ storeLastErrno(pFile, tErrno); } } } #ifdef SQLITE_DEBUG /* Set up the transaction-counter change checking flags when ** transitioning from a SHARED to a RESERVED lock. The change ** from SHARED to RESERVED marks the beginning of a normal ** write operation (not a hot journal rollback). */ if( rc==SQLITE_OK && pFile->eFileLock<=SHARED_LOCK && eFileLock==RESERVED_LOCK ){ pFile->transCntrChng = 0; pFile->dbUpdate = 0; pFile->inNormalWrite = 1; } #endif if( rc==SQLITE_OK ){ pFile->eFileLock = eFileLock; pInode->eFileLock = eFileLock; }else if( eFileLock==EXCLUSIVE_LOCK ){ pFile->eFileLock = PENDING_LOCK; pInode->eFileLock = PENDING_LOCK; } end_lock: sqlite3_mutex_leave(pInode->pLockMutex); OSTRACE(("LOCK %d %s %s (unix)\n", pFile->h, azFileLock(eFileLock), rc==SQLITE_OK ? "ok" : "failed")); return rc; } /* ** Add the file descriptor used by file handle pFile to the corresponding ** pUnused list. */ static void setPendingFd(unixFile *pFile){ unixInodeInfo *pInode = pFile->pInode; UnixUnusedFd *p = pFile->pPreallocatedUnused; assert( unixFileMutexHeld(pFile) ); p->pNext = pInode->pUnused; pInode->pUnused = p; pFile->h = -1; pFile->pPreallocatedUnused = 0; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. ** ** If handleNFSUnlock is true, then on downgrading an EXCLUSIVE_LOCK to SHARED ** the byte range is divided into 2 parts and the first part is unlocked then ** set to a read lock, then the other part is simply unlocked. This works ** around a bug in BSD NFS lockd (also seen on MacOSX 10.3+) that fails to ** remove the write lock on a region when a read lock is set. */ static int posixUnlock(sqlite3_file *id, int eFileLock, int handleNFSUnlock){ unixFile *pFile = (unixFile*)id; unixInodeInfo *pInode; struct flock lock; int rc = SQLITE_OK; assert( pFile ); OSTRACE(("UNLOCK %d %d was %d(%d,%d) pid=%d (unix)\n", pFile->h, eFileLock, pFile->eFileLock, pFile->pInode->eFileLock, pFile->pInode->nShared, osGetpid(0))); assert( eFileLock<=SHARED_LOCK ); if( pFile->eFileLock<=eFileLock ){ return SQLITE_OK; } pInode = pFile->pInode; sqlite3_mutex_enter(pInode->pLockMutex); assert( pInode->nShared!=0 ); if( pFile->eFileLock>SHARED_LOCK ){ assert( pInode->eFileLock==pFile->eFileLock ); #ifdef SQLITE_DEBUG /* When reducing a lock such that other processes can start ** reading the database file again, make sure that the ** transaction counter was updated if any part of the database ** file changed. If the transaction counter is not updated, ** other connections to the same file might not realize that ** the file has changed and hence might not know to flush their ** cache. The use of a stale cache can lead to database corruption. */ pFile->inNormalWrite = 0; #endif /* downgrading to a shared lock on NFS involves clearing the write lock ** before establishing the readlock - to avoid a race condition we downgrade ** the lock in 2 blocks, so that part of the range will be covered by a ** write lock until the rest is covered by a read lock: ** 1: [WWWWW] ** 2: [....W] ** 3: [RRRRW] ** 4: [RRRR.] */ if( eFileLock==SHARED_LOCK ){ #if !defined(__APPLE__) || !SQLITE_ENABLE_LOCKING_STYLE (void)handleNFSUnlock; assert( handleNFSUnlock==0 ); #endif #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE if( handleNFSUnlock ){ int tErrno; /* Error code from system call errors */ off_t divSize = SHARED_SIZE - 1; lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = SHARED_FIRST; lock.l_len = divSize; if( unixFileLock(pFile, &lock)==(-1) ){ tErrno = errno; rc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, tErrno); goto end_unlock; } lock.l_type = F_RDLCK; lock.l_whence = SEEK_SET; lock.l_start = SHARED_FIRST; lock.l_len = divSize; if( unixFileLock(pFile, &lock)==(-1) ){ tErrno = errno; rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_RDLOCK); if( IS_LOCK_ERROR(rc) ){ storeLastErrno(pFile, tErrno); } goto end_unlock; } lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = SHARED_FIRST+divSize; lock.l_len = SHARED_SIZE-divSize; if( unixFileLock(pFile, &lock)==(-1) ){ tErrno = errno; rc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, tErrno); goto end_unlock; } }else #endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ { lock.l_type = F_RDLCK; lock.l_whence = SEEK_SET; lock.l_start = SHARED_FIRST; lock.l_len = SHARED_SIZE; if( unixFileLock(pFile, &lock) ){ /* In theory, the call to unixFileLock() cannot fail because another ** process is holding an incompatible lock. If it does, this ** indicates that the other process is not following the locking ** protocol. If this happens, return SQLITE_IOERR_RDLOCK. Returning ** SQLITE_BUSY would confuse the upper layer (in practice it causes ** an assert to fail). */ rc = SQLITE_IOERR_RDLOCK; storeLastErrno(pFile, errno); goto end_unlock; } } } lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = PENDING_BYTE; lock.l_len = 2L; assert( PENDING_BYTE+1==RESERVED_BYTE ); if( unixFileLock(pFile, &lock)==0 ){ pInode->eFileLock = SHARED_LOCK; }else{ rc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, errno); goto end_unlock; } } if( eFileLock==NO_LOCK ){ /* Decrement the shared lock counter. Release the lock using an ** OS call only when all threads in this same process have released ** the lock. */ pInode->nShared--; if( pInode->nShared==0 ){ lock.l_type = F_UNLCK; lock.l_whence = SEEK_SET; lock.l_start = lock.l_len = 0L; if( unixFileLock(pFile, &lock)==0 ){ pInode->eFileLock = NO_LOCK; }else{ rc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, errno); pInode->eFileLock = NO_LOCK; pFile->eFileLock = NO_LOCK; } } /* Decrement the count of locks against this same file. When the ** count reaches zero, close any other file descriptors whose close ** was deferred because of outstanding locks. */ pInode->nLock--; assert( pInode->nLock>=0 ); if( pInode->nLock==0 ) closePendingFds(pFile); } end_unlock: sqlite3_mutex_leave(pInode->pLockMutex); if( rc==SQLITE_OK ){ pFile->eFileLock = eFileLock; } return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int unixUnlock(sqlite3_file *id, int eFileLock){ #if SQLITE_MAX_MMAP_SIZE>0 assert( eFileLock==SHARED_LOCK || ((unixFile *)id)->nFetchOut==0 ); #endif return posixUnlock(id, eFileLock, 0); } #if SQLITE_MAX_MMAP_SIZE>0 static int unixMapfile(unixFile *pFd, i64 nByte); static void unixUnmapfile(unixFile *pFd); #endif /* ** This function performs the parts of the "close file" operation ** common to all locking schemes. It closes the directory and file ** handles, if they are valid, and sets all fields of the unixFile ** structure to 0. ** ** It is *not* necessary to hold the mutex when this routine is called, ** even on VxWorks. A mutex will be acquired on VxWorks by the ** vxworksReleaseFileId() routine. */ static int closeUnixFile(sqlite3_file *id){ unixFile *pFile = (unixFile*)id; #if SQLITE_MAX_MMAP_SIZE>0 unixUnmapfile(pFile); #endif if( pFile->h>=0 ){ robust_close(pFile, pFile->h, __LINE__); pFile->h = -1; } #if OS_VXWORKS if( pFile->pId ){ if( pFile->ctrlFlags & UNIXFILE_DELETE ){ osUnlink(pFile->pId->zCanonicalName); } vxworksReleaseFileId(pFile->pId); pFile->pId = 0; } #endif #ifdef SQLITE_UNLINK_AFTER_CLOSE if( pFile->ctrlFlags & UNIXFILE_DELETE ){ osUnlink(pFile->zPath); sqlite3_free(*(char**)&pFile->zPath); pFile->zPath = 0; } #endif OSTRACE(("CLOSE %-3d\n", pFile->h)); OpenCounter(-1); sqlite3_free(pFile->pPreallocatedUnused); memset(pFile, 0, sizeof(unixFile)); return SQLITE_OK; } /* ** Close a file. */ static int unixClose(sqlite3_file *id){ int rc = SQLITE_OK; unixFile *pFile = (unixFile *)id; unixInodeInfo *pInode = pFile->pInode; assert( pInode!=0 ); verifyDbFile(pFile); unixUnlock(id, NO_LOCK); assert( unixFileMutexNotheld(pFile) ); unixEnterMutex(); /* unixFile.pInode is always valid here. Otherwise, a different close ** routine (e.g. nolockClose()) would be called instead. */ assert( pFile->pInode->nLock>0 || pFile->pInode->bProcessLock==0 ); sqlite3_mutex_enter(pInode->pLockMutex); if( pInode->nLock ){ /* If there are outstanding locks, do not actually close the file just ** yet because that would clear those locks. Instead, add the file ** descriptor to pInode->pUnused list. It will be automatically closed ** when the last lock is cleared. */ setPendingFd(pFile); } sqlite3_mutex_leave(pInode->pLockMutex); releaseInodeInfo(pFile); rc = closeUnixFile(id); unixLeaveMutex(); return rc; } /************** End of the posix advisory lock implementation ***************** ******************************************************************************/ /****************************************************************************** ****************************** No-op Locking ********************************** ** ** Of the various locking implementations available, this is by far the ** simplest: locking is ignored. No attempt is made to lock the database ** file for reading or writing. ** ** This locking mode is appropriate for use on read-only databases ** (ex: databases that are burned into CD-ROM, for example.) It can ** also be used if the application employs some external mechanism to ** prevent simultaneous access of the same database by two or more ** database connections. But there is a serious risk of database ** corruption if this locking mode is used in situations where multiple ** database connections are accessing the same database file at the same ** time and one or more of those connections are writing. */ static int nolockCheckReservedLock(sqlite3_file *NotUsed, int *pResOut){ UNUSED_PARAMETER(NotUsed); *pResOut = 0; return SQLITE_OK; } static int nolockLock(sqlite3_file *NotUsed, int NotUsed2){ UNUSED_PARAMETER2(NotUsed, NotUsed2); return SQLITE_OK; } static int nolockUnlock(sqlite3_file *NotUsed, int NotUsed2){ UNUSED_PARAMETER2(NotUsed, NotUsed2); return SQLITE_OK; } /* ** Close the file. */ static int nolockClose(sqlite3_file *id) { return closeUnixFile(id); } /******************* End of the no-op lock implementation ********************* ******************************************************************************/ /****************************************************************************** ************************* Begin dot-file Locking ****************************** ** ** The dotfile locking implementation uses the existence of separate lock ** files (really a directory) to control access to the database. This works ** on just about every filesystem imaginable. But there are serious downsides: ** ** (1) There is zero concurrency. A single reader blocks all other ** connections from reading or writing the database. ** ** (2) An application crash or power loss can leave stale lock files ** sitting around that need to be cleared manually. ** ** Nevertheless, a dotlock is an appropriate locking mode for use if no ** other locking strategy is available. ** ** Dotfile locking works by creating a subdirectory in the same directory as ** the database and with the same name but with a ".lock" extension added. ** The existence of a lock directory implies an EXCLUSIVE lock. All other ** lock types (SHARED, RESERVED, PENDING) are mapped into EXCLUSIVE. */ /* ** The file suffix added to the data base filename in order to create the ** lock directory. */ #define DOTLOCK_SUFFIX ".lock" /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. ** ** In dotfile locking, either a lock exists or it does not. So in this ** variation of CheckReservedLock(), *pResOut is set to true if any lock ** is held on the file and false if the file is unlocked. */ static int dotlockCheckReservedLock(sqlite3_file *id, int *pResOut) { int rc = SQLITE_OK; int reserved = 0; unixFile *pFile = (unixFile*)id; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); assert( pFile ); reserved = osAccess((const char*)pFile->lockingContext, 0)==0; OSTRACE(("TEST WR-LOCK %d %d %d (dotlock)\n", pFile->h, rc, reserved)); *pResOut = reserved; return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. ** ** With dotfile locking, we really only support state (4): EXCLUSIVE. ** But we track the other locking levels internally. */ static int dotlockLock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; char *zLockFile = (char *)pFile->lockingContext; int rc = SQLITE_OK; /* If we have any lock, then the lock file already exists. All we have ** to do is adjust our internal record of the lock level. */ if( pFile->eFileLock > NO_LOCK ){ pFile->eFileLock = eFileLock; /* Always update the timestamp on the old file */ #ifdef HAVE_UTIME utime(zLockFile, NULL); #else utimes(zLockFile, NULL); #endif return SQLITE_OK; } /* grab an exclusive lock */ rc = osMkdir(zLockFile, 0777); if( rc<0 ){ /* failed to open/create the lock directory */ int tErrno = errno; if( EEXIST == tErrno ){ rc = SQLITE_BUSY; } else { rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); if( rc!=SQLITE_BUSY ){ storeLastErrno(pFile, tErrno); } } return rc; } /* got it, set the type and return ok */ pFile->eFileLock = eFileLock; return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. ** ** When the locking level reaches NO_LOCK, delete the lock file. */ static int dotlockUnlock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; char *zLockFile = (char *)pFile->lockingContext; int rc; assert( pFile ); OSTRACE(("UNLOCK %d %d was %d pid=%d (dotlock)\n", pFile->h, eFileLock, pFile->eFileLock, osGetpid(0))); assert( eFileLock<=SHARED_LOCK ); /* no-op if possible */ if( pFile->eFileLock==eFileLock ){ return SQLITE_OK; } /* To downgrade to shared, simply update our internal notion of the ** lock state. No need to mess with the file on disk. */ if( eFileLock==SHARED_LOCK ){ pFile->eFileLock = SHARED_LOCK; return SQLITE_OK; } /* To fully unlock the database, delete the lock file */ assert( eFileLock==NO_LOCK ); rc = osRmdir(zLockFile); if( rc<0 ){ int tErrno = errno; if( tErrno==ENOENT ){ rc = SQLITE_OK; }else{ rc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, tErrno); } return rc; } pFile->eFileLock = NO_LOCK; return SQLITE_OK; } /* ** Close a file. Make sure the lock has been released before closing. */ static int dotlockClose(sqlite3_file *id) { unixFile *pFile = (unixFile*)id; assert( id!=0 ); dotlockUnlock(id, NO_LOCK); sqlite3_free(pFile->lockingContext); return closeUnixFile(id); } /****************** End of the dot-file lock implementation ******************* ******************************************************************************/ /****************************************************************************** ************************** Begin flock Locking ******************************** ** ** Use the flock() system call to do file locking. ** ** flock() locking is like dot-file locking in that the various ** fine-grain locking levels supported by SQLite are collapsed into ** a single exclusive lock. In other words, SHARED, RESERVED, and ** PENDING locks are the same thing as an EXCLUSIVE lock. SQLite ** still works when you do this, but concurrency is reduced since ** only a single process can be reading the database at a time. ** ** Omit this section if SQLITE_ENABLE_LOCKING_STYLE is turned off */ #if SQLITE_ENABLE_LOCKING_STYLE /* ** Retry flock() calls that fail with EINTR */ #ifdef EINTR static int robust_flock(int fd, int op){ int rc; do{ rc = flock(fd,op); }while( rc<0 && errno==EINTR ); return rc; } #else # define robust_flock(a,b) flock(a,b) #endif /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. */ static int flockCheckReservedLock(sqlite3_file *id, int *pResOut){ int rc = SQLITE_OK; int reserved = 0; unixFile *pFile = (unixFile*)id; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); assert( pFile ); /* Check if a thread in this process holds such a lock */ if( pFile->eFileLock>SHARED_LOCK ){ reserved = 1; } /* Otherwise see if some other process holds it. */ if( !reserved ){ /* attempt to get the lock */ int lrc = robust_flock(pFile->h, LOCK_EX | LOCK_NB); if( !lrc ){ /* got the lock, unlock it */ lrc = robust_flock(pFile->h, LOCK_UN); if ( lrc ) { int tErrno = errno; /* unlock failed with an error */ lrc = SQLITE_IOERR_UNLOCK; storeLastErrno(pFile, tErrno); rc = lrc; } } else { int tErrno = errno; reserved = 1; /* someone else might have it reserved */ lrc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); if( IS_LOCK_ERROR(lrc) ){ storeLastErrno(pFile, tErrno); rc = lrc; } } } OSTRACE(("TEST WR-LOCK %d %d %d (flock)\n", pFile->h, rc, reserved)); #ifdef SQLITE_IGNORE_FLOCK_LOCK_ERRORS if( (rc & 0xff) == SQLITE_IOERR ){ rc = SQLITE_OK; reserved=1; } #endif /* SQLITE_IGNORE_FLOCK_LOCK_ERRORS */ *pResOut = reserved; return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** flock() only really support EXCLUSIVE locks. We track intermediate ** lock states in the sqlite3_file structure, but all locks SHARED or ** above are really EXCLUSIVE locks and exclude all other processes from ** access the file. ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. */ static int flockLock(sqlite3_file *id, int eFileLock) { int rc = SQLITE_OK; unixFile *pFile = (unixFile*)id; assert( pFile ); /* if we already have a lock, it is exclusive. ** Just adjust level and punt on outta here. */ if (pFile->eFileLock > NO_LOCK) { pFile->eFileLock = eFileLock; return SQLITE_OK; } /* grab an exclusive lock */ if (robust_flock(pFile->h, LOCK_EX | LOCK_NB)) { int tErrno = errno; /* didn't get, must be busy */ rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_LOCK); if( IS_LOCK_ERROR(rc) ){ storeLastErrno(pFile, tErrno); } } else { /* got it, set the type and return ok */ pFile->eFileLock = eFileLock; } OSTRACE(("LOCK %d %s %s (flock)\n", pFile->h, azFileLock(eFileLock), rc==SQLITE_OK ? "ok" : "failed")); #ifdef SQLITE_IGNORE_FLOCK_LOCK_ERRORS if( (rc & 0xff) == SQLITE_IOERR ){ rc = SQLITE_BUSY; } #endif /* SQLITE_IGNORE_FLOCK_LOCK_ERRORS */ return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int flockUnlock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; assert( pFile ); OSTRACE(("UNLOCK %d %d was %d pid=%d (flock)\n", pFile->h, eFileLock, pFile->eFileLock, osGetpid(0))); assert( eFileLock<=SHARED_LOCK ); /* no-op if possible */ if( pFile->eFileLock==eFileLock ){ return SQLITE_OK; } /* shared can just be set because we always have an exclusive */ if (eFileLock==SHARED_LOCK) { pFile->eFileLock = eFileLock; return SQLITE_OK; } /* no, really, unlock. */ if( robust_flock(pFile->h, LOCK_UN) ){ #ifdef SQLITE_IGNORE_FLOCK_LOCK_ERRORS return SQLITE_OK; #endif /* SQLITE_IGNORE_FLOCK_LOCK_ERRORS */ return SQLITE_IOERR_UNLOCK; }else{ pFile->eFileLock = NO_LOCK; return SQLITE_OK; } } /* ** Close a file. */ static int flockClose(sqlite3_file *id) { assert( id!=0 ); flockUnlock(id, NO_LOCK); return closeUnixFile(id); } #endif /* SQLITE_ENABLE_LOCKING_STYLE && !OS_VXWORK */ /******************* End of the flock lock implementation ********************* ******************************************************************************/ /****************************************************************************** ************************ Begin Named Semaphore Locking ************************ ** ** Named semaphore locking is only supported on VxWorks. ** ** Semaphore locking is like dot-lock and flock in that it really only ** supports EXCLUSIVE locking. Only a single process can read or write ** the database file at a time. This reduces potential concurrency, but ** makes the lock implementation much easier. */ #if OS_VXWORKS /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. */ static int semXCheckReservedLock(sqlite3_file *id, int *pResOut) { int rc = SQLITE_OK; int reserved = 0; unixFile *pFile = (unixFile*)id; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); assert( pFile ); /* Check if a thread in this process holds such a lock */ if( pFile->eFileLock>SHARED_LOCK ){ reserved = 1; } /* Otherwise see if some other process holds it. */ if( !reserved ){ sem_t *pSem = pFile->pInode->pSem; if( sem_trywait(pSem)==-1 ){ int tErrno = errno; if( EAGAIN != tErrno ){ rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_CHECKRESERVEDLOCK); storeLastErrno(pFile, tErrno); } else { /* someone else has the lock when we are in NO_LOCK */ reserved = (pFile->eFileLock < SHARED_LOCK); } }else{ /* we could have it if we want it */ sem_post(pSem); } } OSTRACE(("TEST WR-LOCK %d %d %d (sem)\n", pFile->h, rc, reserved)); *pResOut = reserved; return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** Semaphore locks only really support EXCLUSIVE locks. We track intermediate ** lock states in the sqlite3_file structure, but all locks SHARED or ** above are really EXCLUSIVE locks and exclude all other processes from ** access the file. ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. */ static int semXLock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; sem_t *pSem = pFile->pInode->pSem; int rc = SQLITE_OK; /* if we already have a lock, it is exclusive. ** Just adjust level and punt on outta here. */ if (pFile->eFileLock > NO_LOCK) { pFile->eFileLock = eFileLock; rc = SQLITE_OK; goto sem_end_lock; } /* lock semaphore now but bail out when already locked. */ if( sem_trywait(pSem)==-1 ){ rc = SQLITE_BUSY; goto sem_end_lock; } /* got it, set the type and return ok */ pFile->eFileLock = eFileLock; sem_end_lock: return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int semXUnlock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; sem_t *pSem = pFile->pInode->pSem; assert( pFile ); assert( pSem ); OSTRACE(("UNLOCK %d %d was %d pid=%d (sem)\n", pFile->h, eFileLock, pFile->eFileLock, osGetpid(0))); assert( eFileLock<=SHARED_LOCK ); /* no-op if possible */ if( pFile->eFileLock==eFileLock ){ return SQLITE_OK; } /* shared can just be set because we always have an exclusive */ if (eFileLock==SHARED_LOCK) { pFile->eFileLock = eFileLock; return SQLITE_OK; } /* no, really unlock. */ if ( sem_post(pSem)==-1 ) { int rc, tErrno = errno; rc = sqliteErrorFromPosixError(tErrno, SQLITE_IOERR_UNLOCK); if( IS_LOCK_ERROR(rc) ){ storeLastErrno(pFile, tErrno); } return rc; } pFile->eFileLock = NO_LOCK; return SQLITE_OK; } /* ** Close a file. */ static int semXClose(sqlite3_file *id) { if( id ){ unixFile *pFile = (unixFile*)id; semXUnlock(id, NO_LOCK); assert( pFile ); assert( unixFileMutexNotheld(pFile) ); unixEnterMutex(); releaseInodeInfo(pFile); unixLeaveMutex(); closeUnixFile(id); } return SQLITE_OK; } #endif /* OS_VXWORKS */ /* ** Named semaphore locking is only available on VxWorks. ** *************** End of the named semaphore lock implementation **************** ******************************************************************************/ /****************************************************************************** *************************** Begin AFP Locking ********************************* ** ** AFP is the Apple Filing Protocol. AFP is a network filesystem found ** on Apple Macintosh computers - both OS9 and OSX. ** ** Third-party implementations of AFP are available. But this code here ** only works on OSX. */ #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE /* ** The afpLockingContext structure contains all afp lock specific state */ typedef struct afpLockingContext afpLockingContext; struct afpLockingContext { int reserved; const char *dbPath; /* Name of the open file */ }; struct ByteRangeLockPB2 { unsigned long long offset; /* offset to first byte to lock */ unsigned long long length; /* nbr of bytes to lock */ unsigned long long retRangeStart; /* nbr of 1st byte locked if successful */ unsigned char unLockFlag; /* 1 = unlock, 0 = lock */ unsigned char startEndFlag; /* 1=rel to end of fork, 0=rel to start */ int fd; /* file desc to assoc this lock with */ }; #define afpfsByteRangeLock2FSCTL _IOWR('z', 23, struct ByteRangeLockPB2) /* ** This is a utility for setting or clearing a bit-range lock on an ** AFP filesystem. ** ** Return SQLITE_OK on success, SQLITE_BUSY on failure. */ static int afpSetLock( const char *path, /* Name of the file to be locked or unlocked */ unixFile *pFile, /* Open file descriptor on path */ unsigned long long offset, /* First byte to be locked */ unsigned long long length, /* Number of bytes to lock */ int setLockFlag /* True to set lock. False to clear lock */ ){ struct ByteRangeLockPB2 pb; int err; pb.unLockFlag = setLockFlag ? 0 : 1; pb.startEndFlag = 0; pb.offset = offset; pb.length = length; pb.fd = pFile->h; OSTRACE(("AFPSETLOCK [%s] for %d%s in range %llx:%llx\n", (setLockFlag?"ON":"OFF"), pFile->h, (pb.fd==-1?"[testval-1]":""), offset, length)); err = fsctl(path, afpfsByteRangeLock2FSCTL, &pb, 0); if ( err==-1 ) { int rc; int tErrno = errno; OSTRACE(("AFPSETLOCK failed to fsctl() '%s' %d %s\n", path, tErrno, strerror(tErrno))); #ifdef SQLITE_IGNORE_AFP_LOCK_ERRORS rc = SQLITE_BUSY; #else rc = sqliteErrorFromPosixError(tErrno, setLockFlag ? SQLITE_IOERR_LOCK : SQLITE_IOERR_UNLOCK); #endif /* SQLITE_IGNORE_AFP_LOCK_ERRORS */ if( IS_LOCK_ERROR(rc) ){ storeLastErrno(pFile, tErrno); } return rc; } else { return SQLITE_OK; } } /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. */ static int afpCheckReservedLock(sqlite3_file *id, int *pResOut){ int rc = SQLITE_OK; int reserved = 0; unixFile *pFile = (unixFile*)id; afpLockingContext *context; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); assert( pFile ); context = (afpLockingContext *) pFile->lockingContext; if( context->reserved ){ *pResOut = 1; return SQLITE_OK; } sqlite3_mutex_enter(pFile->pInode->pLockMutex); /* Check if a thread in this process holds such a lock */ if( pFile->pInode->eFileLock>SHARED_LOCK ){ reserved = 1; } /* Otherwise see if some other process holds it. */ if( !reserved ){ /* lock the RESERVED byte */ int lrc = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1,1); if( SQLITE_OK==lrc ){ /* if we succeeded in taking the reserved lock, unlock it to restore ** the original state */ lrc = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1, 0); } else { /* if we failed to get the lock then someone else must have it */ reserved = 1; } if( IS_LOCK_ERROR(lrc) ){ rc=lrc; } } sqlite3_mutex_leave(pFile->pInode->pLockMutex); OSTRACE(("TEST WR-LOCK %d %d %d (afp)\n", pFile->h, rc, reserved)); *pResOut = reserved; return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. */ static int afpLock(sqlite3_file *id, int eFileLock){ int rc = SQLITE_OK; unixFile *pFile = (unixFile*)id; unixInodeInfo *pInode = pFile->pInode; afpLockingContext *context = (afpLockingContext *) pFile->lockingContext; assert( pFile ); OSTRACE(("LOCK %d %s was %s(%s,%d) pid=%d (afp)\n", pFile->h, azFileLock(eFileLock), azFileLock(pFile->eFileLock), azFileLock(pInode->eFileLock), pInode->nShared , osGetpid(0))); /* If there is already a lock of this type or more restrictive on the ** unixFile, do nothing. Don't use the afp_end_lock: exit path, as ** unixEnterMutex() hasn't been called yet. */ if( pFile->eFileLock>=eFileLock ){ OSTRACE(("LOCK %d %s ok (already held) (afp)\n", pFile->h, azFileLock(eFileLock))); return SQLITE_OK; } /* Make sure the locking sequence is correct ** (1) We never move from unlocked to anything higher than shared lock. ** (2) SQLite never explicitly requests a pendig lock. ** (3) A shared lock is always held when a reserve lock is requested. */ assert( pFile->eFileLock!=NO_LOCK || eFileLock==SHARED_LOCK ); assert( eFileLock!=PENDING_LOCK ); assert( eFileLock!=RESERVED_LOCK || pFile->eFileLock==SHARED_LOCK ); /* This mutex is needed because pFile->pInode is shared across threads */ pInode = pFile->pInode; sqlite3_mutex_enter(pInode->pLockMutex); /* If some thread using this PID has a lock via a different unixFile* ** handle that precludes the requested lock, return BUSY. */ if( (pFile->eFileLock!=pInode->eFileLock && (pInode->eFileLock>=PENDING_LOCK || eFileLock>SHARED_LOCK)) ){ rc = SQLITE_BUSY; goto afp_end_lock; } /* If a SHARED lock is requested, and some thread using this PID already ** has a SHARED or RESERVED lock, then increment reference counts and ** return SQLITE_OK. */ if( eFileLock==SHARED_LOCK && (pInode->eFileLock==SHARED_LOCK || pInode->eFileLock==RESERVED_LOCK) ){ assert( eFileLock==SHARED_LOCK ); assert( pFile->eFileLock==0 ); assert( pInode->nShared>0 ); pFile->eFileLock = SHARED_LOCK; pInode->nShared++; pInode->nLock++; goto afp_end_lock; } /* A PENDING lock is needed before acquiring a SHARED lock and before ** acquiring an EXCLUSIVE lock. For the SHARED lock, the PENDING will ** be released. */ if( eFileLock==SHARED_LOCK || (eFileLock==EXCLUSIVE_LOCK && pFile->eFileLockdbPath, pFile, PENDING_BYTE, 1, 1); if (failed) { rc = failed; goto afp_end_lock; } } /* If control gets to this point, then actually go ahead and make ** operating system calls for the specified lock. */ if( eFileLock==SHARED_LOCK ){ int lrc1, lrc2, lrc1Errno = 0; long lk, mask; assert( pInode->nShared==0 ); assert( pInode->eFileLock==0 ); mask = (sizeof(long)==8) ? LARGEST_INT64 : 0x7fffffff; /* Now get the read-lock SHARED_LOCK */ /* note that the quality of the randomness doesn't matter that much */ lk = random(); pInode->sharedByte = (lk & mask)%(SHARED_SIZE - 1); lrc1 = afpSetLock(context->dbPath, pFile, SHARED_FIRST+pInode->sharedByte, 1, 1); if( IS_LOCK_ERROR(lrc1) ){ lrc1Errno = pFile->lastErrno; } /* Drop the temporary PENDING lock */ lrc2 = afpSetLock(context->dbPath, pFile, PENDING_BYTE, 1, 0); if( IS_LOCK_ERROR(lrc1) ) { storeLastErrno(pFile, lrc1Errno); rc = lrc1; goto afp_end_lock; } else if( IS_LOCK_ERROR(lrc2) ){ rc = lrc2; goto afp_end_lock; } else if( lrc1 != SQLITE_OK ) { rc = lrc1; } else { pFile->eFileLock = SHARED_LOCK; pInode->nLock++; pInode->nShared = 1; } }else if( eFileLock==EXCLUSIVE_LOCK && pInode->nShared>1 ){ /* We are trying for an exclusive lock but another thread in this ** same process is still holding a shared lock. */ rc = SQLITE_BUSY; }else{ /* The request was for a RESERVED or EXCLUSIVE lock. It is ** assumed that there is a SHARED or greater lock on the file ** already. */ int failed = 0; assert( 0!=pFile->eFileLock ); if (eFileLock >= RESERVED_LOCK && pFile->eFileLock < RESERVED_LOCK) { /* Acquire a RESERVED lock */ failed = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1,1); if( !failed ){ context->reserved = 1; } } if (!failed && eFileLock == EXCLUSIVE_LOCK) { /* Acquire an EXCLUSIVE lock */ /* Remove the shared lock before trying the range. we'll need to ** reestablish the shared lock if we can't get the afpUnlock */ if( !(failed = afpSetLock(context->dbPath, pFile, SHARED_FIRST + pInode->sharedByte, 1, 0)) ){ int failed2 = SQLITE_OK; /* now attemmpt to get the exclusive lock range */ failed = afpSetLock(context->dbPath, pFile, SHARED_FIRST, SHARED_SIZE, 1); if( failed && (failed2 = afpSetLock(context->dbPath, pFile, SHARED_FIRST + pInode->sharedByte, 1, 1)) ){ /* Can't reestablish the shared lock. Sqlite can't deal, this is ** a critical I/O error */ rc = ((failed & 0xff) == SQLITE_IOERR) ? failed2 : SQLITE_IOERR_LOCK; goto afp_end_lock; } }else{ rc = failed; } } if( failed ){ rc = failed; } } if( rc==SQLITE_OK ){ pFile->eFileLock = eFileLock; pInode->eFileLock = eFileLock; }else if( eFileLock==EXCLUSIVE_LOCK ){ pFile->eFileLock = PENDING_LOCK; pInode->eFileLock = PENDING_LOCK; } afp_end_lock: sqlite3_mutex_leave(pInode->pLockMutex); OSTRACE(("LOCK %d %s %s (afp)\n", pFile->h, azFileLock(eFileLock), rc==SQLITE_OK ? "ok" : "failed")); return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int afpUnlock(sqlite3_file *id, int eFileLock) { int rc = SQLITE_OK; unixFile *pFile = (unixFile*)id; unixInodeInfo *pInode; afpLockingContext *context = (afpLockingContext *) pFile->lockingContext; int skipShared = 0; #ifdef SQLITE_TEST int h = pFile->h; #endif assert( pFile ); OSTRACE(("UNLOCK %d %d was %d(%d,%d) pid=%d (afp)\n", pFile->h, eFileLock, pFile->eFileLock, pFile->pInode->eFileLock, pFile->pInode->nShared, osGetpid(0))); assert( eFileLock<=SHARED_LOCK ); if( pFile->eFileLock<=eFileLock ){ return SQLITE_OK; } pInode = pFile->pInode; sqlite3_mutex_enter(pInode->pLockMutex); assert( pInode->nShared!=0 ); if( pFile->eFileLock>SHARED_LOCK ){ assert( pInode->eFileLock==pFile->eFileLock ); SimulateIOErrorBenign(1); SimulateIOError( h=(-1) ) SimulateIOErrorBenign(0); #ifdef SQLITE_DEBUG /* When reducing a lock such that other processes can start ** reading the database file again, make sure that the ** transaction counter was updated if any part of the database ** file changed. If the transaction counter is not updated, ** other connections to the same file might not realize that ** the file has changed and hence might not know to flush their ** cache. The use of a stale cache can lead to database corruption. */ assert( pFile->inNormalWrite==0 || pFile->dbUpdate==0 || pFile->transCntrChng==1 ); pFile->inNormalWrite = 0; #endif if( pFile->eFileLock==EXCLUSIVE_LOCK ){ rc = afpSetLock(context->dbPath, pFile, SHARED_FIRST, SHARED_SIZE, 0); if( rc==SQLITE_OK && (eFileLock==SHARED_LOCK || pInode->nShared>1) ){ /* only re-establish the shared lock if necessary */ int sharedLockByte = SHARED_FIRST+pInode->sharedByte; rc = afpSetLock(context->dbPath, pFile, sharedLockByte, 1, 1); } else { skipShared = 1; } } if( rc==SQLITE_OK && pFile->eFileLock>=PENDING_LOCK ){ rc = afpSetLock(context->dbPath, pFile, PENDING_BYTE, 1, 0); } if( rc==SQLITE_OK && pFile->eFileLock>=RESERVED_LOCK && context->reserved ){ rc = afpSetLock(context->dbPath, pFile, RESERVED_BYTE, 1, 0); if( !rc ){ context->reserved = 0; } } if( rc==SQLITE_OK && (eFileLock==SHARED_LOCK || pInode->nShared>1)){ pInode->eFileLock = SHARED_LOCK; } } if( rc==SQLITE_OK && eFileLock==NO_LOCK ){ /* Decrement the shared lock counter. Release the lock using an ** OS call only when all threads in this same process have released ** the lock. */ unsigned long long sharedLockByte = SHARED_FIRST+pInode->sharedByte; pInode->nShared--; if( pInode->nShared==0 ){ SimulateIOErrorBenign(1); SimulateIOError( h=(-1) ) SimulateIOErrorBenign(0); if( !skipShared ){ rc = afpSetLock(context->dbPath, pFile, sharedLockByte, 1, 0); } if( !rc ){ pInode->eFileLock = NO_LOCK; pFile->eFileLock = NO_LOCK; } } if( rc==SQLITE_OK ){ pInode->nLock--; assert( pInode->nLock>=0 ); if( pInode->nLock==0 ) closePendingFds(pFile); } } sqlite3_mutex_leave(pInode->pLockMutex); if( rc==SQLITE_OK ){ pFile->eFileLock = eFileLock; } return rc; } /* ** Close a file & cleanup AFP specific locking context */ static int afpClose(sqlite3_file *id) { int rc = SQLITE_OK; unixFile *pFile = (unixFile*)id; assert( id!=0 ); afpUnlock(id, NO_LOCK); assert( unixFileMutexNotheld(pFile) ); unixEnterMutex(); if( pFile->pInode ){ unixInodeInfo *pInode = pFile->pInode; sqlite3_mutex_enter(pInode->pLockMutex); if( pInode->nLock ){ /* If there are outstanding locks, do not actually close the file just ** yet because that would clear those locks. Instead, add the file ** descriptor to pInode->aPending. It will be automatically closed when ** the last lock is cleared. */ setPendingFd(pFile); } sqlite3_mutex_leave(pInode->pLockMutex); } releaseInodeInfo(pFile); sqlite3_free(pFile->lockingContext); rc = closeUnixFile(id); unixLeaveMutex(); return rc; } #endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ /* ** The code above is the AFP lock implementation. The code is specific ** to MacOSX and does not work on other unix platforms. No alternative ** is available. If you don't compile for a mac, then the "unix-afp" ** VFS is not available. ** ********************* End of the AFP lock implementation ********************** ******************************************************************************/ /****************************************************************************** *************************** Begin NFS Locking ********************************/ #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int nfsUnlock(sqlite3_file *id, int eFileLock){ return posixUnlock(id, eFileLock, 1); } #endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ /* ** The code above is the NFS lock implementation. The code is specific ** to MacOSX and does not work on other unix platforms. No alternative ** is available. ** ********************* End of the NFS lock implementation ********************** ******************************************************************************/ /****************************************************************************** **************** Non-locking sqlite3_file methods ***************************** ** ** The next division contains implementations for all methods of the ** sqlite3_file object other than the locking methods. The locking ** methods were defined in divisions above (one locking method per ** division). Those methods that are common to all locking modes ** are gather together into this division. */ /* ** Seek to the offset passed as the second argument, then read cnt ** bytes into pBuf. Return the number of bytes actually read. ** ** NB: If you define USE_PREAD or USE_PREAD64, then it might also ** be necessary to define _XOPEN_SOURCE to be 500. This varies from ** one system to another. Since SQLite does not define USE_PREAD ** in any form by default, we will not attempt to define _XOPEN_SOURCE. ** See tickets #2741 and #2681. ** ** To avoid stomping the errno value on a failed read the lastErrno value ** is set before returning. */ static int seekAndRead(unixFile *id, sqlite3_int64 offset, void *pBuf, int cnt){ int got; int prior = 0; #if (!defined(USE_PREAD) && !defined(USE_PREAD64)) i64 newOffset; #endif TIMER_START; assert( cnt==(cnt&0x1ffff) ); assert( id->h>2 ); do{ #if defined(USE_PREAD) got = osPread(id->h, pBuf, cnt, offset); SimulateIOError( got = -1 ); #elif defined(USE_PREAD64) got = osPread64(id->h, pBuf, cnt, offset); SimulateIOError( got = -1 ); #else newOffset = lseek(id->h, offset, SEEK_SET); SimulateIOError( newOffset = -1 ); if( newOffset<0 ){ storeLastErrno((unixFile*)id, errno); return -1; } got = osRead(id->h, pBuf, cnt); #endif if( got==cnt ) break; if( got<0 ){ if( errno==EINTR ){ got = 1; continue; } prior = 0; storeLastErrno((unixFile*)id, errno); break; }else if( got>0 ){ cnt -= got; offset += got; prior += got; pBuf = (void*)(got + (char*)pBuf); } }while( got>0 ); TIMER_END; OSTRACE(("READ %-3d %5d %7lld %llu\n", id->h, got+prior, offset-prior, TIMER_ELAPSED)); return got+prior; } /* ** Read data from a file into a buffer. Return SQLITE_OK if all ** bytes were read successfully and SQLITE_IOERR if anything goes ** wrong. */ static int unixRead( sqlite3_file *id, void *pBuf, int amt, sqlite3_int64 offset ){ unixFile *pFile = (unixFile *)id; int got; assert( id ); assert( offset>=0 ); assert( amt>0 ); /* If this is a database file (not a journal, super-journal or temp ** file), the bytes in the locking range should never be read or written. */ #if 0 assert( pFile->pPreallocatedUnused==0 || offset>=PENDING_BYTE+512 || offset+amt<=PENDING_BYTE ); #endif #if SQLITE_MAX_MMAP_SIZE>0 /* Deal with as much of this read request as possible by transfering ** data from the memory mapping using memcpy(). */ if( offsetmmapSize ){ if( offset+amt <= pFile->mmapSize ){ memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], amt); return SQLITE_OK; }else{ int nCopy = pFile->mmapSize - offset; memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], nCopy); pBuf = &((u8 *)pBuf)[nCopy]; amt -= nCopy; offset += nCopy; } } #endif got = seekAndRead(pFile, offset, pBuf, amt); if( got==amt ){ return SQLITE_OK; }else if( got<0 ){ /* lastErrno set by seekAndRead */ return SQLITE_IOERR_READ; }else{ storeLastErrno(pFile, 0); /* not a system error */ /* Unread parts of the buffer must be zero-filled */ memset(&((char*)pBuf)[got], 0, amt-got); return SQLITE_IOERR_SHORT_READ; } } /* ** Attempt to seek the file-descriptor passed as the first argument to ** absolute offset iOff, then attempt to write nBuf bytes of data from ** pBuf to it. If an error occurs, return -1 and set *piErrno. Otherwise, ** return the actual number of bytes written (which may be less than ** nBuf). */ static int seekAndWriteFd( int fd, /* File descriptor to write to */ i64 iOff, /* File offset to begin writing at */ const void *pBuf, /* Copy data from this buffer to the file */ int nBuf, /* Size of buffer pBuf in bytes */ int *piErrno /* OUT: Error number if error occurs */ ){ int rc = 0; /* Value returned by system call */ assert( nBuf==(nBuf&0x1ffff) ); assert( fd>2 ); assert( piErrno!=0 ); nBuf &= 0x1ffff; TIMER_START; #if defined(USE_PREAD) do{ rc = (int)osPwrite(fd, pBuf, nBuf, iOff); }while( rc<0 && errno==EINTR ); #elif defined(USE_PREAD64) do{ rc = (int)osPwrite64(fd, pBuf, nBuf, iOff);}while( rc<0 && errno==EINTR); #else do{ i64 iSeek = lseek(fd, iOff, SEEK_SET); SimulateIOError( iSeek = -1 ); if( iSeek<0 ){ rc = -1; break; } rc = osWrite(fd, pBuf, nBuf); }while( rc<0 && errno==EINTR ); #endif TIMER_END; OSTRACE(("WRITE %-3d %5d %7lld %llu\n", fd, rc, iOff, TIMER_ELAPSED)); if( rc<0 ) *piErrno = errno; return rc; } /* ** Seek to the offset in id->offset then read cnt bytes into pBuf. ** Return the number of bytes actually read. Update the offset. ** ** To avoid stomping the errno value on a failed write the lastErrno value ** is set before returning. */ static int seekAndWrite(unixFile *id, i64 offset, const void *pBuf, int cnt){ return seekAndWriteFd(id->h, offset, pBuf, cnt, &id->lastErrno); } /* ** Write data from a buffer into a file. Return SQLITE_OK on success ** or some other error code on failure. */ static int unixWrite( sqlite3_file *id, const void *pBuf, int amt, sqlite3_int64 offset ){ unixFile *pFile = (unixFile*)id; int wrote = 0; assert( id ); assert( amt>0 ); /* If this is a database file (not a journal, super-journal or temp ** file), the bytes in the locking range should never be read or written. */ #if 0 assert( pFile->pPreallocatedUnused==0 || offset>=PENDING_BYTE+512 || offset+amt<=PENDING_BYTE ); #endif #ifdef SQLITE_DEBUG /* If we are doing a normal write to a database file (as opposed to ** doing a hot-journal rollback or a write to some file other than a ** normal database file) then record the fact that the database ** has changed. If the transaction counter is modified, record that ** fact too. */ if( pFile->inNormalWrite ){ pFile->dbUpdate = 1; /* The database has been modified */ if( offset<=24 && offset+amt>=27 ){ int rc; char oldCntr[4]; SimulateIOErrorBenign(1); rc = seekAndRead(pFile, 24, oldCntr, 4); SimulateIOErrorBenign(0); if( rc!=4 || memcmp(oldCntr, &((char*)pBuf)[24-offset], 4)!=0 ){ pFile->transCntrChng = 1; /* The transaction counter has changed */ } } } #endif #if defined(SQLITE_MMAP_READWRITE) && SQLITE_MAX_MMAP_SIZE>0 /* Deal with as much of this write request as possible by transfering ** data from the memory mapping using memcpy(). */ if( offsetmmapSize ){ if( offset+amt <= pFile->mmapSize ){ memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, amt); return SQLITE_OK; }else{ int nCopy = pFile->mmapSize - offset; memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, nCopy); pBuf = &((u8 *)pBuf)[nCopy]; amt -= nCopy; offset += nCopy; } } #endif while( (wrote = seekAndWrite(pFile, offset, pBuf, amt))0 ){ amt -= wrote; offset += wrote; pBuf = &((char*)pBuf)[wrote]; } SimulateIOError(( wrote=(-1), amt=1 )); SimulateDiskfullError(( wrote=0, amt=1 )); if( amt>wrote ){ if( wrote<0 && pFile->lastErrno!=ENOSPC ){ /* lastErrno set by seekAndWrite */ return SQLITE_IOERR_WRITE; }else{ storeLastErrno(pFile, 0); /* not a system error */ return SQLITE_FULL; } } return SQLITE_OK; } #ifdef SQLITE_TEST /* ** Count the number of fullsyncs and normal syncs. This is used to test ** that syncs and fullsyncs are occurring at the right times. */ SQLITE_API int sqlite3_sync_count = 0; SQLITE_API int sqlite3_fullsync_count = 0; #endif /* ** We do not trust systems to provide a working fdatasync(). Some do. ** Others do no. To be safe, we will stick with the (slightly slower) ** fsync(). If you know that your system does support fdatasync() correctly, ** then simply compile with -Dfdatasync=fdatasync or -DHAVE_FDATASYNC */ #if !defined(fdatasync) && !HAVE_FDATASYNC # define fdatasync fsync #endif /* ** Define HAVE_FULLFSYNC to 0 or 1 depending on whether or not ** the F_FULLFSYNC macro is defined. F_FULLFSYNC is currently ** only available on Mac OS X. But that could change. */ #ifdef F_FULLFSYNC # define HAVE_FULLFSYNC 1 #else # define HAVE_FULLFSYNC 0 #endif /* ** The fsync() system call does not work as advertised on many ** unix systems. The following procedure is an attempt to make ** it work better. ** ** The SQLITE_NO_SYNC macro disables all fsync()s. This is useful ** for testing when we want to run through the test suite quickly. ** You are strongly advised *not* to deploy with SQLITE_NO_SYNC ** enabled, however, since with SQLITE_NO_SYNC enabled, an OS crash ** or power failure will likely corrupt the database file. ** ** SQLite sets the dataOnly flag if the size of the file is unchanged. ** The idea behind dataOnly is that it should only write the file content ** to disk, not the inode. We only set dataOnly if the file size is ** unchanged since the file size is part of the inode. However, ** Ted Ts'o tells us that fdatasync() will also write the inode if the ** file size has changed. The only real difference between fdatasync() ** and fsync(), Ted tells us, is that fdatasync() will not flush the ** inode if the mtime or owner or other inode attributes have changed. ** We only care about the file size, not the other file attributes, so ** as far as SQLite is concerned, an fdatasync() is always adequate. ** So, we always use fdatasync() if it is available, regardless of ** the value of the dataOnly flag. */ static int full_fsync(int fd, int fullSync, int dataOnly){ int rc; /* The following "ifdef/elif/else/" block has the same structure as ** the one below. It is replicated here solely to avoid cluttering ** up the real code with the UNUSED_PARAMETER() macros. */ #ifdef SQLITE_NO_SYNC UNUSED_PARAMETER(fd); UNUSED_PARAMETER(fullSync); UNUSED_PARAMETER(dataOnly); #elif HAVE_FULLFSYNC UNUSED_PARAMETER(dataOnly); #else UNUSED_PARAMETER(fullSync); UNUSED_PARAMETER(dataOnly); #endif /* Record the number of times that we do a normal fsync() and ** FULLSYNC. This is used during testing to verify that this procedure ** gets called with the correct arguments. */ #ifdef SQLITE_TEST if( fullSync ) sqlite3_fullsync_count++; sqlite3_sync_count++; #endif /* If we compiled with the SQLITE_NO_SYNC flag, then syncing is a ** no-op. But go ahead and call fstat() to validate the file ** descriptor as we need a method to provoke a failure during ** coverate testing. */ #ifdef SQLITE_NO_SYNC { struct stat buf; rc = osFstat(fd, &buf); } #elif HAVE_FULLFSYNC if( fullSync ){ rc = osFcntl(fd, F_FULLFSYNC, 0); }else{ rc = 1; } /* If the FULLFSYNC failed, fall back to attempting an fsync(). ** It shouldn't be possible for fullfsync to fail on the local ** file system (on OSX), so failure indicates that FULLFSYNC ** isn't supported for this file system. So, attempt an fsync ** and (for now) ignore the overhead of a superfluous fcntl call. ** It'd be better to detect fullfsync support once and avoid ** the fcntl call every time sync is called. */ if( rc ) rc = fsync(fd); #elif defined(__APPLE__) /* fdatasync() on HFS+ doesn't yet flush the file size if it changed correctly ** so currently we default to the macro that redefines fdatasync to fsync */ rc = fsync(fd); #else rc = fdatasync(fd); #if OS_VXWORKS if( rc==-1 && errno==ENOTSUP ){ rc = fsync(fd); } #endif /* OS_VXWORKS */ #endif /* ifdef SQLITE_NO_SYNC elif HAVE_FULLFSYNC */ if( OS_VXWORKS && rc!= -1 ){ rc = 0; } return rc; } /* ** Open a file descriptor to the directory containing file zFilename. ** If successful, *pFd is set to the opened file descriptor and ** SQLITE_OK is returned. If an error occurs, either SQLITE_NOMEM ** or SQLITE_CANTOPEN is returned and *pFd is set to an undefined ** value. ** ** The directory file descriptor is used for only one thing - to ** fsync() a directory to make sure file creation and deletion events ** are flushed to disk. Such fsyncs are not needed on newer ** journaling filesystems, but are required on older filesystems. ** ** This routine can be overridden using the xSetSysCall interface. ** The ability to override this routine was added in support of the ** chromium sandbox. Opening a directory is a security risk (we are ** told) so making it overrideable allows the chromium sandbox to ** replace this routine with a harmless no-op. To make this routine ** a no-op, replace it with a stub that returns SQLITE_OK but leaves ** *pFd set to a negative number. ** ** If SQLITE_OK is returned, the caller is responsible for closing ** the file descriptor *pFd using close(). */ static int openDirectory(const char *zFilename, int *pFd){ int ii; int fd = -1; char zDirname[MAX_PATHNAME+1]; sqlite3_snprintf(MAX_PATHNAME, zDirname, "%s", zFilename); for(ii=(int)strlen(zDirname); ii>0 && zDirname[ii]!='/'; ii--); if( ii>0 ){ zDirname[ii] = '\0'; }else{ if( zDirname[0]!='/' ) zDirname[0] = '.'; zDirname[1] = 0; } fd = robust_open(zDirname, O_RDONLY|O_BINARY, 0); if( fd>=0 ){ OSTRACE(("OPENDIR %-3d %s\n", fd, zDirname)); } *pFd = fd; if( fd>=0 ) return SQLITE_OK; return unixLogError(SQLITE_CANTOPEN_BKPT, "openDirectory", zDirname); } /* ** Make sure all writes to a particular file are committed to disk. ** ** If dataOnly==0 then both the file itself and its metadata (file ** size, access time, etc) are synced. If dataOnly!=0 then only the ** file data is synced. ** ** Under Unix, also make sure that the directory entry for the file ** has been created by fsync-ing the directory that contains the file. ** If we do not do this and we encounter a power failure, the directory ** entry for the journal might not exist after we reboot. The next ** SQLite to access the file will not know that the journal exists (because ** the directory entry for the journal was never created) and the transaction ** will not roll back - possibly leading to database corruption. */ static int unixSync(sqlite3_file *id, int flags){ int rc; unixFile *pFile = (unixFile*)id; int isDataOnly = (flags&SQLITE_SYNC_DATAONLY); int isFullsync = (flags&0x0F)==SQLITE_SYNC_FULL; /* Check that one of SQLITE_SYNC_NORMAL or FULL was passed */ assert((flags&0x0F)==SQLITE_SYNC_NORMAL || (flags&0x0F)==SQLITE_SYNC_FULL ); /* Unix cannot, but some systems may return SQLITE_FULL from here. This ** line is to test that doing so does not cause any problems. */ SimulateDiskfullError( return SQLITE_FULL ); assert( pFile ); OSTRACE(("SYNC %-3d\n", pFile->h)); rc = full_fsync(pFile->h, isFullsync, isDataOnly); SimulateIOError( rc=1 ); if( rc ){ storeLastErrno(pFile, errno); return unixLogError(SQLITE_IOERR_FSYNC, "full_fsync", pFile->zPath); } /* Also fsync the directory containing the file if the DIRSYNC flag ** is set. This is a one-time occurrence. Many systems (examples: AIX) ** are unable to fsync a directory, so ignore errors on the fsync. */ if( pFile->ctrlFlags & UNIXFILE_DIRSYNC ){ int dirfd; OSTRACE(("DIRSYNC %s (have_fullfsync=%d fullsync=%d)\n", pFile->zPath, HAVE_FULLFSYNC, isFullsync)); rc = osOpenDirectory(pFile->zPath, &dirfd); if( rc==SQLITE_OK ){ full_fsync(dirfd, 0, 0); robust_close(pFile, dirfd, __LINE__); }else{ assert( rc==SQLITE_CANTOPEN ); rc = SQLITE_OK; } pFile->ctrlFlags &= ~UNIXFILE_DIRSYNC; } return rc; } /* ** Truncate an open file to a specified size */ static int unixTruncate(sqlite3_file *id, i64 nByte){ unixFile *pFile = (unixFile *)id; int rc; assert( pFile ); SimulateIOError( return SQLITE_IOERR_TRUNCATE ); /* If the user has configured a chunk-size for this file, truncate the ** file so that it consists of an integer number of chunks (i.e. the ** actual file size after the operation may be larger than the requested ** size). */ if( pFile->szChunk>0 ){ nByte = ((nByte + pFile->szChunk - 1)/pFile->szChunk) * pFile->szChunk; } rc = robust_ftruncate(pFile->h, nByte); if( rc ){ storeLastErrno(pFile, errno); return unixLogError(SQLITE_IOERR_TRUNCATE, "ftruncate", pFile->zPath); }else{ #ifdef SQLITE_DEBUG /* If we are doing a normal write to a database file (as opposed to ** doing a hot-journal rollback or a write to some file other than a ** normal database file) and we truncate the file to zero length, ** that effectively updates the change counter. This might happen ** when restoring a database using the backup API from a zero-length ** source. */ if( pFile->inNormalWrite && nByte==0 ){ pFile->transCntrChng = 1; } #endif #if SQLITE_MAX_MMAP_SIZE>0 /* If the file was just truncated to a size smaller than the currently ** mapped region, reduce the effective mapping size as well. SQLite will ** use read() and write() to access data beyond this point from now on. */ if( nBytemmapSize ){ pFile->mmapSize = nByte; } #endif return SQLITE_OK; } } /* ** Determine the current size of a file in bytes */ static int unixFileSize(sqlite3_file *id, i64 *pSize){ int rc; struct stat buf; assert( id ); rc = osFstat(((unixFile*)id)->h, &buf); SimulateIOError( rc=1 ); if( rc!=0 ){ storeLastErrno((unixFile*)id, errno); return SQLITE_IOERR_FSTAT; } *pSize = buf.st_size; /* When opening a zero-size database, the findInodeInfo() procedure ** writes a single byte into that file in order to work around a bug ** in the OS-X msdos filesystem. In order to avoid problems with upper ** layers, we need to report this file size as zero even though it is ** really 1. Ticket #3260. */ if( *pSize==1 ) *pSize = 0; return SQLITE_OK; } #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) /* ** Handler for proxy-locking file-control verbs. Defined below in the ** proxying locking division. */ static int proxyFileControl(sqlite3_file*,int,void*); #endif /* ** This function is called to handle the SQLITE_FCNTL_SIZE_HINT ** file-control operation. Enlarge the database to nBytes in size ** (rounded up to the next chunk-size). If the database is already ** nBytes or larger, this routine is a no-op. */ static int fcntlSizeHint(unixFile *pFile, i64 nByte){ if( pFile->szChunk>0 ){ i64 nSize; /* Required file size */ struct stat buf; /* Used to hold return values of fstat() */ if( osFstat(pFile->h, &buf) ){ return SQLITE_IOERR_FSTAT; } nSize = ((nByte+pFile->szChunk-1) / pFile->szChunk) * pFile->szChunk; if( nSize>(i64)buf.st_size ){ #if defined(HAVE_POSIX_FALLOCATE) && HAVE_POSIX_FALLOCATE /* The code below is handling the return value of osFallocate() ** correctly. posix_fallocate() is defined to "returns zero on success, ** or an error number on failure". See the manpage for details. */ int err; do{ err = osFallocate(pFile->h, buf.st_size, nSize-buf.st_size); }while( err==EINTR ); if( err && err!=EINVAL ) return SQLITE_IOERR_WRITE; #else /* If the OS does not have posix_fallocate(), fake it. Write a ** single byte to the last byte in each block that falls entirely ** within the extended region. Then, if required, a single byte ** at offset (nSize-1), to set the size of the file correctly. ** This is a similar technique to that used by glibc on systems ** that do not have a real fallocate() call. */ int nBlk = buf.st_blksize; /* File-system block size */ int nWrite = 0; /* Number of bytes written by seekAndWrite */ i64 iWrite; /* Next offset to write to */ iWrite = (buf.st_size/nBlk)*nBlk + nBlk - 1; assert( iWrite>=buf.st_size ); assert( ((iWrite+1)%nBlk)==0 ); for(/*no-op*/; iWrite=nSize ) iWrite = nSize - 1; nWrite = seekAndWrite(pFile, iWrite, "", 1); if( nWrite!=1 ) return SQLITE_IOERR_WRITE; } #endif } } #if SQLITE_MAX_MMAP_SIZE>0 if( pFile->mmapSizeMax>0 && nByte>pFile->mmapSize ){ int rc; if( pFile->szChunk<=0 ){ if( robust_ftruncate(pFile->h, nByte) ){ storeLastErrno(pFile, errno); return unixLogError(SQLITE_IOERR_TRUNCATE, "ftruncate", pFile->zPath); } } rc = unixMapfile(pFile, nByte); return rc; } #endif return SQLITE_OK; } /* ** If *pArg is initially negative then this is a query. Set *pArg to ** 1 or 0 depending on whether or not bit mask of pFile->ctrlFlags is set. ** ** If *pArg is 0 or 1, then clear or set the mask bit of pFile->ctrlFlags. */ static void unixModeBit(unixFile *pFile, unsigned char mask, int *pArg){ if( *pArg<0 ){ *pArg = (pFile->ctrlFlags & mask)!=0; }else if( (*pArg)==0 ){ pFile->ctrlFlags &= ~mask; }else{ pFile->ctrlFlags |= mask; } } /* Forward declaration */ static int unixGetTempname(int nBuf, char *zBuf); /* ** Information and control of an open file handle. */ static int unixFileControl(sqlite3_file *id, int op, void *pArg){ unixFile *pFile = (unixFile*)id; switch( op ){ #if defined(__linux__) && defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) case SQLITE_FCNTL_BEGIN_ATOMIC_WRITE: { int rc = osIoctl(pFile->h, F2FS_IOC_START_ATOMIC_WRITE); return rc ? SQLITE_IOERR_BEGIN_ATOMIC : SQLITE_OK; } case SQLITE_FCNTL_COMMIT_ATOMIC_WRITE: { int rc = osIoctl(pFile->h, F2FS_IOC_COMMIT_ATOMIC_WRITE); return rc ? SQLITE_IOERR_COMMIT_ATOMIC : SQLITE_OK; } case SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE: { int rc = osIoctl(pFile->h, F2FS_IOC_ABORT_VOLATILE_WRITE); return rc ? SQLITE_IOERR_ROLLBACK_ATOMIC : SQLITE_OK; } #endif /* __linux__ && SQLITE_ENABLE_BATCH_ATOMIC_WRITE */ case SQLITE_FCNTL_LOCKSTATE: { *(int*)pArg = pFile->eFileLock; return SQLITE_OK; } case SQLITE_FCNTL_LAST_ERRNO: { *(int*)pArg = pFile->lastErrno; return SQLITE_OK; } case SQLITE_FCNTL_CHUNK_SIZE: { pFile->szChunk = *(int *)pArg; return SQLITE_OK; } case SQLITE_FCNTL_SIZE_HINT: { int rc; SimulateIOErrorBenign(1); rc = fcntlSizeHint(pFile, *(i64 *)pArg); SimulateIOErrorBenign(0); return rc; } case SQLITE_FCNTL_PERSIST_WAL: { unixModeBit(pFile, UNIXFILE_PERSIST_WAL, (int*)pArg); return SQLITE_OK; } case SQLITE_FCNTL_POWERSAFE_OVERWRITE: { unixModeBit(pFile, UNIXFILE_PSOW, (int*)pArg); return SQLITE_OK; } case SQLITE_FCNTL_VFSNAME: { *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName); return SQLITE_OK; } case SQLITE_FCNTL_TEMPFILENAME: { char *zTFile = sqlite3_malloc64( pFile->pVfs->mxPathname ); if( zTFile ){ unixGetTempname(pFile->pVfs->mxPathname, zTFile); *(char**)pArg = zTFile; } return SQLITE_OK; } case SQLITE_FCNTL_HAS_MOVED: { *(int*)pArg = fileHasMoved(pFile); return SQLITE_OK; } #ifdef SQLITE_ENABLE_SETLK_TIMEOUT case SQLITE_FCNTL_LOCK_TIMEOUT: { int iOld = pFile->iBusyTimeout; pFile->iBusyTimeout = *(int*)pArg; *(int*)pArg = iOld; return SQLITE_OK; } #endif #if SQLITE_MAX_MMAP_SIZE>0 case SQLITE_FCNTL_MMAP_SIZE: { i64 newLimit = *(i64*)pArg; int rc = SQLITE_OK; if( newLimit>sqlite3GlobalConfig.mxMmap ){ newLimit = sqlite3GlobalConfig.mxMmap; } /* The value of newLimit may be eventually cast to (size_t) and passed ** to mmap(). Restrict its value to 2GB if (size_t) is not at least a ** 64-bit type. */ if( newLimit>0 && sizeof(size_t)<8 ){ newLimit = (newLimit & 0x7FFFFFFF); } *(i64*)pArg = pFile->mmapSizeMax; if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){ pFile->mmapSizeMax = newLimit; if( pFile->mmapSize>0 ){ unixUnmapfile(pFile); rc = unixMapfile(pFile, -1); } } return rc; } #endif #ifdef SQLITE_DEBUG /* The pager calls this method to signal that it has done ** a rollback and that the database is therefore unchanged and ** it hence it is OK for the transaction change counter to be ** unchanged. */ case SQLITE_FCNTL_DB_UNCHANGED: { ((unixFile*)id)->dbUpdate = 0; return SQLITE_OK; } #endif #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) case SQLITE_FCNTL_SET_LOCKPROXYFILE: case SQLITE_FCNTL_GET_LOCKPROXYFILE: { return proxyFileControl(id,op,pArg); } #endif /* SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) */ } return SQLITE_NOTFOUND; } /* ** If pFd->sectorSize is non-zero when this function is called, it is a ** no-op. Otherwise, the values of pFd->sectorSize and ** pFd->deviceCharacteristics are set according to the file-system ** characteristics. ** ** There are two versions of this function. One for QNX and one for all ** other systems. */ #ifndef __QNXNTO__ static void setDeviceCharacteristics(unixFile *pFd){ assert( pFd->deviceCharacteristics==0 || pFd->sectorSize!=0 ); if( pFd->sectorSize==0 ){ #if defined(__linux__) && defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) int res; u32 f = 0; /* Check for support for F2FS atomic batch writes. */ res = osIoctl(pFd->h, F2FS_IOC_GET_FEATURES, &f); if( res==0 && (f & F2FS_FEATURE_ATOMIC_WRITE) ){ pFd->deviceCharacteristics = SQLITE_IOCAP_BATCH_ATOMIC; } #endif /* __linux__ && SQLITE_ENABLE_BATCH_ATOMIC_WRITE */ /* Set the POWERSAFE_OVERWRITE flag if requested. */ if( pFd->ctrlFlags & UNIXFILE_PSOW ){ pFd->deviceCharacteristics |= SQLITE_IOCAP_POWERSAFE_OVERWRITE; } pFd->sectorSize = SQLITE_DEFAULT_SECTOR_SIZE; } } #else #include #include static void setDeviceCharacteristics(unixFile *pFile){ if( pFile->sectorSize == 0 ){ struct statvfs fsInfo; /* Set defaults for non-supported filesystems */ pFile->sectorSize = SQLITE_DEFAULT_SECTOR_SIZE; pFile->deviceCharacteristics = 0; if( fstatvfs(pFile->h, &fsInfo) == -1 ) { return; } if( !strcmp(fsInfo.f_basetype, "tmp") ) { pFile->sectorSize = fsInfo.f_bsize; pFile->deviceCharacteristics = SQLITE_IOCAP_ATOMIC4K | /* All ram filesystem writes are atomic */ SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until ** the write succeeds */ SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind ** so it is ordered */ 0; }else if( strstr(fsInfo.f_basetype, "etfs") ){ pFile->sectorSize = fsInfo.f_bsize; pFile->deviceCharacteristics = /* etfs cluster size writes are atomic */ (pFile->sectorSize / 512 * SQLITE_IOCAP_ATOMIC512) | SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until ** the write succeeds */ SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind ** so it is ordered */ 0; }else if( !strcmp(fsInfo.f_basetype, "qnx6") ){ pFile->sectorSize = fsInfo.f_bsize; pFile->deviceCharacteristics = SQLITE_IOCAP_ATOMIC | /* All filesystem writes are atomic */ SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until ** the write succeeds */ SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind ** so it is ordered */ 0; }else if( !strcmp(fsInfo.f_basetype, "qnx4") ){ pFile->sectorSize = fsInfo.f_bsize; pFile->deviceCharacteristics = /* full bitset of atomics from max sector size and smaller */ ((pFile->sectorSize / 512 * SQLITE_IOCAP_ATOMIC512) << 1) - 2 | SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind ** so it is ordered */ 0; }else if( strstr(fsInfo.f_basetype, "dos") ){ pFile->sectorSize = fsInfo.f_bsize; pFile->deviceCharacteristics = /* full bitset of atomics from max sector size and smaller */ ((pFile->sectorSize / 512 * SQLITE_IOCAP_ATOMIC512) << 1) - 2 | SQLITE_IOCAP_SEQUENTIAL | /* The ram filesystem has no write behind ** so it is ordered */ 0; }else{ pFile->deviceCharacteristics = SQLITE_IOCAP_ATOMIC512 | /* blocks are atomic */ SQLITE_IOCAP_SAFE_APPEND | /* growing the file does not occur until ** the write succeeds */ 0; } } /* Last chance verification. If the sector size isn't a multiple of 512 ** then it isn't valid.*/ if( pFile->sectorSize % 512 != 0 ){ pFile->deviceCharacteristics = 0; pFile->sectorSize = SQLITE_DEFAULT_SECTOR_SIZE; } } #endif /* ** Return the sector size in bytes of the underlying block device for ** the specified file. This is almost always 512 bytes, but may be ** larger for some devices. ** ** SQLite code assumes this function cannot fail. It also assumes that ** if two files are created in the same file-system directory (i.e. ** a database and its journal file) that the sector size will be the ** same for both. */ static int unixSectorSize(sqlite3_file *id){ unixFile *pFd = (unixFile*)id; setDeviceCharacteristics(pFd); return pFd->sectorSize; } /* ** Return the device characteristics for the file. ** ** This VFS is set up to return SQLITE_IOCAP_POWERSAFE_OVERWRITE by default. ** However, that choice is controversial since technically the underlying ** file system does not always provide powersafe overwrites. (In other ** words, after a power-loss event, parts of the file that were never ** written might end up being altered.) However, non-PSOW behavior is very, ** very rare. And asserting PSOW makes a large reduction in the amount ** of required I/O for journaling, since a lot of padding is eliminated. ** Hence, while POWERSAFE_OVERWRITE is on by default, there is a file-control ** available to turn it off and URI query parameter available to turn it off. */ static int unixDeviceCharacteristics(sqlite3_file *id){ unixFile *pFd = (unixFile*)id; setDeviceCharacteristics(pFd); return pFd->deviceCharacteristics; } #if !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 /* ** Return the system page size. ** ** This function should not be called directly by other code in this file. ** Instead, it should be called via macro osGetpagesize(). */ static int unixGetpagesize(void){ #if OS_VXWORKS return 1024; #elif defined(_BSD_SOURCE) return getpagesize(); #else return (int)sysconf(_SC_PAGESIZE); #endif } #endif /* !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 */ #ifndef SQLITE_OMIT_WAL /* ** Object used to represent an shared memory buffer. ** ** When multiple threads all reference the same wal-index, each thread ** has its own unixShm object, but they all point to a single instance ** of this unixShmNode object. In other words, each wal-index is opened ** only once per process. ** ** Each unixShmNode object is connected to a single unixInodeInfo object. ** We could coalesce this object into unixInodeInfo, but that would mean ** every open file that does not use shared memory (in other words, most ** open files) would have to carry around this extra information. So ** the unixInodeInfo object contains a pointer to this unixShmNode object ** and the unixShmNode object is created only when needed. ** ** unixMutexHeld() must be true when creating or destroying ** this object or while reading or writing the following fields: ** ** nRef ** ** The following fields are read-only after the object is created: ** ** hShm ** zFilename ** ** Either unixShmNode.pShmMutex must be held or unixShmNode.nRef==0 and ** unixMutexHeld() is true when reading or writing any other field ** in this structure. */ struct unixShmNode { unixInodeInfo *pInode; /* unixInodeInfo that owns this SHM node */ sqlite3_mutex *pShmMutex; /* Mutex to access this object */ char *zFilename; /* Name of the mmapped file */ int hShm; /* Open file descriptor */ int szRegion; /* Size of shared-memory regions */ u16 nRegion; /* Size of array apRegion */ u8 isReadonly; /* True if read-only */ u8 isUnlocked; /* True if no DMS lock held */ char **apRegion; /* Array of mapped shared-memory regions */ int nRef; /* Number of unixShm objects pointing to this */ unixShm *pFirst; /* All unixShm objects pointing to this */ #ifdef SQLITE_DEBUG u8 exclMask; /* Mask of exclusive locks held */ u8 sharedMask; /* Mask of shared locks held */ u8 nextShmId; /* Next available unixShm.id value */ #endif }; /* ** Structure used internally by this VFS to record the state of an ** open shared memory connection. ** ** The following fields are initialized when this object is created and ** are read-only thereafter: ** ** unixShm.pShmNode ** unixShm.id ** ** All other fields are read/write. The unixShm.pShmNode->pShmMutex must ** be held while accessing any read/write fields. */ struct unixShm { unixShmNode *pShmNode; /* The underlying unixShmNode object */ unixShm *pNext; /* Next unixShm with the same unixShmNode */ u8 hasMutex; /* True if holding the unixShmNode->pShmMutex */ u8 id; /* Id of this connection within its unixShmNode */ u16 sharedMask; /* Mask of shared locks held */ u16 exclMask; /* Mask of exclusive locks held */ }; /* ** Constants used for locking */ #define UNIX_SHM_BASE ((22+SQLITE_SHM_NLOCK)*4) /* first lock byte */ #define UNIX_SHM_DMS (UNIX_SHM_BASE+SQLITE_SHM_NLOCK) /* deadman switch */ /* ** Apply posix advisory locks for all bytes from ofst through ofst+n-1. ** ** Locks block if the mask is exactly UNIX_SHM_C and are non-blocking ** otherwise. */ static int unixShmSystemLock( unixFile *pFile, /* Open connection to the WAL file */ int lockType, /* F_UNLCK, F_RDLCK, or F_WRLCK */ int ofst, /* First byte of the locking range */ int n /* Number of bytes to lock */ ){ unixShmNode *pShmNode; /* Apply locks to this open shared-memory segment */ struct flock f; /* The posix advisory locking structure */ int rc = SQLITE_OK; /* Result code form fcntl() */ /* Access to the unixShmNode object is serialized by the caller */ pShmNode = pFile->pInode->pShmNode; assert( pShmNode->nRef==0 || sqlite3_mutex_held(pShmNode->pShmMutex) ); assert( pShmNode->nRef>0 || unixMutexHeld() ); /* Shared locks never span more than one byte */ assert( n==1 || lockType!=F_RDLCK ); /* Locks are within range */ assert( n>=1 && n<=SQLITE_SHM_NLOCK ); if( pShmNode->hShm>=0 ){ int res; /* Initialize the locking parameters */ f.l_type = lockType; f.l_whence = SEEK_SET; f.l_start = ofst; f.l_len = n; res = osSetPosixAdvisoryLock(pShmNode->hShm, &f, pFile); if( res==-1 ){ #ifdef SQLITE_ENABLE_SETLK_TIMEOUT rc = (pFile->iBusyTimeout ? SQLITE_BUSY_TIMEOUT : SQLITE_BUSY); #else rc = SQLITE_BUSY; #endif } } /* Update the global lock state and do debug tracing */ #ifdef SQLITE_DEBUG { u16 mask; OSTRACE(("SHM-LOCK ")); mask = ofst>31 ? 0xffff : (1<<(ofst+n)) - (1<exclMask &= ~mask; pShmNode->sharedMask &= ~mask; }else if( lockType==F_RDLCK ){ OSTRACE(("read-lock %d ok", ofst)); pShmNode->exclMask &= ~mask; pShmNode->sharedMask |= mask; }else{ assert( lockType==F_WRLCK ); OSTRACE(("write-lock %d ok", ofst)); pShmNode->exclMask |= mask; pShmNode->sharedMask &= ~mask; } }else{ if( lockType==F_UNLCK ){ OSTRACE(("unlock %d failed", ofst)); }else if( lockType==F_RDLCK ){ OSTRACE(("read-lock failed")); }else{ assert( lockType==F_WRLCK ); OSTRACE(("write-lock %d failed", ofst)); } } OSTRACE((" - afterwards %03x,%03x\n", pShmNode->sharedMask, pShmNode->exclMask)); } #endif return rc; } /* ** Return the minimum number of 32KB shm regions that should be mapped at ** a time, assuming that each mapping must be an integer multiple of the ** current system page-size. ** ** Usually, this is 1. The exception seems to be systems that are configured ** to use 64KB pages - in this case each mapping must cover at least two ** shm regions. */ static int unixShmRegionPerMap(void){ int shmsz = 32*1024; /* SHM region size */ int pgsz = osGetpagesize(); /* System page size */ assert( ((pgsz-1)&pgsz)==0 ); /* Page size must be a power of 2 */ if( pgszpInode->pShmNode; assert( unixMutexHeld() ); if( p && ALWAYS(p->nRef==0) ){ int nShmPerMap = unixShmRegionPerMap(); int i; assert( p->pInode==pFd->pInode ); sqlite3_mutex_free(p->pShmMutex); for(i=0; inRegion; i+=nShmPerMap){ if( p->hShm>=0 ){ osMunmap(p->apRegion[i], p->szRegion); }else{ sqlite3_free(p->apRegion[i]); } } sqlite3_free(p->apRegion); if( p->hShm>=0 ){ robust_close(pFd, p->hShm, __LINE__); p->hShm = -1; } p->pInode->pShmNode = 0; sqlite3_free(p); } } /* ** The DMS lock has not yet been taken on shm file pShmNode. Attempt to ** take it now. Return SQLITE_OK if successful, or an SQLite error ** code otherwise. ** ** If the DMS cannot be locked because this is a readonly_shm=1 ** connection and no other process already holds a lock, return ** SQLITE_READONLY_CANTINIT and set pShmNode->isUnlocked=1. */ static int unixLockSharedMemory(unixFile *pDbFd, unixShmNode *pShmNode){ struct flock lock; int rc = SQLITE_OK; /* Use F_GETLK to determine the locks other processes are holding ** on the DMS byte. If it indicates that another process is holding ** a SHARED lock, then this process may also take a SHARED lock ** and proceed with opening the *-shm file. ** ** Or, if no other process is holding any lock, then this process ** is the first to open it. In this case take an EXCLUSIVE lock on the ** DMS byte and truncate the *-shm file to zero bytes in size. Then ** downgrade to a SHARED lock on the DMS byte. ** ** If another process is holding an EXCLUSIVE lock on the DMS byte, ** return SQLITE_BUSY to the caller (it will try again). An earlier ** version of this code attempted the SHARED lock at this point. But ** this introduced a subtle race condition: if the process holding ** EXCLUSIVE failed just before truncating the *-shm file, then this ** process might open and use the *-shm file without truncating it. ** And if the *-shm file has been corrupted by a power failure or ** system crash, the database itself may also become corrupt. */ lock.l_whence = SEEK_SET; lock.l_start = UNIX_SHM_DMS; lock.l_len = 1; lock.l_type = F_WRLCK; if( osFcntl(pShmNode->hShm, F_GETLK, &lock)!=0 ) { rc = SQLITE_IOERR_LOCK; }else if( lock.l_type==F_UNLCK ){ if( pShmNode->isReadonly ){ pShmNode->isUnlocked = 1; rc = SQLITE_READONLY_CANTINIT; }else{ rc = unixShmSystemLock(pDbFd, F_WRLCK, UNIX_SHM_DMS, 1); /* The first connection to attach must truncate the -shm file. We ** truncate to 3 bytes (an arbitrary small number, less than the ** -shm header size) rather than 0 as a system debugging aid, to ** help detect if a -shm file truncation is legitimate or is the work ** or a rogue process. */ if( rc==SQLITE_OK && robust_ftruncate(pShmNode->hShm, 3) ){ rc = unixLogError(SQLITE_IOERR_SHMOPEN,"ftruncate",pShmNode->zFilename); } } }else if( lock.l_type==F_WRLCK ){ rc = SQLITE_BUSY; } if( rc==SQLITE_OK ){ assert( lock.l_type==F_UNLCK || lock.l_type==F_RDLCK ); rc = unixShmSystemLock(pDbFd, F_RDLCK, UNIX_SHM_DMS, 1); } return rc; } /* ** Open a shared-memory area associated with open database file pDbFd. ** This particular implementation uses mmapped files. ** ** The file used to implement shared-memory is in the same directory ** as the open database file and has the same name as the open database ** file with the "-shm" suffix added. For example, if the database file ** is "/home/user1/config.db" then the file that is created and mmapped ** for shared memory will be called "/home/user1/config.db-shm". ** ** Another approach to is to use files in /dev/shm or /dev/tmp or an ** some other tmpfs mount. But if a file in a different directory ** from the database file is used, then differing access permissions ** or a chroot() might cause two different processes on the same ** database to end up using different files for shared memory - ** meaning that their memory would not really be shared - resulting ** in database corruption. Nevertheless, this tmpfs file usage ** can be enabled at compile-time using -DSQLITE_SHM_DIRECTORY="/dev/shm" ** or the equivalent. The use of the SQLITE_SHM_DIRECTORY compile-time ** option results in an incompatible build of SQLite; builds of SQLite ** that with differing SQLITE_SHM_DIRECTORY settings attempt to use the ** same database file at the same time, database corruption will likely ** result. The SQLITE_SHM_DIRECTORY compile-time option is considered ** "unsupported" and may go away in a future SQLite release. ** ** When opening a new shared-memory file, if no other instances of that ** file are currently open, in this process or in other processes, then ** the file must be truncated to zero length or have its header cleared. ** ** If the original database file (pDbFd) is using the "unix-excl" VFS ** that means that an exclusive lock is held on the database file and ** that no other processes are able to read or write the database. In ** that case, we do not really need shared memory. No shared memory ** file is created. The shared memory will be simulated with heap memory. */ static int unixOpenSharedMemory(unixFile *pDbFd){ struct unixShm *p = 0; /* The connection to be opened */ struct unixShmNode *pShmNode; /* The underlying mmapped file */ int rc = SQLITE_OK; /* Result code */ unixInodeInfo *pInode; /* The inode of fd */ char *zShm; /* Name of the file used for SHM */ int nShmFilename; /* Size of the SHM filename in bytes */ /* Allocate space for the new unixShm object. */ p = sqlite3_malloc64( sizeof(*p) ); if( p==0 ) return SQLITE_NOMEM_BKPT; memset(p, 0, sizeof(*p)); assert( pDbFd->pShm==0 ); /* Check to see if a unixShmNode object already exists. Reuse an existing ** one if present. Create a new one if necessary. */ assert( unixFileMutexNotheld(pDbFd) ); unixEnterMutex(); pInode = pDbFd->pInode; pShmNode = pInode->pShmNode; if( pShmNode==0 ){ struct stat sStat; /* fstat() info for database file */ #ifndef SQLITE_SHM_DIRECTORY const char *zBasePath = pDbFd->zPath; #endif /* Call fstat() to figure out the permissions on the database file. If ** a new *-shm file is created, an attempt will be made to create it ** with the same permissions. */ if( osFstat(pDbFd->h, &sStat) ){ rc = SQLITE_IOERR_FSTAT; goto shm_open_err; } #ifdef SQLITE_SHM_DIRECTORY nShmFilename = sizeof(SQLITE_SHM_DIRECTORY) + 31; #else nShmFilename = 6 + (int)strlen(zBasePath); #endif pShmNode = sqlite3_malloc64( sizeof(*pShmNode) + nShmFilename ); if( pShmNode==0 ){ rc = SQLITE_NOMEM_BKPT; goto shm_open_err; } memset(pShmNode, 0, sizeof(*pShmNode)+nShmFilename); zShm = pShmNode->zFilename = (char*)&pShmNode[1]; #ifdef SQLITE_SHM_DIRECTORY sqlite3_snprintf(nShmFilename, zShm, SQLITE_SHM_DIRECTORY "/sqlite-shm-%x-%x", (u32)sStat.st_ino, (u32)sStat.st_dev); #else sqlite3_snprintf(nShmFilename, zShm, "%s-shm", zBasePath); sqlite3FileSuffix3(pDbFd->zPath, zShm); #endif pShmNode->hShm = -1; pDbFd->pInode->pShmNode = pShmNode; pShmNode->pInode = pDbFd->pInode; if( sqlite3GlobalConfig.bCoreMutex ){ pShmNode->pShmMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); if( pShmNode->pShmMutex==0 ){ rc = SQLITE_NOMEM_BKPT; goto shm_open_err; } } if( pInode->bProcessLock==0 ){ if( 0==sqlite3_uri_boolean(pDbFd->zPath, "readonly_shm", 0) ){ pShmNode->hShm = robust_open(zShm, O_RDWR|O_CREAT|O_NOFOLLOW, (sStat.st_mode&0777)); } if( pShmNode->hShm<0 ){ pShmNode->hShm = robust_open(zShm, O_RDONLY|O_NOFOLLOW, (sStat.st_mode&0777)); if( pShmNode->hShm<0 ){ rc = unixLogError(SQLITE_CANTOPEN_BKPT, "open", zShm); goto shm_open_err; } pShmNode->isReadonly = 1; } /* If this process is running as root, make sure that the SHM file ** is owned by the same user that owns the original database. Otherwise, ** the original owner will not be able to connect. */ robustFchown(pShmNode->hShm, sStat.st_uid, sStat.st_gid); rc = unixLockSharedMemory(pDbFd, pShmNode); if( rc!=SQLITE_OK && rc!=SQLITE_READONLY_CANTINIT ) goto shm_open_err; } } /* Make the new connection a child of the unixShmNode */ p->pShmNode = pShmNode; #ifdef SQLITE_DEBUG p->id = pShmNode->nextShmId++; #endif pShmNode->nRef++; pDbFd->pShm = p; unixLeaveMutex(); /* The reference count on pShmNode has already been incremented under ** the cover of the unixEnterMutex() mutex and the pointer from the ** new (struct unixShm) object to the pShmNode has been set. All that is ** left to do is to link the new object into the linked list starting ** at pShmNode->pFirst. This must be done while holding the ** pShmNode->pShmMutex. */ sqlite3_mutex_enter(pShmNode->pShmMutex); p->pNext = pShmNode->pFirst; pShmNode->pFirst = p; sqlite3_mutex_leave(pShmNode->pShmMutex); return rc; /* Jump here on any error */ shm_open_err: unixShmPurge(pDbFd); /* This call frees pShmNode if required */ sqlite3_free(p); unixLeaveMutex(); return rc; } /* ** This function is called to obtain a pointer to region iRegion of the ** shared-memory associated with the database file fd. Shared-memory regions ** are numbered starting from zero. Each shared-memory region is szRegion ** bytes in size. ** ** If an error occurs, an error code is returned and *pp is set to NULL. ** ** Otherwise, if the bExtend parameter is 0 and the requested shared-memory ** region has not been allocated (by any client, including one running in a ** separate process), then *pp is set to NULL and SQLITE_OK returned. If ** bExtend is non-zero and the requested shared-memory region has not yet ** been allocated, it is allocated by this function. ** ** If the shared-memory region has already been allocated or is allocated by ** this call as described above, then it is mapped into this processes ** address space (if it is not already), *pp is set to point to the mapped ** memory and SQLITE_OK returned. */ static int unixShmMap( sqlite3_file *fd, /* Handle open on database file */ int iRegion, /* Region to retrieve */ int szRegion, /* Size of regions */ int bExtend, /* True to extend file if necessary */ void volatile **pp /* OUT: Mapped memory */ ){ unixFile *pDbFd = (unixFile*)fd; unixShm *p; unixShmNode *pShmNode; int rc = SQLITE_OK; int nShmPerMap = unixShmRegionPerMap(); int nReqRegion; /* If the shared-memory file has not yet been opened, open it now. */ if( pDbFd->pShm==0 ){ rc = unixOpenSharedMemory(pDbFd); if( rc!=SQLITE_OK ) return rc; } p = pDbFd->pShm; pShmNode = p->pShmNode; sqlite3_mutex_enter(pShmNode->pShmMutex); if( pShmNode->isUnlocked ){ rc = unixLockSharedMemory(pDbFd, pShmNode); if( rc!=SQLITE_OK ) goto shmpage_out; pShmNode->isUnlocked = 0; } assert( szRegion==pShmNode->szRegion || pShmNode->nRegion==0 ); assert( pShmNode->pInode==pDbFd->pInode ); assert( pShmNode->hShm>=0 || pDbFd->pInode->bProcessLock==1 ); assert( pShmNode->hShm<0 || pDbFd->pInode->bProcessLock==0 ); /* Minimum number of regions required to be mapped. */ nReqRegion = ((iRegion+nShmPerMap) / nShmPerMap) * nShmPerMap; if( pShmNode->nRegionszRegion = szRegion; if( pShmNode->hShm>=0 ){ /* The requested region is not mapped into this processes address space. ** Check to see if it has been allocated (i.e. if the wal-index file is ** large enough to contain the requested region). */ if( osFstat(pShmNode->hShm, &sStat) ){ rc = SQLITE_IOERR_SHMSIZE; goto shmpage_out; } if( sStat.st_sizehShm, iPg*pgsz + pgsz-1,"",1,&x)!=1 ){ const char *zFile = pShmNode->zFilename; rc = unixLogError(SQLITE_IOERR_SHMSIZE, "write", zFile); goto shmpage_out; } } } } } /* Map the requested memory region into this processes address space. */ apNew = (char **)sqlite3_realloc( pShmNode->apRegion, nReqRegion*sizeof(char *) ); if( !apNew ){ rc = SQLITE_IOERR_NOMEM_BKPT; goto shmpage_out; } pShmNode->apRegion = apNew; while( pShmNode->nRegionhShm>=0 ){ pMem = osMmap(0, nMap, pShmNode->isReadonly ? PROT_READ : PROT_READ|PROT_WRITE, MAP_SHARED, pShmNode->hShm, szRegion*(i64)pShmNode->nRegion ); if( pMem==MAP_FAILED ){ rc = unixLogError(SQLITE_IOERR_SHMMAP, "mmap", pShmNode->zFilename); goto shmpage_out; } }else{ pMem = sqlite3_malloc64(nMap); if( pMem==0 ){ rc = SQLITE_NOMEM_BKPT; goto shmpage_out; } memset(pMem, 0, nMap); } for(i=0; iapRegion[pShmNode->nRegion+i] = &((char*)pMem)[szRegion*i]; } pShmNode->nRegion += nShmPerMap; } } shmpage_out: if( pShmNode->nRegion>iRegion ){ *pp = pShmNode->apRegion[iRegion]; }else{ *pp = 0; } if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY; sqlite3_mutex_leave(pShmNode->pShmMutex); return rc; } /* ** Change the lock state for a shared-memory segment. ** ** Note that the relationship between SHAREd and EXCLUSIVE locks is a little ** different here than in posix. In xShmLock(), one can go from unlocked ** to shared and back or from unlocked to exclusive and back. But one may ** not go from shared to exclusive or from exclusive to shared. */ static int unixShmLock( sqlite3_file *fd, /* Database file holding the shared memory */ int ofst, /* First lock to acquire or release */ int n, /* Number of locks to acquire or release */ int flags /* What to do with the lock */ ){ unixFile *pDbFd = (unixFile*)fd; /* Connection holding shared memory */ unixShm *p = pDbFd->pShm; /* The shared memory being locked */ unixShm *pX; /* For looping over all siblings */ unixShmNode *pShmNode = p->pShmNode; /* The underlying file iNode */ int rc = SQLITE_OK; /* Result code */ u16 mask; /* Mask of locks to take or release */ assert( pShmNode==pDbFd->pInode->pShmNode ); assert( pShmNode->pInode==pDbFd->pInode ); assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK ); assert( n>=1 ); assert( flags==(SQLITE_SHM_LOCK | SQLITE_SHM_SHARED) || flags==(SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE) || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED) || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE) ); assert( n==1 || (flags & SQLITE_SHM_EXCLUSIVE)!=0 ); assert( pShmNode->hShm>=0 || pDbFd->pInode->bProcessLock==1 ); assert( pShmNode->hShm<0 || pDbFd->pInode->bProcessLock==0 ); /* Check that, if this to be a blocking lock, no locks that occur later ** in the following list than the lock being obtained are already held: ** ** 1. Checkpointer lock (ofst==1). ** 2. Write lock (ofst==0). ** 3. Read locks (ofst>=3 && ofstiBusyTimeout==0 || ( (ofst!=2) /* not RECOVER */ && (ofst!=1 || (p->exclMask|p->sharedMask)==0) && (ofst!=0 || (p->exclMask|p->sharedMask)<3) && (ofst<3 || (p->exclMask|p->sharedMask)<(1<1 || mask==(1<pShmMutex); if( flags & SQLITE_SHM_UNLOCK ){ u16 allMask = 0; /* Mask of locks held by siblings */ /* See if any siblings hold this same lock */ for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ if( pX==p ) continue; assert( (pX->exclMask & (p->exclMask|p->sharedMask))==0 ); allMask |= pX->sharedMask; } /* Unlock the system-level locks */ if( (mask & allMask)==0 ){ rc = unixShmSystemLock(pDbFd, F_UNLCK, ofst+UNIX_SHM_BASE, n); }else{ rc = SQLITE_OK; } /* Undo the local locks */ if( rc==SQLITE_OK ){ p->exclMask &= ~mask; p->sharedMask &= ~mask; } }else if( flags & SQLITE_SHM_SHARED ){ u16 allShared = 0; /* Union of locks held by connections other than "p" */ /* Find out which shared locks are already held by sibling connections. ** If any sibling already holds an exclusive lock, go ahead and return ** SQLITE_BUSY. */ for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ if( (pX->exclMask & mask)!=0 ){ rc = SQLITE_BUSY; break; } allShared |= pX->sharedMask; } /* Get shared locks at the system level, if necessary */ if( rc==SQLITE_OK ){ if( (allShared & mask)==0 ){ rc = unixShmSystemLock(pDbFd, F_RDLCK, ofst+UNIX_SHM_BASE, n); }else{ rc = SQLITE_OK; } } /* Get the local shared locks */ if( rc==SQLITE_OK ){ p->sharedMask |= mask; } }else{ /* Make sure no sibling connections hold locks that will block this ** lock. If any do, return SQLITE_BUSY right away. */ for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ if( (pX->exclMask & mask)!=0 || (pX->sharedMask & mask)!=0 ){ rc = SQLITE_BUSY; break; } } /* Get the exclusive locks at the system level. Then if successful ** also mark the local connection as being locked. */ if( rc==SQLITE_OK ){ rc = unixShmSystemLock(pDbFd, F_WRLCK, ofst+UNIX_SHM_BASE, n); if( rc==SQLITE_OK ){ assert( (p->sharedMask & mask)==0 ); p->exclMask |= mask; } } } sqlite3_mutex_leave(pShmNode->pShmMutex); OSTRACE(("SHM-LOCK shmid-%d, pid-%d got %03x,%03x\n", p->id, osGetpid(0), p->sharedMask, p->exclMask)); return rc; } /* ** Implement a memory barrier or memory fence on shared memory. ** ** All loads and stores begun before the barrier must complete before ** any load or store begun after the barrier. */ static void unixShmBarrier( sqlite3_file *fd /* Database file holding the shared memory */ ){ UNUSED_PARAMETER(fd); sqlite3MemoryBarrier(); /* compiler-defined memory barrier */ assert( fd->pMethods->xLock==nolockLock || unixFileMutexNotheld((unixFile*)fd) ); unixEnterMutex(); /* Also mutex, for redundancy */ unixLeaveMutex(); } /* ** Close a connection to shared-memory. Delete the underlying ** storage if deleteFlag is true. ** ** If there is no shared memory associated with the connection then this ** routine is a harmless no-op. */ static int unixShmUnmap( sqlite3_file *fd, /* The underlying database file */ int deleteFlag /* Delete shared-memory if true */ ){ unixShm *p; /* The connection to be closed */ unixShmNode *pShmNode; /* The underlying shared-memory file */ unixShm **pp; /* For looping over sibling connections */ unixFile *pDbFd; /* The underlying database file */ pDbFd = (unixFile*)fd; p = pDbFd->pShm; if( p==0 ) return SQLITE_OK; pShmNode = p->pShmNode; assert( pShmNode==pDbFd->pInode->pShmNode ); assert( pShmNode->pInode==pDbFd->pInode ); /* Remove connection p from the set of connections associated ** with pShmNode */ sqlite3_mutex_enter(pShmNode->pShmMutex); for(pp=&pShmNode->pFirst; (*pp)!=p; pp = &(*pp)->pNext){} *pp = p->pNext; /* Free the connection p */ sqlite3_free(p); pDbFd->pShm = 0; sqlite3_mutex_leave(pShmNode->pShmMutex); /* If pShmNode->nRef has reached 0, then close the underlying ** shared-memory file, too */ assert( unixFileMutexNotheld(pDbFd) ); unixEnterMutex(); assert( pShmNode->nRef>0 ); pShmNode->nRef--; if( pShmNode->nRef==0 ){ if( deleteFlag && pShmNode->hShm>=0 ){ osUnlink(pShmNode->zFilename); } unixShmPurge(pDbFd); } unixLeaveMutex(); return SQLITE_OK; } #else # define unixShmMap 0 # define unixShmLock 0 # define unixShmBarrier 0 # define unixShmUnmap 0 #endif /* #ifndef SQLITE_OMIT_WAL */ #if SQLITE_MAX_MMAP_SIZE>0 /* ** If it is currently memory mapped, unmap file pFd. */ static void unixUnmapfile(unixFile *pFd){ assert( pFd->nFetchOut==0 ); if( pFd->pMapRegion ){ osMunmap(pFd->pMapRegion, pFd->mmapSizeActual); pFd->pMapRegion = 0; pFd->mmapSize = 0; pFd->mmapSizeActual = 0; } } /* ** Attempt to set the size of the memory mapping maintained by file ** descriptor pFd to nNew bytes. Any existing mapping is discarded. ** ** If successful, this function sets the following variables: ** ** unixFile.pMapRegion ** unixFile.mmapSize ** unixFile.mmapSizeActual ** ** If unsuccessful, an error message is logged via sqlite3_log() and ** the three variables above are zeroed. In this case SQLite should ** continue accessing the database using the xRead() and xWrite() ** methods. */ static void unixRemapfile( unixFile *pFd, /* File descriptor object */ i64 nNew /* Required mapping size */ ){ const char *zErr = "mmap"; int h = pFd->h; /* File descriptor open on db file */ u8 *pOrig = (u8 *)pFd->pMapRegion; /* Pointer to current file mapping */ i64 nOrig = pFd->mmapSizeActual; /* Size of pOrig region in bytes */ u8 *pNew = 0; /* Location of new mapping */ int flags = PROT_READ; /* Flags to pass to mmap() */ assert( pFd->nFetchOut==0 ); assert( nNew>pFd->mmapSize ); assert( nNew<=pFd->mmapSizeMax ); assert( nNew>0 ); assert( pFd->mmapSizeActual>=pFd->mmapSize ); assert( MAP_FAILED!=0 ); #ifdef SQLITE_MMAP_READWRITE if( (pFd->ctrlFlags & UNIXFILE_RDONLY)==0 ) flags |= PROT_WRITE; #endif if( pOrig ){ #if HAVE_MREMAP i64 nReuse = pFd->mmapSize; #else const int szSyspage = osGetpagesize(); i64 nReuse = (pFd->mmapSize & ~(szSyspage-1)); #endif u8 *pReq = &pOrig[nReuse]; /* Unmap any pages of the existing mapping that cannot be reused. */ if( nReuse!=nOrig ){ osMunmap(pReq, nOrig-nReuse); } #if HAVE_MREMAP pNew = osMremap(pOrig, nReuse, nNew, MREMAP_MAYMOVE); zErr = "mremap"; #else pNew = osMmap(pReq, nNew-nReuse, flags, MAP_SHARED, h, nReuse); if( pNew!=MAP_FAILED ){ if( pNew!=pReq ){ osMunmap(pNew, nNew - nReuse); pNew = 0; }else{ pNew = pOrig; } } #endif /* The attempt to extend the existing mapping failed. Free it. */ if( pNew==MAP_FAILED || pNew==0 ){ osMunmap(pOrig, nReuse); } } /* If pNew is still NULL, try to create an entirely new mapping. */ if( pNew==0 ){ pNew = osMmap(0, nNew, flags, MAP_SHARED, h, 0); } if( pNew==MAP_FAILED ){ pNew = 0; nNew = 0; unixLogError(SQLITE_OK, zErr, pFd->zPath); /* If the mmap() above failed, assume that all subsequent mmap() calls ** will probably fail too. Fall back to using xRead/xWrite exclusively ** in this case. */ pFd->mmapSizeMax = 0; } pFd->pMapRegion = (void *)pNew; pFd->mmapSize = pFd->mmapSizeActual = nNew; } /* ** Memory map or remap the file opened by file-descriptor pFd (if the file ** is already mapped, the existing mapping is replaced by the new). Or, if ** there already exists a mapping for this file, and there are still ** outstanding xFetch() references to it, this function is a no-op. ** ** If parameter nByte is non-negative, then it is the requested size of ** the mapping to create. Otherwise, if nByte is less than zero, then the ** requested size is the size of the file on disk. The actual size of the ** created mapping is either the requested size or the value configured ** using SQLITE_FCNTL_MMAP_LIMIT, whichever is smaller. ** ** SQLITE_OK is returned if no error occurs (even if the mapping is not ** recreated as a result of outstanding references) or an SQLite error ** code otherwise. */ static int unixMapfile(unixFile *pFd, i64 nMap){ assert( nMap>=0 || pFd->nFetchOut==0 ); assert( nMap>0 || (pFd->mmapSize==0 && pFd->pMapRegion==0) ); if( pFd->nFetchOut>0 ) return SQLITE_OK; if( nMap<0 ){ struct stat statbuf; /* Low-level file information */ if( osFstat(pFd->h, &statbuf) ){ return SQLITE_IOERR_FSTAT; } nMap = statbuf.st_size; } if( nMap>pFd->mmapSizeMax ){ nMap = pFd->mmapSizeMax; } assert( nMap>0 || (pFd->mmapSize==0 && pFd->pMapRegion==0) ); if( nMap!=pFd->mmapSize ){ unixRemapfile(pFd, nMap); } return SQLITE_OK; } #endif /* SQLITE_MAX_MMAP_SIZE>0 */ /* ** If possible, return a pointer to a mapping of file fd starting at offset ** iOff. The mapping must be valid for at least nAmt bytes. ** ** If such a pointer can be obtained, store it in *pp and return SQLITE_OK. ** Or, if one cannot but no error occurs, set *pp to 0 and return SQLITE_OK. ** Finally, if an error does occur, return an SQLite error code. The final ** value of *pp is undefined in this case. ** ** If this function does return a pointer, the caller must eventually ** release the reference by calling unixUnfetch(). */ static int unixFetch(sqlite3_file *fd, i64 iOff, int nAmt, void **pp){ #if SQLITE_MAX_MMAP_SIZE>0 unixFile *pFd = (unixFile *)fd; /* The underlying database file */ #endif *pp = 0; #if SQLITE_MAX_MMAP_SIZE>0 if( pFd->mmapSizeMax>0 ){ if( pFd->pMapRegion==0 ){ int rc = unixMapfile(pFd, -1); if( rc!=SQLITE_OK ) return rc; } if( pFd->mmapSize >= iOff+nAmt ){ *pp = &((u8 *)pFd->pMapRegion)[iOff]; pFd->nFetchOut++; } } #endif return SQLITE_OK; } /* ** If the third argument is non-NULL, then this function releases a ** reference obtained by an earlier call to unixFetch(). The second ** argument passed to this function must be the same as the corresponding ** argument that was passed to the unixFetch() invocation. ** ** Or, if the third argument is NULL, then this function is being called ** to inform the VFS layer that, according to POSIX, any existing mapping ** may now be invalid and should be unmapped. */ static int unixUnfetch(sqlite3_file *fd, i64 iOff, void *p){ #if SQLITE_MAX_MMAP_SIZE>0 unixFile *pFd = (unixFile *)fd; /* The underlying database file */ UNUSED_PARAMETER(iOff); /* If p==0 (unmap the entire file) then there must be no outstanding ** xFetch references. Or, if p!=0 (meaning it is an xFetch reference), ** then there must be at least one outstanding. */ assert( (p==0)==(pFd->nFetchOut==0) ); /* If p!=0, it must match the iOff value. */ assert( p==0 || p==&((u8 *)pFd->pMapRegion)[iOff] ); if( p ){ pFd->nFetchOut--; }else{ unixUnmapfile(pFd); } assert( pFd->nFetchOut>=0 ); #else UNUSED_PARAMETER(fd); UNUSED_PARAMETER(p); UNUSED_PARAMETER(iOff); #endif return SQLITE_OK; } /* ** Here ends the implementation of all sqlite3_file methods. ** ********************** End sqlite3_file Methods ******************************* ******************************************************************************/ /* ** This division contains definitions of sqlite3_io_methods objects that ** implement various file locking strategies. It also contains definitions ** of "finder" functions. A finder-function is used to locate the appropriate ** sqlite3_io_methods object for a particular database file. The pAppData ** field of the sqlite3_vfs VFS objects are initialized to be pointers to ** the correct finder-function for that VFS. ** ** Most finder functions return a pointer to a fixed sqlite3_io_methods ** object. The only interesting finder-function is autolockIoFinder, which ** looks at the filesystem type and tries to guess the best locking ** strategy from that. ** ** For finder-function F, two objects are created: ** ** (1) The real finder-function named "FImpt()". ** ** (2) A constant pointer to this function named just "F". ** ** ** A pointer to the F pointer is used as the pAppData value for VFS ** objects. We have to do this instead of letting pAppData point ** directly at the finder-function since C90 rules prevent a void* ** from be cast into a function pointer. ** ** ** Each instance of this macro generates two objects: ** ** * A constant sqlite3_io_methods object call METHOD that has locking ** methods CLOSE, LOCK, UNLOCK, CKRESLOCK. ** ** * An I/O method finder function called FINDER that returns a pointer ** to the METHOD object in the previous bullet. */ #define IOMETHODS(FINDER,METHOD,VERSION,CLOSE,LOCK,UNLOCK,CKLOCK,SHMMAP) \ static const sqlite3_io_methods METHOD = { \ VERSION, /* iVersion */ \ CLOSE, /* xClose */ \ unixRead, /* xRead */ \ unixWrite, /* xWrite */ \ unixTruncate, /* xTruncate */ \ unixSync, /* xSync */ \ unixFileSize, /* xFileSize */ \ LOCK, /* xLock */ \ UNLOCK, /* xUnlock */ \ CKLOCK, /* xCheckReservedLock */ \ unixFileControl, /* xFileControl */ \ unixSectorSize, /* xSectorSize */ \ unixDeviceCharacteristics, /* xDeviceCapabilities */ \ SHMMAP, /* xShmMap */ \ unixShmLock, /* xShmLock */ \ unixShmBarrier, /* xShmBarrier */ \ unixShmUnmap, /* xShmUnmap */ \ unixFetch, /* xFetch */ \ unixUnfetch, /* xUnfetch */ \ }; \ static const sqlite3_io_methods *FINDER##Impl(const char *z, unixFile *p){ \ UNUSED_PARAMETER(z); UNUSED_PARAMETER(p); \ return &METHOD; \ } \ static const sqlite3_io_methods *(*const FINDER)(const char*,unixFile *p) \ = FINDER##Impl; /* ** Here are all of the sqlite3_io_methods objects for each of the ** locking strategies. Functions that return pointers to these methods ** are also created. */ IOMETHODS( posixIoFinder, /* Finder function name */ posixIoMethods, /* sqlite3_io_methods object name */ 3, /* shared memory and mmap are enabled */ unixClose, /* xClose method */ unixLock, /* xLock method */ unixUnlock, /* xUnlock method */ unixCheckReservedLock, /* xCheckReservedLock method */ unixShmMap /* xShmMap method */ ) IOMETHODS( nolockIoFinder, /* Finder function name */ nolockIoMethods, /* sqlite3_io_methods object name */ 3, /* shared memory and mmap are enabled */ nolockClose, /* xClose method */ nolockLock, /* xLock method */ nolockUnlock, /* xUnlock method */ nolockCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) IOMETHODS( dotlockIoFinder, /* Finder function name */ dotlockIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ dotlockClose, /* xClose method */ dotlockLock, /* xLock method */ dotlockUnlock, /* xUnlock method */ dotlockCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #if SQLITE_ENABLE_LOCKING_STYLE IOMETHODS( flockIoFinder, /* Finder function name */ flockIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ flockClose, /* xClose method */ flockLock, /* xLock method */ flockUnlock, /* xUnlock method */ flockCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #endif #if OS_VXWORKS IOMETHODS( semIoFinder, /* Finder function name */ semIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ semXClose, /* xClose method */ semXLock, /* xLock method */ semXUnlock, /* xUnlock method */ semXCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #endif #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE IOMETHODS( afpIoFinder, /* Finder function name */ afpIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ afpClose, /* xClose method */ afpLock, /* xLock method */ afpUnlock, /* xUnlock method */ afpCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #endif /* ** The proxy locking method is a "super-method" in the sense that it ** opens secondary file descriptors for the conch and lock files and ** it uses proxy, dot-file, AFP, and flock() locking methods on those ** secondary files. For this reason, the division that implements ** proxy locking is located much further down in the file. But we need ** to go ahead and define the sqlite3_io_methods and finder function ** for proxy locking here. So we forward declare the I/O methods. */ #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE static int proxyClose(sqlite3_file*); static int proxyLock(sqlite3_file*, int); static int proxyUnlock(sqlite3_file*, int); static int proxyCheckReservedLock(sqlite3_file*, int*); IOMETHODS( proxyIoFinder, /* Finder function name */ proxyIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ proxyClose, /* xClose method */ proxyLock, /* xLock method */ proxyUnlock, /* xUnlock method */ proxyCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #endif /* nfs lockd on OSX 10.3+ doesn't clear write locks when a read lock is set */ #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE IOMETHODS( nfsIoFinder, /* Finder function name */ nfsIoMethods, /* sqlite3_io_methods object name */ 1, /* shared memory is disabled */ unixClose, /* xClose method */ unixLock, /* xLock method */ nfsUnlock, /* xUnlock method */ unixCheckReservedLock, /* xCheckReservedLock method */ 0 /* xShmMap method */ ) #endif #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE /* ** This "finder" function attempts to determine the best locking strategy ** for the database file "filePath". It then returns the sqlite3_io_methods ** object that implements that strategy. ** ** This is for MacOSX only. */ static const sqlite3_io_methods *autolockIoFinderImpl( const char *filePath, /* name of the database file */ unixFile *pNew /* open file object for the database file */ ){ static const struct Mapping { const char *zFilesystem; /* Filesystem type name */ const sqlite3_io_methods *pMethods; /* Appropriate locking method */ } aMap[] = { { "hfs", &posixIoMethods }, { "ufs", &posixIoMethods }, { "afpfs", &afpIoMethods }, { "smbfs", &afpIoMethods }, { "webdav", &nolockIoMethods }, { 0, 0 } }; int i; struct statfs fsInfo; struct flock lockInfo; if( !filePath ){ /* If filePath==NULL that means we are dealing with a transient file ** that does not need to be locked. */ return &nolockIoMethods; } if( statfs(filePath, &fsInfo) != -1 ){ if( fsInfo.f_flags & MNT_RDONLY ){ return &nolockIoMethods; } for(i=0; aMap[i].zFilesystem; i++){ if( strcmp(fsInfo.f_fstypename, aMap[i].zFilesystem)==0 ){ return aMap[i].pMethods; } } } /* Default case. Handles, amongst others, "nfs". ** Test byte-range lock using fcntl(). If the call succeeds, ** assume that the file-system supports POSIX style locks. */ lockInfo.l_len = 1; lockInfo.l_start = 0; lockInfo.l_whence = SEEK_SET; lockInfo.l_type = F_RDLCK; if( osFcntl(pNew->h, F_GETLK, &lockInfo)!=-1 ) { if( strcmp(fsInfo.f_fstypename, "nfs")==0 ){ return &nfsIoMethods; } else { return &posixIoMethods; } }else{ return &dotlockIoMethods; } } static const sqlite3_io_methods *(*const autolockIoFinder)(const char*,unixFile*) = autolockIoFinderImpl; #endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ #if OS_VXWORKS /* ** This "finder" function for VxWorks checks to see if posix advisory ** locking works. If it does, then that is what is used. If it does not ** work, then fallback to named semaphore locking. */ static const sqlite3_io_methods *vxworksIoFinderImpl( const char *filePath, /* name of the database file */ unixFile *pNew /* the open file object */ ){ struct flock lockInfo; if( !filePath ){ /* If filePath==NULL that means we are dealing with a transient file ** that does not need to be locked. */ return &nolockIoMethods; } /* Test if fcntl() is supported and use POSIX style locks. ** Otherwise fall back to the named semaphore method. */ lockInfo.l_len = 1; lockInfo.l_start = 0; lockInfo.l_whence = SEEK_SET; lockInfo.l_type = F_RDLCK; if( osFcntl(pNew->h, F_GETLK, &lockInfo)!=-1 ) { return &posixIoMethods; }else{ return &semIoMethods; } } static const sqlite3_io_methods *(*const vxworksIoFinder)(const char*,unixFile*) = vxworksIoFinderImpl; #endif /* OS_VXWORKS */ /* ** An abstract type for a pointer to an IO method finder function: */ typedef const sqlite3_io_methods *(*finder_type)(const char*,unixFile*); /**************************************************************************** **************************** sqlite3_vfs methods **************************** ** ** This division contains the implementation of methods on the ** sqlite3_vfs object. */ /* ** Initialize the contents of the unixFile structure pointed to by pId. */ static int fillInUnixFile( sqlite3_vfs *pVfs, /* Pointer to vfs object */ int h, /* Open file descriptor of file being opened */ sqlite3_file *pId, /* Write to the unixFile structure here */ const char *zFilename, /* Name of the file being opened */ int ctrlFlags /* Zero or more UNIXFILE_* values */ ){ const sqlite3_io_methods *pLockingStyle; unixFile *pNew = (unixFile *)pId; int rc = SQLITE_OK; assert( pNew->pInode==NULL ); /* No locking occurs in temporary files */ assert( zFilename!=0 || (ctrlFlags & UNIXFILE_NOLOCK)!=0 ); OSTRACE(("OPEN %-3d %s\n", h, zFilename)); pNew->h = h; pNew->pVfs = pVfs; pNew->zPath = zFilename; pNew->ctrlFlags = (u8)ctrlFlags; #if SQLITE_MAX_MMAP_SIZE>0 pNew->mmapSizeMax = sqlite3GlobalConfig.szMmap; #endif if( sqlite3_uri_boolean(((ctrlFlags & UNIXFILE_URI) ? zFilename : 0), "psow", SQLITE_POWERSAFE_OVERWRITE) ){ pNew->ctrlFlags |= UNIXFILE_PSOW; } if( strcmp(pVfs->zName,"unix-excl")==0 ){ pNew->ctrlFlags |= UNIXFILE_EXCL; } #if OS_VXWORKS pNew->pId = vxworksFindFileId(zFilename); if( pNew->pId==0 ){ ctrlFlags |= UNIXFILE_NOLOCK; rc = SQLITE_NOMEM_BKPT; } #endif if( ctrlFlags & UNIXFILE_NOLOCK ){ pLockingStyle = &nolockIoMethods; }else{ pLockingStyle = (**(finder_type*)pVfs->pAppData)(zFilename, pNew); #if SQLITE_ENABLE_LOCKING_STYLE /* Cache zFilename in the locking context (AFP and dotlock override) for ** proxyLock activation is possible (remote proxy is based on db name) ** zFilename remains valid until file is closed, to support */ pNew->lockingContext = (void*)zFilename; #endif } if( pLockingStyle == &posixIoMethods #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE || pLockingStyle == &nfsIoMethods #endif ){ unixEnterMutex(); rc = findInodeInfo(pNew, &pNew->pInode); if( rc!=SQLITE_OK ){ /* If an error occurred in findInodeInfo(), close the file descriptor ** immediately, before releasing the mutex. findInodeInfo() may fail ** in two scenarios: ** ** (a) A call to fstat() failed. ** (b) A malloc failed. ** ** Scenario (b) may only occur if the process is holding no other ** file descriptors open on the same file. If there were other file ** descriptors on this file, then no malloc would be required by ** findInodeInfo(). If this is the case, it is quite safe to close ** handle h - as it is guaranteed that no posix locks will be released ** by doing so. ** ** If scenario (a) caused the error then things are not so safe. The ** implicit assumption here is that if fstat() fails, things are in ** such bad shape that dropping a lock or two doesn't matter much. */ robust_close(pNew, h, __LINE__); h = -1; } unixLeaveMutex(); } #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) else if( pLockingStyle == &afpIoMethods ){ /* AFP locking uses the file path so it needs to be included in ** the afpLockingContext. */ afpLockingContext *pCtx; pNew->lockingContext = pCtx = sqlite3_malloc64( sizeof(*pCtx) ); if( pCtx==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ /* NB: zFilename exists and remains valid until the file is closed ** according to requirement F11141. So we do not need to make a ** copy of the filename. */ pCtx->dbPath = zFilename; pCtx->reserved = 0; srandomdev(); unixEnterMutex(); rc = findInodeInfo(pNew, &pNew->pInode); if( rc!=SQLITE_OK ){ sqlite3_free(pNew->lockingContext); robust_close(pNew, h, __LINE__); h = -1; } unixLeaveMutex(); } } #endif else if( pLockingStyle == &dotlockIoMethods ){ /* Dotfile locking uses the file path so it needs to be included in ** the dotlockLockingContext */ char *zLockFile; int nFilename; assert( zFilename!=0 ); nFilename = (int)strlen(zFilename) + 6; zLockFile = (char *)sqlite3_malloc64(nFilename); if( zLockFile==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ sqlite3_snprintf(nFilename, zLockFile, "%s" DOTLOCK_SUFFIX, zFilename); } pNew->lockingContext = zLockFile; } #if OS_VXWORKS else if( pLockingStyle == &semIoMethods ){ /* Named semaphore locking uses the file path so it needs to be ** included in the semLockingContext */ unixEnterMutex(); rc = findInodeInfo(pNew, &pNew->pInode); if( (rc==SQLITE_OK) && (pNew->pInode->pSem==NULL) ){ char *zSemName = pNew->pInode->aSemName; int n; sqlite3_snprintf(MAX_PATHNAME, zSemName, "/%s.sem", pNew->pId->zCanonicalName); for( n=1; zSemName[n]; n++ ) if( zSemName[n]=='/' ) zSemName[n] = '_'; pNew->pInode->pSem = sem_open(zSemName, O_CREAT, 0666, 1); if( pNew->pInode->pSem == SEM_FAILED ){ rc = SQLITE_NOMEM_BKPT; pNew->pInode->aSemName[0] = '\0'; } } unixLeaveMutex(); } #endif storeLastErrno(pNew, 0); #if OS_VXWORKS if( rc!=SQLITE_OK ){ if( h>=0 ) robust_close(pNew, h, __LINE__); h = -1; osUnlink(zFilename); pNew->ctrlFlags |= UNIXFILE_DELETE; } #endif if( rc!=SQLITE_OK ){ if( h>=0 ) robust_close(pNew, h, __LINE__); }else{ pId->pMethods = pLockingStyle; OpenCounter(+1); verifyDbFile(pNew); } return rc; } /* ** Return the name of a directory in which to put temporary files. ** If no suitable temporary file directory can be found, return NULL. */ static const char *unixTempFileDir(void){ static const char *azDirs[] = { 0, 0, "/var/tmp", "/usr/tmp", "/tmp", "." }; unsigned int i = 0; struct stat buf; const char *zDir = sqlite3_temp_directory; if( !azDirs[0] ) azDirs[0] = getenv("SQLITE_TMPDIR"); if( !azDirs[1] ) azDirs[1] = getenv("TMPDIR"); while(1){ if( zDir!=0 && osStat(zDir, &buf)==0 && S_ISDIR(buf.st_mode) && osAccess(zDir, 03)==0 ){ return zDir; } if( i>=sizeof(azDirs)/sizeof(azDirs[0]) ) break; zDir = azDirs[i++]; } return 0; } /* ** Create a temporary file name in zBuf. zBuf must be allocated ** by the calling process and must be big enough to hold at least ** pVfs->mxPathname bytes. */ static int unixGetTempname(int nBuf, char *zBuf){ const char *zDir; int iLimit = 0; /* It's odd to simulate an io-error here, but really this is just ** using the io-error infrastructure to test that SQLite handles this ** function failing. */ zBuf[0] = 0; SimulateIOError( return SQLITE_IOERR ); zDir = unixTempFileDir(); if( zDir==0 ) return SQLITE_IOERR_GETTEMPPATH; do{ u64 r; sqlite3_randomness(sizeof(r), &r); assert( nBuf>2 ); zBuf[nBuf-2] = 0; sqlite3_snprintf(nBuf, zBuf, "%s/"SQLITE_TEMP_FILE_PREFIX"%llx%c", zDir, r, 0); if( zBuf[nBuf-2]!=0 || (iLimit++)>10 ) return SQLITE_ERROR; }while( osAccess(zBuf,0)==0 ); return SQLITE_OK; } #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) /* ** Routine to transform a unixFile into a proxy-locking unixFile. ** Implementation in the proxy-lock division, but used by unixOpen() ** if SQLITE_PREFER_PROXY_LOCKING is defined. */ static int proxyTransformUnixFile(unixFile*, const char*); #endif /* ** Search for an unused file descriptor that was opened on the database ** file (not a journal or super-journal file) identified by pathname ** zPath with SQLITE_OPEN_XXX flags matching those passed as the second ** argument to this function. ** ** Such a file descriptor may exist if a database connection was closed ** but the associated file descriptor could not be closed because some ** other file descriptor open on the same file is holding a file-lock. ** Refer to comments in the unixClose() function and the lengthy comment ** describing "Posix Advisory Locking" at the start of this file for ** further details. Also, ticket #4018. ** ** If a suitable file descriptor is found, then it is returned. If no ** such file descriptor is located, -1 is returned. */ static UnixUnusedFd *findReusableFd(const char *zPath, int flags){ UnixUnusedFd *pUnused = 0; /* Do not search for an unused file descriptor on vxworks. Not because ** vxworks would not benefit from the change (it might, we're not sure), ** but because no way to test it is currently available. It is better ** not to risk breaking vxworks support for the sake of such an obscure ** feature. */ #if !OS_VXWORKS struct stat sStat; /* Results of stat() call */ unixEnterMutex(); /* A stat() call may fail for various reasons. If this happens, it is ** almost certain that an open() call on the same path will also fail. ** For this reason, if an error occurs in the stat() call here, it is ** ignored and -1 is returned. The caller will try to open a new file ** descriptor on the same path, fail, and return an error to SQLite. ** ** Even if a subsequent open() call does succeed, the consequences of ** not searching for a reusable file descriptor are not dire. */ if( inodeList!=0 && 0==osStat(zPath, &sStat) ){ unixInodeInfo *pInode; pInode = inodeList; while( pInode && (pInode->fileId.dev!=sStat.st_dev || pInode->fileId.ino!=(u64)sStat.st_ino) ){ pInode = pInode->pNext; } if( pInode ){ UnixUnusedFd **pp; assert( sqlite3_mutex_notheld(pInode->pLockMutex) ); sqlite3_mutex_enter(pInode->pLockMutex); flags &= (SQLITE_OPEN_READONLY|SQLITE_OPEN_READWRITE); for(pp=&pInode->pUnused; *pp && (*pp)->flags!=flags; pp=&((*pp)->pNext)); pUnused = *pp; if( pUnused ){ *pp = pUnused->pNext; } sqlite3_mutex_leave(pInode->pLockMutex); } } unixLeaveMutex(); #endif /* if !OS_VXWORKS */ return pUnused; } /* ** Find the mode, uid and gid of file zFile. */ static int getFileMode( const char *zFile, /* File name */ mode_t *pMode, /* OUT: Permissions of zFile */ uid_t *pUid, /* OUT: uid of zFile. */ gid_t *pGid /* OUT: gid of zFile. */ ){ struct stat sStat; /* Output of stat() on database file */ int rc = SQLITE_OK; if( 0==osStat(zFile, &sStat) ){ *pMode = sStat.st_mode & 0777; *pUid = sStat.st_uid; *pGid = sStat.st_gid; }else{ rc = SQLITE_IOERR_FSTAT; } return rc; } /* ** This function is called by unixOpen() to determine the unix permissions ** to create new files with. If no error occurs, then SQLITE_OK is returned ** and a value suitable for passing as the third argument to open(2) is ** written to *pMode. If an IO error occurs, an SQLite error code is ** returned and the value of *pMode is not modified. ** ** In most cases, this routine sets *pMode to 0, which will become ** an indication to robust_open() to create the file using ** SQLITE_DEFAULT_FILE_PERMISSIONS adjusted by the umask. ** But if the file being opened is a WAL or regular journal file, then ** this function queries the file-system for the permissions on the ** corresponding database file and sets *pMode to this value. Whenever ** possible, WAL and journal files are created using the same permissions ** as the associated database file. ** ** If the SQLITE_ENABLE_8_3_NAMES option is enabled, then the ** original filename is unavailable. But 8_3_NAMES is only used for ** FAT filesystems and permissions do not matter there, so just use ** the default permissions. In 8_3_NAMES mode, leave *pMode set to zero. */ static int findCreateFileMode( const char *zPath, /* Path of file (possibly) being created */ int flags, /* Flags passed as 4th argument to xOpen() */ mode_t *pMode, /* OUT: Permissions to open file with */ uid_t *pUid, /* OUT: uid to set on the file */ gid_t *pGid /* OUT: gid to set on the file */ ){ int rc = SQLITE_OK; /* Return Code */ *pMode = 0; *pUid = 0; *pGid = 0; if( flags & (SQLITE_OPEN_WAL|SQLITE_OPEN_MAIN_JOURNAL) ){ char zDb[MAX_PATHNAME+1]; /* Database file path */ int nDb; /* Number of valid bytes in zDb */ /* zPath is a path to a WAL or journal file. The following block derives ** the path to the associated database file from zPath. This block handles ** the following naming conventions: ** ** "-journal" ** "-wal" ** "-journalNN" ** "-walNN" ** ** where NN is a decimal number. The NN naming schemes are ** used by the test_multiplex.c module. */ nDb = sqlite3Strlen30(zPath) - 1; while( zPath[nDb]!='-' ){ /* In normal operation, the journal file name will always contain ** a '-' character. However in 8+3 filename mode, or if a corrupt ** rollback journal specifies a super-journal with a goofy name, then ** the '-' might be missing. */ if( nDb==0 || zPath[nDb]=='.' ) return SQLITE_OK; nDb--; } memcpy(zDb, zPath, nDb); zDb[nDb] = '\0'; rc = getFileMode(zDb, pMode, pUid, pGid); }else if( flags & SQLITE_OPEN_DELETEONCLOSE ){ *pMode = 0600; }else if( flags & SQLITE_OPEN_URI ){ /* If this is a main database file and the file was opened using a URI ** filename, check for the "modeof" parameter. If present, interpret ** its value as a filename and try to copy the mode, uid and gid from ** that file. */ const char *z = sqlite3_uri_parameter(zPath, "modeof"); if( z ){ rc = getFileMode(z, pMode, pUid, pGid); } } return rc; } /* ** Open the file zPath. ** ** Previously, the SQLite OS layer used three functions in place of this ** one: ** ** sqlite3OsOpenReadWrite(); ** sqlite3OsOpenReadOnly(); ** sqlite3OsOpenExclusive(); ** ** These calls correspond to the following combinations of flags: ** ** ReadWrite() -> (READWRITE | CREATE) ** ReadOnly() -> (READONLY) ** OpenExclusive() -> (READWRITE | CREATE | EXCLUSIVE) ** ** The old OpenExclusive() accepted a boolean argument - "delFlag". If ** true, the file was configured to be automatically deleted when the ** file handle closed. To achieve the same effect using this new ** interface, add the DELETEONCLOSE flag to those specified above for ** OpenExclusive(). */ static int unixOpen( sqlite3_vfs *pVfs, /* The VFS for which this is the xOpen method */ const char *zPath, /* Pathname of file to be opened */ sqlite3_file *pFile, /* The file descriptor to be filled in */ int flags, /* Input flags to control the opening */ int *pOutFlags /* Output flags returned to SQLite core */ ){ unixFile *p = (unixFile *)pFile; int fd = -1; /* File descriptor returned by open() */ int openFlags = 0; /* Flags to pass to open() */ int eType = flags&0x0FFF00; /* Type of file to open */ int noLock; /* True to omit locking primitives */ int rc = SQLITE_OK; /* Function Return Code */ int ctrlFlags = 0; /* UNIXFILE_* flags */ int isExclusive = (flags & SQLITE_OPEN_EXCLUSIVE); int isDelete = (flags & SQLITE_OPEN_DELETEONCLOSE); int isCreate = (flags & SQLITE_OPEN_CREATE); int isReadonly = (flags & SQLITE_OPEN_READONLY); int isReadWrite = (flags & SQLITE_OPEN_READWRITE); #if SQLITE_ENABLE_LOCKING_STYLE int isAutoProxy = (flags & SQLITE_OPEN_AUTOPROXY); #endif #if defined(__APPLE__) || SQLITE_ENABLE_LOCKING_STYLE struct statfs fsInfo; #endif /* If creating a super- or main-file journal, this function will open ** a file-descriptor on the directory too. The first time unixSync() ** is called the directory file descriptor will be fsync()ed and close()d. */ int isNewJrnl = (isCreate && ( eType==SQLITE_OPEN_SUPER_JOURNAL || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_WAL )); /* If argument zPath is a NULL pointer, this function is required to open ** a temporary file. Use this buffer to store the file name in. */ char zTmpname[MAX_PATHNAME+2]; const char *zName = zPath; /* Check the following statements are true: ** ** (a) Exactly one of the READWRITE and READONLY flags must be set, and ** (b) if CREATE is set, then READWRITE must also be set, and ** (c) if EXCLUSIVE is set, then CREATE must also be set. ** (d) if DELETEONCLOSE is set, then CREATE must also be set. */ assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly)); assert(isCreate==0 || isReadWrite); assert(isExclusive==0 || isCreate); assert(isDelete==0 || isCreate); /* The main DB, main journal, WAL file and super-journal are never ** automatically deleted. Nor are they ever temporary files. */ assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_SUPER_JOURNAL ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); /* Assert that the upper layer has set one of the "file-type" flags. */ assert( eType==SQLITE_OPEN_MAIN_DB || eType==SQLITE_OPEN_TEMP_DB || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL || eType==SQLITE_OPEN_SUBJOURNAL || eType==SQLITE_OPEN_SUPER_JOURNAL || eType==SQLITE_OPEN_TRANSIENT_DB || eType==SQLITE_OPEN_WAL ); /* Detect a pid change and reset the PRNG. There is a race condition ** here such that two or more threads all trying to open databases at ** the same instant might all reset the PRNG. But multiple resets ** are harmless. */ if( randomnessPid!=osGetpid(0) ){ randomnessPid = osGetpid(0); sqlite3_randomness(0,0); } memset(p, 0, sizeof(unixFile)); if( eType==SQLITE_OPEN_MAIN_DB ){ UnixUnusedFd *pUnused; pUnused = findReusableFd(zName, flags); if( pUnused ){ fd = pUnused->fd; }else{ pUnused = sqlite3_malloc64(sizeof(*pUnused)); if( !pUnused ){ return SQLITE_NOMEM_BKPT; } } p->pPreallocatedUnused = pUnused; /* Database filenames are double-zero terminated if they are not ** URIs with parameters. Hence, they can always be passed into ** sqlite3_uri_parameter(). */ assert( (flags & SQLITE_OPEN_URI) || zName[strlen(zName)+1]==0 ); }else if( !zName ){ /* If zName is NULL, the upper layer is requesting a temp file. */ assert(isDelete && !isNewJrnl); rc = unixGetTempname(pVfs->mxPathname, zTmpname); if( rc!=SQLITE_OK ){ return rc; } zName = zTmpname; /* Generated temporary filenames are always double-zero terminated ** for use by sqlite3_uri_parameter(). */ assert( zName[strlen(zName)+1]==0 ); } /* Determine the value of the flags parameter passed to POSIX function ** open(). These must be calculated even if open() is not called, as ** they may be stored as part of the file handle and used by the ** 'conch file' locking functions later on. */ if( isReadonly ) openFlags |= O_RDONLY; if( isReadWrite ) openFlags |= O_RDWR; if( isCreate ) openFlags |= O_CREAT; if( isExclusive ) openFlags |= (O_EXCL|O_NOFOLLOW); openFlags |= (O_LARGEFILE|O_BINARY|O_NOFOLLOW); if( fd<0 ){ mode_t openMode; /* Permissions to create file with */ uid_t uid; /* Userid for the file */ gid_t gid; /* Groupid for the file */ rc = findCreateFileMode(zName, flags, &openMode, &uid, &gid); if( rc!=SQLITE_OK ){ assert( !p->pPreallocatedUnused ); assert( eType==SQLITE_OPEN_WAL || eType==SQLITE_OPEN_MAIN_JOURNAL ); return rc; } fd = robust_open(zName, openFlags, openMode); OSTRACE(("OPENX %-3d %s 0%o\n", fd, zName, openFlags)); assert( !isExclusive || (openFlags & O_CREAT)!=0 ); if( fd<0 ){ if( isNewJrnl && errno==EACCES && osAccess(zName, F_OK) ){ /* If unable to create a journal because the directory is not ** writable, change the error code to indicate that. */ rc = SQLITE_READONLY_DIRECTORY; }else if( errno!=EISDIR && isReadWrite ){ /* Failed to open the file for read/write access. Try read-only. */ flags &= ~(SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE); openFlags &= ~(O_RDWR|O_CREAT); flags |= SQLITE_OPEN_READONLY; openFlags |= O_RDONLY; isReadonly = 1; fd = robust_open(zName, openFlags, openMode); } } if( fd<0 ){ int rc2 = unixLogError(SQLITE_CANTOPEN_BKPT, "open", zName); if( rc==SQLITE_OK ) rc = rc2; goto open_finished; } /* The owner of the rollback journal or WAL file should always be the ** same as the owner of the database file. Try to ensure that this is ** the case. The chown() system call will be a no-op if the current ** process lacks root privileges, be we should at least try. Without ** this step, if a root process opens a database file, it can leave ** behinds a journal/WAL that is owned by root and hence make the ** database inaccessible to unprivileged processes. ** ** If openMode==0, then that means uid and gid are not set correctly ** (probably because SQLite is configured to use 8+3 filename mode) and ** in that case we do not want to attempt the chown(). */ if( openMode && (flags & (SQLITE_OPEN_WAL|SQLITE_OPEN_MAIN_JOURNAL))!=0 ){ robustFchown(fd, uid, gid); } } assert( fd>=0 ); if( pOutFlags ){ *pOutFlags = flags; } if( p->pPreallocatedUnused ){ p->pPreallocatedUnused->fd = fd; p->pPreallocatedUnused->flags = flags & (SQLITE_OPEN_READONLY|SQLITE_OPEN_READWRITE); } if( isDelete ){ #if OS_VXWORKS zPath = zName; #elif defined(SQLITE_UNLINK_AFTER_CLOSE) zPath = sqlite3_mprintf("%s", zName); if( zPath==0 ){ robust_close(p, fd, __LINE__); return SQLITE_NOMEM_BKPT; } #else osUnlink(zName); #endif } #if SQLITE_ENABLE_LOCKING_STYLE else{ p->openFlags = openFlags; } #endif #if defined(__APPLE__) || SQLITE_ENABLE_LOCKING_STYLE if( fstatfs(fd, &fsInfo) == -1 ){ storeLastErrno(p, errno); robust_close(p, fd, __LINE__); return SQLITE_IOERR_ACCESS; } if (0 == strncmp("msdos", fsInfo.f_fstypename, 5)) { ((unixFile*)pFile)->fsFlags |= SQLITE_FSFLAGS_IS_MSDOS; } if (0 == strncmp("exfat", fsInfo.f_fstypename, 5)) { ((unixFile*)pFile)->fsFlags |= SQLITE_FSFLAGS_IS_MSDOS; } #endif /* Set up appropriate ctrlFlags */ if( isDelete ) ctrlFlags |= UNIXFILE_DELETE; if( isReadonly ) ctrlFlags |= UNIXFILE_RDONLY; noLock = eType!=SQLITE_OPEN_MAIN_DB; if( noLock ) ctrlFlags |= UNIXFILE_NOLOCK; if( isNewJrnl ) ctrlFlags |= UNIXFILE_DIRSYNC; if( flags & SQLITE_OPEN_URI ) ctrlFlags |= UNIXFILE_URI; #if SQLITE_ENABLE_LOCKING_STYLE #if SQLITE_PREFER_PROXY_LOCKING isAutoProxy = 1; #endif if( isAutoProxy && (zPath!=NULL) && (!noLock) && pVfs->xOpen ){ char *envforce = getenv("SQLITE_FORCE_PROXY_LOCKING"); int useProxy = 0; /* SQLITE_FORCE_PROXY_LOCKING==1 means force always use proxy, 0 means ** never use proxy, NULL means use proxy for non-local files only. */ if( envforce!=NULL ){ useProxy = atoi(envforce)>0; }else{ useProxy = !(fsInfo.f_flags&MNT_LOCAL); } if( useProxy ){ rc = fillInUnixFile(pVfs, fd, pFile, zPath, ctrlFlags); if( rc==SQLITE_OK ){ rc = proxyTransformUnixFile((unixFile*)pFile, ":auto:"); if( rc!=SQLITE_OK ){ /* Use unixClose to clean up the resources added in fillInUnixFile ** and clear all the structure's references. Specifically, ** pFile->pMethods will be NULL so sqlite3OsClose will be a no-op */ unixClose(pFile); return rc; } } goto open_finished; } } #endif assert( zPath==0 || zPath[0]=='/' || eType==SQLITE_OPEN_SUPER_JOURNAL || eType==SQLITE_OPEN_MAIN_JOURNAL ); rc = fillInUnixFile(pVfs, fd, pFile, zPath, ctrlFlags); open_finished: if( rc!=SQLITE_OK ){ sqlite3_free(p->pPreallocatedUnused); } return rc; } /* ** Delete the file at zPath. If the dirSync argument is true, fsync() ** the directory after deleting the file. */ static int unixDelete( sqlite3_vfs *NotUsed, /* VFS containing this as the xDelete method */ const char *zPath, /* Name of file to be deleted */ int dirSync /* If true, fsync() directory after deleting file */ ){ int rc = SQLITE_OK; UNUSED_PARAMETER(NotUsed); SimulateIOError(return SQLITE_IOERR_DELETE); if( osUnlink(zPath)==(-1) ){ if( errno==ENOENT #if OS_VXWORKS || osAccess(zPath,0)!=0 #endif ){ rc = SQLITE_IOERR_DELETE_NOENT; }else{ rc = unixLogError(SQLITE_IOERR_DELETE, "unlink", zPath); } return rc; } #ifndef SQLITE_DISABLE_DIRSYNC if( (dirSync & 1)!=0 ){ int fd; rc = osOpenDirectory(zPath, &fd); if( rc==SQLITE_OK ){ if( full_fsync(fd,0,0) ){ rc = unixLogError(SQLITE_IOERR_DIR_FSYNC, "fsync", zPath); } robust_close(0, fd, __LINE__); }else{ assert( rc==SQLITE_CANTOPEN ); rc = SQLITE_OK; } } #endif return rc; } /* ** Test the existence of or access permissions of file zPath. The ** test performed depends on the value of flags: ** ** SQLITE_ACCESS_EXISTS: Return 1 if the file exists ** SQLITE_ACCESS_READWRITE: Return 1 if the file is read and writable. ** SQLITE_ACCESS_READONLY: Return 1 if the file is readable. ** ** Otherwise return 0. */ static int unixAccess( sqlite3_vfs *NotUsed, /* The VFS containing this xAccess method */ const char *zPath, /* Path of the file to examine */ int flags, /* What do we want to learn about the zPath file? */ int *pResOut /* Write result boolean here */ ){ UNUSED_PARAMETER(NotUsed); SimulateIOError( return SQLITE_IOERR_ACCESS; ); assert( pResOut!=0 ); /* The spec says there are three possible values for flags. But only ** two of them are actually used */ assert( flags==SQLITE_ACCESS_EXISTS || flags==SQLITE_ACCESS_READWRITE ); if( flags==SQLITE_ACCESS_EXISTS ){ struct stat buf; *pResOut = 0==osStat(zPath, &buf) && (!S_ISREG(buf.st_mode) || buf.st_size>0); }else{ *pResOut = osAccess(zPath, W_OK|R_OK)==0; } return SQLITE_OK; } /* ** */ static int mkFullPathname( const char *zPath, /* Input path */ char *zOut, /* Output buffer */ int nOut /* Allocated size of buffer zOut */ ){ int nPath = sqlite3Strlen30(zPath); int iOff = 0; if( zPath[0]!='/' ){ if( osGetcwd(zOut, nOut-2)==0 ){ return unixLogError(SQLITE_CANTOPEN_BKPT, "getcwd", zPath); } iOff = sqlite3Strlen30(zOut); zOut[iOff++] = '/'; } if( (iOff+nPath+1)>nOut ){ /* SQLite assumes that xFullPathname() nul-terminates the output buffer ** even if it returns an error. */ zOut[iOff] = '\0'; return SQLITE_CANTOPEN_BKPT; } sqlite3_snprintf(nOut-iOff, &zOut[iOff], "%s", zPath); return SQLITE_OK; } /* ** Turn a relative pathname into a full pathname. The relative path ** is stored as a nul-terminated string in the buffer pointed to by ** zPath. ** ** zOut points to a buffer of at least sqlite3_vfs.mxPathname bytes ** (in this case, MAX_PATHNAME bytes). The full-path is written to ** this buffer before returning. */ static int unixFullPathname( sqlite3_vfs *pVfs, /* Pointer to vfs object */ const char *zPath, /* Possibly relative input path */ int nOut, /* Size of output buffer in bytes */ char *zOut /* Output buffer */ ){ #if !defined(HAVE_READLINK) || !defined(HAVE_LSTAT) return mkFullPathname(zPath, zOut, nOut); #else int rc = SQLITE_OK; int nByte; int nLink = 0; /* Number of symbolic links followed so far */ const char *zIn = zPath; /* Input path for each iteration of loop */ char *zDel = 0; assert( pVfs->mxPathname==MAX_PATHNAME ); UNUSED_PARAMETER(pVfs); /* It's odd to simulate an io-error here, but really this is just ** using the io-error infrastructure to test that SQLite handles this ** function failing. This function could fail if, for example, the ** current working directory has been unlinked. */ SimulateIOError( return SQLITE_ERROR ); do { /* Call stat() on path zIn. Set bLink to true if the path is a symbolic ** link, or false otherwise. */ int bLink = 0; struct stat buf; if( osLstat(zIn, &buf)!=0 ){ if( errno!=ENOENT ){ rc = unixLogError(SQLITE_CANTOPEN_BKPT, "lstat", zIn); } }else{ bLink = S_ISLNK(buf.st_mode); } if( bLink ){ nLink++; if( zDel==0 ){ zDel = sqlite3_malloc(nOut); if( zDel==0 ) rc = SQLITE_NOMEM_BKPT; }else if( nLink>=SQLITE_MAX_SYMLINKS ){ rc = SQLITE_CANTOPEN_BKPT; } if( rc==SQLITE_OK ){ nByte = osReadlink(zIn, zDel, nOut-1); if( nByte<0 ){ rc = unixLogError(SQLITE_CANTOPEN_BKPT, "readlink", zIn); }else{ if( zDel[0]!='/' ){ int n; for(n = sqlite3Strlen30(zIn); n>0 && zIn[n-1]!='/'; n--); if( nByte+n+1>nOut ){ rc = SQLITE_CANTOPEN_BKPT; }else{ memmove(&zDel[n], zDel, nByte+1); memcpy(zDel, zIn, n); nByte += n; } } zDel[nByte] = '\0'; } } zIn = zDel; } assert( rc!=SQLITE_OK || zIn!=zOut || zIn[0]=='/' ); if( rc==SQLITE_OK && zIn!=zOut ){ rc = mkFullPathname(zIn, zOut, nOut); } if( bLink==0 ) break; zIn = zOut; }while( rc==SQLITE_OK ); sqlite3_free(zDel); if( rc==SQLITE_OK && nLink ) rc = SQLITE_OK_SYMLINK; return rc; #endif /* HAVE_READLINK && HAVE_LSTAT */ } #ifndef SQLITE_OMIT_LOAD_EXTENSION /* ** Interfaces for opening a shared library, finding entry points ** within the shared library, and closing the shared library. */ #include static void *unixDlOpen(sqlite3_vfs *NotUsed, const char *zFilename){ UNUSED_PARAMETER(NotUsed); return dlopen(zFilename, RTLD_NOW | RTLD_GLOBAL); } /* ** SQLite calls this function immediately after a call to unixDlSym() or ** unixDlOpen() fails (returns a null pointer). If a more detailed error ** message is available, it is written to zBufOut. If no error message ** is available, zBufOut is left unmodified and SQLite uses a default ** error message. */ static void unixDlError(sqlite3_vfs *NotUsed, int nBuf, char *zBufOut){ const char *zErr; UNUSED_PARAMETER(NotUsed); unixEnterMutex(); zErr = dlerror(); if( zErr ){ sqlite3_snprintf(nBuf, zBufOut, "%s", zErr); } unixLeaveMutex(); } static void (*unixDlSym(sqlite3_vfs *NotUsed, void *p, const char*zSym))(void){ /* ** GCC with -pedantic-errors says that C90 does not allow a void* to be ** cast into a pointer to a function. And yet the library dlsym() routine ** returns a void* which is really a pointer to a function. So how do we ** use dlsym() with -pedantic-errors? ** ** Variable x below is defined to be a pointer to a function taking ** parameters void* and const char* and returning a pointer to a function. ** We initialize x by assigning it a pointer to the dlsym() function. ** (That assignment requires a cast.) Then we call the function that ** x points to. ** ** This work-around is unlikely to work correctly on any system where ** you really cannot cast a function pointer into void*. But then, on the ** other hand, dlsym() will not work on such a system either, so we have ** not really lost anything. */ void (*(*x)(void*,const char*))(void); UNUSED_PARAMETER(NotUsed); x = (void(*(*)(void*,const char*))(void))dlsym; return (*x)(p, zSym); } static void unixDlClose(sqlite3_vfs *NotUsed, void *pHandle){ UNUSED_PARAMETER(NotUsed); dlclose(pHandle); } #else /* if SQLITE_OMIT_LOAD_EXTENSION is defined: */ #define unixDlOpen 0 #define unixDlError 0 #define unixDlSym 0 #define unixDlClose 0 #endif /* ** Write nBuf bytes of random data to the supplied buffer zBuf. */ static int unixRandomness(sqlite3_vfs *NotUsed, int nBuf, char *zBuf){ UNUSED_PARAMETER(NotUsed); assert((size_t)nBuf>=(sizeof(time_t)+sizeof(int))); /* We have to initialize zBuf to prevent valgrind from reporting ** errors. The reports issued by valgrind are incorrect - we would ** prefer that the randomness be increased by making use of the ** uninitialized space in zBuf - but valgrind errors tend to worry ** some users. Rather than argue, it seems easier just to initialize ** the whole array and silence valgrind, even if that means less randomness ** in the random seed. ** ** When testing, initializing zBuf[] to zero is all we do. That means ** that we always use the same random number sequence. This makes the ** tests repeatable. */ memset(zBuf, 0, nBuf); randomnessPid = osGetpid(0); #if !defined(SQLITE_TEST) && !defined(SQLITE_OMIT_RANDOMNESS) { int fd, got; fd = robust_open("/dev/urandom", O_RDONLY, 0); if( fd<0 ){ time_t t; time(&t); memcpy(zBuf, &t, sizeof(t)); memcpy(&zBuf[sizeof(t)], &randomnessPid, sizeof(randomnessPid)); assert( sizeof(t)+sizeof(randomnessPid)<=(size_t)nBuf ); nBuf = sizeof(t) + sizeof(randomnessPid); }else{ do{ got = osRead(fd, zBuf, nBuf); }while( got<0 && errno==EINTR ); robust_close(0, fd, __LINE__); } } #endif return nBuf; } /* ** Sleep for a little while. Return the amount of time slept. ** The argument is the number of microseconds we want to sleep. ** The return value is the number of microseconds of sleep actually ** requested from the underlying operating system, a number which ** might be greater than or equal to the argument, but not less ** than the argument. */ static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){ #if OS_VXWORKS struct timespec sp; sp.tv_sec = microseconds / 1000000; sp.tv_nsec = (microseconds % 1000000) * 1000; nanosleep(&sp, NULL); UNUSED_PARAMETER(NotUsed); return microseconds; #elif defined(HAVE_USLEEP) && HAVE_USLEEP usleep(microseconds); UNUSED_PARAMETER(NotUsed); return microseconds; #else int seconds = (microseconds+999999)/1000000; sleep(seconds); UNUSED_PARAMETER(NotUsed); return seconds*1000000; #endif } /* ** The following variable, if set to a non-zero value, is interpreted as ** the number of seconds since 1970 and is used to set the result of ** sqlite3OsCurrentTime() during testing. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_current_time = 0; /* Fake system time in seconds since 1970. */ #endif /* ** Find the current time (in Universal Coordinated Time). Write into *piNow ** the current time and date as a Julian Day number times 86_400_000. In ** other words, write into *piNow the number of milliseconds since the Julian ** epoch of noon in Greenwich on November 24, 4714 B.C according to the ** proleptic Gregorian calendar. ** ** On success, return SQLITE_OK. Return SQLITE_ERROR if the time and date ** cannot be found. */ static int unixCurrentTimeInt64(sqlite3_vfs *NotUsed, sqlite3_int64 *piNow){ static const sqlite3_int64 unixEpoch = 24405875*(sqlite3_int64)8640000; int rc = SQLITE_OK; #if defined(NO_GETTOD) time_t t; time(&t); *piNow = ((sqlite3_int64)t)*1000 + unixEpoch; #elif OS_VXWORKS struct timespec sNow; clock_gettime(CLOCK_REALTIME, &sNow); *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_nsec/1000000; #else struct timeval sNow; (void)gettimeofday(&sNow, 0); /* Cannot fail given valid arguments */ *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000; #endif #ifdef SQLITE_TEST if( sqlite3_current_time ){ *piNow = 1000*(sqlite3_int64)sqlite3_current_time + unixEpoch; } #endif UNUSED_PARAMETER(NotUsed); return rc; } #ifndef SQLITE_OMIT_DEPRECATED /* ** Find the current time (in Universal Coordinated Time). Write the ** current time and date as a Julian Day number into *prNow and ** return 0. Return 1 if the time and date cannot be found. */ static int unixCurrentTime(sqlite3_vfs *NotUsed, double *prNow){ sqlite3_int64 i = 0; int rc; UNUSED_PARAMETER(NotUsed); rc = unixCurrentTimeInt64(0, &i); *prNow = i/86400000.0; return rc; } #else # define unixCurrentTime 0 #endif /* ** The xGetLastError() method is designed to return a better ** low-level error message when operating-system problems come up ** during SQLite operation. Only the integer return code is currently ** used. */ static int unixGetLastError(sqlite3_vfs *NotUsed, int NotUsed2, char *NotUsed3){ UNUSED_PARAMETER(NotUsed); UNUSED_PARAMETER(NotUsed2); UNUSED_PARAMETER(NotUsed3); return errno; } /* ************************ End of sqlite3_vfs methods *************************** ******************************************************************************/ /****************************************************************************** ************************** Begin Proxy Locking ******************************** ** ** Proxy locking is a "uber-locking-method" in this sense: It uses the ** other locking methods on secondary lock files. Proxy locking is a ** meta-layer over top of the primitive locking implemented above. For ** this reason, the division that implements of proxy locking is deferred ** until late in the file (here) after all of the other I/O methods have ** been defined - so that the primitive locking methods are available ** as services to help with the implementation of proxy locking. ** **** ** ** The default locking schemes in SQLite use byte-range locks on the ** database file to coordinate safe, concurrent access by multiple readers ** and writers [http://sqlite.org/lockingv3.html]. The five file locking ** states (UNLOCKED, PENDING, SHARED, RESERVED, EXCLUSIVE) are implemented ** as POSIX read & write locks over fixed set of locations (via fsctl), ** on AFP and SMB only exclusive byte-range locks are available via fsctl ** with _IOWR('z', 23, struct ByteRangeLockPB2) to track the same 5 states. ** To simulate a F_RDLCK on the shared range, on AFP a randomly selected ** address in the shared range is taken for a SHARED lock, the entire ** shared range is taken for an EXCLUSIVE lock): ** ** PENDING_BYTE 0x40000000 ** RESERVED_BYTE 0x40000001 ** SHARED_RANGE 0x40000002 -> 0x40000200 ** ** This works well on the local file system, but shows a nearly 100x ** slowdown in read performance on AFP because the AFP client disables ** the read cache when byte-range locks are present. Enabling the read ** cache exposes a cache coherency problem that is present on all OS X ** supported network file systems. NFS and AFP both observe the ** close-to-open semantics for ensuring cache coherency ** [http://nfs.sourceforge.net/#faq_a8], which does not effectively ** address the requirements for concurrent database access by multiple ** readers and writers ** [http://www.nabble.com/SQLite-on-NFS-cache-coherency-td15655701.html]. ** ** To address the performance and cache coherency issues, proxy file locking ** changes the way database access is controlled by limiting access to a ** single host at a time and moving file locks off of the database file ** and onto a proxy file on the local file system. ** ** ** Using proxy locks ** ----------------- ** ** C APIs ** ** sqlite3_file_control(db, dbname, SQLITE_FCNTL_SET_LOCKPROXYFILE, ** | ":auto:"); ** sqlite3_file_control(db, dbname, SQLITE_FCNTL_GET_LOCKPROXYFILE, ** &); ** ** ** SQL pragmas ** ** PRAGMA [database.]lock_proxy_file= | :auto: ** PRAGMA [database.]lock_proxy_file ** ** Specifying ":auto:" means that if there is a conch file with a matching ** host ID in it, the proxy path in the conch file will be used, otherwise ** a proxy path based on the user's temp dir ** (via confstr(_CS_DARWIN_USER_TEMP_DIR,...)) will be used and the ** actual proxy file name is generated from the name and path of the ** database file. For example: ** ** For database path "/Users/me/foo.db" ** The lock path will be "/sqliteplocks/_Users_me_foo.db:auto:") ** ** Once a lock proxy is configured for a database connection, it can not ** be removed, however it may be switched to a different proxy path via ** the above APIs (assuming the conch file is not being held by another ** connection or process). ** ** ** How proxy locking works ** ----------------------- ** ** Proxy file locking relies primarily on two new supporting files: ** ** * conch file to limit access to the database file to a single host ** at a time ** ** * proxy file to act as a proxy for the advisory locks normally ** taken on the database ** ** The conch file - to use a proxy file, sqlite must first "hold the conch" ** by taking an sqlite-style shared lock on the conch file, reading the ** contents and comparing the host's unique host ID (see below) and lock ** proxy path against the values stored in the conch. The conch file is ** stored in the same directory as the database file and the file name ** is patterned after the database file name as ".-conch". ** If the conch file does not exist, or its contents do not match the ** host ID and/or proxy path, then the lock is escalated to an exclusive ** lock and the conch file contents is updated with the host ID and proxy ** path and the lock is downgraded to a shared lock again. If the conch ** is held by another process (with a shared lock), the exclusive lock ** will fail and SQLITE_BUSY is returned. ** ** The proxy file - a single-byte file used for all advisory file locks ** normally taken on the database file. This allows for safe sharing ** of the database file for multiple readers and writers on the same ** host (the conch ensures that they all use the same local lock file). ** ** Requesting the lock proxy does not immediately take the conch, it is ** only taken when the first request to lock database file is made. ** This matches the semantics of the traditional locking behavior, where ** opening a connection to a database file does not take a lock on it. ** The shared lock and an open file descriptor are maintained until ** the connection to the database is closed. ** ** The proxy file and the lock file are never deleted so they only need ** to be created the first time they are used. ** ** Configuration options ** --------------------- ** ** SQLITE_PREFER_PROXY_LOCKING ** ** Database files accessed on non-local file systems are ** automatically configured for proxy locking, lock files are ** named automatically using the same logic as ** PRAGMA lock_proxy_file=":auto:" ** ** SQLITE_PROXY_DEBUG ** ** Enables the logging of error messages during host id file ** retrieval and creation ** ** LOCKPROXYDIR ** ** Overrides the default directory used for lock proxy files that ** are named automatically via the ":auto:" setting ** ** SQLITE_DEFAULT_PROXYDIR_PERMISSIONS ** ** Permissions to use when creating a directory for storing the ** lock proxy files, only used when LOCKPROXYDIR is not set. ** ** ** As mentioned above, when compiled with SQLITE_PREFER_PROXY_LOCKING, ** setting the environment variable SQLITE_FORCE_PROXY_LOCKING to 1 will ** force proxy locking to be used for every database file opened, and 0 ** will force automatic proxy locking to be disabled for all database ** files (explicitly calling the SQLITE_FCNTL_SET_LOCKPROXYFILE pragma or ** sqlite_file_control API is not affected by SQLITE_FORCE_PROXY_LOCKING). */ /* ** Proxy locking is only available on MacOSX */ #if defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE /* ** The proxyLockingContext has the path and file structures for the remote ** and local proxy files in it */ typedef struct proxyLockingContext proxyLockingContext; struct proxyLockingContext { unixFile *conchFile; /* Open conch file */ char *conchFilePath; /* Name of the conch file */ unixFile *lockProxy; /* Open proxy lock file */ char *lockProxyPath; /* Name of the proxy lock file */ char *dbPath; /* Name of the open file */ int conchHeld; /* 1 if the conch is held, -1 if lockless */ int nFails; /* Number of conch taking failures */ void *oldLockingContext; /* Original lockingcontext to restore on close */ sqlite3_io_methods const *pOldMethod; /* Original I/O methods for close */ }; /* ** The proxy lock file path for the database at dbPath is written into lPath, ** which must point to valid, writable memory large enough for a maxLen length ** file path. */ static int proxyGetLockPath(const char *dbPath, char *lPath, size_t maxLen){ int len; int dbLen; int i; #ifdef LOCKPROXYDIR len = strlcpy(lPath, LOCKPROXYDIR, maxLen); #else # ifdef _CS_DARWIN_USER_TEMP_DIR { if( !confstr(_CS_DARWIN_USER_TEMP_DIR, lPath, maxLen) ){ OSTRACE(("GETLOCKPATH failed %s errno=%d pid=%d\n", lPath, errno, osGetpid(0))); return SQLITE_IOERR_LOCK; } len = strlcat(lPath, "sqliteplocks", maxLen); } # else len = strlcpy(lPath, "/tmp/", maxLen); # endif #endif if( lPath[len-1]!='/' ){ len = strlcat(lPath, "/", maxLen); } /* transform the db path to a unique cache name */ dbLen = (int)strlen(dbPath); for( i=0; i 0) ){ /* only mkdir if leaf dir != "." or "/" or ".." */ if( i-start>2 || (i-start==1 && buf[start] != '.' && buf[start] != '/') || (i-start==2 && buf[start] != '.' && buf[start+1] != '.') ){ buf[i]='\0'; if( osMkdir(buf, SQLITE_DEFAULT_PROXYDIR_PERMISSIONS) ){ int err=errno; if( err!=EEXIST ) { OSTRACE(("CREATELOCKPATH FAILED creating %s, " "'%s' proxy lock path=%s pid=%d\n", buf, strerror(err), lockPath, osGetpid(0))); return err; } } } start=i+1; } buf[i] = lockPath[i]; } OSTRACE(("CREATELOCKPATH proxy lock path=%s pid=%d\n",lockPath,osGetpid(0))); return 0; } /* ** Create a new VFS file descriptor (stored in memory obtained from ** sqlite3_malloc) and open the file named "path" in the file descriptor. ** ** The caller is responsible not only for closing the file descriptor ** but also for freeing the memory associated with the file descriptor. */ static int proxyCreateUnixFile( const char *path, /* path for the new unixFile */ unixFile **ppFile, /* unixFile created and returned by ref */ int islockfile /* if non zero missing dirs will be created */ ) { int fd = -1; unixFile *pNew; int rc = SQLITE_OK; int openFlags = O_RDWR | O_CREAT | O_NOFOLLOW; sqlite3_vfs dummyVfs; int terrno = 0; UnixUnusedFd *pUnused = NULL; /* 1. first try to open/create the file ** 2. if that fails, and this is a lock file (not-conch), try creating ** the parent directories and then try again. ** 3. if that fails, try to open the file read-only ** otherwise return BUSY (if lock file) or CANTOPEN for the conch file */ pUnused = findReusableFd(path, openFlags); if( pUnused ){ fd = pUnused->fd; }else{ pUnused = sqlite3_malloc64(sizeof(*pUnused)); if( !pUnused ){ return SQLITE_NOMEM_BKPT; } } if( fd<0 ){ fd = robust_open(path, openFlags, 0); terrno = errno; if( fd<0 && errno==ENOENT && islockfile ){ if( proxyCreateLockPath(path) == SQLITE_OK ){ fd = robust_open(path, openFlags, 0); } } } if( fd<0 ){ openFlags = O_RDONLY | O_NOFOLLOW; fd = robust_open(path, openFlags, 0); terrno = errno; } if( fd<0 ){ if( islockfile ){ return SQLITE_BUSY; } switch (terrno) { case EACCES: return SQLITE_PERM; case EIO: return SQLITE_IOERR_LOCK; /* even though it is the conch */ default: return SQLITE_CANTOPEN_BKPT; } } pNew = (unixFile *)sqlite3_malloc64(sizeof(*pNew)); if( pNew==NULL ){ rc = SQLITE_NOMEM_BKPT; goto end_create_proxy; } memset(pNew, 0, sizeof(unixFile)); pNew->openFlags = openFlags; memset(&dummyVfs, 0, sizeof(dummyVfs)); dummyVfs.pAppData = (void*)&autolockIoFinder; dummyVfs.zName = "dummy"; pUnused->fd = fd; pUnused->flags = openFlags; pNew->pPreallocatedUnused = pUnused; rc = fillInUnixFile(&dummyVfs, fd, (sqlite3_file*)pNew, path, 0); if( rc==SQLITE_OK ){ *ppFile = pNew; return SQLITE_OK; } end_create_proxy: robust_close(pNew, fd, __LINE__); sqlite3_free(pNew); sqlite3_free(pUnused); return rc; } #ifdef SQLITE_TEST /* simulate multiple hosts by creating unique hostid file paths */ SQLITE_API int sqlite3_hostid_num = 0; #endif #define PROXY_HOSTIDLEN 16 /* conch file host id length */ #if HAVE_GETHOSTUUID /* Not always defined in the headers as it ought to be */ extern int gethostuuid(uuid_t id, const struct timespec *wait); #endif /* get the host ID via gethostuuid(), pHostID must point to PROXY_HOSTIDLEN ** bytes of writable memory. */ static int proxyGetHostID(unsigned char *pHostID, int *pError){ assert(PROXY_HOSTIDLEN == sizeof(uuid_t)); memset(pHostID, 0, PROXY_HOSTIDLEN); #if HAVE_GETHOSTUUID { struct timespec timeout = {1, 0}; /* 1 sec timeout */ if( gethostuuid(pHostID, &timeout) ){ int err = errno; if( pError ){ *pError = err; } return SQLITE_IOERR; } } #else UNUSED_PARAMETER(pError); #endif #ifdef SQLITE_TEST /* simulate multiple hosts by creating unique hostid file paths */ if( sqlite3_hostid_num != 0){ pHostID[0] = (char)(pHostID[0] + (char)(sqlite3_hostid_num & 0xFF)); } #endif return SQLITE_OK; } /* The conch file contains the header, host id and lock file path */ #define PROXY_CONCHVERSION 2 /* 1-byte header, 16-byte host id, path */ #define PROXY_HEADERLEN 1 /* conch file header length */ #define PROXY_PATHINDEX (PROXY_HEADERLEN+PROXY_HOSTIDLEN) #define PROXY_MAXCONCHLEN (PROXY_HEADERLEN+PROXY_HOSTIDLEN+MAXPATHLEN) /* ** Takes an open conch file, copies the contents to a new path and then moves ** it back. The newly created file's file descriptor is assigned to the ** conch file structure and finally the original conch file descriptor is ** closed. Returns zero if successful. */ static int proxyBreakConchLock(unixFile *pFile, uuid_t myHostID){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; unixFile *conchFile = pCtx->conchFile; char tPath[MAXPATHLEN]; char buf[PROXY_MAXCONCHLEN]; char *cPath = pCtx->conchFilePath; size_t readLen = 0; size_t pathLen = 0; char errmsg[64] = ""; int fd = -1; int rc = -1; UNUSED_PARAMETER(myHostID); /* create a new path by replace the trailing '-conch' with '-break' */ pathLen = strlcpy(tPath, cPath, MAXPATHLEN); if( pathLen>MAXPATHLEN || pathLen<6 || (strlcpy(&tPath[pathLen-5], "break", 6) != 5) ){ sqlite3_snprintf(sizeof(errmsg),errmsg,"path error (len %d)",(int)pathLen); goto end_breaklock; } /* read the conch content */ readLen = osPread(conchFile->h, buf, PROXY_MAXCONCHLEN, 0); if( readLenh, __LINE__); conchFile->h = fd; conchFile->openFlags = O_RDWR | O_CREAT; end_breaklock: if( rc ){ if( fd>=0 ){ osUnlink(tPath); robust_close(pFile, fd, __LINE__); } fprintf(stderr, "failed to break stale lock on %s, %s\n", cPath, errmsg); } return rc; } /* Take the requested lock on the conch file and break a stale lock if the ** host id matches. */ static int proxyConchLock(unixFile *pFile, uuid_t myHostID, int lockType){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; unixFile *conchFile = pCtx->conchFile; int rc = SQLITE_OK; int nTries = 0; struct timespec conchModTime; memset(&conchModTime, 0, sizeof(conchModTime)); do { rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType); nTries ++; if( rc==SQLITE_BUSY ){ /* If the lock failed (busy): * 1st try: get the mod time of the conch, wait 0.5s and try again. * 2nd try: fail if the mod time changed or host id is different, wait * 10 sec and try again * 3rd try: break the lock unless the mod time has changed. */ struct stat buf; if( osFstat(conchFile->h, &buf) ){ storeLastErrno(pFile, errno); return SQLITE_IOERR_LOCK; } if( nTries==1 ){ conchModTime = buf.st_mtimespec; usleep(500000); /* wait 0.5 sec and try the lock again*/ continue; } assert( nTries>1 ); if( conchModTime.tv_sec != buf.st_mtimespec.tv_sec || conchModTime.tv_nsec != buf.st_mtimespec.tv_nsec ){ return SQLITE_BUSY; } if( nTries==2 ){ char tBuf[PROXY_MAXCONCHLEN]; int len = osPread(conchFile->h, tBuf, PROXY_MAXCONCHLEN, 0); if( len<0 ){ storeLastErrno(pFile, errno); return SQLITE_IOERR_LOCK; } if( len>PROXY_PATHINDEX && tBuf[0]==(char)PROXY_CONCHVERSION){ /* don't break the lock if the host id doesn't match */ if( 0!=memcmp(&tBuf[PROXY_HEADERLEN], myHostID, PROXY_HOSTIDLEN) ){ return SQLITE_BUSY; } }else{ /* don't break the lock on short read or a version mismatch */ return SQLITE_BUSY; } usleep(10000000); /* wait 10 sec and try the lock again */ continue; } assert( nTries==3 ); if( 0==proxyBreakConchLock(pFile, myHostID) ){ rc = SQLITE_OK; if( lockType==EXCLUSIVE_LOCK ){ rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, SHARED_LOCK); } if( !rc ){ rc = conchFile->pMethod->xLock((sqlite3_file*)conchFile, lockType); } } } } while( rc==SQLITE_BUSY && nTries<3 ); return rc; } /* Takes the conch by taking a shared lock and read the contents conch, if ** lockPath is non-NULL, the host ID and lock file path must match. A NULL ** lockPath means that the lockPath in the conch file will be used if the ** host IDs match, or a new lock path will be generated automatically ** and written to the conch file. */ static int proxyTakeConch(unixFile *pFile){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; if( pCtx->conchHeld!=0 ){ return SQLITE_OK; }else{ unixFile *conchFile = pCtx->conchFile; uuid_t myHostID; int pError = 0; char readBuf[PROXY_MAXCONCHLEN]; char lockPath[MAXPATHLEN]; char *tempLockPath = NULL; int rc = SQLITE_OK; int createConch = 0; int hostIdMatch = 0; int readLen = 0; int tryOldLockPath = 0; int forceNewLockPath = 0; OSTRACE(("TAKECONCH %d for %s pid=%d\n", conchFile->h, (pCtx->lockProxyPath ? pCtx->lockProxyPath : ":auto:"), osGetpid(0))); rc = proxyGetHostID(myHostID, &pError); if( (rc&0xff)==SQLITE_IOERR ){ storeLastErrno(pFile, pError); goto end_takeconch; } rc = proxyConchLock(pFile, myHostID, SHARED_LOCK); if( rc!=SQLITE_OK ){ goto end_takeconch; } /* read the existing conch file */ readLen = seekAndRead((unixFile*)conchFile, 0, readBuf, PROXY_MAXCONCHLEN); if( readLen<0 ){ /* I/O error: lastErrno set by seekAndRead */ storeLastErrno(pFile, conchFile->lastErrno); rc = SQLITE_IOERR_READ; goto end_takeconch; }else if( readLen<=(PROXY_HEADERLEN+PROXY_HOSTIDLEN) || readBuf[0]!=(char)PROXY_CONCHVERSION ){ /* a short read or version format mismatch means we need to create a new ** conch file. */ createConch = 1; } /* if the host id matches and the lock path already exists in the conch ** we'll try to use the path there, if we can't open that path, we'll ** retry with a new auto-generated path */ do { /* in case we need to try again for an :auto: named lock file */ if( !createConch && !forceNewLockPath ){ hostIdMatch = !memcmp(&readBuf[PROXY_HEADERLEN], myHostID, PROXY_HOSTIDLEN); /* if the conch has data compare the contents */ if( !pCtx->lockProxyPath ){ /* for auto-named local lock file, just check the host ID and we'll ** use the local lock file path that's already in there */ if( hostIdMatch ){ size_t pathLen = (readLen - PROXY_PATHINDEX); if( pathLen>=MAXPATHLEN ){ pathLen=MAXPATHLEN-1; } memcpy(lockPath, &readBuf[PROXY_PATHINDEX], pathLen); lockPath[pathLen] = 0; tempLockPath = lockPath; tryOldLockPath = 1; /* create a copy of the lock path if the conch is taken */ goto end_takeconch; } }else if( hostIdMatch && !strncmp(pCtx->lockProxyPath, &readBuf[PROXY_PATHINDEX], readLen-PROXY_PATHINDEX) ){ /* conch host and lock path match */ goto end_takeconch; } } /* if the conch isn't writable and doesn't match, we can't take it */ if( (conchFile->openFlags&O_RDWR) == 0 ){ rc = SQLITE_BUSY; goto end_takeconch; } /* either the conch didn't match or we need to create a new one */ if( !pCtx->lockProxyPath ){ proxyGetLockPath(pCtx->dbPath, lockPath, MAXPATHLEN); tempLockPath = lockPath; /* create a copy of the lock path _only_ if the conch is taken */ } /* update conch with host and path (this will fail if other process ** has a shared lock already), if the host id matches, use the big ** stick. */ futimes(conchFile->h, NULL); if( hostIdMatch && !createConch ){ if( conchFile->pInode && conchFile->pInode->nShared>1 ){ /* We are trying for an exclusive lock but another thread in this ** same process is still holding a shared lock. */ rc = SQLITE_BUSY; } else { rc = proxyConchLock(pFile, myHostID, EXCLUSIVE_LOCK); } }else{ rc = proxyConchLock(pFile, myHostID, EXCLUSIVE_LOCK); } if( rc==SQLITE_OK ){ char writeBuffer[PROXY_MAXCONCHLEN]; int writeSize = 0; writeBuffer[0] = (char)PROXY_CONCHVERSION; memcpy(&writeBuffer[PROXY_HEADERLEN], myHostID, PROXY_HOSTIDLEN); if( pCtx->lockProxyPath!=NULL ){ strlcpy(&writeBuffer[PROXY_PATHINDEX], pCtx->lockProxyPath, MAXPATHLEN); }else{ strlcpy(&writeBuffer[PROXY_PATHINDEX], tempLockPath, MAXPATHLEN); } writeSize = PROXY_PATHINDEX + strlen(&writeBuffer[PROXY_PATHINDEX]); robust_ftruncate(conchFile->h, writeSize); rc = unixWrite((sqlite3_file *)conchFile, writeBuffer, writeSize, 0); full_fsync(conchFile->h,0,0); /* If we created a new conch file (not just updated the contents of a ** valid conch file), try to match the permissions of the database */ if( rc==SQLITE_OK && createConch ){ struct stat buf; int err = osFstat(pFile->h, &buf); if( err==0 ){ mode_t cmode = buf.st_mode&(S_IRUSR|S_IWUSR | S_IRGRP|S_IWGRP | S_IROTH|S_IWOTH); /* try to match the database file R/W permissions, ignore failure */ #ifndef SQLITE_PROXY_DEBUG osFchmod(conchFile->h, cmode); #else do{ rc = osFchmod(conchFile->h, cmode); }while( rc==(-1) && errno==EINTR ); if( rc!=0 ){ int code = errno; fprintf(stderr, "fchmod %o FAILED with %d %s\n", cmode, code, strerror(code)); } else { fprintf(stderr, "fchmod %o SUCCEDED\n",cmode); } }else{ int code = errno; fprintf(stderr, "STAT FAILED[%d] with %d %s\n", err, code, strerror(code)); #endif } } } conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, SHARED_LOCK); end_takeconch: OSTRACE(("TRANSPROXY: CLOSE %d\n", pFile->h)); if( rc==SQLITE_OK && pFile->openFlags ){ int fd; if( pFile->h>=0 ){ robust_close(pFile, pFile->h, __LINE__); } pFile->h = -1; fd = robust_open(pCtx->dbPath, pFile->openFlags, 0); OSTRACE(("TRANSPROXY: OPEN %d\n", fd)); if( fd>=0 ){ pFile->h = fd; }else{ rc=SQLITE_CANTOPEN_BKPT; /* SQLITE_BUSY? proxyTakeConch called during locking */ } } if( rc==SQLITE_OK && !pCtx->lockProxy ){ char *path = tempLockPath ? tempLockPath : pCtx->lockProxyPath; rc = proxyCreateUnixFile(path, &pCtx->lockProxy, 1); if( rc!=SQLITE_OK && rc!=SQLITE_NOMEM && tryOldLockPath ){ /* we couldn't create the proxy lock file with the old lock file path ** so try again via auto-naming */ forceNewLockPath = 1; tryOldLockPath = 0; continue; /* go back to the do {} while start point, try again */ } } if( rc==SQLITE_OK ){ /* Need to make a copy of path if we extracted the value ** from the conch file or the path was allocated on the stack */ if( tempLockPath ){ pCtx->lockProxyPath = sqlite3DbStrDup(0, tempLockPath); if( !pCtx->lockProxyPath ){ rc = SQLITE_NOMEM_BKPT; } } } if( rc==SQLITE_OK ){ pCtx->conchHeld = 1; if( pCtx->lockProxy->pMethod == &afpIoMethods ){ afpLockingContext *afpCtx; afpCtx = (afpLockingContext *)pCtx->lockProxy->lockingContext; afpCtx->dbPath = pCtx->lockProxyPath; } } else { conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK); } OSTRACE(("TAKECONCH %d %s\n", conchFile->h, rc==SQLITE_OK?"ok":"failed")); return rc; } while (1); /* in case we need to retry the :auto: lock file - ** we should never get here except via the 'continue' call. */ } } /* ** If pFile holds a lock on a conch file, then release that lock. */ static int proxyReleaseConch(unixFile *pFile){ int rc = SQLITE_OK; /* Subroutine return code */ proxyLockingContext *pCtx; /* The locking context for the proxy lock */ unixFile *conchFile; /* Name of the conch file */ pCtx = (proxyLockingContext *)pFile->lockingContext; conchFile = pCtx->conchFile; OSTRACE(("RELEASECONCH %d for %s pid=%d\n", conchFile->h, (pCtx->lockProxyPath ? pCtx->lockProxyPath : ":auto:"), osGetpid(0))); if( pCtx->conchHeld>0 ){ rc = conchFile->pMethod->xUnlock((sqlite3_file*)conchFile, NO_LOCK); } pCtx->conchHeld = 0; OSTRACE(("RELEASECONCH %d %s\n", conchFile->h, (rc==SQLITE_OK ? "ok" : "failed"))); return rc; } /* ** Given the name of a database file, compute the name of its conch file. ** Store the conch filename in memory obtained from sqlite3_malloc64(). ** Make *pConchPath point to the new name. Return SQLITE_OK on success ** or SQLITE_NOMEM if unable to obtain memory. ** ** The caller is responsible for ensuring that the allocated memory ** space is eventually freed. ** ** *pConchPath is set to NULL if a memory allocation error occurs. */ static int proxyCreateConchPathname(char *dbPath, char **pConchPath){ int i; /* Loop counter */ int len = (int)strlen(dbPath); /* Length of database filename - dbPath */ char *conchPath; /* buffer in which to construct conch name */ /* Allocate space for the conch filename and initialize the name to ** the name of the original database file. */ *pConchPath = conchPath = (char *)sqlite3_malloc64(len + 8); if( conchPath==0 ){ return SQLITE_NOMEM_BKPT; } memcpy(conchPath, dbPath, len+1); /* now insert a "." before the last / character */ for( i=(len-1); i>=0; i-- ){ if( conchPath[i]=='/' ){ i++; break; } } conchPath[i]='.'; while ( ilockingContext; char *oldPath = pCtx->lockProxyPath; int rc = SQLITE_OK; if( pFile->eFileLock!=NO_LOCK ){ return SQLITE_BUSY; } /* nothing to do if the path is NULL, :auto: or matches the existing path */ if( !path || path[0]=='\0' || !strcmp(path, ":auto:") || (oldPath && !strncmp(oldPath, path, MAXPATHLEN)) ){ return SQLITE_OK; }else{ unixFile *lockProxy = pCtx->lockProxy; pCtx->lockProxy=NULL; pCtx->conchHeld = 0; if( lockProxy!=NULL ){ rc=lockProxy->pMethod->xClose((sqlite3_file *)lockProxy); if( rc ) return rc; sqlite3_free(lockProxy); } sqlite3_free(oldPath); pCtx->lockProxyPath = sqlite3DbStrDup(0, path); } return rc; } /* ** pFile is a file that has been opened by a prior xOpen call. dbPath ** is a string buffer at least MAXPATHLEN+1 characters in size. ** ** This routine find the filename associated with pFile and writes it ** int dbPath. */ static int proxyGetDbPathForUnixFile(unixFile *pFile, char *dbPath){ #if defined(__APPLE__) if( pFile->pMethod == &afpIoMethods ){ /* afp style keeps a reference to the db path in the filePath field ** of the struct */ assert( (int)strlen((char*)pFile->lockingContext)<=MAXPATHLEN ); strlcpy(dbPath, ((afpLockingContext *)pFile->lockingContext)->dbPath, MAXPATHLEN); } else #endif if( pFile->pMethod == &dotlockIoMethods ){ /* dot lock style uses the locking context to store the dot lock ** file path */ int len = strlen((char *)pFile->lockingContext) - strlen(DOTLOCK_SUFFIX); memcpy(dbPath, (char *)pFile->lockingContext, len + 1); }else{ /* all other styles use the locking context to store the db file path */ assert( strlen((char*)pFile->lockingContext)<=MAXPATHLEN ); strlcpy(dbPath, (char *)pFile->lockingContext, MAXPATHLEN); } return SQLITE_OK; } /* ** Takes an already filled in unix file and alters it so all file locking ** will be performed on the local proxy lock file. The following fields ** are preserved in the locking context so that they can be restored and ** the unix structure properly cleaned up at close time: ** ->lockingContext ** ->pMethod */ static int proxyTransformUnixFile(unixFile *pFile, const char *path) { proxyLockingContext *pCtx; char dbPath[MAXPATHLEN+1]; /* Name of the database file */ char *lockPath=NULL; int rc = SQLITE_OK; if( pFile->eFileLock!=NO_LOCK ){ return SQLITE_BUSY; } proxyGetDbPathForUnixFile(pFile, dbPath); if( !path || path[0]=='\0' || !strcmp(path, ":auto:") ){ lockPath=NULL; }else{ lockPath=(char *)path; } OSTRACE(("TRANSPROXY %d for %s pid=%d\n", pFile->h, (lockPath ? lockPath : ":auto:"), osGetpid(0))); pCtx = sqlite3_malloc64( sizeof(*pCtx) ); if( pCtx==0 ){ return SQLITE_NOMEM_BKPT; } memset(pCtx, 0, sizeof(*pCtx)); rc = proxyCreateConchPathname(dbPath, &pCtx->conchFilePath); if( rc==SQLITE_OK ){ rc = proxyCreateUnixFile(pCtx->conchFilePath, &pCtx->conchFile, 0); if( rc==SQLITE_CANTOPEN && ((pFile->openFlags&O_RDWR) == 0) ){ /* if (a) the open flags are not O_RDWR, (b) the conch isn't there, and ** (c) the file system is read-only, then enable no-locking access. ** Ugh, since O_RDONLY==0x0000 we test for !O_RDWR since unixOpen asserts ** that openFlags will have only one of O_RDONLY or O_RDWR. */ struct statfs fsInfo; struct stat conchInfo; int goLockless = 0; if( osStat(pCtx->conchFilePath, &conchInfo) == -1 ) { int err = errno; if( (err==ENOENT) && (statfs(dbPath, &fsInfo) != -1) ){ goLockless = (fsInfo.f_flags&MNT_RDONLY) == MNT_RDONLY; } } if( goLockless ){ pCtx->conchHeld = -1; /* read only FS/ lockless */ rc = SQLITE_OK; } } } if( rc==SQLITE_OK && lockPath ){ pCtx->lockProxyPath = sqlite3DbStrDup(0, lockPath); } if( rc==SQLITE_OK ){ pCtx->dbPath = sqlite3DbStrDup(0, dbPath); if( pCtx->dbPath==NULL ){ rc = SQLITE_NOMEM_BKPT; } } if( rc==SQLITE_OK ){ /* all memory is allocated, proxys are created and assigned, ** switch the locking context and pMethod then return. */ pCtx->oldLockingContext = pFile->lockingContext; pFile->lockingContext = pCtx; pCtx->pOldMethod = pFile->pMethod; pFile->pMethod = &proxyIoMethods; }else{ if( pCtx->conchFile ){ pCtx->conchFile->pMethod->xClose((sqlite3_file *)pCtx->conchFile); sqlite3_free(pCtx->conchFile); } sqlite3DbFree(0, pCtx->lockProxyPath); sqlite3_free(pCtx->conchFilePath); sqlite3_free(pCtx); } OSTRACE(("TRANSPROXY %d %s\n", pFile->h, (rc==SQLITE_OK ? "ok" : "failed"))); return rc; } /* ** This routine handles sqlite3_file_control() calls that are specific ** to proxy locking. */ static int proxyFileControl(sqlite3_file *id, int op, void *pArg){ switch( op ){ case SQLITE_FCNTL_GET_LOCKPROXYFILE: { unixFile *pFile = (unixFile*)id; if( pFile->pMethod == &proxyIoMethods ){ proxyLockingContext *pCtx = (proxyLockingContext*)pFile->lockingContext; proxyTakeConch(pFile); if( pCtx->lockProxyPath ){ *(const char **)pArg = pCtx->lockProxyPath; }else{ *(const char **)pArg = ":auto: (not held)"; } } else { *(const char **)pArg = NULL; } return SQLITE_OK; } case SQLITE_FCNTL_SET_LOCKPROXYFILE: { unixFile *pFile = (unixFile*)id; int rc = SQLITE_OK; int isProxyStyle = (pFile->pMethod == &proxyIoMethods); if( pArg==NULL || (const char *)pArg==0 ){ if( isProxyStyle ){ /* turn off proxy locking - not supported. If support is added for ** switching proxy locking mode off then it will need to fail if ** the journal mode is WAL mode. */ rc = SQLITE_ERROR /*SQLITE_PROTOCOL? SQLITE_MISUSE?*/; }else{ /* turn off proxy locking - already off - NOOP */ rc = SQLITE_OK; } }else{ const char *proxyPath = (const char *)pArg; if( isProxyStyle ){ proxyLockingContext *pCtx = (proxyLockingContext*)pFile->lockingContext; if( !strcmp(pArg, ":auto:") || (pCtx->lockProxyPath && !strncmp(pCtx->lockProxyPath, proxyPath, MAXPATHLEN)) ){ rc = SQLITE_OK; }else{ rc = switchLockProxyPath(pFile, proxyPath); } }else{ /* turn on proxy file locking */ rc = proxyTransformUnixFile(pFile, proxyPath); } } return rc; } default: { assert( 0 ); /* The call assures that only valid opcodes are sent */ } } /*NOTREACHED*/ assert(0); return SQLITE_ERROR; } /* ** Within this division (the proxying locking implementation) the procedures ** above this point are all utilities. The lock-related methods of the ** proxy-locking sqlite3_io_method object follow. */ /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, set *pResOut ** to a non-zero value otherwise *pResOut is set to zero. The return value ** is set to SQLITE_OK unless an I/O error occurs during lock checking. */ static int proxyCheckReservedLock(sqlite3_file *id, int *pResOut) { unixFile *pFile = (unixFile*)id; int rc = proxyTakeConch(pFile); if( rc==SQLITE_OK ){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; if( pCtx->conchHeld>0 ){ unixFile *proxy = pCtx->lockProxy; return proxy->pMethod->xCheckReservedLock((sqlite3_file*)proxy, pResOut); }else{ /* conchHeld < 0 is lockless */ pResOut=0; } } return rc; } /* ** Lock the file with the lock specified by parameter eFileLock - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** This routine will only increase a lock. Use the sqlite3OsUnlock() ** routine to lower a locking level. */ static int proxyLock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; int rc = proxyTakeConch(pFile); if( rc==SQLITE_OK ){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; if( pCtx->conchHeld>0 ){ unixFile *proxy = pCtx->lockProxy; rc = proxy->pMethod->xLock((sqlite3_file*)proxy, eFileLock); pFile->eFileLock = proxy->eFileLock; }else{ /* conchHeld < 0 is lockless */ } } return rc; } /* ** Lower the locking level on file descriptor pFile to eFileLock. eFileLock ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. */ static int proxyUnlock(sqlite3_file *id, int eFileLock) { unixFile *pFile = (unixFile*)id; int rc = proxyTakeConch(pFile); if( rc==SQLITE_OK ){ proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; if( pCtx->conchHeld>0 ){ unixFile *proxy = pCtx->lockProxy; rc = proxy->pMethod->xUnlock((sqlite3_file*)proxy, eFileLock); pFile->eFileLock = proxy->eFileLock; }else{ /* conchHeld < 0 is lockless */ } } return rc; } /* ** Close a file that uses proxy locks. */ static int proxyClose(sqlite3_file *id) { if( ALWAYS(id) ){ unixFile *pFile = (unixFile*)id; proxyLockingContext *pCtx = (proxyLockingContext *)pFile->lockingContext; unixFile *lockProxy = pCtx->lockProxy; unixFile *conchFile = pCtx->conchFile; int rc = SQLITE_OK; if( lockProxy ){ rc = lockProxy->pMethod->xUnlock((sqlite3_file*)lockProxy, NO_LOCK); if( rc ) return rc; rc = lockProxy->pMethod->xClose((sqlite3_file*)lockProxy); if( rc ) return rc; sqlite3_free(lockProxy); pCtx->lockProxy = 0; } if( conchFile ){ if( pCtx->conchHeld ){ rc = proxyReleaseConch(pFile); if( rc ) return rc; } rc = conchFile->pMethod->xClose((sqlite3_file*)conchFile); if( rc ) return rc; sqlite3_free(conchFile); } sqlite3DbFree(0, pCtx->lockProxyPath); sqlite3_free(pCtx->conchFilePath); sqlite3DbFree(0, pCtx->dbPath); /* restore the original locking context and pMethod then close it */ pFile->lockingContext = pCtx->oldLockingContext; pFile->pMethod = pCtx->pOldMethod; sqlite3_free(pCtx); return pFile->pMethod->xClose(id); } return SQLITE_OK; } #endif /* defined(__APPLE__) && SQLITE_ENABLE_LOCKING_STYLE */ /* ** The proxy locking style is intended for use with AFP filesystems. ** And since AFP is only supported on MacOSX, the proxy locking is also ** restricted to MacOSX. ** ** ******************* End of the proxy lock implementation ********************** ******************************************************************************/ /* ** Initialize the operating system interface. ** ** This routine registers all VFS implementations for unix-like operating ** systems. This routine, and the sqlite3_os_end() routine that follows, ** should be the only routines in this file that are visible from other ** files. ** ** This routine is called once during SQLite initialization and by a ** single thread. The memory allocation and mutex subsystems have not ** necessarily been initialized when this routine is called, and so they ** should not be used. */ SQLITE_API int sqlite3_os_init(void){ /* ** The following macro defines an initializer for an sqlite3_vfs object. ** The name of the VFS is NAME. The pAppData is a pointer to a pointer ** to the "finder" function. (pAppData is a pointer to a pointer because ** silly C90 rules prohibit a void* from being cast to a function pointer ** and so we have to go through the intermediate pointer to avoid problems ** when compiling with -pedantic-errors on GCC.) ** ** The FINDER parameter to this macro is the name of the pointer to the ** finder-function. The finder-function returns a pointer to the ** sqlite_io_methods object that implements the desired locking ** behaviors. See the division above that contains the IOMETHODS ** macro for addition information on finder-functions. ** ** Most finders simply return a pointer to a fixed sqlite3_io_methods ** object. But the "autolockIoFinder" available on MacOSX does a little ** more than that; it looks at the filesystem type that hosts the ** database file and tries to choose an locking method appropriate for ** that filesystem time. */ #define UNIXVFS(VFSNAME, FINDER) { \ 3, /* iVersion */ \ sizeof(unixFile), /* szOsFile */ \ MAX_PATHNAME, /* mxPathname */ \ 0, /* pNext */ \ VFSNAME, /* zName */ \ (void*)&FINDER, /* pAppData */ \ unixOpen, /* xOpen */ \ unixDelete, /* xDelete */ \ unixAccess, /* xAccess */ \ unixFullPathname, /* xFullPathname */ \ unixDlOpen, /* xDlOpen */ \ unixDlError, /* xDlError */ \ unixDlSym, /* xDlSym */ \ unixDlClose, /* xDlClose */ \ unixRandomness, /* xRandomness */ \ unixSleep, /* xSleep */ \ unixCurrentTime, /* xCurrentTime */ \ unixGetLastError, /* xGetLastError */ \ unixCurrentTimeInt64, /* xCurrentTimeInt64 */ \ unixSetSystemCall, /* xSetSystemCall */ \ unixGetSystemCall, /* xGetSystemCall */ \ unixNextSystemCall, /* xNextSystemCall */ \ } /* ** All default VFSes for unix are contained in the following array. ** ** Note that the sqlite3_vfs.pNext field of the VFS object is modified ** by the SQLite core when the VFS is registered. So the following ** array cannot be const. */ static sqlite3_vfs aVfs[] = { #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) UNIXVFS("unix", autolockIoFinder ), #elif OS_VXWORKS UNIXVFS("unix", vxworksIoFinder ), #else UNIXVFS("unix", posixIoFinder ), #endif UNIXVFS("unix-none", nolockIoFinder ), UNIXVFS("unix-dotfile", dotlockIoFinder ), UNIXVFS("unix-excl", posixIoFinder ), #if OS_VXWORKS UNIXVFS("unix-namedsem", semIoFinder ), #endif #if SQLITE_ENABLE_LOCKING_STYLE || OS_VXWORKS UNIXVFS("unix-posix", posixIoFinder ), #endif #if SQLITE_ENABLE_LOCKING_STYLE UNIXVFS("unix-flock", flockIoFinder ), #endif #if SQLITE_ENABLE_LOCKING_STYLE && defined(__APPLE__) UNIXVFS("unix-afp", afpIoFinder ), UNIXVFS("unix-nfs", nfsIoFinder ), UNIXVFS("unix-proxy", proxyIoFinder ), #endif }; unsigned int i; /* Loop counter */ /* Double-check that the aSyscall[] array has been constructed ** correctly. See ticket [bb3a86e890c8e96ab] */ assert( ArraySize(aSyscall)==29 ); /* Register all VFSes defined in the aVfs[] array */ for(i=0; i<(sizeof(aVfs)/sizeof(sqlite3_vfs)); i++){ sqlite3_vfs_register(&aVfs[i], i==0); } unixBigLock = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_VFS1); return SQLITE_OK; } /* ** Shutdown the operating system interface. ** ** Some operating systems might need to do some cleanup in this routine, ** to release dynamically allocated objects. But not on unix. ** This routine is a no-op for unix. */ SQLITE_API int sqlite3_os_end(void){ unixBigLock = 0; return SQLITE_OK; } #endif /* SQLITE_OS_UNIX */ /************** End of os_unix.c *********************************************/ /************** Begin file os_win.c ******************************************/ /* ** 2004 May 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains code that is specific to Windows. */ /* #include "sqliteInt.h" */ #if SQLITE_OS_WIN /* This file is used for Windows only */ /* ** Include code that is common to all os_*.c files */ /************** Include os_common.h in the middle of os_win.c ****************/ /************** Begin file os_common.h ***************************************/ /* ** 2004 May 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains macros and a little bit of code that is common to ** all of the platform-specific files (os_*.c) and is #included into those ** files. ** ** This file should be #included by the os_*.c files only. It is not a ** general purpose header file. */ #ifndef _OS_COMMON_H_ #define _OS_COMMON_H_ /* ** At least two bugs have slipped in because we changed the MEMORY_DEBUG ** macro to SQLITE_DEBUG and some older makefiles have not yet made the ** switch. The following code should catch this problem at compile-time. */ #ifdef MEMORY_DEBUG # error "The MEMORY_DEBUG macro is obsolete. Use SQLITE_DEBUG instead." #endif /* ** Macros for performance tracing. Normally turned off. Only works ** on i486 hardware. */ #ifdef SQLITE_PERFORMANCE_TRACE /* ** hwtime.h contains inline assembler code for implementing ** high-performance timing routines. */ /************** Include hwtime.h in the middle of os_common.h ****************/ /************** Begin file hwtime.h ******************************************/ /* ** 2008 May 27 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains inline asm code for retrieving "high-performance" ** counters for x86 and x86_64 class CPUs. */ #ifndef SQLITE_HWTIME_H #define SQLITE_HWTIME_H /* ** The following routine only works on pentium-class (or newer) processors. ** It uses the RDTSC opcode to read the cycle count value out of the ** processor and returns that value. This can be used for high-res ** profiling. */ #if !defined(__STRICT_ANSI__) && \ (defined(__GNUC__) || defined(_MSC_VER)) && \ (defined(i386) || defined(__i386__) || defined(_M_IX86)) #if defined(__GNUC__) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned int lo, hi; __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi)); return (sqlite_uint64)hi << 32 | lo; } #elif defined(_MSC_VER) __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ __asm { rdtsc ret ; return value at EDX:EAX } } #endif #elif !defined(__STRICT_ANSI__) && (defined(__GNUC__) && defined(__x86_64__)) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned long val; __asm__ __volatile__ ("rdtsc" : "=A" (val)); return val; } #elif !defined(__STRICT_ANSI__) && (defined(__GNUC__) && defined(__ppc__)) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned long long retval; unsigned long junk; __asm__ __volatile__ ("\n\ 1: mftbu %1\n\ mftb %L0\n\ mftbu %0\n\ cmpw %0,%1\n\ bne 1b" : "=r" (retval), "=r" (junk)); return retval; } #else /* ** asm() is needed for hardware timing support. Without asm(), ** disable the sqlite3Hwtime() routine. ** ** sqlite3Hwtime() is only used for some obscure debugging ** and analysis configurations, not in any deliverable, so this ** should not be a great loss. */ SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); } #endif #endif /* !defined(SQLITE_HWTIME_H) */ /************** End of hwtime.h **********************************************/ /************** Continuing where we left off in os_common.h ******************/ static sqlite_uint64 g_start; static sqlite_uint64 g_elapsed; #define TIMER_START g_start=sqlite3Hwtime() #define TIMER_END g_elapsed=sqlite3Hwtime()-g_start #define TIMER_ELAPSED g_elapsed #else #define TIMER_START #define TIMER_END #define TIMER_ELAPSED ((sqlite_uint64)0) #endif /* ** If we compile with the SQLITE_TEST macro set, then the following block ** of code will give us the ability to simulate a disk I/O error. This ** is used for testing the I/O recovery logic. */ #if defined(SQLITE_TEST) SQLITE_API extern int sqlite3_io_error_hit; SQLITE_API extern int sqlite3_io_error_hardhit; SQLITE_API extern int sqlite3_io_error_pending; SQLITE_API extern int sqlite3_io_error_persist; SQLITE_API extern int sqlite3_io_error_benign; SQLITE_API extern int sqlite3_diskfull_pending; SQLITE_API extern int sqlite3_diskfull; #define SimulateIOErrorBenign(X) sqlite3_io_error_benign=(X) #define SimulateIOError(CODE) \ if( (sqlite3_io_error_persist && sqlite3_io_error_hit) \ || sqlite3_io_error_pending-- == 1 ) \ { local_ioerr(); CODE; } static void local_ioerr(){ IOTRACE(("IOERR\n")); sqlite3_io_error_hit++; if( !sqlite3_io_error_benign ) sqlite3_io_error_hardhit++; } #define SimulateDiskfullError(CODE) \ if( sqlite3_diskfull_pending ){ \ if( sqlite3_diskfull_pending == 1 ){ \ local_ioerr(); \ sqlite3_diskfull = 1; \ sqlite3_io_error_hit = 1; \ CODE; \ }else{ \ sqlite3_diskfull_pending--; \ } \ } #else #define SimulateIOErrorBenign(X) #define SimulateIOError(A) #define SimulateDiskfullError(A) #endif /* defined(SQLITE_TEST) */ /* ** When testing, keep a count of the number of open files. */ #if defined(SQLITE_TEST) SQLITE_API extern int sqlite3_open_file_count; #define OpenCounter(X) sqlite3_open_file_count+=(X) #else #define OpenCounter(X) #endif /* defined(SQLITE_TEST) */ #endif /* !defined(_OS_COMMON_H_) */ /************** End of os_common.h *******************************************/ /************** Continuing where we left off in os_win.c *********************/ /* ** Include the header file for the Windows VFS. */ /* #include "os_win.h" */ /* ** Compiling and using WAL mode requires several APIs that are only ** available in Windows platforms based on the NT kernel. */ #if !SQLITE_OS_WINNT && !defined(SQLITE_OMIT_WAL) # error "WAL mode requires support from the Windows NT kernel, compile\ with SQLITE_OMIT_WAL." #endif #if !SQLITE_OS_WINNT && SQLITE_MAX_MMAP_SIZE>0 # error "Memory mapped files require support from the Windows NT kernel,\ compile with SQLITE_MAX_MMAP_SIZE=0." #endif /* ** Are most of the Win32 ANSI APIs available (i.e. with certain exceptions ** based on the sub-platform)? */ #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(SQLITE_WIN32_NO_ANSI) # define SQLITE_WIN32_HAS_ANSI #endif /* ** Are most of the Win32 Unicode APIs available (i.e. with certain exceptions ** based on the sub-platform)? */ #if (SQLITE_OS_WINCE || SQLITE_OS_WINNT || SQLITE_OS_WINRT) && \ !defined(SQLITE_WIN32_NO_WIDE) # define SQLITE_WIN32_HAS_WIDE #endif /* ** Make sure at least one set of Win32 APIs is available. */ #if !defined(SQLITE_WIN32_HAS_ANSI) && !defined(SQLITE_WIN32_HAS_WIDE) # error "At least one of SQLITE_WIN32_HAS_ANSI and SQLITE_WIN32_HAS_WIDE\ must be defined." #endif /* ** Define the required Windows SDK version constants if they are not ** already available. */ #ifndef NTDDI_WIN8 # define NTDDI_WIN8 0x06020000 #endif #ifndef NTDDI_WINBLUE # define NTDDI_WINBLUE 0x06030000 #endif #ifndef NTDDI_WINTHRESHOLD # define NTDDI_WINTHRESHOLD 0x06040000 #endif /* ** Check to see if the GetVersionEx[AW] functions are deprecated on the ** target system. GetVersionEx was first deprecated in Win8.1. */ #ifndef SQLITE_WIN32_GETVERSIONEX # if defined(NTDDI_VERSION) && NTDDI_VERSION >= NTDDI_WINBLUE # define SQLITE_WIN32_GETVERSIONEX 0 /* GetVersionEx() is deprecated */ # else # define SQLITE_WIN32_GETVERSIONEX 1 /* GetVersionEx() is current */ # endif #endif /* ** Check to see if the CreateFileMappingA function is supported on the ** target system. It is unavailable when using "mincore.lib" on Win10. ** When compiling for Windows 10, always assume "mincore.lib" is in use. */ #ifndef SQLITE_WIN32_CREATEFILEMAPPINGA # if defined(NTDDI_VERSION) && NTDDI_VERSION >= NTDDI_WINTHRESHOLD # define SQLITE_WIN32_CREATEFILEMAPPINGA 0 # else # define SQLITE_WIN32_CREATEFILEMAPPINGA 1 # endif #endif /* ** This constant should already be defined (in the "WinDef.h" SDK file). */ #ifndef MAX_PATH # define MAX_PATH (260) #endif /* ** Maximum pathname length (in chars) for Win32. This should normally be ** MAX_PATH. */ #ifndef SQLITE_WIN32_MAX_PATH_CHARS # define SQLITE_WIN32_MAX_PATH_CHARS (MAX_PATH) #endif /* ** This constant should already be defined (in the "WinNT.h" SDK file). */ #ifndef UNICODE_STRING_MAX_CHARS # define UNICODE_STRING_MAX_CHARS (32767) #endif /* ** Maximum pathname length (in chars) for WinNT. This should normally be ** UNICODE_STRING_MAX_CHARS. */ #ifndef SQLITE_WINNT_MAX_PATH_CHARS # define SQLITE_WINNT_MAX_PATH_CHARS (UNICODE_STRING_MAX_CHARS) #endif /* ** Maximum pathname length (in bytes) for Win32. The MAX_PATH macro is in ** characters, so we allocate 4 bytes per character assuming worst-case of ** 4-bytes-per-character for UTF8. */ #ifndef SQLITE_WIN32_MAX_PATH_BYTES # define SQLITE_WIN32_MAX_PATH_BYTES (SQLITE_WIN32_MAX_PATH_CHARS*4) #endif /* ** Maximum pathname length (in bytes) for WinNT. This should normally be ** UNICODE_STRING_MAX_CHARS * sizeof(WCHAR). */ #ifndef SQLITE_WINNT_MAX_PATH_BYTES # define SQLITE_WINNT_MAX_PATH_BYTES \ (sizeof(WCHAR) * SQLITE_WINNT_MAX_PATH_CHARS) #endif /* ** Maximum error message length (in chars) for WinRT. */ #ifndef SQLITE_WIN32_MAX_ERRMSG_CHARS # define SQLITE_WIN32_MAX_ERRMSG_CHARS (1024) #endif /* ** Returns non-zero if the character should be treated as a directory ** separator. */ #ifndef winIsDirSep # define winIsDirSep(a) (((a) == '/') || ((a) == '\\')) #endif /* ** This macro is used when a local variable is set to a value that is ** [sometimes] not used by the code (e.g. via conditional compilation). */ #ifndef UNUSED_VARIABLE_VALUE # define UNUSED_VARIABLE_VALUE(x) (void)(x) #endif /* ** Returns the character that should be used as the directory separator. */ #ifndef winGetDirSep # define winGetDirSep() '\\' #endif /* ** Do we need to manually define the Win32 file mapping APIs for use with WAL ** mode or memory mapped files (e.g. these APIs are available in the Windows ** CE SDK; however, they are not present in the header file)? */ #if SQLITE_WIN32_FILEMAPPING_API && \ (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) /* ** Two of the file mapping APIs are different under WinRT. Figure out which ** set we need. */ #if SQLITE_OS_WINRT WINBASEAPI HANDLE WINAPI CreateFileMappingFromApp(HANDLE, \ LPSECURITY_ATTRIBUTES, ULONG, ULONG64, LPCWSTR); WINBASEAPI LPVOID WINAPI MapViewOfFileFromApp(HANDLE, ULONG, ULONG64, SIZE_T); #else #if defined(SQLITE_WIN32_HAS_ANSI) WINBASEAPI HANDLE WINAPI CreateFileMappingA(HANDLE, LPSECURITY_ATTRIBUTES, \ DWORD, DWORD, DWORD, LPCSTR); #endif /* defined(SQLITE_WIN32_HAS_ANSI) */ #if defined(SQLITE_WIN32_HAS_WIDE) WINBASEAPI HANDLE WINAPI CreateFileMappingW(HANDLE, LPSECURITY_ATTRIBUTES, \ DWORD, DWORD, DWORD, LPCWSTR); #endif /* defined(SQLITE_WIN32_HAS_WIDE) */ WINBASEAPI LPVOID WINAPI MapViewOfFile(HANDLE, DWORD, DWORD, DWORD, SIZE_T); #endif /* SQLITE_OS_WINRT */ /* ** These file mapping APIs are common to both Win32 and WinRT. */ WINBASEAPI BOOL WINAPI FlushViewOfFile(LPCVOID, SIZE_T); WINBASEAPI BOOL WINAPI UnmapViewOfFile(LPCVOID); #endif /* SQLITE_WIN32_FILEMAPPING_API */ /* ** Some Microsoft compilers lack this definition. */ #ifndef INVALID_FILE_ATTRIBUTES # define INVALID_FILE_ATTRIBUTES ((DWORD)-1) #endif #ifndef FILE_FLAG_MASK # define FILE_FLAG_MASK (0xFF3C0000) #endif #ifndef FILE_ATTRIBUTE_MASK # define FILE_ATTRIBUTE_MASK (0x0003FFF7) #endif #ifndef SQLITE_OMIT_WAL /* Forward references to structures used for WAL */ typedef struct winShm winShm; /* A connection to shared-memory */ typedef struct winShmNode winShmNode; /* A region of shared-memory */ #endif /* ** WinCE lacks native support for file locking so we have to fake it ** with some code of our own. */ #if SQLITE_OS_WINCE typedef struct winceLock { int nReaders; /* Number of reader locks obtained */ BOOL bPending; /* Indicates a pending lock has been obtained */ BOOL bReserved; /* Indicates a reserved lock has been obtained */ BOOL bExclusive; /* Indicates an exclusive lock has been obtained */ } winceLock; #endif /* ** The winFile structure is a subclass of sqlite3_file* specific to the win32 ** portability layer. */ typedef struct winFile winFile; struct winFile { const sqlite3_io_methods *pMethod; /*** Must be first ***/ sqlite3_vfs *pVfs; /* The VFS used to open this file */ HANDLE h; /* Handle for accessing the file */ u8 locktype; /* Type of lock currently held on this file */ short sharedLockByte; /* Randomly chosen byte used as a shared lock */ u8 ctrlFlags; /* Flags. See WINFILE_* below */ DWORD lastErrno; /* The Windows errno from the last I/O error */ #ifndef SQLITE_OMIT_WAL winShm *pShm; /* Instance of shared memory on this file */ #endif const char *zPath; /* Full pathname of this file */ int szChunk; /* Chunk size configured by FCNTL_CHUNK_SIZE */ #if SQLITE_OS_WINCE LPWSTR zDeleteOnClose; /* Name of file to delete when closing */ HANDLE hMutex; /* Mutex used to control access to shared lock */ HANDLE hShared; /* Shared memory segment used for locking */ winceLock local; /* Locks obtained by this instance of winFile */ winceLock *shared; /* Global shared lock memory for the file */ #endif #if SQLITE_MAX_MMAP_SIZE>0 int nFetchOut; /* Number of outstanding xFetch references */ HANDLE hMap; /* Handle for accessing memory mapping */ void *pMapRegion; /* Area memory mapped */ sqlite3_int64 mmapSize; /* Size of mapped region */ sqlite3_int64 mmapSizeMax; /* Configured FCNTL_MMAP_SIZE value */ #endif }; /* ** The winVfsAppData structure is used for the pAppData member for all of the ** Win32 VFS variants. */ typedef struct winVfsAppData winVfsAppData; struct winVfsAppData { const sqlite3_io_methods *pMethod; /* The file I/O methods to use. */ void *pAppData; /* The extra pAppData, if any. */ BOOL bNoLock; /* Non-zero if locking is disabled. */ }; /* ** Allowed values for winFile.ctrlFlags */ #define WINFILE_RDONLY 0x02 /* Connection is read only */ #define WINFILE_PERSIST_WAL 0x04 /* Persistent WAL mode */ #define WINFILE_PSOW 0x10 /* SQLITE_IOCAP_POWERSAFE_OVERWRITE */ /* * The size of the buffer used by sqlite3_win32_write_debug(). */ #ifndef SQLITE_WIN32_DBG_BUF_SIZE # define SQLITE_WIN32_DBG_BUF_SIZE ((int)(4096-sizeof(DWORD))) #endif /* * If compiled with SQLITE_WIN32_MALLOC on Windows, we will use the * various Win32 API heap functions instead of our own. */ #ifdef SQLITE_WIN32_MALLOC /* * If this is non-zero, an isolated heap will be created by the native Win32 * allocator subsystem; otherwise, the default process heap will be used. This * setting has no effect when compiling for WinRT. By default, this is enabled * and an isolated heap will be created to store all allocated data. * ****************************************************************************** * WARNING: It is important to note that when this setting is non-zero and the * winMemShutdown function is called (e.g. by the sqlite3_shutdown * function), all data that was allocated using the isolated heap will * be freed immediately and any attempt to access any of that freed * data will almost certainly result in an immediate access violation. ****************************************************************************** */ #ifndef SQLITE_WIN32_HEAP_CREATE # define SQLITE_WIN32_HEAP_CREATE (TRUE) #endif /* * This is the maximum possible initial size of the Win32-specific heap, in * bytes. */ #ifndef SQLITE_WIN32_HEAP_MAX_INIT_SIZE # define SQLITE_WIN32_HEAP_MAX_INIT_SIZE (4294967295U) #endif /* * This is the extra space for the initial size of the Win32-specific heap, * in bytes. This value may be zero. */ #ifndef SQLITE_WIN32_HEAP_INIT_EXTRA # define SQLITE_WIN32_HEAP_INIT_EXTRA (4194304) #endif /* * Calculate the maximum legal cache size, in pages, based on the maximum * possible initial heap size and the default page size, setting aside the * needed extra space. */ #ifndef SQLITE_WIN32_MAX_CACHE_SIZE # define SQLITE_WIN32_MAX_CACHE_SIZE (((SQLITE_WIN32_HEAP_MAX_INIT_SIZE) - \ (SQLITE_WIN32_HEAP_INIT_EXTRA)) / \ (SQLITE_DEFAULT_PAGE_SIZE)) #endif /* * This is cache size used in the calculation of the initial size of the * Win32-specific heap. It cannot be negative. */ #ifndef SQLITE_WIN32_CACHE_SIZE # if SQLITE_DEFAULT_CACHE_SIZE>=0 # define SQLITE_WIN32_CACHE_SIZE (SQLITE_DEFAULT_CACHE_SIZE) # else # define SQLITE_WIN32_CACHE_SIZE (-(SQLITE_DEFAULT_CACHE_SIZE)) # endif #endif /* * Make sure that the calculated cache size, in pages, cannot cause the * initial size of the Win32-specific heap to exceed the maximum amount * of memory that can be specified in the call to HeapCreate. */ #if SQLITE_WIN32_CACHE_SIZE>SQLITE_WIN32_MAX_CACHE_SIZE # undef SQLITE_WIN32_CACHE_SIZE # define SQLITE_WIN32_CACHE_SIZE (2000) #endif /* * The initial size of the Win32-specific heap. This value may be zero. */ #ifndef SQLITE_WIN32_HEAP_INIT_SIZE # define SQLITE_WIN32_HEAP_INIT_SIZE ((SQLITE_WIN32_CACHE_SIZE) * \ (SQLITE_DEFAULT_PAGE_SIZE) + \ (SQLITE_WIN32_HEAP_INIT_EXTRA)) #endif /* * The maximum size of the Win32-specific heap. This value may be zero. */ #ifndef SQLITE_WIN32_HEAP_MAX_SIZE # define SQLITE_WIN32_HEAP_MAX_SIZE (0) #endif /* * The extra flags to use in calls to the Win32 heap APIs. This value may be * zero for the default behavior. */ #ifndef SQLITE_WIN32_HEAP_FLAGS # define SQLITE_WIN32_HEAP_FLAGS (0) #endif /* ** The winMemData structure stores information required by the Win32-specific ** sqlite3_mem_methods implementation. */ typedef struct winMemData winMemData; struct winMemData { #ifndef NDEBUG u32 magic1; /* Magic number to detect structure corruption. */ #endif HANDLE hHeap; /* The handle to our heap. */ BOOL bOwned; /* Do we own the heap (i.e. destroy it on shutdown)? */ #ifndef NDEBUG u32 magic2; /* Magic number to detect structure corruption. */ #endif }; #ifndef NDEBUG #define WINMEM_MAGIC1 0x42b2830b #define WINMEM_MAGIC2 0xbd4d7cf4 #endif static struct winMemData win_mem_data = { #ifndef NDEBUG WINMEM_MAGIC1, #endif NULL, FALSE #ifndef NDEBUG ,WINMEM_MAGIC2 #endif }; #ifndef NDEBUG #define winMemAssertMagic1() assert( win_mem_data.magic1==WINMEM_MAGIC1 ) #define winMemAssertMagic2() assert( win_mem_data.magic2==WINMEM_MAGIC2 ) #define winMemAssertMagic() winMemAssertMagic1(); winMemAssertMagic2(); #else #define winMemAssertMagic() #endif #define winMemGetDataPtr() &win_mem_data #define winMemGetHeap() win_mem_data.hHeap #define winMemGetOwned() win_mem_data.bOwned static void *winMemMalloc(int nBytes); static void winMemFree(void *pPrior); static void *winMemRealloc(void *pPrior, int nBytes); static int winMemSize(void *p); static int winMemRoundup(int n); static int winMemInit(void *pAppData); static void winMemShutdown(void *pAppData); SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void); #endif /* SQLITE_WIN32_MALLOC */ /* ** The following variable is (normally) set once and never changes ** thereafter. It records whether the operating system is Win9x ** or WinNT. ** ** 0: Operating system unknown. ** 1: Operating system is Win9x. ** 2: Operating system is WinNT. ** ** In order to facilitate testing on a WinNT system, the test fixture ** can manually set this value to 1 to emulate Win98 behavior. */ #ifdef SQLITE_TEST SQLITE_API LONG SQLITE_WIN32_VOLATILE sqlite3_os_type = 0; #else static LONG SQLITE_WIN32_VOLATILE sqlite3_os_type = 0; #endif #ifndef SYSCALL # define SYSCALL sqlite3_syscall_ptr #endif /* ** This function is not available on Windows CE or WinRT. */ #if SQLITE_OS_WINCE || SQLITE_OS_WINRT # define osAreFileApisANSI() 1 #endif /* ** Many system calls are accessed through pointer-to-functions so that ** they may be overridden at runtime to facilitate fault injection during ** testing and sandboxing. The following array holds the names and pointers ** to all overrideable system calls. */ static struct win_syscall { const char *zName; /* Name of the system call */ sqlite3_syscall_ptr pCurrent; /* Current value of the system call */ sqlite3_syscall_ptr pDefault; /* Default value */ } aSyscall[] = { #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT { "AreFileApisANSI", (SYSCALL)AreFileApisANSI, 0 }, #else { "AreFileApisANSI", (SYSCALL)0, 0 }, #endif #ifndef osAreFileApisANSI #define osAreFileApisANSI ((BOOL(WINAPI*)(VOID))aSyscall[0].pCurrent) #endif #if SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_WIDE) { "CharLowerW", (SYSCALL)CharLowerW, 0 }, #else { "CharLowerW", (SYSCALL)0, 0 }, #endif #define osCharLowerW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[1].pCurrent) #if SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_WIDE) { "CharUpperW", (SYSCALL)CharUpperW, 0 }, #else { "CharUpperW", (SYSCALL)0, 0 }, #endif #define osCharUpperW ((LPWSTR(WINAPI*)(LPWSTR))aSyscall[2].pCurrent) { "CloseHandle", (SYSCALL)CloseHandle, 0 }, #define osCloseHandle ((BOOL(WINAPI*)(HANDLE))aSyscall[3].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "CreateFileA", (SYSCALL)CreateFileA, 0 }, #else { "CreateFileA", (SYSCALL)0, 0 }, #endif #define osCreateFileA ((HANDLE(WINAPI*)(LPCSTR,DWORD,DWORD, \ LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[4].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "CreateFileW", (SYSCALL)CreateFileW, 0 }, #else { "CreateFileW", (SYSCALL)0, 0 }, #endif #define osCreateFileW ((HANDLE(WINAPI*)(LPCWSTR,DWORD,DWORD, \ LPSECURITY_ATTRIBUTES,DWORD,DWORD,HANDLE))aSyscall[5].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_ANSI) && \ (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) && \ SQLITE_WIN32_CREATEFILEMAPPINGA { "CreateFileMappingA", (SYSCALL)CreateFileMappingA, 0 }, #else { "CreateFileMappingA", (SYSCALL)0, 0 }, #endif #define osCreateFileMappingA ((HANDLE(WINAPI*)(HANDLE,LPSECURITY_ATTRIBUTES, \ DWORD,DWORD,DWORD,LPCSTR))aSyscall[6].pCurrent) #if SQLITE_OS_WINCE || (!SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \ (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0)) { "CreateFileMappingW", (SYSCALL)CreateFileMappingW, 0 }, #else { "CreateFileMappingW", (SYSCALL)0, 0 }, #endif #define osCreateFileMappingW ((HANDLE(WINAPI*)(HANDLE,LPSECURITY_ATTRIBUTES, \ DWORD,DWORD,DWORD,LPCWSTR))aSyscall[7].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "CreateMutexW", (SYSCALL)CreateMutexW, 0 }, #else { "CreateMutexW", (SYSCALL)0, 0 }, #endif #define osCreateMutexW ((HANDLE(WINAPI*)(LPSECURITY_ATTRIBUTES,BOOL, \ LPCWSTR))aSyscall[8].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "DeleteFileA", (SYSCALL)DeleteFileA, 0 }, #else { "DeleteFileA", (SYSCALL)0, 0 }, #endif #define osDeleteFileA ((BOOL(WINAPI*)(LPCSTR))aSyscall[9].pCurrent) #if defined(SQLITE_WIN32_HAS_WIDE) { "DeleteFileW", (SYSCALL)DeleteFileW, 0 }, #else { "DeleteFileW", (SYSCALL)0, 0 }, #endif #define osDeleteFileW ((BOOL(WINAPI*)(LPCWSTR))aSyscall[10].pCurrent) #if SQLITE_OS_WINCE { "FileTimeToLocalFileTime", (SYSCALL)FileTimeToLocalFileTime, 0 }, #else { "FileTimeToLocalFileTime", (SYSCALL)0, 0 }, #endif #define osFileTimeToLocalFileTime ((BOOL(WINAPI*)(CONST FILETIME*, \ LPFILETIME))aSyscall[11].pCurrent) #if SQLITE_OS_WINCE { "FileTimeToSystemTime", (SYSCALL)FileTimeToSystemTime, 0 }, #else { "FileTimeToSystemTime", (SYSCALL)0, 0 }, #endif #define osFileTimeToSystemTime ((BOOL(WINAPI*)(CONST FILETIME*, \ LPSYSTEMTIME))aSyscall[12].pCurrent) { "FlushFileBuffers", (SYSCALL)FlushFileBuffers, 0 }, #define osFlushFileBuffers ((BOOL(WINAPI*)(HANDLE))aSyscall[13].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "FormatMessageA", (SYSCALL)FormatMessageA, 0 }, #else { "FormatMessageA", (SYSCALL)0, 0 }, #endif #define osFormatMessageA ((DWORD(WINAPI*)(DWORD,LPCVOID,DWORD,DWORD,LPSTR, \ DWORD,va_list*))aSyscall[14].pCurrent) #if defined(SQLITE_WIN32_HAS_WIDE) { "FormatMessageW", (SYSCALL)FormatMessageW, 0 }, #else { "FormatMessageW", (SYSCALL)0, 0 }, #endif #define osFormatMessageW ((DWORD(WINAPI*)(DWORD,LPCVOID,DWORD,DWORD,LPWSTR, \ DWORD,va_list*))aSyscall[15].pCurrent) #if !defined(SQLITE_OMIT_LOAD_EXTENSION) { "FreeLibrary", (SYSCALL)FreeLibrary, 0 }, #else { "FreeLibrary", (SYSCALL)0, 0 }, #endif #define osFreeLibrary ((BOOL(WINAPI*)(HMODULE))aSyscall[16].pCurrent) { "GetCurrentProcessId", (SYSCALL)GetCurrentProcessId, 0 }, #define osGetCurrentProcessId ((DWORD(WINAPI*)(VOID))aSyscall[17].pCurrent) #if !SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_ANSI) { "GetDiskFreeSpaceA", (SYSCALL)GetDiskFreeSpaceA, 0 }, #else { "GetDiskFreeSpaceA", (SYSCALL)0, 0 }, #endif #define osGetDiskFreeSpaceA ((BOOL(WINAPI*)(LPCSTR,LPDWORD,LPDWORD,LPDWORD, \ LPDWORD))aSyscall[18].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "GetDiskFreeSpaceW", (SYSCALL)GetDiskFreeSpaceW, 0 }, #else { "GetDiskFreeSpaceW", (SYSCALL)0, 0 }, #endif #define osGetDiskFreeSpaceW ((BOOL(WINAPI*)(LPCWSTR,LPDWORD,LPDWORD,LPDWORD, \ LPDWORD))aSyscall[19].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "GetFileAttributesA", (SYSCALL)GetFileAttributesA, 0 }, #else { "GetFileAttributesA", (SYSCALL)0, 0 }, #endif #define osGetFileAttributesA ((DWORD(WINAPI*)(LPCSTR))aSyscall[20].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "GetFileAttributesW", (SYSCALL)GetFileAttributesW, 0 }, #else { "GetFileAttributesW", (SYSCALL)0, 0 }, #endif #define osGetFileAttributesW ((DWORD(WINAPI*)(LPCWSTR))aSyscall[21].pCurrent) #if defined(SQLITE_WIN32_HAS_WIDE) { "GetFileAttributesExW", (SYSCALL)GetFileAttributesExW, 0 }, #else { "GetFileAttributesExW", (SYSCALL)0, 0 }, #endif #define osGetFileAttributesExW ((BOOL(WINAPI*)(LPCWSTR,GET_FILEEX_INFO_LEVELS, \ LPVOID))aSyscall[22].pCurrent) #if !SQLITE_OS_WINRT { "GetFileSize", (SYSCALL)GetFileSize, 0 }, #else { "GetFileSize", (SYSCALL)0, 0 }, #endif #define osGetFileSize ((DWORD(WINAPI*)(HANDLE,LPDWORD))aSyscall[23].pCurrent) #if !SQLITE_OS_WINCE && defined(SQLITE_WIN32_HAS_ANSI) { "GetFullPathNameA", (SYSCALL)GetFullPathNameA, 0 }, #else { "GetFullPathNameA", (SYSCALL)0, 0 }, #endif #define osGetFullPathNameA ((DWORD(WINAPI*)(LPCSTR,DWORD,LPSTR, \ LPSTR*))aSyscall[24].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "GetFullPathNameW", (SYSCALL)GetFullPathNameW, 0 }, #else { "GetFullPathNameW", (SYSCALL)0, 0 }, #endif #define osGetFullPathNameW ((DWORD(WINAPI*)(LPCWSTR,DWORD,LPWSTR, \ LPWSTR*))aSyscall[25].pCurrent) { "GetLastError", (SYSCALL)GetLastError, 0 }, #define osGetLastError ((DWORD(WINAPI*)(VOID))aSyscall[26].pCurrent) #if !defined(SQLITE_OMIT_LOAD_EXTENSION) #if SQLITE_OS_WINCE /* The GetProcAddressA() routine is only available on Windows CE. */ { "GetProcAddressA", (SYSCALL)GetProcAddressA, 0 }, #else /* All other Windows platforms expect GetProcAddress() to take ** an ANSI string regardless of the _UNICODE setting */ { "GetProcAddressA", (SYSCALL)GetProcAddress, 0 }, #endif #else { "GetProcAddressA", (SYSCALL)0, 0 }, #endif #define osGetProcAddressA ((FARPROC(WINAPI*)(HMODULE, \ LPCSTR))aSyscall[27].pCurrent) #if !SQLITE_OS_WINRT { "GetSystemInfo", (SYSCALL)GetSystemInfo, 0 }, #else { "GetSystemInfo", (SYSCALL)0, 0 }, #endif #define osGetSystemInfo ((VOID(WINAPI*)(LPSYSTEM_INFO))aSyscall[28].pCurrent) { "GetSystemTime", (SYSCALL)GetSystemTime, 0 }, #define osGetSystemTime ((VOID(WINAPI*)(LPSYSTEMTIME))aSyscall[29].pCurrent) #if !SQLITE_OS_WINCE { "GetSystemTimeAsFileTime", (SYSCALL)GetSystemTimeAsFileTime, 0 }, #else { "GetSystemTimeAsFileTime", (SYSCALL)0, 0 }, #endif #define osGetSystemTimeAsFileTime ((VOID(WINAPI*)( \ LPFILETIME))aSyscall[30].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "GetTempPathA", (SYSCALL)GetTempPathA, 0 }, #else { "GetTempPathA", (SYSCALL)0, 0 }, #endif #define osGetTempPathA ((DWORD(WINAPI*)(DWORD,LPSTR))aSyscall[31].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) { "GetTempPathW", (SYSCALL)GetTempPathW, 0 }, #else { "GetTempPathW", (SYSCALL)0, 0 }, #endif #define osGetTempPathW ((DWORD(WINAPI*)(DWORD,LPWSTR))aSyscall[32].pCurrent) #if !SQLITE_OS_WINRT { "GetTickCount", (SYSCALL)GetTickCount, 0 }, #else { "GetTickCount", (SYSCALL)0, 0 }, #endif #define osGetTickCount ((DWORD(WINAPI*)(VOID))aSyscall[33].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) && SQLITE_WIN32_GETVERSIONEX { "GetVersionExA", (SYSCALL)GetVersionExA, 0 }, #else { "GetVersionExA", (SYSCALL)0, 0 }, #endif #define osGetVersionExA ((BOOL(WINAPI*)( \ LPOSVERSIONINFOA))aSyscall[34].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \ SQLITE_WIN32_GETVERSIONEX { "GetVersionExW", (SYSCALL)GetVersionExW, 0 }, #else { "GetVersionExW", (SYSCALL)0, 0 }, #endif #define osGetVersionExW ((BOOL(WINAPI*)( \ LPOSVERSIONINFOW))aSyscall[35].pCurrent) { "HeapAlloc", (SYSCALL)HeapAlloc, 0 }, #define osHeapAlloc ((LPVOID(WINAPI*)(HANDLE,DWORD, \ SIZE_T))aSyscall[36].pCurrent) #if !SQLITE_OS_WINRT { "HeapCreate", (SYSCALL)HeapCreate, 0 }, #else { "HeapCreate", (SYSCALL)0, 0 }, #endif #define osHeapCreate ((HANDLE(WINAPI*)(DWORD,SIZE_T, \ SIZE_T))aSyscall[37].pCurrent) #if !SQLITE_OS_WINRT { "HeapDestroy", (SYSCALL)HeapDestroy, 0 }, #else { "HeapDestroy", (SYSCALL)0, 0 }, #endif #define osHeapDestroy ((BOOL(WINAPI*)(HANDLE))aSyscall[38].pCurrent) { "HeapFree", (SYSCALL)HeapFree, 0 }, #define osHeapFree ((BOOL(WINAPI*)(HANDLE,DWORD,LPVOID))aSyscall[39].pCurrent) { "HeapReAlloc", (SYSCALL)HeapReAlloc, 0 }, #define osHeapReAlloc ((LPVOID(WINAPI*)(HANDLE,DWORD,LPVOID, \ SIZE_T))aSyscall[40].pCurrent) { "HeapSize", (SYSCALL)HeapSize, 0 }, #define osHeapSize ((SIZE_T(WINAPI*)(HANDLE,DWORD, \ LPCVOID))aSyscall[41].pCurrent) #if !SQLITE_OS_WINRT { "HeapValidate", (SYSCALL)HeapValidate, 0 }, #else { "HeapValidate", (SYSCALL)0, 0 }, #endif #define osHeapValidate ((BOOL(WINAPI*)(HANDLE,DWORD, \ LPCVOID))aSyscall[42].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT { "HeapCompact", (SYSCALL)HeapCompact, 0 }, #else { "HeapCompact", (SYSCALL)0, 0 }, #endif #define osHeapCompact ((UINT(WINAPI*)(HANDLE,DWORD))aSyscall[43].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) && !defined(SQLITE_OMIT_LOAD_EXTENSION) { "LoadLibraryA", (SYSCALL)LoadLibraryA, 0 }, #else { "LoadLibraryA", (SYSCALL)0, 0 }, #endif #define osLoadLibraryA ((HMODULE(WINAPI*)(LPCSTR))aSyscall[44].pCurrent) #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_HAS_WIDE) && \ !defined(SQLITE_OMIT_LOAD_EXTENSION) { "LoadLibraryW", (SYSCALL)LoadLibraryW, 0 }, #else { "LoadLibraryW", (SYSCALL)0, 0 }, #endif #define osLoadLibraryW ((HMODULE(WINAPI*)(LPCWSTR))aSyscall[45].pCurrent) #if !SQLITE_OS_WINRT { "LocalFree", (SYSCALL)LocalFree, 0 }, #else { "LocalFree", (SYSCALL)0, 0 }, #endif #define osLocalFree ((HLOCAL(WINAPI*)(HLOCAL))aSyscall[46].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT { "LockFile", (SYSCALL)LockFile, 0 }, #else { "LockFile", (SYSCALL)0, 0 }, #endif #ifndef osLockFile #define osLockFile ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ DWORD))aSyscall[47].pCurrent) #endif #if !SQLITE_OS_WINCE { "LockFileEx", (SYSCALL)LockFileEx, 0 }, #else { "LockFileEx", (SYSCALL)0, 0 }, #endif #ifndef osLockFileEx #define osLockFileEx ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD,DWORD, \ LPOVERLAPPED))aSyscall[48].pCurrent) #endif #if SQLITE_OS_WINCE || (!SQLITE_OS_WINRT && \ (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0)) { "MapViewOfFile", (SYSCALL)MapViewOfFile, 0 }, #else { "MapViewOfFile", (SYSCALL)0, 0 }, #endif #define osMapViewOfFile ((LPVOID(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ SIZE_T))aSyscall[49].pCurrent) { "MultiByteToWideChar", (SYSCALL)MultiByteToWideChar, 0 }, #define osMultiByteToWideChar ((int(WINAPI*)(UINT,DWORD,LPCSTR,int,LPWSTR, \ int))aSyscall[50].pCurrent) { "QueryPerformanceCounter", (SYSCALL)QueryPerformanceCounter, 0 }, #define osQueryPerformanceCounter ((BOOL(WINAPI*)( \ LARGE_INTEGER*))aSyscall[51].pCurrent) { "ReadFile", (SYSCALL)ReadFile, 0 }, #define osReadFile ((BOOL(WINAPI*)(HANDLE,LPVOID,DWORD,LPDWORD, \ LPOVERLAPPED))aSyscall[52].pCurrent) { "SetEndOfFile", (SYSCALL)SetEndOfFile, 0 }, #define osSetEndOfFile ((BOOL(WINAPI*)(HANDLE))aSyscall[53].pCurrent) #if !SQLITE_OS_WINRT { "SetFilePointer", (SYSCALL)SetFilePointer, 0 }, #else { "SetFilePointer", (SYSCALL)0, 0 }, #endif #define osSetFilePointer ((DWORD(WINAPI*)(HANDLE,LONG,PLONG, \ DWORD))aSyscall[54].pCurrent) #if !SQLITE_OS_WINRT { "Sleep", (SYSCALL)Sleep, 0 }, #else { "Sleep", (SYSCALL)0, 0 }, #endif #define osSleep ((VOID(WINAPI*)(DWORD))aSyscall[55].pCurrent) { "SystemTimeToFileTime", (SYSCALL)SystemTimeToFileTime, 0 }, #define osSystemTimeToFileTime ((BOOL(WINAPI*)(CONST SYSTEMTIME*, \ LPFILETIME))aSyscall[56].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT { "UnlockFile", (SYSCALL)UnlockFile, 0 }, #else { "UnlockFile", (SYSCALL)0, 0 }, #endif #ifndef osUnlockFile #define osUnlockFile ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ DWORD))aSyscall[57].pCurrent) #endif #if !SQLITE_OS_WINCE { "UnlockFileEx", (SYSCALL)UnlockFileEx, 0 }, #else { "UnlockFileEx", (SYSCALL)0, 0 }, #endif #define osUnlockFileEx ((BOOL(WINAPI*)(HANDLE,DWORD,DWORD,DWORD, \ LPOVERLAPPED))aSyscall[58].pCurrent) #if SQLITE_OS_WINCE || !defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0 { "UnmapViewOfFile", (SYSCALL)UnmapViewOfFile, 0 }, #else { "UnmapViewOfFile", (SYSCALL)0, 0 }, #endif #define osUnmapViewOfFile ((BOOL(WINAPI*)(LPCVOID))aSyscall[59].pCurrent) { "WideCharToMultiByte", (SYSCALL)WideCharToMultiByte, 0 }, #define osWideCharToMultiByte ((int(WINAPI*)(UINT,DWORD,LPCWSTR,int,LPSTR,int, \ LPCSTR,LPBOOL))aSyscall[60].pCurrent) { "WriteFile", (SYSCALL)WriteFile, 0 }, #define osWriteFile ((BOOL(WINAPI*)(HANDLE,LPCVOID,DWORD,LPDWORD, \ LPOVERLAPPED))aSyscall[61].pCurrent) #if SQLITE_OS_WINRT { "CreateEventExW", (SYSCALL)CreateEventExW, 0 }, #else { "CreateEventExW", (SYSCALL)0, 0 }, #endif #define osCreateEventExW ((HANDLE(WINAPI*)(LPSECURITY_ATTRIBUTES,LPCWSTR, \ DWORD,DWORD))aSyscall[62].pCurrent) #if !SQLITE_OS_WINRT { "WaitForSingleObject", (SYSCALL)WaitForSingleObject, 0 }, #else { "WaitForSingleObject", (SYSCALL)0, 0 }, #endif #define osWaitForSingleObject ((DWORD(WINAPI*)(HANDLE, \ DWORD))aSyscall[63].pCurrent) #if !SQLITE_OS_WINCE { "WaitForSingleObjectEx", (SYSCALL)WaitForSingleObjectEx, 0 }, #else { "WaitForSingleObjectEx", (SYSCALL)0, 0 }, #endif #define osWaitForSingleObjectEx ((DWORD(WINAPI*)(HANDLE,DWORD, \ BOOL))aSyscall[64].pCurrent) #if SQLITE_OS_WINRT { "SetFilePointerEx", (SYSCALL)SetFilePointerEx, 0 }, #else { "SetFilePointerEx", (SYSCALL)0, 0 }, #endif #define osSetFilePointerEx ((BOOL(WINAPI*)(HANDLE,LARGE_INTEGER, \ PLARGE_INTEGER,DWORD))aSyscall[65].pCurrent) #if SQLITE_OS_WINRT { "GetFileInformationByHandleEx", (SYSCALL)GetFileInformationByHandleEx, 0 }, #else { "GetFileInformationByHandleEx", (SYSCALL)0, 0 }, #endif #define osGetFileInformationByHandleEx ((BOOL(WINAPI*)(HANDLE, \ FILE_INFO_BY_HANDLE_CLASS,LPVOID,DWORD))aSyscall[66].pCurrent) #if SQLITE_OS_WINRT && (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) { "MapViewOfFileFromApp", (SYSCALL)MapViewOfFileFromApp, 0 }, #else { "MapViewOfFileFromApp", (SYSCALL)0, 0 }, #endif #define osMapViewOfFileFromApp ((LPVOID(WINAPI*)(HANDLE,ULONG,ULONG64, \ SIZE_T))aSyscall[67].pCurrent) #if SQLITE_OS_WINRT { "CreateFile2", (SYSCALL)CreateFile2, 0 }, #else { "CreateFile2", (SYSCALL)0, 0 }, #endif #define osCreateFile2 ((HANDLE(WINAPI*)(LPCWSTR,DWORD,DWORD,DWORD, \ LPCREATEFILE2_EXTENDED_PARAMETERS))aSyscall[68].pCurrent) #if SQLITE_OS_WINRT && !defined(SQLITE_OMIT_LOAD_EXTENSION) { "LoadPackagedLibrary", (SYSCALL)LoadPackagedLibrary, 0 }, #else { "LoadPackagedLibrary", (SYSCALL)0, 0 }, #endif #define osLoadPackagedLibrary ((HMODULE(WINAPI*)(LPCWSTR, \ DWORD))aSyscall[69].pCurrent) #if SQLITE_OS_WINRT { "GetTickCount64", (SYSCALL)GetTickCount64, 0 }, #else { "GetTickCount64", (SYSCALL)0, 0 }, #endif #define osGetTickCount64 ((ULONGLONG(WINAPI*)(VOID))aSyscall[70].pCurrent) #if SQLITE_OS_WINRT { "GetNativeSystemInfo", (SYSCALL)GetNativeSystemInfo, 0 }, #else { "GetNativeSystemInfo", (SYSCALL)0, 0 }, #endif #define osGetNativeSystemInfo ((VOID(WINAPI*)( \ LPSYSTEM_INFO))aSyscall[71].pCurrent) #if defined(SQLITE_WIN32_HAS_ANSI) { "OutputDebugStringA", (SYSCALL)OutputDebugStringA, 0 }, #else { "OutputDebugStringA", (SYSCALL)0, 0 }, #endif #define osOutputDebugStringA ((VOID(WINAPI*)(LPCSTR))aSyscall[72].pCurrent) #if defined(SQLITE_WIN32_HAS_WIDE) { "OutputDebugStringW", (SYSCALL)OutputDebugStringW, 0 }, #else { "OutputDebugStringW", (SYSCALL)0, 0 }, #endif #define osOutputDebugStringW ((VOID(WINAPI*)(LPCWSTR))aSyscall[73].pCurrent) { "GetProcessHeap", (SYSCALL)GetProcessHeap, 0 }, #define osGetProcessHeap ((HANDLE(WINAPI*)(VOID))aSyscall[74].pCurrent) #if SQLITE_OS_WINRT && (!defined(SQLITE_OMIT_WAL) || SQLITE_MAX_MMAP_SIZE>0) { "CreateFileMappingFromApp", (SYSCALL)CreateFileMappingFromApp, 0 }, #else { "CreateFileMappingFromApp", (SYSCALL)0, 0 }, #endif #define osCreateFileMappingFromApp ((HANDLE(WINAPI*)(HANDLE, \ LPSECURITY_ATTRIBUTES,ULONG,ULONG64,LPCWSTR))aSyscall[75].pCurrent) /* ** NOTE: On some sub-platforms, the InterlockedCompareExchange "function" ** is really just a macro that uses a compiler intrinsic (e.g. x64). ** So do not try to make this is into a redefinable interface. */ #if defined(InterlockedCompareExchange) { "InterlockedCompareExchange", (SYSCALL)0, 0 }, #define osInterlockedCompareExchange InterlockedCompareExchange #else { "InterlockedCompareExchange", (SYSCALL)InterlockedCompareExchange, 0 }, #define osInterlockedCompareExchange ((LONG(WINAPI*)(LONG \ SQLITE_WIN32_VOLATILE*, LONG,LONG))aSyscall[76].pCurrent) #endif /* defined(InterlockedCompareExchange) */ #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID { "UuidCreate", (SYSCALL)UuidCreate, 0 }, #else { "UuidCreate", (SYSCALL)0, 0 }, #endif #define osUuidCreate ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[77].pCurrent) #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID { "UuidCreateSequential", (SYSCALL)UuidCreateSequential, 0 }, #else { "UuidCreateSequential", (SYSCALL)0, 0 }, #endif #define osUuidCreateSequential \ ((RPC_STATUS(RPC_ENTRY*)(UUID*))aSyscall[78].pCurrent) #if !defined(SQLITE_NO_SYNC) && SQLITE_MAX_MMAP_SIZE>0 { "FlushViewOfFile", (SYSCALL)FlushViewOfFile, 0 }, #else { "FlushViewOfFile", (SYSCALL)0, 0 }, #endif #define osFlushViewOfFile \ ((BOOL(WINAPI*)(LPCVOID,SIZE_T))aSyscall[79].pCurrent) }; /* End of the overrideable system calls */ /* ** This is the xSetSystemCall() method of sqlite3_vfs for all of the ** "win32" VFSes. Return SQLITE_OK opon successfully updating the ** system call pointer, or SQLITE_NOTFOUND if there is no configurable ** system call named zName. */ static int winSetSystemCall( sqlite3_vfs *pNotUsed, /* The VFS pointer. Not used */ const char *zName, /* Name of system call to override */ sqlite3_syscall_ptr pNewFunc /* Pointer to new system call value */ ){ unsigned int i; int rc = SQLITE_NOTFOUND; UNUSED_PARAMETER(pNotUsed); if( zName==0 ){ /* If no zName is given, restore all system calls to their default ** settings and return NULL */ rc = SQLITE_OK; for(i=0; i0 ){ memset(zDbgBuf, 0, SQLITE_WIN32_DBG_BUF_SIZE); memcpy(zDbgBuf, zBuf, nMin); osOutputDebugStringA(zDbgBuf); }else{ osOutputDebugStringA(zBuf); } #elif defined(SQLITE_WIN32_HAS_WIDE) memset(zDbgBuf, 0, SQLITE_WIN32_DBG_BUF_SIZE); if ( osMultiByteToWideChar( osAreFileApisANSI() ? CP_ACP : CP_OEMCP, 0, zBuf, nMin, (LPWSTR)zDbgBuf, SQLITE_WIN32_DBG_BUF_SIZE/sizeof(WCHAR))<=0 ){ return; } osOutputDebugStringW((LPCWSTR)zDbgBuf); #else if( nMin>0 ){ memset(zDbgBuf, 0, SQLITE_WIN32_DBG_BUF_SIZE); memcpy(zDbgBuf, zBuf, nMin); fprintf(stderr, "%s", zDbgBuf); }else{ fprintf(stderr, "%s", zBuf); } #endif } /* ** The following routine suspends the current thread for at least ms ** milliseconds. This is equivalent to the Win32 Sleep() interface. */ #if SQLITE_OS_WINRT static HANDLE sleepObj = NULL; #endif SQLITE_API void sqlite3_win32_sleep(DWORD milliseconds){ #if SQLITE_OS_WINRT if ( sleepObj==NULL ){ sleepObj = osCreateEventExW(NULL, NULL, CREATE_EVENT_MANUAL_RESET, SYNCHRONIZE); } assert( sleepObj!=NULL ); osWaitForSingleObjectEx(sleepObj, milliseconds, FALSE); #else osSleep(milliseconds); #endif } #if SQLITE_MAX_WORKER_THREADS>0 && !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && \ SQLITE_THREADSAFE>0 SQLITE_PRIVATE DWORD sqlite3Win32Wait(HANDLE hObject){ DWORD rc; while( (rc = osWaitForSingleObjectEx(hObject, INFINITE, TRUE))==WAIT_IO_COMPLETION ){} return rc; } #endif /* ** Return true (non-zero) if we are running under WinNT, Win2K, WinXP, ** or WinCE. Return false (zero) for Win95, Win98, or WinME. ** ** Here is an interesting observation: Win95, Win98, and WinME lack ** the LockFileEx() API. But we can still statically link against that ** API as long as we don't call it when running Win95/98/ME. A call to ** this routine is used to determine if the host is Win95/98/ME or ** WinNT/2K/XP so that we will know whether or not we can safely call ** the LockFileEx() API. */ #if !SQLITE_WIN32_GETVERSIONEX # define osIsNT() (1) #elif SQLITE_OS_WINCE || SQLITE_OS_WINRT || !defined(SQLITE_WIN32_HAS_ANSI) # define osIsNT() (1) #elif !defined(SQLITE_WIN32_HAS_WIDE) # define osIsNT() (0) #else # define osIsNT() ((sqlite3_os_type==2) || sqlite3_win32_is_nt()) #endif /* ** This function determines if the machine is running a version of Windows ** based on the NT kernel. */ SQLITE_API int sqlite3_win32_is_nt(void){ #if SQLITE_OS_WINRT /* ** NOTE: The WinRT sub-platform is always assumed to be based on the NT ** kernel. */ return 1; #elif SQLITE_WIN32_GETVERSIONEX if( osInterlockedCompareExchange(&sqlite3_os_type, 0, 0)==0 ){ #if defined(SQLITE_WIN32_HAS_ANSI) OSVERSIONINFOA sInfo; sInfo.dwOSVersionInfoSize = sizeof(sInfo); osGetVersionExA(&sInfo); osInterlockedCompareExchange(&sqlite3_os_type, (sInfo.dwPlatformId == VER_PLATFORM_WIN32_NT) ? 2 : 1, 0); #elif defined(SQLITE_WIN32_HAS_WIDE) OSVERSIONINFOW sInfo; sInfo.dwOSVersionInfoSize = sizeof(sInfo); osGetVersionExW(&sInfo); osInterlockedCompareExchange(&sqlite3_os_type, (sInfo.dwPlatformId == VER_PLATFORM_WIN32_NT) ? 2 : 1, 0); #endif } return osInterlockedCompareExchange(&sqlite3_os_type, 2, 2)==2; #elif SQLITE_TEST return osInterlockedCompareExchange(&sqlite3_os_type, 2, 2)==2; #else /* ** NOTE: All sub-platforms where the GetVersionEx[AW] functions are ** deprecated are always assumed to be based on the NT kernel. */ return 1; #endif } #ifdef SQLITE_WIN32_MALLOC /* ** Allocate nBytes of memory. */ static void *winMemMalloc(int nBytes){ HANDLE hHeap; void *p; winMemAssertMagic(); hHeap = winMemGetHeap(); assert( hHeap!=0 ); assert( hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); #endif assert( nBytes>=0 ); p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); if( !p ){ sqlite3_log(SQLITE_NOMEM, "failed to HeapAlloc %u bytes (%lu), heap=%p", nBytes, osGetLastError(), (void*)hHeap); } return p; } /* ** Free memory. */ static void winMemFree(void *pPrior){ HANDLE hHeap; winMemAssertMagic(); hHeap = winMemGetHeap(); assert( hHeap!=0 ); assert( hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ); #endif if( !pPrior ) return; /* Passing NULL to HeapFree is undefined. */ if( !osHeapFree(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ){ sqlite3_log(SQLITE_NOMEM, "failed to HeapFree block %p (%lu), heap=%p", pPrior, osGetLastError(), (void*)hHeap); } } /* ** Change the size of an existing memory allocation */ static void *winMemRealloc(void *pPrior, int nBytes){ HANDLE hHeap; void *p; winMemAssertMagic(); hHeap = winMemGetHeap(); assert( hHeap!=0 ); assert( hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior) ); #endif assert( nBytes>=0 ); if( !pPrior ){ p = osHeapAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, (SIZE_T)nBytes); }else{ p = osHeapReAlloc(hHeap, SQLITE_WIN32_HEAP_FLAGS, pPrior, (SIZE_T)nBytes); } if( !p ){ sqlite3_log(SQLITE_NOMEM, "failed to %s %u bytes (%lu), heap=%p", pPrior ? "HeapReAlloc" : "HeapAlloc", nBytes, osGetLastError(), (void*)hHeap); } return p; } /* ** Return the size of an outstanding allocation, in bytes. */ static int winMemSize(void *p){ HANDLE hHeap; SIZE_T n; winMemAssertMagic(); hHeap = winMemGetHeap(); assert( hHeap!=0 ); assert( hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(hHeap, SQLITE_WIN32_HEAP_FLAGS, p) ); #endif if( !p ) return 0; n = osHeapSize(hHeap, SQLITE_WIN32_HEAP_FLAGS, p); if( n==(SIZE_T)-1 ){ sqlite3_log(SQLITE_NOMEM, "failed to HeapSize block %p (%lu), heap=%p", p, osGetLastError(), (void*)hHeap); return 0; } return (int)n; } /* ** Round up a request size to the next valid allocation size. */ static int winMemRoundup(int n){ return n; } /* ** Initialize this module. */ static int winMemInit(void *pAppData){ winMemData *pWinMemData = (winMemData *)pAppData; if( !pWinMemData ) return SQLITE_ERROR; assert( pWinMemData->magic1==WINMEM_MAGIC1 ); assert( pWinMemData->magic2==WINMEM_MAGIC2 ); #if !SQLITE_OS_WINRT && SQLITE_WIN32_HEAP_CREATE if( !pWinMemData->hHeap ){ DWORD dwInitialSize = SQLITE_WIN32_HEAP_INIT_SIZE; DWORD dwMaximumSize = (DWORD)sqlite3GlobalConfig.nHeap; if( dwMaximumSize==0 ){ dwMaximumSize = SQLITE_WIN32_HEAP_MAX_SIZE; }else if( dwInitialSize>dwMaximumSize ){ dwInitialSize = dwMaximumSize; } pWinMemData->hHeap = osHeapCreate(SQLITE_WIN32_HEAP_FLAGS, dwInitialSize, dwMaximumSize); if( !pWinMemData->hHeap ){ sqlite3_log(SQLITE_NOMEM, "failed to HeapCreate (%lu), flags=%u, initSize=%lu, maxSize=%lu", osGetLastError(), SQLITE_WIN32_HEAP_FLAGS, dwInitialSize, dwMaximumSize); return SQLITE_NOMEM_BKPT; } pWinMemData->bOwned = TRUE; assert( pWinMemData->bOwned ); } #else pWinMemData->hHeap = osGetProcessHeap(); if( !pWinMemData->hHeap ){ sqlite3_log(SQLITE_NOMEM, "failed to GetProcessHeap (%lu)", osGetLastError()); return SQLITE_NOMEM_BKPT; } pWinMemData->bOwned = FALSE; assert( !pWinMemData->bOwned ); #endif assert( pWinMemData->hHeap!=0 ); assert( pWinMemData->hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(pWinMemData->hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); #endif return SQLITE_OK; } /* ** Deinitialize this module. */ static void winMemShutdown(void *pAppData){ winMemData *pWinMemData = (winMemData *)pAppData; if( !pWinMemData ) return; assert( pWinMemData->magic1==WINMEM_MAGIC1 ); assert( pWinMemData->magic2==WINMEM_MAGIC2 ); if( pWinMemData->hHeap ){ assert( pWinMemData->hHeap!=INVALID_HANDLE_VALUE ); #if !SQLITE_OS_WINRT && defined(SQLITE_WIN32_MALLOC_VALIDATE) assert( osHeapValidate(pWinMemData->hHeap, SQLITE_WIN32_HEAP_FLAGS, NULL) ); #endif if( pWinMemData->bOwned ){ if( !osHeapDestroy(pWinMemData->hHeap) ){ sqlite3_log(SQLITE_NOMEM, "failed to HeapDestroy (%lu), heap=%p", osGetLastError(), (void*)pWinMemData->hHeap); } pWinMemData->bOwned = FALSE; } pWinMemData->hHeap = NULL; } } /* ** Populate the low-level memory allocation function pointers in ** sqlite3GlobalConfig.m with pointers to the routines in this file. The ** arguments specify the block of memory to manage. ** ** This routine is only called by sqlite3_config(), and therefore ** is not required to be threadsafe (it is not). */ SQLITE_PRIVATE const sqlite3_mem_methods *sqlite3MemGetWin32(void){ static const sqlite3_mem_methods winMemMethods = { winMemMalloc, winMemFree, winMemRealloc, winMemSize, winMemRoundup, winMemInit, winMemShutdown, &win_mem_data }; return &winMemMethods; } SQLITE_PRIVATE void sqlite3MemSetDefault(void){ sqlite3_config(SQLITE_CONFIG_MALLOC, sqlite3MemGetWin32()); } #endif /* SQLITE_WIN32_MALLOC */ /* ** Convert a UTF-8 string to Microsoft Unicode. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static LPWSTR winUtf8ToUnicode(const char *zText){ int nChar; LPWSTR zWideText; nChar = osMultiByteToWideChar(CP_UTF8, 0, zText, -1, NULL, 0); if( nChar==0 ){ return 0; } zWideText = sqlite3MallocZero( nChar*sizeof(WCHAR) ); if( zWideText==0 ){ return 0; } nChar = osMultiByteToWideChar(CP_UTF8, 0, zText, -1, zWideText, nChar); if( nChar==0 ){ sqlite3_free(zWideText); zWideText = 0; } return zWideText; } /* ** Convert a Microsoft Unicode string to UTF-8. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static char *winUnicodeToUtf8(LPCWSTR zWideText){ int nByte; char *zText; nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, 0, 0, 0, 0); if( nByte == 0 ){ return 0; } zText = sqlite3MallocZero( nByte ); if( zText==0 ){ return 0; } nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, zText, nByte, 0, 0); if( nByte == 0 ){ sqlite3_free(zText); zText = 0; } return zText; } /* ** Convert an ANSI string to Microsoft Unicode, using the ANSI or OEM ** code page. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static LPWSTR winMbcsToUnicode(const char *zText, int useAnsi){ int nByte; LPWSTR zMbcsText; int codepage = useAnsi ? CP_ACP : CP_OEMCP; nByte = osMultiByteToWideChar(codepage, 0, zText, -1, NULL, 0)*sizeof(WCHAR); if( nByte==0 ){ return 0; } zMbcsText = sqlite3MallocZero( nByte*sizeof(WCHAR) ); if( zMbcsText==0 ){ return 0; } nByte = osMultiByteToWideChar(codepage, 0, zText, -1, zMbcsText, nByte); if( nByte==0 ){ sqlite3_free(zMbcsText); zMbcsText = 0; } return zMbcsText; } /* ** Convert a Microsoft Unicode string to a multi-byte character string, ** using the ANSI or OEM code page. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static char *winUnicodeToMbcs(LPCWSTR zWideText, int useAnsi){ int nByte; char *zText; int codepage = useAnsi ? CP_ACP : CP_OEMCP; nByte = osWideCharToMultiByte(codepage, 0, zWideText, -1, 0, 0, 0, 0); if( nByte == 0 ){ return 0; } zText = sqlite3MallocZero( nByte ); if( zText==0 ){ return 0; } nByte = osWideCharToMultiByte(codepage, 0, zWideText, -1, zText, nByte, 0, 0); if( nByte == 0 ){ sqlite3_free(zText); zText = 0; } return zText; } /* ** Convert a multi-byte character string to UTF-8. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static char *winMbcsToUtf8(const char *zText, int useAnsi){ char *zTextUtf8; LPWSTR zTmpWide; zTmpWide = winMbcsToUnicode(zText, useAnsi); if( zTmpWide==0 ){ return 0; } zTextUtf8 = winUnicodeToUtf8(zTmpWide); sqlite3_free(zTmpWide); return zTextUtf8; } /* ** Convert a UTF-8 string to a multi-byte character string. ** ** Space to hold the returned string is obtained from sqlite3_malloc(). */ static char *winUtf8ToMbcs(const char *zText, int useAnsi){ char *zTextMbcs; LPWSTR zTmpWide; zTmpWide = winUtf8ToUnicode(zText); if( zTmpWide==0 ){ return 0; } zTextMbcs = winUnicodeToMbcs(zTmpWide, useAnsi); sqlite3_free(zTmpWide); return zTextMbcs; } /* ** This is a public wrapper for the winUtf8ToUnicode() function. */ SQLITE_API LPWSTR sqlite3_win32_utf8_to_unicode(const char *zText){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winUtf8ToUnicode(zText); } /* ** This is a public wrapper for the winUnicodeToUtf8() function. */ SQLITE_API char *sqlite3_win32_unicode_to_utf8(LPCWSTR zWideText){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zWideText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winUnicodeToUtf8(zWideText); } /* ** This is a public wrapper for the winMbcsToUtf8() function. */ SQLITE_API char *sqlite3_win32_mbcs_to_utf8(const char *zText){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winMbcsToUtf8(zText, osAreFileApisANSI()); } /* ** This is a public wrapper for the winMbcsToUtf8() function. */ SQLITE_API char *sqlite3_win32_mbcs_to_utf8_v2(const char *zText, int useAnsi){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winMbcsToUtf8(zText, useAnsi); } /* ** This is a public wrapper for the winUtf8ToMbcs() function. */ SQLITE_API char *sqlite3_win32_utf8_to_mbcs(const char *zText){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winUtf8ToMbcs(zText, osAreFileApisANSI()); } /* ** This is a public wrapper for the winUtf8ToMbcs() function. */ SQLITE_API char *sqlite3_win32_utf8_to_mbcs_v2(const char *zText, int useAnsi){ #ifdef SQLITE_ENABLE_API_ARMOR if( !zText ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize() ) return 0; #endif return winUtf8ToMbcs(zText, useAnsi); } /* ** This function is the same as sqlite3_win32_set_directory (below); however, ** it accepts a UTF-8 string. */ SQLITE_API int sqlite3_win32_set_directory8( unsigned long type, /* Identifier for directory being set or reset */ const char *zValue /* New value for directory being set or reset */ ){ char **ppDirectory = 0; #ifndef SQLITE_OMIT_AUTOINIT int rc = sqlite3_initialize(); if( rc ) return rc; #endif if( type==SQLITE_WIN32_DATA_DIRECTORY_TYPE ){ ppDirectory = &sqlite3_data_directory; }else if( type==SQLITE_WIN32_TEMP_DIRECTORY_TYPE ){ ppDirectory = &sqlite3_temp_directory; } assert( !ppDirectory || type==SQLITE_WIN32_DATA_DIRECTORY_TYPE || type==SQLITE_WIN32_TEMP_DIRECTORY_TYPE ); assert( !ppDirectory || sqlite3MemdebugHasType(*ppDirectory, MEMTYPE_HEAP) ); if( ppDirectory ){ char *zCopy = 0; if( zValue && zValue[0] ){ zCopy = sqlite3_mprintf("%s", zValue); if ( zCopy==0 ){ return SQLITE_NOMEM_BKPT; } } sqlite3_free(*ppDirectory); *ppDirectory = zCopy; return SQLITE_OK; } return SQLITE_ERROR; } /* ** This function is the same as sqlite3_win32_set_directory (below); however, ** it accepts a UTF-16 string. */ SQLITE_API int sqlite3_win32_set_directory16( unsigned long type, /* Identifier for directory being set or reset */ const void *zValue /* New value for directory being set or reset */ ){ int rc; char *zUtf8 = 0; if( zValue ){ zUtf8 = sqlite3_win32_unicode_to_utf8(zValue); if( zUtf8==0 ) return SQLITE_NOMEM_BKPT; } rc = sqlite3_win32_set_directory8(type, zUtf8); if( zUtf8 ) sqlite3_free(zUtf8); return rc; } /* ** This function sets the data directory or the temporary directory based on ** the provided arguments. The type argument must be 1 in order to set the ** data directory or 2 in order to set the temporary directory. The zValue ** argument is the name of the directory to use. The return value will be ** SQLITE_OK if successful. */ SQLITE_API int sqlite3_win32_set_directory( unsigned long type, /* Identifier for directory being set or reset */ void *zValue /* New value for directory being set or reset */ ){ return sqlite3_win32_set_directory16(type, zValue); } /* ** The return value of winGetLastErrorMsg ** is zero if the error message fits in the buffer, or non-zero ** otherwise (if the message was truncated). */ static int winGetLastErrorMsg(DWORD lastErrno, int nBuf, char *zBuf){ /* FormatMessage returns 0 on failure. Otherwise it ** returns the number of TCHARs written to the output ** buffer, excluding the terminating null char. */ DWORD dwLen = 0; char *zOut = 0; if( osIsNT() ){ #if SQLITE_OS_WINRT WCHAR zTempWide[SQLITE_WIN32_MAX_ERRMSG_CHARS+1]; dwLen = osFormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, lastErrno, 0, zTempWide, SQLITE_WIN32_MAX_ERRMSG_CHARS, 0); #else LPWSTR zTempWide = NULL; dwLen = osFormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, lastErrno, 0, (LPWSTR) &zTempWide, 0, 0); #endif if( dwLen > 0 ){ /* allocate a buffer and convert to UTF8 */ sqlite3BeginBenignMalloc(); zOut = winUnicodeToUtf8(zTempWide); sqlite3EndBenignMalloc(); #if !SQLITE_OS_WINRT /* free the system buffer allocated by FormatMessage */ osLocalFree(zTempWide); #endif } } #ifdef SQLITE_WIN32_HAS_ANSI else{ char *zTemp = NULL; dwLen = osFormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, lastErrno, 0, (LPSTR) &zTemp, 0, 0); if( dwLen > 0 ){ /* allocate a buffer and convert to UTF8 */ sqlite3BeginBenignMalloc(); zOut = winMbcsToUtf8(zTemp, osAreFileApisANSI()); sqlite3EndBenignMalloc(); /* free the system buffer allocated by FormatMessage */ osLocalFree(zTemp); } } #endif if( 0 == dwLen ){ sqlite3_snprintf(nBuf, zBuf, "OsError 0x%lx (%lu)", lastErrno, lastErrno); }else{ /* copy a maximum of nBuf chars to output buffer */ sqlite3_snprintf(nBuf, zBuf, "%s", zOut); /* free the UTF8 buffer */ sqlite3_free(zOut); } return 0; } /* ** ** This function - winLogErrorAtLine() - is only ever called via the macro ** winLogError(). ** ** This routine is invoked after an error occurs in an OS function. ** It logs a message using sqlite3_log() containing the current value of ** error code and, if possible, the human-readable equivalent from ** FormatMessage. ** ** The first argument passed to the macro should be the error code that ** will be returned to SQLite (e.g. SQLITE_IOERR_DELETE, SQLITE_CANTOPEN). ** The two subsequent arguments should be the name of the OS function that ** failed and the associated file-system path, if any. */ #define winLogError(a,b,c,d) winLogErrorAtLine(a,b,c,d,__LINE__) static int winLogErrorAtLine( int errcode, /* SQLite error code */ DWORD lastErrno, /* Win32 last error */ const char *zFunc, /* Name of OS function that failed */ const char *zPath, /* File path associated with error */ int iLine /* Source line number where error occurred */ ){ char zMsg[500]; /* Human readable error text */ int i; /* Loop counter */ zMsg[0] = 0; winGetLastErrorMsg(lastErrno, sizeof(zMsg), zMsg); assert( errcode!=SQLITE_OK ); if( zPath==0 ) zPath = ""; for(i=0; zMsg[i] && zMsg[i]!='\r' && zMsg[i]!='\n'; i++){} zMsg[i] = 0; sqlite3_log(errcode, "os_win.c:%d: (%lu) %s(%s) - %s", iLine, lastErrno, zFunc, zPath, zMsg ); return errcode; } /* ** The number of times that a ReadFile(), WriteFile(), and DeleteFile() ** will be retried following a locking error - probably caused by ** antivirus software. Also the initial delay before the first retry. ** The delay increases linearly with each retry. */ #ifndef SQLITE_WIN32_IOERR_RETRY # define SQLITE_WIN32_IOERR_RETRY 10 #endif #ifndef SQLITE_WIN32_IOERR_RETRY_DELAY # define SQLITE_WIN32_IOERR_RETRY_DELAY 25 #endif static int winIoerrRetry = SQLITE_WIN32_IOERR_RETRY; static int winIoerrRetryDelay = SQLITE_WIN32_IOERR_RETRY_DELAY; /* ** The "winIoerrCanRetry1" macro is used to determine if a particular I/O ** error code obtained via GetLastError() is eligible to be retried. It ** must accept the error code DWORD as its only argument and should return ** non-zero if the error code is transient in nature and the operation ** responsible for generating the original error might succeed upon being ** retried. The argument to this macro should be a variable. ** ** Additionally, a macro named "winIoerrCanRetry2" may be defined. If it ** is defined, it will be consulted only when the macro "winIoerrCanRetry1" ** returns zero. The "winIoerrCanRetry2" macro is completely optional and ** may be used to include additional error codes in the set that should ** result in the failing I/O operation being retried by the caller. If ** defined, the "winIoerrCanRetry2" macro must exhibit external semantics ** identical to those of the "winIoerrCanRetry1" macro. */ #if !defined(winIoerrCanRetry1) #define winIoerrCanRetry1(a) (((a)==ERROR_ACCESS_DENIED) || \ ((a)==ERROR_SHARING_VIOLATION) || \ ((a)==ERROR_LOCK_VIOLATION) || \ ((a)==ERROR_DEV_NOT_EXIST) || \ ((a)==ERROR_NETNAME_DELETED) || \ ((a)==ERROR_SEM_TIMEOUT) || \ ((a)==ERROR_NETWORK_UNREACHABLE)) #endif /* ** If a ReadFile() or WriteFile() error occurs, invoke this routine ** to see if it should be retried. Return TRUE to retry. Return FALSE ** to give up with an error. */ static int winRetryIoerr(int *pnRetry, DWORD *pError){ DWORD e = osGetLastError(); if( *pnRetry>=winIoerrRetry ){ if( pError ){ *pError = e; } return 0; } if( winIoerrCanRetry1(e) ){ sqlite3_win32_sleep(winIoerrRetryDelay*(1+*pnRetry)); ++*pnRetry; return 1; } #if defined(winIoerrCanRetry2) else if( winIoerrCanRetry2(e) ){ sqlite3_win32_sleep(winIoerrRetryDelay*(1+*pnRetry)); ++*pnRetry; return 1; } #endif if( pError ){ *pError = e; } return 0; } /* ** Log a I/O error retry episode. */ static void winLogIoerr(int nRetry, int lineno){ if( nRetry ){ sqlite3_log(SQLITE_NOTICE, "delayed %dms for lock/sharing conflict at line %d", winIoerrRetryDelay*nRetry*(nRetry+1)/2, lineno ); } } /* ** This #if does not rely on the SQLITE_OS_WINCE define because the ** corresponding section in "date.c" cannot use it. */ #if !defined(SQLITE_OMIT_LOCALTIME) && defined(_WIN32_WCE) && \ (!defined(SQLITE_MSVC_LOCALTIME_API) || !SQLITE_MSVC_LOCALTIME_API) /* ** The MSVC CRT on Windows CE may not have a localtime() function. ** So define a substitute. */ /* # include */ struct tm *__cdecl localtime(const time_t *t) { static struct tm y; FILETIME uTm, lTm; SYSTEMTIME pTm; sqlite3_int64 t64; t64 = *t; t64 = (t64 + 11644473600)*10000000; uTm.dwLowDateTime = (DWORD)(t64 & 0xFFFFFFFF); uTm.dwHighDateTime= (DWORD)(t64 >> 32); osFileTimeToLocalFileTime(&uTm,&lTm); osFileTimeToSystemTime(&lTm,&pTm); y.tm_year = pTm.wYear - 1900; y.tm_mon = pTm.wMonth - 1; y.tm_wday = pTm.wDayOfWeek; y.tm_mday = pTm.wDay; y.tm_hour = pTm.wHour; y.tm_min = pTm.wMinute; y.tm_sec = pTm.wSecond; return &y; } #endif #if SQLITE_OS_WINCE /************************************************************************* ** This section contains code for WinCE only. */ #define HANDLE_TO_WINFILE(a) (winFile*)&((char*)a)[-(int)offsetof(winFile,h)] /* ** Acquire a lock on the handle h */ static void winceMutexAcquire(HANDLE h){ DWORD dwErr; do { dwErr = osWaitForSingleObject(h, INFINITE); } while (dwErr != WAIT_OBJECT_0 && dwErr != WAIT_ABANDONED); } /* ** Release a lock acquired by winceMutexAcquire() */ #define winceMutexRelease(h) ReleaseMutex(h) /* ** Create the mutex and shared memory used for locking in the file ** descriptor pFile */ static int winceCreateLock(const char *zFilename, winFile *pFile){ LPWSTR zTok; LPWSTR zName; DWORD lastErrno; BOOL bLogged = FALSE; BOOL bInit = TRUE; zName = winUtf8ToUnicode(zFilename); if( zName==0 ){ /* out of memory */ return SQLITE_IOERR_NOMEM_BKPT; } /* Initialize the local lockdata */ memset(&pFile->local, 0, sizeof(pFile->local)); /* Replace the backslashes from the filename and lowercase it ** to derive a mutex name. */ zTok = osCharLowerW(zName); for (;*zTok;zTok++){ if (*zTok == '\\') *zTok = '_'; } /* Create/open the named mutex */ pFile->hMutex = osCreateMutexW(NULL, FALSE, zName); if (!pFile->hMutex){ pFile->lastErrno = osGetLastError(); sqlite3_free(zName); return winLogError(SQLITE_IOERR, pFile->lastErrno, "winceCreateLock1", zFilename); } /* Acquire the mutex before continuing */ winceMutexAcquire(pFile->hMutex); /* Since the names of named mutexes, semaphores, file mappings etc are ** case-sensitive, take advantage of that by uppercasing the mutex name ** and using that as the shared filemapping name. */ osCharUpperW(zName); pFile->hShared = osCreateFileMappingW(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, sizeof(winceLock), zName); /* Set a flag that indicates we're the first to create the memory so it ** must be zero-initialized */ lastErrno = osGetLastError(); if (lastErrno == ERROR_ALREADY_EXISTS){ bInit = FALSE; } sqlite3_free(zName); /* If we succeeded in making the shared memory handle, map it. */ if( pFile->hShared ){ pFile->shared = (winceLock*)osMapViewOfFile(pFile->hShared, FILE_MAP_READ|FILE_MAP_WRITE, 0, 0, sizeof(winceLock)); /* If mapping failed, close the shared memory handle and erase it */ if( !pFile->shared ){ pFile->lastErrno = osGetLastError(); winLogError(SQLITE_IOERR, pFile->lastErrno, "winceCreateLock2", zFilename); bLogged = TRUE; osCloseHandle(pFile->hShared); pFile->hShared = NULL; } } /* If shared memory could not be created, then close the mutex and fail */ if( pFile->hShared==NULL ){ if( !bLogged ){ pFile->lastErrno = lastErrno; winLogError(SQLITE_IOERR, pFile->lastErrno, "winceCreateLock3", zFilename); bLogged = TRUE; } winceMutexRelease(pFile->hMutex); osCloseHandle(pFile->hMutex); pFile->hMutex = NULL; return SQLITE_IOERR; } /* Initialize the shared memory if we're supposed to */ if( bInit ){ memset(pFile->shared, 0, sizeof(winceLock)); } winceMutexRelease(pFile->hMutex); return SQLITE_OK; } /* ** Destroy the part of winFile that deals with wince locks */ static void winceDestroyLock(winFile *pFile){ if (pFile->hMutex){ /* Acquire the mutex */ winceMutexAcquire(pFile->hMutex); /* The following blocks should probably assert in debug mode, but they are to cleanup in case any locks remained open */ if (pFile->local.nReaders){ pFile->shared->nReaders --; } if (pFile->local.bReserved){ pFile->shared->bReserved = FALSE; } if (pFile->local.bPending){ pFile->shared->bPending = FALSE; } if (pFile->local.bExclusive){ pFile->shared->bExclusive = FALSE; } /* De-reference and close our copy of the shared memory handle */ osUnmapViewOfFile(pFile->shared); osCloseHandle(pFile->hShared); /* Done with the mutex */ winceMutexRelease(pFile->hMutex); osCloseHandle(pFile->hMutex); pFile->hMutex = NULL; } } /* ** An implementation of the LockFile() API of Windows for CE */ static BOOL winceLockFile( LPHANDLE phFile, DWORD dwFileOffsetLow, DWORD dwFileOffsetHigh, DWORD nNumberOfBytesToLockLow, DWORD nNumberOfBytesToLockHigh ){ winFile *pFile = HANDLE_TO_WINFILE(phFile); BOOL bReturn = FALSE; UNUSED_PARAMETER(dwFileOffsetHigh); UNUSED_PARAMETER(nNumberOfBytesToLockHigh); if (!pFile->hMutex) return TRUE; winceMutexAcquire(pFile->hMutex); /* Wanting an exclusive lock? */ if (dwFileOffsetLow == (DWORD)SHARED_FIRST && nNumberOfBytesToLockLow == (DWORD)SHARED_SIZE){ if (pFile->shared->nReaders == 0 && pFile->shared->bExclusive == 0){ pFile->shared->bExclusive = TRUE; pFile->local.bExclusive = TRUE; bReturn = TRUE; } } /* Want a read-only lock? */ else if (dwFileOffsetLow == (DWORD)SHARED_FIRST && nNumberOfBytesToLockLow == 1){ if (pFile->shared->bExclusive == 0){ pFile->local.nReaders ++; if (pFile->local.nReaders == 1){ pFile->shared->nReaders ++; } bReturn = TRUE; } } /* Want a pending lock? */ else if (dwFileOffsetLow == (DWORD)PENDING_BYTE && nNumberOfBytesToLockLow == 1){ /* If no pending lock has been acquired, then acquire it */ if (pFile->shared->bPending == 0) { pFile->shared->bPending = TRUE; pFile->local.bPending = TRUE; bReturn = TRUE; } } /* Want a reserved lock? */ else if (dwFileOffsetLow == (DWORD)RESERVED_BYTE && nNumberOfBytesToLockLow == 1){ if (pFile->shared->bReserved == 0) { pFile->shared->bReserved = TRUE; pFile->local.bReserved = TRUE; bReturn = TRUE; } } winceMutexRelease(pFile->hMutex); return bReturn; } /* ** An implementation of the UnlockFile API of Windows for CE */ static BOOL winceUnlockFile( LPHANDLE phFile, DWORD dwFileOffsetLow, DWORD dwFileOffsetHigh, DWORD nNumberOfBytesToUnlockLow, DWORD nNumberOfBytesToUnlockHigh ){ winFile *pFile = HANDLE_TO_WINFILE(phFile); BOOL bReturn = FALSE; UNUSED_PARAMETER(dwFileOffsetHigh); UNUSED_PARAMETER(nNumberOfBytesToUnlockHigh); if (!pFile->hMutex) return TRUE; winceMutexAcquire(pFile->hMutex); /* Releasing a reader lock or an exclusive lock */ if (dwFileOffsetLow == (DWORD)SHARED_FIRST){ /* Did we have an exclusive lock? */ if (pFile->local.bExclusive){ assert(nNumberOfBytesToUnlockLow == (DWORD)SHARED_SIZE); pFile->local.bExclusive = FALSE; pFile->shared->bExclusive = FALSE; bReturn = TRUE; } /* Did we just have a reader lock? */ else if (pFile->local.nReaders){ assert(nNumberOfBytesToUnlockLow == (DWORD)SHARED_SIZE || nNumberOfBytesToUnlockLow == 1); pFile->local.nReaders --; if (pFile->local.nReaders == 0) { pFile->shared->nReaders --; } bReturn = TRUE; } } /* Releasing a pending lock */ else if (dwFileOffsetLow == (DWORD)PENDING_BYTE && nNumberOfBytesToUnlockLow == 1){ if (pFile->local.bPending){ pFile->local.bPending = FALSE; pFile->shared->bPending = FALSE; bReturn = TRUE; } } /* Releasing a reserved lock */ else if (dwFileOffsetLow == (DWORD)RESERVED_BYTE && nNumberOfBytesToUnlockLow == 1){ if (pFile->local.bReserved) { pFile->local.bReserved = FALSE; pFile->shared->bReserved = FALSE; bReturn = TRUE; } } winceMutexRelease(pFile->hMutex); return bReturn; } /* ** End of the special code for wince *****************************************************************************/ #endif /* SQLITE_OS_WINCE */ /* ** Lock a file region. */ static BOOL winLockFile( LPHANDLE phFile, DWORD flags, DWORD offsetLow, DWORD offsetHigh, DWORD numBytesLow, DWORD numBytesHigh ){ #if SQLITE_OS_WINCE /* ** NOTE: Windows CE is handled differently here due its lack of the Win32 ** API LockFile. */ return winceLockFile(phFile, offsetLow, offsetHigh, numBytesLow, numBytesHigh); #else if( osIsNT() ){ OVERLAPPED ovlp; memset(&ovlp, 0, sizeof(OVERLAPPED)); ovlp.Offset = offsetLow; ovlp.OffsetHigh = offsetHigh; return osLockFileEx(*phFile, flags, 0, numBytesLow, numBytesHigh, &ovlp); }else{ return osLockFile(*phFile, offsetLow, offsetHigh, numBytesLow, numBytesHigh); } #endif } /* ** Unlock a file region. */ static BOOL winUnlockFile( LPHANDLE phFile, DWORD offsetLow, DWORD offsetHigh, DWORD numBytesLow, DWORD numBytesHigh ){ #if SQLITE_OS_WINCE /* ** NOTE: Windows CE is handled differently here due its lack of the Win32 ** API UnlockFile. */ return winceUnlockFile(phFile, offsetLow, offsetHigh, numBytesLow, numBytesHigh); #else if( osIsNT() ){ OVERLAPPED ovlp; memset(&ovlp, 0, sizeof(OVERLAPPED)); ovlp.Offset = offsetLow; ovlp.OffsetHigh = offsetHigh; return osUnlockFileEx(*phFile, 0, numBytesLow, numBytesHigh, &ovlp); }else{ return osUnlockFile(*phFile, offsetLow, offsetHigh, numBytesLow, numBytesHigh); } #endif } /***************************************************************************** ** The next group of routines implement the I/O methods specified ** by the sqlite3_io_methods object. ******************************************************************************/ /* ** Some Microsoft compilers lack this definition. */ #ifndef INVALID_SET_FILE_POINTER # define INVALID_SET_FILE_POINTER ((DWORD)-1) #endif /* ** Move the current position of the file handle passed as the first ** argument to offset iOffset within the file. If successful, return 0. ** Otherwise, set pFile->lastErrno and return non-zero. */ static int winSeekFile(winFile *pFile, sqlite3_int64 iOffset){ #if !SQLITE_OS_WINRT LONG upperBits; /* Most sig. 32 bits of new offset */ LONG lowerBits; /* Least sig. 32 bits of new offset */ DWORD dwRet; /* Value returned by SetFilePointer() */ DWORD lastErrno; /* Value returned by GetLastError() */ OSTRACE(("SEEK file=%p, offset=%lld\n", pFile->h, iOffset)); upperBits = (LONG)((iOffset>>32) & 0x7fffffff); lowerBits = (LONG)(iOffset & 0xffffffff); /* API oddity: If successful, SetFilePointer() returns a dword ** containing the lower 32-bits of the new file-offset. Or, if it fails, ** it returns INVALID_SET_FILE_POINTER. However according to MSDN, ** INVALID_SET_FILE_POINTER may also be a valid new offset. So to determine ** whether an error has actually occurred, it is also necessary to call ** GetLastError(). */ dwRet = osSetFilePointer(pFile->h, lowerBits, &upperBits, FILE_BEGIN); if( (dwRet==INVALID_SET_FILE_POINTER && ((lastErrno = osGetLastError())!=NO_ERROR)) ){ pFile->lastErrno = lastErrno; winLogError(SQLITE_IOERR_SEEK, pFile->lastErrno, "winSeekFile", pFile->zPath); OSTRACE(("SEEK file=%p, rc=SQLITE_IOERR_SEEK\n", pFile->h)); return 1; } OSTRACE(("SEEK file=%p, rc=SQLITE_OK\n", pFile->h)); return 0; #else /* ** Same as above, except that this implementation works for WinRT. */ LARGE_INTEGER x; /* The new offset */ BOOL bRet; /* Value returned by SetFilePointerEx() */ x.QuadPart = iOffset; bRet = osSetFilePointerEx(pFile->h, x, 0, FILE_BEGIN); if(!bRet){ pFile->lastErrno = osGetLastError(); winLogError(SQLITE_IOERR_SEEK, pFile->lastErrno, "winSeekFile", pFile->zPath); OSTRACE(("SEEK file=%p, rc=SQLITE_IOERR_SEEK\n", pFile->h)); return 1; } OSTRACE(("SEEK file=%p, rc=SQLITE_OK\n", pFile->h)); return 0; #endif } #if SQLITE_MAX_MMAP_SIZE>0 /* Forward references to VFS helper methods used for memory mapped files */ static int winMapfile(winFile*, sqlite3_int64); static int winUnmapfile(winFile*); #endif /* ** Close a file. ** ** It is reported that an attempt to close a handle might sometimes ** fail. This is a very unreasonable result, but Windows is notorious ** for being unreasonable so I do not doubt that it might happen. If ** the close fails, we pause for 100 milliseconds and try again. As ** many as MX_CLOSE_ATTEMPT attempts to close the handle are made before ** giving up and returning an error. */ #define MX_CLOSE_ATTEMPT 3 static int winClose(sqlite3_file *id){ int rc, cnt = 0; winFile *pFile = (winFile*)id; assert( id!=0 ); #ifndef SQLITE_OMIT_WAL assert( pFile->pShm==0 ); #endif assert( pFile->h!=NULL && pFile->h!=INVALID_HANDLE_VALUE ); OSTRACE(("CLOSE pid=%lu, pFile=%p, file=%p\n", osGetCurrentProcessId(), pFile, pFile->h)); #if SQLITE_MAX_MMAP_SIZE>0 winUnmapfile(pFile); #endif do{ rc = osCloseHandle(pFile->h); /* SimulateIOError( rc=0; cnt=MX_CLOSE_ATTEMPT; ); */ }while( rc==0 && ++cnt < MX_CLOSE_ATTEMPT && (sqlite3_win32_sleep(100), 1) ); #if SQLITE_OS_WINCE #define WINCE_DELETION_ATTEMPTS 3 { winVfsAppData *pAppData = (winVfsAppData*)pFile->pVfs->pAppData; if( pAppData==NULL || !pAppData->bNoLock ){ winceDestroyLock(pFile); } } if( pFile->zDeleteOnClose ){ int cnt = 0; while( osDeleteFileW(pFile->zDeleteOnClose)==0 && osGetFileAttributesW(pFile->zDeleteOnClose)!=0xffffffff && cnt++ < WINCE_DELETION_ATTEMPTS ){ sqlite3_win32_sleep(100); /* Wait a little before trying again */ } sqlite3_free(pFile->zDeleteOnClose); } #endif if( rc ){ pFile->h = NULL; } OpenCounter(-1); OSTRACE(("CLOSE pid=%lu, pFile=%p, file=%p, rc=%s\n", osGetCurrentProcessId(), pFile, pFile->h, rc ? "ok" : "failed")); return rc ? SQLITE_OK : winLogError(SQLITE_IOERR_CLOSE, osGetLastError(), "winClose", pFile->zPath); } /* ** Read data from a file into a buffer. Return SQLITE_OK if all ** bytes were read successfully and SQLITE_IOERR if anything goes ** wrong. */ static int winRead( sqlite3_file *id, /* File to read from */ void *pBuf, /* Write content into this buffer */ int amt, /* Number of bytes to read */ sqlite3_int64 offset /* Begin reading at this offset */ ){ #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED) OVERLAPPED overlapped; /* The offset for ReadFile. */ #endif winFile *pFile = (winFile*)id; /* file handle */ DWORD nRead; /* Number of bytes actually read from file */ int nRetry = 0; /* Number of retrys */ assert( id!=0 ); assert( amt>0 ); assert( offset>=0 ); SimulateIOError(return SQLITE_IOERR_READ); OSTRACE(("READ pid=%lu, pFile=%p, file=%p, buffer=%p, amount=%d, " "offset=%lld, lock=%d\n", osGetCurrentProcessId(), pFile, pFile->h, pBuf, amt, offset, pFile->locktype)); #if SQLITE_MAX_MMAP_SIZE>0 /* Deal with as much of this read request as possible by transfering ** data from the memory mapping using memcpy(). */ if( offsetmmapSize ){ if( offset+amt <= pFile->mmapSize ){ memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], amt); OSTRACE(("READ-MMAP pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; }else{ int nCopy = (int)(pFile->mmapSize - offset); memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], nCopy); pBuf = &((u8 *)pBuf)[nCopy]; amt -= nCopy; offset += nCopy; } } #endif #if SQLITE_OS_WINCE || defined(SQLITE_WIN32_NO_OVERLAPPED) if( winSeekFile(pFile, offset) ){ OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_FULL\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_FULL; } while( !osReadFile(pFile->h, pBuf, amt, &nRead, 0) ){ #else memset(&overlapped, 0, sizeof(OVERLAPPED)); overlapped.Offset = (LONG)(offset & 0xffffffff); overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff); while( !osReadFile(pFile->h, pBuf, amt, &nRead, &overlapped) && osGetLastError()!=ERROR_HANDLE_EOF ){ #endif DWORD lastErrno; if( winRetryIoerr(&nRetry, &lastErrno) ) continue; pFile->lastErrno = lastErrno; OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_READ\n", osGetCurrentProcessId(), pFile, pFile->h)); return winLogError(SQLITE_IOERR_READ, pFile->lastErrno, "winRead", pFile->zPath); } winLogIoerr(nRetry, __LINE__); if( nRead<(DWORD)amt ){ /* Unread parts of the buffer must be zero-filled */ memset(&((char*)pBuf)[nRead], 0, amt-nRead); OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_SHORT_READ\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_IOERR_SHORT_READ; } OSTRACE(("READ pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; } /* ** Write data from a buffer into a file. Return SQLITE_OK on success ** or some other error code on failure. */ static int winWrite( sqlite3_file *id, /* File to write into */ const void *pBuf, /* The bytes to be written */ int amt, /* Number of bytes to write */ sqlite3_int64 offset /* Offset into the file to begin writing at */ ){ int rc = 0; /* True if error has occurred, else false */ winFile *pFile = (winFile*)id; /* File handle */ int nRetry = 0; /* Number of retries */ assert( amt>0 ); assert( pFile ); SimulateIOError(return SQLITE_IOERR_WRITE); SimulateDiskfullError(return SQLITE_FULL); OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, buffer=%p, amount=%d, " "offset=%lld, lock=%d\n", osGetCurrentProcessId(), pFile, pFile->h, pBuf, amt, offset, pFile->locktype)); #if defined(SQLITE_MMAP_READWRITE) && SQLITE_MAX_MMAP_SIZE>0 /* Deal with as much of this write request as possible by transfering ** data from the memory mapping using memcpy(). */ if( offsetmmapSize ){ if( offset+amt <= pFile->mmapSize ){ memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, amt); OSTRACE(("WRITE-MMAP pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; }else{ int nCopy = (int)(pFile->mmapSize - offset); memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, nCopy); pBuf = &((u8 *)pBuf)[nCopy]; amt -= nCopy; offset += nCopy; } } #endif #if SQLITE_OS_WINCE || defined(SQLITE_WIN32_NO_OVERLAPPED) rc = winSeekFile(pFile, offset); if( rc==0 ){ #else { #endif #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED) OVERLAPPED overlapped; /* The offset for WriteFile. */ #endif u8 *aRem = (u8 *)pBuf; /* Data yet to be written */ int nRem = amt; /* Number of bytes yet to be written */ DWORD nWrite; /* Bytes written by each WriteFile() call */ DWORD lastErrno = NO_ERROR; /* Value returned by GetLastError() */ #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED) memset(&overlapped, 0, sizeof(OVERLAPPED)); overlapped.Offset = (LONG)(offset & 0xffffffff); overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff); #endif while( nRem>0 ){ #if SQLITE_OS_WINCE || defined(SQLITE_WIN32_NO_OVERLAPPED) if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, 0) ){ #else if( !osWriteFile(pFile->h, aRem, nRem, &nWrite, &overlapped) ){ #endif if( winRetryIoerr(&nRetry, &lastErrno) ) continue; break; } assert( nWrite==0 || nWrite<=(DWORD)nRem ); if( nWrite==0 || nWrite>(DWORD)nRem ){ lastErrno = osGetLastError(); break; } #if !SQLITE_OS_WINCE && !defined(SQLITE_WIN32_NO_OVERLAPPED) offset += nWrite; overlapped.Offset = (LONG)(offset & 0xffffffff); overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff); #endif aRem += nWrite; nRem -= nWrite; } if( nRem>0 ){ pFile->lastErrno = lastErrno; rc = 1; } } if( rc ){ if( ( pFile->lastErrno==ERROR_HANDLE_DISK_FULL ) || ( pFile->lastErrno==ERROR_DISK_FULL )){ OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, rc=SQLITE_FULL\n", osGetCurrentProcessId(), pFile, pFile->h)); return winLogError(SQLITE_FULL, pFile->lastErrno, "winWrite1", pFile->zPath); } OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_WRITE\n", osGetCurrentProcessId(), pFile, pFile->h)); return winLogError(SQLITE_IOERR_WRITE, pFile->lastErrno, "winWrite2", pFile->zPath); }else{ winLogIoerr(nRetry, __LINE__); } OSTRACE(("WRITE pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; } /* ** Truncate an open file to a specified size */ static int winTruncate(sqlite3_file *id, sqlite3_int64 nByte){ winFile *pFile = (winFile*)id; /* File handle object */ int rc = SQLITE_OK; /* Return code for this function */ DWORD lastErrno; #if SQLITE_MAX_MMAP_SIZE>0 sqlite3_int64 oldMmapSize; if( pFile->nFetchOut>0 ){ /* File truncation is a no-op if there are outstanding memory mapped ** pages. This is because truncating the file means temporarily unmapping ** the file, and that might delete memory out from under existing cursors. ** ** This can result in incremental vacuum not truncating the file, ** if there is an active read cursor when the incremental vacuum occurs. ** No real harm comes of this - the database file is not corrupted, ** though some folks might complain that the file is bigger than it ** needs to be. ** ** The only feasible work-around is to defer the truncation until after ** all references to memory-mapped content are closed. That is doable, ** but involves adding a few branches in the common write code path which ** could slow down normal operations slightly. Hence, we have decided for ** now to simply make trancations a no-op if there are pending reads. We ** can maybe revisit this decision in the future. */ return SQLITE_OK; } #endif assert( pFile ); SimulateIOError(return SQLITE_IOERR_TRUNCATE); OSTRACE(("TRUNCATE pid=%lu, pFile=%p, file=%p, size=%lld, lock=%d\n", osGetCurrentProcessId(), pFile, pFile->h, nByte, pFile->locktype)); /* If the user has configured a chunk-size for this file, truncate the ** file so that it consists of an integer number of chunks (i.e. the ** actual file size after the operation may be larger than the requested ** size). */ if( pFile->szChunk>0 ){ nByte = ((nByte + pFile->szChunk - 1)/pFile->szChunk) * pFile->szChunk; } #if SQLITE_MAX_MMAP_SIZE>0 if( pFile->pMapRegion ){ oldMmapSize = pFile->mmapSize; }else{ oldMmapSize = 0; } winUnmapfile(pFile); #endif /* SetEndOfFile() returns non-zero when successful, or zero when it fails. */ if( winSeekFile(pFile, nByte) ){ rc = winLogError(SQLITE_IOERR_TRUNCATE, pFile->lastErrno, "winTruncate1", pFile->zPath); }else if( 0==osSetEndOfFile(pFile->h) && ((lastErrno = osGetLastError())!=ERROR_USER_MAPPED_FILE) ){ pFile->lastErrno = lastErrno; rc = winLogError(SQLITE_IOERR_TRUNCATE, pFile->lastErrno, "winTruncate2", pFile->zPath); } #if SQLITE_MAX_MMAP_SIZE>0 if( rc==SQLITE_OK && oldMmapSize>0 ){ if( oldMmapSize>nByte ){ winMapfile(pFile, -1); }else{ winMapfile(pFile, oldMmapSize); } } #endif OSTRACE(("TRUNCATE pid=%lu, pFile=%p, file=%p, rc=%s\n", osGetCurrentProcessId(), pFile, pFile->h, sqlite3ErrName(rc))); return rc; } #ifdef SQLITE_TEST /* ** Count the number of fullsyncs and normal syncs. This is used to test ** that syncs and fullsyncs are occuring at the right times. */ SQLITE_API int sqlite3_sync_count = 0; SQLITE_API int sqlite3_fullsync_count = 0; #endif /* ** Make sure all writes to a particular file are committed to disk. */ static int winSync(sqlite3_file *id, int flags){ #ifndef SQLITE_NO_SYNC /* ** Used only when SQLITE_NO_SYNC is not defined. */ BOOL rc; #endif #if !defined(NDEBUG) || !defined(SQLITE_NO_SYNC) || \ defined(SQLITE_HAVE_OS_TRACE) /* ** Used when SQLITE_NO_SYNC is not defined and by the assert() and/or ** OSTRACE() macros. */ winFile *pFile = (winFile*)id; #else UNUSED_PARAMETER(id); #endif assert( pFile ); /* Check that one of SQLITE_SYNC_NORMAL or FULL was passed */ assert((flags&0x0F)==SQLITE_SYNC_NORMAL || (flags&0x0F)==SQLITE_SYNC_FULL ); /* Unix cannot, but some systems may return SQLITE_FULL from here. This ** line is to test that doing so does not cause any problems. */ SimulateDiskfullError( return SQLITE_FULL ); OSTRACE(("SYNC pid=%lu, pFile=%p, file=%p, flags=%x, lock=%d\n", osGetCurrentProcessId(), pFile, pFile->h, flags, pFile->locktype)); #ifndef SQLITE_TEST UNUSED_PARAMETER(flags); #else if( (flags&0x0F)==SQLITE_SYNC_FULL ){ sqlite3_fullsync_count++; } sqlite3_sync_count++; #endif /* If we compiled with the SQLITE_NO_SYNC flag, then syncing is a ** no-op */ #ifdef SQLITE_NO_SYNC OSTRACE(("SYNC-NOP pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; #else #if SQLITE_MAX_MMAP_SIZE>0 if( pFile->pMapRegion ){ if( osFlushViewOfFile(pFile->pMapRegion, 0) ){ OSTRACE(("SYNC-MMAP pid=%lu, pFile=%p, pMapRegion=%p, " "rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->pMapRegion)); }else{ pFile->lastErrno = osGetLastError(); OSTRACE(("SYNC-MMAP pid=%lu, pFile=%p, pMapRegion=%p, " "rc=SQLITE_IOERR_MMAP\n", osGetCurrentProcessId(), pFile, pFile->pMapRegion)); return winLogError(SQLITE_IOERR_MMAP, pFile->lastErrno, "winSync1", pFile->zPath); } } #endif rc = osFlushFileBuffers(pFile->h); SimulateIOError( rc=FALSE ); if( rc ){ OSTRACE(("SYNC pid=%lu, pFile=%p, file=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile, pFile->h)); return SQLITE_OK; }else{ pFile->lastErrno = osGetLastError(); OSTRACE(("SYNC pid=%lu, pFile=%p, file=%p, rc=SQLITE_IOERR_FSYNC\n", osGetCurrentProcessId(), pFile, pFile->h)); return winLogError(SQLITE_IOERR_FSYNC, pFile->lastErrno, "winSync2", pFile->zPath); } #endif } /* ** Determine the current size of a file in bytes */ static int winFileSize(sqlite3_file *id, sqlite3_int64 *pSize){ winFile *pFile = (winFile*)id; int rc = SQLITE_OK; assert( id!=0 ); assert( pSize!=0 ); SimulateIOError(return SQLITE_IOERR_FSTAT); OSTRACE(("SIZE file=%p, pSize=%p\n", pFile->h, pSize)); #if SQLITE_OS_WINRT { FILE_STANDARD_INFO info; if( osGetFileInformationByHandleEx(pFile->h, FileStandardInfo, &info, sizeof(info)) ){ *pSize = info.EndOfFile.QuadPart; }else{ pFile->lastErrno = osGetLastError(); rc = winLogError(SQLITE_IOERR_FSTAT, pFile->lastErrno, "winFileSize", pFile->zPath); } } #else { DWORD upperBits; DWORD lowerBits; DWORD lastErrno; lowerBits = osGetFileSize(pFile->h, &upperBits); *pSize = (((sqlite3_int64)upperBits)<<32) + lowerBits; if( (lowerBits == INVALID_FILE_SIZE) && ((lastErrno = osGetLastError())!=NO_ERROR) ){ pFile->lastErrno = lastErrno; rc = winLogError(SQLITE_IOERR_FSTAT, pFile->lastErrno, "winFileSize", pFile->zPath); } } #endif OSTRACE(("SIZE file=%p, pSize=%p, *pSize=%lld, rc=%s\n", pFile->h, pSize, *pSize, sqlite3ErrName(rc))); return rc; } /* ** LOCKFILE_FAIL_IMMEDIATELY is undefined on some Windows systems. */ #ifndef LOCKFILE_FAIL_IMMEDIATELY # define LOCKFILE_FAIL_IMMEDIATELY 1 #endif #ifndef LOCKFILE_EXCLUSIVE_LOCK # define LOCKFILE_EXCLUSIVE_LOCK 2 #endif /* ** Historically, SQLite has used both the LockFile and LockFileEx functions. ** When the LockFile function was used, it was always expected to fail ** immediately if the lock could not be obtained. Also, it always expected to ** obtain an exclusive lock. These flags are used with the LockFileEx function ** and reflect those expectations; therefore, they should not be changed. */ #ifndef SQLITE_LOCKFILE_FLAGS # define SQLITE_LOCKFILE_FLAGS (LOCKFILE_FAIL_IMMEDIATELY | \ LOCKFILE_EXCLUSIVE_LOCK) #endif /* ** Currently, SQLite never calls the LockFileEx function without wanting the ** call to fail immediately if the lock cannot be obtained. */ #ifndef SQLITE_LOCKFILEEX_FLAGS # define SQLITE_LOCKFILEEX_FLAGS (LOCKFILE_FAIL_IMMEDIATELY) #endif /* ** Acquire a reader lock. ** Different API routines are called depending on whether or not this ** is Win9x or WinNT. */ static int winGetReadLock(winFile *pFile){ int res; OSTRACE(("READ-LOCK file=%p, lock=%d\n", pFile->h, pFile->locktype)); if( osIsNT() ){ #if SQLITE_OS_WINCE /* ** NOTE: Windows CE is handled differently here due its lack of the Win32 ** API LockFileEx. */ res = winceLockFile(&pFile->h, SHARED_FIRST, 0, 1, 0); #else res = winLockFile(&pFile->h, SQLITE_LOCKFILEEX_FLAGS, SHARED_FIRST, 0, SHARED_SIZE, 0); #endif } #ifdef SQLITE_WIN32_HAS_ANSI else{ int lk; sqlite3_randomness(sizeof(lk), &lk); pFile->sharedLockByte = (short)((lk & 0x7fffffff)%(SHARED_SIZE - 1)); res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0); } #endif if( res == 0 ){ pFile->lastErrno = osGetLastError(); /* No need to log a failure to lock */ } OSTRACE(("READ-LOCK file=%p, result=%d\n", pFile->h, res)); return res; } /* ** Undo a readlock */ static int winUnlockReadLock(winFile *pFile){ int res; DWORD lastErrno; OSTRACE(("READ-UNLOCK file=%p, lock=%d\n", pFile->h, pFile->locktype)); if( osIsNT() ){ res = winUnlockFile(&pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0); } #ifdef SQLITE_WIN32_HAS_ANSI else{ res = winUnlockFile(&pFile->h, SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0); } #endif if( res==0 && ((lastErrno = osGetLastError())!=ERROR_NOT_LOCKED) ){ pFile->lastErrno = lastErrno; winLogError(SQLITE_IOERR_UNLOCK, pFile->lastErrno, "winUnlockReadLock", pFile->zPath); } OSTRACE(("READ-UNLOCK file=%p, result=%d\n", pFile->h, res)); return res; } /* ** Lock the file with the lock specified by parameter locktype - one ** of the following: ** ** (1) SHARED_LOCK ** (2) RESERVED_LOCK ** (3) PENDING_LOCK ** (4) EXCLUSIVE_LOCK ** ** Sometimes when requesting one lock state, additional lock states ** are inserted in between. The locking might fail on one of the later ** transitions leaving the lock state different from what it started but ** still short of its goal. The following chart shows the allowed ** transitions and the inserted intermediate states: ** ** UNLOCKED -> SHARED ** SHARED -> RESERVED ** SHARED -> (PENDING) -> EXCLUSIVE ** RESERVED -> (PENDING) -> EXCLUSIVE ** PENDING -> EXCLUSIVE ** ** This routine will only increase a lock. The winUnlock() routine ** erases all locks at once and returns us immediately to locking level 0. ** It is not possible to lower the locking level one step at a time. You ** must go straight to locking level 0. */ static int winLock(sqlite3_file *id, int locktype){ int rc = SQLITE_OK; /* Return code from subroutines */ int res = 1; /* Result of a Windows lock call */ int newLocktype; /* Set pFile->locktype to this value before exiting */ int gotPendingLock = 0;/* True if we acquired a PENDING lock this time */ winFile *pFile = (winFile*)id; DWORD lastErrno = NO_ERROR; assert( id!=0 ); OSTRACE(("LOCK file=%p, oldLock=%d(%d), newLock=%d\n", pFile->h, pFile->locktype, pFile->sharedLockByte, locktype)); /* If there is already a lock of this type or more restrictive on the ** OsFile, do nothing. Don't use the end_lock: exit path, as ** sqlite3OsEnterMutex() hasn't been called yet. */ if( pFile->locktype>=locktype ){ OSTRACE(("LOCK-HELD file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } /* Do not allow any kind of write-lock on a read-only database */ if( (pFile->ctrlFlags & WINFILE_RDONLY)!=0 && locktype>=RESERVED_LOCK ){ return SQLITE_IOERR_LOCK; } /* Make sure the locking sequence is correct */ assert( pFile->locktype!=NO_LOCK || locktype==SHARED_LOCK ); assert( locktype!=PENDING_LOCK ); assert( locktype!=RESERVED_LOCK || pFile->locktype==SHARED_LOCK ); /* Lock the PENDING_LOCK byte if we need to acquire a PENDING lock or ** a SHARED lock. If we are acquiring a SHARED lock, the acquisition of ** the PENDING_LOCK byte is temporary. */ newLocktype = pFile->locktype; if( pFile->locktype==NO_LOCK || (locktype==EXCLUSIVE_LOCK && pFile->locktype<=RESERVED_LOCK) ){ int cnt = 3; while( cnt-->0 && (res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, PENDING_BYTE, 0, 1, 0))==0 ){ /* Try 3 times to get the pending lock. This is needed to work ** around problems caused by indexing and/or anti-virus software on ** Windows systems. ** If you are using this code as a model for alternative VFSes, do not ** copy this retry logic. It is a hack intended for Windows only. */ lastErrno = osGetLastError(); OSTRACE(("LOCK-PENDING-FAIL file=%p, count=%d, result=%d\n", pFile->h, cnt, res)); if( lastErrno==ERROR_INVALID_HANDLE ){ pFile->lastErrno = lastErrno; rc = SQLITE_IOERR_LOCK; OSTRACE(("LOCK-FAIL file=%p, count=%d, rc=%s\n", pFile->h, cnt, sqlite3ErrName(rc))); return rc; } if( cnt ) sqlite3_win32_sleep(1); } gotPendingLock = res; if( !res ){ lastErrno = osGetLastError(); } } /* Acquire a shared lock */ if( locktype==SHARED_LOCK && res ){ assert( pFile->locktype==NO_LOCK ); res = winGetReadLock(pFile); if( res ){ newLocktype = SHARED_LOCK; }else{ lastErrno = osGetLastError(); } } /* Acquire a RESERVED lock */ if( locktype==RESERVED_LOCK && res ){ assert( pFile->locktype==SHARED_LOCK ); res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, RESERVED_BYTE, 0, 1, 0); if( res ){ newLocktype = RESERVED_LOCK; }else{ lastErrno = osGetLastError(); } } /* Acquire a PENDING lock */ if( locktype==EXCLUSIVE_LOCK && res ){ newLocktype = PENDING_LOCK; gotPendingLock = 0; } /* Acquire an EXCLUSIVE lock */ if( locktype==EXCLUSIVE_LOCK && res ){ assert( pFile->locktype>=SHARED_LOCK ); res = winUnlockReadLock(pFile); res = winLockFile(&pFile->h, SQLITE_LOCKFILE_FLAGS, SHARED_FIRST, 0, SHARED_SIZE, 0); if( res ){ newLocktype = EXCLUSIVE_LOCK; }else{ lastErrno = osGetLastError(); winGetReadLock(pFile); } } /* If we are holding a PENDING lock that ought to be released, then ** release it now. */ if( gotPendingLock && locktype==SHARED_LOCK ){ winUnlockFile(&pFile->h, PENDING_BYTE, 0, 1, 0); } /* Update the state of the lock has held in the file descriptor then ** return the appropriate result code. */ if( res ){ rc = SQLITE_OK; }else{ pFile->lastErrno = lastErrno; rc = SQLITE_BUSY; OSTRACE(("LOCK-FAIL file=%p, wanted=%d, got=%d\n", pFile->h, locktype, newLocktype)); } pFile->locktype = (u8)newLocktype; OSTRACE(("LOCK file=%p, lock=%d, rc=%s\n", pFile->h, pFile->locktype, sqlite3ErrName(rc))); return rc; } /* ** This routine checks if there is a RESERVED lock held on the specified ** file by this or any other process. If such a lock is held, return ** non-zero, otherwise zero. */ static int winCheckReservedLock(sqlite3_file *id, int *pResOut){ int res; winFile *pFile = (winFile*)id; SimulateIOError( return SQLITE_IOERR_CHECKRESERVEDLOCK; ); OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p\n", pFile->h, pResOut)); assert( id!=0 ); if( pFile->locktype>=RESERVED_LOCK ){ res = 1; OSTRACE(("TEST-WR-LOCK file=%p, result=%d (local)\n", pFile->h, res)); }else{ res = winLockFile(&pFile->h, SQLITE_LOCKFILEEX_FLAGS,RESERVED_BYTE,0,1,0); if( res ){ winUnlockFile(&pFile->h, RESERVED_BYTE, 0, 1, 0); } res = !res; OSTRACE(("TEST-WR-LOCK file=%p, result=%d (remote)\n", pFile->h, res)); } *pResOut = res; OSTRACE(("TEST-WR-LOCK file=%p, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n", pFile->h, pResOut, *pResOut)); return SQLITE_OK; } /* ** Lower the locking level on file descriptor id to locktype. locktype ** must be either NO_LOCK or SHARED_LOCK. ** ** If the locking level of the file descriptor is already at or below ** the requested locking level, this routine is a no-op. ** ** It is not possible for this routine to fail if the second argument ** is NO_LOCK. If the second argument is SHARED_LOCK then this routine ** might return SQLITE_IOERR; */ static int winUnlock(sqlite3_file *id, int locktype){ int type; winFile *pFile = (winFile*)id; int rc = SQLITE_OK; assert( pFile!=0 ); assert( locktype<=SHARED_LOCK ); OSTRACE(("UNLOCK file=%p, oldLock=%d(%d), newLock=%d\n", pFile->h, pFile->locktype, pFile->sharedLockByte, locktype)); type = pFile->locktype; if( type>=EXCLUSIVE_LOCK ){ winUnlockFile(&pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0); if( locktype==SHARED_LOCK && !winGetReadLock(pFile) ){ /* This should never happen. We should always be able to ** reacquire the read lock */ rc = winLogError(SQLITE_IOERR_UNLOCK, osGetLastError(), "winUnlock", pFile->zPath); } } if( type>=RESERVED_LOCK ){ winUnlockFile(&pFile->h, RESERVED_BYTE, 0, 1, 0); } if( locktype==NO_LOCK && type>=SHARED_LOCK ){ winUnlockReadLock(pFile); } if( type>=PENDING_LOCK ){ winUnlockFile(&pFile->h, PENDING_BYTE, 0, 1, 0); } pFile->locktype = (u8)locktype; OSTRACE(("UNLOCK file=%p, lock=%d, rc=%s\n", pFile->h, pFile->locktype, sqlite3ErrName(rc))); return rc; } /****************************************************************************** ****************************** No-op Locking ********************************** ** ** Of the various locking implementations available, this is by far the ** simplest: locking is ignored. No attempt is made to lock the database ** file for reading or writing. ** ** This locking mode is appropriate for use on read-only databases ** (ex: databases that are burned into CD-ROM, for example.) It can ** also be used if the application employs some external mechanism to ** prevent simultaneous access of the same database by two or more ** database connections. But there is a serious risk of database ** corruption if this locking mode is used in situations where multiple ** database connections are accessing the same database file at the same ** time and one or more of those connections are writing. */ static int winNolockLock(sqlite3_file *id, int locktype){ UNUSED_PARAMETER(id); UNUSED_PARAMETER(locktype); return SQLITE_OK; } static int winNolockCheckReservedLock(sqlite3_file *id, int *pResOut){ UNUSED_PARAMETER(id); UNUSED_PARAMETER(pResOut); return SQLITE_OK; } static int winNolockUnlock(sqlite3_file *id, int locktype){ UNUSED_PARAMETER(id); UNUSED_PARAMETER(locktype); return SQLITE_OK; } /******************* End of the no-op lock implementation ********************* ******************************************************************************/ /* ** If *pArg is initially negative then this is a query. Set *pArg to ** 1 or 0 depending on whether or not bit mask of pFile->ctrlFlags is set. ** ** If *pArg is 0 or 1, then clear or set the mask bit of pFile->ctrlFlags. */ static void winModeBit(winFile *pFile, unsigned char mask, int *pArg){ if( *pArg<0 ){ *pArg = (pFile->ctrlFlags & mask)!=0; }else if( (*pArg)==0 ){ pFile->ctrlFlags &= ~mask; }else{ pFile->ctrlFlags |= mask; } } /* Forward references to VFS helper methods used for temporary files */ static int winGetTempname(sqlite3_vfs *, char **); static int winIsDir(const void *); static BOOL winIsLongPathPrefix(const char *); static BOOL winIsDriveLetterAndColon(const char *); /* ** Control and query of the open file handle. */ static int winFileControl(sqlite3_file *id, int op, void *pArg){ winFile *pFile = (winFile*)id; OSTRACE(("FCNTL file=%p, op=%d, pArg=%p\n", pFile->h, op, pArg)); switch( op ){ case SQLITE_FCNTL_LOCKSTATE: { *(int*)pArg = pFile->locktype; OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_LAST_ERRNO: { *(int*)pArg = (int)pFile->lastErrno; OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_CHUNK_SIZE: { pFile->szChunk = *(int *)pArg; OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_SIZE_HINT: { if( pFile->szChunk>0 ){ sqlite3_int64 oldSz; int rc = winFileSize(id, &oldSz); if( rc==SQLITE_OK ){ sqlite3_int64 newSz = *(sqlite3_int64*)pArg; if( newSz>oldSz ){ SimulateIOErrorBenign(1); rc = winTruncate(id, newSz); SimulateIOErrorBenign(0); } } OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc))); return rc; } OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_PERSIST_WAL: { winModeBit(pFile, WINFILE_PERSIST_WAL, (int*)pArg); OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_POWERSAFE_OVERWRITE: { winModeBit(pFile, WINFILE_PSOW, (int*)pArg); OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_VFSNAME: { *(char**)pArg = sqlite3_mprintf("%s", pFile->pVfs->zName); OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_WIN32_AV_RETRY: { int *a = (int*)pArg; if( a[0]>0 ){ winIoerrRetry = a[0]; }else{ a[0] = winIoerrRetry; } if( a[1]>0 ){ winIoerrRetryDelay = a[1]; }else{ a[1] = winIoerrRetryDelay; } OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } case SQLITE_FCNTL_WIN32_GET_HANDLE: { LPHANDLE phFile = (LPHANDLE)pArg; *phFile = pFile->h; OSTRACE(("FCNTL file=%p, rc=SQLITE_OK\n", pFile->h)); return SQLITE_OK; } #ifdef SQLITE_TEST case SQLITE_FCNTL_WIN32_SET_HANDLE: { LPHANDLE phFile = (LPHANDLE)pArg; HANDLE hOldFile = pFile->h; pFile->h = *phFile; *phFile = hOldFile; OSTRACE(("FCNTL oldFile=%p, newFile=%p, rc=SQLITE_OK\n", hOldFile, pFile->h)); return SQLITE_OK; } #endif case SQLITE_FCNTL_TEMPFILENAME: { char *zTFile = 0; int rc = winGetTempname(pFile->pVfs, &zTFile); if( rc==SQLITE_OK ){ *(char**)pArg = zTFile; } OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc))); return rc; } #if SQLITE_MAX_MMAP_SIZE>0 case SQLITE_FCNTL_MMAP_SIZE: { i64 newLimit = *(i64*)pArg; int rc = SQLITE_OK; if( newLimit>sqlite3GlobalConfig.mxMmap ){ newLimit = sqlite3GlobalConfig.mxMmap; } /* The value of newLimit may be eventually cast to (SIZE_T) and passed ** to MapViewOfFile(). Restrict its value to 2GB if (SIZE_T) is not at ** least a 64-bit type. */ if( newLimit>0 && sizeof(SIZE_T)<8 ){ newLimit = (newLimit & 0x7FFFFFFF); } *(i64*)pArg = pFile->mmapSizeMax; if( newLimit>=0 && newLimit!=pFile->mmapSizeMax && pFile->nFetchOut==0 ){ pFile->mmapSizeMax = newLimit; if( pFile->mmapSize>0 ){ winUnmapfile(pFile); rc = winMapfile(pFile, -1); } } OSTRACE(("FCNTL file=%p, rc=%s\n", pFile->h, sqlite3ErrName(rc))); return rc; } #endif } OSTRACE(("FCNTL file=%p, rc=SQLITE_NOTFOUND\n", pFile->h)); return SQLITE_NOTFOUND; } /* ** Return the sector size in bytes of the underlying block device for ** the specified file. This is almost always 512 bytes, but may be ** larger for some devices. ** ** SQLite code assumes this function cannot fail. It also assumes that ** if two files are created in the same file-system directory (i.e. ** a database and its journal file) that the sector size will be the ** same for both. */ static int winSectorSize(sqlite3_file *id){ (void)id; return SQLITE_DEFAULT_SECTOR_SIZE; } /* ** Return a vector of device characteristics. */ static int winDeviceCharacteristics(sqlite3_file *id){ winFile *p = (winFile*)id; return SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN | ((p->ctrlFlags & WINFILE_PSOW)?SQLITE_IOCAP_POWERSAFE_OVERWRITE:0); } /* ** Windows will only let you create file view mappings ** on allocation size granularity boundaries. ** During sqlite3_os_init() we do a GetSystemInfo() ** to get the granularity size. */ static SYSTEM_INFO winSysInfo; #ifndef SQLITE_OMIT_WAL /* ** Helper functions to obtain and relinquish the global mutex. The ** global mutex is used to protect the winLockInfo objects used by ** this file, all of which may be shared by multiple threads. ** ** Function winShmMutexHeld() is used to assert() that the global mutex ** is held when required. This function is only used as part of assert() ** statements. e.g. ** ** winShmEnterMutex() ** assert( winShmMutexHeld() ); ** winShmLeaveMutex() */ static sqlite3_mutex *winBigLock = 0; static void winShmEnterMutex(void){ sqlite3_mutex_enter(winBigLock); } static void winShmLeaveMutex(void){ sqlite3_mutex_leave(winBigLock); } #ifndef NDEBUG static int winShmMutexHeld(void) { return sqlite3_mutex_held(winBigLock); } #endif /* ** Object used to represent a single file opened and mmapped to provide ** shared memory. When multiple threads all reference the same ** log-summary, each thread has its own winFile object, but they all ** point to a single instance of this object. In other words, each ** log-summary is opened only once per process. ** ** winShmMutexHeld() must be true when creating or destroying ** this object or while reading or writing the following fields: ** ** nRef ** pNext ** ** The following fields are read-only after the object is created: ** ** fid ** zFilename ** ** Either winShmNode.mutex must be held or winShmNode.nRef==0 and ** winShmMutexHeld() is true when reading or writing any other field ** in this structure. ** */ struct winShmNode { sqlite3_mutex *mutex; /* Mutex to access this object */ char *zFilename; /* Name of the file */ winFile hFile; /* File handle from winOpen */ int szRegion; /* Size of shared-memory regions */ int nRegion; /* Size of array apRegion */ u8 isReadonly; /* True if read-only */ u8 isUnlocked; /* True if no DMS lock held */ struct ShmRegion { HANDLE hMap; /* File handle from CreateFileMapping */ void *pMap; } *aRegion; DWORD lastErrno; /* The Windows errno from the last I/O error */ int nRef; /* Number of winShm objects pointing to this */ winShm *pFirst; /* All winShm objects pointing to this */ winShmNode *pNext; /* Next in list of all winShmNode objects */ #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) u8 nextShmId; /* Next available winShm.id value */ #endif }; /* ** A global array of all winShmNode objects. ** ** The winShmMutexHeld() must be true while reading or writing this list. */ static winShmNode *winShmNodeList = 0; /* ** Structure used internally by this VFS to record the state of an ** open shared memory connection. ** ** The following fields are initialized when this object is created and ** are read-only thereafter: ** ** winShm.pShmNode ** winShm.id ** ** All other fields are read/write. The winShm.pShmNode->mutex must be held ** while accessing any read/write fields. */ struct winShm { winShmNode *pShmNode; /* The underlying winShmNode object */ winShm *pNext; /* Next winShm with the same winShmNode */ u8 hasMutex; /* True if holding the winShmNode mutex */ u16 sharedMask; /* Mask of shared locks held */ u16 exclMask; /* Mask of exclusive locks held */ #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) u8 id; /* Id of this connection with its winShmNode */ #endif }; /* ** Constants used for locking */ #define WIN_SHM_BASE ((22+SQLITE_SHM_NLOCK)*4) /* first lock byte */ #define WIN_SHM_DMS (WIN_SHM_BASE+SQLITE_SHM_NLOCK) /* deadman switch */ /* ** Apply advisory locks for all n bytes beginning at ofst. */ #define WINSHM_UNLCK 1 #define WINSHM_RDLCK 2 #define WINSHM_WRLCK 3 static int winShmSystemLock( winShmNode *pFile, /* Apply locks to this open shared-memory segment */ int lockType, /* WINSHM_UNLCK, WINSHM_RDLCK, or WINSHM_WRLCK */ int ofst, /* Offset to first byte to be locked/unlocked */ int nByte /* Number of bytes to lock or unlock */ ){ int rc = 0; /* Result code form Lock/UnlockFileEx() */ /* Access to the winShmNode object is serialized by the caller */ assert( pFile->nRef==0 || sqlite3_mutex_held(pFile->mutex) ); OSTRACE(("SHM-LOCK file=%p, lock=%d, offset=%d, size=%d\n", pFile->hFile.h, lockType, ofst, nByte)); /* Release/Acquire the system-level lock */ if( lockType==WINSHM_UNLCK ){ rc = winUnlockFile(&pFile->hFile.h, ofst, 0, nByte, 0); }else{ /* Initialize the locking parameters */ DWORD dwFlags = LOCKFILE_FAIL_IMMEDIATELY; if( lockType == WINSHM_WRLCK ) dwFlags |= LOCKFILE_EXCLUSIVE_LOCK; rc = winLockFile(&pFile->hFile.h, dwFlags, ofst, 0, nByte, 0); } if( rc!= 0 ){ rc = SQLITE_OK; }else{ pFile->lastErrno = osGetLastError(); rc = SQLITE_BUSY; } OSTRACE(("SHM-LOCK file=%p, func=%s, errno=%lu, rc=%s\n", pFile->hFile.h, (lockType == WINSHM_UNLCK) ? "winUnlockFile" : "winLockFile", pFile->lastErrno, sqlite3ErrName(rc))); return rc; } /* Forward references to VFS methods */ static int winOpen(sqlite3_vfs*,const char*,sqlite3_file*,int,int*); static int winDelete(sqlite3_vfs *,const char*,int); /* ** Purge the winShmNodeList list of all entries with winShmNode.nRef==0. ** ** This is not a VFS shared-memory method; it is a utility function called ** by VFS shared-memory methods. */ static void winShmPurge(sqlite3_vfs *pVfs, int deleteFlag){ winShmNode **pp; winShmNode *p; assert( winShmMutexHeld() ); OSTRACE(("SHM-PURGE pid=%lu, deleteFlag=%d\n", osGetCurrentProcessId(), deleteFlag)); pp = &winShmNodeList; while( (p = *pp)!=0 ){ if( p->nRef==0 ){ int i; if( p->mutex ){ sqlite3_mutex_free(p->mutex); } for(i=0; inRegion; i++){ BOOL bRc = osUnmapViewOfFile(p->aRegion[i].pMap); OSTRACE(("SHM-PURGE-UNMAP pid=%lu, region=%d, rc=%s\n", osGetCurrentProcessId(), i, bRc ? "ok" : "failed")); UNUSED_VARIABLE_VALUE(bRc); bRc = osCloseHandle(p->aRegion[i].hMap); OSTRACE(("SHM-PURGE-CLOSE pid=%lu, region=%d, rc=%s\n", osGetCurrentProcessId(), i, bRc ? "ok" : "failed")); UNUSED_VARIABLE_VALUE(bRc); } if( p->hFile.h!=NULL && p->hFile.h!=INVALID_HANDLE_VALUE ){ SimulateIOErrorBenign(1); winClose((sqlite3_file *)&p->hFile); SimulateIOErrorBenign(0); } if( deleteFlag ){ SimulateIOErrorBenign(1); sqlite3BeginBenignMalloc(); winDelete(pVfs, p->zFilename, 0); sqlite3EndBenignMalloc(); SimulateIOErrorBenign(0); } *pp = p->pNext; sqlite3_free(p->aRegion); sqlite3_free(p); }else{ pp = &p->pNext; } } } /* ** The DMS lock has not yet been taken on shm file pShmNode. Attempt to ** take it now. Return SQLITE_OK if successful, or an SQLite error ** code otherwise. ** ** If the DMS cannot be locked because this is a readonly_shm=1 ** connection and no other process already holds a lock, return ** SQLITE_READONLY_CANTINIT and set pShmNode->isUnlocked=1. */ static int winLockSharedMemory(winShmNode *pShmNode){ int rc = winShmSystemLock(pShmNode, WINSHM_WRLCK, WIN_SHM_DMS, 1); if( rc==SQLITE_OK ){ if( pShmNode->isReadonly ){ pShmNode->isUnlocked = 1; winShmSystemLock(pShmNode, WINSHM_UNLCK, WIN_SHM_DMS, 1); return SQLITE_READONLY_CANTINIT; }else if( winTruncate((sqlite3_file*)&pShmNode->hFile, 0) ){ winShmSystemLock(pShmNode, WINSHM_UNLCK, WIN_SHM_DMS, 1); return winLogError(SQLITE_IOERR_SHMOPEN, osGetLastError(), "winLockSharedMemory", pShmNode->zFilename); } } if( rc==SQLITE_OK ){ winShmSystemLock(pShmNode, WINSHM_UNLCK, WIN_SHM_DMS, 1); } return winShmSystemLock(pShmNode, WINSHM_RDLCK, WIN_SHM_DMS, 1); } /* ** Open the shared-memory area associated with database file pDbFd. ** ** When opening a new shared-memory file, if no other instances of that ** file are currently open, in this process or in other processes, then ** the file must be truncated to zero length or have its header cleared. */ static int winOpenSharedMemory(winFile *pDbFd){ struct winShm *p; /* The connection to be opened */ winShmNode *pShmNode = 0; /* The underlying mmapped file */ int rc = SQLITE_OK; /* Result code */ winShmNode *pNew; /* Newly allocated winShmNode */ int nName; /* Size of zName in bytes */ assert( pDbFd->pShm==0 ); /* Not previously opened */ /* Allocate space for the new sqlite3_shm object. Also speculatively ** allocate space for a new winShmNode and filename. */ p = sqlite3MallocZero( sizeof(*p) ); if( p==0 ) return SQLITE_IOERR_NOMEM_BKPT; nName = sqlite3Strlen30(pDbFd->zPath); pNew = sqlite3MallocZero( sizeof(*pShmNode) + nName + 17 ); if( pNew==0 ){ sqlite3_free(p); return SQLITE_IOERR_NOMEM_BKPT; } pNew->zFilename = (char*)&pNew[1]; sqlite3_snprintf(nName+15, pNew->zFilename, "%s-shm", pDbFd->zPath); sqlite3FileSuffix3(pDbFd->zPath, pNew->zFilename); /* Look to see if there is an existing winShmNode that can be used. ** If no matching winShmNode currently exists, create a new one. */ winShmEnterMutex(); for(pShmNode = winShmNodeList; pShmNode; pShmNode=pShmNode->pNext){ /* TBD need to come up with better match here. Perhaps ** use FILE_ID_BOTH_DIR_INFO Structure. */ if( sqlite3StrICmp(pShmNode->zFilename, pNew->zFilename)==0 ) break; } if( pShmNode ){ sqlite3_free(pNew); }else{ int inFlags = SQLITE_OPEN_WAL; int outFlags = 0; pShmNode = pNew; pNew = 0; ((winFile*)(&pShmNode->hFile))->h = INVALID_HANDLE_VALUE; pShmNode->pNext = winShmNodeList; winShmNodeList = pShmNode; if( sqlite3GlobalConfig.bCoreMutex ){ pShmNode->mutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST); if( pShmNode->mutex==0 ){ rc = SQLITE_IOERR_NOMEM_BKPT; goto shm_open_err; } } if( 0==sqlite3_uri_boolean(pDbFd->zPath, "readonly_shm", 0) ){ inFlags |= SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE; }else{ inFlags |= SQLITE_OPEN_READONLY; } rc = winOpen(pDbFd->pVfs, pShmNode->zFilename, (sqlite3_file*)&pShmNode->hFile, inFlags, &outFlags); if( rc!=SQLITE_OK ){ rc = winLogError(rc, osGetLastError(), "winOpenShm", pShmNode->zFilename); goto shm_open_err; } if( outFlags==SQLITE_OPEN_READONLY ) pShmNode->isReadonly = 1; rc = winLockSharedMemory(pShmNode); if( rc!=SQLITE_OK && rc!=SQLITE_READONLY_CANTINIT ) goto shm_open_err; } /* Make the new connection a child of the winShmNode */ p->pShmNode = pShmNode; #if defined(SQLITE_DEBUG) || defined(SQLITE_HAVE_OS_TRACE) p->id = pShmNode->nextShmId++; #endif pShmNode->nRef++; pDbFd->pShm = p; winShmLeaveMutex(); /* The reference count on pShmNode has already been incremented under ** the cover of the winShmEnterMutex() mutex and the pointer from the ** new (struct winShm) object to the pShmNode has been set. All that is ** left to do is to link the new object into the linked list starting ** at pShmNode->pFirst. This must be done while holding the pShmNode->mutex ** mutex. */ sqlite3_mutex_enter(pShmNode->mutex); p->pNext = pShmNode->pFirst; pShmNode->pFirst = p; sqlite3_mutex_leave(pShmNode->mutex); return rc; /* Jump here on any error */ shm_open_err: winShmSystemLock(pShmNode, WINSHM_UNLCK, WIN_SHM_DMS, 1); winShmPurge(pDbFd->pVfs, 0); /* This call frees pShmNode if required */ sqlite3_free(p); sqlite3_free(pNew); winShmLeaveMutex(); return rc; } /* ** Close a connection to shared-memory. Delete the underlying ** storage if deleteFlag is true. */ static int winShmUnmap( sqlite3_file *fd, /* Database holding shared memory */ int deleteFlag /* Delete after closing if true */ ){ winFile *pDbFd; /* Database holding shared-memory */ winShm *p; /* The connection to be closed */ winShmNode *pShmNode; /* The underlying shared-memory file */ winShm **pp; /* For looping over sibling connections */ pDbFd = (winFile*)fd; p = pDbFd->pShm; if( p==0 ) return SQLITE_OK; pShmNode = p->pShmNode; /* Remove connection p from the set of connections associated ** with pShmNode */ sqlite3_mutex_enter(pShmNode->mutex); for(pp=&pShmNode->pFirst; (*pp)!=p; pp = &(*pp)->pNext){} *pp = p->pNext; /* Free the connection p */ sqlite3_free(p); pDbFd->pShm = 0; sqlite3_mutex_leave(pShmNode->mutex); /* If pShmNode->nRef has reached 0, then close the underlying ** shared-memory file, too */ winShmEnterMutex(); assert( pShmNode->nRef>0 ); pShmNode->nRef--; if( pShmNode->nRef==0 ){ winShmPurge(pDbFd->pVfs, deleteFlag); } winShmLeaveMutex(); return SQLITE_OK; } /* ** Change the lock state for a shared-memory segment. */ static int winShmLock( sqlite3_file *fd, /* Database file holding the shared memory */ int ofst, /* First lock to acquire or release */ int n, /* Number of locks to acquire or release */ int flags /* What to do with the lock */ ){ winFile *pDbFd = (winFile*)fd; /* Connection holding shared memory */ winShm *p = pDbFd->pShm; /* The shared memory being locked */ winShm *pX; /* For looping over all siblings */ winShmNode *pShmNode = p->pShmNode; int rc = SQLITE_OK; /* Result code */ u16 mask; /* Mask of locks to take or release */ assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK ); assert( n>=1 ); assert( flags==(SQLITE_SHM_LOCK | SQLITE_SHM_SHARED) || flags==(SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE) || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED) || flags==(SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE) ); assert( n==1 || (flags & SQLITE_SHM_EXCLUSIVE)!=0 ); mask = (u16)((1U<<(ofst+n)) - (1U<1 || mask==(1<mutex); if( flags & SQLITE_SHM_UNLOCK ){ u16 allMask = 0; /* Mask of locks held by siblings */ /* See if any siblings hold this same lock */ for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ if( pX==p ) continue; assert( (pX->exclMask & (p->exclMask|p->sharedMask))==0 ); allMask |= pX->sharedMask; } /* Unlock the system-level locks */ if( (mask & allMask)==0 ){ rc = winShmSystemLock(pShmNode, WINSHM_UNLCK, ofst+WIN_SHM_BASE, n); }else{ rc = SQLITE_OK; } /* Undo the local locks */ if( rc==SQLITE_OK ){ p->exclMask &= ~mask; p->sharedMask &= ~mask; } }else if( flags & SQLITE_SHM_SHARED ){ u16 allShared = 0; /* Union of locks held by connections other than "p" */ /* Find out which shared locks are already held by sibling connections. ** If any sibling already holds an exclusive lock, go ahead and return ** SQLITE_BUSY. */ for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ if( (pX->exclMask & mask)!=0 ){ rc = SQLITE_BUSY; break; } allShared |= pX->sharedMask; } /* Get shared locks at the system level, if necessary */ if( rc==SQLITE_OK ){ if( (allShared & mask)==0 ){ rc = winShmSystemLock(pShmNode, WINSHM_RDLCK, ofst+WIN_SHM_BASE, n); }else{ rc = SQLITE_OK; } } /* Get the local shared locks */ if( rc==SQLITE_OK ){ p->sharedMask |= mask; } }else{ /* Make sure no sibling connections hold locks that will block this ** lock. If any do, return SQLITE_BUSY right away. */ for(pX=pShmNode->pFirst; pX; pX=pX->pNext){ if( (pX->exclMask & mask)!=0 || (pX->sharedMask & mask)!=0 ){ rc = SQLITE_BUSY; break; } } /* Get the exclusive locks at the system level. Then if successful ** also mark the local connection as being locked. */ if( rc==SQLITE_OK ){ rc = winShmSystemLock(pShmNode, WINSHM_WRLCK, ofst+WIN_SHM_BASE, n); if( rc==SQLITE_OK ){ assert( (p->sharedMask & mask)==0 ); p->exclMask |= mask; } } } sqlite3_mutex_leave(pShmNode->mutex); OSTRACE(("SHM-LOCK pid=%lu, id=%d, sharedMask=%03x, exclMask=%03x, rc=%s\n", osGetCurrentProcessId(), p->id, p->sharedMask, p->exclMask, sqlite3ErrName(rc))); return rc; } /* ** Implement a memory barrier or memory fence on shared memory. ** ** All loads and stores begun before the barrier must complete before ** any load or store begun after the barrier. */ static void winShmBarrier( sqlite3_file *fd /* Database holding the shared memory */ ){ UNUSED_PARAMETER(fd); sqlite3MemoryBarrier(); /* compiler-defined memory barrier */ winShmEnterMutex(); /* Also mutex, for redundancy */ winShmLeaveMutex(); } /* ** This function is called to obtain a pointer to region iRegion of the ** shared-memory associated with the database file fd. Shared-memory regions ** are numbered starting from zero. Each shared-memory region is szRegion ** bytes in size. ** ** If an error occurs, an error code is returned and *pp is set to NULL. ** ** Otherwise, if the isWrite parameter is 0 and the requested shared-memory ** region has not been allocated (by any client, including one running in a ** separate process), then *pp is set to NULL and SQLITE_OK returned. If ** isWrite is non-zero and the requested shared-memory region has not yet ** been allocated, it is allocated by this function. ** ** If the shared-memory region has already been allocated or is allocated by ** this call as described above, then it is mapped into this processes ** address space (if it is not already), *pp is set to point to the mapped ** memory and SQLITE_OK returned. */ static int winShmMap( sqlite3_file *fd, /* Handle open on database file */ int iRegion, /* Region to retrieve */ int szRegion, /* Size of regions */ int isWrite, /* True to extend file if necessary */ void volatile **pp /* OUT: Mapped memory */ ){ winFile *pDbFd = (winFile*)fd; winShm *pShm = pDbFd->pShm; winShmNode *pShmNode; DWORD protect = PAGE_READWRITE; DWORD flags = FILE_MAP_WRITE | FILE_MAP_READ; int rc = SQLITE_OK; if( !pShm ){ rc = winOpenSharedMemory(pDbFd); if( rc!=SQLITE_OK ) return rc; pShm = pDbFd->pShm; assert( pShm!=0 ); } pShmNode = pShm->pShmNode; sqlite3_mutex_enter(pShmNode->mutex); if( pShmNode->isUnlocked ){ rc = winLockSharedMemory(pShmNode); if( rc!=SQLITE_OK ) goto shmpage_out; pShmNode->isUnlocked = 0; } assert( szRegion==pShmNode->szRegion || pShmNode->nRegion==0 ); if( pShmNode->nRegion<=iRegion ){ struct ShmRegion *apNew; /* New aRegion[] array */ int nByte = (iRegion+1)*szRegion; /* Minimum required file size */ sqlite3_int64 sz; /* Current size of wal-index file */ pShmNode->szRegion = szRegion; /* The requested region is not mapped into this processes address space. ** Check to see if it has been allocated (i.e. if the wal-index file is ** large enough to contain the requested region). */ rc = winFileSize((sqlite3_file *)&pShmNode->hFile, &sz); if( rc!=SQLITE_OK ){ rc = winLogError(SQLITE_IOERR_SHMSIZE, osGetLastError(), "winShmMap1", pDbFd->zPath); goto shmpage_out; } if( szhFile, nByte); if( rc!=SQLITE_OK ){ rc = winLogError(SQLITE_IOERR_SHMSIZE, osGetLastError(), "winShmMap2", pDbFd->zPath); goto shmpage_out; } } /* Map the requested memory region into this processes address space. */ apNew = (struct ShmRegion *)sqlite3_realloc64( pShmNode->aRegion, (iRegion+1)*sizeof(apNew[0]) ); if( !apNew ){ rc = SQLITE_IOERR_NOMEM_BKPT; goto shmpage_out; } pShmNode->aRegion = apNew; if( pShmNode->isReadonly ){ protect = PAGE_READONLY; flags = FILE_MAP_READ; } while( pShmNode->nRegion<=iRegion ){ HANDLE hMap = NULL; /* file-mapping handle */ void *pMap = 0; /* Mapped memory region */ #if SQLITE_OS_WINRT hMap = osCreateFileMappingFromApp(pShmNode->hFile.h, NULL, protect, nByte, NULL ); #elif defined(SQLITE_WIN32_HAS_WIDE) hMap = osCreateFileMappingW(pShmNode->hFile.h, NULL, protect, 0, nByte, NULL ); #elif defined(SQLITE_WIN32_HAS_ANSI) && SQLITE_WIN32_CREATEFILEMAPPINGA hMap = osCreateFileMappingA(pShmNode->hFile.h, NULL, protect, 0, nByte, NULL ); #endif OSTRACE(("SHM-MAP-CREATE pid=%lu, region=%d, size=%d, rc=%s\n", osGetCurrentProcessId(), pShmNode->nRegion, nByte, hMap ? "ok" : "failed")); if( hMap ){ int iOffset = pShmNode->nRegion*szRegion; int iOffsetShift = iOffset % winSysInfo.dwAllocationGranularity; #if SQLITE_OS_WINRT pMap = osMapViewOfFileFromApp(hMap, flags, iOffset - iOffsetShift, szRegion + iOffsetShift ); #else pMap = osMapViewOfFile(hMap, flags, 0, iOffset - iOffsetShift, szRegion + iOffsetShift ); #endif OSTRACE(("SHM-MAP-MAP pid=%lu, region=%d, offset=%d, size=%d, rc=%s\n", osGetCurrentProcessId(), pShmNode->nRegion, iOffset, szRegion, pMap ? "ok" : "failed")); } if( !pMap ){ pShmNode->lastErrno = osGetLastError(); rc = winLogError(SQLITE_IOERR_SHMMAP, pShmNode->lastErrno, "winShmMap3", pDbFd->zPath); if( hMap ) osCloseHandle(hMap); goto shmpage_out; } pShmNode->aRegion[pShmNode->nRegion].pMap = pMap; pShmNode->aRegion[pShmNode->nRegion].hMap = hMap; pShmNode->nRegion++; } } shmpage_out: if( pShmNode->nRegion>iRegion ){ int iOffset = iRegion*szRegion; int iOffsetShift = iOffset % winSysInfo.dwAllocationGranularity; char *p = (char *)pShmNode->aRegion[iRegion].pMap; *pp = (void *)&p[iOffsetShift]; }else{ *pp = 0; } if( pShmNode->isReadonly && rc==SQLITE_OK ) rc = SQLITE_READONLY; sqlite3_mutex_leave(pShmNode->mutex); return rc; } #else # define winShmMap 0 # define winShmLock 0 # define winShmBarrier 0 # define winShmUnmap 0 #endif /* #ifndef SQLITE_OMIT_WAL */ /* ** Cleans up the mapped region of the specified file, if any. */ #if SQLITE_MAX_MMAP_SIZE>0 static int winUnmapfile(winFile *pFile){ assert( pFile!=0 ); OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, hMap=%p, pMapRegion=%p, " "mmapSize=%lld, mmapSizeMax=%lld\n", osGetCurrentProcessId(), pFile, pFile->hMap, pFile->pMapRegion, pFile->mmapSize, pFile->mmapSizeMax)); if( pFile->pMapRegion ){ if( !osUnmapViewOfFile(pFile->pMapRegion) ){ pFile->lastErrno = osGetLastError(); OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, pMapRegion=%p, " "rc=SQLITE_IOERR_MMAP\n", osGetCurrentProcessId(), pFile, pFile->pMapRegion)); return winLogError(SQLITE_IOERR_MMAP, pFile->lastErrno, "winUnmapfile1", pFile->zPath); } pFile->pMapRegion = 0; pFile->mmapSize = 0; } if( pFile->hMap!=NULL ){ if( !osCloseHandle(pFile->hMap) ){ pFile->lastErrno = osGetLastError(); OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, hMap=%p, rc=SQLITE_IOERR_MMAP\n", osGetCurrentProcessId(), pFile, pFile->hMap)); return winLogError(SQLITE_IOERR_MMAP, pFile->lastErrno, "winUnmapfile2", pFile->zPath); } pFile->hMap = NULL; } OSTRACE(("UNMAP-FILE pid=%lu, pFile=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFile)); return SQLITE_OK; } /* ** Memory map or remap the file opened by file-descriptor pFd (if the file ** is already mapped, the existing mapping is replaced by the new). Or, if ** there already exists a mapping for this file, and there are still ** outstanding xFetch() references to it, this function is a no-op. ** ** If parameter nByte is non-negative, then it is the requested size of ** the mapping to create. Otherwise, if nByte is less than zero, then the ** requested size is the size of the file on disk. The actual size of the ** created mapping is either the requested size or the value configured ** using SQLITE_FCNTL_MMAP_SIZE, whichever is smaller. ** ** SQLITE_OK is returned if no error occurs (even if the mapping is not ** recreated as a result of outstanding references) or an SQLite error ** code otherwise. */ static int winMapfile(winFile *pFd, sqlite3_int64 nByte){ sqlite3_int64 nMap = nByte; int rc; assert( nMap>=0 || pFd->nFetchOut==0 ); OSTRACE(("MAP-FILE pid=%lu, pFile=%p, size=%lld\n", osGetCurrentProcessId(), pFd, nByte)); if( pFd->nFetchOut>0 ) return SQLITE_OK; if( nMap<0 ){ rc = winFileSize((sqlite3_file*)pFd, &nMap); if( rc ){ OSTRACE(("MAP-FILE pid=%lu, pFile=%p, rc=SQLITE_IOERR_FSTAT\n", osGetCurrentProcessId(), pFd)); return SQLITE_IOERR_FSTAT; } } if( nMap>pFd->mmapSizeMax ){ nMap = pFd->mmapSizeMax; } nMap &= ~(sqlite3_int64)(winSysInfo.dwPageSize - 1); if( nMap==0 && pFd->mmapSize>0 ){ winUnmapfile(pFd); } if( nMap!=pFd->mmapSize ){ void *pNew = 0; DWORD protect = PAGE_READONLY; DWORD flags = FILE_MAP_READ; winUnmapfile(pFd); #ifdef SQLITE_MMAP_READWRITE if( (pFd->ctrlFlags & WINFILE_RDONLY)==0 ){ protect = PAGE_READWRITE; flags |= FILE_MAP_WRITE; } #endif #if SQLITE_OS_WINRT pFd->hMap = osCreateFileMappingFromApp(pFd->h, NULL, protect, nMap, NULL); #elif defined(SQLITE_WIN32_HAS_WIDE) pFd->hMap = osCreateFileMappingW(pFd->h, NULL, protect, (DWORD)((nMap>>32) & 0xffffffff), (DWORD)(nMap & 0xffffffff), NULL); #elif defined(SQLITE_WIN32_HAS_ANSI) && SQLITE_WIN32_CREATEFILEMAPPINGA pFd->hMap = osCreateFileMappingA(pFd->h, NULL, protect, (DWORD)((nMap>>32) & 0xffffffff), (DWORD)(nMap & 0xffffffff), NULL); #endif if( pFd->hMap==NULL ){ pFd->lastErrno = osGetLastError(); rc = winLogError(SQLITE_IOERR_MMAP, pFd->lastErrno, "winMapfile1", pFd->zPath); /* Log the error, but continue normal operation using xRead/xWrite */ OSTRACE(("MAP-FILE-CREATE pid=%lu, pFile=%p, rc=%s\n", osGetCurrentProcessId(), pFd, sqlite3ErrName(rc))); return SQLITE_OK; } assert( (nMap % winSysInfo.dwPageSize)==0 ); assert( sizeof(SIZE_T)==sizeof(sqlite3_int64) || nMap<=0xffffffff ); #if SQLITE_OS_WINRT pNew = osMapViewOfFileFromApp(pFd->hMap, flags, 0, (SIZE_T)nMap); #else pNew = osMapViewOfFile(pFd->hMap, flags, 0, 0, (SIZE_T)nMap); #endif if( pNew==NULL ){ osCloseHandle(pFd->hMap); pFd->hMap = NULL; pFd->lastErrno = osGetLastError(); rc = winLogError(SQLITE_IOERR_MMAP, pFd->lastErrno, "winMapfile2", pFd->zPath); /* Log the error, but continue normal operation using xRead/xWrite */ OSTRACE(("MAP-FILE-MAP pid=%lu, pFile=%p, rc=%s\n", osGetCurrentProcessId(), pFd, sqlite3ErrName(rc))); return SQLITE_OK; } pFd->pMapRegion = pNew; pFd->mmapSize = nMap; } OSTRACE(("MAP-FILE pid=%lu, pFile=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), pFd)); return SQLITE_OK; } #endif /* SQLITE_MAX_MMAP_SIZE>0 */ /* ** If possible, return a pointer to a mapping of file fd starting at offset ** iOff. The mapping must be valid for at least nAmt bytes. ** ** If such a pointer can be obtained, store it in *pp and return SQLITE_OK. ** Or, if one cannot but no error occurs, set *pp to 0 and return SQLITE_OK. ** Finally, if an error does occur, return an SQLite error code. The final ** value of *pp is undefined in this case. ** ** If this function does return a pointer, the caller must eventually ** release the reference by calling winUnfetch(). */ static int winFetch(sqlite3_file *fd, i64 iOff, int nAmt, void **pp){ #if SQLITE_MAX_MMAP_SIZE>0 winFile *pFd = (winFile*)fd; /* The underlying database file */ #endif *pp = 0; OSTRACE(("FETCH pid=%lu, pFile=%p, offset=%lld, amount=%d, pp=%p\n", osGetCurrentProcessId(), fd, iOff, nAmt, pp)); #if SQLITE_MAX_MMAP_SIZE>0 if( pFd->mmapSizeMax>0 ){ if( pFd->pMapRegion==0 ){ int rc = winMapfile(pFd, -1); if( rc!=SQLITE_OK ){ OSTRACE(("FETCH pid=%lu, pFile=%p, rc=%s\n", osGetCurrentProcessId(), pFd, sqlite3ErrName(rc))); return rc; } } if( pFd->mmapSize >= iOff+nAmt ){ assert( pFd->pMapRegion!=0 ); *pp = &((u8 *)pFd->pMapRegion)[iOff]; pFd->nFetchOut++; } } #endif OSTRACE(("FETCH pid=%lu, pFile=%p, pp=%p, *pp=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), fd, pp, *pp)); return SQLITE_OK; } /* ** If the third argument is non-NULL, then this function releases a ** reference obtained by an earlier call to winFetch(). The second ** argument passed to this function must be the same as the corresponding ** argument that was passed to the winFetch() invocation. ** ** Or, if the third argument is NULL, then this function is being called ** to inform the VFS layer that, according to POSIX, any existing mapping ** may now be invalid and should be unmapped. */ static int winUnfetch(sqlite3_file *fd, i64 iOff, void *p){ #if SQLITE_MAX_MMAP_SIZE>0 winFile *pFd = (winFile*)fd; /* The underlying database file */ /* If p==0 (unmap the entire file) then there must be no outstanding ** xFetch references. Or, if p!=0 (meaning it is an xFetch reference), ** then there must be at least one outstanding. */ assert( (p==0)==(pFd->nFetchOut==0) ); /* If p!=0, it must match the iOff value. */ assert( p==0 || p==&((u8 *)pFd->pMapRegion)[iOff] ); OSTRACE(("UNFETCH pid=%lu, pFile=%p, offset=%lld, p=%p\n", osGetCurrentProcessId(), pFd, iOff, p)); if( p ){ pFd->nFetchOut--; }else{ /* FIXME: If Windows truly always prevents truncating or deleting a ** file while a mapping is held, then the following winUnmapfile() call ** is unnecessary can be omitted - potentially improving ** performance. */ winUnmapfile(pFd); } assert( pFd->nFetchOut>=0 ); #endif OSTRACE(("UNFETCH pid=%lu, pFile=%p, rc=SQLITE_OK\n", osGetCurrentProcessId(), fd)); return SQLITE_OK; } /* ** Here ends the implementation of all sqlite3_file methods. ** ********************** End sqlite3_file Methods ******************************* ******************************************************************************/ /* ** This vector defines all the methods that can operate on an ** sqlite3_file for win32. */ static const sqlite3_io_methods winIoMethod = { 3, /* iVersion */ winClose, /* xClose */ winRead, /* xRead */ winWrite, /* xWrite */ winTruncate, /* xTruncate */ winSync, /* xSync */ winFileSize, /* xFileSize */ winLock, /* xLock */ winUnlock, /* xUnlock */ winCheckReservedLock, /* xCheckReservedLock */ winFileControl, /* xFileControl */ winSectorSize, /* xSectorSize */ winDeviceCharacteristics, /* xDeviceCharacteristics */ winShmMap, /* xShmMap */ winShmLock, /* xShmLock */ winShmBarrier, /* xShmBarrier */ winShmUnmap, /* xShmUnmap */ winFetch, /* xFetch */ winUnfetch /* xUnfetch */ }; /* ** This vector defines all the methods that can operate on an ** sqlite3_file for win32 without performing any locking. */ static const sqlite3_io_methods winIoNolockMethod = { 3, /* iVersion */ winClose, /* xClose */ winRead, /* xRead */ winWrite, /* xWrite */ winTruncate, /* xTruncate */ winSync, /* xSync */ winFileSize, /* xFileSize */ winNolockLock, /* xLock */ winNolockUnlock, /* xUnlock */ winNolockCheckReservedLock, /* xCheckReservedLock */ winFileControl, /* xFileControl */ winSectorSize, /* xSectorSize */ winDeviceCharacteristics, /* xDeviceCharacteristics */ winShmMap, /* xShmMap */ winShmLock, /* xShmLock */ winShmBarrier, /* xShmBarrier */ winShmUnmap, /* xShmUnmap */ winFetch, /* xFetch */ winUnfetch /* xUnfetch */ }; static winVfsAppData winAppData = { &winIoMethod, /* pMethod */ 0, /* pAppData */ 0 /* bNoLock */ }; static winVfsAppData winNolockAppData = { &winIoNolockMethod, /* pMethod */ 0, /* pAppData */ 1 /* bNoLock */ }; /**************************************************************************** **************************** sqlite3_vfs methods **************************** ** ** This division contains the implementation of methods on the ** sqlite3_vfs object. */ #if defined(__CYGWIN__) /* ** Convert a filename from whatever the underlying operating system ** supports for filenames into UTF-8. Space to hold the result is ** obtained from malloc and must be freed by the calling function. */ static char *winConvertToUtf8Filename(const void *zFilename){ char *zConverted = 0; if( osIsNT() ){ zConverted = winUnicodeToUtf8(zFilename); } #ifdef SQLITE_WIN32_HAS_ANSI else{ zConverted = winMbcsToUtf8(zFilename, osAreFileApisANSI()); } #endif /* caller will handle out of memory */ return zConverted; } #endif /* ** Convert a UTF-8 filename into whatever form the underlying ** operating system wants filenames in. Space to hold the result ** is obtained from malloc and must be freed by the calling ** function. */ static void *winConvertFromUtf8Filename(const char *zFilename){ void *zConverted = 0; if( osIsNT() ){ zConverted = winUtf8ToUnicode(zFilename); } #ifdef SQLITE_WIN32_HAS_ANSI else{ zConverted = winUtf8ToMbcs(zFilename, osAreFileApisANSI()); } #endif /* caller will handle out of memory */ return zConverted; } /* ** This function returns non-zero if the specified UTF-8 string buffer ** ends with a directory separator character or one was successfully ** added to it. */ static int winMakeEndInDirSep(int nBuf, char *zBuf){ if( zBuf ){ int nLen = sqlite3Strlen30(zBuf); if( nLen>0 ){ if( winIsDirSep(zBuf[nLen-1]) ){ return 1; }else if( nLen+1mxPathname; nBuf = nMax + 2; zBuf = sqlite3MallocZero( nBuf ); if( !zBuf ){ OSTRACE(("TEMP-FILENAME rc=SQLITE_IOERR_NOMEM\n")); return SQLITE_IOERR_NOMEM_BKPT; } /* Figure out the effective temporary directory. First, check if one ** has been explicitly set by the application; otherwise, use the one ** configured by the operating system. */ nDir = nMax - (nPre + 15); assert( nDir>0 ); if( sqlite3_temp_directory ){ int nDirLen = sqlite3Strlen30(sqlite3_temp_directory); if( nDirLen>0 ){ if( !winIsDirSep(sqlite3_temp_directory[nDirLen-1]) ){ nDirLen++; } if( nDirLen>nDir ){ sqlite3_free(zBuf); OSTRACE(("TEMP-FILENAME rc=SQLITE_ERROR\n")); return winLogError(SQLITE_ERROR, 0, "winGetTempname1", 0); } sqlite3_snprintf(nMax, zBuf, "%s", sqlite3_temp_directory); } } #if defined(__CYGWIN__) else{ static const char *azDirs[] = { 0, /* getenv("SQLITE_TMPDIR") */ 0, /* getenv("TMPDIR") */ 0, /* getenv("TMP") */ 0, /* getenv("TEMP") */ 0, /* getenv("USERPROFILE") */ "/var/tmp", "/usr/tmp", "/tmp", ".", 0 /* List terminator */ }; unsigned int i; const char *zDir = 0; if( !azDirs[0] ) azDirs[0] = getenv("SQLITE_TMPDIR"); if( !azDirs[1] ) azDirs[1] = getenv("TMPDIR"); if( !azDirs[2] ) azDirs[2] = getenv("TMP"); if( !azDirs[3] ) azDirs[3] = getenv("TEMP"); if( !azDirs[4] ) azDirs[4] = getenv("USERPROFILE"); for(i=0; i/etilqs_XXXXXXXXXXXXXXX\0\0" ** ** If not, return SQLITE_ERROR. The number 17 is used here in order to ** account for the space used by the 15 character random suffix and the ** two trailing NUL characters. The final directory separator character ** has already added if it was not already present. */ nLen = sqlite3Strlen30(zBuf); if( (nLen + nPre + 17) > nBuf ){ sqlite3_free(zBuf); OSTRACE(("TEMP-FILENAME rc=SQLITE_ERROR\n")); return winLogError(SQLITE_ERROR, 0, "winGetTempname5", 0); } sqlite3_snprintf(nBuf-16-nLen, zBuf+nLen, SQLITE_TEMP_FILE_PREFIX); j = sqlite3Strlen30(zBuf); sqlite3_randomness(15, &zBuf[j]); for(i=0; i<15; i++, j++){ zBuf[j] = (char)zChars[ ((unsigned char)zBuf[j])%(sizeof(zChars)-1) ]; } zBuf[j] = 0; zBuf[j+1] = 0; *pzBuf = zBuf; OSTRACE(("TEMP-FILENAME name=%s, rc=SQLITE_OK\n", zBuf)); return SQLITE_OK; } /* ** Return TRUE if the named file is really a directory. Return false if ** it is something other than a directory, or if there is any kind of memory ** allocation failure. */ static int winIsDir(const void *zConverted){ DWORD attr; int rc = 0; DWORD lastErrno; if( osIsNT() ){ int cnt = 0; WIN32_FILE_ATTRIBUTE_DATA sAttrData; memset(&sAttrData, 0, sizeof(sAttrData)); while( !(rc = osGetFileAttributesExW((LPCWSTR)zConverted, GetFileExInfoStandard, &sAttrData)) && winRetryIoerr(&cnt, &lastErrno) ){} if( !rc ){ return 0; /* Invalid name? */ } attr = sAttrData.dwFileAttributes; #if SQLITE_OS_WINCE==0 }else{ attr = osGetFileAttributesA((char*)zConverted); #endif } return (attr!=INVALID_FILE_ATTRIBUTES) && (attr&FILE_ATTRIBUTE_DIRECTORY); } /* forward reference */ static int winAccess( sqlite3_vfs *pVfs, /* Not used on win32 */ const char *zFilename, /* Name of file to check */ int flags, /* Type of test to make on this file */ int *pResOut /* OUT: Result */ ); /* ** Open a file. */ static int winOpen( sqlite3_vfs *pVfs, /* Used to get maximum path length and AppData */ const char *zName, /* Name of the file (UTF-8) */ sqlite3_file *id, /* Write the SQLite file handle here */ int flags, /* Open mode flags */ int *pOutFlags /* Status return flags */ ){ HANDLE h; DWORD lastErrno = 0; DWORD dwDesiredAccess; DWORD dwShareMode; DWORD dwCreationDisposition; DWORD dwFlagsAndAttributes = 0; #if SQLITE_OS_WINCE int isTemp = 0; #endif winVfsAppData *pAppData; winFile *pFile = (winFile*)id; void *zConverted; /* Filename in OS encoding */ const char *zUtf8Name = zName; /* Filename in UTF-8 encoding */ int cnt = 0; /* If argument zPath is a NULL pointer, this function is required to open ** a temporary file. Use this buffer to store the file name in. */ char *zTmpname = 0; /* For temporary filename, if necessary. */ int rc = SQLITE_OK; /* Function Return Code */ #if !defined(NDEBUG) || SQLITE_OS_WINCE int eType = flags&0xFFFFFF00; /* Type of file to open */ #endif int isExclusive = (flags & SQLITE_OPEN_EXCLUSIVE); int isDelete = (flags & SQLITE_OPEN_DELETEONCLOSE); int isCreate = (flags & SQLITE_OPEN_CREATE); int isReadonly = (flags & SQLITE_OPEN_READONLY); int isReadWrite = (flags & SQLITE_OPEN_READWRITE); #ifndef NDEBUG int isOpenJournal = (isCreate && ( eType==SQLITE_OPEN_SUPER_JOURNAL || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_WAL )); #endif OSTRACE(("OPEN name=%s, pFile=%p, flags=%x, pOutFlags=%p\n", zUtf8Name, id, flags, pOutFlags)); /* Check the following statements are true: ** ** (a) Exactly one of the READWRITE and READONLY flags must be set, and ** (b) if CREATE is set, then READWRITE must also be set, and ** (c) if EXCLUSIVE is set, then CREATE must also be set. ** (d) if DELETEONCLOSE is set, then CREATE must also be set. */ assert((isReadonly==0 || isReadWrite==0) && (isReadWrite || isReadonly)); assert(isCreate==0 || isReadWrite); assert(isExclusive==0 || isCreate); assert(isDelete==0 || isCreate); /* The main DB, main journal, WAL file and super-journal are never ** automatically deleted. Nor are they ever temporary files. */ assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_DB ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_MAIN_JOURNAL ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_SUPER_JOURNAL ); assert( (!isDelete && zName) || eType!=SQLITE_OPEN_WAL ); /* Assert that the upper layer has set one of the "file-type" flags. */ assert( eType==SQLITE_OPEN_MAIN_DB || eType==SQLITE_OPEN_TEMP_DB || eType==SQLITE_OPEN_MAIN_JOURNAL || eType==SQLITE_OPEN_TEMP_JOURNAL || eType==SQLITE_OPEN_SUBJOURNAL || eType==SQLITE_OPEN_SUPER_JOURNAL || eType==SQLITE_OPEN_TRANSIENT_DB || eType==SQLITE_OPEN_WAL ); assert( pFile!=0 ); memset(pFile, 0, sizeof(winFile)); pFile->h = INVALID_HANDLE_VALUE; #if SQLITE_OS_WINRT if( !zUtf8Name && !sqlite3_temp_directory ){ sqlite3_log(SQLITE_ERROR, "sqlite3_temp_directory variable should be set for WinRT"); } #endif /* If the second argument to this function is NULL, generate a ** temporary file name to use */ if( !zUtf8Name ){ assert( isDelete && !isOpenJournal ); rc = winGetTempname(pVfs, &zTmpname); if( rc!=SQLITE_OK ){ OSTRACE(("OPEN name=%s, rc=%s", zUtf8Name, sqlite3ErrName(rc))); return rc; } zUtf8Name = zTmpname; } /* Database filenames are double-zero terminated if they are not ** URIs with parameters. Hence, they can always be passed into ** sqlite3_uri_parameter(). */ assert( (eType!=SQLITE_OPEN_MAIN_DB) || (flags & SQLITE_OPEN_URI) || zUtf8Name[sqlite3Strlen30(zUtf8Name)+1]==0 ); /* Convert the filename to the system encoding. */ zConverted = winConvertFromUtf8Filename(zUtf8Name); if( zConverted==0 ){ sqlite3_free(zTmpname); OSTRACE(("OPEN name=%s, rc=SQLITE_IOERR_NOMEM", zUtf8Name)); return SQLITE_IOERR_NOMEM_BKPT; } if( winIsDir(zConverted) ){ sqlite3_free(zConverted); sqlite3_free(zTmpname); OSTRACE(("OPEN name=%s, rc=SQLITE_CANTOPEN_ISDIR", zUtf8Name)); return SQLITE_CANTOPEN_ISDIR; } if( isReadWrite ){ dwDesiredAccess = GENERIC_READ | GENERIC_WRITE; }else{ dwDesiredAccess = GENERIC_READ; } /* SQLITE_OPEN_EXCLUSIVE is used to make sure that a new file is ** created. SQLite doesn't use it to indicate "exclusive access" ** as it is usually understood. */ if( isExclusive ){ /* Creates a new file, only if it does not already exist. */ /* If the file exists, it fails. */ dwCreationDisposition = CREATE_NEW; }else if( isCreate ){ /* Open existing file, or create if it doesn't exist */ dwCreationDisposition = OPEN_ALWAYS; }else{ /* Opens a file, only if it exists. */ dwCreationDisposition = OPEN_EXISTING; } dwShareMode = FILE_SHARE_READ | FILE_SHARE_WRITE; if( isDelete ){ #if SQLITE_OS_WINCE dwFlagsAndAttributes = FILE_ATTRIBUTE_HIDDEN; isTemp = 1; #else dwFlagsAndAttributes = FILE_ATTRIBUTE_TEMPORARY | FILE_ATTRIBUTE_HIDDEN | FILE_FLAG_DELETE_ON_CLOSE; #endif }else{ dwFlagsAndAttributes = FILE_ATTRIBUTE_NORMAL; } /* Reports from the internet are that performance is always ** better if FILE_FLAG_RANDOM_ACCESS is used. Ticket #2699. */ #if SQLITE_OS_WINCE dwFlagsAndAttributes |= FILE_FLAG_RANDOM_ACCESS; #endif if( osIsNT() ){ #if SQLITE_OS_WINRT CREATEFILE2_EXTENDED_PARAMETERS extendedParameters; extendedParameters.dwSize = sizeof(CREATEFILE2_EXTENDED_PARAMETERS); extendedParameters.dwFileAttributes = dwFlagsAndAttributes & FILE_ATTRIBUTE_MASK; extendedParameters.dwFileFlags = dwFlagsAndAttributes & FILE_FLAG_MASK; extendedParameters.dwSecurityQosFlags = SECURITY_ANONYMOUS; extendedParameters.lpSecurityAttributes = NULL; extendedParameters.hTemplateFile = NULL; do{ h = osCreateFile2((LPCWSTR)zConverted, dwDesiredAccess, dwShareMode, dwCreationDisposition, &extendedParameters); if( h!=INVALID_HANDLE_VALUE ) break; if( isReadWrite ){ int rc2, isRO = 0; sqlite3BeginBenignMalloc(); rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO); sqlite3EndBenignMalloc(); if( rc2==SQLITE_OK && isRO ) break; } }while( winRetryIoerr(&cnt, &lastErrno) ); #else do{ h = osCreateFileW((LPCWSTR)zConverted, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); if( h!=INVALID_HANDLE_VALUE ) break; if( isReadWrite ){ int rc2, isRO = 0; sqlite3BeginBenignMalloc(); rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO); sqlite3EndBenignMalloc(); if( rc2==SQLITE_OK && isRO ) break; } }while( winRetryIoerr(&cnt, &lastErrno) ); #endif } #ifdef SQLITE_WIN32_HAS_ANSI else{ do{ h = osCreateFileA((LPCSTR)zConverted, dwDesiredAccess, dwShareMode, NULL, dwCreationDisposition, dwFlagsAndAttributes, NULL); if( h!=INVALID_HANDLE_VALUE ) break; if( isReadWrite ){ int rc2, isRO = 0; sqlite3BeginBenignMalloc(); rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO); sqlite3EndBenignMalloc(); if( rc2==SQLITE_OK && isRO ) break; } }while( winRetryIoerr(&cnt, &lastErrno) ); } #endif winLogIoerr(cnt, __LINE__); OSTRACE(("OPEN file=%p, name=%s, access=%lx, rc=%s\n", h, zUtf8Name, dwDesiredAccess, (h==INVALID_HANDLE_VALUE) ? "failed" : "ok")); if( h==INVALID_HANDLE_VALUE ){ sqlite3_free(zConverted); sqlite3_free(zTmpname); if( isReadWrite && !isExclusive ){ return winOpen(pVfs, zName, id, ((flags|SQLITE_OPEN_READONLY) & ~(SQLITE_OPEN_CREATE|SQLITE_OPEN_READWRITE)), pOutFlags); }else{ pFile->lastErrno = lastErrno; winLogError(SQLITE_CANTOPEN, pFile->lastErrno, "winOpen", zUtf8Name); return SQLITE_CANTOPEN_BKPT; } } if( pOutFlags ){ if( isReadWrite ){ *pOutFlags = SQLITE_OPEN_READWRITE; }else{ *pOutFlags = SQLITE_OPEN_READONLY; } } OSTRACE(("OPEN file=%p, name=%s, access=%lx, pOutFlags=%p, *pOutFlags=%d, " "rc=%s\n", h, zUtf8Name, dwDesiredAccess, pOutFlags, pOutFlags ? *pOutFlags : 0, (h==INVALID_HANDLE_VALUE) ? "failed" : "ok")); pAppData = (winVfsAppData*)pVfs->pAppData; #if SQLITE_OS_WINCE { if( isReadWrite && eType==SQLITE_OPEN_MAIN_DB && ((pAppData==NULL) || !pAppData->bNoLock) && (rc = winceCreateLock(zName, pFile))!=SQLITE_OK ){ osCloseHandle(h); sqlite3_free(zConverted); sqlite3_free(zTmpname); OSTRACE(("OPEN-CE-LOCK name=%s, rc=%s\n", zName, sqlite3ErrName(rc))); return rc; } } if( isTemp ){ pFile->zDeleteOnClose = zConverted; }else #endif { sqlite3_free(zConverted); } sqlite3_free(zTmpname); id->pMethods = pAppData ? pAppData->pMethod : &winIoMethod; pFile->pVfs = pVfs; pFile->h = h; if( isReadonly ){ pFile->ctrlFlags |= WINFILE_RDONLY; } if( (flags & SQLITE_OPEN_MAIN_DB) && sqlite3_uri_boolean(zName, "psow", SQLITE_POWERSAFE_OVERWRITE) ){ pFile->ctrlFlags |= WINFILE_PSOW; } pFile->lastErrno = NO_ERROR; pFile->zPath = zName; #if SQLITE_MAX_MMAP_SIZE>0 pFile->hMap = NULL; pFile->pMapRegion = 0; pFile->mmapSize = 0; pFile->mmapSizeMax = sqlite3GlobalConfig.szMmap; #endif OpenCounter(+1); return rc; } /* ** Delete the named file. ** ** Note that Windows does not allow a file to be deleted if some other ** process has it open. Sometimes a virus scanner or indexing program ** will open a journal file shortly after it is created in order to do ** whatever it does. While this other process is holding the ** file open, we will be unable to delete it. To work around this ** problem, we delay 100 milliseconds and try to delete again. Up ** to MX_DELETION_ATTEMPTs deletion attempts are run before giving ** up and returning an error. */ static int winDelete( sqlite3_vfs *pVfs, /* Not used on win32 */ const char *zFilename, /* Name of file to delete */ int syncDir /* Not used on win32 */ ){ int cnt = 0; int rc; DWORD attr; DWORD lastErrno = 0; void *zConverted; UNUSED_PARAMETER(pVfs); UNUSED_PARAMETER(syncDir); SimulateIOError(return SQLITE_IOERR_DELETE); OSTRACE(("DELETE name=%s, syncDir=%d\n", zFilename, syncDir)); zConverted = winConvertFromUtf8Filename(zFilename); if( zConverted==0 ){ OSTRACE(("DELETE name=%s, rc=SQLITE_IOERR_NOMEM\n", zFilename)); return SQLITE_IOERR_NOMEM_BKPT; } if( osIsNT() ){ do { #if SQLITE_OS_WINRT WIN32_FILE_ATTRIBUTE_DATA sAttrData; memset(&sAttrData, 0, sizeof(sAttrData)); if ( osGetFileAttributesExW(zConverted, GetFileExInfoStandard, &sAttrData) ){ attr = sAttrData.dwFileAttributes; }else{ lastErrno = osGetLastError(); if( lastErrno==ERROR_FILE_NOT_FOUND || lastErrno==ERROR_PATH_NOT_FOUND ){ rc = SQLITE_IOERR_DELETE_NOENT; /* Already gone? */ }else{ rc = SQLITE_ERROR; } break; } #else attr = osGetFileAttributesW(zConverted); #endif if ( attr==INVALID_FILE_ATTRIBUTES ){ lastErrno = osGetLastError(); if( lastErrno==ERROR_FILE_NOT_FOUND || lastErrno==ERROR_PATH_NOT_FOUND ){ rc = SQLITE_IOERR_DELETE_NOENT; /* Already gone? */ }else{ rc = SQLITE_ERROR; } break; } if ( attr&FILE_ATTRIBUTE_DIRECTORY ){ rc = SQLITE_ERROR; /* Files only. */ break; } if ( osDeleteFileW(zConverted) ){ rc = SQLITE_OK; /* Deleted OK. */ break; } if ( !winRetryIoerr(&cnt, &lastErrno) ){ rc = SQLITE_ERROR; /* No more retries. */ break; } } while(1); } #ifdef SQLITE_WIN32_HAS_ANSI else{ do { attr = osGetFileAttributesA(zConverted); if ( attr==INVALID_FILE_ATTRIBUTES ){ lastErrno = osGetLastError(); if( lastErrno==ERROR_FILE_NOT_FOUND || lastErrno==ERROR_PATH_NOT_FOUND ){ rc = SQLITE_IOERR_DELETE_NOENT; /* Already gone? */ }else{ rc = SQLITE_ERROR; } break; } if ( attr&FILE_ATTRIBUTE_DIRECTORY ){ rc = SQLITE_ERROR; /* Files only. */ break; } if ( osDeleteFileA(zConverted) ){ rc = SQLITE_OK; /* Deleted OK. */ break; } if ( !winRetryIoerr(&cnt, &lastErrno) ){ rc = SQLITE_ERROR; /* No more retries. */ break; } } while(1); } #endif if( rc && rc!=SQLITE_IOERR_DELETE_NOENT ){ rc = winLogError(SQLITE_IOERR_DELETE, lastErrno, "winDelete", zFilename); }else{ winLogIoerr(cnt, __LINE__); } sqlite3_free(zConverted); OSTRACE(("DELETE name=%s, rc=%s\n", zFilename, sqlite3ErrName(rc))); return rc; } /* ** Check the existence and status of a file. */ static int winAccess( sqlite3_vfs *pVfs, /* Not used on win32 */ const char *zFilename, /* Name of file to check */ int flags, /* Type of test to make on this file */ int *pResOut /* OUT: Result */ ){ DWORD attr; int rc = 0; DWORD lastErrno = 0; void *zConverted; UNUSED_PARAMETER(pVfs); SimulateIOError( return SQLITE_IOERR_ACCESS; ); OSTRACE(("ACCESS name=%s, flags=%x, pResOut=%p\n", zFilename, flags, pResOut)); zConverted = winConvertFromUtf8Filename(zFilename); if( zConverted==0 ){ OSTRACE(("ACCESS name=%s, rc=SQLITE_IOERR_NOMEM\n", zFilename)); return SQLITE_IOERR_NOMEM_BKPT; } if( osIsNT() ){ int cnt = 0; WIN32_FILE_ATTRIBUTE_DATA sAttrData; memset(&sAttrData, 0, sizeof(sAttrData)); while( !(rc = osGetFileAttributesExW((LPCWSTR)zConverted, GetFileExInfoStandard, &sAttrData)) && winRetryIoerr(&cnt, &lastErrno) ){} if( rc ){ /* For an SQLITE_ACCESS_EXISTS query, treat a zero-length file ** as if it does not exist. */ if( flags==SQLITE_ACCESS_EXISTS && sAttrData.nFileSizeHigh==0 && sAttrData.nFileSizeLow==0 ){ attr = INVALID_FILE_ATTRIBUTES; }else{ attr = sAttrData.dwFileAttributes; } }else{ winLogIoerr(cnt, __LINE__); if( lastErrno!=ERROR_FILE_NOT_FOUND && lastErrno!=ERROR_PATH_NOT_FOUND ){ sqlite3_free(zConverted); return winLogError(SQLITE_IOERR_ACCESS, lastErrno, "winAccess", zFilename); }else{ attr = INVALID_FILE_ATTRIBUTES; } } } #ifdef SQLITE_WIN32_HAS_ANSI else{ attr = osGetFileAttributesA((char*)zConverted); } #endif sqlite3_free(zConverted); switch( flags ){ case SQLITE_ACCESS_READ: case SQLITE_ACCESS_EXISTS: rc = attr!=INVALID_FILE_ATTRIBUTES; break; case SQLITE_ACCESS_READWRITE: rc = attr!=INVALID_FILE_ATTRIBUTES && (attr & FILE_ATTRIBUTE_READONLY)==0; break; default: assert(!"Invalid flags argument"); } *pResOut = rc; OSTRACE(("ACCESS name=%s, pResOut=%p, *pResOut=%d, rc=SQLITE_OK\n", zFilename, pResOut, *pResOut)); return SQLITE_OK; } /* ** Returns non-zero if the specified path name starts with the "long path" ** prefix. */ static BOOL winIsLongPathPrefix( const char *zPathname ){ return ( zPathname[0]=='\\' && zPathname[1]=='\\' && zPathname[2]=='?' && zPathname[3]=='\\' ); } /* ** Returns non-zero if the specified path name starts with a drive letter ** followed by a colon character. */ static BOOL winIsDriveLetterAndColon( const char *zPathname ){ return ( sqlite3Isalpha(zPathname[0]) && zPathname[1]==':' ); } /* ** Returns non-zero if the specified path name should be used verbatim. If ** non-zero is returned from this function, the calling function must simply ** use the provided path name verbatim -OR- resolve it into a full path name ** using the GetFullPathName Win32 API function (if available). */ static BOOL winIsVerbatimPathname( const char *zPathname ){ /* ** If the path name starts with a forward slash or a backslash, it is either ** a legal UNC name, a volume relative path, or an absolute path name in the ** "Unix" format on Windows. There is no easy way to differentiate between ** the final two cases; therefore, we return the safer return value of TRUE ** so that callers of this function will simply use it verbatim. */ if ( winIsDirSep(zPathname[0]) ){ return TRUE; } /* ** If the path name starts with a letter and a colon it is either a volume ** relative path or an absolute path. Callers of this function must not ** attempt to treat it as a relative path name (i.e. they should simply use ** it verbatim). */ if ( winIsDriveLetterAndColon(zPathname) ){ return TRUE; } /* ** If we get to this point, the path name should almost certainly be a purely ** relative one (i.e. not a UNC name, not absolute, and not volume relative). */ return FALSE; } /* ** Turn a relative pathname into a full pathname. Write the full ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname ** bytes in size. */ static int winFullPathname( sqlite3_vfs *pVfs, /* Pointer to vfs object */ const char *zRelative, /* Possibly relative input path */ int nFull, /* Size of output buffer in bytes */ char *zFull /* Output buffer */ ){ #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(__CYGWIN__) DWORD nByte; void *zConverted; char *zOut; #endif /* If this path name begins with "/X:" or "\\?\", where "X" is any ** alphabetic character, discard the initial "/" from the pathname. */ if( zRelative[0]=='/' && (winIsDriveLetterAndColon(zRelative+1) || winIsLongPathPrefix(zRelative+1)) ){ zRelative++; } #if defined(__CYGWIN__) SimulateIOError( return SQLITE_ERROR ); UNUSED_PARAMETER(nFull); assert( nFull>=pVfs->mxPathname ); if ( sqlite3_data_directory && !winIsVerbatimPathname(zRelative) ){ /* ** NOTE: We are dealing with a relative path name and the data ** directory has been set. Therefore, use it as the basis ** for converting the relative path name to an absolute ** one by prepending the data directory and a slash. */ char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); if( !zOut ){ return SQLITE_IOERR_NOMEM_BKPT; } if( cygwin_conv_path( (osIsNT() ? CCP_POSIX_TO_WIN_W : CCP_POSIX_TO_WIN_A) | CCP_RELATIVE, zRelative, zOut, pVfs->mxPathname+1)<0 ){ sqlite3_free(zOut); return winLogError(SQLITE_CANTOPEN_CONVPATH, (DWORD)errno, "winFullPathname1", zRelative); }else{ char *zUtf8 = winConvertToUtf8Filename(zOut); if( !zUtf8 ){ sqlite3_free(zOut); return SQLITE_IOERR_NOMEM_BKPT; } sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s", sqlite3_data_directory, winGetDirSep(), zUtf8); sqlite3_free(zUtf8); sqlite3_free(zOut); } }else{ char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 ); if( !zOut ){ return SQLITE_IOERR_NOMEM_BKPT; } if( cygwin_conv_path( (osIsNT() ? CCP_POSIX_TO_WIN_W : CCP_POSIX_TO_WIN_A), zRelative, zOut, pVfs->mxPathname+1)<0 ){ sqlite3_free(zOut); return winLogError(SQLITE_CANTOPEN_CONVPATH, (DWORD)errno, "winFullPathname2", zRelative); }else{ char *zUtf8 = winConvertToUtf8Filename(zOut); if( !zUtf8 ){ sqlite3_free(zOut); return SQLITE_IOERR_NOMEM_BKPT; } sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zUtf8); sqlite3_free(zUtf8); sqlite3_free(zOut); } } return SQLITE_OK; #endif #if (SQLITE_OS_WINCE || SQLITE_OS_WINRT) && !defined(__CYGWIN__) SimulateIOError( return SQLITE_ERROR ); /* WinCE has no concept of a relative pathname, or so I am told. */ /* WinRT has no way to convert a relative path to an absolute one. */ if ( sqlite3_data_directory && !winIsVerbatimPathname(zRelative) ){ /* ** NOTE: We are dealing with a relative path name and the data ** directory has been set. Therefore, use it as the basis ** for converting the relative path name to an absolute ** one by prepending the data directory and a backslash. */ sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s", sqlite3_data_directory, winGetDirSep(), zRelative); }else{ sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zRelative); } return SQLITE_OK; #endif #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && !defined(__CYGWIN__) /* It's odd to simulate an io-error here, but really this is just ** using the io-error infrastructure to test that SQLite handles this ** function failing. This function could fail if, for example, the ** current working directory has been unlinked. */ SimulateIOError( return SQLITE_ERROR ); if ( sqlite3_data_directory && !winIsVerbatimPathname(zRelative) ){ /* ** NOTE: We are dealing with a relative path name and the data ** directory has been set. Therefore, use it as the basis ** for converting the relative path name to an absolute ** one by prepending the data directory and a backslash. */ sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s", sqlite3_data_directory, winGetDirSep(), zRelative); return SQLITE_OK; } zConverted = winConvertFromUtf8Filename(zRelative); if( zConverted==0 ){ return SQLITE_IOERR_NOMEM_BKPT; } if( osIsNT() ){ LPWSTR zTemp; nByte = osGetFullPathNameW((LPCWSTR)zConverted, 0, 0, 0); if( nByte==0 ){ sqlite3_free(zConverted); return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), "winFullPathname1", zRelative); } nByte += 3; zTemp = sqlite3MallocZero( nByte*sizeof(zTemp[0]) ); if( zTemp==0 ){ sqlite3_free(zConverted); return SQLITE_IOERR_NOMEM_BKPT; } nByte = osGetFullPathNameW((LPCWSTR)zConverted, nByte, zTemp, 0); if( nByte==0 ){ sqlite3_free(zConverted); sqlite3_free(zTemp); return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), "winFullPathname2", zRelative); } sqlite3_free(zConverted); zOut = winUnicodeToUtf8(zTemp); sqlite3_free(zTemp); } #ifdef SQLITE_WIN32_HAS_ANSI else{ char *zTemp; nByte = osGetFullPathNameA((char*)zConverted, 0, 0, 0); if( nByte==0 ){ sqlite3_free(zConverted); return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), "winFullPathname3", zRelative); } nByte += 3; zTemp = sqlite3MallocZero( nByte*sizeof(zTemp[0]) ); if( zTemp==0 ){ sqlite3_free(zConverted); return SQLITE_IOERR_NOMEM_BKPT; } nByte = osGetFullPathNameA((char*)zConverted, nByte, zTemp, 0); if( nByte==0 ){ sqlite3_free(zConverted); sqlite3_free(zTemp); return winLogError(SQLITE_CANTOPEN_FULLPATH, osGetLastError(), "winFullPathname4", zRelative); } sqlite3_free(zConverted); zOut = winMbcsToUtf8(zTemp, osAreFileApisANSI()); sqlite3_free(zTemp); } #endif if( zOut ){ sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zOut); sqlite3_free(zOut); return SQLITE_OK; }else{ return SQLITE_IOERR_NOMEM_BKPT; } #endif } #ifndef SQLITE_OMIT_LOAD_EXTENSION /* ** Interfaces for opening a shared library, finding entry points ** within the shared library, and closing the shared library. */ static void *winDlOpen(sqlite3_vfs *pVfs, const char *zFilename){ HANDLE h; #if defined(__CYGWIN__) int nFull = pVfs->mxPathname+1; char *zFull = sqlite3MallocZero( nFull ); void *zConverted = 0; if( zFull==0 ){ OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)0)); return 0; } if( winFullPathname(pVfs, zFilename, nFull, zFull)!=SQLITE_OK ){ sqlite3_free(zFull); OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)0)); return 0; } zConverted = winConvertFromUtf8Filename(zFull); sqlite3_free(zFull); #else void *zConverted = winConvertFromUtf8Filename(zFilename); UNUSED_PARAMETER(pVfs); #endif if( zConverted==0 ){ OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)0)); return 0; } if( osIsNT() ){ #if SQLITE_OS_WINRT h = osLoadPackagedLibrary((LPCWSTR)zConverted, 0); #else h = osLoadLibraryW((LPCWSTR)zConverted); #endif } #ifdef SQLITE_WIN32_HAS_ANSI else{ h = osLoadLibraryA((char*)zConverted); } #endif OSTRACE(("DLOPEN name=%s, handle=%p\n", zFilename, (void*)h)); sqlite3_free(zConverted); return (void*)h; } static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){ UNUSED_PARAMETER(pVfs); winGetLastErrorMsg(osGetLastError(), nBuf, zBufOut); } static void (*winDlSym(sqlite3_vfs *pVfs,void *pH,const char *zSym))(void){ FARPROC proc; UNUSED_PARAMETER(pVfs); proc = osGetProcAddressA((HANDLE)pH, zSym); OSTRACE(("DLSYM handle=%p, symbol=%s, address=%p\n", (void*)pH, zSym, (void*)proc)); return (void(*)(void))proc; } static void winDlClose(sqlite3_vfs *pVfs, void *pHandle){ UNUSED_PARAMETER(pVfs); osFreeLibrary((HANDLE)pHandle); OSTRACE(("DLCLOSE handle=%p\n", (void*)pHandle)); } #else /* if SQLITE_OMIT_LOAD_EXTENSION is defined: */ #define winDlOpen 0 #define winDlError 0 #define winDlSym 0 #define winDlClose 0 #endif /* State information for the randomness gatherer. */ typedef struct EntropyGatherer EntropyGatherer; struct EntropyGatherer { unsigned char *a; /* Gather entropy into this buffer */ int na; /* Size of a[] in bytes */ int i; /* XOR next input into a[i] */ int nXor; /* Number of XOR operations done */ }; #if !defined(SQLITE_TEST) && !defined(SQLITE_OMIT_RANDOMNESS) /* Mix sz bytes of entropy into p. */ static void xorMemory(EntropyGatherer *p, unsigned char *x, int sz){ int j, k; for(j=0, k=p->i; ja[k++] ^= x[j]; if( k>=p->na ) k = 0; } p->i = k; p->nXor += sz; } #endif /* !defined(SQLITE_TEST) && !defined(SQLITE_OMIT_RANDOMNESS) */ /* ** Write up to nBuf bytes of randomness into zBuf. */ static int winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ #if defined(SQLITE_TEST) || defined(SQLITE_OMIT_RANDOMNESS) UNUSED_PARAMETER(pVfs); memset(zBuf, 0, nBuf); return nBuf; #else EntropyGatherer e; UNUSED_PARAMETER(pVfs); memset(zBuf, 0, nBuf); e.a = (unsigned char*)zBuf; e.na = nBuf; e.nXor = 0; e.i = 0; { SYSTEMTIME x; osGetSystemTime(&x); xorMemory(&e, (unsigned char*)&x, sizeof(SYSTEMTIME)); } { DWORD pid = osGetCurrentProcessId(); xorMemory(&e, (unsigned char*)&pid, sizeof(DWORD)); } #if SQLITE_OS_WINRT { ULONGLONG cnt = osGetTickCount64(); xorMemory(&e, (unsigned char*)&cnt, sizeof(ULONGLONG)); } #else { DWORD cnt = osGetTickCount(); xorMemory(&e, (unsigned char*)&cnt, sizeof(DWORD)); } #endif /* SQLITE_OS_WINRT */ { LARGE_INTEGER i; osQueryPerformanceCounter(&i); xorMemory(&e, (unsigned char*)&i, sizeof(LARGE_INTEGER)); } #if !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID { UUID id; memset(&id, 0, sizeof(UUID)); osUuidCreate(&id); xorMemory(&e, (unsigned char*)&id, sizeof(UUID)); memset(&id, 0, sizeof(UUID)); osUuidCreateSequential(&id); xorMemory(&e, (unsigned char*)&id, sizeof(UUID)); } #endif /* !SQLITE_OS_WINCE && !SQLITE_OS_WINRT && SQLITE_WIN32_USE_UUID */ return e.nXor>nBuf ? nBuf : e.nXor; #endif /* defined(SQLITE_TEST) || defined(SQLITE_OMIT_RANDOMNESS) */ } /* ** Sleep for a little while. Return the amount of time slept. */ static int winSleep(sqlite3_vfs *pVfs, int microsec){ sqlite3_win32_sleep((microsec+999)/1000); UNUSED_PARAMETER(pVfs); return ((microsec+999)/1000)*1000; } /* ** The following variable, if set to a non-zero value, is interpreted as ** the number of seconds since 1970 and is used to set the result of ** sqlite3OsCurrentTime() during testing. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_current_time = 0; /* Fake system time in seconds since 1970. */ #endif /* ** Find the current time (in Universal Coordinated Time). Write into *piNow ** the current time and date as a Julian Day number times 86_400_000. In ** other words, write into *piNow the number of milliseconds since the Julian ** epoch of noon in Greenwich on November 24, 4714 B.C according to the ** proleptic Gregorian calendar. ** ** On success, return SQLITE_OK. Return SQLITE_ERROR if the time and date ** cannot be found. */ static int winCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow){ /* FILETIME structure is a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (= JD 2305813.5). */ FILETIME ft; static const sqlite3_int64 winFiletimeEpoch = 23058135*(sqlite3_int64)8640000; #ifdef SQLITE_TEST static const sqlite3_int64 unixEpoch = 24405875*(sqlite3_int64)8640000; #endif /* 2^32 - to avoid use of LL and warnings in gcc */ static const sqlite3_int64 max32BitValue = (sqlite3_int64)2000000000 + (sqlite3_int64)2000000000 + (sqlite3_int64)294967296; #if SQLITE_OS_WINCE SYSTEMTIME time; osGetSystemTime(&time); /* if SystemTimeToFileTime() fails, it returns zero. */ if (!osSystemTimeToFileTime(&time,&ft)){ return SQLITE_ERROR; } #else osGetSystemTimeAsFileTime( &ft ); #endif *piNow = winFiletimeEpoch + ((((sqlite3_int64)ft.dwHighDateTime)*max32BitValue) + (sqlite3_int64)ft.dwLowDateTime)/(sqlite3_int64)10000; #ifdef SQLITE_TEST if( sqlite3_current_time ){ *piNow = 1000*(sqlite3_int64)sqlite3_current_time + unixEpoch; } #endif UNUSED_PARAMETER(pVfs); return SQLITE_OK; } /* ** Find the current time (in Universal Coordinated Time). Write the ** current time and date as a Julian Day number into *prNow and ** return 0. Return 1 if the time and date cannot be found. */ static int winCurrentTime(sqlite3_vfs *pVfs, double *prNow){ int rc; sqlite3_int64 i; rc = winCurrentTimeInt64(pVfs, &i); if( !rc ){ *prNow = i/86400000.0; } return rc; } /* ** The idea is that this function works like a combination of ** GetLastError() and FormatMessage() on Windows (or errno and ** strerror_r() on Unix). After an error is returned by an OS ** function, SQLite calls this function with zBuf pointing to ** a buffer of nBuf bytes. The OS layer should populate the ** buffer with a nul-terminated UTF-8 encoded error message ** describing the last IO error to have occurred within the calling ** thread. ** ** If the error message is too large for the supplied buffer, ** it should be truncated. The return value of xGetLastError ** is zero if the error message fits in the buffer, or non-zero ** otherwise (if the message was truncated). If non-zero is returned, ** then it is not necessary to include the nul-terminator character ** in the output buffer. ** ** Not supplying an error message will have no adverse effect ** on SQLite. It is fine to have an implementation that never ** returns an error message: ** ** int xGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ ** assert(zBuf[0]=='\0'); ** return 0; ** } ** ** However if an error message is supplied, it will be incorporated ** by sqlite into the error message available to the user using ** sqlite3_errmsg(), possibly making IO errors easier to debug. */ static int winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf){ DWORD e = osGetLastError(); UNUSED_PARAMETER(pVfs); if( nBuf>0 ) winGetLastErrorMsg(e, nBuf, zBuf); return e; } /* ** Initialize and deinitialize the operating system interface. */ SQLITE_API int sqlite3_os_init(void){ static sqlite3_vfs winVfs = { 3, /* iVersion */ sizeof(winFile), /* szOsFile */ SQLITE_WIN32_MAX_PATH_BYTES, /* mxPathname */ 0, /* pNext */ "win32", /* zName */ &winAppData, /* pAppData */ winOpen, /* xOpen */ winDelete, /* xDelete */ winAccess, /* xAccess */ winFullPathname, /* xFullPathname */ winDlOpen, /* xDlOpen */ winDlError, /* xDlError */ winDlSym, /* xDlSym */ winDlClose, /* xDlClose */ winRandomness, /* xRandomness */ winSleep, /* xSleep */ winCurrentTime, /* xCurrentTime */ winGetLastError, /* xGetLastError */ winCurrentTimeInt64, /* xCurrentTimeInt64 */ winSetSystemCall, /* xSetSystemCall */ winGetSystemCall, /* xGetSystemCall */ winNextSystemCall, /* xNextSystemCall */ }; #if defined(SQLITE_WIN32_HAS_WIDE) static sqlite3_vfs winLongPathVfs = { 3, /* iVersion */ sizeof(winFile), /* szOsFile */ SQLITE_WINNT_MAX_PATH_BYTES, /* mxPathname */ 0, /* pNext */ "win32-longpath", /* zName */ &winAppData, /* pAppData */ winOpen, /* xOpen */ winDelete, /* xDelete */ winAccess, /* xAccess */ winFullPathname, /* xFullPathname */ winDlOpen, /* xDlOpen */ winDlError, /* xDlError */ winDlSym, /* xDlSym */ winDlClose, /* xDlClose */ winRandomness, /* xRandomness */ winSleep, /* xSleep */ winCurrentTime, /* xCurrentTime */ winGetLastError, /* xGetLastError */ winCurrentTimeInt64, /* xCurrentTimeInt64 */ winSetSystemCall, /* xSetSystemCall */ winGetSystemCall, /* xGetSystemCall */ winNextSystemCall, /* xNextSystemCall */ }; #endif static sqlite3_vfs winNolockVfs = { 3, /* iVersion */ sizeof(winFile), /* szOsFile */ SQLITE_WIN32_MAX_PATH_BYTES, /* mxPathname */ 0, /* pNext */ "win32-none", /* zName */ &winNolockAppData, /* pAppData */ winOpen, /* xOpen */ winDelete, /* xDelete */ winAccess, /* xAccess */ winFullPathname, /* xFullPathname */ winDlOpen, /* xDlOpen */ winDlError, /* xDlError */ winDlSym, /* xDlSym */ winDlClose, /* xDlClose */ winRandomness, /* xRandomness */ winSleep, /* xSleep */ winCurrentTime, /* xCurrentTime */ winGetLastError, /* xGetLastError */ winCurrentTimeInt64, /* xCurrentTimeInt64 */ winSetSystemCall, /* xSetSystemCall */ winGetSystemCall, /* xGetSystemCall */ winNextSystemCall, /* xNextSystemCall */ }; #if defined(SQLITE_WIN32_HAS_WIDE) static sqlite3_vfs winLongPathNolockVfs = { 3, /* iVersion */ sizeof(winFile), /* szOsFile */ SQLITE_WINNT_MAX_PATH_BYTES, /* mxPathname */ 0, /* pNext */ "win32-longpath-none", /* zName */ &winNolockAppData, /* pAppData */ winOpen, /* xOpen */ winDelete, /* xDelete */ winAccess, /* xAccess */ winFullPathname, /* xFullPathname */ winDlOpen, /* xDlOpen */ winDlError, /* xDlError */ winDlSym, /* xDlSym */ winDlClose, /* xDlClose */ winRandomness, /* xRandomness */ winSleep, /* xSleep */ winCurrentTime, /* xCurrentTime */ winGetLastError, /* xGetLastError */ winCurrentTimeInt64, /* xCurrentTimeInt64 */ winSetSystemCall, /* xSetSystemCall */ winGetSystemCall, /* xGetSystemCall */ winNextSystemCall, /* xNextSystemCall */ }; #endif /* Double-check that the aSyscall[] array has been constructed ** correctly. See ticket [bb3a86e890c8e96ab] */ assert( ArraySize(aSyscall)==80 ); /* get memory map allocation granularity */ memset(&winSysInfo, 0, sizeof(SYSTEM_INFO)); #if SQLITE_OS_WINRT osGetNativeSystemInfo(&winSysInfo); #else osGetSystemInfo(&winSysInfo); #endif assert( winSysInfo.dwAllocationGranularity>0 ); assert( winSysInfo.dwPageSize>0 ); sqlite3_vfs_register(&winVfs, 1); #if defined(SQLITE_WIN32_HAS_WIDE) sqlite3_vfs_register(&winLongPathVfs, 0); #endif sqlite3_vfs_register(&winNolockVfs, 0); #if defined(SQLITE_WIN32_HAS_WIDE) sqlite3_vfs_register(&winLongPathNolockVfs, 0); #endif #ifndef SQLITE_OMIT_WAL winBigLock = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_VFS1); #endif return SQLITE_OK; } SQLITE_API int sqlite3_os_end(void){ #if SQLITE_OS_WINRT if( sleepObj!=NULL ){ osCloseHandle(sleepObj); sleepObj = NULL; } #endif #ifndef SQLITE_OMIT_WAL winBigLock = 0; #endif return SQLITE_OK; } #endif /* SQLITE_OS_WIN */ /************** End of os_win.c **********************************************/ /************** Begin file memdb.c *******************************************/ /* ** 2016-09-07 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file implements an in-memory VFS. A database is held as a contiguous ** block of memory. ** ** This file also implements interface sqlite3_serialize() and ** sqlite3_deserialize(). */ /* #include "sqliteInt.h" */ #ifdef SQLITE_ENABLE_DESERIALIZE /* ** Forward declaration of objects used by this utility */ typedef struct sqlite3_vfs MemVfs; typedef struct MemFile MemFile; /* Access to a lower-level VFS that (might) implement dynamic loading, ** access to randomness, etc. */ #define ORIGVFS(p) ((sqlite3_vfs*)((p)->pAppData)) /* An open file */ struct MemFile { sqlite3_file base; /* IO methods */ sqlite3_int64 sz; /* Size of the file */ sqlite3_int64 szAlloc; /* Space allocated to aData */ sqlite3_int64 szMax; /* Maximum allowed size of the file */ unsigned char *aData; /* content of the file */ int nMmap; /* Number of memory mapped pages */ unsigned mFlags; /* Flags */ int eLock; /* Most recent lock against this file */ }; /* ** Methods for MemFile */ static int memdbClose(sqlite3_file*); static int memdbRead(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); static int memdbWrite(sqlite3_file*,const void*,int iAmt, sqlite3_int64 iOfst); static int memdbTruncate(sqlite3_file*, sqlite3_int64 size); static int memdbSync(sqlite3_file*, int flags); static int memdbFileSize(sqlite3_file*, sqlite3_int64 *pSize); static int memdbLock(sqlite3_file*, int); /* static int memdbCheckReservedLock(sqlite3_file*, int *pResOut);// not used */ static int memdbFileControl(sqlite3_file*, int op, void *pArg); /* static int memdbSectorSize(sqlite3_file*); // not used */ static int memdbDeviceCharacteristics(sqlite3_file*); static int memdbFetch(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); static int memdbUnfetch(sqlite3_file*, sqlite3_int64 iOfst, void *p); /* ** Methods for MemVfs */ static int memdbOpen(sqlite3_vfs*, const char *, sqlite3_file*, int , int *); /* static int memdbDelete(sqlite3_vfs*, const char *zName, int syncDir); */ static int memdbAccess(sqlite3_vfs*, const char *zName, int flags, int *); static int memdbFullPathname(sqlite3_vfs*, const char *zName, int, char *zOut); static void *memdbDlOpen(sqlite3_vfs*, const char *zFilename); static void memdbDlError(sqlite3_vfs*, int nByte, char *zErrMsg); static void (*memdbDlSym(sqlite3_vfs *pVfs, void *p, const char*zSym))(void); static void memdbDlClose(sqlite3_vfs*, void*); static int memdbRandomness(sqlite3_vfs*, int nByte, char *zOut); static int memdbSleep(sqlite3_vfs*, int microseconds); /* static int memdbCurrentTime(sqlite3_vfs*, double*); */ static int memdbGetLastError(sqlite3_vfs*, int, char *); static int memdbCurrentTimeInt64(sqlite3_vfs*, sqlite3_int64*); static sqlite3_vfs memdb_vfs = { 2, /* iVersion */ 0, /* szOsFile (set when registered) */ 1024, /* mxPathname */ 0, /* pNext */ "memdb", /* zName */ 0, /* pAppData (set when registered) */ memdbOpen, /* xOpen */ 0, /* memdbDelete, */ /* xDelete */ memdbAccess, /* xAccess */ memdbFullPathname, /* xFullPathname */ memdbDlOpen, /* xDlOpen */ memdbDlError, /* xDlError */ memdbDlSym, /* xDlSym */ memdbDlClose, /* xDlClose */ memdbRandomness, /* xRandomness */ memdbSleep, /* xSleep */ 0, /* memdbCurrentTime, */ /* xCurrentTime */ memdbGetLastError, /* xGetLastError */ memdbCurrentTimeInt64 /* xCurrentTimeInt64 */ }; static const sqlite3_io_methods memdb_io_methods = { 3, /* iVersion */ memdbClose, /* xClose */ memdbRead, /* xRead */ memdbWrite, /* xWrite */ memdbTruncate, /* xTruncate */ memdbSync, /* xSync */ memdbFileSize, /* xFileSize */ memdbLock, /* xLock */ memdbLock, /* xUnlock - same as xLock in this case */ 0, /* memdbCheckReservedLock, */ /* xCheckReservedLock */ memdbFileControl, /* xFileControl */ 0, /* memdbSectorSize,*/ /* xSectorSize */ memdbDeviceCharacteristics, /* xDeviceCharacteristics */ 0, /* xShmMap */ 0, /* xShmLock */ 0, /* xShmBarrier */ 0, /* xShmUnmap */ memdbFetch, /* xFetch */ memdbUnfetch /* xUnfetch */ }; /* ** Close an memdb-file. ** ** The pData pointer is owned by the application, so there is nothing ** to free. */ static int memdbClose(sqlite3_file *pFile){ MemFile *p = (MemFile *)pFile; if( p->mFlags & SQLITE_DESERIALIZE_FREEONCLOSE ) sqlite3_free(p->aData); return SQLITE_OK; } /* ** Read data from an memdb-file. */ static int memdbRead( sqlite3_file *pFile, void *zBuf, int iAmt, sqlite_int64 iOfst ){ MemFile *p = (MemFile *)pFile; if( iOfst+iAmt>p->sz ){ memset(zBuf, 0, iAmt); if( iOfstsz ) memcpy(zBuf, p->aData+iOfst, p->sz - iOfst); return SQLITE_IOERR_SHORT_READ; } memcpy(zBuf, p->aData+iOfst, iAmt); return SQLITE_OK; } /* ** Try to enlarge the memory allocation to hold at least sz bytes */ static int memdbEnlarge(MemFile *p, sqlite3_int64 newSz){ unsigned char *pNew; if( (p->mFlags & SQLITE_DESERIALIZE_RESIZEABLE)==0 || p->nMmap>0 ){ return SQLITE_FULL; } if( newSz>p->szMax ){ return SQLITE_FULL; } newSz *= 2; if( newSz>p->szMax ) newSz = p->szMax; pNew = sqlite3Realloc(p->aData, newSz); if( pNew==0 ) return SQLITE_NOMEM; p->aData = pNew; p->szAlloc = newSz; return SQLITE_OK; } /* ** Write data to an memdb-file. */ static int memdbWrite( sqlite3_file *pFile, const void *z, int iAmt, sqlite_int64 iOfst ){ MemFile *p = (MemFile *)pFile; if( NEVER(p->mFlags & SQLITE_DESERIALIZE_READONLY) ) return SQLITE_READONLY; if( iOfst+iAmt>p->sz ){ int rc; if( iOfst+iAmt>p->szAlloc && (rc = memdbEnlarge(p, iOfst+iAmt))!=SQLITE_OK ){ return rc; } if( iOfst>p->sz ) memset(p->aData+p->sz, 0, iOfst-p->sz); p->sz = iOfst+iAmt; } memcpy(p->aData+iOfst, z, iAmt); return SQLITE_OK; } /* ** Truncate an memdb-file. ** ** In rollback mode (which is always the case for memdb, as it does not ** support WAL mode) the truncate() method is only used to reduce ** the size of a file, never to increase the size. */ static int memdbTruncate(sqlite3_file *pFile, sqlite_int64 size){ MemFile *p = (MemFile *)pFile; if( NEVER(size>p->sz) ) return SQLITE_FULL; p->sz = size; return SQLITE_OK; } /* ** Sync an memdb-file. */ static int memdbSync(sqlite3_file *pFile, int flags){ return SQLITE_OK; } /* ** Return the current file-size of an memdb-file. */ static int memdbFileSize(sqlite3_file *pFile, sqlite_int64 *pSize){ MemFile *p = (MemFile *)pFile; *pSize = p->sz; return SQLITE_OK; } /* ** Lock an memdb-file. */ static int memdbLock(sqlite3_file *pFile, int eLock){ MemFile *p = (MemFile *)pFile; if( eLock>SQLITE_LOCK_SHARED && (p->mFlags & SQLITE_DESERIALIZE_READONLY)!=0 ){ return SQLITE_READONLY; } p->eLock = eLock; return SQLITE_OK; } #if 0 /* Never used because memdbAccess() always returns false */ /* ** Check if another file-handle holds a RESERVED lock on an memdb-file. */ static int memdbCheckReservedLock(sqlite3_file *pFile, int *pResOut){ *pResOut = 0; return SQLITE_OK; } #endif /* ** File control method. For custom operations on an memdb-file. */ static int memdbFileControl(sqlite3_file *pFile, int op, void *pArg){ MemFile *p = (MemFile *)pFile; int rc = SQLITE_NOTFOUND; if( op==SQLITE_FCNTL_VFSNAME ){ *(char**)pArg = sqlite3_mprintf("memdb(%p,%lld)", p->aData, p->sz); rc = SQLITE_OK; } if( op==SQLITE_FCNTL_SIZE_LIMIT ){ sqlite3_int64 iLimit = *(sqlite3_int64*)pArg; if( iLimitsz ){ if( iLimit<0 ){ iLimit = p->szMax; }else{ iLimit = p->sz; } } p->szMax = iLimit; *(sqlite3_int64*)pArg = iLimit; rc = SQLITE_OK; } return rc; } #if 0 /* Not used because of SQLITE_IOCAP_POWERSAFE_OVERWRITE */ /* ** Return the sector-size in bytes for an memdb-file. */ static int memdbSectorSize(sqlite3_file *pFile){ return 1024; } #endif /* ** Return the device characteristic flags supported by an memdb-file. */ static int memdbDeviceCharacteristics(sqlite3_file *pFile){ return SQLITE_IOCAP_ATOMIC | SQLITE_IOCAP_POWERSAFE_OVERWRITE | SQLITE_IOCAP_SAFE_APPEND | SQLITE_IOCAP_SEQUENTIAL; } /* Fetch a page of a memory-mapped file */ static int memdbFetch( sqlite3_file *pFile, sqlite3_int64 iOfst, int iAmt, void **pp ){ MemFile *p = (MemFile *)pFile; if( iOfst+iAmt>p->sz ){ *pp = 0; }else{ p->nMmap++; *pp = (void*)(p->aData + iOfst); } return SQLITE_OK; } /* Release a memory-mapped page */ static int memdbUnfetch(sqlite3_file *pFile, sqlite3_int64 iOfst, void *pPage){ MemFile *p = (MemFile *)pFile; p->nMmap--; return SQLITE_OK; } /* ** Open an mem file handle. */ static int memdbOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ){ MemFile *p = (MemFile*)pFile; if( (flags & SQLITE_OPEN_MAIN_DB)==0 ){ return ORIGVFS(pVfs)->xOpen(ORIGVFS(pVfs), zName, pFile, flags, pOutFlags); } memset(p, 0, sizeof(*p)); p->mFlags = SQLITE_DESERIALIZE_RESIZEABLE | SQLITE_DESERIALIZE_FREEONCLOSE; assert( pOutFlags!=0 ); /* True because flags==SQLITE_OPEN_MAIN_DB */ *pOutFlags = flags | SQLITE_OPEN_MEMORY; pFile->pMethods = &memdb_io_methods; p->szMax = sqlite3GlobalConfig.mxMemdbSize; return SQLITE_OK; } #if 0 /* Only used to delete rollback journals, super-journals, and WAL ** files, none of which exist in memdb. So this routine is never used */ /* ** Delete the file located at zPath. If the dirSync argument is true, ** ensure the file-system modifications are synced to disk before ** returning. */ static int memdbDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ return SQLITE_IOERR_DELETE; } #endif /* ** Test for access permissions. Return true if the requested permission ** is available, or false otherwise. ** ** With memdb, no files ever exist on disk. So always return false. */ static int memdbAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ){ *pResOut = 0; return SQLITE_OK; } /* ** Populate buffer zOut with the full canonical pathname corresponding ** to the pathname in zPath. zOut is guaranteed to point to a buffer ** of at least (INST_MAX_PATHNAME+1) bytes. */ static int memdbFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ){ sqlite3_snprintf(nOut, zOut, "%s", zPath); return SQLITE_OK; } /* ** Open the dynamic library located at zPath and return a handle. */ static void *memdbDlOpen(sqlite3_vfs *pVfs, const char *zPath){ return ORIGVFS(pVfs)->xDlOpen(ORIGVFS(pVfs), zPath); } /* ** Populate the buffer zErrMsg (size nByte bytes) with a human readable ** utf-8 string describing the most recent error encountered associated ** with dynamic libraries. */ static void memdbDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ ORIGVFS(pVfs)->xDlError(ORIGVFS(pVfs), nByte, zErrMsg); } /* ** Return a pointer to the symbol zSymbol in the dynamic library pHandle. */ static void (*memdbDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym))(void){ return ORIGVFS(pVfs)->xDlSym(ORIGVFS(pVfs), p, zSym); } /* ** Close the dynamic library handle pHandle. */ static void memdbDlClose(sqlite3_vfs *pVfs, void *pHandle){ ORIGVFS(pVfs)->xDlClose(ORIGVFS(pVfs), pHandle); } /* ** Populate the buffer pointed to by zBufOut with nByte bytes of ** random data. */ static int memdbRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ return ORIGVFS(pVfs)->xRandomness(ORIGVFS(pVfs), nByte, zBufOut); } /* ** Sleep for nMicro microseconds. Return the number of microseconds ** actually slept. */ static int memdbSleep(sqlite3_vfs *pVfs, int nMicro){ return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); } #if 0 /* Never used. Modern cores only call xCurrentTimeInt64() */ /* ** Return the current time as a Julian Day number in *pTimeOut. */ static int memdbCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); } #endif static int memdbGetLastError(sqlite3_vfs *pVfs, int a, char *b){ return ORIGVFS(pVfs)->xGetLastError(ORIGVFS(pVfs), a, b); } static int memdbCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *p){ return ORIGVFS(pVfs)->xCurrentTimeInt64(ORIGVFS(pVfs), p); } /* ** Translate a database connection pointer and schema name into a ** MemFile pointer. */ static MemFile *memdbFromDbSchema(sqlite3 *db, const char *zSchema){ MemFile *p = 0; int rc = sqlite3_file_control(db, zSchema, SQLITE_FCNTL_FILE_POINTER, &p); if( rc ) return 0; if( p->base.pMethods!=&memdb_io_methods ) return 0; return p; } /* ** Return the serialization of a database */ SQLITE_API unsigned char *sqlite3_serialize( sqlite3 *db, /* The database connection */ const char *zSchema, /* Which database within the connection */ sqlite3_int64 *piSize, /* Write size here, if not NULL */ unsigned int mFlags /* Maybe SQLITE_SERIALIZE_NOCOPY */ ){ MemFile *p; int iDb; Btree *pBt; sqlite3_int64 sz; int szPage = 0; sqlite3_stmt *pStmt = 0; unsigned char *pOut; char *zSql; int rc; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif if( zSchema==0 ) zSchema = db->aDb[0].zDbSName; p = memdbFromDbSchema(db, zSchema); iDb = sqlite3FindDbName(db, zSchema); if( piSize ) *piSize = -1; if( iDb<0 ) return 0; if( p ){ if( piSize ) *piSize = p->sz; if( mFlags & SQLITE_SERIALIZE_NOCOPY ){ pOut = p->aData; }else{ pOut = sqlite3_malloc64( p->sz ); if( pOut ) memcpy(pOut, p->aData, p->sz); } return pOut; } pBt = db->aDb[iDb].pBt; if( pBt==0 ) return 0; szPage = sqlite3BtreeGetPageSize(pBt); zSql = sqlite3_mprintf("PRAGMA \"%w\".page_count", zSchema); rc = zSql ? sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0) : SQLITE_NOMEM; sqlite3_free(zSql); if( rc ) return 0; rc = sqlite3_step(pStmt); if( rc!=SQLITE_ROW ){ pOut = 0; }else{ sz = sqlite3_column_int64(pStmt, 0)*szPage; if( piSize ) *piSize = sz; if( mFlags & SQLITE_SERIALIZE_NOCOPY ){ pOut = 0; }else{ pOut = sqlite3_malloc64( sz ); if( pOut ){ int nPage = sqlite3_column_int(pStmt, 0); Pager *pPager = sqlite3BtreePager(pBt); int pgno; for(pgno=1; pgno<=nPage; pgno++){ DbPage *pPage = 0; unsigned char *pTo = pOut + szPage*(sqlite3_int64)(pgno-1); rc = sqlite3PagerGet(pPager, pgno, (DbPage**)&pPage, 0); if( rc==SQLITE_OK ){ memcpy(pTo, sqlite3PagerGetData(pPage), szPage); }else{ memset(pTo, 0, szPage); } sqlite3PagerUnref(pPage); } } } } sqlite3_finalize(pStmt); return pOut; } /* Convert zSchema to a MemDB and initialize its content. */ SQLITE_API int sqlite3_deserialize( sqlite3 *db, /* The database connection */ const char *zSchema, /* Which DB to reopen with the deserialization */ unsigned char *pData, /* The serialized database content */ sqlite3_int64 szDb, /* Number bytes in the deserialization */ sqlite3_int64 szBuf, /* Total size of buffer pData[] */ unsigned mFlags /* Zero or more SQLITE_DESERIALIZE_* flags */ ){ MemFile *p; char *zSql; sqlite3_stmt *pStmt = 0; int rc; int iDb; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } if( szDb<0 ) return SQLITE_MISUSE_BKPT; if( szBuf<0 ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); if( zSchema==0 ) zSchema = db->aDb[0].zDbSName; iDb = sqlite3FindDbName(db, zSchema); if( iDb<0 ){ rc = SQLITE_ERROR; goto end_deserialize; } zSql = sqlite3_mprintf("ATTACH x AS %Q", zSchema); rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); sqlite3_free(zSql); if( rc ) goto end_deserialize; db->init.iDb = (u8)iDb; db->init.reopenMemdb = 1; rc = sqlite3_step(pStmt); db->init.reopenMemdb = 0; if( rc!=SQLITE_DONE ){ rc = SQLITE_ERROR; goto end_deserialize; } p = memdbFromDbSchema(db, zSchema); if( p==0 ){ rc = SQLITE_ERROR; }else{ p->aData = pData; p->sz = szDb; p->szAlloc = szBuf; p->szMax = szBuf; if( p->szMaxszMax = sqlite3GlobalConfig.mxMemdbSize; } p->mFlags = mFlags; rc = SQLITE_OK; } end_deserialize: sqlite3_finalize(pStmt); sqlite3_mutex_leave(db->mutex); return rc; } /* ** This routine is called when the extension is loaded. ** Register the new VFS. */ SQLITE_PRIVATE int sqlite3MemdbInit(void){ sqlite3_vfs *pLower = sqlite3_vfs_find(0); int sz = pLower->szOsFile; memdb_vfs.pAppData = pLower; /* The following conditional can only be true when compiled for ** Windows x86 and SQLITE_MAX_MMAP_SIZE=0. We always leave ** it in, to be safe, but it is marked as NO_TEST since there ** is no way to reach it under most builds. */ if( szBITVEC_NBIT and iDivisor==0 then Bitvec.u.aHash[] is ** a hash table that will hold up to BITVEC_MXHASH distinct values. ** ** Otherwise, the value i is redirected into one of BITVEC_NPTR ** sub-bitmaps pointed to by Bitvec.u.apSub[]. Each subbitmap ** handles up to iDivisor separate values of i. apSub[0] holds ** values between 1 and iDivisor. apSub[1] holds values between ** iDivisor+1 and 2*iDivisor. apSub[N] holds values between ** N*iDivisor+1 and (N+1)*iDivisor. Each subbitmap is normalized ** to hold deal with values between 1 and iDivisor. */ struct Bitvec { u32 iSize; /* Maximum bit index. Max iSize is 4,294,967,296. */ u32 nSet; /* Number of bits that are set - only valid for aHash ** element. Max is BITVEC_NINT. For BITVEC_SZ of 512, ** this would be 125. */ u32 iDivisor; /* Number of bits handled by each apSub[] entry. */ /* Should >=0 for apSub element. */ /* Max iDivisor is max(u32) / BITVEC_NPTR + 1. */ /* For a BITVEC_SZ of 512, this would be 34,359,739. */ union { BITVEC_TELEM aBitmap[BITVEC_NELEM]; /* Bitmap representation */ u32 aHash[BITVEC_NINT]; /* Hash table representation */ Bitvec *apSub[BITVEC_NPTR]; /* Recursive representation */ } u; }; /* ** Create a new bitmap object able to handle bits between 0 and iSize, ** inclusive. Return a pointer to the new object. Return NULL if ** malloc fails. */ SQLITE_PRIVATE Bitvec *sqlite3BitvecCreate(u32 iSize){ Bitvec *p; assert( sizeof(*p)==BITVEC_SZ ); p = sqlite3MallocZero( sizeof(*p) ); if( p ){ p->iSize = iSize; } return p; } /* ** Check to see if the i-th bit is set. Return true or false. ** If p is NULL (if the bitmap has not been created) or if ** i is out of range, then return false. */ SQLITE_PRIVATE int sqlite3BitvecTestNotNull(Bitvec *p, u32 i){ assert( p!=0 ); i--; if( i>=p->iSize ) return 0; while( p->iDivisor ){ u32 bin = i/p->iDivisor; i = i%p->iDivisor; p = p->u.apSub[bin]; if (!p) { return 0; } } if( p->iSize<=BITVEC_NBIT ){ return (p->u.aBitmap[i/BITVEC_SZELEM] & (1<<(i&(BITVEC_SZELEM-1))))!=0; } else{ u32 h = BITVEC_HASH(i++); while( p->u.aHash[h] ){ if( p->u.aHash[h]==i ) return 1; h = (h+1) % BITVEC_NINT; } return 0; } } SQLITE_PRIVATE int sqlite3BitvecTest(Bitvec *p, u32 i){ return p!=0 && sqlite3BitvecTestNotNull(p,i); } /* ** Set the i-th bit. Return 0 on success and an error code if ** anything goes wrong. ** ** This routine might cause sub-bitmaps to be allocated. Failing ** to get the memory needed to hold the sub-bitmap is the only ** that can go wrong with an insert, assuming p and i are valid. ** ** The calling function must ensure that p is a valid Bitvec object ** and that the value for "i" is within range of the Bitvec object. ** Otherwise the behavior is undefined. */ SQLITE_PRIVATE int sqlite3BitvecSet(Bitvec *p, u32 i){ u32 h; if( p==0 ) return SQLITE_OK; assert( i>0 ); assert( i<=p->iSize ); i--; while((p->iSize > BITVEC_NBIT) && p->iDivisor) { u32 bin = i/p->iDivisor; i = i%p->iDivisor; if( p->u.apSub[bin]==0 ){ p->u.apSub[bin] = sqlite3BitvecCreate( p->iDivisor ); if( p->u.apSub[bin]==0 ) return SQLITE_NOMEM_BKPT; } p = p->u.apSub[bin]; } if( p->iSize<=BITVEC_NBIT ){ p->u.aBitmap[i/BITVEC_SZELEM] |= 1 << (i&(BITVEC_SZELEM-1)); return SQLITE_OK; } h = BITVEC_HASH(i++); /* if there wasn't a hash collision, and this doesn't */ /* completely fill the hash, then just add it without */ /* worring about sub-dividing and re-hashing. */ if( !p->u.aHash[h] ){ if (p->nSet<(BITVEC_NINT-1)) { goto bitvec_set_end; } else { goto bitvec_set_rehash; } } /* there was a collision, check to see if it's already */ /* in hash, if not, try to find a spot for it */ do { if( p->u.aHash[h]==i ) return SQLITE_OK; h++; if( h>=BITVEC_NINT ) h = 0; } while( p->u.aHash[h] ); /* we didn't find it in the hash. h points to the first */ /* available free spot. check to see if this is going to */ /* make our hash too "full". */ bitvec_set_rehash: if( p->nSet>=BITVEC_MXHASH ){ unsigned int j; int rc; u32 *aiValues = sqlite3StackAllocRaw(0, sizeof(p->u.aHash)); if( aiValues==0 ){ return SQLITE_NOMEM_BKPT; }else{ memcpy(aiValues, p->u.aHash, sizeof(p->u.aHash)); memset(p->u.apSub, 0, sizeof(p->u.apSub)); p->iDivisor = (p->iSize + BITVEC_NPTR - 1)/BITVEC_NPTR; rc = sqlite3BitvecSet(p, i); for(j=0; jnSet++; p->u.aHash[h] = i; return SQLITE_OK; } /* ** Clear the i-th bit. ** ** pBuf must be a pointer to at least BITVEC_SZ bytes of temporary storage ** that BitvecClear can use to rebuilt its hash table. */ SQLITE_PRIVATE void sqlite3BitvecClear(Bitvec *p, u32 i, void *pBuf){ if( p==0 ) return; assert( i>0 ); i--; while( p->iDivisor ){ u32 bin = i/p->iDivisor; i = i%p->iDivisor; p = p->u.apSub[bin]; if (!p) { return; } } if( p->iSize<=BITVEC_NBIT ){ p->u.aBitmap[i/BITVEC_SZELEM] &= ~(1 << (i&(BITVEC_SZELEM-1))); }else{ unsigned int j; u32 *aiValues = pBuf; memcpy(aiValues, p->u.aHash, sizeof(p->u.aHash)); memset(p->u.aHash, 0, sizeof(p->u.aHash)); p->nSet = 0; for(j=0; jnSet++; while( p->u.aHash[h] ){ h++; if( h>=BITVEC_NINT ) h = 0; } p->u.aHash[h] = aiValues[j]; } } } } /* ** Destroy a bitmap object. Reclaim all memory used. */ SQLITE_PRIVATE void sqlite3BitvecDestroy(Bitvec *p){ if( p==0 ) return; if( p->iDivisor ){ unsigned int i; for(i=0; iu.apSub[i]); } } sqlite3_free(p); } /* ** Return the value of the iSize parameter specified when Bitvec *p ** was created. */ SQLITE_PRIVATE u32 sqlite3BitvecSize(Bitvec *p){ return p->iSize; } #ifndef SQLITE_UNTESTABLE /* ** Let V[] be an array of unsigned characters sufficient to hold ** up to N bits. Let I be an integer between 0 and N. 0<=I>3] |= (1<<(I&7)) #define CLEARBIT(V,I) V[I>>3] &= ~(1<<(I&7)) #define TESTBIT(V,I) (V[I>>3]&(1<<(I&7)))!=0 /* ** This routine runs an extensive test of the Bitvec code. ** ** The input is an array of integers that acts as a program ** to test the Bitvec. The integers are opcodes followed ** by 0, 1, or 3 operands, depending on the opcode. Another ** opcode follows immediately after the last operand. ** ** There are 6 opcodes numbered from 0 through 5. 0 is the ** "halt" opcode and causes the test to end. ** ** 0 Halt and return the number of errors ** 1 N S X Set N bits beginning with S and incrementing by X ** 2 N S X Clear N bits beginning with S and incrementing by X ** 3 N Set N randomly chosen bits ** 4 N Clear N randomly chosen bits ** 5 N S X Set N bits from S increment X in array only, not in bitvec ** ** The opcodes 1 through 4 perform set and clear operations are performed ** on both a Bitvec object and on a linear array of bits obtained from malloc. ** Opcode 5 works on the linear array only, not on the Bitvec. ** Opcode 5 is used to deliberately induce a fault in order to ** confirm that error detection works. ** ** At the conclusion of the test the linear array is compared ** against the Bitvec object. If there are any differences, ** an error is returned. If they are the same, zero is returned. ** ** If a memory allocation error occurs, return -1. */ SQLITE_PRIVATE int sqlite3BitvecBuiltinTest(int sz, int *aOp){ Bitvec *pBitvec = 0; unsigned char *pV = 0; int rc = -1; int i, nx, pc, op; void *pTmpSpace; /* Allocate the Bitvec to be tested and a linear array of ** bits to act as the reference */ pBitvec = sqlite3BitvecCreate( sz ); pV = sqlite3MallocZero( (sz+7)/8 + 1 ); pTmpSpace = sqlite3_malloc64(BITVEC_SZ); if( pBitvec==0 || pV==0 || pTmpSpace==0 ) goto bitvec_end; /* NULL pBitvec tests */ sqlite3BitvecSet(0, 1); sqlite3BitvecClear(0, 1, pTmpSpace); /* Run the program */ pc = 0; while( (op = aOp[pc])!=0 ){ switch( op ){ case 1: case 2: case 5: { nx = 4; i = aOp[pc+2] - 1; aOp[pc+2] += aOp[pc+3]; break; } case 3: case 4: default: { nx = 2; sqlite3_randomness(sizeof(i), &i); break; } } if( (--aOp[pc+1]) > 0 ) nx = 0; pc += nx; i = (i & 0x7fffffff)%sz; if( (op & 1)!=0 ){ SETBIT(pV, (i+1)); if( op!=5 ){ if( sqlite3BitvecSet(pBitvec, i+1) ) goto bitvec_end; } }else{ CLEARBIT(pV, (i+1)); sqlite3BitvecClear(pBitvec, i+1, pTmpSpace); } } /* Test to make sure the linear array exactly matches the ** Bitvec object. Start with the assumption that they do ** match (rc==0). Change rc to non-zero if a discrepancy ** is found. */ rc = sqlite3BitvecTest(0,0) + sqlite3BitvecTest(pBitvec, sz+1) + sqlite3BitvecTest(pBitvec, 0) + (sqlite3BitvecSize(pBitvec) - sz); for(i=1; i<=sz; i++){ if( (TESTBIT(pV,i))!=sqlite3BitvecTest(pBitvec,i) ){ rc = i; break; } } /* Free allocated structure */ bitvec_end: sqlite3_free(pTmpSpace); sqlite3_free(pV); sqlite3BitvecDestroy(pBitvec); return rc; } #endif /* SQLITE_UNTESTABLE */ /************** End of bitvec.c **********************************************/ /************** Begin file pcache.c ******************************************/ /* ** 2008 August 05 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file implements that page cache. */ /* #include "sqliteInt.h" */ /* ** A complete page cache is an instance of this structure. Every ** entry in the cache holds a single page of the database file. The ** btree layer only operates on the cached copy of the database pages. ** ** A page cache entry is "clean" if it exactly matches what is currently ** on disk. A page is "dirty" if it has been modified and needs to be ** persisted to disk. ** ** pDirty, pDirtyTail, pSynced: ** All dirty pages are linked into the doubly linked list using ** PgHdr.pDirtyNext and pDirtyPrev. The list is maintained in LRU order ** such that p was added to the list more recently than p->pDirtyNext. ** PCache.pDirty points to the first (newest) element in the list and ** pDirtyTail to the last (oldest). ** ** The PCache.pSynced variable is used to optimize searching for a dirty ** page to eject from the cache mid-transaction. It is better to eject ** a page that does not require a journal sync than one that does. ** Therefore, pSynced is maintained so that it *almost* always points ** to either the oldest page in the pDirty/pDirtyTail list that has a ** clear PGHDR_NEED_SYNC flag or to a page that is older than this one ** (so that the right page to eject can be found by following pDirtyPrev ** pointers). */ struct PCache { PgHdr *pDirty, *pDirtyTail; /* List of dirty pages in LRU order */ PgHdr *pSynced; /* Last synced page in dirty page list */ int nRefSum; /* Sum of ref counts over all pages */ int szCache; /* Configured cache size */ int szSpill; /* Size before spilling occurs */ int szPage; /* Size of every page in this cache */ int szExtra; /* Size of extra space for each page */ u8 bPurgeable; /* True if pages are on backing store */ u8 eCreate; /* eCreate value for for xFetch() */ int (*xStress)(void*,PgHdr*); /* Call to try make a page clean */ void *pStress; /* Argument to xStress */ sqlite3_pcache *pCache; /* Pluggable cache module */ }; /********************************** Test and Debug Logic **********************/ /* ** Debug tracing macros. Enable by by changing the "0" to "1" and ** recompiling. ** ** When sqlite3PcacheTrace is 1, single line trace messages are issued. ** When sqlite3PcacheTrace is 2, a dump of the pcache showing all cache entries ** is displayed for many operations, resulting in a lot of output. */ #if defined(SQLITE_DEBUG) && 0 int sqlite3PcacheTrace = 2; /* 0: off 1: simple 2: cache dumps */ int sqlite3PcacheMxDump = 9999; /* Max cache entries for pcacheDump() */ # define pcacheTrace(X) if(sqlite3PcacheTrace){sqlite3DebugPrintf X;} void pcacheDump(PCache *pCache){ int N; int i, j; sqlite3_pcache_page *pLower; PgHdr *pPg; unsigned char *a; if( sqlite3PcacheTrace<2 ) return; if( pCache->pCache==0 ) return; N = sqlite3PcachePagecount(pCache); if( N>sqlite3PcacheMxDump ) N = sqlite3PcacheMxDump; for(i=1; i<=N; i++){ pLower = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, i, 0); if( pLower==0 ) continue; pPg = (PgHdr*)pLower->pExtra; printf("%3d: nRef %2d flgs %02x data ", i, pPg->nRef, pPg->flags); a = (unsigned char *)pLower->pBuf; for(j=0; j<12; j++) printf("%02x", a[j]); printf("\n"); if( pPg->pPage==0 ){ sqlite3GlobalConfig.pcache2.xUnpin(pCache->pCache, pLower, 0); } } } #else # define pcacheTrace(X) # define pcacheDump(X) #endif /* ** Check invariants on a PgHdr entry. Return true if everything is OK. ** Return false if any invariant is violated. ** ** This routine is for use inside of assert() statements only. For ** example: ** ** assert( sqlite3PcachePageSanity(pPg) ); */ #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3PcachePageSanity(PgHdr *pPg){ PCache *pCache; assert( pPg!=0 ); assert( pPg->pgno>0 || pPg->pPager==0 ); /* Page number is 1 or more */ pCache = pPg->pCache; assert( pCache!=0 ); /* Every page has an associated PCache */ if( pPg->flags & PGHDR_CLEAN ){ assert( (pPg->flags & PGHDR_DIRTY)==0 );/* Cannot be both CLEAN and DIRTY */ assert( pCache->pDirty!=pPg ); /* CLEAN pages not on dirty list */ assert( pCache->pDirtyTail!=pPg ); } /* WRITEABLE pages must also be DIRTY */ if( pPg->flags & PGHDR_WRITEABLE ){ assert( pPg->flags & PGHDR_DIRTY ); /* WRITEABLE implies DIRTY */ } /* NEED_SYNC can be set independently of WRITEABLE. This can happen, ** for example, when using the sqlite3PagerDontWrite() optimization: ** (1) Page X is journalled, and gets WRITEABLE and NEED_SEEK. ** (2) Page X moved to freelist, WRITEABLE is cleared ** (3) Page X reused, WRITEABLE is set again ** If NEED_SYNC had been cleared in step 2, then it would not be reset ** in step 3, and page might be written into the database without first ** syncing the rollback journal, which might cause corruption on a power ** loss. ** ** Another example is when the database page size is smaller than the ** disk sector size. When any page of a sector is journalled, all pages ** in that sector are marked NEED_SYNC even if they are still CLEAN, just ** in case they are later modified, since all pages in the same sector ** must be journalled and synced before any of those pages can be safely ** written. */ return 1; } #endif /* SQLITE_DEBUG */ /********************************** Linked List Management ********************/ /* Allowed values for second argument to pcacheManageDirtyList() */ #define PCACHE_DIRTYLIST_REMOVE 1 /* Remove pPage from dirty list */ #define PCACHE_DIRTYLIST_ADD 2 /* Add pPage to the dirty list */ #define PCACHE_DIRTYLIST_FRONT 3 /* Move pPage to the front of the list */ /* ** Manage pPage's participation on the dirty list. Bits of the addRemove ** argument determines what operation to do. The 0x01 bit means first ** remove pPage from the dirty list. The 0x02 means add pPage back to ** the dirty list. Doing both moves pPage to the front of the dirty list. */ static void pcacheManageDirtyList(PgHdr *pPage, u8 addRemove){ PCache *p = pPage->pCache; pcacheTrace(("%p.DIRTYLIST.%s %d\n", p, addRemove==1 ? "REMOVE" : addRemove==2 ? "ADD" : "FRONT", pPage->pgno)); if( addRemove & PCACHE_DIRTYLIST_REMOVE ){ assert( pPage->pDirtyNext || pPage==p->pDirtyTail ); assert( pPage->pDirtyPrev || pPage==p->pDirty ); /* Update the PCache1.pSynced variable if necessary. */ if( p->pSynced==pPage ){ p->pSynced = pPage->pDirtyPrev; } if( pPage->pDirtyNext ){ pPage->pDirtyNext->pDirtyPrev = pPage->pDirtyPrev; }else{ assert( pPage==p->pDirtyTail ); p->pDirtyTail = pPage->pDirtyPrev; } if( pPage->pDirtyPrev ){ pPage->pDirtyPrev->pDirtyNext = pPage->pDirtyNext; }else{ /* If there are now no dirty pages in the cache, set eCreate to 2. ** This is an optimization that allows sqlite3PcacheFetch() to skip ** searching for a dirty page to eject from the cache when it might ** otherwise have to. */ assert( pPage==p->pDirty ); p->pDirty = pPage->pDirtyNext; assert( p->bPurgeable || p->eCreate==2 ); if( p->pDirty==0 ){ /*OPTIMIZATION-IF-TRUE*/ assert( p->bPurgeable==0 || p->eCreate==1 ); p->eCreate = 2; } } } if( addRemove & PCACHE_DIRTYLIST_ADD ){ pPage->pDirtyPrev = 0; pPage->pDirtyNext = p->pDirty; if( pPage->pDirtyNext ){ assert( pPage->pDirtyNext->pDirtyPrev==0 ); pPage->pDirtyNext->pDirtyPrev = pPage; }else{ p->pDirtyTail = pPage; if( p->bPurgeable ){ assert( p->eCreate==2 ); p->eCreate = 1; } } p->pDirty = pPage; /* If pSynced is NULL and this page has a clear NEED_SYNC flag, set ** pSynced to point to it. Checking the NEED_SYNC flag is an ** optimization, as if pSynced points to a page with the NEED_SYNC ** flag set sqlite3PcacheFetchStress() searches through all newer ** entries of the dirty-list for a page with NEED_SYNC clear anyway. */ if( !p->pSynced && 0==(pPage->flags&PGHDR_NEED_SYNC) /*OPTIMIZATION-IF-FALSE*/ ){ p->pSynced = pPage; } } pcacheDump(p); } /* ** Wrapper around the pluggable caches xUnpin method. If the cache is ** being used for an in-memory database, this function is a no-op. */ static void pcacheUnpin(PgHdr *p){ if( p->pCache->bPurgeable ){ pcacheTrace(("%p.UNPIN %d\n", p->pCache, p->pgno)); sqlite3GlobalConfig.pcache2.xUnpin(p->pCache->pCache, p->pPage, 0); pcacheDump(p->pCache); } } /* ** Compute the number of pages of cache requested. p->szCache is the ** cache size requested by the "PRAGMA cache_size" statement. */ static int numberOfCachePages(PCache *p){ if( p->szCache>=0 ){ /* IMPLEMENTATION-OF: R-42059-47211 If the argument N is positive then the ** suggested cache size is set to N. */ return p->szCache; }else{ /* IMPLEMANTATION-OF: R-59858-46238 If the argument N is negative, then the ** number of cache pages is adjusted to be a number of pages that would ** use approximately abs(N*1024) bytes of memory based on the current ** page size. */ return (int)((-1024*(i64)p->szCache)/(p->szPage+p->szExtra)); } } /*************************************************** General Interfaces ****** ** ** Initialize and shutdown the page cache subsystem. Neither of these ** functions are threadsafe. */ SQLITE_PRIVATE int sqlite3PcacheInitialize(void){ if( sqlite3GlobalConfig.pcache2.xInit==0 ){ /* IMPLEMENTATION-OF: R-26801-64137 If the xInit() method is NULL, then the ** built-in default page cache is used instead of the application defined ** page cache. */ sqlite3PCacheSetDefault(); assert( sqlite3GlobalConfig.pcache2.xInit!=0 ); } return sqlite3GlobalConfig.pcache2.xInit(sqlite3GlobalConfig.pcache2.pArg); } SQLITE_PRIVATE void sqlite3PcacheShutdown(void){ if( sqlite3GlobalConfig.pcache2.xShutdown ){ /* IMPLEMENTATION-OF: R-26000-56589 The xShutdown() method may be NULL. */ sqlite3GlobalConfig.pcache2.xShutdown(sqlite3GlobalConfig.pcache2.pArg); } } /* ** Return the size in bytes of a PCache object. */ SQLITE_PRIVATE int sqlite3PcacheSize(void){ return sizeof(PCache); } /* ** Create a new PCache object. Storage space to hold the object ** has already been allocated and is passed in as the p pointer. ** The caller discovers how much space needs to be allocated by ** calling sqlite3PcacheSize(). ** ** szExtra is some extra space allocated for each page. The first ** 8 bytes of the extra space will be zeroed as the page is allocated, ** but remaining content will be uninitialized. Though it is opaque ** to this module, the extra space really ends up being the MemPage ** structure in the pager. */ SQLITE_PRIVATE int sqlite3PcacheOpen( int szPage, /* Size of every page */ int szExtra, /* Extra space associated with each page */ int bPurgeable, /* True if pages are on backing store */ int (*xStress)(void*,PgHdr*),/* Call to try to make pages clean */ void *pStress, /* Argument to xStress */ PCache *p /* Preallocated space for the PCache */ ){ memset(p, 0, sizeof(PCache)); p->szPage = 1; p->szExtra = szExtra; assert( szExtra>=8 ); /* First 8 bytes will be zeroed */ p->bPurgeable = bPurgeable; p->eCreate = 2; p->xStress = xStress; p->pStress = pStress; p->szCache = 100; p->szSpill = 1; pcacheTrace(("%p.OPEN szPage %d bPurgeable %d\n",p,szPage,bPurgeable)); return sqlite3PcacheSetPageSize(p, szPage); } /* ** Change the page size for PCache object. The caller must ensure that there ** are no outstanding page references when this function is called. */ SQLITE_PRIVATE int sqlite3PcacheSetPageSize(PCache *pCache, int szPage){ assert( pCache->nRefSum==0 && pCache->pDirty==0 ); if( pCache->szPage ){ sqlite3_pcache *pNew; pNew = sqlite3GlobalConfig.pcache2.xCreate( szPage, pCache->szExtra + ROUND8(sizeof(PgHdr)), pCache->bPurgeable ); if( pNew==0 ) return SQLITE_NOMEM_BKPT; sqlite3GlobalConfig.pcache2.xCachesize(pNew, numberOfCachePages(pCache)); if( pCache->pCache ){ sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); } pCache->pCache = pNew; pCache->szPage = szPage; pcacheTrace(("%p.PAGESIZE %d\n",pCache,szPage)); } return SQLITE_OK; } /* ** Try to obtain a page from the cache. ** ** This routine returns a pointer to an sqlite3_pcache_page object if ** such an object is already in cache, or if a new one is created. ** This routine returns a NULL pointer if the object was not in cache ** and could not be created. ** ** The createFlags should be 0 to check for existing pages and should ** be 3 (not 1, but 3) to try to create a new page. ** ** If the createFlag is 0, then NULL is always returned if the page ** is not already in the cache. If createFlag is 1, then a new page ** is created only if that can be done without spilling dirty pages ** and without exceeding the cache size limit. ** ** The caller needs to invoke sqlite3PcacheFetchFinish() to properly ** initialize the sqlite3_pcache_page object and convert it into a ** PgHdr object. The sqlite3PcacheFetch() and sqlite3PcacheFetchFinish() ** routines are split this way for performance reasons. When separated ** they can both (usually) operate without having to push values to ** the stack on entry and pop them back off on exit, which saves a ** lot of pushing and popping. */ SQLITE_PRIVATE sqlite3_pcache_page *sqlite3PcacheFetch( PCache *pCache, /* Obtain the page from this cache */ Pgno pgno, /* Page number to obtain */ int createFlag /* If true, create page if it does not exist already */ ){ int eCreate; sqlite3_pcache_page *pRes; assert( pCache!=0 ); assert( pCache->pCache!=0 ); assert( createFlag==3 || createFlag==0 ); assert( pCache->eCreate==((pCache->bPurgeable && pCache->pDirty) ? 1 : 2) ); /* eCreate defines what to do if the page does not exist. ** 0 Do not allocate a new page. (createFlag==0) ** 1 Allocate a new page if doing so is inexpensive. ** (createFlag==1 AND bPurgeable AND pDirty) ** 2 Allocate a new page even it doing so is difficult. ** (createFlag==1 AND !(bPurgeable AND pDirty) */ eCreate = createFlag & pCache->eCreate; assert( eCreate==0 || eCreate==1 || eCreate==2 ); assert( createFlag==0 || pCache->eCreate==eCreate ); assert( createFlag==0 || eCreate==1+(!pCache->bPurgeable||!pCache->pDirty) ); pRes = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, eCreate); pcacheTrace(("%p.FETCH %d%s (result: %p)\n",pCache,pgno, createFlag?" create":"",pRes)); return pRes; } /* ** If the sqlite3PcacheFetch() routine is unable to allocate a new ** page because no clean pages are available for reuse and the cache ** size limit has been reached, then this routine can be invoked to ** try harder to allocate a page. This routine might invoke the stress ** callback to spill dirty pages to the journal. It will then try to ** allocate the new page and will only fail to allocate a new page on ** an OOM error. ** ** This routine should be invoked only after sqlite3PcacheFetch() fails. */ SQLITE_PRIVATE int sqlite3PcacheFetchStress( PCache *pCache, /* Obtain the page from this cache */ Pgno pgno, /* Page number to obtain */ sqlite3_pcache_page **ppPage /* Write result here */ ){ PgHdr *pPg; if( pCache->eCreate==2 ) return 0; if( sqlite3PcachePagecount(pCache)>pCache->szSpill ){ /* Find a dirty page to write-out and recycle. First try to find a ** page that does not require a journal-sync (one with PGHDR_NEED_SYNC ** cleared), but if that is not possible settle for any other ** unreferenced dirty page. ** ** If the LRU page in the dirty list that has a clear PGHDR_NEED_SYNC ** flag is currently referenced, then the following may leave pSynced ** set incorrectly (pointing to other than the LRU page with NEED_SYNC ** cleared). This is Ok, as pSynced is just an optimization. */ for(pPg=pCache->pSynced; pPg && (pPg->nRef || (pPg->flags&PGHDR_NEED_SYNC)); pPg=pPg->pDirtyPrev ); pCache->pSynced = pPg; if( !pPg ){ for(pPg=pCache->pDirtyTail; pPg && pPg->nRef; pPg=pPg->pDirtyPrev); } if( pPg ){ int rc; #ifdef SQLITE_LOG_CACHE_SPILL sqlite3_log(SQLITE_FULL, "spill page %d making room for %d - cache used: %d/%d", pPg->pgno, pgno, sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache), numberOfCachePages(pCache)); #endif pcacheTrace(("%p.SPILL %d\n",pCache,pPg->pgno)); rc = pCache->xStress(pCache->pStress, pPg); pcacheDump(pCache); if( rc!=SQLITE_OK && rc!=SQLITE_BUSY ){ return rc; } } } *ppPage = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, pgno, 2); return *ppPage==0 ? SQLITE_NOMEM_BKPT : SQLITE_OK; } /* ** This is a helper routine for sqlite3PcacheFetchFinish() ** ** In the uncommon case where the page being fetched has not been ** initialized, this routine is invoked to do the initialization. ** This routine is broken out into a separate function since it ** requires extra stack manipulation that can be avoided in the common ** case. */ static SQLITE_NOINLINE PgHdr *pcacheFetchFinishWithInit( PCache *pCache, /* Obtain the page from this cache */ Pgno pgno, /* Page number obtained */ sqlite3_pcache_page *pPage /* Page obtained by prior PcacheFetch() call */ ){ PgHdr *pPgHdr; assert( pPage!=0 ); pPgHdr = (PgHdr*)pPage->pExtra; assert( pPgHdr->pPage==0 ); memset(&pPgHdr->pDirty, 0, sizeof(PgHdr) - offsetof(PgHdr,pDirty)); pPgHdr->pPage = pPage; pPgHdr->pData = pPage->pBuf; pPgHdr->pExtra = (void *)&pPgHdr[1]; memset(pPgHdr->pExtra, 0, 8); pPgHdr->pCache = pCache; pPgHdr->pgno = pgno; pPgHdr->flags = PGHDR_CLEAN; return sqlite3PcacheFetchFinish(pCache,pgno,pPage); } /* ** This routine converts the sqlite3_pcache_page object returned by ** sqlite3PcacheFetch() into an initialized PgHdr object. This routine ** must be called after sqlite3PcacheFetch() in order to get a usable ** result. */ SQLITE_PRIVATE PgHdr *sqlite3PcacheFetchFinish( PCache *pCache, /* Obtain the page from this cache */ Pgno pgno, /* Page number obtained */ sqlite3_pcache_page *pPage /* Page obtained by prior PcacheFetch() call */ ){ PgHdr *pPgHdr; assert( pPage!=0 ); pPgHdr = (PgHdr *)pPage->pExtra; if( !pPgHdr->pPage ){ return pcacheFetchFinishWithInit(pCache, pgno, pPage); } pCache->nRefSum++; pPgHdr->nRef++; assert( sqlite3PcachePageSanity(pPgHdr) ); return pPgHdr; } /* ** Decrement the reference count on a page. If the page is clean and the ** reference count drops to 0, then it is made eligible for recycling. */ SQLITE_PRIVATE void SQLITE_NOINLINE sqlite3PcacheRelease(PgHdr *p){ assert( p->nRef>0 ); p->pCache->nRefSum--; if( (--p->nRef)==0 ){ if( p->flags&PGHDR_CLEAN ){ pcacheUnpin(p); }else{ pcacheManageDirtyList(p, PCACHE_DIRTYLIST_FRONT); } } } /* ** Increase the reference count of a supplied page by 1. */ SQLITE_PRIVATE void sqlite3PcacheRef(PgHdr *p){ assert(p->nRef>0); assert( sqlite3PcachePageSanity(p) ); p->nRef++; p->pCache->nRefSum++; } /* ** Drop a page from the cache. There must be exactly one reference to the ** page. This function deletes that reference, so after it returns the ** page pointed to by p is invalid. */ SQLITE_PRIVATE void sqlite3PcacheDrop(PgHdr *p){ assert( p->nRef==1 ); assert( sqlite3PcachePageSanity(p) ); if( p->flags&PGHDR_DIRTY ){ pcacheManageDirtyList(p, PCACHE_DIRTYLIST_REMOVE); } p->pCache->nRefSum--; sqlite3GlobalConfig.pcache2.xUnpin(p->pCache->pCache, p->pPage, 1); } /* ** Make sure the page is marked as dirty. If it isn't dirty already, ** make it so. */ SQLITE_PRIVATE void sqlite3PcacheMakeDirty(PgHdr *p){ assert( p->nRef>0 ); assert( sqlite3PcachePageSanity(p) ); if( p->flags & (PGHDR_CLEAN|PGHDR_DONT_WRITE) ){ /*OPTIMIZATION-IF-FALSE*/ p->flags &= ~PGHDR_DONT_WRITE; if( p->flags & PGHDR_CLEAN ){ p->flags ^= (PGHDR_DIRTY|PGHDR_CLEAN); pcacheTrace(("%p.DIRTY %d\n",p->pCache,p->pgno)); assert( (p->flags & (PGHDR_DIRTY|PGHDR_CLEAN))==PGHDR_DIRTY ); pcacheManageDirtyList(p, PCACHE_DIRTYLIST_ADD); } assert( sqlite3PcachePageSanity(p) ); } } /* ** Make sure the page is marked as clean. If it isn't clean already, ** make it so. */ SQLITE_PRIVATE void sqlite3PcacheMakeClean(PgHdr *p){ assert( sqlite3PcachePageSanity(p) ); assert( (p->flags & PGHDR_DIRTY)!=0 ); assert( (p->flags & PGHDR_CLEAN)==0 ); pcacheManageDirtyList(p, PCACHE_DIRTYLIST_REMOVE); p->flags &= ~(PGHDR_DIRTY|PGHDR_NEED_SYNC|PGHDR_WRITEABLE); p->flags |= PGHDR_CLEAN; pcacheTrace(("%p.CLEAN %d\n",p->pCache,p->pgno)); assert( sqlite3PcachePageSanity(p) ); if( p->nRef==0 ){ pcacheUnpin(p); } } /* ** Make every page in the cache clean. */ SQLITE_PRIVATE void sqlite3PcacheCleanAll(PCache *pCache){ PgHdr *p; pcacheTrace(("%p.CLEAN-ALL\n",pCache)); while( (p = pCache->pDirty)!=0 ){ sqlite3PcacheMakeClean(p); } } /* ** Clear the PGHDR_NEED_SYNC and PGHDR_WRITEABLE flag from all dirty pages. */ SQLITE_PRIVATE void sqlite3PcacheClearWritable(PCache *pCache){ PgHdr *p; pcacheTrace(("%p.CLEAR-WRITEABLE\n",pCache)); for(p=pCache->pDirty; p; p=p->pDirtyNext){ p->flags &= ~(PGHDR_NEED_SYNC|PGHDR_WRITEABLE); } pCache->pSynced = pCache->pDirtyTail; } /* ** Clear the PGHDR_NEED_SYNC flag from all dirty pages. */ SQLITE_PRIVATE void sqlite3PcacheClearSyncFlags(PCache *pCache){ PgHdr *p; for(p=pCache->pDirty; p; p=p->pDirtyNext){ p->flags &= ~PGHDR_NEED_SYNC; } pCache->pSynced = pCache->pDirtyTail; } /* ** Change the page number of page p to newPgno. */ SQLITE_PRIVATE void sqlite3PcacheMove(PgHdr *p, Pgno newPgno){ PCache *pCache = p->pCache; assert( p->nRef>0 ); assert( newPgno>0 ); assert( sqlite3PcachePageSanity(p) ); pcacheTrace(("%p.MOVE %d -> %d\n",pCache,p->pgno,newPgno)); sqlite3GlobalConfig.pcache2.xRekey(pCache->pCache, p->pPage, p->pgno,newPgno); p->pgno = newPgno; if( (p->flags&PGHDR_DIRTY) && (p->flags&PGHDR_NEED_SYNC) ){ pcacheManageDirtyList(p, PCACHE_DIRTYLIST_FRONT); } } /* ** Drop every cache entry whose page number is greater than "pgno". The ** caller must ensure that there are no outstanding references to any pages ** other than page 1 with a page number greater than pgno. ** ** If there is a reference to page 1 and the pgno parameter passed to this ** function is 0, then the data area associated with page 1 is zeroed, but ** the page object is not dropped. */ SQLITE_PRIVATE void sqlite3PcacheTruncate(PCache *pCache, Pgno pgno){ if( pCache->pCache ){ PgHdr *p; PgHdr *pNext; pcacheTrace(("%p.TRUNCATE %d\n",pCache,pgno)); for(p=pCache->pDirty; p; p=pNext){ pNext = p->pDirtyNext; /* This routine never gets call with a positive pgno except right ** after sqlite3PcacheCleanAll(). So if there are dirty pages, ** it must be that pgno==0. */ assert( p->pgno>0 ); if( p->pgno>pgno ){ assert( p->flags&PGHDR_DIRTY ); sqlite3PcacheMakeClean(p); } } if( pgno==0 && pCache->nRefSum ){ sqlite3_pcache_page *pPage1; pPage1 = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache,1,0); if( ALWAYS(pPage1) ){ /* Page 1 is always available in cache, because ** pCache->nRefSum>0 */ memset(pPage1->pBuf, 0, pCache->szPage); pgno = 1; } } sqlite3GlobalConfig.pcache2.xTruncate(pCache->pCache, pgno+1); } } /* ** Close a cache. */ SQLITE_PRIVATE void sqlite3PcacheClose(PCache *pCache){ assert( pCache->pCache!=0 ); pcacheTrace(("%p.CLOSE\n",pCache)); sqlite3GlobalConfig.pcache2.xDestroy(pCache->pCache); } /* ** Discard the contents of the cache. */ SQLITE_PRIVATE void sqlite3PcacheClear(PCache *pCache){ sqlite3PcacheTruncate(pCache, 0); } /* ** Merge two lists of pages connected by pDirty and in pgno order. ** Do not bother fixing the pDirtyPrev pointers. */ static PgHdr *pcacheMergeDirtyList(PgHdr *pA, PgHdr *pB){ PgHdr result, *pTail; pTail = &result; assert( pA!=0 && pB!=0 ); for(;;){ if( pA->pgnopgno ){ pTail->pDirty = pA; pTail = pA; pA = pA->pDirty; if( pA==0 ){ pTail->pDirty = pB; break; } }else{ pTail->pDirty = pB; pTail = pB; pB = pB->pDirty; if( pB==0 ){ pTail->pDirty = pA; break; } } } return result.pDirty; } /* ** Sort the list of pages in accending order by pgno. Pages are ** connected by pDirty pointers. The pDirtyPrev pointers are ** corrupted by this sort. ** ** Since there cannot be more than 2^31 distinct pages in a database, ** there cannot be more than 31 buckets required by the merge sorter. ** One extra bucket is added to catch overflow in case something ** ever changes to make the previous sentence incorrect. */ #define N_SORT_BUCKET 32 static PgHdr *pcacheSortDirtyList(PgHdr *pIn){ PgHdr *a[N_SORT_BUCKET], *p; int i; memset(a, 0, sizeof(a)); while( pIn ){ p = pIn; pIn = p->pDirty; p->pDirty = 0; for(i=0; ALWAYS(ipDirty; p; p=p->pDirtyNext){ p->pDirty = p->pDirtyNext; } return pcacheSortDirtyList(pCache->pDirty); } /* ** Return the total number of references to all pages held by the cache. ** ** This is not the total number of pages referenced, but the sum of the ** reference count for all pages. */ SQLITE_PRIVATE int sqlite3PcacheRefCount(PCache *pCache){ return pCache->nRefSum; } /* ** Return the number of references to the page supplied as an argument. */ SQLITE_PRIVATE int sqlite3PcachePageRefcount(PgHdr *p){ return p->nRef; } /* ** Return the total number of pages in the cache. */ SQLITE_PRIVATE int sqlite3PcachePagecount(PCache *pCache){ assert( pCache->pCache!=0 ); return sqlite3GlobalConfig.pcache2.xPagecount(pCache->pCache); } #ifdef SQLITE_TEST /* ** Get the suggested cache-size value. */ SQLITE_PRIVATE int sqlite3PcacheGetCachesize(PCache *pCache){ return numberOfCachePages(pCache); } #endif /* ** Set the suggested cache-size value. */ SQLITE_PRIVATE void sqlite3PcacheSetCachesize(PCache *pCache, int mxPage){ assert( pCache->pCache!=0 ); pCache->szCache = mxPage; sqlite3GlobalConfig.pcache2.xCachesize(pCache->pCache, numberOfCachePages(pCache)); } /* ** Set the suggested cache-spill value. Make no changes if if the ** argument is zero. Return the effective cache-spill size, which will ** be the larger of the szSpill and szCache. */ SQLITE_PRIVATE int sqlite3PcacheSetSpillsize(PCache *p, int mxPage){ int res; assert( p->pCache!=0 ); if( mxPage ){ if( mxPage<0 ){ mxPage = (int)((-1024*(i64)mxPage)/(p->szPage+p->szExtra)); } p->szSpill = mxPage; } res = numberOfCachePages(p); if( resszSpill ) res = p->szSpill; return res; } /* ** Free up as much memory as possible from the page cache. */ SQLITE_PRIVATE void sqlite3PcacheShrink(PCache *pCache){ assert( pCache->pCache!=0 ); sqlite3GlobalConfig.pcache2.xShrink(pCache->pCache); } /* ** Return the size of the header added by this middleware layer ** in the page-cache hierarchy. */ SQLITE_PRIVATE int sqlite3HeaderSizePcache(void){ return ROUND8(sizeof(PgHdr)); } /* ** Return the number of dirty pages currently in the cache, as a percentage ** of the configured cache size. */ SQLITE_PRIVATE int sqlite3PCachePercentDirty(PCache *pCache){ PgHdr *pDirty; int nDirty = 0; int nCache = numberOfCachePages(pCache); for(pDirty=pCache->pDirty; pDirty; pDirty=pDirty->pDirtyNext) nDirty++; return nCache ? (int)(((i64)nDirty * 100) / nCache) : 0; } #ifdef SQLITE_DIRECT_OVERFLOW_READ /* ** Return true if there are one or more dirty pages in the cache. Else false. */ SQLITE_PRIVATE int sqlite3PCacheIsDirty(PCache *pCache){ return (pCache->pDirty!=0); } #endif #if defined(SQLITE_CHECK_PAGES) || defined(SQLITE_DEBUG) /* ** For all dirty pages currently in the cache, invoke the specified ** callback. This is only used if the SQLITE_CHECK_PAGES macro is ** defined. */ SQLITE_PRIVATE void sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *)){ PgHdr *pDirty; for(pDirty=pCache->pDirty; pDirty; pDirty=pDirty->pDirtyNext){ xIter(pDirty); } } #endif /************** End of pcache.c **********************************************/ /************** Begin file pcache1.c *****************************************/ /* ** 2008 November 05 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file implements the default page cache implementation (the ** sqlite3_pcache interface). It also contains part of the implementation ** of the SQLITE_CONFIG_PAGECACHE and sqlite3_release_memory() features. ** If the default page cache implementation is overridden, then neither of ** these two features are available. ** ** A Page cache line looks like this: ** ** ------------------------------------------------------------- ** | database page content | PgHdr1 | MemPage | PgHdr | ** ------------------------------------------------------------- ** ** The database page content is up front (so that buffer overreads tend to ** flow harmlessly into the PgHdr1, MemPage, and PgHdr extensions). MemPage ** is the extension added by the btree.c module containing information such ** as the database page number and how that database page is used. PgHdr ** is added by the pcache.c layer and contains information used to keep track ** of which pages are "dirty". PgHdr1 is an extension added by this ** module (pcache1.c). The PgHdr1 header is a subclass of sqlite3_pcache_page. ** PgHdr1 contains information needed to look up a page by its page number. ** The superclass sqlite3_pcache_page.pBuf points to the start of the ** database page content and sqlite3_pcache_page.pExtra points to PgHdr. ** ** The size of the extension (MemPage+PgHdr+PgHdr1) can be determined at ** runtime using sqlite3_config(SQLITE_CONFIG_PCACHE_HDRSZ, &size). The ** sizes of the extensions sum to 272 bytes on x64 for 3.8.10, but this ** size can vary according to architecture, compile-time options, and ** SQLite library version number. ** ** If SQLITE_PCACHE_SEPARATE_HEADER is defined, then the extension is obtained ** using a separate memory allocation from the database page content. This ** seeks to overcome the "clownshoe" problem (also called "internal ** fragmentation" in academic literature) of allocating a few bytes more ** than a power of two with the memory allocator rounding up to the next ** power of two, and leaving the rounded-up space unused. ** ** This module tracks pointers to PgHdr1 objects. Only pcache.c communicates ** with this module. Information is passed back and forth as PgHdr1 pointers. ** ** The pcache.c and pager.c modules deal pointers to PgHdr objects. ** The btree.c module deals with pointers to MemPage objects. ** ** SOURCE OF PAGE CACHE MEMORY: ** ** Memory for a page might come from any of three sources: ** ** (1) The general-purpose memory allocator - sqlite3Malloc() ** (2) Global page-cache memory provided using sqlite3_config() with ** SQLITE_CONFIG_PAGECACHE. ** (3) PCache-local bulk allocation. ** ** The third case is a chunk of heap memory (defaulting to 100 pages worth) ** that is allocated when the page cache is created. The size of the local ** bulk allocation can be adjusted using ** ** sqlite3_config(SQLITE_CONFIG_PAGECACHE, (void*)0, 0, N). ** ** If N is positive, then N pages worth of memory are allocated using a single ** sqlite3Malloc() call and that memory is used for the first N pages allocated. ** Or if N is negative, then -1024*N bytes of memory are allocated and used ** for as many pages as can be accomodated. ** ** Only one of (2) or (3) can be used. Once the memory available to (2) or ** (3) is exhausted, subsequent allocations fail over to the general-purpose ** memory allocator (1). ** ** Earlier versions of SQLite used only methods (1) and (2). But experiments ** show that method (3) with N==100 provides about a 5% performance boost for ** common workloads. */ /* #include "sqliteInt.h" */ typedef struct PCache1 PCache1; typedef struct PgHdr1 PgHdr1; typedef struct PgFreeslot PgFreeslot; typedef struct PGroup PGroup; /* ** Each cache entry is represented by an instance of the following ** structure. Unless SQLITE_PCACHE_SEPARATE_HEADER is defined, a buffer of ** PgHdr1.pCache->szPage bytes is allocated directly before this structure ** in memory. ** ** Note: Variables isBulkLocal and isAnchor were once type "u8". That works, ** but causes a 2-byte gap in the structure for most architectures (since ** pointers must be either 4 or 8-byte aligned). As this structure is located ** in memory directly after the associated page data, if the database is ** corrupt, code at the b-tree layer may overread the page buffer and ** read part of this structure before the corruption is detected. This ** can cause a valgrind error if the unitialized gap is accessed. Using u16 ** ensures there is no such gap, and therefore no bytes of unitialized memory ** in the structure. */ struct PgHdr1 { sqlite3_pcache_page page; /* Base class. Must be first. pBuf & pExtra */ unsigned int iKey; /* Key value (page number) */ u16 isBulkLocal; /* This page from bulk local storage */ u16 isAnchor; /* This is the PGroup.lru element */ PgHdr1 *pNext; /* Next in hash table chain */ PCache1 *pCache; /* Cache that currently owns this page */ PgHdr1 *pLruNext; /* Next in LRU list of unpinned pages */ PgHdr1 *pLruPrev; /* Previous in LRU list of unpinned pages */ /* NB: pLruPrev is only valid if pLruNext!=0 */ }; /* ** A page is pinned if it is not on the LRU list. To be "pinned" means ** that the page is in active use and must not be deallocated. */ #define PAGE_IS_PINNED(p) ((p)->pLruNext==0) #define PAGE_IS_UNPINNED(p) ((p)->pLruNext!=0) /* Each page cache (or PCache) belongs to a PGroup. A PGroup is a set ** of one or more PCaches that are able to recycle each other's unpinned ** pages when they are under memory pressure. A PGroup is an instance of ** the following object. ** ** This page cache implementation works in one of two modes: ** ** (1) Every PCache is the sole member of its own PGroup. There is ** one PGroup per PCache. ** ** (2) There is a single global PGroup that all PCaches are a member ** of. ** ** Mode 1 uses more memory (since PCache instances are not able to rob ** unused pages from other PCaches) but it also operates without a mutex, ** and is therefore often faster. Mode 2 requires a mutex in order to be ** threadsafe, but recycles pages more efficiently. ** ** For mode (1), PGroup.mutex is NULL. For mode (2) there is only a single ** PGroup which is the pcache1.grp global variable and its mutex is ** SQLITE_MUTEX_STATIC_LRU. */ struct PGroup { sqlite3_mutex *mutex; /* MUTEX_STATIC_LRU or NULL */ unsigned int nMaxPage; /* Sum of nMax for purgeable caches */ unsigned int nMinPage; /* Sum of nMin for purgeable caches */ unsigned int mxPinned; /* nMaxpage + 10 - nMinPage */ unsigned int nPurgeable; /* Number of purgeable pages allocated */ PgHdr1 lru; /* The beginning and end of the LRU list */ }; /* Each page cache is an instance of the following object. Every ** open database file (including each in-memory database and each ** temporary or transient database) has a single page cache which ** is an instance of this object. ** ** Pointers to structures of this type are cast and returned as ** opaque sqlite3_pcache* handles. */ struct PCache1 { /* Cache configuration parameters. Page size (szPage) and the purgeable ** flag (bPurgeable) and the pnPurgeable pointer are all set when the ** cache is created and are never changed thereafter. nMax may be ** modified at any time by a call to the pcache1Cachesize() method. ** The PGroup mutex must be held when accessing nMax. */ PGroup *pGroup; /* PGroup this cache belongs to */ unsigned int *pnPurgeable; /* Pointer to pGroup->nPurgeable */ int szPage; /* Size of database content section */ int szExtra; /* sizeof(MemPage)+sizeof(PgHdr) */ int szAlloc; /* Total size of one pcache line */ int bPurgeable; /* True if cache is purgeable */ unsigned int nMin; /* Minimum number of pages reserved */ unsigned int nMax; /* Configured "cache_size" value */ unsigned int n90pct; /* nMax*9/10 */ unsigned int iMaxKey; /* Largest key seen since xTruncate() */ unsigned int nPurgeableDummy; /* pnPurgeable points here when not used*/ /* Hash table of all pages. The following variables may only be accessed ** when the accessor is holding the PGroup mutex. */ unsigned int nRecyclable; /* Number of pages in the LRU list */ unsigned int nPage; /* Total number of pages in apHash */ unsigned int nHash; /* Number of slots in apHash[] */ PgHdr1 **apHash; /* Hash table for fast lookup by key */ PgHdr1 *pFree; /* List of unused pcache-local pages */ void *pBulk; /* Bulk memory used by pcache-local */ }; /* ** Free slots in the allocator used to divide up the global page cache ** buffer provided using the SQLITE_CONFIG_PAGECACHE mechanism. */ struct PgFreeslot { PgFreeslot *pNext; /* Next free slot */ }; /* ** Global data used by this cache. */ static SQLITE_WSD struct PCacheGlobal { PGroup grp; /* The global PGroup for mode (2) */ /* Variables related to SQLITE_CONFIG_PAGECACHE settings. The ** szSlot, nSlot, pStart, pEnd, nReserve, and isInit values are all ** fixed at sqlite3_initialize() time and do not require mutex protection. ** The nFreeSlot and pFree values do require mutex protection. */ int isInit; /* True if initialized */ int separateCache; /* Use a new PGroup for each PCache */ int nInitPage; /* Initial bulk allocation size */ int szSlot; /* Size of each free slot */ int nSlot; /* The number of pcache slots */ int nReserve; /* Try to keep nFreeSlot above this */ void *pStart, *pEnd; /* Bounds of global page cache memory */ /* Above requires no mutex. Use mutex below for variable that follow. */ sqlite3_mutex *mutex; /* Mutex for accessing the following: */ PgFreeslot *pFree; /* Free page blocks */ int nFreeSlot; /* Number of unused pcache slots */ /* The following value requires a mutex to change. We skip the mutex on ** reading because (1) most platforms read a 32-bit integer atomically and ** (2) even if an incorrect value is read, no great harm is done since this ** is really just an optimization. */ int bUnderPressure; /* True if low on PAGECACHE memory */ } pcache1_g; /* ** All code in this file should access the global structure above via the ** alias "pcache1". This ensures that the WSD emulation is used when ** compiling for systems that do not support real WSD. */ #define pcache1 (GLOBAL(struct PCacheGlobal, pcache1_g)) /* ** Macros to enter and leave the PCache LRU mutex. */ #if !defined(SQLITE_ENABLE_MEMORY_MANAGEMENT) || SQLITE_THREADSAFE==0 # define pcache1EnterMutex(X) assert((X)->mutex==0) # define pcache1LeaveMutex(X) assert((X)->mutex==0) # define PCACHE1_MIGHT_USE_GROUP_MUTEX 0 #else # define pcache1EnterMutex(X) sqlite3_mutex_enter((X)->mutex) # define pcache1LeaveMutex(X) sqlite3_mutex_leave((X)->mutex) # define PCACHE1_MIGHT_USE_GROUP_MUTEX 1 #endif /******************************************************************************/ /******** Page Allocation/SQLITE_CONFIG_PCACHE Related Functions **************/ /* ** This function is called during initialization if a static buffer is ** supplied to use for the page-cache by passing the SQLITE_CONFIG_PAGECACHE ** verb to sqlite3_config(). Parameter pBuf points to an allocation large ** enough to contain 'n' buffers of 'sz' bytes each. ** ** This routine is called from sqlite3_initialize() and so it is guaranteed ** to be serialized already. There is no need for further mutexing. */ SQLITE_PRIVATE void sqlite3PCacheBufferSetup(void *pBuf, int sz, int n){ if( pcache1.isInit ){ PgFreeslot *p; if( pBuf==0 ) sz = n = 0; if( n==0 ) sz = 0; sz = ROUNDDOWN8(sz); pcache1.szSlot = sz; pcache1.nSlot = pcache1.nFreeSlot = n; pcache1.nReserve = n>90 ? 10 : (n/10 + 1); pcache1.pStart = pBuf; pcache1.pFree = 0; pcache1.bUnderPressure = 0; while( n-- ){ p = (PgFreeslot*)pBuf; p->pNext = pcache1.pFree; pcache1.pFree = p; pBuf = (void*)&((char*)pBuf)[sz]; } pcache1.pEnd = pBuf; } } /* ** Try to initialize the pCache->pFree and pCache->pBulk fields. Return ** true if pCache->pFree ends up containing one or more free pages. */ static int pcache1InitBulk(PCache1 *pCache){ i64 szBulk; char *zBulk; if( pcache1.nInitPage==0 ) return 0; /* Do not bother with a bulk allocation if the cache size very small */ if( pCache->nMax<3 ) return 0; sqlite3BeginBenignMalloc(); if( pcache1.nInitPage>0 ){ szBulk = pCache->szAlloc * (i64)pcache1.nInitPage; }else{ szBulk = -1024 * (i64)pcache1.nInitPage; } if( szBulk > pCache->szAlloc*(i64)pCache->nMax ){ szBulk = pCache->szAlloc*(i64)pCache->nMax; } zBulk = pCache->pBulk = sqlite3Malloc( szBulk ); sqlite3EndBenignMalloc(); if( zBulk ){ int nBulk = sqlite3MallocSize(zBulk)/pCache->szAlloc; do{ PgHdr1 *pX = (PgHdr1*)&zBulk[pCache->szPage]; pX->page.pBuf = zBulk; pX->page.pExtra = &pX[1]; pX->isBulkLocal = 1; pX->isAnchor = 0; pX->pNext = pCache->pFree; pX->pLruPrev = 0; /* Initializing this saves a valgrind error */ pCache->pFree = pX; zBulk += pCache->szAlloc; }while( --nBulk ); } return pCache->pFree!=0; } /* ** Malloc function used within this file to allocate space from the buffer ** configured using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no ** such buffer exists or there is no space left in it, this function falls ** back to sqlite3Malloc(). ** ** Multiple threads can run this routine at the same time. Global variables ** in pcache1 need to be protected via mutex. */ static void *pcache1Alloc(int nByte){ void *p = 0; assert( sqlite3_mutex_notheld(pcache1.grp.mutex) ); if( nByte<=pcache1.szSlot ){ sqlite3_mutex_enter(pcache1.mutex); p = (PgHdr1 *)pcache1.pFree; if( p ){ pcache1.pFree = pcache1.pFree->pNext; pcache1.nFreeSlot--; pcache1.bUnderPressure = pcache1.nFreeSlot=0 ); sqlite3StatusHighwater(SQLITE_STATUS_PAGECACHE_SIZE, nByte); sqlite3StatusUp(SQLITE_STATUS_PAGECACHE_USED, 1); } sqlite3_mutex_leave(pcache1.mutex); } if( p==0 ){ /* Memory is not available in the SQLITE_CONFIG_PAGECACHE pool. Get ** it from sqlite3Malloc instead. */ p = sqlite3Malloc(nByte); #ifndef SQLITE_DISABLE_PAGECACHE_OVERFLOW_STATS if( p ){ int sz = sqlite3MallocSize(p); sqlite3_mutex_enter(pcache1.mutex); sqlite3StatusHighwater(SQLITE_STATUS_PAGECACHE_SIZE, nByte); sqlite3StatusUp(SQLITE_STATUS_PAGECACHE_OVERFLOW, sz); sqlite3_mutex_leave(pcache1.mutex); } #endif sqlite3MemdebugSetType(p, MEMTYPE_PCACHE); } return p; } /* ** Free an allocated buffer obtained from pcache1Alloc(). */ static void pcache1Free(void *p){ if( p==0 ) return; if( SQLITE_WITHIN(p, pcache1.pStart, pcache1.pEnd) ){ PgFreeslot *pSlot; sqlite3_mutex_enter(pcache1.mutex); sqlite3StatusDown(SQLITE_STATUS_PAGECACHE_USED, 1); pSlot = (PgFreeslot*)p; pSlot->pNext = pcache1.pFree; pcache1.pFree = pSlot; pcache1.nFreeSlot++; pcache1.bUnderPressure = pcache1.nFreeSlot=pcache1.pStart && ppGroup->mutex) ); if( pCache->pFree || (pCache->nPage==0 && pcache1InitBulk(pCache)) ){ assert( pCache->pFree!=0 ); p = pCache->pFree; pCache->pFree = p->pNext; p->pNext = 0; }else{ #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT /* The group mutex must be released before pcache1Alloc() is called. This ** is because it might call sqlite3_release_memory(), which assumes that ** this mutex is not held. */ assert( pcache1.separateCache==0 ); assert( pCache->pGroup==&pcache1.grp ); pcache1LeaveMutex(pCache->pGroup); #endif if( benignMalloc ){ sqlite3BeginBenignMalloc(); } #ifdef SQLITE_PCACHE_SEPARATE_HEADER pPg = pcache1Alloc(pCache->szPage); p = sqlite3Malloc(sizeof(PgHdr1) + pCache->szExtra); if( !pPg || !p ){ pcache1Free(pPg); sqlite3_free(p); pPg = 0; } #else pPg = pcache1Alloc(pCache->szAlloc); #endif if( benignMalloc ){ sqlite3EndBenignMalloc(); } #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT pcache1EnterMutex(pCache->pGroup); #endif if( pPg==0 ) return 0; #ifndef SQLITE_PCACHE_SEPARATE_HEADER p = (PgHdr1 *)&((u8 *)pPg)[pCache->szPage]; #endif p->page.pBuf = pPg; p->page.pExtra = &p[1]; p->isBulkLocal = 0; p->isAnchor = 0; } (*pCache->pnPurgeable)++; return p; } /* ** Free a page object allocated by pcache1AllocPage(). */ static void pcache1FreePage(PgHdr1 *p){ PCache1 *pCache; assert( p!=0 ); pCache = p->pCache; assert( sqlite3_mutex_held(p->pCache->pGroup->mutex) ); if( p->isBulkLocal ){ p->pNext = pCache->pFree; pCache->pFree = p; }else{ pcache1Free(p->page.pBuf); #ifdef SQLITE_PCACHE_SEPARATE_HEADER sqlite3_free(p); #endif } (*pCache->pnPurgeable)--; } /* ** Malloc function used by SQLite to obtain space from the buffer configured ** using sqlite3_config(SQLITE_CONFIG_PAGECACHE) option. If no such buffer ** exists, this function falls back to sqlite3Malloc(). */ SQLITE_PRIVATE void *sqlite3PageMalloc(int sz){ assert( sz<=65536+8 ); /* These allocations are never very large */ return pcache1Alloc(sz); } /* ** Free an allocated buffer obtained from sqlite3PageMalloc(). */ SQLITE_PRIVATE void sqlite3PageFree(void *p){ pcache1Free(p); } /* ** Return true if it desirable to avoid allocating a new page cache ** entry. ** ** If memory was allocated specifically to the page cache using ** SQLITE_CONFIG_PAGECACHE but that memory has all been used, then ** it is desirable to avoid allocating a new page cache entry because ** presumably SQLITE_CONFIG_PAGECACHE was suppose to be sufficient ** for all page cache needs and we should not need to spill the ** allocation onto the heap. ** ** Or, the heap is used for all page cache memory but the heap is ** under memory pressure, then again it is desirable to avoid ** allocating a new page cache entry in order to avoid stressing ** the heap even further. */ static int pcache1UnderMemoryPressure(PCache1 *pCache){ if( pcache1.nSlot && (pCache->szPage+pCache->szExtra)<=pcache1.szSlot ){ return pcache1.bUnderPressure; }else{ return sqlite3HeapNearlyFull(); } } /******************************************************************************/ /******** General Implementation Functions ************************************/ /* ** This function is used to resize the hash table used by the cache passed ** as the first argument. ** ** The PCache mutex must be held when this function is called. */ static void pcache1ResizeHash(PCache1 *p){ PgHdr1 **apNew; unsigned int nNew; unsigned int i; assert( sqlite3_mutex_held(p->pGroup->mutex) ); nNew = p->nHash*2; if( nNew<256 ){ nNew = 256; } pcache1LeaveMutex(p->pGroup); if( p->nHash ){ sqlite3BeginBenignMalloc(); } apNew = (PgHdr1 **)sqlite3MallocZero(sizeof(PgHdr1 *)*nNew); if( p->nHash ){ sqlite3EndBenignMalloc(); } pcache1EnterMutex(p->pGroup); if( apNew ){ for(i=0; inHash; i++){ PgHdr1 *pPage; PgHdr1 *pNext = p->apHash[i]; while( (pPage = pNext)!=0 ){ unsigned int h = pPage->iKey % nNew; pNext = pPage->pNext; pPage->pNext = apNew[h]; apNew[h] = pPage; } } sqlite3_free(p->apHash); p->apHash = apNew; p->nHash = nNew; } } /* ** This function is used internally to remove the page pPage from the ** PGroup LRU list, if is part of it. If pPage is not part of the PGroup ** LRU list, then this function is a no-op. ** ** The PGroup mutex must be held when this function is called. */ static PgHdr1 *pcache1PinPage(PgHdr1 *pPage){ assert( pPage!=0 ); assert( PAGE_IS_UNPINNED(pPage) ); assert( pPage->pLruNext ); assert( pPage->pLruPrev ); assert( sqlite3_mutex_held(pPage->pCache->pGroup->mutex) ); pPage->pLruPrev->pLruNext = pPage->pLruNext; pPage->pLruNext->pLruPrev = pPage->pLruPrev; pPage->pLruNext = 0; /* pPage->pLruPrev = 0; ** No need to clear pLruPrev as it is never accessed if pLruNext is 0 */ assert( pPage->isAnchor==0 ); assert( pPage->pCache->pGroup->lru.isAnchor==1 ); pPage->pCache->nRecyclable--; return pPage; } /* ** Remove the page supplied as an argument from the hash table ** (PCache1.apHash structure) that it is currently stored in. ** Also free the page if freePage is true. ** ** The PGroup mutex must be held when this function is called. */ static void pcache1RemoveFromHash(PgHdr1 *pPage, int freeFlag){ unsigned int h; PCache1 *pCache = pPage->pCache; PgHdr1 **pp; assert( sqlite3_mutex_held(pCache->pGroup->mutex) ); h = pPage->iKey % pCache->nHash; for(pp=&pCache->apHash[h]; (*pp)!=pPage; pp=&(*pp)->pNext); *pp = (*pp)->pNext; pCache->nPage--; if( freeFlag ) pcache1FreePage(pPage); } /* ** If there are currently more than nMaxPage pages allocated, try ** to recycle pages to reduce the number allocated to nMaxPage. */ static void pcache1EnforceMaxPage(PCache1 *pCache){ PGroup *pGroup = pCache->pGroup; PgHdr1 *p; assert( sqlite3_mutex_held(pGroup->mutex) ); while( pGroup->nPurgeable>pGroup->nMaxPage && (p=pGroup->lru.pLruPrev)->isAnchor==0 ){ assert( p->pCache->pGroup==pGroup ); assert( PAGE_IS_UNPINNED(p) ); pcache1PinPage(p); pcache1RemoveFromHash(p, 1); } if( pCache->nPage==0 && pCache->pBulk ){ sqlite3_free(pCache->pBulk); pCache->pBulk = pCache->pFree = 0; } } /* ** Discard all pages from cache pCache with a page number (key value) ** greater than or equal to iLimit. Any pinned pages that meet this ** criteria are unpinned before they are discarded. ** ** The PCache mutex must be held when this function is called. */ static void pcache1TruncateUnsafe( PCache1 *pCache, /* The cache to truncate */ unsigned int iLimit /* Drop pages with this pgno or larger */ ){ TESTONLY( int nPage = 0; ) /* To assert pCache->nPage is correct */ unsigned int h, iStop; assert( sqlite3_mutex_held(pCache->pGroup->mutex) ); assert( pCache->iMaxKey >= iLimit ); assert( pCache->nHash > 0 ); if( pCache->iMaxKey - iLimit < pCache->nHash ){ /* If we are just shaving the last few pages off the end of the ** cache, then there is no point in scanning the entire hash table. ** Only scan those hash slots that might contain pages that need to ** be removed. */ h = iLimit % pCache->nHash; iStop = pCache->iMaxKey % pCache->nHash; TESTONLY( nPage = -10; ) /* Disable the pCache->nPage validity check */ }else{ /* This is the general case where many pages are being removed. ** It is necessary to scan the entire hash table */ h = pCache->nHash/2; iStop = h - 1; } for(;;){ PgHdr1 **pp; PgHdr1 *pPage; assert( hnHash ); pp = &pCache->apHash[h]; while( (pPage = *pp)!=0 ){ if( pPage->iKey>=iLimit ){ pCache->nPage--; *pp = pPage->pNext; if( PAGE_IS_UNPINNED(pPage) ) pcache1PinPage(pPage); pcache1FreePage(pPage); }else{ pp = &pPage->pNext; TESTONLY( if( nPage>=0 ) nPage++; ) } } if( h==iStop ) break; h = (h+1) % pCache->nHash; } assert( nPage<0 || pCache->nPage==(unsigned)nPage ); } /******************************************************************************/ /******** sqlite3_pcache Methods **********************************************/ /* ** Implementation of the sqlite3_pcache.xInit method. */ static int pcache1Init(void *NotUsed){ UNUSED_PARAMETER(NotUsed); assert( pcache1.isInit==0 ); memset(&pcache1, 0, sizeof(pcache1)); /* ** The pcache1.separateCache variable is true if each PCache has its own ** private PGroup (mode-1). pcache1.separateCache is false if the single ** PGroup in pcache1.grp is used for all page caches (mode-2). ** ** * Always use a unified cache (mode-2) if ENABLE_MEMORY_MANAGEMENT ** ** * Use a unified cache in single-threaded applications that have ** configured a start-time buffer for use as page-cache memory using ** sqlite3_config(SQLITE_CONFIG_PAGECACHE, pBuf, sz, N) with non-NULL ** pBuf argument. ** ** * Otherwise use separate caches (mode-1) */ #if defined(SQLITE_ENABLE_MEMORY_MANAGEMENT) pcache1.separateCache = 0; #elif SQLITE_THREADSAFE pcache1.separateCache = sqlite3GlobalConfig.pPage==0 || sqlite3GlobalConfig.bCoreMutex>0; #else pcache1.separateCache = sqlite3GlobalConfig.pPage==0; #endif #if SQLITE_THREADSAFE if( sqlite3GlobalConfig.bCoreMutex ){ pcache1.grp.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_LRU); pcache1.mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_PMEM); } #endif if( pcache1.separateCache && sqlite3GlobalConfig.nPage!=0 && sqlite3GlobalConfig.pPage==0 ){ pcache1.nInitPage = sqlite3GlobalConfig.nPage; }else{ pcache1.nInitPage = 0; } pcache1.grp.mxPinned = 10; pcache1.isInit = 1; return SQLITE_OK; } /* ** Implementation of the sqlite3_pcache.xShutdown method. ** Note that the static mutex allocated in xInit does ** not need to be freed. */ static void pcache1Shutdown(void *NotUsed){ UNUSED_PARAMETER(NotUsed); assert( pcache1.isInit!=0 ); memset(&pcache1, 0, sizeof(pcache1)); } /* forward declaration */ static void pcache1Destroy(sqlite3_pcache *p); /* ** Implementation of the sqlite3_pcache.xCreate method. ** ** Allocate a new cache. */ static sqlite3_pcache *pcache1Create(int szPage, int szExtra, int bPurgeable){ PCache1 *pCache; /* The newly created page cache */ PGroup *pGroup; /* The group the new page cache will belong to */ int sz; /* Bytes of memory required to allocate the new cache */ assert( (szPage & (szPage-1))==0 && szPage>=512 && szPage<=65536 ); assert( szExtra < 300 ); sz = sizeof(PCache1) + sizeof(PGroup)*pcache1.separateCache; pCache = (PCache1 *)sqlite3MallocZero(sz); if( pCache ){ if( pcache1.separateCache ){ pGroup = (PGroup*)&pCache[1]; pGroup->mxPinned = 10; }else{ pGroup = &pcache1.grp; } pcache1EnterMutex(pGroup); if( pGroup->lru.isAnchor==0 ){ pGroup->lru.isAnchor = 1; pGroup->lru.pLruPrev = pGroup->lru.pLruNext = &pGroup->lru; } pCache->pGroup = pGroup; pCache->szPage = szPage; pCache->szExtra = szExtra; pCache->szAlloc = szPage + szExtra + ROUND8(sizeof(PgHdr1)); pCache->bPurgeable = (bPurgeable ? 1 : 0); pcache1ResizeHash(pCache); if( bPurgeable ){ pCache->nMin = 10; pGroup->nMinPage += pCache->nMin; pGroup->mxPinned = pGroup->nMaxPage + 10 - pGroup->nMinPage; pCache->pnPurgeable = &pGroup->nPurgeable; }else{ pCache->pnPurgeable = &pCache->nPurgeableDummy; } pcache1LeaveMutex(pGroup); if( pCache->nHash==0 ){ pcache1Destroy((sqlite3_pcache*)pCache); pCache = 0; } } return (sqlite3_pcache *)pCache; } /* ** Implementation of the sqlite3_pcache.xCachesize method. ** ** Configure the cache_size limit for a cache. */ static void pcache1Cachesize(sqlite3_pcache *p, int nMax){ PCache1 *pCache = (PCache1 *)p; if( pCache->bPurgeable ){ PGroup *pGroup = pCache->pGroup; pcache1EnterMutex(pGroup); pGroup->nMaxPage += (nMax - pCache->nMax); pGroup->mxPinned = pGroup->nMaxPage + 10 - pGroup->nMinPage; pCache->nMax = nMax; pCache->n90pct = pCache->nMax*9/10; pcache1EnforceMaxPage(pCache); pcache1LeaveMutex(pGroup); } } /* ** Implementation of the sqlite3_pcache.xShrink method. ** ** Free up as much memory as possible. */ static void pcache1Shrink(sqlite3_pcache *p){ PCache1 *pCache = (PCache1*)p; if( pCache->bPurgeable ){ PGroup *pGroup = pCache->pGroup; int savedMaxPage; pcache1EnterMutex(pGroup); savedMaxPage = pGroup->nMaxPage; pGroup->nMaxPage = 0; pcache1EnforceMaxPage(pCache); pGroup->nMaxPage = savedMaxPage; pcache1LeaveMutex(pGroup); } } /* ** Implementation of the sqlite3_pcache.xPagecount method. */ static int pcache1Pagecount(sqlite3_pcache *p){ int n; PCache1 *pCache = (PCache1*)p; pcache1EnterMutex(pCache->pGroup); n = pCache->nPage; pcache1LeaveMutex(pCache->pGroup); return n; } /* ** Implement steps 3, 4, and 5 of the pcache1Fetch() algorithm described ** in the header of the pcache1Fetch() procedure. ** ** This steps are broken out into a separate procedure because they are ** usually not needed, and by avoiding the stack initialization required ** for these steps, the main pcache1Fetch() procedure can run faster. */ static SQLITE_NOINLINE PgHdr1 *pcache1FetchStage2( PCache1 *pCache, unsigned int iKey, int createFlag ){ unsigned int nPinned; PGroup *pGroup = pCache->pGroup; PgHdr1 *pPage = 0; /* Step 3: Abort if createFlag is 1 but the cache is nearly full */ assert( pCache->nPage >= pCache->nRecyclable ); nPinned = pCache->nPage - pCache->nRecyclable; assert( pGroup->mxPinned == pGroup->nMaxPage + 10 - pGroup->nMinPage ); assert( pCache->n90pct == pCache->nMax*9/10 ); if( createFlag==1 && ( nPinned>=pGroup->mxPinned || nPinned>=pCache->n90pct || (pcache1UnderMemoryPressure(pCache) && pCache->nRecyclablenPage>=pCache->nHash ) pcache1ResizeHash(pCache); assert( pCache->nHash>0 && pCache->apHash ); /* Step 4. Try to recycle a page. */ if( pCache->bPurgeable && !pGroup->lru.pLruPrev->isAnchor && ((pCache->nPage+1>=pCache->nMax) || pcache1UnderMemoryPressure(pCache)) ){ PCache1 *pOther; pPage = pGroup->lru.pLruPrev; assert( PAGE_IS_UNPINNED(pPage) ); pcache1RemoveFromHash(pPage, 0); pcache1PinPage(pPage); pOther = pPage->pCache; if( pOther->szAlloc != pCache->szAlloc ){ pcache1FreePage(pPage); pPage = 0; }else{ pGroup->nPurgeable -= (pOther->bPurgeable - pCache->bPurgeable); } } /* Step 5. If a usable page buffer has still not been found, ** attempt to allocate a new one. */ if( !pPage ){ pPage = pcache1AllocPage(pCache, createFlag==1); } if( pPage ){ unsigned int h = iKey % pCache->nHash; pCache->nPage++; pPage->iKey = iKey; pPage->pNext = pCache->apHash[h]; pPage->pCache = pCache; pPage->pLruNext = 0; /* pPage->pLruPrev = 0; ** No need to clear pLruPrev since it is not accessed when pLruNext==0 */ *(void **)pPage->page.pExtra = 0; pCache->apHash[h] = pPage; if( iKey>pCache->iMaxKey ){ pCache->iMaxKey = iKey; } } return pPage; } /* ** Implementation of the sqlite3_pcache.xFetch method. ** ** Fetch a page by key value. ** ** Whether or not a new page may be allocated by this function depends on ** the value of the createFlag argument. 0 means do not allocate a new ** page. 1 means allocate a new page if space is easily available. 2 ** means to try really hard to allocate a new page. ** ** For a non-purgeable cache (a cache used as the storage for an in-memory ** database) there is really no difference between createFlag 1 and 2. So ** the calling function (pcache.c) will never have a createFlag of 1 on ** a non-purgeable cache. ** ** There are three different approaches to obtaining space for a page, ** depending on the value of parameter createFlag (which may be 0, 1 or 2). ** ** 1. Regardless of the value of createFlag, the cache is searched for a ** copy of the requested page. If one is found, it is returned. ** ** 2. If createFlag==0 and the page is not already in the cache, NULL is ** returned. ** ** 3. If createFlag is 1, and the page is not already in the cache, then ** return NULL (do not allocate a new page) if any of the following ** conditions are true: ** ** (a) the number of pages pinned by the cache is greater than ** PCache1.nMax, or ** ** (b) the number of pages pinned by the cache is greater than ** the sum of nMax for all purgeable caches, less the sum of ** nMin for all other purgeable caches, or ** ** 4. If none of the first three conditions apply and the cache is marked ** as purgeable, and if one of the following is true: ** ** (a) The number of pages allocated for the cache is already ** PCache1.nMax, or ** ** (b) The number of pages allocated for all purgeable caches is ** already equal to or greater than the sum of nMax for all ** purgeable caches, ** ** (c) The system is under memory pressure and wants to avoid ** unnecessary pages cache entry allocations ** ** then attempt to recycle a page from the LRU list. If it is the right ** size, return the recycled buffer. Otherwise, free the buffer and ** proceed to step 5. ** ** 5. Otherwise, allocate and return a new page buffer. ** ** There are two versions of this routine. pcache1FetchWithMutex() is ** the general case. pcache1FetchNoMutex() is a faster implementation for ** the common case where pGroup->mutex is NULL. The pcache1Fetch() wrapper ** invokes the appropriate routine. */ static PgHdr1 *pcache1FetchNoMutex( sqlite3_pcache *p, unsigned int iKey, int createFlag ){ PCache1 *pCache = (PCache1 *)p; PgHdr1 *pPage = 0; /* Step 1: Search the hash table for an existing entry. */ pPage = pCache->apHash[iKey % pCache->nHash]; while( pPage && pPage->iKey!=iKey ){ pPage = pPage->pNext; } /* Step 2: If the page was found in the hash table, then return it. ** If the page was not in the hash table and createFlag is 0, abort. ** Otherwise (page not in hash and createFlag!=0) continue with ** subsequent steps to try to create the page. */ if( pPage ){ if( PAGE_IS_UNPINNED(pPage) ){ return pcache1PinPage(pPage); }else{ return pPage; } }else if( createFlag ){ /* Steps 3, 4, and 5 implemented by this subroutine */ return pcache1FetchStage2(pCache, iKey, createFlag); }else{ return 0; } } #if PCACHE1_MIGHT_USE_GROUP_MUTEX static PgHdr1 *pcache1FetchWithMutex( sqlite3_pcache *p, unsigned int iKey, int createFlag ){ PCache1 *pCache = (PCache1 *)p; PgHdr1 *pPage; pcache1EnterMutex(pCache->pGroup); pPage = pcache1FetchNoMutex(p, iKey, createFlag); assert( pPage==0 || pCache->iMaxKey>=iKey ); pcache1LeaveMutex(pCache->pGroup); return pPage; } #endif static sqlite3_pcache_page *pcache1Fetch( sqlite3_pcache *p, unsigned int iKey, int createFlag ){ #if PCACHE1_MIGHT_USE_GROUP_MUTEX || defined(SQLITE_DEBUG) PCache1 *pCache = (PCache1 *)p; #endif assert( offsetof(PgHdr1,page)==0 ); assert( pCache->bPurgeable || createFlag!=1 ); assert( pCache->bPurgeable || pCache->nMin==0 ); assert( pCache->bPurgeable==0 || pCache->nMin==10 ); assert( pCache->nMin==0 || pCache->bPurgeable ); assert( pCache->nHash>0 ); #if PCACHE1_MIGHT_USE_GROUP_MUTEX if( pCache->pGroup->mutex ){ return (sqlite3_pcache_page*)pcache1FetchWithMutex(p, iKey, createFlag); }else #endif { return (sqlite3_pcache_page*)pcache1FetchNoMutex(p, iKey, createFlag); } } /* ** Implementation of the sqlite3_pcache.xUnpin method. ** ** Mark a page as unpinned (eligible for asynchronous recycling). */ static void pcache1Unpin( sqlite3_pcache *p, sqlite3_pcache_page *pPg, int reuseUnlikely ){ PCache1 *pCache = (PCache1 *)p; PgHdr1 *pPage = (PgHdr1 *)pPg; PGroup *pGroup = pCache->pGroup; assert( pPage->pCache==pCache ); pcache1EnterMutex(pGroup); /* It is an error to call this function if the page is already ** part of the PGroup LRU list. */ assert( pPage->pLruNext==0 ); assert( PAGE_IS_PINNED(pPage) ); if( reuseUnlikely || pGroup->nPurgeable>pGroup->nMaxPage ){ pcache1RemoveFromHash(pPage, 1); }else{ /* Add the page to the PGroup LRU list. */ PgHdr1 **ppFirst = &pGroup->lru.pLruNext; pPage->pLruPrev = &pGroup->lru; (pPage->pLruNext = *ppFirst)->pLruPrev = pPage; *ppFirst = pPage; pCache->nRecyclable++; } pcache1LeaveMutex(pCache->pGroup); } /* ** Implementation of the sqlite3_pcache.xRekey method. */ static void pcache1Rekey( sqlite3_pcache *p, sqlite3_pcache_page *pPg, unsigned int iOld, unsigned int iNew ){ PCache1 *pCache = (PCache1 *)p; PgHdr1 *pPage = (PgHdr1 *)pPg; PgHdr1 **pp; unsigned int h; assert( pPage->iKey==iOld ); assert( pPage->pCache==pCache ); pcache1EnterMutex(pCache->pGroup); h = iOld%pCache->nHash; pp = &pCache->apHash[h]; while( (*pp)!=pPage ){ pp = &(*pp)->pNext; } *pp = pPage->pNext; h = iNew%pCache->nHash; pPage->iKey = iNew; pPage->pNext = pCache->apHash[h]; pCache->apHash[h] = pPage; if( iNew>pCache->iMaxKey ){ pCache->iMaxKey = iNew; } pcache1LeaveMutex(pCache->pGroup); } /* ** Implementation of the sqlite3_pcache.xTruncate method. ** ** Discard all unpinned pages in the cache with a page number equal to ** or greater than parameter iLimit. Any pinned pages with a page number ** equal to or greater than iLimit are implicitly unpinned. */ static void pcache1Truncate(sqlite3_pcache *p, unsigned int iLimit){ PCache1 *pCache = (PCache1 *)p; pcache1EnterMutex(pCache->pGroup); if( iLimit<=pCache->iMaxKey ){ pcache1TruncateUnsafe(pCache, iLimit); pCache->iMaxKey = iLimit-1; } pcache1LeaveMutex(pCache->pGroup); } /* ** Implementation of the sqlite3_pcache.xDestroy method. ** ** Destroy a cache allocated using pcache1Create(). */ static void pcache1Destroy(sqlite3_pcache *p){ PCache1 *pCache = (PCache1 *)p; PGroup *pGroup = pCache->pGroup; assert( pCache->bPurgeable || (pCache->nMax==0 && pCache->nMin==0) ); pcache1EnterMutex(pGroup); if( pCache->nPage ) pcache1TruncateUnsafe(pCache, 0); assert( pGroup->nMaxPage >= pCache->nMax ); pGroup->nMaxPage -= pCache->nMax; assert( pGroup->nMinPage >= pCache->nMin ); pGroup->nMinPage -= pCache->nMin; pGroup->mxPinned = pGroup->nMaxPage + 10 - pGroup->nMinPage; pcache1EnforceMaxPage(pCache); pcache1LeaveMutex(pGroup); sqlite3_free(pCache->pBulk); sqlite3_free(pCache->apHash); sqlite3_free(pCache); } /* ** This function is called during initialization (sqlite3_initialize()) to ** install the default pluggable cache module, assuming the user has not ** already provided an alternative. */ SQLITE_PRIVATE void sqlite3PCacheSetDefault(void){ static const sqlite3_pcache_methods2 defaultMethods = { 1, /* iVersion */ 0, /* pArg */ pcache1Init, /* xInit */ pcache1Shutdown, /* xShutdown */ pcache1Create, /* xCreate */ pcache1Cachesize, /* xCachesize */ pcache1Pagecount, /* xPagecount */ pcache1Fetch, /* xFetch */ pcache1Unpin, /* xUnpin */ pcache1Rekey, /* xRekey */ pcache1Truncate, /* xTruncate */ pcache1Destroy, /* xDestroy */ pcache1Shrink /* xShrink */ }; sqlite3_config(SQLITE_CONFIG_PCACHE2, &defaultMethods); } /* ** Return the size of the header on each page of this PCACHE implementation. */ SQLITE_PRIVATE int sqlite3HeaderSizePcache1(void){ return ROUND8(sizeof(PgHdr1)); } /* ** Return the global mutex used by this PCACHE implementation. The ** sqlite3_status() routine needs access to this mutex. */ SQLITE_PRIVATE sqlite3_mutex *sqlite3Pcache1Mutex(void){ return pcache1.mutex; } #ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT /* ** This function is called to free superfluous dynamically allocated memory ** held by the pager system. Memory in use by any SQLite pager allocated ** by the current thread may be sqlite3_free()ed. ** ** nReq is the number of bytes of memory required. Once this much has ** been released, the function returns. The return value is the total number ** of bytes of memory released. */ SQLITE_PRIVATE int sqlite3PcacheReleaseMemory(int nReq){ int nFree = 0; assert( sqlite3_mutex_notheld(pcache1.grp.mutex) ); assert( sqlite3_mutex_notheld(pcache1.mutex) ); if( sqlite3GlobalConfig.pPage==0 ){ PgHdr1 *p; pcache1EnterMutex(&pcache1.grp); while( (nReq<0 || nFreeisAnchor==0 ){ nFree += pcache1MemSize(p->page.pBuf); #ifdef SQLITE_PCACHE_SEPARATE_HEADER nFree += sqlite3MemSize(p); #endif assert( PAGE_IS_UNPINNED(p) ); pcache1PinPage(p); pcache1RemoveFromHash(p, 1); } pcache1LeaveMutex(&pcache1.grp); } return nFree; } #endif /* SQLITE_ENABLE_MEMORY_MANAGEMENT */ #ifdef SQLITE_TEST /* ** This function is used by test procedures to inspect the internal state ** of the global cache. */ SQLITE_PRIVATE void sqlite3PcacheStats( int *pnCurrent, /* OUT: Total number of pages cached */ int *pnMax, /* OUT: Global maximum cache size */ int *pnMin, /* OUT: Sum of PCache1.nMin for purgeable caches */ int *pnRecyclable /* OUT: Total number of pages available for recycling */ ){ PgHdr1 *p; int nRecyclable = 0; for(p=pcache1.grp.lru.pLruNext; p && !p->isAnchor; p=p->pLruNext){ assert( PAGE_IS_UNPINNED(p) ); nRecyclable++; } *pnCurrent = pcache1.grp.nPurgeable; *pnMax = (int)pcache1.grp.nMaxPage; *pnMin = (int)pcache1.grp.nMinPage; *pnRecyclable = nRecyclable; } #endif /************** End of pcache1.c *********************************************/ /************** Begin file rowset.c ******************************************/ /* ** 2008 December 3 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This module implements an object we call a "RowSet". ** ** The RowSet object is a collection of rowids. Rowids ** are inserted into the RowSet in an arbitrary order. Inserts ** can be intermixed with tests to see if a given rowid has been ** previously inserted into the RowSet. ** ** After all inserts are finished, it is possible to extract the ** elements of the RowSet in sorted order. Once this extraction ** process has started, no new elements may be inserted. ** ** Hence, the primitive operations for a RowSet are: ** ** CREATE ** INSERT ** TEST ** SMALLEST ** DESTROY ** ** The CREATE and DESTROY primitives are the constructor and destructor, ** obviously. The INSERT primitive adds a new element to the RowSet. ** TEST checks to see if an element is already in the RowSet. SMALLEST ** extracts the least value from the RowSet. ** ** The INSERT primitive might allocate additional memory. Memory is ** allocated in chunks so most INSERTs do no allocation. There is an ** upper bound on the size of allocated memory. No memory is freed ** until DESTROY. ** ** The TEST primitive includes a "batch" number. The TEST primitive ** will only see elements that were inserted before the last change ** in the batch number. In other words, if an INSERT occurs between ** two TESTs where the TESTs have the same batch nubmer, then the ** value added by the INSERT will not be visible to the second TEST. ** The initial batch number is zero, so if the very first TEST contains ** a non-zero batch number, it will see all prior INSERTs. ** ** No INSERTs may occurs after a SMALLEST. An assertion will fail if ** that is attempted. ** ** The cost of an INSERT is roughly constant. (Sometimes new memory ** has to be allocated on an INSERT.) The cost of a TEST with a new ** batch number is O(NlogN) where N is the number of elements in the RowSet. ** The cost of a TEST using the same batch number is O(logN). The cost ** of the first SMALLEST is O(NlogN). Second and subsequent SMALLEST ** primitives are constant time. The cost of DESTROY is O(N). ** ** TEST and SMALLEST may not be used by the same RowSet. This used to ** be possible, but the feature was not used, so it was removed in order ** to simplify the code. */ /* #include "sqliteInt.h" */ /* ** Target size for allocation chunks. */ #define ROWSET_ALLOCATION_SIZE 1024 /* ** The number of rowset entries per allocation chunk. */ #define ROWSET_ENTRY_PER_CHUNK \ ((ROWSET_ALLOCATION_SIZE-8)/sizeof(struct RowSetEntry)) /* ** Each entry in a RowSet is an instance of the following object. ** ** This same object is reused to store a linked list of trees of RowSetEntry ** objects. In that alternative use, pRight points to the next entry ** in the list, pLeft points to the tree, and v is unused. The ** RowSet.pForest value points to the head of this forest list. */ struct RowSetEntry { i64 v; /* ROWID value for this entry */ struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */ struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */ }; /* ** RowSetEntry objects are allocated in large chunks (instances of the ** following structure) to reduce memory allocation overhead. The ** chunks are kept on a linked list so that they can be deallocated ** when the RowSet is destroyed. */ struct RowSetChunk { struct RowSetChunk *pNextChunk; /* Next chunk on list of them all */ struct RowSetEntry aEntry[ROWSET_ENTRY_PER_CHUNK]; /* Allocated entries */ }; /* ** A RowSet in an instance of the following structure. ** ** A typedef of this structure if found in sqliteInt.h. */ struct RowSet { struct RowSetChunk *pChunk; /* List of all chunk allocations */ sqlite3 *db; /* The database connection */ struct RowSetEntry *pEntry; /* List of entries using pRight */ struct RowSetEntry *pLast; /* Last entry on the pEntry list */ struct RowSetEntry *pFresh; /* Source of new entry objects */ struct RowSetEntry *pForest; /* List of binary trees of entries */ u16 nFresh; /* Number of objects on pFresh */ u16 rsFlags; /* Various flags */ int iBatch; /* Current insert batch */ }; /* ** Allowed values for RowSet.rsFlags */ #define ROWSET_SORTED 0x01 /* True if RowSet.pEntry is sorted */ #define ROWSET_NEXT 0x02 /* True if sqlite3RowSetNext() has been called */ /* ** Allocate a RowSet object. Return NULL if a memory allocation ** error occurs. */ SQLITE_PRIVATE RowSet *sqlite3RowSetInit(sqlite3 *db){ RowSet *p = sqlite3DbMallocRawNN(db, sizeof(*p)); if( p ){ int N = sqlite3DbMallocSize(db, p); p->pChunk = 0; p->db = db; p->pEntry = 0; p->pLast = 0; p->pForest = 0; p->pFresh = (struct RowSetEntry*)(ROUND8(sizeof(*p)) + (char*)p); p->nFresh = (u16)((N - ROUND8(sizeof(*p)))/sizeof(struct RowSetEntry)); p->rsFlags = ROWSET_SORTED; p->iBatch = 0; } return p; } /* ** Deallocate all chunks from a RowSet. This frees all memory that ** the RowSet has allocated over its lifetime. This routine is ** the destructor for the RowSet. */ SQLITE_PRIVATE void sqlite3RowSetClear(void *pArg){ RowSet *p = (RowSet*)pArg; struct RowSetChunk *pChunk, *pNextChunk; for(pChunk=p->pChunk; pChunk; pChunk = pNextChunk){ pNextChunk = pChunk->pNextChunk; sqlite3DbFree(p->db, pChunk); } p->pChunk = 0; p->nFresh = 0; p->pEntry = 0; p->pLast = 0; p->pForest = 0; p->rsFlags = ROWSET_SORTED; } /* ** Deallocate all chunks from a RowSet. This frees all memory that ** the RowSet has allocated over its lifetime. This routine is ** the destructor for the RowSet. */ SQLITE_PRIVATE void sqlite3RowSetDelete(void *pArg){ sqlite3RowSetClear(pArg); sqlite3DbFree(((RowSet*)pArg)->db, pArg); } /* ** Allocate a new RowSetEntry object that is associated with the ** given RowSet. Return a pointer to the new and completely uninitialized ** object. ** ** In an OOM situation, the RowSet.db->mallocFailed flag is set and this ** routine returns NULL. */ static struct RowSetEntry *rowSetEntryAlloc(RowSet *p){ assert( p!=0 ); if( p->nFresh==0 ){ /*OPTIMIZATION-IF-FALSE*/ /* We could allocate a fresh RowSetEntry each time one is needed, but it ** is more efficient to pull a preallocated entry from the pool */ struct RowSetChunk *pNew; pNew = sqlite3DbMallocRawNN(p->db, sizeof(*pNew)); if( pNew==0 ){ return 0; } pNew->pNextChunk = p->pChunk; p->pChunk = pNew; p->pFresh = pNew->aEntry; p->nFresh = ROWSET_ENTRY_PER_CHUNK; } p->nFresh--; return p->pFresh++; } /* ** Insert a new value into a RowSet. ** ** The mallocFailed flag of the database connection is set if a ** memory allocation fails. */ SQLITE_PRIVATE void sqlite3RowSetInsert(RowSet *p, i64 rowid){ struct RowSetEntry *pEntry; /* The new entry */ struct RowSetEntry *pLast; /* The last prior entry */ /* This routine is never called after sqlite3RowSetNext() */ assert( p!=0 && (p->rsFlags & ROWSET_NEXT)==0 ); pEntry = rowSetEntryAlloc(p); if( pEntry==0 ) return; pEntry->v = rowid; pEntry->pRight = 0; pLast = p->pLast; if( pLast ){ if( rowid<=pLast->v ){ /*OPTIMIZATION-IF-FALSE*/ /* Avoid unnecessary sorts by preserving the ROWSET_SORTED flags ** where possible */ p->rsFlags &= ~ROWSET_SORTED; } pLast->pRight = pEntry; }else{ p->pEntry = pEntry; } p->pLast = pEntry; } /* ** Merge two lists of RowSetEntry objects. Remove duplicates. ** ** The input lists are connected via pRight pointers and are ** assumed to each already be in sorted order. */ static struct RowSetEntry *rowSetEntryMerge( struct RowSetEntry *pA, /* First sorted list to be merged */ struct RowSetEntry *pB /* Second sorted list to be merged */ ){ struct RowSetEntry head; struct RowSetEntry *pTail; pTail = &head; assert( pA!=0 && pB!=0 ); for(;;){ assert( pA->pRight==0 || pA->v<=pA->pRight->v ); assert( pB->pRight==0 || pB->v<=pB->pRight->v ); if( pA->v<=pB->v ){ if( pA->vv ) pTail = pTail->pRight = pA; pA = pA->pRight; if( pA==0 ){ pTail->pRight = pB; break; } }else{ pTail = pTail->pRight = pB; pB = pB->pRight; if( pB==0 ){ pTail->pRight = pA; break; } } } return head.pRight; } /* ** Sort all elements on the list of RowSetEntry objects into order of ** increasing v. */ static struct RowSetEntry *rowSetEntrySort(struct RowSetEntry *pIn){ unsigned int i; struct RowSetEntry *pNext, *aBucket[40]; memset(aBucket, 0, sizeof(aBucket)); while( pIn ){ pNext = pIn->pRight; pIn->pRight = 0; for(i=0; aBucket[i]; i++){ pIn = rowSetEntryMerge(aBucket[i], pIn); aBucket[i] = 0; } aBucket[i] = pIn; pIn = pNext; } pIn = aBucket[0]; for(i=1; ipLeft ){ struct RowSetEntry *p; rowSetTreeToList(pIn->pLeft, ppFirst, &p); p->pRight = pIn; }else{ *ppFirst = pIn; } if( pIn->pRight ){ rowSetTreeToList(pIn->pRight, &pIn->pRight, ppLast); }else{ *ppLast = pIn; } assert( (*ppLast)->pRight==0 ); } /* ** Convert a sorted list of elements (connected by pRight) into a binary ** tree with depth of iDepth. A depth of 1 means the tree contains a single ** node taken from the head of *ppList. A depth of 2 means a tree with ** three nodes. And so forth. ** ** Use as many entries from the input list as required and update the ** *ppList to point to the unused elements of the list. If the input ** list contains too few elements, then construct an incomplete tree ** and leave *ppList set to NULL. ** ** Return a pointer to the root of the constructed binary tree. */ static struct RowSetEntry *rowSetNDeepTree( struct RowSetEntry **ppList, int iDepth ){ struct RowSetEntry *p; /* Root of the new tree */ struct RowSetEntry *pLeft; /* Left subtree */ if( *ppList==0 ){ /*OPTIMIZATION-IF-TRUE*/ /* Prevent unnecessary deep recursion when we run out of entries */ return 0; } if( iDepth>1 ){ /*OPTIMIZATION-IF-TRUE*/ /* This branch causes a *balanced* tree to be generated. A valid tree ** is still generated without this branch, but the tree is wildly ** unbalanced and inefficient. */ pLeft = rowSetNDeepTree(ppList, iDepth-1); p = *ppList; if( p==0 ){ /*OPTIMIZATION-IF-FALSE*/ /* It is safe to always return here, but the resulting tree ** would be unbalanced */ return pLeft; } p->pLeft = pLeft; *ppList = p->pRight; p->pRight = rowSetNDeepTree(ppList, iDepth-1); }else{ p = *ppList; *ppList = p->pRight; p->pLeft = p->pRight = 0; } return p; } /* ** Convert a sorted list of elements into a binary tree. Make the tree ** as deep as it needs to be in order to contain the entire list. */ static struct RowSetEntry *rowSetListToTree(struct RowSetEntry *pList){ int iDepth; /* Depth of the tree so far */ struct RowSetEntry *p; /* Current tree root */ struct RowSetEntry *pLeft; /* Left subtree */ assert( pList!=0 ); p = pList; pList = p->pRight; p->pLeft = p->pRight = 0; for(iDepth=1; pList; iDepth++){ pLeft = p; p = pList; pList = p->pRight; p->pLeft = pLeft; p->pRight = rowSetNDeepTree(&pList, iDepth); } return p; } /* ** Extract the smallest element from the RowSet. ** Write the element into *pRowid. Return 1 on success. Return ** 0 if the RowSet is already empty. ** ** After this routine has been called, the sqlite3RowSetInsert() ** routine may not be called again. ** ** This routine may not be called after sqlite3RowSetTest() has ** been used. Older versions of RowSet allowed that, but as the ** capability was not used by the code generator, it was removed ** for code economy. */ SQLITE_PRIVATE int sqlite3RowSetNext(RowSet *p, i64 *pRowid){ assert( p!=0 ); assert( p->pForest==0 ); /* Cannot be used with sqlite3RowSetText() */ /* Merge the forest into a single sorted list on first call */ if( (p->rsFlags & ROWSET_NEXT)==0 ){ /*OPTIMIZATION-IF-FALSE*/ if( (p->rsFlags & ROWSET_SORTED)==0 ){ /*OPTIMIZATION-IF-FALSE*/ p->pEntry = rowSetEntrySort(p->pEntry); } p->rsFlags |= ROWSET_SORTED|ROWSET_NEXT; } /* Return the next entry on the list */ if( p->pEntry ){ *pRowid = p->pEntry->v; p->pEntry = p->pEntry->pRight; if( p->pEntry==0 ){ /*OPTIMIZATION-IF-TRUE*/ /* Free memory immediately, rather than waiting on sqlite3_finalize() */ sqlite3RowSetClear(p); } return 1; }else{ return 0; } } /* ** Check to see if element iRowid was inserted into the rowset as ** part of any insert batch prior to iBatch. Return 1 or 0. ** ** If this is the first test of a new batch and if there exist entries ** on pRowSet->pEntry, then sort those entries into the forest at ** pRowSet->pForest so that they can be tested. */ SQLITE_PRIVATE int sqlite3RowSetTest(RowSet *pRowSet, int iBatch, sqlite3_int64 iRowid){ struct RowSetEntry *p, *pTree; /* This routine is never called after sqlite3RowSetNext() */ assert( pRowSet!=0 && (pRowSet->rsFlags & ROWSET_NEXT)==0 ); /* Sort entries into the forest on the first test of a new batch. ** To save unnecessary work, only do this when the batch number changes. */ if( iBatch!=pRowSet->iBatch ){ /*OPTIMIZATION-IF-FALSE*/ p = pRowSet->pEntry; if( p ){ struct RowSetEntry **ppPrevTree = &pRowSet->pForest; if( (pRowSet->rsFlags & ROWSET_SORTED)==0 ){ /*OPTIMIZATION-IF-FALSE*/ /* Only sort the current set of entries if they need it */ p = rowSetEntrySort(p); } for(pTree = pRowSet->pForest; pTree; pTree=pTree->pRight){ ppPrevTree = &pTree->pRight; if( pTree->pLeft==0 ){ pTree->pLeft = rowSetListToTree(p); break; }else{ struct RowSetEntry *pAux, *pTail; rowSetTreeToList(pTree->pLeft, &pAux, &pTail); pTree->pLeft = 0; p = rowSetEntryMerge(pAux, p); } } if( pTree==0 ){ *ppPrevTree = pTree = rowSetEntryAlloc(pRowSet); if( pTree ){ pTree->v = 0; pTree->pRight = 0; pTree->pLeft = rowSetListToTree(p); } } pRowSet->pEntry = 0; pRowSet->pLast = 0; pRowSet->rsFlags |= ROWSET_SORTED; } pRowSet->iBatch = iBatch; } /* Test to see if the iRowid value appears anywhere in the forest. ** Return 1 if it does and 0 if not. */ for(pTree = pRowSet->pForest; pTree; pTree=pTree->pRight){ p = pTree->pLeft; while( p ){ if( p->vpRight; }else if( p->v>iRowid ){ p = p->pLeft; }else{ return 1; } } } return 0; } /************** End of rowset.c **********************************************/ /************** Begin file pager.c *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This is the implementation of the page cache subsystem or "pager". ** ** The pager is used to access a database disk file. It implements ** atomic commit and rollback through the use of a journal file that ** is separate from the database file. The pager also implements file ** locking to prevent two processes from writing the same database ** file simultaneously, or one process from reading the database while ** another is writing. */ #ifndef SQLITE_OMIT_DISKIO /* #include "sqliteInt.h" */ /************** Include wal.h in the middle of pager.c ***********************/ /************** Begin file wal.h *********************************************/ /* ** 2010 February 1 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the interface to the write-ahead logging ** system. Refer to the comments below and the header comment attached to ** the implementation of each function in log.c for further details. */ #ifndef SQLITE_WAL_H #define SQLITE_WAL_H /* #include "sqliteInt.h" */ /* Macros for extracting appropriate sync flags for either transaction ** commits (WAL_SYNC_FLAGS(X)) or for checkpoint ops (CKPT_SYNC_FLAGS(X)): */ #define WAL_SYNC_FLAGS(X) ((X)&0x03) #define CKPT_SYNC_FLAGS(X) (((X)>>2)&0x03) #ifdef SQLITE_OMIT_WAL # define sqlite3WalOpen(x,y,z) 0 # define sqlite3WalLimit(x,y) # define sqlite3WalClose(v,w,x,y,z) 0 # define sqlite3WalBeginReadTransaction(y,z) 0 # define sqlite3WalEndReadTransaction(z) # define sqlite3WalDbsize(y) 0 # define sqlite3WalBeginWriteTransaction(y) 0 # define sqlite3WalEndWriteTransaction(x) 0 # define sqlite3WalUndo(x,y,z) 0 # define sqlite3WalSavepoint(y,z) # define sqlite3WalSavepointUndo(y,z) 0 # define sqlite3WalFrames(u,v,w,x,y,z) 0 # define sqlite3WalCheckpoint(q,r,s,t,u,v,w,x,y,z) 0 # define sqlite3WalCallback(z) 0 # define sqlite3WalExclusiveMode(y,z) 0 # define sqlite3WalHeapMemory(z) 0 # define sqlite3WalFramesize(z) 0 # define sqlite3WalFindFrame(x,y,z) 0 # define sqlite3WalFile(x) 0 #else #define WAL_SAVEPOINT_NDATA 4 /* Connection to a write-ahead log (WAL) file. ** There is one object of this type for each pager. */ typedef struct Wal Wal; /* Open and close a connection to a write-ahead log. */ SQLITE_PRIVATE int sqlite3WalOpen(sqlite3_vfs*, sqlite3_file*, const char *, int, i64, Wal**); SQLITE_PRIVATE int sqlite3WalClose(Wal *pWal, sqlite3*, int sync_flags, int, u8 *); /* Set the limiting size of a WAL file. */ SQLITE_PRIVATE void sqlite3WalLimit(Wal*, i64); /* Used by readers to open (lock) and close (unlock) a snapshot. A ** snapshot is like a read-transaction. It is the state of the database ** at an instant in time. sqlite3WalOpenSnapshot gets a read lock and ** preserves the current state even if the other threads or processes ** write to or checkpoint the WAL. sqlite3WalCloseSnapshot() closes the ** transaction and releases the lock. */ SQLITE_PRIVATE int sqlite3WalBeginReadTransaction(Wal *pWal, int *); SQLITE_PRIVATE void sqlite3WalEndReadTransaction(Wal *pWal); /* Read a page from the write-ahead log, if it is present. */ SQLITE_PRIVATE int sqlite3WalFindFrame(Wal *, Pgno, u32 *); SQLITE_PRIVATE int sqlite3WalReadFrame(Wal *, u32, int, u8 *); /* If the WAL is not empty, return the size of the database. */ SQLITE_PRIVATE Pgno sqlite3WalDbsize(Wal *pWal); /* Obtain or release the WRITER lock. */ SQLITE_PRIVATE int sqlite3WalBeginWriteTransaction(Wal *pWal); SQLITE_PRIVATE int sqlite3WalEndWriteTransaction(Wal *pWal); /* Undo any frames written (but not committed) to the log */ SQLITE_PRIVATE int sqlite3WalUndo(Wal *pWal, int (*xUndo)(void *, Pgno), void *pUndoCtx); /* Return an integer that records the current (uncommitted) write ** position in the WAL */ SQLITE_PRIVATE void sqlite3WalSavepoint(Wal *pWal, u32 *aWalData); /* Move the write position of the WAL back to iFrame. Called in ** response to a ROLLBACK TO command. */ SQLITE_PRIVATE int sqlite3WalSavepointUndo(Wal *pWal, u32 *aWalData); /* Write a frame or frames to the log. */ SQLITE_PRIVATE int sqlite3WalFrames(Wal *pWal, int, PgHdr *, Pgno, int, int); /* Copy pages from the log to the database file */ SQLITE_PRIVATE int sqlite3WalCheckpoint( Wal *pWal, /* Write-ahead log connection */ sqlite3 *db, /* Check this handle's interrupt flag */ int eMode, /* One of PASSIVE, FULL and RESTART */ int (*xBusy)(void*), /* Function to call when busy */ void *pBusyArg, /* Context argument for xBusyHandler */ int sync_flags, /* Flags to sync db file with (or 0) */ int nBuf, /* Size of buffer nBuf */ u8 *zBuf, /* Temporary buffer to use */ int *pnLog, /* OUT: Number of frames in WAL */ int *pnCkpt /* OUT: Number of backfilled frames in WAL */ ); /* Return the value to pass to a sqlite3_wal_hook callback, the ** number of frames in the WAL at the point of the last commit since ** sqlite3WalCallback() was called. If no commits have occurred since ** the last call, then return 0. */ SQLITE_PRIVATE int sqlite3WalCallback(Wal *pWal); /* Tell the wal layer that an EXCLUSIVE lock has been obtained (or released) ** by the pager layer on the database file. */ SQLITE_PRIVATE int sqlite3WalExclusiveMode(Wal *pWal, int op); /* Return true if the argument is non-NULL and the WAL module is using ** heap-memory for the wal-index. Otherwise, if the argument is NULL or the ** WAL module is using shared-memory, return false. */ SQLITE_PRIVATE int sqlite3WalHeapMemory(Wal *pWal); #ifdef SQLITE_ENABLE_SNAPSHOT SQLITE_PRIVATE int sqlite3WalSnapshotGet(Wal *pWal, sqlite3_snapshot **ppSnapshot); SQLITE_PRIVATE void sqlite3WalSnapshotOpen(Wal *pWal, sqlite3_snapshot *pSnapshot); SQLITE_PRIVATE int sqlite3WalSnapshotRecover(Wal *pWal); SQLITE_PRIVATE int sqlite3WalSnapshotCheck(Wal *pWal, sqlite3_snapshot *pSnapshot); SQLITE_PRIVATE void sqlite3WalSnapshotUnlock(Wal *pWal); #endif #ifdef SQLITE_ENABLE_ZIPVFS /* If the WAL file is not empty, return the number of bytes of content ** stored in each frame (i.e. the db page-size when the WAL was created). */ SQLITE_PRIVATE int sqlite3WalFramesize(Wal *pWal); #endif /* Return the sqlite3_file object for the WAL file */ SQLITE_PRIVATE sqlite3_file *sqlite3WalFile(Wal *pWal); #ifdef SQLITE_ENABLE_SETLK_TIMEOUT SQLITE_PRIVATE int sqlite3WalWriteLock(Wal *pWal, int bLock); SQLITE_PRIVATE void sqlite3WalDb(Wal *pWal, sqlite3 *db); #endif #endif /* ifndef SQLITE_OMIT_WAL */ #endif /* SQLITE_WAL_H */ /************** End of wal.h *************************************************/ /************** Continuing where we left off in pager.c **********************/ /******************* NOTES ON THE DESIGN OF THE PAGER ************************ ** ** This comment block describes invariants that hold when using a rollback ** journal. These invariants do not apply for journal_mode=WAL, ** journal_mode=MEMORY, or journal_mode=OFF. ** ** Within this comment block, a page is deemed to have been synced ** automatically as soon as it is written when PRAGMA synchronous=OFF. ** Otherwise, the page is not synced until the xSync method of the VFS ** is called successfully on the file containing the page. ** ** Definition: A page of the database file is said to be "overwriteable" if ** one or more of the following are true about the page: ** ** (a) The original content of the page as it was at the beginning of ** the transaction has been written into the rollback journal and ** synced. ** ** (b) The page was a freelist leaf page at the start of the transaction. ** ** (c) The page number is greater than the largest page that existed in ** the database file at the start of the transaction. ** ** (1) A page of the database file is never overwritten unless one of the ** following are true: ** ** (a) The page and all other pages on the same sector are overwriteable. ** ** (b) The atomic page write optimization is enabled, and the entire ** transaction other than the update of the transaction sequence ** number consists of a single page change. ** ** (2) The content of a page written into the rollback journal exactly matches ** both the content in the database when the rollback journal was written ** and the content in the database at the beginning of the current ** transaction. ** ** (3) Writes to the database file are an integer multiple of the page size ** in length and are aligned on a page boundary. ** ** (4) Reads from the database file are either aligned on a page boundary and ** an integer multiple of the page size in length or are taken from the ** first 100 bytes of the database file. ** ** (5) All writes to the database file are synced prior to the rollback journal ** being deleted, truncated, or zeroed. ** ** (6) If a super-journal file is used, then all writes to the database file ** are synced prior to the super-journal being deleted. ** ** Definition: Two databases (or the same database at two points it time) ** are said to be "logically equivalent" if they give the same answer to ** all queries. Note in particular the content of freelist leaf ** pages can be changed arbitrarily without affecting the logical equivalence ** of the database. ** ** (7) At any time, if any subset, including the empty set and the total set, ** of the unsynced changes to a rollback journal are removed and the ** journal is rolled back, the resulting database file will be logically ** equivalent to the database file at the beginning of the transaction. ** ** (8) When a transaction is rolled back, the xTruncate method of the VFS ** is called to restore the database file to the same size it was at ** the beginning of the transaction. (In some VFSes, the xTruncate ** method is a no-op, but that does not change the fact the SQLite will ** invoke it.) ** ** (9) Whenever the database file is modified, at least one bit in the range ** of bytes from 24 through 39 inclusive will be changed prior to releasing ** the EXCLUSIVE lock, thus signaling other connections on the same ** database to flush their caches. ** ** (10) The pattern of bits in bytes 24 through 39 shall not repeat in less ** than one billion transactions. ** ** (11) A database file is well-formed at the beginning and at the conclusion ** of every transaction. ** ** (12) An EXCLUSIVE lock is held on the database file when writing to ** the database file. ** ** (13) A SHARED lock is held on the database file while reading any ** content out of the database file. ** ******************************************************************************/ /* ** Macros for troubleshooting. Normally turned off */ #if 0 int sqlite3PagerTrace=1; /* True to enable tracing */ #define sqlite3DebugPrintf printf #define PAGERTRACE(X) if( sqlite3PagerTrace ){ sqlite3DebugPrintf X; } #else #define PAGERTRACE(X) #endif /* ** The following two macros are used within the PAGERTRACE() macros above ** to print out file-descriptors. ** ** PAGERID() takes a pointer to a Pager struct as its argument. The ** associated file-descriptor is returned. FILEHANDLEID() takes an sqlite3_file ** struct as its argument. */ #define PAGERID(p) (SQLITE_PTR_TO_INT(p->fd)) #define FILEHANDLEID(fd) (SQLITE_PTR_TO_INT(fd)) /* ** The Pager.eState variable stores the current 'state' of a pager. A ** pager may be in any one of the seven states shown in the following ** state diagram. ** ** OPEN <------+------+ ** | | | ** V | | ** +---------> READER-------+ | ** | | | ** | V | ** |<-------WRITER_LOCKED------> ERROR ** | | ^ ** | V | ** |<------WRITER_CACHEMOD-------->| ** | | | ** | V | ** |<-------WRITER_DBMOD---------->| ** | | | ** | V | ** +<------WRITER_FINISHED-------->+ ** ** ** List of state transitions and the C [function] that performs each: ** ** OPEN -> READER [sqlite3PagerSharedLock] ** READER -> OPEN [pager_unlock] ** ** READER -> WRITER_LOCKED [sqlite3PagerBegin] ** WRITER_LOCKED -> WRITER_CACHEMOD [pager_open_journal] ** WRITER_CACHEMOD -> WRITER_DBMOD [syncJournal] ** WRITER_DBMOD -> WRITER_FINISHED [sqlite3PagerCommitPhaseOne] ** WRITER_*** -> READER [pager_end_transaction] ** ** WRITER_*** -> ERROR [pager_error] ** ERROR -> OPEN [pager_unlock] ** ** ** OPEN: ** ** The pager starts up in this state. Nothing is guaranteed in this ** state - the file may or may not be locked and the database size is ** unknown. The database may not be read or written. ** ** * No read or write transaction is active. ** * Any lock, or no lock at all, may be held on the database file. ** * The dbSize, dbOrigSize and dbFileSize variables may not be trusted. ** ** READER: ** ** In this state all the requirements for reading the database in ** rollback (non-WAL) mode are met. Unless the pager is (or recently ** was) in exclusive-locking mode, a user-level read transaction is ** open. The database size is known in this state. ** ** A connection running with locking_mode=normal enters this state when ** it opens a read-transaction on the database and returns to state ** OPEN after the read-transaction is completed. However a connection ** running in locking_mode=exclusive (including temp databases) remains in ** this state even after the read-transaction is closed. The only way ** a locking_mode=exclusive connection can transition from READER to OPEN ** is via the ERROR state (see below). ** ** * A read transaction may be active (but a write-transaction cannot). ** * A SHARED or greater lock is held on the database file. ** * The dbSize variable may be trusted (even if a user-level read ** transaction is not active). The dbOrigSize and dbFileSize variables ** may not be trusted at this point. ** * If the database is a WAL database, then the WAL connection is open. ** * Even if a read-transaction is not open, it is guaranteed that ** there is no hot-journal in the file-system. ** ** WRITER_LOCKED: ** ** The pager moves to this state from READER when a write-transaction ** is first opened on the database. In WRITER_LOCKED state, all locks ** required to start a write-transaction are held, but no actual ** modifications to the cache or database have taken place. ** ** In rollback mode, a RESERVED or (if the transaction was opened with ** BEGIN EXCLUSIVE) EXCLUSIVE lock is obtained on the database file when ** moving to this state, but the journal file is not written to or opened ** to in this state. If the transaction is committed or rolled back while ** in WRITER_LOCKED state, all that is required is to unlock the database ** file. ** ** IN WAL mode, WalBeginWriteTransaction() is called to lock the log file. ** If the connection is running with locking_mode=exclusive, an attempt ** is made to obtain an EXCLUSIVE lock on the database file. ** ** * A write transaction is active. ** * If the connection is open in rollback-mode, a RESERVED or greater ** lock is held on the database file. ** * If the connection is open in WAL-mode, a WAL write transaction ** is open (i.e. sqlite3WalBeginWriteTransaction() has been successfully ** called). ** * The dbSize, dbOrigSize and dbFileSize variables are all valid. ** * The contents of the pager cache have not been modified. ** * The journal file may or may not be open. ** * Nothing (not even the first header) has been written to the journal. ** ** WRITER_CACHEMOD: ** ** A pager moves from WRITER_LOCKED state to this state when a page is ** first modified by the upper layer. In rollback mode the journal file ** is opened (if it is not already open) and a header written to the ** start of it. The database file on disk has not been modified. ** ** * A write transaction is active. ** * A RESERVED or greater lock is held on the database file. ** * The journal file is open and the first header has been written ** to it, but the header has not been synced to disk. ** * The contents of the page cache have been modified. ** ** WRITER_DBMOD: ** ** The pager transitions from WRITER_CACHEMOD into WRITER_DBMOD state ** when it modifies the contents of the database file. WAL connections ** never enter this state (since they do not modify the database file, ** just the log file). ** ** * A write transaction is active. ** * An EXCLUSIVE or greater lock is held on the database file. ** * The journal file is open and the first header has been written ** and synced to disk. ** * The contents of the page cache have been modified (and possibly ** written to disk). ** ** WRITER_FINISHED: ** ** It is not possible for a WAL connection to enter this state. ** ** A rollback-mode pager changes to WRITER_FINISHED state from WRITER_DBMOD ** state after the entire transaction has been successfully written into the ** database file. In this state the transaction may be committed simply ** by finalizing the journal file. Once in WRITER_FINISHED state, it is ** not possible to modify the database further. At this point, the upper ** layer must either commit or rollback the transaction. ** ** * A write transaction is active. ** * An EXCLUSIVE or greater lock is held on the database file. ** * All writing and syncing of journal and database data has finished. ** If no error occurred, all that remains is to finalize the journal to ** commit the transaction. If an error did occur, the caller will need ** to rollback the transaction. ** ** ERROR: ** ** The ERROR state is entered when an IO or disk-full error (including ** SQLITE_IOERR_NOMEM) occurs at a point in the code that makes it ** difficult to be sure that the in-memory pager state (cache contents, ** db size etc.) are consistent with the contents of the file-system. ** ** Temporary pager files may enter the ERROR state, but in-memory pagers ** cannot. ** ** For example, if an IO error occurs while performing a rollback, ** the contents of the page-cache may be left in an inconsistent state. ** At this point it would be dangerous to change back to READER state ** (as usually happens after a rollback). Any subsequent readers might ** report database corruption (due to the inconsistent cache), and if ** they upgrade to writers, they may inadvertently corrupt the database ** file. To avoid this hazard, the pager switches into the ERROR state ** instead of READER following such an error. ** ** Once it has entered the ERROR state, any attempt to use the pager ** to read or write data returns an error. Eventually, once all ** outstanding transactions have been abandoned, the pager is able to ** transition back to OPEN state, discarding the contents of the ** page-cache and any other in-memory state at the same time. Everything ** is reloaded from disk (and, if necessary, hot-journal rollback peformed) ** when a read-transaction is next opened on the pager (transitioning ** the pager into READER state). At that point the system has recovered ** from the error. ** ** Specifically, the pager jumps into the ERROR state if: ** ** 1. An error occurs while attempting a rollback. This happens in ** function sqlite3PagerRollback(). ** ** 2. An error occurs while attempting to finalize a journal file ** following a commit in function sqlite3PagerCommitPhaseTwo(). ** ** 3. An error occurs while attempting to write to the journal or ** database file in function pagerStress() in order to free up ** memory. ** ** In other cases, the error is returned to the b-tree layer. The b-tree ** layer then attempts a rollback operation. If the error condition ** persists, the pager enters the ERROR state via condition (1) above. ** ** Condition (3) is necessary because it can be triggered by a read-only ** statement executed within a transaction. In this case, if the error ** code were simply returned to the user, the b-tree layer would not ** automatically attempt a rollback, as it assumes that an error in a ** read-only statement cannot leave the pager in an internally inconsistent ** state. ** ** * The Pager.errCode variable is set to something other than SQLITE_OK. ** * There are one or more outstanding references to pages (after the ** last reference is dropped the pager should move back to OPEN state). ** * The pager is not an in-memory pager. ** ** ** Notes: ** ** * A pager is never in WRITER_DBMOD or WRITER_FINISHED state if the ** connection is open in WAL mode. A WAL connection is always in one ** of the first four states. ** ** * Normally, a connection open in exclusive mode is never in PAGER_OPEN ** state. There are two exceptions: immediately after exclusive-mode has ** been turned on (and before any read or write transactions are ** executed), and when the pager is leaving the "error state". ** ** * See also: assert_pager_state(). */ #define PAGER_OPEN 0 #define PAGER_READER 1 #define PAGER_WRITER_LOCKED 2 #define PAGER_WRITER_CACHEMOD 3 #define PAGER_WRITER_DBMOD 4 #define PAGER_WRITER_FINISHED 5 #define PAGER_ERROR 6 /* ** The Pager.eLock variable is almost always set to one of the ** following locking-states, according to the lock currently held on ** the database file: NO_LOCK, SHARED_LOCK, RESERVED_LOCK or EXCLUSIVE_LOCK. ** This variable is kept up to date as locks are taken and released by ** the pagerLockDb() and pagerUnlockDb() wrappers. ** ** If the VFS xLock() or xUnlock() returns an error other than SQLITE_BUSY ** (i.e. one of the SQLITE_IOERR subtypes), it is not clear whether or not ** the operation was successful. In these circumstances pagerLockDb() and ** pagerUnlockDb() take a conservative approach - eLock is always updated ** when unlocking the file, and only updated when locking the file if the ** VFS call is successful. This way, the Pager.eLock variable may be set ** to a less exclusive (lower) value than the lock that is actually held ** at the system level, but it is never set to a more exclusive value. ** ** This is usually safe. If an xUnlock fails or appears to fail, there may ** be a few redundant xLock() calls or a lock may be held for longer than ** required, but nothing really goes wrong. ** ** The exception is when the database file is unlocked as the pager moves ** from ERROR to OPEN state. At this point there may be a hot-journal file ** in the file-system that needs to be rolled back (as part of an OPEN->SHARED ** transition, by the same pager or any other). If the call to xUnlock() ** fails at this point and the pager is left holding an EXCLUSIVE lock, this ** can confuse the call to xCheckReservedLock() call made later as part ** of hot-journal detection. ** ** xCheckReservedLock() is defined as returning true "if there is a RESERVED ** lock held by this process or any others". So xCheckReservedLock may ** return true because the caller itself is holding an EXCLUSIVE lock (but ** doesn't know it because of a previous error in xUnlock). If this happens ** a hot-journal may be mistaken for a journal being created by an active ** transaction in another process, causing SQLite to read from the database ** without rolling it back. ** ** To work around this, if a call to xUnlock() fails when unlocking the ** database in the ERROR state, Pager.eLock is set to UNKNOWN_LOCK. It ** is only changed back to a real locking state after a successful call ** to xLock(EXCLUSIVE). Also, the code to do the OPEN->SHARED state transition ** omits the check for a hot-journal if Pager.eLock is set to UNKNOWN_LOCK ** lock. Instead, it assumes a hot-journal exists and obtains an EXCLUSIVE ** lock on the database file before attempting to roll it back. See function ** PagerSharedLock() for more detail. ** ** Pager.eLock may only be set to UNKNOWN_LOCK when the pager is in ** PAGER_OPEN state. */ #define UNKNOWN_LOCK (EXCLUSIVE_LOCK+1) /* ** The maximum allowed sector size. 64KiB. If the xSectorsize() method ** returns a value larger than this, then MAX_SECTOR_SIZE is used instead. ** This could conceivably cause corruption following a power failure on ** such a system. This is currently an undocumented limit. */ #define MAX_SECTOR_SIZE 0x10000 /* ** An instance of the following structure is allocated for each active ** savepoint and statement transaction in the system. All such structures ** are stored in the Pager.aSavepoint[] array, which is allocated and ** resized using sqlite3Realloc(). ** ** When a savepoint is created, the PagerSavepoint.iHdrOffset field is ** set to 0. If a journal-header is written into the main journal while ** the savepoint is active, then iHdrOffset is set to the byte offset ** immediately following the last journal record written into the main ** journal before the journal-header. This is required during savepoint ** rollback (see pagerPlaybackSavepoint()). */ typedef struct PagerSavepoint PagerSavepoint; struct PagerSavepoint { i64 iOffset; /* Starting offset in main journal */ i64 iHdrOffset; /* See above */ Bitvec *pInSavepoint; /* Set of pages in this savepoint */ Pgno nOrig; /* Original number of pages in file */ Pgno iSubRec; /* Index of first record in sub-journal */ #ifndef SQLITE_OMIT_WAL u32 aWalData[WAL_SAVEPOINT_NDATA]; /* WAL savepoint context */ #endif }; /* ** Bits of the Pager.doNotSpill flag. See further description below. */ #define SPILLFLAG_OFF 0x01 /* Never spill cache. Set via pragma */ #define SPILLFLAG_ROLLBACK 0x02 /* Current rolling back, so do not spill */ #define SPILLFLAG_NOSYNC 0x04 /* Spill is ok, but do not sync */ /* ** An open page cache is an instance of struct Pager. A description of ** some of the more important member variables follows: ** ** eState ** ** The current 'state' of the pager object. See the comment and state ** diagram above for a description of the pager state. ** ** eLock ** ** For a real on-disk database, the current lock held on the database file - ** NO_LOCK, SHARED_LOCK, RESERVED_LOCK or EXCLUSIVE_LOCK. ** ** For a temporary or in-memory database (neither of which require any ** locks), this variable is always set to EXCLUSIVE_LOCK. Since such ** databases always have Pager.exclusiveMode==1, this tricks the pager ** logic into thinking that it already has all the locks it will ever ** need (and no reason to release them). ** ** In some (obscure) circumstances, this variable may also be set to ** UNKNOWN_LOCK. See the comment above the #define of UNKNOWN_LOCK for ** details. ** ** changeCountDone ** ** This boolean variable is used to make sure that the change-counter ** (the 4-byte header field at byte offset 24 of the database file) is ** not updated more often than necessary. ** ** It is set to true when the change-counter field is updated, which ** can only happen if an exclusive lock is held on the database file. ** It is cleared (set to false) whenever an exclusive lock is ** relinquished on the database file. Each time a transaction is committed, ** The changeCountDone flag is inspected. If it is true, the work of ** updating the change-counter is omitted for the current transaction. ** ** This mechanism means that when running in exclusive mode, a connection ** need only update the change-counter once, for the first transaction ** committed. ** ** setSuper ** ** When PagerCommitPhaseOne() is called to commit a transaction, it may ** (or may not) specify a super-journal name to be written into the ** journal file before it is synced to disk. ** ** Whether or not a journal file contains a super-journal pointer affects ** the way in which the journal file is finalized after the transaction is ** committed or rolled back when running in "journal_mode=PERSIST" mode. ** If a journal file does not contain a super-journal pointer, it is ** finalized by overwriting the first journal header with zeroes. If ** it does contain a super-journal pointer the journal file is finalized ** by truncating it to zero bytes, just as if the connection were ** running in "journal_mode=truncate" mode. ** ** Journal files that contain super-journal pointers cannot be finalized ** simply by overwriting the first journal-header with zeroes, as the ** super-journal pointer could interfere with hot-journal rollback of any ** subsequently interrupted transaction that reuses the journal file. ** ** The flag is cleared as soon as the journal file is finalized (either ** by PagerCommitPhaseTwo or PagerRollback). If an IO error prevents the ** journal file from being successfully finalized, the setSuper flag ** is cleared anyway (and the pager will move to ERROR state). ** ** doNotSpill ** ** This variables control the behavior of cache-spills (calls made by ** the pcache module to the pagerStress() routine to write cached data ** to the file-system in order to free up memory). ** ** When bits SPILLFLAG_OFF or SPILLFLAG_ROLLBACK of doNotSpill are set, ** writing to the database from pagerStress() is disabled altogether. ** The SPILLFLAG_ROLLBACK case is done in a very obscure case that ** comes up during savepoint rollback that requires the pcache module ** to allocate a new page to prevent the journal file from being written ** while it is being traversed by code in pager_playback(). The SPILLFLAG_OFF ** case is a user preference. ** ** If the SPILLFLAG_NOSYNC bit is set, writing to the database from ** pagerStress() is permitted, but syncing the journal file is not. ** This flag is set by sqlite3PagerWrite() when the file-system sector-size ** is larger than the database page-size in order to prevent a journal sync ** from happening in between the journalling of two pages on the same sector. ** ** subjInMemory ** ** This is a boolean variable. If true, then any required sub-journal ** is opened as an in-memory journal file. If false, then in-memory ** sub-journals are only used for in-memory pager files. ** ** This variable is updated by the upper layer each time a new ** write-transaction is opened. ** ** dbSize, dbOrigSize, dbFileSize ** ** Variable dbSize is set to the number of pages in the database file. ** It is valid in PAGER_READER and higher states (all states except for ** OPEN and ERROR). ** ** dbSize is set based on the size of the database file, which may be ** larger than the size of the database (the value stored at offset ** 28 of the database header by the btree). If the size of the file ** is not an integer multiple of the page-size, the value stored in ** dbSize is rounded down (i.e. a 5KB file with 2K page-size has dbSize==2). ** Except, any file that is greater than 0 bytes in size is considered ** to have at least one page. (i.e. a 1KB file with 2K page-size leads ** to dbSize==1). ** ** During a write-transaction, if pages with page-numbers greater than ** dbSize are modified in the cache, dbSize is updated accordingly. ** Similarly, if the database is truncated using PagerTruncateImage(), ** dbSize is updated. ** ** Variables dbOrigSize and dbFileSize are valid in states ** PAGER_WRITER_LOCKED and higher. dbOrigSize is a copy of the dbSize ** variable at the start of the transaction. It is used during rollback, ** and to determine whether or not pages need to be journalled before ** being modified. ** ** Throughout a write-transaction, dbFileSize contains the size of ** the file on disk in pages. It is set to a copy of dbSize when the ** write-transaction is first opened, and updated when VFS calls are made ** to write or truncate the database file on disk. ** ** The only reason the dbFileSize variable is required is to suppress ** unnecessary calls to xTruncate() after committing a transaction. If, ** when a transaction is committed, the dbFileSize variable indicates ** that the database file is larger than the database image (Pager.dbSize), ** pager_truncate() is called. The pager_truncate() call uses xFilesize() ** to measure the database file on disk, and then truncates it if required. ** dbFileSize is not used when rolling back a transaction. In this case ** pager_truncate() is called unconditionally (which means there may be ** a call to xFilesize() that is not strictly required). In either case, ** pager_truncate() may cause the file to become smaller or larger. ** ** dbHintSize ** ** The dbHintSize variable is used to limit the number of calls made to ** the VFS xFileControl(FCNTL_SIZE_HINT) method. ** ** dbHintSize is set to a copy of the dbSize variable when a ** write-transaction is opened (at the same time as dbFileSize and ** dbOrigSize). If the xFileControl(FCNTL_SIZE_HINT) method is called, ** dbHintSize is increased to the number of pages that correspond to the ** size-hint passed to the method call. See pager_write_pagelist() for ** details. ** ** errCode ** ** The Pager.errCode variable is only ever used in PAGER_ERROR state. It ** is set to zero in all other states. In PAGER_ERROR state, Pager.errCode ** is always set to SQLITE_FULL, SQLITE_IOERR or one of the SQLITE_IOERR_XXX ** sub-codes. ** ** syncFlags, walSyncFlags ** ** syncFlags is either SQLITE_SYNC_NORMAL (0x02) or SQLITE_SYNC_FULL (0x03). ** syncFlags is used for rollback mode. walSyncFlags is used for WAL mode ** and contains the flags used to sync the checkpoint operations in the ** lower two bits, and sync flags used for transaction commits in the WAL ** file in bits 0x04 and 0x08. In other words, to get the correct sync flags ** for checkpoint operations, use (walSyncFlags&0x03) and to get the correct ** sync flags for transaction commit, use ((walSyncFlags>>2)&0x03). Note ** that with synchronous=NORMAL in WAL mode, transaction commit is not synced ** meaning that the 0x04 and 0x08 bits are both zero. */ struct Pager { sqlite3_vfs *pVfs; /* OS functions to use for IO */ u8 exclusiveMode; /* Boolean. True if locking_mode==EXCLUSIVE */ u8 journalMode; /* One of the PAGER_JOURNALMODE_* values */ u8 useJournal; /* Use a rollback journal on this file */ u8 noSync; /* Do not sync the journal if true */ u8 fullSync; /* Do extra syncs of the journal for robustness */ u8 extraSync; /* sync directory after journal delete */ u8 syncFlags; /* SYNC_NORMAL or SYNC_FULL otherwise */ u8 walSyncFlags; /* See description above */ u8 tempFile; /* zFilename is a temporary or immutable file */ u8 noLock; /* Do not lock (except in WAL mode) */ u8 readOnly; /* True for a read-only database */ u8 memDb; /* True to inhibit all file I/O */ /************************************************************************** ** The following block contains those class members that change during ** routine operation. Class members not in this block are either fixed ** when the pager is first created or else only change when there is a ** significant mode change (such as changing the page_size, locking_mode, ** or the journal_mode). From another view, these class members describe ** the "state" of the pager, while other class members describe the ** "configuration" of the pager. */ u8 eState; /* Pager state (OPEN, READER, WRITER_LOCKED..) */ u8 eLock; /* Current lock held on database file */ u8 changeCountDone; /* Set after incrementing the change-counter */ u8 setSuper; /* Super-jrnl name is written into jrnl */ u8 doNotSpill; /* Do not spill the cache when non-zero */ u8 subjInMemory; /* True to use in-memory sub-journals */ u8 bUseFetch; /* True to use xFetch() */ u8 hasHeldSharedLock; /* True if a shared lock has ever been held */ Pgno dbSize; /* Number of pages in the database */ Pgno dbOrigSize; /* dbSize before the current transaction */ Pgno dbFileSize; /* Number of pages in the database file */ Pgno dbHintSize; /* Value passed to FCNTL_SIZE_HINT call */ int errCode; /* One of several kinds of errors */ int nRec; /* Pages journalled since last j-header written */ u32 cksumInit; /* Quasi-random value added to every checksum */ u32 nSubRec; /* Number of records written to sub-journal */ Bitvec *pInJournal; /* One bit for each page in the database file */ sqlite3_file *fd; /* File descriptor for database */ sqlite3_file *jfd; /* File descriptor for main journal */ sqlite3_file *sjfd; /* File descriptor for sub-journal */ i64 journalOff; /* Current write offset in the journal file */ i64 journalHdr; /* Byte offset to previous journal header */ sqlite3_backup *pBackup; /* Pointer to list of ongoing backup processes */ PagerSavepoint *aSavepoint; /* Array of active savepoints */ int nSavepoint; /* Number of elements in aSavepoint[] */ u32 iDataVersion; /* Changes whenever database content changes */ char dbFileVers[16]; /* Changes whenever database file changes */ int nMmapOut; /* Number of mmap pages currently outstanding */ sqlite3_int64 szMmap; /* Desired maximum mmap size */ PgHdr *pMmapFreelist; /* List of free mmap page headers (pDirty) */ /* ** End of the routinely-changing class members ***************************************************************************/ u16 nExtra; /* Add this many bytes to each in-memory page */ i16 nReserve; /* Number of unused bytes at end of each page */ u32 vfsFlags; /* Flags for sqlite3_vfs.xOpen() */ u32 sectorSize; /* Assumed sector size during rollback */ int pageSize; /* Number of bytes in a page */ Pgno mxPgno; /* Maximum allowed size of the database */ i64 journalSizeLimit; /* Size limit for persistent journal files */ char *zFilename; /* Name of the database file */ char *zJournal; /* Name of the journal file */ int (*xBusyHandler)(void*); /* Function to call when busy */ void *pBusyHandlerArg; /* Context argument for xBusyHandler */ int aStat[4]; /* Total cache hits, misses, writes, spills */ #ifdef SQLITE_TEST int nRead; /* Database pages read */ #endif void (*xReiniter)(DbPage*); /* Call this routine when reloading pages */ int (*xGet)(Pager*,Pgno,DbPage**,int); /* Routine to fetch a patch */ char *pTmpSpace; /* Pager.pageSize bytes of space for tmp use */ PCache *pPCache; /* Pointer to page cache object */ #ifndef SQLITE_OMIT_WAL Wal *pWal; /* Write-ahead log used by "journal_mode=wal" */ char *zWal; /* File name for write-ahead log */ #endif }; /* ** Indexes for use with Pager.aStat[]. The Pager.aStat[] array contains ** the values accessed by passing SQLITE_DBSTATUS_CACHE_HIT, CACHE_MISS ** or CACHE_WRITE to sqlite3_db_status(). */ #define PAGER_STAT_HIT 0 #define PAGER_STAT_MISS 1 #define PAGER_STAT_WRITE 2 #define PAGER_STAT_SPILL 3 /* ** The following global variables hold counters used for ** testing purposes only. These variables do not exist in ** a non-testing build. These variables are not thread-safe. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_pager_readdb_count = 0; /* Number of full pages read from DB */ SQLITE_API int sqlite3_pager_writedb_count = 0; /* Number of full pages written to DB */ SQLITE_API int sqlite3_pager_writej_count = 0; /* Number of pages written to journal */ # define PAGER_INCR(v) v++ #else # define PAGER_INCR(v) #endif /* ** Journal files begin with the following magic string. The data ** was obtained from /dev/random. It is used only as a sanity check. ** ** Since version 2.8.0, the journal format contains additional sanity ** checking information. If the power fails while the journal is being ** written, semi-random garbage data might appear in the journal ** file after power is restored. If an attempt is then made ** to roll the journal back, the database could be corrupted. The additional ** sanity checking data is an attempt to discover the garbage in the ** journal and ignore it. ** ** The sanity checking information for the new journal format consists ** of a 32-bit checksum on each page of data. The checksum covers both ** the page number and the pPager->pageSize bytes of data for the page. ** This cksum is initialized to a 32-bit random value that appears in the ** journal file right after the header. The random initializer is important, ** because garbage data that appears at the end of a journal is likely ** data that was once in other files that have now been deleted. If the ** garbage data came from an obsolete journal file, the checksums might ** be correct. But by initializing the checksum to random value which ** is different for every journal, we minimize that risk. */ static const unsigned char aJournalMagic[] = { 0xd9, 0xd5, 0x05, 0xf9, 0x20, 0xa1, 0x63, 0xd7, }; /* ** The size of the of each page record in the journal is given by ** the following macro. */ #define JOURNAL_PG_SZ(pPager) ((pPager->pageSize) + 8) /* ** The journal header size for this pager. This is usually the same ** size as a single disk sector. See also setSectorSize(). */ #define JOURNAL_HDR_SZ(pPager) (pPager->sectorSize) /* ** The macro MEMDB is true if we are dealing with an in-memory database. ** We do this as a macro so that if the SQLITE_OMIT_MEMORYDB macro is set, ** the value of MEMDB will be a constant and the compiler will optimize ** out code that would never execute. */ #ifdef SQLITE_OMIT_MEMORYDB # define MEMDB 0 #else # define MEMDB pPager->memDb #endif /* ** The macro USEFETCH is true if we are allowed to use the xFetch and xUnfetch ** interfaces to access the database using memory-mapped I/O. */ #if SQLITE_MAX_MMAP_SIZE>0 # define USEFETCH(x) ((x)->bUseFetch) #else # define USEFETCH(x) 0 #endif /* ** The argument to this macro is a file descriptor (type sqlite3_file*). ** Return 0 if it is not open, or non-zero (but not 1) if it is. ** ** This is so that expressions can be written as: ** ** if( isOpen(pPager->jfd) ){ ... ** ** instead of ** ** if( pPager->jfd->pMethods ){ ... */ #define isOpen(pFd) ((pFd)->pMethods!=0) #ifdef SQLITE_DIRECT_OVERFLOW_READ /* ** Return true if page pgno can be read directly from the database file ** by the b-tree layer. This is the case if: ** ** * the database file is open, ** * there are no dirty pages in the cache, and ** * the desired page is not currently in the wal file. */ SQLITE_PRIVATE int sqlite3PagerDirectReadOk(Pager *pPager, Pgno pgno){ if( pPager->fd->pMethods==0 ) return 0; if( sqlite3PCacheIsDirty(pPager->pPCache) ) return 0; #ifndef SQLITE_OMIT_WAL if( pPager->pWal ){ u32 iRead = 0; int rc; rc = sqlite3WalFindFrame(pPager->pWal, pgno, &iRead); return (rc==SQLITE_OK && iRead==0); } #endif return 1; } #endif #ifndef SQLITE_OMIT_WAL # define pagerUseWal(x) ((x)->pWal!=0) #else # define pagerUseWal(x) 0 # define pagerRollbackWal(x) 0 # define pagerWalFrames(v,w,x,y) 0 # define pagerOpenWalIfPresent(z) SQLITE_OK # define pagerBeginReadTransaction(z) SQLITE_OK #endif #ifndef NDEBUG /* ** Usage: ** ** assert( assert_pager_state(pPager) ); ** ** This function runs many asserts to try to find inconsistencies in ** the internal state of the Pager object. */ static int assert_pager_state(Pager *p){ Pager *pPager = p; /* State must be valid. */ assert( p->eState==PAGER_OPEN || p->eState==PAGER_READER || p->eState==PAGER_WRITER_LOCKED || p->eState==PAGER_WRITER_CACHEMOD || p->eState==PAGER_WRITER_DBMOD || p->eState==PAGER_WRITER_FINISHED || p->eState==PAGER_ERROR ); /* Regardless of the current state, a temp-file connection always behaves ** as if it has an exclusive lock on the database file. It never updates ** the change-counter field, so the changeCountDone flag is always set. */ assert( p->tempFile==0 || p->eLock==EXCLUSIVE_LOCK ); assert( p->tempFile==0 || pPager->changeCountDone ); /* If the useJournal flag is clear, the journal-mode must be "OFF". ** And if the journal-mode is "OFF", the journal file must not be open. */ assert( p->journalMode==PAGER_JOURNALMODE_OFF || p->useJournal ); assert( p->journalMode!=PAGER_JOURNALMODE_OFF || !isOpen(p->jfd) ); /* Check that MEMDB implies noSync. And an in-memory journal. Since ** this means an in-memory pager performs no IO at all, it cannot encounter ** either SQLITE_IOERR or SQLITE_FULL during rollback or while finalizing ** a journal file. (although the in-memory journal implementation may ** return SQLITE_IOERR_NOMEM while the journal file is being written). It ** is therefore not possible for an in-memory pager to enter the ERROR ** state. */ if( MEMDB ){ assert( !isOpen(p->fd) ); assert( p->noSync ); assert( p->journalMode==PAGER_JOURNALMODE_OFF || p->journalMode==PAGER_JOURNALMODE_MEMORY ); assert( p->eState!=PAGER_ERROR && p->eState!=PAGER_OPEN ); assert( pagerUseWal(p)==0 ); } /* If changeCountDone is set, a RESERVED lock or greater must be held ** on the file. */ assert( pPager->changeCountDone==0 || pPager->eLock>=RESERVED_LOCK ); assert( p->eLock!=PENDING_LOCK ); switch( p->eState ){ case PAGER_OPEN: assert( !MEMDB ); assert( pPager->errCode==SQLITE_OK ); assert( sqlite3PcacheRefCount(pPager->pPCache)==0 || pPager->tempFile ); break; case PAGER_READER: assert( pPager->errCode==SQLITE_OK ); assert( p->eLock!=UNKNOWN_LOCK ); assert( p->eLock>=SHARED_LOCK ); break; case PAGER_WRITER_LOCKED: assert( p->eLock!=UNKNOWN_LOCK ); assert( pPager->errCode==SQLITE_OK ); if( !pagerUseWal(pPager) ){ assert( p->eLock>=RESERVED_LOCK ); } assert( pPager->dbSize==pPager->dbOrigSize ); assert( pPager->dbOrigSize==pPager->dbFileSize ); assert( pPager->dbOrigSize==pPager->dbHintSize ); assert( pPager->setSuper==0 ); break; case PAGER_WRITER_CACHEMOD: assert( p->eLock!=UNKNOWN_LOCK ); assert( pPager->errCode==SQLITE_OK ); if( !pagerUseWal(pPager) ){ /* It is possible that if journal_mode=wal here that neither the ** journal file nor the WAL file are open. This happens during ** a rollback transaction that switches from journal_mode=off ** to journal_mode=wal. */ assert( p->eLock>=RESERVED_LOCK ); assert( isOpen(p->jfd) || p->journalMode==PAGER_JOURNALMODE_OFF || p->journalMode==PAGER_JOURNALMODE_WAL ); } assert( pPager->dbOrigSize==pPager->dbFileSize ); assert( pPager->dbOrigSize==pPager->dbHintSize ); break; case PAGER_WRITER_DBMOD: assert( p->eLock==EXCLUSIVE_LOCK ); assert( pPager->errCode==SQLITE_OK ); assert( !pagerUseWal(pPager) ); assert( p->eLock>=EXCLUSIVE_LOCK ); assert( isOpen(p->jfd) || p->journalMode==PAGER_JOURNALMODE_OFF || p->journalMode==PAGER_JOURNALMODE_WAL || (sqlite3OsDeviceCharacteristics(p->fd)&SQLITE_IOCAP_BATCH_ATOMIC) ); assert( pPager->dbOrigSize<=pPager->dbHintSize ); break; case PAGER_WRITER_FINISHED: assert( p->eLock==EXCLUSIVE_LOCK ); assert( pPager->errCode==SQLITE_OK ); assert( !pagerUseWal(pPager) ); assert( isOpen(p->jfd) || p->journalMode==PAGER_JOURNALMODE_OFF || p->journalMode==PAGER_JOURNALMODE_WAL || (sqlite3OsDeviceCharacteristics(p->fd)&SQLITE_IOCAP_BATCH_ATOMIC) ); break; case PAGER_ERROR: /* There must be at least one outstanding reference to the pager if ** in ERROR state. Otherwise the pager should have already dropped ** back to OPEN state. */ assert( pPager->errCode!=SQLITE_OK ); assert( sqlite3PcacheRefCount(pPager->pPCache)>0 || pPager->tempFile ); break; } return 1; } #endif /* ifndef NDEBUG */ #ifdef SQLITE_DEBUG /* ** Return a pointer to a human readable string in a static buffer ** containing the state of the Pager object passed as an argument. This ** is intended to be used within debuggers. For example, as an alternative ** to "print *pPager" in gdb: ** ** (gdb) printf "%s", print_pager_state(pPager) ** ** This routine has external linkage in order to suppress compiler warnings ** about an unused function. It is enclosed within SQLITE_DEBUG and so does ** not appear in normal builds. */ char *print_pager_state(Pager *p){ static char zRet[1024]; sqlite3_snprintf(1024, zRet, "Filename: %s\n" "State: %s errCode=%d\n" "Lock: %s\n" "Locking mode: locking_mode=%s\n" "Journal mode: journal_mode=%s\n" "Backing store: tempFile=%d memDb=%d useJournal=%d\n" "Journal: journalOff=%lld journalHdr=%lld\n" "Size: dbsize=%d dbOrigSize=%d dbFileSize=%d\n" , p->zFilename , p->eState==PAGER_OPEN ? "OPEN" : p->eState==PAGER_READER ? "READER" : p->eState==PAGER_WRITER_LOCKED ? "WRITER_LOCKED" : p->eState==PAGER_WRITER_CACHEMOD ? "WRITER_CACHEMOD" : p->eState==PAGER_WRITER_DBMOD ? "WRITER_DBMOD" : p->eState==PAGER_WRITER_FINISHED ? "WRITER_FINISHED" : p->eState==PAGER_ERROR ? "ERROR" : "?error?" , (int)p->errCode , p->eLock==NO_LOCK ? "NO_LOCK" : p->eLock==RESERVED_LOCK ? "RESERVED" : p->eLock==EXCLUSIVE_LOCK ? "EXCLUSIVE" : p->eLock==SHARED_LOCK ? "SHARED" : p->eLock==UNKNOWN_LOCK ? "UNKNOWN" : "?error?" , p->exclusiveMode ? "exclusive" : "normal" , p->journalMode==PAGER_JOURNALMODE_MEMORY ? "memory" : p->journalMode==PAGER_JOURNALMODE_OFF ? "off" : p->journalMode==PAGER_JOURNALMODE_DELETE ? "delete" : p->journalMode==PAGER_JOURNALMODE_PERSIST ? "persist" : p->journalMode==PAGER_JOURNALMODE_TRUNCATE ? "truncate" : p->journalMode==PAGER_JOURNALMODE_WAL ? "wal" : "?error?" , (int)p->tempFile, (int)p->memDb, (int)p->useJournal , p->journalOff, p->journalHdr , (int)p->dbSize, (int)p->dbOrigSize, (int)p->dbFileSize ); return zRet; } #endif /* Forward references to the various page getters */ static int getPageNormal(Pager*,Pgno,DbPage**,int); static int getPageError(Pager*,Pgno,DbPage**,int); #if SQLITE_MAX_MMAP_SIZE>0 static int getPageMMap(Pager*,Pgno,DbPage**,int); #endif /* ** Set the Pager.xGet method for the appropriate routine used to fetch ** content from the pager. */ static void setGetterMethod(Pager *pPager){ if( pPager->errCode ){ pPager->xGet = getPageError; #if SQLITE_MAX_MMAP_SIZE>0 }else if( USEFETCH(pPager) ){ pPager->xGet = getPageMMap; #endif /* SQLITE_MAX_MMAP_SIZE>0 */ }else{ pPager->xGet = getPageNormal; } } /* ** Return true if it is necessary to write page *pPg into the sub-journal. ** A page needs to be written into the sub-journal if there exists one ** or more open savepoints for which: ** ** * The page-number is less than or equal to PagerSavepoint.nOrig, and ** * The bit corresponding to the page-number is not set in ** PagerSavepoint.pInSavepoint. */ static int subjRequiresPage(PgHdr *pPg){ Pager *pPager = pPg->pPager; PagerSavepoint *p; Pgno pgno = pPg->pgno; int i; for(i=0; inSavepoint; i++){ p = &pPager->aSavepoint[i]; if( p->nOrig>=pgno && 0==sqlite3BitvecTestNotNull(p->pInSavepoint, pgno) ){ return 1; } } return 0; } #ifdef SQLITE_DEBUG /* ** Return true if the page is already in the journal file. */ static int pageInJournal(Pager *pPager, PgHdr *pPg){ return sqlite3BitvecTest(pPager->pInJournal, pPg->pgno); } #endif /* ** Read a 32-bit integer from the given file descriptor. Store the integer ** that is read in *pRes. Return SQLITE_OK if everything worked, or an ** error code is something goes wrong. ** ** All values are stored on disk as big-endian. */ static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){ unsigned char ac[4]; int rc = sqlite3OsRead(fd, ac, sizeof(ac), offset); if( rc==SQLITE_OK ){ *pRes = sqlite3Get4byte(ac); } return rc; } /* ** Write a 32-bit integer into a string buffer in big-endian byte order. */ #define put32bits(A,B) sqlite3Put4byte((u8*)A,B) /* ** Write a 32-bit integer into the given file descriptor. Return SQLITE_OK ** on success or an error code is something goes wrong. */ static int write32bits(sqlite3_file *fd, i64 offset, u32 val){ char ac[4]; put32bits(ac, val); return sqlite3OsWrite(fd, ac, 4, offset); } /* ** Unlock the database file to level eLock, which must be either NO_LOCK ** or SHARED_LOCK. Regardless of whether or not the call to xUnlock() ** succeeds, set the Pager.eLock variable to match the (attempted) new lock. ** ** Except, if Pager.eLock is set to UNKNOWN_LOCK when this function is ** called, do not modify it. See the comment above the #define of ** UNKNOWN_LOCK for an explanation of this. */ static int pagerUnlockDb(Pager *pPager, int eLock){ int rc = SQLITE_OK; assert( !pPager->exclusiveMode || pPager->eLock==eLock ); assert( eLock==NO_LOCK || eLock==SHARED_LOCK ); assert( eLock!=NO_LOCK || pagerUseWal(pPager)==0 ); if( isOpen(pPager->fd) ){ assert( pPager->eLock>=eLock ); rc = pPager->noLock ? SQLITE_OK : sqlite3OsUnlock(pPager->fd, eLock); if( pPager->eLock!=UNKNOWN_LOCK ){ pPager->eLock = (u8)eLock; } IOTRACE(("UNLOCK %p %d\n", pPager, eLock)) } pPager->changeCountDone = pPager->tempFile; /* ticket fb3b3024ea238d5c */ return rc; } /* ** Lock the database file to level eLock, which must be either SHARED_LOCK, ** RESERVED_LOCK or EXCLUSIVE_LOCK. If the caller is successful, set the ** Pager.eLock variable to the new locking state. ** ** Except, if Pager.eLock is set to UNKNOWN_LOCK when this function is ** called, do not modify it unless the new locking state is EXCLUSIVE_LOCK. ** See the comment above the #define of UNKNOWN_LOCK for an explanation ** of this. */ static int pagerLockDb(Pager *pPager, int eLock){ int rc = SQLITE_OK; assert( eLock==SHARED_LOCK || eLock==RESERVED_LOCK || eLock==EXCLUSIVE_LOCK ); if( pPager->eLockeLock==UNKNOWN_LOCK ){ rc = pPager->noLock ? SQLITE_OK : sqlite3OsLock(pPager->fd, eLock); if( rc==SQLITE_OK && (pPager->eLock!=UNKNOWN_LOCK||eLock==EXCLUSIVE_LOCK) ){ pPager->eLock = (u8)eLock; IOTRACE(("LOCK %p %d\n", pPager, eLock)) } } return rc; } /* ** This function determines whether or not the atomic-write or ** atomic-batch-write optimizations can be used with this pager. The ** atomic-write optimization can be used if: ** ** (a) the value returned by OsDeviceCharacteristics() indicates that ** a database page may be written atomically, and ** (b) the value returned by OsSectorSize() is less than or equal ** to the page size. ** ** If it can be used, then the value returned is the size of the journal ** file when it contains rollback data for exactly one page. ** ** The atomic-batch-write optimization can be used if OsDeviceCharacteristics() ** returns a value with the SQLITE_IOCAP_BATCH_ATOMIC bit set. -1 is ** returned in this case. ** ** If neither optimization can be used, 0 is returned. */ static int jrnlBufferSize(Pager *pPager){ assert( !MEMDB ); #if defined(SQLITE_ENABLE_ATOMIC_WRITE) \ || defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) int dc; /* Device characteristics */ assert( isOpen(pPager->fd) ); dc = sqlite3OsDeviceCharacteristics(pPager->fd); #else UNUSED_PARAMETER(pPager); #endif #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE if( pPager->dbSize>0 && (dc&SQLITE_IOCAP_BATCH_ATOMIC) ){ return -1; } #endif #ifdef SQLITE_ENABLE_ATOMIC_WRITE { int nSector = pPager->sectorSize; int szPage = pPager->pageSize; assert(SQLITE_IOCAP_ATOMIC512==(512>>8)); assert(SQLITE_IOCAP_ATOMIC64K==(65536>>8)); if( 0==(dc&(SQLITE_IOCAP_ATOMIC|(szPage>>8)) || nSector>szPage) ){ return 0; } } return JOURNAL_HDR_SZ(pPager) + JOURNAL_PG_SZ(pPager); #endif return 0; } /* ** If SQLITE_CHECK_PAGES is defined then we do some sanity checking ** on the cache using a hash function. This is used for testing ** and debugging only. */ #ifdef SQLITE_CHECK_PAGES /* ** Return a 32-bit hash of the page data for pPage. */ static u32 pager_datahash(int nByte, unsigned char *pData){ u32 hash = 0; int i; for(i=0; ipPager->pageSize, (unsigned char *)pPage->pData); } static void pager_set_pagehash(PgHdr *pPage){ pPage->pageHash = pager_pagehash(pPage); } /* ** The CHECK_PAGE macro takes a PgHdr* as an argument. If SQLITE_CHECK_PAGES ** is defined, and NDEBUG is not defined, an assert() statement checks ** that the page is either dirty or still matches the calculated page-hash. */ #define CHECK_PAGE(x) checkPage(x) static void checkPage(PgHdr *pPg){ Pager *pPager = pPg->pPager; assert( pPager->eState!=PAGER_ERROR ); assert( (pPg->flags&PGHDR_DIRTY) || pPg->pageHash==pager_pagehash(pPg) ); } #else #define pager_datahash(X,Y) 0 #define pager_pagehash(X) 0 #define pager_set_pagehash(X) #define CHECK_PAGE(x) #endif /* SQLITE_CHECK_PAGES */ /* ** When this is called the journal file for pager pPager must be open. ** This function attempts to read a super-journal file name from the ** end of the file and, if successful, copies it into memory supplied ** by the caller. See comments above writeSuperJournal() for the format ** used to store a super-journal file name at the end of a journal file. ** ** zSuper must point to a buffer of at least nSuper bytes allocated by ** the caller. This should be sqlite3_vfs.mxPathname+1 (to ensure there is ** enough space to write the super-journal name). If the super-journal ** name in the journal is longer than nSuper bytes (including a ** nul-terminator), then this is handled as if no super-journal name ** were present in the journal. ** ** If a super-journal file name is present at the end of the journal ** file, then it is copied into the buffer pointed to by zSuper. A ** nul-terminator byte is appended to the buffer following the ** super-journal file name. ** ** If it is determined that no super-journal file name is present ** zSuper[0] is set to 0 and SQLITE_OK returned. ** ** If an error occurs while reading from the journal file, an SQLite ** error code is returned. */ static int readSuperJournal(sqlite3_file *pJrnl, char *zSuper, u32 nSuper){ int rc; /* Return code */ u32 len; /* Length in bytes of super-journal name */ i64 szJ; /* Total size in bytes of journal file pJrnl */ u32 cksum; /* MJ checksum value read from journal */ u32 u; /* Unsigned loop counter */ unsigned char aMagic[8]; /* A buffer to hold the magic header */ zSuper[0] = '\0'; if( SQLITE_OK!=(rc = sqlite3OsFileSize(pJrnl, &szJ)) || szJ<16 || SQLITE_OK!=(rc = read32bits(pJrnl, szJ-16, &len)) || len>=nSuper || len>szJ-16 || len==0 || SQLITE_OK!=(rc = read32bits(pJrnl, szJ-12, &cksum)) || SQLITE_OK!=(rc = sqlite3OsRead(pJrnl, aMagic, 8, szJ-8)) || memcmp(aMagic, aJournalMagic, 8) || SQLITE_OK!=(rc = sqlite3OsRead(pJrnl, zSuper, len, szJ-16-len)) ){ return rc; } /* See if the checksum matches the super-journal name */ for(u=0; ujournalOff, assuming a sector ** size of pPager->sectorSize bytes. ** ** i.e for a sector size of 512: ** ** Pager.journalOff Return value ** --------------------------------------- ** 0 0 ** 512 512 ** 100 512 ** 2000 2048 ** */ static i64 journalHdrOffset(Pager *pPager){ i64 offset = 0; i64 c = pPager->journalOff; if( c ){ offset = ((c-1)/JOURNAL_HDR_SZ(pPager) + 1) * JOURNAL_HDR_SZ(pPager); } assert( offset%JOURNAL_HDR_SZ(pPager)==0 ); assert( offset>=c ); assert( (offset-c)jfd) ); assert( !sqlite3JournalIsInMemory(pPager->jfd) ); if( pPager->journalOff ){ const i64 iLimit = pPager->journalSizeLimit; /* Local cache of jsl */ IOTRACE(("JZEROHDR %p\n", pPager)) if( doTruncate || iLimit==0 ){ rc = sqlite3OsTruncate(pPager->jfd, 0); }else{ static const char zeroHdr[28] = {0}; rc = sqlite3OsWrite(pPager->jfd, zeroHdr, sizeof(zeroHdr), 0); } if( rc==SQLITE_OK && !pPager->noSync ){ rc = sqlite3OsSync(pPager->jfd, SQLITE_SYNC_DATAONLY|pPager->syncFlags); } /* At this point the transaction is committed but the write lock ** is still held on the file. If there is a size limit configured for ** the persistent journal and the journal file currently consumes more ** space than that limit allows for, truncate it now. There is no need ** to sync the file following this operation. */ if( rc==SQLITE_OK && iLimit>0 ){ i64 sz; rc = sqlite3OsFileSize(pPager->jfd, &sz); if( rc==SQLITE_OK && sz>iLimit ){ rc = sqlite3OsTruncate(pPager->jfd, iLimit); } } } return rc; } /* ** The journal file must be open when this routine is called. A journal ** header (JOURNAL_HDR_SZ bytes) is written into the journal file at the ** current location. ** ** The format for the journal header is as follows: ** - 8 bytes: Magic identifying journal format. ** - 4 bytes: Number of records in journal, or -1 no-sync mode is on. ** - 4 bytes: Random number used for page hash. ** - 4 bytes: Initial database page count. ** - 4 bytes: Sector size used by the process that wrote this journal. ** - 4 bytes: Database page size. ** ** Followed by (JOURNAL_HDR_SZ - 28) bytes of unused space. */ static int writeJournalHdr(Pager *pPager){ int rc = SQLITE_OK; /* Return code */ char *zHeader = pPager->pTmpSpace; /* Temporary space used to build header */ u32 nHeader = (u32)pPager->pageSize;/* Size of buffer pointed to by zHeader */ u32 nWrite; /* Bytes of header sector written */ int ii; /* Loop counter */ assert( isOpen(pPager->jfd) ); /* Journal file must be open. */ if( nHeader>JOURNAL_HDR_SZ(pPager) ){ nHeader = JOURNAL_HDR_SZ(pPager); } /* If there are active savepoints and any of them were created ** since the most recent journal header was written, update the ** PagerSavepoint.iHdrOffset fields now. */ for(ii=0; iinSavepoint; ii++){ if( pPager->aSavepoint[ii].iHdrOffset==0 ){ pPager->aSavepoint[ii].iHdrOffset = pPager->journalOff; } } pPager->journalHdr = pPager->journalOff = journalHdrOffset(pPager); /* ** Write the nRec Field - the number of page records that follow this ** journal header. Normally, zero is written to this value at this time. ** After the records are added to the journal (and the journal synced, ** if in full-sync mode), the zero is overwritten with the true number ** of records (see syncJournal()). ** ** A faster alternative is to write 0xFFFFFFFF to the nRec field. When ** reading the journal this value tells SQLite to assume that the ** rest of the journal file contains valid page records. This assumption ** is dangerous, as if a failure occurred whilst writing to the journal ** file it may contain some garbage data. There are two scenarios ** where this risk can be ignored: ** ** * When the pager is in no-sync mode. Corruption can follow a ** power failure in this case anyway. ** ** * When the SQLITE_IOCAP_SAFE_APPEND flag is set. This guarantees ** that garbage data is never appended to the journal file. */ assert( isOpen(pPager->fd) || pPager->noSync ); if( pPager->noSync || (pPager->journalMode==PAGER_JOURNALMODE_MEMORY) || (sqlite3OsDeviceCharacteristics(pPager->fd)&SQLITE_IOCAP_SAFE_APPEND) ){ memcpy(zHeader, aJournalMagic, sizeof(aJournalMagic)); put32bits(&zHeader[sizeof(aJournalMagic)], 0xffffffff); }else{ memset(zHeader, 0, sizeof(aJournalMagic)+4); } /* The random check-hash initializer */ sqlite3_randomness(sizeof(pPager->cksumInit), &pPager->cksumInit); put32bits(&zHeader[sizeof(aJournalMagic)+4], pPager->cksumInit); /* The initial database size */ put32bits(&zHeader[sizeof(aJournalMagic)+8], pPager->dbOrigSize); /* The assumed sector size for this process */ put32bits(&zHeader[sizeof(aJournalMagic)+12], pPager->sectorSize); /* The page size */ put32bits(&zHeader[sizeof(aJournalMagic)+16], pPager->pageSize); /* Initializing the tail of the buffer is not necessary. Everything ** works find if the following memset() is omitted. But initializing ** the memory prevents valgrind from complaining, so we are willing to ** take the performance hit. */ memset(&zHeader[sizeof(aJournalMagic)+20], 0, nHeader-(sizeof(aJournalMagic)+20)); /* In theory, it is only necessary to write the 28 bytes that the ** journal header consumes to the journal file here. Then increment the ** Pager.journalOff variable by JOURNAL_HDR_SZ so that the next ** record is written to the following sector (leaving a gap in the file ** that will be implicitly filled in by the OS). ** ** However it has been discovered that on some systems this pattern can ** be significantly slower than contiguously writing data to the file, ** even if that means explicitly writing data to the block of ** (JOURNAL_HDR_SZ - 28) bytes that will not be used. So that is what ** is done. ** ** The loop is required here in case the sector-size is larger than the ** database page size. Since the zHeader buffer is only Pager.pageSize ** bytes in size, more than one call to sqlite3OsWrite() may be required ** to populate the entire journal header sector. */ for(nWrite=0; rc==SQLITE_OK&&nWritejournalHdr, nHeader)) rc = sqlite3OsWrite(pPager->jfd, zHeader, nHeader, pPager->journalOff); assert( pPager->journalHdr <= pPager->journalOff ); pPager->journalOff += nHeader; } return rc; } /* ** The journal file must be open when this is called. A journal header file ** (JOURNAL_HDR_SZ bytes) is read from the current location in the journal ** file. The current location in the journal file is given by ** pPager->journalOff. See comments above function writeJournalHdr() for ** a description of the journal header format. ** ** If the header is read successfully, *pNRec is set to the number of ** page records following this header and *pDbSize is set to the size of the ** database before the transaction began, in pages. Also, pPager->cksumInit ** is set to the value read from the journal header. SQLITE_OK is returned ** in this case. ** ** If the journal header file appears to be corrupted, SQLITE_DONE is ** returned and *pNRec and *PDbSize are undefined. If JOURNAL_HDR_SZ bytes ** cannot be read from the journal file an error code is returned. */ static int readJournalHdr( Pager *pPager, /* Pager object */ int isHot, i64 journalSize, /* Size of the open journal file in bytes */ u32 *pNRec, /* OUT: Value read from the nRec field */ u32 *pDbSize /* OUT: Value of original database size field */ ){ int rc; /* Return code */ unsigned char aMagic[8]; /* A buffer to hold the magic header */ i64 iHdrOff; /* Offset of journal header being read */ assert( isOpen(pPager->jfd) ); /* Journal file must be open. */ /* Advance Pager.journalOff to the start of the next sector. If the ** journal file is too small for there to be a header stored at this ** point, return SQLITE_DONE. */ pPager->journalOff = journalHdrOffset(pPager); if( pPager->journalOff+JOURNAL_HDR_SZ(pPager) > journalSize ){ return SQLITE_DONE; } iHdrOff = pPager->journalOff; /* Read in the first 8 bytes of the journal header. If they do not match ** the magic string found at the start of each journal header, return ** SQLITE_DONE. If an IO error occurs, return an error code. Otherwise, ** proceed. */ if( isHot || iHdrOff!=pPager->journalHdr ){ rc = sqlite3OsRead(pPager->jfd, aMagic, sizeof(aMagic), iHdrOff); if( rc ){ return rc; } if( memcmp(aMagic, aJournalMagic, sizeof(aMagic))!=0 ){ return SQLITE_DONE; } } /* Read the first three 32-bit fields of the journal header: The nRec ** field, the checksum-initializer and the database size at the start ** of the transaction. Return an error code if anything goes wrong. */ if( SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+8, pNRec)) || SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+12, &pPager->cksumInit)) || SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+16, pDbSize)) ){ return rc; } if( pPager->journalOff==0 ){ u32 iPageSize; /* Page-size field of journal header */ u32 iSectorSize; /* Sector-size field of journal header */ /* Read the page-size and sector-size journal header fields. */ if( SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+20, &iSectorSize)) || SQLITE_OK!=(rc = read32bits(pPager->jfd, iHdrOff+24, &iPageSize)) ){ return rc; } /* Versions of SQLite prior to 3.5.8 set the page-size field of the ** journal header to zero. In this case, assume that the Pager.pageSize ** variable is already set to the correct page size. */ if( iPageSize==0 ){ iPageSize = pPager->pageSize; } /* Check that the values read from the page-size and sector-size fields ** are within range. To be 'in range', both values need to be a power ** of two greater than or equal to 512 or 32, and not greater than their ** respective compile time maximum limits. */ if( iPageSize<512 || iSectorSize<32 || iPageSize>SQLITE_MAX_PAGE_SIZE || iSectorSize>MAX_SECTOR_SIZE || ((iPageSize-1)&iPageSize)!=0 || ((iSectorSize-1)&iSectorSize)!=0 ){ /* If the either the page-size or sector-size in the journal-header is ** invalid, then the process that wrote the journal-header must have ** crashed before the header was synced. In this case stop reading ** the journal file here. */ return SQLITE_DONE; } /* Update the page-size to match the value read from the journal. ** Use a testcase() macro to make sure that malloc failure within ** PagerSetPagesize() is tested. */ rc = sqlite3PagerSetPagesize(pPager, &iPageSize, -1); testcase( rc!=SQLITE_OK ); /* Update the assumed sector-size to match the value used by ** the process that created this journal. If this journal was ** created by a process other than this one, then this routine ** is being called from within pager_playback(). The local value ** of Pager.sectorSize is restored at the end of that routine. */ pPager->sectorSize = iSectorSize; } pPager->journalOff += JOURNAL_HDR_SZ(pPager); return rc; } /* ** Write the supplied super-journal name into the journal file for pager ** pPager at the current location. The super-journal name must be the last ** thing written to a journal file. If the pager is in full-sync mode, the ** journal file descriptor is advanced to the next sector boundary before ** anything is written. The format is: ** ** + 4 bytes: PAGER_MJ_PGNO. ** + N bytes: super-journal filename in utf-8. ** + 4 bytes: N (length of super-journal name in bytes, no nul-terminator). ** + 4 bytes: super-journal name checksum. ** + 8 bytes: aJournalMagic[]. ** ** The super-journal page checksum is the sum of the bytes in thesuper-journal ** name, where each byte is interpreted as a signed 8-bit integer. ** ** If zSuper is a NULL pointer (occurs for a single database transaction), ** this call is a no-op. */ static int writeSuperJournal(Pager *pPager, const char *zSuper){ int rc; /* Return code */ int nSuper; /* Length of string zSuper */ i64 iHdrOff; /* Offset of header in journal file */ i64 jrnlSize; /* Size of journal file on disk */ u32 cksum = 0; /* Checksum of string zSuper */ assert( pPager->setSuper==0 ); assert( !pagerUseWal(pPager) ); if( !zSuper || pPager->journalMode==PAGER_JOURNALMODE_MEMORY || !isOpen(pPager->jfd) ){ return SQLITE_OK; } pPager->setSuper = 1; assert( pPager->journalHdr <= pPager->journalOff ); /* Calculate the length in bytes and the checksum of zSuper */ for(nSuper=0; zSuper[nSuper]; nSuper++){ cksum += zSuper[nSuper]; } /* If in full-sync mode, advance to the next disk sector before writing ** the super-journal name. This is in case the previous page written to ** the journal has already been synced. */ if( pPager->fullSync ){ pPager->journalOff = journalHdrOffset(pPager); } iHdrOff = pPager->journalOff; /* Write the super-journal data to the end of the journal file. If ** an error occurs, return the error code to the caller. */ if( (0 != (rc = write32bits(pPager->jfd, iHdrOff, PAGER_MJ_PGNO(pPager)))) || (0 != (rc = sqlite3OsWrite(pPager->jfd, zSuper, nSuper, iHdrOff+4))) || (0 != (rc = write32bits(pPager->jfd, iHdrOff+4+nSuper, nSuper))) || (0 != (rc = write32bits(pPager->jfd, iHdrOff+4+nSuper+4, cksum))) || (0 != (rc = sqlite3OsWrite(pPager->jfd, aJournalMagic, 8, iHdrOff+4+nSuper+8))) ){ return rc; } pPager->journalOff += (nSuper+20); /* If the pager is in peristent-journal mode, then the physical ** journal-file may extend past the end of the super-journal name ** and 8 bytes of magic data just written to the file. This is ** dangerous because the code to rollback a hot-journal file ** will not be able to find the super-journal name to determine ** whether or not the journal is hot. ** ** Easiest thing to do in this scenario is to truncate the journal ** file to the required size. */ if( SQLITE_OK==(rc = sqlite3OsFileSize(pPager->jfd, &jrnlSize)) && jrnlSize>pPager->journalOff ){ rc = sqlite3OsTruncate(pPager->jfd, pPager->journalOff); } return rc; } /* ** Discard the entire contents of the in-memory page-cache. */ static void pager_reset(Pager *pPager){ pPager->iDataVersion++; sqlite3BackupRestart(pPager->pBackup); sqlite3PcacheClear(pPager->pPCache); } /* ** Return the pPager->iDataVersion value */ SQLITE_PRIVATE u32 sqlite3PagerDataVersion(Pager *pPager){ return pPager->iDataVersion; } /* ** Free all structures in the Pager.aSavepoint[] array and set both ** Pager.aSavepoint and Pager.nSavepoint to zero. Close the sub-journal ** if it is open and the pager is not in exclusive mode. */ static void releaseAllSavepoints(Pager *pPager){ int ii; /* Iterator for looping through Pager.aSavepoint */ for(ii=0; iinSavepoint; ii++){ sqlite3BitvecDestroy(pPager->aSavepoint[ii].pInSavepoint); } if( !pPager->exclusiveMode || sqlite3JournalIsInMemory(pPager->sjfd) ){ sqlite3OsClose(pPager->sjfd); } sqlite3_free(pPager->aSavepoint); pPager->aSavepoint = 0; pPager->nSavepoint = 0; pPager->nSubRec = 0; } /* ** Set the bit number pgno in the PagerSavepoint.pInSavepoint ** bitvecs of all open savepoints. Return SQLITE_OK if successful ** or SQLITE_NOMEM if a malloc failure occurs. */ static int addToSavepointBitvecs(Pager *pPager, Pgno pgno){ int ii; /* Loop counter */ int rc = SQLITE_OK; /* Result code */ for(ii=0; iinSavepoint; ii++){ PagerSavepoint *p = &pPager->aSavepoint[ii]; if( pgno<=p->nOrig ){ rc |= sqlite3BitvecSet(p->pInSavepoint, pgno); testcase( rc==SQLITE_NOMEM ); assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); } } return rc; } /* ** This function is a no-op if the pager is in exclusive mode and not ** in the ERROR state. Otherwise, it switches the pager to PAGER_OPEN ** state. ** ** If the pager is not in exclusive-access mode, the database file is ** completely unlocked. If the file is unlocked and the file-system does ** not exhibit the UNDELETABLE_WHEN_OPEN property, the journal file is ** closed (if it is open). ** ** If the pager is in ERROR state when this function is called, the ** contents of the pager cache are discarded before switching back to ** the OPEN state. Regardless of whether the pager is in exclusive-mode ** or not, any journal file left in the file-system will be treated ** as a hot-journal and rolled back the next time a read-transaction ** is opened (by this or by any other connection). */ static void pager_unlock(Pager *pPager){ assert( pPager->eState==PAGER_READER || pPager->eState==PAGER_OPEN || pPager->eState==PAGER_ERROR ); sqlite3BitvecDestroy(pPager->pInJournal); pPager->pInJournal = 0; releaseAllSavepoints(pPager); if( pagerUseWal(pPager) ){ assert( !isOpen(pPager->jfd) ); sqlite3WalEndReadTransaction(pPager->pWal); pPager->eState = PAGER_OPEN; }else if( !pPager->exclusiveMode ){ int rc; /* Error code returned by pagerUnlockDb() */ int iDc = isOpen(pPager->fd)?sqlite3OsDeviceCharacteristics(pPager->fd):0; /* If the operating system support deletion of open files, then ** close the journal file when dropping the database lock. Otherwise ** another connection with journal_mode=delete might delete the file ** out from under us. */ assert( (PAGER_JOURNALMODE_MEMORY & 5)!=1 ); assert( (PAGER_JOURNALMODE_OFF & 5)!=1 ); assert( (PAGER_JOURNALMODE_WAL & 5)!=1 ); assert( (PAGER_JOURNALMODE_DELETE & 5)!=1 ); assert( (PAGER_JOURNALMODE_TRUNCATE & 5)==1 ); assert( (PAGER_JOURNALMODE_PERSIST & 5)==1 ); if( 0==(iDc & SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN) || 1!=(pPager->journalMode & 5) ){ sqlite3OsClose(pPager->jfd); } /* If the pager is in the ERROR state and the call to unlock the database ** file fails, set the current lock to UNKNOWN_LOCK. See the comment ** above the #define for UNKNOWN_LOCK for an explanation of why this ** is necessary. */ rc = pagerUnlockDb(pPager, NO_LOCK); if( rc!=SQLITE_OK && pPager->eState==PAGER_ERROR ){ pPager->eLock = UNKNOWN_LOCK; } /* The pager state may be changed from PAGER_ERROR to PAGER_OPEN here ** without clearing the error code. This is intentional - the error ** code is cleared and the cache reset in the block below. */ assert( pPager->errCode || pPager->eState!=PAGER_ERROR ); pPager->eState = PAGER_OPEN; } /* If Pager.errCode is set, the contents of the pager cache cannot be ** trusted. Now that there are no outstanding references to the pager, ** it can safely move back to PAGER_OPEN state. This happens in both ** normal and exclusive-locking mode. */ assert( pPager->errCode==SQLITE_OK || !MEMDB ); if( pPager->errCode ){ if( pPager->tempFile==0 ){ pager_reset(pPager); pPager->changeCountDone = 0; pPager->eState = PAGER_OPEN; }else{ pPager->eState = (isOpen(pPager->jfd) ? PAGER_OPEN : PAGER_READER); } if( USEFETCH(pPager) ) sqlite3OsUnfetch(pPager->fd, 0, 0); pPager->errCode = SQLITE_OK; setGetterMethod(pPager); } pPager->journalOff = 0; pPager->journalHdr = 0; pPager->setSuper = 0; } /* ** This function is called whenever an IOERR or FULL error that requires ** the pager to transition into the ERROR state may ahve occurred. ** The first argument is a pointer to the pager structure, the second ** the error-code about to be returned by a pager API function. The ** value returned is a copy of the second argument to this function. ** ** If the second argument is SQLITE_FULL, SQLITE_IOERR or one of the ** IOERR sub-codes, the pager enters the ERROR state and the error code ** is stored in Pager.errCode. While the pager remains in the ERROR state, ** all major API calls on the Pager will immediately return Pager.errCode. ** ** The ERROR state indicates that the contents of the pager-cache ** cannot be trusted. This state can be cleared by completely discarding ** the contents of the pager-cache. If a transaction was active when ** the persistent error occurred, then the rollback journal may need ** to be replayed to restore the contents of the database file (as if ** it were a hot-journal). */ static int pager_error(Pager *pPager, int rc){ int rc2 = rc & 0xff; assert( rc==SQLITE_OK || !MEMDB ); assert( pPager->errCode==SQLITE_FULL || pPager->errCode==SQLITE_OK || (pPager->errCode & 0xff)==SQLITE_IOERR ); if( rc2==SQLITE_FULL || rc2==SQLITE_IOERR ){ pPager->errCode = rc; pPager->eState = PAGER_ERROR; setGetterMethod(pPager); } return rc; } static int pager_truncate(Pager *pPager, Pgno nPage); /* ** The write transaction open on pPager is being committed (bCommit==1) ** or rolled back (bCommit==0). ** ** Return TRUE if and only if all dirty pages should be flushed to disk. ** ** Rules: ** ** * For non-TEMP databases, always sync to disk. This is necessary ** for transactions to be durable. ** ** * Sync TEMP database only on a COMMIT (not a ROLLBACK) when the backing ** file has been created already (via a spill on pagerStress()) and ** when the number of dirty pages in memory exceeds 25% of the total ** cache size. */ static int pagerFlushOnCommit(Pager *pPager, int bCommit){ if( pPager->tempFile==0 ) return 1; if( !bCommit ) return 0; if( !isOpen(pPager->fd) ) return 0; return (sqlite3PCachePercentDirty(pPager->pPCache)>=25); } /* ** This routine ends a transaction. A transaction is usually ended by ** either a COMMIT or a ROLLBACK operation. This routine may be called ** after rollback of a hot-journal, or if an error occurs while opening ** the journal file or writing the very first journal-header of a ** database transaction. ** ** This routine is never called in PAGER_ERROR state. If it is called ** in PAGER_NONE or PAGER_SHARED state and the lock held is less ** exclusive than a RESERVED lock, it is a no-op. ** ** Otherwise, any active savepoints are released. ** ** If the journal file is open, then it is "finalized". Once a journal ** file has been finalized it is not possible to use it to roll back a ** transaction. Nor will it be considered to be a hot-journal by this ** or any other database connection. Exactly how a journal is finalized ** depends on whether or not the pager is running in exclusive mode and ** the current journal-mode (Pager.journalMode value), as follows: ** ** journalMode==MEMORY ** Journal file descriptor is simply closed. This destroys an ** in-memory journal. ** ** journalMode==TRUNCATE ** Journal file is truncated to zero bytes in size. ** ** journalMode==PERSIST ** The first 28 bytes of the journal file are zeroed. This invalidates ** the first journal header in the file, and hence the entire journal ** file. An invalid journal file cannot be rolled back. ** ** journalMode==DELETE ** The journal file is closed and deleted using sqlite3OsDelete(). ** ** If the pager is running in exclusive mode, this method of finalizing ** the journal file is never used. Instead, if the journalMode is ** DELETE and the pager is in exclusive mode, the method described under ** journalMode==PERSIST is used instead. ** ** After the journal is finalized, the pager moves to PAGER_READER state. ** If running in non-exclusive rollback mode, the lock on the file is ** downgraded to a SHARED_LOCK. ** ** SQLITE_OK is returned if no error occurs. If an error occurs during ** any of the IO operations to finalize the journal file or unlock the ** database then the IO error code is returned to the user. If the ** operation to finalize the journal file fails, then the code still ** tries to unlock the database file if not in exclusive mode. If the ** unlock operation fails as well, then the first error code related ** to the first error encountered (the journal finalization one) is ** returned. */ static int pager_end_transaction(Pager *pPager, int hasSuper, int bCommit){ int rc = SQLITE_OK; /* Error code from journal finalization operation */ int rc2 = SQLITE_OK; /* Error code from db file unlock operation */ /* Do nothing if the pager does not have an open write transaction ** or at least a RESERVED lock. This function may be called when there ** is no write-transaction active but a RESERVED or greater lock is ** held under two circumstances: ** ** 1. After a successful hot-journal rollback, it is called with ** eState==PAGER_NONE and eLock==EXCLUSIVE_LOCK. ** ** 2. If a connection with locking_mode=exclusive holding an EXCLUSIVE ** lock switches back to locking_mode=normal and then executes a ** read-transaction, this function is called with eState==PAGER_READER ** and eLock==EXCLUSIVE_LOCK when the read-transaction is closed. */ assert( assert_pager_state(pPager) ); assert( pPager->eState!=PAGER_ERROR ); if( pPager->eStateeLockjfd) || pPager->pInJournal==0 || (sqlite3OsDeviceCharacteristics(pPager->fd)&SQLITE_IOCAP_BATCH_ATOMIC) ); if( isOpen(pPager->jfd) ){ assert( !pagerUseWal(pPager) ); /* Finalize the journal file. */ if( sqlite3JournalIsInMemory(pPager->jfd) ){ /* assert( pPager->journalMode==PAGER_JOURNALMODE_MEMORY ); */ sqlite3OsClose(pPager->jfd); }else if( pPager->journalMode==PAGER_JOURNALMODE_TRUNCATE ){ if( pPager->journalOff==0 ){ rc = SQLITE_OK; }else{ rc = sqlite3OsTruncate(pPager->jfd, 0); if( rc==SQLITE_OK && pPager->fullSync ){ /* Make sure the new file size is written into the inode right away. ** Otherwise the journal might resurrect following a power loss and ** cause the last transaction to roll back. See ** https://bugzilla.mozilla.org/show_bug.cgi?id=1072773 */ rc = sqlite3OsSync(pPager->jfd, pPager->syncFlags); } } pPager->journalOff = 0; }else if( pPager->journalMode==PAGER_JOURNALMODE_PERSIST || (pPager->exclusiveMode && pPager->journalMode!=PAGER_JOURNALMODE_WAL) ){ rc = zeroJournalHdr(pPager, hasSuper||pPager->tempFile); pPager->journalOff = 0; }else{ /* This branch may be executed with Pager.journalMode==MEMORY if ** a hot-journal was just rolled back. In this case the journal ** file should be closed and deleted. If this connection writes to ** the database file, it will do so using an in-memory journal. */ int bDelete = !pPager->tempFile; assert( sqlite3JournalIsInMemory(pPager->jfd)==0 ); assert( pPager->journalMode==PAGER_JOURNALMODE_DELETE || pPager->journalMode==PAGER_JOURNALMODE_MEMORY || pPager->journalMode==PAGER_JOURNALMODE_WAL ); sqlite3OsClose(pPager->jfd); if( bDelete ){ rc = sqlite3OsDelete(pPager->pVfs, pPager->zJournal, pPager->extraSync); } } } #ifdef SQLITE_CHECK_PAGES sqlite3PcacheIterateDirty(pPager->pPCache, pager_set_pagehash); if( pPager->dbSize==0 && sqlite3PcacheRefCount(pPager->pPCache)>0 ){ PgHdr *p = sqlite3PagerLookup(pPager, 1); if( p ){ p->pageHash = 0; sqlite3PagerUnrefNotNull(p); } } #endif sqlite3BitvecDestroy(pPager->pInJournal); pPager->pInJournal = 0; pPager->nRec = 0; if( rc==SQLITE_OK ){ if( MEMDB || pagerFlushOnCommit(pPager, bCommit) ){ sqlite3PcacheCleanAll(pPager->pPCache); }else{ sqlite3PcacheClearWritable(pPager->pPCache); } sqlite3PcacheTruncate(pPager->pPCache, pPager->dbSize); } if( pagerUseWal(pPager) ){ /* Drop the WAL write-lock, if any. Also, if the connection was in ** locking_mode=exclusive mode but is no longer, drop the EXCLUSIVE ** lock held on the database file. */ rc2 = sqlite3WalEndWriteTransaction(pPager->pWal); assert( rc2==SQLITE_OK ); }else if( rc==SQLITE_OK && bCommit && pPager->dbFileSize>pPager->dbSize ){ /* This branch is taken when committing a transaction in rollback-journal ** mode if the database file on disk is larger than the database image. ** At this point the journal has been finalized and the transaction ** successfully committed, but the EXCLUSIVE lock is still held on the ** file. So it is safe to truncate the database file to its minimum ** required size. */ assert( pPager->eLock==EXCLUSIVE_LOCK ); rc = pager_truncate(pPager, pPager->dbSize); } if( rc==SQLITE_OK && bCommit ){ rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_COMMIT_PHASETWO, 0); if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; } if( !pPager->exclusiveMode && (!pagerUseWal(pPager) || sqlite3WalExclusiveMode(pPager->pWal, 0)) ){ rc2 = pagerUnlockDb(pPager, SHARED_LOCK); } pPager->eState = PAGER_READER; pPager->setSuper = 0; return (rc==SQLITE_OK?rc2:rc); } /* ** Execute a rollback if a transaction is active and unlock the ** database file. ** ** If the pager has already entered the ERROR state, do not attempt ** the rollback at this time. Instead, pager_unlock() is called. The ** call to pager_unlock() will discard all in-memory pages, unlock ** the database file and move the pager back to OPEN state. If this ** means that there is a hot-journal left in the file-system, the next ** connection to obtain a shared lock on the pager (which may be this one) ** will roll it back. ** ** If the pager has not already entered the ERROR state, but an IO or ** malloc error occurs during a rollback, then this will itself cause ** the pager to enter the ERROR state. Which will be cleared by the ** call to pager_unlock(), as described above. */ static void pagerUnlockAndRollback(Pager *pPager){ if( pPager->eState!=PAGER_ERROR && pPager->eState!=PAGER_OPEN ){ assert( assert_pager_state(pPager) ); if( pPager->eState>=PAGER_WRITER_LOCKED ){ sqlite3BeginBenignMalloc(); sqlite3PagerRollback(pPager); sqlite3EndBenignMalloc(); }else if( !pPager->exclusiveMode ){ assert( pPager->eState==PAGER_READER ); pager_end_transaction(pPager, 0, 0); } } pager_unlock(pPager); } /* ** Parameter aData must point to a buffer of pPager->pageSize bytes ** of data. Compute and return a checksum based ont the contents of the ** page of data and the current value of pPager->cksumInit. ** ** This is not a real checksum. It is really just the sum of the ** random initial value (pPager->cksumInit) and every 200th byte ** of the page data, starting with byte offset (pPager->pageSize%200). ** Each byte is interpreted as an 8-bit unsigned integer. ** ** Changing the formula used to compute this checksum results in an ** incompatible journal file format. ** ** If journal corruption occurs due to a power failure, the most likely ** scenario is that one end or the other of the record will be changed. ** It is much less likely that the two ends of the journal record will be ** correct and the middle be corrupt. Thus, this "checksum" scheme, ** though fast and simple, catches the mostly likely kind of corruption. */ static u32 pager_cksum(Pager *pPager, const u8 *aData){ u32 cksum = pPager->cksumInit; /* Checksum value to return */ int i = pPager->pageSize-200; /* Loop counter */ while( i>0 ){ cksum += aData[i]; i -= 200; } return cksum; } /* ** Read a single page from either the journal file (if isMainJrnl==1) or ** from the sub-journal (if isMainJrnl==0) and playback that page. ** The page begins at offset *pOffset into the file. The *pOffset ** value is increased to the start of the next page in the journal. ** ** The main rollback journal uses checksums - the statement journal does ** not. ** ** If the page number of the page record read from the (sub-)journal file ** is greater than the current value of Pager.dbSize, then playback is ** skipped and SQLITE_OK is returned. ** ** If pDone is not NULL, then it is a record of pages that have already ** been played back. If the page at *pOffset has already been played back ** (if the corresponding pDone bit is set) then skip the playback. ** Make sure the pDone bit corresponding to the *pOffset page is set ** prior to returning. ** ** If the page record is successfully read from the (sub-)journal file ** and played back, then SQLITE_OK is returned. If an IO error occurs ** while reading the record from the (sub-)journal file or while writing ** to the database file, then the IO error code is returned. If data ** is successfully read from the (sub-)journal file but appears to be ** corrupted, SQLITE_DONE is returned. Data is considered corrupted in ** two circumstances: ** ** * If the record page-number is illegal (0 or PAGER_MJ_PGNO), or ** * If the record is being rolled back from the main journal file ** and the checksum field does not match the record content. ** ** Neither of these two scenarios are possible during a savepoint rollback. ** ** If this is a savepoint rollback, then memory may have to be dynamically ** allocated by this function. If this is the case and an allocation fails, ** SQLITE_NOMEM is returned. */ static int pager_playback_one_page( Pager *pPager, /* The pager being played back */ i64 *pOffset, /* Offset of record to playback */ Bitvec *pDone, /* Bitvec of pages already played back */ int isMainJrnl, /* 1 -> main journal. 0 -> sub-journal. */ int isSavepnt /* True for a savepoint rollback */ ){ int rc; PgHdr *pPg; /* An existing page in the cache */ Pgno pgno; /* The page number of a page in journal */ u32 cksum; /* Checksum used for sanity checking */ char *aData; /* Temporary storage for the page */ sqlite3_file *jfd; /* The file descriptor for the journal file */ int isSynced; /* True if journal page is synced */ assert( (isMainJrnl&~1)==0 ); /* isMainJrnl is 0 or 1 */ assert( (isSavepnt&~1)==0 ); /* isSavepnt is 0 or 1 */ assert( isMainJrnl || pDone ); /* pDone always used on sub-journals */ assert( isSavepnt || pDone==0 ); /* pDone never used on non-savepoint */ aData = pPager->pTmpSpace; assert( aData ); /* Temp storage must have already been allocated */ assert( pagerUseWal(pPager)==0 || (!isMainJrnl && isSavepnt) ); /* Either the state is greater than PAGER_WRITER_CACHEMOD (a transaction ** or savepoint rollback done at the request of the caller) or this is ** a hot-journal rollback. If it is a hot-journal rollback, the pager ** is in state OPEN and holds an EXCLUSIVE lock. Hot-journal rollback ** only reads from the main journal, not the sub-journal. */ assert( pPager->eState>=PAGER_WRITER_CACHEMOD || (pPager->eState==PAGER_OPEN && pPager->eLock==EXCLUSIVE_LOCK) ); assert( pPager->eState>=PAGER_WRITER_CACHEMOD || isMainJrnl ); /* Read the page number and page data from the journal or sub-journal ** file. Return an error code to the caller if an IO error occurs. */ jfd = isMainJrnl ? pPager->jfd : pPager->sjfd; rc = read32bits(jfd, *pOffset, &pgno); if( rc!=SQLITE_OK ) return rc; rc = sqlite3OsRead(jfd, (u8*)aData, pPager->pageSize, (*pOffset)+4); if( rc!=SQLITE_OK ) return rc; *pOffset += pPager->pageSize + 4 + isMainJrnl*4; /* Sanity checking on the page. This is more important that I originally ** thought. If a power failure occurs while the journal is being written, ** it could cause invalid data to be written into the journal. We need to ** detect this invalid data (with high probability) and ignore it. */ if( pgno==0 || pgno==PAGER_MJ_PGNO(pPager) ){ assert( !isSavepnt ); return SQLITE_DONE; } if( pgno>(Pgno)pPager->dbSize || sqlite3BitvecTest(pDone, pgno) ){ return SQLITE_OK; } if( isMainJrnl ){ rc = read32bits(jfd, (*pOffset)-4, &cksum); if( rc ) return rc; if( !isSavepnt && pager_cksum(pPager, (u8*)aData)!=cksum ){ return SQLITE_DONE; } } /* If this page has already been played back before during the current ** rollback, then don't bother to play it back again. */ if( pDone && (rc = sqlite3BitvecSet(pDone, pgno))!=SQLITE_OK ){ return rc; } /* When playing back page 1, restore the nReserve setting */ if( pgno==1 && pPager->nReserve!=((u8*)aData)[20] ){ pPager->nReserve = ((u8*)aData)[20]; } /* If the pager is in CACHEMOD state, then there must be a copy of this ** page in the pager cache. In this case just update the pager cache, ** not the database file. The page is left marked dirty in this case. ** ** An exception to the above rule: If the database is in no-sync mode ** and a page is moved during an incremental vacuum then the page may ** not be in the pager cache. Later: if a malloc() or IO error occurs ** during a Movepage() call, then the page may not be in the cache ** either. So the condition described in the above paragraph is not ** assert()able. ** ** If in WRITER_DBMOD, WRITER_FINISHED or OPEN state, then we update the ** pager cache if it exists and the main file. The page is then marked ** not dirty. Since this code is only executed in PAGER_OPEN state for ** a hot-journal rollback, it is guaranteed that the page-cache is empty ** if the pager is in OPEN state. ** ** Ticket #1171: The statement journal might contain page content that is ** different from the page content at the start of the transaction. ** This occurs when a page is changed prior to the start of a statement ** then changed again within the statement. When rolling back such a ** statement we must not write to the original database unless we know ** for certain that original page contents are synced into the main rollback ** journal. Otherwise, a power loss might leave modified data in the ** database file without an entry in the rollback journal that can ** restore the database to its original form. Two conditions must be ** met before writing to the database files. (1) the database must be ** locked. (2) we know that the original page content is fully synced ** in the main journal either because the page is not in cache or else ** the page is marked as needSync==0. ** ** 2008-04-14: When attempting to vacuum a corrupt database file, it ** is possible to fail a statement on a database that does not yet exist. ** Do not attempt to write if database file has never been opened. */ if( pagerUseWal(pPager) ){ pPg = 0; }else{ pPg = sqlite3PagerLookup(pPager, pgno); } assert( pPg || !MEMDB ); assert( pPager->eState!=PAGER_OPEN || pPg==0 || pPager->tempFile ); PAGERTRACE(("PLAYBACK %d page %d hash(%08x) %s\n", PAGERID(pPager), pgno, pager_datahash(pPager->pageSize, (u8*)aData), (isMainJrnl?"main-journal":"sub-journal") )); if( isMainJrnl ){ isSynced = pPager->noSync || (*pOffset <= pPager->journalHdr); }else{ isSynced = (pPg==0 || 0==(pPg->flags & PGHDR_NEED_SYNC)); } if( isOpen(pPager->fd) && (pPager->eState>=PAGER_WRITER_DBMOD || pPager->eState==PAGER_OPEN) && isSynced ){ i64 ofst = (pgno-1)*(i64)pPager->pageSize; testcase( !isSavepnt && pPg!=0 && (pPg->flags&PGHDR_NEED_SYNC)!=0 ); assert( !pagerUseWal(pPager) ); /* Write the data read from the journal back into the database file. ** This is usually safe even for an encrypted database - as the data ** was encrypted before it was written to the journal file. The exception ** is if the data was just read from an in-memory sub-journal. In that ** case it must be encrypted here before it is copied into the database ** file. */ rc = sqlite3OsWrite(pPager->fd, (u8 *)aData, pPager->pageSize, ofst); if( pgno>pPager->dbFileSize ){ pPager->dbFileSize = pgno; } if( pPager->pBackup ){ sqlite3BackupUpdate(pPager->pBackup, pgno, (u8*)aData); } }else if( !isMainJrnl && pPg==0 ){ /* If this is a rollback of a savepoint and data was not written to ** the database and the page is not in-memory, there is a potential ** problem. When the page is next fetched by the b-tree layer, it ** will be read from the database file, which may or may not be ** current. ** ** There are a couple of different ways this can happen. All are quite ** obscure. When running in synchronous mode, this can only happen ** if the page is on the free-list at the start of the transaction, then ** populated, then moved using sqlite3PagerMovepage(). ** ** The solution is to add an in-memory page to the cache containing ** the data just read from the sub-journal. Mark the page as dirty ** and if the pager requires a journal-sync, then mark the page as ** requiring a journal-sync before it is written. */ assert( isSavepnt ); assert( (pPager->doNotSpill & SPILLFLAG_ROLLBACK)==0 ); pPager->doNotSpill |= SPILLFLAG_ROLLBACK; rc = sqlite3PagerGet(pPager, pgno, &pPg, 1); assert( (pPager->doNotSpill & SPILLFLAG_ROLLBACK)!=0 ); pPager->doNotSpill &= ~SPILLFLAG_ROLLBACK; if( rc!=SQLITE_OK ) return rc; sqlite3PcacheMakeDirty(pPg); } if( pPg ){ /* No page should ever be explicitly rolled back that is in use, except ** for page 1 which is held in use in order to keep the lock on the ** database active. However such a page may be rolled back as a result ** of an internal error resulting in an automatic call to ** sqlite3PagerRollback(). */ void *pData; pData = pPg->pData; memcpy(pData, (u8*)aData, pPager->pageSize); pPager->xReiniter(pPg); /* It used to be that sqlite3PcacheMakeClean(pPg) was called here. But ** that call was dangerous and had no detectable benefit since the cache ** is normally cleaned by sqlite3PcacheCleanAll() after rollback and so ** has been removed. */ pager_set_pagehash(pPg); /* If this was page 1, then restore the value of Pager.dbFileVers. ** Do this before any decoding. */ if( pgno==1 ){ memcpy(&pPager->dbFileVers, &((u8*)pData)[24],sizeof(pPager->dbFileVers)); } sqlite3PcacheRelease(pPg); } return rc; } /* ** Parameter zSuper is the name of a super-journal file. A single journal ** file that referred to the super-journal file has just been rolled back. ** This routine checks if it is possible to delete the super-journal file, ** and does so if it is. ** ** Argument zSuper may point to Pager.pTmpSpace. So that buffer is not ** available for use within this function. ** ** When a super-journal file is created, it is populated with the names ** of all of its child journals, one after another, formatted as utf-8 ** encoded text. The end of each child journal file is marked with a ** nul-terminator byte (0x00). i.e. the entire contents of a super-journal ** file for a transaction involving two databases might be: ** ** "/home/bill/a.db-journal\x00/home/bill/b.db-journal\x00" ** ** A super-journal file may only be deleted once all of its child ** journals have been rolled back. ** ** This function reads the contents of the super-journal file into ** memory and loops through each of the child journal names. For ** each child journal, it checks if: ** ** * if the child journal exists, and if so ** * if the child journal contains a reference to super-journal ** file zSuper ** ** If a child journal can be found that matches both of the criteria ** above, this function returns without doing anything. Otherwise, if ** no such child journal can be found, file zSuper is deleted from ** the file-system using sqlite3OsDelete(). ** ** If an IO error within this function, an error code is returned. This ** function allocates memory by calling sqlite3Malloc(). If an allocation ** fails, SQLITE_NOMEM is returned. Otherwise, if no IO or malloc errors ** occur, SQLITE_OK is returned. ** ** TODO: This function allocates a single block of memory to load ** the entire contents of the super-journal file. This could be ** a couple of kilobytes or so - potentially larger than the page ** size. */ static int pager_delsuper(Pager *pPager, const char *zSuper){ sqlite3_vfs *pVfs = pPager->pVfs; int rc; /* Return code */ sqlite3_file *pSuper; /* Malloc'd super-journal file descriptor */ sqlite3_file *pJournal; /* Malloc'd child-journal file descriptor */ char *zSuperJournal = 0; /* Contents of super-journal file */ i64 nSuperJournal; /* Size of super-journal file */ char *zJournal; /* Pointer to one journal within MJ file */ char *zSuperPtr; /* Space to hold super-journal filename */ int nSuperPtr; /* Amount of space allocated to zSuperPtr[] */ /* Allocate space for both the pJournal and pSuper file descriptors. ** If successful, open the super-journal file for reading. */ pSuper = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile * 2); if( !pSuper ){ rc = SQLITE_NOMEM_BKPT; pJournal = 0; }else{ const int flags = (SQLITE_OPEN_READONLY|SQLITE_OPEN_SUPER_JOURNAL); rc = sqlite3OsOpen(pVfs, zSuper, pSuper, flags, 0); pJournal = (sqlite3_file *)(((u8 *)pSuper) + pVfs->szOsFile); } if( rc!=SQLITE_OK ) goto delsuper_out; /* Load the entire super-journal file into space obtained from ** sqlite3_malloc() and pointed to by zSuperJournal. Also obtain ** sufficient space (in zSuperPtr) to hold the names of super-journal ** files extracted from regular rollback-journals. */ rc = sqlite3OsFileSize(pSuper, &nSuperJournal); if( rc!=SQLITE_OK ) goto delsuper_out; nSuperPtr = pVfs->mxPathname+1; zSuperJournal = sqlite3Malloc(nSuperJournal + nSuperPtr + 2); if( !zSuperJournal ){ rc = SQLITE_NOMEM_BKPT; goto delsuper_out; } zSuperPtr = &zSuperJournal[nSuperJournal+2]; rc = sqlite3OsRead(pSuper, zSuperJournal, (int)nSuperJournal, 0); if( rc!=SQLITE_OK ) goto delsuper_out; zSuperJournal[nSuperJournal] = 0; zSuperJournal[nSuperJournal+1] = 0; zJournal = zSuperJournal; while( (zJournal-zSuperJournal)pageSize bytes). ** If the file on disk is currently larger than nPage pages, then use the VFS ** xTruncate() method to truncate it. ** ** Or, it might be the case that the file on disk is smaller than ** nPage pages. Some operating system implementations can get confused if ** you try to truncate a file to some size that is larger than it ** currently is, so detect this case and write a single zero byte to ** the end of the new file instead. ** ** If successful, return SQLITE_OK. If an IO error occurs while modifying ** the database file, return the error code to the caller. */ static int pager_truncate(Pager *pPager, Pgno nPage){ int rc = SQLITE_OK; assert( pPager->eState!=PAGER_ERROR ); assert( pPager->eState!=PAGER_READER ); if( isOpen(pPager->fd) && (pPager->eState>=PAGER_WRITER_DBMOD || pPager->eState==PAGER_OPEN) ){ i64 currentSize, newSize; int szPage = pPager->pageSize; assert( pPager->eLock==EXCLUSIVE_LOCK ); /* TODO: Is it safe to use Pager.dbFileSize here? */ rc = sqlite3OsFileSize(pPager->fd, ¤tSize); newSize = szPage*(i64)nPage; if( rc==SQLITE_OK && currentSize!=newSize ){ if( currentSize>newSize ){ rc = sqlite3OsTruncate(pPager->fd, newSize); }else if( (currentSize+szPage)<=newSize ){ char *pTmp = pPager->pTmpSpace; memset(pTmp, 0, szPage); testcase( (newSize-szPage) == currentSize ); testcase( (newSize-szPage) > currentSize ); rc = sqlite3OsWrite(pPager->fd, pTmp, szPage, newSize-szPage); } if( rc==SQLITE_OK ){ pPager->dbFileSize = nPage; } } } return rc; } /* ** Return a sanitized version of the sector-size of OS file pFile. The ** return value is guaranteed to lie between 32 and MAX_SECTOR_SIZE. */ SQLITE_PRIVATE int sqlite3SectorSize(sqlite3_file *pFile){ int iRet = sqlite3OsSectorSize(pFile); if( iRet<32 ){ iRet = 512; }else if( iRet>MAX_SECTOR_SIZE ){ assert( MAX_SECTOR_SIZE>=512 ); iRet = MAX_SECTOR_SIZE; } return iRet; } /* ** Set the value of the Pager.sectorSize variable for the given ** pager based on the value returned by the xSectorSize method ** of the open database file. The sector size will be used ** to determine the size and alignment of journal header and ** super-journal pointers within created journal files. ** ** For temporary files the effective sector size is always 512 bytes. ** ** Otherwise, for non-temporary files, the effective sector size is ** the value returned by the xSectorSize() method rounded up to 32 if ** it is less than 32, or rounded down to MAX_SECTOR_SIZE if it ** is greater than MAX_SECTOR_SIZE. ** ** If the file has the SQLITE_IOCAP_POWERSAFE_OVERWRITE property, then set ** the effective sector size to its minimum value (512). The purpose of ** pPager->sectorSize is to define the "blast radius" of bytes that ** might change if a crash occurs while writing to a single byte in ** that range. But with POWERSAFE_OVERWRITE, the blast radius is zero ** (that is what POWERSAFE_OVERWRITE means), so we minimize the sector ** size. For backwards compatibility of the rollback journal file format, ** we cannot reduce the effective sector size below 512. */ static void setSectorSize(Pager *pPager){ assert( isOpen(pPager->fd) || pPager->tempFile ); if( pPager->tempFile || (sqlite3OsDeviceCharacteristics(pPager->fd) & SQLITE_IOCAP_POWERSAFE_OVERWRITE)!=0 ){ /* Sector size doesn't matter for temporary files. Also, the file ** may not have been opened yet, in which case the OsSectorSize() ** call will segfault. */ pPager->sectorSize = 512; }else{ pPager->sectorSize = sqlite3SectorSize(pPager->fd); } } /* ** Playback the journal and thus restore the database file to ** the state it was in before we started making changes. ** ** The journal file format is as follows: ** ** (1) 8 byte prefix. A copy of aJournalMagic[]. ** (2) 4 byte big-endian integer which is the number of valid page records ** in the journal. If this value is 0xffffffff, then compute the ** number of page records from the journal size. ** (3) 4 byte big-endian integer which is the initial value for the ** sanity checksum. ** (4) 4 byte integer which is the number of pages to truncate the ** database to during a rollback. ** (5) 4 byte big-endian integer which is the sector size. The header ** is this many bytes in size. ** (6) 4 byte big-endian integer which is the page size. ** (7) zero padding out to the next sector size. ** (8) Zero or more pages instances, each as follows: ** + 4 byte page number. ** + pPager->pageSize bytes of data. ** + 4 byte checksum ** ** When we speak of the journal header, we mean the first 7 items above. ** Each entry in the journal is an instance of the 8th item. ** ** Call the value from the second bullet "nRec". nRec is the number of ** valid page entries in the journal. In most cases, you can compute the ** value of nRec from the size of the journal file. But if a power ** failure occurred while the journal was being written, it could be the ** case that the size of the journal file had already been increased but ** the extra entries had not yet made it safely to disk. In such a case, ** the value of nRec computed from the file size would be too large. For ** that reason, we always use the nRec value in the header. ** ** If the nRec value is 0xffffffff it means that nRec should be computed ** from the file size. This value is used when the user selects the ** no-sync option for the journal. A power failure could lead to corruption ** in this case. But for things like temporary table (which will be ** deleted when the power is restored) we don't care. ** ** If the file opened as the journal file is not a well-formed ** journal file then all pages up to the first corrupted page are rolled ** back (or no pages if the journal header is corrupted). The journal file ** is then deleted and SQLITE_OK returned, just as if no corruption had ** been encountered. ** ** If an I/O or malloc() error occurs, the journal-file is not deleted ** and an error code is returned. ** ** The isHot parameter indicates that we are trying to rollback a journal ** that might be a hot journal. Or, it could be that the journal is ** preserved because of JOURNALMODE_PERSIST or JOURNALMODE_TRUNCATE. ** If the journal really is hot, reset the pager cache prior rolling ** back any content. If the journal is merely persistent, no reset is ** needed. */ static int pager_playback(Pager *pPager, int isHot){ sqlite3_vfs *pVfs = pPager->pVfs; i64 szJ; /* Size of the journal file in bytes */ u32 nRec; /* Number of Records in the journal */ u32 u; /* Unsigned loop counter */ Pgno mxPg = 0; /* Size of the original file in pages */ int rc; /* Result code of a subroutine */ int res = 1; /* Value returned by sqlite3OsAccess() */ char *zSuper = 0; /* Name of super-journal file if any */ int needPagerReset; /* True to reset page prior to first page rollback */ int nPlayback = 0; /* Total number of pages restored from journal */ u32 savedPageSize = pPager->pageSize; /* Figure out how many records are in the journal. Abort early if ** the journal is empty. */ assert( isOpen(pPager->jfd) ); rc = sqlite3OsFileSize(pPager->jfd, &szJ); if( rc!=SQLITE_OK ){ goto end_playback; } /* Read the super-journal name from the journal, if it is present. ** If a super-journal file name is specified, but the file is not ** present on disk, then the journal is not hot and does not need to be ** played back. ** ** TODO: Technically the following is an error because it assumes that ** buffer Pager.pTmpSpace is (mxPathname+1) bytes or larger. i.e. that ** (pPager->pageSize >= pPager->pVfs->mxPathname+1). Using os_unix.c, ** mxPathname is 512, which is the same as the minimum allowable value ** for pageSize. */ zSuper = pPager->pTmpSpace; rc = readSuperJournal(pPager->jfd, zSuper, pPager->pVfs->mxPathname+1); if( rc==SQLITE_OK && zSuper[0] ){ rc = sqlite3OsAccess(pVfs, zSuper, SQLITE_ACCESS_EXISTS, &res); } zSuper = 0; if( rc!=SQLITE_OK || !res ){ goto end_playback; } pPager->journalOff = 0; needPagerReset = isHot; /* This loop terminates either when a readJournalHdr() or ** pager_playback_one_page() call returns SQLITE_DONE or an IO error ** occurs. */ while( 1 ){ /* Read the next journal header from the journal file. If there are ** not enough bytes left in the journal file for a complete header, or ** it is corrupted, then a process must have failed while writing it. ** This indicates nothing more needs to be rolled back. */ rc = readJournalHdr(pPager, isHot, szJ, &nRec, &mxPg); if( rc!=SQLITE_OK ){ if( rc==SQLITE_DONE ){ rc = SQLITE_OK; } goto end_playback; } /* If nRec is 0xffffffff, then this journal was created by a process ** working in no-sync mode. This means that the rest of the journal ** file consists of pages, there are no more journal headers. Compute ** the value of nRec based on this assumption. */ if( nRec==0xffffffff ){ assert( pPager->journalOff==JOURNAL_HDR_SZ(pPager) ); nRec = (int)((szJ - JOURNAL_HDR_SZ(pPager))/JOURNAL_PG_SZ(pPager)); } /* If nRec is 0 and this rollback is of a transaction created by this ** process and if this is the final header in the journal, then it means ** that this part of the journal was being filled but has not yet been ** synced to disk. Compute the number of pages based on the remaining ** size of the file. ** ** The third term of the test was added to fix ticket #2565. ** When rolling back a hot journal, nRec==0 always means that the next ** chunk of the journal contains zero pages to be rolled back. But ** when doing a ROLLBACK and the nRec==0 chunk is the last chunk in ** the journal, it means that the journal might contain additional ** pages that need to be rolled back and that the number of pages ** should be computed based on the journal file size. */ if( nRec==0 && !isHot && pPager->journalHdr+JOURNAL_HDR_SZ(pPager)==pPager->journalOff ){ nRec = (int)((szJ - pPager->journalOff) / JOURNAL_PG_SZ(pPager)); } /* If this is the first header read from the journal, truncate the ** database file back to its original size. */ if( pPager->journalOff==JOURNAL_HDR_SZ(pPager) ){ rc = pager_truncate(pPager, mxPg); if( rc!=SQLITE_OK ){ goto end_playback; } pPager->dbSize = mxPg; } /* Copy original pages out of the journal and back into the ** database file and/or page cache. */ for(u=0; ujournalOff,0,1,0); if( rc==SQLITE_OK ){ nPlayback++; }else{ if( rc==SQLITE_DONE ){ pPager->journalOff = szJ; break; }else if( rc==SQLITE_IOERR_SHORT_READ ){ /* If the journal has been truncated, simply stop reading and ** processing the journal. This might happen if the journal was ** not completely written and synced prior to a crash. In that ** case, the database should have never been written in the ** first place so it is OK to simply abandon the rollback. */ rc = SQLITE_OK; goto end_playback; }else{ /* If we are unable to rollback, quit and return the error ** code. This will cause the pager to enter the error state ** so that no further harm will be done. Perhaps the next ** process to come along will be able to rollback the database. */ goto end_playback; } } } } /*NOTREACHED*/ assert( 0 ); end_playback: if( rc==SQLITE_OK ){ rc = sqlite3PagerSetPagesize(pPager, &savedPageSize, -1); } /* Following a rollback, the database file should be back in its original ** state prior to the start of the transaction, so invoke the ** SQLITE_FCNTL_DB_UNCHANGED file-control method to disable the ** assertion that the transaction counter was modified. */ #ifdef SQLITE_DEBUG sqlite3OsFileControlHint(pPager->fd,SQLITE_FCNTL_DB_UNCHANGED,0); #endif /* If this playback is happening automatically as a result of an IO or ** malloc error that occurred after the change-counter was updated but ** before the transaction was committed, then the change-counter ** modification may just have been reverted. If this happens in exclusive ** mode, then subsequent transactions performed by the connection will not ** update the change-counter at all. This may lead to cache inconsistency ** problems for other processes at some point in the future. So, just ** in case this has happened, clear the changeCountDone flag now. */ pPager->changeCountDone = pPager->tempFile; if( rc==SQLITE_OK ){ zSuper = pPager->pTmpSpace; rc = readSuperJournal(pPager->jfd, zSuper, pPager->pVfs->mxPathname+1); testcase( rc!=SQLITE_OK ); } if( rc==SQLITE_OK && (pPager->eState>=PAGER_WRITER_DBMOD || pPager->eState==PAGER_OPEN) ){ rc = sqlite3PagerSync(pPager, 0); } if( rc==SQLITE_OK ){ rc = pager_end_transaction(pPager, zSuper[0]!='\0', 0); testcase( rc!=SQLITE_OK ); } if( rc==SQLITE_OK && zSuper[0] && res ){ /* If there was a super-journal and this routine will return success, ** see if it is possible to delete the super-journal. */ rc = pager_delsuper(pPager, zSuper); testcase( rc!=SQLITE_OK ); } if( isHot && nPlayback ){ sqlite3_log(SQLITE_NOTICE_RECOVER_ROLLBACK, "recovered %d pages from %s", nPlayback, pPager->zJournal); } /* The Pager.sectorSize variable may have been updated while rolling ** back a journal created by a process with a different sector size ** value. Reset it to the correct value for this process. */ setSectorSize(pPager); return rc; } /* ** Read the content for page pPg out of the database file (or out of ** the WAL if that is where the most recent copy if found) into ** pPg->pData. A shared lock or greater must be held on the database ** file before this function is called. ** ** If page 1 is read, then the value of Pager.dbFileVers[] is set to ** the value read from the database file. ** ** If an IO error occurs, then the IO error is returned to the caller. ** Otherwise, SQLITE_OK is returned. */ static int readDbPage(PgHdr *pPg){ Pager *pPager = pPg->pPager; /* Pager object associated with page pPg */ int rc = SQLITE_OK; /* Return code */ #ifndef SQLITE_OMIT_WAL u32 iFrame = 0; /* Frame of WAL containing pgno */ assert( pPager->eState>=PAGER_READER && !MEMDB ); assert( isOpen(pPager->fd) ); if( pagerUseWal(pPager) ){ rc = sqlite3WalFindFrame(pPager->pWal, pPg->pgno, &iFrame); if( rc ) return rc; } if( iFrame ){ rc = sqlite3WalReadFrame(pPager->pWal, iFrame,pPager->pageSize,pPg->pData); }else #endif { i64 iOffset = (pPg->pgno-1)*(i64)pPager->pageSize; rc = sqlite3OsRead(pPager->fd, pPg->pData, pPager->pageSize, iOffset); if( rc==SQLITE_IOERR_SHORT_READ ){ rc = SQLITE_OK; } } if( pPg->pgno==1 ){ if( rc ){ /* If the read is unsuccessful, set the dbFileVers[] to something ** that will never be a valid file version. dbFileVers[] is a copy ** of bytes 24..39 of the database. Bytes 28..31 should always be ** zero or the size of the database in page. Bytes 32..35 and 35..39 ** should be page numbers which are never 0xffffffff. So filling ** pPager->dbFileVers[] with all 0xff bytes should suffice. ** ** For an encrypted database, the situation is more complex: bytes ** 24..39 of the database are white noise. But the probability of ** white noise equaling 16 bytes of 0xff is vanishingly small so ** we should still be ok. */ memset(pPager->dbFileVers, 0xff, sizeof(pPager->dbFileVers)); }else{ u8 *dbFileVers = &((u8*)pPg->pData)[24]; memcpy(&pPager->dbFileVers, dbFileVers, sizeof(pPager->dbFileVers)); } } PAGER_INCR(sqlite3_pager_readdb_count); PAGER_INCR(pPager->nRead); IOTRACE(("PGIN %p %d\n", pPager, pPg->pgno)); PAGERTRACE(("FETCH %d page %d hash(%08x)\n", PAGERID(pPager), pPg->pgno, pager_pagehash(pPg))); return rc; } /* ** Update the value of the change-counter at offsets 24 and 92 in ** the header and the sqlite version number at offset 96. ** ** This is an unconditional update. See also the pager_incr_changecounter() ** routine which only updates the change-counter if the update is actually ** needed, as determined by the pPager->changeCountDone state variable. */ static void pager_write_changecounter(PgHdr *pPg){ u32 change_counter; /* Increment the value just read and write it back to byte 24. */ change_counter = sqlite3Get4byte((u8*)pPg->pPager->dbFileVers)+1; put32bits(((char*)pPg->pData)+24, change_counter); /* Also store the SQLite version number in bytes 96..99 and in ** bytes 92..95 store the change counter for which the version number ** is valid. */ put32bits(((char*)pPg->pData)+92, change_counter); put32bits(((char*)pPg->pData)+96, SQLITE_VERSION_NUMBER); } #ifndef SQLITE_OMIT_WAL /* ** This function is invoked once for each page that has already been ** written into the log file when a WAL transaction is rolled back. ** Parameter iPg is the page number of said page. The pCtx argument ** is actually a pointer to the Pager structure. ** ** If page iPg is present in the cache, and has no outstanding references, ** it is discarded. Otherwise, if there are one or more outstanding ** references, the page content is reloaded from the database. If the ** attempt to reload content from the database is required and fails, ** return an SQLite error code. Otherwise, SQLITE_OK. */ static int pagerUndoCallback(void *pCtx, Pgno iPg){ int rc = SQLITE_OK; Pager *pPager = (Pager *)pCtx; PgHdr *pPg; assert( pagerUseWal(pPager) ); pPg = sqlite3PagerLookup(pPager, iPg); if( pPg ){ if( sqlite3PcachePageRefcount(pPg)==1 ){ sqlite3PcacheDrop(pPg); }else{ rc = readDbPage(pPg); if( rc==SQLITE_OK ){ pPager->xReiniter(pPg); } sqlite3PagerUnrefNotNull(pPg); } } /* Normally, if a transaction is rolled back, any backup processes are ** updated as data is copied out of the rollback journal and into the ** database. This is not generally possible with a WAL database, as ** rollback involves simply truncating the log file. Therefore, if one ** or more frames have already been written to the log (and therefore ** also copied into the backup databases) as part of this transaction, ** the backups must be restarted. */ sqlite3BackupRestart(pPager->pBackup); return rc; } /* ** This function is called to rollback a transaction on a WAL database. */ static int pagerRollbackWal(Pager *pPager){ int rc; /* Return Code */ PgHdr *pList; /* List of dirty pages to revert */ /* For all pages in the cache that are currently dirty or have already ** been written (but not committed) to the log file, do one of the ** following: ** ** + Discard the cached page (if refcount==0), or ** + Reload page content from the database (if refcount>0). */ pPager->dbSize = pPager->dbOrigSize; rc = sqlite3WalUndo(pPager->pWal, pagerUndoCallback, (void *)pPager); pList = sqlite3PcacheDirtyList(pPager->pPCache); while( pList && rc==SQLITE_OK ){ PgHdr *pNext = pList->pDirty; rc = pagerUndoCallback((void *)pPager, pList->pgno); pList = pNext; } return rc; } /* ** This function is a wrapper around sqlite3WalFrames(). As well as logging ** the contents of the list of pages headed by pList (connected by pDirty), ** this function notifies any active backup processes that the pages have ** changed. ** ** The list of pages passed into this routine is always sorted by page number. ** Hence, if page 1 appears anywhere on the list, it will be the first page. */ static int pagerWalFrames( Pager *pPager, /* Pager object */ PgHdr *pList, /* List of frames to log */ Pgno nTruncate, /* Database size after this commit */ int isCommit /* True if this is a commit */ ){ int rc; /* Return code */ int nList; /* Number of pages in pList */ PgHdr *p; /* For looping over pages */ assert( pPager->pWal ); assert( pList ); #ifdef SQLITE_DEBUG /* Verify that the page list is in accending order */ for(p=pList; p && p->pDirty; p=p->pDirty){ assert( p->pgno < p->pDirty->pgno ); } #endif assert( pList->pDirty==0 || isCommit ); if( isCommit ){ /* If a WAL transaction is being committed, there is no point in writing ** any pages with page numbers greater than nTruncate into the WAL file. ** They will never be read by any client. So remove them from the pDirty ** list here. */ PgHdr **ppNext = &pList; nList = 0; for(p=pList; (*ppNext = p)!=0; p=p->pDirty){ if( p->pgno<=nTruncate ){ ppNext = &p->pDirty; nList++; } } assert( pList ); }else{ nList = 1; } pPager->aStat[PAGER_STAT_WRITE] += nList; if( pList->pgno==1 ) pager_write_changecounter(pList); rc = sqlite3WalFrames(pPager->pWal, pPager->pageSize, pList, nTruncate, isCommit, pPager->walSyncFlags ); if( rc==SQLITE_OK && pPager->pBackup ){ for(p=pList; p; p=p->pDirty){ sqlite3BackupUpdate(pPager->pBackup, p->pgno, (u8 *)p->pData); } } #ifdef SQLITE_CHECK_PAGES pList = sqlite3PcacheDirtyList(pPager->pPCache); for(p=pList; p; p=p->pDirty){ pager_set_pagehash(p); } #endif return rc; } /* ** Begin a read transaction on the WAL. ** ** This routine used to be called "pagerOpenSnapshot()" because it essentially ** makes a snapshot of the database at the current point in time and preserves ** that snapshot for use by the reader in spite of concurrently changes by ** other writers or checkpointers. */ static int pagerBeginReadTransaction(Pager *pPager){ int rc; /* Return code */ int changed = 0; /* True if cache must be reset */ assert( pagerUseWal(pPager) ); assert( pPager->eState==PAGER_OPEN || pPager->eState==PAGER_READER ); /* sqlite3WalEndReadTransaction() was not called for the previous ** transaction in locking_mode=EXCLUSIVE. So call it now. If we ** are in locking_mode=NORMAL and EndRead() was previously called, ** the duplicate call is harmless. */ sqlite3WalEndReadTransaction(pPager->pWal); rc = sqlite3WalBeginReadTransaction(pPager->pWal, &changed); if( rc!=SQLITE_OK || changed ){ pager_reset(pPager); if( USEFETCH(pPager) ) sqlite3OsUnfetch(pPager->fd, 0, 0); } return rc; } #endif /* ** This function is called as part of the transition from PAGER_OPEN ** to PAGER_READER state to determine the size of the database file ** in pages (assuming the page size currently stored in Pager.pageSize). ** ** If no error occurs, SQLITE_OK is returned and the size of the database ** in pages is stored in *pnPage. Otherwise, an error code (perhaps ** SQLITE_IOERR_FSTAT) is returned and *pnPage is left unmodified. */ static int pagerPagecount(Pager *pPager, Pgno *pnPage){ Pgno nPage; /* Value to return via *pnPage */ /* Query the WAL sub-system for the database size. The WalDbsize() ** function returns zero if the WAL is not open (i.e. Pager.pWal==0), or ** if the database size is not available. The database size is not ** available from the WAL sub-system if the log file is empty or ** contains no valid committed transactions. */ assert( pPager->eState==PAGER_OPEN ); assert( pPager->eLock>=SHARED_LOCK ); assert( isOpen(pPager->fd) ); assert( pPager->tempFile==0 ); nPage = sqlite3WalDbsize(pPager->pWal); /* If the number of pages in the database is not available from the ** WAL sub-system, determine the page count based on the size of ** the database file. If the size of the database file is not an ** integer multiple of the page-size, round up the result. */ if( nPage==0 && ALWAYS(isOpen(pPager->fd)) ){ i64 n = 0; /* Size of db file in bytes */ int rc = sqlite3OsFileSize(pPager->fd, &n); if( rc!=SQLITE_OK ){ return rc; } nPage = (Pgno)((n+pPager->pageSize-1) / pPager->pageSize); } /* If the current number of pages in the file is greater than the ** configured maximum pager number, increase the allowed limit so ** that the file can be read. */ if( nPage>pPager->mxPgno ){ pPager->mxPgno = (Pgno)nPage; } *pnPage = nPage; return SQLITE_OK; } #ifndef SQLITE_OMIT_WAL /* ** Check if the *-wal file that corresponds to the database opened by pPager ** exists if the database is not empy, or verify that the *-wal file does ** not exist (by deleting it) if the database file is empty. ** ** If the database is not empty and the *-wal file exists, open the pager ** in WAL mode. If the database is empty or if no *-wal file exists and ** if no error occurs, make sure Pager.journalMode is not set to ** PAGER_JOURNALMODE_WAL. ** ** Return SQLITE_OK or an error code. ** ** The caller must hold a SHARED lock on the database file to call this ** function. Because an EXCLUSIVE lock on the db file is required to delete ** a WAL on a none-empty database, this ensures there is no race condition ** between the xAccess() below and an xDelete() being executed by some ** other connection. */ static int pagerOpenWalIfPresent(Pager *pPager){ int rc = SQLITE_OK; assert( pPager->eState==PAGER_OPEN ); assert( pPager->eLock>=SHARED_LOCK ); if( !pPager->tempFile ){ int isWal; /* True if WAL file exists */ rc = sqlite3OsAccess( pPager->pVfs, pPager->zWal, SQLITE_ACCESS_EXISTS, &isWal ); if( rc==SQLITE_OK ){ if( isWal ){ Pgno nPage; /* Size of the database file */ rc = pagerPagecount(pPager, &nPage); if( rc ) return rc; if( nPage==0 ){ rc = sqlite3OsDelete(pPager->pVfs, pPager->zWal, 0); }else{ testcase( sqlite3PcachePagecount(pPager->pPCache)==0 ); rc = sqlite3PagerOpenWal(pPager, 0); } }else if( pPager->journalMode==PAGER_JOURNALMODE_WAL ){ pPager->journalMode = PAGER_JOURNALMODE_DELETE; } } } return rc; } #endif /* ** Playback savepoint pSavepoint. Or, if pSavepoint==NULL, then playback ** the entire super-journal file. The case pSavepoint==NULL occurs when ** a ROLLBACK TO command is invoked on a SAVEPOINT that is a transaction ** savepoint. ** ** When pSavepoint is not NULL (meaning a non-transaction savepoint is ** being rolled back), then the rollback consists of up to three stages, ** performed in the order specified: ** ** * Pages are played back from the main journal starting at byte ** offset PagerSavepoint.iOffset and continuing to ** PagerSavepoint.iHdrOffset, or to the end of the main journal ** file if PagerSavepoint.iHdrOffset is zero. ** ** * If PagerSavepoint.iHdrOffset is not zero, then pages are played ** back starting from the journal header immediately following ** PagerSavepoint.iHdrOffset to the end of the main journal file. ** ** * Pages are then played back from the sub-journal file, starting ** with the PagerSavepoint.iSubRec and continuing to the end of ** the journal file. ** ** Throughout the rollback process, each time a page is rolled back, the ** corresponding bit is set in a bitvec structure (variable pDone in the ** implementation below). This is used to ensure that a page is only ** rolled back the first time it is encountered in either journal. ** ** If pSavepoint is NULL, then pages are only played back from the main ** journal file. There is no need for a bitvec in this case. ** ** In either case, before playback commences the Pager.dbSize variable ** is reset to the value that it held at the start of the savepoint ** (or transaction). No page with a page-number greater than this value ** is played back. If one is encountered it is simply skipped. */ static int pagerPlaybackSavepoint(Pager *pPager, PagerSavepoint *pSavepoint){ i64 szJ; /* Effective size of the main journal */ i64 iHdrOff; /* End of first segment of main-journal records */ int rc = SQLITE_OK; /* Return code */ Bitvec *pDone = 0; /* Bitvec to ensure pages played back only once */ assert( pPager->eState!=PAGER_ERROR ); assert( pPager->eState>=PAGER_WRITER_LOCKED ); /* Allocate a bitvec to use to store the set of pages rolled back */ if( pSavepoint ){ pDone = sqlite3BitvecCreate(pSavepoint->nOrig); if( !pDone ){ return SQLITE_NOMEM_BKPT; } } /* Set the database size back to the value it was before the savepoint ** being reverted was opened. */ pPager->dbSize = pSavepoint ? pSavepoint->nOrig : pPager->dbOrigSize; pPager->changeCountDone = pPager->tempFile; if( !pSavepoint && pagerUseWal(pPager) ){ return pagerRollbackWal(pPager); } /* Use pPager->journalOff as the effective size of the main rollback ** journal. The actual file might be larger than this in ** PAGER_JOURNALMODE_TRUNCATE or PAGER_JOURNALMODE_PERSIST. But anything ** past pPager->journalOff is off-limits to us. */ szJ = pPager->journalOff; assert( pagerUseWal(pPager)==0 || szJ==0 ); /* Begin by rolling back records from the main journal starting at ** PagerSavepoint.iOffset and continuing to the next journal header. ** There might be records in the main journal that have a page number ** greater than the current database size (pPager->dbSize) but those ** will be skipped automatically. Pages are added to pDone as they ** are played back. */ if( pSavepoint && !pagerUseWal(pPager) ){ iHdrOff = pSavepoint->iHdrOffset ? pSavepoint->iHdrOffset : szJ; pPager->journalOff = pSavepoint->iOffset; while( rc==SQLITE_OK && pPager->journalOffjournalOff, pDone, 1, 1); } assert( rc!=SQLITE_DONE ); }else{ pPager->journalOff = 0; } /* Continue rolling back records out of the main journal starting at ** the first journal header seen and continuing until the effective end ** of the main journal file. Continue to skip out-of-range pages and ** continue adding pages rolled back to pDone. */ while( rc==SQLITE_OK && pPager->journalOffjournalHdr+JOURNAL_HDR_SZ(pPager)==pPager->journalOff" ** test is related to ticket #2565. See the discussion in the ** pager_playback() function for additional information. */ if( nJRec==0 && pPager->journalHdr+JOURNAL_HDR_SZ(pPager)==pPager->journalOff ){ nJRec = (u32)((szJ - pPager->journalOff)/JOURNAL_PG_SZ(pPager)); } for(ii=0; rc==SQLITE_OK && iijournalOffjournalOff, pDone, 1, 1); } assert( rc!=SQLITE_DONE ); } assert( rc!=SQLITE_OK || pPager->journalOff>=szJ ); /* Finally, rollback pages from the sub-journal. Page that were ** previously rolled back out of the main journal (and are hence in pDone) ** will be skipped. Out-of-range pages are also skipped. */ if( pSavepoint ){ u32 ii; /* Loop counter */ i64 offset = (i64)pSavepoint->iSubRec*(4+pPager->pageSize); if( pagerUseWal(pPager) ){ rc = sqlite3WalSavepointUndo(pPager->pWal, pSavepoint->aWalData); } for(ii=pSavepoint->iSubRec; rc==SQLITE_OK && iinSubRec; ii++){ assert( offset==(i64)ii*(4+pPager->pageSize) ); rc = pager_playback_one_page(pPager, &offset, pDone, 0, 1); } assert( rc!=SQLITE_DONE ); } sqlite3BitvecDestroy(pDone); if( rc==SQLITE_OK ){ pPager->journalOff = szJ; } return rc; } /* ** Change the maximum number of in-memory pages that are allowed ** before attempting to recycle clean and unused pages. */ SQLITE_PRIVATE void sqlite3PagerSetCachesize(Pager *pPager, int mxPage){ sqlite3PcacheSetCachesize(pPager->pPCache, mxPage); } /* ** Change the maximum number of in-memory pages that are allowed ** before attempting to spill pages to journal. */ SQLITE_PRIVATE int sqlite3PagerSetSpillsize(Pager *pPager, int mxPage){ return sqlite3PcacheSetSpillsize(pPager->pPCache, mxPage); } /* ** Invoke SQLITE_FCNTL_MMAP_SIZE based on the current value of szMmap. */ static void pagerFixMaplimit(Pager *pPager){ #if SQLITE_MAX_MMAP_SIZE>0 sqlite3_file *fd = pPager->fd; if( isOpen(fd) && fd->pMethods->iVersion>=3 ){ sqlite3_int64 sz; sz = pPager->szMmap; pPager->bUseFetch = (sz>0); setGetterMethod(pPager); sqlite3OsFileControlHint(pPager->fd, SQLITE_FCNTL_MMAP_SIZE, &sz); } #endif } /* ** Change the maximum size of any memory mapping made of the database file. */ SQLITE_PRIVATE void sqlite3PagerSetMmapLimit(Pager *pPager, sqlite3_int64 szMmap){ pPager->szMmap = szMmap; pagerFixMaplimit(pPager); } /* ** Free as much memory as possible from the pager. */ SQLITE_PRIVATE void sqlite3PagerShrink(Pager *pPager){ sqlite3PcacheShrink(pPager->pPCache); } /* ** Adjust settings of the pager to those specified in the pgFlags parameter. ** ** The "level" in pgFlags & PAGER_SYNCHRONOUS_MASK sets the robustness ** of the database to damage due to OS crashes or power failures by ** changing the number of syncs()s when writing the journals. ** There are four levels: ** ** OFF sqlite3OsSync() is never called. This is the default ** for temporary and transient files. ** ** NORMAL The journal is synced once before writes begin on the ** database. This is normally adequate protection, but ** it is theoretically possible, though very unlikely, ** that an inopertune power failure could leave the journal ** in a state which would cause damage to the database ** when it is rolled back. ** ** FULL The journal is synced twice before writes begin on the ** database (with some additional information - the nRec field ** of the journal header - being written in between the two ** syncs). If we assume that writing a ** single disk sector is atomic, then this mode provides ** assurance that the journal will not be corrupted to the ** point of causing damage to the database during rollback. ** ** EXTRA This is like FULL except that is also syncs the directory ** that contains the rollback journal after the rollback ** journal is unlinked. ** ** The above is for a rollback-journal mode. For WAL mode, OFF continues ** to mean that no syncs ever occur. NORMAL means that the WAL is synced ** prior to the start of checkpoint and that the database file is synced ** at the conclusion of the checkpoint if the entire content of the WAL ** was written back into the database. But no sync operations occur for ** an ordinary commit in NORMAL mode with WAL. FULL means that the WAL ** file is synced following each commit operation, in addition to the ** syncs associated with NORMAL. There is no difference between FULL ** and EXTRA for WAL mode. ** ** Do not confuse synchronous=FULL with SQLITE_SYNC_FULL. The ** SQLITE_SYNC_FULL macro means to use the MacOSX-style full-fsync ** using fcntl(F_FULLFSYNC). SQLITE_SYNC_NORMAL means to do an ** ordinary fsync() call. There is no difference between SQLITE_SYNC_FULL ** and SQLITE_SYNC_NORMAL on platforms other than MacOSX. But the ** synchronous=FULL versus synchronous=NORMAL setting determines when ** the xSync primitive is called and is relevant to all platforms. ** ** Numeric values associated with these states are OFF==1, NORMAL=2, ** and FULL=3. */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS SQLITE_PRIVATE void sqlite3PagerSetFlags( Pager *pPager, /* The pager to set safety level for */ unsigned pgFlags /* Various flags */ ){ unsigned level = pgFlags & PAGER_SYNCHRONOUS_MASK; if( pPager->tempFile ){ pPager->noSync = 1; pPager->fullSync = 0; pPager->extraSync = 0; }else{ pPager->noSync = level==PAGER_SYNCHRONOUS_OFF ?1:0; pPager->fullSync = level>=PAGER_SYNCHRONOUS_FULL ?1:0; pPager->extraSync = level==PAGER_SYNCHRONOUS_EXTRA ?1:0; } if( pPager->noSync ){ pPager->syncFlags = 0; }else if( pgFlags & PAGER_FULLFSYNC ){ pPager->syncFlags = SQLITE_SYNC_FULL; }else{ pPager->syncFlags = SQLITE_SYNC_NORMAL; } pPager->walSyncFlags = (pPager->syncFlags<<2); if( pPager->fullSync ){ pPager->walSyncFlags |= pPager->syncFlags; } if( (pgFlags & PAGER_CKPT_FULLFSYNC) && !pPager->noSync ){ pPager->walSyncFlags |= (SQLITE_SYNC_FULL<<2); } if( pgFlags & PAGER_CACHESPILL ){ pPager->doNotSpill &= ~SPILLFLAG_OFF; }else{ pPager->doNotSpill |= SPILLFLAG_OFF; } } #endif /* ** The following global variable is incremented whenever the library ** attempts to open a temporary file. This information is used for ** testing and analysis only. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_opentemp_count = 0; #endif /* ** Open a temporary file. ** ** Write the file descriptor into *pFile. Return SQLITE_OK on success ** or some other error code if we fail. The OS will automatically ** delete the temporary file when it is closed. ** ** The flags passed to the VFS layer xOpen() call are those specified ** by parameter vfsFlags ORed with the following: ** ** SQLITE_OPEN_READWRITE ** SQLITE_OPEN_CREATE ** SQLITE_OPEN_EXCLUSIVE ** SQLITE_OPEN_DELETEONCLOSE */ static int pagerOpentemp( Pager *pPager, /* The pager object */ sqlite3_file *pFile, /* Write the file descriptor here */ int vfsFlags /* Flags passed through to the VFS */ ){ int rc; /* Return code */ #ifdef SQLITE_TEST sqlite3_opentemp_count++; /* Used for testing and analysis only */ #endif vfsFlags |= SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE; rc = sqlite3OsOpen(pPager->pVfs, 0, pFile, vfsFlags, 0); assert( rc!=SQLITE_OK || isOpen(pFile) ); return rc; } /* ** Set the busy handler function. ** ** The pager invokes the busy-handler if sqlite3OsLock() returns ** SQLITE_BUSY when trying to upgrade from no-lock to a SHARED lock, ** or when trying to upgrade from a RESERVED lock to an EXCLUSIVE ** lock. It does *not* invoke the busy handler when upgrading from ** SHARED to RESERVED, or when upgrading from SHARED to EXCLUSIVE ** (which occurs during hot-journal rollback). Summary: ** ** Transition | Invokes xBusyHandler ** -------------------------------------------------------- ** NO_LOCK -> SHARED_LOCK | Yes ** SHARED_LOCK -> RESERVED_LOCK | No ** SHARED_LOCK -> EXCLUSIVE_LOCK | No ** RESERVED_LOCK -> EXCLUSIVE_LOCK | Yes ** ** If the busy-handler callback returns non-zero, the lock is ** retried. If it returns zero, then the SQLITE_BUSY error is ** returned to the caller of the pager API function. */ SQLITE_PRIVATE void sqlite3PagerSetBusyHandler( Pager *pPager, /* Pager object */ int (*xBusyHandler)(void *), /* Pointer to busy-handler function */ void *pBusyHandlerArg /* Argument to pass to xBusyHandler */ ){ void **ap; pPager->xBusyHandler = xBusyHandler; pPager->pBusyHandlerArg = pBusyHandlerArg; ap = (void **)&pPager->xBusyHandler; assert( ((int(*)(void *))(ap[0]))==xBusyHandler ); assert( ap[1]==pBusyHandlerArg ); sqlite3OsFileControlHint(pPager->fd, SQLITE_FCNTL_BUSYHANDLER, (void *)ap); } /* ** Change the page size used by the Pager object. The new page size ** is passed in *pPageSize. ** ** If the pager is in the error state when this function is called, it ** is a no-op. The value returned is the error state error code (i.e. ** one of SQLITE_IOERR, an SQLITE_IOERR_xxx sub-code or SQLITE_FULL). ** ** Otherwise, if all of the following are true: ** ** * the new page size (value of *pPageSize) is valid (a power ** of two between 512 and SQLITE_MAX_PAGE_SIZE, inclusive), and ** ** * there are no outstanding page references, and ** ** * the database is either not an in-memory database or it is ** an in-memory database that currently consists of zero pages. ** ** then the pager object page size is set to *pPageSize. ** ** If the page size is changed, then this function uses sqlite3PagerMalloc() ** to obtain a new Pager.pTmpSpace buffer. If this allocation attempt ** fails, SQLITE_NOMEM is returned and the page size remains unchanged. ** In all other cases, SQLITE_OK is returned. ** ** If the page size is not changed, either because one of the enumerated ** conditions above is not true, the pager was in error state when this ** function was called, or because the memory allocation attempt failed, ** then *pPageSize is set to the old, retained page size before returning. */ SQLITE_PRIVATE int sqlite3PagerSetPagesize(Pager *pPager, u32 *pPageSize, int nReserve){ int rc = SQLITE_OK; /* It is not possible to do a full assert_pager_state() here, as this ** function may be called from within PagerOpen(), before the state ** of the Pager object is internally consistent. ** ** At one point this function returned an error if the pager was in ** PAGER_ERROR state. But since PAGER_ERROR state guarantees that ** there is at least one outstanding page reference, this function ** is a no-op for that case anyhow. */ u32 pageSize = *pPageSize; assert( pageSize==0 || (pageSize>=512 && pageSize<=SQLITE_MAX_PAGE_SIZE) ); if( (pPager->memDb==0 || pPager->dbSize==0) && sqlite3PcacheRefCount(pPager->pPCache)==0 && pageSize && pageSize!=(u32)pPager->pageSize ){ char *pNew = NULL; /* New temp space */ i64 nByte = 0; if( pPager->eState>PAGER_OPEN && isOpen(pPager->fd) ){ rc = sqlite3OsFileSize(pPager->fd, &nByte); } if( rc==SQLITE_OK ){ /* 8 bytes of zeroed overrun space is sufficient so that the b-tree * cell header parser will never run off the end of the allocation */ pNew = (char *)sqlite3PageMalloc(pageSize+8); if( !pNew ){ rc = SQLITE_NOMEM_BKPT; }else{ memset(pNew+pageSize, 0, 8); } } if( rc==SQLITE_OK ){ pager_reset(pPager); rc = sqlite3PcacheSetPageSize(pPager->pPCache, pageSize); } if( rc==SQLITE_OK ){ sqlite3PageFree(pPager->pTmpSpace); pPager->pTmpSpace = pNew; pPager->dbSize = (Pgno)((nByte+pageSize-1)/pageSize); pPager->pageSize = pageSize; }else{ sqlite3PageFree(pNew); } } *pPageSize = pPager->pageSize; if( rc==SQLITE_OK ){ if( nReserve<0 ) nReserve = pPager->nReserve; assert( nReserve>=0 && nReserve<1000 ); pPager->nReserve = (i16)nReserve; pagerFixMaplimit(pPager); } return rc; } /* ** Return a pointer to the "temporary page" buffer held internally ** by the pager. This is a buffer that is big enough to hold the ** entire content of a database page. This buffer is used internally ** during rollback and will be overwritten whenever a rollback ** occurs. But other modules are free to use it too, as long as ** no rollbacks are happening. */ SQLITE_PRIVATE void *sqlite3PagerTempSpace(Pager *pPager){ return pPager->pTmpSpace; } /* ** Attempt to set the maximum database page count if mxPage is positive. ** Make no changes if mxPage is zero or negative. And never reduce the ** maximum page count below the current size of the database. ** ** Regardless of mxPage, return the current maximum page count. */ SQLITE_PRIVATE Pgno sqlite3PagerMaxPageCount(Pager *pPager, Pgno mxPage){ if( mxPage>0 ){ pPager->mxPgno = mxPage; } assert( pPager->eState!=PAGER_OPEN ); /* Called only by OP_MaxPgcnt */ /* assert( pPager->mxPgno>=pPager->dbSize ); */ /* OP_MaxPgcnt ensures that the parameter passed to this function is not ** less than the total number of valid pages in the database. But this ** may be less than Pager.dbSize, and so the assert() above is not valid */ return pPager->mxPgno; } /* ** The following set of routines are used to disable the simulated ** I/O error mechanism. These routines are used to avoid simulated ** errors in places where we do not care about errors. ** ** Unless -DSQLITE_TEST=1 is used, these routines are all no-ops ** and generate no code. */ #ifdef SQLITE_TEST SQLITE_API extern int sqlite3_io_error_pending; SQLITE_API extern int sqlite3_io_error_hit; static int saved_cnt; void disable_simulated_io_errors(void){ saved_cnt = sqlite3_io_error_pending; sqlite3_io_error_pending = -1; } void enable_simulated_io_errors(void){ sqlite3_io_error_pending = saved_cnt; } #else # define disable_simulated_io_errors() # define enable_simulated_io_errors() #endif /* ** Read the first N bytes from the beginning of the file into memory ** that pDest points to. ** ** If the pager was opened on a transient file (zFilename==""), or ** opened on a file less than N bytes in size, the output buffer is ** zeroed and SQLITE_OK returned. The rationale for this is that this ** function is used to read database headers, and a new transient or ** zero sized database has a header than consists entirely of zeroes. ** ** If any IO error apart from SQLITE_IOERR_SHORT_READ is encountered, ** the error code is returned to the caller and the contents of the ** output buffer undefined. */ SQLITE_PRIVATE int sqlite3PagerReadFileheader(Pager *pPager, int N, unsigned char *pDest){ int rc = SQLITE_OK; memset(pDest, 0, N); assert( isOpen(pPager->fd) || pPager->tempFile ); /* This routine is only called by btree immediately after creating ** the Pager object. There has not been an opportunity to transition ** to WAL mode yet. */ assert( !pagerUseWal(pPager) ); if( isOpen(pPager->fd) ){ IOTRACE(("DBHDR %p 0 %d\n", pPager, N)) rc = sqlite3OsRead(pPager->fd, pDest, N, 0); if( rc==SQLITE_IOERR_SHORT_READ ){ rc = SQLITE_OK; } } return rc; } /* ** This function may only be called when a read-transaction is open on ** the pager. It returns the total number of pages in the database. ** ** However, if the file is between 1 and bytes in size, then ** this is considered a 1 page file. */ SQLITE_PRIVATE void sqlite3PagerPagecount(Pager *pPager, int *pnPage){ assert( pPager->eState>=PAGER_READER ); assert( pPager->eState!=PAGER_WRITER_FINISHED ); *pnPage = (int)pPager->dbSize; } /* ** Try to obtain a lock of type locktype on the database file. If ** a similar or greater lock is already held, this function is a no-op ** (returning SQLITE_OK immediately). ** ** Otherwise, attempt to obtain the lock using sqlite3OsLock(). Invoke ** the busy callback if the lock is currently not available. Repeat ** until the busy callback returns false or until the attempt to ** obtain the lock succeeds. ** ** Return SQLITE_OK on success and an error code if we cannot obtain ** the lock. If the lock is obtained successfully, set the Pager.state ** variable to locktype before returning. */ static int pager_wait_on_lock(Pager *pPager, int locktype){ int rc; /* Return code */ /* Check that this is either a no-op (because the requested lock is ** already held), or one of the transitions that the busy-handler ** may be invoked during, according to the comment above ** sqlite3PagerSetBusyhandler(). */ assert( (pPager->eLock>=locktype) || (pPager->eLock==NO_LOCK && locktype==SHARED_LOCK) || (pPager->eLock==RESERVED_LOCK && locktype==EXCLUSIVE_LOCK) ); do { rc = pagerLockDb(pPager, locktype); }while( rc==SQLITE_BUSY && pPager->xBusyHandler(pPager->pBusyHandlerArg) ); return rc; } /* ** Function assertTruncateConstraint(pPager) checks that one of the ** following is true for all dirty pages currently in the page-cache: ** ** a) The page number is less than or equal to the size of the ** current database image, in pages, OR ** ** b) if the page content were written at this time, it would not ** be necessary to write the current content out to the sub-journal ** (as determined by function subjRequiresPage()). ** ** If the condition asserted by this function were not true, and the ** dirty page were to be discarded from the cache via the pagerStress() ** routine, pagerStress() would not write the current page content to ** the database file. If a savepoint transaction were rolled back after ** this happened, the correct behavior would be to restore the current ** content of the page. However, since this content is not present in either ** the database file or the portion of the rollback journal and ** sub-journal rolled back the content could not be restored and the ** database image would become corrupt. It is therefore fortunate that ** this circumstance cannot arise. */ #if defined(SQLITE_DEBUG) static void assertTruncateConstraintCb(PgHdr *pPg){ assert( pPg->flags&PGHDR_DIRTY ); assert( !subjRequiresPage(pPg) || pPg->pgno<=pPg->pPager->dbSize ); } static void assertTruncateConstraint(Pager *pPager){ sqlite3PcacheIterateDirty(pPager->pPCache, assertTruncateConstraintCb); } #else # define assertTruncateConstraint(pPager) #endif /* ** Truncate the in-memory database file image to nPage pages. This ** function does not actually modify the database file on disk. It ** just sets the internal state of the pager object so that the ** truncation will be done when the current transaction is committed. ** ** This function is only called right before committing a transaction. ** Once this function has been called, the transaction must either be ** rolled back or committed. It is not safe to call this function and ** then continue writing to the database. */ SQLITE_PRIVATE void sqlite3PagerTruncateImage(Pager *pPager, Pgno nPage){ assert( pPager->dbSize>=nPage ); assert( pPager->eState>=PAGER_WRITER_CACHEMOD ); pPager->dbSize = nPage; /* At one point the code here called assertTruncateConstraint() to ** ensure that all pages being truncated away by this operation are, ** if one or more savepoints are open, present in the savepoint ** journal so that they can be restored if the savepoint is rolled ** back. This is no longer necessary as this function is now only ** called right before committing a transaction. So although the ** Pager object may still have open savepoints (Pager.nSavepoint!=0), ** they cannot be rolled back. So the assertTruncateConstraint() call ** is no longer correct. */ } /* ** This function is called before attempting a hot-journal rollback. It ** syncs the journal file to disk, then sets pPager->journalHdr to the ** size of the journal file so that the pager_playback() routine knows ** that the entire journal file has been synced. ** ** Syncing a hot-journal to disk before attempting to roll it back ensures ** that if a power-failure occurs during the rollback, the process that ** attempts rollback following system recovery sees the same journal ** content as this process. ** ** If everything goes as planned, SQLITE_OK is returned. Otherwise, ** an SQLite error code. */ static int pagerSyncHotJournal(Pager *pPager){ int rc = SQLITE_OK; if( !pPager->noSync ){ rc = sqlite3OsSync(pPager->jfd, SQLITE_SYNC_NORMAL); } if( rc==SQLITE_OK ){ rc = sqlite3OsFileSize(pPager->jfd, &pPager->journalHdr); } return rc; } #if SQLITE_MAX_MMAP_SIZE>0 /* ** Obtain a reference to a memory mapped page object for page number pgno. ** The new object will use the pointer pData, obtained from xFetch(). ** If successful, set *ppPage to point to the new page reference ** and return SQLITE_OK. Otherwise, return an SQLite error code and set ** *ppPage to zero. ** ** Page references obtained by calling this function should be released ** by calling pagerReleaseMapPage(). */ static int pagerAcquireMapPage( Pager *pPager, /* Pager object */ Pgno pgno, /* Page number */ void *pData, /* xFetch()'d data for this page */ PgHdr **ppPage /* OUT: Acquired page object */ ){ PgHdr *p; /* Memory mapped page to return */ if( pPager->pMmapFreelist ){ *ppPage = p = pPager->pMmapFreelist; pPager->pMmapFreelist = p->pDirty; p->pDirty = 0; assert( pPager->nExtra>=8 ); memset(p->pExtra, 0, 8); }else{ *ppPage = p = (PgHdr *)sqlite3MallocZero(sizeof(PgHdr) + pPager->nExtra); if( p==0 ){ sqlite3OsUnfetch(pPager->fd, (i64)(pgno-1) * pPager->pageSize, pData); return SQLITE_NOMEM_BKPT; } p->pExtra = (void *)&p[1]; p->flags = PGHDR_MMAP; p->nRef = 1; p->pPager = pPager; } assert( p->pExtra==(void *)&p[1] ); assert( p->pPage==0 ); assert( p->flags==PGHDR_MMAP ); assert( p->pPager==pPager ); assert( p->nRef==1 ); p->pgno = pgno; p->pData = pData; pPager->nMmapOut++; return SQLITE_OK; } #endif /* ** Release a reference to page pPg. pPg must have been returned by an ** earlier call to pagerAcquireMapPage(). */ static void pagerReleaseMapPage(PgHdr *pPg){ Pager *pPager = pPg->pPager; pPager->nMmapOut--; pPg->pDirty = pPager->pMmapFreelist; pPager->pMmapFreelist = pPg; assert( pPager->fd->pMethods->iVersion>=3 ); sqlite3OsUnfetch(pPager->fd, (i64)(pPg->pgno-1)*pPager->pageSize, pPg->pData); } /* ** Free all PgHdr objects stored in the Pager.pMmapFreelist list. */ static void pagerFreeMapHdrs(Pager *pPager){ PgHdr *p; PgHdr *pNext; for(p=pPager->pMmapFreelist; p; p=pNext){ pNext = p->pDirty; sqlite3_free(p); } } /* Verify that the database file has not be deleted or renamed out from ** under the pager. Return SQLITE_OK if the database is still where it ought ** to be on disk. Return non-zero (SQLITE_READONLY_DBMOVED or some other error ** code from sqlite3OsAccess()) if the database has gone missing. */ static int databaseIsUnmoved(Pager *pPager){ int bHasMoved = 0; int rc; if( pPager->tempFile ) return SQLITE_OK; if( pPager->dbSize==0 ) return SQLITE_OK; assert( pPager->zFilename && pPager->zFilename[0] ); rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_HAS_MOVED, &bHasMoved); if( rc==SQLITE_NOTFOUND ){ /* If the HAS_MOVED file-control is unimplemented, assume that the file ** has not been moved. That is the historical behavior of SQLite: prior to ** version 3.8.3, it never checked */ rc = SQLITE_OK; }else if( rc==SQLITE_OK && bHasMoved ){ rc = SQLITE_READONLY_DBMOVED; } return rc; } /* ** Shutdown the page cache. Free all memory and close all files. ** ** If a transaction was in progress when this routine is called, that ** transaction is rolled back. All outstanding pages are invalidated ** and their memory is freed. Any attempt to use a page associated ** with this page cache after this function returns will likely ** result in a coredump. ** ** This function always succeeds. If a transaction is active an attempt ** is made to roll it back. If an error occurs during the rollback ** a hot journal may be left in the filesystem but no error is returned ** to the caller. */ SQLITE_PRIVATE int sqlite3PagerClose(Pager *pPager, sqlite3 *db){ u8 *pTmp = (u8*)pPager->pTmpSpace; assert( db || pagerUseWal(pPager)==0 ); assert( assert_pager_state(pPager) ); disable_simulated_io_errors(); sqlite3BeginBenignMalloc(); pagerFreeMapHdrs(pPager); /* pPager->errCode = 0; */ pPager->exclusiveMode = 0; #ifndef SQLITE_OMIT_WAL { u8 *a = 0; assert( db || pPager->pWal==0 ); if( db && 0==(db->flags & SQLITE_NoCkptOnClose) && SQLITE_OK==databaseIsUnmoved(pPager) ){ a = pTmp; } sqlite3WalClose(pPager->pWal, db, pPager->walSyncFlags, pPager->pageSize,a); pPager->pWal = 0; } #endif pager_reset(pPager); if( MEMDB ){ pager_unlock(pPager); }else{ /* If it is open, sync the journal file before calling UnlockAndRollback. ** If this is not done, then an unsynced portion of the open journal ** file may be played back into the database. If a power failure occurs ** while this is happening, the database could become corrupt. ** ** If an error occurs while trying to sync the journal, shift the pager ** into the ERROR state. This causes UnlockAndRollback to unlock the ** database and close the journal file without attempting to roll it ** back or finalize it. The next database user will have to do hot-journal ** rollback before accessing the database file. */ if( isOpen(pPager->jfd) ){ pager_error(pPager, pagerSyncHotJournal(pPager)); } pagerUnlockAndRollback(pPager); } sqlite3EndBenignMalloc(); enable_simulated_io_errors(); PAGERTRACE(("CLOSE %d\n", PAGERID(pPager))); IOTRACE(("CLOSE %p\n", pPager)) sqlite3OsClose(pPager->jfd); sqlite3OsClose(pPager->fd); sqlite3PageFree(pTmp); sqlite3PcacheClose(pPager->pPCache); assert( !pPager->aSavepoint && !pPager->pInJournal ); assert( !isOpen(pPager->jfd) && !isOpen(pPager->sjfd) ); sqlite3_free(pPager); return SQLITE_OK; } #if !defined(NDEBUG) || defined(SQLITE_TEST) /* ** Return the page number for page pPg. */ SQLITE_PRIVATE Pgno sqlite3PagerPagenumber(DbPage *pPg){ return pPg->pgno; } #endif /* ** Increment the reference count for page pPg. */ SQLITE_PRIVATE void sqlite3PagerRef(DbPage *pPg){ sqlite3PcacheRef(pPg); } /* ** Sync the journal. In other words, make sure all the pages that have ** been written to the journal have actually reached the surface of the ** disk and can be restored in the event of a hot-journal rollback. ** ** If the Pager.noSync flag is set, then this function is a no-op. ** Otherwise, the actions required depend on the journal-mode and the ** device characteristics of the file-system, as follows: ** ** * If the journal file is an in-memory journal file, no action need ** be taken. ** ** * Otherwise, if the device does not support the SAFE_APPEND property, ** then the nRec field of the most recently written journal header ** is updated to contain the number of journal records that have ** been written following it. If the pager is operating in full-sync ** mode, then the journal file is synced before this field is updated. ** ** * If the device does not support the SEQUENTIAL property, then ** journal file is synced. ** ** Or, in pseudo-code: ** ** if( NOT ){ ** if( NOT SAFE_APPEND ){ ** if( ) xSync(); ** ** } ** if( NOT SEQUENTIAL ) xSync(); ** } ** ** If successful, this routine clears the PGHDR_NEED_SYNC flag of every ** page currently held in memory before returning SQLITE_OK. If an IO ** error is encountered, then the IO error code is returned to the caller. */ static int syncJournal(Pager *pPager, int newHdr){ int rc; /* Return code */ assert( pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD ); assert( assert_pager_state(pPager) ); assert( !pagerUseWal(pPager) ); rc = sqlite3PagerExclusiveLock(pPager); if( rc!=SQLITE_OK ) return rc; if( !pPager->noSync ){ assert( !pPager->tempFile ); if( isOpen(pPager->jfd) && pPager->journalMode!=PAGER_JOURNALMODE_MEMORY ){ const int iDc = sqlite3OsDeviceCharacteristics(pPager->fd); assert( isOpen(pPager->jfd) ); if( 0==(iDc&SQLITE_IOCAP_SAFE_APPEND) ){ /* This block deals with an obscure problem. If the last connection ** that wrote to this database was operating in persistent-journal ** mode, then the journal file may at this point actually be larger ** than Pager.journalOff bytes. If the next thing in the journal ** file happens to be a journal-header (written as part of the ** previous connection's transaction), and a crash or power-failure ** occurs after nRec is updated but before this connection writes ** anything else to the journal file (or commits/rolls back its ** transaction), then SQLite may become confused when doing the ** hot-journal rollback following recovery. It may roll back all ** of this connections data, then proceed to rolling back the old, ** out-of-date data that follows it. Database corruption. ** ** To work around this, if the journal file does appear to contain ** a valid header following Pager.journalOff, then write a 0x00 ** byte to the start of it to prevent it from being recognized. ** ** Variable iNextHdrOffset is set to the offset at which this ** problematic header will occur, if it exists. aMagic is used ** as a temporary buffer to inspect the first couple of bytes of ** the potential journal header. */ i64 iNextHdrOffset; u8 aMagic[8]; u8 zHeader[sizeof(aJournalMagic)+4]; memcpy(zHeader, aJournalMagic, sizeof(aJournalMagic)); put32bits(&zHeader[sizeof(aJournalMagic)], pPager->nRec); iNextHdrOffset = journalHdrOffset(pPager); rc = sqlite3OsRead(pPager->jfd, aMagic, 8, iNextHdrOffset); if( rc==SQLITE_OK && 0==memcmp(aMagic, aJournalMagic, 8) ){ static const u8 zerobyte = 0; rc = sqlite3OsWrite(pPager->jfd, &zerobyte, 1, iNextHdrOffset); } if( rc!=SQLITE_OK && rc!=SQLITE_IOERR_SHORT_READ ){ return rc; } /* Write the nRec value into the journal file header. If in ** full-synchronous mode, sync the journal first. This ensures that ** all data has really hit the disk before nRec is updated to mark ** it as a candidate for rollback. ** ** This is not required if the persistent media supports the ** SAFE_APPEND property. Because in this case it is not possible ** for garbage data to be appended to the file, the nRec field ** is populated with 0xFFFFFFFF when the journal header is written ** and never needs to be updated. */ if( pPager->fullSync && 0==(iDc&SQLITE_IOCAP_SEQUENTIAL) ){ PAGERTRACE(("SYNC journal of %d\n", PAGERID(pPager))); IOTRACE(("JSYNC %p\n", pPager)) rc = sqlite3OsSync(pPager->jfd, pPager->syncFlags); if( rc!=SQLITE_OK ) return rc; } IOTRACE(("JHDR %p %lld\n", pPager, pPager->journalHdr)); rc = sqlite3OsWrite( pPager->jfd, zHeader, sizeof(zHeader), pPager->journalHdr ); if( rc!=SQLITE_OK ) return rc; } if( 0==(iDc&SQLITE_IOCAP_SEQUENTIAL) ){ PAGERTRACE(("SYNC journal of %d\n", PAGERID(pPager))); IOTRACE(("JSYNC %p\n", pPager)) rc = sqlite3OsSync(pPager->jfd, pPager->syncFlags| (pPager->syncFlags==SQLITE_SYNC_FULL?SQLITE_SYNC_DATAONLY:0) ); if( rc!=SQLITE_OK ) return rc; } pPager->journalHdr = pPager->journalOff; if( newHdr && 0==(iDc&SQLITE_IOCAP_SAFE_APPEND) ){ pPager->nRec = 0; rc = writeJournalHdr(pPager); if( rc!=SQLITE_OK ) return rc; } }else{ pPager->journalHdr = pPager->journalOff; } } /* Unless the pager is in noSync mode, the journal file was just ** successfully synced. Either way, clear the PGHDR_NEED_SYNC flag on ** all pages. */ sqlite3PcacheClearSyncFlags(pPager->pPCache); pPager->eState = PAGER_WRITER_DBMOD; assert( assert_pager_state(pPager) ); return SQLITE_OK; } /* ** The argument is the first in a linked list of dirty pages connected ** by the PgHdr.pDirty pointer. This function writes each one of the ** in-memory pages in the list to the database file. The argument may ** be NULL, representing an empty list. In this case this function is ** a no-op. ** ** The pager must hold at least a RESERVED lock when this function ** is called. Before writing anything to the database file, this lock ** is upgraded to an EXCLUSIVE lock. If the lock cannot be obtained, ** SQLITE_BUSY is returned and no data is written to the database file. ** ** If the pager is a temp-file pager and the actual file-system file ** is not yet open, it is created and opened before any data is ** written out. ** ** Once the lock has been upgraded and, if necessary, the file opened, ** the pages are written out to the database file in list order. Writing ** a page is skipped if it meets either of the following criteria: ** ** * The page number is greater than Pager.dbSize, or ** * The PGHDR_DONT_WRITE flag is set on the page. ** ** If writing out a page causes the database file to grow, Pager.dbFileSize ** is updated accordingly. If page 1 is written out, then the value cached ** in Pager.dbFileVers[] is updated to match the new value stored in ** the database file. ** ** If everything is successful, SQLITE_OK is returned. If an IO error ** occurs, an IO error code is returned. Or, if the EXCLUSIVE lock cannot ** be obtained, SQLITE_BUSY is returned. */ static int pager_write_pagelist(Pager *pPager, PgHdr *pList){ int rc = SQLITE_OK; /* Return code */ /* This function is only called for rollback pagers in WRITER_DBMOD state. */ assert( !pagerUseWal(pPager) ); assert( pPager->tempFile || pPager->eState==PAGER_WRITER_DBMOD ); assert( pPager->eLock==EXCLUSIVE_LOCK ); assert( isOpen(pPager->fd) || pList->pDirty==0 ); /* If the file is a temp-file has not yet been opened, open it now. It ** is not possible for rc to be other than SQLITE_OK if this branch ** is taken, as pager_wait_on_lock() is a no-op for temp-files. */ if( !isOpen(pPager->fd) ){ assert( pPager->tempFile && rc==SQLITE_OK ); rc = pagerOpentemp(pPager, pPager->fd, pPager->vfsFlags); } /* Before the first write, give the VFS a hint of what the final ** file size will be. */ assert( rc!=SQLITE_OK || isOpen(pPager->fd) ); if( rc==SQLITE_OK && pPager->dbHintSizedbSize && (pList->pDirty || pList->pgno>pPager->dbHintSize) ){ sqlite3_int64 szFile = pPager->pageSize * (sqlite3_int64)pPager->dbSize; sqlite3OsFileControlHint(pPager->fd, SQLITE_FCNTL_SIZE_HINT, &szFile); pPager->dbHintSize = pPager->dbSize; } while( rc==SQLITE_OK && pList ){ Pgno pgno = pList->pgno; /* If there are dirty pages in the page cache with page numbers greater ** than Pager.dbSize, this means sqlite3PagerTruncateImage() was called to ** make the file smaller (presumably by auto-vacuum code). Do not write ** any such pages to the file. ** ** Also, do not write out any page that has the PGHDR_DONT_WRITE flag ** set (set by sqlite3PagerDontWrite()). */ if( pgno<=pPager->dbSize && 0==(pList->flags&PGHDR_DONT_WRITE) ){ i64 offset = (pgno-1)*(i64)pPager->pageSize; /* Offset to write */ char *pData; /* Data to write */ assert( (pList->flags&PGHDR_NEED_SYNC)==0 ); if( pList->pgno==1 ) pager_write_changecounter(pList); pData = pList->pData; /* Write out the page data. */ rc = sqlite3OsWrite(pPager->fd, pData, pPager->pageSize, offset); /* If page 1 was just written, update Pager.dbFileVers to match ** the value now stored in the database file. If writing this ** page caused the database file to grow, update dbFileSize. */ if( pgno==1 ){ memcpy(&pPager->dbFileVers, &pData[24], sizeof(pPager->dbFileVers)); } if( pgno>pPager->dbFileSize ){ pPager->dbFileSize = pgno; } pPager->aStat[PAGER_STAT_WRITE]++; /* Update any backup objects copying the contents of this pager. */ sqlite3BackupUpdate(pPager->pBackup, pgno, (u8*)pList->pData); PAGERTRACE(("STORE %d page %d hash(%08x)\n", PAGERID(pPager), pgno, pager_pagehash(pList))); IOTRACE(("PGOUT %p %d\n", pPager, pgno)); PAGER_INCR(sqlite3_pager_writedb_count); }else{ PAGERTRACE(("NOSTORE %d page %d\n", PAGERID(pPager), pgno)); } pager_set_pagehash(pList); pList = pList->pDirty; } return rc; } /* ** Ensure that the sub-journal file is open. If it is already open, this ** function is a no-op. ** ** SQLITE_OK is returned if everything goes according to plan. An ** SQLITE_IOERR_XXX error code is returned if a call to sqlite3OsOpen() ** fails. */ static int openSubJournal(Pager *pPager){ int rc = SQLITE_OK; if( !isOpen(pPager->sjfd) ){ const int flags = SQLITE_OPEN_SUBJOURNAL | SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE; int nStmtSpill = sqlite3Config.nStmtSpill; if( pPager->journalMode==PAGER_JOURNALMODE_MEMORY || pPager->subjInMemory ){ nStmtSpill = -1; } rc = sqlite3JournalOpen(pPager->pVfs, 0, pPager->sjfd, flags, nStmtSpill); } return rc; } /* ** Append a record of the current state of page pPg to the sub-journal. ** ** If successful, set the bit corresponding to pPg->pgno in the bitvecs ** for all open savepoints before returning. ** ** This function returns SQLITE_OK if everything is successful, an IO ** error code if the attempt to write to the sub-journal fails, or ** SQLITE_NOMEM if a malloc fails while setting a bit in a savepoint ** bitvec. */ static int subjournalPage(PgHdr *pPg){ int rc = SQLITE_OK; Pager *pPager = pPg->pPager; if( pPager->journalMode!=PAGER_JOURNALMODE_OFF ){ /* Open the sub-journal, if it has not already been opened */ assert( pPager->useJournal ); assert( isOpen(pPager->jfd) || pagerUseWal(pPager) ); assert( isOpen(pPager->sjfd) || pPager->nSubRec==0 ); assert( pagerUseWal(pPager) || pageInJournal(pPager, pPg) || pPg->pgno>pPager->dbOrigSize ); rc = openSubJournal(pPager); /* If the sub-journal was opened successfully (or was already open), ** write the journal record into the file. */ if( rc==SQLITE_OK ){ void *pData = pPg->pData; i64 offset = (i64)pPager->nSubRec*(4+pPager->pageSize); char *pData2; pData2 = pData; PAGERTRACE(("STMT-JOURNAL %d page %d\n", PAGERID(pPager), pPg->pgno)); rc = write32bits(pPager->sjfd, offset, pPg->pgno); if( rc==SQLITE_OK ){ rc = sqlite3OsWrite(pPager->sjfd, pData2, pPager->pageSize, offset+4); } } } if( rc==SQLITE_OK ){ pPager->nSubRec++; assert( pPager->nSavepoint>0 ); rc = addToSavepointBitvecs(pPager, pPg->pgno); } return rc; } static int subjournalPageIfRequired(PgHdr *pPg){ if( subjRequiresPage(pPg) ){ return subjournalPage(pPg); }else{ return SQLITE_OK; } } /* ** This function is called by the pcache layer when it has reached some ** soft memory limit. The first argument is a pointer to a Pager object ** (cast as a void*). The pager is always 'purgeable' (not an in-memory ** database). The second argument is a reference to a page that is ** currently dirty but has no outstanding references. The page ** is always associated with the Pager object passed as the first ** argument. ** ** The job of this function is to make pPg clean by writing its contents ** out to the database file, if possible. This may involve syncing the ** journal file. ** ** If successful, sqlite3PcacheMakeClean() is called on the page and ** SQLITE_OK returned. If an IO error occurs while trying to make the ** page clean, the IO error code is returned. If the page cannot be ** made clean for some other reason, but no error occurs, then SQLITE_OK ** is returned by sqlite3PcacheMakeClean() is not called. */ static int pagerStress(void *p, PgHdr *pPg){ Pager *pPager = (Pager *)p; int rc = SQLITE_OK; assert( pPg->pPager==pPager ); assert( pPg->flags&PGHDR_DIRTY ); /* The doNotSpill NOSYNC bit is set during times when doing a sync of ** journal (and adding a new header) is not allowed. This occurs ** during calls to sqlite3PagerWrite() while trying to journal multiple ** pages belonging to the same sector. ** ** The doNotSpill ROLLBACK and OFF bits inhibits all cache spilling ** regardless of whether or not a sync is required. This is set during ** a rollback or by user request, respectively. ** ** Spilling is also prohibited when in an error state since that could ** lead to database corruption. In the current implementation it ** is impossible for sqlite3PcacheFetch() to be called with createFlag==3 ** while in the error state, hence it is impossible for this routine to ** be called in the error state. Nevertheless, we include a NEVER() ** test for the error state as a safeguard against future changes. */ if( NEVER(pPager->errCode) ) return SQLITE_OK; testcase( pPager->doNotSpill & SPILLFLAG_ROLLBACK ); testcase( pPager->doNotSpill & SPILLFLAG_OFF ); testcase( pPager->doNotSpill & SPILLFLAG_NOSYNC ); if( pPager->doNotSpill && ((pPager->doNotSpill & (SPILLFLAG_ROLLBACK|SPILLFLAG_OFF))!=0 || (pPg->flags & PGHDR_NEED_SYNC)!=0) ){ return SQLITE_OK; } pPager->aStat[PAGER_STAT_SPILL]++; pPg->pDirty = 0; if( pagerUseWal(pPager) ){ /* Write a single frame for this page to the log. */ rc = subjournalPageIfRequired(pPg); if( rc==SQLITE_OK ){ rc = pagerWalFrames(pPager, pPg, 0, 0); } }else{ #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE if( pPager->tempFile==0 ){ rc = sqlite3JournalCreate(pPager->jfd); if( rc!=SQLITE_OK ) return pager_error(pPager, rc); } #endif /* Sync the journal file if required. */ if( pPg->flags&PGHDR_NEED_SYNC || pPager->eState==PAGER_WRITER_CACHEMOD ){ rc = syncJournal(pPager, 1); } /* Write the contents of the page out to the database file. */ if( rc==SQLITE_OK ){ assert( (pPg->flags&PGHDR_NEED_SYNC)==0 ); rc = pager_write_pagelist(pPager, pPg); } } /* Mark the page as clean. */ if( rc==SQLITE_OK ){ PAGERTRACE(("STRESS %d page %d\n", PAGERID(pPager), pPg->pgno)); sqlite3PcacheMakeClean(pPg); } return pager_error(pPager, rc); } /* ** Flush all unreferenced dirty pages to disk. */ SQLITE_PRIVATE int sqlite3PagerFlush(Pager *pPager){ int rc = pPager->errCode; if( !MEMDB ){ PgHdr *pList = sqlite3PcacheDirtyList(pPager->pPCache); assert( assert_pager_state(pPager) ); while( rc==SQLITE_OK && pList ){ PgHdr *pNext = pList->pDirty; if( pList->nRef==0 ){ rc = pagerStress((void*)pPager, pList); } pList = pNext; } } return rc; } /* ** Allocate and initialize a new Pager object and put a pointer to it ** in *ppPager. The pager should eventually be freed by passing it ** to sqlite3PagerClose(). ** ** The zFilename argument is the path to the database file to open. ** If zFilename is NULL then a randomly-named temporary file is created ** and used as the file to be cached. Temporary files are be deleted ** automatically when they are closed. If zFilename is ":memory:" then ** all information is held in cache. It is never written to disk. ** This can be used to implement an in-memory database. ** ** The nExtra parameter specifies the number of bytes of space allocated ** along with each page reference. This space is available to the user ** via the sqlite3PagerGetExtra() API. When a new page is allocated, the ** first 8 bytes of this space are zeroed but the remainder is uninitialized. ** (The extra space is used by btree as the MemPage object.) ** ** The flags argument is used to specify properties that affect the ** operation of the pager. It should be passed some bitwise combination ** of the PAGER_* flags. ** ** The vfsFlags parameter is a bitmask to pass to the flags parameter ** of the xOpen() method of the supplied VFS when opening files. ** ** If the pager object is allocated and the specified file opened ** successfully, SQLITE_OK is returned and *ppPager set to point to ** the new pager object. If an error occurs, *ppPager is set to NULL ** and error code returned. This function may return SQLITE_NOMEM ** (sqlite3Malloc() is used to allocate memory), SQLITE_CANTOPEN or ** various SQLITE_IO_XXX errors. */ SQLITE_PRIVATE int sqlite3PagerOpen( sqlite3_vfs *pVfs, /* The virtual file system to use */ Pager **ppPager, /* OUT: Return the Pager structure here */ const char *zFilename, /* Name of the database file to open */ int nExtra, /* Extra bytes append to each in-memory page */ int flags, /* flags controlling this file */ int vfsFlags, /* flags passed through to sqlite3_vfs.xOpen() */ void (*xReinit)(DbPage*) /* Function to reinitialize pages */ ){ u8 *pPtr; Pager *pPager = 0; /* Pager object to allocate and return */ int rc = SQLITE_OK; /* Return code */ int tempFile = 0; /* True for temp files (incl. in-memory files) */ int memDb = 0; /* True if this is an in-memory file */ #ifdef SQLITE_ENABLE_DESERIALIZE int memJM = 0; /* Memory journal mode */ #else # define memJM 0 #endif int readOnly = 0; /* True if this is a read-only file */ int journalFileSize; /* Bytes to allocate for each journal fd */ char *zPathname = 0; /* Full path to database file */ int nPathname = 0; /* Number of bytes in zPathname */ int useJournal = (flags & PAGER_OMIT_JOURNAL)==0; /* False to omit journal */ int pcacheSize = sqlite3PcacheSize(); /* Bytes to allocate for PCache */ u32 szPageDflt = SQLITE_DEFAULT_PAGE_SIZE; /* Default page size */ const char *zUri = 0; /* URI args to copy */ int nUriByte = 1; /* Number of bytes of URI args at *zUri */ int nUri = 0; /* Number of URI parameters */ /* Figure out how much space is required for each journal file-handle ** (there are two of them, the main journal and the sub-journal). */ journalFileSize = ROUND8(sqlite3JournalSize(pVfs)); /* Set the output variable to NULL in case an error occurs. */ *ppPager = 0; #ifndef SQLITE_OMIT_MEMORYDB if( flags & PAGER_MEMORY ){ memDb = 1; if( zFilename && zFilename[0] ){ zPathname = sqlite3DbStrDup(0, zFilename); if( zPathname==0 ) return SQLITE_NOMEM_BKPT; nPathname = sqlite3Strlen30(zPathname); zFilename = 0; } } #endif /* Compute and store the full pathname in an allocated buffer pointed ** to by zPathname, length nPathname. Or, if this is a temporary file, ** leave both nPathname and zPathname set to 0. */ if( zFilename && zFilename[0] ){ const char *z; nPathname = pVfs->mxPathname+1; zPathname = sqlite3DbMallocRaw(0, nPathname*2); if( zPathname==0 ){ return SQLITE_NOMEM_BKPT; } zPathname[0] = 0; /* Make sure initialized even if FullPathname() fails */ rc = sqlite3OsFullPathname(pVfs, zFilename, nPathname, zPathname); if( rc!=SQLITE_OK ){ if( rc==SQLITE_OK_SYMLINK ){ if( vfsFlags & SQLITE_OPEN_NOFOLLOW ){ rc = SQLITE_CANTOPEN_SYMLINK; }else{ rc = SQLITE_OK; } } } nPathname = sqlite3Strlen30(zPathname); z = zUri = &zFilename[sqlite3Strlen30(zFilename)+1]; while( *z ){ z += strlen(z)+1; z += strlen(z)+1; nUri++; } nUriByte = (int)(&z[1] - zUri); assert( nUriByte>=1 ); if( rc==SQLITE_OK && nPathname+8>pVfs->mxPathname ){ /* This branch is taken when the journal path required by ** the database being opened will be more than pVfs->mxPathname ** bytes in length. This means the database cannot be opened, ** as it will not be possible to open the journal file or even ** check for a hot-journal before reading. */ rc = SQLITE_CANTOPEN_BKPT; } if( rc!=SQLITE_OK ){ sqlite3DbFree(0, zPathname); return rc; } } /* Allocate memory for the Pager structure, PCache object, the ** three file descriptors, the database file name and the journal ** file name. The layout in memory is as follows: ** ** Pager object (sizeof(Pager) bytes) ** PCache object (sqlite3PcacheSize() bytes) ** Database file handle (pVfs->szOsFile bytes) ** Sub-journal file handle (journalFileSize bytes) ** Main journal file handle (journalFileSize bytes) ** Ptr back to the Pager (sizeof(Pager*) bytes) ** \0\0\0\0 database prefix (4 bytes) ** Database file name (nPathname+1 bytes) ** URI query parameters (nUriByte bytes) ** Journal filename (nPathname+8+1 bytes) ** WAL filename (nPathname+4+1 bytes) ** \0\0\0 terminator (3 bytes) ** ** Some 3rd-party software, over which we have no control, depends on ** the specific order of the filenames and the \0 separators between them ** so that it can (for example) find the database filename given the WAL ** filename without using the sqlite3_filename_database() API. This is a ** misuse of SQLite and a bug in the 3rd-party software, but the 3rd-party ** software is in widespread use, so we try to avoid changing the filename ** order and formatting if possible. In particular, the details of the ** filename format expected by 3rd-party software should be as follows: ** ** - Main Database Path ** - \0 ** - Multiple URI components consisting of: ** - Key ** - \0 ** - Value ** - \0 ** - \0 ** - Journal Path ** - \0 ** - WAL Path (zWALName) ** - \0 ** ** The sqlite3_create_filename() interface and the databaseFilename() utility ** that is used by sqlite3_filename_database() and kin also depend on the ** specific formatting and order of the various filenames, so if the format ** changes here, be sure to change it there as well. */ pPtr = (u8 *)sqlite3MallocZero( ROUND8(sizeof(*pPager)) + /* Pager structure */ ROUND8(pcacheSize) + /* PCache object */ ROUND8(pVfs->szOsFile) + /* The main db file */ journalFileSize * 2 + /* The two journal files */ sizeof(pPager) + /* Space to hold a pointer */ 4 + /* Database prefix */ nPathname + 1 + /* database filename */ nUriByte + /* query parameters */ nPathname + 8 + 1 + /* Journal filename */ #ifndef SQLITE_OMIT_WAL nPathname + 4 + 1 + /* WAL filename */ #endif 3 /* Terminator */ ); assert( EIGHT_BYTE_ALIGNMENT(SQLITE_INT_TO_PTR(journalFileSize)) ); if( !pPtr ){ sqlite3DbFree(0, zPathname); return SQLITE_NOMEM_BKPT; } pPager = (Pager*)pPtr; pPtr += ROUND8(sizeof(*pPager)); pPager->pPCache = (PCache*)pPtr; pPtr += ROUND8(pcacheSize); pPager->fd = (sqlite3_file*)pPtr; pPtr += ROUND8(pVfs->szOsFile); pPager->sjfd = (sqlite3_file*)pPtr; pPtr += journalFileSize; pPager->jfd = (sqlite3_file*)pPtr; pPtr += journalFileSize; assert( EIGHT_BYTE_ALIGNMENT(pPager->jfd) ); memcpy(pPtr, &pPager, sizeof(pPager)); pPtr += sizeof(pPager); /* Fill in the Pager.zFilename and pPager.zQueryParam fields */ pPtr += 4; /* Skip zero prefix */ pPager->zFilename = (char*)pPtr; if( nPathname>0 ){ memcpy(pPtr, zPathname, nPathname); pPtr += nPathname + 1; if( zUri ){ memcpy(pPtr, zUri, nUriByte); pPtr += nUriByte; }else{ pPtr++; } } /* Fill in Pager.zJournal */ if( nPathname>0 ){ pPager->zJournal = (char*)pPtr; memcpy(pPtr, zPathname, nPathname); pPtr += nPathname; memcpy(pPtr, "-journal",8); pPtr += 8 + 1; #ifdef SQLITE_ENABLE_8_3_NAMES sqlite3FileSuffix3(zFilename,pPager->zJournal); pPtr = (u8*)(pPager->zJournal + sqlite3Strlen30(pPager->zJournal)+1); #endif }else{ pPager->zJournal = 0; } #ifndef SQLITE_OMIT_WAL /* Fill in Pager.zWal */ if( nPathname>0 ){ pPager->zWal = (char*)pPtr; memcpy(pPtr, zPathname, nPathname); pPtr += nPathname; memcpy(pPtr, "-wal", 4); pPtr += 4 + 1; #ifdef SQLITE_ENABLE_8_3_NAMES sqlite3FileSuffix3(zFilename, pPager->zWal); pPtr = (u8*)(pPager->zWal + sqlite3Strlen30(pPager->zWal)+1); #endif }else{ pPager->zWal = 0; } #endif if( nPathname ) sqlite3DbFree(0, zPathname); pPager->pVfs = pVfs; pPager->vfsFlags = vfsFlags; /* Open the pager file. */ if( zFilename && zFilename[0] ){ int fout = 0; /* VFS flags returned by xOpen() */ rc = sqlite3OsOpen(pVfs, pPager->zFilename, pPager->fd, vfsFlags, &fout); assert( !memDb ); #ifdef SQLITE_ENABLE_DESERIALIZE memJM = (fout&SQLITE_OPEN_MEMORY)!=0; #endif readOnly = (fout&SQLITE_OPEN_READONLY)!=0; /* If the file was successfully opened for read/write access, ** choose a default page size in case we have to create the ** database file. The default page size is the maximum of: ** ** + SQLITE_DEFAULT_PAGE_SIZE, ** + The value returned by sqlite3OsSectorSize() ** + The largest page size that can be written atomically. */ if( rc==SQLITE_OK ){ int iDc = sqlite3OsDeviceCharacteristics(pPager->fd); if( !readOnly ){ setSectorSize(pPager); assert(SQLITE_DEFAULT_PAGE_SIZE<=SQLITE_MAX_DEFAULT_PAGE_SIZE); if( szPageDfltsectorSize ){ if( pPager->sectorSize>SQLITE_MAX_DEFAULT_PAGE_SIZE ){ szPageDflt = SQLITE_MAX_DEFAULT_PAGE_SIZE; }else{ szPageDflt = (u32)pPager->sectorSize; } } #ifdef SQLITE_ENABLE_ATOMIC_WRITE { int ii; assert(SQLITE_IOCAP_ATOMIC512==(512>>8)); assert(SQLITE_IOCAP_ATOMIC64K==(65536>>8)); assert(SQLITE_MAX_DEFAULT_PAGE_SIZE<=65536); for(ii=szPageDflt; ii<=SQLITE_MAX_DEFAULT_PAGE_SIZE; ii=ii*2){ if( iDc&(SQLITE_IOCAP_ATOMIC|(ii>>8)) ){ szPageDflt = ii; } } } #endif } pPager->noLock = sqlite3_uri_boolean(pPager->zFilename, "nolock", 0); if( (iDc & SQLITE_IOCAP_IMMUTABLE)!=0 || sqlite3_uri_boolean(pPager->zFilename, "immutable", 0) ){ vfsFlags |= SQLITE_OPEN_READONLY; goto act_like_temp_file; } } }else{ /* If a temporary file is requested, it is not opened immediately. ** In this case we accept the default page size and delay actually ** opening the file until the first call to OsWrite(). ** ** This branch is also run for an in-memory database. An in-memory ** database is the same as a temp-file that is never written out to ** disk and uses an in-memory rollback journal. ** ** This branch also runs for files marked as immutable. */ act_like_temp_file: tempFile = 1; pPager->eState = PAGER_READER; /* Pretend we already have a lock */ pPager->eLock = EXCLUSIVE_LOCK; /* Pretend we are in EXCLUSIVE mode */ pPager->noLock = 1; /* Do no locking */ readOnly = (vfsFlags&SQLITE_OPEN_READONLY); } /* The following call to PagerSetPagesize() serves to set the value of ** Pager.pageSize and to allocate the Pager.pTmpSpace buffer. */ if( rc==SQLITE_OK ){ assert( pPager->memDb==0 ); rc = sqlite3PagerSetPagesize(pPager, &szPageDflt, -1); testcase( rc!=SQLITE_OK ); } /* Initialize the PCache object. */ if( rc==SQLITE_OK ){ nExtra = ROUND8(nExtra); assert( nExtra>=8 && nExtra<1000 ); rc = sqlite3PcacheOpen(szPageDflt, nExtra, !memDb, !memDb?pagerStress:0, (void *)pPager, pPager->pPCache); } /* If an error occurred above, free the Pager structure and close the file. */ if( rc!=SQLITE_OK ){ sqlite3OsClose(pPager->fd); sqlite3PageFree(pPager->pTmpSpace); sqlite3_free(pPager); return rc; } PAGERTRACE(("OPEN %d %s\n", FILEHANDLEID(pPager->fd), pPager->zFilename)); IOTRACE(("OPEN %p %s\n", pPager, pPager->zFilename)) pPager->useJournal = (u8)useJournal; /* pPager->stmtOpen = 0; */ /* pPager->stmtInUse = 0; */ /* pPager->nRef = 0; */ /* pPager->stmtSize = 0; */ /* pPager->stmtJSize = 0; */ /* pPager->nPage = 0; */ pPager->mxPgno = SQLITE_MAX_PAGE_COUNT; /* pPager->state = PAGER_UNLOCK; */ /* pPager->errMask = 0; */ pPager->tempFile = (u8)tempFile; assert( tempFile==PAGER_LOCKINGMODE_NORMAL || tempFile==PAGER_LOCKINGMODE_EXCLUSIVE ); assert( PAGER_LOCKINGMODE_EXCLUSIVE==1 ); pPager->exclusiveMode = (u8)tempFile; pPager->changeCountDone = pPager->tempFile; pPager->memDb = (u8)memDb; pPager->readOnly = (u8)readOnly; assert( useJournal || pPager->tempFile ); pPager->noSync = pPager->tempFile; if( pPager->noSync ){ assert( pPager->fullSync==0 ); assert( pPager->extraSync==0 ); assert( pPager->syncFlags==0 ); assert( pPager->walSyncFlags==0 ); }else{ pPager->fullSync = 1; pPager->extraSync = 0; pPager->syncFlags = SQLITE_SYNC_NORMAL; pPager->walSyncFlags = SQLITE_SYNC_NORMAL | (SQLITE_SYNC_NORMAL<<2); } /* pPager->pFirst = 0; */ /* pPager->pFirstSynced = 0; */ /* pPager->pLast = 0; */ pPager->nExtra = (u16)nExtra; pPager->journalSizeLimit = SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT; assert( isOpen(pPager->fd) || tempFile ); setSectorSize(pPager); if( !useJournal ){ pPager->journalMode = PAGER_JOURNALMODE_OFF; }else if( memDb || memJM ){ pPager->journalMode = PAGER_JOURNALMODE_MEMORY; } /* pPager->xBusyHandler = 0; */ /* pPager->pBusyHandlerArg = 0; */ pPager->xReiniter = xReinit; setGetterMethod(pPager); /* memset(pPager->aHash, 0, sizeof(pPager->aHash)); */ /* pPager->szMmap = SQLITE_DEFAULT_MMAP_SIZE // will be set by btree.c */ *ppPager = pPager; return SQLITE_OK; } /* ** Return the sqlite3_file for the main database given the name ** of the corresonding WAL or Journal name as passed into ** xOpen. */ SQLITE_API sqlite3_file *sqlite3_database_file_object(const char *zName){ Pager *pPager; while( zName[-1]!=0 || zName[-2]!=0 || zName[-3]!=0 || zName[-4]!=0 ){ zName--; } pPager = *(Pager**)(zName - 4 - sizeof(Pager*)); return pPager->fd; } /* ** This function is called after transitioning from PAGER_UNLOCK to ** PAGER_SHARED state. It tests if there is a hot journal present in ** the file-system for the given pager. A hot journal is one that ** needs to be played back. According to this function, a hot-journal ** file exists if the following criteria are met: ** ** * The journal file exists in the file system, and ** * No process holds a RESERVED or greater lock on the database file, and ** * The database file itself is greater than 0 bytes in size, and ** * The first byte of the journal file exists and is not 0x00. ** ** If the current size of the database file is 0 but a journal file ** exists, that is probably an old journal left over from a prior ** database with the same name. In this case the journal file is ** just deleted using OsDelete, *pExists is set to 0 and SQLITE_OK ** is returned. ** ** This routine does not check if there is a super-journal filename ** at the end of the file. If there is, and that super-journal file ** does not exist, then the journal file is not really hot. In this ** case this routine will return a false-positive. The pager_playback() ** routine will discover that the journal file is not really hot and ** will not roll it back. ** ** If a hot-journal file is found to exist, *pExists is set to 1 and ** SQLITE_OK returned. If no hot-journal file is present, *pExists is ** set to 0 and SQLITE_OK returned. If an IO error occurs while trying ** to determine whether or not a hot-journal file exists, the IO error ** code is returned and the value of *pExists is undefined. */ static int hasHotJournal(Pager *pPager, int *pExists){ sqlite3_vfs * const pVfs = pPager->pVfs; int rc = SQLITE_OK; /* Return code */ int exists = 1; /* True if a journal file is present */ int jrnlOpen = !!isOpen(pPager->jfd); assert( pPager->useJournal ); assert( isOpen(pPager->fd) ); assert( pPager->eState==PAGER_OPEN ); assert( jrnlOpen==0 || ( sqlite3OsDeviceCharacteristics(pPager->jfd) & SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN )); *pExists = 0; if( !jrnlOpen ){ rc = sqlite3OsAccess(pVfs, pPager->zJournal, SQLITE_ACCESS_EXISTS, &exists); } if( rc==SQLITE_OK && exists ){ int locked = 0; /* True if some process holds a RESERVED lock */ /* Race condition here: Another process might have been holding the ** the RESERVED lock and have a journal open at the sqlite3OsAccess() ** call above, but then delete the journal and drop the lock before ** we get to the following sqlite3OsCheckReservedLock() call. If that ** is the case, this routine might think there is a hot journal when ** in fact there is none. This results in a false-positive which will ** be dealt with by the playback routine. Ticket #3883. */ rc = sqlite3OsCheckReservedLock(pPager->fd, &locked); if( rc==SQLITE_OK && !locked ){ Pgno nPage; /* Number of pages in database file */ assert( pPager->tempFile==0 ); rc = pagerPagecount(pPager, &nPage); if( rc==SQLITE_OK ){ /* If the database is zero pages in size, that means that either (1) the ** journal is a remnant from a prior database with the same name where ** the database file but not the journal was deleted, or (2) the initial ** transaction that populates a new database is being rolled back. ** In either case, the journal file can be deleted. However, take care ** not to delete the journal file if it is already open due to ** journal_mode=PERSIST. */ if( nPage==0 && !jrnlOpen ){ sqlite3BeginBenignMalloc(); if( pagerLockDb(pPager, RESERVED_LOCK)==SQLITE_OK ){ sqlite3OsDelete(pVfs, pPager->zJournal, 0); if( !pPager->exclusiveMode ) pagerUnlockDb(pPager, SHARED_LOCK); } sqlite3EndBenignMalloc(); }else{ /* The journal file exists and no other connection has a reserved ** or greater lock on the database file. Now check that there is ** at least one non-zero bytes at the start of the journal file. ** If there is, then we consider this journal to be hot. If not, ** it can be ignored. */ if( !jrnlOpen ){ int f = SQLITE_OPEN_READONLY|SQLITE_OPEN_MAIN_JOURNAL; rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &f); } if( rc==SQLITE_OK ){ u8 first = 0; rc = sqlite3OsRead(pPager->jfd, (void *)&first, 1, 0); if( rc==SQLITE_IOERR_SHORT_READ ){ rc = SQLITE_OK; } if( !jrnlOpen ){ sqlite3OsClose(pPager->jfd); } *pExists = (first!=0); }else if( rc==SQLITE_CANTOPEN ){ /* If we cannot open the rollback journal file in order to see if ** it has a zero header, that might be due to an I/O error, or ** it might be due to the race condition described above and in ** ticket #3883. Either way, assume that the journal is hot. ** This might be a false positive. But if it is, then the ** automatic journal playback and recovery mechanism will deal ** with it under an EXCLUSIVE lock where we do not need to ** worry so much with race conditions. */ *pExists = 1; rc = SQLITE_OK; } } } } } return rc; } /* ** This function is called to obtain a shared lock on the database file. ** It is illegal to call sqlite3PagerGet() until after this function ** has been successfully called. If a shared-lock is already held when ** this function is called, it is a no-op. ** ** The following operations are also performed by this function. ** ** 1) If the pager is currently in PAGER_OPEN state (no lock held ** on the database file), then an attempt is made to obtain a ** SHARED lock on the database file. Immediately after obtaining ** the SHARED lock, the file-system is checked for a hot-journal, ** which is played back if present. Following any hot-journal ** rollback, the contents of the cache are validated by checking ** the 'change-counter' field of the database file header and ** discarded if they are found to be invalid. ** ** 2) If the pager is running in exclusive-mode, and there are currently ** no outstanding references to any pages, and is in the error state, ** then an attempt is made to clear the error state by discarding ** the contents of the page cache and rolling back any open journal ** file. ** ** If everything is successful, SQLITE_OK is returned. If an IO error ** occurs while locking the database, checking for a hot-journal file or ** rolling back a journal file, the IO error code is returned. */ SQLITE_PRIVATE int sqlite3PagerSharedLock(Pager *pPager){ int rc = SQLITE_OK; /* Return code */ /* This routine is only called from b-tree and only when there are no ** outstanding pages. This implies that the pager state should either ** be OPEN or READER. READER is only possible if the pager is or was in ** exclusive access mode. */ assert( sqlite3PcacheRefCount(pPager->pPCache)==0 ); assert( assert_pager_state(pPager) ); assert( pPager->eState==PAGER_OPEN || pPager->eState==PAGER_READER ); assert( pPager->errCode==SQLITE_OK ); if( !pagerUseWal(pPager) && pPager->eState==PAGER_OPEN ){ int bHotJournal = 1; /* True if there exists a hot journal-file */ assert( !MEMDB ); assert( pPager->tempFile==0 || pPager->eLock==EXCLUSIVE_LOCK ); rc = pager_wait_on_lock(pPager, SHARED_LOCK); if( rc!=SQLITE_OK ){ assert( pPager->eLock==NO_LOCK || pPager->eLock==UNKNOWN_LOCK ); goto failed; } /* If a journal file exists, and there is no RESERVED lock on the ** database file, then it either needs to be played back or deleted. */ if( pPager->eLock<=SHARED_LOCK ){ rc = hasHotJournal(pPager, &bHotJournal); } if( rc!=SQLITE_OK ){ goto failed; } if( bHotJournal ){ if( pPager->readOnly ){ rc = SQLITE_READONLY_ROLLBACK; goto failed; } /* Get an EXCLUSIVE lock on the database file. At this point it is ** important that a RESERVED lock is not obtained on the way to the ** EXCLUSIVE lock. If it were, another process might open the ** database file, detect the RESERVED lock, and conclude that the ** database is safe to read while this process is still rolling the ** hot-journal back. ** ** Because the intermediate RESERVED lock is not requested, any ** other process attempting to access the database file will get to ** this point in the code and fail to obtain its own EXCLUSIVE lock ** on the database file. ** ** Unless the pager is in locking_mode=exclusive mode, the lock is ** downgraded to SHARED_LOCK before this function returns. */ rc = pagerLockDb(pPager, EXCLUSIVE_LOCK); if( rc!=SQLITE_OK ){ goto failed; } /* If it is not already open and the file exists on disk, open the ** journal for read/write access. Write access is required because ** in exclusive-access mode the file descriptor will be kept open ** and possibly used for a transaction later on. Also, write-access ** is usually required to finalize the journal in journal_mode=persist ** mode (and also for journal_mode=truncate on some systems). ** ** If the journal does not exist, it usually means that some ** other connection managed to get in and roll it back before ** this connection obtained the exclusive lock above. Or, it ** may mean that the pager was in the error-state when this ** function was called and the journal file does not exist. */ if( !isOpen(pPager->jfd) ){ sqlite3_vfs * const pVfs = pPager->pVfs; int bExists; /* True if journal file exists */ rc = sqlite3OsAccess( pVfs, pPager->zJournal, SQLITE_ACCESS_EXISTS, &bExists); if( rc==SQLITE_OK && bExists ){ int fout = 0; int f = SQLITE_OPEN_READWRITE|SQLITE_OPEN_MAIN_JOURNAL; assert( !pPager->tempFile ); rc = sqlite3OsOpen(pVfs, pPager->zJournal, pPager->jfd, f, &fout); assert( rc!=SQLITE_OK || isOpen(pPager->jfd) ); if( rc==SQLITE_OK && fout&SQLITE_OPEN_READONLY ){ rc = SQLITE_CANTOPEN_BKPT; sqlite3OsClose(pPager->jfd); } } } /* Playback and delete the journal. Drop the database write ** lock and reacquire the read lock. Purge the cache before ** playing back the hot-journal so that we don't end up with ** an inconsistent cache. Sync the hot journal before playing ** it back since the process that crashed and left the hot journal ** probably did not sync it and we are required to always sync ** the journal before playing it back. */ if( isOpen(pPager->jfd) ){ assert( rc==SQLITE_OK ); rc = pagerSyncHotJournal(pPager); if( rc==SQLITE_OK ){ rc = pager_playback(pPager, !pPager->tempFile); pPager->eState = PAGER_OPEN; } }else if( !pPager->exclusiveMode ){ pagerUnlockDb(pPager, SHARED_LOCK); } if( rc!=SQLITE_OK ){ /* This branch is taken if an error occurs while trying to open ** or roll back a hot-journal while holding an EXCLUSIVE lock. The ** pager_unlock() routine will be called before returning to unlock ** the file. If the unlock attempt fails, then Pager.eLock must be ** set to UNKNOWN_LOCK (see the comment above the #define for ** UNKNOWN_LOCK above for an explanation). ** ** In order to get pager_unlock() to do this, set Pager.eState to ** PAGER_ERROR now. This is not actually counted as a transition ** to ERROR state in the state diagram at the top of this file, ** since we know that the same call to pager_unlock() will very ** shortly transition the pager object to the OPEN state. Calling ** assert_pager_state() would fail now, as it should not be possible ** to be in ERROR state when there are zero outstanding page ** references. */ pager_error(pPager, rc); goto failed; } assert( pPager->eState==PAGER_OPEN ); assert( (pPager->eLock==SHARED_LOCK) || (pPager->exclusiveMode && pPager->eLock>SHARED_LOCK) ); } if( !pPager->tempFile && pPager->hasHeldSharedLock ){ /* The shared-lock has just been acquired then check to ** see if the database has been modified. If the database has changed, ** flush the cache. The hasHeldSharedLock flag prevents this from ** occurring on the very first access to a file, in order to save a ** single unnecessary sqlite3OsRead() call at the start-up. ** ** Database changes are detected by looking at 15 bytes beginning ** at offset 24 into the file. The first 4 of these 16 bytes are ** a 32-bit counter that is incremented with each change. The ** other bytes change randomly with each file change when ** a codec is in use. ** ** There is a vanishingly small chance that a change will not be ** detected. The chance of an undetected change is so small that ** it can be neglected. */ char dbFileVers[sizeof(pPager->dbFileVers)]; IOTRACE(("CKVERS %p %d\n", pPager, sizeof(dbFileVers))); rc = sqlite3OsRead(pPager->fd, &dbFileVers, sizeof(dbFileVers), 24); if( rc!=SQLITE_OK ){ if( rc!=SQLITE_IOERR_SHORT_READ ){ goto failed; } memset(dbFileVers, 0, sizeof(dbFileVers)); } if( memcmp(pPager->dbFileVers, dbFileVers, sizeof(dbFileVers))!=0 ){ pager_reset(pPager); /* Unmap the database file. It is possible that external processes ** may have truncated the database file and then extended it back ** to its original size while this process was not holding a lock. ** In this case there may exist a Pager.pMap mapping that appears ** to be the right size but is not actually valid. Avoid this ** possibility by unmapping the db here. */ if( USEFETCH(pPager) ){ sqlite3OsUnfetch(pPager->fd, 0, 0); } } } /* If there is a WAL file in the file-system, open this database in WAL ** mode. Otherwise, the following function call is a no-op. */ rc = pagerOpenWalIfPresent(pPager); #ifndef SQLITE_OMIT_WAL assert( pPager->pWal==0 || rc==SQLITE_OK ); #endif } if( pagerUseWal(pPager) ){ assert( rc==SQLITE_OK ); rc = pagerBeginReadTransaction(pPager); } if( pPager->tempFile==0 && pPager->eState==PAGER_OPEN && rc==SQLITE_OK ){ rc = pagerPagecount(pPager, &pPager->dbSize); } failed: if( rc!=SQLITE_OK ){ assert( !MEMDB ); pager_unlock(pPager); assert( pPager->eState==PAGER_OPEN ); }else{ pPager->eState = PAGER_READER; pPager->hasHeldSharedLock = 1; } return rc; } /* ** If the reference count has reached zero, rollback any active ** transaction and unlock the pager. ** ** Except, in locking_mode=EXCLUSIVE when there is nothing to in ** the rollback journal, the unlock is not performed and there is ** nothing to rollback, so this routine is a no-op. */ static void pagerUnlockIfUnused(Pager *pPager){ if( sqlite3PcacheRefCount(pPager->pPCache)==0 ){ assert( pPager->nMmapOut==0 ); /* because page1 is never memory mapped */ pagerUnlockAndRollback(pPager); } } /* ** The page getter methods each try to acquire a reference to a ** page with page number pgno. If the requested reference is ** successfully obtained, it is copied to *ppPage and SQLITE_OK returned. ** ** There are different implementations of the getter method depending ** on the current state of the pager. ** ** getPageNormal() -- The normal getter ** getPageError() -- Used if the pager is in an error state ** getPageMmap() -- Used if memory-mapped I/O is enabled ** ** If the requested page is already in the cache, it is returned. ** Otherwise, a new page object is allocated and populated with data ** read from the database file. In some cases, the pcache module may ** choose not to allocate a new page object and may reuse an existing ** object with no outstanding references. ** ** The extra data appended to a page is always initialized to zeros the ** first time a page is loaded into memory. If the page requested is ** already in the cache when this function is called, then the extra ** data is left as it was when the page object was last used. ** ** If the database image is smaller than the requested page or if ** the flags parameter contains the PAGER_GET_NOCONTENT bit and the ** requested page is not already stored in the cache, then no ** actual disk read occurs. In this case the memory image of the ** page is initialized to all zeros. ** ** If PAGER_GET_NOCONTENT is true, it means that we do not care about ** the contents of the page. This occurs in two scenarios: ** ** a) When reading a free-list leaf page from the database, and ** ** b) When a savepoint is being rolled back and we need to load ** a new page into the cache to be filled with the data read ** from the savepoint journal. ** ** If PAGER_GET_NOCONTENT is true, then the data returned is zeroed instead ** of being read from the database. Additionally, the bits corresponding ** to pgno in Pager.pInJournal (bitvec of pages already written to the ** journal file) and the PagerSavepoint.pInSavepoint bitvecs of any open ** savepoints are set. This means if the page is made writable at any ** point in the future, using a call to sqlite3PagerWrite(), its contents ** will not be journaled. This saves IO. ** ** The acquisition might fail for several reasons. In all cases, ** an appropriate error code is returned and *ppPage is set to NULL. ** ** See also sqlite3PagerLookup(). Both this routine and Lookup() attempt ** to find a page in the in-memory cache first. If the page is not already ** in memory, this routine goes to disk to read it in whereas Lookup() ** just returns 0. This routine acquires a read-lock the first time it ** has to go to disk, and could also playback an old journal if necessary. ** Since Lookup() never goes to disk, it never has to deal with locks ** or journal files. */ static int getPageNormal( Pager *pPager, /* The pager open on the database file */ Pgno pgno, /* Page number to fetch */ DbPage **ppPage, /* Write a pointer to the page here */ int flags /* PAGER_GET_XXX flags */ ){ int rc = SQLITE_OK; PgHdr *pPg; u8 noContent; /* True if PAGER_GET_NOCONTENT is set */ sqlite3_pcache_page *pBase; assert( pPager->errCode==SQLITE_OK ); assert( pPager->eState>=PAGER_READER ); assert( assert_pager_state(pPager) ); assert( pPager->hasHeldSharedLock==1 ); if( pgno==0 ) return SQLITE_CORRUPT_BKPT; pBase = sqlite3PcacheFetch(pPager->pPCache, pgno, 3); if( pBase==0 ){ pPg = 0; rc = sqlite3PcacheFetchStress(pPager->pPCache, pgno, &pBase); if( rc!=SQLITE_OK ) goto pager_acquire_err; if( pBase==0 ){ rc = SQLITE_NOMEM_BKPT; goto pager_acquire_err; } } pPg = *ppPage = sqlite3PcacheFetchFinish(pPager->pPCache, pgno, pBase); assert( pPg==(*ppPage) ); assert( pPg->pgno==pgno ); assert( pPg->pPager==pPager || pPg->pPager==0 ); noContent = (flags & PAGER_GET_NOCONTENT)!=0; if( pPg->pPager && !noContent ){ /* In this case the pcache already contains an initialized copy of ** the page. Return without further ado. */ assert( pgno!=PAGER_MJ_PGNO(pPager) ); pPager->aStat[PAGER_STAT_HIT]++; return SQLITE_OK; }else{ /* The pager cache has created a new page. Its content needs to ** be initialized. But first some error checks: ** ** (*) obsolete. Was: maximum page number is 2^31 ** (2) Never try to fetch the locking page */ if( pgno==PAGER_MJ_PGNO(pPager) ){ rc = SQLITE_CORRUPT_BKPT; goto pager_acquire_err; } pPg->pPager = pPager; assert( !isOpen(pPager->fd) || !MEMDB ); if( !isOpen(pPager->fd) || pPager->dbSizepPager->mxPgno ){ rc = SQLITE_FULL; goto pager_acquire_err; } if( noContent ){ /* Failure to set the bits in the InJournal bit-vectors is benign. ** It merely means that we might do some extra work to journal a ** page that does not need to be journaled. Nevertheless, be sure ** to test the case where a malloc error occurs while trying to set ** a bit in a bit vector. */ sqlite3BeginBenignMalloc(); if( pgno<=pPager->dbOrigSize ){ TESTONLY( rc = ) sqlite3BitvecSet(pPager->pInJournal, pgno); testcase( rc==SQLITE_NOMEM ); } TESTONLY( rc = ) addToSavepointBitvecs(pPager, pgno); testcase( rc==SQLITE_NOMEM ); sqlite3EndBenignMalloc(); } memset(pPg->pData, 0, pPager->pageSize); IOTRACE(("ZERO %p %d\n", pPager, pgno)); }else{ assert( pPg->pPager==pPager ); pPager->aStat[PAGER_STAT_MISS]++; rc = readDbPage(pPg); if( rc!=SQLITE_OK ){ goto pager_acquire_err; } } pager_set_pagehash(pPg); } return SQLITE_OK; pager_acquire_err: assert( rc!=SQLITE_OK ); if( pPg ){ sqlite3PcacheDrop(pPg); } pagerUnlockIfUnused(pPager); *ppPage = 0; return rc; } #if SQLITE_MAX_MMAP_SIZE>0 /* The page getter for when memory-mapped I/O is enabled */ static int getPageMMap( Pager *pPager, /* The pager open on the database file */ Pgno pgno, /* Page number to fetch */ DbPage **ppPage, /* Write a pointer to the page here */ int flags /* PAGER_GET_XXX flags */ ){ int rc = SQLITE_OK; PgHdr *pPg = 0; u32 iFrame = 0; /* Frame to read from WAL file */ /* It is acceptable to use a read-only (mmap) page for any page except ** page 1 if there is no write-transaction open or the ACQUIRE_READONLY ** flag was specified by the caller. And so long as the db is not a ** temporary or in-memory database. */ const int bMmapOk = (pgno>1 && (pPager->eState==PAGER_READER || (flags & PAGER_GET_READONLY)) ); assert( USEFETCH(pPager) ); /* Optimization note: Adding the "pgno<=1" term before "pgno==0" here ** allows the compiler optimizer to reuse the results of the "pgno>1" ** test in the previous statement, and avoid testing pgno==0 in the ** common case where pgno is large. */ if( pgno<=1 && pgno==0 ){ return SQLITE_CORRUPT_BKPT; } assert( pPager->eState>=PAGER_READER ); assert( assert_pager_state(pPager) ); assert( pPager->hasHeldSharedLock==1 ); assert( pPager->errCode==SQLITE_OK ); if( bMmapOk && pagerUseWal(pPager) ){ rc = sqlite3WalFindFrame(pPager->pWal, pgno, &iFrame); if( rc!=SQLITE_OK ){ *ppPage = 0; return rc; } } if( bMmapOk && iFrame==0 ){ void *pData = 0; rc = sqlite3OsFetch(pPager->fd, (i64)(pgno-1) * pPager->pageSize, pPager->pageSize, &pData ); if( rc==SQLITE_OK && pData ){ if( pPager->eState>PAGER_READER || pPager->tempFile ){ pPg = sqlite3PagerLookup(pPager, pgno); } if( pPg==0 ){ rc = pagerAcquireMapPage(pPager, pgno, pData, &pPg); }else{ sqlite3OsUnfetch(pPager->fd, (i64)(pgno-1)*pPager->pageSize, pData); } if( pPg ){ assert( rc==SQLITE_OK ); *ppPage = pPg; return SQLITE_OK; } } if( rc!=SQLITE_OK ){ *ppPage = 0; return rc; } } return getPageNormal(pPager, pgno, ppPage, flags); } #endif /* SQLITE_MAX_MMAP_SIZE>0 */ /* The page getter method for when the pager is an error state */ static int getPageError( Pager *pPager, /* The pager open on the database file */ Pgno pgno, /* Page number to fetch */ DbPage **ppPage, /* Write a pointer to the page here */ int flags /* PAGER_GET_XXX flags */ ){ UNUSED_PARAMETER(pgno); UNUSED_PARAMETER(flags); assert( pPager->errCode!=SQLITE_OK ); *ppPage = 0; return pPager->errCode; } /* Dispatch all page fetch requests to the appropriate getter method. */ SQLITE_PRIVATE int sqlite3PagerGet( Pager *pPager, /* The pager open on the database file */ Pgno pgno, /* Page number to fetch */ DbPage **ppPage, /* Write a pointer to the page here */ int flags /* PAGER_GET_XXX flags */ ){ return pPager->xGet(pPager, pgno, ppPage, flags); } /* ** Acquire a page if it is already in the in-memory cache. Do ** not read the page from disk. Return a pointer to the page, ** or 0 if the page is not in cache. ** ** See also sqlite3PagerGet(). The difference between this routine ** and sqlite3PagerGet() is that _get() will go to the disk and read ** in the page if the page is not already in cache. This routine ** returns NULL if the page is not in cache or if a disk I/O error ** has ever happened. */ SQLITE_PRIVATE DbPage *sqlite3PagerLookup(Pager *pPager, Pgno pgno){ sqlite3_pcache_page *pPage; assert( pPager!=0 ); assert( pgno!=0 ); assert( pPager->pPCache!=0 ); pPage = sqlite3PcacheFetch(pPager->pPCache, pgno, 0); assert( pPage==0 || pPager->hasHeldSharedLock ); if( pPage==0 ) return 0; return sqlite3PcacheFetchFinish(pPager->pPCache, pgno, pPage); } /* ** Release a page reference. ** ** The sqlite3PagerUnref() and sqlite3PagerUnrefNotNull() may only be ** used if we know that the page being released is not the last page. ** The btree layer always holds page1 open until the end, so these first ** to routines can be used to release any page other than BtShared.pPage1. ** ** Use sqlite3PagerUnrefPageOne() to release page1. This latter routine ** checks the total number of outstanding pages and if the number of ** pages reaches zero it drops the database lock. */ SQLITE_PRIVATE void sqlite3PagerUnrefNotNull(DbPage *pPg){ TESTONLY( Pager *pPager = pPg->pPager; ) assert( pPg!=0 ); if( pPg->flags & PGHDR_MMAP ){ assert( pPg->pgno!=1 ); /* Page1 is never memory mapped */ pagerReleaseMapPage(pPg); }else{ sqlite3PcacheRelease(pPg); } /* Do not use this routine to release the last reference to page1 */ assert( sqlite3PcacheRefCount(pPager->pPCache)>0 ); } SQLITE_PRIVATE void sqlite3PagerUnref(DbPage *pPg){ if( pPg ) sqlite3PagerUnrefNotNull(pPg); } SQLITE_PRIVATE void sqlite3PagerUnrefPageOne(DbPage *pPg){ Pager *pPager; assert( pPg!=0 ); assert( pPg->pgno==1 ); assert( (pPg->flags & PGHDR_MMAP)==0 ); /* Page1 is never memory mapped */ pPager = pPg->pPager; sqlite3PcacheRelease(pPg); pagerUnlockIfUnused(pPager); } /* ** This function is called at the start of every write transaction. ** There must already be a RESERVED or EXCLUSIVE lock on the database ** file when this routine is called. ** ** Open the journal file for pager pPager and write a journal header ** to the start of it. If there are active savepoints, open the sub-journal ** as well. This function is only used when the journal file is being ** opened to write a rollback log for a transaction. It is not used ** when opening a hot journal file to roll it back. ** ** If the journal file is already open (as it may be in exclusive mode), ** then this function just writes a journal header to the start of the ** already open file. ** ** Whether or not the journal file is opened by this function, the ** Pager.pInJournal bitvec structure is allocated. ** ** Return SQLITE_OK if everything is successful. Otherwise, return ** SQLITE_NOMEM if the attempt to allocate Pager.pInJournal fails, or ** an IO error code if opening or writing the journal file fails. */ static int pager_open_journal(Pager *pPager){ int rc = SQLITE_OK; /* Return code */ sqlite3_vfs * const pVfs = pPager->pVfs; /* Local cache of vfs pointer */ assert( pPager->eState==PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); assert( pPager->pInJournal==0 ); /* If already in the error state, this function is a no-op. But on ** the other hand, this routine is never called if we are already in ** an error state. */ if( NEVER(pPager->errCode) ) return pPager->errCode; if( !pagerUseWal(pPager) && pPager->journalMode!=PAGER_JOURNALMODE_OFF ){ pPager->pInJournal = sqlite3BitvecCreate(pPager->dbSize); if( pPager->pInJournal==0 ){ return SQLITE_NOMEM_BKPT; } /* Open the journal file if it is not already open. */ if( !isOpen(pPager->jfd) ){ if( pPager->journalMode==PAGER_JOURNALMODE_MEMORY ){ sqlite3MemJournalOpen(pPager->jfd); }else{ int flags = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE; int nSpill; if( pPager->tempFile ){ flags |= (SQLITE_OPEN_DELETEONCLOSE|SQLITE_OPEN_TEMP_JOURNAL); nSpill = sqlite3Config.nStmtSpill; }else{ flags |= SQLITE_OPEN_MAIN_JOURNAL; nSpill = jrnlBufferSize(pPager); } /* Verify that the database still has the same name as it did when ** it was originally opened. */ rc = databaseIsUnmoved(pPager); if( rc==SQLITE_OK ){ rc = sqlite3JournalOpen ( pVfs, pPager->zJournal, pPager->jfd, flags, nSpill ); } } assert( rc!=SQLITE_OK || isOpen(pPager->jfd) ); } /* Write the first journal header to the journal file and open ** the sub-journal if necessary. */ if( rc==SQLITE_OK ){ /* TODO: Check if all of these are really required. */ pPager->nRec = 0; pPager->journalOff = 0; pPager->setSuper = 0; pPager->journalHdr = 0; rc = writeJournalHdr(pPager); } } if( rc!=SQLITE_OK ){ sqlite3BitvecDestroy(pPager->pInJournal); pPager->pInJournal = 0; }else{ assert( pPager->eState==PAGER_WRITER_LOCKED ); pPager->eState = PAGER_WRITER_CACHEMOD; } return rc; } /* ** Begin a write-transaction on the specified pager object. If a ** write-transaction has already been opened, this function is a no-op. ** ** If the exFlag argument is false, then acquire at least a RESERVED ** lock on the database file. If exFlag is true, then acquire at least ** an EXCLUSIVE lock. If such a lock is already held, no locking ** functions need be called. ** ** If the subjInMemory argument is non-zero, then any sub-journal opened ** within this transaction will be opened as an in-memory file. This ** has no effect if the sub-journal is already opened (as it may be when ** running in exclusive mode) or if the transaction does not require a ** sub-journal. If the subjInMemory argument is zero, then any required ** sub-journal is implemented in-memory if pPager is an in-memory database, ** or using a temporary file otherwise. */ SQLITE_PRIVATE int sqlite3PagerBegin(Pager *pPager, int exFlag, int subjInMemory){ int rc = SQLITE_OK; if( pPager->errCode ) return pPager->errCode; assert( pPager->eState>=PAGER_READER && pPager->eStatesubjInMemory = (u8)subjInMemory; if( ALWAYS(pPager->eState==PAGER_READER) ){ assert( pPager->pInJournal==0 ); if( pagerUseWal(pPager) ){ /* If the pager is configured to use locking_mode=exclusive, and an ** exclusive lock on the database is not already held, obtain it now. */ if( pPager->exclusiveMode && sqlite3WalExclusiveMode(pPager->pWal, -1) ){ rc = pagerLockDb(pPager, EXCLUSIVE_LOCK); if( rc!=SQLITE_OK ){ return rc; } (void)sqlite3WalExclusiveMode(pPager->pWal, 1); } /* Grab the write lock on the log file. If successful, upgrade to ** PAGER_RESERVED state. Otherwise, return an error code to the caller. ** The busy-handler is not invoked if another connection already ** holds the write-lock. If possible, the upper layer will call it. */ rc = sqlite3WalBeginWriteTransaction(pPager->pWal); }else{ /* Obtain a RESERVED lock on the database file. If the exFlag parameter ** is true, then immediately upgrade this to an EXCLUSIVE lock. The ** busy-handler callback can be used when upgrading to the EXCLUSIVE ** lock, but not when obtaining the RESERVED lock. */ rc = pagerLockDb(pPager, RESERVED_LOCK); if( rc==SQLITE_OK && exFlag ){ rc = pager_wait_on_lock(pPager, EXCLUSIVE_LOCK); } } if( rc==SQLITE_OK ){ /* Change to WRITER_LOCKED state. ** ** WAL mode sets Pager.eState to PAGER_WRITER_LOCKED or CACHEMOD ** when it has an open transaction, but never to DBMOD or FINISHED. ** This is because in those states the code to roll back savepoint ** transactions may copy data from the sub-journal into the database ** file as well as into the page cache. Which would be incorrect in ** WAL mode. */ pPager->eState = PAGER_WRITER_LOCKED; pPager->dbHintSize = pPager->dbSize; pPager->dbFileSize = pPager->dbSize; pPager->dbOrigSize = pPager->dbSize; pPager->journalOff = 0; } assert( rc==SQLITE_OK || pPager->eState==PAGER_READER ); assert( rc!=SQLITE_OK || pPager->eState==PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); } PAGERTRACE(("TRANSACTION %d\n", PAGERID(pPager))); return rc; } /* ** Write page pPg onto the end of the rollback journal. */ static SQLITE_NOINLINE int pagerAddPageToRollbackJournal(PgHdr *pPg){ Pager *pPager = pPg->pPager; int rc; u32 cksum; char *pData2; i64 iOff = pPager->journalOff; /* We should never write to the journal file the page that ** contains the database locks. The following assert verifies ** that we do not. */ assert( pPg->pgno!=PAGER_MJ_PGNO(pPager) ); assert( pPager->journalHdr<=pPager->journalOff ); pData2 = pPg->pData; cksum = pager_cksum(pPager, (u8*)pData2); /* Even if an IO or diskfull error occurs while journalling the ** page in the block above, set the need-sync flag for the page. ** Otherwise, when the transaction is rolled back, the logic in ** playback_one_page() will think that the page needs to be restored ** in the database file. And if an IO error occurs while doing so, ** then corruption may follow. */ pPg->flags |= PGHDR_NEED_SYNC; rc = write32bits(pPager->jfd, iOff, pPg->pgno); if( rc!=SQLITE_OK ) return rc; rc = sqlite3OsWrite(pPager->jfd, pData2, pPager->pageSize, iOff+4); if( rc!=SQLITE_OK ) return rc; rc = write32bits(pPager->jfd, iOff+pPager->pageSize+4, cksum); if( rc!=SQLITE_OK ) return rc; IOTRACE(("JOUT %p %d %lld %d\n", pPager, pPg->pgno, pPager->journalOff, pPager->pageSize)); PAGER_INCR(sqlite3_pager_writej_count); PAGERTRACE(("JOURNAL %d page %d needSync=%d hash(%08x)\n", PAGERID(pPager), pPg->pgno, ((pPg->flags&PGHDR_NEED_SYNC)?1:0), pager_pagehash(pPg))); pPager->journalOff += 8 + pPager->pageSize; pPager->nRec++; assert( pPager->pInJournal!=0 ); rc = sqlite3BitvecSet(pPager->pInJournal, pPg->pgno); testcase( rc==SQLITE_NOMEM ); assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); rc |= addToSavepointBitvecs(pPager, pPg->pgno); assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); return rc; } /* ** Mark a single data page as writeable. The page is written into the ** main journal or sub-journal as required. If the page is written into ** one of the journals, the corresponding bit is set in the ** Pager.pInJournal bitvec and the PagerSavepoint.pInSavepoint bitvecs ** of any open savepoints as appropriate. */ static int pager_write(PgHdr *pPg){ Pager *pPager = pPg->pPager; int rc = SQLITE_OK; /* This routine is not called unless a write-transaction has already ** been started. The journal file may or may not be open at this point. ** It is never called in the ERROR state. */ assert( pPager->eState==PAGER_WRITER_LOCKED || pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD ); assert( assert_pager_state(pPager) ); assert( pPager->errCode==0 ); assert( pPager->readOnly==0 ); CHECK_PAGE(pPg); /* The journal file needs to be opened. Higher level routines have already ** obtained the necessary locks to begin the write-transaction, but the ** rollback journal might not yet be open. Open it now if this is the case. ** ** This is done before calling sqlite3PcacheMakeDirty() on the page. ** Otherwise, if it were done after calling sqlite3PcacheMakeDirty(), then ** an error might occur and the pager would end up in WRITER_LOCKED state ** with pages marked as dirty in the cache. */ if( pPager->eState==PAGER_WRITER_LOCKED ){ rc = pager_open_journal(pPager); if( rc!=SQLITE_OK ) return rc; } assert( pPager->eState>=PAGER_WRITER_CACHEMOD ); assert( assert_pager_state(pPager) ); /* Mark the page that is about to be modified as dirty. */ sqlite3PcacheMakeDirty(pPg); /* If a rollback journal is in use, them make sure the page that is about ** to change is in the rollback journal, or if the page is a new page off ** then end of the file, make sure it is marked as PGHDR_NEED_SYNC. */ assert( (pPager->pInJournal!=0) == isOpen(pPager->jfd) ); if( pPager->pInJournal!=0 && sqlite3BitvecTestNotNull(pPager->pInJournal, pPg->pgno)==0 ){ assert( pagerUseWal(pPager)==0 ); if( pPg->pgno<=pPager->dbOrigSize ){ rc = pagerAddPageToRollbackJournal(pPg); if( rc!=SQLITE_OK ){ return rc; } }else{ if( pPager->eState!=PAGER_WRITER_DBMOD ){ pPg->flags |= PGHDR_NEED_SYNC; } PAGERTRACE(("APPEND %d page %d needSync=%d\n", PAGERID(pPager), pPg->pgno, ((pPg->flags&PGHDR_NEED_SYNC)?1:0))); } } /* The PGHDR_DIRTY bit is set above when the page was added to the dirty-list ** and before writing the page into the rollback journal. Wait until now, ** after the page has been successfully journalled, before setting the ** PGHDR_WRITEABLE bit that indicates that the page can be safely modified. */ pPg->flags |= PGHDR_WRITEABLE; /* If the statement journal is open and the page is not in it, ** then write the page into the statement journal. */ if( pPager->nSavepoint>0 ){ rc = subjournalPageIfRequired(pPg); } /* Update the database size and return. */ if( pPager->dbSizepgno ){ pPager->dbSize = pPg->pgno; } return rc; } /* ** This is a variant of sqlite3PagerWrite() that runs when the sector size ** is larger than the page size. SQLite makes the (reasonable) assumption that ** all bytes of a sector are written together by hardware. Hence, all bytes of ** a sector need to be journalled in case of a power loss in the middle of ** a write. ** ** Usually, the sector size is less than or equal to the page size, in which ** case pages can be individually written. This routine only runs in the ** exceptional case where the page size is smaller than the sector size. */ static SQLITE_NOINLINE int pagerWriteLargeSector(PgHdr *pPg){ int rc = SQLITE_OK; /* Return code */ Pgno nPageCount; /* Total number of pages in database file */ Pgno pg1; /* First page of the sector pPg is located on. */ int nPage = 0; /* Number of pages starting at pg1 to journal */ int ii; /* Loop counter */ int needSync = 0; /* True if any page has PGHDR_NEED_SYNC */ Pager *pPager = pPg->pPager; /* The pager that owns pPg */ Pgno nPagePerSector = (pPager->sectorSize/pPager->pageSize); /* Set the doNotSpill NOSYNC bit to 1. This is because we cannot allow ** a journal header to be written between the pages journaled by ** this function. */ assert( !MEMDB ); assert( (pPager->doNotSpill & SPILLFLAG_NOSYNC)==0 ); pPager->doNotSpill |= SPILLFLAG_NOSYNC; /* This trick assumes that both the page-size and sector-size are ** an integer power of 2. It sets variable pg1 to the identifier ** of the first page of the sector pPg is located on. */ pg1 = ((pPg->pgno-1) & ~(nPagePerSector-1)) + 1; nPageCount = pPager->dbSize; if( pPg->pgno>nPageCount ){ nPage = (pPg->pgno - pg1)+1; }else if( (pg1+nPagePerSector-1)>nPageCount ){ nPage = nPageCount+1-pg1; }else{ nPage = nPagePerSector; } assert(nPage>0); assert(pg1<=pPg->pgno); assert((pg1+nPage)>pPg->pgno); for(ii=0; iipgno || !sqlite3BitvecTest(pPager->pInJournal, pg) ){ if( pg!=PAGER_MJ_PGNO(pPager) ){ rc = sqlite3PagerGet(pPager, pg, &pPage, 0); if( rc==SQLITE_OK ){ rc = pager_write(pPage); if( pPage->flags&PGHDR_NEED_SYNC ){ needSync = 1; } sqlite3PagerUnrefNotNull(pPage); } } }else if( (pPage = sqlite3PagerLookup(pPager, pg))!=0 ){ if( pPage->flags&PGHDR_NEED_SYNC ){ needSync = 1; } sqlite3PagerUnrefNotNull(pPage); } } /* If the PGHDR_NEED_SYNC flag is set for any of the nPage pages ** starting at pg1, then it needs to be set for all of them. Because ** writing to any of these nPage pages may damage the others, the ** journal file must contain sync()ed copies of all of them ** before any of them can be written out to the database file. */ if( rc==SQLITE_OK && needSync ){ assert( !MEMDB ); for(ii=0; iiflags |= PGHDR_NEED_SYNC; sqlite3PagerUnrefNotNull(pPage); } } } assert( (pPager->doNotSpill & SPILLFLAG_NOSYNC)!=0 ); pPager->doNotSpill &= ~SPILLFLAG_NOSYNC; return rc; } /* ** Mark a data page as writeable. This routine must be called before ** making changes to a page. The caller must check the return value ** of this function and be careful not to change any page data unless ** this routine returns SQLITE_OK. ** ** The difference between this function and pager_write() is that this ** function also deals with the special case where 2 or more pages ** fit on a single disk sector. In this case all co-resident pages ** must have been written to the journal file before returning. ** ** If an error occurs, SQLITE_NOMEM or an IO error code is returned ** as appropriate. Otherwise, SQLITE_OK. */ SQLITE_PRIVATE int sqlite3PagerWrite(PgHdr *pPg){ Pager *pPager = pPg->pPager; assert( (pPg->flags & PGHDR_MMAP)==0 ); assert( pPager->eState>=PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); if( (pPg->flags & PGHDR_WRITEABLE)!=0 && pPager->dbSize>=pPg->pgno ){ if( pPager->nSavepoint ) return subjournalPageIfRequired(pPg); return SQLITE_OK; }else if( pPager->errCode ){ return pPager->errCode; }else if( pPager->sectorSize > (u32)pPager->pageSize ){ assert( pPager->tempFile==0 ); return pagerWriteLargeSector(pPg); }else{ return pager_write(pPg); } } /* ** Return TRUE if the page given in the argument was previously passed ** to sqlite3PagerWrite(). In other words, return TRUE if it is ok ** to change the content of the page. */ #ifndef NDEBUG SQLITE_PRIVATE int sqlite3PagerIswriteable(DbPage *pPg){ return pPg->flags & PGHDR_WRITEABLE; } #endif /* ** A call to this routine tells the pager that it is not necessary to ** write the information on page pPg back to the disk, even though ** that page might be marked as dirty. This happens, for example, when ** the page has been added as a leaf of the freelist and so its ** content no longer matters. ** ** The overlying software layer calls this routine when all of the data ** on the given page is unused. The pager marks the page as clean so ** that it does not get written to disk. ** ** Tests show that this optimization can quadruple the speed of large ** DELETE operations. ** ** This optimization cannot be used with a temp-file, as the page may ** have been dirty at the start of the transaction. In that case, if ** memory pressure forces page pPg out of the cache, the data does need ** to be written out to disk so that it may be read back in if the ** current transaction is rolled back. */ SQLITE_PRIVATE void sqlite3PagerDontWrite(PgHdr *pPg){ Pager *pPager = pPg->pPager; if( !pPager->tempFile && (pPg->flags&PGHDR_DIRTY) && pPager->nSavepoint==0 ){ PAGERTRACE(("DONT_WRITE page %d of %d\n", pPg->pgno, PAGERID(pPager))); IOTRACE(("CLEAN %p %d\n", pPager, pPg->pgno)) pPg->flags |= PGHDR_DONT_WRITE; pPg->flags &= ~PGHDR_WRITEABLE; testcase( pPg->flags & PGHDR_NEED_SYNC ); pager_set_pagehash(pPg); } } /* ** This routine is called to increment the value of the database file ** change-counter, stored as a 4-byte big-endian integer starting at ** byte offset 24 of the pager file. The secondary change counter at ** 92 is also updated, as is the SQLite version number at offset 96. ** ** But this only happens if the pPager->changeCountDone flag is false. ** To avoid excess churning of page 1, the update only happens once. ** See also the pager_write_changecounter() routine that does an ** unconditional update of the change counters. ** ** If the isDirectMode flag is zero, then this is done by calling ** sqlite3PagerWrite() on page 1, then modifying the contents of the ** page data. In this case the file will be updated when the current ** transaction is committed. ** ** The isDirectMode flag may only be non-zero if the library was compiled ** with the SQLITE_ENABLE_ATOMIC_WRITE macro defined. In this case, ** if isDirect is non-zero, then the database file is updated directly ** by writing an updated version of page 1 using a call to the ** sqlite3OsWrite() function. */ static int pager_incr_changecounter(Pager *pPager, int isDirectMode){ int rc = SQLITE_OK; assert( pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD ); assert( assert_pager_state(pPager) ); /* Declare and initialize constant integer 'isDirect'. If the ** atomic-write optimization is enabled in this build, then isDirect ** is initialized to the value passed as the isDirectMode parameter ** to this function. Otherwise, it is always set to zero. ** ** The idea is that if the atomic-write optimization is not ** enabled at compile time, the compiler can omit the tests of ** 'isDirect' below, as well as the block enclosed in the ** "if( isDirect )" condition. */ #ifndef SQLITE_ENABLE_ATOMIC_WRITE # define DIRECT_MODE 0 assert( isDirectMode==0 ); UNUSED_PARAMETER(isDirectMode); #else # define DIRECT_MODE isDirectMode #endif if( !pPager->changeCountDone && ALWAYS(pPager->dbSize>0) ){ PgHdr *pPgHdr; /* Reference to page 1 */ assert( !pPager->tempFile && isOpen(pPager->fd) ); /* Open page 1 of the file for writing. */ rc = sqlite3PagerGet(pPager, 1, &pPgHdr, 0); assert( pPgHdr==0 || rc==SQLITE_OK ); /* If page one was fetched successfully, and this function is not ** operating in direct-mode, make page 1 writable. When not in ** direct mode, page 1 is always held in cache and hence the PagerGet() ** above is always successful - hence the ALWAYS on rc==SQLITE_OK. */ if( !DIRECT_MODE && ALWAYS(rc==SQLITE_OK) ){ rc = sqlite3PagerWrite(pPgHdr); } if( rc==SQLITE_OK ){ /* Actually do the update of the change counter */ pager_write_changecounter(pPgHdr); /* If running in direct mode, write the contents of page 1 to the file. */ if( DIRECT_MODE ){ const void *zBuf; assert( pPager->dbFileSize>0 ); zBuf = pPgHdr->pData; if( rc==SQLITE_OK ){ rc = sqlite3OsWrite(pPager->fd, zBuf, pPager->pageSize, 0); pPager->aStat[PAGER_STAT_WRITE]++; } if( rc==SQLITE_OK ){ /* Update the pager's copy of the change-counter. Otherwise, the ** next time a read transaction is opened the cache will be ** flushed (as the change-counter values will not match). */ const void *pCopy = (const void *)&((const char *)zBuf)[24]; memcpy(&pPager->dbFileVers, pCopy, sizeof(pPager->dbFileVers)); pPager->changeCountDone = 1; } }else{ pPager->changeCountDone = 1; } } /* Release the page reference. */ sqlite3PagerUnref(pPgHdr); } return rc; } /* ** Sync the database file to disk. This is a no-op for in-memory databases ** or pages with the Pager.noSync flag set. ** ** If successful, or if called on a pager for which it is a no-op, this ** function returns SQLITE_OK. Otherwise, an IO error code is returned. */ SQLITE_PRIVATE int sqlite3PagerSync(Pager *pPager, const char *zSuper){ int rc = SQLITE_OK; void *pArg = (void*)zSuper; rc = sqlite3OsFileControl(pPager->fd, SQLITE_FCNTL_SYNC, pArg); if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; if( rc==SQLITE_OK && !pPager->noSync ){ assert( !MEMDB ); rc = sqlite3OsSync(pPager->fd, pPager->syncFlags); } return rc; } /* ** This function may only be called while a write-transaction is active in ** rollback. If the connection is in WAL mode, this call is a no-op. ** Otherwise, if the connection does not already have an EXCLUSIVE lock on ** the database file, an attempt is made to obtain one. ** ** If the EXCLUSIVE lock is already held or the attempt to obtain it is ** successful, or the connection is in WAL mode, SQLITE_OK is returned. ** Otherwise, either SQLITE_BUSY or an SQLITE_IOERR_XXX error code is ** returned. */ SQLITE_PRIVATE int sqlite3PagerExclusiveLock(Pager *pPager){ int rc = pPager->errCode; assert( assert_pager_state(pPager) ); if( rc==SQLITE_OK ){ assert( pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD || pPager->eState==PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); if( 0==pagerUseWal(pPager) ){ rc = pager_wait_on_lock(pPager, EXCLUSIVE_LOCK); } } return rc; } /* ** Sync the database file for the pager pPager. zSuper points to the name ** of a super-journal file that should be written into the individual ** journal file. zSuper may be NULL, which is interpreted as no ** super-journal (a single database transaction). ** ** This routine ensures that: ** ** * The database file change-counter is updated, ** * the journal is synced (unless the atomic-write optimization is used), ** * all dirty pages are written to the database file, ** * the database file is truncated (if required), and ** * the database file synced. ** ** The only thing that remains to commit the transaction is to finalize ** (delete, truncate or zero the first part of) the journal file (or ** delete the super-journal file if specified). ** ** Note that if zSuper==NULL, this does not overwrite a previous value ** passed to an sqlite3PagerCommitPhaseOne() call. ** ** If the final parameter - noSync - is true, then the database file itself ** is not synced. The caller must call sqlite3PagerSync() directly to ** sync the database file before calling CommitPhaseTwo() to delete the ** journal file in this case. */ SQLITE_PRIVATE int sqlite3PagerCommitPhaseOne( Pager *pPager, /* Pager object */ const char *zSuper, /* If not NULL, the super-journal name */ int noSync /* True to omit the xSync on the db file */ ){ int rc = SQLITE_OK; /* Return code */ assert( pPager->eState==PAGER_WRITER_LOCKED || pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD || pPager->eState==PAGER_ERROR ); assert( assert_pager_state(pPager) ); /* If a prior error occurred, report that error again. */ if( NEVER(pPager->errCode) ) return pPager->errCode; /* Provide the ability to easily simulate an I/O error during testing */ if( sqlite3FaultSim(400) ) return SQLITE_IOERR; PAGERTRACE(("DATABASE SYNC: File=%s zSuper=%s nSize=%d\n", pPager->zFilename, zSuper, pPager->dbSize)); /* If no database changes have been made, return early. */ if( pPager->eStatetempFile ); assert( isOpen(pPager->fd) || pPager->tempFile ); if( 0==pagerFlushOnCommit(pPager, 1) ){ /* If this is an in-memory db, or no pages have been written to, or this ** function has already been called, it is mostly a no-op. However, any ** backup in progress needs to be restarted. */ sqlite3BackupRestart(pPager->pBackup); }else{ PgHdr *pList; if( pagerUseWal(pPager) ){ PgHdr *pPageOne = 0; pList = sqlite3PcacheDirtyList(pPager->pPCache); if( pList==0 ){ /* Must have at least one page for the WAL commit flag. ** Ticket [2d1a5c67dfc2363e44f29d9bbd57f] 2011-05-18 */ rc = sqlite3PagerGet(pPager, 1, &pPageOne, 0); pList = pPageOne; pList->pDirty = 0; } assert( rc==SQLITE_OK ); if( ALWAYS(pList) ){ rc = pagerWalFrames(pPager, pList, pPager->dbSize, 1); } sqlite3PagerUnref(pPageOne); if( rc==SQLITE_OK ){ sqlite3PcacheCleanAll(pPager->pPCache); } }else{ /* The bBatch boolean is true if the batch-atomic-write commit method ** should be used. No rollback journal is created if batch-atomic-write ** is enabled. */ #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE sqlite3_file *fd = pPager->fd; int bBatch = zSuper==0 /* An SQLITE_IOCAP_BATCH_ATOMIC commit */ && (sqlite3OsDeviceCharacteristics(fd) & SQLITE_IOCAP_BATCH_ATOMIC) && !pPager->noSync && sqlite3JournalIsInMemory(pPager->jfd); #else # define bBatch 0 #endif #ifdef SQLITE_ENABLE_ATOMIC_WRITE /* The following block updates the change-counter. Exactly how it ** does this depends on whether or not the atomic-update optimization ** was enabled at compile time, and if this transaction meets the ** runtime criteria to use the operation: ** ** * The file-system supports the atomic-write property for ** blocks of size page-size, and ** * This commit is not part of a multi-file transaction, and ** * Exactly one page has been modified and store in the journal file. ** ** If the optimization was not enabled at compile time, then the ** pager_incr_changecounter() function is called to update the change ** counter in 'indirect-mode'. If the optimization is compiled in but ** is not applicable to this transaction, call sqlite3JournalCreate() ** to make sure the journal file has actually been created, then call ** pager_incr_changecounter() to update the change-counter in indirect ** mode. ** ** Otherwise, if the optimization is both enabled and applicable, ** then call pager_incr_changecounter() to update the change-counter ** in 'direct' mode. In this case the journal file will never be ** created for this transaction. */ if( bBatch==0 ){ PgHdr *pPg; assert( isOpen(pPager->jfd) || pPager->journalMode==PAGER_JOURNALMODE_OFF || pPager->journalMode==PAGER_JOURNALMODE_WAL ); if( !zSuper && isOpen(pPager->jfd) && pPager->journalOff==jrnlBufferSize(pPager) && pPager->dbSize>=pPager->dbOrigSize && (!(pPg = sqlite3PcacheDirtyList(pPager->pPCache)) || 0==pPg->pDirty) ){ /* Update the db file change counter via the direct-write method. The ** following call will modify the in-memory representation of page 1 ** to include the updated change counter and then write page 1 ** directly to the database file. Because of the atomic-write ** property of the host file-system, this is safe. */ rc = pager_incr_changecounter(pPager, 1); }else{ rc = sqlite3JournalCreate(pPager->jfd); if( rc==SQLITE_OK ){ rc = pager_incr_changecounter(pPager, 0); } } } #else /* SQLITE_ENABLE_ATOMIC_WRITE */ #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE if( zSuper ){ rc = sqlite3JournalCreate(pPager->jfd); if( rc!=SQLITE_OK ) goto commit_phase_one_exit; assert( bBatch==0 ); } #endif rc = pager_incr_changecounter(pPager, 0); #endif /* !SQLITE_ENABLE_ATOMIC_WRITE */ if( rc!=SQLITE_OK ) goto commit_phase_one_exit; /* Write the super-journal name into the journal file. If a ** super-journal file name has already been written to the journal file, ** or if zSuper is NULL (no super-journal), then this call is a no-op. */ rc = writeSuperJournal(pPager, zSuper); if( rc!=SQLITE_OK ) goto commit_phase_one_exit; /* Sync the journal file and write all dirty pages to the database. ** If the atomic-update optimization is being used, this sync will not ** create the journal file or perform any real IO. ** ** Because the change-counter page was just modified, unless the ** atomic-update optimization is used it is almost certain that the ** journal requires a sync here. However, in locking_mode=exclusive ** on a system under memory pressure it is just possible that this is ** not the case. In this case it is likely enough that the redundant ** xSync() call will be changed to a no-op by the OS anyhow. */ rc = syncJournal(pPager, 0); if( rc!=SQLITE_OK ) goto commit_phase_one_exit; pList = sqlite3PcacheDirtyList(pPager->pPCache); #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE if( bBatch ){ rc = sqlite3OsFileControl(fd, SQLITE_FCNTL_BEGIN_ATOMIC_WRITE, 0); if( rc==SQLITE_OK ){ rc = pager_write_pagelist(pPager, pList); if( rc==SQLITE_OK ){ rc = sqlite3OsFileControl(fd, SQLITE_FCNTL_COMMIT_ATOMIC_WRITE, 0); } if( rc!=SQLITE_OK ){ sqlite3OsFileControlHint(fd, SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE, 0); } } if( (rc&0xFF)==SQLITE_IOERR && rc!=SQLITE_IOERR_NOMEM ){ rc = sqlite3JournalCreate(pPager->jfd); if( rc!=SQLITE_OK ){ sqlite3OsClose(pPager->jfd); goto commit_phase_one_exit; } bBatch = 0; }else{ sqlite3OsClose(pPager->jfd); } } #endif /* SQLITE_ENABLE_BATCH_ATOMIC_WRITE */ if( bBatch==0 ){ rc = pager_write_pagelist(pPager, pList); } if( rc!=SQLITE_OK ){ assert( rc!=SQLITE_IOERR_BLOCKED ); goto commit_phase_one_exit; } sqlite3PcacheCleanAll(pPager->pPCache); /* If the file on disk is smaller than the database image, use ** pager_truncate to grow the file here. This can happen if the database ** image was extended as part of the current transaction and then the ** last page in the db image moved to the free-list. In this case the ** last page is never written out to disk, leaving the database file ** undersized. Fix this now if it is the case. */ if( pPager->dbSize>pPager->dbFileSize ){ Pgno nNew = pPager->dbSize - (pPager->dbSize==PAGER_MJ_PGNO(pPager)); assert( pPager->eState==PAGER_WRITER_DBMOD ); rc = pager_truncate(pPager, nNew); if( rc!=SQLITE_OK ) goto commit_phase_one_exit; } /* Finally, sync the database file. */ if( !noSync ){ rc = sqlite3PagerSync(pPager, zSuper); } IOTRACE(("DBSYNC %p\n", pPager)) } } commit_phase_one_exit: if( rc==SQLITE_OK && !pagerUseWal(pPager) ){ pPager->eState = PAGER_WRITER_FINISHED; } return rc; } /* ** When this function is called, the database file has been completely ** updated to reflect the changes made by the current transaction and ** synced to disk. The journal file still exists in the file-system ** though, and if a failure occurs at this point it will eventually ** be used as a hot-journal and the current transaction rolled back. ** ** This function finalizes the journal file, either by deleting, ** truncating or partially zeroing it, so that it cannot be used ** for hot-journal rollback. Once this is done the transaction is ** irrevocably committed. ** ** If an error occurs, an IO error code is returned and the pager ** moves into the error state. Otherwise, SQLITE_OK is returned. */ SQLITE_PRIVATE int sqlite3PagerCommitPhaseTwo(Pager *pPager){ int rc = SQLITE_OK; /* Return code */ /* This routine should not be called if a prior error has occurred. ** But if (due to a coding error elsewhere in the system) it does get ** called, just return the same error code without doing anything. */ if( NEVER(pPager->errCode) ) return pPager->errCode; pPager->iDataVersion++; assert( pPager->eState==PAGER_WRITER_LOCKED || pPager->eState==PAGER_WRITER_FINISHED || (pagerUseWal(pPager) && pPager->eState==PAGER_WRITER_CACHEMOD) ); assert( assert_pager_state(pPager) ); /* An optimization. If the database was not actually modified during ** this transaction, the pager is running in exclusive-mode and is ** using persistent journals, then this function is a no-op. ** ** The start of the journal file currently contains a single journal ** header with the nRec field set to 0. If such a journal is used as ** a hot-journal during hot-journal rollback, 0 changes will be made ** to the database file. So there is no need to zero the journal ** header. Since the pager is in exclusive mode, there is no need ** to drop any locks either. */ if( pPager->eState==PAGER_WRITER_LOCKED && pPager->exclusiveMode && pPager->journalMode==PAGER_JOURNALMODE_PERSIST ){ assert( pPager->journalOff==JOURNAL_HDR_SZ(pPager) || !pPager->journalOff ); pPager->eState = PAGER_READER; return SQLITE_OK; } PAGERTRACE(("COMMIT %d\n", PAGERID(pPager))); rc = pager_end_transaction(pPager, pPager->setSuper, 1); return pager_error(pPager, rc); } /* ** If a write transaction is open, then all changes made within the ** transaction are reverted and the current write-transaction is closed. ** The pager falls back to PAGER_READER state if successful, or PAGER_ERROR ** state if an error occurs. ** ** If the pager is already in PAGER_ERROR state when this function is called, ** it returns Pager.errCode immediately. No work is performed in this case. ** ** Otherwise, in rollback mode, this function performs two functions: ** ** 1) It rolls back the journal file, restoring all database file and ** in-memory cache pages to the state they were in when the transaction ** was opened, and ** ** 2) It finalizes the journal file, so that it is not used for hot ** rollback at any point in the future. ** ** Finalization of the journal file (task 2) is only performed if the ** rollback is successful. ** ** In WAL mode, all cache-entries containing data modified within the ** current transaction are either expelled from the cache or reverted to ** their pre-transaction state by re-reading data from the database or ** WAL files. The WAL transaction is then closed. */ SQLITE_PRIVATE int sqlite3PagerRollback(Pager *pPager){ int rc = SQLITE_OK; /* Return code */ PAGERTRACE(("ROLLBACK %d\n", PAGERID(pPager))); /* PagerRollback() is a no-op if called in READER or OPEN state. If ** the pager is already in the ERROR state, the rollback is not ** attempted here. Instead, the error code is returned to the caller. */ assert( assert_pager_state(pPager) ); if( pPager->eState==PAGER_ERROR ) return pPager->errCode; if( pPager->eState<=PAGER_READER ) return SQLITE_OK; if( pagerUseWal(pPager) ){ int rc2; rc = sqlite3PagerSavepoint(pPager, SAVEPOINT_ROLLBACK, -1); rc2 = pager_end_transaction(pPager, pPager->setSuper, 0); if( rc==SQLITE_OK ) rc = rc2; }else if( !isOpen(pPager->jfd) || pPager->eState==PAGER_WRITER_LOCKED ){ int eState = pPager->eState; rc = pager_end_transaction(pPager, 0, 0); if( !MEMDB && eState>PAGER_WRITER_LOCKED ){ /* This can happen using journal_mode=off. Move the pager to the error ** state to indicate that the contents of the cache may not be trusted. ** Any active readers will get SQLITE_ABORT. */ pPager->errCode = SQLITE_ABORT; pPager->eState = PAGER_ERROR; setGetterMethod(pPager); return rc; } }else{ rc = pager_playback(pPager, 0); } assert( pPager->eState==PAGER_READER || rc!=SQLITE_OK ); assert( rc==SQLITE_OK || rc==SQLITE_FULL || rc==SQLITE_CORRUPT || rc==SQLITE_NOMEM || (rc&0xFF)==SQLITE_IOERR || rc==SQLITE_CANTOPEN ); /* If an error occurs during a ROLLBACK, we can no longer trust the pager ** cache. So call pager_error() on the way out to make any error persistent. */ return pager_error(pPager, rc); } /* ** Return TRUE if the database file is opened read-only. Return FALSE ** if the database is (in theory) writable. */ SQLITE_PRIVATE u8 sqlite3PagerIsreadonly(Pager *pPager){ return pPager->readOnly; } #ifdef SQLITE_DEBUG /* ** Return the sum of the reference counts for all pages held by pPager. */ SQLITE_PRIVATE int sqlite3PagerRefcount(Pager *pPager){ return sqlite3PcacheRefCount(pPager->pPCache); } #endif /* ** Return the approximate number of bytes of memory currently ** used by the pager and its associated cache. */ SQLITE_PRIVATE int sqlite3PagerMemUsed(Pager *pPager){ int perPageSize = pPager->pageSize + pPager->nExtra + sizeof(PgHdr) + 5*sizeof(void*); return perPageSize*sqlite3PcachePagecount(pPager->pPCache) + sqlite3MallocSize(pPager) + pPager->pageSize; } /* ** Return the number of references to the specified page. */ SQLITE_PRIVATE int sqlite3PagerPageRefcount(DbPage *pPage){ return sqlite3PcachePageRefcount(pPage); } #ifdef SQLITE_TEST /* ** This routine is used for testing and analysis only. */ SQLITE_PRIVATE int *sqlite3PagerStats(Pager *pPager){ static int a[11]; a[0] = sqlite3PcacheRefCount(pPager->pPCache); a[1] = sqlite3PcachePagecount(pPager->pPCache); a[2] = sqlite3PcacheGetCachesize(pPager->pPCache); a[3] = pPager->eState==PAGER_OPEN ? -1 : (int) pPager->dbSize; a[4] = pPager->eState; a[5] = pPager->errCode; a[6] = pPager->aStat[PAGER_STAT_HIT]; a[7] = pPager->aStat[PAGER_STAT_MISS]; a[8] = 0; /* Used to be pPager->nOvfl */ a[9] = pPager->nRead; a[10] = pPager->aStat[PAGER_STAT_WRITE]; return a; } #endif /* ** Parameter eStat must be one of SQLITE_DBSTATUS_CACHE_HIT, _MISS, _WRITE, ** or _WRITE+1. The SQLITE_DBSTATUS_CACHE_WRITE+1 case is a translation ** of SQLITE_DBSTATUS_CACHE_SPILL. The _SPILL case is not contiguous because ** it was added later. ** ** Before returning, *pnVal is incremented by the ** current cache hit or miss count, according to the value of eStat. If the ** reset parameter is non-zero, the cache hit or miss count is zeroed before ** returning. */ SQLITE_PRIVATE void sqlite3PagerCacheStat(Pager *pPager, int eStat, int reset, int *pnVal){ assert( eStat==SQLITE_DBSTATUS_CACHE_HIT || eStat==SQLITE_DBSTATUS_CACHE_MISS || eStat==SQLITE_DBSTATUS_CACHE_WRITE || eStat==SQLITE_DBSTATUS_CACHE_WRITE+1 ); assert( SQLITE_DBSTATUS_CACHE_HIT+1==SQLITE_DBSTATUS_CACHE_MISS ); assert( SQLITE_DBSTATUS_CACHE_HIT+2==SQLITE_DBSTATUS_CACHE_WRITE ); assert( PAGER_STAT_HIT==0 && PAGER_STAT_MISS==1 && PAGER_STAT_WRITE==2 && PAGER_STAT_SPILL==3 ); eStat -= SQLITE_DBSTATUS_CACHE_HIT; *pnVal += pPager->aStat[eStat]; if( reset ){ pPager->aStat[eStat] = 0; } } /* ** Return true if this is an in-memory or temp-file backed pager. */ SQLITE_PRIVATE int sqlite3PagerIsMemdb(Pager *pPager){ return pPager->tempFile; } /* ** Check that there are at least nSavepoint savepoints open. If there are ** currently less than nSavepoints open, then open one or more savepoints ** to make up the difference. If the number of savepoints is already ** equal to nSavepoint, then this function is a no-op. ** ** If a memory allocation fails, SQLITE_NOMEM is returned. If an error ** occurs while opening the sub-journal file, then an IO error code is ** returned. Otherwise, SQLITE_OK. */ static SQLITE_NOINLINE int pagerOpenSavepoint(Pager *pPager, int nSavepoint){ int rc = SQLITE_OK; /* Return code */ int nCurrent = pPager->nSavepoint; /* Current number of savepoints */ int ii; /* Iterator variable */ PagerSavepoint *aNew; /* New Pager.aSavepoint array */ assert( pPager->eState>=PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); assert( nSavepoint>nCurrent && pPager->useJournal ); /* Grow the Pager.aSavepoint array using realloc(). Return SQLITE_NOMEM ** if the allocation fails. Otherwise, zero the new portion in case a ** malloc failure occurs while populating it in the for(...) loop below. */ aNew = (PagerSavepoint *)sqlite3Realloc( pPager->aSavepoint, sizeof(PagerSavepoint)*nSavepoint ); if( !aNew ){ return SQLITE_NOMEM_BKPT; } memset(&aNew[nCurrent], 0, (nSavepoint-nCurrent) * sizeof(PagerSavepoint)); pPager->aSavepoint = aNew; /* Populate the PagerSavepoint structures just allocated. */ for(ii=nCurrent; iidbSize; if( isOpen(pPager->jfd) && pPager->journalOff>0 ){ aNew[ii].iOffset = pPager->journalOff; }else{ aNew[ii].iOffset = JOURNAL_HDR_SZ(pPager); } aNew[ii].iSubRec = pPager->nSubRec; aNew[ii].pInSavepoint = sqlite3BitvecCreate(pPager->dbSize); if( !aNew[ii].pInSavepoint ){ return SQLITE_NOMEM_BKPT; } if( pagerUseWal(pPager) ){ sqlite3WalSavepoint(pPager->pWal, aNew[ii].aWalData); } pPager->nSavepoint = ii+1; } assert( pPager->nSavepoint==nSavepoint ); assertTruncateConstraint(pPager); return rc; } SQLITE_PRIVATE int sqlite3PagerOpenSavepoint(Pager *pPager, int nSavepoint){ assert( pPager->eState>=PAGER_WRITER_LOCKED ); assert( assert_pager_state(pPager) ); if( nSavepoint>pPager->nSavepoint && pPager->useJournal ){ return pagerOpenSavepoint(pPager, nSavepoint); }else{ return SQLITE_OK; } } /* ** This function is called to rollback or release (commit) a savepoint. ** The savepoint to release or rollback need not be the most recently ** created savepoint. ** ** Parameter op is always either SAVEPOINT_ROLLBACK or SAVEPOINT_RELEASE. ** If it is SAVEPOINT_RELEASE, then release and destroy the savepoint with ** index iSavepoint. If it is SAVEPOINT_ROLLBACK, then rollback all changes ** that have occurred since the specified savepoint was created. ** ** The savepoint to rollback or release is identified by parameter ** iSavepoint. A value of 0 means to operate on the outermost savepoint ** (the first created). A value of (Pager.nSavepoint-1) means operate ** on the most recently created savepoint. If iSavepoint is greater than ** (Pager.nSavepoint-1), then this function is a no-op. ** ** If a negative value is passed to this function, then the current ** transaction is rolled back. This is different to calling ** sqlite3PagerRollback() because this function does not terminate ** the transaction or unlock the database, it just restores the ** contents of the database to its original state. ** ** In any case, all savepoints with an index greater than iSavepoint ** are destroyed. If this is a release operation (op==SAVEPOINT_RELEASE), ** then savepoint iSavepoint is also destroyed. ** ** This function may return SQLITE_NOMEM if a memory allocation fails, ** or an IO error code if an IO error occurs while rolling back a ** savepoint. If no errors occur, SQLITE_OK is returned. */ SQLITE_PRIVATE int sqlite3PagerSavepoint(Pager *pPager, int op, int iSavepoint){ int rc = pPager->errCode; #ifdef SQLITE_ENABLE_ZIPVFS if( op==SAVEPOINT_RELEASE ) rc = SQLITE_OK; #endif assert( op==SAVEPOINT_RELEASE || op==SAVEPOINT_ROLLBACK ); assert( iSavepoint>=0 || op==SAVEPOINT_ROLLBACK ); if( rc==SQLITE_OK && iSavepointnSavepoint ){ int ii; /* Iterator variable */ int nNew; /* Number of remaining savepoints after this op. */ /* Figure out how many savepoints will still be active after this ** operation. Store this value in nNew. Then free resources associated ** with any savepoints that are destroyed by this operation. */ nNew = iSavepoint + (( op==SAVEPOINT_RELEASE ) ? 0 : 1); for(ii=nNew; iinSavepoint; ii++){ sqlite3BitvecDestroy(pPager->aSavepoint[ii].pInSavepoint); } pPager->nSavepoint = nNew; /* If this is a release of the outermost savepoint, truncate ** the sub-journal to zero bytes in size. */ if( op==SAVEPOINT_RELEASE ){ if( nNew==0 && isOpen(pPager->sjfd) ){ /* Only truncate if it is an in-memory sub-journal. */ if( sqlite3JournalIsInMemory(pPager->sjfd) ){ rc = sqlite3OsTruncate(pPager->sjfd, 0); assert( rc==SQLITE_OK ); } pPager->nSubRec = 0; } } /* Else this is a rollback operation, playback the specified savepoint. ** If this is a temp-file, it is possible that the journal file has ** not yet been opened. In this case there have been no changes to ** the database file, so the playback operation can be skipped. */ else if( pagerUseWal(pPager) || isOpen(pPager->jfd) ){ PagerSavepoint *pSavepoint = (nNew==0)?0:&pPager->aSavepoint[nNew-1]; rc = pagerPlaybackSavepoint(pPager, pSavepoint); assert(rc!=SQLITE_DONE); } #ifdef SQLITE_ENABLE_ZIPVFS /* If the cache has been modified but the savepoint cannot be rolled ** back journal_mode=off, put the pager in the error state. This way, ** if the VFS used by this pager includes ZipVFS, the entire transaction ** can be rolled back at the ZipVFS level. */ else if( pPager->journalMode==PAGER_JOURNALMODE_OFF && pPager->eState>=PAGER_WRITER_CACHEMOD ){ pPager->errCode = SQLITE_ABORT; pPager->eState = PAGER_ERROR; setGetterMethod(pPager); } #endif } return rc; } /* ** Return the full pathname of the database file. ** ** Except, if the pager is in-memory only, then return an empty string if ** nullIfMemDb is true. This routine is called with nullIfMemDb==1 when ** used to report the filename to the user, for compatibility with legacy ** behavior. But when the Btree needs to know the filename for matching to ** shared cache, it uses nullIfMemDb==0 so that in-memory databases can ** participate in shared-cache. ** ** The return value to this routine is always safe to use with ** sqlite3_uri_parameter() and sqlite3_filename_database() and friends. */ SQLITE_PRIVATE const char *sqlite3PagerFilename(const Pager *pPager, int nullIfMemDb){ static const char zFake[8] = { 0, 0, 0, 0, 0, 0, 0, 0 }; return (nullIfMemDb && pPager->memDb) ? &zFake[4] : pPager->zFilename; } /* ** Return the VFS structure for the pager. */ SQLITE_PRIVATE sqlite3_vfs *sqlite3PagerVfs(Pager *pPager){ return pPager->pVfs; } /* ** Return the file handle for the database file associated ** with the pager. This might return NULL if the file has ** not yet been opened. */ SQLITE_PRIVATE sqlite3_file *sqlite3PagerFile(Pager *pPager){ return pPager->fd; } /* ** Return the file handle for the journal file (if it exists). ** This will be either the rollback journal or the WAL file. */ SQLITE_PRIVATE sqlite3_file *sqlite3PagerJrnlFile(Pager *pPager){ #if SQLITE_OMIT_WAL return pPager->jfd; #else return pPager->pWal ? sqlite3WalFile(pPager->pWal) : pPager->jfd; #endif } /* ** Return the full pathname of the journal file. */ SQLITE_PRIVATE const char *sqlite3PagerJournalname(Pager *pPager){ return pPager->zJournal; } #ifndef SQLITE_OMIT_AUTOVACUUM /* ** Move the page pPg to location pgno in the file. ** ** There must be no references to the page previously located at ** pgno (which we call pPgOld) though that page is allowed to be ** in cache. If the page previously located at pgno is not already ** in the rollback journal, it is not put there by by this routine. ** ** References to the page pPg remain valid. Updating any ** meta-data associated with pPg (i.e. data stored in the nExtra bytes ** allocated along with the page) is the responsibility of the caller. ** ** A transaction must be active when this routine is called. It used to be ** required that a statement transaction was not active, but this restriction ** has been removed (CREATE INDEX needs to move a page when a statement ** transaction is active). ** ** If the fourth argument, isCommit, is non-zero, then this page is being ** moved as part of a database reorganization just before the transaction ** is being committed. In this case, it is guaranteed that the database page ** pPg refers to will not be written to again within this transaction. ** ** This function may return SQLITE_NOMEM or an IO error code if an error ** occurs. Otherwise, it returns SQLITE_OK. */ SQLITE_PRIVATE int sqlite3PagerMovepage(Pager *pPager, DbPage *pPg, Pgno pgno, int isCommit){ PgHdr *pPgOld; /* The page being overwritten. */ Pgno needSyncPgno = 0; /* Old value of pPg->pgno, if sync is required */ int rc; /* Return code */ Pgno origPgno; /* The original page number */ assert( pPg->nRef>0 ); assert( pPager->eState==PAGER_WRITER_CACHEMOD || pPager->eState==PAGER_WRITER_DBMOD ); assert( assert_pager_state(pPager) ); /* In order to be able to rollback, an in-memory database must journal ** the page we are moving from. */ assert( pPager->tempFile || !MEMDB ); if( pPager->tempFile ){ rc = sqlite3PagerWrite(pPg); if( rc ) return rc; } /* If the page being moved is dirty and has not been saved by the latest ** savepoint, then save the current contents of the page into the ** sub-journal now. This is required to handle the following scenario: ** ** BEGIN; ** ** SAVEPOINT one; ** ** ROLLBACK TO one; ** ** If page X were not written to the sub-journal here, it would not ** be possible to restore its contents when the "ROLLBACK TO one" ** statement were is processed. ** ** subjournalPage() may need to allocate space to store pPg->pgno into ** one or more savepoint bitvecs. This is the reason this function ** may return SQLITE_NOMEM. */ if( (pPg->flags & PGHDR_DIRTY)!=0 && SQLITE_OK!=(rc = subjournalPageIfRequired(pPg)) ){ return rc; } PAGERTRACE(("MOVE %d page %d (needSync=%d) moves to %d\n", PAGERID(pPager), pPg->pgno, (pPg->flags&PGHDR_NEED_SYNC)?1:0, pgno)); IOTRACE(("MOVE %p %d %d\n", pPager, pPg->pgno, pgno)) /* If the journal needs to be sync()ed before page pPg->pgno can ** be written to, store pPg->pgno in local variable needSyncPgno. ** ** If the isCommit flag is set, there is no need to remember that ** the journal needs to be sync()ed before database page pPg->pgno ** can be written to. The caller has already promised not to write to it. */ if( (pPg->flags&PGHDR_NEED_SYNC) && !isCommit ){ needSyncPgno = pPg->pgno; assert( pPager->journalMode==PAGER_JOURNALMODE_OFF || pageInJournal(pPager, pPg) || pPg->pgno>pPager->dbOrigSize ); assert( pPg->flags&PGHDR_DIRTY ); } /* If the cache contains a page with page-number pgno, remove it ** from its hash chain. Also, if the PGHDR_NEED_SYNC flag was set for ** page pgno before the 'move' operation, it needs to be retained ** for the page moved there. */ pPg->flags &= ~PGHDR_NEED_SYNC; pPgOld = sqlite3PagerLookup(pPager, pgno); assert( !pPgOld || pPgOld->nRef==1 || CORRUPT_DB ); if( pPgOld ){ if( pPgOld->nRef>1 ){ sqlite3PagerUnrefNotNull(pPgOld); return SQLITE_CORRUPT_BKPT; } pPg->flags |= (pPgOld->flags&PGHDR_NEED_SYNC); if( pPager->tempFile ){ /* Do not discard pages from an in-memory database since we might ** need to rollback later. Just move the page out of the way. */ sqlite3PcacheMove(pPgOld, pPager->dbSize+1); }else{ sqlite3PcacheDrop(pPgOld); } } origPgno = pPg->pgno; sqlite3PcacheMove(pPg, pgno); sqlite3PcacheMakeDirty(pPg); /* For an in-memory database, make sure the original page continues ** to exist, in case the transaction needs to roll back. Use pPgOld ** as the original page since it has already been allocated. */ if( pPager->tempFile && pPgOld ){ sqlite3PcacheMove(pPgOld, origPgno); sqlite3PagerUnrefNotNull(pPgOld); } if( needSyncPgno ){ /* If needSyncPgno is non-zero, then the journal file needs to be ** sync()ed before any data is written to database file page needSyncPgno. ** Currently, no such page exists in the page-cache and the ** "is journaled" bitvec flag has been set. This needs to be remedied by ** loading the page into the pager-cache and setting the PGHDR_NEED_SYNC ** flag. ** ** If the attempt to load the page into the page-cache fails, (due ** to a malloc() or IO failure), clear the bit in the pInJournal[] ** array. Otherwise, if the page is loaded and written again in ** this transaction, it may be written to the database file before ** it is synced into the journal file. This way, it may end up in ** the journal file twice, but that is not a problem. */ PgHdr *pPgHdr; rc = sqlite3PagerGet(pPager, needSyncPgno, &pPgHdr, 0); if( rc!=SQLITE_OK ){ if( needSyncPgno<=pPager->dbOrigSize ){ assert( pPager->pTmpSpace!=0 ); sqlite3BitvecClear(pPager->pInJournal, needSyncPgno, pPager->pTmpSpace); } return rc; } pPgHdr->flags |= PGHDR_NEED_SYNC; sqlite3PcacheMakeDirty(pPgHdr); sqlite3PagerUnrefNotNull(pPgHdr); } return SQLITE_OK; } #endif /* ** The page handle passed as the first argument refers to a dirty page ** with a page number other than iNew. This function changes the page's ** page number to iNew and sets the value of the PgHdr.flags field to ** the value passed as the third parameter. */ SQLITE_PRIVATE void sqlite3PagerRekey(DbPage *pPg, Pgno iNew, u16 flags){ assert( pPg->pgno!=iNew ); pPg->flags = flags; sqlite3PcacheMove(pPg, iNew); } /* ** Return a pointer to the data for the specified page. */ SQLITE_PRIVATE void *sqlite3PagerGetData(DbPage *pPg){ assert( pPg->nRef>0 || pPg->pPager->memDb ); return pPg->pData; } /* ** Return a pointer to the Pager.nExtra bytes of "extra" space ** allocated along with the specified page. */ SQLITE_PRIVATE void *sqlite3PagerGetExtra(DbPage *pPg){ return pPg->pExtra; } /* ** Get/set the locking-mode for this pager. Parameter eMode must be one ** of PAGER_LOCKINGMODE_QUERY, PAGER_LOCKINGMODE_NORMAL or ** PAGER_LOCKINGMODE_EXCLUSIVE. If the parameter is not _QUERY, then ** the locking-mode is set to the value specified. ** ** The returned value is either PAGER_LOCKINGMODE_NORMAL or ** PAGER_LOCKINGMODE_EXCLUSIVE, indicating the current (possibly updated) ** locking-mode. */ SQLITE_PRIVATE int sqlite3PagerLockingMode(Pager *pPager, int eMode){ assert( eMode==PAGER_LOCKINGMODE_QUERY || eMode==PAGER_LOCKINGMODE_NORMAL || eMode==PAGER_LOCKINGMODE_EXCLUSIVE ); assert( PAGER_LOCKINGMODE_QUERY<0 ); assert( PAGER_LOCKINGMODE_NORMAL>=0 && PAGER_LOCKINGMODE_EXCLUSIVE>=0 ); assert( pPager->exclusiveMode || 0==sqlite3WalHeapMemory(pPager->pWal) ); if( eMode>=0 && !pPager->tempFile && !sqlite3WalHeapMemory(pPager->pWal) ){ pPager->exclusiveMode = (u8)eMode; } return (int)pPager->exclusiveMode; } /* ** Set the journal-mode for this pager. Parameter eMode must be one of: ** ** PAGER_JOURNALMODE_DELETE ** PAGER_JOURNALMODE_TRUNCATE ** PAGER_JOURNALMODE_PERSIST ** PAGER_JOURNALMODE_OFF ** PAGER_JOURNALMODE_MEMORY ** PAGER_JOURNALMODE_WAL ** ** The journalmode is set to the value specified if the change is allowed. ** The change may be disallowed for the following reasons: ** ** * An in-memory database can only have its journal_mode set to _OFF ** or _MEMORY. ** ** * Temporary databases cannot have _WAL journalmode. ** ** The returned indicate the current (possibly updated) journal-mode. */ SQLITE_PRIVATE int sqlite3PagerSetJournalMode(Pager *pPager, int eMode){ u8 eOld = pPager->journalMode; /* Prior journalmode */ /* The eMode parameter is always valid */ assert( eMode==PAGER_JOURNALMODE_DELETE || eMode==PAGER_JOURNALMODE_TRUNCATE || eMode==PAGER_JOURNALMODE_PERSIST || eMode==PAGER_JOURNALMODE_OFF || eMode==PAGER_JOURNALMODE_WAL || eMode==PAGER_JOURNALMODE_MEMORY ); /* This routine is only called from the OP_JournalMode opcode, and ** the logic there will never allow a temporary file to be changed ** to WAL mode. */ assert( pPager->tempFile==0 || eMode!=PAGER_JOURNALMODE_WAL ); /* Do allow the journalmode of an in-memory database to be set to ** anything other than MEMORY or OFF */ if( MEMDB ){ assert( eOld==PAGER_JOURNALMODE_MEMORY || eOld==PAGER_JOURNALMODE_OFF ); if( eMode!=PAGER_JOURNALMODE_MEMORY && eMode!=PAGER_JOURNALMODE_OFF ){ eMode = eOld; } } if( eMode!=eOld ){ /* Change the journal mode. */ assert( pPager->eState!=PAGER_ERROR ); pPager->journalMode = (u8)eMode; /* When transistioning from TRUNCATE or PERSIST to any other journal ** mode except WAL, unless the pager is in locking_mode=exclusive mode, ** delete the journal file. */ assert( (PAGER_JOURNALMODE_TRUNCATE & 5)==1 ); assert( (PAGER_JOURNALMODE_PERSIST & 5)==1 ); assert( (PAGER_JOURNALMODE_DELETE & 5)==0 ); assert( (PAGER_JOURNALMODE_MEMORY & 5)==4 ); assert( (PAGER_JOURNALMODE_OFF & 5)==0 ); assert( (PAGER_JOURNALMODE_WAL & 5)==5 ); assert( isOpen(pPager->fd) || pPager->exclusiveMode ); if( !pPager->exclusiveMode && (eOld & 5)==1 && (eMode & 1)==0 ){ /* In this case we would like to delete the journal file. If it is ** not possible, then that is not a problem. Deleting the journal file ** here is an optimization only. ** ** Before deleting the journal file, obtain a RESERVED lock on the ** database file. This ensures that the journal file is not deleted ** while it is in use by some other client. */ sqlite3OsClose(pPager->jfd); if( pPager->eLock>=RESERVED_LOCK ){ sqlite3OsDelete(pPager->pVfs, pPager->zJournal, 0); }else{ int rc = SQLITE_OK; int state = pPager->eState; assert( state==PAGER_OPEN || state==PAGER_READER ); if( state==PAGER_OPEN ){ rc = sqlite3PagerSharedLock(pPager); } if( pPager->eState==PAGER_READER ){ assert( rc==SQLITE_OK ); rc = pagerLockDb(pPager, RESERVED_LOCK); } if( rc==SQLITE_OK ){ sqlite3OsDelete(pPager->pVfs, pPager->zJournal, 0); } if( rc==SQLITE_OK && state==PAGER_READER ){ pagerUnlockDb(pPager, SHARED_LOCK); }else if( state==PAGER_OPEN ){ pager_unlock(pPager); } assert( state==pPager->eState ); } }else if( eMode==PAGER_JOURNALMODE_OFF ){ sqlite3OsClose(pPager->jfd); } } /* Return the new journal mode */ return (int)pPager->journalMode; } /* ** Return the current journal mode. */ SQLITE_PRIVATE int sqlite3PagerGetJournalMode(Pager *pPager){ return (int)pPager->journalMode; } /* ** Return TRUE if the pager is in a state where it is OK to change the ** journalmode. Journalmode changes can only happen when the database ** is unmodified. */ SQLITE_PRIVATE int sqlite3PagerOkToChangeJournalMode(Pager *pPager){ assert( assert_pager_state(pPager) ); if( pPager->eState>=PAGER_WRITER_CACHEMOD ) return 0; if( NEVER(isOpen(pPager->jfd) && pPager->journalOff>0) ) return 0; return 1; } /* ** Get/set the size-limit used for persistent journal files. ** ** Setting the size limit to -1 means no limit is enforced. ** An attempt to set a limit smaller than -1 is a no-op. */ SQLITE_PRIVATE i64 sqlite3PagerJournalSizeLimit(Pager *pPager, i64 iLimit){ if( iLimit>=-1 ){ pPager->journalSizeLimit = iLimit; sqlite3WalLimit(pPager->pWal, iLimit); } return pPager->journalSizeLimit; } /* ** Return a pointer to the pPager->pBackup variable. The backup module ** in backup.c maintains the content of this variable. This module ** uses it opaquely as an argument to sqlite3BackupRestart() and ** sqlite3BackupUpdate() only. */ SQLITE_PRIVATE sqlite3_backup **sqlite3PagerBackupPtr(Pager *pPager){ return &pPager->pBackup; } #ifndef SQLITE_OMIT_VACUUM /* ** Unless this is an in-memory or temporary database, clear the pager cache. */ SQLITE_PRIVATE void sqlite3PagerClearCache(Pager *pPager){ assert( MEMDB==0 || pPager->tempFile ); if( pPager->tempFile==0 ) pager_reset(pPager); } #endif #ifndef SQLITE_OMIT_WAL /* ** This function is called when the user invokes "PRAGMA wal_checkpoint", ** "PRAGMA wal_blocking_checkpoint" or calls the sqlite3_wal_checkpoint() ** or wal_blocking_checkpoint() API functions. ** ** Parameter eMode is one of SQLITE_CHECKPOINT_PASSIVE, FULL or RESTART. */ SQLITE_PRIVATE int sqlite3PagerCheckpoint( Pager *pPager, /* Checkpoint on this pager */ sqlite3 *db, /* Db handle used to check for interrupts */ int eMode, /* Type of checkpoint */ int *pnLog, /* OUT: Final number of frames in log */ int *pnCkpt /* OUT: Final number of checkpointed frames */ ){ int rc = SQLITE_OK; if( pPager->pWal ){ rc = sqlite3WalCheckpoint(pPager->pWal, db, eMode, (eMode==SQLITE_CHECKPOINT_PASSIVE ? 0 : pPager->xBusyHandler), pPager->pBusyHandlerArg, pPager->walSyncFlags, pPager->pageSize, (u8 *)pPager->pTmpSpace, pnLog, pnCkpt ); } return rc; } SQLITE_PRIVATE int sqlite3PagerWalCallback(Pager *pPager){ return sqlite3WalCallback(pPager->pWal); } /* ** Return true if the underlying VFS for the given pager supports the ** primitives necessary for write-ahead logging. */ SQLITE_PRIVATE int sqlite3PagerWalSupported(Pager *pPager){ const sqlite3_io_methods *pMethods = pPager->fd->pMethods; if( pPager->noLock ) return 0; return pPager->exclusiveMode || (pMethods->iVersion>=2 && pMethods->xShmMap); } /* ** Attempt to take an exclusive lock on the database file. If a PENDING lock ** is obtained instead, immediately release it. */ static int pagerExclusiveLock(Pager *pPager){ int rc; /* Return code */ assert( pPager->eLock==SHARED_LOCK || pPager->eLock==EXCLUSIVE_LOCK ); rc = pagerLockDb(pPager, EXCLUSIVE_LOCK); if( rc!=SQLITE_OK ){ /* If the attempt to grab the exclusive lock failed, release the ** pending lock that may have been obtained instead. */ pagerUnlockDb(pPager, SHARED_LOCK); } return rc; } /* ** Call sqlite3WalOpen() to open the WAL handle. If the pager is in ** exclusive-locking mode when this function is called, take an EXCLUSIVE ** lock on the database file and use heap-memory to store the wal-index ** in. Otherwise, use the normal shared-memory. */ static int pagerOpenWal(Pager *pPager){ int rc = SQLITE_OK; assert( pPager->pWal==0 && pPager->tempFile==0 ); assert( pPager->eLock==SHARED_LOCK || pPager->eLock==EXCLUSIVE_LOCK ); /* If the pager is already in exclusive-mode, the WAL module will use ** heap-memory for the wal-index instead of the VFS shared-memory ** implementation. Take the exclusive lock now, before opening the WAL ** file, to make sure this is safe. */ if( pPager->exclusiveMode ){ rc = pagerExclusiveLock(pPager); } /* Open the connection to the log file. If this operation fails, ** (e.g. due to malloc() failure), return an error code. */ if( rc==SQLITE_OK ){ rc = sqlite3WalOpen(pPager->pVfs, pPager->fd, pPager->zWal, pPager->exclusiveMode, pPager->journalSizeLimit, &pPager->pWal ); } pagerFixMaplimit(pPager); return rc; } /* ** The caller must be holding a SHARED lock on the database file to call ** this function. ** ** If the pager passed as the first argument is open on a real database ** file (not a temp file or an in-memory database), and the WAL file ** is not already open, make an attempt to open it now. If successful, ** return SQLITE_OK. If an error occurs or the VFS used by the pager does ** not support the xShmXXX() methods, return an error code. *pbOpen is ** not modified in either case. ** ** If the pager is open on a temp-file (or in-memory database), or if ** the WAL file is already open, set *pbOpen to 1 and return SQLITE_OK ** without doing anything. */ SQLITE_PRIVATE int sqlite3PagerOpenWal( Pager *pPager, /* Pager object */ int *pbOpen /* OUT: Set to true if call is a no-op */ ){ int rc = SQLITE_OK; /* Return code */ assert( assert_pager_state(pPager) ); assert( pPager->eState==PAGER_OPEN || pbOpen ); assert( pPager->eState==PAGER_READER || !pbOpen ); assert( pbOpen==0 || *pbOpen==0 ); assert( pbOpen!=0 || (!pPager->tempFile && !pPager->pWal) ); if( !pPager->tempFile && !pPager->pWal ){ if( !sqlite3PagerWalSupported(pPager) ) return SQLITE_CANTOPEN; /* Close any rollback journal previously open */ sqlite3OsClose(pPager->jfd); rc = pagerOpenWal(pPager); if( rc==SQLITE_OK ){ pPager->journalMode = PAGER_JOURNALMODE_WAL; pPager->eState = PAGER_OPEN; } }else{ *pbOpen = 1; } return rc; } /* ** This function is called to close the connection to the log file prior ** to switching from WAL to rollback mode. ** ** Before closing the log file, this function attempts to take an ** EXCLUSIVE lock on the database file. If this cannot be obtained, an ** error (SQLITE_BUSY) is returned and the log connection is not closed. ** If successful, the EXCLUSIVE lock is not released before returning. */ SQLITE_PRIVATE int sqlite3PagerCloseWal(Pager *pPager, sqlite3 *db){ int rc = SQLITE_OK; assert( pPager->journalMode==PAGER_JOURNALMODE_WAL ); /* If the log file is not already open, but does exist in the file-system, ** it may need to be checkpointed before the connection can switch to ** rollback mode. Open it now so this can happen. */ if( !pPager->pWal ){ int logexists = 0; rc = pagerLockDb(pPager, SHARED_LOCK); if( rc==SQLITE_OK ){ rc = sqlite3OsAccess( pPager->pVfs, pPager->zWal, SQLITE_ACCESS_EXISTS, &logexists ); } if( rc==SQLITE_OK && logexists ){ rc = pagerOpenWal(pPager); } } /* Checkpoint and close the log. Because an EXCLUSIVE lock is held on ** the database file, the log and log-summary files will be deleted. */ if( rc==SQLITE_OK && pPager->pWal ){ rc = pagerExclusiveLock(pPager); if( rc==SQLITE_OK ){ rc = sqlite3WalClose(pPager->pWal, db, pPager->walSyncFlags, pPager->pageSize, (u8*)pPager->pTmpSpace); pPager->pWal = 0; pagerFixMaplimit(pPager); if( rc && !pPager->exclusiveMode ) pagerUnlockDb(pPager, SHARED_LOCK); } } return rc; } #ifdef SQLITE_ENABLE_SETLK_TIMEOUT /* ** If pager pPager is a wal-mode database not in exclusive locking mode, ** invoke the sqlite3WalWriteLock() function on the associated Wal object ** with the same db and bLock parameters as were passed to this function. ** Return an SQLite error code if an error occurs, or SQLITE_OK otherwise. */ SQLITE_PRIVATE int sqlite3PagerWalWriteLock(Pager *pPager, int bLock){ int rc = SQLITE_OK; if( pagerUseWal(pPager) && pPager->exclusiveMode==0 ){ rc = sqlite3WalWriteLock(pPager->pWal, bLock); } return rc; } /* ** Set the database handle used by the wal layer to determine if ** blocking locks are required. */ SQLITE_PRIVATE void sqlite3PagerWalDb(Pager *pPager, sqlite3 *db){ if( pagerUseWal(pPager) ){ sqlite3WalDb(pPager->pWal, db); } } #endif #ifdef SQLITE_ENABLE_SNAPSHOT /* ** If this is a WAL database, obtain a snapshot handle for the snapshot ** currently open. Otherwise, return an error. */ SQLITE_PRIVATE int sqlite3PagerSnapshotGet(Pager *pPager, sqlite3_snapshot **ppSnapshot){ int rc = SQLITE_ERROR; if( pPager->pWal ){ rc = sqlite3WalSnapshotGet(pPager->pWal, ppSnapshot); } return rc; } /* ** If this is a WAL database, store a pointer to pSnapshot. Next time a ** read transaction is opened, attempt to read from the snapshot it ** identifies. If this is not a WAL database, return an error. */ SQLITE_PRIVATE int sqlite3PagerSnapshotOpen( Pager *pPager, sqlite3_snapshot *pSnapshot ){ int rc = SQLITE_OK; if( pPager->pWal ){ sqlite3WalSnapshotOpen(pPager->pWal, pSnapshot); }else{ rc = SQLITE_ERROR; } return rc; } /* ** If this is a WAL database, call sqlite3WalSnapshotRecover(). If this ** is not a WAL database, return an error. */ SQLITE_PRIVATE int sqlite3PagerSnapshotRecover(Pager *pPager){ int rc; if( pPager->pWal ){ rc = sqlite3WalSnapshotRecover(pPager->pWal); }else{ rc = SQLITE_ERROR; } return rc; } /* ** The caller currently has a read transaction open on the database. ** If this is not a WAL database, SQLITE_ERROR is returned. Otherwise, ** this function takes a SHARED lock on the CHECKPOINTER slot and then ** checks if the snapshot passed as the second argument is still ** available. If so, SQLITE_OK is returned. ** ** If the snapshot is not available, SQLITE_ERROR is returned. Or, if ** the CHECKPOINTER lock cannot be obtained, SQLITE_BUSY. If any error ** occurs (any value other than SQLITE_OK is returned), the CHECKPOINTER ** lock is released before returning. */ SQLITE_PRIVATE int sqlite3PagerSnapshotCheck(Pager *pPager, sqlite3_snapshot *pSnapshot){ int rc; if( pPager->pWal ){ rc = sqlite3WalSnapshotCheck(pPager->pWal, pSnapshot); }else{ rc = SQLITE_ERROR; } return rc; } /* ** Release a lock obtained by an earlier successful call to ** sqlite3PagerSnapshotCheck(). */ SQLITE_PRIVATE void sqlite3PagerSnapshotUnlock(Pager *pPager){ assert( pPager->pWal ); sqlite3WalSnapshotUnlock(pPager->pWal); } #endif /* SQLITE_ENABLE_SNAPSHOT */ #endif /* !SQLITE_OMIT_WAL */ #ifdef SQLITE_ENABLE_ZIPVFS /* ** A read-lock must be held on the pager when this function is called. If ** the pager is in WAL mode and the WAL file currently contains one or more ** frames, return the size in bytes of the page images stored within the ** WAL frames. Otherwise, if this is not a WAL database or the WAL file ** is empty, return 0. */ SQLITE_PRIVATE int sqlite3PagerWalFramesize(Pager *pPager){ assert( pPager->eState>=PAGER_READER ); return sqlite3WalFramesize(pPager->pWal); } #endif #endif /* SQLITE_OMIT_DISKIO */ /************** End of pager.c ***********************************************/ /************** Begin file wal.c *********************************************/ /* ** 2010 February 1 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains the implementation of a write-ahead log (WAL) used in ** "journal_mode=WAL" mode. ** ** WRITE-AHEAD LOG (WAL) FILE FORMAT ** ** A WAL file consists of a header followed by zero or more "frames". ** Each frame records the revised content of a single page from the ** database file. All changes to the database are recorded by writing ** frames into the WAL. Transactions commit when a frame is written that ** contains a commit marker. A single WAL can and usually does record ** multiple transactions. Periodically, the content of the WAL is ** transferred back into the database file in an operation called a ** "checkpoint". ** ** A single WAL file can be used multiple times. In other words, the ** WAL can fill up with frames and then be checkpointed and then new ** frames can overwrite the old ones. A WAL always grows from beginning ** toward the end. Checksums and counters attached to each frame are ** used to determine which frames within the WAL are valid and which ** are leftovers from prior checkpoints. ** ** The WAL header is 32 bytes in size and consists of the following eight ** big-endian 32-bit unsigned integer values: ** ** 0: Magic number. 0x377f0682 or 0x377f0683 ** 4: File format version. Currently 3007000 ** 8: Database page size. Example: 1024 ** 12: Checkpoint sequence number ** 16: Salt-1, random integer incremented with each checkpoint ** 20: Salt-2, a different random integer changing with each ckpt ** 24: Checksum-1 (first part of checksum for first 24 bytes of header). ** 28: Checksum-2 (second part of checksum for first 24 bytes of header). ** ** Immediately following the wal-header are zero or more frames. Each ** frame consists of a 24-byte frame-header followed by a bytes ** of page data. The frame-header is six big-endian 32-bit unsigned ** integer values, as follows: ** ** 0: Page number. ** 4: For commit records, the size of the database image in pages ** after the commit. For all other records, zero. ** 8: Salt-1 (copied from the header) ** 12: Salt-2 (copied from the header) ** 16: Checksum-1. ** 20: Checksum-2. ** ** A frame is considered valid if and only if the following conditions are ** true: ** ** (1) The salt-1 and salt-2 values in the frame-header match ** salt values in the wal-header ** ** (2) The checksum values in the final 8 bytes of the frame-header ** exactly match the checksum computed consecutively on the ** WAL header and the first 8 bytes and the content of all frames ** up to and including the current frame. ** ** The checksum is computed using 32-bit big-endian integers if the ** magic number in the first 4 bytes of the WAL is 0x377f0683 and it ** is computed using little-endian if the magic number is 0x377f0682. ** The checksum values are always stored in the frame header in a ** big-endian format regardless of which byte order is used to compute ** the checksum. The checksum is computed by interpreting the input as ** an even number of unsigned 32-bit integers: x[0] through x[N]. The ** algorithm used for the checksum is as follows: ** ** for i from 0 to n-1 step 2: ** s0 += x[i] + s1; ** s1 += x[i+1] + s0; ** endfor ** ** Note that s0 and s1 are both weighted checksums using fibonacci weights ** in reverse order (the largest fibonacci weight occurs on the first element ** of the sequence being summed.) The s1 value spans all 32-bit ** terms of the sequence whereas s0 omits the final term. ** ** On a checkpoint, the WAL is first VFS.xSync-ed, then valid content of the ** WAL is transferred into the database, then the database is VFS.xSync-ed. ** The VFS.xSync operations serve as write barriers - all writes launched ** before the xSync must complete before any write that launches after the ** xSync begins. ** ** After each checkpoint, the salt-1 value is incremented and the salt-2 ** value is randomized. This prevents old and new frames in the WAL from ** being considered valid at the same time and being checkpointing together ** following a crash. ** ** READER ALGORITHM ** ** To read a page from the database (call it page number P), a reader ** first checks the WAL to see if it contains page P. If so, then the ** last valid instance of page P that is a followed by a commit frame ** or is a commit frame itself becomes the value read. If the WAL ** contains no copies of page P that are valid and which are a commit ** frame or are followed by a commit frame, then page P is read from ** the database file. ** ** To start a read transaction, the reader records the index of the last ** valid frame in the WAL. The reader uses this recorded "mxFrame" value ** for all subsequent read operations. New transactions can be appended ** to the WAL, but as long as the reader uses its original mxFrame value ** and ignores the newly appended content, it will see a consistent snapshot ** of the database from a single point in time. This technique allows ** multiple concurrent readers to view different versions of the database ** content simultaneously. ** ** The reader algorithm in the previous paragraphs works correctly, but ** because frames for page P can appear anywhere within the WAL, the ** reader has to scan the entire WAL looking for page P frames. If the ** WAL is large (multiple megabytes is typical) that scan can be slow, ** and read performance suffers. To overcome this problem, a separate ** data structure called the wal-index is maintained to expedite the ** search for frames of a particular page. ** ** WAL-INDEX FORMAT ** ** Conceptually, the wal-index is shared memory, though VFS implementations ** might choose to implement the wal-index using a mmapped file. Because ** the wal-index is shared memory, SQLite does not support journal_mode=WAL ** on a network filesystem. All users of the database must be able to ** share memory. ** ** In the default unix and windows implementation, the wal-index is a mmapped ** file whose name is the database name with a "-shm" suffix added. For that ** reason, the wal-index is sometimes called the "shm" file. ** ** The wal-index is transient. After a crash, the wal-index can (and should ** be) reconstructed from the original WAL file. In fact, the VFS is required ** to either truncate or zero the header of the wal-index when the last ** connection to it closes. Because the wal-index is transient, it can ** use an architecture-specific format; it does not have to be cross-platform. ** Hence, unlike the database and WAL file formats which store all values ** as big endian, the wal-index can store multi-byte values in the native ** byte order of the host computer. ** ** The purpose of the wal-index is to answer this question quickly: Given ** a page number P and a maximum frame index M, return the index of the ** last frame in the wal before frame M for page P in the WAL, or return ** NULL if there are no frames for page P in the WAL prior to M. ** ** The wal-index consists of a header region, followed by an one or ** more index blocks. ** ** The wal-index header contains the total number of frames within the WAL ** in the mxFrame field. ** ** Each index block except for the first contains information on ** HASHTABLE_NPAGE frames. The first index block contains information on ** HASHTABLE_NPAGE_ONE frames. The values of HASHTABLE_NPAGE_ONE and ** HASHTABLE_NPAGE are selected so that together the wal-index header and ** first index block are the same size as all other index blocks in the ** wal-index. ** ** Each index block contains two sections, a page-mapping that contains the ** database page number associated with each wal frame, and a hash-table ** that allows readers to query an index block for a specific page number. ** The page-mapping is an array of HASHTABLE_NPAGE (or HASHTABLE_NPAGE_ONE ** for the first index block) 32-bit page numbers. The first entry in the ** first index-block contains the database page number corresponding to the ** first frame in the WAL file. The first entry in the second index block ** in the WAL file corresponds to the (HASHTABLE_NPAGE_ONE+1)th frame in ** the log, and so on. ** ** The last index block in a wal-index usually contains less than the full ** complement of HASHTABLE_NPAGE (or HASHTABLE_NPAGE_ONE) page-numbers, ** depending on the contents of the WAL file. This does not change the ** allocated size of the page-mapping array - the page-mapping array merely ** contains unused entries. ** ** Even without using the hash table, the last frame for page P ** can be found by scanning the page-mapping sections of each index block ** starting with the last index block and moving toward the first, and ** within each index block, starting at the end and moving toward the ** beginning. The first entry that equals P corresponds to the frame ** holding the content for that page. ** ** The hash table consists of HASHTABLE_NSLOT 16-bit unsigned integers. ** HASHTABLE_NSLOT = 2*HASHTABLE_NPAGE, and there is one entry in the ** hash table for each page number in the mapping section, so the hash ** table is never more than half full. The expected number of collisions ** prior to finding a match is 1. Each entry of the hash table is an ** 1-based index of an entry in the mapping section of the same ** index block. Let K be the 1-based index of the largest entry in ** the mapping section. (For index blocks other than the last, K will ** always be exactly HASHTABLE_NPAGE (4096) and for the last index block ** K will be (mxFrame%HASHTABLE_NPAGE).) Unused slots of the hash table ** contain a value of 0. ** ** To look for page P in the hash table, first compute a hash iKey on ** P as follows: ** ** iKey = (P * 383) % HASHTABLE_NSLOT ** ** Then start scanning entries of the hash table, starting with iKey ** (wrapping around to the beginning when the end of the hash table is ** reached) until an unused hash slot is found. Let the first unused slot ** be at index iUnused. (iUnused might be less than iKey if there was ** wrap-around.) Because the hash table is never more than half full, ** the search is guaranteed to eventually hit an unused entry. Let ** iMax be the value between iKey and iUnused, closest to iUnused, ** where aHash[iMax]==P. If there is no iMax entry (if there exists ** no hash slot such that aHash[i]==p) then page P is not in the ** current index block. Otherwise the iMax-th mapping entry of the ** current index block corresponds to the last entry that references ** page P. ** ** A hash search begins with the last index block and moves toward the ** first index block, looking for entries corresponding to page P. On ** average, only two or three slots in each index block need to be ** examined in order to either find the last entry for page P, or to ** establish that no such entry exists in the block. Each index block ** holds over 4000 entries. So two or three index blocks are sufficient ** to cover a typical 10 megabyte WAL file, assuming 1K pages. 8 or 10 ** comparisons (on average) suffice to either locate a frame in the ** WAL or to establish that the frame does not exist in the WAL. This ** is much faster than scanning the entire 10MB WAL. ** ** Note that entries are added in order of increasing K. Hence, one ** reader might be using some value K0 and a second reader that started ** at a later time (after additional transactions were added to the WAL ** and to the wal-index) might be using a different value K1, where K1>K0. ** Both readers can use the same hash table and mapping section to get ** the correct result. There may be entries in the hash table with ** K>K0 but to the first reader, those entries will appear to be unused ** slots in the hash table and so the first reader will get an answer as ** if no values greater than K0 had ever been inserted into the hash table ** in the first place - which is what reader one wants. Meanwhile, the ** second reader using K1 will see additional values that were inserted ** later, which is exactly what reader two wants. ** ** When a rollback occurs, the value of K is decreased. Hash table entries ** that correspond to frames greater than the new K value are removed ** from the hash table at this point. */ #ifndef SQLITE_OMIT_WAL /* #include "wal.h" */ /* ** Trace output macros */ #if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) SQLITE_PRIVATE int sqlite3WalTrace = 0; # define WALTRACE(X) if(sqlite3WalTrace) sqlite3DebugPrintf X #else # define WALTRACE(X) #endif /* ** The maximum (and only) versions of the wal and wal-index formats ** that may be interpreted by this version of SQLite. ** ** If a client begins recovering a WAL file and finds that (a) the checksum ** values in the wal-header are correct and (b) the version field is not ** WAL_MAX_VERSION, recovery fails and SQLite returns SQLITE_CANTOPEN. ** ** Similarly, if a client successfully reads a wal-index header (i.e. the ** checksum test is successful) and finds that the version field is not ** WALINDEX_MAX_VERSION, then no read-transaction is opened and SQLite ** returns SQLITE_CANTOPEN. */ #define WAL_MAX_VERSION 3007000 #define WALINDEX_MAX_VERSION 3007000 /* ** Index numbers for various locking bytes. WAL_NREADER is the number ** of available reader locks and should be at least 3. The default ** is SQLITE_SHM_NLOCK==8 and WAL_NREADER==5. ** ** Technically, the various VFSes are free to implement these locks however ** they see fit. However, compatibility is encouraged so that VFSes can ** interoperate. The standard implemention used on both unix and windows ** is for the index number to indicate a byte offset into the ** WalCkptInfo.aLock[] array in the wal-index header. In other words, all ** locks are on the shm file. The WALINDEX_LOCK_OFFSET constant (which ** should be 120) is the location in the shm file for the first locking ** byte. */ #define WAL_WRITE_LOCK 0 #define WAL_ALL_BUT_WRITE 1 #define WAL_CKPT_LOCK 1 #define WAL_RECOVER_LOCK 2 #define WAL_READ_LOCK(I) (3+(I)) #define WAL_NREADER (SQLITE_SHM_NLOCK-3) /* Object declarations */ typedef struct WalIndexHdr WalIndexHdr; typedef struct WalIterator WalIterator; typedef struct WalCkptInfo WalCkptInfo; /* ** The following object holds a copy of the wal-index header content. ** ** The actual header in the wal-index consists of two copies of this ** object followed by one instance of the WalCkptInfo object. ** For all versions of SQLite through 3.10.0 and probably beyond, ** the locking bytes (WalCkptInfo.aLock) start at offset 120 and ** the total header size is 136 bytes. ** ** The szPage value can be any power of 2 between 512 and 32768, inclusive. ** Or it can be 1 to represent a 65536-byte page. The latter case was ** added in 3.7.1 when support for 64K pages was added. */ struct WalIndexHdr { u32 iVersion; /* Wal-index version */ u32 unused; /* Unused (padding) field */ u32 iChange; /* Counter incremented each transaction */ u8 isInit; /* 1 when initialized */ u8 bigEndCksum; /* True if checksums in WAL are big-endian */ u16 szPage; /* Database page size in bytes. 1==64K */ u32 mxFrame; /* Index of last valid frame in the WAL */ u32 nPage; /* Size of database in pages */ u32 aFrameCksum[2]; /* Checksum of last frame in log */ u32 aSalt[2]; /* Two salt values copied from WAL header */ u32 aCksum[2]; /* Checksum over all prior fields */ }; /* ** A copy of the following object occurs in the wal-index immediately ** following the second copy of the WalIndexHdr. This object stores ** information used by checkpoint. ** ** nBackfill is the number of frames in the WAL that have been written ** back into the database. (We call the act of moving content from WAL to ** database "backfilling".) The nBackfill number is never greater than ** WalIndexHdr.mxFrame. nBackfill can only be increased by threads ** holding the WAL_CKPT_LOCK lock (which includes a recovery thread). ** However, a WAL_WRITE_LOCK thread can move the value of nBackfill from ** mxFrame back to zero when the WAL is reset. ** ** nBackfillAttempted is the largest value of nBackfill that a checkpoint ** has attempted to achieve. Normally nBackfill==nBackfillAtempted, however ** the nBackfillAttempted is set before any backfilling is done and the ** nBackfill is only set after all backfilling completes. So if a checkpoint ** crashes, nBackfillAttempted might be larger than nBackfill. The ** WalIndexHdr.mxFrame must never be less than nBackfillAttempted. ** ** The aLock[] field is a set of bytes used for locking. These bytes should ** never be read or written. ** ** There is one entry in aReadMark[] for each reader lock. If a reader ** holds read-lock K, then the value in aReadMark[K] is no greater than ** the mxFrame for that reader. The value READMARK_NOT_USED (0xffffffff) ** for any aReadMark[] means that entry is unused. aReadMark[0] is ** a special case; its value is never used and it exists as a place-holder ** to avoid having to offset aReadMark[] indexs by one. Readers holding ** WAL_READ_LOCK(0) always ignore the entire WAL and read all content ** directly from the database. ** ** The value of aReadMark[K] may only be changed by a thread that ** is holding an exclusive lock on WAL_READ_LOCK(K). Thus, the value of ** aReadMark[K] cannot changed while there is a reader is using that mark ** since the reader will be holding a shared lock on WAL_READ_LOCK(K). ** ** The checkpointer may only transfer frames from WAL to database where ** the frame numbers are less than or equal to every aReadMark[] that is ** in use (that is, every aReadMark[j] for which there is a corresponding ** WAL_READ_LOCK(j)). New readers (usually) pick the aReadMark[] with the ** largest value and will increase an unused aReadMark[] to mxFrame if there ** is not already an aReadMark[] equal to mxFrame. The exception to the ** previous sentence is when nBackfill equals mxFrame (meaning that everything ** in the WAL has been backfilled into the database) then new readers ** will choose aReadMark[0] which has value 0 and hence such reader will ** get all their all content directly from the database file and ignore ** the WAL. ** ** Writers normally append new frames to the end of the WAL. However, ** if nBackfill equals mxFrame (meaning that all WAL content has been ** written back into the database) and if no readers are using the WAL ** (in other words, if there are no WAL_READ_LOCK(i) where i>0) then ** the writer will first "reset" the WAL back to the beginning and start ** writing new content beginning at frame 1. ** ** We assume that 32-bit loads are atomic and so no locks are needed in ** order to read from any aReadMark[] entries. */ struct WalCkptInfo { u32 nBackfill; /* Number of WAL frames backfilled into DB */ u32 aReadMark[WAL_NREADER]; /* Reader marks */ u8 aLock[SQLITE_SHM_NLOCK]; /* Reserved space for locks */ u32 nBackfillAttempted; /* WAL frames perhaps written, or maybe not */ u32 notUsed0; /* Available for future enhancements */ }; #define READMARK_NOT_USED 0xffffffff /* A block of WALINDEX_LOCK_RESERVED bytes beginning at ** WALINDEX_LOCK_OFFSET is reserved for locks. Since some systems ** only support mandatory file-locks, we do not read or write data ** from the region of the file on which locks are applied. */ #define WALINDEX_LOCK_OFFSET (sizeof(WalIndexHdr)*2+offsetof(WalCkptInfo,aLock)) #define WALINDEX_HDR_SIZE (sizeof(WalIndexHdr)*2+sizeof(WalCkptInfo)) /* Size of header before each frame in wal */ #define WAL_FRAME_HDRSIZE 24 /* Size of write ahead log header, including checksum. */ #define WAL_HDRSIZE 32 /* WAL magic value. Either this value, or the same value with the least ** significant bit also set (WAL_MAGIC | 0x00000001) is stored in 32-bit ** big-endian format in the first 4 bytes of a WAL file. ** ** If the LSB is set, then the checksums for each frame within the WAL ** file are calculated by treating all data as an array of 32-bit ** big-endian words. Otherwise, they are calculated by interpreting ** all data as 32-bit little-endian words. */ #define WAL_MAGIC 0x377f0682 /* ** Return the offset of frame iFrame in the write-ahead log file, ** assuming a database page size of szPage bytes. The offset returned ** is to the start of the write-ahead log frame-header. */ #define walFrameOffset(iFrame, szPage) ( \ WAL_HDRSIZE + ((iFrame)-1)*(i64)((szPage)+WAL_FRAME_HDRSIZE) \ ) /* ** An open write-ahead log file is represented by an instance of the ** following object. */ struct Wal { sqlite3_vfs *pVfs; /* The VFS used to create pDbFd */ sqlite3_file *pDbFd; /* File handle for the database file */ sqlite3_file *pWalFd; /* File handle for WAL file */ u32 iCallback; /* Value to pass to log callback (or 0) */ i64 mxWalSize; /* Truncate WAL to this size upon reset */ int nWiData; /* Size of array apWiData */ int szFirstBlock; /* Size of first block written to WAL file */ volatile u32 **apWiData; /* Pointer to wal-index content in memory */ u32 szPage; /* Database page size */ i16 readLock; /* Which read lock is being held. -1 for none */ u8 syncFlags; /* Flags to use to sync header writes */ u8 exclusiveMode; /* Non-zero if connection is in exclusive mode */ u8 writeLock; /* True if in a write transaction */ u8 ckptLock; /* True if holding a checkpoint lock */ u8 readOnly; /* WAL_RDWR, WAL_RDONLY, or WAL_SHM_RDONLY */ u8 truncateOnCommit; /* True to truncate WAL file on commit */ u8 syncHeader; /* Fsync the WAL header if true */ u8 padToSectorBoundary; /* Pad transactions out to the next sector */ u8 bShmUnreliable; /* SHM content is read-only and unreliable */ WalIndexHdr hdr; /* Wal-index header for current transaction */ u32 minFrame; /* Ignore wal frames before this one */ u32 iReCksum; /* On commit, recalculate checksums from here */ const char *zWalName; /* Name of WAL file */ u32 nCkpt; /* Checkpoint sequence counter in the wal-header */ #ifdef SQLITE_DEBUG u8 lockError; /* True if a locking error has occurred */ #endif #ifdef SQLITE_ENABLE_SNAPSHOT WalIndexHdr *pSnapshot; /* Start transaction here if not NULL */ #endif #ifdef SQLITE_ENABLE_SETLK_TIMEOUT sqlite3 *db; #endif }; /* ** Candidate values for Wal.exclusiveMode. */ #define WAL_NORMAL_MODE 0 #define WAL_EXCLUSIVE_MODE 1 #define WAL_HEAPMEMORY_MODE 2 /* ** Possible values for WAL.readOnly */ #define WAL_RDWR 0 /* Normal read/write connection */ #define WAL_RDONLY 1 /* The WAL file is readonly */ #define WAL_SHM_RDONLY 2 /* The SHM file is readonly */ /* ** Each page of the wal-index mapping contains a hash-table made up of ** an array of HASHTABLE_NSLOT elements of the following type. */ typedef u16 ht_slot; /* ** This structure is used to implement an iterator that loops through ** all frames in the WAL in database page order. Where two or more frames ** correspond to the same database page, the iterator visits only the ** frame most recently written to the WAL (in other words, the frame with ** the largest index). ** ** The internals of this structure are only accessed by: ** ** walIteratorInit() - Create a new iterator, ** walIteratorNext() - Step an iterator, ** walIteratorFree() - Free an iterator. ** ** This functionality is used by the checkpoint code (see walCheckpoint()). */ struct WalIterator { u32 iPrior; /* Last result returned from the iterator */ int nSegment; /* Number of entries in aSegment[] */ struct WalSegment { int iNext; /* Next slot in aIndex[] not yet returned */ ht_slot *aIndex; /* i0, i1, i2... such that aPgno[iN] ascend */ u32 *aPgno; /* Array of page numbers. */ int nEntry; /* Nr. of entries in aPgno[] and aIndex[] */ int iZero; /* Frame number associated with aPgno[0] */ } aSegment[1]; /* One for every 32KB page in the wal-index */ }; /* ** Define the parameters of the hash tables in the wal-index file. There ** is a hash-table following every HASHTABLE_NPAGE page numbers in the ** wal-index. ** ** Changing any of these constants will alter the wal-index format and ** create incompatibilities. */ #define HASHTABLE_NPAGE 4096 /* Must be power of 2 */ #define HASHTABLE_HASH_1 383 /* Should be prime */ #define HASHTABLE_NSLOT (HASHTABLE_NPAGE*2) /* Must be a power of 2 */ /* ** The block of page numbers associated with the first hash-table in a ** wal-index is smaller than usual. This is so that there is a complete ** hash-table on each aligned 32KB page of the wal-index. */ #define HASHTABLE_NPAGE_ONE (HASHTABLE_NPAGE - (WALINDEX_HDR_SIZE/sizeof(u32))) /* The wal-index is divided into pages of WALINDEX_PGSZ bytes each. */ #define WALINDEX_PGSZ ( \ sizeof(ht_slot)*HASHTABLE_NSLOT + HASHTABLE_NPAGE*sizeof(u32) \ ) /* ** Obtain a pointer to the iPage'th page of the wal-index. The wal-index ** is broken into pages of WALINDEX_PGSZ bytes. Wal-index pages are ** numbered from zero. ** ** If the wal-index is currently smaller the iPage pages then the size ** of the wal-index might be increased, but only if it is safe to do ** so. It is safe to enlarge the wal-index if pWal->writeLock is true ** or pWal->exclusiveMode==WAL_HEAPMEMORY_MODE. ** ** If this call is successful, *ppPage is set to point to the wal-index ** page and SQLITE_OK is returned. If an error (an OOM or VFS error) occurs, ** then an SQLite error code is returned and *ppPage is set to 0. */ static SQLITE_NOINLINE int walIndexPageRealloc( Wal *pWal, /* The WAL context */ int iPage, /* The page we seek */ volatile u32 **ppPage /* Write the page pointer here */ ){ int rc = SQLITE_OK; /* Enlarge the pWal->apWiData[] array if required */ if( pWal->nWiData<=iPage ){ sqlite3_int64 nByte = sizeof(u32*)*(iPage+1); volatile u32 **apNew; apNew = (volatile u32 **)sqlite3Realloc((void *)pWal->apWiData, nByte); if( !apNew ){ *ppPage = 0; return SQLITE_NOMEM_BKPT; } memset((void*)&apNew[pWal->nWiData], 0, sizeof(u32*)*(iPage+1-pWal->nWiData)); pWal->apWiData = apNew; pWal->nWiData = iPage+1; } /* Request a pointer to the required page from the VFS */ assert( pWal->apWiData[iPage]==0 ); if( pWal->exclusiveMode==WAL_HEAPMEMORY_MODE ){ pWal->apWiData[iPage] = (u32 volatile *)sqlite3MallocZero(WALINDEX_PGSZ); if( !pWal->apWiData[iPage] ) rc = SQLITE_NOMEM_BKPT; }else{ rc = sqlite3OsShmMap(pWal->pDbFd, iPage, WALINDEX_PGSZ, pWal->writeLock, (void volatile **)&pWal->apWiData[iPage] ); assert( pWal->apWiData[iPage]!=0 || rc!=SQLITE_OK || pWal->writeLock==0 ); testcase( pWal->apWiData[iPage]==0 && rc==SQLITE_OK ); if( rc==SQLITE_OK ){ if( iPage>0 && sqlite3FaultSim(600) ) rc = SQLITE_NOMEM; }else if( (rc&0xff)==SQLITE_READONLY ){ pWal->readOnly |= WAL_SHM_RDONLY; if( rc==SQLITE_READONLY ){ rc = SQLITE_OK; } } } *ppPage = pWal->apWiData[iPage]; assert( iPage==0 || *ppPage || rc!=SQLITE_OK ); return rc; } static int walIndexPage( Wal *pWal, /* The WAL context */ int iPage, /* The page we seek */ volatile u32 **ppPage /* Write the page pointer here */ ){ if( pWal->nWiData<=iPage || (*ppPage = pWal->apWiData[iPage])==0 ){ return walIndexPageRealloc(pWal, iPage, ppPage); } return SQLITE_OK; } /* ** Return a pointer to the WalCkptInfo structure in the wal-index. */ static volatile WalCkptInfo *walCkptInfo(Wal *pWal){ assert( pWal->nWiData>0 && pWal->apWiData[0] ); return (volatile WalCkptInfo*)&(pWal->apWiData[0][sizeof(WalIndexHdr)/2]); } /* ** Return a pointer to the WalIndexHdr structure in the wal-index. */ static volatile WalIndexHdr *walIndexHdr(Wal *pWal){ assert( pWal->nWiData>0 && pWal->apWiData[0] ); return (volatile WalIndexHdr*)pWal->apWiData[0]; } /* ** The argument to this macro must be of type u32. On a little-endian ** architecture, it returns the u32 value that results from interpreting ** the 4 bytes as a big-endian value. On a big-endian architecture, it ** returns the value that would be produced by interpreting the 4 bytes ** of the input value as a little-endian integer. */ #define BYTESWAP32(x) ( \ (((x)&0x000000FF)<<24) + (((x)&0x0000FF00)<<8) \ + (((x)&0x00FF0000)>>8) + (((x)&0xFF000000)>>24) \ ) /* ** Generate or extend an 8 byte checksum based on the data in ** array aByte[] and the initial values of aIn[0] and aIn[1] (or ** initial values of 0 and 0 if aIn==NULL). ** ** The checksum is written back into aOut[] before returning. ** ** nByte must be a positive multiple of 8. */ static void walChecksumBytes( int nativeCksum, /* True for native byte-order, false for non-native */ u8 *a, /* Content to be checksummed */ int nByte, /* Bytes of content in a[]. Must be a multiple of 8. */ const u32 *aIn, /* Initial checksum value input */ u32 *aOut /* OUT: Final checksum value output */ ){ u32 s1, s2; u32 *aData = (u32 *)a; u32 *aEnd = (u32 *)&a[nByte]; if( aIn ){ s1 = aIn[0]; s2 = aIn[1]; }else{ s1 = s2 = 0; } assert( nByte>=8 ); assert( (nByte&0x00000007)==0 ); assert( nByte<=65536 ); if( nativeCksum ){ do { s1 += *aData++ + s2; s2 += *aData++ + s1; }while( aDataexclusiveMode!=WAL_HEAPMEMORY_MODE ){ sqlite3OsShmBarrier(pWal->pDbFd); } } /* ** Add the SQLITE_NO_TSAN as part of the return-type of a function ** definition as a hint that the function contains constructs that ** might give false-positive TSAN warnings. ** ** See tag-20200519-1. */ #if defined(__clang__) && !defined(SQLITE_NO_TSAN) # define SQLITE_NO_TSAN __attribute__((no_sanitize_thread)) #else # define SQLITE_NO_TSAN #endif /* ** Write the header information in pWal->hdr into the wal-index. ** ** The checksum on pWal->hdr is updated before it is written. */ static SQLITE_NO_TSAN void walIndexWriteHdr(Wal *pWal){ volatile WalIndexHdr *aHdr = walIndexHdr(pWal); const int nCksum = offsetof(WalIndexHdr, aCksum); assert( pWal->writeLock ); pWal->hdr.isInit = 1; pWal->hdr.iVersion = WALINDEX_MAX_VERSION; walChecksumBytes(1, (u8*)&pWal->hdr, nCksum, 0, pWal->hdr.aCksum); /* Possible TSAN false-positive. See tag-20200519-1 */ memcpy((void*)&aHdr[1], (const void*)&pWal->hdr, sizeof(WalIndexHdr)); walShmBarrier(pWal); memcpy((void*)&aHdr[0], (const void*)&pWal->hdr, sizeof(WalIndexHdr)); } /* ** This function encodes a single frame header and writes it to a buffer ** supplied by the caller. A frame-header is made up of a series of ** 4-byte big-endian integers, as follows: ** ** 0: Page number. ** 4: For commit records, the size of the database image in pages ** after the commit. For all other records, zero. ** 8: Salt-1 (copied from the wal-header) ** 12: Salt-2 (copied from the wal-header) ** 16: Checksum-1. ** 20: Checksum-2. */ static void walEncodeFrame( Wal *pWal, /* The write-ahead log */ u32 iPage, /* Database page number for frame */ u32 nTruncate, /* New db size (or 0 for non-commit frames) */ u8 *aData, /* Pointer to page data */ u8 *aFrame /* OUT: Write encoded frame here */ ){ int nativeCksum; /* True for native byte-order checksums */ u32 *aCksum = pWal->hdr.aFrameCksum; assert( WAL_FRAME_HDRSIZE==24 ); sqlite3Put4byte(&aFrame[0], iPage); sqlite3Put4byte(&aFrame[4], nTruncate); if( pWal->iReCksum==0 ){ memcpy(&aFrame[8], pWal->hdr.aSalt, 8); nativeCksum = (pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN); walChecksumBytes(nativeCksum, aFrame, 8, aCksum, aCksum); walChecksumBytes(nativeCksum, aData, pWal->szPage, aCksum, aCksum); sqlite3Put4byte(&aFrame[16], aCksum[0]); sqlite3Put4byte(&aFrame[20], aCksum[1]); }else{ memset(&aFrame[8], 0, 16); } } /* ** Check to see if the frame with header in aFrame[] and content ** in aData[] is valid. If it is a valid frame, fill *piPage and ** *pnTruncate and return true. Return if the frame is not valid. */ static int walDecodeFrame( Wal *pWal, /* The write-ahead log */ u32 *piPage, /* OUT: Database page number for frame */ u32 *pnTruncate, /* OUT: New db size (or 0 if not commit) */ u8 *aData, /* Pointer to page data (for checksum) */ u8 *aFrame /* Frame data */ ){ int nativeCksum; /* True for native byte-order checksums */ u32 *aCksum = pWal->hdr.aFrameCksum; u32 pgno; /* Page number of the frame */ assert( WAL_FRAME_HDRSIZE==24 ); /* A frame is only valid if the salt values in the frame-header ** match the salt values in the wal-header. */ if( memcmp(&pWal->hdr.aSalt, &aFrame[8], 8)!=0 ){ return 0; } /* A frame is only valid if the page number is creater than zero. */ pgno = sqlite3Get4byte(&aFrame[0]); if( pgno==0 ){ return 0; } /* A frame is only valid if a checksum of the WAL header, ** all prior frams, the first 16 bytes of this frame-header, ** and the frame-data matches the checksum in the last 8 ** bytes of this frame-header. */ nativeCksum = (pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN); walChecksumBytes(nativeCksum, aFrame, 8, aCksum, aCksum); walChecksumBytes(nativeCksum, aData, pWal->szPage, aCksum, aCksum); if( aCksum[0]!=sqlite3Get4byte(&aFrame[16]) || aCksum[1]!=sqlite3Get4byte(&aFrame[20]) ){ /* Checksum failed. */ return 0; } /* If we reach this point, the frame is valid. Return the page number ** and the new database size. */ *piPage = pgno; *pnTruncate = sqlite3Get4byte(&aFrame[4]); return 1; } #if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) /* ** Names of locks. This routine is used to provide debugging output and is not ** a part of an ordinary build. */ static const char *walLockName(int lockIdx){ if( lockIdx==WAL_WRITE_LOCK ){ return "WRITE-LOCK"; }else if( lockIdx==WAL_CKPT_LOCK ){ return "CKPT-LOCK"; }else if( lockIdx==WAL_RECOVER_LOCK ){ return "RECOVER-LOCK"; }else{ static char zName[15]; sqlite3_snprintf(sizeof(zName), zName, "READ-LOCK[%d]", lockIdx-WAL_READ_LOCK(0)); return zName; } } #endif /*defined(SQLITE_TEST) || defined(SQLITE_DEBUG) */ /* ** Set or release locks on the WAL. Locks are either shared or exclusive. ** A lock cannot be moved directly between shared and exclusive - it must go ** through the unlocked state first. ** ** In locking_mode=EXCLUSIVE, all of these routines become no-ops. */ static int walLockShared(Wal *pWal, int lockIdx){ int rc; if( pWal->exclusiveMode ) return SQLITE_OK; rc = sqlite3OsShmLock(pWal->pDbFd, lockIdx, 1, SQLITE_SHM_LOCK | SQLITE_SHM_SHARED); WALTRACE(("WAL%p: acquire SHARED-%s %s\n", pWal, walLockName(lockIdx), rc ? "failed" : "ok")); VVA_ONLY( pWal->lockError = (u8)(rc!=SQLITE_OK && (rc&0xFF)!=SQLITE_BUSY); ) return rc; } static void walUnlockShared(Wal *pWal, int lockIdx){ if( pWal->exclusiveMode ) return; (void)sqlite3OsShmLock(pWal->pDbFd, lockIdx, 1, SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED); WALTRACE(("WAL%p: release SHARED-%s\n", pWal, walLockName(lockIdx))); } static int walLockExclusive(Wal *pWal, int lockIdx, int n){ int rc; if( pWal->exclusiveMode ) return SQLITE_OK; rc = sqlite3OsShmLock(pWal->pDbFd, lockIdx, n, SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE); WALTRACE(("WAL%p: acquire EXCLUSIVE-%s cnt=%d %s\n", pWal, walLockName(lockIdx), n, rc ? "failed" : "ok")); VVA_ONLY( pWal->lockError = (u8)(rc!=SQLITE_OK && (rc&0xFF)!=SQLITE_BUSY); ) return rc; } static void walUnlockExclusive(Wal *pWal, int lockIdx, int n){ if( pWal->exclusiveMode ) return; (void)sqlite3OsShmLock(pWal->pDbFd, lockIdx, n, SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE); WALTRACE(("WAL%p: release EXCLUSIVE-%s cnt=%d\n", pWal, walLockName(lockIdx), n)); } /* ** Compute a hash on a page number. The resulting hash value must land ** between 0 and (HASHTABLE_NSLOT-1). The walHashNext() function advances ** the hash to the next value in the event of a collision. */ static int walHash(u32 iPage){ assert( iPage>0 ); assert( (HASHTABLE_NSLOT & (HASHTABLE_NSLOT-1))==0 ); return (iPage*HASHTABLE_HASH_1) & (HASHTABLE_NSLOT-1); } static int walNextHash(int iPriorHash){ return (iPriorHash+1)&(HASHTABLE_NSLOT-1); } /* ** An instance of the WalHashLoc object is used to describe the location ** of a page hash table in the wal-index. This becomes the return value ** from walHashGet(). */ typedef struct WalHashLoc WalHashLoc; struct WalHashLoc { volatile ht_slot *aHash; /* Start of the wal-index hash table */ volatile u32 *aPgno; /* aPgno[1] is the page of first frame indexed */ u32 iZero; /* One less than the frame number of first indexed*/ }; /* ** Return pointers to the hash table and page number array stored on ** page iHash of the wal-index. The wal-index is broken into 32KB pages ** numbered starting from 0. ** ** Set output variable pLoc->aHash to point to the start of the hash table ** in the wal-index file. Set pLoc->iZero to one less than the frame ** number of the first frame indexed by this hash table. If a ** slot in the hash table is set to N, it refers to frame number ** (pLoc->iZero+N) in the log. ** ** Finally, set pLoc->aPgno so that pLoc->aPgno[1] is the page number of the ** first frame indexed by the hash table, frame (pLoc->iZero+1). */ static int walHashGet( Wal *pWal, /* WAL handle */ int iHash, /* Find the iHash'th table */ WalHashLoc *pLoc /* OUT: Hash table location */ ){ int rc; /* Return code */ rc = walIndexPage(pWal, iHash, &pLoc->aPgno); assert( rc==SQLITE_OK || iHash>0 ); if( rc==SQLITE_OK ){ pLoc->aHash = (volatile ht_slot *)&pLoc->aPgno[HASHTABLE_NPAGE]; if( iHash==0 ){ pLoc->aPgno = &pLoc->aPgno[WALINDEX_HDR_SIZE/sizeof(u32)]; pLoc->iZero = 0; }else{ pLoc->iZero = HASHTABLE_NPAGE_ONE + (iHash-1)*HASHTABLE_NPAGE; } pLoc->aPgno = &pLoc->aPgno[-1]; } return rc; } /* ** Return the number of the wal-index page that contains the hash-table ** and page-number array that contain entries corresponding to WAL frame ** iFrame. The wal-index is broken up into 32KB pages. Wal-index pages ** are numbered starting from 0. */ static int walFramePage(u32 iFrame){ int iHash = (iFrame+HASHTABLE_NPAGE-HASHTABLE_NPAGE_ONE-1) / HASHTABLE_NPAGE; assert( (iHash==0 || iFrame>HASHTABLE_NPAGE_ONE) && (iHash>=1 || iFrame<=HASHTABLE_NPAGE_ONE) && (iHash<=1 || iFrame>(HASHTABLE_NPAGE_ONE+HASHTABLE_NPAGE)) && (iHash>=2 || iFrame<=HASHTABLE_NPAGE_ONE+HASHTABLE_NPAGE) && (iHash<=2 || iFrame>(HASHTABLE_NPAGE_ONE+2*HASHTABLE_NPAGE)) ); assert( iHash>=0 ); return iHash; } /* ** Return the page number associated with frame iFrame in this WAL. */ static u32 walFramePgno(Wal *pWal, u32 iFrame){ int iHash = walFramePage(iFrame); if( iHash==0 ){ return pWal->apWiData[0][WALINDEX_HDR_SIZE/sizeof(u32) + iFrame - 1]; } return pWal->apWiData[iHash][(iFrame-1-HASHTABLE_NPAGE_ONE)%HASHTABLE_NPAGE]; } /* ** Remove entries from the hash table that point to WAL slots greater ** than pWal->hdr.mxFrame. ** ** This function is called whenever pWal->hdr.mxFrame is decreased due ** to a rollback or savepoint. ** ** At most only the hash table containing pWal->hdr.mxFrame needs to be ** updated. Any later hash tables will be automatically cleared when ** pWal->hdr.mxFrame advances to the point where those hash tables are ** actually needed. */ static void walCleanupHash(Wal *pWal){ WalHashLoc sLoc; /* Hash table location */ int iLimit = 0; /* Zero values greater than this */ int nByte; /* Number of bytes to zero in aPgno[] */ int i; /* Used to iterate through aHash[] */ int rc; /* Return code form walHashGet() */ assert( pWal->writeLock ); testcase( pWal->hdr.mxFrame==HASHTABLE_NPAGE_ONE-1 ); testcase( pWal->hdr.mxFrame==HASHTABLE_NPAGE_ONE ); testcase( pWal->hdr.mxFrame==HASHTABLE_NPAGE_ONE+1 ); if( pWal->hdr.mxFrame==0 ) return; /* Obtain pointers to the hash-table and page-number array containing ** the entry that corresponds to frame pWal->hdr.mxFrame. It is guaranteed ** that the page said hash-table and array reside on is already mapped.(1) */ assert( pWal->nWiData>walFramePage(pWal->hdr.mxFrame) ); assert( pWal->apWiData[walFramePage(pWal->hdr.mxFrame)] ); rc = walHashGet(pWal, walFramePage(pWal->hdr.mxFrame), &sLoc); if( NEVER(rc) ) return; /* Defense-in-depth, in case (1) above is wrong */ /* Zero all hash-table entries that correspond to frame numbers greater ** than pWal->hdr.mxFrame. */ iLimit = pWal->hdr.mxFrame - sLoc.iZero; assert( iLimit>0 ); for(i=0; iiLimit ){ sLoc.aHash[i] = 0; } } /* Zero the entries in the aPgno array that correspond to frames with ** frame numbers greater than pWal->hdr.mxFrame. */ nByte = (int)((char *)sLoc.aHash - (char *)&sLoc.aPgno[iLimit+1]); memset((void *)&sLoc.aPgno[iLimit+1], 0, nByte); #ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT /* Verify that the every entry in the mapping region is still reachable ** via the hash table even after the cleanup. */ if( iLimit ){ int j; /* Loop counter */ int iKey; /* Hash key */ for(j=1; j<=iLimit; j++){ for(iKey=walHash(sLoc.aPgno[j]);sLoc.aHash[iKey];iKey=walNextHash(iKey)){ if( sLoc.aHash[iKey]==j ) break; } assert( sLoc.aHash[iKey]==j ); } } #endif /* SQLITE_ENABLE_EXPENSIVE_ASSERT */ } /* ** Set an entry in the wal-index that will map database page number ** pPage into WAL frame iFrame. */ static int walIndexAppend(Wal *pWal, u32 iFrame, u32 iPage){ int rc; /* Return code */ WalHashLoc sLoc; /* Wal-index hash table location */ rc = walHashGet(pWal, walFramePage(iFrame), &sLoc); /* Assuming the wal-index file was successfully mapped, populate the ** page number array and hash table entry. */ if( rc==SQLITE_OK ){ int iKey; /* Hash table key */ int idx; /* Value to write to hash-table slot */ int nCollide; /* Number of hash collisions */ idx = iFrame - sLoc.iZero; assert( idx <= HASHTABLE_NSLOT/2 + 1 ); /* If this is the first entry to be added to this hash-table, zero the ** entire hash table and aPgno[] array before proceeding. */ if( idx==1 ){ int nByte = (int)((u8 *)&sLoc.aHash[HASHTABLE_NSLOT] - (u8 *)&sLoc.aPgno[1]); memset((void*)&sLoc.aPgno[1], 0, nByte); } /* If the entry in aPgno[] is already set, then the previous writer ** must have exited unexpectedly in the middle of a transaction (after ** writing one or more dirty pages to the WAL to free up memory). ** Remove the remnants of that writers uncommitted transaction from ** the hash-table before writing any new entries. */ if( sLoc.aPgno[idx] ){ walCleanupHash(pWal); assert( !sLoc.aPgno[idx] ); } /* Write the aPgno[] array entry and the hash-table slot. */ nCollide = idx; for(iKey=walHash(iPage); sLoc.aHash[iKey]; iKey=walNextHash(iKey)){ if( (nCollide--)==0 ) return SQLITE_CORRUPT_BKPT; } sLoc.aPgno[idx] = iPage; AtomicStore(&sLoc.aHash[iKey], (ht_slot)idx); #ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT /* Verify that the number of entries in the hash table exactly equals ** the number of entries in the mapping region. */ { int i; /* Loop counter */ int nEntry = 0; /* Number of entries in the hash table */ for(i=0; ickptLock==1 || pWal->ckptLock==0 ); assert( WAL_ALL_BUT_WRITE==WAL_WRITE_LOCK+1 ); assert( WAL_CKPT_LOCK==WAL_ALL_BUT_WRITE ); assert( pWal->writeLock ); iLock = WAL_ALL_BUT_WRITE + pWal->ckptLock; rc = walLockExclusive(pWal, iLock, WAL_READ_LOCK(0)-iLock); if( rc ){ return rc; } WALTRACE(("WAL%p: recovery begin...\n", pWal)); memset(&pWal->hdr, 0, sizeof(WalIndexHdr)); rc = sqlite3OsFileSize(pWal->pWalFd, &nSize); if( rc!=SQLITE_OK ){ goto recovery_error; } if( nSize>WAL_HDRSIZE ){ u8 aBuf[WAL_HDRSIZE]; /* Buffer to load WAL header into */ u32 *aPrivate = 0; /* Heap copy of *-shm hash being populated */ u8 *aFrame = 0; /* Malloc'd buffer to load entire frame */ int szFrame; /* Number of bytes in buffer aFrame[] */ u8 *aData; /* Pointer to data part of aFrame buffer */ int szPage; /* Page size according to the log */ u32 magic; /* Magic value read from WAL header */ u32 version; /* Magic value read from WAL header */ int isValid; /* True if this frame is valid */ u32 iPg; /* Current 32KB wal-index page */ u32 iLastFrame; /* Last frame in wal, based on nSize alone */ /* Read in the WAL header. */ rc = sqlite3OsRead(pWal->pWalFd, aBuf, WAL_HDRSIZE, 0); if( rc!=SQLITE_OK ){ goto recovery_error; } /* If the database page size is not a power of two, or is greater than ** SQLITE_MAX_PAGE_SIZE, conclude that the WAL file contains no valid ** data. Similarly, if the 'magic' value is invalid, ignore the whole ** WAL file. */ magic = sqlite3Get4byte(&aBuf[0]); szPage = sqlite3Get4byte(&aBuf[8]); if( (magic&0xFFFFFFFE)!=WAL_MAGIC || szPage&(szPage-1) || szPage>SQLITE_MAX_PAGE_SIZE || szPage<512 ){ goto finished; } pWal->hdr.bigEndCksum = (u8)(magic&0x00000001); pWal->szPage = szPage; pWal->nCkpt = sqlite3Get4byte(&aBuf[12]); memcpy(&pWal->hdr.aSalt, &aBuf[16], 8); /* Verify that the WAL header checksum is correct */ walChecksumBytes(pWal->hdr.bigEndCksum==SQLITE_BIGENDIAN, aBuf, WAL_HDRSIZE-2*4, 0, pWal->hdr.aFrameCksum ); if( pWal->hdr.aFrameCksum[0]!=sqlite3Get4byte(&aBuf[24]) || pWal->hdr.aFrameCksum[1]!=sqlite3Get4byte(&aBuf[28]) ){ goto finished; } /* Verify that the version number on the WAL format is one that ** are able to understand */ version = sqlite3Get4byte(&aBuf[4]); if( version!=WAL_MAX_VERSION ){ rc = SQLITE_CANTOPEN_BKPT; goto finished; } /* Malloc a buffer to read frames into. */ szFrame = szPage + WAL_FRAME_HDRSIZE; aFrame = (u8 *)sqlite3_malloc64(szFrame + WALINDEX_PGSZ); if( !aFrame ){ rc = SQLITE_NOMEM_BKPT; goto recovery_error; } aData = &aFrame[WAL_FRAME_HDRSIZE]; aPrivate = (u32*)&aData[szPage]; /* Read all frames from the log file. */ iLastFrame = (nSize - WAL_HDRSIZE) / szFrame; for(iPg=0; iPg<=(u32)walFramePage(iLastFrame); iPg++){ u32 *aShare; u32 iFrame; /* Index of last frame read */ u32 iLast = MIN(iLastFrame, HASHTABLE_NPAGE_ONE+iPg*HASHTABLE_NPAGE); u32 iFirst = 1 + (iPg==0?0:HASHTABLE_NPAGE_ONE+(iPg-1)*HASHTABLE_NPAGE); u32 nHdr, nHdr32; rc = walIndexPage(pWal, iPg, (volatile u32**)&aShare); if( rc ) break; pWal->apWiData[iPg] = aPrivate; for(iFrame=iFirst; iFrame<=iLast; iFrame++){ i64 iOffset = walFrameOffset(iFrame, szPage); u32 pgno; /* Database page number for frame */ u32 nTruncate; /* dbsize field from frame header */ /* Read and decode the next log frame. */ rc = sqlite3OsRead(pWal->pWalFd, aFrame, szFrame, iOffset); if( rc!=SQLITE_OK ) break; isValid = walDecodeFrame(pWal, &pgno, &nTruncate, aData, aFrame); if( !isValid ) break; rc = walIndexAppend(pWal, iFrame, pgno); if( NEVER(rc!=SQLITE_OK) ) break; /* If nTruncate is non-zero, this is a commit record. */ if( nTruncate ){ pWal->hdr.mxFrame = iFrame; pWal->hdr.nPage = nTruncate; pWal->hdr.szPage = (u16)((szPage&0xff00) | (szPage>>16)); testcase( szPage<=32768 ); testcase( szPage>=65536 ); aFrameCksum[0] = pWal->hdr.aFrameCksum[0]; aFrameCksum[1] = pWal->hdr.aFrameCksum[1]; } } pWal->apWiData[iPg] = aShare; nHdr = (iPg==0 ? WALINDEX_HDR_SIZE : 0); nHdr32 = nHdr / sizeof(u32); #ifndef SQLITE_SAFER_WALINDEX_RECOVERY /* Memcpy() should work fine here, on all reasonable implementations. ** Technically, memcpy() might change the destination to some ** intermediate value before setting to the final value, and that might ** cause a concurrent reader to malfunction. Memcpy() is allowed to ** do that, according to the spec, but no memcpy() implementation that ** we know of actually does that, which is why we say that memcpy() ** is safe for this. Memcpy() is certainly a lot faster. */ memcpy(&aShare[nHdr32], &aPrivate[nHdr32], WALINDEX_PGSZ-nHdr); #else /* In the event that some platform is found for which memcpy() ** changes the destination to some intermediate value before ** setting the final value, this alternative copy routine is ** provided. */ { int i; for(i=nHdr32; ihdr.aFrameCksum[0] = aFrameCksum[0]; pWal->hdr.aFrameCksum[1] = aFrameCksum[1]; walIndexWriteHdr(pWal); /* Reset the checkpoint-header. This is safe because this thread is ** currently holding locks that exclude all other writers and ** checkpointers. Then set the values of read-mark slots 1 through N. */ pInfo = walCkptInfo(pWal); pInfo->nBackfill = 0; pInfo->nBackfillAttempted = pWal->hdr.mxFrame; pInfo->aReadMark[0] = 0; for(i=1; ihdr.mxFrame ){ pInfo->aReadMark[i] = pWal->hdr.mxFrame; }else{ pInfo->aReadMark[i] = READMARK_NOT_USED; } walUnlockExclusive(pWal, WAL_READ_LOCK(i), 1); }else if( rc!=SQLITE_BUSY ){ goto recovery_error; } } /* If more than one frame was recovered from the log file, report an ** event via sqlite3_log(). This is to help with identifying performance ** problems caused by applications routinely shutting down without ** checkpointing the log file. */ if( pWal->hdr.nPage ){ sqlite3_log(SQLITE_NOTICE_RECOVER_WAL, "recovered %d frames from WAL file %s", pWal->hdr.mxFrame, pWal->zWalName ); } } recovery_error: WALTRACE(("WAL%p: recovery %s\n", pWal, rc ? "failed" : "ok")); walUnlockExclusive(pWal, iLock, WAL_READ_LOCK(0)-iLock); return rc; } /* ** Close an open wal-index. */ static void walIndexClose(Wal *pWal, int isDelete){ if( pWal->exclusiveMode==WAL_HEAPMEMORY_MODE || pWal->bShmUnreliable ){ int i; for(i=0; inWiData; i++){ sqlite3_free((void *)pWal->apWiData[i]); pWal->apWiData[i] = 0; } } if( pWal->exclusiveMode!=WAL_HEAPMEMORY_MODE ){ sqlite3OsShmUnmap(pWal->pDbFd, isDelete); } } /* ** Open a connection to the WAL file zWalName. The database file must ** already be opened on connection pDbFd. The buffer that zWalName points ** to must remain valid for the lifetime of the returned Wal* handle. ** ** A SHARED lock should be held on the database file when this function ** is called. The purpose of this SHARED lock is to prevent any other ** client from unlinking the WAL or wal-index file. If another process ** were to do this just after this client opened one of these files, the ** system would be badly broken. ** ** If the log file is successfully opened, SQLITE_OK is returned and ** *ppWal is set to point to a new WAL handle. If an error occurs, ** an SQLite error code is returned and *ppWal is left unmodified. */ SQLITE_PRIVATE int sqlite3WalOpen( sqlite3_vfs *pVfs, /* vfs module to open wal and wal-index */ sqlite3_file *pDbFd, /* The open database file */ const char *zWalName, /* Name of the WAL file */ int bNoShm, /* True to run in heap-memory mode */ i64 mxWalSize, /* Truncate WAL to this size on reset */ Wal **ppWal /* OUT: Allocated Wal handle */ ){ int rc; /* Return Code */ Wal *pRet; /* Object to allocate and return */ int flags; /* Flags passed to OsOpen() */ assert( zWalName && zWalName[0] ); assert( pDbFd ); /* In the amalgamation, the os_unix.c and os_win.c source files come before ** this source file. Verify that the #defines of the locking byte offsets ** in os_unix.c and os_win.c agree with the WALINDEX_LOCK_OFFSET value. ** For that matter, if the lock offset ever changes from its initial design ** value of 120, we need to know that so there is an assert() to check it. */ assert( 120==WALINDEX_LOCK_OFFSET ); assert( 136==WALINDEX_HDR_SIZE ); #ifdef WIN_SHM_BASE assert( WIN_SHM_BASE==WALINDEX_LOCK_OFFSET ); #endif #ifdef UNIX_SHM_BASE assert( UNIX_SHM_BASE==WALINDEX_LOCK_OFFSET ); #endif /* Allocate an instance of struct Wal to return. */ *ppWal = 0; pRet = (Wal*)sqlite3MallocZero(sizeof(Wal) + pVfs->szOsFile); if( !pRet ){ return SQLITE_NOMEM_BKPT; } pRet->pVfs = pVfs; pRet->pWalFd = (sqlite3_file *)&pRet[1]; pRet->pDbFd = pDbFd; pRet->readLock = -1; pRet->mxWalSize = mxWalSize; pRet->zWalName = zWalName; pRet->syncHeader = 1; pRet->padToSectorBoundary = 1; pRet->exclusiveMode = (bNoShm ? WAL_HEAPMEMORY_MODE: WAL_NORMAL_MODE); /* Open file handle on the write-ahead log file. */ flags = (SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|SQLITE_OPEN_WAL); rc = sqlite3OsOpen(pVfs, zWalName, pRet->pWalFd, flags, &flags); if( rc==SQLITE_OK && flags&SQLITE_OPEN_READONLY ){ pRet->readOnly = WAL_RDONLY; } if( rc!=SQLITE_OK ){ walIndexClose(pRet, 0); sqlite3OsClose(pRet->pWalFd); sqlite3_free(pRet); }else{ int iDC = sqlite3OsDeviceCharacteristics(pDbFd); if( iDC & SQLITE_IOCAP_SEQUENTIAL ){ pRet->syncHeader = 0; } if( iDC & SQLITE_IOCAP_POWERSAFE_OVERWRITE ){ pRet->padToSectorBoundary = 0; } *ppWal = pRet; WALTRACE(("WAL%d: opened\n", pRet)); } return rc; } /* ** Change the size to which the WAL file is trucated on each reset. */ SQLITE_PRIVATE void sqlite3WalLimit(Wal *pWal, i64 iLimit){ if( pWal ) pWal->mxWalSize = iLimit; } /* ** Find the smallest page number out of all pages held in the WAL that ** has not been returned by any prior invocation of this method on the ** same WalIterator object. Write into *piFrame the frame index where ** that page was last written into the WAL. Write into *piPage the page ** number. ** ** Return 0 on success. If there are no pages in the WAL with a page ** number larger than *piPage, then return 1. */ static int walIteratorNext( WalIterator *p, /* Iterator */ u32 *piPage, /* OUT: The page number of the next page */ u32 *piFrame /* OUT: Wal frame index of next page */ ){ u32 iMin; /* Result pgno must be greater than iMin */ u32 iRet = 0xFFFFFFFF; /* 0xffffffff is never a valid page number */ int i; /* For looping through segments */ iMin = p->iPrior; assert( iMin<0xffffffff ); for(i=p->nSegment-1; i>=0; i--){ struct WalSegment *pSegment = &p->aSegment[i]; while( pSegment->iNextnEntry ){ u32 iPg = pSegment->aPgno[pSegment->aIndex[pSegment->iNext]]; if( iPg>iMin ){ if( iPgiZero + pSegment->aIndex[pSegment->iNext]; } break; } pSegment->iNext++; } } *piPage = p->iPrior = iRet; return (iRet==0xFFFFFFFF); } /* ** This function merges two sorted lists into a single sorted list. ** ** aLeft[] and aRight[] are arrays of indices. The sort key is ** aContent[aLeft[]] and aContent[aRight[]]. Upon entry, the following ** is guaranteed for all J0 && nRight>0 ); while( iRight=nRight || aContent[aLeft[iLeft]]=nLeft || aContent[aLeft[iLeft]]>dbpage ); assert( iRight>=nRight || aContent[aRight[iRight]]>dbpage ); } *paRight = aLeft; *pnRight = iOut; memcpy(aLeft, aTmp, sizeof(aTmp[0])*iOut); } /* ** Sort the elements in list aList using aContent[] as the sort key. ** Remove elements with duplicate keys, preferring to keep the ** larger aList[] values. ** ** The aList[] entries are indices into aContent[]. The values in ** aList[] are to be sorted so that for all J0 ); assert( HASHTABLE_NPAGE==(1<<(ArraySize(aSub)-1)) ); for(iList=0; iListaList && p->nList<=(1<aList==&aList[iList&~((2<aList, p->nList, &aMerge, &nMerge, aBuffer); } aSub[iSub].aList = aMerge; aSub[iSub].nList = nMerge; } for(iSub++; iSubnList<=(1<aList==&aList[nList&~((2<aList, p->nList, &aMerge, &nMerge, aBuffer); } } assert( aMerge==aList ); *pnList = nMerge; #ifdef SQLITE_DEBUG { int i; for(i=1; i<*pnList; i++){ assert( aContent[aList[i]] > aContent[aList[i-1]] ); } } #endif } /* ** Free an iterator allocated by walIteratorInit(). */ static void walIteratorFree(WalIterator *p){ sqlite3_free(p); } /* ** Construct a WalInterator object that can be used to loop over all ** pages in the WAL following frame nBackfill in ascending order. Frames ** nBackfill or earlier may be included - excluding them is an optimization ** only. The caller must hold the checkpoint lock. ** ** On success, make *pp point to the newly allocated WalInterator object ** return SQLITE_OK. Otherwise, return an error code. If this routine ** returns an error, the value of *pp is undefined. ** ** The calling routine should invoke walIteratorFree() to destroy the ** WalIterator object when it has finished with it. */ static int walIteratorInit(Wal *pWal, u32 nBackfill, WalIterator **pp){ WalIterator *p; /* Return value */ int nSegment; /* Number of segments to merge */ u32 iLast; /* Last frame in log */ sqlite3_int64 nByte; /* Number of bytes to allocate */ int i; /* Iterator variable */ ht_slot *aTmp; /* Temp space used by merge-sort */ int rc = SQLITE_OK; /* Return Code */ /* This routine only runs while holding the checkpoint lock. And ** it only runs if there is actually content in the log (mxFrame>0). */ assert( pWal->ckptLock && pWal->hdr.mxFrame>0 ); iLast = pWal->hdr.mxFrame; /* Allocate space for the WalIterator object. */ nSegment = walFramePage(iLast) + 1; nByte = sizeof(WalIterator) + (nSegment-1)*sizeof(struct WalSegment) + iLast*sizeof(ht_slot); p = (WalIterator *)sqlite3_malloc64(nByte); if( !p ){ return SQLITE_NOMEM_BKPT; } memset(p, 0, nByte); p->nSegment = nSegment; /* Allocate temporary space used by the merge-sort routine. This block ** of memory will be freed before this function returns. */ aTmp = (ht_slot *)sqlite3_malloc64( sizeof(ht_slot) * (iLast>HASHTABLE_NPAGE?HASHTABLE_NPAGE:iLast) ); if( !aTmp ){ rc = SQLITE_NOMEM_BKPT; } for(i=walFramePage(nBackfill+1); rc==SQLITE_OK && iaSegment[p->nSegment])[sLoc.iZero]; sLoc.iZero++; for(j=0; jaSegment[i].iZero = sLoc.iZero; p->aSegment[i].nEntry = nEntry; p->aSegment[i].aIndex = aIndex; p->aSegment[i].aPgno = (u32 *)sLoc.aPgno; } } sqlite3_free(aTmp); if( rc!=SQLITE_OK ){ walIteratorFree(p); p = 0; } *pp = p; return rc; } #ifdef SQLITE_ENABLE_SETLK_TIMEOUT /* ** Attempt to enable blocking locks. Blocking locks are enabled only if (a) ** they are supported by the VFS, and (b) the database handle is configured ** with a busy-timeout. Return 1 if blocking locks are successfully enabled, ** or 0 otherwise. */ static int walEnableBlocking(Wal *pWal){ int res = 0; if( pWal->db ){ int tmout = pWal->db->busyTimeout; if( tmout ){ int rc; rc = sqlite3OsFileControl( pWal->pDbFd, SQLITE_FCNTL_LOCK_TIMEOUT, (void*)&tmout ); res = (rc==SQLITE_OK); } } return res; } /* ** Disable blocking locks. */ static void walDisableBlocking(Wal *pWal){ int tmout = 0; sqlite3OsFileControl(pWal->pDbFd, SQLITE_FCNTL_LOCK_TIMEOUT, (void*)&tmout); } /* ** If parameter bLock is true, attempt to enable blocking locks, take ** the WRITER lock, and then disable blocking locks. If blocking locks ** cannot be enabled, no attempt to obtain the WRITER lock is made. Return ** an SQLite error code if an error occurs, or SQLITE_OK otherwise. It is not ** an error if blocking locks can not be enabled. ** ** If the bLock parameter is false and the WRITER lock is held, release it. */ SQLITE_PRIVATE int sqlite3WalWriteLock(Wal *pWal, int bLock){ int rc = SQLITE_OK; assert( pWal->readLock<0 || bLock==0 ); if( bLock ){ assert( pWal->db ); if( walEnableBlocking(pWal) ){ rc = walLockExclusive(pWal, WAL_WRITE_LOCK, 1); if( rc==SQLITE_OK ){ pWal->writeLock = 1; } walDisableBlocking(pWal); } }else if( pWal->writeLock ){ walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); pWal->writeLock = 0; } return rc; } /* ** Set the database handle used to determine if blocking locks are required. */ SQLITE_PRIVATE void sqlite3WalDb(Wal *pWal, sqlite3 *db){ pWal->db = db; } /* ** Take an exclusive WRITE lock. Blocking if so configured. */ static int walLockWriter(Wal *pWal){ int rc; walEnableBlocking(pWal); rc = walLockExclusive(pWal, WAL_WRITE_LOCK, 1); walDisableBlocking(pWal); return rc; } #else # define walEnableBlocking(x) 0 # define walDisableBlocking(x) # define walLockWriter(pWal) walLockExclusive((pWal), WAL_WRITE_LOCK, 1) # define sqlite3WalDb(pWal, db) #endif /* ifdef SQLITE_ENABLE_SETLK_TIMEOUT */ /* ** Attempt to obtain the exclusive WAL lock defined by parameters lockIdx and ** n. If the attempt fails and parameter xBusy is not NULL, then it is a ** busy-handler function. Invoke it and retry the lock until either the ** lock is successfully obtained or the busy-handler returns 0. */ static int walBusyLock( Wal *pWal, /* WAL connection */ int (*xBusy)(void*), /* Function to call when busy */ void *pBusyArg, /* Context argument for xBusyHandler */ int lockIdx, /* Offset of first byte to lock */ int n /* Number of bytes to lock */ ){ int rc; do { rc = walLockExclusive(pWal, lockIdx, n); }while( xBusy && rc==SQLITE_BUSY && xBusy(pBusyArg) ); #ifdef SQLITE_ENABLE_SETLK_TIMEOUT if( rc==SQLITE_BUSY_TIMEOUT ){ walDisableBlocking(pWal); rc = SQLITE_BUSY; } #endif return rc; } /* ** The cache of the wal-index header must be valid to call this function. ** Return the page-size in bytes used by the database. */ static int walPagesize(Wal *pWal){ return (pWal->hdr.szPage&0xfe00) + ((pWal->hdr.szPage&0x0001)<<16); } /* ** The following is guaranteed when this function is called: ** ** a) the WRITER lock is held, ** b) the entire log file has been checkpointed, and ** c) any existing readers are reading exclusively from the database ** file - there are no readers that may attempt to read a frame from ** the log file. ** ** This function updates the shared-memory structures so that the next ** client to write to the database (which may be this one) does so by ** writing frames into the start of the log file. ** ** The value of parameter salt1 is used as the aSalt[1] value in the ** new wal-index header. It should be passed a pseudo-random value (i.e. ** one obtained from sqlite3_randomness()). */ static void walRestartHdr(Wal *pWal, u32 salt1){ volatile WalCkptInfo *pInfo = walCkptInfo(pWal); int i; /* Loop counter */ u32 *aSalt = pWal->hdr.aSalt; /* Big-endian salt values */ pWal->nCkpt++; pWal->hdr.mxFrame = 0; sqlite3Put4byte((u8*)&aSalt[0], 1 + sqlite3Get4byte((u8*)&aSalt[0])); memcpy(&pWal->hdr.aSalt[1], &salt1, 4); walIndexWriteHdr(pWal); AtomicStore(&pInfo->nBackfill, 0); pInfo->nBackfillAttempted = 0; pInfo->aReadMark[1] = 0; for(i=2; iaReadMark[i] = READMARK_NOT_USED; assert( pInfo->aReadMark[0]==0 ); } /* ** Copy as much content as we can from the WAL back into the database file ** in response to an sqlite3_wal_checkpoint() request or the equivalent. ** ** The amount of information copies from WAL to database might be limited ** by active readers. This routine will never overwrite a database page ** that a concurrent reader might be using. ** ** All I/O barrier operations (a.k.a fsyncs) occur in this routine when ** SQLite is in WAL-mode in synchronous=NORMAL. That means that if ** checkpoints are always run by a background thread or background ** process, foreground threads will never block on a lengthy fsync call. ** ** Fsync is called on the WAL before writing content out of the WAL and ** into the database. This ensures that if the new content is persistent ** in the WAL and can be recovered following a power-loss or hard reset. ** ** Fsync is also called on the database file if (and only if) the entire ** WAL content is copied into the database file. This second fsync makes ** it safe to delete the WAL since the new content will persist in the ** database file. ** ** This routine uses and updates the nBackfill field of the wal-index header. ** This is the only routine that will increase the value of nBackfill. ** (A WAL reset or recovery will revert nBackfill to zero, but not increase ** its value.) ** ** The caller must be holding sufficient locks to ensure that no other ** checkpoint is running (in any other thread or process) at the same ** time. */ static int walCheckpoint( Wal *pWal, /* Wal connection */ sqlite3 *db, /* Check for interrupts on this handle */ int eMode, /* One of PASSIVE, FULL or RESTART */ int (*xBusy)(void*), /* Function to call when busy */ void *pBusyArg, /* Context argument for xBusyHandler */ int sync_flags, /* Flags for OsSync() (or 0) */ u8 *zBuf /* Temporary buffer to use */ ){ int rc = SQLITE_OK; /* Return code */ int szPage; /* Database page-size */ WalIterator *pIter = 0; /* Wal iterator context */ u32 iDbpage = 0; /* Next database page to write */ u32 iFrame = 0; /* Wal frame containing data for iDbpage */ u32 mxSafeFrame; /* Max frame that can be backfilled */ u32 mxPage; /* Max database page to write */ int i; /* Loop counter */ volatile WalCkptInfo *pInfo; /* The checkpoint status information */ szPage = walPagesize(pWal); testcase( szPage<=32768 ); testcase( szPage>=65536 ); pInfo = walCkptInfo(pWal); if( pInfo->nBackfillhdr.mxFrame ){ /* EVIDENCE-OF: R-62920-47450 The busy-handler callback is never invoked ** in the SQLITE_CHECKPOINT_PASSIVE mode. */ assert( eMode!=SQLITE_CHECKPOINT_PASSIVE || xBusy==0 ); /* Compute in mxSafeFrame the index of the last frame of the WAL that is ** safe to write into the database. Frames beyond mxSafeFrame might ** overwrite database pages that are in use by active readers and thus ** cannot be backfilled from the WAL. */ mxSafeFrame = pWal->hdr.mxFrame; mxPage = pWal->hdr.nPage; for(i=1; iaReadMark+i); if( mxSafeFrame>y ){ assert( y<=pWal->hdr.mxFrame ); rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(i), 1); if( rc==SQLITE_OK ){ u32 iMark = (i==1 ? mxSafeFrame : READMARK_NOT_USED); AtomicStore(pInfo->aReadMark+i, iMark); walUnlockExclusive(pWal, WAL_READ_LOCK(i), 1); }else if( rc==SQLITE_BUSY ){ mxSafeFrame = y; xBusy = 0; }else{ goto walcheckpoint_out; } } } /* Allocate the iterator */ if( pInfo->nBackfillnBackfill, &pIter); assert( rc==SQLITE_OK || pIter==0 ); } if( pIter && (rc = walBusyLock(pWal,xBusy,pBusyArg,WAL_READ_LOCK(0),1))==SQLITE_OK ){ u32 nBackfill = pInfo->nBackfill; pInfo->nBackfillAttempted = mxSafeFrame; /* Sync the WAL to disk */ rc = sqlite3OsSync(pWal->pWalFd, CKPT_SYNC_FLAGS(sync_flags)); /* If the database may grow as a result of this checkpoint, hint ** about the eventual size of the db file to the VFS layer. */ if( rc==SQLITE_OK ){ i64 nReq = ((i64)mxPage * szPage); i64 nSize; /* Current size of database file */ sqlite3OsFileControl(pWal->pDbFd, SQLITE_FCNTL_CKPT_START, 0); rc = sqlite3OsFileSize(pWal->pDbFd, &nSize); if( rc==SQLITE_OK && nSizehdr.mxFrame*szPage)pDbFd, SQLITE_FCNTL_SIZE_HINT,&nReq); } } } /* Iterate through the contents of the WAL, copying data to the db file */ while( rc==SQLITE_OK && 0==walIteratorNext(pIter, &iDbpage, &iFrame) ){ i64 iOffset; assert( walFramePgno(pWal, iFrame)==iDbpage ); if( AtomicLoad(&db->u1.isInterrupted) ){ rc = db->mallocFailed ? SQLITE_NOMEM_BKPT : SQLITE_INTERRUPT; break; } if( iFrame<=nBackfill || iFrame>mxSafeFrame || iDbpage>mxPage ){ continue; } iOffset = walFrameOffset(iFrame, szPage) + WAL_FRAME_HDRSIZE; /* testcase( IS_BIG_INT(iOffset) ); // requires a 4GiB WAL file */ rc = sqlite3OsRead(pWal->pWalFd, zBuf, szPage, iOffset); if( rc!=SQLITE_OK ) break; iOffset = (iDbpage-1)*(i64)szPage; testcase( IS_BIG_INT(iOffset) ); rc = sqlite3OsWrite(pWal->pDbFd, zBuf, szPage, iOffset); if( rc!=SQLITE_OK ) break; } sqlite3OsFileControl(pWal->pDbFd, SQLITE_FCNTL_CKPT_DONE, 0); /* If work was actually accomplished... */ if( rc==SQLITE_OK ){ if( mxSafeFrame==walIndexHdr(pWal)->mxFrame ){ i64 szDb = pWal->hdr.nPage*(i64)szPage; testcase( IS_BIG_INT(szDb) ); rc = sqlite3OsTruncate(pWal->pDbFd, szDb); if( rc==SQLITE_OK ){ rc = sqlite3OsSync(pWal->pDbFd, CKPT_SYNC_FLAGS(sync_flags)); } } if( rc==SQLITE_OK ){ AtomicStore(&pInfo->nBackfill, mxSafeFrame); } } /* Release the reader lock held while backfilling */ walUnlockExclusive(pWal, WAL_READ_LOCK(0), 1); } if( rc==SQLITE_BUSY ){ /* Reset the return code so as not to report a checkpoint failure ** just because there are active readers. */ rc = SQLITE_OK; } } /* If this is an SQLITE_CHECKPOINT_RESTART or TRUNCATE operation, and the ** entire wal file has been copied into the database file, then block ** until all readers have finished using the wal file. This ensures that ** the next process to write to the database restarts the wal file. */ if( rc==SQLITE_OK && eMode!=SQLITE_CHECKPOINT_PASSIVE ){ assert( pWal->writeLock ); if( pInfo->nBackfillhdr.mxFrame ){ rc = SQLITE_BUSY; }else if( eMode>=SQLITE_CHECKPOINT_RESTART ){ u32 salt1; sqlite3_randomness(4, &salt1); assert( pInfo->nBackfill==pWal->hdr.mxFrame ); rc = walBusyLock(pWal, xBusy, pBusyArg, WAL_READ_LOCK(1), WAL_NREADER-1); if( rc==SQLITE_OK ){ if( eMode==SQLITE_CHECKPOINT_TRUNCATE ){ /* IMPLEMENTATION-OF: R-44699-57140 This mode works the same way as ** SQLITE_CHECKPOINT_RESTART with the addition that it also ** truncates the log file to zero bytes just prior to a ** successful return. ** ** In theory, it might be safe to do this without updating the ** wal-index header in shared memory, as all subsequent reader or ** writer clients should see that the entire log file has been ** checkpointed and behave accordingly. This seems unsafe though, ** as it would leave the system in a state where the contents of ** the wal-index header do not match the contents of the ** file-system. To avoid this, update the wal-index header to ** indicate that the log file contains zero valid frames. */ walRestartHdr(pWal, salt1); rc = sqlite3OsTruncate(pWal->pWalFd, 0); } walUnlockExclusive(pWal, WAL_READ_LOCK(1), WAL_NREADER-1); } } } walcheckpoint_out: walIteratorFree(pIter); return rc; } /* ** If the WAL file is currently larger than nMax bytes in size, truncate ** it to exactly nMax bytes. If an error occurs while doing so, ignore it. */ static void walLimitSize(Wal *pWal, i64 nMax){ i64 sz; int rx; sqlite3BeginBenignMalloc(); rx = sqlite3OsFileSize(pWal->pWalFd, &sz); if( rx==SQLITE_OK && (sz > nMax ) ){ rx = sqlite3OsTruncate(pWal->pWalFd, nMax); } sqlite3EndBenignMalloc(); if( rx ){ sqlite3_log(rx, "cannot limit WAL size: %s", pWal->zWalName); } } /* ** Close a connection to a log file. */ SQLITE_PRIVATE int sqlite3WalClose( Wal *pWal, /* Wal to close */ sqlite3 *db, /* For interrupt flag */ int sync_flags, /* Flags to pass to OsSync() (or 0) */ int nBuf, u8 *zBuf /* Buffer of at least nBuf bytes */ ){ int rc = SQLITE_OK; if( pWal ){ int isDelete = 0; /* True to unlink wal and wal-index files */ /* If an EXCLUSIVE lock can be obtained on the database file (using the ** ordinary, rollback-mode locking methods, this guarantees that the ** connection associated with this log file is the only connection to ** the database. In this case checkpoint the database and unlink both ** the wal and wal-index files. ** ** The EXCLUSIVE lock is not released before returning. */ if( zBuf!=0 && SQLITE_OK==(rc = sqlite3OsLock(pWal->pDbFd, SQLITE_LOCK_EXCLUSIVE)) ){ if( pWal->exclusiveMode==WAL_NORMAL_MODE ){ pWal->exclusiveMode = WAL_EXCLUSIVE_MODE; } rc = sqlite3WalCheckpoint(pWal, db, SQLITE_CHECKPOINT_PASSIVE, 0, 0, sync_flags, nBuf, zBuf, 0, 0 ); if( rc==SQLITE_OK ){ int bPersist = -1; sqlite3OsFileControlHint( pWal->pDbFd, SQLITE_FCNTL_PERSIST_WAL, &bPersist ); if( bPersist!=1 ){ /* Try to delete the WAL file if the checkpoint completed and ** fsyned (rc==SQLITE_OK) and if we are not in persistent-wal ** mode (!bPersist) */ isDelete = 1; }else if( pWal->mxWalSize>=0 ){ /* Try to truncate the WAL file to zero bytes if the checkpoint ** completed and fsynced (rc==SQLITE_OK) and we are in persistent ** WAL mode (bPersist) and if the PRAGMA journal_size_limit is a ** non-negative value (pWal->mxWalSize>=0). Note that we truncate ** to zero bytes as truncating to the journal_size_limit might ** leave a corrupt WAL file on disk. */ walLimitSize(pWal, 0); } } } walIndexClose(pWal, isDelete); sqlite3OsClose(pWal->pWalFd); if( isDelete ){ sqlite3BeginBenignMalloc(); sqlite3OsDelete(pWal->pVfs, pWal->zWalName, 0); sqlite3EndBenignMalloc(); } WALTRACE(("WAL%p: closed\n", pWal)); sqlite3_free((void *)pWal->apWiData); sqlite3_free(pWal); } return rc; } /* ** Try to read the wal-index header. Return 0 on success and 1 if ** there is a problem. ** ** The wal-index is in shared memory. Another thread or process might ** be writing the header at the same time this procedure is trying to ** read it, which might result in inconsistency. A dirty read is detected ** by verifying that both copies of the header are the same and also by ** a checksum on the header. ** ** If and only if the read is consistent and the header is different from ** pWal->hdr, then pWal->hdr is updated to the content of the new header ** and *pChanged is set to 1. ** ** If the checksum cannot be verified return non-zero. If the header ** is read successfully and the checksum verified, return zero. */ static SQLITE_NO_TSAN int walIndexTryHdr(Wal *pWal, int *pChanged){ u32 aCksum[2]; /* Checksum on the header content */ WalIndexHdr h1, h2; /* Two copies of the header content */ WalIndexHdr volatile *aHdr; /* Header in shared memory */ /* The first page of the wal-index must be mapped at this point. */ assert( pWal->nWiData>0 && pWal->apWiData[0] ); /* Read the header. This might happen concurrently with a write to the ** same area of shared memory on a different CPU in a SMP, ** meaning it is possible that an inconsistent snapshot is read ** from the file. If this happens, return non-zero. ** ** tag-20200519-1: ** There are two copies of the header at the beginning of the wal-index. ** When reading, read [0] first then [1]. Writes are in the reverse order. ** Memory barriers are used to prevent the compiler or the hardware from ** reordering the reads and writes. TSAN and similar tools can sometimes ** give false-positive warnings about these accesses because the tools do not ** account for the double-read and the memory barrier. The use of mutexes ** here would be problematic as the memory being accessed is potentially ** shared among multiple processes and not all mutex implementions work ** reliably in that environment. */ aHdr = walIndexHdr(pWal); memcpy(&h1, (void *)&aHdr[0], sizeof(h1)); /* Possible TSAN false-positive */ walShmBarrier(pWal); memcpy(&h2, (void *)&aHdr[1], sizeof(h2)); if( memcmp(&h1, &h2, sizeof(h1))!=0 ){ return 1; /* Dirty read */ } if( h1.isInit==0 ){ return 1; /* Malformed header - probably all zeros */ } walChecksumBytes(1, (u8*)&h1, sizeof(h1)-sizeof(h1.aCksum), 0, aCksum); if( aCksum[0]!=h1.aCksum[0] || aCksum[1]!=h1.aCksum[1] ){ return 1; /* Checksum does not match */ } if( memcmp(&pWal->hdr, &h1, sizeof(WalIndexHdr)) ){ *pChanged = 1; memcpy(&pWal->hdr, &h1, sizeof(WalIndexHdr)); pWal->szPage = (pWal->hdr.szPage&0xfe00) + ((pWal->hdr.szPage&0x0001)<<16); testcase( pWal->szPage<=32768 ); testcase( pWal->szPage>=65536 ); } /* The header was successfully read. Return zero. */ return 0; } /* ** This is the value that walTryBeginRead returns when it needs to ** be retried. */ #define WAL_RETRY (-1) /* ** Read the wal-index header from the wal-index and into pWal->hdr. ** If the wal-header appears to be corrupt, try to reconstruct the ** wal-index from the WAL before returning. ** ** Set *pChanged to 1 if the wal-index header value in pWal->hdr is ** changed by this operation. If pWal->hdr is unchanged, set *pChanged ** to 0. ** ** If the wal-index header is successfully read, return SQLITE_OK. ** Otherwise an SQLite error code. */ static int walIndexReadHdr(Wal *pWal, int *pChanged){ int rc; /* Return code */ int badHdr; /* True if a header read failed */ volatile u32 *page0; /* Chunk of wal-index containing header */ /* Ensure that page 0 of the wal-index (the page that contains the ** wal-index header) is mapped. Return early if an error occurs here. */ assert( pChanged ); rc = walIndexPage(pWal, 0, &page0); if( rc!=SQLITE_OK ){ assert( rc!=SQLITE_READONLY ); /* READONLY changed to OK in walIndexPage */ if( rc==SQLITE_READONLY_CANTINIT ){ /* The SQLITE_READONLY_CANTINIT return means that the shared-memory ** was openable but is not writable, and this thread is unable to ** confirm that another write-capable connection has the shared-memory ** open, and hence the content of the shared-memory is unreliable, ** since the shared-memory might be inconsistent with the WAL file ** and there is no writer on hand to fix it. */ assert( page0==0 ); assert( pWal->writeLock==0 ); assert( pWal->readOnly & WAL_SHM_RDONLY ); pWal->bShmUnreliable = 1; pWal->exclusiveMode = WAL_HEAPMEMORY_MODE; *pChanged = 1; }else{ return rc; /* Any other non-OK return is just an error */ } }else{ /* page0 can be NULL if the SHM is zero bytes in size and pWal->writeLock ** is zero, which prevents the SHM from growing */ testcase( page0!=0 ); } assert( page0!=0 || pWal->writeLock==0 ); /* If the first page of the wal-index has been mapped, try to read the ** wal-index header immediately, without holding any lock. This usually ** works, but may fail if the wal-index header is corrupt or currently ** being modified by another thread or process. */ badHdr = (page0 ? walIndexTryHdr(pWal, pChanged) : 1); /* If the first attempt failed, it might have been due to a race ** with a writer. So get a WRITE lock and try again. */ if( badHdr ){ if( pWal->bShmUnreliable==0 && (pWal->readOnly & WAL_SHM_RDONLY) ){ if( SQLITE_OK==(rc = walLockShared(pWal, WAL_WRITE_LOCK)) ){ walUnlockShared(pWal, WAL_WRITE_LOCK); rc = SQLITE_READONLY_RECOVERY; } }else{ int bWriteLock = pWal->writeLock; if( bWriteLock || SQLITE_OK==(rc = walLockWriter(pWal)) ){ pWal->writeLock = 1; if( SQLITE_OK==(rc = walIndexPage(pWal, 0, &page0)) ){ badHdr = walIndexTryHdr(pWal, pChanged); if( badHdr ){ /* If the wal-index header is still malformed even while holding ** a WRITE lock, it can only mean that the header is corrupted and ** needs to be reconstructed. So run recovery to do exactly that. */ rc = walIndexRecover(pWal); *pChanged = 1; } } if( bWriteLock==0 ){ pWal->writeLock = 0; walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); } } } } /* If the header is read successfully, check the version number to make ** sure the wal-index was not constructed with some future format that ** this version of SQLite cannot understand. */ if( badHdr==0 && pWal->hdr.iVersion!=WALINDEX_MAX_VERSION ){ rc = SQLITE_CANTOPEN_BKPT; } if( pWal->bShmUnreliable ){ if( rc!=SQLITE_OK ){ walIndexClose(pWal, 0); pWal->bShmUnreliable = 0; assert( pWal->nWiData>0 && pWal->apWiData[0]==0 ); /* walIndexRecover() might have returned SHORT_READ if a concurrent ** writer truncated the WAL out from under it. If that happens, it ** indicates that a writer has fixed the SHM file for us, so retry */ if( rc==SQLITE_IOERR_SHORT_READ ) rc = WAL_RETRY; } pWal->exclusiveMode = WAL_NORMAL_MODE; } return rc; } /* ** Open a transaction in a connection where the shared-memory is read-only ** and where we cannot verify that there is a separate write-capable connection ** on hand to keep the shared-memory up-to-date with the WAL file. ** ** This can happen, for example, when the shared-memory is implemented by ** memory-mapping a *-shm file, where a prior writer has shut down and ** left the *-shm file on disk, and now the present connection is trying ** to use that database but lacks write permission on the *-shm file. ** Other scenarios are also possible, depending on the VFS implementation. ** ** Precondition: ** ** The *-wal file has been read and an appropriate wal-index has been ** constructed in pWal->apWiData[] using heap memory instead of shared ** memory. ** ** If this function returns SQLITE_OK, then the read transaction has ** been successfully opened. In this case output variable (*pChanged) ** is set to true before returning if the caller should discard the ** contents of the page cache before proceeding. Or, if it returns ** WAL_RETRY, then the heap memory wal-index has been discarded and ** the caller should retry opening the read transaction from the ** beginning (including attempting to map the *-shm file). ** ** If an error occurs, an SQLite error code is returned. */ static int walBeginShmUnreliable(Wal *pWal, int *pChanged){ i64 szWal; /* Size of wal file on disk in bytes */ i64 iOffset; /* Current offset when reading wal file */ u8 aBuf[WAL_HDRSIZE]; /* Buffer to load WAL header into */ u8 *aFrame = 0; /* Malloc'd buffer to load entire frame */ int szFrame; /* Number of bytes in buffer aFrame[] */ u8 *aData; /* Pointer to data part of aFrame buffer */ volatile void *pDummy; /* Dummy argument for xShmMap */ int rc; /* Return code */ u32 aSaveCksum[2]; /* Saved copy of pWal->hdr.aFrameCksum */ assert( pWal->bShmUnreliable ); assert( pWal->readOnly & WAL_SHM_RDONLY ); assert( pWal->nWiData>0 && pWal->apWiData[0] ); /* Take WAL_READ_LOCK(0). This has the effect of preventing any ** writers from running a checkpoint, but does not stop them ** from running recovery. */ rc = walLockShared(pWal, WAL_READ_LOCK(0)); if( rc!=SQLITE_OK ){ if( rc==SQLITE_BUSY ) rc = WAL_RETRY; goto begin_unreliable_shm_out; } pWal->readLock = 0; /* Check to see if a separate writer has attached to the shared-memory area, ** thus making the shared-memory "reliable" again. Do this by invoking ** the xShmMap() routine of the VFS and looking to see if the return ** is SQLITE_READONLY instead of SQLITE_READONLY_CANTINIT. ** ** If the shared-memory is now "reliable" return WAL_RETRY, which will ** cause the heap-memory WAL-index to be discarded and the actual ** shared memory to be used in its place. ** ** This step is important because, even though this connection is holding ** the WAL_READ_LOCK(0) which prevents a checkpoint, a writer might ** have already checkpointed the WAL file and, while the current ** is active, wrap the WAL and start overwriting frames that this ** process wants to use. ** ** Once sqlite3OsShmMap() has been called for an sqlite3_file and has ** returned any SQLITE_READONLY value, it must return only SQLITE_READONLY ** or SQLITE_READONLY_CANTINIT or some error for all subsequent invocations, ** even if some external agent does a "chmod" to make the shared-memory ** writable by us, until sqlite3OsShmUnmap() has been called. ** This is a requirement on the VFS implementation. */ rc = sqlite3OsShmMap(pWal->pDbFd, 0, WALINDEX_PGSZ, 0, &pDummy); assert( rc!=SQLITE_OK ); /* SQLITE_OK not possible for read-only connection */ if( rc!=SQLITE_READONLY_CANTINIT ){ rc = (rc==SQLITE_READONLY ? WAL_RETRY : rc); goto begin_unreliable_shm_out; } /* We reach this point only if the real shared-memory is still unreliable. ** Assume the in-memory WAL-index substitute is correct and load it ** into pWal->hdr. */ memcpy(&pWal->hdr, (void*)walIndexHdr(pWal), sizeof(WalIndexHdr)); /* Make sure some writer hasn't come in and changed the WAL file out ** from under us, then disconnected, while we were not looking. */ rc = sqlite3OsFileSize(pWal->pWalFd, &szWal); if( rc!=SQLITE_OK ){ goto begin_unreliable_shm_out; } if( szWalhdr.mxFrame==0 ? SQLITE_OK : WAL_RETRY); goto begin_unreliable_shm_out; } /* Check the salt keys at the start of the wal file still match. */ rc = sqlite3OsRead(pWal->pWalFd, aBuf, WAL_HDRSIZE, 0); if( rc!=SQLITE_OK ){ goto begin_unreliable_shm_out; } if( memcmp(&pWal->hdr.aSalt, &aBuf[16], 8) ){ /* Some writer has wrapped the WAL file while we were not looking. ** Return WAL_RETRY which will cause the in-memory WAL-index to be ** rebuilt. */ rc = WAL_RETRY; goto begin_unreliable_shm_out; } /* Allocate a buffer to read frames into */ szFrame = pWal->hdr.szPage + WAL_FRAME_HDRSIZE; aFrame = (u8 *)sqlite3_malloc64(szFrame); if( aFrame==0 ){ rc = SQLITE_NOMEM_BKPT; goto begin_unreliable_shm_out; } aData = &aFrame[WAL_FRAME_HDRSIZE]; /* Check to see if a complete transaction has been appended to the ** wal file since the heap-memory wal-index was created. If so, the ** heap-memory wal-index is discarded and WAL_RETRY returned to ** the caller. */ aSaveCksum[0] = pWal->hdr.aFrameCksum[0]; aSaveCksum[1] = pWal->hdr.aFrameCksum[1]; for(iOffset=walFrameOffset(pWal->hdr.mxFrame+1, pWal->hdr.szPage); iOffset+szFrame<=szWal; iOffset+=szFrame ){ u32 pgno; /* Database page number for frame */ u32 nTruncate; /* dbsize field from frame header */ /* Read and decode the next log frame. */ rc = sqlite3OsRead(pWal->pWalFd, aFrame, szFrame, iOffset); if( rc!=SQLITE_OK ) break; if( !walDecodeFrame(pWal, &pgno, &nTruncate, aData, aFrame) ) break; /* If nTruncate is non-zero, then a complete transaction has been ** appended to this wal file. Set rc to WAL_RETRY and break out of ** the loop. */ if( nTruncate ){ rc = WAL_RETRY; break; } } pWal->hdr.aFrameCksum[0] = aSaveCksum[0]; pWal->hdr.aFrameCksum[1] = aSaveCksum[1]; begin_unreliable_shm_out: sqlite3_free(aFrame); if( rc!=SQLITE_OK ){ int i; for(i=0; inWiData; i++){ sqlite3_free((void*)pWal->apWiData[i]); pWal->apWiData[i] = 0; } pWal->bShmUnreliable = 0; sqlite3WalEndReadTransaction(pWal); *pChanged = 1; } return rc; } /* ** Attempt to start a read transaction. This might fail due to a race or ** other transient condition. When that happens, it returns WAL_RETRY to ** indicate to the caller that it is safe to retry immediately. ** ** On success return SQLITE_OK. On a permanent failure (such an ** I/O error or an SQLITE_BUSY because another process is running ** recovery) return a positive error code. ** ** The useWal parameter is true to force the use of the WAL and disable ** the case where the WAL is bypassed because it has been completely ** checkpointed. If useWal==0 then this routine calls walIndexReadHdr() ** to make a copy of the wal-index header into pWal->hdr. If the ** wal-index header has changed, *pChanged is set to 1 (as an indication ** to the caller that the local page cache is obsolete and needs to be ** flushed.) When useWal==1, the wal-index header is assumed to already ** be loaded and the pChanged parameter is unused. ** ** The caller must set the cnt parameter to the number of prior calls to ** this routine during the current read attempt that returned WAL_RETRY. ** This routine will start taking more aggressive measures to clear the ** race conditions after multiple WAL_RETRY returns, and after an excessive ** number of errors will ultimately return SQLITE_PROTOCOL. The ** SQLITE_PROTOCOL return indicates that some other process has gone rogue ** and is not honoring the locking protocol. There is a vanishingly small ** chance that SQLITE_PROTOCOL could be returned because of a run of really ** bad luck when there is lots of contention for the wal-index, but that ** possibility is so small that it can be safely neglected, we believe. ** ** On success, this routine obtains a read lock on ** WAL_READ_LOCK(pWal->readLock). The pWal->readLock integer is ** in the range 0 <= pWal->readLock < WAL_NREADER. If pWal->readLock==(-1) ** that means the Wal does not hold any read lock. The reader must not ** access any database page that is modified by a WAL frame up to and ** including frame number aReadMark[pWal->readLock]. The reader will ** use WAL frames up to and including pWal->hdr.mxFrame if pWal->readLock>0 ** Or if pWal->readLock==0, then the reader will ignore the WAL ** completely and get all content directly from the database file. ** If the useWal parameter is 1 then the WAL will never be ignored and ** this routine will always set pWal->readLock>0 on success. ** When the read transaction is completed, the caller must release the ** lock on WAL_READ_LOCK(pWal->readLock) and set pWal->readLock to -1. ** ** This routine uses the nBackfill and aReadMark[] fields of the header ** to select a particular WAL_READ_LOCK() that strives to let the ** checkpoint process do as much work as possible. This routine might ** update values of the aReadMark[] array in the header, but if it does ** so it takes care to hold an exclusive lock on the corresponding ** WAL_READ_LOCK() while changing values. */ static int walTryBeginRead(Wal *pWal, int *pChanged, int useWal, int cnt){ volatile WalCkptInfo *pInfo; /* Checkpoint information in wal-index */ u32 mxReadMark; /* Largest aReadMark[] value */ int mxI; /* Index of largest aReadMark[] value */ int i; /* Loop counter */ int rc = SQLITE_OK; /* Return code */ u32 mxFrame; /* Wal frame to lock to */ assert( pWal->readLock<0 ); /* Not currently locked */ /* useWal may only be set for read/write connections */ assert( (pWal->readOnly & WAL_SHM_RDONLY)==0 || useWal==0 ); /* Take steps to avoid spinning forever if there is a protocol error. ** ** Circumstances that cause a RETRY should only last for the briefest ** instances of time. No I/O or other system calls are done while the ** locks are held, so the locks should not be held for very long. But ** if we are unlucky, another process that is holding a lock might get ** paged out or take a page-fault that is time-consuming to resolve, ** during the few nanoseconds that it is holding the lock. In that case, ** it might take longer than normal for the lock to free. ** ** After 5 RETRYs, we begin calling sqlite3OsSleep(). The first few ** calls to sqlite3OsSleep() have a delay of 1 microsecond. Really this ** is more of a scheduler yield than an actual delay. But on the 10th ** an subsequent retries, the delays start becoming longer and longer, ** so that on the 100th (and last) RETRY we delay for 323 milliseconds. ** The total delay time before giving up is less than 10 seconds. */ if( cnt>5 ){ int nDelay = 1; /* Pause time in microseconds */ if( cnt>100 ){ VVA_ONLY( pWal->lockError = 1; ) return SQLITE_PROTOCOL; } if( cnt>=10 ) nDelay = (cnt-9)*(cnt-9)*39; sqlite3OsSleep(pWal->pVfs, nDelay); } if( !useWal ){ assert( rc==SQLITE_OK ); if( pWal->bShmUnreliable==0 ){ rc = walIndexReadHdr(pWal, pChanged); } if( rc==SQLITE_BUSY ){ /* If there is not a recovery running in another thread or process ** then convert BUSY errors to WAL_RETRY. If recovery is known to ** be running, convert BUSY to BUSY_RECOVERY. There is a race here ** which might cause WAL_RETRY to be returned even if BUSY_RECOVERY ** would be technically correct. But the race is benign since with ** WAL_RETRY this routine will be called again and will probably be ** right on the second iteration. */ if( pWal->apWiData[0]==0 ){ /* This branch is taken when the xShmMap() method returns SQLITE_BUSY. ** We assume this is a transient condition, so return WAL_RETRY. The ** xShmMap() implementation used by the default unix and win32 VFS ** modules may return SQLITE_BUSY due to a race condition in the ** code that determines whether or not the shared-memory region ** must be zeroed before the requested page is returned. */ rc = WAL_RETRY; }else if( SQLITE_OK==(rc = walLockShared(pWal, WAL_RECOVER_LOCK)) ){ walUnlockShared(pWal, WAL_RECOVER_LOCK); rc = WAL_RETRY; }else if( rc==SQLITE_BUSY ){ rc = SQLITE_BUSY_RECOVERY; } } if( rc!=SQLITE_OK ){ return rc; } else if( pWal->bShmUnreliable ){ return walBeginShmUnreliable(pWal, pChanged); } } assert( pWal->nWiData>0 ); assert( pWal->apWiData[0]!=0 ); pInfo = walCkptInfo(pWal); if( !useWal && AtomicLoad(&pInfo->nBackfill)==pWal->hdr.mxFrame #ifdef SQLITE_ENABLE_SNAPSHOT && (pWal->pSnapshot==0 || pWal->hdr.mxFrame==0) #endif ){ /* The WAL has been completely backfilled (or it is empty). ** and can be safely ignored. */ rc = walLockShared(pWal, WAL_READ_LOCK(0)); walShmBarrier(pWal); if( rc==SQLITE_OK ){ if( memcmp((void *)walIndexHdr(pWal), &pWal->hdr, sizeof(WalIndexHdr)) ){ /* It is not safe to allow the reader to continue here if frames ** may have been appended to the log before READ_LOCK(0) was obtained. ** When holding READ_LOCK(0), the reader ignores the entire log file, ** which implies that the database file contains a trustworthy ** snapshot. Since holding READ_LOCK(0) prevents a checkpoint from ** happening, this is usually correct. ** ** However, if frames have been appended to the log (or if the log ** is wrapped and written for that matter) before the READ_LOCK(0) ** is obtained, that is not necessarily true. A checkpointer may ** have started to backfill the appended frames but crashed before ** it finished. Leaving a corrupt image in the database file. */ walUnlockShared(pWal, WAL_READ_LOCK(0)); return WAL_RETRY; } pWal->readLock = 0; return SQLITE_OK; }else if( rc!=SQLITE_BUSY ){ return rc; } } /* If we get this far, it means that the reader will want to use ** the WAL to get at content from recent commits. The job now is ** to select one of the aReadMark[] entries that is closest to ** but not exceeding pWal->hdr.mxFrame and lock that entry. */ mxReadMark = 0; mxI = 0; mxFrame = pWal->hdr.mxFrame; #ifdef SQLITE_ENABLE_SNAPSHOT if( pWal->pSnapshot && pWal->pSnapshot->mxFramepSnapshot->mxFrame; } #endif for(i=1; iaReadMark+i); if( mxReadMark<=thisMark && thisMark<=mxFrame ){ assert( thisMark!=READMARK_NOT_USED ); mxReadMark = thisMark; mxI = i; } } if( (pWal->readOnly & WAL_SHM_RDONLY)==0 && (mxReadMarkaReadMark+i,mxFrame); mxReadMark = mxFrame; mxI = i; walUnlockExclusive(pWal, WAL_READ_LOCK(i), 1); break; }else if( rc!=SQLITE_BUSY ){ return rc; } } } if( mxI==0 ){ assert( rc==SQLITE_BUSY || (pWal->readOnly & WAL_SHM_RDONLY)!=0 ); return rc==SQLITE_BUSY ? WAL_RETRY : SQLITE_READONLY_CANTINIT; } rc = walLockShared(pWal, WAL_READ_LOCK(mxI)); if( rc ){ return rc==SQLITE_BUSY ? WAL_RETRY : rc; } /* Now that the read-lock has been obtained, check that neither the ** value in the aReadMark[] array or the contents of the wal-index ** header have changed. ** ** It is necessary to check that the wal-index header did not change ** between the time it was read and when the shared-lock was obtained ** on WAL_READ_LOCK(mxI) was obtained to account for the possibility ** that the log file may have been wrapped by a writer, or that frames ** that occur later in the log than pWal->hdr.mxFrame may have been ** copied into the database by a checkpointer. If either of these things ** happened, then reading the database with the current value of ** pWal->hdr.mxFrame risks reading a corrupted snapshot. So, retry ** instead. ** ** Before checking that the live wal-index header has not changed ** since it was read, set Wal.minFrame to the first frame in the wal ** file that has not yet been checkpointed. This client will not need ** to read any frames earlier than minFrame from the wal file - they ** can be safely read directly from the database file. ** ** Because a ShmBarrier() call is made between taking the copy of ** nBackfill and checking that the wal-header in shared-memory still ** matches the one cached in pWal->hdr, it is guaranteed that the ** checkpointer that set nBackfill was not working with a wal-index ** header newer than that cached in pWal->hdr. If it were, that could ** cause a problem. The checkpointer could omit to checkpoint ** a version of page X that lies before pWal->minFrame (call that version ** A) on the basis that there is a newer version (version B) of the same ** page later in the wal file. But if version B happens to like past ** frame pWal->hdr.mxFrame - then the client would incorrectly assume ** that it can read version A from the database file. However, since ** we can guarantee that the checkpointer that set nBackfill could not ** see any pages past pWal->hdr.mxFrame, this problem does not come up. */ pWal->minFrame = AtomicLoad(&pInfo->nBackfill)+1; walShmBarrier(pWal); if( AtomicLoad(pInfo->aReadMark+mxI)!=mxReadMark || memcmp((void *)walIndexHdr(pWal), &pWal->hdr, sizeof(WalIndexHdr)) ){ walUnlockShared(pWal, WAL_READ_LOCK(mxI)); return WAL_RETRY; }else{ assert( mxReadMark<=pWal->hdr.mxFrame ); pWal->readLock = (i16)mxI; } return rc; } #ifdef SQLITE_ENABLE_SNAPSHOT /* ** Attempt to reduce the value of the WalCkptInfo.nBackfillAttempted ** variable so that older snapshots can be accessed. To do this, loop ** through all wal frames from nBackfillAttempted to (nBackfill+1), ** comparing their content to the corresponding page with the database ** file, if any. Set nBackfillAttempted to the frame number of the ** first frame for which the wal file content matches the db file. ** ** This is only really safe if the file-system is such that any page ** writes made by earlier checkpointers were atomic operations, which ** is not always true. It is also possible that nBackfillAttempted ** may be left set to a value larger than expected, if a wal frame ** contains content that duplicate of an earlier version of the same ** page. ** ** SQLITE_OK is returned if successful, or an SQLite error code if an ** error occurs. It is not an error if nBackfillAttempted cannot be ** decreased at all. */ SQLITE_PRIVATE int sqlite3WalSnapshotRecover(Wal *pWal){ int rc; assert( pWal->readLock>=0 ); rc = walLockExclusive(pWal, WAL_CKPT_LOCK, 1); if( rc==SQLITE_OK ){ volatile WalCkptInfo *pInfo = walCkptInfo(pWal); int szPage = (int)pWal->szPage; i64 szDb; /* Size of db file in bytes */ rc = sqlite3OsFileSize(pWal->pDbFd, &szDb); if( rc==SQLITE_OK ){ void *pBuf1 = sqlite3_malloc(szPage); void *pBuf2 = sqlite3_malloc(szPage); if( pBuf1==0 || pBuf2==0 ){ rc = SQLITE_NOMEM; }else{ u32 i = pInfo->nBackfillAttempted; for(i=pInfo->nBackfillAttempted; i>AtomicLoad(&pInfo->nBackfill); i--){ WalHashLoc sLoc; /* Hash table location */ u32 pgno; /* Page number in db file */ i64 iDbOff; /* Offset of db file entry */ i64 iWalOff; /* Offset of wal file entry */ rc = walHashGet(pWal, walFramePage(i), &sLoc); if( rc!=SQLITE_OK ) break; pgno = sLoc.aPgno[i-sLoc.iZero]; iDbOff = (i64)(pgno-1) * szPage; if( iDbOff+szPage<=szDb ){ iWalOff = walFrameOffset(i, szPage) + WAL_FRAME_HDRSIZE; rc = sqlite3OsRead(pWal->pWalFd, pBuf1, szPage, iWalOff); if( rc==SQLITE_OK ){ rc = sqlite3OsRead(pWal->pDbFd, pBuf2, szPage, iDbOff); } if( rc!=SQLITE_OK || 0==memcmp(pBuf1, pBuf2, szPage) ){ break; } } pInfo->nBackfillAttempted = i-1; } } sqlite3_free(pBuf1); sqlite3_free(pBuf2); } walUnlockExclusive(pWal, WAL_CKPT_LOCK, 1); } return rc; } #endif /* SQLITE_ENABLE_SNAPSHOT */ /* ** Begin a read transaction on the database. ** ** This routine used to be called sqlite3OpenSnapshot() and with good reason: ** it takes a snapshot of the state of the WAL and wal-index for the current ** instant in time. The current thread will continue to use this snapshot. ** Other threads might append new content to the WAL and wal-index but ** that extra content is ignored by the current thread. ** ** If the database contents have changes since the previous read ** transaction, then *pChanged is set to 1 before returning. The ** Pager layer will use this to know that its cache is stale and ** needs to be flushed. */ SQLITE_PRIVATE int sqlite3WalBeginReadTransaction(Wal *pWal, int *pChanged){ int rc; /* Return code */ int cnt = 0; /* Number of TryBeginRead attempts */ #ifdef SQLITE_ENABLE_SNAPSHOT int bChanged = 0; WalIndexHdr *pSnapshot = pWal->pSnapshot; #endif assert( pWal->ckptLock==0 ); #ifdef SQLITE_ENABLE_SNAPSHOT if( pSnapshot ){ if( memcmp(pSnapshot, &pWal->hdr, sizeof(WalIndexHdr))!=0 ){ bChanged = 1; } /* It is possible that there is a checkpointer thread running ** concurrent with this code. If this is the case, it may be that the ** checkpointer has already determined that it will checkpoint ** snapshot X, where X is later in the wal file than pSnapshot, but ** has not yet set the pInfo->nBackfillAttempted variable to indicate ** its intent. To avoid the race condition this leads to, ensure that ** there is no checkpointer process by taking a shared CKPT lock ** before checking pInfo->nBackfillAttempted. */ (void)walEnableBlocking(pWal); rc = walLockShared(pWal, WAL_CKPT_LOCK); walDisableBlocking(pWal); if( rc!=SQLITE_OK ){ return rc; } pWal->ckptLock = 1; } #endif do{ rc = walTryBeginRead(pWal, pChanged, 0, ++cnt); }while( rc==WAL_RETRY ); testcase( (rc&0xff)==SQLITE_BUSY ); testcase( (rc&0xff)==SQLITE_IOERR ); testcase( rc==SQLITE_PROTOCOL ); testcase( rc==SQLITE_OK ); #ifdef SQLITE_ENABLE_SNAPSHOT if( rc==SQLITE_OK ){ if( pSnapshot && memcmp(pSnapshot, &pWal->hdr, sizeof(WalIndexHdr))!=0 ){ /* At this point the client has a lock on an aReadMark[] slot holding ** a value equal to or smaller than pSnapshot->mxFrame, but pWal->hdr ** is populated with the wal-index header corresponding to the head ** of the wal file. Verify that pSnapshot is still valid before ** continuing. Reasons why pSnapshot might no longer be valid: ** ** (1) The WAL file has been reset since the snapshot was taken. ** In this case, the salt will have changed. ** ** (2) A checkpoint as been attempted that wrote frames past ** pSnapshot->mxFrame into the database file. Note that the ** checkpoint need not have completed for this to cause problems. */ volatile WalCkptInfo *pInfo = walCkptInfo(pWal); assert( pWal->readLock>0 || pWal->hdr.mxFrame==0 ); assert( pInfo->aReadMark[pWal->readLock]<=pSnapshot->mxFrame ); /* Check that the wal file has not been wrapped. Assuming that it has ** not, also check that no checkpointer has attempted to checkpoint any ** frames beyond pSnapshot->mxFrame. If either of these conditions are ** true, return SQLITE_ERROR_SNAPSHOT. Otherwise, overwrite pWal->hdr ** with *pSnapshot and set *pChanged as appropriate for opening the ** snapshot. */ if( !memcmp(pSnapshot->aSalt, pWal->hdr.aSalt, sizeof(pWal->hdr.aSalt)) && pSnapshot->mxFrame>=pInfo->nBackfillAttempted ){ assert( pWal->readLock>0 ); memcpy(&pWal->hdr, pSnapshot, sizeof(WalIndexHdr)); *pChanged = bChanged; }else{ rc = SQLITE_ERROR_SNAPSHOT; } /* A client using a non-current snapshot may not ignore any frames ** from the start of the wal file. This is because, for a system ** where (minFrame < iSnapshot < maxFrame), a checkpointer may ** have omitted to checkpoint a frame earlier than minFrame in ** the file because there exists a frame after iSnapshot that ** is the same database page. */ pWal->minFrame = 1; if( rc!=SQLITE_OK ){ sqlite3WalEndReadTransaction(pWal); } } } /* Release the shared CKPT lock obtained above. */ if( pWal->ckptLock ){ assert( pSnapshot ); walUnlockShared(pWal, WAL_CKPT_LOCK); pWal->ckptLock = 0; } #endif return rc; } /* ** Finish with a read transaction. All this does is release the ** read-lock. */ SQLITE_PRIVATE void sqlite3WalEndReadTransaction(Wal *pWal){ sqlite3WalEndWriteTransaction(pWal); if( pWal->readLock>=0 ){ walUnlockShared(pWal, WAL_READ_LOCK(pWal->readLock)); pWal->readLock = -1; } } /* ** Search the wal file for page pgno. If found, set *piRead to the frame that ** contains the page. Otherwise, if pgno is not in the wal file, set *piRead ** to zero. ** ** Return SQLITE_OK if successful, or an error code if an error occurs. If an ** error does occur, the final value of *piRead is undefined. */ SQLITE_PRIVATE int sqlite3WalFindFrame( Wal *pWal, /* WAL handle */ Pgno pgno, /* Database page number to read data for */ u32 *piRead /* OUT: Frame number (or zero) */ ){ u32 iRead = 0; /* If !=0, WAL frame to return data from */ u32 iLast = pWal->hdr.mxFrame; /* Last page in WAL for this reader */ int iHash; /* Used to loop through N hash tables */ int iMinHash; /* This routine is only be called from within a read transaction. */ assert( pWal->readLock>=0 || pWal->lockError ); /* If the "last page" field of the wal-index header snapshot is 0, then ** no data will be read from the wal under any circumstances. Return early ** in this case as an optimization. Likewise, if pWal->readLock==0, ** then the WAL is ignored by the reader so return early, as if the ** WAL were empty. */ if( iLast==0 || (pWal->readLock==0 && pWal->bShmUnreliable==0) ){ *piRead = 0; return SQLITE_OK; } /* Search the hash table or tables for an entry matching page number ** pgno. Each iteration of the following for() loop searches one ** hash table (each hash table indexes up to HASHTABLE_NPAGE frames). ** ** This code might run concurrently to the code in walIndexAppend() ** that adds entries to the wal-index (and possibly to this hash ** table). This means the value just read from the hash ** slot (aHash[iKey]) may have been added before or after the ** current read transaction was opened. Values added after the ** read transaction was opened may have been written incorrectly - ** i.e. these slots may contain garbage data. However, we assume ** that any slots written before the current read transaction was ** opened remain unmodified. ** ** For the reasons above, the if(...) condition featured in the inner ** loop of the following block is more stringent that would be required ** if we had exclusive access to the hash-table: ** ** (aPgno[iFrame]==pgno): ** This condition filters out normal hash-table collisions. ** ** (iFrame<=iLast): ** This condition filters out entries that were added to the hash ** table after the current read-transaction had started. */ iMinHash = walFramePage(pWal->minFrame); for(iHash=walFramePage(iLast); iHash>=iMinHash; iHash--){ WalHashLoc sLoc; /* Hash table location */ int iKey; /* Hash slot index */ int nCollide; /* Number of hash collisions remaining */ int rc; /* Error code */ u32 iH; rc = walHashGet(pWal, iHash, &sLoc); if( rc!=SQLITE_OK ){ return rc; } nCollide = HASHTABLE_NSLOT; iKey = walHash(pgno); while( (iH = AtomicLoad(&sLoc.aHash[iKey]))!=0 ){ u32 iFrame = iH + sLoc.iZero; if( iFrame<=iLast && iFrame>=pWal->minFrame && sLoc.aPgno[iH]==pgno ){ assert( iFrame>iRead || CORRUPT_DB ); iRead = iFrame; } if( (nCollide--)==0 ){ return SQLITE_CORRUPT_BKPT; } iKey = walNextHash(iKey); } if( iRead ) break; } #ifdef SQLITE_ENABLE_EXPENSIVE_ASSERT /* If expensive assert() statements are available, do a linear search ** of the wal-index file content. Make sure the results agree with the ** result obtained using the hash indexes above. */ { u32 iRead2 = 0; u32 iTest; assert( pWal->bShmUnreliable || pWal->minFrame>0 ); for(iTest=iLast; iTest>=pWal->minFrame && iTest>0; iTest--){ if( walFramePgno(pWal, iTest)==pgno ){ iRead2 = iTest; break; } } assert( iRead==iRead2 ); } #endif *piRead = iRead; return SQLITE_OK; } /* ** Read the contents of frame iRead from the wal file into buffer pOut ** (which is nOut bytes in size). Return SQLITE_OK if successful, or an ** error code otherwise. */ SQLITE_PRIVATE int sqlite3WalReadFrame( Wal *pWal, /* WAL handle */ u32 iRead, /* Frame to read */ int nOut, /* Size of buffer pOut in bytes */ u8 *pOut /* Buffer to write page data to */ ){ int sz; i64 iOffset; sz = pWal->hdr.szPage; sz = (sz&0xfe00) + ((sz&0x0001)<<16); testcase( sz<=32768 ); testcase( sz>=65536 ); iOffset = walFrameOffset(iRead, sz) + WAL_FRAME_HDRSIZE; /* testcase( IS_BIG_INT(iOffset) ); // requires a 4GiB WAL */ return sqlite3OsRead(pWal->pWalFd, pOut, (nOut>sz ? sz : nOut), iOffset); } /* ** Return the size of the database in pages (or zero, if unknown). */ SQLITE_PRIVATE Pgno sqlite3WalDbsize(Wal *pWal){ if( pWal && ALWAYS(pWal->readLock>=0) ){ return pWal->hdr.nPage; } return 0; } /* ** This function starts a write transaction on the WAL. ** ** A read transaction must have already been started by a prior call ** to sqlite3WalBeginReadTransaction(). ** ** If another thread or process has written into the database since ** the read transaction was started, then it is not possible for this ** thread to write as doing so would cause a fork. So this routine ** returns SQLITE_BUSY in that case and no write transaction is started. ** ** There can only be a single writer active at a time. */ SQLITE_PRIVATE int sqlite3WalBeginWriteTransaction(Wal *pWal){ int rc; #ifdef SQLITE_ENABLE_SETLK_TIMEOUT /* If the write-lock is already held, then it was obtained before the ** read-transaction was even opened, making this call a no-op. ** Return early. */ if( pWal->writeLock ){ assert( !memcmp(&pWal->hdr,(void *)walIndexHdr(pWal),sizeof(WalIndexHdr)) ); return SQLITE_OK; } #endif /* Cannot start a write transaction without first holding a read ** transaction. */ assert( pWal->readLock>=0 ); assert( pWal->writeLock==0 && pWal->iReCksum==0 ); if( pWal->readOnly ){ return SQLITE_READONLY; } /* Only one writer allowed at a time. Get the write lock. Return ** SQLITE_BUSY if unable. */ rc = walLockExclusive(pWal, WAL_WRITE_LOCK, 1); if( rc ){ return rc; } pWal->writeLock = 1; /* If another connection has written to the database file since the ** time the read transaction on this connection was started, then ** the write is disallowed. */ if( memcmp(&pWal->hdr, (void *)walIndexHdr(pWal), sizeof(WalIndexHdr))!=0 ){ walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); pWal->writeLock = 0; rc = SQLITE_BUSY_SNAPSHOT; } return rc; } /* ** End a write transaction. The commit has already been done. This ** routine merely releases the lock. */ SQLITE_PRIVATE int sqlite3WalEndWriteTransaction(Wal *pWal){ if( pWal->writeLock ){ walUnlockExclusive(pWal, WAL_WRITE_LOCK, 1); pWal->writeLock = 0; pWal->iReCksum = 0; pWal->truncateOnCommit = 0; } return SQLITE_OK; } /* ** If any data has been written (but not committed) to the log file, this ** function moves the write-pointer back to the start of the transaction. ** ** Additionally, the callback function is invoked for each frame written ** to the WAL since the start of the transaction. If the callback returns ** other than SQLITE_OK, it is not invoked again and the error code is ** returned to the caller. ** ** Otherwise, if the callback function does not return an error, this ** function returns SQLITE_OK. */ SQLITE_PRIVATE int sqlite3WalUndo(Wal *pWal, int (*xUndo)(void *, Pgno), void *pUndoCtx){ int rc = SQLITE_OK; if( ALWAYS(pWal->writeLock) ){ Pgno iMax = pWal->hdr.mxFrame; Pgno iFrame; /* Restore the clients cache of the wal-index header to the state it ** was in before the client began writing to the database. */ memcpy(&pWal->hdr, (void *)walIndexHdr(pWal), sizeof(WalIndexHdr)); for(iFrame=pWal->hdr.mxFrame+1; ALWAYS(rc==SQLITE_OK) && iFrame<=iMax; iFrame++ ){ /* This call cannot fail. Unless the page for which the page number ** is passed as the second argument is (a) in the cache and ** (b) has an outstanding reference, then xUndo is either a no-op ** (if (a) is false) or simply expels the page from the cache (if (b) ** is false). ** ** If the upper layer is doing a rollback, it is guaranteed that there ** are no outstanding references to any page other than page 1. And ** page 1 is never written to the log until the transaction is ** committed. As a result, the call to xUndo may not fail. */ assert( walFramePgno(pWal, iFrame)!=1 ); rc = xUndo(pUndoCtx, walFramePgno(pWal, iFrame)); } if( iMax!=pWal->hdr.mxFrame ) walCleanupHash(pWal); } return rc; } /* ** Argument aWalData must point to an array of WAL_SAVEPOINT_NDATA u32 ** values. This function populates the array with values required to ** "rollback" the write position of the WAL handle back to the current ** point in the event of a savepoint rollback (via WalSavepointUndo()). */ SQLITE_PRIVATE void sqlite3WalSavepoint(Wal *pWal, u32 *aWalData){ assert( pWal->writeLock ); aWalData[0] = pWal->hdr.mxFrame; aWalData[1] = pWal->hdr.aFrameCksum[0]; aWalData[2] = pWal->hdr.aFrameCksum[1]; aWalData[3] = pWal->nCkpt; } /* ** Move the write position of the WAL back to the point identified by ** the values in the aWalData[] array. aWalData must point to an array ** of WAL_SAVEPOINT_NDATA u32 values that has been previously populated ** by a call to WalSavepoint(). */ SQLITE_PRIVATE int sqlite3WalSavepointUndo(Wal *pWal, u32 *aWalData){ int rc = SQLITE_OK; assert( pWal->writeLock ); assert( aWalData[3]!=pWal->nCkpt || aWalData[0]<=pWal->hdr.mxFrame ); if( aWalData[3]!=pWal->nCkpt ){ /* This savepoint was opened immediately after the write-transaction ** was started. Right after that, the writer decided to wrap around ** to the start of the log. Update the savepoint values to match. */ aWalData[0] = 0; aWalData[3] = pWal->nCkpt; } if( aWalData[0]hdr.mxFrame ){ pWal->hdr.mxFrame = aWalData[0]; pWal->hdr.aFrameCksum[0] = aWalData[1]; pWal->hdr.aFrameCksum[1] = aWalData[2]; walCleanupHash(pWal); } return rc; } /* ** This function is called just before writing a set of frames to the log ** file (see sqlite3WalFrames()). It checks to see if, instead of appending ** to the current log file, it is possible to overwrite the start of the ** existing log file with the new frames (i.e. "reset" the log). If so, ** it sets pWal->hdr.mxFrame to 0. Otherwise, pWal->hdr.mxFrame is left ** unchanged. ** ** SQLITE_OK is returned if no error is encountered (regardless of whether ** or not pWal->hdr.mxFrame is modified). An SQLite error code is returned ** if an error occurs. */ static int walRestartLog(Wal *pWal){ int rc = SQLITE_OK; int cnt; if( pWal->readLock==0 ){ volatile WalCkptInfo *pInfo = walCkptInfo(pWal); assert( pInfo->nBackfill==pWal->hdr.mxFrame ); if( pInfo->nBackfill>0 ){ u32 salt1; sqlite3_randomness(4, &salt1); rc = walLockExclusive(pWal, WAL_READ_LOCK(1), WAL_NREADER-1); if( rc==SQLITE_OK ){ /* If all readers are using WAL_READ_LOCK(0) (in other words if no ** readers are currently using the WAL), then the transactions ** frames will overwrite the start of the existing log. Update the ** wal-index header to reflect this. ** ** In theory it would be Ok to update the cache of the header only ** at this point. But updating the actual wal-index header is also ** safe and means there is no special case for sqlite3WalUndo() ** to handle if this transaction is rolled back. */ walRestartHdr(pWal, salt1); walUnlockExclusive(pWal, WAL_READ_LOCK(1), WAL_NREADER-1); }else if( rc!=SQLITE_BUSY ){ return rc; } } walUnlockShared(pWal, WAL_READ_LOCK(0)); pWal->readLock = -1; cnt = 0; do{ int notUsed; rc = walTryBeginRead(pWal, ¬Used, 1, ++cnt); }while( rc==WAL_RETRY ); assert( (rc&0xff)!=SQLITE_BUSY ); /* BUSY not possible when useWal==1 */ testcase( (rc&0xff)==SQLITE_IOERR ); testcase( rc==SQLITE_PROTOCOL ); testcase( rc==SQLITE_OK ); } return rc; } /* ** Information about the current state of the WAL file and where ** the next fsync should occur - passed from sqlite3WalFrames() into ** walWriteToLog(). */ typedef struct WalWriter { Wal *pWal; /* The complete WAL information */ sqlite3_file *pFd; /* The WAL file to which we write */ sqlite3_int64 iSyncPoint; /* Fsync at this offset */ int syncFlags; /* Flags for the fsync */ int szPage; /* Size of one page */ } WalWriter; /* ** Write iAmt bytes of content into the WAL file beginning at iOffset. ** Do a sync when crossing the p->iSyncPoint boundary. ** ** In other words, if iSyncPoint is in between iOffset and iOffset+iAmt, ** first write the part before iSyncPoint, then sync, then write the ** rest. */ static int walWriteToLog( WalWriter *p, /* WAL to write to */ void *pContent, /* Content to be written */ int iAmt, /* Number of bytes to write */ sqlite3_int64 iOffset /* Start writing at this offset */ ){ int rc; if( iOffsetiSyncPoint && iOffset+iAmt>=p->iSyncPoint ){ int iFirstAmt = (int)(p->iSyncPoint - iOffset); rc = sqlite3OsWrite(p->pFd, pContent, iFirstAmt, iOffset); if( rc ) return rc; iOffset += iFirstAmt; iAmt -= iFirstAmt; pContent = (void*)(iFirstAmt + (char*)pContent); assert( WAL_SYNC_FLAGS(p->syncFlags)!=0 ); rc = sqlite3OsSync(p->pFd, WAL_SYNC_FLAGS(p->syncFlags)); if( iAmt==0 || rc ) return rc; } rc = sqlite3OsWrite(p->pFd, pContent, iAmt, iOffset); return rc; } /* ** Write out a single frame of the WAL */ static int walWriteOneFrame( WalWriter *p, /* Where to write the frame */ PgHdr *pPage, /* The page of the frame to be written */ int nTruncate, /* The commit flag. Usually 0. >0 for commit */ sqlite3_int64 iOffset /* Byte offset at which to write */ ){ int rc; /* Result code from subfunctions */ void *pData; /* Data actually written */ u8 aFrame[WAL_FRAME_HDRSIZE]; /* Buffer to assemble frame-header in */ pData = pPage->pData; walEncodeFrame(p->pWal, pPage->pgno, nTruncate, pData, aFrame); rc = walWriteToLog(p, aFrame, sizeof(aFrame), iOffset); if( rc ) return rc; /* Write the page data */ rc = walWriteToLog(p, pData, p->szPage, iOffset+sizeof(aFrame)); return rc; } /* ** This function is called as part of committing a transaction within which ** one or more frames have been overwritten. It updates the checksums for ** all frames written to the wal file by the current transaction starting ** with the earliest to have been overwritten. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ static int walRewriteChecksums(Wal *pWal, u32 iLast){ const int szPage = pWal->szPage;/* Database page size */ int rc = SQLITE_OK; /* Return code */ u8 *aBuf; /* Buffer to load data from wal file into */ u8 aFrame[WAL_FRAME_HDRSIZE]; /* Buffer to assemble frame-headers in */ u32 iRead; /* Next frame to read from wal file */ i64 iCksumOff; aBuf = sqlite3_malloc(szPage + WAL_FRAME_HDRSIZE); if( aBuf==0 ) return SQLITE_NOMEM_BKPT; /* Find the checksum values to use as input for the recalculating the ** first checksum. If the first frame is frame 1 (implying that the current ** transaction restarted the wal file), these values must be read from the ** wal-file header. Otherwise, read them from the frame header of the ** previous frame. */ assert( pWal->iReCksum>0 ); if( pWal->iReCksum==1 ){ iCksumOff = 24; }else{ iCksumOff = walFrameOffset(pWal->iReCksum-1, szPage) + 16; } rc = sqlite3OsRead(pWal->pWalFd, aBuf, sizeof(u32)*2, iCksumOff); pWal->hdr.aFrameCksum[0] = sqlite3Get4byte(aBuf); pWal->hdr.aFrameCksum[1] = sqlite3Get4byte(&aBuf[sizeof(u32)]); iRead = pWal->iReCksum; pWal->iReCksum = 0; for(; rc==SQLITE_OK && iRead<=iLast; iRead++){ i64 iOff = walFrameOffset(iRead, szPage); rc = sqlite3OsRead(pWal->pWalFd, aBuf, szPage+WAL_FRAME_HDRSIZE, iOff); if( rc==SQLITE_OK ){ u32 iPgno, nDbSize; iPgno = sqlite3Get4byte(aBuf); nDbSize = sqlite3Get4byte(&aBuf[4]); walEncodeFrame(pWal, iPgno, nDbSize, &aBuf[WAL_FRAME_HDRSIZE], aFrame); rc = sqlite3OsWrite(pWal->pWalFd, aFrame, sizeof(aFrame), iOff); } } sqlite3_free(aBuf); return rc; } /* ** Write a set of frames to the log. The caller must hold the write-lock ** on the log file (obtained using sqlite3WalBeginWriteTransaction()). */ SQLITE_PRIVATE int sqlite3WalFrames( Wal *pWal, /* Wal handle to write to */ int szPage, /* Database page-size in bytes */ PgHdr *pList, /* List of dirty pages to write */ Pgno nTruncate, /* Database size after this commit */ int isCommit, /* True if this is a commit */ int sync_flags /* Flags to pass to OsSync() (or 0) */ ){ int rc; /* Used to catch return codes */ u32 iFrame; /* Next frame address */ PgHdr *p; /* Iterator to run through pList with. */ PgHdr *pLast = 0; /* Last frame in list */ int nExtra = 0; /* Number of extra copies of last page */ int szFrame; /* The size of a single frame */ i64 iOffset; /* Next byte to write in WAL file */ WalWriter w; /* The writer */ u32 iFirst = 0; /* First frame that may be overwritten */ WalIndexHdr *pLive; /* Pointer to shared header */ assert( pList ); assert( pWal->writeLock ); /* If this frame set completes a transaction, then nTruncate>0. If ** nTruncate==0 then this frame set does not complete the transaction. */ assert( (isCommit!=0)==(nTruncate!=0) ); #if defined(SQLITE_TEST) && defined(SQLITE_DEBUG) { int cnt; for(cnt=0, p=pList; p; p=p->pDirty, cnt++){} WALTRACE(("WAL%p: frame write begin. %d frames. mxFrame=%d. %s\n", pWal, cnt, pWal->hdr.mxFrame, isCommit ? "Commit" : "Spill")); } #endif pLive = (WalIndexHdr*)walIndexHdr(pWal); if( memcmp(&pWal->hdr, (void *)pLive, sizeof(WalIndexHdr))!=0 ){ iFirst = pLive->mxFrame+1; } /* See if it is possible to write these frames into the start of the ** log file, instead of appending to it at pWal->hdr.mxFrame. */ if( SQLITE_OK!=(rc = walRestartLog(pWal)) ){ return rc; } /* If this is the first frame written into the log, write the WAL ** header to the start of the WAL file. See comments at the top of ** this source file for a description of the WAL header format. */ iFrame = pWal->hdr.mxFrame; if( iFrame==0 ){ u8 aWalHdr[WAL_HDRSIZE]; /* Buffer to assemble wal-header in */ u32 aCksum[2]; /* Checksum for wal-header */ sqlite3Put4byte(&aWalHdr[0], (WAL_MAGIC | SQLITE_BIGENDIAN)); sqlite3Put4byte(&aWalHdr[4], WAL_MAX_VERSION); sqlite3Put4byte(&aWalHdr[8], szPage); sqlite3Put4byte(&aWalHdr[12], pWal->nCkpt); if( pWal->nCkpt==0 ) sqlite3_randomness(8, pWal->hdr.aSalt); memcpy(&aWalHdr[16], pWal->hdr.aSalt, 8); walChecksumBytes(1, aWalHdr, WAL_HDRSIZE-2*4, 0, aCksum); sqlite3Put4byte(&aWalHdr[24], aCksum[0]); sqlite3Put4byte(&aWalHdr[28], aCksum[1]); pWal->szPage = szPage; pWal->hdr.bigEndCksum = SQLITE_BIGENDIAN; pWal->hdr.aFrameCksum[0] = aCksum[0]; pWal->hdr.aFrameCksum[1] = aCksum[1]; pWal->truncateOnCommit = 1; rc = sqlite3OsWrite(pWal->pWalFd, aWalHdr, sizeof(aWalHdr), 0); WALTRACE(("WAL%p: wal-header write %s\n", pWal, rc ? "failed" : "ok")); if( rc!=SQLITE_OK ){ return rc; } /* Sync the header (unless SQLITE_IOCAP_SEQUENTIAL is true or unless ** all syncing is turned off by PRAGMA synchronous=OFF). Otherwise ** an out-of-order write following a WAL restart could result in ** database corruption. See the ticket: ** ** https://sqlite.org/src/info/ff5be73dee */ if( pWal->syncHeader ){ rc = sqlite3OsSync(pWal->pWalFd, CKPT_SYNC_FLAGS(sync_flags)); if( rc ) return rc; } } assert( (int)pWal->szPage==szPage ); /* Setup information needed to write frames into the WAL */ w.pWal = pWal; w.pFd = pWal->pWalFd; w.iSyncPoint = 0; w.syncFlags = sync_flags; w.szPage = szPage; iOffset = walFrameOffset(iFrame+1, szPage); szFrame = szPage + WAL_FRAME_HDRSIZE; /* Write all frames into the log file exactly once */ for(p=pList; p; p=p->pDirty){ int nDbSize; /* 0 normally. Positive == commit flag */ /* Check if this page has already been written into the wal file by ** the current transaction. If so, overwrite the existing frame and ** set Wal.writeLock to WAL_WRITELOCK_RECKSUM - indicating that ** checksums must be recomputed when the transaction is committed. */ if( iFirst && (p->pDirty || isCommit==0) ){ u32 iWrite = 0; VVA_ONLY(rc =) sqlite3WalFindFrame(pWal, p->pgno, &iWrite); assert( rc==SQLITE_OK || iWrite==0 ); if( iWrite>=iFirst ){ i64 iOff = walFrameOffset(iWrite, szPage) + WAL_FRAME_HDRSIZE; void *pData; if( pWal->iReCksum==0 || iWriteiReCksum ){ pWal->iReCksum = iWrite; } pData = p->pData; rc = sqlite3OsWrite(pWal->pWalFd, pData, szPage, iOff); if( rc ) return rc; p->flags &= ~PGHDR_WAL_APPEND; continue; } } iFrame++; assert( iOffset==walFrameOffset(iFrame, szPage) ); nDbSize = (isCommit && p->pDirty==0) ? nTruncate : 0; rc = walWriteOneFrame(&w, p, nDbSize, iOffset); if( rc ) return rc; pLast = p; iOffset += szFrame; p->flags |= PGHDR_WAL_APPEND; } /* Recalculate checksums within the wal file if required. */ if( isCommit && pWal->iReCksum ){ rc = walRewriteChecksums(pWal, iFrame); if( rc ) return rc; } /* If this is the end of a transaction, then we might need to pad ** the transaction and/or sync the WAL file. ** ** Padding and syncing only occur if this set of frames complete a ** transaction and if PRAGMA synchronous=FULL. If synchronous==NORMAL ** or synchronous==OFF, then no padding or syncing are needed. ** ** If SQLITE_IOCAP_POWERSAFE_OVERWRITE is defined, then padding is not ** needed and only the sync is done. If padding is needed, then the ** final frame is repeated (with its commit mark) until the next sector ** boundary is crossed. Only the part of the WAL prior to the last ** sector boundary is synced; the part of the last frame that extends ** past the sector boundary is written after the sync. */ if( isCommit && WAL_SYNC_FLAGS(sync_flags)!=0 ){ int bSync = 1; if( pWal->padToSectorBoundary ){ int sectorSize = sqlite3SectorSize(pWal->pWalFd); w.iSyncPoint = ((iOffset+sectorSize-1)/sectorSize)*sectorSize; bSync = (w.iSyncPoint==iOffset); testcase( bSync ); while( iOffsettruncateOnCommit && pWal->mxWalSize>=0 ){ i64 sz = pWal->mxWalSize; if( walFrameOffset(iFrame+nExtra+1, szPage)>pWal->mxWalSize ){ sz = walFrameOffset(iFrame+nExtra+1, szPage); } walLimitSize(pWal, sz); pWal->truncateOnCommit = 0; } /* Append data to the wal-index. It is not necessary to lock the ** wal-index to do this as the SQLITE_SHM_WRITE lock held on the wal-index ** guarantees that there are no other writers, and no data that may ** be in use by existing readers is being overwritten. */ iFrame = pWal->hdr.mxFrame; for(p=pList; p && rc==SQLITE_OK; p=p->pDirty){ if( (p->flags & PGHDR_WAL_APPEND)==0 ) continue; iFrame++; rc = walIndexAppend(pWal, iFrame, p->pgno); } assert( pLast!=0 || nExtra==0 ); while( rc==SQLITE_OK && nExtra>0 ){ iFrame++; nExtra--; rc = walIndexAppend(pWal, iFrame, pLast->pgno); } if( rc==SQLITE_OK ){ /* Update the private copy of the header. */ pWal->hdr.szPage = (u16)((szPage&0xff00) | (szPage>>16)); testcase( szPage<=32768 ); testcase( szPage>=65536 ); pWal->hdr.mxFrame = iFrame; if( isCommit ){ pWal->hdr.iChange++; pWal->hdr.nPage = nTruncate; } /* If this is a commit, update the wal-index header too. */ if( isCommit ){ walIndexWriteHdr(pWal); pWal->iCallback = iFrame; } } WALTRACE(("WAL%p: frame write %s\n", pWal, rc ? "failed" : "ok")); return rc; } /* ** This routine is called to implement sqlite3_wal_checkpoint() and ** related interfaces. ** ** Obtain a CHECKPOINT lock and then backfill as much information as ** we can from WAL into the database. ** ** If parameter xBusy is not NULL, it is a pointer to a busy-handler ** callback. In this case this function runs a blocking checkpoint. */ SQLITE_PRIVATE int sqlite3WalCheckpoint( Wal *pWal, /* Wal connection */ sqlite3 *db, /* Check this handle's interrupt flag */ int eMode, /* PASSIVE, FULL, RESTART, or TRUNCATE */ int (*xBusy)(void*), /* Function to call when busy */ void *pBusyArg, /* Context argument for xBusyHandler */ int sync_flags, /* Flags to sync db file with (or 0) */ int nBuf, /* Size of temporary buffer */ u8 *zBuf, /* Temporary buffer to use */ int *pnLog, /* OUT: Number of frames in WAL */ int *pnCkpt /* OUT: Number of backfilled frames in WAL */ ){ int rc; /* Return code */ int isChanged = 0; /* True if a new wal-index header is loaded */ int eMode2 = eMode; /* Mode to pass to walCheckpoint() */ int (*xBusy2)(void*) = xBusy; /* Busy handler for eMode2 */ assert( pWal->ckptLock==0 ); assert( pWal->writeLock==0 ); /* EVIDENCE-OF: R-62920-47450 The busy-handler callback is never invoked ** in the SQLITE_CHECKPOINT_PASSIVE mode. */ assert( eMode!=SQLITE_CHECKPOINT_PASSIVE || xBusy==0 ); if( pWal->readOnly ) return SQLITE_READONLY; WALTRACE(("WAL%p: checkpoint begins\n", pWal)); /* Enable blocking locks, if possible. If blocking locks are successfully ** enabled, set xBusy2=0 so that the busy-handler is never invoked. */ sqlite3WalDb(pWal, db); (void)walEnableBlocking(pWal); /* IMPLEMENTATION-OF: R-62028-47212 All calls obtain an exclusive ** "checkpoint" lock on the database file. ** EVIDENCE-OF: R-10421-19736 If any other process is running a ** checkpoint operation at the same time, the lock cannot be obtained and ** SQLITE_BUSY is returned. ** EVIDENCE-OF: R-53820-33897 Even if there is a busy-handler configured, ** it will not be invoked in this case. */ rc = walLockExclusive(pWal, WAL_CKPT_LOCK, 1); testcase( rc==SQLITE_BUSY ); testcase( rc!=SQLITE_OK && xBusy2!=0 ); if( rc==SQLITE_OK ){ pWal->ckptLock = 1; /* IMPLEMENTATION-OF: R-59782-36818 The SQLITE_CHECKPOINT_FULL, RESTART and ** TRUNCATE modes also obtain the exclusive "writer" lock on the database ** file. ** ** EVIDENCE-OF: R-60642-04082 If the writer lock cannot be obtained ** immediately, and a busy-handler is configured, it is invoked and the ** writer lock retried until either the busy-handler returns 0 or the ** lock is successfully obtained. */ if( eMode!=SQLITE_CHECKPOINT_PASSIVE ){ rc = walBusyLock(pWal, xBusy2, pBusyArg, WAL_WRITE_LOCK, 1); if( rc==SQLITE_OK ){ pWal->writeLock = 1; }else if( rc==SQLITE_BUSY ){ eMode2 = SQLITE_CHECKPOINT_PASSIVE; xBusy2 = 0; rc = SQLITE_OK; } } } /* Read the wal-index header. */ if( rc==SQLITE_OK ){ walDisableBlocking(pWal); rc = walIndexReadHdr(pWal, &isChanged); (void)walEnableBlocking(pWal); if( isChanged && pWal->pDbFd->pMethods->iVersion>=3 ){ sqlite3OsUnfetch(pWal->pDbFd, 0, 0); } } /* Copy data from the log to the database file. */ if( rc==SQLITE_OK ){ if( pWal->hdr.mxFrame && walPagesize(pWal)!=nBuf ){ rc = SQLITE_CORRUPT_BKPT; }else{ rc = walCheckpoint(pWal, db, eMode2, xBusy2, pBusyArg, sync_flags, zBuf); } /* If no error occurred, set the output variables. */ if( rc==SQLITE_OK || rc==SQLITE_BUSY ){ if( pnLog ) *pnLog = (int)pWal->hdr.mxFrame; if( pnCkpt ) *pnCkpt = (int)(walCkptInfo(pWal)->nBackfill); } } if( isChanged ){ /* If a new wal-index header was loaded before the checkpoint was ** performed, then the pager-cache associated with pWal is now ** out of date. So zero the cached wal-index header to ensure that ** next time the pager opens a snapshot on this database it knows that ** the cache needs to be reset. */ memset(&pWal->hdr, 0, sizeof(WalIndexHdr)); } walDisableBlocking(pWal); sqlite3WalDb(pWal, 0); /* Release the locks. */ sqlite3WalEndWriteTransaction(pWal); if( pWal->ckptLock ){ walUnlockExclusive(pWal, WAL_CKPT_LOCK, 1); pWal->ckptLock = 0; } WALTRACE(("WAL%p: checkpoint %s\n", pWal, rc ? "failed" : "ok")); #ifdef SQLITE_ENABLE_SETLK_TIMEOUT if( rc==SQLITE_BUSY_TIMEOUT ) rc = SQLITE_BUSY; #endif return (rc==SQLITE_OK && eMode!=eMode2 ? SQLITE_BUSY : rc); } /* Return the value to pass to a sqlite3_wal_hook callback, the ** number of frames in the WAL at the point of the last commit since ** sqlite3WalCallback() was called. If no commits have occurred since ** the last call, then return 0. */ SQLITE_PRIVATE int sqlite3WalCallback(Wal *pWal){ u32 ret = 0; if( pWal ){ ret = pWal->iCallback; pWal->iCallback = 0; } return (int)ret; } /* ** This function is called to change the WAL subsystem into or out ** of locking_mode=EXCLUSIVE. ** ** If op is zero, then attempt to change from locking_mode=EXCLUSIVE ** into locking_mode=NORMAL. This means that we must acquire a lock ** on the pWal->readLock byte. If the WAL is already in locking_mode=NORMAL ** or if the acquisition of the lock fails, then return 0. If the ** transition out of exclusive-mode is successful, return 1. This ** operation must occur while the pager is still holding the exclusive ** lock on the main database file. ** ** If op is one, then change from locking_mode=NORMAL into ** locking_mode=EXCLUSIVE. This means that the pWal->readLock must ** be released. Return 1 if the transition is made and 0 if the ** WAL is already in exclusive-locking mode - meaning that this ** routine is a no-op. The pager must already hold the exclusive lock ** on the main database file before invoking this operation. ** ** If op is negative, then do a dry-run of the op==1 case but do ** not actually change anything. The pager uses this to see if it ** should acquire the database exclusive lock prior to invoking ** the op==1 case. */ SQLITE_PRIVATE int sqlite3WalExclusiveMode(Wal *pWal, int op){ int rc; assert( pWal->writeLock==0 ); assert( pWal->exclusiveMode!=WAL_HEAPMEMORY_MODE || op==-1 ); /* pWal->readLock is usually set, but might be -1 if there was a ** prior error while attempting to acquire are read-lock. This cannot ** happen if the connection is actually in exclusive mode (as no xShmLock ** locks are taken in this case). Nor should the pager attempt to ** upgrade to exclusive-mode following such an error. */ assert( pWal->readLock>=0 || pWal->lockError ); assert( pWal->readLock>=0 || (op<=0 && pWal->exclusiveMode==0) ); if( op==0 ){ if( pWal->exclusiveMode!=WAL_NORMAL_MODE ){ pWal->exclusiveMode = WAL_NORMAL_MODE; if( walLockShared(pWal, WAL_READ_LOCK(pWal->readLock))!=SQLITE_OK ){ pWal->exclusiveMode = WAL_EXCLUSIVE_MODE; } rc = pWal->exclusiveMode==WAL_NORMAL_MODE; }else{ /* Already in locking_mode=NORMAL */ rc = 0; } }else if( op>0 ){ assert( pWal->exclusiveMode==WAL_NORMAL_MODE ); assert( pWal->readLock>=0 ); walUnlockShared(pWal, WAL_READ_LOCK(pWal->readLock)); pWal->exclusiveMode = WAL_EXCLUSIVE_MODE; rc = 1; }else{ rc = pWal->exclusiveMode==WAL_NORMAL_MODE; } return rc; } /* ** Return true if the argument is non-NULL and the WAL module is using ** heap-memory for the wal-index. Otherwise, if the argument is NULL or the ** WAL module is using shared-memory, return false. */ SQLITE_PRIVATE int sqlite3WalHeapMemory(Wal *pWal){ return (pWal && pWal->exclusiveMode==WAL_HEAPMEMORY_MODE ); } #ifdef SQLITE_ENABLE_SNAPSHOT /* Create a snapshot object. The content of a snapshot is opaque to ** every other subsystem, so the WAL module can put whatever it needs ** in the object. */ SQLITE_PRIVATE int sqlite3WalSnapshotGet(Wal *pWal, sqlite3_snapshot **ppSnapshot){ int rc = SQLITE_OK; WalIndexHdr *pRet; static const u32 aZero[4] = { 0, 0, 0, 0 }; assert( pWal->readLock>=0 && pWal->writeLock==0 ); if( memcmp(&pWal->hdr.aFrameCksum[0],aZero,16)==0 ){ *ppSnapshot = 0; return SQLITE_ERROR; } pRet = (WalIndexHdr*)sqlite3_malloc(sizeof(WalIndexHdr)); if( pRet==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ memcpy(pRet, &pWal->hdr, sizeof(WalIndexHdr)); *ppSnapshot = (sqlite3_snapshot*)pRet; } return rc; } /* Try to open on pSnapshot when the next read-transaction starts */ SQLITE_PRIVATE void sqlite3WalSnapshotOpen( Wal *pWal, sqlite3_snapshot *pSnapshot ){ pWal->pSnapshot = (WalIndexHdr*)pSnapshot; } /* ** Return a +ve value if snapshot p1 is newer than p2. A -ve value if ** p1 is older than p2 and zero if p1 and p2 are the same snapshot. */ SQLITE_API int sqlite3_snapshot_cmp(sqlite3_snapshot *p1, sqlite3_snapshot *p2){ WalIndexHdr *pHdr1 = (WalIndexHdr*)p1; WalIndexHdr *pHdr2 = (WalIndexHdr*)p2; /* aSalt[0] is a copy of the value stored in the wal file header. It ** is incremented each time the wal file is restarted. */ if( pHdr1->aSalt[0]aSalt[0] ) return -1; if( pHdr1->aSalt[0]>pHdr2->aSalt[0] ) return +1; if( pHdr1->mxFramemxFrame ) return -1; if( pHdr1->mxFrame>pHdr2->mxFrame ) return +1; return 0; } /* ** The caller currently has a read transaction open on the database. ** This function takes a SHARED lock on the CHECKPOINTER slot and then ** checks if the snapshot passed as the second argument is still ** available. If so, SQLITE_OK is returned. ** ** If the snapshot is not available, SQLITE_ERROR is returned. Or, if ** the CHECKPOINTER lock cannot be obtained, SQLITE_BUSY. If any error ** occurs (any value other than SQLITE_OK is returned), the CHECKPOINTER ** lock is released before returning. */ SQLITE_PRIVATE int sqlite3WalSnapshotCheck(Wal *pWal, sqlite3_snapshot *pSnapshot){ int rc; rc = walLockShared(pWal, WAL_CKPT_LOCK); if( rc==SQLITE_OK ){ WalIndexHdr *pNew = (WalIndexHdr*)pSnapshot; if( memcmp(pNew->aSalt, pWal->hdr.aSalt, sizeof(pWal->hdr.aSalt)) || pNew->mxFramenBackfillAttempted ){ rc = SQLITE_ERROR_SNAPSHOT; walUnlockShared(pWal, WAL_CKPT_LOCK); } } return rc; } /* ** Release a lock obtained by an earlier successful call to ** sqlite3WalSnapshotCheck(). */ SQLITE_PRIVATE void sqlite3WalSnapshotUnlock(Wal *pWal){ assert( pWal ); walUnlockShared(pWal, WAL_CKPT_LOCK); } #endif /* SQLITE_ENABLE_SNAPSHOT */ #ifdef SQLITE_ENABLE_ZIPVFS /* ** If the argument is not NULL, it points to a Wal object that holds a ** read-lock. This function returns the database page-size if it is known, ** or zero if it is not (or if pWal is NULL). */ SQLITE_PRIVATE int sqlite3WalFramesize(Wal *pWal){ assert( pWal==0 || pWal->readLock>=0 ); return (pWal ? pWal->szPage : 0); } #endif /* Return the sqlite3_file object for the WAL file */ SQLITE_PRIVATE sqlite3_file *sqlite3WalFile(Wal *pWal){ return pWal->pWalFd; } #endif /* #ifndef SQLITE_OMIT_WAL */ /************** End of wal.c *************************************************/ /************** Begin file btmutex.c *****************************************/ /* ** 2007 August 27 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code used to implement mutexes on Btree objects. ** This code really belongs in btree.c. But btree.c is getting too ** big and we want to break it down some. This packaged seemed like ** a good breakout. */ /************** Include btreeInt.h in the middle of btmutex.c ****************/ /************** Begin file btreeInt.h ****************************************/ /* ** 2004 April 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file implements an external (disk-based) database using BTrees. ** For a detailed discussion of BTrees, refer to ** ** Donald E. Knuth, THE ART OF COMPUTER PROGRAMMING, Volume 3: ** "Sorting And Searching", pages 473-480. Addison-Wesley ** Publishing Company, Reading, Massachusetts. ** ** The basic idea is that each page of the file contains N database ** entries and N+1 pointers to subpages. ** ** ---------------------------------------------------------------- ** | Ptr(0) | Key(0) | Ptr(1) | Key(1) | ... | Key(N-1) | Ptr(N) | ** ---------------------------------------------------------------- ** ** All of the keys on the page that Ptr(0) points to have values less ** than Key(0). All of the keys on page Ptr(1) and its subpages have ** values greater than Key(0) and less than Key(1). All of the keys ** on Ptr(N) and its subpages have values greater than Key(N-1). And ** so forth. ** ** Finding a particular key requires reading O(log(M)) pages from the ** disk where M is the number of entries in the tree. ** ** In this implementation, a single file can hold one or more separate ** BTrees. Each BTree is identified by the index of its root page. The ** key and data for any entry are combined to form the "payload". A ** fixed amount of payload can be carried directly on the database ** page. If the payload is larger than the preset amount then surplus ** bytes are stored on overflow pages. The payload for an entry ** and the preceding pointer are combined to form a "Cell". Each ** page has a small header which contains the Ptr(N) pointer and other ** information such as the size of key and data. ** ** FORMAT DETAILS ** ** The file is divided into pages. The first page is called page 1, ** the second is page 2, and so forth. A page number of zero indicates ** "no such page". The page size can be any power of 2 between 512 and 65536. ** Each page can be either a btree page, a freelist page, an overflow ** page, or a pointer-map page. ** ** The first page is always a btree page. The first 100 bytes of the first ** page contain a special header (the "file header") that describes the file. ** The format of the file header is as follows: ** ** OFFSET SIZE DESCRIPTION ** 0 16 Header string: "SQLite format 3\000" ** 16 2 Page size in bytes. (1 means 65536) ** 18 1 File format write version ** 19 1 File format read version ** 20 1 Bytes of unused space at the end of each page ** 21 1 Max embedded payload fraction (must be 64) ** 22 1 Min embedded payload fraction (must be 32) ** 23 1 Min leaf payload fraction (must be 32) ** 24 4 File change counter ** 28 4 Reserved for future use ** 32 4 First freelist page ** 36 4 Number of freelist pages in the file ** 40 60 15 4-byte meta values passed to higher layers ** ** 40 4 Schema cookie ** 44 4 File format of schema layer ** 48 4 Size of page cache ** 52 4 Largest root-page (auto/incr_vacuum) ** 56 4 1=UTF-8 2=UTF16le 3=UTF16be ** 60 4 User version ** 64 4 Incremental vacuum mode ** 68 4 Application-ID ** 72 20 unused ** 92 4 The version-valid-for number ** 96 4 SQLITE_VERSION_NUMBER ** ** All of the integer values are big-endian (most significant byte first). ** ** The file change counter is incremented when the database is changed ** This counter allows other processes to know when the file has changed ** and thus when they need to flush their cache. ** ** The max embedded payload fraction is the amount of the total usable ** space in a page that can be consumed by a single cell for standard ** B-tree (non-LEAFDATA) tables. A value of 255 means 100%. The default ** is to limit the maximum cell size so that at least 4 cells will fit ** on one page. Thus the default max embedded payload fraction is 64. ** ** If the payload for a cell is larger than the max payload, then extra ** payload is spilled to overflow pages. Once an overflow page is allocated, ** as many bytes as possible are moved into the overflow pages without letting ** the cell size drop below the min embedded payload fraction. ** ** The min leaf payload fraction is like the min embedded payload fraction ** except that it applies to leaf nodes in a LEAFDATA tree. The maximum ** payload fraction for a LEAFDATA tree is always 100% (or 255) and it ** not specified in the header. ** ** Each btree pages is divided into three sections: The header, the ** cell pointer array, and the cell content area. Page 1 also has a 100-byte ** file header that occurs before the page header. ** ** |----------------| ** | file header | 100 bytes. Page 1 only. ** |----------------| ** | page header | 8 bytes for leaves. 12 bytes for interior nodes ** |----------------| ** | cell pointer | | 2 bytes per cell. Sorted order. ** | array | | Grows downward ** | | v ** |----------------| ** | unallocated | ** | space | ** |----------------| ^ Grows upwards ** | cell content | | Arbitrary order interspersed with freeblocks. ** | area | | and free space fragments. ** |----------------| ** ** The page headers looks like this: ** ** OFFSET SIZE DESCRIPTION ** 0 1 Flags. 1: intkey, 2: zerodata, 4: leafdata, 8: leaf ** 1 2 byte offset to the first freeblock ** 3 2 number of cells on this page ** 5 2 first byte of the cell content area ** 7 1 number of fragmented free bytes ** 8 4 Right child (the Ptr(N) value). Omitted on leaves. ** ** The flags define the format of this btree page. The leaf flag means that ** this page has no children. The zerodata flag means that this page carries ** only keys and no data. The intkey flag means that the key is an integer ** which is stored in the key size entry of the cell header rather than in ** the payload area. ** ** The cell pointer array begins on the first byte after the page header. ** The cell pointer array contains zero or more 2-byte numbers which are ** offsets from the beginning of the page to the cell content in the cell ** content area. The cell pointers occur in sorted order. The system strives ** to keep free space after the last cell pointer so that new cells can ** be easily added without having to defragment the page. ** ** Cell content is stored at the very end of the page and grows toward the ** beginning of the page. ** ** Unused space within the cell content area is collected into a linked list of ** freeblocks. Each freeblock is at least 4 bytes in size. The byte offset ** to the first freeblock is given in the header. Freeblocks occur in ** increasing order. Because a freeblock must be at least 4 bytes in size, ** any group of 3 or fewer unused bytes in the cell content area cannot ** exist on the freeblock chain. A group of 3 or fewer free bytes is called ** a fragment. The total number of bytes in all fragments is recorded. ** in the page header at offset 7. ** ** SIZE DESCRIPTION ** 2 Byte offset of the next freeblock ** 2 Bytes in this freeblock ** ** Cells are of variable length. Cells are stored in the cell content area at ** the end of the page. Pointers to the cells are in the cell pointer array ** that immediately follows the page header. Cells is not necessarily ** contiguous or in order, but cell pointers are contiguous and in order. ** ** Cell content makes use of variable length integers. A variable ** length integer is 1 to 9 bytes where the lower 7 bits of each ** byte are used. The integer consists of all bytes that have bit 8 set and ** the first byte with bit 8 clear. The most significant byte of the integer ** appears first. A variable-length integer may not be more than 9 bytes long. ** As a special case, all 8 bytes of the 9th byte are used as data. This ** allows a 64-bit integer to be encoded in 9 bytes. ** ** 0x00 becomes 0x00000000 ** 0x7f becomes 0x0000007f ** 0x81 0x00 becomes 0x00000080 ** 0x82 0x00 becomes 0x00000100 ** 0x80 0x7f becomes 0x0000007f ** 0x8a 0x91 0xd1 0xac 0x78 becomes 0x12345678 ** 0x81 0x81 0x81 0x81 0x01 becomes 0x10204081 ** ** Variable length integers are used for rowids and to hold the number of ** bytes of key and data in a btree cell. ** ** The content of a cell looks like this: ** ** SIZE DESCRIPTION ** 4 Page number of the left child. Omitted if leaf flag is set. ** var Number of bytes of data. Omitted if the zerodata flag is set. ** var Number of bytes of key. Or the key itself if intkey flag is set. ** * Payload ** 4 First page of the overflow chain. Omitted if no overflow ** ** Overflow pages form a linked list. Each page except the last is completely ** filled with data (pagesize - 4 bytes). The last page can have as little ** as 1 byte of data. ** ** SIZE DESCRIPTION ** 4 Page number of next overflow page ** * Data ** ** Freelist pages come in two subtypes: trunk pages and leaf pages. The ** file header points to the first in a linked list of trunk page. Each trunk ** page points to multiple leaf pages. The content of a leaf page is ** unspecified. A trunk page looks like this: ** ** SIZE DESCRIPTION ** 4 Page number of next trunk page ** 4 Number of leaf pointers on this page ** * zero or more pages numbers of leaves */ /* #include "sqliteInt.h" */ /* The following value is the maximum cell size assuming a maximum page ** size give above. */ #define MX_CELL_SIZE(pBt) ((int)(pBt->pageSize-8)) /* The maximum number of cells on a single page of the database. This ** assumes a minimum cell size of 6 bytes (4 bytes for the cell itself ** plus 2 bytes for the index to the cell in the page header). Such ** small cells will be rare, but they are possible. */ #define MX_CELL(pBt) ((pBt->pageSize-8)/6) /* Forward declarations */ typedef struct MemPage MemPage; typedef struct BtLock BtLock; typedef struct CellInfo CellInfo; /* ** This is a magic string that appears at the beginning of every ** SQLite database in order to identify the file as a real database. ** ** You can change this value at compile-time by specifying a ** -DSQLITE_FILE_HEADER="..." on the compiler command-line. The ** header must be exactly 16 bytes including the zero-terminator so ** the string itself should be 15 characters long. If you change ** the header, then your custom library will not be able to read ** databases generated by the standard tools and the standard tools ** will not be able to read databases created by your custom library. */ #ifndef SQLITE_FILE_HEADER /* 123456789 123456 */ # define SQLITE_FILE_HEADER "SQLite format 3" #endif /* ** Page type flags. An ORed combination of these flags appear as the ** first byte of on-disk image of every BTree page. */ #define PTF_INTKEY 0x01 #define PTF_ZERODATA 0x02 #define PTF_LEAFDATA 0x04 #define PTF_LEAF 0x08 /* ** An instance of this object stores information about each a single database ** page that has been loaded into memory. The information in this object ** is derived from the raw on-disk page content. ** ** As each database page is loaded into memory, the pager allocats an ** instance of this object and zeros the first 8 bytes. (This is the ** "extra" information associated with each page of the pager.) ** ** Access to all fields of this structure is controlled by the mutex ** stored in MemPage.pBt->mutex. */ struct MemPage { u8 isInit; /* True if previously initialized. MUST BE FIRST! */ u8 bBusy; /* Prevent endless loops on corrupt database files */ u8 intKey; /* True if table b-trees. False for index b-trees */ u8 intKeyLeaf; /* True if the leaf of an intKey table */ Pgno pgno; /* Page number for this page */ /* Only the first 8 bytes (above) are zeroed by pager.c when a new page ** is allocated. All fields that follow must be initialized before use */ u8 leaf; /* True if a leaf page */ u8 hdrOffset; /* 100 for page 1. 0 otherwise */ u8 childPtrSize; /* 0 if leaf==1. 4 if leaf==0 */ u8 max1bytePayload; /* min(maxLocal,127) */ u8 nOverflow; /* Number of overflow cell bodies in aCell[] */ u16 maxLocal; /* Copy of BtShared.maxLocal or BtShared.maxLeaf */ u16 minLocal; /* Copy of BtShared.minLocal or BtShared.minLeaf */ u16 cellOffset; /* Index in aData of first cell pointer */ int nFree; /* Number of free bytes on the page. -1 for unknown */ u16 nCell; /* Number of cells on this page, local and ovfl */ u16 maskPage; /* Mask for page offset */ u16 aiOvfl[4]; /* Insert the i-th overflow cell before the aiOvfl-th ** non-overflow cell */ u8 *apOvfl[4]; /* Pointers to the body of overflow cells */ BtShared *pBt; /* Pointer to BtShared that this page is part of */ u8 *aData; /* Pointer to disk image of the page data */ u8 *aDataEnd; /* One byte past the end of usable data */ u8 *aCellIdx; /* The cell index area */ u8 *aDataOfst; /* Same as aData for leaves. aData+4 for interior */ DbPage *pDbPage; /* Pager page handle */ u16 (*xCellSize)(MemPage*,u8*); /* cellSizePtr method */ void (*xParseCell)(MemPage*,u8*,CellInfo*); /* btreeParseCell method */ }; /* ** A linked list of the following structures is stored at BtShared.pLock. ** Locks are added (or upgraded from READ_LOCK to WRITE_LOCK) when a cursor ** is opened on the table with root page BtShared.iTable. Locks are removed ** from this list when a transaction is committed or rolled back, or when ** a btree handle is closed. */ struct BtLock { Btree *pBtree; /* Btree handle holding this lock */ Pgno iTable; /* Root page of table */ u8 eLock; /* READ_LOCK or WRITE_LOCK */ BtLock *pNext; /* Next in BtShared.pLock list */ }; /* Candidate values for BtLock.eLock */ #define READ_LOCK 1 #define WRITE_LOCK 2 /* A Btree handle ** ** A database connection contains a pointer to an instance of ** this object for every database file that it has open. This structure ** is opaque to the database connection. The database connection cannot ** see the internals of this structure and only deals with pointers to ** this structure. ** ** For some database files, the same underlying database cache might be ** shared between multiple connections. In that case, each connection ** has it own instance of this object. But each instance of this object ** points to the same BtShared object. The database cache and the ** schema associated with the database file are all contained within ** the BtShared object. ** ** All fields in this structure are accessed under sqlite3.mutex. ** The pBt pointer itself may not be changed while there exists cursors ** in the referenced BtShared that point back to this Btree since those ** cursors have to go through this Btree to find their BtShared and ** they often do so without holding sqlite3.mutex. */ struct Btree { sqlite3 *db; /* The database connection holding this btree */ BtShared *pBt; /* Sharable content of this btree */ u8 inTrans; /* TRANS_NONE, TRANS_READ or TRANS_WRITE */ u8 sharable; /* True if we can share pBt with another db */ u8 locked; /* True if db currently has pBt locked */ u8 hasIncrblobCur; /* True if there are one or more Incrblob cursors */ int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */ int nBackup; /* Number of backup operations reading this btree */ u32 iDataVersion; /* Combines with pBt->pPager->iDataVersion */ Btree *pNext; /* List of other sharable Btrees from the same db */ Btree *pPrev; /* Back pointer of the same list */ #ifndef SQLITE_OMIT_SHARED_CACHE BtLock lock; /* Object used to lock page 1 */ #endif }; /* ** Btree.inTrans may take one of the following values. ** ** If the shared-data extension is enabled, there may be multiple users ** of the Btree structure. At most one of these may open a write transaction, ** but any number may have active read transactions. */ #define TRANS_NONE 0 #define TRANS_READ 1 #define TRANS_WRITE 2 /* ** An instance of this object represents a single database file. ** ** A single database file can be in use at the same time by two ** or more database connections. When two or more connections are ** sharing the same database file, each connection has it own ** private Btree object for the file and each of those Btrees points ** to this one BtShared object. BtShared.nRef is the number of ** connections currently sharing this database file. ** ** Fields in this structure are accessed under the BtShared.mutex ** mutex, except for nRef and pNext which are accessed under the ** global SQLITE_MUTEX_STATIC_MAIN mutex. The pPager field ** may not be modified once it is initially set as long as nRef>0. ** The pSchema field may be set once under BtShared.mutex and ** thereafter is unchanged as long as nRef>0. ** ** isPending: ** ** If a BtShared client fails to obtain a write-lock on a database ** table (because there exists one or more read-locks on the table), ** the shared-cache enters 'pending-lock' state and isPending is ** set to true. ** ** The shared-cache leaves the 'pending lock' state when either of ** the following occur: ** ** 1) The current writer (BtShared.pWriter) concludes its transaction, OR ** 2) The number of locks held by other connections drops to zero. ** ** while in the 'pending-lock' state, no connection may start a new ** transaction. ** ** This feature is included to help prevent writer-starvation. */ struct BtShared { Pager *pPager; /* The page cache */ sqlite3 *db; /* Database connection currently using this Btree */ BtCursor *pCursor; /* A list of all open cursors */ MemPage *pPage1; /* First page of the database */ u8 openFlags; /* Flags to sqlite3BtreeOpen() */ #ifndef SQLITE_OMIT_AUTOVACUUM u8 autoVacuum; /* True if auto-vacuum is enabled */ u8 incrVacuum; /* True if incr-vacuum is enabled */ u8 bDoTruncate; /* True to truncate db on commit */ #endif u8 inTransaction; /* Transaction state */ u8 max1bytePayload; /* Maximum first byte of cell for a 1-byte payload */ u8 nReserveWanted; /* Desired number of extra bytes per page */ u16 btsFlags; /* Boolean parameters. See BTS_* macros below */ u16 maxLocal; /* Maximum local payload in non-LEAFDATA tables */ u16 minLocal; /* Minimum local payload in non-LEAFDATA tables */ u16 maxLeaf; /* Maximum local payload in a LEAFDATA table */ u16 minLeaf; /* Minimum local payload in a LEAFDATA table */ u32 pageSize; /* Total number of bytes on a page */ u32 usableSize; /* Number of usable bytes on each page */ int nTransaction; /* Number of open transactions (read + write) */ u32 nPage; /* Number of pages in the database */ void *pSchema; /* Pointer to space allocated by sqlite3BtreeSchema() */ void (*xFreeSchema)(void*); /* Destructor for BtShared.pSchema */ sqlite3_mutex *mutex; /* Non-recursive mutex required to access this object */ Bitvec *pHasContent; /* Set of pages moved to free-list this transaction */ #ifndef SQLITE_OMIT_SHARED_CACHE int nRef; /* Number of references to this structure */ BtShared *pNext; /* Next on a list of sharable BtShared structs */ BtLock *pLock; /* List of locks held on this shared-btree struct */ Btree *pWriter; /* Btree with currently open write transaction */ #endif u8 *pTmpSpace; /* Temp space sufficient to hold a single cell */ }; /* ** Allowed values for BtShared.btsFlags */ #define BTS_READ_ONLY 0x0001 /* Underlying file is readonly */ #define BTS_PAGESIZE_FIXED 0x0002 /* Page size can no longer be changed */ #define BTS_SECURE_DELETE 0x0004 /* PRAGMA secure_delete is enabled */ #define BTS_OVERWRITE 0x0008 /* Overwrite deleted content with zeros */ #define BTS_FAST_SECURE 0x000c /* Combination of the previous two */ #define BTS_INITIALLY_EMPTY 0x0010 /* Database was empty at trans start */ #define BTS_NO_WAL 0x0020 /* Do not open write-ahead-log files */ #define BTS_EXCLUSIVE 0x0040 /* pWriter has an exclusive lock */ #define BTS_PENDING 0x0080 /* Waiting for read-locks to clear */ /* ** An instance of the following structure is used to hold information ** about a cell. The parseCellPtr() function fills in this structure ** based on information extract from the raw disk page. */ struct CellInfo { i64 nKey; /* The key for INTKEY tables, or nPayload otherwise */ u8 *pPayload; /* Pointer to the start of payload */ u32 nPayload; /* Bytes of payload */ u16 nLocal; /* Amount of payload held locally, not on overflow */ u16 nSize; /* Size of the cell content on the main b-tree page */ }; /* ** Maximum depth of an SQLite B-Tree structure. Any B-Tree deeper than ** this will be declared corrupt. This value is calculated based on a ** maximum database size of 2^31 pages a minimum fanout of 2 for a ** root-node and 3 for all other internal nodes. ** ** If a tree that appears to be taller than this is encountered, it is ** assumed that the database is corrupt. */ #define BTCURSOR_MAX_DEPTH 20 /* ** A cursor is a pointer to a particular entry within a particular ** b-tree within a database file. ** ** The entry is identified by its MemPage and the index in ** MemPage.aCell[] of the entry. ** ** A single database file can be shared by two more database connections, ** but cursors cannot be shared. Each cursor is associated with a ** particular database connection identified BtCursor.pBtree.db. ** ** Fields in this structure are accessed under the BtShared.mutex ** found at self->pBt->mutex. ** ** skipNext meaning: ** The meaning of skipNext depends on the value of eState: ** ** eState Meaning of skipNext ** VALID skipNext is meaningless and is ignored ** INVALID skipNext is meaningless and is ignored ** SKIPNEXT sqlite3BtreeNext() is a no-op if skipNext>0 and ** sqlite3BtreePrevious() is no-op if skipNext<0. ** REQUIRESEEK restoreCursorPosition() restores the cursor to ** eState=SKIPNEXT if skipNext!=0 ** FAULT skipNext holds the cursor fault error code. */ struct BtCursor { u8 eState; /* One of the CURSOR_XXX constants (see below) */ u8 curFlags; /* zero or more BTCF_* flags defined below */ u8 curPagerFlags; /* Flags to send to sqlite3PagerGet() */ u8 hints; /* As configured by CursorSetHints() */ int skipNext; /* Prev() is noop if negative. Next() is noop if positive. ** Error code if eState==CURSOR_FAULT */ Btree *pBtree; /* The Btree to which this cursor belongs */ Pgno *aOverflow; /* Cache of overflow page locations */ void *pKey; /* Saved key that was cursor last known position */ /* All fields above are zeroed when the cursor is allocated. See ** sqlite3BtreeCursorZero(). Fields that follow must be manually ** initialized. */ #define BTCURSOR_FIRST_UNINIT pBt /* Name of first uninitialized field */ BtShared *pBt; /* The BtShared this cursor points to */ BtCursor *pNext; /* Forms a linked list of all cursors */ CellInfo info; /* A parse of the cell we are pointing at */ i64 nKey; /* Size of pKey, or last integer key */ Pgno pgnoRoot; /* The root page of this tree */ i8 iPage; /* Index of current page in apPage */ u8 curIntKey; /* Value of apPage[0]->intKey */ u16 ix; /* Current index for apPage[iPage] */ u16 aiIdx[BTCURSOR_MAX_DEPTH-1]; /* Current index in apPage[i] */ struct KeyInfo *pKeyInfo; /* Arg passed to comparison function */ MemPage *pPage; /* Current page */ MemPage *apPage[BTCURSOR_MAX_DEPTH-1]; /* Stack of parents of current page */ }; /* ** Legal values for BtCursor.curFlags */ #define BTCF_WriteFlag 0x01 /* True if a write cursor */ #define BTCF_ValidNKey 0x02 /* True if info.nKey is valid */ #define BTCF_ValidOvfl 0x04 /* True if aOverflow is valid */ #define BTCF_AtLast 0x08 /* Cursor is pointing ot the last entry */ #define BTCF_Incrblob 0x10 /* True if an incremental I/O handle */ #define BTCF_Multiple 0x20 /* Maybe another cursor on the same btree */ #define BTCF_Pinned 0x40 /* Cursor is busy and cannot be moved */ /* ** Potential values for BtCursor.eState. ** ** CURSOR_INVALID: ** Cursor does not point to a valid entry. This can happen (for example) ** because the table is empty or because BtreeCursorFirst() has not been ** called. ** ** CURSOR_VALID: ** Cursor points to a valid entry. getPayload() etc. may be called. ** ** CURSOR_SKIPNEXT: ** Cursor is valid except that the Cursor.skipNext field is non-zero ** indicating that the next sqlite3BtreeNext() or sqlite3BtreePrevious() ** operation should be a no-op. ** ** CURSOR_REQUIRESEEK: ** The table that this cursor was opened on still exists, but has been ** modified since the cursor was last used. The cursor position is saved ** in variables BtCursor.pKey and BtCursor.nKey. When a cursor is in ** this state, restoreCursorPosition() can be called to attempt to ** seek the cursor to the saved position. ** ** CURSOR_FAULT: ** An unrecoverable error (an I/O error or a malloc failure) has occurred ** on a different connection that shares the BtShared cache with this ** cursor. The error has left the cache in an inconsistent state. ** Do nothing else with this cursor. Any attempt to use the cursor ** should return the error code stored in BtCursor.skipNext */ #define CURSOR_VALID 0 #define CURSOR_INVALID 1 #define CURSOR_SKIPNEXT 2 #define CURSOR_REQUIRESEEK 3 #define CURSOR_FAULT 4 /* ** The database page the PENDING_BYTE occupies. This page is never used. */ # define PENDING_BYTE_PAGE(pBt) PAGER_MJ_PGNO(pBt) /* ** These macros define the location of the pointer-map entry for a ** database page. The first argument to each is the number of usable ** bytes on each page of the database (often 1024). The second is the ** page number to look up in the pointer map. ** ** PTRMAP_PAGENO returns the database page number of the pointer-map ** page that stores the required pointer. PTRMAP_PTROFFSET returns ** the offset of the requested map entry. ** ** If the pgno argument passed to PTRMAP_PAGENO is a pointer-map page, ** then pgno is returned. So (pgno==PTRMAP_PAGENO(pgsz, pgno)) can be ** used to test if pgno is a pointer-map page. PTRMAP_ISPAGE implements ** this test. */ #define PTRMAP_PAGENO(pBt, pgno) ptrmapPageno(pBt, pgno) #define PTRMAP_PTROFFSET(pgptrmap, pgno) (5*(pgno-pgptrmap-1)) #define PTRMAP_ISPAGE(pBt, pgno) (PTRMAP_PAGENO((pBt),(pgno))==(pgno)) /* ** The pointer map is a lookup table that identifies the parent page for ** each child page in the database file. The parent page is the page that ** contains a pointer to the child. Every page in the database contains ** 0 or 1 parent pages. (In this context 'database page' refers ** to any page that is not part of the pointer map itself.) Each pointer map ** entry consists of a single byte 'type' and a 4 byte parent page number. ** The PTRMAP_XXX identifiers below are the valid types. ** ** The purpose of the pointer map is to facility moving pages from one ** position in the file to another as part of autovacuum. When a page ** is moved, the pointer in its parent must be updated to point to the ** new location. The pointer map is used to locate the parent page quickly. ** ** PTRMAP_ROOTPAGE: The database page is a root-page. The page-number is not ** used in this case. ** ** PTRMAP_FREEPAGE: The database page is an unused (free) page. The page-number ** is not used in this case. ** ** PTRMAP_OVERFLOW1: The database page is the first page in a list of ** overflow pages. The page number identifies the page that ** contains the cell with a pointer to this overflow page. ** ** PTRMAP_OVERFLOW2: The database page is the second or later page in a list of ** overflow pages. The page-number identifies the previous ** page in the overflow page list. ** ** PTRMAP_BTREE: The database page is a non-root btree page. The page number ** identifies the parent page in the btree. */ #define PTRMAP_ROOTPAGE 1 #define PTRMAP_FREEPAGE 2 #define PTRMAP_OVERFLOW1 3 #define PTRMAP_OVERFLOW2 4 #define PTRMAP_BTREE 5 /* A bunch of assert() statements to check the transaction state variables ** of handle p (type Btree*) are internally consistent. */ #define btreeIntegrity(p) \ assert( p->pBt->inTransaction!=TRANS_NONE || p->pBt->nTransaction==0 ); \ assert( p->pBt->inTransaction>=p->inTrans ); /* ** The ISAUTOVACUUM macro is used within balance_nonroot() to determine ** if the database supports auto-vacuum or not. Because it is used ** within an expression that is an argument to another macro ** (sqliteMallocRaw), it is not possible to use conditional compilation. ** So, this macro is defined instead. */ #ifndef SQLITE_OMIT_AUTOVACUUM #define ISAUTOVACUUM (pBt->autoVacuum) #else #define ISAUTOVACUUM 0 #endif /* ** This structure is passed around through all the sanity checking routines ** in order to keep track of some global state information. ** ** The aRef[] array is allocated so that there is 1 bit for each page in ** the database. As the integrity-check proceeds, for each page used in ** the database the corresponding bit is set. This allows integrity-check to ** detect pages that are used twice and orphaned pages (both of which ** indicate corruption). */ typedef struct IntegrityCk IntegrityCk; struct IntegrityCk { BtShared *pBt; /* The tree being checked out */ Pager *pPager; /* The associated pager. Also accessible by pBt->pPager */ u8 *aPgRef; /* 1 bit per page in the db (see above) */ Pgno nPage; /* Number of pages in the database */ int mxErr; /* Stop accumulating errors when this reaches zero */ int nErr; /* Number of messages written to zErrMsg so far */ int bOomFault; /* A memory allocation error has occurred */ const char *zPfx; /* Error message prefix */ Pgno v1; /* Value for first %u substitution in zPfx */ int v2; /* Value for second %d substitution in zPfx */ StrAccum errMsg; /* Accumulate the error message text here */ u32 *heap; /* Min-heap used for analyzing cell coverage */ sqlite3 *db; /* Database connection running the check */ }; /* ** Routines to read or write a two- and four-byte big-endian integer values. */ #define get2byte(x) ((x)[0]<<8 | (x)[1]) #define put2byte(p,v) ((p)[0] = (u8)((v)>>8), (p)[1] = (u8)(v)) #define get4byte sqlite3Get4byte #define put4byte sqlite3Put4byte /* ** get2byteAligned(), unlike get2byte(), requires that its argument point to a ** two-byte aligned address. get2bytea() is only used for accessing the ** cell addresses in a btree header. */ #if SQLITE_BYTEORDER==4321 # define get2byteAligned(x) (*(u16*)(x)) #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4008000 # define get2byteAligned(x) __builtin_bswap16(*(u16*)(x)) #elif SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 # define get2byteAligned(x) _byteswap_ushort(*(u16*)(x)) #else # define get2byteAligned(x) ((x)[0]<<8 | (x)[1]) #endif /************** End of btreeInt.h ********************************************/ /************** Continuing where we left off in btmutex.c ********************/ #ifndef SQLITE_OMIT_SHARED_CACHE #if SQLITE_THREADSAFE /* ** Obtain the BtShared mutex associated with B-Tree handle p. Also, ** set BtShared.db to the database handle associated with p and the ** p->locked boolean to true. */ static void lockBtreeMutex(Btree *p){ assert( p->locked==0 ); assert( sqlite3_mutex_notheld(p->pBt->mutex) ); assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3_mutex_enter(p->pBt->mutex); p->pBt->db = p->db; p->locked = 1; } /* ** Release the BtShared mutex associated with B-Tree handle p and ** clear the p->locked boolean. */ static void SQLITE_NOINLINE unlockBtreeMutex(Btree *p){ BtShared *pBt = p->pBt; assert( p->locked==1 ); assert( sqlite3_mutex_held(pBt->mutex) ); assert( sqlite3_mutex_held(p->db->mutex) ); assert( p->db==pBt->db ); sqlite3_mutex_leave(pBt->mutex); p->locked = 0; } /* Forward reference */ static void SQLITE_NOINLINE btreeLockCarefully(Btree *p); /* ** Enter a mutex on the given BTree object. ** ** If the object is not sharable, then no mutex is ever required ** and this routine is a no-op. The underlying mutex is non-recursive. ** But we keep a reference count in Btree.wantToLock so the behavior ** of this interface is recursive. ** ** To avoid deadlocks, multiple Btrees are locked in the same order ** by all database connections. The p->pNext is a list of other ** Btrees belonging to the same database connection as the p Btree ** which need to be locked after p. If we cannot get a lock on ** p, then first unlock all of the others on p->pNext, then wait ** for the lock to become available on p, then relock all of the ** subsequent Btrees that desire a lock. */ SQLITE_PRIVATE void sqlite3BtreeEnter(Btree *p){ /* Some basic sanity checking on the Btree. The list of Btrees ** connected by pNext and pPrev should be in sorted order by ** Btree.pBt value. All elements of the list should belong to ** the same connection. Only shared Btrees are on the list. */ assert( p->pNext==0 || p->pNext->pBt>p->pBt ); assert( p->pPrev==0 || p->pPrev->pBtpBt ); assert( p->pNext==0 || p->pNext->db==p->db ); assert( p->pPrev==0 || p->pPrev->db==p->db ); assert( p->sharable || (p->pNext==0 && p->pPrev==0) ); /* Check for locking consistency */ assert( !p->locked || p->wantToLock>0 ); assert( p->sharable || p->wantToLock==0 ); /* We should already hold a lock on the database connection */ assert( sqlite3_mutex_held(p->db->mutex) ); /* Unless the database is sharable and unlocked, then BtShared.db ** should already be set correctly. */ assert( (p->locked==0 && p->sharable) || p->pBt->db==p->db ); if( !p->sharable ) return; p->wantToLock++; if( p->locked ) return; btreeLockCarefully(p); } /* This is a helper function for sqlite3BtreeLock(). By moving ** complex, but seldom used logic, out of sqlite3BtreeLock() and ** into this routine, we avoid unnecessary stack pointer changes ** and thus help the sqlite3BtreeLock() routine to run much faster ** in the common case. */ static void SQLITE_NOINLINE btreeLockCarefully(Btree *p){ Btree *pLater; /* In most cases, we should be able to acquire the lock we ** want without having to go through the ascending lock ** procedure that follows. Just be sure not to block. */ if( sqlite3_mutex_try(p->pBt->mutex)==SQLITE_OK ){ p->pBt->db = p->db; p->locked = 1; return; } /* To avoid deadlock, first release all locks with a larger ** BtShared address. Then acquire our lock. Then reacquire ** the other BtShared locks that we used to hold in ascending ** order. */ for(pLater=p->pNext; pLater; pLater=pLater->pNext){ assert( pLater->sharable ); assert( pLater->pNext==0 || pLater->pNext->pBt>pLater->pBt ); assert( !pLater->locked || pLater->wantToLock>0 ); if( pLater->locked ){ unlockBtreeMutex(pLater); } } lockBtreeMutex(p); for(pLater=p->pNext; pLater; pLater=pLater->pNext){ if( pLater->wantToLock ){ lockBtreeMutex(pLater); } } } /* ** Exit the recursive mutex on a Btree. */ SQLITE_PRIVATE void sqlite3BtreeLeave(Btree *p){ assert( sqlite3_mutex_held(p->db->mutex) ); if( p->sharable ){ assert( p->wantToLock>0 ); p->wantToLock--; if( p->wantToLock==0 ){ unlockBtreeMutex(p); } } } #ifndef NDEBUG /* ** Return true if the BtShared mutex is held on the btree, or if the ** B-Tree is not marked as sharable. ** ** This routine is used only from within assert() statements. */ SQLITE_PRIVATE int sqlite3BtreeHoldsMutex(Btree *p){ assert( p->sharable==0 || p->locked==0 || p->wantToLock>0 ); assert( p->sharable==0 || p->locked==0 || p->db==p->pBt->db ); assert( p->sharable==0 || p->locked==0 || sqlite3_mutex_held(p->pBt->mutex) ); assert( p->sharable==0 || p->locked==0 || sqlite3_mutex_held(p->db->mutex) ); return (p->sharable==0 || p->locked); } #endif /* ** Enter the mutex on every Btree associated with a database ** connection. This is needed (for example) prior to parsing ** a statement since we will be comparing table and column names ** against all schemas and we do not want those schemas being ** reset out from under us. ** ** There is a corresponding leave-all procedures. ** ** Enter the mutexes in accending order by BtShared pointer address ** to avoid the possibility of deadlock when two threads with ** two or more btrees in common both try to lock all their btrees ** at the same instant. */ static void SQLITE_NOINLINE btreeEnterAll(sqlite3 *db){ int i; int skipOk = 1; Btree *p; assert( sqlite3_mutex_held(db->mutex) ); for(i=0; inDb; i++){ p = db->aDb[i].pBt; if( p && p->sharable ){ sqlite3BtreeEnter(p); skipOk = 0; } } db->noSharedCache = skipOk; } SQLITE_PRIVATE void sqlite3BtreeEnterAll(sqlite3 *db){ if( db->noSharedCache==0 ) btreeEnterAll(db); } static void SQLITE_NOINLINE btreeLeaveAll(sqlite3 *db){ int i; Btree *p; assert( sqlite3_mutex_held(db->mutex) ); for(i=0; inDb; i++){ p = db->aDb[i].pBt; if( p ) sqlite3BtreeLeave(p); } } SQLITE_PRIVATE void sqlite3BtreeLeaveAll(sqlite3 *db){ if( db->noSharedCache==0 ) btreeLeaveAll(db); } #ifndef NDEBUG /* ** Return true if the current thread holds the database connection ** mutex and all required BtShared mutexes. ** ** This routine is used inside assert() statements only. */ SQLITE_PRIVATE int sqlite3BtreeHoldsAllMutexes(sqlite3 *db){ int i; if( !sqlite3_mutex_held(db->mutex) ){ return 0; } for(i=0; inDb; i++){ Btree *p; p = db->aDb[i].pBt; if( p && p->sharable && (p->wantToLock==0 || !sqlite3_mutex_held(p->pBt->mutex)) ){ return 0; } } return 1; } #endif /* NDEBUG */ #ifndef NDEBUG /* ** Return true if the correct mutexes are held for accessing the ** db->aDb[iDb].pSchema structure. The mutexes required for schema ** access are: ** ** (1) The mutex on db ** (2) if iDb!=1, then the mutex on db->aDb[iDb].pBt. ** ** If pSchema is not NULL, then iDb is computed from pSchema and ** db using sqlite3SchemaToIndex(). */ SQLITE_PRIVATE int sqlite3SchemaMutexHeld(sqlite3 *db, int iDb, Schema *pSchema){ Btree *p; assert( db!=0 ); if( pSchema ) iDb = sqlite3SchemaToIndex(db, pSchema); assert( iDb>=0 && iDbnDb ); if( !sqlite3_mutex_held(db->mutex) ) return 0; if( iDb==1 ) return 1; p = db->aDb[iDb].pBt; assert( p!=0 ); return p->sharable==0 || p->locked==1; } #endif /* NDEBUG */ #else /* SQLITE_THREADSAFE>0 above. SQLITE_THREADSAFE==0 below */ /* ** The following are special cases for mutex enter routines for use ** in single threaded applications that use shared cache. Except for ** these two routines, all mutex operations are no-ops in that case and ** are null #defines in btree.h. ** ** If shared cache is disabled, then all btree mutex routines, including ** the ones below, are no-ops and are null #defines in btree.h. */ SQLITE_PRIVATE void sqlite3BtreeEnter(Btree *p){ p->pBt->db = p->db; } SQLITE_PRIVATE void sqlite3BtreeEnterAll(sqlite3 *db){ int i; for(i=0; inDb; i++){ Btree *p = db->aDb[i].pBt; if( p ){ p->pBt->db = p->db; } } } #endif /* if SQLITE_THREADSAFE */ #ifndef SQLITE_OMIT_INCRBLOB /* ** Enter a mutex on a Btree given a cursor owned by that Btree. ** ** These entry points are used by incremental I/O only. Enter() is required ** any time OMIT_SHARED_CACHE is not defined, regardless of whether or not ** the build is threadsafe. Leave() is only required by threadsafe builds. */ SQLITE_PRIVATE void sqlite3BtreeEnterCursor(BtCursor *pCur){ sqlite3BtreeEnter(pCur->pBtree); } # if SQLITE_THREADSAFE SQLITE_PRIVATE void sqlite3BtreeLeaveCursor(BtCursor *pCur){ sqlite3BtreeLeave(pCur->pBtree); } # endif #endif /* ifndef SQLITE_OMIT_INCRBLOB */ #endif /* ifndef SQLITE_OMIT_SHARED_CACHE */ /************** End of btmutex.c *********************************************/ /************** Begin file btree.c *******************************************/ /* ** 2004 April 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file implements an external (disk-based) database using BTrees. ** See the header comment on "btreeInt.h" for additional information. ** Including a description of file format and an overview of operation. */ /* #include "btreeInt.h" */ /* ** The header string that appears at the beginning of every ** SQLite database. */ static const char zMagicHeader[] = SQLITE_FILE_HEADER; /* ** Set this global variable to 1 to enable tracing using the TRACE ** macro. */ #if 0 int sqlite3BtreeTrace=1; /* True to enable tracing */ # define TRACE(X) if(sqlite3BtreeTrace){printf X;fflush(stdout);} #else # define TRACE(X) #endif /* ** Extract a 2-byte big-endian integer from an array of unsigned bytes. ** But if the value is zero, make it 65536. ** ** This routine is used to extract the "offset to cell content area" value ** from the header of a btree page. If the page size is 65536 and the page ** is empty, the offset should be 65536, but the 2-byte value stores zero. ** This routine makes the necessary adjustment to 65536. */ #define get2byteNotZero(X) (((((int)get2byte(X))-1)&0xffff)+1) /* ** Values passed as the 5th argument to allocateBtreePage() */ #define BTALLOC_ANY 0 /* Allocate any page */ #define BTALLOC_EXACT 1 /* Allocate exact page if possible */ #define BTALLOC_LE 2 /* Allocate any page <= the parameter */ /* ** Macro IfNotOmitAV(x) returns (x) if SQLITE_OMIT_AUTOVACUUM is not ** defined, or 0 if it is. For example: ** ** bIncrVacuum = IfNotOmitAV(pBtShared->incrVacuum); */ #ifndef SQLITE_OMIT_AUTOVACUUM #define IfNotOmitAV(expr) (expr) #else #define IfNotOmitAV(expr) 0 #endif #ifndef SQLITE_OMIT_SHARED_CACHE /* ** A list of BtShared objects that are eligible for participation ** in shared cache. This variable has file scope during normal builds, ** but the test harness needs to access it so we make it global for ** test builds. ** ** Access to this variable is protected by SQLITE_MUTEX_STATIC_MAIN. */ #ifdef SQLITE_TEST SQLITE_PRIVATE BtShared *SQLITE_WSD sqlite3SharedCacheList = 0; #else static BtShared *SQLITE_WSD sqlite3SharedCacheList = 0; #endif #endif /* SQLITE_OMIT_SHARED_CACHE */ #ifndef SQLITE_OMIT_SHARED_CACHE /* ** Enable or disable the shared pager and schema features. ** ** This routine has no effect on existing database connections. ** The shared cache setting effects only future calls to ** sqlite3_open(), sqlite3_open16(), or sqlite3_open_v2(). */ SQLITE_API int sqlite3_enable_shared_cache(int enable){ sqlite3GlobalConfig.sharedCacheEnabled = enable; return SQLITE_OK; } #endif #ifdef SQLITE_OMIT_SHARED_CACHE /* ** The functions querySharedCacheTableLock(), setSharedCacheTableLock(), ** and clearAllSharedCacheTableLocks() ** manipulate entries in the BtShared.pLock linked list used to store ** shared-cache table level locks. If the library is compiled with the ** shared-cache feature disabled, then there is only ever one user ** of each BtShared structure and so this locking is not necessary. ** So define the lock related functions as no-ops. */ #define querySharedCacheTableLock(a,b,c) SQLITE_OK #define setSharedCacheTableLock(a,b,c) SQLITE_OK #define clearAllSharedCacheTableLocks(a) #define downgradeAllSharedCacheTableLocks(a) #define hasSharedCacheTableLock(a,b,c,d) 1 #define hasReadConflicts(a, b) 0 #endif /* ** Implementation of the SQLITE_CORRUPT_PAGE() macro. Takes a single ** (MemPage*) as an argument. The (MemPage*) must not be NULL. ** ** If SQLITE_DEBUG is not defined, then this macro is equivalent to ** SQLITE_CORRUPT_BKPT. Or, if SQLITE_DEBUG is set, then the log message ** normally produced as a side-effect of SQLITE_CORRUPT_BKPT is augmented ** with the page number and filename associated with the (MemPage*). */ #ifdef SQLITE_DEBUG int corruptPageError(int lineno, MemPage *p){ char *zMsg; sqlite3BeginBenignMalloc(); zMsg = sqlite3_mprintf("database corruption page %d of %s", (int)p->pgno, sqlite3PagerFilename(p->pBt->pPager, 0) ); sqlite3EndBenignMalloc(); if( zMsg ){ sqlite3ReportError(SQLITE_CORRUPT, lineno, zMsg); } sqlite3_free(zMsg); return SQLITE_CORRUPT_BKPT; } # define SQLITE_CORRUPT_PAGE(pMemPage) corruptPageError(__LINE__, pMemPage) #else # define SQLITE_CORRUPT_PAGE(pMemPage) SQLITE_CORRUPT_PGNO(pMemPage->pgno) #endif #ifndef SQLITE_OMIT_SHARED_CACHE #ifdef SQLITE_DEBUG /* **** This function is only used as part of an assert() statement. *** ** ** Check to see if pBtree holds the required locks to read or write to the ** table with root page iRoot. Return 1 if it does and 0 if not. ** ** For example, when writing to a table with root-page iRoot via ** Btree connection pBtree: ** ** assert( hasSharedCacheTableLock(pBtree, iRoot, 0, WRITE_LOCK) ); ** ** When writing to an index that resides in a sharable database, the ** caller should have first obtained a lock specifying the root page of ** the corresponding table. This makes things a bit more complicated, ** as this module treats each table as a separate structure. To determine ** the table corresponding to the index being written, this ** function has to search through the database schema. ** ** Instead of a lock on the table/index rooted at page iRoot, the caller may ** hold a write-lock on the schema table (root page 1). This is also ** acceptable. */ static int hasSharedCacheTableLock( Btree *pBtree, /* Handle that must hold lock */ Pgno iRoot, /* Root page of b-tree */ int isIndex, /* True if iRoot is the root of an index b-tree */ int eLockType /* Required lock type (READ_LOCK or WRITE_LOCK) */ ){ Schema *pSchema = (Schema *)pBtree->pBt->pSchema; Pgno iTab = 0; BtLock *pLock; /* If this database is not shareable, or if the client is reading ** and has the read-uncommitted flag set, then no lock is required. ** Return true immediately. */ if( (pBtree->sharable==0) || (eLockType==READ_LOCK && (pBtree->db->flags & SQLITE_ReadUncommit)) ){ return 1; } /* If the client is reading or writing an index and the schema is ** not loaded, then it is too difficult to actually check to see if ** the correct locks are held. So do not bother - just return true. ** This case does not come up very often anyhow. */ if( isIndex && (!pSchema || (pSchema->schemaFlags&DB_SchemaLoaded)==0) ){ return 1; } /* Figure out the root-page that the lock should be held on. For table ** b-trees, this is just the root page of the b-tree being read or ** written. For index b-trees, it is the root page of the associated ** table. */ if( isIndex ){ HashElem *p; int bSeen = 0; for(p=sqliteHashFirst(&pSchema->idxHash); p; p=sqliteHashNext(p)){ Index *pIdx = (Index *)sqliteHashData(p); if( pIdx->tnum==(int)iRoot ){ if( bSeen ){ /* Two or more indexes share the same root page. There must ** be imposter tables. So just return true. The assert is not ** useful in that case. */ return 1; } iTab = pIdx->pTable->tnum; bSeen = 1; } } }else{ iTab = iRoot; } /* Search for the required lock. Either a write-lock on root-page iTab, a ** write-lock on the schema table, or (if the client is reading) a ** read-lock on iTab will suffice. Return 1 if any of these are found. */ for(pLock=pBtree->pBt->pLock; pLock; pLock=pLock->pNext){ if( pLock->pBtree==pBtree && (pLock->iTable==iTab || (pLock->eLock==WRITE_LOCK && pLock->iTable==1)) && pLock->eLock>=eLockType ){ return 1; } } /* Failed to find the required lock. */ return 0; } #endif /* SQLITE_DEBUG */ #ifdef SQLITE_DEBUG /* **** This function may be used as part of assert() statements only. **** ** ** Return true if it would be illegal for pBtree to write into the ** table or index rooted at iRoot because other shared connections are ** simultaneously reading that same table or index. ** ** It is illegal for pBtree to write if some other Btree object that ** shares the same BtShared object is currently reading or writing ** the iRoot table. Except, if the other Btree object has the ** read-uncommitted flag set, then it is OK for the other object to ** have a read cursor. ** ** For example, before writing to any part of the table or index ** rooted at page iRoot, one should call: ** ** assert( !hasReadConflicts(pBtree, iRoot) ); */ static int hasReadConflicts(Btree *pBtree, Pgno iRoot){ BtCursor *p; for(p=pBtree->pBt->pCursor; p; p=p->pNext){ if( p->pgnoRoot==iRoot && p->pBtree!=pBtree && 0==(p->pBtree->db->flags & SQLITE_ReadUncommit) ){ return 1; } } return 0; } #endif /* #ifdef SQLITE_DEBUG */ /* ** Query to see if Btree handle p may obtain a lock of type eLock ** (READ_LOCK or WRITE_LOCK) on the table with root-page iTab. Return ** SQLITE_OK if the lock may be obtained (by calling ** setSharedCacheTableLock()), or SQLITE_LOCKED if not. */ static int querySharedCacheTableLock(Btree *p, Pgno iTab, u8 eLock){ BtShared *pBt = p->pBt; BtLock *pIter; assert( sqlite3BtreeHoldsMutex(p) ); assert( eLock==READ_LOCK || eLock==WRITE_LOCK ); assert( p->db!=0 ); assert( !(p->db->flags&SQLITE_ReadUncommit)||eLock==WRITE_LOCK||iTab==1 ); /* If requesting a write-lock, then the Btree must have an open write ** transaction on this file. And, obviously, for this to be so there ** must be an open write transaction on the file itself. */ assert( eLock==READ_LOCK || (p==pBt->pWriter && p->inTrans==TRANS_WRITE) ); assert( eLock==READ_LOCK || pBt->inTransaction==TRANS_WRITE ); /* This routine is a no-op if the shared-cache is not enabled */ if( !p->sharable ){ return SQLITE_OK; } /* If some other connection is holding an exclusive lock, the ** requested lock may not be obtained. */ if( pBt->pWriter!=p && (pBt->btsFlags & BTS_EXCLUSIVE)!=0 ){ sqlite3ConnectionBlocked(p->db, pBt->pWriter->db); return SQLITE_LOCKED_SHAREDCACHE; } for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){ /* The condition (pIter->eLock!=eLock) in the following if(...) ** statement is a simplification of: ** ** (eLock==WRITE_LOCK || pIter->eLock==WRITE_LOCK) ** ** since we know that if eLock==WRITE_LOCK, then no other connection ** may hold a WRITE_LOCK on any table in this file (since there can ** only be a single writer). */ assert( pIter->eLock==READ_LOCK || pIter->eLock==WRITE_LOCK ); assert( eLock==READ_LOCK || pIter->pBtree==p || pIter->eLock==READ_LOCK); if( pIter->pBtree!=p && pIter->iTable==iTab && pIter->eLock!=eLock ){ sqlite3ConnectionBlocked(p->db, pIter->pBtree->db); if( eLock==WRITE_LOCK ){ assert( p==pBt->pWriter ); pBt->btsFlags |= BTS_PENDING; } return SQLITE_LOCKED_SHAREDCACHE; } } return SQLITE_OK; } #endif /* !SQLITE_OMIT_SHARED_CACHE */ #ifndef SQLITE_OMIT_SHARED_CACHE /* ** Add a lock on the table with root-page iTable to the shared-btree used ** by Btree handle p. Parameter eLock must be either READ_LOCK or ** WRITE_LOCK. ** ** This function assumes the following: ** ** (a) The specified Btree object p is connected to a sharable ** database (one with the BtShared.sharable flag set), and ** ** (b) No other Btree objects hold a lock that conflicts ** with the requested lock (i.e. querySharedCacheTableLock() has ** already been called and returned SQLITE_OK). ** ** SQLITE_OK is returned if the lock is added successfully. SQLITE_NOMEM ** is returned if a malloc attempt fails. */ static int setSharedCacheTableLock(Btree *p, Pgno iTable, u8 eLock){ BtShared *pBt = p->pBt; BtLock *pLock = 0; BtLock *pIter; assert( sqlite3BtreeHoldsMutex(p) ); assert( eLock==READ_LOCK || eLock==WRITE_LOCK ); assert( p->db!=0 ); /* A connection with the read-uncommitted flag set will never try to ** obtain a read-lock using this function. The only read-lock obtained ** by a connection in read-uncommitted mode is on the sqlite_schema ** table, and that lock is obtained in BtreeBeginTrans(). */ assert( 0==(p->db->flags&SQLITE_ReadUncommit) || eLock==WRITE_LOCK ); /* This function should only be called on a sharable b-tree after it ** has been determined that no other b-tree holds a conflicting lock. */ assert( p->sharable ); assert( SQLITE_OK==querySharedCacheTableLock(p, iTable, eLock) ); /* First search the list for an existing lock on this table. */ for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){ if( pIter->iTable==iTable && pIter->pBtree==p ){ pLock = pIter; break; } } /* If the above search did not find a BtLock struct associating Btree p ** with table iTable, allocate one and link it into the list. */ if( !pLock ){ pLock = (BtLock *)sqlite3MallocZero(sizeof(BtLock)); if( !pLock ){ return SQLITE_NOMEM_BKPT; } pLock->iTable = iTable; pLock->pBtree = p; pLock->pNext = pBt->pLock; pBt->pLock = pLock; } /* Set the BtLock.eLock variable to the maximum of the current lock ** and the requested lock. This means if a write-lock was already held ** and a read-lock requested, we don't incorrectly downgrade the lock. */ assert( WRITE_LOCK>READ_LOCK ); if( eLock>pLock->eLock ){ pLock->eLock = eLock; } return SQLITE_OK; } #endif /* !SQLITE_OMIT_SHARED_CACHE */ #ifndef SQLITE_OMIT_SHARED_CACHE /* ** Release all the table locks (locks obtained via calls to ** the setSharedCacheTableLock() procedure) held by Btree object p. ** ** This function assumes that Btree p has an open read or write ** transaction. If it does not, then the BTS_PENDING flag ** may be incorrectly cleared. */ static void clearAllSharedCacheTableLocks(Btree *p){ BtShared *pBt = p->pBt; BtLock **ppIter = &pBt->pLock; assert( sqlite3BtreeHoldsMutex(p) ); assert( p->sharable || 0==*ppIter ); assert( p->inTrans>0 ); while( *ppIter ){ BtLock *pLock = *ppIter; assert( (pBt->btsFlags & BTS_EXCLUSIVE)==0 || pBt->pWriter==pLock->pBtree ); assert( pLock->pBtree->inTrans>=pLock->eLock ); if( pLock->pBtree==p ){ *ppIter = pLock->pNext; assert( pLock->iTable!=1 || pLock==&p->lock ); if( pLock->iTable!=1 ){ sqlite3_free(pLock); } }else{ ppIter = &pLock->pNext; } } assert( (pBt->btsFlags & BTS_PENDING)==0 || pBt->pWriter ); if( pBt->pWriter==p ){ pBt->pWriter = 0; pBt->btsFlags &= ~(BTS_EXCLUSIVE|BTS_PENDING); }else if( pBt->nTransaction==2 ){ /* This function is called when Btree p is concluding its ** transaction. If there currently exists a writer, and p is not ** that writer, then the number of locks held by connections other ** than the writer must be about to drop to zero. In this case ** set the BTS_PENDING flag to 0. ** ** If there is not currently a writer, then BTS_PENDING must ** be zero already. So this next line is harmless in that case. */ pBt->btsFlags &= ~BTS_PENDING; } } /* ** This function changes all write-locks held by Btree p into read-locks. */ static void downgradeAllSharedCacheTableLocks(Btree *p){ BtShared *pBt = p->pBt; if( pBt->pWriter==p ){ BtLock *pLock; pBt->pWriter = 0; pBt->btsFlags &= ~(BTS_EXCLUSIVE|BTS_PENDING); for(pLock=pBt->pLock; pLock; pLock=pLock->pNext){ assert( pLock->eLock==READ_LOCK || pLock->pBtree==p ); pLock->eLock = READ_LOCK; } } } #endif /* SQLITE_OMIT_SHARED_CACHE */ static void releasePage(MemPage *pPage); /* Forward reference */ static void releasePageOne(MemPage *pPage); /* Forward reference */ static void releasePageNotNull(MemPage *pPage); /* Forward reference */ /* ***** This routine is used inside of assert() only **** ** ** Verify that the cursor holds the mutex on its BtShared */ #ifdef SQLITE_DEBUG static int cursorHoldsMutex(BtCursor *p){ return sqlite3_mutex_held(p->pBt->mutex); } /* Verify that the cursor and the BtShared agree about what is the current ** database connetion. This is important in shared-cache mode. If the database ** connection pointers get out-of-sync, it is possible for routines like ** btreeInitPage() to reference an stale connection pointer that references a ** a connection that has already closed. This routine is used inside assert() ** statements only and for the purpose of double-checking that the btree code ** does keep the database connection pointers up-to-date. */ static int cursorOwnsBtShared(BtCursor *p){ assert( cursorHoldsMutex(p) ); return (p->pBtree->db==p->pBt->db); } #endif /* ** Invalidate the overflow cache of the cursor passed as the first argument. ** on the shared btree structure pBt. */ #define invalidateOverflowCache(pCur) (pCur->curFlags &= ~BTCF_ValidOvfl) /* ** Invalidate the overflow page-list cache for all cursors opened ** on the shared btree structure pBt. */ static void invalidateAllOverflowCache(BtShared *pBt){ BtCursor *p; assert( sqlite3_mutex_held(pBt->mutex) ); for(p=pBt->pCursor; p; p=p->pNext){ invalidateOverflowCache(p); } } #ifndef SQLITE_OMIT_INCRBLOB /* ** This function is called before modifying the contents of a table ** to invalidate any incrblob cursors that are open on the ** row or one of the rows being modified. ** ** If argument isClearTable is true, then the entire contents of the ** table is about to be deleted. In this case invalidate all incrblob ** cursors open on any row within the table with root-page pgnoRoot. ** ** Otherwise, if argument isClearTable is false, then the row with ** rowid iRow is being replaced or deleted. In this case invalidate ** only those incrblob cursors open on that specific row. */ static void invalidateIncrblobCursors( Btree *pBtree, /* The database file to check */ Pgno pgnoRoot, /* The table that might be changing */ i64 iRow, /* The rowid that might be changing */ int isClearTable /* True if all rows are being deleted */ ){ BtCursor *p; if( pBtree->hasIncrblobCur==0 ) return; assert( sqlite3BtreeHoldsMutex(pBtree) ); pBtree->hasIncrblobCur = 0; for(p=pBtree->pBt->pCursor; p; p=p->pNext){ if( (p->curFlags & BTCF_Incrblob)!=0 ){ pBtree->hasIncrblobCur = 1; if( p->pgnoRoot==pgnoRoot && (isClearTable || p->info.nKey==iRow) ){ p->eState = CURSOR_INVALID; } } } } #else /* Stub function when INCRBLOB is omitted */ #define invalidateIncrblobCursors(w,x,y,z) #endif /* SQLITE_OMIT_INCRBLOB */ /* ** Set bit pgno of the BtShared.pHasContent bitvec. This is called ** when a page that previously contained data becomes a free-list leaf ** page. ** ** The BtShared.pHasContent bitvec exists to work around an obscure ** bug caused by the interaction of two useful IO optimizations surrounding ** free-list leaf pages: ** ** 1) When all data is deleted from a page and the page becomes ** a free-list leaf page, the page is not written to the database ** (as free-list leaf pages contain no meaningful data). Sometimes ** such a page is not even journalled (as it will not be modified, ** why bother journalling it?). ** ** 2) When a free-list leaf page is reused, its content is not read ** from the database or written to the journal file (why should it ** be, if it is not at all meaningful?). ** ** By themselves, these optimizations work fine and provide a handy ** performance boost to bulk delete or insert operations. However, if ** a page is moved to the free-list and then reused within the same ** transaction, a problem comes up. If the page is not journalled when ** it is moved to the free-list and it is also not journalled when it ** is extracted from the free-list and reused, then the original data ** may be lost. In the event of a rollback, it may not be possible ** to restore the database to its original configuration. ** ** The solution is the BtShared.pHasContent bitvec. Whenever a page is ** moved to become a free-list leaf page, the corresponding bit is ** set in the bitvec. Whenever a leaf page is extracted from the free-list, ** optimization 2 above is omitted if the corresponding bit is already ** set in BtShared.pHasContent. The contents of the bitvec are cleared ** at the end of every transaction. */ static int btreeSetHasContent(BtShared *pBt, Pgno pgno){ int rc = SQLITE_OK; if( !pBt->pHasContent ){ assert( pgno<=pBt->nPage ); pBt->pHasContent = sqlite3BitvecCreate(pBt->nPage); if( !pBt->pHasContent ){ rc = SQLITE_NOMEM_BKPT; } } if( rc==SQLITE_OK && pgno<=sqlite3BitvecSize(pBt->pHasContent) ){ rc = sqlite3BitvecSet(pBt->pHasContent, pgno); } return rc; } /* ** Query the BtShared.pHasContent vector. ** ** This function is called when a free-list leaf page is removed from the ** free-list for reuse. It returns false if it is safe to retrieve the ** page from the pager layer with the 'no-content' flag set. True otherwise. */ static int btreeGetHasContent(BtShared *pBt, Pgno pgno){ Bitvec *p = pBt->pHasContent; return p && (pgno>sqlite3BitvecSize(p) || sqlite3BitvecTestNotNull(p, pgno)); } /* ** Clear (destroy) the BtShared.pHasContent bitvec. This should be ** invoked at the conclusion of each write-transaction. */ static void btreeClearHasContent(BtShared *pBt){ sqlite3BitvecDestroy(pBt->pHasContent); pBt->pHasContent = 0; } /* ** Release all of the apPage[] pages for a cursor. */ static void btreeReleaseAllCursorPages(BtCursor *pCur){ int i; if( pCur->iPage>=0 ){ for(i=0; iiPage; i++){ releasePageNotNull(pCur->apPage[i]); } releasePageNotNull(pCur->pPage); pCur->iPage = -1; } } /* ** The cursor passed as the only argument must point to a valid entry ** when this function is called (i.e. have eState==CURSOR_VALID). This ** function saves the current cursor key in variables pCur->nKey and ** pCur->pKey. SQLITE_OK is returned if successful or an SQLite error ** code otherwise. ** ** If the cursor is open on an intkey table, then the integer key ** (the rowid) is stored in pCur->nKey and pCur->pKey is left set to ** NULL. If the cursor is open on a non-intkey table, then pCur->pKey is ** set to point to a malloced buffer pCur->nKey bytes in size containing ** the key. */ static int saveCursorKey(BtCursor *pCur){ int rc = SQLITE_OK; assert( CURSOR_VALID==pCur->eState ); assert( 0==pCur->pKey ); assert( cursorHoldsMutex(pCur) ); if( pCur->curIntKey ){ /* Only the rowid is required for a table btree */ pCur->nKey = sqlite3BtreeIntegerKey(pCur); }else{ /* For an index btree, save the complete key content. It is possible ** that the current key is corrupt. In that case, it is possible that ** the sqlite3VdbeRecordUnpack() function may overread the buffer by ** up to the size of 1 varint plus 1 8-byte value when the cursor ** position is restored. Hence the 17 bytes of padding allocated ** below. */ void *pKey; pCur->nKey = sqlite3BtreePayloadSize(pCur); pKey = sqlite3Malloc( pCur->nKey + 9 + 8 ); if( pKey ){ rc = sqlite3BtreePayload(pCur, 0, (int)pCur->nKey, pKey); if( rc==SQLITE_OK ){ memset(((u8*)pKey)+pCur->nKey, 0, 9+8); pCur->pKey = pKey; }else{ sqlite3_free(pKey); } }else{ rc = SQLITE_NOMEM_BKPT; } } assert( !pCur->curIntKey || !pCur->pKey ); return rc; } /* ** Save the current cursor position in the variables BtCursor.nKey ** and BtCursor.pKey. The cursor's state is set to CURSOR_REQUIRESEEK. ** ** The caller must ensure that the cursor is valid (has eState==CURSOR_VALID) ** prior to calling this routine. */ static int saveCursorPosition(BtCursor *pCur){ int rc; assert( CURSOR_VALID==pCur->eState || CURSOR_SKIPNEXT==pCur->eState ); assert( 0==pCur->pKey ); assert( cursorHoldsMutex(pCur) ); if( pCur->curFlags & BTCF_Pinned ){ return SQLITE_CONSTRAINT_PINNED; } if( pCur->eState==CURSOR_SKIPNEXT ){ pCur->eState = CURSOR_VALID; }else{ pCur->skipNext = 0; } rc = saveCursorKey(pCur); if( rc==SQLITE_OK ){ btreeReleaseAllCursorPages(pCur); pCur->eState = CURSOR_REQUIRESEEK; } pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl|BTCF_AtLast); return rc; } /* Forward reference */ static int SQLITE_NOINLINE saveCursorsOnList(BtCursor*,Pgno,BtCursor*); /* ** Save the positions of all cursors (except pExcept) that are open on ** the table with root-page iRoot. "Saving the cursor position" means that ** the location in the btree is remembered in such a way that it can be ** moved back to the same spot after the btree has been modified. This ** routine is called just before cursor pExcept is used to modify the ** table, for example in BtreeDelete() or BtreeInsert(). ** ** If there are two or more cursors on the same btree, then all such ** cursors should have their BTCF_Multiple flag set. The btreeCursor() ** routine enforces that rule. This routine only needs to be called in ** the uncommon case when pExpect has the BTCF_Multiple flag set. ** ** If pExpect!=NULL and if no other cursors are found on the same root-page, ** then the BTCF_Multiple flag on pExpect is cleared, to avoid another ** pointless call to this routine. ** ** Implementation note: This routine merely checks to see if any cursors ** need to be saved. It calls out to saveCursorsOnList() in the (unusual) ** event that cursors are in need to being saved. */ static int saveAllCursors(BtShared *pBt, Pgno iRoot, BtCursor *pExcept){ BtCursor *p; assert( sqlite3_mutex_held(pBt->mutex) ); assert( pExcept==0 || pExcept->pBt==pBt ); for(p=pBt->pCursor; p; p=p->pNext){ if( p!=pExcept && (0==iRoot || p->pgnoRoot==iRoot) ) break; } if( p ) return saveCursorsOnList(p, iRoot, pExcept); if( pExcept ) pExcept->curFlags &= ~BTCF_Multiple; return SQLITE_OK; } /* This helper routine to saveAllCursors does the actual work of saving ** the cursors if and when a cursor is found that actually requires saving. ** The common case is that no cursors need to be saved, so this routine is ** broken out from its caller to avoid unnecessary stack pointer movement. */ static int SQLITE_NOINLINE saveCursorsOnList( BtCursor *p, /* The first cursor that needs saving */ Pgno iRoot, /* Only save cursor with this iRoot. Save all if zero */ BtCursor *pExcept /* Do not save this cursor */ ){ do{ if( p!=pExcept && (0==iRoot || p->pgnoRoot==iRoot) ){ if( p->eState==CURSOR_VALID || p->eState==CURSOR_SKIPNEXT ){ int rc = saveCursorPosition(p); if( SQLITE_OK!=rc ){ return rc; } }else{ testcase( p->iPage>=0 ); btreeReleaseAllCursorPages(p); } } p = p->pNext; }while( p ); return SQLITE_OK; } /* ** Clear the current cursor position. */ SQLITE_PRIVATE void sqlite3BtreeClearCursor(BtCursor *pCur){ assert( cursorHoldsMutex(pCur) ); sqlite3_free(pCur->pKey); pCur->pKey = 0; pCur->eState = CURSOR_INVALID; } /* ** In this version of BtreeMoveto, pKey is a packed index record ** such as is generated by the OP_MakeRecord opcode. Unpack the ** record and then call BtreeMovetoUnpacked() to do the work. */ static int btreeMoveto( BtCursor *pCur, /* Cursor open on the btree to be searched */ const void *pKey, /* Packed key if the btree is an index */ i64 nKey, /* Integer key for tables. Size of pKey for indices */ int bias, /* Bias search to the high end */ int *pRes /* Write search results here */ ){ int rc; /* Status code */ UnpackedRecord *pIdxKey; /* Unpacked index key */ if( pKey ){ KeyInfo *pKeyInfo = pCur->pKeyInfo; assert( nKey==(i64)(int)nKey ); pIdxKey = sqlite3VdbeAllocUnpackedRecord(pKeyInfo); if( pIdxKey==0 ) return SQLITE_NOMEM_BKPT; sqlite3VdbeRecordUnpack(pKeyInfo, (int)nKey, pKey, pIdxKey); if( pIdxKey->nField==0 || pIdxKey->nField>pKeyInfo->nAllField ){ rc = SQLITE_CORRUPT_BKPT; goto moveto_done; } }else{ pIdxKey = 0; } rc = sqlite3BtreeMovetoUnpacked(pCur, pIdxKey, nKey, bias, pRes); moveto_done: if( pIdxKey ){ sqlite3DbFree(pCur->pKeyInfo->db, pIdxKey); } return rc; } /* ** Restore the cursor to the position it was in (or as close to as possible) ** when saveCursorPosition() was called. Note that this call deletes the ** saved position info stored by saveCursorPosition(), so there can be ** at most one effective restoreCursorPosition() call after each ** saveCursorPosition(). */ static int btreeRestoreCursorPosition(BtCursor *pCur){ int rc; int skipNext = 0; assert( cursorOwnsBtShared(pCur) ); assert( pCur->eState>=CURSOR_REQUIRESEEK ); if( pCur->eState==CURSOR_FAULT ){ return pCur->skipNext; } pCur->eState = CURSOR_INVALID; if( sqlite3FaultSim(410) ){ rc = SQLITE_IOERR; }else{ rc = btreeMoveto(pCur, pCur->pKey, pCur->nKey, 0, &skipNext); } if( rc==SQLITE_OK ){ sqlite3_free(pCur->pKey); pCur->pKey = 0; assert( pCur->eState==CURSOR_VALID || pCur->eState==CURSOR_INVALID ); if( skipNext ) pCur->skipNext = skipNext; if( pCur->skipNext && pCur->eState==CURSOR_VALID ){ pCur->eState = CURSOR_SKIPNEXT; } } return rc; } #define restoreCursorPosition(p) \ (p->eState>=CURSOR_REQUIRESEEK ? \ btreeRestoreCursorPosition(p) : \ SQLITE_OK) /* ** Determine whether or not a cursor has moved from the position where ** it was last placed, or has been invalidated for any other reason. ** Cursors can move when the row they are pointing at is deleted out ** from under them, for example. Cursor might also move if a btree ** is rebalanced. ** ** Calling this routine with a NULL cursor pointer returns false. ** ** Use the separate sqlite3BtreeCursorRestore() routine to restore a cursor ** back to where it ought to be if this routine returns true. */ SQLITE_PRIVATE int sqlite3BtreeCursorHasMoved(BtCursor *pCur){ assert( EIGHT_BYTE_ALIGNMENT(pCur) || pCur==sqlite3BtreeFakeValidCursor() ); assert( offsetof(BtCursor, eState)==0 ); assert( sizeof(pCur->eState)==1 ); return CURSOR_VALID != *(u8*)pCur; } /* ** Return a pointer to a fake BtCursor object that will always answer ** false to the sqlite3BtreeCursorHasMoved() routine above. The fake ** cursor returned must not be used with any other Btree interface. */ SQLITE_PRIVATE BtCursor *sqlite3BtreeFakeValidCursor(void){ static u8 fakeCursor = CURSOR_VALID; assert( offsetof(BtCursor, eState)==0 ); return (BtCursor*)&fakeCursor; } /* ** This routine restores a cursor back to its original position after it ** has been moved by some outside activity (such as a btree rebalance or ** a row having been deleted out from under the cursor). ** ** On success, the *pDifferentRow parameter is false if the cursor is left ** pointing at exactly the same row. *pDifferntRow is the row the cursor ** was pointing to has been deleted, forcing the cursor to point to some ** nearby row. ** ** This routine should only be called for a cursor that just returned ** TRUE from sqlite3BtreeCursorHasMoved(). */ SQLITE_PRIVATE int sqlite3BtreeCursorRestore(BtCursor *pCur, int *pDifferentRow){ int rc; assert( pCur!=0 ); assert( pCur->eState!=CURSOR_VALID ); rc = restoreCursorPosition(pCur); if( rc ){ *pDifferentRow = 1; return rc; } if( pCur->eState!=CURSOR_VALID ){ *pDifferentRow = 1; }else{ *pDifferentRow = 0; } return SQLITE_OK; } #ifdef SQLITE_ENABLE_CURSOR_HINTS /* ** Provide hints to the cursor. The particular hint given (and the type ** and number of the varargs parameters) is determined by the eHintType ** parameter. See the definitions of the BTREE_HINT_* macros for details. */ SQLITE_PRIVATE void sqlite3BtreeCursorHint(BtCursor *pCur, int eHintType, ...){ /* Used only by system that substitute their own storage engine */ } #endif /* ** Provide flag hints to the cursor. */ SQLITE_PRIVATE void sqlite3BtreeCursorHintFlags(BtCursor *pCur, unsigned x){ assert( x==BTREE_SEEK_EQ || x==BTREE_BULKLOAD || x==0 ); pCur->hints = x; } #ifndef SQLITE_OMIT_AUTOVACUUM /* ** Given a page number of a regular database page, return the page ** number for the pointer-map page that contains the entry for the ** input page number. ** ** Return 0 (not a valid page) for pgno==1 since there is ** no pointer map associated with page 1. The integrity_check logic ** requires that ptrmapPageno(*,1)!=1. */ static Pgno ptrmapPageno(BtShared *pBt, Pgno pgno){ int nPagesPerMapPage; Pgno iPtrMap, ret; assert( sqlite3_mutex_held(pBt->mutex) ); if( pgno<2 ) return 0; nPagesPerMapPage = (pBt->usableSize/5)+1; iPtrMap = (pgno-2)/nPagesPerMapPage; ret = (iPtrMap*nPagesPerMapPage) + 2; if( ret==PENDING_BYTE_PAGE(pBt) ){ ret++; } return ret; } /* ** Write an entry into the pointer map. ** ** This routine updates the pointer map entry for page number 'key' ** so that it maps to type 'eType' and parent page number 'pgno'. ** ** If *pRC is initially non-zero (non-SQLITE_OK) then this routine is ** a no-op. If an error occurs, the appropriate error code is written ** into *pRC. */ static void ptrmapPut(BtShared *pBt, Pgno key, u8 eType, Pgno parent, int *pRC){ DbPage *pDbPage; /* The pointer map page */ u8 *pPtrmap; /* The pointer map data */ Pgno iPtrmap; /* The pointer map page number */ int offset; /* Offset in pointer map page */ int rc; /* Return code from subfunctions */ if( *pRC ) return; assert( sqlite3_mutex_held(pBt->mutex) ); /* The super-journal page number must never be used as a pointer map page */ assert( 0==PTRMAP_ISPAGE(pBt, PENDING_BYTE_PAGE(pBt)) ); assert( pBt->autoVacuum ); if( key==0 ){ *pRC = SQLITE_CORRUPT_BKPT; return; } iPtrmap = PTRMAP_PAGENO(pBt, key); rc = sqlite3PagerGet(pBt->pPager, iPtrmap, &pDbPage, 0); if( rc!=SQLITE_OK ){ *pRC = rc; return; } if( ((char*)sqlite3PagerGetExtra(pDbPage))[0]!=0 ){ /* The first byte of the extra data is the MemPage.isInit byte. ** If that byte is set, it means this page is also being used ** as a btree page. */ *pRC = SQLITE_CORRUPT_BKPT; goto ptrmap_exit; } offset = PTRMAP_PTROFFSET(iPtrmap, key); if( offset<0 ){ *pRC = SQLITE_CORRUPT_BKPT; goto ptrmap_exit; } assert( offset <= (int)pBt->usableSize-5 ); pPtrmap = (u8 *)sqlite3PagerGetData(pDbPage); if( eType!=pPtrmap[offset] || get4byte(&pPtrmap[offset+1])!=parent ){ TRACE(("PTRMAP_UPDATE: %d->(%d,%d)\n", key, eType, parent)); *pRC= rc = sqlite3PagerWrite(pDbPage); if( rc==SQLITE_OK ){ pPtrmap[offset] = eType; put4byte(&pPtrmap[offset+1], parent); } } ptrmap_exit: sqlite3PagerUnref(pDbPage); } /* ** Read an entry from the pointer map. ** ** This routine retrieves the pointer map entry for page 'key', writing ** the type and parent page number to *pEType and *pPgno respectively. ** An error code is returned if something goes wrong, otherwise SQLITE_OK. */ static int ptrmapGet(BtShared *pBt, Pgno key, u8 *pEType, Pgno *pPgno){ DbPage *pDbPage; /* The pointer map page */ int iPtrmap; /* Pointer map page index */ u8 *pPtrmap; /* Pointer map page data */ int offset; /* Offset of entry in pointer map */ int rc; assert( sqlite3_mutex_held(pBt->mutex) ); iPtrmap = PTRMAP_PAGENO(pBt, key); rc = sqlite3PagerGet(pBt->pPager, iPtrmap, &pDbPage, 0); if( rc!=0 ){ return rc; } pPtrmap = (u8 *)sqlite3PagerGetData(pDbPage); offset = PTRMAP_PTROFFSET(iPtrmap, key); if( offset<0 ){ sqlite3PagerUnref(pDbPage); return SQLITE_CORRUPT_BKPT; } assert( offset <= (int)pBt->usableSize-5 ); assert( pEType!=0 ); *pEType = pPtrmap[offset]; if( pPgno ) *pPgno = get4byte(&pPtrmap[offset+1]); sqlite3PagerUnref(pDbPage); if( *pEType<1 || *pEType>5 ) return SQLITE_CORRUPT_PGNO(iPtrmap); return SQLITE_OK; } #else /* if defined SQLITE_OMIT_AUTOVACUUM */ #define ptrmapPut(w,x,y,z,rc) #define ptrmapGet(w,x,y,z) SQLITE_OK #define ptrmapPutOvflPtr(x, y, z, rc) #endif /* ** Given a btree page and a cell index (0 means the first cell on ** the page, 1 means the second cell, and so forth) return a pointer ** to the cell content. ** ** findCellPastPtr() does the same except it skips past the initial ** 4-byte child pointer found on interior pages, if there is one. ** ** This routine works only for pages that do not contain overflow cells. */ #define findCell(P,I) \ ((P)->aData + ((P)->maskPage & get2byteAligned(&(P)->aCellIdx[2*(I)]))) #define findCellPastPtr(P,I) \ ((P)->aDataOfst + ((P)->maskPage & get2byteAligned(&(P)->aCellIdx[2*(I)]))) /* ** This is common tail processing for btreeParseCellPtr() and ** btreeParseCellPtrIndex() for the case when the cell does not fit entirely ** on a single B-tree page. Make necessary adjustments to the CellInfo ** structure. */ static SQLITE_NOINLINE void btreeParseCellAdjustSizeForOverflow( MemPage *pPage, /* Page containing the cell */ u8 *pCell, /* Pointer to the cell text. */ CellInfo *pInfo /* Fill in this structure */ ){ /* If the payload will not fit completely on the local page, we have ** to decide how much to store locally and how much to spill onto ** overflow pages. The strategy is to minimize the amount of unused ** space on overflow pages while keeping the amount of local storage ** in between minLocal and maxLocal. ** ** Warning: changing the way overflow payload is distributed in any ** way will result in an incompatible file format. */ int minLocal; /* Minimum amount of payload held locally */ int maxLocal; /* Maximum amount of payload held locally */ int surplus; /* Overflow payload available for local storage */ minLocal = pPage->minLocal; maxLocal = pPage->maxLocal; surplus = minLocal + (pInfo->nPayload - minLocal)%(pPage->pBt->usableSize-4); testcase( surplus==maxLocal ); testcase( surplus==maxLocal+1 ); if( surplus <= maxLocal ){ pInfo->nLocal = (u16)surplus; }else{ pInfo->nLocal = (u16)minLocal; } pInfo->nSize = (u16)(&pInfo->pPayload[pInfo->nLocal] - pCell) + 4; } /* ** The following routines are implementations of the MemPage.xParseCell() ** method. ** ** Parse a cell content block and fill in the CellInfo structure. ** ** btreeParseCellPtr() => table btree leaf nodes ** btreeParseCellNoPayload() => table btree internal nodes ** btreeParseCellPtrIndex() => index btree nodes ** ** There is also a wrapper function btreeParseCell() that works for ** all MemPage types and that references the cell by index rather than ** by pointer. */ static void btreeParseCellPtrNoPayload( MemPage *pPage, /* Page containing the cell */ u8 *pCell, /* Pointer to the cell text. */ CellInfo *pInfo /* Fill in this structure */ ){ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->leaf==0 ); assert( pPage->childPtrSize==4 ); #ifndef SQLITE_DEBUG UNUSED_PARAMETER(pPage); #endif pInfo->nSize = 4 + getVarint(&pCell[4], (u64*)&pInfo->nKey); pInfo->nPayload = 0; pInfo->nLocal = 0; pInfo->pPayload = 0; return; } static void btreeParseCellPtr( MemPage *pPage, /* Page containing the cell */ u8 *pCell, /* Pointer to the cell text. */ CellInfo *pInfo /* Fill in this structure */ ){ u8 *pIter; /* For scanning through pCell */ u32 nPayload; /* Number of bytes of cell payload */ u64 iKey; /* Extracted Key value */ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->leaf==0 || pPage->leaf==1 ); assert( pPage->intKeyLeaf ); assert( pPage->childPtrSize==0 ); pIter = pCell; /* The next block of code is equivalent to: ** ** pIter += getVarint32(pIter, nPayload); ** ** The code is inlined to avoid a function call. */ nPayload = *pIter; if( nPayload>=0x80 ){ u8 *pEnd = &pIter[8]; nPayload &= 0x7f; do{ nPayload = (nPayload<<7) | (*++pIter & 0x7f); }while( (*pIter)>=0x80 && pIternKey); ** ** The code is inlined to avoid a function call. */ iKey = *pIter; if( iKey>=0x80 ){ u8 *pEnd = &pIter[7]; iKey &= 0x7f; while(1){ iKey = (iKey<<7) | (*++pIter & 0x7f); if( (*pIter)<0x80 ) break; if( pIter>=pEnd ){ iKey = (iKey<<8) | *++pIter; break; } } } pIter++; pInfo->nKey = *(i64*)&iKey; pInfo->nPayload = nPayload; pInfo->pPayload = pIter; testcase( nPayload==pPage->maxLocal ); testcase( nPayload==pPage->maxLocal+1 ); if( nPayload<=pPage->maxLocal ){ /* This is the (easy) common case where the entire payload fits ** on the local page. No overflow is required. */ pInfo->nSize = nPayload + (u16)(pIter - pCell); if( pInfo->nSize<4 ) pInfo->nSize = 4; pInfo->nLocal = (u16)nPayload; }else{ btreeParseCellAdjustSizeForOverflow(pPage, pCell, pInfo); } } static void btreeParseCellPtrIndex( MemPage *pPage, /* Page containing the cell */ u8 *pCell, /* Pointer to the cell text. */ CellInfo *pInfo /* Fill in this structure */ ){ u8 *pIter; /* For scanning through pCell */ u32 nPayload; /* Number of bytes of cell payload */ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->leaf==0 || pPage->leaf==1 ); assert( pPage->intKeyLeaf==0 ); pIter = pCell + pPage->childPtrSize; nPayload = *pIter; if( nPayload>=0x80 ){ u8 *pEnd = &pIter[8]; nPayload &= 0x7f; do{ nPayload = (nPayload<<7) | (*++pIter & 0x7f); }while( *(pIter)>=0x80 && pIternKey = nPayload; pInfo->nPayload = nPayload; pInfo->pPayload = pIter; testcase( nPayload==pPage->maxLocal ); testcase( nPayload==pPage->maxLocal+1 ); if( nPayload<=pPage->maxLocal ){ /* This is the (easy) common case where the entire payload fits ** on the local page. No overflow is required. */ pInfo->nSize = nPayload + (u16)(pIter - pCell); if( pInfo->nSize<4 ) pInfo->nSize = 4; pInfo->nLocal = (u16)nPayload; }else{ btreeParseCellAdjustSizeForOverflow(pPage, pCell, pInfo); } } static void btreeParseCell( MemPage *pPage, /* Page containing the cell */ int iCell, /* The cell index. First cell is 0 */ CellInfo *pInfo /* Fill in this structure */ ){ pPage->xParseCell(pPage, findCell(pPage, iCell), pInfo); } /* ** The following routines are implementations of the MemPage.xCellSize ** method. ** ** Compute the total number of bytes that a Cell needs in the cell ** data area of the btree-page. The return number includes the cell ** data header and the local payload, but not any overflow page or ** the space used by the cell pointer. ** ** cellSizePtrNoPayload() => table internal nodes ** cellSizePtr() => all index nodes & table leaf nodes */ static u16 cellSizePtr(MemPage *pPage, u8 *pCell){ u8 *pIter = pCell + pPage->childPtrSize; /* For looping over bytes of pCell */ u8 *pEnd; /* End mark for a varint */ u32 nSize; /* Size value to return */ #ifdef SQLITE_DEBUG /* The value returned by this function should always be the same as ** the (CellInfo.nSize) value found by doing a full parse of the ** cell. If SQLITE_DEBUG is defined, an assert() at the bottom of ** this function verifies that this invariant is not violated. */ CellInfo debuginfo; pPage->xParseCell(pPage, pCell, &debuginfo); #endif nSize = *pIter; if( nSize>=0x80 ){ pEnd = &pIter[8]; nSize &= 0x7f; do{ nSize = (nSize<<7) | (*++pIter & 0x7f); }while( *(pIter)>=0x80 && pIterintKey ){ /* pIter now points at the 64-bit integer key value, a variable length ** integer. The following block moves pIter to point at the first byte ** past the end of the key value. */ pEnd = &pIter[9]; while( (*pIter++)&0x80 && pItermaxLocal ); testcase( nSize==pPage->maxLocal+1 ); if( nSize<=pPage->maxLocal ){ nSize += (u32)(pIter - pCell); if( nSize<4 ) nSize = 4; }else{ int minLocal = pPage->minLocal; nSize = minLocal + (nSize - minLocal) % (pPage->pBt->usableSize - 4); testcase( nSize==pPage->maxLocal ); testcase( nSize==pPage->maxLocal+1 ); if( nSize>pPage->maxLocal ){ nSize = minLocal; } nSize += 4 + (u16)(pIter - pCell); } assert( nSize==debuginfo.nSize || CORRUPT_DB ); return (u16)nSize; } static u16 cellSizePtrNoPayload(MemPage *pPage, u8 *pCell){ u8 *pIter = pCell + 4; /* For looping over bytes of pCell */ u8 *pEnd; /* End mark for a varint */ #ifdef SQLITE_DEBUG /* The value returned by this function should always be the same as ** the (CellInfo.nSize) value found by doing a full parse of the ** cell. If SQLITE_DEBUG is defined, an assert() at the bottom of ** this function verifies that this invariant is not violated. */ CellInfo debuginfo; pPage->xParseCell(pPage, pCell, &debuginfo); #else UNUSED_PARAMETER(pPage); #endif assert( pPage->childPtrSize==4 ); pEnd = pIter + 9; while( (*pIter++)&0x80 && pIterxCellSize(pPage, findCell(pPage, iCell)); } #endif #ifndef SQLITE_OMIT_AUTOVACUUM /* ** The cell pCell is currently part of page pSrc but will ultimately be part ** of pPage. (pSrc and pPager are often the same.) If pCell contains a ** pointer to an overflow page, insert an entry into the pointer-map for ** the overflow page that will be valid after pCell has been moved to pPage. */ static void ptrmapPutOvflPtr(MemPage *pPage, MemPage *pSrc, u8 *pCell,int *pRC){ CellInfo info; if( *pRC ) return; assert( pCell!=0 ); pPage->xParseCell(pPage, pCell, &info); if( info.nLocalaDataEnd, pCell, pCell+info.nLocal) ){ testcase( pSrc!=pPage ); *pRC = SQLITE_CORRUPT_BKPT; return; } ovfl = get4byte(&pCell[info.nSize-4]); ptrmapPut(pPage->pBt, ovfl, PTRMAP_OVERFLOW1, pPage->pgno, pRC); } } #endif /* ** Defragment the page given. This routine reorganizes cells within the ** page so that there are no free-blocks on the free-block list. ** ** Parameter nMaxFrag is the maximum amount of fragmented space that may be ** present in the page after this routine returns. ** ** EVIDENCE-OF: R-44582-60138 SQLite may from time to time reorganize a ** b-tree page so that there are no freeblocks or fragment bytes, all ** unused bytes are contained in the unallocated space region, and all ** cells are packed tightly at the end of the page. */ static int defragmentPage(MemPage *pPage, int nMaxFrag){ int i; /* Loop counter */ int pc; /* Address of the i-th cell */ int hdr; /* Offset to the page header */ int size; /* Size of a cell */ int usableSize; /* Number of usable bytes on a page */ int cellOffset; /* Offset to the cell pointer array */ int cbrk; /* Offset to the cell content area */ int nCell; /* Number of cells on the page */ unsigned char *data; /* The page data */ unsigned char *temp; /* Temp area for cell content */ unsigned char *src; /* Source of content */ int iCellFirst; /* First allowable cell index */ int iCellLast; /* Last possible cell index */ assert( sqlite3PagerIswriteable(pPage->pDbPage) ); assert( pPage->pBt!=0 ); assert( pPage->pBt->usableSize <= SQLITE_MAX_PAGE_SIZE ); assert( pPage->nOverflow==0 ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); temp = 0; src = data = pPage->aData; hdr = pPage->hdrOffset; cellOffset = pPage->cellOffset; nCell = pPage->nCell; assert( nCell==get2byte(&data[hdr+3]) || CORRUPT_DB ); iCellFirst = cellOffset + 2*nCell; usableSize = pPage->pBt->usableSize; /* This block handles pages with two or fewer free blocks and nMaxFrag ** or fewer fragmented bytes. In this case it is faster to move the ** two (or one) blocks of cells using memmove() and add the required ** offsets to each pointer in the cell-pointer array than it is to ** reconstruct the entire page. */ if( (int)data[hdr+7]<=nMaxFrag ){ int iFree = get2byte(&data[hdr+1]); if( iFree>usableSize-4 ) return SQLITE_CORRUPT_PAGE(pPage); if( iFree ){ int iFree2 = get2byte(&data[iFree]); if( iFree2>usableSize-4 ) return SQLITE_CORRUPT_PAGE(pPage); if( 0==iFree2 || (data[iFree2]==0 && data[iFree2+1]==0) ){ u8 *pEnd = &data[cellOffset + nCell*2]; u8 *pAddr; int sz2 = 0; int sz = get2byte(&data[iFree+2]); int top = get2byte(&data[hdr+5]); if( top>=iFree ){ return SQLITE_CORRUPT_PAGE(pPage); } if( iFree2 ){ if( iFree+sz>iFree2 ) return SQLITE_CORRUPT_PAGE(pPage); sz2 = get2byte(&data[iFree2+2]); if( iFree2+sz2 > usableSize ) return SQLITE_CORRUPT_PAGE(pPage); memmove(&data[iFree+sz+sz2], &data[iFree+sz], iFree2-(iFree+sz)); sz += sz2; }else if( NEVER(iFree+sz>usableSize) ){ return SQLITE_CORRUPT_PAGE(pPage); } cbrk = top+sz; assert( cbrk+(iFree-top) <= usableSize ); memmove(&data[cbrk], &data[top], iFree-top); for(pAddr=&data[cellOffset]; pAddriCellLast ){ return SQLITE_CORRUPT_PAGE(pPage); } assert( pc>=iCellFirst && pc<=iCellLast ); size = pPage->xCellSize(pPage, &src[pc]); cbrk -= size; if( cbrkusableSize ){ return SQLITE_CORRUPT_PAGE(pPage); } assert( cbrk+size<=usableSize && cbrk>=iCellFirst ); testcase( cbrk+size==usableSize ); testcase( pc+size==usableSize ); put2byte(pAddr, cbrk); if( temp==0 ){ int x; if( cbrk==pc ) continue; temp = sqlite3PagerTempSpace(pPage->pBt->pPager); x = get2byte(&data[hdr+5]); memcpy(&temp[x], &data[x], (cbrk+size) - x); src = temp; } memcpy(&data[cbrk], &src[pc], size); } data[hdr+7] = 0; defragment_out: assert( pPage->nFree>=0 ); if( data[hdr+7]+cbrk-iCellFirst!=pPage->nFree ){ return SQLITE_CORRUPT_PAGE(pPage); } assert( cbrk>=iCellFirst ); put2byte(&data[hdr+5], cbrk); data[hdr+1] = 0; data[hdr+2] = 0; memset(&data[iCellFirst], 0, cbrk-iCellFirst); assert( sqlite3PagerIswriteable(pPage->pDbPage) ); return SQLITE_OK; } /* ** Search the free-list on page pPg for space to store a cell nByte bytes in ** size. If one can be found, return a pointer to the space and remove it ** from the free-list. ** ** If no suitable space can be found on the free-list, return NULL. ** ** This function may detect corruption within pPg. If corruption is ** detected then *pRc is set to SQLITE_CORRUPT and NULL is returned. ** ** Slots on the free list that are between 1 and 3 bytes larger than nByte ** will be ignored if adding the extra space to the fragmentation count ** causes the fragmentation count to exceed 60. */ static u8 *pageFindSlot(MemPage *pPg, int nByte, int *pRc){ const int hdr = pPg->hdrOffset; /* Offset to page header */ u8 * const aData = pPg->aData; /* Page data */ int iAddr = hdr + 1; /* Address of ptr to pc */ int pc = get2byte(&aData[iAddr]); /* Address of a free slot */ int x; /* Excess size of the slot */ int maxPC = pPg->pBt->usableSize - nByte; /* Max address for a usable slot */ int size; /* Size of the free slot */ assert( pc>0 ); while( pc<=maxPC ){ /* EVIDENCE-OF: R-22710-53328 The third and fourth bytes of each ** freeblock form a big-endian integer which is the size of the freeblock ** in bytes, including the 4-byte header. */ size = get2byte(&aData[pc+2]); if( (x = size - nByte)>=0 ){ testcase( x==4 ); testcase( x==3 ); if( x<4 ){ /* EVIDENCE-OF: R-11498-58022 In a well-formed b-tree page, the total ** number of bytes in fragments may not exceed 60. */ if( aData[hdr+7]>57 ) return 0; /* Remove the slot from the free-list. Update the number of ** fragmented bytes within the page. */ memcpy(&aData[iAddr], &aData[pc], 2); aData[hdr+7] += (u8)x; }else if( x+pc > maxPC ){ /* This slot extends off the end of the usable part of the page */ *pRc = SQLITE_CORRUPT_PAGE(pPg); return 0; }else{ /* The slot remains on the free-list. Reduce its size to account ** for the portion used by the new allocation. */ put2byte(&aData[pc+2], x); } return &aData[pc + x]; } iAddr = pc; pc = get2byte(&aData[pc]); if( pc<=iAddr+size ){ if( pc ){ /* The next slot in the chain is not past the end of the current slot */ *pRc = SQLITE_CORRUPT_PAGE(pPg); } return 0; } } if( pc>maxPC+nByte-4 ){ /* The free slot chain extends off the end of the page */ *pRc = SQLITE_CORRUPT_PAGE(pPg); } return 0; } /* ** Allocate nByte bytes of space from within the B-Tree page passed ** as the first argument. Write into *pIdx the index into pPage->aData[] ** of the first byte of allocated space. Return either SQLITE_OK or ** an error code (usually SQLITE_CORRUPT). ** ** The caller guarantees that there is sufficient space to make the ** allocation. This routine might need to defragment in order to bring ** all the space together, however. This routine will avoid using ** the first two bytes past the cell pointer area since presumably this ** allocation is being made in order to insert a new cell, so we will ** also end up needing a new cell pointer. */ static int allocateSpace(MemPage *pPage, int nByte, int *pIdx){ const int hdr = pPage->hdrOffset; /* Local cache of pPage->hdrOffset */ u8 * const data = pPage->aData; /* Local cache of pPage->aData */ int top; /* First byte of cell content area */ int rc = SQLITE_OK; /* Integer return code */ int gap; /* First byte of gap between cell pointers and cell content */ assert( sqlite3PagerIswriteable(pPage->pDbPage) ); assert( pPage->pBt ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( nByte>=0 ); /* Minimum cell size is 4 */ assert( pPage->nFree>=nByte ); assert( pPage->nOverflow==0 ); assert( nByte < (int)(pPage->pBt->usableSize-8) ); assert( pPage->cellOffset == hdr + 12 - 4*pPage->leaf ); gap = pPage->cellOffset + 2*pPage->nCell; assert( gap<=65536 ); /* EVIDENCE-OF: R-29356-02391 If the database uses a 65536-byte page size ** and the reserved space is zero (the usual value for reserved space) ** then the cell content offset of an empty page wants to be 65536. ** However, that integer is too large to be stored in a 2-byte unsigned ** integer, so a value of 0 is used in its place. */ top = get2byte(&data[hdr+5]); assert( top<=(int)pPage->pBt->usableSize ); /* by btreeComputeFreeSpace() */ if( gap>top ){ if( top==0 && pPage->pBt->usableSize==65536 ){ top = 65536; }else{ return SQLITE_CORRUPT_PAGE(pPage); } } /* If there is enough space between gap and top for one more cell pointer, ** and if the freelist is not empty, then search the ** freelist looking for a slot big enough to satisfy the request. */ testcase( gap+2==top ); testcase( gap+1==top ); testcase( gap==top ); if( (data[hdr+2] || data[hdr+1]) && gap+2<=top ){ u8 *pSpace = pageFindSlot(pPage, nByte, &rc); if( pSpace ){ int g2; assert( pSpace+nByte<=data+pPage->pBt->usableSize ); *pIdx = g2 = (int)(pSpace-data); if( NEVER(g2<=gap) ){ return SQLITE_CORRUPT_PAGE(pPage); }else{ return SQLITE_OK; } }else if( rc ){ return rc; } } /* The request could not be fulfilled using a freelist slot. Check ** to see if defragmentation is necessary. */ testcase( gap+2+nByte==top ); if( gap+2+nByte>top ){ assert( pPage->nCell>0 || CORRUPT_DB ); assert( pPage->nFree>=0 ); rc = defragmentPage(pPage, MIN(4, pPage->nFree - (2+nByte))); if( rc ) return rc; top = get2byteNotZero(&data[hdr+5]); assert( gap+2+nByte<=top ); } /* Allocate memory from the gap in between the cell pointer array ** and the cell content area. The btreeComputeFreeSpace() call has already ** validated the freelist. Given that the freelist is valid, there ** is no way that the allocation can extend off the end of the page. ** The assert() below verifies the previous sentence. */ top -= nByte; put2byte(&data[hdr+5], top); assert( top+nByte <= (int)pPage->pBt->usableSize ); *pIdx = top; return SQLITE_OK; } /* ** Return a section of the pPage->aData to the freelist. ** The first byte of the new free block is pPage->aData[iStart] ** and the size of the block is iSize bytes. ** ** Adjacent freeblocks are coalesced. ** ** Even though the freeblock list was checked by btreeComputeFreeSpace(), ** that routine will not detect overlap between cells or freeblocks. Nor ** does it detect cells or freeblocks that encrouch into the reserved bytes ** at the end of the page. So do additional corruption checks inside this ** routine and return SQLITE_CORRUPT if any problems are found. */ static int freeSpace(MemPage *pPage, u16 iStart, u16 iSize){ u16 iPtr; /* Address of ptr to next freeblock */ u16 iFreeBlk; /* Address of the next freeblock */ u8 hdr; /* Page header size. 0 or 100 */ u8 nFrag = 0; /* Reduction in fragmentation */ u16 iOrigSize = iSize; /* Original value of iSize */ u16 x; /* Offset to cell content area */ u32 iEnd = iStart + iSize; /* First byte past the iStart buffer */ unsigned char *data = pPage->aData; /* Page content */ assert( pPage->pBt!=0 ); assert( sqlite3PagerIswriteable(pPage->pDbPage) ); assert( CORRUPT_DB || iStart>=pPage->hdrOffset+6+pPage->childPtrSize ); assert( CORRUPT_DB || iEnd <= pPage->pBt->usableSize ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( iSize>=4 ); /* Minimum cell size is 4 */ assert( iStart<=pPage->pBt->usableSize-4 ); /* The list of freeblocks must be in ascending order. Find the ** spot on the list where iStart should be inserted. */ hdr = pPage->hdrOffset; iPtr = hdr + 1; if( data[iPtr+1]==0 && data[iPtr]==0 ){ iFreeBlk = 0; /* Shortcut for the case when the freelist is empty */ }else{ while( (iFreeBlk = get2byte(&data[iPtr]))pPage->pBt->usableSize-4 ){ /* TH3: corrupt081.100 */ return SQLITE_CORRUPT_PAGE(pPage); } assert( iFreeBlk>iPtr || iFreeBlk==0 ); /* At this point: ** iFreeBlk: First freeblock after iStart, or zero if none ** iPtr: The address of a pointer to iFreeBlk ** ** Check to see if iFreeBlk should be coalesced onto the end of iStart. */ if( iFreeBlk && iEnd+3>=iFreeBlk ){ nFrag = iFreeBlk - iEnd; if( iEnd>iFreeBlk ) return SQLITE_CORRUPT_PAGE(pPage); iEnd = iFreeBlk + get2byte(&data[iFreeBlk+2]); if( iEnd > pPage->pBt->usableSize ){ return SQLITE_CORRUPT_PAGE(pPage); } iSize = iEnd - iStart; iFreeBlk = get2byte(&data[iFreeBlk]); } /* If iPtr is another freeblock (that is, if iPtr is not the freelist ** pointer in the page header) then check to see if iStart should be ** coalesced onto the end of iPtr. */ if( iPtr>hdr+1 ){ int iPtrEnd = iPtr + get2byte(&data[iPtr+2]); if( iPtrEnd+3>=iStart ){ if( iPtrEnd>iStart ) return SQLITE_CORRUPT_PAGE(pPage); nFrag += iStart - iPtrEnd; iSize = iEnd - iPtr; iStart = iPtr; } } if( nFrag>data[hdr+7] ) return SQLITE_CORRUPT_PAGE(pPage); data[hdr+7] -= nFrag; } x = get2byte(&data[hdr+5]); if( iStart<=x ){ /* The new freeblock is at the beginning of the cell content area, ** so just extend the cell content area rather than create another ** freelist entry */ if( iStartpBt->btsFlags & BTS_FAST_SECURE ){ /* Overwrite deleted information with zeros when the secure_delete ** option is enabled */ memset(&data[iStart], 0, iSize); } put2byte(&data[iStart], iFreeBlk); put2byte(&data[iStart+2], iSize); pPage->nFree += iOrigSize; return SQLITE_OK; } /* ** Decode the flags byte (the first byte of the header) for a page ** and initialize fields of the MemPage structure accordingly. ** ** Only the following combinations are supported. Anything different ** indicates a corrupt database files: ** ** PTF_ZERODATA ** PTF_ZERODATA | PTF_LEAF ** PTF_LEAFDATA | PTF_INTKEY ** PTF_LEAFDATA | PTF_INTKEY | PTF_LEAF */ static int decodeFlags(MemPage *pPage, int flagByte){ BtShared *pBt; /* A copy of pPage->pBt */ assert( pPage->hdrOffset==(pPage->pgno==1 ? 100 : 0) ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); pPage->leaf = (u8)(flagByte>>3); assert( PTF_LEAF == 1<<3 ); flagByte &= ~PTF_LEAF; pPage->childPtrSize = 4-4*pPage->leaf; pPage->xCellSize = cellSizePtr; pBt = pPage->pBt; if( flagByte==(PTF_LEAFDATA | PTF_INTKEY) ){ /* EVIDENCE-OF: R-07291-35328 A value of 5 (0x05) means the page is an ** interior table b-tree page. */ assert( (PTF_LEAFDATA|PTF_INTKEY)==5 ); /* EVIDENCE-OF: R-26900-09176 A value of 13 (0x0d) means the page is a ** leaf table b-tree page. */ assert( (PTF_LEAFDATA|PTF_INTKEY|PTF_LEAF)==13 ); pPage->intKey = 1; if( pPage->leaf ){ pPage->intKeyLeaf = 1; pPage->xParseCell = btreeParseCellPtr; }else{ pPage->intKeyLeaf = 0; pPage->xCellSize = cellSizePtrNoPayload; pPage->xParseCell = btreeParseCellPtrNoPayload; } pPage->maxLocal = pBt->maxLeaf; pPage->minLocal = pBt->minLeaf; }else if( flagByte==PTF_ZERODATA ){ /* EVIDENCE-OF: R-43316-37308 A value of 2 (0x02) means the page is an ** interior index b-tree page. */ assert( (PTF_ZERODATA)==2 ); /* EVIDENCE-OF: R-59615-42828 A value of 10 (0x0a) means the page is a ** leaf index b-tree page. */ assert( (PTF_ZERODATA|PTF_LEAF)==10 ); pPage->intKey = 0; pPage->intKeyLeaf = 0; pPage->xParseCell = btreeParseCellPtrIndex; pPage->maxLocal = pBt->maxLocal; pPage->minLocal = pBt->minLocal; }else{ /* EVIDENCE-OF: R-47608-56469 Any other value for the b-tree page type is ** an error. */ return SQLITE_CORRUPT_PAGE(pPage); } pPage->max1bytePayload = pBt->max1bytePayload; return SQLITE_OK; } /* ** Compute the amount of freespace on the page. In other words, fill ** in the pPage->nFree field. */ static int btreeComputeFreeSpace(MemPage *pPage){ int pc; /* Address of a freeblock within pPage->aData[] */ u8 hdr; /* Offset to beginning of page header */ u8 *data; /* Equal to pPage->aData */ int usableSize; /* Amount of usable space on each page */ int nFree; /* Number of unused bytes on the page */ int top; /* First byte of the cell content area */ int iCellFirst; /* First allowable cell or freeblock offset */ int iCellLast; /* Last possible cell or freeblock offset */ assert( pPage->pBt!=0 ); assert( pPage->pBt->db!=0 ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->pgno==sqlite3PagerPagenumber(pPage->pDbPage) ); assert( pPage == sqlite3PagerGetExtra(pPage->pDbPage) ); assert( pPage->aData == sqlite3PagerGetData(pPage->pDbPage) ); assert( pPage->isInit==1 ); assert( pPage->nFree<0 ); usableSize = pPage->pBt->usableSize; hdr = pPage->hdrOffset; data = pPage->aData; /* EVIDENCE-OF: R-58015-48175 The two-byte integer at offset 5 designates ** the start of the cell content area. A zero value for this integer is ** interpreted as 65536. */ top = get2byteNotZero(&data[hdr+5]); iCellFirst = hdr + 8 + pPage->childPtrSize + 2*pPage->nCell; iCellLast = usableSize - 4; /* Compute the total free space on the page ** EVIDENCE-OF: R-23588-34450 The two-byte integer at offset 1 gives the ** start of the first freeblock on the page, or is zero if there are no ** freeblocks. */ pc = get2byte(&data[hdr+1]); nFree = data[hdr+7] + top; /* Init nFree to non-freeblock free space */ if( pc>0 ){ u32 next, size; if( pciCellLast ){ /* Freeblock off the end of the page */ return SQLITE_CORRUPT_PAGE(pPage); } next = get2byte(&data[pc]); size = get2byte(&data[pc+2]); nFree = nFree + size; if( next<=pc+size+3 ) break; pc = next; } if( next>0 ){ /* Freeblock not in ascending order */ return SQLITE_CORRUPT_PAGE(pPage); } if( pc+size>(unsigned int)usableSize ){ /* Last freeblock extends past page end */ return SQLITE_CORRUPT_PAGE(pPage); } } /* At this point, nFree contains the sum of the offset to the start ** of the cell-content area plus the number of free bytes within ** the cell-content area. If this is greater than the usable-size ** of the page, then the page must be corrupted. This check also ** serves to verify that the offset to the start of the cell-content ** area, according to the page header, lies within the page. */ if( nFree>usableSize || nFreenFree = (u16)(nFree - iCellFirst); return SQLITE_OK; } /* ** Do additional sanity check after btreeInitPage() if ** PRAGMA cell_size_check=ON */ static SQLITE_NOINLINE int btreeCellSizeCheck(MemPage *pPage){ int iCellFirst; /* First allowable cell or freeblock offset */ int iCellLast; /* Last possible cell or freeblock offset */ int i; /* Index into the cell pointer array */ int sz; /* Size of a cell */ int pc; /* Address of a freeblock within pPage->aData[] */ u8 *data; /* Equal to pPage->aData */ int usableSize; /* Maximum usable space on the page */ int cellOffset; /* Start of cell content area */ iCellFirst = pPage->cellOffset + 2*pPage->nCell; usableSize = pPage->pBt->usableSize; iCellLast = usableSize - 4; data = pPage->aData; cellOffset = pPage->cellOffset; if( !pPage->leaf ) iCellLast--; for(i=0; inCell; i++){ pc = get2byteAligned(&data[cellOffset+i*2]); testcase( pc==iCellFirst ); testcase( pc==iCellLast ); if( pciCellLast ){ return SQLITE_CORRUPT_PAGE(pPage); } sz = pPage->xCellSize(pPage, &data[pc]); testcase( pc+sz==usableSize ); if( pc+sz>usableSize ){ return SQLITE_CORRUPT_PAGE(pPage); } } return SQLITE_OK; } /* ** Initialize the auxiliary information for a disk block. ** ** Return SQLITE_OK on success. If we see that the page does ** not contain a well-formed database page, then return ** SQLITE_CORRUPT. Note that a return of SQLITE_OK does not ** guarantee that the page is well-formed. It only shows that ** we failed to detect any corruption. */ static int btreeInitPage(MemPage *pPage){ u8 *data; /* Equal to pPage->aData */ BtShared *pBt; /* The main btree structure */ assert( pPage->pBt!=0 ); assert( pPage->pBt->db!=0 ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->pgno==sqlite3PagerPagenumber(pPage->pDbPage) ); assert( pPage == sqlite3PagerGetExtra(pPage->pDbPage) ); assert( pPage->aData == sqlite3PagerGetData(pPage->pDbPage) ); assert( pPage->isInit==0 ); pBt = pPage->pBt; data = pPage->aData + pPage->hdrOffset; /* EVIDENCE-OF: R-28594-02890 The one-byte flag at offset 0 indicating ** the b-tree page type. */ if( decodeFlags(pPage, data[0]) ){ return SQLITE_CORRUPT_PAGE(pPage); } assert( pBt->pageSize>=512 && pBt->pageSize<=65536 ); pPage->maskPage = (u16)(pBt->pageSize - 1); pPage->nOverflow = 0; pPage->cellOffset = pPage->hdrOffset + 8 + pPage->childPtrSize; pPage->aCellIdx = data + pPage->childPtrSize + 8; pPage->aDataEnd = pPage->aData + pBt->usableSize; pPage->aDataOfst = pPage->aData + pPage->childPtrSize; /* EVIDENCE-OF: R-37002-32774 The two-byte integer at offset 3 gives the ** number of cells on the page. */ pPage->nCell = get2byte(&data[3]); if( pPage->nCell>MX_CELL(pBt) ){ /* To many cells for a single page. The page must be corrupt */ return SQLITE_CORRUPT_PAGE(pPage); } testcase( pPage->nCell==MX_CELL(pBt) ); /* EVIDENCE-OF: R-24089-57979 If a page contains no cells (which is only ** possible for a root page of a table that contains no rows) then the ** offset to the cell content area will equal the page size minus the ** bytes of reserved space. */ assert( pPage->nCell>0 || get2byteNotZero(&data[5])==(int)pBt->usableSize || CORRUPT_DB ); pPage->nFree = -1; /* Indicate that this value is yet uncomputed */ pPage->isInit = 1; if( pBt->db->flags & SQLITE_CellSizeCk ){ return btreeCellSizeCheck(pPage); } return SQLITE_OK; } /* ** Set up a raw page so that it looks like a database page holding ** no entries. */ static void zeroPage(MemPage *pPage, int flags){ unsigned char *data = pPage->aData; BtShared *pBt = pPage->pBt; u8 hdr = pPage->hdrOffset; u16 first; assert( sqlite3PagerPagenumber(pPage->pDbPage)==pPage->pgno ); assert( sqlite3PagerGetExtra(pPage->pDbPage) == (void*)pPage ); assert( sqlite3PagerGetData(pPage->pDbPage) == data ); assert( sqlite3PagerIswriteable(pPage->pDbPage) ); assert( sqlite3_mutex_held(pBt->mutex) ); if( pBt->btsFlags & BTS_FAST_SECURE ){ memset(&data[hdr], 0, pBt->usableSize - hdr); } data[hdr] = (char)flags; first = hdr + ((flags&PTF_LEAF)==0 ? 12 : 8); memset(&data[hdr+1], 0, 4); data[hdr+7] = 0; put2byte(&data[hdr+5], pBt->usableSize); pPage->nFree = (u16)(pBt->usableSize - first); decodeFlags(pPage, flags); pPage->cellOffset = first; pPage->aDataEnd = &data[pBt->usableSize]; pPage->aCellIdx = &data[first]; pPage->aDataOfst = &data[pPage->childPtrSize]; pPage->nOverflow = 0; assert( pBt->pageSize>=512 && pBt->pageSize<=65536 ); pPage->maskPage = (u16)(pBt->pageSize - 1); pPage->nCell = 0; pPage->isInit = 1; } /* ** Convert a DbPage obtained from the pager into a MemPage used by ** the btree layer. */ static MemPage *btreePageFromDbPage(DbPage *pDbPage, Pgno pgno, BtShared *pBt){ MemPage *pPage = (MemPage*)sqlite3PagerGetExtra(pDbPage); if( pgno!=pPage->pgno ){ pPage->aData = sqlite3PagerGetData(pDbPage); pPage->pDbPage = pDbPage; pPage->pBt = pBt; pPage->pgno = pgno; pPage->hdrOffset = pgno==1 ? 100 : 0; } assert( pPage->aData==sqlite3PagerGetData(pDbPage) ); return pPage; } /* ** Get a page from the pager. Initialize the MemPage.pBt and ** MemPage.aData elements if needed. See also: btreeGetUnusedPage(). ** ** If the PAGER_GET_NOCONTENT flag is set, it means that we do not care ** about the content of the page at this time. So do not go to the disk ** to fetch the content. Just fill in the content with zeros for now. ** If in the future we call sqlite3PagerWrite() on this page, that ** means we have started to be concerned about content and the disk ** read should occur at that point. */ static int btreeGetPage( BtShared *pBt, /* The btree */ Pgno pgno, /* Number of the page to fetch */ MemPage **ppPage, /* Return the page in this parameter */ int flags /* PAGER_GET_NOCONTENT or PAGER_GET_READONLY */ ){ int rc; DbPage *pDbPage; assert( flags==0 || flags==PAGER_GET_NOCONTENT || flags==PAGER_GET_READONLY ); assert( sqlite3_mutex_held(pBt->mutex) ); rc = sqlite3PagerGet(pBt->pPager, pgno, (DbPage**)&pDbPage, flags); if( rc ) return rc; *ppPage = btreePageFromDbPage(pDbPage, pgno, pBt); return SQLITE_OK; } /* ** Retrieve a page from the pager cache. If the requested page is not ** already in the pager cache return NULL. Initialize the MemPage.pBt and ** MemPage.aData elements if needed. */ static MemPage *btreePageLookup(BtShared *pBt, Pgno pgno){ DbPage *pDbPage; assert( sqlite3_mutex_held(pBt->mutex) ); pDbPage = sqlite3PagerLookup(pBt->pPager, pgno); if( pDbPage ){ return btreePageFromDbPage(pDbPage, pgno, pBt); } return 0; } /* ** Return the size of the database file in pages. If there is any kind of ** error, return ((unsigned int)-1). */ static Pgno btreePagecount(BtShared *pBt){ return pBt->nPage; } SQLITE_PRIVATE Pgno sqlite3BtreeLastPage(Btree *p){ assert( sqlite3BtreeHoldsMutex(p) ); return btreePagecount(p->pBt); } /* ** Get a page from the pager and initialize it. ** ** If pCur!=0 then the page is being fetched as part of a moveToChild() ** call. Do additional sanity checking on the page in this case. ** And if the fetch fails, this routine must decrement pCur->iPage. ** ** The page is fetched as read-write unless pCur is not NULL and is ** a read-only cursor. ** ** If an error occurs, then *ppPage is undefined. It ** may remain unchanged, or it may be set to an invalid value. */ static int getAndInitPage( BtShared *pBt, /* The database file */ Pgno pgno, /* Number of the page to get */ MemPage **ppPage, /* Write the page pointer here */ BtCursor *pCur, /* Cursor to receive the page, or NULL */ int bReadOnly /* True for a read-only page */ ){ int rc; DbPage *pDbPage; assert( sqlite3_mutex_held(pBt->mutex) ); assert( pCur==0 || ppPage==&pCur->pPage ); assert( pCur==0 || bReadOnly==pCur->curPagerFlags ); assert( pCur==0 || pCur->iPage>0 ); if( pgno>btreePagecount(pBt) ){ rc = SQLITE_CORRUPT_BKPT; goto getAndInitPage_error1; } rc = sqlite3PagerGet(pBt->pPager, pgno, (DbPage**)&pDbPage, bReadOnly); if( rc ){ goto getAndInitPage_error1; } *ppPage = (MemPage*)sqlite3PagerGetExtra(pDbPage); if( (*ppPage)->isInit==0 ){ btreePageFromDbPage(pDbPage, pgno, pBt); rc = btreeInitPage(*ppPage); if( rc!=SQLITE_OK ){ goto getAndInitPage_error2; } } assert( (*ppPage)->pgno==pgno ); assert( (*ppPage)->aData==sqlite3PagerGetData(pDbPage) ); /* If obtaining a child page for a cursor, we must verify that the page is ** compatible with the root page. */ if( pCur && ((*ppPage)->nCell<1 || (*ppPage)->intKey!=pCur->curIntKey) ){ rc = SQLITE_CORRUPT_PGNO(pgno); goto getAndInitPage_error2; } return SQLITE_OK; getAndInitPage_error2: releasePage(*ppPage); getAndInitPage_error1: if( pCur ){ pCur->iPage--; pCur->pPage = pCur->apPage[pCur->iPage]; } testcase( pgno==0 ); assert( pgno!=0 || rc==SQLITE_CORRUPT ); return rc; } /* ** Release a MemPage. This should be called once for each prior ** call to btreeGetPage. ** ** Page1 is a special case and must be released using releasePageOne(). */ static void releasePageNotNull(MemPage *pPage){ assert( pPage->aData ); assert( pPage->pBt ); assert( pPage->pDbPage!=0 ); assert( sqlite3PagerGetExtra(pPage->pDbPage) == (void*)pPage ); assert( sqlite3PagerGetData(pPage->pDbPage)==pPage->aData ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); sqlite3PagerUnrefNotNull(pPage->pDbPage); } static void releasePage(MemPage *pPage){ if( pPage ) releasePageNotNull(pPage); } static void releasePageOne(MemPage *pPage){ assert( pPage!=0 ); assert( pPage->aData ); assert( pPage->pBt ); assert( pPage->pDbPage!=0 ); assert( sqlite3PagerGetExtra(pPage->pDbPage) == (void*)pPage ); assert( sqlite3PagerGetData(pPage->pDbPage)==pPage->aData ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); sqlite3PagerUnrefPageOne(pPage->pDbPage); } /* ** Get an unused page. ** ** This works just like btreeGetPage() with the addition: ** ** * If the page is already in use for some other purpose, immediately ** release it and return an SQLITE_CURRUPT error. ** * Make sure the isInit flag is clear */ static int btreeGetUnusedPage( BtShared *pBt, /* The btree */ Pgno pgno, /* Number of the page to fetch */ MemPage **ppPage, /* Return the page in this parameter */ int flags /* PAGER_GET_NOCONTENT or PAGER_GET_READONLY */ ){ int rc = btreeGetPage(pBt, pgno, ppPage, flags); if( rc==SQLITE_OK ){ if( sqlite3PagerPageRefcount((*ppPage)->pDbPage)>1 ){ releasePage(*ppPage); *ppPage = 0; return SQLITE_CORRUPT_BKPT; } (*ppPage)->isInit = 0; }else{ *ppPage = 0; } return rc; } /* ** During a rollback, when the pager reloads information into the cache ** so that the cache is restored to its original state at the start of ** the transaction, for each page restored this routine is called. ** ** This routine needs to reset the extra data section at the end of the ** page to agree with the restored data. */ static void pageReinit(DbPage *pData){ MemPage *pPage; pPage = (MemPage *)sqlite3PagerGetExtra(pData); assert( sqlite3PagerPageRefcount(pData)>0 ); if( pPage->isInit ){ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); pPage->isInit = 0; if( sqlite3PagerPageRefcount(pData)>1 ){ /* pPage might not be a btree page; it might be an overflow page ** or ptrmap page or a free page. In those cases, the following ** call to btreeInitPage() will likely return SQLITE_CORRUPT. ** But no harm is done by this. And it is very important that ** btreeInitPage() be called on every btree page so we make ** the call for every page that comes in for re-initing. */ btreeInitPage(pPage); } } } /* ** Invoke the busy handler for a btree. */ static int btreeInvokeBusyHandler(void *pArg){ BtShared *pBt = (BtShared*)pArg; assert( pBt->db ); assert( sqlite3_mutex_held(pBt->db->mutex) ); return sqlite3InvokeBusyHandler(&pBt->db->busyHandler); } /* ** Open a database file. ** ** zFilename is the name of the database file. If zFilename is NULL ** then an ephemeral database is created. The ephemeral database might ** be exclusively in memory, or it might use a disk-based memory cache. ** Either way, the ephemeral database will be automatically deleted ** when sqlite3BtreeClose() is called. ** ** If zFilename is ":memory:" then an in-memory database is created ** that is automatically destroyed when it is closed. ** ** The "flags" parameter is a bitmask that might contain bits like ** BTREE_OMIT_JOURNAL and/or BTREE_MEMORY. ** ** If the database is already opened in the same database connection ** and we are in shared cache mode, then the open will fail with an ** SQLITE_CONSTRAINT error. We cannot allow two or more BtShared ** objects in the same database connection since doing so will lead ** to problems with locking. */ SQLITE_PRIVATE int sqlite3BtreeOpen( sqlite3_vfs *pVfs, /* VFS to use for this b-tree */ const char *zFilename, /* Name of the file containing the BTree database */ sqlite3 *db, /* Associated database handle */ Btree **ppBtree, /* Pointer to new Btree object written here */ int flags, /* Options */ int vfsFlags /* Flags passed through to sqlite3_vfs.xOpen() */ ){ BtShared *pBt = 0; /* Shared part of btree structure */ Btree *p; /* Handle to return */ sqlite3_mutex *mutexOpen = 0; /* Prevents a race condition. Ticket #3537 */ int rc = SQLITE_OK; /* Result code from this function */ u8 nReserve; /* Byte of unused space on each page */ unsigned char zDbHeader[100]; /* Database header content */ /* True if opening an ephemeral, temporary database */ const int isTempDb = zFilename==0 || zFilename[0]==0; /* Set the variable isMemdb to true for an in-memory database, or ** false for a file-based database. */ #ifdef SQLITE_OMIT_MEMORYDB const int isMemdb = 0; #else const int isMemdb = (zFilename && strcmp(zFilename, ":memory:")==0) || (isTempDb && sqlite3TempInMemory(db)) || (vfsFlags & SQLITE_OPEN_MEMORY)!=0; #endif assert( db!=0 ); assert( pVfs!=0 ); assert( sqlite3_mutex_held(db->mutex) ); assert( (flags&0xff)==flags ); /* flags fit in 8 bits */ /* Only a BTREE_SINGLE database can be BTREE_UNORDERED */ assert( (flags & BTREE_UNORDERED)==0 || (flags & BTREE_SINGLE)!=0 ); /* A BTREE_SINGLE database is always a temporary and/or ephemeral */ assert( (flags & BTREE_SINGLE)==0 || isTempDb ); if( isMemdb ){ flags |= BTREE_MEMORY; } if( (vfsFlags & SQLITE_OPEN_MAIN_DB)!=0 && (isMemdb || isTempDb) ){ vfsFlags = (vfsFlags & ~SQLITE_OPEN_MAIN_DB) | SQLITE_OPEN_TEMP_DB; } p = sqlite3MallocZero(sizeof(Btree)); if( !p ){ return SQLITE_NOMEM_BKPT; } p->inTrans = TRANS_NONE; p->db = db; #ifndef SQLITE_OMIT_SHARED_CACHE p->lock.pBtree = p; p->lock.iTable = 1; #endif #if !defined(SQLITE_OMIT_SHARED_CACHE) && !defined(SQLITE_OMIT_DISKIO) /* ** If this Btree is a candidate for shared cache, try to find an ** existing BtShared object that we can share with */ if( isTempDb==0 && (isMemdb==0 || (vfsFlags&SQLITE_OPEN_URI)!=0) ){ if( vfsFlags & SQLITE_OPEN_SHAREDCACHE ){ int nFilename = sqlite3Strlen30(zFilename)+1; int nFullPathname = pVfs->mxPathname+1; char *zFullPathname = sqlite3Malloc(MAX(nFullPathname,nFilename)); MUTEX_LOGIC( sqlite3_mutex *mutexShared; ) p->sharable = 1; if( !zFullPathname ){ sqlite3_free(p); return SQLITE_NOMEM_BKPT; } if( isMemdb ){ memcpy(zFullPathname, zFilename, nFilename); }else{ rc = sqlite3OsFullPathname(pVfs, zFilename, nFullPathname, zFullPathname); if( rc ){ if( rc==SQLITE_OK_SYMLINK ){ rc = SQLITE_OK; }else{ sqlite3_free(zFullPathname); sqlite3_free(p); return rc; } } } #if SQLITE_THREADSAFE mutexOpen = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_OPEN); sqlite3_mutex_enter(mutexOpen); mutexShared = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); sqlite3_mutex_enter(mutexShared); #endif for(pBt=GLOBAL(BtShared*,sqlite3SharedCacheList); pBt; pBt=pBt->pNext){ assert( pBt->nRef>0 ); if( 0==strcmp(zFullPathname, sqlite3PagerFilename(pBt->pPager, 0)) && sqlite3PagerVfs(pBt->pPager)==pVfs ){ int iDb; for(iDb=db->nDb-1; iDb>=0; iDb--){ Btree *pExisting = db->aDb[iDb].pBt; if( pExisting && pExisting->pBt==pBt ){ sqlite3_mutex_leave(mutexShared); sqlite3_mutex_leave(mutexOpen); sqlite3_free(zFullPathname); sqlite3_free(p); return SQLITE_CONSTRAINT; } } p->pBt = pBt; pBt->nRef++; break; } } sqlite3_mutex_leave(mutexShared); sqlite3_free(zFullPathname); } #ifdef SQLITE_DEBUG else{ /* In debug mode, we mark all persistent databases as sharable ** even when they are not. This exercises the locking code and ** gives more opportunity for asserts(sqlite3_mutex_held()) ** statements to find locking problems. */ p->sharable = 1; } #endif } #endif if( pBt==0 ){ /* ** The following asserts make sure that structures used by the btree are ** the right size. This is to guard against size changes that result ** when compiling on a different architecture. */ assert( sizeof(i64)==8 ); assert( sizeof(u64)==8 ); assert( sizeof(u32)==4 ); assert( sizeof(u16)==2 ); assert( sizeof(Pgno)==4 ); pBt = sqlite3MallocZero( sizeof(*pBt) ); if( pBt==0 ){ rc = SQLITE_NOMEM_BKPT; goto btree_open_out; } rc = sqlite3PagerOpen(pVfs, &pBt->pPager, zFilename, sizeof(MemPage), flags, vfsFlags, pageReinit); if( rc==SQLITE_OK ){ sqlite3PagerSetMmapLimit(pBt->pPager, db->szMmap); rc = sqlite3PagerReadFileheader(pBt->pPager,sizeof(zDbHeader),zDbHeader); } if( rc!=SQLITE_OK ){ goto btree_open_out; } pBt->openFlags = (u8)flags; pBt->db = db; sqlite3PagerSetBusyHandler(pBt->pPager, btreeInvokeBusyHandler, pBt); p->pBt = pBt; pBt->pCursor = 0; pBt->pPage1 = 0; if( sqlite3PagerIsreadonly(pBt->pPager) ) pBt->btsFlags |= BTS_READ_ONLY; #if defined(SQLITE_SECURE_DELETE) pBt->btsFlags |= BTS_SECURE_DELETE; #elif defined(SQLITE_FAST_SECURE_DELETE) pBt->btsFlags |= BTS_OVERWRITE; #endif /* EVIDENCE-OF: R-51873-39618 The page size for a database file is ** determined by the 2-byte integer located at an offset of 16 bytes from ** the beginning of the database file. */ pBt->pageSize = (zDbHeader[16]<<8) | (zDbHeader[17]<<16); if( pBt->pageSize<512 || pBt->pageSize>SQLITE_MAX_PAGE_SIZE || ((pBt->pageSize-1)&pBt->pageSize)!=0 ){ pBt->pageSize = 0; #ifndef SQLITE_OMIT_AUTOVACUUM /* If the magic name ":memory:" will create an in-memory database, then ** leave the autoVacuum mode at 0 (do not auto-vacuum), even if ** SQLITE_DEFAULT_AUTOVACUUM is true. On the other hand, if ** SQLITE_OMIT_MEMORYDB has been defined, then ":memory:" is just a ** regular file-name. In this case the auto-vacuum applies as per normal. */ if( zFilename && !isMemdb ){ pBt->autoVacuum = (SQLITE_DEFAULT_AUTOVACUUM ? 1 : 0); pBt->incrVacuum = (SQLITE_DEFAULT_AUTOVACUUM==2 ? 1 : 0); } #endif nReserve = 0; }else{ /* EVIDENCE-OF: R-37497-42412 The size of the reserved region is ** determined by the one-byte unsigned integer found at an offset of 20 ** into the database file header. */ nReserve = zDbHeader[20]; pBt->btsFlags |= BTS_PAGESIZE_FIXED; #ifndef SQLITE_OMIT_AUTOVACUUM pBt->autoVacuum = (get4byte(&zDbHeader[36 + 4*4])?1:0); pBt->incrVacuum = (get4byte(&zDbHeader[36 + 7*4])?1:0); #endif } rc = sqlite3PagerSetPagesize(pBt->pPager, &pBt->pageSize, nReserve); if( rc ) goto btree_open_out; pBt->usableSize = pBt->pageSize - nReserve; assert( (pBt->pageSize & 7)==0 ); /* 8-byte alignment of pageSize */ #if !defined(SQLITE_OMIT_SHARED_CACHE) && !defined(SQLITE_OMIT_DISKIO) /* Add the new BtShared object to the linked list sharable BtShareds. */ pBt->nRef = 1; if( p->sharable ){ MUTEX_LOGIC( sqlite3_mutex *mutexShared; ) MUTEX_LOGIC( mutexShared = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN);) if( SQLITE_THREADSAFE && sqlite3GlobalConfig.bCoreMutex ){ pBt->mutex = sqlite3MutexAlloc(SQLITE_MUTEX_FAST); if( pBt->mutex==0 ){ rc = SQLITE_NOMEM_BKPT; goto btree_open_out; } } sqlite3_mutex_enter(mutexShared); pBt->pNext = GLOBAL(BtShared*,sqlite3SharedCacheList); GLOBAL(BtShared*,sqlite3SharedCacheList) = pBt; sqlite3_mutex_leave(mutexShared); } #endif } #if !defined(SQLITE_OMIT_SHARED_CACHE) && !defined(SQLITE_OMIT_DISKIO) /* If the new Btree uses a sharable pBtShared, then link the new ** Btree into the list of all sharable Btrees for the same connection. ** The list is kept in ascending order by pBt address. */ if( p->sharable ){ int i; Btree *pSib; for(i=0; inDb; i++){ if( (pSib = db->aDb[i].pBt)!=0 && pSib->sharable ){ while( pSib->pPrev ){ pSib = pSib->pPrev; } if( (uptr)p->pBt<(uptr)pSib->pBt ){ p->pNext = pSib; p->pPrev = 0; pSib->pPrev = p; }else{ while( pSib->pNext && (uptr)pSib->pNext->pBt<(uptr)p->pBt ){ pSib = pSib->pNext; } p->pNext = pSib->pNext; p->pPrev = pSib; if( p->pNext ){ p->pNext->pPrev = p; } pSib->pNext = p; } break; } } } #endif *ppBtree = p; btree_open_out: if( rc!=SQLITE_OK ){ if( pBt && pBt->pPager ){ sqlite3PagerClose(pBt->pPager, 0); } sqlite3_free(pBt); sqlite3_free(p); *ppBtree = 0; }else{ sqlite3_file *pFile; /* If the B-Tree was successfully opened, set the pager-cache size to the ** default value. Except, when opening on an existing shared pager-cache, ** do not change the pager-cache size. */ if( sqlite3BtreeSchema(p, 0, 0)==0 ){ sqlite3PagerSetCachesize(p->pBt->pPager, SQLITE_DEFAULT_CACHE_SIZE); } pFile = sqlite3PagerFile(pBt->pPager); if( pFile->pMethods ){ sqlite3OsFileControlHint(pFile, SQLITE_FCNTL_PDB, (void*)&pBt->db); } } if( mutexOpen ){ assert( sqlite3_mutex_held(mutexOpen) ); sqlite3_mutex_leave(mutexOpen); } assert( rc!=SQLITE_OK || sqlite3BtreeConnectionCount(*ppBtree)>0 ); return rc; } /* ** Decrement the BtShared.nRef counter. When it reaches zero, ** remove the BtShared structure from the sharing list. Return ** true if the BtShared.nRef counter reaches zero and return ** false if it is still positive. */ static int removeFromSharingList(BtShared *pBt){ #ifndef SQLITE_OMIT_SHARED_CACHE MUTEX_LOGIC( sqlite3_mutex *pMainMtx; ) BtShared *pList; int removed = 0; assert( sqlite3_mutex_notheld(pBt->mutex) ); MUTEX_LOGIC( pMainMtx = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); ) sqlite3_mutex_enter(pMainMtx); pBt->nRef--; if( pBt->nRef<=0 ){ if( GLOBAL(BtShared*,sqlite3SharedCacheList)==pBt ){ GLOBAL(BtShared*,sqlite3SharedCacheList) = pBt->pNext; }else{ pList = GLOBAL(BtShared*,sqlite3SharedCacheList); while( ALWAYS(pList) && pList->pNext!=pBt ){ pList=pList->pNext; } if( ALWAYS(pList) ){ pList->pNext = pBt->pNext; } } if( SQLITE_THREADSAFE ){ sqlite3_mutex_free(pBt->mutex); } removed = 1; } sqlite3_mutex_leave(pMainMtx); return removed; #else return 1; #endif } /* ** Make sure pBt->pTmpSpace points to an allocation of ** MX_CELL_SIZE(pBt) bytes with a 4-byte prefix for a left-child ** pointer. */ static void allocateTempSpace(BtShared *pBt){ if( !pBt->pTmpSpace ){ pBt->pTmpSpace = sqlite3PageMalloc( pBt->pageSize ); /* One of the uses of pBt->pTmpSpace is to format cells before ** inserting them into a leaf page (function fillInCell()). If ** a cell is less than 4 bytes in size, it is rounded up to 4 bytes ** by the various routines that manipulate binary cells. Which ** can mean that fillInCell() only initializes the first 2 or 3 ** bytes of pTmpSpace, but that the first 4 bytes are copied from ** it into a database page. This is not actually a problem, but it ** does cause a valgrind error when the 1 or 2 bytes of unitialized ** data is passed to system call write(). So to avoid this error, ** zero the first 4 bytes of temp space here. ** ** Also: Provide four bytes of initialized space before the ** beginning of pTmpSpace as an area available to prepend the ** left-child pointer to the beginning of a cell. */ if( pBt->pTmpSpace ){ memset(pBt->pTmpSpace, 0, 8); pBt->pTmpSpace += 4; } } } /* ** Free the pBt->pTmpSpace allocation */ static void freeTempSpace(BtShared *pBt){ if( pBt->pTmpSpace ){ pBt->pTmpSpace -= 4; sqlite3PageFree(pBt->pTmpSpace); pBt->pTmpSpace = 0; } } /* ** Close an open database and invalidate all cursors. */ SQLITE_PRIVATE int sqlite3BtreeClose(Btree *p){ BtShared *pBt = p->pBt; BtCursor *pCur; /* Close all cursors opened via this handle. */ assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); pCur = pBt->pCursor; while( pCur ){ BtCursor *pTmp = pCur; pCur = pCur->pNext; if( pTmp->pBtree==p ){ sqlite3BtreeCloseCursor(pTmp); } } /* Rollback any active transaction and free the handle structure. ** The call to sqlite3BtreeRollback() drops any table-locks held by ** this handle. */ sqlite3BtreeRollback(p, SQLITE_OK, 0); sqlite3BtreeLeave(p); /* If there are still other outstanding references to the shared-btree ** structure, return now. The remainder of this procedure cleans ** up the shared-btree. */ assert( p->wantToLock==0 && p->locked==0 ); if( !p->sharable || removeFromSharingList(pBt) ){ /* The pBt is no longer on the sharing list, so we can access ** it without having to hold the mutex. ** ** Clean out and delete the BtShared object. */ assert( !pBt->pCursor ); sqlite3PagerClose(pBt->pPager, p->db); if( pBt->xFreeSchema && pBt->pSchema ){ pBt->xFreeSchema(pBt->pSchema); } sqlite3DbFree(0, pBt->pSchema); freeTempSpace(pBt); sqlite3_free(pBt); } #ifndef SQLITE_OMIT_SHARED_CACHE assert( p->wantToLock==0 ); assert( p->locked==0 ); if( p->pPrev ) p->pPrev->pNext = p->pNext; if( p->pNext ) p->pNext->pPrev = p->pPrev; #endif sqlite3_free(p); return SQLITE_OK; } /* ** Change the "soft" limit on the number of pages in the cache. ** Unused and unmodified pages will be recycled when the number of ** pages in the cache exceeds this soft limit. But the size of the ** cache is allowed to grow larger than this limit if it contains ** dirty pages or pages still in active use. */ SQLITE_PRIVATE int sqlite3BtreeSetCacheSize(Btree *p, int mxPage){ BtShared *pBt = p->pBt; assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); sqlite3PagerSetCachesize(pBt->pPager, mxPage); sqlite3BtreeLeave(p); return SQLITE_OK; } /* ** Change the "spill" limit on the number of pages in the cache. ** If the number of pages exceeds this limit during a write transaction, ** the pager might attempt to "spill" pages to the journal early in ** order to free up memory. ** ** The value returned is the current spill size. If zero is passed ** as an argument, no changes are made to the spill size setting, so ** using mxPage of 0 is a way to query the current spill size. */ SQLITE_PRIVATE int sqlite3BtreeSetSpillSize(Btree *p, int mxPage){ BtShared *pBt = p->pBt; int res; assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); res = sqlite3PagerSetSpillsize(pBt->pPager, mxPage); sqlite3BtreeLeave(p); return res; } #if SQLITE_MAX_MMAP_SIZE>0 /* ** Change the limit on the amount of the database file that may be ** memory mapped. */ SQLITE_PRIVATE int sqlite3BtreeSetMmapLimit(Btree *p, sqlite3_int64 szMmap){ BtShared *pBt = p->pBt; assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); sqlite3PagerSetMmapLimit(pBt->pPager, szMmap); sqlite3BtreeLeave(p); return SQLITE_OK; } #endif /* SQLITE_MAX_MMAP_SIZE>0 */ /* ** Change the way data is synced to disk in order to increase or decrease ** how well the database resists damage due to OS crashes and power ** failures. Level 1 is the same as asynchronous (no syncs() occur and ** there is a high probability of damage) Level 2 is the default. There ** is a very low but non-zero probability of damage. Level 3 reduces the ** probability of damage to near zero but with a write performance reduction. */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS SQLITE_PRIVATE int sqlite3BtreeSetPagerFlags( Btree *p, /* The btree to set the safety level on */ unsigned pgFlags /* Various PAGER_* flags */ ){ BtShared *pBt = p->pBt; assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); sqlite3PagerSetFlags(pBt->pPager, pgFlags); sqlite3BtreeLeave(p); return SQLITE_OK; } #endif /* ** Change the default pages size and the number of reserved bytes per page. ** Or, if the page size has already been fixed, return SQLITE_READONLY ** without changing anything. ** ** The page size must be a power of 2 between 512 and 65536. If the page ** size supplied does not meet this constraint then the page size is not ** changed. ** ** Page sizes are constrained to be a power of two so that the region ** of the database file used for locking (beginning at PENDING_BYTE, ** the first byte past the 1GB boundary, 0x40000000) needs to occur ** at the beginning of a page. ** ** If parameter nReserve is less than zero, then the number of reserved ** bytes per page is left unchanged. ** ** If the iFix!=0 then the BTS_PAGESIZE_FIXED flag is set so that the page size ** and autovacuum mode can no longer be changed. */ SQLITE_PRIVATE int sqlite3BtreeSetPageSize(Btree *p, int pageSize, int nReserve, int iFix){ int rc = SQLITE_OK; int x; BtShared *pBt = p->pBt; assert( nReserve>=0 && nReserve<=255 ); sqlite3BtreeEnter(p); pBt->nReserveWanted = nReserve; x = pBt->pageSize - pBt->usableSize; if( nReservebtsFlags & BTS_PAGESIZE_FIXED ){ sqlite3BtreeLeave(p); return SQLITE_READONLY; } assert( nReserve>=0 && nReserve<=255 ); if( pageSize>=512 && pageSize<=SQLITE_MAX_PAGE_SIZE && ((pageSize-1)&pageSize)==0 ){ assert( (pageSize & 7)==0 ); assert( !pBt->pCursor ); pBt->pageSize = (u32)pageSize; freeTempSpace(pBt); } rc = sqlite3PagerSetPagesize(pBt->pPager, &pBt->pageSize, nReserve); pBt->usableSize = pBt->pageSize - (u16)nReserve; if( iFix ) pBt->btsFlags |= BTS_PAGESIZE_FIXED; sqlite3BtreeLeave(p); return rc; } /* ** Return the currently defined page size */ SQLITE_PRIVATE int sqlite3BtreeGetPageSize(Btree *p){ return p->pBt->pageSize; } /* ** This function is similar to sqlite3BtreeGetReserve(), except that it ** may only be called if it is guaranteed that the b-tree mutex is already ** held. ** ** This is useful in one special case in the backup API code where it is ** known that the shared b-tree mutex is held, but the mutex on the ** database handle that owns *p is not. In this case if sqlite3BtreeEnter() ** were to be called, it might collide with some other operation on the ** database handle that owns *p, causing undefined behavior. */ SQLITE_PRIVATE int sqlite3BtreeGetReserveNoMutex(Btree *p){ int n; assert( sqlite3_mutex_held(p->pBt->mutex) ); n = p->pBt->pageSize - p->pBt->usableSize; return n; } /* ** Return the number of bytes of space at the end of every page that ** are intentually left unused. This is the "reserved" space that is ** sometimes used by extensions. ** ** The value returned is the larger of the current reserve size and ** the latest reserve size requested by SQLITE_FILECTRL_RESERVE_BYTES. ** The amount of reserve can only grow - never shrink. */ SQLITE_PRIVATE int sqlite3BtreeGetRequestedReserve(Btree *p){ int n1, n2; sqlite3BtreeEnter(p); n1 = (int)p->pBt->nReserveWanted; n2 = sqlite3BtreeGetReserveNoMutex(p); sqlite3BtreeLeave(p); return n1>n2 ? n1 : n2; } /* ** Set the maximum page count for a database if mxPage is positive. ** No changes are made if mxPage is 0 or negative. ** Regardless of the value of mxPage, return the maximum page count. */ SQLITE_PRIVATE Pgno sqlite3BtreeMaxPageCount(Btree *p, Pgno mxPage){ Pgno n; sqlite3BtreeEnter(p); n = sqlite3PagerMaxPageCount(p->pBt->pPager, mxPage); sqlite3BtreeLeave(p); return n; } /* ** Change the values for the BTS_SECURE_DELETE and BTS_OVERWRITE flags: ** ** newFlag==0 Both BTS_SECURE_DELETE and BTS_OVERWRITE are cleared ** newFlag==1 BTS_SECURE_DELETE set and BTS_OVERWRITE is cleared ** newFlag==2 BTS_SECURE_DELETE cleared and BTS_OVERWRITE is set ** newFlag==(-1) No changes ** ** This routine acts as a query if newFlag is less than zero ** ** With BTS_OVERWRITE set, deleted content is overwritten by zeros, but ** freelist leaf pages are not written back to the database. Thus in-page ** deleted content is cleared, but freelist deleted content is not. ** ** With BTS_SECURE_DELETE, operation is like BTS_OVERWRITE with the addition ** that freelist leaf pages are written back into the database, increasing ** the amount of disk I/O. */ SQLITE_PRIVATE int sqlite3BtreeSecureDelete(Btree *p, int newFlag){ int b; if( p==0 ) return 0; sqlite3BtreeEnter(p); assert( BTS_OVERWRITE==BTS_SECURE_DELETE*2 ); assert( BTS_FAST_SECURE==(BTS_OVERWRITE|BTS_SECURE_DELETE) ); if( newFlag>=0 ){ p->pBt->btsFlags &= ~BTS_FAST_SECURE; p->pBt->btsFlags |= BTS_SECURE_DELETE*newFlag; } b = (p->pBt->btsFlags & BTS_FAST_SECURE)/BTS_SECURE_DELETE; sqlite3BtreeLeave(p); return b; } /* ** Change the 'auto-vacuum' property of the database. If the 'autoVacuum' ** parameter is non-zero, then auto-vacuum mode is enabled. If zero, it ** is disabled. The default value for the auto-vacuum property is ** determined by the SQLITE_DEFAULT_AUTOVACUUM macro. */ SQLITE_PRIVATE int sqlite3BtreeSetAutoVacuum(Btree *p, int autoVacuum){ #ifdef SQLITE_OMIT_AUTOVACUUM return SQLITE_READONLY; #else BtShared *pBt = p->pBt; int rc = SQLITE_OK; u8 av = (u8)autoVacuum; sqlite3BtreeEnter(p); if( (pBt->btsFlags & BTS_PAGESIZE_FIXED)!=0 && (av ?1:0)!=pBt->autoVacuum ){ rc = SQLITE_READONLY; }else{ pBt->autoVacuum = av ?1:0; pBt->incrVacuum = av==2 ?1:0; } sqlite3BtreeLeave(p); return rc; #endif } /* ** Return the value of the 'auto-vacuum' property. If auto-vacuum is ** enabled 1 is returned. Otherwise 0. */ SQLITE_PRIVATE int sqlite3BtreeGetAutoVacuum(Btree *p){ #ifdef SQLITE_OMIT_AUTOVACUUM return BTREE_AUTOVACUUM_NONE; #else int rc; sqlite3BtreeEnter(p); rc = ( (!p->pBt->autoVacuum)?BTREE_AUTOVACUUM_NONE: (!p->pBt->incrVacuum)?BTREE_AUTOVACUUM_FULL: BTREE_AUTOVACUUM_INCR ); sqlite3BtreeLeave(p); return rc; #endif } /* ** If the user has not set the safety-level for this database connection ** using "PRAGMA synchronous", and if the safety-level is not already ** set to the value passed to this function as the second parameter, ** set it so. */ #if SQLITE_DEFAULT_SYNCHRONOUS!=SQLITE_DEFAULT_WAL_SYNCHRONOUS \ && !defined(SQLITE_OMIT_WAL) static void setDefaultSyncFlag(BtShared *pBt, u8 safety_level){ sqlite3 *db; Db *pDb; if( (db=pBt->db)!=0 && (pDb=db->aDb)!=0 ){ while( pDb->pBt==0 || pDb->pBt->pBt!=pBt ){ pDb++; } if( pDb->bSyncSet==0 && pDb->safety_level!=safety_level && pDb!=&db->aDb[1] ){ pDb->safety_level = safety_level; sqlite3PagerSetFlags(pBt->pPager, pDb->safety_level | (db->flags & PAGER_FLAGS_MASK)); } } } #else # define setDefaultSyncFlag(pBt,safety_level) #endif /* Forward declaration */ static int newDatabase(BtShared*); /* ** Get a reference to pPage1 of the database file. This will ** also acquire a readlock on that file. ** ** SQLITE_OK is returned on success. If the file is not a ** well-formed database file, then SQLITE_CORRUPT is returned. ** SQLITE_BUSY is returned if the database is locked. SQLITE_NOMEM ** is returned if we run out of memory. */ static int lockBtree(BtShared *pBt){ int rc; /* Result code from subfunctions */ MemPage *pPage1; /* Page 1 of the database file */ u32 nPage; /* Number of pages in the database */ u32 nPageFile = 0; /* Number of pages in the database file */ u32 nPageHeader; /* Number of pages in the database according to hdr */ assert( sqlite3_mutex_held(pBt->mutex) ); assert( pBt->pPage1==0 ); rc = sqlite3PagerSharedLock(pBt->pPager); if( rc!=SQLITE_OK ) return rc; rc = btreeGetPage(pBt, 1, &pPage1, 0); if( rc!=SQLITE_OK ) return rc; /* Do some checking to help insure the file we opened really is ** a valid database file. */ nPage = nPageHeader = get4byte(28+(u8*)pPage1->aData); sqlite3PagerPagecount(pBt->pPager, (int*)&nPageFile); if( nPage==0 || memcmp(24+(u8*)pPage1->aData, 92+(u8*)pPage1->aData,4)!=0 ){ nPage = nPageFile; } if( (pBt->db->flags & SQLITE_ResetDatabase)!=0 ){ nPage = 0; } if( nPage>0 ){ u32 pageSize; u32 usableSize; u8 *page1 = pPage1->aData; rc = SQLITE_NOTADB; /* EVIDENCE-OF: R-43737-39999 Every valid SQLite database file begins ** with the following 16 bytes (in hex): 53 51 4c 69 74 65 20 66 6f 72 6d ** 61 74 20 33 00. */ if( memcmp(page1, zMagicHeader, 16)!=0 ){ goto page1_init_failed; } #ifdef SQLITE_OMIT_WAL if( page1[18]>1 ){ pBt->btsFlags |= BTS_READ_ONLY; } if( page1[19]>1 ){ goto page1_init_failed; } #else if( page1[18]>2 ){ pBt->btsFlags |= BTS_READ_ONLY; } if( page1[19]>2 ){ goto page1_init_failed; } /* If the write version is set to 2, this database should be accessed ** in WAL mode. If the log is not already open, open it now. Then ** return SQLITE_OK and return without populating BtShared.pPage1. ** The caller detects this and calls this function again. This is ** required as the version of page 1 currently in the page1 buffer ** may not be the latest version - there may be a newer one in the log ** file. */ if( page1[19]==2 && (pBt->btsFlags & BTS_NO_WAL)==0 ){ int isOpen = 0; rc = sqlite3PagerOpenWal(pBt->pPager, &isOpen); if( rc!=SQLITE_OK ){ goto page1_init_failed; }else{ setDefaultSyncFlag(pBt, SQLITE_DEFAULT_WAL_SYNCHRONOUS+1); if( isOpen==0 ){ releasePageOne(pPage1); return SQLITE_OK; } } rc = SQLITE_NOTADB; }else{ setDefaultSyncFlag(pBt, SQLITE_DEFAULT_SYNCHRONOUS+1); } #endif /* EVIDENCE-OF: R-15465-20813 The maximum and minimum embedded payload ** fractions and the leaf payload fraction values must be 64, 32, and 32. ** ** The original design allowed these amounts to vary, but as of ** version 3.6.0, we require them to be fixed. */ if( memcmp(&page1[21], "\100\040\040",3)!=0 ){ goto page1_init_failed; } /* EVIDENCE-OF: R-51873-39618 The page size for a database file is ** determined by the 2-byte integer located at an offset of 16 bytes from ** the beginning of the database file. */ pageSize = (page1[16]<<8) | (page1[17]<<16); /* EVIDENCE-OF: R-25008-21688 The size of a page is a power of two ** between 512 and 65536 inclusive. */ if( ((pageSize-1)&pageSize)!=0 || pageSize>SQLITE_MAX_PAGE_SIZE || pageSize<=256 ){ goto page1_init_failed; } pBt->btsFlags |= BTS_PAGESIZE_FIXED; assert( (pageSize & 7)==0 ); /* EVIDENCE-OF: R-59310-51205 The "reserved space" size in the 1-byte ** integer at offset 20 is the number of bytes of space at the end of ** each page to reserve for extensions. ** ** EVIDENCE-OF: R-37497-42412 The size of the reserved region is ** determined by the one-byte unsigned integer found at an offset of 20 ** into the database file header. */ usableSize = pageSize - page1[20]; if( (u32)pageSize!=pBt->pageSize ){ /* After reading the first page of the database assuming a page size ** of BtShared.pageSize, we have discovered that the page-size is ** actually pageSize. Unlock the database, leave pBt->pPage1 at ** zero and return SQLITE_OK. The caller will call this function ** again with the correct page-size. */ releasePageOne(pPage1); pBt->usableSize = usableSize; pBt->pageSize = pageSize; freeTempSpace(pBt); rc = sqlite3PagerSetPagesize(pBt->pPager, &pBt->pageSize, pageSize-usableSize); return rc; } if( sqlite3WritableSchema(pBt->db)==0 && nPage>nPageFile ){ rc = SQLITE_CORRUPT_BKPT; goto page1_init_failed; } /* EVIDENCE-OF: R-28312-64704 However, the usable size is not allowed to ** be less than 480. In other words, if the page size is 512, then the ** reserved space size cannot exceed 32. */ if( usableSize<480 ){ goto page1_init_failed; } pBt->pageSize = pageSize; pBt->usableSize = usableSize; #ifndef SQLITE_OMIT_AUTOVACUUM pBt->autoVacuum = (get4byte(&page1[36 + 4*4])?1:0); pBt->incrVacuum = (get4byte(&page1[36 + 7*4])?1:0); #endif } /* maxLocal is the maximum amount of payload to store locally for ** a cell. Make sure it is small enough so that at least minFanout ** cells can will fit on one page. We assume a 10-byte page header. ** Besides the payload, the cell must store: ** 2-byte pointer to the cell ** 4-byte child pointer ** 9-byte nKey value ** 4-byte nData value ** 4-byte overflow page pointer ** So a cell consists of a 2-byte pointer, a header which is as much as ** 17 bytes long, 0 to N bytes of payload, and an optional 4 byte overflow ** page pointer. */ pBt->maxLocal = (u16)((pBt->usableSize-12)*64/255 - 23); pBt->minLocal = (u16)((pBt->usableSize-12)*32/255 - 23); pBt->maxLeaf = (u16)(pBt->usableSize - 35); pBt->minLeaf = (u16)((pBt->usableSize-12)*32/255 - 23); if( pBt->maxLocal>127 ){ pBt->max1bytePayload = 127; }else{ pBt->max1bytePayload = (u8)pBt->maxLocal; } assert( pBt->maxLeaf + 23 <= MX_CELL_SIZE(pBt) ); pBt->pPage1 = pPage1; pBt->nPage = nPage; return SQLITE_OK; page1_init_failed: releasePageOne(pPage1); pBt->pPage1 = 0; return rc; } #ifndef NDEBUG /* ** Return the number of cursors open on pBt. This is for use ** in assert() expressions, so it is only compiled if NDEBUG is not ** defined. ** ** Only write cursors are counted if wrOnly is true. If wrOnly is ** false then all cursors are counted. ** ** For the purposes of this routine, a cursor is any cursor that ** is capable of reading or writing to the database. Cursors that ** have been tripped into the CURSOR_FAULT state are not counted. */ static int countValidCursors(BtShared *pBt, int wrOnly){ BtCursor *pCur; int r = 0; for(pCur=pBt->pCursor; pCur; pCur=pCur->pNext){ if( (wrOnly==0 || (pCur->curFlags & BTCF_WriteFlag)!=0) && pCur->eState!=CURSOR_FAULT ) r++; } return r; } #endif /* ** If there are no outstanding cursors and we are not in the middle ** of a transaction but there is a read lock on the database, then ** this routine unrefs the first page of the database file which ** has the effect of releasing the read lock. ** ** If there is a transaction in progress, this routine is a no-op. */ static void unlockBtreeIfUnused(BtShared *pBt){ assert( sqlite3_mutex_held(pBt->mutex) ); assert( countValidCursors(pBt,0)==0 || pBt->inTransaction>TRANS_NONE ); if( pBt->inTransaction==TRANS_NONE && pBt->pPage1!=0 ){ MemPage *pPage1 = pBt->pPage1; assert( pPage1->aData ); assert( sqlite3PagerRefcount(pBt->pPager)==1 ); pBt->pPage1 = 0; releasePageOne(pPage1); } } /* ** If pBt points to an empty file then convert that empty file ** into a new empty database by initializing the first page of ** the database. */ static int newDatabase(BtShared *pBt){ MemPage *pP1; unsigned char *data; int rc; assert( sqlite3_mutex_held(pBt->mutex) ); if( pBt->nPage>0 ){ return SQLITE_OK; } pP1 = pBt->pPage1; assert( pP1!=0 ); data = pP1->aData; rc = sqlite3PagerWrite(pP1->pDbPage); if( rc ) return rc; memcpy(data, zMagicHeader, sizeof(zMagicHeader)); assert( sizeof(zMagicHeader)==16 ); data[16] = (u8)((pBt->pageSize>>8)&0xff); data[17] = (u8)((pBt->pageSize>>16)&0xff); data[18] = 1; data[19] = 1; assert( pBt->usableSize<=pBt->pageSize && pBt->usableSize+255>=pBt->pageSize); data[20] = (u8)(pBt->pageSize - pBt->usableSize); data[21] = 64; data[22] = 32; data[23] = 32; memset(&data[24], 0, 100-24); zeroPage(pP1, PTF_INTKEY|PTF_LEAF|PTF_LEAFDATA ); pBt->btsFlags |= BTS_PAGESIZE_FIXED; #ifndef SQLITE_OMIT_AUTOVACUUM assert( pBt->autoVacuum==1 || pBt->autoVacuum==0 ); assert( pBt->incrVacuum==1 || pBt->incrVacuum==0 ); put4byte(&data[36 + 4*4], pBt->autoVacuum); put4byte(&data[36 + 7*4], pBt->incrVacuum); #endif pBt->nPage = 1; data[31] = 1; return SQLITE_OK; } /* ** Initialize the first page of the database file (creating a database ** consisting of a single page and no schema objects). Return SQLITE_OK ** if successful, or an SQLite error code otherwise. */ SQLITE_PRIVATE int sqlite3BtreeNewDb(Btree *p){ int rc; sqlite3BtreeEnter(p); p->pBt->nPage = 0; rc = newDatabase(p->pBt); sqlite3BtreeLeave(p); return rc; } /* ** Attempt to start a new transaction. A write-transaction ** is started if the second argument is nonzero, otherwise a read- ** transaction. If the second argument is 2 or more and exclusive ** transaction is started, meaning that no other process is allowed ** to access the database. A preexisting transaction may not be ** upgraded to exclusive by calling this routine a second time - the ** exclusivity flag only works for a new transaction. ** ** A write-transaction must be started before attempting any ** changes to the database. None of the following routines ** will work unless a transaction is started first: ** ** sqlite3BtreeCreateTable() ** sqlite3BtreeCreateIndex() ** sqlite3BtreeClearTable() ** sqlite3BtreeDropTable() ** sqlite3BtreeInsert() ** sqlite3BtreeDelete() ** sqlite3BtreeUpdateMeta() ** ** If an initial attempt to acquire the lock fails because of lock contention ** and the database was previously unlocked, then invoke the busy handler ** if there is one. But if there was previously a read-lock, do not ** invoke the busy handler - just return SQLITE_BUSY. SQLITE_BUSY is ** returned when there is already a read-lock in order to avoid a deadlock. ** ** Suppose there are two processes A and B. A has a read lock and B has ** a reserved lock. B tries to promote to exclusive but is blocked because ** of A's read lock. A tries to promote to reserved but is blocked by B. ** One or the other of the two processes must give way or there can be ** no progress. By returning SQLITE_BUSY and not invoking the busy callback ** when A already has a read lock, we encourage A to give up and let B ** proceed. */ SQLITE_PRIVATE int sqlite3BtreeBeginTrans(Btree *p, int wrflag, int *pSchemaVersion){ BtShared *pBt = p->pBt; Pager *pPager = pBt->pPager; int rc = SQLITE_OK; sqlite3BtreeEnter(p); btreeIntegrity(p); /* If the btree is already in a write-transaction, or it ** is already in a read-transaction and a read-transaction ** is requested, this is a no-op. */ if( p->inTrans==TRANS_WRITE || (p->inTrans==TRANS_READ && !wrflag) ){ goto trans_begun; } assert( pBt->inTransaction==TRANS_WRITE || IfNotOmitAV(pBt->bDoTruncate)==0 ); if( (p->db->flags & SQLITE_ResetDatabase) && sqlite3PagerIsreadonly(pPager)==0 ){ pBt->btsFlags &= ~BTS_READ_ONLY; } /* Write transactions are not possible on a read-only database */ if( (pBt->btsFlags & BTS_READ_ONLY)!=0 && wrflag ){ rc = SQLITE_READONLY; goto trans_begun; } #ifndef SQLITE_OMIT_SHARED_CACHE { sqlite3 *pBlock = 0; /* If another database handle has already opened a write transaction ** on this shared-btree structure and a second write transaction is ** requested, return SQLITE_LOCKED. */ if( (wrflag && pBt->inTransaction==TRANS_WRITE) || (pBt->btsFlags & BTS_PENDING)!=0 ){ pBlock = pBt->pWriter->db; }else if( wrflag>1 ){ BtLock *pIter; for(pIter=pBt->pLock; pIter; pIter=pIter->pNext){ if( pIter->pBtree!=p ){ pBlock = pIter->pBtree->db; break; } } } if( pBlock ){ sqlite3ConnectionBlocked(p->db, pBlock); rc = SQLITE_LOCKED_SHAREDCACHE; goto trans_begun; } } #endif /* Any read-only or read-write transaction implies a read-lock on ** page 1. So if some other shared-cache client already has a write-lock ** on page 1, the transaction cannot be opened. */ rc = querySharedCacheTableLock(p, SCHEMA_ROOT, READ_LOCK); if( SQLITE_OK!=rc ) goto trans_begun; pBt->btsFlags &= ~BTS_INITIALLY_EMPTY; if( pBt->nPage==0 ) pBt->btsFlags |= BTS_INITIALLY_EMPTY; do { sqlite3PagerWalDb(pPager, p->db); #ifdef SQLITE_ENABLE_SETLK_TIMEOUT /* If transitioning from no transaction directly to a write transaction, ** block for the WRITER lock first if possible. */ if( pBt->pPage1==0 && wrflag ){ assert( pBt->inTransaction==TRANS_NONE ); rc = sqlite3PagerWalWriteLock(pPager, 1); if( rc!=SQLITE_BUSY && rc!=SQLITE_OK ) break; } #endif /* Call lockBtree() until either pBt->pPage1 is populated or ** lockBtree() returns something other than SQLITE_OK. lockBtree() ** may return SQLITE_OK but leave pBt->pPage1 set to 0 if after ** reading page 1 it discovers that the page-size of the database ** file is not pBt->pageSize. In this case lockBtree() will update ** pBt->pageSize to the page-size of the file on disk. */ while( pBt->pPage1==0 && SQLITE_OK==(rc = lockBtree(pBt)) ); if( rc==SQLITE_OK && wrflag ){ if( (pBt->btsFlags & BTS_READ_ONLY)!=0 ){ rc = SQLITE_READONLY; }else{ rc = sqlite3PagerBegin(pPager, wrflag>1, sqlite3TempInMemory(p->db)); if( rc==SQLITE_OK ){ rc = newDatabase(pBt); }else if( rc==SQLITE_BUSY_SNAPSHOT && pBt->inTransaction==TRANS_NONE ){ /* if there was no transaction opened when this function was ** called and SQLITE_BUSY_SNAPSHOT is returned, change the error ** code to SQLITE_BUSY. */ rc = SQLITE_BUSY; } } } if( rc!=SQLITE_OK ){ (void)sqlite3PagerWalWriteLock(pPager, 0); unlockBtreeIfUnused(pBt); } }while( (rc&0xFF)==SQLITE_BUSY && pBt->inTransaction==TRANS_NONE && btreeInvokeBusyHandler(pBt) ); sqlite3PagerWalDb(pPager, 0); #ifdef SQLITE_ENABLE_SETLK_TIMEOUT if( rc==SQLITE_BUSY_TIMEOUT ) rc = SQLITE_BUSY; #endif if( rc==SQLITE_OK ){ if( p->inTrans==TRANS_NONE ){ pBt->nTransaction++; #ifndef SQLITE_OMIT_SHARED_CACHE if( p->sharable ){ assert( p->lock.pBtree==p && p->lock.iTable==1 ); p->lock.eLock = READ_LOCK; p->lock.pNext = pBt->pLock; pBt->pLock = &p->lock; } #endif } p->inTrans = (wrflag?TRANS_WRITE:TRANS_READ); if( p->inTrans>pBt->inTransaction ){ pBt->inTransaction = p->inTrans; } if( wrflag ){ MemPage *pPage1 = pBt->pPage1; #ifndef SQLITE_OMIT_SHARED_CACHE assert( !pBt->pWriter ); pBt->pWriter = p; pBt->btsFlags &= ~BTS_EXCLUSIVE; if( wrflag>1 ) pBt->btsFlags |= BTS_EXCLUSIVE; #endif /* If the db-size header field is incorrect (as it may be if an old ** client has been writing the database file), update it now. Doing ** this sooner rather than later means the database size can safely ** re-read the database size from page 1 if a savepoint or transaction ** rollback occurs within the transaction. */ if( pBt->nPage!=get4byte(&pPage1->aData[28]) ){ rc = sqlite3PagerWrite(pPage1->pDbPage); if( rc==SQLITE_OK ){ put4byte(&pPage1->aData[28], pBt->nPage); } } } } trans_begun: if( rc==SQLITE_OK ){ if( pSchemaVersion ){ *pSchemaVersion = get4byte(&pBt->pPage1->aData[40]); } if( wrflag ){ /* This call makes sure that the pager has the correct number of ** open savepoints. If the second parameter is greater than 0 and ** the sub-journal is not already open, then it will be opened here. */ rc = sqlite3PagerOpenSavepoint(pPager, p->db->nSavepoint); } } btreeIntegrity(p); sqlite3BtreeLeave(p); return rc; } #ifndef SQLITE_OMIT_AUTOVACUUM /* ** Set the pointer-map entries for all children of page pPage. Also, if ** pPage contains cells that point to overflow pages, set the pointer ** map entries for the overflow pages as well. */ static int setChildPtrmaps(MemPage *pPage){ int i; /* Counter variable */ int nCell; /* Number of cells in page pPage */ int rc; /* Return code */ BtShared *pBt = pPage->pBt; Pgno pgno = pPage->pgno; assert( sqlite3_mutex_held(pPage->pBt->mutex) ); rc = pPage->isInit ? SQLITE_OK : btreeInitPage(pPage); if( rc!=SQLITE_OK ) return rc; nCell = pPage->nCell; for(i=0; ileaf ){ Pgno childPgno = get4byte(pCell); ptrmapPut(pBt, childPgno, PTRMAP_BTREE, pgno, &rc); } } if( !pPage->leaf ){ Pgno childPgno = get4byte(&pPage->aData[pPage->hdrOffset+8]); ptrmapPut(pBt, childPgno, PTRMAP_BTREE, pgno, &rc); } return rc; } /* ** Somewhere on pPage is a pointer to page iFrom. Modify this pointer so ** that it points to iTo. Parameter eType describes the type of pointer to ** be modified, as follows: ** ** PTRMAP_BTREE: pPage is a btree-page. The pointer points at a child ** page of pPage. ** ** PTRMAP_OVERFLOW1: pPage is a btree-page. The pointer points at an overflow ** page pointed to by one of the cells on pPage. ** ** PTRMAP_OVERFLOW2: pPage is an overflow-page. The pointer points at the next ** overflow page in the list. */ static int modifyPagePointer(MemPage *pPage, Pgno iFrom, Pgno iTo, u8 eType){ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( sqlite3PagerIswriteable(pPage->pDbPage) ); if( eType==PTRMAP_OVERFLOW2 ){ /* The pointer is always the first 4 bytes of the page in this case. */ if( get4byte(pPage->aData)!=iFrom ){ return SQLITE_CORRUPT_PAGE(pPage); } put4byte(pPage->aData, iTo); }else{ int i; int nCell; int rc; rc = pPage->isInit ? SQLITE_OK : btreeInitPage(pPage); if( rc ) return rc; nCell = pPage->nCell; for(i=0; ixParseCell(pPage, pCell, &info); if( info.nLocal pPage->aData+pPage->pBt->usableSize ){ return SQLITE_CORRUPT_PAGE(pPage); } if( iFrom==get4byte(pCell+info.nSize-4) ){ put4byte(pCell+info.nSize-4, iTo); break; } } }else{ if( get4byte(pCell)==iFrom ){ put4byte(pCell, iTo); break; } } } if( i==nCell ){ if( eType!=PTRMAP_BTREE || get4byte(&pPage->aData[pPage->hdrOffset+8])!=iFrom ){ return SQLITE_CORRUPT_PAGE(pPage); } put4byte(&pPage->aData[pPage->hdrOffset+8], iTo); } } return SQLITE_OK; } /* ** Move the open database page pDbPage to location iFreePage in the ** database. The pDbPage reference remains valid. ** ** The isCommit flag indicates that there is no need to remember that ** the journal needs to be sync()ed before database page pDbPage->pgno ** can be written to. The caller has already promised not to write to that ** page. */ static int relocatePage( BtShared *pBt, /* Btree */ MemPage *pDbPage, /* Open page to move */ u8 eType, /* Pointer map 'type' entry for pDbPage */ Pgno iPtrPage, /* Pointer map 'page-no' entry for pDbPage */ Pgno iFreePage, /* The location to move pDbPage to */ int isCommit /* isCommit flag passed to sqlite3PagerMovepage */ ){ MemPage *pPtrPage; /* The page that contains a pointer to pDbPage */ Pgno iDbPage = pDbPage->pgno; Pager *pPager = pBt->pPager; int rc; assert( eType==PTRMAP_OVERFLOW2 || eType==PTRMAP_OVERFLOW1 || eType==PTRMAP_BTREE || eType==PTRMAP_ROOTPAGE ); assert( sqlite3_mutex_held(pBt->mutex) ); assert( pDbPage->pBt==pBt ); if( iDbPage<3 ) return SQLITE_CORRUPT_BKPT; /* Move page iDbPage from its current location to page number iFreePage */ TRACE(("AUTOVACUUM: Moving %d to free page %d (ptr page %d type %d)\n", iDbPage, iFreePage, iPtrPage, eType)); rc = sqlite3PagerMovepage(pPager, pDbPage->pDbPage, iFreePage, isCommit); if( rc!=SQLITE_OK ){ return rc; } pDbPage->pgno = iFreePage; /* If pDbPage was a btree-page, then it may have child pages and/or cells ** that point to overflow pages. The pointer map entries for all these ** pages need to be changed. ** ** If pDbPage is an overflow page, then the first 4 bytes may store a ** pointer to a subsequent overflow page. If this is the case, then ** the pointer map needs to be updated for the subsequent overflow page. */ if( eType==PTRMAP_BTREE || eType==PTRMAP_ROOTPAGE ){ rc = setChildPtrmaps(pDbPage); if( rc!=SQLITE_OK ){ return rc; } }else{ Pgno nextOvfl = get4byte(pDbPage->aData); if( nextOvfl!=0 ){ ptrmapPut(pBt, nextOvfl, PTRMAP_OVERFLOW2, iFreePage, &rc); if( rc!=SQLITE_OK ){ return rc; } } } /* Fix the database pointer on page iPtrPage that pointed at iDbPage so ** that it points at iFreePage. Also fix the pointer map entry for ** iPtrPage. */ if( eType!=PTRMAP_ROOTPAGE ){ rc = btreeGetPage(pBt, iPtrPage, &pPtrPage, 0); if( rc!=SQLITE_OK ){ return rc; } rc = sqlite3PagerWrite(pPtrPage->pDbPage); if( rc!=SQLITE_OK ){ releasePage(pPtrPage); return rc; } rc = modifyPagePointer(pPtrPage, iDbPage, iFreePage, eType); releasePage(pPtrPage); if( rc==SQLITE_OK ){ ptrmapPut(pBt, iFreePage, eType, iPtrPage, &rc); } } return rc; } /* Forward declaration required by incrVacuumStep(). */ static int allocateBtreePage(BtShared *, MemPage **, Pgno *, Pgno, u8); /* ** Perform a single step of an incremental-vacuum. If successful, return ** SQLITE_OK. If there is no work to do (and therefore no point in ** calling this function again), return SQLITE_DONE. Or, if an error ** occurs, return some other error code. ** ** More specifically, this function attempts to re-organize the database so ** that the last page of the file currently in use is no longer in use. ** ** Parameter nFin is the number of pages that this database would contain ** were this function called until it returns SQLITE_DONE. ** ** If the bCommit parameter is non-zero, this function assumes that the ** caller will keep calling incrVacuumStep() until it returns SQLITE_DONE ** or an error. bCommit is passed true for an auto-vacuum-on-commit ** operation, or false for an incremental vacuum. */ static int incrVacuumStep(BtShared *pBt, Pgno nFin, Pgno iLastPg, int bCommit){ Pgno nFreeList; /* Number of pages still on the free-list */ int rc; assert( sqlite3_mutex_held(pBt->mutex) ); assert( iLastPg>nFin ); if( !PTRMAP_ISPAGE(pBt, iLastPg) && iLastPg!=PENDING_BYTE_PAGE(pBt) ){ u8 eType; Pgno iPtrPage; nFreeList = get4byte(&pBt->pPage1->aData[36]); if( nFreeList==0 ){ return SQLITE_DONE; } rc = ptrmapGet(pBt, iLastPg, &eType, &iPtrPage); if( rc!=SQLITE_OK ){ return rc; } if( eType==PTRMAP_ROOTPAGE ){ return SQLITE_CORRUPT_BKPT; } if( eType==PTRMAP_FREEPAGE ){ if( bCommit==0 ){ /* Remove the page from the files free-list. This is not required ** if bCommit is non-zero. In that case, the free-list will be ** truncated to zero after this function returns, so it doesn't ** matter if it still contains some garbage entries. */ Pgno iFreePg; MemPage *pFreePg; rc = allocateBtreePage(pBt, &pFreePg, &iFreePg, iLastPg, BTALLOC_EXACT); if( rc!=SQLITE_OK ){ return rc; } assert( iFreePg==iLastPg ); releasePage(pFreePg); } } else { Pgno iFreePg; /* Index of free page to move pLastPg to */ MemPage *pLastPg; u8 eMode = BTALLOC_ANY; /* Mode parameter for allocateBtreePage() */ Pgno iNear = 0; /* nearby parameter for allocateBtreePage() */ rc = btreeGetPage(pBt, iLastPg, &pLastPg, 0); if( rc!=SQLITE_OK ){ return rc; } /* If bCommit is zero, this loop runs exactly once and page pLastPg ** is swapped with the first free page pulled off the free list. ** ** On the other hand, if bCommit is greater than zero, then keep ** looping until a free-page located within the first nFin pages ** of the file is found. */ if( bCommit==0 ){ eMode = BTALLOC_LE; iNear = nFin; } do { MemPage *pFreePg; rc = allocateBtreePage(pBt, &pFreePg, &iFreePg, iNear, eMode); if( rc!=SQLITE_OK ){ releasePage(pLastPg); return rc; } releasePage(pFreePg); }while( bCommit && iFreePg>nFin ); assert( iFreePgbDoTruncate = 1; pBt->nPage = iLastPg; } return SQLITE_OK; } /* ** The database opened by the first argument is an auto-vacuum database ** nOrig pages in size containing nFree free pages. Return the expected ** size of the database in pages following an auto-vacuum operation. */ static Pgno finalDbSize(BtShared *pBt, Pgno nOrig, Pgno nFree){ int nEntry; /* Number of entries on one ptrmap page */ Pgno nPtrmap; /* Number of PtrMap pages to be freed */ Pgno nFin; /* Return value */ nEntry = pBt->usableSize/5; nPtrmap = (nFree-nOrig+PTRMAP_PAGENO(pBt, nOrig)+nEntry)/nEntry; nFin = nOrig - nFree - nPtrmap; if( nOrig>PENDING_BYTE_PAGE(pBt) && nFinpBt; sqlite3BtreeEnter(p); assert( pBt->inTransaction==TRANS_WRITE && p->inTrans==TRANS_WRITE ); if( !pBt->autoVacuum ){ rc = SQLITE_DONE; }else{ Pgno nOrig = btreePagecount(pBt); Pgno nFree = get4byte(&pBt->pPage1->aData[36]); Pgno nFin = finalDbSize(pBt, nOrig, nFree); if( nOrig=nOrig ){ rc = SQLITE_CORRUPT_BKPT; }else if( nFree>0 ){ rc = saveAllCursors(pBt, 0, 0); if( rc==SQLITE_OK ){ invalidateAllOverflowCache(pBt); rc = incrVacuumStep(pBt, nFin, nOrig, 0); } if( rc==SQLITE_OK ){ rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); put4byte(&pBt->pPage1->aData[28], pBt->nPage); } }else{ rc = SQLITE_DONE; } } sqlite3BtreeLeave(p); return rc; } /* ** This routine is called prior to sqlite3PagerCommit when a transaction ** is committed for an auto-vacuum database. ** ** If SQLITE_OK is returned, then *pnTrunc is set to the number of pages ** the database file should be truncated to during the commit process. ** i.e. the database has been reorganized so that only the first *pnTrunc ** pages are in use. */ static int autoVacuumCommit(BtShared *pBt){ int rc = SQLITE_OK; Pager *pPager = pBt->pPager; VVA_ONLY( int nRef = sqlite3PagerRefcount(pPager); ) assert( sqlite3_mutex_held(pBt->mutex) ); invalidateAllOverflowCache(pBt); assert(pBt->autoVacuum); if( !pBt->incrVacuum ){ Pgno nFin; /* Number of pages in database after autovacuuming */ Pgno nFree; /* Number of pages on the freelist initially */ Pgno iFree; /* The next page to be freed */ Pgno nOrig; /* Database size before freeing */ nOrig = btreePagecount(pBt); if( PTRMAP_ISPAGE(pBt, nOrig) || nOrig==PENDING_BYTE_PAGE(pBt) ){ /* It is not possible to create a database for which the final page ** is either a pointer-map page or the pending-byte page. If one ** is encountered, this indicates corruption. */ return SQLITE_CORRUPT_BKPT; } nFree = get4byte(&pBt->pPage1->aData[36]); nFin = finalDbSize(pBt, nOrig, nFree); if( nFin>nOrig ) return SQLITE_CORRUPT_BKPT; if( nFinnFin && rc==SQLITE_OK; iFree--){ rc = incrVacuumStep(pBt, nFin, iFree, 1); } if( (rc==SQLITE_DONE || rc==SQLITE_OK) && nFree>0 ){ rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); put4byte(&pBt->pPage1->aData[32], 0); put4byte(&pBt->pPage1->aData[36], 0); put4byte(&pBt->pPage1->aData[28], nFin); pBt->bDoTruncate = 1; pBt->nPage = nFin; } if( rc!=SQLITE_OK ){ sqlite3PagerRollback(pPager); } } assert( nRef>=sqlite3PagerRefcount(pPager) ); return rc; } #else /* ifndef SQLITE_OMIT_AUTOVACUUM */ # define setChildPtrmaps(x) SQLITE_OK #endif /* ** This routine does the first phase of a two-phase commit. This routine ** causes a rollback journal to be created (if it does not already exist) ** and populated with enough information so that if a power loss occurs ** the database can be restored to its original state by playing back ** the journal. Then the contents of the journal are flushed out to ** the disk. After the journal is safely on oxide, the changes to the ** database are written into the database file and flushed to oxide. ** At the end of this call, the rollback journal still exists on the ** disk and we are still holding all locks, so the transaction has not ** committed. See sqlite3BtreeCommitPhaseTwo() for the second phase of the ** commit process. ** ** This call is a no-op if no write-transaction is currently active on pBt. ** ** Otherwise, sync the database file for the btree pBt. zSuperJrnl points to ** the name of a super-journal file that should be written into the ** individual journal file, or is NULL, indicating no super-journal file ** (single database transaction). ** ** When this is called, the super-journal should already have been ** created, populated with this journal pointer and synced to disk. ** ** Once this is routine has returned, the only thing required to commit ** the write-transaction for this database file is to delete the journal. */ SQLITE_PRIVATE int sqlite3BtreeCommitPhaseOne(Btree *p, const char *zSuperJrnl){ int rc = SQLITE_OK; if( p->inTrans==TRANS_WRITE ){ BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); #ifndef SQLITE_OMIT_AUTOVACUUM if( pBt->autoVacuum ){ rc = autoVacuumCommit(pBt); if( rc!=SQLITE_OK ){ sqlite3BtreeLeave(p); return rc; } } if( pBt->bDoTruncate ){ sqlite3PagerTruncateImage(pBt->pPager, pBt->nPage); } #endif rc = sqlite3PagerCommitPhaseOne(pBt->pPager, zSuperJrnl, 0); sqlite3BtreeLeave(p); } return rc; } /* ** This function is called from both BtreeCommitPhaseTwo() and BtreeRollback() ** at the conclusion of a transaction. */ static void btreeEndTransaction(Btree *p){ BtShared *pBt = p->pBt; sqlite3 *db = p->db; assert( sqlite3BtreeHoldsMutex(p) ); #ifndef SQLITE_OMIT_AUTOVACUUM pBt->bDoTruncate = 0; #endif if( p->inTrans>TRANS_NONE && db->nVdbeRead>1 ){ /* If there are other active statements that belong to this database ** handle, downgrade to a read-only transaction. The other statements ** may still be reading from the database. */ downgradeAllSharedCacheTableLocks(p); p->inTrans = TRANS_READ; }else{ /* If the handle had any kind of transaction open, decrement the ** transaction count of the shared btree. If the transaction count ** reaches 0, set the shared state to TRANS_NONE. The unlockBtreeIfUnused() ** call below will unlock the pager. */ if( p->inTrans!=TRANS_NONE ){ clearAllSharedCacheTableLocks(p); pBt->nTransaction--; if( 0==pBt->nTransaction ){ pBt->inTransaction = TRANS_NONE; } } /* Set the current transaction state to TRANS_NONE and unlock the ** pager if this call closed the only read or write transaction. */ p->inTrans = TRANS_NONE; unlockBtreeIfUnused(pBt); } btreeIntegrity(p); } /* ** Commit the transaction currently in progress. ** ** This routine implements the second phase of a 2-phase commit. The ** sqlite3BtreeCommitPhaseOne() routine does the first phase and should ** be invoked prior to calling this routine. The sqlite3BtreeCommitPhaseOne() ** routine did all the work of writing information out to disk and flushing the ** contents so that they are written onto the disk platter. All this ** routine has to do is delete or truncate or zero the header in the ** the rollback journal (which causes the transaction to commit) and ** drop locks. ** ** Normally, if an error occurs while the pager layer is attempting to ** finalize the underlying journal file, this function returns an error and ** the upper layer will attempt a rollback. However, if the second argument ** is non-zero then this b-tree transaction is part of a multi-file ** transaction. In this case, the transaction has already been committed ** (by deleting a super-journal file) and the caller will ignore this ** functions return code. So, even if an error occurs in the pager layer, ** reset the b-tree objects internal state to indicate that the write ** transaction has been closed. This is quite safe, as the pager will have ** transitioned to the error state. ** ** This will release the write lock on the database file. If there ** are no active cursors, it also releases the read lock. */ SQLITE_PRIVATE int sqlite3BtreeCommitPhaseTwo(Btree *p, int bCleanup){ if( p->inTrans==TRANS_NONE ) return SQLITE_OK; sqlite3BtreeEnter(p); btreeIntegrity(p); /* If the handle has a write-transaction open, commit the shared-btrees ** transaction and set the shared state to TRANS_READ. */ if( p->inTrans==TRANS_WRITE ){ int rc; BtShared *pBt = p->pBt; assert( pBt->inTransaction==TRANS_WRITE ); assert( pBt->nTransaction>0 ); rc = sqlite3PagerCommitPhaseTwo(pBt->pPager); if( rc!=SQLITE_OK && bCleanup==0 ){ sqlite3BtreeLeave(p); return rc; } p->iDataVersion--; /* Compensate for pPager->iDataVersion++; */ pBt->inTransaction = TRANS_READ; btreeClearHasContent(pBt); } btreeEndTransaction(p); sqlite3BtreeLeave(p); return SQLITE_OK; } /* ** Do both phases of a commit. */ SQLITE_PRIVATE int sqlite3BtreeCommit(Btree *p){ int rc; sqlite3BtreeEnter(p); rc = sqlite3BtreeCommitPhaseOne(p, 0); if( rc==SQLITE_OK ){ rc = sqlite3BtreeCommitPhaseTwo(p, 0); } sqlite3BtreeLeave(p); return rc; } /* ** This routine sets the state to CURSOR_FAULT and the error ** code to errCode for every cursor on any BtShared that pBtree ** references. Or if the writeOnly flag is set to 1, then only ** trip write cursors and leave read cursors unchanged. ** ** Every cursor is a candidate to be tripped, including cursors ** that belong to other database connections that happen to be ** sharing the cache with pBtree. ** ** This routine gets called when a rollback occurs. If the writeOnly ** flag is true, then only write-cursors need be tripped - read-only ** cursors save their current positions so that they may continue ** following the rollback. Or, if writeOnly is false, all cursors are ** tripped. In general, writeOnly is false if the transaction being ** rolled back modified the database schema. In this case b-tree root ** pages may be moved or deleted from the database altogether, making ** it unsafe for read cursors to continue. ** ** If the writeOnly flag is true and an error is encountered while ** saving the current position of a read-only cursor, all cursors, ** including all read-cursors are tripped. ** ** SQLITE_OK is returned if successful, or if an error occurs while ** saving a cursor position, an SQLite error code. */ SQLITE_PRIVATE int sqlite3BtreeTripAllCursors(Btree *pBtree, int errCode, int writeOnly){ BtCursor *p; int rc = SQLITE_OK; assert( (writeOnly==0 || writeOnly==1) && BTCF_WriteFlag==1 ); if( pBtree ){ sqlite3BtreeEnter(pBtree); for(p=pBtree->pBt->pCursor; p; p=p->pNext){ if( writeOnly && (p->curFlags & BTCF_WriteFlag)==0 ){ if( p->eState==CURSOR_VALID || p->eState==CURSOR_SKIPNEXT ){ rc = saveCursorPosition(p); if( rc!=SQLITE_OK ){ (void)sqlite3BtreeTripAllCursors(pBtree, rc, 0); break; } } }else{ sqlite3BtreeClearCursor(p); p->eState = CURSOR_FAULT; p->skipNext = errCode; } btreeReleaseAllCursorPages(p); } sqlite3BtreeLeave(pBtree); } return rc; } /* ** Set the pBt->nPage field correctly, according to the current ** state of the database. Assume pBt->pPage1 is valid. */ static void btreeSetNPage(BtShared *pBt, MemPage *pPage1){ int nPage = get4byte(&pPage1->aData[28]); testcase( nPage==0 ); if( nPage==0 ) sqlite3PagerPagecount(pBt->pPager, &nPage); testcase( pBt->nPage!=nPage ); pBt->nPage = nPage; } /* ** Rollback the transaction in progress. ** ** If tripCode is not SQLITE_OK then cursors will be invalidated (tripped). ** Only write cursors are tripped if writeOnly is true but all cursors are ** tripped if writeOnly is false. Any attempt to use ** a tripped cursor will result in an error. ** ** This will release the write lock on the database file. If there ** are no active cursors, it also releases the read lock. */ SQLITE_PRIVATE int sqlite3BtreeRollback(Btree *p, int tripCode, int writeOnly){ int rc; BtShared *pBt = p->pBt; MemPage *pPage1; assert( writeOnly==1 || writeOnly==0 ); assert( tripCode==SQLITE_ABORT_ROLLBACK || tripCode==SQLITE_OK ); sqlite3BtreeEnter(p); if( tripCode==SQLITE_OK ){ rc = tripCode = saveAllCursors(pBt, 0, 0); if( rc ) writeOnly = 0; }else{ rc = SQLITE_OK; } if( tripCode ){ int rc2 = sqlite3BtreeTripAllCursors(p, tripCode, writeOnly); assert( rc==SQLITE_OK || (writeOnly==0 && rc2==SQLITE_OK) ); if( rc2!=SQLITE_OK ) rc = rc2; } btreeIntegrity(p); if( p->inTrans==TRANS_WRITE ){ int rc2; assert( TRANS_WRITE==pBt->inTransaction ); rc2 = sqlite3PagerRollback(pBt->pPager); if( rc2!=SQLITE_OK ){ rc = rc2; } /* The rollback may have destroyed the pPage1->aData value. So ** call btreeGetPage() on page 1 again to make ** sure pPage1->aData is set correctly. */ if( btreeGetPage(pBt, 1, &pPage1, 0)==SQLITE_OK ){ btreeSetNPage(pBt, pPage1); releasePageOne(pPage1); } assert( countValidCursors(pBt, 1)==0 ); pBt->inTransaction = TRANS_READ; btreeClearHasContent(pBt); } btreeEndTransaction(p); sqlite3BtreeLeave(p); return rc; } /* ** Start a statement subtransaction. The subtransaction can be rolled ** back independently of the main transaction. You must start a transaction ** before starting a subtransaction. The subtransaction is ended automatically ** if the main transaction commits or rolls back. ** ** Statement subtransactions are used around individual SQL statements ** that are contained within a BEGIN...COMMIT block. If a constraint ** error occurs within the statement, the effect of that one statement ** can be rolled back without having to rollback the entire transaction. ** ** A statement sub-transaction is implemented as an anonymous savepoint. The ** value passed as the second parameter is the total number of savepoints, ** including the new anonymous savepoint, open on the B-Tree. i.e. if there ** are no active savepoints and no other statement-transactions open, ** iStatement is 1. This anonymous savepoint can be released or rolled back ** using the sqlite3BtreeSavepoint() function. */ SQLITE_PRIVATE int sqlite3BtreeBeginStmt(Btree *p, int iStatement){ int rc; BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); assert( p->inTrans==TRANS_WRITE ); assert( (pBt->btsFlags & BTS_READ_ONLY)==0 ); assert( iStatement>0 ); assert( iStatement>p->db->nSavepoint ); assert( pBt->inTransaction==TRANS_WRITE ); /* At the pager level, a statement transaction is a savepoint with ** an index greater than all savepoints created explicitly using ** SQL statements. It is illegal to open, release or rollback any ** such savepoints while the statement transaction savepoint is active. */ rc = sqlite3PagerOpenSavepoint(pBt->pPager, iStatement); sqlite3BtreeLeave(p); return rc; } /* ** The second argument to this function, op, is always SAVEPOINT_ROLLBACK ** or SAVEPOINT_RELEASE. This function either releases or rolls back the ** savepoint identified by parameter iSavepoint, depending on the value ** of op. ** ** Normally, iSavepoint is greater than or equal to zero. However, if op is ** SAVEPOINT_ROLLBACK, then iSavepoint may also be -1. In this case the ** contents of the entire transaction are rolled back. This is different ** from a normal transaction rollback, as no locks are released and the ** transaction remains open. */ SQLITE_PRIVATE int sqlite3BtreeSavepoint(Btree *p, int op, int iSavepoint){ int rc = SQLITE_OK; if( p && p->inTrans==TRANS_WRITE ){ BtShared *pBt = p->pBt; assert( op==SAVEPOINT_RELEASE || op==SAVEPOINT_ROLLBACK ); assert( iSavepoint>=0 || (iSavepoint==-1 && op==SAVEPOINT_ROLLBACK) ); sqlite3BtreeEnter(p); if( op==SAVEPOINT_ROLLBACK ){ rc = saveAllCursors(pBt, 0, 0); } if( rc==SQLITE_OK ){ rc = sqlite3PagerSavepoint(pBt->pPager, op, iSavepoint); } if( rc==SQLITE_OK ){ if( iSavepoint<0 && (pBt->btsFlags & BTS_INITIALLY_EMPTY)!=0 ){ pBt->nPage = 0; } rc = newDatabase(pBt); btreeSetNPage(pBt, pBt->pPage1); /* pBt->nPage might be zero if the database was corrupt when ** the transaction was started. Otherwise, it must be at least 1. */ assert( CORRUPT_DB || pBt->nPage>0 ); } sqlite3BtreeLeave(p); } return rc; } /* ** Create a new cursor for the BTree whose root is on the page ** iTable. If a read-only cursor is requested, it is assumed that ** the caller already has at least a read-only transaction open ** on the database already. If a write-cursor is requested, then ** the caller is assumed to have an open write transaction. ** ** If the BTREE_WRCSR bit of wrFlag is clear, then the cursor can only ** be used for reading. If the BTREE_WRCSR bit is set, then the cursor ** can be used for reading or for writing if other conditions for writing ** are also met. These are the conditions that must be met in order ** for writing to be allowed: ** ** 1: The cursor must have been opened with wrFlag containing BTREE_WRCSR ** ** 2: Other database connections that share the same pager cache ** but which are not in the READ_UNCOMMITTED state may not have ** cursors open with wrFlag==0 on the same table. Otherwise ** the changes made by this write cursor would be visible to ** the read cursors in the other database connection. ** ** 3: The database must be writable (not on read-only media) ** ** 4: There must be an active transaction. ** ** The BTREE_FORDELETE bit of wrFlag may optionally be set if BTREE_WRCSR ** is set. If FORDELETE is set, that is a hint to the implementation that ** this cursor will only be used to seek to and delete entries of an index ** as part of a larger DELETE statement. The FORDELETE hint is not used by ** this implementation. But in a hypothetical alternative storage engine ** in which index entries are automatically deleted when corresponding table ** rows are deleted, the FORDELETE flag is a hint that all SEEK and DELETE ** operations on this cursor can be no-ops and all READ operations can ** return a null row (2-bytes: 0x01 0x00). ** ** No checking is done to make sure that page iTable really is the ** root page of a b-tree. If it is not, then the cursor acquired ** will not work correctly. ** ** It is assumed that the sqlite3BtreeCursorZero() has been called ** on pCur to initialize the memory space prior to invoking this routine. */ static int btreeCursor( Btree *p, /* The btree */ Pgno iTable, /* Root page of table to open */ int wrFlag, /* 1 to write. 0 read-only */ struct KeyInfo *pKeyInfo, /* First arg to comparison function */ BtCursor *pCur /* Space for new cursor */ ){ BtShared *pBt = p->pBt; /* Shared b-tree handle */ BtCursor *pX; /* Looping over other all cursors */ assert( sqlite3BtreeHoldsMutex(p) ); assert( wrFlag==0 || wrFlag==BTREE_WRCSR || wrFlag==(BTREE_WRCSR|BTREE_FORDELETE) ); /* The following assert statements verify that if this is a sharable ** b-tree database, the connection is holding the required table locks, ** and that no other connection has any open cursor that conflicts with ** this lock. The iTable<1 term disables the check for corrupt schemas. */ assert( hasSharedCacheTableLock(p, iTable, pKeyInfo!=0, (wrFlag?2:1)) || iTable<1 ); assert( wrFlag==0 || !hasReadConflicts(p, iTable) ); /* Assert that the caller has opened the required transaction. */ assert( p->inTrans>TRANS_NONE ); assert( wrFlag==0 || p->inTrans==TRANS_WRITE ); assert( pBt->pPage1 && pBt->pPage1->aData ); assert( wrFlag==0 || (pBt->btsFlags & BTS_READ_ONLY)==0 ); if( wrFlag ){ allocateTempSpace(pBt); if( pBt->pTmpSpace==0 ) return SQLITE_NOMEM_BKPT; } if( iTable<=1 ){ if( iTable<1 ){ return SQLITE_CORRUPT_BKPT; }else if( btreePagecount(pBt)==0 ){ assert( wrFlag==0 ); iTable = 0; } } /* Now that no other errors can occur, finish filling in the BtCursor ** variables and link the cursor into the BtShared list. */ pCur->pgnoRoot = iTable; pCur->iPage = -1; pCur->pKeyInfo = pKeyInfo; pCur->pBtree = p; pCur->pBt = pBt; pCur->curFlags = wrFlag ? BTCF_WriteFlag : 0; pCur->curPagerFlags = wrFlag ? 0 : PAGER_GET_READONLY; /* If there are two or more cursors on the same btree, then all such ** cursors *must* have the BTCF_Multiple flag set. */ for(pX=pBt->pCursor; pX; pX=pX->pNext){ if( pX->pgnoRoot==iTable ){ pX->curFlags |= BTCF_Multiple; pCur->curFlags |= BTCF_Multiple; } } pCur->pNext = pBt->pCursor; pBt->pCursor = pCur; pCur->eState = CURSOR_INVALID; return SQLITE_OK; } static int btreeCursorWithLock( Btree *p, /* The btree */ Pgno iTable, /* Root page of table to open */ int wrFlag, /* 1 to write. 0 read-only */ struct KeyInfo *pKeyInfo, /* First arg to comparison function */ BtCursor *pCur /* Space for new cursor */ ){ int rc; sqlite3BtreeEnter(p); rc = btreeCursor(p, iTable, wrFlag, pKeyInfo, pCur); sqlite3BtreeLeave(p); return rc; } SQLITE_PRIVATE int sqlite3BtreeCursor( Btree *p, /* The btree */ Pgno iTable, /* Root page of table to open */ int wrFlag, /* 1 to write. 0 read-only */ struct KeyInfo *pKeyInfo, /* First arg to xCompare() */ BtCursor *pCur /* Write new cursor here */ ){ if( p->sharable ){ return btreeCursorWithLock(p, iTable, wrFlag, pKeyInfo, pCur); }else{ return btreeCursor(p, iTable, wrFlag, pKeyInfo, pCur); } } /* ** Return the size of a BtCursor object in bytes. ** ** This interfaces is needed so that users of cursors can preallocate ** sufficient storage to hold a cursor. The BtCursor object is opaque ** to users so they cannot do the sizeof() themselves - they must call ** this routine. */ SQLITE_PRIVATE int sqlite3BtreeCursorSize(void){ return ROUND8(sizeof(BtCursor)); } /* ** Initialize memory that will be converted into a BtCursor object. ** ** The simple approach here would be to memset() the entire object ** to zero. But it turns out that the apPage[] and aiIdx[] arrays ** do not need to be zeroed and they are large, so we can save a lot ** of run-time by skipping the initialization of those elements. */ SQLITE_PRIVATE void sqlite3BtreeCursorZero(BtCursor *p){ memset(p, 0, offsetof(BtCursor, BTCURSOR_FIRST_UNINIT)); } /* ** Close a cursor. The read lock on the database file is released ** when the last cursor is closed. */ SQLITE_PRIVATE int sqlite3BtreeCloseCursor(BtCursor *pCur){ Btree *pBtree = pCur->pBtree; if( pBtree ){ BtShared *pBt = pCur->pBt; sqlite3BtreeEnter(pBtree); assert( pBt->pCursor!=0 ); if( pBt->pCursor==pCur ){ pBt->pCursor = pCur->pNext; }else{ BtCursor *pPrev = pBt->pCursor; do{ if( pPrev->pNext==pCur ){ pPrev->pNext = pCur->pNext; break; } pPrev = pPrev->pNext; }while( ALWAYS(pPrev) ); } btreeReleaseAllCursorPages(pCur); unlockBtreeIfUnused(pBt); sqlite3_free(pCur->aOverflow); sqlite3_free(pCur->pKey); sqlite3BtreeLeave(pBtree); pCur->pBtree = 0; } return SQLITE_OK; } /* ** Make sure the BtCursor* given in the argument has a valid ** BtCursor.info structure. If it is not already valid, call ** btreeParseCell() to fill it in. ** ** BtCursor.info is a cache of the information in the current cell. ** Using this cache reduces the number of calls to btreeParseCell(). */ #ifndef NDEBUG static int cellInfoEqual(CellInfo *a, CellInfo *b){ if( a->nKey!=b->nKey ) return 0; if( a->pPayload!=b->pPayload ) return 0; if( a->nPayload!=b->nPayload ) return 0; if( a->nLocal!=b->nLocal ) return 0; if( a->nSize!=b->nSize ) return 0; return 1; } static void assertCellInfo(BtCursor *pCur){ CellInfo info; memset(&info, 0, sizeof(info)); btreeParseCell(pCur->pPage, pCur->ix, &info); assert( CORRUPT_DB || cellInfoEqual(&info, &pCur->info) ); } #else #define assertCellInfo(x) #endif static SQLITE_NOINLINE void getCellInfo(BtCursor *pCur){ if( pCur->info.nSize==0 ){ pCur->curFlags |= BTCF_ValidNKey; btreeParseCell(pCur->pPage,pCur->ix,&pCur->info); }else{ assertCellInfo(pCur); } } #ifndef NDEBUG /* The next routine used only within assert() statements */ /* ** Return true if the given BtCursor is valid. A valid cursor is one ** that is currently pointing to a row in a (non-empty) table. ** This is a verification routine is used only within assert() statements. */ SQLITE_PRIVATE int sqlite3BtreeCursorIsValid(BtCursor *pCur){ return pCur && pCur->eState==CURSOR_VALID; } #endif /* NDEBUG */ SQLITE_PRIVATE int sqlite3BtreeCursorIsValidNN(BtCursor *pCur){ assert( pCur!=0 ); return pCur->eState==CURSOR_VALID; } /* ** Return the value of the integer key or "rowid" for a table btree. ** This routine is only valid for a cursor that is pointing into a ** ordinary table btree. If the cursor points to an index btree or ** is invalid, the result of this routine is undefined. */ SQLITE_PRIVATE i64 sqlite3BtreeIntegerKey(BtCursor *pCur){ assert( cursorHoldsMutex(pCur) ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->curIntKey ); getCellInfo(pCur); return pCur->info.nKey; } /* ** Pin or unpin a cursor. */ SQLITE_PRIVATE void sqlite3BtreeCursorPin(BtCursor *pCur){ assert( (pCur->curFlags & BTCF_Pinned)==0 ); pCur->curFlags |= BTCF_Pinned; } SQLITE_PRIVATE void sqlite3BtreeCursorUnpin(BtCursor *pCur){ assert( (pCur->curFlags & BTCF_Pinned)!=0 ); pCur->curFlags &= ~BTCF_Pinned; } #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC /* ** Return the offset into the database file for the start of the ** payload to which the cursor is pointing. */ SQLITE_PRIVATE i64 sqlite3BtreeOffset(BtCursor *pCur){ assert( cursorHoldsMutex(pCur) ); assert( pCur->eState==CURSOR_VALID ); getCellInfo(pCur); return (i64)pCur->pBt->pageSize*((i64)pCur->pPage->pgno - 1) + (i64)(pCur->info.pPayload - pCur->pPage->aData); } #endif /* SQLITE_ENABLE_OFFSET_SQL_FUNC */ /* ** Return the number of bytes of payload for the entry that pCur is ** currently pointing to. For table btrees, this will be the amount ** of data. For index btrees, this will be the size of the key. ** ** The caller must guarantee that the cursor is pointing to a non-NULL ** valid entry. In other words, the calling procedure must guarantee ** that the cursor has Cursor.eState==CURSOR_VALID. */ SQLITE_PRIVATE u32 sqlite3BtreePayloadSize(BtCursor *pCur){ assert( cursorHoldsMutex(pCur) ); assert( pCur->eState==CURSOR_VALID ); getCellInfo(pCur); return pCur->info.nPayload; } /* ** Return an upper bound on the size of any record for the table ** that the cursor is pointing into. ** ** This is an optimization. Everything will still work if this ** routine always returns 2147483647 (which is the largest record ** that SQLite can handle) or more. But returning a smaller value might ** prevent large memory allocations when trying to interpret a ** corrupt datrabase. ** ** The current implementation merely returns the size of the underlying ** database file. */ SQLITE_PRIVATE sqlite3_int64 sqlite3BtreeMaxRecordSize(BtCursor *pCur){ assert( cursorHoldsMutex(pCur) ); assert( pCur->eState==CURSOR_VALID ); return pCur->pBt->pageSize * (sqlite3_int64)pCur->pBt->nPage; } /* ** Given the page number of an overflow page in the database (parameter ** ovfl), this function finds the page number of the next page in the ** linked list of overflow pages. If possible, it uses the auto-vacuum ** pointer-map data instead of reading the content of page ovfl to do so. ** ** If an error occurs an SQLite error code is returned. Otherwise: ** ** The page number of the next overflow page in the linked list is ** written to *pPgnoNext. If page ovfl is the last page in its linked ** list, *pPgnoNext is set to zero. ** ** If ppPage is not NULL, and a reference to the MemPage object corresponding ** to page number pOvfl was obtained, then *ppPage is set to point to that ** reference. It is the responsibility of the caller to call releasePage() ** on *ppPage to free the reference. In no reference was obtained (because ** the pointer-map was used to obtain the value for *pPgnoNext), then ** *ppPage is set to zero. */ static int getOverflowPage( BtShared *pBt, /* The database file */ Pgno ovfl, /* Current overflow page number */ MemPage **ppPage, /* OUT: MemPage handle (may be NULL) */ Pgno *pPgnoNext /* OUT: Next overflow page number */ ){ Pgno next = 0; MemPage *pPage = 0; int rc = SQLITE_OK; assert( sqlite3_mutex_held(pBt->mutex) ); assert(pPgnoNext); #ifndef SQLITE_OMIT_AUTOVACUUM /* Try to find the next page in the overflow list using the ** autovacuum pointer-map pages. Guess that the next page in ** the overflow list is page number (ovfl+1). If that guess turns ** out to be wrong, fall back to loading the data of page ** number ovfl to determine the next page number. */ if( pBt->autoVacuum ){ Pgno pgno; Pgno iGuess = ovfl+1; u8 eType; while( PTRMAP_ISPAGE(pBt, iGuess) || iGuess==PENDING_BYTE_PAGE(pBt) ){ iGuess++; } if( iGuess<=btreePagecount(pBt) ){ rc = ptrmapGet(pBt, iGuess, &eType, &pgno); if( rc==SQLITE_OK && eType==PTRMAP_OVERFLOW2 && pgno==ovfl ){ next = iGuess; rc = SQLITE_DONE; } } } #endif assert( next==0 || rc==SQLITE_DONE ); if( rc==SQLITE_OK ){ rc = btreeGetPage(pBt, ovfl, &pPage, (ppPage==0) ? PAGER_GET_READONLY : 0); assert( rc==SQLITE_OK || pPage==0 ); if( rc==SQLITE_OK ){ next = get4byte(pPage->aData); } } *pPgnoNext = next; if( ppPage ){ *ppPage = pPage; }else{ releasePage(pPage); } return (rc==SQLITE_DONE ? SQLITE_OK : rc); } /* ** Copy data from a buffer to a page, or from a page to a buffer. ** ** pPayload is a pointer to data stored on database page pDbPage. ** If argument eOp is false, then nByte bytes of data are copied ** from pPayload to the buffer pointed at by pBuf. If eOp is true, ** then sqlite3PagerWrite() is called on pDbPage and nByte bytes ** of data are copied from the buffer pBuf to pPayload. ** ** SQLITE_OK is returned on success, otherwise an error code. */ static int copyPayload( void *pPayload, /* Pointer to page data */ void *pBuf, /* Pointer to buffer */ int nByte, /* Number of bytes to copy */ int eOp, /* 0 -> copy from page, 1 -> copy to page */ DbPage *pDbPage /* Page containing pPayload */ ){ if( eOp ){ /* Copy data from buffer to page (a write operation) */ int rc = sqlite3PagerWrite(pDbPage); if( rc!=SQLITE_OK ){ return rc; } memcpy(pPayload, pBuf, nByte); }else{ /* Copy data from page to buffer (a read operation) */ memcpy(pBuf, pPayload, nByte); } return SQLITE_OK; } /* ** This function is used to read or overwrite payload information ** for the entry that the pCur cursor is pointing to. The eOp ** argument is interpreted as follows: ** ** 0: The operation is a read. Populate the overflow cache. ** 1: The operation is a write. Populate the overflow cache. ** ** A total of "amt" bytes are read or written beginning at "offset". ** Data is read to or from the buffer pBuf. ** ** The content being read or written might appear on the main page ** or be scattered out on multiple overflow pages. ** ** If the current cursor entry uses one or more overflow pages ** this function may allocate space for and lazily populate ** the overflow page-list cache array (BtCursor.aOverflow). ** Subsequent calls use this cache to make seeking to the supplied offset ** more efficient. ** ** Once an overflow page-list cache has been allocated, it must be ** invalidated if some other cursor writes to the same table, or if ** the cursor is moved to a different row. Additionally, in auto-vacuum ** mode, the following events may invalidate an overflow page-list cache. ** ** * An incremental vacuum, ** * A commit in auto_vacuum="full" mode, ** * Creating a table (may require moving an overflow page). */ static int accessPayload( BtCursor *pCur, /* Cursor pointing to entry to read from */ u32 offset, /* Begin reading this far into payload */ u32 amt, /* Read this many bytes */ unsigned char *pBuf, /* Write the bytes into this buffer */ int eOp /* zero to read. non-zero to write. */ ){ unsigned char *aPayload; int rc = SQLITE_OK; int iIdx = 0; MemPage *pPage = pCur->pPage; /* Btree page of current entry */ BtShared *pBt = pCur->pBt; /* Btree this cursor belongs to */ #ifdef SQLITE_DIRECT_OVERFLOW_READ unsigned char * const pBufStart = pBuf; /* Start of original out buffer */ #endif assert( pPage ); assert( eOp==0 || eOp==1 ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->ixnCell ); assert( cursorHoldsMutex(pCur) ); getCellInfo(pCur); aPayload = pCur->info.pPayload; assert( offset+amt <= pCur->info.nPayload ); assert( aPayload > pPage->aData ); if( (uptr)(aPayload - pPage->aData) > (pBt->usableSize - pCur->info.nLocal) ){ /* Trying to read or write past the end of the data is an error. The ** conditional above is really: ** &aPayload[pCur->info.nLocal] > &pPage->aData[pBt->usableSize] ** but is recast into its current form to avoid integer overflow problems */ return SQLITE_CORRUPT_PAGE(pPage); } /* Check if data must be read/written to/from the btree page itself. */ if( offsetinfo.nLocal ){ int a = amt; if( a+offset>pCur->info.nLocal ){ a = pCur->info.nLocal - offset; } rc = copyPayload(&aPayload[offset], pBuf, a, eOp, pPage->pDbPage); offset = 0; pBuf += a; amt -= a; }else{ offset -= pCur->info.nLocal; } if( rc==SQLITE_OK && amt>0 ){ const u32 ovflSize = pBt->usableSize - 4; /* Bytes content per ovfl page */ Pgno nextPage; nextPage = get4byte(&aPayload[pCur->info.nLocal]); /* If the BtCursor.aOverflow[] has not been allocated, allocate it now. ** ** The aOverflow[] array is sized at one entry for each overflow page ** in the overflow chain. The page number of the first overflow page is ** stored in aOverflow[0], etc. A value of 0 in the aOverflow[] array ** means "not yet known" (the cache is lazily populated). */ if( (pCur->curFlags & BTCF_ValidOvfl)==0 ){ int nOvfl = (pCur->info.nPayload-pCur->info.nLocal+ovflSize-1)/ovflSize; if( pCur->aOverflow==0 || nOvfl*(int)sizeof(Pgno) > sqlite3MallocSize(pCur->aOverflow) ){ Pgno *aNew = (Pgno*)sqlite3Realloc( pCur->aOverflow, nOvfl*2*sizeof(Pgno) ); if( aNew==0 ){ return SQLITE_NOMEM_BKPT; }else{ pCur->aOverflow = aNew; } } memset(pCur->aOverflow, 0, nOvfl*sizeof(Pgno)); pCur->curFlags |= BTCF_ValidOvfl; }else{ /* If the overflow page-list cache has been allocated and the ** entry for the first required overflow page is valid, skip ** directly to it. */ if( pCur->aOverflow[offset/ovflSize] ){ iIdx = (offset/ovflSize); nextPage = pCur->aOverflow[iIdx]; offset = (offset%ovflSize); } } assert( rc==SQLITE_OK && amt>0 ); while( nextPage ){ /* If required, populate the overflow page-list cache. */ if( nextPage > pBt->nPage ) return SQLITE_CORRUPT_BKPT; assert( pCur->aOverflow[iIdx]==0 || pCur->aOverflow[iIdx]==nextPage || CORRUPT_DB ); pCur->aOverflow[iIdx] = nextPage; if( offset>=ovflSize ){ /* The only reason to read this page is to obtain the page ** number for the next page in the overflow chain. The page ** data is not required. So first try to lookup the overflow ** page-list cache, if any, then fall back to the getOverflowPage() ** function. */ assert( pCur->curFlags & BTCF_ValidOvfl ); assert( pCur->pBtree->db==pBt->db ); if( pCur->aOverflow[iIdx+1] ){ nextPage = pCur->aOverflow[iIdx+1]; }else{ rc = getOverflowPage(pBt, nextPage, 0, &nextPage); } offset -= ovflSize; }else{ /* Need to read this page properly. It contains some of the ** range of data that is being read (eOp==0) or written (eOp!=0). */ int a = amt; if( a + offset > ovflSize ){ a = ovflSize - offset; } #ifdef SQLITE_DIRECT_OVERFLOW_READ /* If all the following are true: ** ** 1) this is a read operation, and ** 2) data is required from the start of this overflow page, and ** 3) there are no dirty pages in the page-cache ** 4) the database is file-backed, and ** 5) the page is not in the WAL file ** 6) at least 4 bytes have already been read into the output buffer ** ** then data can be read directly from the database file into the ** output buffer, bypassing the page-cache altogether. This speeds ** up loading large records that span many overflow pages. */ if( eOp==0 /* (1) */ && offset==0 /* (2) */ && sqlite3PagerDirectReadOk(pBt->pPager, nextPage) /* (3,4,5) */ && &pBuf[-4]>=pBufStart /* (6) */ ){ sqlite3_file *fd = sqlite3PagerFile(pBt->pPager); u8 aSave[4]; u8 *aWrite = &pBuf[-4]; assert( aWrite>=pBufStart ); /* due to (6) */ memcpy(aSave, aWrite, 4); rc = sqlite3OsRead(fd, aWrite, a+4, (i64)pBt->pageSize*(nextPage-1)); if( rc && nextPage>pBt->nPage ) rc = SQLITE_CORRUPT_BKPT; nextPage = get4byte(aWrite); memcpy(aWrite, aSave, 4); }else #endif { DbPage *pDbPage; rc = sqlite3PagerGet(pBt->pPager, nextPage, &pDbPage, (eOp==0 ? PAGER_GET_READONLY : 0) ); if( rc==SQLITE_OK ){ aPayload = sqlite3PagerGetData(pDbPage); nextPage = get4byte(aPayload); rc = copyPayload(&aPayload[offset+4], pBuf, a, eOp, pDbPage); sqlite3PagerUnref(pDbPage); offset = 0; } } amt -= a; if( amt==0 ) return rc; pBuf += a; } if( rc ) break; iIdx++; } } if( rc==SQLITE_OK && amt>0 ){ /* Overflow chain ends prematurely */ return SQLITE_CORRUPT_PAGE(pPage); } return rc; } /* ** Read part of the payload for the row at which that cursor pCur is currently ** pointing. "amt" bytes will be transferred into pBuf[]. The transfer ** begins at "offset". ** ** pCur can be pointing to either a table or an index b-tree. ** If pointing to a table btree, then the content section is read. If ** pCur is pointing to an index b-tree then the key section is read. ** ** For sqlite3BtreePayload(), the caller must ensure that pCur is pointing ** to a valid row in the table. For sqlite3BtreePayloadChecked(), the ** cursor might be invalid or might need to be restored before being read. ** ** Return SQLITE_OK on success or an error code if anything goes ** wrong. An error is returned if "offset+amt" is larger than ** the available payload. */ SQLITE_PRIVATE int sqlite3BtreePayload(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){ assert( cursorHoldsMutex(pCur) ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->iPage>=0 && pCur->pPage ); assert( pCur->ixpPage->nCell ); return accessPayload(pCur, offset, amt, (unsigned char*)pBuf, 0); } /* ** This variant of sqlite3BtreePayload() works even if the cursor has not ** in the CURSOR_VALID state. It is only used by the sqlite3_blob_read() ** interface. */ #ifndef SQLITE_OMIT_INCRBLOB static SQLITE_NOINLINE int accessPayloadChecked( BtCursor *pCur, u32 offset, u32 amt, void *pBuf ){ int rc; if ( pCur->eState==CURSOR_INVALID ){ return SQLITE_ABORT; } assert( cursorOwnsBtShared(pCur) ); rc = btreeRestoreCursorPosition(pCur); return rc ? rc : accessPayload(pCur, offset, amt, pBuf, 0); } SQLITE_PRIVATE int sqlite3BtreePayloadChecked(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){ if( pCur->eState==CURSOR_VALID ){ assert( cursorOwnsBtShared(pCur) ); return accessPayload(pCur, offset, amt, pBuf, 0); }else{ return accessPayloadChecked(pCur, offset, amt, pBuf); } } #endif /* SQLITE_OMIT_INCRBLOB */ /* ** Return a pointer to payload information from the entry that the ** pCur cursor is pointing to. The pointer is to the beginning of ** the key if index btrees (pPage->intKey==0) and is the data for ** table btrees (pPage->intKey==1). The number of bytes of available ** key/data is written into *pAmt. If *pAmt==0, then the value ** returned will not be a valid pointer. ** ** This routine is an optimization. It is common for the entire key ** and data to fit on the local page and for there to be no overflow ** pages. When that is so, this routine can be used to access the ** key and data without making a copy. If the key and/or data spills ** onto overflow pages, then accessPayload() must be used to reassemble ** the key/data and copy it into a preallocated buffer. ** ** The pointer returned by this routine looks directly into the cached ** page of the database. The data might change or move the next time ** any btree routine is called. */ static const void *fetchPayload( BtCursor *pCur, /* Cursor pointing to entry to read from */ u32 *pAmt /* Write the number of available bytes here */ ){ int amt; assert( pCur!=0 && pCur->iPage>=0 && pCur->pPage); assert( pCur->eState==CURSOR_VALID ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); assert( cursorOwnsBtShared(pCur) ); assert( pCur->ixpPage->nCell ); assert( pCur->info.nSize>0 ); assert( pCur->info.pPayload>pCur->pPage->aData || CORRUPT_DB ); assert( pCur->info.pPayloadpPage->aDataEnd ||CORRUPT_DB); amt = pCur->info.nLocal; if( amt>(int)(pCur->pPage->aDataEnd - pCur->info.pPayload) ){ /* There is too little space on the page for the expected amount ** of local content. Database must be corrupt. */ assert( CORRUPT_DB ); amt = MAX(0, (int)(pCur->pPage->aDataEnd - pCur->info.pPayload)); } *pAmt = (u32)amt; return (void*)pCur->info.pPayload; } /* ** For the entry that cursor pCur is point to, return as ** many bytes of the key or data as are available on the local ** b-tree page. Write the number of available bytes into *pAmt. ** ** The pointer returned is ephemeral. The key/data may move ** or be destroyed on the next call to any Btree routine, ** including calls from other threads against the same cache. ** Hence, a mutex on the BtShared should be held prior to calling ** this routine. ** ** These routines is used to get quick access to key and data ** in the common case where no overflow pages are used. */ SQLITE_PRIVATE const void *sqlite3BtreePayloadFetch(BtCursor *pCur, u32 *pAmt){ return fetchPayload(pCur, pAmt); } /* ** Move the cursor down to a new child page. The newPgno argument is the ** page number of the child page to move to. ** ** This function returns SQLITE_CORRUPT if the page-header flags field of ** the new child page does not match the flags field of the parent (i.e. ** if an intkey page appears to be the parent of a non-intkey page, or ** vice-versa). */ static int moveToChild(BtCursor *pCur, u32 newPgno){ BtShared *pBt = pCur->pBt; assert( cursorOwnsBtShared(pCur) ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->iPageiPage>=0 ); if( pCur->iPage>=(BTCURSOR_MAX_DEPTH-1) ){ return SQLITE_CORRUPT_BKPT; } pCur->info.nSize = 0; pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); pCur->aiIdx[pCur->iPage] = pCur->ix; pCur->apPage[pCur->iPage] = pCur->pPage; pCur->ix = 0; pCur->iPage++; return getAndInitPage(pBt, newPgno, &pCur->pPage, pCur, pCur->curPagerFlags); } #ifdef SQLITE_DEBUG /* ** Page pParent is an internal (non-leaf) tree page. This function ** asserts that page number iChild is the left-child if the iIdx'th ** cell in page pParent. Or, if iIdx is equal to the total number of ** cells in pParent, that page number iChild is the right-child of ** the page. */ static void assertParentIndex(MemPage *pParent, int iIdx, Pgno iChild){ if( CORRUPT_DB ) return; /* The conditions tested below might not be true ** in a corrupt database */ assert( iIdx<=pParent->nCell ); if( iIdx==pParent->nCell ){ assert( get4byte(&pParent->aData[pParent->hdrOffset+8])==iChild ); }else{ assert( get4byte(findCell(pParent, iIdx))==iChild ); } } #else # define assertParentIndex(x,y,z) #endif /* ** Move the cursor up to the parent page. ** ** pCur->idx is set to the cell index that contains the pointer ** to the page we are coming from. If we are coming from the ** right-most child page then pCur->idx is set to one more than ** the largest cell index. */ static void moveToParent(BtCursor *pCur){ MemPage *pLeaf; assert( cursorOwnsBtShared(pCur) ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->iPage>0 ); assert( pCur->pPage ); assertParentIndex( pCur->apPage[pCur->iPage-1], pCur->aiIdx[pCur->iPage-1], pCur->pPage->pgno ); testcase( pCur->aiIdx[pCur->iPage-1] > pCur->apPage[pCur->iPage-1]->nCell ); pCur->info.nSize = 0; pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); pCur->ix = pCur->aiIdx[pCur->iPage-1]; pLeaf = pCur->pPage; pCur->pPage = pCur->apPage[--pCur->iPage]; releasePageNotNull(pLeaf); } /* ** Move the cursor to point to the root page of its b-tree structure. ** ** If the table has a virtual root page, then the cursor is moved to point ** to the virtual root page instead of the actual root page. A table has a ** virtual root page when the actual root page contains no cells and a ** single child page. This can only happen with the table rooted at page 1. ** ** If the b-tree structure is empty, the cursor state is set to ** CURSOR_INVALID and this routine returns SQLITE_EMPTY. Otherwise, ** the cursor is set to point to the first cell located on the root ** (or virtual root) page and the cursor state is set to CURSOR_VALID. ** ** If this function returns successfully, it may be assumed that the ** page-header flags indicate that the [virtual] root-page is the expected ** kind of b-tree page (i.e. if when opening the cursor the caller did not ** specify a KeyInfo structure the flags byte is set to 0x05 or 0x0D, ** indicating a table b-tree, or if the caller did specify a KeyInfo ** structure the flags byte is set to 0x02 or 0x0A, indicating an index ** b-tree). */ static int moveToRoot(BtCursor *pCur){ MemPage *pRoot; int rc = SQLITE_OK; assert( cursorOwnsBtShared(pCur) ); assert( CURSOR_INVALID < CURSOR_REQUIRESEEK ); assert( CURSOR_VALID < CURSOR_REQUIRESEEK ); assert( CURSOR_FAULT > CURSOR_REQUIRESEEK ); assert( pCur->eState < CURSOR_REQUIRESEEK || pCur->iPage<0 ); assert( pCur->pgnoRoot>0 || pCur->iPage<0 ); if( pCur->iPage>=0 ){ if( pCur->iPage ){ releasePageNotNull(pCur->pPage); while( --pCur->iPage ){ releasePageNotNull(pCur->apPage[pCur->iPage]); } pCur->pPage = pCur->apPage[0]; goto skip_init; } }else if( pCur->pgnoRoot==0 ){ pCur->eState = CURSOR_INVALID; return SQLITE_EMPTY; }else{ assert( pCur->iPage==(-1) ); if( pCur->eState>=CURSOR_REQUIRESEEK ){ if( pCur->eState==CURSOR_FAULT ){ assert( pCur->skipNext!=SQLITE_OK ); return pCur->skipNext; } sqlite3BtreeClearCursor(pCur); } rc = getAndInitPage(pCur->pBtree->pBt, pCur->pgnoRoot, &pCur->pPage, 0, pCur->curPagerFlags); if( rc!=SQLITE_OK ){ pCur->eState = CURSOR_INVALID; return rc; } pCur->iPage = 0; pCur->curIntKey = pCur->pPage->intKey; } pRoot = pCur->pPage; assert( pRoot->pgno==pCur->pgnoRoot ); /* If pCur->pKeyInfo is not NULL, then the caller that opened this cursor ** expected to open it on an index b-tree. Otherwise, if pKeyInfo is ** NULL, the caller expects a table b-tree. If this is not the case, ** return an SQLITE_CORRUPT error. ** ** Earlier versions of SQLite assumed that this test could not fail ** if the root page was already loaded when this function was called (i.e. ** if pCur->iPage>=0). But this is not so if the database is corrupted ** in such a way that page pRoot is linked into a second b-tree table ** (or the freelist). */ assert( pRoot->intKey==1 || pRoot->intKey==0 ); if( pRoot->isInit==0 || (pCur->pKeyInfo==0)!=pRoot->intKey ){ return SQLITE_CORRUPT_PAGE(pCur->pPage); } skip_init: pCur->ix = 0; pCur->info.nSize = 0; pCur->curFlags &= ~(BTCF_AtLast|BTCF_ValidNKey|BTCF_ValidOvfl); pRoot = pCur->pPage; if( pRoot->nCell>0 ){ pCur->eState = CURSOR_VALID; }else if( !pRoot->leaf ){ Pgno subpage; if( pRoot->pgno!=1 ) return SQLITE_CORRUPT_BKPT; subpage = get4byte(&pRoot->aData[pRoot->hdrOffset+8]); pCur->eState = CURSOR_VALID; rc = moveToChild(pCur, subpage); }else{ pCur->eState = CURSOR_INVALID; rc = SQLITE_EMPTY; } return rc; } /* ** Move the cursor down to the left-most leaf entry beneath the ** entry to which it is currently pointing. ** ** The left-most leaf is the one with the smallest key - the first ** in ascending order. */ static int moveToLeftmost(BtCursor *pCur){ Pgno pgno; int rc = SQLITE_OK; MemPage *pPage; assert( cursorOwnsBtShared(pCur) ); assert( pCur->eState==CURSOR_VALID ); while( rc==SQLITE_OK && !(pPage = pCur->pPage)->leaf ){ assert( pCur->ixnCell ); pgno = get4byte(findCell(pPage, pCur->ix)); rc = moveToChild(pCur, pgno); } return rc; } /* ** Move the cursor down to the right-most leaf entry beneath the ** page to which it is currently pointing. Notice the difference ** between moveToLeftmost() and moveToRightmost(). moveToLeftmost() ** finds the left-most entry beneath the *entry* whereas moveToRightmost() ** finds the right-most entry beneath the *page*. ** ** The right-most entry is the one with the largest key - the last ** key in ascending order. */ static int moveToRightmost(BtCursor *pCur){ Pgno pgno; int rc = SQLITE_OK; MemPage *pPage = 0; assert( cursorOwnsBtShared(pCur) ); assert( pCur->eState==CURSOR_VALID ); while( !(pPage = pCur->pPage)->leaf ){ pgno = get4byte(&pPage->aData[pPage->hdrOffset+8]); pCur->ix = pPage->nCell; rc = moveToChild(pCur, pgno); if( rc ) return rc; } pCur->ix = pPage->nCell-1; assert( pCur->info.nSize==0 ); assert( (pCur->curFlags & BTCF_ValidNKey)==0 ); return SQLITE_OK; } /* Move the cursor to the first entry in the table. Return SQLITE_OK ** on success. Set *pRes to 0 if the cursor actually points to something ** or set *pRes to 1 if the table is empty. */ SQLITE_PRIVATE int sqlite3BtreeFirst(BtCursor *pCur, int *pRes){ int rc; assert( cursorOwnsBtShared(pCur) ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); rc = moveToRoot(pCur); if( rc==SQLITE_OK ){ assert( pCur->pPage->nCell>0 ); *pRes = 0; rc = moveToLeftmost(pCur); }else if( rc==SQLITE_EMPTY ){ assert( pCur->pgnoRoot==0 || pCur->pPage->nCell==0 ); *pRes = 1; rc = SQLITE_OK; } return rc; } /* Move the cursor to the last entry in the table. Return SQLITE_OK ** on success. Set *pRes to 0 if the cursor actually points to something ** or set *pRes to 1 if the table is empty. */ SQLITE_PRIVATE int sqlite3BtreeLast(BtCursor *pCur, int *pRes){ int rc; assert( cursorOwnsBtShared(pCur) ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); /* If the cursor already points to the last entry, this is a no-op. */ if( CURSOR_VALID==pCur->eState && (pCur->curFlags & BTCF_AtLast)!=0 ){ #ifdef SQLITE_DEBUG /* This block serves to assert() that the cursor really does point ** to the last entry in the b-tree. */ int ii; for(ii=0; iiiPage; ii++){ assert( pCur->aiIdx[ii]==pCur->apPage[ii]->nCell ); } assert( pCur->ix==pCur->pPage->nCell-1 ); assert( pCur->pPage->leaf ); #endif *pRes = 0; return SQLITE_OK; } rc = moveToRoot(pCur); if( rc==SQLITE_OK ){ assert( pCur->eState==CURSOR_VALID ); *pRes = 0; rc = moveToRightmost(pCur); if( rc==SQLITE_OK ){ pCur->curFlags |= BTCF_AtLast; }else{ pCur->curFlags &= ~BTCF_AtLast; } }else if( rc==SQLITE_EMPTY ){ assert( pCur->pgnoRoot==0 || pCur->pPage->nCell==0 ); *pRes = 1; rc = SQLITE_OK; } return rc; } /* Move the cursor so that it points to an entry near the key ** specified by pIdxKey or intKey. Return a success code. ** ** For INTKEY tables, the intKey parameter is used. pIdxKey ** must be NULL. For index tables, pIdxKey is used and intKey ** is ignored. ** ** If an exact match is not found, then the cursor is always ** left pointing at a leaf page which would hold the entry if it ** were present. The cursor might point to an entry that comes ** before or after the key. ** ** An integer is written into *pRes which is the result of ** comparing the key with the entry to which the cursor is ** pointing. The meaning of the integer written into ** *pRes is as follows: ** ** *pRes<0 The cursor is left pointing at an entry that ** is smaller than intKey/pIdxKey or if the table is empty ** and the cursor is therefore left point to nothing. ** ** *pRes==0 The cursor is left pointing at an entry that ** exactly matches intKey/pIdxKey. ** ** *pRes>0 The cursor is left pointing at an entry that ** is larger than intKey/pIdxKey. ** ** For index tables, the pIdxKey->eqSeen field is set to 1 if there ** exists an entry in the table that exactly matches pIdxKey. */ SQLITE_PRIVATE int sqlite3BtreeMovetoUnpacked( BtCursor *pCur, /* The cursor to be moved */ UnpackedRecord *pIdxKey, /* Unpacked index key */ i64 intKey, /* The table key */ int biasRight, /* If true, bias the search to the high end */ int *pRes /* Write search results here */ ){ int rc; RecordCompare xRecordCompare; assert( cursorOwnsBtShared(pCur) ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); assert( pRes ); assert( (pIdxKey==0)==(pCur->pKeyInfo==0) ); assert( pCur->eState!=CURSOR_VALID || (pIdxKey==0)==(pCur->curIntKey!=0) ); /* If the cursor is already positioned at the point we are trying ** to move to, then just return without doing any work */ if( pIdxKey==0 && pCur->eState==CURSOR_VALID && (pCur->curFlags & BTCF_ValidNKey)!=0 ){ if( pCur->info.nKey==intKey ){ *pRes = 0; return SQLITE_OK; } if( pCur->info.nKeycurFlags & BTCF_AtLast)!=0 ){ *pRes = -1; return SQLITE_OK; } /* If the requested key is one more than the previous key, then ** try to get there using sqlite3BtreeNext() rather than a full ** binary search. This is an optimization only. The correct answer ** is still obtained without this case, only a little more slowely */ if( pCur->info.nKey+1==intKey ){ *pRes = 0; rc = sqlite3BtreeNext(pCur, 0); if( rc==SQLITE_OK ){ getCellInfo(pCur); if( pCur->info.nKey==intKey ){ return SQLITE_OK; } }else if( rc==SQLITE_DONE ){ rc = SQLITE_OK; }else{ return rc; } } } } if( pIdxKey ){ xRecordCompare = sqlite3VdbeFindCompare(pIdxKey); pIdxKey->errCode = 0; assert( pIdxKey->default_rc==1 || pIdxKey->default_rc==0 || pIdxKey->default_rc==-1 ); }else{ xRecordCompare = 0; /* All keys are integers */ } rc = moveToRoot(pCur); if( rc ){ if( rc==SQLITE_EMPTY ){ assert( pCur->pgnoRoot==0 || pCur->pPage->nCell==0 ); *pRes = -1; return SQLITE_OK; } return rc; } assert( pCur->pPage ); assert( pCur->pPage->isInit ); assert( pCur->eState==CURSOR_VALID ); assert( pCur->pPage->nCell > 0 ); assert( pCur->iPage==0 || pCur->apPage[0]->intKey==pCur->curIntKey ); assert( pCur->curIntKey || pIdxKey ); for(;;){ int lwr, upr, idx, c; Pgno chldPg; MemPage *pPage = pCur->pPage; u8 *pCell; /* Pointer to current cell in pPage */ /* pPage->nCell must be greater than zero. If this is the root-page ** the cursor would have been INVALID above and this for(;;) loop ** not run. If this is not the root-page, then the moveToChild() routine ** would have already detected db corruption. Similarly, pPage must ** be the right kind (index or table) of b-tree page. Otherwise ** a moveToChild() or moveToRoot() call would have detected corruption. */ assert( pPage->nCell>0 ); assert( pPage->intKey==(pIdxKey==0) ); lwr = 0; upr = pPage->nCell-1; assert( biasRight==0 || biasRight==1 ); idx = upr>>(1-biasRight); /* idx = biasRight ? upr : (lwr+upr)/2; */ pCur->ix = (u16)idx; if( xRecordCompare==0 ){ for(;;){ i64 nCellKey; pCell = findCellPastPtr(pPage, idx); if( pPage->intKeyLeaf ){ while( 0x80 <= *(pCell++) ){ if( pCell>=pPage->aDataEnd ){ return SQLITE_CORRUPT_PAGE(pPage); } } } getVarint(pCell, (u64*)&nCellKey); if( nCellKeyupr ){ c = -1; break; } }else if( nCellKey>intKey ){ upr = idx-1; if( lwr>upr ){ c = +1; break; } }else{ assert( nCellKey==intKey ); pCur->ix = (u16)idx; if( !pPage->leaf ){ lwr = idx; goto moveto_next_layer; }else{ pCur->curFlags |= BTCF_ValidNKey; pCur->info.nKey = nCellKey; pCur->info.nSize = 0; *pRes = 0; return SQLITE_OK; } } assert( lwr+upr>=0 ); idx = (lwr+upr)>>1; /* idx = (lwr+upr)/2; */ } }else{ for(;;){ int nCell; /* Size of the pCell cell in bytes */ pCell = findCellPastPtr(pPage, idx); /* The maximum supported page-size is 65536 bytes. This means that ** the maximum number of record bytes stored on an index B-Tree ** page is less than 16384 bytes and may be stored as a 2-byte ** varint. This information is used to attempt to avoid parsing ** the entire cell by checking for the cases where the record is ** stored entirely within the b-tree page by inspecting the first ** 2 bytes of the cell. */ nCell = pCell[0]; if( nCell<=pPage->max1bytePayload ){ /* This branch runs if the record-size field of the cell is a ** single byte varint and the record fits entirely on the main ** b-tree page. */ testcase( pCell+nCell+1==pPage->aDataEnd ); c = xRecordCompare(nCell, (void*)&pCell[1], pIdxKey); }else if( !(pCell[1] & 0x80) && (nCell = ((nCell&0x7f)<<7) + pCell[1])<=pPage->maxLocal ){ /* The record-size field is a 2 byte varint and the record ** fits entirely on the main b-tree page. */ testcase( pCell+nCell+2==pPage->aDataEnd ); c = xRecordCompare(nCell, (void*)&pCell[2], pIdxKey); }else{ /* The record flows over onto one or more overflow pages. In ** this case the whole cell needs to be parsed, a buffer allocated ** and accessPayload() used to retrieve the record into the ** buffer before VdbeRecordCompare() can be called. ** ** If the record is corrupt, the xRecordCompare routine may read ** up to two varints past the end of the buffer. An extra 18 ** bytes of padding is allocated at the end of the buffer in ** case this happens. */ void *pCellKey; u8 * const pCellBody = pCell - pPage->childPtrSize; const int nOverrun = 18; /* Size of the overrun padding */ pPage->xParseCell(pPage, pCellBody, &pCur->info); nCell = (int)pCur->info.nKey; testcase( nCell<0 ); /* True if key size is 2^32 or more */ testcase( nCell==0 ); /* Invalid key size: 0x80 0x80 0x00 */ testcase( nCell==1 ); /* Invalid key size: 0x80 0x80 0x01 */ testcase( nCell==2 ); /* Minimum legal index key size */ if( nCell<2 || nCell/pCur->pBt->usableSize>pCur->pBt->nPage ){ rc = SQLITE_CORRUPT_PAGE(pPage); goto moveto_finish; } pCellKey = sqlite3Malloc( nCell+nOverrun ); if( pCellKey==0 ){ rc = SQLITE_NOMEM_BKPT; goto moveto_finish; } pCur->ix = (u16)idx; rc = accessPayload(pCur, 0, nCell, (unsigned char*)pCellKey, 0); memset(((u8*)pCellKey)+nCell,0,nOverrun); /* Fix uninit warnings */ pCur->curFlags &= ~BTCF_ValidOvfl; if( rc ){ sqlite3_free(pCellKey); goto moveto_finish; } c = sqlite3VdbeRecordCompare(nCell, pCellKey, pIdxKey); sqlite3_free(pCellKey); } assert( (pIdxKey->errCode!=SQLITE_CORRUPT || c==0) && (pIdxKey->errCode!=SQLITE_NOMEM || pCur->pBtree->db->mallocFailed) ); if( c<0 ){ lwr = idx+1; }else if( c>0 ){ upr = idx-1; }else{ assert( c==0 ); *pRes = 0; rc = SQLITE_OK; pCur->ix = (u16)idx; if( pIdxKey->errCode ) rc = SQLITE_CORRUPT_BKPT; goto moveto_finish; } if( lwr>upr ) break; assert( lwr+upr>=0 ); idx = (lwr+upr)>>1; /* idx = (lwr+upr)/2 */ } } assert( lwr==upr+1 || (pPage->intKey && !pPage->leaf) ); assert( pPage->isInit ); if( pPage->leaf ){ assert( pCur->ixpPage->nCell ); pCur->ix = (u16)idx; *pRes = c; rc = SQLITE_OK; goto moveto_finish; } moveto_next_layer: if( lwr>=pPage->nCell ){ chldPg = get4byte(&pPage->aData[pPage->hdrOffset+8]); }else{ chldPg = get4byte(findCell(pPage, lwr)); } pCur->ix = (u16)lwr; rc = moveToChild(pCur, chldPg); if( rc ) break; } moveto_finish: pCur->info.nSize = 0; assert( (pCur->curFlags & BTCF_ValidOvfl)==0 ); return rc; } /* ** Return TRUE if the cursor is not pointing at an entry of the table. ** ** TRUE will be returned after a call to sqlite3BtreeNext() moves ** past the last entry in the table or sqlite3BtreePrev() moves past ** the first entry. TRUE is also returned if the table is empty. */ SQLITE_PRIVATE int sqlite3BtreeEof(BtCursor *pCur){ /* TODO: What if the cursor is in CURSOR_REQUIRESEEK but all table entries ** have been deleted? This API will need to change to return an error code ** as well as the boolean result value. */ return (CURSOR_VALID!=pCur->eState); } /* ** Return an estimate for the number of rows in the table that pCur is ** pointing to. Return a negative number if no estimate is currently ** available. */ SQLITE_PRIVATE i64 sqlite3BtreeRowCountEst(BtCursor *pCur){ i64 n; u8 i; assert( cursorOwnsBtShared(pCur) ); assert( sqlite3_mutex_held(pCur->pBtree->db->mutex) ); /* Currently this interface is only called by the OP_IfSmaller ** opcode, and it that case the cursor will always be valid and ** will always point to a leaf node. */ if( NEVER(pCur->eState!=CURSOR_VALID) ) return -1; if( NEVER(pCur->pPage->leaf==0) ) return -1; n = pCur->pPage->nCell; for(i=0; iiPage; i++){ n *= pCur->apPage[i]->nCell; } return n; } /* ** Advance the cursor to the next entry in the database. ** Return value: ** ** SQLITE_OK success ** SQLITE_DONE cursor is already pointing at the last element ** otherwise some kind of error occurred ** ** The main entry point is sqlite3BtreeNext(). That routine is optimized ** for the common case of merely incrementing the cell counter BtCursor.aiIdx ** to the next cell on the current page. The (slower) btreeNext() helper ** routine is called when it is necessary to move to a different page or ** to restore the cursor. ** ** If bit 0x01 of the F argument in sqlite3BtreeNext(C,F) is 1, then the ** cursor corresponds to an SQL index and this routine could have been ** skipped if the SQL index had been a unique index. The F argument ** is a hint to the implement. SQLite btree implementation does not use ** this hint, but COMDB2 does. */ static SQLITE_NOINLINE int btreeNext(BtCursor *pCur){ int rc; int idx; MemPage *pPage; assert( cursorOwnsBtShared(pCur) ); if( pCur->eState!=CURSOR_VALID ){ assert( (pCur->curFlags & BTCF_ValidOvfl)==0 ); rc = restoreCursorPosition(pCur); if( rc!=SQLITE_OK ){ return rc; } if( CURSOR_INVALID==pCur->eState ){ return SQLITE_DONE; } if( pCur->eState==CURSOR_SKIPNEXT ){ pCur->eState = CURSOR_VALID; if( pCur->skipNext>0 ) return SQLITE_OK; } } pPage = pCur->pPage; idx = ++pCur->ix; if( !pPage->isInit ){ /* The only known way for this to happen is for there to be a ** recursive SQL function that does a DELETE operation as part of a ** SELECT which deletes content out from under an active cursor ** in a corrupt database file where the table being DELETE-ed from ** has pages in common with the table being queried. See TH3 ** module cov1/btree78.test testcase 220 (2018-06-08) for an ** example. */ return SQLITE_CORRUPT_BKPT; } /* If the database file is corrupt, it is possible for the value of idx ** to be invalid here. This can only occur if a second cursor modifies ** the page while cursor pCur is holding a reference to it. Which can ** only happen if the database is corrupt in such a way as to link the ** page into more than one b-tree structure. ** ** Update 2019-12-23: appears to long longer be possible after the ** addition of anotherValidCursor() condition on balance_deeper(). */ harmless( idx>pPage->nCell ); if( idx>=pPage->nCell ){ if( !pPage->leaf ){ rc = moveToChild(pCur, get4byte(&pPage->aData[pPage->hdrOffset+8])); if( rc ) return rc; return moveToLeftmost(pCur); } do{ if( pCur->iPage==0 ){ pCur->eState = CURSOR_INVALID; return SQLITE_DONE; } moveToParent(pCur); pPage = pCur->pPage; }while( pCur->ix>=pPage->nCell ); if( pPage->intKey ){ return sqlite3BtreeNext(pCur, 0); }else{ return SQLITE_OK; } } if( pPage->leaf ){ return SQLITE_OK; }else{ return moveToLeftmost(pCur); } } SQLITE_PRIVATE int sqlite3BtreeNext(BtCursor *pCur, int flags){ MemPage *pPage; UNUSED_PARAMETER( flags ); /* Used in COMDB2 but not native SQLite */ assert( cursorOwnsBtShared(pCur) ); assert( flags==0 || flags==1 ); pCur->info.nSize = 0; pCur->curFlags &= ~(BTCF_ValidNKey|BTCF_ValidOvfl); if( pCur->eState!=CURSOR_VALID ) return btreeNext(pCur); pPage = pCur->pPage; if( (++pCur->ix)>=pPage->nCell ){ pCur->ix--; return btreeNext(pCur); } if( pPage->leaf ){ return SQLITE_OK; }else{ return moveToLeftmost(pCur); } } /* ** Step the cursor to the back to the previous entry in the database. ** Return values: ** ** SQLITE_OK success ** SQLITE_DONE the cursor is already on the first element of the table ** otherwise some kind of error occurred ** ** The main entry point is sqlite3BtreePrevious(). That routine is optimized ** for the common case of merely decrementing the cell counter BtCursor.aiIdx ** to the previous cell on the current page. The (slower) btreePrevious() ** helper routine is called when it is necessary to move to a different page ** or to restore the cursor. ** ** If bit 0x01 of the F argument to sqlite3BtreePrevious(C,F) is 1, then ** the cursor corresponds to an SQL index and this routine could have been ** skipped if the SQL index had been a unique index. The F argument is a ** hint to the implement. The native SQLite btree implementation does not ** use this hint, but COMDB2 does. */ static SQLITE_NOINLINE int btreePrevious(BtCursor *pCur){ int rc; MemPage *pPage; assert( cursorOwnsBtShared(pCur) ); assert( (pCur->curFlags & (BTCF_AtLast|BTCF_ValidOvfl|BTCF_ValidNKey))==0 ); assert( pCur->info.nSize==0 ); if( pCur->eState!=CURSOR_VALID ){ rc = restoreCursorPosition(pCur); if( rc!=SQLITE_OK ){ return rc; } if( CURSOR_INVALID==pCur->eState ){ return SQLITE_DONE; } if( CURSOR_SKIPNEXT==pCur->eState ){ pCur->eState = CURSOR_VALID; if( pCur->skipNext<0 ) return SQLITE_OK; } } pPage = pCur->pPage; assert( pPage->isInit ); if( !pPage->leaf ){ int idx = pCur->ix; rc = moveToChild(pCur, get4byte(findCell(pPage, idx))); if( rc ) return rc; rc = moveToRightmost(pCur); }else{ while( pCur->ix==0 ){ if( pCur->iPage==0 ){ pCur->eState = CURSOR_INVALID; return SQLITE_DONE; } moveToParent(pCur); } assert( pCur->info.nSize==0 ); assert( (pCur->curFlags & (BTCF_ValidOvfl))==0 ); pCur->ix--; pPage = pCur->pPage; if( pPage->intKey && !pPage->leaf ){ rc = sqlite3BtreePrevious(pCur, 0); }else{ rc = SQLITE_OK; } } return rc; } SQLITE_PRIVATE int sqlite3BtreePrevious(BtCursor *pCur, int flags){ assert( cursorOwnsBtShared(pCur) ); assert( flags==0 || flags==1 ); UNUSED_PARAMETER( flags ); /* Used in COMDB2 but not native SQLite */ pCur->curFlags &= ~(BTCF_AtLast|BTCF_ValidOvfl|BTCF_ValidNKey); pCur->info.nSize = 0; if( pCur->eState!=CURSOR_VALID || pCur->ix==0 || pCur->pPage->leaf==0 ){ return btreePrevious(pCur); } pCur->ix--; return SQLITE_OK; } /* ** Allocate a new page from the database file. ** ** The new page is marked as dirty. (In other words, sqlite3PagerWrite() ** has already been called on the new page.) The new page has also ** been referenced and the calling routine is responsible for calling ** sqlite3PagerUnref() on the new page when it is done. ** ** SQLITE_OK is returned on success. Any other return value indicates ** an error. *ppPage is set to NULL in the event of an error. ** ** If the "nearby" parameter is not 0, then an effort is made to ** locate a page close to the page number "nearby". This can be used in an ** attempt to keep related pages close to each other in the database file, ** which in turn can make database access faster. ** ** If the eMode parameter is BTALLOC_EXACT and the nearby page exists ** anywhere on the free-list, then it is guaranteed to be returned. If ** eMode is BTALLOC_LT then the page returned will be less than or equal ** to nearby if any such page exists. If eMode is BTALLOC_ANY then there ** are no restrictions on which page is returned. */ static int allocateBtreePage( BtShared *pBt, /* The btree */ MemPage **ppPage, /* Store pointer to the allocated page here */ Pgno *pPgno, /* Store the page number here */ Pgno nearby, /* Search for a page near this one */ u8 eMode /* BTALLOC_EXACT, BTALLOC_LT, or BTALLOC_ANY */ ){ MemPage *pPage1; int rc; u32 n; /* Number of pages on the freelist */ u32 k; /* Number of leaves on the trunk of the freelist */ MemPage *pTrunk = 0; MemPage *pPrevTrunk = 0; Pgno mxPage; /* Total size of the database file */ assert( sqlite3_mutex_held(pBt->mutex) ); assert( eMode==BTALLOC_ANY || (nearby>0 && IfNotOmitAV(pBt->autoVacuum)) ); pPage1 = pBt->pPage1; mxPage = btreePagecount(pBt); /* EVIDENCE-OF: R-05119-02637 The 4-byte big-endian integer at offset 36 ** stores stores the total number of pages on the freelist. */ n = get4byte(&pPage1->aData[36]); testcase( n==mxPage-1 ); if( n>=mxPage ){ return SQLITE_CORRUPT_BKPT; } if( n>0 ){ /* There are pages on the freelist. Reuse one of those pages. */ Pgno iTrunk; u8 searchList = 0; /* If the free-list must be searched for 'nearby' */ u32 nSearch = 0; /* Count of the number of search attempts */ /* If eMode==BTALLOC_EXACT and a query of the pointer-map ** shows that the page 'nearby' is somewhere on the free-list, then ** the entire-list will be searched for that page. */ #ifndef SQLITE_OMIT_AUTOVACUUM if( eMode==BTALLOC_EXACT ){ if( nearby<=mxPage ){ u8 eType; assert( nearby>0 ); assert( pBt->autoVacuum ); rc = ptrmapGet(pBt, nearby, &eType, 0); if( rc ) return rc; if( eType==PTRMAP_FREEPAGE ){ searchList = 1; } } }else if( eMode==BTALLOC_LE ){ searchList = 1; } #endif /* Decrement the free-list count by 1. Set iTrunk to the index of the ** first free-list trunk page. iPrevTrunk is initially 1. */ rc = sqlite3PagerWrite(pPage1->pDbPage); if( rc ) return rc; put4byte(&pPage1->aData[36], n-1); /* The code within this loop is run only once if the 'searchList' variable ** is not true. Otherwise, it runs once for each trunk-page on the ** free-list until the page 'nearby' is located (eMode==BTALLOC_EXACT) ** or until a page less than 'nearby' is located (eMode==BTALLOC_LT) */ do { pPrevTrunk = pTrunk; if( pPrevTrunk ){ /* EVIDENCE-OF: R-01506-11053 The first integer on a freelist trunk page ** is the page number of the next freelist trunk page in the list or ** zero if this is the last freelist trunk page. */ iTrunk = get4byte(&pPrevTrunk->aData[0]); }else{ /* EVIDENCE-OF: R-59841-13798 The 4-byte big-endian integer at offset 32 ** stores the page number of the first page of the freelist, or zero if ** the freelist is empty. */ iTrunk = get4byte(&pPage1->aData[32]); } testcase( iTrunk==mxPage ); if( iTrunk>mxPage || nSearch++ > n ){ rc = SQLITE_CORRUPT_PGNO(pPrevTrunk ? pPrevTrunk->pgno : 1); }else{ rc = btreeGetUnusedPage(pBt, iTrunk, &pTrunk, 0); } if( rc ){ pTrunk = 0; goto end_allocate_page; } assert( pTrunk!=0 ); assert( pTrunk->aData!=0 ); /* EVIDENCE-OF: R-13523-04394 The second integer on a freelist trunk page ** is the number of leaf page pointers to follow. */ k = get4byte(&pTrunk->aData[4]); if( k==0 && !searchList ){ /* The trunk has no leaves and the list is not being searched. ** So extract the trunk page itself and use it as the newly ** allocated page */ assert( pPrevTrunk==0 ); rc = sqlite3PagerWrite(pTrunk->pDbPage); if( rc ){ goto end_allocate_page; } *pPgno = iTrunk; memcpy(&pPage1->aData[32], &pTrunk->aData[0], 4); *ppPage = pTrunk; pTrunk = 0; TRACE(("ALLOCATE: %d trunk - %d free pages left\n", *pPgno, n-1)); }else if( k>(u32)(pBt->usableSize/4 - 2) ){ /* Value of k is out of range. Database corruption */ rc = SQLITE_CORRUPT_PGNO(iTrunk); goto end_allocate_page; #ifndef SQLITE_OMIT_AUTOVACUUM }else if( searchList && (nearby==iTrunk || (iTrunkpDbPage); if( rc ){ goto end_allocate_page; } if( k==0 ){ if( !pPrevTrunk ){ memcpy(&pPage1->aData[32], &pTrunk->aData[0], 4); }else{ rc = sqlite3PagerWrite(pPrevTrunk->pDbPage); if( rc!=SQLITE_OK ){ goto end_allocate_page; } memcpy(&pPrevTrunk->aData[0], &pTrunk->aData[0], 4); } }else{ /* The trunk page is required by the caller but it contains ** pointers to free-list leaves. The first leaf becomes a trunk ** page in this case. */ MemPage *pNewTrunk; Pgno iNewTrunk = get4byte(&pTrunk->aData[8]); if( iNewTrunk>mxPage ){ rc = SQLITE_CORRUPT_PGNO(iTrunk); goto end_allocate_page; } testcase( iNewTrunk==mxPage ); rc = btreeGetUnusedPage(pBt, iNewTrunk, &pNewTrunk, 0); if( rc!=SQLITE_OK ){ goto end_allocate_page; } rc = sqlite3PagerWrite(pNewTrunk->pDbPage); if( rc!=SQLITE_OK ){ releasePage(pNewTrunk); goto end_allocate_page; } memcpy(&pNewTrunk->aData[0], &pTrunk->aData[0], 4); put4byte(&pNewTrunk->aData[4], k-1); memcpy(&pNewTrunk->aData[8], &pTrunk->aData[12], (k-1)*4); releasePage(pNewTrunk); if( !pPrevTrunk ){ assert( sqlite3PagerIswriteable(pPage1->pDbPage) ); put4byte(&pPage1->aData[32], iNewTrunk); }else{ rc = sqlite3PagerWrite(pPrevTrunk->pDbPage); if( rc ){ goto end_allocate_page; } put4byte(&pPrevTrunk->aData[0], iNewTrunk); } } pTrunk = 0; TRACE(("ALLOCATE: %d trunk - %d free pages left\n", *pPgno, n-1)); #endif }else if( k>0 ){ /* Extract a leaf from the trunk */ u32 closest; Pgno iPage; unsigned char *aData = pTrunk->aData; if( nearby>0 ){ u32 i; closest = 0; if( eMode==BTALLOC_LE ){ for(i=0; imxPage ){ rc = SQLITE_CORRUPT_PGNO(iTrunk); goto end_allocate_page; } testcase( iPage==mxPage ); if( !searchList || (iPage==nearby || (iPagepgno, n-1)); rc = sqlite3PagerWrite(pTrunk->pDbPage); if( rc ) goto end_allocate_page; if( closestpDbPage); if( rc!=SQLITE_OK ){ releasePage(*ppPage); *ppPage = 0; } } searchList = 0; } } releasePage(pPrevTrunk); pPrevTrunk = 0; }while( searchList ); }else{ /* There are no pages on the freelist, so append a new page to the ** database image. ** ** Normally, new pages allocated by this block can be requested from the ** pager layer with the 'no-content' flag set. This prevents the pager ** from trying to read the pages content from disk. However, if the ** current transaction has already run one or more incremental-vacuum ** steps, then the page we are about to allocate may contain content ** that is required in the event of a rollback. In this case, do ** not set the no-content flag. This causes the pager to load and journal ** the current page content before overwriting it. ** ** Note that the pager will not actually attempt to load or journal ** content for any page that really does lie past the end of the database ** file on disk. So the effects of disabling the no-content optimization ** here are confined to those pages that lie between the end of the ** database image and the end of the database file. */ int bNoContent = (0==IfNotOmitAV(pBt->bDoTruncate))? PAGER_GET_NOCONTENT:0; rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); if( rc ) return rc; pBt->nPage++; if( pBt->nPage==PENDING_BYTE_PAGE(pBt) ) pBt->nPage++; #ifndef SQLITE_OMIT_AUTOVACUUM if( pBt->autoVacuum && PTRMAP_ISPAGE(pBt, pBt->nPage) ){ /* If *pPgno refers to a pointer-map page, allocate two new pages ** at the end of the file instead of one. The first allocated page ** becomes a new pointer-map page, the second is used by the caller. */ MemPage *pPg = 0; TRACE(("ALLOCATE: %d from end of file (pointer-map page)\n", pBt->nPage)); assert( pBt->nPage!=PENDING_BYTE_PAGE(pBt) ); rc = btreeGetUnusedPage(pBt, pBt->nPage, &pPg, bNoContent); if( rc==SQLITE_OK ){ rc = sqlite3PagerWrite(pPg->pDbPage); releasePage(pPg); } if( rc ) return rc; pBt->nPage++; if( pBt->nPage==PENDING_BYTE_PAGE(pBt) ){ pBt->nPage++; } } #endif put4byte(28 + (u8*)pBt->pPage1->aData, pBt->nPage); *pPgno = pBt->nPage; assert( *pPgno!=PENDING_BYTE_PAGE(pBt) ); rc = btreeGetUnusedPage(pBt, *pPgno, ppPage, bNoContent); if( rc ) return rc; rc = sqlite3PagerWrite((*ppPage)->pDbPage); if( rc!=SQLITE_OK ){ releasePage(*ppPage); *ppPage = 0; } TRACE(("ALLOCATE: %d from end of file\n", *pPgno)); } assert( CORRUPT_DB || *pPgno!=PENDING_BYTE_PAGE(pBt) ); end_allocate_page: releasePage(pTrunk); releasePage(pPrevTrunk); assert( rc!=SQLITE_OK || sqlite3PagerPageRefcount((*ppPage)->pDbPage)<=1 ); assert( rc!=SQLITE_OK || (*ppPage)->isInit==0 ); return rc; } /* ** This function is used to add page iPage to the database file free-list. ** It is assumed that the page is not already a part of the free-list. ** ** The value passed as the second argument to this function is optional. ** If the caller happens to have a pointer to the MemPage object ** corresponding to page iPage handy, it may pass it as the second value. ** Otherwise, it may pass NULL. ** ** If a pointer to a MemPage object is passed as the second argument, ** its reference count is not altered by this function. */ static int freePage2(BtShared *pBt, MemPage *pMemPage, Pgno iPage){ MemPage *pTrunk = 0; /* Free-list trunk page */ Pgno iTrunk = 0; /* Page number of free-list trunk page */ MemPage *pPage1 = pBt->pPage1; /* Local reference to page 1 */ MemPage *pPage; /* Page being freed. May be NULL. */ int rc; /* Return Code */ u32 nFree; /* Initial number of pages on free-list */ assert( sqlite3_mutex_held(pBt->mutex) ); assert( CORRUPT_DB || iPage>1 ); assert( !pMemPage || pMemPage->pgno==iPage ); if( iPage<2 || iPage>pBt->nPage ){ return SQLITE_CORRUPT_BKPT; } if( pMemPage ){ pPage = pMemPage; sqlite3PagerRef(pPage->pDbPage); }else{ pPage = btreePageLookup(pBt, iPage); } /* Increment the free page count on pPage1 */ rc = sqlite3PagerWrite(pPage1->pDbPage); if( rc ) goto freepage_out; nFree = get4byte(&pPage1->aData[36]); put4byte(&pPage1->aData[36], nFree+1); if( pBt->btsFlags & BTS_SECURE_DELETE ){ /* If the secure_delete option is enabled, then ** always fully overwrite deleted information with zeros. */ if( (!pPage && ((rc = btreeGetPage(pBt, iPage, &pPage, 0))!=0) ) || ((rc = sqlite3PagerWrite(pPage->pDbPage))!=0) ){ goto freepage_out; } memset(pPage->aData, 0, pPage->pBt->pageSize); } /* If the database supports auto-vacuum, write an entry in the pointer-map ** to indicate that the page is free. */ if( ISAUTOVACUUM ){ ptrmapPut(pBt, iPage, PTRMAP_FREEPAGE, 0, &rc); if( rc ) goto freepage_out; } /* Now manipulate the actual database free-list structure. There are two ** possibilities. If the free-list is currently empty, or if the first ** trunk page in the free-list is full, then this page will become a ** new free-list trunk page. Otherwise, it will become a leaf of the ** first trunk page in the current free-list. This block tests if it ** is possible to add the page as a new free-list leaf. */ if( nFree!=0 ){ u32 nLeaf; /* Initial number of leaf cells on trunk page */ iTrunk = get4byte(&pPage1->aData[32]); if( iTrunk>btreePagecount(pBt) ){ rc = SQLITE_CORRUPT_BKPT; goto freepage_out; } rc = btreeGetPage(pBt, iTrunk, &pTrunk, 0); if( rc!=SQLITE_OK ){ goto freepage_out; } nLeaf = get4byte(&pTrunk->aData[4]); assert( pBt->usableSize>32 ); if( nLeaf > (u32)pBt->usableSize/4 - 2 ){ rc = SQLITE_CORRUPT_BKPT; goto freepage_out; } if( nLeaf < (u32)pBt->usableSize/4 - 8 ){ /* In this case there is room on the trunk page to insert the page ** being freed as a new leaf. ** ** Note that the trunk page is not really full until it contains ** usableSize/4 - 2 entries, not usableSize/4 - 8 entries as we have ** coded. But due to a coding error in versions of SQLite prior to ** 3.6.0, databases with freelist trunk pages holding more than ** usableSize/4 - 8 entries will be reported as corrupt. In order ** to maintain backwards compatibility with older versions of SQLite, ** we will continue to restrict the number of entries to usableSize/4 - 8 ** for now. At some point in the future (once everyone has upgraded ** to 3.6.0 or later) we should consider fixing the conditional above ** to read "usableSize/4-2" instead of "usableSize/4-8". ** ** EVIDENCE-OF: R-19920-11576 However, newer versions of SQLite still ** avoid using the last six entries in the freelist trunk page array in ** order that database files created by newer versions of SQLite can be ** read by older versions of SQLite. */ rc = sqlite3PagerWrite(pTrunk->pDbPage); if( rc==SQLITE_OK ){ put4byte(&pTrunk->aData[4], nLeaf+1); put4byte(&pTrunk->aData[8+nLeaf*4], iPage); if( pPage && (pBt->btsFlags & BTS_SECURE_DELETE)==0 ){ sqlite3PagerDontWrite(pPage->pDbPage); } rc = btreeSetHasContent(pBt, iPage); } TRACE(("FREE-PAGE: %d leaf on trunk page %d\n",pPage->pgno,pTrunk->pgno)); goto freepage_out; } } /* If control flows to this point, then it was not possible to add the ** the page being freed as a leaf page of the first trunk in the free-list. ** Possibly because the free-list is empty, or possibly because the ** first trunk in the free-list is full. Either way, the page being freed ** will become the new first trunk page in the free-list. */ if( pPage==0 && SQLITE_OK!=(rc = btreeGetPage(pBt, iPage, &pPage, 0)) ){ goto freepage_out; } rc = sqlite3PagerWrite(pPage->pDbPage); if( rc!=SQLITE_OK ){ goto freepage_out; } put4byte(pPage->aData, iTrunk); put4byte(&pPage->aData[4], 0); put4byte(&pPage1->aData[32], iPage); TRACE(("FREE-PAGE: %d new trunk page replacing %d\n", pPage->pgno, iTrunk)); freepage_out: if( pPage ){ pPage->isInit = 0; } releasePage(pPage); releasePage(pTrunk); return rc; } static void freePage(MemPage *pPage, int *pRC){ if( (*pRC)==SQLITE_OK ){ *pRC = freePage2(pPage->pBt, pPage, pPage->pgno); } } /* ** Free any overflow pages associated with the given Cell. Store ** size information about the cell in pInfo. */ static int clearCell( MemPage *pPage, /* The page that contains the Cell */ unsigned char *pCell, /* First byte of the Cell */ CellInfo *pInfo /* Size information about the cell */ ){ BtShared *pBt; Pgno ovflPgno; int rc; int nOvfl; u32 ovflPageSize; assert( sqlite3_mutex_held(pPage->pBt->mutex) ); pPage->xParseCell(pPage, pCell, pInfo); if( pInfo->nLocal==pInfo->nPayload ){ return SQLITE_OK; /* No overflow pages. Return without doing anything */ } testcase( pCell + pInfo->nSize == pPage->aDataEnd ); testcase( pCell + (pInfo->nSize-1) == pPage->aDataEnd ); if( pCell + pInfo->nSize > pPage->aDataEnd ){ /* Cell extends past end of page */ return SQLITE_CORRUPT_PAGE(pPage); } ovflPgno = get4byte(pCell + pInfo->nSize - 4); pBt = pPage->pBt; assert( pBt->usableSize > 4 ); ovflPageSize = pBt->usableSize - 4; nOvfl = (pInfo->nPayload - pInfo->nLocal + ovflPageSize - 1)/ovflPageSize; assert( nOvfl>0 || (CORRUPT_DB && (pInfo->nPayload + ovflPageSize)btreePagecount(pBt) ){ /* 0 is not a legal page number and page 1 cannot be an ** overflow page. Therefore if ovflPgno<2 or past the end of the ** file the database must be corrupt. */ return SQLITE_CORRUPT_BKPT; } if( nOvfl ){ rc = getOverflowPage(pBt, ovflPgno, &pOvfl, &iNext); if( rc ) return rc; } if( ( pOvfl || ((pOvfl = btreePageLookup(pBt, ovflPgno))!=0) ) && sqlite3PagerPageRefcount(pOvfl->pDbPage)!=1 ){ /* There is no reason any cursor should have an outstanding reference ** to an overflow page belonging to a cell that is being deleted/updated. ** So if there exists more than one reference to this page, then it ** must not really be an overflow page and the database must be corrupt. ** It is helpful to detect this before calling freePage2(), as ** freePage2() may zero the page contents if secure-delete mode is ** enabled. If this 'overflow' page happens to be a page that the ** caller is iterating through or using in some other way, this ** can be problematic. */ rc = SQLITE_CORRUPT_BKPT; }else{ rc = freePage2(pBt, pOvfl, ovflPgno); } if( pOvfl ){ sqlite3PagerUnref(pOvfl->pDbPage); } if( rc ) return rc; ovflPgno = iNext; } return SQLITE_OK; } /* ** Create the byte sequence used to represent a cell on page pPage ** and write that byte sequence into pCell[]. Overflow pages are ** allocated and filled in as necessary. The calling procedure ** is responsible for making sure sufficient space has been allocated ** for pCell[]. ** ** Note that pCell does not necessary need to point to the pPage->aData ** area. pCell might point to some temporary storage. The cell will ** be constructed in this temporary area then copied into pPage->aData ** later. */ static int fillInCell( MemPage *pPage, /* The page that contains the cell */ unsigned char *pCell, /* Complete text of the cell */ const BtreePayload *pX, /* Payload with which to construct the cell */ int *pnSize /* Write cell size here */ ){ int nPayload; const u8 *pSrc; int nSrc, n, rc, mn; int spaceLeft; MemPage *pToRelease; unsigned char *pPrior; unsigned char *pPayload; BtShared *pBt; Pgno pgnoOvfl; int nHeader; assert( sqlite3_mutex_held(pPage->pBt->mutex) ); /* pPage is not necessarily writeable since pCell might be auxiliary ** buffer space that is separate from the pPage buffer area */ assert( pCellaData || pCell>=&pPage->aData[pPage->pBt->pageSize] || sqlite3PagerIswriteable(pPage->pDbPage) ); /* Fill in the header. */ nHeader = pPage->childPtrSize; if( pPage->intKey ){ nPayload = pX->nData + pX->nZero; pSrc = pX->pData; nSrc = pX->nData; assert( pPage->intKeyLeaf ); /* fillInCell() only called for leaves */ nHeader += putVarint32(&pCell[nHeader], nPayload); nHeader += putVarint(&pCell[nHeader], *(u64*)&pX->nKey); }else{ assert( pX->nKey<=0x7fffffff && pX->pKey!=0 ); nSrc = nPayload = (int)pX->nKey; pSrc = pX->pKey; nHeader += putVarint32(&pCell[nHeader], nPayload); } /* Fill in the payload */ pPayload = &pCell[nHeader]; if( nPayload<=pPage->maxLocal ){ /* This is the common case where everything fits on the btree page ** and no overflow pages are required. */ n = nHeader + nPayload; testcase( n==3 ); testcase( n==4 ); if( n<4 ) n = 4; *pnSize = n; assert( nSrc<=nPayload ); testcase( nSrcminLocal; n = mn + (nPayload - mn) % (pPage->pBt->usableSize - 4); testcase( n==pPage->maxLocal ); testcase( n==pPage->maxLocal+1 ); if( n > pPage->maxLocal ) n = mn; spaceLeft = n; *pnSize = n + nHeader + 4; pPrior = &pCell[nHeader+n]; pToRelease = 0; pgnoOvfl = 0; pBt = pPage->pBt; /* At this point variables should be set as follows: ** ** nPayload Total payload size in bytes ** pPayload Begin writing payload here ** spaceLeft Space available at pPayload. If nPayload>spaceLeft, ** that means content must spill into overflow pages. ** *pnSize Size of the local cell (not counting overflow pages) ** pPrior Where to write the pgno of the first overflow page ** ** Use a call to btreeParseCellPtr() to verify that the values above ** were computed correctly. */ #ifdef SQLITE_DEBUG { CellInfo info; pPage->xParseCell(pPage, pCell, &info); assert( nHeader==(int)(info.pPayload - pCell) ); assert( info.nKey==pX->nKey ); assert( *pnSize == info.nSize ); assert( spaceLeft == info.nLocal ); } #endif /* Write the payload into the local Cell and any extra into overflow pages */ while( 1 ){ n = nPayload; if( n>spaceLeft ) n = spaceLeft; /* If pToRelease is not zero than pPayload points into the data area ** of pToRelease. Make sure pToRelease is still writeable. */ assert( pToRelease==0 || sqlite3PagerIswriteable(pToRelease->pDbPage) ); /* If pPayload is part of the data area of pPage, then make sure pPage ** is still writeable */ assert( pPayloadaData || pPayload>=&pPage->aData[pBt->pageSize] || sqlite3PagerIswriteable(pPage->pDbPage) ); if( nSrc>=n ){ memcpy(pPayload, pSrc, n); }else if( nSrc>0 ){ n = nSrc; memcpy(pPayload, pSrc, n); }else{ memset(pPayload, 0, n); } nPayload -= n; if( nPayload<=0 ) break; pPayload += n; pSrc += n; nSrc -= n; spaceLeft -= n; if( spaceLeft==0 ){ MemPage *pOvfl = 0; #ifndef SQLITE_OMIT_AUTOVACUUM Pgno pgnoPtrmap = pgnoOvfl; /* Overflow page pointer-map entry page */ if( pBt->autoVacuum ){ do{ pgnoOvfl++; } while( PTRMAP_ISPAGE(pBt, pgnoOvfl) || pgnoOvfl==PENDING_BYTE_PAGE(pBt) ); } #endif rc = allocateBtreePage(pBt, &pOvfl, &pgnoOvfl, pgnoOvfl, 0); #ifndef SQLITE_OMIT_AUTOVACUUM /* If the database supports auto-vacuum, and the second or subsequent ** overflow page is being allocated, add an entry to the pointer-map ** for that page now. ** ** If this is the first overflow page, then write a partial entry ** to the pointer-map. If we write nothing to this pointer-map slot, ** then the optimistic overflow chain processing in clearCell() ** may misinterpret the uninitialized values and delete the ** wrong pages from the database. */ if( pBt->autoVacuum && rc==SQLITE_OK ){ u8 eType = (pgnoPtrmap?PTRMAP_OVERFLOW2:PTRMAP_OVERFLOW1); ptrmapPut(pBt, pgnoOvfl, eType, pgnoPtrmap, &rc); if( rc ){ releasePage(pOvfl); } } #endif if( rc ){ releasePage(pToRelease); return rc; } /* If pToRelease is not zero than pPrior points into the data area ** of pToRelease. Make sure pToRelease is still writeable. */ assert( pToRelease==0 || sqlite3PagerIswriteable(pToRelease->pDbPage) ); /* If pPrior is part of the data area of pPage, then make sure pPage ** is still writeable */ assert( pPrioraData || pPrior>=&pPage->aData[pBt->pageSize] || sqlite3PagerIswriteable(pPage->pDbPage) ); put4byte(pPrior, pgnoOvfl); releasePage(pToRelease); pToRelease = pOvfl; pPrior = pOvfl->aData; put4byte(pPrior, 0); pPayload = &pOvfl->aData[4]; spaceLeft = pBt->usableSize - 4; } } releasePage(pToRelease); return SQLITE_OK; } /* ** Remove the i-th cell from pPage. This routine effects pPage only. ** The cell content is not freed or deallocated. It is assumed that ** the cell content has been copied someplace else. This routine just ** removes the reference to the cell from pPage. ** ** "sz" must be the number of bytes in the cell. */ static void dropCell(MemPage *pPage, int idx, int sz, int *pRC){ u32 pc; /* Offset to cell content of cell being deleted */ u8 *data; /* pPage->aData */ u8 *ptr; /* Used to move bytes around within data[] */ int rc; /* The return code */ int hdr; /* Beginning of the header. 0 most pages. 100 page 1 */ if( *pRC ) return; assert( idx>=0 && idxnCell ); assert( CORRUPT_DB || sz==cellSize(pPage, idx) ); assert( sqlite3PagerIswriteable(pPage->pDbPage) ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( pPage->nFree>=0 ); data = pPage->aData; ptr = &pPage->aCellIdx[2*idx]; pc = get2byte(ptr); hdr = pPage->hdrOffset; testcase( pc==get2byte(&data[hdr+5]) ); testcase( pc+sz==pPage->pBt->usableSize ); if( pc+sz > pPage->pBt->usableSize ){ *pRC = SQLITE_CORRUPT_BKPT; return; } rc = freeSpace(pPage, pc, sz); if( rc ){ *pRC = rc; return; } pPage->nCell--; if( pPage->nCell==0 ){ memset(&data[hdr+1], 0, 4); data[hdr+7] = 0; put2byte(&data[hdr+5], pPage->pBt->usableSize); pPage->nFree = pPage->pBt->usableSize - pPage->hdrOffset - pPage->childPtrSize - 8; }else{ memmove(ptr, ptr+2, 2*(pPage->nCell - idx)); put2byte(&data[hdr+3], pPage->nCell); pPage->nFree += 2; } } /* ** Insert a new cell on pPage at cell index "i". pCell points to the ** content of the cell. ** ** If the cell content will fit on the page, then put it there. If it ** will not fit, then make a copy of the cell content into pTemp if ** pTemp is not null. Regardless of pTemp, allocate a new entry ** in pPage->apOvfl[] and make it point to the cell content (either ** in pTemp or the original pCell) and also record its index. ** Allocating a new entry in pPage->aCell[] implies that ** pPage->nOverflow is incremented. ** ** *pRC must be SQLITE_OK when this routine is called. */ static void insertCell( MemPage *pPage, /* Page into which we are copying */ int i, /* New cell becomes the i-th cell of the page */ u8 *pCell, /* Content of the new cell */ int sz, /* Bytes of content in pCell */ u8 *pTemp, /* Temp storage space for pCell, if needed */ Pgno iChild, /* If non-zero, replace first 4 bytes with this value */ int *pRC /* Read and write return code from here */ ){ int idx = 0; /* Where to write new cell content in data[] */ int j; /* Loop counter */ u8 *data; /* The content of the whole page */ u8 *pIns; /* The point in pPage->aCellIdx[] where no cell inserted */ assert( *pRC==SQLITE_OK ); assert( i>=0 && i<=pPage->nCell+pPage->nOverflow ); assert( MX_CELL(pPage->pBt)<=10921 ); assert( pPage->nCell<=MX_CELL(pPage->pBt) || CORRUPT_DB ); assert( pPage->nOverflow<=ArraySize(pPage->apOvfl) ); assert( ArraySize(pPage->apOvfl)==ArraySize(pPage->aiOvfl) ); assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( sz==pPage->xCellSize(pPage, pCell) || CORRUPT_DB ); assert( pPage->nFree>=0 ); if( pPage->nOverflow || sz+2>pPage->nFree ){ if( pTemp ){ memcpy(pTemp, pCell, sz); pCell = pTemp; } if( iChild ){ put4byte(pCell, iChild); } j = pPage->nOverflow++; /* Comparison against ArraySize-1 since we hold back one extra slot ** as a contingency. In other words, never need more than 3 overflow ** slots but 4 are allocated, just to be safe. */ assert( j < ArraySize(pPage->apOvfl)-1 ); pPage->apOvfl[j] = pCell; pPage->aiOvfl[j] = (u16)i; /* When multiple overflows occur, they are always sequential and in ** sorted order. This invariants arise because multiple overflows can ** only occur when inserting divider cells into the parent page during ** balancing, and the dividers are adjacent and sorted. */ assert( j==0 || pPage->aiOvfl[j-1]<(u16)i ); /* Overflows in sorted order */ assert( j==0 || i==pPage->aiOvfl[j-1]+1 ); /* Overflows are sequential */ }else{ int rc = sqlite3PagerWrite(pPage->pDbPage); if( rc!=SQLITE_OK ){ *pRC = rc; return; } assert( sqlite3PagerIswriteable(pPage->pDbPage) ); data = pPage->aData; assert( &data[pPage->cellOffset]==pPage->aCellIdx ); rc = allocateSpace(pPage, sz, &idx); if( rc ){ *pRC = rc; return; } /* The allocateSpace() routine guarantees the following properties ** if it returns successfully */ assert( idx >= 0 ); assert( idx >= pPage->cellOffset+2*pPage->nCell+2 || CORRUPT_DB ); assert( idx+sz <= (int)pPage->pBt->usableSize ); pPage->nFree -= (u16)(2 + sz); if( iChild ){ /* In a corrupt database where an entry in the cell index section of ** a btree page has a value of 3 or less, the pCell value might point ** as many as 4 bytes in front of the start of the aData buffer for ** the source page. Make sure this does not cause problems by not ** reading the first 4 bytes */ memcpy(&data[idx+4], pCell+4, sz-4); put4byte(&data[idx], iChild); }else{ memcpy(&data[idx], pCell, sz); } pIns = pPage->aCellIdx + i*2; memmove(pIns+2, pIns, 2*(pPage->nCell - i)); put2byte(pIns, idx); pPage->nCell++; /* increment the cell count */ if( (++data[pPage->hdrOffset+4])==0 ) data[pPage->hdrOffset+3]++; assert( get2byte(&data[pPage->hdrOffset+3])==pPage->nCell || CORRUPT_DB ); #ifndef SQLITE_OMIT_AUTOVACUUM if( pPage->pBt->autoVacuum ){ /* The cell may contain a pointer to an overflow page. If so, write ** the entry for the overflow page into the pointer map. */ ptrmapPutOvflPtr(pPage, pPage, pCell, pRC); } #endif } } /* ** The following parameters determine how many adjacent pages get involved ** in a balancing operation. NN is the number of neighbors on either side ** of the page that participate in the balancing operation. NB is the ** total number of pages that participate, including the target page and ** NN neighbors on either side. ** ** The minimum value of NN is 1 (of course). Increasing NN above 1 ** (to 2 or 3) gives a modest improvement in SELECT and DELETE performance ** in exchange for a larger degradation in INSERT and UPDATE performance. ** The value of NN appears to give the best results overall. ** ** (Later:) The description above makes it seem as if these values are ** tunable - as if you could change them and recompile and it would all work. ** But that is unlikely. NB has been 3 since the inception of SQLite and ** we have never tested any other value. */ #define NN 1 /* Number of neighbors on either side of pPage */ #define NB 3 /* (NN*2+1): Total pages involved in the balance */ /* ** A CellArray object contains a cache of pointers and sizes for a ** consecutive sequence of cells that might be held on multiple pages. ** ** The cells in this array are the divider cell or cells from the pParent ** page plus up to three child pages. There are a total of nCell cells. ** ** pRef is a pointer to one of the pages that contributes cells. This is ** used to access information such as MemPage.intKey and MemPage.pBt->pageSize ** which should be common to all pages that contribute cells to this array. ** ** apCell[] and szCell[] hold, respectively, pointers to the start of each ** cell and the size of each cell. Some of the apCell[] pointers might refer ** to overflow cells. In other words, some apCel[] pointers might not point ** to content area of the pages. ** ** A szCell[] of zero means the size of that cell has not yet been computed. ** ** The cells come from as many as four different pages: ** ** ----------- ** | Parent | ** ----------- ** / | \ ** / | \ ** --------- --------- --------- ** |Child-1| |Child-2| |Child-3| ** --------- --------- --------- ** ** The order of cells is in the array is for an index btree is: ** ** 1. All cells from Child-1 in order ** 2. The first divider cell from Parent ** 3. All cells from Child-2 in order ** 4. The second divider cell from Parent ** 5. All cells from Child-3 in order ** ** For a table-btree (with rowids) the items 2 and 4 are empty because ** content exists only in leaves and there are no divider cells. ** ** For an index btree, the apEnd[] array holds pointer to the end of page ** for Child-1, the Parent, Child-2, the Parent (again), and Child-3, ** respectively. The ixNx[] array holds the number of cells contained in ** each of these 5 stages, and all stages to the left. Hence: ** ** ixNx[0] = Number of cells in Child-1. ** ixNx[1] = Number of cells in Child-1 plus 1 for first divider. ** ixNx[2] = Number of cells in Child-1 and Child-2 + 1 for 1st divider. ** ixNx[3] = Number of cells in Child-1 and Child-2 + both divider cells ** ixNx[4] = Total number of cells. ** ** For a table-btree, the concept is similar, except only apEnd[0]..apEnd[2] ** are used and they point to the leaf pages only, and the ixNx value are: ** ** ixNx[0] = Number of cells in Child-1. ** ixNx[1] = Number of cells in Child-1 and Child-2. ** ixNx[2] = Total number of cells. ** ** Sometimes when deleting, a child page can have zero cells. In those ** cases, ixNx[] entries with higher indexes, and the corresponding apEnd[] ** entries, shift down. The end result is that each ixNx[] entry should ** be larger than the previous */ typedef struct CellArray CellArray; struct CellArray { int nCell; /* Number of cells in apCell[] */ MemPage *pRef; /* Reference page */ u8 **apCell; /* All cells begin balanced */ u16 *szCell; /* Local size of all cells in apCell[] */ u8 *apEnd[NB*2]; /* MemPage.aDataEnd values */ int ixNx[NB*2]; /* Index of at which we move to the next apEnd[] */ }; /* ** Make sure the cell sizes at idx, idx+1, ..., idx+N-1 have been ** computed. */ static void populateCellCache(CellArray *p, int idx, int N){ assert( idx>=0 && idx+N<=p->nCell ); while( N>0 ){ assert( p->apCell[idx]!=0 ); if( p->szCell[idx]==0 ){ p->szCell[idx] = p->pRef->xCellSize(p->pRef, p->apCell[idx]); }else{ assert( CORRUPT_DB || p->szCell[idx]==p->pRef->xCellSize(p->pRef, p->apCell[idx]) ); } idx++; N--; } } /* ** Return the size of the Nth element of the cell array */ static SQLITE_NOINLINE u16 computeCellSize(CellArray *p, int N){ assert( N>=0 && NnCell ); assert( p->szCell[N]==0 ); p->szCell[N] = p->pRef->xCellSize(p->pRef, p->apCell[N]); return p->szCell[N]; } static u16 cachedCellSize(CellArray *p, int N){ assert( N>=0 && NnCell ); if( p->szCell[N] ) return p->szCell[N]; return computeCellSize(p, N); } /* ** Array apCell[] contains pointers to nCell b-tree page cells. The ** szCell[] array contains the size in bytes of each cell. This function ** replaces the current contents of page pPg with the contents of the cell ** array. ** ** Some of the cells in apCell[] may currently be stored in pPg. This ** function works around problems caused by this by making a copy of any ** such cells before overwriting the page data. ** ** The MemPage.nFree field is invalidated by this function. It is the ** responsibility of the caller to set it correctly. */ static int rebuildPage( CellArray *pCArray, /* Content to be added to page pPg */ int iFirst, /* First cell in pCArray to use */ int nCell, /* Final number of cells on page */ MemPage *pPg /* The page to be reconstructed */ ){ const int hdr = pPg->hdrOffset; /* Offset of header on pPg */ u8 * const aData = pPg->aData; /* Pointer to data for pPg */ const int usableSize = pPg->pBt->usableSize; u8 * const pEnd = &aData[usableSize]; int i = iFirst; /* Which cell to copy from pCArray*/ u32 j; /* Start of cell content area */ int iEnd = i+nCell; /* Loop terminator */ u8 *pCellptr = pPg->aCellIdx; u8 *pTmp = sqlite3PagerTempSpace(pPg->pBt->pPager); u8 *pData; int k; /* Current slot in pCArray->apEnd[] */ u8 *pSrcEnd; /* Current pCArray->apEnd[k] value */ assert( i(u32)usableSize) ){ j = 0; } memcpy(&pTmp[j], &aData[j], usableSize - j); for(k=0; pCArray->ixNx[k]<=i && ALWAYS(kapEnd[k]; pData = pEnd; while( 1/*exit by break*/ ){ u8 *pCell = pCArray->apCell[i]; u16 sz = pCArray->szCell[i]; assert( sz>0 ); if( SQLITE_WITHIN(pCell,aData,pEnd) ){ if( ((uptr)(pCell+sz))>(uptr)pEnd ) return SQLITE_CORRUPT_BKPT; pCell = &pTmp[pCell - aData]; }else if( (uptr)(pCell+sz)>(uptr)pSrcEnd && (uptr)(pCell)<(uptr)pSrcEnd ){ return SQLITE_CORRUPT_BKPT; } pData -= sz; put2byte(pCellptr, (pData - aData)); pCellptr += 2; if( pData < pCellptr ) return SQLITE_CORRUPT_BKPT; memcpy(pData, pCell, sz); assert( sz==pPg->xCellSize(pPg, pCell) || CORRUPT_DB ); testcase( sz!=pPg->xCellSize(pPg,pCell) ) i++; if( i>=iEnd ) break; if( pCArray->ixNx[k]<=i ){ k++; pSrcEnd = pCArray->apEnd[k]; } } /* The pPg->nFree field is now set incorrectly. The caller will fix it. */ pPg->nCell = nCell; pPg->nOverflow = 0; put2byte(&aData[hdr+1], 0); put2byte(&aData[hdr+3], pPg->nCell); put2byte(&aData[hdr+5], pData - aData); aData[hdr+7] = 0x00; return SQLITE_OK; } /* ** The pCArray objects contains pointers to b-tree cells and the cell sizes. ** This function attempts to add the cells stored in the array to page pPg. ** If it cannot (because the page needs to be defragmented before the cells ** will fit), non-zero is returned. Otherwise, if the cells are added ** successfully, zero is returned. ** ** Argument pCellptr points to the first entry in the cell-pointer array ** (part of page pPg) to populate. After cell apCell[0] is written to the ** page body, a 16-bit offset is written to pCellptr. And so on, for each ** cell in the array. It is the responsibility of the caller to ensure ** that it is safe to overwrite this part of the cell-pointer array. ** ** When this function is called, *ppData points to the start of the ** content area on page pPg. If the size of the content area is extended, ** *ppData is updated to point to the new start of the content area ** before returning. ** ** Finally, argument pBegin points to the byte immediately following the ** end of the space required by this page for the cell-pointer area (for ** all cells - not just those inserted by the current call). If the content ** area must be extended to before this point in order to accomodate all ** cells in apCell[], then the cells do not fit and non-zero is returned. */ static int pageInsertArray( MemPage *pPg, /* Page to add cells to */ u8 *pBegin, /* End of cell-pointer array */ u8 **ppData, /* IN/OUT: Page content-area pointer */ u8 *pCellptr, /* Pointer to cell-pointer area */ int iFirst, /* Index of first cell to add */ int nCell, /* Number of cells to add to pPg */ CellArray *pCArray /* Array of cells */ ){ int i = iFirst; /* Loop counter - cell index to insert */ u8 *aData = pPg->aData; /* Complete page */ u8 *pData = *ppData; /* Content area. A subset of aData[] */ int iEnd = iFirst + nCell; /* End of loop. One past last cell to ins */ int k; /* Current slot in pCArray->apEnd[] */ u8 *pEnd; /* Maximum extent of cell data */ assert( CORRUPT_DB || pPg->hdrOffset==0 ); /* Never called on page 1 */ if( iEnd<=iFirst ) return 0; for(k=0; pCArray->ixNx[k]<=i && ALWAYS(kapEnd[k]; while( 1 /*Exit by break*/ ){ int sz, rc; u8 *pSlot; assert( pCArray->szCell[i]!=0 ); sz = pCArray->szCell[i]; if( (aData[1]==0 && aData[2]==0) || (pSlot = pageFindSlot(pPg,sz,&rc))==0 ){ if( (pData - pBegin)apCell[i] will never overlap on a well-formed ** database. But they might for a corrupt database. Hence use memmove() ** since memcpy() sends SIGABORT with overlapping buffers on OpenBSD */ assert( (pSlot+sz)<=pCArray->apCell[i] || pSlot>=(pCArray->apCell[i]+sz) || CORRUPT_DB ); if( (uptr)(pCArray->apCell[i]+sz)>(uptr)pEnd && (uptr)(pCArray->apCell[i])<(uptr)pEnd ){ assert( CORRUPT_DB ); (void)SQLITE_CORRUPT_BKPT; return 1; } memmove(pSlot, pCArray->apCell[i], sz); put2byte(pCellptr, (pSlot - aData)); pCellptr += 2; i++; if( i>=iEnd ) break; if( pCArray->ixNx[k]<=i ){ k++; pEnd = pCArray->apEnd[k]; } } *ppData = pData; return 0; } /* ** The pCArray object contains pointers to b-tree cells and their sizes. ** ** This function adds the space associated with each cell in the array ** that is currently stored within the body of pPg to the pPg free-list. ** The cell-pointers and other fields of the page are not updated. ** ** This function returns the total number of cells added to the free-list. */ static int pageFreeArray( MemPage *pPg, /* Page to edit */ int iFirst, /* First cell to delete */ int nCell, /* Cells to delete */ CellArray *pCArray /* Array of cells */ ){ u8 * const aData = pPg->aData; u8 * const pEnd = &aData[pPg->pBt->usableSize]; u8 * const pStart = &aData[pPg->hdrOffset + 8 + pPg->childPtrSize]; int nRet = 0; int i; int iEnd = iFirst + nCell; u8 *pFree = 0; int szFree = 0; for(i=iFirst; iapCell[i]; if( SQLITE_WITHIN(pCell, pStart, pEnd) ){ int sz; /* No need to use cachedCellSize() here. The sizes of all cells that ** are to be freed have already been computing while deciding which ** cells need freeing */ sz = pCArray->szCell[i]; assert( sz>0 ); if( pFree!=(pCell + sz) ){ if( pFree ){ assert( pFree>aData && (pFree - aData)<65536 ); freeSpace(pPg, (u16)(pFree - aData), szFree); } pFree = pCell; szFree = sz; if( pFree+sz>pEnd ) return 0; }else{ pFree = pCell; szFree += sz; } nRet++; } } if( pFree ){ assert( pFree>aData && (pFree - aData)<65536 ); freeSpace(pPg, (u16)(pFree - aData), szFree); } return nRet; } /* ** pCArray contains pointers to and sizes of all cells in the page being ** balanced. The current page, pPg, has pPg->nCell cells starting with ** pCArray->apCell[iOld]. After balancing, this page should hold nNew cells ** starting at apCell[iNew]. ** ** This routine makes the necessary adjustments to pPg so that it contains ** the correct cells after being balanced. ** ** The pPg->nFree field is invalid when this function returns. It is the ** responsibility of the caller to set it correctly. */ static int editPage( MemPage *pPg, /* Edit this page */ int iOld, /* Index of first cell currently on page */ int iNew, /* Index of new first cell on page */ int nNew, /* Final number of cells on page */ CellArray *pCArray /* Array of cells and sizes */ ){ u8 * const aData = pPg->aData; const int hdr = pPg->hdrOffset; u8 *pBegin = &pPg->aCellIdx[nNew * 2]; int nCell = pPg->nCell; /* Cells stored on pPg */ u8 *pData; u8 *pCellptr; int i; int iOldEnd = iOld + pPg->nCell + pPg->nOverflow; int iNewEnd = iNew + nNew; #ifdef SQLITE_DEBUG u8 *pTmp = sqlite3PagerTempSpace(pPg->pBt->pPager); memcpy(pTmp, aData, pPg->pBt->usableSize); #endif /* Remove cells from the start and end of the page */ assert( nCell>=0 ); if( iOldnCell) ) return SQLITE_CORRUPT_BKPT; memmove(pPg->aCellIdx, &pPg->aCellIdx[nShift*2], nCell*2); nCell -= nShift; } if( iNewEnd < iOldEnd ){ int nTail = pageFreeArray(pPg, iNewEnd, iOldEnd - iNewEnd, pCArray); assert( nCell>=nTail ); nCell -= nTail; } pData = &aData[get2byteNotZero(&aData[hdr+5])]; if( pData=0 ); pCellptr = pPg->aCellIdx; memmove(&pCellptr[nAdd*2], pCellptr, nCell*2); if( pageInsertArray( pPg, pBegin, &pData, pCellptr, iNew, nAdd, pCArray ) ) goto editpage_fail; nCell += nAdd; } /* Add any overflow cells */ for(i=0; inOverflow; i++){ int iCell = (iOld + pPg->aiOvfl[i]) - iNew; if( iCell>=0 && iCellaCellIdx[iCell * 2]; if( nCell>iCell ){ memmove(&pCellptr[2], pCellptr, (nCell - iCell) * 2); } nCell++; cachedCellSize(pCArray, iCell+iNew); if( pageInsertArray( pPg, pBegin, &pData, pCellptr, iCell+iNew, 1, pCArray ) ) goto editpage_fail; } } /* Append cells to the end of the page */ assert( nCell>=0 ); pCellptr = &pPg->aCellIdx[nCell*2]; if( pageInsertArray( pPg, pBegin, &pData, pCellptr, iNew+nCell, nNew-nCell, pCArray ) ) goto editpage_fail; pPg->nCell = nNew; pPg->nOverflow = 0; put2byte(&aData[hdr+3], pPg->nCell); put2byte(&aData[hdr+5], pData - aData); #ifdef SQLITE_DEBUG for(i=0; iapCell[i+iNew]; int iOff = get2byteAligned(&pPg->aCellIdx[i*2]); if( SQLITE_WITHIN(pCell, aData, &aData[pPg->pBt->usableSize]) ){ pCell = &pTmp[pCell - aData]; } assert( 0==memcmp(pCell, &aData[iOff], pCArray->pRef->xCellSize(pCArray->pRef, pCArray->apCell[i+iNew])) ); } #endif return SQLITE_OK; editpage_fail: /* Unable to edit this page. Rebuild it from scratch instead. */ populateCellCache(pCArray, iNew, nNew); return rebuildPage(pCArray, iNew, nNew, pPg); } #ifndef SQLITE_OMIT_QUICKBALANCE /* ** This version of balance() handles the common special case where ** a new entry is being inserted on the extreme right-end of the ** tree, in other words, when the new entry will become the largest ** entry in the tree. ** ** Instead of trying to balance the 3 right-most leaf pages, just add ** a new page to the right-hand side and put the one new entry in ** that page. This leaves the right side of the tree somewhat ** unbalanced. But odds are that we will be inserting new entries ** at the end soon afterwards so the nearly empty page will quickly ** fill up. On average. ** ** pPage is the leaf page which is the right-most page in the tree. ** pParent is its parent. pPage must have a single overflow entry ** which is also the right-most entry on the page. ** ** The pSpace buffer is used to store a temporary copy of the divider ** cell that will be inserted into pParent. Such a cell consists of a 4 ** byte page number followed by a variable length integer. In other ** words, at most 13 bytes. Hence the pSpace buffer must be at ** least 13 bytes in size. */ static int balance_quick(MemPage *pParent, MemPage *pPage, u8 *pSpace){ BtShared *const pBt = pPage->pBt; /* B-Tree Database */ MemPage *pNew; /* Newly allocated page */ int rc; /* Return Code */ Pgno pgnoNew; /* Page number of pNew */ assert( sqlite3_mutex_held(pPage->pBt->mutex) ); assert( sqlite3PagerIswriteable(pParent->pDbPage) ); assert( pPage->nOverflow==1 ); if( pPage->nCell==0 ) return SQLITE_CORRUPT_BKPT; /* dbfuzz001.test */ assert( pPage->nFree>=0 ); assert( pParent->nFree>=0 ); /* Allocate a new page. This page will become the right-sibling of ** pPage. Make the parent page writable, so that the new divider cell ** may be inserted. If both these operations are successful, proceed. */ rc = allocateBtreePage(pBt, &pNew, &pgnoNew, 0, 0); if( rc==SQLITE_OK ){ u8 *pOut = &pSpace[4]; u8 *pCell = pPage->apOvfl[0]; u16 szCell = pPage->xCellSize(pPage, pCell); u8 *pStop; CellArray b; assert( sqlite3PagerIswriteable(pNew->pDbPage) ); assert( CORRUPT_DB || pPage->aData[0]==(PTF_INTKEY|PTF_LEAFDATA|PTF_LEAF) ); zeroPage(pNew, PTF_INTKEY|PTF_LEAFDATA|PTF_LEAF); b.nCell = 1; b.pRef = pPage; b.apCell = &pCell; b.szCell = &szCell; b.apEnd[0] = pPage->aDataEnd; b.ixNx[0] = 2; rc = rebuildPage(&b, 0, 1, pNew); if( NEVER(rc) ){ releasePage(pNew); return rc; } pNew->nFree = pBt->usableSize - pNew->cellOffset - 2 - szCell; /* If this is an auto-vacuum database, update the pointer map ** with entries for the new page, and any pointer from the ** cell on the page to an overflow page. If either of these ** operations fails, the return code is set, but the contents ** of the parent page are still manipulated by thh code below. ** That is Ok, at this point the parent page is guaranteed to ** be marked as dirty. Returning an error code will cause a ** rollback, undoing any changes made to the parent page. */ if( ISAUTOVACUUM ){ ptrmapPut(pBt, pgnoNew, PTRMAP_BTREE, pParent->pgno, &rc); if( szCell>pNew->minLocal ){ ptrmapPutOvflPtr(pNew, pNew, pCell, &rc); } } /* Create a divider cell to insert into pParent. The divider cell ** consists of a 4-byte page number (the page number of pPage) and ** a variable length key value (which must be the same value as the ** largest key on pPage). ** ** To find the largest key value on pPage, first find the right-most ** cell on pPage. The first two fields of this cell are the ** record-length (a variable length integer at most 32-bits in size) ** and the key value (a variable length integer, may have any value). ** The first of the while(...) loops below skips over the record-length ** field. The second while(...) loop copies the key value from the ** cell on pPage into the pSpace buffer. */ pCell = findCell(pPage, pPage->nCell-1); pStop = &pCell[9]; while( (*(pCell++)&0x80) && pCellnCell, pSpace, (int)(pOut-pSpace), 0, pPage->pgno, &rc); } /* Set the right-child pointer of pParent to point to the new page. */ put4byte(&pParent->aData[pParent->hdrOffset+8], pgnoNew); /* Release the reference to the new page. */ releasePage(pNew); } return rc; } #endif /* SQLITE_OMIT_QUICKBALANCE */ #if 0 /* ** This function does not contribute anything to the operation of SQLite. ** it is sometimes activated temporarily while debugging code responsible ** for setting pointer-map entries. */ static int ptrmapCheckPages(MemPage **apPage, int nPage){ int i, j; for(i=0; ipBt; assert( pPage->isInit ); for(j=0; jnCell; j++){ CellInfo info; u8 *z; z = findCell(pPage, j); pPage->xParseCell(pPage, z, &info); if( info.nLocalpgno && e==PTRMAP_OVERFLOW1 ); } if( !pPage->leaf ){ Pgno child = get4byte(z); ptrmapGet(pBt, child, &e, &n); assert( n==pPage->pgno && e==PTRMAP_BTREE ); } } if( !pPage->leaf ){ Pgno child = get4byte(&pPage->aData[pPage->hdrOffset+8]); ptrmapGet(pBt, child, &e, &n); assert( n==pPage->pgno && e==PTRMAP_BTREE ); } } return 1; } #endif /* ** This function is used to copy the contents of the b-tree node stored ** on page pFrom to page pTo. If page pFrom was not a leaf page, then ** the pointer-map entries for each child page are updated so that the ** parent page stored in the pointer map is page pTo. If pFrom contained ** any cells with overflow page pointers, then the corresponding pointer ** map entries are also updated so that the parent page is page pTo. ** ** If pFrom is currently carrying any overflow cells (entries in the ** MemPage.apOvfl[] array), they are not copied to pTo. ** ** Before returning, page pTo is reinitialized using btreeInitPage(). ** ** The performance of this function is not critical. It is only used by ** the balance_shallower() and balance_deeper() procedures, neither of ** which are called often under normal circumstances. */ static void copyNodeContent(MemPage *pFrom, MemPage *pTo, int *pRC){ if( (*pRC)==SQLITE_OK ){ BtShared * const pBt = pFrom->pBt; u8 * const aFrom = pFrom->aData; u8 * const aTo = pTo->aData; int const iFromHdr = pFrom->hdrOffset; int const iToHdr = ((pTo->pgno==1) ? 100 : 0); int rc; int iData; assert( pFrom->isInit ); assert( pFrom->nFree>=iToHdr ); assert( get2byte(&aFrom[iFromHdr+5]) <= (int)pBt->usableSize ); /* Copy the b-tree node content from page pFrom to page pTo. */ iData = get2byte(&aFrom[iFromHdr+5]); memcpy(&aTo[iData], &aFrom[iData], pBt->usableSize-iData); memcpy(&aTo[iToHdr], &aFrom[iFromHdr], pFrom->cellOffset + 2*pFrom->nCell); /* Reinitialize page pTo so that the contents of the MemPage structure ** match the new data. The initialization of pTo can actually fail under ** fairly obscure circumstances, even though it is a copy of initialized ** page pFrom. */ pTo->isInit = 0; rc = btreeInitPage(pTo); if( rc==SQLITE_OK ) rc = btreeComputeFreeSpace(pTo); if( rc!=SQLITE_OK ){ *pRC = rc; return; } /* If this is an auto-vacuum database, update the pointer-map entries ** for any b-tree or overflow pages that pTo now contains the pointers to. */ if( ISAUTOVACUUM ){ *pRC = setChildPtrmaps(pTo); } } } /* ** This routine redistributes cells on the iParentIdx'th child of pParent ** (hereafter "the page") and up to 2 siblings so that all pages have about the ** same amount of free space. Usually a single sibling on either side of the ** page are used in the balancing, though both siblings might come from one ** side if the page is the first or last child of its parent. If the page ** has fewer than 2 siblings (something which can only happen if the page ** is a root page or a child of a root page) then all available siblings ** participate in the balancing. ** ** The number of siblings of the page might be increased or decreased by ** one or two in an effort to keep pages nearly full but not over full. ** ** Note that when this routine is called, some of the cells on the page ** might not actually be stored in MemPage.aData[]. This can happen ** if the page is overfull. This routine ensures that all cells allocated ** to the page and its siblings fit into MemPage.aData[] before returning. ** ** In the course of balancing the page and its siblings, cells may be ** inserted into or removed from the parent page (pParent). Doing so ** may cause the parent page to become overfull or underfull. If this ** happens, it is the responsibility of the caller to invoke the correct ** balancing routine to fix this problem (see the balance() routine). ** ** If this routine fails for any reason, it might leave the database ** in a corrupted state. So if this routine fails, the database should ** be rolled back. ** ** The third argument to this function, aOvflSpace, is a pointer to a ** buffer big enough to hold one page. If while inserting cells into the parent ** page (pParent) the parent page becomes overfull, this buffer is ** used to store the parent's overflow cells. Because this function inserts ** a maximum of four divider cells into the parent page, and the maximum ** size of a cell stored within an internal node is always less than 1/4 ** of the page-size, the aOvflSpace[] buffer is guaranteed to be large ** enough for all overflow cells. ** ** If aOvflSpace is set to a null pointer, this function returns ** SQLITE_NOMEM. */ static int balance_nonroot( MemPage *pParent, /* Parent page of siblings being balanced */ int iParentIdx, /* Index of "the page" in pParent */ u8 *aOvflSpace, /* page-size bytes of space for parent ovfl */ int isRoot, /* True if pParent is a root-page */ int bBulk /* True if this call is part of a bulk load */ ){ BtShared *pBt; /* The whole database */ int nMaxCells = 0; /* Allocated size of apCell, szCell, aFrom. */ int nNew = 0; /* Number of pages in apNew[] */ int nOld; /* Number of pages in apOld[] */ int i, j, k; /* Loop counters */ int nxDiv; /* Next divider slot in pParent->aCell[] */ int rc = SQLITE_OK; /* The return code */ u16 leafCorrection; /* 4 if pPage is a leaf. 0 if not */ int leafData; /* True if pPage is a leaf of a LEAFDATA tree */ int usableSpace; /* Bytes in pPage beyond the header */ int pageFlags; /* Value of pPage->aData[0] */ int iSpace1 = 0; /* First unused byte of aSpace1[] */ int iOvflSpace = 0; /* First unused byte of aOvflSpace[] */ int szScratch; /* Size of scratch memory requested */ MemPage *apOld[NB]; /* pPage and up to two siblings */ MemPage *apNew[NB+2]; /* pPage and up to NB siblings after balancing */ u8 *pRight; /* Location in parent of right-sibling pointer */ u8 *apDiv[NB-1]; /* Divider cells in pParent */ int cntNew[NB+2]; /* Index in b.paCell[] of cell after i-th page */ int cntOld[NB+2]; /* Old index in b.apCell[] */ int szNew[NB+2]; /* Combined size of cells placed on i-th page */ u8 *aSpace1; /* Space for copies of dividers cells */ Pgno pgno; /* Temp var to store a page number in */ u8 abDone[NB+2]; /* True after i'th new page is populated */ Pgno aPgno[NB+2]; /* Page numbers of new pages before shuffling */ Pgno aPgOrder[NB+2]; /* Copy of aPgno[] used for sorting pages */ u16 aPgFlags[NB+2]; /* flags field of new pages before shuffling */ CellArray b; /* Parsed information on cells being balanced */ memset(abDone, 0, sizeof(abDone)); b.nCell = 0; b.apCell = 0; pBt = pParent->pBt; assert( sqlite3_mutex_held(pBt->mutex) ); assert( sqlite3PagerIswriteable(pParent->pDbPage) ); /* At this point pParent may have at most one overflow cell. And if ** this overflow cell is present, it must be the cell with ** index iParentIdx. This scenario comes about when this function ** is called (indirectly) from sqlite3BtreeDelete(). */ assert( pParent->nOverflow==0 || pParent->nOverflow==1 ); assert( pParent->nOverflow==0 || pParent->aiOvfl[0]==iParentIdx ); if( !aOvflSpace ){ return SQLITE_NOMEM_BKPT; } assert( pParent->nFree>=0 ); /* Find the sibling pages to balance. Also locate the cells in pParent ** that divide the siblings. An attempt is made to find NN siblings on ** either side of pPage. More siblings are taken from one side, however, ** if there are fewer than NN siblings on the other side. If pParent ** has NB or fewer children then all children of pParent are taken. ** ** This loop also drops the divider cells from the parent page. This ** way, the remainder of the function does not have to deal with any ** overflow cells in the parent page, since if any existed they will ** have already been removed. */ i = pParent->nOverflow + pParent->nCell; if( i<2 ){ nxDiv = 0; }else{ assert( bBulk==0 || bBulk==1 ); if( iParentIdx==0 ){ nxDiv = 0; }else if( iParentIdx==i ){ nxDiv = i-2+bBulk; }else{ nxDiv = iParentIdx-1; } i = 2-bBulk; } nOld = i+1; if( (i+nxDiv-pParent->nOverflow)==pParent->nCell ){ pRight = &pParent->aData[pParent->hdrOffset+8]; }else{ pRight = findCell(pParent, i+nxDiv-pParent->nOverflow); } pgno = get4byte(pRight); while( 1 ){ rc = getAndInitPage(pBt, pgno, &apOld[i], 0, 0); if( rc ){ memset(apOld, 0, (i+1)*sizeof(MemPage*)); goto balance_cleanup; } if( apOld[i]->nFree<0 ){ rc = btreeComputeFreeSpace(apOld[i]); if( rc ){ memset(apOld, 0, (i)*sizeof(MemPage*)); goto balance_cleanup; } } if( (i--)==0 ) break; if( pParent->nOverflow && i+nxDiv==pParent->aiOvfl[0] ){ apDiv[i] = pParent->apOvfl[0]; pgno = get4byte(apDiv[i]); szNew[i] = pParent->xCellSize(pParent, apDiv[i]); pParent->nOverflow = 0; }else{ apDiv[i] = findCell(pParent, i+nxDiv-pParent->nOverflow); pgno = get4byte(apDiv[i]); szNew[i] = pParent->xCellSize(pParent, apDiv[i]); /* Drop the cell from the parent page. apDiv[i] still points to ** the cell within the parent, even though it has been dropped. ** This is safe because dropping a cell only overwrites the first ** four bytes of it, and this function does not need the first ** four bytes of the divider cell. So the pointer is safe to use ** later on. ** ** But not if we are in secure-delete mode. In secure-delete mode, ** the dropCell() routine will overwrite the entire cell with zeroes. ** In this case, temporarily copy the cell into the aOvflSpace[] ** buffer. It will be copied out again as soon as the aSpace[] buffer ** is allocated. */ if( pBt->btsFlags & BTS_FAST_SECURE ){ int iOff; iOff = SQLITE_PTR_TO_INT(apDiv[i]) - SQLITE_PTR_TO_INT(pParent->aData); if( (iOff+szNew[i])>(int)pBt->usableSize ){ rc = SQLITE_CORRUPT_BKPT; memset(apOld, 0, (i+1)*sizeof(MemPage*)); goto balance_cleanup; }else{ memcpy(&aOvflSpace[iOff], apDiv[i], szNew[i]); apDiv[i] = &aOvflSpace[apDiv[i]-pParent->aData]; } } dropCell(pParent, i+nxDiv-pParent->nOverflow, szNew[i], &rc); } } /* Make nMaxCells a multiple of 4 in order to preserve 8-byte ** alignment */ nMaxCells = nOld*(MX_CELL(pBt) + ArraySize(pParent->apOvfl)); nMaxCells = (nMaxCells + 3)&~3; /* ** Allocate space for memory structures */ szScratch = nMaxCells*sizeof(u8*) /* b.apCell */ + nMaxCells*sizeof(u16) /* b.szCell */ + pBt->pageSize; /* aSpace1 */ assert( szScratch<=7*(int)pBt->pageSize ); b.apCell = sqlite3StackAllocRaw(0, szScratch ); if( b.apCell==0 ){ rc = SQLITE_NOMEM_BKPT; goto balance_cleanup; } b.szCell = (u16*)&b.apCell[nMaxCells]; aSpace1 = (u8*)&b.szCell[nMaxCells]; assert( EIGHT_BYTE_ALIGNMENT(aSpace1) ); /* ** Load pointers to all cells on sibling pages and the divider cells ** into the local b.apCell[] array. Make copies of the divider cells ** into space obtained from aSpace1[]. The divider cells have already ** been removed from pParent. ** ** If the siblings are on leaf pages, then the child pointers of the ** divider cells are stripped from the cells before they are copied ** into aSpace1[]. In this way, all cells in b.apCell[] are without ** child pointers. If siblings are not leaves, then all cell in ** b.apCell[] include child pointers. Either way, all cells in b.apCell[] ** are alike. ** ** leafCorrection: 4 if pPage is a leaf. 0 if pPage is not a leaf. ** leafData: 1 if pPage holds key+data and pParent holds only keys. */ b.pRef = apOld[0]; leafCorrection = b.pRef->leaf*4; leafData = b.pRef->intKeyLeaf; for(i=0; inCell; u8 *aData = pOld->aData; u16 maskPage = pOld->maskPage; u8 *piCell = aData + pOld->cellOffset; u8 *piEnd; VVA_ONLY( int nCellAtStart = b.nCell; ) /* Verify that all sibling pages are of the same "type" (table-leaf, ** table-interior, index-leaf, or index-interior). */ if( pOld->aData[0]!=apOld[0]->aData[0] ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } /* Load b.apCell[] with pointers to all cells in pOld. If pOld ** contains overflow cells, include them in the b.apCell[] array ** in the correct spot. ** ** Note that when there are multiple overflow cells, it is always the ** case that they are sequential and adjacent. This invariant arises ** because multiple overflows can only occurs when inserting divider ** cells into a parent on a prior balance, and divider cells are always ** adjacent and are inserted in order. There is an assert() tagged ** with "NOTE 1" in the overflow cell insertion loop to prove this ** invariant. ** ** This must be done in advance. Once the balance starts, the cell ** offset section of the btree page will be overwritten and we will no ** long be able to find the cells if a pointer to each cell is not saved ** first. */ memset(&b.szCell[b.nCell], 0, sizeof(b.szCell[0])*(limit+pOld->nOverflow)); if( pOld->nOverflow>0 ){ if( NEVER(limitaiOvfl[0]) ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } limit = pOld->aiOvfl[0]; for(j=0; jnOverflow; k++){ assert( k==0 || pOld->aiOvfl[k-1]+1==pOld->aiOvfl[k] );/* NOTE 1 */ b.apCell[b.nCell] = pOld->apOvfl[k]; b.nCell++; } } piEnd = aData + pOld->cellOffset + 2*pOld->nCell; while( piCellnCell+pOld->nOverflow) ); cntOld[i] = b.nCell; if( imaxLocal+23 ); assert( iSpace1 <= (int)pBt->pageSize ); memcpy(pTemp, apDiv[i], sz); b.apCell[b.nCell] = pTemp+leafCorrection; assert( leafCorrection==0 || leafCorrection==4 ); b.szCell[b.nCell] = b.szCell[b.nCell] - leafCorrection; if( !pOld->leaf ){ assert( leafCorrection==0 ); assert( pOld->hdrOffset==0 ); /* The right pointer of the child page pOld becomes the left ** pointer of the divider cell */ memcpy(b.apCell[b.nCell], &pOld->aData[8], 4); }else{ assert( leafCorrection==4 ); while( b.szCell[b.nCell]<4 ){ /* Do not allow any cells smaller than 4 bytes. If a smaller cell ** does exist, pad it with 0x00 bytes. */ assert( b.szCell[b.nCell]==3 || CORRUPT_DB ); assert( b.apCell[b.nCell]==&aSpace1[iSpace1-3] || CORRUPT_DB ); aSpace1[iSpace1++] = 0x00; b.szCell[b.nCell]++; } } b.nCell++; } } /* ** Figure out the number of pages needed to hold all b.nCell cells. ** Store this number in "k". Also compute szNew[] which is the total ** size of all cells on the i-th page and cntNew[] which is the index ** in b.apCell[] of the cell that divides page i from page i+1. ** cntNew[k] should equal b.nCell. ** ** Values computed by this block: ** ** k: The total number of sibling pages ** szNew[i]: Spaced used on the i-th sibling page. ** cntNew[i]: Index in b.apCell[] and b.szCell[] for the first cell to ** the right of the i-th sibling page. ** usableSpace: Number of bytes of space available on each sibling. ** */ usableSpace = pBt->usableSize - 12 + leafCorrection; for(i=k=0; iaDataEnd; b.ixNx[k] = cntOld[i]; if( k && b.ixNx[k]==b.ixNx[k-1] ){ k--; /* Omit b.ixNx[] entry for child pages with no cells */ } if( !leafData ){ k++; b.apEnd[k] = pParent->aDataEnd; b.ixNx[k] = cntOld[i]+1; } assert( p->nFree>=0 ); szNew[i] = usableSpace - p->nFree; for(j=0; jnOverflow; j++){ szNew[i] += 2 + p->xCellSize(p, p->apOvfl[j]); } cntNew[i] = cntOld[i]; } k = nOld; for(i=0; iusableSpace ){ if( i+1>=k ){ k = i+2; if( k>NB+2 ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } szNew[k-1] = 0; cntNew[k-1] = b.nCell; } sz = 2 + cachedCellSize(&b, cntNew[i]-1); szNew[i] -= sz; if( !leafData ){ if( cntNew[i]usableSpace ) break; szNew[i] += sz; cntNew[i]++; if( !leafData ){ if( cntNew[i]=b.nCell ){ k = i+1; }else if( cntNew[i] <= (i>0 ? cntNew[i-1] : 0) ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } } /* ** The packing computed by the previous block is biased toward the siblings ** on the left side (siblings with smaller keys). The left siblings are ** always nearly full, while the right-most sibling might be nearly empty. ** The next block of code attempts to adjust the packing of siblings to ** get a better balance. ** ** This adjustment is more than an optimization. The packing above might ** be so out of balance as to be illegal. For example, the right-most ** sibling might be completely empty. This adjustment is not optional. */ for(i=k-1; i>0; i--){ int szRight = szNew[i]; /* Size of sibling on the right */ int szLeft = szNew[i-1]; /* Size of sibling on the left */ int r; /* Index of right-most cell in left sibling */ int d; /* Index of first cell to the left of right sibling */ r = cntNew[i-1] - 1; d = r + 1 - leafData; (void)cachedCellSize(&b, d); do{ assert( d szLeft-(b.szCell[r]+(i==k-1?0:2)))){ break; } szRight += b.szCell[d] + 2; szLeft -= b.szCell[r] + 2; cntNew[i-1] = r; r--; d--; }while( r>=0 ); szNew[i] = szRight; szNew[i-1] = szLeft; if( cntNew[i-1] <= (i>1 ? cntNew[i-2] : 0) ){ rc = SQLITE_CORRUPT_BKPT; goto balance_cleanup; } } /* Sanity check: For a non-corrupt database file one of the follwing ** must be true: ** (1) We found one or more cells (cntNew[0])>0), or ** (2) pPage is a virtual root page. A virtual root page is when ** the real root page is page 1 and we are the only child of ** that page. */ assert( cntNew[0]>0 || (pParent->pgno==1 && pParent->nCell==0) || CORRUPT_DB); TRACE(("BALANCE: old: %d(nc=%d) %d(nc=%d) %d(nc=%d)\n", apOld[0]->pgno, apOld[0]->nCell, nOld>=2 ? apOld[1]->pgno : 0, nOld>=2 ? apOld[1]->nCell : 0, nOld>=3 ? apOld[2]->pgno : 0, nOld>=3 ? apOld[2]->nCell : 0 )); /* ** Allocate k new pages. Reuse old pages where possible. */ pageFlags = apOld[0]->aData[0]; for(i=0; ipDbPage); nNew++; if( rc ) goto balance_cleanup; }else{ assert( i>0 ); rc = allocateBtreePage(pBt, &pNew, &pgno, (bBulk ? 1 : pgno), 0); if( rc ) goto balance_cleanup; zeroPage(pNew, pageFlags); apNew[i] = pNew; nNew++; cntOld[i] = b.nCell; /* Set the pointer-map entry for the new sibling page. */ if( ISAUTOVACUUM ){ ptrmapPut(pBt, pNew->pgno, PTRMAP_BTREE, pParent->pgno, &rc); if( rc!=SQLITE_OK ){ goto balance_cleanup; } } } } /* ** Reassign page numbers so that the new pages are in ascending order. ** This helps to keep entries in the disk file in order so that a scan ** of the table is closer to a linear scan through the file. That in turn ** helps the operating system to deliver pages from the disk more rapidly. ** ** An O(n^2) insertion sort algorithm is used, but since n is never more ** than (NB+2) (a small constant), that should not be a problem. ** ** When NB==3, this one optimization makes the database about 25% faster ** for large insertions and deletions. */ for(i=0; ipgno; aPgFlags[i] = apNew[i]->pDbPage->flags; for(j=0; ji ){ sqlite3PagerRekey(apNew[iBest]->pDbPage, pBt->nPage+iBest+1, 0); } sqlite3PagerRekey(apNew[i]->pDbPage, pgno, aPgFlags[iBest]); apNew[i]->pgno = pgno; } } TRACE(("BALANCE: new: %d(%d nc=%d) %d(%d nc=%d) %d(%d nc=%d) " "%d(%d nc=%d) %d(%d nc=%d)\n", apNew[0]->pgno, szNew[0], cntNew[0], nNew>=2 ? apNew[1]->pgno : 0, nNew>=2 ? szNew[1] : 0, nNew>=2 ? cntNew[1] - cntNew[0] - !leafData : 0, nNew>=3 ? apNew[2]->pgno : 0, nNew>=3 ? szNew[2] : 0, nNew>=3 ? cntNew[2] - cntNew[1] - !leafData : 0, nNew>=4 ? apNew[3]->pgno : 0, nNew>=4 ? szNew[3] : 0, nNew>=4 ? cntNew[3] - cntNew[2] - !leafData : 0, nNew>=5 ? apNew[4]->pgno : 0, nNew>=5 ? szNew[4] : 0, nNew>=5 ? cntNew[4] - cntNew[3] - !leafData : 0 )); assert( sqlite3PagerIswriteable(pParent->pDbPage) ); assert( nNew>=1 && nNew<=ArraySize(apNew) ); assert( apNew[nNew-1]!=0 ); put4byte(pRight, apNew[nNew-1]->pgno); /* If the sibling pages are not leaves, ensure that the right-child pointer ** of the right-most new sibling page is set to the value that was ** originally in the same field of the right-most old sibling page. */ if( (pageFlags & PTF_LEAF)==0 && nOld!=nNew ){ MemPage *pOld = (nNew>nOld ? apNew : apOld)[nOld-1]; memcpy(&apNew[nNew-1]->aData[8], &pOld->aData[8], 4); } /* Make any required updates to pointer map entries associated with ** cells stored on sibling pages following the balance operation. Pointer ** map entries associated with divider cells are set by the insertCell() ** routine. The associated pointer map entries are: ** ** a) if the cell contains a reference to an overflow chain, the ** entry associated with the first page in the overflow chain, and ** ** b) if the sibling pages are not leaves, the child page associated ** with the cell. ** ** If the sibling pages are not leaves, then the pointer map entry ** associated with the right-child of each sibling may also need to be ** updated. This happens below, after the sibling pages have been ** populated, not here. */ if( ISAUTOVACUUM ){ MemPage *pOld; MemPage *pNew = pOld = apNew[0]; int cntOldNext = pNew->nCell + pNew->nOverflow; int iNew = 0; int iOld = 0; for(i=0; i=0 && iOldnCell + pOld->nOverflow + !leafData; } if( i==cntNew[iNew] ){ pNew = apNew[++iNew]; if( !leafData ) continue; } /* Cell pCell is destined for new sibling page pNew. Originally, it ** was either part of sibling page iOld (possibly an overflow cell), ** or else the divider cell to the left of sibling page iOld. So, ** if sibling page iOld had the same page number as pNew, and if ** pCell really was a part of sibling page iOld (not a divider or ** overflow cell), we can skip updating the pointer map entries. */ if( iOld>=nNew || pNew->pgno!=aPgno[iOld] || !SQLITE_WITHIN(pCell,pOld->aData,pOld->aDataEnd) ){ if( !leafCorrection ){ ptrmapPut(pBt, get4byte(pCell), PTRMAP_BTREE, pNew->pgno, &rc); } if( cachedCellSize(&b,i)>pNew->minLocal ){ ptrmapPutOvflPtr(pNew, pOld, pCell, &rc); } if( rc ) goto balance_cleanup; } } } /* Insert new divider cells into pParent. */ for(i=0; ileaf ){ memcpy(&pNew->aData[8], pCell, 4); }else if( leafData ){ /* If the tree is a leaf-data tree, and the siblings are leaves, ** then there is no divider cell in b.apCell[]. Instead, the divider ** cell consists of the integer key for the right-most cell of ** the sibling-page assembled above only. */ CellInfo info; j--; pNew->xParseCell(pNew, b.apCell[j], &info); pCell = pTemp; sz = 4 + putVarint(&pCell[4], info.nKey); pTemp = 0; }else{ pCell -= 4; /* Obscure case for non-leaf-data trees: If the cell at pCell was ** previously stored on a leaf node, and its reported size was 4 ** bytes, then it may actually be smaller than this ** (see btreeParseCellPtr(), 4 bytes is the minimum size of ** any cell). But it is important to pass the correct size to ** insertCell(), so reparse the cell now. ** ** This can only happen for b-trees used to evaluate "IN (SELECT ...)" ** and WITHOUT ROWID tables with exactly one column which is the ** primary key. */ if( b.szCell[j]==4 ){ assert(leafCorrection==4); sz = pParent->xCellSize(pParent, pCell); } } iOvflSpace += sz; assert( sz<=pBt->maxLocal+23 ); assert( iOvflSpace <= (int)pBt->pageSize ); insertCell(pParent, nxDiv+i, pCell, sz, pTemp, pNew->pgno, &rc); if( rc!=SQLITE_OK ) goto balance_cleanup; assert( sqlite3PagerIswriteable(pParent->pDbPage) ); } /* Now update the actual sibling pages. The order in which they are updated ** is important, as this code needs to avoid disrupting any page from which ** cells may still to be read. In practice, this means: ** ** (1) If cells are moving left (from apNew[iPg] to apNew[iPg-1]) ** then it is not safe to update page apNew[iPg] until after ** the left-hand sibling apNew[iPg-1] has been updated. ** ** (2) If cells are moving right (from apNew[iPg] to apNew[iPg+1]) ** then it is not safe to update page apNew[iPg] until after ** the right-hand sibling apNew[iPg+1] has been updated. ** ** If neither of the above apply, the page is safe to update. ** ** The iPg value in the following loop starts at nNew-1 goes down ** to 0, then back up to nNew-1 again, thus making two passes over ** the pages. On the initial downward pass, only condition (1) above ** needs to be tested because (2) will always be true from the previous ** step. On the upward pass, both conditions are always true, so the ** upwards pass simply processes pages that were missed on the downward ** pass. */ for(i=1-nNew; i=0 && iPg=0 /* On the upwards pass, or... */ || cntOld[iPg-1]>=cntNew[iPg-1] /* Condition (1) is true */ ){ int iNew; int iOld; int nNewCell; /* Verify condition (1): If cells are moving left, update iPg ** only after iPg-1 has already been updated. */ assert( iPg==0 || cntOld[iPg-1]>=cntNew[iPg-1] || abDone[iPg-1] ); /* Verify condition (2): If cells are moving right, update iPg ** only after iPg+1 has already been updated. */ assert( cntNew[iPg]>=cntOld[iPg] || abDone[iPg+1] ); if( iPg==0 ){ iNew = iOld = 0; nNewCell = cntNew[0]; }else{ iOld = iPgnFree = usableSpace-szNew[iPg]; assert( apNew[iPg]->nOverflow==0 ); assert( apNew[iPg]->nCell==nNewCell ); } } /* All pages have been processed exactly once */ assert( memcmp(abDone, "\01\01\01\01\01", nNew)==0 ); assert( nOld>0 ); assert( nNew>0 ); if( isRoot && pParent->nCell==0 && pParent->hdrOffset<=apNew[0]->nFree ){ /* The root page of the b-tree now contains no cells. The only sibling ** page is the right-child of the parent. Copy the contents of the ** child page into the parent, decreasing the overall height of the ** b-tree structure by one. This is described as the "balance-shallower" ** sub-algorithm in some documentation. ** ** If this is an auto-vacuum database, the call to copyNodeContent() ** sets all pointer-map entries corresponding to database image pages ** for which the pointer is stored within the content being copied. ** ** It is critical that the child page be defragmented before being ** copied into the parent, because if the parent is page 1 then it will ** by smaller than the child due to the database header, and so all the ** free space needs to be up front. */ assert( nNew==1 || CORRUPT_DB ); rc = defragmentPage(apNew[0], -1); testcase( rc!=SQLITE_OK ); assert( apNew[0]->nFree == (get2byteNotZero(&apNew[0]->aData[5]) - apNew[0]->cellOffset - apNew[0]->nCell*2) || rc!=SQLITE_OK ); copyNodeContent(apNew[0], pParent, &rc); freePage(apNew[0], &rc); }else if( ISAUTOVACUUM && !leafCorrection ){ /* Fix the pointer map entries associated with the right-child of each ** sibling page. All other pointer map entries have already been taken ** care of. */ for(i=0; iaData[8]); ptrmapPut(pBt, key, PTRMAP_BTREE, apNew[i]->pgno, &rc); } } assert( pParent->isInit ); TRACE(("BALANCE: finished: old=%d new=%d cells=%d\n", nOld, nNew, b.nCell)); /* Free any old pages that were not reused as new pages. */ for(i=nNew; iisInit ){ /* The ptrmapCheckPages() contains assert() statements that verify that ** all pointer map pages are set correctly. This is helpful while ** debugging. This is usually disabled because a corrupt database may ** cause an assert() statement to fail. */ ptrmapCheckPages(apNew, nNew); ptrmapCheckPages(&pParent, 1); } #endif /* ** Cleanup before returning. */ balance_cleanup: sqlite3StackFree(0, b.apCell); for(i=0; ipBt; /* The BTree */ assert( pRoot->nOverflow>0 ); assert( sqlite3_mutex_held(pBt->mutex) ); /* Make pRoot, the root page of the b-tree, writable. Allocate a new ** page that will become the new right-child of pPage. Copy the contents ** of the node stored on pRoot into the new child page. */ rc = sqlite3PagerWrite(pRoot->pDbPage); if( rc==SQLITE_OK ){ rc = allocateBtreePage(pBt,&pChild,&pgnoChild,pRoot->pgno,0); copyNodeContent(pRoot, pChild, &rc); if( ISAUTOVACUUM ){ ptrmapPut(pBt, pgnoChild, PTRMAP_BTREE, pRoot->pgno, &rc); } } if( rc ){ *ppChild = 0; releasePage(pChild); return rc; } assert( sqlite3PagerIswriteable(pChild->pDbPage) ); assert( sqlite3PagerIswriteable(pRoot->pDbPage) ); assert( pChild->nCell==pRoot->nCell || CORRUPT_DB ); TRACE(("BALANCE: copy root %d into %d\n", pRoot->pgno, pChild->pgno)); /* Copy the overflow cells from pRoot to pChild */ memcpy(pChild->aiOvfl, pRoot->aiOvfl, pRoot->nOverflow*sizeof(pRoot->aiOvfl[0])); memcpy(pChild->apOvfl, pRoot->apOvfl, pRoot->nOverflow*sizeof(pRoot->apOvfl[0])); pChild->nOverflow = pRoot->nOverflow; /* Zero the contents of pRoot. Then install pChild as the right-child. */ zeroPage(pRoot, pChild->aData[0] & ~PTF_LEAF); put4byte(&pRoot->aData[pRoot->hdrOffset+8], pgnoChild); *ppChild = pChild; return SQLITE_OK; } /* ** Return SQLITE_CORRUPT if any cursor other than pCur is currently valid ** on the same B-tree as pCur. ** ** This can if a database is corrupt with two or more SQL tables ** pointing to the same b-tree. If an insert occurs on one SQL table ** and causes a BEFORE TRIGGER to do a secondary insert on the other SQL ** table linked to the same b-tree. If the secondary insert causes a ** rebalance, that can change content out from under the cursor on the ** first SQL table, violating invariants on the first insert. */ static int anotherValidCursor(BtCursor *pCur){ BtCursor *pOther; for(pOther=pCur->pBt->pCursor; pOther; pOther=pOther->pNext){ if( pOther!=pCur && pOther->eState==CURSOR_VALID && pOther->pPage==pCur->pPage ){ return SQLITE_CORRUPT_BKPT; } } return SQLITE_OK; } /* ** The page that pCur currently points to has just been modified in ** some way. This function figures out if this modification means the ** tree needs to be balanced, and if so calls the appropriate balancing ** routine. Balancing routines are: ** ** balance_quick() ** balance_deeper() ** balance_nonroot() */ static int balance(BtCursor *pCur){ int rc = SQLITE_OK; const int nMin = pCur->pBt->usableSize * 2 / 3; u8 aBalanceQuickSpace[13]; u8 *pFree = 0; VVA_ONLY( int balance_quick_called = 0 ); VVA_ONLY( int balance_deeper_called = 0 ); do { int iPage; MemPage *pPage = pCur->pPage; if( NEVER(pPage->nFree<0) && btreeComputeFreeSpace(pPage) ) break; if( pPage->nOverflow==0 && pPage->nFree<=nMin ){ break; }else if( (iPage = pCur->iPage)==0 ){ if( pPage->nOverflow && (rc = anotherValidCursor(pCur))==SQLITE_OK ){ /* The root page of the b-tree is overfull. In this case call the ** balance_deeper() function to create a new child for the root-page ** and copy the current contents of the root-page to it. The ** next iteration of the do-loop will balance the child page. */ assert( balance_deeper_called==0 ); VVA_ONLY( balance_deeper_called++ ); rc = balance_deeper(pPage, &pCur->apPage[1]); if( rc==SQLITE_OK ){ pCur->iPage = 1; pCur->ix = 0; pCur->aiIdx[0] = 0; pCur->apPage[0] = pPage; pCur->pPage = pCur->apPage[1]; assert( pCur->pPage->nOverflow ); } }else{ break; } }else{ MemPage * const pParent = pCur->apPage[iPage-1]; int const iIdx = pCur->aiIdx[iPage-1]; rc = sqlite3PagerWrite(pParent->pDbPage); if( rc==SQLITE_OK && pParent->nFree<0 ){ rc = btreeComputeFreeSpace(pParent); } if( rc==SQLITE_OK ){ #ifndef SQLITE_OMIT_QUICKBALANCE if( pPage->intKeyLeaf && pPage->nOverflow==1 && pPage->aiOvfl[0]==pPage->nCell && pParent->pgno!=1 && pParent->nCell==iIdx ){ /* Call balance_quick() to create a new sibling of pPage on which ** to store the overflow cell. balance_quick() inserts a new cell ** into pParent, which may cause pParent overflow. If this ** happens, the next iteration of the do-loop will balance pParent ** use either balance_nonroot() or balance_deeper(). Until this ** happens, the overflow cell is stored in the aBalanceQuickSpace[] ** buffer. ** ** The purpose of the following assert() is to check that only a ** single call to balance_quick() is made for each call to this ** function. If this were not verified, a subtle bug involving reuse ** of the aBalanceQuickSpace[] might sneak in. */ assert( balance_quick_called==0 ); VVA_ONLY( balance_quick_called++ ); rc = balance_quick(pParent, pPage, aBalanceQuickSpace); }else #endif { /* In this case, call balance_nonroot() to redistribute cells ** between pPage and up to 2 of its sibling pages. This involves ** modifying the contents of pParent, which may cause pParent to ** become overfull or underfull. The next iteration of the do-loop ** will balance the parent page to correct this. ** ** If the parent page becomes overfull, the overflow cell or cells ** are stored in the pSpace buffer allocated immediately below. ** A subsequent iteration of the do-loop will deal with this by ** calling balance_nonroot() (balance_deeper() may be called first, ** but it doesn't deal with overflow cells - just moves them to a ** different page). Once this subsequent call to balance_nonroot() ** has completed, it is safe to release the pSpace buffer used by ** the previous call, as the overflow cell data will have been ** copied either into the body of a database page or into the new ** pSpace buffer passed to the latter call to balance_nonroot(). */ u8 *pSpace = sqlite3PageMalloc(pCur->pBt->pageSize); rc = balance_nonroot(pParent, iIdx, pSpace, iPage==1, pCur->hints&BTREE_BULKLOAD); if( pFree ){ /* If pFree is not NULL, it points to the pSpace buffer used ** by a previous call to balance_nonroot(). Its contents are ** now stored either on real database pages or within the ** new pSpace buffer, so it may be safely freed here. */ sqlite3PageFree(pFree); } /* The pSpace buffer will be freed after the next call to ** balance_nonroot(), or just before this function returns, whichever ** comes first. */ pFree = pSpace; } } pPage->nOverflow = 0; /* The next iteration of the do-loop balances the parent page. */ releasePage(pPage); pCur->iPage--; assert( pCur->iPage>=0 ); pCur->pPage = pCur->apPage[pCur->iPage]; } }while( rc==SQLITE_OK ); if( pFree ){ sqlite3PageFree(pFree); } return rc; } /* Overwrite content from pX into pDest. Only do the write if the ** content is different from what is already there. */ static int btreeOverwriteContent( MemPage *pPage, /* MemPage on which writing will occur */ u8 *pDest, /* Pointer to the place to start writing */ const BtreePayload *pX, /* Source of data to write */ int iOffset, /* Offset of first byte to write */ int iAmt /* Number of bytes to be written */ ){ int nData = pX->nData - iOffset; if( nData<=0 ){ /* Overwritting with zeros */ int i; for(i=0; ipDbPage); if( rc ) return rc; memset(pDest + i, 0, iAmt - i); } }else{ if( nDatapData) + iOffset, iAmt)!=0 ){ int rc = sqlite3PagerWrite(pPage->pDbPage); if( rc ) return rc; /* In a corrupt database, it is possible for the source and destination ** buffers to overlap. This is harmless since the database is already ** corrupt but it does cause valgrind and ASAN warnings. So use ** memmove(). */ memmove(pDest, ((u8*)pX->pData) + iOffset, iAmt); } } return SQLITE_OK; } /* ** Overwrite the cell that cursor pCur is pointing to with fresh content ** contained in pX. */ static int btreeOverwriteCell(BtCursor *pCur, const BtreePayload *pX){ int iOffset; /* Next byte of pX->pData to write */ int nTotal = pX->nData + pX->nZero; /* Total bytes of to write */ int rc; /* Return code */ MemPage *pPage = pCur->pPage; /* Page being written */ BtShared *pBt; /* Btree */ Pgno ovflPgno; /* Next overflow page to write */ u32 ovflPageSize; /* Size to write on overflow page */ if( pCur->info.pPayload + pCur->info.nLocal > pPage->aDataEnd || pCur->info.pPayload < pPage->aData + pPage->cellOffset ){ return SQLITE_CORRUPT_BKPT; } /* Overwrite the local portion first */ rc = btreeOverwriteContent(pPage, pCur->info.pPayload, pX, 0, pCur->info.nLocal); if( rc ) return rc; if( pCur->info.nLocal==nTotal ) return SQLITE_OK; /* Now overwrite the overflow pages */ iOffset = pCur->info.nLocal; assert( nTotal>=0 ); assert( iOffset>=0 ); ovflPgno = get4byte(pCur->info.pPayload + iOffset); pBt = pPage->pBt; ovflPageSize = pBt->usableSize - 4; do{ rc = btreeGetPage(pBt, ovflPgno, &pPage, 0); if( rc ) return rc; if( sqlite3PagerPageRefcount(pPage->pDbPage)!=1 ){ rc = SQLITE_CORRUPT_BKPT; }else{ if( iOffset+ovflPageSize<(u32)nTotal ){ ovflPgno = get4byte(pPage->aData); }else{ ovflPageSize = nTotal - iOffset; } rc = btreeOverwriteContent(pPage, pPage->aData+4, pX, iOffset, ovflPageSize); } sqlite3PagerUnref(pPage->pDbPage); if( rc ) return rc; iOffset += ovflPageSize; }while( iOffset0 then pCur points to a cell ** that is larger than (pKey,nKey). ** ** If seekResult==0, that means pCur is pointing at some unknown location. ** In that case, this routine must seek the cursor to the correct insertion ** point for (pKey,nKey) before doing the insertion. For index btrees, ** if pX->nMem is non-zero, then pX->aMem contains pointers to the unpacked ** key values and pX->aMem can be used instead of pX->pKey to avoid having ** to decode the key. */ SQLITE_PRIVATE int sqlite3BtreeInsert( BtCursor *pCur, /* Insert data into the table of this cursor */ const BtreePayload *pX, /* Content of the row to be inserted */ int flags, /* True if this is likely an append */ int seekResult /* Result of prior MovetoUnpacked() call */ ){ int rc; int loc = seekResult; /* -1: before desired location +1: after */ int szNew = 0; int idx; MemPage *pPage; Btree *p = pCur->pBtree; BtShared *pBt = p->pBt; unsigned char *oldCell; unsigned char *newCell = 0; assert( (flags & (BTREE_SAVEPOSITION|BTREE_APPEND))==flags ); if( pCur->eState==CURSOR_FAULT ){ assert( pCur->skipNext!=SQLITE_OK ); return pCur->skipNext; } assert( cursorOwnsBtShared(pCur) ); assert( (pCur->curFlags & BTCF_WriteFlag)!=0 && pBt->inTransaction==TRANS_WRITE && (pBt->btsFlags & BTS_READ_ONLY)==0 ); assert( hasSharedCacheTableLock(p, pCur->pgnoRoot, pCur->pKeyInfo!=0, 2) ); /* Assert that the caller has been consistent. If this cursor was opened ** expecting an index b-tree, then the caller should be inserting blob ** keys with no associated data. If the cursor was opened expecting an ** intkey table, the caller should be inserting integer keys with a ** blob of associated data. */ assert( (pX->pKey==0)==(pCur->pKeyInfo==0) ); /* Save the positions of any other cursors open on this table. ** ** In some cases, the call to btreeMoveto() below is a no-op. For ** example, when inserting data into a table with auto-generated integer ** keys, the VDBE layer invokes sqlite3BtreeLast() to figure out the ** integer key to use. It then calls this function to actually insert the ** data into the intkey B-Tree. In this case btreeMoveto() recognizes ** that the cursor is already where it needs to be and returns without ** doing any work. To avoid thwarting these optimizations, it is important ** not to clear the cursor here. */ if( pCur->curFlags & BTCF_Multiple ){ rc = saveAllCursors(pBt, pCur->pgnoRoot, pCur); if( rc ) return rc; } if( pCur->pKeyInfo==0 ){ assert( pX->pKey==0 ); /* If this is an insert into a table b-tree, invalidate any incrblob ** cursors open on the row being replaced */ invalidateIncrblobCursors(p, pCur->pgnoRoot, pX->nKey, 0); /* If BTREE_SAVEPOSITION is set, the cursor must already be pointing ** to a row with the same key as the new entry being inserted. */ #ifdef SQLITE_DEBUG if( flags & BTREE_SAVEPOSITION ){ assert( pCur->curFlags & BTCF_ValidNKey ); assert( pX->nKey==pCur->info.nKey ); assert( loc==0 ); } #endif /* On the other hand, BTREE_SAVEPOSITION==0 does not imply ** that the cursor is not pointing to a row to be overwritten. ** So do a complete check. */ if( (pCur->curFlags&BTCF_ValidNKey)!=0 && pX->nKey==pCur->info.nKey ){ /* The cursor is pointing to the entry that is to be ** overwritten */ assert( pX->nData>=0 && pX->nZero>=0 ); if( pCur->info.nSize!=0 && pCur->info.nPayload==(u32)pX->nData+pX->nZero ){ /* New entry is the same size as the old. Do an overwrite */ return btreeOverwriteCell(pCur, pX); } assert( loc==0 ); }else if( loc==0 ){ /* The cursor is *not* pointing to the cell to be overwritten, nor ** to an adjacent cell. Move the cursor so that it is pointing either ** to the cell to be overwritten or an adjacent cell. */ rc = sqlite3BtreeMovetoUnpacked(pCur, 0, pX->nKey, flags!=0, &loc); if( rc ) return rc; } }else{ /* This is an index or a WITHOUT ROWID table */ /* If BTREE_SAVEPOSITION is set, the cursor must already be pointing ** to a row with the same key as the new entry being inserted. */ assert( (flags & BTREE_SAVEPOSITION)==0 || loc==0 ); /* If the cursor is not already pointing either to the cell to be ** overwritten, or if a new cell is being inserted, if the cursor is ** not pointing to an immediately adjacent cell, then move the cursor ** so that it does. */ if( loc==0 && (flags & BTREE_SAVEPOSITION)==0 ){ if( pX->nMem ){ UnpackedRecord r; r.pKeyInfo = pCur->pKeyInfo; r.aMem = pX->aMem; r.nField = pX->nMem; r.default_rc = 0; r.errCode = 0; r.r1 = 0; r.r2 = 0; r.eqSeen = 0; rc = sqlite3BtreeMovetoUnpacked(pCur, &r, 0, flags!=0, &loc); }else{ rc = btreeMoveto(pCur, pX->pKey, pX->nKey, flags!=0, &loc); } if( rc ) return rc; } /* If the cursor is currently pointing to an entry to be overwritten ** and the new content is the same as as the old, then use the ** overwrite optimization. */ if( loc==0 ){ getCellInfo(pCur); if( pCur->info.nKey==pX->nKey ){ BtreePayload x2; x2.pData = pX->pKey; x2.nData = pX->nKey; x2.nZero = 0; return btreeOverwriteCell(pCur, &x2); } } } assert( pCur->eState==CURSOR_VALID || (pCur->eState==CURSOR_INVALID && loc) || CORRUPT_DB ); pPage = pCur->pPage; assert( pPage->intKey || pX->nKey>=0 ); assert( pPage->leaf || !pPage->intKey ); if( pPage->nFree<0 ){ if( pCur->eState>CURSOR_INVALID ){ rc = SQLITE_CORRUPT_BKPT; }else{ rc = btreeComputeFreeSpace(pPage); } if( rc ) return rc; } TRACE(("INSERT: table=%d nkey=%lld ndata=%d page=%d %s\n", pCur->pgnoRoot, pX->nKey, pX->nData, pPage->pgno, loc==0 ? "overwrite" : "new entry")); assert( pPage->isInit ); newCell = pBt->pTmpSpace; assert( newCell!=0 ); rc = fillInCell(pPage, newCell, pX, &szNew); if( rc ) goto end_insert; assert( szNew==pPage->xCellSize(pPage, newCell) ); assert( szNew <= MX_CELL_SIZE(pBt) ); idx = pCur->ix; if( loc==0 ){ CellInfo info; assert( idxnCell ); rc = sqlite3PagerWrite(pPage->pDbPage); if( rc ){ goto end_insert; } oldCell = findCell(pPage, idx); if( !pPage->leaf ){ memcpy(newCell, oldCell, 4); } rc = clearCell(pPage, oldCell, &info); testcase( pCur->curFlags & BTCF_ValidOvfl ); invalidateOverflowCache(pCur); if( info.nSize==szNew && info.nLocal==info.nPayload && (!ISAUTOVACUUM || szNewminLocal) ){ /* Overwrite the old cell with the new if they are the same size. ** We could also try to do this if the old cell is smaller, then add ** the leftover space to the free list. But experiments show that ** doing that is no faster then skipping this optimization and just ** calling dropCell() and insertCell(). ** ** This optimization cannot be used on an autovacuum database if the ** new entry uses overflow pages, as the insertCell() call below is ** necessary to add the PTRMAP_OVERFLOW1 pointer-map entry. */ assert( rc==SQLITE_OK ); /* clearCell never fails when nLocal==nPayload */ if( oldCell < pPage->aData+pPage->hdrOffset+10 ){ return SQLITE_CORRUPT_BKPT; } if( oldCell+szNew > pPage->aDataEnd ){ return SQLITE_CORRUPT_BKPT; } memcpy(oldCell, newCell, szNew); return SQLITE_OK; } dropCell(pPage, idx, info.nSize, &rc); if( rc ) goto end_insert; }else if( loc<0 && pPage->nCell>0 ){ assert( pPage->leaf ); idx = ++pCur->ix; pCur->curFlags &= ~BTCF_ValidNKey; }else{ assert( pPage->leaf ); } insertCell(pPage, idx, newCell, szNew, 0, 0, &rc); assert( pPage->nOverflow==0 || rc==SQLITE_OK ); assert( rc!=SQLITE_OK || pPage->nCell>0 || pPage->nOverflow>0 ); /* If no error has occurred and pPage has an overflow cell, call balance() ** to redistribute the cells within the tree. Since balance() may move ** the cursor, zero the BtCursor.info.nSize and BTCF_ValidNKey ** variables. ** ** Previous versions of SQLite called moveToRoot() to move the cursor ** back to the root page as balance() used to invalidate the contents ** of BtCursor.apPage[] and BtCursor.aiIdx[]. Instead of doing that, ** set the cursor state to "invalid". This makes common insert operations ** slightly faster. ** ** There is a subtle but important optimization here too. When inserting ** multiple records into an intkey b-tree using a single cursor (as can ** happen while processing an "INSERT INTO ... SELECT" statement), it ** is advantageous to leave the cursor pointing to the last entry in ** the b-tree if possible. If the cursor is left pointing to the last ** entry in the table, and the next row inserted has an integer key ** larger than the largest existing key, it is possible to insert the ** row without seeking the cursor. This can be a big performance boost. */ pCur->info.nSize = 0; if( pPage->nOverflow ){ assert( rc==SQLITE_OK ); pCur->curFlags &= ~(BTCF_ValidNKey); rc = balance(pCur); /* Must make sure nOverflow is reset to zero even if the balance() ** fails. Internal data structure corruption will result otherwise. ** Also, set the cursor state to invalid. This stops saveCursorPosition() ** from trying to save the current position of the cursor. */ pCur->pPage->nOverflow = 0; pCur->eState = CURSOR_INVALID; if( (flags & BTREE_SAVEPOSITION) && rc==SQLITE_OK ){ btreeReleaseAllCursorPages(pCur); if( pCur->pKeyInfo ){ assert( pCur->pKey==0 ); pCur->pKey = sqlite3Malloc( pX->nKey ); if( pCur->pKey==0 ){ rc = SQLITE_NOMEM; }else{ memcpy(pCur->pKey, pX->pKey, pX->nKey); } } pCur->eState = CURSOR_REQUIRESEEK; pCur->nKey = pX->nKey; } } assert( pCur->iPage<0 || pCur->pPage->nOverflow==0 ); end_insert: return rc; } /* ** Delete the entry that the cursor is pointing to. ** ** If the BTREE_SAVEPOSITION bit of the flags parameter is zero, then ** the cursor is left pointing at an arbitrary location after the delete. ** But if that bit is set, then the cursor is left in a state such that ** the next call to BtreeNext() or BtreePrev() moves it to the same row ** as it would have been on if the call to BtreeDelete() had been omitted. ** ** The BTREE_AUXDELETE bit of flags indicates that is one of several deletes ** associated with a single table entry and its indexes. Only one of those ** deletes is considered the "primary" delete. The primary delete occurs ** on a cursor that is not a BTREE_FORDELETE cursor. All but one delete ** operation on non-FORDELETE cursors is tagged with the AUXDELETE flag. ** The BTREE_AUXDELETE bit is a hint that is not used by this implementation, ** but which might be used by alternative storage engines. */ SQLITE_PRIVATE int sqlite3BtreeDelete(BtCursor *pCur, u8 flags){ Btree *p = pCur->pBtree; BtShared *pBt = p->pBt; int rc; /* Return code */ MemPage *pPage; /* Page to delete cell from */ unsigned char *pCell; /* Pointer to cell to delete */ int iCellIdx; /* Index of cell to delete */ int iCellDepth; /* Depth of node containing pCell */ CellInfo info; /* Size of the cell being deleted */ int bSkipnext = 0; /* Leaf cursor in SKIPNEXT state */ u8 bPreserve = flags & BTREE_SAVEPOSITION; /* Keep cursor valid */ assert( cursorOwnsBtShared(pCur) ); assert( pBt->inTransaction==TRANS_WRITE ); assert( (pBt->btsFlags & BTS_READ_ONLY)==0 ); assert( pCur->curFlags & BTCF_WriteFlag ); assert( hasSharedCacheTableLock(p, pCur->pgnoRoot, pCur->pKeyInfo!=0, 2) ); assert( !hasReadConflicts(p, pCur->pgnoRoot) ); assert( (flags & ~(BTREE_SAVEPOSITION | BTREE_AUXDELETE))==0 ); if( pCur->eState==CURSOR_REQUIRESEEK ){ rc = btreeRestoreCursorPosition(pCur); if( rc ) return rc; } assert( pCur->eState==CURSOR_VALID ); iCellDepth = pCur->iPage; iCellIdx = pCur->ix; pPage = pCur->pPage; pCell = findCell(pPage, iCellIdx); if( pPage->nFree<0 && btreeComputeFreeSpace(pPage) ) return SQLITE_CORRUPT; /* If the bPreserve flag is set to true, then the cursor position must ** be preserved following this delete operation. If the current delete ** will cause a b-tree rebalance, then this is done by saving the cursor ** key and leaving the cursor in CURSOR_REQUIRESEEK state before ** returning. ** ** Or, if the current delete will not cause a rebalance, then the cursor ** will be left in CURSOR_SKIPNEXT state pointing to the entry immediately ** before or after the deleted entry. In this case set bSkipnext to true. */ if( bPreserve ){ if( !pPage->leaf || (pPage->nFree+cellSizePtr(pPage,pCell)+2)>(int)(pBt->usableSize*2/3) || pPage->nCell==1 /* See dbfuzz001.test for a test case */ ){ /* A b-tree rebalance will be required after deleting this entry. ** Save the cursor key. */ rc = saveCursorKey(pCur); if( rc ) return rc; }else{ bSkipnext = 1; } } /* If the page containing the entry to delete is not a leaf page, move ** the cursor to the largest entry in the tree that is smaller than ** the entry being deleted. This cell will replace the cell being deleted ** from the internal node. The 'previous' entry is used for this instead ** of the 'next' entry, as the previous entry is always a part of the ** sub-tree headed by the child page of the cell being deleted. This makes ** balancing the tree following the delete operation easier. */ if( !pPage->leaf ){ rc = sqlite3BtreePrevious(pCur, 0); assert( rc!=SQLITE_DONE ); if( rc ) return rc; } /* Save the positions of any other cursors open on this table before ** making any modifications. */ if( pCur->curFlags & BTCF_Multiple ){ rc = saveAllCursors(pBt, pCur->pgnoRoot, pCur); if( rc ) return rc; } /* If this is a delete operation to remove a row from a table b-tree, ** invalidate any incrblob cursors open on the row being deleted. */ if( pCur->pKeyInfo==0 ){ invalidateIncrblobCursors(p, pCur->pgnoRoot, pCur->info.nKey, 0); } /* Make the page containing the entry to be deleted writable. Then free any ** overflow pages associated with the entry and finally remove the cell ** itself from within the page. */ rc = sqlite3PagerWrite(pPage->pDbPage); if( rc ) return rc; rc = clearCell(pPage, pCell, &info); dropCell(pPage, iCellIdx, info.nSize, &rc); if( rc ) return rc; /* If the cell deleted was not located on a leaf page, then the cursor ** is currently pointing to the largest entry in the sub-tree headed ** by the child-page of the cell that was just deleted from an internal ** node. The cell from the leaf node needs to be moved to the internal ** node to replace the deleted cell. */ if( !pPage->leaf ){ MemPage *pLeaf = pCur->pPage; int nCell; Pgno n; unsigned char *pTmp; if( pLeaf->nFree<0 ){ rc = btreeComputeFreeSpace(pLeaf); if( rc ) return rc; } if( iCellDepthiPage-1 ){ n = pCur->apPage[iCellDepth+1]->pgno; }else{ n = pCur->pPage->pgno; } pCell = findCell(pLeaf, pLeaf->nCell-1); if( pCell<&pLeaf->aData[4] ) return SQLITE_CORRUPT_BKPT; nCell = pLeaf->xCellSize(pLeaf, pCell); assert( MX_CELL_SIZE(pBt) >= nCell ); pTmp = pBt->pTmpSpace; assert( pTmp!=0 ); rc = sqlite3PagerWrite(pLeaf->pDbPage); if( rc==SQLITE_OK ){ insertCell(pPage, iCellIdx, pCell-4, nCell+4, pTmp, n, &rc); } dropCell(pLeaf, pLeaf->nCell-1, nCell, &rc); if( rc ) return rc; } /* Balance the tree. If the entry deleted was located on a leaf page, ** then the cursor still points to that page. In this case the first ** call to balance() repairs the tree, and the if(...) condition is ** never true. ** ** Otherwise, if the entry deleted was on an internal node page, then ** pCur is pointing to the leaf page from which a cell was removed to ** replace the cell deleted from the internal node. This is slightly ** tricky as the leaf node may be underfull, and the internal node may ** be either under or overfull. In this case run the balancing algorithm ** on the leaf node first. If the balance proceeds far enough up the ** tree that we can be sure that any problem in the internal node has ** been corrected, so be it. Otherwise, after balancing the leaf node, ** walk the cursor up the tree to the internal node and balance it as ** well. */ rc = balance(pCur); if( rc==SQLITE_OK && pCur->iPage>iCellDepth ){ releasePageNotNull(pCur->pPage); pCur->iPage--; while( pCur->iPage>iCellDepth ){ releasePage(pCur->apPage[pCur->iPage--]); } pCur->pPage = pCur->apPage[pCur->iPage]; rc = balance(pCur); } if( rc==SQLITE_OK ){ if( bSkipnext ){ assert( bPreserve && (pCur->iPage==iCellDepth || CORRUPT_DB) ); assert( pPage==pCur->pPage || CORRUPT_DB ); assert( (pPage->nCell>0 || CORRUPT_DB) && iCellIdx<=pPage->nCell ); pCur->eState = CURSOR_SKIPNEXT; if( iCellIdx>=pPage->nCell ){ pCur->skipNext = -1; pCur->ix = pPage->nCell-1; }else{ pCur->skipNext = 1; } }else{ rc = moveToRoot(pCur); if( bPreserve ){ btreeReleaseAllCursorPages(pCur); pCur->eState = CURSOR_REQUIRESEEK; } if( rc==SQLITE_EMPTY ) rc = SQLITE_OK; } } return rc; } /* ** Create a new BTree table. Write into *piTable the page ** number for the root page of the new table. ** ** The type of type is determined by the flags parameter. Only the ** following values of flags are currently in use. Other values for ** flags might not work: ** ** BTREE_INTKEY|BTREE_LEAFDATA Used for SQL tables with rowid keys ** BTREE_ZERODATA Used for SQL indices */ static int btreeCreateTable(Btree *p, Pgno *piTable, int createTabFlags){ BtShared *pBt = p->pBt; MemPage *pRoot; Pgno pgnoRoot; int rc; int ptfFlags; /* Page-type flage for the root page of new table */ assert( sqlite3BtreeHoldsMutex(p) ); assert( pBt->inTransaction==TRANS_WRITE ); assert( (pBt->btsFlags & BTS_READ_ONLY)==0 ); #ifdef SQLITE_OMIT_AUTOVACUUM rc = allocateBtreePage(pBt, &pRoot, &pgnoRoot, 1, 0); if( rc ){ return rc; } #else if( pBt->autoVacuum ){ Pgno pgnoMove; /* Move a page here to make room for the root-page */ MemPage *pPageMove; /* The page to move to. */ /* Creating a new table may probably require moving an existing database ** to make room for the new tables root page. In case this page turns ** out to be an overflow page, delete all overflow page-map caches ** held by open cursors. */ invalidateAllOverflowCache(pBt); /* Read the value of meta[3] from the database to determine where the ** root page of the new table should go. meta[3] is the largest root-page ** created so far, so the new root-page is (meta[3]+1). */ sqlite3BtreeGetMeta(p, BTREE_LARGEST_ROOT_PAGE, &pgnoRoot); if( pgnoRoot>btreePagecount(pBt) ){ return SQLITE_CORRUPT_BKPT; } pgnoRoot++; /* The new root-page may not be allocated on a pointer-map page, or the ** PENDING_BYTE page. */ while( pgnoRoot==PTRMAP_PAGENO(pBt, pgnoRoot) || pgnoRoot==PENDING_BYTE_PAGE(pBt) ){ pgnoRoot++; } assert( pgnoRoot>=3 ); /* Allocate a page. The page that currently resides at pgnoRoot will ** be moved to the allocated page (unless the allocated page happens ** to reside at pgnoRoot). */ rc = allocateBtreePage(pBt, &pPageMove, &pgnoMove, pgnoRoot, BTALLOC_EXACT); if( rc!=SQLITE_OK ){ return rc; } if( pgnoMove!=pgnoRoot ){ /* pgnoRoot is the page that will be used for the root-page of ** the new table (assuming an error did not occur). But we were ** allocated pgnoMove. If required (i.e. if it was not allocated ** by extending the file), the current page at position pgnoMove ** is already journaled. */ u8 eType = 0; Pgno iPtrPage = 0; /* Save the positions of any open cursors. This is required in ** case they are holding a reference to an xFetch reference ** corresponding to page pgnoRoot. */ rc = saveAllCursors(pBt, 0, 0); releasePage(pPageMove); if( rc!=SQLITE_OK ){ return rc; } /* Move the page currently at pgnoRoot to pgnoMove. */ rc = btreeGetPage(pBt, pgnoRoot, &pRoot, 0); if( rc!=SQLITE_OK ){ return rc; } rc = ptrmapGet(pBt, pgnoRoot, &eType, &iPtrPage); if( eType==PTRMAP_ROOTPAGE || eType==PTRMAP_FREEPAGE ){ rc = SQLITE_CORRUPT_BKPT; } if( rc!=SQLITE_OK ){ releasePage(pRoot); return rc; } assert( eType!=PTRMAP_ROOTPAGE ); assert( eType!=PTRMAP_FREEPAGE ); rc = relocatePage(pBt, pRoot, eType, iPtrPage, pgnoMove, 0); releasePage(pRoot); /* Obtain the page at pgnoRoot */ if( rc!=SQLITE_OK ){ return rc; } rc = btreeGetPage(pBt, pgnoRoot, &pRoot, 0); if( rc!=SQLITE_OK ){ return rc; } rc = sqlite3PagerWrite(pRoot->pDbPage); if( rc!=SQLITE_OK ){ releasePage(pRoot); return rc; } }else{ pRoot = pPageMove; } /* Update the pointer-map and meta-data with the new root-page number. */ ptrmapPut(pBt, pgnoRoot, PTRMAP_ROOTPAGE, 0, &rc); if( rc ){ releasePage(pRoot); return rc; } /* When the new root page was allocated, page 1 was made writable in ** order either to increase the database filesize, or to decrement the ** freelist count. Hence, the sqlite3BtreeUpdateMeta() call cannot fail. */ assert( sqlite3PagerIswriteable(pBt->pPage1->pDbPage) ); rc = sqlite3BtreeUpdateMeta(p, 4, pgnoRoot); if( NEVER(rc) ){ releasePage(pRoot); return rc; } }else{ rc = allocateBtreePage(pBt, &pRoot, &pgnoRoot, 1, 0); if( rc ) return rc; } #endif assert( sqlite3PagerIswriteable(pRoot->pDbPage) ); if( createTabFlags & BTREE_INTKEY ){ ptfFlags = PTF_INTKEY | PTF_LEAFDATA | PTF_LEAF; }else{ ptfFlags = PTF_ZERODATA | PTF_LEAF; } zeroPage(pRoot, ptfFlags); sqlite3PagerUnref(pRoot->pDbPage); assert( (pBt->openFlags & BTREE_SINGLE)==0 || pgnoRoot==2 ); *piTable = pgnoRoot; return SQLITE_OK; } SQLITE_PRIVATE int sqlite3BtreeCreateTable(Btree *p, Pgno *piTable, int flags){ int rc; sqlite3BtreeEnter(p); rc = btreeCreateTable(p, piTable, flags); sqlite3BtreeLeave(p); return rc; } /* ** Erase the given database page and all its children. Return ** the page to the freelist. */ static int clearDatabasePage( BtShared *pBt, /* The BTree that contains the table */ Pgno pgno, /* Page number to clear */ int freePageFlag, /* Deallocate page if true */ int *pnChange /* Add number of Cells freed to this counter */ ){ MemPage *pPage; int rc; unsigned char *pCell; int i; int hdr; CellInfo info; assert( sqlite3_mutex_held(pBt->mutex) ); if( pgno>btreePagecount(pBt) ){ return SQLITE_CORRUPT_BKPT; } rc = getAndInitPage(pBt, pgno, &pPage, 0, 0); if( rc ) return rc; if( pPage->bBusy ){ rc = SQLITE_CORRUPT_BKPT; goto cleardatabasepage_out; } pPage->bBusy = 1; hdr = pPage->hdrOffset; for(i=0; inCell; i++){ pCell = findCell(pPage, i); if( !pPage->leaf ){ rc = clearDatabasePage(pBt, get4byte(pCell), 1, pnChange); if( rc ) goto cleardatabasepage_out; } rc = clearCell(pPage, pCell, &info); if( rc ) goto cleardatabasepage_out; } if( !pPage->leaf ){ rc = clearDatabasePage(pBt, get4byte(&pPage->aData[hdr+8]), 1, pnChange); if( rc ) goto cleardatabasepage_out; }else if( pnChange ){ assert( pPage->intKey || CORRUPT_DB ); testcase( !pPage->intKey ); *pnChange += pPage->nCell; } if( freePageFlag ){ freePage(pPage, &rc); }else if( (rc = sqlite3PagerWrite(pPage->pDbPage))==0 ){ zeroPage(pPage, pPage->aData[hdr] | PTF_LEAF); } cleardatabasepage_out: pPage->bBusy = 0; releasePage(pPage); return rc; } /* ** Delete all information from a single table in the database. iTable is ** the page number of the root of the table. After this routine returns, ** the root page is empty, but still exists. ** ** This routine will fail with SQLITE_LOCKED if there are any open ** read cursors on the table. Open write cursors are moved to the ** root of the table. ** ** If pnChange is not NULL, then table iTable must be an intkey table. The ** integer value pointed to by pnChange is incremented by the number of ** entries in the table. */ SQLITE_PRIVATE int sqlite3BtreeClearTable(Btree *p, int iTable, int *pnChange){ int rc; BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); assert( p->inTrans==TRANS_WRITE ); rc = saveAllCursors(pBt, (Pgno)iTable, 0); if( SQLITE_OK==rc ){ /* Invalidate all incrblob cursors open on table iTable (assuming iTable ** is the root of a table b-tree - if it is not, the following call is ** a no-op). */ invalidateIncrblobCursors(p, (Pgno)iTable, 0, 1); rc = clearDatabasePage(pBt, (Pgno)iTable, 0, pnChange); } sqlite3BtreeLeave(p); return rc; } /* ** Delete all information from the single table that pCur is open on. ** ** This routine only work for pCur on an ephemeral table. */ SQLITE_PRIVATE int sqlite3BtreeClearTableOfCursor(BtCursor *pCur){ return sqlite3BtreeClearTable(pCur->pBtree, pCur->pgnoRoot, 0); } /* ** Erase all information in a table and add the root of the table to ** the freelist. Except, the root of the principle table (the one on ** page 1) is never added to the freelist. ** ** This routine will fail with SQLITE_LOCKED if there are any open ** cursors on the table. ** ** If AUTOVACUUM is enabled and the page at iTable is not the last ** root page in the database file, then the last root page ** in the database file is moved into the slot formerly occupied by ** iTable and that last slot formerly occupied by the last root page ** is added to the freelist instead of iTable. In this say, all ** root pages are kept at the beginning of the database file, which ** is necessary for AUTOVACUUM to work right. *piMoved is set to the ** page number that used to be the last root page in the file before ** the move. If no page gets moved, *piMoved is set to 0. ** The last root page is recorded in meta[3] and the value of ** meta[3] is updated by this procedure. */ static int btreeDropTable(Btree *p, Pgno iTable, int *piMoved){ int rc; MemPage *pPage = 0; BtShared *pBt = p->pBt; assert( sqlite3BtreeHoldsMutex(p) ); assert( p->inTrans==TRANS_WRITE ); assert( iTable>=2 ); if( iTable>btreePagecount(pBt) ){ return SQLITE_CORRUPT_BKPT; } rc = btreeGetPage(pBt, (Pgno)iTable, &pPage, 0); if( rc ) return rc; rc = sqlite3BtreeClearTable(p, iTable, 0); if( rc ){ releasePage(pPage); return rc; } *piMoved = 0; #ifdef SQLITE_OMIT_AUTOVACUUM freePage(pPage, &rc); releasePage(pPage); #else if( pBt->autoVacuum ){ Pgno maxRootPgno; sqlite3BtreeGetMeta(p, BTREE_LARGEST_ROOT_PAGE, &maxRootPgno); if( iTable==maxRootPgno ){ /* If the table being dropped is the table with the largest root-page ** number in the database, put the root page on the free list. */ freePage(pPage, &rc); releasePage(pPage); if( rc!=SQLITE_OK ){ return rc; } }else{ /* The table being dropped does not have the largest root-page ** number in the database. So move the page that does into the ** gap left by the deleted root-page. */ MemPage *pMove; releasePage(pPage); rc = btreeGetPage(pBt, maxRootPgno, &pMove, 0); if( rc!=SQLITE_OK ){ return rc; } rc = relocatePage(pBt, pMove, PTRMAP_ROOTPAGE, 0, iTable, 0); releasePage(pMove); if( rc!=SQLITE_OK ){ return rc; } pMove = 0; rc = btreeGetPage(pBt, maxRootPgno, &pMove, 0); freePage(pMove, &rc); releasePage(pMove); if( rc!=SQLITE_OK ){ return rc; } *piMoved = maxRootPgno; } /* Set the new 'max-root-page' value in the database header. This ** is the old value less one, less one more if that happens to ** be a root-page number, less one again if that is the ** PENDING_BYTE_PAGE. */ maxRootPgno--; while( maxRootPgno==PENDING_BYTE_PAGE(pBt) || PTRMAP_ISPAGE(pBt, maxRootPgno) ){ maxRootPgno--; } assert( maxRootPgno!=PENDING_BYTE_PAGE(pBt) ); rc = sqlite3BtreeUpdateMeta(p, 4, maxRootPgno); }else{ freePage(pPage, &rc); releasePage(pPage); } #endif return rc; } SQLITE_PRIVATE int sqlite3BtreeDropTable(Btree *p, int iTable, int *piMoved){ int rc; sqlite3BtreeEnter(p); rc = btreeDropTable(p, iTable, piMoved); sqlite3BtreeLeave(p); return rc; } /* ** This function may only be called if the b-tree connection already ** has a read or write transaction open on the database. ** ** Read the meta-information out of a database file. Meta[0] ** is the number of free pages currently in the database. Meta[1] ** through meta[15] are available for use by higher layers. Meta[0] ** is read-only, the others are read/write. ** ** The schema layer numbers meta values differently. At the schema ** layer (and the SetCookie and ReadCookie opcodes) the number of ** free pages is not visible. So Cookie[0] is the same as Meta[1]. ** ** This routine treats Meta[BTREE_DATA_VERSION] as a special case. Instead ** of reading the value out of the header, it instead loads the "DataVersion" ** from the pager. The BTREE_DATA_VERSION value is not actually stored in the ** database file. It is a number computed by the pager. But its access ** pattern is the same as header meta values, and so it is convenient to ** read it from this routine. */ SQLITE_PRIVATE void sqlite3BtreeGetMeta(Btree *p, int idx, u32 *pMeta){ BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); assert( p->inTrans>TRANS_NONE ); assert( SQLITE_OK==querySharedCacheTableLock(p, SCHEMA_ROOT, READ_LOCK) ); assert( pBt->pPage1 ); assert( idx>=0 && idx<=15 ); if( idx==BTREE_DATA_VERSION ){ *pMeta = sqlite3PagerDataVersion(pBt->pPager) + p->iDataVersion; }else{ *pMeta = get4byte(&pBt->pPage1->aData[36 + idx*4]); } /* If auto-vacuum is disabled in this build and this is an auto-vacuum ** database, mark the database as read-only. */ #ifdef SQLITE_OMIT_AUTOVACUUM if( idx==BTREE_LARGEST_ROOT_PAGE && *pMeta>0 ){ pBt->btsFlags |= BTS_READ_ONLY; } #endif sqlite3BtreeLeave(p); } /* ** Write meta-information back into the database. Meta[0] is ** read-only and may not be written. */ SQLITE_PRIVATE int sqlite3BtreeUpdateMeta(Btree *p, int idx, u32 iMeta){ BtShared *pBt = p->pBt; unsigned char *pP1; int rc; assert( idx>=1 && idx<=15 ); sqlite3BtreeEnter(p); assert( p->inTrans==TRANS_WRITE ); assert( pBt->pPage1!=0 ); pP1 = pBt->pPage1->aData; rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); if( rc==SQLITE_OK ){ put4byte(&pP1[36 + idx*4], iMeta); #ifndef SQLITE_OMIT_AUTOVACUUM if( idx==BTREE_INCR_VACUUM ){ assert( pBt->autoVacuum || iMeta==0 ); assert( iMeta==0 || iMeta==1 ); pBt->incrVacuum = (u8)iMeta; } #endif } sqlite3BtreeLeave(p); return rc; } /* ** The first argument, pCur, is a cursor opened on some b-tree. Count the ** number of entries in the b-tree and write the result to *pnEntry. ** ** SQLITE_OK is returned if the operation is successfully executed. ** Otherwise, if an error is encountered (i.e. an IO error or database ** corruption) an SQLite error code is returned. */ SQLITE_PRIVATE int sqlite3BtreeCount(sqlite3 *db, BtCursor *pCur, i64 *pnEntry){ i64 nEntry = 0; /* Value to return in *pnEntry */ int rc; /* Return code */ rc = moveToRoot(pCur); if( rc==SQLITE_EMPTY ){ *pnEntry = 0; return SQLITE_OK; } /* Unless an error occurs, the following loop runs one iteration for each ** page in the B-Tree structure (not including overflow pages). */ while( rc==SQLITE_OK && !AtomicLoad(&db->u1.isInterrupted) ){ int iIdx; /* Index of child node in parent */ MemPage *pPage; /* Current page of the b-tree */ /* If this is a leaf page or the tree is not an int-key tree, then ** this page contains countable entries. Increment the entry counter ** accordingly. */ pPage = pCur->pPage; if( pPage->leaf || !pPage->intKey ){ nEntry += pPage->nCell; } /* pPage is a leaf node. This loop navigates the cursor so that it ** points to the first interior cell that it points to the parent of ** the next page in the tree that has not yet been visited. The ** pCur->aiIdx[pCur->iPage] value is set to the index of the parent cell ** of the page, or to the number of cells in the page if the next page ** to visit is the right-child of its parent. ** ** If all pages in the tree have been visited, return SQLITE_OK to the ** caller. */ if( pPage->leaf ){ do { if( pCur->iPage==0 ){ /* All pages of the b-tree have been visited. Return successfully. */ *pnEntry = nEntry; return moveToRoot(pCur); } moveToParent(pCur); }while ( pCur->ix>=pCur->pPage->nCell ); pCur->ix++; pPage = pCur->pPage; } /* Descend to the child node of the cell that the cursor currently ** points at. This is the right-child if (iIdx==pPage->nCell). */ iIdx = pCur->ix; if( iIdx==pPage->nCell ){ rc = moveToChild(pCur, get4byte(&pPage->aData[pPage->hdrOffset+8])); }else{ rc = moveToChild(pCur, get4byte(findCell(pPage, iIdx))); } } /* An error has occurred. Return an error code. */ return rc; } /* ** Return the pager associated with a BTree. This routine is used for ** testing and debugging only. */ SQLITE_PRIVATE Pager *sqlite3BtreePager(Btree *p){ return p->pBt->pPager; } #ifndef SQLITE_OMIT_INTEGRITY_CHECK /* ** Append a message to the error message string. */ static void checkAppendMsg( IntegrityCk *pCheck, const char *zFormat, ... ){ va_list ap; if( !pCheck->mxErr ) return; pCheck->mxErr--; pCheck->nErr++; va_start(ap, zFormat); if( pCheck->errMsg.nChar ){ sqlite3_str_append(&pCheck->errMsg, "\n", 1); } if( pCheck->zPfx ){ sqlite3_str_appendf(&pCheck->errMsg, pCheck->zPfx, pCheck->v1, pCheck->v2); } sqlite3_str_vappendf(&pCheck->errMsg, zFormat, ap); va_end(ap); if( pCheck->errMsg.accError==SQLITE_NOMEM ){ pCheck->bOomFault = 1; } } #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ #ifndef SQLITE_OMIT_INTEGRITY_CHECK /* ** Return non-zero if the bit in the IntegrityCk.aPgRef[] array that ** corresponds to page iPg is already set. */ static int getPageReferenced(IntegrityCk *pCheck, Pgno iPg){ assert( iPg<=pCheck->nPage && sizeof(pCheck->aPgRef[0])==1 ); return (pCheck->aPgRef[iPg/8] & (1 << (iPg & 0x07))); } /* ** Set the bit in the IntegrityCk.aPgRef[] array that corresponds to page iPg. */ static void setPageReferenced(IntegrityCk *pCheck, Pgno iPg){ assert( iPg<=pCheck->nPage && sizeof(pCheck->aPgRef[0])==1 ); pCheck->aPgRef[iPg/8] |= (1 << (iPg & 0x07)); } /* ** Add 1 to the reference count for page iPage. If this is the second ** reference to the page, add an error message to pCheck->zErrMsg. ** Return 1 if there are 2 or more references to the page and 0 if ** if this is the first reference to the page. ** ** Also check that the page number is in bounds. */ static int checkRef(IntegrityCk *pCheck, Pgno iPage){ if( iPage>pCheck->nPage || iPage==0 ){ checkAppendMsg(pCheck, "invalid page number %d", iPage); return 1; } if( getPageReferenced(pCheck, iPage) ){ checkAppendMsg(pCheck, "2nd reference to page %d", iPage); return 1; } if( AtomicLoad(&pCheck->db->u1.isInterrupted) ) return 1; setPageReferenced(pCheck, iPage); return 0; } #ifndef SQLITE_OMIT_AUTOVACUUM /* ** Check that the entry in the pointer-map for page iChild maps to ** page iParent, pointer type ptrType. If not, append an error message ** to pCheck. */ static void checkPtrmap( IntegrityCk *pCheck, /* Integrity check context */ Pgno iChild, /* Child page number */ u8 eType, /* Expected pointer map type */ Pgno iParent /* Expected pointer map parent page number */ ){ int rc; u8 ePtrmapType; Pgno iPtrmapParent; rc = ptrmapGet(pCheck->pBt, iChild, &ePtrmapType, &iPtrmapParent); if( rc!=SQLITE_OK ){ if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ) pCheck->bOomFault = 1; checkAppendMsg(pCheck, "Failed to read ptrmap key=%d", iChild); return; } if( ePtrmapType!=eType || iPtrmapParent!=iParent ){ checkAppendMsg(pCheck, "Bad ptr map entry key=%d expected=(%d,%d) got=(%d,%d)", iChild, eType, iParent, ePtrmapType, iPtrmapParent); } } #endif /* ** Check the integrity of the freelist or of an overflow page list. ** Verify that the number of pages on the list is N. */ static void checkList( IntegrityCk *pCheck, /* Integrity checking context */ int isFreeList, /* True for a freelist. False for overflow page list */ Pgno iPage, /* Page number for first page in the list */ u32 N /* Expected number of pages in the list */ ){ int i; u32 expected = N; int nErrAtStart = pCheck->nErr; while( iPage!=0 && pCheck->mxErr ){ DbPage *pOvflPage; unsigned char *pOvflData; if( checkRef(pCheck, iPage) ) break; N--; if( sqlite3PagerGet(pCheck->pPager, (Pgno)iPage, &pOvflPage, 0) ){ checkAppendMsg(pCheck, "failed to get page %d", iPage); break; } pOvflData = (unsigned char *)sqlite3PagerGetData(pOvflPage); if( isFreeList ){ u32 n = (u32)get4byte(&pOvflData[4]); #ifndef SQLITE_OMIT_AUTOVACUUM if( pCheck->pBt->autoVacuum ){ checkPtrmap(pCheck, iPage, PTRMAP_FREEPAGE, 0); } #endif if( n>pCheck->pBt->usableSize/4-2 ){ checkAppendMsg(pCheck, "freelist leaf count too big on page %d", iPage); N--; }else{ for(i=0; i<(int)n; i++){ Pgno iFreePage = get4byte(&pOvflData[8+i*4]); #ifndef SQLITE_OMIT_AUTOVACUUM if( pCheck->pBt->autoVacuum ){ checkPtrmap(pCheck, iFreePage, PTRMAP_FREEPAGE, 0); } #endif checkRef(pCheck, iFreePage); } N -= n; } } #ifndef SQLITE_OMIT_AUTOVACUUM else{ /* If this database supports auto-vacuum and iPage is not the last ** page in this overflow list, check that the pointer-map entry for ** the following page matches iPage. */ if( pCheck->pBt->autoVacuum && N>0 ){ i = get4byte(pOvflData); checkPtrmap(pCheck, i, PTRMAP_OVERFLOW2, iPage); } } #endif iPage = get4byte(pOvflData); sqlite3PagerUnref(pOvflPage); } if( N && nErrAtStart==pCheck->nErr ){ checkAppendMsg(pCheck, "%s is %d but should be %d", isFreeList ? "size" : "overflow list length", expected-N, expected); } } #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ /* ** An implementation of a min-heap. ** ** aHeap[0] is the number of elements on the heap. aHeap[1] is the ** root element. The daughter nodes of aHeap[N] are aHeap[N*2] ** and aHeap[N*2+1]. ** ** The heap property is this: Every node is less than or equal to both ** of its daughter nodes. A consequence of the heap property is that the ** root node aHeap[1] is always the minimum value currently in the heap. ** ** The btreeHeapInsert() routine inserts an unsigned 32-bit number onto ** the heap, preserving the heap property. The btreeHeapPull() routine ** removes the root element from the heap (the minimum value in the heap) ** and then moves other nodes around as necessary to preserve the heap ** property. ** ** This heap is used for cell overlap and coverage testing. Each u32 ** entry represents the span of a cell or freeblock on a btree page. ** The upper 16 bits are the index of the first byte of a range and the ** lower 16 bits are the index of the last byte of that range. */ static void btreeHeapInsert(u32 *aHeap, u32 x){ u32 j, i = ++aHeap[0]; aHeap[i] = x; while( (j = i/2)>0 && aHeap[j]>aHeap[i] ){ x = aHeap[j]; aHeap[j] = aHeap[i]; aHeap[i] = x; i = j; } } static int btreeHeapPull(u32 *aHeap, u32 *pOut){ u32 j, i, x; if( (x = aHeap[0])==0 ) return 0; *pOut = aHeap[1]; aHeap[1] = aHeap[x]; aHeap[x] = 0xffffffff; aHeap[0]--; i = 1; while( (j = i*2)<=aHeap[0] ){ if( aHeap[j]>aHeap[j+1] ) j++; if( aHeap[i]zPfx; int saved_v1 = pCheck->v1; int saved_v2 = pCheck->v2; u8 savedIsInit = 0; /* Check that the page exists */ pBt = pCheck->pBt; usableSize = pBt->usableSize; if( iPage==0 ) return 0; if( checkRef(pCheck, iPage) ) return 0; pCheck->zPfx = "Page %u: "; pCheck->v1 = iPage; if( (rc = btreeGetPage(pBt, iPage, &pPage, 0))!=0 ){ checkAppendMsg(pCheck, "unable to get the page. error code=%d", rc); goto end_of_check; } /* Clear MemPage.isInit to make sure the corruption detection code in ** btreeInitPage() is executed. */ savedIsInit = pPage->isInit; pPage->isInit = 0; if( (rc = btreeInitPage(pPage))!=0 ){ assert( rc==SQLITE_CORRUPT ); /* The only possible error from InitPage */ checkAppendMsg(pCheck, "btreeInitPage() returns error code %d", rc); goto end_of_check; } if( (rc = btreeComputeFreeSpace(pPage))!=0 ){ assert( rc==SQLITE_CORRUPT ); checkAppendMsg(pCheck, "free space corruption", rc); goto end_of_check; } data = pPage->aData; hdr = pPage->hdrOffset; /* Set up for cell analysis */ pCheck->zPfx = "On tree page %u cell %d: "; contentOffset = get2byteNotZero(&data[hdr+5]); assert( contentOffset<=usableSize ); /* Enforced by btreeInitPage() */ /* EVIDENCE-OF: R-37002-32774 The two-byte integer at offset 3 gives the ** number of cells on the page. */ nCell = get2byte(&data[hdr+3]); assert( pPage->nCell==nCell ); /* EVIDENCE-OF: R-23882-45353 The cell pointer array of a b-tree page ** immediately follows the b-tree page header. */ cellStart = hdr + 12 - 4*pPage->leaf; assert( pPage->aCellIdx==&data[cellStart] ); pCellIdx = &data[cellStart + 2*(nCell-1)]; if( !pPage->leaf ){ /* Analyze the right-child page of internal pages */ pgno = get4byte(&data[hdr+8]); #ifndef SQLITE_OMIT_AUTOVACUUM if( pBt->autoVacuum ){ pCheck->zPfx = "On page %u at right child: "; checkPtrmap(pCheck, pgno, PTRMAP_BTREE, iPage); } #endif depth = checkTreePage(pCheck, pgno, &maxKey, maxKey); keyCanBeEqual = 0; }else{ /* For leaf pages, the coverage check will occur in the same loop ** as the other cell checks, so initialize the heap. */ heap = pCheck->heap; heap[0] = 0; } /* EVIDENCE-OF: R-02776-14802 The cell pointer array consists of K 2-byte ** integer offsets to the cell contents. */ for(i=nCell-1; i>=0 && pCheck->mxErr; i--){ CellInfo info; /* Check cell size */ pCheck->v2 = i; assert( pCellIdx==&data[cellStart + i*2] ); pc = get2byteAligned(pCellIdx); pCellIdx -= 2; if( pcusableSize-4 ){ checkAppendMsg(pCheck, "Offset %d out of range %d..%d", pc, contentOffset, usableSize-4); doCoverageCheck = 0; continue; } pCell = &data[pc]; pPage->xParseCell(pPage, pCell, &info); if( pc+info.nSize>usableSize ){ checkAppendMsg(pCheck, "Extends off end of page"); doCoverageCheck = 0; continue; } /* Check for integer primary key out of range */ if( pPage->intKey ){ if( keyCanBeEqual ? (info.nKey > maxKey) : (info.nKey >= maxKey) ){ checkAppendMsg(pCheck, "Rowid %lld out of order", info.nKey); } maxKey = info.nKey; keyCanBeEqual = 0; /* Only the first key on the page may ==maxKey */ } /* Check the content overflow list */ if( info.nPayload>info.nLocal ){ u32 nPage; /* Number of pages on the overflow chain */ Pgno pgnoOvfl; /* First page of the overflow chain */ assert( pc + info.nSize - 4 <= usableSize ); nPage = (info.nPayload - info.nLocal + usableSize - 5)/(usableSize - 4); pgnoOvfl = get4byte(&pCell[info.nSize - 4]); #ifndef SQLITE_OMIT_AUTOVACUUM if( pBt->autoVacuum ){ checkPtrmap(pCheck, pgnoOvfl, PTRMAP_OVERFLOW1, iPage); } #endif checkList(pCheck, 0, pgnoOvfl, nPage); } if( !pPage->leaf ){ /* Check sanity of left child page for internal pages */ pgno = get4byte(pCell); #ifndef SQLITE_OMIT_AUTOVACUUM if( pBt->autoVacuum ){ checkPtrmap(pCheck, pgno, PTRMAP_BTREE, iPage); } #endif d2 = checkTreePage(pCheck, pgno, &maxKey, maxKey); keyCanBeEqual = 0; if( d2!=depth ){ checkAppendMsg(pCheck, "Child page depth differs"); depth = d2; } }else{ /* Populate the coverage-checking heap for leaf pages */ btreeHeapInsert(heap, (pc<<16)|(pc+info.nSize-1)); } } *piMinKey = maxKey; /* Check for complete coverage of the page */ pCheck->zPfx = 0; if( doCoverageCheck && pCheck->mxErr>0 ){ /* For leaf pages, the min-heap has already been initialized and the ** cells have already been inserted. But for internal pages, that has ** not yet been done, so do it now */ if( !pPage->leaf ){ heap = pCheck->heap; heap[0] = 0; for(i=nCell-1; i>=0; i--){ u32 size; pc = get2byteAligned(&data[cellStart+i*2]); size = pPage->xCellSize(pPage, &data[pc]); btreeHeapInsert(heap, (pc<<16)|(pc+size-1)); } } /* Add the freeblocks to the min-heap ** ** EVIDENCE-OF: R-20690-50594 The second field of the b-tree page header ** is the offset of the first freeblock, or zero if there are no ** freeblocks on the page. */ i = get2byte(&data[hdr+1]); while( i>0 ){ int size, j; assert( (u32)i<=usableSize-4 ); /* Enforced by btreeComputeFreeSpace() */ size = get2byte(&data[i+2]); assert( (u32)(i+size)<=usableSize ); /* due to btreeComputeFreeSpace() */ btreeHeapInsert(heap, (((u32)i)<<16)|(i+size-1)); /* EVIDENCE-OF: R-58208-19414 The first 2 bytes of a freeblock are a ** big-endian integer which is the offset in the b-tree page of the next ** freeblock in the chain, or zero if the freeblock is the last on the ** chain. */ j = get2byte(&data[i]); /* EVIDENCE-OF: R-06866-39125 Freeblocks are always connected in order of ** increasing offset. */ assert( j==0 || j>i+size ); /* Enforced by btreeComputeFreeSpace() */ assert( (u32)j<=usableSize-4 ); /* Enforced by btreeComputeFreeSpace() */ i = j; } /* Analyze the min-heap looking for overlap between cells and/or ** freeblocks, and counting the number of untracked bytes in nFrag. ** ** Each min-heap entry is of the form: (start_address<<16)|end_address. ** There is an implied first entry the covers the page header, the cell ** pointer index, and the gap between the cell pointer index and the start ** of cell content. ** ** The loop below pulls entries from the min-heap in order and compares ** the start_address against the previous end_address. If there is an ** overlap, that means bytes are used multiple times. If there is a gap, ** that gap is added to the fragmentation count. */ nFrag = 0; prev = contentOffset - 1; /* Implied first min-heap entry */ while( btreeHeapPull(heap,&x) ){ if( (prev&0xffff)>=(x>>16) ){ checkAppendMsg(pCheck, "Multiple uses for byte %u of page %u", x>>16, iPage); break; }else{ nFrag += (x>>16) - (prev&0xffff) - 1; prev = x; } } nFrag += usableSize - (prev&0xffff) - 1; /* EVIDENCE-OF: R-43263-13491 The total number of bytes in all fragments ** is stored in the fifth field of the b-tree page header. ** EVIDENCE-OF: R-07161-27322 The one-byte integer at offset 7 gives the ** number of fragmented free bytes within the cell content area. */ if( heap[0]==0 && nFrag!=data[hdr+7] ){ checkAppendMsg(pCheck, "Fragmentation of %d bytes reported as %d on page %u", nFrag, data[hdr+7], iPage); } } end_of_check: if( !doCoverageCheck ) pPage->isInit = savedIsInit; releasePage(pPage); pCheck->zPfx = saved_zPfx; pCheck->v1 = saved_v1; pCheck->v2 = saved_v2; return depth+1; } #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ #ifndef SQLITE_OMIT_INTEGRITY_CHECK /* ** This routine does a complete check of the given BTree file. aRoot[] is ** an array of pages numbers were each page number is the root page of ** a table. nRoot is the number of entries in aRoot. ** ** A read-only or read-write transaction must be opened before calling ** this function. ** ** Write the number of error seen in *pnErr. Except for some memory ** allocation errors, an error message held in memory obtained from ** malloc is returned if *pnErr is non-zero. If *pnErr==0 then NULL is ** returned. If a memory allocation error occurs, NULL is returned. ** ** If the first entry in aRoot[] is 0, that indicates that the list of ** root pages is incomplete. This is a "partial integrity-check". This ** happens when performing an integrity check on a single table. The ** zero is skipped, of course. But in addition, the freelist checks ** and the checks to make sure every page is referenced are also skipped, ** since obviously it is not possible to know which pages are covered by ** the unverified btrees. Except, if aRoot[1] is 1, then the freelist ** checks are still performed. */ SQLITE_PRIVATE char *sqlite3BtreeIntegrityCheck( sqlite3 *db, /* Database connection that is running the check */ Btree *p, /* The btree to be checked */ Pgno *aRoot, /* An array of root pages numbers for individual trees */ int nRoot, /* Number of entries in aRoot[] */ int mxErr, /* Stop reporting errors after this many */ int *pnErr /* Write number of errors seen to this variable */ ){ Pgno i; IntegrityCk sCheck; BtShared *pBt = p->pBt; u64 savedDbFlags = pBt->db->flags; char zErr[100]; int bPartial = 0; /* True if not checking all btrees */ int bCkFreelist = 1; /* True to scan the freelist */ VVA_ONLY( int nRef ); assert( nRoot>0 ); /* aRoot[0]==0 means this is a partial check */ if( aRoot[0]==0 ){ assert( nRoot>1 ); bPartial = 1; if( aRoot[1]!=1 ) bCkFreelist = 0; } sqlite3BtreeEnter(p); assert( p->inTrans>TRANS_NONE && pBt->inTransaction>TRANS_NONE ); VVA_ONLY( nRef = sqlite3PagerRefcount(pBt->pPager) ); assert( nRef>=0 ); sCheck.db = db; sCheck.pBt = pBt; sCheck.pPager = pBt->pPager; sCheck.nPage = btreePagecount(sCheck.pBt); sCheck.mxErr = mxErr; sCheck.nErr = 0; sCheck.bOomFault = 0; sCheck.zPfx = 0; sCheck.v1 = 0; sCheck.v2 = 0; sCheck.aPgRef = 0; sCheck.heap = 0; sqlite3StrAccumInit(&sCheck.errMsg, 0, zErr, sizeof(zErr), SQLITE_MAX_LENGTH); sCheck.errMsg.printfFlags = SQLITE_PRINTF_INTERNAL; if( sCheck.nPage==0 ){ goto integrity_ck_cleanup; } sCheck.aPgRef = sqlite3MallocZero((sCheck.nPage / 8)+ 1); if( !sCheck.aPgRef ){ sCheck.bOomFault = 1; goto integrity_ck_cleanup; } sCheck.heap = (u32*)sqlite3PageMalloc( pBt->pageSize ); if( sCheck.heap==0 ){ sCheck.bOomFault = 1; goto integrity_ck_cleanup; } i = PENDING_BYTE_PAGE(pBt); if( i<=sCheck.nPage ) setPageReferenced(&sCheck, i); /* Check the integrity of the freelist */ if( bCkFreelist ){ sCheck.zPfx = "Main freelist: "; checkList(&sCheck, 1, get4byte(&pBt->pPage1->aData[32]), get4byte(&pBt->pPage1->aData[36])); sCheck.zPfx = 0; } /* Check all the tables. */ #ifndef SQLITE_OMIT_AUTOVACUUM if( !bPartial ){ if( pBt->autoVacuum ){ Pgno mx = 0; Pgno mxInHdr; for(i=0; (int)ipPage1->aData[52]); if( mx!=mxInHdr ){ checkAppendMsg(&sCheck, "max rootpage (%d) disagrees with header (%d)", mx, mxInHdr ); } }else if( get4byte(&pBt->pPage1->aData[64])!=0 ){ checkAppendMsg(&sCheck, "incremental_vacuum enabled with a max rootpage of zero" ); } } #endif testcase( pBt->db->flags & SQLITE_CellSizeCk ); pBt->db->flags &= ~(u64)SQLITE_CellSizeCk; for(i=0; (int)iautoVacuum && aRoot[i]>1 && !bPartial ){ checkPtrmap(&sCheck, aRoot[i], PTRMAP_ROOTPAGE, 0); } #endif checkTreePage(&sCheck, aRoot[i], ¬Used, LARGEST_INT64); } pBt->db->flags = savedDbFlags; /* Make sure every page in the file is referenced */ if( !bPartial ){ for(i=1; i<=sCheck.nPage && sCheck.mxErr; i++){ #ifdef SQLITE_OMIT_AUTOVACUUM if( getPageReferenced(&sCheck, i)==0 ){ checkAppendMsg(&sCheck, "Page %d is never used", i); } #else /* If the database supports auto-vacuum, make sure no tables contain ** references to pointer-map pages. */ if( getPageReferenced(&sCheck, i)==0 && (PTRMAP_PAGENO(pBt, i)!=i || !pBt->autoVacuum) ){ checkAppendMsg(&sCheck, "Page %d is never used", i); } if( getPageReferenced(&sCheck, i)!=0 && (PTRMAP_PAGENO(pBt, i)==i && pBt->autoVacuum) ){ checkAppendMsg(&sCheck, "Pointer map page %d is referenced", i); } #endif } } /* Clean up and report errors. */ integrity_ck_cleanup: sqlite3PageFree(sCheck.heap); sqlite3_free(sCheck.aPgRef); if( sCheck.bOomFault ){ sqlite3_str_reset(&sCheck.errMsg); sCheck.nErr++; } *pnErr = sCheck.nErr; if( sCheck.nErr==0 ) sqlite3_str_reset(&sCheck.errMsg); /* Make sure this analysis did not leave any unref() pages. */ assert( nRef==sqlite3PagerRefcount(pBt->pPager) ); sqlite3BtreeLeave(p); return sqlite3StrAccumFinish(&sCheck.errMsg); } #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ /* ** Return the full pathname of the underlying database file. Return ** an empty string if the database is in-memory or a TEMP database. ** ** The pager filename is invariant as long as the pager is ** open so it is safe to access without the BtShared mutex. */ SQLITE_PRIVATE const char *sqlite3BtreeGetFilename(Btree *p){ assert( p->pBt->pPager!=0 ); return sqlite3PagerFilename(p->pBt->pPager, 1); } /* ** Return the pathname of the journal file for this database. The return ** value of this routine is the same regardless of whether the journal file ** has been created or not. ** ** The pager journal filename is invariant as long as the pager is ** open so it is safe to access without the BtShared mutex. */ SQLITE_PRIVATE const char *sqlite3BtreeGetJournalname(Btree *p){ assert( p->pBt->pPager!=0 ); return sqlite3PagerJournalname(p->pBt->pPager); } /* ** Return non-zero if a transaction is active. */ SQLITE_PRIVATE int sqlite3BtreeIsInTrans(Btree *p){ assert( p==0 || sqlite3_mutex_held(p->db->mutex) ); return (p && (p->inTrans==TRANS_WRITE)); } #ifndef SQLITE_OMIT_WAL /* ** Run a checkpoint on the Btree passed as the first argument. ** ** Return SQLITE_LOCKED if this or any other connection has an open ** transaction on the shared-cache the argument Btree is connected to. ** ** Parameter eMode is one of SQLITE_CHECKPOINT_PASSIVE, FULL or RESTART. */ SQLITE_PRIVATE int sqlite3BtreeCheckpoint(Btree *p, int eMode, int *pnLog, int *pnCkpt){ int rc = SQLITE_OK; if( p ){ BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); if( pBt->inTransaction!=TRANS_NONE ){ rc = SQLITE_LOCKED; }else{ rc = sqlite3PagerCheckpoint(pBt->pPager, p->db, eMode, pnLog, pnCkpt); } sqlite3BtreeLeave(p); } return rc; } #endif /* ** Return non-zero if a read (or write) transaction is active. */ SQLITE_PRIVATE int sqlite3BtreeIsInReadTrans(Btree *p){ assert( p ); assert( sqlite3_mutex_held(p->db->mutex) ); return p->inTrans!=TRANS_NONE; } SQLITE_PRIVATE int sqlite3BtreeIsInBackup(Btree *p){ assert( p ); assert( sqlite3_mutex_held(p->db->mutex) ); return p->nBackup!=0; } /* ** This function returns a pointer to a blob of memory associated with ** a single shared-btree. The memory is used by client code for its own ** purposes (for example, to store a high-level schema associated with ** the shared-btree). The btree layer manages reference counting issues. ** ** The first time this is called on a shared-btree, nBytes bytes of memory ** are allocated, zeroed, and returned to the caller. For each subsequent ** call the nBytes parameter is ignored and a pointer to the same blob ** of memory returned. ** ** If the nBytes parameter is 0 and the blob of memory has not yet been ** allocated, a null pointer is returned. If the blob has already been ** allocated, it is returned as normal. ** ** Just before the shared-btree is closed, the function passed as the ** xFree argument when the memory allocation was made is invoked on the ** blob of allocated memory. The xFree function should not call sqlite3_free() ** on the memory, the btree layer does that. */ SQLITE_PRIVATE void *sqlite3BtreeSchema(Btree *p, int nBytes, void(*xFree)(void *)){ BtShared *pBt = p->pBt; sqlite3BtreeEnter(p); if( !pBt->pSchema && nBytes ){ pBt->pSchema = sqlite3DbMallocZero(0, nBytes); pBt->xFreeSchema = xFree; } sqlite3BtreeLeave(p); return pBt->pSchema; } /* ** Return SQLITE_LOCKED_SHAREDCACHE if another user of the same shared ** btree as the argument handle holds an exclusive lock on the ** sqlite_schema table. Otherwise SQLITE_OK. */ SQLITE_PRIVATE int sqlite3BtreeSchemaLocked(Btree *p){ int rc; assert( sqlite3_mutex_held(p->db->mutex) ); sqlite3BtreeEnter(p); rc = querySharedCacheTableLock(p, SCHEMA_ROOT, READ_LOCK); assert( rc==SQLITE_OK || rc==SQLITE_LOCKED_SHAREDCACHE ); sqlite3BtreeLeave(p); return rc; } #ifndef SQLITE_OMIT_SHARED_CACHE /* ** Obtain a lock on the table whose root page is iTab. The ** lock is a write lock if isWritelock is true or a read lock ** if it is false. */ SQLITE_PRIVATE int sqlite3BtreeLockTable(Btree *p, int iTab, u8 isWriteLock){ int rc = SQLITE_OK; assert( p->inTrans!=TRANS_NONE ); if( p->sharable ){ u8 lockType = READ_LOCK + isWriteLock; assert( READ_LOCK+1==WRITE_LOCK ); assert( isWriteLock==0 || isWriteLock==1 ); sqlite3BtreeEnter(p); rc = querySharedCacheTableLock(p, iTab, lockType); if( rc==SQLITE_OK ){ rc = setSharedCacheTableLock(p, iTab, lockType); } sqlite3BtreeLeave(p); } return rc; } #endif #ifndef SQLITE_OMIT_INCRBLOB /* ** Argument pCsr must be a cursor opened for writing on an ** INTKEY table currently pointing at a valid table entry. ** This function modifies the data stored as part of that entry. ** ** Only the data content may only be modified, it is not possible to ** change the length of the data stored. If this function is called with ** parameters that attempt to write past the end of the existing data, ** no modifications are made and SQLITE_CORRUPT is returned. */ SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor *pCsr, u32 offset, u32 amt, void *z){ int rc; assert( cursorOwnsBtShared(pCsr) ); assert( sqlite3_mutex_held(pCsr->pBtree->db->mutex) ); assert( pCsr->curFlags & BTCF_Incrblob ); rc = restoreCursorPosition(pCsr); if( rc!=SQLITE_OK ){ return rc; } assert( pCsr->eState!=CURSOR_REQUIRESEEK ); if( pCsr->eState!=CURSOR_VALID ){ return SQLITE_ABORT; } /* Save the positions of all other cursors open on this table. This is ** required in case any of them are holding references to an xFetch ** version of the b-tree page modified by the accessPayload call below. ** ** Note that pCsr must be open on a INTKEY table and saveCursorPosition() ** and hence saveAllCursors() cannot fail on a BTREE_INTKEY table, hence ** saveAllCursors can only return SQLITE_OK. */ VVA_ONLY(rc =) saveAllCursors(pCsr->pBt, pCsr->pgnoRoot, pCsr); assert( rc==SQLITE_OK ); /* Check some assumptions: ** (a) the cursor is open for writing, ** (b) there is a read/write transaction open, ** (c) the connection holds a write-lock on the table (if required), ** (d) there are no conflicting read-locks, and ** (e) the cursor points at a valid row of an intKey table. */ if( (pCsr->curFlags & BTCF_WriteFlag)==0 ){ return SQLITE_READONLY; } assert( (pCsr->pBt->btsFlags & BTS_READ_ONLY)==0 && pCsr->pBt->inTransaction==TRANS_WRITE ); assert( hasSharedCacheTableLock(pCsr->pBtree, pCsr->pgnoRoot, 0, 2) ); assert( !hasReadConflicts(pCsr->pBtree, pCsr->pgnoRoot) ); assert( pCsr->pPage->intKey ); return accessPayload(pCsr, offset, amt, (unsigned char *)z, 1); } /* ** Mark this cursor as an incremental blob cursor. */ SQLITE_PRIVATE void sqlite3BtreeIncrblobCursor(BtCursor *pCur){ pCur->curFlags |= BTCF_Incrblob; pCur->pBtree->hasIncrblobCur = 1; } #endif /* ** Set both the "read version" (single byte at byte offset 18) and ** "write version" (single byte at byte offset 19) fields in the database ** header to iVersion. */ SQLITE_PRIVATE int sqlite3BtreeSetVersion(Btree *pBtree, int iVersion){ BtShared *pBt = pBtree->pBt; int rc; /* Return code */ assert( iVersion==1 || iVersion==2 ); /* If setting the version fields to 1, do not automatically open the ** WAL connection, even if the version fields are currently set to 2. */ pBt->btsFlags &= ~BTS_NO_WAL; if( iVersion==1 ) pBt->btsFlags |= BTS_NO_WAL; rc = sqlite3BtreeBeginTrans(pBtree, 0, 0); if( rc==SQLITE_OK ){ u8 *aData = pBt->pPage1->aData; if( aData[18]!=(u8)iVersion || aData[19]!=(u8)iVersion ){ rc = sqlite3BtreeBeginTrans(pBtree, 2, 0); if( rc==SQLITE_OK ){ rc = sqlite3PagerWrite(pBt->pPage1->pDbPage); if( rc==SQLITE_OK ){ aData[18] = (u8)iVersion; aData[19] = (u8)iVersion; } } } } pBt->btsFlags &= ~BTS_NO_WAL; return rc; } /* ** Return true if the cursor has a hint specified. This routine is ** only used from within assert() statements */ SQLITE_PRIVATE int sqlite3BtreeCursorHasHint(BtCursor *pCsr, unsigned int mask){ return (pCsr->hints & mask)!=0; } /* ** Return true if the given Btree is read-only. */ SQLITE_PRIVATE int sqlite3BtreeIsReadonly(Btree *p){ return (p->pBt->btsFlags & BTS_READ_ONLY)!=0; } /* ** Return the size of the header added to each page by this module. */ SQLITE_PRIVATE int sqlite3HeaderSizeBtree(void){ return ROUND8(sizeof(MemPage)); } #if !defined(SQLITE_OMIT_SHARED_CACHE) /* ** Return true if the Btree passed as the only argument is sharable. */ SQLITE_PRIVATE int sqlite3BtreeSharable(Btree *p){ return p->sharable; } /* ** Return the number of connections to the BtShared object accessed by ** the Btree handle passed as the only argument. For private caches ** this is always 1. For shared caches it may be 1 or greater. */ SQLITE_PRIVATE int sqlite3BtreeConnectionCount(Btree *p){ testcase( p->sharable ); return p->pBt->nRef; } #endif /************** End of btree.c ***********************************************/ /************** Begin file backup.c ******************************************/ /* ** 2009 January 28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the implementation of the sqlite3_backup_XXX() ** API functions and the related features. */ /* #include "sqliteInt.h" */ /* #include "btreeInt.h" */ /* ** Structure allocated for each backup operation. */ struct sqlite3_backup { sqlite3* pDestDb; /* Destination database handle */ Btree *pDest; /* Destination b-tree file */ u32 iDestSchema; /* Original schema cookie in destination */ int bDestLocked; /* True once a write-transaction is open on pDest */ Pgno iNext; /* Page number of the next source page to copy */ sqlite3* pSrcDb; /* Source database handle */ Btree *pSrc; /* Source b-tree file */ int rc; /* Backup process error code */ /* These two variables are set by every call to backup_step(). They are ** read by calls to backup_remaining() and backup_pagecount(). */ Pgno nRemaining; /* Number of pages left to copy */ Pgno nPagecount; /* Total number of pages to copy */ int isAttached; /* True once backup has been registered with pager */ sqlite3_backup *pNext; /* Next backup associated with source pager */ }; /* ** THREAD SAFETY NOTES: ** ** Once it has been created using backup_init(), a single sqlite3_backup ** structure may be accessed via two groups of thread-safe entry points: ** ** * Via the sqlite3_backup_XXX() API function backup_step() and ** backup_finish(). Both these functions obtain the source database ** handle mutex and the mutex associated with the source BtShared ** structure, in that order. ** ** * Via the BackupUpdate() and BackupRestart() functions, which are ** invoked by the pager layer to report various state changes in ** the page cache associated with the source database. The mutex ** associated with the source database BtShared structure will always ** be held when either of these functions are invoked. ** ** The other sqlite3_backup_XXX() API functions, backup_remaining() and ** backup_pagecount() are not thread-safe functions. If they are called ** while some other thread is calling backup_step() or backup_finish(), ** the values returned may be invalid. There is no way for a call to ** BackupUpdate() or BackupRestart() to interfere with backup_remaining() ** or backup_pagecount(). ** ** Depending on the SQLite configuration, the database handles and/or ** the Btree objects may have their own mutexes that require locking. ** Non-sharable Btrees (in-memory databases for example), do not have ** associated mutexes. */ /* ** Return a pointer corresponding to database zDb (i.e. "main", "temp") ** in connection handle pDb. If such a database cannot be found, return ** a NULL pointer and write an error message to pErrorDb. ** ** If the "temp" database is requested, it may need to be opened by this ** function. If an error occurs while doing so, return 0 and write an ** error message to pErrorDb. */ static Btree *findBtree(sqlite3 *pErrorDb, sqlite3 *pDb, const char *zDb){ int i = sqlite3FindDbName(pDb, zDb); if( i==1 ){ Parse sParse; int rc = 0; memset(&sParse, 0, sizeof(sParse)); sParse.db = pDb; if( sqlite3OpenTempDatabase(&sParse) ){ sqlite3ErrorWithMsg(pErrorDb, sParse.rc, "%s", sParse.zErrMsg); rc = SQLITE_ERROR; } sqlite3DbFree(pErrorDb, sParse.zErrMsg); sqlite3ParserReset(&sParse); if( rc ){ return 0; } } if( i<0 ){ sqlite3ErrorWithMsg(pErrorDb, SQLITE_ERROR, "unknown database %s", zDb); return 0; } return pDb->aDb[i].pBt; } /* ** Attempt to set the page size of the destination to match the page size ** of the source. */ static int setDestPgsz(sqlite3_backup *p){ int rc; rc = sqlite3BtreeSetPageSize(p->pDest,sqlite3BtreeGetPageSize(p->pSrc),0,0); return rc; } /* ** Check that there is no open read-transaction on the b-tree passed as the ** second argument. If there is not, return SQLITE_OK. Otherwise, if there ** is an open read-transaction, return SQLITE_ERROR and leave an error ** message in database handle db. */ static int checkReadTransaction(sqlite3 *db, Btree *p){ if( sqlite3BtreeIsInReadTrans(p) ){ sqlite3ErrorWithMsg(db, SQLITE_ERROR, "destination database is in use"); return SQLITE_ERROR; } return SQLITE_OK; } /* ** Create an sqlite3_backup process to copy the contents of zSrcDb from ** connection handle pSrcDb to zDestDb in pDestDb. If successful, return ** a pointer to the new sqlite3_backup object. ** ** If an error occurs, NULL is returned and an error code and error message ** stored in database handle pDestDb. */ SQLITE_API sqlite3_backup *sqlite3_backup_init( sqlite3* pDestDb, /* Database to write to */ const char *zDestDb, /* Name of database within pDestDb */ sqlite3* pSrcDb, /* Database connection to read from */ const char *zSrcDb /* Name of database within pSrcDb */ ){ sqlite3_backup *p; /* Value to return */ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(pSrcDb)||!sqlite3SafetyCheckOk(pDestDb) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif /* Lock the source database handle. The destination database ** handle is not locked in this routine, but it is locked in ** sqlite3_backup_step(). The user is required to ensure that no ** other thread accesses the destination handle for the duration ** of the backup operation. Any attempt to use the destination ** database connection while a backup is in progress may cause ** a malfunction or a deadlock. */ sqlite3_mutex_enter(pSrcDb->mutex); sqlite3_mutex_enter(pDestDb->mutex); if( pSrcDb==pDestDb ){ sqlite3ErrorWithMsg( pDestDb, SQLITE_ERROR, "source and destination must be distinct" ); p = 0; }else { /* Allocate space for a new sqlite3_backup object... ** EVIDENCE-OF: R-64852-21591 The sqlite3_backup object is created by a ** call to sqlite3_backup_init() and is destroyed by a call to ** sqlite3_backup_finish(). */ p = (sqlite3_backup *)sqlite3MallocZero(sizeof(sqlite3_backup)); if( !p ){ sqlite3Error(pDestDb, SQLITE_NOMEM_BKPT); } } /* If the allocation succeeded, populate the new object. */ if( p ){ p->pSrc = findBtree(pDestDb, pSrcDb, zSrcDb); p->pDest = findBtree(pDestDb, pDestDb, zDestDb); p->pDestDb = pDestDb; p->pSrcDb = pSrcDb; p->iNext = 1; p->isAttached = 0; if( 0==p->pSrc || 0==p->pDest || checkReadTransaction(pDestDb, p->pDest)!=SQLITE_OK ){ /* One (or both) of the named databases did not exist or an OOM ** error was hit. Or there is a transaction open on the destination ** database. The error has already been written into the pDestDb ** handle. All that is left to do here is free the sqlite3_backup ** structure. */ sqlite3_free(p); p = 0; } } if( p ){ p->pSrc->nBackup++; } sqlite3_mutex_leave(pDestDb->mutex); sqlite3_mutex_leave(pSrcDb->mutex); return p; } /* ** Argument rc is an SQLite error code. Return true if this error is ** considered fatal if encountered during a backup operation. All errors ** are considered fatal except for SQLITE_BUSY and SQLITE_LOCKED. */ static int isFatalError(int rc){ return (rc!=SQLITE_OK && rc!=SQLITE_BUSY && ALWAYS(rc!=SQLITE_LOCKED)); } /* ** Parameter zSrcData points to a buffer containing the data for ** page iSrcPg from the source database. Copy this data into the ** destination database. */ static int backupOnePage( sqlite3_backup *p, /* Backup handle */ Pgno iSrcPg, /* Source database page to backup */ const u8 *zSrcData, /* Source database page data */ int bUpdate /* True for an update, false otherwise */ ){ Pager * const pDestPager = sqlite3BtreePager(p->pDest); const int nSrcPgsz = sqlite3BtreeGetPageSize(p->pSrc); int nDestPgsz = sqlite3BtreeGetPageSize(p->pDest); const int nCopy = MIN(nSrcPgsz, nDestPgsz); const i64 iEnd = (i64)iSrcPg*(i64)nSrcPgsz; int rc = SQLITE_OK; i64 iOff; assert( sqlite3BtreeGetReserveNoMutex(p->pSrc)>=0 ); assert( p->bDestLocked ); assert( !isFatalError(p->rc) ); assert( iSrcPg!=PENDING_BYTE_PAGE(p->pSrc->pBt) ); assert( zSrcData ); /* Catch the case where the destination is an in-memory database and the ** page sizes of the source and destination differ. */ if( nSrcPgsz!=nDestPgsz && sqlite3PagerIsMemdb(pDestPager) ){ rc = SQLITE_READONLY; } /* This loop runs once for each destination page spanned by the source ** page. For each iteration, variable iOff is set to the byte offset ** of the destination page. */ for(iOff=iEnd-(i64)nSrcPgsz; rc==SQLITE_OK && iOffpDest->pBt) ) continue; if( SQLITE_OK==(rc = sqlite3PagerGet(pDestPager, iDest, &pDestPg, 0)) && SQLITE_OK==(rc = sqlite3PagerWrite(pDestPg)) ){ const u8 *zIn = &zSrcData[iOff%nSrcPgsz]; u8 *zDestData = sqlite3PagerGetData(pDestPg); u8 *zOut = &zDestData[iOff%nDestPgsz]; /* Copy the data from the source page into the destination page. ** Then clear the Btree layer MemPage.isInit flag. Both this module ** and the pager code use this trick (clearing the first byte ** of the page 'extra' space to invalidate the Btree layers ** cached parse of the page). MemPage.isInit is marked ** "MUST BE FIRST" for this purpose. */ memcpy(zOut, zIn, nCopy); ((u8 *)sqlite3PagerGetExtra(pDestPg))[0] = 0; if( iOff==0 && bUpdate==0 ){ sqlite3Put4byte(&zOut[28], sqlite3BtreeLastPage(p->pSrc)); } } sqlite3PagerUnref(pDestPg); } return rc; } /* ** If pFile is currently larger than iSize bytes, then truncate it to ** exactly iSize bytes. If pFile is not larger than iSize bytes, then ** this function is a no-op. ** ** Return SQLITE_OK if everything is successful, or an SQLite error ** code if an error occurs. */ static int backupTruncateFile(sqlite3_file *pFile, i64 iSize){ i64 iCurrent; int rc = sqlite3OsFileSize(pFile, &iCurrent); if( rc==SQLITE_OK && iCurrent>iSize ){ rc = sqlite3OsTruncate(pFile, iSize); } return rc; } /* ** Register this backup object with the associated source pager for ** callbacks when pages are changed or the cache invalidated. */ static void attachBackupObject(sqlite3_backup *p){ sqlite3_backup **pp; assert( sqlite3BtreeHoldsMutex(p->pSrc) ); pp = sqlite3PagerBackupPtr(sqlite3BtreePager(p->pSrc)); p->pNext = *pp; *pp = p; p->isAttached = 1; } /* ** Copy nPage pages from the source b-tree to the destination. */ SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage){ int rc; int destMode; /* Destination journal mode */ int pgszSrc = 0; /* Source page size */ int pgszDest = 0; /* Destination page size */ #ifdef SQLITE_ENABLE_API_ARMOR if( p==0 ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(p->pSrcDb->mutex); sqlite3BtreeEnter(p->pSrc); if( p->pDestDb ){ sqlite3_mutex_enter(p->pDestDb->mutex); } rc = p->rc; if( !isFatalError(rc) ){ Pager * const pSrcPager = sqlite3BtreePager(p->pSrc); /* Source pager */ Pager * const pDestPager = sqlite3BtreePager(p->pDest); /* Dest pager */ int ii; /* Iterator variable */ int nSrcPage = -1; /* Size of source db in pages */ int bCloseTrans = 0; /* True if src db requires unlocking */ /* If the source pager is currently in a write-transaction, return ** SQLITE_BUSY immediately. */ if( p->pDestDb && p->pSrc->pBt->inTransaction==TRANS_WRITE ){ rc = SQLITE_BUSY; }else{ rc = SQLITE_OK; } /* If there is no open read-transaction on the source database, open ** one now. If a transaction is opened here, then it will be closed ** before this function exits. */ if( rc==SQLITE_OK && 0==sqlite3BtreeIsInReadTrans(p->pSrc) ){ rc = sqlite3BtreeBeginTrans(p->pSrc, 0, 0); bCloseTrans = 1; } /* If the destination database has not yet been locked (i.e. if this ** is the first call to backup_step() for the current backup operation), ** try to set its page size to the same as the source database. This ** is especially important on ZipVFS systems, as in that case it is ** not possible to create a database file that uses one page size by ** writing to it with another. */ if( p->bDestLocked==0 && rc==SQLITE_OK && setDestPgsz(p)==SQLITE_NOMEM ){ rc = SQLITE_NOMEM; } /* Lock the destination database, if it is not locked already. */ if( SQLITE_OK==rc && p->bDestLocked==0 && SQLITE_OK==(rc = sqlite3BtreeBeginTrans(p->pDest, 2, (int*)&p->iDestSchema)) ){ p->bDestLocked = 1; } /* Do not allow backup if the destination database is in WAL mode ** and the page sizes are different between source and destination */ pgszSrc = sqlite3BtreeGetPageSize(p->pSrc); pgszDest = sqlite3BtreeGetPageSize(p->pDest); destMode = sqlite3PagerGetJournalMode(sqlite3BtreePager(p->pDest)); if( SQLITE_OK==rc && destMode==PAGER_JOURNALMODE_WAL && pgszSrc!=pgszDest ){ rc = SQLITE_READONLY; } /* Now that there is a read-lock on the source database, query the ** source pager for the number of pages in the database. */ nSrcPage = (int)sqlite3BtreeLastPage(p->pSrc); assert( nSrcPage>=0 ); for(ii=0; (nPage<0 || iiiNext<=(Pgno)nSrcPage && !rc; ii++){ const Pgno iSrcPg = p->iNext; /* Source page number */ if( iSrcPg!=PENDING_BYTE_PAGE(p->pSrc->pBt) ){ DbPage *pSrcPg; /* Source page object */ rc = sqlite3PagerGet(pSrcPager, iSrcPg, &pSrcPg,PAGER_GET_READONLY); if( rc==SQLITE_OK ){ rc = backupOnePage(p, iSrcPg, sqlite3PagerGetData(pSrcPg), 0); sqlite3PagerUnref(pSrcPg); } } p->iNext++; } if( rc==SQLITE_OK ){ p->nPagecount = nSrcPage; p->nRemaining = nSrcPage+1-p->iNext; if( p->iNext>(Pgno)nSrcPage ){ rc = SQLITE_DONE; }else if( !p->isAttached ){ attachBackupObject(p); } } /* Update the schema version field in the destination database. This ** is to make sure that the schema-version really does change in ** the case where the source and destination databases have the ** same schema version. */ if( rc==SQLITE_DONE ){ if( nSrcPage==0 ){ rc = sqlite3BtreeNewDb(p->pDest); nSrcPage = 1; } if( rc==SQLITE_OK || rc==SQLITE_DONE ){ rc = sqlite3BtreeUpdateMeta(p->pDest,1,p->iDestSchema+1); } if( rc==SQLITE_OK ){ if( p->pDestDb ){ sqlite3ResetAllSchemasOfConnection(p->pDestDb); } if( destMode==PAGER_JOURNALMODE_WAL ){ rc = sqlite3BtreeSetVersion(p->pDest, 2); } } if( rc==SQLITE_OK ){ int nDestTruncate; /* Set nDestTruncate to the final number of pages in the destination ** database. The complication here is that the destination page ** size may be different to the source page size. ** ** If the source page size is smaller than the destination page size, ** round up. In this case the call to sqlite3OsTruncate() below will ** fix the size of the file. However it is important to call ** sqlite3PagerTruncateImage() here so that any pages in the ** destination file that lie beyond the nDestTruncate page mark are ** journalled by PagerCommitPhaseOne() before they are destroyed ** by the file truncation. */ assert( pgszSrc==sqlite3BtreeGetPageSize(p->pSrc) ); assert( pgszDest==sqlite3BtreeGetPageSize(p->pDest) ); if( pgszSrcpDest->pBt) ){ nDestTruncate--; } }else{ nDestTruncate = nSrcPage * (pgszSrc/pgszDest); } assert( nDestTruncate>0 ); if( pgszSrc= iSize || ( nDestTruncate==(int)(PENDING_BYTE_PAGE(p->pDest->pBt)-1) && iSize>=PENDING_BYTE && iSize<=PENDING_BYTE+pgszDest )); /* This block ensures that all data required to recreate the original ** database has been stored in the journal for pDestPager and the ** journal synced to disk. So at this point we may safely modify ** the database file in any way, knowing that if a power failure ** occurs, the original database will be reconstructed from the ** journal file. */ sqlite3PagerPagecount(pDestPager, &nDstPage); for(iPg=nDestTruncate; rc==SQLITE_OK && iPg<=(Pgno)nDstPage; iPg++){ if( iPg!=PENDING_BYTE_PAGE(p->pDest->pBt) ){ DbPage *pPg; rc = sqlite3PagerGet(pDestPager, iPg, &pPg, 0); if( rc==SQLITE_OK ){ rc = sqlite3PagerWrite(pPg); sqlite3PagerUnref(pPg); } } } if( rc==SQLITE_OK ){ rc = sqlite3PagerCommitPhaseOne(pDestPager, 0, 1); } /* Write the extra pages and truncate the database file as required */ iEnd = MIN(PENDING_BYTE + pgszDest, iSize); for( iOff=PENDING_BYTE+pgszSrc; rc==SQLITE_OK && iOffpDest, 0)) ){ rc = SQLITE_DONE; } } } /* If bCloseTrans is true, then this function opened a read transaction ** on the source database. Close the read transaction here. There is ** no need to check the return values of the btree methods here, as ** "committing" a read-only transaction cannot fail. */ if( bCloseTrans ){ TESTONLY( int rc2 ); TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0); TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0); assert( rc2==SQLITE_OK ); } if( rc==SQLITE_IOERR_NOMEM ){ rc = SQLITE_NOMEM_BKPT; } p->rc = rc; } if( p->pDestDb ){ sqlite3_mutex_leave(p->pDestDb->mutex); } sqlite3BtreeLeave(p->pSrc); sqlite3_mutex_leave(p->pSrcDb->mutex); return rc; } /* ** Release all resources associated with an sqlite3_backup* handle. */ SQLITE_API int sqlite3_backup_finish(sqlite3_backup *p){ sqlite3_backup **pp; /* Ptr to head of pagers backup list */ sqlite3 *pSrcDb; /* Source database connection */ int rc; /* Value to return */ /* Enter the mutexes */ if( p==0 ) return SQLITE_OK; pSrcDb = p->pSrcDb; sqlite3_mutex_enter(pSrcDb->mutex); sqlite3BtreeEnter(p->pSrc); if( p->pDestDb ){ sqlite3_mutex_enter(p->pDestDb->mutex); } /* Detach this backup from the source pager. */ if( p->pDestDb ){ p->pSrc->nBackup--; } if( p->isAttached ){ pp = sqlite3PagerBackupPtr(sqlite3BtreePager(p->pSrc)); assert( pp!=0 ); while( *pp!=p ){ pp = &(*pp)->pNext; assert( pp!=0 ); } *pp = p->pNext; } /* If a transaction is still open on the Btree, roll it back. */ sqlite3BtreeRollback(p->pDest, SQLITE_OK, 0); /* Set the error code of the destination database handle. */ rc = (p->rc==SQLITE_DONE) ? SQLITE_OK : p->rc; if( p->pDestDb ){ sqlite3Error(p->pDestDb, rc); /* Exit the mutexes and free the backup context structure. */ sqlite3LeaveMutexAndCloseZombie(p->pDestDb); } sqlite3BtreeLeave(p->pSrc); if( p->pDestDb ){ /* EVIDENCE-OF: R-64852-21591 The sqlite3_backup object is created by a ** call to sqlite3_backup_init() and is destroyed by a call to ** sqlite3_backup_finish(). */ sqlite3_free(p); } sqlite3LeaveMutexAndCloseZombie(pSrcDb); return rc; } /* ** Return the number of pages still to be backed up as of the most recent ** call to sqlite3_backup_step(). */ SQLITE_API int sqlite3_backup_remaining(sqlite3_backup *p){ #ifdef SQLITE_ENABLE_API_ARMOR if( p==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return p->nRemaining; } /* ** Return the total number of pages in the source database as of the most ** recent call to sqlite3_backup_step(). */ SQLITE_API int sqlite3_backup_pagecount(sqlite3_backup *p){ #ifdef SQLITE_ENABLE_API_ARMOR if( p==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return p->nPagecount; } /* ** This function is called after the contents of page iPage of the ** source database have been modified. If page iPage has already been ** copied into the destination database, then the data written to the ** destination is now invalidated. The destination copy of iPage needs ** to be updated with the new data before the backup operation is ** complete. ** ** It is assumed that the mutex associated with the BtShared object ** corresponding to the source database is held when this function is ** called. */ static SQLITE_NOINLINE void backupUpdate( sqlite3_backup *p, Pgno iPage, const u8 *aData ){ assert( p!=0 ); do{ assert( sqlite3_mutex_held(p->pSrc->pBt->mutex) ); if( !isFatalError(p->rc) && iPageiNext ){ /* The backup process p has already copied page iPage. But now it ** has been modified by a transaction on the source pager. Copy ** the new data into the backup. */ int rc; assert( p->pDestDb ); sqlite3_mutex_enter(p->pDestDb->mutex); rc = backupOnePage(p, iPage, aData, 1); sqlite3_mutex_leave(p->pDestDb->mutex); assert( rc!=SQLITE_BUSY && rc!=SQLITE_LOCKED ); if( rc!=SQLITE_OK ){ p->rc = rc; } } }while( (p = p->pNext)!=0 ); } SQLITE_PRIVATE void sqlite3BackupUpdate(sqlite3_backup *pBackup, Pgno iPage, const u8 *aData){ if( pBackup ) backupUpdate(pBackup, iPage, aData); } /* ** Restart the backup process. This is called when the pager layer ** detects that the database has been modified by an external database ** connection. In this case there is no way of knowing which of the ** pages that have been copied into the destination database are still ** valid and which are not, so the entire process needs to be restarted. ** ** It is assumed that the mutex associated with the BtShared object ** corresponding to the source database is held when this function is ** called. */ SQLITE_PRIVATE void sqlite3BackupRestart(sqlite3_backup *pBackup){ sqlite3_backup *p; /* Iterator variable */ for(p=pBackup; p; p=p->pNext){ assert( sqlite3_mutex_held(p->pSrc->pBt->mutex) ); p->iNext = 1; } } #ifndef SQLITE_OMIT_VACUUM /* ** Copy the complete content of pBtFrom into pBtTo. A transaction ** must be active for both files. ** ** The size of file pTo may be reduced by this operation. If anything ** goes wrong, the transaction on pTo is rolled back. If successful, the ** transaction is committed before returning. */ SQLITE_PRIVATE int sqlite3BtreeCopyFile(Btree *pTo, Btree *pFrom){ int rc; sqlite3_file *pFd; /* File descriptor for database pTo */ sqlite3_backup b; sqlite3BtreeEnter(pTo); sqlite3BtreeEnter(pFrom); assert( sqlite3BtreeIsInTrans(pTo) ); pFd = sqlite3PagerFile(sqlite3BtreePager(pTo)); if( pFd->pMethods ){ i64 nByte = sqlite3BtreeGetPageSize(pFrom)*(i64)sqlite3BtreeLastPage(pFrom); rc = sqlite3OsFileControl(pFd, SQLITE_FCNTL_OVERWRITE, &nByte); if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; if( rc ) goto copy_finished; } /* Set up an sqlite3_backup object. sqlite3_backup.pDestDb must be set ** to 0. This is used by the implementations of sqlite3_backup_step() ** and sqlite3_backup_finish() to detect that they are being called ** from this function, not directly by the user. */ memset(&b, 0, sizeof(b)); b.pSrcDb = pFrom->db; b.pSrc = pFrom; b.pDest = pTo; b.iNext = 1; /* 0x7FFFFFFF is the hard limit for the number of pages in a database ** file. By passing this as the number of pages to copy to ** sqlite3_backup_step(), we can guarantee that the copy finishes ** within a single call (unless an error occurs). The assert() statement ** checks this assumption - (p->rc) should be set to either SQLITE_DONE ** or an error code. */ sqlite3_backup_step(&b, 0x7FFFFFFF); assert( b.rc!=SQLITE_OK ); rc = sqlite3_backup_finish(&b); if( rc==SQLITE_OK ){ pTo->pBt->btsFlags &= ~BTS_PAGESIZE_FIXED; }else{ sqlite3PagerClearCache(sqlite3BtreePager(b.pDest)); } assert( sqlite3BtreeIsInTrans(pTo)==0 ); copy_finished: sqlite3BtreeLeave(pFrom); sqlite3BtreeLeave(pTo); return rc; } #endif /* SQLITE_OMIT_VACUUM */ /************** End of backup.c **********************************************/ /************** Begin file vdbemem.c *****************************************/ /* ** 2004 May 26 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code use to manipulate "Mem" structure. A "Mem" ** stores a single value in the VDBE. Mem is an opaque structure visible ** only within the VDBE. Interface routines refer to a Mem using the ** name sqlite_value */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ /* True if X is a power of two. 0 is considered a power of two here. ** In other words, return true if X has at most one bit set. */ #define ISPOWEROF2(X) (((X)&((X)-1))==0) #ifdef SQLITE_DEBUG /* ** Check invariants on a Mem object. ** ** This routine is intended for use inside of assert() statements, like ** this: assert( sqlite3VdbeCheckMemInvariants(pMem) ); */ SQLITE_PRIVATE int sqlite3VdbeCheckMemInvariants(Mem *p){ /* If MEM_Dyn is set then Mem.xDel!=0. ** Mem.xDel might not be initialized if MEM_Dyn is clear. */ assert( (p->flags & MEM_Dyn)==0 || p->xDel!=0 ); /* MEM_Dyn may only be set if Mem.szMalloc==0. In this way we ** ensure that if Mem.szMalloc>0 then it is safe to do ** Mem.z = Mem.zMalloc without having to check Mem.flags&MEM_Dyn. ** That saves a few cycles in inner loops. */ assert( (p->flags & MEM_Dyn)==0 || p->szMalloc==0 ); /* Cannot have more than one of MEM_Int, MEM_Real, or MEM_IntReal */ assert( ISPOWEROF2(p->flags & (MEM_Int|MEM_Real|MEM_IntReal)) ); if( p->flags & MEM_Null ){ /* Cannot be both MEM_Null and some other type */ assert( (p->flags & (MEM_Int|MEM_Real|MEM_Str|MEM_Blob|MEM_Agg))==0 ); /* If MEM_Null is set, then either the value is a pure NULL (the usual ** case) or it is a pointer set using sqlite3_bind_pointer() or ** sqlite3_result_pointer(). If a pointer, then MEM_Term must also be ** set. */ if( (p->flags & (MEM_Term|MEM_Subtype))==(MEM_Term|MEM_Subtype) ){ /* This is a pointer type. There may be a flag to indicate what to ** do with the pointer. */ assert( ((p->flags&MEM_Dyn)!=0 ? 1 : 0) + ((p->flags&MEM_Ephem)!=0 ? 1 : 0) + ((p->flags&MEM_Static)!=0 ? 1 : 0) <= 1 ); /* No other bits set */ assert( (p->flags & ~(MEM_Null|MEM_Term|MEM_Subtype|MEM_FromBind |MEM_Dyn|MEM_Ephem|MEM_Static))==0 ); }else{ /* A pure NULL might have other flags, such as MEM_Static, MEM_Dyn, ** MEM_Ephem, MEM_Cleared, or MEM_Subtype */ } }else{ /* The MEM_Cleared bit is only allowed on NULLs */ assert( (p->flags & MEM_Cleared)==0 ); } /* The szMalloc field holds the correct memory allocation size */ assert( p->szMalloc==0 || p->szMalloc==sqlite3DbMallocSize(p->db,p->zMalloc) ); /* If p holds a string or blob, the Mem.z must point to exactly ** one of the following: ** ** (1) Memory in Mem.zMalloc and managed by the Mem object ** (2) Memory to be freed using Mem.xDel ** (3) An ephemeral string or blob ** (4) A static string or blob */ if( (p->flags & (MEM_Str|MEM_Blob)) && p->n>0 ){ assert( ((p->szMalloc>0 && p->z==p->zMalloc)? 1 : 0) + ((p->flags&MEM_Dyn)!=0 ? 1 : 0) + ((p->flags&MEM_Ephem)!=0 ? 1 : 0) + ((p->flags&MEM_Static)!=0 ? 1 : 0) == 1 ); } return 1; } #endif /* ** Render a Mem object which is one of MEM_Int, MEM_Real, or MEM_IntReal ** into a buffer. */ static void vdbeMemRenderNum(int sz, char *zBuf, Mem *p){ StrAccum acc; assert( p->flags & (MEM_Int|MEM_Real|MEM_IntReal) ); assert( sz>22 ); if( p->flags & MEM_Int ){ #if GCC_VERSION>=7000000 /* Work-around for GCC bug ** https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96270 */ i64 x; assert( (p->flags&MEM_Int)*2==sizeof(x) ); memcpy(&x, (char*)&p->u, (p->flags&MEM_Int)*2); sqlite3Int64ToText(x, zBuf); #else sqlite3Int64ToText(p->u.i, zBuf); #endif }else{ sqlite3StrAccumInit(&acc, 0, zBuf, sz, 0); sqlite3_str_appendf(&acc, "%!.15g", (p->flags & MEM_IntReal)!=0 ? (double)p->u.i : p->u.r); assert( acc.zText==zBuf && acc.mxAlloc<=0 ); zBuf[acc.nChar] = 0; /* Fast version of sqlite3StrAccumFinish(&acc) */ } } #ifdef SQLITE_DEBUG /* ** Validity checks on pMem. pMem holds a string. ** ** (1) Check that string value of pMem agrees with its integer or real value. ** (2) Check that the string is correctly zero terminated ** ** A single int or real value always converts to the same strings. But ** many different strings can be converted into the same int or real. ** If a table contains a numeric value and an index is based on the ** corresponding string value, then it is important that the string be ** derived from the numeric value, not the other way around, to ensure ** that the index and table are consistent. See ticket ** https://www.sqlite.org/src/info/343634942dd54ab (2018-01-31) for ** an example. ** ** This routine looks at pMem to verify that if it has both a numeric ** representation and a string representation then the string rep has ** been derived from the numeric and not the other way around. It returns ** true if everything is ok and false if there is a problem. ** ** This routine is for use inside of assert() statements only. */ SQLITE_PRIVATE int sqlite3VdbeMemValidStrRep(Mem *p){ char zBuf[100]; char *z; int i, j, incr; if( (p->flags & MEM_Str)==0 ) return 1; if( p->flags & MEM_Term ){ /* Insure that the string is properly zero-terminated. Pay particular ** attention to the case where p->n is odd */ if( p->szMalloc>0 && p->z==p->zMalloc ){ assert( p->enc==SQLITE_UTF8 || p->szMalloc >= ((p->n+1)&~1)+2 ); assert( p->enc!=SQLITE_UTF8 || p->szMalloc >= p->n+1 ); } assert( p->z[p->n]==0 ); assert( p->enc==SQLITE_UTF8 || p->z[(p->n+1)&~1]==0 ); assert( p->enc==SQLITE_UTF8 || p->z[((p->n+1)&~1)+1]==0 ); } if( (p->flags & (MEM_Int|MEM_Real|MEM_IntReal))==0 ) return 1; vdbeMemRenderNum(sizeof(zBuf), zBuf, p); z = p->z; i = j = 0; incr = 1; if( p->enc!=SQLITE_UTF8 ){ incr = 2; if( p->enc==SQLITE_UTF16BE ) z++; } while( zBuf[j] ){ if( zBuf[j++]!=z[i] ) return 0; i += incr; } return 1; } #endif /* SQLITE_DEBUG */ /* ** If pMem is an object with a valid string representation, this routine ** ensures the internal encoding for the string representation is ** 'desiredEnc', one of SQLITE_UTF8, SQLITE_UTF16LE or SQLITE_UTF16BE. ** ** If pMem is not a string object, or the encoding of the string ** representation is already stored using the requested encoding, then this ** routine is a no-op. ** ** SQLITE_OK is returned if the conversion is successful (or not required). ** SQLITE_NOMEM may be returned if a malloc() fails during conversion ** between formats. */ SQLITE_PRIVATE int sqlite3VdbeChangeEncoding(Mem *pMem, int desiredEnc){ #ifndef SQLITE_OMIT_UTF16 int rc; #endif assert( !sqlite3VdbeMemIsRowSet(pMem) ); assert( desiredEnc==SQLITE_UTF8 || desiredEnc==SQLITE_UTF16LE || desiredEnc==SQLITE_UTF16BE ); if( !(pMem->flags&MEM_Str) || pMem->enc==desiredEnc ){ return SQLITE_OK; } assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); #ifdef SQLITE_OMIT_UTF16 return SQLITE_ERROR; #else /* MemTranslate() may return SQLITE_OK or SQLITE_NOMEM. If NOMEM is returned, ** then the encoding of the value may not have changed. */ rc = sqlite3VdbeMemTranslate(pMem, (u8)desiredEnc); assert(rc==SQLITE_OK || rc==SQLITE_NOMEM); assert(rc==SQLITE_OK || pMem->enc!=desiredEnc); assert(rc==SQLITE_NOMEM || pMem->enc==desiredEnc); return rc; #endif } /* ** Make sure pMem->z points to a writable allocation of at least n bytes. ** ** If the bPreserve argument is true, then copy of the content of ** pMem->z into the new allocation. pMem must be either a string or ** blob if bPreserve is true. If bPreserve is false, any prior content ** in pMem->z is discarded. */ SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3VdbeMemGrow(Mem *pMem, int n, int bPreserve){ assert( sqlite3VdbeCheckMemInvariants(pMem) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); testcase( pMem->db==0 ); /* If the bPreserve flag is set to true, then the memory cell must already ** contain a valid string or blob value. */ assert( bPreserve==0 || pMem->flags&(MEM_Blob|MEM_Str) ); testcase( bPreserve && pMem->z==0 ); assert( pMem->szMalloc==0 || pMem->szMalloc==sqlite3DbMallocSize(pMem->db, pMem->zMalloc) ); if( pMem->szMalloc>0 && bPreserve && pMem->z==pMem->zMalloc ){ if( pMem->db ){ pMem->z = pMem->zMalloc = sqlite3DbReallocOrFree(pMem->db, pMem->z, n); }else{ pMem->zMalloc = sqlite3Realloc(pMem->z, n); if( pMem->zMalloc==0 ) sqlite3_free(pMem->z); pMem->z = pMem->zMalloc; } bPreserve = 0; }else{ if( pMem->szMalloc>0 ) sqlite3DbFreeNN(pMem->db, pMem->zMalloc); pMem->zMalloc = sqlite3DbMallocRaw(pMem->db, n); } if( pMem->zMalloc==0 ){ sqlite3VdbeMemSetNull(pMem); pMem->z = 0; pMem->szMalloc = 0; return SQLITE_NOMEM_BKPT; }else{ pMem->szMalloc = sqlite3DbMallocSize(pMem->db, pMem->zMalloc); } if( bPreserve && pMem->z ){ assert( pMem->z!=pMem->zMalloc ); memcpy(pMem->zMalloc, pMem->z, pMem->n); } if( (pMem->flags&MEM_Dyn)!=0 ){ assert( pMem->xDel!=0 && pMem->xDel!=SQLITE_DYNAMIC ); pMem->xDel((void *)(pMem->z)); } pMem->z = pMem->zMalloc; pMem->flags &= ~(MEM_Dyn|MEM_Ephem|MEM_Static); return SQLITE_OK; } /* ** Change the pMem->zMalloc allocation to be at least szNew bytes. ** If pMem->zMalloc already meets or exceeds the requested size, this ** routine is a no-op. ** ** Any prior string or blob content in the pMem object may be discarded. ** The pMem->xDel destructor is called, if it exists. Though MEM_Str ** and MEM_Blob values may be discarded, MEM_Int, MEM_Real, MEM_IntReal, ** and MEM_Null values are preserved. ** ** Return SQLITE_OK on success or an error code (probably SQLITE_NOMEM) ** if unable to complete the resizing. */ SQLITE_PRIVATE int sqlite3VdbeMemClearAndResize(Mem *pMem, int szNew){ assert( CORRUPT_DB || szNew>0 ); assert( (pMem->flags & MEM_Dyn)==0 || pMem->szMalloc==0 ); if( pMem->szMallocflags & MEM_Dyn)==0 ); pMem->z = pMem->zMalloc; pMem->flags &= (MEM_Null|MEM_Int|MEM_Real|MEM_IntReal); return SQLITE_OK; } /* ** It is already known that pMem contains an unterminated string. ** Add the zero terminator. ** ** Three bytes of zero are added. In this way, there is guaranteed ** to be a double-zero byte at an even byte boundary in order to ** terminate a UTF16 string, even if the initial size of the buffer ** is an odd number of bytes. */ static SQLITE_NOINLINE int vdbeMemAddTerminator(Mem *pMem){ if( sqlite3VdbeMemGrow(pMem, pMem->n+3, 1) ){ return SQLITE_NOMEM_BKPT; } pMem->z[pMem->n] = 0; pMem->z[pMem->n+1] = 0; pMem->z[pMem->n+2] = 0; pMem->flags |= MEM_Term; return SQLITE_OK; } /* ** Change pMem so that its MEM_Str or MEM_Blob value is stored in ** MEM.zMalloc, where it can be safely written. ** ** Return SQLITE_OK on success or SQLITE_NOMEM if malloc fails. */ SQLITE_PRIVATE int sqlite3VdbeMemMakeWriteable(Mem *pMem){ assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); if( (pMem->flags & (MEM_Str|MEM_Blob))!=0 ){ if( ExpandBlob(pMem) ) return SQLITE_NOMEM; if( pMem->szMalloc==0 || pMem->z!=pMem->zMalloc ){ int rc = vdbeMemAddTerminator(pMem); if( rc ) return rc; } } pMem->flags &= ~MEM_Ephem; #ifdef SQLITE_DEBUG pMem->pScopyFrom = 0; #endif return SQLITE_OK; } /* ** If the given Mem* has a zero-filled tail, turn it into an ordinary ** blob stored in dynamically allocated space. */ #ifndef SQLITE_OMIT_INCRBLOB SQLITE_PRIVATE int sqlite3VdbeMemExpandBlob(Mem *pMem){ int nByte; assert( pMem->flags & MEM_Zero ); assert( (pMem->flags&MEM_Blob)!=0 || MemNullNochng(pMem) ); testcase( sqlite3_value_nochange(pMem) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); /* Set nByte to the number of bytes required to store the expanded blob. */ nByte = pMem->n + pMem->u.nZero; if( nByte<=0 ){ if( (pMem->flags & MEM_Blob)==0 ) return SQLITE_OK; nByte = 1; } if( sqlite3VdbeMemGrow(pMem, nByte, 1) ){ return SQLITE_NOMEM_BKPT; } memset(&pMem->z[pMem->n], 0, pMem->u.nZero); pMem->n += pMem->u.nZero; pMem->flags &= ~(MEM_Zero|MEM_Term); return SQLITE_OK; } #endif /* ** Make sure the given Mem is \u0000 terminated. */ SQLITE_PRIVATE int sqlite3VdbeMemNulTerminate(Mem *pMem){ assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); testcase( (pMem->flags & (MEM_Term|MEM_Str))==(MEM_Term|MEM_Str) ); testcase( (pMem->flags & (MEM_Term|MEM_Str))==0 ); if( (pMem->flags & (MEM_Term|MEM_Str))!=MEM_Str ){ return SQLITE_OK; /* Nothing to do */ }else{ return vdbeMemAddTerminator(pMem); } } /* ** Add MEM_Str to the set of representations for the given Mem. This ** routine is only called if pMem is a number of some kind, not a NULL ** or a BLOB. ** ** Existing representations MEM_Int, MEM_Real, or MEM_IntReal are invalidated ** if bForce is true but are retained if bForce is false. ** ** A MEM_Null value will never be passed to this function. This function is ** used for converting values to text for returning to the user (i.e. via ** sqlite3_value_text()), or for ensuring that values to be used as btree ** keys are strings. In the former case a NULL pointer is returned the ** user and the latter is an internal programming error. */ SQLITE_PRIVATE int sqlite3VdbeMemStringify(Mem *pMem, u8 enc, u8 bForce){ const int nByte = 32; assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( !(pMem->flags&MEM_Zero) ); assert( !(pMem->flags&(MEM_Str|MEM_Blob)) ); assert( pMem->flags&(MEM_Int|MEM_Real|MEM_IntReal) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); if( sqlite3VdbeMemClearAndResize(pMem, nByte) ){ pMem->enc = 0; return SQLITE_NOMEM_BKPT; } vdbeMemRenderNum(nByte, pMem->z, pMem); assert( pMem->z!=0 ); pMem->n = sqlite3Strlen30NN(pMem->z); pMem->enc = SQLITE_UTF8; pMem->flags |= MEM_Str|MEM_Term; if( bForce ) pMem->flags &= ~(MEM_Int|MEM_Real|MEM_IntReal); sqlite3VdbeChangeEncoding(pMem, enc); return SQLITE_OK; } /* ** Memory cell pMem contains the context of an aggregate function. ** This routine calls the finalize method for that function. The ** result of the aggregate is stored back into pMem. ** ** Return SQLITE_ERROR if the finalizer reports an error. SQLITE_OK ** otherwise. */ SQLITE_PRIVATE int sqlite3VdbeMemFinalize(Mem *pMem, FuncDef *pFunc){ sqlite3_context ctx; Mem t; assert( pFunc!=0 ); assert( pFunc->xFinalize!=0 ); assert( (pMem->flags & MEM_Null)!=0 || pFunc==pMem->u.pDef ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); memset(&ctx, 0, sizeof(ctx)); memset(&t, 0, sizeof(t)); t.flags = MEM_Null; t.db = pMem->db; ctx.pOut = &t; ctx.pMem = pMem; ctx.pFunc = pFunc; pFunc->xFinalize(&ctx); /* IMP: R-24505-23230 */ assert( (pMem->flags & MEM_Dyn)==0 ); if( pMem->szMalloc>0 ) sqlite3DbFreeNN(pMem->db, pMem->zMalloc); memcpy(pMem, &t, sizeof(t)); return ctx.isError; } /* ** Memory cell pAccum contains the context of an aggregate function. ** This routine calls the xValue method for that function and stores ** the results in memory cell pMem. ** ** SQLITE_ERROR is returned if xValue() reports an error. SQLITE_OK ** otherwise. */ #ifndef SQLITE_OMIT_WINDOWFUNC SQLITE_PRIVATE int sqlite3VdbeMemAggValue(Mem *pAccum, Mem *pOut, FuncDef *pFunc){ sqlite3_context ctx; assert( pFunc!=0 ); assert( pFunc->xValue!=0 ); assert( (pAccum->flags & MEM_Null)!=0 || pFunc==pAccum->u.pDef ); assert( pAccum->db==0 || sqlite3_mutex_held(pAccum->db->mutex) ); memset(&ctx, 0, sizeof(ctx)); sqlite3VdbeMemSetNull(pOut); ctx.pOut = pOut; ctx.pMem = pAccum; ctx.pFunc = pFunc; pFunc->xValue(&ctx); return ctx.isError; } #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** If the memory cell contains a value that must be freed by ** invoking the external callback in Mem.xDel, then this routine ** will free that value. It also sets Mem.flags to MEM_Null. ** ** This is a helper routine for sqlite3VdbeMemSetNull() and ** for sqlite3VdbeMemRelease(). Use those other routines as the ** entry point for releasing Mem resources. */ static SQLITE_NOINLINE void vdbeMemClearExternAndSetNull(Mem *p){ assert( p->db==0 || sqlite3_mutex_held(p->db->mutex) ); assert( VdbeMemDynamic(p) ); if( p->flags&MEM_Agg ){ sqlite3VdbeMemFinalize(p, p->u.pDef); assert( (p->flags & MEM_Agg)==0 ); testcase( p->flags & MEM_Dyn ); } if( p->flags&MEM_Dyn ){ assert( p->xDel!=SQLITE_DYNAMIC && p->xDel!=0 ); p->xDel((void *)p->z); } p->flags = MEM_Null; } /* ** Release memory held by the Mem p, both external memory cleared ** by p->xDel and memory in p->zMalloc. ** ** This is a helper routine invoked by sqlite3VdbeMemRelease() in ** the unusual case where there really is memory in p that needs ** to be freed. */ static SQLITE_NOINLINE void vdbeMemClear(Mem *p){ if( VdbeMemDynamic(p) ){ vdbeMemClearExternAndSetNull(p); } if( p->szMalloc ){ sqlite3DbFreeNN(p->db, p->zMalloc); p->szMalloc = 0; } p->z = 0; } /* ** Release any memory resources held by the Mem. Both the memory that is ** free by Mem.xDel and the Mem.zMalloc allocation are freed. ** ** Use this routine prior to clean up prior to abandoning a Mem, or to ** reset a Mem back to its minimum memory utilization. ** ** Use sqlite3VdbeMemSetNull() to release just the Mem.xDel space ** prior to inserting new content into the Mem. */ SQLITE_PRIVATE void sqlite3VdbeMemRelease(Mem *p){ assert( sqlite3VdbeCheckMemInvariants(p) ); if( VdbeMemDynamic(p) || p->szMalloc ){ vdbeMemClear(p); } } /* ** Convert a 64-bit IEEE double into a 64-bit signed integer. ** If the double is out of range of a 64-bit signed integer then ** return the closest available 64-bit signed integer. */ static SQLITE_NOINLINE i64 doubleToInt64(double r){ #ifdef SQLITE_OMIT_FLOATING_POINT /* When floating-point is omitted, double and int64 are the same thing */ return r; #else /* ** Many compilers we encounter do not define constants for the ** minimum and maximum 64-bit integers, or they define them ** inconsistently. And many do not understand the "LL" notation. ** So we define our own static constants here using nothing ** larger than a 32-bit integer constant. */ static const i64 maxInt = LARGEST_INT64; static const i64 minInt = SMALLEST_INT64; if( r<=(double)minInt ){ return minInt; }else if( r>=(double)maxInt ){ return maxInt; }else{ return (i64)r; } #endif } /* ** Return some kind of integer value which is the best we can do ** at representing the value that *pMem describes as an integer. ** If pMem is an integer, then the value is exact. If pMem is ** a floating-point then the value returned is the integer part. ** If pMem is a string or blob, then we make an attempt to convert ** it into an integer and return that. If pMem represents an ** an SQL-NULL value, return 0. ** ** If pMem represents a string value, its encoding might be changed. */ static SQLITE_NOINLINE i64 memIntValue(Mem *pMem){ i64 value = 0; sqlite3Atoi64(pMem->z, &value, pMem->n, pMem->enc); return value; } SQLITE_PRIVATE i64 sqlite3VdbeIntValue(Mem *pMem){ int flags; assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); flags = pMem->flags; if( flags & (MEM_Int|MEM_IntReal) ){ testcase( flags & MEM_IntReal ); return pMem->u.i; }else if( flags & MEM_Real ){ return doubleToInt64(pMem->u.r); }else if( (flags & (MEM_Str|MEM_Blob))!=0 && pMem->z!=0 ){ return memIntValue(pMem); }else{ return 0; } } /* ** Return the best representation of pMem that we can get into a ** double. If pMem is already a double or an integer, return its ** value. If it is a string or blob, try to convert it to a double. ** If it is a NULL, return 0.0. */ static SQLITE_NOINLINE double memRealValue(Mem *pMem){ /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ double val = (double)0; sqlite3AtoF(pMem->z, &val, pMem->n, pMem->enc); return val; } SQLITE_PRIVATE double sqlite3VdbeRealValue(Mem *pMem){ assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); if( pMem->flags & MEM_Real ){ return pMem->u.r; }else if( pMem->flags & (MEM_Int|MEM_IntReal) ){ testcase( pMem->flags & MEM_IntReal ); return (double)pMem->u.i; }else if( pMem->flags & (MEM_Str|MEM_Blob) ){ return memRealValue(pMem); }else{ /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ return (double)0; } } /* ** Return 1 if pMem represents true, and return 0 if pMem represents false. ** Return the value ifNull if pMem is NULL. */ SQLITE_PRIVATE int sqlite3VdbeBooleanValue(Mem *pMem, int ifNull){ testcase( pMem->flags & MEM_IntReal ); if( pMem->flags & (MEM_Int|MEM_IntReal) ) return pMem->u.i!=0; if( pMem->flags & MEM_Null ) return ifNull; return sqlite3VdbeRealValue(pMem)!=0.0; } /* ** The MEM structure is already a MEM_Real. Try to also make it a ** MEM_Int if we can. */ SQLITE_PRIVATE void sqlite3VdbeIntegerAffinity(Mem *pMem){ i64 ix; assert( pMem->flags & MEM_Real ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); ix = doubleToInt64(pMem->u.r); /* Only mark the value as an integer if ** ** (1) the round-trip conversion real->int->real is a no-op, and ** (2) The integer is neither the largest nor the smallest ** possible integer (ticket #3922) ** ** The second and third terms in the following conditional enforces ** the second condition under the assumption that addition overflow causes ** values to wrap around. */ if( pMem->u.r==ix && ix>SMALLEST_INT64 && ixu.i = ix; MemSetTypeFlag(pMem, MEM_Int); } } /* ** Convert pMem to type integer. Invalidate any prior representations. */ SQLITE_PRIVATE int sqlite3VdbeMemIntegerify(Mem *pMem){ assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); pMem->u.i = sqlite3VdbeIntValue(pMem); MemSetTypeFlag(pMem, MEM_Int); return SQLITE_OK; } /* ** Convert pMem so that it is of type MEM_Real. ** Invalidate any prior representations. */ SQLITE_PRIVATE int sqlite3VdbeMemRealify(Mem *pMem){ assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( EIGHT_BYTE_ALIGNMENT(pMem) ); pMem->u.r = sqlite3VdbeRealValue(pMem); MemSetTypeFlag(pMem, MEM_Real); return SQLITE_OK; } /* Compare a floating point value to an integer. Return true if the two ** values are the same within the precision of the floating point value. ** ** This function assumes that i was obtained by assignment from r1. ** ** For some versions of GCC on 32-bit machines, if you do the more obvious ** comparison of "r1==(double)i" you sometimes get an answer of false even ** though the r1 and (double)i values are bit-for-bit the same. */ SQLITE_PRIVATE int sqlite3RealSameAsInt(double r1, sqlite3_int64 i){ double r2 = (double)i; return r1==0.0 || (memcmp(&r1, &r2, sizeof(r1))==0 && i >= -2251799813685248LL && i < 2251799813685248LL); } /* ** Convert pMem so that it has type MEM_Real or MEM_Int. ** Invalidate any prior representations. ** ** Every effort is made to force the conversion, even if the input ** is a string that does not look completely like a number. Convert ** as much of the string as we can and ignore the rest. */ SQLITE_PRIVATE int sqlite3VdbeMemNumerify(Mem *pMem){ testcase( pMem->flags & MEM_Int ); testcase( pMem->flags & MEM_Real ); testcase( pMem->flags & MEM_IntReal ); testcase( pMem->flags & MEM_Null ); if( (pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal|MEM_Null))==0 ){ int rc; sqlite3_int64 ix; assert( (pMem->flags & (MEM_Blob|MEM_Str))!=0 ); assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); rc = sqlite3AtoF(pMem->z, &pMem->u.r, pMem->n, pMem->enc); if( ((rc==0 || rc==1) && sqlite3Atoi64(pMem->z, &ix, pMem->n, pMem->enc)<=1) || sqlite3RealSameAsInt(pMem->u.r, (ix = (i64)pMem->u.r)) ){ pMem->u.i = ix; MemSetTypeFlag(pMem, MEM_Int); }else{ MemSetTypeFlag(pMem, MEM_Real); } } assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal|MEM_Null))!=0 ); pMem->flags &= ~(MEM_Str|MEM_Blob|MEM_Zero); return SQLITE_OK; } /* ** Cast the datatype of the value in pMem according to the affinity ** "aff". Casting is different from applying affinity in that a cast ** is forced. In other words, the value is converted into the desired ** affinity even if that results in loss of data. This routine is ** used (for example) to implement the SQL "cast()" operator. */ SQLITE_PRIVATE int sqlite3VdbeMemCast(Mem *pMem, u8 aff, u8 encoding){ if( pMem->flags & MEM_Null ) return SQLITE_OK; switch( aff ){ case SQLITE_AFF_BLOB: { /* Really a cast to BLOB */ if( (pMem->flags & MEM_Blob)==0 ){ sqlite3ValueApplyAffinity(pMem, SQLITE_AFF_TEXT, encoding); assert( pMem->flags & MEM_Str || pMem->db->mallocFailed ); if( pMem->flags & MEM_Str ) MemSetTypeFlag(pMem, MEM_Blob); }else{ pMem->flags &= ~(MEM_TypeMask&~MEM_Blob); } break; } case SQLITE_AFF_NUMERIC: { sqlite3VdbeMemNumerify(pMem); break; } case SQLITE_AFF_INTEGER: { sqlite3VdbeMemIntegerify(pMem); break; } case SQLITE_AFF_REAL: { sqlite3VdbeMemRealify(pMem); break; } default: { assert( aff==SQLITE_AFF_TEXT ); assert( MEM_Str==(MEM_Blob>>3) ); pMem->flags |= (pMem->flags&MEM_Blob)>>3; sqlite3ValueApplyAffinity(pMem, SQLITE_AFF_TEXT, encoding); assert( pMem->flags & MEM_Str || pMem->db->mallocFailed ); pMem->flags &= ~(MEM_Int|MEM_Real|MEM_IntReal|MEM_Blob|MEM_Zero); return sqlite3VdbeChangeEncoding(pMem, encoding); } } return SQLITE_OK; } /* ** Initialize bulk memory to be a consistent Mem object. ** ** The minimum amount of initialization feasible is performed. */ SQLITE_PRIVATE void sqlite3VdbeMemInit(Mem *pMem, sqlite3 *db, u16 flags){ assert( (flags & ~MEM_TypeMask)==0 ); pMem->flags = flags; pMem->db = db; pMem->szMalloc = 0; } /* ** Delete any previous value and set the value stored in *pMem to NULL. ** ** This routine calls the Mem.xDel destructor to dispose of values that ** require the destructor. But it preserves the Mem.zMalloc memory allocation. ** To free all resources, use sqlite3VdbeMemRelease(), which both calls this ** routine to invoke the destructor and deallocates Mem.zMalloc. ** ** Use this routine to reset the Mem prior to insert a new value. ** ** Use sqlite3VdbeMemRelease() to complete erase the Mem prior to abandoning it. */ SQLITE_PRIVATE void sqlite3VdbeMemSetNull(Mem *pMem){ if( VdbeMemDynamic(pMem) ){ vdbeMemClearExternAndSetNull(pMem); }else{ pMem->flags = MEM_Null; } } SQLITE_PRIVATE void sqlite3ValueSetNull(sqlite3_value *p){ sqlite3VdbeMemSetNull((Mem*)p); } /* ** Delete any previous value and set the value to be a BLOB of length ** n containing all zeros. */ SQLITE_PRIVATE void sqlite3VdbeMemSetZeroBlob(Mem *pMem, int n){ sqlite3VdbeMemRelease(pMem); pMem->flags = MEM_Blob|MEM_Zero; pMem->n = 0; if( n<0 ) n = 0; pMem->u.nZero = n; pMem->enc = SQLITE_UTF8; pMem->z = 0; } /* ** The pMem is known to contain content that needs to be destroyed prior ** to a value change. So invoke the destructor, then set the value to ** a 64-bit integer. */ static SQLITE_NOINLINE void vdbeReleaseAndSetInt64(Mem *pMem, i64 val){ sqlite3VdbeMemSetNull(pMem); pMem->u.i = val; pMem->flags = MEM_Int; } /* ** Delete any previous value and set the value stored in *pMem to val, ** manifest type INTEGER. */ SQLITE_PRIVATE void sqlite3VdbeMemSetInt64(Mem *pMem, i64 val){ if( VdbeMemDynamic(pMem) ){ vdbeReleaseAndSetInt64(pMem, val); }else{ pMem->u.i = val; pMem->flags = MEM_Int; } } /* A no-op destructor */ SQLITE_PRIVATE void sqlite3NoopDestructor(void *p){ UNUSED_PARAMETER(p); } /* ** Set the value stored in *pMem should already be a NULL. ** Also store a pointer to go with it. */ SQLITE_PRIVATE void sqlite3VdbeMemSetPointer( Mem *pMem, void *pPtr, const char *zPType, void (*xDestructor)(void*) ){ assert( pMem->flags==MEM_Null ); pMem->u.zPType = zPType ? zPType : ""; pMem->z = pPtr; pMem->flags = MEM_Null|MEM_Dyn|MEM_Subtype|MEM_Term; pMem->eSubtype = 'p'; pMem->xDel = xDestructor ? xDestructor : sqlite3NoopDestructor; } #ifndef SQLITE_OMIT_FLOATING_POINT /* ** Delete any previous value and set the value stored in *pMem to val, ** manifest type REAL. */ SQLITE_PRIVATE void sqlite3VdbeMemSetDouble(Mem *pMem, double val){ sqlite3VdbeMemSetNull(pMem); if( !sqlite3IsNaN(val) ){ pMem->u.r = val; pMem->flags = MEM_Real; } } #endif #ifdef SQLITE_DEBUG /* ** Return true if the Mem holds a RowSet object. This routine is intended ** for use inside of assert() statements. */ SQLITE_PRIVATE int sqlite3VdbeMemIsRowSet(const Mem *pMem){ return (pMem->flags&(MEM_Blob|MEM_Dyn))==(MEM_Blob|MEM_Dyn) && pMem->xDel==sqlite3RowSetDelete; } #endif /* ** Delete any previous value and set the value of pMem to be an ** empty boolean index. ** ** Return SQLITE_OK on success and SQLITE_NOMEM if a memory allocation ** error occurs. */ SQLITE_PRIVATE int sqlite3VdbeMemSetRowSet(Mem *pMem){ sqlite3 *db = pMem->db; RowSet *p; assert( db!=0 ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); sqlite3VdbeMemRelease(pMem); p = sqlite3RowSetInit(db); if( p==0 ) return SQLITE_NOMEM; pMem->z = (char*)p; pMem->flags = MEM_Blob|MEM_Dyn; pMem->xDel = sqlite3RowSetDelete; return SQLITE_OK; } /* ** Return true if the Mem object contains a TEXT or BLOB that is ** too large - whose size exceeds SQLITE_MAX_LENGTH. */ SQLITE_PRIVATE int sqlite3VdbeMemTooBig(Mem *p){ assert( p->db!=0 ); if( p->flags & (MEM_Str|MEM_Blob) ){ int n = p->n; if( p->flags & MEM_Zero ){ n += p->u.nZero; } return n>p->db->aLimit[SQLITE_LIMIT_LENGTH]; } return 0; } #ifdef SQLITE_DEBUG /* ** This routine prepares a memory cell for modification by breaking ** its link to a shallow copy and by marking any current shallow ** copies of this cell as invalid. ** ** This is used for testing and debugging only - to help ensure that shallow ** copies (created by OP_SCopy) are not misused. */ SQLITE_PRIVATE void sqlite3VdbeMemAboutToChange(Vdbe *pVdbe, Mem *pMem){ int i; Mem *pX; for(i=1, pX=pVdbe->aMem+1; inMem; i++, pX++){ if( pX->pScopyFrom==pMem ){ u16 mFlags; if( pVdbe->db->flags & SQLITE_VdbeTrace ){ sqlite3DebugPrintf("Invalidate R[%d] due to change in R[%d]\n", (int)(pX - pVdbe->aMem), (int)(pMem - pVdbe->aMem)); } /* If pX is marked as a shallow copy of pMem, then try to verify that ** no significant changes have been made to pX since the OP_SCopy. ** A significant change would indicated a missed call to this ** function for pX. Minor changes, such as adding or removing a ** dual type, are allowed, as long as the underlying value is the ** same. */ mFlags = pMem->flags & pX->flags & pX->mScopyFlags; assert( (mFlags&(MEM_Int|MEM_IntReal))==0 || pMem->u.i==pX->u.i ); /* pMem is the register that is changing. But also mark pX as ** undefined so that we can quickly detect the shallow-copy error */ pX->flags = MEM_Undefined; pX->pScopyFrom = 0; } } pMem->pScopyFrom = 0; } #endif /* SQLITE_DEBUG */ /* ** Make an shallow copy of pFrom into pTo. Prior contents of ** pTo are freed. The pFrom->z field is not duplicated. If ** pFrom->z is used, then pTo->z points to the same thing as pFrom->z ** and flags gets srcType (either MEM_Ephem or MEM_Static). */ static SQLITE_NOINLINE void vdbeClrCopy(Mem *pTo, const Mem *pFrom, int eType){ vdbeMemClearExternAndSetNull(pTo); assert( !VdbeMemDynamic(pTo) ); sqlite3VdbeMemShallowCopy(pTo, pFrom, eType); } SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType){ assert( !sqlite3VdbeMemIsRowSet(pFrom) ); assert( pTo->db==pFrom->db ); if( VdbeMemDynamic(pTo) ){ vdbeClrCopy(pTo,pFrom,srcType); return; } memcpy(pTo, pFrom, MEMCELLSIZE); if( (pFrom->flags&MEM_Static)==0 ){ pTo->flags &= ~(MEM_Dyn|MEM_Static|MEM_Ephem); assert( srcType==MEM_Ephem || srcType==MEM_Static ); pTo->flags |= srcType; } } /* ** Make a full copy of pFrom into pTo. Prior contents of pTo are ** freed before the copy is made. */ SQLITE_PRIVATE int sqlite3VdbeMemCopy(Mem *pTo, const Mem *pFrom){ int rc = SQLITE_OK; assert( !sqlite3VdbeMemIsRowSet(pFrom) ); if( VdbeMemDynamic(pTo) ) vdbeMemClearExternAndSetNull(pTo); memcpy(pTo, pFrom, MEMCELLSIZE); pTo->flags &= ~MEM_Dyn; if( pTo->flags&(MEM_Str|MEM_Blob) ){ if( 0==(pFrom->flags&MEM_Static) ){ pTo->flags |= MEM_Ephem; rc = sqlite3VdbeMemMakeWriteable(pTo); } } return rc; } /* ** Transfer the contents of pFrom to pTo. Any existing value in pTo is ** freed. If pFrom contains ephemeral data, a copy is made. ** ** pFrom contains an SQL NULL when this routine returns. */ SQLITE_PRIVATE void sqlite3VdbeMemMove(Mem *pTo, Mem *pFrom){ assert( pFrom->db==0 || sqlite3_mutex_held(pFrom->db->mutex) ); assert( pTo->db==0 || sqlite3_mutex_held(pTo->db->mutex) ); assert( pFrom->db==0 || pTo->db==0 || pFrom->db==pTo->db ); sqlite3VdbeMemRelease(pTo); memcpy(pTo, pFrom, sizeof(Mem)); pFrom->flags = MEM_Null; pFrom->szMalloc = 0; } /* ** Change the value of a Mem to be a string or a BLOB. ** ** The memory management strategy depends on the value of the xDel ** parameter. If the value passed is SQLITE_TRANSIENT, then the ** string is copied into a (possibly existing) buffer managed by the ** Mem structure. Otherwise, any existing buffer is freed and the ** pointer copied. ** ** If the string is too large (if it exceeds the SQLITE_LIMIT_LENGTH ** size limit) then no memory allocation occurs. If the string can be ** stored without allocating memory, then it is. If a memory allocation ** is required to store the string, then value of pMem is unchanged. In ** either case, SQLITE_TOOBIG is returned. */ SQLITE_PRIVATE int sqlite3VdbeMemSetStr( Mem *pMem, /* Memory cell to set to string value */ const char *z, /* String pointer */ int n, /* Bytes in string, or negative */ u8 enc, /* Encoding of z. 0 for BLOBs */ void (*xDel)(void*) /* Destructor function */ ){ int nByte = n; /* New value for pMem->n */ int iLimit; /* Maximum allowed string or blob size */ u16 flags = 0; /* New value for pMem->flags */ assert( pMem->db==0 || sqlite3_mutex_held(pMem->db->mutex) ); assert( !sqlite3VdbeMemIsRowSet(pMem) ); /* If z is a NULL pointer, set pMem to contain an SQL NULL. */ if( !z ){ sqlite3VdbeMemSetNull(pMem); return SQLITE_OK; } if( pMem->db ){ iLimit = pMem->db->aLimit[SQLITE_LIMIT_LENGTH]; }else{ iLimit = SQLITE_MAX_LENGTH; } flags = (enc==0?MEM_Blob:MEM_Str); if( nByte<0 ){ assert( enc!=0 ); if( enc==SQLITE_UTF8 ){ nByte = 0x7fffffff & (int)strlen(z); }else{ for(nByte=0; nByte<=iLimit && (z[nByte] | z[nByte+1]); nByte+=2){} } flags |= MEM_Term; } /* The following block sets the new values of Mem.z and Mem.xDel. It ** also sets a flag in local variable "flags" to indicate the memory ** management (one of MEM_Dyn or MEM_Static). */ if( xDel==SQLITE_TRANSIENT ){ u32 nAlloc = nByte; if( flags&MEM_Term ){ nAlloc += (enc==SQLITE_UTF8?1:2); } if( nByte>iLimit ){ return sqlite3ErrorToParser(pMem->db, SQLITE_TOOBIG); } testcase( nAlloc==0 ); testcase( nAlloc==31 ); testcase( nAlloc==32 ); if( sqlite3VdbeMemClearAndResize(pMem, (int)MAX(nAlloc,32)) ){ return SQLITE_NOMEM_BKPT; } memcpy(pMem->z, z, nAlloc); }else{ sqlite3VdbeMemRelease(pMem); pMem->z = (char *)z; if( xDel==SQLITE_DYNAMIC ){ pMem->zMalloc = pMem->z; pMem->szMalloc = sqlite3DbMallocSize(pMem->db, pMem->zMalloc); }else{ pMem->xDel = xDel; flags |= ((xDel==SQLITE_STATIC)?MEM_Static:MEM_Dyn); } } pMem->n = nByte; pMem->flags = flags; if( enc ){ pMem->enc = enc; #ifdef SQLITE_ENABLE_SESSION }else if( pMem->db==0 ){ pMem->enc = SQLITE_UTF8; #endif }else{ assert( pMem->db!=0 ); pMem->enc = ENC(pMem->db); } #ifndef SQLITE_OMIT_UTF16 if( enc>SQLITE_UTF8 && sqlite3VdbeMemHandleBom(pMem) ){ return SQLITE_NOMEM_BKPT; } #endif if( nByte>iLimit ){ return SQLITE_TOOBIG; } return SQLITE_OK; } /* ** Move data out of a btree key or data field and into a Mem structure. ** The data is payload from the entry that pCur is currently pointing ** to. offset and amt determine what portion of the data or key to retrieve. ** The result is written into the pMem element. ** ** The pMem object must have been initialized. This routine will use ** pMem->zMalloc to hold the content from the btree, if possible. New ** pMem->zMalloc space will be allocated if necessary. The calling routine ** is responsible for making sure that the pMem object is eventually ** destroyed. ** ** If this routine fails for any reason (malloc returns NULL or unable ** to read from the disk) then the pMem is left in an inconsistent state. */ SQLITE_PRIVATE int sqlite3VdbeMemFromBtree( BtCursor *pCur, /* Cursor pointing at record to retrieve. */ u32 offset, /* Offset from the start of data to return bytes from. */ u32 amt, /* Number of bytes to return. */ Mem *pMem /* OUT: Return data in this Mem structure. */ ){ int rc; pMem->flags = MEM_Null; if( sqlite3BtreeMaxRecordSize(pCur)z); if( rc==SQLITE_OK ){ pMem->z[amt] = 0; /* Overrun area used when reading malformed records */ pMem->flags = MEM_Blob; pMem->n = (int)amt; }else{ sqlite3VdbeMemRelease(pMem); } } return rc; } SQLITE_PRIVATE int sqlite3VdbeMemFromBtreeZeroOffset( BtCursor *pCur, /* Cursor pointing at record to retrieve. */ u32 amt, /* Number of bytes to return. */ Mem *pMem /* OUT: Return data in this Mem structure. */ ){ u32 available = 0; /* Number of bytes available on the local btree page */ int rc = SQLITE_OK; /* Return code */ assert( sqlite3BtreeCursorIsValid(pCur) ); assert( !VdbeMemDynamic(pMem) ); /* Note: the calls to BtreeKeyFetch() and DataFetch() below assert() ** that both the BtShared and database handle mutexes are held. */ assert( !sqlite3VdbeMemIsRowSet(pMem) ); pMem->z = (char *)sqlite3BtreePayloadFetch(pCur, &available); assert( pMem->z!=0 ); if( amt<=available ){ pMem->flags = MEM_Blob|MEM_Ephem; pMem->n = (int)amt; }else{ rc = sqlite3VdbeMemFromBtree(pCur, 0, amt, pMem); } return rc; } /* ** The pVal argument is known to be a value other than NULL. ** Convert it into a string with encoding enc and return a pointer ** to a zero-terminated version of that string. */ static SQLITE_NOINLINE const void *valueToText(sqlite3_value* pVal, u8 enc){ assert( pVal!=0 ); assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); assert( (enc&3)==(enc&~SQLITE_UTF16_ALIGNED) ); assert( !sqlite3VdbeMemIsRowSet(pVal) ); assert( (pVal->flags & (MEM_Null))==0 ); if( pVal->flags & (MEM_Blob|MEM_Str) ){ if( ExpandBlob(pVal) ) return 0; pVal->flags |= MEM_Str; if( pVal->enc != (enc & ~SQLITE_UTF16_ALIGNED) ){ sqlite3VdbeChangeEncoding(pVal, enc & ~SQLITE_UTF16_ALIGNED); } if( (enc & SQLITE_UTF16_ALIGNED)!=0 && 1==(1&SQLITE_PTR_TO_INT(pVal->z)) ){ assert( (pVal->flags & (MEM_Ephem|MEM_Static))!=0 ); if( sqlite3VdbeMemMakeWriteable(pVal)!=SQLITE_OK ){ return 0; } } sqlite3VdbeMemNulTerminate(pVal); /* IMP: R-31275-44060 */ }else{ sqlite3VdbeMemStringify(pVal, enc, 0); assert( 0==(1&SQLITE_PTR_TO_INT(pVal->z)) ); } assert(pVal->enc==(enc & ~SQLITE_UTF16_ALIGNED) || pVal->db==0 || pVal->db->mallocFailed ); if( pVal->enc==(enc & ~SQLITE_UTF16_ALIGNED) ){ assert( sqlite3VdbeMemValidStrRep(pVal) ); return pVal->z; }else{ return 0; } } /* This function is only available internally, it is not part of the ** external API. It works in a similar way to sqlite3_value_text(), ** except the data returned is in the encoding specified by the second ** parameter, which must be one of SQLITE_UTF16BE, SQLITE_UTF16LE or ** SQLITE_UTF8. ** ** (2006-02-16:) The enc value can be or-ed with SQLITE_UTF16_ALIGNED. ** If that is the case, then the result must be aligned on an even byte ** boundary. */ SQLITE_PRIVATE const void *sqlite3ValueText(sqlite3_value* pVal, u8 enc){ if( !pVal ) return 0; assert( pVal->db==0 || sqlite3_mutex_held(pVal->db->mutex) ); assert( (enc&3)==(enc&~SQLITE_UTF16_ALIGNED) ); assert( !sqlite3VdbeMemIsRowSet(pVal) ); if( (pVal->flags&(MEM_Str|MEM_Term))==(MEM_Str|MEM_Term) && pVal->enc==enc ){ assert( sqlite3VdbeMemValidStrRep(pVal) ); return pVal->z; } if( pVal->flags&MEM_Null ){ return 0; } return valueToText(pVal, enc); } /* ** Create a new sqlite3_value object. */ SQLITE_PRIVATE sqlite3_value *sqlite3ValueNew(sqlite3 *db){ Mem *p = sqlite3DbMallocZero(db, sizeof(*p)); if( p ){ p->flags = MEM_Null; p->db = db; } return p; } /* ** Context object passed by sqlite3Stat4ProbeSetValue() through to ** valueNew(). See comments above valueNew() for details. */ struct ValueNewStat4Ctx { Parse *pParse; Index *pIdx; UnpackedRecord **ppRec; int iVal; }; /* ** Allocate and return a pointer to a new sqlite3_value object. If ** the second argument to this function is NULL, the object is allocated ** by calling sqlite3ValueNew(). ** ** Otherwise, if the second argument is non-zero, then this function is ** being called indirectly by sqlite3Stat4ProbeSetValue(). If it has not ** already been allocated, allocate the UnpackedRecord structure that ** that function will return to its caller here. Then return a pointer to ** an sqlite3_value within the UnpackedRecord.a[] array. */ static sqlite3_value *valueNew(sqlite3 *db, struct ValueNewStat4Ctx *p){ #ifdef SQLITE_ENABLE_STAT4 if( p ){ UnpackedRecord *pRec = p->ppRec[0]; if( pRec==0 ){ Index *pIdx = p->pIdx; /* Index being probed */ int nByte; /* Bytes of space to allocate */ int i; /* Counter variable */ int nCol = pIdx->nColumn; /* Number of index columns including rowid */ nByte = sizeof(Mem) * nCol + ROUND8(sizeof(UnpackedRecord)); pRec = (UnpackedRecord*)sqlite3DbMallocZero(db, nByte); if( pRec ){ pRec->pKeyInfo = sqlite3KeyInfoOfIndex(p->pParse, pIdx); if( pRec->pKeyInfo ){ assert( pRec->pKeyInfo->nAllField==nCol ); assert( pRec->pKeyInfo->enc==ENC(db) ); pRec->aMem = (Mem *)((u8*)pRec + ROUND8(sizeof(UnpackedRecord))); for(i=0; iaMem[i].flags = MEM_Null; pRec->aMem[i].db = db; } }else{ sqlite3DbFreeNN(db, pRec); pRec = 0; } } if( pRec==0 ) return 0; p->ppRec[0] = pRec; } pRec->nField = p->iVal+1; return &pRec->aMem[p->iVal]; } #else UNUSED_PARAMETER(p); #endif /* defined(SQLITE_ENABLE_STAT4) */ return sqlite3ValueNew(db); } /* ** The expression object indicated by the second argument is guaranteed ** to be a scalar SQL function. If ** ** * all function arguments are SQL literals, ** * one of the SQLITE_FUNC_CONSTANT or _SLOCHNG function flags is set, and ** * the SQLITE_FUNC_NEEDCOLL function flag is not set, ** ** then this routine attempts to invoke the SQL function. Assuming no ** error occurs, output parameter (*ppVal) is set to point to a value ** object containing the result before returning SQLITE_OK. ** ** Affinity aff is applied to the result of the function before returning. ** If the result is a text value, the sqlite3_value object uses encoding ** enc. ** ** If the conditions above are not met, this function returns SQLITE_OK ** and sets (*ppVal) to NULL. Or, if an error occurs, (*ppVal) is set to ** NULL and an SQLite error code returned. */ #ifdef SQLITE_ENABLE_STAT4 static int valueFromFunction( sqlite3 *db, /* The database connection */ Expr *p, /* The expression to evaluate */ u8 enc, /* Encoding to use */ u8 aff, /* Affinity to use */ sqlite3_value **ppVal, /* Write the new value here */ struct ValueNewStat4Ctx *pCtx /* Second argument for valueNew() */ ){ sqlite3_context ctx; /* Context object for function invocation */ sqlite3_value **apVal = 0; /* Function arguments */ int nVal = 0; /* Size of apVal[] array */ FuncDef *pFunc = 0; /* Function definition */ sqlite3_value *pVal = 0; /* New value */ int rc = SQLITE_OK; /* Return code */ ExprList *pList = 0; /* Function arguments */ int i; /* Iterator variable */ assert( pCtx!=0 ); assert( (p->flags & EP_TokenOnly)==0 ); pList = p->x.pList; if( pList ) nVal = pList->nExpr; pFunc = sqlite3FindFunction(db, p->u.zToken, nVal, enc, 0); assert( pFunc ); if( (pFunc->funcFlags & (SQLITE_FUNC_CONSTANT|SQLITE_FUNC_SLOCHNG))==0 || (pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL) ){ return SQLITE_OK; } if( pList ){ apVal = (sqlite3_value**)sqlite3DbMallocZero(db, sizeof(apVal[0]) * nVal); if( apVal==0 ){ rc = SQLITE_NOMEM_BKPT; goto value_from_function_out; } for(i=0; ia[i].pExpr, enc, aff, &apVal[i]); if( apVal[i]==0 || rc!=SQLITE_OK ) goto value_from_function_out; } } pVal = valueNew(db, pCtx); if( pVal==0 ){ rc = SQLITE_NOMEM_BKPT; goto value_from_function_out; } assert( pCtx->pParse->rc==SQLITE_OK ); memset(&ctx, 0, sizeof(ctx)); ctx.pOut = pVal; ctx.pFunc = pFunc; pFunc->xSFunc(&ctx, nVal, apVal); if( ctx.isError ){ rc = ctx.isError; sqlite3ErrorMsg(pCtx->pParse, "%s", sqlite3_value_text(pVal)); }else{ sqlite3ValueApplyAffinity(pVal, aff, SQLITE_UTF8); assert( rc==SQLITE_OK ); rc = sqlite3VdbeChangeEncoding(pVal, enc); if( rc==SQLITE_OK && sqlite3VdbeMemTooBig(pVal) ){ rc = SQLITE_TOOBIG; pCtx->pParse->nErr++; } } pCtx->pParse->rc = rc; value_from_function_out: if( rc!=SQLITE_OK ){ pVal = 0; } if( apVal ){ for(i=0; iop)==TK_UPLUS || op==TK_SPAN ) pExpr = pExpr->pLeft; #if defined(SQLITE_ENABLE_STAT4) if( op==TK_REGISTER ) op = pExpr->op2; #else if( NEVER(op==TK_REGISTER) ) op = pExpr->op2; #endif /* Compressed expressions only appear when parsing the DEFAULT clause ** on a table column definition, and hence only when pCtx==0. This ** check ensures that an EP_TokenOnly expression is never passed down ** into valueFromFunction(). */ assert( (pExpr->flags & EP_TokenOnly)==0 || pCtx==0 ); if( op==TK_CAST ){ u8 aff = sqlite3AffinityType(pExpr->u.zToken,0); rc = valueFromExpr(db, pExpr->pLeft, enc, aff, ppVal, pCtx); testcase( rc!=SQLITE_OK ); if( *ppVal ){ sqlite3VdbeMemCast(*ppVal, aff, SQLITE_UTF8); sqlite3ValueApplyAffinity(*ppVal, affinity, SQLITE_UTF8); } return rc; } /* Handle negative integers in a single step. This is needed in the ** case when the value is -9223372036854775808. */ if( op==TK_UMINUS && (pExpr->pLeft->op==TK_INTEGER || pExpr->pLeft->op==TK_FLOAT) ){ pExpr = pExpr->pLeft; op = pExpr->op; negInt = -1; zNeg = "-"; } if( op==TK_STRING || op==TK_FLOAT || op==TK_INTEGER ){ pVal = valueNew(db, pCtx); if( pVal==0 ) goto no_mem; if( ExprHasProperty(pExpr, EP_IntValue) ){ sqlite3VdbeMemSetInt64(pVal, (i64)pExpr->u.iValue*negInt); }else{ zVal = sqlite3MPrintf(db, "%s%s", zNeg, pExpr->u.zToken); if( zVal==0 ) goto no_mem; sqlite3ValueSetStr(pVal, -1, zVal, SQLITE_UTF8, SQLITE_DYNAMIC); } if( (op==TK_INTEGER || op==TK_FLOAT ) && affinity==SQLITE_AFF_BLOB ){ sqlite3ValueApplyAffinity(pVal, SQLITE_AFF_NUMERIC, SQLITE_UTF8); }else{ sqlite3ValueApplyAffinity(pVal, affinity, SQLITE_UTF8); } assert( (pVal->flags & MEM_IntReal)==0 ); if( pVal->flags & (MEM_Int|MEM_IntReal|MEM_Real) ){ testcase( pVal->flags & MEM_Int ); testcase( pVal->flags & MEM_Real ); pVal->flags &= ~MEM_Str; } if( enc!=SQLITE_UTF8 ){ rc = sqlite3VdbeChangeEncoding(pVal, enc); } }else if( op==TK_UMINUS ) { /* This branch happens for multiple negative signs. Ex: -(-5) */ if( SQLITE_OK==valueFromExpr(db,pExpr->pLeft,enc,affinity,&pVal,pCtx) && pVal!=0 ){ sqlite3VdbeMemNumerify(pVal); if( pVal->flags & MEM_Real ){ pVal->u.r = -pVal->u.r; }else if( pVal->u.i==SMALLEST_INT64 ){ #ifndef SQLITE_OMIT_FLOATING_POINT pVal->u.r = -(double)SMALLEST_INT64; #else pVal->u.r = LARGEST_INT64; #endif MemSetTypeFlag(pVal, MEM_Real); }else{ pVal->u.i = -pVal->u.i; } sqlite3ValueApplyAffinity(pVal, affinity, enc); } }else if( op==TK_NULL ){ pVal = valueNew(db, pCtx); if( pVal==0 ) goto no_mem; sqlite3VdbeMemSetNull(pVal); } #ifndef SQLITE_OMIT_BLOB_LITERAL else if( op==TK_BLOB ){ int nVal; assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); assert( pExpr->u.zToken[1]=='\'' ); pVal = valueNew(db, pCtx); if( !pVal ) goto no_mem; zVal = &pExpr->u.zToken[2]; nVal = sqlite3Strlen30(zVal)-1; assert( zVal[nVal]=='\'' ); sqlite3VdbeMemSetStr(pVal, sqlite3HexToBlob(db, zVal, nVal), nVal/2, 0, SQLITE_DYNAMIC); } #endif #ifdef SQLITE_ENABLE_STAT4 else if( op==TK_FUNCTION && pCtx!=0 ){ rc = valueFromFunction(db, pExpr, enc, affinity, &pVal, pCtx); } #endif else if( op==TK_TRUEFALSE ){ pVal = valueNew(db, pCtx); if( pVal ){ pVal->flags = MEM_Int; pVal->u.i = pExpr->u.zToken[4]==0; } } *ppVal = pVal; return rc; no_mem: #ifdef SQLITE_ENABLE_STAT4 if( pCtx==0 || pCtx->pParse->nErr==0 ) #endif sqlite3OomFault(db); sqlite3DbFree(db, zVal); assert( *ppVal==0 ); #ifdef SQLITE_ENABLE_STAT4 if( pCtx==0 ) sqlite3ValueFree(pVal); #else assert( pCtx==0 ); sqlite3ValueFree(pVal); #endif return SQLITE_NOMEM_BKPT; } /* ** Create a new sqlite3_value object, containing the value of pExpr. ** ** This only works for very simple expressions that consist of one constant ** token (i.e. "5", "5.1", "'a string'"). If the expression can ** be converted directly into a value, then the value is allocated and ** a pointer written to *ppVal. The caller is responsible for deallocating ** the value by passing it to sqlite3ValueFree() later on. If the expression ** cannot be converted to a value, then *ppVal is set to NULL. */ SQLITE_PRIVATE int sqlite3ValueFromExpr( sqlite3 *db, /* The database connection */ Expr *pExpr, /* The expression to evaluate */ u8 enc, /* Encoding to use */ u8 affinity, /* Affinity to use */ sqlite3_value **ppVal /* Write the new value here */ ){ return pExpr ? valueFromExpr(db, pExpr, enc, affinity, ppVal, 0) : 0; } #ifdef SQLITE_ENABLE_STAT4 /* ** Attempt to extract a value from pExpr and use it to construct *ppVal. ** ** If pAlloc is not NULL, then an UnpackedRecord object is created for ** pAlloc if one does not exist and the new value is added to the ** UnpackedRecord object. ** ** A value is extracted in the following cases: ** ** * (pExpr==0). In this case the value is assumed to be an SQL NULL, ** ** * The expression is a bound variable, and this is a reprepare, or ** ** * The expression is a literal value. ** ** On success, *ppVal is made to point to the extracted value. The caller ** is responsible for ensuring that the value is eventually freed. */ static int stat4ValueFromExpr( Parse *pParse, /* Parse context */ Expr *pExpr, /* The expression to extract a value from */ u8 affinity, /* Affinity to use */ struct ValueNewStat4Ctx *pAlloc,/* How to allocate space. Or NULL */ sqlite3_value **ppVal /* OUT: New value object (or NULL) */ ){ int rc = SQLITE_OK; sqlite3_value *pVal = 0; sqlite3 *db = pParse->db; /* Skip over any TK_COLLATE nodes */ pExpr = sqlite3ExprSkipCollate(pExpr); assert( pExpr==0 || pExpr->op!=TK_REGISTER || pExpr->op2!=TK_VARIABLE ); if( !pExpr ){ pVal = valueNew(db, pAlloc); if( pVal ){ sqlite3VdbeMemSetNull((Mem*)pVal); } }else if( pExpr->op==TK_VARIABLE && (db->flags & SQLITE_EnableQPSG)==0 ){ Vdbe *v; int iBindVar = pExpr->iColumn; sqlite3VdbeSetVarmask(pParse->pVdbe, iBindVar); if( (v = pParse->pReprepare)!=0 ){ pVal = valueNew(db, pAlloc); if( pVal ){ rc = sqlite3VdbeMemCopy((Mem*)pVal, &v->aVar[iBindVar-1]); sqlite3ValueApplyAffinity(pVal, affinity, ENC(db)); pVal->db = pParse->db; } } }else{ rc = valueFromExpr(db, pExpr, ENC(db), affinity, &pVal, pAlloc); } assert( pVal==0 || pVal->db==db ); *ppVal = pVal; return rc; } /* ** This function is used to allocate and populate UnpackedRecord ** structures intended to be compared against sample index keys stored ** in the sqlite_stat4 table. ** ** A single call to this function populates zero or more fields of the ** record starting with field iVal (fields are numbered from left to ** right starting with 0). A single field is populated if: ** ** * (pExpr==0). In this case the value is assumed to be an SQL NULL, ** ** * The expression is a bound variable, and this is a reprepare, or ** ** * The sqlite3ValueFromExpr() function is able to extract a value ** from the expression (i.e. the expression is a literal value). ** ** Or, if pExpr is a TK_VECTOR, one field is populated for each of the ** vector components that match either of the two latter criteria listed ** above. ** ** Before any value is appended to the record, the affinity of the ** corresponding column within index pIdx is applied to it. Before ** this function returns, output parameter *pnExtract is set to the ** number of values appended to the record. ** ** When this function is called, *ppRec must either point to an object ** allocated by an earlier call to this function, or must be NULL. If it ** is NULL and a value can be successfully extracted, a new UnpackedRecord ** is allocated (and *ppRec set to point to it) before returning. ** ** Unless an error is encountered, SQLITE_OK is returned. It is not an ** error if a value cannot be extracted from pExpr. If an error does ** occur, an SQLite error code is returned. */ SQLITE_PRIVATE int sqlite3Stat4ProbeSetValue( Parse *pParse, /* Parse context */ Index *pIdx, /* Index being probed */ UnpackedRecord **ppRec, /* IN/OUT: Probe record */ Expr *pExpr, /* The expression to extract a value from */ int nElem, /* Maximum number of values to append */ int iVal, /* Array element to populate */ int *pnExtract /* OUT: Values appended to the record */ ){ int rc = SQLITE_OK; int nExtract = 0; if( pExpr==0 || pExpr->op!=TK_SELECT ){ int i; struct ValueNewStat4Ctx alloc; alloc.pParse = pParse; alloc.pIdx = pIdx; alloc.ppRec = ppRec; for(i=0; idb, pIdx, iVal+i); alloc.iVal = iVal+i; rc = stat4ValueFromExpr(pParse, pElem, aff, &alloc, &pVal); if( !pVal ) break; nExtract++; } } *pnExtract = nExtract; return rc; } /* ** Attempt to extract a value from expression pExpr using the methods ** as described for sqlite3Stat4ProbeSetValue() above. ** ** If successful, set *ppVal to point to a new value object and return ** SQLITE_OK. If no value can be extracted, but no other error occurs ** (e.g. OOM), return SQLITE_OK and set *ppVal to NULL. Or, if an error ** does occur, return an SQLite error code. The final value of *ppVal ** is undefined in this case. */ SQLITE_PRIVATE int sqlite3Stat4ValueFromExpr( Parse *pParse, /* Parse context */ Expr *pExpr, /* The expression to extract a value from */ u8 affinity, /* Affinity to use */ sqlite3_value **ppVal /* OUT: New value object (or NULL) */ ){ return stat4ValueFromExpr(pParse, pExpr, affinity, 0, ppVal); } /* ** Extract the iCol-th column from the nRec-byte record in pRec. Write ** the column value into *ppVal. If *ppVal is initially NULL then a new ** sqlite3_value object is allocated. ** ** If *ppVal is initially NULL then the caller is responsible for ** ensuring that the value written into *ppVal is eventually freed. */ SQLITE_PRIVATE int sqlite3Stat4Column( sqlite3 *db, /* Database handle */ const void *pRec, /* Pointer to buffer containing record */ int nRec, /* Size of buffer pRec in bytes */ int iCol, /* Column to extract */ sqlite3_value **ppVal /* OUT: Extracted value */ ){ u32 t = 0; /* a column type code */ int nHdr; /* Size of the header in the record */ int iHdr; /* Next unread header byte */ int iField; /* Next unread data byte */ int szField = 0; /* Size of the current data field */ int i; /* Column index */ u8 *a = (u8*)pRec; /* Typecast byte array */ Mem *pMem = *ppVal; /* Write result into this Mem object */ assert( iCol>0 ); iHdr = getVarint32(a, nHdr); if( nHdr>nRec || iHdr>=nHdr ) return SQLITE_CORRUPT_BKPT; iField = nHdr; for(i=0; i<=iCol; i++){ iHdr += getVarint32(&a[iHdr], t); testcase( iHdr==nHdr ); testcase( iHdr==nHdr+1 ); if( iHdr>nHdr ) return SQLITE_CORRUPT_BKPT; szField = sqlite3VdbeSerialTypeLen(t); iField += szField; } testcase( iField==nRec ); testcase( iField==nRec+1 ); if( iField>nRec ) return SQLITE_CORRUPT_BKPT; if( pMem==0 ){ pMem = *ppVal = sqlite3ValueNew(db); if( pMem==0 ) return SQLITE_NOMEM_BKPT; } sqlite3VdbeSerialGet(&a[iField-szField], t, pMem); pMem->enc = ENC(db); return SQLITE_OK; } /* ** Unless it is NULL, the argument must be an UnpackedRecord object returned ** by an earlier call to sqlite3Stat4ProbeSetValue(). This call deletes ** the object. */ SQLITE_PRIVATE void sqlite3Stat4ProbeFree(UnpackedRecord *pRec){ if( pRec ){ int i; int nCol = pRec->pKeyInfo->nAllField; Mem *aMem = pRec->aMem; sqlite3 *db = aMem[0].db; for(i=0; ipKeyInfo); sqlite3DbFreeNN(db, pRec); } } #endif /* ifdef SQLITE_ENABLE_STAT4 */ /* ** Change the string value of an sqlite3_value object */ SQLITE_PRIVATE void sqlite3ValueSetStr( sqlite3_value *v, /* Value to be set */ int n, /* Length of string z */ const void *z, /* Text of the new string */ u8 enc, /* Encoding to use */ void (*xDel)(void*) /* Destructor for the string */ ){ if( v ) sqlite3VdbeMemSetStr((Mem *)v, z, n, enc, xDel); } /* ** Free an sqlite3_value object */ SQLITE_PRIVATE void sqlite3ValueFree(sqlite3_value *v){ if( !v ) return; sqlite3VdbeMemRelease((Mem *)v); sqlite3DbFreeNN(((Mem*)v)->db, v); } /* ** The sqlite3ValueBytes() routine returns the number of bytes in the ** sqlite3_value object assuming that it uses the encoding "enc". ** The valueBytes() routine is a helper function. */ static SQLITE_NOINLINE int valueBytes(sqlite3_value *pVal, u8 enc){ return valueToText(pVal, enc)!=0 ? pVal->n : 0; } SQLITE_PRIVATE int sqlite3ValueBytes(sqlite3_value *pVal, u8 enc){ Mem *p = (Mem*)pVal; assert( (p->flags & MEM_Null)==0 || (p->flags & (MEM_Str|MEM_Blob))==0 ); if( (p->flags & MEM_Str)!=0 && pVal->enc==enc ){ return p->n; } if( (p->flags & MEM_Blob)!=0 ){ if( p->flags & MEM_Zero ){ return p->n + p->u.nZero; }else{ return p->n; } } if( p->flags & MEM_Null ) return 0; return valueBytes(pVal, enc); } /************** End of vdbemem.c *********************************************/ /************** Begin file vdbeaux.c *****************************************/ /* ** 2003 September 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used for creating, destroying, and populating ** a VDBE (or an "sqlite3_stmt" as it is known to the outside world.) */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ /* Forward references */ static void freeEphemeralFunction(sqlite3 *db, FuncDef *pDef); static void vdbeFreeOpArray(sqlite3 *, Op *, int); /* ** Create a new virtual database engine. */ SQLITE_PRIVATE Vdbe *sqlite3VdbeCreate(Parse *pParse){ sqlite3 *db = pParse->db; Vdbe *p; p = sqlite3DbMallocRawNN(db, sizeof(Vdbe) ); if( p==0 ) return 0; memset(&p->aOp, 0, sizeof(Vdbe)-offsetof(Vdbe,aOp)); p->db = db; if( db->pVdbe ){ db->pVdbe->pPrev = p; } p->pNext = db->pVdbe; p->pPrev = 0; db->pVdbe = p; p->magic = VDBE_MAGIC_INIT; p->pParse = pParse; pParse->pVdbe = p; assert( pParse->aLabel==0 ); assert( pParse->nLabel==0 ); assert( p->nOpAlloc==0 ); assert( pParse->szOpAlloc==0 ); sqlite3VdbeAddOp2(p, OP_Init, 0, 1); return p; } /* ** Return the Parse object that owns a Vdbe object. */ SQLITE_PRIVATE Parse *sqlite3VdbeParser(Vdbe *p){ return p->pParse; } /* ** Change the error string stored in Vdbe.zErrMsg */ SQLITE_PRIVATE void sqlite3VdbeError(Vdbe *p, const char *zFormat, ...){ va_list ap; sqlite3DbFree(p->db, p->zErrMsg); va_start(ap, zFormat); p->zErrMsg = sqlite3VMPrintf(p->db, zFormat, ap); va_end(ap); } /* ** Remember the SQL string for a prepared statement. */ SQLITE_PRIVATE void sqlite3VdbeSetSql(Vdbe *p, const char *z, int n, u8 prepFlags){ if( p==0 ) return; p->prepFlags = prepFlags; if( (prepFlags & SQLITE_PREPARE_SAVESQL)==0 ){ p->expmask = 0; } assert( p->zSql==0 ); p->zSql = sqlite3DbStrNDup(p->db, z, n); } #ifdef SQLITE_ENABLE_NORMALIZE /* ** Add a new element to the Vdbe->pDblStr list. */ SQLITE_PRIVATE void sqlite3VdbeAddDblquoteStr(sqlite3 *db, Vdbe *p, const char *z){ if( p ){ int n = sqlite3Strlen30(z); DblquoteStr *pStr = sqlite3DbMallocRawNN(db, sizeof(*pStr)+n+1-sizeof(pStr->z)); if( pStr ){ pStr->pNextStr = p->pDblStr; p->pDblStr = pStr; memcpy(pStr->z, z, n+1); } } } #endif #ifdef SQLITE_ENABLE_NORMALIZE /* ** zId of length nId is a double-quoted identifier. Check to see if ** that identifier is really used as a string literal. */ SQLITE_PRIVATE int sqlite3VdbeUsesDoubleQuotedString( Vdbe *pVdbe, /* The prepared statement */ const char *zId /* The double-quoted identifier, already dequoted */ ){ DblquoteStr *pStr; assert( zId!=0 ); if( pVdbe->pDblStr==0 ) return 0; for(pStr=pVdbe->pDblStr; pStr; pStr=pStr->pNextStr){ if( strcmp(zId, pStr->z)==0 ) return 1; } return 0; } #endif /* ** Swap all content between two VDBE structures. */ SQLITE_PRIVATE void sqlite3VdbeSwap(Vdbe *pA, Vdbe *pB){ Vdbe tmp, *pTmp; char *zTmp; assert( pA->db==pB->db ); tmp = *pA; *pA = *pB; *pB = tmp; pTmp = pA->pNext; pA->pNext = pB->pNext; pB->pNext = pTmp; pTmp = pA->pPrev; pA->pPrev = pB->pPrev; pB->pPrev = pTmp; zTmp = pA->zSql; pA->zSql = pB->zSql; pB->zSql = zTmp; #ifdef SQLITE_ENABLE_NORMALIZE zTmp = pA->zNormSql; pA->zNormSql = pB->zNormSql; pB->zNormSql = zTmp; #endif pB->expmask = pA->expmask; pB->prepFlags = pA->prepFlags; memcpy(pB->aCounter, pA->aCounter, sizeof(pB->aCounter)); pB->aCounter[SQLITE_STMTSTATUS_REPREPARE]++; } /* ** Resize the Vdbe.aOp array so that it is at least nOp elements larger ** than its current size. nOp is guaranteed to be less than or equal ** to 1024/sizeof(Op). ** ** If an out-of-memory error occurs while resizing the array, return ** SQLITE_NOMEM. In this case Vdbe.aOp and Vdbe.nOpAlloc remain ** unchanged (this is so that any opcodes already allocated can be ** correctly deallocated along with the rest of the Vdbe). */ static int growOpArray(Vdbe *v, int nOp){ VdbeOp *pNew; Parse *p = v->pParse; /* The SQLITE_TEST_REALLOC_STRESS compile-time option is designed to force ** more frequent reallocs and hence provide more opportunities for ** simulated OOM faults. SQLITE_TEST_REALLOC_STRESS is generally used ** during testing only. With SQLITE_TEST_REALLOC_STRESS grow the op array ** by the minimum* amount required until the size reaches 512. Normal ** operation (without SQLITE_TEST_REALLOC_STRESS) is to double the current ** size of the op array or add 1KB of space, whichever is smaller. */ #ifdef SQLITE_TEST_REALLOC_STRESS sqlite3_int64 nNew = (v->nOpAlloc>=512 ? 2*(sqlite3_int64)v->nOpAlloc : (sqlite3_int64)v->nOpAlloc+nOp); #else sqlite3_int64 nNew = (v->nOpAlloc ? 2*(sqlite3_int64)v->nOpAlloc : (sqlite3_int64)(1024/sizeof(Op))); UNUSED_PARAMETER(nOp); #endif /* Ensure that the size of a VDBE does not grow too large */ if( nNew > p->db->aLimit[SQLITE_LIMIT_VDBE_OP] ){ sqlite3OomFault(p->db); return SQLITE_NOMEM; } assert( nOp<=(1024/sizeof(Op)) ); assert( nNew>=(v->nOpAlloc+nOp) ); pNew = sqlite3DbRealloc(p->db, v->aOp, nNew*sizeof(Op)); if( pNew ){ p->szOpAlloc = sqlite3DbMallocSize(p->db, pNew); v->nOpAlloc = p->szOpAlloc/sizeof(Op); v->aOp = pNew; } return (pNew ? SQLITE_OK : SQLITE_NOMEM_BKPT); } #ifdef SQLITE_DEBUG /* This routine is just a convenient place to set a breakpoint that will ** fire after each opcode is inserted and displayed using ** "PRAGMA vdbe_addoptrace=on". Parameters "pc" (program counter) and ** pOp are available to make the breakpoint conditional. ** ** Other useful labels for breakpoints include: ** test_trace_breakpoint(pc,pOp) ** sqlite3CorruptError(lineno) ** sqlite3MisuseError(lineno) ** sqlite3CantopenError(lineno) */ static void test_addop_breakpoint(int pc, Op *pOp){ static int n = 0; n++; } #endif /* ** Add a new instruction to the list of instructions current in the ** VDBE. Return the address of the new instruction. ** ** Parameters: ** ** p Pointer to the VDBE ** ** op The opcode for this instruction ** ** p1, p2, p3 Operands ** ** Use the sqlite3VdbeResolveLabel() function to fix an address and ** the sqlite3VdbeChangeP4() function to change the value of the P4 ** operand. */ static SQLITE_NOINLINE int growOp3(Vdbe *p, int op, int p1, int p2, int p3){ assert( p->nOpAlloc<=p->nOp ); if( growOpArray(p, 1) ) return 1; assert( p->nOpAlloc>p->nOp ); return sqlite3VdbeAddOp3(p, op, p1, p2, p3); } SQLITE_PRIVATE int sqlite3VdbeAddOp3(Vdbe *p, int op, int p1, int p2, int p3){ int i; VdbeOp *pOp; i = p->nOp; assert( p->magic==VDBE_MAGIC_INIT ); assert( op>=0 && op<0xff ); if( p->nOpAlloc<=i ){ return growOp3(p, op, p1, p2, p3); } p->nOp++; pOp = &p->aOp[i]; pOp->opcode = (u8)op; pOp->p5 = 0; pOp->p1 = p1; pOp->p2 = p2; pOp->p3 = p3; pOp->p4.p = 0; pOp->p4type = P4_NOTUSED; #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS pOp->zComment = 0; #endif #ifdef SQLITE_DEBUG if( p->db->flags & SQLITE_VdbeAddopTrace ){ sqlite3VdbePrintOp(0, i, &p->aOp[i]); test_addop_breakpoint(i, &p->aOp[i]); } #endif #ifdef VDBE_PROFILE pOp->cycles = 0; pOp->cnt = 0; #endif #ifdef SQLITE_VDBE_COVERAGE pOp->iSrcLine = 0; #endif return i; } SQLITE_PRIVATE int sqlite3VdbeAddOp0(Vdbe *p, int op){ return sqlite3VdbeAddOp3(p, op, 0, 0, 0); } SQLITE_PRIVATE int sqlite3VdbeAddOp1(Vdbe *p, int op, int p1){ return sqlite3VdbeAddOp3(p, op, p1, 0, 0); } SQLITE_PRIVATE int sqlite3VdbeAddOp2(Vdbe *p, int op, int p1, int p2){ return sqlite3VdbeAddOp3(p, op, p1, p2, 0); } /* Generate code for an unconditional jump to instruction iDest */ SQLITE_PRIVATE int sqlite3VdbeGoto(Vdbe *p, int iDest){ return sqlite3VdbeAddOp3(p, OP_Goto, 0, iDest, 0); } /* Generate code to cause the string zStr to be loaded into ** register iDest */ SQLITE_PRIVATE int sqlite3VdbeLoadString(Vdbe *p, int iDest, const char *zStr){ return sqlite3VdbeAddOp4(p, OP_String8, 0, iDest, 0, zStr, 0); } /* ** Generate code that initializes multiple registers to string or integer ** constants. The registers begin with iDest and increase consecutively. ** One register is initialized for each characgter in zTypes[]. For each ** "s" character in zTypes[], the register is a string if the argument is ** not NULL, or OP_Null if the value is a null pointer. For each "i" character ** in zTypes[], the register is initialized to an integer. ** ** If the input string does not end with "X" then an OP_ResultRow instruction ** is generated for the values inserted. */ SQLITE_PRIVATE void sqlite3VdbeMultiLoad(Vdbe *p, int iDest, const char *zTypes, ...){ va_list ap; int i; char c; va_start(ap, zTypes); for(i=0; (c = zTypes[i])!=0; i++){ if( c=='s' ){ const char *z = va_arg(ap, const char*); sqlite3VdbeAddOp4(p, z==0 ? OP_Null : OP_String8, 0, iDest+i, 0, z, 0); }else if( c=='i' ){ sqlite3VdbeAddOp2(p, OP_Integer, va_arg(ap, int), iDest+i); }else{ goto skip_op_resultrow; } } sqlite3VdbeAddOp2(p, OP_ResultRow, iDest, i); skip_op_resultrow: va_end(ap); } /* ** Add an opcode that includes the p4 value as a pointer. */ SQLITE_PRIVATE int sqlite3VdbeAddOp4( Vdbe *p, /* Add the opcode to this VM */ int op, /* The new opcode */ int p1, /* The P1 operand */ int p2, /* The P2 operand */ int p3, /* The P3 operand */ const char *zP4, /* The P4 operand */ int p4type /* P4 operand type */ ){ int addr = sqlite3VdbeAddOp3(p, op, p1, p2, p3); sqlite3VdbeChangeP4(p, addr, zP4, p4type); return addr; } /* ** Add an OP_Function or OP_PureFunc opcode. ** ** The eCallCtx argument is information (typically taken from Expr.op2) ** that describes the calling context of the function. 0 means a general ** function call. NC_IsCheck means called by a check constraint, ** NC_IdxExpr means called as part of an index expression. NC_PartIdx ** means in the WHERE clause of a partial index. NC_GenCol means called ** while computing a generated column value. 0 is the usual case. */ SQLITE_PRIVATE int sqlite3VdbeAddFunctionCall( Parse *pParse, /* Parsing context */ int p1, /* Constant argument mask */ int p2, /* First argument register */ int p3, /* Register into which results are written */ int nArg, /* Number of argument */ const FuncDef *pFunc, /* The function to be invoked */ int eCallCtx /* Calling context */ ){ Vdbe *v = pParse->pVdbe; int nByte; int addr; sqlite3_context *pCtx; assert( v ); nByte = sizeof(*pCtx) + (nArg-1)*sizeof(sqlite3_value*); pCtx = sqlite3DbMallocRawNN(pParse->db, nByte); if( pCtx==0 ){ assert( pParse->db->mallocFailed ); freeEphemeralFunction(pParse->db, (FuncDef*)pFunc); return 0; } pCtx->pOut = 0; pCtx->pFunc = (FuncDef*)pFunc; pCtx->pVdbe = 0; pCtx->isError = 0; pCtx->argc = nArg; pCtx->iOp = sqlite3VdbeCurrentAddr(v); addr = sqlite3VdbeAddOp4(v, eCallCtx ? OP_PureFunc : OP_Function, p1, p2, p3, (char*)pCtx, P4_FUNCCTX); sqlite3VdbeChangeP5(v, eCallCtx & NC_SelfRef); return addr; } /* ** Add an opcode that includes the p4 value with a P4_INT64 or ** P4_REAL type. */ SQLITE_PRIVATE int sqlite3VdbeAddOp4Dup8( Vdbe *p, /* Add the opcode to this VM */ int op, /* The new opcode */ int p1, /* The P1 operand */ int p2, /* The P2 operand */ int p3, /* The P3 operand */ const u8 *zP4, /* The P4 operand */ int p4type /* P4 operand type */ ){ char *p4copy = sqlite3DbMallocRawNN(sqlite3VdbeDb(p), 8); if( p4copy ) memcpy(p4copy, zP4, 8); return sqlite3VdbeAddOp4(p, op, p1, p2, p3, p4copy, p4type); } #ifndef SQLITE_OMIT_EXPLAIN /* ** Return the address of the current EXPLAIN QUERY PLAN baseline. ** 0 means "none". */ SQLITE_PRIVATE int sqlite3VdbeExplainParent(Parse *pParse){ VdbeOp *pOp; if( pParse->addrExplain==0 ) return 0; pOp = sqlite3VdbeGetOp(pParse->pVdbe, pParse->addrExplain); return pOp->p2; } /* ** Set a debugger breakpoint on the following routine in order to ** monitor the EXPLAIN QUERY PLAN code generation. */ #if defined(SQLITE_DEBUG) SQLITE_PRIVATE void sqlite3ExplainBreakpoint(const char *z1, const char *z2){ (void)z1; (void)z2; } #endif /* ** Add a new OP_Explain opcode. ** ** If the bPush flag is true, then make this opcode the parent for ** subsequent Explains until sqlite3VdbeExplainPop() is called. */ SQLITE_PRIVATE void sqlite3VdbeExplain(Parse *pParse, u8 bPush, const char *zFmt, ...){ #ifndef SQLITE_DEBUG /* Always include the OP_Explain opcodes if SQLITE_DEBUG is defined. ** But omit them (for performance) during production builds */ if( pParse->explain==2 ) #endif { char *zMsg; Vdbe *v; va_list ap; int iThis; va_start(ap, zFmt); zMsg = sqlite3VMPrintf(pParse->db, zFmt, ap); va_end(ap); v = pParse->pVdbe; iThis = v->nOp; sqlite3VdbeAddOp4(v, OP_Explain, iThis, pParse->addrExplain, 0, zMsg, P4_DYNAMIC); sqlite3ExplainBreakpoint(bPush?"PUSH":"", sqlite3VdbeGetOp(v,-1)->p4.z); if( bPush){ pParse->addrExplain = iThis; } } } /* ** Pop the EXPLAIN QUERY PLAN stack one level. */ SQLITE_PRIVATE void sqlite3VdbeExplainPop(Parse *pParse){ sqlite3ExplainBreakpoint("POP", 0); pParse->addrExplain = sqlite3VdbeExplainParent(pParse); } #endif /* SQLITE_OMIT_EXPLAIN */ /* ** Add an OP_ParseSchema opcode. This routine is broken out from ** sqlite3VdbeAddOp4() since it needs to also needs to mark all btrees ** as having been used. ** ** The zWhere string must have been obtained from sqlite3_malloc(). ** This routine will take ownership of the allocated memory. */ SQLITE_PRIVATE void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere){ int j; sqlite3VdbeAddOp4(p, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC); for(j=0; jdb->nDb; j++) sqlite3VdbeUsesBtree(p, j); } /* ** Add an opcode that includes the p4 value as an integer. */ SQLITE_PRIVATE int sqlite3VdbeAddOp4Int( Vdbe *p, /* Add the opcode to this VM */ int op, /* The new opcode */ int p1, /* The P1 operand */ int p2, /* The P2 operand */ int p3, /* The P3 operand */ int p4 /* The P4 operand as an integer */ ){ int addr = sqlite3VdbeAddOp3(p, op, p1, p2, p3); if( p->db->mallocFailed==0 ){ VdbeOp *pOp = &p->aOp[addr]; pOp->p4type = P4_INT32; pOp->p4.i = p4; } return addr; } /* Insert the end of a co-routine */ SQLITE_PRIVATE void sqlite3VdbeEndCoroutine(Vdbe *v, int regYield){ sqlite3VdbeAddOp1(v, OP_EndCoroutine, regYield); /* Clear the temporary register cache, thereby ensuring that each ** co-routine has its own independent set of registers, because co-routines ** might expect their registers to be preserved across an OP_Yield, and ** that could cause problems if two or more co-routines are using the same ** temporary register. */ v->pParse->nTempReg = 0; v->pParse->nRangeReg = 0; } /* ** Create a new symbolic label for an instruction that has yet to be ** coded. The symbolic label is really just a negative number. The ** label can be used as the P2 value of an operation. Later, when ** the label is resolved to a specific address, the VDBE will scan ** through its operation list and change all values of P2 which match ** the label into the resolved address. ** ** The VDBE knows that a P2 value is a label because labels are ** always negative and P2 values are suppose to be non-negative. ** Hence, a negative P2 value is a label that has yet to be resolved. ** (Later:) This is only true for opcodes that have the OPFLG_JUMP ** property. ** ** Variable usage notes: ** ** Parse.aLabel[x] Stores the address that the x-th label resolves ** into. For testing (SQLITE_DEBUG), unresolved ** labels stores -1, but that is not required. ** Parse.nLabelAlloc Number of slots allocated to Parse.aLabel[] ** Parse.nLabel The *negative* of the number of labels that have ** been issued. The negative is stored because ** that gives a performance improvement over storing ** the equivalent positive value. */ SQLITE_PRIVATE int sqlite3VdbeMakeLabel(Parse *pParse){ return --pParse->nLabel; } /* ** Resolve label "x" to be the address of the next instruction to ** be inserted. The parameter "x" must have been obtained from ** a prior call to sqlite3VdbeMakeLabel(). */ static SQLITE_NOINLINE void resizeResolveLabel(Parse *p, Vdbe *v, int j){ int nNewSize = 10 - p->nLabel; p->aLabel = sqlite3DbReallocOrFree(p->db, p->aLabel, nNewSize*sizeof(p->aLabel[0])); if( p->aLabel==0 ){ p->nLabelAlloc = 0; }else{ #ifdef SQLITE_DEBUG int i; for(i=p->nLabelAlloc; iaLabel[i] = -1; #endif p->nLabelAlloc = nNewSize; p->aLabel[j] = v->nOp; } } SQLITE_PRIVATE void sqlite3VdbeResolveLabel(Vdbe *v, int x){ Parse *p = v->pParse; int j = ADDR(x); assert( v->magic==VDBE_MAGIC_INIT ); assert( j<-p->nLabel ); assert( j>=0 ); #ifdef SQLITE_DEBUG if( p->db->flags & SQLITE_VdbeAddopTrace ){ printf("RESOLVE LABEL %d to %d\n", x, v->nOp); } #endif if( p->nLabelAlloc + p->nLabel < 0 ){ resizeResolveLabel(p,v,j); }else{ assert( p->aLabel[j]==(-1) ); /* Labels may only be resolved once */ p->aLabel[j] = v->nOp; } } /* ** Mark the VDBE as one that can only be run one time. */ SQLITE_PRIVATE void sqlite3VdbeRunOnlyOnce(Vdbe *p){ p->runOnlyOnce = 1; } /* ** Mark the VDBE as one that can only be run multiple times. */ SQLITE_PRIVATE void sqlite3VdbeReusable(Vdbe *p){ p->runOnlyOnce = 0; } #ifdef SQLITE_DEBUG /* sqlite3AssertMayAbort() logic */ /* ** The following type and function are used to iterate through all opcodes ** in a Vdbe main program and each of the sub-programs (triggers) it may ** invoke directly or indirectly. It should be used as follows: ** ** Op *pOp; ** VdbeOpIter sIter; ** ** memset(&sIter, 0, sizeof(sIter)); ** sIter.v = v; // v is of type Vdbe* ** while( (pOp = opIterNext(&sIter)) ){ ** // Do something with pOp ** } ** sqlite3DbFree(v->db, sIter.apSub); ** */ typedef struct VdbeOpIter VdbeOpIter; struct VdbeOpIter { Vdbe *v; /* Vdbe to iterate through the opcodes of */ SubProgram **apSub; /* Array of subprograms */ int nSub; /* Number of entries in apSub */ int iAddr; /* Address of next instruction to return */ int iSub; /* 0 = main program, 1 = first sub-program etc. */ }; static Op *opIterNext(VdbeOpIter *p){ Vdbe *v = p->v; Op *pRet = 0; Op *aOp; int nOp; if( p->iSub<=p->nSub ){ if( p->iSub==0 ){ aOp = v->aOp; nOp = v->nOp; }else{ aOp = p->apSub[p->iSub-1]->aOp; nOp = p->apSub[p->iSub-1]->nOp; } assert( p->iAddriAddr]; p->iAddr++; if( p->iAddr==nOp ){ p->iSub++; p->iAddr = 0; } if( pRet->p4type==P4_SUBPROGRAM ){ int nByte = (p->nSub+1)*sizeof(SubProgram*); int j; for(j=0; jnSub; j++){ if( p->apSub[j]==pRet->p4.pProgram ) break; } if( j==p->nSub ){ p->apSub = sqlite3DbReallocOrFree(v->db, p->apSub, nByte); if( !p->apSub ){ pRet = 0; }else{ p->apSub[p->nSub++] = pRet->p4.pProgram; } } } } return pRet; } /* ** Check if the program stored in the VM associated with pParse may ** throw an ABORT exception (causing the statement, but not entire transaction ** to be rolled back). This condition is true if the main program or any ** sub-programs contains any of the following: ** ** * OP_Halt with P1=SQLITE_CONSTRAINT and P2=OE_Abort. ** * OP_HaltIfNull with P1=SQLITE_CONSTRAINT and P2=OE_Abort. ** * OP_Destroy ** * OP_VUpdate ** * OP_VCreate ** * OP_VRename ** * OP_FkCounter with P2==0 (immediate foreign key constraint) ** * OP_CreateBtree/BTREE_INTKEY and OP_InitCoroutine ** (for CREATE TABLE AS SELECT ...) ** ** Then check that the value of Parse.mayAbort is true if an ** ABORT may be thrown, or false otherwise. Return true if it does ** match, or false otherwise. This function is intended to be used as ** part of an assert statement in the compiler. Similar to: ** ** assert( sqlite3VdbeAssertMayAbort(pParse->pVdbe, pParse->mayAbort) ); */ SQLITE_PRIVATE int sqlite3VdbeAssertMayAbort(Vdbe *v, int mayAbort){ int hasAbort = 0; int hasFkCounter = 0; int hasCreateTable = 0; int hasCreateIndex = 0; int hasInitCoroutine = 0; Op *pOp; VdbeOpIter sIter; memset(&sIter, 0, sizeof(sIter)); sIter.v = v; while( (pOp = opIterNext(&sIter))!=0 ){ int opcode = pOp->opcode; if( opcode==OP_Destroy || opcode==OP_VUpdate || opcode==OP_VRename || opcode==OP_VDestroy || opcode==OP_VCreate || (opcode==OP_ParseSchema && pOp->p4.z==0) || ((opcode==OP_Halt || opcode==OP_HaltIfNull) && ((pOp->p1)!=SQLITE_OK && pOp->p2==OE_Abort)) ){ hasAbort = 1; break; } if( opcode==OP_CreateBtree && pOp->p3==BTREE_INTKEY ) hasCreateTable = 1; if( mayAbort ){ /* hasCreateIndex may also be set for some DELETE statements that use ** OP_Clear. So this routine may end up returning true in the case ** where a "DELETE FROM tbl" has a statement-journal but does not ** require one. This is not so bad - it is an inefficiency, not a bug. */ if( opcode==OP_CreateBtree && pOp->p3==BTREE_BLOBKEY ) hasCreateIndex = 1; if( opcode==OP_Clear ) hasCreateIndex = 1; } if( opcode==OP_InitCoroutine ) hasInitCoroutine = 1; #ifndef SQLITE_OMIT_FOREIGN_KEY if( opcode==OP_FkCounter && pOp->p1==0 && pOp->p2==1 ){ hasFkCounter = 1; } #endif } sqlite3DbFree(v->db, sIter.apSub); /* Return true if hasAbort==mayAbort. Or if a malloc failure occurred. ** If malloc failed, then the while() loop above may not have iterated ** through all opcodes and hasAbort may be set incorrectly. Return ** true for this case to prevent the assert() in the callers frame ** from failing. */ return ( v->db->mallocFailed || hasAbort==mayAbort || hasFkCounter || (hasCreateTable && hasInitCoroutine) || hasCreateIndex ); } #endif /* SQLITE_DEBUG - the sqlite3AssertMayAbort() function */ #ifdef SQLITE_DEBUG /* ** Increment the nWrite counter in the VDBE if the cursor is not an ** ephemeral cursor, or if the cursor argument is NULL. */ SQLITE_PRIVATE void sqlite3VdbeIncrWriteCounter(Vdbe *p, VdbeCursor *pC){ if( pC==0 || (pC->eCurType!=CURTYPE_SORTER && pC->eCurType!=CURTYPE_PSEUDO && !pC->isEphemeral) ){ p->nWrite++; } } #endif #ifdef SQLITE_DEBUG /* ** Assert if an Abort at this point in time might result in a corrupt ** database. */ SQLITE_PRIVATE void sqlite3VdbeAssertAbortable(Vdbe *p){ assert( p->nWrite==0 || p->usesStmtJournal ); } #endif /* ** This routine is called after all opcodes have been inserted. It loops ** through all the opcodes and fixes up some details. ** ** (1) For each jump instruction with a negative P2 value (a label) ** resolve the P2 value to an actual address. ** ** (2) Compute the maximum number of arguments used by any SQL function ** and store that value in *pMaxFuncArgs. ** ** (3) Update the Vdbe.readOnly and Vdbe.bIsReader flags to accurately ** indicate what the prepared statement actually does. ** ** (4) Initialize the p4.xAdvance pointer on opcodes that use it. ** ** (5) Reclaim the memory allocated for storing labels. ** ** This routine will only function correctly if the mkopcodeh.tcl generator ** script numbers the opcodes correctly. Changes to this routine must be ** coordinated with changes to mkopcodeh.tcl. */ static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){ int nMaxArgs = *pMaxFuncArgs; Op *pOp; Parse *pParse = p->pParse; int *aLabel = pParse->aLabel; p->readOnly = 1; p->bIsReader = 0; pOp = &p->aOp[p->nOp-1]; while(1){ /* Only JUMP opcodes and the short list of special opcodes in the switch ** below need to be considered. The mkopcodeh.tcl generator script groups ** all these opcodes together near the front of the opcode list. Skip ** any opcode that does not need processing by virtual of the fact that ** it is larger than SQLITE_MX_JUMP_OPCODE, as a performance optimization. */ if( pOp->opcode<=SQLITE_MX_JUMP_OPCODE ){ /* NOTE: Be sure to update mkopcodeh.tcl when adding or removing ** cases from this switch! */ switch( pOp->opcode ){ case OP_Transaction: { if( pOp->p2!=0 ) p->readOnly = 0; /* no break */ deliberate_fall_through } case OP_AutoCommit: case OP_Savepoint: { p->bIsReader = 1; break; } #ifndef SQLITE_OMIT_WAL case OP_Checkpoint: #endif case OP_Vacuum: case OP_JournalMode: { p->readOnly = 0; p->bIsReader = 1; break; } case OP_Next: case OP_SorterNext: { pOp->p4.xAdvance = sqlite3BtreeNext; pOp->p4type = P4_ADVANCE; /* The code generator never codes any of these opcodes as a jump ** to a label. They are always coded as a jump backwards to a ** known address */ assert( pOp->p2>=0 ); break; } case OP_Prev: { pOp->p4.xAdvance = sqlite3BtreePrevious; pOp->p4type = P4_ADVANCE; /* The code generator never codes any of these opcodes as a jump ** to a label. They are always coded as a jump backwards to a ** known address */ assert( pOp->p2>=0 ); break; } #ifndef SQLITE_OMIT_VIRTUALTABLE case OP_VUpdate: { if( pOp->p2>nMaxArgs ) nMaxArgs = pOp->p2; break; } case OP_VFilter: { int n; assert( (pOp - p->aOp) >= 3 ); assert( pOp[-1].opcode==OP_Integer ); n = pOp[-1].p1; if( n>nMaxArgs ) nMaxArgs = n; /* Fall through into the default case */ /* no break */ deliberate_fall_through } #endif default: { if( pOp->p2<0 ){ /* The mkopcodeh.tcl script has so arranged things that the only ** non-jump opcodes less than SQLITE_MX_JUMP_CODE are guaranteed to ** have non-negative values for P2. */ assert( (sqlite3OpcodeProperty[pOp->opcode] & OPFLG_JUMP)!=0 ); assert( ADDR(pOp->p2)<-pParse->nLabel ); pOp->p2 = aLabel[ADDR(pOp->p2)]; } break; } } /* The mkopcodeh.tcl script has so arranged things that the only ** non-jump opcodes less than SQLITE_MX_JUMP_CODE are guaranteed to ** have non-negative values for P2. */ assert( (sqlite3OpcodeProperty[pOp->opcode]&OPFLG_JUMP)==0 || pOp->p2>=0); } if( pOp==p->aOp ) break; pOp--; } sqlite3DbFree(p->db, pParse->aLabel); pParse->aLabel = 0; pParse->nLabel = 0; *pMaxFuncArgs = nMaxArgs; assert( p->bIsReader!=0 || DbMaskAllZero(p->btreeMask) ); } /* ** Return the address of the next instruction to be inserted. */ SQLITE_PRIVATE int sqlite3VdbeCurrentAddr(Vdbe *p){ assert( p->magic==VDBE_MAGIC_INIT ); return p->nOp; } /* ** Verify that at least N opcode slots are available in p without ** having to malloc for more space (except when compiled using ** SQLITE_TEST_REALLOC_STRESS). This interface is used during testing ** to verify that certain calls to sqlite3VdbeAddOpList() can never ** fail due to a OOM fault and hence that the return value from ** sqlite3VdbeAddOpList() will always be non-NULL. */ #if defined(SQLITE_DEBUG) && !defined(SQLITE_TEST_REALLOC_STRESS) SQLITE_PRIVATE void sqlite3VdbeVerifyNoMallocRequired(Vdbe *p, int N){ assert( p->nOp + N <= p->nOpAlloc ); } #endif /* ** Verify that the VM passed as the only argument does not contain ** an OP_ResultRow opcode. Fail an assert() if it does. This is used ** by code in pragma.c to ensure that the implementation of certain ** pragmas comports with the flags specified in the mkpragmatab.tcl ** script. */ #if defined(SQLITE_DEBUG) && !defined(SQLITE_TEST_REALLOC_STRESS) SQLITE_PRIVATE void sqlite3VdbeVerifyNoResultRow(Vdbe *p){ int i; for(i=0; inOp; i++){ assert( p->aOp[i].opcode!=OP_ResultRow ); } } #endif /* ** Generate code (a single OP_Abortable opcode) that will ** verify that the VDBE program can safely call Abort in the current ** context. */ #if defined(SQLITE_DEBUG) SQLITE_PRIVATE void sqlite3VdbeVerifyAbortable(Vdbe *p, int onError){ if( onError==OE_Abort ) sqlite3VdbeAddOp0(p, OP_Abortable); } #endif /* ** This function returns a pointer to the array of opcodes associated with ** the Vdbe passed as the first argument. It is the callers responsibility ** to arrange for the returned array to be eventually freed using the ** vdbeFreeOpArray() function. ** ** Before returning, *pnOp is set to the number of entries in the returned ** array. Also, *pnMaxArg is set to the larger of its current value and ** the number of entries in the Vdbe.apArg[] array required to execute the ** returned program. */ SQLITE_PRIVATE VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){ VdbeOp *aOp = p->aOp; assert( aOp && !p->db->mallocFailed ); /* Check that sqlite3VdbeUsesBtree() was not called on this VM */ assert( DbMaskAllZero(p->btreeMask) ); resolveP2Values(p, pnMaxArg); *pnOp = p->nOp; p->aOp = 0; return aOp; } /* ** Add a whole list of operations to the operation stack. Return a ** pointer to the first operation inserted. ** ** Non-zero P2 arguments to jump instructions are automatically adjusted ** so that the jump target is relative to the first operation inserted. */ SQLITE_PRIVATE VdbeOp *sqlite3VdbeAddOpList( Vdbe *p, /* Add opcodes to the prepared statement */ int nOp, /* Number of opcodes to add */ VdbeOpList const *aOp, /* The opcodes to be added */ int iLineno /* Source-file line number of first opcode */ ){ int i; VdbeOp *pOut, *pFirst; assert( nOp>0 ); assert( p->magic==VDBE_MAGIC_INIT ); if( p->nOp + nOp > p->nOpAlloc && growOpArray(p, nOp) ){ return 0; } pFirst = pOut = &p->aOp[p->nOp]; for(i=0; iopcode = aOp->opcode; pOut->p1 = aOp->p1; pOut->p2 = aOp->p2; assert( aOp->p2>=0 ); if( (sqlite3OpcodeProperty[aOp->opcode] & OPFLG_JUMP)!=0 && aOp->p2>0 ){ pOut->p2 += p->nOp; } pOut->p3 = aOp->p3; pOut->p4type = P4_NOTUSED; pOut->p4.p = 0; pOut->p5 = 0; #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS pOut->zComment = 0; #endif #ifdef SQLITE_VDBE_COVERAGE pOut->iSrcLine = iLineno+i; #else (void)iLineno; #endif #ifdef SQLITE_DEBUG if( p->db->flags & SQLITE_VdbeAddopTrace ){ sqlite3VdbePrintOp(0, i+p->nOp, &p->aOp[i+p->nOp]); } #endif } p->nOp += nOp; return pFirst; } #if defined(SQLITE_ENABLE_STMT_SCANSTATUS) /* ** Add an entry to the array of counters managed by sqlite3_stmt_scanstatus(). */ SQLITE_PRIVATE void sqlite3VdbeScanStatus( Vdbe *p, /* VM to add scanstatus() to */ int addrExplain, /* Address of OP_Explain (or 0) */ int addrLoop, /* Address of loop counter */ int addrVisit, /* Address of rows visited counter */ LogEst nEst, /* Estimated number of output rows */ const char *zName /* Name of table or index being scanned */ ){ sqlite3_int64 nByte = (p->nScan+1) * sizeof(ScanStatus); ScanStatus *aNew; aNew = (ScanStatus*)sqlite3DbRealloc(p->db, p->aScan, nByte); if( aNew ){ ScanStatus *pNew = &aNew[p->nScan++]; pNew->addrExplain = addrExplain; pNew->addrLoop = addrLoop; pNew->addrVisit = addrVisit; pNew->nEst = nEst; pNew->zName = sqlite3DbStrDup(p->db, zName); p->aScan = aNew; } } #endif /* ** Change the value of the opcode, or P1, P2, P3, or P5 operands ** for a specific instruction. */ SQLITE_PRIVATE void sqlite3VdbeChangeOpcode(Vdbe *p, int addr, u8 iNewOpcode){ sqlite3VdbeGetOp(p,addr)->opcode = iNewOpcode; } SQLITE_PRIVATE void sqlite3VdbeChangeP1(Vdbe *p, int addr, int val){ sqlite3VdbeGetOp(p,addr)->p1 = val; } SQLITE_PRIVATE void sqlite3VdbeChangeP2(Vdbe *p, int addr, int val){ sqlite3VdbeGetOp(p,addr)->p2 = val; } SQLITE_PRIVATE void sqlite3VdbeChangeP3(Vdbe *p, int addr, int val){ sqlite3VdbeGetOp(p,addr)->p3 = val; } SQLITE_PRIVATE void sqlite3VdbeChangeP5(Vdbe *p, u16 p5){ assert( p->nOp>0 || p->db->mallocFailed ); if( p->nOp>0 ) p->aOp[p->nOp-1].p5 = p5; } /* ** Change the P2 operand of instruction addr so that it points to ** the address of the next instruction to be coded. */ SQLITE_PRIVATE void sqlite3VdbeJumpHere(Vdbe *p, int addr){ sqlite3VdbeChangeP2(p, addr, p->nOp); } /* ** Change the P2 operand of the jump instruction at addr so that ** the jump lands on the next opcode. Or if the jump instruction was ** the previous opcode (and is thus a no-op) then simply back up ** the next instruction counter by one slot so that the jump is ** overwritten by the next inserted opcode. ** ** This routine is an optimization of sqlite3VdbeJumpHere() that ** strives to omit useless byte-code like this: ** ** 7 Once 0 8 0 ** 8 ... */ SQLITE_PRIVATE void sqlite3VdbeJumpHereOrPopInst(Vdbe *p, int addr){ if( addr==p->nOp-1 ){ assert( p->aOp[addr].opcode==OP_Once || p->aOp[addr].opcode==OP_If || p->aOp[addr].opcode==OP_FkIfZero ); assert( p->aOp[addr].p4type==0 ); #ifdef SQLITE_VDBE_COVERAGE sqlite3VdbeGetOp(p,-1)->iSrcLine = 0; /* Erase VdbeCoverage() macros */ #endif p->nOp--; }else{ sqlite3VdbeChangeP2(p, addr, p->nOp); } } /* ** If the input FuncDef structure is ephemeral, then free it. If ** the FuncDef is not ephermal, then do nothing. */ static void freeEphemeralFunction(sqlite3 *db, FuncDef *pDef){ if( (pDef->funcFlags & SQLITE_FUNC_EPHEM)!=0 ){ sqlite3DbFreeNN(db, pDef); } } /* ** Delete a P4 value if necessary. */ static SQLITE_NOINLINE void freeP4Mem(sqlite3 *db, Mem *p){ if( p->szMalloc ) sqlite3DbFree(db, p->zMalloc); sqlite3DbFreeNN(db, p); } static SQLITE_NOINLINE void freeP4FuncCtx(sqlite3 *db, sqlite3_context *p){ freeEphemeralFunction(db, p->pFunc); sqlite3DbFreeNN(db, p); } static void freeP4(sqlite3 *db, int p4type, void *p4){ assert( db ); switch( p4type ){ case P4_FUNCCTX: { freeP4FuncCtx(db, (sqlite3_context*)p4); break; } case P4_REAL: case P4_INT64: case P4_DYNAMIC: case P4_DYNBLOB: case P4_INTARRAY: { sqlite3DbFree(db, p4); break; } case P4_KEYINFO: { if( db->pnBytesFreed==0 ) sqlite3KeyInfoUnref((KeyInfo*)p4); break; } #ifdef SQLITE_ENABLE_CURSOR_HINTS case P4_EXPR: { sqlite3ExprDelete(db, (Expr*)p4); break; } #endif case P4_FUNCDEF: { freeEphemeralFunction(db, (FuncDef*)p4); break; } case P4_MEM: { if( db->pnBytesFreed==0 ){ sqlite3ValueFree((sqlite3_value*)p4); }else{ freeP4Mem(db, (Mem*)p4); } break; } case P4_VTAB : { if( db->pnBytesFreed==0 ) sqlite3VtabUnlock((VTable *)p4); break; } } } /* ** Free the space allocated for aOp and any p4 values allocated for the ** opcodes contained within. If aOp is not NULL it is assumed to contain ** nOp entries. */ static void vdbeFreeOpArray(sqlite3 *db, Op *aOp, int nOp){ if( aOp ){ Op *pOp; for(pOp=&aOp[nOp-1]; pOp>=aOp; pOp--){ if( pOp->p4type <= P4_FREE_IF_LE ) freeP4(db, pOp->p4type, pOp->p4.p); #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS sqlite3DbFree(db, pOp->zComment); #endif } sqlite3DbFreeNN(db, aOp); } } /* ** Link the SubProgram object passed as the second argument into the linked ** list at Vdbe.pSubProgram. This list is used to delete all sub-program ** objects when the VM is no longer required. */ SQLITE_PRIVATE void sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p){ p->pNext = pVdbe->pProgram; pVdbe->pProgram = p; } /* ** Return true if the given Vdbe has any SubPrograms. */ SQLITE_PRIVATE int sqlite3VdbeHasSubProgram(Vdbe *pVdbe){ return pVdbe->pProgram!=0; } /* ** Change the opcode at addr into OP_Noop */ SQLITE_PRIVATE int sqlite3VdbeChangeToNoop(Vdbe *p, int addr){ VdbeOp *pOp; if( p->db->mallocFailed ) return 0; assert( addr>=0 && addrnOp ); pOp = &p->aOp[addr]; freeP4(p->db, pOp->p4type, pOp->p4.p); pOp->p4type = P4_NOTUSED; pOp->p4.z = 0; pOp->opcode = OP_Noop; return 1; } /* ** If the last opcode is "op" and it is not a jump destination, ** then remove it. Return true if and only if an opcode was removed. */ SQLITE_PRIVATE int sqlite3VdbeDeletePriorOpcode(Vdbe *p, u8 op){ if( p->nOp>0 && p->aOp[p->nOp-1].opcode==op ){ return sqlite3VdbeChangeToNoop(p, p->nOp-1); }else{ return 0; } } #ifdef SQLITE_DEBUG /* ** Generate an OP_ReleaseReg opcode to indicate that a range of ** registers, except any identified by mask, are no longer in use. */ SQLITE_PRIVATE void sqlite3VdbeReleaseRegisters( Parse *pParse, /* Parsing context */ int iFirst, /* Index of first register to be released */ int N, /* Number of registers to release */ u32 mask, /* Mask of registers to NOT release */ int bUndefine /* If true, mark registers as undefined */ ){ if( N==0 ) return; assert( pParse->pVdbe ); assert( iFirst>=1 ); assert( iFirst+N-1<=pParse->nMem ); if( N<=31 && mask!=0 ){ while( N>0 && (mask&1)!=0 ){ mask >>= 1; iFirst++; N--; } while( N>0 && N<=32 && (mask & MASKBIT32(N-1))!=0 ){ mask &= ~MASKBIT32(N-1); N--; } } if( N>0 ){ sqlite3VdbeAddOp3(pParse->pVdbe, OP_ReleaseReg, iFirst, N, *(int*)&mask); if( bUndefine ) sqlite3VdbeChangeP5(pParse->pVdbe, 1); } } #endif /* SQLITE_DEBUG */ /* ** Change the value of the P4 operand for a specific instruction. ** This routine is useful when a large program is loaded from a ** static array using sqlite3VdbeAddOpList but we want to make a ** few minor changes to the program. ** ** If n>=0 then the P4 operand is dynamic, meaning that a copy of ** the string is made into memory obtained from sqlite3_malloc(). ** A value of n==0 means copy bytes of zP4 up to and including the ** first null byte. If n>0 then copy n+1 bytes of zP4. ** ** Other values of n (P4_STATIC, P4_COLLSEQ etc.) indicate that zP4 points ** to a string or structure that is guaranteed to exist for the lifetime of ** the Vdbe. In these cases we can just copy the pointer. ** ** If addr<0 then change P4 on the most recently inserted instruction. */ static void SQLITE_NOINLINE vdbeChangeP4Full( Vdbe *p, Op *pOp, const char *zP4, int n ){ if( pOp->p4type ){ freeP4(p->db, pOp->p4type, pOp->p4.p); pOp->p4type = 0; pOp->p4.p = 0; } if( n<0 ){ sqlite3VdbeChangeP4(p, (int)(pOp - p->aOp), zP4, n); }else{ if( n==0 ) n = sqlite3Strlen30(zP4); pOp->p4.z = sqlite3DbStrNDup(p->db, zP4, n); pOp->p4type = P4_DYNAMIC; } } SQLITE_PRIVATE void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *zP4, int n){ Op *pOp; sqlite3 *db; assert( p!=0 ); db = p->db; assert( p->magic==VDBE_MAGIC_INIT ); assert( p->aOp!=0 || db->mallocFailed ); if( db->mallocFailed ){ if( n!=P4_VTAB ) freeP4(db, n, (void*)*(char**)&zP4); return; } assert( p->nOp>0 ); assert( addrnOp ); if( addr<0 ){ addr = p->nOp - 1; } pOp = &p->aOp[addr]; if( n>=0 || pOp->p4type ){ vdbeChangeP4Full(p, pOp, zP4, n); return; } if( n==P4_INT32 ){ /* Note: this cast is safe, because the origin data point was an int ** that was cast to a (const char *). */ pOp->p4.i = SQLITE_PTR_TO_INT(zP4); pOp->p4type = P4_INT32; }else if( zP4!=0 ){ assert( n<0 ); pOp->p4.p = (void*)zP4; pOp->p4type = (signed char)n; if( n==P4_VTAB ) sqlite3VtabLock((VTable*)zP4); } } /* ** Change the P4 operand of the most recently coded instruction ** to the value defined by the arguments. This is a high-speed ** version of sqlite3VdbeChangeP4(). ** ** The P4 operand must not have been previously defined. And the new ** P4 must not be P4_INT32. Use sqlite3VdbeChangeP4() in either of ** those cases. */ SQLITE_PRIVATE void sqlite3VdbeAppendP4(Vdbe *p, void *pP4, int n){ VdbeOp *pOp; assert( n!=P4_INT32 && n!=P4_VTAB ); assert( n<=0 ); if( p->db->mallocFailed ){ freeP4(p->db, n, pP4); }else{ assert( pP4!=0 ); assert( p->nOp>0 ); pOp = &p->aOp[p->nOp-1]; assert( pOp->p4type==P4_NOTUSED ); pOp->p4type = n; pOp->p4.p = pP4; } } /* ** Set the P4 on the most recently added opcode to the KeyInfo for the ** index given. */ SQLITE_PRIVATE void sqlite3VdbeSetP4KeyInfo(Parse *pParse, Index *pIdx){ Vdbe *v = pParse->pVdbe; KeyInfo *pKeyInfo; assert( v!=0 ); assert( pIdx!=0 ); pKeyInfo = sqlite3KeyInfoOfIndex(pParse, pIdx); if( pKeyInfo ) sqlite3VdbeAppendP4(v, pKeyInfo, P4_KEYINFO); } #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS /* ** Change the comment on the most recently coded instruction. Or ** insert a No-op and add the comment to that new instruction. This ** makes the code easier to read during debugging. None of this happens ** in a production build. */ static void vdbeVComment(Vdbe *p, const char *zFormat, va_list ap){ assert( p->nOp>0 || p->aOp==0 ); assert( p->aOp==0 || p->aOp[p->nOp-1].zComment==0 || p->db->mallocFailed || p->pParse->nErr>0 ); if( p->nOp ){ assert( p->aOp ); sqlite3DbFree(p->db, p->aOp[p->nOp-1].zComment); p->aOp[p->nOp-1].zComment = sqlite3VMPrintf(p->db, zFormat, ap); } } SQLITE_PRIVATE void sqlite3VdbeComment(Vdbe *p, const char *zFormat, ...){ va_list ap; if( p ){ va_start(ap, zFormat); vdbeVComment(p, zFormat, ap); va_end(ap); } } SQLITE_PRIVATE void sqlite3VdbeNoopComment(Vdbe *p, const char *zFormat, ...){ va_list ap; if( p ){ sqlite3VdbeAddOp0(p, OP_Noop); va_start(ap, zFormat); vdbeVComment(p, zFormat, ap); va_end(ap); } } #endif /* NDEBUG */ #ifdef SQLITE_VDBE_COVERAGE /* ** Set the value if the iSrcLine field for the previously coded instruction. */ SQLITE_PRIVATE void sqlite3VdbeSetLineNumber(Vdbe *v, int iLine){ sqlite3VdbeGetOp(v,-1)->iSrcLine = iLine; } #endif /* SQLITE_VDBE_COVERAGE */ /* ** Return the opcode for a given address. If the address is -1, then ** return the most recently inserted opcode. ** ** If a memory allocation error has occurred prior to the calling of this ** routine, then a pointer to a dummy VdbeOp will be returned. That opcode ** is readable but not writable, though it is cast to a writable value. ** The return of a dummy opcode allows the call to continue functioning ** after an OOM fault without having to check to see if the return from ** this routine is a valid pointer. But because the dummy.opcode is 0, ** dummy will never be written to. This is verified by code inspection and ** by running with Valgrind. */ SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){ /* C89 specifies that the constant "dummy" will be initialized to all ** zeros, which is correct. MSVC generates a warning, nevertheless. */ static VdbeOp dummy; /* Ignore the MSVC warning about no initializer */ assert( p->magic==VDBE_MAGIC_INIT ); if( addr<0 ){ addr = p->nOp - 1; } assert( (addr>=0 && addrnOp) || p->db->mallocFailed ); if( p->db->mallocFailed ){ return (VdbeOp*)&dummy; }else{ return &p->aOp[addr]; } } #if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) /* ** Return an integer value for one of the parameters to the opcode pOp ** determined by character c. */ static int translateP(char c, const Op *pOp){ if( c=='1' ) return pOp->p1; if( c=='2' ) return pOp->p2; if( c=='3' ) return pOp->p3; if( c=='4' ) return pOp->p4.i; return pOp->p5; } /* ** Compute a string for the "comment" field of a VDBE opcode listing. ** ** The Synopsis: field in comments in the vdbe.c source file gets converted ** to an extra string that is appended to the sqlite3OpcodeName(). In the ** absence of other comments, this synopsis becomes the comment on the opcode. ** Some translation occurs: ** ** "PX" -> "r[X]" ** "PX@PY" -> "r[X..X+Y-1]" or "r[x]" if y is 0 or 1 ** "PX@PY+1" -> "r[X..X+Y]" or "r[x]" if y is 0 ** "PY..PY" -> "r[X..Y]" or "r[x]" if y<=x */ SQLITE_PRIVATE char *sqlite3VdbeDisplayComment( sqlite3 *db, /* Optional - Oom error reporting only */ const Op *pOp, /* The opcode to be commented */ const char *zP4 /* Previously obtained value for P4 */ ){ const char *zOpName; const char *zSynopsis; int nOpName; int ii; char zAlt[50]; StrAccum x; sqlite3StrAccumInit(&x, 0, 0, 0, SQLITE_MAX_LENGTH); zOpName = sqlite3OpcodeName(pOp->opcode); nOpName = sqlite3Strlen30(zOpName); if( zOpName[nOpName+1] ){ int seenCom = 0; char c; zSynopsis = zOpName += nOpName + 1; if( strncmp(zSynopsis,"IF ",3)==0 ){ if( pOp->p5 & SQLITE_STOREP2 ){ sqlite3_snprintf(sizeof(zAlt), zAlt, "r[P2] = (%s)", zSynopsis+3); }else{ sqlite3_snprintf(sizeof(zAlt), zAlt, "if %s goto P2", zSynopsis+3); } zSynopsis = zAlt; } for(ii=0; (c = zSynopsis[ii])!=0; ii++){ if( c=='P' ){ c = zSynopsis[++ii]; if( c=='4' ){ sqlite3_str_appendall(&x, zP4); }else if( c=='X' ){ sqlite3_str_appendall(&x, pOp->zComment); seenCom = 1; }else{ int v1 = translateP(c, pOp); int v2; if( strncmp(zSynopsis+ii+1, "@P", 2)==0 ){ ii += 3; v2 = translateP(zSynopsis[ii], pOp); if( strncmp(zSynopsis+ii+1,"+1",2)==0 ){ ii += 2; v2++; } if( v2<2 ){ sqlite3_str_appendf(&x, "%d", v1); }else{ sqlite3_str_appendf(&x, "%d..%d", v1, v1+v2-1); } }else if( strncmp(zSynopsis+ii+1, "@NP", 3)==0 ){ sqlite3_context *pCtx = pOp->p4.pCtx; if( pOp->p4type!=P4_FUNCCTX || pCtx->argc==1 ){ sqlite3_str_appendf(&x, "%d", v1); }else if( pCtx->argc>1 ){ sqlite3_str_appendf(&x, "%d..%d", v1, v1+pCtx->argc-1); }else{ assert( x.nChar>2 ); x.nChar -= 2; ii++; } ii += 3; }else{ sqlite3_str_appendf(&x, "%d", v1); if( strncmp(zSynopsis+ii+1, "..P3", 4)==0 && pOp->p3==0 ){ ii += 4; } } } }else{ sqlite3_str_appendchar(&x, 1, c); } } if( !seenCom && pOp->zComment ){ sqlite3_str_appendf(&x, "; %s", pOp->zComment); } }else if( pOp->zComment ){ sqlite3_str_appendall(&x, pOp->zComment); } if( (x.accError & SQLITE_NOMEM)!=0 && db!=0 ){ sqlite3OomFault(db); } return sqlite3StrAccumFinish(&x); } #endif /* SQLITE_ENABLE_EXPLAIN_COMMENTS */ #if VDBE_DISPLAY_P4 && defined(SQLITE_ENABLE_CURSOR_HINTS) /* ** Translate the P4.pExpr value for an OP_CursorHint opcode into text ** that can be displayed in the P4 column of EXPLAIN output. */ static void displayP4Expr(StrAccum *p, Expr *pExpr){ const char *zOp = 0; switch( pExpr->op ){ case TK_STRING: sqlite3_str_appendf(p, "%Q", pExpr->u.zToken); break; case TK_INTEGER: sqlite3_str_appendf(p, "%d", pExpr->u.iValue); break; case TK_NULL: sqlite3_str_appendf(p, "NULL"); break; case TK_REGISTER: { sqlite3_str_appendf(p, "r[%d]", pExpr->iTable); break; } case TK_COLUMN: { if( pExpr->iColumn<0 ){ sqlite3_str_appendf(p, "rowid"); }else{ sqlite3_str_appendf(p, "c%d", (int)pExpr->iColumn); } break; } case TK_LT: zOp = "LT"; break; case TK_LE: zOp = "LE"; break; case TK_GT: zOp = "GT"; break; case TK_GE: zOp = "GE"; break; case TK_NE: zOp = "NE"; break; case TK_EQ: zOp = "EQ"; break; case TK_IS: zOp = "IS"; break; case TK_ISNOT: zOp = "ISNOT"; break; case TK_AND: zOp = "AND"; break; case TK_OR: zOp = "OR"; break; case TK_PLUS: zOp = "ADD"; break; case TK_STAR: zOp = "MUL"; break; case TK_MINUS: zOp = "SUB"; break; case TK_REM: zOp = "REM"; break; case TK_BITAND: zOp = "BITAND"; break; case TK_BITOR: zOp = "BITOR"; break; case TK_SLASH: zOp = "DIV"; break; case TK_LSHIFT: zOp = "LSHIFT"; break; case TK_RSHIFT: zOp = "RSHIFT"; break; case TK_CONCAT: zOp = "CONCAT"; break; case TK_UMINUS: zOp = "MINUS"; break; case TK_UPLUS: zOp = "PLUS"; break; case TK_BITNOT: zOp = "BITNOT"; break; case TK_NOT: zOp = "NOT"; break; case TK_ISNULL: zOp = "ISNULL"; break; case TK_NOTNULL: zOp = "NOTNULL"; break; default: sqlite3_str_appendf(p, "%s", "expr"); break; } if( zOp ){ sqlite3_str_appendf(p, "%s(", zOp); displayP4Expr(p, pExpr->pLeft); if( pExpr->pRight ){ sqlite3_str_append(p, ",", 1); displayP4Expr(p, pExpr->pRight); } sqlite3_str_append(p, ")", 1); } } #endif /* VDBE_DISPLAY_P4 && defined(SQLITE_ENABLE_CURSOR_HINTS) */ #if VDBE_DISPLAY_P4 /* ** Compute a string that describes the P4 parameter for an opcode. ** Use zTemp for any required temporary buffer space. */ SQLITE_PRIVATE char *sqlite3VdbeDisplayP4(sqlite3 *db, Op *pOp){ char *zP4 = 0; StrAccum x; sqlite3StrAccumInit(&x, 0, 0, 0, SQLITE_MAX_LENGTH); switch( pOp->p4type ){ case P4_KEYINFO: { int j; KeyInfo *pKeyInfo = pOp->p4.pKeyInfo; assert( pKeyInfo->aSortFlags!=0 ); sqlite3_str_appendf(&x, "k(%d", pKeyInfo->nKeyField); for(j=0; jnKeyField; j++){ CollSeq *pColl = pKeyInfo->aColl[j]; const char *zColl = pColl ? pColl->zName : ""; if( strcmp(zColl, "BINARY")==0 ) zColl = "B"; sqlite3_str_appendf(&x, ",%s%s%s", (pKeyInfo->aSortFlags[j] & KEYINFO_ORDER_DESC) ? "-" : "", (pKeyInfo->aSortFlags[j] & KEYINFO_ORDER_BIGNULL)? "N." : "", zColl); } sqlite3_str_append(&x, ")", 1); break; } #ifdef SQLITE_ENABLE_CURSOR_HINTS case P4_EXPR: { displayP4Expr(&x, pOp->p4.pExpr); break; } #endif case P4_COLLSEQ: { static const char *const encnames[] = {"?", "8", "16LE", "16BE"}; CollSeq *pColl = pOp->p4.pColl; assert( pColl->enc>=0 && pColl->enc<4 ); sqlite3_str_appendf(&x, "%.18s-%s", pColl->zName, encnames[pColl->enc]); break; } case P4_FUNCDEF: { FuncDef *pDef = pOp->p4.pFunc; sqlite3_str_appendf(&x, "%s(%d)", pDef->zName, pDef->nArg); break; } case P4_FUNCCTX: { FuncDef *pDef = pOp->p4.pCtx->pFunc; sqlite3_str_appendf(&x, "%s(%d)", pDef->zName, pDef->nArg); break; } case P4_INT64: { sqlite3_str_appendf(&x, "%lld", *pOp->p4.pI64); break; } case P4_INT32: { sqlite3_str_appendf(&x, "%d", pOp->p4.i); break; } case P4_REAL: { sqlite3_str_appendf(&x, "%.16g", *pOp->p4.pReal); break; } case P4_MEM: { Mem *pMem = pOp->p4.pMem; if( pMem->flags & MEM_Str ){ zP4 = pMem->z; }else if( pMem->flags & (MEM_Int|MEM_IntReal) ){ sqlite3_str_appendf(&x, "%lld", pMem->u.i); }else if( pMem->flags & MEM_Real ){ sqlite3_str_appendf(&x, "%.16g", pMem->u.r); }else if( pMem->flags & MEM_Null ){ zP4 = "NULL"; }else{ assert( pMem->flags & MEM_Blob ); zP4 = "(blob)"; } break; } #ifndef SQLITE_OMIT_VIRTUALTABLE case P4_VTAB: { sqlite3_vtab *pVtab = pOp->p4.pVtab->pVtab; sqlite3_str_appendf(&x, "vtab:%p", pVtab); break; } #endif case P4_INTARRAY: { u32 i; u32 *ai = pOp->p4.ai; u32 n = ai[0]; /* The first element of an INTARRAY is always the ** count of the number of elements to follow */ for(i=1; i<=n; i++){ sqlite3_str_appendf(&x, "%c%u", (i==1 ? '[' : ','), ai[i]); } sqlite3_str_append(&x, "]", 1); break; } case P4_SUBPROGRAM: { zP4 = "program"; break; } case P4_DYNBLOB: case P4_ADVANCE: { break; } case P4_TABLE: { zP4 = pOp->p4.pTab->zName; break; } default: { zP4 = pOp->p4.z; } } if( zP4 ) sqlite3_str_appendall(&x, zP4); if( (x.accError & SQLITE_NOMEM)!=0 ){ sqlite3OomFault(db); } return sqlite3StrAccumFinish(&x); } #endif /* VDBE_DISPLAY_P4 */ /* ** Declare to the Vdbe that the BTree object at db->aDb[i] is used. ** ** The prepared statements need to know in advance the complete set of ** attached databases that will be use. A mask of these databases ** is maintained in p->btreeMask. The p->lockMask value is the subset of ** p->btreeMask of databases that will require a lock. */ SQLITE_PRIVATE void sqlite3VdbeUsesBtree(Vdbe *p, int i){ assert( i>=0 && idb->nDb && i<(int)sizeof(yDbMask)*8 ); assert( i<(int)sizeof(p->btreeMask)*8 ); DbMaskSet(p->btreeMask, i); if( i!=1 && sqlite3BtreeSharable(p->db->aDb[i].pBt) ){ DbMaskSet(p->lockMask, i); } } #if !defined(SQLITE_OMIT_SHARED_CACHE) /* ** If SQLite is compiled to support shared-cache mode and to be threadsafe, ** this routine obtains the mutex associated with each BtShared structure ** that may be accessed by the VM passed as an argument. In doing so it also ** sets the BtShared.db member of each of the BtShared structures, ensuring ** that the correct busy-handler callback is invoked if required. ** ** If SQLite is not threadsafe but does support shared-cache mode, then ** sqlite3BtreeEnter() is invoked to set the BtShared.db variables ** of all of BtShared structures accessible via the database handle ** associated with the VM. ** ** If SQLite is not threadsafe and does not support shared-cache mode, this ** function is a no-op. ** ** The p->btreeMask field is a bitmask of all btrees that the prepared ** statement p will ever use. Let N be the number of bits in p->btreeMask ** corresponding to btrees that use shared cache. Then the runtime of ** this routine is N*N. But as N is rarely more than 1, this should not ** be a problem. */ SQLITE_PRIVATE void sqlite3VdbeEnter(Vdbe *p){ int i; sqlite3 *db; Db *aDb; int nDb; if( DbMaskAllZero(p->lockMask) ) return; /* The common case */ db = p->db; aDb = db->aDb; nDb = db->nDb; for(i=0; ilockMask,i) && ALWAYS(aDb[i].pBt!=0) ){ sqlite3BtreeEnter(aDb[i].pBt); } } } #endif #if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE>0 /* ** Unlock all of the btrees previously locked by a call to sqlite3VdbeEnter(). */ static SQLITE_NOINLINE void vdbeLeave(Vdbe *p){ int i; sqlite3 *db; Db *aDb; int nDb; db = p->db; aDb = db->aDb; nDb = db->nDb; for(i=0; ilockMask,i) && ALWAYS(aDb[i].pBt!=0) ){ sqlite3BtreeLeave(aDb[i].pBt); } } } SQLITE_PRIVATE void sqlite3VdbeLeave(Vdbe *p){ if( DbMaskAllZero(p->lockMask) ) return; /* The common case */ vdbeLeave(p); } #endif #if defined(VDBE_PROFILE) || defined(SQLITE_DEBUG) /* ** Print a single opcode. This routine is used for debugging only. */ SQLITE_PRIVATE void sqlite3VdbePrintOp(FILE *pOut, int pc, VdbeOp *pOp){ char *zP4; char *zCom; sqlite3 dummyDb; static const char *zFormat1 = "%4d %-13s %4d %4d %4d %-13s %.2X %s\n"; if( pOut==0 ) pOut = stdout; sqlite3BeginBenignMalloc(); dummyDb.mallocFailed = 1; zP4 = sqlite3VdbeDisplayP4(&dummyDb, pOp); #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS zCom = sqlite3VdbeDisplayComment(0, pOp, zP4); #else zCom = 0; #endif /* NB: The sqlite3OpcodeName() function is implemented by code created ** by the mkopcodeh.awk and mkopcodec.awk scripts which extract the ** information from the vdbe.c source text */ fprintf(pOut, zFormat1, pc, sqlite3OpcodeName(pOp->opcode), pOp->p1, pOp->p2, pOp->p3, zP4 ? zP4 : "", pOp->p5, zCom ? zCom : "" ); fflush(pOut); sqlite3_free(zP4); sqlite3_free(zCom); sqlite3EndBenignMalloc(); } #endif /* ** Initialize an array of N Mem element. */ static void initMemArray(Mem *p, int N, sqlite3 *db, u16 flags){ while( (N--)>0 ){ p->db = db; p->flags = flags; p->szMalloc = 0; #ifdef SQLITE_DEBUG p->pScopyFrom = 0; #endif p++; } } /* ** Release an array of N Mem elements */ static void releaseMemArray(Mem *p, int N){ if( p && N ){ Mem *pEnd = &p[N]; sqlite3 *db = p->db; if( db->pnBytesFreed ){ do{ if( p->szMalloc ) sqlite3DbFree(db, p->zMalloc); }while( (++p)flags & MEM_Agg ); testcase( p->flags & MEM_Dyn ); testcase( p->xDel==sqlite3VdbeFrameMemDel ); if( p->flags&(MEM_Agg|MEM_Dyn) ){ sqlite3VdbeMemRelease(p); }else if( p->szMalloc ){ sqlite3DbFreeNN(db, p->zMalloc); p->szMalloc = 0; } p->flags = MEM_Undefined; }while( (++p)iFrameMagic!=SQLITE_FRAME_MAGIC ) return 0; return 1; } #endif /* ** This is a destructor on a Mem object (which is really an sqlite3_value) ** that deletes the Frame object that is attached to it as a blob. ** ** This routine does not delete the Frame right away. It merely adds the ** frame to a list of frames to be deleted when the Vdbe halts. */ SQLITE_PRIVATE void sqlite3VdbeFrameMemDel(void *pArg){ VdbeFrame *pFrame = (VdbeFrame*)pArg; assert( sqlite3VdbeFrameIsValid(pFrame) ); pFrame->pParent = pFrame->v->pDelFrame; pFrame->v->pDelFrame = pFrame; } #if defined(SQLITE_ENABLE_BYTECODE_VTAB) || !defined(SQLITE_OMIT_EXPLAIN) /* ** Locate the next opcode to be displayed in EXPLAIN or EXPLAIN ** QUERY PLAN output. ** ** Return SQLITE_ROW on success. Return SQLITE_DONE if there are no ** more opcodes to be displayed. */ SQLITE_PRIVATE int sqlite3VdbeNextOpcode( Vdbe *p, /* The statement being explained */ Mem *pSub, /* Storage for keeping track of subprogram nesting */ int eMode, /* 0: normal. 1: EQP. 2: TablesUsed */ int *piPc, /* IN/OUT: Current rowid. Overwritten with next rowid */ int *piAddr, /* OUT: Write index into (*paOp)[] here */ Op **paOp /* OUT: Write the opcode array here */ ){ int nRow; /* Stop when row count reaches this */ int nSub = 0; /* Number of sub-vdbes seen so far */ SubProgram **apSub = 0; /* Array of sub-vdbes */ int i; /* Next instruction address */ int rc = SQLITE_OK; /* Result code */ Op *aOp = 0; /* Opcode array */ int iPc; /* Rowid. Copy of value in *piPc */ /* When the number of output rows reaches nRow, that means the ** listing has finished and sqlite3_step() should return SQLITE_DONE. ** nRow is the sum of the number of rows in the main program, plus ** the sum of the number of rows in all trigger subprograms encountered ** so far. The nRow value will increase as new trigger subprograms are ** encountered, but p->pc will eventually catch up to nRow. */ nRow = p->nOp; if( pSub!=0 ){ if( pSub->flags&MEM_Blob ){ /* pSub is initiallly NULL. It is initialized to a BLOB by ** the P4_SUBPROGRAM processing logic below */ nSub = pSub->n/sizeof(Vdbe*); apSub = (SubProgram **)pSub->z; } for(i=0; inOp; } } iPc = *piPc; while(1){ /* Loop exits via break */ i = iPc++; if( i>=nRow ){ p->rc = SQLITE_OK; rc = SQLITE_DONE; break; } if( inOp ){ /* The rowid is small enough that we are still in the ** main program. */ aOp = p->aOp; }else{ /* We are currently listing subprograms. Figure out which one and ** pick up the appropriate opcode. */ int j; i -= p->nOp; assert( apSub!=0 ); assert( nSub>0 ); for(j=0; i>=apSub[j]->nOp; j++){ i -= apSub[j]->nOp; assert( inOp || j+1aOp; } /* When an OP_Program opcode is encounter (the only opcode that has ** a P4_SUBPROGRAM argument), expand the size of the array of subprograms ** kept in p->aMem[9].z to hold the new program - assuming this subprogram ** has not already been seen. */ if( pSub!=0 && aOp[i].p4type==P4_SUBPROGRAM ){ int nByte = (nSub+1)*sizeof(SubProgram*); int j; for(j=0; jrc = sqlite3VdbeMemGrow(pSub, nByte, nSub!=0); if( p->rc!=SQLITE_OK ){ rc = SQLITE_ERROR; break; } apSub = (SubProgram **)pSub->z; apSub[nSub++] = aOp[i].p4.pProgram; MemSetTypeFlag(pSub, MEM_Blob); pSub->n = nSub*sizeof(SubProgram*); nRow += aOp[i].p4.pProgram->nOp; } } if( eMode==0 ) break; #ifdef SQLITE_ENABLE_BYTECODE_VTAB if( eMode==2 ){ Op *pOp = aOp + i; if( pOp->opcode==OP_OpenRead ) break; if( pOp->opcode==OP_OpenWrite && (pOp->p5 & OPFLAG_P2ISREG)==0 ) break; if( pOp->opcode==OP_ReopenIdx ) break; }else #endif { assert( eMode==1 ); if( aOp[i].opcode==OP_Explain ) break; if( aOp[i].opcode==OP_Init && iPc>1 ) break; } } *piPc = iPc; *piAddr = i; *paOp = aOp; return rc; } #endif /* SQLITE_ENABLE_BYTECODE_VTAB || !SQLITE_OMIT_EXPLAIN */ /* ** Delete a VdbeFrame object and its contents. VdbeFrame objects are ** allocated by the OP_Program opcode in sqlite3VdbeExec(). */ SQLITE_PRIVATE void sqlite3VdbeFrameDelete(VdbeFrame *p){ int i; Mem *aMem = VdbeFrameMem(p); VdbeCursor **apCsr = (VdbeCursor **)&aMem[p->nChildMem]; assert( sqlite3VdbeFrameIsValid(p) ); for(i=0; inChildCsr; i++){ sqlite3VdbeFreeCursor(p->v, apCsr[i]); } releaseMemArray(aMem, p->nChildMem); sqlite3VdbeDeleteAuxData(p->v->db, &p->pAuxData, -1, 0); sqlite3DbFree(p->v->db, p); } #ifndef SQLITE_OMIT_EXPLAIN /* ** Give a listing of the program in the virtual machine. ** ** The interface is the same as sqlite3VdbeExec(). But instead of ** running the code, it invokes the callback once for each instruction. ** This feature is used to implement "EXPLAIN". ** ** When p->explain==1, each instruction is listed. When ** p->explain==2, only OP_Explain instructions are listed and these ** are shown in a different format. p->explain==2 is used to implement ** EXPLAIN QUERY PLAN. ** 2018-04-24: In p->explain==2 mode, the OP_Init opcodes of triggers ** are also shown, so that the boundaries between the main program and ** each trigger are clear. ** ** When p->explain==1, first the main program is listed, then each of ** the trigger subprograms are listed one by one. */ SQLITE_PRIVATE int sqlite3VdbeList( Vdbe *p /* The VDBE */ ){ Mem *pSub = 0; /* Memory cell hold array of subprogs */ sqlite3 *db = p->db; /* The database connection */ int i; /* Loop counter */ int rc = SQLITE_OK; /* Return code */ Mem *pMem = &p->aMem[1]; /* First Mem of result set */ int bListSubprogs = (p->explain==1 || (db->flags & SQLITE_TriggerEQP)!=0); Op *aOp; /* Array of opcodes */ Op *pOp; /* Current opcode */ assert( p->explain ); assert( p->magic==VDBE_MAGIC_RUN ); assert( p->rc==SQLITE_OK || p->rc==SQLITE_BUSY || p->rc==SQLITE_NOMEM ); /* Even though this opcode does not use dynamic strings for ** the result, result columns may become dynamic if the user calls ** sqlite3_column_text16(), causing a translation to UTF-16 encoding. */ releaseMemArray(pMem, 8); p->pResultSet = 0; if( p->rc==SQLITE_NOMEM ){ /* This happens if a malloc() inside a call to sqlite3_column_text() or ** sqlite3_column_text16() failed. */ sqlite3OomFault(db); return SQLITE_ERROR; } if( bListSubprogs ){ /* The first 8 memory cells are used for the result set. So we will ** commandeer the 9th cell to use as storage for an array of pointers ** to trigger subprograms. The VDBE is guaranteed to have at least 9 ** cells. */ assert( p->nMem>9 ); pSub = &p->aMem[9]; }else{ pSub = 0; } /* Figure out which opcode is next to display */ rc = sqlite3VdbeNextOpcode(p, pSub, p->explain==2, &p->pc, &i, &aOp); if( rc==SQLITE_OK ){ pOp = aOp + i; if( AtomicLoad(&db->u1.isInterrupted) ){ p->rc = SQLITE_INTERRUPT; rc = SQLITE_ERROR; sqlite3VdbeError(p, sqlite3ErrStr(p->rc)); }else{ char *zP4 = sqlite3VdbeDisplayP4(db, pOp); if( p->explain==2 ){ sqlite3VdbeMemSetInt64(pMem, pOp->p1); sqlite3VdbeMemSetInt64(pMem+1, pOp->p2); sqlite3VdbeMemSetInt64(pMem+2, pOp->p3); sqlite3VdbeMemSetStr(pMem+3, zP4, -1, SQLITE_UTF8, sqlite3_free); p->nResColumn = 4; }else{ sqlite3VdbeMemSetInt64(pMem+0, i); sqlite3VdbeMemSetStr(pMem+1, (char*)sqlite3OpcodeName(pOp->opcode), -1, SQLITE_UTF8, SQLITE_STATIC); sqlite3VdbeMemSetInt64(pMem+2, pOp->p1); sqlite3VdbeMemSetInt64(pMem+3, pOp->p2); sqlite3VdbeMemSetInt64(pMem+4, pOp->p3); /* pMem+5 for p4 is done last */ sqlite3VdbeMemSetInt64(pMem+6, pOp->p5); #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS { char *zCom = sqlite3VdbeDisplayComment(db, pOp, zP4); sqlite3VdbeMemSetStr(pMem+7, zCom, -1, SQLITE_UTF8, sqlite3_free); } #else sqlite3VdbeMemSetNull(pMem+7); #endif sqlite3VdbeMemSetStr(pMem+5, zP4, -1, SQLITE_UTF8, sqlite3_free); p->nResColumn = 8; } p->pResultSet = pMem; if( db->mallocFailed ){ p->rc = SQLITE_NOMEM; rc = SQLITE_ERROR; }else{ p->rc = SQLITE_OK; rc = SQLITE_ROW; } } } return rc; } #endif /* SQLITE_OMIT_EXPLAIN */ #ifdef SQLITE_DEBUG /* ** Print the SQL that was used to generate a VDBE program. */ SQLITE_PRIVATE void sqlite3VdbePrintSql(Vdbe *p){ const char *z = 0; if( p->zSql ){ z = p->zSql; }else if( p->nOp>=1 ){ const VdbeOp *pOp = &p->aOp[0]; if( pOp->opcode==OP_Init && pOp->p4.z!=0 ){ z = pOp->p4.z; while( sqlite3Isspace(*z) ) z++; } } if( z ) printf("SQL: [%s]\n", z); } #endif #if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE) /* ** Print an IOTRACE message showing SQL content. */ SQLITE_PRIVATE void sqlite3VdbeIOTraceSql(Vdbe *p){ int nOp = p->nOp; VdbeOp *pOp; if( sqlite3IoTrace==0 ) return; if( nOp<1 ) return; pOp = &p->aOp[0]; if( pOp->opcode==OP_Init && pOp->p4.z!=0 ){ int i, j; char z[1000]; sqlite3_snprintf(sizeof(z), z, "%s", pOp->p4.z); for(i=0; sqlite3Isspace(z[i]); i++){} for(j=0; z[i]; i++){ if( sqlite3Isspace(z[i]) ){ if( z[i-1]!=' ' ){ z[j++] = ' '; } }else{ z[j++] = z[i]; } } z[j] = 0; sqlite3IoTrace("SQL %s\n", z); } } #endif /* !SQLITE_OMIT_TRACE && SQLITE_ENABLE_IOTRACE */ /* An instance of this object describes bulk memory available for use ** by subcomponents of a prepared statement. Space is allocated out ** of a ReusableSpace object by the allocSpace() routine below. */ struct ReusableSpace { u8 *pSpace; /* Available memory */ sqlite3_int64 nFree; /* Bytes of available memory */ sqlite3_int64 nNeeded; /* Total bytes that could not be allocated */ }; /* Try to allocate nByte bytes of 8-byte aligned bulk memory for pBuf ** from the ReusableSpace object. Return a pointer to the allocated ** memory on success. If insufficient memory is available in the ** ReusableSpace object, increase the ReusableSpace.nNeeded ** value by the amount needed and return NULL. ** ** If pBuf is not initially NULL, that means that the memory has already ** been allocated by a prior call to this routine, so just return a copy ** of pBuf and leave ReusableSpace unchanged. ** ** This allocator is employed to repurpose unused slots at the end of the ** opcode array of prepared state for other memory needs of the prepared ** statement. */ static void *allocSpace( struct ReusableSpace *p, /* Bulk memory available for allocation */ void *pBuf, /* Pointer to a prior allocation */ sqlite3_int64 nByte /* Bytes of memory needed */ ){ assert( EIGHT_BYTE_ALIGNMENT(p->pSpace) ); if( pBuf==0 ){ nByte = ROUND8(nByte); if( nByte <= p->nFree ){ p->nFree -= nByte; pBuf = &p->pSpace[p->nFree]; }else{ p->nNeeded += nByte; } } assert( EIGHT_BYTE_ALIGNMENT(pBuf) ); return pBuf; } /* ** Rewind the VDBE back to the beginning in preparation for ** running it. */ SQLITE_PRIVATE void sqlite3VdbeRewind(Vdbe *p){ #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) int i; #endif assert( p!=0 ); assert( p->magic==VDBE_MAGIC_INIT || p->magic==VDBE_MAGIC_RESET ); /* There should be at least one opcode. */ assert( p->nOp>0 ); /* Set the magic to VDBE_MAGIC_RUN sooner rather than later. */ p->magic = VDBE_MAGIC_RUN; #ifdef SQLITE_DEBUG for(i=0; inMem; i++){ assert( p->aMem[i].db==p->db ); } #endif p->pc = -1; p->rc = SQLITE_OK; p->errorAction = OE_Abort; p->nChange = 0; p->cacheCtr = 1; p->minWriteFileFormat = 255; p->iStatement = 0; p->nFkConstraint = 0; #ifdef VDBE_PROFILE for(i=0; inOp; i++){ p->aOp[i].cnt = 0; p->aOp[i].cycles = 0; } #endif } /* ** Prepare a virtual machine for execution for the first time after ** creating the virtual machine. This involves things such ** as allocating registers and initializing the program counter. ** After the VDBE has be prepped, it can be executed by one or more ** calls to sqlite3VdbeExec(). ** ** This function may be called exactly once on each virtual machine. ** After this routine is called the VM has been "packaged" and is ready ** to run. After this routine is called, further calls to ** sqlite3VdbeAddOp() functions are prohibited. This routine disconnects ** the Vdbe from the Parse object that helped generate it so that the ** the Vdbe becomes an independent entity and the Parse object can be ** destroyed. ** ** Use the sqlite3VdbeRewind() procedure to restore a virtual machine back ** to its initial state after it has been run. */ SQLITE_PRIVATE void sqlite3VdbeMakeReady( Vdbe *p, /* The VDBE */ Parse *pParse /* Parsing context */ ){ sqlite3 *db; /* The database connection */ int nVar; /* Number of parameters */ int nMem; /* Number of VM memory registers */ int nCursor; /* Number of cursors required */ int nArg; /* Number of arguments in subprograms */ int n; /* Loop counter */ struct ReusableSpace x; /* Reusable bulk memory */ assert( p!=0 ); assert( p->nOp>0 ); assert( pParse!=0 ); assert( p->magic==VDBE_MAGIC_INIT ); assert( pParse==p->pParse ); db = p->db; assert( db->mallocFailed==0 ); nVar = pParse->nVar; nMem = pParse->nMem; nCursor = pParse->nTab; nArg = pParse->nMaxArg; /* Each cursor uses a memory cell. The first cursor (cursor 0) can ** use aMem[0] which is not otherwise used by the VDBE program. Allocate ** space at the end of aMem[] for cursors 1 and greater. ** See also: allocateCursor(). */ nMem += nCursor; if( nCursor==0 && nMem>0 ) nMem++; /* Space for aMem[0] even if not used */ /* Figure out how much reusable memory is available at the end of the ** opcode array. This extra memory will be reallocated for other elements ** of the prepared statement. */ n = ROUND8(sizeof(Op)*p->nOp); /* Bytes of opcode memory used */ x.pSpace = &((u8*)p->aOp)[n]; /* Unused opcode memory */ assert( EIGHT_BYTE_ALIGNMENT(x.pSpace) ); x.nFree = ROUNDDOWN8(pParse->szOpAlloc - n); /* Bytes of unused memory */ assert( x.nFree>=0 ); assert( EIGHT_BYTE_ALIGNMENT(&x.pSpace[x.nFree]) ); resolveP2Values(p, &nArg); p->usesStmtJournal = (u8)(pParse->isMultiWrite && pParse->mayAbort); if( pParse->explain ){ static const char * const azColName[] = { "addr", "opcode", "p1", "p2", "p3", "p4", "p5", "comment", "id", "parent", "notused", "detail" }; int iFirst, mx, i; if( nMem<10 ) nMem = 10; p->explain = pParse->explain; if( pParse->explain==2 ){ sqlite3VdbeSetNumCols(p, 4); iFirst = 8; mx = 12; }else{ sqlite3VdbeSetNumCols(p, 8); iFirst = 0; mx = 8; } for(i=iFirst; iexpired = 0; /* Memory for registers, parameters, cursor, etc, is allocated in one or two ** passes. On the first pass, we try to reuse unused memory at the ** end of the opcode array. If we are unable to satisfy all memory ** requirements by reusing the opcode array tail, then the second ** pass will fill in the remainder using a fresh memory allocation. ** ** This two-pass approach that reuses as much memory as possible from ** the leftover memory at the end of the opcode array. This can significantly ** reduce the amount of memory held by a prepared statement. */ x.nNeeded = 0; p->aMem = allocSpace(&x, 0, nMem*sizeof(Mem)); p->aVar = allocSpace(&x, 0, nVar*sizeof(Mem)); p->apArg = allocSpace(&x, 0, nArg*sizeof(Mem*)); p->apCsr = allocSpace(&x, 0, nCursor*sizeof(VdbeCursor*)); #ifdef SQLITE_ENABLE_STMT_SCANSTATUS p->anExec = allocSpace(&x, 0, p->nOp*sizeof(i64)); #endif if( x.nNeeded ){ x.pSpace = p->pFree = sqlite3DbMallocRawNN(db, x.nNeeded); x.nFree = x.nNeeded; if( !db->mallocFailed ){ p->aMem = allocSpace(&x, p->aMem, nMem*sizeof(Mem)); p->aVar = allocSpace(&x, p->aVar, nVar*sizeof(Mem)); p->apArg = allocSpace(&x, p->apArg, nArg*sizeof(Mem*)); p->apCsr = allocSpace(&x, p->apCsr, nCursor*sizeof(VdbeCursor*)); #ifdef SQLITE_ENABLE_STMT_SCANSTATUS p->anExec = allocSpace(&x, p->anExec, p->nOp*sizeof(i64)); #endif } } p->pVList = pParse->pVList; pParse->pVList = 0; if( db->mallocFailed ){ p->nVar = 0; p->nCursor = 0; p->nMem = 0; }else{ p->nCursor = nCursor; p->nVar = (ynVar)nVar; initMemArray(p->aVar, nVar, db, MEM_Null); p->nMem = nMem; initMemArray(p->aMem, nMem, db, MEM_Undefined); memset(p->apCsr, 0, nCursor*sizeof(VdbeCursor*)); #ifdef SQLITE_ENABLE_STMT_SCANSTATUS memset(p->anExec, 0, p->nOp*sizeof(i64)); #endif } sqlite3VdbeRewind(p); } /* ** Close a VDBE cursor and release all the resources that cursor ** happens to hold. */ SQLITE_PRIVATE void sqlite3VdbeFreeCursor(Vdbe *p, VdbeCursor *pCx){ if( pCx==0 ){ return; } assert( pCx->pBtx==0 || pCx->eCurType==CURTYPE_BTREE ); switch( pCx->eCurType ){ case CURTYPE_SORTER: { sqlite3VdbeSorterClose(p->db, pCx); break; } case CURTYPE_BTREE: { if( pCx->isEphemeral ){ if( pCx->pBtx ) sqlite3BtreeClose(pCx->pBtx); /* The pCx->pCursor will be close automatically, if it exists, by ** the call above. */ }else{ assert( pCx->uc.pCursor!=0 ); sqlite3BtreeCloseCursor(pCx->uc.pCursor); } break; } #ifndef SQLITE_OMIT_VIRTUALTABLE case CURTYPE_VTAB: { sqlite3_vtab_cursor *pVCur = pCx->uc.pVCur; const sqlite3_module *pModule = pVCur->pVtab->pModule; assert( pVCur->pVtab->nRef>0 ); pVCur->pVtab->nRef--; pModule->xClose(pVCur); break; } #endif } } /* ** Close all cursors in the current frame. */ static void closeCursorsInFrame(Vdbe *p){ if( p->apCsr ){ int i; for(i=0; inCursor; i++){ VdbeCursor *pC = p->apCsr[i]; if( pC ){ sqlite3VdbeFreeCursor(p, pC); p->apCsr[i] = 0; } } } } /* ** Copy the values stored in the VdbeFrame structure to its Vdbe. This ** is used, for example, when a trigger sub-program is halted to restore ** control to the main program. */ SQLITE_PRIVATE int sqlite3VdbeFrameRestore(VdbeFrame *pFrame){ Vdbe *v = pFrame->v; closeCursorsInFrame(v); #ifdef SQLITE_ENABLE_STMT_SCANSTATUS v->anExec = pFrame->anExec; #endif v->aOp = pFrame->aOp; v->nOp = pFrame->nOp; v->aMem = pFrame->aMem; v->nMem = pFrame->nMem; v->apCsr = pFrame->apCsr; v->nCursor = pFrame->nCursor; v->db->lastRowid = pFrame->lastRowid; v->nChange = pFrame->nChange; v->db->nChange = pFrame->nDbChange; sqlite3VdbeDeleteAuxData(v->db, &v->pAuxData, -1, 0); v->pAuxData = pFrame->pAuxData; pFrame->pAuxData = 0; return pFrame->pc; } /* ** Close all cursors. ** ** Also release any dynamic memory held by the VM in the Vdbe.aMem memory ** cell array. This is necessary as the memory cell array may contain ** pointers to VdbeFrame objects, which may in turn contain pointers to ** open cursors. */ static void closeAllCursors(Vdbe *p){ if( p->pFrame ){ VdbeFrame *pFrame; for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent); sqlite3VdbeFrameRestore(pFrame); p->pFrame = 0; p->nFrame = 0; } assert( p->nFrame==0 ); closeCursorsInFrame(p); if( p->aMem ){ releaseMemArray(p->aMem, p->nMem); } while( p->pDelFrame ){ VdbeFrame *pDel = p->pDelFrame; p->pDelFrame = pDel->pParent; sqlite3VdbeFrameDelete(pDel); } /* Delete any auxdata allocations made by the VM */ if( p->pAuxData ) sqlite3VdbeDeleteAuxData(p->db, &p->pAuxData, -1, 0); assert( p->pAuxData==0 ); } /* ** Set the number of result columns that will be returned by this SQL ** statement. This is now set at compile time, rather than during ** execution of the vdbe program so that sqlite3_column_count() can ** be called on an SQL statement before sqlite3_step(). */ SQLITE_PRIVATE void sqlite3VdbeSetNumCols(Vdbe *p, int nResColumn){ int n; sqlite3 *db = p->db; if( p->nResColumn ){ releaseMemArray(p->aColName, p->nResColumn*COLNAME_N); sqlite3DbFree(db, p->aColName); } n = nResColumn*COLNAME_N; p->nResColumn = (u16)nResColumn; p->aColName = (Mem*)sqlite3DbMallocRawNN(db, sizeof(Mem)*n ); if( p->aColName==0 ) return; initMemArray(p->aColName, n, db, MEM_Null); } /* ** Set the name of the idx'th column to be returned by the SQL statement. ** zName must be a pointer to a nul terminated string. ** ** This call must be made after a call to sqlite3VdbeSetNumCols(). ** ** The final parameter, xDel, must be one of SQLITE_DYNAMIC, SQLITE_STATIC ** or SQLITE_TRANSIENT. If it is SQLITE_DYNAMIC, then the buffer pointed ** to by zName will be freed by sqlite3DbFree() when the vdbe is destroyed. */ SQLITE_PRIVATE int sqlite3VdbeSetColName( Vdbe *p, /* Vdbe being configured */ int idx, /* Index of column zName applies to */ int var, /* One of the COLNAME_* constants */ const char *zName, /* Pointer to buffer containing name */ void (*xDel)(void*) /* Memory management strategy for zName */ ){ int rc; Mem *pColName; assert( idxnResColumn ); assert( vardb->mallocFailed ){ assert( !zName || xDel!=SQLITE_DYNAMIC ); return SQLITE_NOMEM_BKPT; } assert( p->aColName!=0 ); pColName = &(p->aColName[idx+var*p->nResColumn]); rc = sqlite3VdbeMemSetStr(pColName, zName, -1, SQLITE_UTF8, xDel); assert( rc!=0 || !zName || (pColName->flags&MEM_Term)!=0 ); return rc; } /* ** A read or write transaction may or may not be active on database handle ** db. If a transaction is active, commit it. If there is a ** write-transaction spanning more than one database file, this routine ** takes care of the super-journal trickery. */ static int vdbeCommit(sqlite3 *db, Vdbe *p){ int i; int nTrans = 0; /* Number of databases with an active write-transaction ** that are candidates for a two-phase commit using a ** super-journal */ int rc = SQLITE_OK; int needXcommit = 0; #ifdef SQLITE_OMIT_VIRTUALTABLE /* With this option, sqlite3VtabSync() is defined to be simply ** SQLITE_OK so p is not used. */ UNUSED_PARAMETER(p); #endif /* Before doing anything else, call the xSync() callback for any ** virtual module tables written in this transaction. This has to ** be done before determining whether a super-journal file is ** required, as an xSync() callback may add an attached database ** to the transaction. */ rc = sqlite3VtabSync(db, p); /* This loop determines (a) if the commit hook should be invoked and ** (b) how many database files have open write transactions, not ** including the temp database. (b) is important because if more than ** one database file has an open write transaction, a super-journal ** file is required for an atomic commit. */ for(i=0; rc==SQLITE_OK && inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( sqlite3BtreeIsInTrans(pBt) ){ /* Whether or not a database might need a super-journal depends upon ** its journal mode (among other things). This matrix determines which ** journal modes use a super-journal and which do not */ static const u8 aMJNeeded[] = { /* DELETE */ 1, /* PERSIST */ 1, /* OFF */ 0, /* TRUNCATE */ 1, /* MEMORY */ 0, /* WAL */ 0 }; Pager *pPager; /* Pager associated with pBt */ needXcommit = 1; sqlite3BtreeEnter(pBt); pPager = sqlite3BtreePager(pBt); if( db->aDb[i].safety_level!=PAGER_SYNCHRONOUS_OFF && aMJNeeded[sqlite3PagerGetJournalMode(pPager)] && sqlite3PagerIsMemdb(pPager)==0 ){ assert( i!=1 ); nTrans++; } rc = sqlite3PagerExclusiveLock(pPager); sqlite3BtreeLeave(pBt); } } if( rc!=SQLITE_OK ){ return rc; } /* If there are any write-transactions at all, invoke the commit hook */ if( needXcommit && db->xCommitCallback ){ rc = db->xCommitCallback(db->pCommitArg); if( rc ){ return SQLITE_CONSTRAINT_COMMITHOOK; } } /* The simple case - no more than one database file (not counting the ** TEMP database) has a transaction active. There is no need for the ** super-journal. ** ** If the return value of sqlite3BtreeGetFilename() is a zero length ** string, it means the main database is :memory: or a temp file. In ** that case we do not support atomic multi-file commits, so use the ** simple case then too. */ if( 0==sqlite3Strlen30(sqlite3BtreeGetFilename(db->aDb[0].pBt)) || nTrans<=1 ){ for(i=0; rc==SQLITE_OK && inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ rc = sqlite3BtreeCommitPhaseOne(pBt, 0); } } /* Do the commit only if all databases successfully complete phase 1. ** If one of the BtreeCommitPhaseOne() calls fails, this indicates an ** IO error while deleting or truncating a journal file. It is unlikely, ** but could happen. In this case abandon processing and return the error. */ for(i=0; rc==SQLITE_OK && inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ rc = sqlite3BtreeCommitPhaseTwo(pBt, 0); } } if( rc==SQLITE_OK ){ sqlite3VtabCommit(db); } } /* The complex case - There is a multi-file write-transaction active. ** This requires a super-journal file to ensure the transaction is ** committed atomically. */ #ifndef SQLITE_OMIT_DISKIO else{ sqlite3_vfs *pVfs = db->pVfs; char *zSuper = 0; /* File-name for the super-journal */ char const *zMainFile = sqlite3BtreeGetFilename(db->aDb[0].pBt); sqlite3_file *pSuperJrnl = 0; i64 offset = 0; int res; int retryCount = 0; int nMainFile; /* Select a super-journal file name */ nMainFile = sqlite3Strlen30(zMainFile); zSuper = sqlite3MPrintf(db, "%.4c%s%.16c", 0,zMainFile,0); if( zSuper==0 ) return SQLITE_NOMEM_BKPT; zSuper += 4; do { u32 iRandom; if( retryCount ){ if( retryCount>100 ){ sqlite3_log(SQLITE_FULL, "MJ delete: %s", zSuper); sqlite3OsDelete(pVfs, zSuper, 0); break; }else if( retryCount==1 ){ sqlite3_log(SQLITE_FULL, "MJ collide: %s", zSuper); } } retryCount++; sqlite3_randomness(sizeof(iRandom), &iRandom); sqlite3_snprintf(13, &zSuper[nMainFile], "-mj%06X9%02X", (iRandom>>8)&0xffffff, iRandom&0xff); /* The antipenultimate character of the super-journal name must ** be "9" to avoid name collisions when using 8+3 filenames. */ assert( zSuper[sqlite3Strlen30(zSuper)-3]=='9' ); sqlite3FileSuffix3(zMainFile, zSuper); rc = sqlite3OsAccess(pVfs, zSuper, SQLITE_ACCESS_EXISTS, &res); }while( rc==SQLITE_OK && res ); if( rc==SQLITE_OK ){ /* Open the super-journal. */ rc = sqlite3OsOpenMalloc(pVfs, zSuper, &pSuperJrnl, SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE| SQLITE_OPEN_EXCLUSIVE|SQLITE_OPEN_SUPER_JOURNAL, 0 ); } if( rc!=SQLITE_OK ){ sqlite3DbFree(db, zSuper-4); return rc; } /* Write the name of each database file in the transaction into the new ** super-journal file. If an error occurs at this point close ** and delete the super-journal file. All the individual journal files ** still have 'null' as the super-journal pointer, so they will roll ** back independently if a failure occurs. */ for(i=0; inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( sqlite3BtreeIsInTrans(pBt) ){ char const *zFile = sqlite3BtreeGetJournalname(pBt); if( zFile==0 ){ continue; /* Ignore TEMP and :memory: databases */ } assert( zFile[0]!=0 ); rc = sqlite3OsWrite(pSuperJrnl, zFile, sqlite3Strlen30(zFile)+1,offset); offset += sqlite3Strlen30(zFile)+1; if( rc!=SQLITE_OK ){ sqlite3OsCloseFree(pSuperJrnl); sqlite3OsDelete(pVfs, zSuper, 0); sqlite3DbFree(db, zSuper-4); return rc; } } } /* Sync the super-journal file. If the IOCAP_SEQUENTIAL device ** flag is set this is not required. */ if( 0==(sqlite3OsDeviceCharacteristics(pSuperJrnl)&SQLITE_IOCAP_SEQUENTIAL) && SQLITE_OK!=(rc = sqlite3OsSync(pSuperJrnl, SQLITE_SYNC_NORMAL)) ){ sqlite3OsCloseFree(pSuperJrnl); sqlite3OsDelete(pVfs, zSuper, 0); sqlite3DbFree(db, zSuper-4); return rc; } /* Sync all the db files involved in the transaction. The same call ** sets the super-journal pointer in each individual journal. If ** an error occurs here, do not delete the super-journal file. ** ** If the error occurs during the first call to ** sqlite3BtreeCommitPhaseOne(), then there is a chance that the ** super-journal file will be orphaned. But we cannot delete it, ** in case the super-journal file name was written into the journal ** file before the failure occurred. */ for(i=0; rc==SQLITE_OK && inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ rc = sqlite3BtreeCommitPhaseOne(pBt, zSuper); } } sqlite3OsCloseFree(pSuperJrnl); assert( rc!=SQLITE_BUSY ); if( rc!=SQLITE_OK ){ sqlite3DbFree(db, zSuper-4); return rc; } /* Delete the super-journal file. This commits the transaction. After ** doing this the directory is synced again before any individual ** transaction files are deleted. */ rc = sqlite3OsDelete(pVfs, zSuper, 1); sqlite3DbFree(db, zSuper-4); zSuper = 0; if( rc ){ return rc; } /* All files and directories have already been synced, so the following ** calls to sqlite3BtreeCommitPhaseTwo() are only closing files and ** deleting or truncating journals. If something goes wrong while ** this is happening we don't really care. The integrity of the ** transaction is already guaranteed, but some stray 'cold' journals ** may be lying around. Returning an error code won't help matters. */ disable_simulated_io_errors(); sqlite3BeginBenignMalloc(); for(i=0; inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ sqlite3BtreeCommitPhaseTwo(pBt, 1); } } sqlite3EndBenignMalloc(); enable_simulated_io_errors(); sqlite3VtabCommit(db); } #endif return rc; } /* ** This routine checks that the sqlite3.nVdbeActive count variable ** matches the number of vdbe's in the list sqlite3.pVdbe that are ** currently active. An assertion fails if the two counts do not match. ** This is an internal self-check only - it is not an essential processing ** step. ** ** This is a no-op if NDEBUG is defined. */ #ifndef NDEBUG static void checkActiveVdbeCnt(sqlite3 *db){ Vdbe *p; int cnt = 0; int nWrite = 0; int nRead = 0; p = db->pVdbe; while( p ){ if( sqlite3_stmt_busy((sqlite3_stmt*)p) ){ cnt++; if( p->readOnly==0 ) nWrite++; if( p->bIsReader ) nRead++; } p = p->pNext; } assert( cnt==db->nVdbeActive ); assert( nWrite==db->nVdbeWrite ); assert( nRead==db->nVdbeRead ); } #else #define checkActiveVdbeCnt(x) #endif /* ** If the Vdbe passed as the first argument opened a statement-transaction, ** close it now. Argument eOp must be either SAVEPOINT_ROLLBACK or ** SAVEPOINT_RELEASE. If it is SAVEPOINT_ROLLBACK, then the statement ** transaction is rolled back. If eOp is SAVEPOINT_RELEASE, then the ** statement transaction is committed. ** ** If an IO error occurs, an SQLITE_IOERR_XXX error code is returned. ** Otherwise SQLITE_OK. */ static SQLITE_NOINLINE int vdbeCloseStatement(Vdbe *p, int eOp){ sqlite3 *const db = p->db; int rc = SQLITE_OK; int i; const int iSavepoint = p->iStatement-1; assert( eOp==SAVEPOINT_ROLLBACK || eOp==SAVEPOINT_RELEASE); assert( db->nStatement>0 ); assert( p->iStatement==(db->nStatement+db->nSavepoint) ); for(i=0; inDb; i++){ int rc2 = SQLITE_OK; Btree *pBt = db->aDb[i].pBt; if( pBt ){ if( eOp==SAVEPOINT_ROLLBACK ){ rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint); } if( rc2==SQLITE_OK ){ rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint); } if( rc==SQLITE_OK ){ rc = rc2; } } } db->nStatement--; p->iStatement = 0; if( rc==SQLITE_OK ){ if( eOp==SAVEPOINT_ROLLBACK ){ rc = sqlite3VtabSavepoint(db, SAVEPOINT_ROLLBACK, iSavepoint); } if( rc==SQLITE_OK ){ rc = sqlite3VtabSavepoint(db, SAVEPOINT_RELEASE, iSavepoint); } } /* If the statement transaction is being rolled back, also restore the ** database handles deferred constraint counter to the value it had when ** the statement transaction was opened. */ if( eOp==SAVEPOINT_ROLLBACK ){ db->nDeferredCons = p->nStmtDefCons; db->nDeferredImmCons = p->nStmtDefImmCons; } return rc; } SQLITE_PRIVATE int sqlite3VdbeCloseStatement(Vdbe *p, int eOp){ if( p->db->nStatement && p->iStatement ){ return vdbeCloseStatement(p, eOp); } return SQLITE_OK; } /* ** This function is called when a transaction opened by the database ** handle associated with the VM passed as an argument is about to be ** committed. If there are outstanding deferred foreign key constraint ** violations, return SQLITE_ERROR. Otherwise, SQLITE_OK. ** ** If there are outstanding FK violations and this function returns ** SQLITE_ERROR, set the result of the VM to SQLITE_CONSTRAINT_FOREIGNKEY ** and write an error message to it. Then return SQLITE_ERROR. */ #ifndef SQLITE_OMIT_FOREIGN_KEY SQLITE_PRIVATE int sqlite3VdbeCheckFk(Vdbe *p, int deferred){ sqlite3 *db = p->db; if( (deferred && (db->nDeferredCons+db->nDeferredImmCons)>0) || (!deferred && p->nFkConstraint>0) ){ p->rc = SQLITE_CONSTRAINT_FOREIGNKEY; p->errorAction = OE_Abort; sqlite3VdbeError(p, "FOREIGN KEY constraint failed"); return SQLITE_ERROR; } return SQLITE_OK; } #endif /* ** This routine is called the when a VDBE tries to halt. If the VDBE ** has made changes and is in autocommit mode, then commit those ** changes. If a rollback is needed, then do the rollback. ** ** This routine is the only way to move the state of a VM from ** SQLITE_MAGIC_RUN to SQLITE_MAGIC_HALT. It is harmless to ** call this on a VM that is in the SQLITE_MAGIC_HALT state. ** ** Return an error code. If the commit could not complete because of ** lock contention, return SQLITE_BUSY. If SQLITE_BUSY is returned, it ** means the close did not happen and needs to be repeated. */ SQLITE_PRIVATE int sqlite3VdbeHalt(Vdbe *p){ int rc; /* Used to store transient return codes */ sqlite3 *db = p->db; /* This function contains the logic that determines if a statement or ** transaction will be committed or rolled back as a result of the ** execution of this virtual machine. ** ** If any of the following errors occur: ** ** SQLITE_NOMEM ** SQLITE_IOERR ** SQLITE_FULL ** SQLITE_INTERRUPT ** ** Then the internal cache might have been left in an inconsistent ** state. We need to rollback the statement transaction, if there is ** one, or the complete transaction if there is no statement transaction. */ if( p->magic!=VDBE_MAGIC_RUN ){ return SQLITE_OK; } if( db->mallocFailed ){ p->rc = SQLITE_NOMEM_BKPT; } closeAllCursors(p); checkActiveVdbeCnt(db); /* No commit or rollback needed if the program never started or if the ** SQL statement does not read or write a database file. */ if( p->pc>=0 && p->bIsReader ){ int mrc; /* Primary error code from p->rc */ int eStatementOp = 0; int isSpecialError; /* Set to true if a 'special' error */ /* Lock all btrees used by the statement */ sqlite3VdbeEnter(p); /* Check for one of the special errors */ mrc = p->rc & 0xff; isSpecialError = mrc==SQLITE_NOMEM || mrc==SQLITE_IOERR || mrc==SQLITE_INTERRUPT || mrc==SQLITE_FULL; if( isSpecialError ){ /* If the query was read-only and the error code is SQLITE_INTERRUPT, ** no rollback is necessary. Otherwise, at least a savepoint ** transaction must be rolled back to restore the database to a ** consistent state. ** ** Even if the statement is read-only, it is important to perform ** a statement or transaction rollback operation. If the error ** occurred while writing to the journal, sub-journal or database ** file as part of an effort to free up cache space (see function ** pagerStress() in pager.c), the rollback is required to restore ** the pager to a consistent state. */ if( !p->readOnly || mrc!=SQLITE_INTERRUPT ){ if( (mrc==SQLITE_NOMEM || mrc==SQLITE_FULL) && p->usesStmtJournal ){ eStatementOp = SAVEPOINT_ROLLBACK; }else{ /* We are forced to roll back the active transaction. Before doing ** so, abort any other statements this handle currently has active. */ sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); sqlite3CloseSavepoints(db); db->autoCommit = 1; p->nChange = 0; } } } /* Check for immediate foreign key violations. */ if( p->rc==SQLITE_OK || (p->errorAction==OE_Fail && !isSpecialError) ){ sqlite3VdbeCheckFk(p, 0); } /* If the auto-commit flag is set and this is the only active writer ** VM, then we do either a commit or rollback of the current transaction. ** ** Note: This block also runs if one of the special errors handled ** above has occurred. */ if( !sqlite3VtabInSync(db) && db->autoCommit && db->nVdbeWrite==(p->readOnly==0) ){ if( p->rc==SQLITE_OK || (p->errorAction==OE_Fail && !isSpecialError) ){ rc = sqlite3VdbeCheckFk(p, 1); if( rc!=SQLITE_OK ){ if( NEVER(p->readOnly) ){ sqlite3VdbeLeave(p); return SQLITE_ERROR; } rc = SQLITE_CONSTRAINT_FOREIGNKEY; }else{ /* The auto-commit flag is true, the vdbe program was successful ** or hit an 'OR FAIL' constraint and there are no deferred foreign ** key constraints to hold up the transaction. This means a commit ** is required. */ rc = vdbeCommit(db, p); } if( rc==SQLITE_BUSY && p->readOnly ){ sqlite3VdbeLeave(p); return SQLITE_BUSY; }else if( rc!=SQLITE_OK ){ p->rc = rc; sqlite3RollbackAll(db, SQLITE_OK); p->nChange = 0; }else{ db->nDeferredCons = 0; db->nDeferredImmCons = 0; db->flags &= ~(u64)SQLITE_DeferFKs; sqlite3CommitInternalChanges(db); } }else{ sqlite3RollbackAll(db, SQLITE_OK); p->nChange = 0; } db->nStatement = 0; }else if( eStatementOp==0 ){ if( p->rc==SQLITE_OK || p->errorAction==OE_Fail ){ eStatementOp = SAVEPOINT_RELEASE; }else if( p->errorAction==OE_Abort ){ eStatementOp = SAVEPOINT_ROLLBACK; }else{ sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); sqlite3CloseSavepoints(db); db->autoCommit = 1; p->nChange = 0; } } /* If eStatementOp is non-zero, then a statement transaction needs to ** be committed or rolled back. Call sqlite3VdbeCloseStatement() to ** do so. If this operation returns an error, and the current statement ** error code is SQLITE_OK or SQLITE_CONSTRAINT, then promote the ** current statement error code. */ if( eStatementOp ){ rc = sqlite3VdbeCloseStatement(p, eStatementOp); if( rc ){ if( p->rc==SQLITE_OK || (p->rc&0xff)==SQLITE_CONSTRAINT ){ p->rc = rc; sqlite3DbFree(db, p->zErrMsg); p->zErrMsg = 0; } sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); sqlite3CloseSavepoints(db); db->autoCommit = 1; p->nChange = 0; } } /* If this was an INSERT, UPDATE or DELETE and no statement transaction ** has been rolled back, update the database connection change-counter. */ if( p->changeCntOn ){ if( eStatementOp!=SAVEPOINT_ROLLBACK ){ sqlite3VdbeSetChanges(db, p->nChange); }else{ sqlite3VdbeSetChanges(db, 0); } p->nChange = 0; } /* Release the locks */ sqlite3VdbeLeave(p); } /* We have successfully halted and closed the VM. Record this fact. */ if( p->pc>=0 ){ db->nVdbeActive--; if( !p->readOnly ) db->nVdbeWrite--; if( p->bIsReader ) db->nVdbeRead--; assert( db->nVdbeActive>=db->nVdbeRead ); assert( db->nVdbeRead>=db->nVdbeWrite ); assert( db->nVdbeWrite>=0 ); } p->magic = VDBE_MAGIC_HALT; checkActiveVdbeCnt(db); if( db->mallocFailed ){ p->rc = SQLITE_NOMEM_BKPT; } /* If the auto-commit flag is set to true, then any locks that were held ** by connection db have now been released. Call sqlite3ConnectionUnlocked() ** to invoke any required unlock-notify callbacks. */ if( db->autoCommit ){ sqlite3ConnectionUnlocked(db); } assert( db->nVdbeActive>0 || db->autoCommit==0 || db->nStatement==0 ); return (p->rc==SQLITE_BUSY ? SQLITE_BUSY : SQLITE_OK); } /* ** Each VDBE holds the result of the most recent sqlite3_step() call ** in p->rc. This routine sets that result back to SQLITE_OK. */ SQLITE_PRIVATE void sqlite3VdbeResetStepResult(Vdbe *p){ p->rc = SQLITE_OK; } /* ** Copy the error code and error message belonging to the VDBE passed ** as the first argument to its database handle (so that they will be ** returned by calls to sqlite3_errcode() and sqlite3_errmsg()). ** ** This function does not clear the VDBE error code or message, just ** copies them to the database handle. */ SQLITE_PRIVATE int sqlite3VdbeTransferError(Vdbe *p){ sqlite3 *db = p->db; int rc = p->rc; if( p->zErrMsg ){ db->bBenignMalloc++; sqlite3BeginBenignMalloc(); if( db->pErr==0 ) db->pErr = sqlite3ValueNew(db); sqlite3ValueSetStr(db->pErr, -1, p->zErrMsg, SQLITE_UTF8, SQLITE_TRANSIENT); sqlite3EndBenignMalloc(); db->bBenignMalloc--; }else if( db->pErr ){ sqlite3ValueSetNull(db->pErr); } db->errCode = rc; return rc; } #ifdef SQLITE_ENABLE_SQLLOG /* ** If an SQLITE_CONFIG_SQLLOG hook is registered and the VM has been run, ** invoke it. */ static void vdbeInvokeSqllog(Vdbe *v){ if( sqlite3GlobalConfig.xSqllog && v->rc==SQLITE_OK && v->zSql && v->pc>=0 ){ char *zExpanded = sqlite3VdbeExpandSql(v, v->zSql); assert( v->db->init.busy==0 ); if( zExpanded ){ sqlite3GlobalConfig.xSqllog( sqlite3GlobalConfig.pSqllogArg, v->db, zExpanded, 1 ); sqlite3DbFree(v->db, zExpanded); } } } #else # define vdbeInvokeSqllog(x) #endif /* ** Clean up a VDBE after execution but do not delete the VDBE just yet. ** Write any error messages into *pzErrMsg. Return the result code. ** ** After this routine is run, the VDBE should be ready to be executed ** again. ** ** To look at it another way, this routine resets the state of the ** virtual machine from VDBE_MAGIC_RUN or VDBE_MAGIC_HALT back to ** VDBE_MAGIC_INIT. */ SQLITE_PRIVATE int sqlite3VdbeReset(Vdbe *p){ #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) int i; #endif sqlite3 *db; db = p->db; /* If the VM did not run to completion or if it encountered an ** error, then it might not have been halted properly. So halt ** it now. */ sqlite3VdbeHalt(p); /* If the VDBE has been run even partially, then transfer the error code ** and error message from the VDBE into the main database structure. But ** if the VDBE has just been set to run but has not actually executed any ** instructions yet, leave the main database error information unchanged. */ if( p->pc>=0 ){ vdbeInvokeSqllog(p); if( db->pErr || p->zErrMsg ){ sqlite3VdbeTransferError(p); }else{ db->errCode = p->rc; } if( p->runOnlyOnce ) p->expired = 1; }else if( p->rc && p->expired ){ /* The expired flag was set on the VDBE before the first call ** to sqlite3_step(). For consistency (since sqlite3_step() was ** called), set the database error in this case as well. */ sqlite3ErrorWithMsg(db, p->rc, p->zErrMsg ? "%s" : 0, p->zErrMsg); } /* Reset register contents and reclaim error message memory. */ #ifdef SQLITE_DEBUG /* Execute assert() statements to ensure that the Vdbe.apCsr[] and ** Vdbe.aMem[] arrays have already been cleaned up. */ if( p->apCsr ) for(i=0; inCursor; i++) assert( p->apCsr[i]==0 ); if( p->aMem ){ for(i=0; inMem; i++) assert( p->aMem[i].flags==MEM_Undefined ); } #endif if( p->zErrMsg ){ sqlite3DbFree(db, p->zErrMsg); p->zErrMsg = 0; } p->pResultSet = 0; #ifdef SQLITE_DEBUG p->nWrite = 0; #endif /* Save profiling information from this VDBE run. */ #ifdef VDBE_PROFILE { FILE *out = fopen("vdbe_profile.out", "a"); if( out ){ fprintf(out, "---- "); for(i=0; inOp; i++){ fprintf(out, "%02x", p->aOp[i].opcode); } fprintf(out, "\n"); if( p->zSql ){ char c, pc = 0; fprintf(out, "-- "); for(i=0; (c = p->zSql[i])!=0; i++){ if( pc=='\n' ) fprintf(out, "-- "); putc(c, out); pc = c; } if( pc!='\n' ) fprintf(out, "\n"); } for(i=0; inOp; i++){ char zHdr[100]; sqlite3_snprintf(sizeof(zHdr), zHdr, "%6u %12llu %8llu ", p->aOp[i].cnt, p->aOp[i].cycles, p->aOp[i].cnt>0 ? p->aOp[i].cycles/p->aOp[i].cnt : 0 ); fprintf(out, "%s", zHdr); sqlite3VdbePrintOp(out, i, &p->aOp[i]); } fclose(out); } } #endif p->magic = VDBE_MAGIC_RESET; return p->rc & db->errMask; } /* ** Clean up and delete a VDBE after execution. Return an integer which is ** the result code. Write any error message text into *pzErrMsg. */ SQLITE_PRIVATE int sqlite3VdbeFinalize(Vdbe *p){ int rc = SQLITE_OK; if( p->magic==VDBE_MAGIC_RUN || p->magic==VDBE_MAGIC_HALT ){ rc = sqlite3VdbeReset(p); assert( (rc & p->db->errMask)==rc ); } sqlite3VdbeDelete(p); return rc; } /* ** If parameter iOp is less than zero, then invoke the destructor for ** all auxiliary data pointers currently cached by the VM passed as ** the first argument. ** ** Or, if iOp is greater than or equal to zero, then the destructor is ** only invoked for those auxiliary data pointers created by the user ** function invoked by the OP_Function opcode at instruction iOp of ** VM pVdbe, and only then if: ** ** * the associated function parameter is the 32nd or later (counting ** from left to right), or ** ** * the corresponding bit in argument mask is clear (where the first ** function parameter corresponds to bit 0 etc.). */ SQLITE_PRIVATE void sqlite3VdbeDeleteAuxData(sqlite3 *db, AuxData **pp, int iOp, int mask){ while( *pp ){ AuxData *pAux = *pp; if( (iOp<0) || (pAux->iAuxOp==iOp && pAux->iAuxArg>=0 && (pAux->iAuxArg>31 || !(mask & MASKBIT32(pAux->iAuxArg)))) ){ testcase( pAux->iAuxArg==31 ); if( pAux->xDeleteAux ){ pAux->xDeleteAux(pAux->pAux); } *pp = pAux->pNextAux; sqlite3DbFree(db, pAux); }else{ pp= &pAux->pNextAux; } } } /* ** Free all memory associated with the Vdbe passed as the second argument, ** except for object itself, which is preserved. ** ** The difference between this function and sqlite3VdbeDelete() is that ** VdbeDelete() also unlinks the Vdbe from the list of VMs associated with ** the database connection and frees the object itself. */ SQLITE_PRIVATE void sqlite3VdbeClearObject(sqlite3 *db, Vdbe *p){ SubProgram *pSub, *pNext; assert( p->db==0 || p->db==db ); releaseMemArray(p->aColName, p->nResColumn*COLNAME_N); for(pSub=p->pProgram; pSub; pSub=pNext){ pNext = pSub->pNext; vdbeFreeOpArray(db, pSub->aOp, pSub->nOp); sqlite3DbFree(db, pSub); } if( p->magic!=VDBE_MAGIC_INIT ){ releaseMemArray(p->aVar, p->nVar); sqlite3DbFree(db, p->pVList); sqlite3DbFree(db, p->pFree); } vdbeFreeOpArray(db, p->aOp, p->nOp); sqlite3DbFree(db, p->aColName); sqlite3DbFree(db, p->zSql); #ifdef SQLITE_ENABLE_NORMALIZE sqlite3DbFree(db, p->zNormSql); { DblquoteStr *pThis, *pNext; for(pThis=p->pDblStr; pThis; pThis=pNext){ pNext = pThis->pNextStr; sqlite3DbFree(db, pThis); } } #endif #ifdef SQLITE_ENABLE_STMT_SCANSTATUS { int i; for(i=0; inScan; i++){ sqlite3DbFree(db, p->aScan[i].zName); } sqlite3DbFree(db, p->aScan); } #endif } /* ** Delete an entire VDBE. */ SQLITE_PRIVATE void sqlite3VdbeDelete(Vdbe *p){ sqlite3 *db; assert( p!=0 ); db = p->db; assert( sqlite3_mutex_held(db->mutex) ); sqlite3VdbeClearObject(db, p); if( p->pPrev ){ p->pPrev->pNext = p->pNext; }else{ assert( db->pVdbe==p ); db->pVdbe = p->pNext; } if( p->pNext ){ p->pNext->pPrev = p->pPrev; } p->magic = VDBE_MAGIC_DEAD; p->db = 0; sqlite3DbFreeNN(db, p); } /* ** The cursor "p" has a pending seek operation that has not yet been ** carried out. Seek the cursor now. If an error occurs, return ** the appropriate error code. */ SQLITE_PRIVATE int SQLITE_NOINLINE sqlite3VdbeFinishMoveto(VdbeCursor *p){ int res, rc; #ifdef SQLITE_TEST extern int sqlite3_search_count; #endif assert( p->deferredMoveto ); assert( p->isTable ); assert( p->eCurType==CURTYPE_BTREE ); rc = sqlite3BtreeMovetoUnpacked(p->uc.pCursor, 0, p->movetoTarget, 0, &res); if( rc ) return rc; if( res!=0 ) return SQLITE_CORRUPT_BKPT; #ifdef SQLITE_TEST sqlite3_search_count++; #endif p->deferredMoveto = 0; p->cacheStatus = CACHE_STALE; return SQLITE_OK; } /* ** Something has moved cursor "p" out of place. Maybe the row it was ** pointed to was deleted out from under it. Or maybe the btree was ** rebalanced. Whatever the cause, try to restore "p" to the place it ** is supposed to be pointing. If the row was deleted out from under the ** cursor, set the cursor to point to a NULL row. */ static int SQLITE_NOINLINE handleMovedCursor(VdbeCursor *p){ int isDifferentRow, rc; assert( p->eCurType==CURTYPE_BTREE ); assert( p->uc.pCursor!=0 ); assert( sqlite3BtreeCursorHasMoved(p->uc.pCursor) ); rc = sqlite3BtreeCursorRestore(p->uc.pCursor, &isDifferentRow); p->cacheStatus = CACHE_STALE; if( isDifferentRow ) p->nullRow = 1; return rc; } /* ** Check to ensure that the cursor is valid. Restore the cursor ** if need be. Return any I/O error from the restore operation. */ SQLITE_PRIVATE int sqlite3VdbeCursorRestore(VdbeCursor *p){ assert( p->eCurType==CURTYPE_BTREE ); if( sqlite3BtreeCursorHasMoved(p->uc.pCursor) ){ return handleMovedCursor(p); } return SQLITE_OK; } /* ** Make sure the cursor p is ready to read or write the row to which it ** was last positioned. Return an error code if an OOM fault or I/O error ** prevents us from positioning the cursor to its correct position. ** ** If a MoveTo operation is pending on the given cursor, then do that ** MoveTo now. If no move is pending, check to see if the row has been ** deleted out from under the cursor and if it has, mark the row as ** a NULL row. ** ** If the cursor is already pointing to the correct row and that row has ** not been deleted out from under the cursor, then this routine is a no-op. */ SQLITE_PRIVATE int sqlite3VdbeCursorMoveto(VdbeCursor **pp, u32 *piCol){ VdbeCursor *p = *pp; assert( p->eCurType==CURTYPE_BTREE || p->eCurType==CURTYPE_PSEUDO ); if( p->deferredMoveto ){ u32 iMap; if( p->aAltMap && (iMap = p->aAltMap[1+*piCol])>0 && !p->nullRow ){ *pp = p->pAltCursor; *piCol = iMap - 1; return SQLITE_OK; } return sqlite3VdbeFinishMoveto(p); } if( sqlite3BtreeCursorHasMoved(p->uc.pCursor) ){ return handleMovedCursor(p); } return SQLITE_OK; } /* ** The following functions: ** ** sqlite3VdbeSerialType() ** sqlite3VdbeSerialTypeLen() ** sqlite3VdbeSerialLen() ** sqlite3VdbeSerialPut() ** sqlite3VdbeSerialGet() ** ** encapsulate the code that serializes values for storage in SQLite ** data and index records. Each serialized value consists of a ** 'serial-type' and a blob of data. The serial type is an 8-byte unsigned ** integer, stored as a varint. ** ** In an SQLite index record, the serial type is stored directly before ** the blob of data that it corresponds to. In a table record, all serial ** types are stored at the start of the record, and the blobs of data at ** the end. Hence these functions allow the caller to handle the ** serial-type and data blob separately. ** ** The following table describes the various storage classes for data: ** ** serial type bytes of data type ** -------------- --------------- --------------- ** 0 0 NULL ** 1 1 signed integer ** 2 2 signed integer ** 3 3 signed integer ** 4 4 signed integer ** 5 6 signed integer ** 6 8 signed integer ** 7 8 IEEE float ** 8 0 Integer constant 0 ** 9 0 Integer constant 1 ** 10,11 reserved for expansion ** N>=12 and even (N-12)/2 BLOB ** N>=13 and odd (N-13)/2 text ** ** The 8 and 9 types were added in 3.3.0, file format 4. Prior versions ** of SQLite will not understand those serial types. */ #if 0 /* Inlined into the OP_MakeRecord opcode */ /* ** Return the serial-type for the value stored in pMem. ** ** This routine might convert a large MEM_IntReal value into MEM_Real. ** ** 2019-07-11: The primary user of this subroutine was the OP_MakeRecord ** opcode in the byte-code engine. But by moving this routine in-line, we ** can omit some redundant tests and make that opcode a lot faster. So ** this routine is now only used by the STAT3 logic and STAT3 support has ** ended. The code is kept here for historical reference only. */ SQLITE_PRIVATE u32 sqlite3VdbeSerialType(Mem *pMem, int file_format, u32 *pLen){ int flags = pMem->flags; u32 n; assert( pLen!=0 ); if( flags&MEM_Null ){ *pLen = 0; return 0; } if( flags&(MEM_Int|MEM_IntReal) ){ /* Figure out whether to use 1, 2, 4, 6 or 8 bytes. */ # define MAX_6BYTE ((((i64)0x00008000)<<32)-1) i64 i = pMem->u.i; u64 u; testcase( flags & MEM_Int ); testcase( flags & MEM_IntReal ); if( i<0 ){ u = ~i; }else{ u = i; } if( u<=127 ){ if( (i&1)==i && file_format>=4 ){ *pLen = 0; return 8+(u32)u; }else{ *pLen = 1; return 1; } } if( u<=32767 ){ *pLen = 2; return 2; } if( u<=8388607 ){ *pLen = 3; return 3; } if( u<=2147483647 ){ *pLen = 4; return 4; } if( u<=MAX_6BYTE ){ *pLen = 6; return 5; } *pLen = 8; if( flags&MEM_IntReal ){ /* If the value is IntReal and is going to take up 8 bytes to store ** as an integer, then we might as well make it an 8-byte floating ** point value */ pMem->u.r = (double)pMem->u.i; pMem->flags &= ~MEM_IntReal; pMem->flags |= MEM_Real; return 7; } return 6; } if( flags&MEM_Real ){ *pLen = 8; return 7; } assert( pMem->db->mallocFailed || flags&(MEM_Str|MEM_Blob) ); assert( pMem->n>=0 ); n = (u32)pMem->n; if( flags & MEM_Zero ){ n += pMem->u.nZero; } *pLen = n; return ((n*2) + 12 + ((flags&MEM_Str)!=0)); } #endif /* inlined into OP_MakeRecord */ /* ** The sizes for serial types less than 128 */ static const u8 sqlite3SmallTypeSizes[] = { /* 0 1 2 3 4 5 6 7 8 9 */ /* 0 */ 0, 1, 2, 3, 4, 6, 8, 8, 0, 0, /* 10 */ 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, /* 20 */ 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, /* 30 */ 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, /* 40 */ 14, 14, 15, 15, 16, 16, 17, 17, 18, 18, /* 50 */ 19, 19, 20, 20, 21, 21, 22, 22, 23, 23, /* 60 */ 24, 24, 25, 25, 26, 26, 27, 27, 28, 28, /* 70 */ 29, 29, 30, 30, 31, 31, 32, 32, 33, 33, /* 80 */ 34, 34, 35, 35, 36, 36, 37, 37, 38, 38, /* 90 */ 39, 39, 40, 40, 41, 41, 42, 42, 43, 43, /* 100 */ 44, 44, 45, 45, 46, 46, 47, 47, 48, 48, /* 110 */ 49, 49, 50, 50, 51, 51, 52, 52, 53, 53, /* 120 */ 54, 54, 55, 55, 56, 56, 57, 57 }; /* ** Return the length of the data corresponding to the supplied serial-type. */ SQLITE_PRIVATE u32 sqlite3VdbeSerialTypeLen(u32 serial_type){ if( serial_type>=128 ){ return (serial_type-12)/2; }else{ assert( serial_type<12 || sqlite3SmallTypeSizes[serial_type]==(serial_type - 12)/2 ); return sqlite3SmallTypeSizes[serial_type]; } } SQLITE_PRIVATE u8 sqlite3VdbeOneByteSerialTypeLen(u8 serial_type){ assert( serial_type<128 ); return sqlite3SmallTypeSizes[serial_type]; } /* ** If we are on an architecture with mixed-endian floating ** points (ex: ARM7) then swap the lower 4 bytes with the ** upper 4 bytes. Return the result. ** ** For most architectures, this is a no-op. ** ** (later): It is reported to me that the mixed-endian problem ** on ARM7 is an issue with GCC, not with the ARM7 chip. It seems ** that early versions of GCC stored the two words of a 64-bit ** float in the wrong order. And that error has been propagated ** ever since. The blame is not necessarily with GCC, though. ** GCC might have just copying the problem from a prior compiler. ** I am also told that newer versions of GCC that follow a different ** ABI get the byte order right. ** ** Developers using SQLite on an ARM7 should compile and run their ** application using -DSQLITE_DEBUG=1 at least once. With DEBUG ** enabled, some asserts below will ensure that the byte order of ** floating point values is correct. ** ** (2007-08-30) Frank van Vugt has studied this problem closely ** and has send his findings to the SQLite developers. Frank ** writes that some Linux kernels offer floating point hardware ** emulation that uses only 32-bit mantissas instead of a full ** 48-bits as required by the IEEE standard. (This is the ** CONFIG_FPE_FASTFPE option.) On such systems, floating point ** byte swapping becomes very complicated. To avoid problems, ** the necessary byte swapping is carried out using a 64-bit integer ** rather than a 64-bit float. Frank assures us that the code here ** works for him. We, the developers, have no way to independently ** verify this, but Frank seems to know what he is talking about ** so we trust him. */ #ifdef SQLITE_MIXED_ENDIAN_64BIT_FLOAT static u64 floatSwap(u64 in){ union { u64 r; u32 i[2]; } u; u32 t; u.r = in; t = u.i[0]; u.i[0] = u.i[1]; u.i[1] = t; return u.r; } # define swapMixedEndianFloat(X) X = floatSwap(X) #else # define swapMixedEndianFloat(X) #endif /* ** Write the serialized data blob for the value stored in pMem into ** buf. It is assumed that the caller has allocated sufficient space. ** Return the number of bytes written. ** ** nBuf is the amount of space left in buf[]. The caller is responsible ** for allocating enough space to buf[] to hold the entire field, exclusive ** of the pMem->u.nZero bytes for a MEM_Zero value. ** ** Return the number of bytes actually written into buf[]. The number ** of bytes in the zero-filled tail is included in the return value only ** if those bytes were zeroed in buf[]. */ SQLITE_PRIVATE u32 sqlite3VdbeSerialPut(u8 *buf, Mem *pMem, u32 serial_type){ u32 len; /* Integer and Real */ if( serial_type<=7 && serial_type>0 ){ u64 v; u32 i; if( serial_type==7 ){ assert( sizeof(v)==sizeof(pMem->u.r) ); memcpy(&v, &pMem->u.r, sizeof(v)); swapMixedEndianFloat(v); }else{ v = pMem->u.i; } len = i = sqlite3SmallTypeSizes[serial_type]; assert( i>0 ); do{ buf[--i] = (u8)(v&0xFF); v >>= 8; }while( i ); return len; } /* String or blob */ if( serial_type>=12 ){ assert( pMem->n + ((pMem->flags & MEM_Zero)?pMem->u.nZero:0) == (int)sqlite3VdbeSerialTypeLen(serial_type) ); len = pMem->n; if( len>0 ) memcpy(buf, pMem->z, len); return len; } /* NULL or constants 0 or 1 */ return 0; } /* Input "x" is a sequence of unsigned characters that represent a ** big-endian integer. Return the equivalent native integer */ #define ONE_BYTE_INT(x) ((i8)(x)[0]) #define TWO_BYTE_INT(x) (256*(i8)((x)[0])|(x)[1]) #define THREE_BYTE_INT(x) (65536*(i8)((x)[0])|((x)[1]<<8)|(x)[2]) #define FOUR_BYTE_UINT(x) (((u32)(x)[0]<<24)|((x)[1]<<16)|((x)[2]<<8)|(x)[3]) #define FOUR_BYTE_INT(x) (16777216*(i8)((x)[0])|((x)[1]<<16)|((x)[2]<<8)|(x)[3]) /* ** Deserialize the data blob pointed to by buf as serial type serial_type ** and store the result in pMem. Return the number of bytes read. ** ** This function is implemented as two separate routines for performance. ** The few cases that require local variables are broken out into a separate ** routine so that in most cases the overhead of moving the stack pointer ** is avoided. */ static u32 serialGet( const unsigned char *buf, /* Buffer to deserialize from */ u32 serial_type, /* Serial type to deserialize */ Mem *pMem /* Memory cell to write value into */ ){ u64 x = FOUR_BYTE_UINT(buf); u32 y = FOUR_BYTE_UINT(buf+4); x = (x<<32) + y; if( serial_type==6 ){ /* EVIDENCE-OF: R-29851-52272 Value is a big-endian 64-bit ** twos-complement integer. */ pMem->u.i = *(i64*)&x; pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); }else{ /* EVIDENCE-OF: R-57343-49114 Value is a big-endian IEEE 754-2008 64-bit ** floating point number. */ #if !defined(NDEBUG) && !defined(SQLITE_OMIT_FLOATING_POINT) /* Verify that integers and floating point values use the same ** byte order. Or, that if SQLITE_MIXED_ENDIAN_64BIT_FLOAT is ** defined that 64-bit floating point values really are mixed ** endian. */ static const u64 t1 = ((u64)0x3ff00000)<<32; static const double r1 = 1.0; u64 t2 = t1; swapMixedEndianFloat(t2); assert( sizeof(r1)==sizeof(t2) && memcmp(&r1, &t2, sizeof(r1))==0 ); #endif assert( sizeof(x)==8 && sizeof(pMem->u.r)==8 ); swapMixedEndianFloat(x); memcpy(&pMem->u.r, &x, sizeof(x)); pMem->flags = IsNaN(x) ? MEM_Null : MEM_Real; } return 8; } SQLITE_PRIVATE u32 sqlite3VdbeSerialGet( const unsigned char *buf, /* Buffer to deserialize from */ u32 serial_type, /* Serial type to deserialize */ Mem *pMem /* Memory cell to write value into */ ){ switch( serial_type ){ case 10: { /* Internal use only: NULL with virtual table ** UPDATE no-change flag set */ pMem->flags = MEM_Null|MEM_Zero; pMem->n = 0; pMem->u.nZero = 0; break; } case 11: /* Reserved for future use */ case 0: { /* Null */ /* EVIDENCE-OF: R-24078-09375 Value is a NULL. */ pMem->flags = MEM_Null; break; } case 1: { /* EVIDENCE-OF: R-44885-25196 Value is an 8-bit twos-complement ** integer. */ pMem->u.i = ONE_BYTE_INT(buf); pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); return 1; } case 2: { /* 2-byte signed integer */ /* EVIDENCE-OF: R-49794-35026 Value is a big-endian 16-bit ** twos-complement integer. */ pMem->u.i = TWO_BYTE_INT(buf); pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); return 2; } case 3: { /* 3-byte signed integer */ /* EVIDENCE-OF: R-37839-54301 Value is a big-endian 24-bit ** twos-complement integer. */ pMem->u.i = THREE_BYTE_INT(buf); pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); return 3; } case 4: { /* 4-byte signed integer */ /* EVIDENCE-OF: R-01849-26079 Value is a big-endian 32-bit ** twos-complement integer. */ pMem->u.i = FOUR_BYTE_INT(buf); #ifdef __HP_cc /* Work around a sign-extension bug in the HP compiler for HP/UX */ if( buf[0]&0x80 ) pMem->u.i |= 0xffffffff80000000LL; #endif pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); return 4; } case 5: { /* 6-byte signed integer */ /* EVIDENCE-OF: R-50385-09674 Value is a big-endian 48-bit ** twos-complement integer. */ pMem->u.i = FOUR_BYTE_UINT(buf+2) + (((i64)1)<<32)*TWO_BYTE_INT(buf); pMem->flags = MEM_Int; testcase( pMem->u.i<0 ); return 6; } case 6: /* 8-byte signed integer */ case 7: { /* IEEE floating point */ /* These use local variables, so do them in a separate routine ** to avoid having to move the frame pointer in the common case */ return serialGet(buf,serial_type,pMem); } case 8: /* Integer 0 */ case 9: { /* Integer 1 */ /* EVIDENCE-OF: R-12976-22893 Value is the integer 0. */ /* EVIDENCE-OF: R-18143-12121 Value is the integer 1. */ pMem->u.i = serial_type-8; pMem->flags = MEM_Int; return 0; } default: { /* EVIDENCE-OF: R-14606-31564 Value is a BLOB that is (N-12)/2 bytes in ** length. ** EVIDENCE-OF: R-28401-00140 Value is a string in the text encoding and ** (N-13)/2 bytes in length. */ static const u16 aFlag[] = { MEM_Blob|MEM_Ephem, MEM_Str|MEM_Ephem }; pMem->z = (char *)buf; pMem->n = (serial_type-12)/2; pMem->flags = aFlag[serial_type&1]; return pMem->n; } } return 0; } /* ** This routine is used to allocate sufficient space for an UnpackedRecord ** structure large enough to be used with sqlite3VdbeRecordUnpack() if ** the first argument is a pointer to KeyInfo structure pKeyInfo. ** ** The space is either allocated using sqlite3DbMallocRaw() or from within ** the unaligned buffer passed via the second and third arguments (presumably ** stack space). If the former, then *ppFree is set to a pointer that should ** be eventually freed by the caller using sqlite3DbFree(). Or, if the ** allocation comes from the pSpace/szSpace buffer, *ppFree is set to NULL ** before returning. ** ** If an OOM error occurs, NULL is returned. */ SQLITE_PRIVATE UnpackedRecord *sqlite3VdbeAllocUnpackedRecord( KeyInfo *pKeyInfo /* Description of the record */ ){ UnpackedRecord *p; /* Unpacked record to return */ int nByte; /* Number of bytes required for *p */ nByte = ROUND8(sizeof(UnpackedRecord)) + sizeof(Mem)*(pKeyInfo->nKeyField+1); p = (UnpackedRecord *)sqlite3DbMallocRaw(pKeyInfo->db, nByte); if( !p ) return 0; p->aMem = (Mem*)&((char*)p)[ROUND8(sizeof(UnpackedRecord))]; assert( pKeyInfo->aSortFlags!=0 ); p->pKeyInfo = pKeyInfo; p->nField = pKeyInfo->nKeyField + 1; return p; } /* ** Given the nKey-byte encoding of a record in pKey[], populate the ** UnpackedRecord structure indicated by the fourth argument with the ** contents of the decoded record. */ SQLITE_PRIVATE void sqlite3VdbeRecordUnpack( KeyInfo *pKeyInfo, /* Information about the record format */ int nKey, /* Size of the binary record */ const void *pKey, /* The binary record */ UnpackedRecord *p /* Populate this structure before returning. */ ){ const unsigned char *aKey = (const unsigned char *)pKey; u32 d; u32 idx; /* Offset in aKey[] to read from */ u16 u; /* Unsigned loop counter */ u32 szHdr; Mem *pMem = p->aMem; p->default_rc = 0; assert( EIGHT_BYTE_ALIGNMENT(pMem) ); idx = getVarint32(aKey, szHdr); d = szHdr; u = 0; while( idxenc = pKeyInfo->enc; pMem->db = pKeyInfo->db; /* pMem->flags = 0; // sqlite3VdbeSerialGet() will set this for us */ pMem->szMalloc = 0; pMem->z = 0; d += sqlite3VdbeSerialGet(&aKey[d], serial_type, pMem); pMem++; if( (++u)>=p->nField ) break; } if( d>(u32)nKey && u ){ assert( CORRUPT_DB ); /* In a corrupt record entry, the last pMem might have been set up using ** uninitialized memory. Overwrite its value with NULL, to prevent ** warnings from MSAN. */ sqlite3VdbeMemSetNull(pMem-1); } assert( u<=pKeyInfo->nKeyField + 1 ); p->nField = u; } #ifdef SQLITE_DEBUG /* ** This function compares two index or table record keys in the same way ** as the sqlite3VdbeRecordCompare() routine. Unlike VdbeRecordCompare(), ** this function deserializes and compares values using the ** sqlite3VdbeSerialGet() and sqlite3MemCompare() functions. It is used ** in assert() statements to ensure that the optimized code in ** sqlite3VdbeRecordCompare() returns results with these two primitives. ** ** Return true if the result of comparison is equivalent to desiredResult. ** Return false if there is a disagreement. */ static int vdbeRecordCompareDebug( int nKey1, const void *pKey1, /* Left key */ const UnpackedRecord *pPKey2, /* Right key */ int desiredResult /* Correct answer */ ){ u32 d1; /* Offset into aKey[] of next data element */ u32 idx1; /* Offset into aKey[] of next header element */ u32 szHdr1; /* Number of bytes in header */ int i = 0; int rc = 0; const unsigned char *aKey1 = (const unsigned char *)pKey1; KeyInfo *pKeyInfo; Mem mem1; pKeyInfo = pPKey2->pKeyInfo; if( pKeyInfo->db==0 ) return 1; mem1.enc = pKeyInfo->enc; mem1.db = pKeyInfo->db; /* mem1.flags = 0; // Will be initialized by sqlite3VdbeSerialGet() */ VVA_ONLY( mem1.szMalloc = 0; ) /* Only needed by assert() statements */ /* Compilers may complain that mem1.u.i is potentially uninitialized. ** We could initialize it, as shown here, to silence those complaints. ** But in fact, mem1.u.i will never actually be used uninitialized, and doing ** the unnecessary initialization has a measurable negative performance ** impact, since this routine is a very high runner. And so, we choose ** to ignore the compiler warnings and leave this variable uninitialized. */ /* mem1.u.i = 0; // not needed, here to silence compiler warning */ idx1 = getVarint32(aKey1, szHdr1); if( szHdr1>98307 ) return SQLITE_CORRUPT; d1 = szHdr1; assert( pKeyInfo->nAllField>=pPKey2->nField || CORRUPT_DB ); assert( pKeyInfo->aSortFlags!=0 ); assert( pKeyInfo->nKeyField>0 ); assert( idx1<=szHdr1 || CORRUPT_DB ); do{ u32 serial_type1; /* Read the serial types for the next element in each key. */ idx1 += getVarint32( aKey1+idx1, serial_type1 ); /* Verify that there is enough key space remaining to avoid ** a buffer overread. The "d1+serial_type1+2" subexpression will ** always be greater than or equal to the amount of required key space. ** Use that approximation to avoid the more expensive call to ** sqlite3VdbeSerialTypeLen() in the common case. */ if( d1+(u64)serial_type1+2>(u64)nKey1 && d1+(u64)sqlite3VdbeSerialTypeLen(serial_type1)>(u64)nKey1 ){ break; } /* Extract the values to be compared. */ d1 += sqlite3VdbeSerialGet(&aKey1[d1], serial_type1, &mem1); /* Do the comparison */ rc = sqlite3MemCompare(&mem1, &pPKey2->aMem[i], pKeyInfo->nAllField>i ? pKeyInfo->aColl[i] : 0); if( rc!=0 ){ assert( mem1.szMalloc==0 ); /* See comment below */ if( (pKeyInfo->aSortFlags[i] & KEYINFO_ORDER_BIGNULL) && ((mem1.flags & MEM_Null) || (pPKey2->aMem[i].flags & MEM_Null)) ){ rc = -rc; } if( pKeyInfo->aSortFlags[i] & KEYINFO_ORDER_DESC ){ rc = -rc; /* Invert the result for DESC sort order. */ } goto debugCompareEnd; } i++; }while( idx1nField ); /* No memory allocation is ever used on mem1. Prove this using ** the following assert(). If the assert() fails, it indicates a ** memory leak and a need to call sqlite3VdbeMemRelease(&mem1). */ assert( mem1.szMalloc==0 ); /* rc==0 here means that one of the keys ran out of fields and ** all the fields up to that point were equal. Return the default_rc ** value. */ rc = pPKey2->default_rc; debugCompareEnd: if( desiredResult==0 && rc==0 ) return 1; if( desiredResult<0 && rc<0 ) return 1; if( desiredResult>0 && rc>0 ) return 1; if( CORRUPT_DB ) return 1; if( pKeyInfo->db->mallocFailed ) return 1; return 0; } #endif #ifdef SQLITE_DEBUG /* ** Count the number of fields (a.k.a. columns) in the record given by ** pKey,nKey. The verify that this count is less than or equal to the ** limit given by pKeyInfo->nAllField. ** ** If this constraint is not satisfied, it means that the high-speed ** vdbeRecordCompareInt() and vdbeRecordCompareString() routines will ** not work correctly. If this assert() ever fires, it probably means ** that the KeyInfo.nKeyField or KeyInfo.nAllField values were computed ** incorrectly. */ static void vdbeAssertFieldCountWithinLimits( int nKey, const void *pKey, /* The record to verify */ const KeyInfo *pKeyInfo /* Compare size with this KeyInfo */ ){ int nField = 0; u32 szHdr; u32 idx; u32 notUsed; const unsigned char *aKey = (const unsigned char*)pKey; if( CORRUPT_DB ) return; idx = getVarint32(aKey, szHdr); assert( nKey>=0 ); assert( szHdr<=(u32)nKey ); while( idxnAllField ); } #else # define vdbeAssertFieldCountWithinLimits(A,B,C) #endif /* ** Both *pMem1 and *pMem2 contain string values. Compare the two values ** using the collation sequence pColl. As usual, return a negative , zero ** or positive value if *pMem1 is less than, equal to or greater than ** *pMem2, respectively. Similar in spirit to "rc = (*pMem1) - (*pMem2);". */ static int vdbeCompareMemString( const Mem *pMem1, const Mem *pMem2, const CollSeq *pColl, u8 *prcErr /* If an OOM occurs, set to SQLITE_NOMEM */ ){ if( pMem1->enc==pColl->enc ){ /* The strings are already in the correct encoding. Call the ** comparison function directly */ return pColl->xCmp(pColl->pUser,pMem1->n,pMem1->z,pMem2->n,pMem2->z); }else{ int rc; const void *v1, *v2; Mem c1; Mem c2; sqlite3VdbeMemInit(&c1, pMem1->db, MEM_Null); sqlite3VdbeMemInit(&c2, pMem1->db, MEM_Null); sqlite3VdbeMemShallowCopy(&c1, pMem1, MEM_Ephem); sqlite3VdbeMemShallowCopy(&c2, pMem2, MEM_Ephem); v1 = sqlite3ValueText((sqlite3_value*)&c1, pColl->enc); v2 = sqlite3ValueText((sqlite3_value*)&c2, pColl->enc); if( (v1==0 || v2==0) ){ if( prcErr ) *prcErr = SQLITE_NOMEM_BKPT; rc = 0; }else{ rc = pColl->xCmp(pColl->pUser, c1.n, v1, c2.n, v2); } sqlite3VdbeMemRelease(&c1); sqlite3VdbeMemRelease(&c2); return rc; } } /* ** The input pBlob is guaranteed to be a Blob that is not marked ** with MEM_Zero. Return true if it could be a zero-blob. */ static int isAllZero(const char *z, int n){ int i; for(i=0; in; int n2 = pB2->n; /* It is possible to have a Blob value that has some non-zero content ** followed by zero content. But that only comes up for Blobs formed ** by the OP_MakeRecord opcode, and such Blobs never get passed into ** sqlite3MemCompare(). */ assert( (pB1->flags & MEM_Zero)==0 || n1==0 ); assert( (pB2->flags & MEM_Zero)==0 || n2==0 ); if( (pB1->flags|pB2->flags) & MEM_Zero ){ if( pB1->flags & pB2->flags & MEM_Zero ){ return pB1->u.nZero - pB2->u.nZero; }else if( pB1->flags & MEM_Zero ){ if( !isAllZero(pB2->z, pB2->n) ) return -1; return pB1->u.nZero - n2; }else{ if( !isAllZero(pB1->z, pB1->n) ) return +1; return n1 - pB2->u.nZero; } } c = memcmp(pB1->z, pB2->z, n1>n2 ? n2 : n1); if( c ) return c; return n1 - n2; } /* ** Do a comparison between a 64-bit signed integer and a 64-bit floating-point ** number. Return negative, zero, or positive if the first (i64) is less than, ** equal to, or greater than the second (double). */ static int sqlite3IntFloatCompare(i64 i, double r){ if( sizeof(LONGDOUBLE_TYPE)>8 ){ LONGDOUBLE_TYPE x = (LONGDOUBLE_TYPE)i; if( xr ) return +1; return 0; }else{ i64 y; double s; if( r<-9223372036854775808.0 ) return +1; if( r>=9223372036854775808.0 ) return -1; y = (i64)r; if( iy ) return +1; s = (double)i; if( sr ) return +1; return 0; } } /* ** Compare the values contained by the two memory cells, returning ** negative, zero or positive if pMem1 is less than, equal to, or greater ** than pMem2. Sorting order is NULL's first, followed by numbers (integers ** and reals) sorted numerically, followed by text ordered by the collating ** sequence pColl and finally blob's ordered by memcmp(). ** ** Two NULL values are considered equal by this function. */ SQLITE_PRIVATE int sqlite3MemCompare(const Mem *pMem1, const Mem *pMem2, const CollSeq *pColl){ int f1, f2; int combined_flags; f1 = pMem1->flags; f2 = pMem2->flags; combined_flags = f1|f2; assert( !sqlite3VdbeMemIsRowSet(pMem1) && !sqlite3VdbeMemIsRowSet(pMem2) ); /* If one value is NULL, it is less than the other. If both values ** are NULL, return 0. */ if( combined_flags&MEM_Null ){ return (f2&MEM_Null) - (f1&MEM_Null); } /* At least one of the two values is a number */ if( combined_flags&(MEM_Int|MEM_Real|MEM_IntReal) ){ testcase( combined_flags & MEM_Int ); testcase( combined_flags & MEM_Real ); testcase( combined_flags & MEM_IntReal ); if( (f1 & f2 & (MEM_Int|MEM_IntReal))!=0 ){ testcase( f1 & f2 & MEM_Int ); testcase( f1 & f2 & MEM_IntReal ); if( pMem1->u.i < pMem2->u.i ) return -1; if( pMem1->u.i > pMem2->u.i ) return +1; return 0; } if( (f1 & f2 & MEM_Real)!=0 ){ if( pMem1->u.r < pMem2->u.r ) return -1; if( pMem1->u.r > pMem2->u.r ) return +1; return 0; } if( (f1&(MEM_Int|MEM_IntReal))!=0 ){ testcase( f1 & MEM_Int ); testcase( f1 & MEM_IntReal ); if( (f2&MEM_Real)!=0 ){ return sqlite3IntFloatCompare(pMem1->u.i, pMem2->u.r); }else if( (f2&(MEM_Int|MEM_IntReal))!=0 ){ if( pMem1->u.i < pMem2->u.i ) return -1; if( pMem1->u.i > pMem2->u.i ) return +1; return 0; }else{ return -1; } } if( (f1&MEM_Real)!=0 ){ if( (f2&(MEM_Int|MEM_IntReal))!=0 ){ testcase( f2 & MEM_Int ); testcase( f2 & MEM_IntReal ); return -sqlite3IntFloatCompare(pMem2->u.i, pMem1->u.r); }else{ return -1; } } return +1; } /* If one value is a string and the other is a blob, the string is less. ** If both are strings, compare using the collating functions. */ if( combined_flags&MEM_Str ){ if( (f1 & MEM_Str)==0 ){ return 1; } if( (f2 & MEM_Str)==0 ){ return -1; } assert( pMem1->enc==pMem2->enc || pMem1->db->mallocFailed ); assert( pMem1->enc==SQLITE_UTF8 || pMem1->enc==SQLITE_UTF16LE || pMem1->enc==SQLITE_UTF16BE ); /* The collation sequence must be defined at this point, even if ** the user deletes the collation sequence after the vdbe program is ** compiled (this was not always the case). */ assert( !pColl || pColl->xCmp ); if( pColl ){ return vdbeCompareMemString(pMem1, pMem2, pColl, 0); } /* If a NULL pointer was passed as the collate function, fall through ** to the blob case and use memcmp(). */ } /* Both values must be blobs. Compare using memcmp(). */ return sqlite3BlobCompare(pMem1, pMem2); } /* ** The first argument passed to this function is a serial-type that ** corresponds to an integer - all values between 1 and 9 inclusive ** except 7. The second points to a buffer containing an integer value ** serialized according to serial_type. This function deserializes ** and returns the value. */ static i64 vdbeRecordDecodeInt(u32 serial_type, const u8 *aKey){ u32 y; assert( CORRUPT_DB || (serial_type>=1 && serial_type<=9 && serial_type!=7) ); switch( serial_type ){ case 0: case 1: testcase( aKey[0]&0x80 ); return ONE_BYTE_INT(aKey); case 2: testcase( aKey[0]&0x80 ); return TWO_BYTE_INT(aKey); case 3: testcase( aKey[0]&0x80 ); return THREE_BYTE_INT(aKey); case 4: { testcase( aKey[0]&0x80 ); y = FOUR_BYTE_UINT(aKey); return (i64)*(int*)&y; } case 5: { testcase( aKey[0]&0x80 ); return FOUR_BYTE_UINT(aKey+2) + (((i64)1)<<32)*TWO_BYTE_INT(aKey); } case 6: { u64 x = FOUR_BYTE_UINT(aKey); testcase( aKey[0]&0x80 ); x = (x<<32) | FOUR_BYTE_UINT(aKey+4); return (i64)*(i64*)&x; } } return (serial_type - 8); } /* ** This function compares the two table rows or index records ** specified by {nKey1, pKey1} and pPKey2. It returns a negative, zero ** or positive integer if key1 is less than, equal to or ** greater than key2. The {nKey1, pKey1} key must be a blob ** created by the OP_MakeRecord opcode of the VDBE. The pPKey2 ** key must be a parsed key such as obtained from ** sqlite3VdbeParseRecord. ** ** If argument bSkip is non-zero, it is assumed that the caller has already ** determined that the first fields of the keys are equal. ** ** Key1 and Key2 do not have to contain the same number of fields. If all ** fields that appear in both keys are equal, then pPKey2->default_rc is ** returned. ** ** If database corruption is discovered, set pPKey2->errCode to ** SQLITE_CORRUPT and return 0. If an OOM error is encountered, ** pPKey2->errCode is set to SQLITE_NOMEM and, if it is not NULL, the ** malloc-failed flag set on database handle (pPKey2->pKeyInfo->db). */ SQLITE_PRIVATE int sqlite3VdbeRecordCompareWithSkip( int nKey1, const void *pKey1, /* Left key */ UnpackedRecord *pPKey2, /* Right key */ int bSkip /* If true, skip the first field */ ){ u32 d1; /* Offset into aKey[] of next data element */ int i; /* Index of next field to compare */ u32 szHdr1; /* Size of record header in bytes */ u32 idx1; /* Offset of first type in header */ int rc = 0; /* Return value */ Mem *pRhs = pPKey2->aMem; /* Next field of pPKey2 to compare */ KeyInfo *pKeyInfo; const unsigned char *aKey1 = (const unsigned char *)pKey1; Mem mem1; /* If bSkip is true, then the caller has already determined that the first ** two elements in the keys are equal. Fix the various stack variables so ** that this routine begins comparing at the second field. */ if( bSkip ){ u32 s1; idx1 = 1 + getVarint32(&aKey1[1], s1); szHdr1 = aKey1[0]; d1 = szHdr1 + sqlite3VdbeSerialTypeLen(s1); i = 1; pRhs++; }else{ idx1 = getVarint32(aKey1, szHdr1); d1 = szHdr1; i = 0; } if( d1>(unsigned)nKey1 ){ pPKey2->errCode = (u8)SQLITE_CORRUPT_BKPT; return 0; /* Corruption */ } VVA_ONLY( mem1.szMalloc = 0; ) /* Only needed by assert() statements */ assert( pPKey2->pKeyInfo->nAllField>=pPKey2->nField || CORRUPT_DB ); assert( pPKey2->pKeyInfo->aSortFlags!=0 ); assert( pPKey2->pKeyInfo->nKeyField>0 ); assert( idx1<=szHdr1 || CORRUPT_DB ); do{ u32 serial_type; /* RHS is an integer */ if( pRhs->flags & (MEM_Int|MEM_IntReal) ){ testcase( pRhs->flags & MEM_Int ); testcase( pRhs->flags & MEM_IntReal ); serial_type = aKey1[idx1]; testcase( serial_type==12 ); if( serial_type>=10 ){ rc = +1; }else if( serial_type==0 ){ rc = -1; }else if( serial_type==7 ){ sqlite3VdbeSerialGet(&aKey1[d1], serial_type, &mem1); rc = -sqlite3IntFloatCompare(pRhs->u.i, mem1.u.r); }else{ i64 lhs = vdbeRecordDecodeInt(serial_type, &aKey1[d1]); i64 rhs = pRhs->u.i; if( lhsrhs ){ rc = +1; } } } /* RHS is real */ else if( pRhs->flags & MEM_Real ){ serial_type = aKey1[idx1]; if( serial_type>=10 ){ /* Serial types 12 or greater are strings and blobs (greater than ** numbers). Types 10 and 11 are currently "reserved for future ** use", so it doesn't really matter what the results of comparing ** them to numberic values are. */ rc = +1; }else if( serial_type==0 ){ rc = -1; }else{ sqlite3VdbeSerialGet(&aKey1[d1], serial_type, &mem1); if( serial_type==7 ){ if( mem1.u.ru.r ){ rc = -1; }else if( mem1.u.r>pRhs->u.r ){ rc = +1; } }else{ rc = sqlite3IntFloatCompare(mem1.u.i, pRhs->u.r); } } } /* RHS is a string */ else if( pRhs->flags & MEM_Str ){ getVarint32NR(&aKey1[idx1], serial_type); testcase( serial_type==12 ); if( serial_type<12 ){ rc = -1; }else if( !(serial_type & 0x01) ){ rc = +1; }else{ mem1.n = (serial_type - 12) / 2; testcase( (d1+mem1.n)==(unsigned)nKey1 ); testcase( (d1+mem1.n+1)==(unsigned)nKey1 ); if( (d1+mem1.n) > (unsigned)nKey1 || (pKeyInfo = pPKey2->pKeyInfo)->nAllField<=i ){ pPKey2->errCode = (u8)SQLITE_CORRUPT_BKPT; return 0; /* Corruption */ }else if( pKeyInfo->aColl[i] ){ mem1.enc = pKeyInfo->enc; mem1.db = pKeyInfo->db; mem1.flags = MEM_Str; mem1.z = (char*)&aKey1[d1]; rc = vdbeCompareMemString( &mem1, pRhs, pKeyInfo->aColl[i], &pPKey2->errCode ); }else{ int nCmp = MIN(mem1.n, pRhs->n); rc = memcmp(&aKey1[d1], pRhs->z, nCmp); if( rc==0 ) rc = mem1.n - pRhs->n; } } } /* RHS is a blob */ else if( pRhs->flags & MEM_Blob ){ assert( (pRhs->flags & MEM_Zero)==0 || pRhs->n==0 ); getVarint32NR(&aKey1[idx1], serial_type); testcase( serial_type==12 ); if( serial_type<12 || (serial_type & 0x01) ){ rc = -1; }else{ int nStr = (serial_type - 12) / 2; testcase( (d1+nStr)==(unsigned)nKey1 ); testcase( (d1+nStr+1)==(unsigned)nKey1 ); if( (d1+nStr) > (unsigned)nKey1 ){ pPKey2->errCode = (u8)SQLITE_CORRUPT_BKPT; return 0; /* Corruption */ }else if( pRhs->flags & MEM_Zero ){ if( !isAllZero((const char*)&aKey1[d1],nStr) ){ rc = 1; }else{ rc = nStr - pRhs->u.nZero; } }else{ int nCmp = MIN(nStr, pRhs->n); rc = memcmp(&aKey1[d1], pRhs->z, nCmp); if( rc==0 ) rc = nStr - pRhs->n; } } } /* RHS is null */ else{ serial_type = aKey1[idx1]; rc = (serial_type!=0); } if( rc!=0 ){ int sortFlags = pPKey2->pKeyInfo->aSortFlags[i]; if( sortFlags ){ if( (sortFlags & KEYINFO_ORDER_BIGNULL)==0 || ((sortFlags & KEYINFO_ORDER_DESC) !=(serial_type==0 || (pRhs->flags&MEM_Null))) ){ rc = -rc; } } assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, rc) ); assert( mem1.szMalloc==0 ); /* See comment below */ return rc; } i++; if( i==pPKey2->nField ) break; pRhs++; d1 += sqlite3VdbeSerialTypeLen(serial_type); idx1 += sqlite3VarintLen(serial_type); }while( idx1<(unsigned)szHdr1 && d1<=(unsigned)nKey1 ); /* No memory allocation is ever used on mem1. Prove this using ** the following assert(). If the assert() fails, it indicates a ** memory leak and a need to call sqlite3VdbeMemRelease(&mem1). */ assert( mem1.szMalloc==0 ); /* rc==0 here means that one or both of the keys ran out of fields and ** all the fields up to that point were equal. Return the default_rc ** value. */ assert( CORRUPT_DB || vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, pPKey2->default_rc) || pPKey2->pKeyInfo->db->mallocFailed ); pPKey2->eqSeen = 1; return pPKey2->default_rc; } SQLITE_PRIVATE int sqlite3VdbeRecordCompare( int nKey1, const void *pKey1, /* Left key */ UnpackedRecord *pPKey2 /* Right key */ ){ return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 0); } /* ** This function is an optimized version of sqlite3VdbeRecordCompare() ** that (a) the first field of pPKey2 is an integer, and (b) the ** size-of-header varint at the start of (pKey1/nKey1) fits in a single ** byte (i.e. is less than 128). ** ** To avoid concerns about buffer overreads, this routine is only used ** on schemas where the maximum valid header size is 63 bytes or less. */ static int vdbeRecordCompareInt( int nKey1, const void *pKey1, /* Left key */ UnpackedRecord *pPKey2 /* Right key */ ){ const u8 *aKey = &((const u8*)pKey1)[*(const u8*)pKey1 & 0x3F]; int serial_type = ((const u8*)pKey1)[1]; int res; u32 y; u64 x; i64 v; i64 lhs; vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo); assert( (*(u8*)pKey1)<=0x3F || CORRUPT_DB ); switch( serial_type ){ case 1: { /* 1-byte signed integer */ lhs = ONE_BYTE_INT(aKey); testcase( lhs<0 ); break; } case 2: { /* 2-byte signed integer */ lhs = TWO_BYTE_INT(aKey); testcase( lhs<0 ); break; } case 3: { /* 3-byte signed integer */ lhs = THREE_BYTE_INT(aKey); testcase( lhs<0 ); break; } case 4: { /* 4-byte signed integer */ y = FOUR_BYTE_UINT(aKey); lhs = (i64)*(int*)&y; testcase( lhs<0 ); break; } case 5: { /* 6-byte signed integer */ lhs = FOUR_BYTE_UINT(aKey+2) + (((i64)1)<<32)*TWO_BYTE_INT(aKey); testcase( lhs<0 ); break; } case 6: { /* 8-byte signed integer */ x = FOUR_BYTE_UINT(aKey); x = (x<<32) | FOUR_BYTE_UINT(aKey+4); lhs = *(i64*)&x; testcase( lhs<0 ); break; } case 8: lhs = 0; break; case 9: lhs = 1; break; /* This case could be removed without changing the results of running ** this code. Including it causes gcc to generate a faster switch ** statement (since the range of switch targets now starts at zero and ** is contiguous) but does not cause any duplicate code to be generated ** (as gcc is clever enough to combine the two like cases). Other ** compilers might be similar. */ case 0: case 7: return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2); default: return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2); } v = pPKey2->aMem[0].u.i; if( v>lhs ){ res = pPKey2->r1; }else if( vr2; }else if( pPKey2->nField>1 ){ /* The first fields of the two keys are equal. Compare the trailing ** fields. */ res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1); }else{ /* The first fields of the two keys are equal and there are no trailing ** fields. Return pPKey2->default_rc in this case. */ res = pPKey2->default_rc; pPKey2->eqSeen = 1; } assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res) ); return res; } /* ** This function is an optimized version of sqlite3VdbeRecordCompare() ** that (a) the first field of pPKey2 is a string, that (b) the first field ** uses the collation sequence BINARY and (c) that the size-of-header varint ** at the start of (pKey1/nKey1) fits in a single byte. */ static int vdbeRecordCompareString( int nKey1, const void *pKey1, /* Left key */ UnpackedRecord *pPKey2 /* Right key */ ){ const u8 *aKey1 = (const u8*)pKey1; int serial_type; int res; assert( pPKey2->aMem[0].flags & MEM_Str ); vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo); serial_type = (u8)(aKey1[1]); if( serial_type >= 0x80 ){ sqlite3GetVarint32(&aKey1[1], (u32*)&serial_type); } if( serial_type<12 ){ res = pPKey2->r1; /* (pKey1/nKey1) is a number or a null */ }else if( !(serial_type & 0x01) ){ res = pPKey2->r2; /* (pKey1/nKey1) is a blob */ }else{ int nCmp; int nStr; int szHdr = aKey1[0]; nStr = (serial_type-12) / 2; if( (szHdr + nStr) > nKey1 ){ pPKey2->errCode = (u8)SQLITE_CORRUPT_BKPT; return 0; /* Corruption */ } nCmp = MIN( pPKey2->aMem[0].n, nStr ); res = memcmp(&aKey1[szHdr], pPKey2->aMem[0].z, nCmp); if( res>0 ){ res = pPKey2->r2; }else if( res<0 ){ res = pPKey2->r1; }else{ res = nStr - pPKey2->aMem[0].n; if( res==0 ){ if( pPKey2->nField>1 ){ res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1); }else{ res = pPKey2->default_rc; pPKey2->eqSeen = 1; } }else if( res>0 ){ res = pPKey2->r2; }else{ res = pPKey2->r1; } } } assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res) || CORRUPT_DB || pPKey2->pKeyInfo->db->mallocFailed ); return res; } /* ** Return a pointer to an sqlite3VdbeRecordCompare() compatible function ** suitable for comparing serialized records to the unpacked record passed ** as the only argument. */ SQLITE_PRIVATE RecordCompare sqlite3VdbeFindCompare(UnpackedRecord *p){ /* varintRecordCompareInt() and varintRecordCompareString() both assume ** that the size-of-header varint that occurs at the start of each record ** fits in a single byte (i.e. is 127 or less). varintRecordCompareInt() ** also assumes that it is safe to overread a buffer by at least the ** maximum possible legal header size plus 8 bytes. Because there is ** guaranteed to be at least 74 (but not 136) bytes of padding following each ** buffer passed to varintRecordCompareInt() this makes it convenient to ** limit the size of the header to 64 bytes in cases where the first field ** is an integer. ** ** The easiest way to enforce this limit is to consider only records with ** 13 fields or less. If the first field is an integer, the maximum legal ** header size is (12*5 + 1 + 1) bytes. */ if( p->pKeyInfo->nAllField<=13 ){ int flags = p->aMem[0].flags; if( p->pKeyInfo->aSortFlags[0] ){ if( p->pKeyInfo->aSortFlags[0] & KEYINFO_ORDER_BIGNULL ){ return sqlite3VdbeRecordCompare; } p->r1 = 1; p->r2 = -1; }else{ p->r1 = -1; p->r2 = 1; } if( (flags & MEM_Int) ){ return vdbeRecordCompareInt; } testcase( flags & MEM_Real ); testcase( flags & MEM_Null ); testcase( flags & MEM_Blob ); if( (flags & (MEM_Real|MEM_IntReal|MEM_Null|MEM_Blob))==0 && p->pKeyInfo->aColl[0]==0 ){ assert( flags & MEM_Str ); return vdbeRecordCompareString; } } return sqlite3VdbeRecordCompare; } /* ** pCur points at an index entry created using the OP_MakeRecord opcode. ** Read the rowid (the last field in the record) and store it in *rowid. ** Return SQLITE_OK if everything works, or an error code otherwise. ** ** pCur might be pointing to text obtained from a corrupt database file. ** So the content cannot be trusted. Do appropriate checks on the content. */ SQLITE_PRIVATE int sqlite3VdbeIdxRowid(sqlite3 *db, BtCursor *pCur, i64 *rowid){ i64 nCellKey = 0; int rc; u32 szHdr; /* Size of the header */ u32 typeRowid; /* Serial type of the rowid */ u32 lenRowid; /* Size of the rowid */ Mem m, v; /* Get the size of the index entry. Only indices entries of less ** than 2GiB are support - anything large must be database corruption. ** Any corruption is detected in sqlite3BtreeParseCellPtr(), though, so ** this code can safely assume that nCellKey is 32-bits */ assert( sqlite3BtreeCursorIsValid(pCur) ); nCellKey = sqlite3BtreePayloadSize(pCur); assert( (nCellKey & SQLITE_MAX_U32)==(u64)nCellKey ); /* Read in the complete content of the index entry */ sqlite3VdbeMemInit(&m, db, 0); rc = sqlite3VdbeMemFromBtreeZeroOffset(pCur, (u32)nCellKey, &m); if( rc ){ return rc; } /* The index entry must begin with a header size */ getVarint32NR((u8*)m.z, szHdr); testcase( szHdr==3 ); testcase( szHdr==m.n ); testcase( szHdr>0x7fffffff ); assert( m.n>=0 ); if( unlikely(szHdr<3 || szHdr>(unsigned)m.n) ){ goto idx_rowid_corruption; } /* The last field of the index should be an integer - the ROWID. ** Verify that the last entry really is an integer. */ getVarint32NR((u8*)&m.z[szHdr-1], typeRowid); testcase( typeRowid==1 ); testcase( typeRowid==2 ); testcase( typeRowid==3 ); testcase( typeRowid==4 ); testcase( typeRowid==5 ); testcase( typeRowid==6 ); testcase( typeRowid==8 ); testcase( typeRowid==9 ); if( unlikely(typeRowid<1 || typeRowid>9 || typeRowid==7) ){ goto idx_rowid_corruption; } lenRowid = sqlite3SmallTypeSizes[typeRowid]; testcase( (u32)m.n==szHdr+lenRowid ); if( unlikely((u32)m.neCurType==CURTYPE_BTREE ); pCur = pC->uc.pCursor; assert( sqlite3BtreeCursorIsValid(pCur) ); nCellKey = sqlite3BtreePayloadSize(pCur); /* nCellKey will always be between 0 and 0xffffffff because of the way ** that btreeParseCellPtr() and sqlite3GetVarint32() are implemented */ if( nCellKey<=0 || nCellKey>0x7fffffff ){ *res = 0; return SQLITE_CORRUPT_BKPT; } sqlite3VdbeMemInit(&m, db, 0); rc = sqlite3VdbeMemFromBtreeZeroOffset(pCur, (u32)nCellKey, &m); if( rc ){ return rc; } *res = sqlite3VdbeRecordCompareWithSkip(m.n, m.z, pUnpacked, 0); sqlite3VdbeMemRelease(&m); return SQLITE_OK; } /* ** This routine sets the value to be returned by subsequent calls to ** sqlite3_changes() on the database handle 'db'. */ SQLITE_PRIVATE void sqlite3VdbeSetChanges(sqlite3 *db, int nChange){ assert( sqlite3_mutex_held(db->mutex) ); db->nChange = nChange; db->nTotalChange += nChange; } /* ** Set a flag in the vdbe to update the change counter when it is finalised ** or reset. */ SQLITE_PRIVATE void sqlite3VdbeCountChanges(Vdbe *v){ v->changeCntOn = 1; } /* ** Mark every prepared statement associated with a database connection ** as expired. ** ** An expired statement means that recompilation of the statement is ** recommend. Statements expire when things happen that make their ** programs obsolete. Removing user-defined functions or collating ** sequences, or changing an authorization function are the types of ** things that make prepared statements obsolete. ** ** If iCode is 1, then expiration is advisory. The statement should ** be reprepared before being restarted, but if it is already running ** it is allowed to run to completion. ** ** Internally, this function just sets the Vdbe.expired flag on all ** prepared statements. The flag is set to 1 for an immediate expiration ** and set to 2 for an advisory expiration. */ SQLITE_PRIVATE void sqlite3ExpirePreparedStatements(sqlite3 *db, int iCode){ Vdbe *p; for(p = db->pVdbe; p; p=p->pNext){ p->expired = iCode+1; } } /* ** Return the database associated with the Vdbe. */ SQLITE_PRIVATE sqlite3 *sqlite3VdbeDb(Vdbe *v){ return v->db; } /* ** Return the SQLITE_PREPARE flags for a Vdbe. */ SQLITE_PRIVATE u8 sqlite3VdbePrepareFlags(Vdbe *v){ return v->prepFlags; } /* ** Return a pointer to an sqlite3_value structure containing the value bound ** parameter iVar of VM v. Except, if the value is an SQL NULL, return ** 0 instead. Unless it is NULL, apply affinity aff (one of the SQLITE_AFF_* ** constants) to the value before returning it. ** ** The returned value must be freed by the caller using sqlite3ValueFree(). */ SQLITE_PRIVATE sqlite3_value *sqlite3VdbeGetBoundValue(Vdbe *v, int iVar, u8 aff){ assert( iVar>0 ); if( v ){ Mem *pMem = &v->aVar[iVar-1]; assert( (v->db->flags & SQLITE_EnableQPSG)==0 ); if( 0==(pMem->flags & MEM_Null) ){ sqlite3_value *pRet = sqlite3ValueNew(v->db); if( pRet ){ sqlite3VdbeMemCopy((Mem *)pRet, pMem); sqlite3ValueApplyAffinity(pRet, aff, SQLITE_UTF8); } return pRet; } } return 0; } /* ** Configure SQL variable iVar so that binding a new value to it signals ** to sqlite3_reoptimize() that re-preparing the statement may result ** in a better query plan. */ SQLITE_PRIVATE void sqlite3VdbeSetVarmask(Vdbe *v, int iVar){ assert( iVar>0 ); assert( (v->db->flags & SQLITE_EnableQPSG)==0 ); if( iVar>=32 ){ v->expmask |= 0x80000000; }else{ v->expmask |= ((u32)1 << (iVar-1)); } } /* ** Cause a function to throw an error if it was call from OP_PureFunc ** rather than OP_Function. ** ** OP_PureFunc means that the function must be deterministic, and should ** throw an error if it is given inputs that would make it non-deterministic. ** This routine is invoked by date/time functions that use non-deterministic ** features such as 'now'. */ SQLITE_PRIVATE int sqlite3NotPureFunc(sqlite3_context *pCtx){ const VdbeOp *pOp; #ifdef SQLITE_ENABLE_STAT4 if( pCtx->pVdbe==0 ) return 1; #endif pOp = pCtx->pVdbe->aOp + pCtx->iOp; if( pOp->opcode==OP_PureFunc ){ const char *zContext; char *zMsg; if( pOp->p5 & NC_IsCheck ){ zContext = "a CHECK constraint"; }else if( pOp->p5 & NC_GenCol ){ zContext = "a generated column"; }else{ zContext = "an index"; } zMsg = sqlite3_mprintf("non-deterministic use of %s() in %s", pCtx->pFunc->zName, zContext); sqlite3_result_error(pCtx, zMsg, -1); sqlite3_free(zMsg); return 0; } return 1; } #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Transfer error message text from an sqlite3_vtab.zErrMsg (text stored ** in memory obtained from sqlite3_malloc) into a Vdbe.zErrMsg (text stored ** in memory obtained from sqlite3DbMalloc). */ SQLITE_PRIVATE void sqlite3VtabImportErrmsg(Vdbe *p, sqlite3_vtab *pVtab){ if( pVtab->zErrMsg ){ sqlite3 *db = p->db; sqlite3DbFree(db, p->zErrMsg); p->zErrMsg = sqlite3DbStrDup(db, pVtab->zErrMsg); sqlite3_free(pVtab->zErrMsg); pVtab->zErrMsg = 0; } } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** If the second argument is not NULL, release any allocations associated ** with the memory cells in the p->aMem[] array. Also free the UnpackedRecord ** structure itself, using sqlite3DbFree(). ** ** This function is used to free UnpackedRecord structures allocated by ** the vdbeUnpackRecord() function found in vdbeapi.c. */ static void vdbeFreeUnpacked(sqlite3 *db, int nField, UnpackedRecord *p){ if( p ){ int i; for(i=0; iaMem[i]; if( pMem->zMalloc ) sqlite3VdbeMemRelease(pMem); } sqlite3DbFreeNN(db, p); } } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** Invoke the pre-update hook. If this is an UPDATE or DELETE pre-update call, ** then cursor passed as the second argument should point to the row about ** to be update or deleted. If the application calls sqlite3_preupdate_old(), ** the required value will be read from the row the cursor points to. */ SQLITE_PRIVATE void sqlite3VdbePreUpdateHook( Vdbe *v, /* Vdbe pre-update hook is invoked by */ VdbeCursor *pCsr, /* Cursor to grab old.* values from */ int op, /* SQLITE_INSERT, UPDATE or DELETE */ const char *zDb, /* Database name */ Table *pTab, /* Modified table */ i64 iKey1, /* Initial key value */ int iReg /* Register for new.* record */ ){ sqlite3 *db = v->db; i64 iKey2; PreUpdate preupdate; const char *zTbl = pTab->zName; static const u8 fakeSortOrder = 0; assert( db->pPreUpdate==0 ); memset(&preupdate, 0, sizeof(PreUpdate)); if( HasRowid(pTab)==0 ){ iKey1 = iKey2 = 0; preupdate.pPk = sqlite3PrimaryKeyIndex(pTab); }else{ if( op==SQLITE_UPDATE ){ iKey2 = v->aMem[iReg].u.i; }else{ iKey2 = iKey1; } } assert( pCsr->nField==pTab->nCol || (pCsr->nField==pTab->nCol+1 && op==SQLITE_DELETE && iReg==-1) ); preupdate.v = v; preupdate.pCsr = pCsr; preupdate.op = op; preupdate.iNewReg = iReg; preupdate.keyinfo.db = db; preupdate.keyinfo.enc = ENC(db); preupdate.keyinfo.nKeyField = pTab->nCol; preupdate.keyinfo.aSortFlags = (u8*)&fakeSortOrder; preupdate.iKey1 = iKey1; preupdate.iKey2 = iKey2; preupdate.pTab = pTab; db->pPreUpdate = &preupdate; db->xPreUpdateCallback(db->pPreUpdateArg, db, op, zDb, zTbl, iKey1, iKey2); db->pPreUpdate = 0; sqlite3DbFree(db, preupdate.aRecord); vdbeFreeUnpacked(db, preupdate.keyinfo.nKeyField+1, preupdate.pUnpacked); vdbeFreeUnpacked(db, preupdate.keyinfo.nKeyField+1, preupdate.pNewUnpacked); if( preupdate.aNew ){ int i; for(i=0; inField; i++){ sqlite3VdbeMemRelease(&preupdate.aNew[i]); } sqlite3DbFreeNN(db, preupdate.aNew); } } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ /************** End of vdbeaux.c *********************************************/ /************** Begin file vdbeapi.c *****************************************/ /* ** 2004 May 26 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code use to implement APIs that are part of the ** VDBE. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ #ifndef SQLITE_OMIT_DEPRECATED /* ** Return TRUE (non-zero) of the statement supplied as an argument needs ** to be recompiled. A statement needs to be recompiled whenever the ** execution environment changes in a way that would alter the program ** that sqlite3_prepare() generates. For example, if new functions or ** collating sequences are registered or if an authorizer function is ** added or changed. */ SQLITE_API int sqlite3_expired(sqlite3_stmt *pStmt){ Vdbe *p = (Vdbe*)pStmt; return p==0 || p->expired; } #endif /* ** Check on a Vdbe to make sure it has not been finalized. Log ** an error and return true if it has been finalized (or is otherwise ** invalid). Return false if it is ok. */ static int vdbeSafety(Vdbe *p){ if( p->db==0 ){ sqlite3_log(SQLITE_MISUSE, "API called with finalized prepared statement"); return 1; }else{ return 0; } } static int vdbeSafetyNotNull(Vdbe *p){ if( p==0 ){ sqlite3_log(SQLITE_MISUSE, "API called with NULL prepared statement"); return 1; }else{ return vdbeSafety(p); } } #ifndef SQLITE_OMIT_TRACE /* ** Invoke the profile callback. This routine is only called if we already ** know that the profile callback is defined and needs to be invoked. */ static SQLITE_NOINLINE void invokeProfileCallback(sqlite3 *db, Vdbe *p){ sqlite3_int64 iNow; sqlite3_int64 iElapse; assert( p->startTime>0 ); assert( (db->mTrace & (SQLITE_TRACE_PROFILE|SQLITE_TRACE_XPROFILE))!=0 ); assert( db->init.busy==0 ); assert( p->zSql!=0 ); sqlite3OsCurrentTimeInt64(db->pVfs, &iNow); iElapse = (iNow - p->startTime)*1000000; #ifndef SQLITE_OMIT_DEPRECATED if( db->xProfile ){ db->xProfile(db->pProfileArg, p->zSql, iElapse); } #endif if( db->mTrace & SQLITE_TRACE_PROFILE ){ db->trace.xV2(SQLITE_TRACE_PROFILE, db->pTraceArg, p, (void*)&iElapse); } p->startTime = 0; } /* ** The checkProfileCallback(DB,P) macro checks to see if a profile callback ** is needed, and it invokes the callback if it is needed. */ # define checkProfileCallback(DB,P) \ if( ((P)->startTime)>0 ){ invokeProfileCallback(DB,P); } #else # define checkProfileCallback(DB,P) /*no-op*/ #endif /* ** The following routine destroys a virtual machine that is created by ** the sqlite3_compile() routine. The integer returned is an SQLITE_ ** success/failure code that describes the result of executing the virtual ** machine. ** ** This routine sets the error code and string returned by ** sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16(). */ SQLITE_API int sqlite3_finalize(sqlite3_stmt *pStmt){ int rc; if( pStmt==0 ){ /* IMPLEMENTATION-OF: R-57228-12904 Invoking sqlite3_finalize() on a NULL ** pointer is a harmless no-op. */ rc = SQLITE_OK; }else{ Vdbe *v = (Vdbe*)pStmt; sqlite3 *db = v->db; if( vdbeSafety(v) ) return SQLITE_MISUSE_BKPT; sqlite3_mutex_enter(db->mutex); checkProfileCallback(db, v); rc = sqlite3VdbeFinalize(v); rc = sqlite3ApiExit(db, rc); sqlite3LeaveMutexAndCloseZombie(db); } return rc; } /* ** Terminate the current execution of an SQL statement and reset it ** back to its starting state so that it can be reused. A success code from ** the prior execution is returned. ** ** This routine sets the error code and string returned by ** sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16(). */ SQLITE_API int sqlite3_reset(sqlite3_stmt *pStmt){ int rc; if( pStmt==0 ){ rc = SQLITE_OK; }else{ Vdbe *v = (Vdbe*)pStmt; sqlite3 *db = v->db; sqlite3_mutex_enter(db->mutex); checkProfileCallback(db, v); rc = sqlite3VdbeReset(v); sqlite3VdbeRewind(v); assert( (rc & (db->errMask))==rc ); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); } return rc; } /* ** Set all the parameters in the compiled SQL statement to NULL. */ SQLITE_API int sqlite3_clear_bindings(sqlite3_stmt *pStmt){ int i; int rc = SQLITE_OK; Vdbe *p = (Vdbe*)pStmt; #if SQLITE_THREADSAFE sqlite3_mutex *mutex = ((Vdbe*)pStmt)->db->mutex; #endif sqlite3_mutex_enter(mutex); for(i=0; inVar; i++){ sqlite3VdbeMemRelease(&p->aVar[i]); p->aVar[i].flags = MEM_Null; } assert( (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 || p->expmask==0 ); if( p->expmask ){ p->expired = 1; } sqlite3_mutex_leave(mutex); return rc; } /**************************** sqlite3_value_ ******************************* ** The following routines extract information from a Mem or sqlite3_value ** structure. */ SQLITE_API const void *sqlite3_value_blob(sqlite3_value *pVal){ Mem *p = (Mem*)pVal; if( p->flags & (MEM_Blob|MEM_Str) ){ if( ExpandBlob(p)!=SQLITE_OK ){ assert( p->flags==MEM_Null && p->z==0 ); return 0; } p->flags |= MEM_Blob; return p->n ? p->z : 0; }else{ return sqlite3_value_text(pVal); } } SQLITE_API int sqlite3_value_bytes(sqlite3_value *pVal){ return sqlite3ValueBytes(pVal, SQLITE_UTF8); } SQLITE_API int sqlite3_value_bytes16(sqlite3_value *pVal){ return sqlite3ValueBytes(pVal, SQLITE_UTF16NATIVE); } SQLITE_API double sqlite3_value_double(sqlite3_value *pVal){ return sqlite3VdbeRealValue((Mem*)pVal); } SQLITE_API int sqlite3_value_int(sqlite3_value *pVal){ return (int)sqlite3VdbeIntValue((Mem*)pVal); } SQLITE_API sqlite_int64 sqlite3_value_int64(sqlite3_value *pVal){ return sqlite3VdbeIntValue((Mem*)pVal); } SQLITE_API unsigned int sqlite3_value_subtype(sqlite3_value *pVal){ Mem *pMem = (Mem*)pVal; return ((pMem->flags & MEM_Subtype) ? pMem->eSubtype : 0); } SQLITE_API void *sqlite3_value_pointer(sqlite3_value *pVal, const char *zPType){ Mem *p = (Mem*)pVal; if( (p->flags&(MEM_TypeMask|MEM_Term|MEM_Subtype)) == (MEM_Null|MEM_Term|MEM_Subtype) && zPType!=0 && p->eSubtype=='p' && strcmp(p->u.zPType, zPType)==0 ){ return (void*)p->z; }else{ return 0; } } SQLITE_API const unsigned char *sqlite3_value_text(sqlite3_value *pVal){ return (const unsigned char *)sqlite3ValueText(pVal, SQLITE_UTF8); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_value_text16(sqlite3_value* pVal){ return sqlite3ValueText(pVal, SQLITE_UTF16NATIVE); } SQLITE_API const void *sqlite3_value_text16be(sqlite3_value *pVal){ return sqlite3ValueText(pVal, SQLITE_UTF16BE); } SQLITE_API const void *sqlite3_value_text16le(sqlite3_value *pVal){ return sqlite3ValueText(pVal, SQLITE_UTF16LE); } #endif /* SQLITE_OMIT_UTF16 */ /* EVIDENCE-OF: R-12793-43283 Every value in SQLite has one of five ** fundamental datatypes: 64-bit signed integer 64-bit IEEE floating ** point number string BLOB NULL */ SQLITE_API int sqlite3_value_type(sqlite3_value* pVal){ static const u8 aType[] = { SQLITE_BLOB, /* 0x00 (not possible) */ SQLITE_NULL, /* 0x01 NULL */ SQLITE_TEXT, /* 0x02 TEXT */ SQLITE_NULL, /* 0x03 (not possible) */ SQLITE_INTEGER, /* 0x04 INTEGER */ SQLITE_NULL, /* 0x05 (not possible) */ SQLITE_INTEGER, /* 0x06 INTEGER + TEXT */ SQLITE_NULL, /* 0x07 (not possible) */ SQLITE_FLOAT, /* 0x08 FLOAT */ SQLITE_NULL, /* 0x09 (not possible) */ SQLITE_FLOAT, /* 0x0a FLOAT + TEXT */ SQLITE_NULL, /* 0x0b (not possible) */ SQLITE_INTEGER, /* 0x0c (not possible) */ SQLITE_NULL, /* 0x0d (not possible) */ SQLITE_INTEGER, /* 0x0e (not possible) */ SQLITE_NULL, /* 0x0f (not possible) */ SQLITE_BLOB, /* 0x10 BLOB */ SQLITE_NULL, /* 0x11 (not possible) */ SQLITE_TEXT, /* 0x12 (not possible) */ SQLITE_NULL, /* 0x13 (not possible) */ SQLITE_INTEGER, /* 0x14 INTEGER + BLOB */ SQLITE_NULL, /* 0x15 (not possible) */ SQLITE_INTEGER, /* 0x16 (not possible) */ SQLITE_NULL, /* 0x17 (not possible) */ SQLITE_FLOAT, /* 0x18 FLOAT + BLOB */ SQLITE_NULL, /* 0x19 (not possible) */ SQLITE_FLOAT, /* 0x1a (not possible) */ SQLITE_NULL, /* 0x1b (not possible) */ SQLITE_INTEGER, /* 0x1c (not possible) */ SQLITE_NULL, /* 0x1d (not possible) */ SQLITE_INTEGER, /* 0x1e (not possible) */ SQLITE_NULL, /* 0x1f (not possible) */ SQLITE_FLOAT, /* 0x20 INTREAL */ SQLITE_NULL, /* 0x21 (not possible) */ SQLITE_TEXT, /* 0x22 INTREAL + TEXT */ SQLITE_NULL, /* 0x23 (not possible) */ SQLITE_FLOAT, /* 0x24 (not possible) */ SQLITE_NULL, /* 0x25 (not possible) */ SQLITE_FLOAT, /* 0x26 (not possible) */ SQLITE_NULL, /* 0x27 (not possible) */ SQLITE_FLOAT, /* 0x28 (not possible) */ SQLITE_NULL, /* 0x29 (not possible) */ SQLITE_FLOAT, /* 0x2a (not possible) */ SQLITE_NULL, /* 0x2b (not possible) */ SQLITE_FLOAT, /* 0x2c (not possible) */ SQLITE_NULL, /* 0x2d (not possible) */ SQLITE_FLOAT, /* 0x2e (not possible) */ SQLITE_NULL, /* 0x2f (not possible) */ SQLITE_BLOB, /* 0x30 (not possible) */ SQLITE_NULL, /* 0x31 (not possible) */ SQLITE_TEXT, /* 0x32 (not possible) */ SQLITE_NULL, /* 0x33 (not possible) */ SQLITE_FLOAT, /* 0x34 (not possible) */ SQLITE_NULL, /* 0x35 (not possible) */ SQLITE_FLOAT, /* 0x36 (not possible) */ SQLITE_NULL, /* 0x37 (not possible) */ SQLITE_FLOAT, /* 0x38 (not possible) */ SQLITE_NULL, /* 0x39 (not possible) */ SQLITE_FLOAT, /* 0x3a (not possible) */ SQLITE_NULL, /* 0x3b (not possible) */ SQLITE_FLOAT, /* 0x3c (not possible) */ SQLITE_NULL, /* 0x3d (not possible) */ SQLITE_FLOAT, /* 0x3e (not possible) */ SQLITE_NULL, /* 0x3f (not possible) */ }; #ifdef SQLITE_DEBUG { int eType = SQLITE_BLOB; if( pVal->flags & MEM_Null ){ eType = SQLITE_NULL; }else if( pVal->flags & (MEM_Real|MEM_IntReal) ){ eType = SQLITE_FLOAT; }else if( pVal->flags & MEM_Int ){ eType = SQLITE_INTEGER; }else if( pVal->flags & MEM_Str ){ eType = SQLITE_TEXT; } assert( eType == aType[pVal->flags&MEM_AffMask] ); } #endif return aType[pVal->flags&MEM_AffMask]; } /* Return true if a parameter to xUpdate represents an unchanged column */ SQLITE_API int sqlite3_value_nochange(sqlite3_value *pVal){ return (pVal->flags&(MEM_Null|MEM_Zero))==(MEM_Null|MEM_Zero); } /* Return true if a parameter value originated from an sqlite3_bind() */ SQLITE_API int sqlite3_value_frombind(sqlite3_value *pVal){ return (pVal->flags&MEM_FromBind)!=0; } /* Make a copy of an sqlite3_value object */ SQLITE_API sqlite3_value *sqlite3_value_dup(const sqlite3_value *pOrig){ sqlite3_value *pNew; if( pOrig==0 ) return 0; pNew = sqlite3_malloc( sizeof(*pNew) ); if( pNew==0 ) return 0; memset(pNew, 0, sizeof(*pNew)); memcpy(pNew, pOrig, MEMCELLSIZE); pNew->flags &= ~MEM_Dyn; pNew->db = 0; if( pNew->flags&(MEM_Str|MEM_Blob) ){ pNew->flags &= ~(MEM_Static|MEM_Dyn); pNew->flags |= MEM_Ephem; if( sqlite3VdbeMemMakeWriteable(pNew)!=SQLITE_OK ){ sqlite3ValueFree(pNew); pNew = 0; } } return pNew; } /* Destroy an sqlite3_value object previously obtained from ** sqlite3_value_dup(). */ SQLITE_API void sqlite3_value_free(sqlite3_value *pOld){ sqlite3ValueFree(pOld); } /**************************** sqlite3_result_ ******************************* ** The following routines are used by user-defined functions to specify ** the function result. ** ** The setStrOrError() function calls sqlite3VdbeMemSetStr() to store the ** result as a string or blob but if the string or blob is too large, it ** then sets the error code to SQLITE_TOOBIG ** ** The invokeValueDestructor(P,X) routine invokes destructor function X() ** on value P is not going to be used and need to be destroyed. */ static void setResultStrOrError( sqlite3_context *pCtx, /* Function context */ const char *z, /* String pointer */ int n, /* Bytes in string, or negative */ u8 enc, /* Encoding of z. 0 for BLOBs */ void (*xDel)(void*) /* Destructor function */ ){ if( sqlite3VdbeMemSetStr(pCtx->pOut, z, n, enc, xDel)==SQLITE_TOOBIG ){ sqlite3_result_error_toobig(pCtx); } } static int invokeValueDestructor( const void *p, /* Value to destroy */ void (*xDel)(void*), /* The destructor */ sqlite3_context *pCtx /* Set a SQLITE_TOOBIG error if no NULL */ ){ assert( xDel!=SQLITE_DYNAMIC ); if( xDel==0 ){ /* noop */ }else if( xDel==SQLITE_TRANSIENT ){ /* noop */ }else{ xDel((void*)p); } if( pCtx ) sqlite3_result_error_toobig(pCtx); return SQLITE_TOOBIG; } SQLITE_API void sqlite3_result_blob( sqlite3_context *pCtx, const void *z, int n, void (*xDel)(void *) ){ assert( n>=0 ); assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); setResultStrOrError(pCtx, z, n, 0, xDel); } SQLITE_API void sqlite3_result_blob64( sqlite3_context *pCtx, const void *z, sqlite3_uint64 n, void (*xDel)(void *) ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); assert( xDel!=SQLITE_DYNAMIC ); if( n>0x7fffffff ){ (void)invokeValueDestructor(z, xDel, pCtx); }else{ setResultStrOrError(pCtx, z, (int)n, 0, xDel); } } SQLITE_API void sqlite3_result_double(sqlite3_context *pCtx, double rVal){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetDouble(pCtx->pOut, rVal); } SQLITE_API void sqlite3_result_error(sqlite3_context *pCtx, const char *z, int n){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); pCtx->isError = SQLITE_ERROR; sqlite3VdbeMemSetStr(pCtx->pOut, z, n, SQLITE_UTF8, SQLITE_TRANSIENT); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API void sqlite3_result_error16(sqlite3_context *pCtx, const void *z, int n){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); pCtx->isError = SQLITE_ERROR; sqlite3VdbeMemSetStr(pCtx->pOut, z, n, SQLITE_UTF16NATIVE, SQLITE_TRANSIENT); } #endif SQLITE_API void sqlite3_result_int(sqlite3_context *pCtx, int iVal){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetInt64(pCtx->pOut, (i64)iVal); } SQLITE_API void sqlite3_result_int64(sqlite3_context *pCtx, i64 iVal){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetInt64(pCtx->pOut, iVal); } SQLITE_API void sqlite3_result_null(sqlite3_context *pCtx){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetNull(pCtx->pOut); } SQLITE_API void sqlite3_result_pointer( sqlite3_context *pCtx, void *pPtr, const char *zPType, void (*xDestructor)(void*) ){ Mem *pOut = pCtx->pOut; assert( sqlite3_mutex_held(pOut->db->mutex) ); sqlite3VdbeMemRelease(pOut); pOut->flags = MEM_Null; sqlite3VdbeMemSetPointer(pOut, pPtr, zPType, xDestructor); } SQLITE_API void sqlite3_result_subtype(sqlite3_context *pCtx, unsigned int eSubtype){ Mem *pOut = pCtx->pOut; assert( sqlite3_mutex_held(pOut->db->mutex) ); pOut->eSubtype = eSubtype & 0xff; pOut->flags |= MEM_Subtype; } SQLITE_API void sqlite3_result_text( sqlite3_context *pCtx, const char *z, int n, void (*xDel)(void *) ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); setResultStrOrError(pCtx, z, n, SQLITE_UTF8, xDel); } SQLITE_API void sqlite3_result_text64( sqlite3_context *pCtx, const char *z, sqlite3_uint64 n, void (*xDel)(void *), unsigned char enc ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); assert( xDel!=SQLITE_DYNAMIC ); if( enc==SQLITE_UTF16 ) enc = SQLITE_UTF16NATIVE; if( n>0x7fffffff ){ (void)invokeValueDestructor(z, xDel, pCtx); }else{ setResultStrOrError(pCtx, z, (int)n, enc, xDel); } } #ifndef SQLITE_OMIT_UTF16 SQLITE_API void sqlite3_result_text16( sqlite3_context *pCtx, const void *z, int n, void (*xDel)(void *) ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); setResultStrOrError(pCtx, z, n, SQLITE_UTF16NATIVE, xDel); } SQLITE_API void sqlite3_result_text16be( sqlite3_context *pCtx, const void *z, int n, void (*xDel)(void *) ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); setResultStrOrError(pCtx, z, n, SQLITE_UTF16BE, xDel); } SQLITE_API void sqlite3_result_text16le( sqlite3_context *pCtx, const void *z, int n, void (*xDel)(void *) ){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); setResultStrOrError(pCtx, z, n, SQLITE_UTF16LE, xDel); } #endif /* SQLITE_OMIT_UTF16 */ SQLITE_API void sqlite3_result_value(sqlite3_context *pCtx, sqlite3_value *pValue){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemCopy(pCtx->pOut, pValue); } SQLITE_API void sqlite3_result_zeroblob(sqlite3_context *pCtx, int n){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetZeroBlob(pCtx->pOut, n); } SQLITE_API int sqlite3_result_zeroblob64(sqlite3_context *pCtx, u64 n){ Mem *pOut = pCtx->pOut; assert( sqlite3_mutex_held(pOut->db->mutex) ); if( n>(u64)pOut->db->aLimit[SQLITE_LIMIT_LENGTH] ){ return SQLITE_TOOBIG; } sqlite3VdbeMemSetZeroBlob(pCtx->pOut, (int)n); return SQLITE_OK; } SQLITE_API void sqlite3_result_error_code(sqlite3_context *pCtx, int errCode){ pCtx->isError = errCode ? errCode : -1; #ifdef SQLITE_DEBUG if( pCtx->pVdbe ) pCtx->pVdbe->rcApp = errCode; #endif if( pCtx->pOut->flags & MEM_Null ){ sqlite3VdbeMemSetStr(pCtx->pOut, sqlite3ErrStr(errCode), -1, SQLITE_UTF8, SQLITE_STATIC); } } /* Force an SQLITE_TOOBIG error. */ SQLITE_API void sqlite3_result_error_toobig(sqlite3_context *pCtx){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); pCtx->isError = SQLITE_TOOBIG; sqlite3VdbeMemSetStr(pCtx->pOut, "string or blob too big", -1, SQLITE_UTF8, SQLITE_STATIC); } /* An SQLITE_NOMEM error. */ SQLITE_API void sqlite3_result_error_nomem(sqlite3_context *pCtx){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); sqlite3VdbeMemSetNull(pCtx->pOut); pCtx->isError = SQLITE_NOMEM_BKPT; sqlite3OomFault(pCtx->pOut->db); } #ifndef SQLITE_UNTESTABLE /* Force the INT64 value currently stored as the result to be ** a MEM_IntReal value. See the SQLITE_TESTCTRL_RESULT_INTREAL ** test-control. */ SQLITE_PRIVATE void sqlite3ResultIntReal(sqlite3_context *pCtx){ assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); if( pCtx->pOut->flags & MEM_Int ){ pCtx->pOut->flags &= ~MEM_Int; pCtx->pOut->flags |= MEM_IntReal; } } #endif /* ** This function is called after a transaction has been committed. It ** invokes callbacks registered with sqlite3_wal_hook() as required. */ static int doWalCallbacks(sqlite3 *db){ int rc = SQLITE_OK; #ifndef SQLITE_OMIT_WAL int i; for(i=0; inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ int nEntry; sqlite3BtreeEnter(pBt); nEntry = sqlite3PagerWalCallback(sqlite3BtreePager(pBt)); sqlite3BtreeLeave(pBt); if( nEntry>0 && db->xWalCallback && rc==SQLITE_OK ){ rc = db->xWalCallback(db->pWalArg, db, db->aDb[i].zDbSName, nEntry); } } } #endif return rc; } /* ** Execute the statement pStmt, either until a row of data is ready, the ** statement is completely executed or an error occurs. ** ** This routine implements the bulk of the logic behind the sqlite_step() ** API. The only thing omitted is the automatic recompile if a ** schema change has occurred. That detail is handled by the ** outer sqlite3_step() wrapper procedure. */ static int sqlite3Step(Vdbe *p){ sqlite3 *db; int rc; assert(p); if( p->magic!=VDBE_MAGIC_RUN ){ /* We used to require that sqlite3_reset() be called before retrying ** sqlite3_step() after any error or after SQLITE_DONE. But beginning ** with version 3.7.0, we changed this so that sqlite3_reset() would ** be called automatically instead of throwing the SQLITE_MISUSE error. ** This "automatic-reset" change is not technically an incompatibility, ** since any application that receives an SQLITE_MISUSE is broken by ** definition. ** ** Nevertheless, some published applications that were originally written ** for version 3.6.23 or earlier do in fact depend on SQLITE_MISUSE ** returns, and those were broken by the automatic-reset change. As a ** a work-around, the SQLITE_OMIT_AUTORESET compile-time restores the ** legacy behavior of returning SQLITE_MISUSE for cases where the ** previous sqlite3_step() returned something other than a SQLITE_LOCKED ** or SQLITE_BUSY error. */ #ifdef SQLITE_OMIT_AUTORESET if( (rc = p->rc&0xff)==SQLITE_BUSY || rc==SQLITE_LOCKED ){ sqlite3_reset((sqlite3_stmt*)p); }else{ return SQLITE_MISUSE_BKPT; } #else sqlite3_reset((sqlite3_stmt*)p); #endif } /* Check that malloc() has not failed. If it has, return early. */ db = p->db; if( db->mallocFailed ){ p->rc = SQLITE_NOMEM; return SQLITE_NOMEM_BKPT; } if( p->pc<0 && p->expired ){ p->rc = SQLITE_SCHEMA; rc = SQLITE_ERROR; if( (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 ){ /* If this statement was prepared using saved SQL and an ** error has occurred, then return the error code in p->rc to the ** caller. Set the error code in the database handle to the same value. */ rc = sqlite3VdbeTransferError(p); } goto end_of_step; } if( p->pc<0 ){ /* If there are no other statements currently running, then ** reset the interrupt flag. This prevents a call to sqlite3_interrupt ** from interrupting a statement that has not yet started. */ if( db->nVdbeActive==0 ){ AtomicStore(&db->u1.isInterrupted, 0); } assert( db->nVdbeWrite>0 || db->autoCommit==0 || (db->nDeferredCons==0 && db->nDeferredImmCons==0) ); #ifndef SQLITE_OMIT_TRACE if( (db->mTrace & (SQLITE_TRACE_PROFILE|SQLITE_TRACE_XPROFILE))!=0 && !db->init.busy && p->zSql ){ sqlite3OsCurrentTimeInt64(db->pVfs, &p->startTime); }else{ assert( p->startTime==0 ); } #endif db->nVdbeActive++; if( p->readOnly==0 ) db->nVdbeWrite++; if( p->bIsReader ) db->nVdbeRead++; p->pc = 0; } #ifdef SQLITE_DEBUG p->rcApp = SQLITE_OK; #endif #ifndef SQLITE_OMIT_EXPLAIN if( p->explain ){ rc = sqlite3VdbeList(p); }else #endif /* SQLITE_OMIT_EXPLAIN */ { db->nVdbeExec++; rc = sqlite3VdbeExec(p); db->nVdbeExec--; } if( rc!=SQLITE_ROW ){ #ifndef SQLITE_OMIT_TRACE /* If the statement completed successfully, invoke the profile callback */ checkProfileCallback(db, p); #endif if( rc==SQLITE_DONE && db->autoCommit ){ assert( p->rc==SQLITE_OK ); p->rc = doWalCallbacks(db); if( p->rc!=SQLITE_OK ){ rc = SQLITE_ERROR; } }else if( rc!=SQLITE_DONE && (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 ){ /* If this statement was prepared using saved SQL and an ** error has occurred, then return the error code in p->rc to the ** caller. Set the error code in the database handle to the same value. */ rc = sqlite3VdbeTransferError(p); } } db->errCode = rc; if( SQLITE_NOMEM==sqlite3ApiExit(p->db, p->rc) ){ p->rc = SQLITE_NOMEM_BKPT; if( (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 ) rc = p->rc; } end_of_step: /* There are only a limited number of result codes allowed from the ** statements prepared using the legacy sqlite3_prepare() interface */ assert( (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 || rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR || (rc&0xff)==SQLITE_BUSY || rc==SQLITE_MISUSE ); return (rc&db->errMask); } /* ** This is the top-level implementation of sqlite3_step(). Call ** sqlite3Step() to do most of the work. If a schema error occurs, ** call sqlite3Reprepare() and try again. */ SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){ int rc = SQLITE_OK; /* Result from sqlite3Step() */ Vdbe *v = (Vdbe*)pStmt; /* the prepared statement */ int cnt = 0; /* Counter to prevent infinite loop of reprepares */ sqlite3 *db; /* The database connection */ if( vdbeSafetyNotNull(v) ){ return SQLITE_MISUSE_BKPT; } db = v->db; sqlite3_mutex_enter(db->mutex); v->doingRerun = 0; while( (rc = sqlite3Step(v))==SQLITE_SCHEMA && cnt++ < SQLITE_MAX_SCHEMA_RETRY ){ int savedPc = v->pc; rc = sqlite3Reprepare(v); if( rc!=SQLITE_OK ){ /* This case occurs after failing to recompile an sql statement. ** The error message from the SQL compiler has already been loaded ** into the database handle. This block copies the error message ** from the database handle into the statement and sets the statement ** program counter to 0 to ensure that when the statement is ** finalized or reset the parser error message is available via ** sqlite3_errmsg() and sqlite3_errcode(). */ const char *zErr = (const char *)sqlite3_value_text(db->pErr); sqlite3DbFree(db, v->zErrMsg); if( !db->mallocFailed ){ v->zErrMsg = sqlite3DbStrDup(db, zErr); v->rc = rc = sqlite3ApiExit(db, rc); } else { v->zErrMsg = 0; v->rc = rc = SQLITE_NOMEM_BKPT; } break; } sqlite3_reset(pStmt); if( savedPc>=0 ) v->doingRerun = 1; assert( v->expired==0 ); } sqlite3_mutex_leave(db->mutex); return rc; } /* ** Extract the user data from a sqlite3_context structure and return a ** pointer to it. */ SQLITE_API void *sqlite3_user_data(sqlite3_context *p){ assert( p && p->pFunc ); return p->pFunc->pUserData; } /* ** Extract the user data from a sqlite3_context structure and return a ** pointer to it. ** ** IMPLEMENTATION-OF: R-46798-50301 The sqlite3_context_db_handle() interface ** returns a copy of the pointer to the database connection (the 1st ** parameter) of the sqlite3_create_function() and ** sqlite3_create_function16() routines that originally registered the ** application defined function. */ SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context *p){ assert( p && p->pOut ); return p->pOut->db; } /* ** If this routine is invoked from within an xColumn method of a virtual ** table, then it returns true if and only if the the call is during an ** UPDATE operation and the value of the column will not be modified ** by the UPDATE. ** ** If this routine is called from any context other than within the ** xColumn method of a virtual table, then the return value is meaningless ** and arbitrary. ** ** Virtual table implements might use this routine to optimize their ** performance by substituting a NULL result, or some other light-weight ** value, as a signal to the xUpdate routine that the column is unchanged. */ SQLITE_API int sqlite3_vtab_nochange(sqlite3_context *p){ assert( p ); return sqlite3_value_nochange(p->pOut); } /* ** Return the current time for a statement. If the current time ** is requested more than once within the same run of a single prepared ** statement, the exact same time is returned for each invocation regardless ** of the amount of time that elapses between invocations. In other words, ** the time returned is always the time of the first call. */ SQLITE_PRIVATE sqlite3_int64 sqlite3StmtCurrentTime(sqlite3_context *p){ int rc; #ifndef SQLITE_ENABLE_STAT4 sqlite3_int64 *piTime = &p->pVdbe->iCurrentTime; assert( p->pVdbe!=0 ); #else sqlite3_int64 iTime = 0; sqlite3_int64 *piTime = p->pVdbe!=0 ? &p->pVdbe->iCurrentTime : &iTime; #endif if( *piTime==0 ){ rc = sqlite3OsCurrentTimeInt64(p->pOut->db->pVfs, piTime); if( rc ) *piTime = 0; } return *piTime; } /* ** Create a new aggregate context for p and return a pointer to ** its pMem->z element. */ static SQLITE_NOINLINE void *createAggContext(sqlite3_context *p, int nByte){ Mem *pMem = p->pMem; assert( (pMem->flags & MEM_Agg)==0 ); if( nByte<=0 ){ sqlite3VdbeMemSetNull(pMem); pMem->z = 0; }else{ sqlite3VdbeMemClearAndResize(pMem, nByte); pMem->flags = MEM_Agg; pMem->u.pDef = p->pFunc; if( pMem->z ){ memset(pMem->z, 0, nByte); } } return (void*)pMem->z; } /* ** Allocate or return the aggregate context for a user function. A new ** context is allocated on the first call. Subsequent calls return the ** same context that was returned on prior calls. */ SQLITE_API void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){ assert( p && p->pFunc && p->pFunc->xFinalize ); assert( sqlite3_mutex_held(p->pOut->db->mutex) ); testcase( nByte<0 ); if( (p->pMem->flags & MEM_Agg)==0 ){ return createAggContext(p, nByte); }else{ return (void*)p->pMem->z; } } /* ** Return the auxiliary data pointer, if any, for the iArg'th argument to ** the user-function defined by pCtx. ** ** The left-most argument is 0. ** ** Undocumented behavior: If iArg is negative then access a cache of ** auxiliary data pointers that is available to all functions within a ** single prepared statement. The iArg values must match. */ SQLITE_API void *sqlite3_get_auxdata(sqlite3_context *pCtx, int iArg){ AuxData *pAuxData; assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); #if SQLITE_ENABLE_STAT4 if( pCtx->pVdbe==0 ) return 0; #else assert( pCtx->pVdbe!=0 ); #endif for(pAuxData=pCtx->pVdbe->pAuxData; pAuxData; pAuxData=pAuxData->pNextAux){ if( pAuxData->iAuxArg==iArg && (pAuxData->iAuxOp==pCtx->iOp || iArg<0) ){ return pAuxData->pAux; } } return 0; } /* ** Set the auxiliary data pointer and delete function, for the iArg'th ** argument to the user-function defined by pCtx. Any previous value is ** deleted by calling the delete function specified when it was set. ** ** The left-most argument is 0. ** ** Undocumented behavior: If iArg is negative then make the data available ** to all functions within the current prepared statement using iArg as an ** access code. */ SQLITE_API void sqlite3_set_auxdata( sqlite3_context *pCtx, int iArg, void *pAux, void (*xDelete)(void*) ){ AuxData *pAuxData; Vdbe *pVdbe = pCtx->pVdbe; assert( sqlite3_mutex_held(pCtx->pOut->db->mutex) ); #ifdef SQLITE_ENABLE_STAT4 if( pVdbe==0 ) goto failed; #else assert( pVdbe!=0 ); #endif for(pAuxData=pVdbe->pAuxData; pAuxData; pAuxData=pAuxData->pNextAux){ if( pAuxData->iAuxArg==iArg && (pAuxData->iAuxOp==pCtx->iOp || iArg<0) ){ break; } } if( pAuxData==0 ){ pAuxData = sqlite3DbMallocZero(pVdbe->db, sizeof(AuxData)); if( !pAuxData ) goto failed; pAuxData->iAuxOp = pCtx->iOp; pAuxData->iAuxArg = iArg; pAuxData->pNextAux = pVdbe->pAuxData; pVdbe->pAuxData = pAuxData; if( pCtx->isError==0 ) pCtx->isError = -1; }else if( pAuxData->xDeleteAux ){ pAuxData->xDeleteAux(pAuxData->pAux); } pAuxData->pAux = pAux; pAuxData->xDeleteAux = xDelete; return; failed: if( xDelete ){ xDelete(pAux); } } #ifndef SQLITE_OMIT_DEPRECATED /* ** Return the number of times the Step function of an aggregate has been ** called. ** ** This function is deprecated. Do not use it for new code. It is ** provide only to avoid breaking legacy code. New aggregate function ** implementations should keep their own counts within their aggregate ** context. */ SQLITE_API int sqlite3_aggregate_count(sqlite3_context *p){ assert( p && p->pMem && p->pFunc && p->pFunc->xFinalize ); return p->pMem->n; } #endif /* ** Return the number of columns in the result set for the statement pStmt. */ SQLITE_API int sqlite3_column_count(sqlite3_stmt *pStmt){ Vdbe *pVm = (Vdbe *)pStmt; return pVm ? pVm->nResColumn : 0; } /* ** Return the number of values available from the current row of the ** currently executing statement pStmt. */ SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt){ Vdbe *pVm = (Vdbe *)pStmt; if( pVm==0 || pVm->pResultSet==0 ) return 0; return pVm->nResColumn; } /* ** Return a pointer to static memory containing an SQL NULL value. */ static const Mem *columnNullValue(void){ /* Even though the Mem structure contains an element ** of type i64, on certain architectures (x86) with certain compiler ** switches (-Os), gcc may align this Mem object on a 4-byte boundary ** instead of an 8-byte one. This all works fine, except that when ** running with SQLITE_DEBUG defined the SQLite code sometimes assert()s ** that a Mem structure is located on an 8-byte boundary. To prevent ** these assert()s from failing, when building with SQLITE_DEBUG defined ** using gcc, we force nullMem to be 8-byte aligned using the magical ** __attribute__((aligned(8))) macro. */ static const Mem nullMem #if defined(SQLITE_DEBUG) && defined(__GNUC__) __attribute__((aligned(8))) #endif = { /* .u = */ {0}, /* .flags = */ (u16)MEM_Null, /* .enc = */ (u8)0, /* .eSubtype = */ (u8)0, /* .n = */ (int)0, /* .z = */ (char*)0, /* .zMalloc = */ (char*)0, /* .szMalloc = */ (int)0, /* .uTemp = */ (u32)0, /* .db = */ (sqlite3*)0, /* .xDel = */ (void(*)(void*))0, #ifdef SQLITE_DEBUG /* .pScopyFrom = */ (Mem*)0, /* .mScopyFlags= */ 0, #endif }; return &nullMem; } /* ** Check to see if column iCol of the given statement is valid. If ** it is, return a pointer to the Mem for the value of that column. ** If iCol is not valid, return a pointer to a Mem which has a value ** of NULL. */ static Mem *columnMem(sqlite3_stmt *pStmt, int i){ Vdbe *pVm; Mem *pOut; pVm = (Vdbe *)pStmt; if( pVm==0 ) return (Mem*)columnNullValue(); assert( pVm->db ); sqlite3_mutex_enter(pVm->db->mutex); if( pVm->pResultSet!=0 && inResColumn && i>=0 ){ pOut = &pVm->pResultSet[i]; }else{ sqlite3Error(pVm->db, SQLITE_RANGE); pOut = (Mem*)columnNullValue(); } return pOut; } /* ** This function is called after invoking an sqlite3_value_XXX function on a ** column value (i.e. a value returned by evaluating an SQL expression in the ** select list of a SELECT statement) that may cause a malloc() failure. If ** malloc() has failed, the threads mallocFailed flag is cleared and the result ** code of statement pStmt set to SQLITE_NOMEM. ** ** Specifically, this is called from within: ** ** sqlite3_column_int() ** sqlite3_column_int64() ** sqlite3_column_text() ** sqlite3_column_text16() ** sqlite3_column_real() ** sqlite3_column_bytes() ** sqlite3_column_bytes16() ** sqiite3_column_blob() */ static void columnMallocFailure(sqlite3_stmt *pStmt) { /* If malloc() failed during an encoding conversion within an ** sqlite3_column_XXX API, then set the return code of the statement to ** SQLITE_NOMEM. The next call to _step() (if any) will return SQLITE_ERROR ** and _finalize() will return NOMEM. */ Vdbe *p = (Vdbe *)pStmt; if( p ){ assert( p->db!=0 ); assert( sqlite3_mutex_held(p->db->mutex) ); p->rc = sqlite3ApiExit(p->db, p->rc); sqlite3_mutex_leave(p->db->mutex); } } /**************************** sqlite3_column_ ******************************* ** The following routines are used to access elements of the current row ** in the result set. */ SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt *pStmt, int i){ const void *val; val = sqlite3_value_blob( columnMem(pStmt,i) ); /* Even though there is no encoding conversion, value_blob() might ** need to call malloc() to expand the result of a zeroblob() ** expression. */ columnMallocFailure(pStmt); return val; } SQLITE_API int sqlite3_column_bytes(sqlite3_stmt *pStmt, int i){ int val = sqlite3_value_bytes( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt *pStmt, int i){ int val = sqlite3_value_bytes16( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API double sqlite3_column_double(sqlite3_stmt *pStmt, int i){ double val = sqlite3_value_double( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API int sqlite3_column_int(sqlite3_stmt *pStmt, int i){ int val = sqlite3_value_int( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API sqlite_int64 sqlite3_column_int64(sqlite3_stmt *pStmt, int i){ sqlite_int64 val = sqlite3_value_int64( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt *pStmt, int i){ const unsigned char *val = sqlite3_value_text( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt *pStmt, int i){ Mem *pOut = columnMem(pStmt, i); if( pOut->flags&MEM_Static ){ pOut->flags &= ~MEM_Static; pOut->flags |= MEM_Ephem; } columnMallocFailure(pStmt); return (sqlite3_value *)pOut; } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt *pStmt, int i){ const void *val = sqlite3_value_text16( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return val; } #endif /* SQLITE_OMIT_UTF16 */ SQLITE_API int sqlite3_column_type(sqlite3_stmt *pStmt, int i){ int iType = sqlite3_value_type( columnMem(pStmt,i) ); columnMallocFailure(pStmt); return iType; } /* ** Convert the N-th element of pStmt->pColName[] into a string using ** xFunc() then return that string. If N is out of range, return 0. ** ** There are up to 5 names for each column. useType determines which ** name is returned. Here are the names: ** ** 0 The column name as it should be displayed for output ** 1 The datatype name for the column ** 2 The name of the database that the column derives from ** 3 The name of the table that the column derives from ** 4 The name of the table column that the result column derives from ** ** If the result is not a simple column reference (if it is an expression ** or a constant) then useTypes 2, 3, and 4 return NULL. */ static const void *columnName( sqlite3_stmt *pStmt, /* The statement */ int N, /* Which column to get the name for */ int useUtf16, /* True to return the name as UTF16 */ int useType /* What type of name */ ){ const void *ret; Vdbe *p; int n; sqlite3 *db; #ifdef SQLITE_ENABLE_API_ARMOR if( pStmt==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif ret = 0; p = (Vdbe *)pStmt; db = p->db; assert( db!=0 ); n = sqlite3_column_count(pStmt); if( N=0 ){ N += useType*n; sqlite3_mutex_enter(db->mutex); assert( db->mallocFailed==0 ); #ifndef SQLITE_OMIT_UTF16 if( useUtf16 ){ ret = sqlite3_value_text16((sqlite3_value*)&p->aColName[N]); }else #endif { ret = sqlite3_value_text((sqlite3_value*)&p->aColName[N]); } /* A malloc may have failed inside of the _text() call. If this ** is the case, clear the mallocFailed flag and return NULL. */ if( db->mallocFailed ){ sqlite3OomClear(db); ret = 0; } sqlite3_mutex_leave(db->mutex); } return ret; } /* ** Return the name of the Nth column of the result set returned by SQL ** statement pStmt. */ SQLITE_API const char *sqlite3_column_name(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 0, COLNAME_NAME); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_name16(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 1, COLNAME_NAME); } #endif /* ** Constraint: If you have ENABLE_COLUMN_METADATA then you must ** not define OMIT_DECLTYPE. */ #if defined(SQLITE_OMIT_DECLTYPE) && defined(SQLITE_ENABLE_COLUMN_METADATA) # error "Must not define both SQLITE_OMIT_DECLTYPE \ and SQLITE_ENABLE_COLUMN_METADATA" #endif #ifndef SQLITE_OMIT_DECLTYPE /* ** Return the column declaration type (if applicable) of the 'i'th column ** of the result set of SQL statement pStmt. */ SQLITE_API const char *sqlite3_column_decltype(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 0, COLNAME_DECLTYPE); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_decltype16(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 1, COLNAME_DECLTYPE); } #endif /* SQLITE_OMIT_UTF16 */ #endif /* SQLITE_OMIT_DECLTYPE */ #ifdef SQLITE_ENABLE_COLUMN_METADATA /* ** Return the name of the database from which a result column derives. ** NULL is returned if the result column is an expression or constant or ** anything else which is not an unambiguous reference to a database column. */ SQLITE_API const char *sqlite3_column_database_name(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 0, COLNAME_DATABASE); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_database_name16(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 1, COLNAME_DATABASE); } #endif /* SQLITE_OMIT_UTF16 */ /* ** Return the name of the table from which a result column derives. ** NULL is returned if the result column is an expression or constant or ** anything else which is not an unambiguous reference to a database column. */ SQLITE_API const char *sqlite3_column_table_name(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 0, COLNAME_TABLE); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_table_name16(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 1, COLNAME_TABLE); } #endif /* SQLITE_OMIT_UTF16 */ /* ** Return the name of the table column from which a result column derives. ** NULL is returned if the result column is an expression or constant or ** anything else which is not an unambiguous reference to a database column. */ SQLITE_API const char *sqlite3_column_origin_name(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 0, COLNAME_COLUMN); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API const void *sqlite3_column_origin_name16(sqlite3_stmt *pStmt, int N){ return columnName(pStmt, N, 1, COLNAME_COLUMN); } #endif /* SQLITE_OMIT_UTF16 */ #endif /* SQLITE_ENABLE_COLUMN_METADATA */ /******************************* sqlite3_bind_ *************************** ** ** Routines used to attach values to wildcards in a compiled SQL statement. */ /* ** Unbind the value bound to variable i in virtual machine p. This is the ** the same as binding a NULL value to the column. If the "i" parameter is ** out of range, then SQLITE_RANGE is returned. Othewise SQLITE_OK. ** ** A successful evaluation of this routine acquires the mutex on p. ** the mutex is released if any kind of error occurs. ** ** The error code stored in database p->db is overwritten with the return ** value in any case. */ static int vdbeUnbind(Vdbe *p, int i){ Mem *pVar; if( vdbeSafetyNotNull(p) ){ return SQLITE_MISUSE_BKPT; } sqlite3_mutex_enter(p->db->mutex); if( p->magic!=VDBE_MAGIC_RUN || p->pc>=0 ){ sqlite3Error(p->db, SQLITE_MISUSE); sqlite3_mutex_leave(p->db->mutex); sqlite3_log(SQLITE_MISUSE, "bind on a busy prepared statement: [%s]", p->zSql); return SQLITE_MISUSE_BKPT; } if( i<1 || i>p->nVar ){ sqlite3Error(p->db, SQLITE_RANGE); sqlite3_mutex_leave(p->db->mutex); return SQLITE_RANGE; } i--; pVar = &p->aVar[i]; sqlite3VdbeMemRelease(pVar); pVar->flags = MEM_Null; p->db->errCode = SQLITE_OK; /* If the bit corresponding to this variable in Vdbe.expmask is set, then ** binding a new value to this variable invalidates the current query plan. ** ** IMPLEMENTATION-OF: R-57496-20354 If the specific value bound to a host ** parameter in the WHERE clause might influence the choice of query plan ** for a statement, then the statement will be automatically recompiled, ** as if there had been a schema change, on the first sqlite3_step() call ** following any change to the bindings of that parameter. */ assert( (p->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 || p->expmask==0 ); if( p->expmask!=0 && (p->expmask & (i>=31 ? 0x80000000 : (u32)1<expired = 1; } return SQLITE_OK; } /* ** Bind a text or BLOB value. */ static int bindText( sqlite3_stmt *pStmt, /* The statement to bind against */ int i, /* Index of the parameter to bind */ const void *zData, /* Pointer to the data to be bound */ int nData, /* Number of bytes of data to be bound */ void (*xDel)(void*), /* Destructor for the data */ u8 encoding /* Encoding for the data */ ){ Vdbe *p = (Vdbe *)pStmt; Mem *pVar; int rc; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ if( zData!=0 ){ pVar = &p->aVar[i-1]; rc = sqlite3VdbeMemSetStr(pVar, zData, nData, encoding, xDel); if( rc==SQLITE_OK && encoding!=0 ){ rc = sqlite3VdbeChangeEncoding(pVar, ENC(p->db)); } if( rc ){ sqlite3Error(p->db, rc); rc = sqlite3ApiExit(p->db, rc); } } sqlite3_mutex_leave(p->db->mutex); }else if( xDel!=SQLITE_STATIC && xDel!=SQLITE_TRANSIENT ){ xDel((void*)zData); } return rc; } /* ** Bind a blob value to an SQL statement variable. */ SQLITE_API int sqlite3_bind_blob( sqlite3_stmt *pStmt, int i, const void *zData, int nData, void (*xDel)(void*) ){ #ifdef SQLITE_ENABLE_API_ARMOR if( nData<0 ) return SQLITE_MISUSE_BKPT; #endif return bindText(pStmt, i, zData, nData, xDel, 0); } SQLITE_API int sqlite3_bind_blob64( sqlite3_stmt *pStmt, int i, const void *zData, sqlite3_uint64 nData, void (*xDel)(void*) ){ assert( xDel!=SQLITE_DYNAMIC ); if( nData>0x7fffffff ){ return invokeValueDestructor(zData, xDel, 0); }else{ return bindText(pStmt, i, zData, (int)nData, xDel, 0); } } SQLITE_API int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){ int rc; Vdbe *p = (Vdbe *)pStmt; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue); sqlite3_mutex_leave(p->db->mutex); } return rc; } SQLITE_API int sqlite3_bind_int(sqlite3_stmt *p, int i, int iValue){ return sqlite3_bind_int64(p, i, (i64)iValue); } SQLITE_API int sqlite3_bind_int64(sqlite3_stmt *pStmt, int i, sqlite_int64 iValue){ int rc; Vdbe *p = (Vdbe *)pStmt; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ sqlite3VdbeMemSetInt64(&p->aVar[i-1], iValue); sqlite3_mutex_leave(p->db->mutex); } return rc; } SQLITE_API int sqlite3_bind_null(sqlite3_stmt *pStmt, int i){ int rc; Vdbe *p = (Vdbe*)pStmt; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ sqlite3_mutex_leave(p->db->mutex); } return rc; } SQLITE_API int sqlite3_bind_pointer( sqlite3_stmt *pStmt, int i, void *pPtr, const char *zPTtype, void (*xDestructor)(void*) ){ int rc; Vdbe *p = (Vdbe*)pStmt; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ sqlite3VdbeMemSetPointer(&p->aVar[i-1], pPtr, zPTtype, xDestructor); sqlite3_mutex_leave(p->db->mutex); }else if( xDestructor ){ xDestructor(pPtr); } return rc; } SQLITE_API int sqlite3_bind_text( sqlite3_stmt *pStmt, int i, const char *zData, int nData, void (*xDel)(void*) ){ return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF8); } SQLITE_API int sqlite3_bind_text64( sqlite3_stmt *pStmt, int i, const char *zData, sqlite3_uint64 nData, void (*xDel)(void*), unsigned char enc ){ assert( xDel!=SQLITE_DYNAMIC ); if( nData>0x7fffffff ){ return invokeValueDestructor(zData, xDel, 0); }else{ if( enc==SQLITE_UTF16 ) enc = SQLITE_UTF16NATIVE; return bindText(pStmt, i, zData, (int)nData, xDel, enc); } } #ifndef SQLITE_OMIT_UTF16 SQLITE_API int sqlite3_bind_text16( sqlite3_stmt *pStmt, int i, const void *zData, int nData, void (*xDel)(void*) ){ return bindText(pStmt, i, zData, nData, xDel, SQLITE_UTF16NATIVE); } #endif /* SQLITE_OMIT_UTF16 */ SQLITE_API int sqlite3_bind_value(sqlite3_stmt *pStmt, int i, const sqlite3_value *pValue){ int rc; switch( sqlite3_value_type((sqlite3_value*)pValue) ){ case SQLITE_INTEGER: { rc = sqlite3_bind_int64(pStmt, i, pValue->u.i); break; } case SQLITE_FLOAT: { rc = sqlite3_bind_double(pStmt, i, pValue->u.r); break; } case SQLITE_BLOB: { if( pValue->flags & MEM_Zero ){ rc = sqlite3_bind_zeroblob(pStmt, i, pValue->u.nZero); }else{ rc = sqlite3_bind_blob(pStmt, i, pValue->z, pValue->n,SQLITE_TRANSIENT); } break; } case SQLITE_TEXT: { rc = bindText(pStmt,i, pValue->z, pValue->n, SQLITE_TRANSIENT, pValue->enc); break; } default: { rc = sqlite3_bind_null(pStmt, i); break; } } return rc; } SQLITE_API int sqlite3_bind_zeroblob(sqlite3_stmt *pStmt, int i, int n){ int rc; Vdbe *p = (Vdbe *)pStmt; rc = vdbeUnbind(p, i); if( rc==SQLITE_OK ){ sqlite3VdbeMemSetZeroBlob(&p->aVar[i-1], n); sqlite3_mutex_leave(p->db->mutex); } return rc; } SQLITE_API int sqlite3_bind_zeroblob64(sqlite3_stmt *pStmt, int i, sqlite3_uint64 n){ int rc; Vdbe *p = (Vdbe *)pStmt; sqlite3_mutex_enter(p->db->mutex); if( n>(u64)p->db->aLimit[SQLITE_LIMIT_LENGTH] ){ rc = SQLITE_TOOBIG; }else{ assert( (n & 0x7FFFFFFF)==n ); rc = sqlite3_bind_zeroblob(pStmt, i, n); } rc = sqlite3ApiExit(p->db, rc); sqlite3_mutex_leave(p->db->mutex); return rc; } /* ** Return the number of wildcards that can be potentially bound to. ** This routine is added to support DBD::SQLite. */ SQLITE_API int sqlite3_bind_parameter_count(sqlite3_stmt *pStmt){ Vdbe *p = (Vdbe*)pStmt; return p ? p->nVar : 0; } /* ** Return the name of a wildcard parameter. Return NULL if the index ** is out of range or if the wildcard is unnamed. ** ** The result is always UTF-8. */ SQLITE_API const char *sqlite3_bind_parameter_name(sqlite3_stmt *pStmt, int i){ Vdbe *p = (Vdbe*)pStmt; if( p==0 ) return 0; return sqlite3VListNumToName(p->pVList, i); } /* ** Given a wildcard parameter name, return the index of the variable ** with that name. If there is no variable with the given name, ** return 0. */ SQLITE_PRIVATE int sqlite3VdbeParameterIndex(Vdbe *p, const char *zName, int nName){ if( p==0 || zName==0 ) return 0; return sqlite3VListNameToNum(p->pVList, zName, nName); } SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt *pStmt, const char *zName){ return sqlite3VdbeParameterIndex((Vdbe*)pStmt, zName, sqlite3Strlen30(zName)); } /* ** Transfer all bindings from the first statement over to the second. */ SQLITE_PRIVATE int sqlite3TransferBindings(sqlite3_stmt *pFromStmt, sqlite3_stmt *pToStmt){ Vdbe *pFrom = (Vdbe*)pFromStmt; Vdbe *pTo = (Vdbe*)pToStmt; int i; assert( pTo->db==pFrom->db ); assert( pTo->nVar==pFrom->nVar ); sqlite3_mutex_enter(pTo->db->mutex); for(i=0; inVar; i++){ sqlite3VdbeMemMove(&pTo->aVar[i], &pFrom->aVar[i]); } sqlite3_mutex_leave(pTo->db->mutex); return SQLITE_OK; } #ifndef SQLITE_OMIT_DEPRECATED /* ** Deprecated external interface. Internal/core SQLite code ** should call sqlite3TransferBindings. ** ** It is misuse to call this routine with statements from different ** database connections. But as this is a deprecated interface, we ** will not bother to check for that condition. ** ** If the two statements contain a different number of bindings, then ** an SQLITE_ERROR is returned. Nothing else can go wrong, so otherwise ** SQLITE_OK is returned. */ SQLITE_API int sqlite3_transfer_bindings(sqlite3_stmt *pFromStmt, sqlite3_stmt *pToStmt){ Vdbe *pFrom = (Vdbe*)pFromStmt; Vdbe *pTo = (Vdbe*)pToStmt; if( pFrom->nVar!=pTo->nVar ){ return SQLITE_ERROR; } assert( (pTo->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 || pTo->expmask==0 ); if( pTo->expmask ){ pTo->expired = 1; } assert( (pFrom->prepFlags & SQLITE_PREPARE_SAVESQL)!=0 || pFrom->expmask==0 ); if( pFrom->expmask ){ pFrom->expired = 1; } return sqlite3TransferBindings(pFromStmt, pToStmt); } #endif /* ** Return the sqlite3* database handle to which the prepared statement given ** in the argument belongs. This is the same database handle that was ** the first argument to the sqlite3_prepare() that was used to create ** the statement in the first place. */ SQLITE_API sqlite3 *sqlite3_db_handle(sqlite3_stmt *pStmt){ return pStmt ? ((Vdbe*)pStmt)->db : 0; } /* ** Return true if the prepared statement is guaranteed to not modify the ** database. */ SQLITE_API int sqlite3_stmt_readonly(sqlite3_stmt *pStmt){ return pStmt ? ((Vdbe*)pStmt)->readOnly : 1; } /* ** Return 1 if the statement is an EXPLAIN and return 2 if the ** statement is an EXPLAIN QUERY PLAN */ SQLITE_API int sqlite3_stmt_isexplain(sqlite3_stmt *pStmt){ return pStmt ? ((Vdbe*)pStmt)->explain : 0; } /* ** Return true if the prepared statement is in need of being reset. */ SQLITE_API int sqlite3_stmt_busy(sqlite3_stmt *pStmt){ Vdbe *v = (Vdbe*)pStmt; return v!=0 && v->magic==VDBE_MAGIC_RUN && v->pc>=0; } /* ** Return a pointer to the next prepared statement after pStmt associated ** with database connection pDb. If pStmt is NULL, return the first ** prepared statement for the database connection. Return NULL if there ** are no more. */ SQLITE_API sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt){ sqlite3_stmt *pNext; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(pDb) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(pDb->mutex); if( pStmt==0 ){ pNext = (sqlite3_stmt*)pDb->pVdbe; }else{ pNext = (sqlite3_stmt*)((Vdbe*)pStmt)->pNext; } sqlite3_mutex_leave(pDb->mutex); return pNext; } /* ** Return the value of a status counter for a prepared statement */ SQLITE_API int sqlite3_stmt_status(sqlite3_stmt *pStmt, int op, int resetFlag){ Vdbe *pVdbe = (Vdbe*)pStmt; u32 v; #ifdef SQLITE_ENABLE_API_ARMOR if( !pStmt || (op!=SQLITE_STMTSTATUS_MEMUSED && (op<0||op>=ArraySize(pVdbe->aCounter))) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif if( op==SQLITE_STMTSTATUS_MEMUSED ){ sqlite3 *db = pVdbe->db; sqlite3_mutex_enter(db->mutex); v = 0; db->pnBytesFreed = (int*)&v; sqlite3VdbeClearObject(db, pVdbe); sqlite3DbFree(db, pVdbe); db->pnBytesFreed = 0; sqlite3_mutex_leave(db->mutex); }else{ v = pVdbe->aCounter[op]; if( resetFlag ) pVdbe->aCounter[op] = 0; } return (int)v; } /* ** Return the SQL associated with a prepared statement */ SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt){ Vdbe *p = (Vdbe *)pStmt; return p ? p->zSql : 0; } /* ** Return the SQL associated with a prepared statement with ** bound parameters expanded. Space to hold the returned string is ** obtained from sqlite3_malloc(). The caller is responsible for ** freeing the returned string by passing it to sqlite3_free(). ** ** The SQLITE_TRACE_SIZE_LIMIT puts an upper bound on the size of ** expanded bound parameters. */ SQLITE_API char *sqlite3_expanded_sql(sqlite3_stmt *pStmt){ #ifdef SQLITE_OMIT_TRACE return 0; #else char *z = 0; const char *zSql = sqlite3_sql(pStmt); if( zSql ){ Vdbe *p = (Vdbe *)pStmt; sqlite3_mutex_enter(p->db->mutex); z = sqlite3VdbeExpandSql(p, zSql); sqlite3_mutex_leave(p->db->mutex); } return z; #endif } #ifdef SQLITE_ENABLE_NORMALIZE /* ** Return the normalized SQL associated with a prepared statement. */ SQLITE_API const char *sqlite3_normalized_sql(sqlite3_stmt *pStmt){ Vdbe *p = (Vdbe *)pStmt; if( p==0 ) return 0; if( p->zNormSql==0 && ALWAYS(p->zSql!=0) ){ sqlite3_mutex_enter(p->db->mutex); p->zNormSql = sqlite3Normalize(p, p->zSql); sqlite3_mutex_leave(p->db->mutex); } return p->zNormSql; } #endif /* SQLITE_ENABLE_NORMALIZE */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** Allocate and populate an UnpackedRecord structure based on the serialized ** record in nKey/pKey. Return a pointer to the new UnpackedRecord structure ** if successful, or a NULL pointer if an OOM error is encountered. */ static UnpackedRecord *vdbeUnpackRecord( KeyInfo *pKeyInfo, int nKey, const void *pKey ){ UnpackedRecord *pRet; /* Return value */ pRet = sqlite3VdbeAllocUnpackedRecord(pKeyInfo); if( pRet ){ memset(pRet->aMem, 0, sizeof(Mem)*(pKeyInfo->nKeyField+1)); sqlite3VdbeRecordUnpack(pKeyInfo, nKey, pKey, pRet); } return pRet; } /* ** This function is called from within a pre-update callback to retrieve ** a field of the row currently being updated or deleted. */ SQLITE_API int sqlite3_preupdate_old(sqlite3 *db, int iIdx, sqlite3_value **ppValue){ PreUpdate *p = db->pPreUpdate; Mem *pMem; int rc = SQLITE_OK; /* Test that this call is being made from within an SQLITE_DELETE or ** SQLITE_UPDATE pre-update callback, and that iIdx is within range. */ if( !p || p->op==SQLITE_INSERT ){ rc = SQLITE_MISUSE_BKPT; goto preupdate_old_out; } if( p->pPk ){ iIdx = sqlite3TableColumnToIndex(p->pPk, iIdx); } if( iIdx>=p->pCsr->nField || iIdx<0 ){ rc = SQLITE_RANGE; goto preupdate_old_out; } /* If the old.* record has not yet been loaded into memory, do so now. */ if( p->pUnpacked==0 ){ u32 nRec; u8 *aRec; nRec = sqlite3BtreePayloadSize(p->pCsr->uc.pCursor); aRec = sqlite3DbMallocRaw(db, nRec); if( !aRec ) goto preupdate_old_out; rc = sqlite3BtreePayload(p->pCsr->uc.pCursor, 0, nRec, aRec); if( rc==SQLITE_OK ){ p->pUnpacked = vdbeUnpackRecord(&p->keyinfo, nRec, aRec); if( !p->pUnpacked ) rc = SQLITE_NOMEM; } if( rc!=SQLITE_OK ){ sqlite3DbFree(db, aRec); goto preupdate_old_out; } p->aRecord = aRec; } pMem = *ppValue = &p->pUnpacked->aMem[iIdx]; if( iIdx==p->pTab->iPKey ){ sqlite3VdbeMemSetInt64(pMem, p->iKey1); }else if( iIdx>=p->pUnpacked->nField ){ *ppValue = (sqlite3_value *)columnNullValue(); }else if( p->pTab->aCol[iIdx].affinity==SQLITE_AFF_REAL ){ if( pMem->flags & (MEM_Int|MEM_IntReal) ){ testcase( pMem->flags & MEM_Int ); testcase( pMem->flags & MEM_IntReal ); sqlite3VdbeMemRealify(pMem); } } preupdate_old_out: sqlite3Error(db, rc); return sqlite3ApiExit(db, rc); } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** This function is called from within a pre-update callback to retrieve ** the number of columns in the row being updated, deleted or inserted. */ SQLITE_API int sqlite3_preupdate_count(sqlite3 *db){ PreUpdate *p = db->pPreUpdate; return (p ? p->keyinfo.nKeyField : 0); } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** This function is designed to be called from within a pre-update callback ** only. It returns zero if the change that caused the callback was made ** immediately by a user SQL statement. Or, if the change was made by a ** trigger program, it returns the number of trigger programs currently ** on the stack (1 for a top-level trigger, 2 for a trigger fired by a ** top-level trigger etc.). ** ** For the purposes of the previous paragraph, a foreign key CASCADE, SET NULL ** or SET DEFAULT action is considered a trigger. */ SQLITE_API int sqlite3_preupdate_depth(sqlite3 *db){ PreUpdate *p = db->pPreUpdate; return (p ? p->v->nFrame : 0); } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** This function is called from within a pre-update callback to retrieve ** a field of the row currently being updated or inserted. */ SQLITE_API int sqlite3_preupdate_new(sqlite3 *db, int iIdx, sqlite3_value **ppValue){ PreUpdate *p = db->pPreUpdate; int rc = SQLITE_OK; Mem *pMem; if( !p || p->op==SQLITE_DELETE ){ rc = SQLITE_MISUSE_BKPT; goto preupdate_new_out; } if( p->pPk && p->op!=SQLITE_UPDATE ){ iIdx = sqlite3TableColumnToIndex(p->pPk, iIdx); } if( iIdx>=p->pCsr->nField || iIdx<0 ){ rc = SQLITE_RANGE; goto preupdate_new_out; } if( p->op==SQLITE_INSERT ){ /* For an INSERT, memory cell p->iNewReg contains the serialized record ** that is being inserted. Deserialize it. */ UnpackedRecord *pUnpack = p->pNewUnpacked; if( !pUnpack ){ Mem *pData = &p->v->aMem[p->iNewReg]; rc = ExpandBlob(pData); if( rc!=SQLITE_OK ) goto preupdate_new_out; pUnpack = vdbeUnpackRecord(&p->keyinfo, pData->n, pData->z); if( !pUnpack ){ rc = SQLITE_NOMEM; goto preupdate_new_out; } p->pNewUnpacked = pUnpack; } pMem = &pUnpack->aMem[iIdx]; if( iIdx==p->pTab->iPKey ){ sqlite3VdbeMemSetInt64(pMem, p->iKey2); }else if( iIdx>=pUnpack->nField ){ pMem = (sqlite3_value *)columnNullValue(); } }else{ /* For an UPDATE, memory cell (p->iNewReg+1+iIdx) contains the required ** value. Make a copy of the cell contents and return a pointer to it. ** It is not safe to return a pointer to the memory cell itself as the ** caller may modify the value text encoding. */ assert( p->op==SQLITE_UPDATE ); if( !p->aNew ){ p->aNew = (Mem *)sqlite3DbMallocZero(db, sizeof(Mem) * p->pCsr->nField); if( !p->aNew ){ rc = SQLITE_NOMEM; goto preupdate_new_out; } } assert( iIdx>=0 && iIdxpCsr->nField ); pMem = &p->aNew[iIdx]; if( pMem->flags==0 ){ if( iIdx==p->pTab->iPKey ){ sqlite3VdbeMemSetInt64(pMem, p->iKey2); }else{ rc = sqlite3VdbeMemCopy(pMem, &p->v->aMem[p->iNewReg+1+iIdx]); if( rc!=SQLITE_OK ) goto preupdate_new_out; } } } *ppValue = pMem; preupdate_new_out: sqlite3Error(db, rc); return sqlite3ApiExit(db, rc); } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifdef SQLITE_ENABLE_STMT_SCANSTATUS /* ** Return status data for a single loop within query pStmt. */ SQLITE_API int sqlite3_stmt_scanstatus( sqlite3_stmt *pStmt, /* Prepared statement being queried */ int idx, /* Index of loop to report on */ int iScanStatusOp, /* Which metric to return */ void *pOut /* OUT: Write the answer here */ ){ Vdbe *p = (Vdbe*)pStmt; ScanStatus *pScan; if( idx<0 || idx>=p->nScan ) return 1; pScan = &p->aScan[idx]; switch( iScanStatusOp ){ case SQLITE_SCANSTAT_NLOOP: { *(sqlite3_int64*)pOut = p->anExec[pScan->addrLoop]; break; } case SQLITE_SCANSTAT_NVISIT: { *(sqlite3_int64*)pOut = p->anExec[pScan->addrVisit]; break; } case SQLITE_SCANSTAT_EST: { double r = 1.0; LogEst x = pScan->nEst; while( x<100 ){ x += 10; r *= 0.5; } *(double*)pOut = r*sqlite3LogEstToInt(x); break; } case SQLITE_SCANSTAT_NAME: { *(const char**)pOut = pScan->zName; break; } case SQLITE_SCANSTAT_EXPLAIN: { if( pScan->addrExplain ){ *(const char**)pOut = p->aOp[ pScan->addrExplain ].p4.z; }else{ *(const char**)pOut = 0; } break; } case SQLITE_SCANSTAT_SELECTID: { if( pScan->addrExplain ){ *(int*)pOut = p->aOp[ pScan->addrExplain ].p1; }else{ *(int*)pOut = -1; } break; } default: { return 1; } } return 0; } /* ** Zero all counters associated with the sqlite3_stmt_scanstatus() data. */ SQLITE_API void sqlite3_stmt_scanstatus_reset(sqlite3_stmt *pStmt){ Vdbe *p = (Vdbe*)pStmt; memset(p->anExec, 0, p->nOp * sizeof(i64)); } #endif /* SQLITE_ENABLE_STMT_SCANSTATUS */ /************** End of vdbeapi.c *********************************************/ /************** Begin file vdbetrace.c ***************************************/ /* ** 2009 November 25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code used to insert the values of host parameters ** (aka "wildcards") into the SQL text output by sqlite3_trace(). ** ** The Vdbe parse-tree explainer is also found here. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ #ifndef SQLITE_OMIT_TRACE /* ** zSql is a zero-terminated string of UTF-8 SQL text. Return the number of ** bytes in this text up to but excluding the first character in ** a host parameter. If the text contains no host parameters, return ** the total number of bytes in the text. */ static int findNextHostParameter(const char *zSql, int *pnToken){ int tokenType; int nTotal = 0; int n; *pnToken = 0; while( zSql[0] ){ n = sqlite3GetToken((u8*)zSql, &tokenType); assert( n>0 && tokenType!=TK_ILLEGAL ); if( tokenType==TK_VARIABLE ){ *pnToken = n; break; } nTotal += n; zSql += n; } return nTotal; } /* ** This function returns a pointer to a nul-terminated string in memory ** obtained from sqlite3DbMalloc(). If sqlite3.nVdbeExec is 1, then the ** string contains a copy of zRawSql but with host parameters expanded to ** their current bindings. Or, if sqlite3.nVdbeExec is greater than 1, ** then the returned string holds a copy of zRawSql with "-- " prepended ** to each line of text. ** ** If the SQLITE_TRACE_SIZE_LIMIT macro is defined to an integer, then ** then long strings and blobs are truncated to that many bytes. This ** can be used to prevent unreasonably large trace strings when dealing ** with large (multi-megabyte) strings and blobs. ** ** The calling function is responsible for making sure the memory returned ** is eventually freed. ** ** ALGORITHM: Scan the input string looking for host parameters in any of ** these forms: ?, ?N, $A, @A, :A. Take care to avoid text within ** string literals, quoted identifier names, and comments. For text forms, ** the host parameter index is found by scanning the prepared ** statement for the corresponding OP_Variable opcode. Once the host ** parameter index is known, locate the value in p->aVar[]. Then render ** the value as a literal in place of the host parameter name. */ SQLITE_PRIVATE char *sqlite3VdbeExpandSql( Vdbe *p, /* The prepared statement being evaluated */ const char *zRawSql /* Raw text of the SQL statement */ ){ sqlite3 *db; /* The database connection */ int idx = 0; /* Index of a host parameter */ int nextIndex = 1; /* Index of next ? host parameter */ int n; /* Length of a token prefix */ int nToken; /* Length of the parameter token */ int i; /* Loop counter */ Mem *pVar; /* Value of a host parameter */ StrAccum out; /* Accumulate the output here */ #ifndef SQLITE_OMIT_UTF16 Mem utf8; /* Used to convert UTF16 into UTF8 for display */ #endif char zBase[100]; /* Initial working space */ db = p->db; sqlite3StrAccumInit(&out, 0, zBase, sizeof(zBase), db->aLimit[SQLITE_LIMIT_LENGTH]); if( db->nVdbeExec>1 ){ while( *zRawSql ){ const char *zStart = zRawSql; while( *(zRawSql++)!='\n' && *zRawSql ); sqlite3_str_append(&out, "-- ", 3); assert( (zRawSql - zStart) > 0 ); sqlite3_str_append(&out, zStart, (int)(zRawSql-zStart)); } }else if( p->nVar==0 ){ sqlite3_str_append(&out, zRawSql, sqlite3Strlen30(zRawSql)); }else{ while( zRawSql[0] ){ n = findNextHostParameter(zRawSql, &nToken); assert( n>0 ); sqlite3_str_append(&out, zRawSql, n); zRawSql += n; assert( zRawSql[0] || nToken==0 ); if( nToken==0 ) break; if( zRawSql[0]=='?' ){ if( nToken>1 ){ assert( sqlite3Isdigit(zRawSql[1]) ); sqlite3GetInt32(&zRawSql[1], &idx); }else{ idx = nextIndex; } }else{ assert( zRawSql[0]==':' || zRawSql[0]=='$' || zRawSql[0]=='@' || zRawSql[0]=='#' ); testcase( zRawSql[0]==':' ); testcase( zRawSql[0]=='$' ); testcase( zRawSql[0]=='@' ); testcase( zRawSql[0]=='#' ); idx = sqlite3VdbeParameterIndex(p, zRawSql, nToken); assert( idx>0 ); } zRawSql += nToken; nextIndex = idx + 1; assert( idx>0 && idx<=p->nVar ); pVar = &p->aVar[idx-1]; if( pVar->flags & MEM_Null ){ sqlite3_str_append(&out, "NULL", 4); }else if( pVar->flags & (MEM_Int|MEM_IntReal) ){ sqlite3_str_appendf(&out, "%lld", pVar->u.i); }else if( pVar->flags & MEM_Real ){ sqlite3_str_appendf(&out, "%!.15g", pVar->u.r); }else if( pVar->flags & MEM_Str ){ int nOut; /* Number of bytes of the string text to include in output */ #ifndef SQLITE_OMIT_UTF16 u8 enc = ENC(db); if( enc!=SQLITE_UTF8 ){ memset(&utf8, 0, sizeof(utf8)); utf8.db = db; sqlite3VdbeMemSetStr(&utf8, pVar->z, pVar->n, enc, SQLITE_STATIC); if( SQLITE_NOMEM==sqlite3VdbeChangeEncoding(&utf8, SQLITE_UTF8) ){ out.accError = SQLITE_NOMEM; out.nAlloc = 0; } pVar = &utf8; } #endif nOut = pVar->n; #ifdef SQLITE_TRACE_SIZE_LIMIT if( nOut>SQLITE_TRACE_SIZE_LIMIT ){ nOut = SQLITE_TRACE_SIZE_LIMIT; while( nOutn && (pVar->z[nOut]&0xc0)==0x80 ){ nOut++; } } #endif sqlite3_str_appendf(&out, "'%.*q'", nOut, pVar->z); #ifdef SQLITE_TRACE_SIZE_LIMIT if( nOutn ){ sqlite3_str_appendf(&out, "/*+%d bytes*/", pVar->n-nOut); } #endif #ifndef SQLITE_OMIT_UTF16 if( enc!=SQLITE_UTF8 ) sqlite3VdbeMemRelease(&utf8); #endif }else if( pVar->flags & MEM_Zero ){ sqlite3_str_appendf(&out, "zeroblob(%d)", pVar->u.nZero); }else{ int nOut; /* Number of bytes of the blob to include in output */ assert( pVar->flags & MEM_Blob ); sqlite3_str_append(&out, "x'", 2); nOut = pVar->n; #ifdef SQLITE_TRACE_SIZE_LIMIT if( nOut>SQLITE_TRACE_SIZE_LIMIT ) nOut = SQLITE_TRACE_SIZE_LIMIT; #endif for(i=0; iz[i]&0xff); } sqlite3_str_append(&out, "'", 1); #ifdef SQLITE_TRACE_SIZE_LIMIT if( nOutn ){ sqlite3_str_appendf(&out, "/*+%d bytes*/", pVar->n-nOut); } #endif } } } if( out.accError ) sqlite3_str_reset(&out); return sqlite3StrAccumFinish(&out); } #endif /* #ifndef SQLITE_OMIT_TRACE */ /************** End of vdbetrace.c *******************************************/ /************** Begin file vdbe.c ********************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** The code in this file implements the function that runs the ** bytecode of a prepared statement. ** ** Various scripts scan this source file in order to generate HTML ** documentation, headers files, or other derived files. The formatting ** of the code in this file is, therefore, important. See other comments ** in this file for details. If in doubt, do not deviate from existing ** commenting and indentation practices when changing or adding code. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ /* ** Invoke this macro on memory cells just prior to changing the ** value of the cell. This macro verifies that shallow copies are ** not misused. A shallow copy of a string or blob just copies a ** pointer to the string or blob, not the content. If the original ** is changed while the copy is still in use, the string or blob might ** be changed out from under the copy. This macro verifies that nothing ** like that ever happens. */ #ifdef SQLITE_DEBUG # define memAboutToChange(P,M) sqlite3VdbeMemAboutToChange(P,M) #else # define memAboutToChange(P,M) #endif /* ** The following global variable is incremented every time a cursor ** moves, either by the OP_SeekXX, OP_Next, or OP_Prev opcodes. The test ** procedures use this information to make sure that indices are ** working correctly. This variable has no function other than to ** help verify the correct operation of the library. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_search_count = 0; #endif /* ** When this global variable is positive, it gets decremented once before ** each instruction in the VDBE. When it reaches zero, the u1.isInterrupted ** field of the sqlite3 structure is set in order to simulate an interrupt. ** ** This facility is used for testing purposes only. It does not function ** in an ordinary build. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_interrupt_count = 0; #endif /* ** The next global variable is incremented each type the OP_Sort opcode ** is executed. The test procedures use this information to make sure that ** sorting is occurring or not occurring at appropriate times. This variable ** has no function other than to help verify the correct operation of the ** library. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_sort_count = 0; #endif /* ** The next global variable records the size of the largest MEM_Blob ** or MEM_Str that has been used by a VDBE opcode. The test procedures ** use this information to make sure that the zero-blob functionality ** is working correctly. This variable has no function other than to ** help verify the correct operation of the library. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_max_blobsize = 0; static void updateMaxBlobsize(Mem *p){ if( (p->flags & (MEM_Str|MEM_Blob))!=0 && p->n>sqlite3_max_blobsize ){ sqlite3_max_blobsize = p->n; } } #endif /* ** This macro evaluates to true if either the update hook or the preupdate ** hook are enabled for database connect DB. */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK # define HAS_UPDATE_HOOK(DB) ((DB)->xPreUpdateCallback||(DB)->xUpdateCallback) #else # define HAS_UPDATE_HOOK(DB) ((DB)->xUpdateCallback) #endif /* ** The next global variable is incremented each time the OP_Found opcode ** is executed. This is used to test whether or not the foreign key ** operation implemented using OP_FkIsZero is working. This variable ** has no function other than to help verify the correct operation of the ** library. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_found_count = 0; #endif /* ** Test a register to see if it exceeds the current maximum blob size. ** If it does, record the new maximum blob size. */ #if defined(SQLITE_TEST) && !defined(SQLITE_UNTESTABLE) # define UPDATE_MAX_BLOBSIZE(P) updateMaxBlobsize(P) #else # define UPDATE_MAX_BLOBSIZE(P) #endif #ifdef SQLITE_DEBUG /* This routine provides a convenient place to set a breakpoint during ** tracing with PRAGMA vdbe_trace=on. The breakpoint fires right after ** each opcode is printed. Variables "pc" (program counter) and pOp are ** available to add conditionals to the breakpoint. GDB example: ** ** break test_trace_breakpoint if pc=22 ** ** Other useful labels for breakpoints include: ** test_addop_breakpoint(pc,pOp) ** sqlite3CorruptError(lineno) ** sqlite3MisuseError(lineno) ** sqlite3CantopenError(lineno) */ static void test_trace_breakpoint(int pc, Op *pOp, Vdbe *v){ static int n = 0; n++; } #endif /* ** Invoke the VDBE coverage callback, if that callback is defined. This ** feature is used for test suite validation only and does not appear an ** production builds. ** ** M is the type of branch. I is the direction taken for this instance of ** the branch. ** ** M: 2 - two-way branch (I=0: fall-thru 1: jump ) ** 3 - two-way + NULL (I=0: fall-thru 1: jump 2: NULL ) ** 4 - OP_Jump (I=0: jump p1 1: jump p2 2: jump p3) ** ** In other words, if M is 2, then I is either 0 (for fall-through) or ** 1 (for when the branch is taken). If M is 3, the I is 0 for an ** ordinary fall-through, I is 1 if the branch was taken, and I is 2 ** if the result of comparison is NULL. For M=3, I=2 the jump may or ** may not be taken, depending on the SQLITE_JUMPIFNULL flags in p5. ** When M is 4, that means that an OP_Jump is being run. I is 0, 1, or 2 ** depending on if the operands are less than, equal, or greater than. ** ** iSrcLine is the source code line (from the __LINE__ macro) that ** generated the VDBE instruction combined with flag bits. The source ** code line number is in the lower 24 bits of iSrcLine and the upper ** 8 bytes are flags. The lower three bits of the flags indicate ** values for I that should never occur. For example, if the branch is ** always taken, the flags should be 0x05 since the fall-through and ** alternate branch are never taken. If a branch is never taken then ** flags should be 0x06 since only the fall-through approach is allowed. ** ** Bit 0x08 of the flags indicates an OP_Jump opcode that is only ** interested in equal or not-equal. In other words, I==0 and I==2 ** should be treated as equivalent ** ** Since only a line number is retained, not the filename, this macro ** only works for amalgamation builds. But that is ok, since these macros ** should be no-ops except for special builds used to measure test coverage. */ #if !defined(SQLITE_VDBE_COVERAGE) # define VdbeBranchTaken(I,M) #else # define VdbeBranchTaken(I,M) vdbeTakeBranch(pOp->iSrcLine,I,M) static void vdbeTakeBranch(u32 iSrcLine, u8 I, u8 M){ u8 mNever; assert( I<=2 ); /* 0: fall through, 1: taken, 2: alternate taken */ assert( M<=4 ); /* 2: two-way branch, 3: three-way branch, 4: OP_Jump */ assert( I> 24; assert( (I & mNever)==0 ); if( sqlite3GlobalConfig.xVdbeBranch==0 ) return; /*NO_TEST*/ /* Invoke the branch coverage callback with three arguments: ** iSrcLine - the line number of the VdbeCoverage() macro, with ** flags removed. ** I - Mask of bits 0x07 indicating which cases are are ** fulfilled by this instance of the jump. 0x01 means ** fall-thru, 0x02 means taken, 0x04 means NULL. Any ** impossible cases (ex: if the comparison is never NULL) ** are filled in automatically so that the coverage ** measurement logic does not flag those impossible cases ** as missed coverage. ** M - Type of jump. Same as M argument above */ I |= mNever; if( M==2 ) I |= 0x04; if( M==4 ){ I |= 0x08; if( (mNever&0x08)!=0 && (I&0x05)!=0) I |= 0x05; /*NO_TEST*/ } sqlite3GlobalConfig.xVdbeBranch(sqlite3GlobalConfig.pVdbeBranchArg, iSrcLine&0xffffff, I, M); } #endif /* ** An ephemeral string value (signified by the MEM_Ephem flag) contains ** a pointer to a dynamically allocated string where some other entity ** is responsible for deallocating that string. Because the register ** does not control the string, it might be deleted without the register ** knowing it. ** ** This routine converts an ephemeral string into a dynamically allocated ** string that the register itself controls. In other words, it ** converts an MEM_Ephem string into a string with P.z==P.zMalloc. */ #define Deephemeralize(P) \ if( ((P)->flags&MEM_Ephem)!=0 \ && sqlite3VdbeMemMakeWriteable(P) ){ goto no_mem;} /* Return true if the cursor was opened using the OP_OpenSorter opcode. */ #define isSorter(x) ((x)->eCurType==CURTYPE_SORTER) /* ** Allocate VdbeCursor number iCur. Return a pointer to it. Return NULL ** if we run out of memory. */ static VdbeCursor *allocateCursor( Vdbe *p, /* The virtual machine */ int iCur, /* Index of the new VdbeCursor */ int nField, /* Number of fields in the table or index */ int iDb, /* Database the cursor belongs to, or -1 */ u8 eCurType /* Type of the new cursor */ ){ /* Find the memory cell that will be used to store the blob of memory ** required for this VdbeCursor structure. It is convenient to use a ** vdbe memory cell to manage the memory allocation required for a ** VdbeCursor structure for the following reasons: ** ** * Sometimes cursor numbers are used for a couple of different ** purposes in a vdbe program. The different uses might require ** different sized allocations. Memory cells provide growable ** allocations. ** ** * When using ENABLE_MEMORY_MANAGEMENT, memory cell buffers can ** be freed lazily via the sqlite3_release_memory() API. This ** minimizes the number of malloc calls made by the system. ** ** The memory cell for cursor 0 is aMem[0]. The rest are allocated from ** the top of the register space. Cursor 1 is at Mem[p->nMem-1]. ** Cursor 2 is at Mem[p->nMem-2]. And so forth. */ Mem *pMem = iCur>0 ? &p->aMem[p->nMem-iCur] : p->aMem; int nByte; VdbeCursor *pCx = 0; nByte = ROUND8(sizeof(VdbeCursor)) + 2*sizeof(u32)*nField + (eCurType==CURTYPE_BTREE?sqlite3BtreeCursorSize():0); assert( iCur>=0 && iCurnCursor ); if( p->apCsr[iCur] ){ /*OPTIMIZATION-IF-FALSE*/ /* Before calling sqlite3VdbeFreeCursor(), ensure the isEphemeral flag ** is clear. Otherwise, if this is an ephemeral cursor created by ** OP_OpenDup, the cursor will not be closed and will still be part ** of a BtShared.pCursor list. */ if( p->apCsr[iCur]->pBtx==0 ) p->apCsr[iCur]->isEphemeral = 0; sqlite3VdbeFreeCursor(p, p->apCsr[iCur]); p->apCsr[iCur] = 0; } if( SQLITE_OK==sqlite3VdbeMemClearAndResize(pMem, nByte) ){ p->apCsr[iCur] = pCx = (VdbeCursor*)pMem->z; memset(pCx, 0, offsetof(VdbeCursor,pAltCursor)); pCx->eCurType = eCurType; pCx->iDb = iDb; pCx->nField = nField; pCx->aOffset = &pCx->aType[nField]; if( eCurType==CURTYPE_BTREE ){ pCx->uc.pCursor = (BtCursor*) &pMem->z[ROUND8(sizeof(VdbeCursor))+2*sizeof(u32)*nField]; sqlite3BtreeCursorZero(pCx->uc.pCursor); } } return pCx; } /* ** The string in pRec is known to look like an integer and to have a ** floating point value of rValue. Return true and set *piValue to the ** integer value if the string is in range to be an integer. Otherwise, ** return false. */ static int alsoAnInt(Mem *pRec, double rValue, i64 *piValue){ i64 iValue = (double)rValue; if( sqlite3RealSameAsInt(rValue,iValue) ){ *piValue = iValue; return 1; } return 0==sqlite3Atoi64(pRec->z, piValue, pRec->n, pRec->enc); } /* ** Try to convert a value into a numeric representation if we can ** do so without loss of information. In other words, if the string ** looks like a number, convert it into a number. If it does not ** look like a number, leave it alone. ** ** If the bTryForInt flag is true, then extra effort is made to give ** an integer representation. Strings that look like floating point ** values but which have no fractional component (example: '48.00') ** will have a MEM_Int representation when bTryForInt is true. ** ** If bTryForInt is false, then if the input string contains a decimal ** point or exponential notation, the result is only MEM_Real, even ** if there is an exact integer representation of the quantity. */ static void applyNumericAffinity(Mem *pRec, int bTryForInt){ double rValue; u8 enc = pRec->enc; int rc; assert( (pRec->flags & (MEM_Str|MEM_Int|MEM_Real|MEM_IntReal))==MEM_Str ); rc = sqlite3AtoF(pRec->z, &rValue, pRec->n, enc); if( rc<=0 ) return; if( rc==1 && alsoAnInt(pRec, rValue, &pRec->u.i) ){ pRec->flags |= MEM_Int; }else{ pRec->u.r = rValue; pRec->flags |= MEM_Real; if( bTryForInt ) sqlite3VdbeIntegerAffinity(pRec); } /* TEXT->NUMERIC is many->one. Hence, it is important to invalidate the ** string representation after computing a numeric equivalent, because the ** string representation might not be the canonical representation for the ** numeric value. Ticket [343634942dd54ab57b7024] 2018-01-31. */ pRec->flags &= ~MEM_Str; } /* ** Processing is determine by the affinity parameter: ** ** SQLITE_AFF_INTEGER: ** SQLITE_AFF_REAL: ** SQLITE_AFF_NUMERIC: ** Try to convert pRec to an integer representation or a ** floating-point representation if an integer representation ** is not possible. Note that the integer representation is ** always preferred, even if the affinity is REAL, because ** an integer representation is more space efficient on disk. ** ** SQLITE_AFF_TEXT: ** Convert pRec to a text representation. ** ** SQLITE_AFF_BLOB: ** SQLITE_AFF_NONE: ** No-op. pRec is unchanged. */ static void applyAffinity( Mem *pRec, /* The value to apply affinity to */ char affinity, /* The affinity to be applied */ u8 enc /* Use this text encoding */ ){ if( affinity>=SQLITE_AFF_NUMERIC ){ assert( affinity==SQLITE_AFF_INTEGER || affinity==SQLITE_AFF_REAL || affinity==SQLITE_AFF_NUMERIC ); if( (pRec->flags & MEM_Int)==0 ){ /*OPTIMIZATION-IF-FALSE*/ if( (pRec->flags & MEM_Real)==0 ){ if( pRec->flags & MEM_Str ) applyNumericAffinity(pRec,1); }else{ sqlite3VdbeIntegerAffinity(pRec); } } }else if( affinity==SQLITE_AFF_TEXT ){ /* Only attempt the conversion to TEXT if there is an integer or real ** representation (blob and NULL do not get converted) but no string ** representation. It would be harmless to repeat the conversion if ** there is already a string rep, but it is pointless to waste those ** CPU cycles. */ if( 0==(pRec->flags&MEM_Str) ){ /*OPTIMIZATION-IF-FALSE*/ if( (pRec->flags&(MEM_Real|MEM_Int|MEM_IntReal)) ){ testcase( pRec->flags & MEM_Int ); testcase( pRec->flags & MEM_Real ); testcase( pRec->flags & MEM_IntReal ); sqlite3VdbeMemStringify(pRec, enc, 1); } } pRec->flags &= ~(MEM_Real|MEM_Int|MEM_IntReal); } } /* ** Try to convert the type of a function argument or a result column ** into a numeric representation. Use either INTEGER or REAL whichever ** is appropriate. But only do the conversion if it is possible without ** loss of information and return the revised type of the argument. */ SQLITE_API int sqlite3_value_numeric_type(sqlite3_value *pVal){ int eType = sqlite3_value_type(pVal); if( eType==SQLITE_TEXT ){ Mem *pMem = (Mem*)pVal; applyNumericAffinity(pMem, 0); eType = sqlite3_value_type(pVal); } return eType; } /* ** Exported version of applyAffinity(). This one works on sqlite3_value*, ** not the internal Mem* type. */ SQLITE_PRIVATE void sqlite3ValueApplyAffinity( sqlite3_value *pVal, u8 affinity, u8 enc ){ applyAffinity((Mem *)pVal, affinity, enc); } /* ** pMem currently only holds a string type (or maybe a BLOB that we can ** interpret as a string if we want to). Compute its corresponding ** numeric type, if has one. Set the pMem->u.r and pMem->u.i fields ** accordingly. */ static u16 SQLITE_NOINLINE computeNumericType(Mem *pMem){ int rc; sqlite3_int64 ix; assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal))==0 ); assert( (pMem->flags & (MEM_Str|MEM_Blob))!=0 ); ExpandBlob(pMem); rc = sqlite3AtoF(pMem->z, &pMem->u.r, pMem->n, pMem->enc); if( rc<=0 ){ if( rc==0 && sqlite3Atoi64(pMem->z, &ix, pMem->n, pMem->enc)<=1 ){ pMem->u.i = ix; return MEM_Int; }else{ return MEM_Real; } }else if( rc==1 && sqlite3Atoi64(pMem->z, &ix, pMem->n, pMem->enc)==0 ){ pMem->u.i = ix; return MEM_Int; } return MEM_Real; } /* ** Return the numeric type for pMem, either MEM_Int or MEM_Real or both or ** none. ** ** Unlike applyNumericAffinity(), this routine does not modify pMem->flags. ** But it does set pMem->u.r and pMem->u.i appropriately. */ static u16 numericType(Mem *pMem){ if( pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal) ){ testcase( pMem->flags & MEM_Int ); testcase( pMem->flags & MEM_Real ); testcase( pMem->flags & MEM_IntReal ); return pMem->flags & (MEM_Int|MEM_Real|MEM_IntReal); } if( pMem->flags & (MEM_Str|MEM_Blob) ){ testcase( pMem->flags & MEM_Str ); testcase( pMem->flags & MEM_Blob ); return computeNumericType(pMem); } return 0; } #ifdef SQLITE_DEBUG /* ** Write a nice string representation of the contents of cell pMem ** into buffer zBuf, length nBuf. */ SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, StrAccum *pStr){ int f = pMem->flags; static const char *const encnames[] = {"(X)", "(8)", "(16LE)", "(16BE)"}; if( f&MEM_Blob ){ int i; char c; if( f & MEM_Dyn ){ c = 'z'; assert( (f & (MEM_Static|MEM_Ephem))==0 ); }else if( f & MEM_Static ){ c = 't'; assert( (f & (MEM_Dyn|MEM_Ephem))==0 ); }else if( f & MEM_Ephem ){ c = 'e'; assert( (f & (MEM_Static|MEM_Dyn))==0 ); }else{ c = 's'; } sqlite3_str_appendf(pStr, "%cx[", c); for(i=0; i<25 && in; i++){ sqlite3_str_appendf(pStr, "%02X", ((int)pMem->z[i] & 0xFF)); } sqlite3_str_appendf(pStr, "|"); for(i=0; i<25 && in; i++){ char z = pMem->z[i]; sqlite3_str_appendchar(pStr, 1, (z<32||z>126)?'.':z); } sqlite3_str_appendf(pStr,"]"); if( f & MEM_Zero ){ sqlite3_str_appendf(pStr, "+%dz",pMem->u.nZero); } }else if( f & MEM_Str ){ int j; u8 c; if( f & MEM_Dyn ){ c = 'z'; assert( (f & (MEM_Static|MEM_Ephem))==0 ); }else if( f & MEM_Static ){ c = 't'; assert( (f & (MEM_Dyn|MEM_Ephem))==0 ); }else if( f & MEM_Ephem ){ c = 'e'; assert( (f & (MEM_Static|MEM_Dyn))==0 ); }else{ c = 's'; } sqlite3_str_appendf(pStr, " %c%d[", c, pMem->n); for(j=0; j<25 && jn; j++){ c = pMem->z[j]; sqlite3_str_appendchar(pStr, 1, (c>=0x20&&c<=0x7f) ? c : '.'); } sqlite3_str_appendf(pStr, "]%s", encnames[pMem->enc]); } } #endif #ifdef SQLITE_DEBUG /* ** Print the value of a register for tracing purposes: */ static void memTracePrint(Mem *p){ if( p->flags & MEM_Undefined ){ printf(" undefined"); }else if( p->flags & MEM_Null ){ printf(p->flags & MEM_Zero ? " NULL-nochng" : " NULL"); }else if( (p->flags & (MEM_Int|MEM_Str))==(MEM_Int|MEM_Str) ){ printf(" si:%lld", p->u.i); }else if( (p->flags & (MEM_IntReal))!=0 ){ printf(" ir:%lld", p->u.i); }else if( p->flags & MEM_Int ){ printf(" i:%lld", p->u.i); #ifndef SQLITE_OMIT_FLOATING_POINT }else if( p->flags & MEM_Real ){ printf(" r:%.17g", p->u.r); #endif }else if( sqlite3VdbeMemIsRowSet(p) ){ printf(" (rowset)"); }else{ StrAccum acc; char zBuf[1000]; sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); sqlite3VdbeMemPrettyPrint(p, &acc); printf(" %s", sqlite3StrAccumFinish(&acc)); } if( p->flags & MEM_Subtype ) printf(" subtype=0x%02x", p->eSubtype); } static void registerTrace(int iReg, Mem *p){ printf("R[%d] = ", iReg); memTracePrint(p); if( p->pScopyFrom ){ printf(" <== R[%d]", (int)(p->pScopyFrom - &p[-iReg])); } printf("\n"); sqlite3VdbeCheckMemInvariants(p); } #endif #ifdef SQLITE_DEBUG /* ** Show the values of all registers in the virtual machine. Used for ** interactive debugging. */ SQLITE_PRIVATE void sqlite3VdbeRegisterDump(Vdbe *v){ int i; for(i=1; inMem; i++) registerTrace(i, v->aMem+i); } #endif /* SQLITE_DEBUG */ #ifdef SQLITE_DEBUG # define REGISTER_TRACE(R,M) if(db->flags&SQLITE_VdbeTrace)registerTrace(R,M) #else # define REGISTER_TRACE(R,M) #endif #ifdef VDBE_PROFILE /* ** hwtime.h contains inline assembler code for implementing ** high-performance timing routines. */ /************** Include hwtime.h in the middle of vdbe.c *********************/ /************** Begin file hwtime.h ******************************************/ /* ** 2008 May 27 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains inline asm code for retrieving "high-performance" ** counters for x86 and x86_64 class CPUs. */ #ifndef SQLITE_HWTIME_H #define SQLITE_HWTIME_H /* ** The following routine only works on pentium-class (or newer) processors. ** It uses the RDTSC opcode to read the cycle count value out of the ** processor and returns that value. This can be used for high-res ** profiling. */ #if !defined(__STRICT_ANSI__) && \ (defined(__GNUC__) || defined(_MSC_VER)) && \ (defined(i386) || defined(__i386__) || defined(_M_IX86)) #if defined(__GNUC__) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned int lo, hi; __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi)); return (sqlite_uint64)hi << 32 | lo; } #elif defined(_MSC_VER) __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){ __asm { rdtsc ret ; return value at EDX:EAX } } #endif #elif !defined(__STRICT_ANSI__) && (defined(__GNUC__) && defined(__x86_64__)) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned long val; __asm__ __volatile__ ("rdtsc" : "=A" (val)); return val; } #elif !defined(__STRICT_ANSI__) && (defined(__GNUC__) && defined(__ppc__)) __inline__ sqlite_uint64 sqlite3Hwtime(void){ unsigned long long retval; unsigned long junk; __asm__ __volatile__ ("\n\ 1: mftbu %1\n\ mftb %L0\n\ mftbu %0\n\ cmpw %0,%1\n\ bne 1b" : "=r" (retval), "=r" (junk)); return retval; } #else /* ** asm() is needed for hardware timing support. Without asm(), ** disable the sqlite3Hwtime() routine. ** ** sqlite3Hwtime() is only used for some obscure debugging ** and analysis configurations, not in any deliverable, so this ** should not be a great loss. */ SQLITE_PRIVATE sqlite_uint64 sqlite3Hwtime(void){ return ((sqlite_uint64)0); } #endif #endif /* !defined(SQLITE_HWTIME_H) */ /************** End of hwtime.h **********************************************/ /************** Continuing where we left off in vdbe.c ***********************/ #endif #ifndef NDEBUG /* ** This function is only called from within an assert() expression. It ** checks that the sqlite3.nTransaction variable is correctly set to ** the number of non-transaction savepoints currently in the ** linked list starting at sqlite3.pSavepoint. ** ** Usage: ** ** assert( checkSavepointCount(db) ); */ static int checkSavepointCount(sqlite3 *db){ int n = 0; Savepoint *p; for(p=db->pSavepoint; p; p=p->pNext) n++; assert( n==(db->nSavepoint + db->isTransactionSavepoint) ); return 1; } #endif /* ** Return the register of pOp->p2 after first preparing it to be ** overwritten with an integer value. */ static SQLITE_NOINLINE Mem *out2PrereleaseWithClear(Mem *pOut){ sqlite3VdbeMemSetNull(pOut); pOut->flags = MEM_Int; return pOut; } static Mem *out2Prerelease(Vdbe *p, VdbeOp *pOp){ Mem *pOut; assert( pOp->p2>0 ); assert( pOp->p2<=(p->nMem+1 - p->nCursor) ); pOut = &p->aMem[pOp->p2]; memAboutToChange(p, pOut); if( VdbeMemDynamic(pOut) ){ /*OPTIMIZATION-IF-FALSE*/ return out2PrereleaseWithClear(pOut); }else{ pOut->flags = MEM_Int; return pOut; } } /* ** Execute as much of a VDBE program as we can. ** This is the core of sqlite3_step(). */ SQLITE_PRIVATE int sqlite3VdbeExec( Vdbe *p /* The VDBE */ ){ Op *aOp = p->aOp; /* Copy of p->aOp */ Op *pOp = aOp; /* Current operation */ #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) Op *pOrigOp; /* Value of pOp at the top of the loop */ #endif #ifdef SQLITE_DEBUG int nExtraDelete = 0; /* Verifies FORDELETE and AUXDELETE flags */ #endif int rc = SQLITE_OK; /* Value to return */ sqlite3 *db = p->db; /* The database */ u8 resetSchemaOnFault = 0; /* Reset schema after an error if positive */ u8 encoding = ENC(db); /* The database encoding */ int iCompare = 0; /* Result of last comparison */ u64 nVmStep = 0; /* Number of virtual machine steps */ #ifndef SQLITE_OMIT_PROGRESS_CALLBACK u64 nProgressLimit; /* Invoke xProgress() when nVmStep reaches this */ #endif Mem *aMem = p->aMem; /* Copy of p->aMem */ Mem *pIn1 = 0; /* 1st input operand */ Mem *pIn2 = 0; /* 2nd input operand */ Mem *pIn3 = 0; /* 3rd input operand */ Mem *pOut = 0; /* Output operand */ #ifdef VDBE_PROFILE u64 start; /* CPU clock count at start of opcode */ #endif /*** INSERT STACK UNION HERE ***/ assert( p->magic==VDBE_MAGIC_RUN ); /* sqlite3_step() verifies this */ sqlite3VdbeEnter(p); #ifndef SQLITE_OMIT_PROGRESS_CALLBACK if( db->xProgress ){ u32 iPrior = p->aCounter[SQLITE_STMTSTATUS_VM_STEP]; assert( 0 < db->nProgressOps ); nProgressLimit = db->nProgressOps - (iPrior % db->nProgressOps); }else{ nProgressLimit = LARGEST_UINT64; } #endif if( p->rc==SQLITE_NOMEM ){ /* This happens if a malloc() inside a call to sqlite3_column_text() or ** sqlite3_column_text16() failed. */ goto no_mem; } assert( p->rc==SQLITE_OK || (p->rc&0xff)==SQLITE_BUSY ); testcase( p->rc!=SQLITE_OK ); p->rc = SQLITE_OK; assert( p->bIsReader || p->readOnly!=0 ); p->iCurrentTime = 0; assert( p->explain==0 ); p->pResultSet = 0; db->busyHandler.nBusy = 0; if( AtomicLoad(&db->u1.isInterrupted) ) goto abort_due_to_interrupt; sqlite3VdbeIOTraceSql(p); #ifdef SQLITE_DEBUG sqlite3BeginBenignMalloc(); if( p->pc==0 && (p->db->flags & (SQLITE_VdbeListing|SQLITE_VdbeEQP|SQLITE_VdbeTrace))!=0 ){ int i; int once = 1; sqlite3VdbePrintSql(p); if( p->db->flags & SQLITE_VdbeListing ){ printf("VDBE Program Listing:\n"); for(i=0; inOp; i++){ sqlite3VdbePrintOp(stdout, i, &aOp[i]); } } if( p->db->flags & SQLITE_VdbeEQP ){ for(i=0; inOp; i++){ if( aOp[i].opcode==OP_Explain ){ if( once ) printf("VDBE Query Plan:\n"); printf("%s\n", aOp[i].p4.z); once = 0; } } } if( p->db->flags & SQLITE_VdbeTrace ) printf("VDBE Trace:\n"); } sqlite3EndBenignMalloc(); #endif for(pOp=&aOp[p->pc]; 1; pOp++){ /* Errors are detected by individual opcodes, with an immediate ** jumps to abort_due_to_error. */ assert( rc==SQLITE_OK ); assert( pOp>=aOp && pOp<&aOp[p->nOp]); #ifdef VDBE_PROFILE start = sqlite3NProfileCnt ? sqlite3NProfileCnt : sqlite3Hwtime(); #endif nVmStep++; #ifdef SQLITE_ENABLE_STMT_SCANSTATUS if( p->anExec ) p->anExec[(int)(pOp-aOp)]++; #endif /* Only allow tracing if SQLITE_DEBUG is defined. */ #ifdef SQLITE_DEBUG if( db->flags & SQLITE_VdbeTrace ){ sqlite3VdbePrintOp(stdout, (int)(pOp - aOp), pOp); test_trace_breakpoint((int)(pOp - aOp),pOp,p); } #endif /* Check to see if we need to simulate an interrupt. This only happens ** if we have a special test build. */ #ifdef SQLITE_TEST if( sqlite3_interrupt_count>0 ){ sqlite3_interrupt_count--; if( sqlite3_interrupt_count==0 ){ sqlite3_interrupt(db); } } #endif /* Sanity checking on other operands */ #ifdef SQLITE_DEBUG { u8 opProperty = sqlite3OpcodeProperty[pOp->opcode]; if( (opProperty & OPFLG_IN1)!=0 ){ assert( pOp->p1>0 ); assert( pOp->p1<=(p->nMem+1 - p->nCursor) ); assert( memIsValid(&aMem[pOp->p1]) ); assert( sqlite3VdbeCheckMemInvariants(&aMem[pOp->p1]) ); REGISTER_TRACE(pOp->p1, &aMem[pOp->p1]); } if( (opProperty & OPFLG_IN2)!=0 ){ assert( pOp->p2>0 ); assert( pOp->p2<=(p->nMem+1 - p->nCursor) ); assert( memIsValid(&aMem[pOp->p2]) ); assert( sqlite3VdbeCheckMemInvariants(&aMem[pOp->p2]) ); REGISTER_TRACE(pOp->p2, &aMem[pOp->p2]); } if( (opProperty & OPFLG_IN3)!=0 ){ assert( pOp->p3>0 ); assert( pOp->p3<=(p->nMem+1 - p->nCursor) ); assert( memIsValid(&aMem[pOp->p3]) ); assert( sqlite3VdbeCheckMemInvariants(&aMem[pOp->p3]) ); REGISTER_TRACE(pOp->p3, &aMem[pOp->p3]); } if( (opProperty & OPFLG_OUT2)!=0 ){ assert( pOp->p2>0 ); assert( pOp->p2<=(p->nMem+1 - p->nCursor) ); memAboutToChange(p, &aMem[pOp->p2]); } if( (opProperty & OPFLG_OUT3)!=0 ){ assert( pOp->p3>0 ); assert( pOp->p3<=(p->nMem+1 - p->nCursor) ); memAboutToChange(p, &aMem[pOp->p3]); } } #endif #if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE) pOrigOp = pOp; #endif switch( pOp->opcode ){ /***************************************************************************** ** What follows is a massive switch statement where each case implements a ** separate instruction in the virtual machine. If we follow the usual ** indentation conventions, each case should be indented by 6 spaces. But ** that is a lot of wasted space on the left margin. So the code within ** the switch statement will break with convention and be flush-left. Another ** big comment (similar to this one) will mark the point in the code where ** we transition back to normal indentation. ** ** The formatting of each case is important. The makefile for SQLite ** generates two C files "opcodes.h" and "opcodes.c" by scanning this ** file looking for lines that begin with "case OP_". The opcodes.h files ** will be filled with #defines that give unique integer values to each ** opcode and the opcodes.c file is filled with an array of strings where ** each string is the symbolic name for the corresponding opcode. If the ** case statement is followed by a comment of the form "/# same as ... #/" ** that comment is used to determine the particular value of the opcode. ** ** Other keywords in the comment that follows each case are used to ** construct the OPFLG_INITIALIZER value that initializes opcodeProperty[]. ** Keywords include: in1, in2, in3, out2, out3. See ** the mkopcodeh.awk script for additional information. ** ** Documentation about VDBE opcodes is generated by scanning this file ** for lines of that contain "Opcode:". That line and all subsequent ** comment lines are used in the generation of the opcode.html documentation ** file. ** ** SUMMARY: ** ** Formatting is important to scripts that scan this file. ** Do not deviate from the formatting style currently in use. ** *****************************************************************************/ /* Opcode: Goto * P2 * * * ** ** An unconditional jump to address P2. ** The next instruction executed will be ** the one at index P2 from the beginning of ** the program. ** ** The P1 parameter is not actually used by this opcode. However, it ** is sometimes set to 1 instead of 0 as a hint to the command-line shell ** that this Goto is the bottom of a loop and that the lines from P2 down ** to the current line should be indented for EXPLAIN output. */ case OP_Goto: { /* jump */ #ifdef SQLITE_DEBUG /* In debuggging mode, when the p5 flags is set on an OP_Goto, that ** means we should really jump back to the preceeding OP_ReleaseReg ** instruction. */ if( pOp->p5 ){ assert( pOp->p2 < (int)(pOp - aOp) ); assert( pOp->p2 > 1 ); pOp = &aOp[pOp->p2 - 2]; assert( pOp[1].opcode==OP_ReleaseReg ); goto check_for_interrupt; } #endif jump_to_p2_and_check_for_interrupt: pOp = &aOp[pOp->p2 - 1]; /* Opcodes that are used as the bottom of a loop (OP_Next, OP_Prev, ** OP_VNext, or OP_SorterNext) all jump here upon ** completion. Check to see if sqlite3_interrupt() has been called ** or if the progress callback needs to be invoked. ** ** This code uses unstructured "goto" statements and does not look clean. ** But that is not due to sloppy coding habits. The code is written this ** way for performance, to avoid having to run the interrupt and progress ** checks on every opcode. This helps sqlite3_step() to run about 1.5% ** faster according to "valgrind --tool=cachegrind" */ check_for_interrupt: if( AtomicLoad(&db->u1.isInterrupted) ) goto abort_due_to_interrupt; #ifndef SQLITE_OMIT_PROGRESS_CALLBACK /* Call the progress callback if it is configured and the required number ** of VDBE ops have been executed (either since this invocation of ** sqlite3VdbeExec() or since last time the progress callback was called). ** If the progress callback returns non-zero, exit the virtual machine with ** a return code SQLITE_ABORT. */ while( nVmStep>=nProgressLimit && db->xProgress!=0 ){ assert( db->nProgressOps!=0 ); nProgressLimit += db->nProgressOps; if( db->xProgress(db->pProgressArg) ){ nProgressLimit = LARGEST_UINT64; rc = SQLITE_INTERRUPT; goto abort_due_to_error; } } #endif break; } /* Opcode: Gosub P1 P2 * * * ** ** Write the current address onto register P1 ** and then jump to address P2. */ case OP_Gosub: { /* jump */ assert( pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor) ); pIn1 = &aMem[pOp->p1]; assert( VdbeMemDynamic(pIn1)==0 ); memAboutToChange(p, pIn1); pIn1->flags = MEM_Int; pIn1->u.i = (int)(pOp-aOp); REGISTER_TRACE(pOp->p1, pIn1); /* Most jump operations do a goto to this spot in order to update ** the pOp pointer. */ jump_to_p2: pOp = &aOp[pOp->p2 - 1]; break; } /* Opcode: Return P1 * * * * ** ** Jump to the next instruction after the address in register P1. After ** the jump, register P1 becomes undefined. */ case OP_Return: { /* in1 */ pIn1 = &aMem[pOp->p1]; assert( pIn1->flags==MEM_Int ); pOp = &aOp[pIn1->u.i]; pIn1->flags = MEM_Undefined; break; } /* Opcode: InitCoroutine P1 P2 P3 * * ** ** Set up register P1 so that it will Yield to the coroutine ** located at address P3. ** ** If P2!=0 then the coroutine implementation immediately follows ** this opcode. So jump over the coroutine implementation to ** address P2. ** ** See also: EndCoroutine */ case OP_InitCoroutine: { /* jump */ assert( pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor) ); assert( pOp->p2>=0 && pOp->p2nOp ); assert( pOp->p3>=0 && pOp->p3nOp ); pOut = &aMem[pOp->p1]; assert( !VdbeMemDynamic(pOut) ); pOut->u.i = pOp->p3 - 1; pOut->flags = MEM_Int; if( pOp->p2 ) goto jump_to_p2; break; } /* Opcode: EndCoroutine P1 * * * * ** ** The instruction at the address in register P1 is a Yield. ** Jump to the P2 parameter of that Yield. ** After the jump, register P1 becomes undefined. ** ** See also: InitCoroutine */ case OP_EndCoroutine: { /* in1 */ VdbeOp *pCaller; pIn1 = &aMem[pOp->p1]; assert( pIn1->flags==MEM_Int ); assert( pIn1->u.i>=0 && pIn1->u.inOp ); pCaller = &aOp[pIn1->u.i]; assert( pCaller->opcode==OP_Yield ); assert( pCaller->p2>=0 && pCaller->p2nOp ); pOp = &aOp[pCaller->p2 - 1]; pIn1->flags = MEM_Undefined; break; } /* Opcode: Yield P1 P2 * * * ** ** Swap the program counter with the value in register P1. This ** has the effect of yielding to a coroutine. ** ** If the coroutine that is launched by this instruction ends with ** Yield or Return then continue to the next instruction. But if ** the coroutine launched by this instruction ends with ** EndCoroutine, then jump to P2 rather than continuing with the ** next instruction. ** ** See also: InitCoroutine */ case OP_Yield: { /* in1, jump */ int pcDest; pIn1 = &aMem[pOp->p1]; assert( VdbeMemDynamic(pIn1)==0 ); pIn1->flags = MEM_Int; pcDest = (int)pIn1->u.i; pIn1->u.i = (int)(pOp - aOp); REGISTER_TRACE(pOp->p1, pIn1); pOp = &aOp[pcDest]; break; } /* Opcode: HaltIfNull P1 P2 P3 P4 P5 ** Synopsis: if r[P3]=null halt ** ** Check the value in register P3. If it is NULL then Halt using ** parameter P1, P2, and P4 as if this were a Halt instruction. If the ** value in register P3 is not NULL, then this routine is a no-op. ** The P5 parameter should be 1. */ case OP_HaltIfNull: { /* in3 */ pIn3 = &aMem[pOp->p3]; #ifdef SQLITE_DEBUG if( pOp->p2==OE_Abort ){ sqlite3VdbeAssertAbortable(p); } #endif if( (pIn3->flags & MEM_Null)==0 ) break; /* Fall through into OP_Halt */ /* no break */ deliberate_fall_through } /* Opcode: Halt P1 P2 * P4 P5 ** ** Exit immediately. All open cursors, etc are closed ** automatically. ** ** P1 is the result code returned by sqlite3_exec(), sqlite3_reset(), ** or sqlite3_finalize(). For a normal halt, this should be SQLITE_OK (0). ** For errors, it can be some other value. If P1!=0 then P2 will determine ** whether or not to rollback the current transaction. Do not rollback ** if P2==OE_Fail. Do the rollback if P2==OE_Rollback. If P2==OE_Abort, ** then back out all changes that have occurred during this execution of the ** VDBE, but do not rollback the transaction. ** ** If P4 is not null then it is an error message string. ** ** P5 is a value between 0 and 4, inclusive, that modifies the P4 string. ** ** 0: (no change) ** 1: NOT NULL contraint failed: P4 ** 2: UNIQUE constraint failed: P4 ** 3: CHECK constraint failed: P4 ** 4: FOREIGN KEY constraint failed: P4 ** ** If P5 is not zero and P4 is NULL, then everything after the ":" is ** omitted. ** ** There is an implied "Halt 0 0 0" instruction inserted at the very end of ** every program. So a jump past the last instruction of the program ** is the same as executing Halt. */ case OP_Halt: { VdbeFrame *pFrame; int pcx; pcx = (int)(pOp - aOp); #ifdef SQLITE_DEBUG if( pOp->p2==OE_Abort ){ sqlite3VdbeAssertAbortable(p); } #endif if( pOp->p1==SQLITE_OK && p->pFrame ){ /* Halt the sub-program. Return control to the parent frame. */ pFrame = p->pFrame; p->pFrame = pFrame->pParent; p->nFrame--; sqlite3VdbeSetChanges(db, p->nChange); pcx = sqlite3VdbeFrameRestore(pFrame); if( pOp->p2==OE_Ignore ){ /* Instruction pcx is the OP_Program that invoked the sub-program ** currently being halted. If the p2 instruction of this OP_Halt ** instruction is set to OE_Ignore, then the sub-program is throwing ** an IGNORE exception. In this case jump to the address specified ** as the p2 of the calling OP_Program. */ pcx = p->aOp[pcx].p2-1; } aOp = p->aOp; aMem = p->aMem; pOp = &aOp[pcx]; break; } p->rc = pOp->p1; p->errorAction = (u8)pOp->p2; p->pc = pcx; assert( pOp->p5<=4 ); if( p->rc ){ if( pOp->p5 ){ static const char * const azType[] = { "NOT NULL", "UNIQUE", "CHECK", "FOREIGN KEY" }; testcase( pOp->p5==1 ); testcase( pOp->p5==2 ); testcase( pOp->p5==3 ); testcase( pOp->p5==4 ); sqlite3VdbeError(p, "%s constraint failed", azType[pOp->p5-1]); if( pOp->p4.z ){ p->zErrMsg = sqlite3MPrintf(db, "%z: %s", p->zErrMsg, pOp->p4.z); } }else{ sqlite3VdbeError(p, "%s", pOp->p4.z); } sqlite3_log(pOp->p1, "abort at %d in [%s]: %s", pcx, p->zSql, p->zErrMsg); } rc = sqlite3VdbeHalt(p); assert( rc==SQLITE_BUSY || rc==SQLITE_OK || rc==SQLITE_ERROR ); if( rc==SQLITE_BUSY ){ p->rc = SQLITE_BUSY; }else{ assert( rc==SQLITE_OK || (p->rc&0xff)==SQLITE_CONSTRAINT ); assert( rc==SQLITE_OK || db->nDeferredCons>0 || db->nDeferredImmCons>0 ); rc = p->rc ? SQLITE_ERROR : SQLITE_DONE; } goto vdbe_return; } /* Opcode: Integer P1 P2 * * * ** Synopsis: r[P2]=P1 ** ** The 32-bit integer value P1 is written into register P2. */ case OP_Integer: { /* out2 */ pOut = out2Prerelease(p, pOp); pOut->u.i = pOp->p1; break; } /* Opcode: Int64 * P2 * P4 * ** Synopsis: r[P2]=P4 ** ** P4 is a pointer to a 64-bit integer value. ** Write that value into register P2. */ case OP_Int64: { /* out2 */ pOut = out2Prerelease(p, pOp); assert( pOp->p4.pI64!=0 ); pOut->u.i = *pOp->p4.pI64; break; } #ifndef SQLITE_OMIT_FLOATING_POINT /* Opcode: Real * P2 * P4 * ** Synopsis: r[P2]=P4 ** ** P4 is a pointer to a 64-bit floating point value. ** Write that value into register P2. */ case OP_Real: { /* same as TK_FLOAT, out2 */ pOut = out2Prerelease(p, pOp); pOut->flags = MEM_Real; assert( !sqlite3IsNaN(*pOp->p4.pReal) ); pOut->u.r = *pOp->p4.pReal; break; } #endif /* Opcode: String8 * P2 * P4 * ** Synopsis: r[P2]='P4' ** ** P4 points to a nul terminated UTF-8 string. This opcode is transformed ** into a String opcode before it is executed for the first time. During ** this transformation, the length of string P4 is computed and stored ** as the P1 parameter. */ case OP_String8: { /* same as TK_STRING, out2 */ assert( pOp->p4.z!=0 ); pOut = out2Prerelease(p, pOp); pOp->p1 = sqlite3Strlen30(pOp->p4.z); #ifndef SQLITE_OMIT_UTF16 if( encoding!=SQLITE_UTF8 ){ rc = sqlite3VdbeMemSetStr(pOut, pOp->p4.z, -1, SQLITE_UTF8, SQLITE_STATIC); assert( rc==SQLITE_OK || rc==SQLITE_TOOBIG ); if( rc ) goto too_big; if( SQLITE_OK!=sqlite3VdbeChangeEncoding(pOut, encoding) ) goto no_mem; assert( pOut->szMalloc>0 && pOut->zMalloc==pOut->z ); assert( VdbeMemDynamic(pOut)==0 ); pOut->szMalloc = 0; pOut->flags |= MEM_Static; if( pOp->p4type==P4_DYNAMIC ){ sqlite3DbFree(db, pOp->p4.z); } pOp->p4type = P4_DYNAMIC; pOp->p4.z = pOut->z; pOp->p1 = pOut->n; } #endif if( pOp->p1>db->aLimit[SQLITE_LIMIT_LENGTH] ){ goto too_big; } pOp->opcode = OP_String; assert( rc==SQLITE_OK ); /* Fall through to the next case, OP_String */ /* no break */ deliberate_fall_through } /* Opcode: String P1 P2 P3 P4 P5 ** Synopsis: r[P2]='P4' (len=P1) ** ** The string value P4 of length P1 (bytes) is stored in register P2. ** ** If P3 is not zero and the content of register P3 is equal to P5, then ** the datatype of the register P2 is converted to BLOB. The content is ** the same sequence of bytes, it is merely interpreted as a BLOB instead ** of a string, as if it had been CAST. In other words: ** ** if( P3!=0 and reg[P3]==P5 ) reg[P2] := CAST(reg[P2] as BLOB) */ case OP_String: { /* out2 */ assert( pOp->p4.z!=0 ); pOut = out2Prerelease(p, pOp); pOut->flags = MEM_Str|MEM_Static|MEM_Term; pOut->z = pOp->p4.z; pOut->n = pOp->p1; pOut->enc = encoding; UPDATE_MAX_BLOBSIZE(pOut); #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS if( pOp->p3>0 ){ assert( pOp->p3<=(p->nMem+1 - p->nCursor) ); pIn3 = &aMem[pOp->p3]; assert( pIn3->flags & MEM_Int ); if( pIn3->u.i==pOp->p5 ) pOut->flags = MEM_Blob|MEM_Static|MEM_Term; } #endif break; } /* Opcode: Null P1 P2 P3 * * ** Synopsis: r[P2..P3]=NULL ** ** Write a NULL into registers P2. If P3 greater than P2, then also write ** NULL into register P3 and every register in between P2 and P3. If P3 ** is less than P2 (typically P3 is zero) then only register P2 is ** set to NULL. ** ** If the P1 value is non-zero, then also set the MEM_Cleared flag so that ** NULL values will not compare equal even if SQLITE_NULLEQ is set on ** OP_Ne or OP_Eq. */ case OP_Null: { /* out2 */ int cnt; u16 nullFlag; pOut = out2Prerelease(p, pOp); cnt = pOp->p3-pOp->p2; assert( pOp->p3<=(p->nMem+1 - p->nCursor) ); pOut->flags = nullFlag = pOp->p1 ? (MEM_Null|MEM_Cleared) : MEM_Null; pOut->n = 0; #ifdef SQLITE_DEBUG pOut->uTemp = 0; #endif while( cnt>0 ){ pOut++; memAboutToChange(p, pOut); sqlite3VdbeMemSetNull(pOut); pOut->flags = nullFlag; pOut->n = 0; cnt--; } break; } /* Opcode: SoftNull P1 * * * * ** Synopsis: r[P1]=NULL ** ** Set register P1 to have the value NULL as seen by the OP_MakeRecord ** instruction, but do not free any string or blob memory associated with ** the register, so that if the value was a string or blob that was ** previously copied using OP_SCopy, the copies will continue to be valid. */ case OP_SoftNull: { assert( pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor) ); pOut = &aMem[pOp->p1]; pOut->flags = (pOut->flags&~(MEM_Undefined|MEM_AffMask))|MEM_Null; break; } /* Opcode: Blob P1 P2 * P4 * ** Synopsis: r[P2]=P4 (len=P1) ** ** P4 points to a blob of data P1 bytes long. Store this ** blob in register P2. */ case OP_Blob: { /* out2 */ assert( pOp->p1 <= SQLITE_MAX_LENGTH ); pOut = out2Prerelease(p, pOp); sqlite3VdbeMemSetStr(pOut, pOp->p4.z, pOp->p1, 0, 0); pOut->enc = encoding; UPDATE_MAX_BLOBSIZE(pOut); break; } /* Opcode: Variable P1 P2 * P4 * ** Synopsis: r[P2]=parameter(P1,P4) ** ** Transfer the values of bound parameter P1 into register P2 ** ** If the parameter is named, then its name appears in P4. ** The P4 value is used by sqlite3_bind_parameter_name(). */ case OP_Variable: { /* out2 */ Mem *pVar; /* Value being transferred */ assert( pOp->p1>0 && pOp->p1<=p->nVar ); assert( pOp->p4.z==0 || pOp->p4.z==sqlite3VListNumToName(p->pVList,pOp->p1) ); pVar = &p->aVar[pOp->p1 - 1]; if( sqlite3VdbeMemTooBig(pVar) ){ goto too_big; } pOut = &aMem[pOp->p2]; if( VdbeMemDynamic(pOut) ) sqlite3VdbeMemSetNull(pOut); memcpy(pOut, pVar, MEMCELLSIZE); pOut->flags &= ~(MEM_Dyn|MEM_Ephem); pOut->flags |= MEM_Static|MEM_FromBind; UPDATE_MAX_BLOBSIZE(pOut); break; } /* Opcode: Move P1 P2 P3 * * ** Synopsis: r[P2@P3]=r[P1@P3] ** ** Move the P3 values in register P1..P1+P3-1 over into ** registers P2..P2+P3-1. Registers P1..P1+P3-1 are ** left holding a NULL. It is an error for register ranges ** P1..P1+P3-1 and P2..P2+P3-1 to overlap. It is an error ** for P3 to be less than 1. */ case OP_Move: { int n; /* Number of registers left to copy */ int p1; /* Register to copy from */ int p2; /* Register to copy to */ n = pOp->p3; p1 = pOp->p1; p2 = pOp->p2; assert( n>0 && p1>0 && p2>0 ); assert( p1+n<=p2 || p2+n<=p1 ); pIn1 = &aMem[p1]; pOut = &aMem[p2]; do{ assert( pOut<=&aMem[(p->nMem+1 - p->nCursor)] ); assert( pIn1<=&aMem[(p->nMem+1 - p->nCursor)] ); assert( memIsValid(pIn1) ); memAboutToChange(p, pOut); sqlite3VdbeMemMove(pOut, pIn1); #ifdef SQLITE_DEBUG pIn1->pScopyFrom = 0; { int i; for(i=1; inMem; i++){ if( aMem[i].pScopyFrom==pIn1 ){ aMem[i].pScopyFrom = pOut; } } } #endif Deephemeralize(pOut); REGISTER_TRACE(p2++, pOut); pIn1++; pOut++; }while( --n ); break; } /* Opcode: Copy P1 P2 P3 * * ** Synopsis: r[P2@P3+1]=r[P1@P3+1] ** ** Make a copy of registers P1..P1+P3 into registers P2..P2+P3. ** ** This instruction makes a deep copy of the value. A duplicate ** is made of any string or blob constant. See also OP_SCopy. */ case OP_Copy: { int n; n = pOp->p3; pIn1 = &aMem[pOp->p1]; pOut = &aMem[pOp->p2]; assert( pOut!=pIn1 ); while( 1 ){ memAboutToChange(p, pOut); sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem); Deephemeralize(pOut); #ifdef SQLITE_DEBUG pOut->pScopyFrom = 0; #endif REGISTER_TRACE(pOp->p2+pOp->p3-n, pOut); if( (n--)==0 ) break; pOut++; pIn1++; } break; } /* Opcode: SCopy P1 P2 * * * ** Synopsis: r[P2]=r[P1] ** ** Make a shallow copy of register P1 into register P2. ** ** This instruction makes a shallow copy of the value. If the value ** is a string or blob, then the copy is only a pointer to the ** original and hence if the original changes so will the copy. ** Worse, if the original is deallocated, the copy becomes invalid. ** Thus the program must guarantee that the original will not change ** during the lifetime of the copy. Use OP_Copy to make a complete ** copy. */ case OP_SCopy: { /* out2 */ pIn1 = &aMem[pOp->p1]; pOut = &aMem[pOp->p2]; assert( pOut!=pIn1 ); sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem); #ifdef SQLITE_DEBUG pOut->pScopyFrom = pIn1; pOut->mScopyFlags = pIn1->flags; #endif break; } /* Opcode: IntCopy P1 P2 * * * ** Synopsis: r[P2]=r[P1] ** ** Transfer the integer value held in register P1 into register P2. ** ** This is an optimized version of SCopy that works only for integer ** values. */ case OP_IntCopy: { /* out2 */ pIn1 = &aMem[pOp->p1]; assert( (pIn1->flags & MEM_Int)!=0 ); pOut = &aMem[pOp->p2]; sqlite3VdbeMemSetInt64(pOut, pIn1->u.i); break; } /* Opcode: ResultRow P1 P2 * * * ** Synopsis: output=r[P1@P2] ** ** The registers P1 through P1+P2-1 contain a single row of ** results. This opcode causes the sqlite3_step() call to terminate ** with an SQLITE_ROW return code and it sets up the sqlite3_stmt ** structure to provide access to the r(P1)..r(P1+P2-1) values as ** the result row. */ case OP_ResultRow: { Mem *pMem; int i; assert( p->nResColumn==pOp->p2 ); assert( pOp->p1>0 ); assert( pOp->p1+pOp->p2<=(p->nMem+1 - p->nCursor)+1 ); /* If this statement has violated immediate foreign key constraints, do ** not return the number of rows modified. And do not RELEASE the statement ** transaction. It needs to be rolled back. */ if( SQLITE_OK!=(rc = sqlite3VdbeCheckFk(p, 0)) ){ assert( db->flags&SQLITE_CountRows ); assert( p->usesStmtJournal ); goto abort_due_to_error; } /* If the SQLITE_CountRows flag is set in sqlite3.flags mask, then ** DML statements invoke this opcode to return the number of rows ** modified to the user. This is the only way that a VM that ** opens a statement transaction may invoke this opcode. ** ** In case this is such a statement, close any statement transaction ** opened by this VM before returning control to the user. This is to ** ensure that statement-transactions are always nested, not overlapping. ** If the open statement-transaction is not closed here, then the user ** may step another VM that opens its own statement transaction. This ** may lead to overlapping statement transactions. ** ** The statement transaction is never a top-level transaction. Hence ** the RELEASE call below can never fail. */ assert( p->iStatement==0 || db->flags&SQLITE_CountRows ); rc = sqlite3VdbeCloseStatement(p, SAVEPOINT_RELEASE); assert( rc==SQLITE_OK ); /* Invalidate all ephemeral cursor row caches */ p->cacheCtr = (p->cacheCtr + 2)|1; /* Make sure the results of the current row are \000 terminated ** and have an assigned type. The results are de-ephemeralized as ** a side effect. */ pMem = p->pResultSet = &aMem[pOp->p1]; for(i=0; ip2; i++){ assert( memIsValid(&pMem[i]) ); Deephemeralize(&pMem[i]); assert( (pMem[i].flags & MEM_Ephem)==0 || (pMem[i].flags & (MEM_Str|MEM_Blob))==0 ); sqlite3VdbeMemNulTerminate(&pMem[i]); REGISTER_TRACE(pOp->p1+i, &pMem[i]); #ifdef SQLITE_DEBUG /* The registers in the result will not be used again when the ** prepared statement restarts. This is because sqlite3_column() ** APIs might have caused type conversions of made other changes to ** the register values. Therefore, we can go ahead and break any ** OP_SCopy dependencies. */ pMem[i].pScopyFrom = 0; #endif } if( db->mallocFailed ) goto no_mem; if( db->mTrace & SQLITE_TRACE_ROW ){ db->trace.xV2(SQLITE_TRACE_ROW, db->pTraceArg, p, 0); } /* Return SQLITE_ROW */ p->pc = (int)(pOp - aOp) + 1; rc = SQLITE_ROW; goto vdbe_return; } /* Opcode: Concat P1 P2 P3 * * ** Synopsis: r[P3]=r[P2]+r[P1] ** ** Add the text in register P1 onto the end of the text in ** register P2 and store the result in register P3. ** If either the P1 or P2 text are NULL then store NULL in P3. ** ** P3 = P2 || P1 ** ** It is illegal for P1 and P3 to be the same register. Sometimes, ** if P3 is the same register as P2, the implementation is able ** to avoid a memcpy(). */ case OP_Concat: { /* same as TK_CONCAT, in1, in2, out3 */ i64 nByte; /* Total size of the output string or blob */ u16 flags1; /* Initial flags for P1 */ u16 flags2; /* Initial flags for P2 */ pIn1 = &aMem[pOp->p1]; pIn2 = &aMem[pOp->p2]; pOut = &aMem[pOp->p3]; testcase( pOut==pIn2 ); assert( pIn1!=pOut ); flags1 = pIn1->flags; testcase( flags1 & MEM_Null ); testcase( pIn2->flags & MEM_Null ); if( (flags1 | pIn2->flags) & MEM_Null ){ sqlite3VdbeMemSetNull(pOut); break; } if( (flags1 & (MEM_Str|MEM_Blob))==0 ){ if( sqlite3VdbeMemStringify(pIn1,encoding,0) ) goto no_mem; flags1 = pIn1->flags & ~MEM_Str; }else if( (flags1 & MEM_Zero)!=0 ){ if( sqlite3VdbeMemExpandBlob(pIn1) ) goto no_mem; flags1 = pIn1->flags & ~MEM_Str; } flags2 = pIn2->flags; if( (flags2 & (MEM_Str|MEM_Blob))==0 ){ if( sqlite3VdbeMemStringify(pIn2,encoding,0) ) goto no_mem; flags2 = pIn2->flags & ~MEM_Str; }else if( (flags2 & MEM_Zero)!=0 ){ if( sqlite3VdbeMemExpandBlob(pIn2) ) goto no_mem; flags2 = pIn2->flags & ~MEM_Str; } nByte = pIn1->n + pIn2->n; if( nByte>db->aLimit[SQLITE_LIMIT_LENGTH] ){ goto too_big; } if( sqlite3VdbeMemGrow(pOut, (int)nByte+3, pOut==pIn2) ){ goto no_mem; } MemSetTypeFlag(pOut, MEM_Str); if( pOut!=pIn2 ){ memcpy(pOut->z, pIn2->z, pIn2->n); assert( (pIn2->flags & MEM_Dyn) == (flags2 & MEM_Dyn) ); pIn2->flags = flags2; } memcpy(&pOut->z[pIn2->n], pIn1->z, pIn1->n); assert( (pIn1->flags & MEM_Dyn) == (flags1 & MEM_Dyn) ); pIn1->flags = flags1; pOut->z[nByte]=0; pOut->z[nByte+1] = 0; pOut->z[nByte+2] = 0; pOut->flags |= MEM_Term; pOut->n = (int)nByte; pOut->enc = encoding; UPDATE_MAX_BLOBSIZE(pOut); break; } /* Opcode: Add P1 P2 P3 * * ** Synopsis: r[P3]=r[P1]+r[P2] ** ** Add the value in register P1 to the value in register P2 ** and store the result in register P3. ** If either input is NULL, the result is NULL. */ /* Opcode: Multiply P1 P2 P3 * * ** Synopsis: r[P3]=r[P1]*r[P2] ** ** ** Multiply the value in register P1 by the value in register P2 ** and store the result in register P3. ** If either input is NULL, the result is NULL. */ /* Opcode: Subtract P1 P2 P3 * * ** Synopsis: r[P3]=r[P2]-r[P1] ** ** Subtract the value in register P1 from the value in register P2 ** and store the result in register P3. ** If either input is NULL, the result is NULL. */ /* Opcode: Divide P1 P2 P3 * * ** Synopsis: r[P3]=r[P2]/r[P1] ** ** Divide the value in register P1 by the value in register P2 ** and store the result in register P3 (P3=P2/P1). If the value in ** register P1 is zero, then the result is NULL. If either input is ** NULL, the result is NULL. */ /* Opcode: Remainder P1 P2 P3 * * ** Synopsis: r[P3]=r[P2]%r[P1] ** ** Compute the remainder after integer register P2 is divided by ** register P1 and store the result in register P3. ** If the value in register P1 is zero the result is NULL. ** If either operand is NULL, the result is NULL. */ case OP_Add: /* same as TK_PLUS, in1, in2, out3 */ case OP_Subtract: /* same as TK_MINUS, in1, in2, out3 */ case OP_Multiply: /* same as TK_STAR, in1, in2, out3 */ case OP_Divide: /* same as TK_SLASH, in1, in2, out3 */ case OP_Remainder: { /* same as TK_REM, in1, in2, out3 */ u16 flags; /* Combined MEM_* flags from both inputs */ u16 type1; /* Numeric type of left operand */ u16 type2; /* Numeric type of right operand */ i64 iA; /* Integer value of left operand */ i64 iB; /* Integer value of right operand */ double rA; /* Real value of left operand */ double rB; /* Real value of right operand */ pIn1 = &aMem[pOp->p1]; type1 = numericType(pIn1); pIn2 = &aMem[pOp->p2]; type2 = numericType(pIn2); pOut = &aMem[pOp->p3]; flags = pIn1->flags | pIn2->flags; if( (type1 & type2 & MEM_Int)!=0 ){ iA = pIn1->u.i; iB = pIn2->u.i; switch( pOp->opcode ){ case OP_Add: if( sqlite3AddInt64(&iB,iA) ) goto fp_math; break; case OP_Subtract: if( sqlite3SubInt64(&iB,iA) ) goto fp_math; break; case OP_Multiply: if( sqlite3MulInt64(&iB,iA) ) goto fp_math; break; case OP_Divide: { if( iA==0 ) goto arithmetic_result_is_null; if( iA==-1 && iB==SMALLEST_INT64 ) goto fp_math; iB /= iA; break; } default: { if( iA==0 ) goto arithmetic_result_is_null; if( iA==-1 ) iA = 1; iB %= iA; break; } } pOut->u.i = iB; MemSetTypeFlag(pOut, MEM_Int); }else if( (flags & MEM_Null)!=0 ){ goto arithmetic_result_is_null; }else{ fp_math: rA = sqlite3VdbeRealValue(pIn1); rB = sqlite3VdbeRealValue(pIn2); switch( pOp->opcode ){ case OP_Add: rB += rA; break; case OP_Subtract: rB -= rA; break; case OP_Multiply: rB *= rA; break; case OP_Divide: { /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ if( rA==(double)0 ) goto arithmetic_result_is_null; rB /= rA; break; } default: { iA = sqlite3VdbeIntValue(pIn1); iB = sqlite3VdbeIntValue(pIn2); if( iA==0 ) goto arithmetic_result_is_null; if( iA==-1 ) iA = 1; rB = (double)(iB % iA); break; } } #ifdef SQLITE_OMIT_FLOATING_POINT pOut->u.i = rB; MemSetTypeFlag(pOut, MEM_Int); #else if( sqlite3IsNaN(rB) ){ goto arithmetic_result_is_null; } pOut->u.r = rB; MemSetTypeFlag(pOut, MEM_Real); #endif } break; arithmetic_result_is_null: sqlite3VdbeMemSetNull(pOut); break; } /* Opcode: CollSeq P1 * * P4 ** ** P4 is a pointer to a CollSeq object. If the next call to a user function ** or aggregate calls sqlite3GetFuncCollSeq(), this collation sequence will ** be returned. This is used by the built-in min(), max() and nullif() ** functions. ** ** If P1 is not zero, then it is a register that a subsequent min() or ** max() aggregate will set to 1 if the current row is not the minimum or ** maximum. The P1 register is initialized to 0 by this instruction. ** ** The interface used by the implementation of the aforementioned functions ** to retrieve the collation sequence set by this opcode is not available ** publicly. Only built-in functions have access to this feature. */ case OP_CollSeq: { assert( pOp->p4type==P4_COLLSEQ ); if( pOp->p1 ){ sqlite3VdbeMemSetInt64(&aMem[pOp->p1], 0); } break; } /* Opcode: BitAnd P1 P2 P3 * * ** Synopsis: r[P3]=r[P1]&r[P2] ** ** Take the bit-wise AND of the values in register P1 and P2 and ** store the result in register P3. ** If either input is NULL, the result is NULL. */ /* Opcode: BitOr P1 P2 P3 * * ** Synopsis: r[P3]=r[P1]|r[P2] ** ** Take the bit-wise OR of the values in register P1 and P2 and ** store the result in register P3. ** If either input is NULL, the result is NULL. */ /* Opcode: ShiftLeft P1 P2 P3 * * ** Synopsis: r[P3]=r[P2]<>r[P1] ** ** Shift the integer value in register P2 to the right by the ** number of bits specified by the integer in register P1. ** Store the result in register P3. ** If either input is NULL, the result is NULL. */ case OP_BitAnd: /* same as TK_BITAND, in1, in2, out3 */ case OP_BitOr: /* same as TK_BITOR, in1, in2, out3 */ case OP_ShiftLeft: /* same as TK_LSHIFT, in1, in2, out3 */ case OP_ShiftRight: { /* same as TK_RSHIFT, in1, in2, out3 */ i64 iA; u64 uA; i64 iB; u8 op; pIn1 = &aMem[pOp->p1]; pIn2 = &aMem[pOp->p2]; pOut = &aMem[pOp->p3]; if( (pIn1->flags | pIn2->flags) & MEM_Null ){ sqlite3VdbeMemSetNull(pOut); break; } iA = sqlite3VdbeIntValue(pIn2); iB = sqlite3VdbeIntValue(pIn1); op = pOp->opcode; if( op==OP_BitAnd ){ iA &= iB; }else if( op==OP_BitOr ){ iA |= iB; }else if( iB!=0 ){ assert( op==OP_ShiftRight || op==OP_ShiftLeft ); /* If shifting by a negative amount, shift in the other direction */ if( iB<0 ){ assert( OP_ShiftRight==OP_ShiftLeft+1 ); op = 2*OP_ShiftLeft + 1 - op; iB = iB>(-64) ? -iB : 64; } if( iB>=64 ){ iA = (iA>=0 || op==OP_ShiftLeft) ? 0 : -1; }else{ memcpy(&uA, &iA, sizeof(uA)); if( op==OP_ShiftLeft ){ uA <<= iB; }else{ uA >>= iB; /* Sign-extend on a right shift of a negative number */ if( iA<0 ) uA |= ((((u64)0xffffffff)<<32)|0xffffffff) << (64-iB); } memcpy(&iA, &uA, sizeof(iA)); } } pOut->u.i = iA; MemSetTypeFlag(pOut, MEM_Int); break; } /* Opcode: AddImm P1 P2 * * * ** Synopsis: r[P1]=r[P1]+P2 ** ** Add the constant P2 to the value in register P1. ** The result is always an integer. ** ** To force any register to be an integer, just add 0. */ case OP_AddImm: { /* in1 */ pIn1 = &aMem[pOp->p1]; memAboutToChange(p, pIn1); sqlite3VdbeMemIntegerify(pIn1); pIn1->u.i += pOp->p2; break; } /* Opcode: MustBeInt P1 P2 * * * ** ** Force the value in register P1 to be an integer. If the value ** in P1 is not an integer and cannot be converted into an integer ** without data loss, then jump immediately to P2, or if P2==0 ** raise an SQLITE_MISMATCH exception. */ case OP_MustBeInt: { /* jump, in1 */ pIn1 = &aMem[pOp->p1]; if( (pIn1->flags & MEM_Int)==0 ){ applyAffinity(pIn1, SQLITE_AFF_NUMERIC, encoding); if( (pIn1->flags & MEM_Int)==0 ){ VdbeBranchTaken(1, 2); if( pOp->p2==0 ){ rc = SQLITE_MISMATCH; goto abort_due_to_error; }else{ goto jump_to_p2; } } } VdbeBranchTaken(0, 2); MemSetTypeFlag(pIn1, MEM_Int); break; } #ifndef SQLITE_OMIT_FLOATING_POINT /* Opcode: RealAffinity P1 * * * * ** ** If register P1 holds an integer convert it to a real value. ** ** This opcode is used when extracting information from a column that ** has REAL affinity. Such column values may still be stored as ** integers, for space efficiency, but after extraction we want them ** to have only a real value. */ case OP_RealAffinity: { /* in1 */ pIn1 = &aMem[pOp->p1]; if( pIn1->flags & (MEM_Int|MEM_IntReal) ){ testcase( pIn1->flags & MEM_Int ); testcase( pIn1->flags & MEM_IntReal ); sqlite3VdbeMemRealify(pIn1); REGISTER_TRACE(pOp->p1, pIn1); } break; } #endif #ifndef SQLITE_OMIT_CAST /* Opcode: Cast P1 P2 * * * ** Synopsis: affinity(r[P1]) ** ** Force the value in register P1 to be the type defined by P2. ** **
      **
    • P2=='A' → BLOB **
    • P2=='B' → TEXT **
    • P2=='C' → NUMERIC **
    • P2=='D' → INTEGER **
    • P2=='E' → REAL **
    ** ** A NULL value is not changed by this routine. It remains NULL. */ case OP_Cast: { /* in1 */ assert( pOp->p2>=SQLITE_AFF_BLOB && pOp->p2<=SQLITE_AFF_REAL ); testcase( pOp->p2==SQLITE_AFF_TEXT ); testcase( pOp->p2==SQLITE_AFF_BLOB ); testcase( pOp->p2==SQLITE_AFF_NUMERIC ); testcase( pOp->p2==SQLITE_AFF_INTEGER ); testcase( pOp->p2==SQLITE_AFF_REAL ); pIn1 = &aMem[pOp->p1]; memAboutToChange(p, pIn1); rc = ExpandBlob(pIn1); if( rc ) goto abort_due_to_error; rc = sqlite3VdbeMemCast(pIn1, pOp->p2, encoding); if( rc ) goto abort_due_to_error; UPDATE_MAX_BLOBSIZE(pIn1); REGISTER_TRACE(pOp->p1, pIn1); break; } #endif /* SQLITE_OMIT_CAST */ /* Opcode: Eq P1 P2 P3 P4 P5 ** Synopsis: IF r[P3]==r[P1] ** ** Compare the values in register P1 and P3. If reg(P3)==reg(P1) then ** jump to address P2. Or if the SQLITE_STOREP2 flag is set in P5, then ** store the result of comparison in register P2. ** ** The SQLITE_AFF_MASK portion of P5 must be an affinity character - ** SQLITE_AFF_TEXT, SQLITE_AFF_INTEGER, and so forth. An attempt is made ** to coerce both inputs according to this affinity before the ** comparison is made. If the SQLITE_AFF_MASK is 0x00, then numeric ** affinity is used. Note that the affinity conversions are stored ** back into the input registers P1 and P3. So this opcode can cause ** persistent changes to registers P1 and P3. ** ** Once any conversions have taken place, and neither value is NULL, ** the values are compared. If both values are blobs then memcmp() is ** used to determine the results of the comparison. If both values ** are text, then the appropriate collating function specified in ** P4 is used to do the comparison. If P4 is not specified then ** memcmp() is used to compare text string. If both values are ** numeric, then a numeric comparison is used. If the two values ** are of different types, then numbers are considered less than ** strings and strings are considered less than blobs. ** ** If SQLITE_NULLEQ is set in P5 then the result of comparison is always either ** true or false and is never NULL. If both operands are NULL then the result ** of comparison is true. If either operand is NULL then the result is false. ** If neither operand is NULL the result is the same as it would be if ** the SQLITE_NULLEQ flag were omitted from P5. ** ** If both SQLITE_STOREP2 and SQLITE_KEEPNULL flags are set then the ** content of r[P2] is only changed if the new value is NULL or 0 (false). ** In other words, a prior r[P2] value will not be overwritten by 1 (true). */ /* Opcode: Ne P1 P2 P3 P4 P5 ** Synopsis: IF r[P3]!=r[P1] ** ** This works just like the Eq opcode except that the jump is taken if ** the operands in registers P1 and P3 are not equal. See the Eq opcode for ** additional information. ** ** If both SQLITE_STOREP2 and SQLITE_KEEPNULL flags are set then the ** content of r[P2] is only changed if the new value is NULL or 1 (true). ** In other words, a prior r[P2] value will not be overwritten by 0 (false). */ /* Opcode: Lt P1 P2 P3 P4 P5 ** Synopsis: IF r[P3]r[P1] ** ** This works just like the Lt opcode except that the jump is taken if ** the content of register P3 is greater than the content of ** register P1. See the Lt opcode for additional information. */ /* Opcode: Ge P1 P2 P3 P4 P5 ** Synopsis: IF r[P3]>=r[P1] ** ** This works just like the Lt opcode except that the jump is taken if ** the content of register P3 is greater than or equal to the content of ** register P1. See the Lt opcode for additional information. */ case OP_Eq: /* same as TK_EQ, jump, in1, in3 */ case OP_Ne: /* same as TK_NE, jump, in1, in3 */ case OP_Lt: /* same as TK_LT, jump, in1, in3 */ case OP_Le: /* same as TK_LE, jump, in1, in3 */ case OP_Gt: /* same as TK_GT, jump, in1, in3 */ case OP_Ge: { /* same as TK_GE, jump, in1, in3 */ int res, res2; /* Result of the comparison of pIn1 against pIn3 */ char affinity; /* Affinity to use for comparison */ u16 flags1; /* Copy of initial value of pIn1->flags */ u16 flags3; /* Copy of initial value of pIn3->flags */ pIn1 = &aMem[pOp->p1]; pIn3 = &aMem[pOp->p3]; flags1 = pIn1->flags; flags3 = pIn3->flags; if( (flags1 | flags3)&MEM_Null ){ /* One or both operands are NULL */ if( pOp->p5 & SQLITE_NULLEQ ){ /* If SQLITE_NULLEQ is set (which will only happen if the operator is ** OP_Eq or OP_Ne) then take the jump or not depending on whether ** or not both operands are null. */ assert( (flags1 & MEM_Cleared)==0 ); assert( (pOp->p5 & SQLITE_JUMPIFNULL)==0 || CORRUPT_DB ); testcase( (pOp->p5 & SQLITE_JUMPIFNULL)!=0 ); if( (flags1&flags3&MEM_Null)!=0 && (flags3&MEM_Cleared)==0 ){ res = 0; /* Operands are equal */ }else{ res = ((flags3 & MEM_Null) ? -1 : +1); /* Operands are not equal */ } }else{ /* SQLITE_NULLEQ is clear and at least one operand is NULL, ** then the result is always NULL. ** The jump is taken if the SQLITE_JUMPIFNULL bit is set. */ if( pOp->p5 & SQLITE_STOREP2 ){ pOut = &aMem[pOp->p2]; iCompare = 1; /* Operands are not equal */ memAboutToChange(p, pOut); MemSetTypeFlag(pOut, MEM_Null); REGISTER_TRACE(pOp->p2, pOut); }else{ VdbeBranchTaken(2,3); if( pOp->p5 & SQLITE_JUMPIFNULL ){ goto jump_to_p2; } } break; } }else{ /* Neither operand is NULL. Do a comparison. */ affinity = pOp->p5 & SQLITE_AFF_MASK; if( affinity>=SQLITE_AFF_NUMERIC ){ if( (flags1 | flags3)&MEM_Str ){ if( (flags1 & (MEM_Int|MEM_IntReal|MEM_Real|MEM_Str))==MEM_Str ){ applyNumericAffinity(pIn1,0); testcase( flags3==pIn3->flags ); flags3 = pIn3->flags; } if( (flags3 & (MEM_Int|MEM_IntReal|MEM_Real|MEM_Str))==MEM_Str ){ applyNumericAffinity(pIn3,0); } } /* Handle the common case of integer comparison here, as an ** optimization, to avoid a call to sqlite3MemCompare() */ if( (pIn1->flags & pIn3->flags & MEM_Int)!=0 ){ if( pIn3->u.i > pIn1->u.i ){ res = +1; goto compare_op; } if( pIn3->u.i < pIn1->u.i ){ res = -1; goto compare_op; } res = 0; goto compare_op; } }else if( affinity==SQLITE_AFF_TEXT ){ if( (flags1 & MEM_Str)==0 && (flags1&(MEM_Int|MEM_Real|MEM_IntReal))!=0 ){ testcase( pIn1->flags & MEM_Int ); testcase( pIn1->flags & MEM_Real ); testcase( pIn1->flags & MEM_IntReal ); sqlite3VdbeMemStringify(pIn1, encoding, 1); testcase( (flags1&MEM_Dyn) != (pIn1->flags&MEM_Dyn) ); flags1 = (pIn1->flags & ~MEM_TypeMask) | (flags1 & MEM_TypeMask); if( NEVER(pIn1==pIn3) ) flags3 = flags1 | MEM_Str; } if( (flags3 & MEM_Str)==0 && (flags3&(MEM_Int|MEM_Real|MEM_IntReal))!=0 ){ testcase( pIn3->flags & MEM_Int ); testcase( pIn3->flags & MEM_Real ); testcase( pIn3->flags & MEM_IntReal ); sqlite3VdbeMemStringify(pIn3, encoding, 1); testcase( (flags3&MEM_Dyn) != (pIn3->flags&MEM_Dyn) ); flags3 = (pIn3->flags & ~MEM_TypeMask) | (flags3 & MEM_TypeMask); } } assert( pOp->p4type==P4_COLLSEQ || pOp->p4.pColl==0 ); res = sqlite3MemCompare(pIn3, pIn1, pOp->p4.pColl); } compare_op: /* At this point, res is negative, zero, or positive if reg[P1] is ** less than, equal to, or greater than reg[P3], respectively. Compute ** the answer to this operator in res2, depending on what the comparison ** operator actually is. The next block of code depends on the fact ** that the 6 comparison operators are consecutive integers in this ** order: NE, EQ, GT, LE, LT, GE */ assert( OP_Eq==OP_Ne+1 ); assert( OP_Gt==OP_Ne+2 ); assert( OP_Le==OP_Ne+3 ); assert( OP_Lt==OP_Ne+4 ); assert( OP_Ge==OP_Ne+5 ); if( res<0 ){ /* ne, eq, gt, le, lt, ge */ static const unsigned char aLTb[] = { 1, 0, 0, 1, 1, 0 }; res2 = aLTb[pOp->opcode - OP_Ne]; }else if( res==0 ){ static const unsigned char aEQb[] = { 0, 1, 0, 1, 0, 1 }; res2 = aEQb[pOp->opcode - OP_Ne]; }else{ static const unsigned char aGTb[] = { 1, 0, 1, 0, 0, 1 }; res2 = aGTb[pOp->opcode - OP_Ne]; } /* Undo any changes made by applyAffinity() to the input registers. */ assert( (pIn3->flags & MEM_Dyn) == (flags3 & MEM_Dyn) ); pIn3->flags = flags3; assert( (pIn1->flags & MEM_Dyn) == (flags1 & MEM_Dyn) ); pIn1->flags = flags1; if( pOp->p5 & SQLITE_STOREP2 ){ pOut = &aMem[pOp->p2]; iCompare = res; if( (pOp->p5 & SQLITE_KEEPNULL)!=0 ){ /* The KEEPNULL flag prevents OP_Eq from overwriting a NULL with 1 ** and prevents OP_Ne from overwriting NULL with 0. This flag ** is only used in contexts where either: ** (1) op==OP_Eq && (r[P2]==NULL || r[P2]==0) ** (2) op==OP_Ne && (r[P2]==NULL || r[P2]==1) ** Therefore it is not necessary to check the content of r[P2] for ** NULL. */ assert( pOp->opcode==OP_Ne || pOp->opcode==OP_Eq ); assert( res2==0 || res2==1 ); testcase( res2==0 && pOp->opcode==OP_Eq ); testcase( res2==1 && pOp->opcode==OP_Eq ); testcase( res2==0 && pOp->opcode==OP_Ne ); testcase( res2==1 && pOp->opcode==OP_Ne ); if( (pOp->opcode==OP_Eq)==res2 ) break; } memAboutToChange(p, pOut); MemSetTypeFlag(pOut, MEM_Int); pOut->u.i = res2; REGISTER_TRACE(pOp->p2, pOut); }else{ VdbeBranchTaken(res2!=0, (pOp->p5 & SQLITE_NULLEQ)?2:3); if( res2 ){ goto jump_to_p2; } } break; } /* Opcode: ElseNotEq * P2 * * * ** ** This opcode must follow an OP_Lt or OP_Gt comparison operator. There ** can be zero or more OP_ReleaseReg opcodes intervening, but no other ** opcodes are allowed to occur between this instruction and the previous ** OP_Lt or OP_Gt. Furthermore, the prior OP_Lt or OP_Gt must have the ** SQLITE_STOREP2 bit set in the P5 field. ** ** If result of an OP_Eq comparison on the same two operands as the ** prior OP_Lt or OP_Gt would have been NULL or false (0), then then ** jump to P2. If the result of an OP_Eq comparison on the two previous ** operands would have been true (1), then fall through. */ case OP_ElseNotEq: { /* same as TK_ESCAPE, jump */ #ifdef SQLITE_DEBUG /* Verify the preconditions of this opcode - that it follows an OP_Lt or ** OP_Gt with the SQLITE_STOREP2 flag set, with zero or more intervening ** OP_ReleaseReg opcodes */ int iAddr; for(iAddr = (int)(pOp - aOp) - 1; ALWAYS(iAddr>=0); iAddr--){ if( aOp[iAddr].opcode==OP_ReleaseReg ) continue; assert( aOp[iAddr].opcode==OP_Lt || aOp[iAddr].opcode==OP_Gt ); assert( aOp[iAddr].p5 & SQLITE_STOREP2 ); break; } #endif /* SQLITE_DEBUG */ VdbeBranchTaken(iCompare!=0, 2); if( iCompare!=0 ) goto jump_to_p2; break; } /* Opcode: Permutation * * * P4 * ** ** Set the permutation used by the OP_Compare operator in the next ** instruction. The permutation is stored in the P4 operand. ** ** The permutation is only valid until the next OP_Compare that has ** the OPFLAG_PERMUTE bit set in P5. Typically the OP_Permutation should ** occur immediately prior to the OP_Compare. ** ** The first integer in the P4 integer array is the length of the array ** and does not become part of the permutation. */ case OP_Permutation: { assert( pOp->p4type==P4_INTARRAY ); assert( pOp->p4.ai ); assert( pOp[1].opcode==OP_Compare ); assert( pOp[1].p5 & OPFLAG_PERMUTE ); break; } /* Opcode: Compare P1 P2 P3 P4 P5 ** Synopsis: r[P1@P3] <-> r[P2@P3] ** ** Compare two vectors of registers in reg(P1)..reg(P1+P3-1) (call this ** vector "A") and in reg(P2)..reg(P2+P3-1) ("B"). Save the result of ** the comparison for use by the next OP_Jump instruct. ** ** If P5 has the OPFLAG_PERMUTE bit set, then the order of comparison is ** determined by the most recent OP_Permutation operator. If the ** OPFLAG_PERMUTE bit is clear, then register are compared in sequential ** order. ** ** P4 is a KeyInfo structure that defines collating sequences and sort ** orders for the comparison. The permutation applies to registers ** only. The KeyInfo elements are used sequentially. ** ** The comparison is a sort comparison, so NULLs compare equal, ** NULLs are less than numbers, numbers are less than strings, ** and strings are less than blobs. */ case OP_Compare: { int n; int i; int p1; int p2; const KeyInfo *pKeyInfo; u32 idx; CollSeq *pColl; /* Collating sequence to use on this term */ int bRev; /* True for DESCENDING sort order */ u32 *aPermute; /* The permutation */ if( (pOp->p5 & OPFLAG_PERMUTE)==0 ){ aPermute = 0; }else{ assert( pOp>aOp ); assert( pOp[-1].opcode==OP_Permutation ); assert( pOp[-1].p4type==P4_INTARRAY ); aPermute = pOp[-1].p4.ai + 1; assert( aPermute!=0 ); } n = pOp->p3; pKeyInfo = pOp->p4.pKeyInfo; assert( n>0 ); assert( pKeyInfo!=0 ); p1 = pOp->p1; p2 = pOp->p2; #ifdef SQLITE_DEBUG if( aPermute ){ int k, mx = 0; for(k=0; k(u32)mx ) mx = aPermute[k]; assert( p1>0 && p1+mx<=(p->nMem+1 - p->nCursor)+1 ); assert( p2>0 && p2+mx<=(p->nMem+1 - p->nCursor)+1 ); }else{ assert( p1>0 && p1+n<=(p->nMem+1 - p->nCursor)+1 ); assert( p2>0 && p2+n<=(p->nMem+1 - p->nCursor)+1 ); } #endif /* SQLITE_DEBUG */ for(i=0; inKeyField ); pColl = pKeyInfo->aColl[i]; bRev = (pKeyInfo->aSortFlags[i] & KEYINFO_ORDER_DESC); iCompare = sqlite3MemCompare(&aMem[p1+idx], &aMem[p2+idx], pColl); if( iCompare ){ if( (pKeyInfo->aSortFlags[i] & KEYINFO_ORDER_BIGNULL) && ((aMem[p1+idx].flags & MEM_Null) || (aMem[p2+idx].flags & MEM_Null)) ){ iCompare = -iCompare; } if( bRev ) iCompare = -iCompare; break; } } break; } /* Opcode: Jump P1 P2 P3 * * ** ** Jump to the instruction at address P1, P2, or P3 depending on whether ** in the most recent OP_Compare instruction the P1 vector was less than ** equal to, or greater than the P2 vector, respectively. */ case OP_Jump: { /* jump */ if( iCompare<0 ){ VdbeBranchTaken(0,4); pOp = &aOp[pOp->p1 - 1]; }else if( iCompare==0 ){ VdbeBranchTaken(1,4); pOp = &aOp[pOp->p2 - 1]; }else{ VdbeBranchTaken(2,4); pOp = &aOp[pOp->p3 - 1]; } break; } /* Opcode: And P1 P2 P3 * * ** Synopsis: r[P3]=(r[P1] && r[P2]) ** ** Take the logical AND of the values in registers P1 and P2 and ** write the result into register P3. ** ** If either P1 or P2 is 0 (false) then the result is 0 even if ** the other input is NULL. A NULL and true or two NULLs give ** a NULL output. */ /* Opcode: Or P1 P2 P3 * * ** Synopsis: r[P3]=(r[P1] || r[P2]) ** ** Take the logical OR of the values in register P1 and P2 and ** store the answer in register P3. ** ** If either P1 or P2 is nonzero (true) then the result is 1 (true) ** even if the other input is NULL. A NULL and false or two NULLs ** give a NULL output. */ case OP_And: /* same as TK_AND, in1, in2, out3 */ case OP_Or: { /* same as TK_OR, in1, in2, out3 */ int v1; /* Left operand: 0==FALSE, 1==TRUE, 2==UNKNOWN or NULL */ int v2; /* Right operand: 0==FALSE, 1==TRUE, 2==UNKNOWN or NULL */ v1 = sqlite3VdbeBooleanValue(&aMem[pOp->p1], 2); v2 = sqlite3VdbeBooleanValue(&aMem[pOp->p2], 2); if( pOp->opcode==OP_And ){ static const unsigned char and_logic[] = { 0, 0, 0, 0, 1, 2, 0, 2, 2 }; v1 = and_logic[v1*3+v2]; }else{ static const unsigned char or_logic[] = { 0, 1, 2, 1, 1, 1, 2, 1, 2 }; v1 = or_logic[v1*3+v2]; } pOut = &aMem[pOp->p3]; if( v1==2 ){ MemSetTypeFlag(pOut, MEM_Null); }else{ pOut->u.i = v1; MemSetTypeFlag(pOut, MEM_Int); } break; } /* Opcode: IsTrue P1 P2 P3 P4 * ** Synopsis: r[P2] = coalesce(r[P1]==TRUE,P3) ^ P4 ** ** This opcode implements the IS TRUE, IS FALSE, IS NOT TRUE, and ** IS NOT FALSE operators. ** ** Interpret the value in register P1 as a boolean value. Store that ** boolean (a 0 or 1) in register P2. Or if the value in register P1 is ** NULL, then the P3 is stored in register P2. Invert the answer if P4 ** is 1. ** ** The logic is summarized like this: ** **
      **
    • If P3==0 and P4==0 then r[P2] := r[P1] IS TRUE **
    • If P3==1 and P4==1 then r[P2] := r[P1] IS FALSE **
    • If P3==0 and P4==1 then r[P2] := r[P1] IS NOT TRUE **
    • If P3==1 and P4==0 then r[P2] := r[P1] IS NOT FALSE **
    */ case OP_IsTrue: { /* in1, out2 */ assert( pOp->p4type==P4_INT32 ); assert( pOp->p4.i==0 || pOp->p4.i==1 ); assert( pOp->p3==0 || pOp->p3==1 ); sqlite3VdbeMemSetInt64(&aMem[pOp->p2], sqlite3VdbeBooleanValue(&aMem[pOp->p1], pOp->p3) ^ pOp->p4.i); break; } /* Opcode: Not P1 P2 * * * ** Synopsis: r[P2]= !r[P1] ** ** Interpret the value in register P1 as a boolean value. Store the ** boolean complement in register P2. If the value in register P1 is ** NULL, then a NULL is stored in P2. */ case OP_Not: { /* same as TK_NOT, in1, out2 */ pIn1 = &aMem[pOp->p1]; pOut = &aMem[pOp->p2]; if( (pIn1->flags & MEM_Null)==0 ){ sqlite3VdbeMemSetInt64(pOut, !sqlite3VdbeBooleanValue(pIn1,0)); }else{ sqlite3VdbeMemSetNull(pOut); } break; } /* Opcode: BitNot P1 P2 * * * ** Synopsis: r[P2]= ~r[P1] ** ** Interpret the content of register P1 as an integer. Store the ** ones-complement of the P1 value into register P2. If P1 holds ** a NULL then store a NULL in P2. */ case OP_BitNot: { /* same as TK_BITNOT, in1, out2 */ pIn1 = &aMem[pOp->p1]; pOut = &aMem[pOp->p2]; sqlite3VdbeMemSetNull(pOut); if( (pIn1->flags & MEM_Null)==0 ){ pOut->flags = MEM_Int; pOut->u.i = ~sqlite3VdbeIntValue(pIn1); } break; } /* Opcode: Once P1 P2 * * * ** ** Fall through to the next instruction the first time this opcode is ** encountered on each invocation of the byte-code program. Jump to P2 ** on the second and all subsequent encounters during the same invocation. ** ** Top-level programs determine first invocation by comparing the P1 ** operand against the P1 operand on the OP_Init opcode at the beginning ** of the program. If the P1 values differ, then fall through and make ** the P1 of this opcode equal to the P1 of OP_Init. If P1 values are ** the same then take the jump. ** ** For subprograms, there is a bitmask in the VdbeFrame that determines ** whether or not the jump should be taken. The bitmask is necessary ** because the self-altering code trick does not work for recursive ** triggers. */ case OP_Once: { /* jump */ u32 iAddr; /* Address of this instruction */ assert( p->aOp[0].opcode==OP_Init ); if( p->pFrame ){ iAddr = (int)(pOp - p->aOp); if( (p->pFrame->aOnce[iAddr/8] & (1<<(iAddr & 7)))!=0 ){ VdbeBranchTaken(1, 2); goto jump_to_p2; } p->pFrame->aOnce[iAddr/8] |= 1<<(iAddr & 7); }else{ if( p->aOp[0].p1==pOp->p1 ){ VdbeBranchTaken(1, 2); goto jump_to_p2; } } VdbeBranchTaken(0, 2); pOp->p1 = p->aOp[0].p1; break; } /* Opcode: If P1 P2 P3 * * ** ** Jump to P2 if the value in register P1 is true. The value ** is considered true if it is numeric and non-zero. If the value ** in P1 is NULL then take the jump if and only if P3 is non-zero. */ case OP_If: { /* jump, in1 */ int c; c = sqlite3VdbeBooleanValue(&aMem[pOp->p1], pOp->p3); VdbeBranchTaken(c!=0, 2); if( c ) goto jump_to_p2; break; } /* Opcode: IfNot P1 P2 P3 * * ** ** Jump to P2 if the value in register P1 is False. The value ** is considered false if it has a numeric value of zero. If the value ** in P1 is NULL then take the jump if and only if P3 is non-zero. */ case OP_IfNot: { /* jump, in1 */ int c; c = !sqlite3VdbeBooleanValue(&aMem[pOp->p1], !pOp->p3); VdbeBranchTaken(c!=0, 2); if( c ) goto jump_to_p2; break; } /* Opcode: IsNull P1 P2 * * * ** Synopsis: if r[P1]==NULL goto P2 ** ** Jump to P2 if the value in register P1 is NULL. */ case OP_IsNull: { /* same as TK_ISNULL, jump, in1 */ pIn1 = &aMem[pOp->p1]; VdbeBranchTaken( (pIn1->flags & MEM_Null)!=0, 2); if( (pIn1->flags & MEM_Null)!=0 ){ goto jump_to_p2; } break; } /* Opcode: NotNull P1 P2 * * * ** Synopsis: if r[P1]!=NULL goto P2 ** ** Jump to P2 if the value in register P1 is not NULL. */ case OP_NotNull: { /* same as TK_NOTNULL, jump, in1 */ pIn1 = &aMem[pOp->p1]; VdbeBranchTaken( (pIn1->flags & MEM_Null)==0, 2); if( (pIn1->flags & MEM_Null)==0 ){ goto jump_to_p2; } break; } /* Opcode: IfNullRow P1 P2 P3 * * ** Synopsis: if P1.nullRow then r[P3]=NULL, goto P2 ** ** Check the cursor P1 to see if it is currently pointing at a NULL row. ** If it is, then set register P3 to NULL and jump immediately to P2. ** If P1 is not on a NULL row, then fall through without making any ** changes. */ case OP_IfNullRow: { /* jump */ assert( pOp->p1>=0 && pOp->p1nCursor ); assert( p->apCsr[pOp->p1]!=0 ); if( p->apCsr[pOp->p1]->nullRow ){ sqlite3VdbeMemSetNull(aMem + pOp->p3); goto jump_to_p2; } break; } #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC /* Opcode: Offset P1 P2 P3 * * ** Synopsis: r[P3] = sqlite_offset(P1) ** ** Store in register r[P3] the byte offset into the database file that is the ** start of the payload for the record at which that cursor P1 is currently ** pointing. ** ** P2 is the column number for the argument to the sqlite_offset() function. ** This opcode does not use P2 itself, but the P2 value is used by the ** code generator. The P1, P2, and P3 operands to this opcode are the ** same as for OP_Column. ** ** This opcode is only available if SQLite is compiled with the ** -DSQLITE_ENABLE_OFFSET_SQL_FUNC option. */ case OP_Offset: { /* out3 */ VdbeCursor *pC; /* The VDBE cursor */ assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; pOut = &p->aMem[pOp->p3]; if( NEVER(pC==0) || pC->eCurType!=CURTYPE_BTREE ){ sqlite3VdbeMemSetNull(pOut); }else{ sqlite3VdbeMemSetInt64(pOut, sqlite3BtreeOffset(pC->uc.pCursor)); } break; } #endif /* SQLITE_ENABLE_OFFSET_SQL_FUNC */ /* Opcode: Column P1 P2 P3 P4 P5 ** Synopsis: r[P3]=PX ** ** Interpret the data that cursor P1 points to as a structure built using ** the MakeRecord instruction. (See the MakeRecord opcode for additional ** information about the format of the data.) Extract the P2-th column ** from this record. If there are less that (P2+1) ** values in the record, extract a NULL. ** ** The value extracted is stored in register P3. ** ** If the record contains fewer than P2 fields, then extract a NULL. Or, ** if the P4 argument is a P4_MEM use the value of the P4 argument as ** the result. ** ** If the OPFLAG_LENGTHARG and OPFLAG_TYPEOFARG bits are set on P5 then ** the result is guaranteed to only be used as the argument of a length() ** or typeof() function, respectively. The loading of large blobs can be ** skipped for length() and all content loading can be skipped for typeof(). */ case OP_Column: { u32 p2; /* column number to retrieve */ VdbeCursor *pC; /* The VDBE cursor */ BtCursor *pCrsr; /* The BTree cursor */ u32 *aOffset; /* aOffset[i] is offset to start of data for i-th column */ int len; /* The length of the serialized data for the column */ int i; /* Loop counter */ Mem *pDest; /* Where to write the extracted value */ Mem sMem; /* For storing the record being decoded */ const u8 *zData; /* Part of the record being decoded */ const u8 *zHdr; /* Next unparsed byte of the header */ const u8 *zEndHdr; /* Pointer to first byte after the header */ u64 offset64; /* 64-bit offset */ u32 t; /* A type code from the record header */ Mem *pReg; /* PseudoTable input register */ assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); p2 = (u32)pOp->p2; /* If the cursor cache is stale (meaning it is not currently point at ** the correct row) then bring it up-to-date by doing the necessary ** B-Tree seek. */ rc = sqlite3VdbeCursorMoveto(&pC, &p2); if( rc ) goto abort_due_to_error; assert( pOp->p3>0 && pOp->p3<=(p->nMem+1 - p->nCursor) ); pDest = &aMem[pOp->p3]; memAboutToChange(p, pDest); assert( pC!=0 ); assert( p2<(u32)pC->nField ); aOffset = pC->aOffset; assert( pC->eCurType!=CURTYPE_VTAB ); assert( pC->eCurType!=CURTYPE_PSEUDO || pC->nullRow ); assert( pC->eCurType!=CURTYPE_SORTER ); if( pC->cacheStatus!=p->cacheCtr ){ /*OPTIMIZATION-IF-FALSE*/ if( pC->nullRow ){ if( pC->eCurType==CURTYPE_PSEUDO ){ /* For the special case of as pseudo-cursor, the seekResult field ** identifies the register that holds the record */ assert( pC->seekResult>0 ); pReg = &aMem[pC->seekResult]; assert( pReg->flags & MEM_Blob ); assert( memIsValid(pReg) ); pC->payloadSize = pC->szRow = pReg->n; pC->aRow = (u8*)pReg->z; }else{ sqlite3VdbeMemSetNull(pDest); goto op_column_out; } }else{ pCrsr = pC->uc.pCursor; assert( pC->eCurType==CURTYPE_BTREE ); assert( pCrsr ); assert( sqlite3BtreeCursorIsValid(pCrsr) ); pC->payloadSize = sqlite3BtreePayloadSize(pCrsr); pC->aRow = sqlite3BtreePayloadFetch(pCrsr, &pC->szRow); assert( pC->szRow<=pC->payloadSize ); assert( pC->szRow<=65536 ); /* Maximum page size is 64KiB */ if( pC->payloadSize > (u32)db->aLimit[SQLITE_LIMIT_LENGTH] ){ goto too_big; } } pC->cacheStatus = p->cacheCtr; pC->iHdrOffset = getVarint32(pC->aRow, aOffset[0]); pC->nHdrParsed = 0; if( pC->szRowaRow does not have to hold the entire row, but it does at least ** need to cover the header of the record. If pC->aRow does not contain ** the complete header, then set it to zero, forcing the header to be ** dynamically allocated. */ pC->aRow = 0; pC->szRow = 0; /* Make sure a corrupt database has not given us an oversize header. ** Do this now to avoid an oversize memory allocation. ** ** Type entries can be between 1 and 5 bytes each. But 4 and 5 byte ** types use so much data space that there can only be 4096 and 32 of ** them, respectively. So the maximum header length results from a ** 3-byte type for each of the maximum of 32768 columns plus three ** extra bytes for the header length itself. 32768*3 + 3 = 98307. */ if( aOffset[0] > 98307 || aOffset[0] > pC->payloadSize ){ goto op_column_corrupt; } }else{ /* This is an optimization. By skipping over the first few tests ** (ex: pC->nHdrParsed<=p2) in the next section, we achieve a ** measurable performance gain. ** ** This branch is taken even if aOffset[0]==0. Such a record is never ** generated by SQLite, and could be considered corruption, but we ** accept it for historical reasons. When aOffset[0]==0, the code this ** branch jumps to reads past the end of the record, but never more ** than a few bytes. Even if the record occurs at the end of the page ** content area, the "page header" comes after the page content and so ** this overread is harmless. Similar overreads can occur for a corrupt ** database file. */ zData = pC->aRow; assert( pC->nHdrParsed<=p2 ); /* Conditional skipped */ testcase( aOffset[0]==0 ); goto op_column_read_header; } } /* Make sure at least the first p2+1 entries of the header have been ** parsed and valid information is in aOffset[] and pC->aType[]. */ if( pC->nHdrParsed<=p2 ){ /* If there is more header available for parsing in the record, try ** to extract additional fields up through the p2+1-th field */ if( pC->iHdrOffsetaRow==0 ){ memset(&sMem, 0, sizeof(sMem)); rc = sqlite3VdbeMemFromBtreeZeroOffset(pC->uc.pCursor,aOffset[0],&sMem); if( rc!=SQLITE_OK ) goto abort_due_to_error; zData = (u8*)sMem.z; }else{ zData = pC->aRow; } /* Fill in pC->aType[i] and aOffset[i] values through the p2-th field. */ op_column_read_header: i = pC->nHdrParsed; offset64 = aOffset[i]; zHdr = zData + pC->iHdrOffset; zEndHdr = zData + aOffset[0]; testcase( zHdr>=zEndHdr ); do{ if( (pC->aType[i] = t = zHdr[0])<0x80 ){ zHdr++; offset64 += sqlite3VdbeOneByteSerialTypeLen(t); }else{ zHdr += sqlite3GetVarint32(zHdr, &t); pC->aType[i] = t; offset64 += sqlite3VdbeSerialTypeLen(t); } aOffset[++i] = (u32)(offset64 & 0xffffffff); }while( (u32)i<=p2 && zHdr=zEndHdr && (zHdr>zEndHdr || offset64!=pC->payloadSize)) || (offset64 > pC->payloadSize) ){ if( aOffset[0]==0 ){ i = 0; zHdr = zEndHdr; }else{ if( pC->aRow==0 ) sqlite3VdbeMemRelease(&sMem); goto op_column_corrupt; } } pC->nHdrParsed = i; pC->iHdrOffset = (u32)(zHdr - zData); if( pC->aRow==0 ) sqlite3VdbeMemRelease(&sMem); }else{ t = 0; } /* If after trying to extract new entries from the header, nHdrParsed is ** still not up to p2, that means that the record has fewer than p2 ** columns. So the result will be either the default value or a NULL. */ if( pC->nHdrParsed<=p2 ){ if( pOp->p4type==P4_MEM ){ sqlite3VdbeMemShallowCopy(pDest, pOp->p4.pMem, MEM_Static); }else{ sqlite3VdbeMemSetNull(pDest); } goto op_column_out; } }else{ t = pC->aType[p2]; } /* Extract the content for the p2+1-th column. Control can only ** reach this point if aOffset[p2], aOffset[p2+1], and pC->aType[p2] are ** all valid. */ assert( p2nHdrParsed ); assert( rc==SQLITE_OK ); assert( sqlite3VdbeCheckMemInvariants(pDest) ); if( VdbeMemDynamic(pDest) ){ sqlite3VdbeMemSetNull(pDest); } assert( t==pC->aType[p2] ); if( pC->szRow>=aOffset[p2+1] ){ /* This is the common case where the desired content fits on the original ** page - where the content is not on an overflow page */ zData = pC->aRow + aOffset[p2]; if( t<12 ){ sqlite3VdbeSerialGet(zData, t, pDest); }else{ /* If the column value is a string, we need a persistent value, not ** a MEM_Ephem value. This branch is a fast short-cut that is equivalent ** to calling sqlite3VdbeSerialGet() and sqlite3VdbeDeephemeralize(). */ static const u16 aFlag[] = { MEM_Blob, MEM_Str|MEM_Term }; pDest->n = len = (t-12)/2; pDest->enc = encoding; if( pDest->szMalloc < len+2 ){ pDest->flags = MEM_Null; if( sqlite3VdbeMemGrow(pDest, len+2, 0) ) goto no_mem; }else{ pDest->z = pDest->zMalloc; } memcpy(pDest->z, zData, len); pDest->z[len] = 0; pDest->z[len+1] = 0; pDest->flags = aFlag[t&1]; } }else{ pDest->enc = encoding; /* This branch happens only when content is on overflow pages */ if( ((pOp->p5 & (OPFLAG_LENGTHARG|OPFLAG_TYPEOFARG))!=0 && ((t>=12 && (t&1)==0) || (pOp->p5 & OPFLAG_TYPEOFARG)!=0)) || (len = sqlite3VdbeSerialTypeLen(t))==0 ){ /* Content is irrelevant for ** 1. the typeof() function, ** 2. the length(X) function if X is a blob, and ** 3. if the content length is zero. ** So we might as well use bogus content rather than reading ** content from disk. ** ** Although sqlite3VdbeSerialGet() may read at most 8 bytes from the ** buffer passed to it, debugging function VdbeMemPrettyPrint() may ** read more. Use the global constant sqlite3CtypeMap[] as the array, ** as that array is 256 bytes long (plenty for VdbeMemPrettyPrint()) ** and it begins with a bunch of zeros. */ sqlite3VdbeSerialGet((u8*)sqlite3CtypeMap, t, pDest); }else{ rc = sqlite3VdbeMemFromBtree(pC->uc.pCursor, aOffset[p2], len, pDest); if( rc!=SQLITE_OK ) goto abort_due_to_error; sqlite3VdbeSerialGet((const u8*)pDest->z, t, pDest); pDest->flags &= ~MEM_Ephem; } } op_column_out: UPDATE_MAX_BLOBSIZE(pDest); REGISTER_TRACE(pOp->p3, pDest); break; op_column_corrupt: if( aOp[0].p3>0 ){ pOp = &aOp[aOp[0].p3-1]; break; }else{ rc = SQLITE_CORRUPT_BKPT; goto abort_due_to_error; } } /* Opcode: Affinity P1 P2 * P4 * ** Synopsis: affinity(r[P1@P2]) ** ** Apply affinities to a range of P2 registers starting with P1. ** ** P4 is a string that is P2 characters long. The N-th character of the ** string indicates the column affinity that should be used for the N-th ** memory cell in the range. */ case OP_Affinity: { const char *zAffinity; /* The affinity to be applied */ zAffinity = pOp->p4.z; assert( zAffinity!=0 ); assert( pOp->p2>0 ); assert( zAffinity[pOp->p2]==0 ); pIn1 = &aMem[pOp->p1]; while( 1 /*exit-by-break*/ ){ assert( pIn1 <= &p->aMem[(p->nMem+1 - p->nCursor)] ); assert( zAffinity[0]==SQLITE_AFF_NONE || memIsValid(pIn1) ); applyAffinity(pIn1, zAffinity[0], encoding); if( zAffinity[0]==SQLITE_AFF_REAL && (pIn1->flags & MEM_Int)!=0 ){ /* When applying REAL affinity, if the result is still an MEM_Int ** that will fit in 6 bytes, then change the type to MEM_IntReal ** so that we keep the high-resolution integer value but know that ** the type really wants to be REAL. */ testcase( pIn1->u.i==140737488355328LL ); testcase( pIn1->u.i==140737488355327LL ); testcase( pIn1->u.i==-140737488355328LL ); testcase( pIn1->u.i==-140737488355329LL ); if( pIn1->u.i<=140737488355327LL && pIn1->u.i>=-140737488355328LL ){ pIn1->flags |= MEM_IntReal; pIn1->flags &= ~MEM_Int; }else{ pIn1->u.r = (double)pIn1->u.i; pIn1->flags |= MEM_Real; pIn1->flags &= ~MEM_Int; } } REGISTER_TRACE((int)(pIn1-aMem), pIn1); zAffinity++; if( zAffinity[0]==0 ) break; pIn1++; } break; } /* Opcode: MakeRecord P1 P2 P3 P4 * ** Synopsis: r[P3]=mkrec(r[P1@P2]) ** ** Convert P2 registers beginning with P1 into the [record format] ** use as a data record in a database table or as a key ** in an index. The OP_Column opcode can decode the record later. ** ** P4 may be a string that is P2 characters long. The N-th character of the ** string indicates the column affinity that should be used for the N-th ** field of the index key. ** ** The mapping from character to affinity is given by the SQLITE_AFF_ ** macros defined in sqliteInt.h. ** ** If P4 is NULL then all index fields have the affinity BLOB. ** ** The meaning of P5 depends on whether or not the SQLITE_ENABLE_NULL_TRIM ** compile-time option is enabled: ** ** * If SQLITE_ENABLE_NULL_TRIM is enabled, then the P5 is the index ** of the right-most table that can be null-trimmed. ** ** * If SQLITE_ENABLE_NULL_TRIM is omitted, then P5 has the value ** OPFLAG_NOCHNG_MAGIC if the OP_MakeRecord opcode is allowed to ** accept no-change records with serial_type 10. This value is ** only used inside an assert() and does not affect the end result. */ case OP_MakeRecord: { Mem *pRec; /* The new record */ u64 nData; /* Number of bytes of data space */ int nHdr; /* Number of bytes of header space */ i64 nByte; /* Data space required for this record */ i64 nZero; /* Number of zero bytes at the end of the record */ int nVarint; /* Number of bytes in a varint */ u32 serial_type; /* Type field */ Mem *pData0; /* First field to be combined into the record */ Mem *pLast; /* Last field of the record */ int nField; /* Number of fields in the record */ char *zAffinity; /* The affinity string for the record */ int file_format; /* File format to use for encoding */ u32 len; /* Length of a field */ u8 *zHdr; /* Where to write next byte of the header */ u8 *zPayload; /* Where to write next byte of the payload */ /* Assuming the record contains N fields, the record format looks ** like this: ** ** ------------------------------------------------------------------------ ** | hdr-size | type 0 | type 1 | ... | type N-1 | data0 | ... | data N-1 | ** ------------------------------------------------------------------------ ** ** Data(0) is taken from register P1. Data(1) comes from register P1+1 ** and so forth. ** ** Each type field is a varint representing the serial type of the ** corresponding data element (see sqlite3VdbeSerialType()). The ** hdr-size field is also a varint which is the offset from the beginning ** of the record to data0. */ nData = 0; /* Number of bytes of data space */ nHdr = 0; /* Number of bytes of header space */ nZero = 0; /* Number of zero bytes at the end of the record */ nField = pOp->p1; zAffinity = pOp->p4.z; assert( nField>0 && pOp->p2>0 && pOp->p2+nField<=(p->nMem+1 - p->nCursor)+1 ); pData0 = &aMem[nField]; nField = pOp->p2; pLast = &pData0[nField-1]; file_format = p->minWriteFileFormat; /* Identify the output register */ assert( pOp->p3p1 || pOp->p3>=pOp->p1+pOp->p2 ); pOut = &aMem[pOp->p3]; memAboutToChange(p, pOut); /* Apply the requested affinity to all inputs */ assert( pData0<=pLast ); if( zAffinity ){ pRec = pData0; do{ applyAffinity(pRec, zAffinity[0], encoding); if( zAffinity[0]==SQLITE_AFF_REAL && (pRec->flags & MEM_Int) ){ pRec->flags |= MEM_IntReal; pRec->flags &= ~(MEM_Int); } REGISTER_TRACE((int)(pRec-aMem), pRec); zAffinity++; pRec++; assert( zAffinity[0]==0 || pRec<=pLast ); }while( zAffinity[0] ); } #ifdef SQLITE_ENABLE_NULL_TRIM /* NULLs can be safely trimmed from the end of the record, as long as ** as the schema format is 2 or more and none of the omitted columns ** have a non-NULL default value. Also, the record must be left with ** at least one field. If P5>0 then it will be one more than the ** index of the right-most column with a non-NULL default value */ if( pOp->p5 ){ while( (pLast->flags & MEM_Null)!=0 && nField>pOp->p5 ){ pLast--; nField--; } } #endif /* Loop through the elements that will make up the record to figure ** out how much space is required for the new record. After this loop, ** the Mem.uTemp field of each term should hold the serial-type that will ** be used for that term in the generated record: ** ** Mem.uTemp value type ** --------------- --------------- ** 0 NULL ** 1 1-byte signed integer ** 2 2-byte signed integer ** 3 3-byte signed integer ** 4 4-byte signed integer ** 5 6-byte signed integer ** 6 8-byte signed integer ** 7 IEEE float ** 8 Integer constant 0 ** 9 Integer constant 1 ** 10,11 reserved for expansion ** N>=12 and even BLOB ** N>=13 and odd text ** ** The following additional values are computed: ** nHdr Number of bytes needed for the record header ** nData Number of bytes of data space needed for the record ** nZero Zero bytes at the end of the record */ pRec = pLast; do{ assert( memIsValid(pRec) ); if( pRec->flags & MEM_Null ){ if( pRec->flags & MEM_Zero ){ /* Values with MEM_Null and MEM_Zero are created by xColumn virtual ** table methods that never invoke sqlite3_result_xxxxx() while ** computing an unchanging column value in an UPDATE statement. ** Give such values a special internal-use-only serial-type of 10 ** so that they can be passed through to xUpdate and have ** a true sqlite3_value_nochange(). */ #ifndef SQLITE_ENABLE_NULL_TRIM assert( pOp->p5==OPFLAG_NOCHNG_MAGIC || CORRUPT_DB ); #endif pRec->uTemp = 10; }else{ pRec->uTemp = 0; } nHdr++; }else if( pRec->flags & (MEM_Int|MEM_IntReal) ){ /* Figure out whether to use 1, 2, 4, 6 or 8 bytes. */ i64 i = pRec->u.i; u64 uu; testcase( pRec->flags & MEM_Int ); testcase( pRec->flags & MEM_IntReal ); if( i<0 ){ uu = ~i; }else{ uu = i; } nHdr++; testcase( uu==127 ); testcase( uu==128 ); testcase( uu==32767 ); testcase( uu==32768 ); testcase( uu==8388607 ); testcase( uu==8388608 ); testcase( uu==2147483647 ); testcase( uu==2147483648 ); testcase( uu==140737488355327LL ); testcase( uu==140737488355328LL ); if( uu<=127 ){ if( (i&1)==i && file_format>=4 ){ pRec->uTemp = 8+(u32)uu; }else{ nData++; pRec->uTemp = 1; } }else if( uu<=32767 ){ nData += 2; pRec->uTemp = 2; }else if( uu<=8388607 ){ nData += 3; pRec->uTemp = 3; }else if( uu<=2147483647 ){ nData += 4; pRec->uTemp = 4; }else if( uu<=140737488355327LL ){ nData += 6; pRec->uTemp = 5; }else{ nData += 8; if( pRec->flags & MEM_IntReal ){ /* If the value is IntReal and is going to take up 8 bytes to store ** as an integer, then we might as well make it an 8-byte floating ** point value */ pRec->u.r = (double)pRec->u.i; pRec->flags &= ~MEM_IntReal; pRec->flags |= MEM_Real; pRec->uTemp = 7; }else{ pRec->uTemp = 6; } } }else if( pRec->flags & MEM_Real ){ nHdr++; nData += 8; pRec->uTemp = 7; }else{ assert( db->mallocFailed || pRec->flags&(MEM_Str|MEM_Blob) ); assert( pRec->n>=0 ); len = (u32)pRec->n; serial_type = (len*2) + 12 + ((pRec->flags & MEM_Str)!=0); if( pRec->flags & MEM_Zero ){ serial_type += pRec->u.nZero*2; if( nData ){ if( sqlite3VdbeMemExpandBlob(pRec) ) goto no_mem; len += pRec->u.nZero; }else{ nZero += pRec->u.nZero; } } nData += len; nHdr += sqlite3VarintLen(serial_type); pRec->uTemp = serial_type; } if( pRec==pData0 ) break; pRec--; }while(1); /* EVIDENCE-OF: R-22564-11647 The header begins with a single varint ** which determines the total number of bytes in the header. The varint ** value is the size of the header in bytes including the size varint ** itself. */ testcase( nHdr==126 ); testcase( nHdr==127 ); if( nHdr<=126 ){ /* The common case */ nHdr += 1; }else{ /* Rare case of a really large header */ nVarint = sqlite3VarintLen(nHdr); nHdr += nVarint; if( nVarintp3) is not allowed to ** be one of the input registers (because the following call to ** sqlite3VdbeMemClearAndResize() could clobber the value before it is used). */ if( nByte+nZero<=pOut->szMalloc ){ /* The output register is already large enough to hold the record. ** No error checks or buffer enlargement is required */ pOut->z = pOut->zMalloc; }else{ /* Need to make sure that the output is not too big and then enlarge ** the output register to hold the full result */ if( nByte+nZero>db->aLimit[SQLITE_LIMIT_LENGTH] ){ goto too_big; } if( sqlite3VdbeMemClearAndResize(pOut, (int)nByte) ){ goto no_mem; } } pOut->n = (int)nByte; pOut->flags = MEM_Blob; if( nZero ){ pOut->u.nZero = nZero; pOut->flags |= MEM_Zero; } UPDATE_MAX_BLOBSIZE(pOut); zHdr = (u8 *)pOut->z; zPayload = zHdr + nHdr; /* Write the record */ zHdr += putVarint32(zHdr, nHdr); assert( pData0<=pLast ); pRec = pData0; do{ serial_type = pRec->uTemp; /* EVIDENCE-OF: R-06529-47362 Following the size varint are one or more ** additional varints, one per column. */ zHdr += putVarint32(zHdr, serial_type); /* serial type */ /* EVIDENCE-OF: R-64536-51728 The values for each column in the record ** immediately follow the header. */ zPayload += sqlite3VdbeSerialPut(zPayload, pRec, serial_type); /* content */ }while( (++pRec)<=pLast ); assert( nHdr==(int)(zHdr - (u8*)pOut->z) ); assert( nByte==(int)(zPayload - (u8*)pOut->z) ); assert( pOp->p3>0 && pOp->p3<=(p->nMem+1 - p->nCursor) ); REGISTER_TRACE(pOp->p3, pOut); break; } /* Opcode: Count P1 P2 p3 * * ** Synopsis: r[P2]=count() ** ** Store the number of entries (an integer value) in the table or index ** opened by cursor P1 in register P2. ** ** If P3==0, then an exact count is obtained, which involves visiting ** every btree page of the table. But if P3 is non-zero, an estimate ** is returned based on the current cursor position. */ case OP_Count: { /* out2 */ i64 nEntry; BtCursor *pCrsr; assert( p->apCsr[pOp->p1]->eCurType==CURTYPE_BTREE ); pCrsr = p->apCsr[pOp->p1]->uc.pCursor; assert( pCrsr ); if( pOp->p3 ){ nEntry = sqlite3BtreeRowCountEst(pCrsr); }else{ nEntry = 0; /* Not needed. Only used to silence a warning. */ rc = sqlite3BtreeCount(db, pCrsr, &nEntry); if( rc ) goto abort_due_to_error; } pOut = out2Prerelease(p, pOp); pOut->u.i = nEntry; goto check_for_interrupt; } /* Opcode: Savepoint P1 * * P4 * ** ** Open, release or rollback the savepoint named by parameter P4, depending ** on the value of P1. To open a new savepoint set P1==0 (SAVEPOINT_BEGIN). ** To release (commit) an existing savepoint set P1==1 (SAVEPOINT_RELEASE). ** To rollback an existing savepoint set P1==2 (SAVEPOINT_ROLLBACK). */ case OP_Savepoint: { int p1; /* Value of P1 operand */ char *zName; /* Name of savepoint */ int nName; Savepoint *pNew; Savepoint *pSavepoint; Savepoint *pTmp; int iSavepoint; int ii; p1 = pOp->p1; zName = pOp->p4.z; /* Assert that the p1 parameter is valid. Also that if there is no open ** transaction, then there cannot be any savepoints. */ assert( db->pSavepoint==0 || db->autoCommit==0 ); assert( p1==SAVEPOINT_BEGIN||p1==SAVEPOINT_RELEASE||p1==SAVEPOINT_ROLLBACK ); assert( db->pSavepoint || db->isTransactionSavepoint==0 ); assert( checkSavepointCount(db) ); assert( p->bIsReader ); if( p1==SAVEPOINT_BEGIN ){ if( db->nVdbeWrite>0 ){ /* A new savepoint cannot be created if there are active write ** statements (i.e. open read/write incremental blob handles). */ sqlite3VdbeError(p, "cannot open savepoint - SQL statements in progress"); rc = SQLITE_BUSY; }else{ nName = sqlite3Strlen30(zName); #ifndef SQLITE_OMIT_VIRTUALTABLE /* This call is Ok even if this savepoint is actually a transaction ** savepoint (and therefore should not prompt xSavepoint()) callbacks. ** If this is a transaction savepoint being opened, it is guaranteed ** that the db->aVTrans[] array is empty. */ assert( db->autoCommit==0 || db->nVTrans==0 ); rc = sqlite3VtabSavepoint(db, SAVEPOINT_BEGIN, db->nStatement+db->nSavepoint); if( rc!=SQLITE_OK ) goto abort_due_to_error; #endif /* Create a new savepoint structure. */ pNew = sqlite3DbMallocRawNN(db, sizeof(Savepoint)+nName+1); if( pNew ){ pNew->zName = (char *)&pNew[1]; memcpy(pNew->zName, zName, nName+1); /* If there is no open transaction, then mark this as a special ** "transaction savepoint". */ if( db->autoCommit ){ db->autoCommit = 0; db->isTransactionSavepoint = 1; }else{ db->nSavepoint++; } /* Link the new savepoint into the database handle's list. */ pNew->pNext = db->pSavepoint; db->pSavepoint = pNew; pNew->nDeferredCons = db->nDeferredCons; pNew->nDeferredImmCons = db->nDeferredImmCons; } } }else{ assert( p1==SAVEPOINT_RELEASE || p1==SAVEPOINT_ROLLBACK ); iSavepoint = 0; /* Find the named savepoint. If there is no such savepoint, then an ** an error is returned to the user. */ for( pSavepoint = db->pSavepoint; pSavepoint && sqlite3StrICmp(pSavepoint->zName, zName); pSavepoint = pSavepoint->pNext ){ iSavepoint++; } if( !pSavepoint ){ sqlite3VdbeError(p, "no such savepoint: %s", zName); rc = SQLITE_ERROR; }else if( db->nVdbeWrite>0 && p1==SAVEPOINT_RELEASE ){ /* It is not possible to release (commit) a savepoint if there are ** active write statements. */ sqlite3VdbeError(p, "cannot release savepoint - " "SQL statements in progress"); rc = SQLITE_BUSY; }else{ /* Determine whether or not this is a transaction savepoint. If so, ** and this is a RELEASE command, then the current transaction ** is committed. */ int isTransaction = pSavepoint->pNext==0 && db->isTransactionSavepoint; if( isTransaction && p1==SAVEPOINT_RELEASE ){ if( (rc = sqlite3VdbeCheckFk(p, 1))!=SQLITE_OK ){ goto vdbe_return; } db->autoCommit = 1; if( sqlite3VdbeHalt(p)==SQLITE_BUSY ){ p->pc = (int)(pOp - aOp); db->autoCommit = 0; p->rc = rc = SQLITE_BUSY; goto vdbe_return; } rc = p->rc; if( rc ){ db->autoCommit = 0; }else{ db->isTransactionSavepoint = 0; } }else{ int isSchemaChange; iSavepoint = db->nSavepoint - iSavepoint - 1; if( p1==SAVEPOINT_ROLLBACK ){ isSchemaChange = (db->mDbFlags & DBFLAG_SchemaChange)!=0; for(ii=0; iinDb; ii++){ rc = sqlite3BtreeTripAllCursors(db->aDb[ii].pBt, SQLITE_ABORT_ROLLBACK, isSchemaChange==0); if( rc!=SQLITE_OK ) goto abort_due_to_error; } }else{ assert( p1==SAVEPOINT_RELEASE ); isSchemaChange = 0; } for(ii=0; iinDb; ii++){ rc = sqlite3BtreeSavepoint(db->aDb[ii].pBt, p1, iSavepoint); if( rc!=SQLITE_OK ){ goto abort_due_to_error; } } if( isSchemaChange ){ sqlite3ExpirePreparedStatements(db, 0); sqlite3ResetAllSchemasOfConnection(db); db->mDbFlags |= DBFLAG_SchemaChange; } } if( rc ) goto abort_due_to_error; /* Regardless of whether this is a RELEASE or ROLLBACK, destroy all ** savepoints nested inside of the savepoint being operated on. */ while( db->pSavepoint!=pSavepoint ){ pTmp = db->pSavepoint; db->pSavepoint = pTmp->pNext; sqlite3DbFree(db, pTmp); db->nSavepoint--; } /* If it is a RELEASE, then destroy the savepoint being operated on ** too. If it is a ROLLBACK TO, then set the number of deferred ** constraint violations present in the database to the value stored ** when the savepoint was created. */ if( p1==SAVEPOINT_RELEASE ){ assert( pSavepoint==db->pSavepoint ); db->pSavepoint = pSavepoint->pNext; sqlite3DbFree(db, pSavepoint); if( !isTransaction ){ db->nSavepoint--; } }else{ assert( p1==SAVEPOINT_ROLLBACK ); db->nDeferredCons = pSavepoint->nDeferredCons; db->nDeferredImmCons = pSavepoint->nDeferredImmCons; } if( !isTransaction || p1==SAVEPOINT_ROLLBACK ){ rc = sqlite3VtabSavepoint(db, p1, iSavepoint); if( rc!=SQLITE_OK ) goto abort_due_to_error; } } } if( rc ) goto abort_due_to_error; break; } /* Opcode: AutoCommit P1 P2 * * * ** ** Set the database auto-commit flag to P1 (1 or 0). If P2 is true, roll ** back any currently active btree transactions. If there are any active ** VMs (apart from this one), then a ROLLBACK fails. A COMMIT fails if ** there are active writing VMs or active VMs that use shared cache. ** ** This instruction causes the VM to halt. */ case OP_AutoCommit: { int desiredAutoCommit; int iRollback; desiredAutoCommit = pOp->p1; iRollback = pOp->p2; assert( desiredAutoCommit==1 || desiredAutoCommit==0 ); assert( desiredAutoCommit==1 || iRollback==0 ); assert( db->nVdbeActive>0 ); /* At least this one VM is active */ assert( p->bIsReader ); if( desiredAutoCommit!=db->autoCommit ){ if( iRollback ){ assert( desiredAutoCommit==1 ); sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK); db->autoCommit = 1; }else if( desiredAutoCommit && db->nVdbeWrite>0 ){ /* If this instruction implements a COMMIT and other VMs are writing ** return an error indicating that the other VMs must complete first. */ sqlite3VdbeError(p, "cannot commit transaction - " "SQL statements in progress"); rc = SQLITE_BUSY; goto abort_due_to_error; }else if( (rc = sqlite3VdbeCheckFk(p, 1))!=SQLITE_OK ){ goto vdbe_return; }else{ db->autoCommit = (u8)desiredAutoCommit; } if( sqlite3VdbeHalt(p)==SQLITE_BUSY ){ p->pc = (int)(pOp - aOp); db->autoCommit = (u8)(1-desiredAutoCommit); p->rc = rc = SQLITE_BUSY; goto vdbe_return; } sqlite3CloseSavepoints(db); if( p->rc==SQLITE_OK ){ rc = SQLITE_DONE; }else{ rc = SQLITE_ERROR; } goto vdbe_return; }else{ sqlite3VdbeError(p, (!desiredAutoCommit)?"cannot start a transaction within a transaction":( (iRollback)?"cannot rollback - no transaction is active": "cannot commit - no transaction is active")); rc = SQLITE_ERROR; goto abort_due_to_error; } /*NOTREACHED*/ assert(0); } /* Opcode: Transaction P1 P2 P3 P4 P5 ** ** Begin a transaction on database P1 if a transaction is not already ** active. ** If P2 is non-zero, then a write-transaction is started, or if a ** read-transaction is already active, it is upgraded to a write-transaction. ** If P2 is zero, then a read-transaction is started. ** ** P1 is the index of the database file on which the transaction is ** started. Index 0 is the main database file and index 1 is the ** file used for temporary tables. Indices of 2 or more are used for ** attached databases. ** ** If a write-transaction is started and the Vdbe.usesStmtJournal flag is ** true (this flag is set if the Vdbe may modify more than one row and may ** throw an ABORT exception), a statement transaction may also be opened. ** More specifically, a statement transaction is opened iff the database ** connection is currently not in autocommit mode, or if there are other ** active statements. A statement transaction allows the changes made by this ** VDBE to be rolled back after an error without having to roll back the ** entire transaction. If no error is encountered, the statement transaction ** will automatically commit when the VDBE halts. ** ** If P5!=0 then this opcode also checks the schema cookie against P3 ** and the schema generation counter against P4. ** The cookie changes its value whenever the database schema changes. ** This operation is used to detect when that the cookie has changed ** and that the current process needs to reread the schema. If the schema ** cookie in P3 differs from the schema cookie in the database header or ** if the schema generation counter in P4 differs from the current ** generation counter, then an SQLITE_SCHEMA error is raised and execution ** halts. The sqlite3_step() wrapper function might then reprepare the ** statement and rerun it from the beginning. */ case OP_Transaction: { Btree *pBt; int iMeta = 0; assert( p->bIsReader ); assert( p->readOnly==0 || pOp->p2==0 ); assert( pOp->p1>=0 && pOp->p1nDb ); assert( DbMaskTest(p->btreeMask, pOp->p1) ); if( pOp->p2 && (db->flags & SQLITE_QueryOnly)!=0 ){ rc = SQLITE_READONLY; goto abort_due_to_error; } pBt = db->aDb[pOp->p1].pBt; if( pBt ){ rc = sqlite3BtreeBeginTrans(pBt, pOp->p2, &iMeta); testcase( rc==SQLITE_BUSY_SNAPSHOT ); testcase( rc==SQLITE_BUSY_RECOVERY ); if( rc!=SQLITE_OK ){ if( (rc&0xff)==SQLITE_BUSY ){ p->pc = (int)(pOp - aOp); p->rc = rc; goto vdbe_return; } goto abort_due_to_error; } if( p->usesStmtJournal && pOp->p2 && (db->autoCommit==0 || db->nVdbeRead>1) ){ assert( sqlite3BtreeIsInTrans(pBt) ); if( p->iStatement==0 ){ assert( db->nStatement>=0 && db->nSavepoint>=0 ); db->nStatement++; p->iStatement = db->nSavepoint + db->nStatement; } rc = sqlite3VtabSavepoint(db, SAVEPOINT_BEGIN, p->iStatement-1); if( rc==SQLITE_OK ){ rc = sqlite3BtreeBeginStmt(pBt, p->iStatement); } /* Store the current value of the database handles deferred constraint ** counter. If the statement transaction needs to be rolled back, ** the value of this counter needs to be restored too. */ p->nStmtDefCons = db->nDeferredCons; p->nStmtDefImmCons = db->nDeferredImmCons; } } assert( pOp->p5==0 || pOp->p4type==P4_INT32 ); if( pOp->p5 && (iMeta!=pOp->p3 || db->aDb[pOp->p1].pSchema->iGeneration!=pOp->p4.i) ){ /* ** IMPLEMENTATION-OF: R-03189-51135 As each SQL statement runs, the schema ** version is checked to ensure that the schema has not changed since the ** SQL statement was prepared. */ sqlite3DbFree(db, p->zErrMsg); p->zErrMsg = sqlite3DbStrDup(db, "database schema has changed"); /* If the schema-cookie from the database file matches the cookie ** stored with the in-memory representation of the schema, do ** not reload the schema from the database file. ** ** If virtual-tables are in use, this is not just an optimization. ** Often, v-tables store their data in other SQLite tables, which ** are queried from within xNext() and other v-table methods using ** prepared queries. If such a query is out-of-date, we do not want to ** discard the database schema, as the user code implementing the ** v-table would have to be ready for the sqlite3_vtab structure itself ** to be invalidated whenever sqlite3_step() is called from within ** a v-table method. */ if( db->aDb[pOp->p1].pSchema->schema_cookie!=iMeta ){ sqlite3ResetOneSchema(db, pOp->p1); } p->expired = 1; rc = SQLITE_SCHEMA; } if( rc ) goto abort_due_to_error; break; } /* Opcode: ReadCookie P1 P2 P3 * * ** ** Read cookie number P3 from database P1 and write it into register P2. ** P3==1 is the schema version. P3==2 is the database format. ** P3==3 is the recommended pager cache size, and so forth. P1==0 is ** the main database file and P1==1 is the database file used to store ** temporary tables. ** ** There must be a read-lock on the database (either a transaction ** must be started or there must be an open cursor) before ** executing this instruction. */ case OP_ReadCookie: { /* out2 */ int iMeta; int iDb; int iCookie; assert( p->bIsReader ); iDb = pOp->p1; iCookie = pOp->p3; assert( pOp->p3=0 && iDbnDb ); assert( db->aDb[iDb].pBt!=0 ); assert( DbMaskTest(p->btreeMask, iDb) ); sqlite3BtreeGetMeta(db->aDb[iDb].pBt, iCookie, (u32 *)&iMeta); pOut = out2Prerelease(p, pOp); pOut->u.i = iMeta; break; } /* Opcode: SetCookie P1 P2 P3 * P5 ** ** Write the integer value P3 into cookie number P2 of database P1. ** P2==1 is the schema version. P2==2 is the database format. ** P2==3 is the recommended pager cache ** size, and so forth. P1==0 is the main database file and P1==1 is the ** database file used to store temporary tables. ** ** A transaction must be started before executing this opcode. ** ** If P2 is the SCHEMA_VERSION cookie (cookie number 1) then the internal ** schema version is set to P3-P5. The "PRAGMA schema_version=N" statement ** has P5 set to 1, so that the internal schema version will be different ** from the database schema version, resulting in a schema reset. */ case OP_SetCookie: { Db *pDb; sqlite3VdbeIncrWriteCounter(p, 0); assert( pOp->p2p1>=0 && pOp->p1nDb ); assert( DbMaskTest(p->btreeMask, pOp->p1) ); assert( p->readOnly==0 ); pDb = &db->aDb[pOp->p1]; assert( pDb->pBt!=0 ); assert( sqlite3SchemaMutexHeld(db, pOp->p1, 0) ); /* See note about index shifting on OP_ReadCookie */ rc = sqlite3BtreeUpdateMeta(pDb->pBt, pOp->p2, pOp->p3); if( pOp->p2==BTREE_SCHEMA_VERSION ){ /* When the schema cookie changes, record the new cookie internally */ pDb->pSchema->schema_cookie = pOp->p3 - pOp->p5; db->mDbFlags |= DBFLAG_SchemaChange; }else if( pOp->p2==BTREE_FILE_FORMAT ){ /* Record changes in the file format */ pDb->pSchema->file_format = pOp->p3; } if( pOp->p1==1 ){ /* Invalidate all prepared statements whenever the TEMP database ** schema is changed. Ticket #1644 */ sqlite3ExpirePreparedStatements(db, 0); p->expired = 0; } if( rc ) goto abort_due_to_error; break; } /* Opcode: OpenRead P1 P2 P3 P4 P5 ** Synopsis: root=P2 iDb=P3 ** ** Open a read-only cursor for the database table whose root page is ** P2 in a database file. The database file is determined by P3. ** P3==0 means the main database, P3==1 means the database used for ** temporary tables, and P3>1 means used the corresponding attached ** database. Give the new cursor an identifier of P1. The P1 ** values need not be contiguous but all P1 values should be small integers. ** It is an error for P1 to be negative. ** ** Allowed P5 bits: **
      **
    • 0x02 OPFLAG_SEEKEQ: This cursor will only be used for ** equality lookups (implemented as a pair of opcodes OP_SeekGE/OP_IdxGT ** of OP_SeekLE/OP_IdxLT) **
    ** ** The P4 value may be either an integer (P4_INT32) or a pointer to ** a KeyInfo structure (P4_KEYINFO). If it is a pointer to a KeyInfo ** object, then table being opened must be an [index b-tree] where the ** KeyInfo object defines the content and collating ** sequence of that index b-tree. Otherwise, if P4 is an integer ** value, then the table being opened must be a [table b-tree] with a ** number of columns no less than the value of P4. ** ** See also: OpenWrite, ReopenIdx */ /* Opcode: ReopenIdx P1 P2 P3 P4 P5 ** Synopsis: root=P2 iDb=P3 ** ** The ReopenIdx opcode works like OP_OpenRead except that it first ** checks to see if the cursor on P1 is already open on the same ** b-tree and if it is this opcode becomes a no-op. In other words, ** if the cursor is already open, do not reopen it. ** ** The ReopenIdx opcode may only be used with P5==0 or P5==OPFLAG_SEEKEQ ** and with P4 being a P4_KEYINFO object. Furthermore, the P3 value must ** be the same as every other ReopenIdx or OpenRead for the same cursor ** number. ** ** Allowed P5 bits: **
      **
    • 0x02 OPFLAG_SEEKEQ: This cursor will only be used for ** equality lookups (implemented as a pair of opcodes OP_SeekGE/OP_IdxGT ** of OP_SeekLE/OP_IdxLT) **
    ** ** See also: OP_OpenRead, OP_OpenWrite */ /* Opcode: OpenWrite P1 P2 P3 P4 P5 ** Synopsis: root=P2 iDb=P3 ** ** Open a read/write cursor named P1 on the table or index whose root ** page is P2 (or whose root page is held in register P2 if the ** OPFLAG_P2ISREG bit is set in P5 - see below). ** ** The P4 value may be either an integer (P4_INT32) or a pointer to ** a KeyInfo structure (P4_KEYINFO). If it is a pointer to a KeyInfo ** object, then table being opened must be an [index b-tree] where the ** KeyInfo object defines the content and collating ** sequence of that index b-tree. Otherwise, if P4 is an integer ** value, then the table being opened must be a [table b-tree] with a ** number of columns no less than the value of P4. ** ** Allowed P5 bits: **
      **
    • 0x02 OPFLAG_SEEKEQ: This cursor will only be used for ** equality lookups (implemented as a pair of opcodes OP_SeekGE/OP_IdxGT ** of OP_SeekLE/OP_IdxLT) **
    • 0x08 OPFLAG_FORDELETE: This cursor is used only to seek ** and subsequently delete entries in an index btree. This is a ** hint to the storage engine that the storage engine is allowed to ** ignore. The hint is not used by the official SQLite b*tree storage ** engine, but is used by COMDB2. **
    • 0x10 OPFLAG_P2ISREG: Use the content of register P2 ** as the root page, not the value of P2 itself. **
    ** ** This instruction works like OpenRead except that it opens the cursor ** in read/write mode. ** ** See also: OP_OpenRead, OP_ReopenIdx */ case OP_ReopenIdx: { int nField; KeyInfo *pKeyInfo; u32 p2; int iDb; int wrFlag; Btree *pX; VdbeCursor *pCur; Db *pDb; assert( pOp->p5==0 || pOp->p5==OPFLAG_SEEKEQ ); assert( pOp->p4type==P4_KEYINFO ); pCur = p->apCsr[pOp->p1]; if( pCur && pCur->pgnoRoot==(u32)pOp->p2 ){ assert( pCur->iDb==pOp->p3 ); /* Guaranteed by the code generator */ goto open_cursor_set_hints; } /* If the cursor is not currently open or is open on a different ** index, then fall through into OP_OpenRead to force a reopen */ case OP_OpenRead: case OP_OpenWrite: assert( pOp->opcode==OP_OpenWrite || pOp->p5==0 || pOp->p5==OPFLAG_SEEKEQ ); assert( p->bIsReader ); assert( pOp->opcode==OP_OpenRead || pOp->opcode==OP_ReopenIdx || p->readOnly==0 ); if( p->expired==1 ){ rc = SQLITE_ABORT_ROLLBACK; goto abort_due_to_error; } nField = 0; pKeyInfo = 0; p2 = (u32)pOp->p2; iDb = pOp->p3; assert( iDb>=0 && iDbnDb ); assert( DbMaskTest(p->btreeMask, iDb) ); pDb = &db->aDb[iDb]; pX = pDb->pBt; assert( pX!=0 ); if( pOp->opcode==OP_OpenWrite ){ assert( OPFLAG_FORDELETE==BTREE_FORDELETE ); wrFlag = BTREE_WRCSR | (pOp->p5 & OPFLAG_FORDELETE); assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( pDb->pSchema->file_format < p->minWriteFileFormat ){ p->minWriteFileFormat = pDb->pSchema->file_format; } }else{ wrFlag = 0; } if( pOp->p5 & OPFLAG_P2ISREG ){ assert( p2>0 ); assert( p2<=(u32)(p->nMem+1 - p->nCursor) ); assert( pOp->opcode==OP_OpenWrite ); pIn2 = &aMem[p2]; assert( memIsValid(pIn2) ); assert( (pIn2->flags & MEM_Int)!=0 ); sqlite3VdbeMemIntegerify(pIn2); p2 = (int)pIn2->u.i; /* The p2 value always comes from a prior OP_CreateBtree opcode and ** that opcode will always set the p2 value to 2 or more or else fail. ** If there were a failure, the prepared statement would have halted ** before reaching this instruction. */ assert( p2>=2 ); } if( pOp->p4type==P4_KEYINFO ){ pKeyInfo = pOp->p4.pKeyInfo; assert( pKeyInfo->enc==ENC(db) ); assert( pKeyInfo->db==db ); nField = pKeyInfo->nAllField; }else if( pOp->p4type==P4_INT32 ){ nField = pOp->p4.i; } assert( pOp->p1>=0 ); assert( nField>=0 ); testcase( nField==0 ); /* Table with INTEGER PRIMARY KEY and nothing else */ pCur = allocateCursor(p, pOp->p1, nField, iDb, CURTYPE_BTREE); if( pCur==0 ) goto no_mem; pCur->nullRow = 1; pCur->isOrdered = 1; pCur->pgnoRoot = p2; #ifdef SQLITE_DEBUG pCur->wrFlag = wrFlag; #endif rc = sqlite3BtreeCursor(pX, p2, wrFlag, pKeyInfo, pCur->uc.pCursor); pCur->pKeyInfo = pKeyInfo; /* Set the VdbeCursor.isTable variable. Previous versions of ** SQLite used to check if the root-page flags were sane at this point ** and report database corruption if they were not, but this check has ** since moved into the btree layer. */ pCur->isTable = pOp->p4type!=P4_KEYINFO; open_cursor_set_hints: assert( OPFLAG_BULKCSR==BTREE_BULKLOAD ); assert( OPFLAG_SEEKEQ==BTREE_SEEK_EQ ); testcase( pOp->p5 & OPFLAG_BULKCSR ); testcase( pOp->p2 & OPFLAG_SEEKEQ ); sqlite3BtreeCursorHintFlags(pCur->uc.pCursor, (pOp->p5 & (OPFLAG_BULKCSR|OPFLAG_SEEKEQ))); if( rc ) goto abort_due_to_error; break; } /* Opcode: OpenDup P1 P2 * * * ** ** Open a new cursor P1 that points to the same ephemeral table as ** cursor P2. The P2 cursor must have been opened by a prior OP_OpenEphemeral ** opcode. Only ephemeral cursors may be duplicated. ** ** Duplicate ephemeral cursors are used for self-joins of materialized views. */ case OP_OpenDup: { VdbeCursor *pOrig; /* The original cursor to be duplicated */ VdbeCursor *pCx; /* The new cursor */ pOrig = p->apCsr[pOp->p2]; assert( pOrig ); assert( pOrig->pBtx!=0 ); /* Only ephemeral cursors can be duplicated */ pCx = allocateCursor(p, pOp->p1, pOrig->nField, -1, CURTYPE_BTREE); if( pCx==0 ) goto no_mem; pCx->nullRow = 1; pCx->isEphemeral = 1; pCx->pKeyInfo = pOrig->pKeyInfo; pCx->isTable = pOrig->isTable; pCx->pgnoRoot = pOrig->pgnoRoot; pCx->isOrdered = pOrig->isOrdered; rc = sqlite3BtreeCursor(pOrig->pBtx, pCx->pgnoRoot, BTREE_WRCSR, pCx->pKeyInfo, pCx->uc.pCursor); /* The sqlite3BtreeCursor() routine can only fail for the first cursor ** opened for a database. Since there is already an open cursor when this ** opcode is run, the sqlite3BtreeCursor() cannot fail */ assert( rc==SQLITE_OK ); break; } /* Opcode: OpenEphemeral P1 P2 * P4 P5 ** Synopsis: nColumn=P2 ** ** Open a new cursor P1 to a transient table. ** The cursor is always opened read/write even if ** the main database is read-only. The ephemeral ** table is deleted automatically when the cursor is closed. ** ** If the cursor P1 is already opened on an ephemeral table, the table ** is cleared (all content is erased). ** ** P2 is the number of columns in the ephemeral table. ** The cursor points to a BTree table if P4==0 and to a BTree index ** if P4 is not 0. If P4 is not NULL, it points to a KeyInfo structure ** that defines the format of keys in the index. ** ** The P5 parameter can be a mask of the BTREE_* flags defined ** in btree.h. These flags control aspects of the operation of ** the btree. The BTREE_OMIT_JOURNAL and BTREE_SINGLE flags are ** added automatically. */ /* Opcode: OpenAutoindex P1 P2 * P4 * ** Synopsis: nColumn=P2 ** ** This opcode works the same as OP_OpenEphemeral. It has a ** different name to distinguish its use. Tables created using ** by this opcode will be used for automatically created transient ** indices in joins. */ case OP_OpenAutoindex: case OP_OpenEphemeral: { VdbeCursor *pCx; KeyInfo *pKeyInfo; static const int vfsFlags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE | SQLITE_OPEN_TRANSIENT_DB; assert( pOp->p1>=0 ); assert( pOp->p2>=0 ); pCx = p->apCsr[pOp->p1]; if( pCx && pCx->pBtx ){ /* If the ephermeral table is already open, erase all existing content ** so that the table is empty again, rather than creating a new table. */ assert( pCx->isEphemeral ); pCx->seqCount = 0; pCx->cacheStatus = CACHE_STALE; rc = sqlite3BtreeClearTable(pCx->pBtx, pCx->pgnoRoot, 0); }else{ pCx = allocateCursor(p, pOp->p1, pOp->p2, -1, CURTYPE_BTREE); if( pCx==0 ) goto no_mem; pCx->isEphemeral = 1; rc = sqlite3BtreeOpen(db->pVfs, 0, db, &pCx->pBtx, BTREE_OMIT_JOURNAL | BTREE_SINGLE | pOp->p5, vfsFlags); if( rc==SQLITE_OK ){ rc = sqlite3BtreeBeginTrans(pCx->pBtx, 1, 0); } if( rc==SQLITE_OK ){ /* If a transient index is required, create it by calling ** sqlite3BtreeCreateTable() with the BTREE_BLOBKEY flag before ** opening it. If a transient table is required, just use the ** automatically created table with root-page 1 (an BLOB_INTKEY table). */ if( (pCx->pKeyInfo = pKeyInfo = pOp->p4.pKeyInfo)!=0 ){ assert( pOp->p4type==P4_KEYINFO ); rc = sqlite3BtreeCreateTable(pCx->pBtx, &pCx->pgnoRoot, BTREE_BLOBKEY | pOp->p5); if( rc==SQLITE_OK ){ assert( pCx->pgnoRoot==SCHEMA_ROOT+1 ); assert( pKeyInfo->db==db ); assert( pKeyInfo->enc==ENC(db) ); rc = sqlite3BtreeCursor(pCx->pBtx, pCx->pgnoRoot, BTREE_WRCSR, pKeyInfo, pCx->uc.pCursor); } pCx->isTable = 0; }else{ pCx->pgnoRoot = SCHEMA_ROOT; rc = sqlite3BtreeCursor(pCx->pBtx, SCHEMA_ROOT, BTREE_WRCSR, 0, pCx->uc.pCursor); pCx->isTable = 1; } } pCx->isOrdered = (pOp->p5!=BTREE_UNORDERED); } if( rc ) goto abort_due_to_error; pCx->nullRow = 1; break; } /* Opcode: SorterOpen P1 P2 P3 P4 * ** ** This opcode works like OP_OpenEphemeral except that it opens ** a transient index that is specifically designed to sort large ** tables using an external merge-sort algorithm. ** ** If argument P3 is non-zero, then it indicates that the sorter may ** assume that a stable sort considering the first P3 fields of each ** key is sufficient to produce the required results. */ case OP_SorterOpen: { VdbeCursor *pCx; assert( pOp->p1>=0 ); assert( pOp->p2>=0 ); pCx = allocateCursor(p, pOp->p1, pOp->p2, -1, CURTYPE_SORTER); if( pCx==0 ) goto no_mem; pCx->pKeyInfo = pOp->p4.pKeyInfo; assert( pCx->pKeyInfo->db==db ); assert( pCx->pKeyInfo->enc==ENC(db) ); rc = sqlite3VdbeSorterInit(db, pOp->p3, pCx); if( rc ) goto abort_due_to_error; break; } /* Opcode: SequenceTest P1 P2 * * * ** Synopsis: if( cursor[P1].ctr++ ) pc = P2 ** ** P1 is a sorter cursor. If the sequence counter is currently zero, jump ** to P2. Regardless of whether or not the jump is taken, increment the ** the sequence value. */ case OP_SequenceTest: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( isSorter(pC) ); if( (pC->seqCount++)==0 ){ goto jump_to_p2; } break; } /* Opcode: OpenPseudo P1 P2 P3 * * ** Synopsis: P3 columns in r[P2] ** ** Open a new cursor that points to a fake table that contains a single ** row of data. The content of that one row is the content of memory ** register P2. In other words, cursor P1 becomes an alias for the ** MEM_Blob content contained in register P2. ** ** A pseudo-table created by this opcode is used to hold a single ** row output from the sorter so that the row can be decomposed into ** individual columns using the OP_Column opcode. The OP_Column opcode ** is the only cursor opcode that works with a pseudo-table. ** ** P3 is the number of fields in the records that will be stored by ** the pseudo-table. */ case OP_OpenPseudo: { VdbeCursor *pCx; assert( pOp->p1>=0 ); assert( pOp->p3>=0 ); pCx = allocateCursor(p, pOp->p1, pOp->p3, -1, CURTYPE_PSEUDO); if( pCx==0 ) goto no_mem; pCx->nullRow = 1; pCx->seekResult = pOp->p2; pCx->isTable = 1; /* Give this pseudo-cursor a fake BtCursor pointer so that pCx ** can be safely passed to sqlite3VdbeCursorMoveto(). This avoids a test ** for pCx->eCurType==CURTYPE_BTREE inside of sqlite3VdbeCursorMoveto() ** which is a performance optimization */ pCx->uc.pCursor = sqlite3BtreeFakeValidCursor(); assert( pOp->p5==0 ); break; } /* Opcode: Close P1 * * * * ** ** Close a cursor previously opened as P1. If P1 is not ** currently open, this instruction is a no-op. */ case OP_Close: { assert( pOp->p1>=0 && pOp->p1nCursor ); sqlite3VdbeFreeCursor(p, p->apCsr[pOp->p1]); p->apCsr[pOp->p1] = 0; break; } #ifdef SQLITE_ENABLE_COLUMN_USED_MASK /* Opcode: ColumnsUsed P1 * * P4 * ** ** This opcode (which only exists if SQLite was compiled with ** SQLITE_ENABLE_COLUMN_USED_MASK) identifies which columns of the ** table or index for cursor P1 are used. P4 is a 64-bit integer ** (P4_INT64) in which the first 63 bits are one for each of the ** first 63 columns of the table or index that are actually used ** by the cursor. The high-order bit is set if any column after ** the 64th is used. */ case OP_ColumnsUsed: { VdbeCursor *pC; pC = p->apCsr[pOp->p1]; assert( pC->eCurType==CURTYPE_BTREE ); pC->maskUsed = *(u64*)pOp->p4.pI64; break; } #endif /* Opcode: SeekGE P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), ** use the value in register P3 as the key. If cursor P1 refers ** to an SQL index, then P3 is the first in an array of P4 registers ** that are used as an unpacked index key. ** ** Reposition cursor P1 so that it points to the smallest entry that ** is greater than or equal to the key value. If there are no records ** greater than or equal to the key and P2 is not zero, then jump to P2. ** ** If the cursor P1 was opened using the OPFLAG_SEEKEQ flag, then this ** opcode will either land on a record that exactly matches the key, or ** else it will cause a jump to P2. When the cursor is OPFLAG_SEEKEQ, ** this opcode must be followed by an IdxLE opcode with the same arguments. ** The IdxGT opcode will be skipped if this opcode succeeds, but the ** IdxGT opcode will be used on subsequent loop iterations. The ** OPFLAG_SEEKEQ flags is a hint to the btree layer to say that this ** is an equality search. ** ** This opcode leaves the cursor configured to move in forward order, ** from the beginning toward the end. In other words, the cursor is ** configured to use Next, not Prev. ** ** See also: Found, NotFound, SeekLt, SeekGt, SeekLe */ /* Opcode: SeekGT P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), ** use the value in register P3 as a key. If cursor P1 refers ** to an SQL index, then P3 is the first in an array of P4 registers ** that are used as an unpacked index key. ** ** Reposition cursor P1 so that it points to the smallest entry that ** is greater than the key value. If there are no records greater than ** the key and P2 is not zero, then jump to P2. ** ** This opcode leaves the cursor configured to move in forward order, ** from the beginning toward the end. In other words, the cursor is ** configured to use Next, not Prev. ** ** See also: Found, NotFound, SeekLt, SeekGe, SeekLe */ /* Opcode: SeekLT P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), ** use the value in register P3 as a key. If cursor P1 refers ** to an SQL index, then P3 is the first in an array of P4 registers ** that are used as an unpacked index key. ** ** Reposition cursor P1 so that it points to the largest entry that ** is less than the key value. If there are no records less than ** the key and P2 is not zero, then jump to P2. ** ** This opcode leaves the cursor configured to move in reverse order, ** from the end toward the beginning. In other words, the cursor is ** configured to use Prev, not Next. ** ** See also: Found, NotFound, SeekGt, SeekGe, SeekLe */ /* Opcode: SeekLE P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If cursor P1 refers to an SQL table (B-Tree that uses integer keys), ** use the value in register P3 as a key. If cursor P1 refers ** to an SQL index, then P3 is the first in an array of P4 registers ** that are used as an unpacked index key. ** ** Reposition cursor P1 so that it points to the largest entry that ** is less than or equal to the key value. If there are no records ** less than or equal to the key and P2 is not zero, then jump to P2. ** ** This opcode leaves the cursor configured to move in reverse order, ** from the end toward the beginning. In other words, the cursor is ** configured to use Prev, not Next. ** ** If the cursor P1 was opened using the OPFLAG_SEEKEQ flag, then this ** opcode will either land on a record that exactly matches the key, or ** else it will cause a jump to P2. When the cursor is OPFLAG_SEEKEQ, ** this opcode must be followed by an IdxLE opcode with the same arguments. ** The IdxGE opcode will be skipped if this opcode succeeds, but the ** IdxGE opcode will be used on subsequent loop iterations. The ** OPFLAG_SEEKEQ flags is a hint to the btree layer to say that this ** is an equality search. ** ** See also: Found, NotFound, SeekGt, SeekGe, SeekLt */ case OP_SeekLT: /* jump, in3, group */ case OP_SeekLE: /* jump, in3, group */ case OP_SeekGE: /* jump, in3, group */ case OP_SeekGT: { /* jump, in3, group */ int res; /* Comparison result */ int oc; /* Opcode */ VdbeCursor *pC; /* The cursor to seek */ UnpackedRecord r; /* The key to seek for */ int nField; /* Number of columns or fields in the key */ i64 iKey; /* The rowid we are to seek to */ int eqOnly; /* Only interested in == results */ assert( pOp->p1>=0 && pOp->p1nCursor ); assert( pOp->p2!=0 ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( OP_SeekLE == OP_SeekLT+1 ); assert( OP_SeekGE == OP_SeekLT+2 ); assert( OP_SeekGT == OP_SeekLT+3 ); assert( pC->isOrdered ); assert( pC->uc.pCursor!=0 ); oc = pOp->opcode; eqOnly = 0; pC->nullRow = 0; #ifdef SQLITE_DEBUG pC->seekOp = pOp->opcode; #endif pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; if( pC->isTable ){ u16 flags3, newType; /* The OPFLAG_SEEKEQ/BTREE_SEEK_EQ flag is only set on index cursors */ assert( sqlite3BtreeCursorHasHint(pC->uc.pCursor, BTREE_SEEK_EQ)==0 || CORRUPT_DB ); /* The input value in P3 might be of any type: integer, real, string, ** blob, or NULL. But it needs to be an integer before we can do ** the seek, so convert it. */ pIn3 = &aMem[pOp->p3]; flags3 = pIn3->flags; if( (flags3 & (MEM_Int|MEM_Real|MEM_IntReal|MEM_Str))==MEM_Str ){ applyNumericAffinity(pIn3, 0); } iKey = sqlite3VdbeIntValue(pIn3); /* Get the integer key value */ newType = pIn3->flags; /* Record the type after applying numeric affinity */ pIn3->flags = flags3; /* But convert the type back to its original */ /* If the P3 value could not be converted into an integer without ** loss of information, then special processing is required... */ if( (newType & (MEM_Int|MEM_IntReal))==0 ){ if( (newType & MEM_Real)==0 ){ if( (newType & MEM_Null) || oc>=OP_SeekGE ){ VdbeBranchTaken(1,2); goto jump_to_p2; }else{ rc = sqlite3BtreeLast(pC->uc.pCursor, &res); if( rc!=SQLITE_OK ) goto abort_due_to_error; goto seek_not_found; } }else /* If the approximation iKey is larger than the actual real search ** term, substitute >= for > and < for <=. e.g. if the search term ** is 4.9 and the integer approximation 5: ** ** (x > 4.9) -> (x >= 5) ** (x <= 4.9) -> (x < 5) */ if( pIn3->u.r<(double)iKey ){ assert( OP_SeekGE==(OP_SeekGT-1) ); assert( OP_SeekLT==(OP_SeekLE-1) ); assert( (OP_SeekLE & 0x0001)==(OP_SeekGT & 0x0001) ); if( (oc & 0x0001)==(OP_SeekGT & 0x0001) ) oc--; } /* If the approximation iKey is smaller than the actual real search ** term, substitute <= for < and > for >=. */ else if( pIn3->u.r>(double)iKey ){ assert( OP_SeekLE==(OP_SeekLT+1) ); assert( OP_SeekGT==(OP_SeekGE+1) ); assert( (OP_SeekLT & 0x0001)==(OP_SeekGE & 0x0001) ); if( (oc & 0x0001)==(OP_SeekLT & 0x0001) ) oc++; } } rc = sqlite3BtreeMovetoUnpacked(pC->uc.pCursor, 0, (u64)iKey, 0, &res); pC->movetoTarget = iKey; /* Used by OP_Delete */ if( rc!=SQLITE_OK ){ goto abort_due_to_error; } }else{ /* For a cursor with the OPFLAG_SEEKEQ/BTREE_SEEK_EQ hint, only the ** OP_SeekGE and OP_SeekLE opcodes are allowed, and these must be ** immediately followed by an OP_IdxGT or OP_IdxLT opcode, respectively, ** with the same key. */ if( sqlite3BtreeCursorHasHint(pC->uc.pCursor, BTREE_SEEK_EQ) ){ eqOnly = 1; assert( pOp->opcode==OP_SeekGE || pOp->opcode==OP_SeekLE ); assert( pOp[1].opcode==OP_IdxLT || pOp[1].opcode==OP_IdxGT ); assert( pOp->opcode==OP_SeekGE || pOp[1].opcode==OP_IdxLT ); assert( pOp->opcode==OP_SeekLE || pOp[1].opcode==OP_IdxGT ); assert( pOp[1].p1==pOp[0].p1 ); assert( pOp[1].p2==pOp[0].p2 ); assert( pOp[1].p3==pOp[0].p3 ); assert( pOp[1].p4.i==pOp[0].p4.i ); } nField = pOp->p4.i; assert( pOp->p4type==P4_INT32 ); assert( nField>0 ); r.pKeyInfo = pC->pKeyInfo; r.nField = (u16)nField; /* The next line of code computes as follows, only faster: ** if( oc==OP_SeekGT || oc==OP_SeekLE ){ ** r.default_rc = -1; ** }else{ ** r.default_rc = +1; ** } */ r.default_rc = ((1 & (oc - OP_SeekLT)) ? -1 : +1); assert( oc!=OP_SeekGT || r.default_rc==-1 ); assert( oc!=OP_SeekLE || r.default_rc==-1 ); assert( oc!=OP_SeekGE || r.default_rc==+1 ); assert( oc!=OP_SeekLT || r.default_rc==+1 ); r.aMem = &aMem[pOp->p3]; #ifdef SQLITE_DEBUG { int i; for(i=0; iuc.pCursor, &r, 0, 0, &res); if( rc!=SQLITE_OK ){ goto abort_due_to_error; } if( eqOnly && r.eqSeen==0 ){ assert( res!=0 ); goto seek_not_found; } } #ifdef SQLITE_TEST sqlite3_search_count++; #endif if( oc>=OP_SeekGE ){ assert( oc==OP_SeekGE || oc==OP_SeekGT ); if( res<0 || (res==0 && oc==OP_SeekGT) ){ res = 0; rc = sqlite3BtreeNext(pC->uc.pCursor, 0); if( rc!=SQLITE_OK ){ if( rc==SQLITE_DONE ){ rc = SQLITE_OK; res = 1; }else{ goto abort_due_to_error; } } }else{ res = 0; } }else{ assert( oc==OP_SeekLT || oc==OP_SeekLE ); if( res>0 || (res==0 && oc==OP_SeekLT) ){ res = 0; rc = sqlite3BtreePrevious(pC->uc.pCursor, 0); if( rc!=SQLITE_OK ){ if( rc==SQLITE_DONE ){ rc = SQLITE_OK; res = 1; }else{ goto abort_due_to_error; } } }else{ /* res might be negative because the table is empty. Check to ** see if this is the case. */ res = sqlite3BtreeEof(pC->uc.pCursor); } } seek_not_found: assert( pOp->p2>0 ); VdbeBranchTaken(res!=0,2); if( res ){ goto jump_to_p2; }else if( eqOnly ){ assert( pOp[1].opcode==OP_IdxLT || pOp[1].opcode==OP_IdxGT ); pOp++; /* Skip the OP_IdxLt or OP_IdxGT that follows */ } break; } /* Opcode: SeekHit P1 P2 * * * ** Synopsis: seekHit=P2 ** ** Set the seekHit flag on cursor P1 to the value in P2. ** The seekHit flag is used by the IfNoHope opcode. ** ** P1 must be a valid b-tree cursor. P2 must be a boolean value, ** either 0 or 1. */ case OP_SeekHit: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pOp->p2==0 || pOp->p2==1 ); pC->seekHit = pOp->p2 & 1; break; } /* Opcode: IfNotOpen P1 P2 * * * ** Synopsis: if( !csr[P1] ) goto P2 ** ** If cursor P1 is not open, jump to instruction P2. Otherwise, fall through. */ case OP_IfNotOpen: { /* jump */ assert( pOp->p1>=0 && pOp->p1nCursor ); VdbeBranchTaken(p->apCsr[pOp->p1]==0, 2); if( !p->apCsr[pOp->p1] ){ goto jump_to_p2_and_check_for_interrupt; } break; } /* Opcode: Found P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If P4==0 then register P3 holds a blob constructed by MakeRecord. If ** P4>0 then register P3 is the first of P4 registers that form an unpacked ** record. ** ** Cursor P1 is on an index btree. If the record identified by P3 and P4 ** is a prefix of any entry in P1 then a jump is made to P2 and ** P1 is left pointing at the matching entry. ** ** This operation leaves the cursor in a state where it can be ** advanced in the forward direction. The Next instruction will work, ** but not the Prev instruction. ** ** See also: NotFound, NoConflict, NotExists. SeekGe */ /* Opcode: NotFound P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If P4==0 then register P3 holds a blob constructed by MakeRecord. If ** P4>0 then register P3 is the first of P4 registers that form an unpacked ** record. ** ** Cursor P1 is on an index btree. If the record identified by P3 and P4 ** is not the prefix of any entry in P1 then a jump is made to P2. If P1 ** does contain an entry whose prefix matches the P3/P4 record then control ** falls through to the next instruction and P1 is left pointing at the ** matching entry. ** ** This operation leaves the cursor in a state where it cannot be ** advanced in either direction. In other words, the Next and Prev ** opcodes do not work after this operation. ** ** See also: Found, NotExists, NoConflict, IfNoHope */ /* Opcode: IfNoHope P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** Register P3 is the first of P4 registers that form an unpacked ** record. ** ** Cursor P1 is on an index btree. If the seekHit flag is set on P1, then ** this opcode is a no-op. But if the seekHit flag of P1 is clear, then ** check to see if there is any entry in P1 that matches the ** prefix identified by P3 and P4. If no entry matches the prefix, ** jump to P2. Otherwise fall through. ** ** This opcode behaves like OP_NotFound if the seekHit ** flag is clear and it behaves like OP_Noop if the seekHit flag is set. ** ** This opcode is used in IN clause processing for a multi-column key. ** If an IN clause is attached to an element of the key other than the ** left-most element, and if there are no matches on the most recent ** seek over the whole key, then it might be that one of the key element ** to the left is prohibiting a match, and hence there is "no hope" of ** any match regardless of how many IN clause elements are checked. ** In such a case, we abandon the IN clause search early, using this ** opcode. The opcode name comes from the fact that the ** jump is taken if there is "no hope" of achieving a match. ** ** See also: NotFound, SeekHit */ /* Opcode: NoConflict P1 P2 P3 P4 * ** Synopsis: key=r[P3@P4] ** ** If P4==0 then register P3 holds a blob constructed by MakeRecord. If ** P4>0 then register P3 is the first of P4 registers that form an unpacked ** record. ** ** Cursor P1 is on an index btree. If the record identified by P3 and P4 ** contains any NULL value, jump immediately to P2. If all terms of the ** record are not-NULL then a check is done to determine if any row in the ** P1 index btree has a matching key prefix. If there are no matches, jump ** immediately to P2. If there is a match, fall through and leave the P1 ** cursor pointing to the matching row. ** ** This opcode is similar to OP_NotFound with the exceptions that the ** branch is always taken if any part of the search key input is NULL. ** ** This operation leaves the cursor in a state where it cannot be ** advanced in either direction. In other words, the Next and Prev ** opcodes do not work after this operation. ** ** See also: NotFound, Found, NotExists */ case OP_IfNoHope: { /* jump, in3 */ VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); if( pC->seekHit ) break; /* Fall through into OP_NotFound */ /* no break */ deliberate_fall_through } case OP_NoConflict: /* jump, in3 */ case OP_NotFound: /* jump, in3 */ case OP_Found: { /* jump, in3 */ int alreadyExists; int takeJump; int ii; VdbeCursor *pC; int res; UnpackedRecord *pFree; UnpackedRecord *pIdxKey; UnpackedRecord r; #ifdef SQLITE_TEST if( pOp->opcode!=OP_NoConflict ) sqlite3_found_count++; #endif assert( pOp->p1>=0 && pOp->p1nCursor ); assert( pOp->p4type==P4_INT32 ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); #ifdef SQLITE_DEBUG pC->seekOp = pOp->opcode; #endif pIn3 = &aMem[pOp->p3]; assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0 ); assert( pC->isTable==0 ); if( pOp->p4.i>0 ){ r.pKeyInfo = pC->pKeyInfo; r.nField = (u16)pOp->p4.i; r.aMem = pIn3; #ifdef SQLITE_DEBUG for(ii=0; iip3+ii, &r.aMem[ii]); } #endif pIdxKey = &r; pFree = 0; }else{ assert( pIn3->flags & MEM_Blob ); rc = ExpandBlob(pIn3); assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); if( rc ) goto no_mem; pFree = pIdxKey = sqlite3VdbeAllocUnpackedRecord(pC->pKeyInfo); if( pIdxKey==0 ) goto no_mem; sqlite3VdbeRecordUnpack(pC->pKeyInfo, pIn3->n, pIn3->z, pIdxKey); } pIdxKey->default_rc = 0; takeJump = 0; if( pOp->opcode==OP_NoConflict ){ /* For the OP_NoConflict opcode, take the jump if any of the ** input fields are NULL, since any key with a NULL will not ** conflict */ for(ii=0; iinField; ii++){ if( pIdxKey->aMem[ii].flags & MEM_Null ){ takeJump = 1; break; } } } rc = sqlite3BtreeMovetoUnpacked(pC->uc.pCursor, pIdxKey, 0, 0, &res); if( pFree ) sqlite3DbFreeNN(db, pFree); if( rc!=SQLITE_OK ){ goto abort_due_to_error; } pC->seekResult = res; alreadyExists = (res==0); pC->nullRow = 1-alreadyExists; pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; if( pOp->opcode==OP_Found ){ VdbeBranchTaken(alreadyExists!=0,2); if( alreadyExists ) goto jump_to_p2; }else{ VdbeBranchTaken(takeJump||alreadyExists==0,2); if( takeJump || !alreadyExists ) goto jump_to_p2; } break; } /* Opcode: SeekRowid P1 P2 P3 * * ** Synopsis: intkey=r[P3] ** ** P1 is the index of a cursor open on an SQL table btree (with integer ** keys). If register P3 does not contain an integer or if P1 does not ** contain a record with rowid P3 then jump immediately to P2. ** Or, if P2 is 0, raise an SQLITE_CORRUPT error. If P1 does contain ** a record with rowid P3 then ** leave the cursor pointing at that record and fall through to the next ** instruction. ** ** The OP_NotExists opcode performs the same operation, but with OP_NotExists ** the P3 register must be guaranteed to contain an integer value. With this ** opcode, register P3 might not contain an integer. ** ** The OP_NotFound opcode performs the same operation on index btrees ** (with arbitrary multi-value keys). ** ** This opcode leaves the cursor in a state where it cannot be advanced ** in either direction. In other words, the Next and Prev opcodes will ** not work following this opcode. ** ** See also: Found, NotFound, NoConflict, SeekRowid */ /* Opcode: NotExists P1 P2 P3 * * ** Synopsis: intkey=r[P3] ** ** P1 is the index of a cursor open on an SQL table btree (with integer ** keys). P3 is an integer rowid. If P1 does not contain a record with ** rowid P3 then jump immediately to P2. Or, if P2 is 0, raise an ** SQLITE_CORRUPT error. If P1 does contain a record with rowid P3 then ** leave the cursor pointing at that record and fall through to the next ** instruction. ** ** The OP_SeekRowid opcode performs the same operation but also allows the ** P3 register to contain a non-integer value, in which case the jump is ** always taken. This opcode requires that P3 always contain an integer. ** ** The OP_NotFound opcode performs the same operation on index btrees ** (with arbitrary multi-value keys). ** ** This opcode leaves the cursor in a state where it cannot be advanced ** in either direction. In other words, the Next and Prev opcodes will ** not work following this opcode. ** ** See also: Found, NotFound, NoConflict, SeekRowid */ case OP_SeekRowid: { /* jump, in3 */ VdbeCursor *pC; BtCursor *pCrsr; int res; u64 iKey; pIn3 = &aMem[pOp->p3]; testcase( pIn3->flags & MEM_Int ); testcase( pIn3->flags & MEM_IntReal ); testcase( pIn3->flags & MEM_Real ); testcase( (pIn3->flags & (MEM_Str|MEM_Int))==MEM_Str ); if( (pIn3->flags & (MEM_Int|MEM_IntReal))==0 ){ /* If pIn3->u.i does not contain an integer, compute iKey as the ** integer value of pIn3. Jump to P2 if pIn3 cannot be converted ** into an integer without loss of information. Take care to avoid ** changing the datatype of pIn3, however, as it is used by other ** parts of the prepared statement. */ Mem x = pIn3[0]; applyAffinity(&x, SQLITE_AFF_NUMERIC, encoding); if( (x.flags & MEM_Int)==0 ) goto jump_to_p2; iKey = x.u.i; goto notExistsWithKey; } /* Fall through into OP_NotExists */ /* no break */ deliberate_fall_through case OP_NotExists: /* jump, in3 */ pIn3 = &aMem[pOp->p3]; assert( (pIn3->flags & MEM_Int)!=0 || pOp->opcode==OP_SeekRowid ); assert( pOp->p1>=0 && pOp->p1nCursor ); iKey = pIn3->u.i; notExistsWithKey: pC = p->apCsr[pOp->p1]; assert( pC!=0 ); #ifdef SQLITE_DEBUG if( pOp->opcode==OP_SeekRowid ) pC->seekOp = OP_SeekRowid; #endif assert( pC->isTable ); assert( pC->eCurType==CURTYPE_BTREE ); pCrsr = pC->uc.pCursor; assert( pCrsr!=0 ); res = 0; rc = sqlite3BtreeMovetoUnpacked(pCrsr, 0, iKey, 0, &res); assert( rc==SQLITE_OK || res==0 ); pC->movetoTarget = iKey; /* Used by OP_Delete */ pC->nullRow = 0; pC->cacheStatus = CACHE_STALE; pC->deferredMoveto = 0; VdbeBranchTaken(res!=0,2); pC->seekResult = res; if( res!=0 ){ assert( rc==SQLITE_OK ); if( pOp->p2==0 ){ rc = SQLITE_CORRUPT_BKPT; }else{ goto jump_to_p2; } } if( rc ) goto abort_due_to_error; break; } /* Opcode: Sequence P1 P2 * * * ** Synopsis: r[P2]=cursor[P1].ctr++ ** ** Find the next available sequence number for cursor P1. ** Write the sequence number into register P2. ** The sequence number on the cursor is incremented after this ** instruction. */ case OP_Sequence: { /* out2 */ assert( pOp->p1>=0 && pOp->p1nCursor ); assert( p->apCsr[pOp->p1]!=0 ); assert( p->apCsr[pOp->p1]->eCurType!=CURTYPE_VTAB ); pOut = out2Prerelease(p, pOp); pOut->u.i = p->apCsr[pOp->p1]->seqCount++; break; } /* Opcode: NewRowid P1 P2 P3 * * ** Synopsis: r[P2]=rowid ** ** Get a new integer record number (a.k.a "rowid") used as the key to a table. ** The record number is not previously used as a key in the database ** table that cursor P1 points to. The new record number is written ** written to register P2. ** ** If P3>0 then P3 is a register in the root frame of this VDBE that holds ** the largest previously generated record number. No new record numbers are ** allowed to be less than this value. When this value reaches its maximum, ** an SQLITE_FULL error is generated. The P3 register is updated with the ' ** generated record number. This P3 mechanism is used to help implement the ** AUTOINCREMENT feature. */ case OP_NewRowid: { /* out2 */ i64 v; /* The new rowid */ VdbeCursor *pC; /* Cursor of table to get the new rowid */ int res; /* Result of an sqlite3BtreeLast() */ int cnt; /* Counter to limit the number of searches */ Mem *pMem; /* Register holding largest rowid for AUTOINCREMENT */ VdbeFrame *pFrame; /* Root frame of VDBE */ v = 0; res = 0; pOut = out2Prerelease(p, pOp); assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->isTable ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0 ); { /* The next rowid or record number (different terms for the same ** thing) is obtained in a two-step algorithm. ** ** First we attempt to find the largest existing rowid and add one ** to that. But if the largest existing rowid is already the maximum ** positive integer, we have to fall through to the second ** probabilistic algorithm ** ** The second algorithm is to select a rowid at random and see if ** it already exists in the table. If it does not exist, we have ** succeeded. If the random rowid does exist, we select a new one ** and try again, up to 100 times. */ assert( pC->isTable ); #ifdef SQLITE_32BIT_ROWID # define MAX_ROWID 0x7fffffff #else /* Some compilers complain about constants of the form 0x7fffffffffffffff. ** Others complain about 0x7ffffffffffffffffLL. The following macro seems ** to provide the constant while making all compilers happy. */ # define MAX_ROWID (i64)( (((u64)0x7fffffff)<<32) | (u64)0xffffffff ) #endif if( !pC->useRandomRowid ){ rc = sqlite3BtreeLast(pC->uc.pCursor, &res); if( rc!=SQLITE_OK ){ goto abort_due_to_error; } if( res ){ v = 1; /* IMP: R-61914-48074 */ }else{ assert( sqlite3BtreeCursorIsValid(pC->uc.pCursor) ); v = sqlite3BtreeIntegerKey(pC->uc.pCursor); if( v>=MAX_ROWID ){ pC->useRandomRowid = 1; }else{ v++; /* IMP: R-29538-34987 */ } } } #ifndef SQLITE_OMIT_AUTOINCREMENT if( pOp->p3 ){ /* Assert that P3 is a valid memory cell. */ assert( pOp->p3>0 ); if( p->pFrame ){ for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent); /* Assert that P3 is a valid memory cell. */ assert( pOp->p3<=pFrame->nMem ); pMem = &pFrame->aMem[pOp->p3]; }else{ /* Assert that P3 is a valid memory cell. */ assert( pOp->p3<=(p->nMem+1 - p->nCursor) ); pMem = &aMem[pOp->p3]; memAboutToChange(p, pMem); } assert( memIsValid(pMem) ); REGISTER_TRACE(pOp->p3, pMem); sqlite3VdbeMemIntegerify(pMem); assert( (pMem->flags & MEM_Int)!=0 ); /* mem(P3) holds an integer */ if( pMem->u.i==MAX_ROWID || pC->useRandomRowid ){ rc = SQLITE_FULL; /* IMP: R-17817-00630 */ goto abort_due_to_error; } if( vu.i+1 ){ v = pMem->u.i + 1; } pMem->u.i = v; } #endif if( pC->useRandomRowid ){ /* IMPLEMENTATION-OF: R-07677-41881 If the largest ROWID is equal to the ** largest possible integer (9223372036854775807) then the database ** engine starts picking positive candidate ROWIDs at random until ** it finds one that is not previously used. */ assert( pOp->p3==0 ); /* We cannot be in random rowid mode if this is ** an AUTOINCREMENT table. */ cnt = 0; do{ sqlite3_randomness(sizeof(v), &v); v &= (MAX_ROWID>>1); v++; /* Ensure that v is greater than zero */ }while( ((rc = sqlite3BtreeMovetoUnpacked(pC->uc.pCursor, 0, (u64)v, 0, &res))==SQLITE_OK) && (res==0) && (++cnt<100)); if( rc ) goto abort_due_to_error; if( res==0 ){ rc = SQLITE_FULL; /* IMP: R-38219-53002 */ goto abort_due_to_error; } assert( v>0 ); /* EV: R-40812-03570 */ } pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; } pOut->u.i = v; break; } /* Opcode: Insert P1 P2 P3 P4 P5 ** Synopsis: intkey=r[P3] data=r[P2] ** ** Write an entry into the table of cursor P1. A new entry is ** created if it doesn't already exist or the data for an existing ** entry is overwritten. The data is the value MEM_Blob stored in register ** number P2. The key is stored in register P3. The key must ** be a MEM_Int. ** ** If the OPFLAG_NCHANGE flag of P5 is set, then the row change count is ** incremented (otherwise not). If the OPFLAG_LASTROWID flag of P5 is set, ** then rowid is stored for subsequent return by the ** sqlite3_last_insert_rowid() function (otherwise it is unmodified). ** ** If the OPFLAG_USESEEKRESULT flag of P5 is set, the implementation might ** run faster by avoiding an unnecessary seek on cursor P1. However, ** the OPFLAG_USESEEKRESULT flag must only be set if there have been no prior ** seeks on the cursor or if the most recent seek used a key equal to P3. ** ** If the OPFLAG_ISUPDATE flag is set, then this opcode is part of an ** UPDATE operation. Otherwise (if the flag is clear) then this opcode ** is part of an INSERT operation. The difference is only important to ** the update hook. ** ** Parameter P4 may point to a Table structure, or may be NULL. If it is ** not NULL, then the update-hook (sqlite3.xUpdateCallback) is invoked ** following a successful insert. ** ** (WARNING/TODO: If P1 is a pseudo-cursor and P2 is dynamically ** allocated, then ownership of P2 is transferred to the pseudo-cursor ** and register P2 becomes ephemeral. If the cursor is changed, the ** value of register P2 will then change. Make sure this does not ** cause any problems.) ** ** This instruction only works on tables. The equivalent instruction ** for indices is OP_IdxInsert. */ case OP_Insert: { Mem *pData; /* MEM cell holding data for the record to be inserted */ Mem *pKey; /* MEM cell holding key for the record */ VdbeCursor *pC; /* Cursor to table into which insert is written */ int seekResult; /* Result of prior seek or 0 if no USESEEKRESULT flag */ const char *zDb; /* database name - used by the update hook */ Table *pTab; /* Table structure - used by update and pre-update hooks */ BtreePayload x; /* Payload to be inserted */ pData = &aMem[pOp->p2]; assert( pOp->p1>=0 && pOp->p1nCursor ); assert( memIsValid(pData) ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->deferredMoveto==0 ); assert( pC->uc.pCursor!=0 ); assert( (pOp->p5 & OPFLAG_ISNOOP) || pC->isTable ); assert( pOp->p4type==P4_TABLE || pOp->p4type>=P4_STATIC ); REGISTER_TRACE(pOp->p2, pData); sqlite3VdbeIncrWriteCounter(p, pC); pKey = &aMem[pOp->p3]; assert( pKey->flags & MEM_Int ); assert( memIsValid(pKey) ); REGISTER_TRACE(pOp->p3, pKey); x.nKey = pKey->u.i; if( pOp->p4type==P4_TABLE && HAS_UPDATE_HOOK(db) ){ assert( pC->iDb>=0 ); zDb = db->aDb[pC->iDb].zDbSName; pTab = pOp->p4.pTab; assert( (pOp->p5 & OPFLAG_ISNOOP) || HasRowid(pTab) ); }else{ pTab = 0; zDb = 0; /* Not needed. Silence a compiler warning. */ } #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* Invoke the pre-update hook, if any */ if( pTab ){ if( db->xPreUpdateCallback && !(pOp->p5 & OPFLAG_ISUPDATE) ){ sqlite3VdbePreUpdateHook(p, pC, SQLITE_INSERT, zDb, pTab, x.nKey,pOp->p2); } if( db->xUpdateCallback==0 || pTab->aCol==0 ){ /* Prevent post-update hook from running in cases when it should not */ pTab = 0; } } if( pOp->p5 & OPFLAG_ISNOOP ) break; #endif if( pOp->p5 & OPFLAG_NCHANGE ) p->nChange++; if( pOp->p5 & OPFLAG_LASTROWID ) db->lastRowid = x.nKey; assert( pData->flags & (MEM_Blob|MEM_Str) ); x.pData = pData->z; x.nData = pData->n; seekResult = ((pOp->p5 & OPFLAG_USESEEKRESULT) ? pC->seekResult : 0); if( pData->flags & MEM_Zero ){ x.nZero = pData->u.nZero; }else{ x.nZero = 0; } x.pKey = 0; rc = sqlite3BtreeInsert(pC->uc.pCursor, &x, (pOp->p5 & (OPFLAG_APPEND|OPFLAG_SAVEPOSITION)), seekResult ); pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; /* Invoke the update-hook if required. */ if( rc ) goto abort_due_to_error; if( pTab ){ assert( db->xUpdateCallback!=0 ); assert( pTab->aCol!=0 ); db->xUpdateCallback(db->pUpdateArg, (pOp->p5 & OPFLAG_ISUPDATE) ? SQLITE_UPDATE : SQLITE_INSERT, zDb, pTab->zName, x.nKey); } break; } /* Opcode: Delete P1 P2 P3 P4 P5 ** ** Delete the record at which the P1 cursor is currently pointing. ** ** If the OPFLAG_SAVEPOSITION bit of the P5 parameter is set, then ** the cursor will be left pointing at either the next or the previous ** record in the table. If it is left pointing at the next record, then ** the next Next instruction will be a no-op. As a result, in this case ** it is ok to delete a record from within a Next loop. If ** OPFLAG_SAVEPOSITION bit of P5 is clear, then the cursor will be ** left in an undefined state. ** ** If the OPFLAG_AUXDELETE bit is set on P5, that indicates that this ** delete one of several associated with deleting a table row and all its ** associated index entries. Exactly one of those deletes is the "primary" ** delete. The others are all on OPFLAG_FORDELETE cursors or else are ** marked with the AUXDELETE flag. ** ** If the OPFLAG_NCHANGE flag of P2 (NB: P2 not P5) is set, then the row ** change count is incremented (otherwise not). ** ** P1 must not be pseudo-table. It has to be a real table with ** multiple rows. ** ** If P4 is not NULL then it points to a Table object. In this case either ** the update or pre-update hook, or both, may be invoked. The P1 cursor must ** have been positioned using OP_NotFound prior to invoking this opcode in ** this case. Specifically, if one is configured, the pre-update hook is ** invoked if P4 is not NULL. The update-hook is invoked if one is configured, ** P4 is not NULL, and the OPFLAG_NCHANGE flag is set in P2. ** ** If the OPFLAG_ISUPDATE flag is set in P2, then P3 contains the address ** of the memory cell that contains the value that the rowid of the row will ** be set to by the update. */ case OP_Delete: { VdbeCursor *pC; const char *zDb; Table *pTab; int opflags; opflags = pOp->p2; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0 ); assert( pC->deferredMoveto==0 ); sqlite3VdbeIncrWriteCounter(p, pC); #ifdef SQLITE_DEBUG if( pOp->p4type==P4_TABLE && HasRowid(pOp->p4.pTab) && pOp->p5==0 && sqlite3BtreeCursorIsValidNN(pC->uc.pCursor) ){ /* If p5 is zero, the seek operation that positioned the cursor prior to ** OP_Delete will have also set the pC->movetoTarget field to the rowid of ** the row that is being deleted */ i64 iKey = sqlite3BtreeIntegerKey(pC->uc.pCursor); assert( CORRUPT_DB || pC->movetoTarget==iKey ); } #endif /* If the update-hook or pre-update-hook will be invoked, set zDb to ** the name of the db to pass as to it. Also set local pTab to a copy ** of p4.pTab. Finally, if p5 is true, indicating that this cursor was ** last moved with OP_Next or OP_Prev, not Seek or NotFound, set ** VdbeCursor.movetoTarget to the current rowid. */ if( pOp->p4type==P4_TABLE && HAS_UPDATE_HOOK(db) ){ assert( pC->iDb>=0 ); assert( pOp->p4.pTab!=0 ); zDb = db->aDb[pC->iDb].zDbSName; pTab = pOp->p4.pTab; if( (pOp->p5 & OPFLAG_SAVEPOSITION)!=0 && pC->isTable ){ pC->movetoTarget = sqlite3BtreeIntegerKey(pC->uc.pCursor); } }else{ zDb = 0; /* Not needed. Silence a compiler warning. */ pTab = 0; /* Not needed. Silence a compiler warning. */ } #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* Invoke the pre-update-hook if required. */ if( db->xPreUpdateCallback && pOp->p4.pTab ){ assert( !(opflags & OPFLAG_ISUPDATE) || HasRowid(pTab)==0 || (aMem[pOp->p3].flags & MEM_Int) ); sqlite3VdbePreUpdateHook(p, pC, (opflags & OPFLAG_ISUPDATE) ? SQLITE_UPDATE : SQLITE_DELETE, zDb, pTab, pC->movetoTarget, pOp->p3 ); } if( opflags & OPFLAG_ISNOOP ) break; #endif /* Only flags that can be set are SAVEPOISTION and AUXDELETE */ assert( (pOp->p5 & ~(OPFLAG_SAVEPOSITION|OPFLAG_AUXDELETE))==0 ); assert( OPFLAG_SAVEPOSITION==BTREE_SAVEPOSITION ); assert( OPFLAG_AUXDELETE==BTREE_AUXDELETE ); #ifdef SQLITE_DEBUG if( p->pFrame==0 ){ if( pC->isEphemeral==0 && (pOp->p5 & OPFLAG_AUXDELETE)==0 && (pC->wrFlag & OPFLAG_FORDELETE)==0 ){ nExtraDelete++; } if( pOp->p2 & OPFLAG_NCHANGE ){ nExtraDelete--; } } #endif rc = sqlite3BtreeDelete(pC->uc.pCursor, pOp->p5); pC->cacheStatus = CACHE_STALE; pC->seekResult = 0; if( rc ) goto abort_due_to_error; /* Invoke the update-hook if required. */ if( opflags & OPFLAG_NCHANGE ){ p->nChange++; if( db->xUpdateCallback && HasRowid(pTab) ){ db->xUpdateCallback(db->pUpdateArg, SQLITE_DELETE, zDb, pTab->zName, pC->movetoTarget); assert( pC->iDb>=0 ); } } break; } /* Opcode: ResetCount * * * * * ** ** The value of the change counter is copied to the database handle ** change counter (returned by subsequent calls to sqlite3_changes()). ** Then the VMs internal change counter resets to 0. ** This is used by trigger programs. */ case OP_ResetCount: { sqlite3VdbeSetChanges(db, p->nChange); p->nChange = 0; break; } /* Opcode: SorterCompare P1 P2 P3 P4 ** Synopsis: if key(P1)!=trim(r[P3],P4) goto P2 ** ** P1 is a sorter cursor. This instruction compares a prefix of the ** record blob in register P3 against a prefix of the entry that ** the sorter cursor currently points to. Only the first P4 fields ** of r[P3] and the sorter record are compared. ** ** If either P3 or the sorter contains a NULL in one of their significant ** fields (not counting the P4 fields at the end which are ignored) then ** the comparison is assumed to be equal. ** ** Fall through to next instruction if the two records compare equal to ** each other. Jump to P2 if they are different. */ case OP_SorterCompare: { VdbeCursor *pC; int res; int nKeyCol; pC = p->apCsr[pOp->p1]; assert( isSorter(pC) ); assert( pOp->p4type==P4_INT32 ); pIn3 = &aMem[pOp->p3]; nKeyCol = pOp->p4.i; res = 0; rc = sqlite3VdbeSorterCompare(pC, pIn3, nKeyCol, &res); VdbeBranchTaken(res!=0,2); if( rc ) goto abort_due_to_error; if( res ) goto jump_to_p2; break; }; /* Opcode: SorterData P1 P2 P3 * * ** Synopsis: r[P2]=data ** ** Write into register P2 the current sorter data for sorter cursor P1. ** Then clear the column header cache on cursor P3. ** ** This opcode is normally use to move a record out of the sorter and into ** a register that is the source for a pseudo-table cursor created using ** OpenPseudo. That pseudo-table cursor is the one that is identified by ** parameter P3. Clearing the P3 column cache as part of this opcode saves ** us from having to issue a separate NullRow instruction to clear that cache. */ case OP_SorterData: { VdbeCursor *pC; pOut = &aMem[pOp->p2]; pC = p->apCsr[pOp->p1]; assert( isSorter(pC) ); rc = sqlite3VdbeSorterRowkey(pC, pOut); assert( rc!=SQLITE_OK || (pOut->flags & MEM_Blob) ); assert( pOp->p1>=0 && pOp->p1nCursor ); if( rc ) goto abort_due_to_error; p->apCsr[pOp->p3]->cacheStatus = CACHE_STALE; break; } /* Opcode: RowData P1 P2 P3 * * ** Synopsis: r[P2]=data ** ** Write into register P2 the complete row content for the row at ** which cursor P1 is currently pointing. ** There is no interpretation of the data. ** It is just copied onto the P2 register exactly as ** it is found in the database file. ** ** If cursor P1 is an index, then the content is the key of the row. ** If cursor P2 is a table, then the content extracted is the data. ** ** If the P1 cursor must be pointing to a valid row (not a NULL row) ** of a real table, not a pseudo-table. ** ** If P3!=0 then this opcode is allowed to make an ephemeral pointer ** into the database page. That means that the content of the output ** register will be invalidated as soon as the cursor moves - including ** moves caused by other cursors that "save" the current cursors ** position in order that they can write to the same table. If P3==0 ** then a copy of the data is made into memory. P3!=0 is faster, but ** P3==0 is safer. ** ** If P3!=0 then the content of the P2 register is unsuitable for use ** in OP_Result and any OP_Result will invalidate the P2 register content. ** The P2 register content is invalidated by opcodes like OP_Function or ** by any use of another cursor pointing to the same table. */ case OP_RowData: { VdbeCursor *pC; BtCursor *pCrsr; u32 n; pOut = out2Prerelease(p, pOp); assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( isSorter(pC)==0 ); assert( pC->nullRow==0 ); assert( pC->uc.pCursor!=0 ); pCrsr = pC->uc.pCursor; /* The OP_RowData opcodes always follow OP_NotExists or ** OP_SeekRowid or OP_Rewind/Op_Next with no intervening instructions ** that might invalidate the cursor. ** If this where not the case, on of the following assert()s ** would fail. Should this ever change (because of changes in the code ** generator) then the fix would be to insert a call to ** sqlite3VdbeCursorMoveto(). */ assert( pC->deferredMoveto==0 ); assert( sqlite3BtreeCursorIsValid(pCrsr) ); n = sqlite3BtreePayloadSize(pCrsr); if( n>(u32)db->aLimit[SQLITE_LIMIT_LENGTH] ){ goto too_big; } testcase( n==0 ); rc = sqlite3VdbeMemFromBtreeZeroOffset(pCrsr, n, pOut); if( rc ) goto abort_due_to_error; if( !pOp->p3 ) Deephemeralize(pOut); UPDATE_MAX_BLOBSIZE(pOut); REGISTER_TRACE(pOp->p2, pOut); break; } /* Opcode: Rowid P1 P2 * * * ** Synopsis: r[P2]=rowid ** ** Store in register P2 an integer which is the key of the table entry that ** P1 is currently point to. ** ** P1 can be either an ordinary table or a virtual table. There used to ** be a separate OP_VRowid opcode for use with virtual tables, but this ** one opcode now works for both table types. */ case OP_Rowid: { /* out2 */ VdbeCursor *pC; i64 v; sqlite3_vtab *pVtab; const sqlite3_module *pModule; pOut = out2Prerelease(p, pOp); assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType!=CURTYPE_PSEUDO || pC->nullRow ); if( pC->nullRow ){ pOut->flags = MEM_Null; break; }else if( pC->deferredMoveto ){ v = pC->movetoTarget; #ifndef SQLITE_OMIT_VIRTUALTABLE }else if( pC->eCurType==CURTYPE_VTAB ){ assert( pC->uc.pVCur!=0 ); pVtab = pC->uc.pVCur->pVtab; pModule = pVtab->pModule; assert( pModule->xRowid ); rc = pModule->xRowid(pC->uc.pVCur, &v); sqlite3VtabImportErrmsg(p, pVtab); if( rc ) goto abort_due_to_error; #endif /* SQLITE_OMIT_VIRTUALTABLE */ }else{ assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0 ); rc = sqlite3VdbeCursorRestore(pC); if( rc ) goto abort_due_to_error; if( pC->nullRow ){ pOut->flags = MEM_Null; break; } v = sqlite3BtreeIntegerKey(pC->uc.pCursor); } pOut->u.i = v; break; } /* Opcode: NullRow P1 * * * * ** ** Move the cursor P1 to a null row. Any OP_Column operations ** that occur while the cursor is on the null row will always ** write a NULL. */ case OP_NullRow: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); pC->nullRow = 1; pC->cacheStatus = CACHE_STALE; if( pC->eCurType==CURTYPE_BTREE ){ assert( pC->uc.pCursor!=0 ); sqlite3BtreeClearCursor(pC->uc.pCursor); } #ifdef SQLITE_DEBUG if( pC->seekOp==0 ) pC->seekOp = OP_NullRow; #endif break; } /* Opcode: SeekEnd P1 * * * * ** ** Position cursor P1 at the end of the btree for the purpose of ** appending a new entry onto the btree. ** ** It is assumed that the cursor is used only for appending and so ** if the cursor is valid, then the cursor must already be pointing ** at the end of the btree and so no changes are made to ** the cursor. */ /* Opcode: Last P1 P2 * * * ** ** The next use of the Rowid or Column or Prev instruction for P1 ** will refer to the last entry in the database table or index. ** If the table or index is empty and P2>0, then jump immediately to P2. ** If P2 is 0 or if the table or index is not empty, fall through ** to the following instruction. ** ** This opcode leaves the cursor configured to move in reverse order, ** from the end toward the beginning. In other words, the cursor is ** configured to use Prev, not Next. */ case OP_SeekEnd: case OP_Last: { /* jump */ VdbeCursor *pC; BtCursor *pCrsr; int res; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); pCrsr = pC->uc.pCursor; res = 0; assert( pCrsr!=0 ); #ifdef SQLITE_DEBUG pC->seekOp = pOp->opcode; #endif if( pOp->opcode==OP_SeekEnd ){ assert( pOp->p2==0 ); pC->seekResult = -1; if( sqlite3BtreeCursorIsValidNN(pCrsr) ){ break; } } rc = sqlite3BtreeLast(pCrsr, &res); pC->nullRow = (u8)res; pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; if( rc ) goto abort_due_to_error; if( pOp->p2>0 ){ VdbeBranchTaken(res!=0,2); if( res ) goto jump_to_p2; } break; } /* Opcode: IfSmaller P1 P2 P3 * * ** ** Estimate the number of rows in the table P1. Jump to P2 if that ** estimate is less than approximately 2**(0.1*P3). */ case OP_IfSmaller: { /* jump */ VdbeCursor *pC; BtCursor *pCrsr; int res; i64 sz; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); pCrsr = pC->uc.pCursor; assert( pCrsr ); rc = sqlite3BtreeFirst(pCrsr, &res); if( rc ) goto abort_due_to_error; if( res==0 ){ sz = sqlite3BtreeRowCountEst(pCrsr); if( ALWAYS(sz>=0) && sqlite3LogEst((u64)sz)p3 ) res = 1; } VdbeBranchTaken(res!=0,2); if( res ) goto jump_to_p2; break; } /* Opcode: SorterSort P1 P2 * * * ** ** After all records have been inserted into the Sorter object ** identified by P1, invoke this opcode to actually do the sorting. ** Jump to P2 if there are no records to be sorted. ** ** This opcode is an alias for OP_Sort and OP_Rewind that is used ** for Sorter objects. */ /* Opcode: Sort P1 P2 * * * ** ** This opcode does exactly the same thing as OP_Rewind except that ** it increments an undocumented global variable used for testing. ** ** Sorting is accomplished by writing records into a sorting index, ** then rewinding that index and playing it back from beginning to ** end. We use the OP_Sort opcode instead of OP_Rewind to do the ** rewinding so that the global variable will be incremented and ** regression tests can determine whether or not the optimizer is ** correctly optimizing out sorts. */ case OP_SorterSort: /* jump */ case OP_Sort: { /* jump */ #ifdef SQLITE_TEST sqlite3_sort_count++; sqlite3_search_count--; #endif p->aCounter[SQLITE_STMTSTATUS_SORT]++; /* Fall through into OP_Rewind */ /* no break */ deliberate_fall_through } /* Opcode: Rewind P1 P2 * * * ** ** The next use of the Rowid or Column or Next instruction for P1 ** will refer to the first entry in the database table or index. ** If the table or index is empty, jump immediately to P2. ** If the table or index is not empty, fall through to the following ** instruction. ** ** This opcode leaves the cursor configured to move in forward order, ** from the beginning toward the end. In other words, the cursor is ** configured to use Next, not Prev. */ case OP_Rewind: { /* jump */ VdbeCursor *pC; BtCursor *pCrsr; int res; assert( pOp->p1>=0 && pOp->p1nCursor ); assert( pOp->p5==0 ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( isSorter(pC)==(pOp->opcode==OP_SorterSort) ); res = 1; #ifdef SQLITE_DEBUG pC->seekOp = OP_Rewind; #endif if( isSorter(pC) ){ rc = sqlite3VdbeSorterRewind(pC, &res); }else{ assert( pC->eCurType==CURTYPE_BTREE ); pCrsr = pC->uc.pCursor; assert( pCrsr ); rc = sqlite3BtreeFirst(pCrsr, &res); pC->deferredMoveto = 0; pC->cacheStatus = CACHE_STALE; } if( rc ) goto abort_due_to_error; pC->nullRow = (u8)res; assert( pOp->p2>0 && pOp->p2nOp ); VdbeBranchTaken(res!=0,2); if( res ) goto jump_to_p2; break; } /* Opcode: Next P1 P2 P3 P4 P5 ** ** Advance cursor P1 so that it points to the next key/data pair in its ** table or index. If there are no more key/value pairs then fall through ** to the following instruction. But if the cursor advance was successful, ** jump immediately to P2. ** ** The Next opcode is only valid following an SeekGT, SeekGE, or ** OP_Rewind opcode used to position the cursor. Next is not allowed ** to follow SeekLT, SeekLE, or OP_Last. ** ** The P1 cursor must be for a real table, not a pseudo-table. P1 must have ** been opened prior to this opcode or the program will segfault. ** ** The P3 value is a hint to the btree implementation. If P3==1, that ** means P1 is an SQL index and that this instruction could have been ** omitted if that index had been unique. P3 is usually 0. P3 is ** always either 0 or 1. ** ** P4 is always of type P4_ADVANCE. The function pointer points to ** sqlite3BtreeNext(). ** ** If P5 is positive and the jump is taken, then event counter ** number P5-1 in the prepared statement is incremented. ** ** See also: Prev */ /* Opcode: Prev P1 P2 P3 P4 P5 ** ** Back up cursor P1 so that it points to the previous key/data pair in its ** table or index. If there is no previous key/value pairs then fall through ** to the following instruction. But if the cursor backup was successful, ** jump immediately to P2. ** ** ** The Prev opcode is only valid following an SeekLT, SeekLE, or ** OP_Last opcode used to position the cursor. Prev is not allowed ** to follow SeekGT, SeekGE, or OP_Rewind. ** ** The P1 cursor must be for a real table, not a pseudo-table. If P1 is ** not open then the behavior is undefined. ** ** The P3 value is a hint to the btree implementation. If P3==1, that ** means P1 is an SQL index and that this instruction could have been ** omitted if that index had been unique. P3 is usually 0. P3 is ** always either 0 or 1. ** ** P4 is always of type P4_ADVANCE. The function pointer points to ** sqlite3BtreePrevious(). ** ** If P5 is positive and the jump is taken, then event counter ** number P5-1 in the prepared statement is incremented. */ /* Opcode: SorterNext P1 P2 * * P5 ** ** This opcode works just like OP_Next except that P1 must be a ** sorter object for which the OP_SorterSort opcode has been ** invoked. This opcode advances the cursor to the next sorted ** record, or jumps to P2 if there are no more sorted records. */ case OP_SorterNext: { /* jump */ VdbeCursor *pC; pC = p->apCsr[pOp->p1]; assert( isSorter(pC) ); rc = sqlite3VdbeSorterNext(db, pC); goto next_tail; case OP_Prev: /* jump */ case OP_Next: /* jump */ assert( pOp->p1>=0 && pOp->p1nCursor ); assert( pOp->p5aCounter) ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->deferredMoveto==0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pOp->opcode!=OP_Next || pOp->p4.xAdvance==sqlite3BtreeNext ); assert( pOp->opcode!=OP_Prev || pOp->p4.xAdvance==sqlite3BtreePrevious ); /* The Next opcode is only used after SeekGT, SeekGE, Rewind, and Found. ** The Prev opcode is only used after SeekLT, SeekLE, and Last. */ assert( pOp->opcode!=OP_Next || pC->seekOp==OP_SeekGT || pC->seekOp==OP_SeekGE || pC->seekOp==OP_Rewind || pC->seekOp==OP_Found || pC->seekOp==OP_NullRow|| pC->seekOp==OP_SeekRowid || pC->seekOp==OP_IfNoHope); assert( pOp->opcode!=OP_Prev || pC->seekOp==OP_SeekLT || pC->seekOp==OP_SeekLE || pC->seekOp==OP_Last || pC->seekOp==OP_IfNoHope || pC->seekOp==OP_NullRow); rc = pOp->p4.xAdvance(pC->uc.pCursor, pOp->p3); next_tail: pC->cacheStatus = CACHE_STALE; VdbeBranchTaken(rc==SQLITE_OK,2); if( rc==SQLITE_OK ){ pC->nullRow = 0; p->aCounter[pOp->p5]++; #ifdef SQLITE_TEST sqlite3_search_count++; #endif goto jump_to_p2_and_check_for_interrupt; } if( rc!=SQLITE_DONE ) goto abort_due_to_error; rc = SQLITE_OK; pC->nullRow = 1; goto check_for_interrupt; } /* Opcode: IdxInsert P1 P2 P3 P4 P5 ** Synopsis: key=r[P2] ** ** Register P2 holds an SQL index key made using the ** MakeRecord instructions. This opcode writes that key ** into the index P1. Data for the entry is nil. ** ** If P4 is not zero, then it is the number of values in the unpacked ** key of reg(P2). In that case, P3 is the index of the first register ** for the unpacked key. The availability of the unpacked key can sometimes ** be an optimization. ** ** If P5 has the OPFLAG_APPEND bit set, that is a hint to the b-tree layer ** that this insert is likely to be an append. ** ** If P5 has the OPFLAG_NCHANGE bit set, then the change counter is ** incremented by this instruction. If the OPFLAG_NCHANGE bit is clear, ** then the change counter is unchanged. ** ** If the OPFLAG_USESEEKRESULT flag of P5 is set, the implementation might ** run faster by avoiding an unnecessary seek on cursor P1. However, ** the OPFLAG_USESEEKRESULT flag must only be set if there have been no prior ** seeks on the cursor or if the most recent seek used a key equivalent ** to P2. ** ** This instruction only works for indices. The equivalent instruction ** for tables is OP_Insert. */ case OP_IdxInsert: { /* in2 */ VdbeCursor *pC; BtreePayload x; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; sqlite3VdbeIncrWriteCounter(p, pC); assert( pC!=0 ); assert( !isSorter(pC) ); pIn2 = &aMem[pOp->p2]; assert( pIn2->flags & MEM_Blob ); if( pOp->p5 & OPFLAG_NCHANGE ) p->nChange++; assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->isTable==0 ); rc = ExpandBlob(pIn2); if( rc ) goto abort_due_to_error; x.nKey = pIn2->n; x.pKey = pIn2->z; x.aMem = aMem + pOp->p3; x.nMem = (u16)pOp->p4.i; rc = sqlite3BtreeInsert(pC->uc.pCursor, &x, (pOp->p5 & (OPFLAG_APPEND|OPFLAG_SAVEPOSITION)), ((pOp->p5 & OPFLAG_USESEEKRESULT) ? pC->seekResult : 0) ); assert( pC->deferredMoveto==0 ); pC->cacheStatus = CACHE_STALE; if( rc) goto abort_due_to_error; break; } /* Opcode: SorterInsert P1 P2 * * * ** Synopsis: key=r[P2] ** ** Register P2 holds an SQL index key made using the ** MakeRecord instructions. This opcode writes that key ** into the sorter P1. Data for the entry is nil. */ case OP_SorterInsert: { /* in2 */ VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; sqlite3VdbeIncrWriteCounter(p, pC); assert( pC!=0 ); assert( isSorter(pC) ); pIn2 = &aMem[pOp->p2]; assert( pIn2->flags & MEM_Blob ); assert( pC->isTable==0 ); rc = ExpandBlob(pIn2); if( rc ) goto abort_due_to_error; rc = sqlite3VdbeSorterWrite(pC, pIn2); if( rc) goto abort_due_to_error; break; } /* Opcode: IdxDelete P1 P2 P3 * P5 ** Synopsis: key=r[P2@P3] ** ** The content of P3 registers starting at register P2 form ** an unpacked index key. This opcode removes that entry from the ** index opened by cursor P1. ** ** If P5 is not zero, then raise an SQLITE_CORRUPT_INDEX error ** if no matching index entry is found. This happens when running ** an UPDATE or DELETE statement and the index entry to be updated ** or deleted is not found. For some uses of IdxDelete ** (example: the EXCEPT operator) it does not matter that no matching ** entry is found. For those cases, P5 is zero. */ case OP_IdxDelete: { VdbeCursor *pC; BtCursor *pCrsr; int res; UnpackedRecord r; assert( pOp->p3>0 ); assert( pOp->p2>0 && pOp->p2+pOp->p3<=(p->nMem+1 - p->nCursor)+1 ); assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); sqlite3VdbeIncrWriteCounter(p, pC); pCrsr = pC->uc.pCursor; assert( pCrsr!=0 ); r.pKeyInfo = pC->pKeyInfo; r.nField = (u16)pOp->p3; r.default_rc = 0; r.aMem = &aMem[pOp->p2]; rc = sqlite3BtreeMovetoUnpacked(pCrsr, &r, 0, 0, &res); if( rc ) goto abort_due_to_error; if( res==0 ){ rc = sqlite3BtreeDelete(pCrsr, BTREE_AUXDELETE); if( rc ) goto abort_due_to_error; }else if( pOp->p5 ){ rc = SQLITE_CORRUPT_INDEX; goto abort_due_to_error; } assert( pC->deferredMoveto==0 ); pC->cacheStatus = CACHE_STALE; pC->seekResult = 0; break; } /* Opcode: DeferredSeek P1 * P3 P4 * ** Synopsis: Move P3 to P1.rowid if needed ** ** P1 is an open index cursor and P3 is a cursor on the corresponding ** table. This opcode does a deferred seek of the P3 table cursor ** to the row that corresponds to the current row of P1. ** ** This is a deferred seek. Nothing actually happens until ** the cursor is used to read a record. That way, if no reads ** occur, no unnecessary I/O happens. ** ** P4 may be an array of integers (type P4_INTARRAY) containing ** one entry for each column in the P3 table. If array entry a(i) ** is non-zero, then reading column a(i)-1 from cursor P3 is ** equivalent to performing the deferred seek and then reading column i ** from P1. This information is stored in P3 and used to redirect ** reads against P3 over to P1, thus possibly avoiding the need to ** seek and read cursor P3. */ /* Opcode: IdxRowid P1 P2 * * * ** Synopsis: r[P2]=rowid ** ** Write into register P2 an integer which is the last entry in the record at ** the end of the index key pointed to by cursor P1. This integer should be ** the rowid of the table entry to which this index entry points. ** ** See also: Rowid, MakeRecord. */ case OP_DeferredSeek: case OP_IdxRowid: { /* out2 */ VdbeCursor *pC; /* The P1 index cursor */ VdbeCursor *pTabCur; /* The P2 table cursor (OP_DeferredSeek only) */ i64 rowid; /* Rowid that P1 current points to */ assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0 ); assert( pC->isTable==0 ); assert( pC->deferredMoveto==0 ); assert( !pC->nullRow || pOp->opcode==OP_IdxRowid ); /* The IdxRowid and Seek opcodes are combined because of the commonality ** of sqlite3VdbeCursorRestore() and sqlite3VdbeIdxRowid(). */ rc = sqlite3VdbeCursorRestore(pC); /* sqlite3VbeCursorRestore() can only fail if the record has been deleted ** out from under the cursor. That will never happens for an IdxRowid ** or Seek opcode */ if( NEVER(rc!=SQLITE_OK) ) goto abort_due_to_error; if( !pC->nullRow ){ rowid = 0; /* Not needed. Only used to silence a warning. */ rc = sqlite3VdbeIdxRowid(db, pC->uc.pCursor, &rowid); if( rc!=SQLITE_OK ){ goto abort_due_to_error; } if( pOp->opcode==OP_DeferredSeek ){ assert( pOp->p3>=0 && pOp->p3nCursor ); pTabCur = p->apCsr[pOp->p3]; assert( pTabCur!=0 ); assert( pTabCur->eCurType==CURTYPE_BTREE ); assert( pTabCur->uc.pCursor!=0 ); assert( pTabCur->isTable ); pTabCur->nullRow = 0; pTabCur->movetoTarget = rowid; pTabCur->deferredMoveto = 1; assert( pOp->p4type==P4_INTARRAY || pOp->p4.ai==0 ); pTabCur->aAltMap = pOp->p4.ai; pTabCur->pAltCursor = pC; }else{ pOut = out2Prerelease(p, pOp); pOut->u.i = rowid; } }else{ assert( pOp->opcode==OP_IdxRowid ); sqlite3VdbeMemSetNull(&aMem[pOp->p2]); } break; } /* Opcode: FinishSeek P1 * * * * ** ** If cursor P1 was previously moved via OP_DeferredSeek, complete that ** seek operation now, without further delay. If the cursor seek has ** already occurred, this instruction is a no-op. */ case OP_FinishSeek: { VdbeCursor *pC; /* The P1 index cursor */ assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; if( pC->deferredMoveto ){ rc = sqlite3VdbeFinishMoveto(pC); if( rc ) goto abort_due_to_error; } break; } /* Opcode: IdxGE P1 P2 P3 P4 P5 ** Synopsis: key=r[P3@P4] ** ** The P4 register values beginning with P3 form an unpacked index ** key that omits the PRIMARY KEY. Compare this key value against the index ** that P1 is currently pointing to, ignoring the PRIMARY KEY or ROWID ** fields at the end. ** ** If the P1 index entry is greater than or equal to the key value ** then jump to P2. Otherwise fall through to the next instruction. */ /* Opcode: IdxGT P1 P2 P3 P4 P5 ** Synopsis: key=r[P3@P4] ** ** The P4 register values beginning with P3 form an unpacked index ** key that omits the PRIMARY KEY. Compare this key value against the index ** that P1 is currently pointing to, ignoring the PRIMARY KEY or ROWID ** fields at the end. ** ** If the P1 index entry is greater than the key value ** then jump to P2. Otherwise fall through to the next instruction. */ /* Opcode: IdxLT P1 P2 P3 P4 P5 ** Synopsis: key=r[P3@P4] ** ** The P4 register values beginning with P3 form an unpacked index ** key that omits the PRIMARY KEY or ROWID. Compare this key value against ** the index that P1 is currently pointing to, ignoring the PRIMARY KEY or ** ROWID on the P1 index. ** ** If the P1 index entry is less than the key value then jump to P2. ** Otherwise fall through to the next instruction. */ /* Opcode: IdxLE P1 P2 P3 P4 P5 ** Synopsis: key=r[P3@P4] ** ** The P4 register values beginning with P3 form an unpacked index ** key that omits the PRIMARY KEY or ROWID. Compare this key value against ** the index that P1 is currently pointing to, ignoring the PRIMARY KEY or ** ROWID on the P1 index. ** ** If the P1 index entry is less than or equal to the key value then jump ** to P2. Otherwise fall through to the next instruction. */ case OP_IdxLE: /* jump */ case OP_IdxGT: /* jump */ case OP_IdxLT: /* jump */ case OP_IdxGE: { /* jump */ VdbeCursor *pC; int res; UnpackedRecord r; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->isOrdered ); assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->uc.pCursor!=0); assert( pC->deferredMoveto==0 ); assert( pOp->p5==0 || pOp->p5==1 ); assert( pOp->p4type==P4_INT32 ); r.pKeyInfo = pC->pKeyInfo; r.nField = (u16)pOp->p4.i; if( pOp->opcodeopcode==OP_IdxLE || pOp->opcode==OP_IdxGT ); r.default_rc = -1; }else{ assert( pOp->opcode==OP_IdxGE || pOp->opcode==OP_IdxLT ); r.default_rc = 0; } r.aMem = &aMem[pOp->p3]; #ifdef SQLITE_DEBUG { int i; for(i=0; ip3+i, &aMem[pOp->p3+i]); } } #endif res = 0; /* Not needed. Only used to silence a warning. */ rc = sqlite3VdbeIdxKeyCompare(db, pC, &r, &res); assert( (OP_IdxLE&1)==(OP_IdxLT&1) && (OP_IdxGE&1)==(OP_IdxGT&1) ); if( (pOp->opcode&1)==(OP_IdxLT&1) ){ assert( pOp->opcode==OP_IdxLE || pOp->opcode==OP_IdxLT ); res = -res; }else{ assert( pOp->opcode==OP_IdxGE || pOp->opcode==OP_IdxGT ); res++; } VdbeBranchTaken(res>0,2); if( rc ) goto abort_due_to_error; if( res>0 ) goto jump_to_p2; break; } /* Opcode: Destroy P1 P2 P3 * * ** ** Delete an entire database table or index whose root page in the database ** file is given by P1. ** ** The table being destroyed is in the main database file if P3==0. If ** P3==1 then the table to be clear is in the auxiliary database file ** that is used to store tables create using CREATE TEMPORARY TABLE. ** ** If AUTOVACUUM is enabled then it is possible that another root page ** might be moved into the newly deleted root page in order to keep all ** root pages contiguous at the beginning of the database. The former ** value of the root page that moved - its value before the move occurred - ** is stored in register P2. If no page movement was required (because the ** table being dropped was already the last one in the database) then a ** zero is stored in register P2. If AUTOVACUUM is disabled then a zero ** is stored in register P2. ** ** This opcode throws an error if there are any active reader VMs when ** it is invoked. This is done to avoid the difficulty associated with ** updating existing cursors when a root page is moved in an AUTOVACUUM ** database. This error is thrown even if the database is not an AUTOVACUUM ** db in order to avoid introducing an incompatibility between autovacuum ** and non-autovacuum modes. ** ** See also: Clear */ case OP_Destroy: { /* out2 */ int iMoved; int iDb; sqlite3VdbeIncrWriteCounter(p, 0); assert( p->readOnly==0 ); assert( pOp->p1>1 ); pOut = out2Prerelease(p, pOp); pOut->flags = MEM_Null; if( db->nVdbeRead > db->nVDestroy+1 ){ rc = SQLITE_LOCKED; p->errorAction = OE_Abort; goto abort_due_to_error; }else{ iDb = pOp->p3; assert( DbMaskTest(p->btreeMask, iDb) ); iMoved = 0; /* Not needed. Only to silence a warning. */ rc = sqlite3BtreeDropTable(db->aDb[iDb].pBt, pOp->p1, &iMoved); pOut->flags = MEM_Int; pOut->u.i = iMoved; if( rc ) goto abort_due_to_error; #ifndef SQLITE_OMIT_AUTOVACUUM if( iMoved!=0 ){ sqlite3RootPageMoved(db, iDb, iMoved, pOp->p1); /* All OP_Destroy operations occur on the same btree */ assert( resetSchemaOnFault==0 || resetSchemaOnFault==iDb+1 ); resetSchemaOnFault = iDb+1; } #endif } break; } /* Opcode: Clear P1 P2 P3 ** ** Delete all contents of the database table or index whose root page ** in the database file is given by P1. But, unlike Destroy, do not ** remove the table or index from the database file. ** ** The table being clear is in the main database file if P2==0. If ** P2==1 then the table to be clear is in the auxiliary database file ** that is used to store tables create using CREATE TEMPORARY TABLE. ** ** If the P3 value is non-zero, then the table referred to must be an ** intkey table (an SQL table, not an index). In this case the row change ** count is incremented by the number of rows in the table being cleared. ** If P3 is greater than zero, then the value stored in register P3 is ** also incremented by the number of rows in the table being cleared. ** ** See also: Destroy */ case OP_Clear: { int nChange; sqlite3VdbeIncrWriteCounter(p, 0); nChange = 0; assert( p->readOnly==0 ); assert( DbMaskTest(p->btreeMask, pOp->p2) ); rc = sqlite3BtreeClearTable( db->aDb[pOp->p2].pBt, (u32)pOp->p1, (pOp->p3 ? &nChange : 0) ); if( pOp->p3 ){ p->nChange += nChange; if( pOp->p3>0 ){ assert( memIsValid(&aMem[pOp->p3]) ); memAboutToChange(p, &aMem[pOp->p3]); aMem[pOp->p3].u.i += nChange; } } if( rc ) goto abort_due_to_error; break; } /* Opcode: ResetSorter P1 * * * * ** ** Delete all contents from the ephemeral table or sorter ** that is open on cursor P1. ** ** This opcode only works for cursors used for sorting and ** opened with OP_OpenEphemeral or OP_SorterOpen. */ case OP_ResetSorter: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); if( isSorter(pC) ){ sqlite3VdbeSorterReset(db, pC->uc.pSorter); }else{ assert( pC->eCurType==CURTYPE_BTREE ); assert( pC->isEphemeral ); rc = sqlite3BtreeClearTableOfCursor(pC->uc.pCursor); if( rc ) goto abort_due_to_error; } break; } /* Opcode: CreateBtree P1 P2 P3 * * ** Synopsis: r[P2]=root iDb=P1 flags=P3 ** ** Allocate a new b-tree in the main database file if P1==0 or in the ** TEMP database file if P1==1 or in an attached database if ** P1>1. The P3 argument must be 1 (BTREE_INTKEY) for a rowid table ** it must be 2 (BTREE_BLOBKEY) for an index or WITHOUT ROWID table. ** The root page number of the new b-tree is stored in register P2. */ case OP_CreateBtree: { /* out2 */ Pgno pgno; Db *pDb; sqlite3VdbeIncrWriteCounter(p, 0); pOut = out2Prerelease(p, pOp); pgno = 0; assert( pOp->p3==BTREE_INTKEY || pOp->p3==BTREE_BLOBKEY ); assert( pOp->p1>=0 && pOp->p1nDb ); assert( DbMaskTest(p->btreeMask, pOp->p1) ); assert( p->readOnly==0 ); pDb = &db->aDb[pOp->p1]; assert( pDb->pBt!=0 ); rc = sqlite3BtreeCreateTable(pDb->pBt, &pgno, pOp->p3); if( rc ) goto abort_due_to_error; pOut->u.i = pgno; break; } /* Opcode: SqlExec * * * P4 * ** ** Run the SQL statement or statements specified in the P4 string. */ case OP_SqlExec: { sqlite3VdbeIncrWriteCounter(p, 0); db->nSqlExec++; rc = sqlite3_exec(db, pOp->p4.z, 0, 0, 0); db->nSqlExec--; if( rc ) goto abort_due_to_error; break; } /* Opcode: ParseSchema P1 * * P4 * ** ** Read and parse all entries from the schema table of database P1 ** that match the WHERE clause P4. If P4 is a NULL pointer, then the ** entire schema for P1 is reparsed. ** ** This opcode invokes the parser to create a new virtual machine, ** then runs the new virtual machine. It is thus a re-entrant opcode. */ case OP_ParseSchema: { int iDb; const char *zSchema; char *zSql; InitData initData; /* Any prepared statement that invokes this opcode will hold mutexes ** on every btree. This is a prerequisite for invoking ** sqlite3InitCallback(). */ #ifdef SQLITE_DEBUG for(iDb=0; iDbnDb; iDb++){ assert( iDb==1 || sqlite3BtreeHoldsMutex(db->aDb[iDb].pBt) ); } #endif iDb = pOp->p1; assert( iDb>=0 && iDbnDb ); assert( DbHasProperty(db, iDb, DB_SchemaLoaded) ); #ifndef SQLITE_OMIT_ALTERTABLE if( pOp->p4.z==0 ){ sqlite3SchemaClear(db->aDb[iDb].pSchema); db->mDbFlags &= ~DBFLAG_SchemaKnownOk; rc = sqlite3InitOne(db, iDb, &p->zErrMsg, INITFLAG_AlterTable); db->mDbFlags |= DBFLAG_SchemaChange; p->expired = 0; }else #endif { zSchema = DFLT_SCHEMA_TABLE; initData.db = db; initData.iDb = iDb; initData.pzErrMsg = &p->zErrMsg; initData.mInitFlags = 0; initData.mxPage = sqlite3BtreeLastPage(db->aDb[iDb].pBt); zSql = sqlite3MPrintf(db, "SELECT*FROM\"%w\".%s WHERE %s ORDER BY rowid", db->aDb[iDb].zDbSName, zSchema, pOp->p4.z); if( zSql==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ assert( db->init.busy==0 ); db->init.busy = 1; initData.rc = SQLITE_OK; initData.nInitRow = 0; assert( !db->mallocFailed ); rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0); if( rc==SQLITE_OK ) rc = initData.rc; if( rc==SQLITE_OK && initData.nInitRow==0 ){ /* The OP_ParseSchema opcode with a non-NULL P4 argument should parse ** at least one SQL statement. Any less than that indicates that ** the sqlite_schema table is corrupt. */ rc = SQLITE_CORRUPT_BKPT; } sqlite3DbFreeNN(db, zSql); db->init.busy = 0; } } if( rc ){ sqlite3ResetAllSchemasOfConnection(db); if( rc==SQLITE_NOMEM ){ goto no_mem; } goto abort_due_to_error; } break; } #if !defined(SQLITE_OMIT_ANALYZE) /* Opcode: LoadAnalysis P1 * * * * ** ** Read the sqlite_stat1 table for database P1 and load the content ** of that table into the internal index hash table. This will cause ** the analysis to be used when preparing all subsequent queries. */ case OP_LoadAnalysis: { assert( pOp->p1>=0 && pOp->p1nDb ); rc = sqlite3AnalysisLoad(db, pOp->p1); if( rc ) goto abort_due_to_error; break; } #endif /* !defined(SQLITE_OMIT_ANALYZE) */ /* Opcode: DropTable P1 * * P4 * ** ** Remove the internal (in-memory) data structures that describe ** the table named P4 in database P1. This is called after a table ** is dropped from disk (using the Destroy opcode) in order to keep ** the internal representation of the ** schema consistent with what is on disk. */ case OP_DropTable: { sqlite3VdbeIncrWriteCounter(p, 0); sqlite3UnlinkAndDeleteTable(db, pOp->p1, pOp->p4.z); break; } /* Opcode: DropIndex P1 * * P4 * ** ** Remove the internal (in-memory) data structures that describe ** the index named P4 in database P1. This is called after an index ** is dropped from disk (using the Destroy opcode) ** in order to keep the internal representation of the ** schema consistent with what is on disk. */ case OP_DropIndex: { sqlite3VdbeIncrWriteCounter(p, 0); sqlite3UnlinkAndDeleteIndex(db, pOp->p1, pOp->p4.z); break; } /* Opcode: DropTrigger P1 * * P4 * ** ** Remove the internal (in-memory) data structures that describe ** the trigger named P4 in database P1. This is called after a trigger ** is dropped from disk (using the Destroy opcode) in order to keep ** the internal representation of the ** schema consistent with what is on disk. */ case OP_DropTrigger: { sqlite3VdbeIncrWriteCounter(p, 0); sqlite3UnlinkAndDeleteTrigger(db, pOp->p1, pOp->p4.z); break; } #ifndef SQLITE_OMIT_INTEGRITY_CHECK /* Opcode: IntegrityCk P1 P2 P3 P4 P5 ** ** Do an analysis of the currently open database. Store in ** register P1 the text of an error message describing any problems. ** If no problems are found, store a NULL in register P1. ** ** The register P3 contains one less than the maximum number of allowed errors. ** At most reg(P3) errors will be reported. ** In other words, the analysis stops as soon as reg(P1) errors are ** seen. Reg(P1) is updated with the number of errors remaining. ** ** The root page numbers of all tables in the database are integers ** stored in P4_INTARRAY argument. ** ** If P5 is not zero, the check is done on the auxiliary database ** file, not the main database file. ** ** This opcode is used to implement the integrity_check pragma. */ case OP_IntegrityCk: { int nRoot; /* Number of tables to check. (Number of root pages.) */ Pgno *aRoot; /* Array of rootpage numbers for tables to be checked */ int nErr; /* Number of errors reported */ char *z; /* Text of the error report */ Mem *pnErr; /* Register keeping track of errors remaining */ assert( p->bIsReader ); nRoot = pOp->p2; aRoot = pOp->p4.ai; assert( nRoot>0 ); assert( aRoot[0]==(Pgno)nRoot ); assert( pOp->p3>0 && pOp->p3<=(p->nMem+1 - p->nCursor) ); pnErr = &aMem[pOp->p3]; assert( (pnErr->flags & MEM_Int)!=0 ); assert( (pnErr->flags & (MEM_Str|MEM_Blob))==0 ); pIn1 = &aMem[pOp->p1]; assert( pOp->p5nDb ); assert( DbMaskTest(p->btreeMask, pOp->p5) ); z = sqlite3BtreeIntegrityCheck(db, db->aDb[pOp->p5].pBt, &aRoot[1], nRoot, (int)pnErr->u.i+1, &nErr); sqlite3VdbeMemSetNull(pIn1); if( nErr==0 ){ assert( z==0 ); }else if( z==0 ){ goto no_mem; }else{ pnErr->u.i -= nErr-1; sqlite3VdbeMemSetStr(pIn1, z, -1, SQLITE_UTF8, sqlite3_free); } UPDATE_MAX_BLOBSIZE(pIn1); sqlite3VdbeChangeEncoding(pIn1, encoding); goto check_for_interrupt; } #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ /* Opcode: RowSetAdd P1 P2 * * * ** Synopsis: rowset(P1)=r[P2] ** ** Insert the integer value held by register P2 into a RowSet object ** held in register P1. ** ** An assertion fails if P2 is not an integer. */ case OP_RowSetAdd: { /* in1, in2 */ pIn1 = &aMem[pOp->p1]; pIn2 = &aMem[pOp->p2]; assert( (pIn2->flags & MEM_Int)!=0 ); if( (pIn1->flags & MEM_Blob)==0 ){ if( sqlite3VdbeMemSetRowSet(pIn1) ) goto no_mem; } assert( sqlite3VdbeMemIsRowSet(pIn1) ); sqlite3RowSetInsert((RowSet*)pIn1->z, pIn2->u.i); break; } /* Opcode: RowSetRead P1 P2 P3 * * ** Synopsis: r[P3]=rowset(P1) ** ** Extract the smallest value from the RowSet object in P1 ** and put that value into register P3. ** Or, if RowSet object P1 is initially empty, leave P3 ** unchanged and jump to instruction P2. */ case OP_RowSetRead: { /* jump, in1, out3 */ i64 val; pIn1 = &aMem[pOp->p1]; assert( (pIn1->flags & MEM_Blob)==0 || sqlite3VdbeMemIsRowSet(pIn1) ); if( (pIn1->flags & MEM_Blob)==0 || sqlite3RowSetNext((RowSet*)pIn1->z, &val)==0 ){ /* The boolean index is empty */ sqlite3VdbeMemSetNull(pIn1); VdbeBranchTaken(1,2); goto jump_to_p2_and_check_for_interrupt; }else{ /* A value was pulled from the index */ VdbeBranchTaken(0,2); sqlite3VdbeMemSetInt64(&aMem[pOp->p3], val); } goto check_for_interrupt; } /* Opcode: RowSetTest P1 P2 P3 P4 ** Synopsis: if r[P3] in rowset(P1) goto P2 ** ** Register P3 is assumed to hold a 64-bit integer value. If register P1 ** contains a RowSet object and that RowSet object contains ** the value held in P3, jump to register P2. Otherwise, insert the ** integer in P3 into the RowSet and continue on to the ** next opcode. ** ** The RowSet object is optimized for the case where sets of integers ** are inserted in distinct phases, which each set contains no duplicates. ** Each set is identified by a unique P4 value. The first set ** must have P4==0, the final set must have P4==-1, and for all other sets ** must have P4>0. ** ** This allows optimizations: (a) when P4==0 there is no need to test ** the RowSet object for P3, as it is guaranteed not to contain it, ** (b) when P4==-1 there is no need to insert the value, as it will ** never be tested for, and (c) when a value that is part of set X is ** inserted, there is no need to search to see if the same value was ** previously inserted as part of set X (only if it was previously ** inserted as part of some other set). */ case OP_RowSetTest: { /* jump, in1, in3 */ int iSet; int exists; pIn1 = &aMem[pOp->p1]; pIn3 = &aMem[pOp->p3]; iSet = pOp->p4.i; assert( pIn3->flags&MEM_Int ); /* If there is anything other than a rowset object in memory cell P1, ** delete it now and initialize P1 with an empty rowset */ if( (pIn1->flags & MEM_Blob)==0 ){ if( sqlite3VdbeMemSetRowSet(pIn1) ) goto no_mem; } assert( sqlite3VdbeMemIsRowSet(pIn1) ); assert( pOp->p4type==P4_INT32 ); assert( iSet==-1 || iSet>=0 ); if( iSet ){ exists = sqlite3RowSetTest((RowSet*)pIn1->z, iSet, pIn3->u.i); VdbeBranchTaken(exists!=0,2); if( exists ) goto jump_to_p2; } if( iSet>=0 ){ sqlite3RowSetInsert((RowSet*)pIn1->z, pIn3->u.i); } break; } #ifndef SQLITE_OMIT_TRIGGER /* Opcode: Program P1 P2 P3 P4 P5 ** ** Execute the trigger program passed as P4 (type P4_SUBPROGRAM). ** ** P1 contains the address of the memory cell that contains the first memory ** cell in an array of values used as arguments to the sub-program. P2 ** contains the address to jump to if the sub-program throws an IGNORE ** exception using the RAISE() function. Register P3 contains the address ** of a memory cell in this (the parent) VM that is used to allocate the ** memory required by the sub-vdbe at runtime. ** ** P4 is a pointer to the VM containing the trigger program. ** ** If P5 is non-zero, then recursive program invocation is enabled. */ case OP_Program: { /* jump */ int nMem; /* Number of memory registers for sub-program */ int nByte; /* Bytes of runtime space required for sub-program */ Mem *pRt; /* Register to allocate runtime space */ Mem *pMem; /* Used to iterate through memory cells */ Mem *pEnd; /* Last memory cell in new array */ VdbeFrame *pFrame; /* New vdbe frame to execute in */ SubProgram *pProgram; /* Sub-program to execute */ void *t; /* Token identifying trigger */ pProgram = pOp->p4.pProgram; pRt = &aMem[pOp->p3]; assert( pProgram->nOp>0 ); /* If the p5 flag is clear, then recursive invocation of triggers is ** disabled for backwards compatibility (p5 is set if this sub-program ** is really a trigger, not a foreign key action, and the flag set ** and cleared by the "PRAGMA recursive_triggers" command is clear). ** ** It is recursive invocation of triggers, at the SQL level, that is ** disabled. In some cases a single trigger may generate more than one ** SubProgram (if the trigger may be executed with more than one different ** ON CONFLICT algorithm). SubProgram structures associated with a ** single trigger all have the same value for the SubProgram.token ** variable. */ if( pOp->p5 ){ t = pProgram->token; for(pFrame=p->pFrame; pFrame && pFrame->token!=t; pFrame=pFrame->pParent); if( pFrame ) break; } if( p->nFrame>=db->aLimit[SQLITE_LIMIT_TRIGGER_DEPTH] ){ rc = SQLITE_ERROR; sqlite3VdbeError(p, "too many levels of trigger recursion"); goto abort_due_to_error; } /* Register pRt is used to store the memory required to save the state ** of the current program, and the memory required at runtime to execute ** the trigger program. If this trigger has been fired before, then pRt ** is already allocated. Otherwise, it must be initialized. */ if( (pRt->flags&MEM_Blob)==0 ){ /* SubProgram.nMem is set to the number of memory cells used by the ** program stored in SubProgram.aOp. As well as these, one memory ** cell is required for each cursor used by the program. Set local ** variable nMem (and later, VdbeFrame.nChildMem) to this value. */ nMem = pProgram->nMem + pProgram->nCsr; assert( nMem>0 ); if( pProgram->nCsr==0 ) nMem++; nByte = ROUND8(sizeof(VdbeFrame)) + nMem * sizeof(Mem) + pProgram->nCsr * sizeof(VdbeCursor*) + (pProgram->nOp + 7)/8; pFrame = sqlite3DbMallocZero(db, nByte); if( !pFrame ){ goto no_mem; } sqlite3VdbeMemRelease(pRt); pRt->flags = MEM_Blob|MEM_Dyn; pRt->z = (char*)pFrame; pRt->n = nByte; pRt->xDel = sqlite3VdbeFrameMemDel; pFrame->v = p; pFrame->nChildMem = nMem; pFrame->nChildCsr = pProgram->nCsr; pFrame->pc = (int)(pOp - aOp); pFrame->aMem = p->aMem; pFrame->nMem = p->nMem; pFrame->apCsr = p->apCsr; pFrame->nCursor = p->nCursor; pFrame->aOp = p->aOp; pFrame->nOp = p->nOp; pFrame->token = pProgram->token; #ifdef SQLITE_ENABLE_STMT_SCANSTATUS pFrame->anExec = p->anExec; #endif #ifdef SQLITE_DEBUG pFrame->iFrameMagic = SQLITE_FRAME_MAGIC; #endif pEnd = &VdbeFrameMem(pFrame)[pFrame->nChildMem]; for(pMem=VdbeFrameMem(pFrame); pMem!=pEnd; pMem++){ pMem->flags = MEM_Undefined; pMem->db = db; } }else{ pFrame = (VdbeFrame*)pRt->z; assert( pRt->xDel==sqlite3VdbeFrameMemDel ); assert( pProgram->nMem+pProgram->nCsr==pFrame->nChildMem || (pProgram->nCsr==0 && pProgram->nMem+1==pFrame->nChildMem) ); assert( pProgram->nCsr==pFrame->nChildCsr ); assert( (int)(pOp - aOp)==pFrame->pc ); } p->nFrame++; pFrame->pParent = p->pFrame; pFrame->lastRowid = db->lastRowid; pFrame->nChange = p->nChange; pFrame->nDbChange = p->db->nChange; assert( pFrame->pAuxData==0 ); pFrame->pAuxData = p->pAuxData; p->pAuxData = 0; p->nChange = 0; p->pFrame = pFrame; p->aMem = aMem = VdbeFrameMem(pFrame); p->nMem = pFrame->nChildMem; p->nCursor = (u16)pFrame->nChildCsr; p->apCsr = (VdbeCursor **)&aMem[p->nMem]; pFrame->aOnce = (u8*)&p->apCsr[pProgram->nCsr]; memset(pFrame->aOnce, 0, (pProgram->nOp + 7)/8); p->aOp = aOp = pProgram->aOp; p->nOp = pProgram->nOp; #ifdef SQLITE_ENABLE_STMT_SCANSTATUS p->anExec = 0; #endif #ifdef SQLITE_DEBUG /* Verify that second and subsequent executions of the same trigger do not ** try to reuse register values from the first use. */ { int i; for(i=0; inMem; i++){ aMem[i].pScopyFrom = 0; /* Prevent false-positive AboutToChange() errs */ MemSetTypeFlag(&aMem[i], MEM_Undefined); /* Fault if this reg is reused */ } } #endif pOp = &aOp[-1]; goto check_for_interrupt; } /* Opcode: Param P1 P2 * * * ** ** This opcode is only ever present in sub-programs called via the ** OP_Program instruction. Copy a value currently stored in a memory ** cell of the calling (parent) frame to cell P2 in the current frames ** address space. This is used by trigger programs to access the new.* ** and old.* values. ** ** The address of the cell in the parent frame is determined by adding ** the value of the P1 argument to the value of the P1 argument to the ** calling OP_Program instruction. */ case OP_Param: { /* out2 */ VdbeFrame *pFrame; Mem *pIn; pOut = out2Prerelease(p, pOp); pFrame = p->pFrame; pIn = &pFrame->aMem[pOp->p1 + pFrame->aOp[pFrame->pc].p1]; sqlite3VdbeMemShallowCopy(pOut, pIn, MEM_Ephem); break; } #endif /* #ifndef SQLITE_OMIT_TRIGGER */ #ifndef SQLITE_OMIT_FOREIGN_KEY /* Opcode: FkCounter P1 P2 * * * ** Synopsis: fkctr[P1]+=P2 ** ** Increment a "constraint counter" by P2 (P2 may be negative or positive). ** If P1 is non-zero, the database constraint counter is incremented ** (deferred foreign key constraints). Otherwise, if P1 is zero, the ** statement counter is incremented (immediate foreign key constraints). */ case OP_FkCounter: { if( db->flags & SQLITE_DeferFKs ){ db->nDeferredImmCons += pOp->p2; }else if( pOp->p1 ){ db->nDeferredCons += pOp->p2; }else{ p->nFkConstraint += pOp->p2; } break; } /* Opcode: FkIfZero P1 P2 * * * ** Synopsis: if fkctr[P1]==0 goto P2 ** ** This opcode tests if a foreign key constraint-counter is currently zero. ** If so, jump to instruction P2. Otherwise, fall through to the next ** instruction. ** ** If P1 is non-zero, then the jump is taken if the database constraint-counter ** is zero (the one that counts deferred constraint violations). If P1 is ** zero, the jump is taken if the statement constraint-counter is zero ** (immediate foreign key constraint violations). */ case OP_FkIfZero: { /* jump */ if( pOp->p1 ){ VdbeBranchTaken(db->nDeferredCons==0 && db->nDeferredImmCons==0, 2); if( db->nDeferredCons==0 && db->nDeferredImmCons==0 ) goto jump_to_p2; }else{ VdbeBranchTaken(p->nFkConstraint==0 && db->nDeferredImmCons==0, 2); if( p->nFkConstraint==0 && db->nDeferredImmCons==0 ) goto jump_to_p2; } break; } #endif /* #ifndef SQLITE_OMIT_FOREIGN_KEY */ #ifndef SQLITE_OMIT_AUTOINCREMENT /* Opcode: MemMax P1 P2 * * * ** Synopsis: r[P1]=max(r[P1],r[P2]) ** ** P1 is a register in the root frame of this VM (the root frame is ** different from the current frame if this instruction is being executed ** within a sub-program). Set the value of register P1 to the maximum of ** its current value and the value in register P2. ** ** This instruction throws an error if the memory cell is not initially ** an integer. */ case OP_MemMax: { /* in2 */ VdbeFrame *pFrame; if( p->pFrame ){ for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent); pIn1 = &pFrame->aMem[pOp->p1]; }else{ pIn1 = &aMem[pOp->p1]; } assert( memIsValid(pIn1) ); sqlite3VdbeMemIntegerify(pIn1); pIn2 = &aMem[pOp->p2]; sqlite3VdbeMemIntegerify(pIn2); if( pIn1->u.iu.i){ pIn1->u.i = pIn2->u.i; } break; } #endif /* SQLITE_OMIT_AUTOINCREMENT */ /* Opcode: IfPos P1 P2 P3 * * ** Synopsis: if r[P1]>0 then r[P1]-=P3, goto P2 ** ** Register P1 must contain an integer. ** If the value of register P1 is 1 or greater, subtract P3 from the ** value in P1 and jump to P2. ** ** If the initial value of register P1 is less than 1, then the ** value is unchanged and control passes through to the next instruction. */ case OP_IfPos: { /* jump, in1 */ pIn1 = &aMem[pOp->p1]; assert( pIn1->flags&MEM_Int ); VdbeBranchTaken( pIn1->u.i>0, 2); if( pIn1->u.i>0 ){ pIn1->u.i -= pOp->p3; goto jump_to_p2; } break; } /* Opcode: OffsetLimit P1 P2 P3 * * ** Synopsis: if r[P1]>0 then r[P2]=r[P1]+max(0,r[P3]) else r[P2]=(-1) ** ** This opcode performs a commonly used computation associated with ** LIMIT and OFFSET process. r[P1] holds the limit counter. r[P3] ** holds the offset counter. The opcode computes the combined value ** of the LIMIT and OFFSET and stores that value in r[P2]. The r[P2] ** value computed is the total number of rows that will need to be ** visited in order to complete the query. ** ** If r[P3] is zero or negative, that means there is no OFFSET ** and r[P2] is set to be the value of the LIMIT, r[P1]. ** ** if r[P1] is zero or negative, that means there is no LIMIT ** and r[P2] is set to -1. ** ** Otherwise, r[P2] is set to the sum of r[P1] and r[P3]. */ case OP_OffsetLimit: { /* in1, out2, in3 */ i64 x; pIn1 = &aMem[pOp->p1]; pIn3 = &aMem[pOp->p3]; pOut = out2Prerelease(p, pOp); assert( pIn1->flags & MEM_Int ); assert( pIn3->flags & MEM_Int ); x = pIn1->u.i; if( x<=0 || sqlite3AddInt64(&x, pIn3->u.i>0?pIn3->u.i:0) ){ /* If the LIMIT is less than or equal to zero, loop forever. This ** is documented. But also, if the LIMIT+OFFSET exceeds 2^63 then ** also loop forever. This is undocumented. In fact, one could argue ** that the loop should terminate. But assuming 1 billion iterations ** per second (far exceeding the capabilities of any current hardware) ** it would take nearly 300 years to actually reach the limit. So ** looping forever is a reasonable approximation. */ pOut->u.i = -1; }else{ pOut->u.i = x; } break; } /* Opcode: IfNotZero P1 P2 * * * ** Synopsis: if r[P1]!=0 then r[P1]--, goto P2 ** ** Register P1 must contain an integer. If the content of register P1 is ** initially greater than zero, then decrement the value in register P1. ** If it is non-zero (negative or positive) and then also jump to P2. ** If register P1 is initially zero, leave it unchanged and fall through. */ case OP_IfNotZero: { /* jump, in1 */ pIn1 = &aMem[pOp->p1]; assert( pIn1->flags&MEM_Int ); VdbeBranchTaken(pIn1->u.i<0, 2); if( pIn1->u.i ){ if( pIn1->u.i>0 ) pIn1->u.i--; goto jump_to_p2; } break; } /* Opcode: DecrJumpZero P1 P2 * * * ** Synopsis: if (--r[P1])==0 goto P2 ** ** Register P1 must hold an integer. Decrement the value in P1 ** and jump to P2 if the new value is exactly zero. */ case OP_DecrJumpZero: { /* jump, in1 */ pIn1 = &aMem[pOp->p1]; assert( pIn1->flags&MEM_Int ); if( pIn1->u.i>SMALLEST_INT64 ) pIn1->u.i--; VdbeBranchTaken(pIn1->u.i==0, 2); if( pIn1->u.i==0 ) goto jump_to_p2; break; } /* Opcode: AggStep * P2 P3 P4 P5 ** Synopsis: accum=r[P3] step(r[P2@P5]) ** ** Execute the xStep function for an aggregate. ** The function has P5 arguments. P4 is a pointer to the ** FuncDef structure that specifies the function. Register P3 is the ** accumulator. ** ** The P5 arguments are taken from register P2 and its ** successors. */ /* Opcode: AggInverse * P2 P3 P4 P5 ** Synopsis: accum=r[P3] inverse(r[P2@P5]) ** ** Execute the xInverse function for an aggregate. ** The function has P5 arguments. P4 is a pointer to the ** FuncDef structure that specifies the function. Register P3 is the ** accumulator. ** ** The P5 arguments are taken from register P2 and its ** successors. */ /* Opcode: AggStep1 P1 P2 P3 P4 P5 ** Synopsis: accum=r[P3] step(r[P2@P5]) ** ** Execute the xStep (if P1==0) or xInverse (if P1!=0) function for an ** aggregate. The function has P5 arguments. P4 is a pointer to the ** FuncDef structure that specifies the function. Register P3 is the ** accumulator. ** ** The P5 arguments are taken from register P2 and its ** successors. ** ** This opcode is initially coded as OP_AggStep0. On first evaluation, ** the FuncDef stored in P4 is converted into an sqlite3_context and ** the opcode is changed. In this way, the initialization of the ** sqlite3_context only happens once, instead of on each call to the ** step function. */ case OP_AggInverse: case OP_AggStep: { int n; sqlite3_context *pCtx; assert( pOp->p4type==P4_FUNCDEF ); n = pOp->p5; assert( pOp->p3>0 && pOp->p3<=(p->nMem+1 - p->nCursor) ); assert( n==0 || (pOp->p2>0 && pOp->p2+n<=(p->nMem+1 - p->nCursor)+1) ); assert( pOp->p3p2 || pOp->p3>=pOp->p2+n ); pCtx = sqlite3DbMallocRawNN(db, n*sizeof(sqlite3_value*) + (sizeof(pCtx[0]) + sizeof(Mem) - sizeof(sqlite3_value*))); if( pCtx==0 ) goto no_mem; pCtx->pMem = 0; pCtx->pOut = (Mem*)&(pCtx->argv[n]); sqlite3VdbeMemInit(pCtx->pOut, db, MEM_Null); pCtx->pFunc = pOp->p4.pFunc; pCtx->iOp = (int)(pOp - aOp); pCtx->pVdbe = p; pCtx->skipFlag = 0; pCtx->isError = 0; pCtx->argc = n; pOp->p4type = P4_FUNCCTX; pOp->p4.pCtx = pCtx; /* OP_AggInverse must have P1==1 and OP_AggStep must have P1==0 */ assert( pOp->p1==(pOp->opcode==OP_AggInverse) ); pOp->opcode = OP_AggStep1; /* Fall through into OP_AggStep */ /* no break */ deliberate_fall_through } case OP_AggStep1: { int i; sqlite3_context *pCtx; Mem *pMem; assert( pOp->p4type==P4_FUNCCTX ); pCtx = pOp->p4.pCtx; pMem = &aMem[pOp->p3]; #ifdef SQLITE_DEBUG if( pOp->p1 ){ /* This is an OP_AggInverse call. Verify that xStep has always ** been called at least once prior to any xInverse call. */ assert( pMem->uTemp==0x1122e0e3 ); }else{ /* This is an OP_AggStep call. Mark it as such. */ pMem->uTemp = 0x1122e0e3; } #endif /* If this function is inside of a trigger, the register array in aMem[] ** might change from one evaluation to the next. The next block of code ** checks to see if the register array has changed, and if so it ** reinitializes the relavant parts of the sqlite3_context object */ if( pCtx->pMem != pMem ){ pCtx->pMem = pMem; for(i=pCtx->argc-1; i>=0; i--) pCtx->argv[i] = &aMem[pOp->p2+i]; } #ifdef SQLITE_DEBUG for(i=0; iargc; i++){ assert( memIsValid(pCtx->argv[i]) ); REGISTER_TRACE(pOp->p2+i, pCtx->argv[i]); } #endif pMem->n++; assert( pCtx->pOut->flags==MEM_Null ); assert( pCtx->isError==0 ); assert( pCtx->skipFlag==0 ); #ifndef SQLITE_OMIT_WINDOWFUNC if( pOp->p1 ){ (pCtx->pFunc->xInverse)(pCtx,pCtx->argc,pCtx->argv); }else #endif (pCtx->pFunc->xSFunc)(pCtx,pCtx->argc,pCtx->argv); /* IMP: R-24505-23230 */ if( pCtx->isError ){ if( pCtx->isError>0 ){ sqlite3VdbeError(p, "%s", sqlite3_value_text(pCtx->pOut)); rc = pCtx->isError; } if( pCtx->skipFlag ){ assert( pOp[-1].opcode==OP_CollSeq ); i = pOp[-1].p1; if( i ) sqlite3VdbeMemSetInt64(&aMem[i], 1); pCtx->skipFlag = 0; } sqlite3VdbeMemRelease(pCtx->pOut); pCtx->pOut->flags = MEM_Null; pCtx->isError = 0; if( rc ) goto abort_due_to_error; } assert( pCtx->pOut->flags==MEM_Null ); assert( pCtx->skipFlag==0 ); break; } /* Opcode: AggFinal P1 P2 * P4 * ** Synopsis: accum=r[P1] N=P2 ** ** P1 is the memory location that is the accumulator for an aggregate ** or window function. Execute the finalizer function ** for an aggregate and store the result in P1. ** ** P2 is the number of arguments that the step function takes and ** P4 is a pointer to the FuncDef for this function. The P2 ** argument is not used by this opcode. It is only there to disambiguate ** functions that can take varying numbers of arguments. The ** P4 argument is only needed for the case where ** the step function was not previously called. */ /* Opcode: AggValue * P2 P3 P4 * ** Synopsis: r[P3]=value N=P2 ** ** Invoke the xValue() function and store the result in register P3. ** ** P2 is the number of arguments that the step function takes and ** P4 is a pointer to the FuncDef for this function. The P2 ** argument is not used by this opcode. It is only there to disambiguate ** functions that can take varying numbers of arguments. The ** P4 argument is only needed for the case where ** the step function was not previously called. */ case OP_AggValue: case OP_AggFinal: { Mem *pMem; assert( pOp->p1>0 && pOp->p1<=(p->nMem+1 - p->nCursor) ); assert( pOp->p3==0 || pOp->opcode==OP_AggValue ); pMem = &aMem[pOp->p1]; assert( (pMem->flags & ~(MEM_Null|MEM_Agg))==0 ); #ifndef SQLITE_OMIT_WINDOWFUNC if( pOp->p3 ){ memAboutToChange(p, &aMem[pOp->p3]); rc = sqlite3VdbeMemAggValue(pMem, &aMem[pOp->p3], pOp->p4.pFunc); pMem = &aMem[pOp->p3]; }else #endif { rc = sqlite3VdbeMemFinalize(pMem, pOp->p4.pFunc); } if( rc ){ sqlite3VdbeError(p, "%s", sqlite3_value_text(pMem)); goto abort_due_to_error; } sqlite3VdbeChangeEncoding(pMem, encoding); UPDATE_MAX_BLOBSIZE(pMem); if( sqlite3VdbeMemTooBig(pMem) ){ goto too_big; } break; } #ifndef SQLITE_OMIT_WAL /* Opcode: Checkpoint P1 P2 P3 * * ** ** Checkpoint database P1. This is a no-op if P1 is not currently in ** WAL mode. Parameter P2 is one of SQLITE_CHECKPOINT_PASSIVE, FULL, ** RESTART, or TRUNCATE. Write 1 or 0 into mem[P3] if the checkpoint returns ** SQLITE_BUSY or not, respectively. Write the number of pages in the ** WAL after the checkpoint into mem[P3+1] and the number of pages ** in the WAL that have been checkpointed after the checkpoint ** completes into mem[P3+2]. However on an error, mem[P3+1] and ** mem[P3+2] are initialized to -1. */ case OP_Checkpoint: { int i; /* Loop counter */ int aRes[3]; /* Results */ Mem *pMem; /* Write results here */ assert( p->readOnly==0 ); aRes[0] = 0; aRes[1] = aRes[2] = -1; assert( pOp->p2==SQLITE_CHECKPOINT_PASSIVE || pOp->p2==SQLITE_CHECKPOINT_FULL || pOp->p2==SQLITE_CHECKPOINT_RESTART || pOp->p2==SQLITE_CHECKPOINT_TRUNCATE ); rc = sqlite3Checkpoint(db, pOp->p1, pOp->p2, &aRes[1], &aRes[2]); if( rc ){ if( rc!=SQLITE_BUSY ) goto abort_due_to_error; rc = SQLITE_OK; aRes[0] = 1; } for(i=0, pMem = &aMem[pOp->p3]; i<3; i++, pMem++){ sqlite3VdbeMemSetInt64(pMem, (i64)aRes[i]); } break; }; #endif #ifndef SQLITE_OMIT_PRAGMA /* Opcode: JournalMode P1 P2 P3 * * ** ** Change the journal mode of database P1 to P3. P3 must be one of the ** PAGER_JOURNALMODE_XXX values. If changing between the various rollback ** modes (delete, truncate, persist, off and memory), this is a simple ** operation. No IO is required. ** ** If changing into or out of WAL mode the procedure is more complicated. ** ** Write a string containing the final journal-mode to register P2. */ case OP_JournalMode: { /* out2 */ Btree *pBt; /* Btree to change journal mode of */ Pager *pPager; /* Pager associated with pBt */ int eNew; /* New journal mode */ int eOld; /* The old journal mode */ #ifndef SQLITE_OMIT_WAL const char *zFilename; /* Name of database file for pPager */ #endif pOut = out2Prerelease(p, pOp); eNew = pOp->p3; assert( eNew==PAGER_JOURNALMODE_DELETE || eNew==PAGER_JOURNALMODE_TRUNCATE || eNew==PAGER_JOURNALMODE_PERSIST || eNew==PAGER_JOURNALMODE_OFF || eNew==PAGER_JOURNALMODE_MEMORY || eNew==PAGER_JOURNALMODE_WAL || eNew==PAGER_JOURNALMODE_QUERY ); assert( pOp->p1>=0 && pOp->p1nDb ); assert( p->readOnly==0 ); pBt = db->aDb[pOp->p1].pBt; pPager = sqlite3BtreePager(pBt); eOld = sqlite3PagerGetJournalMode(pPager); if( eNew==PAGER_JOURNALMODE_QUERY ) eNew = eOld; if( !sqlite3PagerOkToChangeJournalMode(pPager) ) eNew = eOld; #ifndef SQLITE_OMIT_WAL zFilename = sqlite3PagerFilename(pPager, 1); /* Do not allow a transition to journal_mode=WAL for a database ** in temporary storage or if the VFS does not support shared memory */ if( eNew==PAGER_JOURNALMODE_WAL && (sqlite3Strlen30(zFilename)==0 /* Temp file */ || !sqlite3PagerWalSupported(pPager)) /* No shared-memory support */ ){ eNew = eOld; } if( (eNew!=eOld) && (eOld==PAGER_JOURNALMODE_WAL || eNew==PAGER_JOURNALMODE_WAL) ){ if( !db->autoCommit || db->nVdbeRead>1 ){ rc = SQLITE_ERROR; sqlite3VdbeError(p, "cannot change %s wal mode from within a transaction", (eNew==PAGER_JOURNALMODE_WAL ? "into" : "out of") ); goto abort_due_to_error; }else{ if( eOld==PAGER_JOURNALMODE_WAL ){ /* If leaving WAL mode, close the log file. If successful, the call ** to PagerCloseWal() checkpoints and deletes the write-ahead-log ** file. An EXCLUSIVE lock may still be held on the database file ** after a successful return. */ rc = sqlite3PagerCloseWal(pPager, db); if( rc==SQLITE_OK ){ sqlite3PagerSetJournalMode(pPager, eNew); } }else if( eOld==PAGER_JOURNALMODE_MEMORY ){ /* Cannot transition directly from MEMORY to WAL. Use mode OFF ** as an intermediate */ sqlite3PagerSetJournalMode(pPager, PAGER_JOURNALMODE_OFF); } /* Open a transaction on the database file. Regardless of the journal ** mode, this transaction always uses a rollback journal. */ assert( sqlite3BtreeIsInTrans(pBt)==0 ); if( rc==SQLITE_OK ){ rc = sqlite3BtreeSetVersion(pBt, (eNew==PAGER_JOURNALMODE_WAL ? 2 : 1)); } } } #endif /* ifndef SQLITE_OMIT_WAL */ if( rc ) eNew = eOld; eNew = sqlite3PagerSetJournalMode(pPager, eNew); pOut->flags = MEM_Str|MEM_Static|MEM_Term; pOut->z = (char *)sqlite3JournalModename(eNew); pOut->n = sqlite3Strlen30(pOut->z); pOut->enc = SQLITE_UTF8; sqlite3VdbeChangeEncoding(pOut, encoding); if( rc ) goto abort_due_to_error; break; }; #endif /* SQLITE_OMIT_PRAGMA */ #if !defined(SQLITE_OMIT_VACUUM) && !defined(SQLITE_OMIT_ATTACH) /* Opcode: Vacuum P1 P2 * * * ** ** Vacuum the entire database P1. P1 is 0 for "main", and 2 or more ** for an attached database. The "temp" database may not be vacuumed. ** ** If P2 is not zero, then it is a register holding a string which is ** the file into which the result of vacuum should be written. When ** P2 is zero, the vacuum overwrites the original database. */ case OP_Vacuum: { assert( p->readOnly==0 ); rc = sqlite3RunVacuum(&p->zErrMsg, db, pOp->p1, pOp->p2 ? &aMem[pOp->p2] : 0); if( rc ) goto abort_due_to_error; break; } #endif #if !defined(SQLITE_OMIT_AUTOVACUUM) /* Opcode: IncrVacuum P1 P2 * * * ** ** Perform a single step of the incremental vacuum procedure on ** the P1 database. If the vacuum has finished, jump to instruction ** P2. Otherwise, fall through to the next instruction. */ case OP_IncrVacuum: { /* jump */ Btree *pBt; assert( pOp->p1>=0 && pOp->p1nDb ); assert( DbMaskTest(p->btreeMask, pOp->p1) ); assert( p->readOnly==0 ); pBt = db->aDb[pOp->p1].pBt; rc = sqlite3BtreeIncrVacuum(pBt); VdbeBranchTaken(rc==SQLITE_DONE,2); if( rc ){ if( rc!=SQLITE_DONE ) goto abort_due_to_error; rc = SQLITE_OK; goto jump_to_p2; } break; } #endif /* Opcode: Expire P1 P2 * * * ** ** Cause precompiled statements to expire. When an expired statement ** is executed using sqlite3_step() it will either automatically ** reprepare itself (if it was originally created using sqlite3_prepare_v2()) ** or it will fail with SQLITE_SCHEMA. ** ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero, ** then only the currently executing statement is expired. ** ** If P2 is 0, then SQL statements are expired immediately. If P2 is 1, ** then running SQL statements are allowed to continue to run to completion. ** The P2==1 case occurs when a CREATE INDEX or similar schema change happens ** that might help the statement run faster but which does not affect the ** correctness of operation. */ case OP_Expire: { assert( pOp->p2==0 || pOp->p2==1 ); if( !pOp->p1 ){ sqlite3ExpirePreparedStatements(db, pOp->p2); }else{ p->expired = pOp->p2+1; } break; } /* Opcode: CursorLock P1 * * * * ** ** Lock the btree to which cursor P1 is pointing so that the btree cannot be ** written by an other cursor. */ case OP_CursorLock: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); sqlite3BtreeCursorPin(pC->uc.pCursor); break; } /* Opcode: CursorUnlock P1 * * * * ** ** Unlock the btree to which cursor P1 is pointing so that it can be ** written by other cursors. */ case OP_CursorUnlock: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); pC = p->apCsr[pOp->p1]; assert( pC!=0 ); assert( pC->eCurType==CURTYPE_BTREE ); sqlite3BtreeCursorUnpin(pC->uc.pCursor); break; } #ifndef SQLITE_OMIT_SHARED_CACHE /* Opcode: TableLock P1 P2 P3 P4 * ** Synopsis: iDb=P1 root=P2 write=P3 ** ** Obtain a lock on a particular table. This instruction is only used when ** the shared-cache feature is enabled. ** ** P1 is the index of the database in sqlite3.aDb[] of the database ** on which the lock is acquired. A readlock is obtained if P3==0 or ** a write lock if P3==1. ** ** P2 contains the root-page of the table to lock. ** ** P4 contains a pointer to the name of the table being locked. This is only ** used to generate an error message if the lock cannot be obtained. */ case OP_TableLock: { u8 isWriteLock = (u8)pOp->p3; if( isWriteLock || 0==(db->flags&SQLITE_ReadUncommit) ){ int p1 = pOp->p1; assert( p1>=0 && p1nDb ); assert( DbMaskTest(p->btreeMask, p1) ); assert( isWriteLock==0 || isWriteLock==1 ); rc = sqlite3BtreeLockTable(db->aDb[p1].pBt, pOp->p2, isWriteLock); if( rc ){ if( (rc&0xFF)==SQLITE_LOCKED ){ const char *z = pOp->p4.z; sqlite3VdbeError(p, "database table is locked: %s", z); } goto abort_due_to_error; } } break; } #endif /* SQLITE_OMIT_SHARED_CACHE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VBegin * * * P4 * ** ** P4 may be a pointer to an sqlite3_vtab structure. If so, call the ** xBegin method for that table. ** ** Also, whether or not P4 is set, check that this is not being called from ** within a callback to a virtual table xSync() method. If it is, the error ** code will be set to SQLITE_LOCKED. */ case OP_VBegin: { VTable *pVTab; pVTab = pOp->p4.pVtab; rc = sqlite3VtabBegin(db, pVTab); if( pVTab ) sqlite3VtabImportErrmsg(p, pVTab->pVtab); if( rc ) goto abort_due_to_error; break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VCreate P1 P2 * * * ** ** P2 is a register that holds the name of a virtual table in database ** P1. Call the xCreate method for that table. */ case OP_VCreate: { Mem sMem; /* For storing the record being decoded */ const char *zTab; /* Name of the virtual table */ memset(&sMem, 0, sizeof(sMem)); sMem.db = db; /* Because P2 is always a static string, it is impossible for the ** sqlite3VdbeMemCopy() to fail */ assert( (aMem[pOp->p2].flags & MEM_Str)!=0 ); assert( (aMem[pOp->p2].flags & MEM_Static)!=0 ); rc = sqlite3VdbeMemCopy(&sMem, &aMem[pOp->p2]); assert( rc==SQLITE_OK ); zTab = (const char*)sqlite3_value_text(&sMem); assert( zTab || db->mallocFailed ); if( zTab ){ rc = sqlite3VtabCallCreate(db, pOp->p1, zTab, &p->zErrMsg); } sqlite3VdbeMemRelease(&sMem); if( rc ) goto abort_due_to_error; break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VDestroy P1 * * P4 * ** ** P4 is the name of a virtual table in database P1. Call the xDestroy method ** of that table. */ case OP_VDestroy: { db->nVDestroy++; rc = sqlite3VtabCallDestroy(db, pOp->p1, pOp->p4.z); db->nVDestroy--; assert( p->errorAction==OE_Abort && p->usesStmtJournal ); if( rc ) goto abort_due_to_error; break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VOpen P1 * * P4 * ** ** P4 is a pointer to a virtual table object, an sqlite3_vtab structure. ** P1 is a cursor number. This opcode opens a cursor to the virtual ** table and stores that cursor in P1. */ case OP_VOpen: { VdbeCursor *pCur; sqlite3_vtab_cursor *pVCur; sqlite3_vtab *pVtab; const sqlite3_module *pModule; assert( p->bIsReader ); pCur = 0; pVCur = 0; pVtab = pOp->p4.pVtab->pVtab; if( pVtab==0 || NEVER(pVtab->pModule==0) ){ rc = SQLITE_LOCKED; goto abort_due_to_error; } pModule = pVtab->pModule; rc = pModule->xOpen(pVtab, &pVCur); sqlite3VtabImportErrmsg(p, pVtab); if( rc ) goto abort_due_to_error; /* Initialize sqlite3_vtab_cursor base class */ pVCur->pVtab = pVtab; /* Initialize vdbe cursor object */ pCur = allocateCursor(p, pOp->p1, 0, -1, CURTYPE_VTAB); if( pCur ){ pCur->uc.pVCur = pVCur; pVtab->nRef++; }else{ assert( db->mallocFailed ); pModule->xClose(pVCur); goto no_mem; } break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VFilter P1 P2 P3 P4 * ** Synopsis: iplan=r[P3] zplan='P4' ** ** P1 is a cursor opened using VOpen. P2 is an address to jump to if ** the filtered result set is empty. ** ** P4 is either NULL or a string that was generated by the xBestIndex ** method of the module. The interpretation of the P4 string is left ** to the module implementation. ** ** This opcode invokes the xFilter method on the virtual table specified ** by P1. The integer query plan parameter to xFilter is stored in register ** P3. Register P3+1 stores the argc parameter to be passed to the ** xFilter method. Registers P3+2..P3+1+argc are the argc ** additional parameters which are passed to ** xFilter as argv. Register P3+2 becomes argv[0] when passed to xFilter. ** ** A jump is made to P2 if the result set after filtering would be empty. */ case OP_VFilter: { /* jump */ int nArg; int iQuery; const sqlite3_module *pModule; Mem *pQuery; Mem *pArgc; sqlite3_vtab_cursor *pVCur; sqlite3_vtab *pVtab; VdbeCursor *pCur; int res; int i; Mem **apArg; pQuery = &aMem[pOp->p3]; pArgc = &pQuery[1]; pCur = p->apCsr[pOp->p1]; assert( memIsValid(pQuery) ); REGISTER_TRACE(pOp->p3, pQuery); assert( pCur->eCurType==CURTYPE_VTAB ); pVCur = pCur->uc.pVCur; pVtab = pVCur->pVtab; pModule = pVtab->pModule; /* Grab the index number and argc parameters */ assert( (pQuery->flags&MEM_Int)!=0 && pArgc->flags==MEM_Int ); nArg = (int)pArgc->u.i; iQuery = (int)pQuery->u.i; /* Invoke the xFilter method */ res = 0; apArg = p->apArg; for(i = 0; ixFilter(pVCur, iQuery, pOp->p4.z, nArg, apArg); sqlite3VtabImportErrmsg(p, pVtab); if( rc ) goto abort_due_to_error; res = pModule->xEof(pVCur); pCur->nullRow = 0; VdbeBranchTaken(res!=0,2); if( res ) goto jump_to_p2; break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VColumn P1 P2 P3 * P5 ** Synopsis: r[P3]=vcolumn(P2) ** ** Store in register P3 the value of the P2-th column of ** the current row of the virtual-table of cursor P1. ** ** If the VColumn opcode is being used to fetch the value of ** an unchanging column during an UPDATE operation, then the P5 ** value is OPFLAG_NOCHNG. This will cause the sqlite3_vtab_nochange() ** function to return true inside the xColumn method of the virtual ** table implementation. The P5 column might also contain other ** bits (OPFLAG_LENGTHARG or OPFLAG_TYPEOFARG) but those bits are ** unused by OP_VColumn. */ case OP_VColumn: { sqlite3_vtab *pVtab; const sqlite3_module *pModule; Mem *pDest; sqlite3_context sContext; VdbeCursor *pCur = p->apCsr[pOp->p1]; assert( pCur->eCurType==CURTYPE_VTAB ); assert( pOp->p3>0 && pOp->p3<=(p->nMem+1 - p->nCursor) ); pDest = &aMem[pOp->p3]; memAboutToChange(p, pDest); if( pCur->nullRow ){ sqlite3VdbeMemSetNull(pDest); break; } pVtab = pCur->uc.pVCur->pVtab; pModule = pVtab->pModule; assert( pModule->xColumn ); memset(&sContext, 0, sizeof(sContext)); sContext.pOut = pDest; assert( pOp->p5==OPFLAG_NOCHNG || pOp->p5==0 ); if( pOp->p5 & OPFLAG_NOCHNG ){ sqlite3VdbeMemSetNull(pDest); pDest->flags = MEM_Null|MEM_Zero; pDest->u.nZero = 0; }else{ MemSetTypeFlag(pDest, MEM_Null); } rc = pModule->xColumn(pCur->uc.pVCur, &sContext, pOp->p2); sqlite3VtabImportErrmsg(p, pVtab); if( sContext.isError>0 ){ sqlite3VdbeError(p, "%s", sqlite3_value_text(pDest)); rc = sContext.isError; } sqlite3VdbeChangeEncoding(pDest, encoding); REGISTER_TRACE(pOp->p3, pDest); UPDATE_MAX_BLOBSIZE(pDest); if( sqlite3VdbeMemTooBig(pDest) ){ goto too_big; } if( rc ) goto abort_due_to_error; break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VNext P1 P2 * * * ** ** Advance virtual table P1 to the next row in its result set and ** jump to instruction P2. Or, if the virtual table has reached ** the end of its result set, then fall through to the next instruction. */ case OP_VNext: { /* jump */ sqlite3_vtab *pVtab; const sqlite3_module *pModule; int res; VdbeCursor *pCur; res = 0; pCur = p->apCsr[pOp->p1]; assert( pCur->eCurType==CURTYPE_VTAB ); if( pCur->nullRow ){ break; } pVtab = pCur->uc.pVCur->pVtab; pModule = pVtab->pModule; assert( pModule->xNext ); /* Invoke the xNext() method of the module. There is no way for the ** underlying implementation to return an error if one occurs during ** xNext(). Instead, if an error occurs, true is returned (indicating that ** data is available) and the error code returned when xColumn or ** some other method is next invoked on the save virtual table cursor. */ rc = pModule->xNext(pCur->uc.pVCur); sqlite3VtabImportErrmsg(p, pVtab); if( rc ) goto abort_due_to_error; res = pModule->xEof(pCur->uc.pVCur); VdbeBranchTaken(!res,2); if( !res ){ /* If there is data, jump to P2 */ goto jump_to_p2_and_check_for_interrupt; } goto check_for_interrupt; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VRename P1 * * P4 * ** ** P4 is a pointer to a virtual table object, an sqlite3_vtab structure. ** This opcode invokes the corresponding xRename method. The value ** in register P1 is passed as the zName argument to the xRename method. */ case OP_VRename: { sqlite3_vtab *pVtab; Mem *pName; int isLegacy; isLegacy = (db->flags & SQLITE_LegacyAlter); db->flags |= SQLITE_LegacyAlter; pVtab = pOp->p4.pVtab->pVtab; pName = &aMem[pOp->p1]; assert( pVtab->pModule->xRename ); assert( memIsValid(pName) ); assert( p->readOnly==0 ); REGISTER_TRACE(pOp->p1, pName); assert( pName->flags & MEM_Str ); testcase( pName->enc==SQLITE_UTF8 ); testcase( pName->enc==SQLITE_UTF16BE ); testcase( pName->enc==SQLITE_UTF16LE ); rc = sqlite3VdbeChangeEncoding(pName, SQLITE_UTF8); if( rc ) goto abort_due_to_error; rc = pVtab->pModule->xRename(pVtab, pName->z); if( isLegacy==0 ) db->flags &= ~(u64)SQLITE_LegacyAlter; sqlite3VtabImportErrmsg(p, pVtab); p->expired = 0; if( rc ) goto abort_due_to_error; break; } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE /* Opcode: VUpdate P1 P2 P3 P4 P5 ** Synopsis: data=r[P3@P2] ** ** P4 is a pointer to a virtual table object, an sqlite3_vtab structure. ** This opcode invokes the corresponding xUpdate method. P2 values ** are contiguous memory cells starting at P3 to pass to the xUpdate ** invocation. The value in register (P3+P2-1) corresponds to the ** p2th element of the argv array passed to xUpdate. ** ** The xUpdate method will do a DELETE or an INSERT or both. ** The argv[0] element (which corresponds to memory cell P3) ** is the rowid of a row to delete. If argv[0] is NULL then no ** deletion occurs. The argv[1] element is the rowid of the new ** row. This can be NULL to have the virtual table select the new ** rowid for itself. The subsequent elements in the array are ** the values of columns in the new row. ** ** If P2==1 then no insert is performed. argv[0] is the rowid of ** a row to delete. ** ** P1 is a boolean flag. If it is set to true and the xUpdate call ** is successful, then the value returned by sqlite3_last_insert_rowid() ** is set to the value of the rowid for the row just inserted. ** ** P5 is the error actions (OE_Replace, OE_Fail, OE_Ignore, etc) to ** apply in the case of a constraint failure on an insert or update. */ case OP_VUpdate: { sqlite3_vtab *pVtab; const sqlite3_module *pModule; int nArg; int i; sqlite_int64 rowid; Mem **apArg; Mem *pX; assert( pOp->p2==1 || pOp->p5==OE_Fail || pOp->p5==OE_Rollback || pOp->p5==OE_Abort || pOp->p5==OE_Ignore || pOp->p5==OE_Replace ); assert( p->readOnly==0 ); if( db->mallocFailed ) goto no_mem; sqlite3VdbeIncrWriteCounter(p, 0); pVtab = pOp->p4.pVtab->pVtab; if( pVtab==0 || NEVER(pVtab->pModule==0) ){ rc = SQLITE_LOCKED; goto abort_due_to_error; } pModule = pVtab->pModule; nArg = pOp->p2; assert( pOp->p4type==P4_VTAB ); if( ALWAYS(pModule->xUpdate) ){ u8 vtabOnConflict = db->vtabOnConflict; apArg = p->apArg; pX = &aMem[pOp->p3]; for(i=0; ivtabOnConflict = pOp->p5; rc = pModule->xUpdate(pVtab, nArg, apArg, &rowid); db->vtabOnConflict = vtabOnConflict; sqlite3VtabImportErrmsg(p, pVtab); if( rc==SQLITE_OK && pOp->p1 ){ assert( nArg>1 && apArg[0] && (apArg[0]->flags&MEM_Null) ); db->lastRowid = rowid; } if( (rc&0xff)==SQLITE_CONSTRAINT && pOp->p4.pVtab->bConstraint ){ if( pOp->p5==OE_Ignore ){ rc = SQLITE_OK; }else{ p->errorAction = ((pOp->p5==OE_Replace) ? OE_Abort : pOp->p5); } }else{ p->nChange++; } if( rc ) goto abort_due_to_error; } break; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* Opcode: Pagecount P1 P2 * * * ** ** Write the current number of pages in database P1 to memory cell P2. */ case OP_Pagecount: { /* out2 */ pOut = out2Prerelease(p, pOp); pOut->u.i = sqlite3BtreeLastPage(db->aDb[pOp->p1].pBt); break; } #endif #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* Opcode: MaxPgcnt P1 P2 P3 * * ** ** Try to set the maximum page count for database P1 to the value in P3. ** Do not let the maximum page count fall below the current page count and ** do not change the maximum page count value if P3==0. ** ** Store the maximum page count after the change in register P2. */ case OP_MaxPgcnt: { /* out2 */ unsigned int newMax; Btree *pBt; pOut = out2Prerelease(p, pOp); pBt = db->aDb[pOp->p1].pBt; newMax = 0; if( pOp->p3 ){ newMax = sqlite3BtreeLastPage(pBt); if( newMax < (unsigned)pOp->p3 ) newMax = (unsigned)pOp->p3; } pOut->u.i = sqlite3BtreeMaxPageCount(pBt, newMax); break; } #endif /* Opcode: Function P1 P2 P3 P4 * ** Synopsis: r[P3]=func(r[P2@NP]) ** ** Invoke a user function (P4 is a pointer to an sqlite3_context object that ** contains a pointer to the function to be run) with arguments taken ** from register P2 and successors. The number of arguments is in ** the sqlite3_context object that P4 points to. ** The result of the function is stored ** in register P3. Register P3 must not be one of the function inputs. ** ** P1 is a 32-bit bitmask indicating whether or not each argument to the ** function was determined to be constant at compile time. If the first ** argument was constant then bit 0 of P1 is set. This is used to determine ** whether meta data associated with a user function argument using the ** sqlite3_set_auxdata() API may be safely retained until the next ** invocation of this opcode. ** ** See also: AggStep, AggFinal, PureFunc */ /* Opcode: PureFunc P1 P2 P3 P4 * ** Synopsis: r[P3]=func(r[P2@NP]) ** ** Invoke a user function (P4 is a pointer to an sqlite3_context object that ** contains a pointer to the function to be run) with arguments taken ** from register P2 and successors. The number of arguments is in ** the sqlite3_context object that P4 points to. ** The result of the function is stored ** in register P3. Register P3 must not be one of the function inputs. ** ** P1 is a 32-bit bitmask indicating whether or not each argument to the ** function was determined to be constant at compile time. If the first ** argument was constant then bit 0 of P1 is set. This is used to determine ** whether meta data associated with a user function argument using the ** sqlite3_set_auxdata() API may be safely retained until the next ** invocation of this opcode. ** ** This opcode works exactly like OP_Function. The only difference is in ** its name. This opcode is used in places where the function must be ** purely non-deterministic. Some built-in date/time functions can be ** either determinitic of non-deterministic, depending on their arguments. ** When those function are used in a non-deterministic way, they will check ** to see if they were called using OP_PureFunc instead of OP_Function, and ** if they were, they throw an error. ** ** See also: AggStep, AggFinal, Function */ case OP_PureFunc: /* group */ case OP_Function: { /* group */ int i; sqlite3_context *pCtx; assert( pOp->p4type==P4_FUNCCTX ); pCtx = pOp->p4.pCtx; /* If this function is inside of a trigger, the register array in aMem[] ** might change from one evaluation to the next. The next block of code ** checks to see if the register array has changed, and if so it ** reinitializes the relavant parts of the sqlite3_context object */ pOut = &aMem[pOp->p3]; if( pCtx->pOut != pOut ){ pCtx->pVdbe = p; pCtx->pOut = pOut; for(i=pCtx->argc-1; i>=0; i--) pCtx->argv[i] = &aMem[pOp->p2+i]; } assert( pCtx->pVdbe==p ); memAboutToChange(p, pOut); #ifdef SQLITE_DEBUG for(i=0; iargc; i++){ assert( memIsValid(pCtx->argv[i]) ); REGISTER_TRACE(pOp->p2+i, pCtx->argv[i]); } #endif MemSetTypeFlag(pOut, MEM_Null); assert( pCtx->isError==0 ); (*pCtx->pFunc->xSFunc)(pCtx, pCtx->argc, pCtx->argv);/* IMP: R-24505-23230 */ /* If the function returned an error, throw an exception */ if( pCtx->isError ){ if( pCtx->isError>0 ){ sqlite3VdbeError(p, "%s", sqlite3_value_text(pOut)); rc = pCtx->isError; } sqlite3VdbeDeleteAuxData(db, &p->pAuxData, pCtx->iOp, pOp->p1); pCtx->isError = 0; if( rc ) goto abort_due_to_error; } /* Copy the result of the function into register P3 */ if( pOut->flags & (MEM_Str|MEM_Blob) ){ sqlite3VdbeChangeEncoding(pOut, encoding); if( sqlite3VdbeMemTooBig(pOut) ) goto too_big; } REGISTER_TRACE(pOp->p3, pOut); UPDATE_MAX_BLOBSIZE(pOut); break; } /* Opcode: Trace P1 P2 * P4 * ** ** Write P4 on the statement trace output if statement tracing is ** enabled. ** ** Operand P1 must be 0x7fffffff and P2 must positive. */ /* Opcode: Init P1 P2 P3 P4 * ** Synopsis: Start at P2 ** ** Programs contain a single instance of this opcode as the very first ** opcode. ** ** If tracing is enabled (by the sqlite3_trace()) interface, then ** the UTF-8 string contained in P4 is emitted on the trace callback. ** Or if P4 is blank, use the string returned by sqlite3_sql(). ** ** If P2 is not zero, jump to instruction P2. ** ** Increment the value of P1 so that OP_Once opcodes will jump the ** first time they are evaluated for this run. ** ** If P3 is not zero, then it is an address to jump to if an SQLITE_CORRUPT ** error is encountered. */ case OP_Trace: case OP_Init: { /* jump */ int i; #ifndef SQLITE_OMIT_TRACE char *zTrace; #endif /* If the P4 argument is not NULL, then it must be an SQL comment string. ** The "--" string is broken up to prevent false-positives with srcck1.c. ** ** This assert() provides evidence for: ** EVIDENCE-OF: R-50676-09860 The callback can compute the same text that ** would have been returned by the legacy sqlite3_trace() interface by ** using the X argument when X begins with "--" and invoking ** sqlite3_expanded_sql(P) otherwise. */ assert( pOp->p4.z==0 || strncmp(pOp->p4.z, "-" "- ", 3)==0 ); /* OP_Init is always instruction 0 */ assert( pOp==p->aOp || pOp->opcode==OP_Trace ); #ifndef SQLITE_OMIT_TRACE if( (db->mTrace & (SQLITE_TRACE_STMT|SQLITE_TRACE_LEGACY))!=0 && !p->doingRerun && (zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql))!=0 ){ #ifndef SQLITE_OMIT_DEPRECATED if( db->mTrace & SQLITE_TRACE_LEGACY ){ char *z = sqlite3VdbeExpandSql(p, zTrace); db->trace.xLegacy(db->pTraceArg, z); sqlite3_free(z); }else #endif if( db->nVdbeExec>1 ){ char *z = sqlite3MPrintf(db, "-- %s", zTrace); (void)db->trace.xV2(SQLITE_TRACE_STMT, db->pTraceArg, p, z); sqlite3DbFree(db, z); }else{ (void)db->trace.xV2(SQLITE_TRACE_STMT, db->pTraceArg, p, zTrace); } } #ifdef SQLITE_USE_FCNTL_TRACE zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql); if( zTrace ){ int j; for(j=0; jnDb; j++){ if( DbMaskTest(p->btreeMask, j)==0 ) continue; sqlite3_file_control(db, db->aDb[j].zDbSName, SQLITE_FCNTL_TRACE, zTrace); } } #endif /* SQLITE_USE_FCNTL_TRACE */ #ifdef SQLITE_DEBUG if( (db->flags & SQLITE_SqlTrace)!=0 && (zTrace = (pOp->p4.z ? pOp->p4.z : p->zSql))!=0 ){ sqlite3DebugPrintf("SQL-trace: %s\n", zTrace); } #endif /* SQLITE_DEBUG */ #endif /* SQLITE_OMIT_TRACE */ assert( pOp->p2>0 ); if( pOp->p1>=sqlite3GlobalConfig.iOnceResetThreshold ){ if( pOp->opcode==OP_Trace ) break; for(i=1; inOp; i++){ if( p->aOp[i].opcode==OP_Once ) p->aOp[i].p1 = 0; } pOp->p1 = 0; } pOp->p1++; p->aCounter[SQLITE_STMTSTATUS_RUN]++; goto jump_to_p2; } #ifdef SQLITE_ENABLE_CURSOR_HINTS /* Opcode: CursorHint P1 * * P4 * ** ** Provide a hint to cursor P1 that it only needs to return rows that ** satisfy the Expr in P4. TK_REGISTER terms in the P4 expression refer ** to values currently held in registers. TK_COLUMN terms in the P4 ** expression refer to columns in the b-tree to which cursor P1 is pointing. */ case OP_CursorHint: { VdbeCursor *pC; assert( pOp->p1>=0 && pOp->p1nCursor ); assert( pOp->p4type==P4_EXPR ); pC = p->apCsr[pOp->p1]; if( pC ){ assert( pC->eCurType==CURTYPE_BTREE ); sqlite3BtreeCursorHint(pC->uc.pCursor, BTREE_HINT_RANGE, pOp->p4.pExpr, aMem); } break; } #endif /* SQLITE_ENABLE_CURSOR_HINTS */ #ifdef SQLITE_DEBUG /* Opcode: Abortable * * * * * ** ** Verify that an Abort can happen. Assert if an Abort at this point ** might cause database corruption. This opcode only appears in debugging ** builds. ** ** An Abort is safe if either there have been no writes, or if there is ** an active statement journal. */ case OP_Abortable: { sqlite3VdbeAssertAbortable(p); break; } #endif #ifdef SQLITE_DEBUG /* Opcode: ReleaseReg P1 P2 P3 * P5 ** Synopsis: release r[P1@P2] mask P3 ** ** Release registers from service. Any content that was in the ** the registers is unreliable after this opcode completes. ** ** The registers released will be the P2 registers starting at P1, ** except if bit ii of P3 set, then do not release register P1+ii. ** In other words, P3 is a mask of registers to preserve. ** ** Releasing a register clears the Mem.pScopyFrom pointer. That means ** that if the content of the released register was set using OP_SCopy, ** a change to the value of the source register for the OP_SCopy will no longer ** generate an assertion fault in sqlite3VdbeMemAboutToChange(). ** ** If P5 is set, then all released registers have their type set ** to MEM_Undefined so that any subsequent attempt to read the released ** register (before it is reinitialized) will generate an assertion fault. ** ** P5 ought to be set on every call to this opcode. ** However, there are places in the code generator will release registers ** before their are used, under the (valid) assumption that the registers ** will not be reallocated for some other purpose before they are used and ** hence are safe to release. ** ** This opcode is only available in testing and debugging builds. It is ** not generated for release builds. The purpose of this opcode is to help ** validate the generated bytecode. This opcode does not actually contribute ** to computing an answer. */ case OP_ReleaseReg: { Mem *pMem; int i; u32 constMask; assert( pOp->p1>0 ); assert( pOp->p1+pOp->p2<=(p->nMem+1 - p->nCursor)+1 ); pMem = &aMem[pOp->p1]; constMask = pOp->p3; for(i=0; ip2; i++, pMem++){ if( i>=32 || (constMask & MASKBIT32(i))==0 ){ pMem->pScopyFrom = 0; if( i<32 && pOp->p5 ) MemSetTypeFlag(pMem, MEM_Undefined); } } break; } #endif /* Opcode: Noop * * * * * ** ** Do nothing. This instruction is often useful as a jump ** destination. */ /* ** The magic Explain opcode are only inserted when explain==2 (which ** is to say when the EXPLAIN QUERY PLAN syntax is used.) ** This opcode records information from the optimizer. It is the ** the same as a no-op. This opcodesnever appears in a real VM program. */ default: { /* This is really OP_Noop, OP_Explain */ assert( pOp->opcode==OP_Noop || pOp->opcode==OP_Explain ); break; } /***************************************************************************** ** The cases of the switch statement above this line should all be indented ** by 6 spaces. But the left-most 6 spaces have been removed to improve the ** readability. From this point on down, the normal indentation rules are ** restored. *****************************************************************************/ } #ifdef VDBE_PROFILE { u64 endTime = sqlite3NProfileCnt ? sqlite3NProfileCnt : sqlite3Hwtime(); if( endTime>start ) pOrigOp->cycles += endTime - start; pOrigOp->cnt++; } #endif /* The following code adds nothing to the actual functionality ** of the program. It is only here for testing and debugging. ** On the other hand, it does burn CPU cycles every time through ** the evaluator loop. So we can leave it out when NDEBUG is defined. */ #ifndef NDEBUG assert( pOp>=&aOp[-1] && pOp<&aOp[p->nOp-1] ); #ifdef SQLITE_DEBUG if( db->flags & SQLITE_VdbeTrace ){ u8 opProperty = sqlite3OpcodeProperty[pOrigOp->opcode]; if( rc!=0 ) printf("rc=%d\n",rc); if( opProperty & (OPFLG_OUT2) ){ registerTrace(pOrigOp->p2, &aMem[pOrigOp->p2]); } if( opProperty & OPFLG_OUT3 ){ registerTrace(pOrigOp->p3, &aMem[pOrigOp->p3]); } if( opProperty==0xff ){ /* Never happens. This code exists to avoid a harmless linkage ** warning aboud sqlite3VdbeRegisterDump() being defined but not ** used. */ sqlite3VdbeRegisterDump(p); } } #endif /* SQLITE_DEBUG */ #endif /* NDEBUG */ } /* The end of the for(;;) loop the loops through opcodes */ /* If we reach this point, it means that execution is finished with ** an error of some kind. */ abort_due_to_error: if( db->mallocFailed ) rc = SQLITE_NOMEM_BKPT; assert( rc ); if( p->zErrMsg==0 && rc!=SQLITE_IOERR_NOMEM ){ sqlite3VdbeError(p, "%s", sqlite3ErrStr(rc)); } p->rc = rc; sqlite3SystemError(db, rc); testcase( sqlite3GlobalConfig.xLog!=0 ); sqlite3_log(rc, "statement aborts at %d: [%s] %s", (int)(pOp - aOp), p->zSql, p->zErrMsg); sqlite3VdbeHalt(p); if( rc==SQLITE_IOERR_NOMEM ) sqlite3OomFault(db); rc = SQLITE_ERROR; if( resetSchemaOnFault>0 ){ sqlite3ResetOneSchema(db, resetSchemaOnFault-1); } /* This is the only way out of this procedure. We have to ** release the mutexes on btrees that were acquired at the ** top. */ vdbe_return: #ifndef SQLITE_OMIT_PROGRESS_CALLBACK while( nVmStep>=nProgressLimit && db->xProgress!=0 ){ nProgressLimit += db->nProgressOps; if( db->xProgress(db->pProgressArg) ){ nProgressLimit = LARGEST_UINT64; rc = SQLITE_INTERRUPT; goto abort_due_to_error; } } #endif p->aCounter[SQLITE_STMTSTATUS_VM_STEP] += (int)nVmStep; sqlite3VdbeLeave(p); assert( rc!=SQLITE_OK || nExtraDelete==0 || sqlite3_strlike("DELETE%",p->zSql,0)!=0 ); return rc; /* Jump to here if a string or blob larger than SQLITE_MAX_LENGTH ** is encountered. */ too_big: sqlite3VdbeError(p, "string or blob too big"); rc = SQLITE_TOOBIG; goto abort_due_to_error; /* Jump to here if a malloc() fails. */ no_mem: sqlite3OomFault(db); sqlite3VdbeError(p, "out of memory"); rc = SQLITE_NOMEM_BKPT; goto abort_due_to_error; /* Jump to here if the sqlite3_interrupt() API sets the interrupt ** flag. */ abort_due_to_interrupt: assert( AtomicLoad(&db->u1.isInterrupted) ); rc = SQLITE_INTERRUPT; goto abort_due_to_error; } /************** End of vdbe.c ************************************************/ /************** Begin file vdbeblob.c ****************************************/ /* ** 2007 May 1 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code used to implement incremental BLOB I/O. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ #ifndef SQLITE_OMIT_INCRBLOB /* ** Valid sqlite3_blob* handles point to Incrblob structures. */ typedef struct Incrblob Incrblob; struct Incrblob { int nByte; /* Size of open blob, in bytes */ int iOffset; /* Byte offset of blob in cursor data */ u16 iCol; /* Table column this handle is open on */ BtCursor *pCsr; /* Cursor pointing at blob row */ sqlite3_stmt *pStmt; /* Statement holding cursor open */ sqlite3 *db; /* The associated database */ char *zDb; /* Database name */ Table *pTab; /* Table object */ }; /* ** This function is used by both blob_open() and blob_reopen(). It seeks ** the b-tree cursor associated with blob handle p to point to row iRow. ** If successful, SQLITE_OK is returned and subsequent calls to ** sqlite3_blob_read() or sqlite3_blob_write() access the specified row. ** ** If an error occurs, or if the specified row does not exist or does not ** contain a value of type TEXT or BLOB in the column nominated when the ** blob handle was opened, then an error code is returned and *pzErr may ** be set to point to a buffer containing an error message. It is the ** responsibility of the caller to free the error message buffer using ** sqlite3DbFree(). ** ** If an error does occur, then the b-tree cursor is closed. All subsequent ** calls to sqlite3_blob_read(), blob_write() or blob_reopen() will ** immediately return SQLITE_ABORT. */ static int blobSeekToRow(Incrblob *p, sqlite3_int64 iRow, char **pzErr){ int rc; /* Error code */ char *zErr = 0; /* Error message */ Vdbe *v = (Vdbe *)p->pStmt; /* Set the value of register r[1] in the SQL statement to integer iRow. ** This is done directly as a performance optimization */ v->aMem[1].flags = MEM_Int; v->aMem[1].u.i = iRow; /* If the statement has been run before (and is paused at the OP_ResultRow) ** then back it up to the point where it does the OP_NotExists. This could ** have been down with an extra OP_Goto, but simply setting the program ** counter is faster. */ if( v->pc>4 ){ v->pc = 4; assert( v->aOp[v->pc].opcode==OP_NotExists ); rc = sqlite3VdbeExec(v); }else{ rc = sqlite3_step(p->pStmt); } if( rc==SQLITE_ROW ){ VdbeCursor *pC = v->apCsr[0]; u32 type = pC->nHdrParsed>p->iCol ? pC->aType[p->iCol] : 0; testcase( pC->nHdrParsed==p->iCol ); testcase( pC->nHdrParsed==p->iCol+1 ); if( type<12 ){ zErr = sqlite3MPrintf(p->db, "cannot open value of type %s", type==0?"null": type==7?"real": "integer" ); rc = SQLITE_ERROR; sqlite3_finalize(p->pStmt); p->pStmt = 0; }else{ p->iOffset = pC->aType[p->iCol + pC->nField]; p->nByte = sqlite3VdbeSerialTypeLen(type); p->pCsr = pC->uc.pCursor; sqlite3BtreeIncrblobCursor(p->pCsr); } } if( rc==SQLITE_ROW ){ rc = SQLITE_OK; }else if( p->pStmt ){ rc = sqlite3_finalize(p->pStmt); p->pStmt = 0; if( rc==SQLITE_OK ){ zErr = sqlite3MPrintf(p->db, "no such rowid: %lld", iRow); rc = SQLITE_ERROR; }else{ zErr = sqlite3MPrintf(p->db, "%s", sqlite3_errmsg(p->db)); } } assert( rc!=SQLITE_OK || zErr==0 ); assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE ); *pzErr = zErr; return rc; } /* ** Open a blob handle. */ SQLITE_API int sqlite3_blob_open( sqlite3* db, /* The database connection */ const char *zDb, /* The attached database containing the blob */ const char *zTable, /* The table containing the blob */ const char *zColumn, /* The column containing the blob */ sqlite_int64 iRow, /* The row containing the glob */ int wrFlag, /* True -> read/write access, false -> read-only */ sqlite3_blob **ppBlob /* Handle for accessing the blob returned here */ ){ int nAttempt = 0; int iCol; /* Index of zColumn in row-record */ int rc = SQLITE_OK; char *zErr = 0; Table *pTab; Incrblob *pBlob = 0; Parse sParse; #ifdef SQLITE_ENABLE_API_ARMOR if( ppBlob==0 ){ return SQLITE_MISUSE_BKPT; } #endif *ppBlob = 0; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zTable==0 ){ return SQLITE_MISUSE_BKPT; } #endif wrFlag = !!wrFlag; /* wrFlag = (wrFlag ? 1 : 0); */ sqlite3_mutex_enter(db->mutex); pBlob = (Incrblob *)sqlite3DbMallocZero(db, sizeof(Incrblob)); do { memset(&sParse, 0, sizeof(Parse)); if( !pBlob ) goto blob_open_out; sParse.db = db; sqlite3DbFree(db, zErr); zErr = 0; sqlite3BtreeEnterAll(db); pTab = sqlite3LocateTable(&sParse, 0, zTable, zDb); if( pTab && IsVirtual(pTab) ){ pTab = 0; sqlite3ErrorMsg(&sParse, "cannot open virtual table: %s", zTable); } if( pTab && !HasRowid(pTab) ){ pTab = 0; sqlite3ErrorMsg(&sParse, "cannot open table without rowid: %s", zTable); } #ifndef SQLITE_OMIT_VIEW if( pTab && pTab->pSelect ){ pTab = 0; sqlite3ErrorMsg(&sParse, "cannot open view: %s", zTable); } #endif if( !pTab ){ if( sParse.zErrMsg ){ sqlite3DbFree(db, zErr); zErr = sParse.zErrMsg; sParse.zErrMsg = 0; } rc = SQLITE_ERROR; sqlite3BtreeLeaveAll(db); goto blob_open_out; } pBlob->pTab = pTab; pBlob->zDb = db->aDb[sqlite3SchemaToIndex(db, pTab->pSchema)].zDbSName; /* Now search pTab for the exact column. */ for(iCol=0; iColnCol; iCol++) { if( sqlite3StrICmp(pTab->aCol[iCol].zName, zColumn)==0 ){ break; } } if( iCol==pTab->nCol ){ sqlite3DbFree(db, zErr); zErr = sqlite3MPrintf(db, "no such column: \"%s\"", zColumn); rc = SQLITE_ERROR; sqlite3BtreeLeaveAll(db); goto blob_open_out; } /* If the value is being opened for writing, check that the ** column is not indexed, and that it is not part of a foreign key. */ if( wrFlag ){ const char *zFault = 0; Index *pIdx; #ifndef SQLITE_OMIT_FOREIGN_KEY if( db->flags&SQLITE_ForeignKeys ){ /* Check that the column is not part of an FK child key definition. It ** is not necessary to check if it is part of a parent key, as parent ** key columns must be indexed. The check below will pick up this ** case. */ FKey *pFKey; for(pFKey=pTab->pFKey; pFKey; pFKey=pFKey->pNextFrom){ int j; for(j=0; jnCol; j++){ if( pFKey->aCol[j].iFrom==iCol ){ zFault = "foreign key"; } } } } #endif for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int j; for(j=0; jnKeyCol; j++){ /* FIXME: Be smarter about indexes that use expressions */ if( pIdx->aiColumn[j]==iCol || pIdx->aiColumn[j]==XN_EXPR ){ zFault = "indexed"; } } } if( zFault ){ sqlite3DbFree(db, zErr); zErr = sqlite3MPrintf(db, "cannot open %s column for writing", zFault); rc = SQLITE_ERROR; sqlite3BtreeLeaveAll(db); goto blob_open_out; } } pBlob->pStmt = (sqlite3_stmt *)sqlite3VdbeCreate(&sParse); assert( pBlob->pStmt || db->mallocFailed ); if( pBlob->pStmt ){ /* This VDBE program seeks a btree cursor to the identified ** db/table/row entry. The reason for using a vdbe program instead ** of writing code to use the b-tree layer directly is that the ** vdbe program will take advantage of the various transaction, ** locking and error handling infrastructure built into the vdbe. ** ** After seeking the cursor, the vdbe executes an OP_ResultRow. ** Code external to the Vdbe then "borrows" the b-tree cursor and ** uses it to implement the blob_read(), blob_write() and ** blob_bytes() functions. ** ** The sqlite3_blob_close() function finalizes the vdbe program, ** which closes the b-tree cursor and (possibly) commits the ** transaction. */ static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList openBlob[] = { {OP_TableLock, 0, 0, 0}, /* 0: Acquire a read or write lock */ {OP_OpenRead, 0, 0, 0}, /* 1: Open a cursor */ /* blobSeekToRow() will initialize r[1] to the desired rowid */ {OP_NotExists, 0, 5, 1}, /* 2: Seek the cursor to rowid=r[1] */ {OP_Column, 0, 0, 1}, /* 3 */ {OP_ResultRow, 1, 0, 0}, /* 4 */ {OP_Halt, 0, 0, 0}, /* 5 */ }; Vdbe *v = (Vdbe *)pBlob->pStmt; int iDb = sqlite3SchemaToIndex(db, pTab->pSchema); VdbeOp *aOp; sqlite3VdbeAddOp4Int(v, OP_Transaction, iDb, wrFlag, pTab->pSchema->schema_cookie, pTab->pSchema->iGeneration); sqlite3VdbeChangeP5(v, 1); assert( sqlite3VdbeCurrentAddr(v)==2 || db->mallocFailed ); aOp = sqlite3VdbeAddOpList(v, ArraySize(openBlob), openBlob, iLn); /* Make sure a mutex is held on the table to be accessed */ sqlite3VdbeUsesBtree(v, iDb); if( db->mallocFailed==0 ){ assert( aOp!=0 ); /* Configure the OP_TableLock instruction */ #ifdef SQLITE_OMIT_SHARED_CACHE aOp[0].opcode = OP_Noop; #else aOp[0].p1 = iDb; aOp[0].p2 = pTab->tnum; aOp[0].p3 = wrFlag; sqlite3VdbeChangeP4(v, 2, pTab->zName, P4_TRANSIENT); } if( db->mallocFailed==0 ){ #endif /* Remove either the OP_OpenWrite or OpenRead. Set the P2 ** parameter of the other to pTab->tnum. */ if( wrFlag ) aOp[1].opcode = OP_OpenWrite; aOp[1].p2 = pTab->tnum; aOp[1].p3 = iDb; /* Configure the number of columns. Configure the cursor to ** think that the table has one more column than it really ** does. An OP_Column to retrieve this imaginary column will ** always return an SQL NULL. This is useful because it means ** we can invoke OP_Column to fill in the vdbe cursors type ** and offset cache without causing any IO. */ aOp[1].p4type = P4_INT32; aOp[1].p4.i = pTab->nCol+1; aOp[3].p2 = pTab->nCol; sParse.nVar = 0; sParse.nMem = 1; sParse.nTab = 1; sqlite3VdbeMakeReady(v, &sParse); } } pBlob->iCol = iCol; pBlob->db = db; sqlite3BtreeLeaveAll(db); if( db->mallocFailed ){ goto blob_open_out; } rc = blobSeekToRow(pBlob, iRow, &zErr); } while( (++nAttempt)mallocFailed==0 ){ *ppBlob = (sqlite3_blob *)pBlob; }else{ if( pBlob && pBlob->pStmt ) sqlite3VdbeFinalize((Vdbe *)pBlob->pStmt); sqlite3DbFree(db, pBlob); } sqlite3ErrorWithMsg(db, rc, (zErr ? "%s" : 0), zErr); sqlite3DbFree(db, zErr); sqlite3ParserReset(&sParse); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Close a blob handle that was previously created using ** sqlite3_blob_open(). */ SQLITE_API int sqlite3_blob_close(sqlite3_blob *pBlob){ Incrblob *p = (Incrblob *)pBlob; int rc; sqlite3 *db; if( p ){ sqlite3_stmt *pStmt = p->pStmt; db = p->db; sqlite3_mutex_enter(db->mutex); sqlite3DbFree(db, p); sqlite3_mutex_leave(db->mutex); rc = sqlite3_finalize(pStmt); }else{ rc = SQLITE_OK; } return rc; } /* ** Perform a read or write operation on a blob */ static int blobReadWrite( sqlite3_blob *pBlob, void *z, int n, int iOffset, int (*xCall)(BtCursor*, u32, u32, void*) ){ int rc; Incrblob *p = (Incrblob *)pBlob; Vdbe *v; sqlite3 *db; if( p==0 ) return SQLITE_MISUSE_BKPT; db = p->db; sqlite3_mutex_enter(db->mutex); v = (Vdbe*)p->pStmt; if( n<0 || iOffset<0 || ((sqlite3_int64)iOffset+n)>p->nByte ){ /* Request is out of range. Return a transient error. */ rc = SQLITE_ERROR; }else if( v==0 ){ /* If there is no statement handle, then the blob-handle has ** already been invalidated. Return SQLITE_ABORT in this case. */ rc = SQLITE_ABORT; }else{ /* Call either BtreeData() or BtreePutData(). If SQLITE_ABORT is ** returned, clean-up the statement handle. */ assert( db == v->db ); sqlite3BtreeEnterCursor(p->pCsr); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK if( xCall==sqlite3BtreePutData && db->xPreUpdateCallback ){ /* If a pre-update hook is registered and this is a write cursor, ** invoke it here. ** ** TODO: The preupdate-hook is passed SQLITE_DELETE, even though this ** operation should really be an SQLITE_UPDATE. This is probably ** incorrect, but is convenient because at this point the new.* values ** are not easily obtainable. And for the sessions module, an ** SQLITE_UPDATE where the PK columns do not change is handled in the ** same way as an SQLITE_DELETE (the SQLITE_DELETE code is actually ** slightly more efficient). Since you cannot write to a PK column ** using the incremental-blob API, this works. For the sessions module ** anyhow. */ sqlite3_int64 iKey; iKey = sqlite3BtreeIntegerKey(p->pCsr); sqlite3VdbePreUpdateHook( v, v->apCsr[0], SQLITE_DELETE, p->zDb, p->pTab, iKey, -1 ); } #endif rc = xCall(p->pCsr, iOffset+p->iOffset, n, z); sqlite3BtreeLeaveCursor(p->pCsr); if( rc==SQLITE_ABORT ){ sqlite3VdbeFinalize(v); p->pStmt = 0; }else{ v->rc = rc; } } sqlite3Error(db, rc); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Read data from a blob handle. */ SQLITE_API int sqlite3_blob_read(sqlite3_blob *pBlob, void *z, int n, int iOffset){ return blobReadWrite(pBlob, z, n, iOffset, sqlite3BtreePayloadChecked); } /* ** Write data to a blob handle. */ SQLITE_API int sqlite3_blob_write(sqlite3_blob *pBlob, const void *z, int n, int iOffset){ return blobReadWrite(pBlob, (void *)z, n, iOffset, sqlite3BtreePutData); } /* ** Query a blob handle for the size of the data. ** ** The Incrblob.nByte field is fixed for the lifetime of the Incrblob ** so no mutex is required for access. */ SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *pBlob){ Incrblob *p = (Incrblob *)pBlob; return (p && p->pStmt) ? p->nByte : 0; } /* ** Move an existing blob handle to point to a different row of the same ** database table. ** ** If an error occurs, or if the specified row does not exist or does not ** contain a blob or text value, then an error code is returned and the ** database handle error code and message set. If this happens, then all ** subsequent calls to sqlite3_blob_xxx() functions (except blob_close()) ** immediately return SQLITE_ABORT. */ SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *pBlob, sqlite3_int64 iRow){ int rc; Incrblob *p = (Incrblob *)pBlob; sqlite3 *db; if( p==0 ) return SQLITE_MISUSE_BKPT; db = p->db; sqlite3_mutex_enter(db->mutex); if( p->pStmt==0 ){ /* If there is no statement handle, then the blob-handle has ** already been invalidated. Return SQLITE_ABORT in this case. */ rc = SQLITE_ABORT; }else{ char *zErr; rc = blobSeekToRow(p, iRow, &zErr); if( rc!=SQLITE_OK ){ sqlite3ErrorWithMsg(db, rc, (zErr ? "%s" : 0), zErr); sqlite3DbFree(db, zErr); } assert( rc!=SQLITE_SCHEMA ); } rc = sqlite3ApiExit(db, rc); assert( rc==SQLITE_OK || p->pStmt==0 ); sqlite3_mutex_leave(db->mutex); return rc; } #endif /* #ifndef SQLITE_OMIT_INCRBLOB */ /************** End of vdbeblob.c ********************************************/ /************** Begin file vdbesort.c ****************************************/ /* ** 2011-07-09 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code for the VdbeSorter object, used in concert with ** a VdbeCursor to sort large numbers of keys for CREATE INDEX statements ** or by SELECT statements with ORDER BY clauses that cannot be satisfied ** using indexes and without LIMIT clauses. ** ** The VdbeSorter object implements a multi-threaded external merge sort ** algorithm that is efficient even if the number of elements being sorted ** exceeds the available memory. ** ** Here is the (internal, non-API) interface between this module and the ** rest of the SQLite system: ** ** sqlite3VdbeSorterInit() Create a new VdbeSorter object. ** ** sqlite3VdbeSorterWrite() Add a single new row to the VdbeSorter ** object. The row is a binary blob in the ** OP_MakeRecord format that contains both ** the ORDER BY key columns and result columns ** in the case of a SELECT w/ ORDER BY, or ** the complete record for an index entry ** in the case of a CREATE INDEX. ** ** sqlite3VdbeSorterRewind() Sort all content previously added. ** Position the read cursor on the ** first sorted element. ** ** sqlite3VdbeSorterNext() Advance the read cursor to the next sorted ** element. ** ** sqlite3VdbeSorterRowkey() Return the complete binary blob for the ** row currently under the read cursor. ** ** sqlite3VdbeSorterCompare() Compare the binary blob for the row ** currently under the read cursor against ** another binary blob X and report if ** X is strictly less than the read cursor. ** Used to enforce uniqueness in a ** CREATE UNIQUE INDEX statement. ** ** sqlite3VdbeSorterClose() Close the VdbeSorter object and reclaim ** all resources. ** ** sqlite3VdbeSorterReset() Refurbish the VdbeSorter for reuse. This ** is like Close() followed by Init() only ** much faster. ** ** The interfaces above must be called in a particular order. Write() can ** only occur in between Init()/Reset() and Rewind(). Next(), Rowkey(), and ** Compare() can only occur in between Rewind() and Close()/Reset(). i.e. ** ** Init() ** for each record: Write() ** Rewind() ** Rowkey()/Compare() ** Next() ** Close() ** ** Algorithm: ** ** Records passed to the sorter via calls to Write() are initially held ** unsorted in main memory. Assuming the amount of memory used never exceeds ** a threshold, when Rewind() is called the set of records is sorted using ** an in-memory merge sort. In this case, no temporary files are required ** and subsequent calls to Rowkey(), Next() and Compare() read records ** directly from main memory. ** ** If the amount of space used to store records in main memory exceeds the ** threshold, then the set of records currently in memory are sorted and ** written to a temporary file in "Packed Memory Array" (PMA) format. ** A PMA created at this point is known as a "level-0 PMA". Higher levels ** of PMAs may be created by merging existing PMAs together - for example ** merging two or more level-0 PMAs together creates a level-1 PMA. ** ** The threshold for the amount of main memory to use before flushing ** records to a PMA is roughly the same as the limit configured for the ** page-cache of the main database. Specifically, the threshold is set to ** the value returned by "PRAGMA main.page_size" multipled by ** that returned by "PRAGMA main.cache_size", in bytes. ** ** If the sorter is running in single-threaded mode, then all PMAs generated ** are appended to a single temporary file. Or, if the sorter is running in ** multi-threaded mode then up to (N+1) temporary files may be opened, where ** N is the configured number of worker threads. In this case, instead of ** sorting the records and writing the PMA to a temporary file itself, the ** calling thread usually launches a worker thread to do so. Except, if ** there are already N worker threads running, the main thread does the work ** itself. ** ** The sorter is running in multi-threaded mode if (a) the library was built ** with pre-processor symbol SQLITE_MAX_WORKER_THREADS set to a value greater ** than zero, and (b) worker threads have been enabled at runtime by calling ** "PRAGMA threads=N" with some value of N greater than 0. ** ** When Rewind() is called, any data remaining in memory is flushed to a ** final PMA. So at this point the data is stored in some number of sorted ** PMAs within temporary files on disk. ** ** If there are fewer than SORTER_MAX_MERGE_COUNT PMAs in total and the ** sorter is running in single-threaded mode, then these PMAs are merged ** incrementally as keys are retreived from the sorter by the VDBE. The ** MergeEngine object, described in further detail below, performs this ** merge. ** ** Or, if running in multi-threaded mode, then a background thread is ** launched to merge the existing PMAs. Once the background thread has ** merged T bytes of data into a single sorted PMA, the main thread ** begins reading keys from that PMA while the background thread proceeds ** with merging the next T bytes of data. And so on. ** ** Parameter T is set to half the value of the memory threshold used ** by Write() above to determine when to create a new PMA. ** ** If there are more than SORTER_MAX_MERGE_COUNT PMAs in total when ** Rewind() is called, then a hierarchy of incremental-merges is used. ** First, T bytes of data from the first SORTER_MAX_MERGE_COUNT PMAs on ** disk are merged together. Then T bytes of data from the second set, and ** so on, such that no operation ever merges more than SORTER_MAX_MERGE_COUNT ** PMAs at a time. This done is to improve locality. ** ** If running in multi-threaded mode and there are more than ** SORTER_MAX_MERGE_COUNT PMAs on disk when Rewind() is called, then more ** than one background thread may be created. Specifically, there may be ** one background thread for each temporary file on disk, and one background ** thread to merge the output of each of the others to a single PMA for ** the main thread to read from. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ /* ** If SQLITE_DEBUG_SORTER_THREADS is defined, this module outputs various ** messages to stderr that may be helpful in understanding the performance ** characteristics of the sorter in multi-threaded mode. */ #if 0 # define SQLITE_DEBUG_SORTER_THREADS 1 #endif /* ** Hard-coded maximum amount of data to accumulate in memory before flushing ** to a level 0 PMA. The purpose of this limit is to prevent various integer ** overflows. 512MiB. */ #define SQLITE_MAX_PMASZ (1<<29) /* ** Private objects used by the sorter */ typedef struct MergeEngine MergeEngine; /* Merge PMAs together */ typedef struct PmaReader PmaReader; /* Incrementally read one PMA */ typedef struct PmaWriter PmaWriter; /* Incrementally write one PMA */ typedef struct SorterRecord SorterRecord; /* A record being sorted */ typedef struct SortSubtask SortSubtask; /* A sub-task in the sort process */ typedef struct SorterFile SorterFile; /* Temporary file object wrapper */ typedef struct SorterList SorterList; /* In-memory list of records */ typedef struct IncrMerger IncrMerger; /* Read & merge multiple PMAs */ /* ** A container for a temp file handle and the current amount of data ** stored in the file. */ struct SorterFile { sqlite3_file *pFd; /* File handle */ i64 iEof; /* Bytes of data stored in pFd */ }; /* ** An in-memory list of objects to be sorted. ** ** If aMemory==0 then each object is allocated separately and the objects ** are connected using SorterRecord.u.pNext. If aMemory!=0 then all objects ** are stored in the aMemory[] bulk memory, one right after the other, and ** are connected using SorterRecord.u.iNext. */ struct SorterList { SorterRecord *pList; /* Linked list of records */ u8 *aMemory; /* If non-NULL, bulk memory to hold pList */ int szPMA; /* Size of pList as PMA in bytes */ }; /* ** The MergeEngine object is used to combine two or more smaller PMAs into ** one big PMA using a merge operation. Separate PMAs all need to be ** combined into one big PMA in order to be able to step through the sorted ** records in order. ** ** The aReadr[] array contains a PmaReader object for each of the PMAs being ** merged. An aReadr[] object either points to a valid key or else is at EOF. ** ("EOF" means "End Of File". When aReadr[] is at EOF there is no more data.) ** For the purposes of the paragraphs below, we assume that the array is ** actually N elements in size, where N is the smallest power of 2 greater ** to or equal to the number of PMAs being merged. The extra aReadr[] elements ** are treated as if they are empty (always at EOF). ** ** The aTree[] array is also N elements in size. The value of N is stored in ** the MergeEngine.nTree variable. ** ** The final (N/2) elements of aTree[] contain the results of comparing ** pairs of PMA keys together. Element i contains the result of ** comparing aReadr[2*i-N] and aReadr[2*i-N+1]. Whichever key is smaller, the ** aTree element is set to the index of it. ** ** For the purposes of this comparison, EOF is considered greater than any ** other key value. If the keys are equal (only possible with two EOF ** values), it doesn't matter which index is stored. ** ** The (N/4) elements of aTree[] that precede the final (N/2) described ** above contains the index of the smallest of each block of 4 PmaReaders ** And so on. So that aTree[1] contains the index of the PmaReader that ** currently points to the smallest key value. aTree[0] is unused. ** ** Example: ** ** aReadr[0] -> Banana ** aReadr[1] -> Feijoa ** aReadr[2] -> Elderberry ** aReadr[3] -> Currant ** aReadr[4] -> Grapefruit ** aReadr[5] -> Apple ** aReadr[6] -> Durian ** aReadr[7] -> EOF ** ** aTree[] = { X, 5 0, 5 0, 3, 5, 6 } ** ** The current element is "Apple" (the value of the key indicated by ** PmaReader 5). When the Next() operation is invoked, PmaReader 5 will ** be advanced to the next key in its segment. Say the next key is ** "Eggplant": ** ** aReadr[5] -> Eggplant ** ** The contents of aTree[] are updated first by comparing the new PmaReader ** 5 key to the current key of PmaReader 4 (still "Grapefruit"). The PmaReader ** 5 value is still smaller, so aTree[6] is set to 5. And so on up the tree. ** The value of PmaReader 6 - "Durian" - is now smaller than that of PmaReader ** 5, so aTree[3] is set to 6. Key 0 is smaller than key 6 (Bananafile2. And instead of using a ** background thread to prepare data for the PmaReader, with a single ** threaded IncrMerger the allocate part of pTask->file2 is "refilled" with ** keys from pMerger by the calling thread whenever the PmaReader runs out ** of data. */ struct IncrMerger { SortSubtask *pTask; /* Task that owns this merger */ MergeEngine *pMerger; /* Merge engine thread reads data from */ i64 iStartOff; /* Offset to start writing file at */ int mxSz; /* Maximum bytes of data to store */ int bEof; /* Set to true when merge is finished */ int bUseThread; /* True to use a bg thread for this object */ SorterFile aFile[2]; /* aFile[0] for reading, [1] for writing */ }; /* ** An instance of this object is used for writing a PMA. ** ** The PMA is written one record at a time. Each record is of an arbitrary ** size. But I/O is more efficient if it occurs in page-sized blocks where ** each block is aligned on a page boundary. This object caches writes to ** the PMA so that aligned, page-size blocks are written. */ struct PmaWriter { int eFWErr; /* Non-zero if in an error state */ u8 *aBuffer; /* Pointer to write buffer */ int nBuffer; /* Size of write buffer in bytes */ int iBufStart; /* First byte of buffer to write */ int iBufEnd; /* Last byte of buffer to write */ i64 iWriteOff; /* Offset of start of buffer in file */ sqlite3_file *pFd; /* File handle to write to */ }; /* ** This object is the header on a single record while that record is being ** held in memory and prior to being written out as part of a PMA. ** ** How the linked list is connected depends on how memory is being managed ** by this module. If using a separate allocation for each in-memory record ** (VdbeSorter.list.aMemory==0), then the list is always connected using the ** SorterRecord.u.pNext pointers. ** ** Or, if using the single large allocation method (VdbeSorter.list.aMemory!=0), ** then while records are being accumulated the list is linked using the ** SorterRecord.u.iNext offset. This is because the aMemory[] array may ** be sqlite3Realloc()ed while records are being accumulated. Once the VM ** has finished passing records to the sorter, or when the in-memory buffer ** is full, the list is sorted. As part of the sorting process, it is ** converted to use the SorterRecord.u.pNext pointers. See function ** vdbeSorterSort() for details. */ struct SorterRecord { int nVal; /* Size of the record in bytes */ union { SorterRecord *pNext; /* Pointer to next record in list */ int iNext; /* Offset within aMemory of next record */ } u; /* The data for the record immediately follows this header */ }; /* Return a pointer to the buffer containing the record data for SorterRecord ** object p. Should be used as if: ** ** void *SRVAL(SorterRecord *p) { return (void*)&p[1]; } */ #define SRVAL(p) ((void*)((SorterRecord*)(p) + 1)) /* Maximum number of PMAs that a single MergeEngine can merge */ #define SORTER_MAX_MERGE_COUNT 16 static int vdbeIncrSwap(IncrMerger*); static void vdbeIncrFree(IncrMerger *); /* ** Free all memory belonging to the PmaReader object passed as the ** argument. All structure fields are set to zero before returning. */ static void vdbePmaReaderClear(PmaReader *pReadr){ sqlite3_free(pReadr->aAlloc); sqlite3_free(pReadr->aBuffer); if( pReadr->aMap ) sqlite3OsUnfetch(pReadr->pFd, 0, pReadr->aMap); vdbeIncrFree(pReadr->pIncr); memset(pReadr, 0, sizeof(PmaReader)); } /* ** Read the next nByte bytes of data from the PMA p. ** If successful, set *ppOut to point to a buffer containing the data ** and return SQLITE_OK. Otherwise, if an error occurs, return an SQLite ** error code. ** ** The buffer returned in *ppOut is only valid until the ** next call to this function. */ static int vdbePmaReadBlob( PmaReader *p, /* PmaReader from which to take the blob */ int nByte, /* Bytes of data to read */ u8 **ppOut /* OUT: Pointer to buffer containing data */ ){ int iBuf; /* Offset within buffer to read from */ int nAvail; /* Bytes of data available in buffer */ if( p->aMap ){ *ppOut = &p->aMap[p->iReadOff]; p->iReadOff += nByte; return SQLITE_OK; } assert( p->aBuffer ); /* If there is no more data to be read from the buffer, read the next ** p->nBuffer bytes of data from the file into it. Or, if there are less ** than p->nBuffer bytes remaining in the PMA, read all remaining data. */ iBuf = p->iReadOff % p->nBuffer; if( iBuf==0 ){ int nRead; /* Bytes to read from disk */ int rc; /* sqlite3OsRead() return code */ /* Determine how many bytes of data to read. */ if( (p->iEof - p->iReadOff) > (i64)p->nBuffer ){ nRead = p->nBuffer; }else{ nRead = (int)(p->iEof - p->iReadOff); } assert( nRead>0 ); /* Readr data from the file. Return early if an error occurs. */ rc = sqlite3OsRead(p->pFd, p->aBuffer, nRead, p->iReadOff); assert( rc!=SQLITE_IOERR_SHORT_READ ); if( rc!=SQLITE_OK ) return rc; } nAvail = p->nBuffer - iBuf; if( nByte<=nAvail ){ /* The requested data is available in the in-memory buffer. In this ** case there is no need to make a copy of the data, just return a ** pointer into the buffer to the caller. */ *ppOut = &p->aBuffer[iBuf]; p->iReadOff += nByte; }else{ /* The requested data is not all available in the in-memory buffer. ** In this case, allocate space at p->aAlloc[] to copy the requested ** range into. Then return a copy of pointer p->aAlloc to the caller. */ int nRem; /* Bytes remaining to copy */ /* Extend the p->aAlloc[] allocation if required. */ if( p->nAllocnAlloc); while( nByte>nNew ) nNew = nNew*2; aNew = sqlite3Realloc(p->aAlloc, nNew); if( !aNew ) return SQLITE_NOMEM_BKPT; p->nAlloc = nNew; p->aAlloc = aNew; } /* Copy as much data as is available in the buffer into the start of ** p->aAlloc[]. */ memcpy(p->aAlloc, &p->aBuffer[iBuf], nAvail); p->iReadOff += nAvail; nRem = nByte - nAvail; /* The following loop copies up to p->nBuffer bytes per iteration into ** the p->aAlloc[] buffer. */ while( nRem>0 ){ int rc; /* vdbePmaReadBlob() return code */ int nCopy; /* Number of bytes to copy */ u8 *aNext; /* Pointer to buffer to copy data from */ nCopy = nRem; if( nRem>p->nBuffer ) nCopy = p->nBuffer; rc = vdbePmaReadBlob(p, nCopy, &aNext); if( rc!=SQLITE_OK ) return rc; assert( aNext!=p->aAlloc ); memcpy(&p->aAlloc[nByte - nRem], aNext, nCopy); nRem -= nCopy; } *ppOut = p->aAlloc; } return SQLITE_OK; } /* ** Read a varint from the stream of data accessed by p. Set *pnOut to ** the value read. */ static int vdbePmaReadVarint(PmaReader *p, u64 *pnOut){ int iBuf; if( p->aMap ){ p->iReadOff += sqlite3GetVarint(&p->aMap[p->iReadOff], pnOut); }else{ iBuf = p->iReadOff % p->nBuffer; if( iBuf && (p->nBuffer-iBuf)>=9 ){ p->iReadOff += sqlite3GetVarint(&p->aBuffer[iBuf], pnOut); }else{ u8 aVarint[16], *a; int i = 0, rc; do{ rc = vdbePmaReadBlob(p, 1, &a); if( rc ) return rc; aVarint[(i++)&0xf] = a[0]; }while( (a[0]&0x80)!=0 ); sqlite3GetVarint(aVarint, pnOut); } } return SQLITE_OK; } /* ** Attempt to memory map file pFile. If successful, set *pp to point to the ** new mapping and return SQLITE_OK. If the mapping is not attempted ** (because the file is too large or the VFS layer is configured not to use ** mmap), return SQLITE_OK and set *pp to NULL. ** ** Or, if an error occurs, return an SQLite error code. The final value of ** *pp is undefined in this case. */ static int vdbeSorterMapFile(SortSubtask *pTask, SorterFile *pFile, u8 **pp){ int rc = SQLITE_OK; if( pFile->iEof<=(i64)(pTask->pSorter->db->nMaxSorterMmap) ){ sqlite3_file *pFd = pFile->pFd; if( pFd->pMethods->iVersion>=3 ){ rc = sqlite3OsFetch(pFd, 0, (int)pFile->iEof, (void**)pp); testcase( rc!=SQLITE_OK ); } } return rc; } /* ** Attach PmaReader pReadr to file pFile (if it is not already attached to ** that file) and seek it to offset iOff within the file. Return SQLITE_OK ** if successful, or an SQLite error code if an error occurs. */ static int vdbePmaReaderSeek( SortSubtask *pTask, /* Task context */ PmaReader *pReadr, /* Reader whose cursor is to be moved */ SorterFile *pFile, /* Sorter file to read from */ i64 iOff /* Offset in pFile */ ){ int rc = SQLITE_OK; assert( pReadr->pIncr==0 || pReadr->pIncr->bEof==0 ); if( sqlite3FaultSim(201) ) return SQLITE_IOERR_READ; if( pReadr->aMap ){ sqlite3OsUnfetch(pReadr->pFd, 0, pReadr->aMap); pReadr->aMap = 0; } pReadr->iReadOff = iOff; pReadr->iEof = pFile->iEof; pReadr->pFd = pFile->pFd; rc = vdbeSorterMapFile(pTask, pFile, &pReadr->aMap); if( rc==SQLITE_OK && pReadr->aMap==0 ){ int pgsz = pTask->pSorter->pgsz; int iBuf = pReadr->iReadOff % pgsz; if( pReadr->aBuffer==0 ){ pReadr->aBuffer = (u8*)sqlite3Malloc(pgsz); if( pReadr->aBuffer==0 ) rc = SQLITE_NOMEM_BKPT; pReadr->nBuffer = pgsz; } if( rc==SQLITE_OK && iBuf ){ int nRead = pgsz - iBuf; if( (pReadr->iReadOff + nRead) > pReadr->iEof ){ nRead = (int)(pReadr->iEof - pReadr->iReadOff); } rc = sqlite3OsRead( pReadr->pFd, &pReadr->aBuffer[iBuf], nRead, pReadr->iReadOff ); testcase( rc!=SQLITE_OK ); } } return rc; } /* ** Advance PmaReader pReadr to the next key in its PMA. Return SQLITE_OK if ** no error occurs, or an SQLite error code if one does. */ static int vdbePmaReaderNext(PmaReader *pReadr){ int rc = SQLITE_OK; /* Return Code */ u64 nRec = 0; /* Size of record in bytes */ if( pReadr->iReadOff>=pReadr->iEof ){ IncrMerger *pIncr = pReadr->pIncr; int bEof = 1; if( pIncr ){ rc = vdbeIncrSwap(pIncr); if( rc==SQLITE_OK && pIncr->bEof==0 ){ rc = vdbePmaReaderSeek( pIncr->pTask, pReadr, &pIncr->aFile[0], pIncr->iStartOff ); bEof = 0; } } if( bEof ){ /* This is an EOF condition */ vdbePmaReaderClear(pReadr); testcase( rc!=SQLITE_OK ); return rc; } } if( rc==SQLITE_OK ){ rc = vdbePmaReadVarint(pReadr, &nRec); } if( rc==SQLITE_OK ){ pReadr->nKey = (int)nRec; rc = vdbePmaReadBlob(pReadr, (int)nRec, &pReadr->aKey); testcase( rc!=SQLITE_OK ); } return rc; } /* ** Initialize PmaReader pReadr to scan through the PMA stored in file pFile ** starting at offset iStart and ending at offset iEof-1. This function ** leaves the PmaReader pointing to the first key in the PMA (or EOF if the ** PMA is empty). ** ** If the pnByte parameter is NULL, then it is assumed that the file ** contains a single PMA, and that that PMA omits the initial length varint. */ static int vdbePmaReaderInit( SortSubtask *pTask, /* Task context */ SorterFile *pFile, /* Sorter file to read from */ i64 iStart, /* Start offset in pFile */ PmaReader *pReadr, /* PmaReader to populate */ i64 *pnByte /* IN/OUT: Increment this value by PMA size */ ){ int rc; assert( pFile->iEof>iStart ); assert( pReadr->aAlloc==0 && pReadr->nAlloc==0 ); assert( pReadr->aBuffer==0 ); assert( pReadr->aMap==0 ); rc = vdbePmaReaderSeek(pTask, pReadr, pFile, iStart); if( rc==SQLITE_OK ){ u64 nByte = 0; /* Size of PMA in bytes */ rc = vdbePmaReadVarint(pReadr, &nByte); pReadr->iEof = pReadr->iReadOff + nByte; *pnByte += nByte; } if( rc==SQLITE_OK ){ rc = vdbePmaReaderNext(pReadr); } return rc; } /* ** A version of vdbeSorterCompare() that assumes that it has already been ** determined that the first field of key1 is equal to the first field of ** key2. */ static int vdbeSorterCompareTail( SortSubtask *pTask, /* Subtask context (for pKeyInfo) */ int *pbKey2Cached, /* True if pTask->pUnpacked is pKey2 */ const void *pKey1, int nKey1, /* Left side of comparison */ const void *pKey2, int nKey2 /* Right side of comparison */ ){ UnpackedRecord *r2 = pTask->pUnpacked; if( *pbKey2Cached==0 ){ sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2); *pbKey2Cached = 1; } return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, r2, 1); } /* ** Compare key1 (buffer pKey1, size nKey1 bytes) with key2 (buffer pKey2, ** size nKey2 bytes). Use (pTask->pKeyInfo) for the collation sequences ** used by the comparison. Return the result of the comparison. ** ** If IN/OUT parameter *pbKey2Cached is true when this function is called, ** it is assumed that (pTask->pUnpacked) contains the unpacked version ** of key2. If it is false, (pTask->pUnpacked) is populated with the unpacked ** version of key2 and *pbKey2Cached set to true before returning. ** ** If an OOM error is encountered, (pTask->pUnpacked->error_rc) is set ** to SQLITE_NOMEM. */ static int vdbeSorterCompare( SortSubtask *pTask, /* Subtask context (for pKeyInfo) */ int *pbKey2Cached, /* True if pTask->pUnpacked is pKey2 */ const void *pKey1, int nKey1, /* Left side of comparison */ const void *pKey2, int nKey2 /* Right side of comparison */ ){ UnpackedRecord *r2 = pTask->pUnpacked; if( !*pbKey2Cached ){ sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2); *pbKey2Cached = 1; } return sqlite3VdbeRecordCompare(nKey1, pKey1, r2); } /* ** A specially optimized version of vdbeSorterCompare() that assumes that ** the first field of each key is a TEXT value and that the collation ** sequence to compare them with is BINARY. */ static int vdbeSorterCompareText( SortSubtask *pTask, /* Subtask context (for pKeyInfo) */ int *pbKey2Cached, /* True if pTask->pUnpacked is pKey2 */ const void *pKey1, int nKey1, /* Left side of comparison */ const void *pKey2, int nKey2 /* Right side of comparison */ ){ const u8 * const p1 = (const u8 * const)pKey1; const u8 * const p2 = (const u8 * const)pKey2; const u8 * const v1 = &p1[ p1[0] ]; /* Pointer to value 1 */ const u8 * const v2 = &p2[ p2[0] ]; /* Pointer to value 2 */ int n1; int n2; int res; getVarint32NR(&p1[1], n1); getVarint32NR(&p2[1], n2); res = memcmp(v1, v2, (MIN(n1, n2) - 13)/2); if( res==0 ){ res = n1 - n2; } if( res==0 ){ if( pTask->pSorter->pKeyInfo->nKeyField>1 ){ res = vdbeSorterCompareTail( pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2 ); } }else{ assert( !(pTask->pSorter->pKeyInfo->aSortFlags[0]&KEYINFO_ORDER_BIGNULL) ); if( pTask->pSorter->pKeyInfo->aSortFlags[0] ){ res = res * -1; } } return res; } /* ** A specially optimized version of vdbeSorterCompare() that assumes that ** the first field of each key is an INTEGER value. */ static int vdbeSorterCompareInt( SortSubtask *pTask, /* Subtask context (for pKeyInfo) */ int *pbKey2Cached, /* True if pTask->pUnpacked is pKey2 */ const void *pKey1, int nKey1, /* Left side of comparison */ const void *pKey2, int nKey2 /* Right side of comparison */ ){ const u8 * const p1 = (const u8 * const)pKey1; const u8 * const p2 = (const u8 * const)pKey2; const int s1 = p1[1]; /* Left hand serial type */ const int s2 = p2[1]; /* Right hand serial type */ const u8 * const v1 = &p1[ p1[0] ]; /* Pointer to value 1 */ const u8 * const v2 = &p2[ p2[0] ]; /* Pointer to value 2 */ int res; /* Return value */ assert( (s1>0 && s1<7) || s1==8 || s1==9 ); assert( (s2>0 && s2<7) || s2==8 || s2==9 ); if( s1==s2 ){ /* The two values have the same sign. Compare using memcmp(). */ static const u8 aLen[] = {0, 1, 2, 3, 4, 6, 8, 0, 0, 0 }; const u8 n = aLen[s1]; int i; res = 0; for(i=0; i7 && s2>7 ){ res = s1 - s2; }else{ if( s2>7 ){ res = +1; }else if( s1>7 ){ res = -1; }else{ res = s1 - s2; } assert( res!=0 ); if( res>0 ){ if( *v1 & 0x80 ) res = -1; }else{ if( *v2 & 0x80 ) res = +1; } } if( res==0 ){ if( pTask->pSorter->pKeyInfo->nKeyField>1 ){ res = vdbeSorterCompareTail( pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2 ); } }else if( pTask->pSorter->pKeyInfo->aSortFlags[0] ){ assert( !(pTask->pSorter->pKeyInfo->aSortFlags[0]&KEYINFO_ORDER_BIGNULL) ); res = res * -1; } return res; } /* ** Initialize the temporary index cursor just opened as a sorter cursor. ** ** Usually, the sorter module uses the value of (pCsr->pKeyInfo->nKeyField) ** to determine the number of fields that should be compared from the ** records being sorted. However, if the value passed as argument nField ** is non-zero and the sorter is able to guarantee a stable sort, nField ** is used instead. This is used when sorting records for a CREATE INDEX ** statement. In this case, keys are always delivered to the sorter in ** order of the primary key, which happens to be make up the final part ** of the records being sorted. So if the sort is stable, there is never ** any reason to compare PK fields and they can be ignored for a small ** performance boost. ** ** The sorter can guarantee a stable sort when running in single-threaded ** mode, but not in multi-threaded mode. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ SQLITE_PRIVATE int sqlite3VdbeSorterInit( sqlite3 *db, /* Database connection (for malloc()) */ int nField, /* Number of key fields in each record */ VdbeCursor *pCsr /* Cursor that holds the new sorter */ ){ int pgsz; /* Page size of main database */ int i; /* Used to iterate through aTask[] */ VdbeSorter *pSorter; /* The new sorter */ KeyInfo *pKeyInfo; /* Copy of pCsr->pKeyInfo with db==0 */ int szKeyInfo; /* Size of pCsr->pKeyInfo in bytes */ int sz; /* Size of pSorter in bytes */ int rc = SQLITE_OK; #if SQLITE_MAX_WORKER_THREADS==0 # define nWorker 0 #else int nWorker; #endif /* Initialize the upper limit on the number of worker threads */ #if SQLITE_MAX_WORKER_THREADS>0 if( sqlite3TempInMemory(db) || sqlite3GlobalConfig.bCoreMutex==0 ){ nWorker = 0; }else{ nWorker = db->aLimit[SQLITE_LIMIT_WORKER_THREADS]; } #endif /* Do not allow the total number of threads (main thread + all workers) ** to exceed the maximum merge count */ #if SQLITE_MAX_WORKER_THREADS>=SORTER_MAX_MERGE_COUNT if( nWorker>=SORTER_MAX_MERGE_COUNT ){ nWorker = SORTER_MAX_MERGE_COUNT-1; } #endif assert( pCsr->pKeyInfo && pCsr->pBtx==0 ); assert( pCsr->eCurType==CURTYPE_SORTER ); szKeyInfo = sizeof(KeyInfo) + (pCsr->pKeyInfo->nKeyField-1)*sizeof(CollSeq*); sz = sizeof(VdbeSorter) + nWorker * sizeof(SortSubtask); pSorter = (VdbeSorter*)sqlite3DbMallocZero(db, sz + szKeyInfo); pCsr->uc.pSorter = pSorter; if( pSorter==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ pSorter->pKeyInfo = pKeyInfo = (KeyInfo*)((u8*)pSorter + sz); memcpy(pKeyInfo, pCsr->pKeyInfo, szKeyInfo); pKeyInfo->db = 0; if( nField && nWorker==0 ){ pKeyInfo->nKeyField = nField; } pSorter->pgsz = pgsz = sqlite3BtreeGetPageSize(db->aDb[0].pBt); pSorter->nTask = nWorker + 1; pSorter->iPrev = (u8)(nWorker - 1); pSorter->bUseThreads = (pSorter->nTask>1); pSorter->db = db; for(i=0; inTask; i++){ SortSubtask *pTask = &pSorter->aTask[i]; pTask->pSorter = pSorter; } if( !sqlite3TempInMemory(db) ){ i64 mxCache; /* Cache size in bytes*/ u32 szPma = sqlite3GlobalConfig.szPma; pSorter->mnPmaSize = szPma * pgsz; mxCache = db->aDb[0].pSchema->cache_size; if( mxCache<0 ){ /* A negative cache-size value C indicates that the cache is abs(C) ** KiB in size. */ mxCache = mxCache * -1024; }else{ mxCache = mxCache * pgsz; } mxCache = MIN(mxCache, SQLITE_MAX_PMASZ); pSorter->mxPmaSize = MAX(pSorter->mnPmaSize, (int)mxCache); /* Avoid large memory allocations if the application has requested ** SQLITE_CONFIG_SMALL_MALLOC. */ if( sqlite3GlobalConfig.bSmallMalloc==0 ){ assert( pSorter->iMemory==0 ); pSorter->nMemory = pgsz; pSorter->list.aMemory = (u8*)sqlite3Malloc(pgsz); if( !pSorter->list.aMemory ) rc = SQLITE_NOMEM_BKPT; } } if( pKeyInfo->nAllField<13 && (pKeyInfo->aColl[0]==0 || pKeyInfo->aColl[0]==db->pDfltColl) && (pKeyInfo->aSortFlags[0] & KEYINFO_ORDER_BIGNULL)==0 ){ pSorter->typeMask = SORTER_TYPE_INTEGER | SORTER_TYPE_TEXT; } } return rc; } #undef nWorker /* Defined at the top of this function */ /* ** Free the list of sorted records starting at pRecord. */ static void vdbeSorterRecordFree(sqlite3 *db, SorterRecord *pRecord){ SorterRecord *p; SorterRecord *pNext; for(p=pRecord; p; p=pNext){ pNext = p->u.pNext; sqlite3DbFree(db, p); } } /* ** Free all resources owned by the object indicated by argument pTask. All ** fields of *pTask are zeroed before returning. */ static void vdbeSortSubtaskCleanup(sqlite3 *db, SortSubtask *pTask){ sqlite3DbFree(db, pTask->pUnpacked); #if SQLITE_MAX_WORKER_THREADS>0 /* pTask->list.aMemory can only be non-zero if it was handed memory ** from the main thread. That only occurs SQLITE_MAX_WORKER_THREADS>0 */ if( pTask->list.aMemory ){ sqlite3_free(pTask->list.aMemory); }else #endif { assert( pTask->list.aMemory==0 ); vdbeSorterRecordFree(0, pTask->list.pList); } if( pTask->file.pFd ){ sqlite3OsCloseFree(pTask->file.pFd); } if( pTask->file2.pFd ){ sqlite3OsCloseFree(pTask->file2.pFd); } memset(pTask, 0, sizeof(SortSubtask)); } #ifdef SQLITE_DEBUG_SORTER_THREADS static void vdbeSorterWorkDebug(SortSubtask *pTask, const char *zEvent){ i64 t; int iTask = (pTask - pTask->pSorter->aTask); sqlite3OsCurrentTimeInt64(pTask->pSorter->db->pVfs, &t); fprintf(stderr, "%lld:%d %s\n", t, iTask, zEvent); } static void vdbeSorterRewindDebug(const char *zEvent){ i64 t; sqlite3OsCurrentTimeInt64(sqlite3_vfs_find(0), &t); fprintf(stderr, "%lld:X %s\n", t, zEvent); } static void vdbeSorterPopulateDebug( SortSubtask *pTask, const char *zEvent ){ i64 t; int iTask = (pTask - pTask->pSorter->aTask); sqlite3OsCurrentTimeInt64(pTask->pSorter->db->pVfs, &t); fprintf(stderr, "%lld:bg%d %s\n", t, iTask, zEvent); } static void vdbeSorterBlockDebug( SortSubtask *pTask, int bBlocked, const char *zEvent ){ if( bBlocked ){ i64 t; sqlite3OsCurrentTimeInt64(pTask->pSorter->db->pVfs, &t); fprintf(stderr, "%lld:main %s\n", t, zEvent); } } #else # define vdbeSorterWorkDebug(x,y) # define vdbeSorterRewindDebug(y) # define vdbeSorterPopulateDebug(x,y) # define vdbeSorterBlockDebug(x,y,z) #endif #if SQLITE_MAX_WORKER_THREADS>0 /* ** Join thread pTask->thread. */ static int vdbeSorterJoinThread(SortSubtask *pTask){ int rc = SQLITE_OK; if( pTask->pThread ){ #ifdef SQLITE_DEBUG_SORTER_THREADS int bDone = pTask->bDone; #endif void *pRet = SQLITE_INT_TO_PTR(SQLITE_ERROR); vdbeSorterBlockDebug(pTask, !bDone, "enter"); (void)sqlite3ThreadJoin(pTask->pThread, &pRet); vdbeSorterBlockDebug(pTask, !bDone, "exit"); rc = SQLITE_PTR_TO_INT(pRet); assert( pTask->bDone==1 ); pTask->bDone = 0; pTask->pThread = 0; } return rc; } /* ** Launch a background thread to run xTask(pIn). */ static int vdbeSorterCreateThread( SortSubtask *pTask, /* Thread will use this task object */ void *(*xTask)(void*), /* Routine to run in a separate thread */ void *pIn /* Argument passed into xTask() */ ){ assert( pTask->pThread==0 && pTask->bDone==0 ); return sqlite3ThreadCreate(&pTask->pThread, xTask, pIn); } /* ** Join all outstanding threads launched by SorterWrite() to create ** level-0 PMAs. */ static int vdbeSorterJoinAll(VdbeSorter *pSorter, int rcin){ int rc = rcin; int i; /* This function is always called by the main user thread. ** ** If this function is being called after SorterRewind() has been called, ** it is possible that thread pSorter->aTask[pSorter->nTask-1].pThread ** is currently attempt to join one of the other threads. To avoid a race ** condition where this thread also attempts to join the same object, join ** thread pSorter->aTask[pSorter->nTask-1].pThread first. */ for(i=pSorter->nTask-1; i>=0; i--){ SortSubtask *pTask = &pSorter->aTask[i]; int rc2 = vdbeSorterJoinThread(pTask); if( rc==SQLITE_OK ) rc = rc2; } return rc; } #else # define vdbeSorterJoinAll(x,rcin) (rcin) # define vdbeSorterJoinThread(pTask) SQLITE_OK #endif /* ** Allocate a new MergeEngine object capable of handling up to ** nReader PmaReader inputs. ** ** nReader is automatically rounded up to the next power of two. ** nReader may not exceed SORTER_MAX_MERGE_COUNT even after rounding up. */ static MergeEngine *vdbeMergeEngineNew(int nReader){ int N = 2; /* Smallest power of two >= nReader */ int nByte; /* Total bytes of space to allocate */ MergeEngine *pNew; /* Pointer to allocated object to return */ assert( nReader<=SORTER_MAX_MERGE_COUNT ); while( NnTree = N; pNew->pTask = 0; pNew->aReadr = (PmaReader*)&pNew[1]; pNew->aTree = (int*)&pNew->aReadr[N]; } return pNew; } /* ** Free the MergeEngine object passed as the only argument. */ static void vdbeMergeEngineFree(MergeEngine *pMerger){ int i; if( pMerger ){ for(i=0; inTree; i++){ vdbePmaReaderClear(&pMerger->aReadr[i]); } } sqlite3_free(pMerger); } /* ** Free all resources associated with the IncrMerger object indicated by ** the first argument. */ static void vdbeIncrFree(IncrMerger *pIncr){ if( pIncr ){ #if SQLITE_MAX_WORKER_THREADS>0 if( pIncr->bUseThread ){ vdbeSorterJoinThread(pIncr->pTask); if( pIncr->aFile[0].pFd ) sqlite3OsCloseFree(pIncr->aFile[0].pFd); if( pIncr->aFile[1].pFd ) sqlite3OsCloseFree(pIncr->aFile[1].pFd); } #endif vdbeMergeEngineFree(pIncr->pMerger); sqlite3_free(pIncr); } } /* ** Reset a sorting cursor back to its original empty state. */ SQLITE_PRIVATE void sqlite3VdbeSorterReset(sqlite3 *db, VdbeSorter *pSorter){ int i; (void)vdbeSorterJoinAll(pSorter, SQLITE_OK); assert( pSorter->bUseThreads || pSorter->pReader==0 ); #if SQLITE_MAX_WORKER_THREADS>0 if( pSorter->pReader ){ vdbePmaReaderClear(pSorter->pReader); sqlite3DbFree(db, pSorter->pReader); pSorter->pReader = 0; } #endif vdbeMergeEngineFree(pSorter->pMerger); pSorter->pMerger = 0; for(i=0; inTask; i++){ SortSubtask *pTask = &pSorter->aTask[i]; vdbeSortSubtaskCleanup(db, pTask); pTask->pSorter = pSorter; } if( pSorter->list.aMemory==0 ){ vdbeSorterRecordFree(0, pSorter->list.pList); } pSorter->list.pList = 0; pSorter->list.szPMA = 0; pSorter->bUsePMA = 0; pSorter->iMemory = 0; pSorter->mxKeysize = 0; sqlite3DbFree(db, pSorter->pUnpacked); pSorter->pUnpacked = 0; } /* ** Free any cursor components allocated by sqlite3VdbeSorterXXX routines. */ SQLITE_PRIVATE void sqlite3VdbeSorterClose(sqlite3 *db, VdbeCursor *pCsr){ VdbeSorter *pSorter; assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; if( pSorter ){ sqlite3VdbeSorterReset(db, pSorter); sqlite3_free(pSorter->list.aMemory); sqlite3DbFree(db, pSorter); pCsr->uc.pSorter = 0; } } #if SQLITE_MAX_MMAP_SIZE>0 /* ** The first argument is a file-handle open on a temporary file. The file ** is guaranteed to be nByte bytes or smaller in size. This function ** attempts to extend the file to nByte bytes in size and to ensure that ** the VFS has memory mapped it. ** ** Whether or not the file does end up memory mapped of course depends on ** the specific VFS implementation. */ static void vdbeSorterExtendFile(sqlite3 *db, sqlite3_file *pFd, i64 nByte){ if( nByte<=(i64)(db->nMaxSorterMmap) && pFd->pMethods->iVersion>=3 ){ void *p = 0; int chunksize = 4*1024; sqlite3OsFileControlHint(pFd, SQLITE_FCNTL_CHUNK_SIZE, &chunksize); sqlite3OsFileControlHint(pFd, SQLITE_FCNTL_SIZE_HINT, &nByte); sqlite3OsFetch(pFd, 0, (int)nByte, &p); sqlite3OsUnfetch(pFd, 0, p); } } #else # define vdbeSorterExtendFile(x,y,z) #endif /* ** Allocate space for a file-handle and open a temporary file. If successful, ** set *ppFd to point to the malloc'd file-handle and return SQLITE_OK. ** Otherwise, set *ppFd to 0 and return an SQLite error code. */ static int vdbeSorterOpenTempFile( sqlite3 *db, /* Database handle doing sort */ i64 nExtend, /* Attempt to extend file to this size */ sqlite3_file **ppFd ){ int rc; if( sqlite3FaultSim(202) ) return SQLITE_IOERR_ACCESS; rc = sqlite3OsOpenMalloc(db->pVfs, 0, ppFd, SQLITE_OPEN_TEMP_JOURNAL | SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE, &rc ); if( rc==SQLITE_OK ){ i64 max = SQLITE_MAX_MMAP_SIZE; sqlite3OsFileControlHint(*ppFd, SQLITE_FCNTL_MMAP_SIZE, (void*)&max); if( nExtend>0 ){ vdbeSorterExtendFile(db, *ppFd, nExtend); } } return rc; } /* ** If it has not already been allocated, allocate the UnpackedRecord ** structure at pTask->pUnpacked. Return SQLITE_OK if successful (or ** if no allocation was required), or SQLITE_NOMEM otherwise. */ static int vdbeSortAllocUnpacked(SortSubtask *pTask){ if( pTask->pUnpacked==0 ){ pTask->pUnpacked = sqlite3VdbeAllocUnpackedRecord(pTask->pSorter->pKeyInfo); if( pTask->pUnpacked==0 ) return SQLITE_NOMEM_BKPT; pTask->pUnpacked->nField = pTask->pSorter->pKeyInfo->nKeyField; pTask->pUnpacked->errCode = 0; } return SQLITE_OK; } /* ** Merge the two sorted lists p1 and p2 into a single list. */ static SorterRecord *vdbeSorterMerge( SortSubtask *pTask, /* Calling thread context */ SorterRecord *p1, /* First list to merge */ SorterRecord *p2 /* Second list to merge */ ){ SorterRecord *pFinal = 0; SorterRecord **pp = &pFinal; int bCached = 0; assert( p1!=0 && p2!=0 ); for(;;){ int res; res = pTask->xCompare( pTask, &bCached, SRVAL(p1), p1->nVal, SRVAL(p2), p2->nVal ); if( res<=0 ){ *pp = p1; pp = &p1->u.pNext; p1 = p1->u.pNext; if( p1==0 ){ *pp = p2; break; } }else{ *pp = p2; pp = &p2->u.pNext; p2 = p2->u.pNext; bCached = 0; if( p2==0 ){ *pp = p1; break; } } } return pFinal; } /* ** Return the SorterCompare function to compare values collected by the ** sorter object passed as the only argument. */ static SorterCompare vdbeSorterGetCompare(VdbeSorter *p){ if( p->typeMask==SORTER_TYPE_INTEGER ){ return vdbeSorterCompareInt; }else if( p->typeMask==SORTER_TYPE_TEXT ){ return vdbeSorterCompareText; } return vdbeSorterCompare; } /* ** Sort the linked list of records headed at pTask->pList. Return ** SQLITE_OK if successful, or an SQLite error code (i.e. SQLITE_NOMEM) if ** an error occurs. */ static int vdbeSorterSort(SortSubtask *pTask, SorterList *pList){ int i; SorterRecord *p; int rc; SorterRecord *aSlot[64]; rc = vdbeSortAllocUnpacked(pTask); if( rc!=SQLITE_OK ) return rc; p = pList->pList; pTask->xCompare = vdbeSorterGetCompare(pTask->pSorter); memset(aSlot, 0, sizeof(aSlot)); while( p ){ SorterRecord *pNext; if( pList->aMemory ){ if( (u8*)p==pList->aMemory ){ pNext = 0; }else{ assert( p->u.iNextaMemory) ); pNext = (SorterRecord*)&pList->aMemory[p->u.iNext]; } }else{ pNext = p->u.pNext; } p->u.pNext = 0; for(i=0; aSlot[i]; i++){ p = vdbeSorterMerge(pTask, p, aSlot[i]); aSlot[i] = 0; } aSlot[i] = p; p = pNext; } p = 0; for(i=0; ipList = p; assert( pTask->pUnpacked->errCode==SQLITE_OK || pTask->pUnpacked->errCode==SQLITE_NOMEM ); return pTask->pUnpacked->errCode; } /* ** Initialize a PMA-writer object. */ static void vdbePmaWriterInit( sqlite3_file *pFd, /* File handle to write to */ PmaWriter *p, /* Object to populate */ int nBuf, /* Buffer size */ i64 iStart /* Offset of pFd to begin writing at */ ){ memset(p, 0, sizeof(PmaWriter)); p->aBuffer = (u8*)sqlite3Malloc(nBuf); if( !p->aBuffer ){ p->eFWErr = SQLITE_NOMEM_BKPT; }else{ p->iBufEnd = p->iBufStart = (iStart % nBuf); p->iWriteOff = iStart - p->iBufStart; p->nBuffer = nBuf; p->pFd = pFd; } } /* ** Write nData bytes of data to the PMA. Return SQLITE_OK ** if successful, or an SQLite error code if an error occurs. */ static void vdbePmaWriteBlob(PmaWriter *p, u8 *pData, int nData){ int nRem = nData; while( nRem>0 && p->eFWErr==0 ){ int nCopy = nRem; if( nCopy>(p->nBuffer - p->iBufEnd) ){ nCopy = p->nBuffer - p->iBufEnd; } memcpy(&p->aBuffer[p->iBufEnd], &pData[nData-nRem], nCopy); p->iBufEnd += nCopy; if( p->iBufEnd==p->nBuffer ){ p->eFWErr = sqlite3OsWrite(p->pFd, &p->aBuffer[p->iBufStart], p->iBufEnd - p->iBufStart, p->iWriteOff + p->iBufStart ); p->iBufStart = p->iBufEnd = 0; p->iWriteOff += p->nBuffer; } assert( p->iBufEndnBuffer ); nRem -= nCopy; } } /* ** Flush any buffered data to disk and clean up the PMA-writer object. ** The results of using the PMA-writer after this call are undefined. ** Return SQLITE_OK if flushing the buffered data succeeds or is not ** required. Otherwise, return an SQLite error code. ** ** Before returning, set *piEof to the offset immediately following the ** last byte written to the file. */ static int vdbePmaWriterFinish(PmaWriter *p, i64 *piEof){ int rc; if( p->eFWErr==0 && ALWAYS(p->aBuffer) && p->iBufEnd>p->iBufStart ){ p->eFWErr = sqlite3OsWrite(p->pFd, &p->aBuffer[p->iBufStart], p->iBufEnd - p->iBufStart, p->iWriteOff + p->iBufStart ); } *piEof = (p->iWriteOff + p->iBufEnd); sqlite3_free(p->aBuffer); rc = p->eFWErr; memset(p, 0, sizeof(PmaWriter)); return rc; } /* ** Write value iVal encoded as a varint to the PMA. Return ** SQLITE_OK if successful, or an SQLite error code if an error occurs. */ static void vdbePmaWriteVarint(PmaWriter *p, u64 iVal){ int nByte; u8 aByte[10]; nByte = sqlite3PutVarint(aByte, iVal); vdbePmaWriteBlob(p, aByte, nByte); } /* ** Write the current contents of in-memory linked-list pList to a level-0 ** PMA in the temp file belonging to sub-task pTask. Return SQLITE_OK if ** successful, or an SQLite error code otherwise. ** ** The format of a PMA is: ** ** * A varint. This varint contains the total number of bytes of content ** in the PMA (not including the varint itself). ** ** * One or more records packed end-to-end in order of ascending keys. ** Each record consists of a varint followed by a blob of data (the ** key). The varint is the number of bytes in the blob of data. */ static int vdbeSorterListToPMA(SortSubtask *pTask, SorterList *pList){ sqlite3 *db = pTask->pSorter->db; int rc = SQLITE_OK; /* Return code */ PmaWriter writer; /* Object used to write to the file */ #ifdef SQLITE_DEBUG /* Set iSz to the expected size of file pTask->file after writing the PMA. ** This is used by an assert() statement at the end of this function. */ i64 iSz = pList->szPMA + sqlite3VarintLen(pList->szPMA) + pTask->file.iEof; #endif vdbeSorterWorkDebug(pTask, "enter"); memset(&writer, 0, sizeof(PmaWriter)); assert( pList->szPMA>0 ); /* If the first temporary PMA file has not been opened, open it now. */ if( pTask->file.pFd==0 ){ rc = vdbeSorterOpenTempFile(db, 0, &pTask->file.pFd); assert( rc!=SQLITE_OK || pTask->file.pFd ); assert( pTask->file.iEof==0 ); assert( pTask->nPMA==0 ); } /* Try to get the file to memory map */ if( rc==SQLITE_OK ){ vdbeSorterExtendFile(db, pTask->file.pFd, pTask->file.iEof+pList->szPMA+9); } /* Sort the list */ if( rc==SQLITE_OK ){ rc = vdbeSorterSort(pTask, pList); } if( rc==SQLITE_OK ){ SorterRecord *p; SorterRecord *pNext = 0; vdbePmaWriterInit(pTask->file.pFd, &writer, pTask->pSorter->pgsz, pTask->file.iEof); pTask->nPMA++; vdbePmaWriteVarint(&writer, pList->szPMA); for(p=pList->pList; p; p=pNext){ pNext = p->u.pNext; vdbePmaWriteVarint(&writer, p->nVal); vdbePmaWriteBlob(&writer, SRVAL(p), p->nVal); if( pList->aMemory==0 ) sqlite3_free(p); } pList->pList = p; rc = vdbePmaWriterFinish(&writer, &pTask->file.iEof); } vdbeSorterWorkDebug(pTask, "exit"); assert( rc!=SQLITE_OK || pList->pList==0 ); assert( rc!=SQLITE_OK || pTask->file.iEof==iSz ); return rc; } /* ** Advance the MergeEngine to its next entry. ** Set *pbEof to true there is no next entry because ** the MergeEngine has reached the end of all its inputs. ** ** Return SQLITE_OK if successful or an error code if an error occurs. */ static int vdbeMergeEngineStep( MergeEngine *pMerger, /* The merge engine to advance to the next row */ int *pbEof /* Set TRUE at EOF. Set false for more content */ ){ int rc; int iPrev = pMerger->aTree[1];/* Index of PmaReader to advance */ SortSubtask *pTask = pMerger->pTask; /* Advance the current PmaReader */ rc = vdbePmaReaderNext(&pMerger->aReadr[iPrev]); /* Update contents of aTree[] */ if( rc==SQLITE_OK ){ int i; /* Index of aTree[] to recalculate */ PmaReader *pReadr1; /* First PmaReader to compare */ PmaReader *pReadr2; /* Second PmaReader to compare */ int bCached = 0; /* Find the first two PmaReaders to compare. The one that was just ** advanced (iPrev) and the one next to it in the array. */ pReadr1 = &pMerger->aReadr[(iPrev & 0xFFFE)]; pReadr2 = &pMerger->aReadr[(iPrev | 0x0001)]; for(i=(pMerger->nTree+iPrev)/2; i>0; i=i/2){ /* Compare pReadr1 and pReadr2. Store the result in variable iRes. */ int iRes; if( pReadr1->pFd==0 ){ iRes = +1; }else if( pReadr2->pFd==0 ){ iRes = -1; }else{ iRes = pTask->xCompare(pTask, &bCached, pReadr1->aKey, pReadr1->nKey, pReadr2->aKey, pReadr2->nKey ); } /* If pReadr1 contained the smaller value, set aTree[i] to its index. ** Then set pReadr2 to the next PmaReader to compare to pReadr1. In this ** case there is no cache of pReadr2 in pTask->pUnpacked, so set ** pKey2 to point to the record belonging to pReadr2. ** ** Alternatively, if pReadr2 contains the smaller of the two values, ** set aTree[i] to its index and update pReadr1. If vdbeSorterCompare() ** was actually called above, then pTask->pUnpacked now contains ** a value equivalent to pReadr2. So set pKey2 to NULL to prevent ** vdbeSorterCompare() from decoding pReadr2 again. ** ** If the two values were equal, then the value from the oldest ** PMA should be considered smaller. The VdbeSorter.aReadr[] array ** is sorted from oldest to newest, so pReadr1 contains older values ** than pReadr2 iff (pReadr1aTree[i] = (int)(pReadr1 - pMerger->aReadr); pReadr2 = &pMerger->aReadr[ pMerger->aTree[i ^ 0x0001] ]; bCached = 0; }else{ if( pReadr1->pFd ) bCached = 0; pMerger->aTree[i] = (int)(pReadr2 - pMerger->aReadr); pReadr1 = &pMerger->aReadr[ pMerger->aTree[i ^ 0x0001] ]; } } *pbEof = (pMerger->aReadr[pMerger->aTree[1]].pFd==0); } return (rc==SQLITE_OK ? pTask->pUnpacked->errCode : rc); } #if SQLITE_MAX_WORKER_THREADS>0 /* ** The main routine for background threads that write level-0 PMAs. */ static void *vdbeSorterFlushThread(void *pCtx){ SortSubtask *pTask = (SortSubtask*)pCtx; int rc; /* Return code */ assert( pTask->bDone==0 ); rc = vdbeSorterListToPMA(pTask, &pTask->list); pTask->bDone = 1; return SQLITE_INT_TO_PTR(rc); } #endif /* SQLITE_MAX_WORKER_THREADS>0 */ /* ** Flush the current contents of VdbeSorter.list to a new PMA, possibly ** using a background thread. */ static int vdbeSorterFlushPMA(VdbeSorter *pSorter){ #if SQLITE_MAX_WORKER_THREADS==0 pSorter->bUsePMA = 1; return vdbeSorterListToPMA(&pSorter->aTask[0], &pSorter->list); #else int rc = SQLITE_OK; int i; SortSubtask *pTask = 0; /* Thread context used to create new PMA */ int nWorker = (pSorter->nTask-1); /* Set the flag to indicate that at least one PMA has been written. ** Or will be, anyhow. */ pSorter->bUsePMA = 1; /* Select a sub-task to sort and flush the current list of in-memory ** records to disk. If the sorter is running in multi-threaded mode, ** round-robin between the first (pSorter->nTask-1) tasks. Except, if ** the background thread from a sub-tasks previous turn is still running, ** skip it. If the first (pSorter->nTask-1) sub-tasks are all still busy, ** fall back to using the final sub-task. The first (pSorter->nTask-1) ** sub-tasks are prefered as they use background threads - the final ** sub-task uses the main thread. */ for(i=0; iiPrev + i + 1) % nWorker; pTask = &pSorter->aTask[iTest]; if( pTask->bDone ){ rc = vdbeSorterJoinThread(pTask); } if( rc!=SQLITE_OK || pTask->pThread==0 ) break; } if( rc==SQLITE_OK ){ if( i==nWorker ){ /* Use the foreground thread for this operation */ rc = vdbeSorterListToPMA(&pSorter->aTask[nWorker], &pSorter->list); }else{ /* Launch a background thread for this operation */ u8 *aMem; void *pCtx; assert( pTask!=0 ); assert( pTask->pThread==0 && pTask->bDone==0 ); assert( pTask->list.pList==0 ); assert( pTask->list.aMemory==0 || pSorter->list.aMemory!=0 ); aMem = pTask->list.aMemory; pCtx = (void*)pTask; pSorter->iPrev = (u8)(pTask - pSorter->aTask); pTask->list = pSorter->list; pSorter->list.pList = 0; pSorter->list.szPMA = 0; if( aMem ){ pSorter->list.aMemory = aMem; pSorter->nMemory = sqlite3MallocSize(aMem); }else if( pSorter->list.aMemory ){ pSorter->list.aMemory = sqlite3Malloc(pSorter->nMemory); if( !pSorter->list.aMemory ) return SQLITE_NOMEM_BKPT; } rc = vdbeSorterCreateThread(pTask, vdbeSorterFlushThread, pCtx); } } return rc; #endif /* SQLITE_MAX_WORKER_THREADS!=0 */ } /* ** Add a record to the sorter. */ SQLITE_PRIVATE int sqlite3VdbeSorterWrite( const VdbeCursor *pCsr, /* Sorter cursor */ Mem *pVal /* Memory cell containing record */ ){ VdbeSorter *pSorter; int rc = SQLITE_OK; /* Return Code */ SorterRecord *pNew; /* New list element */ int bFlush; /* True to flush contents of memory to PMA */ int nReq; /* Bytes of memory required */ int nPMA; /* Bytes of PMA space required */ int t; /* serial type of first record field */ assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; getVarint32NR((const u8*)&pVal->z[1], t); if( t>0 && t<10 && t!=7 ){ pSorter->typeMask &= SORTER_TYPE_INTEGER; }else if( t>10 && (t & 0x01) ){ pSorter->typeMask &= SORTER_TYPE_TEXT; }else{ pSorter->typeMask = 0; } assert( pSorter ); /* Figure out whether or not the current contents of memory should be ** flushed to a PMA before continuing. If so, do so. ** ** If using the single large allocation mode (pSorter->aMemory!=0), then ** flush the contents of memory to a new PMA if (a) at least one value is ** already in memory and (b) the new value will not fit in memory. ** ** Or, if using separate allocations for each record, flush the contents ** of memory to a PMA if either of the following are true: ** ** * The total memory allocated for the in-memory list is greater ** than (page-size * cache-size), or ** ** * The total memory allocated for the in-memory list is greater ** than (page-size * 10) and sqlite3HeapNearlyFull() returns true. */ nReq = pVal->n + sizeof(SorterRecord); nPMA = pVal->n + sqlite3VarintLen(pVal->n); if( pSorter->mxPmaSize ){ if( pSorter->list.aMemory ){ bFlush = pSorter->iMemory && (pSorter->iMemory+nReq) > pSorter->mxPmaSize; }else{ bFlush = ( (pSorter->list.szPMA > pSorter->mxPmaSize) || (pSorter->list.szPMA > pSorter->mnPmaSize && sqlite3HeapNearlyFull()) ); } if( bFlush ){ rc = vdbeSorterFlushPMA(pSorter); pSorter->list.szPMA = 0; pSorter->iMemory = 0; assert( rc!=SQLITE_OK || pSorter->list.pList==0 ); } } pSorter->list.szPMA += nPMA; if( nPMA>pSorter->mxKeysize ){ pSorter->mxKeysize = nPMA; } if( pSorter->list.aMemory ){ int nMin = pSorter->iMemory + nReq; if( nMin>pSorter->nMemory ){ u8 *aNew; sqlite3_int64 nNew = 2 * (sqlite3_int64)pSorter->nMemory; int iListOff = -1; if( pSorter->list.pList ){ iListOff = (u8*)pSorter->list.pList - pSorter->list.aMemory; } while( nNew < nMin ) nNew = nNew*2; if( nNew > pSorter->mxPmaSize ) nNew = pSorter->mxPmaSize; if( nNew < nMin ) nNew = nMin; aNew = sqlite3Realloc(pSorter->list.aMemory, nNew); if( !aNew ) return SQLITE_NOMEM_BKPT; if( iListOff>=0 ){ pSorter->list.pList = (SorterRecord*)&aNew[iListOff]; } pSorter->list.aMemory = aNew; pSorter->nMemory = nNew; } pNew = (SorterRecord*)&pSorter->list.aMemory[pSorter->iMemory]; pSorter->iMemory += ROUND8(nReq); if( pSorter->list.pList ){ pNew->u.iNext = (int)((u8*)(pSorter->list.pList) - pSorter->list.aMemory); } }else{ pNew = (SorterRecord *)sqlite3Malloc(nReq); if( pNew==0 ){ return SQLITE_NOMEM_BKPT; } pNew->u.pNext = pSorter->list.pList; } memcpy(SRVAL(pNew), pVal->z, pVal->n); pNew->nVal = pVal->n; pSorter->list.pList = pNew; return rc; } /* ** Read keys from pIncr->pMerger and populate pIncr->aFile[1]. The format ** of the data stored in aFile[1] is the same as that used by regular PMAs, ** except that the number-of-bytes varint is omitted from the start. */ static int vdbeIncrPopulate(IncrMerger *pIncr){ int rc = SQLITE_OK; int rc2; i64 iStart = pIncr->iStartOff; SorterFile *pOut = &pIncr->aFile[1]; SortSubtask *pTask = pIncr->pTask; MergeEngine *pMerger = pIncr->pMerger; PmaWriter writer; assert( pIncr->bEof==0 ); vdbeSorterPopulateDebug(pTask, "enter"); vdbePmaWriterInit(pOut->pFd, &writer, pTask->pSorter->pgsz, iStart); while( rc==SQLITE_OK ){ int dummy; PmaReader *pReader = &pMerger->aReadr[ pMerger->aTree[1] ]; int nKey = pReader->nKey; i64 iEof = writer.iWriteOff + writer.iBufEnd; /* Check if the output file is full or if the input has been exhausted. ** In either case exit the loop. */ if( pReader->pFd==0 ) break; if( (iEof + nKey + sqlite3VarintLen(nKey))>(iStart + pIncr->mxSz) ) break; /* Write the next key to the output. */ vdbePmaWriteVarint(&writer, nKey); vdbePmaWriteBlob(&writer, pReader->aKey, nKey); assert( pIncr->pMerger->pTask==pTask ); rc = vdbeMergeEngineStep(pIncr->pMerger, &dummy); } rc2 = vdbePmaWriterFinish(&writer, &pOut->iEof); if( rc==SQLITE_OK ) rc = rc2; vdbeSorterPopulateDebug(pTask, "exit"); return rc; } #if SQLITE_MAX_WORKER_THREADS>0 /* ** The main routine for background threads that populate aFile[1] of ** multi-threaded IncrMerger objects. */ static void *vdbeIncrPopulateThread(void *pCtx){ IncrMerger *pIncr = (IncrMerger*)pCtx; void *pRet = SQLITE_INT_TO_PTR( vdbeIncrPopulate(pIncr) ); pIncr->pTask->bDone = 1; return pRet; } /* ** Launch a background thread to populate aFile[1] of pIncr. */ static int vdbeIncrBgPopulate(IncrMerger *pIncr){ void *p = (void*)pIncr; assert( pIncr->bUseThread ); return vdbeSorterCreateThread(pIncr->pTask, vdbeIncrPopulateThread, p); } #endif /* ** This function is called when the PmaReader corresponding to pIncr has ** finished reading the contents of aFile[0]. Its purpose is to "refill" ** aFile[0] such that the PmaReader should start rereading it from the ** beginning. ** ** For single-threaded objects, this is accomplished by literally reading ** keys from pIncr->pMerger and repopulating aFile[0]. ** ** For multi-threaded objects, all that is required is to wait until the ** background thread is finished (if it is not already) and then swap ** aFile[0] and aFile[1] in place. If the contents of pMerger have not ** been exhausted, this function also launches a new background thread ** to populate the new aFile[1]. ** ** SQLITE_OK is returned on success, or an SQLite error code otherwise. */ static int vdbeIncrSwap(IncrMerger *pIncr){ int rc = SQLITE_OK; #if SQLITE_MAX_WORKER_THREADS>0 if( pIncr->bUseThread ){ rc = vdbeSorterJoinThread(pIncr->pTask); if( rc==SQLITE_OK ){ SorterFile f0 = pIncr->aFile[0]; pIncr->aFile[0] = pIncr->aFile[1]; pIncr->aFile[1] = f0; } if( rc==SQLITE_OK ){ if( pIncr->aFile[0].iEof==pIncr->iStartOff ){ pIncr->bEof = 1; }else{ rc = vdbeIncrBgPopulate(pIncr); } } }else #endif { rc = vdbeIncrPopulate(pIncr); pIncr->aFile[0] = pIncr->aFile[1]; if( pIncr->aFile[0].iEof==pIncr->iStartOff ){ pIncr->bEof = 1; } } return rc; } /* ** Allocate and return a new IncrMerger object to read data from pMerger. ** ** If an OOM condition is encountered, return NULL. In this case free the ** pMerger argument before returning. */ static int vdbeIncrMergerNew( SortSubtask *pTask, /* The thread that will be using the new IncrMerger */ MergeEngine *pMerger, /* The MergeEngine that the IncrMerger will control */ IncrMerger **ppOut /* Write the new IncrMerger here */ ){ int rc = SQLITE_OK; IncrMerger *pIncr = *ppOut = (IncrMerger*) (sqlite3FaultSim(100) ? 0 : sqlite3MallocZero(sizeof(*pIncr))); if( pIncr ){ pIncr->pMerger = pMerger; pIncr->pTask = pTask; pIncr->mxSz = MAX(pTask->pSorter->mxKeysize+9,pTask->pSorter->mxPmaSize/2); pTask->file2.iEof += pIncr->mxSz; }else{ vdbeMergeEngineFree(pMerger); rc = SQLITE_NOMEM_BKPT; } return rc; } #if SQLITE_MAX_WORKER_THREADS>0 /* ** Set the "use-threads" flag on object pIncr. */ static void vdbeIncrMergerSetThreads(IncrMerger *pIncr){ pIncr->bUseThread = 1; pIncr->pTask->file2.iEof -= pIncr->mxSz; } #endif /* SQLITE_MAX_WORKER_THREADS>0 */ /* ** Recompute pMerger->aTree[iOut] by comparing the next keys on the ** two PmaReaders that feed that entry. Neither of the PmaReaders ** are advanced. This routine merely does the comparison. */ static void vdbeMergeEngineCompare( MergeEngine *pMerger, /* Merge engine containing PmaReaders to compare */ int iOut /* Store the result in pMerger->aTree[iOut] */ ){ int i1; int i2; int iRes; PmaReader *p1; PmaReader *p2; assert( iOutnTree && iOut>0 ); if( iOut>=(pMerger->nTree/2) ){ i1 = (iOut - pMerger->nTree/2) * 2; i2 = i1 + 1; }else{ i1 = pMerger->aTree[iOut*2]; i2 = pMerger->aTree[iOut*2+1]; } p1 = &pMerger->aReadr[i1]; p2 = &pMerger->aReadr[i2]; if( p1->pFd==0 ){ iRes = i2; }else if( p2->pFd==0 ){ iRes = i1; }else{ SortSubtask *pTask = pMerger->pTask; int bCached = 0; int res; assert( pTask->pUnpacked!=0 ); /* from vdbeSortSubtaskMain() */ res = pTask->xCompare( pTask, &bCached, p1->aKey, p1->nKey, p2->aKey, p2->nKey ); if( res<=0 ){ iRes = i1; }else{ iRes = i2; } } pMerger->aTree[iOut] = iRes; } /* ** Allowed values for the eMode parameter to vdbeMergeEngineInit() ** and vdbePmaReaderIncrMergeInit(). ** ** Only INCRINIT_NORMAL is valid in single-threaded builds (when ** SQLITE_MAX_WORKER_THREADS==0). The other values are only used ** when there exists one or more separate worker threads. */ #define INCRINIT_NORMAL 0 #define INCRINIT_TASK 1 #define INCRINIT_ROOT 2 /* ** Forward reference required as the vdbeIncrMergeInit() and ** vdbePmaReaderIncrInit() routines are called mutually recursively when ** building a merge tree. */ static int vdbePmaReaderIncrInit(PmaReader *pReadr, int eMode); /* ** Initialize the MergeEngine object passed as the second argument. Once this ** function returns, the first key of merged data may be read from the ** MergeEngine object in the usual fashion. ** ** If argument eMode is INCRINIT_ROOT, then it is assumed that any IncrMerge ** objects attached to the PmaReader objects that the merger reads from have ** already been populated, but that they have not yet populated aFile[0] and ** set the PmaReader objects up to read from it. In this case all that is ** required is to call vdbePmaReaderNext() on each PmaReader to point it at ** its first key. ** ** Otherwise, if eMode is any value other than INCRINIT_ROOT, then use ** vdbePmaReaderIncrMergeInit() to initialize each PmaReader that feeds data ** to pMerger. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ static int vdbeMergeEngineInit( SortSubtask *pTask, /* Thread that will run pMerger */ MergeEngine *pMerger, /* MergeEngine to initialize */ int eMode /* One of the INCRINIT_XXX constants */ ){ int rc = SQLITE_OK; /* Return code */ int i; /* For looping over PmaReader objects */ int nTree; /* Number of subtrees to merge */ /* Failure to allocate the merge would have been detected prior to ** invoking this routine */ assert( pMerger!=0 ); /* eMode is always INCRINIT_NORMAL in single-threaded mode */ assert( SQLITE_MAX_WORKER_THREADS>0 || eMode==INCRINIT_NORMAL ); /* Verify that the MergeEngine is assigned to a single thread */ assert( pMerger->pTask==0 ); pMerger->pTask = pTask; nTree = pMerger->nTree; for(i=0; i0 && eMode==INCRINIT_ROOT ){ /* PmaReaders should be normally initialized in order, as if they are ** reading from the same temp file this makes for more linear file IO. ** However, in the INCRINIT_ROOT case, if PmaReader aReadr[nTask-1] is ** in use it will block the vdbePmaReaderNext() call while it uses ** the main thread to fill its buffer. So calling PmaReaderNext() ** on this PmaReader before any of the multi-threaded PmaReaders takes ** better advantage of multi-processor hardware. */ rc = vdbePmaReaderNext(&pMerger->aReadr[nTree-i-1]); }else{ rc = vdbePmaReaderIncrInit(&pMerger->aReadr[i], INCRINIT_NORMAL); } if( rc!=SQLITE_OK ) return rc; } for(i=pMerger->nTree-1; i>0; i--){ vdbeMergeEngineCompare(pMerger, i); } return pTask->pUnpacked->errCode; } /* ** The PmaReader passed as the first argument is guaranteed to be an ** incremental-reader (pReadr->pIncr!=0). This function serves to open ** and/or initialize the temp file related fields of the IncrMerge ** object at (pReadr->pIncr). ** ** If argument eMode is set to INCRINIT_NORMAL, then all PmaReaders ** in the sub-tree headed by pReadr are also initialized. Data is then ** loaded into the buffers belonging to pReadr and it is set to point to ** the first key in its range. ** ** If argument eMode is set to INCRINIT_TASK, then pReadr is guaranteed ** to be a multi-threaded PmaReader and this function is being called in a ** background thread. In this case all PmaReaders in the sub-tree are ** initialized as for INCRINIT_NORMAL and the aFile[1] buffer belonging to ** pReadr is populated. However, pReadr itself is not set up to point ** to its first key. A call to vdbePmaReaderNext() is still required to do ** that. ** ** The reason this function does not call vdbePmaReaderNext() immediately ** in the INCRINIT_TASK case is that vdbePmaReaderNext() assumes that it has ** to block on thread (pTask->thread) before accessing aFile[1]. But, since ** this entire function is being run by thread (pTask->thread), that will ** lead to the current background thread attempting to join itself. ** ** Finally, if argument eMode is set to INCRINIT_ROOT, it may be assumed ** that pReadr->pIncr is a multi-threaded IncrMerge objects, and that all ** child-trees have already been initialized using IncrInit(INCRINIT_TASK). ** In this case vdbePmaReaderNext() is called on all child PmaReaders and ** the current PmaReader set to point to the first key in its range. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ static int vdbePmaReaderIncrMergeInit(PmaReader *pReadr, int eMode){ int rc = SQLITE_OK; IncrMerger *pIncr = pReadr->pIncr; SortSubtask *pTask = pIncr->pTask; sqlite3 *db = pTask->pSorter->db; /* eMode is always INCRINIT_NORMAL in single-threaded mode */ assert( SQLITE_MAX_WORKER_THREADS>0 || eMode==INCRINIT_NORMAL ); rc = vdbeMergeEngineInit(pTask, pIncr->pMerger, eMode); /* Set up the required files for pIncr. A multi-theaded IncrMerge object ** requires two temp files to itself, whereas a single-threaded object ** only requires a region of pTask->file2. */ if( rc==SQLITE_OK ){ int mxSz = pIncr->mxSz; #if SQLITE_MAX_WORKER_THREADS>0 if( pIncr->bUseThread ){ rc = vdbeSorterOpenTempFile(db, mxSz, &pIncr->aFile[0].pFd); if( rc==SQLITE_OK ){ rc = vdbeSorterOpenTempFile(db, mxSz, &pIncr->aFile[1].pFd); } }else #endif /*if( !pIncr->bUseThread )*/{ if( pTask->file2.pFd==0 ){ assert( pTask->file2.iEof>0 ); rc = vdbeSorterOpenTempFile(db, pTask->file2.iEof, &pTask->file2.pFd); pTask->file2.iEof = 0; } if( rc==SQLITE_OK ){ pIncr->aFile[1].pFd = pTask->file2.pFd; pIncr->iStartOff = pTask->file2.iEof; pTask->file2.iEof += mxSz; } } } #if SQLITE_MAX_WORKER_THREADS>0 if( rc==SQLITE_OK && pIncr->bUseThread ){ /* Use the current thread to populate aFile[1], even though this ** PmaReader is multi-threaded. If this is an INCRINIT_TASK object, ** then this function is already running in background thread ** pIncr->pTask->thread. ** ** If this is the INCRINIT_ROOT object, then it is running in the ** main VDBE thread. But that is Ok, as that thread cannot return ** control to the VDBE or proceed with anything useful until the ** first results are ready from this merger object anyway. */ assert( eMode==INCRINIT_ROOT || eMode==INCRINIT_TASK ); rc = vdbeIncrPopulate(pIncr); } #endif if( rc==SQLITE_OK && (SQLITE_MAX_WORKER_THREADS==0 || eMode!=INCRINIT_TASK) ){ rc = vdbePmaReaderNext(pReadr); } return rc; } #if SQLITE_MAX_WORKER_THREADS>0 /* ** The main routine for vdbePmaReaderIncrMergeInit() operations run in ** background threads. */ static void *vdbePmaReaderBgIncrInit(void *pCtx){ PmaReader *pReader = (PmaReader*)pCtx; void *pRet = SQLITE_INT_TO_PTR( vdbePmaReaderIncrMergeInit(pReader,INCRINIT_TASK) ); pReader->pIncr->pTask->bDone = 1; return pRet; } #endif /* ** If the PmaReader passed as the first argument is not an incremental-reader ** (if pReadr->pIncr==0), then this function is a no-op. Otherwise, it invokes ** the vdbePmaReaderIncrMergeInit() function with the parameters passed to ** this routine to initialize the incremental merge. ** ** If the IncrMerger object is multi-threaded (IncrMerger.bUseThread==1), ** then a background thread is launched to call vdbePmaReaderIncrMergeInit(). ** Or, if the IncrMerger is single threaded, the same function is called ** using the current thread. */ static int vdbePmaReaderIncrInit(PmaReader *pReadr, int eMode){ IncrMerger *pIncr = pReadr->pIncr; /* Incremental merger */ int rc = SQLITE_OK; /* Return code */ if( pIncr ){ #if SQLITE_MAX_WORKER_THREADS>0 assert( pIncr->bUseThread==0 || eMode==INCRINIT_TASK ); if( pIncr->bUseThread ){ void *pCtx = (void*)pReadr; rc = vdbeSorterCreateThread(pIncr->pTask, vdbePmaReaderBgIncrInit, pCtx); }else #endif { rc = vdbePmaReaderIncrMergeInit(pReadr, eMode); } } return rc; } /* ** Allocate a new MergeEngine object to merge the contents of nPMA level-0 ** PMAs from pTask->file. If no error occurs, set *ppOut to point to ** the new object and return SQLITE_OK. Or, if an error does occur, set *ppOut ** to NULL and return an SQLite error code. ** ** When this function is called, *piOffset is set to the offset of the ** first PMA to read from pTask->file. Assuming no error occurs, it is ** set to the offset immediately following the last byte of the last ** PMA before returning. If an error does occur, then the final value of ** *piOffset is undefined. */ static int vdbeMergeEngineLevel0( SortSubtask *pTask, /* Sorter task to read from */ int nPMA, /* Number of PMAs to read */ i64 *piOffset, /* IN/OUT: Readr offset in pTask->file */ MergeEngine **ppOut /* OUT: New merge-engine */ ){ MergeEngine *pNew; /* Merge engine to return */ i64 iOff = *piOffset; int i; int rc = SQLITE_OK; *ppOut = pNew = vdbeMergeEngineNew(nPMA); if( pNew==0 ) rc = SQLITE_NOMEM_BKPT; for(i=0; iaReadr[i]; rc = vdbePmaReaderInit(pTask, &pTask->file, iOff, pReadr, &nDummy); iOff = pReadr->iEof; } if( rc!=SQLITE_OK ){ vdbeMergeEngineFree(pNew); *ppOut = 0; } *piOffset = iOff; return rc; } /* ** Return the depth of a tree comprising nPMA PMAs, assuming a fanout of ** SORTER_MAX_MERGE_COUNT. The returned value does not include leaf nodes. ** ** i.e. ** ** nPMA<=16 -> TreeDepth() == 0 ** nPMA<=256 -> TreeDepth() == 1 ** nPMA<=65536 -> TreeDepth() == 2 */ static int vdbeSorterTreeDepth(int nPMA){ int nDepth = 0; i64 nDiv = SORTER_MAX_MERGE_COUNT; while( nDiv < (i64)nPMA ){ nDiv = nDiv * SORTER_MAX_MERGE_COUNT; nDepth++; } return nDepth; } /* ** pRoot is the root of an incremental merge-tree with depth nDepth (according ** to vdbeSorterTreeDepth()). pLeaf is the iSeq'th leaf to be added to the ** tree, counting from zero. This function adds pLeaf to the tree. ** ** If successful, SQLITE_OK is returned. If an error occurs, an SQLite error ** code is returned and pLeaf is freed. */ static int vdbeSorterAddToTree( SortSubtask *pTask, /* Task context */ int nDepth, /* Depth of tree according to TreeDepth() */ int iSeq, /* Sequence number of leaf within tree */ MergeEngine *pRoot, /* Root of tree */ MergeEngine *pLeaf /* Leaf to add to tree */ ){ int rc = SQLITE_OK; int nDiv = 1; int i; MergeEngine *p = pRoot; IncrMerger *pIncr; rc = vdbeIncrMergerNew(pTask, pLeaf, &pIncr); for(i=1; iaReadr[iIter]; if( pReadr->pIncr==0 ){ MergeEngine *pNew = vdbeMergeEngineNew(SORTER_MAX_MERGE_COUNT); if( pNew==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ rc = vdbeIncrMergerNew(pTask, pNew, &pReadr->pIncr); } } if( rc==SQLITE_OK ){ p = pReadr->pIncr->pMerger; nDiv = nDiv / SORTER_MAX_MERGE_COUNT; } } if( rc==SQLITE_OK ){ p->aReadr[iSeq % SORTER_MAX_MERGE_COUNT].pIncr = pIncr; }else{ vdbeIncrFree(pIncr); } return rc; } /* ** This function is called as part of a SorterRewind() operation on a sorter ** that has already written two or more level-0 PMAs to one or more temp ** files. It builds a tree of MergeEngine/IncrMerger/PmaReader objects that ** can be used to incrementally merge all PMAs on disk. ** ** If successful, SQLITE_OK is returned and *ppOut set to point to the ** MergeEngine object at the root of the tree before returning. Or, if an ** error occurs, an SQLite error code is returned and the final value ** of *ppOut is undefined. */ static int vdbeSorterMergeTreeBuild( VdbeSorter *pSorter, /* The VDBE cursor that implements the sort */ MergeEngine **ppOut /* Write the MergeEngine here */ ){ MergeEngine *pMain = 0; int rc = SQLITE_OK; int iTask; #if SQLITE_MAX_WORKER_THREADS>0 /* If the sorter uses more than one task, then create the top-level ** MergeEngine here. This MergeEngine will read data from exactly ** one PmaReader per sub-task. */ assert( pSorter->bUseThreads || pSorter->nTask==1 ); if( pSorter->nTask>1 ){ pMain = vdbeMergeEngineNew(pSorter->nTask); if( pMain==0 ) rc = SQLITE_NOMEM_BKPT; } #endif for(iTask=0; rc==SQLITE_OK && iTasknTask; iTask++){ SortSubtask *pTask = &pSorter->aTask[iTask]; assert( pTask->nPMA>0 || SQLITE_MAX_WORKER_THREADS>0 ); if( SQLITE_MAX_WORKER_THREADS==0 || pTask->nPMA ){ MergeEngine *pRoot = 0; /* Root node of tree for this task */ int nDepth = vdbeSorterTreeDepth(pTask->nPMA); i64 iReadOff = 0; if( pTask->nPMA<=SORTER_MAX_MERGE_COUNT ){ rc = vdbeMergeEngineLevel0(pTask, pTask->nPMA, &iReadOff, &pRoot); }else{ int i; int iSeq = 0; pRoot = vdbeMergeEngineNew(SORTER_MAX_MERGE_COUNT); if( pRoot==0 ) rc = SQLITE_NOMEM_BKPT; for(i=0; inPMA && rc==SQLITE_OK; i += SORTER_MAX_MERGE_COUNT){ MergeEngine *pMerger = 0; /* New level-0 PMA merger */ int nReader; /* Number of level-0 PMAs to merge */ nReader = MIN(pTask->nPMA - i, SORTER_MAX_MERGE_COUNT); rc = vdbeMergeEngineLevel0(pTask, nReader, &iReadOff, &pMerger); if( rc==SQLITE_OK ){ rc = vdbeSorterAddToTree(pTask, nDepth, iSeq++, pRoot, pMerger); } } } if( rc==SQLITE_OK ){ #if SQLITE_MAX_WORKER_THREADS>0 if( pMain!=0 ){ rc = vdbeIncrMergerNew(pTask, pRoot, &pMain->aReadr[iTask].pIncr); }else #endif { assert( pMain==0 ); pMain = pRoot; } }else{ vdbeMergeEngineFree(pRoot); } } } if( rc!=SQLITE_OK ){ vdbeMergeEngineFree(pMain); pMain = 0; } *ppOut = pMain; return rc; } /* ** This function is called as part of an sqlite3VdbeSorterRewind() operation ** on a sorter that has written two or more PMAs to temporary files. It sets ** up either VdbeSorter.pMerger (for single threaded sorters) or pReader ** (for multi-threaded sorters) so that it can be used to iterate through ** all records stored in the sorter. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ static int vdbeSorterSetupMerge(VdbeSorter *pSorter){ int rc; /* Return code */ SortSubtask *pTask0 = &pSorter->aTask[0]; MergeEngine *pMain = 0; #if SQLITE_MAX_WORKER_THREADS sqlite3 *db = pTask0->pSorter->db; int i; SorterCompare xCompare = vdbeSorterGetCompare(pSorter); for(i=0; inTask; i++){ pSorter->aTask[i].xCompare = xCompare; } #endif rc = vdbeSorterMergeTreeBuild(pSorter, &pMain); if( rc==SQLITE_OK ){ #if SQLITE_MAX_WORKER_THREADS assert( pSorter->bUseThreads==0 || pSorter->nTask>1 ); if( pSorter->bUseThreads ){ int iTask; PmaReader *pReadr = 0; SortSubtask *pLast = &pSorter->aTask[pSorter->nTask-1]; rc = vdbeSortAllocUnpacked(pLast); if( rc==SQLITE_OK ){ pReadr = (PmaReader*)sqlite3DbMallocZero(db, sizeof(PmaReader)); pSorter->pReader = pReadr; if( pReadr==0 ) rc = SQLITE_NOMEM_BKPT; } if( rc==SQLITE_OK ){ rc = vdbeIncrMergerNew(pLast, pMain, &pReadr->pIncr); if( rc==SQLITE_OK ){ vdbeIncrMergerSetThreads(pReadr->pIncr); for(iTask=0; iTask<(pSorter->nTask-1); iTask++){ IncrMerger *pIncr; if( (pIncr = pMain->aReadr[iTask].pIncr) ){ vdbeIncrMergerSetThreads(pIncr); assert( pIncr->pTask!=pLast ); } } for(iTask=0; rc==SQLITE_OK && iTasknTask; iTask++){ /* Check that: ** ** a) The incremental merge object is configured to use the ** right task, and ** b) If it is using task (nTask-1), it is configured to run ** in single-threaded mode. This is important, as the ** root merge (INCRINIT_ROOT) will be using the same task ** object. */ PmaReader *p = &pMain->aReadr[iTask]; assert( p->pIncr==0 || ( (p->pIncr->pTask==&pSorter->aTask[iTask]) /* a */ && (iTask!=pSorter->nTask-1 || p->pIncr->bUseThread==0) /* b */ )); rc = vdbePmaReaderIncrInit(p, INCRINIT_TASK); } } pMain = 0; } if( rc==SQLITE_OK ){ rc = vdbePmaReaderIncrMergeInit(pReadr, INCRINIT_ROOT); } }else #endif { rc = vdbeMergeEngineInit(pTask0, pMain, INCRINIT_NORMAL); pSorter->pMerger = pMain; pMain = 0; } } if( rc!=SQLITE_OK ){ vdbeMergeEngineFree(pMain); } return rc; } /* ** Once the sorter has been populated by calls to sqlite3VdbeSorterWrite, ** this function is called to prepare for iterating through the records ** in sorted order. */ SQLITE_PRIVATE int sqlite3VdbeSorterRewind(const VdbeCursor *pCsr, int *pbEof){ VdbeSorter *pSorter; int rc = SQLITE_OK; /* Return code */ assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; assert( pSorter ); /* If no data has been written to disk, then do not do so now. Instead, ** sort the VdbeSorter.pRecord list. The vdbe layer will read data directly ** from the in-memory list. */ if( pSorter->bUsePMA==0 ){ if( pSorter->list.pList ){ *pbEof = 0; rc = vdbeSorterSort(&pSorter->aTask[0], &pSorter->list); }else{ *pbEof = 1; } return rc; } /* Write the current in-memory list to a PMA. When the VdbeSorterWrite() ** function flushes the contents of memory to disk, it immediately always ** creates a new list consisting of a single key immediately afterwards. ** So the list is never empty at this point. */ assert( pSorter->list.pList ); rc = vdbeSorterFlushPMA(pSorter); /* Join all threads */ rc = vdbeSorterJoinAll(pSorter, rc); vdbeSorterRewindDebug("rewind"); /* Assuming no errors have occurred, set up a merger structure to ** incrementally read and merge all remaining PMAs. */ assert( pSorter->pReader==0 ); if( rc==SQLITE_OK ){ rc = vdbeSorterSetupMerge(pSorter); *pbEof = 0; } vdbeSorterRewindDebug("rewinddone"); return rc; } /* ** Advance to the next element in the sorter. Return value: ** ** SQLITE_OK success ** SQLITE_DONE end of data ** otherwise some kind of error. */ SQLITE_PRIVATE int sqlite3VdbeSorterNext(sqlite3 *db, const VdbeCursor *pCsr){ VdbeSorter *pSorter; int rc; /* Return code */ assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; assert( pSorter->bUsePMA || (pSorter->pReader==0 && pSorter->pMerger==0) ); if( pSorter->bUsePMA ){ assert( pSorter->pReader==0 || pSorter->pMerger==0 ); assert( pSorter->bUseThreads==0 || pSorter->pReader ); assert( pSorter->bUseThreads==1 || pSorter->pMerger ); #if SQLITE_MAX_WORKER_THREADS>0 if( pSorter->bUseThreads ){ rc = vdbePmaReaderNext(pSorter->pReader); if( rc==SQLITE_OK && pSorter->pReader->pFd==0 ) rc = SQLITE_DONE; }else #endif /*if( !pSorter->bUseThreads )*/ { int res = 0; assert( pSorter->pMerger!=0 ); assert( pSorter->pMerger->pTask==(&pSorter->aTask[0]) ); rc = vdbeMergeEngineStep(pSorter->pMerger, &res); if( rc==SQLITE_OK && res ) rc = SQLITE_DONE; } }else{ SorterRecord *pFree = pSorter->list.pList; pSorter->list.pList = pFree->u.pNext; pFree->u.pNext = 0; if( pSorter->list.aMemory==0 ) vdbeSorterRecordFree(db, pFree); rc = pSorter->list.pList ? SQLITE_OK : SQLITE_DONE; } return rc; } /* ** Return a pointer to a buffer owned by the sorter that contains the ** current key. */ static void *vdbeSorterRowkey( const VdbeSorter *pSorter, /* Sorter object */ int *pnKey /* OUT: Size of current key in bytes */ ){ void *pKey; if( pSorter->bUsePMA ){ PmaReader *pReader; #if SQLITE_MAX_WORKER_THREADS>0 if( pSorter->bUseThreads ){ pReader = pSorter->pReader; }else #endif /*if( !pSorter->bUseThreads )*/{ pReader = &pSorter->pMerger->aReadr[pSorter->pMerger->aTree[1]]; } *pnKey = pReader->nKey; pKey = pReader->aKey; }else{ *pnKey = pSorter->list.pList->nVal; pKey = SRVAL(pSorter->list.pList); } return pKey; } /* ** Copy the current sorter key into the memory cell pOut. */ SQLITE_PRIVATE int sqlite3VdbeSorterRowkey(const VdbeCursor *pCsr, Mem *pOut){ VdbeSorter *pSorter; void *pKey; int nKey; /* Sorter key to copy into pOut */ assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; pKey = vdbeSorterRowkey(pSorter, &nKey); if( sqlite3VdbeMemClearAndResize(pOut, nKey) ){ return SQLITE_NOMEM_BKPT; } pOut->n = nKey; MemSetTypeFlag(pOut, MEM_Blob); memcpy(pOut->z, pKey, nKey); return SQLITE_OK; } /* ** Compare the key in memory cell pVal with the key that the sorter cursor ** passed as the first argument currently points to. For the purposes of ** the comparison, ignore the rowid field at the end of each record. ** ** If the sorter cursor key contains any NULL values, consider it to be ** less than pVal. Even if pVal also contains NULL values. ** ** If an error occurs, return an SQLite error code (i.e. SQLITE_NOMEM). ** Otherwise, set *pRes to a negative, zero or positive value if the ** key in pVal is smaller than, equal to or larger than the current sorter ** key. ** ** This routine forms the core of the OP_SorterCompare opcode, which in ** turn is used to verify uniqueness when constructing a UNIQUE INDEX. */ SQLITE_PRIVATE int sqlite3VdbeSorterCompare( const VdbeCursor *pCsr, /* Sorter cursor */ Mem *pVal, /* Value to compare to current sorter key */ int nKeyCol, /* Compare this many columns */ int *pRes /* OUT: Result of comparison */ ){ VdbeSorter *pSorter; UnpackedRecord *r2; KeyInfo *pKeyInfo; int i; void *pKey; int nKey; /* Sorter key to compare pVal with */ assert( pCsr->eCurType==CURTYPE_SORTER ); pSorter = pCsr->uc.pSorter; r2 = pSorter->pUnpacked; pKeyInfo = pCsr->pKeyInfo; if( r2==0 ){ r2 = pSorter->pUnpacked = sqlite3VdbeAllocUnpackedRecord(pKeyInfo); if( r2==0 ) return SQLITE_NOMEM_BKPT; r2->nField = nKeyCol; } assert( r2->nField==nKeyCol ); pKey = vdbeSorterRowkey(pSorter, &nKey); sqlite3VdbeRecordUnpack(pKeyInfo, nKey, pKey, r2); for(i=0; iaMem[i].flags & MEM_Null ){ *pRes = -1; return SQLITE_OK; } } *pRes = sqlite3VdbeRecordCompare(pVal->n, pVal->z, r2); return SQLITE_OK; } /************** End of vdbesort.c ********************************************/ /************** Begin file vdbevtab.c ****************************************/ /* ** 2020-03-23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file implements virtual-tables for examining the bytecode content ** of a prepared statement. */ /* #include "sqliteInt.h" */ #if defined(SQLITE_ENABLE_BYTECODE_VTAB) && !defined(SQLITE_OMIT_VIRTUALTABLE) /* #include "vdbeInt.h" */ /* An instance of the bytecode() table-valued function. */ typedef struct bytecodevtab bytecodevtab; struct bytecodevtab { sqlite3_vtab base; /* Base class - must be first */ sqlite3 *db; /* Database connection */ int bTablesUsed; /* 2 for tables_used(). 0 for bytecode(). */ }; /* A cursor for scanning through the bytecode */ typedef struct bytecodevtab_cursor bytecodevtab_cursor; struct bytecodevtab_cursor { sqlite3_vtab_cursor base; /* Base class - must be first */ sqlite3_stmt *pStmt; /* The statement whose bytecode is displayed */ int iRowid; /* The rowid of the output table */ int iAddr; /* Address */ int needFinalize; /* Cursors owns pStmt and must finalize it */ int showSubprograms; /* Provide a listing of subprograms */ Op *aOp; /* Operand array */ char *zP4; /* Rendered P4 value */ const char *zType; /* tables_used.type */ const char *zSchema; /* tables_used.schema */ const char *zName; /* tables_used.name */ Mem sub; /* Subprograms */ }; /* ** Create a new bytecode() table-valued function. */ static int bytecodevtabConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ bytecodevtab *pNew; int rc; int isTabUsed = pAux!=0; const char *azSchema[2] = { /* bytecode() schema */ "CREATE TABLE x(" "addr INT," "opcode TEXT," "p1 INT," "p2 INT," "p3 INT," "p4 TEXT," "p5 INT," "comment TEXT," "subprog TEXT," "stmt HIDDEN" ");", /* Tables_used() schema */ "CREATE TABLE x(" "type TEXT," "schema TEXT," "name TEXT," "wr INT," "subprog TEXT," "stmt HIDDEN" ");" }; rc = sqlite3_declare_vtab(db, azSchema[isTabUsed]); if( rc==SQLITE_OK ){ pNew = sqlite3_malloc( sizeof(*pNew) ); *ppVtab = (sqlite3_vtab*)pNew; if( pNew==0 ) return SQLITE_NOMEM; memset(pNew, 0, sizeof(*pNew)); pNew->db = db; pNew->bTablesUsed = isTabUsed*2; } return rc; } /* ** This method is the destructor for bytecodevtab objects. */ static int bytecodevtabDisconnect(sqlite3_vtab *pVtab){ bytecodevtab *p = (bytecodevtab*)pVtab; sqlite3_free(p); return SQLITE_OK; } /* ** Constructor for a new bytecodevtab_cursor object. */ static int bytecodevtabOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ bytecodevtab *pVTab = (bytecodevtab*)p; bytecodevtab_cursor *pCur; pCur = sqlite3_malloc( sizeof(*pCur) ); if( pCur==0 ) return SQLITE_NOMEM; memset(pCur, 0, sizeof(*pCur)); sqlite3VdbeMemInit(&pCur->sub, pVTab->db, 1); *ppCursor = &pCur->base; return SQLITE_OK; } /* ** Clear all internal content from a bytecodevtab cursor. */ static void bytecodevtabCursorClear(bytecodevtab_cursor *pCur){ sqlite3_free(pCur->zP4); pCur->zP4 = 0; sqlite3VdbeMemRelease(&pCur->sub); sqlite3VdbeMemSetNull(&pCur->sub); if( pCur->needFinalize ){ sqlite3_finalize(pCur->pStmt); } pCur->pStmt = 0; pCur->needFinalize = 0; pCur->zType = 0; pCur->zSchema = 0; pCur->zName = 0; } /* ** Destructor for a bytecodevtab_cursor. */ static int bytecodevtabClose(sqlite3_vtab_cursor *cur){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor*)cur; bytecodevtabCursorClear(pCur); sqlite3_free(pCur); return SQLITE_OK; } /* ** Advance a bytecodevtab_cursor to its next row of output. */ static int bytecodevtabNext(sqlite3_vtab_cursor *cur){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor*)cur; bytecodevtab *pTab = (bytecodevtab*)cur->pVtab; int rc; if( pCur->zP4 ){ sqlite3_free(pCur->zP4); pCur->zP4 = 0; } if( pCur->zName ){ pCur->zName = 0; pCur->zType = 0; pCur->zSchema = 0; } rc = sqlite3VdbeNextOpcode( (Vdbe*)pCur->pStmt, pCur->showSubprograms ? &pCur->sub : 0, pTab->bTablesUsed, &pCur->iRowid, &pCur->iAddr, &pCur->aOp); if( rc!=SQLITE_OK ){ sqlite3VdbeMemSetNull(&pCur->sub); pCur->aOp = 0; } return SQLITE_OK; } /* ** Return TRUE if the cursor has been moved off of the last ** row of output. */ static int bytecodevtabEof(sqlite3_vtab_cursor *cur){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor*)cur; return pCur->aOp==0; } /* ** Return values of columns for the row at which the bytecodevtab_cursor ** is currently pointing. */ static int bytecodevtabColumn( sqlite3_vtab_cursor *cur, /* The cursor */ sqlite3_context *ctx, /* First argument to sqlite3_result_...() */ int i /* Which column to return */ ){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor*)cur; bytecodevtab *pVTab = (bytecodevtab*)cur->pVtab; Op *pOp = pCur->aOp + pCur->iAddr; if( pVTab->bTablesUsed ){ if( i==4 ){ i = 8; }else{ if( i<=2 && pCur->zType==0 ){ Schema *pSchema; HashElem *k; int iDb = pOp->p3; Pgno iRoot = (Pgno)pOp->p2; sqlite3 *db = pVTab->db; pSchema = db->aDb[iDb].pSchema; pCur->zSchema = db->aDb[iDb].zDbSName; for(k=sqliteHashFirst(&pSchema->tblHash); k; k=sqliteHashNext(k)){ Table *pTab = (Table*)sqliteHashData(k); if( !IsVirtual(pTab) && pTab->tnum==iRoot ){ pCur->zName = pTab->zName; pCur->zType = "table"; break; } } if( pCur->zName==0 ){ for(k=sqliteHashFirst(&pSchema->idxHash); k; k=sqliteHashNext(k)){ Index *pIdx = (Index*)sqliteHashData(k); if( pIdx->tnum==iRoot ){ pCur->zName = pIdx->zName; pCur->zType = "index"; } } } } i += 10; } } switch( i ){ case 0: /* addr */ sqlite3_result_int(ctx, pCur->iAddr); break; case 1: /* opcode */ sqlite3_result_text(ctx, (char*)sqlite3OpcodeName(pOp->opcode), -1, SQLITE_STATIC); break; case 2: /* p1 */ sqlite3_result_int(ctx, pOp->p1); break; case 3: /* p2 */ sqlite3_result_int(ctx, pOp->p2); break; case 4: /* p3 */ sqlite3_result_int(ctx, pOp->p3); break; case 5: /* p4 */ case 7: /* comment */ if( pCur->zP4==0 ){ pCur->zP4 = sqlite3VdbeDisplayP4(pVTab->db, pOp); } if( i==5 ){ sqlite3_result_text(ctx, pCur->zP4, -1, SQLITE_STATIC); }else{ #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS char *zCom = sqlite3VdbeDisplayComment(pVTab->db, pOp, pCur->zP4); sqlite3_result_text(ctx, zCom, -1, sqlite3_free); #endif } break; case 6: /* p5 */ sqlite3_result_int(ctx, pOp->p5); break; case 8: { /* subprog */ Op *aOp = pCur->aOp; assert( aOp[0].opcode==OP_Init ); assert( aOp[0].p4.z==0 || strncmp(aOp[0].p4.z,"-" "- ",3)==0 ); if( pCur->iRowid==pCur->iAddr+1 ){ break; /* Result is NULL for the main program */ }else if( aOp[0].p4.z!=0 ){ sqlite3_result_text(ctx, aOp[0].p4.z+3, -1, SQLITE_STATIC); }else{ sqlite3_result_text(ctx, "(FK)", 4, SQLITE_STATIC); } break; } case 10: /* tables_used.type */ sqlite3_result_text(ctx, pCur->zType, -1, SQLITE_STATIC); break; case 11: /* tables_used.schema */ sqlite3_result_text(ctx, pCur->zSchema, -1, SQLITE_STATIC); break; case 12: /* tables_used.name */ sqlite3_result_text(ctx, pCur->zName, -1, SQLITE_STATIC); break; case 13: /* tables_used.wr */ sqlite3_result_int(ctx, pOp->opcode==OP_OpenWrite); break; } return SQLITE_OK; } /* ** Return the rowid for the current row. In this implementation, the ** rowid is the same as the output value. */ static int bytecodevtabRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor*)cur; *pRowid = pCur->iRowid; return SQLITE_OK; } /* ** Initialize a cursor. ** ** idxNum==0 means show all subprograms ** idxNum==1 means show only the main bytecode and omit subprograms. */ static int bytecodevtabFilter( sqlite3_vtab_cursor *pVtabCursor, int idxNum, const char *idxStr, int argc, sqlite3_value **argv ){ bytecodevtab_cursor *pCur = (bytecodevtab_cursor *)pVtabCursor; bytecodevtab *pVTab = (bytecodevtab *)pVtabCursor->pVtab; int rc = SQLITE_OK; bytecodevtabCursorClear(pCur); pCur->iRowid = 0; pCur->iAddr = 0; pCur->showSubprograms = idxNum==0; assert( argc==1 ); if( sqlite3_value_type(argv[0])==SQLITE_TEXT ){ const char *zSql = (const char*)sqlite3_value_text(argv[0]); if( zSql==0 ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v2(pVTab->db, zSql, -1, &pCur->pStmt, 0); pCur->needFinalize = 1; } }else{ pCur->pStmt = (sqlite3_stmt*)sqlite3_value_pointer(argv[0],"stmt-pointer"); } if( pCur->pStmt==0 ){ pVTab->base.zErrMsg = sqlite3_mprintf( "argument to %s() is not a valid SQL statement", pVTab->bTablesUsed ? "tables_used" : "bytecode" ); rc = SQLITE_ERROR; }else{ bytecodevtabNext(pVtabCursor); } return rc; } /* ** We must have a single stmt=? constraint that will be passed through ** into the xFilter method. If there is no valid stmt=? constraint, ** then return an SQLITE_CONSTRAINT error. */ static int bytecodevtabBestIndex( sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo ){ int i; int rc = SQLITE_CONSTRAINT; struct sqlite3_index_constraint *p; bytecodevtab *pVTab = (bytecodevtab*)tab; int iBaseCol = pVTab->bTablesUsed ? 4 : 8; pIdxInfo->estimatedCost = (double)100; pIdxInfo->estimatedRows = 100; pIdxInfo->idxNum = 0; for(i=0, p=pIdxInfo->aConstraint; inConstraint; i++, p++){ if( p->usable==0 ) continue; if( p->op==SQLITE_INDEX_CONSTRAINT_EQ && p->iColumn==iBaseCol+1 ){ rc = SQLITE_OK; pIdxInfo->aConstraintUsage[i].omit = 1; pIdxInfo->aConstraintUsage[i].argvIndex = 1; } if( p->op==SQLITE_INDEX_CONSTRAINT_ISNULL && p->iColumn==iBaseCol ){ pIdxInfo->aConstraintUsage[i].omit = 1; pIdxInfo->idxNum = 1; } } return rc; } /* ** This following structure defines all the methods for the ** virtual table. */ static sqlite3_module bytecodevtabModule = { /* iVersion */ 0, /* xCreate */ 0, /* xConnect */ bytecodevtabConnect, /* xBestIndex */ bytecodevtabBestIndex, /* xDisconnect */ bytecodevtabDisconnect, /* xDestroy */ 0, /* xOpen */ bytecodevtabOpen, /* xClose */ bytecodevtabClose, /* xFilter */ bytecodevtabFilter, /* xNext */ bytecodevtabNext, /* xEof */ bytecodevtabEof, /* xColumn */ bytecodevtabColumn, /* xRowid */ bytecodevtabRowid, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindMethod */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0, /* xShadowName */ 0 }; SQLITE_PRIVATE int sqlite3VdbeBytecodeVtabInit(sqlite3 *db){ int rc; rc = sqlite3_create_module(db, "bytecode", &bytecodevtabModule, 0); if( rc==SQLITE_OK ){ rc = sqlite3_create_module(db, "tables_used", &bytecodevtabModule, &db); } return rc; } #elif defined(SQLITE_ENABLE_BYTECODE_VTAB) SQLITE_PRIVATE int sqlite3VdbeBytecodeVtabInit(sqlite3 *db){ return SQLITE_OK; } #endif /* SQLITE_ENABLE_BYTECODE_VTAB */ /************** End of vdbevtab.c ********************************************/ /************** Begin file memjournal.c **************************************/ /* ** 2008 October 7 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains code use to implement an in-memory rollback journal. ** The in-memory rollback journal is used to journal transactions for ** ":memory:" databases and when the journal_mode=MEMORY pragma is used. ** ** Update: The in-memory journal is also used to temporarily cache ** smaller journals that are not critical for power-loss recovery. ** For example, statement journals that are not too big will be held ** entirely in memory, thus reducing the number of file I/O calls, and ** more importantly, reducing temporary file creation events. If these ** journals become too large for memory, they are spilled to disk. But ** in the common case, they are usually small and no file I/O needs to ** occur. */ /* #include "sqliteInt.h" */ /* Forward references to internal structures */ typedef struct MemJournal MemJournal; typedef struct FilePoint FilePoint; typedef struct FileChunk FileChunk; /* ** The rollback journal is composed of a linked list of these structures. ** ** The zChunk array is always at least 8 bytes in size - usually much more. ** Its actual size is stored in the MemJournal.nChunkSize variable. */ struct FileChunk { FileChunk *pNext; /* Next chunk in the journal */ u8 zChunk[8]; /* Content of this chunk */ }; /* ** By default, allocate this many bytes of memory for each FileChunk object. */ #define MEMJOURNAL_DFLT_FILECHUNKSIZE 1024 /* ** For chunk size nChunkSize, return the number of bytes that should ** be allocated for each FileChunk structure. */ #define fileChunkSize(nChunkSize) (sizeof(FileChunk) + ((nChunkSize)-8)) /* ** An instance of this object serves as a cursor into the rollback journal. ** The cursor can be either for reading or writing. */ struct FilePoint { sqlite3_int64 iOffset; /* Offset from the beginning of the file */ FileChunk *pChunk; /* Specific chunk into which cursor points */ }; /* ** This structure is a subclass of sqlite3_file. Each open memory-journal ** is an instance of this class. */ struct MemJournal { const sqlite3_io_methods *pMethod; /* Parent class. MUST BE FIRST */ int nChunkSize; /* In-memory chunk-size */ int nSpill; /* Bytes of data before flushing */ int nSize; /* Bytes of data currently in memory */ FileChunk *pFirst; /* Head of in-memory chunk-list */ FilePoint endpoint; /* Pointer to the end of the file */ FilePoint readpoint; /* Pointer to the end of the last xRead() */ int flags; /* xOpen flags */ sqlite3_vfs *pVfs; /* The "real" underlying VFS */ const char *zJournal; /* Name of the journal file */ }; /* ** Read data from the in-memory journal file. This is the implementation ** of the sqlite3_vfs.xRead method. */ static int memjrnlRead( sqlite3_file *pJfd, /* The journal file from which to read */ void *zBuf, /* Put the results here */ int iAmt, /* Number of bytes to read */ sqlite_int64 iOfst /* Begin reading at this offset */ ){ MemJournal *p = (MemJournal *)pJfd; u8 *zOut = zBuf; int nRead = iAmt; int iChunkOffset; FileChunk *pChunk; if( (iAmt+iOfst)>p->endpoint.iOffset ){ return SQLITE_IOERR_SHORT_READ; } assert( p->readpoint.iOffset==0 || p->readpoint.pChunk!=0 ); if( p->readpoint.iOffset!=iOfst || iOfst==0 ){ sqlite3_int64 iOff = 0; for(pChunk=p->pFirst; ALWAYS(pChunk) && (iOff+p->nChunkSize)<=iOfst; pChunk=pChunk->pNext ){ iOff += p->nChunkSize; } }else{ pChunk = p->readpoint.pChunk; assert( pChunk!=0 ); } iChunkOffset = (int)(iOfst%p->nChunkSize); do { int iSpace = p->nChunkSize - iChunkOffset; int nCopy = MIN(nRead, (p->nChunkSize - iChunkOffset)); memcpy(zOut, (u8*)pChunk->zChunk + iChunkOffset, nCopy); zOut += nCopy; nRead -= iSpace; iChunkOffset = 0; } while( nRead>=0 && (pChunk=pChunk->pNext)!=0 && nRead>0 ); p->readpoint.iOffset = pChunk ? iOfst+iAmt : 0; p->readpoint.pChunk = pChunk; return SQLITE_OK; } /* ** Free the list of FileChunk structures headed at MemJournal.pFirst. */ static void memjrnlFreeChunks(MemJournal *p){ FileChunk *pIter; FileChunk *pNext; for(pIter=p->pFirst; pIter; pIter=pNext){ pNext = pIter->pNext; sqlite3_free(pIter); } p->pFirst = 0; } /* ** Flush the contents of memory to a real file on disk. */ static int memjrnlCreateFile(MemJournal *p){ int rc; sqlite3_file *pReal = (sqlite3_file*)p; MemJournal copy = *p; memset(p, 0, sizeof(MemJournal)); rc = sqlite3OsOpen(copy.pVfs, copy.zJournal, pReal, copy.flags, 0); if( rc==SQLITE_OK ){ int nChunk = copy.nChunkSize; i64 iOff = 0; FileChunk *pIter; for(pIter=copy.pFirst; pIter; pIter=pIter->pNext){ if( iOff + nChunk > copy.endpoint.iOffset ){ nChunk = copy.endpoint.iOffset - iOff; } rc = sqlite3OsWrite(pReal, (u8*)pIter->zChunk, nChunk, iOff); if( rc ) break; iOff += nChunk; } if( rc==SQLITE_OK ){ /* No error has occurred. Free the in-memory buffers. */ memjrnlFreeChunks(©); } } if( rc!=SQLITE_OK ){ /* If an error occurred while creating or writing to the file, restore ** the original before returning. This way, SQLite uses the in-memory ** journal data to roll back changes made to the internal page-cache ** before this function was called. */ sqlite3OsClose(pReal); *p = copy; } return rc; } /* ** Write data to the file. */ static int memjrnlWrite( sqlite3_file *pJfd, /* The journal file into which to write */ const void *zBuf, /* Take data to be written from here */ int iAmt, /* Number of bytes to write */ sqlite_int64 iOfst /* Begin writing at this offset into the file */ ){ MemJournal *p = (MemJournal *)pJfd; int nWrite = iAmt; u8 *zWrite = (u8 *)zBuf; /* If the file should be created now, create it and write the new data ** into the file on disk. */ if( p->nSpill>0 && (iAmt+iOfst)>p->nSpill ){ int rc = memjrnlCreateFile(p); if( rc==SQLITE_OK ){ rc = sqlite3OsWrite(pJfd, zBuf, iAmt, iOfst); } return rc; } /* If the contents of this write should be stored in memory */ else{ /* An in-memory journal file should only ever be appended to. Random ** access writes are not required. The only exception to this is when ** the in-memory journal is being used by a connection using the ** atomic-write optimization. In this case the first 28 bytes of the ** journal file may be written as part of committing the transaction. */ assert( iOfst==p->endpoint.iOffset || iOfst==0 ); #if defined(SQLITE_ENABLE_ATOMIC_WRITE) \ || defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) if( iOfst==0 && p->pFirst ){ assert( p->nChunkSize>iAmt ); memcpy((u8*)p->pFirst->zChunk, zBuf, iAmt); }else #else assert( iOfst>0 || p->pFirst==0 ); #endif { while( nWrite>0 ){ FileChunk *pChunk = p->endpoint.pChunk; int iChunkOffset = (int)(p->endpoint.iOffset%p->nChunkSize); int iSpace = MIN(nWrite, p->nChunkSize - iChunkOffset); if( iChunkOffset==0 ){ /* New chunk is required to extend the file. */ FileChunk *pNew = sqlite3_malloc(fileChunkSize(p->nChunkSize)); if( !pNew ){ return SQLITE_IOERR_NOMEM_BKPT; } pNew->pNext = 0; if( pChunk ){ assert( p->pFirst ); pChunk->pNext = pNew; }else{ assert( !p->pFirst ); p->pFirst = pNew; } p->endpoint.pChunk = pNew; } memcpy((u8*)p->endpoint.pChunk->zChunk + iChunkOffset, zWrite, iSpace); zWrite += iSpace; nWrite -= iSpace; p->endpoint.iOffset += iSpace; } p->nSize = iAmt + iOfst; } } return SQLITE_OK; } /* ** Truncate the file. ** ** If the journal file is already on disk, truncate it there. Or, if it ** is still in main memory but is being truncated to zero bytes in size, ** ignore */ static int memjrnlTruncate(sqlite3_file *pJfd, sqlite_int64 size){ MemJournal *p = (MemJournal *)pJfd; if( ALWAYS(size==0) ){ memjrnlFreeChunks(p); p->nSize = 0; p->endpoint.pChunk = 0; p->endpoint.iOffset = 0; p->readpoint.pChunk = 0; p->readpoint.iOffset = 0; } return SQLITE_OK; } /* ** Close the file. */ static int memjrnlClose(sqlite3_file *pJfd){ MemJournal *p = (MemJournal *)pJfd; memjrnlFreeChunks(p); return SQLITE_OK; } /* ** Sync the file. ** ** If the real file has been created, call its xSync method. Otherwise, ** syncing an in-memory journal is a no-op. */ static int memjrnlSync(sqlite3_file *pJfd, int flags){ UNUSED_PARAMETER2(pJfd, flags); return SQLITE_OK; } /* ** Query the size of the file in bytes. */ static int memjrnlFileSize(sqlite3_file *pJfd, sqlite_int64 *pSize){ MemJournal *p = (MemJournal *)pJfd; *pSize = (sqlite_int64) p->endpoint.iOffset; return SQLITE_OK; } /* ** Table of methods for MemJournal sqlite3_file object. */ static const struct sqlite3_io_methods MemJournalMethods = { 1, /* iVersion */ memjrnlClose, /* xClose */ memjrnlRead, /* xRead */ memjrnlWrite, /* xWrite */ memjrnlTruncate, /* xTruncate */ memjrnlSync, /* xSync */ memjrnlFileSize, /* xFileSize */ 0, /* xLock */ 0, /* xUnlock */ 0, /* xCheckReservedLock */ 0, /* xFileControl */ 0, /* xSectorSize */ 0, /* xDeviceCharacteristics */ 0, /* xShmMap */ 0, /* xShmLock */ 0, /* xShmBarrier */ 0, /* xShmUnmap */ 0, /* xFetch */ 0 /* xUnfetch */ }; /* ** Open a journal file. ** ** The behaviour of the journal file depends on the value of parameter ** nSpill. If nSpill is 0, then the journal file is always create and ** accessed using the underlying VFS. If nSpill is less than zero, then ** all content is always stored in main-memory. Finally, if nSpill is a ** positive value, then the journal file is initially created in-memory ** but may be flushed to disk later on. In this case the journal file is ** flushed to disk either when it grows larger than nSpill bytes in size, ** or when sqlite3JournalCreate() is called. */ SQLITE_PRIVATE int sqlite3JournalOpen( sqlite3_vfs *pVfs, /* The VFS to use for actual file I/O */ const char *zName, /* Name of the journal file */ sqlite3_file *pJfd, /* Preallocated, blank file handle */ int flags, /* Opening flags */ int nSpill /* Bytes buffered before opening the file */ ){ MemJournal *p = (MemJournal*)pJfd; /* Zero the file-handle object. If nSpill was passed zero, initialize ** it using the sqlite3OsOpen() function of the underlying VFS. In this ** case none of the code in this module is executed as a result of calls ** made on the journal file-handle. */ memset(p, 0, sizeof(MemJournal)); if( nSpill==0 ){ return sqlite3OsOpen(pVfs, zName, pJfd, flags, 0); } if( nSpill>0 ){ p->nChunkSize = nSpill; }else{ p->nChunkSize = 8 + MEMJOURNAL_DFLT_FILECHUNKSIZE - sizeof(FileChunk); assert( MEMJOURNAL_DFLT_FILECHUNKSIZE==fileChunkSize(p->nChunkSize) ); } pJfd->pMethods = (const sqlite3_io_methods*)&MemJournalMethods; p->nSpill = nSpill; p->flags = flags; p->zJournal = zName; p->pVfs = pVfs; return SQLITE_OK; } /* ** Open an in-memory journal file. */ SQLITE_PRIVATE void sqlite3MemJournalOpen(sqlite3_file *pJfd){ sqlite3JournalOpen(0, 0, pJfd, 0, -1); } #if defined(SQLITE_ENABLE_ATOMIC_WRITE) \ || defined(SQLITE_ENABLE_BATCH_ATOMIC_WRITE) /* ** If the argument p points to a MemJournal structure that is not an ** in-memory-only journal file (i.e. is one that was opened with a +ve ** nSpill parameter or as SQLITE_OPEN_MAIN_JOURNAL), and the underlying ** file has not yet been created, create it now. */ SQLITE_PRIVATE int sqlite3JournalCreate(sqlite3_file *pJfd){ int rc = SQLITE_OK; MemJournal *p = (MemJournal*)pJfd; if( pJfd->pMethods==&MemJournalMethods && ( #ifdef SQLITE_ENABLE_ATOMIC_WRITE p->nSpill>0 #else /* While this appears to not be possible without ATOMIC_WRITE, the ** paths are complex, so it seems prudent to leave the test in as ** a NEVER(), in case our analysis is subtly flawed. */ NEVER(p->nSpill>0) #endif #ifdef SQLITE_ENABLE_BATCH_ATOMIC_WRITE || (p->flags & SQLITE_OPEN_MAIN_JOURNAL) #endif )){ rc = memjrnlCreateFile(p); } return rc; } #endif /* ** The file-handle passed as the only argument is open on a journal file. ** Return true if this "journal file" is currently stored in heap memory, ** or false otherwise. */ SQLITE_PRIVATE int sqlite3JournalIsInMemory(sqlite3_file *p){ return p->pMethods==&MemJournalMethods; } /* ** Return the number of bytes required to store a JournalFile that uses vfs ** pVfs to create the underlying on-disk files. */ SQLITE_PRIVATE int sqlite3JournalSize(sqlite3_vfs *pVfs){ return MAX(pVfs->szOsFile, (int)sizeof(MemJournal)); } /************** End of memjournal.c ******************************************/ /************** Begin file walker.c ******************************************/ /* ** 2008 August 16 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains routines used for walking the parser tree for ** an SQL statement. */ /* #include "sqliteInt.h" */ /* #include */ /* #include */ #if !defined(SQLITE_OMIT_WINDOWFUNC) /* ** Walk all expressions linked into the list of Window objects passed ** as the second argument. */ static int walkWindowList(Walker *pWalker, Window *pList){ Window *pWin; for(pWin=pList; pWin; pWin=pWin->pNextWin){ int rc; rc = sqlite3WalkExprList(pWalker, pWin->pOrderBy); if( rc ) return WRC_Abort; rc = sqlite3WalkExprList(pWalker, pWin->pPartition); if( rc ) return WRC_Abort; rc = sqlite3WalkExpr(pWalker, pWin->pFilter); if( rc ) return WRC_Abort; /* The next two are purely for calls to sqlite3RenameExprUnmap() ** within sqlite3WindowOffsetExpr(). Because of constraints imposed ** by sqlite3WindowOffsetExpr(), they can never fail. The results do ** not matter anyhow. */ rc = sqlite3WalkExpr(pWalker, pWin->pStart); if( NEVER(rc) ) return WRC_Abort; rc = sqlite3WalkExpr(pWalker, pWin->pEnd); if( NEVER(rc) ) return WRC_Abort; } return WRC_Continue; } #endif /* ** Walk an expression tree. Invoke the callback once for each node ** of the expression, while descending. (In other words, the callback ** is invoked before visiting children.) ** ** The return value from the callback should be one of the WRC_* ** constants to specify how to proceed with the walk. ** ** WRC_Continue Continue descending down the tree. ** ** WRC_Prune Do not descend into child nodes, but allow ** the walk to continue with sibling nodes. ** ** WRC_Abort Do no more callbacks. Unwind the stack and ** return from the top-level walk call. ** ** The return value from this routine is WRC_Abort to abandon the tree walk ** and WRC_Continue to continue. */ static SQLITE_NOINLINE int walkExpr(Walker *pWalker, Expr *pExpr){ int rc; testcase( ExprHasProperty(pExpr, EP_TokenOnly) ); testcase( ExprHasProperty(pExpr, EP_Reduced) ); while(1){ rc = pWalker->xExprCallback(pWalker, pExpr); if( rc ) return rc & WRC_Abort; if( !ExprHasProperty(pExpr,(EP_TokenOnly|EP_Leaf)) ){ assert( pExpr->x.pList==0 || pExpr->pRight==0 ); if( pExpr->pLeft && walkExpr(pWalker, pExpr->pLeft) ) return WRC_Abort; if( pExpr->pRight ){ assert( !ExprHasProperty(pExpr, EP_WinFunc) ); pExpr = pExpr->pRight; continue; }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){ assert( !ExprHasProperty(pExpr, EP_WinFunc) ); if( sqlite3WalkSelect(pWalker, pExpr->x.pSelect) ) return WRC_Abort; }else{ if( pExpr->x.pList ){ if( sqlite3WalkExprList(pWalker, pExpr->x.pList) ) return WRC_Abort; } #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(pExpr, EP_WinFunc) ){ if( walkWindowList(pWalker, pExpr->y.pWin) ) return WRC_Abort; } #endif } } break; } return WRC_Continue; } SQLITE_PRIVATE int sqlite3WalkExpr(Walker *pWalker, Expr *pExpr){ return pExpr ? walkExpr(pWalker,pExpr) : WRC_Continue; } /* ** Call sqlite3WalkExpr() for every expression in list p or until ** an abort request is seen. */ SQLITE_PRIVATE int sqlite3WalkExprList(Walker *pWalker, ExprList *p){ int i; struct ExprList_item *pItem; if( p ){ for(i=p->nExpr, pItem=p->a; i>0; i--, pItem++){ if( sqlite3WalkExpr(pWalker, pItem->pExpr) ) return WRC_Abort; } } return WRC_Continue; } /* ** Walk all expressions associated with SELECT statement p. Do ** not invoke the SELECT callback on p, but do (of course) invoke ** any expr callbacks and SELECT callbacks that come from subqueries. ** Return WRC_Abort or WRC_Continue. */ SQLITE_PRIVATE int sqlite3WalkSelectExpr(Walker *pWalker, Select *p){ if( sqlite3WalkExprList(pWalker, p->pEList) ) return WRC_Abort; if( sqlite3WalkExpr(pWalker, p->pWhere) ) return WRC_Abort; if( sqlite3WalkExprList(pWalker, p->pGroupBy) ) return WRC_Abort; if( sqlite3WalkExpr(pWalker, p->pHaving) ) return WRC_Abort; if( sqlite3WalkExprList(pWalker, p->pOrderBy) ) return WRC_Abort; if( sqlite3WalkExpr(pWalker, p->pLimit) ) return WRC_Abort; #if !defined(SQLITE_OMIT_WINDOWFUNC) && !defined(SQLITE_OMIT_ALTERTABLE) { Parse *pParse = pWalker->pParse; if( pParse && IN_RENAME_OBJECT ){ /* The following may return WRC_Abort if there are unresolvable ** symbols (e.g. a table that does not exist) in a window definition. */ int rc = walkWindowList(pWalker, p->pWinDefn); return rc; } } #endif return WRC_Continue; } /* ** Walk the parse trees associated with all subqueries in the ** FROM clause of SELECT statement p. Do not invoke the select ** callback on p, but do invoke it on each FROM clause subquery ** and on any subqueries further down in the tree. Return ** WRC_Abort or WRC_Continue; */ SQLITE_PRIVATE int sqlite3WalkSelectFrom(Walker *pWalker, Select *p){ SrcList *pSrc; int i; struct SrcList_item *pItem; pSrc = p->pSrc; if( pSrc ){ for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){ if( pItem->pSelect && sqlite3WalkSelect(pWalker, pItem->pSelect) ){ return WRC_Abort; } if( pItem->fg.isTabFunc && sqlite3WalkExprList(pWalker, pItem->u1.pFuncArg) ){ return WRC_Abort; } } } return WRC_Continue; } /* ** Call sqlite3WalkExpr() for every expression in Select statement p. ** Invoke sqlite3WalkSelect() for subqueries in the FROM clause and ** on the compound select chain, p->pPrior. ** ** If it is not NULL, the xSelectCallback() callback is invoked before ** the walk of the expressions and FROM clause. The xSelectCallback2() ** method is invoked following the walk of the expressions and FROM clause, ** but only if both xSelectCallback and xSelectCallback2 are both non-NULL ** and if the expressions and FROM clause both return WRC_Continue; ** ** Return WRC_Continue under normal conditions. Return WRC_Abort if ** there is an abort request. ** ** If the Walker does not have an xSelectCallback() then this routine ** is a no-op returning WRC_Continue. */ SQLITE_PRIVATE int sqlite3WalkSelect(Walker *pWalker, Select *p){ int rc; if( p==0 ) return WRC_Continue; if( pWalker->xSelectCallback==0 ) return WRC_Continue; do{ rc = pWalker->xSelectCallback(pWalker, p); if( rc ) return rc & WRC_Abort; if( sqlite3WalkSelectExpr(pWalker, p) || sqlite3WalkSelectFrom(pWalker, p) ){ return WRC_Abort; } if( pWalker->xSelectCallback2 ){ pWalker->xSelectCallback2(pWalker, p); } p = p->pPrior; }while( p!=0 ); return WRC_Continue; } /* Increase the walkerDepth when entering a subquery, and ** descrease when leaving the subquery. */ SQLITE_PRIVATE int sqlite3WalkerDepthIncrease(Walker *pWalker, Select *pSelect){ UNUSED_PARAMETER(pSelect); pWalker->walkerDepth++; return WRC_Continue; } SQLITE_PRIVATE void sqlite3WalkerDepthDecrease(Walker *pWalker, Select *pSelect){ UNUSED_PARAMETER(pSelect); pWalker->walkerDepth--; } /* ** No-op routine for the parse-tree walker. ** ** When this routine is the Walker.xExprCallback then expression trees ** are walked without any actions being taken at each node. Presumably, ** when this routine is used for Walker.xExprCallback then ** Walker.xSelectCallback is set to do something useful for every ** subquery in the parser tree. */ SQLITE_PRIVATE int sqlite3ExprWalkNoop(Walker *NotUsed, Expr *NotUsed2){ UNUSED_PARAMETER2(NotUsed, NotUsed2); return WRC_Continue; } /* ** No-op routine for the parse-tree walker for SELECT statements. ** subquery in the parser tree. */ SQLITE_PRIVATE int sqlite3SelectWalkNoop(Walker *NotUsed, Select *NotUsed2){ UNUSED_PARAMETER2(NotUsed, NotUsed2); return WRC_Continue; } /************** End of walker.c **********************************************/ /************** Begin file resolve.c *****************************************/ /* ** 2008 August 18 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains routines used for walking the parser tree and ** resolve all identifiers by associating them with a particular ** table and column. */ /* #include "sqliteInt.h" */ /* ** Magic table number to mean the EXCLUDED table in an UPSERT statement. */ #define EXCLUDED_TABLE_NUMBER 2 /* ** Walk the expression tree pExpr and increase the aggregate function ** depth (the Expr.op2 field) by N on every TK_AGG_FUNCTION node. ** This needs to occur when copying a TK_AGG_FUNCTION node from an ** outer query into an inner subquery. ** ** incrAggFunctionDepth(pExpr,n) is the main routine. incrAggDepth(..) ** is a helper function - a callback for the tree walker. ** ** See also the sqlite3WindowExtraAggFuncDepth() routine in window.c */ static int incrAggDepth(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_AGG_FUNCTION ) pExpr->op2 += pWalker->u.n; return WRC_Continue; } static void incrAggFunctionDepth(Expr *pExpr, int N){ if( N>0 ){ Walker w; memset(&w, 0, sizeof(w)); w.xExprCallback = incrAggDepth; w.u.n = N; sqlite3WalkExpr(&w, pExpr); } } /* ** Turn the pExpr expression into an alias for the iCol-th column of the ** result set in pEList. ** ** If the reference is followed by a COLLATE operator, then make sure ** the COLLATE operator is preserved. For example: ** ** SELECT a+b, c+d FROM t1 ORDER BY 1 COLLATE nocase; ** ** Should be transformed into: ** ** SELECT a+b, c+d FROM t1 ORDER BY (a+b) COLLATE nocase; ** ** The nSubquery parameter specifies how many levels of subquery the ** alias is removed from the original expression. The usual value is ** zero but it might be more if the alias is contained within a subquery ** of the original expression. The Expr.op2 field of TK_AGG_FUNCTION ** structures must be increased by the nSubquery amount. */ static void resolveAlias( Parse *pParse, /* Parsing context */ ExprList *pEList, /* A result set */ int iCol, /* A column in the result set. 0..pEList->nExpr-1 */ Expr *pExpr, /* Transform this into an alias to the result set */ const char *zType, /* "GROUP" or "ORDER" or "" */ int nSubquery /* Number of subqueries that the label is moving */ ){ Expr *pOrig; /* The iCol-th column of the result set */ Expr *pDup; /* Copy of pOrig */ sqlite3 *db; /* The database connection */ assert( iCol>=0 && iColnExpr ); pOrig = pEList->a[iCol].pExpr; assert( pOrig!=0 ); db = pParse->db; pDup = sqlite3ExprDup(db, pOrig, 0); if( pDup!=0 ){ if( zType[0]!='G' ) incrAggFunctionDepth(pDup, nSubquery); if( pExpr->op==TK_COLLATE ){ pDup = sqlite3ExprAddCollateString(pParse, pDup, pExpr->u.zToken); } /* Before calling sqlite3ExprDelete(), set the EP_Static flag. This ** prevents ExprDelete() from deleting the Expr structure itself, ** allowing it to be repopulated by the memcpy() on the following line. ** The pExpr->u.zToken might point into memory that will be freed by the ** sqlite3DbFree(db, pDup) on the last line of this block, so be sure to ** make a copy of the token before doing the sqlite3DbFree(). */ ExprSetProperty(pExpr, EP_Static); sqlite3ExprDelete(db, pExpr); memcpy(pExpr, pDup, sizeof(*pExpr)); if( !ExprHasProperty(pExpr, EP_IntValue) && pExpr->u.zToken!=0 ){ assert( (pExpr->flags & (EP_Reduced|EP_TokenOnly))==0 ); pExpr->u.zToken = sqlite3DbStrDup(db, pExpr->u.zToken); pExpr->flags |= EP_MemToken; } if( ExprHasProperty(pExpr, EP_WinFunc) ){ if( pExpr->y.pWin!=0 ){ pExpr->y.pWin->pOwner = pExpr; }else{ assert( db->mallocFailed ); } } sqlite3DbFree(db, pDup); } ExprSetProperty(pExpr, EP_Alias); } /* ** Return TRUE if the name zCol occurs anywhere in the USING clause. ** ** Return FALSE if the USING clause is NULL or if it does not contain ** zCol. */ static int nameInUsingClause(IdList *pUsing, const char *zCol){ if( pUsing ){ int k; for(k=0; knId; k++){ if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ) return 1; } } return 0; } /* ** Subqueries stores the original database, table and column names for their ** result sets in ExprList.a[].zSpan, in the form "DATABASE.TABLE.COLUMN". ** Check to see if the zSpan given to this routine matches the zDb, zTab, ** and zCol. If any of zDb, zTab, and zCol are NULL then those fields will ** match anything. */ SQLITE_PRIVATE int sqlite3MatchEName( const struct ExprList_item *pItem, const char *zCol, const char *zTab, const char *zDb ){ int n; const char *zSpan; if( pItem->eEName!=ENAME_TAB ) return 0; zSpan = pItem->zEName; for(n=0; ALWAYS(zSpan[n]) && zSpan[n]!='.'; n++){} if( zDb && (sqlite3StrNICmp(zSpan, zDb, n)!=0 || zDb[n]!=0) ){ return 0; } zSpan += n+1; for(n=0; ALWAYS(zSpan[n]) && zSpan[n]!='.'; n++){} if( zTab && (sqlite3StrNICmp(zSpan, zTab, n)!=0 || zTab[n]!=0) ){ return 0; } zSpan += n+1; if( zCol && sqlite3StrICmp(zSpan, zCol)!=0 ){ return 0; } return 1; } /* ** Return TRUE if the double-quoted string mis-feature should be supported. */ static int areDoubleQuotedStringsEnabled(sqlite3 *db, NameContext *pTopNC){ if( db->init.busy ) return 1; /* Always support for legacy schemas */ if( pTopNC->ncFlags & NC_IsDDL ){ /* Currently parsing a DDL statement */ if( sqlite3WritableSchema(db) && (db->flags & SQLITE_DqsDML)!=0 ){ return 1; } return (db->flags & SQLITE_DqsDDL)!=0; }else{ /* Currently parsing a DML statement */ return (db->flags & SQLITE_DqsDML)!=0; } } /* ** The argument is guaranteed to be a non-NULL Expr node of type TK_COLUMN. ** return the appropriate colUsed mask. */ SQLITE_PRIVATE Bitmask sqlite3ExprColUsed(Expr *pExpr){ int n; Table *pExTab; n = pExpr->iColumn; pExTab = pExpr->y.pTab; assert( pExTab!=0 ); if( (pExTab->tabFlags & TF_HasGenerated)!=0 && (pExTab->aCol[n].colFlags & COLFLAG_GENERATED)!=0 ){ testcase( pExTab->nCol==BMS-1 ); testcase( pExTab->nCol==BMS ); return pExTab->nCol>=BMS ? ALLBITS : MASKBIT(pExTab->nCol)-1; }else{ testcase( n==BMS-1 ); testcase( n==BMS ); if( n>=BMS ) n = BMS-1; return ((Bitmask)1)<iDb Set the index in db->aDb[] of the database X ** (even if X is implied). ** pExpr->iTable Set to the cursor number for the table obtained ** from pSrcList. ** pExpr->y.pTab Points to the Table structure of X.Y (even if ** X and/or Y are implied.) ** pExpr->iColumn Set to the column number within the table. ** pExpr->op Set to TK_COLUMN. ** pExpr->pLeft Any expression this points to is deleted ** pExpr->pRight Any expression this points to is deleted. ** ** The zDb variable is the name of the database (the "X"). This value may be ** NULL meaning that name is of the form Y.Z or Z. Any available database ** can be used. The zTable variable is the name of the table (the "Y"). This ** value can be NULL if zDb is also NULL. If zTable is NULL it ** means that the form of the name is Z and that columns from any table ** can be used. ** ** If the name cannot be resolved unambiguously, leave an error message ** in pParse and return WRC_Abort. Return WRC_Prune on success. */ static int lookupName( Parse *pParse, /* The parsing context */ const char *zDb, /* Name of the database containing table, or NULL */ const char *zTab, /* Name of table containing column, or NULL */ const char *zCol, /* Name of the column. */ NameContext *pNC, /* The name context used to resolve the name */ Expr *pExpr /* Make this EXPR node point to the selected column */ ){ int i, j; /* Loop counters */ int cnt = 0; /* Number of matching column names */ int cntTab = 0; /* Number of matching table names */ int nSubquery = 0; /* How many levels of subquery */ sqlite3 *db = pParse->db; /* The database connection */ struct SrcList_item *pItem; /* Use for looping over pSrcList items */ struct SrcList_item *pMatch = 0; /* The matching pSrcList item */ NameContext *pTopNC = pNC; /* First namecontext in the list */ Schema *pSchema = 0; /* Schema of the expression */ int eNewExprOp = TK_COLUMN; /* New value for pExpr->op on success */ Table *pTab = 0; /* Table hold the row */ Column *pCol; /* A column of pTab */ assert( pNC ); /* the name context cannot be NULL. */ assert( zCol ); /* The Z in X.Y.Z cannot be NULL */ assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); /* Initialize the node to no-match */ pExpr->iTable = -1; ExprSetVVAProperty(pExpr, EP_NoReduce); /* Translate the schema name in zDb into a pointer to the corresponding ** schema. If not found, pSchema will remain NULL and nothing will match ** resulting in an appropriate error message toward the end of this routine */ if( zDb ){ testcase( pNC->ncFlags & NC_PartIdx ); testcase( pNC->ncFlags & NC_IsCheck ); if( (pNC->ncFlags & (NC_PartIdx|NC_IsCheck))!=0 ){ /* Silently ignore database qualifiers inside CHECK constraints and ** partial indices. Do not raise errors because that might break ** legacy and because it does not hurt anything to just ignore the ** database name. */ zDb = 0; }else{ for(i=0; inDb; i++){ assert( db->aDb[i].zDbSName ); if( sqlite3StrICmp(db->aDb[i].zDbSName,zDb)==0 ){ pSchema = db->aDb[i].pSchema; break; } } if( i==db->nDb && sqlite3StrICmp("main", zDb)==0 ){ /* This branch is taken when the main database has been renamed ** using SQLITE_DBCONFIG_MAINDBNAME. */ pSchema = db->aDb[0].pSchema; zDb = db->aDb[0].zDbSName; } } } /* Start at the inner-most context and move outward until a match is found */ assert( pNC && cnt==0 ); do{ ExprList *pEList; SrcList *pSrcList = pNC->pSrcList; if( pSrcList ){ for(i=0, pItem=pSrcList->a; inSrc; i++, pItem++){ u8 hCol; pTab = pItem->pTab; assert( pTab!=0 && pTab->zName!=0 ); assert( pTab->nCol>0 ); if( pItem->pSelect && (pItem->pSelect->selFlags & SF_NestedFrom)!=0 ){ int hit = 0; pEList = pItem->pSelect->pEList; for(j=0; jnExpr; j++){ if( sqlite3MatchEName(&pEList->a[j], zCol, zTab, zDb) ){ cnt++; cntTab = 2; pMatch = pItem; pExpr->iColumn = j; hit = 1; } } if( hit || zTab==0 ) continue; } if( zDb && pTab->pSchema!=pSchema ){ continue; } if( zTab ){ const char *zTabName = pItem->zAlias ? pItem->zAlias : pTab->zName; assert( zTabName!=0 ); if( sqlite3StrICmp(zTabName, zTab)!=0 ){ continue; } if( IN_RENAME_OBJECT && pItem->zAlias ){ sqlite3RenameTokenRemap(pParse, 0, (void*)&pExpr->y.pTab); } } if( 0==(cntTab++) ){ pMatch = pItem; } hCol = sqlite3StrIHash(zCol); for(j=0, pCol=pTab->aCol; jnCol; j++, pCol++){ if( pCol->hName==hCol && sqlite3StrICmp(pCol->zName, zCol)==0 ){ /* If there has been exactly one prior match and this match ** is for the right-hand table of a NATURAL JOIN or is in a ** USING clause, then skip this match. */ if( cnt==1 ){ if( pItem->fg.jointype & JT_NATURAL ) continue; if( nameInUsingClause(pItem->pUsing, zCol) ) continue; } cnt++; pMatch = pItem; /* Substitute the rowid (column -1) for the INTEGER PRIMARY KEY */ pExpr->iColumn = j==pTab->iPKey ? -1 : (i16)j; break; } } } if( pMatch ){ pExpr->iTable = pMatch->iCursor; pExpr->y.pTab = pMatch->pTab; /* RIGHT JOIN not (yet) supported */ assert( (pMatch->fg.jointype & JT_RIGHT)==0 ); if( (pMatch->fg.jointype & JT_LEFT)!=0 ){ ExprSetProperty(pExpr, EP_CanBeNull); } pSchema = pExpr->y.pTab->pSchema; } } /* if( pSrcList ) */ #if !defined(SQLITE_OMIT_TRIGGER) || !defined(SQLITE_OMIT_UPSERT) /* If we have not already resolved the name, then maybe ** it is a new.* or old.* trigger argument reference. Or ** maybe it is an excluded.* from an upsert. */ if( zDb==0 && zTab!=0 && cntTab==0 ){ pTab = 0; #ifndef SQLITE_OMIT_TRIGGER if( pParse->pTriggerTab!=0 ){ int op = pParse->eTriggerOp; assert( op==TK_DELETE || op==TK_UPDATE || op==TK_INSERT ); if( op!=TK_DELETE && sqlite3StrICmp("new",zTab) == 0 ){ pExpr->iTable = 1; pTab = pParse->pTriggerTab; }else if( op!=TK_INSERT && sqlite3StrICmp("old",zTab)==0 ){ pExpr->iTable = 0; pTab = pParse->pTriggerTab; } } #endif /* SQLITE_OMIT_TRIGGER */ #ifndef SQLITE_OMIT_UPSERT if( (pNC->ncFlags & NC_UUpsert)!=0 ){ Upsert *pUpsert = pNC->uNC.pUpsert; if( pUpsert && sqlite3StrICmp("excluded",zTab)==0 ){ pTab = pUpsert->pUpsertSrc->a[0].pTab; pExpr->iTable = EXCLUDED_TABLE_NUMBER; } } #endif /* SQLITE_OMIT_UPSERT */ if( pTab ){ int iCol; u8 hCol = sqlite3StrIHash(zCol); pSchema = pTab->pSchema; cntTab++; for(iCol=0, pCol=pTab->aCol; iColnCol; iCol++, pCol++){ if( pCol->hName==hCol && sqlite3StrICmp(pCol->zName, zCol)==0 ){ if( iCol==pTab->iPKey ){ iCol = -1; } break; } } if( iCol>=pTab->nCol && sqlite3IsRowid(zCol) && VisibleRowid(pTab) ){ /* IMP: R-51414-32910 */ iCol = -1; } if( iColnCol ){ cnt++; #ifndef SQLITE_OMIT_UPSERT if( pExpr->iTable==EXCLUDED_TABLE_NUMBER ){ testcase( iCol==(-1) ); if( IN_RENAME_OBJECT ){ pExpr->iColumn = iCol; pExpr->y.pTab = pTab; eNewExprOp = TK_COLUMN; }else{ pExpr->iTable = pNC->uNC.pUpsert->regData + sqlite3TableColumnToStorage(pTab, iCol); eNewExprOp = TK_REGISTER; ExprSetProperty(pExpr, EP_Alias); } }else #endif /* SQLITE_OMIT_UPSERT */ { #ifndef SQLITE_OMIT_TRIGGER if( iCol<0 ){ pExpr->affExpr = SQLITE_AFF_INTEGER; }else if( pExpr->iTable==0 ){ testcase( iCol==31 ); testcase( iCol==32 ); pParse->oldmask |= (iCol>=32 ? 0xffffffff : (((u32)1)<newmask |= (iCol>=32 ? 0xffffffff : (((u32)1)<y.pTab = pTab; pExpr->iColumn = (i16)iCol; eNewExprOp = TK_TRIGGER; #endif /* SQLITE_OMIT_TRIGGER */ } } } } #endif /* !defined(SQLITE_OMIT_TRIGGER) || !defined(SQLITE_OMIT_UPSERT) */ /* ** Perhaps the name is a reference to the ROWID */ if( cnt==0 && cntTab==1 && pMatch && (pNC->ncFlags & (NC_IdxExpr|NC_GenCol))==0 && sqlite3IsRowid(zCol) && VisibleRowid(pMatch->pTab) ){ cnt = 1; pExpr->iColumn = -1; pExpr->affExpr = SQLITE_AFF_INTEGER; } /* ** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z ** might refer to an result-set alias. This happens, for example, when ** we are resolving names in the WHERE clause of the following command: ** ** SELECT a+b AS x FROM table WHERE x<10; ** ** In cases like this, replace pExpr with a copy of the expression that ** forms the result set entry ("a+b" in the example) and return immediately. ** Note that the expression in the result set should have already been ** resolved by the time the WHERE clause is resolved. ** ** The ability to use an output result-set column in the WHERE, GROUP BY, ** or HAVING clauses, or as part of a larger expression in the ORDER BY ** clause is not standard SQL. This is a (goofy) SQLite extension, that ** is supported for backwards compatibility only. Hence, we issue a warning ** on sqlite3_log() whenever the capability is used. */ if( (pNC->ncFlags & NC_UEList)!=0 && cnt==0 && zTab==0 ){ pEList = pNC->uNC.pEList; assert( pEList!=0 ); for(j=0; jnExpr; j++){ char *zAs = pEList->a[j].zEName; if( pEList->a[j].eEName==ENAME_NAME && sqlite3_stricmp(zAs, zCol)==0 ){ Expr *pOrig; assert( pExpr->pLeft==0 && pExpr->pRight==0 ); assert( pExpr->x.pList==0 ); assert( pExpr->x.pSelect==0 ); pOrig = pEList->a[j].pExpr; if( (pNC->ncFlags&NC_AllowAgg)==0 && ExprHasProperty(pOrig, EP_Agg) ){ sqlite3ErrorMsg(pParse, "misuse of aliased aggregate %s", zAs); return WRC_Abort; } if( ExprHasProperty(pOrig, EP_Win) && ((pNC->ncFlags&NC_AllowWin)==0 || pNC!=pTopNC ) ){ sqlite3ErrorMsg(pParse, "misuse of aliased window function %s",zAs); return WRC_Abort; } if( sqlite3ExprVectorSize(pOrig)!=1 ){ sqlite3ErrorMsg(pParse, "row value misused"); return WRC_Abort; } resolveAlias(pParse, pEList, j, pExpr, "", nSubquery); cnt = 1; pMatch = 0; assert( zTab==0 && zDb==0 ); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, 0, (void*)pExpr); } goto lookupname_end; } } } /* Advance to the next name context. The loop will exit when either ** we have a match (cnt>0) or when we run out of name contexts. */ if( cnt ) break; pNC = pNC->pNext; nSubquery++; }while( pNC ); /* ** If X and Y are NULL (in other words if only the column name Z is ** supplied) and the value of Z is enclosed in double-quotes, then ** Z is a string literal if it doesn't match any column names. In that ** case, we need to return right away and not make any changes to ** pExpr. ** ** Because no reference was made to outer contexts, the pNC->nRef ** fields are not changed in any context. */ if( cnt==0 && zTab==0 ){ assert( pExpr->op==TK_ID ); if( ExprHasProperty(pExpr,EP_DblQuoted) && areDoubleQuotedStringsEnabled(db, pTopNC) ){ /* If a double-quoted identifier does not match any known column name, ** then treat it as a string. ** ** This hack was added in the early days of SQLite in a misguided attempt ** to be compatible with MySQL 3.x, which used double-quotes for strings. ** I now sorely regret putting in this hack. The effect of this hack is ** that misspelled identifier names are silently converted into strings ** rather than causing an error, to the frustration of countless ** programmers. To all those frustrated programmers, my apologies. ** ** Someday, I hope to get rid of this hack. Unfortunately there is ** a huge amount of legacy SQL that uses it. So for now, we just ** issue a warning. */ sqlite3_log(SQLITE_WARNING, "double-quoted string literal: \"%w\"", zCol); #ifdef SQLITE_ENABLE_NORMALIZE sqlite3VdbeAddDblquoteStr(db, pParse->pVdbe, zCol); #endif pExpr->op = TK_STRING; pExpr->y.pTab = 0; return WRC_Prune; } if( sqlite3ExprIdToTrueFalse(pExpr) ){ return WRC_Prune; } } /* ** cnt==0 means there was not match. cnt>1 means there were two or ** more matches. Either way, we have an error. */ if( cnt!=1 ){ const char *zErr; zErr = cnt==0 ? "no such column" : "ambiguous column name"; if( zDb ){ sqlite3ErrorMsg(pParse, "%s: %s.%s.%s", zErr, zDb, zTab, zCol); }else if( zTab ){ sqlite3ErrorMsg(pParse, "%s: %s.%s", zErr, zTab, zCol); }else{ sqlite3ErrorMsg(pParse, "%s: %s", zErr, zCol); } pParse->checkSchema = 1; pTopNC->nErr++; } /* If a column from a table in pSrcList is referenced, then record ** this fact in the pSrcList.a[].colUsed bitmask. Column 0 causes ** bit 0 to be set. Column 1 sets bit 1. And so forth. Bit 63 is ** set if the 63rd or any subsequent column is used. ** ** The colUsed mask is an optimization used to help determine if an ** index is a covering index. The correct answer is still obtained ** if the mask contains extra set bits. However, it is important to ** avoid setting bits beyond the maximum column number of the table. ** (See ticket [b92e5e8ec2cdbaa1]). ** ** If a generated column is referenced, set bits for every column ** of the table. */ if( pExpr->iColumn>=0 && pMatch!=0 ){ pMatch->colUsed |= sqlite3ExprColUsed(pExpr); } /* Clean up and return */ sqlite3ExprDelete(db, pExpr->pLeft); pExpr->pLeft = 0; sqlite3ExprDelete(db, pExpr->pRight); pExpr->pRight = 0; pExpr->op = eNewExprOp; ExprSetProperty(pExpr, EP_Leaf); lookupname_end: if( cnt==1 ){ assert( pNC!=0 ); if( !ExprHasProperty(pExpr, EP_Alias) ){ sqlite3AuthRead(pParse, pExpr, pSchema, pNC->pSrcList); } /* Increment the nRef value on all name contexts from TopNC up to ** the point where the name matched. */ for(;;){ assert( pTopNC!=0 ); pTopNC->nRef++; if( pTopNC==pNC ) break; pTopNC = pTopNC->pNext; } return WRC_Prune; } else { return WRC_Abort; } } /* ** Allocate and return a pointer to an expression to load the column iCol ** from datasource iSrc in SrcList pSrc. */ SQLITE_PRIVATE Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){ Expr *p = sqlite3ExprAlloc(db, TK_COLUMN, 0, 0); if( p ){ struct SrcList_item *pItem = &pSrc->a[iSrc]; Table *pTab = p->y.pTab = pItem->pTab; p->iTable = pItem->iCursor; if( p->y.pTab->iPKey==iCol ){ p->iColumn = -1; }else{ p->iColumn = (ynVar)iCol; if( (pTab->tabFlags & TF_HasGenerated)!=0 && (pTab->aCol[iCol].colFlags & COLFLAG_GENERATED)!=0 ){ testcase( pTab->nCol==63 ); testcase( pTab->nCol==64 ); pItem->colUsed = pTab->nCol>=64 ? ALLBITS : MASKBIT(pTab->nCol)-1; }else{ testcase( iCol==BMS ); testcase( iCol==BMS-1 ); pItem->colUsed |= ((Bitmask)1)<<(iCol>=BMS ? BMS-1 : iCol); } } } return p; } /* ** Report an error that an expression is not valid for some set of ** pNC->ncFlags values determined by validMask. ** ** static void notValid( ** Parse *pParse, // Leave error message here ** NameContext *pNC, // The name context ** const char *zMsg, // Type of error ** int validMask, // Set of contexts for which prohibited ** Expr *pExpr // Invalidate this expression on error ** ){...} ** ** As an optimization, since the conditional is almost always false ** (because errors are rare), the conditional is moved outside of the ** function call using a macro. */ static void notValidImpl( Parse *pParse, /* Leave error message here */ NameContext *pNC, /* The name context */ const char *zMsg, /* Type of error */ Expr *pExpr /* Invalidate this expression on error */ ){ const char *zIn = "partial index WHERE clauses"; if( pNC->ncFlags & NC_IdxExpr ) zIn = "index expressions"; #ifndef SQLITE_OMIT_CHECK else if( pNC->ncFlags & NC_IsCheck ) zIn = "CHECK constraints"; #endif #ifndef SQLITE_OMIT_GENERATED_COLUMNS else if( pNC->ncFlags & NC_GenCol ) zIn = "generated columns"; #endif sqlite3ErrorMsg(pParse, "%s prohibited in %s", zMsg, zIn); if( pExpr ) pExpr->op = TK_NULL; } #define sqlite3ResolveNotValid(P,N,M,X,E) \ assert( ((X)&~(NC_IsCheck|NC_PartIdx|NC_IdxExpr|NC_GenCol))==0 ); \ if( ((N)->ncFlags & (X))!=0 ) notValidImpl(P,N,M,E); /* ** Expression p should encode a floating point value between 1.0 and 0.0. ** Return 1024 times this value. Or return -1 if p is not a floating point ** value between 1.0 and 0.0. */ static int exprProbability(Expr *p){ double r = -1.0; if( p->op!=TK_FLOAT ) return -1; sqlite3AtoF(p->u.zToken, &r, sqlite3Strlen30(p->u.zToken), SQLITE_UTF8); assert( r>=0.0 ); if( r>1.0 ) return -1; return (int)(r*134217728.0); } /* ** This routine is callback for sqlite3WalkExpr(). ** ** Resolve symbolic names into TK_COLUMN operators for the current ** node in the expression tree. Return 0 to continue the search down ** the tree or 2 to abort the tree walk. ** ** This routine also does error checking and name resolution for ** function names. The operator for aggregate functions is changed ** to TK_AGG_FUNCTION. */ static int resolveExprStep(Walker *pWalker, Expr *pExpr){ NameContext *pNC; Parse *pParse; pNC = pWalker->u.pNC; assert( pNC!=0 ); pParse = pNC->pParse; assert( pParse==pWalker->pParse ); #ifndef NDEBUG if( pNC->pSrcList && pNC->pSrcList->nAlloc>0 ){ SrcList *pSrcList = pNC->pSrcList; int i; for(i=0; ipSrcList->nSrc; i++){ assert( pSrcList->a[i].iCursor>=0 && pSrcList->a[i].iCursornTab); } } #endif switch( pExpr->op ){ /* The special operator TK_ROW means use the rowid for the first ** column in the FROM clause. This is used by the LIMIT and ORDER BY ** clause processing on UPDATE and DELETE statements, and by ** UPDATE ... FROM statement processing. */ case TK_ROW: { SrcList *pSrcList = pNC->pSrcList; struct SrcList_item *pItem; assert( pSrcList && pSrcList->nSrc>=1 ); pItem = pSrcList->a; pExpr->op = TK_COLUMN; pExpr->y.pTab = pItem->pTab; pExpr->iTable = pItem->iCursor; pExpr->iColumn--; pExpr->affExpr = SQLITE_AFF_INTEGER; break; } /* A column name: ID ** Or table name and column name: ID.ID ** Or a database, table and column: ID.ID.ID ** ** The TK_ID and TK_OUT cases are combined so that there will only ** be one call to lookupName(). Then the compiler will in-line ** lookupName() for a size reduction and performance increase. */ case TK_ID: case TK_DOT: { const char *zColumn; const char *zTable; const char *zDb; Expr *pRight; if( pExpr->op==TK_ID ){ zDb = 0; zTable = 0; zColumn = pExpr->u.zToken; }else{ Expr *pLeft = pExpr->pLeft; testcase( pNC->ncFlags & NC_IdxExpr ); testcase( pNC->ncFlags & NC_GenCol ); sqlite3ResolveNotValid(pParse, pNC, "the \".\" operator", NC_IdxExpr|NC_GenCol, 0); pRight = pExpr->pRight; if( pRight->op==TK_ID ){ zDb = 0; }else{ assert( pRight->op==TK_DOT ); zDb = pLeft->u.zToken; pLeft = pRight->pLeft; pRight = pRight->pRight; } zTable = pLeft->u.zToken; zColumn = pRight->u.zToken; if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, (void*)pExpr, (void*)pRight); sqlite3RenameTokenRemap(pParse, (void*)&pExpr->y.pTab, (void*)pLeft); } } return lookupName(pParse, zDb, zTable, zColumn, pNC, pExpr); } /* Resolve function names */ case TK_FUNCTION: { ExprList *pList = pExpr->x.pList; /* The argument list */ int n = pList ? pList->nExpr : 0; /* Number of arguments */ int no_such_func = 0; /* True if no such function exists */ int wrong_num_args = 0; /* True if wrong number of arguments */ int is_agg = 0; /* True if is an aggregate function */ int nId; /* Number of characters in function name */ const char *zId; /* The function name. */ FuncDef *pDef; /* Information about the function */ u8 enc = ENC(pParse->db); /* The database encoding */ int savedAllowFlags = (pNC->ncFlags & (NC_AllowAgg | NC_AllowWin)); #ifndef SQLITE_OMIT_WINDOWFUNC Window *pWin = (IsWindowFunc(pExpr) ? pExpr->y.pWin : 0); #endif assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); zId = pExpr->u.zToken; nId = sqlite3Strlen30(zId); pDef = sqlite3FindFunction(pParse->db, zId, n, enc, 0); if( pDef==0 ){ pDef = sqlite3FindFunction(pParse->db, zId, -2, enc, 0); if( pDef==0 ){ no_such_func = 1; }else{ wrong_num_args = 1; } }else{ is_agg = pDef->xFinalize!=0; if( pDef->funcFlags & SQLITE_FUNC_UNLIKELY ){ ExprSetProperty(pExpr, EP_Unlikely); if( n==2 ){ pExpr->iTable = exprProbability(pList->a[1].pExpr); if( pExpr->iTable<0 ){ sqlite3ErrorMsg(pParse, "second argument to likelihood() must be a " "constant between 0.0 and 1.0"); pNC->nErr++; } }else{ /* EVIDENCE-OF: R-61304-29449 The unlikely(X) function is ** equivalent to likelihood(X, 0.0625). ** EVIDENCE-OF: R-01283-11636 The unlikely(X) function is ** short-hand for likelihood(X,0.0625). ** EVIDENCE-OF: R-36850-34127 The likely(X) function is short-hand ** for likelihood(X,0.9375). ** EVIDENCE-OF: R-53436-40973 The likely(X) function is equivalent ** to likelihood(X,0.9375). */ /* TUNING: unlikely() probability is 0.0625. likely() is 0.9375 */ pExpr->iTable = pDef->zName[0]=='u' ? 8388608 : 125829120; } } #ifndef SQLITE_OMIT_AUTHORIZATION { int auth = sqlite3AuthCheck(pParse, SQLITE_FUNCTION, 0,pDef->zName,0); if( auth!=SQLITE_OK ){ if( auth==SQLITE_DENY ){ sqlite3ErrorMsg(pParse, "not authorized to use function: %s", pDef->zName); pNC->nErr++; } pExpr->op = TK_NULL; return WRC_Prune; } } #endif if( pDef->funcFlags & (SQLITE_FUNC_CONSTANT|SQLITE_FUNC_SLOCHNG) ){ /* For the purposes of the EP_ConstFunc flag, date and time ** functions and other functions that change slowly are considered ** constant because they are constant for the duration of one query. ** This allows them to be factored out of inner loops. */ ExprSetProperty(pExpr,EP_ConstFunc); } if( (pDef->funcFlags & SQLITE_FUNC_CONSTANT)==0 ){ /* Clearly non-deterministic functions like random(), but also ** date/time functions that use 'now', and other functions like ** sqlite_version() that might change over time cannot be used ** in an index or generated column. Curiously, they can be used ** in a CHECK constraint. SQLServer, MySQL, and PostgreSQL all ** all this. */ sqlite3ResolveNotValid(pParse, pNC, "non-deterministic functions", NC_IdxExpr|NC_PartIdx|NC_GenCol, 0); }else{ assert( (NC_SelfRef & 0xff)==NC_SelfRef ); /* Must fit in 8 bits */ pExpr->op2 = pNC->ncFlags & NC_SelfRef; if( pNC->ncFlags & NC_FromDDL ) ExprSetProperty(pExpr, EP_FromDDL); } if( (pDef->funcFlags & SQLITE_FUNC_INTERNAL)!=0 && pParse->nested==0 && (pParse->db->mDbFlags & DBFLAG_InternalFunc)==0 ){ /* Internal-use-only functions are disallowed unless the ** SQL is being compiled using sqlite3NestedParse() or ** the SQLITE_TESTCTRL_INTERNAL_FUNCTIONS test-control has be ** used to activate internal functionsn for testing purposes */ no_such_func = 1; pDef = 0; }else if( (pDef->funcFlags & (SQLITE_FUNC_DIRECT|SQLITE_FUNC_UNSAFE))!=0 && !IN_RENAME_OBJECT ){ sqlite3ExprFunctionUsable(pParse, pExpr, pDef); } } if( 0==IN_RENAME_OBJECT ){ #ifndef SQLITE_OMIT_WINDOWFUNC assert( is_agg==0 || (pDef->funcFlags & SQLITE_FUNC_MINMAX) || (pDef->xValue==0 && pDef->xInverse==0) || (pDef->xValue && pDef->xInverse && pDef->xSFunc && pDef->xFinalize) ); if( pDef && pDef->xValue==0 && pWin ){ sqlite3ErrorMsg(pParse, "%.*s() may not be used as a window function", nId, zId ); pNC->nErr++; }else if( (is_agg && (pNC->ncFlags & NC_AllowAgg)==0) || (is_agg && (pDef->funcFlags&SQLITE_FUNC_WINDOW) && !pWin) || (is_agg && pWin && (pNC->ncFlags & NC_AllowWin)==0) ){ const char *zType; if( (pDef->funcFlags & SQLITE_FUNC_WINDOW) || pWin ){ zType = "window"; }else{ zType = "aggregate"; } sqlite3ErrorMsg(pParse, "misuse of %s function %.*s()",zType,nId,zId); pNC->nErr++; is_agg = 0; } #else if( (is_agg && (pNC->ncFlags & NC_AllowAgg)==0) ){ sqlite3ErrorMsg(pParse,"misuse of aggregate function %.*s()",nId,zId); pNC->nErr++; is_agg = 0; } #endif else if( no_such_func && pParse->db->init.busy==0 #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION && pParse->explain==0 #endif ){ sqlite3ErrorMsg(pParse, "no such function: %.*s", nId, zId); pNC->nErr++; }else if( wrong_num_args ){ sqlite3ErrorMsg(pParse,"wrong number of arguments to function %.*s()", nId, zId); pNC->nErr++; } #ifndef SQLITE_OMIT_WINDOWFUNC else if( is_agg==0 && ExprHasProperty(pExpr, EP_WinFunc) ){ sqlite3ErrorMsg(pParse, "FILTER may not be used with non-aggregate %.*s()", nId, zId ); pNC->nErr++; } #endif if( is_agg ){ /* Window functions may not be arguments of aggregate functions. ** Or arguments of other window functions. But aggregate functions ** may be arguments for window functions. */ #ifndef SQLITE_OMIT_WINDOWFUNC pNC->ncFlags &= ~(NC_AllowWin | (!pWin ? NC_AllowAgg : 0)); #else pNC->ncFlags &= ~NC_AllowAgg; #endif } } #ifndef SQLITE_OMIT_WINDOWFUNC else if( ExprHasProperty(pExpr, EP_WinFunc) ){ is_agg = 1; } #endif sqlite3WalkExprList(pWalker, pList); if( is_agg ){ #ifndef SQLITE_OMIT_WINDOWFUNC if( pWin ){ Select *pSel = pNC->pWinSelect; assert( pWin==pExpr->y.pWin ); if( IN_RENAME_OBJECT==0 ){ sqlite3WindowUpdate(pParse, pSel ? pSel->pWinDefn : 0, pWin, pDef); } sqlite3WalkExprList(pWalker, pWin->pPartition); sqlite3WalkExprList(pWalker, pWin->pOrderBy); sqlite3WalkExpr(pWalker, pWin->pFilter); sqlite3WindowLink(pSel, pWin); pNC->ncFlags |= NC_HasWin; }else #endif /* SQLITE_OMIT_WINDOWFUNC */ { NameContext *pNC2 = pNC; pExpr->op = TK_AGG_FUNCTION; pExpr->op2 = 0; #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(pExpr, EP_WinFunc) ){ sqlite3WalkExpr(pWalker, pExpr->y.pWin->pFilter); } #endif while( pNC2 && !sqlite3FunctionUsesThisSrc(pExpr, pNC2->pSrcList) ){ pExpr->op2++; pNC2 = pNC2->pNext; } assert( pDef!=0 || IN_RENAME_OBJECT ); if( pNC2 && pDef ){ assert( SQLITE_FUNC_MINMAX==NC_MinMaxAgg ); testcase( (pDef->funcFlags & SQLITE_FUNC_MINMAX)!=0 ); pNC2->ncFlags |= NC_HasAgg | (pDef->funcFlags & SQLITE_FUNC_MINMAX); } } pNC->ncFlags |= savedAllowFlags; } /* FIX ME: Compute pExpr->affinity based on the expected return ** type of the function */ return WRC_Prune; } #ifndef SQLITE_OMIT_SUBQUERY case TK_SELECT: case TK_EXISTS: testcase( pExpr->op==TK_EXISTS ); #endif case TK_IN: { testcase( pExpr->op==TK_IN ); if( ExprHasProperty(pExpr, EP_xIsSelect) ){ int nRef = pNC->nRef; testcase( pNC->ncFlags & NC_IsCheck ); testcase( pNC->ncFlags & NC_PartIdx ); testcase( pNC->ncFlags & NC_IdxExpr ); testcase( pNC->ncFlags & NC_GenCol ); sqlite3ResolveNotValid(pParse, pNC, "subqueries", NC_IsCheck|NC_PartIdx|NC_IdxExpr|NC_GenCol, pExpr); sqlite3WalkSelect(pWalker, pExpr->x.pSelect); assert( pNC->nRef>=nRef ); if( nRef!=pNC->nRef ){ ExprSetProperty(pExpr, EP_VarSelect); pNC->ncFlags |= NC_VarSelect; } } break; } case TK_VARIABLE: { testcase( pNC->ncFlags & NC_IsCheck ); testcase( pNC->ncFlags & NC_PartIdx ); testcase( pNC->ncFlags & NC_IdxExpr ); testcase( pNC->ncFlags & NC_GenCol ); sqlite3ResolveNotValid(pParse, pNC, "parameters", NC_IsCheck|NC_PartIdx|NC_IdxExpr|NC_GenCol, pExpr); break; } case TK_IS: case TK_ISNOT: { Expr *pRight = sqlite3ExprSkipCollateAndLikely(pExpr->pRight); assert( !ExprHasProperty(pExpr, EP_Reduced) ); /* Handle special cases of "x IS TRUE", "x IS FALSE", "x IS NOT TRUE", ** and "x IS NOT FALSE". */ if( pRight && pRight->op==TK_ID ){ int rc = resolveExprStep(pWalker, pRight); if( rc==WRC_Abort ) return WRC_Abort; if( pRight->op==TK_TRUEFALSE ){ pExpr->op2 = pExpr->op; pExpr->op = TK_TRUTH; return WRC_Continue; } } /* no break */ deliberate_fall_through } case TK_BETWEEN: case TK_EQ: case TK_NE: case TK_LT: case TK_LE: case TK_GT: case TK_GE: { int nLeft, nRight; if( pParse->db->mallocFailed ) break; assert( pExpr->pLeft!=0 ); nLeft = sqlite3ExprVectorSize(pExpr->pLeft); if( pExpr->op==TK_BETWEEN ){ nRight = sqlite3ExprVectorSize(pExpr->x.pList->a[0].pExpr); if( nRight==nLeft ){ nRight = sqlite3ExprVectorSize(pExpr->x.pList->a[1].pExpr); } }else{ assert( pExpr->pRight!=0 ); nRight = sqlite3ExprVectorSize(pExpr->pRight); } if( nLeft!=nRight ){ testcase( pExpr->op==TK_EQ ); testcase( pExpr->op==TK_NE ); testcase( pExpr->op==TK_LT ); testcase( pExpr->op==TK_LE ); testcase( pExpr->op==TK_GT ); testcase( pExpr->op==TK_GE ); testcase( pExpr->op==TK_IS ); testcase( pExpr->op==TK_ISNOT ); testcase( pExpr->op==TK_BETWEEN ); sqlite3ErrorMsg(pParse, "row value misused"); } break; } } return (pParse->nErr || pParse->db->mallocFailed) ? WRC_Abort : WRC_Continue; } /* ** pEList is a list of expressions which are really the result set of the ** a SELECT statement. pE is a term in an ORDER BY or GROUP BY clause. ** This routine checks to see if pE is a simple identifier which corresponds ** to the AS-name of one of the terms of the expression list. If it is, ** this routine return an integer between 1 and N where N is the number of ** elements in pEList, corresponding to the matching entry. If there is ** no match, or if pE is not a simple identifier, then this routine ** return 0. ** ** pEList has been resolved. pE has not. */ static int resolveAsName( Parse *pParse, /* Parsing context for error messages */ ExprList *pEList, /* List of expressions to scan */ Expr *pE /* Expression we are trying to match */ ){ int i; /* Loop counter */ UNUSED_PARAMETER(pParse); if( pE->op==TK_ID ){ char *zCol = pE->u.zToken; for(i=0; inExpr; i++){ if( pEList->a[i].eEName==ENAME_NAME && sqlite3_stricmp(pEList->a[i].zEName, zCol)==0 ){ return i+1; } } } return 0; } /* ** pE is a pointer to an expression which is a single term in the ** ORDER BY of a compound SELECT. The expression has not been ** name resolved. ** ** At the point this routine is called, we already know that the ** ORDER BY term is not an integer index into the result set. That ** case is handled by the calling routine. ** ** Attempt to match pE against result set columns in the left-most ** SELECT statement. Return the index i of the matching column, ** as an indication to the caller that it should sort by the i-th column. ** The left-most column is 1. In other words, the value returned is the ** same integer value that would be used in the SQL statement to indicate ** the column. ** ** If there is no match, return 0. Return -1 if an error occurs. */ static int resolveOrderByTermToExprList( Parse *pParse, /* Parsing context for error messages */ Select *pSelect, /* The SELECT statement with the ORDER BY clause */ Expr *pE /* The specific ORDER BY term */ ){ int i; /* Loop counter */ ExprList *pEList; /* The columns of the result set */ NameContext nc; /* Name context for resolving pE */ sqlite3 *db; /* Database connection */ int rc; /* Return code from subprocedures */ u8 savedSuppErr; /* Saved value of db->suppressErr */ assert( sqlite3ExprIsInteger(pE, &i)==0 ); pEList = pSelect->pEList; /* Resolve all names in the ORDER BY term expression */ memset(&nc, 0, sizeof(nc)); nc.pParse = pParse; nc.pSrcList = pSelect->pSrc; nc.uNC.pEList = pEList; nc.ncFlags = NC_AllowAgg|NC_UEList; nc.nErr = 0; db = pParse->db; savedSuppErr = db->suppressErr; if( IN_RENAME_OBJECT==0 ) db->suppressErr = 1; rc = sqlite3ResolveExprNames(&nc, pE); db->suppressErr = savedSuppErr; if( rc ) return 0; /* Try to match the ORDER BY expression against an expression ** in the result set. Return an 1-based index of the matching ** result-set entry. */ for(i=0; inExpr; i++){ if( sqlite3ExprCompare(0, pEList->a[i].pExpr, pE, -1)<2 ){ return i+1; } } /* If no match, return 0. */ return 0; } /* ** Generate an ORDER BY or GROUP BY term out-of-range error. */ static void resolveOutOfRangeError( Parse *pParse, /* The error context into which to write the error */ const char *zType, /* "ORDER" or "GROUP" */ int i, /* The index (1-based) of the term out of range */ int mx /* Largest permissible value of i */ ){ sqlite3ErrorMsg(pParse, "%r %s BY term out of range - should be " "between 1 and %d", i, zType, mx); } /* ** Analyze the ORDER BY clause in a compound SELECT statement. Modify ** each term of the ORDER BY clause is a constant integer between 1 ** and N where N is the number of columns in the compound SELECT. ** ** ORDER BY terms that are already an integer between 1 and N are ** unmodified. ORDER BY terms that are integers outside the range of ** 1 through N generate an error. ORDER BY terms that are expressions ** are matched against result set expressions of compound SELECT ** beginning with the left-most SELECT and working toward the right. ** At the first match, the ORDER BY expression is transformed into ** the integer column number. ** ** Return the number of errors seen. */ static int resolveCompoundOrderBy( Parse *pParse, /* Parsing context. Leave error messages here */ Select *pSelect /* The SELECT statement containing the ORDER BY */ ){ int i; ExprList *pOrderBy; ExprList *pEList; sqlite3 *db; int moreToDo = 1; pOrderBy = pSelect->pOrderBy; if( pOrderBy==0 ) return 0; db = pParse->db; if( pOrderBy->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){ sqlite3ErrorMsg(pParse, "too many terms in ORDER BY clause"); return 1; } for(i=0; inExpr; i++){ pOrderBy->a[i].done = 0; } pSelect->pNext = 0; while( pSelect->pPrior ){ pSelect->pPrior->pNext = pSelect; pSelect = pSelect->pPrior; } while( pSelect && moreToDo ){ struct ExprList_item *pItem; moreToDo = 0; pEList = pSelect->pEList; assert( pEList!=0 ); for(i=0, pItem=pOrderBy->a; inExpr; i++, pItem++){ int iCol = -1; Expr *pE, *pDup; if( pItem->done ) continue; pE = sqlite3ExprSkipCollateAndLikely(pItem->pExpr); if( sqlite3ExprIsInteger(pE, &iCol) ){ if( iCol<=0 || iCol>pEList->nExpr ){ resolveOutOfRangeError(pParse, "ORDER", i+1, pEList->nExpr); return 1; } }else{ iCol = resolveAsName(pParse, pEList, pE); if( iCol==0 ){ /* Now test if expression pE matches one of the values returned ** by pSelect. In the usual case this is done by duplicating the ** expression, resolving any symbols in it, and then comparing ** it against each expression returned by the SELECT statement. ** Once the comparisons are finished, the duplicate expression ** is deleted. ** ** Or, if this is running as part of an ALTER TABLE operation, ** resolve the symbols in the actual expression, not a duplicate. ** And, if one of the comparisons is successful, leave the expression ** as is instead of transforming it to an integer as in the usual ** case. This allows the code in alter.c to modify column ** refererences within the ORDER BY expression as required. */ if( IN_RENAME_OBJECT ){ pDup = pE; }else{ pDup = sqlite3ExprDup(db, pE, 0); } if( !db->mallocFailed ){ assert(pDup); iCol = resolveOrderByTermToExprList(pParse, pSelect, pDup); } if( !IN_RENAME_OBJECT ){ sqlite3ExprDelete(db, pDup); } } } if( iCol>0 ){ /* Convert the ORDER BY term into an integer column number iCol, ** taking care to preserve the COLLATE clause if it exists */ if( !IN_RENAME_OBJECT ){ Expr *pNew = sqlite3Expr(db, TK_INTEGER, 0); if( pNew==0 ) return 1; pNew->flags |= EP_IntValue; pNew->u.iValue = iCol; if( pItem->pExpr==pE ){ pItem->pExpr = pNew; }else{ Expr *pParent = pItem->pExpr; assert( pParent->op==TK_COLLATE ); while( pParent->pLeft->op==TK_COLLATE ) pParent = pParent->pLeft; assert( pParent->pLeft==pE ); pParent->pLeft = pNew; } sqlite3ExprDelete(db, pE); pItem->u.x.iOrderByCol = (u16)iCol; } pItem->done = 1; }else{ moreToDo = 1; } } pSelect = pSelect->pNext; } for(i=0; inExpr; i++){ if( pOrderBy->a[i].done==0 ){ sqlite3ErrorMsg(pParse, "%r ORDER BY term does not match any " "column in the result set", i+1); return 1; } } return 0; } /* ** Check every term in the ORDER BY or GROUP BY clause pOrderBy of ** the SELECT statement pSelect. If any term is reference to a ** result set expression (as determined by the ExprList.a.u.x.iOrderByCol ** field) then convert that term into a copy of the corresponding result set ** column. ** ** If any errors are detected, add an error message to pParse and ** return non-zero. Return zero if no errors are seen. */ SQLITE_PRIVATE int sqlite3ResolveOrderGroupBy( Parse *pParse, /* Parsing context. Leave error messages here */ Select *pSelect, /* The SELECT statement containing the clause */ ExprList *pOrderBy, /* The ORDER BY or GROUP BY clause to be processed */ const char *zType /* "ORDER" or "GROUP" */ ){ int i; sqlite3 *db = pParse->db; ExprList *pEList; struct ExprList_item *pItem; if( pOrderBy==0 || pParse->db->mallocFailed || IN_RENAME_OBJECT ) return 0; if( pOrderBy->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){ sqlite3ErrorMsg(pParse, "too many terms in %s BY clause", zType); return 1; } pEList = pSelect->pEList; assert( pEList!=0 ); /* sqlite3SelectNew() guarantees this */ for(i=0, pItem=pOrderBy->a; inExpr; i++, pItem++){ if( pItem->u.x.iOrderByCol ){ if( pItem->u.x.iOrderByCol>pEList->nExpr ){ resolveOutOfRangeError(pParse, zType, i+1, pEList->nExpr); return 1; } resolveAlias(pParse, pEList, pItem->u.x.iOrderByCol-1, pItem->pExpr, zType,0); } } return 0; } #ifndef SQLITE_OMIT_WINDOWFUNC /* ** Walker callback for windowRemoveExprFromSelect(). */ static int resolveRemoveWindowsCb(Walker *pWalker, Expr *pExpr){ UNUSED_PARAMETER(pWalker); if( ExprHasProperty(pExpr, EP_WinFunc) ){ Window *pWin = pExpr->y.pWin; sqlite3WindowUnlinkFromSelect(pWin); } return WRC_Continue; } /* ** Remove any Window objects owned by the expression pExpr from the ** Select.pWin list of Select object pSelect. */ static void windowRemoveExprFromSelect(Select *pSelect, Expr *pExpr){ if( pSelect->pWin ){ Walker sWalker; memset(&sWalker, 0, sizeof(Walker)); sWalker.xExprCallback = resolveRemoveWindowsCb; sWalker.u.pSelect = pSelect; sqlite3WalkExpr(&sWalker, pExpr); } } #else # define windowRemoveExprFromSelect(a, b) #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** pOrderBy is an ORDER BY or GROUP BY clause in SELECT statement pSelect. ** The Name context of the SELECT statement is pNC. zType is either ** "ORDER" or "GROUP" depending on which type of clause pOrderBy is. ** ** This routine resolves each term of the clause into an expression. ** If the order-by term is an integer I between 1 and N (where N is the ** number of columns in the result set of the SELECT) then the expression ** in the resolution is a copy of the I-th result-set expression. If ** the order-by term is an identifier that corresponds to the AS-name of ** a result-set expression, then the term resolves to a copy of the ** result-set expression. Otherwise, the expression is resolved in ** the usual way - using sqlite3ResolveExprNames(). ** ** This routine returns the number of errors. If errors occur, then ** an appropriate error message might be left in pParse. (OOM errors ** excepted.) */ static int resolveOrderGroupBy( NameContext *pNC, /* The name context of the SELECT statement */ Select *pSelect, /* The SELECT statement holding pOrderBy */ ExprList *pOrderBy, /* An ORDER BY or GROUP BY clause to resolve */ const char *zType /* Either "ORDER" or "GROUP", as appropriate */ ){ int i, j; /* Loop counters */ int iCol; /* Column number */ struct ExprList_item *pItem; /* A term of the ORDER BY clause */ Parse *pParse; /* Parsing context */ int nResult; /* Number of terms in the result set */ if( pOrderBy==0 ) return 0; nResult = pSelect->pEList->nExpr; pParse = pNC->pParse; for(i=0, pItem=pOrderBy->a; inExpr; i++, pItem++){ Expr *pE = pItem->pExpr; Expr *pE2 = sqlite3ExprSkipCollateAndLikely(pE); if( zType[0]!='G' ){ iCol = resolveAsName(pParse, pSelect->pEList, pE2); if( iCol>0 ){ /* If an AS-name match is found, mark this ORDER BY column as being ** a copy of the iCol-th result-set column. The subsequent call to ** sqlite3ResolveOrderGroupBy() will convert the expression to a ** copy of the iCol-th result-set expression. */ pItem->u.x.iOrderByCol = (u16)iCol; continue; } } if( sqlite3ExprIsInteger(pE2, &iCol) ){ /* The ORDER BY term is an integer constant. Again, set the column ** number so that sqlite3ResolveOrderGroupBy() will convert the ** order-by term to a copy of the result-set expression */ if( iCol<1 || iCol>0xffff ){ resolveOutOfRangeError(pParse, zType, i+1, nResult); return 1; } pItem->u.x.iOrderByCol = (u16)iCol; continue; } /* Otherwise, treat the ORDER BY term as an ordinary expression */ pItem->u.x.iOrderByCol = 0; if( sqlite3ResolveExprNames(pNC, pE) ){ return 1; } for(j=0; jpEList->nExpr; j++){ if( sqlite3ExprCompare(0, pE, pSelect->pEList->a[j].pExpr, -1)==0 ){ /* Since this expresion is being changed into a reference ** to an identical expression in the result set, remove all Window ** objects belonging to the expression from the Select.pWin list. */ windowRemoveExprFromSelect(pSelect, pE); pItem->u.x.iOrderByCol = j+1; } } } return sqlite3ResolveOrderGroupBy(pParse, pSelect, pOrderBy, zType); } /* ** Resolve names in the SELECT statement p and all of its descendants. */ static int resolveSelectStep(Walker *pWalker, Select *p){ NameContext *pOuterNC; /* Context that contains this SELECT */ NameContext sNC; /* Name context of this SELECT */ int isCompound; /* True if p is a compound select */ int nCompound; /* Number of compound terms processed so far */ Parse *pParse; /* Parsing context */ int i; /* Loop counter */ ExprList *pGroupBy; /* The GROUP BY clause */ Select *pLeftmost; /* Left-most of SELECT of a compound */ sqlite3 *db; /* Database connection */ assert( p!=0 ); if( p->selFlags & SF_Resolved ){ return WRC_Prune; } pOuterNC = pWalker->u.pNC; pParse = pWalker->pParse; db = pParse->db; /* Normally sqlite3SelectExpand() will be called first and will have ** already expanded this SELECT. However, if this is a subquery within ** an expression, sqlite3ResolveExprNames() will be called without a ** prior call to sqlite3SelectExpand(). When that happens, let ** sqlite3SelectPrep() do all of the processing for this SELECT. ** sqlite3SelectPrep() will invoke both sqlite3SelectExpand() and ** this routine in the correct order. */ if( (p->selFlags & SF_Expanded)==0 ){ sqlite3SelectPrep(pParse, p, pOuterNC); return (pParse->nErr || db->mallocFailed) ? WRC_Abort : WRC_Prune; } isCompound = p->pPrior!=0; nCompound = 0; pLeftmost = p; while( p ){ assert( (p->selFlags & SF_Expanded)!=0 ); assert( (p->selFlags & SF_Resolved)==0 ); p->selFlags |= SF_Resolved; /* Resolve the expressions in the LIMIT and OFFSET clauses. These ** are not allowed to refer to any names, so pass an empty NameContext. */ memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; sNC.pWinSelect = p; if( sqlite3ResolveExprNames(&sNC, p->pLimit) ){ return WRC_Abort; } /* If the SF_Converted flags is set, then this Select object was ** was created by the convertCompoundSelectToSubquery() function. ** In this case the ORDER BY clause (p->pOrderBy) should be resolved ** as if it were part of the sub-query, not the parent. This block ** moves the pOrderBy down to the sub-query. It will be moved back ** after the names have been resolved. */ if( p->selFlags & SF_Converted ){ Select *pSub = p->pSrc->a[0].pSelect; assert( p->pSrc->nSrc==1 && p->pOrderBy ); assert( pSub->pPrior && pSub->pOrderBy==0 ); pSub->pOrderBy = p->pOrderBy; p->pOrderBy = 0; } /* Recursively resolve names in all subqueries */ for(i=0; ipSrc->nSrc; i++){ struct SrcList_item *pItem = &p->pSrc->a[i]; if( pItem->pSelect && (pItem->pSelect->selFlags & SF_Resolved)==0 ){ NameContext *pNC; /* Used to iterate name contexts */ int nRef = 0; /* Refcount for pOuterNC and outer contexts */ const char *zSavedContext = pParse->zAuthContext; /* Count the total number of references to pOuterNC and all of its ** parent contexts. After resolving references to expressions in ** pItem->pSelect, check if this value has changed. If so, then ** SELECT statement pItem->pSelect must be correlated. Set the ** pItem->fg.isCorrelated flag if this is the case. */ for(pNC=pOuterNC; pNC; pNC=pNC->pNext) nRef += pNC->nRef; if( pItem->zName ) pParse->zAuthContext = pItem->zName; sqlite3ResolveSelectNames(pParse, pItem->pSelect, pOuterNC); pParse->zAuthContext = zSavedContext; if( pParse->nErr || db->mallocFailed ) return WRC_Abort; for(pNC=pOuterNC; pNC; pNC=pNC->pNext) nRef -= pNC->nRef; assert( pItem->fg.isCorrelated==0 && nRef<=0 ); pItem->fg.isCorrelated = (nRef!=0); } } /* Set up the local name-context to pass to sqlite3ResolveExprNames() to ** resolve the result-set expression list. */ sNC.ncFlags = NC_AllowAgg|NC_AllowWin; sNC.pSrcList = p->pSrc; sNC.pNext = pOuterNC; /* Resolve names in the result set. */ if( sqlite3ResolveExprListNames(&sNC, p->pEList) ) return WRC_Abort; sNC.ncFlags &= ~NC_AllowWin; /* If there are no aggregate functions in the result-set, and no GROUP BY ** expression, do not allow aggregates in any of the other expressions. */ assert( (p->selFlags & SF_Aggregate)==0 ); pGroupBy = p->pGroupBy; if( pGroupBy || (sNC.ncFlags & NC_HasAgg)!=0 ){ assert( NC_MinMaxAgg==SF_MinMaxAgg ); p->selFlags |= SF_Aggregate | (sNC.ncFlags&NC_MinMaxAgg); }else{ sNC.ncFlags &= ~NC_AllowAgg; } /* If a HAVING clause is present, then there must be a GROUP BY clause. */ if( p->pHaving && !pGroupBy ){ sqlite3ErrorMsg(pParse, "a GROUP BY clause is required before HAVING"); return WRC_Abort; } /* Add the output column list to the name-context before parsing the ** other expressions in the SELECT statement. This is so that ** expressions in the WHERE clause (etc.) can refer to expressions by ** aliases in the result set. ** ** Minor point: If this is the case, then the expression will be ** re-evaluated for each reference to it. */ assert( (sNC.ncFlags & (NC_UAggInfo|NC_UUpsert))==0 ); sNC.uNC.pEList = p->pEList; sNC.ncFlags |= NC_UEList; if( sqlite3ResolveExprNames(&sNC, p->pHaving) ) return WRC_Abort; if( sqlite3ResolveExprNames(&sNC, p->pWhere) ) return WRC_Abort; /* Resolve names in table-valued-function arguments */ for(i=0; ipSrc->nSrc; i++){ struct SrcList_item *pItem = &p->pSrc->a[i]; if( pItem->fg.isTabFunc && sqlite3ResolveExprListNames(&sNC, pItem->u1.pFuncArg) ){ return WRC_Abort; } } /* The ORDER BY and GROUP BY clauses may not refer to terms in ** outer queries */ sNC.pNext = 0; sNC.ncFlags |= NC_AllowAgg|NC_AllowWin; /* If this is a converted compound query, move the ORDER BY clause from ** the sub-query back to the parent query. At this point each term ** within the ORDER BY clause has been transformed to an integer value. ** These integers will be replaced by copies of the corresponding result ** set expressions by the call to resolveOrderGroupBy() below. */ if( p->selFlags & SF_Converted ){ Select *pSub = p->pSrc->a[0].pSelect; p->pOrderBy = pSub->pOrderBy; pSub->pOrderBy = 0; } /* Process the ORDER BY clause for singleton SELECT statements. ** The ORDER BY clause for compounds SELECT statements is handled ** below, after all of the result-sets for all of the elements of ** the compound have been resolved. ** ** If there is an ORDER BY clause on a term of a compound-select other ** than the right-most term, then that is a syntax error. But the error ** is not detected until much later, and so we need to go ahead and ** resolve those symbols on the incorrect ORDER BY for consistency. */ if( isCompound<=nCompound /* Defer right-most ORDER BY of a compound */ && resolveOrderGroupBy(&sNC, p, p->pOrderBy, "ORDER") ){ return WRC_Abort; } if( db->mallocFailed ){ return WRC_Abort; } sNC.ncFlags &= ~NC_AllowWin; /* Resolve the GROUP BY clause. At the same time, make sure ** the GROUP BY clause does not contain aggregate functions. */ if( pGroupBy ){ struct ExprList_item *pItem; if( resolveOrderGroupBy(&sNC, p, pGroupBy, "GROUP") || db->mallocFailed ){ return WRC_Abort; } for(i=0, pItem=pGroupBy->a; inExpr; i++, pItem++){ if( ExprHasProperty(pItem->pExpr, EP_Agg) ){ sqlite3ErrorMsg(pParse, "aggregate functions are not allowed in " "the GROUP BY clause"); return WRC_Abort; } } } #ifndef SQLITE_OMIT_WINDOWFUNC if( IN_RENAME_OBJECT ){ Window *pWin; for(pWin=p->pWinDefn; pWin; pWin=pWin->pNextWin){ if( sqlite3ResolveExprListNames(&sNC, pWin->pOrderBy) || sqlite3ResolveExprListNames(&sNC, pWin->pPartition) ){ return WRC_Abort; } } } #endif /* If this is part of a compound SELECT, check that it has the right ** number of expressions in the select list. */ if( p->pNext && p->pEList->nExpr!=p->pNext->pEList->nExpr ){ sqlite3SelectWrongNumTermsError(pParse, p->pNext); return WRC_Abort; } /* Advance to the next term of the compound */ p = p->pPrior; nCompound++; } /* Resolve the ORDER BY on a compound SELECT after all terms of ** the compound have been resolved. */ if( isCompound && resolveCompoundOrderBy(pParse, pLeftmost) ){ return WRC_Abort; } return WRC_Prune; } /* ** This routine walks an expression tree and resolves references to ** table columns and result-set columns. At the same time, do error ** checking on function usage and set a flag if any aggregate functions ** are seen. ** ** To resolve table columns references we look for nodes (or subtrees) of the ** form X.Y.Z or Y.Z or just Z where ** ** X: The name of a database. Ex: "main" or "temp" or ** the symbolic name assigned to an ATTACH-ed database. ** ** Y: The name of a table in a FROM clause. Or in a trigger ** one of the special names "old" or "new". ** ** Z: The name of a column in table Y. ** ** The node at the root of the subtree is modified as follows: ** ** Expr.op Changed to TK_COLUMN ** Expr.pTab Points to the Table object for X.Y ** Expr.iColumn The column index in X.Y. -1 for the rowid. ** Expr.iTable The VDBE cursor number for X.Y ** ** ** To resolve result-set references, look for expression nodes of the ** form Z (with no X and Y prefix) where the Z matches the right-hand ** size of an AS clause in the result-set of a SELECT. The Z expression ** is replaced by a copy of the left-hand side of the result-set expression. ** Table-name and function resolution occurs on the substituted expression ** tree. For example, in: ** ** SELECT a+b AS x, c+d AS y FROM t1 ORDER BY x; ** ** The "x" term of the order by is replaced by "a+b" to render: ** ** SELECT a+b AS x, c+d AS y FROM t1 ORDER BY a+b; ** ** Function calls are checked to make sure that the function is ** defined and that the correct number of arguments are specified. ** If the function is an aggregate function, then the NC_HasAgg flag is ** set and the opcode is changed from TK_FUNCTION to TK_AGG_FUNCTION. ** If an expression contains aggregate functions then the EP_Agg ** property on the expression is set. ** ** An error message is left in pParse if anything is amiss. The number ** if errors is returned. */ SQLITE_PRIVATE int sqlite3ResolveExprNames( NameContext *pNC, /* Namespace to resolve expressions in. */ Expr *pExpr /* The expression to be analyzed. */ ){ int savedHasAgg; Walker w; if( pExpr==0 ) return SQLITE_OK; savedHasAgg = pNC->ncFlags & (NC_HasAgg|NC_MinMaxAgg|NC_HasWin); pNC->ncFlags &= ~(NC_HasAgg|NC_MinMaxAgg|NC_HasWin); w.pParse = pNC->pParse; w.xExprCallback = resolveExprStep; w.xSelectCallback = resolveSelectStep; w.xSelectCallback2 = 0; w.u.pNC = pNC; #if SQLITE_MAX_EXPR_DEPTH>0 w.pParse->nHeight += pExpr->nHeight; if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){ return SQLITE_ERROR; } #endif sqlite3WalkExpr(&w, pExpr); #if SQLITE_MAX_EXPR_DEPTH>0 w.pParse->nHeight -= pExpr->nHeight; #endif assert( EP_Agg==NC_HasAgg ); assert( EP_Win==NC_HasWin ); testcase( pNC->ncFlags & NC_HasAgg ); testcase( pNC->ncFlags & NC_HasWin ); ExprSetProperty(pExpr, pNC->ncFlags & (NC_HasAgg|NC_HasWin) ); pNC->ncFlags |= savedHasAgg; return pNC->nErr>0 || w.pParse->nErr>0; } /* ** Resolve all names for all expression in an expression list. This is ** just like sqlite3ResolveExprNames() except that it works for an expression ** list rather than a single expression. */ SQLITE_PRIVATE int sqlite3ResolveExprListNames( NameContext *pNC, /* Namespace to resolve expressions in. */ ExprList *pList /* The expression list to be analyzed. */ ){ int i; int savedHasAgg = 0; Walker w; if( pList==0 ) return WRC_Continue; w.pParse = pNC->pParse; w.xExprCallback = resolveExprStep; w.xSelectCallback = resolveSelectStep; w.xSelectCallback2 = 0; w.u.pNC = pNC; savedHasAgg = pNC->ncFlags & (NC_HasAgg|NC_MinMaxAgg|NC_HasWin); pNC->ncFlags &= ~(NC_HasAgg|NC_MinMaxAgg|NC_HasWin); for(i=0; inExpr; i++){ Expr *pExpr = pList->a[i].pExpr; if( pExpr==0 ) continue; #if SQLITE_MAX_EXPR_DEPTH>0 w.pParse->nHeight += pExpr->nHeight; if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){ return WRC_Abort; } #endif sqlite3WalkExpr(&w, pExpr); #if SQLITE_MAX_EXPR_DEPTH>0 w.pParse->nHeight -= pExpr->nHeight; #endif assert( EP_Agg==NC_HasAgg ); assert( EP_Win==NC_HasWin ); testcase( pNC->ncFlags & NC_HasAgg ); testcase( pNC->ncFlags & NC_HasWin ); if( pNC->ncFlags & (NC_HasAgg|NC_MinMaxAgg|NC_HasWin) ){ ExprSetProperty(pExpr, pNC->ncFlags & (NC_HasAgg|NC_HasWin) ); savedHasAgg |= pNC->ncFlags & (NC_HasAgg|NC_MinMaxAgg|NC_HasWin); pNC->ncFlags &= ~(NC_HasAgg|NC_MinMaxAgg|NC_HasWin); } if( pNC->nErr>0 || w.pParse->nErr>0 ) return WRC_Abort; } pNC->ncFlags |= savedHasAgg; return WRC_Continue; } /* ** Resolve all names in all expressions of a SELECT and in all ** decendents of the SELECT, including compounds off of p->pPrior, ** subqueries in expressions, and subqueries used as FROM clause ** terms. ** ** See sqlite3ResolveExprNames() for a description of the kinds of ** transformations that occur. ** ** All SELECT statements should have been expanded using ** sqlite3SelectExpand() prior to invoking this routine. */ SQLITE_PRIVATE void sqlite3ResolveSelectNames( Parse *pParse, /* The parser context */ Select *p, /* The SELECT statement being coded. */ NameContext *pOuterNC /* Name context for parent SELECT statement */ ){ Walker w; assert( p!=0 ); w.xExprCallback = resolveExprStep; w.xSelectCallback = resolveSelectStep; w.xSelectCallback2 = 0; w.pParse = pParse; w.u.pNC = pOuterNC; sqlite3WalkSelect(&w, p); } /* ** Resolve names in expressions that can only reference a single table ** or which cannot reference any tables at all. Examples: ** ** "type" flag ** ------------ ** (1) CHECK constraints NC_IsCheck ** (2) WHERE clauses on partial indices NC_PartIdx ** (3) Expressions in indexes on expressions NC_IdxExpr ** (4) Expression arguments to VACUUM INTO. 0 ** (5) GENERATED ALWAYS as expressions NC_GenCol ** ** In all cases except (4), the Expr.iTable value for Expr.op==TK_COLUMN ** nodes of the expression is set to -1 and the Expr.iColumn value is ** set to the column number. In case (4), TK_COLUMN nodes cause an error. ** ** Any errors cause an error message to be set in pParse. */ SQLITE_PRIVATE int sqlite3ResolveSelfReference( Parse *pParse, /* Parsing context */ Table *pTab, /* The table being referenced, or NULL */ int type, /* NC_IsCheck, NC_PartIdx, NC_IdxExpr, NC_GenCol, or 0 */ Expr *pExpr, /* Expression to resolve. May be NULL. */ ExprList *pList /* Expression list to resolve. May be NULL. */ ){ SrcList sSrc; /* Fake SrcList for pParse->pNewTable */ NameContext sNC; /* Name context for pParse->pNewTable */ int rc; assert( type==0 || pTab!=0 ); assert( type==NC_IsCheck || type==NC_PartIdx || type==NC_IdxExpr || type==NC_GenCol || pTab==0 ); memset(&sNC, 0, sizeof(sNC)); memset(&sSrc, 0, sizeof(sSrc)); if( pTab ){ sSrc.nSrc = 1; sSrc.a[0].zName = pTab->zName; sSrc.a[0].pTab = pTab; sSrc.a[0].iCursor = -1; if( pTab->pSchema!=pParse->db->aDb[1].pSchema ){ /* Cause EP_FromDDL to be set on TK_FUNCTION nodes of non-TEMP ** schema elements */ type |= NC_FromDDL; } } sNC.pParse = pParse; sNC.pSrcList = &sSrc; sNC.ncFlags = type | NC_IsDDL; if( (rc = sqlite3ResolveExprNames(&sNC, pExpr))!=SQLITE_OK ) return rc; if( pList ) rc = sqlite3ResolveExprListNames(&sNC, pList); return rc; } /************** End of resolve.c *********************************************/ /************** Begin file expr.c ********************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. */ /* #include "sqliteInt.h" */ /* Forward declarations */ static void exprCodeBetween(Parse*,Expr*,int,void(*)(Parse*,Expr*,int,int),int); static int exprCodeVector(Parse *pParse, Expr *p, int *piToFree); /* ** Return the affinity character for a single column of a table. */ SQLITE_PRIVATE char sqlite3TableColumnAffinity(Table *pTab, int iCol){ assert( iColnCol ); return iCol>=0 ? pTab->aCol[iCol].affinity : SQLITE_AFF_INTEGER; } /* ** Return the 'affinity' of the expression pExpr if any. ** ** If pExpr is a column, a reference to a column via an 'AS' alias, ** or a sub-select with a column as the return value, then the ** affinity of that column is returned. Otherwise, 0x00 is returned, ** indicating no affinity for the expression. ** ** i.e. the WHERE clause expressions in the following statements all ** have an affinity: ** ** CREATE TABLE t1(a); ** SELECT * FROM t1 WHERE a; ** SELECT a AS b FROM t1 WHERE b; ** SELECT * FROM t1 WHERE (select a from t1); */ SQLITE_PRIVATE char sqlite3ExprAffinity(const Expr *pExpr){ int op; while( ExprHasProperty(pExpr, EP_Skip) ){ assert( pExpr->op==TK_COLLATE || pExpr->op==TK_IF_NULL_ROW ); pExpr = pExpr->pLeft; assert( pExpr!=0 ); } op = pExpr->op; if( op==TK_SELECT ){ assert( pExpr->flags&EP_xIsSelect ); assert( pExpr->x.pSelect!=0 ); assert( pExpr->x.pSelect->pEList!=0 ); assert( pExpr->x.pSelect->pEList->a[0].pExpr!=0 ); return sqlite3ExprAffinity(pExpr->x.pSelect->pEList->a[0].pExpr); } if( op==TK_REGISTER ) op = pExpr->op2; #ifndef SQLITE_OMIT_CAST if( op==TK_CAST ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); return sqlite3AffinityType(pExpr->u.zToken, 0); } #endif if( (op==TK_AGG_COLUMN || op==TK_COLUMN) && pExpr->y.pTab ){ return sqlite3TableColumnAffinity(pExpr->y.pTab, pExpr->iColumn); } if( op==TK_SELECT_COLUMN ){ assert( pExpr->pLeft->flags&EP_xIsSelect ); return sqlite3ExprAffinity( pExpr->pLeft->x.pSelect->pEList->a[pExpr->iColumn].pExpr ); } if( op==TK_VECTOR ){ return sqlite3ExprAffinity(pExpr->x.pList->a[0].pExpr); } return pExpr->affExpr; } /* ** Set the collating sequence for expression pExpr to be the collating ** sequence named by pToken. Return a pointer to a new Expr node that ** implements the COLLATE operator. ** ** If a memory allocation error occurs, that fact is recorded in pParse->db ** and the pExpr parameter is returned unchanged. */ SQLITE_PRIVATE Expr *sqlite3ExprAddCollateToken( Parse *pParse, /* Parsing context */ Expr *pExpr, /* Add the "COLLATE" clause to this expression */ const Token *pCollName, /* Name of collating sequence */ int dequote /* True to dequote pCollName */ ){ if( pCollName->n>0 ){ Expr *pNew = sqlite3ExprAlloc(pParse->db, TK_COLLATE, pCollName, dequote); if( pNew ){ pNew->pLeft = pExpr; pNew->flags |= EP_Collate|EP_Skip; pExpr = pNew; } } return pExpr; } SQLITE_PRIVATE Expr *sqlite3ExprAddCollateString(Parse *pParse, Expr *pExpr, const char *zC){ Token s; assert( zC!=0 ); sqlite3TokenInit(&s, (char*)zC); return sqlite3ExprAddCollateToken(pParse, pExpr, &s, 0); } /* ** Skip over any TK_COLLATE operators. */ SQLITE_PRIVATE Expr *sqlite3ExprSkipCollate(Expr *pExpr){ while( pExpr && ExprHasProperty(pExpr, EP_Skip) ){ assert( pExpr->op==TK_COLLATE || pExpr->op==TK_IF_NULL_ROW ); pExpr = pExpr->pLeft; } return pExpr; } /* ** Skip over any TK_COLLATE operators and/or any unlikely() ** or likelihood() or likely() functions at the root of an ** expression. */ SQLITE_PRIVATE Expr *sqlite3ExprSkipCollateAndLikely(Expr *pExpr){ while( pExpr && ExprHasProperty(pExpr, EP_Skip|EP_Unlikely) ){ if( ExprHasProperty(pExpr, EP_Unlikely) ){ assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); assert( pExpr->x.pList->nExpr>0 ); assert( pExpr->op==TK_FUNCTION ); pExpr = pExpr->x.pList->a[0].pExpr; }else{ assert( pExpr->op==TK_COLLATE || pExpr->op==TK_IF_NULL_ROW ); pExpr = pExpr->pLeft; } } return pExpr; } /* ** Return the collation sequence for the expression pExpr. If ** there is no defined collating sequence, return NULL. ** ** See also: sqlite3ExprNNCollSeq() ** ** The sqlite3ExprNNCollSeq() works the same exact that it returns the ** default collation if pExpr has no defined collation. ** ** The collating sequence might be determined by a COLLATE operator ** or by the presence of a column with a defined collating sequence. ** COLLATE operators take first precedence. Left operands take ** precedence over right operands. */ SQLITE_PRIVATE CollSeq *sqlite3ExprCollSeq(Parse *pParse, const Expr *pExpr){ sqlite3 *db = pParse->db; CollSeq *pColl = 0; const Expr *p = pExpr; while( p ){ int op = p->op; if( op==TK_REGISTER ) op = p->op2; if( (op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_TRIGGER) && p->y.pTab!=0 ){ /* op==TK_REGISTER && p->y.pTab!=0 happens when pExpr was originally ** a TK_COLUMN but was previously evaluated and cached in a register */ int j = p->iColumn; if( j>=0 ){ const char *zColl = p->y.pTab->aCol[j].zColl; pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); } break; } if( op==TK_CAST || op==TK_UPLUS ){ p = p->pLeft; continue; } if( op==TK_VECTOR ){ p = p->x.pList->a[0].pExpr; continue; } if( op==TK_COLLATE ){ pColl = sqlite3GetCollSeq(pParse, ENC(db), 0, p->u.zToken); break; } if( p->flags & EP_Collate ){ if( p->pLeft && (p->pLeft->flags & EP_Collate)!=0 ){ p = p->pLeft; }else{ Expr *pNext = p->pRight; /* The Expr.x union is never used at the same time as Expr.pRight */ assert( p->x.pList==0 || p->pRight==0 ); if( p->x.pList!=0 && !db->mallocFailed && ALWAYS(!ExprHasProperty(p, EP_xIsSelect)) ){ int i; for(i=0; ALWAYS(ix.pList->nExpr); i++){ if( ExprHasProperty(p->x.pList->a[i].pExpr, EP_Collate) ){ pNext = p->x.pList->a[i].pExpr; break; } } } p = pNext; } }else{ break; } } if( sqlite3CheckCollSeq(pParse, pColl) ){ pColl = 0; } return pColl; } /* ** Return the collation sequence for the expression pExpr. If ** there is no defined collating sequence, return a pointer to the ** defautl collation sequence. ** ** See also: sqlite3ExprCollSeq() ** ** The sqlite3ExprCollSeq() routine works the same except that it ** returns NULL if there is no defined collation. */ SQLITE_PRIVATE CollSeq *sqlite3ExprNNCollSeq(Parse *pParse, const Expr *pExpr){ CollSeq *p = sqlite3ExprCollSeq(pParse, pExpr); if( p==0 ) p = pParse->db->pDfltColl; assert( p!=0 ); return p; } /* ** Return TRUE if the two expressions have equivalent collating sequences. */ SQLITE_PRIVATE int sqlite3ExprCollSeqMatch(Parse *pParse, const Expr *pE1, const Expr *pE2){ CollSeq *pColl1 = sqlite3ExprNNCollSeq(pParse, pE1); CollSeq *pColl2 = sqlite3ExprNNCollSeq(pParse, pE2); return sqlite3StrICmp(pColl1->zName, pColl2->zName)==0; } /* ** pExpr is an operand of a comparison operator. aff2 is the ** type affinity of the other operand. This routine returns the ** type affinity that should be used for the comparison operator. */ SQLITE_PRIVATE char sqlite3CompareAffinity(const Expr *pExpr, char aff2){ char aff1 = sqlite3ExprAffinity(pExpr); if( aff1>SQLITE_AFF_NONE && aff2>SQLITE_AFF_NONE ){ /* Both sides of the comparison are columns. If one has numeric ** affinity, use that. Otherwise use no affinity. */ if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){ return SQLITE_AFF_NUMERIC; }else{ return SQLITE_AFF_BLOB; } }else{ /* One side is a column, the other is not. Use the columns affinity. */ assert( aff1<=SQLITE_AFF_NONE || aff2<=SQLITE_AFF_NONE ); return (aff1<=SQLITE_AFF_NONE ? aff2 : aff1) | SQLITE_AFF_NONE; } } /* ** pExpr is a comparison operator. Return the type affinity that should ** be applied to both operands prior to doing the comparison. */ static char comparisonAffinity(const Expr *pExpr){ char aff; assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT || pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT ); assert( pExpr->pLeft ); aff = sqlite3ExprAffinity(pExpr->pLeft); if( pExpr->pRight ){ aff = sqlite3CompareAffinity(pExpr->pRight, aff); }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){ aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff); }else if( aff==0 ){ aff = SQLITE_AFF_BLOB; } return aff; } /* ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc. ** idx_affinity is the affinity of an indexed column. Return true ** if the index with affinity idx_affinity may be used to implement ** the comparison in pExpr. */ SQLITE_PRIVATE int sqlite3IndexAffinityOk(const Expr *pExpr, char idx_affinity){ char aff = comparisonAffinity(pExpr); if( affflags & EP_Collate ){ pColl = sqlite3ExprCollSeq(pParse, pLeft); }else if( pRight && (pRight->flags & EP_Collate)!=0 ){ pColl = sqlite3ExprCollSeq(pParse, pRight); }else{ pColl = sqlite3ExprCollSeq(pParse, pLeft); if( !pColl ){ pColl = sqlite3ExprCollSeq(pParse, pRight); } } return pColl; } /* Expresssion p is a comparison operator. Return a collation sequence ** appropriate for the comparison operator. ** ** This is normally just a wrapper around sqlite3BinaryCompareCollSeq(). ** However, if the OP_Commuted flag is set, then the order of the operands ** is reversed in the sqlite3BinaryCompareCollSeq() call so that the ** correct collating sequence is found. */ SQLITE_PRIVATE CollSeq *sqlite3ExprCompareCollSeq(Parse *pParse, const Expr *p){ if( ExprHasProperty(p, EP_Commuted) ){ return sqlite3BinaryCompareCollSeq(pParse, p->pRight, p->pLeft); }else{ return sqlite3BinaryCompareCollSeq(pParse, p->pLeft, p->pRight); } } /* ** Generate code for a comparison operator. */ static int codeCompare( Parse *pParse, /* The parsing (and code generating) context */ Expr *pLeft, /* The left operand */ Expr *pRight, /* The right operand */ int opcode, /* The comparison opcode */ int in1, int in2, /* Register holding operands */ int dest, /* Jump here if true. */ int jumpIfNull, /* If true, jump if either operand is NULL */ int isCommuted /* The comparison has been commuted */ ){ int p5; int addr; CollSeq *p4; if( pParse->nErr ) return 0; if( isCommuted ){ p4 = sqlite3BinaryCompareCollSeq(pParse, pRight, pLeft); }else{ p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight); } p5 = binaryCompareP5(pLeft, pRight, jumpIfNull); addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, (void*)p4, P4_COLLSEQ); sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); return addr; } /* ** Return true if expression pExpr is a vector, or false otherwise. ** ** A vector is defined as any expression that results in two or more ** columns of result. Every TK_VECTOR node is an vector because the ** parser will not generate a TK_VECTOR with fewer than two entries. ** But a TK_SELECT might be either a vector or a scalar. It is only ** considered a vector if it has two or more result columns. */ SQLITE_PRIVATE int sqlite3ExprIsVector(Expr *pExpr){ return sqlite3ExprVectorSize(pExpr)>1; } /* ** If the expression passed as the only argument is of type TK_VECTOR ** return the number of expressions in the vector. Or, if the expression ** is a sub-select, return the number of columns in the sub-select. For ** any other type of expression, return 1. */ SQLITE_PRIVATE int sqlite3ExprVectorSize(Expr *pExpr){ u8 op = pExpr->op; if( op==TK_REGISTER ) op = pExpr->op2; if( op==TK_VECTOR ){ return pExpr->x.pList->nExpr; }else if( op==TK_SELECT ){ return pExpr->x.pSelect->pEList->nExpr; }else{ return 1; } } /* ** Return a pointer to a subexpression of pVector that is the i-th ** column of the vector (numbered starting with 0). The caller must ** ensure that i is within range. ** ** If pVector is really a scalar (and "scalar" here includes subqueries ** that return a single column!) then return pVector unmodified. ** ** pVector retains ownership of the returned subexpression. ** ** If the vector is a (SELECT ...) then the expression returned is ** just the expression for the i-th term of the result set, and may ** not be ready for evaluation because the table cursor has not yet ** been positioned. */ SQLITE_PRIVATE Expr *sqlite3VectorFieldSubexpr(Expr *pVector, int i){ assert( iop2==0 || pVector->op==TK_REGISTER ); if( pVector->op==TK_SELECT || pVector->op2==TK_SELECT ){ return pVector->x.pSelect->pEList->a[i].pExpr; }else{ return pVector->x.pList->a[i].pExpr; } } return pVector; } /* ** Compute and return a new Expr object which when passed to ** sqlite3ExprCode() will generate all necessary code to compute ** the iField-th column of the vector expression pVector. ** ** It is ok for pVector to be a scalar (as long as iField==0). ** In that case, this routine works like sqlite3ExprDup(). ** ** The caller owns the returned Expr object and is responsible for ** ensuring that the returned value eventually gets freed. ** ** The caller retains ownership of pVector. If pVector is a TK_SELECT, ** then the returned object will reference pVector and so pVector must remain ** valid for the life of the returned object. If pVector is a TK_VECTOR ** or a scalar expression, then it can be deleted as soon as this routine ** returns. ** ** A trick to cause a TK_SELECT pVector to be deleted together with ** the returned Expr object is to attach the pVector to the pRight field ** of the returned TK_SELECT_COLUMN Expr object. */ SQLITE_PRIVATE Expr *sqlite3ExprForVectorField( Parse *pParse, /* Parsing context */ Expr *pVector, /* The vector. List of expressions or a sub-SELECT */ int iField /* Which column of the vector to return */ ){ Expr *pRet; if( pVector->op==TK_SELECT ){ assert( pVector->flags & EP_xIsSelect ); /* The TK_SELECT_COLUMN Expr node: ** ** pLeft: pVector containing TK_SELECT. Not deleted. ** pRight: not used. But recursively deleted. ** iColumn: Index of a column in pVector ** iTable: 0 or the number of columns on the LHS of an assignment ** pLeft->iTable: First in an array of register holding result, or 0 ** if the result is not yet computed. ** ** sqlite3ExprDelete() specifically skips the recursive delete of ** pLeft on TK_SELECT_COLUMN nodes. But pRight is followed, so pVector ** can be attached to pRight to cause this node to take ownership of ** pVector. Typically there will be multiple TK_SELECT_COLUMN nodes ** with the same pLeft pointer to the pVector, but only one of them ** will own the pVector. */ pRet = sqlite3PExpr(pParse, TK_SELECT_COLUMN, 0, 0); if( pRet ){ pRet->iColumn = iField; pRet->pLeft = pVector; } assert( pRet==0 || pRet->iTable==0 ); }else{ if( pVector->op==TK_VECTOR ) pVector = pVector->x.pList->a[iField].pExpr; pRet = sqlite3ExprDup(pParse->db, pVector, 0); sqlite3RenameTokenRemap(pParse, pRet, pVector); } return pRet; } /* ** If expression pExpr is of type TK_SELECT, generate code to evaluate ** it. Return the register in which the result is stored (or, if the ** sub-select returns more than one column, the first in an array ** of registers in which the result is stored). ** ** If pExpr is not a TK_SELECT expression, return 0. */ static int exprCodeSubselect(Parse *pParse, Expr *pExpr){ int reg = 0; #ifndef SQLITE_OMIT_SUBQUERY if( pExpr->op==TK_SELECT ){ reg = sqlite3CodeSubselect(pParse, pExpr); } #endif return reg; } /* ** Argument pVector points to a vector expression - either a TK_VECTOR ** or TK_SELECT that returns more than one column. This function returns ** the register number of a register that contains the value of ** element iField of the vector. ** ** If pVector is a TK_SELECT expression, then code for it must have ** already been generated using the exprCodeSubselect() routine. In this ** case parameter regSelect should be the first in an array of registers ** containing the results of the sub-select. ** ** If pVector is of type TK_VECTOR, then code for the requested field ** is generated. In this case (*pRegFree) may be set to the number of ** a temporary register to be freed by the caller before returning. ** ** Before returning, output parameter (*ppExpr) is set to point to the ** Expr object corresponding to element iElem of the vector. */ static int exprVectorRegister( Parse *pParse, /* Parse context */ Expr *pVector, /* Vector to extract element from */ int iField, /* Field to extract from pVector */ int regSelect, /* First in array of registers */ Expr **ppExpr, /* OUT: Expression element */ int *pRegFree /* OUT: Temp register to free */ ){ u8 op = pVector->op; assert( op==TK_VECTOR || op==TK_REGISTER || op==TK_SELECT ); if( op==TK_REGISTER ){ *ppExpr = sqlite3VectorFieldSubexpr(pVector, iField); return pVector->iTable+iField; } if( op==TK_SELECT ){ *ppExpr = pVector->x.pSelect->pEList->a[iField].pExpr; return regSelect+iField; } *ppExpr = pVector->x.pList->a[iField].pExpr; return sqlite3ExprCodeTemp(pParse, *ppExpr, pRegFree); } /* ** Expression pExpr is a comparison between two vector values. Compute ** the result of the comparison (1, 0, or NULL) and write that ** result into register dest. ** ** The caller must satisfy the following preconditions: ** ** if pExpr->op==TK_IS: op==TK_EQ and p5==SQLITE_NULLEQ ** if pExpr->op==TK_ISNOT: op==TK_NE and p5==SQLITE_NULLEQ ** otherwise: op==pExpr->op and p5==0 */ static void codeVectorCompare( Parse *pParse, /* Code generator context */ Expr *pExpr, /* The comparison operation */ int dest, /* Write results into this register */ u8 op, /* Comparison operator */ u8 p5 /* SQLITE_NULLEQ or zero */ ){ Vdbe *v = pParse->pVdbe; Expr *pLeft = pExpr->pLeft; Expr *pRight = pExpr->pRight; int nLeft = sqlite3ExprVectorSize(pLeft); int i; int regLeft = 0; int regRight = 0; u8 opx = op; int addrDone = sqlite3VdbeMakeLabel(pParse); int isCommuted = ExprHasProperty(pExpr,EP_Commuted); assert( !ExprHasVVAProperty(pExpr,EP_Immutable) ); if( pParse->nErr ) return; if( nLeft!=sqlite3ExprVectorSize(pRight) ){ sqlite3ErrorMsg(pParse, "row value misused"); return; } assert( pExpr->op==TK_EQ || pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT || pExpr->op==TK_LT || pExpr->op==TK_GT || pExpr->op==TK_LE || pExpr->op==TK_GE ); assert( pExpr->op==op || (pExpr->op==TK_IS && op==TK_EQ) || (pExpr->op==TK_ISNOT && op==TK_NE) ); assert( p5==0 || pExpr->op!=op ); assert( p5==SQLITE_NULLEQ || pExpr->op==op ); p5 |= SQLITE_STOREP2; if( opx==TK_LE ) opx = TK_LT; if( opx==TK_GE ) opx = TK_GT; regLeft = exprCodeSubselect(pParse, pLeft); regRight = exprCodeSubselect(pParse, pRight); for(i=0; 1 /*Loop exits by "break"*/; i++){ int regFree1 = 0, regFree2 = 0; Expr *pL, *pR; int r1, r2; assert( i>=0 && i0 /* ** Check that argument nHeight is less than or equal to the maximum ** expression depth allowed. If it is not, leave an error message in ** pParse. */ SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){ int rc = SQLITE_OK; int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH]; if( nHeight>mxHeight ){ sqlite3ErrorMsg(pParse, "Expression tree is too large (maximum depth %d)", mxHeight ); rc = SQLITE_ERROR; } return rc; } /* The following three functions, heightOfExpr(), heightOfExprList() ** and heightOfSelect(), are used to determine the maximum height ** of any expression tree referenced by the structure passed as the ** first argument. ** ** If this maximum height is greater than the current value pointed ** to by pnHeight, the second parameter, then set *pnHeight to that ** value. */ static void heightOfExpr(Expr *p, int *pnHeight){ if( p ){ if( p->nHeight>*pnHeight ){ *pnHeight = p->nHeight; } } } static void heightOfExprList(ExprList *p, int *pnHeight){ if( p ){ int i; for(i=0; inExpr; i++){ heightOfExpr(p->a[i].pExpr, pnHeight); } } } static void heightOfSelect(Select *pSelect, int *pnHeight){ Select *p; for(p=pSelect; p; p=p->pPrior){ heightOfExpr(p->pWhere, pnHeight); heightOfExpr(p->pHaving, pnHeight); heightOfExpr(p->pLimit, pnHeight); heightOfExprList(p->pEList, pnHeight); heightOfExprList(p->pGroupBy, pnHeight); heightOfExprList(p->pOrderBy, pnHeight); } } /* ** Set the Expr.nHeight variable in the structure passed as an ** argument. An expression with no children, Expr.pList or ** Expr.pSelect member has a height of 1. Any other expression ** has a height equal to the maximum height of any other ** referenced Expr plus one. ** ** Also propagate EP_Propagate flags up from Expr.x.pList to Expr.flags, ** if appropriate. */ static void exprSetHeight(Expr *p){ int nHeight = 0; heightOfExpr(p->pLeft, &nHeight); heightOfExpr(p->pRight, &nHeight); if( ExprHasProperty(p, EP_xIsSelect) ){ heightOfSelect(p->x.pSelect, &nHeight); }else if( p->x.pList ){ heightOfExprList(p->x.pList, &nHeight); p->flags |= EP_Propagate & sqlite3ExprListFlags(p->x.pList); } p->nHeight = nHeight + 1; } /* ** Set the Expr.nHeight variable using the exprSetHeight() function. If ** the height is greater than the maximum allowed expression depth, ** leave an error in pParse. ** ** Also propagate all EP_Propagate flags from the Expr.x.pList into ** Expr.flags. */ SQLITE_PRIVATE void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p){ if( pParse->nErr ) return; exprSetHeight(p); sqlite3ExprCheckHeight(pParse, p->nHeight); } /* ** Return the maximum height of any expression tree referenced ** by the select statement passed as an argument. */ SQLITE_PRIVATE int sqlite3SelectExprHeight(Select *p){ int nHeight = 0; heightOfSelect(p, &nHeight); return nHeight; } #else /* ABOVE: Height enforcement enabled. BELOW: Height enforcement off */ /* ** Propagate all EP_Propagate flags from the Expr.x.pList into ** Expr.flags. */ SQLITE_PRIVATE void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p){ if( p && p->x.pList && !ExprHasProperty(p, EP_xIsSelect) ){ p->flags |= EP_Propagate & sqlite3ExprListFlags(p->x.pList); } } #define exprSetHeight(y) #endif /* SQLITE_MAX_EXPR_DEPTH>0 */ /* ** This routine is the core allocator for Expr nodes. ** ** Construct a new expression node and return a pointer to it. Memory ** for this node and for the pToken argument is a single allocation ** obtained from sqlite3DbMalloc(). The calling function ** is responsible for making sure the node eventually gets freed. ** ** If dequote is true, then the token (if it exists) is dequoted. ** If dequote is false, no dequoting is performed. The deQuote ** parameter is ignored if pToken is NULL or if the token does not ** appear to be quoted. If the quotes were of the form "..." (double-quotes) ** then the EP_DblQuoted flag is set on the expression node. ** ** Special case: If op==TK_INTEGER and pToken points to a string that ** can be translated into a 32-bit integer, then the token is not ** stored in u.zToken. Instead, the integer values is written ** into u.iValue and the EP_IntValue flag is set. No extra storage ** is allocated to hold the integer text and the dequote flag is ignored. */ SQLITE_PRIVATE Expr *sqlite3ExprAlloc( sqlite3 *db, /* Handle for sqlite3DbMallocRawNN() */ int op, /* Expression opcode */ const Token *pToken, /* Token argument. Might be NULL */ int dequote /* True to dequote */ ){ Expr *pNew; int nExtra = 0; int iValue = 0; assert( db!=0 ); if( pToken ){ if( op!=TK_INTEGER || pToken->z==0 || sqlite3GetInt32(pToken->z, &iValue)==0 ){ nExtra = pToken->n+1; assert( iValue>=0 ); } } pNew = sqlite3DbMallocRawNN(db, sizeof(Expr)+nExtra); if( pNew ){ memset(pNew, 0, sizeof(Expr)); pNew->op = (u8)op; pNew->iAgg = -1; if( pToken ){ if( nExtra==0 ){ pNew->flags |= EP_IntValue|EP_Leaf|(iValue?EP_IsTrue:EP_IsFalse); pNew->u.iValue = iValue; }else{ pNew->u.zToken = (char*)&pNew[1]; assert( pToken->z!=0 || pToken->n==0 ); if( pToken->n ) memcpy(pNew->u.zToken, pToken->z, pToken->n); pNew->u.zToken[pToken->n] = 0; if( dequote && sqlite3Isquote(pNew->u.zToken[0]) ){ sqlite3DequoteExpr(pNew); } } } #if SQLITE_MAX_EXPR_DEPTH>0 pNew->nHeight = 1; #endif } return pNew; } /* ** Allocate a new expression node from a zero-terminated token that has ** already been dequoted. */ SQLITE_PRIVATE Expr *sqlite3Expr( sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ int op, /* Expression opcode */ const char *zToken /* Token argument. Might be NULL */ ){ Token x; x.z = zToken; x.n = sqlite3Strlen30(zToken); return sqlite3ExprAlloc(db, op, &x, 0); } /* ** Attach subtrees pLeft and pRight to the Expr node pRoot. ** ** If pRoot==NULL that means that a memory allocation error has occurred. ** In that case, delete the subtrees pLeft and pRight. */ SQLITE_PRIVATE void sqlite3ExprAttachSubtrees( sqlite3 *db, Expr *pRoot, Expr *pLeft, Expr *pRight ){ if( pRoot==0 ){ assert( db->mallocFailed ); sqlite3ExprDelete(db, pLeft); sqlite3ExprDelete(db, pRight); }else{ if( pRight ){ pRoot->pRight = pRight; pRoot->flags |= EP_Propagate & pRight->flags; } if( pLeft ){ pRoot->pLeft = pLeft; pRoot->flags |= EP_Propagate & pLeft->flags; } exprSetHeight(pRoot); } } /* ** Allocate an Expr node which joins as many as two subtrees. ** ** One or both of the subtrees can be NULL. Return a pointer to the new ** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed, ** free the subtrees and return NULL. */ SQLITE_PRIVATE Expr *sqlite3PExpr( Parse *pParse, /* Parsing context */ int op, /* Expression opcode */ Expr *pLeft, /* Left operand */ Expr *pRight /* Right operand */ ){ Expr *p; p = sqlite3DbMallocRawNN(pParse->db, sizeof(Expr)); if( p ){ memset(p, 0, sizeof(Expr)); p->op = op & 0xff; p->iAgg = -1; sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight); sqlite3ExprCheckHeight(pParse, p->nHeight); }else{ sqlite3ExprDelete(pParse->db, pLeft); sqlite3ExprDelete(pParse->db, pRight); } return p; } /* ** Add pSelect to the Expr.x.pSelect field. Or, if pExpr is NULL (due ** do a memory allocation failure) then delete the pSelect object. */ SQLITE_PRIVATE void sqlite3PExprAddSelect(Parse *pParse, Expr *pExpr, Select *pSelect){ if( pExpr ){ pExpr->x.pSelect = pSelect; ExprSetProperty(pExpr, EP_xIsSelect|EP_Subquery); sqlite3ExprSetHeightAndFlags(pParse, pExpr); }else{ assert( pParse->db->mallocFailed ); sqlite3SelectDelete(pParse->db, pSelect); } } /* ** Join two expressions using an AND operator. If either expression is ** NULL, then just return the other expression. ** ** If one side or the other of the AND is known to be false, then instead ** of returning an AND expression, just return a constant expression with ** a value of false. */ SQLITE_PRIVATE Expr *sqlite3ExprAnd(Parse *pParse, Expr *pLeft, Expr *pRight){ sqlite3 *db = pParse->db; if( pLeft==0 ){ return pRight; }else if( pRight==0 ){ return pLeft; }else if( (ExprAlwaysFalse(pLeft) || ExprAlwaysFalse(pRight)) && !IN_RENAME_OBJECT ){ sqlite3ExprDelete(db, pLeft); sqlite3ExprDelete(db, pRight); return sqlite3Expr(db, TK_INTEGER, "0"); }else{ return sqlite3PExpr(pParse, TK_AND, pLeft, pRight); } } /* ** Construct a new expression node for a function with multiple ** arguments. */ SQLITE_PRIVATE Expr *sqlite3ExprFunction( Parse *pParse, /* Parsing context */ ExprList *pList, /* Argument list */ Token *pToken, /* Name of the function */ int eDistinct /* SF_Distinct or SF_ALL or 0 */ ){ Expr *pNew; sqlite3 *db = pParse->db; assert( pToken ); pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1); if( pNew==0 ){ sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */ return 0; } if( pList && pList->nExpr > pParse->db->aLimit[SQLITE_LIMIT_FUNCTION_ARG] ){ sqlite3ErrorMsg(pParse, "too many arguments on function %T", pToken); } pNew->x.pList = pList; ExprSetProperty(pNew, EP_HasFunc); assert( !ExprHasProperty(pNew, EP_xIsSelect) ); sqlite3ExprSetHeightAndFlags(pParse, pNew); if( eDistinct==SF_Distinct ) ExprSetProperty(pNew, EP_Distinct); return pNew; } /* ** Check to see if a function is usable according to current access ** rules: ** ** SQLITE_FUNC_DIRECT - Only usable from top-level SQL ** ** SQLITE_FUNC_UNSAFE - Usable if TRUSTED_SCHEMA or from ** top-level SQL ** ** If the function is not usable, create an error. */ SQLITE_PRIVATE void sqlite3ExprFunctionUsable( Parse *pParse, /* Parsing and code generating context */ Expr *pExpr, /* The function invocation */ FuncDef *pDef /* The function being invoked */ ){ assert( !IN_RENAME_OBJECT ); assert( (pDef->funcFlags & (SQLITE_FUNC_DIRECT|SQLITE_FUNC_UNSAFE))!=0 ); if( ExprHasProperty(pExpr, EP_FromDDL) ){ if( (pDef->funcFlags & SQLITE_FUNC_DIRECT)!=0 || (pParse->db->flags & SQLITE_TrustedSchema)==0 ){ /* Functions prohibited in triggers and views if: ** (1) tagged with SQLITE_DIRECTONLY ** (2) not tagged with SQLITE_INNOCUOUS (which means it ** is tagged with SQLITE_FUNC_UNSAFE) and ** SQLITE_DBCONFIG_TRUSTED_SCHEMA is off (meaning ** that the schema is possibly tainted). */ sqlite3ErrorMsg(pParse, "unsafe use of %s()", pDef->zName); } } } /* ** Assign a variable number to an expression that encodes a wildcard ** in the original SQL statement. ** ** Wildcards consisting of a single "?" are assigned the next sequential ** variable number. ** ** Wildcards of the form "?nnn" are assigned the number "nnn". We make ** sure "nnn" is not too big to avoid a denial of service attack when ** the SQL statement comes from an external source. ** ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number ** as the previous instance of the same wildcard. Or if this is the first ** instance of the wildcard, the next sequential variable number is ** assigned. */ SQLITE_PRIVATE void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr, u32 n){ sqlite3 *db = pParse->db; const char *z; ynVar x; if( pExpr==0 ) return; assert( !ExprHasProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) ); z = pExpr->u.zToken; assert( z!=0 ); assert( z[0]!=0 ); assert( n==(u32)sqlite3Strlen30(z) ); if( z[1]==0 ){ /* Wildcard of the form "?". Assign the next variable number */ assert( z[0]=='?' ); x = (ynVar)(++pParse->nVar); }else{ int doAdd = 0; if( z[0]=='?' ){ /* Wildcard of the form "?nnn". Convert "nnn" to an integer and ** use it as the variable number */ i64 i; int bOk; if( n==2 ){ /*OPTIMIZATION-IF-TRUE*/ i = z[1]-'0'; /* The common case of ?N for a single digit N */ bOk = 1; }else{ bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8); } testcase( i==0 ); testcase( i==1 ); testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 ); testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ); if( bOk==0 || i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); return; } x = (ynVar)i; if( x>pParse->nVar ){ pParse->nVar = (int)x; doAdd = 1; }else if( sqlite3VListNumToName(pParse->pVList, x)==0 ){ doAdd = 1; } }else{ /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable ** number as the prior appearance of the same name, or if the name ** has never appeared before, reuse the same variable number */ x = (ynVar)sqlite3VListNameToNum(pParse->pVList, z, n); if( x==0 ){ x = (ynVar)(++pParse->nVar); doAdd = 1; } } if( doAdd ){ pParse->pVList = sqlite3VListAdd(db, pParse->pVList, z, n, x); } } pExpr->iColumn = x; if( x>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ sqlite3ErrorMsg(pParse, "too many SQL variables"); } } /* ** Recursively delete an expression tree. */ static SQLITE_NOINLINE void sqlite3ExprDeleteNN(sqlite3 *db, Expr *p){ assert( p!=0 ); /* Sanity check: Assert that the IntValue is non-negative if it exists */ assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 ); assert( !ExprHasProperty(p, EP_WinFunc) || p->y.pWin!=0 || db->mallocFailed ); assert( p->op!=TK_FUNCTION || ExprHasProperty(p, EP_TokenOnly|EP_Reduced) || p->y.pWin==0 || ExprHasProperty(p, EP_WinFunc) ); #ifdef SQLITE_DEBUG if( ExprHasProperty(p, EP_Leaf) && !ExprHasProperty(p, EP_TokenOnly) ){ assert( p->pLeft==0 ); assert( p->pRight==0 ); assert( p->x.pSelect==0 ); } #endif if( !ExprHasProperty(p, (EP_TokenOnly|EP_Leaf)) ){ /* The Expr.x union is never used at the same time as Expr.pRight */ assert( p->x.pList==0 || p->pRight==0 ); if( p->pLeft && p->op!=TK_SELECT_COLUMN ) sqlite3ExprDeleteNN(db, p->pLeft); if( p->pRight ){ assert( !ExprHasProperty(p, EP_WinFunc) ); sqlite3ExprDeleteNN(db, p->pRight); }else if( ExprHasProperty(p, EP_xIsSelect) ){ assert( !ExprHasProperty(p, EP_WinFunc) ); sqlite3SelectDelete(db, p->x.pSelect); }else{ sqlite3ExprListDelete(db, p->x.pList); #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(p, EP_WinFunc) ){ sqlite3WindowDelete(db, p->y.pWin); } #endif } } if( ExprHasProperty(p, EP_MemToken) ) sqlite3DbFree(db, p->u.zToken); if( !ExprHasProperty(p, EP_Static) ){ sqlite3DbFreeNN(db, p); } } SQLITE_PRIVATE void sqlite3ExprDelete(sqlite3 *db, Expr *p){ if( p ) sqlite3ExprDeleteNN(db, p); } /* Invoke sqlite3RenameExprUnmap() and sqlite3ExprDelete() on the ** expression. */ SQLITE_PRIVATE void sqlite3ExprUnmapAndDelete(Parse *pParse, Expr *p){ if( p ){ if( IN_RENAME_OBJECT ){ sqlite3RenameExprUnmap(pParse, p); } sqlite3ExprDeleteNN(pParse->db, p); } } /* ** Return the number of bytes allocated for the expression structure ** passed as the first argument. This is always one of EXPR_FULLSIZE, ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE. */ static int exprStructSize(Expr *p){ if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE; if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE; return EXPR_FULLSIZE; } /* ** The dupedExpr*Size() routines each return the number of bytes required ** to store a copy of an expression or expression tree. They differ in ** how much of the tree is measured. ** ** dupedExprStructSize() Size of only the Expr structure ** dupedExprNodeSize() Size of Expr + space for token ** dupedExprSize() Expr + token + subtree components ** *************************************************************************** ** ** The dupedExprStructSize() function returns two values OR-ed together: ** (1) the space required for a copy of the Expr structure only and ** (2) the EP_xxx flags that indicate what the structure size should be. ** The return values is always one of: ** ** EXPR_FULLSIZE ** EXPR_REDUCEDSIZE | EP_Reduced ** EXPR_TOKENONLYSIZE | EP_TokenOnly ** ** The size of the structure can be found by masking the return value ** of this routine with 0xfff. The flags can be found by masking the ** return value with EP_Reduced|EP_TokenOnly. ** ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size ** (unreduced) Expr objects as they or originally constructed by the parser. ** During expression analysis, extra information is computed and moved into ** later parts of the Expr object and that extra information might get chopped ** off if the expression is reduced. Note also that it does not work to ** make an EXPRDUP_REDUCE copy of a reduced expression. It is only legal ** to reduce a pristine expression tree from the parser. The implementation ** of dupedExprStructSize() contain multiple assert() statements that attempt ** to enforce this constraint. */ static int dupedExprStructSize(Expr *p, int flags){ int nSize; assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */ assert( EXPR_FULLSIZE<=0xfff ); assert( (0xfff & (EP_Reduced|EP_TokenOnly))==0 ); if( 0==flags || p->op==TK_SELECT_COLUMN #ifndef SQLITE_OMIT_WINDOWFUNC || ExprHasProperty(p, EP_WinFunc) #endif ){ nSize = EXPR_FULLSIZE; }else{ assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); assert( !ExprHasProperty(p, EP_FromJoin) ); assert( !ExprHasProperty(p, EP_MemToken) ); assert( !ExprHasVVAProperty(p, EP_NoReduce) ); if( p->pLeft || p->x.pList ){ nSize = EXPR_REDUCEDSIZE | EP_Reduced; }else{ assert( p->pRight==0 ); nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; } } return nSize; } /* ** This function returns the space in bytes required to store the copy ** of the Expr structure and a copy of the Expr.u.zToken string (if that ** string is defined.) */ static int dupedExprNodeSize(Expr *p, int flags){ int nByte = dupedExprStructSize(p, flags) & 0xfff; if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ nByte += sqlite3Strlen30NN(p->u.zToken)+1; } return ROUND8(nByte); } /* ** Return the number of bytes required to create a duplicate of the ** expression passed as the first argument. The second argument is a ** mask containing EXPRDUP_XXX flags. ** ** The value returned includes space to create a copy of the Expr struct ** itself and the buffer referred to by Expr.u.zToken, if any. ** ** If the EXPRDUP_REDUCE flag is set, then the return value includes ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft ** and Expr.pRight variables (but not for any structures pointed to or ** descended from the Expr.x.pList or Expr.x.pSelect variables). */ static int dupedExprSize(Expr *p, int flags){ int nByte = 0; if( p ){ nByte = dupedExprNodeSize(p, flags); if( flags&EXPRDUP_REDUCE ){ nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags); } } return nByte; } /* ** This function is similar to sqlite3ExprDup(), except that if pzBuffer ** is not NULL then *pzBuffer is assumed to point to a buffer large enough ** to store the copy of expression p, the copies of p->u.zToken ** (if applicable), and the copies of the p->pLeft and p->pRight expressions, ** if any. Before returning, *pzBuffer is set to the first byte past the ** portion of the buffer copied into by this function. */ static Expr *exprDup(sqlite3 *db, Expr *p, int dupFlags, u8 **pzBuffer){ Expr *pNew; /* Value to return */ u8 *zAlloc; /* Memory space from which to build Expr object */ u32 staticFlag; /* EP_Static if space not obtained from malloc */ assert( db!=0 ); assert( p ); assert( dupFlags==0 || dupFlags==EXPRDUP_REDUCE ); assert( pzBuffer==0 || dupFlags==EXPRDUP_REDUCE ); /* Figure out where to write the new Expr structure. */ if( pzBuffer ){ zAlloc = *pzBuffer; staticFlag = EP_Static; }else{ zAlloc = sqlite3DbMallocRawNN(db, dupedExprSize(p, dupFlags)); staticFlag = 0; } pNew = (Expr *)zAlloc; if( pNew ){ /* Set nNewSize to the size allocated for the structure pointed to ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed ** by the copy of the p->u.zToken string (if any). */ const unsigned nStructSize = dupedExprStructSize(p, dupFlags); const int nNewSize = nStructSize & 0xfff; int nToken; if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ nToken = sqlite3Strlen30(p->u.zToken) + 1; }else{ nToken = 0; } if( dupFlags ){ assert( ExprHasProperty(p, EP_Reduced)==0 ); memcpy(zAlloc, p, nNewSize); }else{ u32 nSize = (u32)exprStructSize(p); memcpy(zAlloc, p, nSize); if( nSizeflags &= ~(EP_Reduced|EP_TokenOnly|EP_Static|EP_MemToken); pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); pNew->flags |= staticFlag; ExprClearVVAProperties(pNew); if( dupFlags ){ ExprSetVVAProperty(pNew, EP_Immutable); } /* Copy the p->u.zToken string, if any. */ if( nToken ){ char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize]; memcpy(zToken, p->u.zToken, nToken); } if( 0==((p->flags|pNew->flags) & (EP_TokenOnly|EP_Leaf)) ){ /* Fill in the pNew->x.pSelect or pNew->x.pList member. */ if( ExprHasProperty(p, EP_xIsSelect) ){ pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, dupFlags); }else{ pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, dupFlags); } } /* Fill in pNew->pLeft and pNew->pRight. */ if( ExprHasProperty(pNew, EP_Reduced|EP_TokenOnly|EP_WinFunc) ){ zAlloc += dupedExprNodeSize(p, dupFlags); if( !ExprHasProperty(pNew, EP_TokenOnly|EP_Leaf) ){ pNew->pLeft = p->pLeft ? exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc) : 0; pNew->pRight = p->pRight ? exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc) : 0; } #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(p, EP_WinFunc) ){ pNew->y.pWin = sqlite3WindowDup(db, pNew, p->y.pWin); assert( ExprHasProperty(pNew, EP_WinFunc) ); } #endif /* SQLITE_OMIT_WINDOWFUNC */ if( pzBuffer ){ *pzBuffer = zAlloc; } }else{ if( !ExprHasProperty(p, EP_TokenOnly|EP_Leaf) ){ if( pNew->op==TK_SELECT_COLUMN ){ pNew->pLeft = p->pLeft; assert( p->iColumn==0 || p->pRight==0 ); assert( p->pRight==0 || p->pRight==p->pLeft ); }else{ pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0); } pNew->pRight = sqlite3ExprDup(db, p->pRight, 0); } } } return pNew; } /* ** Create and return a deep copy of the object passed as the second ** argument. If an OOM condition is encountered, NULL is returned ** and the db->mallocFailed flag set. */ #ifndef SQLITE_OMIT_CTE static With *withDup(sqlite3 *db, With *p){ With *pRet = 0; if( p ){ sqlite3_int64 nByte = sizeof(*p) + sizeof(p->a[0]) * (p->nCte-1); pRet = sqlite3DbMallocZero(db, nByte); if( pRet ){ int i; pRet->nCte = p->nCte; for(i=0; inCte; i++){ pRet->a[i].pSelect = sqlite3SelectDup(db, p->a[i].pSelect, 0); pRet->a[i].pCols = sqlite3ExprListDup(db, p->a[i].pCols, 0); pRet->a[i].zName = sqlite3DbStrDup(db, p->a[i].zName); } } } return pRet; } #else # define withDup(x,y) 0 #endif #ifndef SQLITE_OMIT_WINDOWFUNC /* ** The gatherSelectWindows() procedure and its helper routine ** gatherSelectWindowsCallback() are used to scan all the expressions ** an a newly duplicated SELECT statement and gather all of the Window ** objects found there, assembling them onto the linked list at Select->pWin. */ static int gatherSelectWindowsCallback(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_FUNCTION && ExprHasProperty(pExpr, EP_WinFunc) ){ Select *pSelect = pWalker->u.pSelect; Window *pWin = pExpr->y.pWin; assert( pWin ); assert( IsWindowFunc(pExpr) ); assert( pWin->ppThis==0 ); sqlite3WindowLink(pSelect, pWin); } return WRC_Continue; } static int gatherSelectWindowsSelectCallback(Walker *pWalker, Select *p){ return p==pWalker->u.pSelect ? WRC_Continue : WRC_Prune; } static void gatherSelectWindows(Select *p){ Walker w; w.xExprCallback = gatherSelectWindowsCallback; w.xSelectCallback = gatherSelectWindowsSelectCallback; w.xSelectCallback2 = 0; w.pParse = 0; w.u.pSelect = p; sqlite3WalkSelect(&w, p); } #endif /* ** The following group of routines make deep copies of expressions, ** expression lists, ID lists, and select statements. The copies can ** be deleted (by being passed to their respective ...Delete() routines) ** without effecting the originals. ** ** The expression list, ID, and source lists return by sqlite3ExprListDup(), ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded ** by subsequent calls to sqlite*ListAppend() routines. ** ** Any tables that the SrcList might point to are not duplicated. ** ** The flags parameter contains a combination of the EXPRDUP_XXX flags. ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a ** truncated version of the usual Expr structure that will be stored as ** part of the in-memory representation of the database schema. */ SQLITE_PRIVATE Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){ assert( flags==0 || flags==EXPRDUP_REDUCE ); return p ? exprDup(db, p, flags, 0) : 0; } SQLITE_PRIVATE ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){ ExprList *pNew; struct ExprList_item *pItem, *pOldItem; int i; Expr *pPriorSelectCol = 0; assert( db!=0 ); if( p==0 ) return 0; pNew = sqlite3DbMallocRawNN(db, sqlite3DbMallocSize(db, p)); if( pNew==0 ) return 0; pNew->nExpr = p->nExpr; pItem = pNew->a; pOldItem = p->a; for(i=0; inExpr; i++, pItem++, pOldItem++){ Expr *pOldExpr = pOldItem->pExpr; Expr *pNewExpr; pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags); if( pOldExpr && pOldExpr->op==TK_SELECT_COLUMN && (pNewExpr = pItem->pExpr)!=0 ){ assert( pNewExpr->iColumn==0 || i>0 ); if( pNewExpr->iColumn==0 ){ assert( pOldExpr->pLeft==pOldExpr->pRight ); pPriorSelectCol = pNewExpr->pLeft = pNewExpr->pRight; }else{ assert( i>0 ); assert( pItem[-1].pExpr!=0 ); assert( pNewExpr->iColumn==pItem[-1].pExpr->iColumn+1 ); assert( pPriorSelectCol==pItem[-1].pExpr->pLeft ); pNewExpr->pLeft = pPriorSelectCol; } } pItem->zEName = sqlite3DbStrDup(db, pOldItem->zEName); pItem->sortFlags = pOldItem->sortFlags; pItem->eEName = pOldItem->eEName; pItem->done = 0; pItem->bNulls = pOldItem->bNulls; pItem->bSorterRef = pOldItem->bSorterRef; pItem->u = pOldItem->u; } return pNew; } /* ** If cursors, triggers, views and subqueries are all omitted from ** the build, then none of the following routines, except for ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes ** called with a NULL argument. */ #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ || !defined(SQLITE_OMIT_SUBQUERY) SQLITE_PRIVATE SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){ SrcList *pNew; int i; int nByte; assert( db!=0 ); if( p==0 ) return 0; nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); pNew = sqlite3DbMallocRawNN(db, nByte ); if( pNew==0 ) return 0; pNew->nSrc = pNew->nAlloc = p->nSrc; for(i=0; inSrc; i++){ struct SrcList_item *pNewItem = &pNew->a[i]; struct SrcList_item *pOldItem = &p->a[i]; Table *pTab; pNewItem->pSchema = pOldItem->pSchema; pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase); pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias); pNewItem->fg = pOldItem->fg; pNewItem->iCursor = pOldItem->iCursor; pNewItem->addrFillSub = pOldItem->addrFillSub; pNewItem->regReturn = pOldItem->regReturn; if( pNewItem->fg.isIndexedBy ){ pNewItem->u1.zIndexedBy = sqlite3DbStrDup(db, pOldItem->u1.zIndexedBy); } pNewItem->pIBIndex = pOldItem->pIBIndex; if( pNewItem->fg.isTabFunc ){ pNewItem->u1.pFuncArg = sqlite3ExprListDup(db, pOldItem->u1.pFuncArg, flags); } pTab = pNewItem->pTab = pOldItem->pTab; if( pTab ){ pTab->nTabRef++; } pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags); pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); pNewItem->colUsed = pOldItem->colUsed; } return pNew; } SQLITE_PRIVATE IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){ IdList *pNew; int i; assert( db!=0 ); if( p==0 ) return 0; pNew = sqlite3DbMallocRawNN(db, sizeof(*pNew) ); if( pNew==0 ) return 0; pNew->nId = p->nId; pNew->a = sqlite3DbMallocRawNN(db, p->nId*sizeof(p->a[0]) ); if( pNew->a==0 ){ sqlite3DbFreeNN(db, pNew); return 0; } /* Note that because the size of the allocation for p->a[] is not ** necessarily a power of two, sqlite3IdListAppend() may not be called ** on the duplicate created by this function. */ for(i=0; inId; i++){ struct IdList_item *pNewItem = &pNew->a[i]; struct IdList_item *pOldItem = &p->a[i]; pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); pNewItem->idx = pOldItem->idx; } return pNew; } SQLITE_PRIVATE Select *sqlite3SelectDup(sqlite3 *db, Select *pDup, int flags){ Select *pRet = 0; Select *pNext = 0; Select **pp = &pRet; Select *p; assert( db!=0 ); for(p=pDup; p; p=p->pPrior){ Select *pNew = sqlite3DbMallocRawNN(db, sizeof(*p) ); if( pNew==0 ) break; pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags); pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags); pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags); pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags); pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags); pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags); pNew->op = p->op; pNew->pNext = pNext; pNew->pPrior = 0; pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags); pNew->iLimit = 0; pNew->iOffset = 0; pNew->selFlags = p->selFlags & ~SF_UsesEphemeral; pNew->addrOpenEphm[0] = -1; pNew->addrOpenEphm[1] = -1; pNew->nSelectRow = p->nSelectRow; pNew->pWith = withDup(db, p->pWith); #ifndef SQLITE_OMIT_WINDOWFUNC pNew->pWin = 0; pNew->pWinDefn = sqlite3WindowListDup(db, p->pWinDefn); if( p->pWin && db->mallocFailed==0 ) gatherSelectWindows(pNew); #endif pNew->selId = p->selId; *pp = pNew; pp = &pNew->pPrior; pNext = pNew; } return pRet; } #else SQLITE_PRIVATE Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ assert( p==0 ); return 0; } #endif /* ** Add a new element to the end of an expression list. If pList is ** initially NULL, then create a new expression list. ** ** The pList argument must be either NULL or a pointer to an ExprList ** obtained from a prior call to sqlite3ExprListAppend(). This routine ** may not be used with an ExprList obtained from sqlite3ExprListDup(). ** Reason: This routine assumes that the number of slots in pList->a[] ** is a power of two. That is true for sqlite3ExprListAppend() returns ** but is not necessarily true from the return value of sqlite3ExprListDup(). ** ** If a memory allocation error occurs, the entire list is freed and ** NULL is returned. If non-NULL is returned, then it is guaranteed ** that the new entry was successfully appended. */ SQLITE_PRIVATE ExprList *sqlite3ExprListAppend( Parse *pParse, /* Parsing context */ ExprList *pList, /* List to which to append. Might be NULL */ Expr *pExpr /* Expression to be appended. Might be NULL */ ){ struct ExprList_item *pItem; sqlite3 *db = pParse->db; assert( db!=0 ); if( pList==0 ){ pList = sqlite3DbMallocRawNN(db, sizeof(ExprList) ); if( pList==0 ){ goto no_mem; } pList->nExpr = 0; }else if( (pList->nExpr & (pList->nExpr-1))==0 ){ ExprList *pNew; pNew = sqlite3DbRealloc(db, pList, sizeof(*pList)+(2*(sqlite3_int64)pList->nExpr-1)*sizeof(pList->a[0])); if( pNew==0 ){ goto no_mem; } pList = pNew; } pItem = &pList->a[pList->nExpr++]; assert( offsetof(struct ExprList_item,zEName)==sizeof(pItem->pExpr) ); assert( offsetof(struct ExprList_item,pExpr)==0 ); memset(&pItem->zEName,0,sizeof(*pItem)-offsetof(struct ExprList_item,zEName)); pItem->pExpr = pExpr; return pList; no_mem: /* Avoid leaking memory if malloc has failed. */ sqlite3ExprDelete(db, pExpr); sqlite3ExprListDelete(db, pList); return 0; } /* ** pColumns and pExpr form a vector assignment which is part of the SET ** clause of an UPDATE statement. Like this: ** ** (a,b,c) = (expr1,expr2,expr3) ** Or: (a,b,c) = (SELECT x,y,z FROM ....) ** ** For each term of the vector assignment, append new entries to the ** expression list pList. In the case of a subquery on the RHS, append ** TK_SELECT_COLUMN expressions. */ SQLITE_PRIVATE ExprList *sqlite3ExprListAppendVector( Parse *pParse, /* Parsing context */ ExprList *pList, /* List to which to append. Might be NULL */ IdList *pColumns, /* List of names of LHS of the assignment */ Expr *pExpr /* Vector expression to be appended. Might be NULL */ ){ sqlite3 *db = pParse->db; int n; int i; int iFirst = pList ? pList->nExpr : 0; /* pColumns can only be NULL due to an OOM but an OOM will cause an ** exit prior to this routine being invoked */ if( NEVER(pColumns==0) ) goto vector_append_error; if( pExpr==0 ) goto vector_append_error; /* If the RHS is a vector, then we can immediately check to see that ** the size of the RHS and LHS match. But if the RHS is a SELECT, ** wildcards ("*") in the result set of the SELECT must be expanded before ** we can do the size check, so defer the size check until code generation. */ if( pExpr->op!=TK_SELECT && pColumns->nId!=(n=sqlite3ExprVectorSize(pExpr)) ){ sqlite3ErrorMsg(pParse, "%d columns assigned %d values", pColumns->nId, n); goto vector_append_error; } for(i=0; inId; i++){ Expr *pSubExpr = sqlite3ExprForVectorField(pParse, pExpr, i); assert( pSubExpr!=0 || db->mallocFailed ); assert( pSubExpr==0 || pSubExpr->iTable==0 ); if( pSubExpr==0 ) continue; pSubExpr->iTable = pColumns->nId; pList = sqlite3ExprListAppend(pParse, pList, pSubExpr); if( pList ){ assert( pList->nExpr==iFirst+i+1 ); pList->a[pList->nExpr-1].zEName = pColumns->a[i].zName; pColumns->a[i].zName = 0; } } if( !db->mallocFailed && pExpr->op==TK_SELECT && ALWAYS(pList!=0) ){ Expr *pFirst = pList->a[iFirst].pExpr; assert( pFirst!=0 ); assert( pFirst->op==TK_SELECT_COLUMN ); /* Store the SELECT statement in pRight so it will be deleted when ** sqlite3ExprListDelete() is called */ pFirst->pRight = pExpr; pExpr = 0; /* Remember the size of the LHS in iTable so that we can check that ** the RHS and LHS sizes match during code generation. */ pFirst->iTable = pColumns->nId; } vector_append_error: sqlite3ExprUnmapAndDelete(pParse, pExpr); sqlite3IdListDelete(db, pColumns); return pList; } /* ** Set the sort order for the last element on the given ExprList. */ SQLITE_PRIVATE void sqlite3ExprListSetSortOrder(ExprList *p, int iSortOrder, int eNulls){ struct ExprList_item *pItem; if( p==0 ) return; assert( p->nExpr>0 ); assert( SQLITE_SO_UNDEFINED<0 && SQLITE_SO_ASC==0 && SQLITE_SO_DESC>0 ); assert( iSortOrder==SQLITE_SO_UNDEFINED || iSortOrder==SQLITE_SO_ASC || iSortOrder==SQLITE_SO_DESC ); assert( eNulls==SQLITE_SO_UNDEFINED || eNulls==SQLITE_SO_ASC || eNulls==SQLITE_SO_DESC ); pItem = &p->a[p->nExpr-1]; assert( pItem->bNulls==0 ); if( iSortOrder==SQLITE_SO_UNDEFINED ){ iSortOrder = SQLITE_SO_ASC; } pItem->sortFlags = (u8)iSortOrder; if( eNulls!=SQLITE_SO_UNDEFINED ){ pItem->bNulls = 1; if( iSortOrder!=eNulls ){ pItem->sortFlags |= KEYINFO_ORDER_BIGNULL; } } } /* ** Set the ExprList.a[].zEName element of the most recently added item ** on the expression list. ** ** pList might be NULL following an OOM error. But pName should never be ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag ** is set. */ SQLITE_PRIVATE void sqlite3ExprListSetName( Parse *pParse, /* Parsing context */ ExprList *pList, /* List to which to add the span. */ Token *pName, /* Name to be added */ int dequote /* True to cause the name to be dequoted */ ){ assert( pList!=0 || pParse->db->mallocFailed!=0 ); assert( pParse->eParseMode!=PARSE_MODE_UNMAP || dequote==0 ); if( pList ){ struct ExprList_item *pItem; assert( pList->nExpr>0 ); pItem = &pList->a[pList->nExpr-1]; assert( pItem->zEName==0 ); assert( pItem->eEName==ENAME_NAME ); pItem->zEName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n); if( dequote ){ /* If dequote==0, then pName->z does not point to part of a DDL ** statement handled by the parser. And so no token need be added ** to the token-map. */ sqlite3Dequote(pItem->zEName); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenMap(pParse, (void*)pItem->zEName, pName); } } } } /* ** Set the ExprList.a[].zSpan element of the most recently added item ** on the expression list. ** ** pList might be NULL following an OOM error. But pSpan should never be ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag ** is set. */ SQLITE_PRIVATE void sqlite3ExprListSetSpan( Parse *pParse, /* Parsing context */ ExprList *pList, /* List to which to add the span. */ const char *zStart, /* Start of the span */ const char *zEnd /* End of the span */ ){ sqlite3 *db = pParse->db; assert( pList!=0 || db->mallocFailed!=0 ); if( pList ){ struct ExprList_item *pItem = &pList->a[pList->nExpr-1]; assert( pList->nExpr>0 ); if( pItem->zEName==0 ){ pItem->zEName = sqlite3DbSpanDup(db, zStart, zEnd); pItem->eEName = ENAME_SPAN; } } } /* ** If the expression list pEList contains more than iLimit elements, ** leave an error message in pParse. */ SQLITE_PRIVATE void sqlite3ExprListCheckLength( Parse *pParse, ExprList *pEList, const char *zObject ){ int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN]; testcase( pEList && pEList->nExpr==mx ); testcase( pEList && pEList->nExpr==mx+1 ); if( pEList && pEList->nExpr>mx ){ sqlite3ErrorMsg(pParse, "too many columns in %s", zObject); } } /* ** Delete an entire expression list. */ static SQLITE_NOINLINE void exprListDeleteNN(sqlite3 *db, ExprList *pList){ int i = pList->nExpr; struct ExprList_item *pItem = pList->a; assert( pList->nExpr>0 ); do{ sqlite3ExprDelete(db, pItem->pExpr); sqlite3DbFree(db, pItem->zEName); pItem++; }while( --i>0 ); sqlite3DbFreeNN(db, pList); } SQLITE_PRIVATE void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){ if( pList ) exprListDeleteNN(db, pList); } /* ** Return the bitwise-OR of all Expr.flags fields in the given ** ExprList. */ SQLITE_PRIVATE u32 sqlite3ExprListFlags(const ExprList *pList){ int i; u32 m = 0; assert( pList!=0 ); for(i=0; inExpr; i++){ Expr *pExpr = pList->a[i].pExpr; assert( pExpr!=0 ); m |= pExpr->flags; } return m; } /* ** This is a SELECT-node callback for the expression walker that ** always "fails". By "fail" in this case, we mean set ** pWalker->eCode to zero and abort. ** ** This callback is used by multiple expression walkers. */ SQLITE_PRIVATE int sqlite3SelectWalkFail(Walker *pWalker, Select *NotUsed){ UNUSED_PARAMETER(NotUsed); pWalker->eCode = 0; return WRC_Abort; } /* ** Check the input string to see if it is "true" or "false" (in any case). ** ** If the string is.... Return ** "true" EP_IsTrue ** "false" EP_IsFalse ** anything else 0 */ SQLITE_PRIVATE u32 sqlite3IsTrueOrFalse(const char *zIn){ if( sqlite3StrICmp(zIn, "true")==0 ) return EP_IsTrue; if( sqlite3StrICmp(zIn, "false")==0 ) return EP_IsFalse; return 0; } /* ** If the input expression is an ID with the name "true" or "false" ** then convert it into an TK_TRUEFALSE term. Return non-zero if ** the conversion happened, and zero if the expression is unaltered. */ SQLITE_PRIVATE int sqlite3ExprIdToTrueFalse(Expr *pExpr){ u32 v; assert( pExpr->op==TK_ID || pExpr->op==TK_STRING ); if( !ExprHasProperty(pExpr, EP_Quoted) && (v = sqlite3IsTrueOrFalse(pExpr->u.zToken))!=0 ){ pExpr->op = TK_TRUEFALSE; ExprSetProperty(pExpr, v); return 1; } return 0; } /* ** The argument must be a TK_TRUEFALSE Expr node. Return 1 if it is TRUE ** and 0 if it is FALSE. */ SQLITE_PRIVATE int sqlite3ExprTruthValue(const Expr *pExpr){ pExpr = sqlite3ExprSkipCollate((Expr*)pExpr); assert( pExpr->op==TK_TRUEFALSE ); assert( sqlite3StrICmp(pExpr->u.zToken,"true")==0 || sqlite3StrICmp(pExpr->u.zToken,"false")==0 ); return pExpr->u.zToken[4]==0; } /* ** If pExpr is an AND or OR expression, try to simplify it by eliminating ** terms that are always true or false. Return the simplified expression. ** Or return the original expression if no simplification is possible. ** ** Examples: ** ** (x<10) AND true => (x<10) ** (x<10) AND false => false ** (x<10) AND (y=22 OR false) => (x<10) AND (y=22) ** (x<10) AND (y=22 OR true) => (x<10) ** (y=22) OR true => true */ SQLITE_PRIVATE Expr *sqlite3ExprSimplifiedAndOr(Expr *pExpr){ assert( pExpr!=0 ); if( pExpr->op==TK_AND || pExpr->op==TK_OR ){ Expr *pRight = sqlite3ExprSimplifiedAndOr(pExpr->pRight); Expr *pLeft = sqlite3ExprSimplifiedAndOr(pExpr->pLeft); if( ExprAlwaysTrue(pLeft) || ExprAlwaysFalse(pRight) ){ pExpr = pExpr->op==TK_AND ? pRight : pLeft; }else if( ExprAlwaysTrue(pRight) || ExprAlwaysFalse(pLeft) ){ pExpr = pExpr->op==TK_AND ? pLeft : pRight; } } return pExpr; } /* ** These routines are Walker callbacks used to check expressions to ** see if they are "constant" for some definition of constant. The ** Walker.eCode value determines the type of "constant" we are looking ** for. ** ** These callback routines are used to implement the following: ** ** sqlite3ExprIsConstant() pWalker->eCode==1 ** sqlite3ExprIsConstantNotJoin() pWalker->eCode==2 ** sqlite3ExprIsTableConstant() pWalker->eCode==3 ** sqlite3ExprIsConstantOrFunction() pWalker->eCode==4 or 5 ** ** In all cases, the callbacks set Walker.eCode=0 and abort if the expression ** is found to not be a constant. ** ** The sqlite3ExprIsConstantOrFunction() is used for evaluating DEFAULT ** expressions in a CREATE TABLE statement. The Walker.eCode value is 5 ** when parsing an existing schema out of the sqlite_schema table and 4 ** when processing a new CREATE TABLE statement. A bound parameter raises ** an error for new statements, but is silently converted ** to NULL for existing schemas. This allows sqlite_schema tables that ** contain a bound parameter because they were generated by older versions ** of SQLite to be parsed by newer versions of SQLite without raising a ** malformed schema error. */ static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){ /* If pWalker->eCode is 2 then any term of the expression that comes from ** the ON or USING clauses of a left join disqualifies the expression ** from being considered constant. */ if( pWalker->eCode==2 && ExprHasProperty(pExpr, EP_FromJoin) ){ pWalker->eCode = 0; return WRC_Abort; } switch( pExpr->op ){ /* Consider functions to be constant if all their arguments are constant ** and either pWalker->eCode==4 or 5 or the function has the ** SQLITE_FUNC_CONST flag. */ case TK_FUNCTION: if( (pWalker->eCode>=4 || ExprHasProperty(pExpr,EP_ConstFunc)) && !ExprHasProperty(pExpr, EP_WinFunc) ){ if( pWalker->eCode==5 ) ExprSetProperty(pExpr, EP_FromDDL); return WRC_Continue; }else{ pWalker->eCode = 0; return WRC_Abort; } case TK_ID: /* Convert "true" or "false" in a DEFAULT clause into the ** appropriate TK_TRUEFALSE operator */ if( sqlite3ExprIdToTrueFalse(pExpr) ){ return WRC_Prune; } /* no break */ deliberate_fall_through case TK_COLUMN: case TK_AGG_FUNCTION: case TK_AGG_COLUMN: testcase( pExpr->op==TK_ID ); testcase( pExpr->op==TK_COLUMN ); testcase( pExpr->op==TK_AGG_FUNCTION ); testcase( pExpr->op==TK_AGG_COLUMN ); if( ExprHasProperty(pExpr, EP_FixedCol) && pWalker->eCode!=2 ){ return WRC_Continue; } if( pWalker->eCode==3 && pExpr->iTable==pWalker->u.iCur ){ return WRC_Continue; } /* no break */ deliberate_fall_through case TK_IF_NULL_ROW: case TK_REGISTER: case TK_DOT: testcase( pExpr->op==TK_REGISTER ); testcase( pExpr->op==TK_IF_NULL_ROW ); testcase( pExpr->op==TK_DOT ); pWalker->eCode = 0; return WRC_Abort; case TK_VARIABLE: if( pWalker->eCode==5 ){ /* Silently convert bound parameters that appear inside of CREATE ** statements into a NULL when parsing the CREATE statement text out ** of the sqlite_schema table */ pExpr->op = TK_NULL; }else if( pWalker->eCode==4 ){ /* A bound parameter in a CREATE statement that originates from ** sqlite3_prepare() causes an error */ pWalker->eCode = 0; return WRC_Abort; } /* no break */ deliberate_fall_through default: testcase( pExpr->op==TK_SELECT ); /* sqlite3SelectWalkFail() disallows */ testcase( pExpr->op==TK_EXISTS ); /* sqlite3SelectWalkFail() disallows */ return WRC_Continue; } } static int exprIsConst(Expr *p, int initFlag, int iCur){ Walker w; w.eCode = initFlag; w.xExprCallback = exprNodeIsConstant; w.xSelectCallback = sqlite3SelectWalkFail; #ifdef SQLITE_DEBUG w.xSelectCallback2 = sqlite3SelectWalkAssert2; #endif w.u.iCur = iCur; sqlite3WalkExpr(&w, p); return w.eCode; } /* ** Walk an expression tree. Return non-zero if the expression is constant ** and 0 if it involves variables or function calls. ** ** For the purposes of this function, a double-quoted string (ex: "abc") ** is considered a variable but a single-quoted string (ex: 'abc') is ** a constant. */ SQLITE_PRIVATE int sqlite3ExprIsConstant(Expr *p){ return exprIsConst(p, 1, 0); } /* ** Walk an expression tree. Return non-zero if ** ** (1) the expression is constant, and ** (2) the expression does originate in the ON or USING clause ** of a LEFT JOIN, and ** (3) the expression does not contain any EP_FixedCol TK_COLUMN ** operands created by the constant propagation optimization. ** ** When this routine returns true, it indicates that the expression ** can be added to the pParse->pConstExpr list and evaluated once when ** the prepared statement starts up. See sqlite3ExprCodeRunJustOnce(). */ SQLITE_PRIVATE int sqlite3ExprIsConstantNotJoin(Expr *p){ return exprIsConst(p, 2, 0); } /* ** Walk an expression tree. Return non-zero if the expression is constant ** for any single row of the table with cursor iCur. In other words, the ** expression must not refer to any non-deterministic function nor any ** table other than iCur. */ SQLITE_PRIVATE int sqlite3ExprIsTableConstant(Expr *p, int iCur){ return exprIsConst(p, 3, iCur); } /* ** sqlite3WalkExpr() callback used by sqlite3ExprIsConstantOrGroupBy(). */ static int exprNodeIsConstantOrGroupBy(Walker *pWalker, Expr *pExpr){ ExprList *pGroupBy = pWalker->u.pGroupBy; int i; /* Check if pExpr is identical to any GROUP BY term. If so, consider ** it constant. */ for(i=0; inExpr; i++){ Expr *p = pGroupBy->a[i].pExpr; if( sqlite3ExprCompare(0, pExpr, p, -1)<2 ){ CollSeq *pColl = sqlite3ExprNNCollSeq(pWalker->pParse, p); if( sqlite3IsBinary(pColl) ){ return WRC_Prune; } } } /* Check if pExpr is a sub-select. If so, consider it variable. */ if( ExprHasProperty(pExpr, EP_xIsSelect) ){ pWalker->eCode = 0; return WRC_Abort; } return exprNodeIsConstant(pWalker, pExpr); } /* ** Walk the expression tree passed as the first argument. Return non-zero ** if the expression consists entirely of constants or copies of terms ** in pGroupBy that sort with the BINARY collation sequence. ** ** This routine is used to determine if a term of the HAVING clause can ** be promoted into the WHERE clause. In order for such a promotion to work, ** the value of the HAVING clause term must be the same for all members of ** a "group". The requirement that the GROUP BY term must be BINARY ** assumes that no other collating sequence will have a finer-grained ** grouping than binary. In other words (A=B COLLATE binary) implies ** A=B in every other collating sequence. The requirement that the ** GROUP BY be BINARY is stricter than necessary. It would also work ** to promote HAVING clauses that use the same alternative collating ** sequence as the GROUP BY term, but that is much harder to check, ** alternative collating sequences are uncommon, and this is only an ** optimization, so we take the easy way out and simply require the ** GROUP BY to use the BINARY collating sequence. */ SQLITE_PRIVATE int sqlite3ExprIsConstantOrGroupBy(Parse *pParse, Expr *p, ExprList *pGroupBy){ Walker w; w.eCode = 1; w.xExprCallback = exprNodeIsConstantOrGroupBy; w.xSelectCallback = 0; w.u.pGroupBy = pGroupBy; w.pParse = pParse; sqlite3WalkExpr(&w, p); return w.eCode; } /* ** Walk an expression tree for the DEFAULT field of a column definition ** in a CREATE TABLE statement. Return non-zero if the expression is ** acceptable for use as a DEFAULT. That is to say, return non-zero if ** the expression is constant or a function call with constant arguments. ** Return and 0 if there are any variables. ** ** isInit is true when parsing from sqlite_schema. isInit is false when ** processing a new CREATE TABLE statement. When isInit is true, parameters ** (such as ? or $abc) in the expression are converted into NULL. When ** isInit is false, parameters raise an error. Parameters should not be ** allowed in a CREATE TABLE statement, but some legacy versions of SQLite ** allowed it, so we need to support it when reading sqlite_schema for ** backwards compatibility. ** ** If isInit is true, set EP_FromDDL on every TK_FUNCTION node. ** ** For the purposes of this function, a double-quoted string (ex: "abc") ** is considered a variable but a single-quoted string (ex: 'abc') is ** a constant. */ SQLITE_PRIVATE int sqlite3ExprIsConstantOrFunction(Expr *p, u8 isInit){ assert( isInit==0 || isInit==1 ); return exprIsConst(p, 4+isInit, 0); } #ifdef SQLITE_ENABLE_CURSOR_HINTS /* ** Walk an expression tree. Return 1 if the expression contains a ** subquery of some kind. Return 0 if there are no subqueries. */ SQLITE_PRIVATE int sqlite3ExprContainsSubquery(Expr *p){ Walker w; w.eCode = 1; w.xExprCallback = sqlite3ExprWalkNoop; w.xSelectCallback = sqlite3SelectWalkFail; #ifdef SQLITE_DEBUG w.xSelectCallback2 = sqlite3SelectWalkAssert2; #endif sqlite3WalkExpr(&w, p); return w.eCode==0; } #endif /* ** If the expression p codes a constant integer that is small enough ** to fit in a 32-bit integer, return 1 and put the value of the integer ** in *pValue. If the expression is not an integer or if it is too big ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. */ SQLITE_PRIVATE int sqlite3ExprIsInteger(Expr *p, int *pValue){ int rc = 0; if( NEVER(p==0) ) return 0; /* Used to only happen following on OOM */ /* If an expression is an integer literal that fits in a signed 32-bit ** integer, then the EP_IntValue flag will have already been set */ assert( p->op!=TK_INTEGER || (p->flags & EP_IntValue)!=0 || sqlite3GetInt32(p->u.zToken, &rc)==0 ); if( p->flags & EP_IntValue ){ *pValue = p->u.iValue; return 1; } switch( p->op ){ case TK_UPLUS: { rc = sqlite3ExprIsInteger(p->pLeft, pValue); break; } case TK_UMINUS: { int v; if( sqlite3ExprIsInteger(p->pLeft, &v) ){ assert( v!=(-2147483647-1) ); *pValue = -v; rc = 1; } break; } default: break; } return rc; } /* ** Return FALSE if there is no chance that the expression can be NULL. ** ** If the expression might be NULL or if the expression is too complex ** to tell return TRUE. ** ** This routine is used as an optimization, to skip OP_IsNull opcodes ** when we know that a value cannot be NULL. Hence, a false positive ** (returning TRUE when in fact the expression can never be NULL) might ** be a small performance hit but is otherwise harmless. On the other ** hand, a false negative (returning FALSE when the result could be NULL) ** will likely result in an incorrect answer. So when in doubt, return ** TRUE. */ SQLITE_PRIVATE int sqlite3ExprCanBeNull(const Expr *p){ u8 op; while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } op = p->op; if( op==TK_REGISTER ) op = p->op2; switch( op ){ case TK_INTEGER: case TK_STRING: case TK_FLOAT: case TK_BLOB: return 0; case TK_COLUMN: return ExprHasProperty(p, EP_CanBeNull) || p->y.pTab==0 || /* Reference to column of index on expression */ (p->iColumn>=0 && ALWAYS(p->y.pTab->aCol!=0) /* Defense against OOM problems */ && p->y.pTab->aCol[p->iColumn].notNull==0); default: return 1; } } /* ** Return TRUE if the given expression is a constant which would be ** unchanged by OP_Affinity with the affinity given in the second ** argument. ** ** This routine is used to determine if the OP_Affinity operation ** can be omitted. When in doubt return FALSE. A false negative ** is harmless. A false positive, however, can result in the wrong ** answer. */ SQLITE_PRIVATE int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){ u8 op; int unaryMinus = 0; if( aff==SQLITE_AFF_BLOB ) return 1; while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ if( p->op==TK_UMINUS ) unaryMinus = 1; p = p->pLeft; } op = p->op; if( op==TK_REGISTER ) op = p->op2; switch( op ){ case TK_INTEGER: { return aff>=SQLITE_AFF_NUMERIC; } case TK_FLOAT: { return aff>=SQLITE_AFF_NUMERIC; } case TK_STRING: { return !unaryMinus && aff==SQLITE_AFF_TEXT; } case TK_BLOB: { return !unaryMinus; } case TK_COLUMN: { assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */ return aff>=SQLITE_AFF_NUMERIC && p->iColumn<0; } default: { return 0; } } } /* ** Return TRUE if the given string is a row-id column name. */ SQLITE_PRIVATE int sqlite3IsRowid(const char *z){ if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; if( sqlite3StrICmp(z, "OID")==0 ) return 1; return 0; } /* ** pX is the RHS of an IN operator. If pX is a SELECT statement ** that can be simplified to a direct table access, then return ** a pointer to the SELECT statement. If pX is not a SELECT statement, ** or if the SELECT statement needs to be manifested into a transient ** table, then return NULL. */ #ifndef SQLITE_OMIT_SUBQUERY static Select *isCandidateForInOpt(Expr *pX){ Select *p; SrcList *pSrc; ExprList *pEList; Table *pTab; int i; if( !ExprHasProperty(pX, EP_xIsSelect) ) return 0; /* Not a subquery */ if( ExprHasProperty(pX, EP_VarSelect) ) return 0; /* Correlated subq */ p = pX->x.pSelect; if( p->pPrior ) return 0; /* Not a compound SELECT */ if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); return 0; /* No DISTINCT keyword and no aggregate functions */ } assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ if( p->pLimit ) return 0; /* Has no LIMIT clause */ if( p->pWhere ) return 0; /* Has no WHERE clause */ pSrc = p->pSrc; assert( pSrc!=0 ); if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */ if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */ pTab = pSrc->a[0].pTab; assert( pTab!=0 ); assert( pTab->pSelect==0 ); /* FROM clause is not a view */ if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */ pEList = p->pEList; assert( pEList!=0 ); /* All SELECT results must be columns. */ for(i=0; inExpr; i++){ Expr *pRes = pEList->a[i].pExpr; if( pRes->op!=TK_COLUMN ) return 0; assert( pRes->iTable==pSrc->a[0].iCursor ); /* Not a correlated subquery */ } return p; } #endif /* SQLITE_OMIT_SUBQUERY */ #ifndef SQLITE_OMIT_SUBQUERY /* ** Generate code that checks the left-most column of index table iCur to see if ** it contains any NULL entries. Cause the register at regHasNull to be set ** to a non-NULL value if iCur contains no NULLs. Cause register regHasNull ** to be set to NULL if iCur contains one or more NULL values. */ static void sqlite3SetHasNullFlag(Vdbe *v, int iCur, int regHasNull){ int addr1; sqlite3VdbeAddOp2(v, OP_Integer, 0, regHasNull); addr1 = sqlite3VdbeAddOp1(v, OP_Rewind, iCur); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_Column, iCur, 0, regHasNull); sqlite3VdbeChangeP5(v, OPFLAG_TYPEOFARG); VdbeComment((v, "first_entry_in(%d)", iCur)); sqlite3VdbeJumpHere(v, addr1); } #endif #ifndef SQLITE_OMIT_SUBQUERY /* ** The argument is an IN operator with a list (not a subquery) on the ** right-hand side. Return TRUE if that list is constant. */ static int sqlite3InRhsIsConstant(Expr *pIn){ Expr *pLHS; int res; assert( !ExprHasProperty(pIn, EP_xIsSelect) ); pLHS = pIn->pLeft; pIn->pLeft = 0; res = sqlite3ExprIsConstant(pIn); pIn->pLeft = pLHS; return res; } #endif /* ** This function is used by the implementation of the IN (...) operator. ** The pX parameter is the expression on the RHS of the IN operator, which ** might be either a list of expressions or a subquery. ** ** The job of this routine is to find or create a b-tree object that can ** be used either to test for membership in the RHS set or to iterate through ** all members of the RHS set, skipping duplicates. ** ** A cursor is opened on the b-tree object that is the RHS of the IN operator ** and pX->iTable is set to the index of that cursor. ** ** The returned value of this function indicates the b-tree type, as follows: ** ** IN_INDEX_ROWID - The cursor was opened on a database table. ** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index. ** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index. ** IN_INDEX_EPH - The cursor was opened on a specially created and ** populated epheremal table. ** IN_INDEX_NOOP - No cursor was allocated. The IN operator must be ** implemented as a sequence of comparisons. ** ** An existing b-tree might be used if the RHS expression pX is a simple ** subquery such as: ** ** SELECT , ... FROM ** ** If the RHS of the IN operator is a list or a more complex subquery, then ** an ephemeral table might need to be generated from the RHS and then ** pX->iTable made to point to the ephemeral table instead of an ** existing table. ** ** The inFlags parameter must contain, at a minimum, one of the bits ** IN_INDEX_MEMBERSHIP or IN_INDEX_LOOP but not both. If inFlags contains ** IN_INDEX_MEMBERSHIP, then the generated table will be used for a fast ** membership test. When the IN_INDEX_LOOP bit is set, the IN index will ** be used to loop over all values of the RHS of the IN operator. ** ** When IN_INDEX_LOOP is used (and the b-tree will be used to iterate ** through the set members) then the b-tree must not contain duplicates. ** An epheremal table will be created unless the selected columns are guaranteed ** to be unique - either because it is an INTEGER PRIMARY KEY or due to ** a UNIQUE constraint or index. ** ** When IN_INDEX_MEMBERSHIP is used (and the b-tree will be used ** for fast set membership tests) then an epheremal table must ** be used unless is a single INTEGER PRIMARY KEY column or an ** index can be found with the specified as its left-most. ** ** If the IN_INDEX_NOOP_OK and IN_INDEX_MEMBERSHIP are both set and ** if the RHS of the IN operator is a list (not a subquery) then this ** routine might decide that creating an ephemeral b-tree for membership ** testing is too expensive and return IN_INDEX_NOOP. In that case, the ** calling routine should implement the IN operator using a sequence ** of Eq or Ne comparison operations. ** ** When the b-tree is being used for membership tests, the calling function ** might need to know whether or not the RHS side of the IN operator ** contains a NULL. If prRhsHasNull is not a NULL pointer and ** if there is any chance that the (...) might contain a NULL value at ** runtime, then a register is allocated and the register number written ** to *prRhsHasNull. If there is no chance that the (...) contains a ** NULL value, then *prRhsHasNull is left unchanged. ** ** If a register is allocated and its location stored in *prRhsHasNull, then ** the value in that register will be NULL if the b-tree contains one or more ** NULL values, and it will be some non-NULL value if the b-tree contains no ** NULL values. ** ** If the aiMap parameter is not NULL, it must point to an array containing ** one element for each column returned by the SELECT statement on the RHS ** of the IN(...) operator. The i'th entry of the array is populated with the ** offset of the index column that matches the i'th column returned by the ** SELECT. For example, if the expression and selected index are: ** ** (?,?,?) IN (SELECT a, b, c FROM t1) ** CREATE INDEX i1 ON t1(b, c, a); ** ** then aiMap[] is populated with {2, 0, 1}. */ #ifndef SQLITE_OMIT_SUBQUERY SQLITE_PRIVATE int sqlite3FindInIndex( Parse *pParse, /* Parsing context */ Expr *pX, /* The IN expression */ u32 inFlags, /* IN_INDEX_LOOP, _MEMBERSHIP, and/or _NOOP_OK */ int *prRhsHasNull, /* Register holding NULL status. See notes */ int *aiMap, /* Mapping from Index fields to RHS fields */ int *piTab /* OUT: index to use */ ){ Select *p; /* SELECT to the right of IN operator */ int eType = 0; /* Type of RHS table. IN_INDEX_* */ int iTab = pParse->nTab++; /* Cursor of the RHS table */ int mustBeUnique; /* True if RHS must be unique */ Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ assert( pX->op==TK_IN ); mustBeUnique = (inFlags & IN_INDEX_LOOP)!=0; /* If the RHS of this IN(...) operator is a SELECT, and if it matters ** whether or not the SELECT result contains NULL values, check whether ** or not NULL is actually possible (it may not be, for example, due ** to NOT NULL constraints in the schema). If no NULL values are possible, ** set prRhsHasNull to 0 before continuing. */ if( prRhsHasNull && (pX->flags & EP_xIsSelect) ){ int i; ExprList *pEList = pX->x.pSelect->pEList; for(i=0; inExpr; i++){ if( sqlite3ExprCanBeNull(pEList->a[i].pExpr) ) break; } if( i==pEList->nExpr ){ prRhsHasNull = 0; } } /* Check to see if an existing table or index can be used to ** satisfy the query. This is preferable to generating a new ** ephemeral table. */ if( pParse->nErr==0 && (p = isCandidateForInOpt(pX))!=0 ){ sqlite3 *db = pParse->db; /* Database connection */ Table *pTab; /* Table
    . */ int iDb; /* Database idx for pTab */ ExprList *pEList = p->pEList; int nExpr = pEList->nExpr; assert( p->pEList!=0 ); /* Because of isCandidateForInOpt(p) */ assert( p->pEList->a[0].pExpr!=0 ); /* Because of isCandidateForInOpt(p) */ assert( p->pSrc!=0 ); /* Because of isCandidateForInOpt(p) */ pTab = p->pSrc->a[0].pTab; /* Code an OP_Transaction and OP_TableLock for
    . */ iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDb>=0 && iDbtnum, 0, pTab->zName); assert(v); /* sqlite3GetVdbe() has always been previously called */ if( nExpr==1 && pEList->a[0].pExpr->iColumn<0 ){ /* The "x IN (SELECT rowid FROM table)" case */ int iAddr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); eType = IN_INDEX_ROWID; ExplainQueryPlan((pParse, 0, "USING ROWID SEARCH ON TABLE %s FOR IN-OPERATOR",pTab->zName)); sqlite3VdbeJumpHere(v, iAddr); }else{ Index *pIdx; /* Iterator variable */ int affinity_ok = 1; int i; /* Check that the affinity that will be used to perform each ** comparison is the same as the affinity of each column in table ** on the RHS of the IN operator. If it not, it is not possible to ** use any index of the RHS table. */ for(i=0; ipLeft, i); int iCol = pEList->a[i].pExpr->iColumn; char idxaff = sqlite3TableColumnAffinity(pTab,iCol); /* RHS table */ char cmpaff = sqlite3CompareAffinity(pLhs, idxaff); testcase( cmpaff==SQLITE_AFF_BLOB ); testcase( cmpaff==SQLITE_AFF_TEXT ); switch( cmpaff ){ case SQLITE_AFF_BLOB: break; case SQLITE_AFF_TEXT: /* sqlite3CompareAffinity() only returns TEXT if one side or the ** other has no affinity and the other side is TEXT. Hence, ** the only way for cmpaff to be TEXT is for idxaff to be TEXT ** and for the term on the LHS of the IN to have no affinity. */ assert( idxaff==SQLITE_AFF_TEXT ); break; default: affinity_ok = sqlite3IsNumericAffinity(idxaff); } } if( affinity_ok ){ /* Search for an existing index that will work for this IN operator */ for(pIdx=pTab->pIndex; pIdx && eType==0; pIdx=pIdx->pNext){ Bitmask colUsed; /* Columns of the index used */ Bitmask mCol; /* Mask for the current column */ if( pIdx->nColumnpPartIdxWhere!=0 ) continue; /* Maximum nColumn is BMS-2, not BMS-1, so that we can compute ** BITMASK(nExpr) without overflowing */ testcase( pIdx->nColumn==BMS-2 ); testcase( pIdx->nColumn==BMS-1 ); if( pIdx->nColumn>=BMS-1 ) continue; if( mustBeUnique ){ if( pIdx->nKeyCol>nExpr ||(pIdx->nColumn>nExpr && !IsUniqueIndex(pIdx)) ){ continue; /* This index is not unique over the IN RHS columns */ } } colUsed = 0; /* Columns of index used so far */ for(i=0; ipLeft, i); Expr *pRhs = pEList->a[i].pExpr; CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pLhs, pRhs); int j; assert( pReq!=0 || pRhs->iColumn==XN_ROWID || pParse->nErr ); for(j=0; jaiColumn[j]!=pRhs->iColumn ) continue; assert( pIdx->azColl[j] ); if( pReq!=0 && sqlite3StrICmp(pReq->zName, pIdx->azColl[j])!=0 ){ continue; } break; } if( j==nExpr ) break; mCol = MASKBIT(j); if( mCol & colUsed ) break; /* Each column used only once */ colUsed |= mCol; if( aiMap ) aiMap[i] = j; } assert( i==nExpr || colUsed!=(MASKBIT(nExpr)-1) ); if( colUsed==(MASKBIT(nExpr)-1) ){ /* If we reach this point, that means the index pIdx is usable */ int iAddr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); ExplainQueryPlan((pParse, 0, "USING INDEX %s FOR IN-OPERATOR",pIdx->zName)); sqlite3VdbeAddOp3(v, OP_OpenRead, iTab, pIdx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); VdbeComment((v, "%s", pIdx->zName)); assert( IN_INDEX_INDEX_DESC == IN_INDEX_INDEX_ASC+1 ); eType = IN_INDEX_INDEX_ASC + pIdx->aSortOrder[0]; if( prRhsHasNull ){ #ifdef SQLITE_ENABLE_COLUMN_USED_MASK i64 mask = (1<nMem; if( nExpr==1 ){ sqlite3SetHasNullFlag(v, iTab, *prRhsHasNull); } } sqlite3VdbeJumpHere(v, iAddr); } } /* End loop over indexes */ } /* End if( affinity_ok ) */ } /* End if not an rowid index */ } /* End attempt to optimize using an index */ /* If no preexisting index is available for the IN clause ** and IN_INDEX_NOOP is an allowed reply ** and the RHS of the IN operator is a list, not a subquery ** and the RHS is not constant or has two or fewer terms, ** then it is not worth creating an ephemeral table to evaluate ** the IN operator so return IN_INDEX_NOOP. */ if( eType==0 && (inFlags & IN_INDEX_NOOP_OK) && !ExprHasProperty(pX, EP_xIsSelect) && (!sqlite3InRhsIsConstant(pX) || pX->x.pList->nExpr<=2) ){ eType = IN_INDEX_NOOP; } if( eType==0 ){ /* Could not find an existing table or index to use as the RHS b-tree. ** We will have to generate an ephemeral table to do the job. */ u32 savedNQueryLoop = pParse->nQueryLoop; int rMayHaveNull = 0; eType = IN_INDEX_EPH; if( inFlags & IN_INDEX_LOOP ){ pParse->nQueryLoop = 0; }else if( prRhsHasNull ){ *prRhsHasNull = rMayHaveNull = ++pParse->nMem; } assert( pX->op==TK_IN ); sqlite3CodeRhsOfIN(pParse, pX, iTab); if( rMayHaveNull ){ sqlite3SetHasNullFlag(v, iTab, rMayHaveNull); } pParse->nQueryLoop = savedNQueryLoop; } if( aiMap && eType!=IN_INDEX_INDEX_ASC && eType!=IN_INDEX_INDEX_DESC ){ int i, n; n = sqlite3ExprVectorSize(pX->pLeft); for(i=0; ipLeft; int nVal = sqlite3ExprVectorSize(pLeft); Select *pSelect = (pExpr->flags & EP_xIsSelect) ? pExpr->x.pSelect : 0; char *zRet; assert( pExpr->op==TK_IN ); zRet = sqlite3DbMallocRaw(pParse->db, nVal+1); if( zRet ){ int i; for(i=0; ipEList->a[i].pExpr, a); }else{ zRet[i] = a; } } zRet[nVal] = '\0'; } return zRet; } #endif #ifndef SQLITE_OMIT_SUBQUERY /* ** Load the Parse object passed as the first argument with an error ** message of the form: ** ** "sub-select returns N columns - expected M" */ SQLITE_PRIVATE void sqlite3SubselectError(Parse *pParse, int nActual, int nExpect){ if( pParse->nErr==0 ){ const char *zFmt = "sub-select returns %d columns - expected %d"; sqlite3ErrorMsg(pParse, zFmt, nActual, nExpect); } } #endif /* ** Expression pExpr is a vector that has been used in a context where ** it is not permitted. If pExpr is a sub-select vector, this routine ** loads the Parse object with a message of the form: ** ** "sub-select returns N columns - expected 1" ** ** Or, if it is a regular scalar vector: ** ** "row value misused" */ SQLITE_PRIVATE void sqlite3VectorErrorMsg(Parse *pParse, Expr *pExpr){ #ifndef SQLITE_OMIT_SUBQUERY if( pExpr->flags & EP_xIsSelect ){ sqlite3SubselectError(pParse, pExpr->x.pSelect->pEList->nExpr, 1); }else #endif { sqlite3ErrorMsg(pParse, "row value misused"); } } #ifndef SQLITE_OMIT_SUBQUERY /* ** Generate code that will construct an ephemeral table containing all terms ** in the RHS of an IN operator. The IN operator can be in either of two ** forms: ** ** x IN (4,5,11) -- IN operator with list on right-hand side ** x IN (SELECT a FROM b) -- IN operator with subquery on the right ** ** The pExpr parameter is the IN operator. The cursor number for the ** constructed ephermeral table is returned. The first time the ephemeral ** table is computed, the cursor number is also stored in pExpr->iTable, ** however the cursor number returned might not be the same, as it might ** have been duplicated using OP_OpenDup. ** ** If the LHS expression ("x" in the examples) is a column value, or ** the SELECT statement returns a column value, then the affinity of that ** column is used to build the index keys. If both 'x' and the ** SELECT... statement are columns, then numeric affinity is used ** if either column has NUMERIC or INTEGER affinity. If neither ** 'x' nor the SELECT... statement are columns, then numeric affinity ** is used. */ SQLITE_PRIVATE void sqlite3CodeRhsOfIN( Parse *pParse, /* Parsing context */ Expr *pExpr, /* The IN operator */ int iTab /* Use this cursor number */ ){ int addrOnce = 0; /* Address of the OP_Once instruction at top */ int addr; /* Address of OP_OpenEphemeral instruction */ Expr *pLeft; /* the LHS of the IN operator */ KeyInfo *pKeyInfo = 0; /* Key information */ int nVal; /* Size of vector pLeft */ Vdbe *v; /* The prepared statement under construction */ v = pParse->pVdbe; assert( v!=0 ); /* The evaluation of the IN must be repeated every time it ** is encountered if any of the following is true: ** ** * The right-hand side is a correlated subquery ** * The right-hand side is an expression list containing variables ** * We are inside a trigger ** ** If all of the above are false, then we can compute the RHS just once ** and reuse it many names. */ if( !ExprHasProperty(pExpr, EP_VarSelect) && pParse->iSelfTab==0 ){ /* Reuse of the RHS is allowed */ /* If this routine has already been coded, but the previous code ** might not have been invoked yet, so invoke it now as a subroutine. */ if( ExprHasProperty(pExpr, EP_Subrtn) ){ addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); if( ExprHasProperty(pExpr, EP_xIsSelect) ){ ExplainQueryPlan((pParse, 0, "REUSE LIST SUBQUERY %d", pExpr->x.pSelect->selId)); } sqlite3VdbeAddOp2(v, OP_Gosub, pExpr->y.sub.regReturn, pExpr->y.sub.iAddr); sqlite3VdbeAddOp2(v, OP_OpenDup, iTab, pExpr->iTable); sqlite3VdbeJumpHere(v, addrOnce); return; } /* Begin coding the subroutine */ ExprSetProperty(pExpr, EP_Subrtn); assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); pExpr->y.sub.regReturn = ++pParse->nMem; pExpr->y.sub.iAddr = sqlite3VdbeAddOp2(v, OP_Integer, 0, pExpr->y.sub.regReturn) + 1; VdbeComment((v, "return address")); addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); } /* Check to see if this is a vector IN operator */ pLeft = pExpr->pLeft; nVal = sqlite3ExprVectorSize(pLeft); /* Construct the ephemeral table that will contain the content of ** RHS of the IN operator. */ pExpr->iTable = iTab; addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, nVal); #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS if( ExprHasProperty(pExpr, EP_xIsSelect) ){ VdbeComment((v, "Result of SELECT %u", pExpr->x.pSelect->selId)); }else{ VdbeComment((v, "RHS of IN operator")); } #endif pKeyInfo = sqlite3KeyInfoAlloc(pParse->db, nVal, 1); if( ExprHasProperty(pExpr, EP_xIsSelect) ){ /* Case 1: expr IN (SELECT ...) ** ** Generate code to write the results of the select into the temporary ** table allocated and opened above. */ Select *pSelect = pExpr->x.pSelect; ExprList *pEList = pSelect->pEList; ExplainQueryPlan((pParse, 1, "%sLIST SUBQUERY %d", addrOnce?"":"CORRELATED ", pSelect->selId )); /* If the LHS and RHS of the IN operator do not match, that ** error will have been caught long before we reach this point. */ if( ALWAYS(pEList->nExpr==nVal) ){ SelectDest dest; int i; sqlite3SelectDestInit(&dest, SRT_Set, iTab); dest.zAffSdst = exprINAffinity(pParse, pExpr); pSelect->iLimit = 0; testcase( pSelect->selFlags & SF_Distinct ); testcase( pKeyInfo==0 ); /* Caused by OOM in sqlite3KeyInfoAlloc() */ if( sqlite3Select(pParse, pSelect, &dest) ){ sqlite3DbFree(pParse->db, dest.zAffSdst); sqlite3KeyInfoUnref(pKeyInfo); return; } sqlite3DbFree(pParse->db, dest.zAffSdst); assert( pKeyInfo!=0 ); /* OOM will cause exit after sqlite3Select() */ assert( pEList!=0 ); assert( pEList->nExpr>0 ); assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); for(i=0; iaColl[i] = sqlite3BinaryCompareCollSeq( pParse, p, pEList->a[i].pExpr ); } } }else if( ALWAYS(pExpr->x.pList!=0) ){ /* Case 2: expr IN (exprlist) ** ** For each expression, build an index key from the evaluation and ** store it in the temporary table. If is a column, then use ** that columns affinity when building index keys. If is not ** a column, use numeric affinity. */ char affinity; /* Affinity of the LHS of the IN */ int i; ExprList *pList = pExpr->x.pList; struct ExprList_item *pItem; int r1, r2; affinity = sqlite3ExprAffinity(pLeft); if( affinity<=SQLITE_AFF_NONE ){ affinity = SQLITE_AFF_BLOB; }else if( affinity==SQLITE_AFF_REAL ){ affinity = SQLITE_AFF_NUMERIC; } if( pKeyInfo ){ assert( sqlite3KeyInfoIsWriteable(pKeyInfo) ); pKeyInfo->aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft); } /* Loop through each expression in . */ r1 = sqlite3GetTempReg(pParse); r2 = sqlite3GetTempReg(pParse); for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){ Expr *pE2 = pItem->pExpr; /* If the expression is not constant then we will need to ** disable the test that was generated above that makes sure ** this code only executes once. Because for a non-constant ** expression we need to rerun this code each time. */ if( addrOnce && !sqlite3ExprIsConstant(pE2) ){ sqlite3VdbeChangeToNoop(v, addrOnce); ExprClearProperty(pExpr, EP_Subrtn); addrOnce = 0; } /* Evaluate the expression and insert it into the temp table */ sqlite3ExprCode(pParse, pE2, r1); sqlite3VdbeAddOp4(v, OP_MakeRecord, r1, 1, r2, &affinity, 1); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iTab, r2, r1, 1); } sqlite3ReleaseTempReg(pParse, r1); sqlite3ReleaseTempReg(pParse, r2); } if( pKeyInfo ){ sqlite3VdbeChangeP4(v, addr, (void *)pKeyInfo, P4_KEYINFO); } if( addrOnce ){ sqlite3VdbeJumpHere(v, addrOnce); /* Subroutine return */ sqlite3VdbeAddOp1(v, OP_Return, pExpr->y.sub.regReturn); sqlite3VdbeChangeP1(v, pExpr->y.sub.iAddr-1, sqlite3VdbeCurrentAddr(v)-1); sqlite3ClearTempRegCache(pParse); } } #endif /* SQLITE_OMIT_SUBQUERY */ /* ** Generate code for scalar subqueries used as a subquery expression ** or EXISTS operator: ** ** (SELECT a FROM b) -- subquery ** EXISTS (SELECT a FROM b) -- EXISTS subquery ** ** The pExpr parameter is the SELECT or EXISTS operator to be coded. ** ** Return the register that holds the result. For a multi-column SELECT, ** the result is stored in a contiguous array of registers and the ** return value is the register of the left-most result column. ** Return 0 if an error occurs. */ #ifndef SQLITE_OMIT_SUBQUERY SQLITE_PRIVATE int sqlite3CodeSubselect(Parse *pParse, Expr *pExpr){ int addrOnce = 0; /* Address of OP_Once at top of subroutine */ int rReg = 0; /* Register storing resulting */ Select *pSel; /* SELECT statement to encode */ SelectDest dest; /* How to deal with SELECT result */ int nReg; /* Registers to allocate */ Expr *pLimit; /* New limit expression */ Vdbe *v = pParse->pVdbe; assert( v!=0 ); testcase( pExpr->op==TK_EXISTS ); testcase( pExpr->op==TK_SELECT ); assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT ); assert( ExprHasProperty(pExpr, EP_xIsSelect) ); pSel = pExpr->x.pSelect; /* The evaluation of the EXISTS/SELECT must be repeated every time it ** is encountered if any of the following is true: ** ** * The right-hand side is a correlated subquery ** * The right-hand side is an expression list containing variables ** * We are inside a trigger ** ** If all of the above are false, then we can run this code just once ** save the results, and reuse the same result on subsequent invocations. */ if( !ExprHasProperty(pExpr, EP_VarSelect) ){ /* If this routine has already been coded, then invoke it as a ** subroutine. */ if( ExprHasProperty(pExpr, EP_Subrtn) ){ ExplainQueryPlan((pParse, 0, "REUSE SUBQUERY %d", pSel->selId)); sqlite3VdbeAddOp2(v, OP_Gosub, pExpr->y.sub.regReturn, pExpr->y.sub.iAddr); return pExpr->iTable; } /* Begin coding the subroutine */ ExprSetProperty(pExpr, EP_Subrtn); pExpr->y.sub.regReturn = ++pParse->nMem; pExpr->y.sub.iAddr = sqlite3VdbeAddOp2(v, OP_Integer, 0, pExpr->y.sub.regReturn) + 1; VdbeComment((v, "return address")); addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); } /* For a SELECT, generate code to put the values for all columns of ** the first row into an array of registers and return the index of ** the first register. ** ** If this is an EXISTS, write an integer 0 (not exists) or 1 (exists) ** into a register and return that register number. ** ** In both cases, the query is augmented with "LIMIT 1". Any ** preexisting limit is discarded in place of the new LIMIT 1. */ ExplainQueryPlan((pParse, 1, "%sSCALAR SUBQUERY %d", addrOnce?"":"CORRELATED ", pSel->selId)); nReg = pExpr->op==TK_SELECT ? pSel->pEList->nExpr : 1; sqlite3SelectDestInit(&dest, 0, pParse->nMem+1); pParse->nMem += nReg; if( pExpr->op==TK_SELECT ){ dest.eDest = SRT_Mem; dest.iSdst = dest.iSDParm; dest.nSdst = nReg; sqlite3VdbeAddOp3(v, OP_Null, 0, dest.iSDParm, dest.iSDParm+nReg-1); VdbeComment((v, "Init subquery result")); }else{ dest.eDest = SRT_Exists; sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iSDParm); VdbeComment((v, "Init EXISTS result")); } if( pSel->pLimit ){ /* The subquery already has a limit. If the pre-existing limit is X ** then make the new limit X<>0 so that the new limit is either 1 or 0 */ sqlite3 *db = pParse->db; pLimit = sqlite3Expr(db, TK_INTEGER, "0"); if( pLimit ){ pLimit->affExpr = SQLITE_AFF_NUMERIC; pLimit = sqlite3PExpr(pParse, TK_NE, sqlite3ExprDup(db, pSel->pLimit->pLeft, 0), pLimit); } sqlite3ExprDelete(db, pSel->pLimit->pLeft); pSel->pLimit->pLeft = pLimit; }else{ /* If there is no pre-existing limit add a limit of 1 */ pLimit = sqlite3Expr(pParse->db, TK_INTEGER, "1"); pSel->pLimit = sqlite3PExpr(pParse, TK_LIMIT, pLimit, 0); } pSel->iLimit = 0; if( sqlite3Select(pParse, pSel, &dest) ){ return 0; } pExpr->iTable = rReg = dest.iSDParm; ExprSetVVAProperty(pExpr, EP_NoReduce); if( addrOnce ){ sqlite3VdbeJumpHere(v, addrOnce); /* Subroutine return */ sqlite3VdbeAddOp1(v, OP_Return, pExpr->y.sub.regReturn); sqlite3VdbeChangeP1(v, pExpr->y.sub.iAddr-1, sqlite3VdbeCurrentAddr(v)-1); sqlite3ClearTempRegCache(pParse); } return rReg; } #endif /* SQLITE_OMIT_SUBQUERY */ #ifndef SQLITE_OMIT_SUBQUERY /* ** Expr pIn is an IN(...) expression. This function checks that the ** sub-select on the RHS of the IN() operator has the same number of ** columns as the vector on the LHS. Or, if the RHS of the IN() is not ** a sub-query, that the LHS is a vector of size 1. */ SQLITE_PRIVATE int sqlite3ExprCheckIN(Parse *pParse, Expr *pIn){ int nVector = sqlite3ExprVectorSize(pIn->pLeft); if( (pIn->flags & EP_xIsSelect) ){ if( nVector!=pIn->x.pSelect->pEList->nExpr ){ sqlite3SubselectError(pParse, pIn->x.pSelect->pEList->nExpr, nVector); return 1; } }else if( nVector!=1 ){ sqlite3VectorErrorMsg(pParse, pIn->pLeft); return 1; } return 0; } #endif #ifndef SQLITE_OMIT_SUBQUERY /* ** Generate code for an IN expression. ** ** x IN (SELECT ...) ** x IN (value, value, ...) ** ** The left-hand side (LHS) is a scalar or vector expression. The ** right-hand side (RHS) is an array of zero or more scalar values, or a ** subquery. If the RHS is a subquery, the number of result columns must ** match the number of columns in the vector on the LHS. If the RHS is ** a list of values, the LHS must be a scalar. ** ** The IN operator is true if the LHS value is contained within the RHS. ** The result is false if the LHS is definitely not in the RHS. The ** result is NULL if the presence of the LHS in the RHS cannot be ** determined due to NULLs. ** ** This routine generates code that jumps to destIfFalse if the LHS is not ** contained within the RHS. If due to NULLs we cannot determine if the LHS ** is contained in the RHS then jump to destIfNull. If the LHS is contained ** within the RHS then fall through. ** ** See the separate in-operator.md documentation file in the canonical ** SQLite source tree for additional information. */ static void sqlite3ExprCodeIN( Parse *pParse, /* Parsing and code generating context */ Expr *pExpr, /* The IN expression */ int destIfFalse, /* Jump here if LHS is not contained in the RHS */ int destIfNull /* Jump here if the results are unknown due to NULLs */ ){ int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */ int eType; /* Type of the RHS */ int rLhs; /* Register(s) holding the LHS values */ int rLhsOrig; /* LHS values prior to reordering by aiMap[] */ Vdbe *v; /* Statement under construction */ int *aiMap = 0; /* Map from vector field to index column */ char *zAff = 0; /* Affinity string for comparisons */ int nVector; /* Size of vectors for this IN operator */ int iDummy; /* Dummy parameter to exprCodeVector() */ Expr *pLeft; /* The LHS of the IN operator */ int i; /* loop counter */ int destStep2; /* Where to jump when NULLs seen in step 2 */ int destStep6 = 0; /* Start of code for Step 6 */ int addrTruthOp; /* Address of opcode that determines the IN is true */ int destNotNull; /* Jump here if a comparison is not true in step 6 */ int addrTop; /* Top of the step-6 loop */ int iTab = 0; /* Index to use */ u8 okConstFactor = pParse->okConstFactor; assert( !ExprHasVVAProperty(pExpr,EP_Immutable) ); pLeft = pExpr->pLeft; if( sqlite3ExprCheckIN(pParse, pExpr) ) return; zAff = exprINAffinity(pParse, pExpr); nVector = sqlite3ExprVectorSize(pExpr->pLeft); aiMap = (int*)sqlite3DbMallocZero( pParse->db, nVector*(sizeof(int) + sizeof(char)) + 1 ); if( pParse->db->mallocFailed ) goto sqlite3ExprCodeIN_oom_error; /* Attempt to compute the RHS. After this step, if anything other than ** IN_INDEX_NOOP is returned, the table opened with cursor iTab ** contains the values that make up the RHS. If IN_INDEX_NOOP is returned, ** the RHS has not yet been coded. */ v = pParse->pVdbe; assert( v!=0 ); /* OOM detected prior to this routine */ VdbeNoopComment((v, "begin IN expr")); eType = sqlite3FindInIndex(pParse, pExpr, IN_INDEX_MEMBERSHIP | IN_INDEX_NOOP_OK, destIfFalse==destIfNull ? 0 : &rRhsHasNull, aiMap, &iTab); assert( pParse->nErr || nVector==1 || eType==IN_INDEX_EPH || eType==IN_INDEX_INDEX_ASC || eType==IN_INDEX_INDEX_DESC ); #ifdef SQLITE_DEBUG /* Confirm that aiMap[] contains nVector integer values between 0 and ** nVector-1. */ for(i=0; i from " IN (...)". If the LHS is a ** vector, then it is stored in an array of nVector registers starting ** at r1. ** ** sqlite3FindInIndex() might have reordered the fields of the LHS vector ** so that the fields are in the same order as an existing index. The ** aiMap[] array contains a mapping from the original LHS field order to ** the field order that matches the RHS index. ** ** Avoid factoring the LHS of the IN(...) expression out of the loop, ** even if it is constant, as OP_Affinity may be used on the register ** by code generated below. */ assert( pParse->okConstFactor==okConstFactor ); pParse->okConstFactor = 0; rLhsOrig = exprCodeVector(pParse, pLeft, &iDummy); pParse->okConstFactor = okConstFactor; for(i=0; ix.pList; CollSeq *pColl = sqlite3ExprCollSeq(pParse, pExpr->pLeft); int labelOk = sqlite3VdbeMakeLabel(pParse); int r2, regToFree; int regCkNull = 0; int ii; assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); if( destIfNull!=destIfFalse ){ regCkNull = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_BitAnd, rLhs, rLhs, regCkNull); } for(ii=0; iinExpr; ii++){ r2 = sqlite3ExprCodeTemp(pParse, pList->a[ii].pExpr, ®ToFree); if( regCkNull && sqlite3ExprCanBeNull(pList->a[ii].pExpr) ){ sqlite3VdbeAddOp3(v, OP_BitAnd, regCkNull, r2, regCkNull); } sqlite3ReleaseTempReg(pParse, regToFree); if( iinExpr-1 || destIfNull!=destIfFalse ){ int op = rLhs!=r2 ? OP_Eq : OP_NotNull; sqlite3VdbeAddOp4(v, op, rLhs, labelOk, r2, (void*)pColl, P4_COLLSEQ); VdbeCoverageIf(v, iinExpr-1 && op==OP_Eq); VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_Eq); VdbeCoverageIf(v, iinExpr-1 && op==OP_NotNull); VdbeCoverageIf(v, ii==pList->nExpr-1 && op==OP_NotNull); sqlite3VdbeChangeP5(v, zAff[0]); }else{ int op = rLhs!=r2 ? OP_Ne : OP_IsNull; assert( destIfNull==destIfFalse ); sqlite3VdbeAddOp4(v, op, rLhs, destIfFalse, r2, (void*)pColl, P4_COLLSEQ); VdbeCoverageIf(v, op==OP_Ne); VdbeCoverageIf(v, op==OP_IsNull); sqlite3VdbeChangeP5(v, zAff[0] | SQLITE_JUMPIFNULL); } } if( regCkNull ){ sqlite3VdbeAddOp2(v, OP_IsNull, regCkNull, destIfNull); VdbeCoverage(v); sqlite3VdbeGoto(v, destIfFalse); } sqlite3VdbeResolveLabel(v, labelOk); sqlite3ReleaseTempReg(pParse, regCkNull); goto sqlite3ExprCodeIN_finished; } /* Step 2: Check to see if the LHS contains any NULL columns. If the ** LHS does contain NULLs then the result must be either FALSE or NULL. ** We will then skip the binary search of the RHS. */ if( destIfNull==destIfFalse ){ destStep2 = destIfFalse; }else{ destStep2 = destStep6 = sqlite3VdbeMakeLabel(pParse); } if( pParse->nErr ) goto sqlite3ExprCodeIN_finished; for(i=0; ipLeft, i); if( sqlite3ExprCanBeNull(p) ){ sqlite3VdbeAddOp2(v, OP_IsNull, rLhs+i, destStep2); VdbeCoverage(v); } } /* Step 3. The LHS is now known to be non-NULL. Do the binary search ** of the RHS using the LHS as a probe. If found, the result is ** true. */ if( eType==IN_INDEX_ROWID ){ /* In this case, the RHS is the ROWID of table b-tree and so we also ** know that the RHS is non-NULL. Hence, we combine steps 3 and 4 ** into a single opcode. */ sqlite3VdbeAddOp3(v, OP_SeekRowid, iTab, destIfFalse, rLhs); VdbeCoverage(v); addrTruthOp = sqlite3VdbeAddOp0(v, OP_Goto); /* Return True */ }else{ sqlite3VdbeAddOp4(v, OP_Affinity, rLhs, nVector, 0, zAff, nVector); if( destIfFalse==destIfNull ){ /* Combine Step 3 and Step 5 into a single opcode */ sqlite3VdbeAddOp4Int(v, OP_NotFound, iTab, destIfFalse, rLhs, nVector); VdbeCoverage(v); goto sqlite3ExprCodeIN_finished; } /* Ordinary Step 3, for the case where FALSE and NULL are distinct */ addrTruthOp = sqlite3VdbeAddOp4Int(v, OP_Found, iTab, 0, rLhs, nVector); VdbeCoverage(v); } /* Step 4. If the RHS is known to be non-NULL and we did not find ** an match on the search above, then the result must be FALSE. */ if( rRhsHasNull && nVector==1 ){ sqlite3VdbeAddOp2(v, OP_NotNull, rRhsHasNull, destIfFalse); VdbeCoverage(v); } /* Step 5. If we do not care about the difference between NULL and ** FALSE, then just return false. */ if( destIfFalse==destIfNull ) sqlite3VdbeGoto(v, destIfFalse); /* Step 6: Loop through rows of the RHS. Compare each row to the LHS. ** If any comparison is NULL, then the result is NULL. If all ** comparisons are FALSE then the final result is FALSE. ** ** For a scalar LHS, it is sufficient to check just the first row ** of the RHS. */ if( destStep6 ) sqlite3VdbeResolveLabel(v, destStep6); addrTop = sqlite3VdbeAddOp2(v, OP_Rewind, iTab, destIfFalse); VdbeCoverage(v); if( nVector>1 ){ destNotNull = sqlite3VdbeMakeLabel(pParse); }else{ /* For nVector==1, combine steps 6 and 7 by immediately returning ** FALSE if the first comparison is not NULL */ destNotNull = destIfFalse; } for(i=0; i1 ){ sqlite3VdbeResolveLabel(v, destNotNull); sqlite3VdbeAddOp2(v, OP_Next, iTab, addrTop+1); VdbeCoverage(v); /* Step 7: If we reach this point, we know that the result must ** be false. */ sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse); } /* Jumps here in order to return true. */ sqlite3VdbeJumpHere(v, addrTruthOp); sqlite3ExprCodeIN_finished: if( rLhs!=rLhsOrig ) sqlite3ReleaseTempReg(pParse, rLhs); VdbeComment((v, "end IN expr")); sqlite3ExprCodeIN_oom_error: sqlite3DbFree(pParse->db, aiMap); sqlite3DbFree(pParse->db, zAff); } #endif /* SQLITE_OMIT_SUBQUERY */ #ifndef SQLITE_OMIT_FLOATING_POINT /* ** Generate an instruction that will put the floating point ** value described by z[0..n-1] into register iMem. ** ** The z[] string will probably not be zero-terminated. But the ** z[n] character is guaranteed to be something that does not look ** like the continuation of the number. */ static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ if( ALWAYS(z!=0) ){ double value; sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */ if( negateFlag ) value = -value; sqlite3VdbeAddOp4Dup8(v, OP_Real, 0, iMem, 0, (u8*)&value, P4_REAL); } } #endif /* ** Generate an instruction that will put the integer describe by ** text z[0..n-1] into register iMem. ** ** Expr.u.zToken is always UTF8 and zero-terminated. */ static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){ Vdbe *v = pParse->pVdbe; if( pExpr->flags & EP_IntValue ){ int i = pExpr->u.iValue; assert( i>=0 ); if( negFlag ) i = -i; sqlite3VdbeAddOp2(v, OP_Integer, i, iMem); }else{ int c; i64 value; const char *z = pExpr->u.zToken; assert( z!=0 ); c = sqlite3DecOrHexToI64(z, &value); if( (c==3 && !negFlag) || (c==2) || (negFlag && value==SMALLEST_INT64)){ #ifdef SQLITE_OMIT_FLOATING_POINT sqlite3ErrorMsg(pParse, "oversized integer: %s%s", negFlag ? "-" : "", z); #else #ifndef SQLITE_OMIT_HEX_INTEGER if( sqlite3_strnicmp(z,"0x",2)==0 ){ sqlite3ErrorMsg(pParse, "hex literal too big: %s%s", negFlag?"-":"",z); }else #endif { codeReal(v, z, negFlag, iMem); } #endif }else{ if( negFlag ){ value = c==3 ? SMALLEST_INT64 : -value; } sqlite3VdbeAddOp4Dup8(v, OP_Int64, 0, iMem, 0, (u8*)&value, P4_INT64); } } } /* Generate code that will load into register regOut a value that is ** appropriate for the iIdxCol-th column of index pIdx. */ SQLITE_PRIVATE void sqlite3ExprCodeLoadIndexColumn( Parse *pParse, /* The parsing context */ Index *pIdx, /* The index whose column is to be loaded */ int iTabCur, /* Cursor pointing to a table row */ int iIdxCol, /* The column of the index to be loaded */ int regOut /* Store the index column value in this register */ ){ i16 iTabCol = pIdx->aiColumn[iIdxCol]; if( iTabCol==XN_EXPR ){ assert( pIdx->aColExpr ); assert( pIdx->aColExpr->nExpr>iIdxCol ); pParse->iSelfTab = iTabCur + 1; sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[iIdxCol].pExpr, regOut); pParse->iSelfTab = 0; }else{ sqlite3ExprCodeGetColumnOfTable(pParse->pVdbe, pIdx->pTable, iTabCur, iTabCol, regOut); } } #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* ** Generate code that will compute the value of generated column pCol ** and store the result in register regOut */ SQLITE_PRIVATE void sqlite3ExprCodeGeneratedColumn( Parse *pParse, Column *pCol, int regOut ){ int iAddr; Vdbe *v = pParse->pVdbe; assert( v!=0 ); assert( pParse->iSelfTab!=0 ); if( pParse->iSelfTab>0 ){ iAddr = sqlite3VdbeAddOp3(v, OP_IfNullRow, pParse->iSelfTab-1, 0, regOut); }else{ iAddr = 0; } sqlite3ExprCodeCopy(pParse, pCol->pDflt, regOut); if( pCol->affinity>=SQLITE_AFF_TEXT ){ sqlite3VdbeAddOp4(v, OP_Affinity, regOut, 1, 0, &pCol->affinity, 1); } if( iAddr ) sqlite3VdbeJumpHere(v, iAddr); } #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ /* ** Generate code to extract the value of the iCol-th column of a table. */ SQLITE_PRIVATE void sqlite3ExprCodeGetColumnOfTable( Vdbe *v, /* Parsing context */ Table *pTab, /* The table containing the value */ int iTabCur, /* The table cursor. Or the PK cursor for WITHOUT ROWID */ int iCol, /* Index of the column to extract */ int regOut /* Extract the value into this register */ ){ Column *pCol; assert( v!=0 ); if( pTab==0 ){ sqlite3VdbeAddOp3(v, OP_Column, iTabCur, iCol, regOut); return; } if( iCol<0 || iCol==pTab->iPKey ){ sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut); }else{ int op; int x; if( IsVirtual(pTab) ){ op = OP_VColumn; x = iCol; #ifndef SQLITE_OMIT_GENERATED_COLUMNS }else if( (pCol = &pTab->aCol[iCol])->colFlags & COLFLAG_VIRTUAL ){ Parse *pParse = sqlite3VdbeParser(v); if( pCol->colFlags & COLFLAG_BUSY ){ sqlite3ErrorMsg(pParse, "generated column loop on \"%s\"", pCol->zName); }else{ int savedSelfTab = pParse->iSelfTab; pCol->colFlags |= COLFLAG_BUSY; pParse->iSelfTab = iTabCur+1; sqlite3ExprCodeGeneratedColumn(pParse, pCol, regOut); pParse->iSelfTab = savedSelfTab; pCol->colFlags &= ~COLFLAG_BUSY; } return; #endif }else if( !HasRowid(pTab) ){ testcase( iCol!=sqlite3TableColumnToStorage(pTab, iCol) ); x = sqlite3TableColumnToIndex(sqlite3PrimaryKeyIndex(pTab), iCol); op = OP_Column; }else{ x = sqlite3TableColumnToStorage(pTab,iCol); testcase( x!=iCol ); op = OP_Column; } sqlite3VdbeAddOp3(v, op, iTabCur, x, regOut); sqlite3ColumnDefault(v, pTab, iCol, regOut); } } /* ** Generate code that will extract the iColumn-th column from ** table pTab and store the column value in register iReg. ** ** There must be an open cursor to pTab in iTable when this routine ** is called. If iColumn<0 then code is generated that extracts the rowid. */ SQLITE_PRIVATE int sqlite3ExprCodeGetColumn( Parse *pParse, /* Parsing and code generating context */ Table *pTab, /* Description of the table we are reading from */ int iColumn, /* Index of the table column */ int iTable, /* The cursor pointing to the table */ int iReg, /* Store results here */ u8 p5 /* P5 value for OP_Column + FLAGS */ ){ assert( pParse->pVdbe!=0 ); sqlite3ExprCodeGetColumnOfTable(pParse->pVdbe, pTab, iTable, iColumn, iReg); if( p5 ){ VdbeOp *pOp = sqlite3VdbeGetOp(pParse->pVdbe,-1); if( pOp->opcode==OP_Column ) pOp->p5 = p5; } return iReg; } /* ** Generate code to move content from registers iFrom...iFrom+nReg-1 ** over to iTo..iTo+nReg-1. */ SQLITE_PRIVATE void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){ sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg); } /* ** Convert a scalar expression node to a TK_REGISTER referencing ** register iReg. The caller must ensure that iReg already contains ** the correct value for the expression. */ static void exprToRegister(Expr *pExpr, int iReg){ Expr *p = sqlite3ExprSkipCollateAndLikely(pExpr); p->op2 = p->op; p->op = TK_REGISTER; p->iTable = iReg; ExprClearProperty(p, EP_Skip); } /* ** Evaluate an expression (either a vector or a scalar expression) and store ** the result in continguous temporary registers. Return the index of ** the first register used to store the result. ** ** If the returned result register is a temporary scalar, then also write ** that register number into *piFreeable. If the returned result register ** is not a temporary or if the expression is a vector set *piFreeable ** to 0. */ static int exprCodeVector(Parse *pParse, Expr *p, int *piFreeable){ int iResult; int nResult = sqlite3ExprVectorSize(p); if( nResult==1 ){ iResult = sqlite3ExprCodeTemp(pParse, p, piFreeable); }else{ *piFreeable = 0; if( p->op==TK_SELECT ){ #if SQLITE_OMIT_SUBQUERY iResult = 0; #else iResult = sqlite3CodeSubselect(pParse, p); #endif }else{ int i; iResult = pParse->nMem+1; pParse->nMem += nResult; for(i=0; ix.pList->a[i].pExpr, i+iResult); } } } return iResult; } /* ** If the last opcode is a OP_Copy, then set the do-not-merge flag (p5) ** so that a subsequent copy will not be merged into this one. */ static void setDoNotMergeFlagOnCopy(Vdbe *v){ if( sqlite3VdbeGetOp(v, -1)->opcode==OP_Copy ){ sqlite3VdbeChangeP5(v, 1); /* Tag trailing OP_Copy as not mergable */ } } /* ** Generate code to implement special SQL functions that are implemented ** in-line rather than by using the usual callbacks. */ static int exprCodeInlineFunction( Parse *pParse, /* Parsing context */ ExprList *pFarg, /* List of function arguments */ int iFuncId, /* Function ID. One of the INTFUNC_... values */ int target /* Store function result in this register */ ){ int nFarg; Vdbe *v = pParse->pVdbe; assert( v!=0 ); assert( pFarg!=0 ); nFarg = pFarg->nExpr; assert( nFarg>0 ); /* All in-line functions have at least one argument */ switch( iFuncId ){ case INLINEFUNC_coalesce: { /* Attempt a direct implementation of the built-in COALESCE() and ** IFNULL() functions. This avoids unnecessary evaluation of ** arguments past the first non-NULL argument. */ int endCoalesce = sqlite3VdbeMakeLabel(pParse); int i; assert( nFarg>=2 ); sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); for(i=1; ia[i].pExpr, target); } setDoNotMergeFlagOnCopy(v); sqlite3VdbeResolveLabel(v, endCoalesce); break; } case INLINEFUNC_iif: { Expr caseExpr; memset(&caseExpr, 0, sizeof(caseExpr)); caseExpr.op = TK_CASE; caseExpr.x.pList = pFarg; return sqlite3ExprCodeTarget(pParse, &caseExpr, target); } default: { /* The UNLIKELY() function is a no-op. The result is the value ** of the first argument. */ assert( nFarg==1 || nFarg==2 ); target = sqlite3ExprCodeTarget(pParse, pFarg->a[0].pExpr, target); break; } /*********************************************************************** ** Test-only SQL functions that are only usable if enabled ** via SQLITE_TESTCTRL_INTERNAL_FUNCTIONS */ case INLINEFUNC_expr_compare: { /* Compare two expressions using sqlite3ExprCompare() */ assert( nFarg==2 ); sqlite3VdbeAddOp2(v, OP_Integer, sqlite3ExprCompare(0,pFarg->a[0].pExpr, pFarg->a[1].pExpr,-1), target); break; } case INLINEFUNC_expr_implies_expr: { /* Compare two expressions using sqlite3ExprImpliesExpr() */ assert( nFarg==2 ); sqlite3VdbeAddOp2(v, OP_Integer, sqlite3ExprImpliesExpr(pParse,pFarg->a[0].pExpr, pFarg->a[1].pExpr,-1), target); break; } case INLINEFUNC_implies_nonnull_row: { /* REsult of sqlite3ExprImpliesNonNullRow() */ Expr *pA1; assert( nFarg==2 ); pA1 = pFarg->a[1].pExpr; if( pA1->op==TK_COLUMN ){ sqlite3VdbeAddOp2(v, OP_Integer, sqlite3ExprImpliesNonNullRow(pFarg->a[0].pExpr,pA1->iTable), target); }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, target); } break; } #ifdef SQLITE_DEBUG case INLINEFUNC_affinity: { /* The AFFINITY() function evaluates to a string that describes ** the type affinity of the argument. This is used for testing of ** the SQLite type logic. */ const char *azAff[] = { "blob", "text", "numeric", "integer", "real" }; char aff; assert( nFarg==1 ); aff = sqlite3ExprAffinity(pFarg->a[0].pExpr); sqlite3VdbeLoadString(v, target, (aff<=SQLITE_AFF_NONE) ? "none" : azAff[aff-SQLITE_AFF_BLOB]); break; } #endif } return target; } /* ** Generate code into the current Vdbe to evaluate the given ** expression. Attempt to store the results in register "target". ** Return the register where results are stored. ** ** With this routine, there is no guarantee that results will ** be stored in target. The result might be stored in some other ** register if it is convenient to do so. The calling function ** must check the return code and move the results to the desired ** register. */ SQLITE_PRIVATE int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ Vdbe *v = pParse->pVdbe; /* The VM under construction */ int op; /* The opcode being coded */ int inReg = target; /* Results stored in register inReg */ int regFree1 = 0; /* If non-zero free this temporary register */ int regFree2 = 0; /* If non-zero free this temporary register */ int r1, r2; /* Various register numbers */ Expr tempX; /* Temporary expression node */ int p5 = 0; assert( target>0 && target<=pParse->nMem ); assert( v!=0 ); expr_code_doover: if( pExpr==0 ){ op = TK_NULL; }else{ assert( !ExprHasVVAProperty(pExpr,EP_Immutable) ); op = pExpr->op; } switch( op ){ case TK_AGG_COLUMN: { AggInfo *pAggInfo = pExpr->pAggInfo; struct AggInfo_col *pCol; assert( pAggInfo!=0 ); assert( pExpr->iAgg>=0 && pExpr->iAggnColumn ); pCol = &pAggInfo->aCol[pExpr->iAgg]; if( !pAggInfo->directMode ){ assert( pCol->iMem>0 ); return pCol->iMem; }else if( pAggInfo->useSortingIdx ){ Table *pTab = pCol->pTab; sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab, pCol->iSorterColumn, target); if( pCol->iColumn<0 ){ VdbeComment((v,"%s.rowid",pTab->zName)); }else{ VdbeComment((v,"%s.%s",pTab->zName,pTab->aCol[pCol->iColumn].zName)); if( pTab->aCol[pCol->iColumn].affinity==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, target); } } return target; } /* Otherwise, fall thru into the TK_COLUMN case */ /* no break */ deliberate_fall_through } case TK_COLUMN: { int iTab = pExpr->iTable; int iReg; if( ExprHasProperty(pExpr, EP_FixedCol) ){ /* This COLUMN expression is really a constant due to WHERE clause ** constraints, and that constant is coded by the pExpr->pLeft ** expresssion. However, make sure the constant has the correct ** datatype by applying the Affinity of the table column to the ** constant. */ int aff; iReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft,target); if( pExpr->y.pTab ){ aff = sqlite3TableColumnAffinity(pExpr->y.pTab, pExpr->iColumn); }else{ aff = pExpr->affExpr; } if( aff>SQLITE_AFF_BLOB ){ static const char zAff[] = "B\000C\000D\000E"; assert( SQLITE_AFF_BLOB=='A' ); assert( SQLITE_AFF_TEXT=='B' ); sqlite3VdbeAddOp4(v, OP_Affinity, iReg, 1, 0, &zAff[(aff-'B')*2], P4_STATIC); } return iReg; } if( iTab<0 ){ if( pParse->iSelfTab<0 ){ /* Other columns in the same row for CHECK constraints or ** generated columns or for inserting into partial index. ** The row is unpacked into registers beginning at ** 0-(pParse->iSelfTab). The rowid (if any) is in a register ** immediately prior to the first column. */ Column *pCol; Table *pTab = pExpr->y.pTab; int iSrc; int iCol = pExpr->iColumn; assert( pTab!=0 ); assert( iCol>=XN_ROWID ); assert( iColnCol ); if( iCol<0 ){ return -1-pParse->iSelfTab; } pCol = pTab->aCol + iCol; testcase( iCol!=sqlite3TableColumnToStorage(pTab,iCol) ); iSrc = sqlite3TableColumnToStorage(pTab, iCol) - pParse->iSelfTab; #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( pCol->colFlags & COLFLAG_GENERATED ){ if( pCol->colFlags & COLFLAG_BUSY ){ sqlite3ErrorMsg(pParse, "generated column loop on \"%s\"", pCol->zName); return 0; } pCol->colFlags |= COLFLAG_BUSY; if( pCol->colFlags & COLFLAG_NOTAVAIL ){ sqlite3ExprCodeGeneratedColumn(pParse, pCol, iSrc); } pCol->colFlags &= ~(COLFLAG_BUSY|COLFLAG_NOTAVAIL); return iSrc; }else #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ if( pCol->affinity==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp2(v, OP_SCopy, iSrc, target); sqlite3VdbeAddOp1(v, OP_RealAffinity, target); return target; }else{ return iSrc; } }else{ /* Coding an expression that is part of an index where column names ** in the index refer to the table to which the index belongs */ iTab = pParse->iSelfTab - 1; } } iReg = sqlite3ExprCodeGetColumn(pParse, pExpr->y.pTab, pExpr->iColumn, iTab, target, pExpr->op2); if( pExpr->y.pTab==0 && pExpr->affExpr==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, iReg); } return iReg; } case TK_INTEGER: { codeInteger(pParse, pExpr, 0, target); return target; } case TK_TRUEFALSE: { sqlite3VdbeAddOp2(v, OP_Integer, sqlite3ExprTruthValue(pExpr), target); return target; } #ifndef SQLITE_OMIT_FLOATING_POINT case TK_FLOAT: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); codeReal(v, pExpr->u.zToken, 0, target); return target; } #endif case TK_STRING: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3VdbeLoadString(v, target, pExpr->u.zToken); return target; } default: { /* Make NULL the default case so that if a bug causes an illegal ** Expr node to be passed into this function, it will be handled ** sanely and not crash. But keep the assert() to bring the problem ** to the attention of the developers. */ assert( op==TK_NULL ); sqlite3VdbeAddOp2(v, OP_Null, 0, target); return target; } #ifndef SQLITE_OMIT_BLOB_LITERAL case TK_BLOB: { int n; const char *z; char *zBlob; assert( !ExprHasProperty(pExpr, EP_IntValue) ); assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); assert( pExpr->u.zToken[1]=='\'' ); z = &pExpr->u.zToken[2]; n = sqlite3Strlen30(z) - 1; assert( z[n]=='\'' ); zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n); sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC); return target; } #endif case TK_VARIABLE: { assert( !ExprHasProperty(pExpr, EP_IntValue) ); assert( pExpr->u.zToken!=0 ); assert( pExpr->u.zToken[0]!=0 ); sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iColumn, target); if( pExpr->u.zToken[1]!=0 ){ const char *z = sqlite3VListNumToName(pParse->pVList, pExpr->iColumn); assert( pExpr->u.zToken[0]=='?' || (z && !strcmp(pExpr->u.zToken, z)) ); pParse->pVList[0] = 0; /* Indicate VList may no longer be enlarged */ sqlite3VdbeAppendP4(v, (char*)z, P4_STATIC); } return target; } case TK_REGISTER: { return pExpr->iTable; } #ifndef SQLITE_OMIT_CAST case TK_CAST: { /* Expressions of the form: CAST(pLeft AS token) */ inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); if( inReg!=target ){ sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target); inReg = target; } sqlite3VdbeAddOp2(v, OP_Cast, target, sqlite3AffinityType(pExpr->u.zToken, 0)); return inReg; } #endif /* SQLITE_OMIT_CAST */ case TK_IS: case TK_ISNOT: op = (op==TK_IS) ? TK_EQ : TK_NE; p5 = SQLITE_NULLEQ; /* fall-through */ case TK_LT: case TK_LE: case TK_GT: case TK_GE: case TK_NE: case TK_EQ: { Expr *pLeft = pExpr->pLeft; if( sqlite3ExprIsVector(pLeft) ){ codeVectorCompare(pParse, pExpr, target, op, p5); }else{ r1 = sqlite3ExprCodeTemp(pParse, pLeft, ®Free1); r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); codeCompare(pParse, pLeft, pExpr->pRight, op, r1, r2, inReg, SQLITE_STOREP2 | p5, ExprHasProperty(pExpr,EP_Commuted)); assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v,op==OP_Eq); assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v,op==OP_Ne); testcase( regFree1==0 ); testcase( regFree2==0 ); } break; } case TK_AND: case TK_OR: case TK_PLUS: case TK_STAR: case TK_MINUS: case TK_REM: case TK_BITAND: case TK_BITOR: case TK_SLASH: case TK_LSHIFT: case TK_RSHIFT: case TK_CONCAT: { assert( TK_AND==OP_And ); testcase( op==TK_AND ); assert( TK_OR==OP_Or ); testcase( op==TK_OR ); assert( TK_PLUS==OP_Add ); testcase( op==TK_PLUS ); assert( TK_MINUS==OP_Subtract ); testcase( op==TK_MINUS ); assert( TK_REM==OP_Remainder ); testcase( op==TK_REM ); assert( TK_BITAND==OP_BitAnd ); testcase( op==TK_BITAND ); assert( TK_BITOR==OP_BitOr ); testcase( op==TK_BITOR ); assert( TK_SLASH==OP_Divide ); testcase( op==TK_SLASH ); assert( TK_LSHIFT==OP_ShiftLeft ); testcase( op==TK_LSHIFT ); assert( TK_RSHIFT==OP_ShiftRight ); testcase( op==TK_RSHIFT ); assert( TK_CONCAT==OP_Concat ); testcase( op==TK_CONCAT ); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); sqlite3VdbeAddOp3(v, op, r2, r1, target); testcase( regFree1==0 ); testcase( regFree2==0 ); break; } case TK_UMINUS: { Expr *pLeft = pExpr->pLeft; assert( pLeft ); if( pLeft->op==TK_INTEGER ){ codeInteger(pParse, pLeft, 1, target); return target; #ifndef SQLITE_OMIT_FLOATING_POINT }else if( pLeft->op==TK_FLOAT ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); codeReal(v, pLeft->u.zToken, 1, target); return target; #endif }else{ tempX.op = TK_INTEGER; tempX.flags = EP_IntValue|EP_TokenOnly; tempX.u.iValue = 0; ExprClearVVAProperties(&tempX); r1 = sqlite3ExprCodeTemp(pParse, &tempX, ®Free1); r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2); sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target); testcase( regFree2==0 ); } break; } case TK_BITNOT: case TK_NOT: { assert( TK_BITNOT==OP_BitNot ); testcase( op==TK_BITNOT ); assert( TK_NOT==OP_Not ); testcase( op==TK_NOT ); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); testcase( regFree1==0 ); sqlite3VdbeAddOp2(v, op, r1, inReg); break; } case TK_TRUTH: { int isTrue; /* IS TRUE or IS NOT TRUE */ int bNormal; /* IS TRUE or IS FALSE */ r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); testcase( regFree1==0 ); isTrue = sqlite3ExprTruthValue(pExpr->pRight); bNormal = pExpr->op2==TK_IS; testcase( isTrue && bNormal); testcase( !isTrue && bNormal); sqlite3VdbeAddOp4Int(v, OP_IsTrue, r1, inReg, !isTrue, isTrue ^ bNormal); break; } case TK_ISNULL: case TK_NOTNULL: { int addr; assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL ); assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL ); sqlite3VdbeAddOp2(v, OP_Integer, 1, target); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); testcase( regFree1==0 ); addr = sqlite3VdbeAddOp1(v, op, r1); VdbeCoverageIf(v, op==TK_ISNULL); VdbeCoverageIf(v, op==TK_NOTNULL); sqlite3VdbeAddOp2(v, OP_Integer, 0, target); sqlite3VdbeJumpHere(v, addr); break; } case TK_AGG_FUNCTION: { AggInfo *pInfo = pExpr->pAggInfo; if( pInfo==0 || NEVER(pExpr->iAgg<0) || NEVER(pExpr->iAgg>=pInfo->nFunc) ){ assert( !ExprHasProperty(pExpr, EP_IntValue) ); sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken); }else{ return pInfo->aFunc[pExpr->iAgg].iMem; } break; } case TK_FUNCTION: { ExprList *pFarg; /* List of function arguments */ int nFarg; /* Number of function arguments */ FuncDef *pDef; /* The function definition object */ const char *zId; /* The function name */ u32 constMask = 0; /* Mask of function arguments that are constant */ int i; /* Loop counter */ sqlite3 *db = pParse->db; /* The database connection */ u8 enc = ENC(db); /* The text encoding used by this database */ CollSeq *pColl = 0; /* A collating sequence */ #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(pExpr, EP_WinFunc) ){ return pExpr->y.pWin->regResult; } #endif if( ConstFactorOk(pParse) && sqlite3ExprIsConstantNotJoin(pExpr) ){ /* SQL functions can be expensive. So try to avoid running them ** multiple times if we know they always give the same result */ return sqlite3ExprCodeRunJustOnce(pParse, pExpr, -1); } assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); assert( !ExprHasProperty(pExpr, EP_TokenOnly) ); pFarg = pExpr->x.pList; nFarg = pFarg ? pFarg->nExpr : 0; assert( !ExprHasProperty(pExpr, EP_IntValue) ); zId = pExpr->u.zToken; pDef = sqlite3FindFunction(db, zId, nFarg, enc, 0); #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION if( pDef==0 && pParse->explain ){ pDef = sqlite3FindFunction(db, "unknown", nFarg, enc, 0); } #endif if( pDef==0 || pDef->xFinalize!=0 ){ sqlite3ErrorMsg(pParse, "unknown function: %s()", zId); break; } if( pDef->funcFlags & SQLITE_FUNC_INLINE ){ assert( (pDef->funcFlags & SQLITE_FUNC_UNSAFE)==0 ); assert( (pDef->funcFlags & SQLITE_FUNC_DIRECT)==0 ); return exprCodeInlineFunction(pParse, pFarg, SQLITE_PTR_TO_INT(pDef->pUserData), target); }else if( pDef->funcFlags & (SQLITE_FUNC_DIRECT|SQLITE_FUNC_UNSAFE) ){ sqlite3ExprFunctionUsable(pParse, pExpr, pDef); } for(i=0; ia[i].pExpr) ){ testcase( i==31 ); constMask |= MASKBIT32(i); } if( (pDef->funcFlags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){ pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr); } } if( pFarg ){ if( constMask ){ r1 = pParse->nMem+1; pParse->nMem += nFarg; }else{ r1 = sqlite3GetTempRange(pParse, nFarg); } /* For length() and typeof() functions with a column argument, ** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG ** or OPFLAG_TYPEOFARG respectively, to avoid unnecessary data ** loading. */ if( (pDef->funcFlags & (SQLITE_FUNC_LENGTH|SQLITE_FUNC_TYPEOF))!=0 ){ u8 exprOp; assert( nFarg==1 ); assert( pFarg->a[0].pExpr!=0 ); exprOp = pFarg->a[0].pExpr->op; if( exprOp==TK_COLUMN || exprOp==TK_AGG_COLUMN ){ assert( SQLITE_FUNC_LENGTH==OPFLAG_LENGTHARG ); assert( SQLITE_FUNC_TYPEOF==OPFLAG_TYPEOFARG ); testcase( pDef->funcFlags & OPFLAG_LENGTHARG ); pFarg->a[0].pExpr->op2 = pDef->funcFlags & (OPFLAG_LENGTHARG|OPFLAG_TYPEOFARG); } } sqlite3ExprCodeExprList(pParse, pFarg, r1, 0, SQLITE_ECEL_DUP|SQLITE_ECEL_FACTOR); }else{ r1 = 0; } #ifndef SQLITE_OMIT_VIRTUALTABLE /* Possibly overload the function if the first argument is ** a virtual table column. ** ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the ** second argument, not the first, as the argument to test to ** see if it is a column in a virtual table. This is done because ** the left operand of infix functions (the operand we want to ** control overloading) ends up as the second argument to the ** function. The expression "A glob B" is equivalent to ** "glob(B,A). We want to use the A in "A glob B" to test ** for function overloading. But we use the B term in "glob(B,A)". */ if( nFarg>=2 && ExprHasProperty(pExpr, EP_InfixFunc) ){ pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr); }else if( nFarg>0 ){ pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr); } #endif if( pDef->funcFlags & SQLITE_FUNC_NEEDCOLL ){ if( !pColl ) pColl = db->pDfltColl; sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); } #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC if( pDef->funcFlags & SQLITE_FUNC_OFFSET ){ Expr *pArg = pFarg->a[0].pExpr; if( pArg->op==TK_COLUMN ){ sqlite3VdbeAddOp3(v, OP_Offset, pArg->iTable, pArg->iColumn, target); }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, target); } }else #endif { sqlite3VdbeAddFunctionCall(pParse, constMask, r1, target, nFarg, pDef, pExpr->op2); } if( nFarg ){ if( constMask==0 ){ sqlite3ReleaseTempRange(pParse, r1, nFarg); }else{ sqlite3VdbeReleaseRegisters(pParse, r1, nFarg, constMask, 1); } } return target; } #ifndef SQLITE_OMIT_SUBQUERY case TK_EXISTS: case TK_SELECT: { int nCol; testcase( op==TK_EXISTS ); testcase( op==TK_SELECT ); if( pParse->db->mallocFailed ){ return 0; }else if( op==TK_SELECT && (nCol = pExpr->x.pSelect->pEList->nExpr)!=1 ){ sqlite3SubselectError(pParse, nCol, 1); }else{ return sqlite3CodeSubselect(pParse, pExpr); } break; } case TK_SELECT_COLUMN: { int n; if( pExpr->pLeft->iTable==0 ){ pExpr->pLeft->iTable = sqlite3CodeSubselect(pParse, pExpr->pLeft); } assert( pExpr->iTable==0 || pExpr->pLeft->op==TK_SELECT ); if( pExpr->iTable!=0 && pExpr->iTable!=(n = sqlite3ExprVectorSize(pExpr->pLeft)) ){ sqlite3ErrorMsg(pParse, "%d columns assigned %d values", pExpr->iTable, n); } return pExpr->pLeft->iTable + pExpr->iColumn; } case TK_IN: { int destIfFalse = sqlite3VdbeMakeLabel(pParse); int destIfNull = sqlite3VdbeMakeLabel(pParse); sqlite3VdbeAddOp2(v, OP_Null, 0, target); sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); sqlite3VdbeAddOp2(v, OP_Integer, 1, target); sqlite3VdbeResolveLabel(v, destIfFalse); sqlite3VdbeAddOp2(v, OP_AddImm, target, 0); sqlite3VdbeResolveLabel(v, destIfNull); return target; } #endif /* SQLITE_OMIT_SUBQUERY */ /* ** x BETWEEN y AND z ** ** This is equivalent to ** ** x>=y AND x<=z ** ** X is stored in pExpr->pLeft. ** Y is stored in pExpr->pList->a[0].pExpr. ** Z is stored in pExpr->pList->a[1].pExpr. */ case TK_BETWEEN: { exprCodeBetween(pParse, pExpr, target, 0, 0); return target; } case TK_SPAN: case TK_COLLATE: case TK_UPLUS: { pExpr = pExpr->pLeft; goto expr_code_doover; /* 2018-04-28: Prevent deep recursion. OSSFuzz. */ } case TK_TRIGGER: { /* If the opcode is TK_TRIGGER, then the expression is a reference ** to a column in the new.* or old.* pseudo-tables available to ** trigger programs. In this case Expr.iTable is set to 1 for the ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn ** is set to the column of the pseudo-table to read, or to -1 to ** read the rowid field. ** ** The expression is implemented using an OP_Param opcode. The p1 ** parameter is set to 0 for an old.rowid reference, or to (i+1) ** to reference another column of the old.* pseudo-table, where ** i is the index of the column. For a new.rowid reference, p1 is ** set to (n+1), where n is the number of columns in each pseudo-table. ** For a reference to any other column in the new.* pseudo-table, p1 ** is set to (n+2+i), where n and i are as defined previously. For ** example, if the table on which triggers are being fired is ** declared as: ** ** CREATE TABLE t1(a, b); ** ** Then p1 is interpreted as follows: ** ** p1==0 -> old.rowid p1==3 -> new.rowid ** p1==1 -> old.a p1==4 -> new.a ** p1==2 -> old.b p1==5 -> new.b */ Table *pTab = pExpr->y.pTab; int iCol = pExpr->iColumn; int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + sqlite3TableColumnToStorage(pTab, iCol); assert( pExpr->iTable==0 || pExpr->iTable==1 ); assert( iCol>=-1 && iColnCol ); assert( pTab->iPKey<0 || iCol!=pTab->iPKey ); assert( p1>=0 && p1<(pTab->nCol*2+2) ); sqlite3VdbeAddOp2(v, OP_Param, p1, target); VdbeComment((v, "r[%d]=%s.%s", target, (pExpr->iTable ? "new" : "old"), (pExpr->iColumn<0 ? "rowid" : pExpr->y.pTab->aCol[iCol].zName) )); #ifndef SQLITE_OMIT_FLOATING_POINT /* If the column has REAL affinity, it may currently be stored as an ** integer. Use OP_RealAffinity to make sure it is really real. ** ** EVIDENCE-OF: R-60985-57662 SQLite will convert the value back to ** floating point when extracting it from the record. */ if( iCol>=0 && pTab->aCol[iCol].affinity==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, target); } #endif break; } case TK_VECTOR: { sqlite3ErrorMsg(pParse, "row value misused"); break; } /* TK_IF_NULL_ROW Expr nodes are inserted ahead of expressions ** that derive from the right-hand table of a LEFT JOIN. The ** Expr.iTable value is the table number for the right-hand table. ** The expression is only evaluated if that table is not currently ** on a LEFT JOIN NULL row. */ case TK_IF_NULL_ROW: { int addrINR; u8 okConstFactor = pParse->okConstFactor; addrINR = sqlite3VdbeAddOp1(v, OP_IfNullRow, pExpr->iTable); /* Temporarily disable factoring of constant expressions, since ** even though expressions may appear to be constant, they are not ** really constant because they originate from the right-hand side ** of a LEFT JOIN. */ pParse->okConstFactor = 0; inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); pParse->okConstFactor = okConstFactor; sqlite3VdbeJumpHere(v, addrINR); sqlite3VdbeChangeP3(v, addrINR, inReg); break; } /* ** Form A: ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END ** ** Form B: ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END ** ** Form A is can be transformed into the equivalent form B as follows: ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ... ** WHEN x=eN THEN rN ELSE y END ** ** X (if it exists) is in pExpr->pLeft. ** Y is in the last element of pExpr->x.pList if pExpr->x.pList->nExpr is ** odd. The Y is also optional. If the number of elements in x.pList ** is even, then Y is omitted and the "otherwise" result is NULL. ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1]. ** ** The result of the expression is the Ri for the first matching Ei, ** or if there is no matching Ei, the ELSE term Y, or if there is ** no ELSE term, NULL. */ case TK_CASE: { int endLabel; /* GOTO label for end of CASE stmt */ int nextCase; /* GOTO label for next WHEN clause */ int nExpr; /* 2x number of WHEN terms */ int i; /* Loop counter */ ExprList *pEList; /* List of WHEN terms */ struct ExprList_item *aListelem; /* Array of WHEN terms */ Expr opCompare; /* The X==Ei expression */ Expr *pX; /* The X expression */ Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ Expr *pDel = 0; sqlite3 *db = pParse->db; assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList ); assert(pExpr->x.pList->nExpr > 0); pEList = pExpr->x.pList; aListelem = pEList->a; nExpr = pEList->nExpr; endLabel = sqlite3VdbeMakeLabel(pParse); if( (pX = pExpr->pLeft)!=0 ){ pDel = sqlite3ExprDup(db, pX, 0); if( db->mallocFailed ){ sqlite3ExprDelete(db, pDel); break; } testcase( pX->op==TK_COLUMN ); exprToRegister(pDel, exprCodeVector(pParse, pDel, ®Free1)); testcase( regFree1==0 ); memset(&opCompare, 0, sizeof(opCompare)); opCompare.op = TK_EQ; opCompare.pLeft = pDel; pTest = &opCompare; /* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001: ** The value in regFree1 might get SCopy-ed into the file result. ** So make sure that the regFree1 register is not reused for other ** purposes and possibly overwritten. */ regFree1 = 0; } for(i=0; iop==TK_COLUMN ); sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); testcase( aListelem[i+1].pExpr->op==TK_COLUMN ); sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target); sqlite3VdbeGoto(v, endLabel); sqlite3VdbeResolveLabel(v, nextCase); } if( (nExpr&1)!=0 ){ sqlite3ExprCode(pParse, pEList->a[nExpr-1].pExpr, target); }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, target); } sqlite3ExprDelete(db, pDel); setDoNotMergeFlagOnCopy(v); sqlite3VdbeResolveLabel(v, endLabel); break; } #ifndef SQLITE_OMIT_TRIGGER case TK_RAISE: { assert( pExpr->affExpr==OE_Rollback || pExpr->affExpr==OE_Abort || pExpr->affExpr==OE_Fail || pExpr->affExpr==OE_Ignore ); if( !pParse->pTriggerTab && !pParse->nested ){ sqlite3ErrorMsg(pParse, "RAISE() may only be used within a trigger-program"); return 0; } if( pExpr->affExpr==OE_Abort ){ sqlite3MayAbort(pParse); } assert( !ExprHasProperty(pExpr, EP_IntValue) ); if( pExpr->affExpr==OE_Ignore ){ sqlite3VdbeAddOp4( v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); VdbeCoverage(v); }else{ sqlite3HaltConstraint(pParse, pParse->pTriggerTab ? SQLITE_CONSTRAINT_TRIGGER : SQLITE_ERROR, pExpr->affExpr, pExpr->u.zToken, 0, 0); } break; } #endif } sqlite3ReleaseTempReg(pParse, regFree1); sqlite3ReleaseTempReg(pParse, regFree2); return inReg; } /* ** Generate code that will evaluate expression pExpr just one time ** per prepared statement execution. ** ** If the expression uses functions (that might throw an exception) then ** guard them with an OP_Once opcode to ensure that the code is only executed ** once. If no functions are involved, then factor the code out and put it at ** the end of the prepared statement in the initialization section. ** ** If regDest>=0 then the result is always stored in that register and the ** result is not reusable. If regDest<0 then this routine is free to ** store the value whereever it wants. The register where the expression ** is stored is returned. When regDest<0, two identical expressions might ** code to the same register, if they do not contain function calls and hence ** are factored out into the initialization section at the end of the ** prepared statement. */ SQLITE_PRIVATE int sqlite3ExprCodeRunJustOnce( Parse *pParse, /* Parsing context */ Expr *pExpr, /* The expression to code when the VDBE initializes */ int regDest /* Store the value in this register */ ){ ExprList *p; assert( ConstFactorOk(pParse) ); p = pParse->pConstExpr; if( regDest<0 && p ){ struct ExprList_item *pItem; int i; for(pItem=p->a, i=p->nExpr; i>0; pItem++, i--){ if( pItem->reusable && sqlite3ExprCompare(0,pItem->pExpr,pExpr,-1)==0 ){ return pItem->u.iConstExprReg; } } } pExpr = sqlite3ExprDup(pParse->db, pExpr, 0); if( pExpr!=0 && ExprHasProperty(pExpr, EP_HasFunc) ){ Vdbe *v = pParse->pVdbe; int addr; assert( v ); addr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); pParse->okConstFactor = 0; if( !pParse->db->mallocFailed ){ if( regDest<0 ) regDest = ++pParse->nMem; sqlite3ExprCode(pParse, pExpr, regDest); } pParse->okConstFactor = 1; sqlite3ExprDelete(pParse->db, pExpr); sqlite3VdbeJumpHere(v, addr); }else{ p = sqlite3ExprListAppend(pParse, p, pExpr); if( p ){ struct ExprList_item *pItem = &p->a[p->nExpr-1]; pItem->reusable = regDest<0; if( regDest<0 ) regDest = ++pParse->nMem; pItem->u.iConstExprReg = regDest; } pParse->pConstExpr = p; } return regDest; } /* ** Generate code to evaluate an expression and store the results ** into a register. Return the register number where the results ** are stored. ** ** If the register is a temporary register that can be deallocated, ** then write its number into *pReg. If the result register is not ** a temporary, then set *pReg to zero. ** ** If pExpr is a constant, then this routine might generate this ** code to fill the register in the initialization section of the ** VDBE program, in order to factor it out of the evaluation loop. */ SQLITE_PRIVATE int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){ int r2; pExpr = sqlite3ExprSkipCollateAndLikely(pExpr); if( ConstFactorOk(pParse) && pExpr->op!=TK_REGISTER && sqlite3ExprIsConstantNotJoin(pExpr) ){ *pReg = 0; r2 = sqlite3ExprCodeRunJustOnce(pParse, pExpr, -1); }else{ int r1 = sqlite3GetTempReg(pParse); r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); if( r2==r1 ){ *pReg = r1; }else{ sqlite3ReleaseTempReg(pParse, r1); *pReg = 0; } } return r2; } /* ** Generate code that will evaluate expression pExpr and store the ** results in register target. The results are guaranteed to appear ** in register target. */ SQLITE_PRIVATE void sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){ int inReg; assert( pExpr==0 || !ExprHasVVAProperty(pExpr,EP_Immutable) ); assert( target>0 && target<=pParse->nMem ); assert( pParse->pVdbe!=0 || pParse->db->mallocFailed ); if( pParse->pVdbe==0 ) return; inReg = sqlite3ExprCodeTarget(pParse, pExpr, target); if( inReg!=target ){ u8 op; if( ExprHasProperty(pExpr,EP_Subquery) ){ op = OP_Copy; }else{ op = OP_SCopy; } sqlite3VdbeAddOp2(pParse->pVdbe, op, inReg, target); } } /* ** Make a transient copy of expression pExpr and then code it using ** sqlite3ExprCode(). This routine works just like sqlite3ExprCode() ** except that the input expression is guaranteed to be unchanged. */ SQLITE_PRIVATE void sqlite3ExprCodeCopy(Parse *pParse, Expr *pExpr, int target){ sqlite3 *db = pParse->db; pExpr = sqlite3ExprDup(db, pExpr, 0); if( !db->mallocFailed ) sqlite3ExprCode(pParse, pExpr, target); sqlite3ExprDelete(db, pExpr); } /* ** Generate code that will evaluate expression pExpr and store the ** results in register target. The results are guaranteed to appear ** in register target. If the expression is constant, then this routine ** might choose to code the expression at initialization time. */ SQLITE_PRIVATE void sqlite3ExprCodeFactorable(Parse *pParse, Expr *pExpr, int target){ if( pParse->okConstFactor && sqlite3ExprIsConstantNotJoin(pExpr) ){ sqlite3ExprCodeRunJustOnce(pParse, pExpr, target); }else{ sqlite3ExprCodeCopy(pParse, pExpr, target); } } /* ** Generate code that pushes the value of every element of the given ** expression list into a sequence of registers beginning at target. ** ** Return the number of elements evaluated. The number returned will ** usually be pList->nExpr but might be reduced if SQLITE_ECEL_OMITREF ** is defined. ** ** The SQLITE_ECEL_DUP flag prevents the arguments from being ** filled using OP_SCopy. OP_Copy must be used instead. ** ** The SQLITE_ECEL_FACTOR argument allows constant arguments to be ** factored out into initialization code. ** ** The SQLITE_ECEL_REF flag means that expressions in the list with ** ExprList.a[].u.x.iOrderByCol>0 have already been evaluated and stored ** in registers at srcReg, and so the value can be copied from there. ** If SQLITE_ECEL_OMITREF is also set, then the values with u.x.iOrderByCol>0 ** are simply omitted rather than being copied from srcReg. */ SQLITE_PRIVATE int sqlite3ExprCodeExprList( Parse *pParse, /* Parsing context */ ExprList *pList, /* The expression list to be coded */ int target, /* Where to write results */ int srcReg, /* Source registers if SQLITE_ECEL_REF */ u8 flags /* SQLITE_ECEL_* flags */ ){ struct ExprList_item *pItem; int i, j, n; u8 copyOp = (flags & SQLITE_ECEL_DUP) ? OP_Copy : OP_SCopy; Vdbe *v = pParse->pVdbe; assert( pList!=0 ); assert( target>0 ); assert( pParse->pVdbe!=0 ); /* Never gets this far otherwise */ n = pList->nExpr; if( !ConstFactorOk(pParse) ) flags &= ~SQLITE_ECEL_FACTOR; for(pItem=pList->a, i=0; ipExpr; #ifdef SQLITE_ENABLE_SORTER_REFERENCES if( pItem->bSorterRef ){ i--; n--; }else #endif if( (flags & SQLITE_ECEL_REF)!=0 && (j = pItem->u.x.iOrderByCol)>0 ){ if( flags & SQLITE_ECEL_OMITREF ){ i--; n--; }else{ sqlite3VdbeAddOp2(v, copyOp, j+srcReg-1, target+i); } }else if( (flags & SQLITE_ECEL_FACTOR)!=0 && sqlite3ExprIsConstantNotJoin(pExpr) ){ sqlite3ExprCodeRunJustOnce(pParse, pExpr, target+i); }else{ int inReg = sqlite3ExprCodeTarget(pParse, pExpr, target+i); if( inReg!=target+i ){ VdbeOp *pOp; if( copyOp==OP_Copy && (pOp=sqlite3VdbeGetOp(v, -1))->opcode==OP_Copy && pOp->p1+pOp->p3+1==inReg && pOp->p2+pOp->p3+1==target+i && pOp->p5==0 /* The do-not-merge flag must be clear */ ){ pOp->p3++; }else{ sqlite3VdbeAddOp2(v, copyOp, inReg, target+i); } } } } return n; } /* ** Generate code for a BETWEEN operator. ** ** x BETWEEN y AND z ** ** The above is equivalent to ** ** x>=y AND x<=z ** ** Code it as such, taking care to do the common subexpression ** elimination of x. ** ** The xJumpIf parameter determines details: ** ** NULL: Store the boolean result in reg[dest] ** sqlite3ExprIfTrue: Jump to dest if true ** sqlite3ExprIfFalse: Jump to dest if false ** ** The jumpIfNull parameter is ignored if xJumpIf is NULL. */ static void exprCodeBetween( Parse *pParse, /* Parsing and code generating context */ Expr *pExpr, /* The BETWEEN expression */ int dest, /* Jump destination or storage location */ void (*xJump)(Parse*,Expr*,int,int), /* Action to take */ int jumpIfNull /* Take the jump if the BETWEEN is NULL */ ){ Expr exprAnd; /* The AND operator in x>=y AND x<=z */ Expr compLeft; /* The x>=y term */ Expr compRight; /* The x<=z term */ int regFree1 = 0; /* Temporary use register */ Expr *pDel = 0; sqlite3 *db = pParse->db; memset(&compLeft, 0, sizeof(Expr)); memset(&compRight, 0, sizeof(Expr)); memset(&exprAnd, 0, sizeof(Expr)); assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); pDel = sqlite3ExprDup(db, pExpr->pLeft, 0); if( db->mallocFailed==0 ){ exprAnd.op = TK_AND; exprAnd.pLeft = &compLeft; exprAnd.pRight = &compRight; compLeft.op = TK_GE; compLeft.pLeft = pDel; compLeft.pRight = pExpr->x.pList->a[0].pExpr; compRight.op = TK_LE; compRight.pLeft = pDel; compRight.pRight = pExpr->x.pList->a[1].pExpr; exprToRegister(pDel, exprCodeVector(pParse, pDel, ®Free1)); if( xJump ){ xJump(pParse, &exprAnd, dest, jumpIfNull); }else{ /* Mark the expression is being from the ON or USING clause of a join ** so that the sqlite3ExprCodeTarget() routine will not attempt to move ** it into the Parse.pConstExpr list. We should use a new bit for this, ** for clarity, but we are out of bits in the Expr.flags field so we ** have to reuse the EP_FromJoin bit. Bummer. */ pDel->flags |= EP_FromJoin; sqlite3ExprCodeTarget(pParse, &exprAnd, dest); } sqlite3ReleaseTempReg(pParse, regFree1); } sqlite3ExprDelete(db, pDel); /* Ensure adequate test coverage */ testcase( xJump==sqlite3ExprIfTrue && jumpIfNull==0 && regFree1==0 ); testcase( xJump==sqlite3ExprIfTrue && jumpIfNull==0 && regFree1!=0 ); testcase( xJump==sqlite3ExprIfTrue && jumpIfNull!=0 && regFree1==0 ); testcase( xJump==sqlite3ExprIfTrue && jumpIfNull!=0 && regFree1!=0 ); testcase( xJump==sqlite3ExprIfFalse && jumpIfNull==0 && regFree1==0 ); testcase( xJump==sqlite3ExprIfFalse && jumpIfNull==0 && regFree1!=0 ); testcase( xJump==sqlite3ExprIfFalse && jumpIfNull!=0 && regFree1==0 ); testcase( xJump==sqlite3ExprIfFalse && jumpIfNull!=0 && regFree1!=0 ); testcase( xJump==0 ); } /* ** Generate code for a boolean expression such that a jump is made ** to the label "dest" if the expression is true but execution ** continues straight thru if the expression is false. ** ** If the expression evaluates to NULL (neither true nor false), then ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL. ** ** This code depends on the fact that certain token values (ex: TK_EQ) ** are the same as opcode values (ex: OP_Eq) that implement the corresponding ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in ** the make process cause these values to align. Assert()s in the code ** below verify that the numbers are aligned correctly. */ SQLITE_PRIVATE void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ Vdbe *v = pParse->pVdbe; int op = 0; int regFree1 = 0; int regFree2 = 0; int r1, r2; assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ if( NEVER(pExpr==0) ) return; /* No way this can happen */ assert( !ExprHasVVAProperty(pExpr, EP_Immutable) ); op = pExpr->op; switch( op ){ case TK_AND: case TK_OR: { Expr *pAlt = sqlite3ExprSimplifiedAndOr(pExpr); if( pAlt!=pExpr ){ sqlite3ExprIfTrue(pParse, pAlt, dest, jumpIfNull); }else if( op==TK_AND ){ int d2 = sqlite3VdbeMakeLabel(pParse); testcase( jumpIfNull==0 ); sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); sqlite3VdbeResolveLabel(v, d2); }else{ testcase( jumpIfNull==0 ); sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); } break; } case TK_NOT: { testcase( jumpIfNull==0 ); sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); break; } case TK_TRUTH: { int isNot; /* IS NOT TRUE or IS NOT FALSE */ int isTrue; /* IS TRUE or IS NOT TRUE */ testcase( jumpIfNull==0 ); isNot = pExpr->op2==TK_ISNOT; isTrue = sqlite3ExprTruthValue(pExpr->pRight); testcase( isTrue && isNot ); testcase( !isTrue && isNot ); if( isTrue ^ isNot ){ sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, isNot ? SQLITE_JUMPIFNULL : 0); }else{ sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, isNot ? SQLITE_JUMPIFNULL : 0); } break; } case TK_IS: case TK_ISNOT: testcase( op==TK_IS ); testcase( op==TK_ISNOT ); op = (op==TK_IS) ? TK_EQ : TK_NE; jumpIfNull = SQLITE_NULLEQ; /* no break */ deliberate_fall_through case TK_LT: case TK_LE: case TK_GT: case TK_GE: case TK_NE: case TK_EQ: { if( sqlite3ExprIsVector(pExpr->pLeft) ) goto default_expr; testcase( jumpIfNull==0 ); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, r1, r2, dest, jumpIfNull, ExprHasProperty(pExpr,EP_Commuted)); assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ); VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ); assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ); VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ); testcase( regFree1==0 ); testcase( regFree2==0 ); break; } case TK_ISNULL: case TK_NOTNULL: { assert( TK_ISNULL==OP_IsNull ); testcase( op==TK_ISNULL ); assert( TK_NOTNULL==OP_NotNull ); testcase( op==TK_NOTNULL ); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); sqlite3VdbeAddOp2(v, op, r1, dest); VdbeCoverageIf(v, op==TK_ISNULL); VdbeCoverageIf(v, op==TK_NOTNULL); testcase( regFree1==0 ); break; } case TK_BETWEEN: { testcase( jumpIfNull==0 ); exprCodeBetween(pParse, pExpr, dest, sqlite3ExprIfTrue, jumpIfNull); break; } #ifndef SQLITE_OMIT_SUBQUERY case TK_IN: { int destIfFalse = sqlite3VdbeMakeLabel(pParse); int destIfNull = jumpIfNull ? dest : destIfFalse; sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); sqlite3VdbeGoto(v, dest); sqlite3VdbeResolveLabel(v, destIfFalse); break; } #endif default: { default_expr: if( ExprAlwaysTrue(pExpr) ){ sqlite3VdbeGoto(v, dest); }else if( ExprAlwaysFalse(pExpr) ){ /* No-op */ }else{ r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0); VdbeCoverage(v); testcase( regFree1==0 ); testcase( jumpIfNull==0 ); } break; } } sqlite3ReleaseTempReg(pParse, regFree1); sqlite3ReleaseTempReg(pParse, regFree2); } /* ** Generate code for a boolean expression such that a jump is made ** to the label "dest" if the expression is false but execution ** continues straight thru if the expression is true. ** ** If the expression evaluates to NULL (neither true nor false) then ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull ** is 0. */ SQLITE_PRIVATE void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ Vdbe *v = pParse->pVdbe; int op = 0; int regFree1 = 0; int regFree2 = 0; int r1, r2; assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); if( NEVER(v==0) ) return; /* Existence of VDBE checked by caller */ if( pExpr==0 ) return; assert( !ExprHasVVAProperty(pExpr,EP_Immutable) ); /* The value of pExpr->op and op are related as follows: ** ** pExpr->op op ** --------- ---------- ** TK_ISNULL OP_NotNull ** TK_NOTNULL OP_IsNull ** TK_NE OP_Eq ** TK_EQ OP_Ne ** TK_GT OP_Le ** TK_LE OP_Gt ** TK_GE OP_Lt ** TK_LT OP_Ge ** ** For other values of pExpr->op, op is undefined and unused. ** The value of TK_ and OP_ constants are arranged such that we ** can compute the mapping above using the following expression. ** Assert()s verify that the computation is correct. */ op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); /* Verify correct alignment of TK_ and OP_ constants */ assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); assert( pExpr->op!=TK_NE || op==OP_Eq ); assert( pExpr->op!=TK_EQ || op==OP_Ne ); assert( pExpr->op!=TK_LT || op==OP_Ge ); assert( pExpr->op!=TK_LE || op==OP_Gt ); assert( pExpr->op!=TK_GT || op==OP_Le ); assert( pExpr->op!=TK_GE || op==OP_Lt ); switch( pExpr->op ){ case TK_AND: case TK_OR: { Expr *pAlt = sqlite3ExprSimplifiedAndOr(pExpr); if( pAlt!=pExpr ){ sqlite3ExprIfFalse(pParse, pAlt, dest, jumpIfNull); }else if( pExpr->op==TK_AND ){ testcase( jumpIfNull==0 ); sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); }else{ int d2 = sqlite3VdbeMakeLabel(pParse); testcase( jumpIfNull==0 ); sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); sqlite3VdbeResolveLabel(v, d2); } break; } case TK_NOT: { testcase( jumpIfNull==0 ); sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); break; } case TK_TRUTH: { int isNot; /* IS NOT TRUE or IS NOT FALSE */ int isTrue; /* IS TRUE or IS NOT TRUE */ testcase( jumpIfNull==0 ); isNot = pExpr->op2==TK_ISNOT; isTrue = sqlite3ExprTruthValue(pExpr->pRight); testcase( isTrue && isNot ); testcase( !isTrue && isNot ); if( isTrue ^ isNot ){ /* IS TRUE and IS NOT FALSE */ sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, isNot ? 0 : SQLITE_JUMPIFNULL); }else{ /* IS FALSE and IS NOT TRUE */ sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, isNot ? 0 : SQLITE_JUMPIFNULL); } break; } case TK_IS: case TK_ISNOT: testcase( pExpr->op==TK_IS ); testcase( pExpr->op==TK_ISNOT ); op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ; jumpIfNull = SQLITE_NULLEQ; /* no break */ deliberate_fall_through case TK_LT: case TK_LE: case TK_GT: case TK_GE: case TK_NE: case TK_EQ: { if( sqlite3ExprIsVector(pExpr->pLeft) ) goto default_expr; testcase( jumpIfNull==0 ); r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, r1, r2, dest, jumpIfNull,ExprHasProperty(pExpr,EP_Commuted)); assert(TK_LT==OP_Lt); testcase(op==OP_Lt); VdbeCoverageIf(v,op==OP_Lt); assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); assert(TK_GT==OP_Gt); testcase(op==OP_Gt); VdbeCoverageIf(v,op==OP_Gt); assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge); assert(TK_EQ==OP_Eq); testcase(op==OP_Eq); VdbeCoverageIf(v, op==OP_Eq && jumpIfNull!=SQLITE_NULLEQ); VdbeCoverageIf(v, op==OP_Eq && jumpIfNull==SQLITE_NULLEQ); assert(TK_NE==OP_Ne); testcase(op==OP_Ne); VdbeCoverageIf(v, op==OP_Ne && jumpIfNull!=SQLITE_NULLEQ); VdbeCoverageIf(v, op==OP_Ne && jumpIfNull==SQLITE_NULLEQ); testcase( regFree1==0 ); testcase( regFree2==0 ); break; } case TK_ISNULL: case TK_NOTNULL: { r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); sqlite3VdbeAddOp2(v, op, r1, dest); testcase( op==TK_ISNULL ); VdbeCoverageIf(v, op==TK_ISNULL); testcase( op==TK_NOTNULL ); VdbeCoverageIf(v, op==TK_NOTNULL); testcase( regFree1==0 ); break; } case TK_BETWEEN: { testcase( jumpIfNull==0 ); exprCodeBetween(pParse, pExpr, dest, sqlite3ExprIfFalse, jumpIfNull); break; } #ifndef SQLITE_OMIT_SUBQUERY case TK_IN: { if( jumpIfNull ){ sqlite3ExprCodeIN(pParse, pExpr, dest, dest); }else{ int destIfNull = sqlite3VdbeMakeLabel(pParse); sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull); sqlite3VdbeResolveLabel(v, destIfNull); } break; } #endif default: { default_expr: if( ExprAlwaysFalse(pExpr) ){ sqlite3VdbeGoto(v, dest); }else if( ExprAlwaysTrue(pExpr) ){ /* no-op */ }else{ r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0); VdbeCoverage(v); testcase( regFree1==0 ); testcase( jumpIfNull==0 ); } break; } } sqlite3ReleaseTempReg(pParse, regFree1); sqlite3ReleaseTempReg(pParse, regFree2); } /* ** Like sqlite3ExprIfFalse() except that a copy is made of pExpr before ** code generation, and that copy is deleted after code generation. This ** ensures that the original pExpr is unchanged. */ SQLITE_PRIVATE void sqlite3ExprIfFalseDup(Parse *pParse, Expr *pExpr, int dest,int jumpIfNull){ sqlite3 *db = pParse->db; Expr *pCopy = sqlite3ExprDup(db, pExpr, 0); if( db->mallocFailed==0 ){ sqlite3ExprIfFalse(pParse, pCopy, dest, jumpIfNull); } sqlite3ExprDelete(db, pCopy); } /* ** Expression pVar is guaranteed to be an SQL variable. pExpr may be any ** type of expression. ** ** If pExpr is a simple SQL value - an integer, real, string, blob ** or NULL value - then the VDBE currently being prepared is configured ** to re-prepare each time a new value is bound to variable pVar. ** ** Additionally, if pExpr is a simple SQL value and the value is the ** same as that currently bound to variable pVar, non-zero is returned. ** Otherwise, if the values are not the same or if pExpr is not a simple ** SQL value, zero is returned. */ static int exprCompareVariable(Parse *pParse, Expr *pVar, Expr *pExpr){ int res = 0; int iVar; sqlite3_value *pL, *pR = 0; sqlite3ValueFromExpr(pParse->db, pExpr, SQLITE_UTF8, SQLITE_AFF_BLOB, &pR); if( pR ){ iVar = pVar->iColumn; sqlite3VdbeSetVarmask(pParse->pVdbe, iVar); pL = sqlite3VdbeGetBoundValue(pParse->pReprepare, iVar, SQLITE_AFF_BLOB); if( pL ){ if( sqlite3_value_type(pL)==SQLITE_TEXT ){ sqlite3_value_text(pL); /* Make sure the encoding is UTF-8 */ } res = 0==sqlite3MemCompare(pL, pR, 0); } sqlite3ValueFree(pR); sqlite3ValueFree(pL); } return res; } /* ** Do a deep comparison of two expression trees. Return 0 if the two ** expressions are completely identical. Return 1 if they differ only ** by a COLLATE operator at the top level. Return 2 if there are differences ** other than the top-level COLLATE operator. ** ** If any subelement of pB has Expr.iTable==(-1) then it is allowed ** to compare equal to an equivalent element in pA with Expr.iTable==iTab. ** ** The pA side might be using TK_REGISTER. If that is the case and pB is ** not using TK_REGISTER but is otherwise equivalent, then still return 0. ** ** Sometimes this routine will return 2 even if the two expressions ** really are equivalent. If we cannot prove that the expressions are ** identical, we return 2 just to be safe. So if this routine ** returns 2, then you do not really know for certain if the two ** expressions are the same. But if you get a 0 or 1 return, then you ** can be sure the expressions are the same. In the places where ** this routine is used, it does not hurt to get an extra 2 - that ** just might result in some slightly slower code. But returning ** an incorrect 0 or 1 could lead to a malfunction. ** ** If pParse is not NULL then TK_VARIABLE terms in pA with bindings in ** pParse->pReprepare can be matched against literals in pB. The ** pParse->pVdbe->expmask bitmask is updated for each variable referenced. ** If pParse is NULL (the normal case) then any TK_VARIABLE term in ** Argument pParse should normally be NULL. If it is not NULL and pA or ** pB causes a return value of 2. */ SQLITE_PRIVATE int sqlite3ExprCompare(Parse *pParse, Expr *pA, Expr *pB, int iTab){ u32 combinedFlags; if( pA==0 || pB==0 ){ return pB==pA ? 0 : 2; } if( pParse && pA->op==TK_VARIABLE && exprCompareVariable(pParse, pA, pB) ){ return 0; } combinedFlags = pA->flags | pB->flags; if( combinedFlags & EP_IntValue ){ if( (pA->flags&pB->flags&EP_IntValue)!=0 && pA->u.iValue==pB->u.iValue ){ return 0; } return 2; } if( pA->op!=pB->op || pA->op==TK_RAISE ){ if( pA->op==TK_COLLATE && sqlite3ExprCompare(pParse, pA->pLeft,pB,iTab)<2 ){ return 1; } if( pB->op==TK_COLLATE && sqlite3ExprCompare(pParse, pA,pB->pLeft,iTab)<2 ){ return 1; } return 2; } if( pA->op!=TK_COLUMN && pA->op!=TK_AGG_COLUMN && pA->u.zToken ){ if( pA->op==TK_FUNCTION || pA->op==TK_AGG_FUNCTION ){ if( sqlite3StrICmp(pA->u.zToken,pB->u.zToken)!=0 ) return 2; #ifndef SQLITE_OMIT_WINDOWFUNC assert( pA->op==pB->op ); if( ExprHasProperty(pA,EP_WinFunc)!=ExprHasProperty(pB,EP_WinFunc) ){ return 2; } if( ExprHasProperty(pA,EP_WinFunc) ){ if( sqlite3WindowCompare(pParse, pA->y.pWin, pB->y.pWin, 1)!=0 ){ return 2; } } #endif }else if( pA->op==TK_NULL ){ return 0; }else if( pA->op==TK_COLLATE ){ if( sqlite3_stricmp(pA->u.zToken,pB->u.zToken)!=0 ) return 2; }else if( ALWAYS(pB->u.zToken!=0) && strcmp(pA->u.zToken,pB->u.zToken)!=0 ){ return 2; } } if( (pA->flags & (EP_Distinct|EP_Commuted)) != (pB->flags & (EP_Distinct|EP_Commuted)) ) return 2; if( ALWAYS((combinedFlags & EP_TokenOnly)==0) ){ if( combinedFlags & EP_xIsSelect ) return 2; if( (combinedFlags & EP_FixedCol)==0 && sqlite3ExprCompare(pParse, pA->pLeft, pB->pLeft, iTab) ) return 2; if( sqlite3ExprCompare(pParse, pA->pRight, pB->pRight, iTab) ) return 2; if( sqlite3ExprListCompare(pA->x.pList, pB->x.pList, iTab) ) return 2; if( pA->op!=TK_STRING && pA->op!=TK_TRUEFALSE && ALWAYS((combinedFlags & EP_Reduced)==0) ){ if( pA->iColumn!=pB->iColumn ) return 2; if( pA->op2!=pB->op2 && pA->op==TK_TRUTH ) return 2; if( pA->op!=TK_IN && pA->iTable!=pB->iTable && pA->iTable!=iTab ){ return 2; } } } return 0; } /* ** Compare two ExprList objects. Return 0 if they are identical, 1 ** if they are certainly different, or 2 if it is not possible to ** determine if they are identical or not. ** ** If any subelement of pB has Expr.iTable==(-1) then it is allowed ** to compare equal to an equivalent element in pA with Expr.iTable==iTab. ** ** This routine might return non-zero for equivalent ExprLists. The ** only consequence will be disabled optimizations. But this routine ** must never return 0 if the two ExprList objects are different, or ** a malfunction will result. ** ** Two NULL pointers are considered to be the same. But a NULL pointer ** always differs from a non-NULL pointer. */ SQLITE_PRIVATE int sqlite3ExprListCompare(ExprList *pA, ExprList *pB, int iTab){ int i; if( pA==0 && pB==0 ) return 0; if( pA==0 || pB==0 ) return 1; if( pA->nExpr!=pB->nExpr ) return 1; for(i=0; inExpr; i++){ int res; Expr *pExprA = pA->a[i].pExpr; Expr *pExprB = pB->a[i].pExpr; if( pA->a[i].sortFlags!=pB->a[i].sortFlags ) return 1; if( (res = sqlite3ExprCompare(0, pExprA, pExprB, iTab)) ) return res; } return 0; } /* ** Like sqlite3ExprCompare() except COLLATE operators at the top-level ** are ignored. */ SQLITE_PRIVATE int sqlite3ExprCompareSkip(Expr *pA, Expr *pB, int iTab){ return sqlite3ExprCompare(0, sqlite3ExprSkipCollateAndLikely(pA), sqlite3ExprSkipCollateAndLikely(pB), iTab); } /* ** Return non-zero if Expr p can only be true if pNN is not NULL. ** ** Or if seenNot is true, return non-zero if Expr p can only be ** non-NULL if pNN is not NULL */ static int exprImpliesNotNull( Parse *pParse, /* Parsing context */ Expr *p, /* The expression to be checked */ Expr *pNN, /* The expression that is NOT NULL */ int iTab, /* Table being evaluated */ int seenNot /* Return true only if p can be any non-NULL value */ ){ assert( p ); assert( pNN ); if( sqlite3ExprCompare(pParse, p, pNN, iTab)==0 ){ return pNN->op!=TK_NULL; } switch( p->op ){ case TK_IN: { if( seenNot && ExprHasProperty(p, EP_xIsSelect) ) return 0; assert( ExprHasProperty(p,EP_xIsSelect) || (p->x.pList!=0 && p->x.pList->nExpr>0) ); return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1); } case TK_BETWEEN: { ExprList *pList = p->x.pList; assert( pList!=0 ); assert( pList->nExpr==2 ); if( seenNot ) return 0; if( exprImpliesNotNull(pParse, pList->a[0].pExpr, pNN, iTab, 1) || exprImpliesNotNull(pParse, pList->a[1].pExpr, pNN, iTab, 1) ){ return 1; } return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1); } case TK_EQ: case TK_NE: case TK_LT: case TK_LE: case TK_GT: case TK_GE: case TK_PLUS: case TK_MINUS: case TK_BITOR: case TK_LSHIFT: case TK_RSHIFT: case TK_CONCAT: seenNot = 1; /* no break */ deliberate_fall_through case TK_STAR: case TK_REM: case TK_BITAND: case TK_SLASH: { if( exprImpliesNotNull(pParse, p->pRight, pNN, iTab, seenNot) ) return 1; /* no break */ deliberate_fall_through } case TK_SPAN: case TK_COLLATE: case TK_UPLUS: case TK_UMINUS: { return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, seenNot); } case TK_TRUTH: { if( seenNot ) return 0; if( p->op2!=TK_IS ) return 0; return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1); } case TK_BITNOT: case TK_NOT: { return exprImpliesNotNull(pParse, p->pLeft, pNN, iTab, 1); } } return 0; } /* ** Return true if we can prove the pE2 will always be true if pE1 is ** true. Return false if we cannot complete the proof or if pE2 might ** be false. Examples: ** ** pE1: x==5 pE2: x==5 Result: true ** pE1: x>0 pE2: x==5 Result: false ** pE1: x=21 pE2: x=21 OR y=43 Result: true ** pE1: x!=123 pE2: x IS NOT NULL Result: true ** pE1: x!=?1 pE2: x IS NOT NULL Result: true ** pE1: x IS NULL pE2: x IS NOT NULL Result: false ** pE1: x IS ?2 pE2: x IS NOT NULL Reuslt: false ** ** When comparing TK_COLUMN nodes between pE1 and pE2, if pE2 has ** Expr.iTable<0 then assume a table number given by iTab. ** ** If pParse is not NULL, then the values of bound variables in pE1 are ** compared against literal values in pE2 and pParse->pVdbe->expmask is ** modified to record which bound variables are referenced. If pParse ** is NULL, then false will be returned if pE1 contains any bound variables. ** ** When in doubt, return false. Returning true might give a performance ** improvement. Returning false might cause a performance reduction, but ** it will always give the correct answer and is hence always safe. */ SQLITE_PRIVATE int sqlite3ExprImpliesExpr(Parse *pParse, Expr *pE1, Expr *pE2, int iTab){ if( sqlite3ExprCompare(pParse, pE1, pE2, iTab)==0 ){ return 1; } if( pE2->op==TK_OR && (sqlite3ExprImpliesExpr(pParse, pE1, pE2->pLeft, iTab) || sqlite3ExprImpliesExpr(pParse, pE1, pE2->pRight, iTab) ) ){ return 1; } if( pE2->op==TK_NOTNULL && exprImpliesNotNull(pParse, pE1, pE2->pLeft, iTab, 0) ){ return 1; } return 0; } /* ** This is the Expr node callback for sqlite3ExprImpliesNonNullRow(). ** If the expression node requires that the table at pWalker->iCur ** have one or more non-NULL column, then set pWalker->eCode to 1 and abort. ** ** This routine controls an optimization. False positives (setting ** pWalker->eCode to 1 when it should not be) are deadly, but false-negatives ** (never setting pWalker->eCode) is a harmless missed optimization. */ static int impliesNotNullRow(Walker *pWalker, Expr *pExpr){ testcase( pExpr->op==TK_AGG_COLUMN ); testcase( pExpr->op==TK_AGG_FUNCTION ); if( ExprHasProperty(pExpr, EP_FromJoin) ) return WRC_Prune; switch( pExpr->op ){ case TK_ISNOT: case TK_ISNULL: case TK_NOTNULL: case TK_IS: case TK_OR: case TK_VECTOR: case TK_CASE: case TK_IN: case TK_FUNCTION: case TK_TRUTH: testcase( pExpr->op==TK_ISNOT ); testcase( pExpr->op==TK_ISNULL ); testcase( pExpr->op==TK_NOTNULL ); testcase( pExpr->op==TK_IS ); testcase( pExpr->op==TK_OR ); testcase( pExpr->op==TK_VECTOR ); testcase( pExpr->op==TK_CASE ); testcase( pExpr->op==TK_IN ); testcase( pExpr->op==TK_FUNCTION ); testcase( pExpr->op==TK_TRUTH ); return WRC_Prune; case TK_COLUMN: if( pWalker->u.iCur==pExpr->iTable ){ pWalker->eCode = 1; return WRC_Abort; } return WRC_Prune; case TK_AND: if( pWalker->eCode==0 ){ sqlite3WalkExpr(pWalker, pExpr->pLeft); if( pWalker->eCode ){ pWalker->eCode = 0; sqlite3WalkExpr(pWalker, pExpr->pRight); } } return WRC_Prune; case TK_BETWEEN: if( sqlite3WalkExpr(pWalker, pExpr->pLeft)==WRC_Abort ){ assert( pWalker->eCode ); return WRC_Abort; } return WRC_Prune; /* Virtual tables are allowed to use constraints like x=NULL. So ** a term of the form x=y does not prove that y is not null if x ** is the column of a virtual table */ case TK_EQ: case TK_NE: case TK_LT: case TK_LE: case TK_GT: case TK_GE: { Expr *pLeft = pExpr->pLeft; Expr *pRight = pExpr->pRight; testcase( pExpr->op==TK_EQ ); testcase( pExpr->op==TK_NE ); testcase( pExpr->op==TK_LT ); testcase( pExpr->op==TK_LE ); testcase( pExpr->op==TK_GT ); testcase( pExpr->op==TK_GE ); /* The y.pTab=0 assignment in wherecode.c always happens after the ** impliesNotNullRow() test */ if( (pLeft->op==TK_COLUMN && ALWAYS(pLeft->y.pTab!=0) && IsVirtual(pLeft->y.pTab)) || (pRight->op==TK_COLUMN && ALWAYS(pRight->y.pTab!=0) && IsVirtual(pRight->y.pTab)) ){ return WRC_Prune; } /* no break */ deliberate_fall_through } default: return WRC_Continue; } } /* ** Return true (non-zero) if expression p can only be true if at least ** one column of table iTab is non-null. In other words, return true ** if expression p will always be NULL or false if every column of iTab ** is NULL. ** ** False negatives are acceptable. In other words, it is ok to return ** zero even if expression p will never be true of every column of iTab ** is NULL. A false negative is merely a missed optimization opportunity. ** ** False positives are not allowed, however. A false positive may result ** in an incorrect answer. ** ** Terms of p that are marked with EP_FromJoin (and hence that come from ** the ON or USING clauses of LEFT JOINS) are excluded from the analysis. ** ** This routine is used to check if a LEFT JOIN can be converted into ** an ordinary JOIN. The p argument is the WHERE clause. If the WHERE ** clause requires that some column of the right table of the LEFT JOIN ** be non-NULL, then the LEFT JOIN can be safely converted into an ** ordinary join. */ SQLITE_PRIVATE int sqlite3ExprImpliesNonNullRow(Expr *p, int iTab){ Walker w; p = sqlite3ExprSkipCollateAndLikely(p); if( p==0 ) return 0; if( p->op==TK_NOTNULL ){ p = p->pLeft; }else{ while( p->op==TK_AND ){ if( sqlite3ExprImpliesNonNullRow(p->pLeft, iTab) ) return 1; p = p->pRight; } } w.xExprCallback = impliesNotNullRow; w.xSelectCallback = 0; w.xSelectCallback2 = 0; w.eCode = 0; w.u.iCur = iTab; sqlite3WalkExpr(&w, p); return w.eCode; } /* ** An instance of the following structure is used by the tree walker ** to determine if an expression can be evaluated by reference to the ** index only, without having to do a search for the corresponding ** table entry. The IdxCover.pIdx field is the index. IdxCover.iCur ** is the cursor for the table. */ struct IdxCover { Index *pIdx; /* The index to be tested for coverage */ int iCur; /* Cursor number for the table corresponding to the index */ }; /* ** Check to see if there are references to columns in table ** pWalker->u.pIdxCover->iCur can be satisfied using the index ** pWalker->u.pIdxCover->pIdx. */ static int exprIdxCover(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_COLUMN && pExpr->iTable==pWalker->u.pIdxCover->iCur && sqlite3TableColumnToIndex(pWalker->u.pIdxCover->pIdx, pExpr->iColumn)<0 ){ pWalker->eCode = 1; return WRC_Abort; } return WRC_Continue; } /* ** Determine if an index pIdx on table with cursor iCur contains will ** the expression pExpr. Return true if the index does cover the ** expression and false if the pExpr expression references table columns ** that are not found in the index pIdx. ** ** An index covering an expression means that the expression can be ** evaluated using only the index and without having to lookup the ** corresponding table entry. */ SQLITE_PRIVATE int sqlite3ExprCoveredByIndex( Expr *pExpr, /* The index to be tested */ int iCur, /* The cursor number for the corresponding table */ Index *pIdx /* The index that might be used for coverage */ ){ Walker w; struct IdxCover xcov; memset(&w, 0, sizeof(w)); xcov.iCur = iCur; xcov.pIdx = pIdx; w.xExprCallback = exprIdxCover; w.u.pIdxCover = &xcov; sqlite3WalkExpr(&w, pExpr); return !w.eCode; } /* ** An instance of the following structure is used by the tree walker ** to count references to table columns in the arguments of an ** aggregate function, in order to implement the ** sqlite3FunctionThisSrc() routine. */ struct SrcCount { SrcList *pSrc; /* One particular FROM clause in a nested query */ int iSrcInner; /* Smallest cursor number in this context */ int nThis; /* Number of references to columns in pSrcList */ int nOther; /* Number of references to columns in other FROM clauses */ }; /* ** xSelect callback for sqlite3FunctionUsesThisSrc(). If this is the first ** SELECT with a FROM clause encountered during this iteration, set ** SrcCount.iSrcInner to the cursor number of the leftmost object in ** the FROM cause. */ static int selectSrcCount(Walker *pWalker, Select *pSel){ struct SrcCount *p = pWalker->u.pSrcCount; if( p->iSrcInner==0x7FFFFFFF && ALWAYS(pSel->pSrc) && pSel->pSrc->nSrc ){ pWalker->u.pSrcCount->iSrcInner = pSel->pSrc->a[0].iCursor; } return WRC_Continue; } /* ** Count the number of references to columns. */ static int exprSrcCount(Walker *pWalker, Expr *pExpr){ /* There was once a NEVER() on the second term on the grounds that ** sqlite3FunctionUsesThisSrc() was always called before ** sqlite3ExprAnalyzeAggregates() and so the TK_COLUMNs have not yet ** been converted into TK_AGG_COLUMN. But this is no longer true due ** to window functions - sqlite3WindowRewrite() may now indirectly call ** FunctionUsesThisSrc() when creating a new sub-select. */ if( pExpr->op==TK_COLUMN || pExpr->op==TK_AGG_COLUMN ){ int i; struct SrcCount *p = pWalker->u.pSrcCount; SrcList *pSrc = p->pSrc; int nSrc = pSrc ? pSrc->nSrc : 0; for(i=0; iiTable==pSrc->a[i].iCursor ) break; } if( inThis++; }else if( pExpr->iTableiSrcInner ){ /* In a well-formed parse tree (no name resolution errors), ** TK_COLUMN nodes with smaller Expr.iTable values are in an ** outer context. Those are the only ones to count as "other" */ p->nOther++; } } return WRC_Continue; } /* ** Determine if any of the arguments to the pExpr Function reference ** pSrcList. Return true if they do. Also return true if the function ** has no arguments or has only constant arguments. Return false if pExpr ** references columns but not columns of tables found in pSrcList. */ SQLITE_PRIVATE int sqlite3FunctionUsesThisSrc(Expr *pExpr, SrcList *pSrcList){ Walker w; struct SrcCount cnt; assert( pExpr->op==TK_AGG_FUNCTION ); memset(&w, 0, sizeof(w)); w.xExprCallback = exprSrcCount; w.xSelectCallback = selectSrcCount; w.u.pSrcCount = &cnt; cnt.pSrc = pSrcList; cnt.iSrcInner = (pSrcList&&pSrcList->nSrc)?pSrcList->a[0].iCursor:0x7FFFFFFF; cnt.nThis = 0; cnt.nOther = 0; sqlite3WalkExprList(&w, pExpr->x.pList); #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(pExpr, EP_WinFunc) ){ sqlite3WalkExpr(&w, pExpr->y.pWin->pFilter); } #endif return cnt.nThis>0 || cnt.nOther==0; } /* ** This is a Walker expression node callback. ** ** For Expr nodes that contain pAggInfo pointers, make sure the AggInfo ** object that is referenced does not refer directly to the Expr. If ** it does, make a copy. This is done because the pExpr argument is ** subject to change. ** ** The copy is stored on pParse->pConstExpr with a register number of 0. ** This will cause the expression to be deleted automatically when the ** Parse object is destroyed, but the zero register number means that it ** will not generate any code in the preamble. */ static int agginfoPersistExprCb(Walker *pWalker, Expr *pExpr){ if( ALWAYS(!ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced)) && pExpr->pAggInfo!=0 ){ AggInfo *pAggInfo = pExpr->pAggInfo; int iAgg = pExpr->iAgg; Parse *pParse = pWalker->pParse; sqlite3 *db = pParse->db; assert( pExpr->op==TK_AGG_COLUMN || pExpr->op==TK_AGG_FUNCTION ); if( pExpr->op==TK_AGG_COLUMN ){ assert( iAgg>=0 && iAggnColumn ); if( pAggInfo->aCol[iAgg].pCExpr==pExpr ){ pExpr = sqlite3ExprDup(db, pExpr, 0); if( pExpr ){ pAggInfo->aCol[iAgg].pCExpr = pExpr; pParse->pConstExpr = sqlite3ExprListAppend(pParse, pParse->pConstExpr, pExpr); } } }else{ assert( iAgg>=0 && iAggnFunc ); if( pAggInfo->aFunc[iAgg].pFExpr==pExpr ){ pExpr = sqlite3ExprDup(db, pExpr, 0); if( pExpr ){ pAggInfo->aFunc[iAgg].pFExpr = pExpr; pParse->pConstExpr = sqlite3ExprListAppend(pParse, pParse->pConstExpr, pExpr); } } } } return WRC_Continue; } /* ** Initialize a Walker object so that will persist AggInfo entries referenced ** by the tree that is walked. */ SQLITE_PRIVATE void sqlite3AggInfoPersistWalkerInit(Walker *pWalker, Parse *pParse){ memset(pWalker, 0, sizeof(*pWalker)); pWalker->pParse = pParse; pWalker->xExprCallback = agginfoPersistExprCb; pWalker->xSelectCallback = sqlite3SelectWalkNoop; } /* ** Add a new element to the pAggInfo->aCol[] array. Return the index of ** the new element. Return a negative number if malloc fails. */ static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){ int i; pInfo->aCol = sqlite3ArrayAllocate( db, pInfo->aCol, sizeof(pInfo->aCol[0]), &pInfo->nColumn, &i ); return i; } /* ** Add a new element to the pAggInfo->aFunc[] array. Return the index of ** the new element. Return a negative number if malloc fails. */ static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){ int i; pInfo->aFunc = sqlite3ArrayAllocate( db, pInfo->aFunc, sizeof(pInfo->aFunc[0]), &pInfo->nFunc, &i ); return i; } /* ** This is the xExprCallback for a tree walker. It is used to ** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates ** for additional information. */ static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ int i; NameContext *pNC = pWalker->u.pNC; Parse *pParse = pNC->pParse; SrcList *pSrcList = pNC->pSrcList; AggInfo *pAggInfo = pNC->uNC.pAggInfo; assert( pNC->ncFlags & NC_UAggInfo ); switch( pExpr->op ){ case TK_AGG_COLUMN: case TK_COLUMN: { testcase( pExpr->op==TK_AGG_COLUMN ); testcase( pExpr->op==TK_COLUMN ); /* Check to see if the column is in one of the tables in the FROM ** clause of the aggregate query */ if( ALWAYS(pSrcList!=0) ){ struct SrcList_item *pItem = pSrcList->a; for(i=0; inSrc; i++, pItem++){ struct AggInfo_col *pCol; assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); if( pExpr->iTable==pItem->iCursor ){ /* If we reach this point, it means that pExpr refers to a table ** that is in the FROM clause of the aggregate query. ** ** Make an entry for the column in pAggInfo->aCol[] if there ** is not an entry there already. */ int k; pCol = pAggInfo->aCol; for(k=0; knColumn; k++, pCol++){ if( pCol->iTable==pExpr->iTable && pCol->iColumn==pExpr->iColumn ){ break; } } if( (k>=pAggInfo->nColumn) && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0 ){ pCol = &pAggInfo->aCol[k]; pCol->pTab = pExpr->y.pTab; pCol->iTable = pExpr->iTable; pCol->iColumn = pExpr->iColumn; pCol->iMem = ++pParse->nMem; pCol->iSorterColumn = -1; pCol->pCExpr = pExpr; if( pAggInfo->pGroupBy ){ int j, n; ExprList *pGB = pAggInfo->pGroupBy; struct ExprList_item *pTerm = pGB->a; n = pGB->nExpr; for(j=0; jpExpr; if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable && pE->iColumn==pExpr->iColumn ){ pCol->iSorterColumn = j; break; } } } if( pCol->iSorterColumn<0 ){ pCol->iSorterColumn = pAggInfo->nSortingColumn++; } } /* There is now an entry for pExpr in pAggInfo->aCol[] (either ** because it was there before or because we just created it). ** Convert the pExpr to be a TK_AGG_COLUMN referring to that ** pAggInfo->aCol[] entry. */ ExprSetVVAProperty(pExpr, EP_NoReduce); pExpr->pAggInfo = pAggInfo; pExpr->op = TK_AGG_COLUMN; pExpr->iAgg = (i16)k; break; } /* endif pExpr->iTable==pItem->iCursor */ } /* end loop over pSrcList */ } return WRC_Prune; } case TK_AGG_FUNCTION: { if( (pNC->ncFlags & NC_InAggFunc)==0 && pWalker->walkerDepth==pExpr->op2 ){ /* Check to see if pExpr is a duplicate of another aggregate ** function that is already in the pAggInfo structure */ struct AggInfo_func *pItem = pAggInfo->aFunc; for(i=0; inFunc; i++, pItem++){ if( sqlite3ExprCompare(0, pItem->pFExpr, pExpr, -1)==0 ){ break; } } if( i>=pAggInfo->nFunc ){ /* pExpr is original. Make a new entry in pAggInfo->aFunc[] */ u8 enc = ENC(pParse->db); i = addAggInfoFunc(pParse->db, pAggInfo); if( i>=0 ){ assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); pItem = &pAggInfo->aFunc[i]; pItem->pFExpr = pExpr; pItem->iMem = ++pParse->nMem; assert( !ExprHasProperty(pExpr, EP_IntValue) ); pItem->pFunc = sqlite3FindFunction(pParse->db, pExpr->u.zToken, pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0); if( pExpr->flags & EP_Distinct ){ pItem->iDistinct = pParse->nTab++; }else{ pItem->iDistinct = -1; } } } /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry */ assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) ); ExprSetVVAProperty(pExpr, EP_NoReduce); pExpr->iAgg = (i16)i; pExpr->pAggInfo = pAggInfo; return WRC_Prune; }else{ return WRC_Continue; } } } return WRC_Continue; } /* ** Analyze the pExpr expression looking for aggregate functions and ** for variables that need to be added to AggInfo object that pNC->pAggInfo ** points to. Additional entries are made on the AggInfo object as ** necessary. ** ** This routine should only be called after the expression has been ** analyzed by sqlite3ResolveExprNames(). */ SQLITE_PRIVATE void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ Walker w; w.xExprCallback = analyzeAggregate; w.xSelectCallback = sqlite3WalkerDepthIncrease; w.xSelectCallback2 = sqlite3WalkerDepthDecrease; w.walkerDepth = 0; w.u.pNC = pNC; w.pParse = 0; assert( pNC->pSrcList!=0 ); sqlite3WalkExpr(&w, pExpr); } /* ** Call sqlite3ExprAnalyzeAggregates() for every expression in an ** expression list. Return the number of errors. ** ** If an error is found, the analysis is cut short. */ SQLITE_PRIVATE void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ struct ExprList_item *pItem; int i; if( pList ){ for(pItem=pList->a, i=0; inExpr; i++, pItem++){ sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr); } } } /* ** Allocate a single new register for use to hold some intermediate result. */ SQLITE_PRIVATE int sqlite3GetTempReg(Parse *pParse){ if( pParse->nTempReg==0 ){ return ++pParse->nMem; } return pParse->aTempReg[--pParse->nTempReg]; } /* ** Deallocate a register, making available for reuse for some other ** purpose. */ SQLITE_PRIVATE void sqlite3ReleaseTempReg(Parse *pParse, int iReg){ if( iReg ){ sqlite3VdbeReleaseRegisters(pParse, iReg, 1, 0, 0); if( pParse->nTempRegaTempReg) ){ pParse->aTempReg[pParse->nTempReg++] = iReg; } } } /* ** Allocate or deallocate a block of nReg consecutive registers. */ SQLITE_PRIVATE int sqlite3GetTempRange(Parse *pParse, int nReg){ int i, n; if( nReg==1 ) return sqlite3GetTempReg(pParse); i = pParse->iRangeReg; n = pParse->nRangeReg; if( nReg<=n ){ pParse->iRangeReg += nReg; pParse->nRangeReg -= nReg; }else{ i = pParse->nMem+1; pParse->nMem += nReg; } return i; } SQLITE_PRIVATE void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){ if( nReg==1 ){ sqlite3ReleaseTempReg(pParse, iReg); return; } sqlite3VdbeReleaseRegisters(pParse, iReg, nReg, 0, 0); if( nReg>pParse->nRangeReg ){ pParse->nRangeReg = nReg; pParse->iRangeReg = iReg; } } /* ** Mark all temporary registers as being unavailable for reuse. ** ** Always invoke this procedure after coding a subroutine or co-routine ** that might be invoked from other parts of the code, to ensure that ** the sub/co-routine does not use registers in common with the code that ** invokes the sub/co-routine. */ SQLITE_PRIVATE void sqlite3ClearTempRegCache(Parse *pParse){ pParse->nTempReg = 0; pParse->nRangeReg = 0; } /* ** Validate that no temporary register falls within the range of ** iFirst..iLast, inclusive. This routine is only call from within assert() ** statements. */ #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3NoTempsInRange(Parse *pParse, int iFirst, int iLast){ int i; if( pParse->nRangeReg>0 && pParse->iRangeReg+pParse->nRangeReg > iFirst && pParse->iRangeReg <= iLast ){ return 0; } for(i=0; inTempReg; i++){ if( pParse->aTempReg[i]>=iFirst && pParse->aTempReg[i]<=iLast ){ return 0; } } return 1; } #endif /* SQLITE_DEBUG */ /************** End of expr.c ************************************************/ /************** Begin file alter.c *******************************************/ /* ** 2005 February 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that used to generate VDBE code ** that implements the ALTER TABLE command. */ /* #include "sqliteInt.h" */ /* ** The code in this file only exists if we are not omitting the ** ALTER TABLE logic from the build. */ #ifndef SQLITE_OMIT_ALTERTABLE /* ** Parameter zName is the name of a table that is about to be altered ** (either with ALTER TABLE ... RENAME TO or ALTER TABLE ... ADD COLUMN). ** If the table is a system table, this function leaves an error message ** in pParse->zErr (system tables may not be altered) and returns non-zero. ** ** Or, if zName is not a system table, zero is returned. */ static int isAlterableTable(Parse *pParse, Table *pTab){ if( 0==sqlite3StrNICmp(pTab->zName, "sqlite_", 7) #ifndef SQLITE_OMIT_VIRTUALTABLE || ( (pTab->tabFlags & TF_Shadow)!=0 && sqlite3ReadOnlyShadowTables(pParse->db) ) #endif ){ sqlite3ErrorMsg(pParse, "table %s may not be altered", pTab->zName); return 1; } return 0; } /* ** Generate code to verify that the schemas of database zDb and, if ** bTemp is not true, database "temp", can still be parsed. This is ** called at the end of the generation of an ALTER TABLE ... RENAME ... ** statement to ensure that the operation has not rendered any schema ** objects unusable. */ static void renameTestSchema(Parse *pParse, const char *zDb, int bTemp){ sqlite3NestedParse(pParse, "SELECT 1 " "FROM \"%w\"." DFLT_SCHEMA_TABLE " " "WHERE name NOT LIKE 'sqliteX_%%' ESCAPE 'X'" " AND sql NOT LIKE 'create virtual%%'" " AND sqlite_rename_test(%Q, sql, type, name, %d)=NULL ", zDb, zDb, bTemp ); if( bTemp==0 ){ sqlite3NestedParse(pParse, "SELECT 1 " "FROM temp." DFLT_SCHEMA_TABLE " " "WHERE name NOT LIKE 'sqliteX_%%' ESCAPE 'X'" " AND sql NOT LIKE 'create virtual%%'" " AND sqlite_rename_test(%Q, sql, type, name, 1)=NULL ", zDb ); } } /* ** Generate code to reload the schema for database iDb. And, if iDb!=1, for ** the temp database as well. */ static void renameReloadSchema(Parse *pParse, int iDb){ Vdbe *v = pParse->pVdbe; if( v ){ sqlite3ChangeCookie(pParse, iDb); sqlite3VdbeAddParseSchemaOp(pParse->pVdbe, iDb, 0); if( iDb!=1 ) sqlite3VdbeAddParseSchemaOp(pParse->pVdbe, 1, 0); } } /* ** Generate code to implement the "ALTER TABLE xxx RENAME TO yyy" ** command. */ SQLITE_PRIVATE void sqlite3AlterRenameTable( Parse *pParse, /* Parser context. */ SrcList *pSrc, /* The table to rename. */ Token *pName /* The new table name. */ ){ int iDb; /* Database that contains the table */ char *zDb; /* Name of database iDb */ Table *pTab; /* Table being renamed */ char *zName = 0; /* NULL-terminated version of pName */ sqlite3 *db = pParse->db; /* Database connection */ int nTabName; /* Number of UTF-8 characters in zTabName */ const char *zTabName; /* Original name of the table */ Vdbe *v; VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */ u32 savedDbFlags; /* Saved value of db->mDbFlags */ savedDbFlags = db->mDbFlags; if( NEVER(db->mallocFailed) ) goto exit_rename_table; assert( pSrc->nSrc==1 ); assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]); if( !pTab ) goto exit_rename_table; iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); zDb = db->aDb[iDb].zDbSName; db->mDbFlags |= DBFLAG_PreferBuiltin; /* Get a NULL terminated version of the new table name. */ zName = sqlite3NameFromToken(db, pName); if( !zName ) goto exit_rename_table; /* Check that a table or index named 'zName' does not already exist ** in database iDb. If so, this is an error. */ if( sqlite3FindTable(db, zName, zDb) || sqlite3FindIndex(db, zName, zDb) || sqlite3IsShadowTableOf(db, pTab, zName) ){ sqlite3ErrorMsg(pParse, "there is already another table or index with this name: %s", zName); goto exit_rename_table; } /* Make sure it is not a system table being altered, or a reserved name ** that the table is being renamed to. */ if( SQLITE_OK!=isAlterableTable(pParse, pTab) ){ goto exit_rename_table; } if( SQLITE_OK!=sqlite3CheckObjectName(pParse,zName,"table",zName) ){ goto exit_rename_table; } #ifndef SQLITE_OMIT_VIEW if( pTab->pSelect ){ sqlite3ErrorMsg(pParse, "view %s may not be altered", pTab->zName); goto exit_rename_table; } #endif #ifndef SQLITE_OMIT_AUTHORIZATION /* Invoke the authorization callback. */ if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, 0) ){ goto exit_rename_table; } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE if( sqlite3ViewGetColumnNames(pParse, pTab) ){ goto exit_rename_table; } if( IsVirtual(pTab) ){ pVTab = sqlite3GetVTable(db, pTab); if( pVTab->pVtab->pModule->xRename==0 ){ pVTab = 0; } } #endif /* Begin a transaction for database iDb. Then modify the schema cookie ** (since the ALTER TABLE modifies the schema). Call sqlite3MayAbort(), ** as the scalar functions (e.g. sqlite_rename_table()) invoked by the ** nested SQL may raise an exception. */ v = sqlite3GetVdbe(pParse); if( v==0 ){ goto exit_rename_table; } sqlite3MayAbort(pParse); /* figure out how many UTF-8 characters are in zName */ zTabName = pTab->zName; nTabName = sqlite3Utf8CharLen(zTabName, -1); /* Rewrite all CREATE TABLE, INDEX, TRIGGER or VIEW statements in ** the schema to use the new table name. */ sqlite3NestedParse(pParse, "UPDATE \"%w\"." DFLT_SCHEMA_TABLE " SET " "sql = sqlite_rename_table(%Q, type, name, sql, %Q, %Q, %d) " "WHERE (type!='index' OR tbl_name=%Q COLLATE nocase)" "AND name NOT LIKE 'sqliteX_%%' ESCAPE 'X'" , zDb, zDb, zTabName, zName, (iDb==1), zTabName ); /* Update the tbl_name and name columns of the sqlite_schema table ** as required. */ sqlite3NestedParse(pParse, "UPDATE %Q." DFLT_SCHEMA_TABLE " SET " "tbl_name = %Q, " "name = CASE " "WHEN type='table' THEN %Q " "WHEN name LIKE 'sqliteX_autoindex%%' ESCAPE 'X' " " AND type='index' THEN " "'sqlite_autoindex_' || %Q || substr(name,%d+18) " "ELSE name END " "WHERE tbl_name=%Q COLLATE nocase AND " "(type='table' OR type='index' OR type='trigger');", zDb, zName, zName, zName, nTabName, zTabName ); #ifndef SQLITE_OMIT_AUTOINCREMENT /* If the sqlite_sequence table exists in this database, then update ** it with the new table name. */ if( sqlite3FindTable(db, "sqlite_sequence", zDb) ){ sqlite3NestedParse(pParse, "UPDATE \"%w\".sqlite_sequence set name = %Q WHERE name = %Q", zDb, zName, pTab->zName); } #endif /* If the table being renamed is not itself part of the temp database, ** edit view and trigger definitions within the temp database ** as required. */ if( iDb!=1 ){ sqlite3NestedParse(pParse, "UPDATE sqlite_temp_schema SET " "sql = sqlite_rename_table(%Q, type, name, sql, %Q, %Q, 1), " "tbl_name = " "CASE WHEN tbl_name=%Q COLLATE nocase AND " " sqlite_rename_test(%Q, sql, type, name, 1) " "THEN %Q ELSE tbl_name END " "WHERE type IN ('view', 'trigger')" , zDb, zTabName, zName, zTabName, zDb, zName); } /* If this is a virtual table, invoke the xRename() function if ** one is defined. The xRename() callback will modify the names ** of any resources used by the v-table implementation (including other ** SQLite tables) that are identified by the name of the virtual table. */ #ifndef SQLITE_OMIT_VIRTUALTABLE if( pVTab ){ int i = ++pParse->nMem; sqlite3VdbeLoadString(v, i, zName); sqlite3VdbeAddOp4(v, OP_VRename, i, 0, 0,(const char*)pVTab, P4_VTAB); } #endif renameReloadSchema(pParse, iDb); renameTestSchema(pParse, zDb, iDb==1); exit_rename_table: sqlite3SrcListDelete(db, pSrc); sqlite3DbFree(db, zName); db->mDbFlags = savedDbFlags; } /* ** Write code that will raise an error if the table described by ** zDb and zTab is not empty. */ static void sqlite3ErrorIfNotEmpty( Parse *pParse, /* Parsing context */ const char *zDb, /* Schema holding the table */ const char *zTab, /* Table to check for empty */ const char *zErr /* Error message text */ ){ sqlite3NestedParse(pParse, "SELECT raise(ABORT,%Q) FROM \"%w\".\"%w\"", zErr, zDb, zTab ); } /* ** This function is called after an "ALTER TABLE ... ADD" statement ** has been parsed. Argument pColDef contains the text of the new ** column definition. ** ** The Table structure pParse->pNewTable was extended to include ** the new column during parsing. */ SQLITE_PRIVATE void sqlite3AlterFinishAddColumn(Parse *pParse, Token *pColDef){ Table *pNew; /* Copy of pParse->pNewTable */ Table *pTab; /* Table being altered */ int iDb; /* Database number */ const char *zDb; /* Database name */ const char *zTab; /* Table name */ char *zCol; /* Null-terminated column definition */ Column *pCol; /* The new column */ Expr *pDflt; /* Default value for the new column */ sqlite3 *db; /* The database connection; */ Vdbe *v; /* The prepared statement under construction */ int r1; /* Temporary registers */ db = pParse->db; if( pParse->nErr || db->mallocFailed ) return; pNew = pParse->pNewTable; assert( pNew ); assert( sqlite3BtreeHoldsAllMutexes(db) ); iDb = sqlite3SchemaToIndex(db, pNew->pSchema); zDb = db->aDb[iDb].zDbSName; zTab = &pNew->zName[16]; /* Skip the "sqlite_altertab_" prefix on the name */ pCol = &pNew->aCol[pNew->nCol-1]; pDflt = pCol->pDflt; pTab = sqlite3FindTable(db, zTab, zDb); assert( pTab ); #ifndef SQLITE_OMIT_AUTHORIZATION /* Invoke the authorization callback. */ if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, 0) ){ return; } #endif /* Check that the new column is not specified as PRIMARY KEY or UNIQUE. ** If there is a NOT NULL constraint, then the default value for the ** column must not be NULL. */ if( pCol->colFlags & COLFLAG_PRIMKEY ){ sqlite3ErrorMsg(pParse, "Cannot add a PRIMARY KEY column"); return; } if( pNew->pIndex ){ sqlite3ErrorMsg(pParse, "Cannot add a UNIQUE column"); return; } if( (pCol->colFlags & COLFLAG_GENERATED)==0 ){ /* If the default value for the new column was specified with a ** literal NULL, then set pDflt to 0. This simplifies checking ** for an SQL NULL default below. */ assert( pDflt==0 || pDflt->op==TK_SPAN ); if( pDflt && pDflt->pLeft->op==TK_NULL ){ pDflt = 0; } if( (db->flags&SQLITE_ForeignKeys) && pNew->pFKey && pDflt ){ sqlite3ErrorIfNotEmpty(pParse, zDb, zTab, "Cannot add a REFERENCES column with non-NULL default value"); } if( pCol->notNull && !pDflt ){ sqlite3ErrorIfNotEmpty(pParse, zDb, zTab, "Cannot add a NOT NULL column with default value NULL"); } /* Ensure the default expression is something that sqlite3ValueFromExpr() ** can handle (i.e. not CURRENT_TIME etc.) */ if( pDflt ){ sqlite3_value *pVal = 0; int rc; rc = sqlite3ValueFromExpr(db, pDflt, SQLITE_UTF8, SQLITE_AFF_BLOB, &pVal); assert( rc==SQLITE_OK || rc==SQLITE_NOMEM ); if( rc!=SQLITE_OK ){ assert( db->mallocFailed == 1 ); return; } if( !pVal ){ sqlite3ErrorIfNotEmpty(pParse, zDb, zTab, "Cannot add a column with non-constant default"); } sqlite3ValueFree(pVal); } }else if( pCol->colFlags & COLFLAG_STORED ){ sqlite3ErrorIfNotEmpty(pParse, zDb, zTab, "cannot add a STORED column"); } /* Modify the CREATE TABLE statement. */ zCol = sqlite3DbStrNDup(db, (char*)pColDef->z, pColDef->n); if( zCol ){ char *zEnd = &zCol[pColDef->n-1]; u32 savedDbFlags = db->mDbFlags; while( zEnd>zCol && (*zEnd==';' || sqlite3Isspace(*zEnd)) ){ *zEnd-- = '\0'; } db->mDbFlags |= DBFLAG_PreferBuiltin; sqlite3NestedParse(pParse, "UPDATE \"%w\"." DFLT_SCHEMA_TABLE " SET " "sql = substr(sql,1,%d) || ', ' || %Q || substr(sql,%d) " "WHERE type = 'table' AND name = %Q", zDb, pNew->addColOffset, zCol, pNew->addColOffset+1, zTab ); sqlite3DbFree(db, zCol); db->mDbFlags = savedDbFlags; } /* Make sure the schema version is at least 3. But do not upgrade ** from less than 3 to 4, as that will corrupt any preexisting DESC ** index. */ v = sqlite3GetVdbe(pParse); if( v ){ r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_ReadCookie, iDb, r1, BTREE_FILE_FORMAT); sqlite3VdbeUsesBtree(v, iDb); sqlite3VdbeAddOp2(v, OP_AddImm, r1, -2); sqlite3VdbeAddOp2(v, OP_IfPos, r1, sqlite3VdbeCurrentAddr(v)+2); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_FILE_FORMAT, 3); sqlite3ReleaseTempReg(pParse, r1); } /* Reload the table definition */ renameReloadSchema(pParse, iDb); } /* ** This function is called by the parser after the table-name in ** an "ALTER TABLE ADD" statement is parsed. Argument ** pSrc is the full-name of the table being altered. ** ** This routine makes a (partial) copy of the Table structure ** for the table being altered and sets Parse.pNewTable to point ** to it. Routines called by the parser as the column definition ** is parsed (i.e. sqlite3AddColumn()) add the new Column data to ** the copy. The copy of the Table structure is deleted by tokenize.c ** after parsing is finished. ** ** Routine sqlite3AlterFinishAddColumn() will be called to complete ** coding the "ALTER TABLE ... ADD" statement. */ SQLITE_PRIVATE void sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc){ Table *pNew; Table *pTab; int iDb; int i; int nAlloc; sqlite3 *db = pParse->db; /* Look up the table being altered. */ assert( pParse->pNewTable==0 ); assert( sqlite3BtreeHoldsAllMutexes(db) ); if( db->mallocFailed ) goto exit_begin_add_column; pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]); if( !pTab ) goto exit_begin_add_column; #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ sqlite3ErrorMsg(pParse, "virtual tables may not be altered"); goto exit_begin_add_column; } #endif /* Make sure this is not an attempt to ALTER a view. */ if( pTab->pSelect ){ sqlite3ErrorMsg(pParse, "Cannot add a column to a view"); goto exit_begin_add_column; } if( SQLITE_OK!=isAlterableTable(pParse, pTab) ){ goto exit_begin_add_column; } sqlite3MayAbort(pParse); assert( pTab->addColOffset>0 ); iDb = sqlite3SchemaToIndex(db, pTab->pSchema); /* Put a copy of the Table struct in Parse.pNewTable for the ** sqlite3AddColumn() function and friends to modify. But modify ** the name by adding an "sqlite_altertab_" prefix. By adding this ** prefix, we insure that the name will not collide with an existing ** table because user table are not allowed to have the "sqlite_" ** prefix on their name. */ pNew = (Table*)sqlite3DbMallocZero(db, sizeof(Table)); if( !pNew ) goto exit_begin_add_column; pParse->pNewTable = pNew; pNew->nTabRef = 1; pNew->nCol = pTab->nCol; assert( pNew->nCol>0 ); nAlloc = (((pNew->nCol-1)/8)*8)+8; assert( nAlloc>=pNew->nCol && nAlloc%8==0 && nAlloc-pNew->nCol<8 ); pNew->aCol = (Column*)sqlite3DbMallocZero(db, sizeof(Column)*nAlloc); pNew->zName = sqlite3MPrintf(db, "sqlite_altertab_%s", pTab->zName); if( !pNew->aCol || !pNew->zName ){ assert( db->mallocFailed ); goto exit_begin_add_column; } memcpy(pNew->aCol, pTab->aCol, sizeof(Column)*pNew->nCol); for(i=0; inCol; i++){ Column *pCol = &pNew->aCol[i]; pCol->zName = sqlite3DbStrDup(db, pCol->zName); pCol->hName = sqlite3StrIHash(pCol->zName); pCol->zColl = 0; pCol->pDflt = 0; } pNew->pSchema = db->aDb[iDb].pSchema; pNew->addColOffset = pTab->addColOffset; pNew->nTabRef = 1; exit_begin_add_column: sqlite3SrcListDelete(db, pSrc); return; } /* ** Parameter pTab is the subject of an ALTER TABLE ... RENAME COLUMN ** command. This function checks if the table is a view or virtual ** table (columns of views or virtual tables may not be renamed). If so, ** it loads an error message into pParse and returns non-zero. ** ** Or, if pTab is not a view or virtual table, zero is returned. */ #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) static int isRealTable(Parse *pParse, Table *pTab){ const char *zType = 0; #ifndef SQLITE_OMIT_VIEW if( pTab->pSelect ){ zType = "view"; } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ zType = "virtual table"; } #endif if( zType ){ sqlite3ErrorMsg( pParse, "cannot rename columns of %s \"%s\"", zType, pTab->zName ); return 1; } return 0; } #else /* !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) */ # define isRealTable(x,y) (0) #endif /* ** Handles the following parser reduction: ** ** cmd ::= ALTER TABLE pSrc RENAME COLUMN pOld TO pNew */ SQLITE_PRIVATE void sqlite3AlterRenameColumn( Parse *pParse, /* Parsing context */ SrcList *pSrc, /* Table being altered. pSrc->nSrc==1 */ Token *pOld, /* Name of column being changed */ Token *pNew /* New column name */ ){ sqlite3 *db = pParse->db; /* Database connection */ Table *pTab; /* Table being updated */ int iCol; /* Index of column being renamed */ char *zOld = 0; /* Old column name */ char *zNew = 0; /* New column name */ const char *zDb; /* Name of schema containing the table */ int iSchema; /* Index of the schema */ int bQuote; /* True to quote the new name */ /* Locate the table to be altered */ pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]); if( !pTab ) goto exit_rename_column; /* Cannot alter a system table */ if( SQLITE_OK!=isAlterableTable(pParse, pTab) ) goto exit_rename_column; if( SQLITE_OK!=isRealTable(pParse, pTab) ) goto exit_rename_column; /* Which schema holds the table to be altered */ iSchema = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iSchema>=0 ); zDb = db->aDb[iSchema].zDbSName; #ifndef SQLITE_OMIT_AUTHORIZATION /* Invoke the authorization callback. */ if( sqlite3AuthCheck(pParse, SQLITE_ALTER_TABLE, zDb, pTab->zName, 0) ){ goto exit_rename_column; } #endif /* Make sure the old name really is a column name in the table to be ** altered. Set iCol to be the index of the column being renamed */ zOld = sqlite3NameFromToken(db, pOld); if( !zOld ) goto exit_rename_column; for(iCol=0; iColnCol; iCol++){ if( 0==sqlite3StrICmp(pTab->aCol[iCol].zName, zOld) ) break; } if( iCol==pTab->nCol ){ sqlite3ErrorMsg(pParse, "no such column: \"%s\"", zOld); goto exit_rename_column; } /* Do the rename operation using a recursive UPDATE statement that ** uses the sqlite_rename_column() SQL function to compute the new ** CREATE statement text for the sqlite_schema table. */ sqlite3MayAbort(pParse); zNew = sqlite3NameFromToken(db, pNew); if( !zNew ) goto exit_rename_column; assert( pNew->n>0 ); bQuote = sqlite3Isquote(pNew->z[0]); sqlite3NestedParse(pParse, "UPDATE \"%w\"." DFLT_SCHEMA_TABLE " SET " "sql = sqlite_rename_column(sql, type, name, %Q, %Q, %d, %Q, %d, %d) " "WHERE name NOT LIKE 'sqliteX_%%' ESCAPE 'X' " " AND (type != 'index' OR tbl_name = %Q)" " AND sql NOT LIKE 'create virtual%%'", zDb, zDb, pTab->zName, iCol, zNew, bQuote, iSchema==1, pTab->zName ); sqlite3NestedParse(pParse, "UPDATE temp." DFLT_SCHEMA_TABLE " SET " "sql = sqlite_rename_column(sql, type, name, %Q, %Q, %d, %Q, %d, 1) " "WHERE type IN ('trigger', 'view')", zDb, pTab->zName, iCol, zNew, bQuote ); /* Drop and reload the database schema. */ renameReloadSchema(pParse, iSchema); renameTestSchema(pParse, zDb, iSchema==1); exit_rename_column: sqlite3SrcListDelete(db, pSrc); sqlite3DbFree(db, zOld); sqlite3DbFree(db, zNew); return; } /* ** Each RenameToken object maps an element of the parse tree into ** the token that generated that element. The parse tree element ** might be one of: ** ** * A pointer to an Expr that represents an ID ** * The name of a table column in Column.zName ** ** A list of RenameToken objects can be constructed during parsing. ** Each new object is created by sqlite3RenameTokenMap(). ** As the parse tree is transformed, the sqlite3RenameTokenRemap() ** routine is used to keep the mapping current. ** ** After the parse finishes, renameTokenFind() routine can be used ** to look up the actual token value that created some element in ** the parse tree. */ struct RenameToken { void *p; /* Parse tree element created by token t */ Token t; /* The token that created parse tree element p */ RenameToken *pNext; /* Next is a list of all RenameToken objects */ }; /* ** The context of an ALTER TABLE RENAME COLUMN operation that gets passed ** down into the Walker. */ typedef struct RenameCtx RenameCtx; struct RenameCtx { RenameToken *pList; /* List of tokens to overwrite */ int nList; /* Number of tokens in pList */ int iCol; /* Index of column being renamed */ Table *pTab; /* Table being ALTERed */ const char *zOld; /* Old column name */ }; #ifdef SQLITE_DEBUG /* ** This function is only for debugging. It performs two tasks: ** ** 1. Checks that pointer pPtr does not already appear in the ** rename-token list. ** ** 2. Dereferences each pointer in the rename-token list. ** ** The second is most effective when debugging under valgrind or ** address-sanitizer or similar. If any of these pointers no longer ** point to valid objects, an exception is raised by the memory-checking ** tool. ** ** The point of this is to prevent comparisons of invalid pointer values. ** Even though this always seems to work, it is undefined according to the ** C standard. Example of undefined comparison: ** ** sqlite3_free(x); ** if( x==y ) ... ** ** Technically, as x no longer points into a valid object or to the byte ** following a valid object, it may not be used in comparison operations. */ static void renameTokenCheckAll(Parse *pParse, void *pPtr){ if( pParse->nErr==0 && pParse->db->mallocFailed==0 ){ RenameToken *p; u8 i = 0; for(p=pParse->pRename; p; p=p->pNext){ if( p->p ){ assert( p->p!=pPtr ); i += *(u8*)(p->p); } } } } #else # define renameTokenCheckAll(x,y) #endif /* ** Remember that the parser tree element pPtr was created using ** the token pToken. ** ** In other words, construct a new RenameToken object and add it ** to the list of RenameToken objects currently being built up ** in pParse->pRename. ** ** The pPtr argument is returned so that this routine can be used ** with tail recursion in tokenExpr() routine, for a small performance ** improvement. */ SQLITE_PRIVATE void *sqlite3RenameTokenMap(Parse *pParse, void *pPtr, Token *pToken){ RenameToken *pNew; assert( pPtr || pParse->db->mallocFailed ); renameTokenCheckAll(pParse, pPtr); if( ALWAYS(pParse->eParseMode!=PARSE_MODE_UNMAP) ){ pNew = sqlite3DbMallocZero(pParse->db, sizeof(RenameToken)); if( pNew ){ pNew->p = pPtr; pNew->t = *pToken; pNew->pNext = pParse->pRename; pParse->pRename = pNew; } } return pPtr; } /* ** It is assumed that there is already a RenameToken object associated ** with parse tree element pFrom. This function remaps the associated token ** to parse tree element pTo. */ SQLITE_PRIVATE void sqlite3RenameTokenRemap(Parse *pParse, void *pTo, void *pFrom){ RenameToken *p; renameTokenCheckAll(pParse, pTo); for(p=pParse->pRename; p; p=p->pNext){ if( p->p==pFrom ){ p->p = pTo; break; } } } /* ** Walker callback used by sqlite3RenameExprUnmap(). */ static int renameUnmapExprCb(Walker *pWalker, Expr *pExpr){ Parse *pParse = pWalker->pParse; sqlite3RenameTokenRemap(pParse, 0, (void*)pExpr); return WRC_Continue; } /* ** Iterate through the Select objects that are part of WITH clauses attached ** to select statement pSelect. */ static void renameWalkWith(Walker *pWalker, Select *pSelect){ With *pWith = pSelect->pWith; if( pWith ){ int i; for(i=0; inCte; i++){ Select *p = pWith->a[i].pSelect; NameContext sNC; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pWalker->pParse; sqlite3SelectPrep(sNC.pParse, p, &sNC); sqlite3WalkSelect(pWalker, p); sqlite3RenameExprlistUnmap(pWalker->pParse, pWith->a[i].pCols); } } } /* ** Unmap all tokens in the IdList object passed as the second argument. */ static void unmapColumnIdlistNames( Parse *pParse, IdList *pIdList ){ if( pIdList ){ int ii; for(ii=0; iinId; ii++){ sqlite3RenameTokenRemap(pParse, 0, (void*)pIdList->a[ii].zName); } } } /* ** Walker callback used by sqlite3RenameExprUnmap(). */ static int renameUnmapSelectCb(Walker *pWalker, Select *p){ Parse *pParse = pWalker->pParse; int i; if( pParse->nErr ) return WRC_Abort; if( NEVER(p->selFlags & SF_View) ) return WRC_Prune; if( ALWAYS(p->pEList) ){ ExprList *pList = p->pEList; for(i=0; inExpr; i++){ if( pList->a[i].zEName && pList->a[i].eEName==ENAME_NAME ){ sqlite3RenameTokenRemap(pParse, 0, (void*)pList->a[i].zEName); } } } if( ALWAYS(p->pSrc) ){ /* Every Select as a SrcList, even if it is empty */ SrcList *pSrc = p->pSrc; for(i=0; inSrc; i++){ sqlite3RenameTokenRemap(pParse, 0, (void*)pSrc->a[i].zName); if( sqlite3WalkExpr(pWalker, pSrc->a[i].pOn) ) return WRC_Abort; unmapColumnIdlistNames(pParse, pSrc->a[i].pUsing); } } renameWalkWith(pWalker, p); return WRC_Continue; } /* ** Remove all nodes that are part of expression pExpr from the rename list. */ SQLITE_PRIVATE void sqlite3RenameExprUnmap(Parse *pParse, Expr *pExpr){ u8 eMode = pParse->eParseMode; Walker sWalker; memset(&sWalker, 0, sizeof(Walker)); sWalker.pParse = pParse; sWalker.xExprCallback = renameUnmapExprCb; sWalker.xSelectCallback = renameUnmapSelectCb; pParse->eParseMode = PARSE_MODE_UNMAP; sqlite3WalkExpr(&sWalker, pExpr); pParse->eParseMode = eMode; } /* ** Remove all nodes that are part of expression-list pEList from the ** rename list. */ SQLITE_PRIVATE void sqlite3RenameExprlistUnmap(Parse *pParse, ExprList *pEList){ if( pEList ){ int i; Walker sWalker; memset(&sWalker, 0, sizeof(Walker)); sWalker.pParse = pParse; sWalker.xExprCallback = renameUnmapExprCb; sqlite3WalkExprList(&sWalker, pEList); for(i=0; inExpr; i++){ if( ALWAYS(pEList->a[i].eEName==ENAME_NAME) ){ sqlite3RenameTokenRemap(pParse, 0, (void*)pEList->a[i].zEName); } } } } /* ** Free the list of RenameToken objects given in the second argument */ static void renameTokenFree(sqlite3 *db, RenameToken *pToken){ RenameToken *pNext; RenameToken *p; for(p=pToken; p; p=pNext){ pNext = p->pNext; sqlite3DbFree(db, p); } } /* ** Search the Parse object passed as the first argument for a RenameToken ** object associated with parse tree element pPtr. If found, remove it ** from the Parse object and add it to the list maintained by the ** RenameCtx object passed as the second argument. */ static void renameTokenFind(Parse *pParse, struct RenameCtx *pCtx, void *pPtr){ RenameToken **pp; assert( pPtr!=0 ); for(pp=&pParse->pRename; (*pp); pp=&(*pp)->pNext){ if( (*pp)->p==pPtr ){ RenameToken *pToken = *pp; *pp = pToken->pNext; pToken->pNext = pCtx->pList; pCtx->pList = pToken; pCtx->nList++; break; } } } /* ** This is a Walker select callback. It does nothing. It is only required ** because without a dummy callback, sqlite3WalkExpr() and similar do not ** descend into sub-select statements. */ static int renameColumnSelectCb(Walker *pWalker, Select *p){ if( p->selFlags & SF_View ) return WRC_Prune; renameWalkWith(pWalker, p); return WRC_Continue; } /* ** This is a Walker expression callback. ** ** For every TK_COLUMN node in the expression tree, search to see ** if the column being references is the column being renamed by an ** ALTER TABLE statement. If it is, then attach its associated ** RenameToken object to the list of RenameToken objects being ** constructed in RenameCtx object at pWalker->u.pRename. */ static int renameColumnExprCb(Walker *pWalker, Expr *pExpr){ RenameCtx *p = pWalker->u.pRename; if( pExpr->op==TK_TRIGGER && pExpr->iColumn==p->iCol && pWalker->pParse->pTriggerTab==p->pTab ){ renameTokenFind(pWalker->pParse, p, (void*)pExpr); }else if( pExpr->op==TK_COLUMN && pExpr->iColumn==p->iCol && p->pTab==pExpr->y.pTab ){ renameTokenFind(pWalker->pParse, p, (void*)pExpr); } return WRC_Continue; } /* ** The RenameCtx contains a list of tokens that reference a column that ** is being renamed by an ALTER TABLE statement. Return the "last" ** RenameToken in the RenameCtx and remove that RenameToken from the ** RenameContext. "Last" means the last RenameToken encountered when ** the input SQL is parsed from left to right. Repeated calls to this routine ** return all column name tokens in the order that they are encountered ** in the SQL statement. */ static RenameToken *renameColumnTokenNext(RenameCtx *pCtx){ RenameToken *pBest = pCtx->pList; RenameToken *pToken; RenameToken **pp; for(pToken=pBest->pNext; pToken; pToken=pToken->pNext){ if( pToken->t.z>pBest->t.z ) pBest = pToken; } for(pp=&pCtx->pList; *pp!=pBest; pp=&(*pp)->pNext); *pp = pBest->pNext; return pBest; } /* ** An error occured while parsing or otherwise processing a database ** object (either pParse->pNewTable, pNewIndex or pNewTrigger) as part of an ** ALTER TABLE RENAME COLUMN program. The error message emitted by the ** sub-routine is currently stored in pParse->zErrMsg. This function ** adds context to the error message and then stores it in pCtx. */ static void renameColumnParseError( sqlite3_context *pCtx, int bPost, sqlite3_value *pType, sqlite3_value *pObject, Parse *pParse ){ const char *zT = (const char*)sqlite3_value_text(pType); const char *zN = (const char*)sqlite3_value_text(pObject); char *zErr; zErr = sqlite3_mprintf("error in %s %s%s: %s", zT, zN, (bPost ? " after rename" : ""), pParse->zErrMsg ); sqlite3_result_error(pCtx, zErr, -1); sqlite3_free(zErr); } /* ** For each name in the the expression-list pEList (i.e. each ** pEList->a[i].zName) that matches the string in zOld, extract the ** corresponding rename-token from Parse object pParse and add it ** to the RenameCtx pCtx. */ static void renameColumnElistNames( Parse *pParse, RenameCtx *pCtx, ExprList *pEList, const char *zOld ){ if( pEList ){ int i; for(i=0; inExpr; i++){ char *zName = pEList->a[i].zEName; if( ALWAYS(pEList->a[i].eEName==ENAME_NAME) && ALWAYS(zName!=0) && 0==sqlite3_stricmp(zName, zOld) ){ renameTokenFind(pParse, pCtx, (void*)zName); } } } } /* ** For each name in the the id-list pIdList (i.e. each pIdList->a[i].zName) ** that matches the string in zOld, extract the corresponding rename-token ** from Parse object pParse and add it to the RenameCtx pCtx. */ static void renameColumnIdlistNames( Parse *pParse, RenameCtx *pCtx, IdList *pIdList, const char *zOld ){ if( pIdList ){ int i; for(i=0; inId; i++){ char *zName = pIdList->a[i].zName; if( 0==sqlite3_stricmp(zName, zOld) ){ renameTokenFind(pParse, pCtx, (void*)zName); } } } } /* ** Parse the SQL statement zSql using Parse object (*p). The Parse object ** is initialized by this function before it is used. */ static int renameParseSql( Parse *p, /* Memory to use for Parse object */ const char *zDb, /* Name of schema SQL belongs to */ sqlite3 *db, /* Database handle */ const char *zSql, /* SQL to parse */ int bTemp /* True if SQL is from temp schema */ ){ int rc; char *zErr = 0; db->init.iDb = bTemp ? 1 : sqlite3FindDbName(db, zDb); /* Parse the SQL statement passed as the first argument. If no error ** occurs and the parse does not result in a new table, index or ** trigger object, the database must be corrupt. */ memset(p, 0, sizeof(Parse)); p->eParseMode = PARSE_MODE_RENAME; p->db = db; p->nQueryLoop = 1; rc = sqlite3RunParser(p, zSql, &zErr); assert( p->zErrMsg==0 ); assert( rc!=SQLITE_OK || zErr==0 ); p->zErrMsg = zErr; if( db->mallocFailed ) rc = SQLITE_NOMEM; if( rc==SQLITE_OK && p->pNewTable==0 && p->pNewIndex==0 && p->pNewTrigger==0 ){ rc = SQLITE_CORRUPT_BKPT; } #ifdef SQLITE_DEBUG /* Ensure that all mappings in the Parse.pRename list really do map to ** a part of the input string. */ if( rc==SQLITE_OK ){ int nSql = sqlite3Strlen30(zSql); RenameToken *pToken; for(pToken=p->pRename; pToken; pToken=pToken->pNext){ assert( pToken->t.z>=zSql && &pToken->t.z[pToken->t.n]<=&zSql[nSql] ); } } #endif db->init.iDb = 0; return rc; } /* ** This function edits SQL statement zSql, replacing each token identified ** by the linked list pRename with the text of zNew. If argument bQuote is ** true, then zNew is always quoted first. If no error occurs, the result ** is loaded into context object pCtx as the result. ** ** Or, if an error occurs (i.e. an OOM condition), an error is left in ** pCtx and an SQLite error code returned. */ static int renameEditSql( sqlite3_context *pCtx, /* Return result here */ RenameCtx *pRename, /* Rename context */ const char *zSql, /* SQL statement to edit */ const char *zNew, /* New token text */ int bQuote /* True to always quote token */ ){ int nNew = sqlite3Strlen30(zNew); int nSql = sqlite3Strlen30(zSql); sqlite3 *db = sqlite3_context_db_handle(pCtx); int rc = SQLITE_OK; char *zQuot; char *zOut; int nQuot; /* Set zQuot to point to a buffer containing a quoted copy of the ** identifier zNew. If the corresponding identifier in the original ** ALTER TABLE statement was quoted (bQuote==1), then set zNew to ** point to zQuot so that all substitutions are made using the ** quoted version of the new column name. */ zQuot = sqlite3MPrintf(db, "\"%w\"", zNew); if( zQuot==0 ){ return SQLITE_NOMEM; }else{ nQuot = sqlite3Strlen30(zQuot); } if( bQuote ){ zNew = zQuot; nNew = nQuot; } /* At this point pRename->pList contains a list of RenameToken objects ** corresponding to all tokens in the input SQL that must be replaced ** with the new column name. All that remains is to construct and ** return the edited SQL string. */ assert( nQuot>=nNew ); zOut = sqlite3DbMallocZero(db, nSql + pRename->nList*nQuot + 1); if( zOut ){ int nOut = nSql; memcpy(zOut, zSql, nSql); while( pRename->pList ){ int iOff; /* Offset of token to replace in zOut */ RenameToken *pBest = renameColumnTokenNext(pRename); u32 nReplace; const char *zReplace; if( sqlite3IsIdChar(*pBest->t.z) ){ nReplace = nNew; zReplace = zNew; }else{ nReplace = nQuot; zReplace = zQuot; } iOff = pBest->t.z - zSql; if( pBest->t.n!=nReplace ){ memmove(&zOut[iOff + nReplace], &zOut[iOff + pBest->t.n], nOut - (iOff + pBest->t.n) ); nOut += nReplace - pBest->t.n; zOut[nOut] = '\0'; } memcpy(&zOut[iOff], zReplace, nReplace); sqlite3DbFree(db, pBest); } sqlite3_result_text(pCtx, zOut, -1, SQLITE_TRANSIENT); sqlite3DbFree(db, zOut); }else{ rc = SQLITE_NOMEM; } sqlite3_free(zQuot); return rc; } /* ** Resolve all symbols in the trigger at pParse->pNewTrigger, assuming ** it was read from the schema of database zDb. Return SQLITE_OK if ** successful. Otherwise, return an SQLite error code and leave an error ** message in the Parse object. */ static int renameResolveTrigger(Parse *pParse){ sqlite3 *db = pParse->db; Trigger *pNew = pParse->pNewTrigger; TriggerStep *pStep; NameContext sNC; int rc = SQLITE_OK; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; assert( pNew->pTabSchema ); pParse->pTriggerTab = sqlite3FindTable(db, pNew->table, db->aDb[sqlite3SchemaToIndex(db, pNew->pTabSchema)].zDbSName ); pParse->eTriggerOp = pNew->op; /* ALWAYS() because if the table of the trigger does not exist, the ** error would have been hit before this point */ if( ALWAYS(pParse->pTriggerTab) ){ rc = sqlite3ViewGetColumnNames(pParse, pParse->pTriggerTab); } /* Resolve symbols in WHEN clause */ if( rc==SQLITE_OK && pNew->pWhen ){ rc = sqlite3ResolveExprNames(&sNC, pNew->pWhen); } for(pStep=pNew->step_list; rc==SQLITE_OK && pStep; pStep=pStep->pNext){ if( pStep->pSelect ){ sqlite3SelectPrep(pParse, pStep->pSelect, &sNC); if( pParse->nErr ) rc = pParse->rc; } if( rc==SQLITE_OK && pStep->zTarget ){ SrcList *pSrc = sqlite3TriggerStepSrc(pParse, pStep); if( pSrc ){ int i; for(i=0; inSrc && rc==SQLITE_OK; i++){ struct SrcList_item *p = &pSrc->a[i]; p->pTab = sqlite3LocateTableItem(pParse, 0, p); p->iCursor = pParse->nTab++; if( p->pTab==0 ){ rc = SQLITE_ERROR; }else{ p->pTab->nTabRef++; rc = sqlite3ViewGetColumnNames(pParse, p->pTab); } } sNC.pSrcList = pSrc; if( rc==SQLITE_OK && pStep->pWhere ){ rc = sqlite3ResolveExprNames(&sNC, pStep->pWhere); } if( rc==SQLITE_OK ){ rc = sqlite3ResolveExprListNames(&sNC, pStep->pExprList); } assert( !pStep->pUpsert || (!pStep->pWhere && !pStep->pExprList) ); if( pStep->pUpsert ){ Upsert *pUpsert = pStep->pUpsert; assert( rc==SQLITE_OK ); pUpsert->pUpsertSrc = pSrc; sNC.uNC.pUpsert = pUpsert; sNC.ncFlags = NC_UUpsert; rc = sqlite3ResolveExprListNames(&sNC, pUpsert->pUpsertTarget); if( rc==SQLITE_OK ){ ExprList *pUpsertSet = pUpsert->pUpsertSet; rc = sqlite3ResolveExprListNames(&sNC, pUpsertSet); } if( rc==SQLITE_OK ){ rc = sqlite3ResolveExprNames(&sNC, pUpsert->pUpsertWhere); } if( rc==SQLITE_OK ){ rc = sqlite3ResolveExprNames(&sNC, pUpsert->pUpsertTargetWhere); } sNC.ncFlags = 0; } sNC.pSrcList = 0; sqlite3SrcListDelete(db, pSrc); }else{ rc = SQLITE_NOMEM; } } } return rc; } /* ** Invoke sqlite3WalkExpr() or sqlite3WalkSelect() on all Select or Expr ** objects that are part of the trigger passed as the second argument. */ static void renameWalkTrigger(Walker *pWalker, Trigger *pTrigger){ TriggerStep *pStep; /* Find tokens to edit in WHEN clause */ sqlite3WalkExpr(pWalker, pTrigger->pWhen); /* Find tokens to edit in trigger steps */ for(pStep=pTrigger->step_list; pStep; pStep=pStep->pNext){ sqlite3WalkSelect(pWalker, pStep->pSelect); sqlite3WalkExpr(pWalker, pStep->pWhere); sqlite3WalkExprList(pWalker, pStep->pExprList); if( pStep->pUpsert ){ Upsert *pUpsert = pStep->pUpsert; sqlite3WalkExprList(pWalker, pUpsert->pUpsertTarget); sqlite3WalkExprList(pWalker, pUpsert->pUpsertSet); sqlite3WalkExpr(pWalker, pUpsert->pUpsertWhere); sqlite3WalkExpr(pWalker, pUpsert->pUpsertTargetWhere); } } } /* ** Free the contents of Parse object (*pParse). Do not free the memory ** occupied by the Parse object itself. */ static void renameParseCleanup(Parse *pParse){ sqlite3 *db = pParse->db; Index *pIdx; if( pParse->pVdbe ){ sqlite3VdbeFinalize(pParse->pVdbe); } sqlite3DeleteTable(db, pParse->pNewTable); while( (pIdx = pParse->pNewIndex)!=0 ){ pParse->pNewIndex = pIdx->pNext; sqlite3FreeIndex(db, pIdx); } sqlite3DeleteTrigger(db, pParse->pNewTrigger); sqlite3DbFree(db, pParse->zErrMsg); renameTokenFree(db, pParse->pRename); sqlite3ParserReset(pParse); } /* ** SQL function: ** ** sqlite_rename_column(zSql, iCol, bQuote, zNew, zTable, zOld) ** ** 0. zSql: SQL statement to rewrite ** 1. type: Type of object ("table", "view" etc.) ** 2. object: Name of object ** 3. Database: Database name (e.g. "main") ** 4. Table: Table name ** 5. iCol: Index of column to rename ** 6. zNew: New column name ** 7. bQuote: Non-zero if the new column name should be quoted. ** 8. bTemp: True if zSql comes from temp schema ** ** Do a column rename operation on the CREATE statement given in zSql. ** The iCol-th column (left-most is 0) of table zTable is renamed from zCol ** into zNew. The name should be quoted if bQuote is true. ** ** This function is used internally by the ALTER TABLE RENAME COLUMN command. ** It is only accessible to SQL created using sqlite3NestedParse(). It is ** not reachable from ordinary SQL passed into sqlite3_prepare(). */ static void renameColumnFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ sqlite3 *db = sqlite3_context_db_handle(context); RenameCtx sCtx; const char *zSql = (const char*)sqlite3_value_text(argv[0]); const char *zDb = (const char*)sqlite3_value_text(argv[3]); const char *zTable = (const char*)sqlite3_value_text(argv[4]); int iCol = sqlite3_value_int(argv[5]); const char *zNew = (const char*)sqlite3_value_text(argv[6]); int bQuote = sqlite3_value_int(argv[7]); int bTemp = sqlite3_value_int(argv[8]); const char *zOld; int rc; Parse sParse; Walker sWalker; Index *pIdx; int i; Table *pTab; #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth = db->xAuth; #endif UNUSED_PARAMETER(NotUsed); if( zSql==0 ) return; if( zTable==0 ) return; if( zNew==0 ) return; if( iCol<0 ) return; sqlite3BtreeEnterAll(db); pTab = sqlite3FindTable(db, zTable, zDb); if( pTab==0 || iCol>=pTab->nCol ){ sqlite3BtreeLeaveAll(db); return; } zOld = pTab->aCol[iCol].zName; memset(&sCtx, 0, sizeof(sCtx)); sCtx.iCol = ((iCol==pTab->iPKey) ? -1 : iCol); #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = 0; #endif rc = renameParseSql(&sParse, zDb, db, zSql, bTemp); /* Find tokens that need to be replaced. */ memset(&sWalker, 0, sizeof(Walker)); sWalker.pParse = &sParse; sWalker.xExprCallback = renameColumnExprCb; sWalker.xSelectCallback = renameColumnSelectCb; sWalker.u.pRename = &sCtx; sCtx.pTab = pTab; if( rc!=SQLITE_OK ) goto renameColumnFunc_done; if( sParse.pNewTable ){ Select *pSelect = sParse.pNewTable->pSelect; if( pSelect ){ pSelect->selFlags &= ~SF_View; sParse.rc = SQLITE_OK; sqlite3SelectPrep(&sParse, pSelect, 0); rc = (db->mallocFailed ? SQLITE_NOMEM : sParse.rc); if( rc==SQLITE_OK ){ sqlite3WalkSelect(&sWalker, pSelect); } if( rc!=SQLITE_OK ) goto renameColumnFunc_done; }else{ /* A regular table */ int bFKOnly = sqlite3_stricmp(zTable, sParse.pNewTable->zName); FKey *pFKey; assert( sParse.pNewTable->pSelect==0 ); sCtx.pTab = sParse.pNewTable; if( bFKOnly==0 ){ renameTokenFind( &sParse, &sCtx, (void*)sParse.pNewTable->aCol[iCol].zName ); if( sCtx.iCol<0 ){ renameTokenFind(&sParse, &sCtx, (void*)&sParse.pNewTable->iPKey); } sqlite3WalkExprList(&sWalker, sParse.pNewTable->pCheck); for(pIdx=sParse.pNewTable->pIndex; pIdx; pIdx=pIdx->pNext){ sqlite3WalkExprList(&sWalker, pIdx->aColExpr); } for(pIdx=sParse.pNewIndex; pIdx; pIdx=pIdx->pNext){ sqlite3WalkExprList(&sWalker, pIdx->aColExpr); } } #ifndef SQLITE_OMIT_GENERATED_COLUMNS for(i=0; inCol; i++){ sqlite3WalkExpr(&sWalker, sParse.pNewTable->aCol[i].pDflt); } #endif for(pFKey=sParse.pNewTable->pFKey; pFKey; pFKey=pFKey->pNextFrom){ for(i=0; inCol; i++){ if( bFKOnly==0 && pFKey->aCol[i].iFrom==iCol ){ renameTokenFind(&sParse, &sCtx, (void*)&pFKey->aCol[i]); } if( 0==sqlite3_stricmp(pFKey->zTo, zTable) && 0==sqlite3_stricmp(pFKey->aCol[i].zCol, zOld) ){ renameTokenFind(&sParse, &sCtx, (void*)pFKey->aCol[i].zCol); } } } } }else if( sParse.pNewIndex ){ sqlite3WalkExprList(&sWalker, sParse.pNewIndex->aColExpr); sqlite3WalkExpr(&sWalker, sParse.pNewIndex->pPartIdxWhere); }else{ /* A trigger */ TriggerStep *pStep; rc = renameResolveTrigger(&sParse); if( rc!=SQLITE_OK ) goto renameColumnFunc_done; for(pStep=sParse.pNewTrigger->step_list; pStep; pStep=pStep->pNext){ if( pStep->zTarget ){ Table *pTarget = sqlite3LocateTable(&sParse, 0, pStep->zTarget, zDb); if( pTarget==pTab ){ if( pStep->pUpsert ){ ExprList *pUpsertSet = pStep->pUpsert->pUpsertSet; renameColumnElistNames(&sParse, &sCtx, pUpsertSet, zOld); } renameColumnIdlistNames(&sParse, &sCtx, pStep->pIdList, zOld); renameColumnElistNames(&sParse, &sCtx, pStep->pExprList, zOld); } } } /* Find tokens to edit in UPDATE OF clause */ if( sParse.pTriggerTab==pTab ){ renameColumnIdlistNames(&sParse, &sCtx,sParse.pNewTrigger->pColumns,zOld); } /* Find tokens to edit in various expressions and selects */ renameWalkTrigger(&sWalker, sParse.pNewTrigger); } assert( rc==SQLITE_OK ); rc = renameEditSql(context, &sCtx, zSql, zNew, bQuote); renameColumnFunc_done: if( rc!=SQLITE_OK ){ if( sParse.zErrMsg ){ renameColumnParseError(context, 0, argv[1], argv[2], &sParse); }else{ sqlite3_result_error_code(context, rc); } } renameParseCleanup(&sParse); renameTokenFree(db, sCtx.pList); #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = xAuth; #endif sqlite3BtreeLeaveAll(db); } /* ** Walker expression callback used by "RENAME TABLE". */ static int renameTableExprCb(Walker *pWalker, Expr *pExpr){ RenameCtx *p = pWalker->u.pRename; if( pExpr->op==TK_COLUMN && p->pTab==pExpr->y.pTab ){ renameTokenFind(pWalker->pParse, p, (void*)&pExpr->y.pTab); } return WRC_Continue; } /* ** Walker select callback used by "RENAME TABLE". */ static int renameTableSelectCb(Walker *pWalker, Select *pSelect){ int i; RenameCtx *p = pWalker->u.pRename; SrcList *pSrc = pSelect->pSrc; if( pSelect->selFlags & SF_View ) return WRC_Prune; if( pSrc==0 ){ assert( pWalker->pParse->db->mallocFailed ); return WRC_Abort; } for(i=0; inSrc; i++){ struct SrcList_item *pItem = &pSrc->a[i]; if( pItem->pTab==p->pTab ){ renameTokenFind(pWalker->pParse, p, pItem->zName); } } renameWalkWith(pWalker, pSelect); return WRC_Continue; } /* ** This C function implements an SQL user function that is used by SQL code ** generated by the ALTER TABLE ... RENAME command to modify the definition ** of any foreign key constraints that use the table being renamed as the ** parent table. It is passed three arguments: ** ** 0: The database containing the table being renamed. ** 1. type: Type of object ("table", "view" etc.) ** 2. object: Name of object ** 3: The complete text of the schema statement being modified, ** 4: The old name of the table being renamed, and ** 5: The new name of the table being renamed. ** 6: True if the schema statement comes from the temp db. ** ** It returns the new schema statement. For example: ** ** sqlite_rename_table('main', 'CREATE TABLE t1(a REFERENCES t2)','t2','t3',0) ** -> 'CREATE TABLE t1(a REFERENCES t3)' */ static void renameTableFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ sqlite3 *db = sqlite3_context_db_handle(context); const char *zDb = (const char*)sqlite3_value_text(argv[0]); const char *zInput = (const char*)sqlite3_value_text(argv[3]); const char *zOld = (const char*)sqlite3_value_text(argv[4]); const char *zNew = (const char*)sqlite3_value_text(argv[5]); int bTemp = sqlite3_value_int(argv[6]); UNUSED_PARAMETER(NotUsed); if( zInput && zOld && zNew ){ Parse sParse; int rc; int bQuote = 1; RenameCtx sCtx; Walker sWalker; #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth = db->xAuth; db->xAuth = 0; #endif sqlite3BtreeEnterAll(db); memset(&sCtx, 0, sizeof(RenameCtx)); sCtx.pTab = sqlite3FindTable(db, zOld, zDb); memset(&sWalker, 0, sizeof(Walker)); sWalker.pParse = &sParse; sWalker.xExprCallback = renameTableExprCb; sWalker.xSelectCallback = renameTableSelectCb; sWalker.u.pRename = &sCtx; rc = renameParseSql(&sParse, zDb, db, zInput, bTemp); if( rc==SQLITE_OK ){ int isLegacy = (db->flags & SQLITE_LegacyAlter); if( sParse.pNewTable ){ Table *pTab = sParse.pNewTable; if( pTab->pSelect ){ if( isLegacy==0 ){ Select *pSelect = pTab->pSelect; NameContext sNC; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = &sParse; assert( pSelect->selFlags & SF_View ); pSelect->selFlags &= ~SF_View; sqlite3SelectPrep(&sParse, pTab->pSelect, &sNC); if( sParse.nErr ){ rc = sParse.rc; }else{ sqlite3WalkSelect(&sWalker, pTab->pSelect); } } }else{ /* Modify any FK definitions to point to the new table. */ #ifndef SQLITE_OMIT_FOREIGN_KEY if( isLegacy==0 || (db->flags & SQLITE_ForeignKeys) ){ FKey *pFKey; for(pFKey=pTab->pFKey; pFKey; pFKey=pFKey->pNextFrom){ if( sqlite3_stricmp(pFKey->zTo, zOld)==0 ){ renameTokenFind(&sParse, &sCtx, (void*)pFKey->zTo); } } } #endif /* If this is the table being altered, fix any table refs in CHECK ** expressions. Also update the name that appears right after the ** "CREATE [VIRTUAL] TABLE" bit. */ if( sqlite3_stricmp(zOld, pTab->zName)==0 ){ sCtx.pTab = pTab; if( isLegacy==0 ){ sqlite3WalkExprList(&sWalker, pTab->pCheck); } renameTokenFind(&sParse, &sCtx, pTab->zName); } } } else if( sParse.pNewIndex ){ renameTokenFind(&sParse, &sCtx, sParse.pNewIndex->zName); if( isLegacy==0 ){ sqlite3WalkExpr(&sWalker, sParse.pNewIndex->pPartIdxWhere); } } #ifndef SQLITE_OMIT_TRIGGER else{ Trigger *pTrigger = sParse.pNewTrigger; TriggerStep *pStep; if( 0==sqlite3_stricmp(sParse.pNewTrigger->table, zOld) && sCtx.pTab->pSchema==pTrigger->pTabSchema ){ renameTokenFind(&sParse, &sCtx, sParse.pNewTrigger->table); } if( isLegacy==0 ){ rc = renameResolveTrigger(&sParse); if( rc==SQLITE_OK ){ renameWalkTrigger(&sWalker, pTrigger); for(pStep=pTrigger->step_list; pStep; pStep=pStep->pNext){ if( pStep->zTarget && 0==sqlite3_stricmp(pStep->zTarget, zOld) ){ renameTokenFind(&sParse, &sCtx, pStep->zTarget); } } } } } #endif } if( rc==SQLITE_OK ){ rc = renameEditSql(context, &sCtx, zInput, zNew, bQuote); } if( rc!=SQLITE_OK ){ if( sParse.zErrMsg ){ renameColumnParseError(context, 0, argv[1], argv[2], &sParse); }else{ sqlite3_result_error_code(context, rc); } } renameParseCleanup(&sParse); renameTokenFree(db, sCtx.pList); sqlite3BtreeLeaveAll(db); #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = xAuth; #endif } return; } /* ** An SQL user function that checks that there are no parse or symbol ** resolution problems in a CREATE TRIGGER|TABLE|VIEW|INDEX statement. ** After an ALTER TABLE .. RENAME operation is performed and the schema ** reloaded, this function is called on each SQL statement in the schema ** to ensure that it is still usable. ** ** 0: Database name ("main", "temp" etc.). ** 1: SQL statement. ** 2: Object type ("view", "table", "trigger" or "index"). ** 3: Object name. ** 4: True if object is from temp schema. ** ** Unless it finds an error, this function normally returns NULL. However, it ** returns integer value 1 if: ** ** * the SQL argument creates a trigger, and ** * the table that the trigger is attached to is in database zDb. */ static void renameTableTest( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ sqlite3 *db = sqlite3_context_db_handle(context); char const *zDb = (const char*)sqlite3_value_text(argv[0]); char const *zInput = (const char*)sqlite3_value_text(argv[1]); int bTemp = sqlite3_value_int(argv[4]); int isLegacy = (db->flags & SQLITE_LegacyAlter); #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth = db->xAuth; db->xAuth = 0; #endif UNUSED_PARAMETER(NotUsed); if( zDb && zInput ){ int rc; Parse sParse; rc = renameParseSql(&sParse, zDb, db, zInput, bTemp); if( rc==SQLITE_OK ){ if( isLegacy==0 && sParse.pNewTable && sParse.pNewTable->pSelect ){ NameContext sNC; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = &sParse; sqlite3SelectPrep(&sParse, sParse.pNewTable->pSelect, &sNC); if( sParse.nErr ) rc = sParse.rc; } else if( sParse.pNewTrigger ){ if( isLegacy==0 ){ rc = renameResolveTrigger(&sParse); } if( rc==SQLITE_OK ){ int i1 = sqlite3SchemaToIndex(db, sParse.pNewTrigger->pTabSchema); int i2 = sqlite3FindDbName(db, zDb); if( i1==i2 ) sqlite3_result_int(context, 1); } } } if( rc!=SQLITE_OK ){ renameColumnParseError(context, 1, argv[2], argv[3], &sParse); } renameParseCleanup(&sParse); } #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = xAuth; #endif } /* ** Register built-in functions used to help implement ALTER TABLE */ SQLITE_PRIVATE void sqlite3AlterFunctions(void){ static FuncDef aAlterTableFuncs[] = { INTERNAL_FUNCTION(sqlite_rename_column, 9, renameColumnFunc), INTERNAL_FUNCTION(sqlite_rename_table, 7, renameTableFunc), INTERNAL_FUNCTION(sqlite_rename_test, 5, renameTableTest), }; sqlite3InsertBuiltinFuncs(aAlterTableFuncs, ArraySize(aAlterTableFuncs)); } #endif /* SQLITE_ALTER_TABLE */ /************** End of alter.c ***********************************************/ /************** Begin file analyze.c *****************************************/ /* ** 2005-07-08 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code associated with the ANALYZE command. ** ** The ANALYZE command gather statistics about the content of tables ** and indices. These statistics are made available to the query planner ** to help it make better decisions about how to perform queries. ** ** The following system tables are or have been supported: ** ** CREATE TABLE sqlite_stat1(tbl, idx, stat); ** CREATE TABLE sqlite_stat2(tbl, idx, sampleno, sample); ** CREATE TABLE sqlite_stat3(tbl, idx, nEq, nLt, nDLt, sample); ** CREATE TABLE sqlite_stat4(tbl, idx, nEq, nLt, nDLt, sample); ** ** Additional tables might be added in future releases of SQLite. ** The sqlite_stat2 table is not created or used unless the SQLite version ** is between 3.6.18 and 3.7.8, inclusive, and unless SQLite is compiled ** with SQLITE_ENABLE_STAT2. The sqlite_stat2 table is deprecated. ** The sqlite_stat2 table is superseded by sqlite_stat3, which is only ** created and used by SQLite versions 3.7.9 through 3.29.0 when ** SQLITE_ENABLE_STAT3 defined. The functionality of sqlite_stat3 ** is a superset of sqlite_stat2 and is also now deprecated. The ** sqlite_stat4 is an enhanced version of sqlite_stat3 and is only ** available when compiled with SQLITE_ENABLE_STAT4 and in SQLite ** versions 3.8.1 and later. STAT4 is the only variant that is still ** supported. ** ** For most applications, sqlite_stat1 provides all the statistics required ** for the query planner to make good choices. ** ** Format of sqlite_stat1: ** ** There is normally one row per index, with the index identified by the ** name in the idx column. The tbl column is the name of the table to ** which the index belongs. In each such row, the stat column will be ** a string consisting of a list of integers. The first integer in this ** list is the number of rows in the index. (This is the same as the ** number of rows in the table, except for partial indices.) The second ** integer is the average number of rows in the index that have the same ** value in the first column of the index. The third integer is the average ** number of rows in the index that have the same value for the first two ** columns. The N-th integer (for N>1) is the average number of rows in ** the index which have the same value for the first N-1 columns. For ** a K-column index, there will be K+1 integers in the stat column. If ** the index is unique, then the last integer will be 1. ** ** The list of integers in the stat column can optionally be followed ** by the keyword "unordered". The "unordered" keyword, if it is present, ** must be separated from the last integer by a single space. If the ** "unordered" keyword is present, then the query planner assumes that ** the index is unordered and will not use the index for a range query. ** ** If the sqlite_stat1.idx column is NULL, then the sqlite_stat1.stat ** column contains a single integer which is the (estimated) number of ** rows in the table identified by sqlite_stat1.tbl. ** ** Format of sqlite_stat2: ** ** The sqlite_stat2 is only created and is only used if SQLite is compiled ** with SQLITE_ENABLE_STAT2 and if the SQLite version number is between ** 3.6.18 and 3.7.8. The "stat2" table contains additional information ** about the distribution of keys within an index. The index is identified by ** the "idx" column and the "tbl" column is the name of the table to which ** the index belongs. There are usually 10 rows in the sqlite_stat2 ** table for each index. ** ** The sqlite_stat2 entries for an index that have sampleno between 0 and 9 ** inclusive are samples of the left-most key value in the index taken at ** evenly spaced points along the index. Let the number of samples be S ** (10 in the standard build) and let C be the number of rows in the index. ** Then the sampled rows are given by: ** ** rownumber = (i*C*2 + C)/(S*2) ** ** For i between 0 and S-1. Conceptually, the index space is divided into ** S uniform buckets and the samples are the middle row from each bucket. ** ** The format for sqlite_stat2 is recorded here for legacy reference. This ** version of SQLite does not support sqlite_stat2. It neither reads nor ** writes the sqlite_stat2 table. This version of SQLite only supports ** sqlite_stat3. ** ** Format for sqlite_stat3: ** ** The sqlite_stat3 format is a subset of sqlite_stat4. Hence, the ** sqlite_stat4 format will be described first. Further information ** about sqlite_stat3 follows the sqlite_stat4 description. ** ** Format for sqlite_stat4: ** ** As with sqlite_stat2, the sqlite_stat4 table contains histogram data ** to aid the query planner in choosing good indices based on the values ** that indexed columns are compared against in the WHERE clauses of ** queries. ** ** The sqlite_stat4 table contains multiple entries for each index. ** The idx column names the index and the tbl column is the table of the ** index. If the idx and tbl columns are the same, then the sample is ** of the INTEGER PRIMARY KEY. The sample column is a blob which is the ** binary encoding of a key from the index. The nEq column is a ** list of integers. The first integer is the approximate number ** of entries in the index whose left-most column exactly matches ** the left-most column of the sample. The second integer in nEq ** is the approximate number of entries in the index where the ** first two columns match the first two columns of the sample. ** And so forth. nLt is another list of integers that show the approximate ** number of entries that are strictly less than the sample. The first ** integer in nLt contains the number of entries in the index where the ** left-most column is less than the left-most column of the sample. ** The K-th integer in the nLt entry is the number of index entries ** where the first K columns are less than the first K columns of the ** sample. The nDLt column is like nLt except that it contains the ** number of distinct entries in the index that are less than the ** sample. ** ** There can be an arbitrary number of sqlite_stat4 entries per index. ** The ANALYZE command will typically generate sqlite_stat4 tables ** that contain between 10 and 40 samples which are distributed across ** the key space, though not uniformly, and which include samples with ** large nEq values. ** ** Format for sqlite_stat3 redux: ** ** The sqlite_stat3 table is like sqlite_stat4 except that it only ** looks at the left-most column of the index. The sqlite_stat3.sample ** column contains the actual value of the left-most column instead ** of a blob encoding of the complete index key as is found in ** sqlite_stat4.sample. The nEq, nLt, and nDLt entries of sqlite_stat3 ** all contain just a single integer which is the same as the first ** integer in the equivalent columns in sqlite_stat4. */ #ifndef SQLITE_OMIT_ANALYZE /* #include "sqliteInt.h" */ #if defined(SQLITE_ENABLE_STAT4) # define IsStat4 1 #else # define IsStat4 0 # undef SQLITE_STAT4_SAMPLES # define SQLITE_STAT4_SAMPLES 1 #endif /* ** This routine generates code that opens the sqlite_statN tables. ** The sqlite_stat1 table is always relevant. sqlite_stat2 is now ** obsolete. sqlite_stat3 and sqlite_stat4 are only opened when ** appropriate compile-time options are provided. ** ** If the sqlite_statN tables do not previously exist, it is created. ** ** Argument zWhere may be a pointer to a buffer containing a table name, ** or it may be a NULL pointer. If it is not NULL, then all entries in ** the sqlite_statN tables associated with the named table are deleted. ** If zWhere==0, then code is generated to delete all stat table entries. */ static void openStatTable( Parse *pParse, /* Parsing context */ int iDb, /* The database we are looking in */ int iStatCur, /* Open the sqlite_stat1 table on this cursor */ const char *zWhere, /* Delete entries for this table or index */ const char *zWhereType /* Either "tbl" or "idx" */ ){ static const struct { const char *zName; const char *zCols; } aTable[] = { { "sqlite_stat1", "tbl,idx,stat" }, #if defined(SQLITE_ENABLE_STAT4) { "sqlite_stat4", "tbl,idx,neq,nlt,ndlt,sample" }, #else { "sqlite_stat4", 0 }, #endif { "sqlite_stat3", 0 }, }; int i; sqlite3 *db = pParse->db; Db *pDb; Vdbe *v = sqlite3GetVdbe(pParse); u32 aRoot[ArraySize(aTable)]; u8 aCreateTbl[ArraySize(aTable)]; #ifdef SQLITE_ENABLE_STAT4 const int nToOpen = OptimizationEnabled(db,SQLITE_Stat4) ? 2 : 1; #else const int nToOpen = 1; #endif if( v==0 ) return; assert( sqlite3BtreeHoldsAllMutexes(db) ); assert( sqlite3VdbeDb(v)==db ); pDb = &db->aDb[iDb]; /* Create new statistic tables if they do not exist, or clear them ** if they do already exist. */ for(i=0; izDbSName))==0 ){ if( iregRoot. This is important ** because the OpenWrite opcode below will be needing it. */ sqlite3NestedParse(pParse, "CREATE TABLE %Q.%s(%s)", pDb->zDbSName, zTab, aTable[i].zCols ); aRoot[i] = (u32)pParse->regRoot; aCreateTbl[i] = OPFLAG_P2ISREG; } }else{ /* The table already exists. If zWhere is not NULL, delete all entries ** associated with the table zWhere. If zWhere is NULL, delete the ** entire contents of the table. */ aRoot[i] = pStat->tnum; sqlite3TableLock(pParse, iDb, aRoot[i], 1, zTab); if( zWhere ){ sqlite3NestedParse(pParse, "DELETE FROM %Q.%s WHERE %s=%Q", pDb->zDbSName, zTab, zWhereType, zWhere ); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK }else if( db->xPreUpdateCallback ){ sqlite3NestedParse(pParse, "DELETE FROM %Q.%s", pDb->zDbSName, zTab); #endif }else{ /* The sqlite_stat[134] table already exists. Delete all rows. */ sqlite3VdbeAddOp2(v, OP_Clear, (int)aRoot[i], iDb); } } } /* Open the sqlite_stat[134] tables for writing. */ for(i=0; inRowid ){ sqlite3DbFree(db, p->u.aRowid); p->nRowid = 0; } } #endif /* Initialize the BLOB value of a ROWID */ #ifdef SQLITE_ENABLE_STAT4 static void sampleSetRowid(sqlite3 *db, StatSample *p, int n, const u8 *pData){ assert( db!=0 ); if( p->nRowid ) sqlite3DbFree(db, p->u.aRowid); p->u.aRowid = sqlite3DbMallocRawNN(db, n); if( p->u.aRowid ){ p->nRowid = n; memcpy(p->u.aRowid, pData, n); }else{ p->nRowid = 0; } } #endif /* Initialize the INTEGER value of a ROWID. */ #ifdef SQLITE_ENABLE_STAT4 static void sampleSetRowidInt64(sqlite3 *db, StatSample *p, i64 iRowid){ assert( db!=0 ); if( p->nRowid ) sqlite3DbFree(db, p->u.aRowid); p->nRowid = 0; p->u.iRowid = iRowid; } #endif /* ** Copy the contents of object (*pFrom) into (*pTo). */ #ifdef SQLITE_ENABLE_STAT4 static void sampleCopy(StatAccum *p, StatSample *pTo, StatSample *pFrom){ pTo->isPSample = pFrom->isPSample; pTo->iCol = pFrom->iCol; pTo->iHash = pFrom->iHash; memcpy(pTo->anEq, pFrom->anEq, sizeof(tRowcnt)*p->nCol); memcpy(pTo->anLt, pFrom->anLt, sizeof(tRowcnt)*p->nCol); memcpy(pTo->anDLt, pFrom->anDLt, sizeof(tRowcnt)*p->nCol); if( pFrom->nRowid ){ sampleSetRowid(p->db, pTo, pFrom->nRowid, pFrom->u.aRowid); }else{ sampleSetRowidInt64(p->db, pTo, pFrom->u.iRowid); } } #endif /* ** Reclaim all memory of a StatAccum structure. */ static void statAccumDestructor(void *pOld){ StatAccum *p = (StatAccum*)pOld; #ifdef SQLITE_ENABLE_STAT4 if( p->mxSample ){ int i; for(i=0; inCol; i++) sampleClear(p->db, p->aBest+i); for(i=0; imxSample; i++) sampleClear(p->db, p->a+i); sampleClear(p->db, &p->current); } #endif sqlite3DbFree(p->db, p); } /* ** Implementation of the stat_init(N,K,C,L) SQL function. The four parameters ** are: ** N: The number of columns in the index including the rowid/pk (note 1) ** K: The number of columns in the index excluding the rowid/pk. ** C: Estimated number of rows in the index ** L: A limit on the number of rows to scan, or 0 for no-limit ** ** Note 1: In the special case of the covering index that implements a ** WITHOUT ROWID table, N is the number of PRIMARY KEY columns, not the ** total number of columns in the table. ** ** For indexes on ordinary rowid tables, N==K+1. But for indexes on ** WITHOUT ROWID tables, N=K+P where P is the number of columns in the ** PRIMARY KEY of the table. The covering index that implements the ** original WITHOUT ROWID table as N==K as a special case. ** ** This routine allocates the StatAccum object in heap memory. The return ** value is a pointer to the StatAccum object. The datatype of the ** return value is BLOB, but it is really just a pointer to the StatAccum ** object. */ static void statInit( sqlite3_context *context, int argc, sqlite3_value **argv ){ StatAccum *p; int nCol; /* Number of columns in index being sampled */ int nKeyCol; /* Number of key columns */ int nColUp; /* nCol rounded up for alignment */ int n; /* Bytes of space to allocate */ sqlite3 *db = sqlite3_context_db_handle(context); /* Database connection */ #ifdef SQLITE_ENABLE_STAT4 /* Maximum number of samples. 0 if STAT4 data is not collected */ int mxSample = OptimizationEnabled(db,SQLITE_Stat4) ?SQLITE_STAT4_SAMPLES :0; #endif /* Decode the three function arguments */ UNUSED_PARAMETER(argc); nCol = sqlite3_value_int(argv[0]); assert( nCol>0 ); nColUp = sizeof(tRowcnt)<8 ? (nCol+1)&~1 : nCol; nKeyCol = sqlite3_value_int(argv[1]); assert( nKeyCol<=nCol ); assert( nKeyCol>0 ); /* Allocate the space required for the StatAccum object */ n = sizeof(*p) + sizeof(tRowcnt)*nColUp /* StatAccum.anEq */ + sizeof(tRowcnt)*nColUp; /* StatAccum.anDLt */ #ifdef SQLITE_ENABLE_STAT4 if( mxSample ){ n += sizeof(tRowcnt)*nColUp /* StatAccum.anLt */ + sizeof(StatSample)*(nCol+mxSample) /* StatAccum.aBest[], a[] */ + sizeof(tRowcnt)*3*nColUp*(nCol+mxSample); } #endif db = sqlite3_context_db_handle(context); p = sqlite3DbMallocZero(db, n); if( p==0 ){ sqlite3_result_error_nomem(context); return; } p->db = db; p->nEst = sqlite3_value_int64(argv[2]); p->nRow = 0; p->nLimit = sqlite3_value_int64(argv[3]); p->nCol = nCol; p->nKeyCol = nKeyCol; p->nSkipAhead = 0; p->current.anDLt = (tRowcnt*)&p[1]; p->current.anEq = &p->current.anDLt[nColUp]; #ifdef SQLITE_ENABLE_STAT4 p->mxSample = p->nLimit==0 ? mxSample : 0; if( mxSample ){ u8 *pSpace; /* Allocated space not yet assigned */ int i; /* Used to iterate through p->aSample[] */ p->iGet = -1; p->nPSample = (tRowcnt)(p->nEst/(mxSample/3+1) + 1); p->current.anLt = &p->current.anEq[nColUp]; p->iPrn = 0x689e962d*(u32)nCol ^ 0xd0944565*(u32)sqlite3_value_int(argv[2]); /* Set up the StatAccum.a[] and aBest[] arrays */ p->a = (struct StatSample*)&p->current.anLt[nColUp]; p->aBest = &p->a[mxSample]; pSpace = (u8*)(&p->a[mxSample+nCol]); for(i=0; i<(mxSample+nCol); i++){ p->a[i].anEq = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); p->a[i].anLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); p->a[i].anDLt = (tRowcnt *)pSpace; pSpace += (sizeof(tRowcnt) * nColUp); } assert( (pSpace - (u8*)p)==n ); for(i=0; iaBest[i].iCol = i; } } #endif /* Return a pointer to the allocated object to the caller. Note that ** only the pointer (the 2nd parameter) matters. The size of the object ** (given by the 3rd parameter) is never used and can be any positive ** value. */ sqlite3_result_blob(context, p, sizeof(*p), statAccumDestructor); } static const FuncDef statInitFuncdef = { 4, /* nArg */ SQLITE_UTF8, /* funcFlags */ 0, /* pUserData */ 0, /* pNext */ statInit, /* xSFunc */ 0, /* xFinalize */ 0, 0, /* xValue, xInverse */ "stat_init", /* zName */ {0} }; #ifdef SQLITE_ENABLE_STAT4 /* ** pNew and pOld are both candidate non-periodic samples selected for ** the same column (pNew->iCol==pOld->iCol). Ignoring this column and ** considering only any trailing columns and the sample hash value, this ** function returns true if sample pNew is to be preferred over pOld. ** In other words, if we assume that the cardinalities of the selected ** column for pNew and pOld are equal, is pNew to be preferred over pOld. ** ** This function assumes that for each argument sample, the contents of ** the anEq[] array from pSample->anEq[pSample->iCol+1] onwards are valid. */ static int sampleIsBetterPost( StatAccum *pAccum, StatSample *pNew, StatSample *pOld ){ int nCol = pAccum->nCol; int i; assert( pNew->iCol==pOld->iCol ); for(i=pNew->iCol+1; ianEq[i]>pOld->anEq[i] ) return 1; if( pNew->anEq[i]anEq[i] ) return 0; } if( pNew->iHash>pOld->iHash ) return 1; return 0; } #endif #ifdef SQLITE_ENABLE_STAT4 /* ** Return true if pNew is to be preferred over pOld. ** ** This function assumes that for each argument sample, the contents of ** the anEq[] array from pSample->anEq[pSample->iCol] onwards are valid. */ static int sampleIsBetter( StatAccum *pAccum, StatSample *pNew, StatSample *pOld ){ tRowcnt nEqNew = pNew->anEq[pNew->iCol]; tRowcnt nEqOld = pOld->anEq[pOld->iCol]; assert( pOld->isPSample==0 && pNew->isPSample==0 ); assert( IsStat4 || (pNew->iCol==0 && pOld->iCol==0) ); if( (nEqNew>nEqOld) ) return 1; if( nEqNew==nEqOld ){ if( pNew->iColiCol ) return 1; return (pNew->iCol==pOld->iCol && sampleIsBetterPost(pAccum, pNew, pOld)); } return 0; } /* ** Copy the contents of sample *pNew into the p->a[] array. If necessary, ** remove the least desirable sample from p->a[] to make room. */ static void sampleInsert(StatAccum *p, StatSample *pNew, int nEqZero){ StatSample *pSample = 0; int i; assert( IsStat4 || nEqZero==0 ); /* StatAccum.nMaxEqZero is set to the maximum number of leading 0 ** values in the anEq[] array of any sample in StatAccum.a[]. In ** other words, if nMaxEqZero is n, then it is guaranteed that there ** are no samples with StatSample.anEq[m]==0 for (m>=n). */ if( nEqZero>p->nMaxEqZero ){ p->nMaxEqZero = nEqZero; } if( pNew->isPSample==0 ){ StatSample *pUpgrade = 0; assert( pNew->anEq[pNew->iCol]>0 ); /* This sample is being added because the prefix that ends in column ** iCol occurs many times in the table. However, if we have already ** added a sample that shares this prefix, there is no need to add ** this one. Instead, upgrade the priority of the highest priority ** existing sample that shares this prefix. */ for(i=p->nSample-1; i>=0; i--){ StatSample *pOld = &p->a[i]; if( pOld->anEq[pNew->iCol]==0 ){ if( pOld->isPSample ) return; assert( pOld->iCol>pNew->iCol ); assert( sampleIsBetter(p, pNew, pOld) ); if( pUpgrade==0 || sampleIsBetter(p, pOld, pUpgrade) ){ pUpgrade = pOld; } } } if( pUpgrade ){ pUpgrade->iCol = pNew->iCol; pUpgrade->anEq[pUpgrade->iCol] = pNew->anEq[pUpgrade->iCol]; goto find_new_min; } } /* If necessary, remove sample iMin to make room for the new sample. */ if( p->nSample>=p->mxSample ){ StatSample *pMin = &p->a[p->iMin]; tRowcnt *anEq = pMin->anEq; tRowcnt *anLt = pMin->anLt; tRowcnt *anDLt = pMin->anDLt; sampleClear(p->db, pMin); memmove(pMin, &pMin[1], sizeof(p->a[0])*(p->nSample-p->iMin-1)); pSample = &p->a[p->nSample-1]; pSample->nRowid = 0; pSample->anEq = anEq; pSample->anDLt = anDLt; pSample->anLt = anLt; p->nSample = p->mxSample-1; } /* The "rows less-than" for the rowid column must be greater than that ** for the last sample in the p->a[] array. Otherwise, the samples would ** be out of order. */ assert( p->nSample==0 || pNew->anLt[p->nCol-1] > p->a[p->nSample-1].anLt[p->nCol-1] ); /* Insert the new sample */ pSample = &p->a[p->nSample]; sampleCopy(p, pSample, pNew); p->nSample++; /* Zero the first nEqZero entries in the anEq[] array. */ memset(pSample->anEq, 0, sizeof(tRowcnt)*nEqZero); find_new_min: if( p->nSample>=p->mxSample ){ int iMin = -1; for(i=0; imxSample; i++){ if( p->a[i].isPSample ) continue; if( iMin<0 || sampleIsBetter(p, &p->a[iMin], &p->a[i]) ){ iMin = i; } } assert( iMin>=0 ); p->iMin = iMin; } } #endif /* SQLITE_ENABLE_STAT4 */ #ifdef SQLITE_ENABLE_STAT4 /* ** Field iChng of the index being scanned has changed. So at this point ** p->current contains a sample that reflects the previous row of the ** index. The value of anEq[iChng] and subsequent anEq[] elements are ** correct at this point. */ static void samplePushPrevious(StatAccum *p, int iChng){ int i; /* Check if any samples from the aBest[] array should be pushed ** into IndexSample.a[] at this point. */ for(i=(p->nCol-2); i>=iChng; i--){ StatSample *pBest = &p->aBest[i]; pBest->anEq[i] = p->current.anEq[i]; if( p->nSamplemxSample || sampleIsBetter(p, pBest, &p->a[p->iMin]) ){ sampleInsert(p, pBest, i); } } /* Check that no sample contains an anEq[] entry with an index of ** p->nMaxEqZero or greater set to zero. */ for(i=p->nSample-1; i>=0; i--){ int j; for(j=p->nMaxEqZero; jnCol; j++) assert( p->a[i].anEq[j]>0 ); } /* Update the anEq[] fields of any samples already collected. */ if( iChngnMaxEqZero ){ for(i=p->nSample-1; i>=0; i--){ int j; for(j=iChng; jnCol; j++){ if( p->a[i].anEq[j]==0 ) p->a[i].anEq[j] = p->current.anEq[j]; } } p->nMaxEqZero = iChng; } } #endif /* SQLITE_ENABLE_STAT4 */ /* ** Implementation of the stat_push SQL function: stat_push(P,C,R) ** Arguments: ** ** P Pointer to the StatAccum object created by stat_init() ** C Index of left-most column to differ from previous row ** R Rowid for the current row. Might be a key record for ** WITHOUT ROWID tables. ** ** The purpose of this routine is to collect statistical data and/or ** samples from the index being analyzed into the StatAccum object. ** The stat_get() SQL function will be used afterwards to ** retrieve the information gathered. ** ** This SQL function usually returns NULL, but might return an integer ** if it wants the byte-code to do special processing. ** ** The R parameter is only used for STAT4 */ static void statPush( sqlite3_context *context, int argc, sqlite3_value **argv ){ int i; /* The three function arguments */ StatAccum *p = (StatAccum*)sqlite3_value_blob(argv[0]); int iChng = sqlite3_value_int(argv[1]); UNUSED_PARAMETER( argc ); UNUSED_PARAMETER( context ); assert( p->nCol>0 ); assert( iChngnCol ); if( p->nRow==0 ){ /* This is the first call to this function. Do initialization. */ for(i=0; inCol; i++) p->current.anEq[i] = 1; }else{ /* Second and subsequent calls get processed here */ #ifdef SQLITE_ENABLE_STAT4 if( p->mxSample ) samplePushPrevious(p, iChng); #endif /* Update anDLt[], anLt[] and anEq[] to reflect the values that apply ** to the current row of the index. */ for(i=0; icurrent.anEq[i]++; } for(i=iChng; inCol; i++){ p->current.anDLt[i]++; #ifdef SQLITE_ENABLE_STAT4 if( p->mxSample ) p->current.anLt[i] += p->current.anEq[i]; #endif p->current.anEq[i] = 1; } } p->nRow++; #ifdef SQLITE_ENABLE_STAT4 if( p->mxSample ){ tRowcnt nLt; if( sqlite3_value_type(argv[2])==SQLITE_INTEGER ){ sampleSetRowidInt64(p->db, &p->current, sqlite3_value_int64(argv[2])); }else{ sampleSetRowid(p->db, &p->current, sqlite3_value_bytes(argv[2]), sqlite3_value_blob(argv[2])); } p->current.iHash = p->iPrn = p->iPrn*1103515245 + 12345; nLt = p->current.anLt[p->nCol-1]; /* Check if this is to be a periodic sample. If so, add it. */ if( (nLt/p->nPSample)!=(nLt+1)/p->nPSample ){ p->current.isPSample = 1; p->current.iCol = 0; sampleInsert(p, &p->current, p->nCol-1); p->current.isPSample = 0; } /* Update the aBest[] array. */ for(i=0; i<(p->nCol-1); i++){ p->current.iCol = i; if( i>=iChng || sampleIsBetterPost(p, &p->current, &p->aBest[i]) ){ sampleCopy(p, &p->aBest[i], &p->current); } } }else #endif if( p->nLimit && p->nRow>(tRowcnt)p->nLimit*(p->nSkipAhead+1) ){ p->nSkipAhead++; sqlite3_result_int(context, p->current.anDLt[0]>0); } } static const FuncDef statPushFuncdef = { 2+IsStat4, /* nArg */ SQLITE_UTF8, /* funcFlags */ 0, /* pUserData */ 0, /* pNext */ statPush, /* xSFunc */ 0, /* xFinalize */ 0, 0, /* xValue, xInverse */ "stat_push", /* zName */ {0} }; #define STAT_GET_STAT1 0 /* "stat" column of stat1 table */ #define STAT_GET_ROWID 1 /* "rowid" column of stat[34] entry */ #define STAT_GET_NEQ 2 /* "neq" column of stat[34] entry */ #define STAT_GET_NLT 3 /* "nlt" column of stat[34] entry */ #define STAT_GET_NDLT 4 /* "ndlt" column of stat[34] entry */ /* ** Implementation of the stat_get(P,J) SQL function. This routine is ** used to query statistical information that has been gathered into ** the StatAccum object by prior calls to stat_push(). The P parameter ** has type BLOB but it is really just a pointer to the StatAccum object. ** The content to returned is determined by the parameter J ** which is one of the STAT_GET_xxxx values defined above. ** ** The stat_get(P,J) function is not available to generic SQL. It is ** inserted as part of a manually constructed bytecode program. (See ** the callStatGet() routine below.) It is guaranteed that the P ** parameter will always be a pointer to a StatAccum object, never a ** NULL. ** ** If STAT4 is not enabled, then J is always ** STAT_GET_STAT1 and is hence omitted and this routine becomes ** a one-parameter function, stat_get(P), that always returns the ** stat1 table entry information. */ static void statGet( sqlite3_context *context, int argc, sqlite3_value **argv ){ StatAccum *p = (StatAccum*)sqlite3_value_blob(argv[0]); #ifdef SQLITE_ENABLE_STAT4 /* STAT4 has a parameter on this routine. */ int eCall = sqlite3_value_int(argv[1]); assert( argc==2 ); assert( eCall==STAT_GET_STAT1 || eCall==STAT_GET_NEQ || eCall==STAT_GET_ROWID || eCall==STAT_GET_NLT || eCall==STAT_GET_NDLT ); assert( eCall==STAT_GET_STAT1 || p->mxSample ); if( eCall==STAT_GET_STAT1 ) #else assert( argc==1 ); #endif { /* Return the value to store in the "stat" column of the sqlite_stat1 ** table for this index. ** ** The value is a string composed of a list of integers describing ** the index. The first integer in the list is the total number of ** entries in the index. There is one additional integer in the list ** for each indexed column. This additional integer is an estimate of ** the number of rows matched by a equality query on the index using ** a key with the corresponding number of fields. In other words, ** if the index is on columns (a,b) and the sqlite_stat1 value is ** "100 10 2", then SQLite estimates that: ** ** * the index contains 100 rows, ** * "WHERE a=?" matches 10 rows, and ** * "WHERE a=? AND b=?" matches 2 rows. ** ** If D is the count of distinct values and K is the total number of ** rows, then each estimate is computed as: ** ** I = (K+D-1)/D */ char *z; int i; char *zRet = sqlite3MallocZero( (p->nKeyCol+1)*25 ); if( zRet==0 ){ sqlite3_result_error_nomem(context); return; } sqlite3_snprintf(24, zRet, "%llu", p->nSkipAhead ? (u64)p->nEst : (u64)p->nRow); z = zRet + sqlite3Strlen30(zRet); for(i=0; inKeyCol; i++){ u64 nDistinct = p->current.anDLt[i] + 1; u64 iVal = (p->nRow + nDistinct - 1) / nDistinct; sqlite3_snprintf(24, z, " %llu", iVal); z += sqlite3Strlen30(z); assert( p->current.anEq[i] ); } assert( z[0]=='\0' && z>zRet ); sqlite3_result_text(context, zRet, -1, sqlite3_free); } #ifdef SQLITE_ENABLE_STAT4 else if( eCall==STAT_GET_ROWID ){ if( p->iGet<0 ){ samplePushPrevious(p, 0); p->iGet = 0; } if( p->iGetnSample ){ StatSample *pS = p->a + p->iGet; if( pS->nRowid==0 ){ sqlite3_result_int64(context, pS->u.iRowid); }else{ sqlite3_result_blob(context, pS->u.aRowid, pS->nRowid, SQLITE_TRANSIENT); } } }else{ tRowcnt *aCnt = 0; assert( p->iGetnSample ); switch( eCall ){ case STAT_GET_NEQ: aCnt = p->a[p->iGet].anEq; break; case STAT_GET_NLT: aCnt = p->a[p->iGet].anLt; break; default: { aCnt = p->a[p->iGet].anDLt; p->iGet++; break; } } { char *zRet = sqlite3MallocZero(p->nCol * 25); if( zRet==0 ){ sqlite3_result_error_nomem(context); }else{ int i; char *z = zRet; for(i=0; inCol; i++){ sqlite3_snprintf(24, z, "%llu ", (u64)aCnt[i]); z += sqlite3Strlen30(z); } assert( z[0]=='\0' && z>zRet ); z[-1] = '\0'; sqlite3_result_text(context, zRet, -1, sqlite3_free); } } } #endif /* SQLITE_ENABLE_STAT4 */ #ifndef SQLITE_DEBUG UNUSED_PARAMETER( argc ); #endif } static const FuncDef statGetFuncdef = { 1+IsStat4, /* nArg */ SQLITE_UTF8, /* funcFlags */ 0, /* pUserData */ 0, /* pNext */ statGet, /* xSFunc */ 0, /* xFinalize */ 0, 0, /* xValue, xInverse */ "stat_get", /* zName */ {0} }; static void callStatGet(Parse *pParse, int regStat, int iParam, int regOut){ #ifdef SQLITE_ENABLE_STAT4 sqlite3VdbeAddOp2(pParse->pVdbe, OP_Integer, iParam, regStat+1); #elif SQLITE_DEBUG assert( iParam==STAT_GET_STAT1 ); #else UNUSED_PARAMETER( iParam ); #endif assert( regOut!=regStat && regOut!=regStat+1 ); sqlite3VdbeAddFunctionCall(pParse, 0, regStat, regOut, 1+IsStat4, &statGetFuncdef, 0); } #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS /* Add a comment to the most recent VDBE opcode that is the name ** of the k-th column of the pIdx index. */ static void analyzeVdbeCommentIndexWithColumnName( Vdbe *v, /* Prepared statement under construction */ Index *pIdx, /* Index whose column is being loaded */ int k /* Which column index */ ){ int i; /* Index of column in the table */ assert( k>=0 && knColumn ); i = pIdx->aiColumn[k]; if( NEVER(i==XN_ROWID) ){ VdbeComment((v,"%s.rowid",pIdx->zName)); }else if( i==XN_EXPR ){ VdbeComment((v,"%s.expr(%d)",pIdx->zName, k)); }else{ VdbeComment((v,"%s.%s", pIdx->zName, pIdx->pTable->aCol[i].zName)); } } #else # define analyzeVdbeCommentIndexWithColumnName(a,b,c) #endif /* SQLITE_DEBUG */ /* ** Generate code to do an analysis of all indices associated with ** a single table. */ static void analyzeOneTable( Parse *pParse, /* Parser context */ Table *pTab, /* Table whose indices are to be analyzed */ Index *pOnlyIdx, /* If not NULL, only analyze this one index */ int iStatCur, /* Index of VdbeCursor that writes the sqlite_stat1 table */ int iMem, /* Available memory locations begin here */ int iTab /* Next available cursor */ ){ sqlite3 *db = pParse->db; /* Database handle */ Index *pIdx; /* An index to being analyzed */ int iIdxCur; /* Cursor open on index being analyzed */ int iTabCur; /* Table cursor */ Vdbe *v; /* The virtual machine being built up */ int i; /* Loop counter */ int jZeroRows = -1; /* Jump from here if number of rows is zero */ int iDb; /* Index of database containing pTab */ u8 needTableCnt = 1; /* True to count the table */ int regNewRowid = iMem++; /* Rowid for the inserted record */ int regStat = iMem++; /* Register to hold StatAccum object */ int regChng = iMem++; /* Index of changed index field */ int regRowid = iMem++; /* Rowid argument passed to stat_push() */ int regTemp = iMem++; /* Temporary use register */ int regTemp2 = iMem++; /* Second temporary use register */ int regTabname = iMem++; /* Register containing table name */ int regIdxname = iMem++; /* Register containing index name */ int regStat1 = iMem++; /* Value for the stat column of sqlite_stat1 */ int regPrev = iMem; /* MUST BE LAST (see below) */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK Table *pStat1 = 0; #endif pParse->nMem = MAX(pParse->nMem, iMem); v = sqlite3GetVdbe(pParse); if( v==0 || NEVER(pTab==0) ){ return; } if( pTab->tnum==0 ){ /* Do not gather statistics on views or virtual tables */ return; } if( sqlite3_strlike("sqlite\\_%", pTab->zName, '\\')==0 ){ /* Do not gather statistics on system tables */ return; } assert( sqlite3BtreeHoldsAllMutexes(db) ); iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDb>=0 ); assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); #ifndef SQLITE_OMIT_AUTHORIZATION if( sqlite3AuthCheck(pParse, SQLITE_ANALYZE, pTab->zName, 0, db->aDb[iDb].zDbSName ) ){ return; } #endif #ifdef SQLITE_ENABLE_PREUPDATE_HOOK if( db->xPreUpdateCallback ){ pStat1 = (Table*)sqlite3DbMallocZero(db, sizeof(Table) + 13); if( pStat1==0 ) return; pStat1->zName = (char*)&pStat1[1]; memcpy(pStat1->zName, "sqlite_stat1", 13); pStat1->nCol = 3; pStat1->iPKey = -1; sqlite3VdbeAddOp4(pParse->pVdbe, OP_Noop, 0, 0, 0,(char*)pStat1,P4_DYNBLOB); } #endif /* Establish a read-lock on the table at the shared-cache level. ** Open a read-only cursor on the table. Also allocate a cursor number ** to use for scanning indexes (iIdxCur). No index cursor is opened at ** this time though. */ sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); iTabCur = iTab++; iIdxCur = iTab++; pParse->nTab = MAX(pParse->nTab, iTab); sqlite3OpenTable(pParse, iTabCur, iDb, pTab, OP_OpenRead); sqlite3VdbeLoadString(v, regTabname, pTab->zName); for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int nCol; /* Number of columns in pIdx. "N" */ int addrRewind; /* Address of "OP_Rewind iIdxCur" */ int addrNextRow; /* Address of "next_row:" */ const char *zIdxName; /* Name of the index */ int nColTest; /* Number of columns to test for changes */ if( pOnlyIdx && pOnlyIdx!=pIdx ) continue; if( pIdx->pPartIdxWhere==0 ) needTableCnt = 0; if( !HasRowid(pTab) && IsPrimaryKeyIndex(pIdx) ){ nCol = pIdx->nKeyCol; zIdxName = pTab->zName; nColTest = nCol - 1; }else{ nCol = pIdx->nColumn; zIdxName = pIdx->zName; nColTest = pIdx->uniqNotNull ? pIdx->nKeyCol-1 : nCol-1; } /* Populate the register containing the index name. */ sqlite3VdbeLoadString(v, regIdxname, zIdxName); VdbeComment((v, "Analysis for %s.%s", pTab->zName, zIdxName)); /* ** Pseudo-code for loop that calls stat_push(): ** ** Rewind csr ** if eof(csr) goto end_of_scan; ** regChng = 0 ** goto chng_addr_0; ** ** next_row: ** regChng = 0 ** if( idx(0) != regPrev(0) ) goto chng_addr_0 ** regChng = 1 ** if( idx(1) != regPrev(1) ) goto chng_addr_1 ** ... ** regChng = N ** goto chng_addr_N ** ** chng_addr_0: ** regPrev(0) = idx(0) ** chng_addr_1: ** regPrev(1) = idx(1) ** ... ** ** endDistinctTest: ** regRowid = idx(rowid) ** stat_push(P, regChng, regRowid) ** Next csr ** if !eof(csr) goto next_row; ** ** end_of_scan: */ /* Make sure there are enough memory cells allocated to accommodate ** the regPrev array and a trailing rowid (the rowid slot is required ** when building a record to insert into the sample column of ** the sqlite_stat4 table. */ pParse->nMem = MAX(pParse->nMem, regPrev+nColTest); /* Open a read-only cursor on the index being analyzed. */ assert( iDb==sqlite3SchemaToIndex(db, pIdx->pSchema) ); sqlite3VdbeAddOp3(v, OP_OpenRead, iIdxCur, pIdx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); VdbeComment((v, "%s", pIdx->zName)); /* Invoke the stat_init() function. The arguments are: ** ** (1) the number of columns in the index including the rowid ** (or for a WITHOUT ROWID table, the number of PK columns), ** (2) the number of columns in the key without the rowid/pk ** (3) estimated number of rows in the index, */ sqlite3VdbeAddOp2(v, OP_Integer, nCol, regStat+1); assert( regRowid==regStat+2 ); sqlite3VdbeAddOp2(v, OP_Integer, pIdx->nKeyCol, regRowid); #ifdef SQLITE_ENABLE_STAT4 if( OptimizationEnabled(db, SQLITE_Stat4) ){ sqlite3VdbeAddOp2(v, OP_Count, iIdxCur, regTemp); addrRewind = sqlite3VdbeAddOp1(v, OP_Rewind, iIdxCur); VdbeCoverage(v); }else #endif { addrRewind = sqlite3VdbeAddOp1(v, OP_Rewind, iIdxCur); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_Count, iIdxCur, regTemp, 1); } assert( regTemp2==regStat+4 ); sqlite3VdbeAddOp2(v, OP_Integer, db->nAnalysisLimit, regTemp2); sqlite3VdbeAddFunctionCall(pParse, 0, regStat+1, regStat, 4, &statInitFuncdef, 0); /* Implementation of the following: ** ** Rewind csr ** if eof(csr) goto end_of_scan; ** regChng = 0 ** goto next_push_0; ** */ sqlite3VdbeAddOp2(v, OP_Integer, 0, regChng); addrNextRow = sqlite3VdbeCurrentAddr(v); if( nColTest>0 ){ int endDistinctTest = sqlite3VdbeMakeLabel(pParse); int *aGotoChng; /* Array of jump instruction addresses */ aGotoChng = sqlite3DbMallocRawNN(db, sizeof(int)*nColTest); if( aGotoChng==0 ) continue; /* ** next_row: ** regChng = 0 ** if( idx(0) != regPrev(0) ) goto chng_addr_0 ** regChng = 1 ** if( idx(1) != regPrev(1) ) goto chng_addr_1 ** ... ** regChng = N ** goto endDistinctTest */ sqlite3VdbeAddOp0(v, OP_Goto); addrNextRow = sqlite3VdbeCurrentAddr(v); if( nColTest==1 && pIdx->nKeyCol==1 && IsUniqueIndex(pIdx) ){ /* For a single-column UNIQUE index, once we have found a non-NULL ** row, we know that all the rest will be distinct, so skip ** subsequent distinctness tests. */ sqlite3VdbeAddOp2(v, OP_NotNull, regPrev, endDistinctTest); VdbeCoverage(v); } for(i=0; iazColl[i]); sqlite3VdbeAddOp2(v, OP_Integer, i, regChng); sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, i, regTemp); analyzeVdbeCommentIndexWithColumnName(v,pIdx,i); aGotoChng[i] = sqlite3VdbeAddOp4(v, OP_Ne, regTemp, 0, regPrev+i, pColl, P4_COLLSEQ); sqlite3VdbeChangeP5(v, SQLITE_NULLEQ); VdbeCoverage(v); } sqlite3VdbeAddOp2(v, OP_Integer, nColTest, regChng); sqlite3VdbeGoto(v, endDistinctTest); /* ** chng_addr_0: ** regPrev(0) = idx(0) ** chng_addr_1: ** regPrev(1) = idx(1) ** ... */ sqlite3VdbeJumpHere(v, addrNextRow-1); for(i=0; ipTable); int j, k, regKey; regKey = sqlite3GetTempRange(pParse, pPk->nKeyCol); for(j=0; jnKeyCol; j++){ k = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[j]); assert( k>=0 && knColumn ); sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, k, regKey+j); analyzeVdbeCommentIndexWithColumnName(v,pIdx,k); } sqlite3VdbeAddOp3(v, OP_MakeRecord, regKey, pPk->nKeyCol, regRowid); sqlite3ReleaseTempRange(pParse, regKey, pPk->nKeyCol); } } #endif assert( regChng==(regStat+1) ); { sqlite3VdbeAddFunctionCall(pParse, 1, regStat, regTemp, 2+IsStat4, &statPushFuncdef, 0); if( db->nAnalysisLimit ){ int j1, j2, j3; j1 = sqlite3VdbeAddOp1(v, OP_IsNull, regTemp); VdbeCoverage(v); j2 = sqlite3VdbeAddOp1(v, OP_If, regTemp); VdbeCoverage(v); j3 = sqlite3VdbeAddOp4Int(v, OP_SeekGT, iIdxCur, 0, regPrev, 1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, j1); sqlite3VdbeAddOp2(v, OP_Next, iIdxCur, addrNextRow); VdbeCoverage(v); sqlite3VdbeJumpHere(v, j2); sqlite3VdbeJumpHere(v, j3); }else{ sqlite3VdbeAddOp2(v, OP_Next, iIdxCur, addrNextRow); VdbeCoverage(v); } } /* Add the entry to the stat1 table. */ callStatGet(pParse, regStat, STAT_GET_STAT1, regStat1); assert( "BBB"[0]==SQLITE_AFF_TEXT ); sqlite3VdbeAddOp4(v, OP_MakeRecord, regTabname, 3, regTemp, "BBB", 0); sqlite3VdbeAddOp2(v, OP_NewRowid, iStatCur, regNewRowid); sqlite3VdbeAddOp3(v, OP_Insert, iStatCur, regTemp, regNewRowid); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK sqlite3VdbeChangeP4(v, -1, (char*)pStat1, P4_TABLE); #endif sqlite3VdbeChangeP5(v, OPFLAG_APPEND); /* Add the entries to the stat4 table. */ #ifdef SQLITE_ENABLE_STAT4 if( OptimizationEnabled(db, SQLITE_Stat4) && db->nAnalysisLimit==0 ){ int regEq = regStat1; int regLt = regStat1+1; int regDLt = regStat1+2; int regSample = regStat1+3; int regCol = regStat1+4; int regSampleRowid = regCol + nCol; int addrNext; int addrIsNull; u8 seekOp = HasRowid(pTab) ? OP_NotExists : OP_NotFound; pParse->nMem = MAX(pParse->nMem, regCol+nCol); addrNext = sqlite3VdbeCurrentAddr(v); callStatGet(pParse, regStat, STAT_GET_ROWID, regSampleRowid); addrIsNull = sqlite3VdbeAddOp1(v, OP_IsNull, regSampleRowid); VdbeCoverage(v); callStatGet(pParse, regStat, STAT_GET_NEQ, regEq); callStatGet(pParse, regStat, STAT_GET_NLT, regLt); callStatGet(pParse, regStat, STAT_GET_NDLT, regDLt); sqlite3VdbeAddOp4Int(v, seekOp, iTabCur, addrNext, regSampleRowid, 0); VdbeCoverage(v); for(i=0; izName)); sqlite3VdbeAddOp2(v, OP_Count, iTabCur, regStat1); jZeroRows = sqlite3VdbeAddOp1(v, OP_IfNot, regStat1); VdbeCoverage(v); sqlite3VdbeAddOp2(v, OP_Null, 0, regIdxname); assert( "BBB"[0]==SQLITE_AFF_TEXT ); sqlite3VdbeAddOp4(v, OP_MakeRecord, regTabname, 3, regTemp, "BBB", 0); sqlite3VdbeAddOp2(v, OP_NewRowid, iStatCur, regNewRowid); sqlite3VdbeAddOp3(v, OP_Insert, iStatCur, regTemp, regNewRowid); sqlite3VdbeChangeP5(v, OPFLAG_APPEND); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK sqlite3VdbeChangeP4(v, -1, (char*)pStat1, P4_TABLE); #endif sqlite3VdbeJumpHere(v, jZeroRows); } } /* ** Generate code that will cause the most recent index analysis to ** be loaded into internal hash tables where is can be used. */ static void loadAnalysis(Parse *pParse, int iDb){ Vdbe *v = sqlite3GetVdbe(pParse); if( v ){ sqlite3VdbeAddOp1(v, OP_LoadAnalysis, iDb); } } /* ** Generate code that will do an analysis of an entire database */ static void analyzeDatabase(Parse *pParse, int iDb){ sqlite3 *db = pParse->db; Schema *pSchema = db->aDb[iDb].pSchema; /* Schema of database iDb */ HashElem *k; int iStatCur; int iMem; int iTab; sqlite3BeginWriteOperation(pParse, 0, iDb); iStatCur = pParse->nTab; pParse->nTab += 3; openStatTable(pParse, iDb, iStatCur, 0, 0); iMem = pParse->nMem+1; iTab = pParse->nTab; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); for(k=sqliteHashFirst(&pSchema->tblHash); k; k=sqliteHashNext(k)){ Table *pTab = (Table*)sqliteHashData(k); analyzeOneTable(pParse, pTab, 0, iStatCur, iMem, iTab); } loadAnalysis(pParse, iDb); } /* ** Generate code that will do an analysis of a single table in ** a database. If pOnlyIdx is not NULL then it is a single index ** in pTab that should be analyzed. */ static void analyzeTable(Parse *pParse, Table *pTab, Index *pOnlyIdx){ int iDb; int iStatCur; assert( pTab!=0 ); assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); sqlite3BeginWriteOperation(pParse, 0, iDb); iStatCur = pParse->nTab; pParse->nTab += 3; if( pOnlyIdx ){ openStatTable(pParse, iDb, iStatCur, pOnlyIdx->zName, "idx"); }else{ openStatTable(pParse, iDb, iStatCur, pTab->zName, "tbl"); } analyzeOneTable(pParse, pTab, pOnlyIdx, iStatCur,pParse->nMem+1,pParse->nTab); loadAnalysis(pParse, iDb); } /* ** Generate code for the ANALYZE command. The parser calls this routine ** when it recognizes an ANALYZE command. ** ** ANALYZE -- 1 ** ANALYZE -- 2 ** ANALYZE ?.? -- 3 ** ** Form 1 causes all indices in all attached databases to be analyzed. ** Form 2 analyzes all indices the single database named. ** Form 3 analyzes all indices associated with the named table. */ SQLITE_PRIVATE void sqlite3Analyze(Parse *pParse, Token *pName1, Token *pName2){ sqlite3 *db = pParse->db; int iDb; int i; char *z, *zDb; Table *pTab; Index *pIdx; Token *pTableName; Vdbe *v; /* Read the database schema. If an error occurs, leave an error message ** and code in pParse and return NULL. */ assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ return; } assert( pName2!=0 || pName1==0 ); if( pName1==0 ){ /* Form 1: Analyze everything */ for(i=0; inDb; i++){ if( i==1 ) continue; /* Do not analyze the TEMP database */ analyzeDatabase(pParse, i); } }else if( pName2->n==0 && (iDb = sqlite3FindDb(db, pName1))>=0 ){ /* Analyze the schema named as the argument */ analyzeDatabase(pParse, iDb); }else{ /* Form 3: Analyze the table or index named as an argument */ iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pTableName); if( iDb>=0 ){ zDb = pName2->n ? db->aDb[iDb].zDbSName : 0; z = sqlite3NameFromToken(db, pTableName); if( z ){ if( (pIdx = sqlite3FindIndex(db, z, zDb))!=0 ){ analyzeTable(pParse, pIdx->pTable, pIdx); }else if( (pTab = sqlite3LocateTable(pParse, 0, z, zDb))!=0 ){ analyzeTable(pParse, pTab, 0); } sqlite3DbFree(db, z); } } } if( db->nSqlExec==0 && (v = sqlite3GetVdbe(pParse))!=0 ){ sqlite3VdbeAddOp0(v, OP_Expire); } } /* ** Used to pass information from the analyzer reader through to the ** callback routine. */ typedef struct analysisInfo analysisInfo; struct analysisInfo { sqlite3 *db; const char *zDatabase; }; /* ** The first argument points to a nul-terminated string containing a ** list of space separated integers. Read the first nOut of these into ** the array aOut[]. */ static void decodeIntArray( char *zIntArray, /* String containing int array to decode */ int nOut, /* Number of slots in aOut[] */ tRowcnt *aOut, /* Store integers here */ LogEst *aLog, /* Or, if aOut==0, here */ Index *pIndex /* Handle extra flags for this index, if not NULL */ ){ char *z = zIntArray; int c; int i; tRowcnt v; #ifdef SQLITE_ENABLE_STAT4 if( z==0 ) z = ""; #else assert( z!=0 ); #endif for(i=0; *z && i='0' && c<='9' ){ v = v*10 + c - '0'; z++; } #ifdef SQLITE_ENABLE_STAT4 if( aOut ) aOut[i] = v; if( aLog ) aLog[i] = sqlite3LogEst(v); #else assert( aOut==0 ); UNUSED_PARAMETER(aOut); assert( aLog!=0 ); aLog[i] = sqlite3LogEst(v); #endif if( *z==' ' ) z++; } #ifndef SQLITE_ENABLE_STAT4 assert( pIndex!=0 ); { #else if( pIndex ){ #endif pIndex->bUnordered = 0; pIndex->noSkipScan = 0; while( z[0] ){ if( sqlite3_strglob("unordered*", z)==0 ){ pIndex->bUnordered = 1; }else if( sqlite3_strglob("sz=[0-9]*", z)==0 ){ int sz = sqlite3Atoi(z+3); if( sz<2 ) sz = 2; pIndex->szIdxRow = sqlite3LogEst(sz); }else if( sqlite3_strglob("noskipscan*", z)==0 ){ pIndex->noSkipScan = 1; } #ifdef SQLITE_ENABLE_COSTMULT else if( sqlite3_strglob("costmult=[0-9]*",z)==0 ){ pIndex->pTable->costMult = sqlite3LogEst(sqlite3Atoi(z+9)); } #endif while( z[0]!=0 && z[0]!=' ' ) z++; while( z[0]==' ' ) z++; } } } /* ** This callback is invoked once for each index when reading the ** sqlite_stat1 table. ** ** argv[0] = name of the table ** argv[1] = name of the index (might be NULL) ** argv[2] = results of analysis - on integer for each column ** ** Entries for which argv[1]==NULL simply record the number of rows in ** the table. */ static int analysisLoader(void *pData, int argc, char **argv, char **NotUsed){ analysisInfo *pInfo = (analysisInfo*)pData; Index *pIndex; Table *pTable; const char *z; assert( argc==3 ); UNUSED_PARAMETER2(NotUsed, argc); if( argv==0 || argv[0]==0 || argv[2]==0 ){ return 0; } pTable = sqlite3FindTable(pInfo->db, argv[0], pInfo->zDatabase); if( pTable==0 ){ return 0; } if( argv[1]==0 ){ pIndex = 0; }else if( sqlite3_stricmp(argv[0],argv[1])==0 ){ pIndex = sqlite3PrimaryKeyIndex(pTable); }else{ pIndex = sqlite3FindIndex(pInfo->db, argv[1], pInfo->zDatabase); } z = argv[2]; if( pIndex ){ tRowcnt *aiRowEst = 0; int nCol = pIndex->nKeyCol+1; #ifdef SQLITE_ENABLE_STAT4 /* Index.aiRowEst may already be set here if there are duplicate ** sqlite_stat1 entries for this index. In that case just clobber ** the old data with the new instead of allocating a new array. */ if( pIndex->aiRowEst==0 ){ pIndex->aiRowEst = (tRowcnt*)sqlite3MallocZero(sizeof(tRowcnt) * nCol); if( pIndex->aiRowEst==0 ) sqlite3OomFault(pInfo->db); } aiRowEst = pIndex->aiRowEst; #endif pIndex->bUnordered = 0; decodeIntArray((char*)z, nCol, aiRowEst, pIndex->aiRowLogEst, pIndex); pIndex->hasStat1 = 1; if( pIndex->pPartIdxWhere==0 ){ pTable->nRowLogEst = pIndex->aiRowLogEst[0]; pTable->tabFlags |= TF_HasStat1; } }else{ Index fakeIdx; fakeIdx.szIdxRow = pTable->szTabRow; #ifdef SQLITE_ENABLE_COSTMULT fakeIdx.pTable = pTable; #endif decodeIntArray((char*)z, 1, 0, &pTable->nRowLogEst, &fakeIdx); pTable->szTabRow = fakeIdx.szIdxRow; pTable->tabFlags |= TF_HasStat1; } return 0; } /* ** If the Index.aSample variable is not NULL, delete the aSample[] array ** and its contents. */ SQLITE_PRIVATE void sqlite3DeleteIndexSamples(sqlite3 *db, Index *pIdx){ #ifdef SQLITE_ENABLE_STAT4 if( pIdx->aSample ){ int j; for(j=0; jnSample; j++){ IndexSample *p = &pIdx->aSample[j]; sqlite3DbFree(db, p->p); } sqlite3DbFree(db, pIdx->aSample); } if( db && db->pnBytesFreed==0 ){ pIdx->nSample = 0; pIdx->aSample = 0; } #else UNUSED_PARAMETER(db); UNUSED_PARAMETER(pIdx); #endif /* SQLITE_ENABLE_STAT4 */ } #ifdef SQLITE_ENABLE_STAT4 /* ** Populate the pIdx->aAvgEq[] array based on the samples currently ** stored in pIdx->aSample[]. */ static void initAvgEq(Index *pIdx){ if( pIdx ){ IndexSample *aSample = pIdx->aSample; IndexSample *pFinal = &aSample[pIdx->nSample-1]; int iCol; int nCol = 1; if( pIdx->nSampleCol>1 ){ /* If this is stat4 data, then calculate aAvgEq[] values for all ** sample columns except the last. The last is always set to 1, as ** once the trailing PK fields are considered all index keys are ** unique. */ nCol = pIdx->nSampleCol-1; pIdx->aAvgEq[nCol] = 1; } for(iCol=0; iColnSample; int i; /* Used to iterate through samples */ tRowcnt sumEq = 0; /* Sum of the nEq values */ tRowcnt avgEq = 0; tRowcnt nRow; /* Number of rows in index */ i64 nSum100 = 0; /* Number of terms contributing to sumEq */ i64 nDist100; /* Number of distinct values in index */ if( !pIdx->aiRowEst || iCol>=pIdx->nKeyCol || pIdx->aiRowEst[iCol+1]==0 ){ nRow = pFinal->anLt[iCol]; nDist100 = (i64)100 * pFinal->anDLt[iCol]; nSample--; }else{ nRow = pIdx->aiRowEst[0]; nDist100 = ((i64)100 * pIdx->aiRowEst[0]) / pIdx->aiRowEst[iCol+1]; } pIdx->nRowEst0 = nRow; /* Set nSum to the number of distinct (iCol+1) field prefixes that ** occur in the stat4 table for this index. Set sumEq to the sum of ** the nEq values for column iCol for the same set (adding the value ** only once where there exist duplicate prefixes). */ for(i=0; inSample-1) || aSample[i].anDLt[iCol]!=aSample[i+1].anDLt[iCol] ){ sumEq += aSample[i].anEq[iCol]; nSum100 += 100; } } if( nDist100>nSum100 && sumEqaAvgEq[iCol] = avgEq; } } } /* ** Look up an index by name. Or, if the name of a WITHOUT ROWID table ** is supplied instead, find the PRIMARY KEY index for that table. */ static Index *findIndexOrPrimaryKey( sqlite3 *db, const char *zName, const char *zDb ){ Index *pIdx = sqlite3FindIndex(db, zName, zDb); if( pIdx==0 ){ Table *pTab = sqlite3FindTable(db, zName, zDb); if( pTab && !HasRowid(pTab) ) pIdx = sqlite3PrimaryKeyIndex(pTab); } return pIdx; } /* ** Load the content from either the sqlite_stat4 ** into the relevant Index.aSample[] arrays. ** ** Arguments zSql1 and zSql2 must point to SQL statements that return ** data equivalent to the following: ** ** zSql1: SELECT idx,count(*) FROM %Q.sqlite_stat4 GROUP BY idx ** zSql2: SELECT idx,neq,nlt,ndlt,sample FROM %Q.sqlite_stat4 ** ** where %Q is replaced with the database name before the SQL is executed. */ static int loadStatTbl( sqlite3 *db, /* Database handle */ const char *zSql1, /* SQL statement 1 (see above) */ const char *zSql2, /* SQL statement 2 (see above) */ const char *zDb /* Database name (e.g. "main") */ ){ int rc; /* Result codes from subroutines */ sqlite3_stmt *pStmt = 0; /* An SQL statement being run */ char *zSql; /* Text of the SQL statement */ Index *pPrevIdx = 0; /* Previous index in the loop */ IndexSample *pSample; /* A slot in pIdx->aSample[] */ assert( db->lookaside.bDisable ); zSql = sqlite3MPrintf(db, zSql1, zDb); if( !zSql ){ return SQLITE_NOMEM_BKPT; } rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0); sqlite3DbFree(db, zSql); if( rc ) return rc; while( sqlite3_step(pStmt)==SQLITE_ROW ){ int nIdxCol = 1; /* Number of columns in stat4 records */ char *zIndex; /* Index name */ Index *pIdx; /* Pointer to the index object */ int nSample; /* Number of samples */ int nByte; /* Bytes of space required */ int i; /* Bytes of space required */ tRowcnt *pSpace; zIndex = (char *)sqlite3_column_text(pStmt, 0); if( zIndex==0 ) continue; nSample = sqlite3_column_int(pStmt, 1); pIdx = findIndexOrPrimaryKey(db, zIndex, zDb); assert( pIdx==0 || pIdx->nSample==0 ); if( pIdx==0 ) continue; assert( !HasRowid(pIdx->pTable) || pIdx->nColumn==pIdx->nKeyCol+1 ); if( !HasRowid(pIdx->pTable) && IsPrimaryKeyIndex(pIdx) ){ nIdxCol = pIdx->nKeyCol; }else{ nIdxCol = pIdx->nColumn; } pIdx->nSampleCol = nIdxCol; nByte = sizeof(IndexSample) * nSample; nByte += sizeof(tRowcnt) * nIdxCol * 3 * nSample; nByte += nIdxCol * sizeof(tRowcnt); /* Space for Index.aAvgEq[] */ pIdx->aSample = sqlite3DbMallocZero(db, nByte); if( pIdx->aSample==0 ){ sqlite3_finalize(pStmt); return SQLITE_NOMEM_BKPT; } pSpace = (tRowcnt*)&pIdx->aSample[nSample]; pIdx->aAvgEq = pSpace; pSpace += nIdxCol; for(i=0; iaSample[i].anEq = pSpace; pSpace += nIdxCol; pIdx->aSample[i].anLt = pSpace; pSpace += nIdxCol; pIdx->aSample[i].anDLt = pSpace; pSpace += nIdxCol; } assert( ((u8*)pSpace)-nByte==(u8*)(pIdx->aSample) ); } rc = sqlite3_finalize(pStmt); if( rc ) return rc; zSql = sqlite3MPrintf(db, zSql2, zDb); if( !zSql ){ return SQLITE_NOMEM_BKPT; } rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0); sqlite3DbFree(db, zSql); if( rc ) return rc; while( sqlite3_step(pStmt)==SQLITE_ROW ){ char *zIndex; /* Index name */ Index *pIdx; /* Pointer to the index object */ int nCol = 1; /* Number of columns in index */ zIndex = (char *)sqlite3_column_text(pStmt, 0); if( zIndex==0 ) continue; pIdx = findIndexOrPrimaryKey(db, zIndex, zDb); if( pIdx==0 ) continue; /* This next condition is true if data has already been loaded from ** the sqlite_stat4 table. */ nCol = pIdx->nSampleCol; if( pIdx!=pPrevIdx ){ initAvgEq(pPrevIdx); pPrevIdx = pIdx; } pSample = &pIdx->aSample[pIdx->nSample]; decodeIntArray((char*)sqlite3_column_text(pStmt,1),nCol,pSample->anEq,0,0); decodeIntArray((char*)sqlite3_column_text(pStmt,2),nCol,pSample->anLt,0,0); decodeIntArray((char*)sqlite3_column_text(pStmt,3),nCol,pSample->anDLt,0,0); /* Take a copy of the sample. Add two 0x00 bytes the end of the buffer. ** This is in case the sample record is corrupted. In that case, the ** sqlite3VdbeRecordCompare() may read up to two varints past the ** end of the allocated buffer before it realizes it is dealing with ** a corrupt record. Adding the two 0x00 bytes prevents this from causing ** a buffer overread. */ pSample->n = sqlite3_column_bytes(pStmt, 4); pSample->p = sqlite3DbMallocZero(db, pSample->n + 2); if( pSample->p==0 ){ sqlite3_finalize(pStmt); return SQLITE_NOMEM_BKPT; } if( pSample->n ){ memcpy(pSample->p, sqlite3_column_blob(pStmt, 4), pSample->n); } pIdx->nSample++; } rc = sqlite3_finalize(pStmt); if( rc==SQLITE_OK ) initAvgEq(pPrevIdx); return rc; } /* ** Load content from the sqlite_stat4 table into ** the Index.aSample[] arrays of all indices. */ static int loadStat4(sqlite3 *db, const char *zDb){ int rc = SQLITE_OK; /* Result codes from subroutines */ assert( db->lookaside.bDisable ); if( sqlite3FindTable(db, "sqlite_stat4", zDb) ){ rc = loadStatTbl(db, "SELECT idx,count(*) FROM %Q.sqlite_stat4 GROUP BY idx", "SELECT idx,neq,nlt,ndlt,sample FROM %Q.sqlite_stat4", zDb ); } return rc; } #endif /* SQLITE_ENABLE_STAT4 */ /* ** Load the content of the sqlite_stat1 and sqlite_stat4 tables. The ** contents of sqlite_stat1 are used to populate the Index.aiRowEst[] ** arrays. The contents of sqlite_stat4 are used to populate the ** Index.aSample[] arrays. ** ** If the sqlite_stat1 table is not present in the database, SQLITE_ERROR ** is returned. In this case, even if SQLITE_ENABLE_STAT4 was defined ** during compilation and the sqlite_stat4 table is present, no data is ** read from it. ** ** If SQLITE_ENABLE_STAT4 was defined during compilation and the ** sqlite_stat4 table is not present in the database, SQLITE_ERROR is ** returned. However, in this case, data is read from the sqlite_stat1 ** table (if it is present) before returning. ** ** If an OOM error occurs, this function always sets db->mallocFailed. ** This means if the caller does not care about other errors, the return ** code may be ignored. */ SQLITE_PRIVATE int sqlite3AnalysisLoad(sqlite3 *db, int iDb){ analysisInfo sInfo; HashElem *i; char *zSql; int rc = SQLITE_OK; Schema *pSchema = db->aDb[iDb].pSchema; assert( iDb>=0 && iDbnDb ); assert( db->aDb[iDb].pBt!=0 ); /* Clear any prior statistics */ assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); for(i=sqliteHashFirst(&pSchema->tblHash); i; i=sqliteHashNext(i)){ Table *pTab = sqliteHashData(i); pTab->tabFlags &= ~TF_HasStat1; } for(i=sqliteHashFirst(&pSchema->idxHash); i; i=sqliteHashNext(i)){ Index *pIdx = sqliteHashData(i); pIdx->hasStat1 = 0; #ifdef SQLITE_ENABLE_STAT4 sqlite3DeleteIndexSamples(db, pIdx); pIdx->aSample = 0; #endif } /* Load new statistics out of the sqlite_stat1 table */ sInfo.db = db; sInfo.zDatabase = db->aDb[iDb].zDbSName; if( sqlite3FindTable(db, "sqlite_stat1", sInfo.zDatabase)!=0 ){ zSql = sqlite3MPrintf(db, "SELECT tbl,idx,stat FROM %Q.sqlite_stat1", sInfo.zDatabase); if( zSql==0 ){ rc = SQLITE_NOMEM_BKPT; }else{ rc = sqlite3_exec(db, zSql, analysisLoader, &sInfo, 0); sqlite3DbFree(db, zSql); } } /* Set appropriate defaults on all indexes not in the sqlite_stat1 table */ assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); for(i=sqliteHashFirst(&pSchema->idxHash); i; i=sqliteHashNext(i)){ Index *pIdx = sqliteHashData(i); if( !pIdx->hasStat1 ) sqlite3DefaultRowEst(pIdx); } /* Load the statistics from the sqlite_stat4 table. */ #ifdef SQLITE_ENABLE_STAT4 if( rc==SQLITE_OK ){ DisableLookaside; rc = loadStat4(db, sInfo.zDatabase); EnableLookaside; } for(i=sqliteHashFirst(&pSchema->idxHash); i; i=sqliteHashNext(i)){ Index *pIdx = sqliteHashData(i); sqlite3_free(pIdx->aiRowEst); pIdx->aiRowEst = 0; } #endif if( rc==SQLITE_NOMEM ){ sqlite3OomFault(db); } return rc; } #endif /* SQLITE_OMIT_ANALYZE */ /************** End of analyze.c *********************************************/ /************** Begin file attach.c ******************************************/ /* ** 2003 April 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to implement the ATTACH and DETACH commands. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_ATTACH /* ** Resolve an expression that was part of an ATTACH or DETACH statement. This ** is slightly different from resolving a normal SQL expression, because simple ** identifiers are treated as strings, not possible column names or aliases. ** ** i.e. if the parser sees: ** ** ATTACH DATABASE abc AS def ** ** it treats the two expressions as literal strings 'abc' and 'def' instead of ** looking for columns of the same name. ** ** This only applies to the root node of pExpr, so the statement: ** ** ATTACH DATABASE abc||def AS 'db2' ** ** will fail because neither abc or def can be resolved. */ static int resolveAttachExpr(NameContext *pName, Expr *pExpr) { int rc = SQLITE_OK; if( pExpr ){ if( pExpr->op!=TK_ID ){ rc = sqlite3ResolveExprNames(pName, pExpr); }else{ pExpr->op = TK_STRING; } } return rc; } /* ** Return true if zName points to a name that may be used to refer to ** database iDb attached to handle db. */ SQLITE_PRIVATE int sqlite3DbIsNamed(sqlite3 *db, int iDb, const char *zName){ return ( sqlite3StrICmp(db->aDb[iDb].zDbSName, zName)==0 || (iDb==0 && sqlite3StrICmp("main", zName)==0) ); } /* ** An SQL user-function registered to do the work of an ATTACH statement. The ** three arguments to the function come directly from an attach statement: ** ** ATTACH DATABASE x AS y KEY z ** ** SELECT sqlite_attach(x, y, z) ** ** If the optional "KEY z" syntax is omitted, an SQL NULL is passed as the ** third argument. ** ** If the db->init.reopenMemdb flags is set, then instead of attaching a ** new database, close the database on db->init.iDb and reopen it as an ** empty MemDB. */ static void attachFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ int i; int rc = 0; sqlite3 *db = sqlite3_context_db_handle(context); const char *zName; const char *zFile; char *zPath = 0; char *zErr = 0; unsigned int flags; Db *aNew; /* New array of Db pointers */ Db *pNew; /* Db object for the newly attached database */ char *zErrDyn = 0; sqlite3_vfs *pVfs; UNUSED_PARAMETER(NotUsed); zFile = (const char *)sqlite3_value_text(argv[0]); zName = (const char *)sqlite3_value_text(argv[1]); if( zFile==0 ) zFile = ""; if( zName==0 ) zName = ""; #ifdef SQLITE_ENABLE_DESERIALIZE # define REOPEN_AS_MEMDB(db) (db->init.reopenMemdb) #else # define REOPEN_AS_MEMDB(db) (0) #endif if( REOPEN_AS_MEMDB(db) ){ /* This is not a real ATTACH. Instead, this routine is being called ** from sqlite3_deserialize() to close database db->init.iDb and ** reopen it as a MemDB */ pVfs = sqlite3_vfs_find("memdb"); if( pVfs==0 ) return; pNew = &db->aDb[db->init.iDb]; if( pNew->pBt ) sqlite3BtreeClose(pNew->pBt); pNew->pBt = 0; pNew->pSchema = 0; rc = sqlite3BtreeOpen(pVfs, "x\0", db, &pNew->pBt, 0, SQLITE_OPEN_MAIN_DB); }else{ /* This is a real ATTACH ** ** Check for the following errors: ** ** * Too many attached databases, ** * Transaction currently open ** * Specified database name already being used. */ if( db->nDb>=db->aLimit[SQLITE_LIMIT_ATTACHED]+2 ){ zErrDyn = sqlite3MPrintf(db, "too many attached databases - max %d", db->aLimit[SQLITE_LIMIT_ATTACHED] ); goto attach_error; } for(i=0; inDb; i++){ assert( zName ); if( sqlite3DbIsNamed(db, i, zName) ){ zErrDyn = sqlite3MPrintf(db, "database %s is already in use", zName); goto attach_error; } } /* Allocate the new entry in the db->aDb[] array and initialize the schema ** hash tables. */ if( db->aDb==db->aDbStatic ){ aNew = sqlite3DbMallocRawNN(db, sizeof(db->aDb[0])*3 ); if( aNew==0 ) return; memcpy(aNew, db->aDb, sizeof(db->aDb[0])*2); }else{ aNew = sqlite3DbRealloc(db, db->aDb, sizeof(db->aDb[0])*(db->nDb+1) ); if( aNew==0 ) return; } db->aDb = aNew; pNew = &db->aDb[db->nDb]; memset(pNew, 0, sizeof(*pNew)); /* Open the database file. If the btree is successfully opened, use ** it to obtain the database schema. At this point the schema may ** or may not be initialized. */ flags = db->openFlags; rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr); if( rc!=SQLITE_OK ){ if( rc==SQLITE_NOMEM ) sqlite3OomFault(db); sqlite3_result_error(context, zErr, -1); sqlite3_free(zErr); return; } assert( pVfs ); flags |= SQLITE_OPEN_MAIN_DB; rc = sqlite3BtreeOpen(pVfs, zPath, db, &pNew->pBt, 0, flags); db->nDb++; pNew->zDbSName = sqlite3DbStrDup(db, zName); } db->noSharedCache = 0; if( rc==SQLITE_CONSTRAINT ){ rc = SQLITE_ERROR; zErrDyn = sqlite3MPrintf(db, "database is already attached"); }else if( rc==SQLITE_OK ){ Pager *pPager; pNew->pSchema = sqlite3SchemaGet(db, pNew->pBt); if( !pNew->pSchema ){ rc = SQLITE_NOMEM_BKPT; }else if( pNew->pSchema->file_format && pNew->pSchema->enc!=ENC(db) ){ zErrDyn = sqlite3MPrintf(db, "attached databases must use the same text encoding as main database"); rc = SQLITE_ERROR; } sqlite3BtreeEnter(pNew->pBt); pPager = sqlite3BtreePager(pNew->pBt); sqlite3PagerLockingMode(pPager, db->dfltLockMode); sqlite3BtreeSecureDelete(pNew->pBt, sqlite3BtreeSecureDelete(db->aDb[0].pBt,-1) ); #ifndef SQLITE_OMIT_PAGER_PRAGMAS sqlite3BtreeSetPagerFlags(pNew->pBt, PAGER_SYNCHRONOUS_FULL | (db->flags & PAGER_FLAGS_MASK)); #endif sqlite3BtreeLeave(pNew->pBt); } pNew->safety_level = SQLITE_DEFAULT_SYNCHRONOUS+1; if( rc==SQLITE_OK && pNew->zDbSName==0 ){ rc = SQLITE_NOMEM_BKPT; } sqlite3_free_filename( zPath ); /* If the file was opened successfully, read the schema for the new database. ** If this fails, or if opening the file failed, then close the file and ** remove the entry from the db->aDb[] array. i.e. put everything back the ** way we found it. */ if( rc==SQLITE_OK ){ sqlite3BtreeEnterAll(db); db->init.iDb = 0; db->mDbFlags &= ~(DBFLAG_SchemaKnownOk); if( !REOPEN_AS_MEMDB(db) ){ rc = sqlite3Init(db, &zErrDyn); } sqlite3BtreeLeaveAll(db); assert( zErrDyn==0 || rc!=SQLITE_OK ); } #ifdef SQLITE_USER_AUTHENTICATION if( rc==SQLITE_OK && !REOPEN_AS_MEMDB(db) ){ u8 newAuth = 0; rc = sqlite3UserAuthCheckLogin(db, zName, &newAuth); if( newAuthauth.authLevel ){ rc = SQLITE_AUTH_USER; } } #endif if( rc ){ if( !REOPEN_AS_MEMDB(db) ){ int iDb = db->nDb - 1; assert( iDb>=2 ); if( db->aDb[iDb].pBt ){ sqlite3BtreeClose(db->aDb[iDb].pBt); db->aDb[iDb].pBt = 0; db->aDb[iDb].pSchema = 0; } sqlite3ResetAllSchemasOfConnection(db); db->nDb = iDb; if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){ sqlite3OomFault(db); sqlite3DbFree(db, zErrDyn); zErrDyn = sqlite3MPrintf(db, "out of memory"); }else if( zErrDyn==0 ){ zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile); } } goto attach_error; } return; attach_error: /* Return an error if we get here */ if( zErrDyn ){ sqlite3_result_error(context, zErrDyn, -1); sqlite3DbFree(db, zErrDyn); } if( rc ) sqlite3_result_error_code(context, rc); } /* ** An SQL user-function registered to do the work of an DETACH statement. The ** three arguments to the function come directly from a detach statement: ** ** DETACH DATABASE x ** ** SELECT sqlite_detach(x) */ static void detachFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ const char *zName = (const char *)sqlite3_value_text(argv[0]); sqlite3 *db = sqlite3_context_db_handle(context); int i; Db *pDb = 0; HashElem *pEntry; char zErr[128]; UNUSED_PARAMETER(NotUsed); if( zName==0 ) zName = ""; for(i=0; inDb; i++){ pDb = &db->aDb[i]; if( pDb->pBt==0 ) continue; if( sqlite3DbIsNamed(db, i, zName) ) break; } if( i>=db->nDb ){ sqlite3_snprintf(sizeof(zErr),zErr, "no such database: %s", zName); goto detach_error; } if( i<2 ){ sqlite3_snprintf(sizeof(zErr),zErr, "cannot detach database %s", zName); goto detach_error; } if( sqlite3BtreeIsInReadTrans(pDb->pBt) || sqlite3BtreeIsInBackup(pDb->pBt) ){ sqlite3_snprintf(sizeof(zErr),zErr, "database %s is locked", zName); goto detach_error; } /* If any TEMP triggers reference the schema being detached, move those ** triggers to reference the TEMP schema itself. */ assert( db->aDb[1].pSchema ); pEntry = sqliteHashFirst(&db->aDb[1].pSchema->trigHash); while( pEntry ){ Trigger *pTrig = (Trigger*)sqliteHashData(pEntry); if( pTrig->pTabSchema==pDb->pSchema ){ pTrig->pTabSchema = pTrig->pSchema; } pEntry = sqliteHashNext(pEntry); } sqlite3BtreeClose(pDb->pBt); pDb->pBt = 0; pDb->pSchema = 0; sqlite3CollapseDatabaseArray(db); return; detach_error: sqlite3_result_error(context, zErr, -1); } /* ** This procedure generates VDBE code for a single invocation of either the ** sqlite_detach() or sqlite_attach() SQL user functions. */ static void codeAttach( Parse *pParse, /* The parser context */ int type, /* Either SQLITE_ATTACH or SQLITE_DETACH */ FuncDef const *pFunc,/* FuncDef wrapper for detachFunc() or attachFunc() */ Expr *pAuthArg, /* Expression to pass to authorization callback */ Expr *pFilename, /* Name of database file */ Expr *pDbname, /* Name of the database to use internally */ Expr *pKey /* Database key for encryption extension */ ){ int rc; NameContext sName; Vdbe *v; sqlite3* db = pParse->db; int regArgs; if( pParse->nErr ) goto attach_end; memset(&sName, 0, sizeof(NameContext)); sName.pParse = pParse; if( SQLITE_OK!=(rc = resolveAttachExpr(&sName, pFilename)) || SQLITE_OK!=(rc = resolveAttachExpr(&sName, pDbname)) || SQLITE_OK!=(rc = resolveAttachExpr(&sName, pKey)) ){ goto attach_end; } #ifndef SQLITE_OMIT_AUTHORIZATION if( pAuthArg ){ char *zAuthArg; if( pAuthArg->op==TK_STRING ){ zAuthArg = pAuthArg->u.zToken; }else{ zAuthArg = 0; } rc = sqlite3AuthCheck(pParse, type, zAuthArg, 0, 0); if(rc!=SQLITE_OK ){ goto attach_end; } } #endif /* SQLITE_OMIT_AUTHORIZATION */ v = sqlite3GetVdbe(pParse); regArgs = sqlite3GetTempRange(pParse, 4); sqlite3ExprCode(pParse, pFilename, regArgs); sqlite3ExprCode(pParse, pDbname, regArgs+1); sqlite3ExprCode(pParse, pKey, regArgs+2); assert( v || db->mallocFailed ); if( v ){ sqlite3VdbeAddFunctionCall(pParse, 0, regArgs+3-pFunc->nArg, regArgs+3, pFunc->nArg, pFunc, 0); /* Code an OP_Expire. For an ATTACH statement, set P1 to true (expire this ** statement only). For DETACH, set it to false (expire all existing ** statements). */ sqlite3VdbeAddOp1(v, OP_Expire, (type==SQLITE_ATTACH)); } attach_end: sqlite3ExprDelete(db, pFilename); sqlite3ExprDelete(db, pDbname); sqlite3ExprDelete(db, pKey); } /* ** Called by the parser to compile a DETACH statement. ** ** DETACH pDbname */ SQLITE_PRIVATE void sqlite3Detach(Parse *pParse, Expr *pDbname){ static const FuncDef detach_func = { 1, /* nArg */ SQLITE_UTF8, /* funcFlags */ 0, /* pUserData */ 0, /* pNext */ detachFunc, /* xSFunc */ 0, /* xFinalize */ 0, 0, /* xValue, xInverse */ "sqlite_detach", /* zName */ {0} }; codeAttach(pParse, SQLITE_DETACH, &detach_func, pDbname, 0, 0, pDbname); } /* ** Called by the parser to compile an ATTACH statement. ** ** ATTACH p AS pDbname KEY pKey */ SQLITE_PRIVATE void sqlite3Attach(Parse *pParse, Expr *p, Expr *pDbname, Expr *pKey){ static const FuncDef attach_func = { 3, /* nArg */ SQLITE_UTF8, /* funcFlags */ 0, /* pUserData */ 0, /* pNext */ attachFunc, /* xSFunc */ 0, /* xFinalize */ 0, 0, /* xValue, xInverse */ "sqlite_attach", /* zName */ {0} }; codeAttach(pParse, SQLITE_ATTACH, &attach_func, p, p, pDbname, pKey); } #endif /* SQLITE_OMIT_ATTACH */ /* ** Initialize a DbFixer structure. This routine must be called prior ** to passing the structure to one of the sqliteFixAAAA() routines below. */ SQLITE_PRIVATE void sqlite3FixInit( DbFixer *pFix, /* The fixer to be initialized */ Parse *pParse, /* Error messages will be written here */ int iDb, /* This is the database that must be used */ const char *zType, /* "view", "trigger", or "index" */ const Token *pName /* Name of the view, trigger, or index */ ){ sqlite3 *db; db = pParse->db; assert( db->nDb>iDb ); pFix->pParse = pParse; pFix->zDb = db->aDb[iDb].zDbSName; pFix->pSchema = db->aDb[iDb].pSchema; pFix->zType = zType; pFix->pName = pName; pFix->bTemp = (iDb==1); } /* ** The following set of routines walk through the parse tree and assign ** a specific database to all table references where the database name ** was left unspecified in the original SQL statement. The pFix structure ** must have been initialized by a prior call to sqlite3FixInit(). ** ** These routines are used to make sure that an index, trigger, or ** view in one database does not refer to objects in a different database. ** (Exception: indices, triggers, and views in the TEMP database are ** allowed to refer to anything.) If a reference is explicitly made ** to an object in a different database, an error message is added to ** pParse->zErrMsg and these routines return non-zero. If everything ** checks out, these routines return 0. */ SQLITE_PRIVATE int sqlite3FixSrcList( DbFixer *pFix, /* Context of the fixation */ SrcList *pList /* The Source list to check and modify */ ){ int i; struct SrcList_item *pItem; sqlite3 *db = pFix->pParse->db; int iDb = sqlite3FindDbName(db, pFix->zDb); if( NEVER(pList==0) ) return 0; for(i=0, pItem=pList->a; inSrc; i++, pItem++){ if( pFix->bTemp==0 ){ if( pItem->zDatabase && iDb!=sqlite3FindDbName(db, pItem->zDatabase) ){ sqlite3ErrorMsg(pFix->pParse, "%s %T cannot reference objects in database %s", pFix->zType, pFix->pName, pItem->zDatabase); return 1; } sqlite3DbFree(db, pItem->zDatabase); pItem->zDatabase = 0; pItem->pSchema = pFix->pSchema; pItem->fg.fromDDL = 1; } #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) if( sqlite3FixSelect(pFix, pItem->pSelect) ) return 1; if( sqlite3FixExpr(pFix, pItem->pOn) ) return 1; #endif if( pItem->fg.isTabFunc && sqlite3FixExprList(pFix, pItem->u1.pFuncArg) ){ return 1; } } return 0; } #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) SQLITE_PRIVATE int sqlite3FixSelect( DbFixer *pFix, /* Context of the fixation */ Select *pSelect /* The SELECT statement to be fixed to one database */ ){ while( pSelect ){ if( sqlite3FixExprList(pFix, pSelect->pEList) ){ return 1; } if( sqlite3FixSrcList(pFix, pSelect->pSrc) ){ return 1; } if( sqlite3FixExpr(pFix, pSelect->pWhere) ){ return 1; } if( sqlite3FixExprList(pFix, pSelect->pGroupBy) ){ return 1; } if( sqlite3FixExpr(pFix, pSelect->pHaving) ){ return 1; } if( sqlite3FixExprList(pFix, pSelect->pOrderBy) ){ return 1; } if( sqlite3FixExpr(pFix, pSelect->pLimit) ){ return 1; } if( pSelect->pWith ){ int i; for(i=0; ipWith->nCte; i++){ if( sqlite3FixSelect(pFix, pSelect->pWith->a[i].pSelect) ){ return 1; } } } pSelect = pSelect->pPrior; } return 0; } SQLITE_PRIVATE int sqlite3FixExpr( DbFixer *pFix, /* Context of the fixation */ Expr *pExpr /* The expression to be fixed to one database */ ){ while( pExpr ){ if( !pFix->bTemp ) ExprSetProperty(pExpr, EP_FromDDL); if( pExpr->op==TK_VARIABLE ){ if( pFix->pParse->db->init.busy ){ pExpr->op = TK_NULL; }else{ sqlite3ErrorMsg(pFix->pParse, "%s cannot use variables", pFix->zType); return 1; } } if( ExprHasProperty(pExpr, EP_TokenOnly|EP_Leaf) ) break; if( ExprHasProperty(pExpr, EP_xIsSelect) ){ if( sqlite3FixSelect(pFix, pExpr->x.pSelect) ) return 1; }else{ if( sqlite3FixExprList(pFix, pExpr->x.pList) ) return 1; } if( sqlite3FixExpr(pFix, pExpr->pRight) ){ return 1; } pExpr = pExpr->pLeft; } return 0; } SQLITE_PRIVATE int sqlite3FixExprList( DbFixer *pFix, /* Context of the fixation */ ExprList *pList /* The expression to be fixed to one database */ ){ int i; struct ExprList_item *pItem; if( pList==0 ) return 0; for(i=0, pItem=pList->a; inExpr; i++, pItem++){ if( sqlite3FixExpr(pFix, pItem->pExpr) ){ return 1; } } return 0; } #endif #ifndef SQLITE_OMIT_TRIGGER SQLITE_PRIVATE int sqlite3FixTriggerStep( DbFixer *pFix, /* Context of the fixation */ TriggerStep *pStep /* The trigger step be fixed to one database */ ){ while( pStep ){ if( sqlite3FixSelect(pFix, pStep->pSelect) ){ return 1; } if( sqlite3FixExpr(pFix, pStep->pWhere) ){ return 1; } if( sqlite3FixExprList(pFix, pStep->pExprList) ){ return 1; } if( pStep->pFrom && sqlite3FixSrcList(pFix, pStep->pFrom) ){ return 1; } #ifndef SQLITE_OMIT_UPSERT if( pStep->pUpsert ){ Upsert *pUp = pStep->pUpsert; if( sqlite3FixExprList(pFix, pUp->pUpsertTarget) || sqlite3FixExpr(pFix, pUp->pUpsertTargetWhere) || sqlite3FixExprList(pFix, pUp->pUpsertSet) || sqlite3FixExpr(pFix, pUp->pUpsertWhere) ){ return 1; } } #endif pStep = pStep->pNext; } return 0; } #endif /************** End of attach.c **********************************************/ /************** Begin file auth.c ********************************************/ /* ** 2003 January 11 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to implement the sqlite3_set_authorizer() ** API. This facility is an optional feature of the library. Embedded ** systems that do not need this facility may omit it by recompiling ** the library with -DSQLITE_OMIT_AUTHORIZATION=1 */ /* #include "sqliteInt.h" */ /* ** All of the code in this file may be omitted by defining a single ** macro. */ #ifndef SQLITE_OMIT_AUTHORIZATION /* ** Set or clear the access authorization function. ** ** The access authorization function is be called during the compilation ** phase to verify that the user has read and/or write access permission on ** various fields of the database. The first argument to the auth function ** is a copy of the 3rd argument to this routine. The second argument ** to the auth function is one of these constants: ** ** SQLITE_CREATE_INDEX ** SQLITE_CREATE_TABLE ** SQLITE_CREATE_TEMP_INDEX ** SQLITE_CREATE_TEMP_TABLE ** SQLITE_CREATE_TEMP_TRIGGER ** SQLITE_CREATE_TEMP_VIEW ** SQLITE_CREATE_TRIGGER ** SQLITE_CREATE_VIEW ** SQLITE_DELETE ** SQLITE_DROP_INDEX ** SQLITE_DROP_TABLE ** SQLITE_DROP_TEMP_INDEX ** SQLITE_DROP_TEMP_TABLE ** SQLITE_DROP_TEMP_TRIGGER ** SQLITE_DROP_TEMP_VIEW ** SQLITE_DROP_TRIGGER ** SQLITE_DROP_VIEW ** SQLITE_INSERT ** SQLITE_PRAGMA ** SQLITE_READ ** SQLITE_SELECT ** SQLITE_TRANSACTION ** SQLITE_UPDATE ** ** The third and fourth arguments to the auth function are the name of ** the table and the column that are being accessed. The auth function ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If ** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY ** means that the SQL statement will never-run - the sqlite3_exec() call ** will return with an error. SQLITE_IGNORE means that the SQL statement ** should run but attempts to read the specified column will return NULL ** and attempts to write the column will be ignored. ** ** Setting the auth function to NULL disables this hook. The default ** setting of the auth function is NULL. */ SQLITE_API int sqlite3_set_authorizer( sqlite3 *db, int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), void *pArg ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); db->xAuth = (sqlite3_xauth)xAuth; db->pAuthArg = pArg; if( db->xAuth ) sqlite3ExpirePreparedStatements(db, 1); sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } /* ** Write an error message into pParse->zErrMsg that explains that the ** user-supplied authorization function returned an illegal value. */ static void sqliteAuthBadReturnCode(Parse *pParse){ sqlite3ErrorMsg(pParse, "authorizer malfunction"); pParse->rc = SQLITE_ERROR; } /* ** Invoke the authorization callback for permission to read column zCol from ** table zTab in database zDb. This function assumes that an authorization ** callback has been registered (i.e. that sqlite3.xAuth is not NULL). ** ** If SQLITE_IGNORE is returned and pExpr is not NULL, then pExpr is changed ** to an SQL NULL expression. Otherwise, if pExpr is NULL, then SQLITE_IGNORE ** is treated as SQLITE_DENY. In this case an error is left in pParse. */ SQLITE_PRIVATE int sqlite3AuthReadCol( Parse *pParse, /* The parser context */ const char *zTab, /* Table name */ const char *zCol, /* Column name */ int iDb /* Index of containing database. */ ){ sqlite3 *db = pParse->db; /* Database handle */ char *zDb = db->aDb[iDb].zDbSName; /* Schema name of attached database */ int rc; /* Auth callback return code */ if( db->init.busy ) return SQLITE_OK; rc = db->xAuth(db->pAuthArg, SQLITE_READ, zTab,zCol,zDb,pParse->zAuthContext #ifdef SQLITE_USER_AUTHENTICATION ,db->auth.zAuthUser #endif ); if( rc==SQLITE_DENY ){ char *z = sqlite3_mprintf("%s.%s", zTab, zCol); if( db->nDb>2 || iDb!=0 ) z = sqlite3_mprintf("%s.%z", zDb, z); sqlite3ErrorMsg(pParse, "access to %z is prohibited", z); pParse->rc = SQLITE_AUTH; }else if( rc!=SQLITE_IGNORE && rc!=SQLITE_OK ){ sqliteAuthBadReturnCode(pParse); } return rc; } /* ** The pExpr should be a TK_COLUMN expression. The table referred to ** is in pTabList or else it is the NEW or OLD table of a trigger. ** Check to see if it is OK to read this particular column. ** ** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY, ** then generate an error. */ SQLITE_PRIVATE void sqlite3AuthRead( Parse *pParse, /* The parser context */ Expr *pExpr, /* The expression to check authorization on */ Schema *pSchema, /* The schema of the expression */ SrcList *pTabList /* All table that pExpr might refer to */ ){ sqlite3 *db = pParse->db; Table *pTab = 0; /* The table being read */ const char *zCol; /* Name of the column of the table */ int iSrc; /* Index in pTabList->a[] of table being read */ int iDb; /* The index of the database the expression refers to */ int iCol; /* Index of column in table */ assert( pExpr->op==TK_COLUMN || pExpr->op==TK_TRIGGER ); assert( !IN_RENAME_OBJECT || db->xAuth==0 ); if( db->xAuth==0 ) return; iDb = sqlite3SchemaToIndex(pParse->db, pSchema); if( iDb<0 ){ /* An attempt to read a column out of a subquery or other ** temporary table. */ return; } if( pExpr->op==TK_TRIGGER ){ pTab = pParse->pTriggerTab; }else{ assert( pTabList ); for(iSrc=0; ALWAYS(iSrcnSrc); iSrc++){ if( pExpr->iTable==pTabList->a[iSrc].iCursor ){ pTab = pTabList->a[iSrc].pTab; break; } } } iCol = pExpr->iColumn; if( NEVER(pTab==0) ) return; if( iCol>=0 ){ assert( iColnCol ); zCol = pTab->aCol[iCol].zName; }else if( pTab->iPKey>=0 ){ assert( pTab->iPKeynCol ); zCol = pTab->aCol[pTab->iPKey].zName; }else{ zCol = "ROWID"; } assert( iDb>=0 && iDbnDb ); if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) ){ pExpr->op = TK_NULL; } } /* ** Do an authorization check using the code and arguments given. Return ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY ** is returned, then the error count and error message in pParse are ** modified appropriately. */ SQLITE_PRIVATE int sqlite3AuthCheck( Parse *pParse, int code, const char *zArg1, const char *zArg2, const char *zArg3 ){ sqlite3 *db = pParse->db; int rc; /* Don't do any authorization checks if the database is initialising ** or if the parser is being invoked from within sqlite3_declare_vtab. */ assert( !IN_RENAME_OBJECT || db->xAuth==0 ); if( db->init.busy || IN_SPECIAL_PARSE ){ return SQLITE_OK; } if( db->xAuth==0 ){ return SQLITE_OK; } /* EVIDENCE-OF: R-43249-19882 The third through sixth parameters to the ** callback are either NULL pointers or zero-terminated strings that ** contain additional details about the action to be authorized. ** ** The following testcase() macros show that any of the 3rd through 6th ** parameters can be either NULL or a string. */ testcase( zArg1==0 ); testcase( zArg2==0 ); testcase( zArg3==0 ); testcase( pParse->zAuthContext==0 ); rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext #ifdef SQLITE_USER_AUTHENTICATION ,db->auth.zAuthUser #endif ); if( rc==SQLITE_DENY ){ sqlite3ErrorMsg(pParse, "not authorized"); pParse->rc = SQLITE_AUTH; }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){ rc = SQLITE_DENY; sqliteAuthBadReturnCode(pParse); } return rc; } /* ** Push an authorization context. After this routine is called, the ** zArg3 argument to authorization callbacks will be zContext until ** popped. Or if pParse==0, this routine is a no-op. */ SQLITE_PRIVATE void sqlite3AuthContextPush( Parse *pParse, AuthContext *pContext, const char *zContext ){ assert( pParse ); pContext->pParse = pParse; pContext->zAuthContext = pParse->zAuthContext; pParse->zAuthContext = zContext; } /* ** Pop an authorization context that was previously pushed ** by sqlite3AuthContextPush */ SQLITE_PRIVATE void sqlite3AuthContextPop(AuthContext *pContext){ if( pContext->pParse ){ pContext->pParse->zAuthContext = pContext->zAuthContext; pContext->pParse = 0; } } #endif /* SQLITE_OMIT_AUTHORIZATION */ /************** End of auth.c ************************************************/ /************** Begin file build.c *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that are called by the SQLite parser ** when syntax rules are reduced. The routines in this file handle the ** following kinds of SQL syntax: ** ** CREATE TABLE ** DROP TABLE ** CREATE INDEX ** DROP INDEX ** creating ID lists ** BEGIN TRANSACTION ** COMMIT ** ROLLBACK */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_SHARED_CACHE /* ** The TableLock structure is only used by the sqlite3TableLock() and ** codeTableLocks() functions. */ struct TableLock { int iDb; /* The database containing the table to be locked */ Pgno iTab; /* The root page of the table to be locked */ u8 isWriteLock; /* True for write lock. False for a read lock */ const char *zLockName; /* Name of the table */ }; /* ** Record the fact that we want to lock a table at run-time. ** ** The table to be locked has root page iTab and is found in database iDb. ** A read or a write lock can be taken depending on isWritelock. ** ** This routine just records the fact that the lock is desired. The ** code to make the lock occur is generated by a later call to ** codeTableLocks() which occurs during sqlite3FinishCoding(). */ SQLITE_PRIVATE void sqlite3TableLock( Parse *pParse, /* Parsing context */ int iDb, /* Index of the database containing the table to lock */ Pgno iTab, /* Root page number of the table to be locked */ u8 isWriteLock, /* True for a write lock */ const char *zName /* Name of the table to be locked */ ){ Parse *pToplevel = sqlite3ParseToplevel(pParse); int i; int nBytes; TableLock *p; assert( iDb>=0 ); if( iDb==1 ) return; if( !sqlite3BtreeSharable(pParse->db->aDb[iDb].pBt) ) return; for(i=0; inTableLock; i++){ p = &pToplevel->aTableLock[i]; if( p->iDb==iDb && p->iTab==iTab ){ p->isWriteLock = (p->isWriteLock || isWriteLock); return; } } nBytes = sizeof(TableLock) * (pToplevel->nTableLock+1); pToplevel->aTableLock = sqlite3DbReallocOrFree(pToplevel->db, pToplevel->aTableLock, nBytes); if( pToplevel->aTableLock ){ p = &pToplevel->aTableLock[pToplevel->nTableLock++]; p->iDb = iDb; p->iTab = iTab; p->isWriteLock = isWriteLock; p->zLockName = zName; }else{ pToplevel->nTableLock = 0; sqlite3OomFault(pToplevel->db); } } /* ** Code an OP_TableLock instruction for each table locked by the ** statement (configured by calls to sqlite3TableLock()). */ static void codeTableLocks(Parse *pParse){ int i; Vdbe *pVdbe; pVdbe = sqlite3GetVdbe(pParse); assert( pVdbe!=0 ); /* sqlite3GetVdbe cannot fail: VDBE already allocated */ for(i=0; inTableLock; i++){ TableLock *p = &pParse->aTableLock[i]; int p1 = p->iDb; sqlite3VdbeAddOp4(pVdbe, OP_TableLock, p1, p->iTab, p->isWriteLock, p->zLockName, P4_STATIC); } } #else #define codeTableLocks(x) #endif /* ** Return TRUE if the given yDbMask object is empty - if it contains no ** 1 bits. This routine is used by the DbMaskAllZero() and DbMaskNotZero() ** macros when SQLITE_MAX_ATTACHED is greater than 30. */ #if SQLITE_MAX_ATTACHED>30 SQLITE_PRIVATE int sqlite3DbMaskAllZero(yDbMask m){ int i; for(i=0; ipToplevel==0 ); db = pParse->db; if( pParse->nested ) return; if( db->mallocFailed || pParse->nErr ){ if( pParse->rc==SQLITE_OK ) pParse->rc = SQLITE_ERROR; return; } /* Begin by generating some termination code at the end of the ** vdbe program */ v = sqlite3GetVdbe(pParse); assert( !pParse->isMultiWrite || sqlite3VdbeAssertMayAbort(v, pParse->mayAbort)); if( v ){ sqlite3VdbeAddOp0(v, OP_Halt); #if SQLITE_USER_AUTHENTICATION if( pParse->nTableLock>0 && db->init.busy==0 ){ sqlite3UserAuthInit(db); if( db->auth.authLevelrc = SQLITE_AUTH_USER; return; } } #endif /* The cookie mask contains one bit for each database file open. ** (Bit 0 is for main, bit 1 is for temp, and so forth.) Bits are ** set for each database that is used. Generate code to start a ** transaction on each used database and to verify the schema cookie ** on each used database. */ if( db->mallocFailed==0 && (DbMaskNonZero(pParse->cookieMask) || pParse->pConstExpr) ){ int iDb, i; assert( sqlite3VdbeGetOp(v, 0)->opcode==OP_Init ); sqlite3VdbeJumpHere(v, 0); for(iDb=0; iDbnDb; iDb++){ Schema *pSchema; if( DbMaskTest(pParse->cookieMask, iDb)==0 ) continue; sqlite3VdbeUsesBtree(v, iDb); pSchema = db->aDb[iDb].pSchema; sqlite3VdbeAddOp4Int(v, OP_Transaction, /* Opcode */ iDb, /* P1 */ DbMaskTest(pParse->writeMask,iDb), /* P2 */ pSchema->schema_cookie, /* P3 */ pSchema->iGeneration /* P4 */ ); if( db->init.busy==0 ) sqlite3VdbeChangeP5(v, 1); VdbeComment((v, "usesStmtJournal=%d", pParse->mayAbort && pParse->isMultiWrite)); } #ifndef SQLITE_OMIT_VIRTUALTABLE for(i=0; inVtabLock; i++){ char *vtab = (char *)sqlite3GetVTable(db, pParse->apVtabLock[i]); sqlite3VdbeAddOp4(v, OP_VBegin, 0, 0, 0, vtab, P4_VTAB); } pParse->nVtabLock = 0; #endif /* Once all the cookies have been verified and transactions opened, ** obtain the required table-locks. This is a no-op unless the ** shared-cache feature is enabled. */ codeTableLocks(pParse); /* Initialize any AUTOINCREMENT data structures required. */ sqlite3AutoincrementBegin(pParse); /* Code constant expressions that where factored out of inner loops. ** ** The pConstExpr list might also contain expressions that we simply ** want to keep around until the Parse object is deleted. Such ** expressions have iConstExprReg==0. Do not generate code for ** those expressions, of course. */ if( pParse->pConstExpr ){ ExprList *pEL = pParse->pConstExpr; pParse->okConstFactor = 0; for(i=0; inExpr; i++){ int iReg = pEL->a[i].u.iConstExprReg; if( iReg>0 ){ sqlite3ExprCode(pParse, pEL->a[i].pExpr, iReg); } } } /* Finally, jump back to the beginning of the executable code. */ sqlite3VdbeGoto(v, 1); } } /* Get the VDBE program ready for execution */ if( v && pParse->nErr==0 && !db->mallocFailed ){ /* A minimum of one cursor is required if autoincrement is used * See ticket [a696379c1f08866] */ assert( pParse->pAinc==0 || pParse->nTab>0 ); sqlite3VdbeMakeReady(v, pParse); pParse->rc = SQLITE_DONE; }else{ pParse->rc = SQLITE_ERROR; } } /* ** Run the parser and code generator recursively in order to generate ** code for the SQL statement given onto the end of the pParse context ** currently under construction. When the parser is run recursively ** this way, the final OP_Halt is not appended and other initialization ** and finalization steps are omitted because those are handling by the ** outermost parser. ** ** Not everything is nestable. This facility is designed to permit ** INSERT, UPDATE, and DELETE operations against the schema table. Use ** care if you decide to try to use this routine for some other purposes. */ SQLITE_PRIVATE void sqlite3NestedParse(Parse *pParse, const char *zFormat, ...){ va_list ap; char *zSql; char *zErrMsg = 0; sqlite3 *db = pParse->db; char saveBuf[PARSE_TAIL_SZ]; if( pParse->nErr ) return; assert( pParse->nested<10 ); /* Nesting should only be of limited depth */ va_start(ap, zFormat); zSql = sqlite3VMPrintf(db, zFormat, ap); va_end(ap); if( zSql==0 ){ /* This can result either from an OOM or because the formatted string ** exceeds SQLITE_LIMIT_LENGTH. In the latter case, we need to set ** an error */ if( !db->mallocFailed ) pParse->rc = SQLITE_TOOBIG; pParse->nErr++; return; } pParse->nested++; memcpy(saveBuf, PARSE_TAIL(pParse), PARSE_TAIL_SZ); memset(PARSE_TAIL(pParse), 0, PARSE_TAIL_SZ); sqlite3RunParser(pParse, zSql, &zErrMsg); sqlite3DbFree(db, zErrMsg); sqlite3DbFree(db, zSql); memcpy(PARSE_TAIL(pParse), saveBuf, PARSE_TAIL_SZ); pParse->nested--; } #if SQLITE_USER_AUTHENTICATION /* ** Return TRUE if zTable is the name of the system table that stores the ** list of users and their access credentials. */ SQLITE_PRIVATE int sqlite3UserAuthTable(const char *zTable){ return sqlite3_stricmp(zTable, "sqlite_user")==0; } #endif /* ** Locate the in-memory structure that describes a particular database ** table given the name of that table and (optionally) the name of the ** database containing the table. Return NULL if not found. ** ** If zDatabase is 0, all databases are searched for the table and the ** first matching table is returned. (No checking for duplicate table ** names is done.) The search order is TEMP first, then MAIN, then any ** auxiliary databases added using the ATTACH command. ** ** See also sqlite3LocateTable(). */ SQLITE_PRIVATE Table *sqlite3FindTable(sqlite3 *db, const char *zName, const char *zDatabase){ Table *p = 0; int i; /* All mutexes are required for schema access. Make sure we hold them. */ assert( zDatabase!=0 || sqlite3BtreeHoldsAllMutexes(db) ); #if SQLITE_USER_AUTHENTICATION /* Only the admin user is allowed to know that the sqlite_user table ** exists */ if( db->auth.authLevelnDb; i++){ if( sqlite3StrICmp(zDatabase, db->aDb[i].zDbSName)==0 ) break; } if( i>=db->nDb ){ /* No match against the official names. But always match "main" ** to schema 0 as a legacy fallback. */ if( sqlite3StrICmp(zDatabase,"main")==0 ){ i = 0; }else{ return 0; } } p = sqlite3HashFind(&db->aDb[i].pSchema->tblHash, zName); if( p==0 && sqlite3StrNICmp(zName, "sqlite_", 7)==0 ){ if( i==1 ){ if( sqlite3StrICmp(zName+7, &ALT_TEMP_SCHEMA_TABLE[7])==0 || sqlite3StrICmp(zName+7, &ALT_SCHEMA_TABLE[7])==0 || sqlite3StrICmp(zName+7, &DFLT_SCHEMA_TABLE[7])==0 ){ p = sqlite3HashFind(&db->aDb[1].pSchema->tblHash, DFLT_TEMP_SCHEMA_TABLE); } }else{ if( sqlite3StrICmp(zName+7, &ALT_SCHEMA_TABLE[7])==0 ){ p = sqlite3HashFind(&db->aDb[i].pSchema->tblHash, DFLT_SCHEMA_TABLE); } } } }else{ /* Match against TEMP first */ p = sqlite3HashFind(&db->aDb[1].pSchema->tblHash, zName); if( p ) return p; /* The main database is second */ p = sqlite3HashFind(&db->aDb[0].pSchema->tblHash, zName); if( p ) return p; /* Attached databases are in order of attachment */ for(i=2; inDb; i++){ assert( sqlite3SchemaMutexHeld(db, i, 0) ); p = sqlite3HashFind(&db->aDb[i].pSchema->tblHash, zName); if( p ) break; } if( p==0 && sqlite3StrNICmp(zName, "sqlite_", 7)==0 ){ if( sqlite3StrICmp(zName+7, &ALT_SCHEMA_TABLE[7])==0 ){ p = sqlite3HashFind(&db->aDb[0].pSchema->tblHash, DFLT_SCHEMA_TABLE); }else if( sqlite3StrICmp(zName+7, &ALT_TEMP_SCHEMA_TABLE[7])==0 ){ p = sqlite3HashFind(&db->aDb[1].pSchema->tblHash, DFLT_TEMP_SCHEMA_TABLE); } } } return p; } /* ** Locate the in-memory structure that describes a particular database ** table given the name of that table and (optionally) the name of the ** database containing the table. Return NULL if not found. Also leave an ** error message in pParse->zErrMsg. ** ** The difference between this routine and sqlite3FindTable() is that this ** routine leaves an error message in pParse->zErrMsg where ** sqlite3FindTable() does not. */ SQLITE_PRIVATE Table *sqlite3LocateTable( Parse *pParse, /* context in which to report errors */ u32 flags, /* LOCATE_VIEW or LOCATE_NOERR */ const char *zName, /* Name of the table we are looking for */ const char *zDbase /* Name of the database. Might be NULL */ ){ Table *p; sqlite3 *db = pParse->db; /* Read the database schema. If an error occurs, leave an error message ** and code in pParse and return NULL. */ if( (db->mDbFlags & DBFLAG_SchemaKnownOk)==0 && SQLITE_OK!=sqlite3ReadSchema(pParse) ){ return 0; } p = sqlite3FindTable(db, zName, zDbase); if( p==0 ){ #ifndef SQLITE_OMIT_VIRTUALTABLE /* If zName is the not the name of a table in the schema created using ** CREATE, then check to see if it is the name of an virtual table that ** can be an eponymous virtual table. */ if( pParse->disableVtab==0 ){ Module *pMod = (Module*)sqlite3HashFind(&db->aModule, zName); if( pMod==0 && sqlite3_strnicmp(zName, "pragma_", 7)==0 ){ pMod = sqlite3PragmaVtabRegister(db, zName); } if( pMod && sqlite3VtabEponymousTableInit(pParse, pMod) ){ return pMod->pEpoTab; } } #endif if( flags & LOCATE_NOERR ) return 0; pParse->checkSchema = 1; }else if( IsVirtual(p) && pParse->disableVtab ){ p = 0; } if( p==0 ){ const char *zMsg = flags & LOCATE_VIEW ? "no such view" : "no such table"; if( zDbase ){ sqlite3ErrorMsg(pParse, "%s: %s.%s", zMsg, zDbase, zName); }else{ sqlite3ErrorMsg(pParse, "%s: %s", zMsg, zName); } } return p; } /* ** Locate the table identified by *p. ** ** This is a wrapper around sqlite3LocateTable(). The difference between ** sqlite3LocateTable() and this function is that this function restricts ** the search to schema (p->pSchema) if it is not NULL. p->pSchema may be ** non-NULL if it is part of a view or trigger program definition. See ** sqlite3FixSrcList() for details. */ SQLITE_PRIVATE Table *sqlite3LocateTableItem( Parse *pParse, u32 flags, struct SrcList_item *p ){ const char *zDb; assert( p->pSchema==0 || p->zDatabase==0 ); if( p->pSchema ){ int iDb = sqlite3SchemaToIndex(pParse->db, p->pSchema); zDb = pParse->db->aDb[iDb].zDbSName; }else{ zDb = p->zDatabase; } return sqlite3LocateTable(pParse, flags, p->zName, zDb); } /* ** Locate the in-memory structure that describes ** a particular index given the name of that index ** and the name of the database that contains the index. ** Return NULL if not found. ** ** If zDatabase is 0, all databases are searched for the ** table and the first matching index is returned. (No checking ** for duplicate index names is done.) The search order is ** TEMP first, then MAIN, then any auxiliary databases added ** using the ATTACH command. */ SQLITE_PRIVATE Index *sqlite3FindIndex(sqlite3 *db, const char *zName, const char *zDb){ Index *p = 0; int i; /* All mutexes are required for schema access. Make sure we hold them. */ assert( zDb!=0 || sqlite3BtreeHoldsAllMutexes(db) ); for(i=OMIT_TEMPDB; inDb; i++){ int j = (i<2) ? i^1 : i; /* Search TEMP before MAIN */ Schema *pSchema = db->aDb[j].pSchema; assert( pSchema ); if( zDb && sqlite3DbIsNamed(db, j, zDb)==0 ) continue; assert( sqlite3SchemaMutexHeld(db, j, 0) ); p = sqlite3HashFind(&pSchema->idxHash, zName); if( p ) break; } return p; } /* ** Reclaim the memory used by an index */ SQLITE_PRIVATE void sqlite3FreeIndex(sqlite3 *db, Index *p){ #ifndef SQLITE_OMIT_ANALYZE sqlite3DeleteIndexSamples(db, p); #endif sqlite3ExprDelete(db, p->pPartIdxWhere); sqlite3ExprListDelete(db, p->aColExpr); sqlite3DbFree(db, p->zColAff); if( p->isResized ) sqlite3DbFree(db, (void *)p->azColl); #ifdef SQLITE_ENABLE_STAT4 sqlite3_free(p->aiRowEst); #endif sqlite3DbFree(db, p); } /* ** For the index called zIdxName which is found in the database iDb, ** unlike that index from its Table then remove the index from ** the index hash table and free all memory structures associated ** with the index. */ SQLITE_PRIVATE void sqlite3UnlinkAndDeleteIndex(sqlite3 *db, int iDb, const char *zIdxName){ Index *pIndex; Hash *pHash; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); pHash = &db->aDb[iDb].pSchema->idxHash; pIndex = sqlite3HashInsert(pHash, zIdxName, 0); if( ALWAYS(pIndex) ){ if( pIndex->pTable->pIndex==pIndex ){ pIndex->pTable->pIndex = pIndex->pNext; }else{ Index *p; /* Justification of ALWAYS(); The index must be on the list of ** indices. */ p = pIndex->pTable->pIndex; while( ALWAYS(p) && p->pNext!=pIndex ){ p = p->pNext; } if( ALWAYS(p && p->pNext==pIndex) ){ p->pNext = pIndex->pNext; } } sqlite3FreeIndex(db, pIndex); } db->mDbFlags |= DBFLAG_SchemaChange; } /* ** Look through the list of open database files in db->aDb[] and if ** any have been closed, remove them from the list. Reallocate the ** db->aDb[] structure to a smaller size, if possible. ** ** Entry 0 (the "main" database) and entry 1 (the "temp" database) ** are never candidates for being collapsed. */ SQLITE_PRIVATE void sqlite3CollapseDatabaseArray(sqlite3 *db){ int i, j; for(i=j=2; inDb; i++){ struct Db *pDb = &db->aDb[i]; if( pDb->pBt==0 ){ sqlite3DbFree(db, pDb->zDbSName); pDb->zDbSName = 0; continue; } if( jaDb[j] = db->aDb[i]; } j++; } db->nDb = j; if( db->nDb<=2 && db->aDb!=db->aDbStatic ){ memcpy(db->aDbStatic, db->aDb, 2*sizeof(db->aDb[0])); sqlite3DbFree(db, db->aDb); db->aDb = db->aDbStatic; } } /* ** Reset the schema for the database at index iDb. Also reset the ** TEMP schema. The reset is deferred if db->nSchemaLock is not zero. ** Deferred resets may be run by calling with iDb<0. */ SQLITE_PRIVATE void sqlite3ResetOneSchema(sqlite3 *db, int iDb){ int i; assert( iDbnDb ); if( iDb>=0 ){ assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); DbSetProperty(db, iDb, DB_ResetWanted); DbSetProperty(db, 1, DB_ResetWanted); db->mDbFlags &= ~DBFLAG_SchemaKnownOk; } if( db->nSchemaLock==0 ){ for(i=0; inDb; i++){ if( DbHasProperty(db, i, DB_ResetWanted) ){ sqlite3SchemaClear(db->aDb[i].pSchema); } } } } /* ** Erase all schema information from all attached databases (including ** "main" and "temp") for a single database connection. */ SQLITE_PRIVATE void sqlite3ResetAllSchemasOfConnection(sqlite3 *db){ int i; sqlite3BtreeEnterAll(db); for(i=0; inDb; i++){ Db *pDb = &db->aDb[i]; if( pDb->pSchema ){ if( db->nSchemaLock==0 ){ sqlite3SchemaClear(pDb->pSchema); }else{ DbSetProperty(db, i, DB_ResetWanted); } } } db->mDbFlags &= ~(DBFLAG_SchemaChange|DBFLAG_SchemaKnownOk); sqlite3VtabUnlockList(db); sqlite3BtreeLeaveAll(db); if( db->nSchemaLock==0 ){ sqlite3CollapseDatabaseArray(db); } } /* ** This routine is called when a commit occurs. */ SQLITE_PRIVATE void sqlite3CommitInternalChanges(sqlite3 *db){ db->mDbFlags &= ~DBFLAG_SchemaChange; } /* ** Delete memory allocated for the column names of a table or view (the ** Table.aCol[] array). */ SQLITE_PRIVATE void sqlite3DeleteColumnNames(sqlite3 *db, Table *pTable){ int i; Column *pCol; assert( pTable!=0 ); if( (pCol = pTable->aCol)!=0 ){ for(i=0; inCol; i++, pCol++){ assert( pCol->zName==0 || pCol->hName==sqlite3StrIHash(pCol->zName) ); sqlite3DbFree(db, pCol->zName); sqlite3ExprDelete(db, pCol->pDflt); sqlite3DbFree(db, pCol->zColl); } sqlite3DbFree(db, pTable->aCol); } } /* ** Remove the memory data structures associated with the given ** Table. No changes are made to disk by this routine. ** ** This routine just deletes the data structure. It does not unlink ** the table data structure from the hash table. But it does destroy ** memory structures of the indices and foreign keys associated with ** the table. ** ** The db parameter is optional. It is needed if the Table object ** contains lookaside memory. (Table objects in the schema do not use ** lookaside memory, but some ephemeral Table objects do.) Or the ** db parameter can be used with db->pnBytesFreed to measure the memory ** used by the Table object. */ static void SQLITE_NOINLINE deleteTable(sqlite3 *db, Table *pTable){ Index *pIndex, *pNext; #ifdef SQLITE_DEBUG /* Record the number of outstanding lookaside allocations in schema Tables ** prior to doing any free() operations. Since schema Tables do not use ** lookaside, this number should not change. ** ** If malloc has already failed, it may be that it failed while allocating ** a Table object that was going to be marked ephemeral. So do not check ** that no lookaside memory is used in this case either. */ int nLookaside = 0; if( db && !db->mallocFailed && (pTable->tabFlags & TF_Ephemeral)==0 ){ nLookaside = sqlite3LookasideUsed(db, 0); } #endif /* Delete all indices associated with this table. */ for(pIndex = pTable->pIndex; pIndex; pIndex=pNext){ pNext = pIndex->pNext; assert( pIndex->pSchema==pTable->pSchema || (IsVirtual(pTable) && pIndex->idxType!=SQLITE_IDXTYPE_APPDEF) ); if( (db==0 || db->pnBytesFreed==0) && !IsVirtual(pTable) ){ char *zName = pIndex->zName; TESTONLY ( Index *pOld = ) sqlite3HashInsert( &pIndex->pSchema->idxHash, zName, 0 ); assert( db==0 || sqlite3SchemaMutexHeld(db, 0, pIndex->pSchema) ); assert( pOld==pIndex || pOld==0 ); } sqlite3FreeIndex(db, pIndex); } /* Delete any foreign keys attached to this table. */ sqlite3FkDelete(db, pTable); /* Delete the Table structure itself. */ sqlite3DeleteColumnNames(db, pTable); sqlite3DbFree(db, pTable->zName); sqlite3DbFree(db, pTable->zColAff); sqlite3SelectDelete(db, pTable->pSelect); sqlite3ExprListDelete(db, pTable->pCheck); #ifndef SQLITE_OMIT_VIRTUALTABLE sqlite3VtabClear(db, pTable); #endif sqlite3DbFree(db, pTable); /* Verify that no lookaside memory was used by schema tables */ assert( nLookaside==0 || nLookaside==sqlite3LookasideUsed(db,0) ); } SQLITE_PRIVATE void sqlite3DeleteTable(sqlite3 *db, Table *pTable){ /* Do not delete the table until the reference count reaches zero. */ if( !pTable ) return; if( ((!db || db->pnBytesFreed==0) && (--pTable->nTabRef)>0) ) return; deleteTable(db, pTable); } /* ** Unlink the given table from the hash tables and the delete the ** table structure with all its indices and foreign keys. */ SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTable(sqlite3 *db, int iDb, const char *zTabName){ Table *p; Db *pDb; assert( db!=0 ); assert( iDb>=0 && iDbnDb ); assert( zTabName ); assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); testcase( zTabName[0]==0 ); /* Zero-length table names are allowed */ pDb = &db->aDb[iDb]; p = sqlite3HashInsert(&pDb->pSchema->tblHash, zTabName, 0); sqlite3DeleteTable(db, p); db->mDbFlags |= DBFLAG_SchemaChange; } /* ** Given a token, return a string that consists of the text of that ** token. Space to hold the returned string ** is obtained from sqliteMalloc() and must be freed by the calling ** function. ** ** Any quotation marks (ex: "name", 'name', [name], or `name`) that ** surround the body of the token are removed. ** ** Tokens are often just pointers into the original SQL text and so ** are not \000 terminated and are not persistent. The returned string ** is \000 terminated and is persistent. */ SQLITE_PRIVATE char *sqlite3NameFromToken(sqlite3 *db, Token *pName){ char *zName; if( pName ){ zName = sqlite3DbStrNDup(db, (char*)pName->z, pName->n); sqlite3Dequote(zName); }else{ zName = 0; } return zName; } /* ** Open the sqlite_schema table stored in database number iDb for ** writing. The table is opened using cursor 0. */ SQLITE_PRIVATE void sqlite3OpenSchemaTable(Parse *p, int iDb){ Vdbe *v = sqlite3GetVdbe(p); sqlite3TableLock(p, iDb, SCHEMA_ROOT, 1, DFLT_SCHEMA_TABLE); sqlite3VdbeAddOp4Int(v, OP_OpenWrite, 0, SCHEMA_ROOT, iDb, 5); if( p->nTab==0 ){ p->nTab = 1; } } /* ** Parameter zName points to a nul-terminated buffer containing the name ** of a database ("main", "temp" or the name of an attached db). This ** function returns the index of the named database in db->aDb[], or ** -1 if the named db cannot be found. */ SQLITE_PRIVATE int sqlite3FindDbName(sqlite3 *db, const char *zName){ int i = -1; /* Database number */ if( zName ){ Db *pDb; for(i=(db->nDb-1), pDb=&db->aDb[i]; i>=0; i--, pDb--){ if( 0==sqlite3_stricmp(pDb->zDbSName, zName) ) break; /* "main" is always an acceptable alias for the primary database ** even if it has been renamed using SQLITE_DBCONFIG_MAINDBNAME. */ if( i==0 && 0==sqlite3_stricmp("main", zName) ) break; } } return i; } /* ** The token *pName contains the name of a database (either "main" or ** "temp" or the name of an attached db). This routine returns the ** index of the named database in db->aDb[], or -1 if the named db ** does not exist. */ SQLITE_PRIVATE int sqlite3FindDb(sqlite3 *db, Token *pName){ int i; /* Database number */ char *zName; /* Name we are searching for */ zName = sqlite3NameFromToken(db, pName); i = sqlite3FindDbName(db, zName); sqlite3DbFree(db, zName); return i; } /* The table or view or trigger name is passed to this routine via tokens ** pName1 and pName2. If the table name was fully qualified, for example: ** ** CREATE TABLE xxx.yyy (...); ** ** Then pName1 is set to "xxx" and pName2 "yyy". On the other hand if ** the table name is not fully qualified, i.e.: ** ** CREATE TABLE yyy(...); ** ** Then pName1 is set to "yyy" and pName2 is "". ** ** This routine sets the *ppUnqual pointer to point at the token (pName1 or ** pName2) that stores the unqualified table name. The index of the ** database "xxx" is returned. */ SQLITE_PRIVATE int sqlite3TwoPartName( Parse *pParse, /* Parsing and code generating context */ Token *pName1, /* The "xxx" in the name "xxx.yyy" or "xxx" */ Token *pName2, /* The "yyy" in the name "xxx.yyy" */ Token **pUnqual /* Write the unqualified object name here */ ){ int iDb; /* Database holding the object */ sqlite3 *db = pParse->db; assert( pName2!=0 ); if( pName2->n>0 ){ if( db->init.busy ) { sqlite3ErrorMsg(pParse, "corrupt database"); return -1; } *pUnqual = pName2; iDb = sqlite3FindDb(db, pName1); if( iDb<0 ){ sqlite3ErrorMsg(pParse, "unknown database %T", pName1); return -1; } }else{ assert( db->init.iDb==0 || db->init.busy || IN_RENAME_OBJECT || (db->mDbFlags & DBFLAG_Vacuum)!=0); iDb = db->init.iDb; *pUnqual = pName1; } return iDb; } /* ** True if PRAGMA writable_schema is ON */ SQLITE_PRIVATE int sqlite3WritableSchema(sqlite3 *db){ testcase( (db->flags&(SQLITE_WriteSchema|SQLITE_Defensive))==0 ); testcase( (db->flags&(SQLITE_WriteSchema|SQLITE_Defensive))== SQLITE_WriteSchema ); testcase( (db->flags&(SQLITE_WriteSchema|SQLITE_Defensive))== SQLITE_Defensive ); testcase( (db->flags&(SQLITE_WriteSchema|SQLITE_Defensive))== (SQLITE_WriteSchema|SQLITE_Defensive) ); return (db->flags&(SQLITE_WriteSchema|SQLITE_Defensive))==SQLITE_WriteSchema; } /* ** This routine is used to check if the UTF-8 string zName is a legal ** unqualified name for a new schema object (table, index, view or ** trigger). All names are legal except those that begin with the string ** "sqlite_" (in upper, lower or mixed case). This portion of the namespace ** is reserved for internal use. ** ** When parsing the sqlite_schema table, this routine also checks to ** make sure the "type", "name", and "tbl_name" columns are consistent ** with the SQL. */ SQLITE_PRIVATE int sqlite3CheckObjectName( Parse *pParse, /* Parsing context */ const char *zName, /* Name of the object to check */ const char *zType, /* Type of this object */ const char *zTblName /* Parent table name for triggers and indexes */ ){ sqlite3 *db = pParse->db; if( sqlite3WritableSchema(db) || db->init.imposterTable || !sqlite3Config.bExtraSchemaChecks ){ /* Skip these error checks for writable_schema=ON */ return SQLITE_OK; } if( db->init.busy ){ if( sqlite3_stricmp(zType, db->init.azInit[0]) || sqlite3_stricmp(zName, db->init.azInit[1]) || sqlite3_stricmp(zTblName, db->init.azInit[2]) ){ sqlite3ErrorMsg(pParse, ""); /* corruptSchema() will supply the error */ return SQLITE_ERROR; } }else{ if( (pParse->nested==0 && 0==sqlite3StrNICmp(zName, "sqlite_", 7)) || (sqlite3ReadOnlyShadowTables(db) && sqlite3ShadowTableName(db, zName)) ){ sqlite3ErrorMsg(pParse, "object name reserved for internal use: %s", zName); return SQLITE_ERROR; } } return SQLITE_OK; } /* ** Return the PRIMARY KEY index of a table */ SQLITE_PRIVATE Index *sqlite3PrimaryKeyIndex(Table *pTab){ Index *p; for(p=pTab->pIndex; p && !IsPrimaryKeyIndex(p); p=p->pNext){} return p; } /* ** Convert an table column number into a index column number. That is, ** for the column iCol in the table (as defined by the CREATE TABLE statement) ** find the (first) offset of that column in index pIdx. Or return -1 ** if column iCol is not used in index pIdx. */ SQLITE_PRIVATE i16 sqlite3TableColumnToIndex(Index *pIdx, i16 iCol){ int i; for(i=0; inColumn; i++){ if( iCol==pIdx->aiColumn[i] ) return i; } return -1; } #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Convert a storage column number into a table column number. ** ** The storage column number (0,1,2,....) is the index of the value ** as it appears in the record on disk. The true column number ** is the index (0,1,2,...) of the column in the CREATE TABLE statement. ** ** The storage column number is less than the table column number if ** and only there are VIRTUAL columns to the left. ** ** If SQLITE_OMIT_GENERATED_COLUMNS, this routine is a no-op macro. */ SQLITE_PRIVATE i16 sqlite3StorageColumnToTable(Table *pTab, i16 iCol){ if( pTab->tabFlags & TF_HasVirtual ){ int i; for(i=0; i<=iCol; i++){ if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) iCol++; } } return iCol; } #endif #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Convert a table column number into a storage column number. ** ** The storage column number (0,1,2,....) is the index of the value ** as it appears in the record on disk. Or, if the input column is ** the N-th virtual column (zero-based) then the storage number is ** the number of non-virtual columns in the table plus N. ** ** The true column number is the index (0,1,2,...) of the column in ** the CREATE TABLE statement. ** ** If the input column is a VIRTUAL column, then it should not appear ** in storage. But the value sometimes is cached in registers that ** follow the range of registers used to construct storage. This ** avoids computing the same VIRTUAL column multiple times, and provides ** values for use by OP_Param opcodes in triggers. Hence, if the ** input column is a VIRTUAL table, put it after all the other columns. ** ** In the following, N means "normal column", S means STORED, and ** V means VIRTUAL. Suppose the CREATE TABLE has columns like this: ** ** CREATE TABLE ex(N,S,V,N,S,V,N,S,V); ** -- 0 1 2 3 4 5 6 7 8 ** ** Then the mapping from this function is as follows: ** ** INPUTS: 0 1 2 3 4 5 6 7 8 ** OUTPUTS: 0 1 6 2 3 7 4 5 8 ** ** So, in other words, this routine shifts all the virtual columns to ** the end. ** ** If SQLITE_OMIT_GENERATED_COLUMNS then there are no virtual columns and ** this routine is a no-op macro. If the pTab does not have any virtual ** columns, then this routine is no-op that always return iCol. If iCol ** is negative (indicating the ROWID column) then this routine return iCol. */ SQLITE_PRIVATE i16 sqlite3TableColumnToStorage(Table *pTab, i16 iCol){ int i; i16 n; assert( iColnCol ); if( (pTab->tabFlags & TF_HasVirtual)==0 || iCol<0 ) return iCol; for(i=0, n=0; iaCol[i].colFlags & COLFLAG_VIRTUAL)==0 ) n++; } if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ){ /* iCol is a virtual column itself */ return pTab->nNVCol + i - n; }else{ /* iCol is a normal or stored column */ return n; } } #endif /* ** Begin constructing a new table representation in memory. This is ** the first of several action routines that get called in response ** to a CREATE TABLE statement. In particular, this routine is called ** after seeing tokens "CREATE" and "TABLE" and the table name. The isTemp ** flag is true if the table should be stored in the auxiliary database ** file instead of in the main database file. This is normally the case ** when the "TEMP" or "TEMPORARY" keyword occurs in between ** CREATE and TABLE. ** ** The new table record is initialized and put in pParse->pNewTable. ** As more of the CREATE TABLE statement is parsed, additional action ** routines will be called to add more information to this record. ** At the end of the CREATE TABLE statement, the sqlite3EndTable() routine ** is called to complete the construction of the new table record. */ SQLITE_PRIVATE void sqlite3StartTable( Parse *pParse, /* Parser context */ Token *pName1, /* First part of the name of the table or view */ Token *pName2, /* Second part of the name of the table or view */ int isTemp, /* True if this is a TEMP table */ int isView, /* True if this is a VIEW */ int isVirtual, /* True if this is a VIRTUAL table */ int noErr /* Do nothing if table already exists */ ){ Table *pTable; char *zName = 0; /* The name of the new table */ sqlite3 *db = pParse->db; Vdbe *v; int iDb; /* Database number to create the table in */ Token *pName; /* Unqualified name of the table to create */ if( db->init.busy && db->init.newTnum==1 ){ /* Special case: Parsing the sqlite_schema or sqlite_temp_schema schema */ iDb = db->init.iDb; zName = sqlite3DbStrDup(db, SCHEMA_TABLE(iDb)); pName = pName1; }else{ /* The common case */ iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName); if( iDb<0 ) return; if( !OMIT_TEMPDB && isTemp && pName2->n>0 && iDb!=1 ){ /* If creating a temp table, the name may not be qualified. Unless ** the database name is "temp" anyway. */ sqlite3ErrorMsg(pParse, "temporary table name must be unqualified"); return; } if( !OMIT_TEMPDB && isTemp ) iDb = 1; zName = sqlite3NameFromToken(db, pName); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenMap(pParse, (void*)zName, pName); } } pParse->sNameToken = *pName; if( zName==0 ) return; if( sqlite3CheckObjectName(pParse, zName, isView?"view":"table", zName) ){ goto begin_table_error; } if( db->init.iDb==1 ) isTemp = 1; #ifndef SQLITE_OMIT_AUTHORIZATION assert( isTemp==0 || isTemp==1 ); assert( isView==0 || isView==1 ); { static const u8 aCode[] = { SQLITE_CREATE_TABLE, SQLITE_CREATE_TEMP_TABLE, SQLITE_CREATE_VIEW, SQLITE_CREATE_TEMP_VIEW }; char *zDb = db->aDb[iDb].zDbSName; if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(isTemp), 0, zDb) ){ goto begin_table_error; } if( !isVirtual && sqlite3AuthCheck(pParse, (int)aCode[isTemp+2*isView], zName, 0, zDb) ){ goto begin_table_error; } } #endif /* Make sure the new table name does not collide with an existing ** index or table name in the same database. Issue an error message if ** it does. The exception is if the statement being parsed was passed ** to an sqlite3_declare_vtab() call. In that case only the column names ** and types will be used, so there is no need to test for namespace ** collisions. */ if( !IN_SPECIAL_PARSE ){ char *zDb = db->aDb[iDb].zDbSName; if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ goto begin_table_error; } pTable = sqlite3FindTable(db, zName, zDb); if( pTable ){ if( !noErr ){ sqlite3ErrorMsg(pParse, "table %T already exists", pName); }else{ assert( !db->init.busy || CORRUPT_DB ); sqlite3CodeVerifySchema(pParse, iDb); } goto begin_table_error; } if( sqlite3FindIndex(db, zName, zDb)!=0 ){ sqlite3ErrorMsg(pParse, "there is already an index named %s", zName); goto begin_table_error; } } pTable = sqlite3DbMallocZero(db, sizeof(Table)); if( pTable==0 ){ assert( db->mallocFailed ); pParse->rc = SQLITE_NOMEM_BKPT; pParse->nErr++; goto begin_table_error; } pTable->zName = zName; pTable->iPKey = -1; pTable->pSchema = db->aDb[iDb].pSchema; pTable->nTabRef = 1; #ifdef SQLITE_DEFAULT_ROWEST pTable->nRowLogEst = sqlite3LogEst(SQLITE_DEFAULT_ROWEST); #else pTable->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); #endif assert( pParse->pNewTable==0 ); pParse->pNewTable = pTable; /* If this is the magic sqlite_sequence table used by autoincrement, ** then record a pointer to this table in the main database structure ** so that INSERT can find the table easily. */ #ifndef SQLITE_OMIT_AUTOINCREMENT if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){ assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); pTable->pSchema->pSeqTab = pTable; } #endif /* Begin generating the code that will insert the table record into ** the schema table. Note in particular that we must go ahead ** and allocate the record number for the table entry now. Before any ** PRIMARY KEY or UNIQUE keywords are parsed. Those keywords will cause ** indices to be created and the table record must come before the ** indices. Hence, the record number for the table must be allocated ** now. */ if( !db->init.busy && (v = sqlite3GetVdbe(pParse))!=0 ){ int addr1; int fileFormat; int reg1, reg2, reg3; /* nullRow[] is an OP_Record encoding of a row containing 5 NULLs */ static const char nullRow[] = { 6, 0, 0, 0, 0, 0 }; sqlite3BeginWriteOperation(pParse, 1, iDb); #ifndef SQLITE_OMIT_VIRTUALTABLE if( isVirtual ){ sqlite3VdbeAddOp0(v, OP_VBegin); } #endif /* If the file format and encoding in the database have not been set, ** set them now. */ reg1 = pParse->regRowid = ++pParse->nMem; reg2 = pParse->regRoot = ++pParse->nMem; reg3 = ++pParse->nMem; sqlite3VdbeAddOp3(v, OP_ReadCookie, iDb, reg3, BTREE_FILE_FORMAT); sqlite3VdbeUsesBtree(v, iDb); addr1 = sqlite3VdbeAddOp1(v, OP_If, reg3); VdbeCoverage(v); fileFormat = (db->flags & SQLITE_LegacyFileFmt)!=0 ? 1 : SQLITE_MAX_FILE_FORMAT; sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_FILE_FORMAT, fileFormat); sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_TEXT_ENCODING, ENC(db)); sqlite3VdbeJumpHere(v, addr1); /* This just creates a place-holder record in the sqlite_schema table. ** The record created does not contain anything yet. It will be replaced ** by the real entry in code generated at sqlite3EndTable(). ** ** The rowid for the new entry is left in register pParse->regRowid. ** The root page number of the new table is left in reg pParse->regRoot. ** The rowid and root page number values are needed by the code that ** sqlite3EndTable will generate. */ #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) if( isView || isVirtual ){ sqlite3VdbeAddOp2(v, OP_Integer, 0, reg2); }else #endif { pParse->addrCrTab = sqlite3VdbeAddOp3(v, OP_CreateBtree, iDb, reg2, BTREE_INTKEY); } sqlite3OpenSchemaTable(pParse, iDb); sqlite3VdbeAddOp2(v, OP_NewRowid, 0, reg1); sqlite3VdbeAddOp4(v, OP_Blob, 6, reg3, 0, nullRow, P4_STATIC); sqlite3VdbeAddOp3(v, OP_Insert, 0, reg3, reg1); sqlite3VdbeChangeP5(v, OPFLAG_APPEND); sqlite3VdbeAddOp0(v, OP_Close); } /* Normal (non-error) return. */ return; /* If an error occurs, we jump here */ begin_table_error: sqlite3DbFree(db, zName); return; } /* Set properties of a table column based on the (magical) ** name of the column. */ #if SQLITE_ENABLE_HIDDEN_COLUMNS SQLITE_PRIVATE void sqlite3ColumnPropertiesFromName(Table *pTab, Column *pCol){ if( sqlite3_strnicmp(pCol->zName, "__hidden__", 10)==0 ){ pCol->colFlags |= COLFLAG_HIDDEN; }else if( pTab && pCol!=pTab->aCol && (pCol[-1].colFlags & COLFLAG_HIDDEN) ){ pTab->tabFlags |= TF_OOOHidden; } } #endif /* ** Add a new column to the table currently being constructed. ** ** The parser calls this routine once for each column declaration ** in a CREATE TABLE statement. sqlite3StartTable() gets called ** first to get things going. Then this routine is called for each ** column. */ SQLITE_PRIVATE void sqlite3AddColumn(Parse *pParse, Token *pName, Token *pType){ Table *p; int i; char *z; char *zType; Column *pCol; sqlite3 *db = pParse->db; if( (p = pParse->pNewTable)==0 ) return; if( p->nCol+1>db->aLimit[SQLITE_LIMIT_COLUMN] ){ sqlite3ErrorMsg(pParse, "too many columns on %s", p->zName); return; } z = sqlite3DbMallocRaw(db, pName->n + pType->n + 2); if( z==0 ) return; if( IN_RENAME_OBJECT ) sqlite3RenameTokenMap(pParse, (void*)z, pName); memcpy(z, pName->z, pName->n); z[pName->n] = 0; sqlite3Dequote(z); for(i=0; inCol; i++){ if( sqlite3_stricmp(z, p->aCol[i].zName)==0 ){ sqlite3ErrorMsg(pParse, "duplicate column name: %s", z); sqlite3DbFree(db, z); return; } } if( (p->nCol & 0x7)==0 ){ Column *aNew; aNew = sqlite3DbRealloc(db,p->aCol,(p->nCol+8)*sizeof(p->aCol[0])); if( aNew==0 ){ sqlite3DbFree(db, z); return; } p->aCol = aNew; } pCol = &p->aCol[p->nCol]; memset(pCol, 0, sizeof(p->aCol[0])); pCol->zName = z; pCol->hName = sqlite3StrIHash(z); sqlite3ColumnPropertiesFromName(p, pCol); if( pType->n==0 ){ /* If there is no type specified, columns have the default affinity ** 'BLOB' with a default size of 4 bytes. */ pCol->affinity = SQLITE_AFF_BLOB; pCol->szEst = 1; #ifdef SQLITE_ENABLE_SORTER_REFERENCES if( 4>=sqlite3GlobalConfig.szSorterRef ){ pCol->colFlags |= COLFLAG_SORTERREF; } #endif }else{ zType = z + sqlite3Strlen30(z) + 1; memcpy(zType, pType->z, pType->n); zType[pType->n] = 0; sqlite3Dequote(zType); pCol->affinity = sqlite3AffinityType(zType, pCol); pCol->colFlags |= COLFLAG_HASTYPE; } p->nCol++; p->nNVCol++; pParse->constraintName.n = 0; } /* ** This routine is called by the parser while in the middle of ** parsing a CREATE TABLE statement. A "NOT NULL" constraint has ** been seen on a column. This routine sets the notNull flag on ** the column currently under construction. */ SQLITE_PRIVATE void sqlite3AddNotNull(Parse *pParse, int onError){ Table *p; Column *pCol; p = pParse->pNewTable; if( p==0 || NEVER(p->nCol<1) ) return; pCol = &p->aCol[p->nCol-1]; pCol->notNull = (u8)onError; p->tabFlags |= TF_HasNotNull; /* Set the uniqNotNull flag on any UNIQUE or PK indexes already created ** on this column. */ if( pCol->colFlags & COLFLAG_UNIQUE ){ Index *pIdx; for(pIdx=p->pIndex; pIdx; pIdx=pIdx->pNext){ assert( pIdx->nKeyCol==1 && pIdx->onError!=OE_None ); if( pIdx->aiColumn[0]==p->nCol-1 ){ pIdx->uniqNotNull = 1; } } } } /* ** Scan the column type name zType (length nType) and return the ** associated affinity type. ** ** This routine does a case-independent search of zType for the ** substrings in the following table. If one of the substrings is ** found, the corresponding affinity is returned. If zType contains ** more than one of the substrings, entries toward the top of ** the table take priority. For example, if zType is 'BLOBINT', ** SQLITE_AFF_INTEGER is returned. ** ** Substring | Affinity ** -------------------------------- ** 'INT' | SQLITE_AFF_INTEGER ** 'CHAR' | SQLITE_AFF_TEXT ** 'CLOB' | SQLITE_AFF_TEXT ** 'TEXT' | SQLITE_AFF_TEXT ** 'BLOB' | SQLITE_AFF_BLOB ** 'REAL' | SQLITE_AFF_REAL ** 'FLOA' | SQLITE_AFF_REAL ** 'DOUB' | SQLITE_AFF_REAL ** ** If none of the substrings in the above table are found, ** SQLITE_AFF_NUMERIC is returned. */ SQLITE_PRIVATE char sqlite3AffinityType(const char *zIn, Column *pCol){ u32 h = 0; char aff = SQLITE_AFF_NUMERIC; const char *zChar = 0; assert( zIn!=0 ); while( zIn[0] ){ h = (h<<8) + sqlite3UpperToLower[(*zIn)&0xff]; zIn++; if( h==(('c'<<24)+('h'<<16)+('a'<<8)+'r') ){ /* CHAR */ aff = SQLITE_AFF_TEXT; zChar = zIn; }else if( h==(('c'<<24)+('l'<<16)+('o'<<8)+'b') ){ /* CLOB */ aff = SQLITE_AFF_TEXT; }else if( h==(('t'<<24)+('e'<<16)+('x'<<8)+'t') ){ /* TEXT */ aff = SQLITE_AFF_TEXT; }else if( h==(('b'<<24)+('l'<<16)+('o'<<8)+'b') /* BLOB */ && (aff==SQLITE_AFF_NUMERIC || aff==SQLITE_AFF_REAL) ){ aff = SQLITE_AFF_BLOB; if( zIn[0]=='(' ) zChar = zIn; #ifndef SQLITE_OMIT_FLOATING_POINT }else if( h==(('r'<<24)+('e'<<16)+('a'<<8)+'l') /* REAL */ && aff==SQLITE_AFF_NUMERIC ){ aff = SQLITE_AFF_REAL; }else if( h==(('f'<<24)+('l'<<16)+('o'<<8)+'a') /* FLOA */ && aff==SQLITE_AFF_NUMERIC ){ aff = SQLITE_AFF_REAL; }else if( h==(('d'<<24)+('o'<<16)+('u'<<8)+'b') /* DOUB */ && aff==SQLITE_AFF_NUMERIC ){ aff = SQLITE_AFF_REAL; #endif }else if( (h&0x00FFFFFF)==(('i'<<16)+('n'<<8)+'t') ){ /* INT */ aff = SQLITE_AFF_INTEGER; break; } } /* If pCol is not NULL, store an estimate of the field size. The ** estimate is scaled so that the size of an integer is 1. */ if( pCol ){ int v = 0; /* default size is approx 4 bytes */ if( aff r=(k/4+1) */ sqlite3GetInt32(zChar, &v); break; } zChar++; } }else{ v = 16; /* BLOB, TEXT, CLOB -> r=5 (approx 20 bytes)*/ } } #ifdef SQLITE_ENABLE_SORTER_REFERENCES if( v>=sqlite3GlobalConfig.szSorterRef ){ pCol->colFlags |= COLFLAG_SORTERREF; } #endif v = v/4 + 1; if( v>255 ) v = 255; pCol->szEst = v; } return aff; } /* ** The expression is the default value for the most recently added column ** of the table currently under construction. ** ** Default value expressions must be constant. Raise an exception if this ** is not the case. ** ** This routine is called by the parser while in the middle of ** parsing a CREATE TABLE statement. */ SQLITE_PRIVATE void sqlite3AddDefaultValue( Parse *pParse, /* Parsing context */ Expr *pExpr, /* The parsed expression of the default value */ const char *zStart, /* Start of the default value text */ const char *zEnd /* First character past end of defaut value text */ ){ Table *p; Column *pCol; sqlite3 *db = pParse->db; p = pParse->pNewTable; if( p!=0 ){ int isInit = db->init.busy && db->init.iDb!=1; pCol = &(p->aCol[p->nCol-1]); if( !sqlite3ExprIsConstantOrFunction(pExpr, isInit) ){ sqlite3ErrorMsg(pParse, "default value of column [%s] is not constant", pCol->zName); #ifndef SQLITE_OMIT_GENERATED_COLUMNS }else if( pCol->colFlags & COLFLAG_GENERATED ){ testcase( pCol->colFlags & COLFLAG_VIRTUAL ); testcase( pCol->colFlags & COLFLAG_STORED ); sqlite3ErrorMsg(pParse, "cannot use DEFAULT on a generated column"); #endif }else{ /* A copy of pExpr is used instead of the original, as pExpr contains ** tokens that point to volatile memory. */ Expr x; sqlite3ExprDelete(db, pCol->pDflt); memset(&x, 0, sizeof(x)); x.op = TK_SPAN; x.u.zToken = sqlite3DbSpanDup(db, zStart, zEnd); x.pLeft = pExpr; x.flags = EP_Skip; pCol->pDflt = sqlite3ExprDup(db, &x, EXPRDUP_REDUCE); sqlite3DbFree(db, x.u.zToken); } } if( IN_RENAME_OBJECT ){ sqlite3RenameExprUnmap(pParse, pExpr); } sqlite3ExprDelete(db, pExpr); } /* ** Backwards Compatibility Hack: ** ** Historical versions of SQLite accepted strings as column names in ** indexes and PRIMARY KEY constraints and in UNIQUE constraints. Example: ** ** CREATE TABLE xyz(a,b,c,d,e,PRIMARY KEY('a'),UNIQUE('b','c' COLLATE trim) ** CREATE INDEX abc ON xyz('c','d' DESC,'e' COLLATE nocase DESC); ** ** This is goofy. But to preserve backwards compatibility we continue to ** accept it. This routine does the necessary conversion. It converts ** the expression given in its argument from a TK_STRING into a TK_ID ** if the expression is just a TK_STRING with an optional COLLATE clause. ** If the expression is anything other than TK_STRING, the expression is ** unchanged. */ static void sqlite3StringToId(Expr *p){ if( p->op==TK_STRING ){ p->op = TK_ID; }else if( p->op==TK_COLLATE && p->pLeft->op==TK_STRING ){ p->pLeft->op = TK_ID; } } /* ** Tag the given column as being part of the PRIMARY KEY */ static void makeColumnPartOfPrimaryKey(Parse *pParse, Column *pCol){ pCol->colFlags |= COLFLAG_PRIMKEY; #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( pCol->colFlags & COLFLAG_GENERATED ){ testcase( pCol->colFlags & COLFLAG_VIRTUAL ); testcase( pCol->colFlags & COLFLAG_STORED ); sqlite3ErrorMsg(pParse, "generated columns cannot be part of the PRIMARY KEY"); } #endif } /* ** Designate the PRIMARY KEY for the table. pList is a list of names ** of columns that form the primary key. If pList is NULL, then the ** most recently added column of the table is the primary key. ** ** A table can have at most one primary key. If the table already has ** a primary key (and this is the second primary key) then create an ** error. ** ** If the PRIMARY KEY is on a single column whose datatype is INTEGER, ** then we will try to use that column as the rowid. Set the Table.iPKey ** field of the table under construction to be the index of the ** INTEGER PRIMARY KEY column. Table.iPKey is set to -1 if there is ** no INTEGER PRIMARY KEY. ** ** If the key is not an INTEGER PRIMARY KEY, then create a unique ** index for the key. No index is created for INTEGER PRIMARY KEYs. */ SQLITE_PRIVATE void sqlite3AddPrimaryKey( Parse *pParse, /* Parsing context */ ExprList *pList, /* List of field names to be indexed */ int onError, /* What to do with a uniqueness conflict */ int autoInc, /* True if the AUTOINCREMENT keyword is present */ int sortOrder /* SQLITE_SO_ASC or SQLITE_SO_DESC */ ){ Table *pTab = pParse->pNewTable; Column *pCol = 0; int iCol = -1, i; int nTerm; if( pTab==0 ) goto primary_key_exit; if( pTab->tabFlags & TF_HasPrimaryKey ){ sqlite3ErrorMsg(pParse, "table \"%s\" has more than one primary key", pTab->zName); goto primary_key_exit; } pTab->tabFlags |= TF_HasPrimaryKey; if( pList==0 ){ iCol = pTab->nCol - 1; pCol = &pTab->aCol[iCol]; makeColumnPartOfPrimaryKey(pParse, pCol); nTerm = 1; }else{ nTerm = pList->nExpr; for(i=0; ia[i].pExpr); assert( pCExpr!=0 ); sqlite3StringToId(pCExpr); if( pCExpr->op==TK_ID ){ const char *zCName = pCExpr->u.zToken; for(iCol=0; iColnCol; iCol++){ if( sqlite3StrICmp(zCName, pTab->aCol[iCol].zName)==0 ){ pCol = &pTab->aCol[iCol]; makeColumnPartOfPrimaryKey(pParse, pCol); break; } } } } } if( nTerm==1 && pCol && sqlite3StrICmp(sqlite3ColumnType(pCol,""), "INTEGER")==0 && sortOrder!=SQLITE_SO_DESC ){ if( IN_RENAME_OBJECT && pList ){ Expr *pCExpr = sqlite3ExprSkipCollate(pList->a[0].pExpr); sqlite3RenameTokenRemap(pParse, &pTab->iPKey, pCExpr); } pTab->iPKey = iCol; pTab->keyConf = (u8)onError; assert( autoInc==0 || autoInc==1 ); pTab->tabFlags |= autoInc*TF_Autoincrement; if( pList ) pParse->iPkSortOrder = pList->a[0].sortFlags; (void)sqlite3HasExplicitNulls(pParse, pList); }else if( autoInc ){ #ifndef SQLITE_OMIT_AUTOINCREMENT sqlite3ErrorMsg(pParse, "AUTOINCREMENT is only allowed on an " "INTEGER PRIMARY KEY"); #endif }else{ sqlite3CreateIndex(pParse, 0, 0, 0, pList, onError, 0, 0, sortOrder, 0, SQLITE_IDXTYPE_PRIMARYKEY); pList = 0; } primary_key_exit: sqlite3ExprListDelete(pParse->db, pList); return; } /* ** Add a new CHECK constraint to the table currently under construction. */ SQLITE_PRIVATE void sqlite3AddCheckConstraint( Parse *pParse, /* Parsing context */ Expr *pCheckExpr /* The check expression */ ){ #ifndef SQLITE_OMIT_CHECK Table *pTab = pParse->pNewTable; sqlite3 *db = pParse->db; if( pTab && !IN_DECLARE_VTAB && !sqlite3BtreeIsReadonly(db->aDb[db->init.iDb].pBt) ){ pTab->pCheck = sqlite3ExprListAppend(pParse, pTab->pCheck, pCheckExpr); if( pParse->constraintName.n ){ sqlite3ExprListSetName(pParse, pTab->pCheck, &pParse->constraintName, 1); } }else #endif { sqlite3ExprDelete(pParse->db, pCheckExpr); } } /* ** Set the collation function of the most recently parsed table column ** to the CollSeq given. */ SQLITE_PRIVATE void sqlite3AddCollateType(Parse *pParse, Token *pToken){ Table *p; int i; char *zColl; /* Dequoted name of collation sequence */ sqlite3 *db; if( (p = pParse->pNewTable)==0 ) return; i = p->nCol-1; db = pParse->db; zColl = sqlite3NameFromToken(db, pToken); if( !zColl ) return; if( sqlite3LocateCollSeq(pParse, zColl) ){ Index *pIdx; sqlite3DbFree(db, p->aCol[i].zColl); p->aCol[i].zColl = zColl; /* If the column is declared as " PRIMARY KEY COLLATE ", ** then an index may have been created on this column before the ** collation type was added. Correct this if it is the case. */ for(pIdx=p->pIndex; pIdx; pIdx=pIdx->pNext){ assert( pIdx->nKeyCol==1 ); if( pIdx->aiColumn[0]==i ){ pIdx->azColl[0] = p->aCol[i].zColl; } } }else{ sqlite3DbFree(db, zColl); } } /* Change the most recently parsed column to be a GENERATED ALWAYS AS ** column. */ SQLITE_PRIVATE void sqlite3AddGenerated(Parse *pParse, Expr *pExpr, Token *pType){ #ifndef SQLITE_OMIT_GENERATED_COLUMNS u8 eType = COLFLAG_VIRTUAL; Table *pTab = pParse->pNewTable; Column *pCol; if( pTab==0 ){ /* generated column in an CREATE TABLE IF NOT EXISTS that already exists */ goto generated_done; } pCol = &(pTab->aCol[pTab->nCol-1]); if( IN_DECLARE_VTAB ){ sqlite3ErrorMsg(pParse, "virtual tables cannot use computed columns"); goto generated_done; } if( pCol->pDflt ) goto generated_error; if( pType ){ if( pType->n==7 && sqlite3StrNICmp("virtual",pType->z,7)==0 ){ /* no-op */ }else if( pType->n==6 && sqlite3StrNICmp("stored",pType->z,6)==0 ){ eType = COLFLAG_STORED; }else{ goto generated_error; } } if( eType==COLFLAG_VIRTUAL ) pTab->nNVCol--; pCol->colFlags |= eType; assert( TF_HasVirtual==COLFLAG_VIRTUAL ); assert( TF_HasStored==COLFLAG_STORED ); pTab->tabFlags |= eType; if( pCol->colFlags & COLFLAG_PRIMKEY ){ makeColumnPartOfPrimaryKey(pParse, pCol); /* For the error message */ } pCol->pDflt = pExpr; pExpr = 0; goto generated_done; generated_error: sqlite3ErrorMsg(pParse, "error in generated column \"%s\"", pCol->zName); generated_done: sqlite3ExprDelete(pParse->db, pExpr); #else /* Throw and error for the GENERATED ALWAYS AS clause if the ** SQLITE_OMIT_GENERATED_COLUMNS compile-time option is used. */ sqlite3ErrorMsg(pParse, "generated columns not supported"); sqlite3ExprDelete(pParse->db, pExpr); #endif } /* ** Generate code that will increment the schema cookie. ** ** The schema cookie is used to determine when the schema for the ** database changes. After each schema change, the cookie value ** changes. When a process first reads the schema it records the ** cookie. Thereafter, whenever it goes to access the database, ** it checks the cookie to make sure the schema has not changed ** since it was last read. ** ** This plan is not completely bullet-proof. It is possible for ** the schema to change multiple times and for the cookie to be ** set back to prior value. But schema changes are infrequent ** and the probability of hitting the same cookie value is only ** 1 chance in 2^32. So we're safe enough. ** ** IMPLEMENTATION-OF: R-34230-56049 SQLite automatically increments ** the schema-version whenever the schema changes. */ SQLITE_PRIVATE void sqlite3ChangeCookie(Parse *pParse, int iDb){ sqlite3 *db = pParse->db; Vdbe *v = pParse->pVdbe; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_SCHEMA_VERSION, (int)(1+(unsigned)db->aDb[iDb].pSchema->schema_cookie)); } /* ** Measure the number of characters needed to output the given ** identifier. The number returned includes any quotes used ** but does not include the null terminator. ** ** The estimate is conservative. It might be larger that what is ** really needed. */ static int identLength(const char *z){ int n; for(n=0; *z; n++, z++){ if( *z=='"' ){ n++; } } return n + 2; } /* ** The first parameter is a pointer to an output buffer. The second ** parameter is a pointer to an integer that contains the offset at ** which to write into the output buffer. This function copies the ** nul-terminated string pointed to by the third parameter, zSignedIdent, ** to the specified offset in the buffer and updates *pIdx to refer ** to the first byte after the last byte written before returning. ** ** If the string zSignedIdent consists entirely of alpha-numeric ** characters, does not begin with a digit and is not an SQL keyword, ** then it is copied to the output buffer exactly as it is. Otherwise, ** it is quoted using double-quotes. */ static void identPut(char *z, int *pIdx, char *zSignedIdent){ unsigned char *zIdent = (unsigned char*)zSignedIdent; int i, j, needQuote; i = *pIdx; for(j=0; zIdent[j]; j++){ if( !sqlite3Isalnum(zIdent[j]) && zIdent[j]!='_' ) break; } needQuote = sqlite3Isdigit(zIdent[0]) || sqlite3KeywordCode(zIdent, j)!=TK_ID || zIdent[j]!=0 || j==0; if( needQuote ) z[i++] = '"'; for(j=0; zIdent[j]; j++){ z[i++] = zIdent[j]; if( zIdent[j]=='"' ) z[i++] = '"'; } if( needQuote ) z[i++] = '"'; z[i] = 0; *pIdx = i; } /* ** Generate a CREATE TABLE statement appropriate for the given ** table. Memory to hold the text of the statement is obtained ** from sqliteMalloc() and must be freed by the calling function. */ static char *createTableStmt(sqlite3 *db, Table *p){ int i, k, n; char *zStmt; char *zSep, *zSep2, *zEnd; Column *pCol; n = 0; for(pCol = p->aCol, i=0; inCol; i++, pCol++){ n += identLength(pCol->zName) + 5; } n += identLength(p->zName); if( n<50 ){ zSep = ""; zSep2 = ","; zEnd = ")"; }else{ zSep = "\n "; zSep2 = ",\n "; zEnd = "\n)"; } n += 35 + 6*p->nCol; zStmt = sqlite3DbMallocRaw(0, n); if( zStmt==0 ){ sqlite3OomFault(db); return 0; } sqlite3_snprintf(n, zStmt, "CREATE TABLE "); k = sqlite3Strlen30(zStmt); identPut(zStmt, &k, p->zName); zStmt[k++] = '('; for(pCol=p->aCol, i=0; inCol; i++, pCol++){ static const char * const azType[] = { /* SQLITE_AFF_BLOB */ "", /* SQLITE_AFF_TEXT */ " TEXT", /* SQLITE_AFF_NUMERIC */ " NUM", /* SQLITE_AFF_INTEGER */ " INT", /* SQLITE_AFF_REAL */ " REAL" }; int len; const char *zType; sqlite3_snprintf(n-k, &zStmt[k], zSep); k += sqlite3Strlen30(&zStmt[k]); zSep = zSep2; identPut(zStmt, &k, pCol->zName); assert( pCol->affinity-SQLITE_AFF_BLOB >= 0 ); assert( pCol->affinity-SQLITE_AFF_BLOB < ArraySize(azType) ); testcase( pCol->affinity==SQLITE_AFF_BLOB ); testcase( pCol->affinity==SQLITE_AFF_TEXT ); testcase( pCol->affinity==SQLITE_AFF_NUMERIC ); testcase( pCol->affinity==SQLITE_AFF_INTEGER ); testcase( pCol->affinity==SQLITE_AFF_REAL ); zType = azType[pCol->affinity - SQLITE_AFF_BLOB]; len = sqlite3Strlen30(zType); assert( pCol->affinity==SQLITE_AFF_BLOB || pCol->affinity==sqlite3AffinityType(zType, 0) ); memcpy(&zStmt[k], zType, len); k += len; assert( k<=n ); } sqlite3_snprintf(n-k, &zStmt[k], "%s", zEnd); return zStmt; } /* ** Resize an Index object to hold N columns total. Return SQLITE_OK ** on success and SQLITE_NOMEM on an OOM error. */ static int resizeIndexObject(sqlite3 *db, Index *pIdx, int N){ char *zExtra; int nByte; if( pIdx->nColumn>=N ) return SQLITE_OK; assert( pIdx->isResized==0 ); nByte = (sizeof(char*) + sizeof(i16) + 1)*N; zExtra = sqlite3DbMallocZero(db, nByte); if( zExtra==0 ) return SQLITE_NOMEM_BKPT; memcpy(zExtra, pIdx->azColl, sizeof(char*)*pIdx->nColumn); pIdx->azColl = (const char**)zExtra; zExtra += sizeof(char*)*N; memcpy(zExtra, pIdx->aiColumn, sizeof(i16)*pIdx->nColumn); pIdx->aiColumn = (i16*)zExtra; zExtra += sizeof(i16)*N; memcpy(zExtra, pIdx->aSortOrder, pIdx->nColumn); pIdx->aSortOrder = (u8*)zExtra; pIdx->nColumn = N; pIdx->isResized = 1; return SQLITE_OK; } /* ** Estimate the total row width for a table. */ static void estimateTableWidth(Table *pTab){ unsigned wTable = 0; const Column *pTabCol; int i; for(i=pTab->nCol, pTabCol=pTab->aCol; i>0; i--, pTabCol++){ wTable += pTabCol->szEst; } if( pTab->iPKey<0 ) wTable++; pTab->szTabRow = sqlite3LogEst(wTable*4); } /* ** Estimate the average size of a row for an index. */ static void estimateIndexWidth(Index *pIdx){ unsigned wIndex = 0; int i; const Column *aCol = pIdx->pTable->aCol; for(i=0; inColumn; i++){ i16 x = pIdx->aiColumn[i]; assert( xpTable->nCol ); wIndex += x<0 ? 1 : aCol[pIdx->aiColumn[i]].szEst; } pIdx->szIdxRow = sqlite3LogEst(wIndex*4); } /* Return true if column number x is any of the first nCol entries of aiCol[]. ** This is used to determine if the column number x appears in any of the ** first nCol entries of an index. */ static int hasColumn(const i16 *aiCol, int nCol, int x){ while( nCol-- > 0 ){ assert( aiCol[0]>=0 ); if( x==*(aiCol++) ){ return 1; } } return 0; } /* ** Return true if any of the first nKey entries of index pIdx exactly ** match the iCol-th entry of pPk. pPk is always a WITHOUT ROWID ** PRIMARY KEY index. pIdx is an index on the same table. pIdx may ** or may not be the same index as pPk. ** ** The first nKey entries of pIdx are guaranteed to be ordinary columns, ** not a rowid or expression. ** ** This routine differs from hasColumn() in that both the column and the ** collating sequence must match for this routine, but for hasColumn() only ** the column name must match. */ static int isDupColumn(Index *pIdx, int nKey, Index *pPk, int iCol){ int i, j; assert( nKey<=pIdx->nColumn ); assert( iColnColumn,pPk->nKeyCol) ); assert( pPk->idxType==SQLITE_IDXTYPE_PRIMARYKEY ); assert( pPk->pTable->tabFlags & TF_WithoutRowid ); assert( pPk->pTable==pIdx->pTable ); testcase( pPk==pIdx ); j = pPk->aiColumn[iCol]; assert( j!=XN_ROWID && j!=XN_EXPR ); for(i=0; iaiColumn[i]>=0 || j>=0 ); if( pIdx->aiColumn[i]==j && sqlite3StrICmp(pIdx->azColl[i], pPk->azColl[iCol])==0 ){ return 1; } } return 0; } /* Recompute the colNotIdxed field of the Index. ** ** colNotIdxed is a bitmask that has a 0 bit representing each indexed ** columns that are within the first 63 columns of the table. The ** high-order bit of colNotIdxed is always 1. All unindexed columns ** of the table have a 1. ** ** 2019-10-24: For the purpose of this computation, virtual columns are ** not considered to be covered by the index, even if they are in the ** index, because we do not trust the logic in whereIndexExprTrans() to be ** able to find all instances of a reference to the indexed table column ** and convert them into references to the index. Hence we always want ** the actual table at hand in order to recompute the virtual column, if ** necessary. ** ** The colNotIdxed mask is AND-ed with the SrcList.a[].colUsed mask ** to determine if the index is covering index. */ static void recomputeColumnsNotIndexed(Index *pIdx){ Bitmask m = 0; int j; Table *pTab = pIdx->pTable; for(j=pIdx->nColumn-1; j>=0; j--){ int x = pIdx->aiColumn[j]; if( x>=0 && (pTab->aCol[x].colFlags & COLFLAG_VIRTUAL)==0 ){ testcase( x==BMS-1 ); testcase( x==BMS-2 ); if( xcolNotIdxed = ~m; assert( (pIdx->colNotIdxed>>63)==1 ); } /* ** This routine runs at the end of parsing a CREATE TABLE statement that ** has a WITHOUT ROWID clause. The job of this routine is to convert both ** internal schema data structures and the generated VDBE code so that they ** are appropriate for a WITHOUT ROWID table instead of a rowid table. ** Changes include: ** ** (1) Set all columns of the PRIMARY KEY schema object to be NOT NULL. ** (2) Convert P3 parameter of the OP_CreateBtree from BTREE_INTKEY ** into BTREE_BLOBKEY. ** (3) Bypass the creation of the sqlite_schema table entry ** for the PRIMARY KEY as the primary key index is now ** identified by the sqlite_schema table entry of the table itself. ** (4) Set the Index.tnum of the PRIMARY KEY Index object in the ** schema to the rootpage from the main table. ** (5) Add all table columns to the PRIMARY KEY Index object ** so that the PRIMARY KEY is a covering index. The surplus ** columns are part of KeyInfo.nAllField and are not used for ** sorting or lookup or uniqueness checks. ** (6) Replace the rowid tail on all automatically generated UNIQUE ** indices with the PRIMARY KEY columns. ** ** For virtual tables, only (1) is performed. */ static void convertToWithoutRowidTable(Parse *pParse, Table *pTab){ Index *pIdx; Index *pPk; int nPk; int nExtra; int i, j; sqlite3 *db = pParse->db; Vdbe *v = pParse->pVdbe; /* Mark every PRIMARY KEY column as NOT NULL (except for imposter tables) */ if( !db->init.imposterTable ){ for(i=0; inCol; i++){ if( (pTab->aCol[i].colFlags & COLFLAG_PRIMKEY)!=0 ){ pTab->aCol[i].notNull = OE_Abort; } } pTab->tabFlags |= TF_HasNotNull; } /* Convert the P3 operand of the OP_CreateBtree opcode from BTREE_INTKEY ** into BTREE_BLOBKEY. */ if( pParse->addrCrTab ){ assert( v ); sqlite3VdbeChangeP3(v, pParse->addrCrTab, BTREE_BLOBKEY); } /* Locate the PRIMARY KEY index. Or, if this table was originally ** an INTEGER PRIMARY KEY table, create a new PRIMARY KEY index. */ if( pTab->iPKey>=0 ){ ExprList *pList; Token ipkToken; sqlite3TokenInit(&ipkToken, pTab->aCol[pTab->iPKey].zName); pList = sqlite3ExprListAppend(pParse, 0, sqlite3ExprAlloc(db, TK_ID, &ipkToken, 0)); if( pList==0 ) return; if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, pList->a[0].pExpr, &pTab->iPKey); } pList->a[0].sortFlags = pParse->iPkSortOrder; assert( pParse->pNewTable==pTab ); pTab->iPKey = -1; sqlite3CreateIndex(pParse, 0, 0, 0, pList, pTab->keyConf, 0, 0, 0, 0, SQLITE_IDXTYPE_PRIMARYKEY); if( db->mallocFailed || pParse->nErr ) return; pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk->nKeyCol==1 ); }else{ pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk!=0 ); /* ** Remove all redundant columns from the PRIMARY KEY. For example, change ** "PRIMARY KEY(a,b,a,b,c,b,c,d)" into just "PRIMARY KEY(a,b,c,d)". Later ** code assumes the PRIMARY KEY contains no repeated columns. */ for(i=j=1; inKeyCol; i++){ if( isDupColumn(pPk, j, pPk, i) ){ pPk->nColumn--; }else{ testcase( hasColumn(pPk->aiColumn, j, pPk->aiColumn[i]) ); pPk->azColl[j] = pPk->azColl[i]; pPk->aSortOrder[j] = pPk->aSortOrder[i]; pPk->aiColumn[j++] = pPk->aiColumn[i]; } } pPk->nKeyCol = j; } assert( pPk!=0 ); pPk->isCovering = 1; if( !db->init.imposterTable ) pPk->uniqNotNull = 1; nPk = pPk->nColumn = pPk->nKeyCol; /* Bypass the creation of the PRIMARY KEY btree and the sqlite_schema ** table entry. This is only required if currently generating VDBE ** code for a CREATE TABLE (not when parsing one as part of reading ** a database schema). */ if( v && pPk->tnum>0 ){ assert( db->init.busy==0 ); sqlite3VdbeChangeOpcode(v, (int)pPk->tnum, OP_Goto); } /* The root page of the PRIMARY KEY is the table root page */ pPk->tnum = pTab->tnum; /* Update the in-memory representation of all UNIQUE indices by converting ** the final rowid column into one or more columns of the PRIMARY KEY. */ for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int n; if( IsPrimaryKeyIndex(pIdx) ) continue; for(i=n=0; inKeyCol, pPk, i) ){ testcase( hasColumn(pIdx->aiColumn, pIdx->nKeyCol, pPk->aiColumn[i]) ); n++; } } if( n==0 ){ /* This index is a superset of the primary key */ pIdx->nColumn = pIdx->nKeyCol; continue; } if( resizeIndexObject(db, pIdx, pIdx->nKeyCol+n) ) return; for(i=0, j=pIdx->nKeyCol; inKeyCol, pPk, i) ){ testcase( hasColumn(pIdx->aiColumn, pIdx->nKeyCol, pPk->aiColumn[i]) ); pIdx->aiColumn[j] = pPk->aiColumn[i]; pIdx->azColl[j] = pPk->azColl[i]; if( pPk->aSortOrder[i] ){ /* See ticket https://www.sqlite.org/src/info/bba7b69f9849b5bf */ pIdx->bAscKeyBug = 1; } j++; } } assert( pIdx->nColumn>=pIdx->nKeyCol+n ); assert( pIdx->nColumn>=j ); } /* Add all table columns to the PRIMARY KEY index */ nExtra = 0; for(i=0; inCol; i++){ if( !hasColumn(pPk->aiColumn, nPk, i) && (pTab->aCol[i].colFlags & COLFLAG_VIRTUAL)==0 ) nExtra++; } if( resizeIndexObject(db, pPk, nPk+nExtra) ) return; for(i=0, j=nPk; inCol; i++){ if( !hasColumn(pPk->aiColumn, j, i) && (pTab->aCol[i].colFlags & COLFLAG_VIRTUAL)==0 ){ assert( jnColumn ); pPk->aiColumn[j] = i; pPk->azColl[j] = sqlite3StrBINARY; j++; } } assert( pPk->nColumn==j ); assert( pTab->nNVCol<=j ); recomputeColumnsNotIndexed(pPk); } #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Return true if pTab is a virtual table and zName is a shadow table name ** for that virtual table. */ SQLITE_PRIVATE int sqlite3IsShadowTableOf(sqlite3 *db, Table *pTab, const char *zName){ int nName; /* Length of zName */ Module *pMod; /* Module for the virtual table */ if( !IsVirtual(pTab) ) return 0; nName = sqlite3Strlen30(pTab->zName); if( sqlite3_strnicmp(zName, pTab->zName, nName)!=0 ) return 0; if( zName[nName]!='_' ) return 0; pMod = (Module*)sqlite3HashFind(&db->aModule, pTab->azModuleArg[0]); if( pMod==0 ) return 0; if( pMod->pModule->iVersion<3 ) return 0; if( pMod->pModule->xShadowName==0 ) return 0; return pMod->pModule->xShadowName(zName+nName+1); } #endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Return true if zName is a shadow table name in the current database ** connection. ** ** zName is temporarily modified while this routine is running, but is ** restored to its original value prior to this routine returning. */ SQLITE_PRIVATE int sqlite3ShadowTableName(sqlite3 *db, const char *zName){ char *zTail; /* Pointer to the last "_" in zName */ Table *pTab; /* Table that zName is a shadow of */ zTail = strrchr(zName, '_'); if( zTail==0 ) return 0; *zTail = 0; pTab = sqlite3FindTable(db, zName, 0); *zTail = '_'; if( pTab==0 ) return 0; if( !IsVirtual(pTab) ) return 0; return sqlite3IsShadowTableOf(db, pTab, zName); } #endif /* ifndef SQLITE_OMIT_VIRTUALTABLE */ #ifdef SQLITE_DEBUG /* ** Mark all nodes of an expression as EP_Immutable, indicating that ** they should not be changed. Expressions attached to a table or ** index definition are tagged this way to help ensure that we do ** not pass them into code generator routines by mistake. */ static int markImmutableExprStep(Walker *pWalker, Expr *pExpr){ ExprSetVVAProperty(pExpr, EP_Immutable); return WRC_Continue; } static void markExprListImmutable(ExprList *pList){ if( pList ){ Walker w; memset(&w, 0, sizeof(w)); w.xExprCallback = markImmutableExprStep; w.xSelectCallback = sqlite3SelectWalkNoop; w.xSelectCallback2 = 0; sqlite3WalkExprList(&w, pList); } } #else #define markExprListImmutable(X) /* no-op */ #endif /* SQLITE_DEBUG */ /* ** This routine is called to report the final ")" that terminates ** a CREATE TABLE statement. ** ** The table structure that other action routines have been building ** is added to the internal hash tables, assuming no errors have ** occurred. ** ** An entry for the table is made in the schema table on disk, unless ** this is a temporary table or db->init.busy==1. When db->init.busy==1 ** it means we are reading the sqlite_schema table because we just ** connected to the database or because the sqlite_schema table has ** recently changed, so the entry for this table already exists in ** the sqlite_schema table. We do not want to create it again. ** ** If the pSelect argument is not NULL, it means that this routine ** was called to create a table generated from a ** "CREATE TABLE ... AS SELECT ..." statement. The column names of ** the new table will match the result set of the SELECT. */ SQLITE_PRIVATE void sqlite3EndTable( Parse *pParse, /* Parse context */ Token *pCons, /* The ',' token after the last column defn. */ Token *pEnd, /* The ')' before options in the CREATE TABLE */ u8 tabOpts, /* Extra table options. Usually 0. */ Select *pSelect /* Select from a "CREATE ... AS SELECT" */ ){ Table *p; /* The new table */ sqlite3 *db = pParse->db; /* The database connection */ int iDb; /* Database in which the table lives */ Index *pIdx; /* An implied index of the table */ if( pEnd==0 && pSelect==0 ){ return; } assert( !db->mallocFailed ); p = pParse->pNewTable; if( p==0 ) return; if( pSelect==0 && sqlite3ShadowTableName(db, p->zName) ){ p->tabFlags |= TF_Shadow; } /* If the db->init.busy is 1 it means we are reading the SQL off the ** "sqlite_schema" or "sqlite_temp_schema" table on the disk. ** So do not write to the disk again. Extract the root page number ** for the table from the db->init.newTnum field. (The page number ** should have been put there by the sqliteOpenCb routine.) ** ** If the root page number is 1, that means this is the sqlite_schema ** table itself. So mark it read-only. */ if( db->init.busy ){ if( pSelect ){ sqlite3ErrorMsg(pParse, ""); return; } p->tnum = db->init.newTnum; if( p->tnum==1 ) p->tabFlags |= TF_Readonly; } assert( (p->tabFlags & TF_HasPrimaryKey)==0 || p->iPKey>=0 || sqlite3PrimaryKeyIndex(p)!=0 ); assert( (p->tabFlags & TF_HasPrimaryKey)!=0 || (p->iPKey<0 && sqlite3PrimaryKeyIndex(p)==0) ); /* Special processing for WITHOUT ROWID Tables */ if( tabOpts & TF_WithoutRowid ){ if( (p->tabFlags & TF_Autoincrement) ){ sqlite3ErrorMsg(pParse, "AUTOINCREMENT not allowed on WITHOUT ROWID tables"); return; } if( (p->tabFlags & TF_HasPrimaryKey)==0 ){ sqlite3ErrorMsg(pParse, "PRIMARY KEY missing on table %s", p->zName); return; } p->tabFlags |= TF_WithoutRowid | TF_NoVisibleRowid; convertToWithoutRowidTable(pParse, p); } iDb = sqlite3SchemaToIndex(db, p->pSchema); #ifndef SQLITE_OMIT_CHECK /* Resolve names in all CHECK constraint expressions. */ if( p->pCheck ){ sqlite3ResolveSelfReference(pParse, p, NC_IsCheck, 0, p->pCheck); if( pParse->nErr ){ /* If errors are seen, delete the CHECK constraints now, else they might ** actually be used if PRAGMA writable_schema=ON is set. */ sqlite3ExprListDelete(db, p->pCheck); p->pCheck = 0; }else{ markExprListImmutable(p->pCheck); } } #endif /* !defined(SQLITE_OMIT_CHECK) */ #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( p->tabFlags & TF_HasGenerated ){ int ii, nNG = 0; testcase( p->tabFlags & TF_HasVirtual ); testcase( p->tabFlags & TF_HasStored ); for(ii=0; iinCol; ii++){ u32 colFlags = p->aCol[ii].colFlags; if( (colFlags & COLFLAG_GENERATED)!=0 ){ Expr *pX = p->aCol[ii].pDflt; testcase( colFlags & COLFLAG_VIRTUAL ); testcase( colFlags & COLFLAG_STORED ); if( sqlite3ResolveSelfReference(pParse, p, NC_GenCol, pX, 0) ){ /* If there are errors in resolving the expression, change the ** expression to a NULL. This prevents code generators that operate ** on the expression from inserting extra parts into the expression ** tree that have been allocated from lookaside memory, which is ** illegal in a schema and will lead to errors or heap corruption ** when the database connection closes. */ sqlite3ExprDelete(db, pX); p->aCol[ii].pDflt = sqlite3ExprAlloc(db, TK_NULL, 0, 0); } }else{ nNG++; } } if( nNG==0 ){ sqlite3ErrorMsg(pParse, "must have at least one non-generated column"); return; } } #endif /* Estimate the average row size for the table and for all implied indices */ estimateTableWidth(p); for(pIdx=p->pIndex; pIdx; pIdx=pIdx->pNext){ estimateIndexWidth(pIdx); } /* If not initializing, then create a record for the new table ** in the schema table of the database. ** ** If this is a TEMPORARY table, write the entry into the auxiliary ** file instead of into the main database file. */ if( !db->init.busy ){ int n; Vdbe *v; char *zType; /* "view" or "table" */ char *zType2; /* "VIEW" or "TABLE" */ char *zStmt; /* Text of the CREATE TABLE or CREATE VIEW statement */ v = sqlite3GetVdbe(pParse); if( NEVER(v==0) ) return; sqlite3VdbeAddOp1(v, OP_Close, 0); /* ** Initialize zType for the new view or table. */ if( p->pSelect==0 ){ /* A regular table */ zType = "table"; zType2 = "TABLE"; #ifndef SQLITE_OMIT_VIEW }else{ /* A view */ zType = "view"; zType2 = "VIEW"; #endif } /* If this is a CREATE TABLE xx AS SELECT ..., execute the SELECT ** statement to populate the new table. The root-page number for the ** new table is in register pParse->regRoot. ** ** Once the SELECT has been coded by sqlite3Select(), it is in a ** suitable state to query for the column names and types to be used ** by the new table. ** ** A shared-cache write-lock is not required to write to the new table, ** as a schema-lock must have already been obtained to create it. Since ** a schema-lock excludes all other database users, the write-lock would ** be redundant. */ if( pSelect ){ SelectDest dest; /* Where the SELECT should store results */ int regYield; /* Register holding co-routine entry-point */ int addrTop; /* Top of the co-routine */ int regRec; /* A record to be insert into the new table */ int regRowid; /* Rowid of the next row to insert */ int addrInsLoop; /* Top of the loop for inserting rows */ Table *pSelTab; /* A table that describes the SELECT results */ regYield = ++pParse->nMem; regRec = ++pParse->nMem; regRowid = ++pParse->nMem; assert(pParse->nTab==1); sqlite3MayAbort(pParse); sqlite3VdbeAddOp3(v, OP_OpenWrite, 1, pParse->regRoot, iDb); sqlite3VdbeChangeP5(v, OPFLAG_P2ISREG); pParse->nTab = 2; addrTop = sqlite3VdbeCurrentAddr(v) + 1; sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, addrTop); if( pParse->nErr ) return; pSelTab = sqlite3ResultSetOfSelect(pParse, pSelect, SQLITE_AFF_BLOB); if( pSelTab==0 ) return; assert( p->aCol==0 ); p->nCol = p->nNVCol = pSelTab->nCol; p->aCol = pSelTab->aCol; pSelTab->nCol = 0; pSelTab->aCol = 0; sqlite3DeleteTable(db, pSelTab); sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield); sqlite3Select(pParse, pSelect, &dest); if( pParse->nErr ) return; sqlite3VdbeEndCoroutine(v, regYield); sqlite3VdbeJumpHere(v, addrTop - 1); addrInsLoop = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_MakeRecord, dest.iSdst, dest.nSdst, regRec); sqlite3TableAffinity(v, p, 0); sqlite3VdbeAddOp2(v, OP_NewRowid, 1, regRowid); sqlite3VdbeAddOp3(v, OP_Insert, 1, regRec, regRowid); sqlite3VdbeGoto(v, addrInsLoop); sqlite3VdbeJumpHere(v, addrInsLoop); sqlite3VdbeAddOp1(v, OP_Close, 1); } /* Compute the complete text of the CREATE statement */ if( pSelect ){ zStmt = createTableStmt(db, p); }else{ Token *pEnd2 = tabOpts ? &pParse->sLastToken : pEnd; n = (int)(pEnd2->z - pParse->sNameToken.z); if( pEnd2->z[0]!=';' ) n += pEnd2->n; zStmt = sqlite3MPrintf(db, "CREATE %s %.*s", zType2, n, pParse->sNameToken.z ); } /* A slot for the record has already been allocated in the ** schema table. We just need to update that slot with all ** the information we've collected. */ sqlite3NestedParse(pParse, "UPDATE %Q." DFLT_SCHEMA_TABLE " SET type='%s', name=%Q, tbl_name=%Q, rootpage=#%d, sql=%Q" " WHERE rowid=#%d", db->aDb[iDb].zDbSName, zType, p->zName, p->zName, pParse->regRoot, zStmt, pParse->regRowid ); sqlite3DbFree(db, zStmt); sqlite3ChangeCookie(pParse, iDb); #ifndef SQLITE_OMIT_AUTOINCREMENT /* Check to see if we need to create an sqlite_sequence table for ** keeping track of autoincrement keys. */ if( (p->tabFlags & TF_Autoincrement)!=0 ){ Db *pDb = &db->aDb[iDb]; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( pDb->pSchema->pSeqTab==0 ){ sqlite3NestedParse(pParse, "CREATE TABLE %Q.sqlite_sequence(name,seq)", pDb->zDbSName ); } } #endif /* Reparse everything to update our internal data structures */ sqlite3VdbeAddParseSchemaOp(v, iDb, sqlite3MPrintf(db, "tbl_name='%q' AND type!='trigger'", p->zName)); } /* Add the table to the in-memory representation of the database. */ if( db->init.busy ){ Table *pOld; Schema *pSchema = p->pSchema; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); pOld = sqlite3HashInsert(&pSchema->tblHash, p->zName, p); if( pOld ){ assert( p==pOld ); /* Malloc must have failed inside HashInsert() */ sqlite3OomFault(db); return; } pParse->pNewTable = 0; db->mDbFlags |= DBFLAG_SchemaChange; #ifndef SQLITE_OMIT_ALTERTABLE if( !p->pSelect ){ const char *zName = (const char *)pParse->sNameToken.z; int nName; assert( !pSelect && pCons && pEnd ); if( pCons->z==0 ){ pCons = pEnd; } nName = (int)((const char *)pCons->z - zName); p->addColOffset = 13 + sqlite3Utf8CharLen(zName, nName); } #endif } } #ifndef SQLITE_OMIT_VIEW /* ** The parser calls this routine in order to create a new VIEW */ SQLITE_PRIVATE void sqlite3CreateView( Parse *pParse, /* The parsing context */ Token *pBegin, /* The CREATE token that begins the statement */ Token *pName1, /* The token that holds the name of the view */ Token *pName2, /* The token that holds the name of the view */ ExprList *pCNames, /* Optional list of view column names */ Select *pSelect, /* A SELECT statement that will become the new view */ int isTemp, /* TRUE for a TEMPORARY view */ int noErr /* Suppress error messages if VIEW already exists */ ){ Table *p; int n; const char *z; Token sEnd; DbFixer sFix; Token *pName = 0; int iDb; sqlite3 *db = pParse->db; if( pParse->nVar>0 ){ sqlite3ErrorMsg(pParse, "parameters are not allowed in views"); goto create_view_fail; } sqlite3StartTable(pParse, pName1, pName2, isTemp, 1, 0, noErr); p = pParse->pNewTable; if( p==0 || pParse->nErr ) goto create_view_fail; sqlite3TwoPartName(pParse, pName1, pName2, &pName); iDb = sqlite3SchemaToIndex(db, p->pSchema); sqlite3FixInit(&sFix, pParse, iDb, "view", pName); if( sqlite3FixSelect(&sFix, pSelect) ) goto create_view_fail; /* Make a copy of the entire SELECT statement that defines the view. ** This will force all the Expr.token.z values to be dynamically ** allocated rather than point to the input string - which means that ** they will persist after the current sqlite3_exec() call returns. */ pSelect->selFlags |= SF_View; if( IN_RENAME_OBJECT ){ p->pSelect = pSelect; pSelect = 0; }else{ p->pSelect = sqlite3SelectDup(db, pSelect, EXPRDUP_REDUCE); } p->pCheck = sqlite3ExprListDup(db, pCNames, EXPRDUP_REDUCE); if( db->mallocFailed ) goto create_view_fail; /* Locate the end of the CREATE VIEW statement. Make sEnd point to ** the end. */ sEnd = pParse->sLastToken; assert( sEnd.z[0]!=0 || sEnd.n==0 ); if( sEnd.z[0]!=';' ){ sEnd.z += sEnd.n; } sEnd.n = 0; n = (int)(sEnd.z - pBegin->z); assert( n>0 ); z = pBegin->z; while( sqlite3Isspace(z[n-1]) ){ n--; } sEnd.z = &z[n-1]; sEnd.n = 1; /* Use sqlite3EndTable() to add the view to the schema table */ sqlite3EndTable(pParse, 0, &sEnd, 0, 0); create_view_fail: sqlite3SelectDelete(db, pSelect); if( IN_RENAME_OBJECT ){ sqlite3RenameExprlistUnmap(pParse, pCNames); } sqlite3ExprListDelete(db, pCNames); return; } #endif /* SQLITE_OMIT_VIEW */ #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) /* ** The Table structure pTable is really a VIEW. Fill in the names of ** the columns of the view in the pTable structure. Return the number ** of errors. If an error is seen leave an error message in pParse->zErrMsg. */ SQLITE_PRIVATE int sqlite3ViewGetColumnNames(Parse *pParse, Table *pTable){ Table *pSelTab; /* A fake table from which we get the result set */ Select *pSel; /* Copy of the SELECT that implements the view */ int nErr = 0; /* Number of errors encountered */ int n; /* Temporarily holds the number of cursors assigned */ sqlite3 *db = pParse->db; /* Database connection for malloc errors */ #ifndef SQLITE_OMIT_VIRTUALTABLE int rc; #endif #ifndef SQLITE_OMIT_AUTHORIZATION sqlite3_xauth xAuth; /* Saved xAuth pointer */ #endif assert( pTable ); #ifndef SQLITE_OMIT_VIRTUALTABLE db->nSchemaLock++; rc = sqlite3VtabCallConnect(pParse, pTable); db->nSchemaLock--; if( rc ){ return 1; } if( IsVirtual(pTable) ) return 0; #endif #ifndef SQLITE_OMIT_VIEW /* A positive nCol means the columns names for this view are ** already known. */ if( pTable->nCol>0 ) return 0; /* A negative nCol is a special marker meaning that we are currently ** trying to compute the column names. If we enter this routine with ** a negative nCol, it means two or more views form a loop, like this: ** ** CREATE VIEW one AS SELECT * FROM two; ** CREATE VIEW two AS SELECT * FROM one; ** ** Actually, the error above is now caught prior to reaching this point. ** But the following test is still important as it does come up ** in the following: ** ** CREATE TABLE main.ex1(a); ** CREATE TEMP VIEW ex1 AS SELECT a FROM ex1; ** SELECT * FROM temp.ex1; */ if( pTable->nCol<0 ){ sqlite3ErrorMsg(pParse, "view %s is circularly defined", pTable->zName); return 1; } assert( pTable->nCol>=0 ); /* If we get this far, it means we need to compute the table names. ** Note that the call to sqlite3ResultSetOfSelect() will expand any ** "*" elements in the results set of the view and will assign cursors ** to the elements of the FROM clause. But we do not want these changes ** to be permanent. So the computation is done on a copy of the SELECT ** statement that defines the view. */ assert( pTable->pSelect ); pSel = sqlite3SelectDup(db, pTable->pSelect, 0); if( pSel ){ u8 eParseMode = pParse->eParseMode; pParse->eParseMode = PARSE_MODE_NORMAL; n = pParse->nTab; sqlite3SrcListAssignCursors(pParse, pSel->pSrc); pTable->nCol = -1; DisableLookaside; #ifndef SQLITE_OMIT_AUTHORIZATION xAuth = db->xAuth; db->xAuth = 0; pSelTab = sqlite3ResultSetOfSelect(pParse, pSel, SQLITE_AFF_NONE); db->xAuth = xAuth; #else pSelTab = sqlite3ResultSetOfSelect(pParse, pSel, SQLITE_AFF_NONE); #endif pParse->nTab = n; if( pSelTab==0 ){ pTable->nCol = 0; nErr++; }else if( pTable->pCheck ){ /* CREATE VIEW name(arglist) AS ... ** The names of the columns in the table are taken from ** arglist which is stored in pTable->pCheck. The pCheck field ** normally holds CHECK constraints on an ordinary table, but for ** a VIEW it holds the list of column names. */ sqlite3ColumnsFromExprList(pParse, pTable->pCheck, &pTable->nCol, &pTable->aCol); if( db->mallocFailed==0 && pParse->nErr==0 && pTable->nCol==pSel->pEList->nExpr ){ sqlite3SelectAddColumnTypeAndCollation(pParse, pTable, pSel, SQLITE_AFF_NONE); } }else{ /* CREATE VIEW name AS... without an argument list. Construct ** the column names from the SELECT statement that defines the view. */ assert( pTable->aCol==0 ); pTable->nCol = pSelTab->nCol; pTable->aCol = pSelTab->aCol; pSelTab->nCol = 0; pSelTab->aCol = 0; assert( sqlite3SchemaMutexHeld(db, 0, pTable->pSchema) ); } pTable->nNVCol = pTable->nCol; sqlite3DeleteTable(db, pSelTab); sqlite3SelectDelete(db, pSel); EnableLookaside; pParse->eParseMode = eParseMode; } else { nErr++; } pTable->pSchema->schemaFlags |= DB_UnresetViews; if( db->mallocFailed ){ sqlite3DeleteColumnNames(db, pTable); pTable->aCol = 0; pTable->nCol = 0; } #endif /* SQLITE_OMIT_VIEW */ return nErr; } #endif /* !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) */ #ifndef SQLITE_OMIT_VIEW /* ** Clear the column names from every VIEW in database idx. */ static void sqliteViewResetAll(sqlite3 *db, int idx){ HashElem *i; assert( sqlite3SchemaMutexHeld(db, idx, 0) ); if( !DbHasProperty(db, idx, DB_UnresetViews) ) return; for(i=sqliteHashFirst(&db->aDb[idx].pSchema->tblHash); i;i=sqliteHashNext(i)){ Table *pTab = sqliteHashData(i); if( pTab->pSelect ){ sqlite3DeleteColumnNames(db, pTab); pTab->aCol = 0; pTab->nCol = 0; } } DbClearProperty(db, idx, DB_UnresetViews); } #else # define sqliteViewResetAll(A,B) #endif /* SQLITE_OMIT_VIEW */ /* ** This function is called by the VDBE to adjust the internal schema ** used by SQLite when the btree layer moves a table root page. The ** root-page of a table or index in database iDb has changed from iFrom ** to iTo. ** ** Ticket #1728: The symbol table might still contain information ** on tables and/or indices that are the process of being deleted. ** If you are unlucky, one of those deleted indices or tables might ** have the same rootpage number as the real table or index that is ** being moved. So we cannot stop searching after the first match ** because the first match might be for one of the deleted indices ** or tables and not the table/index that is actually being moved. ** We must continue looping until all tables and indices with ** rootpage==iFrom have been converted to have a rootpage of iTo ** in order to be certain that we got the right one. */ #ifndef SQLITE_OMIT_AUTOVACUUM SQLITE_PRIVATE void sqlite3RootPageMoved(sqlite3 *db, int iDb, Pgno iFrom, Pgno iTo){ HashElem *pElem; Hash *pHash; Db *pDb; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); pDb = &db->aDb[iDb]; pHash = &pDb->pSchema->tblHash; for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){ Table *pTab = sqliteHashData(pElem); if( pTab->tnum==iFrom ){ pTab->tnum = iTo; } } pHash = &pDb->pSchema->idxHash; for(pElem=sqliteHashFirst(pHash); pElem; pElem=sqliteHashNext(pElem)){ Index *pIdx = sqliteHashData(pElem); if( pIdx->tnum==iFrom ){ pIdx->tnum = iTo; } } } #endif /* ** Write code to erase the table with root-page iTable from database iDb. ** Also write code to modify the sqlite_schema table and internal schema ** if a root-page of another table is moved by the btree-layer whilst ** erasing iTable (this can happen with an auto-vacuum database). */ static void destroyRootPage(Parse *pParse, int iTable, int iDb){ Vdbe *v = sqlite3GetVdbe(pParse); int r1 = sqlite3GetTempReg(pParse); if( iTable<2 ) sqlite3ErrorMsg(pParse, "corrupt schema"); sqlite3VdbeAddOp3(v, OP_Destroy, iTable, r1, iDb); sqlite3MayAbort(pParse); #ifndef SQLITE_OMIT_AUTOVACUUM /* OP_Destroy stores an in integer r1. If this integer ** is non-zero, then it is the root page number of a table moved to ** location iTable. The following code modifies the sqlite_schema table to ** reflect this. ** ** The "#NNN" in the SQL is a special constant that means whatever value ** is in register NNN. See grammar rules associated with the TK_REGISTER ** token for additional information. */ sqlite3NestedParse(pParse, "UPDATE %Q." DFLT_SCHEMA_TABLE " SET rootpage=%d WHERE #%d AND rootpage=#%d", pParse->db->aDb[iDb].zDbSName, iTable, r1, r1); #endif sqlite3ReleaseTempReg(pParse, r1); } /* ** Write VDBE code to erase table pTab and all associated indices on disk. ** Code to update the sqlite_schema tables and internal schema definitions ** in case a root-page belonging to another table is moved by the btree layer ** is also added (this can happen with an auto-vacuum database). */ static void destroyTable(Parse *pParse, Table *pTab){ /* If the database may be auto-vacuum capable (if SQLITE_OMIT_AUTOVACUUM ** is not defined), then it is important to call OP_Destroy on the ** table and index root-pages in order, starting with the numerically ** largest root-page number. This guarantees that none of the root-pages ** to be destroyed is relocated by an earlier OP_Destroy. i.e. if the ** following were coded: ** ** OP_Destroy 4 0 ** ... ** OP_Destroy 5 0 ** ** and root page 5 happened to be the largest root-page number in the ** database, then root page 5 would be moved to page 4 by the ** "OP_Destroy 4 0" opcode. The subsequent "OP_Destroy 5 0" would hit ** a free-list page. */ Pgno iTab = pTab->tnum; Pgno iDestroyed = 0; while( 1 ){ Index *pIdx; Pgno iLargest = 0; if( iDestroyed==0 || iTabpIndex; pIdx; pIdx=pIdx->pNext){ Pgno iIdx = pIdx->tnum; assert( pIdx->pSchema==pTab->pSchema ); if( (iDestroyed==0 || (iIdxiLargest ){ iLargest = iIdx; } } if( iLargest==0 ){ return; }else{ int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); assert( iDb>=0 && iDbdb->nDb ); destroyRootPage(pParse, iLargest, iDb); iDestroyed = iLargest; } } } /* ** Remove entries from the sqlite_statN tables (for N in (1,2,3)) ** after a DROP INDEX or DROP TABLE command. */ static void sqlite3ClearStatTables( Parse *pParse, /* The parsing context */ int iDb, /* The database number */ const char *zType, /* "idx" or "tbl" */ const char *zName /* Name of index or table */ ){ int i; const char *zDbName = pParse->db->aDb[iDb].zDbSName; for(i=1; i<=4; i++){ char zTab[24]; sqlite3_snprintf(sizeof(zTab),zTab,"sqlite_stat%d",i); if( sqlite3FindTable(pParse->db, zTab, zDbName) ){ sqlite3NestedParse(pParse, "DELETE FROM %Q.%s WHERE %s=%Q", zDbName, zTab, zType, zName ); } } } /* ** Generate code to drop a table. */ SQLITE_PRIVATE void sqlite3CodeDropTable(Parse *pParse, Table *pTab, int iDb, int isView){ Vdbe *v; sqlite3 *db = pParse->db; Trigger *pTrigger; Db *pDb = &db->aDb[iDb]; v = sqlite3GetVdbe(pParse); assert( v!=0 ); sqlite3BeginWriteOperation(pParse, 1, iDb); #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ sqlite3VdbeAddOp0(v, OP_VBegin); } #endif /* Drop all triggers associated with the table being dropped. Code ** is generated to remove entries from sqlite_schema and/or ** sqlite_temp_schema if required. */ pTrigger = sqlite3TriggerList(pParse, pTab); while( pTrigger ){ assert( pTrigger->pSchema==pTab->pSchema || pTrigger->pSchema==db->aDb[1].pSchema ); sqlite3DropTriggerPtr(pParse, pTrigger); pTrigger = pTrigger->pNext; } #ifndef SQLITE_OMIT_AUTOINCREMENT /* Remove any entries of the sqlite_sequence table associated with ** the table being dropped. This is done before the table is dropped ** at the btree level, in case the sqlite_sequence table needs to ** move as a result of the drop (can happen in auto-vacuum mode). */ if( pTab->tabFlags & TF_Autoincrement ){ sqlite3NestedParse(pParse, "DELETE FROM %Q.sqlite_sequence WHERE name=%Q", pDb->zDbSName, pTab->zName ); } #endif /* Drop all entries in the schema table that refer to the ** table. The program name loops through the schema table and deletes ** every row that refers to a table of the same name as the one being ** dropped. Triggers are handled separately because a trigger can be ** created in the temp database that refers to a table in another ** database. */ sqlite3NestedParse(pParse, "DELETE FROM %Q." DFLT_SCHEMA_TABLE " WHERE tbl_name=%Q and type!='trigger'", pDb->zDbSName, pTab->zName); if( !isView && !IsVirtual(pTab) ){ destroyTable(pParse, pTab); } /* Remove the table entry from SQLite's internal schema and modify ** the schema cookie. */ if( IsVirtual(pTab) ){ sqlite3VdbeAddOp4(v, OP_VDestroy, iDb, 0, 0, pTab->zName, 0); sqlite3MayAbort(pParse); } sqlite3VdbeAddOp4(v, OP_DropTable, iDb, 0, 0, pTab->zName, 0); sqlite3ChangeCookie(pParse, iDb); sqliteViewResetAll(db, iDb); } /* ** Return TRUE if shadow tables should be read-only in the current ** context. */ SQLITE_PRIVATE int sqlite3ReadOnlyShadowTables(sqlite3 *db){ #ifndef SQLITE_OMIT_VIRTUALTABLE if( (db->flags & SQLITE_Defensive)!=0 && db->pVtabCtx==0 && db->nVdbeExec==0 ){ return 1; } #endif return 0; } /* ** Return true if it is not allowed to drop the given table */ static int tableMayNotBeDropped(sqlite3 *db, Table *pTab){ if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 ){ if( sqlite3StrNICmp(pTab->zName+7, "stat", 4)==0 ) return 0; if( sqlite3StrNICmp(pTab->zName+7, "parameters", 10)==0 ) return 0; return 1; } if( (pTab->tabFlags & TF_Shadow)!=0 && sqlite3ReadOnlyShadowTables(db) ){ return 1; } return 0; } /* ** This routine is called to do the work of a DROP TABLE statement. ** pName is the name of the table to be dropped. */ SQLITE_PRIVATE void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){ Table *pTab; Vdbe *v; sqlite3 *db = pParse->db; int iDb; if( db->mallocFailed ){ goto exit_drop_table; } assert( pParse->nErr==0 ); assert( pName->nSrc==1 ); if( sqlite3ReadSchema(pParse) ) goto exit_drop_table; if( noErr ) db->suppressErr++; assert( isView==0 || isView==LOCATE_VIEW ); pTab = sqlite3LocateTableItem(pParse, isView, &pName->a[0]); if( noErr ) db->suppressErr--; if( pTab==0 ){ if( noErr ) sqlite3CodeVerifyNamedSchema(pParse, pName->a[0].zDatabase); goto exit_drop_table; } iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDb>=0 && iDbnDb ); /* If pTab is a virtual table, call ViewGetColumnNames() to ensure ** it is initialized. */ if( IsVirtual(pTab) && sqlite3ViewGetColumnNames(pParse, pTab) ){ goto exit_drop_table; } #ifndef SQLITE_OMIT_AUTHORIZATION { int code; const char *zTab = SCHEMA_TABLE(iDb); const char *zDb = db->aDb[iDb].zDbSName; const char *zArg2 = 0; if( sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb)){ goto exit_drop_table; } if( isView ){ if( !OMIT_TEMPDB && iDb==1 ){ code = SQLITE_DROP_TEMP_VIEW; }else{ code = SQLITE_DROP_VIEW; } #ifndef SQLITE_OMIT_VIRTUALTABLE }else if( IsVirtual(pTab) ){ code = SQLITE_DROP_VTABLE; zArg2 = sqlite3GetVTable(db, pTab)->pMod->zName; #endif }else{ if( !OMIT_TEMPDB && iDb==1 ){ code = SQLITE_DROP_TEMP_TABLE; }else{ code = SQLITE_DROP_TABLE; } } if( sqlite3AuthCheck(pParse, code, pTab->zName, zArg2, zDb) ){ goto exit_drop_table; } if( sqlite3AuthCheck(pParse, SQLITE_DELETE, pTab->zName, 0, zDb) ){ goto exit_drop_table; } } #endif if( tableMayNotBeDropped(db, pTab) ){ sqlite3ErrorMsg(pParse, "table %s may not be dropped", pTab->zName); goto exit_drop_table; } #ifndef SQLITE_OMIT_VIEW /* Ensure DROP TABLE is not used on a view, and DROP VIEW is not used ** on a table. */ if( isView && pTab->pSelect==0 ){ sqlite3ErrorMsg(pParse, "use DROP TABLE to delete table %s", pTab->zName); goto exit_drop_table; } if( !isView && pTab->pSelect ){ sqlite3ErrorMsg(pParse, "use DROP VIEW to delete view %s", pTab->zName); goto exit_drop_table; } #endif /* Generate code to remove the table from the schema table ** on disk. */ v = sqlite3GetVdbe(pParse); if( v ){ sqlite3BeginWriteOperation(pParse, 1, iDb); if( !isView ){ sqlite3ClearStatTables(pParse, iDb, "tbl", pTab->zName); sqlite3FkDropTable(pParse, pName, pTab); } sqlite3CodeDropTable(pParse, pTab, iDb, isView); } exit_drop_table: sqlite3SrcListDelete(db, pName); } /* ** This routine is called to create a new foreign key on the table ** currently under construction. pFromCol determines which columns ** in the current table point to the foreign key. If pFromCol==0 then ** connect the key to the last column inserted. pTo is the name of ** the table referred to (a.k.a the "parent" table). pToCol is a list ** of tables in the parent pTo table. flags contains all ** information about the conflict resolution algorithms specified ** in the ON DELETE, ON UPDATE and ON INSERT clauses. ** ** An FKey structure is created and added to the table currently ** under construction in the pParse->pNewTable field. ** ** The foreign key is set for IMMEDIATE processing. A subsequent call ** to sqlite3DeferForeignKey() might change this to DEFERRED. */ SQLITE_PRIVATE void sqlite3CreateForeignKey( Parse *pParse, /* Parsing context */ ExprList *pFromCol, /* Columns in this table that point to other table */ Token *pTo, /* Name of the other table */ ExprList *pToCol, /* Columns in the other table */ int flags /* Conflict resolution algorithms. */ ){ sqlite3 *db = pParse->db; #ifndef SQLITE_OMIT_FOREIGN_KEY FKey *pFKey = 0; FKey *pNextTo; Table *p = pParse->pNewTable; int nByte; int i; int nCol; char *z; assert( pTo!=0 ); if( p==0 || IN_DECLARE_VTAB ) goto fk_end; if( pFromCol==0 ){ int iCol = p->nCol-1; if( NEVER(iCol<0) ) goto fk_end; if( pToCol && pToCol->nExpr!=1 ){ sqlite3ErrorMsg(pParse, "foreign key on %s" " should reference only one column of table %T", p->aCol[iCol].zName, pTo); goto fk_end; } nCol = 1; }else if( pToCol && pToCol->nExpr!=pFromCol->nExpr ){ sqlite3ErrorMsg(pParse, "number of columns in foreign key does not match the number of " "columns in the referenced table"); goto fk_end; }else{ nCol = pFromCol->nExpr; } nByte = sizeof(*pFKey) + (nCol-1)*sizeof(pFKey->aCol[0]) + pTo->n + 1; if( pToCol ){ for(i=0; inExpr; i++){ nByte += sqlite3Strlen30(pToCol->a[i].zEName) + 1; } } pFKey = sqlite3DbMallocZero(db, nByte ); if( pFKey==0 ){ goto fk_end; } pFKey->pFrom = p; pFKey->pNextFrom = p->pFKey; z = (char*)&pFKey->aCol[nCol]; pFKey->zTo = z; if( IN_RENAME_OBJECT ){ sqlite3RenameTokenMap(pParse, (void*)z, pTo); } memcpy(z, pTo->z, pTo->n); z[pTo->n] = 0; sqlite3Dequote(z); z += pTo->n+1; pFKey->nCol = nCol; if( pFromCol==0 ){ pFKey->aCol[0].iFrom = p->nCol-1; }else{ for(i=0; inCol; j++){ if( sqlite3StrICmp(p->aCol[j].zName, pFromCol->a[i].zEName)==0 ){ pFKey->aCol[i].iFrom = j; break; } } if( j>=p->nCol ){ sqlite3ErrorMsg(pParse, "unknown column \"%s\" in foreign key definition", pFromCol->a[i].zEName); goto fk_end; } if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, &pFKey->aCol[i], pFromCol->a[i].zEName); } } } if( pToCol ){ for(i=0; ia[i].zEName); pFKey->aCol[i].zCol = z; if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, z, pToCol->a[i].zEName); } memcpy(z, pToCol->a[i].zEName, n); z[n] = 0; z += n+1; } } pFKey->isDeferred = 0; pFKey->aAction[0] = (u8)(flags & 0xff); /* ON DELETE action */ pFKey->aAction[1] = (u8)((flags >> 8 ) & 0xff); /* ON UPDATE action */ assert( sqlite3SchemaMutexHeld(db, 0, p->pSchema) ); pNextTo = (FKey *)sqlite3HashInsert(&p->pSchema->fkeyHash, pFKey->zTo, (void *)pFKey ); if( pNextTo==pFKey ){ sqlite3OomFault(db); goto fk_end; } if( pNextTo ){ assert( pNextTo->pPrevTo==0 ); pFKey->pNextTo = pNextTo; pNextTo->pPrevTo = pFKey; } /* Link the foreign key to the table as the last step. */ p->pFKey = pFKey; pFKey = 0; fk_end: sqlite3DbFree(db, pFKey); #endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */ sqlite3ExprListDelete(db, pFromCol); sqlite3ExprListDelete(db, pToCol); } /* ** This routine is called when an INITIALLY IMMEDIATE or INITIALLY DEFERRED ** clause is seen as part of a foreign key definition. The isDeferred ** parameter is 1 for INITIALLY DEFERRED and 0 for INITIALLY IMMEDIATE. ** The behavior of the most recently created foreign key is adjusted ** accordingly. */ SQLITE_PRIVATE void sqlite3DeferForeignKey(Parse *pParse, int isDeferred){ #ifndef SQLITE_OMIT_FOREIGN_KEY Table *pTab; FKey *pFKey; if( (pTab = pParse->pNewTable)==0 || (pFKey = pTab->pFKey)==0 ) return; assert( isDeferred==0 || isDeferred==1 ); /* EV: R-30323-21917 */ pFKey->isDeferred = (u8)isDeferred; #endif } /* ** Generate code that will erase and refill index *pIdx. This is ** used to initialize a newly created index or to recompute the ** content of an index in response to a REINDEX command. ** ** if memRootPage is not negative, it means that the index is newly ** created. The register specified by memRootPage contains the ** root page number of the index. If memRootPage is negative, then ** the index already exists and must be cleared before being refilled and ** the root page number of the index is taken from pIndex->tnum. */ static void sqlite3RefillIndex(Parse *pParse, Index *pIndex, int memRootPage){ Table *pTab = pIndex->pTable; /* The table that is indexed */ int iTab = pParse->nTab++; /* Btree cursor used for pTab */ int iIdx = pParse->nTab++; /* Btree cursor used for pIndex */ int iSorter; /* Cursor opened by OpenSorter (if in use) */ int addr1; /* Address of top of loop */ int addr2; /* Address to jump to for next iteration */ Pgno tnum; /* Root page of index */ int iPartIdxLabel; /* Jump to this label to skip a row */ Vdbe *v; /* Generate code into this virtual machine */ KeyInfo *pKey; /* KeyInfo for index */ int regRecord; /* Register holding assembled index record */ sqlite3 *db = pParse->db; /* The database connection */ int iDb = sqlite3SchemaToIndex(db, pIndex->pSchema); #ifndef SQLITE_OMIT_AUTHORIZATION if( sqlite3AuthCheck(pParse, SQLITE_REINDEX, pIndex->zName, 0, db->aDb[iDb].zDbSName ) ){ return; } #endif /* Require a write-lock on the table to perform this operation */ sqlite3TableLock(pParse, iDb, pTab->tnum, 1, pTab->zName); v = sqlite3GetVdbe(pParse); if( v==0 ) return; if( memRootPage>=0 ){ tnum = (Pgno)memRootPage; }else{ tnum = pIndex->tnum; } pKey = sqlite3KeyInfoOfIndex(pParse, pIndex); assert( pKey!=0 || db->mallocFailed || pParse->nErr ); /* Open the sorter cursor if we are to use one. */ iSorter = pParse->nTab++; sqlite3VdbeAddOp4(v, OP_SorterOpen, iSorter, 0, pIndex->nKeyCol, (char*) sqlite3KeyInfoRef(pKey), P4_KEYINFO); /* Open the table. Loop through all rows of the table, inserting index ** records into the sorter. */ sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iTab, 0); VdbeCoverage(v); regRecord = sqlite3GetTempReg(pParse); sqlite3MultiWrite(pParse); sqlite3GenerateIndexKey(pParse,pIndex,iTab,regRecord,0,&iPartIdxLabel,0,0); sqlite3VdbeAddOp2(v, OP_SorterInsert, iSorter, regRecord); sqlite3ResolvePartIdxLabel(pParse, iPartIdxLabel); sqlite3VdbeAddOp2(v, OP_Next, iTab, addr1+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr1); if( memRootPage<0 ) sqlite3VdbeAddOp2(v, OP_Clear, tnum, iDb); sqlite3VdbeAddOp4(v, OP_OpenWrite, iIdx, (int)tnum, iDb, (char *)pKey, P4_KEYINFO); sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR|((memRootPage>=0)?OPFLAG_P2ISREG:0)); addr1 = sqlite3VdbeAddOp2(v, OP_SorterSort, iSorter, 0); VdbeCoverage(v); if( IsUniqueIndex(pIndex) ){ int j2 = sqlite3VdbeGoto(v, 1); addr2 = sqlite3VdbeCurrentAddr(v); sqlite3VdbeVerifyAbortable(v, OE_Abort); sqlite3VdbeAddOp4Int(v, OP_SorterCompare, iSorter, j2, regRecord, pIndex->nKeyCol); VdbeCoverage(v); sqlite3UniqueConstraint(pParse, OE_Abort, pIndex); sqlite3VdbeJumpHere(v, j2); }else{ /* Most CREATE INDEX and REINDEX statements that are not UNIQUE can not ** abort. The exception is if one of the indexed expressions contains a ** user function that throws an exception when it is evaluated. But the ** overhead of adding a statement journal to a CREATE INDEX statement is ** very small (since most of the pages written do not contain content that ** needs to be restored if the statement aborts), so we call ** sqlite3MayAbort() for all CREATE INDEX statements. */ sqlite3MayAbort(pParse); addr2 = sqlite3VdbeCurrentAddr(v); } sqlite3VdbeAddOp3(v, OP_SorterData, iSorter, regRecord, iIdx); if( !pIndex->bAscKeyBug ){ /* This OP_SeekEnd opcode makes index insert for a REINDEX go much ** faster by avoiding unnecessary seeks. But the optimization does ** not work for UNIQUE constraint indexes on WITHOUT ROWID tables ** with DESC primary keys, since those indexes have there keys in ** a different order from the main table. ** See ticket: https://www.sqlite.org/src/info/bba7b69f9849b5bf */ sqlite3VdbeAddOp1(v, OP_SeekEnd, iIdx); } sqlite3VdbeAddOp2(v, OP_IdxInsert, iIdx, regRecord); sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); sqlite3ReleaseTempReg(pParse, regRecord); sqlite3VdbeAddOp2(v, OP_SorterNext, iSorter, addr2); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr1); sqlite3VdbeAddOp1(v, OP_Close, iTab); sqlite3VdbeAddOp1(v, OP_Close, iIdx); sqlite3VdbeAddOp1(v, OP_Close, iSorter); } /* ** Allocate heap space to hold an Index object with nCol columns. ** ** Increase the allocation size to provide an extra nExtra bytes ** of 8-byte aligned space after the Index object and return a ** pointer to this extra space in *ppExtra. */ SQLITE_PRIVATE Index *sqlite3AllocateIndexObject( sqlite3 *db, /* Database connection */ i16 nCol, /* Total number of columns in the index */ int nExtra, /* Number of bytes of extra space to alloc */ char **ppExtra /* Pointer to the "extra" space */ ){ Index *p; /* Allocated index object */ int nByte; /* Bytes of space for Index object + arrays */ nByte = ROUND8(sizeof(Index)) + /* Index structure */ ROUND8(sizeof(char*)*nCol) + /* Index.azColl */ ROUND8(sizeof(LogEst)*(nCol+1) + /* Index.aiRowLogEst */ sizeof(i16)*nCol + /* Index.aiColumn */ sizeof(u8)*nCol); /* Index.aSortOrder */ p = sqlite3DbMallocZero(db, nByte + nExtra); if( p ){ char *pExtra = ((char*)p)+ROUND8(sizeof(Index)); p->azColl = (const char**)pExtra; pExtra += ROUND8(sizeof(char*)*nCol); p->aiRowLogEst = (LogEst*)pExtra; pExtra += sizeof(LogEst)*(nCol+1); p->aiColumn = (i16*)pExtra; pExtra += sizeof(i16)*nCol; p->aSortOrder = (u8*)pExtra; p->nColumn = nCol; p->nKeyCol = nCol - 1; *ppExtra = ((char*)p) + nByte; } return p; } /* ** If expression list pList contains an expression that was parsed with ** an explicit "NULLS FIRST" or "NULLS LAST" clause, leave an error in ** pParse and return non-zero. Otherwise, return zero. */ SQLITE_PRIVATE int sqlite3HasExplicitNulls(Parse *pParse, ExprList *pList){ if( pList ){ int i; for(i=0; inExpr; i++){ if( pList->a[i].bNulls ){ u8 sf = pList->a[i].sortFlags; sqlite3ErrorMsg(pParse, "unsupported use of NULLS %s", (sf==0 || sf==3) ? "FIRST" : "LAST" ); return 1; } } } return 0; } /* ** Create a new index for an SQL table. pName1.pName2 is the name of the index ** and pTblList is the name of the table that is to be indexed. Both will ** be NULL for a primary key or an index that is created to satisfy a ** UNIQUE constraint. If pTable and pIndex are NULL, use pParse->pNewTable ** as the table to be indexed. pParse->pNewTable is a table that is ** currently being constructed by a CREATE TABLE statement. ** ** pList is a list of columns to be indexed. pList will be NULL if this ** is a primary key or unique-constraint on the most recent column added ** to the table currently under construction. */ SQLITE_PRIVATE void sqlite3CreateIndex( Parse *pParse, /* All information about this parse */ Token *pName1, /* First part of index name. May be NULL */ Token *pName2, /* Second part of index name. May be NULL */ SrcList *pTblName, /* Table to index. Use pParse->pNewTable if 0 */ ExprList *pList, /* A list of columns to be indexed */ int onError, /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */ Token *pStart, /* The CREATE token that begins this statement */ Expr *pPIWhere, /* WHERE clause for partial indices */ int sortOrder, /* Sort order of primary key when pList==NULL */ int ifNotExist, /* Omit error if index already exists */ u8 idxType /* The index type */ ){ Table *pTab = 0; /* Table to be indexed */ Index *pIndex = 0; /* The index to be created */ char *zName = 0; /* Name of the index */ int nName; /* Number of characters in zName */ int i, j; DbFixer sFix; /* For assigning database names to pTable */ int sortOrderMask; /* 1 to honor DESC in index. 0 to ignore. */ sqlite3 *db = pParse->db; Db *pDb; /* The specific table containing the indexed database */ int iDb; /* Index of the database that is being written */ Token *pName = 0; /* Unqualified name of the index to create */ struct ExprList_item *pListItem; /* For looping over pList */ int nExtra = 0; /* Space allocated for zExtra[] */ int nExtraCol; /* Number of extra columns needed */ char *zExtra = 0; /* Extra space after the Index object */ Index *pPk = 0; /* PRIMARY KEY index for WITHOUT ROWID tables */ if( db->mallocFailed || pParse->nErr>0 ){ goto exit_create_index; } if( IN_DECLARE_VTAB && idxType!=SQLITE_IDXTYPE_PRIMARYKEY ){ goto exit_create_index; } if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ goto exit_create_index; } if( sqlite3HasExplicitNulls(pParse, pList) ){ goto exit_create_index; } /* ** Find the table that is to be indexed. Return early if not found. */ if( pTblName!=0 ){ /* Use the two-part index name to determine the database ** to search for the table. 'Fix' the table name to this db ** before looking up the table. */ assert( pName1 && pName2 ); iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName); if( iDb<0 ) goto exit_create_index; assert( pName && pName->z ); #ifndef SQLITE_OMIT_TEMPDB /* If the index name was unqualified, check if the table ** is a temp table. If so, set the database to 1. Do not do this ** if initialising a database schema. */ if( !db->init.busy ){ pTab = sqlite3SrcListLookup(pParse, pTblName); if( pName2->n==0 && pTab && pTab->pSchema==db->aDb[1].pSchema ){ iDb = 1; } } #endif sqlite3FixInit(&sFix, pParse, iDb, "index", pName); if( sqlite3FixSrcList(&sFix, pTblName) ){ /* Because the parser constructs pTblName from a single identifier, ** sqlite3FixSrcList can never fail. */ assert(0); } pTab = sqlite3LocateTableItem(pParse, 0, &pTblName->a[0]); assert( db->mallocFailed==0 || pTab==0 ); if( pTab==0 ) goto exit_create_index; if( iDb==1 && db->aDb[iDb].pSchema!=pTab->pSchema ){ sqlite3ErrorMsg(pParse, "cannot create a TEMP index on non-TEMP table \"%s\"", pTab->zName); goto exit_create_index; } if( !HasRowid(pTab) ) pPk = sqlite3PrimaryKeyIndex(pTab); }else{ assert( pName==0 ); assert( pStart==0 ); pTab = pParse->pNewTable; if( !pTab ) goto exit_create_index; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); } pDb = &db->aDb[iDb]; assert( pTab!=0 ); assert( pParse->nErr==0 ); if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 && db->init.busy==0 && pTblName!=0 #if SQLITE_USER_AUTHENTICATION && sqlite3UserAuthTable(pTab->zName)==0 #endif ){ sqlite3ErrorMsg(pParse, "table %s may not be indexed", pTab->zName); goto exit_create_index; } #ifndef SQLITE_OMIT_VIEW if( pTab->pSelect ){ sqlite3ErrorMsg(pParse, "views may not be indexed"); goto exit_create_index; } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ sqlite3ErrorMsg(pParse, "virtual tables may not be indexed"); goto exit_create_index; } #endif /* ** Find the name of the index. Make sure there is not already another ** index or table with the same name. ** ** Exception: If we are reading the names of permanent indices from the ** sqlite_schema table (because some other process changed the schema) and ** one of the index names collides with the name of a temporary table or ** index, then we will continue to process this index. ** ** If pName==0 it means that we are ** dealing with a primary key or UNIQUE constraint. We have to invent our ** own name. */ if( pName ){ zName = sqlite3NameFromToken(db, pName); if( zName==0 ) goto exit_create_index; assert( pName->z!=0 ); if( SQLITE_OK!=sqlite3CheckObjectName(pParse, zName,"index",pTab->zName) ){ goto exit_create_index; } if( !IN_RENAME_OBJECT ){ if( !db->init.busy ){ if( sqlite3FindTable(db, zName, 0)!=0 ){ sqlite3ErrorMsg(pParse, "there is already a table named %s", zName); goto exit_create_index; } } if( sqlite3FindIndex(db, zName, pDb->zDbSName)!=0 ){ if( !ifNotExist ){ sqlite3ErrorMsg(pParse, "index %s already exists", zName); }else{ assert( !db->init.busy ); sqlite3CodeVerifySchema(pParse, iDb); } goto exit_create_index; } } }else{ int n; Index *pLoop; for(pLoop=pTab->pIndex, n=1; pLoop; pLoop=pLoop->pNext, n++){} zName = sqlite3MPrintf(db, "sqlite_autoindex_%s_%d", pTab->zName, n); if( zName==0 ){ goto exit_create_index; } /* Automatic index names generated from within sqlite3_declare_vtab() ** must have names that are distinct from normal automatic index names. ** The following statement converts "sqlite3_autoindex..." into ** "sqlite3_butoindex..." in order to make the names distinct. ** The "vtab_err.test" test demonstrates the need of this statement. */ if( IN_SPECIAL_PARSE ) zName[7]++; } /* Check for authorization to create an index. */ #ifndef SQLITE_OMIT_AUTHORIZATION if( !IN_RENAME_OBJECT ){ const char *zDb = pDb->zDbSName; if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(iDb), 0, zDb) ){ goto exit_create_index; } i = SQLITE_CREATE_INDEX; if( !OMIT_TEMPDB && iDb==1 ) i = SQLITE_CREATE_TEMP_INDEX; if( sqlite3AuthCheck(pParse, i, zName, pTab->zName, zDb) ){ goto exit_create_index; } } #endif /* If pList==0, it means this routine was called to make a primary ** key out of the last column added to the table under construction. ** So create a fake list to simulate this. */ if( pList==0 ){ Token prevCol; Column *pCol = &pTab->aCol[pTab->nCol-1]; pCol->colFlags |= COLFLAG_UNIQUE; sqlite3TokenInit(&prevCol, pCol->zName); pList = sqlite3ExprListAppend(pParse, 0, sqlite3ExprAlloc(db, TK_ID, &prevCol, 0)); if( pList==0 ) goto exit_create_index; assert( pList->nExpr==1 ); sqlite3ExprListSetSortOrder(pList, sortOrder, SQLITE_SO_UNDEFINED); }else{ sqlite3ExprListCheckLength(pParse, pList, "index"); if( pParse->nErr ) goto exit_create_index; } /* Figure out how many bytes of space are required to store explicitly ** specified collation sequence names. */ for(i=0; inExpr; i++){ Expr *pExpr = pList->a[i].pExpr; assert( pExpr!=0 ); if( pExpr->op==TK_COLLATE ){ nExtra += (1 + sqlite3Strlen30(pExpr->u.zToken)); } } /* ** Allocate the index structure. */ nName = sqlite3Strlen30(zName); nExtraCol = pPk ? pPk->nKeyCol : 1; assert( pList->nExpr + nExtraCol <= 32767 /* Fits in i16 */ ); pIndex = sqlite3AllocateIndexObject(db, pList->nExpr + nExtraCol, nName + nExtra + 1, &zExtra); if( db->mallocFailed ){ goto exit_create_index; } assert( EIGHT_BYTE_ALIGNMENT(pIndex->aiRowLogEst) ); assert( EIGHT_BYTE_ALIGNMENT(pIndex->azColl) ); pIndex->zName = zExtra; zExtra += nName + 1; memcpy(pIndex->zName, zName, nName+1); pIndex->pTable = pTab; pIndex->onError = (u8)onError; pIndex->uniqNotNull = onError!=OE_None; pIndex->idxType = idxType; pIndex->pSchema = db->aDb[iDb].pSchema; pIndex->nKeyCol = pList->nExpr; if( pPIWhere ){ sqlite3ResolveSelfReference(pParse, pTab, NC_PartIdx, pPIWhere, 0); pIndex->pPartIdxWhere = pPIWhere; pPIWhere = 0; } assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); /* Check to see if we should honor DESC requests on index columns */ if( pDb->pSchema->file_format>=4 ){ sortOrderMask = -1; /* Honor DESC */ }else{ sortOrderMask = 0; /* Ignore DESC */ } /* Analyze the list of expressions that form the terms of the index and ** report any errors. In the common case where the expression is exactly ** a table column, store that column in aiColumn[]. For general expressions, ** populate pIndex->aColExpr and store XN_EXPR (-2) in aiColumn[]. ** ** TODO: Issue a warning if two or more columns of the index are identical. ** TODO: Issue a warning if the table primary key is used as part of the ** index key. */ pListItem = pList->a; if( IN_RENAME_OBJECT ){ pIndex->aColExpr = pList; pList = 0; } for(i=0; inKeyCol; i++, pListItem++){ Expr *pCExpr; /* The i-th index expression */ int requestedSortOrder; /* ASC or DESC on the i-th expression */ const char *zColl; /* Collation sequence name */ sqlite3StringToId(pListItem->pExpr); sqlite3ResolveSelfReference(pParse, pTab, NC_IdxExpr, pListItem->pExpr, 0); if( pParse->nErr ) goto exit_create_index; pCExpr = sqlite3ExprSkipCollate(pListItem->pExpr); if( pCExpr->op!=TK_COLUMN ){ if( pTab==pParse->pNewTable ){ sqlite3ErrorMsg(pParse, "expressions prohibited in PRIMARY KEY and " "UNIQUE constraints"); goto exit_create_index; } if( pIndex->aColExpr==0 ){ pIndex->aColExpr = pList; pList = 0; } j = XN_EXPR; pIndex->aiColumn[i] = XN_EXPR; pIndex->uniqNotNull = 0; }else{ j = pCExpr->iColumn; assert( j<=0x7fff ); if( j<0 ){ j = pTab->iPKey; }else{ if( pTab->aCol[j].notNull==0 ){ pIndex->uniqNotNull = 0; } if( pTab->aCol[j].colFlags & COLFLAG_VIRTUAL ){ pIndex->bHasVCol = 1; } } pIndex->aiColumn[i] = (i16)j; } zColl = 0; if( pListItem->pExpr->op==TK_COLLATE ){ int nColl; zColl = pListItem->pExpr->u.zToken; nColl = sqlite3Strlen30(zColl) + 1; assert( nExtra>=nColl ); memcpy(zExtra, zColl, nColl); zColl = zExtra; zExtra += nColl; nExtra -= nColl; }else if( j>=0 ){ zColl = pTab->aCol[j].zColl; } if( !zColl ) zColl = sqlite3StrBINARY; if( !db->init.busy && !sqlite3LocateCollSeq(pParse, zColl) ){ goto exit_create_index; } pIndex->azColl[i] = zColl; requestedSortOrder = pListItem->sortFlags & sortOrderMask; pIndex->aSortOrder[i] = (u8)requestedSortOrder; } /* Append the table key to the end of the index. For WITHOUT ROWID ** tables (when pPk!=0) this will be the declared PRIMARY KEY. For ** normal tables (when pPk==0) this will be the rowid. */ if( pPk ){ for(j=0; jnKeyCol; j++){ int x = pPk->aiColumn[j]; assert( x>=0 ); if( isDupColumn(pIndex, pIndex->nKeyCol, pPk, j) ){ pIndex->nColumn--; }else{ testcase( hasColumn(pIndex->aiColumn,pIndex->nKeyCol,x) ); pIndex->aiColumn[i] = x; pIndex->azColl[i] = pPk->azColl[j]; pIndex->aSortOrder[i] = pPk->aSortOrder[j]; i++; } } assert( i==pIndex->nColumn ); }else{ pIndex->aiColumn[i] = XN_ROWID; pIndex->azColl[i] = sqlite3StrBINARY; } sqlite3DefaultRowEst(pIndex); if( pParse->pNewTable==0 ) estimateIndexWidth(pIndex); /* If this index contains every column of its table, then mark ** it as a covering index */ assert( HasRowid(pTab) || pTab->iPKey<0 || sqlite3TableColumnToIndex(pIndex, pTab->iPKey)>=0 ); recomputeColumnsNotIndexed(pIndex); if( pTblName!=0 && pIndex->nColumn>=pTab->nCol ){ pIndex->isCovering = 1; for(j=0; jnCol; j++){ if( j==pTab->iPKey ) continue; if( sqlite3TableColumnToIndex(pIndex,j)>=0 ) continue; pIndex->isCovering = 0; break; } } if( pTab==pParse->pNewTable ){ /* This routine has been called to create an automatic index as a ** result of a PRIMARY KEY or UNIQUE clause on a column definition, or ** a PRIMARY KEY or UNIQUE clause following the column definitions. ** i.e. one of: ** ** CREATE TABLE t(x PRIMARY KEY, y); ** CREATE TABLE t(x, y, UNIQUE(x, y)); ** ** Either way, check to see if the table already has such an index. If ** so, don't bother creating this one. This only applies to ** automatically created indices. Users can do as they wish with ** explicit indices. ** ** Two UNIQUE or PRIMARY KEY constraints are considered equivalent ** (and thus suppressing the second one) even if they have different ** sort orders. ** ** If there are different collating sequences or if the columns of ** the constraint occur in different orders, then the constraints are ** considered distinct and both result in separate indices. */ Index *pIdx; for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int k; assert( IsUniqueIndex(pIdx) ); assert( pIdx->idxType!=SQLITE_IDXTYPE_APPDEF ); assert( IsUniqueIndex(pIndex) ); if( pIdx->nKeyCol!=pIndex->nKeyCol ) continue; for(k=0; knKeyCol; k++){ const char *z1; const char *z2; assert( pIdx->aiColumn[k]>=0 ); if( pIdx->aiColumn[k]!=pIndex->aiColumn[k] ) break; z1 = pIdx->azColl[k]; z2 = pIndex->azColl[k]; if( sqlite3StrICmp(z1, z2) ) break; } if( k==pIdx->nKeyCol ){ if( pIdx->onError!=pIndex->onError ){ /* This constraint creates the same index as a previous ** constraint specified somewhere in the CREATE TABLE statement. ** However the ON CONFLICT clauses are different. If both this ** constraint and the previous equivalent constraint have explicit ** ON CONFLICT clauses this is an error. Otherwise, use the ** explicitly specified behavior for the index. */ if( !(pIdx->onError==OE_Default || pIndex->onError==OE_Default) ){ sqlite3ErrorMsg(pParse, "conflicting ON CONFLICT clauses specified", 0); } if( pIdx->onError==OE_Default ){ pIdx->onError = pIndex->onError; } } if( idxType==SQLITE_IDXTYPE_PRIMARYKEY ) pIdx->idxType = idxType; if( IN_RENAME_OBJECT ){ pIndex->pNext = pParse->pNewIndex; pParse->pNewIndex = pIndex; pIndex = 0; } goto exit_create_index; } } } if( !IN_RENAME_OBJECT ){ /* Link the new Index structure to its table and to the other ** in-memory database structures. */ assert( pParse->nErr==0 ); if( db->init.busy ){ Index *p; assert( !IN_SPECIAL_PARSE ); assert( sqlite3SchemaMutexHeld(db, 0, pIndex->pSchema) ); if( pTblName!=0 ){ pIndex->tnum = db->init.newTnum; if( sqlite3IndexHasDuplicateRootPage(pIndex) ){ sqlite3ErrorMsg(pParse, "invalid rootpage"); pParse->rc = SQLITE_CORRUPT_BKPT; goto exit_create_index; } } p = sqlite3HashInsert(&pIndex->pSchema->idxHash, pIndex->zName, pIndex); if( p ){ assert( p==pIndex ); /* Malloc must have failed */ sqlite3OomFault(db); goto exit_create_index; } db->mDbFlags |= DBFLAG_SchemaChange; } /* If this is the initial CREATE INDEX statement (or CREATE TABLE if the ** index is an implied index for a UNIQUE or PRIMARY KEY constraint) then ** emit code to allocate the index rootpage on disk and make an entry for ** the index in the sqlite_schema table and populate the index with ** content. But, do not do this if we are simply reading the sqlite_schema ** table to parse the schema, or if this index is the PRIMARY KEY index ** of a WITHOUT ROWID table. ** ** If pTblName==0 it means this index is generated as an implied PRIMARY KEY ** or UNIQUE index in a CREATE TABLE statement. Since the table ** has just been created, it contains no data and the index initialization ** step can be skipped. */ else if( HasRowid(pTab) || pTblName!=0 ){ Vdbe *v; char *zStmt; int iMem = ++pParse->nMem; v = sqlite3GetVdbe(pParse); if( v==0 ) goto exit_create_index; sqlite3BeginWriteOperation(pParse, 1, iDb); /* Create the rootpage for the index using CreateIndex. But before ** doing so, code a Noop instruction and store its address in ** Index.tnum. This is required in case this index is actually a ** PRIMARY KEY and the table is actually a WITHOUT ROWID table. In ** that case the convertToWithoutRowidTable() routine will replace ** the Noop with a Goto to jump over the VDBE code generated below. */ pIndex->tnum = (Pgno)sqlite3VdbeAddOp0(v, OP_Noop); sqlite3VdbeAddOp3(v, OP_CreateBtree, iDb, iMem, BTREE_BLOBKEY); /* Gather the complete text of the CREATE INDEX statement into ** the zStmt variable */ assert( pName!=0 || pStart==0 ); if( pStart ){ int n = (int)(pParse->sLastToken.z - pName->z) + pParse->sLastToken.n; if( pName->z[n-1]==';' ) n--; /* A named index with an explicit CREATE INDEX statement */ zStmt = sqlite3MPrintf(db, "CREATE%s INDEX %.*s", onError==OE_None ? "" : " UNIQUE", n, pName->z); }else{ /* An automatic index created by a PRIMARY KEY or UNIQUE constraint */ /* zStmt = sqlite3MPrintf(""); */ zStmt = 0; } /* Add an entry in sqlite_schema for this index */ sqlite3NestedParse(pParse, "INSERT INTO %Q." DFLT_SCHEMA_TABLE " VALUES('index',%Q,%Q,#%d,%Q);", db->aDb[iDb].zDbSName, pIndex->zName, pTab->zName, iMem, zStmt ); sqlite3DbFree(db, zStmt); /* Fill the index with data and reparse the schema. Code an OP_Expire ** to invalidate all pre-compiled statements. */ if( pTblName ){ sqlite3RefillIndex(pParse, pIndex, iMem); sqlite3ChangeCookie(pParse, iDb); sqlite3VdbeAddParseSchemaOp(v, iDb, sqlite3MPrintf(db, "name='%q' AND type='index'", pIndex->zName)); sqlite3VdbeAddOp2(v, OP_Expire, 0, 1); } sqlite3VdbeJumpHere(v, (int)pIndex->tnum); } } if( db->init.busy || pTblName==0 ){ pIndex->pNext = pTab->pIndex; pTab->pIndex = pIndex; pIndex = 0; } else if( IN_RENAME_OBJECT ){ assert( pParse->pNewIndex==0 ); pParse->pNewIndex = pIndex; pIndex = 0; } /* Clean up before exiting */ exit_create_index: if( pIndex ) sqlite3FreeIndex(db, pIndex); if( pTab ){ /* Ensure all REPLACE indexes are at the end of the list */ Index **ppFrom = &pTab->pIndex; Index *pThis; for(ppFrom=&pTab->pIndex; (pThis = *ppFrom)!=0; ppFrom=&pThis->pNext){ Index *pNext; if( pThis->onError!=OE_Replace ) continue; while( (pNext = pThis->pNext)!=0 && pNext->onError!=OE_Replace ){ *ppFrom = pNext; pThis->pNext = pNext->pNext; pNext->pNext = pThis; ppFrom = &pNext->pNext; } break; } } sqlite3ExprDelete(db, pPIWhere); sqlite3ExprListDelete(db, pList); sqlite3SrcListDelete(db, pTblName); sqlite3DbFree(db, zName); } /* ** Fill the Index.aiRowEst[] array with default information - information ** to be used when we have not run the ANALYZE command. ** ** aiRowEst[0] is supposed to contain the number of elements in the index. ** Since we do not know, guess 1 million. aiRowEst[1] is an estimate of the ** number of rows in the table that match any particular value of the ** first column of the index. aiRowEst[2] is an estimate of the number ** of rows that match any particular combination of the first 2 columns ** of the index. And so forth. It must always be the case that * ** aiRowEst[N]<=aiRowEst[N-1] ** aiRowEst[N]>=1 ** ** Apart from that, we have little to go on besides intuition as to ** how aiRowEst[] should be initialized. The numbers generated here ** are based on typical values found in actual indices. */ SQLITE_PRIVATE void sqlite3DefaultRowEst(Index *pIdx){ /* 10, 9, 8, 7, 6 */ static const LogEst aVal[] = { 33, 32, 30, 28, 26 }; LogEst *a = pIdx->aiRowLogEst; LogEst x; int nCopy = MIN(ArraySize(aVal), pIdx->nKeyCol); int i; /* Indexes with default row estimates should not have stat1 data */ assert( !pIdx->hasStat1 ); /* Set the first entry (number of rows in the index) to the estimated ** number of rows in the table, or half the number of rows in the table ** for a partial index. ** ** 2020-05-27: If some of the stat data is coming from the sqlite_stat1 ** table but other parts we are having to guess at, then do not let the ** estimated number of rows in the table be less than 1000 (LogEst 99). ** Failure to do this can cause the indexes for which we do not have ** stat1 data to be ignored by the query planner. */ x = pIdx->pTable->nRowLogEst; assert( 99==sqlite3LogEst(1000) ); if( x<99 ){ pIdx->pTable->nRowLogEst = x = 99; } if( pIdx->pPartIdxWhere!=0 ) x -= 10; assert( 10==sqlite3LogEst(2) ); a[0] = x; /* Estimate that a[1] is 10, a[2] is 9, a[3] is 8, a[4] is 7, a[5] is ** 6 and each subsequent value (if any) is 5. */ memcpy(&a[1], aVal, nCopy*sizeof(LogEst)); for(i=nCopy+1; i<=pIdx->nKeyCol; i++){ a[i] = 23; assert( 23==sqlite3LogEst(5) ); } assert( 0==sqlite3LogEst(1) ); if( IsUniqueIndex(pIdx) ) a[pIdx->nKeyCol] = 0; } /* ** This routine will drop an existing named index. This routine ** implements the DROP INDEX statement. */ SQLITE_PRIVATE void sqlite3DropIndex(Parse *pParse, SrcList *pName, int ifExists){ Index *pIndex; Vdbe *v; sqlite3 *db = pParse->db; int iDb; assert( pParse->nErr==0 ); /* Never called with prior errors */ if( db->mallocFailed ){ goto exit_drop_index; } assert( pName->nSrc==1 ); if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ goto exit_drop_index; } pIndex = sqlite3FindIndex(db, pName->a[0].zName, pName->a[0].zDatabase); if( pIndex==0 ){ if( !ifExists ){ sqlite3ErrorMsg(pParse, "no such index: %S", pName, 0); }else{ sqlite3CodeVerifyNamedSchema(pParse, pName->a[0].zDatabase); } pParse->checkSchema = 1; goto exit_drop_index; } if( pIndex->idxType!=SQLITE_IDXTYPE_APPDEF ){ sqlite3ErrorMsg(pParse, "index associated with UNIQUE " "or PRIMARY KEY constraint cannot be dropped", 0); goto exit_drop_index; } iDb = sqlite3SchemaToIndex(db, pIndex->pSchema); #ifndef SQLITE_OMIT_AUTHORIZATION { int code = SQLITE_DROP_INDEX; Table *pTab = pIndex->pTable; const char *zDb = db->aDb[iDb].zDbSName; const char *zTab = SCHEMA_TABLE(iDb); if( sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb) ){ goto exit_drop_index; } if( !OMIT_TEMPDB && iDb ) code = SQLITE_DROP_TEMP_INDEX; if( sqlite3AuthCheck(pParse, code, pIndex->zName, pTab->zName, zDb) ){ goto exit_drop_index; } } #endif /* Generate code to remove the index and from the schema table */ v = sqlite3GetVdbe(pParse); if( v ){ sqlite3BeginWriteOperation(pParse, 1, iDb); sqlite3NestedParse(pParse, "DELETE FROM %Q." DFLT_SCHEMA_TABLE " WHERE name=%Q AND type='index'", db->aDb[iDb].zDbSName, pIndex->zName ); sqlite3ClearStatTables(pParse, iDb, "idx", pIndex->zName); sqlite3ChangeCookie(pParse, iDb); destroyRootPage(pParse, pIndex->tnum, iDb); sqlite3VdbeAddOp4(v, OP_DropIndex, iDb, 0, 0, pIndex->zName, 0); } exit_drop_index: sqlite3SrcListDelete(db, pName); } /* ** pArray is a pointer to an array of objects. Each object in the ** array is szEntry bytes in size. This routine uses sqlite3DbRealloc() ** to extend the array so that there is space for a new object at the end. ** ** When this function is called, *pnEntry contains the current size of ** the array (in entries - so the allocation is ((*pnEntry) * szEntry) bytes ** in total). ** ** If the realloc() is successful (i.e. if no OOM condition occurs), the ** space allocated for the new object is zeroed, *pnEntry updated to ** reflect the new size of the array and a pointer to the new allocation ** returned. *pIdx is set to the index of the new array entry in this case. ** ** Otherwise, if the realloc() fails, *pIdx is set to -1, *pnEntry remains ** unchanged and a copy of pArray returned. */ SQLITE_PRIVATE void *sqlite3ArrayAllocate( sqlite3 *db, /* Connection to notify of malloc failures */ void *pArray, /* Array of objects. Might be reallocated */ int szEntry, /* Size of each object in the array */ int *pnEntry, /* Number of objects currently in use */ int *pIdx /* Write the index of a new slot here */ ){ char *z; sqlite3_int64 n = *pIdx = *pnEntry; if( (n & (n-1))==0 ){ sqlite3_int64 sz = (n==0) ? 1 : 2*n; void *pNew = sqlite3DbRealloc(db, pArray, sz*szEntry); if( pNew==0 ){ *pIdx = -1; return pArray; } pArray = pNew; } z = (char*)pArray; memset(&z[n * szEntry], 0, szEntry); ++*pnEntry; return pArray; } /* ** Append a new element to the given IdList. Create a new IdList if ** need be. ** ** A new IdList is returned, or NULL if malloc() fails. */ SQLITE_PRIVATE IdList *sqlite3IdListAppend(Parse *pParse, IdList *pList, Token *pToken){ sqlite3 *db = pParse->db; int i; if( pList==0 ){ pList = sqlite3DbMallocZero(db, sizeof(IdList) ); if( pList==0 ) return 0; } pList->a = sqlite3ArrayAllocate( db, pList->a, sizeof(pList->a[0]), &pList->nId, &i ); if( i<0 ){ sqlite3IdListDelete(db, pList); return 0; } pList->a[i].zName = sqlite3NameFromToken(db, pToken); if( IN_RENAME_OBJECT && pList->a[i].zName ){ sqlite3RenameTokenMap(pParse, (void*)pList->a[i].zName, pToken); } return pList; } /* ** Delete an IdList. */ SQLITE_PRIVATE void sqlite3IdListDelete(sqlite3 *db, IdList *pList){ int i; if( pList==0 ) return; for(i=0; inId; i++){ sqlite3DbFree(db, pList->a[i].zName); } sqlite3DbFree(db, pList->a); sqlite3DbFreeNN(db, pList); } /* ** Return the index in pList of the identifier named zId. Return -1 ** if not found. */ SQLITE_PRIVATE int sqlite3IdListIndex(IdList *pList, const char *zName){ int i; if( pList==0 ) return -1; for(i=0; inId; i++){ if( sqlite3StrICmp(pList->a[i].zName, zName)==0 ) return i; } return -1; } /* ** Maximum size of a SrcList object. ** The SrcList object is used to represent the FROM clause of a ** SELECT statement, and the query planner cannot deal with more ** than 64 tables in a join. So any value larger than 64 here ** is sufficient for most uses. Smaller values, like say 10, are ** appropriate for small and memory-limited applications. */ #ifndef SQLITE_MAX_SRCLIST # define SQLITE_MAX_SRCLIST 200 #endif /* ** Expand the space allocated for the given SrcList object by ** creating nExtra new slots beginning at iStart. iStart is zero based. ** New slots are zeroed. ** ** For example, suppose a SrcList initially contains two entries: A,B. ** To append 3 new entries onto the end, do this: ** ** sqlite3SrcListEnlarge(db, pSrclist, 3, 2); ** ** After the call above it would contain: A, B, nil, nil, nil. ** If the iStart argument had been 1 instead of 2, then the result ** would have been: A, nil, nil, nil, B. To prepend the new slots, ** the iStart value would be 0. The result then would ** be: nil, nil, nil, A, B. ** ** If a memory allocation fails or the SrcList becomes too large, leave ** the original SrcList unchanged, return NULL, and leave an error message ** in pParse. */ SQLITE_PRIVATE SrcList *sqlite3SrcListEnlarge( Parse *pParse, /* Parsing context into which errors are reported */ SrcList *pSrc, /* The SrcList to be enlarged */ int nExtra, /* Number of new slots to add to pSrc->a[] */ int iStart /* Index in pSrc->a[] of first new slot */ ){ int i; /* Sanity checking on calling parameters */ assert( iStart>=0 ); assert( nExtra>=1 ); assert( pSrc!=0 ); assert( iStart<=pSrc->nSrc ); /* Allocate additional space if needed */ if( (u32)pSrc->nSrc+nExtra>pSrc->nAlloc ){ SrcList *pNew; sqlite3_int64 nAlloc = 2*(sqlite3_int64)pSrc->nSrc+nExtra; sqlite3 *db = pParse->db; if( pSrc->nSrc+nExtra>=SQLITE_MAX_SRCLIST ){ sqlite3ErrorMsg(pParse, "too many FROM clause terms, max: %d", SQLITE_MAX_SRCLIST); return 0; } if( nAlloc>SQLITE_MAX_SRCLIST ) nAlloc = SQLITE_MAX_SRCLIST; pNew = sqlite3DbRealloc(db, pSrc, sizeof(*pSrc) + (nAlloc-1)*sizeof(pSrc->a[0]) ); if( pNew==0 ){ assert( db->mallocFailed ); return 0; } pSrc = pNew; pSrc->nAlloc = nAlloc; } /* Move existing slots that come after the newly inserted slots ** out of the way */ for(i=pSrc->nSrc-1; i>=iStart; i--){ pSrc->a[i+nExtra] = pSrc->a[i]; } pSrc->nSrc += nExtra; /* Zero the newly allocated slots */ memset(&pSrc->a[iStart], 0, sizeof(pSrc->a[0])*nExtra); for(i=iStart; ia[i].iCursor = -1; } /* Return a pointer to the enlarged SrcList */ return pSrc; } /* ** Append a new table name to the given SrcList. Create a new SrcList if ** need be. A new entry is created in the SrcList even if pTable is NULL. ** ** A SrcList is returned, or NULL if there is an OOM error or if the ** SrcList grows to large. The returned ** SrcList might be the same as the SrcList that was input or it might be ** a new one. If an OOM error does occurs, then the prior value of pList ** that is input to this routine is automatically freed. ** ** If pDatabase is not null, it means that the table has an optional ** database name prefix. Like this: "database.table". The pDatabase ** points to the table name and the pTable points to the database name. ** The SrcList.a[].zName field is filled with the table name which might ** come from pTable (if pDatabase is NULL) or from pDatabase. ** SrcList.a[].zDatabase is filled with the database name from pTable, ** or with NULL if no database is specified. ** ** In other words, if call like this: ** ** sqlite3SrcListAppend(D,A,B,0); ** ** Then B is a table name and the database name is unspecified. If called ** like this: ** ** sqlite3SrcListAppend(D,A,B,C); ** ** Then C is the table name and B is the database name. If C is defined ** then so is B. In other words, we never have a case where: ** ** sqlite3SrcListAppend(D,A,0,C); ** ** Both pTable and pDatabase are assumed to be quoted. They are dequoted ** before being added to the SrcList. */ SQLITE_PRIVATE SrcList *sqlite3SrcListAppend( Parse *pParse, /* Parsing context, in which errors are reported */ SrcList *pList, /* Append to this SrcList. NULL creates a new SrcList */ Token *pTable, /* Table to append */ Token *pDatabase /* Database of the table */ ){ struct SrcList_item *pItem; sqlite3 *db; assert( pDatabase==0 || pTable!=0 ); /* Cannot have C without B */ assert( pParse!=0 ); assert( pParse->db!=0 ); db = pParse->db; if( pList==0 ){ pList = sqlite3DbMallocRawNN(pParse->db, sizeof(SrcList) ); if( pList==0 ) return 0; pList->nAlloc = 1; pList->nSrc = 1; memset(&pList->a[0], 0, sizeof(pList->a[0])); pList->a[0].iCursor = -1; }else{ SrcList *pNew = sqlite3SrcListEnlarge(pParse, pList, 1, pList->nSrc); if( pNew==0 ){ sqlite3SrcListDelete(db, pList); return 0; }else{ pList = pNew; } } pItem = &pList->a[pList->nSrc-1]; if( pDatabase && pDatabase->z==0 ){ pDatabase = 0; } if( pDatabase ){ pItem->zName = sqlite3NameFromToken(db, pDatabase); pItem->zDatabase = sqlite3NameFromToken(db, pTable); }else{ pItem->zName = sqlite3NameFromToken(db, pTable); pItem->zDatabase = 0; } return pList; } /* ** Assign VdbeCursor index numbers to all tables in a SrcList */ SQLITE_PRIVATE void sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList){ int i; struct SrcList_item *pItem; assert(pList || pParse->db->mallocFailed ); if( pList ){ for(i=0, pItem=pList->a; inSrc; i++, pItem++){ if( pItem->iCursor>=0 ) break; pItem->iCursor = pParse->nTab++; if( pItem->pSelect ){ sqlite3SrcListAssignCursors(pParse, pItem->pSelect->pSrc); } } } } /* ** Delete an entire SrcList including all its substructure. */ SQLITE_PRIVATE void sqlite3SrcListDelete(sqlite3 *db, SrcList *pList){ int i; struct SrcList_item *pItem; if( pList==0 ) return; for(pItem=pList->a, i=0; inSrc; i++, pItem++){ sqlite3DbFree(db, pItem->zDatabase); sqlite3DbFree(db, pItem->zName); sqlite3DbFree(db, pItem->zAlias); if( pItem->fg.isIndexedBy ) sqlite3DbFree(db, pItem->u1.zIndexedBy); if( pItem->fg.isTabFunc ) sqlite3ExprListDelete(db, pItem->u1.pFuncArg); sqlite3DeleteTable(db, pItem->pTab); sqlite3SelectDelete(db, pItem->pSelect); sqlite3ExprDelete(db, pItem->pOn); sqlite3IdListDelete(db, pItem->pUsing); } sqlite3DbFreeNN(db, pList); } /* ** This routine is called by the parser to add a new term to the ** end of a growing FROM clause. The "p" parameter is the part of ** the FROM clause that has already been constructed. "p" is NULL ** if this is the first term of the FROM clause. pTable and pDatabase ** are the name of the table and database named in the FROM clause term. ** pDatabase is NULL if the database name qualifier is missing - the ** usual case. If the term has an alias, then pAlias points to the ** alias token. If the term is a subquery, then pSubquery is the ** SELECT statement that the subquery encodes. The pTable and ** pDatabase parameters are NULL for subqueries. The pOn and pUsing ** parameters are the content of the ON and USING clauses. ** ** Return a new SrcList which encodes is the FROM with the new ** term added. */ SQLITE_PRIVATE SrcList *sqlite3SrcListAppendFromTerm( Parse *pParse, /* Parsing context */ SrcList *p, /* The left part of the FROM clause already seen */ Token *pTable, /* Name of the table to add to the FROM clause */ Token *pDatabase, /* Name of the database containing pTable */ Token *pAlias, /* The right-hand side of the AS subexpression */ Select *pSubquery, /* A subquery used in place of a table name */ Expr *pOn, /* The ON clause of a join */ IdList *pUsing /* The USING clause of a join */ ){ struct SrcList_item *pItem; sqlite3 *db = pParse->db; if( !p && (pOn || pUsing) ){ sqlite3ErrorMsg(pParse, "a JOIN clause is required before %s", (pOn ? "ON" : "USING") ); goto append_from_error; } p = sqlite3SrcListAppend(pParse, p, pTable, pDatabase); if( p==0 ){ goto append_from_error; } assert( p->nSrc>0 ); pItem = &p->a[p->nSrc-1]; assert( (pTable==0)==(pDatabase==0) ); assert( pItem->zName==0 || pDatabase!=0 ); if( IN_RENAME_OBJECT && pItem->zName ){ Token *pToken = (ALWAYS(pDatabase) && pDatabase->z) ? pDatabase : pTable; sqlite3RenameTokenMap(pParse, pItem->zName, pToken); } assert( pAlias!=0 ); if( pAlias->n ){ pItem->zAlias = sqlite3NameFromToken(db, pAlias); } pItem->pSelect = pSubquery; pItem->pOn = pOn; pItem->pUsing = pUsing; return p; append_from_error: assert( p==0 ); sqlite3ExprDelete(db, pOn); sqlite3IdListDelete(db, pUsing); sqlite3SelectDelete(db, pSubquery); return 0; } /* ** Add an INDEXED BY or NOT INDEXED clause to the most recently added ** element of the source-list passed as the second argument. */ SQLITE_PRIVATE void sqlite3SrcListIndexedBy(Parse *pParse, SrcList *p, Token *pIndexedBy){ assert( pIndexedBy!=0 ); if( p && pIndexedBy->n>0 ){ struct SrcList_item *pItem; assert( p->nSrc>0 ); pItem = &p->a[p->nSrc-1]; assert( pItem->fg.notIndexed==0 ); assert( pItem->fg.isIndexedBy==0 ); assert( pItem->fg.isTabFunc==0 ); if( pIndexedBy->n==1 && !pIndexedBy->z ){ /* A "NOT INDEXED" clause was supplied. See parse.y ** construct "indexed_opt" for details. */ pItem->fg.notIndexed = 1; }else{ pItem->u1.zIndexedBy = sqlite3NameFromToken(pParse->db, pIndexedBy); pItem->fg.isIndexedBy = 1; } } } /* ** Append the contents of SrcList p2 to SrcList p1 and return the resulting ** SrcList. Or, if an error occurs, return NULL. In all cases, p1 and p2 ** are deleted by this function. */ SQLITE_PRIVATE SrcList *sqlite3SrcListAppendList(Parse *pParse, SrcList *p1, SrcList *p2){ assert( p1 && p1->nSrc==1 ); if( p2 ){ SrcList *pNew = sqlite3SrcListEnlarge(pParse, p1, p2->nSrc, 1); if( pNew==0 ){ sqlite3SrcListDelete(pParse->db, p2); }else{ p1 = pNew; memcpy(&p1->a[1], p2->a, p2->nSrc*sizeof(struct SrcList_item)); sqlite3DbFree(pParse->db, p2); } } return p1; } /* ** Add the list of function arguments to the SrcList entry for a ** table-valued-function. */ SQLITE_PRIVATE void sqlite3SrcListFuncArgs(Parse *pParse, SrcList *p, ExprList *pList){ if( p ){ struct SrcList_item *pItem = &p->a[p->nSrc-1]; assert( pItem->fg.notIndexed==0 ); assert( pItem->fg.isIndexedBy==0 ); assert( pItem->fg.isTabFunc==0 ); pItem->u1.pFuncArg = pList; pItem->fg.isTabFunc = 1; }else{ sqlite3ExprListDelete(pParse->db, pList); } } /* ** When building up a FROM clause in the parser, the join operator ** is initially attached to the left operand. But the code generator ** expects the join operator to be on the right operand. This routine ** Shifts all join operators from left to right for an entire FROM ** clause. ** ** Example: Suppose the join is like this: ** ** A natural cross join B ** ** The operator is "natural cross join". The A and B operands are stored ** in p->a[0] and p->a[1], respectively. The parser initially stores the ** operator with A. This routine shifts that operator over to B. */ SQLITE_PRIVATE void sqlite3SrcListShiftJoinType(SrcList *p){ if( p ){ int i; for(i=p->nSrc-1; i>0; i--){ p->a[i].fg.jointype = p->a[i-1].fg.jointype; } p->a[0].fg.jointype = 0; } } /* ** Generate VDBE code for a BEGIN statement. */ SQLITE_PRIVATE void sqlite3BeginTransaction(Parse *pParse, int type){ sqlite3 *db; Vdbe *v; int i; assert( pParse!=0 ); db = pParse->db; assert( db!=0 ); if( sqlite3AuthCheck(pParse, SQLITE_TRANSACTION, "BEGIN", 0, 0) ){ return; } v = sqlite3GetVdbe(pParse); if( !v ) return; if( type!=TK_DEFERRED ){ for(i=0; inDb; i++){ sqlite3VdbeAddOp2(v, OP_Transaction, i, (type==TK_EXCLUSIVE)+1); sqlite3VdbeUsesBtree(v, i); } } sqlite3VdbeAddOp0(v, OP_AutoCommit); } /* ** Generate VDBE code for a COMMIT or ROLLBACK statement. ** Code for ROLLBACK is generated if eType==TK_ROLLBACK. Otherwise ** code is generated for a COMMIT. */ SQLITE_PRIVATE void sqlite3EndTransaction(Parse *pParse, int eType){ Vdbe *v; int isRollback; assert( pParse!=0 ); assert( pParse->db!=0 ); assert( eType==TK_COMMIT || eType==TK_END || eType==TK_ROLLBACK ); isRollback = eType==TK_ROLLBACK; if( sqlite3AuthCheck(pParse, SQLITE_TRANSACTION, isRollback ? "ROLLBACK" : "COMMIT", 0, 0) ){ return; } v = sqlite3GetVdbe(pParse); if( v ){ sqlite3VdbeAddOp2(v, OP_AutoCommit, 1, isRollback); } } /* ** This function is called by the parser when it parses a command to create, ** release or rollback an SQL savepoint. */ SQLITE_PRIVATE void sqlite3Savepoint(Parse *pParse, int op, Token *pName){ char *zName = sqlite3NameFromToken(pParse->db, pName); if( zName ){ Vdbe *v = sqlite3GetVdbe(pParse); #ifndef SQLITE_OMIT_AUTHORIZATION static const char * const az[] = { "BEGIN", "RELEASE", "ROLLBACK" }; assert( !SAVEPOINT_BEGIN && SAVEPOINT_RELEASE==1 && SAVEPOINT_ROLLBACK==2 ); #endif if( !v || sqlite3AuthCheck(pParse, SQLITE_SAVEPOINT, az[op], zName, 0) ){ sqlite3DbFree(pParse->db, zName); return; } sqlite3VdbeAddOp4(v, OP_Savepoint, op, 0, 0, zName, P4_DYNAMIC); } } /* ** Make sure the TEMP database is open and available for use. Return ** the number of errors. Leave any error messages in the pParse structure. */ SQLITE_PRIVATE int sqlite3OpenTempDatabase(Parse *pParse){ sqlite3 *db = pParse->db; if( db->aDb[1].pBt==0 && !pParse->explain ){ int rc; Btree *pBt; static const int flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_DELETEONCLOSE | SQLITE_OPEN_TEMP_DB; rc = sqlite3BtreeOpen(db->pVfs, 0, db, &pBt, 0, flags); if( rc!=SQLITE_OK ){ sqlite3ErrorMsg(pParse, "unable to open a temporary database " "file for storing temporary tables"); pParse->rc = rc; return 1; } db->aDb[1].pBt = pBt; assert( db->aDb[1].pSchema ); if( SQLITE_NOMEM==sqlite3BtreeSetPageSize(pBt, db->nextPagesize, 0, 0) ){ sqlite3OomFault(db); return 1; } } return 0; } /* ** Record the fact that the schema cookie will need to be verified ** for database iDb. The code to actually verify the schema cookie ** will occur at the end of the top-level VDBE and will be generated ** later, by sqlite3FinishCoding(). */ SQLITE_PRIVATE void sqlite3CodeVerifySchema(Parse *pParse, int iDb){ Parse *pToplevel = sqlite3ParseToplevel(pParse); assert( iDb>=0 && iDbdb->nDb ); assert( pParse->db->aDb[iDb].pBt!=0 || iDb==1 ); assert( iDbdb, iDb, 0) ); if( DbMaskTest(pToplevel->cookieMask, iDb)==0 ){ DbMaskSet(pToplevel->cookieMask, iDb); if( !OMIT_TEMPDB && iDb==1 ){ sqlite3OpenTempDatabase(pToplevel); } } } /* ** If argument zDb is NULL, then call sqlite3CodeVerifySchema() for each ** attached database. Otherwise, invoke it for the database named zDb only. */ SQLITE_PRIVATE void sqlite3CodeVerifyNamedSchema(Parse *pParse, const char *zDb){ sqlite3 *db = pParse->db; int i; for(i=0; inDb; i++){ Db *pDb = &db->aDb[i]; if( pDb->pBt && (!zDb || 0==sqlite3StrICmp(zDb, pDb->zDbSName)) ){ sqlite3CodeVerifySchema(pParse, i); } } } /* ** Generate VDBE code that prepares for doing an operation that ** might change the database. ** ** This routine starts a new transaction if we are not already within ** a transaction. If we are already within a transaction, then a checkpoint ** is set if the setStatement parameter is true. A checkpoint should ** be set for operations that might fail (due to a constraint) part of ** the way through and which will need to undo some writes without having to ** rollback the whole transaction. For operations where all constraints ** can be checked before any changes are made to the database, it is never ** necessary to undo a write and the checkpoint should not be set. */ SQLITE_PRIVATE void sqlite3BeginWriteOperation(Parse *pParse, int setStatement, int iDb){ Parse *pToplevel = sqlite3ParseToplevel(pParse); sqlite3CodeVerifySchema(pParse, iDb); DbMaskSet(pToplevel->writeMask, iDb); pToplevel->isMultiWrite |= setStatement; } /* ** Indicate that the statement currently under construction might write ** more than one entry (example: deleting one row then inserting another, ** inserting multiple rows in a table, or inserting a row and index entries.) ** If an abort occurs after some of these writes have completed, then it will ** be necessary to undo the completed writes. */ SQLITE_PRIVATE void sqlite3MultiWrite(Parse *pParse){ Parse *pToplevel = sqlite3ParseToplevel(pParse); pToplevel->isMultiWrite = 1; } /* ** The code generator calls this routine if is discovers that it is ** possible to abort a statement prior to completion. In order to ** perform this abort without corrupting the database, we need to make ** sure that the statement is protected by a statement transaction. ** ** Technically, we only need to set the mayAbort flag if the ** isMultiWrite flag was previously set. There is a time dependency ** such that the abort must occur after the multiwrite. This makes ** some statements involving the REPLACE conflict resolution algorithm ** go a little faster. But taking advantage of this time dependency ** makes it more difficult to prove that the code is correct (in ** particular, it prevents us from writing an effective ** implementation of sqlite3AssertMayAbort()) and so we have chosen ** to take the safe route and skip the optimization. */ SQLITE_PRIVATE void sqlite3MayAbort(Parse *pParse){ Parse *pToplevel = sqlite3ParseToplevel(pParse); pToplevel->mayAbort = 1; } /* ** Code an OP_Halt that causes the vdbe to return an SQLITE_CONSTRAINT ** error. The onError parameter determines which (if any) of the statement ** and/or current transaction is rolled back. */ SQLITE_PRIVATE void sqlite3HaltConstraint( Parse *pParse, /* Parsing context */ int errCode, /* extended error code */ int onError, /* Constraint type */ char *p4, /* Error message */ i8 p4type, /* P4_STATIC or P4_TRANSIENT */ u8 p5Errmsg /* P5_ErrMsg type */ ){ Vdbe *v = sqlite3GetVdbe(pParse); assert( (errCode&0xff)==SQLITE_CONSTRAINT || pParse->nested ); if( onError==OE_Abort ){ sqlite3MayAbort(pParse); } sqlite3VdbeAddOp4(v, OP_Halt, errCode, onError, 0, p4, p4type); sqlite3VdbeChangeP5(v, p5Errmsg); } /* ** Code an OP_Halt due to UNIQUE or PRIMARY KEY constraint violation. */ SQLITE_PRIVATE void sqlite3UniqueConstraint( Parse *pParse, /* Parsing context */ int onError, /* Constraint type */ Index *pIdx /* The index that triggers the constraint */ ){ char *zErr; int j; StrAccum errMsg; Table *pTab = pIdx->pTable; sqlite3StrAccumInit(&errMsg, pParse->db, 0, 0, pParse->db->aLimit[SQLITE_LIMIT_LENGTH]); if( pIdx->aColExpr ){ sqlite3_str_appendf(&errMsg, "index '%q'", pIdx->zName); }else{ for(j=0; jnKeyCol; j++){ char *zCol; assert( pIdx->aiColumn[j]>=0 ); zCol = pTab->aCol[pIdx->aiColumn[j]].zName; if( j ) sqlite3_str_append(&errMsg, ", ", 2); sqlite3_str_appendall(&errMsg, pTab->zName); sqlite3_str_append(&errMsg, ".", 1); sqlite3_str_appendall(&errMsg, zCol); } } zErr = sqlite3StrAccumFinish(&errMsg); sqlite3HaltConstraint(pParse, IsPrimaryKeyIndex(pIdx) ? SQLITE_CONSTRAINT_PRIMARYKEY : SQLITE_CONSTRAINT_UNIQUE, onError, zErr, P4_DYNAMIC, P5_ConstraintUnique); } /* ** Code an OP_Halt due to non-unique rowid. */ SQLITE_PRIVATE void sqlite3RowidConstraint( Parse *pParse, /* Parsing context */ int onError, /* Conflict resolution algorithm */ Table *pTab /* The table with the non-unique rowid */ ){ char *zMsg; int rc; if( pTab->iPKey>=0 ){ zMsg = sqlite3MPrintf(pParse->db, "%s.%s", pTab->zName, pTab->aCol[pTab->iPKey].zName); rc = SQLITE_CONSTRAINT_PRIMARYKEY; }else{ zMsg = sqlite3MPrintf(pParse->db, "%s.rowid", pTab->zName); rc = SQLITE_CONSTRAINT_ROWID; } sqlite3HaltConstraint(pParse, rc, onError, zMsg, P4_DYNAMIC, P5_ConstraintUnique); } /* ** Check to see if pIndex uses the collating sequence pColl. Return ** true if it does and false if it does not. */ #ifndef SQLITE_OMIT_REINDEX static int collationMatch(const char *zColl, Index *pIndex){ int i; assert( zColl!=0 ); for(i=0; inColumn; i++){ const char *z = pIndex->azColl[i]; assert( z!=0 || pIndex->aiColumn[i]<0 ); if( pIndex->aiColumn[i]>=0 && 0==sqlite3StrICmp(z, zColl) ){ return 1; } } return 0; } #endif /* ** Recompute all indices of pTab that use the collating sequence pColl. ** If pColl==0 then recompute all indices of pTab. */ #ifndef SQLITE_OMIT_REINDEX static void reindexTable(Parse *pParse, Table *pTab, char const *zColl){ if( !IsVirtual(pTab) ){ Index *pIndex; /* An index associated with pTab */ for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){ if( zColl==0 || collationMatch(zColl, pIndex) ){ int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); sqlite3BeginWriteOperation(pParse, 0, iDb); sqlite3RefillIndex(pParse, pIndex, -1); } } } } #endif /* ** Recompute all indices of all tables in all databases where the ** indices use the collating sequence pColl. If pColl==0 then recompute ** all indices everywhere. */ #ifndef SQLITE_OMIT_REINDEX static void reindexDatabases(Parse *pParse, char const *zColl){ Db *pDb; /* A single database */ int iDb; /* The database index number */ sqlite3 *db = pParse->db; /* The database connection */ HashElem *k; /* For looping over tables in pDb */ Table *pTab; /* A table in the database */ assert( sqlite3BtreeHoldsAllMutexes(db) ); /* Needed for schema access */ for(iDb=0, pDb=db->aDb; iDbnDb; iDb++, pDb++){ assert( pDb!=0 ); for(k=sqliteHashFirst(&pDb->pSchema->tblHash); k; k=sqliteHashNext(k)){ pTab = (Table*)sqliteHashData(k); reindexTable(pParse, pTab, zColl); } } } #endif /* ** Generate code for the REINDEX command. ** ** REINDEX -- 1 ** REINDEX -- 2 ** REINDEX ?.? -- 3 ** REINDEX ?.? -- 4 ** ** Form 1 causes all indices in all attached databases to be rebuilt. ** Form 2 rebuilds all indices in all databases that use the named ** collating function. Forms 3 and 4 rebuild the named index or all ** indices associated with the named table. */ #ifndef SQLITE_OMIT_REINDEX SQLITE_PRIVATE void sqlite3Reindex(Parse *pParse, Token *pName1, Token *pName2){ CollSeq *pColl; /* Collating sequence to be reindexed, or NULL */ char *z; /* Name of a table or index */ const char *zDb; /* Name of the database */ Table *pTab; /* A table in the database */ Index *pIndex; /* An index associated with pTab */ int iDb; /* The database index number */ sqlite3 *db = pParse->db; /* The database connection */ Token *pObjName; /* Name of the table or index to be reindexed */ /* Read the database schema. If an error occurs, leave an error message ** and code in pParse and return NULL. */ if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ return; } if( pName1==0 ){ reindexDatabases(pParse, 0); return; }else if( NEVER(pName2==0) || pName2->z==0 ){ char *zColl; assert( pName1->z ); zColl = sqlite3NameFromToken(pParse->db, pName1); if( !zColl ) return; pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); if( pColl ){ reindexDatabases(pParse, zColl); sqlite3DbFree(db, zColl); return; } sqlite3DbFree(db, zColl); } iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pObjName); if( iDb<0 ) return; z = sqlite3NameFromToken(db, pObjName); if( z==0 ) return; zDb = db->aDb[iDb].zDbSName; pTab = sqlite3FindTable(db, z, zDb); if( pTab ){ reindexTable(pParse, pTab, 0); sqlite3DbFree(db, z); return; } pIndex = sqlite3FindIndex(db, z, zDb); sqlite3DbFree(db, z); if( pIndex ){ sqlite3BeginWriteOperation(pParse, 0, iDb); sqlite3RefillIndex(pParse, pIndex, -1); return; } sqlite3ErrorMsg(pParse, "unable to identify the object to be reindexed"); } #endif /* ** Return a KeyInfo structure that is appropriate for the given Index. ** ** The caller should invoke sqlite3KeyInfoUnref() on the returned object ** when it has finished using it. */ SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoOfIndex(Parse *pParse, Index *pIdx){ int i; int nCol = pIdx->nColumn; int nKey = pIdx->nKeyCol; KeyInfo *pKey; if( pParse->nErr ) return 0; if( pIdx->uniqNotNull ){ pKey = sqlite3KeyInfoAlloc(pParse->db, nKey, nCol-nKey); }else{ pKey = sqlite3KeyInfoAlloc(pParse->db, nCol, 0); } if( pKey ){ assert( sqlite3KeyInfoIsWriteable(pKey) ); for(i=0; iazColl[i]; pKey->aColl[i] = zColl==sqlite3StrBINARY ? 0 : sqlite3LocateCollSeq(pParse, zColl); pKey->aSortFlags[i] = pIdx->aSortOrder[i]; assert( 0==(pKey->aSortFlags[i] & KEYINFO_ORDER_BIGNULL) ); } if( pParse->nErr ){ assert( pParse->rc==SQLITE_ERROR_MISSING_COLLSEQ ); if( pIdx->bNoQuery==0 ){ /* Deactivate the index because it contains an unknown collating ** sequence. The only way to reactive the index is to reload the ** schema. Adding the missing collating sequence later does not ** reactive the index. The application had the chance to register ** the missing index using the collation-needed callback. For ** simplicity, SQLite will not give the application a second chance. */ pIdx->bNoQuery = 1; pParse->rc = SQLITE_ERROR_RETRY; } sqlite3KeyInfoUnref(pKey); pKey = 0; } } return pKey; } #ifndef SQLITE_OMIT_CTE /* ** This routine is invoked once per CTE by the parser while parsing a ** WITH clause. */ SQLITE_PRIVATE With *sqlite3WithAdd( Parse *pParse, /* Parsing context */ With *pWith, /* Existing WITH clause, or NULL */ Token *pName, /* Name of the common-table */ ExprList *pArglist, /* Optional column name list for the table */ Select *pQuery /* Query used to initialize the table */ ){ sqlite3 *db = pParse->db; With *pNew; char *zName; /* Check that the CTE name is unique within this WITH clause. If ** not, store an error in the Parse structure. */ zName = sqlite3NameFromToken(pParse->db, pName); if( zName && pWith ){ int i; for(i=0; inCte; i++){ if( sqlite3StrICmp(zName, pWith->a[i].zName)==0 ){ sqlite3ErrorMsg(pParse, "duplicate WITH table name: %s", zName); } } } if( pWith ){ sqlite3_int64 nByte = sizeof(*pWith) + (sizeof(pWith->a[1]) * pWith->nCte); pNew = sqlite3DbRealloc(db, pWith, nByte); }else{ pNew = sqlite3DbMallocZero(db, sizeof(*pWith)); } assert( (pNew!=0 && zName!=0) || db->mallocFailed ); if( db->mallocFailed ){ sqlite3ExprListDelete(db, pArglist); sqlite3SelectDelete(db, pQuery); sqlite3DbFree(db, zName); pNew = pWith; }else{ pNew->a[pNew->nCte].pSelect = pQuery; pNew->a[pNew->nCte].pCols = pArglist; pNew->a[pNew->nCte].zName = zName; pNew->a[pNew->nCte].zCteErr = 0; pNew->nCte++; } return pNew; } /* ** Free the contents of the With object passed as the second argument. */ SQLITE_PRIVATE void sqlite3WithDelete(sqlite3 *db, With *pWith){ if( pWith ){ int i; for(i=0; inCte; i++){ struct Cte *pCte = &pWith->a[i]; sqlite3ExprListDelete(db, pCte->pCols); sqlite3SelectDelete(db, pCte->pSelect); sqlite3DbFree(db, pCte->zName); } sqlite3DbFree(db, pWith); } } #endif /* !defined(SQLITE_OMIT_CTE) */ /************** End of build.c ***********************************************/ /************** Begin file callback.c ****************************************/ /* ** 2005 May 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains functions used to access the internal hash tables ** of user defined functions and collation sequences. */ /* #include "sqliteInt.h" */ /* ** Invoke the 'collation needed' callback to request a collation sequence ** in the encoding enc of name zName, length nName. */ static void callCollNeeded(sqlite3 *db, int enc, const char *zName){ assert( !db->xCollNeeded || !db->xCollNeeded16 ); if( db->xCollNeeded ){ char *zExternal = sqlite3DbStrDup(db, zName); if( !zExternal ) return; db->xCollNeeded(db->pCollNeededArg, db, enc, zExternal); sqlite3DbFree(db, zExternal); } #ifndef SQLITE_OMIT_UTF16 if( db->xCollNeeded16 ){ char const *zExternal; sqlite3_value *pTmp = sqlite3ValueNew(db); sqlite3ValueSetStr(pTmp, -1, zName, SQLITE_UTF8, SQLITE_STATIC); zExternal = sqlite3ValueText(pTmp, SQLITE_UTF16NATIVE); if( zExternal ){ db->xCollNeeded16(db->pCollNeededArg, db, (int)ENC(db), zExternal); } sqlite3ValueFree(pTmp); } #endif } /* ** This routine is called if the collation factory fails to deliver a ** collation function in the best encoding but there may be other versions ** of this collation function (for other text encodings) available. Use one ** of these instead if they exist. Avoid a UTF-8 <-> UTF-16 conversion if ** possible. */ static int synthCollSeq(sqlite3 *db, CollSeq *pColl){ CollSeq *pColl2; char *z = pColl->zName; int i; static const u8 aEnc[] = { SQLITE_UTF16BE, SQLITE_UTF16LE, SQLITE_UTF8 }; for(i=0; i<3; i++){ pColl2 = sqlite3FindCollSeq(db, aEnc[i], z, 0); if( pColl2->xCmp!=0 ){ memcpy(pColl, pColl2, sizeof(CollSeq)); pColl->xDel = 0; /* Do not copy the destructor */ return SQLITE_OK; } } return SQLITE_ERROR; } /* ** This routine is called on a collation sequence before it is used to ** check that it is defined. An undefined collation sequence exists when ** a database is loaded that contains references to collation sequences ** that have not been defined by sqlite3_create_collation() etc. ** ** If required, this routine calls the 'collation needed' callback to ** request a definition of the collating sequence. If this doesn't work, ** an equivalent collating sequence that uses a text encoding different ** from the main database is substituted, if one is available. */ SQLITE_PRIVATE int sqlite3CheckCollSeq(Parse *pParse, CollSeq *pColl){ if( pColl && pColl->xCmp==0 ){ const char *zName = pColl->zName; sqlite3 *db = pParse->db; CollSeq *p = sqlite3GetCollSeq(pParse, ENC(db), pColl, zName); if( !p ){ return SQLITE_ERROR; } assert( p==pColl ); } return SQLITE_OK; } /* ** Locate and return an entry from the db.aCollSeq hash table. If the entry ** specified by zName and nName is not found and parameter 'create' is ** true, then create a new entry. Otherwise return NULL. ** ** Each pointer stored in the sqlite3.aCollSeq hash table contains an ** array of three CollSeq structures. The first is the collation sequence ** preferred for UTF-8, the second UTF-16le, and the third UTF-16be. ** ** Stored immediately after the three collation sequences is a copy of ** the collation sequence name. A pointer to this string is stored in ** each collation sequence structure. */ static CollSeq *findCollSeqEntry( sqlite3 *db, /* Database connection */ const char *zName, /* Name of the collating sequence */ int create /* Create a new entry if true */ ){ CollSeq *pColl; pColl = sqlite3HashFind(&db->aCollSeq, zName); if( 0==pColl && create ){ int nName = sqlite3Strlen30(zName) + 1; pColl = sqlite3DbMallocZero(db, 3*sizeof(*pColl) + nName); if( pColl ){ CollSeq *pDel = 0; pColl[0].zName = (char*)&pColl[3]; pColl[0].enc = SQLITE_UTF8; pColl[1].zName = (char*)&pColl[3]; pColl[1].enc = SQLITE_UTF16LE; pColl[2].zName = (char*)&pColl[3]; pColl[2].enc = SQLITE_UTF16BE; memcpy(pColl[0].zName, zName, nName); pDel = sqlite3HashInsert(&db->aCollSeq, pColl[0].zName, pColl); /* If a malloc() failure occurred in sqlite3HashInsert(), it will ** return the pColl pointer to be deleted (because it wasn't added ** to the hash table). */ assert( pDel==0 || pDel==pColl ); if( pDel!=0 ){ sqlite3OomFault(db); sqlite3DbFree(db, pDel); pColl = 0; } } } return pColl; } /* ** Parameter zName points to a UTF-8 encoded string nName bytes long. ** Return the CollSeq* pointer for the collation sequence named zName ** for the encoding 'enc' from the database 'db'. ** ** If the entry specified is not found and 'create' is true, then create a ** new entry. Otherwise return NULL. ** ** A separate function sqlite3LocateCollSeq() is a wrapper around ** this routine. sqlite3LocateCollSeq() invokes the collation factory ** if necessary and generates an error message if the collating sequence ** cannot be found. ** ** See also: sqlite3LocateCollSeq(), sqlite3GetCollSeq() */ SQLITE_PRIVATE CollSeq *sqlite3FindCollSeq( sqlite3 *db, /* Database connection to search */ u8 enc, /* Desired text encoding */ const char *zName, /* Name of the collating sequence. Might be NULL */ int create /* True to create CollSeq if doesn't already exist */ ){ CollSeq *pColl; assert( SQLITE_UTF8==1 && SQLITE_UTF16LE==2 && SQLITE_UTF16BE==3 ); assert( enc>=SQLITE_UTF8 && enc<=SQLITE_UTF16BE ); if( zName ){ pColl = findCollSeqEntry(db, zName, create); if( pColl ) pColl += enc-1; }else{ pColl = db->pDfltColl; } return pColl; } /* ** Change the text encoding for a database connection. This means that ** the pDfltColl must change as well. */ SQLITE_PRIVATE void sqlite3SetTextEncoding(sqlite3 *db, u8 enc){ assert( enc==SQLITE_UTF8 || enc==SQLITE_UTF16LE || enc==SQLITE_UTF16BE ); db->enc = enc; /* EVIDENCE-OF: R-08308-17224 The default collating function for all ** strings is BINARY. */ db->pDfltColl = sqlite3FindCollSeq(db, enc, sqlite3StrBINARY, 0); } /* ** This function is responsible for invoking the collation factory callback ** or substituting a collation sequence of a different encoding when the ** requested collation sequence is not available in the desired encoding. ** ** If it is not NULL, then pColl must point to the database native encoding ** collation sequence with name zName, length nName. ** ** The return value is either the collation sequence to be used in database ** db for collation type name zName, length nName, or NULL, if no collation ** sequence can be found. If no collation is found, leave an error message. ** ** See also: sqlite3LocateCollSeq(), sqlite3FindCollSeq() */ SQLITE_PRIVATE CollSeq *sqlite3GetCollSeq( Parse *pParse, /* Parsing context */ u8 enc, /* The desired encoding for the collating sequence */ CollSeq *pColl, /* Collating sequence with native encoding, or NULL */ const char *zName /* Collating sequence name */ ){ CollSeq *p; sqlite3 *db = pParse->db; p = pColl; if( !p ){ p = sqlite3FindCollSeq(db, enc, zName, 0); } if( !p || !p->xCmp ){ /* No collation sequence of this type for this encoding is registered. ** Call the collation factory to see if it can supply us with one. */ callCollNeeded(db, enc, zName); p = sqlite3FindCollSeq(db, enc, zName, 0); } if( p && !p->xCmp && synthCollSeq(db, p) ){ p = 0; } assert( !p || p->xCmp ); if( p==0 ){ sqlite3ErrorMsg(pParse, "no such collation sequence: %s", zName); pParse->rc = SQLITE_ERROR_MISSING_COLLSEQ; } return p; } /* ** This function returns the collation sequence for database native text ** encoding identified by the string zName. ** ** If the requested collation sequence is not available, or not available ** in the database native encoding, the collation factory is invoked to ** request it. If the collation factory does not supply such a sequence, ** and the sequence is available in another text encoding, then that is ** returned instead. ** ** If no versions of the requested collations sequence are available, or ** another error occurs, NULL is returned and an error message written into ** pParse. ** ** This routine is a wrapper around sqlite3FindCollSeq(). This routine ** invokes the collation factory if the named collation cannot be found ** and generates an error message. ** ** See also: sqlite3FindCollSeq(), sqlite3GetCollSeq() */ SQLITE_PRIVATE CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char *zName){ sqlite3 *db = pParse->db; u8 enc = ENC(db); u8 initbusy = db->init.busy; CollSeq *pColl; pColl = sqlite3FindCollSeq(db, enc, zName, initbusy); if( !initbusy && (!pColl || !pColl->xCmp) ){ pColl = sqlite3GetCollSeq(pParse, enc, pColl, zName); } return pColl; } /* During the search for the best function definition, this procedure ** is called to test how well the function passed as the first argument ** matches the request for a function with nArg arguments in a system ** that uses encoding enc. The value returned indicates how well the ** request is matched. A higher value indicates a better match. ** ** If nArg is -1 that means to only return a match (non-zero) if p->nArg ** is also -1. In other words, we are searching for a function that ** takes a variable number of arguments. ** ** If nArg is -2 that means that we are searching for any function ** regardless of the number of arguments it uses, so return a positive ** match score for any ** ** The returned value is always between 0 and 6, as follows: ** ** 0: Not a match. ** 1: UTF8/16 conversion required and function takes any number of arguments. ** 2: UTF16 byte order change required and function takes any number of args. ** 3: encoding matches and function takes any number of arguments ** 4: UTF8/16 conversion required - argument count matches exactly ** 5: UTF16 byte order conversion required - argument count matches exactly ** 6: Perfect match: encoding and argument count match exactly. ** ** If nArg==(-2) then any function with a non-null xSFunc is ** a perfect match and any function with xSFunc NULL is ** a non-match. */ #define FUNC_PERFECT_MATCH 6 /* The score for a perfect match */ static int matchQuality( FuncDef *p, /* The function we are evaluating for match quality */ int nArg, /* Desired number of arguments. (-1)==any */ u8 enc /* Desired text encoding */ ){ int match; assert( p->nArg>=-1 ); /* Wrong number of arguments means "no match" */ if( p->nArg!=nArg ){ if( nArg==(-2) ) return (p->xSFunc==0) ? 0 : FUNC_PERFECT_MATCH; if( p->nArg>=0 ) return 0; } /* Give a better score to a function with a specific number of arguments ** than to function that accepts any number of arguments. */ if( p->nArg==nArg ){ match = 4; }else{ match = 1; } /* Bonus points if the text encoding matches */ if( enc==(p->funcFlags & SQLITE_FUNC_ENCMASK) ){ match += 2; /* Exact encoding match */ }else if( (enc & p->funcFlags & 2)!=0 ){ match += 1; /* Both are UTF16, but with different byte orders */ } return match; } /* ** Search a FuncDefHash for a function with the given name. Return ** a pointer to the matching FuncDef if found, or 0 if there is no match. */ SQLITE_PRIVATE FuncDef *sqlite3FunctionSearch( int h, /* Hash of the name */ const char *zFunc /* Name of function */ ){ FuncDef *p; for(p=sqlite3BuiltinFunctions.a[h]; p; p=p->u.pHash){ if( sqlite3StrICmp(p->zName, zFunc)==0 ){ return p; } } return 0; } /* ** Insert a new FuncDef into a FuncDefHash hash table. */ SQLITE_PRIVATE void sqlite3InsertBuiltinFuncs( FuncDef *aDef, /* List of global functions to be inserted */ int nDef /* Length of the apDef[] list */ ){ int i; for(i=0; i='a' && zName[0]<='z' ); pOther = sqlite3FunctionSearch(h, zName); if( pOther ){ assert( pOther!=&aDef[i] && pOther->pNext!=&aDef[i] ); aDef[i].pNext = pOther->pNext; pOther->pNext = &aDef[i]; }else{ aDef[i].pNext = 0; aDef[i].u.pHash = sqlite3BuiltinFunctions.a[h]; sqlite3BuiltinFunctions.a[h] = &aDef[i]; } } } /* ** Locate a user function given a name, a number of arguments and a flag ** indicating whether the function prefers UTF-16 over UTF-8. Return a ** pointer to the FuncDef structure that defines that function, or return ** NULL if the function does not exist. ** ** If the createFlag argument is true, then a new (blank) FuncDef ** structure is created and liked into the "db" structure if a ** no matching function previously existed. ** ** If nArg is -2, then the first valid function found is returned. A ** function is valid if xSFunc is non-zero. The nArg==(-2) ** case is used to see if zName is a valid function name for some number ** of arguments. If nArg is -2, then createFlag must be 0. ** ** If createFlag is false, then a function with the required name and ** number of arguments may be returned even if the eTextRep flag does not ** match that requested. */ SQLITE_PRIVATE FuncDef *sqlite3FindFunction( sqlite3 *db, /* An open database */ const char *zName, /* Name of the function. zero-terminated */ int nArg, /* Number of arguments. -1 means any number */ u8 enc, /* Preferred text encoding */ u8 createFlag /* Create new entry if true and does not otherwise exist */ ){ FuncDef *p; /* Iterator variable */ FuncDef *pBest = 0; /* Best match found so far */ int bestScore = 0; /* Score of best match */ int h; /* Hash value */ int nName; /* Length of the name */ assert( nArg>=(-2) ); assert( nArg>=(-1) || createFlag==0 ); nName = sqlite3Strlen30(zName); /* First search for a match amongst the application-defined functions. */ p = (FuncDef*)sqlite3HashFind(&db->aFunc, zName); while( p ){ int score = matchQuality(p, nArg, enc); if( score>bestScore ){ pBest = p; bestScore = score; } p = p->pNext; } /* If no match is found, search the built-in functions. ** ** If the DBFLAG_PreferBuiltin flag is set, then search the built-in ** functions even if a prior app-defined function was found. And give ** priority to built-in functions. ** ** Except, if createFlag is true, that means that we are trying to ** install a new function. Whatever FuncDef structure is returned it will ** have fields overwritten with new information appropriate for the ** new function. But the FuncDefs for built-in functions are read-only. ** So we must not search for built-ins when creating a new function. */ if( !createFlag && (pBest==0 || (db->mDbFlags & DBFLAG_PreferBuiltin)!=0) ){ bestScore = 0; h = SQLITE_FUNC_HASH(sqlite3UpperToLower[(u8)zName[0]], nName); p = sqlite3FunctionSearch(h, zName); while( p ){ int score = matchQuality(p, nArg, enc); if( score>bestScore ){ pBest = p; bestScore = score; } p = p->pNext; } } /* If the createFlag parameter is true and the search did not reveal an ** exact match for the name, number of arguments and encoding, then add a ** new entry to the hash table and return it. */ if( createFlag && bestScorezName = (const char*)&pBest[1]; pBest->nArg = (u16)nArg; pBest->funcFlags = enc; memcpy((char*)&pBest[1], zName, nName+1); for(z=(u8*)pBest->zName; *z; z++) *z = sqlite3UpperToLower[*z]; pOther = (FuncDef*)sqlite3HashInsert(&db->aFunc, pBest->zName, pBest); if( pOther==pBest ){ sqlite3DbFree(db, pBest); sqlite3OomFault(db); return 0; }else{ pBest->pNext = pOther; } } if( pBest && (pBest->xSFunc || createFlag) ){ return pBest; } return 0; } /* ** Free all resources held by the schema structure. The void* argument points ** at a Schema struct. This function does not call sqlite3DbFree(db, ) on the ** pointer itself, it just cleans up subsidiary resources (i.e. the contents ** of the schema hash tables). ** ** The Schema.cache_size variable is not cleared. */ SQLITE_PRIVATE void sqlite3SchemaClear(void *p){ Hash temp1; Hash temp2; HashElem *pElem; Schema *pSchema = (Schema *)p; temp1 = pSchema->tblHash; temp2 = pSchema->trigHash; sqlite3HashInit(&pSchema->trigHash); sqlite3HashClear(&pSchema->idxHash); for(pElem=sqliteHashFirst(&temp2); pElem; pElem=sqliteHashNext(pElem)){ sqlite3DeleteTrigger(0, (Trigger*)sqliteHashData(pElem)); } sqlite3HashClear(&temp2); sqlite3HashInit(&pSchema->tblHash); for(pElem=sqliteHashFirst(&temp1); pElem; pElem=sqliteHashNext(pElem)){ Table *pTab = sqliteHashData(pElem); sqlite3DeleteTable(0, pTab); } sqlite3HashClear(&temp1); sqlite3HashClear(&pSchema->fkeyHash); pSchema->pSeqTab = 0; if( pSchema->schemaFlags & DB_SchemaLoaded ){ pSchema->iGeneration++; } pSchema->schemaFlags &= ~(DB_SchemaLoaded|DB_ResetWanted); } /* ** Find and return the schema associated with a BTree. Create ** a new one if necessary. */ SQLITE_PRIVATE Schema *sqlite3SchemaGet(sqlite3 *db, Btree *pBt){ Schema * p; if( pBt ){ p = (Schema *)sqlite3BtreeSchema(pBt, sizeof(Schema), sqlite3SchemaClear); }else{ p = (Schema *)sqlite3DbMallocZero(0, sizeof(Schema)); } if( !p ){ sqlite3OomFault(db); }else if ( 0==p->file_format ){ sqlite3HashInit(&p->tblHash); sqlite3HashInit(&p->idxHash); sqlite3HashInit(&p->trigHash); sqlite3HashInit(&p->fkeyHash); p->enc = SQLITE_UTF8; } return p; } /************** End of callback.c ********************************************/ /************** Begin file delete.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that are called by the parser ** in order to generate code for DELETE FROM statements. */ /* #include "sqliteInt.h" */ /* ** While a SrcList can in general represent multiple tables and subqueries ** (as in the FROM clause of a SELECT statement) in this case it contains ** the name of a single table, as one might find in an INSERT, DELETE, ** or UPDATE statement. Look up that table in the symbol table and ** return a pointer. Set an error message and return NULL if the table ** name is not found or if any other error occurs. ** ** The following fields are initialized appropriate in pSrc: ** ** pSrc->a[0].pTab Pointer to the Table object ** pSrc->a[0].pIndex Pointer to the INDEXED BY index, if there is one ** */ SQLITE_PRIVATE Table *sqlite3SrcListLookup(Parse *pParse, SrcList *pSrc){ struct SrcList_item *pItem = pSrc->a; Table *pTab; assert( pItem && pSrc->nSrc>=1 ); pTab = sqlite3LocateTableItem(pParse, 0, pItem); sqlite3DeleteTable(pParse->db, pItem->pTab); pItem->pTab = pTab; if( pTab ){ pTab->nTabRef++; } if( sqlite3IndexedByLookup(pParse, pItem) ){ pTab = 0; } return pTab; } /* Return true if table pTab is read-only. ** ** A table is read-only if any of the following are true: ** ** 1) It is a virtual table and no implementation of the xUpdate method ** has been provided ** ** 2) It is a system table (i.e. sqlite_schema), this call is not ** part of a nested parse and writable_schema pragma has not ** been specified ** ** 3) The table is a shadow table, the database connection is in ** defensive mode, and the current sqlite3_prepare() ** is for a top-level SQL statement. */ static int tabIsReadOnly(Parse *pParse, Table *pTab){ sqlite3 *db; if( IsVirtual(pTab) ){ return sqlite3GetVTable(pParse->db, pTab)->pMod->pModule->xUpdate==0; } if( (pTab->tabFlags & (TF_Readonly|TF_Shadow))==0 ) return 0; db = pParse->db; if( (pTab->tabFlags & TF_Readonly)!=0 ){ return sqlite3WritableSchema(db)==0 && pParse->nested==0; } assert( pTab->tabFlags & TF_Shadow ); return sqlite3ReadOnlyShadowTables(db); } /* ** Check to make sure the given table is writable. If it is not ** writable, generate an error message and return 1. If it is ** writable return 0; */ SQLITE_PRIVATE int sqlite3IsReadOnly(Parse *pParse, Table *pTab, int viewOk){ if( tabIsReadOnly(pParse, pTab) ){ sqlite3ErrorMsg(pParse, "table %s may not be modified", pTab->zName); return 1; } #ifndef SQLITE_OMIT_VIEW if( !viewOk && pTab->pSelect ){ sqlite3ErrorMsg(pParse,"cannot modify %s because it is a view",pTab->zName); return 1; } #endif return 0; } #if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) /* ** Evaluate a view and store its result in an ephemeral table. The ** pWhere argument is an optional WHERE clause that restricts the ** set of rows in the view that are to be added to the ephemeral table. */ SQLITE_PRIVATE void sqlite3MaterializeView( Parse *pParse, /* Parsing context */ Table *pView, /* View definition */ Expr *pWhere, /* Optional WHERE clause to be added */ ExprList *pOrderBy, /* Optional ORDER BY clause */ Expr *pLimit, /* Optional LIMIT clause */ int iCur /* Cursor number for ephemeral table */ ){ SelectDest dest; Select *pSel; SrcList *pFrom; sqlite3 *db = pParse->db; int iDb = sqlite3SchemaToIndex(db, pView->pSchema); pWhere = sqlite3ExprDup(db, pWhere, 0); pFrom = sqlite3SrcListAppend(pParse, 0, 0, 0); if( pFrom ){ assert( pFrom->nSrc==1 ); pFrom->a[0].zName = sqlite3DbStrDup(db, pView->zName); pFrom->a[0].zDatabase = sqlite3DbStrDup(db, db->aDb[iDb].zDbSName); assert( pFrom->a[0].pOn==0 ); assert( pFrom->a[0].pUsing==0 ); } pSel = sqlite3SelectNew(pParse, 0, pFrom, pWhere, 0, 0, pOrderBy, SF_IncludeHidden, pLimit); sqlite3SelectDestInit(&dest, SRT_EphemTab, iCur); sqlite3Select(pParse, pSel, &dest); sqlite3SelectDelete(db, pSel); } #endif /* !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) */ #if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) && !defined(SQLITE_OMIT_SUBQUERY) /* ** Generate an expression tree to implement the WHERE, ORDER BY, ** and LIMIT/OFFSET portion of DELETE and UPDATE statements. ** ** DELETE FROM table_wxyz WHERE a<5 ORDER BY a LIMIT 1; ** \__________________________/ ** pLimitWhere (pInClause) */ SQLITE_PRIVATE Expr *sqlite3LimitWhere( Parse *pParse, /* The parser context */ SrcList *pSrc, /* the FROM clause -- which tables to scan */ Expr *pWhere, /* The WHERE clause. May be null */ ExprList *pOrderBy, /* The ORDER BY clause. May be null */ Expr *pLimit, /* The LIMIT clause. May be null */ char *zStmtType /* Either DELETE or UPDATE. For err msgs. */ ){ sqlite3 *db = pParse->db; Expr *pLhs = NULL; /* LHS of IN(SELECT...) operator */ Expr *pInClause = NULL; /* WHERE rowid IN ( select ) */ ExprList *pEList = NULL; /* Expression list contaning only pSelectRowid */ SrcList *pSelectSrc = NULL; /* SELECT rowid FROM x ... (dup of pSrc) */ Select *pSelect = NULL; /* Complete SELECT tree */ Table *pTab; /* Check that there isn't an ORDER BY without a LIMIT clause. */ if( pOrderBy && pLimit==0 ) { sqlite3ErrorMsg(pParse, "ORDER BY without LIMIT on %s", zStmtType); sqlite3ExprDelete(pParse->db, pWhere); sqlite3ExprListDelete(pParse->db, pOrderBy); return 0; } /* We only need to generate a select expression if there ** is a limit/offset term to enforce. */ if( pLimit == 0 ) { return pWhere; } /* Generate a select expression tree to enforce the limit/offset ** term for the DELETE or UPDATE statement. For example: ** DELETE FROM table_a WHERE col1=1 ORDER BY col2 LIMIT 1 OFFSET 1 ** becomes: ** DELETE FROM table_a WHERE rowid IN ( ** SELECT rowid FROM table_a WHERE col1=1 ORDER BY col2 LIMIT 1 OFFSET 1 ** ); */ pTab = pSrc->a[0].pTab; if( HasRowid(pTab) ){ pLhs = sqlite3PExpr(pParse, TK_ROW, 0, 0); pEList = sqlite3ExprListAppend( pParse, 0, sqlite3PExpr(pParse, TK_ROW, 0, 0) ); }else{ Index *pPk = sqlite3PrimaryKeyIndex(pTab); if( pPk->nKeyCol==1 ){ const char *zName = pTab->aCol[pPk->aiColumn[0]].zName; pLhs = sqlite3Expr(db, TK_ID, zName); pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db, TK_ID, zName)); }else{ int i; for(i=0; inKeyCol; i++){ Expr *p = sqlite3Expr(db, TK_ID, pTab->aCol[pPk->aiColumn[i]].zName); pEList = sqlite3ExprListAppend(pParse, pEList, p); } pLhs = sqlite3PExpr(pParse, TK_VECTOR, 0, 0); if( pLhs ){ pLhs->x.pList = sqlite3ExprListDup(db, pEList, 0); } } } /* duplicate the FROM clause as it is needed by both the DELETE/UPDATE tree ** and the SELECT subtree. */ pSrc->a[0].pTab = 0; pSelectSrc = sqlite3SrcListDup(pParse->db, pSrc, 0); pSrc->a[0].pTab = pTab; pSrc->a[0].pIBIndex = 0; /* generate the SELECT expression tree. */ pSelect = sqlite3SelectNew(pParse, pEList, pSelectSrc, pWhere, 0 ,0, pOrderBy,0,pLimit ); /* now generate the new WHERE rowid IN clause for the DELETE/UDPATE */ pInClause = sqlite3PExpr(pParse, TK_IN, pLhs, 0); sqlite3PExprAddSelect(pParse, pInClause, pSelect); return pInClause; } #endif /* defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) */ /* && !defined(SQLITE_OMIT_SUBQUERY) */ /* ** Generate code for a DELETE FROM statement. ** ** DELETE FROM table_wxyz WHERE a<5 AND b NOT NULL; ** \________/ \________________/ ** pTabList pWhere */ SQLITE_PRIVATE void sqlite3DeleteFrom( Parse *pParse, /* The parser context */ SrcList *pTabList, /* The table from which we should delete things */ Expr *pWhere, /* The WHERE clause. May be null */ ExprList *pOrderBy, /* ORDER BY clause. May be null */ Expr *pLimit /* LIMIT clause. May be null */ ){ Vdbe *v; /* The virtual database engine */ Table *pTab; /* The table from which records will be deleted */ int i; /* Loop counter */ WhereInfo *pWInfo; /* Information about the WHERE clause */ Index *pIdx; /* For looping over indices of the table */ int iTabCur; /* Cursor number for the table */ int iDataCur = 0; /* VDBE cursor for the canonical data source */ int iIdxCur = 0; /* Cursor number of the first index */ int nIdx; /* Number of indices */ sqlite3 *db; /* Main database structure */ AuthContext sContext; /* Authorization context */ NameContext sNC; /* Name context to resolve expressions in */ int iDb; /* Database number */ int memCnt = 0; /* Memory cell used for change counting */ int rcauth; /* Value returned by authorization callback */ int eOnePass; /* ONEPASS_OFF or _SINGLE or _MULTI */ int aiCurOnePass[2]; /* The write cursors opened by WHERE_ONEPASS */ u8 *aToOpen = 0; /* Open cursor iTabCur+j if aToOpen[j] is true */ Index *pPk; /* The PRIMARY KEY index on the table */ int iPk = 0; /* First of nPk registers holding PRIMARY KEY value */ i16 nPk = 1; /* Number of columns in the PRIMARY KEY */ int iKey; /* Memory cell holding key of row to be deleted */ i16 nKey; /* Number of memory cells in the row key */ int iEphCur = 0; /* Ephemeral table holding all primary key values */ int iRowSet = 0; /* Register for rowset of rows to delete */ int addrBypass = 0; /* Address of jump over the delete logic */ int addrLoop = 0; /* Top of the delete loop */ int addrEphOpen = 0; /* Instruction to open the Ephemeral table */ int bComplex; /* True if there are triggers or FKs or ** subqueries in the WHERE clause */ #ifndef SQLITE_OMIT_TRIGGER int isView; /* True if attempting to delete from a view */ Trigger *pTrigger; /* List of table triggers, if required */ #endif memset(&sContext, 0, sizeof(sContext)); db = pParse->db; if( pParse->nErr || db->mallocFailed ){ goto delete_from_cleanup; } assert( pTabList->nSrc==1 ); /* Locate the table which we want to delete. This table has to be ** put in an SrcList structure because some of the subroutines we ** will be calling are designed to work with multiple tables and expect ** an SrcList* parameter instead of just a Table* parameter. */ pTab = sqlite3SrcListLookup(pParse, pTabList); if( pTab==0 ) goto delete_from_cleanup; /* Figure out if we have any triggers and if the table being ** deleted from is a view */ #ifndef SQLITE_OMIT_TRIGGER pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0); isView = pTab->pSelect!=0; #else # define pTrigger 0 # define isView 0 #endif bComplex = pTrigger || sqlite3FkRequired(pParse, pTab, 0, 0); #ifdef SQLITE_OMIT_VIEW # undef isView # define isView 0 #endif #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT if( !isView ){ pWhere = sqlite3LimitWhere( pParse, pTabList, pWhere, pOrderBy, pLimit, "DELETE" ); pOrderBy = 0; pLimit = 0; } #endif /* If pTab is really a view, make sure it has been initialized. */ if( sqlite3ViewGetColumnNames(pParse, pTab) ){ goto delete_from_cleanup; } if( sqlite3IsReadOnly(pParse, pTab, (pTrigger?1:0)) ){ goto delete_from_cleanup; } iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDbnDb ); rcauth = sqlite3AuthCheck(pParse, SQLITE_DELETE, pTab->zName, 0, db->aDb[iDb].zDbSName); assert( rcauth==SQLITE_OK || rcauth==SQLITE_DENY || rcauth==SQLITE_IGNORE ); if( rcauth==SQLITE_DENY ){ goto delete_from_cleanup; } assert(!isView || pTrigger); /* Assign cursor numbers to the table and all its indices. */ assert( pTabList->nSrc==1 ); iTabCur = pTabList->a[0].iCursor = pParse->nTab++; for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ pParse->nTab++; } /* Start the view context */ if( isView ){ sqlite3AuthContextPush(pParse, &sContext, pTab->zName); } /* Begin generating code. */ v = sqlite3GetVdbe(pParse); if( v==0 ){ goto delete_from_cleanup; } if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); sqlite3BeginWriteOperation(pParse, bComplex, iDb); /* If we are trying to delete from a view, realize that view into ** an ephemeral table. */ #if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) if( isView ){ sqlite3MaterializeView(pParse, pTab, pWhere, pOrderBy, pLimit, iTabCur ); iDataCur = iIdxCur = iTabCur; pOrderBy = 0; pLimit = 0; } #endif /* Resolve the column names in the WHERE clause. */ memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; sNC.pSrcList = pTabList; if( sqlite3ResolveExprNames(&sNC, pWhere) ){ goto delete_from_cleanup; } /* Initialize the counter of the number of rows deleted, if ** we are counting rows. */ if( (db->flags & SQLITE_CountRows)!=0 && !pParse->nested && !pParse->pTriggerTab ){ memCnt = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, memCnt); } #ifndef SQLITE_OMIT_TRUNCATE_OPTIMIZATION /* Special case: A DELETE without a WHERE clause deletes everything. ** It is easier just to erase the whole table. Prior to version 3.6.5, ** this optimization caused the row change count (the value returned by ** API function sqlite3_count_changes) to be set incorrectly. ** ** The "rcauth==SQLITE_OK" terms is the ** IMPLEMENTATION-OF: R-17228-37124 If the action code is SQLITE_DELETE and ** the callback returns SQLITE_IGNORE then the DELETE operation proceeds but ** the truncate optimization is disabled and all rows are deleted ** individually. */ if( rcauth==SQLITE_OK && pWhere==0 && !bComplex && !IsVirtual(pTab) #ifdef SQLITE_ENABLE_PREUPDATE_HOOK && db->xPreUpdateCallback==0 #endif ){ assert( !isView ); sqlite3TableLock(pParse, iDb, pTab->tnum, 1, pTab->zName); if( HasRowid(pTab) ){ sqlite3VdbeAddOp4(v, OP_Clear, pTab->tnum, iDb, memCnt ? memCnt : -1, pTab->zName, P4_STATIC); } for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ assert( pIdx->pSchema==pTab->pSchema ); sqlite3VdbeAddOp2(v, OP_Clear, pIdx->tnum, iDb); } }else #endif /* SQLITE_OMIT_TRUNCATE_OPTIMIZATION */ { u16 wcf = WHERE_ONEPASS_DESIRED|WHERE_DUPLICATES_OK|WHERE_SEEK_TABLE; if( sNC.ncFlags & NC_VarSelect ) bComplex = 1; wcf |= (bComplex ? 0 : WHERE_ONEPASS_MULTIROW); if( HasRowid(pTab) ){ /* For a rowid table, initialize the RowSet to an empty set */ pPk = 0; nPk = 1; iRowSet = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Null, 0, iRowSet); }else{ /* For a WITHOUT ROWID table, create an ephemeral table used to ** hold all primary keys for rows to be deleted. */ pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk!=0 ); nPk = pPk->nKeyCol; iPk = pParse->nMem+1; pParse->nMem += nPk; iEphCur = pParse->nTab++; addrEphOpen = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iEphCur, nPk); sqlite3VdbeSetP4KeyInfo(pParse, pPk); } /* Construct a query to find the rowid or primary key for every row ** to be deleted, based on the WHERE clause. Set variable eOnePass ** to indicate the strategy used to implement this delete: ** ** ONEPASS_OFF: Two-pass approach - use a FIFO for rowids/PK values. ** ONEPASS_SINGLE: One-pass approach - at most one row deleted. ** ONEPASS_MULTI: One-pass approach - any number of rows may be deleted. */ pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, 0, 0, wcf, iTabCur+1); if( pWInfo==0 ) goto delete_from_cleanup; eOnePass = sqlite3WhereOkOnePass(pWInfo, aiCurOnePass); assert( IsVirtual(pTab)==0 || eOnePass!=ONEPASS_MULTI ); assert( IsVirtual(pTab) || bComplex || eOnePass!=ONEPASS_OFF ); if( eOnePass!=ONEPASS_SINGLE ) sqlite3MultiWrite(pParse); /* Keep track of the number of rows to be deleted */ if( memCnt ){ sqlite3VdbeAddOp2(v, OP_AddImm, memCnt, 1); } /* Extract the rowid or primary key for the current row */ if( pPk ){ for(i=0; iaiColumn[i]>=0 ); sqlite3ExprCodeGetColumnOfTable(v, pTab, iTabCur, pPk->aiColumn[i], iPk+i); } iKey = iPk; }else{ iKey = ++pParse->nMem; sqlite3ExprCodeGetColumnOfTable(v, pTab, iTabCur, -1, iKey); } if( eOnePass!=ONEPASS_OFF ){ /* For ONEPASS, no need to store the rowid/primary-key. There is only ** one, so just keep it in its register(s) and fall through to the ** delete code. */ nKey = nPk; /* OP_Found will use an unpacked key */ aToOpen = sqlite3DbMallocRawNN(db, nIdx+2); if( aToOpen==0 ){ sqlite3WhereEnd(pWInfo); goto delete_from_cleanup; } memset(aToOpen, 1, nIdx+1); aToOpen[nIdx+1] = 0; if( aiCurOnePass[0]>=0 ) aToOpen[aiCurOnePass[0]-iTabCur] = 0; if( aiCurOnePass[1]>=0 ) aToOpen[aiCurOnePass[1]-iTabCur] = 0; if( addrEphOpen ) sqlite3VdbeChangeToNoop(v, addrEphOpen); }else{ if( pPk ){ /* Add the PK key for this row to the temporary table */ iKey = ++pParse->nMem; nKey = 0; /* Zero tells OP_Found to use a composite key */ sqlite3VdbeAddOp4(v, OP_MakeRecord, iPk, nPk, iKey, sqlite3IndexAffinityStr(pParse->db, pPk), nPk); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iEphCur, iKey, iPk, nPk); }else{ /* Add the rowid of the row to be deleted to the RowSet */ nKey = 1; /* OP_DeferredSeek always uses a single rowid */ sqlite3VdbeAddOp2(v, OP_RowSetAdd, iRowSet, iKey); } } /* If this DELETE cannot use the ONEPASS strategy, this is the ** end of the WHERE loop */ if( eOnePass!=ONEPASS_OFF ){ addrBypass = sqlite3VdbeMakeLabel(pParse); }else{ sqlite3WhereEnd(pWInfo); } /* Unless this is a view, open cursors for the table we are ** deleting from and all its indices. If this is a view, then the ** only effect this statement has is to fire the INSTEAD OF ** triggers. */ if( !isView ){ int iAddrOnce = 0; if( eOnePass==ONEPASS_MULTI ){ iAddrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); } testcase( IsVirtual(pTab) ); sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, OPFLAG_FORDELETE, iTabCur, aToOpen, &iDataCur, &iIdxCur); assert( pPk || IsVirtual(pTab) || iDataCur==iTabCur ); assert( pPk || IsVirtual(pTab) || iIdxCur==iDataCur+1 ); if( eOnePass==ONEPASS_MULTI ){ sqlite3VdbeJumpHereOrPopInst(v, iAddrOnce); } } /* Set up a loop over the rowids/primary-keys that were found in the ** where-clause loop above. */ if( eOnePass!=ONEPASS_OFF ){ assert( nKey==nPk ); /* OP_Found will use an unpacked key */ if( !IsVirtual(pTab) && aToOpen[iDataCur-iTabCur] ){ assert( pPk!=0 || pTab->pSelect!=0 ); sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, addrBypass, iKey, nKey); VdbeCoverage(v); } }else if( pPk ){ addrLoop = sqlite3VdbeAddOp1(v, OP_Rewind, iEphCur); VdbeCoverage(v); if( IsVirtual(pTab) ){ sqlite3VdbeAddOp3(v, OP_Column, iEphCur, 0, iKey); }else{ sqlite3VdbeAddOp2(v, OP_RowData, iEphCur, iKey); } assert( nKey==0 ); /* OP_Found will use a composite key */ }else{ addrLoop = sqlite3VdbeAddOp3(v, OP_RowSetRead, iRowSet, 0, iKey); VdbeCoverage(v); assert( nKey==1 ); } /* Delete the row */ #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); sqlite3VtabMakeWritable(pParse, pTab); assert( eOnePass==ONEPASS_OFF || eOnePass==ONEPASS_SINGLE ); sqlite3MayAbort(pParse); if( eOnePass==ONEPASS_SINGLE ){ sqlite3VdbeAddOp1(v, OP_Close, iTabCur); if( sqlite3IsToplevel(pParse) ){ pParse->isMultiWrite = 0; } } sqlite3VdbeAddOp4(v, OP_VUpdate, 0, 1, iKey, pVTab, P4_VTAB); sqlite3VdbeChangeP5(v, OE_Abort); }else #endif { int count = (pParse->nested==0); /* True to count changes */ sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, iKey, nKey, count, OE_Default, eOnePass, aiCurOnePass[1]); } /* End of the loop over all rowids/primary-keys. */ if( eOnePass!=ONEPASS_OFF ){ sqlite3VdbeResolveLabel(v, addrBypass); sqlite3WhereEnd(pWInfo); }else if( pPk ){ sqlite3VdbeAddOp2(v, OP_Next, iEphCur, addrLoop+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addrLoop); }else{ sqlite3VdbeGoto(v, addrLoop); sqlite3VdbeJumpHere(v, addrLoop); } } /* End non-truncate path */ /* Update the sqlite_sequence table by storing the content of the ** maximum rowid counter values recorded while inserting into ** autoincrement tables. */ if( pParse->nested==0 && pParse->pTriggerTab==0 ){ sqlite3AutoincrementEnd(pParse); } /* Return the number of rows that were deleted. If this routine is ** generating code because of a call to sqlite3NestedParse(), do not ** invoke the callback function. */ if( memCnt ){ sqlite3VdbeAddOp2(v, OP_ResultRow, memCnt, 1); sqlite3VdbeSetNumCols(v, 1); sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows deleted", SQLITE_STATIC); } delete_from_cleanup: sqlite3AuthContextPop(&sContext); sqlite3SrcListDelete(db, pTabList); sqlite3ExprDelete(db, pWhere); #if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) sqlite3ExprListDelete(db, pOrderBy); sqlite3ExprDelete(db, pLimit); #endif sqlite3DbFree(db, aToOpen); return; } /* Make sure "isView" and other macros defined above are undefined. Otherwise ** they may interfere with compilation of other functions in this file ** (or in another file, if this file becomes part of the amalgamation). */ #ifdef isView #undef isView #endif #ifdef pTrigger #undef pTrigger #endif /* ** This routine generates VDBE code that causes a single row of a ** single table to be deleted. Both the original table entry and ** all indices are removed. ** ** Preconditions: ** ** 1. iDataCur is an open cursor on the btree that is the canonical data ** store for the table. (This will be either the table itself, ** in the case of a rowid table, or the PRIMARY KEY index in the case ** of a WITHOUT ROWID table.) ** ** 2. Read/write cursors for all indices of pTab must be open as ** cursor number iIdxCur+i for the i-th index. ** ** 3. The primary key for the row to be deleted must be stored in a ** sequence of nPk memory cells starting at iPk. If nPk==0 that means ** that a search record formed from OP_MakeRecord is contained in the ** single memory location iPk. ** ** eMode: ** Parameter eMode may be passed either ONEPASS_OFF (0), ONEPASS_SINGLE, or ** ONEPASS_MULTI. If eMode is not ONEPASS_OFF, then the cursor ** iDataCur already points to the row to delete. If eMode is ONEPASS_OFF ** then this function must seek iDataCur to the entry identified by iPk ** and nPk before reading from it. ** ** If eMode is ONEPASS_MULTI, then this call is being made as part ** of a ONEPASS delete that affects multiple rows. In this case, if ** iIdxNoSeek is a valid cursor number (>=0) and is not the same as ** iDataCur, then its position should be preserved following the delete ** operation. Or, if iIdxNoSeek is not a valid cursor number, the ** position of iDataCur should be preserved instead. ** ** iIdxNoSeek: ** If iIdxNoSeek is a valid cursor number (>=0) not equal to iDataCur, ** then it identifies an index cursor (from within array of cursors ** starting at iIdxCur) that already points to the index entry to be deleted. ** Except, this optimization is disabled if there are BEFORE triggers since ** the trigger body might have moved the cursor. */ SQLITE_PRIVATE void sqlite3GenerateRowDelete( Parse *pParse, /* Parsing context */ Table *pTab, /* Table containing the row to be deleted */ Trigger *pTrigger, /* List of triggers to (potentially) fire */ int iDataCur, /* Cursor from which column data is extracted */ int iIdxCur, /* First index cursor */ int iPk, /* First memory cell containing the PRIMARY KEY */ i16 nPk, /* Number of PRIMARY KEY memory cells */ u8 count, /* If non-zero, increment the row change counter */ u8 onconf, /* Default ON CONFLICT policy for triggers */ u8 eMode, /* ONEPASS_OFF, _SINGLE, or _MULTI. See above */ int iIdxNoSeek /* Cursor number of cursor that does not need seeking */ ){ Vdbe *v = pParse->pVdbe; /* Vdbe */ int iOld = 0; /* First register in OLD.* array */ int iLabel; /* Label resolved to end of generated code */ u8 opSeek; /* Seek opcode */ /* Vdbe is guaranteed to have been allocated by this stage. */ assert( v ); VdbeModuleComment((v, "BEGIN: GenRowDel(%d,%d,%d,%d)", iDataCur, iIdxCur, iPk, (int)nPk)); /* Seek cursor iCur to the row to delete. If this row no longer exists ** (this can happen if a trigger program has already deleted it), do ** not attempt to delete it or fire any DELETE triggers. */ iLabel = sqlite3VdbeMakeLabel(pParse); opSeek = HasRowid(pTab) ? OP_NotExists : OP_NotFound; if( eMode==ONEPASS_OFF ){ sqlite3VdbeAddOp4Int(v, opSeek, iDataCur, iLabel, iPk, nPk); VdbeCoverageIf(v, opSeek==OP_NotExists); VdbeCoverageIf(v, opSeek==OP_NotFound); } /* If there are any triggers to fire, allocate a range of registers to ** use for the old.* references in the triggers. */ if( sqlite3FkRequired(pParse, pTab, 0, 0) || pTrigger ){ u32 mask; /* Mask of OLD.* columns in use */ int iCol; /* Iterator used while populating OLD.* */ int addrStart; /* Start of BEFORE trigger programs */ /* TODO: Could use temporary registers here. Also could attempt to ** avoid copying the contents of the rowid register. */ mask = sqlite3TriggerColmask( pParse, pTrigger, 0, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onconf ); mask |= sqlite3FkOldmask(pParse, pTab); iOld = pParse->nMem+1; pParse->nMem += (1 + pTab->nCol); /* Populate the OLD.* pseudo-table register array. These values will be ** used by any BEFORE and AFTER triggers that exist. */ sqlite3VdbeAddOp2(v, OP_Copy, iPk, iOld); for(iCol=0; iColnCol; iCol++){ testcase( mask!=0xffffffff && iCol==31 ); testcase( mask!=0xffffffff && iCol==32 ); if( mask==0xffffffff || (iCol<=31 && (mask & MASKBIT32(iCol))!=0) ){ int kk = sqlite3TableColumnToStorage(pTab, iCol); sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, iCol, iOld+kk+1); } } /* Invoke BEFORE DELETE trigger programs. */ addrStart = sqlite3VdbeCurrentAddr(v); sqlite3CodeRowTrigger(pParse, pTrigger, TK_DELETE, 0, TRIGGER_BEFORE, pTab, iOld, onconf, iLabel ); /* If any BEFORE triggers were coded, then seek the cursor to the ** row to be deleted again. It may be that the BEFORE triggers moved ** the cursor or already deleted the row that the cursor was ** pointing to. ** ** Also disable the iIdxNoSeek optimization since the BEFORE trigger ** may have moved that cursor. */ if( addrStart=0 ); iIdxNoSeek = -1; } /* Do FK processing. This call checks that any FK constraints that ** refer to this table (i.e. constraints attached to other tables) ** are not violated by deleting this row. */ sqlite3FkCheck(pParse, pTab, iOld, 0, 0, 0); } /* Delete the index and table entries. Skip this step if pTab is really ** a view (in which case the only effect of the DELETE statement is to ** fire the INSTEAD OF triggers). ** ** If variable 'count' is non-zero, then this OP_Delete instruction should ** invoke the update-hook. The pre-update-hook, on the other hand should ** be invoked unless table pTab is a system table. The difference is that ** the update-hook is not invoked for rows removed by REPLACE, but the ** pre-update-hook is. */ if( pTab->pSelect==0 ){ u8 p5 = 0; sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur,0,iIdxNoSeek); sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, (count?OPFLAG_NCHANGE:0)); if( pParse->nested==0 || 0==sqlite3_stricmp(pTab->zName, "sqlite_stat1") ){ sqlite3VdbeAppendP4(v, (char*)pTab, P4_TABLE); } if( eMode!=ONEPASS_OFF ){ sqlite3VdbeChangeP5(v, OPFLAG_AUXDELETE); } if( iIdxNoSeek>=0 && iIdxNoSeek!=iDataCur ){ sqlite3VdbeAddOp1(v, OP_Delete, iIdxNoSeek); } if( eMode==ONEPASS_MULTI ) p5 |= OPFLAG_SAVEPOSITION; sqlite3VdbeChangeP5(v, p5); } /* Do any ON CASCADE, SET NULL or SET DEFAULT operations required to ** handle rows (possibly in other tables) that refer via a foreign key ** to the row just deleted. */ sqlite3FkActions(pParse, pTab, 0, iOld, 0, 0); /* Invoke AFTER DELETE trigger programs. */ sqlite3CodeRowTrigger(pParse, pTrigger, TK_DELETE, 0, TRIGGER_AFTER, pTab, iOld, onconf, iLabel ); /* Jump here if the row had already been deleted before any BEFORE ** trigger programs were invoked. Or if a trigger program throws a ** RAISE(IGNORE) exception. */ sqlite3VdbeResolveLabel(v, iLabel); VdbeModuleComment((v, "END: GenRowDel()")); } /* ** This routine generates VDBE code that causes the deletion of all ** index entries associated with a single row of a single table, pTab ** ** Preconditions: ** ** 1. A read/write cursor "iDataCur" must be open on the canonical storage ** btree for the table pTab. (This will be either the table itself ** for rowid tables or to the primary key index for WITHOUT ROWID ** tables.) ** ** 2. Read/write cursors for all indices of pTab must be open as ** cursor number iIdxCur+i for the i-th index. (The pTab->pIndex ** index is the 0-th index.) ** ** 3. The "iDataCur" cursor must be already be positioned on the row ** that is to be deleted. */ SQLITE_PRIVATE void sqlite3GenerateRowIndexDelete( Parse *pParse, /* Parsing and code generating context */ Table *pTab, /* Table containing the row to be deleted */ int iDataCur, /* Cursor of table holding data. */ int iIdxCur, /* First index cursor */ int *aRegIdx, /* Only delete if aRegIdx!=0 && aRegIdx[i]>0 */ int iIdxNoSeek /* Do not delete from this cursor */ ){ int i; /* Index loop counter */ int r1 = -1; /* Register holding an index key */ int iPartIdxLabel; /* Jump destination for skipping partial index entries */ Index *pIdx; /* Current index */ Index *pPrior = 0; /* Prior index */ Vdbe *v; /* The prepared statement under construction */ Index *pPk; /* PRIMARY KEY index, or NULL for rowid tables */ v = pParse->pVdbe; pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); for(i=0, pIdx=pTab->pIndex; pIdx; i++, pIdx=pIdx->pNext){ assert( iIdxCur+i!=iDataCur || pPk==pIdx ); if( aRegIdx!=0 && aRegIdx[i]==0 ) continue; if( pIdx==pPk ) continue; if( iIdxCur+i==iIdxNoSeek ) continue; VdbeModuleComment((v, "GenRowIdxDel for %s", pIdx->zName)); r1 = sqlite3GenerateIndexKey(pParse, pIdx, iDataCur, 0, 1, &iPartIdxLabel, pPrior, r1); sqlite3VdbeAddOp3(v, OP_IdxDelete, iIdxCur+i, r1, pIdx->uniqNotNull ? pIdx->nKeyCol : pIdx->nColumn); sqlite3VdbeChangeP5(v, 1); /* Cause IdxDelete to error if no entry found */ sqlite3ResolvePartIdxLabel(pParse, iPartIdxLabel); pPrior = pIdx; } } /* ** Generate code that will assemble an index key and stores it in register ** regOut. The key with be for index pIdx which is an index on pTab. ** iCur is the index of a cursor open on the pTab table and pointing to ** the entry that needs indexing. If pTab is a WITHOUT ROWID table, then ** iCur must be the cursor of the PRIMARY KEY index. ** ** Return a register number which is the first in a block of ** registers that holds the elements of the index key. The ** block of registers has already been deallocated by the time ** this routine returns. ** ** If *piPartIdxLabel is not NULL, fill it in with a label and jump ** to that label if pIdx is a partial index that should be skipped. ** The label should be resolved using sqlite3ResolvePartIdxLabel(). ** A partial index should be skipped if its WHERE clause evaluates ** to false or null. If pIdx is not a partial index, *piPartIdxLabel ** will be set to zero which is an empty label that is ignored by ** sqlite3ResolvePartIdxLabel(). ** ** The pPrior and regPrior parameters are used to implement a cache to ** avoid unnecessary register loads. If pPrior is not NULL, then it is ** a pointer to a different index for which an index key has just been ** computed into register regPrior. If the current pIdx index is generating ** its key into the same sequence of registers and if pPrior and pIdx share ** a column in common, then the register corresponding to that column already ** holds the correct value and the loading of that register is skipped. ** This optimization is helpful when doing a DELETE or an INTEGRITY_CHECK ** on a table with multiple indices, and especially with the ROWID or ** PRIMARY KEY columns of the index. */ SQLITE_PRIVATE int sqlite3GenerateIndexKey( Parse *pParse, /* Parsing context */ Index *pIdx, /* The index for which to generate a key */ int iDataCur, /* Cursor number from which to take column data */ int regOut, /* Put the new key into this register if not 0 */ int prefixOnly, /* Compute only a unique prefix of the key */ int *piPartIdxLabel, /* OUT: Jump to this label to skip partial index */ Index *pPrior, /* Previously generated index key */ int regPrior /* Register holding previous generated key */ ){ Vdbe *v = pParse->pVdbe; int j; int regBase; int nCol; if( piPartIdxLabel ){ if( pIdx->pPartIdxWhere ){ *piPartIdxLabel = sqlite3VdbeMakeLabel(pParse); pParse->iSelfTab = iDataCur + 1; sqlite3ExprIfFalseDup(pParse, pIdx->pPartIdxWhere, *piPartIdxLabel, SQLITE_JUMPIFNULL); pParse->iSelfTab = 0; pPrior = 0; /* Ticket a9efb42811fa41ee 2019-11-02; ** pPartIdxWhere may have corrupted regPrior registers */ }else{ *piPartIdxLabel = 0; } } nCol = (prefixOnly && pIdx->uniqNotNull) ? pIdx->nKeyCol : pIdx->nColumn; regBase = sqlite3GetTempRange(pParse, nCol); if( pPrior && (regBase!=regPrior || pPrior->pPartIdxWhere) ) pPrior = 0; for(j=0; jaiColumn[j]==pIdx->aiColumn[j] && pPrior->aiColumn[j]!=XN_EXPR ){ /* This column was already computed by the previous index */ continue; } sqlite3ExprCodeLoadIndexColumn(pParse, pIdx, iDataCur, j, regBase+j); /* If the column affinity is REAL but the number is an integer, then it ** might be stored in the table as an integer (using a compact ** representation) then converted to REAL by an OP_RealAffinity opcode. ** But we are getting ready to store this value back into an index, where ** it should be converted by to INTEGER again. So omit the OP_RealAffinity ** opcode if it is present */ sqlite3VdbeDeletePriorOpcode(v, OP_RealAffinity); } if( regOut ){ sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nCol, regOut); if( pIdx->pTable->pSelect ){ const char *zAff = sqlite3IndexAffinityStr(pParse->db, pIdx); sqlite3VdbeChangeP4(v, -1, zAff, P4_TRANSIENT); } } sqlite3ReleaseTempRange(pParse, regBase, nCol); return regBase; } /* ** If a prior call to sqlite3GenerateIndexKey() generated a jump-over label ** because it was a partial index, then this routine should be called to ** resolve that label. */ SQLITE_PRIVATE void sqlite3ResolvePartIdxLabel(Parse *pParse, int iLabel){ if( iLabel ){ sqlite3VdbeResolveLabel(pParse->pVdbe, iLabel); } } /************** End of delete.c **********************************************/ /************** Begin file func.c ********************************************/ /* ** 2002 February 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the C-language implementations for many of the SQL ** functions of SQLite. (Some function, and in particular the date and ** time functions, are implemented separately.) */ /* #include "sqliteInt.h" */ /* #include */ /* #include */ #ifndef SQLITE_OMIT_FLOATING_POINT /* #include */ #endif /* #include "vdbeInt.h" */ /* ** Return the collating function associated with a function. */ static CollSeq *sqlite3GetFuncCollSeq(sqlite3_context *context){ VdbeOp *pOp; assert( context->pVdbe!=0 ); pOp = &context->pVdbe->aOp[context->iOp-1]; assert( pOp->opcode==OP_CollSeq ); assert( pOp->p4type==P4_COLLSEQ ); return pOp->p4.pColl; } /* ** Indicate that the accumulator load should be skipped on this ** iteration of the aggregate loop. */ static void sqlite3SkipAccumulatorLoad(sqlite3_context *context){ assert( context->isError<=0 ); context->isError = -1; context->skipFlag = 1; } /* ** Implementation of the non-aggregate min() and max() functions */ static void minmaxFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ int i; int mask; /* 0 for min() or 0xffffffff for max() */ int iBest; CollSeq *pColl; assert( argc>1 ); mask = sqlite3_user_data(context)==0 ? 0 : -1; pColl = sqlite3GetFuncCollSeq(context); assert( pColl ); assert( mask==-1 || mask==0 ); iBest = 0; if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; for(i=1; i=0 ){ testcase( mask==0 ); iBest = i; } } sqlite3_result_value(context, argv[iBest]); } /* ** Return the type of the argument. */ static void typeofFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ static const char *azType[] = { "integer", "real", "text", "blob", "null" }; int i = sqlite3_value_type(argv[0]) - 1; UNUSED_PARAMETER(NotUsed); assert( i>=0 && i=0xc0 ){ while( (*z & 0xc0)==0x80 ){ z++; z0++; } } } sqlite3_result_int(context, (int)(z-z0)); break; } default: { sqlite3_result_null(context); break; } } } /* ** Implementation of the abs() function. ** ** IMP: R-23979-26855 The abs(X) function returns the absolute value of ** the numeric argument X. */ static void absFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ assert( argc==1 ); UNUSED_PARAMETER(argc); switch( sqlite3_value_type(argv[0]) ){ case SQLITE_INTEGER: { i64 iVal = sqlite3_value_int64(argv[0]); if( iVal<0 ){ if( iVal==SMALLEST_INT64 ){ /* IMP: R-31676-45509 If X is the integer -9223372036854775808 ** then abs(X) throws an integer overflow error since there is no ** equivalent positive 64-bit two complement value. */ sqlite3_result_error(context, "integer overflow", -1); return; } iVal = -iVal; } sqlite3_result_int64(context, iVal); break; } case SQLITE_NULL: { /* IMP: R-37434-19929 Abs(X) returns NULL if X is NULL. */ sqlite3_result_null(context); break; } default: { /* Because sqlite3_value_double() returns 0.0 if the argument is not ** something that can be converted into a number, we have: ** IMP: R-01992-00519 Abs(X) returns 0.0 if X is a string or blob ** that cannot be converted to a numeric value. */ double rVal = sqlite3_value_double(argv[0]); if( rVal<0 ) rVal = -rVal; sqlite3_result_double(context, rVal); break; } } } /* ** Implementation of the instr() function. ** ** instr(haystack,needle) finds the first occurrence of needle ** in haystack and returns the number of previous characters plus 1, ** or 0 if needle does not occur within haystack. ** ** If both haystack and needle are BLOBs, then the result is one more than ** the number of bytes in haystack prior to the first occurrence of needle, ** or 0 if needle never occurs in haystack. */ static void instrFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *zHaystack; const unsigned char *zNeedle; int nHaystack; int nNeedle; int typeHaystack, typeNeedle; int N = 1; int isText; unsigned char firstChar; sqlite3_value *pC1 = 0; sqlite3_value *pC2 = 0; UNUSED_PARAMETER(argc); typeHaystack = sqlite3_value_type(argv[0]); typeNeedle = sqlite3_value_type(argv[1]); if( typeHaystack==SQLITE_NULL || typeNeedle==SQLITE_NULL ) return; nHaystack = sqlite3_value_bytes(argv[0]); nNeedle = sqlite3_value_bytes(argv[1]); if( nNeedle>0 ){ if( typeHaystack==SQLITE_BLOB && typeNeedle==SQLITE_BLOB ){ zHaystack = sqlite3_value_blob(argv[0]); zNeedle = sqlite3_value_blob(argv[1]); isText = 0; }else if( typeHaystack!=SQLITE_BLOB && typeNeedle!=SQLITE_BLOB ){ zHaystack = sqlite3_value_text(argv[0]); zNeedle = sqlite3_value_text(argv[1]); isText = 1; }else{ pC1 = sqlite3_value_dup(argv[0]); zHaystack = sqlite3_value_text(pC1); if( zHaystack==0 ) goto endInstrOOM; nHaystack = sqlite3_value_bytes(pC1); pC2 = sqlite3_value_dup(argv[1]); zNeedle = sqlite3_value_text(pC2); if( zNeedle==0 ) goto endInstrOOM; nNeedle = sqlite3_value_bytes(pC2); isText = 1; } if( zNeedle==0 || (nHaystack && zHaystack==0) ) goto endInstrOOM; firstChar = zNeedle[0]; while( nNeedle<=nHaystack && (zHaystack[0]!=firstChar || memcmp(zHaystack, zNeedle, nNeedle)!=0) ){ N++; do{ nHaystack--; zHaystack++; }while( isText && (zHaystack[0]&0xc0)==0x80 ); } if( nNeedle>nHaystack ) N = 0; } sqlite3_result_int(context, N); endInstr: sqlite3_value_free(pC1); sqlite3_value_free(pC2); return; endInstrOOM: sqlite3_result_error_nomem(context); goto endInstr; } /* ** Implementation of the printf() function. */ static void printfFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ PrintfArguments x; StrAccum str; const char *zFormat; int n; sqlite3 *db = sqlite3_context_db_handle(context); if( argc>=1 && (zFormat = (const char*)sqlite3_value_text(argv[0]))!=0 ){ x.nArg = argc-1; x.nUsed = 0; x.apArg = argv+1; sqlite3StrAccumInit(&str, db, 0, 0, db->aLimit[SQLITE_LIMIT_LENGTH]); str.printfFlags = SQLITE_PRINTF_SQLFUNC; sqlite3_str_appendf(&str, zFormat, &x); n = str.nChar; sqlite3_result_text(context, sqlite3StrAccumFinish(&str), n, SQLITE_DYNAMIC); } } /* ** Implementation of the substr() function. ** ** substr(x,p1,p2) returns p2 characters of x[] beginning with p1. ** p1 is 1-indexed. So substr(x,1,1) returns the first character ** of x. If x is text, then we actually count UTF-8 characters. ** If x is a blob, then we count bytes. ** ** If p1 is negative, then we begin abs(p1) from the end of x[]. ** ** If p2 is negative, return the p2 characters preceding p1. */ static void substrFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *z; const unsigned char *z2; int len; int p0type; i64 p1, p2; int negP2 = 0; assert( argc==3 || argc==2 ); if( sqlite3_value_type(argv[1])==SQLITE_NULL || (argc==3 && sqlite3_value_type(argv[2])==SQLITE_NULL) ){ return; } p0type = sqlite3_value_type(argv[0]); p1 = sqlite3_value_int(argv[1]); if( p0type==SQLITE_BLOB ){ len = sqlite3_value_bytes(argv[0]); z = sqlite3_value_blob(argv[0]); if( z==0 ) return; assert( len==sqlite3_value_bytes(argv[0]) ); }else{ z = sqlite3_value_text(argv[0]); if( z==0 ) return; len = 0; if( p1<0 ){ for(z2=z; *z2; len++){ SQLITE_SKIP_UTF8(z2); } } } #ifdef SQLITE_SUBSTR_COMPATIBILITY /* If SUBSTR_COMPATIBILITY is defined then substr(X,0,N) work the same as ** as substr(X,1,N) - it returns the first N characters of X. This ** is essentially a back-out of the bug-fix in check-in [5fc125d362df4b8] ** from 2009-02-02 for compatibility of applications that exploited the ** old buggy behavior. */ if( p1==0 ) p1 = 1; /* */ #endif if( argc==3 ){ p2 = sqlite3_value_int(argv[2]); if( p2<0 ){ p2 = -p2; negP2 = 1; } }else{ p2 = sqlite3_context_db_handle(context)->aLimit[SQLITE_LIMIT_LENGTH]; } if( p1<0 ){ p1 += len; if( p1<0 ){ p2 += p1; if( p2<0 ) p2 = 0; p1 = 0; } }else if( p1>0 ){ p1--; }else if( p2>0 ){ p2--; } if( negP2 ){ p1 -= p2; if( p1<0 ){ p2 += p1; p1 = 0; } } assert( p1>=0 && p2>=0 ); if( p0type!=SQLITE_BLOB ){ while( *z && p1 ){ SQLITE_SKIP_UTF8(z); p1--; } for(z2=z; *z2 && p2; p2--){ SQLITE_SKIP_UTF8(z2); } sqlite3_result_text64(context, (char*)z, z2-z, SQLITE_TRANSIENT, SQLITE_UTF8); }else{ if( p1+p2>len ){ p2 = len-p1; if( p2<0 ) p2 = 0; } sqlite3_result_blob64(context, (char*)&z[p1], (u64)p2, SQLITE_TRANSIENT); } } /* ** Implementation of the round() function */ #ifndef SQLITE_OMIT_FLOATING_POINT static void roundFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ int n = 0; double r; char *zBuf; assert( argc==1 || argc==2 ); if( argc==2 ){ if( SQLITE_NULL==sqlite3_value_type(argv[1]) ) return; n = sqlite3_value_int(argv[1]); if( n>30 ) n = 30; if( n<0 ) n = 0; } if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; r = sqlite3_value_double(argv[0]); /* If Y==0 and X will fit in a 64-bit int, ** handle the rounding directly, ** otherwise use printf. */ if( r<-4503599627370496.0 || r>+4503599627370496.0 ){ /* The value has no fractional part so there is nothing to round */ }else if( n==0 ){ r = (double)((sqlite_int64)(r+(r<0?-0.5:+0.5))); }else{ zBuf = sqlite3_mprintf("%.*f",n,r); if( zBuf==0 ){ sqlite3_result_error_nomem(context); return; } sqlite3AtoF(zBuf, &r, sqlite3Strlen30(zBuf), SQLITE_UTF8); sqlite3_free(zBuf); } sqlite3_result_double(context, r); } #endif /* ** Allocate nByte bytes of space using sqlite3Malloc(). If the ** allocation fails, call sqlite3_result_error_nomem() to notify ** the database handle that malloc() has failed and return NULL. ** If nByte is larger than the maximum string or blob length, then ** raise an SQLITE_TOOBIG exception and return NULL. */ static void *contextMalloc(sqlite3_context *context, i64 nByte){ char *z; sqlite3 *db = sqlite3_context_db_handle(context); assert( nByte>0 ); testcase( nByte==db->aLimit[SQLITE_LIMIT_LENGTH] ); testcase( nByte==db->aLimit[SQLITE_LIMIT_LENGTH]+1 ); if( nByte>db->aLimit[SQLITE_LIMIT_LENGTH] ){ sqlite3_result_error_toobig(context); z = 0; }else{ z = sqlite3Malloc(nByte); if( !z ){ sqlite3_result_error_nomem(context); } } return z; } /* ** Implementation of the upper() and lower() SQL functions. */ static void upperFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ char *z1; const char *z2; int i, n; UNUSED_PARAMETER(argc); z2 = (char*)sqlite3_value_text(argv[0]); n = sqlite3_value_bytes(argv[0]); /* Verify that the call to _bytes() does not invalidate the _text() pointer */ assert( z2==(char*)sqlite3_value_text(argv[0]) ); if( z2 ){ z1 = contextMalloc(context, ((i64)n)+1); if( z1 ){ for(i=0; imatchOne; /* "?" or "_" */ u32 matchAll = pInfo->matchAll; /* "*" or "%" */ u8 noCase = pInfo->noCase; /* True if uppercase==lowercase */ const u8 *zEscaped = 0; /* One past the last escaped input char */ while( (c = Utf8Read(zPattern))!=0 ){ if( c==matchAll ){ /* Match "*" */ /* Skip over multiple "*" characters in the pattern. If there ** are also "?" characters, skip those as well, but consume a ** single character of the input string for each "?" skipped */ while( (c=Utf8Read(zPattern)) == matchAll || c == matchOne ){ if( c==matchOne && sqlite3Utf8Read(&zString)==0 ){ return SQLITE_NOWILDCARDMATCH; } } if( c==0 ){ return SQLITE_MATCH; /* "*" at the end of the pattern matches */ }else if( c==matchOther ){ if( pInfo->matchSet==0 ){ c = sqlite3Utf8Read(&zPattern); if( c==0 ) return SQLITE_NOWILDCARDMATCH; }else{ /* "[...]" immediately follows the "*". We have to do a slow ** recursive search in this case, but it is an unusual case. */ assert( matchOther<0x80 ); /* '[' is a single-byte character */ while( *zString ){ int bMatch = patternCompare(&zPattern[-1],zString,pInfo,matchOther); if( bMatch!=SQLITE_NOMATCH ) return bMatch; SQLITE_SKIP_UTF8(zString); } return SQLITE_NOWILDCARDMATCH; } } /* At this point variable c contains the first character of the ** pattern string past the "*". Search in the input string for the ** first matching character and recursively continue the match from ** that point. ** ** For a case-insensitive search, set variable cx to be the same as ** c but in the other case and search the input string for either ** c or cx. */ if( c<=0x80 ){ char zStop[3]; int bMatch; if( noCase ){ zStop[0] = sqlite3Toupper(c); zStop[1] = sqlite3Tolower(c); zStop[2] = 0; }else{ zStop[0] = c; zStop[1] = 0; } while(1){ zString += strcspn((const char*)zString, zStop); if( zString[0]==0 ) break; zString++; bMatch = patternCompare(zPattern,zString,pInfo,matchOther); if( bMatch!=SQLITE_NOMATCH ) return bMatch; } }else{ int bMatch; while( (c2 = Utf8Read(zString))!=0 ){ if( c2!=c ) continue; bMatch = patternCompare(zPattern,zString,pInfo,matchOther); if( bMatch!=SQLITE_NOMATCH ) return bMatch; } } return SQLITE_NOWILDCARDMATCH; } if( c==matchOther ){ if( pInfo->matchSet==0 ){ c = sqlite3Utf8Read(&zPattern); if( c==0 ) return SQLITE_NOMATCH; zEscaped = zPattern; }else{ u32 prior_c = 0; int seen = 0; int invert = 0; c = sqlite3Utf8Read(&zString); if( c==0 ) return SQLITE_NOMATCH; c2 = sqlite3Utf8Read(&zPattern); if( c2=='^' ){ invert = 1; c2 = sqlite3Utf8Read(&zPattern); } if( c2==']' ){ if( c==']' ) seen = 1; c2 = sqlite3Utf8Read(&zPattern); } while( c2 && c2!=']' ){ if( c2=='-' && zPattern[0]!=']' && zPattern[0]!=0 && prior_c>0 ){ c2 = sqlite3Utf8Read(&zPattern); if( c>=prior_c && c<=c2 ) seen = 1; prior_c = 0; }else{ if( c==c2 ){ seen = 1; } prior_c = c2; } c2 = sqlite3Utf8Read(&zPattern); } if( c2==0 || (seen ^ invert)==0 ){ return SQLITE_NOMATCH; } continue; } } c2 = Utf8Read(zString); if( c==c2 ) continue; if( noCase && sqlite3Tolower(c)==sqlite3Tolower(c2) && c<0x80 && c2<0x80 ){ continue; } if( c==matchOne && zPattern!=zEscaped && c2!=0 ) continue; return SQLITE_NOMATCH; } return *zString==0 ? SQLITE_MATCH : SQLITE_NOMATCH; } /* ** The sqlite3_strglob() interface. Return 0 on a match (like strcmp()) and ** non-zero if there is no match. */ SQLITE_API int sqlite3_strglob(const char *zGlobPattern, const char *zString){ return patternCompare((u8*)zGlobPattern, (u8*)zString, &globInfo, '['); } /* ** The sqlite3_strlike() interface. Return 0 on a match and non-zero for ** a miss - like strcmp(). */ SQLITE_API int sqlite3_strlike(const char *zPattern, const char *zStr, unsigned int esc){ return patternCompare((u8*)zPattern, (u8*)zStr, &likeInfoNorm, esc); } /* ** Count the number of times that the LIKE operator (or GLOB which is ** just a variation of LIKE) gets called. This is used for testing ** only. */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_like_count = 0; #endif /* ** Implementation of the like() SQL function. This function implements ** the build-in LIKE operator. The first argument to the function is the ** pattern and the second argument is the string. So, the SQL statements: ** ** A LIKE B ** ** is implemented as like(B,A). ** ** This same function (with a different compareInfo structure) computes ** the GLOB operator. */ static void likeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *zA, *zB; u32 escape; int nPat; sqlite3 *db = sqlite3_context_db_handle(context); struct compareInfo *pInfo = sqlite3_user_data(context); struct compareInfo backupInfo; #ifdef SQLITE_LIKE_DOESNT_MATCH_BLOBS if( sqlite3_value_type(argv[0])==SQLITE_BLOB || sqlite3_value_type(argv[1])==SQLITE_BLOB ){ #ifdef SQLITE_TEST sqlite3_like_count++; #endif sqlite3_result_int(context, 0); return; } #endif /* Limit the length of the LIKE or GLOB pattern to avoid problems ** of deep recursion and N*N behavior in patternCompare(). */ nPat = sqlite3_value_bytes(argv[0]); testcase( nPat==db->aLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH] ); testcase( nPat==db->aLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]+1 ); if( nPat > db->aLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH] ){ sqlite3_result_error(context, "LIKE or GLOB pattern too complex", -1); return; } if( argc==3 ){ /* The escape character string must consist of a single UTF-8 character. ** Otherwise, return an error. */ const unsigned char *zEsc = sqlite3_value_text(argv[2]); if( zEsc==0 ) return; if( sqlite3Utf8CharLen((char*)zEsc, -1)!=1 ){ sqlite3_result_error(context, "ESCAPE expression must be a single character", -1); return; } escape = sqlite3Utf8Read(&zEsc); if( escape==pInfo->matchAll || escape==pInfo->matchOne ){ memcpy(&backupInfo, pInfo, sizeof(backupInfo)); pInfo = &backupInfo; if( escape==pInfo->matchAll ) pInfo->matchAll = 0; if( escape==pInfo->matchOne ) pInfo->matchOne = 0; } }else{ escape = pInfo->matchSet; } zB = sqlite3_value_text(argv[0]); zA = sqlite3_value_text(argv[1]); if( zA && zB ){ #ifdef SQLITE_TEST sqlite3_like_count++; #endif sqlite3_result_int(context, patternCompare(zB, zA, pInfo, escape)==SQLITE_MATCH); } } /* ** Implementation of the NULLIF(x,y) function. The result is the first ** argument if the arguments are different. The result is NULL if the ** arguments are equal to each other. */ static void nullifFunc( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ CollSeq *pColl = sqlite3GetFuncCollSeq(context); UNUSED_PARAMETER(NotUsed); if( sqlite3MemCompare(argv[0], argv[1], pColl)!=0 ){ sqlite3_result_value(context, argv[0]); } } /* ** Implementation of the sqlite_version() function. The result is the version ** of the SQLite library that is running. */ static void versionFunc( sqlite3_context *context, int NotUsed, sqlite3_value **NotUsed2 ){ UNUSED_PARAMETER2(NotUsed, NotUsed2); /* IMP: R-48699-48617 This function is an SQL wrapper around the ** sqlite3_libversion() C-interface. */ sqlite3_result_text(context, sqlite3_libversion(), -1, SQLITE_STATIC); } /* ** Implementation of the sqlite_source_id() function. The result is a string ** that identifies the particular version of the source code used to build ** SQLite. */ static void sourceidFunc( sqlite3_context *context, int NotUsed, sqlite3_value **NotUsed2 ){ UNUSED_PARAMETER2(NotUsed, NotUsed2); /* IMP: R-24470-31136 This function is an SQL wrapper around the ** sqlite3_sourceid() C interface. */ sqlite3_result_text(context, sqlite3_sourceid(), -1, SQLITE_STATIC); } /* ** Implementation of the sqlite_log() function. This is a wrapper around ** sqlite3_log(). The return value is NULL. The function exists purely for ** its side-effects. */ static void errlogFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ UNUSED_PARAMETER(argc); UNUSED_PARAMETER(context); sqlite3_log(sqlite3_value_int(argv[0]), "%s", sqlite3_value_text(argv[1])); } /* ** Implementation of the sqlite_compileoption_used() function. ** The result is an integer that identifies if the compiler option ** was used to build SQLite. */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS static void compileoptionusedFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const char *zOptName; assert( argc==1 ); UNUSED_PARAMETER(argc); /* IMP: R-39564-36305 The sqlite_compileoption_used() SQL ** function is a wrapper around the sqlite3_compileoption_used() C/C++ ** function. */ if( (zOptName = (const char*)sqlite3_value_text(argv[0]))!=0 ){ sqlite3_result_int(context, sqlite3_compileoption_used(zOptName)); } } #endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ /* ** Implementation of the sqlite_compileoption_get() function. ** The result is a string that identifies the compiler options ** used to build SQLite. */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS static void compileoptiongetFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ int n; assert( argc==1 ); UNUSED_PARAMETER(argc); /* IMP: R-04922-24076 The sqlite_compileoption_get() SQL function ** is a wrapper around the sqlite3_compileoption_get() C/C++ function. */ n = sqlite3_value_int(argv[0]); sqlite3_result_text(context, sqlite3_compileoption_get(n), -1, SQLITE_STATIC); } #endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ /* Array for converting from half-bytes (nybbles) into ASCII hex ** digits. */ static const char hexdigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; /* ** Implementation of the QUOTE() function. This function takes a single ** argument. If the argument is numeric, the return value is the same as ** the argument. If the argument is NULL, the return value is the string ** "NULL". Otherwise, the argument is enclosed in single quotes with ** single-quote escapes. */ static void quoteFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ assert( argc==1 ); UNUSED_PARAMETER(argc); switch( sqlite3_value_type(argv[0]) ){ case SQLITE_FLOAT: { double r1, r2; char zBuf[50]; r1 = sqlite3_value_double(argv[0]); sqlite3_snprintf(sizeof(zBuf), zBuf, "%!.15g", r1); sqlite3AtoF(zBuf, &r2, 20, SQLITE_UTF8); if( r1!=r2 ){ sqlite3_snprintf(sizeof(zBuf), zBuf, "%!.20e", r1); } sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT); break; } case SQLITE_INTEGER: { sqlite3_result_value(context, argv[0]); break; } case SQLITE_BLOB: { char *zText = 0; char const *zBlob = sqlite3_value_blob(argv[0]); int nBlob = sqlite3_value_bytes(argv[0]); assert( zBlob==sqlite3_value_blob(argv[0]) ); /* No encoding change */ zText = (char *)contextMalloc(context, (2*(i64)nBlob)+4); if( zText ){ int i; for(i=0; i>4)&0x0F]; zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F]; } zText[(nBlob*2)+2] = '\''; zText[(nBlob*2)+3] = '\0'; zText[0] = 'X'; zText[1] = '\''; sqlite3_result_text(context, zText, -1, SQLITE_TRANSIENT); sqlite3_free(zText); } break; } case SQLITE_TEXT: { int i,j; u64 n; const unsigned char *zArg = sqlite3_value_text(argv[0]); char *z; if( zArg==0 ) return; for(i=0, n=0; zArg[i]; i++){ if( zArg[i]=='\'' ) n++; } z = contextMalloc(context, ((i64)i)+((i64)n)+3); if( z ){ z[0] = '\''; for(i=0, j=1; zArg[i]; i++){ z[j++] = zArg[i]; if( zArg[i]=='\'' ){ z[j++] = '\''; } } z[j++] = '\''; z[j] = 0; sqlite3_result_text(context, z, j, sqlite3_free); } break; } default: { assert( sqlite3_value_type(argv[0])==SQLITE_NULL ); sqlite3_result_text(context, "NULL", 4, SQLITE_STATIC); break; } } } /* ** The unicode() function. Return the integer unicode code-point value ** for the first character of the input string. */ static void unicodeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *z = sqlite3_value_text(argv[0]); (void)argc; if( z && z[0] ) sqlite3_result_int(context, sqlite3Utf8Read(&z)); } /* ** The char() function takes zero or more arguments, each of which is ** an integer. It constructs a string where each character of the string ** is the unicode character for the corresponding integer argument. */ static void charFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ unsigned char *z, *zOut; int i; zOut = z = sqlite3_malloc64( argc*4+1 ); if( z==0 ){ sqlite3_result_error_nomem(context); return; } for(i=0; i0x10ffff ) x = 0xfffd; c = (unsigned)(x & 0x1fffff); if( c<0x00080 ){ *zOut++ = (u8)(c&0xFF); }else if( c<0x00800 ){ *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); *zOut++ = 0x80 + (u8)(c & 0x3F); }else if( c<0x10000 ){ *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); *zOut++ = 0x80 + (u8)(c & 0x3F); }else{ *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); *zOut++ = 0x80 + (u8)(c & 0x3F); } \ } sqlite3_result_text64(context, (char*)z, zOut-z, sqlite3_free, SQLITE_UTF8); } /* ** The hex() function. Interpret the argument as a blob. Return ** a hexadecimal rendering as text. */ static void hexFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ int i, n; const unsigned char *pBlob; char *zHex, *z; assert( argc==1 ); UNUSED_PARAMETER(argc); pBlob = sqlite3_value_blob(argv[0]); n = sqlite3_value_bytes(argv[0]); assert( pBlob==sqlite3_value_blob(argv[0]) ); /* No encoding change */ z = zHex = contextMalloc(context, ((i64)n)*2 + 1); if( zHex ){ for(i=0; i>4)&0xf]; *(z++) = hexdigits[c&0xf]; } *z = 0; sqlite3_result_text(context, zHex, n*2, sqlite3_free); } } /* ** The zeroblob(N) function returns a zero-filled blob of size N bytes. */ static void zeroblobFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ i64 n; int rc; assert( argc==1 ); UNUSED_PARAMETER(argc); n = sqlite3_value_int64(argv[0]); if( n<0 ) n = 0; rc = sqlite3_result_zeroblob64(context, n); /* IMP: R-00293-64994 */ if( rc ){ sqlite3_result_error_code(context, rc); } } /* ** The replace() function. Three arguments are all strings: call ** them A, B, and C. The result is also a string which is derived ** from A by replacing every occurrence of B with C. The match ** must be exact. Collating sequences are not used. */ static void replaceFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *zStr; /* The input string A */ const unsigned char *zPattern; /* The pattern string B */ const unsigned char *zRep; /* The replacement string C */ unsigned char *zOut; /* The output */ int nStr; /* Size of zStr */ int nPattern; /* Size of zPattern */ int nRep; /* Size of zRep */ i64 nOut; /* Maximum size of zOut */ int loopLimit; /* Last zStr[] that might match zPattern[] */ int i, j; /* Loop counters */ unsigned cntExpand; /* Number zOut expansions */ sqlite3 *db = sqlite3_context_db_handle(context); assert( argc==3 ); UNUSED_PARAMETER(argc); zStr = sqlite3_value_text(argv[0]); if( zStr==0 ) return; nStr = sqlite3_value_bytes(argv[0]); assert( zStr==sqlite3_value_text(argv[0]) ); /* No encoding change */ zPattern = sqlite3_value_text(argv[1]); if( zPattern==0 ){ assert( sqlite3_value_type(argv[1])==SQLITE_NULL || sqlite3_context_db_handle(context)->mallocFailed ); return; } if( zPattern[0]==0 ){ assert( sqlite3_value_type(argv[1])!=SQLITE_NULL ); sqlite3_result_value(context, argv[0]); return; } nPattern = sqlite3_value_bytes(argv[1]); assert( zPattern==sqlite3_value_text(argv[1]) ); /* No encoding change */ zRep = sqlite3_value_text(argv[2]); if( zRep==0 ) return; nRep = sqlite3_value_bytes(argv[2]); assert( zRep==sqlite3_value_text(argv[2]) ); nOut = nStr + 1; assert( nOutnPattern ){ nOut += nRep - nPattern; testcase( nOut-1==db->aLimit[SQLITE_LIMIT_LENGTH] ); testcase( nOut-2==db->aLimit[SQLITE_LIMIT_LENGTH] ); if( nOut-1>db->aLimit[SQLITE_LIMIT_LENGTH] ){ sqlite3_result_error_toobig(context); sqlite3_free(zOut); return; } cntExpand++; if( (cntExpand&(cntExpand-1))==0 ){ /* Grow the size of the output buffer only on substitutions ** whose index is a power of two: 1, 2, 4, 8, 16, 32, ... */ u8 *zOld; zOld = zOut; zOut = sqlite3Realloc(zOut, (int)nOut + (nOut - nStr - 1)); if( zOut==0 ){ sqlite3_result_error_nomem(context); sqlite3_free(zOld); return; } } } memcpy(&zOut[j], zRep, nRep); j += nRep; i += nPattern-1; } } assert( j+nStr-i+1<=nOut ); memcpy(&zOut[j], &zStr[i], nStr-i); j += nStr - i; assert( j<=nOut ); zOut[j] = 0; sqlite3_result_text(context, (char*)zOut, j, sqlite3_free); } /* ** Implementation of the TRIM(), LTRIM(), and RTRIM() functions. ** The userdata is 0x1 for left trim, 0x2 for right trim, 0x3 for both. */ static void trimFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *zIn; /* Input string */ const unsigned char *zCharSet; /* Set of characters to trim */ int nIn; /* Number of bytes in input */ int flags; /* 1: trimleft 2: trimright 3: trim */ int i; /* Loop counter */ unsigned char *aLen = 0; /* Length of each character in zCharSet */ unsigned char **azChar = 0; /* Individual characters in zCharSet */ int nChar; /* Number of characters in zCharSet */ if( sqlite3_value_type(argv[0])==SQLITE_NULL ){ return; } zIn = sqlite3_value_text(argv[0]); if( zIn==0 ) return; nIn = sqlite3_value_bytes(argv[0]); assert( zIn==sqlite3_value_text(argv[0]) ); if( argc==1 ){ static const unsigned char lenOne[] = { 1 }; static unsigned char * const azOne[] = { (u8*)" " }; nChar = 1; aLen = (u8*)lenOne; azChar = (unsigned char **)azOne; zCharSet = 0; }else if( (zCharSet = sqlite3_value_text(argv[1]))==0 ){ return; }else{ const unsigned char *z; for(z=zCharSet, nChar=0; *z; nChar++){ SQLITE_SKIP_UTF8(z); } if( nChar>0 ){ azChar = contextMalloc(context, ((i64)nChar)*(sizeof(char*)+1)); if( azChar==0 ){ return; } aLen = (unsigned char*)&azChar[nChar]; for(z=zCharSet, nChar=0; *z; nChar++){ azChar[nChar] = (unsigned char *)z; SQLITE_SKIP_UTF8(z); aLen[nChar] = (u8)(z - azChar[nChar]); } } } if( nChar>0 ){ flags = SQLITE_PTR_TO_INT(sqlite3_user_data(context)); if( flags & 1 ){ while( nIn>0 ){ int len = 0; for(i=0; i=nChar ) break; zIn += len; nIn -= len; } } if( flags & 2 ){ while( nIn>0 ){ int len = 0; for(i=0; i=nChar ) break; nIn -= len; } } if( zCharSet ){ sqlite3_free(azChar); } } sqlite3_result_text(context, (char*)zIn, nIn, SQLITE_TRANSIENT); } #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION /* ** The "unknown" function is automatically substituted in place of ** any unrecognized function name when doing an EXPLAIN or EXPLAIN QUERY PLAN ** when the SQLITE_ENABLE_UNKNOWN_FUNCTION compile-time option is used. ** When the "sqlite3" command-line shell is built using this functionality, ** that allows an EXPLAIN or EXPLAIN QUERY PLAN for complex queries ** involving application-defined functions to be examined in a generic ** sqlite3 shell. */ static void unknownFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ /* no-op */ } #endif /*SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION*/ /* IMP: R-25361-16150 This function is omitted from SQLite by default. It ** is only available if the SQLITE_SOUNDEX compile-time option is used ** when SQLite is built. */ #ifdef SQLITE_SOUNDEX /* ** Compute the soundex encoding of a word. ** ** IMP: R-59782-00072 The soundex(X) function returns a string that is the ** soundex encoding of the string X. */ static void soundexFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ char zResult[8]; const u8 *zIn; int i, j; static const unsigned char iCode[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 1, 2, 0, 0, 2, 2, 4, 5, 5, 0, 1, 2, 6, 2, 3, 0, 1, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 1, 2, 0, 0, 2, 2, 4, 5, 5, 0, 1, 2, 6, 2, 3, 0, 1, 0, 2, 0, 2, 0, 0, 0, 0, 0, }; assert( argc==1 ); zIn = (u8*)sqlite3_value_text(argv[0]); if( zIn==0 ) zIn = (u8*)""; for(i=0; zIn[i] && !sqlite3Isalpha(zIn[i]); i++){} if( zIn[i] ){ u8 prevcode = iCode[zIn[i]&0x7f]; zResult[0] = sqlite3Toupper(zIn[i]); for(j=1; j<4 && zIn[i]; i++){ int code = iCode[zIn[i]&0x7f]; if( code>0 ){ if( code!=prevcode ){ prevcode = code; zResult[j++] = code + '0'; } }else{ prevcode = 0; } } while( j<4 ){ zResult[j++] = '0'; } zResult[j] = 0; sqlite3_result_text(context, zResult, 4, SQLITE_TRANSIENT); }else{ /* IMP: R-64894-50321 The string "?000" is returned if the argument ** is NULL or contains no ASCII alphabetic characters. */ sqlite3_result_text(context, "?000", 4, SQLITE_STATIC); } } #endif /* SQLITE_SOUNDEX */ #ifndef SQLITE_OMIT_LOAD_EXTENSION /* ** A function that loads a shared-library extension then returns NULL. */ static void loadExt(sqlite3_context *context, int argc, sqlite3_value **argv){ const char *zFile = (const char *)sqlite3_value_text(argv[0]); const char *zProc; sqlite3 *db = sqlite3_context_db_handle(context); char *zErrMsg = 0; /* Disallow the load_extension() SQL function unless the SQLITE_LoadExtFunc ** flag is set. See the sqlite3_enable_load_extension() API. */ if( (db->flags & SQLITE_LoadExtFunc)==0 ){ sqlite3_result_error(context, "not authorized", -1); return; } if( argc==2 ){ zProc = (const char *)sqlite3_value_text(argv[1]); }else{ zProc = 0; } if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){ sqlite3_result_error(context, zErrMsg, -1); sqlite3_free(zErrMsg); } } #endif /* ** An instance of the following structure holds the context of a ** sum() or avg() aggregate computation. */ typedef struct SumCtx SumCtx; struct SumCtx { double rSum; /* Floating point sum */ i64 iSum; /* Integer sum */ i64 cnt; /* Number of elements summed */ u8 overflow; /* True if integer overflow seen */ u8 approx; /* True if non-integer value was input to the sum */ }; /* ** Routines used to compute the sum, average, and total. ** ** The SUM() function follows the (broken) SQL standard which means ** that it returns NULL if it sums over no inputs. TOTAL returns ** 0.0 in that case. In addition, TOTAL always returns a float where ** SUM might return an integer if it never encounters a floating point ** value. TOTAL never fails, but SUM might through an exception if ** it overflows an integer. */ static void sumStep(sqlite3_context *context, int argc, sqlite3_value **argv){ SumCtx *p; int type; assert( argc==1 ); UNUSED_PARAMETER(argc); p = sqlite3_aggregate_context(context, sizeof(*p)); type = sqlite3_value_numeric_type(argv[0]); if( p && type!=SQLITE_NULL ){ p->cnt++; if( type==SQLITE_INTEGER ){ i64 v = sqlite3_value_int64(argv[0]); p->rSum += v; if( (p->approx|p->overflow)==0 && sqlite3AddInt64(&p->iSum, v) ){ p->approx = p->overflow = 1; } }else{ p->rSum += sqlite3_value_double(argv[0]); p->approx = 1; } } } #ifndef SQLITE_OMIT_WINDOWFUNC static void sumInverse(sqlite3_context *context, int argc, sqlite3_value**argv){ SumCtx *p; int type; assert( argc==1 ); UNUSED_PARAMETER(argc); p = sqlite3_aggregate_context(context, sizeof(*p)); type = sqlite3_value_numeric_type(argv[0]); /* p is always non-NULL because sumStep() will have been called first ** to initialize it */ if( ALWAYS(p) && type!=SQLITE_NULL ){ assert( p->cnt>0 ); p->cnt--; assert( type==SQLITE_INTEGER || p->approx ); if( type==SQLITE_INTEGER && p->approx==0 ){ i64 v = sqlite3_value_int64(argv[0]); p->rSum -= v; p->iSum -= v; }else{ p->rSum -= sqlite3_value_double(argv[0]); } } } #else # define sumInverse 0 #endif /* SQLITE_OMIT_WINDOWFUNC */ static void sumFinalize(sqlite3_context *context){ SumCtx *p; p = sqlite3_aggregate_context(context, 0); if( p && p->cnt>0 ){ if( p->overflow ){ sqlite3_result_error(context,"integer overflow",-1); }else if( p->approx ){ sqlite3_result_double(context, p->rSum); }else{ sqlite3_result_int64(context, p->iSum); } } } static void avgFinalize(sqlite3_context *context){ SumCtx *p; p = sqlite3_aggregate_context(context, 0); if( p && p->cnt>0 ){ sqlite3_result_double(context, p->rSum/(double)p->cnt); } } static void totalFinalize(sqlite3_context *context){ SumCtx *p; p = sqlite3_aggregate_context(context, 0); /* (double)0 In case of SQLITE_OMIT_FLOATING_POINT... */ sqlite3_result_double(context, p ? p->rSum : (double)0); } /* ** The following structure keeps track of state information for the ** count() aggregate function. */ typedef struct CountCtx CountCtx; struct CountCtx { i64 n; #ifdef SQLITE_DEBUG int bInverse; /* True if xInverse() ever called */ #endif }; /* ** Routines to implement the count() aggregate function. */ static void countStep(sqlite3_context *context, int argc, sqlite3_value **argv){ CountCtx *p; p = sqlite3_aggregate_context(context, sizeof(*p)); if( (argc==0 || SQLITE_NULL!=sqlite3_value_type(argv[0])) && p ){ p->n++; } #ifndef SQLITE_OMIT_DEPRECATED /* The sqlite3_aggregate_count() function is deprecated. But just to make ** sure it still operates correctly, verify that its count agrees with our ** internal count when using count(*) and when the total count can be ** expressed as a 32-bit integer. */ assert( argc==1 || p==0 || p->n>0x7fffffff || p->bInverse || p->n==sqlite3_aggregate_count(context) ); #endif } static void countFinalize(sqlite3_context *context){ CountCtx *p; p = sqlite3_aggregate_context(context, 0); sqlite3_result_int64(context, p ? p->n : 0); } #ifndef SQLITE_OMIT_WINDOWFUNC static void countInverse(sqlite3_context *ctx, int argc, sqlite3_value **argv){ CountCtx *p; p = sqlite3_aggregate_context(ctx, sizeof(*p)); /* p is always non-NULL since countStep() will have been called first */ if( (argc==0 || SQLITE_NULL!=sqlite3_value_type(argv[0])) && ALWAYS(p) ){ p->n--; #ifdef SQLITE_DEBUG p->bInverse = 1; #endif } } #else # define countInverse 0 #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** Routines to implement min() and max() aggregate functions. */ static void minmaxStep( sqlite3_context *context, int NotUsed, sqlite3_value **argv ){ Mem *pArg = (Mem *)argv[0]; Mem *pBest; UNUSED_PARAMETER(NotUsed); pBest = (Mem *)sqlite3_aggregate_context(context, sizeof(*pBest)); if( !pBest ) return; if( sqlite3_value_type(pArg)==SQLITE_NULL ){ if( pBest->flags ) sqlite3SkipAccumulatorLoad(context); }else if( pBest->flags ){ int max; int cmp; CollSeq *pColl = sqlite3GetFuncCollSeq(context); /* This step function is used for both the min() and max() aggregates, ** the only difference between the two being that the sense of the ** comparison is inverted. For the max() aggregate, the ** sqlite3_user_data() function returns (void *)-1. For min() it ** returns (void *)db, where db is the sqlite3* database pointer. ** Therefore the next statement sets variable 'max' to 1 for the max() ** aggregate, or 0 for min(). */ max = sqlite3_user_data(context)!=0; cmp = sqlite3MemCompare(pBest, pArg, pColl); if( (max && cmp<0) || (!max && cmp>0) ){ sqlite3VdbeMemCopy(pBest, pArg); }else{ sqlite3SkipAccumulatorLoad(context); } }else{ pBest->db = sqlite3_context_db_handle(context); sqlite3VdbeMemCopy(pBest, pArg); } } static void minMaxValueFinalize(sqlite3_context *context, int bValue){ sqlite3_value *pRes; pRes = (sqlite3_value *)sqlite3_aggregate_context(context, 0); if( pRes ){ if( pRes->flags ){ sqlite3_result_value(context, pRes); } if( bValue==0 ) sqlite3VdbeMemRelease(pRes); } } #ifndef SQLITE_OMIT_WINDOWFUNC static void minMaxValue(sqlite3_context *context){ minMaxValueFinalize(context, 1); } #else # define minMaxValue 0 #endif /* SQLITE_OMIT_WINDOWFUNC */ static void minMaxFinalize(sqlite3_context *context){ minMaxValueFinalize(context, 0); } /* ** group_concat(EXPR, ?SEPARATOR?) */ static void groupConcatStep( sqlite3_context *context, int argc, sqlite3_value **argv ){ const char *zVal; StrAccum *pAccum; const char *zSep; int nVal, nSep; assert( argc==1 || argc==2 ); if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; pAccum = (StrAccum*)sqlite3_aggregate_context(context, sizeof(*pAccum)); if( pAccum ){ sqlite3 *db = sqlite3_context_db_handle(context); int firstTerm = pAccum->mxAlloc==0; pAccum->mxAlloc = db->aLimit[SQLITE_LIMIT_LENGTH]; if( !firstTerm ){ if( argc==2 ){ zSep = (char*)sqlite3_value_text(argv[1]); nSep = sqlite3_value_bytes(argv[1]); }else{ zSep = ","; nSep = 1; } if( zSep ) sqlite3_str_append(pAccum, zSep, nSep); } zVal = (char*)sqlite3_value_text(argv[0]); nVal = sqlite3_value_bytes(argv[0]); if( zVal ) sqlite3_str_append(pAccum, zVal, nVal); } } #ifndef SQLITE_OMIT_WINDOWFUNC static void groupConcatInverse( sqlite3_context *context, int argc, sqlite3_value **argv ){ int n; StrAccum *pAccum; assert( argc==1 || argc==2 ); if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return; pAccum = (StrAccum*)sqlite3_aggregate_context(context, sizeof(*pAccum)); /* pAccum is always non-NULL since groupConcatStep() will have always ** run frist to initialize it */ if( ALWAYS(pAccum) ){ n = sqlite3_value_bytes(argv[0]); if( argc==2 ){ n += sqlite3_value_bytes(argv[1]); }else{ n++; } if( n>=(int)pAccum->nChar ){ pAccum->nChar = 0; }else{ pAccum->nChar -= n; memmove(pAccum->zText, &pAccum->zText[n], pAccum->nChar); } if( pAccum->nChar==0 ) pAccum->mxAlloc = 0; } } #else # define groupConcatInverse 0 #endif /* SQLITE_OMIT_WINDOWFUNC */ static void groupConcatFinalize(sqlite3_context *context){ StrAccum *pAccum; pAccum = sqlite3_aggregate_context(context, 0); if( pAccum ){ if( pAccum->accError==SQLITE_TOOBIG ){ sqlite3_result_error_toobig(context); }else if( pAccum->accError==SQLITE_NOMEM ){ sqlite3_result_error_nomem(context); }else{ sqlite3_result_text(context, sqlite3StrAccumFinish(pAccum), -1, sqlite3_free); } } } #ifndef SQLITE_OMIT_WINDOWFUNC static void groupConcatValue(sqlite3_context *context){ sqlite3_str *pAccum; pAccum = (sqlite3_str*)sqlite3_aggregate_context(context, 0); if( pAccum ){ if( pAccum->accError==SQLITE_TOOBIG ){ sqlite3_result_error_toobig(context); }else if( pAccum->accError==SQLITE_NOMEM ){ sqlite3_result_error_nomem(context); }else{ const char *zText = sqlite3_str_value(pAccum); sqlite3_result_text(context, zText, -1, SQLITE_TRANSIENT); } } } #else # define groupConcatValue 0 #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** This routine does per-connection function registration. Most ** of the built-in functions above are part of the global function set. ** This routine only deals with those that are not global. */ SQLITE_PRIVATE void sqlite3RegisterPerConnectionBuiltinFunctions(sqlite3 *db){ int rc = sqlite3_overload_function(db, "MATCH", 2); assert( rc==SQLITE_NOMEM || rc==SQLITE_OK ); if( rc==SQLITE_NOMEM ){ sqlite3OomFault(db); } } /* ** Re-register the built-in LIKE functions. The caseSensitive ** parameter determines whether or not the LIKE operator is case ** sensitive. */ SQLITE_PRIVATE void sqlite3RegisterLikeFunctions(sqlite3 *db, int caseSensitive){ struct compareInfo *pInfo; int flags; if( caseSensitive ){ pInfo = (struct compareInfo*)&likeInfoAlt; flags = SQLITE_FUNC_LIKE | SQLITE_FUNC_CASE; }else{ pInfo = (struct compareInfo*)&likeInfoNorm; flags = SQLITE_FUNC_LIKE; } sqlite3CreateFunc(db, "like", 2, SQLITE_UTF8, pInfo, likeFunc, 0, 0, 0, 0, 0); sqlite3CreateFunc(db, "like", 3, SQLITE_UTF8, pInfo, likeFunc, 0, 0, 0, 0, 0); sqlite3FindFunction(db, "like", 2, SQLITE_UTF8, 0)->funcFlags |= flags; sqlite3FindFunction(db, "like", 3, SQLITE_UTF8, 0)->funcFlags |= flags; } /* ** pExpr points to an expression which implements a function. If ** it is appropriate to apply the LIKE optimization to that function ** then set aWc[0] through aWc[2] to the wildcard characters and the ** escape character and then return TRUE. If the function is not a ** LIKE-style function then return FALSE. ** ** The expression "a LIKE b ESCAPE c" is only considered a valid LIKE ** operator if c is a string literal that is exactly one byte in length. ** That one byte is stored in aWc[3]. aWc[3] is set to zero if there is ** no ESCAPE clause. ** ** *pIsNocase is set to true if uppercase and lowercase are equivalent for ** the function (default for LIKE). If the function makes the distinction ** between uppercase and lowercase (as does GLOB) then *pIsNocase is set to ** false. */ SQLITE_PRIVATE int sqlite3IsLikeFunction(sqlite3 *db, Expr *pExpr, int *pIsNocase, char *aWc){ FuncDef *pDef; int nExpr; if( pExpr->op!=TK_FUNCTION || !pExpr->x.pList ){ return 0; } assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); nExpr = pExpr->x.pList->nExpr; pDef = sqlite3FindFunction(db, pExpr->u.zToken, nExpr, SQLITE_UTF8, 0); #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION if( pDef==0 ) return 0; #endif if( NEVER(pDef==0) || (pDef->funcFlags & SQLITE_FUNC_LIKE)==0 ){ return 0; } /* The memcpy() statement assumes that the wildcard characters are ** the first three statements in the compareInfo structure. The ** asserts() that follow verify that assumption */ memcpy(aWc, pDef->pUserData, 3); assert( (char*)&likeInfoAlt == (char*)&likeInfoAlt.matchAll ); assert( &((char*)&likeInfoAlt)[1] == (char*)&likeInfoAlt.matchOne ); assert( &((char*)&likeInfoAlt)[2] == (char*)&likeInfoAlt.matchSet ); if( nExpr<3 ){ aWc[3] = 0; }else{ Expr *pEscape = pExpr->x.pList->a[2].pExpr; char *zEscape; if( pEscape->op!=TK_STRING ) return 0; zEscape = pEscape->u.zToken; if( zEscape[0]==0 || zEscape[1]!=0 ) return 0; if( zEscape[0]==aWc[0] ) return 0; if( zEscape[0]==aWc[1] ) return 0; aWc[3] = zEscape[0]; } *pIsNocase = (pDef->funcFlags & SQLITE_FUNC_CASE)==0; return 1; } /* ** All of the FuncDef structures in the aBuiltinFunc[] array above ** to the global function hash table. This occurs at start-time (as ** a consequence of calling sqlite3_initialize()). ** ** After this routine runs */ SQLITE_PRIVATE void sqlite3RegisterBuiltinFunctions(void){ /* ** The following array holds FuncDef structures for all of the functions ** defined in this file. ** ** The array cannot be constant since changes are made to the ** FuncDef.pHash elements at start-time. The elements of this array ** are read-only after initialization is complete. ** ** For peak efficiency, put the most frequently used function last. */ static FuncDef aBuiltinFunc[] = { /***** Functions only available with SQLITE_TESTCTRL_INTERNAL_FUNCTIONS *****/ TEST_FUNC(implies_nonnull_row, 2, INLINEFUNC_implies_nonnull_row, 0), TEST_FUNC(expr_compare, 2, INLINEFUNC_expr_compare, 0), TEST_FUNC(expr_implies_expr, 2, INLINEFUNC_expr_implies_expr, 0), #ifdef SQLITE_DEBUG TEST_FUNC(affinity, 1, INLINEFUNC_affinity, 0), #endif /***** Regular functions *****/ #ifdef SQLITE_SOUNDEX FUNCTION(soundex, 1, 0, 0, soundexFunc ), #endif #ifndef SQLITE_OMIT_LOAD_EXTENSION SFUNCTION(load_extension, 1, 0, 0, loadExt ), SFUNCTION(load_extension, 2, 0, 0, loadExt ), #endif #if SQLITE_USER_AUTHENTICATION FUNCTION(sqlite_crypt, 2, 0, 0, sqlite3CryptFunc ), #endif #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS DFUNCTION(sqlite_compileoption_used,1, 0, 0, compileoptionusedFunc ), DFUNCTION(sqlite_compileoption_get, 1, 0, 0, compileoptiongetFunc ), #endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ INLINE_FUNC(unlikely, 1, INLINEFUNC_unlikely, SQLITE_FUNC_UNLIKELY), INLINE_FUNC(likelihood, 2, INLINEFUNC_unlikely, SQLITE_FUNC_UNLIKELY), INLINE_FUNC(likely, 1, INLINEFUNC_unlikely, SQLITE_FUNC_UNLIKELY), #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC FUNCTION2(sqlite_offset, 1, 0, 0, noopFunc, SQLITE_FUNC_OFFSET| SQLITE_FUNC_TYPEOF), #endif FUNCTION(ltrim, 1, 1, 0, trimFunc ), FUNCTION(ltrim, 2, 1, 0, trimFunc ), FUNCTION(rtrim, 1, 2, 0, trimFunc ), FUNCTION(rtrim, 2, 2, 0, trimFunc ), FUNCTION(trim, 1, 3, 0, trimFunc ), FUNCTION(trim, 2, 3, 0, trimFunc ), FUNCTION(min, -1, 0, 1, minmaxFunc ), FUNCTION(min, 0, 0, 1, 0 ), WAGGREGATE(min, 1, 0, 1, minmaxStep, minMaxFinalize, minMaxValue, 0, SQLITE_FUNC_MINMAX ), FUNCTION(max, -1, 1, 1, minmaxFunc ), FUNCTION(max, 0, 1, 1, 0 ), WAGGREGATE(max, 1, 1, 1, minmaxStep, minMaxFinalize, minMaxValue, 0, SQLITE_FUNC_MINMAX ), FUNCTION2(typeof, 1, 0, 0, typeofFunc, SQLITE_FUNC_TYPEOF), FUNCTION2(length, 1, 0, 0, lengthFunc, SQLITE_FUNC_LENGTH), FUNCTION(instr, 2, 0, 0, instrFunc ), FUNCTION(printf, -1, 0, 0, printfFunc ), FUNCTION(unicode, 1, 0, 0, unicodeFunc ), FUNCTION(char, -1, 0, 0, charFunc ), FUNCTION(abs, 1, 0, 0, absFunc ), #ifndef SQLITE_OMIT_FLOATING_POINT FUNCTION(round, 1, 0, 0, roundFunc ), FUNCTION(round, 2, 0, 0, roundFunc ), #endif FUNCTION(upper, 1, 0, 0, upperFunc ), FUNCTION(lower, 1, 0, 0, lowerFunc ), FUNCTION(hex, 1, 0, 0, hexFunc ), INLINE_FUNC(ifnull, 2, INLINEFUNC_coalesce, 0 ), VFUNCTION(random, 0, 0, 0, randomFunc ), VFUNCTION(randomblob, 1, 0, 0, randomBlob ), FUNCTION(nullif, 2, 0, 1, nullifFunc ), DFUNCTION(sqlite_version, 0, 0, 0, versionFunc ), DFUNCTION(sqlite_source_id, 0, 0, 0, sourceidFunc ), FUNCTION(sqlite_log, 2, 0, 0, errlogFunc ), FUNCTION(quote, 1, 0, 0, quoteFunc ), VFUNCTION(last_insert_rowid, 0, 0, 0, last_insert_rowid), VFUNCTION(changes, 0, 0, 0, changes ), VFUNCTION(total_changes, 0, 0, 0, total_changes ), FUNCTION(replace, 3, 0, 0, replaceFunc ), FUNCTION(zeroblob, 1, 0, 0, zeroblobFunc ), FUNCTION(substr, 2, 0, 0, substrFunc ), FUNCTION(substr, 3, 0, 0, substrFunc ), WAGGREGATE(sum, 1,0,0, sumStep, sumFinalize, sumFinalize, sumInverse, 0), WAGGREGATE(total, 1,0,0, sumStep,totalFinalize,totalFinalize,sumInverse, 0), WAGGREGATE(avg, 1,0,0, sumStep, avgFinalize, avgFinalize, sumInverse, 0), WAGGREGATE(count, 0,0,0, countStep, countFinalize, countFinalize, countInverse, SQLITE_FUNC_COUNT ), WAGGREGATE(count, 1,0,0, countStep, countFinalize, countFinalize, countInverse, 0 ), WAGGREGATE(group_concat, 1, 0, 0, groupConcatStep, groupConcatFinalize, groupConcatValue, groupConcatInverse, 0), WAGGREGATE(group_concat, 2, 0, 0, groupConcatStep, groupConcatFinalize, groupConcatValue, groupConcatInverse, 0), LIKEFUNC(glob, 2, &globInfo, SQLITE_FUNC_LIKE|SQLITE_FUNC_CASE), #ifdef SQLITE_CASE_SENSITIVE_LIKE LIKEFUNC(like, 2, &likeInfoAlt, SQLITE_FUNC_LIKE|SQLITE_FUNC_CASE), LIKEFUNC(like, 3, &likeInfoAlt, SQLITE_FUNC_LIKE|SQLITE_FUNC_CASE), #else LIKEFUNC(like, 2, &likeInfoNorm, SQLITE_FUNC_LIKE), LIKEFUNC(like, 3, &likeInfoNorm, SQLITE_FUNC_LIKE), #endif #ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION FUNCTION(unknown, -1, 0, 0, unknownFunc ), #endif FUNCTION(coalesce, 1, 0, 0, 0 ), FUNCTION(coalesce, 0, 0, 0, 0 ), INLINE_FUNC(coalesce, -1, INLINEFUNC_coalesce, 0 ), INLINE_FUNC(iif, 3, INLINEFUNC_iif, 0 ), }; #ifndef SQLITE_OMIT_ALTERTABLE sqlite3AlterFunctions(); #endif sqlite3WindowFunctions(); sqlite3RegisterDateTimeFunctions(); sqlite3InsertBuiltinFuncs(aBuiltinFunc, ArraySize(aBuiltinFunc)); #if 0 /* Enable to print out how the built-in functions are hashed */ { int i; FuncDef *p; for(i=0; iu.pHash){ int n = sqlite3Strlen30(p->zName); int h = p->zName[0] + n; printf(" %s(%d)", p->zName, h); } printf("\n"); } } #endif } /************** End of func.c ************************************************/ /************** Begin file fkey.c ********************************************/ /* ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used by the compiler to add foreign key ** support to compiled SQL statements. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_FOREIGN_KEY #ifndef SQLITE_OMIT_TRIGGER /* ** Deferred and Immediate FKs ** -------------------------- ** ** Foreign keys in SQLite come in two flavours: deferred and immediate. ** If an immediate foreign key constraint is violated, ** SQLITE_CONSTRAINT_FOREIGNKEY is returned and the current ** statement transaction rolled back. If a ** deferred foreign key constraint is violated, no action is taken ** immediately. However if the application attempts to commit the ** transaction before fixing the constraint violation, the attempt fails. ** ** Deferred constraints are implemented using a simple counter associated ** with the database handle. The counter is set to zero each time a ** database transaction is opened. Each time a statement is executed ** that causes a foreign key violation, the counter is incremented. Each ** time a statement is executed that removes an existing violation from ** the database, the counter is decremented. When the transaction is ** committed, the commit fails if the current value of the counter is ** greater than zero. This scheme has two big drawbacks: ** ** * When a commit fails due to a deferred foreign key constraint, ** there is no way to tell which foreign constraint is not satisfied, ** or which row it is not satisfied for. ** ** * If the database contains foreign key violations when the ** transaction is opened, this may cause the mechanism to malfunction. ** ** Despite these problems, this approach is adopted as it seems simpler ** than the alternatives. ** ** INSERT operations: ** ** I.1) For each FK for which the table is the child table, search ** the parent table for a match. If none is found increment the ** constraint counter. ** ** I.2) For each FK for which the table is the parent table, ** search the child table for rows that correspond to the new ** row in the parent table. Decrement the counter for each row ** found (as the constraint is now satisfied). ** ** DELETE operations: ** ** D.1) For each FK for which the table is the child table, ** search the parent table for a row that corresponds to the ** deleted row in the child table. If such a row is not found, ** decrement the counter. ** ** D.2) For each FK for which the table is the parent table, search ** the child table for rows that correspond to the deleted row ** in the parent table. For each found increment the counter. ** ** UPDATE operations: ** ** An UPDATE command requires that all 4 steps above are taken, but only ** for FK constraints for which the affected columns are actually ** modified (values must be compared at runtime). ** ** Note that I.1 and D.1 are very similar operations, as are I.2 and D.2. ** This simplifies the implementation a bit. ** ** For the purposes of immediate FK constraints, the OR REPLACE conflict ** resolution is considered to delete rows before the new row is inserted. ** If a delete caused by OR REPLACE violates an FK constraint, an exception ** is thrown, even if the FK constraint would be satisfied after the new ** row is inserted. ** ** Immediate constraints are usually handled similarly. The only difference ** is that the counter used is stored as part of each individual statement ** object (struct Vdbe). If, after the statement has run, its immediate ** constraint counter is greater than zero, ** it returns SQLITE_CONSTRAINT_FOREIGNKEY ** and the statement transaction is rolled back. An exception is an INSERT ** statement that inserts a single row only (no triggers). In this case, ** instead of using a counter, an exception is thrown immediately if the ** INSERT violates a foreign key constraint. This is necessary as such ** an INSERT does not open a statement transaction. ** ** TODO: How should dropping a table be handled? How should renaming a ** table be handled? ** ** ** Query API Notes ** --------------- ** ** Before coding an UPDATE or DELETE row operation, the code-generator ** for those two operations needs to know whether or not the operation ** requires any FK processing and, if so, which columns of the original ** row are required by the FK processing VDBE code (i.e. if FKs were ** implemented using triggers, which of the old.* columns would be ** accessed). No information is required by the code-generator before ** coding an INSERT operation. The functions used by the UPDATE/DELETE ** generation code to query for this information are: ** ** sqlite3FkRequired() - Test to see if FK processing is required. ** sqlite3FkOldmask() - Query for the set of required old.* columns. ** ** ** Externally accessible module functions ** -------------------------------------- ** ** sqlite3FkCheck() - Check for foreign key violations. ** sqlite3FkActions() - Code triggers for ON UPDATE/ON DELETE actions. ** sqlite3FkDelete() - Delete an FKey structure. */ /* ** VDBE Calling Convention ** ----------------------- ** ** Example: ** ** For the following INSERT statement: ** ** CREATE TABLE t1(a, b INTEGER PRIMARY KEY, c); ** INSERT INTO t1 VALUES(1, 2, 3.1); ** ** Register (x): 2 (type integer) ** Register (x+1): 1 (type integer) ** Register (x+2): NULL (type NULL) ** Register (x+3): 3.1 (type real) */ /* ** A foreign key constraint requires that the key columns in the parent ** table are collectively subject to a UNIQUE or PRIMARY KEY constraint. ** Given that pParent is the parent table for foreign key constraint pFKey, ** search the schema for a unique index on the parent key columns. ** ** If successful, zero is returned. If the parent key is an INTEGER PRIMARY ** KEY column, then output variable *ppIdx is set to NULL. Otherwise, *ppIdx ** is set to point to the unique index. ** ** If the parent key consists of a single column (the foreign key constraint ** is not a composite foreign key), output variable *paiCol is set to NULL. ** Otherwise, it is set to point to an allocated array of size N, where ** N is the number of columns in the parent key. The first element of the ** array is the index of the child table column that is mapped by the FK ** constraint to the parent table column stored in the left-most column ** of index *ppIdx. The second element of the array is the index of the ** child table column that corresponds to the second left-most column of ** *ppIdx, and so on. ** ** If the required index cannot be found, either because: ** ** 1) The named parent key columns do not exist, or ** ** 2) The named parent key columns do exist, but are not subject to a ** UNIQUE or PRIMARY KEY constraint, or ** ** 3) No parent key columns were provided explicitly as part of the ** foreign key definition, and the parent table does not have a ** PRIMARY KEY, or ** ** 4) No parent key columns were provided explicitly as part of the ** foreign key definition, and the PRIMARY KEY of the parent table ** consists of a different number of columns to the child key in ** the child table. ** ** then non-zero is returned, and a "foreign key mismatch" error loaded ** into pParse. If an OOM error occurs, non-zero is returned and the ** pParse->db->mallocFailed flag is set. */ SQLITE_PRIVATE int sqlite3FkLocateIndex( Parse *pParse, /* Parse context to store any error in */ Table *pParent, /* Parent table of FK constraint pFKey */ FKey *pFKey, /* Foreign key to find index for */ Index **ppIdx, /* OUT: Unique index on parent table */ int **paiCol /* OUT: Map of index columns in pFKey */ ){ Index *pIdx = 0; /* Value to return via *ppIdx */ int *aiCol = 0; /* Value to return via *paiCol */ int nCol = pFKey->nCol; /* Number of columns in parent key */ char *zKey = pFKey->aCol[0].zCol; /* Name of left-most parent key column */ /* The caller is responsible for zeroing output parameters. */ assert( ppIdx && *ppIdx==0 ); assert( !paiCol || *paiCol==0 ); assert( pParse ); /* If this is a non-composite (single column) foreign key, check if it ** maps to the INTEGER PRIMARY KEY of table pParent. If so, leave *ppIdx ** and *paiCol set to zero and return early. ** ** Otherwise, for a composite foreign key (more than one column), allocate ** space for the aiCol array (returned via output parameter *paiCol). ** Non-composite foreign keys do not require the aiCol array. */ if( nCol==1 ){ /* The FK maps to the IPK if any of the following are true: ** ** 1) There is an INTEGER PRIMARY KEY column and the FK is implicitly ** mapped to the primary key of table pParent, or ** 2) The FK is explicitly mapped to a column declared as INTEGER ** PRIMARY KEY. */ if( pParent->iPKey>=0 ){ if( !zKey ) return 0; if( !sqlite3StrICmp(pParent->aCol[pParent->iPKey].zName, zKey) ) return 0; } }else if( paiCol ){ assert( nCol>1 ); aiCol = (int *)sqlite3DbMallocRawNN(pParse->db, nCol*sizeof(int)); if( !aiCol ) return 1; *paiCol = aiCol; } for(pIdx=pParent->pIndex; pIdx; pIdx=pIdx->pNext){ if( pIdx->nKeyCol==nCol && IsUniqueIndex(pIdx) && pIdx->pPartIdxWhere==0 ){ /* pIdx is a UNIQUE index (or a PRIMARY KEY) and has the right number ** of columns. If each indexed column corresponds to a foreign key ** column of pFKey, then this index is a winner. */ if( zKey==0 ){ /* If zKey is NULL, then this foreign key is implicitly mapped to ** the PRIMARY KEY of table pParent. The PRIMARY KEY index may be ** identified by the test. */ if( IsPrimaryKeyIndex(pIdx) ){ if( aiCol ){ int i; for(i=0; iaCol[i].iFrom; } break; } }else{ /* If zKey is non-NULL, then this foreign key was declared to ** map to an explicit list of columns in table pParent. Check if this ** index matches those columns. Also, check that the index uses ** the default collation sequences for each column. */ int i, j; for(i=0; iaiColumn[i]; /* Index of column in parent tbl */ const char *zDfltColl; /* Def. collation for column */ char *zIdxCol; /* Name of indexed column */ if( iCol<0 ) break; /* No foreign keys against expression indexes */ /* If the index uses a collation sequence that is different from ** the default collation sequence for the column, this index is ** unusable. Bail out early in this case. */ zDfltColl = pParent->aCol[iCol].zColl; if( !zDfltColl ) zDfltColl = sqlite3StrBINARY; if( sqlite3StrICmp(pIdx->azColl[i], zDfltColl) ) break; zIdxCol = pParent->aCol[iCol].zName; for(j=0; jaCol[j].zCol, zIdxCol)==0 ){ if( aiCol ) aiCol[i] = pFKey->aCol[j].iFrom; break; } } if( j==nCol ) break; } if( i==nCol ) break; /* pIdx is usable */ } } } if( !pIdx ){ if( !pParse->disableTriggers ){ sqlite3ErrorMsg(pParse, "foreign key mismatch - \"%w\" referencing \"%w\"", pFKey->pFrom->zName, pFKey->zTo); } sqlite3DbFree(pParse->db, aiCol); return 1; } *ppIdx = pIdx; return 0; } /* ** This function is called when a row is inserted into or deleted from the ** child table of foreign key constraint pFKey. If an SQL UPDATE is executed ** on the child table of pFKey, this function is invoked twice for each row ** affected - once to "delete" the old row, and then again to "insert" the ** new row. ** ** Each time it is called, this function generates VDBE code to locate the ** row in the parent table that corresponds to the row being inserted into ** or deleted from the child table. If the parent row can be found, no ** special action is taken. Otherwise, if the parent row can *not* be ** found in the parent table: ** ** Operation | FK type | Action taken ** -------------------------------------------------------------------------- ** INSERT immediate Increment the "immediate constraint counter". ** ** DELETE immediate Decrement the "immediate constraint counter". ** ** INSERT deferred Increment the "deferred constraint counter". ** ** DELETE deferred Decrement the "deferred constraint counter". ** ** These operations are identified in the comment at the top of this file ** (fkey.c) as "I.1" and "D.1". */ static void fkLookupParent( Parse *pParse, /* Parse context */ int iDb, /* Index of database housing pTab */ Table *pTab, /* Parent table of FK pFKey */ Index *pIdx, /* Unique index on parent key columns in pTab */ FKey *pFKey, /* Foreign key constraint */ int *aiCol, /* Map from parent key columns to child table columns */ int regData, /* Address of array containing child table row */ int nIncr, /* Increment constraint counter by this */ int isIgnore /* If true, pretend pTab contains all NULL values */ ){ int i; /* Iterator variable */ Vdbe *v = sqlite3GetVdbe(pParse); /* Vdbe to add code to */ int iCur = pParse->nTab - 1; /* Cursor number to use */ int iOk = sqlite3VdbeMakeLabel(pParse); /* jump here if parent key found */ sqlite3VdbeVerifyAbortable(v, (!pFKey->isDeferred && !(pParse->db->flags & SQLITE_DeferFKs) && !pParse->pToplevel && !pParse->isMultiWrite) ? OE_Abort : OE_Ignore); /* If nIncr is less than zero, then check at runtime if there are any ** outstanding constraints to resolve. If there are not, there is no need ** to check if deleting this row resolves any outstanding violations. ** ** Check if any of the key columns in the child table row are NULL. If ** any are, then the constraint is considered satisfied. No need to ** search for a matching row in the parent table. */ if( nIncr<0 ){ sqlite3VdbeAddOp2(v, OP_FkIfZero, pFKey->isDeferred, iOk); VdbeCoverage(v); } for(i=0; inCol; i++){ int iReg = sqlite3TableColumnToStorage(pFKey->pFrom,aiCol[i]) + regData + 1; sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iOk); VdbeCoverage(v); } if( isIgnore==0 ){ if( pIdx==0 ){ /* If pIdx is NULL, then the parent key is the INTEGER PRIMARY KEY ** column of the parent table (table pTab). */ int iMustBeInt; /* Address of MustBeInt instruction */ int regTemp = sqlite3GetTempReg(pParse); /* Invoke MustBeInt to coerce the child key value to an integer (i.e. ** apply the affinity of the parent key). If this fails, then there ** is no matching parent key. Before using MustBeInt, make a copy of ** the value. Otherwise, the value inserted into the child key column ** will have INTEGER affinity applied to it, which may not be correct. */ sqlite3VdbeAddOp2(v, OP_SCopy, sqlite3TableColumnToStorage(pFKey->pFrom,aiCol[0])+1+regData, regTemp); iMustBeInt = sqlite3VdbeAddOp2(v, OP_MustBeInt, regTemp, 0); VdbeCoverage(v); /* If the parent table is the same as the child table, and we are about ** to increment the constraint-counter (i.e. this is an INSERT operation), ** then check if the row being inserted matches itself. If so, do not ** increment the constraint-counter. */ if( pTab==pFKey->pFrom && nIncr==1 ){ sqlite3VdbeAddOp3(v, OP_Eq, regData, iOk, regTemp); VdbeCoverage(v); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); } sqlite3OpenTable(pParse, iCur, iDb, pTab, OP_OpenRead); sqlite3VdbeAddOp3(v, OP_NotExists, iCur, 0, regTemp); VdbeCoverage(v); sqlite3VdbeGoto(v, iOk); sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); sqlite3VdbeJumpHere(v, iMustBeInt); sqlite3ReleaseTempReg(pParse, regTemp); }else{ int nCol = pFKey->nCol; int regTemp = sqlite3GetTempRange(pParse, nCol); int regRec = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_OpenRead, iCur, pIdx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); for(i=0; ipFrom, aiCol[i])+1+regData, regTemp+i); } /* If the parent table is the same as the child table, and we are about ** to increment the constraint-counter (i.e. this is an INSERT operation), ** then check if the row being inserted matches itself. If so, do not ** increment the constraint-counter. ** ** If any of the parent-key values are NULL, then the row cannot match ** itself. So set JUMPIFNULL to make sure we do the OP_Found if any ** of the parent-key values are NULL (at this point it is known that ** none of the child key values are). */ if( pTab==pFKey->pFrom && nIncr==1 ){ int iJump = sqlite3VdbeCurrentAddr(v) + nCol + 1; for(i=0; ipFrom,aiCol[i]) +1+regData; int iParent = 1+regData; iParent += sqlite3TableColumnToStorage(pIdx->pTable, pIdx->aiColumn[i]); assert( pIdx->aiColumn[i]>=0 ); assert( aiCol[i]!=pTab->iPKey ); if( pIdx->aiColumn[i]==pTab->iPKey ){ /* The parent key is a composite key that includes the IPK column */ iParent = regData; } sqlite3VdbeAddOp3(v, OP_Ne, iChild, iJump, iParent); VdbeCoverage(v); sqlite3VdbeChangeP5(v, SQLITE_JUMPIFNULL); } sqlite3VdbeGoto(v, iOk); } sqlite3VdbeAddOp4(v, OP_MakeRecord, regTemp, nCol, regRec, sqlite3IndexAffinityStr(pParse->db,pIdx), nCol); sqlite3VdbeAddOp4Int(v, OP_Found, iCur, iOk, regRec, 0); VdbeCoverage(v); sqlite3ReleaseTempReg(pParse, regRec); sqlite3ReleaseTempRange(pParse, regTemp, nCol); } } if( !pFKey->isDeferred && !(pParse->db->flags & SQLITE_DeferFKs) && !pParse->pToplevel && !pParse->isMultiWrite ){ /* Special case: If this is an INSERT statement that will insert exactly ** one row into the table, raise a constraint immediately instead of ** incrementing a counter. This is necessary as the VM code is being ** generated for will not open a statement transaction. */ assert( nIncr==1 ); sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_FOREIGNKEY, OE_Abort, 0, P4_STATIC, P5_ConstraintFK); }else{ if( nIncr>0 && pFKey->isDeferred==0 ){ sqlite3MayAbort(pParse); } sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, nIncr); } sqlite3VdbeResolveLabel(v, iOk); sqlite3VdbeAddOp1(v, OP_Close, iCur); } /* ** Return an Expr object that refers to a memory register corresponding ** to column iCol of table pTab. ** ** regBase is the first of an array of register that contains the data ** for pTab. regBase itself holds the rowid. regBase+1 holds the first ** column. regBase+2 holds the second column, and so forth. */ static Expr *exprTableRegister( Parse *pParse, /* Parsing and code generating context */ Table *pTab, /* The table whose content is at r[regBase]... */ int regBase, /* Contents of table pTab */ i16 iCol /* Which column of pTab is desired */ ){ Expr *pExpr; Column *pCol; const char *zColl; sqlite3 *db = pParse->db; pExpr = sqlite3Expr(db, TK_REGISTER, 0); if( pExpr ){ if( iCol>=0 && iCol!=pTab->iPKey ){ pCol = &pTab->aCol[iCol]; pExpr->iTable = regBase + sqlite3TableColumnToStorage(pTab,iCol) + 1; pExpr->affExpr = pCol->affinity; zColl = pCol->zColl; if( zColl==0 ) zColl = db->pDfltColl->zName; pExpr = sqlite3ExprAddCollateString(pParse, pExpr, zColl); }else{ pExpr->iTable = regBase; pExpr->affExpr = SQLITE_AFF_INTEGER; } } return pExpr; } /* ** Return an Expr object that refers to column iCol of table pTab which ** has cursor iCur. */ static Expr *exprTableColumn( sqlite3 *db, /* The database connection */ Table *pTab, /* The table whose column is desired */ int iCursor, /* The open cursor on the table */ i16 iCol /* The column that is wanted */ ){ Expr *pExpr = sqlite3Expr(db, TK_COLUMN, 0); if( pExpr ){ pExpr->y.pTab = pTab; pExpr->iTable = iCursor; pExpr->iColumn = iCol; } return pExpr; } /* ** This function is called to generate code executed when a row is deleted ** from the parent table of foreign key constraint pFKey and, if pFKey is ** deferred, when a row is inserted into the same table. When generating ** code for an SQL UPDATE operation, this function may be called twice - ** once to "delete" the old row and once to "insert" the new row. ** ** Parameter nIncr is passed -1 when inserting a row (as this may decrease ** the number of FK violations in the db) or +1 when deleting one (as this ** may increase the number of FK constraint problems). ** ** The code generated by this function scans through the rows in the child ** table that correspond to the parent table row being deleted or inserted. ** For each child row found, one of the following actions is taken: ** ** Operation | FK type | Action taken ** -------------------------------------------------------------------------- ** DELETE immediate Increment the "immediate constraint counter". ** Or, if the ON (UPDATE|DELETE) action is RESTRICT, ** throw a "FOREIGN KEY constraint failed" exception. ** ** INSERT immediate Decrement the "immediate constraint counter". ** ** DELETE deferred Increment the "deferred constraint counter". ** Or, if the ON (UPDATE|DELETE) action is RESTRICT, ** throw a "FOREIGN KEY constraint failed" exception. ** ** INSERT deferred Decrement the "deferred constraint counter". ** ** These operations are identified in the comment at the top of this file ** (fkey.c) as "I.2" and "D.2". */ static void fkScanChildren( Parse *pParse, /* Parse context */ SrcList *pSrc, /* The child table to be scanned */ Table *pTab, /* The parent table */ Index *pIdx, /* Index on parent covering the foreign key */ FKey *pFKey, /* The foreign key linking pSrc to pTab */ int *aiCol, /* Map from pIdx cols to child table cols */ int regData, /* Parent row data starts here */ int nIncr /* Amount to increment deferred counter by */ ){ sqlite3 *db = pParse->db; /* Database handle */ int i; /* Iterator variable */ Expr *pWhere = 0; /* WHERE clause to scan with */ NameContext sNameContext; /* Context used to resolve WHERE clause */ WhereInfo *pWInfo; /* Context used by sqlite3WhereXXX() */ int iFkIfZero = 0; /* Address of OP_FkIfZero */ Vdbe *v = sqlite3GetVdbe(pParse); assert( pIdx==0 || pIdx->pTable==pTab ); assert( pIdx==0 || pIdx->nKeyCol==pFKey->nCol ); assert( pIdx!=0 || pFKey->nCol==1 ); assert( pIdx!=0 || HasRowid(pTab) ); if( nIncr<0 ){ iFkIfZero = sqlite3VdbeAddOp2(v, OP_FkIfZero, pFKey->isDeferred, 0); VdbeCoverage(v); } /* Create an Expr object representing an SQL expression like: ** ** = AND = ... ** ** The collation sequence used for the comparison should be that of ** the parent key columns. The affinity of the parent key column should ** be applied to each child key value before the comparison takes place. */ for(i=0; inCol; i++){ Expr *pLeft; /* Value from parent table row */ Expr *pRight; /* Column ref to child table */ Expr *pEq; /* Expression (pLeft = pRight) */ i16 iCol; /* Index of column in child table */ const char *zCol; /* Name of column in child table */ iCol = pIdx ? pIdx->aiColumn[i] : -1; pLeft = exprTableRegister(pParse, pTab, regData, iCol); iCol = aiCol ? aiCol[i] : pFKey->aCol[0].iFrom; assert( iCol>=0 ); zCol = pFKey->pFrom->aCol[iCol].zName; pRight = sqlite3Expr(db, TK_ID, zCol); pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight); pWhere = sqlite3ExprAnd(pParse, pWhere, pEq); } /* If the child table is the same as the parent table, then add terms ** to the WHERE clause that prevent this entry from being scanned. ** The added WHERE clause terms are like this: ** ** $current_rowid!=rowid ** NOT( $current_a==a AND $current_b==b AND ... ) ** ** The first form is used for rowid tables. The second form is used ** for WITHOUT ROWID tables. In the second form, the *parent* key is ** (a,b,...). Either the parent or primary key could be used to ** uniquely identify the current row, but the parent key is more convenient ** as the required values have already been loaded into registers ** by the caller. */ if( pTab==pFKey->pFrom && nIncr>0 ){ Expr *pNe; /* Expression (pLeft != pRight) */ Expr *pLeft; /* Value from parent table row */ Expr *pRight; /* Column ref to child table */ if( HasRowid(pTab) ){ pLeft = exprTableRegister(pParse, pTab, regData, -1); pRight = exprTableColumn(db, pTab, pSrc->a[0].iCursor, -1); pNe = sqlite3PExpr(pParse, TK_NE, pLeft, pRight); }else{ Expr *pEq, *pAll = 0; assert( pIdx!=0 ); for(i=0; inKeyCol; i++){ i16 iCol = pIdx->aiColumn[i]; assert( iCol>=0 ); pLeft = exprTableRegister(pParse, pTab, regData, iCol); pRight = sqlite3Expr(db, TK_ID, pTab->aCol[iCol].zName); pEq = sqlite3PExpr(pParse, TK_IS, pLeft, pRight); pAll = sqlite3ExprAnd(pParse, pAll, pEq); } pNe = sqlite3PExpr(pParse, TK_NOT, pAll, 0); } pWhere = sqlite3ExprAnd(pParse, pWhere, pNe); } /* Resolve the references in the WHERE clause. */ memset(&sNameContext, 0, sizeof(NameContext)); sNameContext.pSrcList = pSrc; sNameContext.pParse = pParse; sqlite3ResolveExprNames(&sNameContext, pWhere); /* Create VDBE to loop through the entries in pSrc that match the WHERE ** clause. For each row found, increment either the deferred or immediate ** foreign key constraint counter. */ if( pParse->nErr==0 ){ pWInfo = sqlite3WhereBegin(pParse, pSrc, pWhere, 0, 0, 0, 0); sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, nIncr); if( pWInfo ){ sqlite3WhereEnd(pWInfo); } } /* Clean up the WHERE clause constructed above. */ sqlite3ExprDelete(db, pWhere); if( iFkIfZero ){ sqlite3VdbeJumpHereOrPopInst(v, iFkIfZero); } } /* ** This function returns a linked list of FKey objects (connected by ** FKey.pNextTo) holding all children of table pTab. For example, ** given the following schema: ** ** CREATE TABLE t1(a PRIMARY KEY); ** CREATE TABLE t2(b REFERENCES t1(a); ** ** Calling this function with table "t1" as an argument returns a pointer ** to the FKey structure representing the foreign key constraint on table ** "t2". Calling this function with "t2" as the argument would return a ** NULL pointer (as there are no FK constraints for which t2 is the parent ** table). */ SQLITE_PRIVATE FKey *sqlite3FkReferences(Table *pTab){ return (FKey *)sqlite3HashFind(&pTab->pSchema->fkeyHash, pTab->zName); } /* ** The second argument is a Trigger structure allocated by the ** fkActionTrigger() routine. This function deletes the Trigger structure ** and all of its sub-components. ** ** The Trigger structure or any of its sub-components may be allocated from ** the lookaside buffer belonging to database handle dbMem. */ static void fkTriggerDelete(sqlite3 *dbMem, Trigger *p){ if( p ){ TriggerStep *pStep = p->step_list; sqlite3ExprDelete(dbMem, pStep->pWhere); sqlite3ExprListDelete(dbMem, pStep->pExprList); sqlite3SelectDelete(dbMem, pStep->pSelect); sqlite3ExprDelete(dbMem, p->pWhen); sqlite3DbFree(dbMem, p); } } /* ** This function is called to generate code that runs when table pTab is ** being dropped from the database. The SrcList passed as the second argument ** to this function contains a single entry guaranteed to resolve to ** table pTab. ** ** Normally, no code is required. However, if either ** ** (a) The table is the parent table of a FK constraint, or ** (b) The table is the child table of a deferred FK constraint and it is ** determined at runtime that there are outstanding deferred FK ** constraint violations in the database, ** ** then the equivalent of "DELETE FROM " is executed before dropping ** the table from the database. Triggers are disabled while running this ** DELETE, but foreign key actions are not. */ SQLITE_PRIVATE void sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab){ sqlite3 *db = pParse->db; if( (db->flags&SQLITE_ForeignKeys) && !IsVirtual(pTab) ){ int iSkip = 0; Vdbe *v = sqlite3GetVdbe(pParse); assert( v ); /* VDBE has already been allocated */ assert( pTab->pSelect==0 ); /* Not a view */ if( sqlite3FkReferences(pTab)==0 ){ /* Search for a deferred foreign key constraint for which this table ** is the child table. If one cannot be found, return without ** generating any VDBE code. If one can be found, then jump over ** the entire DELETE if there are no outstanding deferred constraints ** when this statement is run. */ FKey *p; for(p=pTab->pFKey; p; p=p->pNextFrom){ if( p->isDeferred || (db->flags & SQLITE_DeferFKs) ) break; } if( !p ) return; iSkip = sqlite3VdbeMakeLabel(pParse); sqlite3VdbeAddOp2(v, OP_FkIfZero, 1, iSkip); VdbeCoverage(v); } pParse->disableTriggers = 1; sqlite3DeleteFrom(pParse, sqlite3SrcListDup(db, pName, 0), 0, 0, 0); pParse->disableTriggers = 0; /* If the DELETE has generated immediate foreign key constraint ** violations, halt the VDBE and return an error at this point, before ** any modifications to the schema are made. This is because statement ** transactions are not able to rollback schema changes. ** ** If the SQLITE_DeferFKs flag is set, then this is not required, as ** the statement transaction will not be rolled back even if FK ** constraints are violated. */ if( (db->flags & SQLITE_DeferFKs)==0 ){ sqlite3VdbeVerifyAbortable(v, OE_Abort); sqlite3VdbeAddOp2(v, OP_FkIfZero, 0, sqlite3VdbeCurrentAddr(v)+2); VdbeCoverage(v); sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_FOREIGNKEY, OE_Abort, 0, P4_STATIC, P5_ConstraintFK); } if( iSkip ){ sqlite3VdbeResolveLabel(v, iSkip); } } } /* ** The second argument points to an FKey object representing a foreign key ** for which pTab is the child table. An UPDATE statement against pTab ** is currently being processed. For each column of the table that is ** actually updated, the corresponding element in the aChange[] array ** is zero or greater (if a column is unmodified the corresponding element ** is set to -1). If the rowid column is modified by the UPDATE statement ** the bChngRowid argument is non-zero. ** ** This function returns true if any of the columns that are part of the ** child key for FK constraint *p are modified. */ static int fkChildIsModified( Table *pTab, /* Table being updated */ FKey *p, /* Foreign key for which pTab is the child */ int *aChange, /* Array indicating modified columns */ int bChngRowid /* True if rowid is modified by this update */ ){ int i; for(i=0; inCol; i++){ int iChildKey = p->aCol[i].iFrom; if( aChange[iChildKey]>=0 ) return 1; if( iChildKey==pTab->iPKey && bChngRowid ) return 1; } return 0; } /* ** The second argument points to an FKey object representing a foreign key ** for which pTab is the parent table. An UPDATE statement against pTab ** is currently being processed. For each column of the table that is ** actually updated, the corresponding element in the aChange[] array ** is zero or greater (if a column is unmodified the corresponding element ** is set to -1). If the rowid column is modified by the UPDATE statement ** the bChngRowid argument is non-zero. ** ** This function returns true if any of the columns that are part of the ** parent key for FK constraint *p are modified. */ static int fkParentIsModified( Table *pTab, FKey *p, int *aChange, int bChngRowid ){ int i; for(i=0; inCol; i++){ char *zKey = p->aCol[i].zCol; int iKey; for(iKey=0; iKeynCol; iKey++){ if( aChange[iKey]>=0 || (iKey==pTab->iPKey && bChngRowid) ){ Column *pCol = &pTab->aCol[iKey]; if( zKey ){ if( 0==sqlite3StrICmp(pCol->zName, zKey) ) return 1; }else if( pCol->colFlags & COLFLAG_PRIMKEY ){ return 1; } } } } return 0; } /* ** Return true if the parser passed as the first argument is being ** used to code a trigger that is really a "SET NULL" action belonging ** to trigger pFKey. */ static int isSetNullAction(Parse *pParse, FKey *pFKey){ Parse *pTop = sqlite3ParseToplevel(pParse); if( pTop->pTriggerPrg ){ Trigger *p = pTop->pTriggerPrg->pTrigger; if( (p==pFKey->apTrigger[0] && pFKey->aAction[0]==OE_SetNull) || (p==pFKey->apTrigger[1] && pFKey->aAction[1]==OE_SetNull) ){ return 1; } } return 0; } /* ** This function is called when inserting, deleting or updating a row of ** table pTab to generate VDBE code to perform foreign key constraint ** processing for the operation. ** ** For a DELETE operation, parameter regOld is passed the index of the ** first register in an array of (pTab->nCol+1) registers containing the ** rowid of the row being deleted, followed by each of the column values ** of the row being deleted, from left to right. Parameter regNew is passed ** zero in this case. ** ** For an INSERT operation, regOld is passed zero and regNew is passed the ** first register of an array of (pTab->nCol+1) registers containing the new ** row data. ** ** For an UPDATE operation, this function is called twice. Once before ** the original record is deleted from the table using the calling convention ** described for DELETE. Then again after the original record is deleted ** but before the new record is inserted using the INSERT convention. */ SQLITE_PRIVATE void sqlite3FkCheck( Parse *pParse, /* Parse context */ Table *pTab, /* Row is being deleted from this table */ int regOld, /* Previous row data is stored here */ int regNew, /* New row data is stored here */ int *aChange, /* Array indicating UPDATEd columns (or 0) */ int bChngRowid /* True if rowid is UPDATEd */ ){ sqlite3 *db = pParse->db; /* Database handle */ FKey *pFKey; /* Used to iterate through FKs */ int iDb; /* Index of database containing pTab */ const char *zDb; /* Name of database containing pTab */ int isIgnoreErrors = pParse->disableTriggers; /* Exactly one of regOld and regNew should be non-zero. */ assert( (regOld==0)!=(regNew==0) ); /* If foreign-keys are disabled, this function is a no-op. */ if( (db->flags&SQLITE_ForeignKeys)==0 ) return; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); zDb = db->aDb[iDb].zDbSName; /* Loop through all the foreign key constraints for which pTab is the ** child table (the table that the foreign key definition is part of). */ for(pFKey=pTab->pFKey; pFKey; pFKey=pFKey->pNextFrom){ Table *pTo; /* Parent table of foreign key pFKey */ Index *pIdx = 0; /* Index on key columns in pTo */ int *aiFree = 0; int *aiCol; int iCol; int i; int bIgnore = 0; if( aChange && sqlite3_stricmp(pTab->zName, pFKey->zTo)!=0 && fkChildIsModified(pTab, pFKey, aChange, bChngRowid)==0 ){ continue; } /* Find the parent table of this foreign key. Also find a unique index ** on the parent key columns in the parent table. If either of these ** schema items cannot be located, set an error in pParse and return ** early. */ if( pParse->disableTriggers ){ pTo = sqlite3FindTable(db, pFKey->zTo, zDb); }else{ pTo = sqlite3LocateTable(pParse, 0, pFKey->zTo, zDb); } if( !pTo || sqlite3FkLocateIndex(pParse, pTo, pFKey, &pIdx, &aiFree) ){ assert( isIgnoreErrors==0 || (regOld!=0 && regNew==0) ); if( !isIgnoreErrors || db->mallocFailed ) return; if( pTo==0 ){ /* If isIgnoreErrors is true, then a table is being dropped. In this ** case SQLite runs a "DELETE FROM xxx" on the table being dropped ** before actually dropping it in order to check FK constraints. ** If the parent table of an FK constraint on the current table is ** missing, behave as if it is empty. i.e. decrement the relevant ** FK counter for each row of the current table with non-NULL keys. */ Vdbe *v = sqlite3GetVdbe(pParse); int iJump = sqlite3VdbeCurrentAddr(v) + pFKey->nCol + 1; for(i=0; inCol; i++){ int iFromCol, iReg; iFromCol = pFKey->aCol[i].iFrom; iReg = sqlite3TableColumnToStorage(pFKey->pFrom,iFromCol) + regOld+1; sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iJump); VdbeCoverage(v); } sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, -1); } continue; } assert( pFKey->nCol==1 || (aiFree && pIdx) ); if( aiFree ){ aiCol = aiFree; }else{ iCol = pFKey->aCol[0].iFrom; aiCol = &iCol; } for(i=0; inCol; i++){ if( aiCol[i]==pTab->iPKey ){ aiCol[i] = -1; } assert( pIdx==0 || pIdx->aiColumn[i]>=0 ); #ifndef SQLITE_OMIT_AUTHORIZATION /* Request permission to read the parent key columns. If the ** authorization callback returns SQLITE_IGNORE, behave as if any ** values read from the parent table are NULL. */ if( db->xAuth ){ int rcauth; char *zCol = pTo->aCol[pIdx ? pIdx->aiColumn[i] : pTo->iPKey].zName; rcauth = sqlite3AuthReadCol(pParse, pTo->zName, zCol, iDb); bIgnore = (rcauth==SQLITE_IGNORE); } #endif } /* Take a shared-cache advisory read-lock on the parent table. Allocate ** a cursor to use to search the unique index on the parent key columns ** in the parent table. */ sqlite3TableLock(pParse, iDb, pTo->tnum, 0, pTo->zName); pParse->nTab++; if( regOld!=0 ){ /* A row is being removed from the child table. Search for the parent. ** If the parent does not exist, removing the child row resolves an ** outstanding foreign key constraint violation. */ fkLookupParent(pParse, iDb, pTo, pIdx, pFKey, aiCol, regOld, -1, bIgnore); } if( regNew!=0 && !isSetNullAction(pParse, pFKey) ){ /* A row is being added to the child table. If a parent row cannot ** be found, adding the child row has violated the FK constraint. ** ** If this operation is being performed as part of a trigger program ** that is actually a "SET NULL" action belonging to this very ** foreign key, then omit this scan altogether. As all child key ** values are guaranteed to be NULL, it is not possible for adding ** this row to cause an FK violation. */ fkLookupParent(pParse, iDb, pTo, pIdx, pFKey, aiCol, regNew, +1, bIgnore); } sqlite3DbFree(db, aiFree); } /* Loop through all the foreign key constraints that refer to this table. ** (the "child" constraints) */ for(pFKey = sqlite3FkReferences(pTab); pFKey; pFKey=pFKey->pNextTo){ Index *pIdx = 0; /* Foreign key index for pFKey */ SrcList *pSrc; int *aiCol = 0; if( aChange && fkParentIsModified(pTab, pFKey, aChange, bChngRowid)==0 ){ continue; } if( !pFKey->isDeferred && !(db->flags & SQLITE_DeferFKs) && !pParse->pToplevel && !pParse->isMultiWrite ){ assert( regOld==0 && regNew!=0 ); /* Inserting a single row into a parent table cannot cause (or fix) ** an immediate foreign key violation. So do nothing in this case. */ continue; } if( sqlite3FkLocateIndex(pParse, pTab, pFKey, &pIdx, &aiCol) ){ if( !isIgnoreErrors || db->mallocFailed ) return; continue; } assert( aiCol || pFKey->nCol==1 ); /* Create a SrcList structure containing the child table. We need the ** child table as a SrcList for sqlite3WhereBegin() */ pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0); if( pSrc ){ struct SrcList_item *pItem = pSrc->a; pItem->pTab = pFKey->pFrom; pItem->zName = pFKey->pFrom->zName; pItem->pTab->nTabRef++; pItem->iCursor = pParse->nTab++; if( regNew!=0 ){ fkScanChildren(pParse, pSrc, pTab, pIdx, pFKey, aiCol, regNew, -1); } if( regOld!=0 ){ int eAction = pFKey->aAction[aChange!=0]; fkScanChildren(pParse, pSrc, pTab, pIdx, pFKey, aiCol, regOld, 1); /* If this is a deferred FK constraint, or a CASCADE or SET NULL ** action applies, then any foreign key violations caused by ** removing the parent key will be rectified by the action trigger. ** So do not set the "may-abort" flag in this case. ** ** Note 1: If the FK is declared "ON UPDATE CASCADE", then the ** may-abort flag will eventually be set on this statement anyway ** (when this function is called as part of processing the UPDATE ** within the action trigger). ** ** Note 2: At first glance it may seem like SQLite could simply omit ** all OP_FkCounter related scans when either CASCADE or SET NULL ** applies. The trouble starts if the CASCADE or SET NULL action ** trigger causes other triggers or action rules attached to the ** child table to fire. In these cases the fk constraint counters ** might be set incorrectly if any OP_FkCounter related scans are ** omitted. */ if( !pFKey->isDeferred && eAction!=OE_Cascade && eAction!=OE_SetNull ){ sqlite3MayAbort(pParse); } } pItem->zName = 0; sqlite3SrcListDelete(db, pSrc); } sqlite3DbFree(db, aiCol); } } #define COLUMN_MASK(x) (((x)>31) ? 0xffffffff : ((u32)1<<(x))) /* ** This function is called before generating code to update or delete a ** row contained in table pTab. */ SQLITE_PRIVATE u32 sqlite3FkOldmask( Parse *pParse, /* Parse context */ Table *pTab /* Table being modified */ ){ u32 mask = 0; if( pParse->db->flags&SQLITE_ForeignKeys ){ FKey *p; int i; for(p=pTab->pFKey; p; p=p->pNextFrom){ for(i=0; inCol; i++) mask |= COLUMN_MASK(p->aCol[i].iFrom); } for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){ Index *pIdx = 0; sqlite3FkLocateIndex(pParse, pTab, p, &pIdx, 0); if( pIdx ){ for(i=0; inKeyCol; i++){ assert( pIdx->aiColumn[i]>=0 ); mask |= COLUMN_MASK(pIdx->aiColumn[i]); } } } } return mask; } /* ** This function is called before generating code to update or delete a ** row contained in table pTab. If the operation is a DELETE, then ** parameter aChange is passed a NULL value. For an UPDATE, aChange points ** to an array of size N, where N is the number of columns in table pTab. ** If the i'th column is not modified by the UPDATE, then the corresponding ** entry in the aChange[] array is set to -1. If the column is modified, ** the value is 0 or greater. Parameter chngRowid is set to true if the ** UPDATE statement modifies the rowid fields of the table. ** ** If any foreign key processing will be required, this function returns ** non-zero. If there is no foreign key related processing, this function ** returns zero. ** ** For an UPDATE, this function returns 2 if: ** ** * There are any FKs for which pTab is the child and the parent table, or ** * the UPDATE modifies one or more parent keys for which the action is ** not "NO ACTION" (i.e. is CASCADE, SET DEFAULT or SET NULL). ** ** Or, assuming some other foreign key processing is required, 1. */ SQLITE_PRIVATE int sqlite3FkRequired( Parse *pParse, /* Parse context */ Table *pTab, /* Table being modified */ int *aChange, /* Non-NULL for UPDATE operations */ int chngRowid /* True for UPDATE that affects rowid */ ){ int eRet = 0; if( pParse->db->flags&SQLITE_ForeignKeys ){ if( !aChange ){ /* A DELETE operation. Foreign key processing is required if the ** table in question is either the child or parent table for any ** foreign key constraint. */ eRet = (sqlite3FkReferences(pTab) || pTab->pFKey); }else{ /* This is an UPDATE. Foreign key processing is only required if the ** operation modifies one or more child or parent key columns. */ FKey *p; /* Check if any child key columns are being modified. */ for(p=pTab->pFKey; p; p=p->pNextFrom){ if( 0==sqlite3_stricmp(pTab->zName, p->zTo) ) return 2; if( fkChildIsModified(pTab, p, aChange, chngRowid) ){ eRet = 1; } } /* Check if any parent key columns are being modified. */ for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){ if( fkParentIsModified(pTab, p, aChange, chngRowid) ){ if( p->aAction[1]!=OE_None ) return 2; eRet = 1; } } } } return eRet; } /* ** This function is called when an UPDATE or DELETE operation is being ** compiled on table pTab, which is the parent table of foreign-key pFKey. ** If the current operation is an UPDATE, then the pChanges parameter is ** passed a pointer to the list of columns being modified. If it is a ** DELETE, pChanges is passed a NULL pointer. ** ** It returns a pointer to a Trigger structure containing a trigger ** equivalent to the ON UPDATE or ON DELETE action specified by pFKey. ** If the action is "NO ACTION" or "RESTRICT", then a NULL pointer is ** returned (these actions require no special handling by the triggers ** sub-system, code for them is created by fkScanChildren()). ** ** For example, if pFKey is the foreign key and pTab is table "p" in ** the following schema: ** ** CREATE TABLE p(pk PRIMARY KEY); ** CREATE TABLE c(ck REFERENCES p ON DELETE CASCADE); ** ** then the returned trigger structure is equivalent to: ** ** CREATE TRIGGER ... DELETE ON p BEGIN ** DELETE FROM c WHERE ck = old.pk; ** END; ** ** The returned pointer is cached as part of the foreign key object. It ** is eventually freed along with the rest of the foreign key object by ** sqlite3FkDelete(). */ static Trigger *fkActionTrigger( Parse *pParse, /* Parse context */ Table *pTab, /* Table being updated or deleted from */ FKey *pFKey, /* Foreign key to get action for */ ExprList *pChanges /* Change-list for UPDATE, NULL for DELETE */ ){ sqlite3 *db = pParse->db; /* Database handle */ int action; /* One of OE_None, OE_Cascade etc. */ Trigger *pTrigger; /* Trigger definition to return */ int iAction = (pChanges!=0); /* 1 for UPDATE, 0 for DELETE */ action = pFKey->aAction[iAction]; if( action==OE_Restrict && (db->flags & SQLITE_DeferFKs) ){ return 0; } pTrigger = pFKey->apTrigger[iAction]; if( action!=OE_None && !pTrigger ){ char const *zFrom; /* Name of child table */ int nFrom; /* Length in bytes of zFrom */ Index *pIdx = 0; /* Parent key index for this FK */ int *aiCol = 0; /* child table cols -> parent key cols */ TriggerStep *pStep = 0; /* First (only) step of trigger program */ Expr *pWhere = 0; /* WHERE clause of trigger step */ ExprList *pList = 0; /* Changes list if ON UPDATE CASCADE */ Select *pSelect = 0; /* If RESTRICT, "SELECT RAISE(...)" */ int i; /* Iterator variable */ Expr *pWhen = 0; /* WHEN clause for the trigger */ if( sqlite3FkLocateIndex(pParse, pTab, pFKey, &pIdx, &aiCol) ) return 0; assert( aiCol || pFKey->nCol==1 ); for(i=0; inCol; i++){ Token tOld = { "old", 3 }; /* Literal "old" token */ Token tNew = { "new", 3 }; /* Literal "new" token */ Token tFromCol; /* Name of column in child table */ Token tToCol; /* Name of column in parent table */ int iFromCol; /* Idx of column in child table */ Expr *pEq; /* tFromCol = OLD.tToCol */ iFromCol = aiCol ? aiCol[i] : pFKey->aCol[0].iFrom; assert( iFromCol>=0 ); assert( pIdx!=0 || (pTab->iPKey>=0 && pTab->iPKeynCol) ); assert( pIdx==0 || pIdx->aiColumn[i]>=0 ); sqlite3TokenInit(&tToCol, pTab->aCol[pIdx ? pIdx->aiColumn[i] : pTab->iPKey].zName); sqlite3TokenInit(&tFromCol, pFKey->pFrom->aCol[iFromCol].zName); /* Create the expression "OLD.zToCol = zFromCol". It is important ** that the "OLD.zToCol" term is on the LHS of the = operator, so ** that the affinity and collation sequence associated with the ** parent table are used for the comparison. */ pEq = sqlite3PExpr(pParse, TK_EQ, sqlite3PExpr(pParse, TK_DOT, sqlite3ExprAlloc(db, TK_ID, &tOld, 0), sqlite3ExprAlloc(db, TK_ID, &tToCol, 0)), sqlite3ExprAlloc(db, TK_ID, &tFromCol, 0) ); pWhere = sqlite3ExprAnd(pParse, pWhere, pEq); /* For ON UPDATE, construct the next term of the WHEN clause. ** The final WHEN clause will be like this: ** ** WHEN NOT(old.col1 IS new.col1 AND ... AND old.colN IS new.colN) */ if( pChanges ){ pEq = sqlite3PExpr(pParse, TK_IS, sqlite3PExpr(pParse, TK_DOT, sqlite3ExprAlloc(db, TK_ID, &tOld, 0), sqlite3ExprAlloc(db, TK_ID, &tToCol, 0)), sqlite3PExpr(pParse, TK_DOT, sqlite3ExprAlloc(db, TK_ID, &tNew, 0), sqlite3ExprAlloc(db, TK_ID, &tToCol, 0)) ); pWhen = sqlite3ExprAnd(pParse, pWhen, pEq); } if( action!=OE_Restrict && (action!=OE_Cascade || pChanges) ){ Expr *pNew; if( action==OE_Cascade ){ pNew = sqlite3PExpr(pParse, TK_DOT, sqlite3ExprAlloc(db, TK_ID, &tNew, 0), sqlite3ExprAlloc(db, TK_ID, &tToCol, 0)); }else if( action==OE_SetDflt ){ Column *pCol = pFKey->pFrom->aCol + iFromCol; Expr *pDflt; if( pCol->colFlags & COLFLAG_GENERATED ){ testcase( pCol->colFlags & COLFLAG_VIRTUAL ); testcase( pCol->colFlags & COLFLAG_STORED ); pDflt = 0; }else{ pDflt = pCol->pDflt; } if( pDflt ){ pNew = sqlite3ExprDup(db, pDflt, 0); }else{ pNew = sqlite3ExprAlloc(db, TK_NULL, 0, 0); } }else{ pNew = sqlite3ExprAlloc(db, TK_NULL, 0, 0); } pList = sqlite3ExprListAppend(pParse, pList, pNew); sqlite3ExprListSetName(pParse, pList, &tFromCol, 0); } } sqlite3DbFree(db, aiCol); zFrom = pFKey->pFrom->zName; nFrom = sqlite3Strlen30(zFrom); if( action==OE_Restrict ){ Token tFrom; Expr *pRaise; tFrom.z = zFrom; tFrom.n = nFrom; pRaise = sqlite3Expr(db, TK_RAISE, "FOREIGN KEY constraint failed"); if( pRaise ){ pRaise->affExpr = OE_Abort; } pSelect = sqlite3SelectNew(pParse, sqlite3ExprListAppend(pParse, 0, pRaise), sqlite3SrcListAppend(pParse, 0, &tFrom, 0), pWhere, 0, 0, 0, 0, 0 ); pWhere = 0; } /* Disable lookaside memory allocation */ DisableLookaside; pTrigger = (Trigger *)sqlite3DbMallocZero(db, sizeof(Trigger) + /* struct Trigger */ sizeof(TriggerStep) + /* Single step in trigger program */ nFrom + 1 /* Space for pStep->zTarget */ ); if( pTrigger ){ pStep = pTrigger->step_list = (TriggerStep *)&pTrigger[1]; pStep->zTarget = (char *)&pStep[1]; memcpy((char *)pStep->zTarget, zFrom, nFrom); pStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE); pStep->pExprList = sqlite3ExprListDup(db, pList, EXPRDUP_REDUCE); pStep->pSelect = sqlite3SelectDup(db, pSelect, EXPRDUP_REDUCE); if( pWhen ){ pWhen = sqlite3PExpr(pParse, TK_NOT, pWhen, 0); pTrigger->pWhen = sqlite3ExprDup(db, pWhen, EXPRDUP_REDUCE); } } /* Re-enable the lookaside buffer, if it was disabled earlier. */ EnableLookaside; sqlite3ExprDelete(db, pWhere); sqlite3ExprDelete(db, pWhen); sqlite3ExprListDelete(db, pList); sqlite3SelectDelete(db, pSelect); if( db->mallocFailed==1 ){ fkTriggerDelete(db, pTrigger); return 0; } assert( pStep!=0 ); assert( pTrigger!=0 ); switch( action ){ case OE_Restrict: pStep->op = TK_SELECT; break; case OE_Cascade: if( !pChanges ){ pStep->op = TK_DELETE; break; } /* no break */ deliberate_fall_through default: pStep->op = TK_UPDATE; } pStep->pTrig = pTrigger; pTrigger->pSchema = pTab->pSchema; pTrigger->pTabSchema = pTab->pSchema; pFKey->apTrigger[iAction] = pTrigger; pTrigger->op = (pChanges ? TK_UPDATE : TK_DELETE); } return pTrigger; } /* ** This function is called when deleting or updating a row to implement ** any required CASCADE, SET NULL or SET DEFAULT actions. */ SQLITE_PRIVATE void sqlite3FkActions( Parse *pParse, /* Parse context */ Table *pTab, /* Table being updated or deleted from */ ExprList *pChanges, /* Change-list for UPDATE, NULL for DELETE */ int regOld, /* Address of array containing old row */ int *aChange, /* Array indicating UPDATEd columns (or 0) */ int bChngRowid /* True if rowid is UPDATEd */ ){ /* If foreign-key support is enabled, iterate through all FKs that ** refer to table pTab. If there is an action associated with the FK ** for this operation (either update or delete), invoke the associated ** trigger sub-program. */ if( pParse->db->flags&SQLITE_ForeignKeys ){ FKey *pFKey; /* Iterator variable */ for(pFKey = sqlite3FkReferences(pTab); pFKey; pFKey=pFKey->pNextTo){ if( aChange==0 || fkParentIsModified(pTab, pFKey, aChange, bChngRowid) ){ Trigger *pAct = fkActionTrigger(pParse, pTab, pFKey, pChanges); if( pAct ){ sqlite3CodeRowTriggerDirect(pParse, pAct, pTab, regOld, OE_Abort, 0); } } } } } #endif /* ifndef SQLITE_OMIT_TRIGGER */ /* ** Free all memory associated with foreign key definitions attached to ** table pTab. Remove the deleted foreign keys from the Schema.fkeyHash ** hash table. */ SQLITE_PRIVATE void sqlite3FkDelete(sqlite3 *db, Table *pTab){ FKey *pFKey; /* Iterator variable */ FKey *pNext; /* Copy of pFKey->pNextFrom */ assert( db==0 || IsVirtual(pTab) || sqlite3SchemaMutexHeld(db, 0, pTab->pSchema) ); for(pFKey=pTab->pFKey; pFKey; pFKey=pNext){ /* Remove the FK from the fkeyHash hash table. */ if( !db || db->pnBytesFreed==0 ){ if( pFKey->pPrevTo ){ pFKey->pPrevTo->pNextTo = pFKey->pNextTo; }else{ void *p = (void *)pFKey->pNextTo; const char *z = (p ? pFKey->pNextTo->zTo : pFKey->zTo); sqlite3HashInsert(&pTab->pSchema->fkeyHash, z, p); } if( pFKey->pNextTo ){ pFKey->pNextTo->pPrevTo = pFKey->pPrevTo; } } /* EV: R-30323-21917 Each foreign key constraint in SQLite is ** classified as either immediate or deferred. */ assert( pFKey->isDeferred==0 || pFKey->isDeferred==1 ); /* Delete any triggers created to implement actions for this FK. */ #ifndef SQLITE_OMIT_TRIGGER fkTriggerDelete(db, pFKey->apTrigger[0]); fkTriggerDelete(db, pFKey->apTrigger[1]); #endif pNext = pFKey->pNextFrom; sqlite3DbFree(db, pFKey); } } #endif /* ifndef SQLITE_OMIT_FOREIGN_KEY */ /************** End of fkey.c ************************************************/ /************** Begin file insert.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that are called by the parser ** to handle INSERT statements in SQLite. */ /* #include "sqliteInt.h" */ /* ** Generate code that will ** ** (1) acquire a lock for table pTab then ** (2) open pTab as cursor iCur. ** ** If pTab is a WITHOUT ROWID table, then it is the PRIMARY KEY index ** for that table that is actually opened. */ SQLITE_PRIVATE void sqlite3OpenTable( Parse *pParse, /* Generate code into this VDBE */ int iCur, /* The cursor number of the table */ int iDb, /* The database index in sqlite3.aDb[] */ Table *pTab, /* The table to be opened */ int opcode /* OP_OpenRead or OP_OpenWrite */ ){ Vdbe *v; assert( !IsVirtual(pTab) ); v = sqlite3GetVdbe(pParse); assert( opcode==OP_OpenWrite || opcode==OP_OpenRead ); sqlite3TableLock(pParse, iDb, pTab->tnum, (opcode==OP_OpenWrite)?1:0, pTab->zName); if( HasRowid(pTab) ){ sqlite3VdbeAddOp4Int(v, opcode, iCur, pTab->tnum, iDb, pTab->nNVCol); VdbeComment((v, "%s", pTab->zName)); }else{ Index *pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk!=0 ); assert( pPk->tnum==pTab->tnum ); sqlite3VdbeAddOp3(v, opcode, iCur, pPk->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pPk); VdbeComment((v, "%s", pTab->zName)); } } /* ** Return a pointer to the column affinity string associated with index ** pIdx. A column affinity string has one character for each column in ** the table, according to the affinity of the column: ** ** Character Column affinity ** ------------------------------ ** 'A' BLOB ** 'B' TEXT ** 'C' NUMERIC ** 'D' INTEGER ** 'F' REAL ** ** An extra 'D' is appended to the end of the string to cover the ** rowid that appears as the last column in every index. ** ** Memory for the buffer containing the column index affinity string ** is managed along with the rest of the Index structure. It will be ** released when sqlite3DeleteIndex() is called. */ SQLITE_PRIVATE const char *sqlite3IndexAffinityStr(sqlite3 *db, Index *pIdx){ if( !pIdx->zColAff ){ /* The first time a column affinity string for a particular index is ** required, it is allocated and populated here. It is then stored as ** a member of the Index structure for subsequent use. ** ** The column affinity string will eventually be deleted by ** sqliteDeleteIndex() when the Index structure itself is cleaned ** up. */ int n; Table *pTab = pIdx->pTable; pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+1); if( !pIdx->zColAff ){ sqlite3OomFault(db); return 0; } for(n=0; nnColumn; n++){ i16 x = pIdx->aiColumn[n]; char aff; if( x>=0 ){ aff = pTab->aCol[x].affinity; }else if( x==XN_ROWID ){ aff = SQLITE_AFF_INTEGER; }else{ assert( x==XN_EXPR ); assert( pIdx->aColExpr!=0 ); aff = sqlite3ExprAffinity(pIdx->aColExpr->a[n].pExpr); } if( affSQLITE_AFF_NUMERIC) aff = SQLITE_AFF_NUMERIC; pIdx->zColAff[n] = aff; } pIdx->zColAff[n] = 0; } return pIdx->zColAff; } /* ** Compute the affinity string for table pTab, if it has not already been ** computed. As an optimization, omit trailing SQLITE_AFF_BLOB affinities. ** ** If the affinity exists (if it is no entirely SQLITE_AFF_BLOB values) and ** if iReg>0 then code an OP_Affinity opcode that will set the affinities ** for register iReg and following. Or if affinities exists and iReg==0, ** then just set the P4 operand of the previous opcode (which should be ** an OP_MakeRecord) to the affinity string. ** ** A column affinity string has one character per column: ** ** Character Column affinity ** ------------------------------ ** 'A' BLOB ** 'B' TEXT ** 'C' NUMERIC ** 'D' INTEGER ** 'E' REAL */ SQLITE_PRIVATE void sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg){ int i, j; char *zColAff = pTab->zColAff; if( zColAff==0 ){ sqlite3 *db = sqlite3VdbeDb(v); zColAff = (char *)sqlite3DbMallocRaw(0, pTab->nCol+1); if( !zColAff ){ sqlite3OomFault(db); return; } for(i=j=0; inCol; i++){ assert( pTab->aCol[i].affinity!=0 ); if( (pTab->aCol[i].colFlags & COLFLAG_VIRTUAL)==0 ){ zColAff[j++] = pTab->aCol[i].affinity; } } do{ zColAff[j--] = 0; }while( j>=0 && zColAff[j]<=SQLITE_AFF_BLOB ); pTab->zColAff = zColAff; } assert( zColAff!=0 ); i = sqlite3Strlen30NN(zColAff); if( i ){ if( iReg ){ sqlite3VdbeAddOp4(v, OP_Affinity, iReg, i, 0, zColAff, i); }else{ sqlite3VdbeChangeP4(v, -1, zColAff, i); } } } /* ** Return non-zero if the table pTab in database iDb or any of its indices ** have been opened at any point in the VDBE program. This is used to see if ** a statement of the form "INSERT INTO SELECT ..." can ** run without using a temporary table for the results of the SELECT. */ static int readsTable(Parse *p, int iDb, Table *pTab){ Vdbe *v = sqlite3GetVdbe(p); int i; int iEnd = sqlite3VdbeCurrentAddr(v); #ifndef SQLITE_OMIT_VIRTUALTABLE VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; #endif for(i=1; iopcode==OP_OpenRead && pOp->p3==iDb ){ Index *pIndex; Pgno tnum = pOp->p2; if( tnum==pTab->tnum ){ return 1; } for(pIndex=pTab->pIndex; pIndex; pIndex=pIndex->pNext){ if( tnum==pIndex->tnum ){ return 1; } } } #ifndef SQLITE_OMIT_VIRTUALTABLE if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pVTab ){ assert( pOp->p4.pVtab!=0 ); assert( pOp->p4type==P4_VTAB ); return 1; } #endif } return 0; } /* This walker callback will compute the union of colFlags flags for all ** referenced columns in a CHECK constraint or generated column expression. */ static int exprColumnFlagUnion(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_COLUMN && pExpr->iColumn>=0 ){ assert( pExpr->iColumn < pWalker->u.pTab->nCol ); pWalker->eCode |= pWalker->u.pTab->aCol[pExpr->iColumn].colFlags; } return WRC_Continue; } #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* ** All regular columns for table pTab have been puts into registers ** starting with iRegStore. The registers that correspond to STORED ** or VIRTUAL columns have not yet been initialized. This routine goes ** back and computes the values for those columns based on the previously ** computed normal columns. */ SQLITE_PRIVATE void sqlite3ComputeGeneratedColumns( Parse *pParse, /* Parsing context */ int iRegStore, /* Register holding the first column */ Table *pTab /* The table */ ){ int i; Walker w; Column *pRedo; int eProgress; VdbeOp *pOp; assert( pTab->tabFlags & TF_HasGenerated ); testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); /* Before computing generated columns, first go through and make sure ** that appropriate affinity has been applied to the regular columns */ sqlite3TableAffinity(pParse->pVdbe, pTab, iRegStore); if( (pTab->tabFlags & TF_HasStored)!=0 && (pOp = sqlite3VdbeGetOp(pParse->pVdbe,-1))->opcode==OP_Affinity ){ /* Change the OP_Affinity argument to '@' (NONE) for all stored ** columns. '@' is the no-op affinity and those columns have not ** yet been computed. */ int ii, jj; char *zP4 = pOp->p4.z; assert( zP4!=0 ); assert( pOp->p4type==P4_DYNAMIC ); for(ii=jj=0; zP4[jj]; ii++){ if( pTab->aCol[ii].colFlags & COLFLAG_VIRTUAL ){ continue; } if( pTab->aCol[ii].colFlags & COLFLAG_STORED ){ zP4[jj] = SQLITE_AFF_NONE; } jj++; } } /* Because there can be multiple generated columns that refer to one another, ** this is a two-pass algorithm. On the first pass, mark all generated ** columns as "not available". */ for(i=0; inCol; i++){ if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){ testcase( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ); testcase( pTab->aCol[i].colFlags & COLFLAG_STORED ); pTab->aCol[i].colFlags |= COLFLAG_NOTAVAIL; } } w.u.pTab = pTab; w.xExprCallback = exprColumnFlagUnion; w.xSelectCallback = 0; w.xSelectCallback2 = 0; /* On the second pass, compute the value of each NOT-AVAILABLE column. ** Companion code in the TK_COLUMN case of sqlite3ExprCodeTarget() will ** compute dependencies and mark remove the COLSPAN_NOTAVAIL mark, as ** they are needed. */ pParse->iSelfTab = -iRegStore; do{ eProgress = 0; pRedo = 0; for(i=0; inCol; i++){ Column *pCol = pTab->aCol + i; if( (pCol->colFlags & COLFLAG_NOTAVAIL)!=0 ){ int x; pCol->colFlags |= COLFLAG_BUSY; w.eCode = 0; sqlite3WalkExpr(&w, pCol->pDflt); pCol->colFlags &= ~COLFLAG_BUSY; if( w.eCode & COLFLAG_NOTAVAIL ){ pRedo = pCol; continue; } eProgress = 1; assert( pCol->colFlags & COLFLAG_GENERATED ); x = sqlite3TableColumnToStorage(pTab, i) + iRegStore; sqlite3ExprCodeGeneratedColumn(pParse, pCol, x); pCol->colFlags &= ~COLFLAG_NOTAVAIL; } } }while( pRedo && eProgress ); if( pRedo ){ sqlite3ErrorMsg(pParse, "generated column loop on \"%s\"", pRedo->zName); } pParse->iSelfTab = 0; } #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ #ifndef SQLITE_OMIT_AUTOINCREMENT /* ** Locate or create an AutoincInfo structure associated with table pTab ** which is in database iDb. Return the register number for the register ** that holds the maximum rowid. Return zero if pTab is not an AUTOINCREMENT ** table. (Also return zero when doing a VACUUM since we do not want to ** update the AUTOINCREMENT counters during a VACUUM.) ** ** There is at most one AutoincInfo structure per table even if the ** same table is autoincremented multiple times due to inserts within ** triggers. A new AutoincInfo structure is created if this is the ** first use of table pTab. On 2nd and subsequent uses, the original ** AutoincInfo structure is used. ** ** Four consecutive registers are allocated: ** ** (1) The name of the pTab table. ** (2) The maximum ROWID of pTab. ** (3) The rowid in sqlite_sequence of pTab ** (4) The original value of the max ROWID in pTab, or NULL if none ** ** The 2nd register is the one that is returned. That is all the ** insert routine needs to know about. */ static int autoIncBegin( Parse *pParse, /* Parsing context */ int iDb, /* Index of the database holding pTab */ Table *pTab /* The table we are writing to */ ){ int memId = 0; /* Register holding maximum rowid */ assert( pParse->db->aDb[iDb].pSchema!=0 ); if( (pTab->tabFlags & TF_Autoincrement)!=0 && (pParse->db->mDbFlags & DBFLAG_Vacuum)==0 ){ Parse *pToplevel = sqlite3ParseToplevel(pParse); AutoincInfo *pInfo; Table *pSeqTab = pParse->db->aDb[iDb].pSchema->pSeqTab; /* Verify that the sqlite_sequence table exists and is an ordinary ** rowid table with exactly two columns. ** Ticket d8dc2b3a58cd5dc2918a1d4acb 2018-05-23 */ if( pSeqTab==0 || !HasRowid(pSeqTab) || IsVirtual(pSeqTab) || pSeqTab->nCol!=2 ){ pParse->nErr++; pParse->rc = SQLITE_CORRUPT_SEQUENCE; return 0; } pInfo = pToplevel->pAinc; while( pInfo && pInfo->pTab!=pTab ){ pInfo = pInfo->pNext; } if( pInfo==0 ){ pInfo = sqlite3DbMallocRawNN(pParse->db, sizeof(*pInfo)); if( pInfo==0 ) return 0; pInfo->pNext = pToplevel->pAinc; pToplevel->pAinc = pInfo; pInfo->pTab = pTab; pInfo->iDb = iDb; pToplevel->nMem++; /* Register to hold name of table */ pInfo->regCtr = ++pToplevel->nMem; /* Max rowid register */ pToplevel->nMem +=2; /* Rowid in sqlite_sequence + orig max val */ } memId = pInfo->regCtr; } return memId; } /* ** This routine generates code that will initialize all of the ** register used by the autoincrement tracker. */ SQLITE_PRIVATE void sqlite3AutoincrementBegin(Parse *pParse){ AutoincInfo *p; /* Information about an AUTOINCREMENT */ sqlite3 *db = pParse->db; /* The database connection */ Db *pDb; /* Database only autoinc table */ int memId; /* Register holding max rowid */ Vdbe *v = pParse->pVdbe; /* VDBE under construction */ /* This routine is never called during trigger-generation. It is ** only called from the top-level */ assert( pParse->pTriggerTab==0 ); assert( sqlite3IsToplevel(pParse) ); assert( v ); /* We failed long ago if this is not so */ for(p = pParse->pAinc; p; p = p->pNext){ static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList autoInc[] = { /* 0 */ {OP_Null, 0, 0, 0}, /* 1 */ {OP_Rewind, 0, 10, 0}, /* 2 */ {OP_Column, 0, 0, 0}, /* 3 */ {OP_Ne, 0, 9, 0}, /* 4 */ {OP_Rowid, 0, 0, 0}, /* 5 */ {OP_Column, 0, 1, 0}, /* 6 */ {OP_AddImm, 0, 0, 0}, /* 7 */ {OP_Copy, 0, 0, 0}, /* 8 */ {OP_Goto, 0, 11, 0}, /* 9 */ {OP_Next, 0, 2, 0}, /* 10 */ {OP_Integer, 0, 0, 0}, /* 11 */ {OP_Close, 0, 0, 0} }; VdbeOp *aOp; pDb = &db->aDb[p->iDb]; memId = p->regCtr; assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) ); sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenRead); sqlite3VdbeLoadString(v, memId-1, p->pTab->zName); aOp = sqlite3VdbeAddOpList(v, ArraySize(autoInc), autoInc, iLn); if( aOp==0 ) break; aOp[0].p2 = memId; aOp[0].p3 = memId+2; aOp[2].p3 = memId; aOp[3].p1 = memId-1; aOp[3].p3 = memId; aOp[3].p5 = SQLITE_JUMPIFNULL; aOp[4].p2 = memId+1; aOp[5].p3 = memId; aOp[6].p1 = memId; aOp[7].p2 = memId+2; aOp[7].p1 = memId; aOp[10].p2 = memId; if( pParse->nTab==0 ) pParse->nTab = 1; } } /* ** Update the maximum rowid for an autoincrement calculation. ** ** This routine should be called when the regRowid register holds a ** new rowid that is about to be inserted. If that new rowid is ** larger than the maximum rowid in the memId memory cell, then the ** memory cell is updated. */ static void autoIncStep(Parse *pParse, int memId, int regRowid){ if( memId>0 ){ sqlite3VdbeAddOp2(pParse->pVdbe, OP_MemMax, memId, regRowid); } } /* ** This routine generates the code needed to write autoincrement ** maximum rowid values back into the sqlite_sequence register. ** Every statement that might do an INSERT into an autoincrement ** table (either directly or through triggers) needs to call this ** routine just before the "exit" code. */ static SQLITE_NOINLINE void autoIncrementEnd(Parse *pParse){ AutoincInfo *p; Vdbe *v = pParse->pVdbe; sqlite3 *db = pParse->db; assert( v ); for(p = pParse->pAinc; p; p = p->pNext){ static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList autoIncEnd[] = { /* 0 */ {OP_NotNull, 0, 2, 0}, /* 1 */ {OP_NewRowid, 0, 0, 0}, /* 2 */ {OP_MakeRecord, 0, 2, 0}, /* 3 */ {OP_Insert, 0, 0, 0}, /* 4 */ {OP_Close, 0, 0, 0} }; VdbeOp *aOp; Db *pDb = &db->aDb[p->iDb]; int iRec; int memId = p->regCtr; iRec = sqlite3GetTempReg(pParse); assert( sqlite3SchemaMutexHeld(db, 0, pDb->pSchema) ); sqlite3VdbeAddOp3(v, OP_Le, memId+2, sqlite3VdbeCurrentAddr(v)+7, memId); VdbeCoverage(v); sqlite3OpenTable(pParse, 0, p->iDb, pDb->pSchema->pSeqTab, OP_OpenWrite); aOp = sqlite3VdbeAddOpList(v, ArraySize(autoIncEnd), autoIncEnd, iLn); if( aOp==0 ) break; aOp[0].p1 = memId+1; aOp[1].p2 = memId+1; aOp[2].p1 = memId-1; aOp[2].p3 = iRec; aOp[3].p2 = iRec; aOp[3].p3 = memId+1; aOp[3].p5 = OPFLAG_APPEND; sqlite3ReleaseTempReg(pParse, iRec); } } SQLITE_PRIVATE void sqlite3AutoincrementEnd(Parse *pParse){ if( pParse->pAinc ) autoIncrementEnd(pParse); } #else /* ** If SQLITE_OMIT_AUTOINCREMENT is defined, then the three routines ** above are all no-ops */ # define autoIncBegin(A,B,C) (0) # define autoIncStep(A,B,C) #endif /* SQLITE_OMIT_AUTOINCREMENT */ /* Forward declaration */ static int xferOptimization( Parse *pParse, /* Parser context */ Table *pDest, /* The table we are inserting into */ Select *pSelect, /* A SELECT statement to use as the data source */ int onError, /* How to handle constraint errors */ int iDbDest /* The database of pDest */ ); /* ** This routine is called to handle SQL of the following forms: ** ** insert into TABLE (IDLIST) values(EXPRLIST),(EXPRLIST),... ** insert into TABLE (IDLIST) select ** insert into TABLE (IDLIST) default values ** ** The IDLIST following the table name is always optional. If omitted, ** then a list of all (non-hidden) columns for the table is substituted. ** The IDLIST appears in the pColumn parameter. pColumn is NULL if IDLIST ** is omitted. ** ** For the pSelect parameter holds the values to be inserted for the ** first two forms shown above. A VALUES clause is really just short-hand ** for a SELECT statement that omits the FROM clause and everything else ** that follows. If the pSelect parameter is NULL, that means that the ** DEFAULT VALUES form of the INSERT statement is intended. ** ** The code generated follows one of four templates. For a simple ** insert with data coming from a single-row VALUES clause, the code executes ** once straight down through. Pseudo-code follows (we call this ** the "1st template"): ** ** open write cursor to
    and its indices ** put VALUES clause expressions into registers ** write the resulting record into
    ** cleanup ** ** The three remaining templates assume the statement is of the form ** ** INSERT INTO
    SELECT ... ** ** If the SELECT clause is of the restricted form "SELECT * FROM " - ** in other words if the SELECT pulls all columns from a single table ** and there is no WHERE or LIMIT or GROUP BY or ORDER BY clauses, and ** if and are distinct tables but have identical ** schemas, including all the same indices, then a special optimization ** is invoked that copies raw records from over to . ** See the xferOptimization() function for the implementation of this ** template. This is the 2nd template. ** ** open a write cursor to
    ** open read cursor on ** transfer all records in over to
    ** close cursors ** foreach index on
    ** open a write cursor on the
    index ** open a read cursor on the corresponding index ** transfer all records from the read to the write cursors ** close cursors ** end foreach ** ** The 3rd template is for when the second template does not apply ** and the SELECT clause does not read from
    at any time. ** The generated code follows this template: ** ** X <- A ** goto B ** A: setup for the SELECT ** loop over the rows in the SELECT ** load values into registers R..R+n ** yield X ** end loop ** cleanup after the SELECT ** end-coroutine X ** B: open write cursor to
    and its indices ** C: yield X, at EOF goto D ** insert the select result into
    from R..R+n ** goto C ** D: cleanup ** ** The 4th template is used if the insert statement takes its ** values from a SELECT but the data is being inserted into a table ** that is also read as part of the SELECT. In the third form, ** we have to use an intermediate table to store the results of ** the select. The template is like this: ** ** X <- A ** goto B ** A: setup for the SELECT ** loop over the tables in the SELECT ** load value into register R..R+n ** yield X ** end loop ** cleanup after the SELECT ** end co-routine R ** B: open temp table ** L: yield X, at EOF goto M ** insert row from R..R+n into temp table ** goto L ** M: open write cursor to
    and its indices ** rewind temp table ** C: loop over rows of intermediate table ** transfer values form intermediate table into
    ** end loop ** D: cleanup */ SQLITE_PRIVATE void sqlite3Insert( Parse *pParse, /* Parser context */ SrcList *pTabList, /* Name of table into which we are inserting */ Select *pSelect, /* A SELECT statement to use as the data source */ IdList *pColumn, /* Column names corresponding to IDLIST, or NULL. */ int onError, /* How to handle constraint errors */ Upsert *pUpsert /* ON CONFLICT clauses for upsert, or NULL */ ){ sqlite3 *db; /* The main database structure */ Table *pTab; /* The table to insert into. aka TABLE */ int i, j; /* Loop counters */ Vdbe *v; /* Generate code into this virtual machine */ Index *pIdx; /* For looping over indices of the table */ int nColumn; /* Number of columns in the data */ int nHidden = 0; /* Number of hidden columns if TABLE is virtual */ int iDataCur = 0; /* VDBE cursor that is the main data repository */ int iIdxCur = 0; /* First index cursor */ int ipkColumn = -1; /* Column that is the INTEGER PRIMARY KEY */ int endOfLoop; /* Label for the end of the insertion loop */ int srcTab = 0; /* Data comes from this temporary cursor if >=0 */ int addrInsTop = 0; /* Jump to label "D" */ int addrCont = 0; /* Top of insert loop. Label "C" in templates 3 and 4 */ SelectDest dest; /* Destination for SELECT on rhs of INSERT */ int iDb; /* Index of database holding TABLE */ u8 useTempTable = 0; /* Store SELECT results in intermediate table */ u8 appendFlag = 0; /* True if the insert is likely to be an append */ u8 withoutRowid; /* 0 for normal table. 1 for WITHOUT ROWID table */ u8 bIdListInOrder; /* True if IDLIST is in table order */ ExprList *pList = 0; /* List of VALUES() to be inserted */ int iRegStore; /* Register in which to store next column */ /* Register allocations */ int regFromSelect = 0;/* Base register for data coming from SELECT */ int regAutoinc = 0; /* Register holding the AUTOINCREMENT counter */ int regRowCount = 0; /* Memory cell used for the row counter */ int regIns; /* Block of regs holding rowid+data being inserted */ int regRowid; /* registers holding insert rowid */ int regData; /* register holding first column to insert */ int *aRegIdx = 0; /* One register allocated to each index */ #ifndef SQLITE_OMIT_TRIGGER int isView; /* True if attempting to insert into a view */ Trigger *pTrigger; /* List of triggers on pTab, if required */ int tmask; /* Mask of trigger times */ #endif db = pParse->db; if( pParse->nErr || db->mallocFailed ){ goto insert_cleanup; } dest.iSDParm = 0; /* Suppress a harmless compiler warning */ /* If the Select object is really just a simple VALUES() list with a ** single row (the common case) then keep that one row of values ** and discard the other (unused) parts of the pSelect object */ if( pSelect && (pSelect->selFlags & SF_Values)!=0 && pSelect->pPrior==0 ){ pList = pSelect->pEList; pSelect->pEList = 0; sqlite3SelectDelete(db, pSelect); pSelect = 0; } /* Locate the table into which we will be inserting new information. */ assert( pTabList->nSrc==1 ); pTab = sqlite3SrcListLookup(pParse, pTabList); if( pTab==0 ){ goto insert_cleanup; } iDb = sqlite3SchemaToIndex(db, pTab->pSchema); assert( iDbnDb ); if( sqlite3AuthCheck(pParse, SQLITE_INSERT, pTab->zName, 0, db->aDb[iDb].zDbSName) ){ goto insert_cleanup; } withoutRowid = !HasRowid(pTab); /* Figure out if we have any triggers and if the table being ** inserted into is a view */ #ifndef SQLITE_OMIT_TRIGGER pTrigger = sqlite3TriggersExist(pParse, pTab, TK_INSERT, 0, &tmask); isView = pTab->pSelect!=0; #else # define pTrigger 0 # define tmask 0 # define isView 0 #endif #ifdef SQLITE_OMIT_VIEW # undef isView # define isView 0 #endif assert( (pTrigger && tmask) || (pTrigger==0 && tmask==0) ); /* If pTab is really a view, make sure it has been initialized. ** ViewGetColumnNames() is a no-op if pTab is not a view. */ if( sqlite3ViewGetColumnNames(pParse, pTab) ){ goto insert_cleanup; } /* Cannot insert into a read-only table. */ if( sqlite3IsReadOnly(pParse, pTab, tmask) ){ goto insert_cleanup; } /* Allocate a VDBE */ v = sqlite3GetVdbe(pParse); if( v==0 ) goto insert_cleanup; if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); sqlite3BeginWriteOperation(pParse, pSelect || pTrigger, iDb); #ifndef SQLITE_OMIT_XFER_OPT /* If the statement is of the form ** ** INSERT INTO SELECT * FROM ; ** ** Then special optimizations can be applied that make the transfer ** very fast and which reduce fragmentation of indices. ** ** This is the 2nd template. */ if( pColumn==0 && xferOptimization(pParse, pTab, pSelect, onError, iDb) ){ assert( !pTrigger ); assert( pList==0 ); goto insert_end; } #endif /* SQLITE_OMIT_XFER_OPT */ /* If this is an AUTOINCREMENT table, look up the sequence number in the ** sqlite_sequence table and store it in memory cell regAutoinc. */ regAutoinc = autoIncBegin(pParse, iDb, pTab); /* Allocate a block registers to hold the rowid and the values ** for all columns of the new row. */ regRowid = regIns = pParse->nMem+1; pParse->nMem += pTab->nCol + 1; if( IsVirtual(pTab) ){ regRowid++; pParse->nMem++; } regData = regRowid+1; /* If the INSERT statement included an IDLIST term, then make sure ** all elements of the IDLIST really are columns of the table and ** remember the column indices. ** ** If the table has an INTEGER PRIMARY KEY column and that column ** is named in the IDLIST, then record in the ipkColumn variable ** the index into IDLIST of the primary key column. ipkColumn is ** the index of the primary key as it appears in IDLIST, not as ** is appears in the original table. (The index of the INTEGER ** PRIMARY KEY in the original table is pTab->iPKey.) After this ** loop, if ipkColumn==(-1), that means that integer primary key ** is unspecified, and hence the table is either WITHOUT ROWID or ** it will automatically generated an integer primary key. ** ** bIdListInOrder is true if the columns in IDLIST are in storage ** order. This enables an optimization that avoids shuffling the ** columns into storage order. False negatives are harmless, ** but false positives will cause database corruption. */ bIdListInOrder = (pTab->tabFlags & (TF_OOOHidden|TF_HasStored))==0; if( pColumn ){ for(i=0; inId; i++){ pColumn->a[i].idx = -1; } for(i=0; inId; i++){ for(j=0; jnCol; j++){ if( sqlite3StrICmp(pColumn->a[i].zName, pTab->aCol[j].zName)==0 ){ pColumn->a[i].idx = j; if( i!=j ) bIdListInOrder = 0; if( j==pTab->iPKey ){ ipkColumn = i; assert( !withoutRowid ); } #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( pTab->aCol[j].colFlags & (COLFLAG_STORED|COLFLAG_VIRTUAL) ){ sqlite3ErrorMsg(pParse, "cannot INSERT into generated column \"%s\"", pTab->aCol[j].zName); goto insert_cleanup; } #endif break; } } if( j>=pTab->nCol ){ if( sqlite3IsRowid(pColumn->a[i].zName) && !withoutRowid ){ ipkColumn = i; bIdListInOrder = 0; }else{ sqlite3ErrorMsg(pParse, "table %S has no column named %s", pTabList, 0, pColumn->a[i].zName); pParse->checkSchema = 1; goto insert_cleanup; } } } } /* Figure out how many columns of data are supplied. If the data ** is coming from a SELECT statement, then generate a co-routine that ** produces a single row of the SELECT on each invocation. The ** co-routine is the common header to the 3rd and 4th templates. */ if( pSelect ){ /* Data is coming from a SELECT or from a multi-row VALUES clause. ** Generate a co-routine to run the SELECT. */ int regYield; /* Register holding co-routine entry-point */ int addrTop; /* Top of the co-routine */ int rc; /* Result code */ regYield = ++pParse->nMem; addrTop = sqlite3VdbeCurrentAddr(v) + 1; sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, addrTop); sqlite3SelectDestInit(&dest, SRT_Coroutine, regYield); dest.iSdst = bIdListInOrder ? regData : 0; dest.nSdst = pTab->nCol; rc = sqlite3Select(pParse, pSelect, &dest); regFromSelect = dest.iSdst; if( rc || db->mallocFailed || pParse->nErr ) goto insert_cleanup; sqlite3VdbeEndCoroutine(v, regYield); sqlite3VdbeJumpHere(v, addrTop - 1); /* label B: */ assert( pSelect->pEList ); nColumn = pSelect->pEList->nExpr; /* Set useTempTable to TRUE if the result of the SELECT statement ** should be written into a temporary table (template 4). Set to ** FALSE if each output row of the SELECT can be written directly into ** the destination table (template 3). ** ** A temp table must be used if the table being updated is also one ** of the tables being read by the SELECT statement. Also use a ** temp table in the case of row triggers. */ if( pTrigger || readsTable(pParse, iDb, pTab) ){ useTempTable = 1; } if( useTempTable ){ /* Invoke the coroutine to extract information from the SELECT ** and add it to a transient table srcTab. The code generated ** here is from the 4th template: ** ** B: open temp table ** L: yield X, goto M at EOF ** insert row from R..R+n into temp table ** goto L ** M: ... */ int regRec; /* Register to hold packed record */ int regTempRowid; /* Register to hold temp table ROWID */ int addrL; /* Label "L" */ srcTab = pParse->nTab++; regRec = sqlite3GetTempReg(pParse); regTempRowid = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn); addrL = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec); sqlite3VdbeAddOp2(v, OP_NewRowid, srcTab, regTempRowid); sqlite3VdbeAddOp3(v, OP_Insert, srcTab, regRec, regTempRowid); sqlite3VdbeGoto(v, addrL); sqlite3VdbeJumpHere(v, addrL); sqlite3ReleaseTempReg(pParse, regRec); sqlite3ReleaseTempReg(pParse, regTempRowid); } }else{ /* This is the case if the data for the INSERT is coming from a ** single-row VALUES clause */ NameContext sNC; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; srcTab = -1; assert( useTempTable==0 ); if( pList ){ nColumn = pList->nExpr; if( sqlite3ResolveExprListNames(&sNC, pList) ){ goto insert_cleanup; } }else{ nColumn = 0; } } /* If there is no IDLIST term but the table has an integer primary ** key, the set the ipkColumn variable to the integer primary key ** column index in the original table definition. */ if( pColumn==0 && nColumn>0 ){ ipkColumn = pTab->iPKey; #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( ipkColumn>=0 && (pTab->tabFlags & TF_HasGenerated)!=0 ){ testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); for(i=ipkColumn-1; i>=0; i--){ if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){ testcase( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ); testcase( pTab->aCol[i].colFlags & COLFLAG_STORED ); ipkColumn--; } } } #endif } /* Make sure the number of columns in the source data matches the number ** of columns to be inserted into the table. */ for(i=0; inCol; i++){ if( pTab->aCol[i].colFlags & COLFLAG_NOINSERT ) nHidden++; } if( pColumn==0 && nColumn && nColumn!=(pTab->nCol-nHidden) ){ sqlite3ErrorMsg(pParse, "table %S has %d columns but %d values were supplied", pTabList, 0, pTab->nCol-nHidden, nColumn); goto insert_cleanup; } if( pColumn!=0 && nColumn!=pColumn->nId ){ sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId); goto insert_cleanup; } /* Initialize the count of rows to be inserted */ if( (db->flags & SQLITE_CountRows)!=0 && !pParse->nested && !pParse->pTriggerTab ){ regRowCount = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount); } /* If this is not a view, open the table and and all indices */ if( !isView ){ int nIdx; nIdx = sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, -1, 0, &iDataCur, &iIdxCur); aRegIdx = sqlite3DbMallocRawNN(db, sizeof(int)*(nIdx+2)); if( aRegIdx==0 ){ goto insert_cleanup; } for(i=0, pIdx=pTab->pIndex; ipNext, i++){ assert( pIdx ); aRegIdx[i] = ++pParse->nMem; pParse->nMem += pIdx->nColumn; } aRegIdx[i] = ++pParse->nMem; /* Register to store the table record */ } #ifndef SQLITE_OMIT_UPSERT if( pUpsert ){ if( IsVirtual(pTab) ){ sqlite3ErrorMsg(pParse, "UPSERT not implemented for virtual table \"%s\"", pTab->zName); goto insert_cleanup; } if( pTab->pSelect ){ sqlite3ErrorMsg(pParse, "cannot UPSERT a view"); goto insert_cleanup; } if( sqlite3HasExplicitNulls(pParse, pUpsert->pUpsertTarget) ){ goto insert_cleanup; } pTabList->a[0].iCursor = iDataCur; pUpsert->pUpsertSrc = pTabList; pUpsert->regData = regData; pUpsert->iDataCur = iDataCur; pUpsert->iIdxCur = iIdxCur; if( pUpsert->pUpsertTarget ){ sqlite3UpsertAnalyzeTarget(pParse, pTabList, pUpsert); } } #endif /* This is the top of the main insertion loop */ if( useTempTable ){ /* This block codes the top of loop only. The complete loop is the ** following pseudocode (template 4): ** ** rewind temp table, if empty goto D ** C: loop over rows of intermediate table ** transfer values form intermediate table into
    ** end loop ** D: ... */ addrInsTop = sqlite3VdbeAddOp1(v, OP_Rewind, srcTab); VdbeCoverage(v); addrCont = sqlite3VdbeCurrentAddr(v); }else if( pSelect ){ /* This block codes the top of loop only. The complete loop is the ** following pseudocode (template 3): ** ** C: yield X, at EOF goto D ** insert the select result into
    from R..R+n ** goto C ** D: ... */ sqlite3VdbeReleaseRegisters(pParse, regData, pTab->nCol, 0, 0); addrInsTop = addrCont = sqlite3VdbeAddOp1(v, OP_Yield, dest.iSDParm); VdbeCoverage(v); if( ipkColumn>=0 ){ /* tag-20191021-001: If the INTEGER PRIMARY KEY is being generated by the ** SELECT, go ahead and copy the value into the rowid slot now, so that ** the value does not get overwritten by a NULL at tag-20191021-002. */ sqlite3VdbeAddOp2(v, OP_Copy, regFromSelect+ipkColumn, regRowid); } } /* Compute data for ordinary columns of the new entry. Values ** are written in storage order into registers starting with regData. ** Only ordinary columns are computed in this loop. The rowid ** (if there is one) is computed later and generated columns are ** computed after the rowid since they might depend on the value ** of the rowid. */ nHidden = 0; iRegStore = regData; assert( regData==regRowid+1 ); for(i=0; inCol; i++, iRegStore++){ int k; u32 colFlags; assert( i>=nHidden ); if( i==pTab->iPKey ){ /* tag-20191021-002: References to the INTEGER PRIMARY KEY are filled ** using the rowid. So put a NULL in the IPK slot of the record to avoid ** using excess space. The file format definition requires this extra ** NULL - we cannot optimize further by skipping the column completely */ sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore); continue; } if( ((colFlags = pTab->aCol[i].colFlags) & COLFLAG_NOINSERT)!=0 ){ nHidden++; if( (colFlags & COLFLAG_VIRTUAL)!=0 ){ /* Virtual columns do not participate in OP_MakeRecord. So back up ** iRegStore by one slot to compensate for the iRegStore++ in the ** outer for() loop */ iRegStore--; continue; }else if( (colFlags & COLFLAG_STORED)!=0 ){ /* Stored columns are computed later. But if there are BEFORE ** triggers, the slots used for stored columns will be OP_Copy-ed ** to a second block of registers, so the register needs to be ** initialized to NULL to avoid an uninitialized register read */ if( tmask & TRIGGER_BEFORE ){ sqlite3VdbeAddOp1(v, OP_SoftNull, iRegStore); } continue; }else if( pColumn==0 ){ /* Hidden columns that are not explicitly named in the INSERT ** get there default value */ sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore); continue; } } if( pColumn ){ for(j=0; jnId && pColumn->a[j].idx!=i; j++){} if( j>=pColumn->nId ){ /* A column not named in the insert column list gets its ** default value */ sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore); continue; } k = j; }else if( nColumn==0 ){ /* This is INSERT INTO ... DEFAULT VALUES. Load the default value. */ sqlite3ExprCodeFactorable(pParse, pTab->aCol[i].pDflt, iRegStore); continue; }else{ k = i - nHidden; } if( useTempTable ){ sqlite3VdbeAddOp3(v, OP_Column, srcTab, k, iRegStore); }else if( pSelect ){ if( regFromSelect!=regData ){ sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+k, iRegStore); } }else{ sqlite3ExprCode(pParse, pList->a[k].pExpr, iRegStore); } } /* Run the BEFORE and INSTEAD OF triggers, if there are any */ endOfLoop = sqlite3VdbeMakeLabel(pParse); if( tmask & TRIGGER_BEFORE ){ int regCols = sqlite3GetTempRange(pParse, pTab->nCol+1); /* build the NEW.* reference row. Note that if there is an INTEGER ** PRIMARY KEY into which a NULL is being inserted, that NULL will be ** translated into a unique ID for the row. But on a BEFORE trigger, ** we do not know what the unique ID will be (because the insert has ** not happened yet) so we substitute a rowid of -1 */ if( ipkColumn<0 ){ sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols); }else{ int addr1; assert( !withoutRowid ); if( useTempTable ){ sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regCols); }else{ assert( pSelect==0 ); /* Otherwise useTempTable is true */ sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regCols); } addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regCols); VdbeCoverage(v); sqlite3VdbeAddOp2(v, OP_Integer, -1, regCols); sqlite3VdbeJumpHere(v, addr1); sqlite3VdbeAddOp1(v, OP_MustBeInt, regCols); VdbeCoverage(v); } /* Cannot have triggers on a virtual table. If it were possible, ** this block would have to account for hidden column. */ assert( !IsVirtual(pTab) ); /* Copy the new data already generated. */ assert( pTab->nNVCol>0 ); sqlite3VdbeAddOp3(v, OP_Copy, regRowid+1, regCols+1, pTab->nNVCol-1); #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Compute the new value for generated columns after all other ** columns have already been computed. This must be done after ** computing the ROWID in case one of the generated columns ** refers to the ROWID. */ if( pTab->tabFlags & TF_HasGenerated ){ testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); sqlite3ComputeGeneratedColumns(pParse, regCols+1, pTab); } #endif /* If this is an INSERT on a view with an INSTEAD OF INSERT trigger, ** do not attempt any conversions before assembling the record. ** If this is a real table, attempt conversions as required by the ** table column affinities. */ if( !isView ){ sqlite3TableAffinity(v, pTab, regCols+1); } /* Fire BEFORE or INSTEAD OF triggers */ sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_BEFORE, pTab, regCols-pTab->nCol-1, onError, endOfLoop); sqlite3ReleaseTempRange(pParse, regCols, pTab->nCol+1); } if( !isView ){ if( IsVirtual(pTab) ){ /* The row that the VUpdate opcode will delete: none */ sqlite3VdbeAddOp2(v, OP_Null, 0, regIns); } if( ipkColumn>=0 ){ /* Compute the new rowid */ if( useTempTable ){ sqlite3VdbeAddOp3(v, OP_Column, srcTab, ipkColumn, regRowid); }else if( pSelect ){ /* Rowid already initialized at tag-20191021-001 */ }else{ Expr *pIpk = pList->a[ipkColumn].pExpr; if( pIpk->op==TK_NULL && !IsVirtual(pTab) ){ sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc); appendFlag = 1; }else{ sqlite3ExprCode(pParse, pList->a[ipkColumn].pExpr, regRowid); } } /* If the PRIMARY KEY expression is NULL, then use OP_NewRowid ** to generate a unique primary key value. */ if( !appendFlag ){ int addr1; if( !IsVirtual(pTab) ){ addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, regRowid); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc); sqlite3VdbeJumpHere(v, addr1); }else{ addr1 = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp2(v, OP_IsNull, regRowid, addr1+2); VdbeCoverage(v); } sqlite3VdbeAddOp1(v, OP_MustBeInt, regRowid); VdbeCoverage(v); } }else if( IsVirtual(pTab) || withoutRowid ){ sqlite3VdbeAddOp2(v, OP_Null, 0, regRowid); }else{ sqlite3VdbeAddOp3(v, OP_NewRowid, iDataCur, regRowid, regAutoinc); appendFlag = 1; } autoIncStep(pParse, regAutoinc, regRowid); #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Compute the new value for generated columns after all other ** columns have already been computed. This must be done after ** computing the ROWID in case one of the generated columns ** is derived from the INTEGER PRIMARY KEY. */ if( pTab->tabFlags & TF_HasGenerated ){ sqlite3ComputeGeneratedColumns(pParse, regRowid+1, pTab); } #endif /* Generate code to check constraints and generate index keys and ** do the insertion. */ #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) ){ const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); sqlite3VtabMakeWritable(pParse, pTab); sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns, pVTab, P4_VTAB); sqlite3VdbeChangeP5(v, onError==OE_Default ? OE_Abort : onError); sqlite3MayAbort(pParse); }else #endif { int isReplace; /* Set to true if constraints may cause a replace */ int bUseSeek; /* True to use OPFLAG_SEEKRESULT */ sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur, regIns, 0, ipkColumn>=0, onError, endOfLoop, &isReplace, 0, pUpsert ); sqlite3FkCheck(pParse, pTab, 0, regIns, 0, 0); /* Set the OPFLAG_USESEEKRESULT flag if either (a) there are no REPLACE ** constraints or (b) there are no triggers and this table is not a ** parent table in a foreign key constraint. It is safe to set the ** flag in the second case as if any REPLACE constraint is hit, an ** OP_Delete or OP_IdxDelete instruction will be executed on each ** cursor that is disturbed. And these instructions both clear the ** VdbeCursor.seekResult variable, disabling the OPFLAG_USESEEKRESULT ** functionality. */ bUseSeek = (isReplace==0 || !sqlite3VdbeHasSubProgram(v)); sqlite3CompleteInsertion(pParse, pTab, iDataCur, iIdxCur, regIns, aRegIdx, 0, appendFlag, bUseSeek ); } } /* Update the count of rows that are inserted */ if( regRowCount ){ sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1); } if( pTrigger ){ /* Code AFTER triggers */ sqlite3CodeRowTrigger(pParse, pTrigger, TK_INSERT, 0, TRIGGER_AFTER, pTab, regData-2-pTab->nCol, onError, endOfLoop); } /* The bottom of the main insertion loop, if the data source ** is a SELECT statement. */ sqlite3VdbeResolveLabel(v, endOfLoop); if( useTempTable ){ sqlite3VdbeAddOp2(v, OP_Next, srcTab, addrCont); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addrInsTop); sqlite3VdbeAddOp1(v, OP_Close, srcTab); }else if( pSelect ){ sqlite3VdbeGoto(v, addrCont); #ifdef SQLITE_DEBUG /* If we are jumping back to an OP_Yield that is preceded by an ** OP_ReleaseReg, set the p5 flag on the OP_Goto so that the ** OP_ReleaseReg will be included in the loop. */ if( sqlite3VdbeGetOp(v, addrCont-1)->opcode==OP_ReleaseReg ){ assert( sqlite3VdbeGetOp(v, addrCont)->opcode==OP_Yield ); sqlite3VdbeChangeP5(v, 1); } #endif sqlite3VdbeJumpHere(v, addrInsTop); } insert_end: /* Update the sqlite_sequence table by storing the content of the ** maximum rowid counter values recorded while inserting into ** autoincrement tables. */ if( pParse->nested==0 && pParse->pTriggerTab==0 ){ sqlite3AutoincrementEnd(pParse); } /* ** Return the number of rows inserted. If this routine is ** generating code because of a call to sqlite3NestedParse(), do not ** invoke the callback function. */ if( regRowCount ){ sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1); sqlite3VdbeSetNumCols(v, 1); sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows inserted", SQLITE_STATIC); } insert_cleanup: sqlite3SrcListDelete(db, pTabList); sqlite3ExprListDelete(db, pList); sqlite3UpsertDelete(db, pUpsert); sqlite3SelectDelete(db, pSelect); sqlite3IdListDelete(db, pColumn); sqlite3DbFree(db, aRegIdx); } /* Make sure "isView" and other macros defined above are undefined. Otherwise ** they may interfere with compilation of other functions in this file ** (or in another file, if this file becomes part of the amalgamation). */ #ifdef isView #undef isView #endif #ifdef pTrigger #undef pTrigger #endif #ifdef tmask #undef tmask #endif /* ** Meanings of bits in of pWalker->eCode for ** sqlite3ExprReferencesUpdatedColumn() */ #define CKCNSTRNT_COLUMN 0x01 /* CHECK constraint uses a changing column */ #define CKCNSTRNT_ROWID 0x02 /* CHECK constraint references the ROWID */ /* This is the Walker callback from sqlite3ExprReferencesUpdatedColumn(). * Set bit 0x01 of pWalker->eCode if pWalker->eCode to 0 and if this ** expression node references any of the ** columns that are being modifed by an UPDATE statement. */ static int checkConstraintExprNode(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_COLUMN ){ assert( pExpr->iColumn>=0 || pExpr->iColumn==-1 ); if( pExpr->iColumn>=0 ){ if( pWalker->u.aiCol[pExpr->iColumn]>=0 ){ pWalker->eCode |= CKCNSTRNT_COLUMN; } }else{ pWalker->eCode |= CKCNSTRNT_ROWID; } } return WRC_Continue; } /* ** pExpr is a CHECK constraint on a row that is being UPDATE-ed. The ** only columns that are modified by the UPDATE are those for which ** aiChng[i]>=0, and also the ROWID is modified if chngRowid is true. ** ** Return true if CHECK constraint pExpr uses any of the ** changing columns (or the rowid if it is changing). In other words, ** return true if this CHECK constraint must be validated for ** the new row in the UPDATE statement. ** ** 2018-09-15: pExpr might also be an expression for an index-on-expressions. ** The operation of this routine is the same - return true if an only if ** the expression uses one or more of columns identified by the second and ** third arguments. */ SQLITE_PRIVATE int sqlite3ExprReferencesUpdatedColumn( Expr *pExpr, /* The expression to be checked */ int *aiChng, /* aiChng[x]>=0 if column x changed by the UPDATE */ int chngRowid /* True if UPDATE changes the rowid */ ){ Walker w; memset(&w, 0, sizeof(w)); w.eCode = 0; w.xExprCallback = checkConstraintExprNode; w.u.aiCol = aiChng; sqlite3WalkExpr(&w, pExpr); if( !chngRowid ){ testcase( (w.eCode & CKCNSTRNT_ROWID)!=0 ); w.eCode &= ~CKCNSTRNT_ROWID; } testcase( w.eCode==0 ); testcase( w.eCode==CKCNSTRNT_COLUMN ); testcase( w.eCode==CKCNSTRNT_ROWID ); testcase( w.eCode==(CKCNSTRNT_ROWID|CKCNSTRNT_COLUMN) ); return w.eCode!=0; } /* ** Generate code to do constraint checks prior to an INSERT or an UPDATE ** on table pTab. ** ** The regNewData parameter is the first register in a range that contains ** the data to be inserted or the data after the update. There will be ** pTab->nCol+1 registers in this range. The first register (the one ** that regNewData points to) will contain the new rowid, or NULL in the ** case of a WITHOUT ROWID table. The second register in the range will ** contain the content of the first table column. The third register will ** contain the content of the second table column. And so forth. ** ** The regOldData parameter is similar to regNewData except that it contains ** the data prior to an UPDATE rather than afterwards. regOldData is zero ** for an INSERT. This routine can distinguish between UPDATE and INSERT by ** checking regOldData for zero. ** ** For an UPDATE, the pkChng boolean is true if the true primary key (the ** rowid for a normal table or the PRIMARY KEY for a WITHOUT ROWID table) ** might be modified by the UPDATE. If pkChng is false, then the key of ** the iDataCur content table is guaranteed to be unchanged by the UPDATE. ** ** For an INSERT, the pkChng boolean indicates whether or not the rowid ** was explicitly specified as part of the INSERT statement. If pkChng ** is zero, it means that the either rowid is computed automatically or ** that the table is a WITHOUT ROWID table and has no rowid. On an INSERT, ** pkChng will only be true if the INSERT statement provides an integer ** value for either the rowid column or its INTEGER PRIMARY KEY alias. ** ** The code generated by this routine will store new index entries into ** registers identified by aRegIdx[]. No index entry is created for ** indices where aRegIdx[i]==0. The order of indices in aRegIdx[] is ** the same as the order of indices on the linked list of indices ** at pTab->pIndex. ** ** (2019-05-07) The generated code also creates a new record for the ** main table, if pTab is a rowid table, and stores that record in the ** register identified by aRegIdx[nIdx] - in other words in the first ** entry of aRegIdx[] past the last index. It is important that the ** record be generated during constraint checks to avoid affinity changes ** to the register content that occur after constraint checks but before ** the new record is inserted. ** ** The caller must have already opened writeable cursors on the main ** table and all applicable indices (that is to say, all indices for which ** aRegIdx[] is not zero). iDataCur is the cursor for the main table when ** inserting or updating a rowid table, or the cursor for the PRIMARY KEY ** index when operating on a WITHOUT ROWID table. iIdxCur is the cursor ** for the first index in the pTab->pIndex list. Cursors for other indices ** are at iIdxCur+N for the N-th element of the pTab->pIndex list. ** ** This routine also generates code to check constraints. NOT NULL, ** CHECK, and UNIQUE constraints are all checked. If a constraint fails, ** then the appropriate action is performed. There are five possible ** actions: ROLLBACK, ABORT, FAIL, REPLACE, and IGNORE. ** ** Constraint type Action What Happens ** --------------- ---------- ---------------------------------------- ** any ROLLBACK The current transaction is rolled back and ** sqlite3_step() returns immediately with a ** return code of SQLITE_CONSTRAINT. ** ** any ABORT Back out changes from the current command ** only (do not do a complete rollback) then ** cause sqlite3_step() to return immediately ** with SQLITE_CONSTRAINT. ** ** any FAIL Sqlite3_step() returns immediately with a ** return code of SQLITE_CONSTRAINT. The ** transaction is not rolled back and any ** changes to prior rows are retained. ** ** any IGNORE The attempt in insert or update the current ** row is skipped, without throwing an error. ** Processing continues with the next row. ** (There is an immediate jump to ignoreDest.) ** ** NOT NULL REPLACE The NULL value is replace by the default ** value for that column. If the default value ** is NULL, the action is the same as ABORT. ** ** UNIQUE REPLACE The other row that conflicts with the row ** being inserted is removed. ** ** CHECK REPLACE Illegal. The results in an exception. ** ** Which action to take is determined by the overrideError parameter. ** Or if overrideError==OE_Default, then the pParse->onError parameter ** is used. Or if pParse->onError==OE_Default then the onError value ** for the constraint is used. */ SQLITE_PRIVATE void sqlite3GenerateConstraintChecks( Parse *pParse, /* The parser context */ Table *pTab, /* The table being inserted or updated */ int *aRegIdx, /* Use register aRegIdx[i] for index i. 0 for unused */ int iDataCur, /* Canonical data cursor (main table or PK index) */ int iIdxCur, /* First index cursor */ int regNewData, /* First register in a range holding values to insert */ int regOldData, /* Previous content. 0 for INSERTs */ u8 pkChng, /* Non-zero if the rowid or PRIMARY KEY changed */ u8 overrideError, /* Override onError to this if not OE_Default */ int ignoreDest, /* Jump to this label on an OE_Ignore resolution */ int *pbMayReplace, /* OUT: Set to true if constraint may cause a replace */ int *aiChng, /* column i is unchanged if aiChng[i]<0 */ Upsert *pUpsert /* ON CONFLICT clauses, if any. NULL otherwise */ ){ Vdbe *v; /* VDBE under constrution */ Index *pIdx; /* Pointer to one of the indices */ Index *pPk = 0; /* The PRIMARY KEY index */ sqlite3 *db; /* Database connection */ int i; /* loop counter */ int ix; /* Index loop counter */ int nCol; /* Number of columns */ int onError; /* Conflict resolution strategy */ int seenReplace = 0; /* True if REPLACE is used to resolve INT PK conflict */ int nPkField; /* Number of fields in PRIMARY KEY. 1 for ROWID tables */ Index *pUpIdx = 0; /* Index to which to apply the upsert */ u8 isUpdate; /* True if this is an UPDATE operation */ u8 bAffinityDone = 0; /* True if the OP_Affinity operation has been run */ int upsertBypass = 0; /* Address of Goto to bypass upsert subroutine */ int upsertJump = 0; /* Address of Goto that jumps into upsert subroutine */ int ipkTop = 0; /* Top of the IPK uniqueness check */ int ipkBottom = 0; /* OP_Goto at the end of the IPK uniqueness check */ /* Variables associated with retesting uniqueness constraints after ** replace triggers fire have run */ int regTrigCnt; /* Register used to count replace trigger invocations */ int addrRecheck = 0; /* Jump here to recheck all uniqueness constraints */ int lblRecheckOk = 0; /* Each recheck jumps to this label if it passes */ Trigger *pTrigger; /* List of DELETE triggers on the table pTab */ int nReplaceTrig = 0; /* Number of replace triggers coded */ isUpdate = regOldData!=0; db = pParse->db; v = sqlite3GetVdbe(pParse); assert( v!=0 ); assert( pTab->pSelect==0 ); /* This table is not a VIEW */ nCol = pTab->nCol; /* pPk is the PRIMARY KEY index for WITHOUT ROWID tables and NULL for ** normal rowid tables. nPkField is the number of key fields in the ** pPk index or 1 for a rowid table. In other words, nPkField is the ** number of fields in the true primary key of the table. */ if( HasRowid(pTab) ){ pPk = 0; nPkField = 1; }else{ pPk = sqlite3PrimaryKeyIndex(pTab); nPkField = pPk->nKeyCol; } /* Record that this module has started */ VdbeModuleComment((v, "BEGIN: GenCnstCks(%d,%d,%d,%d,%d)", iDataCur, iIdxCur, regNewData, regOldData, pkChng)); /* Test all NOT NULL constraints. */ if( pTab->tabFlags & TF_HasNotNull ){ int b2ndPass = 0; /* True if currently running 2nd pass */ int nSeenReplace = 0; /* Number of ON CONFLICT REPLACE operations */ int nGenerated = 0; /* Number of generated columns with NOT NULL */ while(1){ /* Make 2 passes over columns. Exit loop via "break" */ for(i=0; iaCol[i]; /* The column to check for NOT NULL */ int isGenerated; /* non-zero if column is generated */ onError = pCol->notNull; if( onError==OE_None ) continue; /* No NOT NULL on this column */ if( i==pTab->iPKey ){ continue; /* ROWID is never NULL */ } isGenerated = pCol->colFlags & COLFLAG_GENERATED; if( isGenerated && !b2ndPass ){ nGenerated++; continue; /* Generated columns processed on 2nd pass */ } if( aiChng && aiChng[i]<0 && !isGenerated ){ /* Do not check NOT NULL on columns that do not change */ continue; } if( overrideError!=OE_Default ){ onError = overrideError; }else if( onError==OE_Default ){ onError = OE_Abort; } if( onError==OE_Replace ){ if( b2ndPass /* REPLACE becomes ABORT on the 2nd pass */ || pCol->pDflt==0 /* REPLACE is ABORT if no DEFAULT value */ ){ testcase( pCol->colFlags & COLFLAG_VIRTUAL ); testcase( pCol->colFlags & COLFLAG_STORED ); testcase( pCol->colFlags & COLFLAG_GENERATED ); onError = OE_Abort; }else{ assert( !isGenerated ); } }else if( b2ndPass && !isGenerated ){ continue; } assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail || onError==OE_Ignore || onError==OE_Replace ); testcase( i!=sqlite3TableColumnToStorage(pTab, i) ); iReg = sqlite3TableColumnToStorage(pTab, i) + regNewData + 1; switch( onError ){ case OE_Replace: { int addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, iReg); VdbeCoverage(v); assert( (pCol->colFlags & COLFLAG_GENERATED)==0 ); nSeenReplace++; sqlite3ExprCodeCopy(pParse, pCol->pDflt, iReg); sqlite3VdbeJumpHere(v, addr1); break; } case OE_Abort: sqlite3MayAbort(pParse); /* no break */ deliberate_fall_through case OE_Rollback: case OE_Fail: { char *zMsg = sqlite3MPrintf(db, "%s.%s", pTab->zName, pCol->zName); sqlite3VdbeAddOp3(v, OP_HaltIfNull, SQLITE_CONSTRAINT_NOTNULL, onError, iReg); sqlite3VdbeAppendP4(v, zMsg, P4_DYNAMIC); sqlite3VdbeChangeP5(v, P5_ConstraintNotNull); VdbeCoverage(v); break; } default: { assert( onError==OE_Ignore ); sqlite3VdbeAddOp2(v, OP_IsNull, iReg, ignoreDest); VdbeCoverage(v); break; } } /* end switch(onError) */ } /* end loop i over columns */ if( nGenerated==0 && nSeenReplace==0 ){ /* If there are no generated columns with NOT NULL constraints ** and no NOT NULL ON CONFLICT REPLACE constraints, then a single ** pass is sufficient */ break; } if( b2ndPass ) break; /* Never need more than 2 passes */ b2ndPass = 1; #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( nSeenReplace>0 && (pTab->tabFlags & TF_HasGenerated)!=0 ){ /* If any NOT NULL ON CONFLICT REPLACE constraints fired on the ** first pass, recomputed values for all generated columns, as ** those values might depend on columns affected by the REPLACE. */ sqlite3ComputeGeneratedColumns(pParse, regNewData+1, pTab); } #endif } /* end of 2-pass loop */ } /* end if( has-not-null-constraints ) */ /* Test all CHECK constraints */ #ifndef SQLITE_OMIT_CHECK if( pTab->pCheck && (db->flags & SQLITE_IgnoreChecks)==0 ){ ExprList *pCheck = pTab->pCheck; pParse->iSelfTab = -(regNewData+1); onError = overrideError!=OE_Default ? overrideError : OE_Abort; for(i=0; inExpr; i++){ int allOk; Expr *pCopy; Expr *pExpr = pCheck->a[i].pExpr; if( aiChng && !sqlite3ExprReferencesUpdatedColumn(pExpr, aiChng, pkChng) ){ /* The check constraints do not reference any of the columns being ** updated so there is no point it verifying the check constraint */ continue; } if( bAffinityDone==0 ){ sqlite3TableAffinity(v, pTab, regNewData+1); bAffinityDone = 1; } allOk = sqlite3VdbeMakeLabel(pParse); sqlite3VdbeVerifyAbortable(v, onError); pCopy = sqlite3ExprDup(db, pExpr, 0); if( !db->mallocFailed ){ sqlite3ExprIfTrue(pParse, pCopy, allOk, SQLITE_JUMPIFNULL); } sqlite3ExprDelete(db, pCopy); if( onError==OE_Ignore ){ sqlite3VdbeGoto(v, ignoreDest); }else{ char *zName = pCheck->a[i].zEName; if( zName==0 ) zName = pTab->zName; if( onError==OE_Replace ) onError = OE_Abort; /* IMP: R-26383-51744 */ sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_CHECK, onError, zName, P4_TRANSIENT, P5_ConstraintCheck); } sqlite3VdbeResolveLabel(v, allOk); } pParse->iSelfTab = 0; } #endif /* !defined(SQLITE_OMIT_CHECK) */ /* UNIQUE and PRIMARY KEY constraints should be handled in the following ** order: ** ** (1) OE_Update ** (2) OE_Abort, OE_Fail, OE_Rollback, OE_Ignore ** (3) OE_Replace ** ** OE_Fail and OE_Ignore must happen before any changes are made. ** OE_Update guarantees that only a single row will change, so it ** must happen before OE_Replace. Technically, OE_Abort and OE_Rollback ** could happen in any order, but they are grouped up front for ** convenience. ** ** 2018-08-14: Ticket https://www.sqlite.org/src/info/908f001483982c43 ** The order of constraints used to have OE_Update as (2) and OE_Abort ** and so forth as (1). But apparently PostgreSQL checks the OE_Update ** constraint before any others, so it had to be moved. ** ** Constraint checking code is generated in this order: ** (A) The rowid constraint ** (B) Unique index constraints that do not have OE_Replace as their ** default conflict resolution strategy ** (C) Unique index that do use OE_Replace by default. ** ** The ordering of (2) and (3) is accomplished by making sure the linked ** list of indexes attached to a table puts all OE_Replace indexes last ** in the list. See sqlite3CreateIndex() for where that happens. */ if( pUpsert ){ if( pUpsert->pUpsertTarget==0 ){ /* An ON CONFLICT DO NOTHING clause, without a constraint-target. ** Make all unique constraint resolution be OE_Ignore */ assert( pUpsert->pUpsertSet==0 ); overrideError = OE_Ignore; pUpsert = 0; }else if( (pUpIdx = pUpsert->pUpsertIdx)!=0 ){ /* If the constraint-target uniqueness check must be run first. ** Jump to that uniqueness check now */ upsertJump = sqlite3VdbeAddOp0(v, OP_Goto); VdbeComment((v, "UPSERT constraint goes first")); } } /* Determine if it is possible that triggers (either explicitly coded ** triggers or FK resolution actions) might run as a result of deletes ** that happen when OE_Replace conflict resolution occurs. (Call these ** "replace triggers".) If any replace triggers run, we will need to ** recheck all of the uniqueness constraints after they have all run. ** But on the recheck, the resolution is OE_Abort instead of OE_Replace. ** ** If replace triggers are a possibility, then ** ** (1) Allocate register regTrigCnt and initialize it to zero. ** That register will count the number of replace triggers that ** fire. Constraint recheck only occurs if the number is positive. ** (2) Initialize pTrigger to the list of all DELETE triggers on pTab. ** (3) Initialize addrRecheck and lblRecheckOk ** ** The uniqueness rechecking code will create a series of tests to run ** in a second pass. The addrRecheck and lblRecheckOk variables are ** used to link together these tests which are separated from each other ** in the generate bytecode. */ if( (db->flags & (SQLITE_RecTriggers|SQLITE_ForeignKeys))==0 ){ /* There are not DELETE triggers nor FK constraints. No constraint ** rechecks are needed. */ pTrigger = 0; regTrigCnt = 0; }else{ if( db->flags&SQLITE_RecTriggers ){ pTrigger = sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0); regTrigCnt = pTrigger!=0 || sqlite3FkRequired(pParse, pTab, 0, 0); }else{ pTrigger = 0; regTrigCnt = sqlite3FkRequired(pParse, pTab, 0, 0); } if( regTrigCnt ){ /* Replace triggers might exist. Allocate the counter and ** initialize it to zero. */ regTrigCnt = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, regTrigCnt); VdbeComment((v, "trigger count")); lblRecheckOk = sqlite3VdbeMakeLabel(pParse); addrRecheck = lblRecheckOk; } } /* If rowid is changing, make sure the new rowid does not previously ** exist in the table. */ if( pkChng && pPk==0 ){ int addrRowidOk = sqlite3VdbeMakeLabel(pParse); /* Figure out what action to take in case of a rowid collision */ onError = pTab->keyConf; if( overrideError!=OE_Default ){ onError = overrideError; }else if( onError==OE_Default ){ onError = OE_Abort; } /* figure out whether or not upsert applies in this case */ if( pUpsert && pUpsert->pUpsertIdx==0 ){ if( pUpsert->pUpsertSet==0 ){ onError = OE_Ignore; /* DO NOTHING is the same as INSERT OR IGNORE */ }else{ onError = OE_Update; /* DO UPDATE */ } } /* If the response to a rowid conflict is REPLACE but the response ** to some other UNIQUE constraint is FAIL or IGNORE, then we need ** to defer the running of the rowid conflict checking until after ** the UNIQUE constraints have run. */ if( onError==OE_Replace /* IPK rule is REPLACE */ && onError!=overrideError /* Rules for other contraints are different */ && pTab->pIndex /* There exist other constraints */ ){ ipkTop = sqlite3VdbeAddOp0(v, OP_Goto)+1; VdbeComment((v, "defer IPK REPLACE until last")); } if( isUpdate ){ /* pkChng!=0 does not mean that the rowid has changed, only that ** it might have changed. Skip the conflict logic below if the rowid ** is unchanged. */ sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRowidOk, regOldData); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); VdbeCoverage(v); } /* Check to see if the new rowid already exists in the table. Skip ** the following conflict logic if it does not. */ VdbeNoopComment((v, "uniqueness check for ROWID")); sqlite3VdbeVerifyAbortable(v, onError); sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRowidOk, regNewData); VdbeCoverage(v); switch( onError ){ default: { onError = OE_Abort; /* no break */ deliberate_fall_through } case OE_Rollback: case OE_Abort: case OE_Fail: { testcase( onError==OE_Rollback ); testcase( onError==OE_Abort ); testcase( onError==OE_Fail ); sqlite3RowidConstraint(pParse, onError, pTab); break; } case OE_Replace: { /* If there are DELETE triggers on this table and the ** recursive-triggers flag is set, call GenerateRowDelete() to ** remove the conflicting row from the table. This will fire ** the triggers and remove both the table and index b-tree entries. ** ** Otherwise, if there are no triggers or the recursive-triggers ** flag is not set, but the table has one or more indexes, call ** GenerateRowIndexDelete(). This removes the index b-tree entries ** only. The table b-tree entry will be replaced by the new entry ** when it is inserted. ** ** If either GenerateRowDelete() or GenerateRowIndexDelete() is called, ** also invoke MultiWrite() to indicate that this VDBE may require ** statement rollback (if the statement is aborted after the delete ** takes place). Earlier versions called sqlite3MultiWrite() regardless, ** but being more selective here allows statements like: ** ** REPLACE INTO t(rowid) VALUES($newrowid) ** ** to run without a statement journal if there are no indexes on the ** table. */ if( regTrigCnt ){ sqlite3MultiWrite(pParse); sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, regNewData, 1, 0, OE_Replace, 1, -1); sqlite3VdbeAddOp2(v, OP_AddImm, regTrigCnt, 1); /* incr trigger cnt */ nReplaceTrig++; }else{ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK assert( HasRowid(pTab) ); /* This OP_Delete opcode fires the pre-update-hook only. It does ** not modify the b-tree. It is more efficient to let the coming ** OP_Insert replace the existing entry than it is to delete the ** existing entry and then insert a new one. */ sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, OPFLAG_ISNOOP); sqlite3VdbeAppendP4(v, pTab, P4_TABLE); #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ if( pTab->pIndex ){ sqlite3MultiWrite(pParse); sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur,0,-1); } } seenReplace = 1; break; } #ifndef SQLITE_OMIT_UPSERT case OE_Update: { sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, 0, iDataCur); /* no break */ deliberate_fall_through } #endif case OE_Ignore: { testcase( onError==OE_Ignore ); sqlite3VdbeGoto(v, ignoreDest); break; } } sqlite3VdbeResolveLabel(v, addrRowidOk); if( ipkTop ){ ipkBottom = sqlite3VdbeAddOp0(v, OP_Goto); sqlite3VdbeJumpHere(v, ipkTop-1); } } /* Test all UNIQUE constraints by creating entries for each UNIQUE ** index and making sure that duplicate entries do not already exist. ** Compute the revised record entries for indices as we go. ** ** This loop also handles the case of the PRIMARY KEY index for a ** WITHOUT ROWID table. */ for(ix=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, ix++){ int regIdx; /* Range of registers hold conent for pIdx */ int regR; /* Range of registers holding conflicting PK */ int iThisCur; /* Cursor for this UNIQUE index */ int addrUniqueOk; /* Jump here if the UNIQUE constraint is satisfied */ int addrConflictCk; /* First opcode in the conflict check logic */ if( aRegIdx[ix]==0 ) continue; /* Skip indices that do not change */ if( pUpIdx==pIdx ){ addrUniqueOk = upsertJump+1; upsertBypass = sqlite3VdbeGoto(v, 0); VdbeComment((v, "Skip upsert subroutine")); sqlite3VdbeJumpHere(v, upsertJump); }else{ addrUniqueOk = sqlite3VdbeMakeLabel(pParse); } if( bAffinityDone==0 && (pUpIdx==0 || pUpIdx==pIdx) ){ sqlite3TableAffinity(v, pTab, regNewData+1); bAffinityDone = 1; } VdbeNoopComment((v, "prep index %s", pIdx->zName)); iThisCur = iIdxCur+ix; /* Skip partial indices for which the WHERE clause is not true */ if( pIdx->pPartIdxWhere ){ sqlite3VdbeAddOp2(v, OP_Null, 0, aRegIdx[ix]); pParse->iSelfTab = -(regNewData+1); sqlite3ExprIfFalseDup(pParse, pIdx->pPartIdxWhere, addrUniqueOk, SQLITE_JUMPIFNULL); pParse->iSelfTab = 0; } /* Create a record for this index entry as it should appear after ** the insert or update. Store that record in the aRegIdx[ix] register */ regIdx = aRegIdx[ix]+1; for(i=0; inColumn; i++){ int iField = pIdx->aiColumn[i]; int x; if( iField==XN_EXPR ){ pParse->iSelfTab = -(regNewData+1); sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[i].pExpr, regIdx+i); pParse->iSelfTab = 0; VdbeComment((v, "%s column %d", pIdx->zName, i)); }else if( iField==XN_ROWID || iField==pTab->iPKey ){ x = regNewData; sqlite3VdbeAddOp2(v, OP_IntCopy, x, regIdx+i); VdbeComment((v, "rowid")); }else{ testcase( sqlite3TableColumnToStorage(pTab, iField)!=iField ); x = sqlite3TableColumnToStorage(pTab, iField) + regNewData + 1; sqlite3VdbeAddOp2(v, OP_SCopy, x, regIdx+i); VdbeComment((v, "%s", pTab->aCol[iField].zName)); } } sqlite3VdbeAddOp3(v, OP_MakeRecord, regIdx, pIdx->nColumn, aRegIdx[ix]); VdbeComment((v, "for %s", pIdx->zName)); #ifdef SQLITE_ENABLE_NULL_TRIM if( pIdx->idxType==SQLITE_IDXTYPE_PRIMARYKEY ){ sqlite3SetMakeRecordP5(v, pIdx->pTable); } #endif sqlite3VdbeReleaseRegisters(pParse, regIdx, pIdx->nColumn, 0, 0); /* In an UPDATE operation, if this index is the PRIMARY KEY index ** of a WITHOUT ROWID table and there has been no change the ** primary key, then no collision is possible. The collision detection ** logic below can all be skipped. */ if( isUpdate && pPk==pIdx && pkChng==0 ){ sqlite3VdbeResolveLabel(v, addrUniqueOk); continue; } /* Find out what action to take in case there is a uniqueness conflict */ onError = pIdx->onError; if( onError==OE_None ){ sqlite3VdbeResolveLabel(v, addrUniqueOk); continue; /* pIdx is not a UNIQUE index */ } if( overrideError!=OE_Default ){ onError = overrideError; }else if( onError==OE_Default ){ onError = OE_Abort; } /* Figure out if the upsert clause applies to this index */ if( pUpIdx==pIdx ){ if( pUpsert->pUpsertSet==0 ){ onError = OE_Ignore; /* DO NOTHING is the same as INSERT OR IGNORE */ }else{ onError = OE_Update; /* DO UPDATE */ } } /* Collision detection may be omitted if all of the following are true: ** (1) The conflict resolution algorithm is REPLACE ** (2) The table is a WITHOUT ROWID table ** (3) There are no secondary indexes on the table ** (4) No delete triggers need to be fired if there is a conflict ** (5) No FK constraint counters need to be updated if a conflict occurs. ** ** This is not possible for ENABLE_PREUPDATE_HOOK builds, as the row ** must be explicitly deleted in order to ensure any pre-update hook ** is invoked. */ #ifndef SQLITE_ENABLE_PREUPDATE_HOOK if( (ix==0 && pIdx->pNext==0) /* Condition 3 */ && pPk==pIdx /* Condition 2 */ && onError==OE_Replace /* Condition 1 */ && ( 0==(db->flags&SQLITE_RecTriggers) || /* Condition 4 */ 0==sqlite3TriggersExist(pParse, pTab, TK_DELETE, 0, 0)) && ( 0==(db->flags&SQLITE_ForeignKeys) || /* Condition 5 */ (0==pTab->pFKey && 0==sqlite3FkReferences(pTab))) ){ sqlite3VdbeResolveLabel(v, addrUniqueOk); continue; } #endif /* ifndef SQLITE_ENABLE_PREUPDATE_HOOK */ /* Check to see if the new index entry will be unique */ sqlite3VdbeVerifyAbortable(v, onError); addrConflictCk = sqlite3VdbeAddOp4Int(v, OP_NoConflict, iThisCur, addrUniqueOk, regIdx, pIdx->nKeyCol); VdbeCoverage(v); /* Generate code to handle collisions */ regR = (pIdx==pPk) ? regIdx : sqlite3GetTempRange(pParse, nPkField); if( isUpdate || onError==OE_Replace ){ if( HasRowid(pTab) ){ sqlite3VdbeAddOp2(v, OP_IdxRowid, iThisCur, regR); /* Conflict only if the rowid of the existing index entry ** is different from old-rowid */ if( isUpdate ){ sqlite3VdbeAddOp3(v, OP_Eq, regR, addrUniqueOk, regOldData); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); VdbeCoverage(v); } }else{ int x; /* Extract the PRIMARY KEY from the end of the index entry and ** store it in registers regR..regR+nPk-1 */ if( pIdx!=pPk ){ for(i=0; inKeyCol; i++){ assert( pPk->aiColumn[i]>=0 ); x = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[i]); sqlite3VdbeAddOp3(v, OP_Column, iThisCur, x, regR+i); VdbeComment((v, "%s.%s", pTab->zName, pTab->aCol[pPk->aiColumn[i]].zName)); } } if( isUpdate ){ /* If currently processing the PRIMARY KEY of a WITHOUT ROWID ** table, only conflict if the new PRIMARY KEY values are actually ** different from the old. ** ** For a UNIQUE index, only conflict if the PRIMARY KEY values ** of the matched index row are different from the original PRIMARY ** KEY values of this row before the update. */ int addrJump = sqlite3VdbeCurrentAddr(v)+pPk->nKeyCol; int op = OP_Ne; int regCmp = (IsPrimaryKeyIndex(pIdx) ? regIdx : regR); for(i=0; inKeyCol; i++){ char *p4 = (char*)sqlite3LocateCollSeq(pParse, pPk->azColl[i]); x = pPk->aiColumn[i]; assert( x>=0 ); if( i==(pPk->nKeyCol-1) ){ addrJump = addrUniqueOk; op = OP_Eq; } x = sqlite3TableColumnToStorage(pTab, x); sqlite3VdbeAddOp4(v, op, regOldData+1+x, addrJump, regCmp+i, p4, P4_COLLSEQ ); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); VdbeCoverageIf(v, op==OP_Eq); VdbeCoverageIf(v, op==OP_Ne); } } } } /* Generate code that executes if the new index entry is not unique */ assert( onError==OE_Rollback || onError==OE_Abort || onError==OE_Fail || onError==OE_Ignore || onError==OE_Replace || onError==OE_Update ); switch( onError ){ case OE_Rollback: case OE_Abort: case OE_Fail: { testcase( onError==OE_Rollback ); testcase( onError==OE_Abort ); testcase( onError==OE_Fail ); sqlite3UniqueConstraint(pParse, onError, pIdx); break; } #ifndef SQLITE_OMIT_UPSERT case OE_Update: { sqlite3UpsertDoUpdate(pParse, pUpsert, pTab, pIdx, iIdxCur+ix); /* no break */ deliberate_fall_through } #endif case OE_Ignore: { testcase( onError==OE_Ignore ); sqlite3VdbeGoto(v, ignoreDest); break; } default: { int nConflictCk; /* Number of opcodes in conflict check logic */ assert( onError==OE_Replace ); nConflictCk = sqlite3VdbeCurrentAddr(v) - addrConflictCk; assert( nConflictCk>0 ); testcase( nConflictCk>1 ); if( regTrigCnt ){ sqlite3MultiWrite(pParse); nReplaceTrig++; } if( pTrigger && isUpdate ){ sqlite3VdbeAddOp1(v, OP_CursorLock, iDataCur); } sqlite3GenerateRowDelete(pParse, pTab, pTrigger, iDataCur, iIdxCur, regR, nPkField, 0, OE_Replace, (pIdx==pPk ? ONEPASS_SINGLE : ONEPASS_OFF), iThisCur); if( pTrigger && isUpdate ){ sqlite3VdbeAddOp1(v, OP_CursorUnlock, iDataCur); } if( regTrigCnt ){ int addrBypass; /* Jump destination to bypass recheck logic */ sqlite3VdbeAddOp2(v, OP_AddImm, regTrigCnt, 1); /* incr trigger cnt */ addrBypass = sqlite3VdbeAddOp0(v, OP_Goto); /* Bypass recheck */ VdbeComment((v, "bypass recheck")); /* Here we insert code that will be invoked after all constraint ** checks have run, if and only if one or more replace triggers ** fired. */ sqlite3VdbeResolveLabel(v, lblRecheckOk); lblRecheckOk = sqlite3VdbeMakeLabel(pParse); if( pIdx->pPartIdxWhere ){ /* Bypass the recheck if this partial index is not defined ** for the current row */ sqlite3VdbeAddOp2(v, OP_IsNull, regIdx-1, lblRecheckOk); VdbeCoverage(v); } /* Copy the constraint check code from above, except change ** the constraint-ok jump destination to be the address of ** the next retest block */ while( nConflictCk>0 ){ VdbeOp x; /* Conflict check opcode to copy */ /* The sqlite3VdbeAddOp4() call might reallocate the opcode array. ** Hence, make a complete copy of the opcode, rather than using ** a pointer to the opcode. */ x = *sqlite3VdbeGetOp(v, addrConflictCk); if( x.opcode!=OP_IdxRowid ){ int p2; /* New P2 value for copied conflict check opcode */ const char *zP4; if( sqlite3OpcodeProperty[x.opcode]&OPFLG_JUMP ){ p2 = lblRecheckOk; }else{ p2 = x.p2; } zP4 = x.p4type==P4_INT32 ? SQLITE_INT_TO_PTR(x.p4.i) : x.p4.z; sqlite3VdbeAddOp4(v, x.opcode, x.p1, p2, x.p3, zP4, x.p4type); sqlite3VdbeChangeP5(v, x.p5); VdbeCoverageIf(v, p2!=x.p2); } nConflictCk--; addrConflictCk++; } /* If the retest fails, issue an abort */ sqlite3UniqueConstraint(pParse, OE_Abort, pIdx); sqlite3VdbeJumpHere(v, addrBypass); /* Terminate the recheck bypass */ } seenReplace = 1; break; } } if( pUpIdx==pIdx ){ sqlite3VdbeGoto(v, upsertJump+1); sqlite3VdbeJumpHere(v, upsertBypass); }else{ sqlite3VdbeResolveLabel(v, addrUniqueOk); } if( regR!=regIdx ) sqlite3ReleaseTempRange(pParse, regR, nPkField); } /* If the IPK constraint is a REPLACE, run it last */ if( ipkTop ){ sqlite3VdbeGoto(v, ipkTop); VdbeComment((v, "Do IPK REPLACE")); sqlite3VdbeJumpHere(v, ipkBottom); } /* Recheck all uniqueness constraints after replace triggers have run */ testcase( regTrigCnt!=0 && nReplaceTrig==0 ); assert( regTrigCnt!=0 || nReplaceTrig==0 ); if( nReplaceTrig ){ sqlite3VdbeAddOp2(v, OP_IfNot, regTrigCnt, lblRecheckOk);VdbeCoverage(v); if( !pPk ){ if( isUpdate ){ sqlite3VdbeAddOp3(v, OP_Eq, regNewData, addrRecheck, regOldData); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); VdbeCoverage(v); } sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, addrRecheck, regNewData); VdbeCoverage(v); sqlite3RowidConstraint(pParse, OE_Abort, pTab); }else{ sqlite3VdbeGoto(v, addrRecheck); } sqlite3VdbeResolveLabel(v, lblRecheckOk); } /* Generate the table record */ if( HasRowid(pTab) ){ int regRec = aRegIdx[ix]; sqlite3VdbeAddOp3(v, OP_MakeRecord, regNewData+1, pTab->nNVCol, regRec); sqlite3SetMakeRecordP5(v, pTab); if( !bAffinityDone ){ sqlite3TableAffinity(v, pTab, 0); } } *pbMayReplace = seenReplace; VdbeModuleComment((v, "END: GenCnstCks(%d)", seenReplace)); } #ifdef SQLITE_ENABLE_NULL_TRIM /* ** Change the P5 operand on the last opcode (which should be an OP_MakeRecord) ** to be the number of columns in table pTab that must not be NULL-trimmed. ** ** Or if no columns of pTab may be NULL-trimmed, leave P5 at zero. */ SQLITE_PRIVATE void sqlite3SetMakeRecordP5(Vdbe *v, Table *pTab){ u16 i; /* Records with omitted columns are only allowed for schema format ** version 2 and later (SQLite version 3.1.4, 2005-02-20). */ if( pTab->pSchema->file_format<2 ) return; for(i=pTab->nCol-1; i>0; i--){ if( pTab->aCol[i].pDflt!=0 ) break; if( pTab->aCol[i].colFlags & COLFLAG_PRIMKEY ) break; } sqlite3VdbeChangeP5(v, i+1); } #endif /* ** This routine generates code to finish the INSERT or UPDATE operation ** that was started by a prior call to sqlite3GenerateConstraintChecks. ** A consecutive range of registers starting at regNewData contains the ** rowid and the content to be inserted. ** ** The arguments to this routine should be the same as the first six ** arguments to sqlite3GenerateConstraintChecks. */ SQLITE_PRIVATE void sqlite3CompleteInsertion( Parse *pParse, /* The parser context */ Table *pTab, /* the table into which we are inserting */ int iDataCur, /* Cursor of the canonical data source */ int iIdxCur, /* First index cursor */ int regNewData, /* Range of content */ int *aRegIdx, /* Register used by each index. 0 for unused indices */ int update_flags, /* True for UPDATE, False for INSERT */ int appendBias, /* True if this is likely to be an append */ int useSeekResult /* True to set the USESEEKRESULT flag on OP_[Idx]Insert */ ){ Vdbe *v; /* Prepared statements under construction */ Index *pIdx; /* An index being inserted or updated */ u8 pik_flags; /* flag values passed to the btree insert */ int i; /* Loop counter */ assert( update_flags==0 || update_flags==OPFLAG_ISUPDATE || update_flags==(OPFLAG_ISUPDATE|OPFLAG_SAVEPOSITION) ); v = sqlite3GetVdbe(pParse); assert( v!=0 ); assert( pTab->pSelect==0 ); /* This table is not a VIEW */ for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){ /* All REPLACE indexes are at the end of the list */ assert( pIdx->onError!=OE_Replace || pIdx->pNext==0 || pIdx->pNext->onError==OE_Replace ); if( aRegIdx[i]==0 ) continue; if( pIdx->pPartIdxWhere ){ sqlite3VdbeAddOp2(v, OP_IsNull, aRegIdx[i], sqlite3VdbeCurrentAddr(v)+2); VdbeCoverage(v); } pik_flags = (useSeekResult ? OPFLAG_USESEEKRESULT : 0); if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){ assert( pParse->nested==0 ); pik_flags |= OPFLAG_NCHANGE; pik_flags |= (update_flags & OPFLAG_SAVEPOSITION); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK if( update_flags==0 ){ int r = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_Integer, 0, r); sqlite3VdbeAddOp4(v, OP_Insert, iIdxCur+i, aRegIdx[i], r, (char*)pTab, P4_TABLE ); sqlite3VdbeChangeP5(v, OPFLAG_ISNOOP); sqlite3ReleaseTempReg(pParse, r); } #endif } sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iIdxCur+i, aRegIdx[i], aRegIdx[i]+1, pIdx->uniqNotNull ? pIdx->nKeyCol: pIdx->nColumn); sqlite3VdbeChangeP5(v, pik_flags); } if( !HasRowid(pTab) ) return; if( pParse->nested ){ pik_flags = 0; }else{ pik_flags = OPFLAG_NCHANGE; pik_flags |= (update_flags?update_flags:OPFLAG_LASTROWID); } if( appendBias ){ pik_flags |= OPFLAG_APPEND; } if( useSeekResult ){ pik_flags |= OPFLAG_USESEEKRESULT; } sqlite3VdbeAddOp3(v, OP_Insert, iDataCur, aRegIdx[i], regNewData); if( !pParse->nested ){ sqlite3VdbeAppendP4(v, pTab, P4_TABLE); } sqlite3VdbeChangeP5(v, pik_flags); } /* ** Allocate cursors for the pTab table and all its indices and generate ** code to open and initialized those cursors. ** ** The cursor for the object that contains the complete data (normally ** the table itself, but the PRIMARY KEY index in the case of a WITHOUT ** ROWID table) is returned in *piDataCur. The first index cursor is ** returned in *piIdxCur. The number of indices is returned. ** ** Use iBase as the first cursor (either the *piDataCur for rowid tables ** or the first index for WITHOUT ROWID tables) if it is non-negative. ** If iBase is negative, then allocate the next available cursor. ** ** For a rowid table, *piDataCur will be exactly one less than *piIdxCur. ** For a WITHOUT ROWID table, *piDataCur will be somewhere in the range ** of *piIdxCurs, depending on where the PRIMARY KEY index appears on the ** pTab->pIndex list. ** ** If pTab is a virtual table, then this routine is a no-op and the ** *piDataCur and *piIdxCur values are left uninitialized. */ SQLITE_PRIVATE int sqlite3OpenTableAndIndices( Parse *pParse, /* Parsing context */ Table *pTab, /* Table to be opened */ int op, /* OP_OpenRead or OP_OpenWrite */ u8 p5, /* P5 value for OP_Open* opcodes (except on WITHOUT ROWID) */ int iBase, /* Use this for the table cursor, if there is one */ u8 *aToOpen, /* If not NULL: boolean for each table and index */ int *piDataCur, /* Write the database source cursor number here */ int *piIdxCur /* Write the first index cursor number here */ ){ int i; int iDb; int iDataCur; Index *pIdx; Vdbe *v; assert( op==OP_OpenRead || op==OP_OpenWrite ); assert( op==OP_OpenWrite || p5==0 ); if( IsVirtual(pTab) ){ /* This routine is a no-op for virtual tables. Leave the output ** variables *piDataCur and *piIdxCur uninitialized so that valgrind ** can detect if they are used by mistake in the caller. */ return 0; } iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); v = sqlite3GetVdbe(pParse); assert( v!=0 ); if( iBase<0 ) iBase = pParse->nTab; iDataCur = iBase++; if( piDataCur ) *piDataCur = iDataCur; if( HasRowid(pTab) && (aToOpen==0 || aToOpen[0]) ){ sqlite3OpenTable(pParse, iDataCur, iDb, pTab, op); }else{ sqlite3TableLock(pParse, iDb, pTab->tnum, op==OP_OpenWrite, pTab->zName); } if( piIdxCur ) *piIdxCur = iBase; for(i=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, i++){ int iIdxCur = iBase++; assert( pIdx->pSchema==pTab->pSchema ); if( IsPrimaryKeyIndex(pIdx) && !HasRowid(pTab) ){ if( piDataCur ) *piDataCur = iIdxCur; p5 = 0; } if( aToOpen==0 || aToOpen[i+1] ){ sqlite3VdbeAddOp3(v, op, iIdxCur, pIdx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); sqlite3VdbeChangeP5(v, p5); VdbeComment((v, "%s", pIdx->zName)); } } if( iBase>pParse->nTab ) pParse->nTab = iBase; return i; } #ifdef SQLITE_TEST /* ** The following global variable is incremented whenever the ** transfer optimization is used. This is used for testing ** purposes only - to make sure the transfer optimization really ** is happening when it is supposed to. */ SQLITE_API int sqlite3_xferopt_count; #endif /* SQLITE_TEST */ #ifndef SQLITE_OMIT_XFER_OPT /* ** Check to see if index pSrc is compatible as a source of data ** for index pDest in an insert transfer optimization. The rules ** for a compatible index: ** ** * The index is over the same set of columns ** * The same DESC and ASC markings occurs on all columns ** * The same onError processing (OE_Abort, OE_Ignore, etc) ** * The same collating sequence on each column ** * The index has the exact same WHERE clause */ static int xferCompatibleIndex(Index *pDest, Index *pSrc){ int i; assert( pDest && pSrc ); assert( pDest->pTable!=pSrc->pTable ); if( pDest->nKeyCol!=pSrc->nKeyCol || pDest->nColumn!=pSrc->nColumn ){ return 0; /* Different number of columns */ } if( pDest->onError!=pSrc->onError ){ return 0; /* Different conflict resolution strategies */ } for(i=0; inKeyCol; i++){ if( pSrc->aiColumn[i]!=pDest->aiColumn[i] ){ return 0; /* Different columns indexed */ } if( pSrc->aiColumn[i]==XN_EXPR ){ assert( pSrc->aColExpr!=0 && pDest->aColExpr!=0 ); if( sqlite3ExprCompare(0, pSrc->aColExpr->a[i].pExpr, pDest->aColExpr->a[i].pExpr, -1)!=0 ){ return 0; /* Different expressions in the index */ } } if( pSrc->aSortOrder[i]!=pDest->aSortOrder[i] ){ return 0; /* Different sort orders */ } if( sqlite3_stricmp(pSrc->azColl[i],pDest->azColl[i])!=0 ){ return 0; /* Different collating sequences */ } } if( sqlite3ExprCompare(0, pSrc->pPartIdxWhere, pDest->pPartIdxWhere, -1) ){ return 0; /* Different WHERE clauses */ } /* If no test above fails then the indices must be compatible */ return 1; } /* ** Attempt the transfer optimization on INSERTs of the form ** ** INSERT INTO tab1 SELECT * FROM tab2; ** ** The xfer optimization transfers raw records from tab2 over to tab1. ** Columns are not decoded and reassembled, which greatly improves ** performance. Raw index records are transferred in the same way. ** ** The xfer optimization is only attempted if tab1 and tab2 are compatible. ** There are lots of rules for determining compatibility - see comments ** embedded in the code for details. ** ** This routine returns TRUE if the optimization is guaranteed to be used. ** Sometimes the xfer optimization will only work if the destination table ** is empty - a factor that can only be determined at run-time. In that ** case, this routine generates code for the xfer optimization but also ** does a test to see if the destination table is empty and jumps over the ** xfer optimization code if the test fails. In that case, this routine ** returns FALSE so that the caller will know to go ahead and generate ** an unoptimized transfer. This routine also returns FALSE if there ** is no chance that the xfer optimization can be applied. ** ** This optimization is particularly useful at making VACUUM run faster. */ static int xferOptimization( Parse *pParse, /* Parser context */ Table *pDest, /* The table we are inserting into */ Select *pSelect, /* A SELECT statement to use as the data source */ int onError, /* How to handle constraint errors */ int iDbDest /* The database of pDest */ ){ sqlite3 *db = pParse->db; ExprList *pEList; /* The result set of the SELECT */ Table *pSrc; /* The table in the FROM clause of SELECT */ Index *pSrcIdx, *pDestIdx; /* Source and destination indices */ struct SrcList_item *pItem; /* An element of pSelect->pSrc */ int i; /* Loop counter */ int iDbSrc; /* The database of pSrc */ int iSrc, iDest; /* Cursors from source and destination */ int addr1, addr2; /* Loop addresses */ int emptyDestTest = 0; /* Address of test for empty pDest */ int emptySrcTest = 0; /* Address of test for empty pSrc */ Vdbe *v; /* The VDBE we are building */ int regAutoinc; /* Memory register used by AUTOINC */ int destHasUniqueIdx = 0; /* True if pDest has a UNIQUE index */ int regData, regRowid; /* Registers holding data and rowid */ if( pSelect==0 ){ return 0; /* Must be of the form INSERT INTO ... SELECT ... */ } if( pParse->pWith || pSelect->pWith ){ /* Do not attempt to process this query if there are an WITH clauses ** attached to it. Proceeding may generate a false "no such table: xxx" ** error if pSelect reads from a CTE named "xxx". */ return 0; } if( sqlite3TriggerList(pParse, pDest) ){ return 0; /* tab1 must not have triggers */ } #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pDest) ){ return 0; /* tab1 must not be a virtual table */ } #endif if( onError==OE_Default ){ if( pDest->iPKey>=0 ) onError = pDest->keyConf; if( onError==OE_Default ) onError = OE_Abort; } assert(pSelect->pSrc); /* allocated even if there is no FROM clause */ if( pSelect->pSrc->nSrc!=1 ){ return 0; /* FROM clause must have exactly one term */ } if( pSelect->pSrc->a[0].pSelect ){ return 0; /* FROM clause cannot contain a subquery */ } if( pSelect->pWhere ){ return 0; /* SELECT may not have a WHERE clause */ } if( pSelect->pOrderBy ){ return 0; /* SELECT may not have an ORDER BY clause */ } /* Do not need to test for a HAVING clause. If HAVING is present but ** there is no ORDER BY, we will get an error. */ if( pSelect->pGroupBy ){ return 0; /* SELECT may not have a GROUP BY clause */ } if( pSelect->pLimit ){ return 0; /* SELECT may not have a LIMIT clause */ } if( pSelect->pPrior ){ return 0; /* SELECT may not be a compound query */ } if( pSelect->selFlags & SF_Distinct ){ return 0; /* SELECT may not be DISTINCT */ } pEList = pSelect->pEList; assert( pEList!=0 ); if( pEList->nExpr!=1 ){ return 0; /* The result set must have exactly one column */ } assert( pEList->a[0].pExpr ); if( pEList->a[0].pExpr->op!=TK_ASTERISK ){ return 0; /* The result set must be the special operator "*" */ } /* At this point we have established that the statement is of the ** correct syntactic form to participate in this optimization. Now ** we have to check the semantics. */ pItem = pSelect->pSrc->a; pSrc = sqlite3LocateTableItem(pParse, 0, pItem); if( pSrc==0 ){ return 0; /* FROM clause does not contain a real table */ } if( pSrc->tnum==pDest->tnum && pSrc->pSchema==pDest->pSchema ){ testcase( pSrc!=pDest ); /* Possible due to bad sqlite_schema.rootpage */ return 0; /* tab1 and tab2 may not be the same table */ } if( HasRowid(pDest)!=HasRowid(pSrc) ){ return 0; /* source and destination must both be WITHOUT ROWID or not */ } #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pSrc) ){ return 0; /* tab2 must not be a virtual table */ } #endif if( pSrc->pSelect ){ return 0; /* tab2 may not be a view */ } if( pDest->nCol!=pSrc->nCol ){ return 0; /* Number of columns must be the same in tab1 and tab2 */ } if( pDest->iPKey!=pSrc->iPKey ){ return 0; /* Both tables must have the same INTEGER PRIMARY KEY */ } for(i=0; inCol; i++){ Column *pDestCol = &pDest->aCol[i]; Column *pSrcCol = &pSrc->aCol[i]; #ifdef SQLITE_ENABLE_HIDDEN_COLUMNS if( (db->mDbFlags & DBFLAG_Vacuum)==0 && (pDestCol->colFlags | pSrcCol->colFlags) & COLFLAG_HIDDEN ){ return 0; /* Neither table may have __hidden__ columns */ } #endif #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Even if tables t1 and t2 have identical schemas, if they contain ** generated columns, then this statement is semantically incorrect: ** ** INSERT INTO t2 SELECT * FROM t1; ** ** The reason is that generated column values are returned by the ** the SELECT statement on the right but the INSERT statement on the ** left wants them to be omitted. ** ** Nevertheless, this is a useful notational shorthand to tell SQLite ** to do a bulk transfer all of the content from t1 over to t2. ** ** We could, in theory, disable this (except for internal use by the ** VACUUM command where it is actually needed). But why do that? It ** seems harmless enough, and provides a useful service. */ if( (pDestCol->colFlags & COLFLAG_GENERATED) != (pSrcCol->colFlags & COLFLAG_GENERATED) ){ return 0; /* Both columns have the same generated-column type */ } /* But the transfer is only allowed if both the source and destination ** tables have the exact same expressions for generated columns. ** This requirement could be relaxed for VIRTUAL columns, I suppose. */ if( (pDestCol->colFlags & COLFLAG_GENERATED)!=0 ){ if( sqlite3ExprCompare(0, pSrcCol->pDflt, pDestCol->pDflt, -1)!=0 ){ testcase( pDestCol->colFlags & COLFLAG_VIRTUAL ); testcase( pDestCol->colFlags & COLFLAG_STORED ); return 0; /* Different generator expressions */ } } #endif if( pDestCol->affinity!=pSrcCol->affinity ){ return 0; /* Affinity must be the same on all columns */ } if( sqlite3_stricmp(pDestCol->zColl, pSrcCol->zColl)!=0 ){ return 0; /* Collating sequence must be the same on all columns */ } if( pDestCol->notNull && !pSrcCol->notNull ){ return 0; /* tab2 must be NOT NULL if tab1 is */ } /* Default values for second and subsequent columns need to match. */ if( (pDestCol->colFlags & COLFLAG_GENERATED)==0 && i>0 ){ assert( pDestCol->pDflt==0 || pDestCol->pDflt->op==TK_SPAN ); assert( pSrcCol->pDflt==0 || pSrcCol->pDflt->op==TK_SPAN ); if( (pDestCol->pDflt==0)!=(pSrcCol->pDflt==0) || (pDestCol->pDflt && strcmp(pDestCol->pDflt->u.zToken, pSrcCol->pDflt->u.zToken)!=0) ){ return 0; /* Default values must be the same for all columns */ } } } for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){ if( IsUniqueIndex(pDestIdx) ){ destHasUniqueIdx = 1; } for(pSrcIdx=pSrc->pIndex; pSrcIdx; pSrcIdx=pSrcIdx->pNext){ if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break; } if( pSrcIdx==0 ){ return 0; /* pDestIdx has no corresponding index in pSrc */ } if( pSrcIdx->tnum==pDestIdx->tnum && pSrc->pSchema==pDest->pSchema && sqlite3FaultSim(411)==SQLITE_OK ){ /* The sqlite3FaultSim() call allows this corruption test to be ** bypassed during testing, in order to exercise other corruption tests ** further downstream. */ return 0; /* Corrupt schema - two indexes on the same btree */ } } #ifndef SQLITE_OMIT_CHECK if( pDest->pCheck && sqlite3ExprListCompare(pSrc->pCheck,pDest->pCheck,-1) ){ return 0; /* Tables have different CHECK constraints. Ticket #2252 */ } #endif #ifndef SQLITE_OMIT_FOREIGN_KEY /* Disallow the transfer optimization if the destination table constains ** any foreign key constraints. This is more restrictive than necessary. ** But the main beneficiary of the transfer optimization is the VACUUM ** command, and the VACUUM command disables foreign key constraints. So ** the extra complication to make this rule less restrictive is probably ** not worth the effort. Ticket [6284df89debdfa61db8073e062908af0c9b6118e] */ if( (db->flags & SQLITE_ForeignKeys)!=0 && pDest->pFKey!=0 ){ return 0; } #endif if( (db->flags & SQLITE_CountRows)!=0 ){ return 0; /* xfer opt does not play well with PRAGMA count_changes */ } /* If we get this far, it means that the xfer optimization is at ** least a possibility, though it might only work if the destination ** table (tab1) is initially empty. */ #ifdef SQLITE_TEST sqlite3_xferopt_count++; #endif iDbSrc = sqlite3SchemaToIndex(db, pSrc->pSchema); v = sqlite3GetVdbe(pParse); sqlite3CodeVerifySchema(pParse, iDbSrc); iSrc = pParse->nTab++; iDest = pParse->nTab++; regAutoinc = autoIncBegin(pParse, iDbDest, pDest); regData = sqlite3GetTempReg(pParse); regRowid = sqlite3GetTempReg(pParse); sqlite3OpenTable(pParse, iDest, iDbDest, pDest, OP_OpenWrite); assert( HasRowid(pDest) || destHasUniqueIdx ); if( (db->mDbFlags & DBFLAG_Vacuum)==0 && ( (pDest->iPKey<0 && pDest->pIndex!=0) /* (1) */ || destHasUniqueIdx /* (2) */ || (onError!=OE_Abort && onError!=OE_Rollback) /* (3) */ )){ /* In some circumstances, we are able to run the xfer optimization ** only if the destination table is initially empty. Unless the ** DBFLAG_Vacuum flag is set, this block generates code to make ** that determination. If DBFLAG_Vacuum is set, then the destination ** table is always empty. ** ** Conditions under which the destination must be empty: ** ** (1) There is no INTEGER PRIMARY KEY but there are indices. ** (If the destination is not initially empty, the rowid fields ** of index entries might need to change.) ** ** (2) The destination has a unique index. (The xfer optimization ** is unable to test uniqueness.) ** ** (3) onError is something other than OE_Abort and OE_Rollback. */ addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iDest, 0); VdbeCoverage(v); emptyDestTest = sqlite3VdbeAddOp0(v, OP_Goto); sqlite3VdbeJumpHere(v, addr1); } if( HasRowid(pSrc) ){ u8 insFlags; sqlite3OpenTable(pParse, iSrc, iDbSrc, pSrc, OP_OpenRead); emptySrcTest = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v); if( pDest->iPKey>=0 ){ addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid); sqlite3VdbeVerifyAbortable(v, onError); addr2 = sqlite3VdbeAddOp3(v, OP_NotExists, iDest, 0, regRowid); VdbeCoverage(v); sqlite3RowidConstraint(pParse, onError, pDest); sqlite3VdbeJumpHere(v, addr2); autoIncStep(pParse, regAutoinc, regRowid); }else if( pDest->pIndex==0 && !(db->mDbFlags & DBFLAG_VacuumInto) ){ addr1 = sqlite3VdbeAddOp2(v, OP_NewRowid, iDest, regRowid); }else{ addr1 = sqlite3VdbeAddOp2(v, OP_Rowid, iSrc, regRowid); assert( (pDest->tabFlags & TF_Autoincrement)==0 ); } if( db->mDbFlags & DBFLAG_Vacuum ){ sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest); insFlags = OPFLAG_APPEND|OPFLAG_USESEEKRESULT; }else{ insFlags = OPFLAG_NCHANGE|OPFLAG_LASTROWID|OPFLAG_APPEND; } sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1); sqlite3VdbeAddOp4(v, OP_Insert, iDest, regData, regRowid, (char*)pDest, P4_TABLE); sqlite3VdbeChangeP5(v, insFlags); sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1); VdbeCoverage(v); sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0); sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); }else{ sqlite3TableLock(pParse, iDbDest, pDest->tnum, 1, pDest->zName); sqlite3TableLock(pParse, iDbSrc, pSrc->tnum, 0, pSrc->zName); } for(pDestIdx=pDest->pIndex; pDestIdx; pDestIdx=pDestIdx->pNext){ u8 idxInsFlags = 0; for(pSrcIdx=pSrc->pIndex; ALWAYS(pSrcIdx); pSrcIdx=pSrcIdx->pNext){ if( xferCompatibleIndex(pDestIdx, pSrcIdx) ) break; } assert( pSrcIdx ); sqlite3VdbeAddOp3(v, OP_OpenRead, iSrc, pSrcIdx->tnum, iDbSrc); sqlite3VdbeSetP4KeyInfo(pParse, pSrcIdx); VdbeComment((v, "%s", pSrcIdx->zName)); sqlite3VdbeAddOp3(v, OP_OpenWrite, iDest, pDestIdx->tnum, iDbDest); sqlite3VdbeSetP4KeyInfo(pParse, pDestIdx); sqlite3VdbeChangeP5(v, OPFLAG_BULKCSR); VdbeComment((v, "%s", pDestIdx->zName)); addr1 = sqlite3VdbeAddOp2(v, OP_Rewind, iSrc, 0); VdbeCoverage(v); if( db->mDbFlags & DBFLAG_Vacuum ){ /* This INSERT command is part of a VACUUM operation, which guarantees ** that the destination table is empty. If all indexed columns use ** collation sequence BINARY, then it can also be assumed that the ** index will be populated by inserting keys in strictly sorted ** order. In this case, instead of seeking within the b-tree as part ** of every OP_IdxInsert opcode, an OP_SeekEnd is added before the ** OP_IdxInsert to seek to the point within the b-tree where each key ** should be inserted. This is faster. ** ** If any of the indexed columns use a collation sequence other than ** BINARY, this optimization is disabled. This is because the user ** might change the definition of a collation sequence and then run ** a VACUUM command. In that case keys may not be written in strictly ** sorted order. */ for(i=0; inColumn; i++){ const char *zColl = pSrcIdx->azColl[i]; if( sqlite3_stricmp(sqlite3StrBINARY, zColl) ) break; } if( i==pSrcIdx->nColumn ){ idxInsFlags = OPFLAG_USESEEKRESULT; sqlite3VdbeAddOp1(v, OP_SeekEnd, iDest); } }else if( !HasRowid(pSrc) && pDestIdx->idxType==SQLITE_IDXTYPE_PRIMARYKEY ){ idxInsFlags |= OPFLAG_NCHANGE; } sqlite3VdbeAddOp3(v, OP_RowData, iSrc, regData, 1); sqlite3VdbeAddOp2(v, OP_IdxInsert, iDest, regData); sqlite3VdbeChangeP5(v, idxInsFlags|OPFLAG_APPEND); sqlite3VdbeAddOp2(v, OP_Next, iSrc, addr1+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr1); sqlite3VdbeAddOp2(v, OP_Close, iSrc, 0); sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); } if( emptySrcTest ) sqlite3VdbeJumpHere(v, emptySrcTest); sqlite3ReleaseTempReg(pParse, regRowid); sqlite3ReleaseTempReg(pParse, regData); if( emptyDestTest ){ sqlite3AutoincrementEnd(pParse); sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_OK, 0); sqlite3VdbeJumpHere(v, emptyDestTest); sqlite3VdbeAddOp2(v, OP_Close, iDest, 0); return 0; }else{ return 1; } } #endif /* SQLITE_OMIT_XFER_OPT */ /************** End of insert.c **********************************************/ /************** Begin file legacy.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Main file for the SQLite library. The routines in this file ** implement the programmer interface to the library. Routines in ** other files are for internal use by SQLite and should not be ** accessed by users of the library. */ /* #include "sqliteInt.h" */ /* ** Execute SQL code. Return one of the SQLITE_ success/failure ** codes. Also write an error message into memory obtained from ** malloc() and make *pzErrMsg point to that message. ** ** If the SQL is a query, then for each row in the query result ** the xCallback() function is called. pArg becomes the first ** argument to xCallback(). If xCallback=NULL then no callback ** is invoked, even for queries. */ SQLITE_API int sqlite3_exec( sqlite3 *db, /* The database on which the SQL executes */ const char *zSql, /* The SQL to be executed */ sqlite3_callback xCallback, /* Invoke this callback routine */ void *pArg, /* First argument to xCallback() */ char **pzErrMsg /* Write error messages here */ ){ int rc = SQLITE_OK; /* Return code */ const char *zLeftover; /* Tail of unprocessed SQL */ sqlite3_stmt *pStmt = 0; /* The current SQL statement */ char **azCols = 0; /* Names of result columns */ int callbackIsInit; /* True if callback data is initialized */ if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; if( zSql==0 ) zSql = ""; sqlite3_mutex_enter(db->mutex); sqlite3Error(db, SQLITE_OK); while( rc==SQLITE_OK && zSql[0] ){ int nCol = 0; char **azVals = 0; pStmt = 0; rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, &zLeftover); assert( rc==SQLITE_OK || pStmt==0 ); if( rc!=SQLITE_OK ){ continue; } if( !pStmt ){ /* this happens for a comment or white-space */ zSql = zLeftover; continue; } callbackIsInit = 0; while( 1 ){ int i; rc = sqlite3_step(pStmt); /* Invoke the callback function if required */ if( xCallback && (SQLITE_ROW==rc || (SQLITE_DONE==rc && !callbackIsInit && db->flags&SQLITE_NullCallback)) ){ if( !callbackIsInit ){ nCol = sqlite3_column_count(pStmt); azCols = sqlite3DbMallocRaw(db, (2*nCol+1)*sizeof(const char*)); if( azCols==0 ){ goto exec_out; } for(i=0; ierrMask)==rc ); sqlite3_mutex_leave(db->mutex); return rc; } /************** End of legacy.c **********************************************/ /************** Begin file loadext.c *****************************************/ /* ** 2006 June 7 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to dynamically load extensions into ** the SQLite library. */ #ifndef SQLITE_CORE #define SQLITE_CORE 1 /* Disable the API redefinition in sqlite3ext.h */ #endif /************** Include sqlite3ext.h in the middle of loadext.c **************/ /************** Begin file sqlite3ext.h **************************************/ /* ** 2006 June 7 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This header file defines the SQLite interface for use by ** shared libraries that want to be imported as extensions into ** an SQLite instance. Shared libraries that intend to be loaded ** as extensions by SQLite should #include this file instead of ** sqlite3.h. */ #ifndef SQLITE3EXT_H #define SQLITE3EXT_H /* #include "sqlite3.h" */ /* ** The following structure holds pointers to all of the SQLite API ** routines. ** ** WARNING: In order to maintain backwards compatibility, add new ** interfaces to the end of this structure only. If you insert new ** interfaces in the middle of this structure, then older different ** versions of SQLite will not be able to load each other's shared ** libraries! */ struct sqlite3_api_routines { void * (*aggregate_context)(sqlite3_context*,int nBytes); int (*aggregate_count)(sqlite3_context*); int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*)); int (*bind_double)(sqlite3_stmt*,int,double); int (*bind_int)(sqlite3_stmt*,int,int); int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64); int (*bind_null)(sqlite3_stmt*,int); int (*bind_parameter_count)(sqlite3_stmt*); int (*bind_parameter_index)(sqlite3_stmt*,const char*zName); const char * (*bind_parameter_name)(sqlite3_stmt*,int); int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*)); int (*bind_text16)(sqlite3_stmt*,int,const void*,int,void(*)(void*)); int (*bind_value)(sqlite3_stmt*,int,const sqlite3_value*); int (*busy_handler)(sqlite3*,int(*)(void*,int),void*); int (*busy_timeout)(sqlite3*,int ms); int (*changes)(sqlite3*); int (*close)(sqlite3*); int (*collation_needed)(sqlite3*,void*,void(*)(void*,sqlite3*, int eTextRep,const char*)); int (*collation_needed16)(sqlite3*,void*,void(*)(void*,sqlite3*, int eTextRep,const void*)); const void * (*column_blob)(sqlite3_stmt*,int iCol); int (*column_bytes)(sqlite3_stmt*,int iCol); int (*column_bytes16)(sqlite3_stmt*,int iCol); int (*column_count)(sqlite3_stmt*pStmt); const char * (*column_database_name)(sqlite3_stmt*,int); const void * (*column_database_name16)(sqlite3_stmt*,int); const char * (*column_decltype)(sqlite3_stmt*,int i); const void * (*column_decltype16)(sqlite3_stmt*,int); double (*column_double)(sqlite3_stmt*,int iCol); int (*column_int)(sqlite3_stmt*,int iCol); sqlite_int64 (*column_int64)(sqlite3_stmt*,int iCol); const char * (*column_name)(sqlite3_stmt*,int); const void * (*column_name16)(sqlite3_stmt*,int); const char * (*column_origin_name)(sqlite3_stmt*,int); const void * (*column_origin_name16)(sqlite3_stmt*,int); const char * (*column_table_name)(sqlite3_stmt*,int); const void * (*column_table_name16)(sqlite3_stmt*,int); const unsigned char * (*column_text)(sqlite3_stmt*,int iCol); const void * (*column_text16)(sqlite3_stmt*,int iCol); int (*column_type)(sqlite3_stmt*,int iCol); sqlite3_value* (*column_value)(sqlite3_stmt*,int iCol); void * (*commit_hook)(sqlite3*,int(*)(void*),void*); int (*complete)(const char*sql); int (*complete16)(const void*sql); int (*create_collation)(sqlite3*,const char*,int,void*, int(*)(void*,int,const void*,int,const void*)); int (*create_collation16)(sqlite3*,const void*,int,void*, int(*)(void*,int,const void*,int,const void*)); int (*create_function)(sqlite3*,const char*,int,int,void*, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*)); int (*create_function16)(sqlite3*,const void*,int,int,void*, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*)); int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*); int (*data_count)(sqlite3_stmt*pStmt); sqlite3 * (*db_handle)(sqlite3_stmt*); int (*declare_vtab)(sqlite3*,const char*); int (*enable_shared_cache)(int); int (*errcode)(sqlite3*db); const char * (*errmsg)(sqlite3*); const void * (*errmsg16)(sqlite3*); int (*exec)(sqlite3*,const char*,sqlite3_callback,void*,char**); int (*expired)(sqlite3_stmt*); int (*finalize)(sqlite3_stmt*pStmt); void (*free)(void*); void (*free_table)(char**result); int (*get_autocommit)(sqlite3*); void * (*get_auxdata)(sqlite3_context*,int); int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**); int (*global_recover)(void); void (*interruptx)(sqlite3*); sqlite_int64 (*last_insert_rowid)(sqlite3*); const char * (*libversion)(void); int (*libversion_number)(void); void *(*malloc)(int); char * (*mprintf)(const char*,...); int (*open)(const char*,sqlite3**); int (*open16)(const void*,sqlite3**); int (*prepare)(sqlite3*,const char*,int,sqlite3_stmt**,const char**); int (*prepare16)(sqlite3*,const void*,int,sqlite3_stmt**,const void**); void * (*profile)(sqlite3*,void(*)(void*,const char*,sqlite_uint64),void*); void (*progress_handler)(sqlite3*,int,int(*)(void*),void*); void *(*realloc)(void*,int); int (*reset)(sqlite3_stmt*pStmt); void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*)); void (*result_double)(sqlite3_context*,double); void (*result_error)(sqlite3_context*,const char*,int); void (*result_error16)(sqlite3_context*,const void*,int); void (*result_int)(sqlite3_context*,int); void (*result_int64)(sqlite3_context*,sqlite_int64); void (*result_null)(sqlite3_context*); void (*result_text)(sqlite3_context*,const char*,int,void(*)(void*)); void (*result_text16)(sqlite3_context*,const void*,int,void(*)(void*)); void (*result_text16be)(sqlite3_context*,const void*,int,void(*)(void*)); void (*result_text16le)(sqlite3_context*,const void*,int,void(*)(void*)); void (*result_value)(sqlite3_context*,sqlite3_value*); void * (*rollback_hook)(sqlite3*,void(*)(void*),void*); int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*, const char*,const char*),void*); void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*)); char * (*xsnprintf)(int,char*,const char*,...); int (*step)(sqlite3_stmt*); int (*table_column_metadata)(sqlite3*,const char*,const char*,const char*, char const**,char const**,int*,int*,int*); void (*thread_cleanup)(void); int (*total_changes)(sqlite3*); void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*); int (*transfer_bindings)(sqlite3_stmt*,sqlite3_stmt*); void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*, sqlite_int64),void*); void * (*user_data)(sqlite3_context*); const void * (*value_blob)(sqlite3_value*); int (*value_bytes)(sqlite3_value*); int (*value_bytes16)(sqlite3_value*); double (*value_double)(sqlite3_value*); int (*value_int)(sqlite3_value*); sqlite_int64 (*value_int64)(sqlite3_value*); int (*value_numeric_type)(sqlite3_value*); const unsigned char * (*value_text)(sqlite3_value*); const void * (*value_text16)(sqlite3_value*); const void * (*value_text16be)(sqlite3_value*); const void * (*value_text16le)(sqlite3_value*); int (*value_type)(sqlite3_value*); char *(*vmprintf)(const char*,va_list); /* Added ??? */ int (*overload_function)(sqlite3*, const char *zFuncName, int nArg); /* Added by 3.3.13 */ int (*prepare_v2)(sqlite3*,const char*,int,sqlite3_stmt**,const char**); int (*prepare16_v2)(sqlite3*,const void*,int,sqlite3_stmt**,const void**); int (*clear_bindings)(sqlite3_stmt*); /* Added by 3.4.1 */ int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*, void (*xDestroy)(void *)); /* Added by 3.5.0 */ int (*bind_zeroblob)(sqlite3_stmt*,int,int); int (*blob_bytes)(sqlite3_blob*); int (*blob_close)(sqlite3_blob*); int (*blob_open)(sqlite3*,const char*,const char*,const char*,sqlite3_int64, int,sqlite3_blob**); int (*blob_read)(sqlite3_blob*,void*,int,int); int (*blob_write)(sqlite3_blob*,const void*,int,int); int (*create_collation_v2)(sqlite3*,const char*,int,void*, int(*)(void*,int,const void*,int,const void*), void(*)(void*)); int (*file_control)(sqlite3*,const char*,int,void*); sqlite3_int64 (*memory_highwater)(int); sqlite3_int64 (*memory_used)(void); sqlite3_mutex *(*mutex_alloc)(int); void (*mutex_enter)(sqlite3_mutex*); void (*mutex_free)(sqlite3_mutex*); void (*mutex_leave)(sqlite3_mutex*); int (*mutex_try)(sqlite3_mutex*); int (*open_v2)(const char*,sqlite3**,int,const char*); int (*release_memory)(int); void (*result_error_nomem)(sqlite3_context*); void (*result_error_toobig)(sqlite3_context*); int (*sleep)(int); void (*soft_heap_limit)(int); sqlite3_vfs *(*vfs_find)(const char*); int (*vfs_register)(sqlite3_vfs*,int); int (*vfs_unregister)(sqlite3_vfs*); int (*xthreadsafe)(void); void (*result_zeroblob)(sqlite3_context*,int); void (*result_error_code)(sqlite3_context*,int); int (*test_control)(int, ...); void (*randomness)(int,void*); sqlite3 *(*context_db_handle)(sqlite3_context*); int (*extended_result_codes)(sqlite3*,int); int (*limit)(sqlite3*,int,int); sqlite3_stmt *(*next_stmt)(sqlite3*,sqlite3_stmt*); const char *(*sql)(sqlite3_stmt*); int (*status)(int,int*,int*,int); int (*backup_finish)(sqlite3_backup*); sqlite3_backup *(*backup_init)(sqlite3*,const char*,sqlite3*,const char*); int (*backup_pagecount)(sqlite3_backup*); int (*backup_remaining)(sqlite3_backup*); int (*backup_step)(sqlite3_backup*,int); const char *(*compileoption_get)(int); int (*compileoption_used)(const char*); int (*create_function_v2)(sqlite3*,const char*,int,int,void*, void (*xFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void(*xDestroy)(void*)); int (*db_config)(sqlite3*,int,...); sqlite3_mutex *(*db_mutex)(sqlite3*); int (*db_status)(sqlite3*,int,int*,int*,int); int (*extended_errcode)(sqlite3*); void (*log)(int,const char*,...); sqlite3_int64 (*soft_heap_limit64)(sqlite3_int64); const char *(*sourceid)(void); int (*stmt_status)(sqlite3_stmt*,int,int); int (*strnicmp)(const char*,const char*,int); int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*); int (*wal_autocheckpoint)(sqlite3*,int); int (*wal_checkpoint)(sqlite3*,const char*); void *(*wal_hook)(sqlite3*,int(*)(void*,sqlite3*,const char*,int),void*); int (*blob_reopen)(sqlite3_blob*,sqlite3_int64); int (*vtab_config)(sqlite3*,int op,...); int (*vtab_on_conflict)(sqlite3*); /* Version 3.7.16 and later */ int (*close_v2)(sqlite3*); const char *(*db_filename)(sqlite3*,const char*); int (*db_readonly)(sqlite3*,const char*); int (*db_release_memory)(sqlite3*); const char *(*errstr)(int); int (*stmt_busy)(sqlite3_stmt*); int (*stmt_readonly)(sqlite3_stmt*); int (*stricmp)(const char*,const char*); int (*uri_boolean)(const char*,const char*,int); sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64); const char *(*uri_parameter)(const char*,const char*); char *(*xvsnprintf)(int,char*,const char*,va_list); int (*wal_checkpoint_v2)(sqlite3*,const char*,int,int*,int*); /* Version 3.8.7 and later */ int (*auto_extension)(void(*)(void)); int (*bind_blob64)(sqlite3_stmt*,int,const void*,sqlite3_uint64, void(*)(void*)); int (*bind_text64)(sqlite3_stmt*,int,const char*,sqlite3_uint64, void(*)(void*),unsigned char); int (*cancel_auto_extension)(void(*)(void)); int (*load_extension)(sqlite3*,const char*,const char*,char**); void *(*malloc64)(sqlite3_uint64); sqlite3_uint64 (*msize)(void*); void *(*realloc64)(void*,sqlite3_uint64); void (*reset_auto_extension)(void); void (*result_blob64)(sqlite3_context*,const void*,sqlite3_uint64, void(*)(void*)); void (*result_text64)(sqlite3_context*,const char*,sqlite3_uint64, void(*)(void*), unsigned char); int (*strglob)(const char*,const char*); /* Version 3.8.11 and later */ sqlite3_value *(*value_dup)(const sqlite3_value*); void (*value_free)(sqlite3_value*); int (*result_zeroblob64)(sqlite3_context*,sqlite3_uint64); int (*bind_zeroblob64)(sqlite3_stmt*, int, sqlite3_uint64); /* Version 3.9.0 and later */ unsigned int (*value_subtype)(sqlite3_value*); void (*result_subtype)(sqlite3_context*,unsigned int); /* Version 3.10.0 and later */ int (*status64)(int,sqlite3_int64*,sqlite3_int64*,int); int (*strlike)(const char*,const char*,unsigned int); int (*db_cacheflush)(sqlite3*); /* Version 3.12.0 and later */ int (*system_errno)(sqlite3*); /* Version 3.14.0 and later */ int (*trace_v2)(sqlite3*,unsigned,int(*)(unsigned,void*,void*,void*),void*); char *(*expanded_sql)(sqlite3_stmt*); /* Version 3.18.0 and later */ void (*set_last_insert_rowid)(sqlite3*,sqlite3_int64); /* Version 3.20.0 and later */ int (*prepare_v3)(sqlite3*,const char*,int,unsigned int, sqlite3_stmt**,const char**); int (*prepare16_v3)(sqlite3*,const void*,int,unsigned int, sqlite3_stmt**,const void**); int (*bind_pointer)(sqlite3_stmt*,int,void*,const char*,void(*)(void*)); void (*result_pointer)(sqlite3_context*,void*,const char*,void(*)(void*)); void *(*value_pointer)(sqlite3_value*,const char*); int (*vtab_nochange)(sqlite3_context*); int (*value_nochange)(sqlite3_value*); const char *(*vtab_collation)(sqlite3_index_info*,int); /* Version 3.24.0 and later */ int (*keyword_count)(void); int (*keyword_name)(int,const char**,int*); int (*keyword_check)(const char*,int); sqlite3_str *(*str_new)(sqlite3*); char *(*str_finish)(sqlite3_str*); void (*str_appendf)(sqlite3_str*, const char *zFormat, ...); void (*str_vappendf)(sqlite3_str*, const char *zFormat, va_list); void (*str_append)(sqlite3_str*, const char *zIn, int N); void (*str_appendall)(sqlite3_str*, const char *zIn); void (*str_appendchar)(sqlite3_str*, int N, char C); void (*str_reset)(sqlite3_str*); int (*str_errcode)(sqlite3_str*); int (*str_length)(sqlite3_str*); char *(*str_value)(sqlite3_str*); /* Version 3.25.0 and later */ int (*create_window_function)(sqlite3*,const char*,int,int,void*, void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInv)(sqlite3_context*,int,sqlite3_value**), void(*xDestroy)(void*)); /* Version 3.26.0 and later */ const char *(*normalized_sql)(sqlite3_stmt*); /* Version 3.28.0 and later */ int (*stmt_isexplain)(sqlite3_stmt*); int (*value_frombind)(sqlite3_value*); /* Version 3.30.0 and later */ int (*drop_modules)(sqlite3*,const char**); /* Version 3.31.0 and later */ sqlite3_int64 (*hard_heap_limit64)(sqlite3_int64); const char *(*uri_key)(const char*,int); const char *(*filename_database)(const char*); const char *(*filename_journal)(const char*); const char *(*filename_wal)(const char*); /* Version 3.32.0 and later */ char *(*create_filename)(const char*,const char*,const char*, int,const char**); void (*free_filename)(char*); sqlite3_file *(*database_file_object)(const char*); }; /* ** This is the function signature used for all extension entry points. It ** is also defined in the file "loadext.c". */ typedef int (*sqlite3_loadext_entry)( sqlite3 *db, /* Handle to the database. */ char **pzErrMsg, /* Used to set error string on failure. */ const sqlite3_api_routines *pThunk /* Extension API function pointers. */ ); /* ** The following macros redefine the API routines so that they are ** redirected through the global sqlite3_api structure. ** ** This header file is also used by the loadext.c source file ** (part of the main SQLite library - not an extension) so that ** it can get access to the sqlite3_api_routines structure ** definition. But the main library does not want to redefine ** the API. So the redefinition macros are only valid if the ** SQLITE_CORE macros is undefined. */ #if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) #define sqlite3_aggregate_context sqlite3_api->aggregate_context #ifndef SQLITE_OMIT_DEPRECATED #define sqlite3_aggregate_count sqlite3_api->aggregate_count #endif #define sqlite3_bind_blob sqlite3_api->bind_blob #define sqlite3_bind_double sqlite3_api->bind_double #define sqlite3_bind_int sqlite3_api->bind_int #define sqlite3_bind_int64 sqlite3_api->bind_int64 #define sqlite3_bind_null sqlite3_api->bind_null #define sqlite3_bind_parameter_count sqlite3_api->bind_parameter_count #define sqlite3_bind_parameter_index sqlite3_api->bind_parameter_index #define sqlite3_bind_parameter_name sqlite3_api->bind_parameter_name #define sqlite3_bind_text sqlite3_api->bind_text #define sqlite3_bind_text16 sqlite3_api->bind_text16 #define sqlite3_bind_value sqlite3_api->bind_value #define sqlite3_busy_handler sqlite3_api->busy_handler #define sqlite3_busy_timeout sqlite3_api->busy_timeout #define sqlite3_changes sqlite3_api->changes #define sqlite3_close sqlite3_api->close #define sqlite3_collation_needed sqlite3_api->collation_needed #define sqlite3_collation_needed16 sqlite3_api->collation_needed16 #define sqlite3_column_blob sqlite3_api->column_blob #define sqlite3_column_bytes sqlite3_api->column_bytes #define sqlite3_column_bytes16 sqlite3_api->column_bytes16 #define sqlite3_column_count sqlite3_api->column_count #define sqlite3_column_database_name sqlite3_api->column_database_name #define sqlite3_column_database_name16 sqlite3_api->column_database_name16 #define sqlite3_column_decltype sqlite3_api->column_decltype #define sqlite3_column_decltype16 sqlite3_api->column_decltype16 #define sqlite3_column_double sqlite3_api->column_double #define sqlite3_column_int sqlite3_api->column_int #define sqlite3_column_int64 sqlite3_api->column_int64 #define sqlite3_column_name sqlite3_api->column_name #define sqlite3_column_name16 sqlite3_api->column_name16 #define sqlite3_column_origin_name sqlite3_api->column_origin_name #define sqlite3_column_origin_name16 sqlite3_api->column_origin_name16 #define sqlite3_column_table_name sqlite3_api->column_table_name #define sqlite3_column_table_name16 sqlite3_api->column_table_name16 #define sqlite3_column_text sqlite3_api->column_text #define sqlite3_column_text16 sqlite3_api->column_text16 #define sqlite3_column_type sqlite3_api->column_type #define sqlite3_column_value sqlite3_api->column_value #define sqlite3_commit_hook sqlite3_api->commit_hook #define sqlite3_complete sqlite3_api->complete #define sqlite3_complete16 sqlite3_api->complete16 #define sqlite3_create_collation sqlite3_api->create_collation #define sqlite3_create_collation16 sqlite3_api->create_collation16 #define sqlite3_create_function sqlite3_api->create_function #define sqlite3_create_function16 sqlite3_api->create_function16 #define sqlite3_create_module sqlite3_api->create_module #define sqlite3_create_module_v2 sqlite3_api->create_module_v2 #define sqlite3_data_count sqlite3_api->data_count #define sqlite3_db_handle sqlite3_api->db_handle #define sqlite3_declare_vtab sqlite3_api->declare_vtab #define sqlite3_enable_shared_cache sqlite3_api->enable_shared_cache #define sqlite3_errcode sqlite3_api->errcode #define sqlite3_errmsg sqlite3_api->errmsg #define sqlite3_errmsg16 sqlite3_api->errmsg16 #define sqlite3_exec sqlite3_api->exec #ifndef SQLITE_OMIT_DEPRECATED #define sqlite3_expired sqlite3_api->expired #endif #define sqlite3_finalize sqlite3_api->finalize #define sqlite3_free sqlite3_api->free #define sqlite3_free_table sqlite3_api->free_table #define sqlite3_get_autocommit sqlite3_api->get_autocommit #define sqlite3_get_auxdata sqlite3_api->get_auxdata #define sqlite3_get_table sqlite3_api->get_table #ifndef SQLITE_OMIT_DEPRECATED #define sqlite3_global_recover sqlite3_api->global_recover #endif #define sqlite3_interrupt sqlite3_api->interruptx #define sqlite3_last_insert_rowid sqlite3_api->last_insert_rowid #define sqlite3_libversion sqlite3_api->libversion #define sqlite3_libversion_number sqlite3_api->libversion_number #define sqlite3_malloc sqlite3_api->malloc #define sqlite3_mprintf sqlite3_api->mprintf #define sqlite3_open sqlite3_api->open #define sqlite3_open16 sqlite3_api->open16 #define sqlite3_prepare sqlite3_api->prepare #define sqlite3_prepare16 sqlite3_api->prepare16 #define sqlite3_prepare_v2 sqlite3_api->prepare_v2 #define sqlite3_prepare16_v2 sqlite3_api->prepare16_v2 #define sqlite3_profile sqlite3_api->profile #define sqlite3_progress_handler sqlite3_api->progress_handler #define sqlite3_realloc sqlite3_api->realloc #define sqlite3_reset sqlite3_api->reset #define sqlite3_result_blob sqlite3_api->result_blob #define sqlite3_result_double sqlite3_api->result_double #define sqlite3_result_error sqlite3_api->result_error #define sqlite3_result_error16 sqlite3_api->result_error16 #define sqlite3_result_int sqlite3_api->result_int #define sqlite3_result_int64 sqlite3_api->result_int64 #define sqlite3_result_null sqlite3_api->result_null #define sqlite3_result_text sqlite3_api->result_text #define sqlite3_result_text16 sqlite3_api->result_text16 #define sqlite3_result_text16be sqlite3_api->result_text16be #define sqlite3_result_text16le sqlite3_api->result_text16le #define sqlite3_result_value sqlite3_api->result_value #define sqlite3_rollback_hook sqlite3_api->rollback_hook #define sqlite3_set_authorizer sqlite3_api->set_authorizer #define sqlite3_set_auxdata sqlite3_api->set_auxdata #define sqlite3_snprintf sqlite3_api->xsnprintf #define sqlite3_step sqlite3_api->step #define sqlite3_table_column_metadata sqlite3_api->table_column_metadata #define sqlite3_thread_cleanup sqlite3_api->thread_cleanup #define sqlite3_total_changes sqlite3_api->total_changes #define sqlite3_trace sqlite3_api->trace #ifndef SQLITE_OMIT_DEPRECATED #define sqlite3_transfer_bindings sqlite3_api->transfer_bindings #endif #define sqlite3_update_hook sqlite3_api->update_hook #define sqlite3_user_data sqlite3_api->user_data #define sqlite3_value_blob sqlite3_api->value_blob #define sqlite3_value_bytes sqlite3_api->value_bytes #define sqlite3_value_bytes16 sqlite3_api->value_bytes16 #define sqlite3_value_double sqlite3_api->value_double #define sqlite3_value_int sqlite3_api->value_int #define sqlite3_value_int64 sqlite3_api->value_int64 #define sqlite3_value_numeric_type sqlite3_api->value_numeric_type #define sqlite3_value_text sqlite3_api->value_text #define sqlite3_value_text16 sqlite3_api->value_text16 #define sqlite3_value_text16be sqlite3_api->value_text16be #define sqlite3_value_text16le sqlite3_api->value_text16le #define sqlite3_value_type sqlite3_api->value_type #define sqlite3_vmprintf sqlite3_api->vmprintf #define sqlite3_vsnprintf sqlite3_api->xvsnprintf #define sqlite3_overload_function sqlite3_api->overload_function #define sqlite3_prepare_v2 sqlite3_api->prepare_v2 #define sqlite3_prepare16_v2 sqlite3_api->prepare16_v2 #define sqlite3_clear_bindings sqlite3_api->clear_bindings #define sqlite3_bind_zeroblob sqlite3_api->bind_zeroblob #define sqlite3_blob_bytes sqlite3_api->blob_bytes #define sqlite3_blob_close sqlite3_api->blob_close #define sqlite3_blob_open sqlite3_api->blob_open #define sqlite3_blob_read sqlite3_api->blob_read #define sqlite3_blob_write sqlite3_api->blob_write #define sqlite3_create_collation_v2 sqlite3_api->create_collation_v2 #define sqlite3_file_control sqlite3_api->file_control #define sqlite3_memory_highwater sqlite3_api->memory_highwater #define sqlite3_memory_used sqlite3_api->memory_used #define sqlite3_mutex_alloc sqlite3_api->mutex_alloc #define sqlite3_mutex_enter sqlite3_api->mutex_enter #define sqlite3_mutex_free sqlite3_api->mutex_free #define sqlite3_mutex_leave sqlite3_api->mutex_leave #define sqlite3_mutex_try sqlite3_api->mutex_try #define sqlite3_open_v2 sqlite3_api->open_v2 #define sqlite3_release_memory sqlite3_api->release_memory #define sqlite3_result_error_nomem sqlite3_api->result_error_nomem #define sqlite3_result_error_toobig sqlite3_api->result_error_toobig #define sqlite3_sleep sqlite3_api->sleep #define sqlite3_soft_heap_limit sqlite3_api->soft_heap_limit #define sqlite3_vfs_find sqlite3_api->vfs_find #define sqlite3_vfs_register sqlite3_api->vfs_register #define sqlite3_vfs_unregister sqlite3_api->vfs_unregister #define sqlite3_threadsafe sqlite3_api->xthreadsafe #define sqlite3_result_zeroblob sqlite3_api->result_zeroblob #define sqlite3_result_error_code sqlite3_api->result_error_code #define sqlite3_test_control sqlite3_api->test_control #define sqlite3_randomness sqlite3_api->randomness #define sqlite3_context_db_handle sqlite3_api->context_db_handle #define sqlite3_extended_result_codes sqlite3_api->extended_result_codes #define sqlite3_limit sqlite3_api->limit #define sqlite3_next_stmt sqlite3_api->next_stmt #define sqlite3_sql sqlite3_api->sql #define sqlite3_status sqlite3_api->status #define sqlite3_backup_finish sqlite3_api->backup_finish #define sqlite3_backup_init sqlite3_api->backup_init #define sqlite3_backup_pagecount sqlite3_api->backup_pagecount #define sqlite3_backup_remaining sqlite3_api->backup_remaining #define sqlite3_backup_step sqlite3_api->backup_step #define sqlite3_compileoption_get sqlite3_api->compileoption_get #define sqlite3_compileoption_used sqlite3_api->compileoption_used #define sqlite3_create_function_v2 sqlite3_api->create_function_v2 #define sqlite3_db_config sqlite3_api->db_config #define sqlite3_db_mutex sqlite3_api->db_mutex #define sqlite3_db_status sqlite3_api->db_status #define sqlite3_extended_errcode sqlite3_api->extended_errcode #define sqlite3_log sqlite3_api->log #define sqlite3_soft_heap_limit64 sqlite3_api->soft_heap_limit64 #define sqlite3_sourceid sqlite3_api->sourceid #define sqlite3_stmt_status sqlite3_api->stmt_status #define sqlite3_strnicmp sqlite3_api->strnicmp #define sqlite3_unlock_notify sqlite3_api->unlock_notify #define sqlite3_wal_autocheckpoint sqlite3_api->wal_autocheckpoint #define sqlite3_wal_checkpoint sqlite3_api->wal_checkpoint #define sqlite3_wal_hook sqlite3_api->wal_hook #define sqlite3_blob_reopen sqlite3_api->blob_reopen #define sqlite3_vtab_config sqlite3_api->vtab_config #define sqlite3_vtab_on_conflict sqlite3_api->vtab_on_conflict /* Version 3.7.16 and later */ #define sqlite3_close_v2 sqlite3_api->close_v2 #define sqlite3_db_filename sqlite3_api->db_filename #define sqlite3_db_readonly sqlite3_api->db_readonly #define sqlite3_db_release_memory sqlite3_api->db_release_memory #define sqlite3_errstr sqlite3_api->errstr #define sqlite3_stmt_busy sqlite3_api->stmt_busy #define sqlite3_stmt_readonly sqlite3_api->stmt_readonly #define sqlite3_stricmp sqlite3_api->stricmp #define sqlite3_uri_boolean sqlite3_api->uri_boolean #define sqlite3_uri_int64 sqlite3_api->uri_int64 #define sqlite3_uri_parameter sqlite3_api->uri_parameter #define sqlite3_uri_vsnprintf sqlite3_api->xvsnprintf #define sqlite3_wal_checkpoint_v2 sqlite3_api->wal_checkpoint_v2 /* Version 3.8.7 and later */ #define sqlite3_auto_extension sqlite3_api->auto_extension #define sqlite3_bind_blob64 sqlite3_api->bind_blob64 #define sqlite3_bind_text64 sqlite3_api->bind_text64 #define sqlite3_cancel_auto_extension sqlite3_api->cancel_auto_extension #define sqlite3_load_extension sqlite3_api->load_extension #define sqlite3_malloc64 sqlite3_api->malloc64 #define sqlite3_msize sqlite3_api->msize #define sqlite3_realloc64 sqlite3_api->realloc64 #define sqlite3_reset_auto_extension sqlite3_api->reset_auto_extension #define sqlite3_result_blob64 sqlite3_api->result_blob64 #define sqlite3_result_text64 sqlite3_api->result_text64 #define sqlite3_strglob sqlite3_api->strglob /* Version 3.8.11 and later */ #define sqlite3_value_dup sqlite3_api->value_dup #define sqlite3_value_free sqlite3_api->value_free #define sqlite3_result_zeroblob64 sqlite3_api->result_zeroblob64 #define sqlite3_bind_zeroblob64 sqlite3_api->bind_zeroblob64 /* Version 3.9.0 and later */ #define sqlite3_value_subtype sqlite3_api->value_subtype #define sqlite3_result_subtype sqlite3_api->result_subtype /* Version 3.10.0 and later */ #define sqlite3_status64 sqlite3_api->status64 #define sqlite3_strlike sqlite3_api->strlike #define sqlite3_db_cacheflush sqlite3_api->db_cacheflush /* Version 3.12.0 and later */ #define sqlite3_system_errno sqlite3_api->system_errno /* Version 3.14.0 and later */ #define sqlite3_trace_v2 sqlite3_api->trace_v2 #define sqlite3_expanded_sql sqlite3_api->expanded_sql /* Version 3.18.0 and later */ #define sqlite3_set_last_insert_rowid sqlite3_api->set_last_insert_rowid /* Version 3.20.0 and later */ #define sqlite3_prepare_v3 sqlite3_api->prepare_v3 #define sqlite3_prepare16_v3 sqlite3_api->prepare16_v3 #define sqlite3_bind_pointer sqlite3_api->bind_pointer #define sqlite3_result_pointer sqlite3_api->result_pointer #define sqlite3_value_pointer sqlite3_api->value_pointer /* Version 3.22.0 and later */ #define sqlite3_vtab_nochange sqlite3_api->vtab_nochange #define sqlite3_value_nochange sqlite3_api->value_nochange #define sqlite3_vtab_collation sqlite3_api->vtab_collation /* Version 3.24.0 and later */ #define sqlite3_keyword_count sqlite3_api->keyword_count #define sqlite3_keyword_name sqlite3_api->keyword_name #define sqlite3_keyword_check sqlite3_api->keyword_check #define sqlite3_str_new sqlite3_api->str_new #define sqlite3_str_finish sqlite3_api->str_finish #define sqlite3_str_appendf sqlite3_api->str_appendf #define sqlite3_str_vappendf sqlite3_api->str_vappendf #define sqlite3_str_append sqlite3_api->str_append #define sqlite3_str_appendall sqlite3_api->str_appendall #define sqlite3_str_appendchar sqlite3_api->str_appendchar #define sqlite3_str_reset sqlite3_api->str_reset #define sqlite3_str_errcode sqlite3_api->str_errcode #define sqlite3_str_length sqlite3_api->str_length #define sqlite3_str_value sqlite3_api->str_value /* Version 3.25.0 and later */ #define sqlite3_create_window_function sqlite3_api->create_window_function /* Version 3.26.0 and later */ #define sqlite3_normalized_sql sqlite3_api->normalized_sql /* Version 3.28.0 and later */ #define sqlite3_stmt_isexplain sqlite3_api->stmt_isexplain #define sqlite3_value_frombind sqlite3_api->value_frombind /* Version 3.30.0 and later */ #define sqlite3_drop_modules sqlite3_api->drop_modules /* Version 3.31.0 and later */ #define sqlite3_hard_heap_limit64 sqlite3_api->hard_heap_limit64 #define sqlite3_uri_key sqlite3_api->uri_key #define sqlite3_filename_database sqlite3_api->filename_database #define sqlite3_filename_journal sqlite3_api->filename_journal #define sqlite3_filename_wal sqlite3_api->filename_wal /* Version 3.32.0 and later */ #define sqlite3_create_filename sqlite3_api->create_filename #define sqlite3_free_filename sqlite3_api->free_filename #define sqlite3_database_file_object sqlite3_api->database_file_object #endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */ #if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) /* This case when the file really is being compiled as a loadable ** extension */ # define SQLITE_EXTENSION_INIT1 const sqlite3_api_routines *sqlite3_api=0; # define SQLITE_EXTENSION_INIT2(v) sqlite3_api=v; # define SQLITE_EXTENSION_INIT3 \ extern const sqlite3_api_routines *sqlite3_api; #else /* This case when the file is being statically linked into the ** application */ # define SQLITE_EXTENSION_INIT1 /*no-op*/ # define SQLITE_EXTENSION_INIT2(v) (void)v; /* unused parameter */ # define SQLITE_EXTENSION_INIT3 /*no-op*/ #endif #endif /* SQLITE3EXT_H */ /************** End of sqlite3ext.h ******************************************/ /************** Continuing where we left off in loadext.c ********************/ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_LOAD_EXTENSION /* ** Some API routines are omitted when various features are ** excluded from a build of SQLite. Substitute a NULL pointer ** for any missing APIs. */ #ifndef SQLITE_ENABLE_COLUMN_METADATA # define sqlite3_column_database_name 0 # define sqlite3_column_database_name16 0 # define sqlite3_column_table_name 0 # define sqlite3_column_table_name16 0 # define sqlite3_column_origin_name 0 # define sqlite3_column_origin_name16 0 #endif #ifdef SQLITE_OMIT_AUTHORIZATION # define sqlite3_set_authorizer 0 #endif #ifdef SQLITE_OMIT_UTF16 # define sqlite3_bind_text16 0 # define sqlite3_collation_needed16 0 # define sqlite3_column_decltype16 0 # define sqlite3_column_name16 0 # define sqlite3_column_text16 0 # define sqlite3_complete16 0 # define sqlite3_create_collation16 0 # define sqlite3_create_function16 0 # define sqlite3_errmsg16 0 # define sqlite3_open16 0 # define sqlite3_prepare16 0 # define sqlite3_prepare16_v2 0 # define sqlite3_prepare16_v3 0 # define sqlite3_result_error16 0 # define sqlite3_result_text16 0 # define sqlite3_result_text16be 0 # define sqlite3_result_text16le 0 # define sqlite3_value_text16 0 # define sqlite3_value_text16be 0 # define sqlite3_value_text16le 0 # define sqlite3_column_database_name16 0 # define sqlite3_column_table_name16 0 # define sqlite3_column_origin_name16 0 #endif #ifdef SQLITE_OMIT_COMPLETE # define sqlite3_complete 0 # define sqlite3_complete16 0 #endif #ifdef SQLITE_OMIT_DECLTYPE # define sqlite3_column_decltype16 0 # define sqlite3_column_decltype 0 #endif #ifdef SQLITE_OMIT_PROGRESS_CALLBACK # define sqlite3_progress_handler 0 #endif #ifdef SQLITE_OMIT_VIRTUALTABLE # define sqlite3_create_module 0 # define sqlite3_create_module_v2 0 # define sqlite3_declare_vtab 0 # define sqlite3_vtab_config 0 # define sqlite3_vtab_on_conflict 0 # define sqlite3_vtab_collation 0 #endif #ifdef SQLITE_OMIT_SHARED_CACHE # define sqlite3_enable_shared_cache 0 #endif #if defined(SQLITE_OMIT_TRACE) || defined(SQLITE_OMIT_DEPRECATED) # define sqlite3_profile 0 # define sqlite3_trace 0 #endif #ifdef SQLITE_OMIT_GET_TABLE # define sqlite3_free_table 0 # define sqlite3_get_table 0 #endif #ifdef SQLITE_OMIT_INCRBLOB #define sqlite3_bind_zeroblob 0 #define sqlite3_blob_bytes 0 #define sqlite3_blob_close 0 #define sqlite3_blob_open 0 #define sqlite3_blob_read 0 #define sqlite3_blob_write 0 #define sqlite3_blob_reopen 0 #endif #if defined(SQLITE_OMIT_TRACE) # define sqlite3_trace_v2 0 #endif /* ** The following structure contains pointers to all SQLite API routines. ** A pointer to this structure is passed into extensions when they are ** loaded so that the extension can make calls back into the SQLite ** library. ** ** When adding new APIs, add them to the bottom of this structure ** in order to preserve backwards compatibility. ** ** Extensions that use newer APIs should first call the ** sqlite3_libversion_number() to make sure that the API they ** intend to use is supported by the library. Extensions should ** also check to make sure that the pointer to the function is ** not NULL before calling it. */ static const sqlite3_api_routines sqlite3Apis = { sqlite3_aggregate_context, #ifndef SQLITE_OMIT_DEPRECATED sqlite3_aggregate_count, #else 0, #endif sqlite3_bind_blob, sqlite3_bind_double, sqlite3_bind_int, sqlite3_bind_int64, sqlite3_bind_null, sqlite3_bind_parameter_count, sqlite3_bind_parameter_index, sqlite3_bind_parameter_name, sqlite3_bind_text, sqlite3_bind_text16, sqlite3_bind_value, sqlite3_busy_handler, sqlite3_busy_timeout, sqlite3_changes, sqlite3_close, sqlite3_collation_needed, sqlite3_collation_needed16, sqlite3_column_blob, sqlite3_column_bytes, sqlite3_column_bytes16, sqlite3_column_count, sqlite3_column_database_name, sqlite3_column_database_name16, sqlite3_column_decltype, sqlite3_column_decltype16, sqlite3_column_double, sqlite3_column_int, sqlite3_column_int64, sqlite3_column_name, sqlite3_column_name16, sqlite3_column_origin_name, sqlite3_column_origin_name16, sqlite3_column_table_name, sqlite3_column_table_name16, sqlite3_column_text, sqlite3_column_text16, sqlite3_column_type, sqlite3_column_value, sqlite3_commit_hook, sqlite3_complete, sqlite3_complete16, sqlite3_create_collation, sqlite3_create_collation16, sqlite3_create_function, sqlite3_create_function16, sqlite3_create_module, sqlite3_data_count, sqlite3_db_handle, sqlite3_declare_vtab, sqlite3_enable_shared_cache, sqlite3_errcode, sqlite3_errmsg, sqlite3_errmsg16, sqlite3_exec, #ifndef SQLITE_OMIT_DEPRECATED sqlite3_expired, #else 0, #endif sqlite3_finalize, sqlite3_free, sqlite3_free_table, sqlite3_get_autocommit, sqlite3_get_auxdata, sqlite3_get_table, 0, /* Was sqlite3_global_recover(), but that function is deprecated */ sqlite3_interrupt, sqlite3_last_insert_rowid, sqlite3_libversion, sqlite3_libversion_number, sqlite3_malloc, sqlite3_mprintf, sqlite3_open, sqlite3_open16, sqlite3_prepare, sqlite3_prepare16, sqlite3_profile, sqlite3_progress_handler, sqlite3_realloc, sqlite3_reset, sqlite3_result_blob, sqlite3_result_double, sqlite3_result_error, sqlite3_result_error16, sqlite3_result_int, sqlite3_result_int64, sqlite3_result_null, sqlite3_result_text, sqlite3_result_text16, sqlite3_result_text16be, sqlite3_result_text16le, sqlite3_result_value, sqlite3_rollback_hook, sqlite3_set_authorizer, sqlite3_set_auxdata, sqlite3_snprintf, sqlite3_step, sqlite3_table_column_metadata, #ifndef SQLITE_OMIT_DEPRECATED sqlite3_thread_cleanup, #else 0, #endif sqlite3_total_changes, sqlite3_trace, #ifndef SQLITE_OMIT_DEPRECATED sqlite3_transfer_bindings, #else 0, #endif sqlite3_update_hook, sqlite3_user_data, sqlite3_value_blob, sqlite3_value_bytes, sqlite3_value_bytes16, sqlite3_value_double, sqlite3_value_int, sqlite3_value_int64, sqlite3_value_numeric_type, sqlite3_value_text, sqlite3_value_text16, sqlite3_value_text16be, sqlite3_value_text16le, sqlite3_value_type, sqlite3_vmprintf, /* ** The original API set ends here. All extensions can call any ** of the APIs above provided that the pointer is not NULL. But ** before calling APIs that follow, extension should check the ** sqlite3_libversion_number() to make sure they are dealing with ** a library that is new enough to support that API. ************************************************************************* */ sqlite3_overload_function, /* ** Added after 3.3.13 */ sqlite3_prepare_v2, sqlite3_prepare16_v2, sqlite3_clear_bindings, /* ** Added for 3.4.1 */ sqlite3_create_module_v2, /* ** Added for 3.5.0 */ sqlite3_bind_zeroblob, sqlite3_blob_bytes, sqlite3_blob_close, sqlite3_blob_open, sqlite3_blob_read, sqlite3_blob_write, sqlite3_create_collation_v2, sqlite3_file_control, sqlite3_memory_highwater, sqlite3_memory_used, #ifdef SQLITE_MUTEX_OMIT 0, 0, 0, 0, 0, #else sqlite3_mutex_alloc, sqlite3_mutex_enter, sqlite3_mutex_free, sqlite3_mutex_leave, sqlite3_mutex_try, #endif sqlite3_open_v2, sqlite3_release_memory, sqlite3_result_error_nomem, sqlite3_result_error_toobig, sqlite3_sleep, sqlite3_soft_heap_limit, sqlite3_vfs_find, sqlite3_vfs_register, sqlite3_vfs_unregister, /* ** Added for 3.5.8 */ sqlite3_threadsafe, sqlite3_result_zeroblob, sqlite3_result_error_code, sqlite3_test_control, sqlite3_randomness, sqlite3_context_db_handle, /* ** Added for 3.6.0 */ sqlite3_extended_result_codes, sqlite3_limit, sqlite3_next_stmt, sqlite3_sql, sqlite3_status, /* ** Added for 3.7.4 */ sqlite3_backup_finish, sqlite3_backup_init, sqlite3_backup_pagecount, sqlite3_backup_remaining, sqlite3_backup_step, #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS sqlite3_compileoption_get, sqlite3_compileoption_used, #else 0, 0, #endif sqlite3_create_function_v2, sqlite3_db_config, sqlite3_db_mutex, sqlite3_db_status, sqlite3_extended_errcode, sqlite3_log, sqlite3_soft_heap_limit64, sqlite3_sourceid, sqlite3_stmt_status, sqlite3_strnicmp, #ifdef SQLITE_ENABLE_UNLOCK_NOTIFY sqlite3_unlock_notify, #else 0, #endif #ifndef SQLITE_OMIT_WAL sqlite3_wal_autocheckpoint, sqlite3_wal_checkpoint, sqlite3_wal_hook, #else 0, 0, 0, #endif sqlite3_blob_reopen, sqlite3_vtab_config, sqlite3_vtab_on_conflict, sqlite3_close_v2, sqlite3_db_filename, sqlite3_db_readonly, sqlite3_db_release_memory, sqlite3_errstr, sqlite3_stmt_busy, sqlite3_stmt_readonly, sqlite3_stricmp, sqlite3_uri_boolean, sqlite3_uri_int64, sqlite3_uri_parameter, sqlite3_vsnprintf, sqlite3_wal_checkpoint_v2, /* Version 3.8.7 and later */ sqlite3_auto_extension, sqlite3_bind_blob64, sqlite3_bind_text64, sqlite3_cancel_auto_extension, sqlite3_load_extension, sqlite3_malloc64, sqlite3_msize, sqlite3_realloc64, sqlite3_reset_auto_extension, sqlite3_result_blob64, sqlite3_result_text64, sqlite3_strglob, /* Version 3.8.11 and later */ (sqlite3_value*(*)(const sqlite3_value*))sqlite3_value_dup, sqlite3_value_free, sqlite3_result_zeroblob64, sqlite3_bind_zeroblob64, /* Version 3.9.0 and later */ sqlite3_value_subtype, sqlite3_result_subtype, /* Version 3.10.0 and later */ sqlite3_status64, sqlite3_strlike, sqlite3_db_cacheflush, /* Version 3.12.0 and later */ sqlite3_system_errno, /* Version 3.14.0 and later */ sqlite3_trace_v2, sqlite3_expanded_sql, /* Version 3.18.0 and later */ sqlite3_set_last_insert_rowid, /* Version 3.20.0 and later */ sqlite3_prepare_v3, sqlite3_prepare16_v3, sqlite3_bind_pointer, sqlite3_result_pointer, sqlite3_value_pointer, /* Version 3.22.0 and later */ sqlite3_vtab_nochange, sqlite3_value_nochange, sqlite3_vtab_collation, /* Version 3.24.0 and later */ sqlite3_keyword_count, sqlite3_keyword_name, sqlite3_keyword_check, sqlite3_str_new, sqlite3_str_finish, sqlite3_str_appendf, sqlite3_str_vappendf, sqlite3_str_append, sqlite3_str_appendall, sqlite3_str_appendchar, sqlite3_str_reset, sqlite3_str_errcode, sqlite3_str_length, sqlite3_str_value, /* Version 3.25.0 and later */ sqlite3_create_window_function, /* Version 3.26.0 and later */ #ifdef SQLITE_ENABLE_NORMALIZE sqlite3_normalized_sql, #else 0, #endif /* Version 3.28.0 and later */ sqlite3_stmt_isexplain, sqlite3_value_frombind, /* Version 3.30.0 and later */ #ifndef SQLITE_OMIT_VIRTUALTABLE sqlite3_drop_modules, #else 0, #endif /* Version 3.31.0 and later */ sqlite3_hard_heap_limit64, sqlite3_uri_key, sqlite3_filename_database, sqlite3_filename_journal, sqlite3_filename_wal, /* Version 3.32.0 and later */ sqlite3_create_filename, sqlite3_free_filename, sqlite3_database_file_object, }; /* True if x is the directory separator character */ #if SQLITE_OS_WIN # define DirSep(X) ((X)=='/'||(X)=='\\') #else # define DirSep(X) ((X)=='/') #endif /* ** Attempt to load an SQLite extension library contained in the file ** zFile. The entry point is zProc. zProc may be 0 in which case a ** default entry point name (sqlite3_extension_init) is used. Use ** of the default name is recommended. ** ** Return SQLITE_OK on success and SQLITE_ERROR if something goes wrong. ** ** If an error occurs and pzErrMsg is not 0, then fill *pzErrMsg with ** error message text. The calling function should free this memory ** by calling sqlite3DbFree(db, ). */ static int sqlite3LoadExtension( sqlite3 *db, /* Load the extension into this database connection */ const char *zFile, /* Name of the shared library containing extension */ const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ char **pzErrMsg /* Put error message here if not 0 */ ){ sqlite3_vfs *pVfs = db->pVfs; void *handle; sqlite3_loadext_entry xInit; char *zErrmsg = 0; const char *zEntry; char *zAltEntry = 0; void **aHandle; u64 nMsg = 300 + sqlite3Strlen30(zFile); int ii; int rc; /* Shared library endings to try if zFile cannot be loaded as written */ static const char *azEndings[] = { #if SQLITE_OS_WIN "dll" #elif defined(__APPLE__) "dylib" #else "so" #endif }; if( pzErrMsg ) *pzErrMsg = 0; /* Ticket #1863. To avoid a creating security problems for older ** applications that relink against newer versions of SQLite, the ** ability to run load_extension is turned off by default. One ** must call either sqlite3_enable_load_extension(db) or ** sqlite3_db_config(db, SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION, 1, 0) ** to turn on extension loading. */ if( (db->flags & SQLITE_LoadExtension)==0 ){ if( pzErrMsg ){ *pzErrMsg = sqlite3_mprintf("not authorized"); } return SQLITE_ERROR; } zEntry = zProc ? zProc : "sqlite3_extension_init"; handle = sqlite3OsDlOpen(pVfs, zFile); #if SQLITE_OS_UNIX || SQLITE_OS_WIN for(ii=0; ii sqlite3_example_init ** C:/lib/mathfuncs.dll ==> sqlite3_mathfuncs_init */ if( xInit==0 && zProc==0 ){ int iFile, iEntry, c; int ncFile = sqlite3Strlen30(zFile); zAltEntry = sqlite3_malloc64(ncFile+30); if( zAltEntry==0 ){ sqlite3OsDlClose(pVfs, handle); return SQLITE_NOMEM_BKPT; } memcpy(zAltEntry, "sqlite3_", 8); for(iFile=ncFile-1; iFile>=0 && !DirSep(zFile[iFile]); iFile--){} iFile++; if( sqlite3_strnicmp(zFile+iFile, "lib", 3)==0 ) iFile += 3; for(iEntry=8; (c = zFile[iFile])!=0 && c!='.'; iFile++){ if( sqlite3Isalpha(c) ){ zAltEntry[iEntry++] = (char)sqlite3UpperToLower[(unsigned)c]; } } memcpy(zAltEntry+iEntry, "_init", 6); zEntry = zAltEntry; xInit = (sqlite3_loadext_entry)sqlite3OsDlSym(pVfs, handle, zEntry); } if( xInit==0 ){ if( pzErrMsg ){ nMsg += sqlite3Strlen30(zEntry); *pzErrMsg = zErrmsg = sqlite3_malloc64(nMsg); if( zErrmsg ){ sqlite3_snprintf(nMsg, zErrmsg, "no entry point [%s] in shared library [%s]", zEntry, zFile); sqlite3OsDlError(pVfs, nMsg-1, zErrmsg); } } sqlite3OsDlClose(pVfs, handle); sqlite3_free(zAltEntry); return SQLITE_ERROR; } sqlite3_free(zAltEntry); rc = xInit(db, &zErrmsg, &sqlite3Apis); if( rc ){ if( rc==SQLITE_OK_LOAD_PERMANENTLY ) return SQLITE_OK; if( pzErrMsg ){ *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg); } sqlite3_free(zErrmsg); sqlite3OsDlClose(pVfs, handle); return SQLITE_ERROR; } /* Append the new shared library handle to the db->aExtension array. */ aHandle = sqlite3DbMallocZero(db, sizeof(handle)*(db->nExtension+1)); if( aHandle==0 ){ return SQLITE_NOMEM_BKPT; } if( db->nExtension>0 ){ memcpy(aHandle, db->aExtension, sizeof(handle)*db->nExtension); } sqlite3DbFree(db, db->aExtension); db->aExtension = aHandle; db->aExtension[db->nExtension++] = handle; return SQLITE_OK; } SQLITE_API int sqlite3_load_extension( sqlite3 *db, /* Load the extension into this database connection */ const char *zFile, /* Name of the shared library containing extension */ const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ char **pzErrMsg /* Put error message here if not 0 */ ){ int rc; sqlite3_mutex_enter(db->mutex); rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Call this routine when the database connection is closing in order ** to clean up loaded extensions */ SQLITE_PRIVATE void sqlite3CloseExtensions(sqlite3 *db){ int i; assert( sqlite3_mutex_held(db->mutex) ); for(i=0; inExtension; i++){ sqlite3OsDlClose(db->pVfs, db->aExtension[i]); } sqlite3DbFree(db, db->aExtension); } /* ** Enable or disable extension loading. Extension loading is disabled by ** default so as not to open security holes in older applications. */ SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff){ sqlite3_mutex_enter(db->mutex); if( onoff ){ db->flags |= SQLITE_LoadExtension|SQLITE_LoadExtFunc; }else{ db->flags &= ~(u64)(SQLITE_LoadExtension|SQLITE_LoadExtFunc); } sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #endif /* !defined(SQLITE_OMIT_LOAD_EXTENSION) */ /* ** The following object holds the list of automatically loaded ** extensions. ** ** This list is shared across threads. The SQLITE_MUTEX_STATIC_MAIN ** mutex must be held while accessing this list. */ typedef struct sqlite3AutoExtList sqlite3AutoExtList; static SQLITE_WSD struct sqlite3AutoExtList { u32 nExt; /* Number of entries in aExt[] */ void (**aExt)(void); /* Pointers to the extension init functions */ } sqlite3Autoext = { 0, 0 }; /* The "wsdAutoext" macro will resolve to the autoextension ** state vector. If writable static data is unsupported on the target, ** we have to locate the state vector at run-time. In the more common ** case where writable static data is supported, wsdStat can refer directly ** to the "sqlite3Autoext" state vector declared above. */ #ifdef SQLITE_OMIT_WSD # define wsdAutoextInit \ sqlite3AutoExtList *x = &GLOBAL(sqlite3AutoExtList,sqlite3Autoext) # define wsdAutoext x[0] #else # define wsdAutoextInit # define wsdAutoext sqlite3Autoext #endif /* ** Register a statically linked extension that is automatically ** loaded by every new database connection. */ SQLITE_API int sqlite3_auto_extension( void (*xInit)(void) ){ int rc = SQLITE_OK; #ifndef SQLITE_OMIT_AUTOINIT rc = sqlite3_initialize(); if( rc ){ return rc; }else #endif { u32 i; #if SQLITE_THREADSAFE sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); #endif wsdAutoextInit; sqlite3_mutex_enter(mutex); for(i=0; i=0; i--){ if( wsdAutoext.aExt[i]==xInit ){ wsdAutoext.nExt--; wsdAutoext.aExt[i] = wsdAutoext.aExt[wsdAutoext.nExt]; n++; break; } } sqlite3_mutex_leave(mutex); return n; } /* ** Reset the automatic extension loading mechanism. */ SQLITE_API void sqlite3_reset_auto_extension(void){ #ifndef SQLITE_OMIT_AUTOINIT if( sqlite3_initialize()==SQLITE_OK ) #endif { #if SQLITE_THREADSAFE sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); #endif wsdAutoextInit; sqlite3_mutex_enter(mutex); sqlite3_free(wsdAutoext.aExt); wsdAutoext.aExt = 0; wsdAutoext.nExt = 0; sqlite3_mutex_leave(mutex); } } /* ** Load all automatic extensions. ** ** If anything goes wrong, set an error in the database connection. */ SQLITE_PRIVATE void sqlite3AutoLoadExtensions(sqlite3 *db){ u32 i; int go = 1; int rc; sqlite3_loadext_entry xInit; wsdAutoextInit; if( wsdAutoext.nExt==0 ){ /* Common case: early out without every having to acquire a mutex */ return; } for(i=0; go; i++){ char *zErrmsg; #if SQLITE_THREADSAFE sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); #endif #ifdef SQLITE_OMIT_LOAD_EXTENSION const sqlite3_api_routines *pThunk = 0; #else const sqlite3_api_routines *pThunk = &sqlite3Apis; #endif sqlite3_mutex_enter(mutex); if( i>=wsdAutoext.nExt ){ xInit = 0; go = 0; }else{ xInit = (sqlite3_loadext_entry)wsdAutoext.aExt[i]; } sqlite3_mutex_leave(mutex); zErrmsg = 0; if( xInit && (rc = xInit(db, &zErrmsg, pThunk))!=0 ){ sqlite3ErrorWithMsg(db, rc, "automatic extension loading failed: %s", zErrmsg); go = 0; } sqlite3_free(zErrmsg); } } /************** End of loadext.c *********************************************/ /************** Begin file pragma.c ******************************************/ /* ** 2003 April 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to implement the PRAGMA command. */ /* #include "sqliteInt.h" */ #if !defined(SQLITE_ENABLE_LOCKING_STYLE) # if defined(__APPLE__) # define SQLITE_ENABLE_LOCKING_STYLE 1 # else # define SQLITE_ENABLE_LOCKING_STYLE 0 # endif #endif /*************************************************************************** ** The "pragma.h" include file is an automatically generated file that ** that includes the PragType_XXXX macro definitions and the aPragmaName[] ** object. This ensures that the aPragmaName[] table is arranged in ** lexicographical order to facility a binary search of the pragma name. ** Do not edit pragma.h directly. Edit and rerun the script in at ** ../tool/mkpragmatab.tcl. */ /************** Include pragma.h in the middle of pragma.c *******************/ /************** Begin file pragma.h ******************************************/ /* DO NOT EDIT! ** This file is automatically generated by the script at ** ../tool/mkpragmatab.tcl. To update the set of pragmas, edit ** that script and rerun it. */ /* The various pragma types */ #define PragTyp_ACTIVATE_EXTENSIONS 0 #define PragTyp_ANALYSIS_LIMIT 1 #define PragTyp_HEADER_VALUE 2 #define PragTyp_AUTO_VACUUM 3 #define PragTyp_FLAG 4 #define PragTyp_BUSY_TIMEOUT 5 #define PragTyp_CACHE_SIZE 6 #define PragTyp_CACHE_SPILL 7 #define PragTyp_CASE_SENSITIVE_LIKE 8 #define PragTyp_COLLATION_LIST 9 #define PragTyp_COMPILE_OPTIONS 10 #define PragTyp_DATA_STORE_DIRECTORY 11 #define PragTyp_DATABASE_LIST 12 #define PragTyp_DEFAULT_CACHE_SIZE 13 #define PragTyp_ENCODING 14 #define PragTyp_FOREIGN_KEY_CHECK 15 #define PragTyp_FOREIGN_KEY_LIST 16 #define PragTyp_FUNCTION_LIST 17 #define PragTyp_HARD_HEAP_LIMIT 18 #define PragTyp_INCREMENTAL_VACUUM 19 #define PragTyp_INDEX_INFO 20 #define PragTyp_INDEX_LIST 21 #define PragTyp_INTEGRITY_CHECK 22 #define PragTyp_JOURNAL_MODE 23 #define PragTyp_JOURNAL_SIZE_LIMIT 24 #define PragTyp_LOCK_PROXY_FILE 25 #define PragTyp_LOCKING_MODE 26 #define PragTyp_PAGE_COUNT 27 #define PragTyp_MMAP_SIZE 28 #define PragTyp_MODULE_LIST 29 #define PragTyp_OPTIMIZE 30 #define PragTyp_PAGE_SIZE 31 #define PragTyp_PRAGMA_LIST 32 #define PragTyp_SECURE_DELETE 33 #define PragTyp_SHRINK_MEMORY 34 #define PragTyp_SOFT_HEAP_LIMIT 35 #define PragTyp_SYNCHRONOUS 36 #define PragTyp_TABLE_INFO 37 #define PragTyp_TEMP_STORE 38 #define PragTyp_TEMP_STORE_DIRECTORY 39 #define PragTyp_THREADS 40 #define PragTyp_WAL_AUTOCHECKPOINT 41 #define PragTyp_WAL_CHECKPOINT 42 #define PragTyp_LOCK_STATUS 43 #define PragTyp_STATS 44 /* Property flags associated with various pragma. */ #define PragFlg_NeedSchema 0x01 /* Force schema load before running */ #define PragFlg_NoColumns 0x02 /* OP_ResultRow called with zero columns */ #define PragFlg_NoColumns1 0x04 /* zero columns if RHS argument is present */ #define PragFlg_ReadOnly 0x08 /* Read-only HEADER_VALUE */ #define PragFlg_Result0 0x10 /* Acts as query when no argument */ #define PragFlg_Result1 0x20 /* Acts as query when has one argument */ #define PragFlg_SchemaOpt 0x40 /* Schema restricts name search if present */ #define PragFlg_SchemaReq 0x80 /* Schema required - "main" is default */ /* Names of columns for pragmas that return multi-column result ** or that return single-column results where the name of the ** result column is different from the name of the pragma */ static const char *const pragCName[] = { /* 0 */ "id", /* Used by: foreign_key_list */ /* 1 */ "seq", /* 2 */ "table", /* 3 */ "from", /* 4 */ "to", /* 5 */ "on_update", /* 6 */ "on_delete", /* 7 */ "match", /* 8 */ "cid", /* Used by: table_xinfo */ /* 9 */ "name", /* 10 */ "type", /* 11 */ "notnull", /* 12 */ "dflt_value", /* 13 */ "pk", /* 14 */ "hidden", /* table_info reuses 8 */ /* 15 */ "seqno", /* Used by: index_xinfo */ /* 16 */ "cid", /* 17 */ "name", /* 18 */ "desc", /* 19 */ "coll", /* 20 */ "key", /* 21 */ "name", /* Used by: function_list */ /* 22 */ "builtin", /* 23 */ "type", /* 24 */ "enc", /* 25 */ "narg", /* 26 */ "flags", /* 27 */ "tbl", /* Used by: stats */ /* 28 */ "idx", /* 29 */ "wdth", /* 30 */ "hght", /* 31 */ "flgs", /* 32 */ "seq", /* Used by: index_list */ /* 33 */ "name", /* 34 */ "unique", /* 35 */ "origin", /* 36 */ "partial", /* 37 */ "table", /* Used by: foreign_key_check */ /* 38 */ "rowid", /* 39 */ "parent", /* 40 */ "fkid", /* index_info reuses 15 */ /* 41 */ "seq", /* Used by: database_list */ /* 42 */ "name", /* 43 */ "file", /* 44 */ "busy", /* Used by: wal_checkpoint */ /* 45 */ "log", /* 46 */ "checkpointed", /* collation_list reuses 32 */ /* 47 */ "database", /* Used by: lock_status */ /* 48 */ "status", /* 49 */ "cache_size", /* Used by: default_cache_size */ /* module_list pragma_list reuses 9 */ /* 50 */ "timeout", /* Used by: busy_timeout */ }; /* Definitions of all built-in pragmas */ typedef struct PragmaName { const char *const zName; /* Name of pragma */ u8 ePragTyp; /* PragTyp_XXX value */ u8 mPragFlg; /* Zero or more PragFlg_XXX values */ u8 iPragCName; /* Start of column names in pragCName[] */ u8 nPragCName; /* Num of col names. 0 means use pragma name */ u64 iArg; /* Extra argument */ } PragmaName; static const PragmaName aPragmaName[] = { #if defined(SQLITE_ENABLE_CEROD) {/* zName: */ "activate_extensions", /* ePragTyp: */ PragTyp_ACTIVATE_EXTENSIONS, /* ePragFlg: */ 0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif {/* zName: */ "analysis_limit", /* ePragTyp: */ PragTyp_ANALYSIS_LIMIT, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) {/* zName: */ "application_id", /* ePragTyp: */ PragTyp_HEADER_VALUE, /* ePragFlg: */ PragFlg_NoColumns1|PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ BTREE_APPLICATION_ID }, #endif #if !defined(SQLITE_OMIT_AUTOVACUUM) {/* zName: */ "auto_vacuum", /* ePragTyp: */ PragTyp_AUTO_VACUUM, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if !defined(SQLITE_OMIT_AUTOMATIC_INDEX) {/* zName: */ "automatic_index", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_AutoIndex }, #endif #endif {/* zName: */ "busy_timeout", /* ePragTyp: */ PragTyp_BUSY_TIMEOUT, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 50, 1, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "cache_size", /* ePragTyp: */ PragTyp_CACHE_SIZE, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "cache_spill", /* ePragTyp: */ PragTyp_CACHE_SPILL, /* ePragFlg: */ PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_CASE_SENSITIVE_LIKE_PRAGMA) {/* zName: */ "case_sensitive_like", /* ePragTyp: */ PragTyp_CASE_SENSITIVE_LIKE, /* ePragFlg: */ PragFlg_NoColumns, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif {/* zName: */ "cell_size_check", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_CellSizeCk }, #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "checkpoint_fullfsync", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_CkptFullFSync }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) {/* zName: */ "collation_list", /* ePragTyp: */ PragTyp_COLLATION_LIST, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 32, 2, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_COMPILEOPTION_DIAGS) {/* zName: */ "compile_options", /* ePragTyp: */ PragTyp_COMPILE_OPTIONS, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "count_changes", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_CountRows }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && SQLITE_OS_WIN {/* zName: */ "data_store_directory", /* ePragTyp: */ PragTyp_DATA_STORE_DIRECTORY, /* ePragFlg: */ PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) {/* zName: */ "data_version", /* ePragTyp: */ PragTyp_HEADER_VALUE, /* ePragFlg: */ PragFlg_ReadOnly|PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ BTREE_DATA_VERSION }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) {/* zName: */ "database_list", /* ePragTyp: */ PragTyp_DATABASE_LIST, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0, /* ColNames: */ 41, 3, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && !defined(SQLITE_OMIT_DEPRECATED) {/* zName: */ "default_cache_size", /* ePragTyp: */ PragTyp_DEFAULT_CACHE_SIZE, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 49, 1, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) {/* zName: */ "defer_foreign_keys", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_DeferFKs }, #endif #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "empty_result_callbacks", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_NullCallback }, #endif #if !defined(SQLITE_OMIT_UTF16) {/* zName: */ "encoding", /* ePragTyp: */ PragTyp_ENCODING, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) {/* zName: */ "foreign_key_check", /* ePragTyp: */ PragTyp_FOREIGN_KEY_CHECK, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 37, 4, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FOREIGN_KEY) {/* zName: */ "foreign_key_list", /* ePragTyp: */ PragTyp_FOREIGN_KEY_LIST, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 0, 8, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if !defined(SQLITE_OMIT_FOREIGN_KEY) && !defined(SQLITE_OMIT_TRIGGER) {/* zName: */ "foreign_keys", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_ForeignKeys }, #endif #endif #if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) {/* zName: */ "freelist_count", /* ePragTyp: */ PragTyp_HEADER_VALUE, /* ePragFlg: */ PragFlg_ReadOnly|PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ BTREE_FREE_PAGE_COUNT }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "full_column_names", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_FullColNames }, {/* zName: */ "fullfsync", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_FullFSync }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) #if !defined(SQLITE_OMIT_INTROSPECTION_PRAGMAS) {/* zName: */ "function_list", /* ePragTyp: */ PragTyp_FUNCTION_LIST, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 21, 6, /* iArg: */ 0 }, #endif #endif {/* zName: */ "hard_heap_limit", /* ePragTyp: */ PragTyp_HARD_HEAP_LIMIT, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if !defined(SQLITE_OMIT_CHECK) {/* zName: */ "ignore_check_constraints", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_IgnoreChecks }, #endif #endif #if !defined(SQLITE_OMIT_AUTOVACUUM) {/* zName: */ "incremental_vacuum", /* ePragTyp: */ PragTyp_INCREMENTAL_VACUUM, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_NoColumns, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) {/* zName: */ "index_info", /* ePragTyp: */ PragTyp_INDEX_INFO, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 15, 3, /* iArg: */ 0 }, {/* zName: */ "index_list", /* ePragTyp: */ PragTyp_INDEX_LIST, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 32, 5, /* iArg: */ 0 }, {/* zName: */ "index_xinfo", /* ePragTyp: */ PragTyp_INDEX_INFO, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 15, 6, /* iArg: */ 1 }, #endif #if !defined(SQLITE_OMIT_INTEGRITY_CHECK) {/* zName: */ "integrity_check", /* ePragTyp: */ PragTyp_INTEGRITY_CHECK, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_Result1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "journal_mode", /* ePragTyp: */ PragTyp_JOURNAL_MODE, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "journal_size_limit", /* ePragTyp: */ PragTyp_JOURNAL_SIZE_LIMIT, /* ePragFlg: */ PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "legacy_alter_table", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_LegacyAlter }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && SQLITE_ENABLE_LOCKING_STYLE {/* zName: */ "lock_proxy_file", /* ePragTyp: */ PragTyp_LOCK_PROXY_FILE, /* ePragFlg: */ PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) {/* zName: */ "lock_status", /* ePragTyp: */ PragTyp_LOCK_STATUS, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 47, 2, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "locking_mode", /* ePragTyp: */ PragTyp_LOCKING_MODE, /* ePragFlg: */ PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "max_page_count", /* ePragTyp: */ PragTyp_PAGE_COUNT, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "mmap_size", /* ePragTyp: */ PragTyp_MMAP_SIZE, /* ePragFlg: */ 0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) #if !defined(SQLITE_OMIT_VIRTUALTABLE) #if !defined(SQLITE_OMIT_INTROSPECTION_PRAGMAS) {/* zName: */ "module_list", /* ePragTyp: */ PragTyp_MODULE_LIST, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 9, 1, /* iArg: */ 0 }, #endif #endif #endif {/* zName: */ "optimize", /* ePragTyp: */ PragTyp_OPTIMIZE, /* ePragFlg: */ PragFlg_Result1|PragFlg_NeedSchema, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "page_count", /* ePragTyp: */ PragTyp_PAGE_COUNT, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "page_size", /* ePragTyp: */ PragTyp_PAGE_SIZE, /* ePragFlg: */ PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if defined(SQLITE_DEBUG) {/* zName: */ "parser_trace", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_ParserTrace }, #endif #endif #if !defined(SQLITE_OMIT_INTROSPECTION_PRAGMAS) {/* zName: */ "pragma_list", /* ePragTyp: */ PragTyp_PRAGMA_LIST, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 9, 1, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "query_only", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_QueryOnly }, #endif #if !defined(SQLITE_OMIT_INTEGRITY_CHECK) {/* zName: */ "quick_check", /* ePragTyp: */ PragTyp_INTEGRITY_CHECK, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_Result1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "read_uncommitted", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_ReadUncommit }, {/* zName: */ "recursive_triggers", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_RecTriggers }, {/* zName: */ "reverse_unordered_selects", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_ReverseOrder }, #endif #if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) {/* zName: */ "schema_version", /* ePragTyp: */ PragTyp_HEADER_VALUE, /* ePragFlg: */ PragFlg_NoColumns1|PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ BTREE_SCHEMA_VERSION }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "secure_delete", /* ePragTyp: */ PragTyp_SECURE_DELETE, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "short_column_names", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_ShortColNames }, #endif {/* zName: */ "shrink_memory", /* ePragTyp: */ PragTyp_SHRINK_MEMORY, /* ePragFlg: */ PragFlg_NoColumns, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "soft_heap_limit", /* ePragTyp: */ PragTyp_SOFT_HEAP_LIMIT, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if defined(SQLITE_DEBUG) {/* zName: */ "sql_trace", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_SqlTrace }, #endif #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) && defined(SQLITE_DEBUG) {/* zName: */ "stats", /* ePragTyp: */ PragTyp_STATS, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq, /* ColNames: */ 27, 5, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "synchronous", /* ePragTyp: */ PragTyp_SYNCHRONOUS, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result0|PragFlg_SchemaReq|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_SCHEMA_PRAGMAS) {/* zName: */ "table_info", /* ePragTyp: */ PragTyp_TABLE_INFO, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 8, 6, /* iArg: */ 0 }, {/* zName: */ "table_xinfo", /* ePragTyp: */ PragTyp_TABLE_INFO, /* ePragFlg: */ PragFlg_NeedSchema|PragFlg_Result1|PragFlg_SchemaOpt, /* ColNames: */ 8, 7, /* iArg: */ 1 }, #endif #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) {/* zName: */ "temp_store", /* ePragTyp: */ PragTyp_TEMP_STORE, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "temp_store_directory", /* ePragTyp: */ PragTyp_TEMP_STORE_DIRECTORY, /* ePragFlg: */ PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #endif {/* zName: */ "threads", /* ePragTyp: */ PragTyp_THREADS, /* ePragFlg: */ PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "trusted_schema", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_TrustedSchema }, #endif #if !defined(SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS) {/* zName: */ "user_version", /* ePragTyp: */ PragTyp_HEADER_VALUE, /* ePragFlg: */ PragFlg_NoColumns1|PragFlg_Result0, /* ColNames: */ 0, 0, /* iArg: */ BTREE_USER_VERSION }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) #if defined(SQLITE_DEBUG) {/* zName: */ "vdbe_addoptrace", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_VdbeAddopTrace }, {/* zName: */ "vdbe_debug", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_SqlTrace|SQLITE_VdbeListing|SQLITE_VdbeTrace }, {/* zName: */ "vdbe_eqp", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_VdbeEQP }, {/* zName: */ "vdbe_listing", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_VdbeListing }, {/* zName: */ "vdbe_trace", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_VdbeTrace }, #endif #endif #if !defined(SQLITE_OMIT_WAL) {/* zName: */ "wal_autocheckpoint", /* ePragTyp: */ PragTyp_WAL_AUTOCHECKPOINT, /* ePragFlg: */ 0, /* ColNames: */ 0, 0, /* iArg: */ 0 }, {/* zName: */ "wal_checkpoint", /* ePragTyp: */ PragTyp_WAL_CHECKPOINT, /* ePragFlg: */ PragFlg_NeedSchema, /* ColNames: */ 44, 3, /* iArg: */ 0 }, #endif #if !defined(SQLITE_OMIT_FLAG_PRAGMAS) {/* zName: */ "writable_schema", /* ePragTyp: */ PragTyp_FLAG, /* ePragFlg: */ PragFlg_Result0|PragFlg_NoColumns1, /* ColNames: */ 0, 0, /* iArg: */ SQLITE_WriteSchema|SQLITE_NoSchemaError }, #endif }; /* Number of pragmas: 67 on by default, 77 total. */ /************** End of pragma.h **********************************************/ /************** Continuing where we left off in pragma.c *********************/ /* ** Interpret the given string as a safety level. Return 0 for OFF, ** 1 for ON or NORMAL, 2 for FULL, and 3 for EXTRA. Return 1 for an empty or ** unrecognized string argument. The FULL and EXTRA option is disallowed ** if the omitFull parameter it 1. ** ** Note that the values returned are one less that the values that ** should be passed into sqlite3BtreeSetSafetyLevel(). The is done ** to support legacy SQL code. The safety level used to be boolean ** and older scripts may have used numbers 0 for OFF and 1 for ON. */ static u8 getSafetyLevel(const char *z, int omitFull, u8 dflt){ /* 123456789 123456789 123 */ static const char zText[] = "onoffalseyestruextrafull"; static const u8 iOffset[] = {0, 1, 2, 4, 9, 12, 15, 20}; static const u8 iLength[] = {2, 2, 3, 5, 3, 4, 5, 4}; static const u8 iValue[] = {1, 0, 0, 0, 1, 1, 3, 2}; /* on no off false yes true extra full */ int i, n; if( sqlite3Isdigit(*z) ){ return (u8)sqlite3Atoi(z); } n = sqlite3Strlen30(z); for(i=0; i=0&&i<=2)?i:0); } #endif /* ifndef SQLITE_OMIT_AUTOVACUUM */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* ** Interpret the given string as a temp db location. Return 1 for file ** backed temporary databases, 2 for the Red-Black tree in memory database ** and 0 to use the compile-time default. */ static int getTempStore(const char *z){ if( z[0]>='0' && z[0]<='2' ){ return z[0] - '0'; }else if( sqlite3StrICmp(z, "file")==0 ){ return 1; }else if( sqlite3StrICmp(z, "memory")==0 ){ return 2; }else{ return 0; } } #endif /* SQLITE_PAGER_PRAGMAS */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* ** Invalidate temp storage, either when the temp storage is changed ** from default, or when 'file' and the temp_store_directory has changed */ static int invalidateTempStorage(Parse *pParse){ sqlite3 *db = pParse->db; if( db->aDb[1].pBt!=0 ){ if( !db->autoCommit || sqlite3BtreeIsInReadTrans(db->aDb[1].pBt) ){ sqlite3ErrorMsg(pParse, "temporary storage cannot be changed " "from within a transaction"); return SQLITE_ERROR; } sqlite3BtreeClose(db->aDb[1].pBt); db->aDb[1].pBt = 0; sqlite3ResetAllSchemasOfConnection(db); } return SQLITE_OK; } #endif /* SQLITE_PAGER_PRAGMAS */ #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* ** If the TEMP database is open, close it and mark the database schema ** as needing reloading. This must be done when using the SQLITE_TEMP_STORE ** or DEFAULT_TEMP_STORE pragmas. */ static int changeTempStorage(Parse *pParse, const char *zStorageType){ int ts = getTempStore(zStorageType); sqlite3 *db = pParse->db; if( db->temp_store==ts ) return SQLITE_OK; if( invalidateTempStorage( pParse ) != SQLITE_OK ){ return SQLITE_ERROR; } db->temp_store = (u8)ts; return SQLITE_OK; } #endif /* SQLITE_PAGER_PRAGMAS */ /* ** Set result column names for a pragma. */ static void setPragmaResultColumnNames( Vdbe *v, /* The query under construction */ const PragmaName *pPragma /* The pragma */ ){ u8 n = pPragma->nPragCName; sqlite3VdbeSetNumCols(v, n==0 ? 1 : n); if( n==0 ){ sqlite3VdbeSetColName(v, 0, COLNAME_NAME, pPragma->zName, SQLITE_STATIC); }else{ int i, j; for(i=0, j=pPragma->iPragCName; iautoCommit ){ Db *pDb = db->aDb; int n = db->nDb; assert( SQLITE_FullFSync==PAGER_FULLFSYNC ); assert( SQLITE_CkptFullFSync==PAGER_CKPT_FULLFSYNC ); assert( SQLITE_CacheSpill==PAGER_CACHESPILL ); assert( (PAGER_FULLFSYNC | PAGER_CKPT_FULLFSYNC | PAGER_CACHESPILL) == PAGER_FLAGS_MASK ); assert( (pDb->safety_level & PAGER_SYNCHRONOUS_MASK)==pDb->safety_level ); while( (n--) > 0 ){ if( pDb->pBt ){ sqlite3BtreeSetPagerFlags(pDb->pBt, pDb->safety_level | (db->flags & PAGER_FLAGS_MASK) ); } pDb++; } } } #else # define setAllPagerFlags(X) /* no-op */ #endif /* ** Return a human-readable name for a constraint resolution action. */ #ifndef SQLITE_OMIT_FOREIGN_KEY static const char *actionName(u8 action){ const char *zName; switch( action ){ case OE_SetNull: zName = "SET NULL"; break; case OE_SetDflt: zName = "SET DEFAULT"; break; case OE_Cascade: zName = "CASCADE"; break; case OE_Restrict: zName = "RESTRICT"; break; default: zName = "NO ACTION"; assert( action==OE_None ); break; } return zName; } #endif /* ** Parameter eMode must be one of the PAGER_JOURNALMODE_XXX constants ** defined in pager.h. This function returns the associated lowercase ** journal-mode name. */ SQLITE_PRIVATE const char *sqlite3JournalModename(int eMode){ static char * const azModeName[] = { "delete", "persist", "off", "truncate", "memory" #ifndef SQLITE_OMIT_WAL , "wal" #endif }; assert( PAGER_JOURNALMODE_DELETE==0 ); assert( PAGER_JOURNALMODE_PERSIST==1 ); assert( PAGER_JOURNALMODE_OFF==2 ); assert( PAGER_JOURNALMODE_TRUNCATE==3 ); assert( PAGER_JOURNALMODE_MEMORY==4 ); assert( PAGER_JOURNALMODE_WAL==5 ); assert( eMode>=0 && eMode<=ArraySize(azModeName) ); if( eMode==ArraySize(azModeName) ) return 0; return azModeName[eMode]; } /* ** Locate a pragma in the aPragmaName[] array. */ static const PragmaName *pragmaLocate(const char *zName){ int upr, lwr, mid = 0, rc; lwr = 0; upr = ArraySize(aPragmaName)-1; while( lwr<=upr ){ mid = (lwr+upr)/2; rc = sqlite3_stricmp(zName, aPragmaName[mid].zName); if( rc==0 ) break; if( rc<0 ){ upr = mid - 1; }else{ lwr = mid + 1; } } return lwr>upr ? 0 : &aPragmaName[mid]; } /* ** Create zero or more entries in the output for the SQL functions ** defined by FuncDef p. */ static void pragmaFunclistLine( Vdbe *v, /* The prepared statement being created */ FuncDef *p, /* A particular function definition */ int isBuiltin, /* True if this is a built-in function */ int showInternFuncs /* True if showing internal functions */ ){ for(; p; p=p->pNext){ const char *zType; static const u32 mask = SQLITE_DETERMINISTIC | SQLITE_DIRECTONLY | SQLITE_SUBTYPE | SQLITE_INNOCUOUS | SQLITE_FUNC_INTERNAL ; static const char *azEnc[] = { 0, "utf8", "utf16le", "utf16be" }; assert( SQLITE_FUNC_ENCMASK==0x3 ); assert( strcmp(azEnc[SQLITE_UTF8],"utf8")==0 ); assert( strcmp(azEnc[SQLITE_UTF16LE],"utf16le")==0 ); assert( strcmp(azEnc[SQLITE_UTF16BE],"utf16be")==0 ); if( p->xSFunc==0 ) continue; if( (p->funcFlags & SQLITE_FUNC_INTERNAL)!=0 && showInternFuncs==0 ){ continue; } if( p->xValue!=0 ){ zType = "w"; }else if( p->xFinalize!=0 ){ zType = "a"; }else{ zType = "s"; } sqlite3VdbeMultiLoad(v, 1, "sissii", p->zName, isBuiltin, zType, azEnc[p->funcFlags&SQLITE_FUNC_ENCMASK], p->nArg, (p->funcFlags & mask) ^ SQLITE_INNOCUOUS ); } } /* ** Helper subroutine for PRAGMA integrity_check: ** ** Generate code to output a single-column result row with a value of the ** string held in register 3. Decrement the result count in register 1 ** and halt if the maximum number of result rows have been issued. */ static int integrityCheckResultRow(Vdbe *v){ int addr; sqlite3VdbeAddOp2(v, OP_ResultRow, 3, 1); addr = sqlite3VdbeAddOp3(v, OP_IfPos, 1, sqlite3VdbeCurrentAddr(v)+2, 1); VdbeCoverage(v); sqlite3VdbeAddOp0(v, OP_Halt); return addr; } /* ** Process a pragma statement. ** ** Pragmas are of this form: ** ** PRAGMA [schema.]id [= value] ** ** The identifier might also be a string. The value is a string, and ** identifier, or a number. If minusFlag is true, then the value is ** a number that was preceded by a minus sign. ** ** If the left side is "database.id" then pId1 is the database name ** and pId2 is the id. If the left side is just "id" then pId1 is the ** id and pId2 is any empty string. */ SQLITE_PRIVATE void sqlite3Pragma( Parse *pParse, Token *pId1, /* First part of [schema.]id field */ Token *pId2, /* Second part of [schema.]id field, or NULL */ Token *pValue, /* Token for , or NULL */ int minusFlag /* True if a '-' sign preceded */ ){ char *zLeft = 0; /* Nul-terminated UTF-8 string */ char *zRight = 0; /* Nul-terminated UTF-8 string , or NULL */ const char *zDb = 0; /* The database name */ Token *pId; /* Pointer to token */ char *aFcntl[4]; /* Argument to SQLITE_FCNTL_PRAGMA */ int iDb; /* Database index for */ int rc; /* return value form SQLITE_FCNTL_PRAGMA */ sqlite3 *db = pParse->db; /* The database connection */ Db *pDb; /* The specific database being pragmaed */ Vdbe *v = sqlite3GetVdbe(pParse); /* Prepared statement */ const PragmaName *pPragma; /* The pragma */ if( v==0 ) return; sqlite3VdbeRunOnlyOnce(v); pParse->nMem = 2; /* Interpret the [schema.] part of the pragma statement. iDb is the ** index of the database this pragma is being applied to in db.aDb[]. */ iDb = sqlite3TwoPartName(pParse, pId1, pId2, &pId); if( iDb<0 ) return; pDb = &db->aDb[iDb]; /* If the temp database has been explicitly named as part of the ** pragma, make sure it is open. */ if( iDb==1 && sqlite3OpenTempDatabase(pParse) ){ return; } zLeft = sqlite3NameFromToken(db, pId); if( !zLeft ) return; if( minusFlag ){ zRight = sqlite3MPrintf(db, "-%T", pValue); }else{ zRight = sqlite3NameFromToken(db, pValue); } assert( pId2 ); zDb = pId2->n>0 ? pDb->zDbSName : 0; if( sqlite3AuthCheck(pParse, SQLITE_PRAGMA, zLeft, zRight, zDb) ){ goto pragma_out; } /* Send an SQLITE_FCNTL_PRAGMA file-control to the underlying VFS ** connection. If it returns SQLITE_OK, then assume that the VFS ** handled the pragma and generate a no-op prepared statement. ** ** IMPLEMENTATION-OF: R-12238-55120 Whenever a PRAGMA statement is parsed, ** an SQLITE_FCNTL_PRAGMA file control is sent to the open sqlite3_file ** object corresponding to the database file to which the pragma ** statement refers. ** ** IMPLEMENTATION-OF: R-29875-31678 The argument to the SQLITE_FCNTL_PRAGMA ** file control is an array of pointers to strings (char**) in which the ** second element of the array is the name of the pragma and the third ** element is the argument to the pragma or NULL if the pragma has no ** argument. */ aFcntl[0] = 0; aFcntl[1] = zLeft; aFcntl[2] = zRight; aFcntl[3] = 0; db->busyHandler.nBusy = 0; rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_PRAGMA, (void*)aFcntl); if( rc==SQLITE_OK ){ sqlite3VdbeSetNumCols(v, 1); sqlite3VdbeSetColName(v, 0, COLNAME_NAME, aFcntl[0], SQLITE_TRANSIENT); returnSingleText(v, aFcntl[0]); sqlite3_free(aFcntl[0]); goto pragma_out; } if( rc!=SQLITE_NOTFOUND ){ if( aFcntl[0] ){ sqlite3ErrorMsg(pParse, "%s", aFcntl[0]); sqlite3_free(aFcntl[0]); } pParse->nErr++; pParse->rc = rc; goto pragma_out; } /* Locate the pragma in the lookup table */ pPragma = pragmaLocate(zLeft); if( pPragma==0 ) goto pragma_out; /* Make sure the database schema is loaded if the pragma requires that */ if( (pPragma->mPragFlg & PragFlg_NeedSchema)!=0 ){ if( sqlite3ReadSchema(pParse) ) goto pragma_out; } /* Register the result column names for pragmas that return results */ if( (pPragma->mPragFlg & PragFlg_NoColumns)==0 && ((pPragma->mPragFlg & PragFlg_NoColumns1)==0 || zRight==0) ){ setPragmaResultColumnNames(v, pPragma); } /* Jump to the appropriate pragma handler */ switch( pPragma->ePragTyp ){ #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) && !defined(SQLITE_OMIT_DEPRECATED) /* ** PRAGMA [schema.]default_cache_size ** PRAGMA [schema.]default_cache_size=N ** ** The first form reports the current persistent setting for the ** page cache size. The value returned is the maximum number of ** pages in the page cache. The second form sets both the current ** page cache size value and the persistent page cache size value ** stored in the database file. ** ** Older versions of SQLite would set the default cache size to a ** negative number to indicate synchronous=OFF. These days, synchronous ** is always on by default regardless of the sign of the default cache ** size. But continue to take the absolute value of the default cache ** size of historical compatibility. */ case PragTyp_DEFAULT_CACHE_SIZE: { static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList getCacheSize[] = { { OP_Transaction, 0, 0, 0}, /* 0 */ { OP_ReadCookie, 0, 1, BTREE_DEFAULT_CACHE_SIZE}, /* 1 */ { OP_IfPos, 1, 8, 0}, { OP_Integer, 0, 2, 0}, { OP_Subtract, 1, 2, 1}, { OP_IfPos, 1, 8, 0}, { OP_Integer, 0, 1, 0}, /* 6 */ { OP_Noop, 0, 0, 0}, { OP_ResultRow, 1, 1, 0}, }; VdbeOp *aOp; sqlite3VdbeUsesBtree(v, iDb); if( !zRight ){ pParse->nMem += 2; sqlite3VdbeVerifyNoMallocRequired(v, ArraySize(getCacheSize)); aOp = sqlite3VdbeAddOpList(v, ArraySize(getCacheSize), getCacheSize, iLn); if( ONLY_IF_REALLOC_STRESS(aOp==0) ) break; aOp[0].p1 = iDb; aOp[1].p1 = iDb; aOp[6].p1 = SQLITE_DEFAULT_CACHE_SIZE; }else{ int size = sqlite3AbsInt32(sqlite3Atoi(zRight)); sqlite3BeginWriteOperation(pParse, 0, iDb); sqlite3VdbeAddOp3(v, OP_SetCookie, iDb, BTREE_DEFAULT_CACHE_SIZE, size); assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); pDb->pSchema->cache_size = size; sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size); } break; } #endif /* !SQLITE_OMIT_PAGER_PRAGMAS && !SQLITE_OMIT_DEPRECATED */ #if !defined(SQLITE_OMIT_PAGER_PRAGMAS) /* ** PRAGMA [schema.]page_size ** PRAGMA [schema.]page_size=N ** ** The first form reports the current setting for the ** database page size in bytes. The second form sets the ** database page size value. The value can only be set if ** the database has not yet been created. */ case PragTyp_PAGE_SIZE: { Btree *pBt = pDb->pBt; assert( pBt!=0 ); if( !zRight ){ int size = ALWAYS(pBt) ? sqlite3BtreeGetPageSize(pBt) : 0; returnSingleInt(v, size); }else{ /* Malloc may fail when setting the page-size, as there is an internal ** buffer that the pager module resizes using sqlite3_realloc(). */ db->nextPagesize = sqlite3Atoi(zRight); if( SQLITE_NOMEM==sqlite3BtreeSetPageSize(pBt, db->nextPagesize,0,0) ){ sqlite3OomFault(db); } } break; } /* ** PRAGMA [schema.]secure_delete ** PRAGMA [schema.]secure_delete=ON/OFF/FAST ** ** The first form reports the current setting for the ** secure_delete flag. The second form changes the secure_delete ** flag setting and reports the new value. */ case PragTyp_SECURE_DELETE: { Btree *pBt = pDb->pBt; int b = -1; assert( pBt!=0 ); if( zRight ){ if( sqlite3_stricmp(zRight, "fast")==0 ){ b = 2; }else{ b = sqlite3GetBoolean(zRight, 0); } } if( pId2->n==0 && b>=0 ){ int ii; for(ii=0; iinDb; ii++){ sqlite3BtreeSecureDelete(db->aDb[ii].pBt, b); } } b = sqlite3BtreeSecureDelete(pBt, b); returnSingleInt(v, b); break; } /* ** PRAGMA [schema.]max_page_count ** PRAGMA [schema.]max_page_count=N ** ** The first form reports the current setting for the ** maximum number of pages in the database file. The ** second form attempts to change this setting. Both ** forms return the current setting. ** ** The absolute value of N is used. This is undocumented and might ** change. The only purpose is to provide an easy way to test ** the sqlite3AbsInt32() function. ** ** PRAGMA [schema.]page_count ** ** Return the number of pages in the specified database. */ case PragTyp_PAGE_COUNT: { int iReg; i64 x = 0; sqlite3CodeVerifySchema(pParse, iDb); iReg = ++pParse->nMem; if( sqlite3Tolower(zLeft[0])=='p' ){ sqlite3VdbeAddOp2(v, OP_Pagecount, iDb, iReg); }else{ if( zRight && sqlite3DecOrHexToI64(zRight,&x)==0 ){ if( x<0 ) x = 0; else if( x>0xfffffffe ) x = 0xfffffffe; }else{ x = 0; } sqlite3VdbeAddOp3(v, OP_MaxPgcnt, iDb, iReg, (int)x); } sqlite3VdbeAddOp2(v, OP_ResultRow, iReg, 1); break; } /* ** PRAGMA [schema.]locking_mode ** PRAGMA [schema.]locking_mode = (normal|exclusive) */ case PragTyp_LOCKING_MODE: { const char *zRet = "normal"; int eMode = getLockingMode(zRight); if( pId2->n==0 && eMode==PAGER_LOCKINGMODE_QUERY ){ /* Simple "PRAGMA locking_mode;" statement. This is a query for ** the current default locking mode (which may be different to ** the locking-mode of the main database). */ eMode = db->dfltLockMode; }else{ Pager *pPager; if( pId2->n==0 ){ /* This indicates that no database name was specified as part ** of the PRAGMA command. In this case the locking-mode must be ** set on all attached databases, as well as the main db file. ** ** Also, the sqlite3.dfltLockMode variable is set so that ** any subsequently attached databases also use the specified ** locking mode. */ int ii; assert(pDb==&db->aDb[0]); for(ii=2; iinDb; ii++){ pPager = sqlite3BtreePager(db->aDb[ii].pBt); sqlite3PagerLockingMode(pPager, eMode); } db->dfltLockMode = (u8)eMode; } pPager = sqlite3BtreePager(pDb->pBt); eMode = sqlite3PagerLockingMode(pPager, eMode); } assert( eMode==PAGER_LOCKINGMODE_NORMAL || eMode==PAGER_LOCKINGMODE_EXCLUSIVE ); if( eMode==PAGER_LOCKINGMODE_EXCLUSIVE ){ zRet = "exclusive"; } returnSingleText(v, zRet); break; } /* ** PRAGMA [schema.]journal_mode ** PRAGMA [schema.]journal_mode = ** (delete|persist|off|truncate|memory|wal|off) */ case PragTyp_JOURNAL_MODE: { int eMode; /* One of the PAGER_JOURNALMODE_XXX symbols */ int ii; /* Loop counter */ if( zRight==0 ){ /* If there is no "=MODE" part of the pragma, do a query for the ** current mode */ eMode = PAGER_JOURNALMODE_QUERY; }else{ const char *zMode; int n = sqlite3Strlen30(zRight); for(eMode=0; (zMode = sqlite3JournalModename(eMode))!=0; eMode++){ if( sqlite3StrNICmp(zRight, zMode, n)==0 ) break; } if( !zMode ){ /* If the "=MODE" part does not match any known journal mode, ** then do a query */ eMode = PAGER_JOURNALMODE_QUERY; } if( eMode==PAGER_JOURNALMODE_OFF && (db->flags & SQLITE_Defensive)!=0 ){ /* Do not allow journal-mode "OFF" in defensive since the database ** can become corrupted using ordinary SQL when the journal is off */ eMode = PAGER_JOURNALMODE_QUERY; } } if( eMode==PAGER_JOURNALMODE_QUERY && pId2->n==0 ){ /* Convert "PRAGMA journal_mode" into "PRAGMA main.journal_mode" */ iDb = 0; pId2->n = 1; } for(ii=db->nDb-1; ii>=0; ii--){ if( db->aDb[ii].pBt && (ii==iDb || pId2->n==0) ){ sqlite3VdbeUsesBtree(v, ii); sqlite3VdbeAddOp3(v, OP_JournalMode, ii, 1, eMode); } } sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); break; } /* ** PRAGMA [schema.]journal_size_limit ** PRAGMA [schema.]journal_size_limit=N ** ** Get or set the size limit on rollback journal files. */ case PragTyp_JOURNAL_SIZE_LIMIT: { Pager *pPager = sqlite3BtreePager(pDb->pBt); i64 iLimit = -2; if( zRight ){ sqlite3DecOrHexToI64(zRight, &iLimit); if( iLimit<-1 ) iLimit = -1; } iLimit = sqlite3PagerJournalSizeLimit(pPager, iLimit); returnSingleInt(v, iLimit); break; } #endif /* SQLITE_OMIT_PAGER_PRAGMAS */ /* ** PRAGMA [schema.]auto_vacuum ** PRAGMA [schema.]auto_vacuum=N ** ** Get or set the value of the database 'auto-vacuum' parameter. ** The value is one of: 0 NONE 1 FULL 2 INCREMENTAL */ #ifndef SQLITE_OMIT_AUTOVACUUM case PragTyp_AUTO_VACUUM: { Btree *pBt = pDb->pBt; assert( pBt!=0 ); if( !zRight ){ returnSingleInt(v, sqlite3BtreeGetAutoVacuum(pBt)); }else{ int eAuto = getAutoVacuum(zRight); assert( eAuto>=0 && eAuto<=2 ); db->nextAutovac = (u8)eAuto; /* Call SetAutoVacuum() to set initialize the internal auto and ** incr-vacuum flags. This is required in case this connection ** creates the database file. It is important that it is created ** as an auto-vacuum capable db. */ rc = sqlite3BtreeSetAutoVacuum(pBt, eAuto); if( rc==SQLITE_OK && (eAuto==1 || eAuto==2) ){ /* When setting the auto_vacuum mode to either "full" or ** "incremental", write the value of meta[6] in the database ** file. Before writing to meta[6], check that meta[3] indicates ** that this really is an auto-vacuum capable database. */ static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList setMeta6[] = { { OP_Transaction, 0, 1, 0}, /* 0 */ { OP_ReadCookie, 0, 1, BTREE_LARGEST_ROOT_PAGE}, { OP_If, 1, 0, 0}, /* 2 */ { OP_Halt, SQLITE_OK, OE_Abort, 0}, /* 3 */ { OP_SetCookie, 0, BTREE_INCR_VACUUM, 0}, /* 4 */ }; VdbeOp *aOp; int iAddr = sqlite3VdbeCurrentAddr(v); sqlite3VdbeVerifyNoMallocRequired(v, ArraySize(setMeta6)); aOp = sqlite3VdbeAddOpList(v, ArraySize(setMeta6), setMeta6, iLn); if( ONLY_IF_REALLOC_STRESS(aOp==0) ) break; aOp[0].p1 = iDb; aOp[1].p1 = iDb; aOp[2].p2 = iAddr+4; aOp[4].p1 = iDb; aOp[4].p3 = eAuto - 1; sqlite3VdbeUsesBtree(v, iDb); } } break; } #endif /* ** PRAGMA [schema.]incremental_vacuum(N) ** ** Do N steps of incremental vacuuming on a database. */ #ifndef SQLITE_OMIT_AUTOVACUUM case PragTyp_INCREMENTAL_VACUUM: { int iLimit, addr; if( zRight==0 || !sqlite3GetInt32(zRight, &iLimit) || iLimit<=0 ){ iLimit = 0x7fffffff; } sqlite3BeginWriteOperation(pParse, 0, iDb); sqlite3VdbeAddOp2(v, OP_Integer, iLimit, 1); addr = sqlite3VdbeAddOp1(v, OP_IncrVacuum, iDb); VdbeCoverage(v); sqlite3VdbeAddOp1(v, OP_ResultRow, 1); sqlite3VdbeAddOp2(v, OP_AddImm, 1, -1); sqlite3VdbeAddOp2(v, OP_IfPos, 1, addr); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr); break; } #endif #ifndef SQLITE_OMIT_PAGER_PRAGMAS /* ** PRAGMA [schema.]cache_size ** PRAGMA [schema.]cache_size=N ** ** The first form reports the current local setting for the ** page cache size. The second form sets the local ** page cache size value. If N is positive then that is the ** number of pages in the cache. If N is negative, then the ** number of pages is adjusted so that the cache uses -N kibibytes ** of memory. */ case PragTyp_CACHE_SIZE: { assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( !zRight ){ returnSingleInt(v, pDb->pSchema->cache_size); }else{ int size = sqlite3Atoi(zRight); pDb->pSchema->cache_size = size; sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size); } break; } /* ** PRAGMA [schema.]cache_spill ** PRAGMA cache_spill=BOOLEAN ** PRAGMA [schema.]cache_spill=N ** ** The first form reports the current local setting for the ** page cache spill size. The second form turns cache spill on ** or off. When turnning cache spill on, the size is set to the ** current cache_size. The third form sets a spill size that ** may be different form the cache size. ** If N is positive then that is the ** number of pages in the cache. If N is negative, then the ** number of pages is adjusted so that the cache uses -N kibibytes ** of memory. ** ** If the number of cache_spill pages is less then the number of ** cache_size pages, no spilling occurs until the page count exceeds ** the number of cache_size pages. ** ** The cache_spill=BOOLEAN setting applies to all attached schemas, ** not just the schema specified. */ case PragTyp_CACHE_SPILL: { assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( !zRight ){ returnSingleInt(v, (db->flags & SQLITE_CacheSpill)==0 ? 0 : sqlite3BtreeSetSpillSize(pDb->pBt,0)); }else{ int size = 1; if( sqlite3GetInt32(zRight, &size) ){ sqlite3BtreeSetSpillSize(pDb->pBt, size); } if( sqlite3GetBoolean(zRight, size!=0) ){ db->flags |= SQLITE_CacheSpill; }else{ db->flags &= ~(u64)SQLITE_CacheSpill; } setAllPagerFlags(db); } break; } /* ** PRAGMA [schema.]mmap_size(N) ** ** Used to set mapping size limit. The mapping size limit is ** used to limit the aggregate size of all memory mapped regions of the ** database file. If this parameter is set to zero, then memory mapping ** is not used at all. If N is negative, then the default memory map ** limit determined by sqlite3_config(SQLITE_CONFIG_MMAP_SIZE) is set. ** The parameter N is measured in bytes. ** ** This value is advisory. The underlying VFS is free to memory map ** as little or as much as it wants. Except, if N is set to 0 then the ** upper layers will never invoke the xFetch interfaces to the VFS. */ case PragTyp_MMAP_SIZE: { sqlite3_int64 sz; #if SQLITE_MAX_MMAP_SIZE>0 assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( zRight ){ int ii; sqlite3DecOrHexToI64(zRight, &sz); if( sz<0 ) sz = sqlite3GlobalConfig.szMmap; if( pId2->n==0 ) db->szMmap = sz; for(ii=db->nDb-1; ii>=0; ii--){ if( db->aDb[ii].pBt && (ii==iDb || pId2->n==0) ){ sqlite3BtreeSetMmapLimit(db->aDb[ii].pBt, sz); } } } sz = -1; rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_MMAP_SIZE, &sz); #else sz = 0; rc = SQLITE_OK; #endif if( rc==SQLITE_OK ){ returnSingleInt(v, sz); }else if( rc!=SQLITE_NOTFOUND ){ pParse->nErr++; pParse->rc = rc; } break; } /* ** PRAGMA temp_store ** PRAGMA temp_store = "default"|"memory"|"file" ** ** Return or set the local value of the temp_store flag. Changing ** the local value does not make changes to the disk file and the default ** value will be restored the next time the database is opened. ** ** Note that it is possible for the library compile-time options to ** override this setting */ case PragTyp_TEMP_STORE: { if( !zRight ){ returnSingleInt(v, db->temp_store); }else{ changeTempStorage(pParse, zRight); } break; } /* ** PRAGMA temp_store_directory ** PRAGMA temp_store_directory = ""|"directory_name" ** ** Return or set the local value of the temp_store_directory flag. Changing ** the value sets a specific directory to be used for temporary files. ** Setting to a null string reverts to the default temporary directory search. ** If temporary directory is changed, then invalidateTempStorage. ** */ case PragTyp_TEMP_STORE_DIRECTORY: { if( !zRight ){ returnSingleText(v, sqlite3_temp_directory); }else{ #ifndef SQLITE_OMIT_WSD if( zRight[0] ){ int res; rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res); if( rc!=SQLITE_OK || res==0 ){ sqlite3ErrorMsg(pParse, "not a writable directory"); goto pragma_out; } } if( SQLITE_TEMP_STORE==0 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1) || (SQLITE_TEMP_STORE==2 && db->temp_store==1) ){ invalidateTempStorage(pParse); } sqlite3_free(sqlite3_temp_directory); if( zRight[0] ){ sqlite3_temp_directory = sqlite3_mprintf("%s", zRight); }else{ sqlite3_temp_directory = 0; } #endif /* SQLITE_OMIT_WSD */ } break; } #if SQLITE_OS_WIN /* ** PRAGMA data_store_directory ** PRAGMA data_store_directory = ""|"directory_name" ** ** Return or set the local value of the data_store_directory flag. Changing ** the value sets a specific directory to be used for database files that ** were specified with a relative pathname. Setting to a null string reverts ** to the default database directory, which for database files specified with ** a relative path will probably be based on the current directory for the ** process. Database file specified with an absolute path are not impacted ** by this setting, regardless of its value. ** */ case PragTyp_DATA_STORE_DIRECTORY: { if( !zRight ){ returnSingleText(v, sqlite3_data_directory); }else{ #ifndef SQLITE_OMIT_WSD if( zRight[0] ){ int res; rc = sqlite3OsAccess(db->pVfs, zRight, SQLITE_ACCESS_READWRITE, &res); if( rc!=SQLITE_OK || res==0 ){ sqlite3ErrorMsg(pParse, "not a writable directory"); goto pragma_out; } } sqlite3_free(sqlite3_data_directory); if( zRight[0] ){ sqlite3_data_directory = sqlite3_mprintf("%s", zRight); }else{ sqlite3_data_directory = 0; } #endif /* SQLITE_OMIT_WSD */ } break; } #endif #if SQLITE_ENABLE_LOCKING_STYLE /* ** PRAGMA [schema.]lock_proxy_file ** PRAGMA [schema.]lock_proxy_file = ":auto:"|"lock_file_path" ** ** Return or set the value of the lock_proxy_file flag. Changing ** the value sets a specific file to be used for database access locks. ** */ case PragTyp_LOCK_PROXY_FILE: { if( !zRight ){ Pager *pPager = sqlite3BtreePager(pDb->pBt); char *proxy_file_path = NULL; sqlite3_file *pFile = sqlite3PagerFile(pPager); sqlite3OsFileControlHint(pFile, SQLITE_GET_LOCKPROXYFILE, &proxy_file_path); returnSingleText(v, proxy_file_path); }else{ Pager *pPager = sqlite3BtreePager(pDb->pBt); sqlite3_file *pFile = sqlite3PagerFile(pPager); int res; if( zRight[0] ){ res=sqlite3OsFileControl(pFile, SQLITE_SET_LOCKPROXYFILE, zRight); } else { res=sqlite3OsFileControl(pFile, SQLITE_SET_LOCKPROXYFILE, NULL); } if( res!=SQLITE_OK ){ sqlite3ErrorMsg(pParse, "failed to set lock proxy file"); goto pragma_out; } } break; } #endif /* SQLITE_ENABLE_LOCKING_STYLE */ /* ** PRAGMA [schema.]synchronous ** PRAGMA [schema.]synchronous=OFF|ON|NORMAL|FULL|EXTRA ** ** Return or set the local value of the synchronous flag. Changing ** the local value does not make changes to the disk file and the ** default value will be restored the next time the database is ** opened. */ case PragTyp_SYNCHRONOUS: { if( !zRight ){ returnSingleInt(v, pDb->safety_level-1); }else{ if( !db->autoCommit ){ sqlite3ErrorMsg(pParse, "Safety level may not be changed inside a transaction"); }else if( iDb!=1 ){ int iLevel = (getSafetyLevel(zRight,0,1)+1) & PAGER_SYNCHRONOUS_MASK; if( iLevel==0 ) iLevel = 1; pDb->safety_level = iLevel; pDb->bSyncSet = 1; setAllPagerFlags(db); } } break; } #endif /* SQLITE_OMIT_PAGER_PRAGMAS */ #ifndef SQLITE_OMIT_FLAG_PRAGMAS case PragTyp_FLAG: { if( zRight==0 ){ setPragmaResultColumnNames(v, pPragma); returnSingleInt(v, (db->flags & pPragma->iArg)!=0 ); }else{ u64 mask = pPragma->iArg; /* Mask of bits to set or clear. */ if( db->autoCommit==0 ){ /* Foreign key support may not be enabled or disabled while not ** in auto-commit mode. */ mask &= ~(SQLITE_ForeignKeys); } #if SQLITE_USER_AUTHENTICATION if( db->auth.authLevel==UAUTH_User ){ /* Do not allow non-admin users to modify the schema arbitrarily */ mask &= ~(SQLITE_WriteSchema); } #endif if( sqlite3GetBoolean(zRight, 0) ){ db->flags |= mask; }else{ db->flags &= ~mask; if( mask==SQLITE_DeferFKs ) db->nDeferredImmCons = 0; } /* Many of the flag-pragmas modify the code generated by the SQL ** compiler (eg. count_changes). So add an opcode to expire all ** compiled SQL statements after modifying a pragma value. */ sqlite3VdbeAddOp0(v, OP_Expire); setAllPagerFlags(db); } break; } #endif /* SQLITE_OMIT_FLAG_PRAGMAS */ #ifndef SQLITE_OMIT_SCHEMA_PRAGMAS /* ** PRAGMA table_info(
    ) ** ** Return a single row for each column of the named table. The columns of ** the returned data set are: ** ** cid: Column id (numbered from left to right, starting at 0) ** name: Column name ** type: Column declaration type. ** notnull: True if 'NOT NULL' is part of column declaration ** dflt_value: The default value for the column, if any. ** pk: Non-zero for PK fields. */ case PragTyp_TABLE_INFO: if( zRight ){ Table *pTab; sqlite3CodeVerifyNamedSchema(pParse, zDb); pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb); if( pTab ){ int i, k; int nHidden = 0; Column *pCol; Index *pPk = sqlite3PrimaryKeyIndex(pTab); pParse->nMem = 7; sqlite3ViewGetColumnNames(pParse, pTab); for(i=0, pCol=pTab->aCol; inCol; i++, pCol++){ int isHidden = 0; if( pCol->colFlags & COLFLAG_NOINSERT ){ if( pPragma->iArg==0 ){ nHidden++; continue; } if( pCol->colFlags & COLFLAG_VIRTUAL ){ isHidden = 2; /* GENERATED ALWAYS AS ... VIRTUAL */ }else if( pCol->colFlags & COLFLAG_STORED ){ isHidden = 3; /* GENERATED ALWAYS AS ... STORED */ }else{ assert( pCol->colFlags & COLFLAG_HIDDEN ); isHidden = 1; /* HIDDEN */ } } if( (pCol->colFlags & COLFLAG_PRIMKEY)==0 ){ k = 0; }else if( pPk==0 ){ k = 1; }else{ for(k=1; k<=pTab->nCol && pPk->aiColumn[k-1]!=i; k++){} } assert( pCol->pDflt==0 || pCol->pDflt->op==TK_SPAN || isHidden>=2 ); sqlite3VdbeMultiLoad(v, 1, pPragma->iArg ? "issisii" : "issisi", i-nHidden, pCol->zName, sqlite3ColumnType(pCol,""), pCol->notNull ? 1 : 0, pCol->pDflt && isHidden<2 ? pCol->pDflt->u.zToken : 0, k, isHidden); } } } break; #ifdef SQLITE_DEBUG case PragTyp_STATS: { Index *pIdx; HashElem *i; pParse->nMem = 5; sqlite3CodeVerifySchema(pParse, iDb); for(i=sqliteHashFirst(&pDb->pSchema->tblHash); i; i=sqliteHashNext(i)){ Table *pTab = sqliteHashData(i); sqlite3VdbeMultiLoad(v, 1, "ssiii", pTab->zName, 0, pTab->szTabRow, pTab->nRowLogEst, pTab->tabFlags); for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ sqlite3VdbeMultiLoad(v, 2, "siiiX", pIdx->zName, pIdx->szIdxRow, pIdx->aiRowLogEst[0], pIdx->hasStat1); sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 5); } } } break; #endif case PragTyp_INDEX_INFO: if( zRight ){ Index *pIdx; Table *pTab; pIdx = sqlite3FindIndex(db, zRight, zDb); if( pIdx==0 ){ /* If there is no index named zRight, check to see if there is a ** WITHOUT ROWID table named zRight, and if there is, show the ** structure of the PRIMARY KEY index for that table. */ pTab = sqlite3LocateTable(pParse, LOCATE_NOERR, zRight, zDb); if( pTab && !HasRowid(pTab) ){ pIdx = sqlite3PrimaryKeyIndex(pTab); } } if( pIdx ){ int iIdxDb = sqlite3SchemaToIndex(db, pIdx->pSchema); int i; int mx; if( pPragma->iArg ){ /* PRAGMA index_xinfo (newer version with more rows and columns) */ mx = pIdx->nColumn; pParse->nMem = 6; }else{ /* PRAGMA index_info (legacy version) */ mx = pIdx->nKeyCol; pParse->nMem = 3; } pTab = pIdx->pTable; sqlite3CodeVerifySchema(pParse, iIdxDb); assert( pParse->nMem<=pPragma->nPragCName ); for(i=0; iaiColumn[i]; sqlite3VdbeMultiLoad(v, 1, "iisX", i, cnum, cnum<0 ? 0 : pTab->aCol[cnum].zName); if( pPragma->iArg ){ sqlite3VdbeMultiLoad(v, 4, "isiX", pIdx->aSortOrder[i], pIdx->azColl[i], inKeyCol); } sqlite3VdbeAddOp2(v, OP_ResultRow, 1, pParse->nMem); } } } break; case PragTyp_INDEX_LIST: if( zRight ){ Index *pIdx; Table *pTab; int i; pTab = sqlite3FindTable(db, zRight, zDb); if( pTab ){ int iTabDb = sqlite3SchemaToIndex(db, pTab->pSchema); pParse->nMem = 5; sqlite3CodeVerifySchema(pParse, iTabDb); for(pIdx=pTab->pIndex, i=0; pIdx; pIdx=pIdx->pNext, i++){ const char *azOrigin[] = { "c", "u", "pk" }; sqlite3VdbeMultiLoad(v, 1, "isisi", i, pIdx->zName, IsUniqueIndex(pIdx), azOrigin[pIdx->idxType], pIdx->pPartIdxWhere!=0); } } } break; case PragTyp_DATABASE_LIST: { int i; pParse->nMem = 3; for(i=0; inDb; i++){ if( db->aDb[i].pBt==0 ) continue; assert( db->aDb[i].zDbSName!=0 ); sqlite3VdbeMultiLoad(v, 1, "iss", i, db->aDb[i].zDbSName, sqlite3BtreeGetFilename(db->aDb[i].pBt)); } } break; case PragTyp_COLLATION_LIST: { int i = 0; HashElem *p; pParse->nMem = 2; for(p=sqliteHashFirst(&db->aCollSeq); p; p=sqliteHashNext(p)){ CollSeq *pColl = (CollSeq *)sqliteHashData(p); sqlite3VdbeMultiLoad(v, 1, "is", i++, pColl->zName); } } break; #ifndef SQLITE_OMIT_INTROSPECTION_PRAGMAS case PragTyp_FUNCTION_LIST: { int i; HashElem *j; FuncDef *p; int showInternFunc = (db->mDbFlags & DBFLAG_InternalFunc)!=0; pParse->nMem = 6; for(i=0; iu.pHash ){ pragmaFunclistLine(v, p, 1, showInternFunc); } } for(j=sqliteHashFirst(&db->aFunc); j; j=sqliteHashNext(j)){ p = (FuncDef*)sqliteHashData(j); pragmaFunclistLine(v, p, 0, showInternFunc); } } break; #ifndef SQLITE_OMIT_VIRTUALTABLE case PragTyp_MODULE_LIST: { HashElem *j; pParse->nMem = 1; for(j=sqliteHashFirst(&db->aModule); j; j=sqliteHashNext(j)){ Module *pMod = (Module*)sqliteHashData(j); sqlite3VdbeMultiLoad(v, 1, "s", pMod->zName); } } break; #endif /* SQLITE_OMIT_VIRTUALTABLE */ case PragTyp_PRAGMA_LIST: { int i; for(i=0; ipFKey; if( pFK ){ int iTabDb = sqlite3SchemaToIndex(db, pTab->pSchema); int i = 0; pParse->nMem = 8; sqlite3CodeVerifySchema(pParse, iTabDb); while(pFK){ int j; for(j=0; jnCol; j++){ sqlite3VdbeMultiLoad(v, 1, "iissssss", i, j, pFK->zTo, pTab->aCol[pFK->aCol[j].iFrom].zName, pFK->aCol[j].zCol, actionName(pFK->aAction[1]), /* ON UPDATE */ actionName(pFK->aAction[0]), /* ON DELETE */ "NONE"); } ++i; pFK = pFK->pNextFrom; } } } } break; #endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */ #ifndef SQLITE_OMIT_FOREIGN_KEY #ifndef SQLITE_OMIT_TRIGGER case PragTyp_FOREIGN_KEY_CHECK: { FKey *pFK; /* A foreign key constraint */ Table *pTab; /* Child table contain "REFERENCES" keyword */ Table *pParent; /* Parent table that child points to */ Index *pIdx; /* Index in the parent table */ int i; /* Loop counter: Foreign key number for pTab */ int j; /* Loop counter: Field of the foreign key */ HashElem *k; /* Loop counter: Next table in schema */ int x; /* result variable */ int regResult; /* 3 registers to hold a result row */ int regKey; /* Register to hold key for checking the FK */ int regRow; /* Registers to hold a row from pTab */ int addrTop; /* Top of a loop checking foreign keys */ int addrOk; /* Jump here if the key is OK */ int *aiCols; /* child to parent column mapping */ regResult = pParse->nMem+1; pParse->nMem += 4; regKey = ++pParse->nMem; regRow = ++pParse->nMem; k = sqliteHashFirst(&db->aDb[iDb].pSchema->tblHash); while( k ){ if( zRight ){ pTab = sqlite3LocateTable(pParse, 0, zRight, zDb); k = 0; }else{ pTab = (Table*)sqliteHashData(k); k = sqliteHashNext(k); } if( pTab==0 || pTab->pFKey==0 ) continue; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); zDb = db->aDb[iDb].zDbSName; sqlite3CodeVerifySchema(pParse, iDb); sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); if( pTab->nCol+regRow>pParse->nMem ) pParse->nMem = pTab->nCol + regRow; sqlite3OpenTable(pParse, 0, iDb, pTab, OP_OpenRead); sqlite3VdbeLoadString(v, regResult, pTab->zName); for(i=1, pFK=pTab->pFKey; pFK; i++, pFK=pFK->pNextFrom){ pParent = sqlite3FindTable(db, pFK->zTo, zDb); if( pParent==0 ) continue; pIdx = 0; sqlite3TableLock(pParse, iDb, pParent->tnum, 0, pParent->zName); x = sqlite3FkLocateIndex(pParse, pParent, pFK, &pIdx, 0); if( x==0 ){ if( pIdx==0 ){ sqlite3OpenTable(pParse, i, iDb, pParent, OP_OpenRead); }else{ sqlite3VdbeAddOp3(v, OP_OpenRead, i, pIdx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); } }else{ k = 0; break; } } assert( pParse->nErr>0 || pFK==0 ); if( pFK ) break; if( pParse->nTabnTab = i; addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, 0); VdbeCoverage(v); for(i=1, pFK=pTab->pFKey; pFK; i++, pFK=pFK->pNextFrom){ pParent = sqlite3FindTable(db, pFK->zTo, zDb); pIdx = 0; aiCols = 0; if( pParent ){ x = sqlite3FkLocateIndex(pParse, pParent, pFK, &pIdx, &aiCols); assert( x==0 ); } addrOk = sqlite3VdbeMakeLabel(pParse); /* Generate code to read the child key values into registers ** regRow..regRow+n. If any of the child key values are NULL, this ** row cannot cause an FK violation. Jump directly to addrOk in ** this case. */ for(j=0; jnCol; j++){ int iCol = aiCols ? aiCols[j] : pFK->aCol[j].iFrom; sqlite3ExprCodeGetColumnOfTable(v, pTab, 0, iCol, regRow+j); sqlite3VdbeAddOp2(v, OP_IsNull, regRow+j, addrOk); VdbeCoverage(v); } /* Generate code to query the parent index for a matching parent ** key. If a match is found, jump to addrOk. */ if( pIdx ){ sqlite3VdbeAddOp4(v, OP_MakeRecord, regRow, pFK->nCol, regKey, sqlite3IndexAffinityStr(db,pIdx), pFK->nCol); sqlite3VdbeAddOp4Int(v, OP_Found, i, addrOk, regKey, 0); VdbeCoverage(v); }else if( pParent ){ int jmp = sqlite3VdbeCurrentAddr(v)+2; sqlite3VdbeAddOp3(v, OP_SeekRowid, i, jmp, regRow); VdbeCoverage(v); sqlite3VdbeGoto(v, addrOk); assert( pFK->nCol==1 ); } /* Generate code to report an FK violation to the caller. */ if( HasRowid(pTab) ){ sqlite3VdbeAddOp2(v, OP_Rowid, 0, regResult+1); }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, regResult+1); } sqlite3VdbeMultiLoad(v, regResult+2, "siX", pFK->zTo, i-1); sqlite3VdbeAddOp2(v, OP_ResultRow, regResult, 4); sqlite3VdbeResolveLabel(v, addrOk); sqlite3DbFree(db, aiCols); } sqlite3VdbeAddOp2(v, OP_Next, 0, addrTop+1); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addrTop); } } break; #endif /* !defined(SQLITE_OMIT_TRIGGER) */ #endif /* !defined(SQLITE_OMIT_FOREIGN_KEY) */ #ifndef SQLITE_OMIT_CASE_SENSITIVE_LIKE_PRAGMA /* Reinstall the LIKE and GLOB functions. The variant of LIKE ** used will be case sensitive or not depending on the RHS. */ case PragTyp_CASE_SENSITIVE_LIKE: { if( zRight ){ sqlite3RegisterLikeFunctions(db, sqlite3GetBoolean(zRight, 0)); } } break; #endif /* SQLITE_OMIT_CASE_SENSITIVE_LIKE_PRAGMA */ #ifndef SQLITE_INTEGRITY_CHECK_ERROR_MAX # define SQLITE_INTEGRITY_CHECK_ERROR_MAX 100 #endif #ifndef SQLITE_OMIT_INTEGRITY_CHECK /* PRAGMA integrity_check ** PRAGMA integrity_check(N) ** PRAGMA quick_check ** PRAGMA quick_check(N) ** ** Verify the integrity of the database. ** ** The "quick_check" is reduced version of ** integrity_check designed to detect most database corruption ** without the overhead of cross-checking indexes. Quick_check ** is linear time wherease integrity_check is O(NlogN). ** ** The maximum nubmer of errors is 100 by default. A different default ** can be specified using a numeric parameter N. ** ** Or, the parameter N can be the name of a table. In that case, only ** the one table named is verified. The freelist is only verified if ** the named table is "sqlite_schema" (or one of its aliases). ** ** All schemas are checked by default. To check just a single ** schema, use the form: ** ** PRAGMA schema.integrity_check; */ case PragTyp_INTEGRITY_CHECK: { int i, j, addr, mxErr; Table *pObjTab = 0; /* Check only this one table, if not NULL */ int isQuick = (sqlite3Tolower(zLeft[0])=='q'); /* If the PRAGMA command was of the form "PRAGMA .integrity_check", ** then iDb is set to the index of the database identified by . ** In this case, the integrity of database iDb only is verified by ** the VDBE created below. ** ** Otherwise, if the command was simply "PRAGMA integrity_check" (or ** "PRAGMA quick_check"), then iDb is set to 0. In this case, set iDb ** to -1 here, to indicate that the VDBE should verify the integrity ** of all attached databases. */ assert( iDb>=0 ); assert( iDb==0 || pId2->z ); if( pId2->z==0 ) iDb = -1; /* Initialize the VDBE program */ pParse->nMem = 6; /* Set the maximum error count */ mxErr = SQLITE_INTEGRITY_CHECK_ERROR_MAX; if( zRight ){ if( sqlite3GetInt32(zRight, &mxErr) ){ if( mxErr<=0 ){ mxErr = SQLITE_INTEGRITY_CHECK_ERROR_MAX; } }else{ pObjTab = sqlite3LocateTable(pParse, 0, zRight, iDb>=0 ? db->aDb[iDb].zDbSName : 0); } } sqlite3VdbeAddOp2(v, OP_Integer, mxErr-1, 1); /* reg[1] holds errors left */ /* Do an integrity check on each database file */ for(i=0; inDb; i++){ HashElem *x; /* For looping over tables in the schema */ Hash *pTbls; /* Set of all tables in the schema */ int *aRoot; /* Array of root page numbers of all btrees */ int cnt = 0; /* Number of entries in aRoot[] */ int mxIdx = 0; /* Maximum number of indexes for any table */ if( OMIT_TEMPDB && i==1 ) continue; if( iDb>=0 && i!=iDb ) continue; sqlite3CodeVerifySchema(pParse, i); /* Do an integrity check of the B-Tree ** ** Begin by finding the root pages numbers ** for all tables and indices in the database. */ assert( sqlite3SchemaMutexHeld(db, i, 0) ); pTbls = &db->aDb[i].pSchema->tblHash; for(cnt=0, x=sqliteHashFirst(pTbls); x; x=sqliteHashNext(x)){ Table *pTab = sqliteHashData(x); /* Current table */ Index *pIdx; /* An index on pTab */ int nIdx; /* Number of indexes on pTab */ if( pObjTab && pObjTab!=pTab ) continue; if( HasRowid(pTab) ) cnt++; for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ cnt++; } if( nIdx>mxIdx ) mxIdx = nIdx; } if( cnt==0 ) continue; if( pObjTab ) cnt++; aRoot = sqlite3DbMallocRawNN(db, sizeof(int)*(cnt+1)); if( aRoot==0 ) break; cnt = 0; if( pObjTab ) aRoot[++cnt] = 0; for(x=sqliteHashFirst(pTbls); x; x=sqliteHashNext(x)){ Table *pTab = sqliteHashData(x); Index *pIdx; if( pObjTab && pObjTab!=pTab ) continue; if( HasRowid(pTab) ) aRoot[++cnt] = pTab->tnum; for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ aRoot[++cnt] = pIdx->tnum; } } aRoot[0] = cnt; /* Make sure sufficient number of registers have been allocated */ pParse->nMem = MAX( pParse->nMem, 8+mxIdx ); sqlite3ClearTempRegCache(pParse); /* Do the b-tree integrity checks */ sqlite3VdbeAddOp4(v, OP_IntegrityCk, 2, cnt, 1, (char*)aRoot,P4_INTARRAY); sqlite3VdbeChangeP5(v, (u8)i); addr = sqlite3VdbeAddOp1(v, OP_IsNull, 2); VdbeCoverage(v); sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, sqlite3MPrintf(db, "*** in database %s ***\n", db->aDb[i].zDbSName), P4_DYNAMIC); sqlite3VdbeAddOp3(v, OP_Concat, 2, 3, 3); integrityCheckResultRow(v); sqlite3VdbeJumpHere(v, addr); /* Make sure all the indices are constructed correctly. */ for(x=sqliteHashFirst(pTbls); x; x=sqliteHashNext(x)){ Table *pTab = sqliteHashData(x); Index *pIdx, *pPk; Index *pPrior = 0; int loopTop; int iDataCur, iIdxCur; int r1 = -1; if( pTab->tnum<1 ) continue; /* Skip VIEWs or VIRTUAL TABLEs */ if( pObjTab && pObjTab!=pTab ) continue; pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenRead, 0, 1, 0, &iDataCur, &iIdxCur); /* reg[7] counts the number of entries in the table. ** reg[8+i] counts the number of entries in the i-th index */ sqlite3VdbeAddOp2(v, OP_Integer, 0, 7); for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ sqlite3VdbeAddOp2(v, OP_Integer, 0, 8+j); /* index entries counter */ } assert( pParse->nMem>=8+j ); assert( sqlite3NoTempsInRange(pParse,1,7+j) ); sqlite3VdbeAddOp2(v, OP_Rewind, iDataCur, 0); VdbeCoverage(v); loopTop = sqlite3VdbeAddOp2(v, OP_AddImm, 7, 1); if( !isQuick ){ /* Sanity check on record header decoding */ sqlite3VdbeAddOp3(v, OP_Column, iDataCur, pTab->nNVCol-1,3); sqlite3VdbeChangeP5(v, OPFLAG_TYPEOFARG); } /* Verify that all NOT NULL columns really are NOT NULL */ for(j=0; jnCol; j++){ char *zErr; int jmp2; if( j==pTab->iPKey ) continue; if( pTab->aCol[j].notNull==0 ) continue; sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, j, 3); if( sqlite3VdbeGetOp(v,-1)->opcode==OP_Column ){ sqlite3VdbeChangeP5(v, OPFLAG_TYPEOFARG); } jmp2 = sqlite3VdbeAddOp1(v, OP_NotNull, 3); VdbeCoverage(v); zErr = sqlite3MPrintf(db, "NULL value in %s.%s", pTab->zName, pTab->aCol[j].zName); sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, zErr, P4_DYNAMIC); integrityCheckResultRow(v); sqlite3VdbeJumpHere(v, jmp2); } /* Verify CHECK constraints */ if( pTab->pCheck && (db->flags & SQLITE_IgnoreChecks)==0 ){ ExprList *pCheck = sqlite3ExprListDup(db, pTab->pCheck, 0); if( db->mallocFailed==0 ){ int addrCkFault = sqlite3VdbeMakeLabel(pParse); int addrCkOk = sqlite3VdbeMakeLabel(pParse); char *zErr; int k; pParse->iSelfTab = iDataCur + 1; for(k=pCheck->nExpr-1; k>0; k--){ sqlite3ExprIfFalse(pParse, pCheck->a[k].pExpr, addrCkFault, 0); } sqlite3ExprIfTrue(pParse, pCheck->a[0].pExpr, addrCkOk, SQLITE_JUMPIFNULL); sqlite3VdbeResolveLabel(v, addrCkFault); pParse->iSelfTab = 0; zErr = sqlite3MPrintf(db, "CHECK constraint failed in %s", pTab->zName); sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, zErr, P4_DYNAMIC); integrityCheckResultRow(v); sqlite3VdbeResolveLabel(v, addrCkOk); } sqlite3ExprListDelete(db, pCheck); } if( !isQuick ){ /* Omit the remaining tests for quick_check */ /* Validate index entries for the current row */ for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ int jmp2, jmp3, jmp4, jmp5; int ckUniq = sqlite3VdbeMakeLabel(pParse); if( pPk==pIdx ) continue; r1 = sqlite3GenerateIndexKey(pParse, pIdx, iDataCur, 0, 0, &jmp3, pPrior, r1); pPrior = pIdx; sqlite3VdbeAddOp2(v, OP_AddImm, 8+j, 1);/* increment entry count */ /* Verify that an index entry exists for the current table row */ jmp2 = sqlite3VdbeAddOp4Int(v, OP_Found, iIdxCur+j, ckUniq, r1, pIdx->nColumn); VdbeCoverage(v); sqlite3VdbeLoadString(v, 3, "row "); sqlite3VdbeAddOp3(v, OP_Concat, 7, 3, 3); sqlite3VdbeLoadString(v, 4, " missing from index "); sqlite3VdbeAddOp3(v, OP_Concat, 4, 3, 3); jmp5 = sqlite3VdbeLoadString(v, 4, pIdx->zName); sqlite3VdbeAddOp3(v, OP_Concat, 4, 3, 3); jmp4 = integrityCheckResultRow(v); sqlite3VdbeJumpHere(v, jmp2); /* For UNIQUE indexes, verify that only one entry exists with the ** current key. The entry is unique if (1) any column is NULL ** or (2) the next entry has a different key */ if( IsUniqueIndex(pIdx) ){ int uniqOk = sqlite3VdbeMakeLabel(pParse); int jmp6; int kk; for(kk=0; kknKeyCol; kk++){ int iCol = pIdx->aiColumn[kk]; assert( iCol!=XN_ROWID && iColnCol ); if( iCol>=0 && pTab->aCol[iCol].notNull ) continue; sqlite3VdbeAddOp2(v, OP_IsNull, r1+kk, uniqOk); VdbeCoverage(v); } jmp6 = sqlite3VdbeAddOp1(v, OP_Next, iIdxCur+j); VdbeCoverage(v); sqlite3VdbeGoto(v, uniqOk); sqlite3VdbeJumpHere(v, jmp6); sqlite3VdbeAddOp4Int(v, OP_IdxGT, iIdxCur+j, uniqOk, r1, pIdx->nKeyCol); VdbeCoverage(v); sqlite3VdbeLoadString(v, 3, "non-unique entry in index "); sqlite3VdbeGoto(v, jmp5); sqlite3VdbeResolveLabel(v, uniqOk); } sqlite3VdbeJumpHere(v, jmp4); sqlite3ResolvePartIdxLabel(pParse, jmp3); } } sqlite3VdbeAddOp2(v, OP_Next, iDataCur, loopTop); VdbeCoverage(v); sqlite3VdbeJumpHere(v, loopTop-1); if( !isQuick ){ sqlite3VdbeLoadString(v, 2, "wrong # of entries in index "); for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++){ if( pPk==pIdx ) continue; sqlite3VdbeAddOp2(v, OP_Count, iIdxCur+j, 3); addr = sqlite3VdbeAddOp3(v, OP_Eq, 8+j, 0, 3); VdbeCoverage(v); sqlite3VdbeChangeP5(v, SQLITE_NOTNULL); sqlite3VdbeLoadString(v, 4, pIdx->zName); sqlite3VdbeAddOp3(v, OP_Concat, 4, 2, 3); integrityCheckResultRow(v); sqlite3VdbeJumpHere(v, addr); } } } } { static const int iLn = VDBE_OFFSET_LINENO(2); static const VdbeOpList endCode[] = { { OP_AddImm, 1, 0, 0}, /* 0 */ { OP_IfNotZero, 1, 4, 0}, /* 1 */ { OP_String8, 0, 3, 0}, /* 2 */ { OP_ResultRow, 3, 1, 0}, /* 3 */ { OP_Halt, 0, 0, 0}, /* 4 */ { OP_String8, 0, 3, 0}, /* 5 */ { OP_Goto, 0, 3, 0}, /* 6 */ }; VdbeOp *aOp; aOp = sqlite3VdbeAddOpList(v, ArraySize(endCode), endCode, iLn); if( aOp ){ aOp[0].p2 = 1-mxErr; aOp[2].p4type = P4_STATIC; aOp[2].p4.z = "ok"; aOp[5].p4type = P4_STATIC; aOp[5].p4.z = (char*)sqlite3ErrStr(SQLITE_CORRUPT); } sqlite3VdbeChangeP3(v, 0, sqlite3VdbeCurrentAddr(v)-2); } } break; #endif /* SQLITE_OMIT_INTEGRITY_CHECK */ #ifndef SQLITE_OMIT_UTF16 /* ** PRAGMA encoding ** PRAGMA encoding = "utf-8"|"utf-16"|"utf-16le"|"utf-16be" ** ** In its first form, this pragma returns the encoding of the main ** database. If the database is not initialized, it is initialized now. ** ** The second form of this pragma is a no-op if the main database file ** has not already been initialized. In this case it sets the default ** encoding that will be used for the main database file if a new file ** is created. If an existing main database file is opened, then the ** default text encoding for the existing database is used. ** ** In all cases new databases created using the ATTACH command are ** created to use the same default text encoding as the main database. If ** the main database has not been initialized and/or created when ATTACH ** is executed, this is done before the ATTACH operation. ** ** In the second form this pragma sets the text encoding to be used in ** new database files created using this database handle. It is only ** useful if invoked immediately after the main database i */ case PragTyp_ENCODING: { static const struct EncName { char *zName; u8 enc; } encnames[] = { { "UTF8", SQLITE_UTF8 }, { "UTF-8", SQLITE_UTF8 }, /* Must be element [1] */ { "UTF-16le", SQLITE_UTF16LE }, /* Must be element [2] */ { "UTF-16be", SQLITE_UTF16BE }, /* Must be element [3] */ { "UTF16le", SQLITE_UTF16LE }, { "UTF16be", SQLITE_UTF16BE }, { "UTF-16", 0 }, /* SQLITE_UTF16NATIVE */ { "UTF16", 0 }, /* SQLITE_UTF16NATIVE */ { 0, 0 } }; const struct EncName *pEnc; if( !zRight ){ /* "PRAGMA encoding" */ if( sqlite3ReadSchema(pParse) ) goto pragma_out; assert( encnames[SQLITE_UTF8].enc==SQLITE_UTF8 ); assert( encnames[SQLITE_UTF16LE].enc==SQLITE_UTF16LE ); assert( encnames[SQLITE_UTF16BE].enc==SQLITE_UTF16BE ); returnSingleText(v, encnames[ENC(pParse->db)].zName); }else{ /* "PRAGMA encoding = XXX" */ /* Only change the value of sqlite.enc if the database handle is not ** initialized. If the main database exists, the new sqlite.enc value ** will be overwritten when the schema is next loaded. If it does not ** already exists, it will be created to use the new encoding value. */ if( (db->mDbFlags & DBFLAG_EncodingFixed)==0 ){ for(pEnc=&encnames[0]; pEnc->zName; pEnc++){ if( 0==sqlite3StrICmp(zRight, pEnc->zName) ){ u8 enc = pEnc->enc ? pEnc->enc : SQLITE_UTF16NATIVE; SCHEMA_ENC(db) = enc; sqlite3SetTextEncoding(db, enc); break; } } if( !pEnc->zName ){ sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight); } } } } break; #endif /* SQLITE_OMIT_UTF16 */ #ifndef SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS /* ** PRAGMA [schema.]schema_version ** PRAGMA [schema.]schema_version = ** ** PRAGMA [schema.]user_version ** PRAGMA [schema.]user_version = ** ** PRAGMA [schema.]freelist_count ** ** PRAGMA [schema.]data_version ** ** PRAGMA [schema.]application_id ** PRAGMA [schema.]application_id = ** ** The pragma's schema_version and user_version are used to set or get ** the value of the schema-version and user-version, respectively. Both ** the schema-version and the user-version are 32-bit signed integers ** stored in the database header. ** ** The schema-cookie is usually only manipulated internally by SQLite. It ** is incremented by SQLite whenever the database schema is modified (by ** creating or dropping a table or index). The schema version is used by ** SQLite each time a query is executed to ensure that the internal cache ** of the schema used when compiling the SQL query matches the schema of ** the database against which the compiled query is actually executed. ** Subverting this mechanism by using "PRAGMA schema_version" to modify ** the schema-version is potentially dangerous and may lead to program ** crashes or database corruption. Use with caution! ** ** The user-version is not used internally by SQLite. It may be used by ** applications for any purpose. */ case PragTyp_HEADER_VALUE: { int iCookie = pPragma->iArg; /* Which cookie to read or write */ sqlite3VdbeUsesBtree(v, iDb); if( zRight && (pPragma->mPragFlg & PragFlg_ReadOnly)==0 ){ /* Write the specified cookie value */ static const VdbeOpList setCookie[] = { { OP_Transaction, 0, 1, 0}, /* 0 */ { OP_SetCookie, 0, 0, 0}, /* 1 */ }; VdbeOp *aOp; sqlite3VdbeVerifyNoMallocRequired(v, ArraySize(setCookie)); aOp = sqlite3VdbeAddOpList(v, ArraySize(setCookie), setCookie, 0); if( ONLY_IF_REALLOC_STRESS(aOp==0) ) break; aOp[0].p1 = iDb; aOp[1].p1 = iDb; aOp[1].p2 = iCookie; aOp[1].p3 = sqlite3Atoi(zRight); aOp[1].p5 = 1; }else{ /* Read the specified cookie value */ static const VdbeOpList readCookie[] = { { OP_Transaction, 0, 0, 0}, /* 0 */ { OP_ReadCookie, 0, 1, 0}, /* 1 */ { OP_ResultRow, 1, 1, 0} }; VdbeOp *aOp; sqlite3VdbeVerifyNoMallocRequired(v, ArraySize(readCookie)); aOp = sqlite3VdbeAddOpList(v, ArraySize(readCookie),readCookie,0); if( ONLY_IF_REALLOC_STRESS(aOp==0) ) break; aOp[0].p1 = iDb; aOp[1].p1 = iDb; aOp[1].p3 = iCookie; sqlite3VdbeReusable(v); } } break; #endif /* SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS /* ** PRAGMA compile_options ** ** Return the names of all compile-time options used in this build, ** one option per row. */ case PragTyp_COMPILE_OPTIONS: { int i = 0; const char *zOpt; pParse->nMem = 1; while( (zOpt = sqlite3_compileoption_get(i++))!=0 ){ sqlite3VdbeLoadString(v, 1, zOpt); sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 1); } sqlite3VdbeReusable(v); } break; #endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */ #ifndef SQLITE_OMIT_WAL /* ** PRAGMA [schema.]wal_checkpoint = passive|full|restart|truncate ** ** Checkpoint the database. */ case PragTyp_WAL_CHECKPOINT: { int iBt = (pId2->z?iDb:SQLITE_MAX_ATTACHED); int eMode = SQLITE_CHECKPOINT_PASSIVE; if( zRight ){ if( sqlite3StrICmp(zRight, "full")==0 ){ eMode = SQLITE_CHECKPOINT_FULL; }else if( sqlite3StrICmp(zRight, "restart")==0 ){ eMode = SQLITE_CHECKPOINT_RESTART; }else if( sqlite3StrICmp(zRight, "truncate")==0 ){ eMode = SQLITE_CHECKPOINT_TRUNCATE; } } pParse->nMem = 3; sqlite3VdbeAddOp3(v, OP_Checkpoint, iBt, eMode, 1); sqlite3VdbeAddOp2(v, OP_ResultRow, 1, 3); } break; /* ** PRAGMA wal_autocheckpoint ** PRAGMA wal_autocheckpoint = N ** ** Configure a database connection to automatically checkpoint a database ** after accumulating N frames in the log. Or query for the current value ** of N. */ case PragTyp_WAL_AUTOCHECKPOINT: { if( zRight ){ sqlite3_wal_autocheckpoint(db, sqlite3Atoi(zRight)); } returnSingleInt(v, db->xWalCallback==sqlite3WalDefaultHook ? SQLITE_PTR_TO_INT(db->pWalArg) : 0); } break; #endif /* ** PRAGMA shrink_memory ** ** IMPLEMENTATION-OF: R-23445-46109 This pragma causes the database ** connection on which it is invoked to free up as much memory as it ** can, by calling sqlite3_db_release_memory(). */ case PragTyp_SHRINK_MEMORY: { sqlite3_db_release_memory(db); break; } /* ** PRAGMA optimize ** PRAGMA optimize(MASK) ** PRAGMA schema.optimize ** PRAGMA schema.optimize(MASK) ** ** Attempt to optimize the database. All schemas are optimized in the first ** two forms, and only the specified schema is optimized in the latter two. ** ** The details of optimizations performed by this pragma are expected ** to change and improve over time. Applications should anticipate that ** this pragma will perform new optimizations in future releases. ** ** The optional argument is a bitmask of optimizations to perform: ** ** 0x0001 Debugging mode. Do not actually perform any optimizations ** but instead return one line of text for each optimization ** that would have been done. Off by default. ** ** 0x0002 Run ANALYZE on tables that might benefit. On by default. ** See below for additional information. ** ** 0x0004 (Not yet implemented) Record usage and performance ** information from the current session in the ** database file so that it will be available to "optimize" ** pragmas run by future database connections. ** ** 0x0008 (Not yet implemented) Create indexes that might have ** been helpful to recent queries ** ** The default MASK is and always shall be 0xfffe. 0xfffe means perform all ** of the optimizations listed above except Debug Mode, including new ** optimizations that have not yet been invented. If new optimizations are ** ever added that should be off by default, those off-by-default ** optimizations will have bitmasks of 0x10000 or larger. ** ** DETERMINATION OF WHEN TO RUN ANALYZE ** ** In the current implementation, a table is analyzed if only if all of ** the following are true: ** ** (1) MASK bit 0x02 is set. ** ** (2) The query planner used sqlite_stat1-style statistics for one or ** more indexes of the table at some point during the lifetime of ** the current connection. ** ** (3) One or more indexes of the table are currently unanalyzed OR ** the number of rows in the table has increased by 25 times or more ** since the last time ANALYZE was run. ** ** The rules for when tables are analyzed are likely to change in ** future releases. */ case PragTyp_OPTIMIZE: { int iDbLast; /* Loop termination point for the schema loop */ int iTabCur; /* Cursor for a table whose size needs checking */ HashElem *k; /* Loop over tables of a schema */ Schema *pSchema; /* The current schema */ Table *pTab; /* A table in the schema */ Index *pIdx; /* An index of the table */ LogEst szThreshold; /* Size threshold above which reanalysis is needd */ char *zSubSql; /* SQL statement for the OP_SqlExec opcode */ u32 opMask; /* Mask of operations to perform */ if( zRight ){ opMask = (u32)sqlite3Atoi(zRight); if( (opMask & 0x02)==0 ) break; }else{ opMask = 0xfffe; } iTabCur = pParse->nTab++; for(iDbLast = zDb?iDb:db->nDb-1; iDb<=iDbLast; iDb++){ if( iDb==1 ) continue; sqlite3CodeVerifySchema(pParse, iDb); pSchema = db->aDb[iDb].pSchema; for(k=sqliteHashFirst(&pSchema->tblHash); k; k=sqliteHashNext(k)){ pTab = (Table*)sqliteHashData(k); /* If table pTab has not been used in a way that would benefit from ** having analysis statistics during the current session, then skip it. ** This also has the effect of skipping virtual tables and views */ if( (pTab->tabFlags & TF_StatsUsed)==0 ) continue; /* Reanalyze if the table is 25 times larger than the last analysis */ szThreshold = pTab->nRowLogEst + 46; assert( sqlite3LogEst(25)==46 ); for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ if( !pIdx->hasStat1 ){ szThreshold = 0; /* Always analyze if any index lacks statistics */ break; } } if( szThreshold ){ sqlite3OpenTable(pParse, iTabCur, iDb, pTab, OP_OpenRead); sqlite3VdbeAddOp3(v, OP_IfSmaller, iTabCur, sqlite3VdbeCurrentAddr(v)+2+(opMask&1), szThreshold); VdbeCoverage(v); } zSubSql = sqlite3MPrintf(db, "ANALYZE \"%w\".\"%w\"", db->aDb[iDb].zDbSName, pTab->zName); if( opMask & 0x01 ){ int r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp4(v, OP_String8, 0, r1, 0, zSubSql, P4_DYNAMIC); sqlite3VdbeAddOp2(v, OP_ResultRow, r1, 1); }else{ sqlite3VdbeAddOp4(v, OP_SqlExec, 0, 0, 0, zSubSql, P4_DYNAMIC); } } } sqlite3VdbeAddOp0(v, OP_Expire); break; } /* ** PRAGMA busy_timeout ** PRAGMA busy_timeout = N ** ** Call sqlite3_busy_timeout(db, N). Return the current timeout value ** if one is set. If no busy handler or a different busy handler is set ** then 0 is returned. Setting the busy_timeout to 0 or negative ** disables the timeout. */ /*case PragTyp_BUSY_TIMEOUT*/ default: { assert( pPragma->ePragTyp==PragTyp_BUSY_TIMEOUT ); if( zRight ){ sqlite3_busy_timeout(db, sqlite3Atoi(zRight)); } returnSingleInt(v, db->busyTimeout); break; } /* ** PRAGMA soft_heap_limit ** PRAGMA soft_heap_limit = N ** ** IMPLEMENTATION-OF: R-26343-45930 This pragma invokes the ** sqlite3_soft_heap_limit64() interface with the argument N, if N is ** specified and is a non-negative integer. ** IMPLEMENTATION-OF: R-64451-07163 The soft_heap_limit pragma always ** returns the same integer that would be returned by the ** sqlite3_soft_heap_limit64(-1) C-language function. */ case PragTyp_SOFT_HEAP_LIMIT: { sqlite3_int64 N; if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){ sqlite3_soft_heap_limit64(N); } returnSingleInt(v, sqlite3_soft_heap_limit64(-1)); break; } /* ** PRAGMA hard_heap_limit ** PRAGMA hard_heap_limit = N ** ** Invoke sqlite3_hard_heap_limit64() to query or set the hard heap ** limit. The hard heap limit can be activated or lowered by this ** pragma, but not raised or deactivated. Only the ** sqlite3_hard_heap_limit64() C-language API can raise or deactivate ** the hard heap limit. This allows an application to set a heap limit ** constraint that cannot be relaxed by an untrusted SQL script. */ case PragTyp_HARD_HEAP_LIMIT: { sqlite3_int64 N; if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK ){ sqlite3_int64 iPrior = sqlite3_hard_heap_limit64(-1); if( N>0 && (iPrior==0 || iPrior>N) ) sqlite3_hard_heap_limit64(N); } returnSingleInt(v, sqlite3_hard_heap_limit64(-1)); break; } /* ** PRAGMA threads ** PRAGMA threads = N ** ** Configure the maximum number of worker threads. Return the new ** maximum, which might be less than requested. */ case PragTyp_THREADS: { sqlite3_int64 N; if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK && N>=0 ){ sqlite3_limit(db, SQLITE_LIMIT_WORKER_THREADS, (int)(N&0x7fffffff)); } returnSingleInt(v, sqlite3_limit(db, SQLITE_LIMIT_WORKER_THREADS, -1)); break; } /* ** PRAGMA analysis_limit ** PRAGMA analysis_limit = N ** ** Configure the maximum number of rows that ANALYZE will examine ** in each index that it looks at. Return the new limit. */ case PragTyp_ANALYSIS_LIMIT: { sqlite3_int64 N; if( zRight && sqlite3DecOrHexToI64(zRight, &N)==SQLITE_OK && N>=0 ){ db->nAnalysisLimit = (int)(N&0x7fffffff); } returnSingleInt(v, db->nAnalysisLimit); break; } #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) /* ** Report the current state of file logs for all databases */ case PragTyp_LOCK_STATUS: { static const char *const azLockName[] = { "unlocked", "shared", "reserved", "pending", "exclusive" }; int i; pParse->nMem = 2; for(i=0; inDb; i++){ Btree *pBt; const char *zState = "unknown"; int j; if( db->aDb[i].zDbSName==0 ) continue; pBt = db->aDb[i].pBt; if( pBt==0 || sqlite3BtreePager(pBt)==0 ){ zState = "closed"; }else if( sqlite3_file_control(db, i ? db->aDb[i].zDbSName : 0, SQLITE_FCNTL_LOCKSTATE, &j)==SQLITE_OK ){ zState = azLockName[j]; } sqlite3VdbeMultiLoad(v, 1, "ss", db->aDb[i].zDbSName, zState); } break; } #endif #if defined(SQLITE_ENABLE_CEROD) case PragTyp_ACTIVATE_EXTENSIONS: if( zRight ){ if( sqlite3StrNICmp(zRight, "cerod-", 6)==0 ){ sqlite3_activate_cerod(&zRight[6]); } } break; #endif } /* End of the PRAGMA switch */ /* The following block is a no-op unless SQLITE_DEBUG is defined. Its only ** purpose is to execute assert() statements to verify that if the ** PragFlg_NoColumns1 flag is set and the caller specified an argument ** to the PRAGMA, the implementation has not added any OP_ResultRow ** instructions to the VM. */ if( (pPragma->mPragFlg & PragFlg_NoColumns1) && zRight ){ sqlite3VdbeVerifyNoResultRow(v); } pragma_out: sqlite3DbFree(db, zLeft); sqlite3DbFree(db, zRight); } #ifndef SQLITE_OMIT_VIRTUALTABLE /***************************************************************************** ** Implementation of an eponymous virtual table that runs a pragma. ** */ typedef struct PragmaVtab PragmaVtab; typedef struct PragmaVtabCursor PragmaVtabCursor; struct PragmaVtab { sqlite3_vtab base; /* Base class. Must be first */ sqlite3 *db; /* The database connection to which it belongs */ const PragmaName *pName; /* Name of the pragma */ u8 nHidden; /* Number of hidden columns */ u8 iHidden; /* Index of the first hidden column */ }; struct PragmaVtabCursor { sqlite3_vtab_cursor base; /* Base class. Must be first */ sqlite3_stmt *pPragma; /* The pragma statement to run */ sqlite_int64 iRowid; /* Current rowid */ char *azArg[2]; /* Value of the argument and schema */ }; /* ** Pragma virtual table module xConnect method. */ static int pragmaVtabConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ const PragmaName *pPragma = (const PragmaName*)pAux; PragmaVtab *pTab = 0; int rc; int i, j; char cSep = '('; StrAccum acc; char zBuf[200]; UNUSED_PARAMETER(argc); UNUSED_PARAMETER(argv); sqlite3StrAccumInit(&acc, 0, zBuf, sizeof(zBuf), 0); sqlite3_str_appendall(&acc, "CREATE TABLE x"); for(i=0, j=pPragma->iPragCName; inPragCName; i++, j++){ sqlite3_str_appendf(&acc, "%c\"%s\"", cSep, pragCName[j]); cSep = ','; } if( i==0 ){ sqlite3_str_appendf(&acc, "(\"%s\"", pPragma->zName); i++; } j = 0; if( pPragma->mPragFlg & PragFlg_Result1 ){ sqlite3_str_appendall(&acc, ",arg HIDDEN"); j++; } if( pPragma->mPragFlg & (PragFlg_SchemaOpt|PragFlg_SchemaReq) ){ sqlite3_str_appendall(&acc, ",schema HIDDEN"); j++; } sqlite3_str_append(&acc, ")", 1); sqlite3StrAccumFinish(&acc); assert( strlen(zBuf) < sizeof(zBuf)-1 ); rc = sqlite3_declare_vtab(db, zBuf); if( rc==SQLITE_OK ){ pTab = (PragmaVtab*)sqlite3_malloc(sizeof(PragmaVtab)); if( pTab==0 ){ rc = SQLITE_NOMEM; }else{ memset(pTab, 0, sizeof(PragmaVtab)); pTab->pName = pPragma; pTab->db = db; pTab->iHidden = i; pTab->nHidden = j; } }else{ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); } *ppVtab = (sqlite3_vtab*)pTab; return rc; } /* ** Pragma virtual table module xDisconnect method. */ static int pragmaVtabDisconnect(sqlite3_vtab *pVtab){ PragmaVtab *pTab = (PragmaVtab*)pVtab; sqlite3_free(pTab); return SQLITE_OK; } /* Figure out the best index to use to search a pragma virtual table. ** ** There are not really any index choices. But we want to encourage the ** query planner to give == constraints on as many hidden parameters as ** possible, and especially on the first hidden parameter. So return a ** high cost if hidden parameters are unconstrained. */ static int pragmaVtabBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){ PragmaVtab *pTab = (PragmaVtab*)tab; const struct sqlite3_index_constraint *pConstraint; int i, j; int seen[2]; pIdxInfo->estimatedCost = (double)1; if( pTab->nHidden==0 ){ return SQLITE_OK; } pConstraint = pIdxInfo->aConstraint; seen[0] = 0; seen[1] = 0; for(i=0; inConstraint; i++, pConstraint++){ if( pConstraint->usable==0 ) continue; if( pConstraint->op!=SQLITE_INDEX_CONSTRAINT_EQ ) continue; if( pConstraint->iColumn < pTab->iHidden ) continue; j = pConstraint->iColumn - pTab->iHidden; assert( j < 2 ); seen[j] = i+1; } if( seen[0]==0 ){ pIdxInfo->estimatedCost = (double)2147483647; pIdxInfo->estimatedRows = 2147483647; return SQLITE_OK; } j = seen[0]-1; pIdxInfo->aConstraintUsage[j].argvIndex = 1; pIdxInfo->aConstraintUsage[j].omit = 1; if( seen[1]==0 ) return SQLITE_OK; pIdxInfo->estimatedCost = (double)20; pIdxInfo->estimatedRows = 20; j = seen[1]-1; pIdxInfo->aConstraintUsage[j].argvIndex = 2; pIdxInfo->aConstraintUsage[j].omit = 1; return SQLITE_OK; } /* Create a new cursor for the pragma virtual table */ static int pragmaVtabOpen(sqlite3_vtab *pVtab, sqlite3_vtab_cursor **ppCursor){ PragmaVtabCursor *pCsr; pCsr = (PragmaVtabCursor*)sqlite3_malloc(sizeof(*pCsr)); if( pCsr==0 ) return SQLITE_NOMEM; memset(pCsr, 0, sizeof(PragmaVtabCursor)); pCsr->base.pVtab = pVtab; *ppCursor = &pCsr->base; return SQLITE_OK; } /* Clear all content from pragma virtual table cursor. */ static void pragmaVtabCursorClear(PragmaVtabCursor *pCsr){ int i; sqlite3_finalize(pCsr->pPragma); pCsr->pPragma = 0; for(i=0; iazArg); i++){ sqlite3_free(pCsr->azArg[i]); pCsr->azArg[i] = 0; } } /* Close a pragma virtual table cursor */ static int pragmaVtabClose(sqlite3_vtab_cursor *cur){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)cur; pragmaVtabCursorClear(pCsr); sqlite3_free(pCsr); return SQLITE_OK; } /* Advance the pragma virtual table cursor to the next row */ static int pragmaVtabNext(sqlite3_vtab_cursor *pVtabCursor){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)pVtabCursor; int rc = SQLITE_OK; /* Increment the xRowid value */ pCsr->iRowid++; assert( pCsr->pPragma ); if( SQLITE_ROW!=sqlite3_step(pCsr->pPragma) ){ rc = sqlite3_finalize(pCsr->pPragma); pCsr->pPragma = 0; pragmaVtabCursorClear(pCsr); } return rc; } /* ** Pragma virtual table module xFilter method. */ static int pragmaVtabFilter( sqlite3_vtab_cursor *pVtabCursor, int idxNum, const char *idxStr, int argc, sqlite3_value **argv ){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)pVtabCursor; PragmaVtab *pTab = (PragmaVtab*)(pVtabCursor->pVtab); int rc; int i, j; StrAccum acc; char *zSql; UNUSED_PARAMETER(idxNum); UNUSED_PARAMETER(idxStr); pragmaVtabCursorClear(pCsr); j = (pTab->pName->mPragFlg & PragFlg_Result1)!=0 ? 0 : 1; for(i=0; iazArg) ); assert( pCsr->azArg[j]==0 ); if( zText ){ pCsr->azArg[j] = sqlite3_mprintf("%s", zText); if( pCsr->azArg[j]==0 ){ return SQLITE_NOMEM; } } } sqlite3StrAccumInit(&acc, 0, 0, 0, pTab->db->aLimit[SQLITE_LIMIT_SQL_LENGTH]); sqlite3_str_appendall(&acc, "PRAGMA "); if( pCsr->azArg[1] ){ sqlite3_str_appendf(&acc, "%Q.", pCsr->azArg[1]); } sqlite3_str_appendall(&acc, pTab->pName->zName); if( pCsr->azArg[0] ){ sqlite3_str_appendf(&acc, "=%Q", pCsr->azArg[0]); } zSql = sqlite3StrAccumFinish(&acc); if( zSql==0 ) return SQLITE_NOMEM; rc = sqlite3_prepare_v2(pTab->db, zSql, -1, &pCsr->pPragma, 0); sqlite3_free(zSql); if( rc!=SQLITE_OK ){ pTab->base.zErrMsg = sqlite3_mprintf("%s", sqlite3_errmsg(pTab->db)); return rc; } return pragmaVtabNext(pVtabCursor); } /* ** Pragma virtual table module xEof method. */ static int pragmaVtabEof(sqlite3_vtab_cursor *pVtabCursor){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)pVtabCursor; return (pCsr->pPragma==0); } /* The xColumn method simply returns the corresponding column from ** the PRAGMA. */ static int pragmaVtabColumn( sqlite3_vtab_cursor *pVtabCursor, sqlite3_context *ctx, int i ){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)pVtabCursor; PragmaVtab *pTab = (PragmaVtab*)(pVtabCursor->pVtab); if( iiHidden ){ sqlite3_result_value(ctx, sqlite3_column_value(pCsr->pPragma, i)); }else{ sqlite3_result_text(ctx, pCsr->azArg[i-pTab->iHidden],-1,SQLITE_TRANSIENT); } return SQLITE_OK; } /* ** Pragma virtual table module xRowid method. */ static int pragmaVtabRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *p){ PragmaVtabCursor *pCsr = (PragmaVtabCursor*)pVtabCursor; *p = pCsr->iRowid; return SQLITE_OK; } /* The pragma virtual table object */ static const sqlite3_module pragmaVtabModule = { 0, /* iVersion */ 0, /* xCreate - create a table */ pragmaVtabConnect, /* xConnect - connect to an existing table */ pragmaVtabBestIndex, /* xBestIndex - Determine search strategy */ pragmaVtabDisconnect, /* xDisconnect - Disconnect from a table */ 0, /* xDestroy - Drop a table */ pragmaVtabOpen, /* xOpen - open a cursor */ pragmaVtabClose, /* xClose - close a cursor */ pragmaVtabFilter, /* xFilter - configure scan constraints */ pragmaVtabNext, /* xNext - advance a cursor */ pragmaVtabEof, /* xEof */ pragmaVtabColumn, /* xColumn - read data */ pragmaVtabRowid, /* xRowid - read data */ 0, /* xUpdate - write data */ 0, /* xBegin - begin transaction */ 0, /* xSync - sync transaction */ 0, /* xCommit - commit transaction */ 0, /* xRollback - rollback transaction */ 0, /* xFindFunction - function overloading */ 0, /* xRename - rename the table */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0 /* xShadowName */ }; /* ** Check to see if zTabName is really the name of a pragma. If it is, ** then register an eponymous virtual table for that pragma and return ** a pointer to the Module object for the new virtual table. */ SQLITE_PRIVATE Module *sqlite3PragmaVtabRegister(sqlite3 *db, const char *zName){ const PragmaName *pName; assert( sqlite3_strnicmp(zName, "pragma_", 7)==0 ); pName = pragmaLocate(zName+7); if( pName==0 ) return 0; if( (pName->mPragFlg & (PragFlg_Result0|PragFlg_Result1))==0 ) return 0; assert( sqlite3HashFind(&db->aModule, zName)==0 ); return sqlite3VtabCreateModule(db, zName, &pragmaVtabModule, (void*)pName, 0); } #endif /* SQLITE_OMIT_VIRTUALTABLE */ #endif /* SQLITE_OMIT_PRAGMA */ /************** End of pragma.c **********************************************/ /************** Begin file prepare.c *****************************************/ /* ** 2005 May 25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the implementation of the sqlite3_prepare() ** interface, and routines that contribute to loading the database schema ** from disk. */ /* #include "sqliteInt.h" */ /* ** Fill the InitData structure with an error message that indicates ** that the database is corrupt. */ static void corruptSchema( InitData *pData, /* Initialization context */ const char *zObj, /* Object being parsed at the point of error */ const char *zExtra /* Error information */ ){ sqlite3 *db = pData->db; if( db->mallocFailed ){ pData->rc = SQLITE_NOMEM_BKPT; }else if( pData->pzErrMsg[0]!=0 ){ /* A error message has already been generated. Do not overwrite it */ }else if( pData->mInitFlags & INITFLAG_AlterTable ){ *pData->pzErrMsg = sqlite3DbStrDup(db, zExtra); pData->rc = SQLITE_ERROR; }else if( db->flags & SQLITE_WriteSchema ){ pData->rc = SQLITE_CORRUPT_BKPT; }else{ char *z; if( zObj==0 ) zObj = "?"; z = sqlite3MPrintf(db, "malformed database schema (%s)", zObj); if( zExtra && zExtra[0] ) z = sqlite3MPrintf(db, "%z - %s", z, zExtra); *pData->pzErrMsg = z; pData->rc = SQLITE_CORRUPT_BKPT; } } /* ** Check to see if any sibling index (another index on the same table) ** of pIndex has the same root page number, and if it does, return true. ** This would indicate a corrupt schema. */ SQLITE_PRIVATE int sqlite3IndexHasDuplicateRootPage(Index *pIndex){ Index *p; for(p=pIndex->pTable->pIndex; p; p=p->pNext){ if( p->tnum==pIndex->tnum && p!=pIndex ) return 1; } return 0; } /* forward declaration */ static int sqlite3Prepare( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ u32 prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ Vdbe *pReprepare, /* VM being reprepared */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ); /* ** This is the callback routine for the code that initializes the ** database. See sqlite3Init() below for additional information. ** This routine is also called from the OP_ParseSchema opcode of the VDBE. ** ** Each callback contains the following information: ** ** argv[0] = type of object: "table", "index", "trigger", or "view". ** argv[1] = name of thing being created ** argv[2] = associated table if an index or trigger ** argv[3] = root page number for table or index. 0 for trigger or view. ** argv[4] = SQL text for the CREATE statement. ** */ SQLITE_PRIVATE int sqlite3InitCallback(void *pInit, int argc, char **argv, char **NotUsed){ InitData *pData = (InitData*)pInit; sqlite3 *db = pData->db; int iDb = pData->iDb; assert( argc==5 ); UNUSED_PARAMETER2(NotUsed, argc); assert( sqlite3_mutex_held(db->mutex) ); db->mDbFlags |= DBFLAG_EncodingFixed; pData->nInitRow++; if( db->mallocFailed ){ corruptSchema(pData, argv[1], 0); return 1; } assert( iDb>=0 && iDbnDb ); if( argv==0 ) return 0; /* Might happen if EMPTY_RESULT_CALLBACKS are on */ if( argv[3]==0 ){ corruptSchema(pData, argv[1], 0); }else if( sqlite3_strnicmp(argv[4],"create ",7)==0 ){ /* Call the parser to process a CREATE TABLE, INDEX or VIEW. ** But because db->init.busy is set to 1, no VDBE code is generated ** or executed. All the parser does is build the internal data ** structures that describe the table, index, or view. */ int rc; u8 saved_iDb = db->init.iDb; sqlite3_stmt *pStmt; TESTONLY(int rcp); /* Return code from sqlite3_prepare() */ assert( db->init.busy ); db->init.iDb = iDb; if( sqlite3GetUInt32(argv[3], &db->init.newTnum)==0 || (db->init.newTnum>pData->mxPage && pData->mxPage>0) ){ if( sqlite3Config.bExtraSchemaChecks ){ corruptSchema(pData, argv[1], "invalid rootpage"); } } db->init.orphanTrigger = 0; db->init.azInit = argv; pStmt = 0; TESTONLY(rcp = ) sqlite3Prepare(db, argv[4], -1, 0, 0, &pStmt, 0); rc = db->errCode; assert( (rc&0xFF)==(rcp&0xFF) ); db->init.iDb = saved_iDb; /* assert( saved_iDb==0 || (db->mDbFlags & DBFLAG_Vacuum)!=0 ); */ if( SQLITE_OK!=rc ){ if( db->init.orphanTrigger ){ assert( iDb==1 ); }else{ if( rc > pData->rc ) pData->rc = rc; if( rc==SQLITE_NOMEM ){ sqlite3OomFault(db); }else if( rc!=SQLITE_INTERRUPT && (rc&0xFF)!=SQLITE_LOCKED ){ corruptSchema(pData, argv[1], sqlite3_errmsg(db)); } } } sqlite3_finalize(pStmt); }else if( argv[1]==0 || (argv[4]!=0 && argv[4][0]!=0) ){ corruptSchema(pData, argv[1], 0); }else{ /* If the SQL column is blank it means this is an index that ** was created to be the PRIMARY KEY or to fulfill a UNIQUE ** constraint for a CREATE TABLE. The index should have already ** been created when we processed the CREATE TABLE. All we have ** to do here is record the root page number for that index. */ Index *pIndex; pIndex = sqlite3FindIndex(db, argv[1], db->aDb[iDb].zDbSName); if( pIndex==0 ){ corruptSchema(pData, argv[1], "orphan index"); }else if( sqlite3GetUInt32(argv[3],&pIndex->tnum)==0 || pIndex->tnum<2 || pIndex->tnum>pData->mxPage || sqlite3IndexHasDuplicateRootPage(pIndex) ){ if( sqlite3Config.bExtraSchemaChecks ){ corruptSchema(pData, argv[1], "invalid rootpage"); } } } return 0; } /* ** Attempt to read the database schema and initialize internal ** data structures for a single database file. The index of the ** database file is given by iDb. iDb==0 is used for the main ** database. iDb==1 should never be used. iDb>=2 is used for ** auxiliary databases. Return one of the SQLITE_ error codes to ** indicate success or failure. */ SQLITE_PRIVATE int sqlite3InitOne(sqlite3 *db, int iDb, char **pzErrMsg, u32 mFlags){ int rc; int i; #ifndef SQLITE_OMIT_DEPRECATED int size; #endif Db *pDb; char const *azArg[6]; int meta[5]; InitData initData; const char *zSchemaTabName; int openedTransaction = 0; int mask = ((db->mDbFlags & DBFLAG_EncodingFixed) | ~DBFLAG_EncodingFixed); assert( (db->mDbFlags & DBFLAG_SchemaKnownOk)==0 ); assert( iDb>=0 && iDbnDb ); assert( db->aDb[iDb].pSchema ); assert( sqlite3_mutex_held(db->mutex) ); assert( iDb==1 || sqlite3BtreeHoldsMutex(db->aDb[iDb].pBt) ); db->init.busy = 1; /* Construct the in-memory representation schema tables (sqlite_schema or ** sqlite_temp_schema) by invoking the parser directly. The appropriate ** table name will be inserted automatically by the parser so we can just ** use the abbreviation "x" here. The parser will also automatically tag ** the schema table as read-only. */ azArg[0] = "table"; azArg[1] = zSchemaTabName = SCHEMA_TABLE(iDb); azArg[2] = azArg[1]; azArg[3] = "1"; azArg[4] = "CREATE TABLE x(type text,name text,tbl_name text," "rootpage int,sql text)"; azArg[5] = 0; initData.db = db; initData.iDb = iDb; initData.rc = SQLITE_OK; initData.pzErrMsg = pzErrMsg; initData.mInitFlags = mFlags; initData.nInitRow = 0; initData.mxPage = 0; sqlite3InitCallback(&initData, 5, (char **)azArg, 0); db->mDbFlags &= mask; if( initData.rc ){ rc = initData.rc; goto error_out; } /* Create a cursor to hold the database open */ pDb = &db->aDb[iDb]; if( pDb->pBt==0 ){ assert( iDb==1 ); DbSetProperty(db, 1, DB_SchemaLoaded); rc = SQLITE_OK; goto error_out; } /* If there is not already a read-only (or read-write) transaction opened ** on the b-tree database, open one now. If a transaction is opened, it ** will be closed before this function returns. */ sqlite3BtreeEnter(pDb->pBt); if( !sqlite3BtreeIsInReadTrans(pDb->pBt) ){ rc = sqlite3BtreeBeginTrans(pDb->pBt, 0, 0); if( rc!=SQLITE_OK ){ sqlite3SetString(pzErrMsg, db, sqlite3ErrStr(rc)); goto initone_error_out; } openedTransaction = 1; } /* Get the database meta information. ** ** Meta values are as follows: ** meta[0] Schema cookie. Changes with each schema change. ** meta[1] File format of schema layer. ** meta[2] Size of the page cache. ** meta[3] Largest rootpage (auto/incr_vacuum mode) ** meta[4] Db text encoding. 1:UTF-8 2:UTF-16LE 3:UTF-16BE ** meta[5] User version ** meta[6] Incremental vacuum mode ** meta[7] unused ** meta[8] unused ** meta[9] unused ** ** Note: The #defined SQLITE_UTF* symbols in sqliteInt.h correspond to ** the possible values of meta[4]. */ for(i=0; ipBt, i+1, (u32 *)&meta[i]); } if( (db->flags & SQLITE_ResetDatabase)!=0 ){ memset(meta, 0, sizeof(meta)); } pDb->pSchema->schema_cookie = meta[BTREE_SCHEMA_VERSION-1]; /* If opening a non-empty database, check the text encoding. For the ** main database, set sqlite3.enc to the encoding of the main database. ** For an attached db, it is an error if the encoding is not the same ** as sqlite3.enc. */ if( meta[BTREE_TEXT_ENCODING-1] ){ /* text encoding */ if( iDb==0 && (db->mDbFlags & DBFLAG_EncodingFixed)==0 ){ u8 encoding; #ifndef SQLITE_OMIT_UTF16 /* If opening the main database, set ENC(db). */ encoding = (u8)meta[BTREE_TEXT_ENCODING-1] & 3; if( encoding==0 ) encoding = SQLITE_UTF8; #else encoding = SQLITE_UTF8; #endif sqlite3SetTextEncoding(db, encoding); }else{ /* If opening an attached database, the encoding much match ENC(db) */ if( (meta[BTREE_TEXT_ENCODING-1] & 3)!=ENC(db) ){ sqlite3SetString(pzErrMsg, db, "attached databases must use the same" " text encoding as main database"); rc = SQLITE_ERROR; goto initone_error_out; } } } pDb->pSchema->enc = ENC(db); if( pDb->pSchema->cache_size==0 ){ #ifndef SQLITE_OMIT_DEPRECATED size = sqlite3AbsInt32(meta[BTREE_DEFAULT_CACHE_SIZE-1]); if( size==0 ){ size = SQLITE_DEFAULT_CACHE_SIZE; } pDb->pSchema->cache_size = size; #else pDb->pSchema->cache_size = SQLITE_DEFAULT_CACHE_SIZE; #endif sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size); } /* ** file_format==1 Version 3.0.0. ** file_format==2 Version 3.1.3. // ALTER TABLE ADD COLUMN ** file_format==3 Version 3.1.4. // ditto but with non-NULL defaults ** file_format==4 Version 3.3.0. // DESC indices. Boolean constants */ pDb->pSchema->file_format = (u8)meta[BTREE_FILE_FORMAT-1]; if( pDb->pSchema->file_format==0 ){ pDb->pSchema->file_format = 1; } if( pDb->pSchema->file_format>SQLITE_MAX_FILE_FORMAT ){ sqlite3SetString(pzErrMsg, db, "unsupported file format"); rc = SQLITE_ERROR; goto initone_error_out; } /* Ticket #2804: When we open a database in the newer file format, ** clear the legacy_file_format pragma flag so that a VACUUM will ** not downgrade the database and thus invalidate any descending ** indices that the user might have created. */ if( iDb==0 && meta[BTREE_FILE_FORMAT-1]>=4 ){ db->flags &= ~(u64)SQLITE_LegacyFileFmt; } /* Read the schema information out of the schema tables */ assert( db->init.busy ); initData.mxPage = sqlite3BtreeLastPage(pDb->pBt); { char *zSql; zSql = sqlite3MPrintf(db, "SELECT*FROM\"%w\".%s ORDER BY rowid", db->aDb[iDb].zDbSName, zSchemaTabName); #ifndef SQLITE_OMIT_AUTHORIZATION { sqlite3_xauth xAuth; xAuth = db->xAuth; db->xAuth = 0; #endif rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0); #ifndef SQLITE_OMIT_AUTHORIZATION db->xAuth = xAuth; } #endif if( rc==SQLITE_OK ) rc = initData.rc; sqlite3DbFree(db, zSql); #ifndef SQLITE_OMIT_ANALYZE if( rc==SQLITE_OK ){ sqlite3AnalysisLoad(db, iDb); } #endif } if( db->mallocFailed ){ rc = SQLITE_NOMEM_BKPT; sqlite3ResetAllSchemasOfConnection(db); } if( rc==SQLITE_OK || (db->flags&SQLITE_NoSchemaError)){ /* Black magic: If the SQLITE_NoSchemaError flag is set, then consider ** the schema loaded, even if errors occurred. In this situation the ** current sqlite3_prepare() operation will fail, but the following one ** will attempt to compile the supplied statement against whatever subset ** of the schema was loaded before the error occurred. The primary ** purpose of this is to allow access to the sqlite_schema table ** even when its contents have been corrupted. */ DbSetProperty(db, iDb, DB_SchemaLoaded); rc = SQLITE_OK; } /* Jump here for an error that occurs after successfully allocating ** curMain and calling sqlite3BtreeEnter(). For an error that occurs ** before that point, jump to error_out. */ initone_error_out: if( openedTransaction ){ sqlite3BtreeCommit(pDb->pBt); } sqlite3BtreeLeave(pDb->pBt); error_out: if( rc ){ if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){ sqlite3OomFault(db); } sqlite3ResetOneSchema(db, iDb); } db->init.busy = 0; return rc; } /* ** Initialize all database files - the main database file, the file ** used to store temporary tables, and any additional database files ** created using ATTACH statements. Return a success code. If an ** error occurs, write an error message into *pzErrMsg. ** ** After a database is initialized, the DB_SchemaLoaded bit is set ** bit is set in the flags field of the Db structure. */ SQLITE_PRIVATE int sqlite3Init(sqlite3 *db, char **pzErrMsg){ int i, rc; int commit_internal = !(db->mDbFlags&DBFLAG_SchemaChange); assert( sqlite3_mutex_held(db->mutex) ); assert( sqlite3BtreeHoldsMutex(db->aDb[0].pBt) ); assert( db->init.busy==0 ); ENC(db) = SCHEMA_ENC(db); assert( db->nDb>0 ); /* Do the main schema first */ if( !DbHasProperty(db, 0, DB_SchemaLoaded) ){ rc = sqlite3InitOne(db, 0, pzErrMsg, 0); if( rc ) return rc; } /* All other schemas after the main schema. The "temp" schema must be last */ for(i=db->nDb-1; i>0; i--){ assert( i==1 || sqlite3BtreeHoldsMutex(db->aDb[i].pBt) ); if( !DbHasProperty(db, i, DB_SchemaLoaded) ){ rc = sqlite3InitOne(db, i, pzErrMsg, 0); if( rc ) return rc; } } if( commit_internal ){ sqlite3CommitInternalChanges(db); } return SQLITE_OK; } /* ** This routine is a no-op if the database schema is already initialized. ** Otherwise, the schema is loaded. An error code is returned. */ SQLITE_PRIVATE int sqlite3ReadSchema(Parse *pParse){ int rc = SQLITE_OK; sqlite3 *db = pParse->db; assert( sqlite3_mutex_held(db->mutex) ); if( !db->init.busy ){ rc = sqlite3Init(db, &pParse->zErrMsg); if( rc!=SQLITE_OK ){ pParse->rc = rc; pParse->nErr++; }else if( db->noSharedCache ){ db->mDbFlags |= DBFLAG_SchemaKnownOk; } } return rc; } /* ** Check schema cookies in all databases. If any cookie is out ** of date set pParse->rc to SQLITE_SCHEMA. If all schema cookies ** make no changes to pParse->rc. */ static void schemaIsValid(Parse *pParse){ sqlite3 *db = pParse->db; int iDb; int rc; int cookie; assert( pParse->checkSchema ); assert( sqlite3_mutex_held(db->mutex) ); for(iDb=0; iDbnDb; iDb++){ int openedTransaction = 0; /* True if a transaction is opened */ Btree *pBt = db->aDb[iDb].pBt; /* Btree database to read cookie from */ if( pBt==0 ) continue; /* If there is not already a read-only (or read-write) transaction opened ** on the b-tree database, open one now. If a transaction is opened, it ** will be closed immediately after reading the meta-value. */ if( !sqlite3BtreeIsInReadTrans(pBt) ){ rc = sqlite3BtreeBeginTrans(pBt, 0, 0); if( rc==SQLITE_NOMEM || rc==SQLITE_IOERR_NOMEM ){ sqlite3OomFault(db); } if( rc!=SQLITE_OK ) return; openedTransaction = 1; } /* Read the schema cookie from the database. If it does not match the ** value stored as part of the in-memory schema representation, ** set Parse.rc to SQLITE_SCHEMA. */ sqlite3BtreeGetMeta(pBt, BTREE_SCHEMA_VERSION, (u32 *)&cookie); assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( cookie!=db->aDb[iDb].pSchema->schema_cookie ){ sqlite3ResetOneSchema(db, iDb); pParse->rc = SQLITE_SCHEMA; } /* Close the transaction, if one was opened. */ if( openedTransaction ){ sqlite3BtreeCommit(pBt); } } } /* ** Convert a schema pointer into the iDb index that indicates ** which database file in db->aDb[] the schema refers to. ** ** If the same database is attached more than once, the first ** attached database is returned. */ SQLITE_PRIVATE int sqlite3SchemaToIndex(sqlite3 *db, Schema *pSchema){ int i = -32768; /* If pSchema is NULL, then return -32768. This happens when code in ** expr.c is trying to resolve a reference to a transient table (i.e. one ** created by a sub-select). In this case the return value of this ** function should never be used. ** ** We return -32768 instead of the more usual -1 simply because using ** -32768 as the incorrect index into db->aDb[] is much ** more likely to cause a segfault than -1 (of course there are assert() ** statements too, but it never hurts to play the odds) and ** -32768 will still fit into a 16-bit signed integer. */ assert( sqlite3_mutex_held(db->mutex) ); if( pSchema ){ for(i=0; 1; i++){ assert( inDb ); if( db->aDb[i].pSchema==pSchema ){ break; } } assert( i>=0 && inDb ); } return i; } /* ** Deallocate a single AggInfo object */ static void agginfoFree(sqlite3 *db, AggInfo *p){ sqlite3DbFree(db, p->aCol); sqlite3DbFree(db, p->aFunc); sqlite3DbFree(db, p); } /* ** Free all memory allocations in the pParse object */ SQLITE_PRIVATE void sqlite3ParserReset(Parse *pParse){ sqlite3 *db = pParse->db; AggInfo *pThis = pParse->pAggList; while( pThis ){ AggInfo *pNext = pThis->pNext; agginfoFree(db, pThis); pThis = pNext; } sqlite3DbFree(db, pParse->aLabel); sqlite3ExprListDelete(db, pParse->pConstExpr); if( db ){ assert( db->lookaside.bDisable >= pParse->disableLookaside ); db->lookaside.bDisable -= pParse->disableLookaside; db->lookaside.sz = db->lookaside.bDisable ? 0 : db->lookaside.szTrue; } pParse->disableLookaside = 0; } /* ** Compile the UTF-8 encoded SQL statement zSql into a statement handle. */ static int sqlite3Prepare( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ u32 prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ Vdbe *pReprepare, /* VM being reprepared */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ){ char *zErrMsg = 0; /* Error message */ int rc = SQLITE_OK; /* Result code */ int i; /* Loop counter */ Parse sParse; /* Parsing context */ memset(&sParse, 0, PARSE_HDR_SZ); memset(PARSE_TAIL(&sParse), 0, PARSE_TAIL_SZ); sParse.pReprepare = pReprepare; assert( ppStmt && *ppStmt==0 ); /* assert( !db->mallocFailed ); // not true with SQLITE_USE_ALLOCA */ assert( sqlite3_mutex_held(db->mutex) ); /* For a long-term use prepared statement avoid the use of ** lookaside memory. */ if( prepFlags & SQLITE_PREPARE_PERSISTENT ){ sParse.disableLookaside++; DisableLookaside; } sParse.disableVtab = (prepFlags & SQLITE_PREPARE_NO_VTAB)!=0; /* Check to verify that it is possible to get a read lock on all ** database schemas. The inability to get a read lock indicates that ** some other database connection is holding a write-lock, which in ** turn means that the other connection has made uncommitted changes ** to the schema. ** ** Were we to proceed and prepare the statement against the uncommitted ** schema changes and if those schema changes are subsequently rolled ** back and different changes are made in their place, then when this ** prepared statement goes to run the schema cookie would fail to detect ** the schema change. Disaster would follow. ** ** This thread is currently holding mutexes on all Btrees (because ** of the sqlite3BtreeEnterAll() in sqlite3LockAndPrepare()) so it ** is not possible for another thread to start a new schema change ** while this routine is running. Hence, we do not need to hold ** locks on the schema, we just need to make sure nobody else is ** holding them. ** ** Note that setting READ_UNCOMMITTED overrides most lock detection, ** but it does *not* override schema lock detection, so this all still ** works even if READ_UNCOMMITTED is set. */ if( !db->noSharedCache ){ for(i=0; inDb; i++) { Btree *pBt = db->aDb[i].pBt; if( pBt ){ assert( sqlite3BtreeHoldsMutex(pBt) ); rc = sqlite3BtreeSchemaLocked(pBt); if( rc ){ const char *zDb = db->aDb[i].zDbSName; sqlite3ErrorWithMsg(db, rc, "database schema is locked: %s", zDb); testcase( db->flags & SQLITE_ReadUncommit ); goto end_prepare; } } } } sqlite3VtabUnlockList(db); sParse.db = db; if( nBytes>=0 && (nBytes==0 || zSql[nBytes-1]!=0) ){ char *zSqlCopy; int mxLen = db->aLimit[SQLITE_LIMIT_SQL_LENGTH]; testcase( nBytes==mxLen ); testcase( nBytes==mxLen+1 ); if( nBytes>mxLen ){ sqlite3ErrorWithMsg(db, SQLITE_TOOBIG, "statement too long"); rc = sqlite3ApiExit(db, SQLITE_TOOBIG); goto end_prepare; } zSqlCopy = sqlite3DbStrNDup(db, zSql, nBytes); if( zSqlCopy ){ sqlite3RunParser(&sParse, zSqlCopy, &zErrMsg); sParse.zTail = &zSql[sParse.zTail-zSqlCopy]; sqlite3DbFree(db, zSqlCopy); }else{ sParse.zTail = &zSql[nBytes]; } }else{ sqlite3RunParser(&sParse, zSql, &zErrMsg); } assert( 0==sParse.nQueryLoop ); if( sParse.rc==SQLITE_DONE ){ sParse.rc = SQLITE_OK; } if( sParse.checkSchema ){ schemaIsValid(&sParse); } if( pzTail ){ *pzTail = sParse.zTail; } if( db->init.busy==0 ){ sqlite3VdbeSetSql(sParse.pVdbe, zSql, (int)(sParse.zTail-zSql), prepFlags); } if( db->mallocFailed ){ sParse.rc = SQLITE_NOMEM_BKPT; } rc = sParse.rc; if( rc!=SQLITE_OK ){ if( sParse.pVdbe ) sqlite3VdbeFinalize(sParse.pVdbe); assert(!(*ppStmt)); }else{ *ppStmt = (sqlite3_stmt*)sParse.pVdbe; } if( zErrMsg ){ sqlite3ErrorWithMsg(db, rc, "%s", zErrMsg); sqlite3DbFree(db, zErrMsg); }else{ sqlite3Error(db, rc); } /* Delete any TriggerPrg structures allocated while parsing this statement. */ while( sParse.pTriggerPrg ){ TriggerPrg *pT = sParse.pTriggerPrg; sParse.pTriggerPrg = pT->pNext; sqlite3DbFree(db, pT); } end_prepare: sqlite3ParserReset(&sParse); return rc; } static int sqlite3LockAndPrepare( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ u32 prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ Vdbe *pOld, /* VM being reprepared */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ){ int rc; int cnt = 0; #ifdef SQLITE_ENABLE_API_ARMOR if( ppStmt==0 ) return SQLITE_MISUSE_BKPT; #endif *ppStmt = 0; if( !sqlite3SafetyCheckOk(db)||zSql==0 ){ return SQLITE_MISUSE_BKPT; } sqlite3_mutex_enter(db->mutex); sqlite3BtreeEnterAll(db); do{ /* Make multiple attempts to compile the SQL, until it either succeeds ** or encounters a permanent error. A schema problem after one schema ** reset is considered a permanent error. */ rc = sqlite3Prepare(db, zSql, nBytes, prepFlags, pOld, ppStmt, pzTail); assert( rc==SQLITE_OK || *ppStmt==0 ); }while( rc==SQLITE_ERROR_RETRY || (rc==SQLITE_SCHEMA && (sqlite3ResetOneSchema(db,-1), cnt++)==0) ); sqlite3BtreeLeaveAll(db); rc = sqlite3ApiExit(db, rc); assert( (rc&db->errMask)==rc ); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Rerun the compilation of a statement after a schema change. ** ** If the statement is successfully recompiled, return SQLITE_OK. Otherwise, ** if the statement cannot be recompiled because another connection has ** locked the sqlite3_schema table, return SQLITE_LOCKED. If any other error ** occurs, return SQLITE_SCHEMA. */ SQLITE_PRIVATE int sqlite3Reprepare(Vdbe *p){ int rc; sqlite3_stmt *pNew; const char *zSql; sqlite3 *db; u8 prepFlags; assert( sqlite3_mutex_held(sqlite3VdbeDb(p)->mutex) ); zSql = sqlite3_sql((sqlite3_stmt *)p); assert( zSql!=0 ); /* Reprepare only called for prepare_v2() statements */ db = sqlite3VdbeDb(p); assert( sqlite3_mutex_held(db->mutex) ); prepFlags = sqlite3VdbePrepareFlags(p); rc = sqlite3LockAndPrepare(db, zSql, -1, prepFlags, p, &pNew, 0); if( rc ){ if( rc==SQLITE_NOMEM ){ sqlite3OomFault(db); } assert( pNew==0 ); return rc; }else{ assert( pNew!=0 ); } sqlite3VdbeSwap((Vdbe*)pNew, p); sqlite3TransferBindings(pNew, (sqlite3_stmt*)p); sqlite3VdbeResetStepResult((Vdbe*)pNew); sqlite3VdbeFinalize((Vdbe*)pNew); return SQLITE_OK; } /* ** Two versions of the official API. Legacy and new use. In the legacy ** version, the original SQL text is not saved in the prepared statement ** and so if a schema change occurs, SQLITE_SCHEMA is returned by ** sqlite3_step(). In the new version, the original SQL text is retained ** and the statement is automatically recompiled if an schema change ** occurs. */ SQLITE_API int sqlite3_prepare( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ){ int rc; rc = sqlite3LockAndPrepare(db,zSql,nBytes,0,0,ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ return rc; } SQLITE_API int sqlite3_prepare_v2( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ){ int rc; /* EVIDENCE-OF: R-37923-12173 The sqlite3_prepare_v2() interface works ** exactly the same as sqlite3_prepare_v3() with a zero prepFlags ** parameter. ** ** Proof in that the 5th parameter to sqlite3LockAndPrepare is 0 */ rc = sqlite3LockAndPrepare(db,zSql,nBytes,SQLITE_PREPARE_SAVESQL,0, ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); return rc; } SQLITE_API int sqlite3_prepare_v3( sqlite3 *db, /* Database handle. */ const char *zSql, /* UTF-8 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ unsigned int prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const char **pzTail /* OUT: End of parsed string */ ){ int rc; /* EVIDENCE-OF: R-56861-42673 sqlite3_prepare_v3() differs from ** sqlite3_prepare_v2() only in having the extra prepFlags parameter, ** which is a bit array consisting of zero or more of the ** SQLITE_PREPARE_* flags. ** ** Proof by comparison to the implementation of sqlite3_prepare_v2() ** directly above. */ rc = sqlite3LockAndPrepare(db,zSql,nBytes, SQLITE_PREPARE_SAVESQL|(prepFlags&SQLITE_PREPARE_MASK), 0,ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); return rc; } #ifndef SQLITE_OMIT_UTF16 /* ** Compile the UTF-16 encoded SQL statement zSql into a statement handle. */ static int sqlite3Prepare16( sqlite3 *db, /* Database handle. */ const void *zSql, /* UTF-16 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ u32 prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const void **pzTail /* OUT: End of parsed string */ ){ /* This function currently works by first transforming the UTF-16 ** encoded string to UTF-8, then invoking sqlite3_prepare(). The ** tricky bit is figuring out the pointer to return in *pzTail. */ char *zSql8; const char *zTail8 = 0; int rc = SQLITE_OK; #ifdef SQLITE_ENABLE_API_ARMOR if( ppStmt==0 ) return SQLITE_MISUSE_BKPT; #endif *ppStmt = 0; if( !sqlite3SafetyCheckOk(db)||zSql==0 ){ return SQLITE_MISUSE_BKPT; } if( nBytes>=0 ){ int sz; const char *z = (const char*)zSql; for(sz=0; szmutex); zSql8 = sqlite3Utf16to8(db, zSql, nBytes, SQLITE_UTF16NATIVE); if( zSql8 ){ rc = sqlite3LockAndPrepare(db, zSql8, -1, prepFlags, 0, ppStmt, &zTail8); } if( zTail8 && pzTail ){ /* If sqlite3_prepare returns a tail pointer, we calculate the ** equivalent pointer into the UTF-16 string by counting the unicode ** characters between zSql8 and zTail8, and then returning a pointer ** the same number of characters into the UTF-16 string. */ int chars_parsed = sqlite3Utf8CharLen(zSql8, (int)(zTail8-zSql8)); *pzTail = (u8 *)zSql + sqlite3Utf16ByteLen(zSql, chars_parsed); } sqlite3DbFree(db, zSql8); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Two versions of the official API. Legacy and new use. In the legacy ** version, the original SQL text is not saved in the prepared statement ** and so if a schema change occurs, SQLITE_SCHEMA is returned by ** sqlite3_step(). In the new version, the original SQL text is retained ** and the statement is automatically recompiled if an schema change ** occurs. */ SQLITE_API int sqlite3_prepare16( sqlite3 *db, /* Database handle. */ const void *zSql, /* UTF-16 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const void **pzTail /* OUT: End of parsed string */ ){ int rc; rc = sqlite3Prepare16(db,zSql,nBytes,0,ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ return rc; } SQLITE_API int sqlite3_prepare16_v2( sqlite3 *db, /* Database handle. */ const void *zSql, /* UTF-16 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const void **pzTail /* OUT: End of parsed string */ ){ int rc; rc = sqlite3Prepare16(db,zSql,nBytes,SQLITE_PREPARE_SAVESQL,ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ return rc; } SQLITE_API int sqlite3_prepare16_v3( sqlite3 *db, /* Database handle. */ const void *zSql, /* UTF-16 encoded SQL statement. */ int nBytes, /* Length of zSql in bytes. */ unsigned int prepFlags, /* Zero or more SQLITE_PREPARE_* flags */ sqlite3_stmt **ppStmt, /* OUT: A pointer to the prepared statement */ const void **pzTail /* OUT: End of parsed string */ ){ int rc; rc = sqlite3Prepare16(db,zSql,nBytes, SQLITE_PREPARE_SAVESQL|(prepFlags&SQLITE_PREPARE_MASK), ppStmt,pzTail); assert( rc==SQLITE_OK || ppStmt==0 || *ppStmt==0 ); /* VERIFY: F13021 */ return rc; } #endif /* SQLITE_OMIT_UTF16 */ /************** End of prepare.c *********************************************/ /************** Begin file select.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that are called by the parser ** to handle SELECT statements in SQLite. */ /* #include "sqliteInt.h" */ /* ** An instance of the following object is used to record information about ** how to process the DISTINCT keyword, to simplify passing that information ** into the selectInnerLoop() routine. */ typedef struct DistinctCtx DistinctCtx; struct DistinctCtx { u8 isTnct; /* True if the DISTINCT keyword is present */ u8 eTnctType; /* One of the WHERE_DISTINCT_* operators */ int tabTnct; /* Ephemeral table used for DISTINCT processing */ int addrTnct; /* Address of OP_OpenEphemeral opcode for tabTnct */ }; /* ** An instance of the following object is used to record information about ** the ORDER BY (or GROUP BY) clause of query is being coded. ** ** The aDefer[] array is used by the sorter-references optimization. For ** example, assuming there is no index that can be used for the ORDER BY, ** for the query: ** ** SELECT a, bigblob FROM t1 ORDER BY a LIMIT 10; ** ** it may be more efficient to add just the "a" values to the sorter, and ** retrieve the associated "bigblob" values directly from table t1 as the ** 10 smallest "a" values are extracted from the sorter. ** ** When the sorter-reference optimization is used, there is one entry in the ** aDefer[] array for each database table that may be read as values are ** extracted from the sorter. */ typedef struct SortCtx SortCtx; struct SortCtx { ExprList *pOrderBy; /* The ORDER BY (or GROUP BY clause) */ int nOBSat; /* Number of ORDER BY terms satisfied by indices */ int iECursor; /* Cursor number for the sorter */ int regReturn; /* Register holding block-output return address */ int labelBkOut; /* Start label for the block-output subroutine */ int addrSortIndex; /* Address of the OP_SorterOpen or OP_OpenEphemeral */ int labelDone; /* Jump here when done, ex: LIMIT reached */ int labelOBLopt; /* Jump here when sorter is full */ u8 sortFlags; /* Zero or more SORTFLAG_* bits */ #ifdef SQLITE_ENABLE_SORTER_REFERENCES u8 nDefer; /* Number of valid entries in aDefer[] */ struct DeferredCsr { Table *pTab; /* Table definition */ int iCsr; /* Cursor number for table */ int nKey; /* Number of PK columns for table pTab (>=1) */ } aDefer[4]; #endif struct RowLoadInfo *pDeferredRowLoad; /* Deferred row loading info or NULL */ }; #define SORTFLAG_UseSorter 0x01 /* Use SorterOpen instead of OpenEphemeral */ /* ** Delete all the content of a Select structure. Deallocate the structure ** itself depending on the value of bFree ** ** If bFree==1, call sqlite3DbFree() on the p object. ** If bFree==0, Leave the first Select object unfreed */ static void clearSelect(sqlite3 *db, Select *p, int bFree){ while( p ){ Select *pPrior = p->pPrior; sqlite3ExprListDelete(db, p->pEList); sqlite3SrcListDelete(db, p->pSrc); sqlite3ExprDelete(db, p->pWhere); sqlite3ExprListDelete(db, p->pGroupBy); sqlite3ExprDelete(db, p->pHaving); sqlite3ExprListDelete(db, p->pOrderBy); sqlite3ExprDelete(db, p->pLimit); #ifndef SQLITE_OMIT_WINDOWFUNC if( OK_IF_ALWAYS_TRUE(p->pWinDefn) ){ sqlite3WindowListDelete(db, p->pWinDefn); } #endif if( OK_IF_ALWAYS_TRUE(p->pWith) ) sqlite3WithDelete(db, p->pWith); if( bFree ) sqlite3DbFreeNN(db, p); p = pPrior; bFree = 1; } } /* ** Initialize a SelectDest structure. */ SQLITE_PRIVATE void sqlite3SelectDestInit(SelectDest *pDest, int eDest, int iParm){ pDest->eDest = (u8)eDest; pDest->iSDParm = iParm; pDest->iSDParm2 = 0; pDest->zAffSdst = 0; pDest->iSdst = 0; pDest->nSdst = 0; } /* ** Allocate a new Select structure and return a pointer to that ** structure. */ SQLITE_PRIVATE Select *sqlite3SelectNew( Parse *pParse, /* Parsing context */ ExprList *pEList, /* which columns to include in the result */ SrcList *pSrc, /* the FROM clause -- which tables to scan */ Expr *pWhere, /* the WHERE clause */ ExprList *pGroupBy, /* the GROUP BY clause */ Expr *pHaving, /* the HAVING clause */ ExprList *pOrderBy, /* the ORDER BY clause */ u32 selFlags, /* Flag parameters, such as SF_Distinct */ Expr *pLimit /* LIMIT value. NULL means not used */ ){ Select *pNew, *pAllocated; Select standin; pAllocated = pNew = sqlite3DbMallocRawNN(pParse->db, sizeof(*pNew) ); if( pNew==0 ){ assert( pParse->db->mallocFailed ); pNew = &standin; } if( pEList==0 ){ pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(pParse->db,TK_ASTERISK,0)); } pNew->pEList = pEList; pNew->op = TK_SELECT; pNew->selFlags = selFlags; pNew->iLimit = 0; pNew->iOffset = 0; pNew->selId = ++pParse->nSelect; pNew->addrOpenEphm[0] = -1; pNew->addrOpenEphm[1] = -1; pNew->nSelectRow = 0; if( pSrc==0 ) pSrc = sqlite3DbMallocZero(pParse->db, sizeof(*pSrc)); pNew->pSrc = pSrc; pNew->pWhere = pWhere; pNew->pGroupBy = pGroupBy; pNew->pHaving = pHaving; pNew->pOrderBy = pOrderBy; pNew->pPrior = 0; pNew->pNext = 0; pNew->pLimit = pLimit; pNew->pWith = 0; #ifndef SQLITE_OMIT_WINDOWFUNC pNew->pWin = 0; pNew->pWinDefn = 0; #endif if( pParse->db->mallocFailed ) { clearSelect(pParse->db, pNew, pNew!=&standin); pAllocated = 0; }else{ assert( pNew->pSrc!=0 || pParse->nErr>0 ); } return pAllocated; } /* ** Delete the given Select structure and all of its substructures. */ SQLITE_PRIVATE void sqlite3SelectDelete(sqlite3 *db, Select *p){ if( OK_IF_ALWAYS_TRUE(p) ) clearSelect(db, p, 1); } /* ** Return a pointer to the right-most SELECT statement in a compound. */ static Select *findRightmost(Select *p){ while( p->pNext ) p = p->pNext; return p; } /* ** Given 1 to 3 identifiers preceding the JOIN keyword, determine the ** type of join. Return an integer constant that expresses that type ** in terms of the following bit values: ** ** JT_INNER ** JT_CROSS ** JT_OUTER ** JT_NATURAL ** JT_LEFT ** JT_RIGHT ** ** A full outer join is the combination of JT_LEFT and JT_RIGHT. ** ** If an illegal or unsupported join type is seen, then still return ** a join type, but put an error in the pParse structure. */ SQLITE_PRIVATE int sqlite3JoinType(Parse *pParse, Token *pA, Token *pB, Token *pC){ int jointype = 0; Token *apAll[3]; Token *p; /* 0123456789 123456789 123456789 123 */ static const char zKeyText[] = "naturaleftouterightfullinnercross"; static const struct { u8 i; /* Beginning of keyword text in zKeyText[] */ u8 nChar; /* Length of the keyword in characters */ u8 code; /* Join type mask */ } aKeyword[] = { /* natural */ { 0, 7, JT_NATURAL }, /* left */ { 6, 4, JT_LEFT|JT_OUTER }, /* outer */ { 10, 5, JT_OUTER }, /* right */ { 14, 5, JT_RIGHT|JT_OUTER }, /* full */ { 19, 4, JT_LEFT|JT_RIGHT|JT_OUTER }, /* inner */ { 23, 5, JT_INNER }, /* cross */ { 28, 5, JT_INNER|JT_CROSS }, }; int i, j; apAll[0] = pA; apAll[1] = pB; apAll[2] = pC; for(i=0; i<3 && apAll[i]; i++){ p = apAll[i]; for(j=0; jn==aKeyword[j].nChar && sqlite3StrNICmp((char*)p->z, &zKeyText[aKeyword[j].i], p->n)==0 ){ jointype |= aKeyword[j].code; break; } } testcase( j==0 || j==1 || j==2 || j==3 || j==4 || j==5 || j==6 ); if( j>=ArraySize(aKeyword) ){ jointype |= JT_ERROR; break; } } if( (jointype & (JT_INNER|JT_OUTER))==(JT_INNER|JT_OUTER) || (jointype & JT_ERROR)!=0 ){ const char *zSp = " "; assert( pB!=0 ); if( pC==0 ){ zSp++; } sqlite3ErrorMsg(pParse, "unknown or unsupported join type: " "%T %T%s%T", pA, pB, zSp, pC); jointype = JT_INNER; }else if( (jointype & JT_OUTER)!=0 && (jointype & (JT_LEFT|JT_RIGHT))!=JT_LEFT ){ sqlite3ErrorMsg(pParse, "RIGHT and FULL OUTER JOINs are not currently supported"); jointype = JT_INNER; } return jointype; } /* ** Return the index of a column in a table. Return -1 if the column ** is not contained in the table. */ static int columnIndex(Table *pTab, const char *zCol){ int i; u8 h = sqlite3StrIHash(zCol); Column *pCol; for(pCol=pTab->aCol, i=0; inCol; pCol++, i++){ if( pCol->hName==h && sqlite3StrICmp(pCol->zName, zCol)==0 ) return i; } return -1; } /* ** Search the first N tables in pSrc, from left to right, looking for a ** table that has a column named zCol. ** ** When found, set *piTab and *piCol to the table index and column index ** of the matching column and return TRUE. ** ** If not found, return FALSE. */ static int tableAndColumnIndex( SrcList *pSrc, /* Array of tables to search */ int N, /* Number of tables in pSrc->a[] to search */ const char *zCol, /* Name of the column we are looking for */ int *piTab, /* Write index of pSrc->a[] here */ int *piCol, /* Write index of pSrc->a[*piTab].pTab->aCol[] here */ int bIgnoreHidden /* True to ignore hidden columns */ ){ int i; /* For looping over tables in pSrc */ int iCol; /* Index of column matching zCol */ assert( (piTab==0)==(piCol==0) ); /* Both or neither are NULL */ for(i=0; ia[i].pTab, zCol); if( iCol>=0 && (bIgnoreHidden==0 || IsHiddenColumn(&pSrc->a[i].pTab->aCol[iCol])==0) ){ if( piTab ){ *piTab = i; *piCol = iCol; } return 1; } } return 0; } /* ** This function is used to add terms implied by JOIN syntax to the ** WHERE clause expression of a SELECT statement. The new term, which ** is ANDed with the existing WHERE clause, is of the form: ** ** (tab1.col1 = tab2.col2) ** ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the ** (iSrc+1)'th. Column col1 is column iColLeft of tab1, and col2 is ** column iColRight of tab2. */ static void addWhereTerm( Parse *pParse, /* Parsing context */ SrcList *pSrc, /* List of tables in FROM clause */ int iLeft, /* Index of first table to join in pSrc */ int iColLeft, /* Index of column in first table */ int iRight, /* Index of second table in pSrc */ int iColRight, /* Index of column in second table */ int isOuterJoin, /* True if this is an OUTER join */ Expr **ppWhere /* IN/OUT: The WHERE clause to add to */ ){ sqlite3 *db = pParse->db; Expr *pE1; Expr *pE2; Expr *pEq; assert( iLeftnSrc>iRight ); assert( pSrc->a[iLeft].pTab ); assert( pSrc->a[iRight].pTab ); pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft); pE2 = sqlite3CreateColumnExpr(db, pSrc, iRight, iColRight); pEq = sqlite3PExpr(pParse, TK_EQ, pE1, pE2); if( pEq && isOuterJoin ){ ExprSetProperty(pEq, EP_FromJoin); assert( !ExprHasProperty(pEq, EP_TokenOnly|EP_Reduced) ); ExprSetVVAProperty(pEq, EP_NoReduce); pEq->iRightJoinTable = (i16)pE2->iTable; } *ppWhere = sqlite3ExprAnd(pParse, *ppWhere, pEq); } /* ** Set the EP_FromJoin property on all terms of the given expression. ** And set the Expr.iRightJoinTable to iTable for every term in the ** expression. ** ** The EP_FromJoin property is used on terms of an expression to tell ** the LEFT OUTER JOIN processing logic that this term is part of the ** join restriction specified in the ON or USING clause and not a part ** of the more general WHERE clause. These terms are moved over to the ** WHERE clause during join processing but we need to remember that they ** originated in the ON or USING clause. ** ** The Expr.iRightJoinTable tells the WHERE clause processing that the ** expression depends on table iRightJoinTable even if that table is not ** explicitly mentioned in the expression. That information is needed ** for cases like this: ** ** SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.b AND t1.x=5 ** ** The where clause needs to defer the handling of the t1.x=5 ** term until after the t2 loop of the join. In that way, a ** NULL t2 row will be inserted whenever t1.x!=5. If we do not ** defer the handling of t1.x=5, it will be processed immediately ** after the t1 loop and rows with t1.x!=5 will never appear in ** the output, which is incorrect. */ SQLITE_PRIVATE void sqlite3SetJoinExpr(Expr *p, int iTable){ while( p ){ ExprSetProperty(p, EP_FromJoin); assert( !ExprHasProperty(p, EP_TokenOnly|EP_Reduced) ); ExprSetVVAProperty(p, EP_NoReduce); p->iRightJoinTable = (i16)iTable; if( p->op==TK_FUNCTION && p->x.pList ){ int i; for(i=0; ix.pList->nExpr; i++){ sqlite3SetJoinExpr(p->x.pList->a[i].pExpr, iTable); } } sqlite3SetJoinExpr(p->pLeft, iTable); p = p->pRight; } } /* Undo the work of sqlite3SetJoinExpr(). In the expression p, convert every ** term that is marked with EP_FromJoin and iRightJoinTable==iTable into ** an ordinary term that omits the EP_FromJoin mark. ** ** This happens when a LEFT JOIN is simplified into an ordinary JOIN. */ static void unsetJoinExpr(Expr *p, int iTable){ while( p ){ if( ExprHasProperty(p, EP_FromJoin) && (iTable<0 || p->iRightJoinTable==iTable) ){ ExprClearProperty(p, EP_FromJoin); } if( p->op==TK_FUNCTION && p->x.pList ){ int i; for(i=0; ix.pList->nExpr; i++){ unsetJoinExpr(p->x.pList->a[i].pExpr, iTable); } } unsetJoinExpr(p->pLeft, iTable); p = p->pRight; } } /* ** This routine processes the join information for a SELECT statement. ** ON and USING clauses are converted into extra terms of the WHERE clause. ** NATURAL joins also create extra WHERE clause terms. ** ** The terms of a FROM clause are contained in the Select.pSrc structure. ** The left most table is the first entry in Select.pSrc. The right-most ** table is the last entry. The join operator is held in the entry to ** the left. Thus entry 0 contains the join operator for the join between ** entries 0 and 1. Any ON or USING clauses associated with the join are ** also attached to the left entry. ** ** This routine returns the number of errors encountered. */ static int sqliteProcessJoin(Parse *pParse, Select *p){ SrcList *pSrc; /* All tables in the FROM clause */ int i, j; /* Loop counters */ struct SrcList_item *pLeft; /* Left table being joined */ struct SrcList_item *pRight; /* Right table being joined */ pSrc = p->pSrc; pLeft = &pSrc->a[0]; pRight = &pLeft[1]; for(i=0; inSrc-1; i++, pRight++, pLeft++){ Table *pRightTab = pRight->pTab; int isOuter; if( NEVER(pLeft->pTab==0 || pRightTab==0) ) continue; isOuter = (pRight->fg.jointype & JT_OUTER)!=0; /* When the NATURAL keyword is present, add WHERE clause terms for ** every column that the two tables have in common. */ if( pRight->fg.jointype & JT_NATURAL ){ if( pRight->pOn || pRight->pUsing ){ sqlite3ErrorMsg(pParse, "a NATURAL join may not have " "an ON or USING clause", 0); return 1; } for(j=0; jnCol; j++){ char *zName; /* Name of column in the right table */ int iLeft; /* Matching left table */ int iLeftCol; /* Matching column in the left table */ if( IsHiddenColumn(&pRightTab->aCol[j]) ) continue; zName = pRightTab->aCol[j].zName; if( tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol, 1) ){ addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, j, isOuter, &p->pWhere); } } } /* Disallow both ON and USING clauses in the same join */ if( pRight->pOn && pRight->pUsing ){ sqlite3ErrorMsg(pParse, "cannot have both ON and USING " "clauses in the same join"); return 1; } /* Add the ON clause to the end of the WHERE clause, connected by ** an AND operator. */ if( pRight->pOn ){ if( isOuter ) sqlite3SetJoinExpr(pRight->pOn, pRight->iCursor); p->pWhere = sqlite3ExprAnd(pParse, p->pWhere, pRight->pOn); pRight->pOn = 0; } /* Create extra terms on the WHERE clause for each column named ** in the USING clause. Example: If the two tables to be joined are ** A and B and the USING clause names X, Y, and Z, then add this ** to the WHERE clause: A.X=B.X AND A.Y=B.Y AND A.Z=B.Z ** Report an error if any column mentioned in the USING clause is ** not contained in both tables to be joined. */ if( pRight->pUsing ){ IdList *pList = pRight->pUsing; for(j=0; jnId; j++){ char *zName; /* Name of the term in the USING clause */ int iLeft; /* Table on the left with matching column name */ int iLeftCol; /* Column number of matching column on the left */ int iRightCol; /* Column number of matching column on the right */ zName = pList->a[j].zName; iRightCol = columnIndex(pRightTab, zName); if( iRightCol<0 || !tableAndColumnIndex(pSrc, i+1, zName, &iLeft, &iLeftCol, 0) ){ sqlite3ErrorMsg(pParse, "cannot join using column %s - column " "not present in both tables", zName); return 1; } addWhereTerm(pParse, pSrc, iLeft, iLeftCol, i+1, iRightCol, isOuter, &p->pWhere); } } } return 0; } /* ** An instance of this object holds information (beyond pParse and pSelect) ** needed to load the next result row that is to be added to the sorter. */ typedef struct RowLoadInfo RowLoadInfo; struct RowLoadInfo { int regResult; /* Store results in array of registers here */ u8 ecelFlags; /* Flag argument to ExprCodeExprList() */ #ifdef SQLITE_ENABLE_SORTER_REFERENCES ExprList *pExtra; /* Extra columns needed by sorter refs */ int regExtraResult; /* Where to load the extra columns */ #endif }; /* ** This routine does the work of loading query data into an array of ** registers so that it can be added to the sorter. */ static void innerLoopLoadRow( Parse *pParse, /* Statement under construction */ Select *pSelect, /* The query being coded */ RowLoadInfo *pInfo /* Info needed to complete the row load */ ){ sqlite3ExprCodeExprList(pParse, pSelect->pEList, pInfo->regResult, 0, pInfo->ecelFlags); #ifdef SQLITE_ENABLE_SORTER_REFERENCES if( pInfo->pExtra ){ sqlite3ExprCodeExprList(pParse, pInfo->pExtra, pInfo->regExtraResult, 0, 0); sqlite3ExprListDelete(pParse->db, pInfo->pExtra); } #endif } /* ** Code the OP_MakeRecord instruction that generates the entry to be ** added into the sorter. ** ** Return the register in which the result is stored. */ static int makeSorterRecord( Parse *pParse, SortCtx *pSort, Select *pSelect, int regBase, int nBase ){ int nOBSat = pSort->nOBSat; Vdbe *v = pParse->pVdbe; int regOut = ++pParse->nMem; if( pSort->pDeferredRowLoad ){ innerLoopLoadRow(pParse, pSelect, pSort->pDeferredRowLoad); } sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase+nOBSat, nBase-nOBSat, regOut); return regOut; } /* ** Generate code that will push the record in registers regData ** through regData+nData-1 onto the sorter. */ static void pushOntoSorter( Parse *pParse, /* Parser context */ SortCtx *pSort, /* Information about the ORDER BY clause */ Select *pSelect, /* The whole SELECT statement */ int regData, /* First register holding data to be sorted */ int regOrigData, /* First register holding data before packing */ int nData, /* Number of elements in the regData data array */ int nPrefixReg /* No. of reg prior to regData available for use */ ){ Vdbe *v = pParse->pVdbe; /* Stmt under construction */ int bSeq = ((pSort->sortFlags & SORTFLAG_UseSorter)==0); int nExpr = pSort->pOrderBy->nExpr; /* No. of ORDER BY terms */ int nBase = nExpr + bSeq + nData; /* Fields in sorter record */ int regBase; /* Regs for sorter record */ int regRecord = 0; /* Assembled sorter record */ int nOBSat = pSort->nOBSat; /* ORDER BY terms to skip */ int op; /* Opcode to add sorter record to sorter */ int iLimit; /* LIMIT counter */ int iSkip = 0; /* End of the sorter insert loop */ assert( bSeq==0 || bSeq==1 ); /* Three cases: ** (1) The data to be sorted has already been packed into a Record ** by a prior OP_MakeRecord. In this case nData==1 and regData ** will be completely unrelated to regOrigData. ** (2) All output columns are included in the sort record. In that ** case regData==regOrigData. ** (3) Some output columns are omitted from the sort record due to ** the SQLITE_ENABLE_SORTER_REFERENCE optimization, or due to the ** SQLITE_ECEL_OMITREF optimization, or due to the ** SortCtx.pDeferredRowLoad optimiation. In any of these cases ** regOrigData is 0 to prevent this routine from trying to copy ** values that might not yet exist. */ assert( nData==1 || regData==regOrigData || regOrigData==0 ); if( nPrefixReg ){ assert( nPrefixReg==nExpr+bSeq ); regBase = regData - nPrefixReg; }else{ regBase = pParse->nMem + 1; pParse->nMem += nBase; } assert( pSelect->iOffset==0 || pSelect->iLimit!=0 ); iLimit = pSelect->iOffset ? pSelect->iOffset+1 : pSelect->iLimit; pSort->labelDone = sqlite3VdbeMakeLabel(pParse); sqlite3ExprCodeExprList(pParse, pSort->pOrderBy, regBase, regOrigData, SQLITE_ECEL_DUP | (regOrigData? SQLITE_ECEL_REF : 0)); if( bSeq ){ sqlite3VdbeAddOp2(v, OP_Sequence, pSort->iECursor, regBase+nExpr); } if( nPrefixReg==0 && nData>0 ){ sqlite3ExprCodeMove(pParse, regData, regBase+nExpr+bSeq, nData); } if( nOBSat>0 ){ int regPrevKey; /* The first nOBSat columns of the previous row */ int addrFirst; /* Address of the OP_IfNot opcode */ int addrJmp; /* Address of the OP_Jump opcode */ VdbeOp *pOp; /* Opcode that opens the sorter */ int nKey; /* Number of sorting key columns, including OP_Sequence */ KeyInfo *pKI; /* Original KeyInfo on the sorter table */ regRecord = makeSorterRecord(pParse, pSort, pSelect, regBase, nBase); regPrevKey = pParse->nMem+1; pParse->nMem += pSort->nOBSat; nKey = nExpr - pSort->nOBSat + bSeq; if( bSeq ){ addrFirst = sqlite3VdbeAddOp1(v, OP_IfNot, regBase+nExpr); }else{ addrFirst = sqlite3VdbeAddOp1(v, OP_SequenceTest, pSort->iECursor); } VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_Compare, regPrevKey, regBase, pSort->nOBSat); pOp = sqlite3VdbeGetOp(v, pSort->addrSortIndex); if( pParse->db->mallocFailed ) return; pOp->p2 = nKey + nData; pKI = pOp->p4.pKeyInfo; memset(pKI->aSortFlags, 0, pKI->nKeyField); /* Makes OP_Jump testable */ sqlite3VdbeChangeP4(v, -1, (char*)pKI, P4_KEYINFO); testcase( pKI->nAllField > pKI->nKeyField+2 ); pOp->p4.pKeyInfo = sqlite3KeyInfoFromExprList(pParse,pSort->pOrderBy,nOBSat, pKI->nAllField-pKI->nKeyField-1); pOp = 0; /* Ensure pOp not used after sqltie3VdbeAddOp3() */ addrJmp = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp3(v, OP_Jump, addrJmp+1, 0, addrJmp+1); VdbeCoverage(v); pSort->labelBkOut = sqlite3VdbeMakeLabel(pParse); pSort->regReturn = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Gosub, pSort->regReturn, pSort->labelBkOut); sqlite3VdbeAddOp1(v, OP_ResetSorter, pSort->iECursor); if( iLimit ){ sqlite3VdbeAddOp2(v, OP_IfNot, iLimit, pSort->labelDone); VdbeCoverage(v); } sqlite3VdbeJumpHere(v, addrFirst); sqlite3ExprCodeMove(pParse, regBase, regPrevKey, pSort->nOBSat); sqlite3VdbeJumpHere(v, addrJmp); } if( iLimit ){ /* At this point the values for the new sorter entry are stored ** in an array of registers. They need to be composed into a record ** and inserted into the sorter if either (a) there are currently ** less than LIMIT+OFFSET items or (b) the new record is smaller than ** the largest record currently in the sorter. If (b) is true and there ** are already LIMIT+OFFSET items in the sorter, delete the largest ** entry before inserting the new one. This way there are never more ** than LIMIT+OFFSET items in the sorter. ** ** If the new record does not need to be inserted into the sorter, ** jump to the next iteration of the loop. If the pSort->labelOBLopt ** value is not zero, then it is a label of where to jump. Otherwise, ** just bypass the row insert logic. See the header comment on the ** sqlite3WhereOrderByLimitOptLabel() function for additional info. */ int iCsr = pSort->iECursor; sqlite3VdbeAddOp2(v, OP_IfNotZero, iLimit, sqlite3VdbeCurrentAddr(v)+4); VdbeCoverage(v); sqlite3VdbeAddOp2(v, OP_Last, iCsr, 0); iSkip = sqlite3VdbeAddOp4Int(v, OP_IdxLE, iCsr, 0, regBase+nOBSat, nExpr-nOBSat); VdbeCoverage(v); sqlite3VdbeAddOp1(v, OP_Delete, iCsr); } if( regRecord==0 ){ regRecord = makeSorterRecord(pParse, pSort, pSelect, regBase, nBase); } if( pSort->sortFlags & SORTFLAG_UseSorter ){ op = OP_SorterInsert; }else{ op = OP_IdxInsert; } sqlite3VdbeAddOp4Int(v, op, pSort->iECursor, regRecord, regBase+nOBSat, nBase-nOBSat); if( iSkip ){ sqlite3VdbeChangeP2(v, iSkip, pSort->labelOBLopt ? pSort->labelOBLopt : sqlite3VdbeCurrentAddr(v)); } } /* ** Add code to implement the OFFSET */ static void codeOffset( Vdbe *v, /* Generate code into this VM */ int iOffset, /* Register holding the offset counter */ int iContinue /* Jump here to skip the current record */ ){ if( iOffset>0 ){ sqlite3VdbeAddOp3(v, OP_IfPos, iOffset, iContinue, 1); VdbeCoverage(v); VdbeComment((v, "OFFSET")); } } /* ** Add code that will check to make sure the N registers starting at iMem ** form a distinct entry. iTab is a sorting index that holds previously ** seen combinations of the N values. A new entry is made in iTab ** if the current N values are new. ** ** A jump to addrRepeat is made and the N+1 values are popped from the ** stack if the top N elements are not distinct. */ static void codeDistinct( Parse *pParse, /* Parsing and code generating context */ int iTab, /* A sorting index used to test for distinctness */ int addrRepeat, /* Jump to here if not distinct */ int N, /* Number of elements */ int iMem /* First element */ ){ Vdbe *v; int r1; v = pParse->pVdbe; r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp4Int(v, OP_Found, iTab, addrRepeat, iMem, N); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_MakeRecord, iMem, N, r1); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iTab, r1, iMem, N); sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); sqlite3ReleaseTempReg(pParse, r1); } #ifdef SQLITE_ENABLE_SORTER_REFERENCES /* ** This function is called as part of inner-loop generation for a SELECT ** statement with an ORDER BY that is not optimized by an index. It ** determines the expressions, if any, that the sorter-reference ** optimization should be used for. The sorter-reference optimization ** is used for SELECT queries like: ** ** SELECT a, bigblob FROM t1 ORDER BY a LIMIT 10 ** ** If the optimization is used for expression "bigblob", then instead of ** storing values read from that column in the sorter records, the PK of ** the row from table t1 is stored instead. Then, as records are extracted from ** the sorter to return to the user, the required value of bigblob is ** retrieved directly from table t1. If the values are very large, this ** can be more efficient than storing them directly in the sorter records. ** ** The ExprList_item.bSorterRef flag is set for each expression in pEList ** for which the sorter-reference optimization should be enabled. ** Additionally, the pSort->aDefer[] array is populated with entries ** for all cursors required to evaluate all selected expressions. Finally. ** output variable (*ppExtra) is set to an expression list containing ** expressions for all extra PK values that should be stored in the ** sorter records. */ static void selectExprDefer( Parse *pParse, /* Leave any error here */ SortCtx *pSort, /* Sorter context */ ExprList *pEList, /* Expressions destined for sorter */ ExprList **ppExtra /* Expressions to append to sorter record */ ){ int i; int nDefer = 0; ExprList *pExtra = 0; for(i=0; inExpr; i++){ struct ExprList_item *pItem = &pEList->a[i]; if( pItem->u.x.iOrderByCol==0 ){ Expr *pExpr = pItem->pExpr; Table *pTab = pExpr->y.pTab; if( pExpr->op==TK_COLUMN && pExpr->iColumn>=0 && pTab && !IsVirtual(pTab) && (pTab->aCol[pExpr->iColumn].colFlags & COLFLAG_SORTERREF) ){ int j; for(j=0; jaDefer[j].iCsr==pExpr->iTable ) break; } if( j==nDefer ){ if( nDefer==ArraySize(pSort->aDefer) ){ continue; }else{ int nKey = 1; int k; Index *pPk = 0; if( !HasRowid(pTab) ){ pPk = sqlite3PrimaryKeyIndex(pTab); nKey = pPk->nKeyCol; } for(k=0; kiTable = pExpr->iTable; pNew->y.pTab = pExpr->y.pTab; pNew->iColumn = pPk ? pPk->aiColumn[k] : -1; pExtra = sqlite3ExprListAppend(pParse, pExtra, pNew); } } pSort->aDefer[nDefer].pTab = pExpr->y.pTab; pSort->aDefer[nDefer].iCsr = pExpr->iTable; pSort->aDefer[nDefer].nKey = nKey; nDefer++; } } pItem->bSorterRef = 1; } } } pSort->nDefer = (u8)nDefer; *ppExtra = pExtra; } #endif /* ** This routine generates the code for the inside of the inner loop ** of a SELECT. ** ** If srcTab is negative, then the p->pEList expressions ** are evaluated in order to get the data for this row. If srcTab is ** zero or more, then data is pulled from srcTab and p->pEList is used only ** to get the number of columns and the collation sequence for each column. */ static void selectInnerLoop( Parse *pParse, /* The parser context */ Select *p, /* The complete select statement being coded */ int srcTab, /* Pull data from this table if non-negative */ SortCtx *pSort, /* If not NULL, info on how to process ORDER BY */ DistinctCtx *pDistinct, /* If not NULL, info on how to process DISTINCT */ SelectDest *pDest, /* How to dispose of the results */ int iContinue, /* Jump here to continue with next row */ int iBreak /* Jump here to break out of the inner loop */ ){ Vdbe *v = pParse->pVdbe; int i; int hasDistinct; /* True if the DISTINCT keyword is present */ int eDest = pDest->eDest; /* How to dispose of results */ int iParm = pDest->iSDParm; /* First argument to disposal method */ int nResultCol; /* Number of result columns */ int nPrefixReg = 0; /* Number of extra registers before regResult */ RowLoadInfo sRowLoadInfo; /* Info for deferred row loading */ /* Usually, regResult is the first cell in an array of memory cells ** containing the current result row. In this case regOrig is set to the ** same value. However, if the results are being sent to the sorter, the ** values for any expressions that are also part of the sort-key are omitted ** from this array. In this case regOrig is set to zero. */ int regResult; /* Start of memory holding current results */ int regOrig; /* Start of memory holding full result (or 0) */ assert( v ); assert( p->pEList!=0 ); hasDistinct = pDistinct ? pDistinct->eTnctType : WHERE_DISTINCT_NOOP; if( pSort && pSort->pOrderBy==0 ) pSort = 0; if( pSort==0 && !hasDistinct ){ assert( iContinue!=0 ); codeOffset(v, p->iOffset, iContinue); } /* Pull the requested columns. */ nResultCol = p->pEList->nExpr; if( pDest->iSdst==0 ){ if( pSort ){ nPrefixReg = pSort->pOrderBy->nExpr; if( !(pSort->sortFlags & SORTFLAG_UseSorter) ) nPrefixReg++; pParse->nMem += nPrefixReg; } pDest->iSdst = pParse->nMem+1; pParse->nMem += nResultCol; }else if( pDest->iSdst+nResultCol > pParse->nMem ){ /* This is an error condition that can result, for example, when a SELECT ** on the right-hand side of an INSERT contains more result columns than ** there are columns in the table on the left. The error will be caught ** and reported later. But we need to make sure enough memory is allocated ** to avoid other spurious errors in the meantime. */ pParse->nMem += nResultCol; } pDest->nSdst = nResultCol; regOrig = regResult = pDest->iSdst; if( srcTab>=0 ){ for(i=0; ipEList->a[i].zEName)); } }else if( eDest!=SRT_Exists ){ #ifdef SQLITE_ENABLE_SORTER_REFERENCES ExprList *pExtra = 0; #endif /* If the destination is an EXISTS(...) expression, the actual ** values returned by the SELECT are not required. */ u8 ecelFlags; /* "ecel" is an abbreviation of "ExprCodeExprList" */ ExprList *pEList; if( eDest==SRT_Mem || eDest==SRT_Output || eDest==SRT_Coroutine ){ ecelFlags = SQLITE_ECEL_DUP; }else{ ecelFlags = 0; } if( pSort && hasDistinct==0 && eDest!=SRT_EphemTab && eDest!=SRT_Table ){ /* For each expression in p->pEList that is a copy of an expression in ** the ORDER BY clause (pSort->pOrderBy), set the associated ** iOrderByCol value to one more than the index of the ORDER BY ** expression within the sort-key that pushOntoSorter() will generate. ** This allows the p->pEList field to be omitted from the sorted record, ** saving space and CPU cycles. */ ecelFlags |= (SQLITE_ECEL_OMITREF|SQLITE_ECEL_REF); for(i=pSort->nOBSat; ipOrderBy->nExpr; i++){ int j; if( (j = pSort->pOrderBy->a[i].u.x.iOrderByCol)>0 ){ p->pEList->a[j-1].u.x.iOrderByCol = i+1-pSort->nOBSat; } } #ifdef SQLITE_ENABLE_SORTER_REFERENCES selectExprDefer(pParse, pSort, p->pEList, &pExtra); if( pExtra && pParse->db->mallocFailed==0 ){ /* If there are any extra PK columns to add to the sorter records, ** allocate extra memory cells and adjust the OpenEphemeral ** instruction to account for the larger records. This is only ** required if there are one or more WITHOUT ROWID tables with ** composite primary keys in the SortCtx.aDefer[] array. */ VdbeOp *pOp = sqlite3VdbeGetOp(v, pSort->addrSortIndex); pOp->p2 += (pExtra->nExpr - pSort->nDefer); pOp->p4.pKeyInfo->nAllField += (pExtra->nExpr - pSort->nDefer); pParse->nMem += pExtra->nExpr; } #endif /* Adjust nResultCol to account for columns that are omitted ** from the sorter by the optimizations in this branch */ pEList = p->pEList; for(i=0; inExpr; i++){ if( pEList->a[i].u.x.iOrderByCol>0 #ifdef SQLITE_ENABLE_SORTER_REFERENCES || pEList->a[i].bSorterRef #endif ){ nResultCol--; regOrig = 0; } } testcase( regOrig ); testcase( eDest==SRT_Set ); testcase( eDest==SRT_Mem ); testcase( eDest==SRT_Coroutine ); testcase( eDest==SRT_Output ); assert( eDest==SRT_Set || eDest==SRT_Mem || eDest==SRT_Coroutine || eDest==SRT_Output || eDest==SRT_Upfrom ); } sRowLoadInfo.regResult = regResult; sRowLoadInfo.ecelFlags = ecelFlags; #ifdef SQLITE_ENABLE_SORTER_REFERENCES sRowLoadInfo.pExtra = pExtra; sRowLoadInfo.regExtraResult = regResult + nResultCol; if( pExtra ) nResultCol += pExtra->nExpr; #endif if( p->iLimit && (ecelFlags & SQLITE_ECEL_OMITREF)!=0 && nPrefixReg>0 ){ assert( pSort!=0 ); assert( hasDistinct==0 ); pSort->pDeferredRowLoad = &sRowLoadInfo; regOrig = 0; }else{ innerLoopLoadRow(pParse, p, &sRowLoadInfo); } } /* If the DISTINCT keyword was present on the SELECT statement ** and this row has been seen before, then do not make this row ** part of the result. */ if( hasDistinct ){ switch( pDistinct->eTnctType ){ case WHERE_DISTINCT_ORDERED: { VdbeOp *pOp; /* No longer required OpenEphemeral instr. */ int iJump; /* Jump destination */ int regPrev; /* Previous row content */ /* Allocate space for the previous row */ regPrev = pParse->nMem+1; pParse->nMem += nResultCol; /* Change the OP_OpenEphemeral coded earlier to an OP_Null ** sets the MEM_Cleared bit on the first register of the ** previous value. This will cause the OP_Ne below to always ** fail on the first iteration of the loop even if the first ** row is all NULLs. */ sqlite3VdbeChangeToNoop(v, pDistinct->addrTnct); pOp = sqlite3VdbeGetOp(v, pDistinct->addrTnct); pOp->opcode = OP_Null; pOp->p1 = 1; pOp->p2 = regPrev; pOp = 0; /* Ensure pOp is not used after sqlite3VdbeAddOp() */ iJump = sqlite3VdbeCurrentAddr(v) + nResultCol; for(i=0; ipEList->a[i].pExpr); if( idb->mallocFailed ); sqlite3VdbeAddOp3(v, OP_Copy, regResult, regPrev, nResultCol-1); break; } case WHERE_DISTINCT_UNIQUE: { sqlite3VdbeChangeToNoop(v, pDistinct->addrTnct); break; } default: { assert( pDistinct->eTnctType==WHERE_DISTINCT_UNORDERED ); codeDistinct(pParse, pDistinct->tabTnct, iContinue, nResultCol, regResult); break; } } if( pSort==0 ){ codeOffset(v, p->iOffset, iContinue); } } switch( eDest ){ /* In this mode, write each query result to the key of the temporary ** table iParm. */ #ifndef SQLITE_OMIT_COMPOUND_SELECT case SRT_Union: { int r1; r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nResultCol, r1); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, r1, regResult, nResultCol); sqlite3ReleaseTempReg(pParse, r1); break; } /* Construct a record from the query result, but instead of ** saving that record, use it as a key to delete elements from ** the temporary table iParm. */ case SRT_Except: { sqlite3VdbeAddOp3(v, OP_IdxDelete, iParm, regResult, nResultCol); break; } #endif /* SQLITE_OMIT_COMPOUND_SELECT */ /* Store the result as data using a unique key. */ case SRT_Fifo: case SRT_DistFifo: case SRT_Table: case SRT_EphemTab: { int r1 = sqlite3GetTempRange(pParse, nPrefixReg+1); testcase( eDest==SRT_Table ); testcase( eDest==SRT_EphemTab ); testcase( eDest==SRT_Fifo ); testcase( eDest==SRT_DistFifo ); sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nResultCol, r1+nPrefixReg); #ifndef SQLITE_OMIT_CTE if( eDest==SRT_DistFifo ){ /* If the destination is DistFifo, then cursor (iParm+1) is open ** on an ephemeral index. If the current row is already present ** in the index, do not write it to the output. If not, add the ** current row to the index and proceed with writing it to the ** output table as well. */ int addr = sqlite3VdbeCurrentAddr(v) + 4; sqlite3VdbeAddOp4Int(v, OP_Found, iParm+1, addr, r1, 0); VdbeCoverage(v); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm+1, r1,regResult,nResultCol); assert( pSort==0 ); } #endif if( pSort ){ assert( regResult==regOrig ); pushOntoSorter(pParse, pSort, p, r1+nPrefixReg, regOrig, 1, nPrefixReg); }else{ int r2 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_NewRowid, iParm, r2); sqlite3VdbeAddOp3(v, OP_Insert, iParm, r1, r2); sqlite3VdbeChangeP5(v, OPFLAG_APPEND); sqlite3ReleaseTempReg(pParse, r2); } sqlite3ReleaseTempRange(pParse, r1, nPrefixReg+1); break; } case SRT_Upfrom: { if( pSort ){ pushOntoSorter( pParse, pSort, p, regResult, regOrig, nResultCol, nPrefixReg); }else{ int i2 = pDest->iSDParm2; int r1 = sqlite3GetTempReg(pParse); /* If the UPDATE FROM join is an aggregate that matches no rows, it ** might still be trying to return one row, because that is what ** aggregates do. Don't record that empty row in the output table. */ sqlite3VdbeAddOp2(v, OP_IsNull, regResult, iBreak); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult+(i2<0), nResultCol-(i2<0), r1); if( i2<0 ){ sqlite3VdbeAddOp3(v, OP_Insert, iParm, r1, regResult); }else{ sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, r1, regResult, i2); } } break; } #ifndef SQLITE_OMIT_SUBQUERY /* If we are creating a set for an "expr IN (SELECT ...)" construct, ** then there should be a single item on the stack. Write this ** item into the set table with bogus data. */ case SRT_Set: { if( pSort ){ /* At first glance you would think we could optimize out the ** ORDER BY in this case since the order of entries in the set ** does not matter. But there might be a LIMIT clause, in which ** case the order does matter */ pushOntoSorter( pParse, pSort, p, regResult, regOrig, nResultCol, nPrefixReg); }else{ int r1 = sqlite3GetTempReg(pParse); assert( sqlite3Strlen30(pDest->zAffSdst)==nResultCol ); sqlite3VdbeAddOp4(v, OP_MakeRecord, regResult, nResultCol, r1, pDest->zAffSdst, nResultCol); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, r1, regResult, nResultCol); sqlite3ReleaseTempReg(pParse, r1); } break; } /* If any row exist in the result set, record that fact and abort. */ case SRT_Exists: { sqlite3VdbeAddOp2(v, OP_Integer, 1, iParm); /* The LIMIT clause will terminate the loop for us */ break; } /* If this is a scalar select that is part of an expression, then ** store the results in the appropriate memory cell or array of ** memory cells and break out of the scan loop. */ case SRT_Mem: { if( pSort ){ assert( nResultCol<=pDest->nSdst ); pushOntoSorter( pParse, pSort, p, regResult, regOrig, nResultCol, nPrefixReg); }else{ assert( nResultCol==pDest->nSdst ); assert( regResult==iParm ); /* The LIMIT clause will jump out of the loop for us */ } break; } #endif /* #ifndef SQLITE_OMIT_SUBQUERY */ case SRT_Coroutine: /* Send data to a co-routine */ case SRT_Output: { /* Return the results */ testcase( eDest==SRT_Coroutine ); testcase( eDest==SRT_Output ); if( pSort ){ pushOntoSorter(pParse, pSort, p, regResult, regOrig, nResultCol, nPrefixReg); }else if( eDest==SRT_Coroutine ){ sqlite3VdbeAddOp1(v, OP_Yield, pDest->iSDParm); }else{ sqlite3VdbeAddOp2(v, OP_ResultRow, regResult, nResultCol); } break; } #ifndef SQLITE_OMIT_CTE /* Write the results into a priority queue that is order according to ** pDest->pOrderBy (in pSO). pDest->iSDParm (in iParm) is the cursor for an ** index with pSO->nExpr+2 columns. Build a key using pSO for the first ** pSO->nExpr columns, then make sure all keys are unique by adding a ** final OP_Sequence column. The last column is the record as a blob. */ case SRT_DistQueue: case SRT_Queue: { int nKey; int r1, r2, r3; int addrTest = 0; ExprList *pSO; pSO = pDest->pOrderBy; assert( pSO ); nKey = pSO->nExpr; r1 = sqlite3GetTempReg(pParse); r2 = sqlite3GetTempRange(pParse, nKey+2); r3 = r2+nKey+1; if( eDest==SRT_DistQueue ){ /* If the destination is DistQueue, then cursor (iParm+1) is open ** on a second ephemeral index that holds all values every previously ** added to the queue. */ addrTest = sqlite3VdbeAddOp4Int(v, OP_Found, iParm+1, 0, regResult, nResultCol); VdbeCoverage(v); } sqlite3VdbeAddOp3(v, OP_MakeRecord, regResult, nResultCol, r3); if( eDest==SRT_DistQueue ){ sqlite3VdbeAddOp2(v, OP_IdxInsert, iParm+1, r3); sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); } for(i=0; ia[i].u.x.iOrderByCol - 1, r2+i); } sqlite3VdbeAddOp2(v, OP_Sequence, iParm, r2+nKey); sqlite3VdbeAddOp3(v, OP_MakeRecord, r2, nKey+2, r1); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, r1, r2, nKey+2); if( addrTest ) sqlite3VdbeJumpHere(v, addrTest); sqlite3ReleaseTempReg(pParse, r1); sqlite3ReleaseTempRange(pParse, r2, nKey+2); break; } #endif /* SQLITE_OMIT_CTE */ #if !defined(SQLITE_OMIT_TRIGGER) /* Discard the results. This is used for SELECT statements inside ** the body of a TRIGGER. The purpose of such selects is to call ** user-defined functions that have side effects. We do not care ** about the actual results of the select. */ default: { assert( eDest==SRT_Discard ); break; } #endif } /* Jump to the end of the loop if the LIMIT is reached. Except, if ** there is a sorter, in which case the sorter has already limited ** the output for us. */ if( pSort==0 && p->iLimit ){ sqlite3VdbeAddOp2(v, OP_DecrJumpZero, p->iLimit, iBreak); VdbeCoverage(v); } } /* ** Allocate a KeyInfo object sufficient for an index of N key columns and ** X extra columns. */ SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoAlloc(sqlite3 *db, int N, int X){ int nExtra = (N+X)*(sizeof(CollSeq*)+1) - sizeof(CollSeq*); KeyInfo *p = sqlite3DbMallocRawNN(db, sizeof(KeyInfo) + nExtra); if( p ){ p->aSortFlags = (u8*)&p->aColl[N+X]; p->nKeyField = (u16)N; p->nAllField = (u16)(N+X); p->enc = ENC(db); p->db = db; p->nRef = 1; memset(&p[1], 0, nExtra); }else{ sqlite3OomFault(db); } return p; } /* ** Deallocate a KeyInfo object */ SQLITE_PRIVATE void sqlite3KeyInfoUnref(KeyInfo *p){ if( p ){ assert( p->nRef>0 ); p->nRef--; if( p->nRef==0 ) sqlite3DbFreeNN(p->db, p); } } /* ** Make a new pointer to a KeyInfo object */ SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoRef(KeyInfo *p){ if( p ){ assert( p->nRef>0 ); p->nRef++; } return p; } #ifdef SQLITE_DEBUG /* ** Return TRUE if a KeyInfo object can be change. The KeyInfo object ** can only be changed if this is just a single reference to the object. ** ** This routine is used only inside of assert() statements. */ SQLITE_PRIVATE int sqlite3KeyInfoIsWriteable(KeyInfo *p){ return p->nRef==1; } #endif /* SQLITE_DEBUG */ /* ** Given an expression list, generate a KeyInfo structure that records ** the collating sequence for each expression in that expression list. ** ** If the ExprList is an ORDER BY or GROUP BY clause then the resulting ** KeyInfo structure is appropriate for initializing a virtual index to ** implement that clause. If the ExprList is the result set of a SELECT ** then the KeyInfo structure is appropriate for initializing a virtual ** index to implement a DISTINCT test. ** ** Space to hold the KeyInfo structure is obtained from malloc. The calling ** function is responsible for seeing that this structure is eventually ** freed. */ SQLITE_PRIVATE KeyInfo *sqlite3KeyInfoFromExprList( Parse *pParse, /* Parsing context */ ExprList *pList, /* Form the KeyInfo object from this ExprList */ int iStart, /* Begin with this column of pList */ int nExtra /* Add this many extra columns to the end */ ){ int nExpr; KeyInfo *pInfo; struct ExprList_item *pItem; sqlite3 *db = pParse->db; int i; nExpr = pList->nExpr; pInfo = sqlite3KeyInfoAlloc(db, nExpr-iStart, nExtra+1); if( pInfo ){ assert( sqlite3KeyInfoIsWriteable(pInfo) ); for(i=iStart, pItem=pList->a+iStart; iaColl[i-iStart] = sqlite3ExprNNCollSeq(pParse, pItem->pExpr); pInfo->aSortFlags[i-iStart] = pItem->sortFlags; } } return pInfo; } /* ** Name of the connection operator, used for error messages. */ static const char *selectOpName(int id){ char *z; switch( id ){ case TK_ALL: z = "UNION ALL"; break; case TK_INTERSECT: z = "INTERSECT"; break; case TK_EXCEPT: z = "EXCEPT"; break; default: z = "UNION"; break; } return z; } #ifndef SQLITE_OMIT_EXPLAIN /* ** Unless an "EXPLAIN QUERY PLAN" command is being processed, this function ** is a no-op. Otherwise, it adds a single row of output to the EQP result, ** where the caption is of the form: ** ** "USE TEMP B-TREE FOR xxx" ** ** where xxx is one of "DISTINCT", "ORDER BY" or "GROUP BY". Exactly which ** is determined by the zUsage argument. */ static void explainTempTable(Parse *pParse, const char *zUsage){ ExplainQueryPlan((pParse, 0, "USE TEMP B-TREE FOR %s", zUsage)); } /* ** Assign expression b to lvalue a. A second, no-op, version of this macro ** is provided when SQLITE_OMIT_EXPLAIN is defined. This allows the code ** in sqlite3Select() to assign values to structure member variables that ** only exist if SQLITE_OMIT_EXPLAIN is not defined without polluting the ** code with #ifndef directives. */ # define explainSetInteger(a, b) a = b #else /* No-op versions of the explainXXX() functions and macros. */ # define explainTempTable(y,z) # define explainSetInteger(y,z) #endif /* ** If the inner loop was generated using a non-null pOrderBy argument, ** then the results were placed in a sorter. After the loop is terminated ** we need to run the sorter and output the results. The following ** routine generates the code needed to do that. */ static void generateSortTail( Parse *pParse, /* Parsing context */ Select *p, /* The SELECT statement */ SortCtx *pSort, /* Information on the ORDER BY clause */ int nColumn, /* Number of columns of data */ SelectDest *pDest /* Write the sorted results here */ ){ Vdbe *v = pParse->pVdbe; /* The prepared statement */ int addrBreak = pSort->labelDone; /* Jump here to exit loop */ int addrContinue = sqlite3VdbeMakeLabel(pParse);/* Jump here for next cycle */ int addr; /* Top of output loop. Jump for Next. */ int addrOnce = 0; int iTab; ExprList *pOrderBy = pSort->pOrderBy; int eDest = pDest->eDest; int iParm = pDest->iSDParm; int regRow; int regRowid; int iCol; int nKey; /* Number of key columns in sorter record */ int iSortTab; /* Sorter cursor to read from */ int i; int bSeq; /* True if sorter record includes seq. no. */ int nRefKey = 0; struct ExprList_item *aOutEx = p->pEList->a; assert( addrBreak<0 ); if( pSort->labelBkOut ){ sqlite3VdbeAddOp2(v, OP_Gosub, pSort->regReturn, pSort->labelBkOut); sqlite3VdbeGoto(v, addrBreak); sqlite3VdbeResolveLabel(v, pSort->labelBkOut); } #ifdef SQLITE_ENABLE_SORTER_REFERENCES /* Open any cursors needed for sorter-reference expressions */ for(i=0; inDefer; i++){ Table *pTab = pSort->aDefer[i].pTab; int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); sqlite3OpenTable(pParse, pSort->aDefer[i].iCsr, iDb, pTab, OP_OpenRead); nRefKey = MAX(nRefKey, pSort->aDefer[i].nKey); } #endif iTab = pSort->iECursor; if( eDest==SRT_Output || eDest==SRT_Coroutine || eDest==SRT_Mem ){ regRowid = 0; regRow = pDest->iSdst; }else{ regRowid = sqlite3GetTempReg(pParse); if( eDest==SRT_EphemTab || eDest==SRT_Table ){ regRow = sqlite3GetTempReg(pParse); nColumn = 0; }else{ regRow = sqlite3GetTempRange(pParse, nColumn); } } nKey = pOrderBy->nExpr - pSort->nOBSat; if( pSort->sortFlags & SORTFLAG_UseSorter ){ int regSortOut = ++pParse->nMem; iSortTab = pParse->nTab++; if( pSort->labelBkOut ){ addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); } sqlite3VdbeAddOp3(v, OP_OpenPseudo, iSortTab, regSortOut, nKey+1+nColumn+nRefKey); if( addrOnce ) sqlite3VdbeJumpHere(v, addrOnce); addr = 1 + sqlite3VdbeAddOp2(v, OP_SorterSort, iTab, addrBreak); VdbeCoverage(v); codeOffset(v, p->iOffset, addrContinue); sqlite3VdbeAddOp3(v, OP_SorterData, iTab, regSortOut, iSortTab); bSeq = 0; }else{ addr = 1 + sqlite3VdbeAddOp2(v, OP_Sort, iTab, addrBreak); VdbeCoverage(v); codeOffset(v, p->iOffset, addrContinue); iSortTab = iTab; bSeq = 1; } for(i=0, iCol=nKey+bSeq-1; inDefer ){ int iKey = iCol+1; int regKey = sqlite3GetTempRange(pParse, nRefKey); for(i=0; inDefer; i++){ int iCsr = pSort->aDefer[i].iCsr; Table *pTab = pSort->aDefer[i].pTab; int nKey = pSort->aDefer[i].nKey; sqlite3VdbeAddOp1(v, OP_NullRow, iCsr); if( HasRowid(pTab) ){ sqlite3VdbeAddOp3(v, OP_Column, iSortTab, iKey++, regKey); sqlite3VdbeAddOp3(v, OP_SeekRowid, iCsr, sqlite3VdbeCurrentAddr(v)+1, regKey); }else{ int k; int iJmp; assert( sqlite3PrimaryKeyIndex(pTab)->nKeyCol==nKey ); for(k=0; k=0; i--){ #ifdef SQLITE_ENABLE_SORTER_REFERENCES if( aOutEx[i].bSorterRef ){ sqlite3ExprCode(pParse, aOutEx[i].pExpr, regRow+i); }else #endif { int iRead; if( aOutEx[i].u.x.iOrderByCol ){ iRead = aOutEx[i].u.x.iOrderByCol-1; }else{ iRead = iCol--; } sqlite3VdbeAddOp3(v, OP_Column, iSortTab, iRead, regRow+i); VdbeComment((v, "%s", aOutEx[i].zEName)); } } switch( eDest ){ case SRT_Table: case SRT_EphemTab: { sqlite3VdbeAddOp3(v, OP_Column, iSortTab, nKey+bSeq, regRow); sqlite3VdbeAddOp2(v, OP_NewRowid, iParm, regRowid); sqlite3VdbeAddOp3(v, OP_Insert, iParm, regRow, regRowid); sqlite3VdbeChangeP5(v, OPFLAG_APPEND); break; } #ifndef SQLITE_OMIT_SUBQUERY case SRT_Set: { assert( nColumn==sqlite3Strlen30(pDest->zAffSdst) ); sqlite3VdbeAddOp4(v, OP_MakeRecord, regRow, nColumn, regRowid, pDest->zAffSdst, nColumn); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, regRowid, regRow, nColumn); break; } case SRT_Mem: { /* The LIMIT clause will terminate the loop for us */ break; } #endif case SRT_Upfrom: { int i2 = pDest->iSDParm2; int r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_MakeRecord,regRow+(i2<0),nColumn-(i2<0),r1); if( i2<0 ){ sqlite3VdbeAddOp3(v, OP_Insert, iParm, r1, regRow); }else{ sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iParm, r1, regRow, i2); } break; } default: { assert( eDest==SRT_Output || eDest==SRT_Coroutine ); testcase( eDest==SRT_Output ); testcase( eDest==SRT_Coroutine ); if( eDest==SRT_Output ){ sqlite3VdbeAddOp2(v, OP_ResultRow, pDest->iSdst, nColumn); }else{ sqlite3VdbeAddOp1(v, OP_Yield, pDest->iSDParm); } break; } } if( regRowid ){ if( eDest==SRT_Set ){ sqlite3ReleaseTempRange(pParse, regRow, nColumn); }else{ sqlite3ReleaseTempReg(pParse, regRow); } sqlite3ReleaseTempReg(pParse, regRowid); } /* The bottom of the loop */ sqlite3VdbeResolveLabel(v, addrContinue); if( pSort->sortFlags & SORTFLAG_UseSorter ){ sqlite3VdbeAddOp2(v, OP_SorterNext, iTab, addr); VdbeCoverage(v); }else{ sqlite3VdbeAddOp2(v, OP_Next, iTab, addr); VdbeCoverage(v); } if( pSort->regReturn ) sqlite3VdbeAddOp1(v, OP_Return, pSort->regReturn); sqlite3VdbeResolveLabel(v, addrBreak); } /* ** Return a pointer to a string containing the 'declaration type' of the ** expression pExpr. The string may be treated as static by the caller. ** ** Also try to estimate the size of the returned value and return that ** result in *pEstWidth. ** ** The declaration type is the exact datatype definition extracted from the ** original CREATE TABLE statement if the expression is a column. The ** declaration type for a ROWID field is INTEGER. Exactly when an expression ** is considered a column can be complex in the presence of subqueries. The ** result-set expression in all of the following SELECT statements is ** considered a column by this function. ** ** SELECT col FROM tbl; ** SELECT (SELECT col FROM tbl; ** SELECT (SELECT col FROM tbl); ** SELECT abc FROM (SELECT col AS abc FROM tbl); ** ** The declaration type for any expression other than a column is NULL. ** ** This routine has either 3 or 6 parameters depending on whether or not ** the SQLITE_ENABLE_COLUMN_METADATA compile-time option is used. */ #ifdef SQLITE_ENABLE_COLUMN_METADATA # define columnType(A,B,C,D,E) columnTypeImpl(A,B,C,D,E) #else /* if !defined(SQLITE_ENABLE_COLUMN_METADATA) */ # define columnType(A,B,C,D,E) columnTypeImpl(A,B) #endif static const char *columnTypeImpl( NameContext *pNC, #ifndef SQLITE_ENABLE_COLUMN_METADATA Expr *pExpr #else Expr *pExpr, const char **pzOrigDb, const char **pzOrigTab, const char **pzOrigCol #endif ){ char const *zType = 0; int j; #ifdef SQLITE_ENABLE_COLUMN_METADATA char const *zOrigDb = 0; char const *zOrigTab = 0; char const *zOrigCol = 0; #endif assert( pExpr!=0 ); assert( pNC->pSrcList!=0 ); switch( pExpr->op ){ case TK_COLUMN: { /* The expression is a column. Locate the table the column is being ** extracted from in NameContext.pSrcList. This table may be real ** database table or a subquery. */ Table *pTab = 0; /* Table structure column is extracted from */ Select *pS = 0; /* Select the column is extracted from */ int iCol = pExpr->iColumn; /* Index of column in pTab */ while( pNC && !pTab ){ SrcList *pTabList = pNC->pSrcList; for(j=0;jnSrc && pTabList->a[j].iCursor!=pExpr->iTable;j++); if( jnSrc ){ pTab = pTabList->a[j].pTab; pS = pTabList->a[j].pSelect; }else{ pNC = pNC->pNext; } } if( pTab==0 ){ /* At one time, code such as "SELECT new.x" within a trigger would ** cause this condition to run. Since then, we have restructured how ** trigger code is generated and so this condition is no longer ** possible. However, it can still be true for statements like ** the following: ** ** CREATE TABLE t1(col INTEGER); ** SELECT (SELECT t1.col) FROM FROM t1; ** ** when columnType() is called on the expression "t1.col" in the ** sub-select. In this case, set the column type to NULL, even ** though it should really be "INTEGER". ** ** This is not a problem, as the column type of "t1.col" is never ** used. When columnType() is called on the expression ** "(SELECT t1.col)", the correct type is returned (see the TK_SELECT ** branch below. */ break; } assert( pTab && pExpr->y.pTab==pTab ); if( pS ){ /* The "table" is actually a sub-select or a view in the FROM clause ** of the SELECT statement. Return the declaration type and origin ** data for the result-set column of the sub-select. */ if( iCol>=0 && iColpEList->nExpr ){ /* If iCol is less than zero, then the expression requests the ** rowid of the sub-select or view. This expression is legal (see ** test case misc2.2.2) - it always evaluates to NULL. */ NameContext sNC; Expr *p = pS->pEList->a[iCol].pExpr; sNC.pSrcList = pS->pSrc; sNC.pNext = pNC; sNC.pParse = pNC->pParse; zType = columnType(&sNC, p,&zOrigDb,&zOrigTab,&zOrigCol); } }else{ /* A real table or a CTE table */ assert( !pS ); #ifdef SQLITE_ENABLE_COLUMN_METADATA if( iCol<0 ) iCol = pTab->iPKey; assert( iCol==XN_ROWID || (iCol>=0 && iColnCol) ); if( iCol<0 ){ zType = "INTEGER"; zOrigCol = "rowid"; }else{ zOrigCol = pTab->aCol[iCol].zName; zType = sqlite3ColumnType(&pTab->aCol[iCol],0); } zOrigTab = pTab->zName; if( pNC->pParse && pTab->pSchema ){ int iDb = sqlite3SchemaToIndex(pNC->pParse->db, pTab->pSchema); zOrigDb = pNC->pParse->db->aDb[iDb].zDbSName; } #else assert( iCol==XN_ROWID || (iCol>=0 && iColnCol) ); if( iCol<0 ){ zType = "INTEGER"; }else{ zType = sqlite3ColumnType(&pTab->aCol[iCol],0); } #endif } break; } #ifndef SQLITE_OMIT_SUBQUERY case TK_SELECT: { /* The expression is a sub-select. Return the declaration type and ** origin info for the single column in the result set of the SELECT ** statement. */ NameContext sNC; Select *pS = pExpr->x.pSelect; Expr *p = pS->pEList->a[0].pExpr; assert( ExprHasProperty(pExpr, EP_xIsSelect) ); sNC.pSrcList = pS->pSrc; sNC.pNext = pNC; sNC.pParse = pNC->pParse; zType = columnType(&sNC, p, &zOrigDb, &zOrigTab, &zOrigCol); break; } #endif } #ifdef SQLITE_ENABLE_COLUMN_METADATA if( pzOrigDb ){ assert( pzOrigTab && pzOrigCol ); *pzOrigDb = zOrigDb; *pzOrigTab = zOrigTab; *pzOrigCol = zOrigCol; } #endif return zType; } /* ** Generate code that will tell the VDBE the declaration types of columns ** in the result set. */ static void generateColumnTypes( Parse *pParse, /* Parser context */ SrcList *pTabList, /* List of tables */ ExprList *pEList /* Expressions defining the result set */ ){ #ifndef SQLITE_OMIT_DECLTYPE Vdbe *v = pParse->pVdbe; int i; NameContext sNC; sNC.pSrcList = pTabList; sNC.pParse = pParse; sNC.pNext = 0; for(i=0; inExpr; i++){ Expr *p = pEList->a[i].pExpr; const char *zType; #ifdef SQLITE_ENABLE_COLUMN_METADATA const char *zOrigDb = 0; const char *zOrigTab = 0; const char *zOrigCol = 0; zType = columnType(&sNC, p, &zOrigDb, &zOrigTab, &zOrigCol); /* The vdbe must make its own copy of the column-type and other ** column specific strings, in case the schema is reset before this ** virtual machine is deleted. */ sqlite3VdbeSetColName(v, i, COLNAME_DATABASE, zOrigDb, SQLITE_TRANSIENT); sqlite3VdbeSetColName(v, i, COLNAME_TABLE, zOrigTab, SQLITE_TRANSIENT); sqlite3VdbeSetColName(v, i, COLNAME_COLUMN, zOrigCol, SQLITE_TRANSIENT); #else zType = columnType(&sNC, p, 0, 0, 0); #endif sqlite3VdbeSetColName(v, i, COLNAME_DECLTYPE, zType, SQLITE_TRANSIENT); } #endif /* !defined(SQLITE_OMIT_DECLTYPE) */ } /* ** Compute the column names for a SELECT statement. ** ** The only guarantee that SQLite makes about column names is that if the ** column has an AS clause assigning it a name, that will be the name used. ** That is the only documented guarantee. However, countless applications ** developed over the years have made baseless assumptions about column names ** and will break if those assumptions changes. Hence, use extreme caution ** when modifying this routine to avoid breaking legacy. ** ** See Also: sqlite3ColumnsFromExprList() ** ** The PRAGMA short_column_names and PRAGMA full_column_names settings are ** deprecated. The default setting is short=ON, full=OFF. 99.9% of all ** applications should operate this way. Nevertheless, we need to support the ** other modes for legacy: ** ** short=OFF, full=OFF: Column name is the text of the expression has it ** originally appears in the SELECT statement. In ** other words, the zSpan of the result expression. ** ** short=ON, full=OFF: (This is the default setting). If the result ** refers directly to a table column, then the ** result column name is just the table column ** name: COLUMN. Otherwise use zSpan. ** ** full=ON, short=ANY: If the result refers directly to a table column, ** then the result column name with the table name ** prefix, ex: TABLE.COLUMN. Otherwise use zSpan. */ static void generateColumnNames( Parse *pParse, /* Parser context */ Select *pSelect /* Generate column names for this SELECT statement */ ){ Vdbe *v = pParse->pVdbe; int i; Table *pTab; SrcList *pTabList; ExprList *pEList; sqlite3 *db = pParse->db; int fullName; /* TABLE.COLUMN if no AS clause and is a direct table ref */ int srcName; /* COLUMN or TABLE.COLUMN if no AS clause and is direct */ #ifndef SQLITE_OMIT_EXPLAIN /* If this is an EXPLAIN, skip this step */ if( pParse->explain ){ return; } #endif if( pParse->colNamesSet ) return; /* Column names are determined by the left-most term of a compound select */ while( pSelect->pPrior ) pSelect = pSelect->pPrior; SELECTTRACE(1,pParse,pSelect,("generating column names\n")); pTabList = pSelect->pSrc; pEList = pSelect->pEList; assert( v!=0 ); assert( pTabList!=0 ); pParse->colNamesSet = 1; fullName = (db->flags & SQLITE_FullColNames)!=0; srcName = (db->flags & SQLITE_ShortColNames)!=0 || fullName; sqlite3VdbeSetNumCols(v, pEList->nExpr); for(i=0; inExpr; i++){ Expr *p = pEList->a[i].pExpr; assert( p!=0 ); assert( p->op!=TK_AGG_COLUMN ); /* Agg processing has not run yet */ assert( p->op!=TK_COLUMN || p->y.pTab!=0 ); /* Covering idx not yet coded */ if( pEList->a[i].zEName && pEList->a[i].eEName==ENAME_NAME ){ /* An AS clause always takes first priority */ char *zName = pEList->a[i].zEName; sqlite3VdbeSetColName(v, i, COLNAME_NAME, zName, SQLITE_TRANSIENT); }else if( srcName && p->op==TK_COLUMN ){ char *zCol; int iCol = p->iColumn; pTab = p->y.pTab; assert( pTab!=0 ); if( iCol<0 ) iCol = pTab->iPKey; assert( iCol==-1 || (iCol>=0 && iColnCol) ); if( iCol<0 ){ zCol = "rowid"; }else{ zCol = pTab->aCol[iCol].zName; } if( fullName ){ char *zName = 0; zName = sqlite3MPrintf(db, "%s.%s", pTab->zName, zCol); sqlite3VdbeSetColName(v, i, COLNAME_NAME, zName, SQLITE_DYNAMIC); }else{ sqlite3VdbeSetColName(v, i, COLNAME_NAME, zCol, SQLITE_TRANSIENT); } }else{ const char *z = pEList->a[i].zEName; z = z==0 ? sqlite3MPrintf(db, "column%d", i+1) : sqlite3DbStrDup(db, z); sqlite3VdbeSetColName(v, i, COLNAME_NAME, z, SQLITE_DYNAMIC); } } generateColumnTypes(pParse, pTabList, pEList); } /* ** Given an expression list (which is really the list of expressions ** that form the result set of a SELECT statement) compute appropriate ** column names for a table that would hold the expression list. ** ** All column names will be unique. ** ** Only the column names are computed. Column.zType, Column.zColl, ** and other fields of Column are zeroed. ** ** Return SQLITE_OK on success. If a memory allocation error occurs, ** store NULL in *paCol and 0 in *pnCol and return SQLITE_NOMEM. ** ** The only guarantee that SQLite makes about column names is that if the ** column has an AS clause assigning it a name, that will be the name used. ** That is the only documented guarantee. However, countless applications ** developed over the years have made baseless assumptions about column names ** and will break if those assumptions changes. Hence, use extreme caution ** when modifying this routine to avoid breaking legacy. ** ** See Also: generateColumnNames() */ SQLITE_PRIVATE int sqlite3ColumnsFromExprList( Parse *pParse, /* Parsing context */ ExprList *pEList, /* Expr list from which to derive column names */ i16 *pnCol, /* Write the number of columns here */ Column **paCol /* Write the new column list here */ ){ sqlite3 *db = pParse->db; /* Database connection */ int i, j; /* Loop counters */ u32 cnt; /* Index added to make the name unique */ Column *aCol, *pCol; /* For looping over result columns */ int nCol; /* Number of columns in the result set */ char *zName; /* Column name */ int nName; /* Size of name in zName[] */ Hash ht; /* Hash table of column names */ sqlite3HashInit(&ht); if( pEList ){ nCol = pEList->nExpr; aCol = sqlite3DbMallocZero(db, sizeof(aCol[0])*nCol); testcase( aCol==0 ); if( nCol>32767 ) nCol = 32767; }else{ nCol = 0; aCol = 0; } assert( nCol==(i16)nCol ); *pnCol = nCol; *paCol = aCol; for(i=0, pCol=aCol; imallocFailed; i++, pCol++){ /* Get an appropriate name for the column */ if( (zName = pEList->a[i].zEName)!=0 && pEList->a[i].eEName==ENAME_NAME ){ /* If the column contains an "AS " phrase, use as the name */ }else{ Expr *pColExpr = sqlite3ExprSkipCollateAndLikely(pEList->a[i].pExpr); while( pColExpr->op==TK_DOT ){ pColExpr = pColExpr->pRight; assert( pColExpr!=0 ); } if( pColExpr->op==TK_COLUMN ){ /* For columns use the column name name */ int iCol = pColExpr->iColumn; Table *pTab = pColExpr->y.pTab; assert( pTab!=0 ); if( iCol<0 ) iCol = pTab->iPKey; zName = iCol>=0 ? pTab->aCol[iCol].zName : "rowid"; }else if( pColExpr->op==TK_ID ){ assert( !ExprHasProperty(pColExpr, EP_IntValue) ); zName = pColExpr->u.zToken; }else{ /* Use the original text of the column expression as its name */ zName = pEList->a[i].zEName; } } if( zName && !sqlite3IsTrueOrFalse(zName) ){ zName = sqlite3DbStrDup(db, zName); }else{ zName = sqlite3MPrintf(db,"column%d",i+1); } /* Make sure the column name is unique. If the name is not unique, ** append an integer to the name so that it becomes unique. */ cnt = 0; while( zName && sqlite3HashFind(&ht, zName)!=0 ){ nName = sqlite3Strlen30(zName); if( nName>0 ){ for(j=nName-1; j>0 && sqlite3Isdigit(zName[j]); j--){} if( zName[j]==':' ) nName = j; } zName = sqlite3MPrintf(db, "%.*z:%u", nName, zName, ++cnt); if( cnt>3 ) sqlite3_randomness(sizeof(cnt), &cnt); } pCol->zName = zName; pCol->hName = sqlite3StrIHash(zName); sqlite3ColumnPropertiesFromName(0, pCol); if( zName && sqlite3HashInsert(&ht, zName, pCol)==pCol ){ sqlite3OomFault(db); } } sqlite3HashClear(&ht); if( db->mallocFailed ){ for(j=0; jdb; NameContext sNC; Column *pCol; CollSeq *pColl; int i; Expr *p; struct ExprList_item *a; assert( pSelect!=0 ); assert( (pSelect->selFlags & SF_Resolved)!=0 ); assert( pTab->nCol==pSelect->pEList->nExpr || db->mallocFailed ); if( db->mallocFailed ) return; memset(&sNC, 0, sizeof(sNC)); sNC.pSrcList = pSelect->pSrc; a = pSelect->pEList->a; for(i=0, pCol=pTab->aCol; inCol; i++, pCol++){ const char *zType; int n, m; p = a[i].pExpr; zType = columnType(&sNC, p, 0, 0, 0); /* pCol->szEst = ... // Column size est for SELECT tables never used */ pCol->affinity = sqlite3ExprAffinity(p); if( zType ){ m = sqlite3Strlen30(zType); n = sqlite3Strlen30(pCol->zName); pCol->zName = sqlite3DbReallocOrFree(db, pCol->zName, n+m+2); if( pCol->zName ){ memcpy(&pCol->zName[n+1], zType, m+1); pCol->colFlags |= COLFLAG_HASTYPE; } } if( pCol->affinity<=SQLITE_AFF_NONE ) pCol->affinity = aff; pColl = sqlite3ExprCollSeq(pParse, p); if( pColl && pCol->zColl==0 ){ pCol->zColl = sqlite3DbStrDup(db, pColl->zName); } } pTab->szTabRow = 1; /* Any non-zero value works */ } /* ** Given a SELECT statement, generate a Table structure that describes ** the result set of that SELECT. */ SQLITE_PRIVATE Table *sqlite3ResultSetOfSelect(Parse *pParse, Select *pSelect, char aff){ Table *pTab; sqlite3 *db = pParse->db; u64 savedFlags; savedFlags = db->flags; db->flags &= ~(u64)SQLITE_FullColNames; db->flags |= SQLITE_ShortColNames; sqlite3SelectPrep(pParse, pSelect, 0); db->flags = savedFlags; if( pParse->nErr ) return 0; while( pSelect->pPrior ) pSelect = pSelect->pPrior; pTab = sqlite3DbMallocZero(db, sizeof(Table) ); if( pTab==0 ){ return 0; } pTab->nTabRef = 1; pTab->zName = 0; pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); sqlite3ColumnsFromExprList(pParse, pSelect->pEList, &pTab->nCol, &pTab->aCol); sqlite3SelectAddColumnTypeAndCollation(pParse, pTab, pSelect, aff); pTab->iPKey = -1; if( db->mallocFailed ){ sqlite3DeleteTable(db, pTab); return 0; } return pTab; } /* ** Get a VDBE for the given parser context. Create a new one if necessary. ** If an error occurs, return NULL and leave a message in pParse. */ SQLITE_PRIVATE Vdbe *sqlite3GetVdbe(Parse *pParse){ if( pParse->pVdbe ){ return pParse->pVdbe; } if( pParse->pToplevel==0 && OptimizationEnabled(pParse->db,SQLITE_FactorOutConst) ){ pParse->okConstFactor = 1; } return sqlite3VdbeCreate(pParse); } /* ** Compute the iLimit and iOffset fields of the SELECT based on the ** pLimit expressions. pLimit->pLeft and pLimit->pRight hold the expressions ** that appear in the original SQL statement after the LIMIT and OFFSET ** keywords. Or NULL if those keywords are omitted. iLimit and iOffset ** are the integer memory register numbers for counters used to compute ** the limit and offset. If there is no limit and/or offset, then ** iLimit and iOffset are negative. ** ** This routine changes the values of iLimit and iOffset only if ** a limit or offset is defined by pLimit->pLeft and pLimit->pRight. iLimit ** and iOffset should have been preset to appropriate default values (zero) ** prior to calling this routine. ** ** The iOffset register (if it exists) is initialized to the value ** of the OFFSET. The iLimit register is initialized to LIMIT. Register ** iOffset+1 is initialized to LIMIT+OFFSET. ** ** Only if pLimit->pLeft!=0 do the limit registers get ** redefined. The UNION ALL operator uses this property to force ** the reuse of the same limit and offset registers across multiple ** SELECT statements. */ static void computeLimitRegisters(Parse *pParse, Select *p, int iBreak){ Vdbe *v = 0; int iLimit = 0; int iOffset; int n; Expr *pLimit = p->pLimit; if( p->iLimit ) return; /* ** "LIMIT -1" always shows all rows. There is some ** controversy about what the correct behavior should be. ** The current implementation interprets "LIMIT 0" to mean ** no rows. */ if( pLimit ){ assert( pLimit->op==TK_LIMIT ); assert( pLimit->pLeft!=0 ); p->iLimit = iLimit = ++pParse->nMem; v = sqlite3GetVdbe(pParse); assert( v!=0 ); if( sqlite3ExprIsInteger(pLimit->pLeft, &n) ){ sqlite3VdbeAddOp2(v, OP_Integer, n, iLimit); VdbeComment((v, "LIMIT counter")); if( n==0 ){ sqlite3VdbeGoto(v, iBreak); }else if( n>=0 && p->nSelectRow>sqlite3LogEst((u64)n) ){ p->nSelectRow = sqlite3LogEst((u64)n); p->selFlags |= SF_FixedLimit; } }else{ sqlite3ExprCode(pParse, pLimit->pLeft, iLimit); sqlite3VdbeAddOp1(v, OP_MustBeInt, iLimit); VdbeCoverage(v); VdbeComment((v, "LIMIT counter")); sqlite3VdbeAddOp2(v, OP_IfNot, iLimit, iBreak); VdbeCoverage(v); } if( pLimit->pRight ){ p->iOffset = iOffset = ++pParse->nMem; pParse->nMem++; /* Allocate an extra register for limit+offset */ sqlite3ExprCode(pParse, pLimit->pRight, iOffset); sqlite3VdbeAddOp1(v, OP_MustBeInt, iOffset); VdbeCoverage(v); VdbeComment((v, "OFFSET counter")); sqlite3VdbeAddOp3(v, OP_OffsetLimit, iLimit, iOffset+1, iOffset); VdbeComment((v, "LIMIT+OFFSET")); } } } #ifndef SQLITE_OMIT_COMPOUND_SELECT /* ** Return the appropriate collating sequence for the iCol-th column of ** the result set for the compound-select statement "p". Return NULL if ** the column has no default collating sequence. ** ** The collating sequence for the compound select is taken from the ** left-most term of the select that has a collating sequence. */ static CollSeq *multiSelectCollSeq(Parse *pParse, Select *p, int iCol){ CollSeq *pRet; if( p->pPrior ){ pRet = multiSelectCollSeq(pParse, p->pPrior, iCol); }else{ pRet = 0; } assert( iCol>=0 ); /* iCol must be less than p->pEList->nExpr. Otherwise an error would ** have been thrown during name resolution and we would not have gotten ** this far */ if( pRet==0 && ALWAYS(iColpEList->nExpr) ){ pRet = sqlite3ExprCollSeq(pParse, p->pEList->a[iCol].pExpr); } return pRet; } /* ** The select statement passed as the second parameter is a compound SELECT ** with an ORDER BY clause. This function allocates and returns a KeyInfo ** structure suitable for implementing the ORDER BY. ** ** Space to hold the KeyInfo structure is obtained from malloc. The calling ** function is responsible for ensuring that this structure is eventually ** freed. */ static KeyInfo *multiSelectOrderByKeyInfo(Parse *pParse, Select *p, int nExtra){ ExprList *pOrderBy = p->pOrderBy; int nOrderBy = p->pOrderBy->nExpr; sqlite3 *db = pParse->db; KeyInfo *pRet = sqlite3KeyInfoAlloc(db, nOrderBy+nExtra, 1); if( pRet ){ int i; for(i=0; ia[i]; Expr *pTerm = pItem->pExpr; CollSeq *pColl; if( pTerm->flags & EP_Collate ){ pColl = sqlite3ExprCollSeq(pParse, pTerm); }else{ pColl = multiSelectCollSeq(pParse, p, pItem->u.x.iOrderByCol-1); if( pColl==0 ) pColl = db->pDfltColl; pOrderBy->a[i].pExpr = sqlite3ExprAddCollateString(pParse, pTerm, pColl->zName); } assert( sqlite3KeyInfoIsWriteable(pRet) ); pRet->aColl[i] = pColl; pRet->aSortFlags[i] = pOrderBy->a[i].sortFlags; } } return pRet; } #ifndef SQLITE_OMIT_CTE /* ** This routine generates VDBE code to compute the content of a WITH RECURSIVE ** query of the form: ** ** AS ( UNION [ALL] ) ** \___________/ \_______________/ ** p->pPrior p ** ** ** There is exactly one reference to the recursive-table in the FROM clause ** of recursive-query, marked with the SrcList->a[].fg.isRecursive flag. ** ** The setup-query runs once to generate an initial set of rows that go ** into a Queue table. Rows are extracted from the Queue table one by ** one. Each row extracted from Queue is output to pDest. Then the single ** extracted row (now in the iCurrent table) becomes the content of the ** recursive-table for a recursive-query run. The output of the recursive-query ** is added back into the Queue table. Then another row is extracted from Queue ** and the iteration continues until the Queue table is empty. ** ** If the compound query operator is UNION then no duplicate rows are ever ** inserted into the Queue table. The iDistinct table keeps a copy of all rows ** that have ever been inserted into Queue and causes duplicates to be ** discarded. If the operator is UNION ALL, then duplicates are allowed. ** ** If the query has an ORDER BY, then entries in the Queue table are kept in ** ORDER BY order and the first entry is extracted for each cycle. Without ** an ORDER BY, the Queue table is just a FIFO. ** ** If a LIMIT clause is provided, then the iteration stops after LIMIT rows ** have been output to pDest. A LIMIT of zero means to output no rows and a ** negative LIMIT means to output all rows. If there is also an OFFSET clause ** with a positive value, then the first OFFSET outputs are discarded rather ** than being sent to pDest. The LIMIT count does not begin until after OFFSET ** rows have been skipped. */ static void generateWithRecursiveQuery( Parse *pParse, /* Parsing context */ Select *p, /* The recursive SELECT to be coded */ SelectDest *pDest /* What to do with query results */ ){ SrcList *pSrc = p->pSrc; /* The FROM clause of the recursive query */ int nCol = p->pEList->nExpr; /* Number of columns in the recursive table */ Vdbe *v = pParse->pVdbe; /* The prepared statement under construction */ Select *pSetup = p->pPrior; /* The setup query */ int addrTop; /* Top of the loop */ int addrCont, addrBreak; /* CONTINUE and BREAK addresses */ int iCurrent = 0; /* The Current table */ int regCurrent; /* Register holding Current table */ int iQueue; /* The Queue table */ int iDistinct = 0; /* To ensure unique results if UNION */ int eDest = SRT_Fifo; /* How to write to Queue */ SelectDest destQueue; /* SelectDest targetting the Queue table */ int i; /* Loop counter */ int rc; /* Result code */ ExprList *pOrderBy; /* The ORDER BY clause */ Expr *pLimit; /* Saved LIMIT and OFFSET */ int regLimit, regOffset; /* Registers used by LIMIT and OFFSET */ #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWin ){ sqlite3ErrorMsg(pParse, "cannot use window functions in recursive queries"); return; } #endif /* Obtain authorization to do a recursive query */ if( sqlite3AuthCheck(pParse, SQLITE_RECURSIVE, 0, 0, 0) ) return; /* Process the LIMIT and OFFSET clauses, if they exist */ addrBreak = sqlite3VdbeMakeLabel(pParse); p->nSelectRow = 320; /* 4 billion rows */ computeLimitRegisters(pParse, p, addrBreak); pLimit = p->pLimit; regLimit = p->iLimit; regOffset = p->iOffset; p->pLimit = 0; p->iLimit = p->iOffset = 0; pOrderBy = p->pOrderBy; /* Locate the cursor number of the Current table */ for(i=0; ALWAYS(inSrc); i++){ if( pSrc->a[i].fg.isRecursive ){ iCurrent = pSrc->a[i].iCursor; break; } } /* Allocate cursors numbers for Queue and Distinct. The cursor number for ** the Distinct table must be exactly one greater than Queue in order ** for the SRT_DistFifo and SRT_DistQueue destinations to work. */ iQueue = pParse->nTab++; if( p->op==TK_UNION ){ eDest = pOrderBy ? SRT_DistQueue : SRT_DistFifo; iDistinct = pParse->nTab++; }else{ eDest = pOrderBy ? SRT_Queue : SRT_Fifo; } sqlite3SelectDestInit(&destQueue, eDest, iQueue); /* Allocate cursors for Current, Queue, and Distinct. */ regCurrent = ++pParse->nMem; sqlite3VdbeAddOp3(v, OP_OpenPseudo, iCurrent, regCurrent, nCol); if( pOrderBy ){ KeyInfo *pKeyInfo = multiSelectOrderByKeyInfo(pParse, p, 1); sqlite3VdbeAddOp4(v, OP_OpenEphemeral, iQueue, pOrderBy->nExpr+2, 0, (char*)pKeyInfo, P4_KEYINFO); destQueue.pOrderBy = pOrderBy; }else{ sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iQueue, nCol); } VdbeComment((v, "Queue table")); if( iDistinct ){ p->addrOpenEphm[0] = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iDistinct, 0); p->selFlags |= SF_UsesEphemeral; } /* Detach the ORDER BY clause from the compound SELECT */ p->pOrderBy = 0; /* Store the results of the setup-query in Queue. */ pSetup->pNext = 0; ExplainQueryPlan((pParse, 1, "SETUP")); rc = sqlite3Select(pParse, pSetup, &destQueue); pSetup->pNext = p; if( rc ) goto end_of_recursive_query; /* Find the next row in the Queue and output that row */ addrTop = sqlite3VdbeAddOp2(v, OP_Rewind, iQueue, addrBreak); VdbeCoverage(v); /* Transfer the next row in Queue over to Current */ sqlite3VdbeAddOp1(v, OP_NullRow, iCurrent); /* To reset column cache */ if( pOrderBy ){ sqlite3VdbeAddOp3(v, OP_Column, iQueue, pOrderBy->nExpr+1, regCurrent); }else{ sqlite3VdbeAddOp2(v, OP_RowData, iQueue, regCurrent); } sqlite3VdbeAddOp1(v, OP_Delete, iQueue); /* Output the single row in Current */ addrCont = sqlite3VdbeMakeLabel(pParse); codeOffset(v, regOffset, addrCont); selectInnerLoop(pParse, p, iCurrent, 0, 0, pDest, addrCont, addrBreak); if( regLimit ){ sqlite3VdbeAddOp2(v, OP_DecrJumpZero, regLimit, addrBreak); VdbeCoverage(v); } sqlite3VdbeResolveLabel(v, addrCont); /* Execute the recursive SELECT taking the single row in Current as ** the value for the recursive-table. Store the results in the Queue. */ if( p->selFlags & SF_Aggregate ){ sqlite3ErrorMsg(pParse, "recursive aggregate queries not supported"); }else{ p->pPrior = 0; ExplainQueryPlan((pParse, 1, "RECURSIVE STEP")); sqlite3Select(pParse, p, &destQueue); assert( p->pPrior==0 ); p->pPrior = pSetup; } /* Keep running the loop until the Queue is empty */ sqlite3VdbeGoto(v, addrTop); sqlite3VdbeResolveLabel(v, addrBreak); end_of_recursive_query: sqlite3ExprListDelete(pParse->db, p->pOrderBy); p->pOrderBy = pOrderBy; p->pLimit = pLimit; return; } #endif /* SQLITE_OMIT_CTE */ /* Forward references */ static int multiSelectOrderBy( Parse *pParse, /* Parsing context */ Select *p, /* The right-most of SELECTs to be coded */ SelectDest *pDest /* What to do with query results */ ); /* ** Handle the special case of a compound-select that originates from a ** VALUES clause. By handling this as a special case, we avoid deep ** recursion, and thus do not need to enforce the SQLITE_LIMIT_COMPOUND_SELECT ** on a VALUES clause. ** ** Because the Select object originates from a VALUES clause: ** (1) There is no LIMIT or OFFSET or else there is a LIMIT of exactly 1 ** (2) All terms are UNION ALL ** (3) There is no ORDER BY clause ** ** The "LIMIT of exactly 1" case of condition (1) comes about when a VALUES ** clause occurs within scalar expression (ex: "SELECT (VALUES(1),(2),(3))"). ** The sqlite3CodeSubselect will have added the LIMIT 1 clause in tht case. ** Since the limit is exactly 1, we only need to evalutes the left-most VALUES. */ static int multiSelectValues( Parse *pParse, /* Parsing context */ Select *p, /* The right-most of SELECTs to be coded */ SelectDest *pDest /* What to do with query results */ ){ int nRow = 1; int rc = 0; int bShowAll = p->pLimit==0; assert( p->selFlags & SF_MultiValue ); do{ assert( p->selFlags & SF_Values ); assert( p->op==TK_ALL || (p->op==TK_SELECT && p->pPrior==0) ); assert( p->pNext==0 || p->pEList->nExpr==p->pNext->pEList->nExpr ); #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWin ) return -1; #endif if( p->pPrior==0 ) break; assert( p->pPrior->pNext==p ); p = p->pPrior; nRow += bShowAll; }while(1); ExplainQueryPlan((pParse, 0, "SCAN %d CONSTANT ROW%s", nRow, nRow==1 ? "" : "S")); while( p ){ selectInnerLoop(pParse, p, -1, 0, 0, pDest, 1, 1); if( !bShowAll ) break; p->nSelectRow = nRow; p = p->pNext; } return rc; } /* ** This routine is called to process a compound query form from ** two or more separate queries using UNION, UNION ALL, EXCEPT, or ** INTERSECT ** ** "p" points to the right-most of the two queries. the query on the ** left is p->pPrior. The left query could also be a compound query ** in which case this routine will be called recursively. ** ** The results of the total query are to be written into a destination ** of type eDest with parameter iParm. ** ** Example 1: Consider a three-way compound SQL statement. ** ** SELECT a FROM t1 UNION SELECT b FROM t2 UNION SELECT c FROM t3 ** ** This statement is parsed up as follows: ** ** SELECT c FROM t3 ** | ** `-----> SELECT b FROM t2 ** | ** `------> SELECT a FROM t1 ** ** The arrows in the diagram above represent the Select.pPrior pointer. ** So if this routine is called with p equal to the t3 query, then ** pPrior will be the t2 query. p->op will be TK_UNION in this case. ** ** Notice that because of the way SQLite parses compound SELECTs, the ** individual selects always group from left to right. */ static int multiSelect( Parse *pParse, /* Parsing context */ Select *p, /* The right-most of SELECTs to be coded */ SelectDest *pDest /* What to do with query results */ ){ int rc = SQLITE_OK; /* Success code from a subroutine */ Select *pPrior; /* Another SELECT immediately to our left */ Vdbe *v; /* Generate code to this VDBE */ SelectDest dest; /* Alternative data destination */ Select *pDelete = 0; /* Chain of simple selects to delete */ sqlite3 *db; /* Database connection */ /* Make sure there is no ORDER BY or LIMIT clause on prior SELECTs. Only ** the last (right-most) SELECT in the series may have an ORDER BY or LIMIT. */ assert( p && p->pPrior ); /* Calling function guarantees this much */ assert( (p->selFlags & SF_Recursive)==0 || p->op==TK_ALL || p->op==TK_UNION ); assert( p->selFlags & SF_Compound ); db = pParse->db; pPrior = p->pPrior; dest = *pDest; if( pPrior->pOrderBy || pPrior->pLimit ){ sqlite3ErrorMsg(pParse,"%s clause should come after %s not before", pPrior->pOrderBy!=0 ? "ORDER BY" : "LIMIT", selectOpName(p->op)); rc = 1; goto multi_select_end; } v = sqlite3GetVdbe(pParse); assert( v!=0 ); /* The VDBE already created by calling function */ /* Create the destination temporary table if necessary */ if( dest.eDest==SRT_EphemTab ){ assert( p->pEList ); sqlite3VdbeAddOp2(v, OP_OpenEphemeral, dest.iSDParm, p->pEList->nExpr); dest.eDest = SRT_Table; } /* Special handling for a compound-select that originates as a VALUES clause. */ if( p->selFlags & SF_MultiValue ){ rc = multiSelectValues(pParse, p, &dest); if( rc>=0 ) goto multi_select_end; rc = SQLITE_OK; } /* Make sure all SELECTs in the statement have the same number of elements ** in their result sets. */ assert( p->pEList && pPrior->pEList ); assert( p->pEList->nExpr==pPrior->pEList->nExpr ); #ifndef SQLITE_OMIT_CTE if( p->selFlags & SF_Recursive ){ generateWithRecursiveQuery(pParse, p, &dest); }else #endif /* Compound SELECTs that have an ORDER BY clause are handled separately. */ if( p->pOrderBy ){ return multiSelectOrderBy(pParse, p, pDest); }else{ #ifndef SQLITE_OMIT_EXPLAIN if( pPrior->pPrior==0 ){ ExplainQueryPlan((pParse, 1, "COMPOUND QUERY")); ExplainQueryPlan((pParse, 1, "LEFT-MOST SUBQUERY")); } #endif /* Generate code for the left and right SELECT statements. */ switch( p->op ){ case TK_ALL: { int addr = 0; int nLimit; assert( !pPrior->pLimit ); pPrior->iLimit = p->iLimit; pPrior->iOffset = p->iOffset; pPrior->pLimit = p->pLimit; rc = sqlite3Select(pParse, pPrior, &dest); p->pLimit = 0; if( rc ){ goto multi_select_end; } p->pPrior = 0; p->iLimit = pPrior->iLimit; p->iOffset = pPrior->iOffset; if( p->iLimit ){ addr = sqlite3VdbeAddOp1(v, OP_IfNot, p->iLimit); VdbeCoverage(v); VdbeComment((v, "Jump ahead if LIMIT reached")); if( p->iOffset ){ sqlite3VdbeAddOp3(v, OP_OffsetLimit, p->iLimit, p->iOffset+1, p->iOffset); } } ExplainQueryPlan((pParse, 1, "UNION ALL")); rc = sqlite3Select(pParse, p, &dest); testcase( rc!=SQLITE_OK ); pDelete = p->pPrior; p->pPrior = pPrior; p->nSelectRow = sqlite3LogEstAdd(p->nSelectRow, pPrior->nSelectRow); if( pPrior->pLimit && sqlite3ExprIsInteger(pPrior->pLimit->pLeft, &nLimit) && nLimit>0 && p->nSelectRow > sqlite3LogEst((u64)nLimit) ){ p->nSelectRow = sqlite3LogEst((u64)nLimit); } if( addr ){ sqlite3VdbeJumpHere(v, addr); } break; } case TK_EXCEPT: case TK_UNION: { int unionTab; /* Cursor number of the temp table holding result */ u8 op = 0; /* One of the SRT_ operations to apply to self */ int priorOp; /* The SRT_ operation to apply to prior selects */ Expr *pLimit; /* Saved values of p->nLimit */ int addr; SelectDest uniondest; testcase( p->op==TK_EXCEPT ); testcase( p->op==TK_UNION ); priorOp = SRT_Union; if( dest.eDest==priorOp ){ /* We can reuse a temporary table generated by a SELECT to our ** right. */ assert( p->pLimit==0 ); /* Not allowed on leftward elements */ unionTab = dest.iSDParm; }else{ /* We will need to create our own temporary table to hold the ** intermediate results. */ unionTab = pParse->nTab++; assert( p->pOrderBy==0 ); addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, unionTab, 0); assert( p->addrOpenEphm[0] == -1 ); p->addrOpenEphm[0] = addr; findRightmost(p)->selFlags |= SF_UsesEphemeral; assert( p->pEList ); } /* Code the SELECT statements to our left */ assert( !pPrior->pOrderBy ); sqlite3SelectDestInit(&uniondest, priorOp, unionTab); rc = sqlite3Select(pParse, pPrior, &uniondest); if( rc ){ goto multi_select_end; } /* Code the current SELECT statement */ if( p->op==TK_EXCEPT ){ op = SRT_Except; }else{ assert( p->op==TK_UNION ); op = SRT_Union; } p->pPrior = 0; pLimit = p->pLimit; p->pLimit = 0; uniondest.eDest = op; ExplainQueryPlan((pParse, 1, "%s USING TEMP B-TREE", selectOpName(p->op))); rc = sqlite3Select(pParse, p, &uniondest); testcase( rc!=SQLITE_OK ); assert( p->pOrderBy==0 ); pDelete = p->pPrior; p->pPrior = pPrior; p->pOrderBy = 0; if( p->op==TK_UNION ){ p->nSelectRow = sqlite3LogEstAdd(p->nSelectRow, pPrior->nSelectRow); } sqlite3ExprDelete(db, p->pLimit); p->pLimit = pLimit; p->iLimit = 0; p->iOffset = 0; /* Convert the data in the temporary table into whatever form ** it is that we currently need. */ assert( unionTab==dest.iSDParm || dest.eDest!=priorOp ); assert( p->pEList || db->mallocFailed ); if( dest.eDest!=priorOp && db->mallocFailed==0 ){ int iCont, iBreak, iStart; iBreak = sqlite3VdbeMakeLabel(pParse); iCont = sqlite3VdbeMakeLabel(pParse); computeLimitRegisters(pParse, p, iBreak); sqlite3VdbeAddOp2(v, OP_Rewind, unionTab, iBreak); VdbeCoverage(v); iStart = sqlite3VdbeCurrentAddr(v); selectInnerLoop(pParse, p, unionTab, 0, 0, &dest, iCont, iBreak); sqlite3VdbeResolveLabel(v, iCont); sqlite3VdbeAddOp2(v, OP_Next, unionTab, iStart); VdbeCoverage(v); sqlite3VdbeResolveLabel(v, iBreak); sqlite3VdbeAddOp2(v, OP_Close, unionTab, 0); } break; } default: assert( p->op==TK_INTERSECT ); { int tab1, tab2; int iCont, iBreak, iStart; Expr *pLimit; int addr; SelectDest intersectdest; int r1; /* INTERSECT is different from the others since it requires ** two temporary tables. Hence it has its own case. Begin ** by allocating the tables we will need. */ tab1 = pParse->nTab++; tab2 = pParse->nTab++; assert( p->pOrderBy==0 ); addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab1, 0); assert( p->addrOpenEphm[0] == -1 ); p->addrOpenEphm[0] = addr; findRightmost(p)->selFlags |= SF_UsesEphemeral; assert( p->pEList ); /* Code the SELECTs to our left into temporary table "tab1". */ sqlite3SelectDestInit(&intersectdest, SRT_Union, tab1); rc = sqlite3Select(pParse, pPrior, &intersectdest); if( rc ){ goto multi_select_end; } /* Code the current SELECT into temporary table "tab2" */ addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, tab2, 0); assert( p->addrOpenEphm[1] == -1 ); p->addrOpenEphm[1] = addr; p->pPrior = 0; pLimit = p->pLimit; p->pLimit = 0; intersectdest.iSDParm = tab2; ExplainQueryPlan((pParse, 1, "%s USING TEMP B-TREE", selectOpName(p->op))); rc = sqlite3Select(pParse, p, &intersectdest); testcase( rc!=SQLITE_OK ); pDelete = p->pPrior; p->pPrior = pPrior; if( p->nSelectRow>pPrior->nSelectRow ){ p->nSelectRow = pPrior->nSelectRow; } sqlite3ExprDelete(db, p->pLimit); p->pLimit = pLimit; /* Generate code to take the intersection of the two temporary ** tables. */ if( rc ) break; assert( p->pEList ); iBreak = sqlite3VdbeMakeLabel(pParse); iCont = sqlite3VdbeMakeLabel(pParse); computeLimitRegisters(pParse, p, iBreak); sqlite3VdbeAddOp2(v, OP_Rewind, tab1, iBreak); VdbeCoverage(v); r1 = sqlite3GetTempReg(pParse); iStart = sqlite3VdbeAddOp2(v, OP_RowData, tab1, r1); sqlite3VdbeAddOp4Int(v, OP_NotFound, tab2, iCont, r1, 0); VdbeCoverage(v); sqlite3ReleaseTempReg(pParse, r1); selectInnerLoop(pParse, p, tab1, 0, 0, &dest, iCont, iBreak); sqlite3VdbeResolveLabel(v, iCont); sqlite3VdbeAddOp2(v, OP_Next, tab1, iStart); VdbeCoverage(v); sqlite3VdbeResolveLabel(v, iBreak); sqlite3VdbeAddOp2(v, OP_Close, tab2, 0); sqlite3VdbeAddOp2(v, OP_Close, tab1, 0); break; } } #ifndef SQLITE_OMIT_EXPLAIN if( p->pNext==0 ){ ExplainQueryPlanPop(pParse); } #endif } if( pParse->nErr ) goto multi_select_end; /* Compute collating sequences used by ** temporary tables needed to implement the compound select. ** Attach the KeyInfo structure to all temporary tables. ** ** This section is run by the right-most SELECT statement only. ** SELECT statements to the left always skip this part. The right-most ** SELECT might also skip this part if it has no ORDER BY clause and ** no temp tables are required. */ if( p->selFlags & SF_UsesEphemeral ){ int i; /* Loop counter */ KeyInfo *pKeyInfo; /* Collating sequence for the result set */ Select *pLoop; /* For looping through SELECT statements */ CollSeq **apColl; /* For looping through pKeyInfo->aColl[] */ int nCol; /* Number of columns in result set */ assert( p->pNext==0 ); nCol = p->pEList->nExpr; pKeyInfo = sqlite3KeyInfoAlloc(db, nCol, 1); if( !pKeyInfo ){ rc = SQLITE_NOMEM_BKPT; goto multi_select_end; } for(i=0, apColl=pKeyInfo->aColl; ipDfltColl; } } for(pLoop=p; pLoop; pLoop=pLoop->pPrior){ for(i=0; i<2; i++){ int addr = pLoop->addrOpenEphm[i]; if( addr<0 ){ /* If [0] is unused then [1] is also unused. So we can ** always safely abort as soon as the first unused slot is found */ assert( pLoop->addrOpenEphm[1]<0 ); break; } sqlite3VdbeChangeP2(v, addr, nCol); sqlite3VdbeChangeP4(v, addr, (char*)sqlite3KeyInfoRef(pKeyInfo), P4_KEYINFO); pLoop->addrOpenEphm[i] = -1; } } sqlite3KeyInfoUnref(pKeyInfo); } multi_select_end: pDest->iSdst = dest.iSdst; pDest->nSdst = dest.nSdst; sqlite3SelectDelete(db, pDelete); return rc; } #endif /* SQLITE_OMIT_COMPOUND_SELECT */ /* ** Error message for when two or more terms of a compound select have different ** size result sets. */ SQLITE_PRIVATE void sqlite3SelectWrongNumTermsError(Parse *pParse, Select *p){ if( p->selFlags & SF_Values ){ sqlite3ErrorMsg(pParse, "all VALUES must have the same number of terms"); }else{ sqlite3ErrorMsg(pParse, "SELECTs to the left and right of %s" " do not have the same number of result columns", selectOpName(p->op)); } } /* ** Code an output subroutine for a coroutine implementation of a ** SELECT statment. ** ** The data to be output is contained in pIn->iSdst. There are ** pIn->nSdst columns to be output. pDest is where the output should ** be sent. ** ** regReturn is the number of the register holding the subroutine ** return address. ** ** If regPrev>0 then it is the first register in a vector that ** records the previous output. mem[regPrev] is a flag that is false ** if there has been no previous output. If regPrev>0 then code is ** generated to suppress duplicates. pKeyInfo is used for comparing ** keys. ** ** If the LIMIT found in p->iLimit is reached, jump immediately to ** iBreak. */ static int generateOutputSubroutine( Parse *pParse, /* Parsing context */ Select *p, /* The SELECT statement */ SelectDest *pIn, /* Coroutine supplying data */ SelectDest *pDest, /* Where to send the data */ int regReturn, /* The return address register */ int regPrev, /* Previous result register. No uniqueness if 0 */ KeyInfo *pKeyInfo, /* For comparing with previous entry */ int iBreak /* Jump here if we hit the LIMIT */ ){ Vdbe *v = pParse->pVdbe; int iContinue; int addr; addr = sqlite3VdbeCurrentAddr(v); iContinue = sqlite3VdbeMakeLabel(pParse); /* Suppress duplicates for UNION, EXCEPT, and INTERSECT */ if( regPrev ){ int addr1, addr2; addr1 = sqlite3VdbeAddOp1(v, OP_IfNot, regPrev); VdbeCoverage(v); addr2 = sqlite3VdbeAddOp4(v, OP_Compare, pIn->iSdst, regPrev+1, pIn->nSdst, (char*)sqlite3KeyInfoRef(pKeyInfo), P4_KEYINFO); sqlite3VdbeAddOp3(v, OP_Jump, addr2+2, iContinue, addr2+2); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addr1); sqlite3VdbeAddOp3(v, OP_Copy, pIn->iSdst, regPrev+1, pIn->nSdst-1); sqlite3VdbeAddOp2(v, OP_Integer, 1, regPrev); } if( pParse->db->mallocFailed ) return 0; /* Suppress the first OFFSET entries if there is an OFFSET clause */ codeOffset(v, p->iOffset, iContinue); assert( pDest->eDest!=SRT_Exists ); assert( pDest->eDest!=SRT_Table ); switch( pDest->eDest ){ /* Store the result as data using a unique key. */ case SRT_EphemTab: { int r1 = sqlite3GetTempReg(pParse); int r2 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_MakeRecord, pIn->iSdst, pIn->nSdst, r1); sqlite3VdbeAddOp2(v, OP_NewRowid, pDest->iSDParm, r2); sqlite3VdbeAddOp3(v, OP_Insert, pDest->iSDParm, r1, r2); sqlite3VdbeChangeP5(v, OPFLAG_APPEND); sqlite3ReleaseTempReg(pParse, r2); sqlite3ReleaseTempReg(pParse, r1); break; } #ifndef SQLITE_OMIT_SUBQUERY /* If we are creating a set for an "expr IN (SELECT ...)". */ case SRT_Set: { int r1; testcase( pIn->nSdst>1 ); r1 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp4(v, OP_MakeRecord, pIn->iSdst, pIn->nSdst, r1, pDest->zAffSdst, pIn->nSdst); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, pDest->iSDParm, r1, pIn->iSdst, pIn->nSdst); sqlite3ReleaseTempReg(pParse, r1); break; } /* If this is a scalar select that is part of an expression, then ** store the results in the appropriate memory cell and break out ** of the scan loop. Note that the select might return multiple columns ** if it is the RHS of a row-value IN operator. */ case SRT_Mem: { if( pParse->nErr==0 ){ testcase( pIn->nSdst>1 ); sqlite3ExprCodeMove(pParse, pIn->iSdst, pDest->iSDParm, pIn->nSdst); } /* The LIMIT clause will jump out of the loop for us */ break; } #endif /* #ifndef SQLITE_OMIT_SUBQUERY */ /* The results are stored in a sequence of registers ** starting at pDest->iSdst. Then the co-routine yields. */ case SRT_Coroutine: { if( pDest->iSdst==0 ){ pDest->iSdst = sqlite3GetTempRange(pParse, pIn->nSdst); pDest->nSdst = pIn->nSdst; } sqlite3ExprCodeMove(pParse, pIn->iSdst, pDest->iSdst, pIn->nSdst); sqlite3VdbeAddOp1(v, OP_Yield, pDest->iSDParm); break; } /* If none of the above, then the result destination must be ** SRT_Output. This routine is never called with any other ** destination other than the ones handled above or SRT_Output. ** ** For SRT_Output, results are stored in a sequence of registers. ** Then the OP_ResultRow opcode is used to cause sqlite3_step() to ** return the next row of result. */ default: { assert( pDest->eDest==SRT_Output ); sqlite3VdbeAddOp2(v, OP_ResultRow, pIn->iSdst, pIn->nSdst); break; } } /* Jump to the end of the loop if the LIMIT is reached. */ if( p->iLimit ){ sqlite3VdbeAddOp2(v, OP_DecrJumpZero, p->iLimit, iBreak); VdbeCoverage(v); } /* Generate the subroutine return */ sqlite3VdbeResolveLabel(v, iContinue); sqlite3VdbeAddOp1(v, OP_Return, regReturn); return addr; } /* ** Alternative compound select code generator for cases when there ** is an ORDER BY clause. ** ** We assume a query of the following form: ** ** ORDER BY ** ** is one of UNION ALL, UNION, EXCEPT, or INTERSECT. The idea ** is to code both and with the ORDER BY clause as ** co-routines. Then run the co-routines in parallel and merge the results ** into the output. In addition to the two coroutines (called selectA and ** selectB) there are 7 subroutines: ** ** outA: Move the output of the selectA coroutine into the output ** of the compound query. ** ** outB: Move the output of the selectB coroutine into the output ** of the compound query. (Only generated for UNION and ** UNION ALL. EXCEPT and INSERTSECT never output a row that ** appears only in B.) ** ** AltB: Called when there is data from both coroutines and AB. ** ** EofA: Called when data is exhausted from selectA. ** ** EofB: Called when data is exhausted from selectB. ** ** The implementation of the latter five subroutines depend on which ** is used: ** ** ** UNION ALL UNION EXCEPT INTERSECT ** ------------- ----------------- -------------- ----------------- ** AltB: outA, nextA outA, nextA outA, nextA nextA ** ** AeqB: outA, nextA nextA nextA outA, nextA ** ** AgtB: outB, nextB outB, nextB nextB nextB ** ** EofA: outB, nextB outB, nextB halt halt ** ** EofB: outA, nextA outA, nextA outA, nextA halt ** ** In the AltB, AeqB, and AgtB subroutines, an EOF on A following nextA ** causes an immediate jump to EofA and an EOF on B following nextB causes ** an immediate jump to EofB. Within EofA and EofB, and EOF on entry or ** following nextX causes a jump to the end of the select processing. ** ** Duplicate removal in the UNION, EXCEPT, and INTERSECT cases is handled ** within the output subroutine. The regPrev register set holds the previously ** output value. A comparison is made against this value and the output ** is skipped if the next results would be the same as the previous. ** ** The implementation plan is to implement the two coroutines and seven ** subroutines first, then put the control logic at the bottom. Like this: ** ** goto Init ** coA: coroutine for left query (A) ** coB: coroutine for right query (B) ** outA: output one row of A ** outB: output one row of B (UNION and UNION ALL only) ** EofA: ... ** EofB: ... ** AltB: ... ** AeqB: ... ** AgtB: ... ** Init: initialize coroutine registers ** yield coA ** if eof(A) goto EofA ** yield coB ** if eof(B) goto EofB ** Cmpr: Compare A, B ** Jump AltB, AeqB, AgtB ** End: ... ** ** We call AltB, AeqB, AgtB, EofA, and EofB "subroutines" but they are not ** actually called using Gosub and they do not Return. EofA and EofB loop ** until all data is exhausted then jump to the "end" labe. AltB, AeqB, ** and AgtB jump to either L2 or to one of EofA or EofB. */ #ifndef SQLITE_OMIT_COMPOUND_SELECT static int multiSelectOrderBy( Parse *pParse, /* Parsing context */ Select *p, /* The right-most of SELECTs to be coded */ SelectDest *pDest /* What to do with query results */ ){ int i, j; /* Loop counters */ Select *pPrior; /* Another SELECT immediately to our left */ Vdbe *v; /* Generate code to this VDBE */ SelectDest destA; /* Destination for coroutine A */ SelectDest destB; /* Destination for coroutine B */ int regAddrA; /* Address register for select-A coroutine */ int regAddrB; /* Address register for select-B coroutine */ int addrSelectA; /* Address of the select-A coroutine */ int addrSelectB; /* Address of the select-B coroutine */ int regOutA; /* Address register for the output-A subroutine */ int regOutB; /* Address register for the output-B subroutine */ int addrOutA; /* Address of the output-A subroutine */ int addrOutB = 0; /* Address of the output-B subroutine */ int addrEofA; /* Address of the select-A-exhausted subroutine */ int addrEofA_noB; /* Alternate addrEofA if B is uninitialized */ int addrEofB; /* Address of the select-B-exhausted subroutine */ int addrAltB; /* Address of the AB subroutine */ int regLimitA; /* Limit register for select-A */ int regLimitB; /* Limit register for select-A */ int regPrev; /* A range of registers to hold previous output */ int savedLimit; /* Saved value of p->iLimit */ int savedOffset; /* Saved value of p->iOffset */ int labelCmpr; /* Label for the start of the merge algorithm */ int labelEnd; /* Label for the end of the overall SELECT stmt */ int addr1; /* Jump instructions that get retargetted */ int op; /* One of TK_ALL, TK_UNION, TK_EXCEPT, TK_INTERSECT */ KeyInfo *pKeyDup = 0; /* Comparison information for duplicate removal */ KeyInfo *pKeyMerge; /* Comparison information for merging rows */ sqlite3 *db; /* Database connection */ ExprList *pOrderBy; /* The ORDER BY clause */ int nOrderBy; /* Number of terms in the ORDER BY clause */ u32 *aPermute; /* Mapping from ORDER BY terms to result set columns */ assert( p->pOrderBy!=0 ); assert( pKeyDup==0 ); /* "Managed" code needs this. Ticket #3382. */ db = pParse->db; v = pParse->pVdbe; assert( v!=0 ); /* Already thrown the error if VDBE alloc failed */ labelEnd = sqlite3VdbeMakeLabel(pParse); labelCmpr = sqlite3VdbeMakeLabel(pParse); /* Patch up the ORDER BY clause */ op = p->op; pPrior = p->pPrior; assert( pPrior->pOrderBy==0 ); pOrderBy = p->pOrderBy; assert( pOrderBy ); nOrderBy = pOrderBy->nExpr; /* For operators other than UNION ALL we have to make sure that ** the ORDER BY clause covers every term of the result set. Add ** terms to the ORDER BY clause as necessary. */ if( op!=TK_ALL ){ for(i=1; db->mallocFailed==0 && i<=p->pEList->nExpr; i++){ struct ExprList_item *pItem; for(j=0, pItem=pOrderBy->a; ju.x.iOrderByCol>0 ); if( pItem->u.x.iOrderByCol==i ) break; } if( j==nOrderBy ){ Expr *pNew = sqlite3Expr(db, TK_INTEGER, 0); if( pNew==0 ) return SQLITE_NOMEM_BKPT; pNew->flags |= EP_IntValue; pNew->u.iValue = i; p->pOrderBy = pOrderBy = sqlite3ExprListAppend(pParse, pOrderBy, pNew); if( pOrderBy ) pOrderBy->a[nOrderBy++].u.x.iOrderByCol = (u16)i; } } } /* Compute the comparison permutation and keyinfo that is used with ** the permutation used to determine if the next ** row of results comes from selectA or selectB. Also add explicit ** collations to the ORDER BY clause terms so that when the subqueries ** to the right and the left are evaluated, they use the correct ** collation. */ aPermute = sqlite3DbMallocRawNN(db, sizeof(u32)*(nOrderBy + 1)); if( aPermute ){ struct ExprList_item *pItem; aPermute[0] = nOrderBy; for(i=1, pItem=pOrderBy->a; i<=nOrderBy; i++, pItem++){ assert( pItem->u.x.iOrderByCol>0 ); assert( pItem->u.x.iOrderByCol<=p->pEList->nExpr ); aPermute[i] = pItem->u.x.iOrderByCol - 1; } pKeyMerge = multiSelectOrderByKeyInfo(pParse, p, 1); }else{ pKeyMerge = 0; } /* Reattach the ORDER BY clause to the query. */ p->pOrderBy = pOrderBy; pPrior->pOrderBy = sqlite3ExprListDup(pParse->db, pOrderBy, 0); /* Allocate a range of temporary registers and the KeyInfo needed ** for the logic that removes duplicate result rows when the ** operator is UNION, EXCEPT, or INTERSECT (but not UNION ALL). */ if( op==TK_ALL ){ regPrev = 0; }else{ int nExpr = p->pEList->nExpr; assert( nOrderBy>=nExpr || db->mallocFailed ); regPrev = pParse->nMem+1; pParse->nMem += nExpr+1; sqlite3VdbeAddOp2(v, OP_Integer, 0, regPrev); pKeyDup = sqlite3KeyInfoAlloc(db, nExpr, 1); if( pKeyDup ){ assert( sqlite3KeyInfoIsWriteable(pKeyDup) ); for(i=0; iaColl[i] = multiSelectCollSeq(pParse, p, i); pKeyDup->aSortFlags[i] = 0; } } } /* Separate the left and the right query from one another */ p->pPrior = 0; pPrior->pNext = 0; sqlite3ResolveOrderGroupBy(pParse, p, p->pOrderBy, "ORDER"); if( pPrior->pPrior==0 ){ sqlite3ResolveOrderGroupBy(pParse, pPrior, pPrior->pOrderBy, "ORDER"); } /* Compute the limit registers */ computeLimitRegisters(pParse, p, labelEnd); if( p->iLimit && op==TK_ALL ){ regLimitA = ++pParse->nMem; regLimitB = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Copy, p->iOffset ? p->iOffset+1 : p->iLimit, regLimitA); sqlite3VdbeAddOp2(v, OP_Copy, regLimitA, regLimitB); }else{ regLimitA = regLimitB = 0; } sqlite3ExprDelete(db, p->pLimit); p->pLimit = 0; regAddrA = ++pParse->nMem; regAddrB = ++pParse->nMem; regOutA = ++pParse->nMem; regOutB = ++pParse->nMem; sqlite3SelectDestInit(&destA, SRT_Coroutine, regAddrA); sqlite3SelectDestInit(&destB, SRT_Coroutine, regAddrB); ExplainQueryPlan((pParse, 1, "MERGE (%s)", selectOpName(p->op))); /* Generate a coroutine to evaluate the SELECT statement to the ** left of the compound operator - the "A" select. */ addrSelectA = sqlite3VdbeCurrentAddr(v) + 1; addr1 = sqlite3VdbeAddOp3(v, OP_InitCoroutine, regAddrA, 0, addrSelectA); VdbeComment((v, "left SELECT")); pPrior->iLimit = regLimitA; ExplainQueryPlan((pParse, 1, "LEFT")); sqlite3Select(pParse, pPrior, &destA); sqlite3VdbeEndCoroutine(v, regAddrA); sqlite3VdbeJumpHere(v, addr1); /* Generate a coroutine to evaluate the SELECT statement on ** the right - the "B" select */ addrSelectB = sqlite3VdbeCurrentAddr(v) + 1; addr1 = sqlite3VdbeAddOp3(v, OP_InitCoroutine, regAddrB, 0, addrSelectB); VdbeComment((v, "right SELECT")); savedLimit = p->iLimit; savedOffset = p->iOffset; p->iLimit = regLimitB; p->iOffset = 0; ExplainQueryPlan((pParse, 1, "RIGHT")); sqlite3Select(pParse, p, &destB); p->iLimit = savedLimit; p->iOffset = savedOffset; sqlite3VdbeEndCoroutine(v, regAddrB); /* Generate a subroutine that outputs the current row of the A ** select as the next output row of the compound select. */ VdbeNoopComment((v, "Output routine for A")); addrOutA = generateOutputSubroutine(pParse, p, &destA, pDest, regOutA, regPrev, pKeyDup, labelEnd); /* Generate a subroutine that outputs the current row of the B ** select as the next output row of the compound select. */ if( op==TK_ALL || op==TK_UNION ){ VdbeNoopComment((v, "Output routine for B")); addrOutB = generateOutputSubroutine(pParse, p, &destB, pDest, regOutB, regPrev, pKeyDup, labelEnd); } sqlite3KeyInfoUnref(pKeyDup); /* Generate a subroutine to run when the results from select A ** are exhausted and only data in select B remains. */ if( op==TK_EXCEPT || op==TK_INTERSECT ){ addrEofA_noB = addrEofA = labelEnd; }else{ VdbeNoopComment((v, "eof-A subroutine")); addrEofA = sqlite3VdbeAddOp2(v, OP_Gosub, regOutB, addrOutB); addrEofA_noB = sqlite3VdbeAddOp2(v, OP_Yield, regAddrB, labelEnd); VdbeCoverage(v); sqlite3VdbeGoto(v, addrEofA); p->nSelectRow = sqlite3LogEstAdd(p->nSelectRow, pPrior->nSelectRow); } /* Generate a subroutine to run when the results from select B ** are exhausted and only data in select A remains. */ if( op==TK_INTERSECT ){ addrEofB = addrEofA; if( p->nSelectRow > pPrior->nSelectRow ) p->nSelectRow = pPrior->nSelectRow; }else{ VdbeNoopComment((v, "eof-B subroutine")); addrEofB = sqlite3VdbeAddOp2(v, OP_Gosub, regOutA, addrOutA); sqlite3VdbeAddOp2(v, OP_Yield, regAddrA, labelEnd); VdbeCoverage(v); sqlite3VdbeGoto(v, addrEofB); } /* Generate code to handle the case of AB */ VdbeNoopComment((v, "A-gt-B subroutine")); addrAgtB = sqlite3VdbeCurrentAddr(v); if( op==TK_ALL || op==TK_UNION ){ sqlite3VdbeAddOp2(v, OP_Gosub, regOutB, addrOutB); } sqlite3VdbeAddOp2(v, OP_Yield, regAddrB, addrEofB); VdbeCoverage(v); sqlite3VdbeGoto(v, labelCmpr); /* This code runs once to initialize everything. */ sqlite3VdbeJumpHere(v, addr1); sqlite3VdbeAddOp2(v, OP_Yield, regAddrA, addrEofA_noB); VdbeCoverage(v); sqlite3VdbeAddOp2(v, OP_Yield, regAddrB, addrEofB); VdbeCoverage(v); /* Implement the main merge loop */ sqlite3VdbeResolveLabel(v, labelCmpr); sqlite3VdbeAddOp4(v, OP_Permutation, 0, 0, 0, (char*)aPermute, P4_INTARRAY); sqlite3VdbeAddOp4(v, OP_Compare, destA.iSdst, destB.iSdst, nOrderBy, (char*)pKeyMerge, P4_KEYINFO); sqlite3VdbeChangeP5(v, OPFLAG_PERMUTE); sqlite3VdbeAddOp3(v, OP_Jump, addrAltB, addrAeqB, addrAgtB); VdbeCoverage(v); /* Jump to the this point in order to terminate the query. */ sqlite3VdbeResolveLabel(v, labelEnd); /* Reassembly the compound query so that it will be freed correctly ** by the calling function */ if( p->pPrior ){ sqlite3SelectDelete(db, p->pPrior); } p->pPrior = pPrior; pPrior->pNext = p; /*** TBD: Insert subroutine calls to close cursors on incomplete **** subqueries ****/ ExplainQueryPlanPop(pParse); return pParse->nErr!=0; } #endif #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* An instance of the SubstContext object describes an substitution edit ** to be performed on a parse tree. ** ** All references to columns in table iTable are to be replaced by corresponding ** expressions in pEList. */ typedef struct SubstContext { Parse *pParse; /* The parsing context */ int iTable; /* Replace references to this table */ int iNewTable; /* New table number */ int isLeftJoin; /* Add TK_IF_NULL_ROW opcodes on each replacement */ ExprList *pEList; /* Replacement expressions */ } SubstContext; /* Forward Declarations */ static void substExprList(SubstContext*, ExprList*); static void substSelect(SubstContext*, Select*, int); /* ** Scan through the expression pExpr. Replace every reference to ** a column in table number iTable with a copy of the iColumn-th ** entry in pEList. (But leave references to the ROWID column ** unchanged.) ** ** This routine is part of the flattening procedure. A subquery ** whose result set is defined by pEList appears as entry in the ** FROM clause of a SELECT such that the VDBE cursor assigned to that ** FORM clause entry is iTable. This routine makes the necessary ** changes to pExpr so that it refers directly to the source table ** of the subquery rather the result set of the subquery. */ static Expr *substExpr( SubstContext *pSubst, /* Description of the substitution */ Expr *pExpr /* Expr in which substitution occurs */ ){ if( pExpr==0 ) return 0; if( ExprHasProperty(pExpr, EP_FromJoin) && pExpr->iRightJoinTable==pSubst->iTable ){ pExpr->iRightJoinTable = pSubst->iNewTable; } if( pExpr->op==TK_COLUMN && pExpr->iTable==pSubst->iTable && !ExprHasProperty(pExpr, EP_FixedCol) ){ if( pExpr->iColumn<0 ){ pExpr->op = TK_NULL; }else{ Expr *pNew; Expr *pCopy = pSubst->pEList->a[pExpr->iColumn].pExpr; Expr ifNullRow; assert( pSubst->pEList!=0 && pExpr->iColumnpEList->nExpr ); assert( pExpr->pRight==0 ); if( sqlite3ExprIsVector(pCopy) ){ sqlite3VectorErrorMsg(pSubst->pParse, pCopy); }else{ sqlite3 *db = pSubst->pParse->db; if( pSubst->isLeftJoin && pCopy->op!=TK_COLUMN ){ memset(&ifNullRow, 0, sizeof(ifNullRow)); ifNullRow.op = TK_IF_NULL_ROW; ifNullRow.pLeft = pCopy; ifNullRow.iTable = pSubst->iNewTable; ifNullRow.flags = EP_Skip; pCopy = &ifNullRow; } testcase( ExprHasProperty(pCopy, EP_Subquery) ); pNew = sqlite3ExprDup(db, pCopy, 0); if( pNew && pSubst->isLeftJoin ){ ExprSetProperty(pNew, EP_CanBeNull); } if( pNew && ExprHasProperty(pExpr,EP_FromJoin) ){ pNew->iRightJoinTable = pExpr->iRightJoinTable; ExprSetProperty(pNew, EP_FromJoin); } sqlite3ExprDelete(db, pExpr); pExpr = pNew; /* Ensure that the expression now has an implicit collation sequence, ** just as it did when it was a column of a view or sub-query. */ if( pExpr ){ if( pExpr->op!=TK_COLUMN && pExpr->op!=TK_COLLATE ){ CollSeq *pColl = sqlite3ExprCollSeq(pSubst->pParse, pExpr); pExpr = sqlite3ExprAddCollateString(pSubst->pParse, pExpr, (pColl ? pColl->zName : "BINARY") ); } ExprClearProperty(pExpr, EP_Collate); } } } }else{ if( pExpr->op==TK_IF_NULL_ROW && pExpr->iTable==pSubst->iTable ){ pExpr->iTable = pSubst->iNewTable; } pExpr->pLeft = substExpr(pSubst, pExpr->pLeft); pExpr->pRight = substExpr(pSubst, pExpr->pRight); if( ExprHasProperty(pExpr, EP_xIsSelect) ){ substSelect(pSubst, pExpr->x.pSelect, 1); }else{ substExprList(pSubst, pExpr->x.pList); } #ifndef SQLITE_OMIT_WINDOWFUNC if( ExprHasProperty(pExpr, EP_WinFunc) ){ Window *pWin = pExpr->y.pWin; pWin->pFilter = substExpr(pSubst, pWin->pFilter); substExprList(pSubst, pWin->pPartition); substExprList(pSubst, pWin->pOrderBy); } #endif } return pExpr; } static void substExprList( SubstContext *pSubst, /* Description of the substitution */ ExprList *pList /* List to scan and in which to make substitutes */ ){ int i; if( pList==0 ) return; for(i=0; inExpr; i++){ pList->a[i].pExpr = substExpr(pSubst, pList->a[i].pExpr); } } static void substSelect( SubstContext *pSubst, /* Description of the substitution */ Select *p, /* SELECT statement in which to make substitutions */ int doPrior /* Do substitutes on p->pPrior too */ ){ SrcList *pSrc; struct SrcList_item *pItem; int i; if( !p ) return; do{ substExprList(pSubst, p->pEList); substExprList(pSubst, p->pGroupBy); substExprList(pSubst, p->pOrderBy); p->pHaving = substExpr(pSubst, p->pHaving); p->pWhere = substExpr(pSubst, p->pWhere); pSrc = p->pSrc; assert( pSrc!=0 ); for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){ substSelect(pSubst, pItem->pSelect, 1); if( pItem->fg.isTabFunc ){ substExprList(pSubst, pItem->u1.pFuncArg); } } }while( doPrior && (p = p->pPrior)!=0 ); } #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* ** pSelect is a SELECT statement and pSrcItem is one item in the FROM ** clause of that SELECT. ** ** This routine scans the entire SELECT statement and recomputes the ** pSrcItem->colUsed mask. */ static int recomputeColumnsUsedExpr(Walker *pWalker, Expr *pExpr){ struct SrcList_item *pItem; if( pExpr->op!=TK_COLUMN ) return WRC_Continue; pItem = pWalker->u.pSrcItem; if( pItem->iCursor!=pExpr->iTable ) return WRC_Continue; if( pExpr->iColumn<0 ) return WRC_Continue; pItem->colUsed |= sqlite3ExprColUsed(pExpr); return WRC_Continue; } static void recomputeColumnsUsed( Select *pSelect, /* The complete SELECT statement */ struct SrcList_item *pSrcItem /* Which FROM clause item to recompute */ ){ Walker w; if( NEVER(pSrcItem->pTab==0) ) return; memset(&w, 0, sizeof(w)); w.xExprCallback = recomputeColumnsUsedExpr; w.xSelectCallback = sqlite3SelectWalkNoop; w.u.pSrcItem = pSrcItem; pSrcItem->colUsed = 0; sqlite3WalkSelect(&w, pSelect); } #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* ** This routine attempts to flatten subqueries as a performance optimization. ** This routine returns 1 if it makes changes and 0 if no flattening occurs. ** ** To understand the concept of flattening, consider the following ** query: ** ** SELECT a FROM (SELECT x+y AS a FROM t1 WHERE z<100) WHERE a>5 ** ** The default way of implementing this query is to execute the ** subquery first and store the results in a temporary table, then ** run the outer query on that temporary table. This requires two ** passes over the data. Furthermore, because the temporary table ** has no indices, the WHERE clause on the outer query cannot be ** optimized. ** ** This routine attempts to rewrite queries such as the above into ** a single flat select, like this: ** ** SELECT x+y AS a FROM t1 WHERE z<100 AND a>5 ** ** The code generated for this simplification gives the same result ** but only has to scan the data once. And because indices might ** exist on the table t1, a complete scan of the data might be ** avoided. ** ** Flattening is subject to the following constraints: ** ** (**) We no longer attempt to flatten aggregate subqueries. Was: ** The subquery and the outer query cannot both be aggregates. ** ** (**) We no longer attempt to flatten aggregate subqueries. Was: ** (2) If the subquery is an aggregate then ** (2a) the outer query must not be a join and ** (2b) the outer query must not use subqueries ** other than the one FROM-clause subquery that is a candidate ** for flattening. (This is due to ticket [2f7170d73bf9abf80] ** from 2015-02-09.) ** ** (3) If the subquery is the right operand of a LEFT JOIN then ** (3a) the subquery may not be a join and ** (3b) the FROM clause of the subquery may not contain a virtual ** table and ** (3c) the outer query may not be an aggregate. ** (3d) the outer query may not be DISTINCT. ** ** (4) The subquery can not be DISTINCT. ** ** (**) At one point restrictions (4) and (5) defined a subset of DISTINCT ** sub-queries that were excluded from this optimization. Restriction ** (4) has since been expanded to exclude all DISTINCT subqueries. ** ** (**) We no longer attempt to flatten aggregate subqueries. Was: ** If the subquery is aggregate, the outer query may not be DISTINCT. ** ** (7) The subquery must have a FROM clause. TODO: For subqueries without ** A FROM clause, consider adding a FROM clause with the special ** table sqlite_once that consists of a single row containing a ** single NULL. ** ** (8) If the subquery uses LIMIT then the outer query may not be a join. ** ** (9) If the subquery uses LIMIT then the outer query may not be aggregate. ** ** (**) Restriction (10) was removed from the code on 2005-02-05 but we ** accidently carried the comment forward until 2014-09-15. Original ** constraint: "If the subquery is aggregate then the outer query ** may not use LIMIT." ** ** (11) The subquery and the outer query may not both have ORDER BY clauses. ** ** (**) Not implemented. Subsumed into restriction (3). Was previously ** a separate restriction deriving from ticket #350. ** ** (13) The subquery and outer query may not both use LIMIT. ** ** (14) The subquery may not use OFFSET. ** ** (15) If the outer query is part of a compound select, then the ** subquery may not use LIMIT. ** (See ticket #2339 and ticket [02a8e81d44]). ** ** (16) If the outer query is aggregate, then the subquery may not ** use ORDER BY. (Ticket #2942) This used to not matter ** until we introduced the group_concat() function. ** ** (17) If the subquery is a compound select, then ** (17a) all compound operators must be a UNION ALL, and ** (17b) no terms within the subquery compound may be aggregate ** or DISTINCT, and ** (17c) every term within the subquery compound must have a FROM clause ** (17d) the outer query may not be ** (17d1) aggregate, or ** (17d2) DISTINCT, or ** (17d3) a join. ** (17e) the subquery may not contain window functions ** ** The parent and sub-query may contain WHERE clauses. Subject to ** rules (11), (13) and (14), they may also contain ORDER BY, ** LIMIT and OFFSET clauses. The subquery cannot use any compound ** operator other than UNION ALL because all the other compound ** operators have an implied DISTINCT which is disallowed by ** restriction (4). ** ** Also, each component of the sub-query must return the same number ** of result columns. This is actually a requirement for any compound ** SELECT statement, but all the code here does is make sure that no ** such (illegal) sub-query is flattened. The caller will detect the ** syntax error and return a detailed message. ** ** (18) If the sub-query is a compound select, then all terms of the ** ORDER BY clause of the parent must be simple references to ** columns of the sub-query. ** ** (19) If the subquery uses LIMIT then the outer query may not ** have a WHERE clause. ** ** (20) If the sub-query is a compound select, then it must not use ** an ORDER BY clause. Ticket #3773. We could relax this constraint ** somewhat by saying that the terms of the ORDER BY clause must ** appear as unmodified result columns in the outer query. But we ** have other optimizations in mind to deal with that case. ** ** (21) If the subquery uses LIMIT then the outer query may not be ** DISTINCT. (See ticket [752e1646fc]). ** ** (22) The subquery may not be a recursive CTE. ** ** (**) Subsumed into restriction (17d3). Was: If the outer query is ** a recursive CTE, then the sub-query may not be a compound query. ** This restriction is because transforming the ** parent to a compound query confuses the code that handles ** recursive queries in multiSelect(). ** ** (**) We no longer attempt to flatten aggregate subqueries. Was: ** The subquery may not be an aggregate that uses the built-in min() or ** or max() functions. (Without this restriction, a query like: ** "SELECT x FROM (SELECT max(y), x FROM t1)" would not necessarily ** return the value X for which Y was maximal.) ** ** (25) If either the subquery or the parent query contains a window ** function in the select list or ORDER BY clause, flattening ** is not attempted. ** ** ** In this routine, the "p" parameter is a pointer to the outer query. ** The subquery is p->pSrc->a[iFrom]. isAgg is true if the outer query ** uses aggregates. ** ** If flattening is not attempted, this routine is a no-op and returns 0. ** If flattening is attempted this routine returns 1. ** ** All of the expression analysis must occur on both the outer query and ** the subquery before this routine runs. */ static int flattenSubquery( Parse *pParse, /* Parsing context */ Select *p, /* The parent or outer SELECT statement */ int iFrom, /* Index in p->pSrc->a[] of the inner subquery */ int isAgg /* True if outer SELECT uses aggregate functions */ ){ const char *zSavedAuthContext = pParse->zAuthContext; Select *pParent; /* Current UNION ALL term of the other query */ Select *pSub; /* The inner query or "subquery" */ Select *pSub1; /* Pointer to the rightmost select in sub-query */ SrcList *pSrc; /* The FROM clause of the outer query */ SrcList *pSubSrc; /* The FROM clause of the subquery */ int iParent; /* VDBE cursor number of the pSub result set temp table */ int iNewParent = -1;/* Replacement table for iParent */ int isLeftJoin = 0; /* True if pSub is the right side of a LEFT JOIN */ int i; /* Loop counter */ Expr *pWhere; /* The WHERE clause */ struct SrcList_item *pSubitem; /* The subquery */ sqlite3 *db = pParse->db; Walker w; /* Walker to persist agginfo data */ /* Check to see if flattening is permitted. Return 0 if not. */ assert( p!=0 ); assert( p->pPrior==0 ); if( OptimizationDisabled(db, SQLITE_QueryFlattener) ) return 0; pSrc = p->pSrc; assert( pSrc && iFrom>=0 && iFromnSrc ); pSubitem = &pSrc->a[iFrom]; iParent = pSubitem->iCursor; pSub = pSubitem->pSelect; assert( pSub!=0 ); #ifndef SQLITE_OMIT_WINDOWFUNC if( p->pWin || pSub->pWin ) return 0; /* Restriction (25) */ #endif pSubSrc = pSub->pSrc; assert( pSubSrc ); /* Prior to version 3.1.2, when LIMIT and OFFSET had to be simple constants, ** not arbitrary expressions, we allowed some combining of LIMIT and OFFSET ** because they could be computed at compile-time. But when LIMIT and OFFSET ** became arbitrary expressions, we were forced to add restrictions (13) ** and (14). */ if( pSub->pLimit && p->pLimit ) return 0; /* Restriction (13) */ if( pSub->pLimit && pSub->pLimit->pRight ) return 0; /* Restriction (14) */ if( (p->selFlags & SF_Compound)!=0 && pSub->pLimit ){ return 0; /* Restriction (15) */ } if( pSubSrc->nSrc==0 ) return 0; /* Restriction (7) */ if( pSub->selFlags & SF_Distinct ) return 0; /* Restriction (4) */ if( pSub->pLimit && (pSrc->nSrc>1 || isAgg) ){ return 0; /* Restrictions (8)(9) */ } if( p->pOrderBy && pSub->pOrderBy ){ return 0; /* Restriction (11) */ } if( isAgg && pSub->pOrderBy ) return 0; /* Restriction (16) */ if( pSub->pLimit && p->pWhere ) return 0; /* Restriction (19) */ if( pSub->pLimit && (p->selFlags & SF_Distinct)!=0 ){ return 0; /* Restriction (21) */ } if( pSub->selFlags & (SF_Recursive) ){ return 0; /* Restrictions (22) */ } /* ** If the subquery is the right operand of a LEFT JOIN, then the ** subquery may not be a join itself (3a). Example of why this is not ** allowed: ** ** t1 LEFT OUTER JOIN (t2 JOIN t3) ** ** If we flatten the above, we would get ** ** (t1 LEFT OUTER JOIN t2) JOIN t3 ** ** which is not at all the same thing. ** ** If the subquery is the right operand of a LEFT JOIN, then the outer ** query cannot be an aggregate. (3c) This is an artifact of the way ** aggregates are processed - there is no mechanism to determine if ** the LEFT JOIN table should be all-NULL. ** ** See also tickets #306, #350, and #3300. */ if( (pSubitem->fg.jointype & JT_OUTER)!=0 ){ isLeftJoin = 1; if( pSubSrc->nSrc>1 /* (3a) */ || isAgg /* (3b) */ || IsVirtual(pSubSrc->a[0].pTab) /* (3c) */ || (p->selFlags & SF_Distinct)!=0 /* (3d) */ ){ return 0; } } #ifdef SQLITE_EXTRA_IFNULLROW else if( iFrom>0 && !isAgg ){ /* Setting isLeftJoin to -1 causes OP_IfNullRow opcodes to be generated for ** every reference to any result column from subquery in a join, even ** though they are not necessary. This will stress-test the OP_IfNullRow ** opcode. */ isLeftJoin = -1; } #endif /* Restriction (17): If the sub-query is a compound SELECT, then it must ** use only the UNION ALL operator. And none of the simple select queries ** that make up the compound SELECT are allowed to be aggregate or distinct ** queries. */ if( pSub->pPrior ){ if( pSub->pOrderBy ){ return 0; /* Restriction (20) */ } if( isAgg || (p->selFlags & SF_Distinct)!=0 || pSrc->nSrc!=1 ){ return 0; /* (17d1), (17d2), or (17d3) */ } for(pSub1=pSub; pSub1; pSub1=pSub1->pPrior){ testcase( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); testcase( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); assert( pSub->pSrc!=0 ); assert( pSub->pEList->nExpr==pSub1->pEList->nExpr ); if( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))!=0 /* (17b) */ || (pSub1->pPrior && pSub1->op!=TK_ALL) /* (17a) */ || pSub1->pSrc->nSrc<1 /* (17c) */ #ifndef SQLITE_OMIT_WINDOWFUNC || pSub1->pWin /* (17e) */ #endif ){ return 0; } testcase( pSub1->pSrc->nSrc>1 ); } /* Restriction (18). */ if( p->pOrderBy ){ int ii; for(ii=0; iipOrderBy->nExpr; ii++){ if( p->pOrderBy->a[ii].u.x.iOrderByCol==0 ) return 0; } } } /* Ex-restriction (23): ** The only way that the recursive part of a CTE can contain a compound ** subquery is for the subquery to be one term of a join. But if the ** subquery is a join, then the flattening has already been stopped by ** restriction (17d3) */ assert( (p->selFlags & SF_Recursive)==0 || pSub->pPrior==0 ); /***** If we reach this point, flattening is permitted. *****/ SELECTTRACE(1,pParse,p,("flatten %u.%p from term %d\n", pSub->selId, pSub, iFrom)); /* Authorize the subquery */ pParse->zAuthContext = pSubitem->zName; TESTONLY(i =) sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0); testcase( i==SQLITE_DENY ); pParse->zAuthContext = zSavedAuthContext; /* If the sub-query is a compound SELECT statement, then (by restrictions ** 17 and 18 above) it must be a UNION ALL and the parent query must ** be of the form: ** ** SELECT FROM () ** ** followed by any ORDER BY, LIMIT and/or OFFSET clauses. This block ** creates N-1 copies of the parent query without any ORDER BY, LIMIT or ** OFFSET clauses and joins them to the left-hand-side of the original ** using UNION ALL operators. In this case N is the number of simple ** select statements in the compound sub-query. ** ** Example: ** ** SELECT a+1 FROM ( ** SELECT x FROM tab ** UNION ALL ** SELECT y FROM tab ** UNION ALL ** SELECT abs(z*2) FROM tab2 ** ) WHERE a!=5 ORDER BY 1 ** ** Transformed into: ** ** SELECT x+1 FROM tab WHERE x+1!=5 ** UNION ALL ** SELECT y+1 FROM tab WHERE y+1!=5 ** UNION ALL ** SELECT abs(z*2)+1 FROM tab2 WHERE abs(z*2)+1!=5 ** ORDER BY 1 ** ** We call this the "compound-subquery flattening". */ for(pSub=pSub->pPrior; pSub; pSub=pSub->pPrior){ Select *pNew; ExprList *pOrderBy = p->pOrderBy; Expr *pLimit = p->pLimit; Select *pPrior = p->pPrior; p->pOrderBy = 0; p->pSrc = 0; p->pPrior = 0; p->pLimit = 0; pNew = sqlite3SelectDup(db, p, 0); p->pLimit = pLimit; p->pOrderBy = pOrderBy; p->pSrc = pSrc; p->op = TK_ALL; if( pNew==0 ){ p->pPrior = pPrior; }else{ pNew->pPrior = pPrior; if( pPrior ) pPrior->pNext = pNew; pNew->pNext = p; p->pPrior = pNew; SELECTTRACE(2,pParse,p,("compound-subquery flattener" " creates %u as peer\n",pNew->selId)); } if( db->mallocFailed ) return 1; } /* Begin flattening the iFrom-th entry of the FROM clause ** in the outer query. */ pSub = pSub1 = pSubitem->pSelect; /* Delete the transient table structure associated with the ** subquery */ sqlite3DbFree(db, pSubitem->zDatabase); sqlite3DbFree(db, pSubitem->zName); sqlite3DbFree(db, pSubitem->zAlias); pSubitem->zDatabase = 0; pSubitem->zName = 0; pSubitem->zAlias = 0; pSubitem->pSelect = 0; /* Defer deleting the Table object associated with the ** subquery until code generation is ** complete, since there may still exist Expr.pTab entries that ** refer to the subquery even after flattening. Ticket #3346. ** ** pSubitem->pTab is always non-NULL by test restrictions and tests above. */ if( ALWAYS(pSubitem->pTab!=0) ){ Table *pTabToDel = pSubitem->pTab; if( pTabToDel->nTabRef==1 ){ Parse *pToplevel = sqlite3ParseToplevel(pParse); pTabToDel->pNextZombie = pToplevel->pZombieTab; pToplevel->pZombieTab = pTabToDel; }else{ pTabToDel->nTabRef--; } pSubitem->pTab = 0; } /* The following loop runs once for each term in a compound-subquery ** flattening (as described above). If we are doing a different kind ** of flattening - a flattening other than a compound-subquery flattening - ** then this loop only runs once. ** ** This loop moves all of the FROM elements of the subquery into the ** the FROM clause of the outer query. Before doing this, remember ** the cursor number for the original outer query FROM element in ** iParent. The iParent cursor will never be used. Subsequent code ** will scan expressions looking for iParent references and replace ** those references with expressions that resolve to the subquery FROM ** elements we are now copying in. */ for(pParent=p; pParent; pParent=pParent->pPrior, pSub=pSub->pPrior){ int nSubSrc; u8 jointype = 0; assert( pSub!=0 ); pSubSrc = pSub->pSrc; /* FROM clause of subquery */ nSubSrc = pSubSrc->nSrc; /* Number of terms in subquery FROM clause */ pSrc = pParent->pSrc; /* FROM clause of the outer query */ if( pSrc ){ assert( pParent==p ); /* First time through the loop */ jointype = pSubitem->fg.jointype; }else{ assert( pParent!=p ); /* 2nd and subsequent times through the loop */ pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0); if( pSrc==0 ) break; pParent->pSrc = pSrc; } /* The subquery uses a single slot of the FROM clause of the outer ** query. If the subquery has more than one element in its FROM clause, ** then expand the outer query to make space for it to hold all elements ** of the subquery. ** ** Example: ** ** SELECT * FROM tabA, (SELECT * FROM sub1, sub2), tabB; ** ** The outer query has 3 slots in its FROM clause. One slot of the ** outer query (the middle slot) is used by the subquery. The next ** block of code will expand the outer query FROM clause to 4 slots. ** The middle slot is expanded to two slots in order to make space ** for the two elements in the FROM clause of the subquery. */ if( nSubSrc>1 ){ pSrc = sqlite3SrcListEnlarge(pParse, pSrc, nSubSrc-1,iFrom+1); if( pSrc==0 ) break; pParent->pSrc = pSrc; } /* Transfer the FROM clause terms from the subquery into the ** outer query. */ for(i=0; ia[i+iFrom].pUsing); assert( pSrc->a[i+iFrom].fg.isTabFunc==0 ); pSrc->a[i+iFrom] = pSubSrc->a[i]; iNewParent = pSubSrc->a[i].iCursor; memset(&pSubSrc->a[i], 0, sizeof(pSubSrc->a[i])); } pSrc->a[iFrom].fg.jointype = jointype; /* Now begin substituting subquery result set expressions for ** references to the iParent in the outer query. ** ** Example: ** ** SELECT a+5, b*10 FROM (SELECT x*3 AS a, y+10 AS b FROM t1) WHERE a>b; ** \ \_____________ subquery __________/ / ** \_____________________ outer query ______________________________/ ** ** We look at every expression in the outer query and every place we see ** "a" we substitute "x*3" and every place we see "b" we substitute "y+10". */ if( pSub->pOrderBy && (pParent->selFlags & SF_NoopOrderBy)==0 ){ /* At this point, any non-zero iOrderByCol values indicate that the ** ORDER BY column expression is identical to the iOrderByCol'th ** expression returned by SELECT statement pSub. Since these values ** do not necessarily correspond to columns in SELECT statement pParent, ** zero them before transfering the ORDER BY clause. ** ** Not doing this may cause an error if a subsequent call to this ** function attempts to flatten a compound sub-query into pParent ** (the only way this can happen is if the compound sub-query is ** currently part of pSub->pSrc). See ticket [d11a6e908f]. */ ExprList *pOrderBy = pSub->pOrderBy; for(i=0; inExpr; i++){ pOrderBy->a[i].u.x.iOrderByCol = 0; } assert( pParent->pOrderBy==0 ); pParent->pOrderBy = pOrderBy; pSub->pOrderBy = 0; } pWhere = pSub->pWhere; pSub->pWhere = 0; if( isLeftJoin>0 ){ sqlite3SetJoinExpr(pWhere, iNewParent); } if( pWhere ){ if( pParent->pWhere ){ pParent->pWhere = sqlite3PExpr(pParse, TK_AND, pWhere, pParent->pWhere); }else{ pParent->pWhere = pWhere; } } if( db->mallocFailed==0 ){ SubstContext x; x.pParse = pParse; x.iTable = iParent; x.iNewTable = iNewParent; x.isLeftJoin = isLeftJoin; x.pEList = pSub->pEList; substSelect(&x, pParent, 0); } /* The flattened query is a compound if either the inner or the ** outer query is a compound. */ pParent->selFlags |= pSub->selFlags & SF_Compound; assert( (pSub->selFlags & SF_Distinct)==0 ); /* restriction (17b) */ /* ** SELECT ... FROM (SELECT ... LIMIT a OFFSET b) LIMIT x OFFSET y; ** ** One is tempted to try to add a and b to combine the limits. But this ** does not work if either limit is negative. */ if( pSub->pLimit ){ pParent->pLimit = pSub->pLimit; pSub->pLimit = 0; } /* Recompute the SrcList_item.colUsed masks for the flattened ** tables. */ for(i=0; ia[i+iFrom]); } } /* Finially, delete what is left of the subquery and return ** success. */ sqlite3AggInfoPersistWalkerInit(&w, pParse); sqlite3WalkSelect(&w,pSub1); sqlite3SelectDelete(db, pSub1); #if SELECTTRACE_ENABLED if( sqlite3_unsupported_selecttrace & 0x100 ){ SELECTTRACE(0x100,pParse,p,("After flattening:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif return 1; } #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ /* ** A structure to keep track of all of the column values that are fixed to ** a known value due to WHERE clause constraints of the form COLUMN=VALUE. */ typedef struct WhereConst WhereConst; struct WhereConst { Parse *pParse; /* Parsing context */ int nConst; /* Number for COLUMN=CONSTANT terms */ int nChng; /* Number of times a constant is propagated */ Expr **apExpr; /* [i*2] is COLUMN and [i*2+1] is VALUE */ }; /* ** Add a new entry to the pConst object. Except, do not add duplicate ** pColumn entires. Also, do not add if doing so would not be appropriate. ** ** The caller guarantees the pColumn is a column and pValue is a constant. ** This routine has to do some additional checks before completing the ** insert. */ static void constInsert( WhereConst *pConst, /* The WhereConst into which we are inserting */ Expr *pColumn, /* The COLUMN part of the constraint */ Expr *pValue, /* The VALUE part of the constraint */ Expr *pExpr /* Overall expression: COLUMN=VALUE or VALUE=COLUMN */ ){ int i; assert( pColumn->op==TK_COLUMN ); assert( sqlite3ExprIsConstant(pValue) ); if( ExprHasProperty(pColumn, EP_FixedCol) ) return; if( sqlite3ExprAffinity(pValue)!=0 ) return; if( !sqlite3IsBinary(sqlite3ExprCompareCollSeq(pConst->pParse,pExpr)) ){ return; } /* 2018-10-25 ticket [cf5ed20f] ** Make sure the same pColumn is not inserted more than once */ for(i=0; inConst; i++){ const Expr *pE2 = pConst->apExpr[i*2]; assert( pE2->op==TK_COLUMN ); if( pE2->iTable==pColumn->iTable && pE2->iColumn==pColumn->iColumn ){ return; /* Already present. Return without doing anything. */ } } pConst->nConst++; pConst->apExpr = sqlite3DbReallocOrFree(pConst->pParse->db, pConst->apExpr, pConst->nConst*2*sizeof(Expr*)); if( pConst->apExpr==0 ){ pConst->nConst = 0; }else{ pConst->apExpr[pConst->nConst*2-2] = pColumn; pConst->apExpr[pConst->nConst*2-1] = pValue; } } /* ** Find all terms of COLUMN=VALUE or VALUE=COLUMN in pExpr where VALUE ** is a constant expression and where the term must be true because it ** is part of the AND-connected terms of the expression. For each term ** found, add it to the pConst structure. */ static void findConstInWhere(WhereConst *pConst, Expr *pExpr){ Expr *pRight, *pLeft; if( pExpr==0 ) return; if( ExprHasProperty(pExpr, EP_FromJoin) ) return; if( pExpr->op==TK_AND ){ findConstInWhere(pConst, pExpr->pRight); findConstInWhere(pConst, pExpr->pLeft); return; } if( pExpr->op!=TK_EQ ) return; pRight = pExpr->pRight; pLeft = pExpr->pLeft; assert( pRight!=0 ); assert( pLeft!=0 ); if( pRight->op==TK_COLUMN && sqlite3ExprIsConstant(pLeft) ){ constInsert(pConst,pRight,pLeft,pExpr); } if( pLeft->op==TK_COLUMN && sqlite3ExprIsConstant(pRight) ){ constInsert(pConst,pLeft,pRight,pExpr); } } /* ** This is a Walker expression callback. pExpr is a candidate expression ** to be replaced by a value. If pExpr is equivalent to one of the ** columns named in pWalker->u.pConst, then overwrite it with its ** corresponding value. */ static int propagateConstantExprRewrite(Walker *pWalker, Expr *pExpr){ int i; WhereConst *pConst; if( pExpr->op!=TK_COLUMN ) return WRC_Continue; if( ExprHasProperty(pExpr, EP_FixedCol|EP_FromJoin) ){ testcase( ExprHasProperty(pExpr, EP_FixedCol) ); testcase( ExprHasProperty(pExpr, EP_FromJoin) ); return WRC_Continue; } pConst = pWalker->u.pConst; for(i=0; inConst; i++){ Expr *pColumn = pConst->apExpr[i*2]; if( pColumn==pExpr ) continue; if( pColumn->iTable!=pExpr->iTable ) continue; if( pColumn->iColumn!=pExpr->iColumn ) continue; /* A match is found. Add the EP_FixedCol property */ pConst->nChng++; ExprClearProperty(pExpr, EP_Leaf); ExprSetProperty(pExpr, EP_FixedCol); assert( pExpr->pLeft==0 ); pExpr->pLeft = sqlite3ExprDup(pConst->pParse->db, pConst->apExpr[i*2+1], 0); break; } return WRC_Prune; } /* ** The WHERE-clause constant propagation optimization. ** ** If the WHERE clause contains terms of the form COLUMN=CONSTANT or ** CONSTANT=COLUMN that are top-level AND-connected terms that are not ** part of a ON clause from a LEFT JOIN, then throughout the query ** replace all other occurrences of COLUMN with CONSTANT. ** ** For example, the query: ** ** SELECT * FROM t1, t2, t3 WHERE t1.a=39 AND t2.b=t1.a AND t3.c=t2.b ** ** Is transformed into ** ** SELECT * FROM t1, t2, t3 WHERE t1.a=39 AND t2.b=39 AND t3.c=39 ** ** Return true if any transformations where made and false if not. ** ** Implementation note: Constant propagation is tricky due to affinity ** and collating sequence interactions. Consider this example: ** ** CREATE TABLE t1(a INT,b TEXT); ** INSERT INTO t1 VALUES(123,'0123'); ** SELECT * FROM t1 WHERE a=123 AND b=a; ** SELECT * FROM t1 WHERE a=123 AND b=123; ** ** The two SELECT statements above should return different answers. b=a ** is alway true because the comparison uses numeric affinity, but b=123 ** is false because it uses text affinity and '0123' is not the same as '123'. ** To work around this, the expression tree is not actually changed from ** "b=a" to "b=123" but rather the "a" in "b=a" is tagged with EP_FixedCol ** and the "123" value is hung off of the pLeft pointer. Code generator ** routines know to generate the constant "123" instead of looking up the ** column value. Also, to avoid collation problems, this optimization is ** only attempted if the "a=123" term uses the default BINARY collation. */ static int propagateConstants( Parse *pParse, /* The parsing context */ Select *p /* The query in which to propagate constants */ ){ WhereConst x; Walker w; int nChng = 0; x.pParse = pParse; do{ x.nConst = 0; x.nChng = 0; x.apExpr = 0; findConstInWhere(&x, p->pWhere); if( x.nConst ){ memset(&w, 0, sizeof(w)); w.pParse = pParse; w.xExprCallback = propagateConstantExprRewrite; w.xSelectCallback = sqlite3SelectWalkNoop; w.xSelectCallback2 = 0; w.walkerDepth = 0; w.u.pConst = &x; sqlite3WalkExpr(&w, p->pWhere); sqlite3DbFree(x.pParse->db, x.apExpr); nChng += x.nChng; } }while( x.nChng ); return nChng; } #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* ** Make copies of relevant WHERE clause terms of the outer query into ** the WHERE clause of subquery. Example: ** ** SELECT * FROM (SELECT a AS x, c-d AS y FROM t1) WHERE x=5 AND y=10; ** ** Transformed into: ** ** SELECT * FROM (SELECT a AS x, c-d AS y FROM t1 WHERE a=5 AND c-d=10) ** WHERE x=5 AND y=10; ** ** The hope is that the terms added to the inner query will make it more ** efficient. ** ** Do not attempt this optimization if: ** ** (1) (** This restriction was removed on 2017-09-29. We used to ** disallow this optimization for aggregate subqueries, but now ** it is allowed by putting the extra terms on the HAVING clause. ** The added HAVING clause is pointless if the subquery lacks ** a GROUP BY clause. But such a HAVING clause is also harmless ** so there does not appear to be any reason to add extra logic ** to suppress it. **) ** ** (2) The inner query is the recursive part of a common table expression. ** ** (3) The inner query has a LIMIT clause (since the changes to the WHERE ** clause would change the meaning of the LIMIT). ** ** (4) The inner query is the right operand of a LEFT JOIN and the ** expression to be pushed down does not come from the ON clause ** on that LEFT JOIN. ** ** (5) The WHERE clause expression originates in the ON or USING clause ** of a LEFT JOIN where iCursor is not the right-hand table of that ** left join. An example: ** ** SELECT * ** FROM (SELECT 1 AS a1 UNION ALL SELECT 2) AS aa ** JOIN (SELECT 1 AS b2 UNION ALL SELECT 2) AS bb ON (a1=b2) ** LEFT JOIN (SELECT 8 AS c3 UNION ALL SELECT 9) AS cc ON (b2=2); ** ** The correct answer is three rows: (1,1,NULL),(2,2,8),(2,2,9). ** But if the (b2=2) term were to be pushed down into the bb subquery, ** then the (1,1,NULL) row would be suppressed. ** ** (6) The inner query features one or more window-functions (since ** changes to the WHERE clause of the inner query could change the ** window over which window functions are calculated). ** ** Return 0 if no changes are made and non-zero if one or more WHERE clause ** terms are duplicated into the subquery. */ static int pushDownWhereTerms( Parse *pParse, /* Parse context (for malloc() and error reporting) */ Select *pSubq, /* The subquery whose WHERE clause is to be augmented */ Expr *pWhere, /* The WHERE clause of the outer query */ int iCursor, /* Cursor number of the subquery */ int isLeftJoin /* True if pSubq is the right term of a LEFT JOIN */ ){ Expr *pNew; int nChng = 0; Select *pSel; if( pWhere==0 ) return 0; if( pSubq->selFlags & SF_Recursive ) return 0; /* restriction (2) */ #ifndef SQLITE_OMIT_WINDOWFUNC for(pSel=pSubq; pSel; pSel=pSel->pPrior){ if( pSel->pWin ) return 0; /* restriction (6) */ } #endif #ifdef SQLITE_DEBUG /* Only the first term of a compound can have a WITH clause. But make ** sure no other terms are marked SF_Recursive in case something changes ** in the future. */ { Select *pX; for(pX=pSubq; pX; pX=pX->pPrior){ assert( (pX->selFlags & (SF_Recursive))==0 ); } } #endif if( pSubq->pLimit!=0 ){ return 0; /* restriction (3) */ } while( pWhere->op==TK_AND ){ nChng += pushDownWhereTerms(pParse, pSubq, pWhere->pRight, iCursor, isLeftJoin); pWhere = pWhere->pLeft; } if( isLeftJoin && (ExprHasProperty(pWhere,EP_FromJoin)==0 || pWhere->iRightJoinTable!=iCursor) ){ return 0; /* restriction (4) */ } if( ExprHasProperty(pWhere,EP_FromJoin) && pWhere->iRightJoinTable!=iCursor ){ return 0; /* restriction (5) */ } if( sqlite3ExprIsTableConstant(pWhere, iCursor) ){ nChng++; while( pSubq ){ SubstContext x; pNew = sqlite3ExprDup(pParse->db, pWhere, 0); unsetJoinExpr(pNew, -1); x.pParse = pParse; x.iTable = iCursor; x.iNewTable = iCursor; x.isLeftJoin = 0; x.pEList = pSubq->pEList; pNew = substExpr(&x, pNew); if( pSubq->selFlags & SF_Aggregate ){ pSubq->pHaving = sqlite3ExprAnd(pParse, pSubq->pHaving, pNew); }else{ pSubq->pWhere = sqlite3ExprAnd(pParse, pSubq->pWhere, pNew); } pSubq = pSubq->pPrior; } } return nChng; } #endif /* !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) */ /* ** The pFunc is the only aggregate function in the query. Check to see ** if the query is a candidate for the min/max optimization. ** ** If the query is a candidate for the min/max optimization, then set ** *ppMinMax to be an ORDER BY clause to be used for the optimization ** and return either WHERE_ORDERBY_MIN or WHERE_ORDERBY_MAX depending on ** whether pFunc is a min() or max() function. ** ** If the query is not a candidate for the min/max optimization, return ** WHERE_ORDERBY_NORMAL (which must be zero). ** ** This routine must be called after aggregate functions have been ** located but before their arguments have been subjected to aggregate ** analysis. */ static u8 minMaxQuery(sqlite3 *db, Expr *pFunc, ExprList **ppMinMax){ int eRet = WHERE_ORDERBY_NORMAL; /* Return value */ ExprList *pEList = pFunc->x.pList; /* Arguments to agg function */ const char *zFunc; /* Name of aggregate function pFunc */ ExprList *pOrderBy; u8 sortFlags = 0; assert( *ppMinMax==0 ); assert( pFunc->op==TK_AGG_FUNCTION ); assert( !IsWindowFunc(pFunc) ); if( pEList==0 || pEList->nExpr!=1 || ExprHasProperty(pFunc, EP_WinFunc) ){ return eRet; } zFunc = pFunc->u.zToken; if( sqlite3StrICmp(zFunc, "min")==0 ){ eRet = WHERE_ORDERBY_MIN; if( sqlite3ExprCanBeNull(pEList->a[0].pExpr) ){ sortFlags = KEYINFO_ORDER_BIGNULL; } }else if( sqlite3StrICmp(zFunc, "max")==0 ){ eRet = WHERE_ORDERBY_MAX; sortFlags = KEYINFO_ORDER_DESC; }else{ return eRet; } *ppMinMax = pOrderBy = sqlite3ExprListDup(db, pEList, 0); assert( pOrderBy!=0 || db->mallocFailed ); if( pOrderBy ) pOrderBy->a[0].sortFlags = sortFlags; return eRet; } /* ** The select statement passed as the first argument is an aggregate query. ** The second argument is the associated aggregate-info object. This ** function tests if the SELECT is of the form: ** ** SELECT count(*) FROM ** ** where table is a database table, not a sub-select or view. If the query ** does match this pattern, then a pointer to the Table object representing ** is returned. Otherwise, 0 is returned. */ static Table *isSimpleCount(Select *p, AggInfo *pAggInfo){ Table *pTab; Expr *pExpr; assert( !p->pGroupBy ); if( p->pWhere || p->pEList->nExpr!=1 || p->pSrc->nSrc!=1 || p->pSrc->a[0].pSelect ){ return 0; } pTab = p->pSrc->a[0].pTab; pExpr = p->pEList->a[0].pExpr; assert( pTab && !pTab->pSelect && pExpr ); if( IsVirtual(pTab) ) return 0; if( pExpr->op!=TK_AGG_FUNCTION ) return 0; if( NEVER(pAggInfo->nFunc==0) ) return 0; if( (pAggInfo->aFunc[0].pFunc->funcFlags&SQLITE_FUNC_COUNT)==0 ) return 0; if( ExprHasProperty(pExpr, EP_Distinct|EP_WinFunc) ) return 0; return pTab; } /* ** If the source-list item passed as an argument was augmented with an ** INDEXED BY clause, then try to locate the specified index. If there ** was such a clause and the named index cannot be found, return ** SQLITE_ERROR and leave an error in pParse. Otherwise, populate ** pFrom->pIndex and return SQLITE_OK. */ SQLITE_PRIVATE int sqlite3IndexedByLookup(Parse *pParse, struct SrcList_item *pFrom){ if( pFrom->pTab && pFrom->fg.isIndexedBy ){ Table *pTab = pFrom->pTab; char *zIndexedBy = pFrom->u1.zIndexedBy; Index *pIdx; for(pIdx=pTab->pIndex; pIdx && sqlite3StrICmp(pIdx->zName, zIndexedBy); pIdx=pIdx->pNext ); if( !pIdx ){ sqlite3ErrorMsg(pParse, "no such index: %s", zIndexedBy, 0); pParse->checkSchema = 1; return SQLITE_ERROR; } pFrom->pIBIndex = pIdx; } return SQLITE_OK; } /* ** Detect compound SELECT statements that use an ORDER BY clause with ** an alternative collating sequence. ** ** SELECT ... FROM t1 EXCEPT SELECT ... FROM t2 ORDER BY .. COLLATE ... ** ** These are rewritten as a subquery: ** ** SELECT * FROM (SELECT ... FROM t1 EXCEPT SELECT ... FROM t2) ** ORDER BY ... COLLATE ... ** ** This transformation is necessary because the multiSelectOrderBy() routine ** above that generates the code for a compound SELECT with an ORDER BY clause ** uses a merge algorithm that requires the same collating sequence on the ** result columns as on the ORDER BY clause. See ticket ** http://www.sqlite.org/src/info/6709574d2a ** ** This transformation is only needed for EXCEPT, INTERSECT, and UNION. ** The UNION ALL operator works fine with multiSelectOrderBy() even when ** there are COLLATE terms in the ORDER BY. */ static int convertCompoundSelectToSubquery(Walker *pWalker, Select *p){ int i; Select *pNew; Select *pX; sqlite3 *db; struct ExprList_item *a; SrcList *pNewSrc; Parse *pParse; Token dummy; if( p->pPrior==0 ) return WRC_Continue; if( p->pOrderBy==0 ) return WRC_Continue; for(pX=p; pX && (pX->op==TK_ALL || pX->op==TK_SELECT); pX=pX->pPrior){} if( pX==0 ) return WRC_Continue; a = p->pOrderBy->a; #ifndef SQLITE_OMIT_WINDOWFUNC /* If iOrderByCol is already non-zero, then it has already been matched ** to a result column of the SELECT statement. This occurs when the ** SELECT is rewritten for window-functions processing and then passed ** to sqlite3SelectPrep() and similar a second time. The rewriting done ** by this function is not required in this case. */ if( a[0].u.x.iOrderByCol ) return WRC_Continue; #endif for(i=p->pOrderBy->nExpr-1; i>=0; i--){ if( a[i].pExpr->flags & EP_Collate ) break; } if( i<0 ) return WRC_Continue; /* If we reach this point, that means the transformation is required. */ pParse = pWalker->pParse; db = pParse->db; pNew = sqlite3DbMallocZero(db, sizeof(*pNew) ); if( pNew==0 ) return WRC_Abort; memset(&dummy, 0, sizeof(dummy)); pNewSrc = sqlite3SrcListAppendFromTerm(pParse,0,0,0,&dummy,pNew,0,0); if( pNewSrc==0 ) return WRC_Abort; *pNew = *p; p->pSrc = pNewSrc; p->pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db, TK_ASTERISK, 0)); p->op = TK_SELECT; p->pWhere = 0; pNew->pGroupBy = 0; pNew->pHaving = 0; pNew->pOrderBy = 0; p->pPrior = 0; p->pNext = 0; p->pWith = 0; #ifndef SQLITE_OMIT_WINDOWFUNC p->pWinDefn = 0; #endif p->selFlags &= ~SF_Compound; assert( (p->selFlags & SF_Converted)==0 ); p->selFlags |= SF_Converted; assert( pNew->pPrior!=0 ); pNew->pPrior->pNext = pNew; pNew->pLimit = 0; return WRC_Continue; } /* ** Check to see if the FROM clause term pFrom has table-valued function ** arguments. If it does, leave an error message in pParse and return ** non-zero, since pFrom is not allowed to be a table-valued function. */ static int cannotBeFunction(Parse *pParse, struct SrcList_item *pFrom){ if( pFrom->fg.isTabFunc ){ sqlite3ErrorMsg(pParse, "'%s' is not a function", pFrom->zName); return 1; } return 0; } #ifndef SQLITE_OMIT_CTE /* ** Argument pWith (which may be NULL) points to a linked list of nested ** WITH contexts, from inner to outermost. If the table identified by ** FROM clause element pItem is really a common-table-expression (CTE) ** then return a pointer to the CTE definition for that table. Otherwise ** return NULL. ** ** If a non-NULL value is returned, set *ppContext to point to the With ** object that the returned CTE belongs to. */ static struct Cte *searchWith( With *pWith, /* Current innermost WITH clause */ struct SrcList_item *pItem, /* FROM clause element to resolve */ With **ppContext /* OUT: WITH clause return value belongs to */ ){ const char *zName; if( pItem->zDatabase==0 && (zName = pItem->zName)!=0 ){ With *p; for(p=pWith; p; p=p->pOuter){ int i; for(i=0; inCte; i++){ if( sqlite3StrICmp(zName, p->a[i].zName)==0 ){ *ppContext = p; return &p->a[i]; } } } } return 0; } /* The code generator maintains a stack of active WITH clauses ** with the inner-most WITH clause being at the top of the stack. ** ** This routine pushes the WITH clause passed as the second argument ** onto the top of the stack. If argument bFree is true, then this ** WITH clause will never be popped from the stack. In this case it ** should be freed along with the Parse object. In other cases, when ** bFree==0, the With object will be freed along with the SELECT ** statement with which it is associated. */ SQLITE_PRIVATE void sqlite3WithPush(Parse *pParse, With *pWith, u8 bFree){ assert( bFree==0 || (pParse->pWith==0 && pParse->pWithToFree==0) ); if( pWith ){ assert( pParse->pWith!=pWith ); pWith->pOuter = pParse->pWith; pParse->pWith = pWith; if( bFree ) pParse->pWithToFree = pWith; } } /* ** This function checks if argument pFrom refers to a CTE declared by ** a WITH clause on the stack currently maintained by the parser. And, ** if currently processing a CTE expression, if it is a recursive ** reference to the current CTE. ** ** If pFrom falls into either of the two categories above, pFrom->pTab ** and other fields are populated accordingly. The caller should check ** (pFrom->pTab!=0) to determine whether or not a successful match ** was found. ** ** Whether or not a match is found, SQLITE_OK is returned if no error ** occurs. If an error does occur, an error message is stored in the ** parser and some error code other than SQLITE_OK returned. */ static int withExpand( Walker *pWalker, struct SrcList_item *pFrom ){ Parse *pParse = pWalker->pParse; sqlite3 *db = pParse->db; struct Cte *pCte; /* Matched CTE (or NULL if no match) */ With *pWith; /* WITH clause that pCte belongs to */ assert( pFrom->pTab==0 ); if( pParse->nErr ){ return SQLITE_ERROR; } pCte = searchWith(pParse->pWith, pFrom, &pWith); if( pCte ){ Table *pTab; ExprList *pEList; Select *pSel; Select *pLeft; /* Left-most SELECT statement */ int bMayRecursive; /* True if compound joined by UNION [ALL] */ With *pSavedWith; /* Initial value of pParse->pWith */ /* If pCte->zCteErr is non-NULL at this point, then this is an illegal ** recursive reference to CTE pCte. Leave an error in pParse and return ** early. If pCte->zCteErr is NULL, then this is not a recursive reference. ** In this case, proceed. */ if( pCte->zCteErr ){ sqlite3ErrorMsg(pParse, pCte->zCteErr, pCte->zName); return SQLITE_ERROR; } if( cannotBeFunction(pParse, pFrom) ) return SQLITE_ERROR; assert( pFrom->pTab==0 ); pFrom->pTab = pTab = sqlite3DbMallocZero(db, sizeof(Table)); if( pTab==0 ) return WRC_Abort; pTab->nTabRef = 1; pTab->zName = sqlite3DbStrDup(db, pCte->zName); pTab->iPKey = -1; pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); pTab->tabFlags |= TF_Ephemeral | TF_NoVisibleRowid; pFrom->pSelect = sqlite3SelectDup(db, pCte->pSelect, 0); if( db->mallocFailed ) return SQLITE_NOMEM_BKPT; assert( pFrom->pSelect ); /* Check if this is a recursive CTE. */ pSel = pFrom->pSelect; bMayRecursive = ( pSel->op==TK_ALL || pSel->op==TK_UNION ); if( bMayRecursive ){ int i; SrcList *pSrc = pFrom->pSelect->pSrc; for(i=0; inSrc; i++){ struct SrcList_item *pItem = &pSrc->a[i]; if( pItem->zDatabase==0 && pItem->zName!=0 && 0==sqlite3StrICmp(pItem->zName, pCte->zName) ){ pItem->pTab = pTab; pItem->fg.isRecursive = 1; pTab->nTabRef++; pSel->selFlags |= SF_Recursive; } } } /* Only one recursive reference is permitted. */ if( pTab->nTabRef>2 ){ sqlite3ErrorMsg( pParse, "multiple references to recursive table: %s", pCte->zName ); return SQLITE_ERROR; } assert( pTab->nTabRef==1 || ((pSel->selFlags&SF_Recursive) && pTab->nTabRef==2 )); pCte->zCteErr = "circular reference: %s"; pSavedWith = pParse->pWith; pParse->pWith = pWith; if( bMayRecursive ){ Select *pPrior = pSel->pPrior; assert( pPrior->pWith==0 ); pPrior->pWith = pSel->pWith; sqlite3WalkSelect(pWalker, pPrior); pPrior->pWith = 0; }else{ sqlite3WalkSelect(pWalker, pSel); } pParse->pWith = pWith; for(pLeft=pSel; pLeft->pPrior; pLeft=pLeft->pPrior); pEList = pLeft->pEList; if( pCte->pCols ){ if( pEList && pEList->nExpr!=pCte->pCols->nExpr ){ sqlite3ErrorMsg(pParse, "table %s has %d values for %d columns", pCte->zName, pEList->nExpr, pCte->pCols->nExpr ); pParse->pWith = pSavedWith; return SQLITE_ERROR; } pEList = pCte->pCols; } sqlite3ColumnsFromExprList(pParse, pEList, &pTab->nCol, &pTab->aCol); if( bMayRecursive ){ if( pSel->selFlags & SF_Recursive ){ pCte->zCteErr = "multiple recursive references: %s"; }else{ pCte->zCteErr = "recursive reference in a subquery: %s"; } sqlite3WalkSelect(pWalker, pSel); } pCte->zCteErr = 0; pParse->pWith = pSavedWith; } return SQLITE_OK; } #endif #ifndef SQLITE_OMIT_CTE /* ** If the SELECT passed as the second argument has an associated WITH ** clause, pop it from the stack stored as part of the Parse object. ** ** This function is used as the xSelectCallback2() callback by ** sqlite3SelectExpand() when walking a SELECT tree to resolve table ** names and other FROM clause elements. */ static void selectPopWith(Walker *pWalker, Select *p){ Parse *pParse = pWalker->pParse; if( OK_IF_ALWAYS_TRUE(pParse->pWith) && p->pPrior==0 ){ With *pWith = findRightmost(p)->pWith; if( pWith!=0 ){ assert( pParse->pWith==pWith || pParse->nErr ); pParse->pWith = pWith->pOuter; } } } #else #define selectPopWith 0 #endif /* ** The SrcList_item structure passed as the second argument represents a ** sub-query in the FROM clause of a SELECT statement. This function ** allocates and populates the SrcList_item.pTab object. If successful, ** SQLITE_OK is returned. Otherwise, if an OOM error is encountered, ** SQLITE_NOMEM. */ SQLITE_PRIVATE int sqlite3ExpandSubquery(Parse *pParse, struct SrcList_item *pFrom){ Select *pSel = pFrom->pSelect; Table *pTab; assert( pSel ); pFrom->pTab = pTab = sqlite3DbMallocZero(pParse->db, sizeof(Table)); if( pTab==0 ) return SQLITE_NOMEM; pTab->nTabRef = 1; if( pFrom->zAlias ){ pTab->zName = sqlite3DbStrDup(pParse->db, pFrom->zAlias); }else{ pTab->zName = sqlite3MPrintf(pParse->db, "subquery_%u", pSel->selId); } while( pSel->pPrior ){ pSel = pSel->pPrior; } sqlite3ColumnsFromExprList(pParse, pSel->pEList,&pTab->nCol,&pTab->aCol); pTab->iPKey = -1; pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) ); pTab->tabFlags |= TF_Ephemeral; return pParse->nErr ? SQLITE_ERROR : SQLITE_OK; } /* ** This routine is a Walker callback for "expanding" a SELECT statement. ** "Expanding" means to do the following: ** ** (1) Make sure VDBE cursor numbers have been assigned to every ** element of the FROM clause. ** ** (2) Fill in the pTabList->a[].pTab fields in the SrcList that ** defines FROM clause. When views appear in the FROM clause, ** fill pTabList->a[].pSelect with a copy of the SELECT statement ** that implements the view. A copy is made of the view's SELECT ** statement so that we can freely modify or delete that statement ** without worrying about messing up the persistent representation ** of the view. ** ** (3) Add terms to the WHERE clause to accommodate the NATURAL keyword ** on joins and the ON and USING clause of joins. ** ** (4) Scan the list of columns in the result set (pEList) looking ** for instances of the "*" operator or the TABLE.* operator. ** If found, expand each "*" to be every column in every table ** and TABLE.* to be every column in TABLE. ** */ static int selectExpander(Walker *pWalker, Select *p){ Parse *pParse = pWalker->pParse; int i, j, k; SrcList *pTabList; ExprList *pEList; struct SrcList_item *pFrom; sqlite3 *db = pParse->db; Expr *pE, *pRight, *pExpr; u16 selFlags = p->selFlags; u32 elistFlags = 0; p->selFlags |= SF_Expanded; if( db->mallocFailed ){ return WRC_Abort; } assert( p->pSrc!=0 ); if( (selFlags & SF_Expanded)!=0 ){ return WRC_Prune; } if( pWalker->eCode ){ /* Renumber selId because it has been copied from a view */ p->selId = ++pParse->nSelect; } pTabList = p->pSrc; pEList = p->pEList; sqlite3WithPush(pParse, p->pWith, 0); /* Make sure cursor numbers have been assigned to all entries in ** the FROM clause of the SELECT statement. */ sqlite3SrcListAssignCursors(pParse, pTabList); /* Look up every table named in the FROM clause of the select. If ** an entry of the FROM clause is a subquery instead of a table or view, ** then create a transient table structure to describe the subquery. */ for(i=0, pFrom=pTabList->a; inSrc; i++, pFrom++){ Table *pTab; assert( pFrom->fg.isRecursive==0 || pFrom->pTab!=0 ); if( pFrom->pTab ) continue; assert( pFrom->fg.isRecursive==0 ); #ifndef SQLITE_OMIT_CTE if( withExpand(pWalker, pFrom) ) return WRC_Abort; if( pFrom->pTab ) {} else #endif if( pFrom->zName==0 ){ #ifndef SQLITE_OMIT_SUBQUERY Select *pSel = pFrom->pSelect; /* A sub-query in the FROM clause of a SELECT */ assert( pSel!=0 ); assert( pFrom->pTab==0 ); if( sqlite3WalkSelect(pWalker, pSel) ) return WRC_Abort; if( sqlite3ExpandSubquery(pParse, pFrom) ) return WRC_Abort; #endif }else{ /* An ordinary table or view name in the FROM clause */ assert( pFrom->pTab==0 ); pFrom->pTab = pTab = sqlite3LocateTableItem(pParse, 0, pFrom); if( pTab==0 ) return WRC_Abort; if( pTab->nTabRef>=0xffff ){ sqlite3ErrorMsg(pParse, "too many references to \"%s\": max 65535", pTab->zName); pFrom->pTab = 0; return WRC_Abort; } pTab->nTabRef++; if( !IsVirtual(pTab) && cannotBeFunction(pParse, pFrom) ){ return WRC_Abort; } #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_VIRTUALTABLE) if( IsVirtual(pTab) || pTab->pSelect ){ i16 nCol; u8 eCodeOrig = pWalker->eCode; if( sqlite3ViewGetColumnNames(pParse, pTab) ) return WRC_Abort; assert( pFrom->pSelect==0 ); if( pTab->pSelect && (db->flags & SQLITE_EnableView)==0 ){ sqlite3ErrorMsg(pParse, "access to view \"%s\" prohibited", pTab->zName); } #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pTab) && pFrom->fg.fromDDL && ALWAYS(pTab->pVTable!=0) && pTab->pVTable->eVtabRisk > ((db->flags & SQLITE_TrustedSchema)!=0) ){ sqlite3ErrorMsg(pParse, "unsafe use of virtual table \"%s\"", pTab->zName); } #endif pFrom->pSelect = sqlite3SelectDup(db, pTab->pSelect, 0); nCol = pTab->nCol; pTab->nCol = -1; pWalker->eCode = 1; /* Turn on Select.selId renumbering */ sqlite3WalkSelect(pWalker, pFrom->pSelect); pWalker->eCode = eCodeOrig; pTab->nCol = nCol; } #endif } /* Locate the index named by the INDEXED BY clause, if any. */ if( sqlite3IndexedByLookup(pParse, pFrom) ){ return WRC_Abort; } } /* Process NATURAL keywords, and ON and USING clauses of joins. */ if( pParse->nErr || db->mallocFailed || sqliteProcessJoin(pParse, p) ){ return WRC_Abort; } /* For every "*" that occurs in the column list, insert the names of ** all columns in all tables. And for every TABLE.* insert the names ** of all columns in TABLE. The parser inserted a special expression ** with the TK_ASTERISK operator for each "*" that it found in the column ** list. The following code just has to locate the TK_ASTERISK ** expressions and expand each one to the list of all columns in ** all tables. ** ** The first loop just checks to see if there are any "*" operators ** that need expanding. */ for(k=0; knExpr; k++){ pE = pEList->a[k].pExpr; if( pE->op==TK_ASTERISK ) break; assert( pE->op!=TK_DOT || pE->pRight!=0 ); assert( pE->op!=TK_DOT || (pE->pLeft!=0 && pE->pLeft->op==TK_ID) ); if( pE->op==TK_DOT && pE->pRight->op==TK_ASTERISK ) break; elistFlags |= pE->flags; } if( knExpr ){ /* ** If we get here it means the result set contains one or more "*" ** operators that need to be expanded. Loop through each expression ** in the result set and expand them one by one. */ struct ExprList_item *a = pEList->a; ExprList *pNew = 0; int flags = pParse->db->flags; int longNames = (flags & SQLITE_FullColNames)!=0 && (flags & SQLITE_ShortColNames)==0; for(k=0; knExpr; k++){ pE = a[k].pExpr; elistFlags |= pE->flags; pRight = pE->pRight; assert( pE->op!=TK_DOT || pRight!=0 ); if( pE->op!=TK_ASTERISK && (pE->op!=TK_DOT || pRight->op!=TK_ASTERISK) ){ /* This particular expression does not need to be expanded. */ pNew = sqlite3ExprListAppend(pParse, pNew, a[k].pExpr); if( pNew ){ pNew->a[pNew->nExpr-1].zEName = a[k].zEName; pNew->a[pNew->nExpr-1].eEName = a[k].eEName; a[k].zEName = 0; } a[k].pExpr = 0; }else{ /* This expression is a "*" or a "TABLE.*" and needs to be ** expanded. */ int tableSeen = 0; /* Set to 1 when TABLE matches */ char *zTName = 0; /* text of name of TABLE */ if( pE->op==TK_DOT ){ assert( pE->pLeft!=0 ); assert( !ExprHasProperty(pE->pLeft, EP_IntValue) ); zTName = pE->pLeft->u.zToken; } for(i=0, pFrom=pTabList->a; inSrc; i++, pFrom++){ Table *pTab = pFrom->pTab; Select *pSub = pFrom->pSelect; char *zTabName = pFrom->zAlias; const char *zSchemaName = 0; int iDb; if( zTabName==0 ){ zTabName = pTab->zName; } if( db->mallocFailed ) break; if( pSub==0 || (pSub->selFlags & SF_NestedFrom)==0 ){ pSub = 0; if( zTName && sqlite3StrICmp(zTName, zTabName)!=0 ){ continue; } iDb = sqlite3SchemaToIndex(db, pTab->pSchema); zSchemaName = iDb>=0 ? db->aDb[iDb].zDbSName : "*"; } for(j=0; jnCol; j++){ char *zName = pTab->aCol[j].zName; char *zColname; /* The computed column name */ char *zToFree; /* Malloced string that needs to be freed */ Token sColname; /* Computed column name as a token */ assert( zName ); if( zTName && pSub && sqlite3MatchEName(&pSub->pEList->a[j], 0, zTName, 0)==0 ){ continue; } /* If a column is marked as 'hidden', omit it from the expanded ** result-set list unless the SELECT has the SF_IncludeHidden ** bit set. */ if( (p->selFlags & SF_IncludeHidden)==0 && IsHiddenColumn(&pTab->aCol[j]) ){ continue; } tableSeen = 1; if( i>0 && zTName==0 ){ if( (pFrom->fg.jointype & JT_NATURAL)!=0 && tableAndColumnIndex(pTabList, i, zName, 0, 0, 1) ){ /* In a NATURAL join, omit the join columns from the ** table to the right of the join */ continue; } if( sqlite3IdListIndex(pFrom->pUsing, zName)>=0 ){ /* In a join with a USING clause, omit columns in the ** using clause from the table on the right. */ continue; } } pRight = sqlite3Expr(db, TK_ID, zName); zColname = zName; zToFree = 0; if( longNames || pTabList->nSrc>1 ){ Expr *pLeft; pLeft = sqlite3Expr(db, TK_ID, zTabName); pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight); if( zSchemaName ){ pLeft = sqlite3Expr(db, TK_ID, zSchemaName); pExpr = sqlite3PExpr(pParse, TK_DOT, pLeft, pExpr); } if( longNames ){ zColname = sqlite3MPrintf(db, "%s.%s", zTabName, zName); zToFree = zColname; } }else{ pExpr = pRight; } pNew = sqlite3ExprListAppend(pParse, pNew, pExpr); sqlite3TokenInit(&sColname, zColname); sqlite3ExprListSetName(pParse, pNew, &sColname, 0); if( pNew && (p->selFlags & SF_NestedFrom)!=0 && !IN_RENAME_OBJECT ){ struct ExprList_item *pX = &pNew->a[pNew->nExpr-1]; sqlite3DbFree(db, pX->zEName); if( pSub ){ pX->zEName = sqlite3DbStrDup(db, pSub->pEList->a[j].zEName); testcase( pX->zEName==0 ); }else{ pX->zEName = sqlite3MPrintf(db, "%s.%s.%s", zSchemaName, zTabName, zColname); testcase( pX->zEName==0 ); } pX->eEName = ENAME_TAB; } sqlite3DbFree(db, zToFree); } } if( !tableSeen ){ if( zTName ){ sqlite3ErrorMsg(pParse, "no such table: %s", zTName); }else{ sqlite3ErrorMsg(pParse, "no tables specified"); } } } } sqlite3ExprListDelete(db, pEList); p->pEList = pNew; } if( p->pEList ){ if( p->pEList->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){ sqlite3ErrorMsg(pParse, "too many columns in result set"); return WRC_Abort; } if( (elistFlags & (EP_HasFunc|EP_Subquery))!=0 ){ p->selFlags |= SF_ComplexResult; } } return WRC_Continue; } #if SQLITE_DEBUG /* ** Always assert. This xSelectCallback2 implementation proves that the ** xSelectCallback2 is never invoked. */ SQLITE_PRIVATE void sqlite3SelectWalkAssert2(Walker *NotUsed, Select *NotUsed2){ UNUSED_PARAMETER2(NotUsed, NotUsed2); assert( 0 ); } #endif /* ** This routine "expands" a SELECT statement and all of its subqueries. ** For additional information on what it means to "expand" a SELECT ** statement, see the comment on the selectExpand worker callback above. ** ** Expanding a SELECT statement is the first step in processing a ** SELECT statement. The SELECT statement must be expanded before ** name resolution is performed. ** ** If anything goes wrong, an error message is written into pParse. ** The calling function can detect the problem by looking at pParse->nErr ** and/or pParse->db->mallocFailed. */ static void sqlite3SelectExpand(Parse *pParse, Select *pSelect){ Walker w; w.xExprCallback = sqlite3ExprWalkNoop; w.pParse = pParse; if( OK_IF_ALWAYS_TRUE(pParse->hasCompound) ){ w.xSelectCallback = convertCompoundSelectToSubquery; w.xSelectCallback2 = 0; sqlite3WalkSelect(&w, pSelect); } w.xSelectCallback = selectExpander; w.xSelectCallback2 = selectPopWith; w.eCode = 0; sqlite3WalkSelect(&w, pSelect); } #ifndef SQLITE_OMIT_SUBQUERY /* ** This is a Walker.xSelectCallback callback for the sqlite3SelectTypeInfo() ** interface. ** ** For each FROM-clause subquery, add Column.zType and Column.zColl ** information to the Table structure that represents the result set ** of that subquery. ** ** The Table structure that represents the result set was constructed ** by selectExpander() but the type and collation information was omitted ** at that point because identifiers had not yet been resolved. This ** routine is called after identifier resolution. */ static void selectAddSubqueryTypeInfo(Walker *pWalker, Select *p){ Parse *pParse; int i; SrcList *pTabList; struct SrcList_item *pFrom; assert( p->selFlags & SF_Resolved ); if( p->selFlags & SF_HasTypeInfo ) return; p->selFlags |= SF_HasTypeInfo; pParse = pWalker->pParse; pTabList = p->pSrc; for(i=0, pFrom=pTabList->a; inSrc; i++, pFrom++){ Table *pTab = pFrom->pTab; assert( pTab!=0 ); if( (pTab->tabFlags & TF_Ephemeral)!=0 ){ /* A sub-query in the FROM clause of a SELECT */ Select *pSel = pFrom->pSelect; if( pSel ){ while( pSel->pPrior ) pSel = pSel->pPrior; sqlite3SelectAddColumnTypeAndCollation(pParse, pTab, pSel, SQLITE_AFF_NONE); } } } } #endif /* ** This routine adds datatype and collating sequence information to ** the Table structures of all FROM-clause subqueries in a ** SELECT statement. ** ** Use this routine after name resolution. */ static void sqlite3SelectAddTypeInfo(Parse *pParse, Select *pSelect){ #ifndef SQLITE_OMIT_SUBQUERY Walker w; w.xSelectCallback = sqlite3SelectWalkNoop; w.xSelectCallback2 = selectAddSubqueryTypeInfo; w.xExprCallback = sqlite3ExprWalkNoop; w.pParse = pParse; sqlite3WalkSelect(&w, pSelect); #endif } /* ** This routine sets up a SELECT statement for processing. The ** following is accomplished: ** ** * VDBE Cursor numbers are assigned to all FROM-clause terms. ** * Ephemeral Table objects are created for all FROM-clause subqueries. ** * ON and USING clauses are shifted into WHERE statements ** * Wildcards "*" and "TABLE.*" in result sets are expanded. ** * Identifiers in expression are matched to tables. ** ** This routine acts recursively on all subqueries within the SELECT. */ SQLITE_PRIVATE void sqlite3SelectPrep( Parse *pParse, /* The parser context */ Select *p, /* The SELECT statement being coded. */ NameContext *pOuterNC /* Name context for container */ ){ assert( p!=0 || pParse->db->mallocFailed ); if( pParse->db->mallocFailed ) return; if( p->selFlags & SF_HasTypeInfo ) return; sqlite3SelectExpand(pParse, p); if( pParse->nErr || pParse->db->mallocFailed ) return; sqlite3ResolveSelectNames(pParse, p, pOuterNC); if( pParse->nErr || pParse->db->mallocFailed ) return; sqlite3SelectAddTypeInfo(pParse, p); } /* ** Reset the aggregate accumulator. ** ** The aggregate accumulator is a set of memory cells that hold ** intermediate results while calculating an aggregate. This ** routine generates code that stores NULLs in all of those memory ** cells. */ static void resetAccumulator(Parse *pParse, AggInfo *pAggInfo){ Vdbe *v = pParse->pVdbe; int i; struct AggInfo_func *pFunc; int nReg = pAggInfo->nFunc + pAggInfo->nColumn; if( nReg==0 ) return; if( pParse->nErr || pParse->db->mallocFailed ) return; #ifdef SQLITE_DEBUG /* Verify that all AggInfo registers are within the range specified by ** AggInfo.mnReg..AggInfo.mxReg */ assert( nReg==pAggInfo->mxReg-pAggInfo->mnReg+1 ); for(i=0; inColumn; i++){ assert( pAggInfo->aCol[i].iMem>=pAggInfo->mnReg && pAggInfo->aCol[i].iMem<=pAggInfo->mxReg ); } for(i=0; inFunc; i++){ assert( pAggInfo->aFunc[i].iMem>=pAggInfo->mnReg && pAggInfo->aFunc[i].iMem<=pAggInfo->mxReg ); } #endif sqlite3VdbeAddOp3(v, OP_Null, 0, pAggInfo->mnReg, pAggInfo->mxReg); for(pFunc=pAggInfo->aFunc, i=0; inFunc; i++, pFunc++){ if( pFunc->iDistinct>=0 ){ Expr *pE = pFunc->pFExpr; assert( !ExprHasProperty(pE, EP_xIsSelect) ); if( pE->x.pList==0 || pE->x.pList->nExpr!=1 ){ sqlite3ErrorMsg(pParse, "DISTINCT aggregates must have exactly one " "argument"); pFunc->iDistinct = -1; }else{ KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pE->x.pList,0,0); sqlite3VdbeAddOp4(v, OP_OpenEphemeral, pFunc->iDistinct, 0, 0, (char*)pKeyInfo, P4_KEYINFO); } } } } /* ** Invoke the OP_AggFinalize opcode for every aggregate function ** in the AggInfo structure. */ static void finalizeAggFunctions(Parse *pParse, AggInfo *pAggInfo){ Vdbe *v = pParse->pVdbe; int i; struct AggInfo_func *pF; for(i=0, pF=pAggInfo->aFunc; inFunc; i++, pF++){ ExprList *pList = pF->pFExpr->x.pList; assert( !ExprHasProperty(pF->pFExpr, EP_xIsSelect) ); sqlite3VdbeAddOp2(v, OP_AggFinal, pF->iMem, pList ? pList->nExpr : 0); sqlite3VdbeAppendP4(v, pF->pFunc, P4_FUNCDEF); } } /* ** Update the accumulator memory cells for an aggregate based on ** the current cursor position. ** ** If regAcc is non-zero and there are no min() or max() aggregates ** in pAggInfo, then only populate the pAggInfo->nAccumulator accumulator ** registers if register regAcc contains 0. The caller will take care ** of setting and clearing regAcc. */ static void updateAccumulator(Parse *pParse, int regAcc, AggInfo *pAggInfo){ Vdbe *v = pParse->pVdbe; int i; int regHit = 0; int addrHitTest = 0; struct AggInfo_func *pF; struct AggInfo_col *pC; pAggInfo->directMode = 1; for(i=0, pF=pAggInfo->aFunc; inFunc; i++, pF++){ int nArg; int addrNext = 0; int regAgg; ExprList *pList = pF->pFExpr->x.pList; assert( !ExprHasProperty(pF->pFExpr, EP_xIsSelect) ); assert( !IsWindowFunc(pF->pFExpr) ); if( ExprHasProperty(pF->pFExpr, EP_WinFunc) ){ Expr *pFilter = pF->pFExpr->y.pWin->pFilter; if( pAggInfo->nAccumulator && (pF->pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL) && regAcc ){ /* If regAcc==0, there there exists some min() or max() function ** without a FILTER clause that will ensure the magnet registers ** are populated. */ if( regHit==0 ) regHit = ++pParse->nMem; /* If this is the first row of the group (regAcc contains 0), clear the ** "magnet" register regHit so that the accumulator registers ** are populated if the FILTER clause jumps over the the ** invocation of min() or max() altogether. Or, if this is not ** the first row (regAcc contains 1), set the magnet register so that ** the accumulators are not populated unless the min()/max() is invoked ** and indicates that they should be. */ sqlite3VdbeAddOp2(v, OP_Copy, regAcc, regHit); } addrNext = sqlite3VdbeMakeLabel(pParse); sqlite3ExprIfFalse(pParse, pFilter, addrNext, SQLITE_JUMPIFNULL); } if( pList ){ nArg = pList->nExpr; regAgg = sqlite3GetTempRange(pParse, nArg); sqlite3ExprCodeExprList(pParse, pList, regAgg, 0, SQLITE_ECEL_DUP); }else{ nArg = 0; regAgg = 0; } if( pF->iDistinct>=0 ){ if( addrNext==0 ){ addrNext = sqlite3VdbeMakeLabel(pParse); } testcase( nArg==0 ); /* Error condition */ testcase( nArg>1 ); /* Also an error */ codeDistinct(pParse, pF->iDistinct, addrNext, 1, regAgg); } if( pF->pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL ){ CollSeq *pColl = 0; struct ExprList_item *pItem; int j; assert( pList!=0 ); /* pList!=0 if pF->pFunc has NEEDCOLL */ for(j=0, pItem=pList->a; !pColl && jpExpr); } if( !pColl ){ pColl = pParse->db->pDfltColl; } if( regHit==0 && pAggInfo->nAccumulator ) regHit = ++pParse->nMem; sqlite3VdbeAddOp4(v, OP_CollSeq, regHit, 0, 0, (char *)pColl, P4_COLLSEQ); } sqlite3VdbeAddOp3(v, OP_AggStep, 0, regAgg, pF->iMem); sqlite3VdbeAppendP4(v, pF->pFunc, P4_FUNCDEF); sqlite3VdbeChangeP5(v, (u8)nArg); sqlite3ReleaseTempRange(pParse, regAgg, nArg); if( addrNext ){ sqlite3VdbeResolveLabel(v, addrNext); } } if( regHit==0 && pAggInfo->nAccumulator ){ regHit = regAcc; } if( regHit ){ addrHitTest = sqlite3VdbeAddOp1(v, OP_If, regHit); VdbeCoverage(v); } for(i=0, pC=pAggInfo->aCol; inAccumulator; i++, pC++){ sqlite3ExprCode(pParse, pC->pCExpr, pC->iMem); } pAggInfo->directMode = 0; if( addrHitTest ){ sqlite3VdbeJumpHereOrPopInst(v, addrHitTest); } } /* ** Add a single OP_Explain instruction to the VDBE to explain a simple ** count(*) query ("SELECT count(*) FROM pTab"). */ #ifndef SQLITE_OMIT_EXPLAIN static void explainSimpleCount( Parse *pParse, /* Parse context */ Table *pTab, /* Table being queried */ Index *pIdx /* Index used to optimize scan, or NULL */ ){ if( pParse->explain==2 ){ int bCover = (pIdx!=0 && (HasRowid(pTab) || !IsPrimaryKeyIndex(pIdx))); sqlite3VdbeExplain(pParse, 0, "SCAN TABLE %s%s%s", pTab->zName, bCover ? " USING COVERING INDEX " : "", bCover ? pIdx->zName : "" ); } } #else # define explainSimpleCount(a,b,c) #endif /* ** sqlite3WalkExpr() callback used by havingToWhere(). ** ** If the node passed to the callback is a TK_AND node, return ** WRC_Continue to tell sqlite3WalkExpr() to iterate through child nodes. ** ** Otherwise, return WRC_Prune. In this case, also check if the ** sub-expression matches the criteria for being moved to the WHERE ** clause. If so, add it to the WHERE clause and replace the sub-expression ** within the HAVING expression with a constant "1". */ static int havingToWhereExprCb(Walker *pWalker, Expr *pExpr){ if( pExpr->op!=TK_AND ){ Select *pS = pWalker->u.pSelect; if( sqlite3ExprIsConstantOrGroupBy(pWalker->pParse, pExpr, pS->pGroupBy) ){ sqlite3 *db = pWalker->pParse->db; Expr *pNew = sqlite3Expr(db, TK_INTEGER, "1"); if( pNew ){ Expr *pWhere = pS->pWhere; SWAP(Expr, *pNew, *pExpr); pNew = sqlite3ExprAnd(pWalker->pParse, pWhere, pNew); pS->pWhere = pNew; pWalker->eCode = 1; } } return WRC_Prune; } return WRC_Continue; } /* ** Transfer eligible terms from the HAVING clause of a query, which is ** processed after grouping, to the WHERE clause, which is processed before ** grouping. For example, the query: ** ** SELECT * FROM WHERE a=? GROUP BY b HAVING b=? AND c=? ** ** can be rewritten as: ** ** SELECT * FROM WHERE a=? AND b=? GROUP BY b HAVING c=? ** ** A term of the HAVING expression is eligible for transfer if it consists ** entirely of constants and expressions that are also GROUP BY terms that ** use the "BINARY" collation sequence. */ static void havingToWhere(Parse *pParse, Select *p){ Walker sWalker; memset(&sWalker, 0, sizeof(sWalker)); sWalker.pParse = pParse; sWalker.xExprCallback = havingToWhereExprCb; sWalker.u.pSelect = p; sqlite3WalkExpr(&sWalker, p->pHaving); #if SELECTTRACE_ENABLED if( sWalker.eCode && (sqlite3_unsupported_selecttrace & 0x100)!=0 ){ SELECTTRACE(0x100,pParse,p,("Move HAVING terms into WHERE:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif } /* ** Check to see if the pThis entry of pTabList is a self-join of a prior view. ** If it is, then return the SrcList_item for the prior view. If it is not, ** then return 0. */ static struct SrcList_item *isSelfJoinView( SrcList *pTabList, /* Search for self-joins in this FROM clause */ struct SrcList_item *pThis /* Search for prior reference to this subquery */ ){ struct SrcList_item *pItem; for(pItem = pTabList->a; pItempSelect==0 ) continue; if( pItem->fg.viaCoroutine ) continue; if( pItem->zName==0 ) continue; assert( pItem->pTab!=0 ); assert( pThis->pTab!=0 ); if( pItem->pTab->pSchema!=pThis->pTab->pSchema ) continue; if( sqlite3_stricmp(pItem->zName, pThis->zName)!=0 ) continue; pS1 = pItem->pSelect; if( pItem->pTab->pSchema==0 && pThis->pSelect->selId!=pS1->selId ){ /* The query flattener left two different CTE tables with identical ** names in the same FROM clause. */ continue; } if( sqlite3ExprCompare(0, pThis->pSelect->pWhere, pS1->pWhere, -1) || sqlite3ExprCompare(0, pThis->pSelect->pHaving, pS1->pHaving, -1) ){ /* The view was modified by some other optimization such as ** pushDownWhereTerms() */ continue; } return pItem; } return 0; } #ifdef SQLITE_COUNTOFVIEW_OPTIMIZATION /* ** Attempt to transform a query of the form ** ** SELECT count(*) FROM (SELECT x FROM t1 UNION ALL SELECT y FROM t2) ** ** Into this: ** ** SELECT (SELECT count(*) FROM t1)+(SELECT count(*) FROM t2) ** ** The transformation only works if all of the following are true: ** ** * The subquery is a UNION ALL of two or more terms ** * The subquery does not have a LIMIT clause ** * There is no WHERE or GROUP BY or HAVING clauses on the subqueries ** * The outer query is a simple count(*) with no WHERE clause or other ** extraneous syntax. ** ** Return TRUE if the optimization is undertaken. */ static int countOfViewOptimization(Parse *pParse, Select *p){ Select *pSub, *pPrior; Expr *pExpr; Expr *pCount; sqlite3 *db; if( (p->selFlags & SF_Aggregate)==0 ) return 0; /* This is an aggregate */ if( p->pEList->nExpr!=1 ) return 0; /* Single result column */ if( p->pWhere ) return 0; if( p->pGroupBy ) return 0; pExpr = p->pEList->a[0].pExpr; if( pExpr->op!=TK_AGG_FUNCTION ) return 0; /* Result is an aggregate */ if( sqlite3_stricmp(pExpr->u.zToken,"count") ) return 0; /* Is count() */ if( pExpr->x.pList!=0 ) return 0; /* Must be count(*) */ if( p->pSrc->nSrc!=1 ) return 0; /* One table in FROM */ pSub = p->pSrc->a[0].pSelect; if( pSub==0 ) return 0; /* The FROM is a subquery */ if( pSub->pPrior==0 ) return 0; /* Must be a compound ry */ do{ if( pSub->op!=TK_ALL && pSub->pPrior ) return 0; /* Must be UNION ALL */ if( pSub->pWhere ) return 0; /* No WHERE clause */ if( pSub->pLimit ) return 0; /* No LIMIT clause */ if( pSub->selFlags & SF_Aggregate ) return 0; /* Not an aggregate */ pSub = pSub->pPrior; /* Repeat over compound */ }while( pSub ); /* If we reach this point then it is OK to perform the transformation */ db = pParse->db; pCount = pExpr; pExpr = 0; pSub = p->pSrc->a[0].pSelect; p->pSrc->a[0].pSelect = 0; sqlite3SrcListDelete(db, p->pSrc); p->pSrc = sqlite3DbMallocZero(pParse->db, sizeof(*p->pSrc)); while( pSub ){ Expr *pTerm; pPrior = pSub->pPrior; pSub->pPrior = 0; pSub->pNext = 0; pSub->selFlags |= SF_Aggregate; pSub->selFlags &= ~SF_Compound; pSub->nSelectRow = 0; sqlite3ExprListDelete(db, pSub->pEList); pTerm = pPrior ? sqlite3ExprDup(db, pCount, 0) : pCount; pSub->pEList = sqlite3ExprListAppend(pParse, 0, pTerm); pTerm = sqlite3PExpr(pParse, TK_SELECT, 0, 0); sqlite3PExprAddSelect(pParse, pTerm, pSub); if( pExpr==0 ){ pExpr = pTerm; }else{ pExpr = sqlite3PExpr(pParse, TK_PLUS, pTerm, pExpr); } pSub = pPrior; } p->pEList->a[0].pExpr = pExpr; p->selFlags &= ~SF_Aggregate; #if SELECTTRACE_ENABLED if( sqlite3_unsupported_selecttrace & 0x400 ){ SELECTTRACE(0x400,pParse,p,("After count-of-view optimization:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif return 1; } #endif /* SQLITE_COUNTOFVIEW_OPTIMIZATION */ /* ** Generate code for the SELECT statement given in the p argument. ** ** The results are returned according to the SelectDest structure. ** See comments in sqliteInt.h for further information. ** ** This routine returns the number of errors. If any errors are ** encountered, then an appropriate error message is left in ** pParse->zErrMsg. ** ** This routine does NOT free the Select structure passed in. The ** calling function needs to do that. */ SQLITE_PRIVATE int sqlite3Select( Parse *pParse, /* The parser context */ Select *p, /* The SELECT statement being coded. */ SelectDest *pDest /* What to do with the query results */ ){ int i, j; /* Loop counters */ WhereInfo *pWInfo; /* Return from sqlite3WhereBegin() */ Vdbe *v; /* The virtual machine under construction */ int isAgg; /* True for select lists like "count(*)" */ ExprList *pEList = 0; /* List of columns to extract. */ SrcList *pTabList; /* List of tables to select from */ Expr *pWhere; /* The WHERE clause. May be NULL */ ExprList *pGroupBy; /* The GROUP BY clause. May be NULL */ Expr *pHaving; /* The HAVING clause. May be NULL */ AggInfo *pAggInfo = 0; /* Aggregate information */ int rc = 1; /* Value to return from this function */ DistinctCtx sDistinct; /* Info on how to code the DISTINCT keyword */ SortCtx sSort; /* Info on how to code the ORDER BY clause */ int iEnd; /* Address of the end of the query */ sqlite3 *db; /* The database connection */ ExprList *pMinMaxOrderBy = 0; /* Added ORDER BY for min/max queries */ u8 minMaxFlag; /* Flag for min/max queries */ db = pParse->db; v = sqlite3GetVdbe(pParse); if( p==0 || db->mallocFailed || pParse->nErr ){ return 1; } if( sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0) ) return 1; #if SELECTTRACE_ENABLED SELECTTRACE(1,pParse,p, ("begin processing:\n", pParse->addrExplain)); if( sqlite3_unsupported_selecttrace & 0x100 ){ sqlite3TreeViewSelect(0, p, 0); } #endif assert( p->pOrderBy==0 || pDest->eDest!=SRT_DistFifo ); assert( p->pOrderBy==0 || pDest->eDest!=SRT_Fifo ); assert( p->pOrderBy==0 || pDest->eDest!=SRT_DistQueue ); assert( p->pOrderBy==0 || pDest->eDest!=SRT_Queue ); if( IgnorableOrderby(pDest) ){ assert(pDest->eDest==SRT_Exists || pDest->eDest==SRT_Union || pDest->eDest==SRT_Except || pDest->eDest==SRT_Discard || pDest->eDest==SRT_Queue || pDest->eDest==SRT_DistFifo || pDest->eDest==SRT_DistQueue || pDest->eDest==SRT_Fifo); /* If ORDER BY makes no difference in the output then neither does ** DISTINCT so it can be removed too. */ sqlite3ExprListDelete(db, p->pOrderBy); p->pOrderBy = 0; p->selFlags &= ~SF_Distinct; p->selFlags |= SF_NoopOrderBy; } sqlite3SelectPrep(pParse, p, 0); if( pParse->nErr || db->mallocFailed ){ goto select_end; } assert( p->pEList!=0 ); #if SELECTTRACE_ENABLED if( sqlite3_unsupported_selecttrace & 0x104 ){ SELECTTRACE(0x104,pParse,p, ("after name resolution:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif /* If the SF_UpdateFrom flag is set, then this function is being called ** as part of populating the temp table for an UPDATE...FROM statement. ** In this case, it is an error if the target object (pSrc->a[0]) name ** or alias is duplicated within FROM clause (pSrc->a[1..n]). */ if( p->selFlags & SF_UpdateFrom ){ struct SrcList_item *p0 = &p->pSrc->a[0]; for(i=1; ipSrc->nSrc; i++){ struct SrcList_item *p1 = &p->pSrc->a[i]; if( p0->pTab==p1->pTab && 0==sqlite3_stricmp(p0->zAlias, p1->zAlias) ){ sqlite3ErrorMsg(pParse, "target object/alias may not appear in FROM clause: %s", p0->zAlias ? p0->zAlias : p0->pTab->zName ); goto select_end; } } } if( pDest->eDest==SRT_Output ){ generateColumnNames(pParse, p); } #ifndef SQLITE_OMIT_WINDOWFUNC rc = sqlite3WindowRewrite(pParse, p); if( rc ){ assert( db->mallocFailed || pParse->nErr>0 ); goto select_end; } #if SELECTTRACE_ENABLED if( p->pWin && (sqlite3_unsupported_selecttrace & 0x108)!=0 ){ SELECTTRACE(0x104,pParse,p, ("after window rewrite:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif #endif /* SQLITE_OMIT_WINDOWFUNC */ pTabList = p->pSrc; isAgg = (p->selFlags & SF_Aggregate)!=0; memset(&sSort, 0, sizeof(sSort)); sSort.pOrderBy = p->pOrderBy; /* Try to do various optimizations (flattening subqueries, and strength ** reduction of join operators) in the FROM clause up into the main query */ #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) for(i=0; !p->pPrior && inSrc; i++){ struct SrcList_item *pItem = &pTabList->a[i]; Select *pSub = pItem->pSelect; Table *pTab = pItem->pTab; /* The expander should have already created transient Table objects ** even for FROM clause elements such as subqueries that do not correspond ** to a real table */ assert( pTab!=0 ); /* Convert LEFT JOIN into JOIN if there are terms of the right table ** of the LEFT JOIN used in the WHERE clause. */ if( (pItem->fg.jointype & JT_LEFT)!=0 && sqlite3ExprImpliesNonNullRow(p->pWhere, pItem->iCursor) && OptimizationEnabled(db, SQLITE_SimplifyJoin) ){ SELECTTRACE(0x100,pParse,p, ("LEFT-JOIN simplifies to JOIN on term %d\n",i)); pItem->fg.jointype &= ~(JT_LEFT|JT_OUTER); unsetJoinExpr(p->pWhere, pItem->iCursor); } /* No futher action if this term of the FROM clause is no a subquery */ if( pSub==0 ) continue; /* Catch mismatch in the declared columns of a view and the number of ** columns in the SELECT on the RHS */ if( pTab->nCol!=pSub->pEList->nExpr ){ sqlite3ErrorMsg(pParse, "expected %d columns for '%s' but got %d", pTab->nCol, pTab->zName, pSub->pEList->nExpr); goto select_end; } /* Do not try to flatten an aggregate subquery. ** ** Flattening an aggregate subquery is only possible if the outer query ** is not a join. But if the outer query is not a join, then the subquery ** will be implemented as a co-routine and there is no advantage to ** flattening in that case. */ if( (pSub->selFlags & SF_Aggregate)!=0 ) continue; assert( pSub->pGroupBy==0 ); /* If the outer query contains a "complex" result set (that is, ** if the result set of the outer query uses functions or subqueries) ** and if the subquery contains an ORDER BY clause and if ** it will be implemented as a co-routine, then do not flatten. This ** restriction allows SQL constructs like this: ** ** SELECT expensive_function(x) ** FROM (SELECT x FROM tab ORDER BY y LIMIT 10); ** ** The expensive_function() is only computed on the 10 rows that ** are output, rather than every row of the table. ** ** The requirement that the outer query have a complex result set ** means that flattening does occur on simpler SQL constraints without ** the expensive_function() like: ** ** SELECT x FROM (SELECT x FROM tab ORDER BY y LIMIT 10); */ if( pSub->pOrderBy!=0 && i==0 && (p->selFlags & SF_ComplexResult)!=0 && (pTabList->nSrc==1 || (pTabList->a[1].fg.jointype&(JT_LEFT|JT_CROSS))!=0) ){ continue; } if( flattenSubquery(pParse, p, i, isAgg) ){ if( pParse->nErr ) goto select_end; /* This subquery can be absorbed into its parent. */ i = -1; } pTabList = p->pSrc; if( db->mallocFailed ) goto select_end; if( !IgnorableOrderby(pDest) ){ sSort.pOrderBy = p->pOrderBy; } } #endif #ifndef SQLITE_OMIT_COMPOUND_SELECT /* Handle compound SELECT statements using the separate multiSelect() ** procedure. */ if( p->pPrior ){ rc = multiSelect(pParse, p, pDest); #if SELECTTRACE_ENABLED SELECTTRACE(0x1,pParse,p,("end compound-select processing\n")); if( (sqlite3_unsupported_selecttrace & 0x2000)!=0 && ExplainQueryPlanParent(pParse)==0 ){ sqlite3TreeViewSelect(0, p, 0); } #endif if( p->pNext==0 ) ExplainQueryPlanPop(pParse); return rc; } #endif /* Do the WHERE-clause constant propagation optimization if this is ** a join. No need to speed time on this operation for non-join queries ** as the equivalent optimization will be handled by query planner in ** sqlite3WhereBegin(). */ if( pTabList->nSrc>1 && OptimizationEnabled(db, SQLITE_PropagateConst) && propagateConstants(pParse, p) ){ #if SELECTTRACE_ENABLED if( sqlite3_unsupported_selecttrace & 0x100 ){ SELECTTRACE(0x100,pParse,p,("After constant propagation:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif }else{ SELECTTRACE(0x100,pParse,p,("Constant propagation not helpful\n")); } #ifdef SQLITE_COUNTOFVIEW_OPTIMIZATION if( OptimizationEnabled(db, SQLITE_QueryFlattener|SQLITE_CountOfView) && countOfViewOptimization(pParse, p) ){ if( db->mallocFailed ) goto select_end; pEList = p->pEList; pTabList = p->pSrc; } #endif /* For each term in the FROM clause, do two things: ** (1) Authorized unreferenced tables ** (2) Generate code for all sub-queries */ for(i=0; inSrc; i++){ struct SrcList_item *pItem = &pTabList->a[i]; SelectDest dest; Select *pSub; #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) const char *zSavedAuthContext; #endif /* Issue SQLITE_READ authorizations with a fake column name for any ** tables that are referenced but from which no values are extracted. ** Examples of where these kinds of null SQLITE_READ authorizations ** would occur: ** ** SELECT count(*) FROM t1; -- SQLITE_READ t1."" ** SELECT t1.* FROM t1, t2; -- SQLITE_READ t2."" ** ** The fake column name is an empty string. It is possible for a table to ** have a column named by the empty string, in which case there is no way to ** distinguish between an unreferenced table and an actual reference to the ** "" column. The original design was for the fake column name to be a NULL, ** which would be unambiguous. But legacy authorization callbacks might ** assume the column name is non-NULL and segfault. The use of an empty ** string for the fake column name seems safer. */ if( pItem->colUsed==0 && pItem->zName!=0 ){ sqlite3AuthCheck(pParse, SQLITE_READ, pItem->zName, "", pItem->zDatabase); } #if !defined(SQLITE_OMIT_SUBQUERY) || !defined(SQLITE_OMIT_VIEW) /* Generate code for all sub-queries in the FROM clause */ pSub = pItem->pSelect; if( pSub==0 ) continue; /* The code for a subquery should only be generated once, though it is ** technically harmless for it to be generated multiple times. The ** following assert() will detect if something changes to cause ** the same subquery to be coded multiple times, as a signal to the ** developers to try to optimize the situation. ** ** Update 2019-07-24: ** See ticket https://sqlite.org/src/tktview/c52b09c7f38903b1311cec40. ** The dbsqlfuzz fuzzer found a case where the same subquery gets ** coded twice. So this assert() now becomes a testcase(). It should ** be very rare, though. */ testcase( pItem->addrFillSub!=0 ); /* Increment Parse.nHeight by the height of the largest expression ** tree referred to by this, the parent select. The child select ** may contain expression trees of at most ** (SQLITE_MAX_EXPR_DEPTH-Parse.nHeight) height. This is a bit ** more conservative than necessary, but much easier than enforcing ** an exact limit. */ pParse->nHeight += sqlite3SelectExprHeight(p); /* Make copies of constant WHERE-clause terms in the outer query down ** inside the subquery. This can help the subquery to run more efficiently. */ if( OptimizationEnabled(db, SQLITE_PushDown) && pushDownWhereTerms(pParse, pSub, p->pWhere, pItem->iCursor, (pItem->fg.jointype & JT_OUTER)!=0) ){ #if SELECTTRACE_ENABLED if( sqlite3_unsupported_selecttrace & 0x100 ){ SELECTTRACE(0x100,pParse,p, ("After WHERE-clause push-down into subquery %d:\n", pSub->selId)); sqlite3TreeViewSelect(0, p, 0); } #endif }else{ SELECTTRACE(0x100,pParse,p,("Push-down not possible\n")); } zSavedAuthContext = pParse->zAuthContext; pParse->zAuthContext = pItem->zName; /* Generate code to implement the subquery ** ** The subquery is implemented as a co-routine if the subquery is ** guaranteed to be the outer loop (so that it does not need to be ** computed more than once) ** ** TODO: Are there other reasons beside (1) to use a co-routine ** implementation? */ if( i==0 && (pTabList->nSrc==1 || (pTabList->a[1].fg.jointype&(JT_LEFT|JT_CROSS))!=0) /* (1) */ ){ /* Implement a co-routine that will return a single row of the result ** set on each invocation. */ int addrTop = sqlite3VdbeCurrentAddr(v)+1; pItem->regReturn = ++pParse->nMem; sqlite3VdbeAddOp3(v, OP_InitCoroutine, pItem->regReturn, 0, addrTop); VdbeComment((v, "%s", pItem->pTab->zName)); pItem->addrFillSub = addrTop; sqlite3SelectDestInit(&dest, SRT_Coroutine, pItem->regReturn); ExplainQueryPlan((pParse, 1, "CO-ROUTINE %u", pSub->selId)); sqlite3Select(pParse, pSub, &dest); pItem->pTab->nRowLogEst = pSub->nSelectRow; pItem->fg.viaCoroutine = 1; pItem->regResult = dest.iSdst; sqlite3VdbeEndCoroutine(v, pItem->regReturn); sqlite3VdbeJumpHere(v, addrTop-1); sqlite3ClearTempRegCache(pParse); }else{ /* Generate a subroutine that will fill an ephemeral table with ** the content of this subquery. pItem->addrFillSub will point ** to the address of the generated subroutine. pItem->regReturn ** is a register allocated to hold the subroutine return address */ int topAddr; int onceAddr = 0; int retAddr; struct SrcList_item *pPrior; testcase( pItem->addrFillSub==0 ); /* Ticket c52b09c7f38903b1311 */ pItem->regReturn = ++pParse->nMem; topAddr = sqlite3VdbeAddOp2(v, OP_Integer, 0, pItem->regReturn); pItem->addrFillSub = topAddr+1; if( pItem->fg.isCorrelated==0 ){ /* If the subquery is not correlated and if we are not inside of ** a trigger, then we only need to compute the value of the subquery ** once. */ onceAddr = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); VdbeComment((v, "materialize \"%s\"", pItem->pTab->zName)); }else{ VdbeNoopComment((v, "materialize \"%s\"", pItem->pTab->zName)); } pPrior = isSelfJoinView(pTabList, pItem); if( pPrior ){ sqlite3VdbeAddOp2(v, OP_OpenDup, pItem->iCursor, pPrior->iCursor); assert( pPrior->pSelect!=0 ); pSub->nSelectRow = pPrior->pSelect->nSelectRow; }else{ sqlite3SelectDestInit(&dest, SRT_EphemTab, pItem->iCursor); ExplainQueryPlan((pParse, 1, "MATERIALIZE %u", pSub->selId)); sqlite3Select(pParse, pSub, &dest); } pItem->pTab->nRowLogEst = pSub->nSelectRow; if( onceAddr ) sqlite3VdbeJumpHere(v, onceAddr); retAddr = sqlite3VdbeAddOp1(v, OP_Return, pItem->regReturn); VdbeComment((v, "end %s", pItem->pTab->zName)); sqlite3VdbeChangeP1(v, topAddr, retAddr); sqlite3ClearTempRegCache(pParse); } if( db->mallocFailed ) goto select_end; pParse->nHeight -= sqlite3SelectExprHeight(p); pParse->zAuthContext = zSavedAuthContext; #endif } /* Various elements of the SELECT copied into local variables for ** convenience */ pEList = p->pEList; pWhere = p->pWhere; pGroupBy = p->pGroupBy; pHaving = p->pHaving; sDistinct.isTnct = (p->selFlags & SF_Distinct)!=0; #if SELECTTRACE_ENABLED if( sqlite3_unsupported_selecttrace & 0x400 ){ SELECTTRACE(0x400,pParse,p,("After all FROM-clause analysis:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif /* If the query is DISTINCT with an ORDER BY but is not an aggregate, and ** if the select-list is the same as the ORDER BY list, then this query ** can be rewritten as a GROUP BY. In other words, this: ** ** SELECT DISTINCT xyz FROM ... ORDER BY xyz ** ** is transformed to: ** ** SELECT xyz FROM ... GROUP BY xyz ORDER BY xyz ** ** The second form is preferred as a single index (or temp-table) may be ** used for both the ORDER BY and DISTINCT processing. As originally ** written the query must use a temp-table for at least one of the ORDER ** BY and DISTINCT, and an index or separate temp-table for the other. */ if( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct && sqlite3ExprListCompare(sSort.pOrderBy, pEList, -1)==0 #ifndef SQLITE_OMIT_WINDOWFUNC && p->pWin==0 #endif ){ p->selFlags &= ~SF_Distinct; pGroupBy = p->pGroupBy = sqlite3ExprListDup(db, pEList, 0); p->selFlags |= SF_Aggregate; /* Notice that even thought SF_Distinct has been cleared from p->selFlags, ** the sDistinct.isTnct is still set. Hence, isTnct represents the ** original setting of the SF_Distinct flag, not the current setting */ assert( sDistinct.isTnct ); #if SELECTTRACE_ENABLED if( sqlite3_unsupported_selecttrace & 0x400 ){ SELECTTRACE(0x400,pParse,p,("Transform DISTINCT into GROUP BY:\n")); sqlite3TreeViewSelect(0, p, 0); } #endif } /* If there is an ORDER BY clause, then create an ephemeral index to ** do the sorting. But this sorting ephemeral index might end up ** being unused if the data can be extracted in pre-sorted order. ** If that is the case, then the OP_OpenEphemeral instruction will be ** changed to an OP_Noop once we figure out that the sorting index is ** not needed. The sSort.addrSortIndex variable is used to facilitate ** that change. */ if( sSort.pOrderBy ){ KeyInfo *pKeyInfo; pKeyInfo = sqlite3KeyInfoFromExprList( pParse, sSort.pOrderBy, 0, pEList->nExpr); sSort.iECursor = pParse->nTab++; sSort.addrSortIndex = sqlite3VdbeAddOp4(v, OP_OpenEphemeral, sSort.iECursor, sSort.pOrderBy->nExpr+1+pEList->nExpr, 0, (char*)pKeyInfo, P4_KEYINFO ); }else{ sSort.addrSortIndex = -1; } /* If the output is destined for a temporary table, open that table. */ if( pDest->eDest==SRT_EphemTab ){ sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pDest->iSDParm, pEList->nExpr); } /* Set the limiter. */ iEnd = sqlite3VdbeMakeLabel(pParse); if( (p->selFlags & SF_FixedLimit)==0 ){ p->nSelectRow = 320; /* 4 billion rows */ } computeLimitRegisters(pParse, p, iEnd); if( p->iLimit==0 && sSort.addrSortIndex>=0 ){ sqlite3VdbeChangeOpcode(v, sSort.addrSortIndex, OP_SorterOpen); sSort.sortFlags |= SORTFLAG_UseSorter; } /* Open an ephemeral index to use for the distinct set. */ if( p->selFlags & SF_Distinct ){ sDistinct.tabTnct = pParse->nTab++; sDistinct.addrTnct = sqlite3VdbeAddOp4(v, OP_OpenEphemeral, sDistinct.tabTnct, 0, 0, (char*)sqlite3KeyInfoFromExprList(pParse, p->pEList,0,0), P4_KEYINFO); sqlite3VdbeChangeP5(v, BTREE_UNORDERED); sDistinct.eTnctType = WHERE_DISTINCT_UNORDERED; }else{ sDistinct.eTnctType = WHERE_DISTINCT_NOOP; } if( !isAgg && pGroupBy==0 ){ /* No aggregate functions and no GROUP BY clause */ u16 wctrlFlags = (sDistinct.isTnct ? WHERE_WANT_DISTINCT : 0) | (p->selFlags & SF_FixedLimit); #ifndef SQLITE_OMIT_WINDOWFUNC Window *pWin = p->pWin; /* Main window object (or NULL) */ if( pWin ){ sqlite3WindowCodeInit(pParse, p); } #endif assert( WHERE_USE_LIMIT==SF_FixedLimit ); /* Begin the database scan. */ SELECTTRACE(1,pParse,p,("WhereBegin\n")); pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, sSort.pOrderBy, p->pEList, wctrlFlags, p->nSelectRow); if( pWInfo==0 ) goto select_end; if( sqlite3WhereOutputRowCount(pWInfo) < p->nSelectRow ){ p->nSelectRow = sqlite3WhereOutputRowCount(pWInfo); } if( sDistinct.isTnct && sqlite3WhereIsDistinct(pWInfo) ){ sDistinct.eTnctType = sqlite3WhereIsDistinct(pWInfo); } if( sSort.pOrderBy ){ sSort.nOBSat = sqlite3WhereIsOrdered(pWInfo); sSort.labelOBLopt = sqlite3WhereOrderByLimitOptLabel(pWInfo); if( sSort.nOBSat==sSort.pOrderBy->nExpr ){ sSort.pOrderBy = 0; } } /* If sorting index that was created by a prior OP_OpenEphemeral ** instruction ended up not being needed, then change the OP_OpenEphemeral ** into an OP_Noop. */ if( sSort.addrSortIndex>=0 && sSort.pOrderBy==0 ){ sqlite3VdbeChangeToNoop(v, sSort.addrSortIndex); } assert( p->pEList==pEList ); #ifndef SQLITE_OMIT_WINDOWFUNC if( pWin ){ int addrGosub = sqlite3VdbeMakeLabel(pParse); int iCont = sqlite3VdbeMakeLabel(pParse); int iBreak = sqlite3VdbeMakeLabel(pParse); int regGosub = ++pParse->nMem; sqlite3WindowCodeStep(pParse, p, pWInfo, regGosub, addrGosub); sqlite3VdbeAddOp2(v, OP_Goto, 0, iBreak); sqlite3VdbeResolveLabel(v, addrGosub); VdbeNoopComment((v, "inner-loop subroutine")); sSort.labelOBLopt = 0; selectInnerLoop(pParse, p, -1, &sSort, &sDistinct, pDest, iCont, iBreak); sqlite3VdbeResolveLabel(v, iCont); sqlite3VdbeAddOp1(v, OP_Return, regGosub); VdbeComment((v, "end inner-loop subroutine")); sqlite3VdbeResolveLabel(v, iBreak); }else #endif /* SQLITE_OMIT_WINDOWFUNC */ { /* Use the standard inner loop. */ selectInnerLoop(pParse, p, -1, &sSort, &sDistinct, pDest, sqlite3WhereContinueLabel(pWInfo), sqlite3WhereBreakLabel(pWInfo)); /* End the database scan loop. */ sqlite3WhereEnd(pWInfo); } }else{ /* This case when there exist aggregate functions or a GROUP BY clause ** or both */ NameContext sNC; /* Name context for processing aggregate information */ int iAMem; /* First Mem address for storing current GROUP BY */ int iBMem; /* First Mem address for previous GROUP BY */ int iUseFlag; /* Mem address holding flag indicating that at least ** one row of the input to the aggregator has been ** processed */ int iAbortFlag; /* Mem address which causes query abort if positive */ int groupBySort; /* Rows come from source in GROUP BY order */ int addrEnd; /* End of processing for this SELECT */ int sortPTab = 0; /* Pseudotable used to decode sorting results */ int sortOut = 0; /* Output register from the sorter */ int orderByGrp = 0; /* True if the GROUP BY and ORDER BY are the same */ /* Remove any and all aliases between the result set and the ** GROUP BY clause. */ if( pGroupBy ){ int k; /* Loop counter */ struct ExprList_item *pItem; /* For looping over expression in a list */ for(k=p->pEList->nExpr, pItem=p->pEList->a; k>0; k--, pItem++){ pItem->u.x.iAlias = 0; } for(k=pGroupBy->nExpr, pItem=pGroupBy->a; k>0; k--, pItem++){ pItem->u.x.iAlias = 0; } assert( 66==sqlite3LogEst(100) ); if( p->nSelectRow>66 ) p->nSelectRow = 66; /* If there is both a GROUP BY and an ORDER BY clause and they are ** identical, then it may be possible to disable the ORDER BY clause ** on the grounds that the GROUP BY will cause elements to come out ** in the correct order. It also may not - the GROUP BY might use a ** database index that causes rows to be grouped together as required ** but not actually sorted. Either way, record the fact that the ** ORDER BY and GROUP BY clauses are the same by setting the orderByGrp ** variable. */ if( sSort.pOrderBy && pGroupBy->nExpr==sSort.pOrderBy->nExpr ){ int ii; /* The GROUP BY processing doesn't care whether rows are delivered in ** ASC or DESC order - only that each group is returned contiguously. ** So set the ASC/DESC flags in the GROUP BY to match those in the ** ORDER BY to maximize the chances of rows being delivered in an ** order that makes the ORDER BY redundant. */ for(ii=0; iinExpr; ii++){ u8 sortFlags = sSort.pOrderBy->a[ii].sortFlags & KEYINFO_ORDER_DESC; pGroupBy->a[ii].sortFlags = sortFlags; } if( sqlite3ExprListCompare(pGroupBy, sSort.pOrderBy, -1)==0 ){ orderByGrp = 1; } } }else{ assert( 0==sqlite3LogEst(1) ); p->nSelectRow = 0; } /* Create a label to jump to when we want to abort the query */ addrEnd = sqlite3VdbeMakeLabel(pParse); /* Convert TK_COLUMN nodes into TK_AGG_COLUMN and make entries in ** sAggInfo for all TK_AGG_FUNCTION nodes in expressions of the ** SELECT statement. */ pAggInfo = sqlite3DbMallocZero(db, sizeof(*pAggInfo) ); if( pAggInfo==0 ){ goto select_end; } pAggInfo->pNext = pParse->pAggList; pParse->pAggList = pAggInfo; pAggInfo->selId = p->selId; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; sNC.pSrcList = pTabList; sNC.uNC.pAggInfo = pAggInfo; VVA_ONLY( sNC.ncFlags = NC_UAggInfo; ) pAggInfo->mnReg = pParse->nMem+1; pAggInfo->nSortingColumn = pGroupBy ? pGroupBy->nExpr : 0; pAggInfo->pGroupBy = pGroupBy; sqlite3ExprAnalyzeAggList(&sNC, pEList); sqlite3ExprAnalyzeAggList(&sNC, sSort.pOrderBy); if( pHaving ){ if( pGroupBy ){ assert( pWhere==p->pWhere ); assert( pHaving==p->pHaving ); assert( pGroupBy==p->pGroupBy ); havingToWhere(pParse, p); pWhere = p->pWhere; } sqlite3ExprAnalyzeAggregates(&sNC, pHaving); } pAggInfo->nAccumulator = pAggInfo->nColumn; if( p->pGroupBy==0 && p->pHaving==0 && pAggInfo->nFunc==1 ){ minMaxFlag = minMaxQuery(db, pAggInfo->aFunc[0].pFExpr, &pMinMaxOrderBy); }else{ minMaxFlag = WHERE_ORDERBY_NORMAL; } for(i=0; inFunc; i++){ Expr *pExpr = pAggInfo->aFunc[i].pFExpr; assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); sNC.ncFlags |= NC_InAggFunc; sqlite3ExprAnalyzeAggList(&sNC, pExpr->x.pList); #ifndef SQLITE_OMIT_WINDOWFUNC assert( !IsWindowFunc(pExpr) ); if( ExprHasProperty(pExpr, EP_WinFunc) ){ sqlite3ExprAnalyzeAggregates(&sNC, pExpr->y.pWin->pFilter); } #endif sNC.ncFlags &= ~NC_InAggFunc; } pAggInfo->mxReg = pParse->nMem; if( db->mallocFailed ) goto select_end; #if SELECTTRACE_ENABLED if( sqlite3_unsupported_selecttrace & 0x400 ){ int ii; SELECTTRACE(0x400,pParse,p,("After aggregate analysis %p:\n", pAggInfo)); sqlite3TreeViewSelect(0, p, 0); for(ii=0; iinColumn; ii++){ sqlite3DebugPrintf("agg-column[%d] iMem=%d\n", ii, pAggInfo->aCol[ii].iMem); sqlite3TreeViewExpr(0, pAggInfo->aCol[ii].pCExpr, 0); } for(ii=0; iinFunc; ii++){ sqlite3DebugPrintf("agg-func[%d]: iMem=%d\n", ii, pAggInfo->aFunc[ii].iMem); sqlite3TreeViewExpr(0, pAggInfo->aFunc[ii].pFExpr, 0); } } #endif /* Processing for aggregates with GROUP BY is very different and ** much more complex than aggregates without a GROUP BY. */ if( pGroupBy ){ KeyInfo *pKeyInfo; /* Keying information for the group by clause */ int addr1; /* A-vs-B comparision jump */ int addrOutputRow; /* Start of subroutine that outputs a result row */ int regOutputRow; /* Return address register for output subroutine */ int addrSetAbort; /* Set the abort flag and return */ int addrTopOfLoop; /* Top of the input loop */ int addrSortingIdx; /* The OP_OpenEphemeral for the sorting index */ int addrReset; /* Subroutine for resetting the accumulator */ int regReset; /* Return address register for reset subroutine */ /* If there is a GROUP BY clause we might need a sorting index to ** implement it. Allocate that sorting index now. If it turns out ** that we do not need it after all, the OP_SorterOpen instruction ** will be converted into a Noop. */ pAggInfo->sortingIdx = pParse->nTab++; pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pGroupBy, 0, pAggInfo->nColumn); addrSortingIdx = sqlite3VdbeAddOp4(v, OP_SorterOpen, pAggInfo->sortingIdx, pAggInfo->nSortingColumn, 0, (char*)pKeyInfo, P4_KEYINFO); /* Initialize memory locations used by GROUP BY aggregate processing */ iUseFlag = ++pParse->nMem; iAbortFlag = ++pParse->nMem; regOutputRow = ++pParse->nMem; addrOutputRow = sqlite3VdbeMakeLabel(pParse); regReset = ++pParse->nMem; addrReset = sqlite3VdbeMakeLabel(pParse); iAMem = pParse->nMem + 1; pParse->nMem += pGroupBy->nExpr; iBMem = pParse->nMem + 1; pParse->nMem += pGroupBy->nExpr; sqlite3VdbeAddOp2(v, OP_Integer, 0, iAbortFlag); VdbeComment((v, "clear abort flag")); sqlite3VdbeAddOp3(v, OP_Null, 0, iAMem, iAMem+pGroupBy->nExpr-1); /* Begin a loop that will extract all source rows in GROUP BY order. ** This might involve two separate loops with an OP_Sort in between, or ** it might be a single loop that uses an index to extract information ** in the right order to begin with. */ sqlite3VdbeAddOp2(v, OP_Gosub, regReset, addrReset); SELECTTRACE(1,pParse,p,("WhereBegin\n")); pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, pGroupBy, 0, WHERE_GROUPBY | (orderByGrp ? WHERE_SORTBYGROUP : 0), 0 ); if( pWInfo==0 ) goto select_end; if( sqlite3WhereIsOrdered(pWInfo)==pGroupBy->nExpr ){ /* The optimizer is able to deliver rows in group by order so ** we do not have to sort. The OP_OpenEphemeral table will be ** cancelled later because we still need to use the pKeyInfo */ groupBySort = 0; }else{ /* Rows are coming out in undetermined order. We have to push ** each row into a sorting index, terminate the first loop, ** then loop over the sorting index in order to get the output ** in sorted order */ int regBase; int regRecord; int nCol; int nGroupBy; explainTempTable(pParse, (sDistinct.isTnct && (p->selFlags&SF_Distinct)==0) ? "DISTINCT" : "GROUP BY"); groupBySort = 1; nGroupBy = pGroupBy->nExpr; nCol = nGroupBy; j = nGroupBy; for(i=0; inColumn; i++){ if( pAggInfo->aCol[i].iSorterColumn>=j ){ nCol++; j++; } } regBase = sqlite3GetTempRange(pParse, nCol); sqlite3ExprCodeExprList(pParse, pGroupBy, regBase, 0, 0); j = nGroupBy; for(i=0; inColumn; i++){ struct AggInfo_col *pCol = &pAggInfo->aCol[i]; if( pCol->iSorterColumn>=j ){ int r1 = j + regBase; sqlite3ExprCodeGetColumnOfTable(v, pCol->pTab, pCol->iTable, pCol->iColumn, r1); j++; } } regRecord = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nCol, regRecord); sqlite3VdbeAddOp2(v, OP_SorterInsert, pAggInfo->sortingIdx, regRecord); sqlite3ReleaseTempReg(pParse, regRecord); sqlite3ReleaseTempRange(pParse, regBase, nCol); sqlite3WhereEnd(pWInfo); pAggInfo->sortingIdxPTab = sortPTab = pParse->nTab++; sortOut = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_OpenPseudo, sortPTab, sortOut, nCol); sqlite3VdbeAddOp2(v, OP_SorterSort, pAggInfo->sortingIdx, addrEnd); VdbeComment((v, "GROUP BY sort")); VdbeCoverage(v); pAggInfo->useSortingIdx = 1; } /* If the index or temporary table used by the GROUP BY sort ** will naturally deliver rows in the order required by the ORDER BY ** clause, cancel the ephemeral table open coded earlier. ** ** This is an optimization - the correct answer should result regardless. ** Use the SQLITE_GroupByOrder flag with SQLITE_TESTCTRL_OPTIMIZER to ** disable this optimization for testing purposes. */ if( orderByGrp && OptimizationEnabled(db, SQLITE_GroupByOrder) && (groupBySort || sqlite3WhereIsSorted(pWInfo)) ){ sSort.pOrderBy = 0; sqlite3VdbeChangeToNoop(v, sSort.addrSortIndex); } /* Evaluate the current GROUP BY terms and store in b0, b1, b2... ** (b0 is memory location iBMem+0, b1 is iBMem+1, and so forth) ** Then compare the current GROUP BY terms against the GROUP BY terms ** from the previous row currently stored in a0, a1, a2... */ addrTopOfLoop = sqlite3VdbeCurrentAddr(v); if( groupBySort ){ sqlite3VdbeAddOp3(v, OP_SorterData, pAggInfo->sortingIdx, sortOut, sortPTab); } for(j=0; jnExpr; j++){ if( groupBySort ){ sqlite3VdbeAddOp3(v, OP_Column, sortPTab, j, iBMem+j); }else{ pAggInfo->directMode = 1; sqlite3ExprCode(pParse, pGroupBy->a[j].pExpr, iBMem+j); } } sqlite3VdbeAddOp4(v, OP_Compare, iAMem, iBMem, pGroupBy->nExpr, (char*)sqlite3KeyInfoRef(pKeyInfo), P4_KEYINFO); addr1 = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp3(v, OP_Jump, addr1+1, 0, addr1+1); VdbeCoverage(v); /* Generate code that runs whenever the GROUP BY changes. ** Changes in the GROUP BY are detected by the previous code ** block. If there were no changes, this block is skipped. ** ** This code copies current group by terms in b0,b1,b2,... ** over to a0,a1,a2. It then calls the output subroutine ** and resets the aggregate accumulator registers in preparation ** for the next GROUP BY batch. */ sqlite3ExprCodeMove(pParse, iBMem, iAMem, pGroupBy->nExpr); sqlite3VdbeAddOp2(v, OP_Gosub, regOutputRow, addrOutputRow); VdbeComment((v, "output one row")); sqlite3VdbeAddOp2(v, OP_IfPos, iAbortFlag, addrEnd); VdbeCoverage(v); VdbeComment((v, "check abort flag")); sqlite3VdbeAddOp2(v, OP_Gosub, regReset, addrReset); VdbeComment((v, "reset accumulator")); /* Update the aggregate accumulators based on the content of ** the current row */ sqlite3VdbeJumpHere(v, addr1); updateAccumulator(pParse, iUseFlag, pAggInfo); sqlite3VdbeAddOp2(v, OP_Integer, 1, iUseFlag); VdbeComment((v, "indicate data in accumulator")); /* End of the loop */ if( groupBySort ){ sqlite3VdbeAddOp2(v, OP_SorterNext, pAggInfo->sortingIdx, addrTopOfLoop); VdbeCoverage(v); }else{ sqlite3WhereEnd(pWInfo); sqlite3VdbeChangeToNoop(v, addrSortingIdx); } /* Output the final row of result */ sqlite3VdbeAddOp2(v, OP_Gosub, regOutputRow, addrOutputRow); VdbeComment((v, "output final row")); /* Jump over the subroutines */ sqlite3VdbeGoto(v, addrEnd); /* Generate a subroutine that outputs a single row of the result ** set. This subroutine first looks at the iUseFlag. If iUseFlag ** is less than or equal to zero, the subroutine is a no-op. If ** the processing calls for the query to abort, this subroutine ** increments the iAbortFlag memory location before returning in ** order to signal the caller to abort. */ addrSetAbort = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp2(v, OP_Integer, 1, iAbortFlag); VdbeComment((v, "set abort flag")); sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); sqlite3VdbeResolveLabel(v, addrOutputRow); addrOutputRow = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp2(v, OP_IfPos, iUseFlag, addrOutputRow+2); VdbeCoverage(v); VdbeComment((v, "Groupby result generator entry point")); sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); finalizeAggFunctions(pParse, pAggInfo); sqlite3ExprIfFalse(pParse, pHaving, addrOutputRow+1, SQLITE_JUMPIFNULL); selectInnerLoop(pParse, p, -1, &sSort, &sDistinct, pDest, addrOutputRow+1, addrSetAbort); sqlite3VdbeAddOp1(v, OP_Return, regOutputRow); VdbeComment((v, "end groupby result generator")); /* Generate a subroutine that will reset the group-by accumulator */ sqlite3VdbeResolveLabel(v, addrReset); resetAccumulator(pParse, pAggInfo); sqlite3VdbeAddOp2(v, OP_Integer, 0, iUseFlag); VdbeComment((v, "indicate accumulator empty")); sqlite3VdbeAddOp1(v, OP_Return, regReset); } /* endif pGroupBy. Begin aggregate queries without GROUP BY: */ else { Table *pTab; if( (pTab = isSimpleCount(p, pAggInfo))!=0 ){ /* If isSimpleCount() returns a pointer to a Table structure, then ** the SQL statement is of the form: ** ** SELECT count(*) FROM ** ** where the Table structure returned represents table . ** ** This statement is so common that it is optimized specially. The ** OP_Count instruction is executed either on the intkey table that ** contains the data for table or on one of its indexes. It ** is better to execute the op on an index, as indexes are almost ** always spread across less pages than their corresponding tables. */ const int iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); const int iCsr = pParse->nTab++; /* Cursor to scan b-tree */ Index *pIdx; /* Iterator variable */ KeyInfo *pKeyInfo = 0; /* Keyinfo for scanned index */ Index *pBest = 0; /* Best index found so far */ Pgno iRoot = pTab->tnum; /* Root page of scanned b-tree */ sqlite3CodeVerifySchema(pParse, iDb); sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); /* Search for the index that has the lowest scan cost. ** ** (2011-04-15) Do not do a full scan of an unordered index. ** ** (2013-10-03) Do not count the entries in a partial index. ** ** In practice the KeyInfo structure will not be used. It is only ** passed to keep OP_OpenRead happy. */ if( !HasRowid(pTab) ) pBest = sqlite3PrimaryKeyIndex(pTab); if( !p->pSrc->a[0].fg.notIndexed ){ for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ if( pIdx->bUnordered==0 && pIdx->szIdxRowszTabRow && pIdx->pPartIdxWhere==0 && (!pBest || pIdx->szIdxRowszIdxRow) ){ pBest = pIdx; } } } if( pBest ){ iRoot = pBest->tnum; pKeyInfo = sqlite3KeyInfoOfIndex(pParse, pBest); } /* Open a read-only cursor, execute the OP_Count, close the cursor. */ sqlite3VdbeAddOp4Int(v, OP_OpenRead, iCsr, (int)iRoot, iDb, 1); if( pKeyInfo ){ sqlite3VdbeChangeP4(v, -1, (char *)pKeyInfo, P4_KEYINFO); } sqlite3VdbeAddOp2(v, OP_Count, iCsr, pAggInfo->aFunc[0].iMem); sqlite3VdbeAddOp1(v, OP_Close, iCsr); explainSimpleCount(pParse, pTab, pBest); }else{ int regAcc = 0; /* "populate accumulators" flag */ int addrSkip; /* If there are accumulator registers but no min() or max() functions ** without FILTER clauses, allocate register regAcc. Register regAcc ** will contain 0 the first time the inner loop runs, and 1 thereafter. ** The code generated by updateAccumulator() uses this to ensure ** that the accumulator registers are (a) updated only once if ** there are no min() or max functions or (b) always updated for the ** first row visited by the aggregate, so that they are updated at ** least once even if the FILTER clause means the min() or max() ** function visits zero rows. */ if( pAggInfo->nAccumulator ){ for(i=0; inFunc; i++){ if( ExprHasProperty(pAggInfo->aFunc[i].pFExpr, EP_WinFunc) ){ continue; } if( pAggInfo->aFunc[i].pFunc->funcFlags&SQLITE_FUNC_NEEDCOLL ){ break; } } if( i==pAggInfo->nFunc ){ regAcc = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, regAcc); } } /* This case runs if the aggregate has no GROUP BY clause. The ** processing is much simpler since there is only a single row ** of output. */ assert( p->pGroupBy==0 ); resetAccumulator(pParse, pAggInfo); /* If this query is a candidate for the min/max optimization, then ** minMaxFlag will have been previously set to either ** WHERE_ORDERBY_MIN or WHERE_ORDERBY_MAX and pMinMaxOrderBy will ** be an appropriate ORDER BY expression for the optimization. */ assert( minMaxFlag==WHERE_ORDERBY_NORMAL || pMinMaxOrderBy!=0 ); assert( pMinMaxOrderBy==0 || pMinMaxOrderBy->nExpr==1 ); SELECTTRACE(1,pParse,p,("WhereBegin\n")); pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, pMinMaxOrderBy, 0, minMaxFlag, 0); if( pWInfo==0 ){ goto select_end; } updateAccumulator(pParse, regAcc, pAggInfo); if( regAcc ) sqlite3VdbeAddOp2(v, OP_Integer, 1, regAcc); addrSkip = sqlite3WhereOrderByLimitOptLabel(pWInfo); if( addrSkip!=sqlite3WhereContinueLabel(pWInfo) ){ sqlite3VdbeGoto(v, addrSkip); } sqlite3WhereEnd(pWInfo); finalizeAggFunctions(pParse, pAggInfo); } sSort.pOrderBy = 0; sqlite3ExprIfFalse(pParse, pHaving, addrEnd, SQLITE_JUMPIFNULL); selectInnerLoop(pParse, p, -1, 0, 0, pDest, addrEnd, addrEnd); } sqlite3VdbeResolveLabel(v, addrEnd); } /* endif aggregate query */ if( sDistinct.eTnctType==WHERE_DISTINCT_UNORDERED ){ explainTempTable(pParse, "DISTINCT"); } /* If there is an ORDER BY clause, then we need to sort the results ** and send them to the callback one by one. */ if( sSort.pOrderBy ){ explainTempTable(pParse, sSort.nOBSat>0 ? "RIGHT PART OF ORDER BY":"ORDER BY"); assert( p->pEList==pEList ); generateSortTail(pParse, p, &sSort, pEList->nExpr, pDest); } /* Jump here to skip this query */ sqlite3VdbeResolveLabel(v, iEnd); /* The SELECT has been coded. If there is an error in the Parse structure, ** set the return code to 1. Otherwise 0. */ rc = (pParse->nErr>0); /* Control jumps to here if an error is encountered above, or upon ** successful coding of the SELECT. */ select_end: sqlite3ExprListDelete(db, pMinMaxOrderBy); #ifdef SQLITE_DEBUG if( pAggInfo && !db->mallocFailed ){ for(i=0; inColumn; i++){ Expr *pExpr = pAggInfo->aCol[i].pCExpr; assert( pExpr!=0 || db->mallocFailed ); if( pExpr==0 ) continue; assert( pExpr->pAggInfo==pAggInfo ); assert( pExpr->iAgg==i ); } for(i=0; inFunc; i++){ Expr *pExpr = pAggInfo->aFunc[i].pFExpr; assert( pExpr!=0 || db->mallocFailed ); if( pExpr==0 ) continue; assert( pExpr->pAggInfo==pAggInfo ); assert( pExpr->iAgg==i ); } } #endif #if SELECTTRACE_ENABLED SELECTTRACE(0x1,pParse,p,("end processing\n")); if( (sqlite3_unsupported_selecttrace & 0x2000)!=0 && ExplainQueryPlanParent(pParse)==0 ){ sqlite3TreeViewSelect(0, p, 0); } #endif ExplainQueryPlanPop(pParse); return rc; } /************** End of select.c **********************************************/ /************** Begin file table.c *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains the sqlite3_get_table() and sqlite3_free_table() ** interface routines. These are just wrappers around the main ** interface routine of sqlite3_exec(). ** ** These routines are in a separate files so that they will not be linked ** if they are not used. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_GET_TABLE /* ** This structure is used to pass data from sqlite3_get_table() through ** to the callback function is uses to build the result. */ typedef struct TabResult { char **azResult; /* Accumulated output */ char *zErrMsg; /* Error message text, if an error occurs */ u32 nAlloc; /* Slots allocated for azResult[] */ u32 nRow; /* Number of rows in the result */ u32 nColumn; /* Number of columns in the result */ u32 nData; /* Slots used in azResult[]. (nRow+1)*nColumn */ int rc; /* Return code from sqlite3_exec() */ } TabResult; /* ** This routine is called once for each row in the result table. Its job ** is to fill in the TabResult structure appropriately, allocating new ** memory as necessary. */ static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){ TabResult *p = (TabResult*)pArg; /* Result accumulator */ int need; /* Slots needed in p->azResult[] */ int i; /* Loop counter */ char *z; /* A single column of result */ /* Make sure there is enough space in p->azResult to hold everything ** we need to remember from this invocation of the callback. */ if( p->nRow==0 && argv!=0 ){ need = nCol*2; }else{ need = nCol; } if( p->nData + need > p->nAlloc ){ char **azNew; p->nAlloc = p->nAlloc*2 + need; azNew = sqlite3Realloc( p->azResult, sizeof(char*)*p->nAlloc ); if( azNew==0 ) goto malloc_failed; p->azResult = azNew; } /* If this is the first row, then generate an extra row containing ** the names of all columns. */ if( p->nRow==0 ){ p->nColumn = nCol; for(i=0; iazResult[p->nData++] = z; } }else if( (int)p->nColumn!=nCol ){ sqlite3_free(p->zErrMsg); p->zErrMsg = sqlite3_mprintf( "sqlite3_get_table() called with two or more incompatible queries" ); p->rc = SQLITE_ERROR; return 1; } /* Copy over the row data */ if( argv!=0 ){ for(i=0; iazResult[p->nData++] = z; } p->nRow++; } return 0; malloc_failed: p->rc = SQLITE_NOMEM_BKPT; return 1; } /* ** Query the database. But instead of invoking a callback for each row, ** malloc() for space to hold the result and return the entire results ** at the conclusion of the call. ** ** The result that is written to ***pazResult is held in memory obtained ** from malloc(). But the caller cannot free this memory directly. ** Instead, the entire table should be passed to sqlite3_free_table() when ** the calling procedure is finished using it. */ SQLITE_API int sqlite3_get_table( sqlite3 *db, /* The database on which the SQL executes */ const char *zSql, /* The SQL to be executed */ char ***pazResult, /* Write the result table here */ int *pnRow, /* Write the number of rows in the result here */ int *pnColumn, /* Write the number of columns of result here */ char **pzErrMsg /* Write error messages here */ ){ int rc; TabResult res; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || pazResult==0 ) return SQLITE_MISUSE_BKPT; #endif *pazResult = 0; if( pnColumn ) *pnColumn = 0; if( pnRow ) *pnRow = 0; if( pzErrMsg ) *pzErrMsg = 0; res.zErrMsg = 0; res.nRow = 0; res.nColumn = 0; res.nData = 1; res.nAlloc = 20; res.rc = SQLITE_OK; res.azResult = sqlite3_malloc64(sizeof(char*)*res.nAlloc ); if( res.azResult==0 ){ db->errCode = SQLITE_NOMEM; return SQLITE_NOMEM_BKPT; } res.azResult[0] = 0; rc = sqlite3_exec(db, zSql, sqlite3_get_table_cb, &res, pzErrMsg); assert( sizeof(res.azResult[0])>= sizeof(res.nData) ); res.azResult[0] = SQLITE_INT_TO_PTR(res.nData); if( (rc&0xff)==SQLITE_ABORT ){ sqlite3_free_table(&res.azResult[1]); if( res.zErrMsg ){ if( pzErrMsg ){ sqlite3_free(*pzErrMsg); *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg); } sqlite3_free(res.zErrMsg); } db->errCode = res.rc; /* Assume 32-bit assignment is atomic */ return res.rc; } sqlite3_free(res.zErrMsg); if( rc!=SQLITE_OK ){ sqlite3_free_table(&res.azResult[1]); return rc; } if( res.nAlloc>res.nData ){ char **azNew; azNew = sqlite3Realloc( res.azResult, sizeof(char*)*res.nData ); if( azNew==0 ){ sqlite3_free_table(&res.azResult[1]); db->errCode = SQLITE_NOMEM; return SQLITE_NOMEM_BKPT; } res.azResult = azNew; } *pazResult = &res.azResult[1]; if( pnColumn ) *pnColumn = res.nColumn; if( pnRow ) *pnRow = res.nRow; return rc; } /* ** This routine frees the space the sqlite3_get_table() malloced. */ SQLITE_API void sqlite3_free_table( char **azResult /* Result returned from sqlite3_get_table() */ ){ if( azResult ){ int i, n; azResult--; assert( azResult!=0 ); n = SQLITE_PTR_TO_INT(azResult[0]); for(i=1; ipNext; sqlite3ExprDelete(db, pTmp->pWhere); sqlite3ExprListDelete(db, pTmp->pExprList); sqlite3SelectDelete(db, pTmp->pSelect); sqlite3IdListDelete(db, pTmp->pIdList); sqlite3UpsertDelete(db, pTmp->pUpsert); sqlite3SrcListDelete(db, pTmp->pFrom); sqlite3DbFree(db, pTmp->zSpan); sqlite3DbFree(db, pTmp); } } /* ** Given table pTab, return a list of all the triggers attached to ** the table. The list is connected by Trigger.pNext pointers. ** ** All of the triggers on pTab that are in the same database as pTab ** are already attached to pTab->pTrigger. But there might be additional ** triggers on pTab in the TEMP schema. This routine prepends all ** TEMP triggers on pTab to the beginning of the pTab->pTrigger list ** and returns the combined list. ** ** To state it another way: This routine returns a list of all triggers ** that fire off of pTab. The list will include any TEMP triggers on ** pTab as well as the triggers lised in pTab->pTrigger. */ SQLITE_PRIVATE Trigger *sqlite3TriggerList(Parse *pParse, Table *pTab){ Schema * const pTmpSchema = pParse->db->aDb[1].pSchema; Trigger *pList = 0; /* List of triggers to return */ if( pParse->disableTriggers ){ return 0; } if( pTmpSchema!=pTab->pSchema ){ HashElem *p; assert( sqlite3SchemaMutexHeld(pParse->db, 0, pTmpSchema) ); for(p=sqliteHashFirst(&pTmpSchema->trigHash); p; p=sqliteHashNext(p)){ Trigger *pTrig = (Trigger *)sqliteHashData(p); if( pTrig->pTabSchema==pTab->pSchema && 0==sqlite3StrICmp(pTrig->table, pTab->zName) ){ pTrig->pNext = (pList ? pList : pTab->pTrigger); pList = pTrig; } } } return (pList ? pList : pTab->pTrigger); } /* ** This is called by the parser when it sees a CREATE TRIGGER statement ** up to the point of the BEGIN before the trigger actions. A Trigger ** structure is generated based on the information available and stored ** in pParse->pNewTrigger. After the trigger actions have been parsed, the ** sqlite3FinishTrigger() function is called to complete the trigger ** construction process. */ SQLITE_PRIVATE void sqlite3BeginTrigger( Parse *pParse, /* The parse context of the CREATE TRIGGER statement */ Token *pName1, /* The name of the trigger */ Token *pName2, /* The name of the trigger */ int tr_tm, /* One of TK_BEFORE, TK_AFTER, TK_INSTEAD */ int op, /* One of TK_INSERT, TK_UPDATE, TK_DELETE */ IdList *pColumns, /* column list if this is an UPDATE OF trigger */ SrcList *pTableName,/* The name of the table/view the trigger applies to */ Expr *pWhen, /* WHEN clause */ int isTemp, /* True if the TEMPORARY keyword is present */ int noErr /* Suppress errors if the trigger already exists */ ){ Trigger *pTrigger = 0; /* The new trigger */ Table *pTab; /* Table that the trigger fires off of */ char *zName = 0; /* Name of the trigger */ sqlite3 *db = pParse->db; /* The database connection */ int iDb; /* The database to store the trigger in */ Token *pName; /* The unqualified db name */ DbFixer sFix; /* State vector for the DB fixer */ assert( pName1!=0 ); /* pName1->z might be NULL, but not pName1 itself */ assert( pName2!=0 ); assert( op==TK_INSERT || op==TK_UPDATE || op==TK_DELETE ); assert( op>0 && op<0xff ); if( isTemp ){ /* If TEMP was specified, then the trigger name may not be qualified. */ if( pName2->n>0 ){ sqlite3ErrorMsg(pParse, "temporary trigger may not have qualified name"); goto trigger_cleanup; } iDb = 1; pName = pName1; }else{ /* Figure out the db that the trigger will be created in */ iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName); if( iDb<0 ){ goto trigger_cleanup; } } if( !pTableName || db->mallocFailed ){ goto trigger_cleanup; } /* A long-standing parser bug is that this syntax was allowed: ** ** CREATE TRIGGER attached.demo AFTER INSERT ON attached.tab .... ** ^^^^^^^^ ** ** To maintain backwards compatibility, ignore the database ** name on pTableName if we are reparsing out of the schema table */ if( db->init.busy && iDb!=1 ){ sqlite3DbFree(db, pTableName->a[0].zDatabase); pTableName->a[0].zDatabase = 0; } /* If the trigger name was unqualified, and the table is a temp table, ** then set iDb to 1 to create the trigger in the temporary database. ** If sqlite3SrcListLookup() returns 0, indicating the table does not ** exist, the error is caught by the block below. */ pTab = sqlite3SrcListLookup(pParse, pTableName); if( db->init.busy==0 && pName2->n==0 && pTab && pTab->pSchema==db->aDb[1].pSchema ){ iDb = 1; } /* Ensure the table name matches database name and that the table exists */ if( db->mallocFailed ) goto trigger_cleanup; assert( pTableName->nSrc==1 ); sqlite3FixInit(&sFix, pParse, iDb, "trigger", pName); if( sqlite3FixSrcList(&sFix, pTableName) ){ goto trigger_cleanup; } pTab = sqlite3SrcListLookup(pParse, pTableName); if( !pTab ){ /* The table does not exist. */ if( db->init.iDb==1 ){ /* Ticket #3810. ** Normally, whenever a table is dropped, all associated triggers are ** dropped too. But if a TEMP trigger is created on a non-TEMP table ** and the table is dropped by a different database connection, the ** trigger is not visible to the database connection that does the ** drop so the trigger cannot be dropped. This results in an ** "orphaned trigger" - a trigger whose associated table is missing. */ db->init.orphanTrigger = 1; } goto trigger_cleanup; } if( IsVirtual(pTab) ){ sqlite3ErrorMsg(pParse, "cannot create triggers on virtual tables"); goto trigger_cleanup; } /* Check that the trigger name is not reserved and that no trigger of the ** specified name exists */ zName = sqlite3NameFromToken(db, pName); if( zName==0 ){ assert( db->mallocFailed ); goto trigger_cleanup; } if( sqlite3CheckObjectName(pParse, zName, "trigger", pTab->zName) ){ goto trigger_cleanup; } assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); if( !IN_RENAME_OBJECT ){ if( sqlite3HashFind(&(db->aDb[iDb].pSchema->trigHash),zName) ){ if( !noErr ){ sqlite3ErrorMsg(pParse, "trigger %T already exists", pName); }else{ assert( !db->init.busy ); sqlite3CodeVerifySchema(pParse, iDb); } goto trigger_cleanup; } } /* Do not create a trigger on a system table */ if( sqlite3StrNICmp(pTab->zName, "sqlite_", 7)==0 ){ sqlite3ErrorMsg(pParse, "cannot create trigger on system table"); goto trigger_cleanup; } /* INSTEAD of triggers are only for views and views only support INSTEAD ** of triggers. */ if( pTab->pSelect && tr_tm!=TK_INSTEAD ){ sqlite3ErrorMsg(pParse, "cannot create %s trigger on view: %S", (tr_tm == TK_BEFORE)?"BEFORE":"AFTER", pTableName, 0); goto trigger_cleanup; } if( !pTab->pSelect && tr_tm==TK_INSTEAD ){ sqlite3ErrorMsg(pParse, "cannot create INSTEAD OF" " trigger on table: %S", pTableName, 0); goto trigger_cleanup; } #ifndef SQLITE_OMIT_AUTHORIZATION if( !IN_RENAME_OBJECT ){ int iTabDb = sqlite3SchemaToIndex(db, pTab->pSchema); int code = SQLITE_CREATE_TRIGGER; const char *zDb = db->aDb[iTabDb].zDbSName; const char *zDbTrig = isTemp ? db->aDb[1].zDbSName : zDb; if( iTabDb==1 || isTemp ) code = SQLITE_CREATE_TEMP_TRIGGER; if( sqlite3AuthCheck(pParse, code, zName, pTab->zName, zDbTrig) ){ goto trigger_cleanup; } if( sqlite3AuthCheck(pParse, SQLITE_INSERT, SCHEMA_TABLE(iTabDb),0,zDb)){ goto trigger_cleanup; } } #endif /* INSTEAD OF triggers can only appear on views and BEFORE triggers ** cannot appear on views. So we might as well translate every ** INSTEAD OF trigger into a BEFORE trigger. It simplifies code ** elsewhere. */ if (tr_tm == TK_INSTEAD){ tr_tm = TK_BEFORE; } /* Build the Trigger object */ pTrigger = (Trigger*)sqlite3DbMallocZero(db, sizeof(Trigger)); if( pTrigger==0 ) goto trigger_cleanup; pTrigger->zName = zName; zName = 0; pTrigger->table = sqlite3DbStrDup(db, pTableName->a[0].zName); pTrigger->pSchema = db->aDb[iDb].pSchema; pTrigger->pTabSchema = pTab->pSchema; pTrigger->op = (u8)op; pTrigger->tr_tm = tr_tm==TK_BEFORE ? TRIGGER_BEFORE : TRIGGER_AFTER; if( IN_RENAME_OBJECT ){ sqlite3RenameTokenRemap(pParse, pTrigger->table, pTableName->a[0].zName); pTrigger->pWhen = pWhen; pWhen = 0; }else{ pTrigger->pWhen = sqlite3ExprDup(db, pWhen, EXPRDUP_REDUCE); } pTrigger->pColumns = pColumns; pColumns = 0; assert( pParse->pNewTrigger==0 ); pParse->pNewTrigger = pTrigger; trigger_cleanup: sqlite3DbFree(db, zName); sqlite3SrcListDelete(db, pTableName); sqlite3IdListDelete(db, pColumns); sqlite3ExprDelete(db, pWhen); if( !pParse->pNewTrigger ){ sqlite3DeleteTrigger(db, pTrigger); }else{ assert( pParse->pNewTrigger==pTrigger ); } } /* ** This routine is called after all of the trigger actions have been parsed ** in order to complete the process of building the trigger. */ SQLITE_PRIVATE void sqlite3FinishTrigger( Parse *pParse, /* Parser context */ TriggerStep *pStepList, /* The triggered program */ Token *pAll /* Token that describes the complete CREATE TRIGGER */ ){ Trigger *pTrig = pParse->pNewTrigger; /* Trigger being finished */ char *zName; /* Name of trigger */ sqlite3 *db = pParse->db; /* The database */ DbFixer sFix; /* Fixer object */ int iDb; /* Database containing the trigger */ Token nameToken; /* Trigger name for error reporting */ pParse->pNewTrigger = 0; if( NEVER(pParse->nErr) || !pTrig ) goto triggerfinish_cleanup; zName = pTrig->zName; iDb = sqlite3SchemaToIndex(pParse->db, pTrig->pSchema); pTrig->step_list = pStepList; while( pStepList ){ pStepList->pTrig = pTrig; pStepList = pStepList->pNext; } sqlite3TokenInit(&nameToken, pTrig->zName); sqlite3FixInit(&sFix, pParse, iDb, "trigger", &nameToken); if( sqlite3FixTriggerStep(&sFix, pTrig->step_list) || sqlite3FixExpr(&sFix, pTrig->pWhen) ){ goto triggerfinish_cleanup; } #ifndef SQLITE_OMIT_ALTERTABLE if( IN_RENAME_OBJECT ){ assert( !db->init.busy ); pParse->pNewTrigger = pTrig; pTrig = 0; }else #endif /* if we are not initializing, ** build the sqlite_schema entry */ if( !db->init.busy ){ Vdbe *v; char *z; /* Make an entry in the sqlite_schema table */ v = sqlite3GetVdbe(pParse); if( v==0 ) goto triggerfinish_cleanup; sqlite3BeginWriteOperation(pParse, 0, iDb); z = sqlite3DbStrNDup(db, (char*)pAll->z, pAll->n); testcase( z==0 ); sqlite3NestedParse(pParse, "INSERT INTO %Q." DFLT_SCHEMA_TABLE " VALUES('trigger',%Q,%Q,0,'CREATE TRIGGER %q')", db->aDb[iDb].zDbSName, zName, pTrig->table, z); sqlite3DbFree(db, z); sqlite3ChangeCookie(pParse, iDb); sqlite3VdbeAddParseSchemaOp(v, iDb, sqlite3MPrintf(db, "type='trigger' AND name='%q'", zName)); } if( db->init.busy ){ Trigger *pLink = pTrig; Hash *pHash = &db->aDb[iDb].pSchema->trigHash; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); assert( pLink!=0 ); pTrig = sqlite3HashInsert(pHash, zName, pTrig); if( pTrig ){ sqlite3OomFault(db); }else if( pLink->pSchema==pLink->pTabSchema ){ Table *pTab; pTab = sqlite3HashFind(&pLink->pTabSchema->tblHash, pLink->table); assert( pTab!=0 ); pLink->pNext = pTab->pTrigger; pTab->pTrigger = pLink; } } triggerfinish_cleanup: sqlite3DeleteTrigger(db, pTrig); assert( IN_RENAME_OBJECT || !pParse->pNewTrigger ); sqlite3DeleteTriggerStep(db, pStepList); } /* ** Duplicate a range of text from an SQL statement, then convert all ** whitespace characters into ordinary space characters. */ static char *triggerSpanDup(sqlite3 *db, const char *zStart, const char *zEnd){ char *z = sqlite3DbSpanDup(db, zStart, zEnd); int i; if( z ) for(i=0; z[i]; i++) if( sqlite3Isspace(z[i]) ) z[i] = ' '; return z; } /* ** Turn a SELECT statement (that the pSelect parameter points to) into ** a trigger step. Return a pointer to a TriggerStep structure. ** ** The parser calls this routine when it finds a SELECT statement in ** body of a TRIGGER. */ SQLITE_PRIVATE TriggerStep *sqlite3TriggerSelectStep( sqlite3 *db, /* Database connection */ Select *pSelect, /* The SELECT statement */ const char *zStart, /* Start of SQL text */ const char *zEnd /* End of SQL text */ ){ TriggerStep *pTriggerStep = sqlite3DbMallocZero(db, sizeof(TriggerStep)); if( pTriggerStep==0 ) { sqlite3SelectDelete(db, pSelect); return 0; } pTriggerStep->op = TK_SELECT; pTriggerStep->pSelect = pSelect; pTriggerStep->orconf = OE_Default; pTriggerStep->zSpan = triggerSpanDup(db, zStart, zEnd); return pTriggerStep; } /* ** Allocate space to hold a new trigger step. The allocated space ** holds both the TriggerStep object and the TriggerStep.target.z string. ** ** If an OOM error occurs, NULL is returned and db->mallocFailed is set. */ static TriggerStep *triggerStepAllocate( Parse *pParse, /* Parser context */ u8 op, /* Trigger opcode */ Token *pName, /* The target name */ const char *zStart, /* Start of SQL text */ const char *zEnd /* End of SQL text */ ){ sqlite3 *db = pParse->db; TriggerStep *pTriggerStep; pTriggerStep = sqlite3DbMallocZero(db, sizeof(TriggerStep) + pName->n + 1); if( pTriggerStep ){ char *z = (char*)&pTriggerStep[1]; memcpy(z, pName->z, pName->n); sqlite3Dequote(z); pTriggerStep->zTarget = z; pTriggerStep->op = op; pTriggerStep->zSpan = triggerSpanDup(db, zStart, zEnd); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenMap(pParse, pTriggerStep->zTarget, pName); } } return pTriggerStep; } /* ** Build a trigger step out of an INSERT statement. Return a pointer ** to the new trigger step. ** ** The parser calls this routine when it sees an INSERT inside the ** body of a trigger. */ SQLITE_PRIVATE TriggerStep *sqlite3TriggerInsertStep( Parse *pParse, /* Parser */ Token *pTableName, /* Name of the table into which we insert */ IdList *pColumn, /* List of columns in pTableName to insert into */ Select *pSelect, /* A SELECT statement that supplies values */ u8 orconf, /* The conflict algorithm (OE_Abort, OE_Replace, etc.) */ Upsert *pUpsert, /* ON CONFLICT clauses for upsert */ const char *zStart, /* Start of SQL text */ const char *zEnd /* End of SQL text */ ){ sqlite3 *db = pParse->db; TriggerStep *pTriggerStep; assert(pSelect != 0 || db->mallocFailed); pTriggerStep = triggerStepAllocate(pParse, TK_INSERT, pTableName,zStart,zEnd); if( pTriggerStep ){ if( IN_RENAME_OBJECT ){ pTriggerStep->pSelect = pSelect; pSelect = 0; }else{ pTriggerStep->pSelect = sqlite3SelectDup(db, pSelect, EXPRDUP_REDUCE); } pTriggerStep->pIdList = pColumn; pTriggerStep->pUpsert = pUpsert; pTriggerStep->orconf = orconf; if( pUpsert ){ sqlite3HasExplicitNulls(pParse, pUpsert->pUpsertTarget); } }else{ testcase( pColumn ); sqlite3IdListDelete(db, pColumn); testcase( pUpsert ); sqlite3UpsertDelete(db, pUpsert); } sqlite3SelectDelete(db, pSelect); return pTriggerStep; } /* ** Construct a trigger step that implements an UPDATE statement and return ** a pointer to that trigger step. The parser calls this routine when it ** sees an UPDATE statement inside the body of a CREATE TRIGGER. */ SQLITE_PRIVATE TriggerStep *sqlite3TriggerUpdateStep( Parse *pParse, /* Parser */ Token *pTableName, /* Name of the table to be updated */ SrcList *pFrom, ExprList *pEList, /* The SET clause: list of column and new values */ Expr *pWhere, /* The WHERE clause */ u8 orconf, /* The conflict algorithm. (OE_Abort, OE_Ignore, etc) */ const char *zStart, /* Start of SQL text */ const char *zEnd /* End of SQL text */ ){ sqlite3 *db = pParse->db; TriggerStep *pTriggerStep; pTriggerStep = triggerStepAllocate(pParse, TK_UPDATE, pTableName,zStart,zEnd); if( pTriggerStep ){ if( IN_RENAME_OBJECT ){ pTriggerStep->pExprList = pEList; pTriggerStep->pWhere = pWhere; pTriggerStep->pFrom = pFrom; pEList = 0; pWhere = 0; pFrom = 0; }else{ pTriggerStep->pExprList = sqlite3ExprListDup(db, pEList, EXPRDUP_REDUCE); pTriggerStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE); pTriggerStep->pFrom = sqlite3SrcListDup(db, pFrom, EXPRDUP_REDUCE); } pTriggerStep->orconf = orconf; } sqlite3ExprListDelete(db, pEList); sqlite3ExprDelete(db, pWhere); sqlite3SrcListDelete(db, pFrom); return pTriggerStep; } /* ** Construct a trigger step that implements a DELETE statement and return ** a pointer to that trigger step. The parser calls this routine when it ** sees a DELETE statement inside the body of a CREATE TRIGGER. */ SQLITE_PRIVATE TriggerStep *sqlite3TriggerDeleteStep( Parse *pParse, /* Parser */ Token *pTableName, /* The table from which rows are deleted */ Expr *pWhere, /* The WHERE clause */ const char *zStart, /* Start of SQL text */ const char *zEnd /* End of SQL text */ ){ sqlite3 *db = pParse->db; TriggerStep *pTriggerStep; pTriggerStep = triggerStepAllocate(pParse, TK_DELETE, pTableName,zStart,zEnd); if( pTriggerStep ){ if( IN_RENAME_OBJECT ){ pTriggerStep->pWhere = pWhere; pWhere = 0; }else{ pTriggerStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE); } pTriggerStep->orconf = OE_Default; } sqlite3ExprDelete(db, pWhere); return pTriggerStep; } /* ** Recursively delete a Trigger structure */ SQLITE_PRIVATE void sqlite3DeleteTrigger(sqlite3 *db, Trigger *pTrigger){ if( pTrigger==0 ) return; sqlite3DeleteTriggerStep(db, pTrigger->step_list); sqlite3DbFree(db, pTrigger->zName); sqlite3DbFree(db, pTrigger->table); sqlite3ExprDelete(db, pTrigger->pWhen); sqlite3IdListDelete(db, pTrigger->pColumns); sqlite3DbFree(db, pTrigger); } /* ** This function is called to drop a trigger from the database schema. ** ** This may be called directly from the parser and therefore identifies ** the trigger by name. The sqlite3DropTriggerPtr() routine does the ** same job as this routine except it takes a pointer to the trigger ** instead of the trigger name. **/ SQLITE_PRIVATE void sqlite3DropTrigger(Parse *pParse, SrcList *pName, int noErr){ Trigger *pTrigger = 0; int i; const char *zDb; const char *zName; sqlite3 *db = pParse->db; if( db->mallocFailed ) goto drop_trigger_cleanup; if( SQLITE_OK!=sqlite3ReadSchema(pParse) ){ goto drop_trigger_cleanup; } assert( pName->nSrc==1 ); zDb = pName->a[0].zDatabase; zName = pName->a[0].zName; assert( zDb!=0 || sqlite3BtreeHoldsAllMutexes(db) ); for(i=OMIT_TEMPDB; inDb; i++){ int j = (i<2) ? i^1 : i; /* Search TEMP before MAIN */ if( zDb && sqlite3DbIsNamed(db, j, zDb)==0 ) continue; assert( sqlite3SchemaMutexHeld(db, j, 0) ); pTrigger = sqlite3HashFind(&(db->aDb[j].pSchema->trigHash), zName); if( pTrigger ) break; } if( !pTrigger ){ if( !noErr ){ sqlite3ErrorMsg(pParse, "no such trigger: %S", pName, 0); }else{ sqlite3CodeVerifyNamedSchema(pParse, zDb); } pParse->checkSchema = 1; goto drop_trigger_cleanup; } sqlite3DropTriggerPtr(pParse, pTrigger); drop_trigger_cleanup: sqlite3SrcListDelete(db, pName); } /* ** Return a pointer to the Table structure for the table that a trigger ** is set on. */ static Table *tableOfTrigger(Trigger *pTrigger){ return sqlite3HashFind(&pTrigger->pTabSchema->tblHash, pTrigger->table); } /* ** Drop a trigger given a pointer to that trigger. */ SQLITE_PRIVATE void sqlite3DropTriggerPtr(Parse *pParse, Trigger *pTrigger){ Table *pTable; Vdbe *v; sqlite3 *db = pParse->db; int iDb; iDb = sqlite3SchemaToIndex(pParse->db, pTrigger->pSchema); assert( iDb>=0 && iDbnDb ); pTable = tableOfTrigger(pTrigger); assert( (pTable && pTable->pSchema==pTrigger->pSchema) || iDb==1 ); #ifndef SQLITE_OMIT_AUTHORIZATION if( pTable ){ int code = SQLITE_DROP_TRIGGER; const char *zDb = db->aDb[iDb].zDbSName; const char *zTab = SCHEMA_TABLE(iDb); if( iDb==1 ) code = SQLITE_DROP_TEMP_TRIGGER; if( sqlite3AuthCheck(pParse, code, pTrigger->zName, pTable->zName, zDb) || sqlite3AuthCheck(pParse, SQLITE_DELETE, zTab, 0, zDb) ){ return; } } #endif /* Generate code to destroy the database record of the trigger. */ if( (v = sqlite3GetVdbe(pParse))!=0 ){ sqlite3NestedParse(pParse, "DELETE FROM %Q." DFLT_SCHEMA_TABLE " WHERE name=%Q AND type='trigger'", db->aDb[iDb].zDbSName, pTrigger->zName ); sqlite3ChangeCookie(pParse, iDb); sqlite3VdbeAddOp4(v, OP_DropTrigger, iDb, 0, 0, pTrigger->zName, 0); } } /* ** Remove a trigger from the hash tables of the sqlite* pointer. */ SQLITE_PRIVATE void sqlite3UnlinkAndDeleteTrigger(sqlite3 *db, int iDb, const char *zName){ Trigger *pTrigger; Hash *pHash; assert( sqlite3SchemaMutexHeld(db, iDb, 0) ); pHash = &(db->aDb[iDb].pSchema->trigHash); pTrigger = sqlite3HashInsert(pHash, zName, 0); if( ALWAYS(pTrigger) ){ if( pTrigger->pSchema==pTrigger->pTabSchema ){ Table *pTab = tableOfTrigger(pTrigger); if( pTab ){ Trigger **pp; for(pp=&pTab->pTrigger; *pp; pp=&((*pp)->pNext)){ if( *pp==pTrigger ){ *pp = (*pp)->pNext; break; } } } } sqlite3DeleteTrigger(db, pTrigger); db->mDbFlags |= DBFLAG_SchemaChange; } } /* ** pEList is the SET clause of an UPDATE statement. Each entry ** in pEList is of the format =. If any of the entries ** in pEList have an which matches an identifier in pIdList, ** then return TRUE. If pIdList==NULL, then it is considered a ** wildcard that matches anything. Likewise if pEList==NULL then ** it matches anything so always return true. Return false only ** if there is no match. */ static int checkColumnOverlap(IdList *pIdList, ExprList *pEList){ int e; if( pIdList==0 || NEVER(pEList==0) ) return 1; for(e=0; enExpr; e++){ if( sqlite3IdListIndex(pIdList, pEList->a[e].zEName)>=0 ) return 1; } return 0; } /* ** Return a list of all triggers on table pTab if there exists at least ** one trigger that must be fired when an operation of type 'op' is ** performed on the table, and, if that operation is an UPDATE, if at ** least one of the columns in pChanges is being modified. */ SQLITE_PRIVATE Trigger *sqlite3TriggersExist( Parse *pParse, /* Parse context */ Table *pTab, /* The table the contains the triggers */ int op, /* one of TK_DELETE, TK_INSERT, TK_UPDATE */ ExprList *pChanges, /* Columns that change in an UPDATE statement */ int *pMask /* OUT: Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ ){ int mask = 0; Trigger *pList = 0; Trigger *p; if( (pParse->db->flags & SQLITE_EnableTrigger)!=0 ){ pList = sqlite3TriggerList(pParse, pTab); } assert( pList==0 || IsVirtual(pTab)==0 ); for(p=pList; p; p=p->pNext){ if( p->op==op && checkColumnOverlap(p->pColumns, pChanges) ){ mask |= p->tr_tm; } } if( pMask ){ *pMask = mask; } return (mask ? pList : 0); } /* ** Convert the pStep->zTarget string into a SrcList and return a pointer ** to that SrcList. ** ** This routine adds a specific database name, if needed, to the target when ** forming the SrcList. This prevents a trigger in one database from ** referring to a target in another database. An exception is when the ** trigger is in TEMP in which case it can refer to any other database it ** wants. */ SQLITE_PRIVATE SrcList *sqlite3TriggerStepSrc( Parse *pParse, /* The parsing context */ TriggerStep *pStep /* The trigger containing the target token */ ){ sqlite3 *db = pParse->db; SrcList *pSrc; /* SrcList to be returned */ char *zName = sqlite3DbStrDup(db, pStep->zTarget); pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0); assert( pSrc==0 || pSrc->nSrc==1 ); assert( zName || pSrc==0 ); if( pSrc ){ Schema *pSchema = pStep->pTrig->pSchema; pSrc->a[0].zName = zName; if( pSchema!=db->aDb[1].pSchema ){ pSrc->a[0].pSchema = pSchema; } if( pStep->pFrom ){ SrcList *pDup = sqlite3SrcListDup(db, pStep->pFrom, 0); pSrc = sqlite3SrcListAppendList(pParse, pSrc, pDup); } }else{ sqlite3DbFree(db, zName); } return pSrc; } /* ** Generate VDBE code for the statements inside the body of a single ** trigger. */ static int codeTriggerProgram( Parse *pParse, /* The parser context */ TriggerStep *pStepList, /* List of statements inside the trigger body */ int orconf /* Conflict algorithm. (OE_Abort, etc) */ ){ TriggerStep *pStep; Vdbe *v = pParse->pVdbe; sqlite3 *db = pParse->db; assert( pParse->pTriggerTab && pParse->pToplevel ); assert( pStepList ); assert( v!=0 ); for(pStep=pStepList; pStep; pStep=pStep->pNext){ /* Figure out the ON CONFLICT policy that will be used for this step ** of the trigger program. If the statement that caused this trigger ** to fire had an explicit ON CONFLICT, then use it. Otherwise, use ** the ON CONFLICT policy that was specified as part of the trigger ** step statement. Example: ** ** CREATE TRIGGER AFTER INSERT ON t1 BEGIN; ** INSERT OR REPLACE INTO t2 VALUES(new.a, new.b); ** END; ** ** INSERT INTO t1 ... ; -- insert into t2 uses REPLACE policy ** INSERT OR IGNORE INTO t1 ... ; -- insert into t2 uses IGNORE policy */ pParse->eOrconf = (orconf==OE_Default)?pStep->orconf:(u8)orconf; assert( pParse->okConstFactor==0 ); #ifndef SQLITE_OMIT_TRACE if( pStep->zSpan ){ sqlite3VdbeAddOp4(v, OP_Trace, 0x7fffffff, 1, 0, sqlite3MPrintf(db, "-- %s", pStep->zSpan), P4_DYNAMIC); } #endif switch( pStep->op ){ case TK_UPDATE: { sqlite3Update(pParse, sqlite3TriggerStepSrc(pParse, pStep), sqlite3ExprListDup(db, pStep->pExprList, 0), sqlite3ExprDup(db, pStep->pWhere, 0), pParse->eOrconf, 0, 0, 0 ); break; } case TK_INSERT: { sqlite3Insert(pParse, sqlite3TriggerStepSrc(pParse, pStep), sqlite3SelectDup(db, pStep->pSelect, 0), sqlite3IdListDup(db, pStep->pIdList), pParse->eOrconf, sqlite3UpsertDup(db, pStep->pUpsert) ); break; } case TK_DELETE: { sqlite3DeleteFrom(pParse, sqlite3TriggerStepSrc(pParse, pStep), sqlite3ExprDup(db, pStep->pWhere, 0), 0, 0 ); break; } default: assert( pStep->op==TK_SELECT ); { SelectDest sDest; Select *pSelect = sqlite3SelectDup(db, pStep->pSelect, 0); sqlite3SelectDestInit(&sDest, SRT_Discard, 0); sqlite3Select(pParse, pSelect, &sDest); sqlite3SelectDelete(db, pSelect); break; } } if( pStep->op!=TK_SELECT ){ sqlite3VdbeAddOp0(v, OP_ResetCount); } } return 0; } #ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS /* ** This function is used to add VdbeComment() annotations to a VDBE ** program. It is not used in production code, only for debugging. */ static const char *onErrorText(int onError){ switch( onError ){ case OE_Abort: return "abort"; case OE_Rollback: return "rollback"; case OE_Fail: return "fail"; case OE_Replace: return "replace"; case OE_Ignore: return "ignore"; case OE_Default: return "default"; } return "n/a"; } #endif /* ** Parse context structure pFrom has just been used to create a sub-vdbe ** (trigger program). If an error has occurred, transfer error information ** from pFrom to pTo. */ static void transferParseError(Parse *pTo, Parse *pFrom){ assert( pFrom->zErrMsg==0 || pFrom->nErr ); assert( pTo->zErrMsg==0 || pTo->nErr ); if( pTo->nErr==0 ){ pTo->zErrMsg = pFrom->zErrMsg; pTo->nErr = pFrom->nErr; pTo->rc = pFrom->rc; }else{ sqlite3DbFree(pFrom->db, pFrom->zErrMsg); } } /* ** Create and populate a new TriggerPrg object with a sub-program ** implementing trigger pTrigger with ON CONFLICT policy orconf. */ static TriggerPrg *codeRowTrigger( Parse *pParse, /* Current parse context */ Trigger *pTrigger, /* Trigger to code */ Table *pTab, /* The table pTrigger is attached to */ int orconf /* ON CONFLICT policy to code trigger program with */ ){ Parse *pTop = sqlite3ParseToplevel(pParse); sqlite3 *db = pParse->db; /* Database handle */ TriggerPrg *pPrg; /* Value to return */ Expr *pWhen = 0; /* Duplicate of trigger WHEN expression */ Vdbe *v; /* Temporary VM */ NameContext sNC; /* Name context for sub-vdbe */ SubProgram *pProgram = 0; /* Sub-vdbe for trigger program */ Parse *pSubParse; /* Parse context for sub-vdbe */ int iEndTrigger = 0; /* Label to jump to if WHEN is false */ assert( pTrigger->zName==0 || pTab==tableOfTrigger(pTrigger) ); assert( pTop->pVdbe ); /* Allocate the TriggerPrg and SubProgram objects. To ensure that they ** are freed if an error occurs, link them into the Parse.pTriggerPrg ** list of the top-level Parse object sooner rather than later. */ pPrg = sqlite3DbMallocZero(db, sizeof(TriggerPrg)); if( !pPrg ) return 0; pPrg->pNext = pTop->pTriggerPrg; pTop->pTriggerPrg = pPrg; pPrg->pProgram = pProgram = sqlite3DbMallocZero(db, sizeof(SubProgram)); if( !pProgram ) return 0; sqlite3VdbeLinkSubProgram(pTop->pVdbe, pProgram); pPrg->pTrigger = pTrigger; pPrg->orconf = orconf; pPrg->aColmask[0] = 0xffffffff; pPrg->aColmask[1] = 0xffffffff; /* Allocate and populate a new Parse context to use for coding the ** trigger sub-program. */ pSubParse = sqlite3StackAllocZero(db, sizeof(Parse)); if( !pSubParse ) return 0; memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pSubParse; pSubParse->db = db; pSubParse->pTriggerTab = pTab; pSubParse->pToplevel = pTop; pSubParse->zAuthContext = pTrigger->zName; pSubParse->eTriggerOp = pTrigger->op; pSubParse->nQueryLoop = pParse->nQueryLoop; pSubParse->disableVtab = pParse->disableVtab; v = sqlite3GetVdbe(pSubParse); if( v ){ VdbeComment((v, "Start: %s.%s (%s %s%s%s ON %s)", pTrigger->zName, onErrorText(orconf), (pTrigger->tr_tm==TRIGGER_BEFORE ? "BEFORE" : "AFTER"), (pTrigger->op==TK_UPDATE ? "UPDATE" : ""), (pTrigger->op==TK_INSERT ? "INSERT" : ""), (pTrigger->op==TK_DELETE ? "DELETE" : ""), pTab->zName )); #ifndef SQLITE_OMIT_TRACE if( pTrigger->zName ){ sqlite3VdbeChangeP4(v, -1, sqlite3MPrintf(db, "-- TRIGGER %s", pTrigger->zName), P4_DYNAMIC ); } #endif /* If one was specified, code the WHEN clause. If it evaluates to false ** (or NULL) the sub-vdbe is immediately halted by jumping to the ** OP_Halt inserted at the end of the program. */ if( pTrigger->pWhen ){ pWhen = sqlite3ExprDup(db, pTrigger->pWhen, 0); if( SQLITE_OK==sqlite3ResolveExprNames(&sNC, pWhen) && db->mallocFailed==0 ){ iEndTrigger = sqlite3VdbeMakeLabel(pSubParse); sqlite3ExprIfFalse(pSubParse, pWhen, iEndTrigger, SQLITE_JUMPIFNULL); } sqlite3ExprDelete(db, pWhen); } /* Code the trigger program into the sub-vdbe. */ codeTriggerProgram(pSubParse, pTrigger->step_list, orconf); /* Insert an OP_Halt at the end of the sub-program. */ if( iEndTrigger ){ sqlite3VdbeResolveLabel(v, iEndTrigger); } sqlite3VdbeAddOp0(v, OP_Halt); VdbeComment((v, "End: %s.%s", pTrigger->zName, onErrorText(orconf))); transferParseError(pParse, pSubParse); if( db->mallocFailed==0 && pParse->nErr==0 ){ pProgram->aOp = sqlite3VdbeTakeOpArray(v, &pProgram->nOp, &pTop->nMaxArg); } pProgram->nMem = pSubParse->nMem; pProgram->nCsr = pSubParse->nTab; pProgram->token = (void *)pTrigger; pPrg->aColmask[0] = pSubParse->oldmask; pPrg->aColmask[1] = pSubParse->newmask; sqlite3VdbeDelete(v); } assert( !pSubParse->pAinc && !pSubParse->pZombieTab ); assert( !pSubParse->pTriggerPrg && !pSubParse->nMaxArg ); sqlite3ParserReset(pSubParse); sqlite3StackFree(db, pSubParse); return pPrg; } /* ** Return a pointer to a TriggerPrg object containing the sub-program for ** trigger pTrigger with default ON CONFLICT algorithm orconf. If no such ** TriggerPrg object exists, a new object is allocated and populated before ** being returned. */ static TriggerPrg *getRowTrigger( Parse *pParse, /* Current parse context */ Trigger *pTrigger, /* Trigger to code */ Table *pTab, /* The table trigger pTrigger is attached to */ int orconf /* ON CONFLICT algorithm. */ ){ Parse *pRoot = sqlite3ParseToplevel(pParse); TriggerPrg *pPrg; assert( pTrigger->zName==0 || pTab==tableOfTrigger(pTrigger) ); /* It may be that this trigger has already been coded (or is in the ** process of being coded). If this is the case, then an entry with ** a matching TriggerPrg.pTrigger field will be present somewhere ** in the Parse.pTriggerPrg list. Search for such an entry. */ for(pPrg=pRoot->pTriggerPrg; pPrg && (pPrg->pTrigger!=pTrigger || pPrg->orconf!=orconf); pPrg=pPrg->pNext ); /* If an existing TriggerPrg could not be located, create a new one. */ if( !pPrg ){ pPrg = codeRowTrigger(pParse, pTrigger, pTab, orconf); } return pPrg; } /* ** Generate code for the trigger program associated with trigger p on ** table pTab. The reg, orconf and ignoreJump parameters passed to this ** function are the same as those described in the header function for ** sqlite3CodeRowTrigger() */ SQLITE_PRIVATE void sqlite3CodeRowTriggerDirect( Parse *pParse, /* Parse context */ Trigger *p, /* Trigger to code */ Table *pTab, /* The table to code triggers from */ int reg, /* Reg array containing OLD.* and NEW.* values */ int orconf, /* ON CONFLICT policy */ int ignoreJump /* Instruction to jump to for RAISE(IGNORE) */ ){ Vdbe *v = sqlite3GetVdbe(pParse); /* Main VM */ TriggerPrg *pPrg; pPrg = getRowTrigger(pParse, p, pTab, orconf); assert( pPrg || pParse->nErr || pParse->db->mallocFailed ); /* Code the OP_Program opcode in the parent VDBE. P4 of the OP_Program ** is a pointer to the sub-vdbe containing the trigger program. */ if( pPrg ){ int bRecursive = (p->zName && 0==(pParse->db->flags&SQLITE_RecTriggers)); sqlite3VdbeAddOp4(v, OP_Program, reg, ignoreJump, ++pParse->nMem, (const char *)pPrg->pProgram, P4_SUBPROGRAM); VdbeComment( (v, "Call: %s.%s", (p->zName?p->zName:"fkey"), onErrorText(orconf))); /* Set the P5 operand of the OP_Program instruction to non-zero if ** recursive invocation of this trigger program is disallowed. Recursive ** invocation is disallowed if (a) the sub-program is really a trigger, ** not a foreign key action, and (b) the flag to enable recursive triggers ** is clear. */ sqlite3VdbeChangeP5(v, (u8)bRecursive); } } /* ** This is called to code the required FOR EACH ROW triggers for an operation ** on table pTab. The operation to code triggers for (INSERT, UPDATE or DELETE) ** is given by the op parameter. The tr_tm parameter determines whether the ** BEFORE or AFTER triggers are coded. If the operation is an UPDATE, then ** parameter pChanges is passed the list of columns being modified. ** ** If there are no triggers that fire at the specified time for the specified ** operation on pTab, this function is a no-op. ** ** The reg argument is the address of the first in an array of registers ** that contain the values substituted for the new.* and old.* references ** in the trigger program. If N is the number of columns in table pTab ** (a copy of pTab->nCol), then registers are populated as follows: ** ** Register Contains ** ------------------------------------------------------ ** reg+0 OLD.rowid ** reg+1 OLD.* value of left-most column of pTab ** ... ... ** reg+N OLD.* value of right-most column of pTab ** reg+N+1 NEW.rowid ** reg+N+2 OLD.* value of left-most column of pTab ** ... ... ** reg+N+N+1 NEW.* value of right-most column of pTab ** ** For ON DELETE triggers, the registers containing the NEW.* values will ** never be accessed by the trigger program, so they are not allocated or ** populated by the caller (there is no data to populate them with anyway). ** Similarly, for ON INSERT triggers the values stored in the OLD.* registers ** are never accessed, and so are not allocated by the caller. So, for an ** ON INSERT trigger, the value passed to this function as parameter reg ** is not a readable register, although registers (reg+N) through ** (reg+N+N+1) are. ** ** Parameter orconf is the default conflict resolution algorithm for the ** trigger program to use (REPLACE, IGNORE etc.). Parameter ignoreJump ** is the instruction that control should jump to if a trigger program ** raises an IGNORE exception. */ SQLITE_PRIVATE void sqlite3CodeRowTrigger( Parse *pParse, /* Parse context */ Trigger *pTrigger, /* List of triggers on table pTab */ int op, /* One of TK_UPDATE, TK_INSERT, TK_DELETE */ ExprList *pChanges, /* Changes list for any UPDATE OF triggers */ int tr_tm, /* One of TRIGGER_BEFORE, TRIGGER_AFTER */ Table *pTab, /* The table to code triggers from */ int reg, /* The first in an array of registers (see above) */ int orconf, /* ON CONFLICT policy */ int ignoreJump /* Instruction to jump to for RAISE(IGNORE) */ ){ Trigger *p; /* Used to iterate through pTrigger list */ assert( op==TK_UPDATE || op==TK_INSERT || op==TK_DELETE ); assert( tr_tm==TRIGGER_BEFORE || tr_tm==TRIGGER_AFTER ); assert( (op==TK_UPDATE)==(pChanges!=0) ); for(p=pTrigger; p; p=p->pNext){ /* Sanity checking: The schema for the trigger and for the table are ** always defined. The trigger must be in the same schema as the table ** or else it must be a TEMP trigger. */ assert( p->pSchema!=0 ); assert( p->pTabSchema!=0 ); assert( p->pSchema==p->pTabSchema || p->pSchema==pParse->db->aDb[1].pSchema ); /* Determine whether we should code this trigger */ if( p->op==op && p->tr_tm==tr_tm && checkColumnOverlap(p->pColumns, pChanges) ){ sqlite3CodeRowTriggerDirect(pParse, p, pTab, reg, orconf, ignoreJump); } } } /* ** Triggers may access values stored in the old.* or new.* pseudo-table. ** This function returns a 32-bit bitmask indicating which columns of the ** old.* or new.* tables actually are used by triggers. This information ** may be used by the caller, for example, to avoid having to load the entire ** old.* record into memory when executing an UPDATE or DELETE command. ** ** Bit 0 of the returned mask is set if the left-most column of the ** table may be accessed using an [old|new].reference. Bit 1 is set if ** the second leftmost column value is required, and so on. If there ** are more than 32 columns in the table, and at least one of the columns ** with an index greater than 32 may be accessed, 0xffffffff is returned. ** ** It is not possible to determine if the old.rowid or new.rowid column is ** accessed by triggers. The caller must always assume that it is. ** ** Parameter isNew must be either 1 or 0. If it is 0, then the mask returned ** applies to the old.* table. If 1, the new.* table. ** ** Parameter tr_tm must be a mask with one or both of the TRIGGER_BEFORE ** and TRIGGER_AFTER bits set. Values accessed by BEFORE triggers are only ** included in the returned mask if the TRIGGER_BEFORE bit is set in the ** tr_tm parameter. Similarly, values accessed by AFTER triggers are only ** included in the returned mask if the TRIGGER_AFTER bit is set in tr_tm. */ SQLITE_PRIVATE u32 sqlite3TriggerColmask( Parse *pParse, /* Parse context */ Trigger *pTrigger, /* List of triggers on table pTab */ ExprList *pChanges, /* Changes list for any UPDATE OF triggers */ int isNew, /* 1 for new.* ref mask, 0 for old.* ref mask */ int tr_tm, /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ Table *pTab, /* The table to code triggers from */ int orconf /* Default ON CONFLICT policy for trigger steps */ ){ const int op = pChanges ? TK_UPDATE : TK_DELETE; u32 mask = 0; Trigger *p; assert( isNew==1 || isNew==0 ); for(p=pTrigger; p; p=p->pNext){ if( p->op==op && (tr_tm&p->tr_tm) && checkColumnOverlap(p->pColumns,pChanges) ){ TriggerPrg *pPrg; pPrg = getRowTrigger(pParse, p, pTab, orconf); if( pPrg ){ mask |= pPrg->aColmask[isNew]; } } } return mask; } #endif /* !defined(SQLITE_OMIT_TRIGGER) */ /************** End of trigger.c *********************************************/ /************** Begin file update.c ******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains C code routines that are called by the parser ** to handle UPDATE statements. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Forward declaration */ static void updateVirtualTable( Parse *pParse, /* The parsing context */ SrcList *pSrc, /* The virtual table to be modified */ Table *pTab, /* The virtual table */ ExprList *pChanges, /* The columns to change in the UPDATE statement */ Expr *pRowidExpr, /* Expression used to recompute the rowid */ int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ Expr *pWhere, /* WHERE clause of the UPDATE statement */ int onError /* ON CONFLICT strategy */ ); #endif /* SQLITE_OMIT_VIRTUALTABLE */ /* ** The most recently coded instruction was an OP_Column to retrieve the ** i-th column of table pTab. This routine sets the P4 parameter of the ** OP_Column to the default value, if any. ** ** The default value of a column is specified by a DEFAULT clause in the ** column definition. This was either supplied by the user when the table ** was created, or added later to the table definition by an ALTER TABLE ** command. If the latter, then the row-records in the table btree on disk ** may not contain a value for the column and the default value, taken ** from the P4 parameter of the OP_Column instruction, is returned instead. ** If the former, then all row-records are guaranteed to include a value ** for the column and the P4 value is not required. ** ** Column definitions created by an ALTER TABLE command may only have ** literal default values specified: a number, null or a string. (If a more ** complicated default expression value was provided, it is evaluated ** when the ALTER TABLE is executed and one of the literal values written ** into the sqlite_schema table.) ** ** Therefore, the P4 parameter is only required if the default value for ** the column is a literal number, string or null. The sqlite3ValueFromExpr() ** function is capable of transforming these types of expressions into ** sqlite3_value objects. ** ** If column as REAL affinity and the table is an ordinary b-tree table ** (not a virtual table) then the value might have been stored as an ** integer. In that case, add an OP_RealAffinity opcode to make sure ** it has been converted into REAL. */ SQLITE_PRIVATE void sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg){ assert( pTab!=0 ); if( !pTab->pSelect ){ sqlite3_value *pValue = 0; u8 enc = ENC(sqlite3VdbeDb(v)); Column *pCol = &pTab->aCol[i]; VdbeComment((v, "%s.%s", pTab->zName, pCol->zName)); assert( inCol ); sqlite3ValueFromExpr(sqlite3VdbeDb(v), pCol->pDflt, enc, pCol->affinity, &pValue); if( pValue ){ sqlite3VdbeAppendP4(v, pValue, P4_MEM); } } #ifndef SQLITE_OMIT_FLOATING_POINT if( pTab->aCol[i].affinity==SQLITE_AFF_REAL && !IsVirtual(pTab) ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, iReg); } #endif } /* ** Check to see if column iCol of index pIdx references any of the ** columns defined by aXRef and chngRowid. Return true if it does ** and false if not. This is an optimization. False-positives are a ** performance degradation, but false-negatives can result in a corrupt ** index and incorrect answers. ** ** aXRef[j] will be non-negative if column j of the original table is ** being updated. chngRowid will be true if the rowid of the table is ** being updated. */ static int indexColumnIsBeingUpdated( Index *pIdx, /* The index to check */ int iCol, /* Which column of the index to check */ int *aXRef, /* aXRef[j]>=0 if column j is being updated */ int chngRowid /* true if the rowid is being updated */ ){ i16 iIdxCol = pIdx->aiColumn[iCol]; assert( iIdxCol!=XN_ROWID ); /* Cannot index rowid */ if( iIdxCol>=0 ){ return aXRef[iIdxCol]>=0; } assert( iIdxCol==XN_EXPR ); assert( pIdx->aColExpr!=0 ); assert( pIdx->aColExpr->a[iCol].pExpr!=0 ); return sqlite3ExprReferencesUpdatedColumn(pIdx->aColExpr->a[iCol].pExpr, aXRef,chngRowid); } /* ** Check to see if index pIdx is a partial index whose conditional ** expression might change values due to an UPDATE. Return true if ** the index is subject to change and false if the index is guaranteed ** to be unchanged. This is an optimization. False-positives are a ** performance degradation, but false-negatives can result in a corrupt ** index and incorrect answers. ** ** aXRef[j] will be non-negative if column j of the original table is ** being updated. chngRowid will be true if the rowid of the table is ** being updated. */ static int indexWhereClauseMightChange( Index *pIdx, /* The index to check */ int *aXRef, /* aXRef[j]>=0 if column j is being updated */ int chngRowid /* true if the rowid is being updated */ ){ if( pIdx->pPartIdxWhere==0 ) return 0; return sqlite3ExprReferencesUpdatedColumn(pIdx->pPartIdxWhere, aXRef, chngRowid); } /* ** Allocate and return a pointer to an expression of type TK_ROW with ** Expr.iColumn set to value (iCol+1). The resolver will modify the ** expression to be a TK_COLUMN reading column iCol of the first ** table in the source-list (pSrc->a[0]). */ static Expr *exprRowColumn(Parse *pParse, int iCol){ Expr *pRet = sqlite3PExpr(pParse, TK_ROW, 0, 0); if( pRet ) pRet->iColumn = iCol+1; return pRet; } /* ** Assuming both the pLimit and pOrderBy parameters are NULL, this function ** generates VM code to run the query: ** ** SELECT , pChanges FROM pTabList WHERE pWhere ** ** and write the results to the ephemeral table already opened as cursor ** iEph. None of pChanges, pTabList or pWhere are modified or consumed by ** this function, they must be deleted by the caller. ** ** Or, if pLimit and pOrderBy are not NULL, and pTab is not a view: ** ** SELECT , pChanges FROM pTabList ** WHERE pWhere ** GROUP BY ** ORDER BY pOrderBy LIMIT pLimit ** ** If pTab is a view, the GROUP BY clause is omitted. ** ** Exactly how results are written to table iEph, and exactly what ** the in the query above are is determined by the type ** of table pTabList->a[0].pTab. ** ** If the table is a WITHOUT ROWID table, then argument pPk must be its ** PRIMARY KEY. In this case are the primary key columns ** of the table, in order. The results of the query are written to ephemeral ** table iEph as index keys, using OP_IdxInsert. ** ** If the table is actually a view, then are all columns of ** the view. The results are written to the ephemeral table iEph as records ** with automatically assigned integer keys. ** ** If the table is a virtual or ordinary intkey table, then ** is its rowid. For a virtual table, the results are written to iEph as ** records with automatically assigned integer keys For intkey tables, the ** rowid value in is used as the integer key, and the ** remaining fields make up the table record. */ static void updateFromSelect( Parse *pParse, /* Parse context */ int iEph, /* Cursor for open eph. table */ Index *pPk, /* PK if table 0 is WITHOUT ROWID */ ExprList *pChanges, /* List of expressions to return */ SrcList *pTabList, /* List of tables to select from */ Expr *pWhere, /* WHERE clause for query */ ExprList *pOrderBy, /* ORDER BY clause */ Expr *pLimit /* LIMIT clause */ ){ int i; SelectDest dest; Select *pSelect = 0; ExprList *pList = 0; ExprList *pGrp = 0; Expr *pLimit2 = 0; ExprList *pOrderBy2 = 0; sqlite3 *db = pParse->db; Table *pTab = pTabList->a[0].pTab; SrcList *pSrc; Expr *pWhere2; int eDest; #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT if( pOrderBy && pLimit==0 ) { sqlite3ErrorMsg(pParse, "ORDER BY without LIMIT on UPDATE"); return; } pOrderBy2 = sqlite3ExprListDup(db, pOrderBy, 0); pLimit2 = sqlite3ExprDup(db, pLimit, 0); #else UNUSED_PARAMETER(pOrderBy); UNUSED_PARAMETER(pLimit); #endif pSrc = sqlite3SrcListDup(db, pTabList, 0); pWhere2 = sqlite3ExprDup(db, pWhere, 0); assert( pTabList->nSrc>1 ); if( pSrc ){ pSrc->a[0].iCursor = -1; pSrc->a[0].pTab->nTabRef--; pSrc->a[0].pTab = 0; } if( pPk ){ for(i=0; inKeyCol; i++){ Expr *pNew = exprRowColumn(pParse, pPk->aiColumn[i]); #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT if( pLimit ){ pGrp = sqlite3ExprListAppend(pParse, pGrp, sqlite3ExprDup(db, pNew, 0)); } #endif pList = sqlite3ExprListAppend(pParse, pList, pNew); } eDest = SRT_Upfrom; }else if( pTab->pSelect ){ for(i=0; inCol; i++){ pList = sqlite3ExprListAppend(pParse, pList, exprRowColumn(pParse, i)); } eDest = SRT_Table; }else{ eDest = IsVirtual(pTab) ? SRT_Table : SRT_Upfrom; pList = sqlite3ExprListAppend(pParse, 0, sqlite3PExpr(pParse,TK_ROW,0,0)); #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT if( pLimit ){ pGrp = sqlite3ExprListAppend(pParse, 0, sqlite3PExpr(pParse,TK_ROW,0,0)); } #endif } if( ALWAYS(pChanges) ){ for(i=0; inExpr; i++){ pList = sqlite3ExprListAppend(pParse, pList, sqlite3ExprDup(db, pChanges->a[i].pExpr, 0) ); } } pSelect = sqlite3SelectNew(pParse, pList, pSrc, pWhere2, pGrp, 0, pOrderBy2, SF_UpdateFrom|SF_IncludeHidden, pLimit2 ); sqlite3SelectDestInit(&dest, eDest, iEph); dest.iSDParm2 = (pPk ? pPk->nKeyCol : -1); sqlite3Select(pParse, pSelect, &dest); sqlite3SelectDelete(db, pSelect); } /* ** Process an UPDATE statement. ** ** UPDATE OR IGNORE tbl SET a=b, c=d FROM tbl2... WHERE e<5 AND f NOT NULL; ** \_______/ \_/ \______/ \_____/ \________________/ ** onError | pChanges | pWhere ** \_______________________/ ** pTabList */ SQLITE_PRIVATE void sqlite3Update( Parse *pParse, /* The parser context */ SrcList *pTabList, /* The table in which we should change things */ ExprList *pChanges, /* Things to be changed */ Expr *pWhere, /* The WHERE clause. May be null */ int onError, /* How to handle constraint errors */ ExprList *pOrderBy, /* ORDER BY clause. May be null */ Expr *pLimit, /* LIMIT clause. May be null */ Upsert *pUpsert /* ON CONFLICT clause, or null */ ){ int i, j, k; /* Loop counters */ Table *pTab; /* The table to be updated */ int addrTop = 0; /* VDBE instruction address of the start of the loop */ WhereInfo *pWInfo = 0; /* Information about the WHERE clause */ Vdbe *v; /* The virtual database engine */ Index *pIdx; /* For looping over indices */ Index *pPk; /* The PRIMARY KEY index for WITHOUT ROWID tables */ int nIdx; /* Number of indices that need updating */ int nAllIdx; /* Total number of indexes */ int iBaseCur; /* Base cursor number */ int iDataCur; /* Cursor for the canonical data btree */ int iIdxCur; /* Cursor for the first index */ sqlite3 *db; /* The database structure */ int *aRegIdx = 0; /* Registers for to each index and the main table */ int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the ** an expression for the i-th column of the table. ** aXRef[i]==-1 if the i-th column is not changed. */ u8 *aToOpen; /* 1 for tables and indices to be opened */ u8 chngPk; /* PRIMARY KEY changed in a WITHOUT ROWID table */ u8 chngRowid; /* Rowid changed in a normal table */ u8 chngKey; /* Either chngPk or chngRowid */ Expr *pRowidExpr = 0; /* Expression defining the new record number */ int iRowidExpr = -1; /* Index of "rowid=" (or IPK) assignment in pChanges */ AuthContext sContext; /* The authorization context */ NameContext sNC; /* The name-context to resolve expressions in */ int iDb; /* Database containing the table being updated */ int eOnePass; /* ONEPASS_XXX value from where.c */ int hasFK; /* True if foreign key processing is required */ int labelBreak; /* Jump here to break out of UPDATE loop */ int labelContinue; /* Jump here to continue next step of UPDATE loop */ int flags; /* Flags for sqlite3WhereBegin() */ #ifndef SQLITE_OMIT_TRIGGER int isView; /* True when updating a view (INSTEAD OF trigger) */ Trigger *pTrigger; /* List of triggers on pTab, if required */ int tmask; /* Mask of TRIGGER_BEFORE|TRIGGER_AFTER */ #endif int newmask; /* Mask of NEW.* columns accessed by BEFORE triggers */ int iEph = 0; /* Ephemeral table holding all primary key values */ int nKey = 0; /* Number of elements in regKey for WITHOUT ROWID */ int aiCurOnePass[2]; /* The write cursors opened by WHERE_ONEPASS */ int addrOpen = 0; /* Address of OP_OpenEphemeral */ int iPk = 0; /* First of nPk cells holding PRIMARY KEY value */ i16 nPk = 0; /* Number of components of the PRIMARY KEY */ int bReplace = 0; /* True if REPLACE conflict resolution might happen */ int bFinishSeek = 1; /* The OP_FinishSeek opcode is needed */ int nChangeFrom = 0; /* If there is a FROM, pChanges->nExpr, else 0 */ /* Register Allocations */ int regRowCount = 0; /* A count of rows changed */ int regOldRowid = 0; /* The old rowid */ int regNewRowid = 0; /* The new rowid */ int regNew = 0; /* Content of the NEW.* table in triggers */ int regOld = 0; /* Content of OLD.* table in triggers */ int regRowSet = 0; /* Rowset of rows to be updated */ int regKey = 0; /* composite PRIMARY KEY value */ memset(&sContext, 0, sizeof(sContext)); db = pParse->db; if( pParse->nErr || db->mallocFailed ){ goto update_cleanup; } /* Locate the table which we want to update. */ pTab = sqlite3SrcListLookup(pParse, pTabList); if( pTab==0 ) goto update_cleanup; iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema); /* Figure out if we have any triggers and if the table being ** updated is a view. */ #ifndef SQLITE_OMIT_TRIGGER pTrigger = sqlite3TriggersExist(pParse, pTab, TK_UPDATE, pChanges, &tmask); isView = pTab->pSelect!=0; assert( pTrigger || tmask==0 ); #else # define pTrigger 0 # define isView 0 # define tmask 0 #endif #ifdef SQLITE_OMIT_VIEW # undef isView # define isView 0 #endif /* If there was a FROM clause, set nChangeFrom to the number of expressions ** in the change-list. Otherwise, set it to 0. There cannot be a FROM ** clause if this function is being called to generate code for part of ** an UPSERT statement. */ nChangeFrom = (pTabList->nSrc>1) ? pChanges->nExpr : 0; assert( nChangeFrom==0 || pUpsert==0 ); #ifdef SQLITE_ENABLE_UPDATE_DELETE_LIMIT if( !isView && nChangeFrom==0 ){ pWhere = sqlite3LimitWhere( pParse, pTabList, pWhere, pOrderBy, pLimit, "UPDATE" ); pOrderBy = 0; pLimit = 0; } #endif if( sqlite3ViewGetColumnNames(pParse, pTab) ){ goto update_cleanup; } if( sqlite3IsReadOnly(pParse, pTab, tmask) ){ goto update_cleanup; } /* Allocate a cursors for the main database table and for all indices. ** The index cursors might not be used, but if they are used they ** need to occur right after the database cursor. So go ahead and ** allocate enough space, just in case. */ iBaseCur = iDataCur = pParse->nTab++; iIdxCur = iDataCur+1; pPk = HasRowid(pTab) ? 0 : sqlite3PrimaryKeyIndex(pTab); testcase( pPk!=0 && pPk!=pTab->pIndex ); for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){ if( pPk==pIdx ){ iDataCur = pParse->nTab; } pParse->nTab++; } if( pUpsert ){ /* On an UPSERT, reuse the same cursors already opened by INSERT */ iDataCur = pUpsert->iDataCur; iIdxCur = pUpsert->iIdxCur; pParse->nTab = iBaseCur; } pTabList->a[0].iCursor = iDataCur; /* Allocate space for aXRef[], aRegIdx[], and aToOpen[]. ** Initialize aXRef[] and aToOpen[] to their default values. */ aXRef = sqlite3DbMallocRawNN(db, sizeof(int) * (pTab->nCol+nIdx+1) + nIdx+2 ); if( aXRef==0 ) goto update_cleanup; aRegIdx = aXRef+pTab->nCol; aToOpen = (u8*)(aRegIdx+nIdx+1); memset(aToOpen, 1, nIdx+1); aToOpen[nIdx+1] = 0; for(i=0; inCol; i++) aXRef[i] = -1; /* Initialize the name-context */ memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; sNC.pSrcList = pTabList; sNC.uNC.pUpsert = pUpsert; sNC.ncFlags = NC_UUpsert; /* Begin generating code. */ v = sqlite3GetVdbe(pParse); if( v==0 ) goto update_cleanup; /* Resolve the column names in all the expressions of the ** of the UPDATE statement. Also find the column index ** for each column to be updated in the pChanges array. For each ** column to be updated, make sure we have authorization to change ** that column. */ chngRowid = chngPk = 0; for(i=0; inExpr; i++){ /* If this is an UPDATE with a FROM clause, do not resolve expressions ** here. The call to sqlite3Select() below will do that. */ if( nChangeFrom==0 && sqlite3ResolveExprNames(&sNC, pChanges->a[i].pExpr) ){ goto update_cleanup; } for(j=0; jnCol; j++){ if( sqlite3StrICmp(pTab->aCol[j].zName, pChanges->a[i].zEName)==0 ){ if( j==pTab->iPKey ){ chngRowid = 1; pRowidExpr = pChanges->a[i].pExpr; iRowidExpr = i; }else if( pPk && (pTab->aCol[j].colFlags & COLFLAG_PRIMKEY)!=0 ){ chngPk = 1; } #ifndef SQLITE_OMIT_GENERATED_COLUMNS else if( pTab->aCol[j].colFlags & COLFLAG_GENERATED ){ testcase( pTab->aCol[j].colFlags & COLFLAG_VIRTUAL ); testcase( pTab->aCol[j].colFlags & COLFLAG_STORED ); sqlite3ErrorMsg(pParse, "cannot UPDATE generated column \"%s\"", pTab->aCol[j].zName); goto update_cleanup; } #endif aXRef[j] = i; break; } } if( j>=pTab->nCol ){ if( pPk==0 && sqlite3IsRowid(pChanges->a[i].zEName) ){ j = -1; chngRowid = 1; pRowidExpr = pChanges->a[i].pExpr; iRowidExpr = i; }else{ sqlite3ErrorMsg(pParse, "no such column: %s", pChanges->a[i].zEName); pParse->checkSchema = 1; goto update_cleanup; } } #ifndef SQLITE_OMIT_AUTHORIZATION { int rc; rc = sqlite3AuthCheck(pParse, SQLITE_UPDATE, pTab->zName, j<0 ? "ROWID" : pTab->aCol[j].zName, db->aDb[iDb].zDbSName); if( rc==SQLITE_DENY ){ goto update_cleanup; }else if( rc==SQLITE_IGNORE ){ aXRef[j] = -1; } } #endif } assert( (chngRowid & chngPk)==0 ); assert( chngRowid==0 || chngRowid==1 ); assert( chngPk==0 || chngPk==1 ); chngKey = chngRowid + chngPk; #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* Mark generated columns as changing if their generator expressions ** reference any changing column. The actual aXRef[] value for ** generated expressions is not used, other than to check to see that it ** is non-negative, so the value of aXRef[] for generated columns can be ** set to any non-negative number. We use 99999 so that the value is ** obvious when looking at aXRef[] in a symbolic debugger. */ if( pTab->tabFlags & TF_HasGenerated ){ int bProgress; testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); do{ bProgress = 0; for(i=0; inCol; i++){ if( aXRef[i]>=0 ) continue; if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)==0 ) continue; if( sqlite3ExprReferencesUpdatedColumn(pTab->aCol[i].pDflt, aXRef, chngRowid) ){ aXRef[i] = 99999; bProgress = 1; } } }while( bProgress ); } #endif /* The SET expressions are not actually used inside the WHERE loop. ** So reset the colUsed mask. Unless this is a virtual table. In that ** case, set all bits of the colUsed mask (to ensure that the virtual ** table implementation makes all columns available). */ pTabList->a[0].colUsed = IsVirtual(pTab) ? ALLBITS : 0; hasFK = sqlite3FkRequired(pParse, pTab, aXRef, chngKey); /* There is one entry in the aRegIdx[] array for each index on the table ** being updated. Fill in aRegIdx[] with a register number that will hold ** the key for accessing each index. */ if( onError==OE_Replace ) bReplace = 1; for(nAllIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nAllIdx++){ int reg; if( chngKey || hasFK>1 || pIdx==pPk || indexWhereClauseMightChange(pIdx,aXRef,chngRowid) ){ reg = ++pParse->nMem; pParse->nMem += pIdx->nColumn; }else{ reg = 0; for(i=0; inKeyCol; i++){ if( indexColumnIsBeingUpdated(pIdx, i, aXRef, chngRowid) ){ reg = ++pParse->nMem; pParse->nMem += pIdx->nColumn; if( onError==OE_Default && pIdx->onError==OE_Replace ){ bReplace = 1; } break; } } } if( reg==0 ) aToOpen[nAllIdx+1] = 0; aRegIdx[nAllIdx] = reg; } aRegIdx[nAllIdx] = ++pParse->nMem; /* Register storing the table record */ if( bReplace ){ /* If REPLACE conflict resolution might be invoked, open cursors on all ** indexes in case they are needed to delete records. */ memset(aToOpen, 1, nIdx+1); } if( pParse->nested==0 ) sqlite3VdbeCountChanges(v); sqlite3BeginWriteOperation(pParse, pTrigger || hasFK, iDb); /* Allocate required registers. */ if( !IsVirtual(pTab) ){ /* For now, regRowSet and aRegIdx[nAllIdx] share the same register. ** If regRowSet turns out to be needed, then aRegIdx[nAllIdx] will be ** reallocated. aRegIdx[nAllIdx] is the register in which the main ** table record is written. regRowSet holds the RowSet for the ** two-pass update algorithm. */ assert( aRegIdx[nAllIdx]==pParse->nMem ); regRowSet = aRegIdx[nAllIdx]; regOldRowid = regNewRowid = ++pParse->nMem; if( chngPk || pTrigger || hasFK ){ regOld = pParse->nMem + 1; pParse->nMem += pTab->nCol; } if( chngKey || pTrigger || hasFK ){ regNewRowid = ++pParse->nMem; } regNew = pParse->nMem + 1; pParse->nMem += pTab->nCol; } /* Start the view context. */ if( isView ){ sqlite3AuthContextPush(pParse, &sContext, pTab->zName); } /* If we are trying to update a view, realize that view into ** an ephemeral table. */ #if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) if( nChangeFrom==0 && isView ){ sqlite3MaterializeView(pParse, pTab, pWhere, pOrderBy, pLimit, iDataCur ); pOrderBy = 0; pLimit = 0; } #endif /* Resolve the column names in all the expressions in the ** WHERE clause. */ if( nChangeFrom==0 && sqlite3ResolveExprNames(&sNC, pWhere) ){ goto update_cleanup; } #ifndef SQLITE_OMIT_VIRTUALTABLE /* Virtual tables must be handled separately */ if( IsVirtual(pTab) ){ updateVirtualTable(pParse, pTabList, pTab, pChanges, pRowidExpr, aXRef, pWhere, onError); goto update_cleanup; } #endif /* Jump to labelBreak to abandon further processing of this UPDATE */ labelContinue = labelBreak = sqlite3VdbeMakeLabel(pParse); /* Not an UPSERT. Normal processing. Begin by ** initialize the count of updated rows */ if( (db->flags&SQLITE_CountRows)!=0 && !pParse->pTriggerTab && !pParse->nested && pUpsert==0 ){ regRowCount = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount); } if( nChangeFrom==0 && HasRowid(pTab) ){ sqlite3VdbeAddOp3(v, OP_Null, 0, regRowSet, regOldRowid); }else{ assert( pPk!=0 || HasRowid(pTab) ); nPk = pPk ? pPk->nKeyCol : 0; iPk = pParse->nMem+1; pParse->nMem += nPk; pParse->nMem += nChangeFrom; regKey = ++pParse->nMem; if( pUpsert==0 ){ int nEphCol = nPk + nChangeFrom + (isView ? pTab->nCol : 0); iEph = pParse->nTab++; if( pPk ) sqlite3VdbeAddOp3(v, OP_Null, 0, iPk, iPk+nPk-1); addrOpen = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, iEph, nEphCol); if( pPk ){ KeyInfo *pKeyInfo = sqlite3KeyInfoOfIndex(pParse, pPk); if( pKeyInfo ){ pKeyInfo->nAllField = nEphCol; sqlite3VdbeAppendP4(v, pKeyInfo, P4_KEYINFO); } } if( nChangeFrom ){ updateFromSelect( pParse, iEph, pPk, pChanges, pTabList, pWhere, pOrderBy, pLimit ); #ifndef SQLITE_OMIT_SUBQUERY if( isView ) iDataCur = iEph; #endif } } } if( nChangeFrom ){ sqlite3MultiWrite(pParse); eOnePass = ONEPASS_OFF; nKey = nPk; regKey = iPk; }else{ if( pUpsert ){ /* If this is an UPSERT, then all cursors have already been opened by ** the outer INSERT and the data cursor should be pointing at the row ** that is to be updated. So bypass the code that searches for the ** row(s) to be updated. */ pWInfo = 0; eOnePass = ONEPASS_SINGLE; sqlite3ExprIfFalse(pParse, pWhere, labelBreak, SQLITE_JUMPIFNULL); bFinishSeek = 0; }else{ /* Begin the database scan. ** ** Do not consider a single-pass strategy for a multi-row update if ** there are any triggers or foreign keys to process, or rows may ** be deleted as a result of REPLACE conflict handling. Any of these ** things might disturb a cursor being used to scan through the table ** or index, causing a single-pass approach to malfunction. */ flags = WHERE_ONEPASS_DESIRED|WHERE_SEEK_UNIQ_TABLE; if( !pParse->nested && !pTrigger && !hasFK && !chngKey && !bReplace ){ flags |= WHERE_ONEPASS_MULTIROW; } pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere, 0, 0, flags,iIdxCur); if( pWInfo==0 ) goto update_cleanup; /* A one-pass strategy that might update more than one row may not ** be used if any column of the index used for the scan is being ** updated. Otherwise, if there is an index on "b", statements like ** the following could create an infinite loop: ** ** UPDATE t1 SET b=b+1 WHERE b>? ** ** Fall back to ONEPASS_OFF if where.c has selected a ONEPASS_MULTI ** strategy that uses an index for which one or more columns are being ** updated. */ eOnePass = sqlite3WhereOkOnePass(pWInfo, aiCurOnePass); bFinishSeek = sqlite3WhereUsesDeferredSeek(pWInfo); if( eOnePass!=ONEPASS_SINGLE ){ sqlite3MultiWrite(pParse); if( eOnePass==ONEPASS_MULTI ){ int iCur = aiCurOnePass[1]; if( iCur>=0 && iCur!=iDataCur && aToOpen[iCur-iBaseCur] ){ eOnePass = ONEPASS_OFF; } assert( iCur!=iDataCur || !HasRowid(pTab) ); } } } if( HasRowid(pTab) ){ /* Read the rowid of the current row of the WHERE scan. In ONEPASS_OFF ** mode, write the rowid into the FIFO. In either of the one-pass modes, ** leave it in register regOldRowid. */ sqlite3VdbeAddOp2(v, OP_Rowid, iDataCur, regOldRowid); if( eOnePass==ONEPASS_OFF ){ /* We need to use regRowSet, so reallocate aRegIdx[nAllIdx] */ aRegIdx[nAllIdx] = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_RowSetAdd, regRowSet, regOldRowid); } }else{ /* Read the PK of the current row into an array of registers. In ** ONEPASS_OFF mode, serialize the array into a record and store it in ** the ephemeral table. Or, in ONEPASS_SINGLE or MULTI mode, change ** the OP_OpenEphemeral instruction to a Noop (the ephemeral table ** is not required) and leave the PK fields in the array of registers. */ for(i=0; iaiColumn[i]>=0 ); sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, pPk->aiColumn[i], iPk+i); } if( eOnePass ){ if( addrOpen ) sqlite3VdbeChangeToNoop(v, addrOpen); nKey = nPk; regKey = iPk; }else{ sqlite3VdbeAddOp4(v, OP_MakeRecord, iPk, nPk, regKey, sqlite3IndexAffinityStr(db, pPk), nPk); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, iEph, regKey, iPk, nPk); } } } if( pUpsert==0 ){ if( nChangeFrom==0 && eOnePass!=ONEPASS_MULTI ){ sqlite3WhereEnd(pWInfo); } if( !isView ){ int addrOnce = 0; /* Open every index that needs updating. */ if( eOnePass!=ONEPASS_OFF ){ if( aiCurOnePass[0]>=0 ) aToOpen[aiCurOnePass[0]-iBaseCur] = 0; if( aiCurOnePass[1]>=0 ) aToOpen[aiCurOnePass[1]-iBaseCur] = 0; } if( eOnePass==ONEPASS_MULTI && (nIdx-(aiCurOnePass[1]>=0))>0 ){ addrOnce = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); } sqlite3OpenTableAndIndices(pParse, pTab, OP_OpenWrite, 0, iBaseCur, aToOpen, 0, 0); if( addrOnce ){ sqlite3VdbeJumpHereOrPopInst(v, addrOnce); } } /* Top of the update loop */ if( eOnePass!=ONEPASS_OFF ){ if( !isView && aiCurOnePass[0]!=iDataCur && aiCurOnePass[1]!=iDataCur ){ assert( pPk ); sqlite3VdbeAddOp4Int(v, OP_NotFound, iDataCur, labelBreak, regKey,nKey); VdbeCoverage(v); } if( eOnePass!=ONEPASS_SINGLE ){ labelContinue = sqlite3VdbeMakeLabel(pParse); } sqlite3VdbeAddOp2(v, OP_IsNull, pPk ? regKey : regOldRowid, labelBreak); VdbeCoverageIf(v, pPk==0); VdbeCoverageIf(v, pPk!=0); }else if( pPk || nChangeFrom ){ labelContinue = sqlite3VdbeMakeLabel(pParse); sqlite3VdbeAddOp2(v, OP_Rewind, iEph, labelBreak); VdbeCoverage(v); addrTop = sqlite3VdbeCurrentAddr(v); if( nChangeFrom ){ if( !isView ){ if( pPk ){ for(i=0; i=0 ); if( nChangeFrom==0 ){ sqlite3ExprCode(pParse, pRowidExpr, regNewRowid); }else{ sqlite3VdbeAddOp3(v, OP_Column, iEph, iRowidExpr, regNewRowid); } sqlite3VdbeAddOp1(v, OP_MustBeInt, regNewRowid); VdbeCoverage(v); } /* Compute the old pre-UPDATE content of the row being changed, if that ** information is needed */ if( chngPk || hasFK || pTrigger ){ u32 oldmask = (hasFK ? sqlite3FkOldmask(pParse, pTab) : 0); oldmask |= sqlite3TriggerColmask(pParse, pTrigger, pChanges, 0, TRIGGER_BEFORE|TRIGGER_AFTER, pTab, onError ); for(i=0; inCol; i++){ u32 colFlags = pTab->aCol[i].colFlags; k = sqlite3TableColumnToStorage(pTab, i) + regOld; if( oldmask==0xffffffff || (i<32 && (oldmask & MASKBIT32(i))!=0) || (colFlags & COLFLAG_PRIMKEY)!=0 ){ testcase( oldmask!=0xffffffff && i==31 ); sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, k); }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, k); } } if( chngRowid==0 && pPk==0 ){ sqlite3VdbeAddOp2(v, OP_Copy, regOldRowid, regNewRowid); } } /* Populate the array of registers beginning at regNew with the new ** row data. This array is used to check constants, create the new ** table and index records, and as the values for any new.* references ** made by triggers. ** ** If there are one or more BEFORE triggers, then do not populate the ** registers associated with columns that are (a) not modified by ** this UPDATE statement and (b) not accessed by new.* references. The ** values for registers not modified by the UPDATE must be reloaded from ** the database after the BEFORE triggers are fired anyway (as the trigger ** may have modified them). So not loading those that are not going to ** be used eliminates some redundant opcodes. */ newmask = sqlite3TriggerColmask( pParse, pTrigger, pChanges, 1, TRIGGER_BEFORE, pTab, onError ); for(i=0, k=regNew; inCol; i++, k++){ if( i==pTab->iPKey ){ sqlite3VdbeAddOp2(v, OP_Null, 0, k); }else if( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)!=0 ){ if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; }else{ j = aXRef[i]; if( j>=0 ){ if( nChangeFrom ){ int nOff = (isView ? pTab->nCol : nPk); assert( eOnePass==ONEPASS_OFF ); sqlite3VdbeAddOp3(v, OP_Column, iEph, nOff+j, k); }else{ sqlite3ExprCode(pParse, pChanges->a[j].pExpr, k); } }else if( 0==(tmask&TRIGGER_BEFORE) || i>31 || (newmask & MASKBIT32(i)) ){ /* This branch loads the value of a column that will not be changed ** into a register. This is done if there are no BEFORE triggers, or ** if there are one or more BEFORE triggers that use this value via ** a new.* reference in a trigger program. */ testcase( i==31 ); testcase( i==32 ); sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, k); bFinishSeek = 0; }else{ sqlite3VdbeAddOp2(v, OP_Null, 0, k); } } } #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( pTab->tabFlags & TF_HasGenerated ){ testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); sqlite3ComputeGeneratedColumns(pParse, regNew, pTab); } #endif /* Fire any BEFORE UPDATE triggers. This happens before constraints are ** verified. One could argue that this is wrong. */ if( tmask&TRIGGER_BEFORE ){ sqlite3TableAffinity(v, pTab, regNew); sqlite3CodeRowTrigger(pParse, pTrigger, TK_UPDATE, pChanges, TRIGGER_BEFORE, pTab, regOldRowid, onError, labelContinue); if( !isView ){ /* The row-trigger may have deleted the row being updated. In this ** case, jump to the next row. No updates or AFTER triggers are ** required. This behavior - what happens when the row being updated ** is deleted or renamed by a BEFORE trigger - is left undefined in the ** documentation. */ if( pPk ){ sqlite3VdbeAddOp4Int(v, OP_NotFound,iDataCur,labelContinue,regKey,nKey); VdbeCoverage(v); }else{ sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, labelContinue,regOldRowid); VdbeCoverage(v); } /* After-BEFORE-trigger-reload-loop: ** If it did not delete it, the BEFORE trigger may still have modified ** some of the columns of the row being updated. Load the values for ** all columns not modified by the update statement into their registers ** in case this has happened. Only unmodified columns are reloaded. ** The values computed for modified columns use the values before the ** BEFORE trigger runs. See test case trigger1-18.0 (added 2018-04-26) ** for an example. */ for(i=0, k=regNew; inCol; i++, k++){ if( pTab->aCol[i].colFlags & COLFLAG_GENERATED ){ if( pTab->aCol[i].colFlags & COLFLAG_VIRTUAL ) k--; }else if( aXRef[i]<0 && i!=pTab->iPKey ){ sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, i, k); } } #ifndef SQLITE_OMIT_GENERATED_COLUMNS if( pTab->tabFlags & TF_HasGenerated ){ testcase( pTab->tabFlags & TF_HasVirtual ); testcase( pTab->tabFlags & TF_HasStored ); sqlite3ComputeGeneratedColumns(pParse, regNew, pTab); } #endif } } if( !isView ){ /* Do constraint checks. */ assert( regOldRowid>0 ); sqlite3GenerateConstraintChecks(pParse, pTab, aRegIdx, iDataCur, iIdxCur, regNewRowid, regOldRowid, chngKey, onError, labelContinue, &bReplace, aXRef, 0); /* If REPLACE conflict handling may have been used, or if the PK of the ** row is changing, then the GenerateConstraintChecks() above may have ** moved cursor iDataCur. Reseek it. */ if( bReplace || chngKey ){ if( pPk ){ sqlite3VdbeAddOp4Int(v, OP_NotFound,iDataCur,labelContinue,regKey,nKey); }else{ sqlite3VdbeAddOp3(v, OP_NotExists, iDataCur, labelContinue,regOldRowid); } VdbeCoverageNeverTaken(v); } /* Do FK constraint checks. */ if( hasFK ){ sqlite3FkCheck(pParse, pTab, regOldRowid, 0, aXRef, chngKey); } /* Delete the index entries associated with the current record. */ sqlite3GenerateRowIndexDelete(pParse, pTab, iDataCur, iIdxCur, aRegIdx, -1); /* We must run the OP_FinishSeek opcode to resolve a prior ** OP_DeferredSeek if there is any possibility that there have been ** no OP_Column opcodes since the OP_DeferredSeek was issued. But ** we want to avoid the OP_FinishSeek if possible, as running it ** costs CPU cycles. */ if( bFinishSeek ){ sqlite3VdbeAddOp1(v, OP_FinishSeek, iDataCur); } /* If changing the rowid value, or if there are foreign key constraints ** to process, delete the old record. Otherwise, add a noop OP_Delete ** to invoke the pre-update hook. ** ** That (regNew==regnewRowid+1) is true is also important for the ** pre-update hook. If the caller invokes preupdate_new(), the returned ** value is copied from memory cell (regNewRowid+1+iCol), where iCol ** is the column index supplied by the user. */ assert( regNew==regNewRowid+1 ); #ifdef SQLITE_ENABLE_PREUPDATE_HOOK sqlite3VdbeAddOp3(v, OP_Delete, iDataCur, OPFLAG_ISUPDATE | ((hasFK>1 || chngKey) ? 0 : OPFLAG_ISNOOP), regNewRowid ); if( eOnePass==ONEPASS_MULTI ){ assert( hasFK==0 && chngKey==0 ); sqlite3VdbeChangeP5(v, OPFLAG_SAVEPOSITION); } if( !pParse->nested ){ sqlite3VdbeAppendP4(v, pTab, P4_TABLE); } #else if( hasFK>1 || chngKey ){ sqlite3VdbeAddOp2(v, OP_Delete, iDataCur, 0); } #endif if( hasFK ){ sqlite3FkCheck(pParse, pTab, 0, regNewRowid, aXRef, chngKey); } /* Insert the new index entries and the new record. */ sqlite3CompleteInsertion( pParse, pTab, iDataCur, iIdxCur, regNewRowid, aRegIdx, OPFLAG_ISUPDATE | (eOnePass==ONEPASS_MULTI ? OPFLAG_SAVEPOSITION : 0), 0, 0 ); /* Do any ON CASCADE, SET NULL or SET DEFAULT operations required to ** handle rows (possibly in other tables) that refer via a foreign key ** to the row just updated. */ if( hasFK ){ sqlite3FkActions(pParse, pTab, pChanges, regOldRowid, aXRef, chngKey); } } /* Increment the row counter */ if( regRowCount ){ sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1); } sqlite3CodeRowTrigger(pParse, pTrigger, TK_UPDATE, pChanges, TRIGGER_AFTER, pTab, regOldRowid, onError, labelContinue); /* Repeat the above with the next record to be updated, until ** all record selected by the WHERE clause have been updated. */ if( eOnePass==ONEPASS_SINGLE ){ /* Nothing to do at end-of-loop for a single-pass */ }else if( eOnePass==ONEPASS_MULTI ){ sqlite3VdbeResolveLabel(v, labelContinue); sqlite3WhereEnd(pWInfo); }else if( pPk || nChangeFrom ){ sqlite3VdbeResolveLabel(v, labelContinue); sqlite3VdbeAddOp2(v, OP_Next, iEph, addrTop); VdbeCoverage(v); }else{ sqlite3VdbeGoto(v, labelContinue); } sqlite3VdbeResolveLabel(v, labelBreak); /* Update the sqlite_sequence table by storing the content of the ** maximum rowid counter values recorded while inserting into ** autoincrement tables. */ if( pParse->nested==0 && pParse->pTriggerTab==0 && pUpsert==0 ){ sqlite3AutoincrementEnd(pParse); } /* ** Return the number of rows that were changed, if we are tracking ** that information. */ if( regRowCount ){ sqlite3VdbeAddOp2(v, OP_ResultRow, regRowCount, 1); sqlite3VdbeSetNumCols(v, 1); sqlite3VdbeSetColName(v, 0, COLNAME_NAME, "rows updated", SQLITE_STATIC); } update_cleanup: sqlite3AuthContextPop(&sContext); sqlite3DbFree(db, aXRef); /* Also frees aRegIdx[] and aToOpen[] */ sqlite3SrcListDelete(db, pTabList); sqlite3ExprListDelete(db, pChanges); sqlite3ExprDelete(db, pWhere); #if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) sqlite3ExprListDelete(db, pOrderBy); sqlite3ExprDelete(db, pLimit); #endif return; } /* Make sure "isView" and other macros defined above are undefined. Otherwise ** they may interfere with compilation of other functions in this file ** (or in another file, if this file becomes part of the amalgamation). */ #ifdef isView #undef isView #endif #ifdef pTrigger #undef pTrigger #endif #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Generate code for an UPDATE of a virtual table. ** ** There are two possible strategies - the default and the special ** "onepass" strategy. Onepass is only used if the virtual table ** implementation indicates that pWhere may match at most one row. ** ** The default strategy is to create an ephemeral table that contains ** for each row to be changed: ** ** (A) The original rowid of that row. ** (B) The revised rowid for the row. ** (C) The content of every column in the row. ** ** Then loop through the contents of this ephemeral table executing a ** VUpdate for each row. When finished, drop the ephemeral table. ** ** The "onepass" strategy does not use an ephemeral table. Instead, it ** stores the same values (A, B and C above) in a register array and ** makes a single invocation of VUpdate. */ static void updateVirtualTable( Parse *pParse, /* The parsing context */ SrcList *pSrc, /* The virtual table to be modified */ Table *pTab, /* The virtual table */ ExprList *pChanges, /* The columns to change in the UPDATE statement */ Expr *pRowid, /* Expression used to recompute the rowid */ int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ Expr *pWhere, /* WHERE clause of the UPDATE statement */ int onError /* ON CONFLICT strategy */ ){ Vdbe *v = pParse->pVdbe; /* Virtual machine under construction */ int ephemTab; /* Table holding the result of the SELECT */ int i; /* Loop counter */ sqlite3 *db = pParse->db; /* Database connection */ const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); WhereInfo *pWInfo = 0; int nArg = 2 + pTab->nCol; /* Number of arguments to VUpdate */ int regArg; /* First register in VUpdate arg array */ int regRec; /* Register in which to assemble record */ int regRowid; /* Register for ephem table rowid */ int iCsr = pSrc->a[0].iCursor; /* Cursor used for virtual table scan */ int aDummy[2]; /* Unused arg for sqlite3WhereOkOnePass() */ int eOnePass; /* True to use onepass strategy */ int addr; /* Address of OP_OpenEphemeral */ /* Allocate nArg registers in which to gather the arguments for VUpdate. Then ** create and open the ephemeral table in which the records created from ** these arguments will be temporarily stored. */ assert( v ); ephemTab = pParse->nTab++; addr= sqlite3VdbeAddOp2(v, OP_OpenEphemeral, ephemTab, nArg); regArg = pParse->nMem + 1; pParse->nMem += nArg; if( pSrc->nSrc>1 ){ Expr *pRow; ExprList *pList; if( pRowid ){ pRow = sqlite3ExprDup(db, pRowid, 0); }else{ pRow = sqlite3PExpr(pParse, TK_ROW, 0, 0); } pList = sqlite3ExprListAppend(pParse, 0, pRow); for(i=0; inCol; i++){ if( aXRef[i]>=0 ){ pList = sqlite3ExprListAppend(pParse, pList, sqlite3ExprDup(db, pChanges->a[aXRef[i]].pExpr, 0) ); }else{ pList = sqlite3ExprListAppend(pParse, pList, exprRowColumn(pParse, i)); } } updateFromSelect(pParse, ephemTab, 0, pList, pSrc, pWhere, 0, 0); sqlite3ExprListDelete(db, pList); eOnePass = ONEPASS_OFF; }else{ regRec = ++pParse->nMem; regRowid = ++pParse->nMem; /* Start scanning the virtual table */ pWInfo = sqlite3WhereBegin(pParse, pSrc,pWhere,0,0,WHERE_ONEPASS_DESIRED,0); if( pWInfo==0 ) return; /* Populate the argument registers. */ for(i=0; inCol; i++){ assert( (pTab->aCol[i].colFlags & COLFLAG_GENERATED)==0 ); if( aXRef[i]>=0 ){ sqlite3ExprCode(pParse, pChanges->a[aXRef[i]].pExpr, regArg+2+i); }else{ sqlite3VdbeAddOp3(v, OP_VColumn, iCsr, i, regArg+2+i); sqlite3VdbeChangeP5(v, OPFLAG_NOCHNG);/* For sqlite3_vtab_nochange() */ } } if( HasRowid(pTab) ){ sqlite3VdbeAddOp2(v, OP_Rowid, iCsr, regArg); if( pRowid ){ sqlite3ExprCode(pParse, pRowid, regArg+1); }else{ sqlite3VdbeAddOp2(v, OP_Rowid, iCsr, regArg+1); } }else{ Index *pPk; /* PRIMARY KEY index */ i16 iPk; /* PRIMARY KEY column */ pPk = sqlite3PrimaryKeyIndex(pTab); assert( pPk!=0 ); assert( pPk->nKeyCol==1 ); iPk = pPk->aiColumn[0]; sqlite3VdbeAddOp3(v, OP_VColumn, iCsr, iPk, regArg); sqlite3VdbeAddOp2(v, OP_SCopy, regArg+2+iPk, regArg+1); } eOnePass = sqlite3WhereOkOnePass(pWInfo, aDummy); /* There is no ONEPASS_MULTI on virtual tables */ assert( eOnePass==ONEPASS_OFF || eOnePass==ONEPASS_SINGLE ); if( eOnePass ){ /* If using the onepass strategy, no-op out the OP_OpenEphemeral coded ** above. */ sqlite3VdbeChangeToNoop(v, addr); sqlite3VdbeAddOp1(v, OP_Close, iCsr); }else{ /* Create a record from the argument register contents and insert it into ** the ephemeral table. */ sqlite3MultiWrite(pParse); sqlite3VdbeAddOp3(v, OP_MakeRecord, regArg, nArg, regRec); #if defined(SQLITE_DEBUG) && !defined(SQLITE_ENABLE_NULL_TRIM) /* Signal an assert() within OP_MakeRecord that it is allowed to ** accept no-change records with serial_type 10 */ sqlite3VdbeChangeP5(v, OPFLAG_NOCHNG_MAGIC); #endif sqlite3VdbeAddOp2(v, OP_NewRowid, ephemTab, regRowid); sqlite3VdbeAddOp3(v, OP_Insert, ephemTab, regRec, regRowid); } } if( eOnePass==ONEPASS_OFF ){ /* End the virtual table scan */ if( pSrc->nSrc==1 ){ sqlite3WhereEnd(pWInfo); } /* Begin scannning through the ephemeral table. */ addr = sqlite3VdbeAddOp1(v, OP_Rewind, ephemTab); VdbeCoverage(v); /* Extract arguments from the current row of the ephemeral table and ** invoke the VUpdate method. */ for(i=0; ipUpsertTarget); sqlite3ExprDelete(db, p->pUpsertTargetWhere); sqlite3ExprListDelete(db, p->pUpsertSet); sqlite3ExprDelete(db, p->pUpsertWhere); sqlite3DbFree(db, p); } } /* ** Duplicate an Upsert object. */ SQLITE_PRIVATE Upsert *sqlite3UpsertDup(sqlite3 *db, Upsert *p){ if( p==0 ) return 0; return sqlite3UpsertNew(db, sqlite3ExprListDup(db, p->pUpsertTarget, 0), sqlite3ExprDup(db, p->pUpsertTargetWhere, 0), sqlite3ExprListDup(db, p->pUpsertSet, 0), sqlite3ExprDup(db, p->pUpsertWhere, 0) ); } /* ** Create a new Upsert object. */ SQLITE_PRIVATE Upsert *sqlite3UpsertNew( sqlite3 *db, /* Determines which memory allocator to use */ ExprList *pTarget, /* Target argument to ON CONFLICT, or NULL */ Expr *pTargetWhere, /* Optional WHERE clause on the target */ ExprList *pSet, /* UPDATE columns, or NULL for a DO NOTHING */ Expr *pWhere /* WHERE clause for the ON CONFLICT UPDATE */ ){ Upsert *pNew; pNew = sqlite3DbMallocRaw(db, sizeof(Upsert)); if( pNew==0 ){ sqlite3ExprListDelete(db, pTarget); sqlite3ExprDelete(db, pTargetWhere); sqlite3ExprListDelete(db, pSet); sqlite3ExprDelete(db, pWhere); return 0; }else{ pNew->pUpsertTarget = pTarget; pNew->pUpsertTargetWhere = pTargetWhere; pNew->pUpsertSet = pSet; pNew->pUpsertWhere = pWhere; pNew->pUpsertIdx = 0; } return pNew; } /* ** Analyze the ON CONFLICT clause described by pUpsert. Resolve all ** symbols in the conflict-target. ** ** Return SQLITE_OK if everything works, or an error code is something ** is wrong. */ SQLITE_PRIVATE int sqlite3UpsertAnalyzeTarget( Parse *pParse, /* The parsing context */ SrcList *pTabList, /* Table into which we are inserting */ Upsert *pUpsert /* The ON CONFLICT clauses */ ){ Table *pTab; /* That table into which we are inserting */ int rc; /* Result code */ int iCursor; /* Cursor used by pTab */ Index *pIdx; /* One of the indexes of pTab */ ExprList *pTarget; /* The conflict-target clause */ Expr *pTerm; /* One term of the conflict-target clause */ NameContext sNC; /* Context for resolving symbolic names */ Expr sCol[2]; /* Index column converted into an Expr */ assert( pTabList->nSrc==1 ); assert( pTabList->a[0].pTab!=0 ); assert( pUpsert!=0 ); assert( pUpsert->pUpsertTarget!=0 ); /* Resolve all symbolic names in the conflict-target clause, which ** includes both the list of columns and the optional partial-index ** WHERE clause. */ memset(&sNC, 0, sizeof(sNC)); sNC.pParse = pParse; sNC.pSrcList = pTabList; rc = sqlite3ResolveExprListNames(&sNC, pUpsert->pUpsertTarget); if( rc ) return rc; rc = sqlite3ResolveExprNames(&sNC, pUpsert->pUpsertTargetWhere); if( rc ) return rc; /* Check to see if the conflict target matches the rowid. */ pTab = pTabList->a[0].pTab; pTarget = pUpsert->pUpsertTarget; iCursor = pTabList->a[0].iCursor; if( HasRowid(pTab) && pTarget->nExpr==1 && (pTerm = pTarget->a[0].pExpr)->op==TK_COLUMN && pTerm->iColumn==XN_ROWID ){ /* The conflict-target is the rowid of the primary table */ assert( pUpsert->pUpsertIdx==0 ); return SQLITE_OK; } /* Initialize sCol[0..1] to be an expression parse tree for a ** single column of an index. The sCol[0] node will be the TK_COLLATE ** operator and sCol[1] will be the TK_COLUMN operator. Code below ** will populate the specific collation and column number values ** prior to comparing against the conflict-target expression. */ memset(sCol, 0, sizeof(sCol)); sCol[0].op = TK_COLLATE; sCol[0].pLeft = &sCol[1]; sCol[1].op = TK_COLUMN; sCol[1].iTable = pTabList->a[0].iCursor; /* Check for matches against other indexes */ for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int ii, jj, nn; if( !IsUniqueIndex(pIdx) ) continue; if( pTarget->nExpr!=pIdx->nKeyCol ) continue; if( pIdx->pPartIdxWhere ){ if( pUpsert->pUpsertTargetWhere==0 ) continue; if( sqlite3ExprCompare(pParse, pUpsert->pUpsertTargetWhere, pIdx->pPartIdxWhere, iCursor)!=0 ){ continue; } } nn = pIdx->nKeyCol; for(ii=0; iiazColl[ii]; if( pIdx->aiColumn[ii]==XN_EXPR ){ assert( pIdx->aColExpr!=0 ); assert( pIdx->aColExpr->nExpr>ii ); pExpr = pIdx->aColExpr->a[ii].pExpr; if( pExpr->op!=TK_COLLATE ){ sCol[0].pLeft = pExpr; pExpr = &sCol[0]; } }else{ sCol[0].pLeft = &sCol[1]; sCol[1].iColumn = pIdx->aiColumn[ii]; pExpr = &sCol[0]; } for(jj=0; jja[jj].pExpr, pExpr,iCursor)<2 ){ break; /* Column ii of the index matches column jj of target */ } } if( jj>=nn ){ /* The target contains no match for column jj of the index */ break; } } if( iipUpsertIdx = pIdx; return SQLITE_OK; } sqlite3ErrorMsg(pParse, "ON CONFLICT clause does not match any " "PRIMARY KEY or UNIQUE constraint"); return SQLITE_ERROR; } /* ** Generate bytecode that does an UPDATE as part of an upsert. ** ** If pIdx is NULL, then the UNIQUE constraint that failed was the IPK. ** In this case parameter iCur is a cursor open on the table b-tree that ** currently points to the conflicting table row. Otherwise, if pIdx ** is not NULL, then pIdx is the constraint that failed and iCur is a ** cursor points to the conflicting row. */ SQLITE_PRIVATE void sqlite3UpsertDoUpdate( Parse *pParse, /* The parsing and code-generating context */ Upsert *pUpsert, /* The ON CONFLICT clause for the upsert */ Table *pTab, /* The table being updated */ Index *pIdx, /* The UNIQUE constraint that failed */ int iCur /* Cursor for pIdx (or pTab if pIdx==NULL) */ ){ Vdbe *v = pParse->pVdbe; sqlite3 *db = pParse->db; SrcList *pSrc; /* FROM clause for the UPDATE */ int iDataCur; int i; assert( v!=0 ); assert( pUpsert!=0 ); VdbeNoopComment((v, "Begin DO UPDATE of UPSERT")); iDataCur = pUpsert->iDataCur; if( pIdx && iCur!=iDataCur ){ if( HasRowid(pTab) ){ int regRowid = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_IdxRowid, iCur, regRowid); sqlite3VdbeAddOp3(v, OP_SeekRowid, iDataCur, 0, regRowid); VdbeCoverage(v); sqlite3ReleaseTempReg(pParse, regRowid); }else{ Index *pPk = sqlite3PrimaryKeyIndex(pTab); int nPk = pPk->nKeyCol; int iPk = pParse->nMem+1; pParse->nMem += nPk; for(i=0; iaiColumn[i]>=0 ); k = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[i]); sqlite3VdbeAddOp3(v, OP_Column, iCur, k, iPk+i); VdbeComment((v, "%s.%s", pIdx->zName, pTab->aCol[pPk->aiColumn[i]].zName)); } sqlite3VdbeVerifyAbortable(v, OE_Abort); i = sqlite3VdbeAddOp4Int(v, OP_Found, iDataCur, 0, iPk, nPk); VdbeCoverage(v); sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CORRUPT, OE_Abort, 0, "corrupt database", P4_STATIC); sqlite3MayAbort(pParse); sqlite3VdbeJumpHere(v, i); } } /* pUpsert does not own pUpsertSrc - the outer INSERT statement does. So ** we have to make a copy before passing it down into sqlite3Update() */ pSrc = sqlite3SrcListDup(db, pUpsert->pUpsertSrc, 0); /* excluded.* columns of type REAL need to be converted to a hard real */ for(i=0; inCol; i++){ if( pTab->aCol[i].affinity==SQLITE_AFF_REAL ){ sqlite3VdbeAddOp1(v, OP_RealAffinity, pUpsert->regData+i); } } sqlite3Update(pParse, pSrc, pUpsert->pUpsertSet, pUpsert->pUpsertWhere, OE_Abort, 0, 0, pUpsert); pUpsert->pUpsertSet = 0; /* Will have been deleted by sqlite3Update() */ pUpsert->pUpsertWhere = 0; /* Will have been deleted by sqlite3Update() */ VdbeNoopComment((v, "End DO UPDATE of UPSERT")); } #endif /* SQLITE_OMIT_UPSERT */ /************** End of upsert.c **********************************************/ /************** Begin file vacuum.c ******************************************/ /* ** 2003 April 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to implement the VACUUM command. ** ** Most of the code in this file may be omitted by defining the ** SQLITE_OMIT_VACUUM macro. */ /* #include "sqliteInt.h" */ /* #include "vdbeInt.h" */ #if !defined(SQLITE_OMIT_VACUUM) && !defined(SQLITE_OMIT_ATTACH) /* ** Execute zSql on database db. ** ** If zSql returns rows, then each row will have exactly one ** column. (This will only happen if zSql begins with "SELECT".) ** Take each row of result and call execSql() again recursively. ** ** The execSqlF() routine does the same thing, except it accepts ** a format string as its third argument */ static int execSql(sqlite3 *db, char **pzErrMsg, const char *zSql){ sqlite3_stmt *pStmt; int rc; /* printf("SQL: [%s]\n", zSql); fflush(stdout); */ rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc!=SQLITE_OK ) return rc; while( SQLITE_ROW==(rc = sqlite3_step(pStmt)) ){ const char *zSubSql = (const char*)sqlite3_column_text(pStmt,0); assert( sqlite3_strnicmp(zSql,"SELECT",6)==0 ); /* The secondary SQL must be one of CREATE TABLE, CREATE INDEX, ** or INSERT. Historically there have been attacks that first ** corrupt the sqlite_schema.sql field with other kinds of statements ** then run VACUUM to get those statements to execute at inappropriate ** times. */ if( zSubSql && (strncmp(zSubSql,"CRE",3)==0 || strncmp(zSubSql,"INS",3)==0) ){ rc = execSql(db, pzErrMsg, zSubSql); if( rc!=SQLITE_OK ) break; } } assert( rc!=SQLITE_ROW ); if( rc==SQLITE_DONE ) rc = SQLITE_OK; if( rc ){ sqlite3SetString(pzErrMsg, db, sqlite3_errmsg(db)); } (void)sqlite3_finalize(pStmt); return rc; } static int execSqlF(sqlite3 *db, char **pzErrMsg, const char *zSql, ...){ char *z; va_list ap; int rc; va_start(ap, zSql); z = sqlite3VMPrintf(db, zSql, ap); va_end(ap); if( z==0 ) return SQLITE_NOMEM; rc = execSql(db, pzErrMsg, z); sqlite3DbFree(db, z); return rc; } /* ** The VACUUM command is used to clean up the database, ** collapse free space, etc. It is modelled after the VACUUM command ** in PostgreSQL. The VACUUM command works as follows: ** ** (1) Create a new transient database file ** (2) Copy all content from the database being vacuumed into ** the new transient database file ** (3) Copy content from the transient database back into the ** original database. ** ** The transient database requires temporary disk space approximately ** equal to the size of the original database. The copy operation of ** step (3) requires additional temporary disk space approximately equal ** to the size of the original database for the rollback journal. ** Hence, temporary disk space that is approximately 2x the size of the ** original database is required. Every page of the database is written ** approximately 3 times: Once for step (2) and twice for step (3). ** Two writes per page are required in step (3) because the original ** database content must be written into the rollback journal prior to ** overwriting the database with the vacuumed content. ** ** Only 1x temporary space and only 1x writes would be required if ** the copy of step (3) were replaced by deleting the original database ** and renaming the transient database as the original. But that will ** not work if other processes are attached to the original database. ** And a power loss in between deleting the original and renaming the ** transient would cause the database file to appear to be deleted ** following reboot. */ SQLITE_PRIVATE void sqlite3Vacuum(Parse *pParse, Token *pNm, Expr *pInto){ Vdbe *v = sqlite3GetVdbe(pParse); int iDb = 0; if( v==0 ) goto build_vacuum_end; if( pParse->nErr ) goto build_vacuum_end; if( pNm ){ #ifndef SQLITE_BUG_COMPATIBLE_20160819 /* Default behavior: Report an error if the argument to VACUUM is ** not recognized */ iDb = sqlite3TwoPartName(pParse, pNm, pNm, &pNm); if( iDb<0 ) goto build_vacuum_end; #else /* When SQLITE_BUG_COMPATIBLE_20160819 is defined, unrecognized arguments ** to VACUUM are silently ignored. This is a back-out of a bug fix that ** occurred on 2016-08-19 (https://www.sqlite.org/src/info/083f9e6270). ** The buggy behavior is required for binary compatibility with some ** legacy applications. */ iDb = sqlite3FindDb(pParse->db, pNm); if( iDb<0 ) iDb = 0; #endif } if( iDb!=1 ){ int iIntoReg = 0; if( pInto && sqlite3ResolveSelfReference(pParse,0,0,pInto,0)==0 ){ iIntoReg = ++pParse->nMem; sqlite3ExprCode(pParse, pInto, iIntoReg); } sqlite3VdbeAddOp2(v, OP_Vacuum, iDb, iIntoReg); sqlite3VdbeUsesBtree(v, iDb); } build_vacuum_end: sqlite3ExprDelete(pParse->db, pInto); return; } /* ** This routine implements the OP_Vacuum opcode of the VDBE. */ SQLITE_PRIVATE SQLITE_NOINLINE int sqlite3RunVacuum( char **pzErrMsg, /* Write error message here */ sqlite3 *db, /* Database connection */ int iDb, /* Which attached DB to vacuum */ sqlite3_value *pOut /* Write results here, if not NULL. VACUUM INTO */ ){ int rc = SQLITE_OK; /* Return code from service routines */ Btree *pMain; /* The database being vacuumed */ Btree *pTemp; /* The temporary database we vacuum into */ u32 saved_mDbFlags; /* Saved value of db->mDbFlags */ u64 saved_flags; /* Saved value of db->flags */ int saved_nChange; /* Saved value of db->nChange */ int saved_nTotalChange; /* Saved value of db->nTotalChange */ u32 saved_openFlags; /* Saved value of db->openFlags */ u8 saved_mTrace; /* Saved trace settings */ Db *pDb = 0; /* Database to detach at end of vacuum */ int isMemDb; /* True if vacuuming a :memory: database */ int nRes; /* Bytes of reserved space at the end of each page */ int nDb; /* Number of attached databases */ const char *zDbMain; /* Schema name of database to vacuum */ const char *zOut; /* Name of output file */ if( !db->autoCommit ){ sqlite3SetString(pzErrMsg, db, "cannot VACUUM from within a transaction"); return SQLITE_ERROR; /* IMP: R-12218-18073 */ } if( db->nVdbeActive>1 ){ sqlite3SetString(pzErrMsg, db,"cannot VACUUM - SQL statements in progress"); return SQLITE_ERROR; /* IMP: R-15610-35227 */ } saved_openFlags = db->openFlags; if( pOut ){ if( sqlite3_value_type(pOut)!=SQLITE_TEXT ){ sqlite3SetString(pzErrMsg, db, "non-text filename"); return SQLITE_ERROR; } zOut = (const char*)sqlite3_value_text(pOut); db->openFlags &= ~SQLITE_OPEN_READONLY; db->openFlags |= SQLITE_OPEN_CREATE|SQLITE_OPEN_READWRITE; }else{ zOut = ""; } /* Save the current value of the database flags so that it can be ** restored before returning. Then set the writable-schema flag, and ** disable CHECK and foreign key constraints. */ saved_flags = db->flags; saved_mDbFlags = db->mDbFlags; saved_nChange = db->nChange; saved_nTotalChange = db->nTotalChange; saved_mTrace = db->mTrace; db->flags |= SQLITE_WriteSchema | SQLITE_IgnoreChecks; db->mDbFlags |= DBFLAG_PreferBuiltin | DBFLAG_Vacuum; db->flags &= ~(u64)(SQLITE_ForeignKeys | SQLITE_ReverseOrder | SQLITE_Defensive | SQLITE_CountRows); db->mTrace = 0; zDbMain = db->aDb[iDb].zDbSName; pMain = db->aDb[iDb].pBt; isMemDb = sqlite3PagerIsMemdb(sqlite3BtreePager(pMain)); /* Attach the temporary database as 'vacuum_db'. The synchronous pragma ** can be set to 'off' for this file, as it is not recovered if a crash ** occurs anyway. The integrity of the database is maintained by a ** (possibly synchronous) transaction opened on the main database before ** sqlite3BtreeCopyFile() is called. ** ** An optimisation would be to use a non-journaled pager. ** (Later:) I tried setting "PRAGMA vacuum_db.journal_mode=OFF" but ** that actually made the VACUUM run slower. Very little journalling ** actually occurs when doing a vacuum since the vacuum_db is initially ** empty. Only the journal header is written. Apparently it takes more ** time to parse and run the PRAGMA to turn journalling off than it does ** to write the journal header file. */ nDb = db->nDb; rc = execSqlF(db, pzErrMsg, "ATTACH %Q AS vacuum_db", zOut); db->openFlags = saved_openFlags; if( rc!=SQLITE_OK ) goto end_of_vacuum; assert( (db->nDb-1)==nDb ); pDb = &db->aDb[nDb]; assert( strcmp(pDb->zDbSName,"vacuum_db")==0 ); pTemp = pDb->pBt; if( pOut ){ sqlite3_file *id = sqlite3PagerFile(sqlite3BtreePager(pTemp)); i64 sz = 0; if( id->pMethods!=0 && (sqlite3OsFileSize(id, &sz)!=SQLITE_OK || sz>0) ){ rc = SQLITE_ERROR; sqlite3SetString(pzErrMsg, db, "output file already exists"); goto end_of_vacuum; } db->mDbFlags |= DBFLAG_VacuumInto; } nRes = sqlite3BtreeGetRequestedReserve(pMain); sqlite3BtreeSetCacheSize(pTemp, db->aDb[iDb].pSchema->cache_size); sqlite3BtreeSetSpillSize(pTemp, sqlite3BtreeSetSpillSize(pMain,0)); sqlite3BtreeSetPagerFlags(pTemp, PAGER_SYNCHRONOUS_OFF|PAGER_CACHESPILL); /* Begin a transaction and take an exclusive lock on the main database ** file. This is done before the sqlite3BtreeGetPageSize(pMain) call below, ** to ensure that we do not try to change the page-size on a WAL database. */ rc = execSql(db, pzErrMsg, "BEGIN"); if( rc!=SQLITE_OK ) goto end_of_vacuum; rc = sqlite3BtreeBeginTrans(pMain, pOut==0 ? 2 : 0, 0); if( rc!=SQLITE_OK ) goto end_of_vacuum; /* Do not attempt to change the page size for a WAL database */ if( sqlite3PagerGetJournalMode(sqlite3BtreePager(pMain)) ==PAGER_JOURNALMODE_WAL ){ db->nextPagesize = 0; } if( sqlite3BtreeSetPageSize(pTemp, sqlite3BtreeGetPageSize(pMain), nRes, 0) || (!isMemDb && sqlite3BtreeSetPageSize(pTemp, db->nextPagesize, nRes, 0)) || NEVER(db->mallocFailed) ){ rc = SQLITE_NOMEM_BKPT; goto end_of_vacuum; } #ifndef SQLITE_OMIT_AUTOVACUUM sqlite3BtreeSetAutoVacuum(pTemp, db->nextAutovac>=0 ? db->nextAutovac : sqlite3BtreeGetAutoVacuum(pMain)); #endif /* Query the schema of the main database. Create a mirror schema ** in the temporary database. */ db->init.iDb = nDb; /* force new CREATE statements into vacuum_db */ rc = execSqlF(db, pzErrMsg, "SELECT sql FROM \"%w\".sqlite_schema" " WHERE type='table'AND name<>'sqlite_sequence'" " AND coalesce(rootpage,1)>0", zDbMain ); if( rc!=SQLITE_OK ) goto end_of_vacuum; rc = execSqlF(db, pzErrMsg, "SELECT sql FROM \"%w\".sqlite_schema" " WHERE type='index'", zDbMain ); if( rc!=SQLITE_OK ) goto end_of_vacuum; db->init.iDb = 0; /* Loop through the tables in the main database. For each, do ** an "INSERT INTO vacuum_db.xxx SELECT * FROM main.xxx;" to copy ** the contents to the temporary database. */ rc = execSqlF(db, pzErrMsg, "SELECT'INSERT INTO vacuum_db.'||quote(name)" "||' SELECT*FROM\"%w\".'||quote(name)" "FROM vacuum_db.sqlite_schema " "WHERE type='table'AND coalesce(rootpage,1)>0", zDbMain ); assert( (db->mDbFlags & DBFLAG_Vacuum)!=0 ); db->mDbFlags &= ~DBFLAG_Vacuum; if( rc!=SQLITE_OK ) goto end_of_vacuum; /* Copy the triggers, views, and virtual tables from the main database ** over to the temporary database. None of these objects has any ** associated storage, so all we have to do is copy their entries ** from the schema table. */ rc = execSqlF(db, pzErrMsg, "INSERT INTO vacuum_db.sqlite_schema" " SELECT*FROM \"%w\".sqlite_schema" " WHERE type IN('view','trigger')" " OR(type='table'AND rootpage=0)", zDbMain ); if( rc ) goto end_of_vacuum; /* At this point, there is a write transaction open on both the ** vacuum database and the main database. Assuming no error occurs, ** both transactions are closed by this block - the main database ** transaction by sqlite3BtreeCopyFile() and the other by an explicit ** call to sqlite3BtreeCommit(). */ { u32 meta; int i; /* This array determines which meta meta values are preserved in the ** vacuum. Even entries are the meta value number and odd entries ** are an increment to apply to the meta value after the vacuum. ** The increment is used to increase the schema cookie so that other ** connections to the same database will know to reread the schema. */ static const unsigned char aCopy[] = { BTREE_SCHEMA_VERSION, 1, /* Add one to the old schema cookie */ BTREE_DEFAULT_CACHE_SIZE, 0, /* Preserve the default page cache size */ BTREE_TEXT_ENCODING, 0, /* Preserve the text encoding */ BTREE_USER_VERSION, 0, /* Preserve the user version */ BTREE_APPLICATION_ID, 0, /* Preserve the application id */ }; assert( 1==sqlite3BtreeIsInTrans(pTemp) ); assert( pOut!=0 || 1==sqlite3BtreeIsInTrans(pMain) ); /* Copy Btree meta values */ for(i=0; iflags */ db->init.iDb = 0; db->mDbFlags = saved_mDbFlags; db->flags = saved_flags; db->nChange = saved_nChange; db->nTotalChange = saved_nTotalChange; db->mTrace = saved_mTrace; sqlite3BtreeSetPageSize(pMain, -1, 0, 1); /* Currently there is an SQL level transaction open on the vacuum ** database. No locks are held on any other files (since the main file ** was committed at the btree level). So it safe to end the transaction ** by manually setting the autoCommit flag to true and detaching the ** vacuum database. The vacuum_db journal file is deleted when the pager ** is closed by the DETACH. */ db->autoCommit = 1; if( pDb ){ sqlite3BtreeClose(pDb->pBt); pDb->pBt = 0; pDb->pSchema = 0; } /* This both clears the schemas and reduces the size of the db->aDb[] ** array. */ sqlite3ResetAllSchemasOfConnection(db); return rc; } #endif /* SQLITE_OMIT_VACUUM && SQLITE_OMIT_ATTACH */ /************** End of vacuum.c **********************************************/ /************** Begin file vtab.c ********************************************/ /* ** 2006 June 10 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file contains code used to help implement virtual tables. */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* #include "sqliteInt.h" */ /* ** Before a virtual table xCreate() or xConnect() method is invoked, the ** sqlite3.pVtabCtx member variable is set to point to an instance of ** this struct allocated on the stack. It is used by the implementation of ** the sqlite3_declare_vtab() and sqlite3_vtab_config() APIs, both of which ** are invoked only from within xCreate and xConnect methods. */ struct VtabCtx { VTable *pVTable; /* The virtual table being constructed */ Table *pTab; /* The Table object to which the virtual table belongs */ VtabCtx *pPrior; /* Parent context (if any) */ int bDeclared; /* True after sqlite3_declare_vtab() is called */ }; /* ** Construct and install a Module object for a virtual table. When this ** routine is called, it is guaranteed that all appropriate locks are held ** and the module is not already part of the connection. ** ** If there already exists a module with zName, replace it with the new one. ** If pModule==0, then delete the module zName if it exists. */ SQLITE_PRIVATE Module *sqlite3VtabCreateModule( sqlite3 *db, /* Database in which module is registered */ const char *zName, /* Name assigned to this module */ const sqlite3_module *pModule, /* The definition of the module */ void *pAux, /* Context pointer for xCreate/xConnect */ void (*xDestroy)(void *) /* Module destructor function */ ){ Module *pMod; Module *pDel; char *zCopy; if( pModule==0 ){ zCopy = (char*)zName; pMod = 0; }else{ int nName = sqlite3Strlen30(zName); pMod = (Module *)sqlite3Malloc(sizeof(Module) + nName + 1); if( pMod==0 ){ sqlite3OomFault(db); return 0; } zCopy = (char *)(&pMod[1]); memcpy(zCopy, zName, nName+1); pMod->zName = zCopy; pMod->pModule = pModule; pMod->pAux = pAux; pMod->xDestroy = xDestroy; pMod->pEpoTab = 0; pMod->nRefModule = 1; } pDel = (Module *)sqlite3HashInsert(&db->aModule,zCopy,(void*)pMod); if( pDel ){ if( pDel==pMod ){ sqlite3OomFault(db); sqlite3DbFree(db, pDel); pMod = 0; }else{ sqlite3VtabEponymousTableClear(db, pDel); sqlite3VtabModuleUnref(db, pDel); } } return pMod; } /* ** The actual function that does the work of creating a new module. ** This function implements the sqlite3_create_module() and ** sqlite3_create_module_v2() interfaces. */ static int createModule( sqlite3 *db, /* Database in which module is registered */ const char *zName, /* Name assigned to this module */ const sqlite3_module *pModule, /* The definition of the module */ void *pAux, /* Context pointer for xCreate/xConnect */ void (*xDestroy)(void *) /* Module destructor function */ ){ int rc = SQLITE_OK; sqlite3_mutex_enter(db->mutex); (void)sqlite3VtabCreateModule(db, zName, pModule, pAux, xDestroy); rc = sqlite3ApiExit(db, rc); if( rc!=SQLITE_OK && xDestroy ) xDestroy(pAux); sqlite3_mutex_leave(db->mutex); return rc; } /* ** External API function used to create a new virtual-table module. */ SQLITE_API int sqlite3_create_module( sqlite3 *db, /* Database in which module is registered */ const char *zName, /* Name assigned to this module */ const sqlite3_module *pModule, /* The definition of the module */ void *pAux /* Context pointer for xCreate/xConnect */ ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zName==0 ) return SQLITE_MISUSE_BKPT; #endif return createModule(db, zName, pModule, pAux, 0); } /* ** External API function used to create a new virtual-table module. */ SQLITE_API int sqlite3_create_module_v2( sqlite3 *db, /* Database in which module is registered */ const char *zName, /* Name assigned to this module */ const sqlite3_module *pModule, /* The definition of the module */ void *pAux, /* Context pointer for xCreate/xConnect */ void (*xDestroy)(void *) /* Module destructor function */ ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zName==0 ) return SQLITE_MISUSE_BKPT; #endif return createModule(db, zName, pModule, pAux, xDestroy); } /* ** External API to drop all virtual-table modules, except those named ** on the azNames list. */ SQLITE_API int sqlite3_drop_modules(sqlite3 *db, const char** azNames){ HashElem *pThis, *pNext; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif for(pThis=sqliteHashFirst(&db->aModule); pThis; pThis=pNext){ Module *pMod = (Module*)sqliteHashData(pThis); pNext = sqliteHashNext(pThis); if( azNames ){ int ii; for(ii=0; azNames[ii]!=0 && strcmp(azNames[ii],pMod->zName)!=0; ii++){} if( azNames[ii]!=0 ) continue; } createModule(db, pMod->zName, 0, 0, 0); } return SQLITE_OK; } /* ** Decrement the reference count on a Module object. Destroy the ** module when the reference count reaches zero. */ SQLITE_PRIVATE void sqlite3VtabModuleUnref(sqlite3 *db, Module *pMod){ assert( pMod->nRefModule>0 ); pMod->nRefModule--; if( pMod->nRefModule==0 ){ if( pMod->xDestroy ){ pMod->xDestroy(pMod->pAux); } assert( pMod->pEpoTab==0 ); sqlite3DbFree(db, pMod); } } /* ** Lock the virtual table so that it cannot be disconnected. ** Locks nest. Every lock should have a corresponding unlock. ** If an unlock is omitted, resources leaks will occur. ** ** If a disconnect is attempted while a virtual table is locked, ** the disconnect is deferred until all locks have been removed. */ SQLITE_PRIVATE void sqlite3VtabLock(VTable *pVTab){ pVTab->nRef++; } /* ** pTab is a pointer to a Table structure representing a virtual-table. ** Return a pointer to the VTable object used by connection db to access ** this virtual-table, if one has been created, or NULL otherwise. */ SQLITE_PRIVATE VTable *sqlite3GetVTable(sqlite3 *db, Table *pTab){ VTable *pVtab; assert( IsVirtual(pTab) ); for(pVtab=pTab->pVTable; pVtab && pVtab->db!=db; pVtab=pVtab->pNext); return pVtab; } /* ** Decrement the ref-count on a virtual table object. When the ref-count ** reaches zero, call the xDisconnect() method to delete the object. */ SQLITE_PRIVATE void sqlite3VtabUnlock(VTable *pVTab){ sqlite3 *db = pVTab->db; assert( db ); assert( pVTab->nRef>0 ); assert( db->magic==SQLITE_MAGIC_OPEN || db->magic==SQLITE_MAGIC_ZOMBIE ); pVTab->nRef--; if( pVTab->nRef==0 ){ sqlite3_vtab *p = pVTab->pVtab; sqlite3VtabModuleUnref(pVTab->db, pVTab->pMod); if( p ){ p->pModule->xDisconnect(p); } sqlite3DbFree(db, pVTab); } } /* ** Table p is a virtual table. This function moves all elements in the ** p->pVTable list to the sqlite3.pDisconnect lists of their associated ** database connections to be disconnected at the next opportunity. ** Except, if argument db is not NULL, then the entry associated with ** connection db is left in the p->pVTable list. */ static VTable *vtabDisconnectAll(sqlite3 *db, Table *p){ VTable *pRet = 0; VTable *pVTable = p->pVTable; p->pVTable = 0; /* Assert that the mutex (if any) associated with the BtShared database ** that contains table p is held by the caller. See header comments ** above function sqlite3VtabUnlockList() for an explanation of why ** this makes it safe to access the sqlite3.pDisconnect list of any ** database connection that may have an entry in the p->pVTable list. */ assert( db==0 || sqlite3SchemaMutexHeld(db, 0, p->pSchema) ); while( pVTable ){ sqlite3 *db2 = pVTable->db; VTable *pNext = pVTable->pNext; assert( db2 ); if( db2==db ){ pRet = pVTable; p->pVTable = pRet; pRet->pNext = 0; }else{ pVTable->pNext = db2->pDisconnect; db2->pDisconnect = pVTable; } pVTable = pNext; } assert( !db || pRet ); return pRet; } /* ** Table *p is a virtual table. This function removes the VTable object ** for table *p associated with database connection db from the linked ** list in p->pVTab. It also decrements the VTable ref count. This is ** used when closing database connection db to free all of its VTable ** objects without disturbing the rest of the Schema object (which may ** be being used by other shared-cache connections). */ SQLITE_PRIVATE void sqlite3VtabDisconnect(sqlite3 *db, Table *p){ VTable **ppVTab; assert( IsVirtual(p) ); assert( sqlite3BtreeHoldsAllMutexes(db) ); assert( sqlite3_mutex_held(db->mutex) ); for(ppVTab=&p->pVTable; *ppVTab; ppVTab=&(*ppVTab)->pNext){ if( (*ppVTab)->db==db ){ VTable *pVTab = *ppVTab; *ppVTab = pVTab->pNext; sqlite3VtabUnlock(pVTab); break; } } } /* ** Disconnect all the virtual table objects in the sqlite3.pDisconnect list. ** ** This function may only be called when the mutexes associated with all ** shared b-tree databases opened using connection db are held by the ** caller. This is done to protect the sqlite3.pDisconnect list. The ** sqlite3.pDisconnect list is accessed only as follows: ** ** 1) By this function. In this case, all BtShared mutexes and the mutex ** associated with the database handle itself must be held. ** ** 2) By function vtabDisconnectAll(), when it adds a VTable entry to ** the sqlite3.pDisconnect list. In this case either the BtShared mutex ** associated with the database the virtual table is stored in is held ** or, if the virtual table is stored in a non-sharable database, then ** the database handle mutex is held. ** ** As a result, a sqlite3.pDisconnect cannot be accessed simultaneously ** by multiple threads. It is thread-safe. */ SQLITE_PRIVATE void sqlite3VtabUnlockList(sqlite3 *db){ VTable *p = db->pDisconnect; assert( sqlite3BtreeHoldsAllMutexes(db) ); assert( sqlite3_mutex_held(db->mutex) ); if( p ){ db->pDisconnect = 0; sqlite3ExpirePreparedStatements(db, 0); do { VTable *pNext = p->pNext; sqlite3VtabUnlock(p); p = pNext; }while( p ); } } /* ** Clear any and all virtual-table information from the Table record. ** This routine is called, for example, just before deleting the Table ** record. ** ** Since it is a virtual-table, the Table structure contains a pointer ** to the head of a linked list of VTable structures. Each VTable ** structure is associated with a single sqlite3* user of the schema. ** The reference count of the VTable structure associated with database ** connection db is decremented immediately (which may lead to the ** structure being xDisconnected and free). Any other VTable structures ** in the list are moved to the sqlite3.pDisconnect list of the associated ** database connection. */ SQLITE_PRIVATE void sqlite3VtabClear(sqlite3 *db, Table *p){ if( !db || db->pnBytesFreed==0 ) vtabDisconnectAll(0, p); if( p->azModuleArg ){ int i; for(i=0; inModuleArg; i++){ if( i!=1 ) sqlite3DbFree(db, p->azModuleArg[i]); } sqlite3DbFree(db, p->azModuleArg); } } /* ** Add a new module argument to pTable->azModuleArg[]. ** The string is not copied - the pointer is stored. The ** string will be freed automatically when the table is ** deleted. */ static void addModuleArgument(Parse *pParse, Table *pTable, char *zArg){ sqlite3_int64 nBytes = sizeof(char *)*(2+pTable->nModuleArg); char **azModuleArg; sqlite3 *db = pParse->db; if( pTable->nModuleArg+3>=db->aLimit[SQLITE_LIMIT_COLUMN] ){ sqlite3ErrorMsg(pParse, "too many columns on %s", pTable->zName); } azModuleArg = sqlite3DbRealloc(db, pTable->azModuleArg, nBytes); if( azModuleArg==0 ){ sqlite3DbFree(db, zArg); }else{ int i = pTable->nModuleArg++; azModuleArg[i] = zArg; azModuleArg[i+1] = 0; pTable->azModuleArg = azModuleArg; } } /* ** The parser calls this routine when it first sees a CREATE VIRTUAL TABLE ** statement. The module name has been parsed, but the optional list ** of parameters that follow the module name are still pending. */ SQLITE_PRIVATE void sqlite3VtabBeginParse( Parse *pParse, /* Parsing context */ Token *pName1, /* Name of new table, or database name */ Token *pName2, /* Name of new table or NULL */ Token *pModuleName, /* Name of the module for the virtual table */ int ifNotExists /* No error if the table already exists */ ){ Table *pTable; /* The new virtual table */ sqlite3 *db; /* Database connection */ sqlite3StartTable(pParse, pName1, pName2, 0, 0, 1, ifNotExists); pTable = pParse->pNewTable; if( pTable==0 ) return; assert( 0==pTable->pIndex ); db = pParse->db; assert( pTable->nModuleArg==0 ); addModuleArgument(pParse, pTable, sqlite3NameFromToken(db, pModuleName)); addModuleArgument(pParse, pTable, 0); addModuleArgument(pParse, pTable, sqlite3DbStrDup(db, pTable->zName)); assert( (pParse->sNameToken.z==pName2->z && pName2->z!=0) || (pParse->sNameToken.z==pName1->z && pName2->z==0) ); pParse->sNameToken.n = (int)( &pModuleName->z[pModuleName->n] - pParse->sNameToken.z ); #ifndef SQLITE_OMIT_AUTHORIZATION /* Creating a virtual table invokes the authorization callback twice. ** The first invocation, to obtain permission to INSERT a row into the ** sqlite_schema table, has already been made by sqlite3StartTable(). ** The second call, to obtain permission to create the table, is made now. */ if( pTable->azModuleArg ){ int iDb = sqlite3SchemaToIndex(db, pTable->pSchema); assert( iDb>=0 ); /* The database the table is being created in */ sqlite3AuthCheck(pParse, SQLITE_CREATE_VTABLE, pTable->zName, pTable->azModuleArg[0], pParse->db->aDb[iDb].zDbSName); } #endif } /* ** This routine takes the module argument that has been accumulating ** in pParse->zArg[] and appends it to the list of arguments on the ** virtual table currently under construction in pParse->pTable. */ static void addArgumentToVtab(Parse *pParse){ if( pParse->sArg.z && pParse->pNewTable ){ const char *z = (const char*)pParse->sArg.z; int n = pParse->sArg.n; sqlite3 *db = pParse->db; addModuleArgument(pParse, pParse->pNewTable, sqlite3DbStrNDup(db, z, n)); } } /* ** The parser calls this routine after the CREATE VIRTUAL TABLE statement ** has been completely parsed. */ SQLITE_PRIVATE void sqlite3VtabFinishParse(Parse *pParse, Token *pEnd){ Table *pTab = pParse->pNewTable; /* The table being constructed */ sqlite3 *db = pParse->db; /* The database connection */ if( pTab==0 ) return; addArgumentToVtab(pParse); pParse->sArg.z = 0; if( pTab->nModuleArg<1 ) return; /* If the CREATE VIRTUAL TABLE statement is being entered for the ** first time (in other words if the virtual table is actually being ** created now instead of just being read out of sqlite_schema) then ** do additional initialization work and store the statement text ** in the sqlite_schema table. */ if( !db->init.busy ){ char *zStmt; char *zWhere; int iDb; int iReg; Vdbe *v; sqlite3MayAbort(pParse); /* Compute the complete text of the CREATE VIRTUAL TABLE statement */ if( pEnd ){ pParse->sNameToken.n = (int)(pEnd->z - pParse->sNameToken.z) + pEnd->n; } zStmt = sqlite3MPrintf(db, "CREATE VIRTUAL TABLE %T", &pParse->sNameToken); /* A slot for the record has already been allocated in the ** schema table. We just need to update that slot with all ** the information we've collected. ** ** The VM register number pParse->regRowid holds the rowid of an ** entry in the sqlite_schema table tht was created for this vtab ** by sqlite3StartTable(). */ iDb = sqlite3SchemaToIndex(db, pTab->pSchema); sqlite3NestedParse(pParse, "UPDATE %Q." DFLT_SCHEMA_TABLE " " "SET type='table', name=%Q, tbl_name=%Q, rootpage=0, sql=%Q " "WHERE rowid=#%d", db->aDb[iDb].zDbSName, pTab->zName, pTab->zName, zStmt, pParse->regRowid ); v = sqlite3GetVdbe(pParse); sqlite3ChangeCookie(pParse, iDb); sqlite3VdbeAddOp0(v, OP_Expire); zWhere = sqlite3MPrintf(db, "name=%Q AND sql=%Q", pTab->zName, zStmt); sqlite3VdbeAddParseSchemaOp(v, iDb, zWhere); sqlite3DbFree(db, zStmt); iReg = ++pParse->nMem; sqlite3VdbeLoadString(v, iReg, pTab->zName); sqlite3VdbeAddOp2(v, OP_VCreate, iDb, iReg); } /* If we are rereading the sqlite_schema table create the in-memory ** record of the table. The xConnect() method is not called until ** the first time the virtual table is used in an SQL statement. This ** allows a schema that contains virtual tables to be loaded before ** the required virtual table implementations are registered. */ else { Table *pOld; Schema *pSchema = pTab->pSchema; const char *zName = pTab->zName; assert( sqlite3SchemaMutexHeld(db, 0, pSchema) ); pOld = sqlite3HashInsert(&pSchema->tblHash, zName, pTab); if( pOld ){ sqlite3OomFault(db); assert( pTab==pOld ); /* Malloc must have failed inside HashInsert() */ return; } pParse->pNewTable = 0; } } /* ** The parser calls this routine when it sees the first token ** of an argument to the module name in a CREATE VIRTUAL TABLE statement. */ SQLITE_PRIVATE void sqlite3VtabArgInit(Parse *pParse){ addArgumentToVtab(pParse); pParse->sArg.z = 0; pParse->sArg.n = 0; } /* ** The parser calls this routine for each token after the first token ** in an argument to the module name in a CREATE VIRTUAL TABLE statement. */ SQLITE_PRIVATE void sqlite3VtabArgExtend(Parse *pParse, Token *p){ Token *pArg = &pParse->sArg; if( pArg->z==0 ){ pArg->z = p->z; pArg->n = p->n; }else{ assert(pArg->z <= p->z); pArg->n = (int)(&p->z[p->n] - pArg->z); } } /* ** Invoke a virtual table constructor (either xCreate or xConnect). The ** pointer to the function to invoke is passed as the fourth parameter ** to this procedure. */ static int vtabCallConstructor( sqlite3 *db, Table *pTab, Module *pMod, int (*xConstruct)(sqlite3*,void*,int,const char*const*,sqlite3_vtab**,char**), char **pzErr ){ VtabCtx sCtx; VTable *pVTable; int rc; const char *const*azArg = (const char *const*)pTab->azModuleArg; int nArg = pTab->nModuleArg; char *zErr = 0; char *zModuleName; int iDb; VtabCtx *pCtx; /* Check that the virtual-table is not already being initialized */ for(pCtx=db->pVtabCtx; pCtx; pCtx=pCtx->pPrior){ if( pCtx->pTab==pTab ){ *pzErr = sqlite3MPrintf(db, "vtable constructor called recursively: %s", pTab->zName ); return SQLITE_LOCKED; } } zModuleName = sqlite3DbStrDup(db, pTab->zName); if( !zModuleName ){ return SQLITE_NOMEM_BKPT; } pVTable = sqlite3MallocZero(sizeof(VTable)); if( !pVTable ){ sqlite3OomFault(db); sqlite3DbFree(db, zModuleName); return SQLITE_NOMEM_BKPT; } pVTable->db = db; pVTable->pMod = pMod; pVTable->eVtabRisk = SQLITE_VTABRISK_Normal; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); pTab->azModuleArg[1] = db->aDb[iDb].zDbSName; /* Invoke the virtual table constructor */ assert( &db->pVtabCtx ); assert( xConstruct ); sCtx.pTab = pTab; sCtx.pVTable = pVTable; sCtx.pPrior = db->pVtabCtx; sCtx.bDeclared = 0; db->pVtabCtx = &sCtx; rc = xConstruct(db, pMod->pAux, nArg, azArg, &pVTable->pVtab, &zErr); db->pVtabCtx = sCtx.pPrior; if( rc==SQLITE_NOMEM ) sqlite3OomFault(db); assert( sCtx.pTab==pTab ); if( SQLITE_OK!=rc ){ if( zErr==0 ){ *pzErr = sqlite3MPrintf(db, "vtable constructor failed: %s", zModuleName); }else { *pzErr = sqlite3MPrintf(db, "%s", zErr); sqlite3_free(zErr); } sqlite3DbFree(db, pVTable); }else if( ALWAYS(pVTable->pVtab) ){ /* Justification of ALWAYS(): A correct vtab constructor must allocate ** the sqlite3_vtab object if successful. */ memset(pVTable->pVtab, 0, sizeof(pVTable->pVtab[0])); pVTable->pVtab->pModule = pMod->pModule; pMod->nRefModule++; pVTable->nRef = 1; if( sCtx.bDeclared==0 ){ const char *zFormat = "vtable constructor did not declare schema: %s"; *pzErr = sqlite3MPrintf(db, zFormat, pTab->zName); sqlite3VtabUnlock(pVTable); rc = SQLITE_ERROR; }else{ int iCol; u16 oooHidden = 0; /* If everything went according to plan, link the new VTable structure ** into the linked list headed by pTab->pVTable. Then loop through the ** columns of the table to see if any of them contain the token "hidden". ** If so, set the Column COLFLAG_HIDDEN flag and remove the token from ** the type string. */ pVTable->pNext = pTab->pVTable; pTab->pVTable = pVTable; for(iCol=0; iColnCol; iCol++){ char *zType = sqlite3ColumnType(&pTab->aCol[iCol], ""); int nType; int i = 0; nType = sqlite3Strlen30(zType); for(i=0; i0 ){ assert(zType[i-1]==' '); zType[i-1] = '\0'; } pTab->aCol[iCol].colFlags |= COLFLAG_HIDDEN; oooHidden = TF_OOOHidden; }else{ pTab->tabFlags |= oooHidden; } } } } sqlite3DbFree(db, zModuleName); return rc; } /* ** This function is invoked by the parser to call the xConnect() method ** of the virtual table pTab. If an error occurs, an error code is returned ** and an error left in pParse. ** ** This call is a no-op if table pTab is not a virtual table. */ SQLITE_PRIVATE int sqlite3VtabCallConnect(Parse *pParse, Table *pTab){ sqlite3 *db = pParse->db; const char *zMod; Module *pMod; int rc; assert( pTab ); if( !IsVirtual(pTab) || sqlite3GetVTable(db, pTab) ){ return SQLITE_OK; } /* Locate the required virtual table module */ zMod = pTab->azModuleArg[0]; pMod = (Module*)sqlite3HashFind(&db->aModule, zMod); if( !pMod ){ const char *zModule = pTab->azModuleArg[0]; sqlite3ErrorMsg(pParse, "no such module: %s", zModule); rc = SQLITE_ERROR; }else{ char *zErr = 0; rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xConnect, &zErr); if( rc!=SQLITE_OK ){ sqlite3ErrorMsg(pParse, "%s", zErr); pParse->rc = rc; } sqlite3DbFree(db, zErr); } return rc; } /* ** Grow the db->aVTrans[] array so that there is room for at least one ** more v-table. Return SQLITE_NOMEM if a malloc fails, or SQLITE_OK otherwise. */ static int growVTrans(sqlite3 *db){ const int ARRAY_INCR = 5; /* Grow the sqlite3.aVTrans array if required */ if( (db->nVTrans%ARRAY_INCR)==0 ){ VTable **aVTrans; sqlite3_int64 nBytes = sizeof(sqlite3_vtab*)* ((sqlite3_int64)db->nVTrans + ARRAY_INCR); aVTrans = sqlite3DbRealloc(db, (void *)db->aVTrans, nBytes); if( !aVTrans ){ return SQLITE_NOMEM_BKPT; } memset(&aVTrans[db->nVTrans], 0, sizeof(sqlite3_vtab *)*ARRAY_INCR); db->aVTrans = aVTrans; } return SQLITE_OK; } /* ** Add the virtual table pVTab to the array sqlite3.aVTrans[]. Space should ** have already been reserved using growVTrans(). */ static void addToVTrans(sqlite3 *db, VTable *pVTab){ /* Add pVtab to the end of sqlite3.aVTrans */ db->aVTrans[db->nVTrans++] = pVTab; sqlite3VtabLock(pVTab); } /* ** This function is invoked by the vdbe to call the xCreate method ** of the virtual table named zTab in database iDb. ** ** If an error occurs, *pzErr is set to point to an English language ** description of the error and an SQLITE_XXX error code is returned. ** In this case the caller must call sqlite3DbFree(db, ) on *pzErr. */ SQLITE_PRIVATE int sqlite3VtabCallCreate(sqlite3 *db, int iDb, const char *zTab, char **pzErr){ int rc = SQLITE_OK; Table *pTab; Module *pMod; const char *zMod; pTab = sqlite3FindTable(db, zTab, db->aDb[iDb].zDbSName); assert( pTab && IsVirtual(pTab) && !pTab->pVTable ); /* Locate the required virtual table module */ zMod = pTab->azModuleArg[0]; pMod = (Module*)sqlite3HashFind(&db->aModule, zMod); /* If the module has been registered and includes a Create method, ** invoke it now. If the module has not been registered, return an ** error. Otherwise, do nothing. */ if( pMod==0 || pMod->pModule->xCreate==0 || pMod->pModule->xDestroy==0 ){ *pzErr = sqlite3MPrintf(db, "no such module: %s", zMod); rc = SQLITE_ERROR; }else{ rc = vtabCallConstructor(db, pTab, pMod, pMod->pModule->xCreate, pzErr); } /* Justification of ALWAYS(): The xConstructor method is required to ** create a valid sqlite3_vtab if it returns SQLITE_OK. */ if( rc==SQLITE_OK && ALWAYS(sqlite3GetVTable(db, pTab)) ){ rc = growVTrans(db); if( rc==SQLITE_OK ){ addToVTrans(db, sqlite3GetVTable(db, pTab)); } } return rc; } /* ** This function is used to set the schema of a virtual table. It is only ** valid to call this function from within the xCreate() or xConnect() of a ** virtual table module. */ SQLITE_API int sqlite3_declare_vtab(sqlite3 *db, const char *zCreateTable){ VtabCtx *pCtx; int rc = SQLITE_OK; Table *pTab; char *zErr = 0; Parse sParse; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zCreateTable==0 ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); pCtx = db->pVtabCtx; if( !pCtx || pCtx->bDeclared ){ sqlite3Error(db, SQLITE_MISUSE); sqlite3_mutex_leave(db->mutex); return SQLITE_MISUSE_BKPT; } pTab = pCtx->pTab; assert( IsVirtual(pTab) ); memset(&sParse, 0, sizeof(sParse)); sParse.eParseMode = PARSE_MODE_DECLARE_VTAB; sParse.db = db; sParse.nQueryLoop = 1; if( SQLITE_OK==sqlite3RunParser(&sParse, zCreateTable, &zErr) && sParse.pNewTable && !db->mallocFailed && !sParse.pNewTable->pSelect && !IsVirtual(sParse.pNewTable) ){ if( !pTab->aCol ){ Table *pNew = sParse.pNewTable; Index *pIdx; pTab->aCol = pNew->aCol; pTab->nCol = pNew->nCol; pTab->tabFlags |= pNew->tabFlags & (TF_WithoutRowid|TF_NoVisibleRowid); pNew->nCol = 0; pNew->aCol = 0; assert( pTab->pIndex==0 ); assert( HasRowid(pNew) || sqlite3PrimaryKeyIndex(pNew)!=0 ); if( !HasRowid(pNew) && pCtx->pVTable->pMod->pModule->xUpdate!=0 && sqlite3PrimaryKeyIndex(pNew)->nKeyCol!=1 ){ /* WITHOUT ROWID virtual tables must either be read-only (xUpdate==0) ** or else must have a single-column PRIMARY KEY */ rc = SQLITE_ERROR; } pIdx = pNew->pIndex; if( pIdx ){ assert( pIdx->pNext==0 ); pTab->pIndex = pIdx; pNew->pIndex = 0; pIdx->pTable = pTab; } } pCtx->bDeclared = 1; }else{ sqlite3ErrorWithMsg(db, SQLITE_ERROR, (zErr ? "%s" : 0), zErr); sqlite3DbFree(db, zErr); rc = SQLITE_ERROR; } sParse.eParseMode = PARSE_MODE_NORMAL; if( sParse.pVdbe ){ sqlite3VdbeFinalize(sParse.pVdbe); } sqlite3DeleteTable(db, sParse.pNewTable); sqlite3ParserReset(&sParse); assert( (rc&0xff)==rc ); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** This function is invoked by the vdbe to call the xDestroy method ** of the virtual table named zTab in database iDb. This occurs ** when a DROP TABLE is mentioned. ** ** This call is a no-op if zTab is not a virtual table. */ SQLITE_PRIVATE int sqlite3VtabCallDestroy(sqlite3 *db, int iDb, const char *zTab){ int rc = SQLITE_OK; Table *pTab; pTab = sqlite3FindTable(db, zTab, db->aDb[iDb].zDbSName); if( pTab!=0 && ALWAYS(pTab->pVTable!=0) ){ VTable *p; int (*xDestroy)(sqlite3_vtab *); for(p=pTab->pVTable; p; p=p->pNext){ assert( p->pVtab ); if( p->pVtab->nRef>0 ){ return SQLITE_LOCKED; } } p = vtabDisconnectAll(db, pTab); xDestroy = p->pMod->pModule->xDestroy; if( xDestroy==0 ) xDestroy = p->pMod->pModule->xDisconnect; assert( xDestroy!=0 ); pTab->nTabRef++; rc = xDestroy(p->pVtab); /* Remove the sqlite3_vtab* from the aVTrans[] array, if applicable */ if( rc==SQLITE_OK ){ assert( pTab->pVTable==p && p->pNext==0 ); p->pVtab = 0; pTab->pVTable = 0; sqlite3VtabUnlock(p); } sqlite3DeleteTable(db, pTab); } return rc; } /* ** This function invokes either the xRollback or xCommit method ** of each of the virtual tables in the sqlite3.aVTrans array. The method ** called is identified by the second argument, "offset", which is ** the offset of the method to call in the sqlite3_module structure. ** ** The array is cleared after invoking the callbacks. */ static void callFinaliser(sqlite3 *db, int offset){ int i; if( db->aVTrans ){ VTable **aVTrans = db->aVTrans; db->aVTrans = 0; for(i=0; inVTrans; i++){ VTable *pVTab = aVTrans[i]; sqlite3_vtab *p = pVTab->pVtab; if( p ){ int (*x)(sqlite3_vtab *); x = *(int (**)(sqlite3_vtab *))((char *)p->pModule + offset); if( x ) x(p); } pVTab->iSavepoint = 0; sqlite3VtabUnlock(pVTab); } sqlite3DbFree(db, aVTrans); db->nVTrans = 0; } } /* ** Invoke the xSync method of all virtual tables in the sqlite3.aVTrans ** array. Return the error code for the first error that occurs, or ** SQLITE_OK if all xSync operations are successful. ** ** If an error message is available, leave it in p->zErrMsg. */ SQLITE_PRIVATE int sqlite3VtabSync(sqlite3 *db, Vdbe *p){ int i; int rc = SQLITE_OK; VTable **aVTrans = db->aVTrans; db->aVTrans = 0; for(i=0; rc==SQLITE_OK && inVTrans; i++){ int (*x)(sqlite3_vtab *); sqlite3_vtab *pVtab = aVTrans[i]->pVtab; if( pVtab && (x = pVtab->pModule->xSync)!=0 ){ rc = x(pVtab); sqlite3VtabImportErrmsg(p, pVtab); } } db->aVTrans = aVTrans; return rc; } /* ** Invoke the xRollback method of all virtual tables in the ** sqlite3.aVTrans array. Then clear the array itself. */ SQLITE_PRIVATE int sqlite3VtabRollback(sqlite3 *db){ callFinaliser(db, offsetof(sqlite3_module,xRollback)); return SQLITE_OK; } /* ** Invoke the xCommit method of all virtual tables in the ** sqlite3.aVTrans array. Then clear the array itself. */ SQLITE_PRIVATE int sqlite3VtabCommit(sqlite3 *db){ callFinaliser(db, offsetof(sqlite3_module,xCommit)); return SQLITE_OK; } /* ** If the virtual table pVtab supports the transaction interface ** (xBegin/xRollback/xCommit and optionally xSync) and a transaction is ** not currently open, invoke the xBegin method now. ** ** If the xBegin call is successful, place the sqlite3_vtab pointer ** in the sqlite3.aVTrans array. */ SQLITE_PRIVATE int sqlite3VtabBegin(sqlite3 *db, VTable *pVTab){ int rc = SQLITE_OK; const sqlite3_module *pModule; /* Special case: If db->aVTrans is NULL and db->nVTrans is greater ** than zero, then this function is being called from within a ** virtual module xSync() callback. It is illegal to write to ** virtual module tables in this case, so return SQLITE_LOCKED. */ if( sqlite3VtabInSync(db) ){ return SQLITE_LOCKED; } if( !pVTab ){ return SQLITE_OK; } pModule = pVTab->pVtab->pModule; if( pModule->xBegin ){ int i; /* If pVtab is already in the aVTrans array, return early */ for(i=0; inVTrans; i++){ if( db->aVTrans[i]==pVTab ){ return SQLITE_OK; } } /* Invoke the xBegin method. If successful, add the vtab to the ** sqlite3.aVTrans[] array. */ rc = growVTrans(db); if( rc==SQLITE_OK ){ rc = pModule->xBegin(pVTab->pVtab); if( rc==SQLITE_OK ){ int iSvpt = db->nStatement + db->nSavepoint; addToVTrans(db, pVTab); if( iSvpt && pModule->xSavepoint ){ pVTab->iSavepoint = iSvpt; rc = pModule->xSavepoint(pVTab->pVtab, iSvpt-1); } } } } return rc; } /* ** Invoke either the xSavepoint, xRollbackTo or xRelease method of all ** virtual tables that currently have an open transaction. Pass iSavepoint ** as the second argument to the virtual table method invoked. ** ** If op is SAVEPOINT_BEGIN, the xSavepoint method is invoked. If it is ** SAVEPOINT_ROLLBACK, the xRollbackTo method. Otherwise, if op is ** SAVEPOINT_RELEASE, then the xRelease method of each virtual table with ** an open transaction is invoked. ** ** If any virtual table method returns an error code other than SQLITE_OK, ** processing is abandoned and the error returned to the caller of this ** function immediately. If all calls to virtual table methods are successful, ** SQLITE_OK is returned. */ SQLITE_PRIVATE int sqlite3VtabSavepoint(sqlite3 *db, int op, int iSavepoint){ int rc = SQLITE_OK; assert( op==SAVEPOINT_RELEASE||op==SAVEPOINT_ROLLBACK||op==SAVEPOINT_BEGIN ); assert( iSavepoint>=-1 ); if( db->aVTrans ){ int i; for(i=0; rc==SQLITE_OK && inVTrans; i++){ VTable *pVTab = db->aVTrans[i]; const sqlite3_module *pMod = pVTab->pMod->pModule; if( pVTab->pVtab && pMod->iVersion>=2 ){ int (*xMethod)(sqlite3_vtab *, int); sqlite3VtabLock(pVTab); switch( op ){ case SAVEPOINT_BEGIN: xMethod = pMod->xSavepoint; pVTab->iSavepoint = iSavepoint+1; break; case SAVEPOINT_ROLLBACK: xMethod = pMod->xRollbackTo; break; default: xMethod = pMod->xRelease; break; } if( xMethod && pVTab->iSavepoint>iSavepoint ){ rc = xMethod(pVTab->pVtab, iSavepoint); } sqlite3VtabUnlock(pVTab); } } } return rc; } /* ** The first parameter (pDef) is a function implementation. The ** second parameter (pExpr) is the first argument to this function. ** If pExpr is a column in a virtual table, then let the virtual ** table implementation have an opportunity to overload the function. ** ** This routine is used to allow virtual table implementations to ** overload MATCH, LIKE, GLOB, and REGEXP operators. ** ** Return either the pDef argument (indicating no change) or a ** new FuncDef structure that is marked as ephemeral using the ** SQLITE_FUNC_EPHEM flag. */ SQLITE_PRIVATE FuncDef *sqlite3VtabOverloadFunction( sqlite3 *db, /* Database connection for reporting malloc problems */ FuncDef *pDef, /* Function to possibly overload */ int nArg, /* Number of arguments to the function */ Expr *pExpr /* First argument to the function */ ){ Table *pTab; sqlite3_vtab *pVtab; sqlite3_module *pMod; void (*xSFunc)(sqlite3_context*,int,sqlite3_value**) = 0; void *pArg = 0; FuncDef *pNew; int rc = 0; /* Check to see the left operand is a column in a virtual table */ if( NEVER(pExpr==0) ) return pDef; if( pExpr->op!=TK_COLUMN ) return pDef; pTab = pExpr->y.pTab; if( pTab==0 ) return pDef; if( !IsVirtual(pTab) ) return pDef; pVtab = sqlite3GetVTable(db, pTab)->pVtab; assert( pVtab!=0 ); assert( pVtab->pModule!=0 ); pMod = (sqlite3_module *)pVtab->pModule; if( pMod->xFindFunction==0 ) return pDef; /* Call the xFindFunction method on the virtual table implementation ** to see if the implementation wants to overload this function. ** ** Though undocumented, we have historically always invoked xFindFunction ** with an all lower-case function name. Continue in this tradition to ** avoid any chance of an incompatibility. */ #ifdef SQLITE_DEBUG { int i; for(i=0; pDef->zName[i]; i++){ unsigned char x = (unsigned char)pDef->zName[i]; assert( x==sqlite3UpperToLower[x] ); } } #endif rc = pMod->xFindFunction(pVtab, nArg, pDef->zName, &xSFunc, &pArg); if( rc==0 ){ return pDef; } /* Create a new ephemeral function definition for the overloaded ** function */ pNew = sqlite3DbMallocZero(db, sizeof(*pNew) + sqlite3Strlen30(pDef->zName) + 1); if( pNew==0 ){ return pDef; } *pNew = *pDef; pNew->zName = (const char*)&pNew[1]; memcpy((char*)&pNew[1], pDef->zName, sqlite3Strlen30(pDef->zName)+1); pNew->xSFunc = xSFunc; pNew->pUserData = pArg; pNew->funcFlags |= SQLITE_FUNC_EPHEM; return pNew; } /* ** Make sure virtual table pTab is contained in the pParse->apVirtualLock[] ** array so that an OP_VBegin will get generated for it. Add pTab to the ** array if it is missing. If pTab is already in the array, this routine ** is a no-op. */ SQLITE_PRIVATE void sqlite3VtabMakeWritable(Parse *pParse, Table *pTab){ Parse *pToplevel = sqlite3ParseToplevel(pParse); int i, n; Table **apVtabLock; assert( IsVirtual(pTab) ); for(i=0; inVtabLock; i++){ if( pTab==pToplevel->apVtabLock[i] ) return; } n = (pToplevel->nVtabLock+1)*sizeof(pToplevel->apVtabLock[0]); apVtabLock = sqlite3Realloc(pToplevel->apVtabLock, n); if( apVtabLock ){ pToplevel->apVtabLock = apVtabLock; pToplevel->apVtabLock[pToplevel->nVtabLock++] = pTab; }else{ sqlite3OomFault(pToplevel->db); } } /* ** Check to see if virtual table module pMod can be have an eponymous ** virtual table instance. If it can, create one if one does not already ** exist. Return non-zero if the eponymous virtual table instance exists ** when this routine returns, and return zero if it does not exist. ** ** An eponymous virtual table instance is one that is named after its ** module, and more importantly, does not require a CREATE VIRTUAL TABLE ** statement in order to come into existance. Eponymous virtual table ** instances always exist. They cannot be DROP-ed. ** ** Any virtual table module for which xConnect and xCreate are the same ** method can have an eponymous virtual table instance. */ SQLITE_PRIVATE int sqlite3VtabEponymousTableInit(Parse *pParse, Module *pMod){ const sqlite3_module *pModule = pMod->pModule; Table *pTab; char *zErr = 0; int rc; sqlite3 *db = pParse->db; if( pMod->pEpoTab ) return 1; if( pModule->xCreate!=0 && pModule->xCreate!=pModule->xConnect ) return 0; pTab = sqlite3DbMallocZero(db, sizeof(Table)); if( pTab==0 ) return 0; pTab->zName = sqlite3DbStrDup(db, pMod->zName); if( pTab->zName==0 ){ sqlite3DbFree(db, pTab); return 0; } pMod->pEpoTab = pTab; pTab->nTabRef = 1; pTab->pSchema = db->aDb[0].pSchema; assert( pTab->nModuleArg==0 ); pTab->iPKey = -1; addModuleArgument(pParse, pTab, sqlite3DbStrDup(db, pTab->zName)); addModuleArgument(pParse, pTab, 0); addModuleArgument(pParse, pTab, sqlite3DbStrDup(db, pTab->zName)); rc = vtabCallConstructor(db, pTab, pMod, pModule->xConnect, &zErr); if( rc ){ sqlite3ErrorMsg(pParse, "%s", zErr); sqlite3DbFree(db, zErr); sqlite3VtabEponymousTableClear(db, pMod); return 0; } return 1; } /* ** Erase the eponymous virtual table instance associated with ** virtual table module pMod, if it exists. */ SQLITE_PRIVATE void sqlite3VtabEponymousTableClear(sqlite3 *db, Module *pMod){ Table *pTab = pMod->pEpoTab; if( pTab!=0 ){ /* Mark the table as Ephemeral prior to deleting it, so that the ** sqlite3DeleteTable() routine will know that it is not stored in ** the schema. */ pTab->tabFlags |= TF_Ephemeral; sqlite3DeleteTable(db, pTab); pMod->pEpoTab = 0; } } /* ** Return the ON CONFLICT resolution mode in effect for the virtual ** table update operation currently in progress. ** ** The results of this routine are undefined unless it is called from ** within an xUpdate method. */ SQLITE_API int sqlite3_vtab_on_conflict(sqlite3 *db){ static const unsigned char aMap[] = { SQLITE_ROLLBACK, SQLITE_ABORT, SQLITE_FAIL, SQLITE_IGNORE, SQLITE_REPLACE }; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif assert( OE_Rollback==1 && OE_Abort==2 && OE_Fail==3 ); assert( OE_Ignore==4 && OE_Replace==5 ); assert( db->vtabOnConflict>=1 && db->vtabOnConflict<=5 ); return (int)aMap[db->vtabOnConflict-1]; } /* ** Call from within the xCreate() or xConnect() methods to provide ** the SQLite core with additional information about the behavior ** of the virtual table being implemented. */ SQLITE_API int sqlite3_vtab_config(sqlite3 *db, int op, ...){ va_list ap; int rc = SQLITE_OK; VtabCtx *p; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); p = db->pVtabCtx; if( !p ){ rc = SQLITE_MISUSE_BKPT; }else{ assert( p->pTab==0 || IsVirtual(p->pTab) ); va_start(ap, op); switch( op ){ case SQLITE_VTAB_CONSTRAINT_SUPPORT: { p->pVTable->bConstraint = (u8)va_arg(ap, int); break; } case SQLITE_VTAB_INNOCUOUS: { p->pVTable->eVtabRisk = SQLITE_VTABRISK_Low; break; } case SQLITE_VTAB_DIRECTONLY: { p->pVTable->eVtabRisk = SQLITE_VTABRISK_High; break; } default: { rc = SQLITE_MISUSE_BKPT; break; } } va_end(ap); } if( rc!=SQLITE_OK ) sqlite3Error(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ /************** End of vtab.c ************************************************/ /************** Begin file wherecode.c ***************************************/ /* ** 2015-06-06 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This module contains C code that generates VDBE code used to process ** the WHERE clause of SQL statements. ** ** This file was split off from where.c on 2015-06-06 in order to reduce the ** size of where.c and make it easier to edit. This file contains the routines ** that actually generate the bulk of the WHERE loop code. The original where.c ** file retains the code that does query planning and analysis. */ /* #include "sqliteInt.h" */ /************** Include whereInt.h in the middle of wherecode.c **************/ /************** Begin file whereInt.h ****************************************/ /* ** 2013-11-12 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains structure and macro definitions for the query ** planner logic in "where.c". These definitions are broken out into ** a separate source file for easier editing. */ #ifndef SQLITE_WHEREINT_H #define SQLITE_WHEREINT_H /* ** Trace output macros */ #if defined(SQLITE_TEST) || defined(SQLITE_DEBUG) /***/ extern int sqlite3WhereTrace; #endif #if defined(SQLITE_DEBUG) \ && (defined(SQLITE_TEST) || defined(SQLITE_ENABLE_WHERETRACE)) # define WHERETRACE(K,X) if(sqlite3WhereTrace&(K)) sqlite3DebugPrintf X # define WHERETRACE_ENABLED 1 #else # define WHERETRACE(K,X) #endif /* Forward references */ typedef struct WhereClause WhereClause; typedef struct WhereMaskSet WhereMaskSet; typedef struct WhereOrInfo WhereOrInfo; typedef struct WhereAndInfo WhereAndInfo; typedef struct WhereLevel WhereLevel; typedef struct WhereLoop WhereLoop; typedef struct WherePath WherePath; typedef struct WhereTerm WhereTerm; typedef struct WhereLoopBuilder WhereLoopBuilder; typedef struct WhereScan WhereScan; typedef struct WhereOrCost WhereOrCost; typedef struct WhereOrSet WhereOrSet; /* ** This object contains information needed to implement a single nested ** loop in WHERE clause. ** ** Contrast this object with WhereLoop. This object describes the ** implementation of the loop. WhereLoop describes the algorithm. ** This object contains a pointer to the WhereLoop algorithm as one of ** its elements. ** ** The WhereInfo object contains a single instance of this object for ** each term in the FROM clause (which is to say, for each of the ** nested loops as implemented). The order of WhereLevel objects determines ** the loop nested order, with WhereInfo.a[0] being the outer loop and ** WhereInfo.a[WhereInfo.nLevel-1] being the inner loop. */ struct WhereLevel { int iLeftJoin; /* Memory cell used to implement LEFT OUTER JOIN */ int iTabCur; /* The VDBE cursor used to access the table */ int iIdxCur; /* The VDBE cursor used to access pIdx */ int addrBrk; /* Jump here to break out of the loop */ int addrNxt; /* Jump here to start the next IN combination */ int addrSkip; /* Jump here for next iteration of skip-scan */ int addrCont; /* Jump here to continue with the next loop cycle */ int addrFirst; /* First instruction of interior of the loop */ int addrBody; /* Beginning of the body of this loop */ int regBignull; /* big-null flag reg. True if a NULL-scan is needed */ int addrBignull; /* Jump here for next part of big-null scan */ #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS u32 iLikeRepCntr; /* LIKE range processing counter register (times 2) */ int addrLikeRep; /* LIKE range processing address */ #endif u8 iFrom; /* Which entry in the FROM clause */ u8 op, p3, p5; /* Opcode, P3 & P5 of the opcode that ends the loop */ int p1, p2; /* Operands of the opcode used to end the loop */ union { /* Information that depends on pWLoop->wsFlags */ struct { int nIn; /* Number of entries in aInLoop[] */ struct InLoop { int iCur; /* The VDBE cursor used by this IN operator */ int addrInTop; /* Top of the IN loop */ int iBase; /* Base register of multi-key index record */ int nPrefix; /* Number of prior entires in the key */ u8 eEndLoopOp; /* IN Loop terminator. OP_Next or OP_Prev */ } *aInLoop; /* Information about each nested IN operator */ } in; /* Used when pWLoop->wsFlags&WHERE_IN_ABLE */ Index *pCovidx; /* Possible covering index for WHERE_MULTI_OR */ } u; struct WhereLoop *pWLoop; /* The selected WhereLoop object */ Bitmask notReady; /* FROM entries not usable at this level */ #ifdef SQLITE_ENABLE_STMT_SCANSTATUS int addrVisit; /* Address at which row is visited */ #endif }; /* ** Each instance of this object represents an algorithm for evaluating one ** term of a join. Every term of the FROM clause will have at least ** one corresponding WhereLoop object (unless INDEXED BY constraints ** prevent a query solution - which is an error) and many terms of the ** FROM clause will have multiple WhereLoop objects, each describing a ** potential way of implementing that FROM-clause term, together with ** dependencies and cost estimates for using the chosen algorithm. ** ** Query planning consists of building up a collection of these WhereLoop ** objects, then computing a particular sequence of WhereLoop objects, with ** one WhereLoop object per FROM clause term, that satisfy all dependencies ** and that minimize the overall cost. */ struct WhereLoop { Bitmask prereq; /* Bitmask of other loops that must run first */ Bitmask maskSelf; /* Bitmask identifying table iTab */ #ifdef SQLITE_DEBUG char cId; /* Symbolic ID of this loop for debugging use */ #endif u8 iTab; /* Position in FROM clause of table for this loop */ u8 iSortIdx; /* Sorting index number. 0==None */ LogEst rSetup; /* One-time setup cost (ex: create transient index) */ LogEst rRun; /* Cost of running each loop */ LogEst nOut; /* Estimated number of output rows */ union { struct { /* Information for internal btree tables */ u16 nEq; /* Number of equality constraints */ u16 nBtm; /* Size of BTM vector */ u16 nTop; /* Size of TOP vector */ u16 nDistinctCol; /* Index columns used to sort for DISTINCT */ Index *pIndex; /* Index used, or NULL */ } btree; struct { /* Information for virtual tables */ int idxNum; /* Index number */ u8 needFree; /* True if sqlite3_free(idxStr) is needed */ i8 isOrdered; /* True if satisfies ORDER BY */ u16 omitMask; /* Terms that may be omitted */ char *idxStr; /* Index identifier string */ } vtab; } u; u32 wsFlags; /* WHERE_* flags describing the plan */ u16 nLTerm; /* Number of entries in aLTerm[] */ u16 nSkip; /* Number of NULL aLTerm[] entries */ /**** whereLoopXfer() copies fields above ***********************/ # define WHERE_LOOP_XFER_SZ offsetof(WhereLoop,nLSlot) u16 nLSlot; /* Number of slots allocated for aLTerm[] */ WhereTerm **aLTerm; /* WhereTerms used */ WhereLoop *pNextLoop; /* Next WhereLoop object in the WhereClause */ WhereTerm *aLTermSpace[3]; /* Initial aLTerm[] space */ }; /* This object holds the prerequisites and the cost of running a ** subquery on one operand of an OR operator in the WHERE clause. ** See WhereOrSet for additional information */ struct WhereOrCost { Bitmask prereq; /* Prerequisites */ LogEst rRun; /* Cost of running this subquery */ LogEst nOut; /* Number of outputs for this subquery */ }; /* The WhereOrSet object holds a set of possible WhereOrCosts that ** correspond to the subquery(s) of OR-clause processing. Only the ** best N_OR_COST elements are retained. */ #define N_OR_COST 3 struct WhereOrSet { u16 n; /* Number of valid a[] entries */ WhereOrCost a[N_OR_COST]; /* Set of best costs */ }; /* ** Each instance of this object holds a sequence of WhereLoop objects ** that implement some or all of a query plan. ** ** Think of each WhereLoop object as a node in a graph with arcs ** showing dependencies and costs for travelling between nodes. (That is ** not a completely accurate description because WhereLoop costs are a ** vector, not a scalar, and because dependencies are many-to-one, not ** one-to-one as are graph nodes. But it is a useful visualization aid.) ** Then a WherePath object is a path through the graph that visits some ** or all of the WhereLoop objects once. ** ** The "solver" works by creating the N best WherePath objects of length ** 1. Then using those as a basis to compute the N best WherePath objects ** of length 2. And so forth until the length of WherePaths equals the ** number of nodes in the FROM clause. The best (lowest cost) WherePath ** at the end is the chosen query plan. */ struct WherePath { Bitmask maskLoop; /* Bitmask of all WhereLoop objects in this path */ Bitmask revLoop; /* aLoop[]s that should be reversed for ORDER BY */ LogEst nRow; /* Estimated number of rows generated by this path */ LogEst rCost; /* Total cost of this path */ LogEst rUnsorted; /* Total cost of this path ignoring sorting costs */ i8 isOrdered; /* No. of ORDER BY terms satisfied. -1 for unknown */ WhereLoop **aLoop; /* Array of WhereLoop objects implementing this path */ }; /* ** The query generator uses an array of instances of this structure to ** help it analyze the subexpressions of the WHERE clause. Each WHERE ** clause subexpression is separated from the others by AND operators, ** usually, or sometimes subexpressions separated by OR. ** ** All WhereTerms are collected into a single WhereClause structure. ** The following identity holds: ** ** WhereTerm.pWC->a[WhereTerm.idx] == WhereTerm ** ** When a term is of the form: ** ** X ** ** where X is a column name and is one of certain operators, ** then WhereTerm.leftCursor and WhereTerm.u.leftColumn record the ** cursor number and column number for X. WhereTerm.eOperator records ** the using a bitmask encoding defined by WO_xxx below. The ** use of a bitmask encoding for the operator allows us to search ** quickly for terms that match any of several different operators. ** ** A WhereTerm might also be two or more subterms connected by OR: ** ** (t1.X ) OR (t1.Y ) OR .... ** ** In this second case, wtFlag has the TERM_ORINFO bit set and eOperator==WO_OR ** and the WhereTerm.u.pOrInfo field points to auxiliary information that ** is collected about the OR clause. ** ** If a term in the WHERE clause does not match either of the two previous ** categories, then eOperator==0. The WhereTerm.pExpr field is still set ** to the original subexpression content and wtFlags is set up appropriately ** but no other fields in the WhereTerm object are meaningful. ** ** When eOperator!=0, prereqRight and prereqAll record sets of cursor numbers, ** but they do so indirectly. A single WhereMaskSet structure translates ** cursor number into bits and the translated bit is stored in the prereq ** fields. The translation is used in order to maximize the number of ** bits that will fit in a Bitmask. The VDBE cursor numbers might be ** spread out over the non-negative integers. For example, the cursor ** numbers might be 3, 8, 9, 10, 20, 23, 41, and 45. The WhereMaskSet ** translates these sparse cursor numbers into consecutive integers ** beginning with 0 in order to make the best possible use of the available ** bits in the Bitmask. So, in the example above, the cursor numbers ** would be mapped into integers 0 through 7. ** ** The number of terms in a join is limited by the number of bits ** in prereqRight and prereqAll. The default is 64 bits, hence SQLite ** is only able to process joins with 64 or fewer tables. */ struct WhereTerm { Expr *pExpr; /* Pointer to the subexpression that is this term */ WhereClause *pWC; /* The clause this term is part of */ LogEst truthProb; /* Probability of truth for this expression */ u16 wtFlags; /* TERM_xxx bit flags. See below */ u16 eOperator; /* A WO_xx value describing */ u8 nChild; /* Number of children that must disable us */ u8 eMatchOp; /* Op for vtab MATCH/LIKE/GLOB/REGEXP terms */ int iParent; /* Disable pWC->a[iParent] when this term disabled */ int leftCursor; /* Cursor number of X in "X " */ int iField; /* Field in (?,?,?) IN (SELECT...) vector */ union { int leftColumn; /* Column number of X in "X " */ WhereOrInfo *pOrInfo; /* Extra information if (eOperator & WO_OR)!=0 */ WhereAndInfo *pAndInfo; /* Extra information if (eOperator& WO_AND)!=0 */ } u; Bitmask prereqRight; /* Bitmask of tables used by pExpr->pRight */ Bitmask prereqAll; /* Bitmask of tables referenced by pExpr */ }; /* ** Allowed values of WhereTerm.wtFlags */ #define TERM_DYNAMIC 0x0001 /* Need to call sqlite3ExprDelete(db, pExpr) */ #define TERM_VIRTUAL 0x0002 /* Added by the optimizer. Do not code */ #define TERM_CODED 0x0004 /* This term is already coded */ #define TERM_COPIED 0x0008 /* Has a child */ #define TERM_ORINFO 0x0010 /* Need to free the WhereTerm.u.pOrInfo object */ #define TERM_ANDINFO 0x0020 /* Need to free the WhereTerm.u.pAndInfo obj */ #define TERM_OR_OK 0x0040 /* Used during OR-clause processing */ #ifdef SQLITE_ENABLE_STAT4 # define TERM_VNULL 0x0080 /* Manufactured x>NULL or x<=NULL term */ #else # define TERM_VNULL 0x0000 /* Disabled if not using stat4 */ #endif #define TERM_LIKEOPT 0x0100 /* Virtual terms from the LIKE optimization */ #define TERM_LIKECOND 0x0200 /* Conditionally this LIKE operator term */ #define TERM_LIKE 0x0400 /* The original LIKE operator */ #define TERM_IS 0x0800 /* Term.pExpr is an IS operator */ #define TERM_VARSELECT 0x1000 /* Term.pExpr contains a correlated sub-query */ #define TERM_HEURTRUTH 0x2000 /* Heuristic truthProb used */ #ifdef SQLITE_ENABLE_STAT4 # define TERM_HIGHTRUTH 0x4000 /* Term excludes few rows */ #else # define TERM_HIGHTRUTH 0 /* Only used with STAT4 */ #endif /* ** An instance of the WhereScan object is used as an iterator for locating ** terms in the WHERE clause that are useful to the query planner. */ struct WhereScan { WhereClause *pOrigWC; /* Original, innermost WhereClause */ WhereClause *pWC; /* WhereClause currently being scanned */ const char *zCollName; /* Required collating sequence, if not NULL */ Expr *pIdxExpr; /* Search for this index expression */ char idxaff; /* Must match this affinity, if zCollName!=NULL */ unsigned char nEquiv; /* Number of entries in aEquiv[] */ unsigned char iEquiv; /* Next unused slot in aEquiv[] */ u32 opMask; /* Acceptable operators */ int k; /* Resume scanning at this->pWC->a[this->k] */ int aiCur[11]; /* Cursors in the equivalence class */ i16 aiColumn[11]; /* Corresponding column number in the eq-class */ }; /* ** An instance of the following structure holds all information about a ** WHERE clause. Mostly this is a container for one or more WhereTerms. ** ** Explanation of pOuter: For a WHERE clause of the form ** ** a AND ((b AND c) OR (d AND e)) AND f ** ** There are separate WhereClause objects for the whole clause and for ** the subclauses "(b AND c)" and "(d AND e)". The pOuter field of the ** subclauses points to the WhereClause object for the whole clause. */ struct WhereClause { WhereInfo *pWInfo; /* WHERE clause processing context */ WhereClause *pOuter; /* Outer conjunction */ u8 op; /* Split operator. TK_AND or TK_OR */ u8 hasOr; /* True if any a[].eOperator is WO_OR */ int nTerm; /* Number of terms */ int nSlot; /* Number of entries in a[] */ WhereTerm *a; /* Each a[] describes a term of the WHERE cluase */ #if defined(SQLITE_SMALL_STACK) WhereTerm aStatic[1]; /* Initial static space for a[] */ #else WhereTerm aStatic[8]; /* Initial static space for a[] */ #endif }; /* ** A WhereTerm with eOperator==WO_OR has its u.pOrInfo pointer set to ** a dynamically allocated instance of the following structure. */ struct WhereOrInfo { WhereClause wc; /* Decomposition into subterms */ Bitmask indexable; /* Bitmask of all indexable tables in the clause */ }; /* ** A WhereTerm with eOperator==WO_AND has its u.pAndInfo pointer set to ** a dynamically allocated instance of the following structure. */ struct WhereAndInfo { WhereClause wc; /* The subexpression broken out */ }; /* ** An instance of the following structure keeps track of a mapping ** between VDBE cursor numbers and bits of the bitmasks in WhereTerm. ** ** The VDBE cursor numbers are small integers contained in ** SrcList_item.iCursor and Expr.iTable fields. For any given WHERE ** clause, the cursor numbers might not begin with 0 and they might ** contain gaps in the numbering sequence. But we want to make maximum ** use of the bits in our bitmasks. This structure provides a mapping ** from the sparse cursor numbers into consecutive integers beginning ** with 0. ** ** If WhereMaskSet.ix[A]==B it means that The A-th bit of a Bitmask ** corresponds VDBE cursor number B. The A-th bit of a bitmask is 1<3, 5->1, 8->2, 29->0, ** 57->5, 73->4. Or one of 719 other combinations might be used. It ** does not really matter. What is important is that sparse cursor ** numbers all get mapped into bit numbers that begin with 0 and contain ** no gaps. */ struct WhereMaskSet { int bVarSelect; /* Used by sqlite3WhereExprUsage() */ int n; /* Number of assigned cursor values */ int ix[BMS]; /* Cursor assigned to each bit */ }; /* ** Initialize a WhereMaskSet object */ #define initMaskSet(P) (P)->n=0 /* ** This object is a convenience wrapper holding all information needed ** to construct WhereLoop objects for a particular query. */ struct WhereLoopBuilder { WhereInfo *pWInfo; /* Information about this WHERE */ WhereClause *pWC; /* WHERE clause terms */ ExprList *pOrderBy; /* ORDER BY clause */ WhereLoop *pNew; /* Template WhereLoop */ WhereOrSet *pOrSet; /* Record best loops here, if not NULL */ #ifdef SQLITE_ENABLE_STAT4 UnpackedRecord *pRec; /* Probe for stat4 (if required) */ int nRecValid; /* Number of valid fields currently in pRec */ #endif unsigned char bldFlags1; /* First set of SQLITE_BLDF_* flags */ unsigned char bldFlags2; /* Second set of SQLITE_BLDF_* flags */ unsigned int iPlanLimit; /* Search limiter */ }; /* Allowed values for WhereLoopBuider.bldFlags */ #define SQLITE_BLDF1_INDEXED 0x0001 /* An index is used */ #define SQLITE_BLDF1_UNIQUE 0x0002 /* All keys of a UNIQUE index used */ #define SQLITE_BLDF2_2NDPASS 0x0004 /* Second builder pass needed */ /* The WhereLoopBuilder.iPlanLimit is used to limit the number of ** index+constraint combinations the query planner will consider for a ** particular query. If this parameter is unlimited, then certain ** pathological queries can spend excess time in the sqlite3WhereBegin() ** routine. The limit is high enough that is should not impact real-world ** queries. ** ** SQLITE_QUERY_PLANNER_LIMIT is the baseline limit. The limit is ** increased by SQLITE_QUERY_PLANNER_LIMIT_INCR before each term of the FROM ** clause is processed, so that every table in a join is guaranteed to be ** able to propose a some index+constraint combinations even if the initial ** baseline limit was exhausted by prior tables of the join. */ #ifndef SQLITE_QUERY_PLANNER_LIMIT # define SQLITE_QUERY_PLANNER_LIMIT 20000 #endif #ifndef SQLITE_QUERY_PLANNER_LIMIT_INCR # define SQLITE_QUERY_PLANNER_LIMIT_INCR 1000 #endif /* ** Each instance of this object records a change to a single node ** in an expression tree to cause that node to point to a column ** of an index rather than an expression or a virtual column. All ** such transformations need to be undone at the end of WHERE clause ** processing. */ typedef struct WhereExprMod WhereExprMod; struct WhereExprMod { WhereExprMod *pNext; /* Next translation on a list of them all */ Expr *pExpr; /* The Expr node that was transformed */ Expr orig; /* Original value of the Expr node */ }; /* ** The WHERE clause processing routine has two halves. The ** first part does the start of the WHERE loop and the second ** half does the tail of the WHERE loop. An instance of ** this structure is returned by the first half and passed ** into the second half to give some continuity. ** ** An instance of this object holds the complete state of the query ** planner. */ struct WhereInfo { Parse *pParse; /* Parsing and code generating context */ SrcList *pTabList; /* List of tables in the join */ ExprList *pOrderBy; /* The ORDER BY clause or NULL */ ExprList *pResultSet; /* Result set of the query */ Expr *pWhere; /* The complete WHERE clause */ int aiCurOnePass[2]; /* OP_OpenWrite cursors for the ONEPASS opt */ int iContinue; /* Jump here to continue with next record */ int iBreak; /* Jump here to break out of the loop */ int savedNQueryLoop; /* pParse->nQueryLoop outside the WHERE loop */ u16 wctrlFlags; /* Flags originally passed to sqlite3WhereBegin() */ LogEst iLimit; /* LIMIT if wctrlFlags has WHERE_USE_LIMIT */ u8 nLevel; /* Number of nested loop */ i8 nOBSat; /* Number of ORDER BY terms satisfied by indices */ u8 eOnePass; /* ONEPASS_OFF, or _SINGLE, or _MULTI */ u8 eDistinct; /* One of the WHERE_DISTINCT_* values */ unsigned bDeferredSeek :1; /* Uses OP_DeferredSeek */ unsigned untestedTerms :1; /* Not all WHERE terms resolved by outer loop */ unsigned bOrderedInnerLoop:1;/* True if only the inner-most loop is ordered */ unsigned sorted :1; /* True if really sorted (not just grouped) */ LogEst nRowOut; /* Estimated number of output rows */ int iTop; /* The very beginning of the WHERE loop */ WhereLoop *pLoops; /* List of all WhereLoop objects */ WhereExprMod *pExprMods; /* Expression modifications */ Bitmask revMask; /* Mask of ORDER BY terms that need reversing */ WhereClause sWC; /* Decomposition of the WHERE clause */ WhereMaskSet sMaskSet; /* Map cursor numbers to bitmasks */ WhereLevel a[1]; /* Information about each nest loop in WHERE */ }; /* ** Private interfaces - callable only by other where.c routines. ** ** where.c: */ SQLITE_PRIVATE Bitmask sqlite3WhereGetMask(WhereMaskSet*,int); #ifdef WHERETRACE_ENABLED SQLITE_PRIVATE void sqlite3WhereClausePrint(WhereClause *pWC); SQLITE_PRIVATE void sqlite3WhereTermPrint(WhereTerm *pTerm, int iTerm); SQLITE_PRIVATE void sqlite3WhereLoopPrint(WhereLoop *p, WhereClause *pWC); #endif SQLITE_PRIVATE WhereTerm *sqlite3WhereFindTerm( WhereClause *pWC, /* The WHERE clause to be searched */ int iCur, /* Cursor number of LHS */ int iColumn, /* Column number of LHS */ Bitmask notReady, /* RHS must not overlap with this mask */ u32 op, /* Mask of WO_xx values describing operator */ Index *pIdx /* Must be compatible with this index, if not NULL */ ); /* wherecode.c: */ #ifndef SQLITE_OMIT_EXPLAIN SQLITE_PRIVATE int sqlite3WhereExplainOneScan( Parse *pParse, /* Parse context */ SrcList *pTabList, /* Table list this loop refers to */ WhereLevel *pLevel, /* Scan to write OP_Explain opcode for */ u16 wctrlFlags /* Flags passed to sqlite3WhereBegin() */ ); #else # define sqlite3WhereExplainOneScan(u,v,w,x) 0 #endif /* SQLITE_OMIT_EXPLAIN */ #ifdef SQLITE_ENABLE_STMT_SCANSTATUS SQLITE_PRIVATE void sqlite3WhereAddScanStatus( Vdbe *v, /* Vdbe to add scanstatus entry to */ SrcList *pSrclist, /* FROM clause pLvl reads data from */ WhereLevel *pLvl, /* Level to add scanstatus() entry for */ int addrExplain /* Address of OP_Explain (or 0) */ ); #else # define sqlite3WhereAddScanStatus(a, b, c, d) ((void)d) #endif SQLITE_PRIVATE Bitmask sqlite3WhereCodeOneLoopStart( Parse *pParse, /* Parsing context */ Vdbe *v, /* Prepared statement under construction */ WhereInfo *pWInfo, /* Complete information about the WHERE clause */ int iLevel, /* Which level of pWInfo->a[] should be coded */ WhereLevel *pLevel, /* The current level pointer */ Bitmask notReady /* Which tables are currently available */ ); /* whereexpr.c: */ SQLITE_PRIVATE void sqlite3WhereClauseInit(WhereClause*,WhereInfo*); SQLITE_PRIVATE void sqlite3WhereClauseClear(WhereClause*); SQLITE_PRIVATE void sqlite3WhereSplit(WhereClause*,Expr*,u8); SQLITE_PRIVATE Bitmask sqlite3WhereExprUsage(WhereMaskSet*, Expr*); SQLITE_PRIVATE Bitmask sqlite3WhereExprUsageNN(WhereMaskSet*, Expr*); SQLITE_PRIVATE Bitmask sqlite3WhereExprListUsage(WhereMaskSet*, ExprList*); SQLITE_PRIVATE void sqlite3WhereExprAnalyze(SrcList*, WhereClause*); SQLITE_PRIVATE void sqlite3WhereTabFuncArgs(Parse*, struct SrcList_item*, WhereClause*); /* ** Bitmasks for the operators on WhereTerm objects. These are all ** operators that are of interest to the query planner. An ** OR-ed combination of these values can be used when searching for ** particular WhereTerms within a WhereClause. ** ** Value constraints: ** WO_EQ == SQLITE_INDEX_CONSTRAINT_EQ ** WO_LT == SQLITE_INDEX_CONSTRAINT_LT ** WO_LE == SQLITE_INDEX_CONSTRAINT_LE ** WO_GT == SQLITE_INDEX_CONSTRAINT_GT ** WO_GE == SQLITE_INDEX_CONSTRAINT_GE */ #define WO_IN 0x0001 #define WO_EQ 0x0002 #define WO_LT (WO_EQ<<(TK_LT-TK_EQ)) #define WO_LE (WO_EQ<<(TK_LE-TK_EQ)) #define WO_GT (WO_EQ<<(TK_GT-TK_EQ)) #define WO_GE (WO_EQ<<(TK_GE-TK_EQ)) #define WO_AUX 0x0040 /* Op useful to virtual tables only */ #define WO_IS 0x0080 #define WO_ISNULL 0x0100 #define WO_OR 0x0200 /* Two or more OR-connected terms */ #define WO_AND 0x0400 /* Two or more AND-connected terms */ #define WO_EQUIV 0x0800 /* Of the form A==B, both columns */ #define WO_NOOP 0x1000 /* This term does not restrict search space */ #define WO_ALL 0x1fff /* Mask of all possible WO_* values */ #define WO_SINGLE 0x01ff /* Mask of all non-compound WO_* values */ /* ** These are definitions of bits in the WhereLoop.wsFlags field. ** The particular combination of bits in each WhereLoop help to ** determine the algorithm that WhereLoop represents. */ #define WHERE_COLUMN_EQ 0x00000001 /* x=EXPR */ #define WHERE_COLUMN_RANGE 0x00000002 /* xEXPR */ #define WHERE_COLUMN_IN 0x00000004 /* x IN (...) */ #define WHERE_COLUMN_NULL 0x00000008 /* x IS NULL */ #define WHERE_CONSTRAINT 0x0000000f /* Any of the WHERE_COLUMN_xxx values */ #define WHERE_TOP_LIMIT 0x00000010 /* xEXPR or x>=EXPR constraint */ #define WHERE_BOTH_LIMIT 0x00000030 /* Both x>EXPR and xaiColumn[i]; if( i==XN_EXPR ) return ""; if( i==XN_ROWID ) return "rowid"; return pIdx->pTable->aCol[i].zName; } /* ** This routine is a helper for explainIndexRange() below ** ** pStr holds the text of an expression that we are building up one term ** at a time. This routine adds a new term to the end of the expression. ** Terms are separated by AND so add the "AND" text for second and subsequent ** terms only. */ static void explainAppendTerm( StrAccum *pStr, /* The text expression being built */ Index *pIdx, /* Index to read column names from */ int nTerm, /* Number of terms */ int iTerm, /* Zero-based index of first term. */ int bAnd, /* Non-zero to append " AND " */ const char *zOp /* Name of the operator */ ){ int i; assert( nTerm>=1 ); if( bAnd ) sqlite3_str_append(pStr, " AND ", 5); if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1); for(i=0; i1 ) sqlite3_str_append(pStr, ")", 1); sqlite3_str_append(pStr, zOp, 1); if( nTerm>1 ) sqlite3_str_append(pStr, "(", 1); for(i=0; i1 ) sqlite3_str_append(pStr, ")", 1); } /* ** Argument pLevel describes a strategy for scanning table pTab. This ** function appends text to pStr that describes the subset of table ** rows scanned by the strategy in the form of an SQL expression. ** ** For example, if the query: ** ** SELECT * FROM t1 WHERE a=1 AND b>2; ** ** is run and there is an index on (a, b), then this function returns a ** string similar to: ** ** "a=? AND b>?" */ static void explainIndexRange(StrAccum *pStr, WhereLoop *pLoop){ Index *pIndex = pLoop->u.btree.pIndex; u16 nEq = pLoop->u.btree.nEq; u16 nSkip = pLoop->nSkip; int i, j; if( nEq==0 && (pLoop->wsFlags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))==0 ) return; sqlite3_str_append(pStr, " (", 2); for(i=0; i=nSkip ? "%s=?" : "ANY(%s)", z); } j = i; if( pLoop->wsFlags&WHERE_BTM_LIMIT ){ explainAppendTerm(pStr, pIndex, pLoop->u.btree.nBtm, j, i, ">"); i = 1; } if( pLoop->wsFlags&WHERE_TOP_LIMIT ){ explainAppendTerm(pStr, pIndex, pLoop->u.btree.nTop, j, i, "<"); } sqlite3_str_append(pStr, ")", 1); } /* ** This function is a no-op unless currently processing an EXPLAIN QUERY PLAN ** command, or if either SQLITE_DEBUG or SQLITE_ENABLE_STMT_SCANSTATUS was ** defined at compile-time. If it is not a no-op, a single OP_Explain opcode ** is added to the output to describe the table scan strategy in pLevel. ** ** If an OP_Explain opcode is added to the VM, its address is returned. ** Otherwise, if no OP_Explain is coded, zero is returned. */ SQLITE_PRIVATE int sqlite3WhereExplainOneScan( Parse *pParse, /* Parse context */ SrcList *pTabList, /* Table list this loop refers to */ WhereLevel *pLevel, /* Scan to write OP_Explain opcode for */ u16 wctrlFlags /* Flags passed to sqlite3WhereBegin() */ ){ int ret = 0; #if !defined(SQLITE_DEBUG) && !defined(SQLITE_ENABLE_STMT_SCANSTATUS) if( sqlite3ParseToplevel(pParse)->explain==2 ) #endif { struct SrcList_item *pItem = &pTabList->a[pLevel->iFrom]; Vdbe *v = pParse->pVdbe; /* VM being constructed */ sqlite3 *db = pParse->db; /* Database handle */ int isSearch; /* True for a SEARCH. False for SCAN. */ WhereLoop *pLoop; /* The controlling WhereLoop object */ u32 flags; /* Flags that describe this loop */ char *zMsg; /* Text to add to EQP output */ StrAccum str; /* EQP output string */ char zBuf[100]; /* Initial space for EQP output string */ pLoop = pLevel->pWLoop; flags = pLoop->wsFlags; if( (flags&WHERE_MULTI_OR) || (wctrlFlags&WHERE_OR_SUBCLAUSE) ) return 0; isSearch = (flags&(WHERE_BTM_LIMIT|WHERE_TOP_LIMIT))!=0 || ((flags&WHERE_VIRTUALTABLE)==0 && (pLoop->u.btree.nEq>0)) || (wctrlFlags&(WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX)); sqlite3StrAccumInit(&str, db, zBuf, sizeof(zBuf), SQLITE_MAX_LENGTH); sqlite3_str_appendall(&str, isSearch ? "SEARCH" : "SCAN"); if( pItem->pSelect ){ sqlite3_str_appendf(&str, " SUBQUERY %u", pItem->pSelect->selId); }else{ sqlite3_str_appendf(&str, " TABLE %s", pItem->zName); } if( pItem->zAlias ){ sqlite3_str_appendf(&str, " AS %s", pItem->zAlias); } if( (flags & (WHERE_IPK|WHERE_VIRTUALTABLE))==0 ){ const char *zFmt = 0; Index *pIdx; assert( pLoop->u.btree.pIndex!=0 ); pIdx = pLoop->u.btree.pIndex; assert( !(flags&WHERE_AUTO_INDEX) || (flags&WHERE_IDX_ONLY) ); if( !HasRowid(pItem->pTab) && IsPrimaryKeyIndex(pIdx) ){ if( isSearch ){ zFmt = "PRIMARY KEY"; } }else if( flags & WHERE_PARTIALIDX ){ zFmt = "AUTOMATIC PARTIAL COVERING INDEX"; }else if( flags & WHERE_AUTO_INDEX ){ zFmt = "AUTOMATIC COVERING INDEX"; }else if( flags & WHERE_IDX_ONLY ){ zFmt = "COVERING INDEX %s"; }else{ zFmt = "INDEX %s"; } if( zFmt ){ sqlite3_str_append(&str, " USING ", 7); sqlite3_str_appendf(&str, zFmt, pIdx->zName); explainIndexRange(&str, pLoop); } }else if( (flags & WHERE_IPK)!=0 && (flags & WHERE_CONSTRAINT)!=0 ){ const char *zRangeOp; if( flags&(WHERE_COLUMN_EQ|WHERE_COLUMN_IN) ){ zRangeOp = "="; }else if( (flags&WHERE_BOTH_LIMIT)==WHERE_BOTH_LIMIT ){ zRangeOp = ">? AND rowid<"; }else if( flags&WHERE_BTM_LIMIT ){ zRangeOp = ">"; }else{ assert( flags&WHERE_TOP_LIMIT); zRangeOp = "<"; } sqlite3_str_appendf(&str, " USING INTEGER PRIMARY KEY (rowid%s?)",zRangeOp); } #ifndef SQLITE_OMIT_VIRTUALTABLE else if( (flags & WHERE_VIRTUALTABLE)!=0 ){ sqlite3_str_appendf(&str, " VIRTUAL TABLE INDEX %d:%s", pLoop->u.vtab.idxNum, pLoop->u.vtab.idxStr); } #endif #ifdef SQLITE_EXPLAIN_ESTIMATED_ROWS if( pLoop->nOut>=10 ){ sqlite3_str_appendf(&str, " (~%llu rows)", sqlite3LogEstToInt(pLoop->nOut)); }else{ sqlite3_str_append(&str, " (~1 row)", 9); } #endif zMsg = sqlite3StrAccumFinish(&str); sqlite3ExplainBreakpoint("",zMsg); ret = sqlite3VdbeAddOp4(v, OP_Explain, sqlite3VdbeCurrentAddr(v), pParse->addrExplain, 0, zMsg,P4_DYNAMIC); } return ret; } #endif /* SQLITE_OMIT_EXPLAIN */ #ifdef SQLITE_ENABLE_STMT_SCANSTATUS /* ** Configure the VM passed as the first argument with an ** sqlite3_stmt_scanstatus() entry corresponding to the scan used to ** implement level pLvl. Argument pSrclist is a pointer to the FROM ** clause that the scan reads data from. ** ** If argument addrExplain is not 0, it must be the address of an ** OP_Explain instruction that describes the same loop. */ SQLITE_PRIVATE void sqlite3WhereAddScanStatus( Vdbe *v, /* Vdbe to add scanstatus entry to */ SrcList *pSrclist, /* FROM clause pLvl reads data from */ WhereLevel *pLvl, /* Level to add scanstatus() entry for */ int addrExplain /* Address of OP_Explain (or 0) */ ){ const char *zObj = 0; WhereLoop *pLoop = pLvl->pWLoop; if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 && pLoop->u.btree.pIndex!=0 ){ zObj = pLoop->u.btree.pIndex->zName; }else{ zObj = pSrclist->a[pLvl->iFrom].zName; } sqlite3VdbeScanStatus( v, addrExplain, pLvl->addrBody, pLvl->addrVisit, pLoop->nOut, zObj ); } #endif /* ** Disable a term in the WHERE clause. Except, do not disable the term ** if it controls a LEFT OUTER JOIN and it did not originate in the ON ** or USING clause of that join. ** ** Consider the term t2.z='ok' in the following queries: ** ** (1) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x WHERE t2.z='ok' ** (2) SELECT * FROM t1 LEFT JOIN t2 ON t1.a=t2.x AND t2.z='ok' ** (3) SELECT * FROM t1, t2 WHERE t1.a=t2.x AND t2.z='ok' ** ** The t2.z='ok' is disabled in the in (2) because it originates ** in the ON clause. The term is disabled in (3) because it is not part ** of a LEFT OUTER JOIN. In (1), the term is not disabled. ** ** Disabling a term causes that term to not be tested in the inner loop ** of the join. Disabling is an optimization. When terms are satisfied ** by indices, we disable them to prevent redundant tests in the inner ** loop. We would get the correct results if nothing were ever disabled, ** but joins might run a little slower. The trick is to disable as much ** as we can without disabling too much. If we disabled in (1), we'd get ** the wrong answer. See ticket #813. ** ** If all the children of a term are disabled, then that term is also ** automatically disabled. In this way, terms get disabled if derived ** virtual terms are tested first. For example: ** ** x GLOB 'abc*' AND x>='abc' AND x<'acd' ** \___________/ \______/ \_____/ ** parent child1 child2 ** ** Only the parent term was in the original WHERE clause. The child1 ** and child2 terms were added by the LIKE optimization. If both of ** the virtual child terms are valid, then testing of the parent can be ** skipped. ** ** Usually the parent term is marked as TERM_CODED. But if the parent ** term was originally TERM_LIKE, then the parent gets TERM_LIKECOND instead. ** The TERM_LIKECOND marking indicates that the term should be coded inside ** a conditional such that is only evaluated on the second pass of a ** LIKE-optimization loop, when scanning BLOBs instead of strings. */ static void disableTerm(WhereLevel *pLevel, WhereTerm *pTerm){ int nLoop = 0; assert( pTerm!=0 ); while( (pTerm->wtFlags & TERM_CODED)==0 && (pLevel->iLeftJoin==0 || ExprHasProperty(pTerm->pExpr, EP_FromJoin)) && (pLevel->notReady & pTerm->prereqAll)==0 ){ if( nLoop && (pTerm->wtFlags & TERM_LIKE)!=0 ){ pTerm->wtFlags |= TERM_LIKECOND; }else{ pTerm->wtFlags |= TERM_CODED; } if( pTerm->iParent<0 ) break; pTerm = &pTerm->pWC->a[pTerm->iParent]; assert( pTerm!=0 ); pTerm->nChild--; if( pTerm->nChild!=0 ) break; nLoop++; } } /* ** Code an OP_Affinity opcode to apply the column affinity string zAff ** to the n registers starting at base. ** ** As an optimization, SQLITE_AFF_BLOB and SQLITE_AFF_NONE entries (which ** are no-ops) at the beginning and end of zAff are ignored. If all entries ** in zAff are SQLITE_AFF_BLOB or SQLITE_AFF_NONE, then no code gets generated. ** ** This routine makes its own copy of zAff so that the caller is free ** to modify zAff after this routine returns. */ static void codeApplyAffinity(Parse *pParse, int base, int n, char *zAff){ Vdbe *v = pParse->pVdbe; if( zAff==0 ){ assert( pParse->db->mallocFailed ); return; } assert( v!=0 ); /* Adjust base and n to skip over SQLITE_AFF_BLOB and SQLITE_AFF_NONE ** entries at the beginning and end of the affinity string. */ assert( SQLITE_AFF_NONE0 && zAff[0]<=SQLITE_AFF_BLOB ){ n--; base++; zAff++; } while( n>1 && zAff[n-1]<=SQLITE_AFF_BLOB ){ n--; } /* Code the OP_Affinity opcode if there is anything left to do. */ if( n>0 ){ sqlite3VdbeAddOp4(v, OP_Affinity, base, n, 0, zAff, n); } } /* ** Expression pRight, which is the RHS of a comparison operation, is ** either a vector of n elements or, if n==1, a scalar expression. ** Before the comparison operation, affinity zAff is to be applied ** to the pRight values. This function modifies characters within the ** affinity string to SQLITE_AFF_BLOB if either: ** ** * the comparison will be performed with no affinity, or ** * the affinity change in zAff is guaranteed not to change the value. */ static void updateRangeAffinityStr( Expr *pRight, /* RHS of comparison */ int n, /* Number of vector elements in comparison */ char *zAff /* Affinity string to modify */ ){ int i; for(i=0; idb; Expr *pNew; pNew = sqlite3ExprDup(db, pX, 0); if( db->mallocFailed==0 ){ ExprList *pOrigRhs = pNew->x.pSelect->pEList; /* Original unmodified RHS */ ExprList *pOrigLhs = pNew->pLeft->x.pList; /* Original unmodified LHS */ ExprList *pRhs = 0; /* New RHS after modifications */ ExprList *pLhs = 0; /* New LHS after mods */ int i; /* Loop counter */ Select *pSelect; /* Pointer to the SELECT on the RHS */ for(i=iEq; inLTerm; i++){ if( pLoop->aLTerm[i]->pExpr==pX ){ int iField = pLoop->aLTerm[i]->iField - 1; if( pOrigRhs->a[iField].pExpr==0 ) continue; /* Duplicate PK column */ pRhs = sqlite3ExprListAppend(pParse, pRhs, pOrigRhs->a[iField].pExpr); pOrigRhs->a[iField].pExpr = 0; assert( pOrigLhs->a[iField].pExpr!=0 ); pLhs = sqlite3ExprListAppend(pParse, pLhs, pOrigLhs->a[iField].pExpr); pOrigLhs->a[iField].pExpr = 0; } } sqlite3ExprListDelete(db, pOrigRhs); sqlite3ExprListDelete(db, pOrigLhs); pNew->pLeft->x.pList = pLhs; pNew->x.pSelect->pEList = pRhs; if( pLhs && pLhs->nExpr==1 ){ /* Take care here not to generate a TK_VECTOR containing only a ** single value. Since the parser never creates such a vector, some ** of the subroutines do not handle this case. */ Expr *p = pLhs->a[0].pExpr; pLhs->a[0].pExpr = 0; sqlite3ExprDelete(db, pNew->pLeft); pNew->pLeft = p; } pSelect = pNew->x.pSelect; if( pSelect->pOrderBy ){ /* If the SELECT statement has an ORDER BY clause, zero the ** iOrderByCol variables. These are set to non-zero when an ** ORDER BY term exactly matches one of the terms of the ** result-set. Since the result-set of the SELECT statement may ** have been modified or reordered, these variables are no longer ** set correctly. Since setting them is just an optimization, ** it's easiest just to zero them here. */ ExprList *pOrderBy = pSelect->pOrderBy; for(i=0; inExpr; i++){ pOrderBy->a[i].u.x.iOrderByCol = 0; } } #if 0 printf("For indexing, change the IN expr:\n"); sqlite3TreeViewExpr(0, pX, 0); printf("Into:\n"); sqlite3TreeViewExpr(0, pNew, 0); #endif } return pNew; } /* ** Generate code for a single equality term of the WHERE clause. An equality ** term can be either X=expr or X IN (...). pTerm is the term to be ** coded. ** ** The current value for the constraint is left in a register, the index ** of which is returned. An attempt is made store the result in iTarget but ** this is only guaranteed for TK_ISNULL and TK_IN constraints. If the ** constraint is a TK_EQ or TK_IS, then the current value might be left in ** some other register and it is the caller's responsibility to compensate. ** ** For a constraint of the form X=expr, the expression is evaluated in ** straight-line code. For constraints of the form X IN (...) ** this routine sets up a loop that will iterate over all values of X. */ static int codeEqualityTerm( Parse *pParse, /* The parsing context */ WhereTerm *pTerm, /* The term of the WHERE clause to be coded */ WhereLevel *pLevel, /* The level of the FROM clause we are working on */ int iEq, /* Index of the equality term within this level */ int bRev, /* True for reverse-order IN operations */ int iTarget /* Attempt to leave results in this register */ ){ Expr *pX = pTerm->pExpr; Vdbe *v = pParse->pVdbe; int iReg; /* Register holding results */ assert( pLevel->pWLoop->aLTerm[iEq]==pTerm ); assert( iTarget>0 ); if( pX->op==TK_EQ || pX->op==TK_IS ){ iReg = sqlite3ExprCodeTarget(pParse, pX->pRight, iTarget); }else if( pX->op==TK_ISNULL ){ iReg = iTarget; sqlite3VdbeAddOp2(v, OP_Null, 0, iReg); #ifndef SQLITE_OMIT_SUBQUERY }else{ int eType = IN_INDEX_NOOP; int iTab; struct InLoop *pIn; WhereLoop *pLoop = pLevel->pWLoop; int i; int nEq = 0; int *aiMap = 0; if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 && pLoop->u.btree.pIndex!=0 && pLoop->u.btree.pIndex->aSortOrder[iEq] ){ testcase( iEq==0 ); testcase( bRev ); bRev = !bRev; } assert( pX->op==TK_IN ); iReg = iTarget; for(i=0; iaLTerm[i] && pLoop->aLTerm[i]->pExpr==pX ){ disableTerm(pLevel, pTerm); return iTarget; } } for(i=iEq;inLTerm; i++){ assert( pLoop->aLTerm[i]!=0 ); if( pLoop->aLTerm[i]->pExpr==pX ) nEq++; } iTab = 0; if( (pX->flags & EP_xIsSelect)==0 || pX->x.pSelect->pEList->nExpr==1 ){ eType = sqlite3FindInIndex(pParse, pX, IN_INDEX_LOOP, 0, 0, &iTab); }else{ sqlite3 *db = pParse->db; pX = removeUnindexableInClauseTerms(pParse, iEq, pLoop, pX); if( !db->mallocFailed ){ aiMap = (int*)sqlite3DbMallocZero(pParse->db, sizeof(int)*nEq); eType = sqlite3FindInIndex(pParse, pX, IN_INDEX_LOOP, 0, aiMap, &iTab); pTerm->pExpr->iTable = iTab; } sqlite3ExprDelete(db, pX); pX = pTerm->pExpr; } if( eType==IN_INDEX_INDEX_DESC ){ testcase( bRev ); bRev = !bRev; } sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iTab, 0); VdbeCoverageIf(v, bRev); VdbeCoverageIf(v, !bRev); assert( (pLoop->wsFlags & WHERE_MULTI_OR)==0 ); pLoop->wsFlags |= WHERE_IN_ABLE; if( pLevel->u.in.nIn==0 ){ pLevel->addrNxt = sqlite3VdbeMakeLabel(pParse); } i = pLevel->u.in.nIn; pLevel->u.in.nIn += nEq; pLevel->u.in.aInLoop = sqlite3DbReallocOrFree(pParse->db, pLevel->u.in.aInLoop, sizeof(pLevel->u.in.aInLoop[0])*pLevel->u.in.nIn); pIn = pLevel->u.in.aInLoop; if( pIn ){ int iMap = 0; /* Index in aiMap[] */ pIn += i; for(i=iEq;inLTerm; i++){ if( pLoop->aLTerm[i]->pExpr==pX ){ int iOut = iReg + i - iEq; if( eType==IN_INDEX_ROWID ){ pIn->addrInTop = sqlite3VdbeAddOp2(v, OP_Rowid, iTab, iOut); }else{ int iCol = aiMap ? aiMap[iMap++] : 0; pIn->addrInTop = sqlite3VdbeAddOp3(v,OP_Column,iTab, iCol, iOut); } sqlite3VdbeAddOp1(v, OP_IsNull, iOut); VdbeCoverage(v); if( i==iEq ){ pIn->iCur = iTab; pIn->eEndLoopOp = bRev ? OP_Prev : OP_Next; if( iEq>0 ){ pIn->iBase = iReg - i; pIn->nPrefix = i; pLoop->wsFlags |= WHERE_IN_EARLYOUT; }else{ pIn->nPrefix = 0; } }else{ pIn->eEndLoopOp = OP_Noop; } pIn++; } } }else{ pLevel->u.in.nIn = 0; } sqlite3DbFree(pParse->db, aiMap); #endif } disableTerm(pLevel, pTerm); return iReg; } /* ** Generate code that will evaluate all == and IN constraints for an ** index scan. ** ** For example, consider table t1(a,b,c,d,e,f) with index i1(a,b,c). ** Suppose the WHERE clause is this: a==5 AND b IN (1,2,3) AND c>5 AND c<10 ** The index has as many as three equality constraints, but in this ** example, the third "c" value is an inequality. So only two ** constraints are coded. This routine will generate code to evaluate ** a==5 and b IN (1,2,3). The current values for a and b will be stored ** in consecutive registers and the index of the first register is returned. ** ** In the example above nEq==2. But this subroutine works for any value ** of nEq including 0. If nEq==0, this routine is nearly a no-op. ** The only thing it does is allocate the pLevel->iMem memory cell and ** compute the affinity string. ** ** The nExtraReg parameter is 0 or 1. It is 0 if all WHERE clause constraints ** are == or IN and are covered by the nEq. nExtraReg is 1 if there is ** an inequality constraint (such as the "c>=5 AND c<10" in the example) that ** occurs after the nEq quality constraints. ** ** This routine allocates a range of nEq+nExtraReg memory cells and returns ** the index of the first memory cell in that range. The code that ** calls this routine will use that memory range to store keys for ** start and termination conditions of the loop. ** key value of the loop. If one or more IN operators appear, then ** this routine allocates an additional nEq memory cells for internal ** use. ** ** Before returning, *pzAff is set to point to a buffer containing a ** copy of the column affinity string of the index allocated using ** sqlite3DbMalloc(). Except, entries in the copy of the string associated ** with equality constraints that use BLOB or NONE affinity are set to ** SQLITE_AFF_BLOB. This is to deal with SQL such as the following: ** ** CREATE TABLE t1(a TEXT PRIMARY KEY, b); ** SELECT ... FROM t1 AS t2, t1 WHERE t1.a = t2.b; ** ** In the example above, the index on t1(a) has TEXT affinity. But since ** the right hand side of the equality constraint (t2.b) has BLOB/NONE affinity, ** no conversion should be attempted before using a t2.b value as part of ** a key to search the index. Hence the first byte in the returned affinity ** string in this example would be set to SQLITE_AFF_BLOB. */ static int codeAllEqualityTerms( Parse *pParse, /* Parsing context */ WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */ int bRev, /* Reverse the order of IN operators */ int nExtraReg, /* Number of extra registers to allocate */ char **pzAff /* OUT: Set to point to affinity string */ ){ u16 nEq; /* The number of == or IN constraints to code */ u16 nSkip; /* Number of left-most columns to skip */ Vdbe *v = pParse->pVdbe; /* The vm under construction */ Index *pIdx; /* The index being used for this loop */ WhereTerm *pTerm; /* A single constraint term */ WhereLoop *pLoop; /* The WhereLoop object */ int j; /* Loop counter */ int regBase; /* Base register */ int nReg; /* Number of registers to allocate */ char *zAff; /* Affinity string to return */ /* This module is only called on query plans that use an index. */ pLoop = pLevel->pWLoop; assert( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 ); nEq = pLoop->u.btree.nEq; nSkip = pLoop->nSkip; pIdx = pLoop->u.btree.pIndex; assert( pIdx!=0 ); /* Figure out how many memory cells we will need then allocate them. */ regBase = pParse->nMem + 1; nReg = pLoop->u.btree.nEq + nExtraReg; pParse->nMem += nReg; zAff = sqlite3DbStrDup(pParse->db,sqlite3IndexAffinityStr(pParse->db,pIdx)); assert( zAff!=0 || pParse->db->mallocFailed ); if( nSkip ){ int iIdxCur = pLevel->iIdxCur; sqlite3VdbeAddOp1(v, (bRev?OP_Last:OP_Rewind), iIdxCur); VdbeCoverageIf(v, bRev==0); VdbeCoverageIf(v, bRev!=0); VdbeComment((v, "begin skip-scan on %s", pIdx->zName)); j = sqlite3VdbeAddOp0(v, OP_Goto); pLevel->addrSkip = sqlite3VdbeAddOp4Int(v, (bRev?OP_SeekLT:OP_SeekGT), iIdxCur, 0, regBase, nSkip); VdbeCoverageIf(v, bRev==0); VdbeCoverageIf(v, bRev!=0); sqlite3VdbeJumpHere(v, j); for(j=0; jaiColumn[j]==XN_EXPR ); VdbeComment((v, "%s", explainIndexColumnName(pIdx, j))); } } /* Evaluate the equality constraints */ assert( zAff==0 || (int)strlen(zAff)>=nEq ); for(j=nSkip; jaLTerm[j]; assert( pTerm!=0 ); /* The following testcase is true for indices with redundant columns. ** Ex: CREATE INDEX i1 ON t1(a,b,a); SELECT * FROM t1 WHERE a=0 AND b=0; */ testcase( (pTerm->wtFlags & TERM_CODED)!=0 ); testcase( pTerm->wtFlags & TERM_VIRTUAL ); r1 = codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, regBase+j); if( r1!=regBase+j ){ if( nReg==1 ){ sqlite3ReleaseTempReg(pParse, regBase); regBase = r1; }else{ sqlite3VdbeAddOp2(v, OP_SCopy, r1, regBase+j); } } if( pTerm->eOperator & WO_IN ){ if( pTerm->pExpr->flags & EP_xIsSelect ){ /* No affinity ever needs to be (or should be) applied to a value ** from the RHS of an "? IN (SELECT ...)" expression. The ** sqlite3FindInIndex() routine has already ensured that the ** affinity of the comparison has been applied to the value. */ if( zAff ) zAff[j] = SQLITE_AFF_BLOB; } }else if( (pTerm->eOperator & WO_ISNULL)==0 ){ Expr *pRight = pTerm->pExpr->pRight; if( (pTerm->wtFlags & TERM_IS)==0 && sqlite3ExprCanBeNull(pRight) ){ sqlite3VdbeAddOp2(v, OP_IsNull, regBase+j, pLevel->addrBrk); VdbeCoverage(v); } if( zAff ){ if( sqlite3CompareAffinity(pRight, zAff[j])==SQLITE_AFF_BLOB ){ zAff[j] = SQLITE_AFF_BLOB; } if( sqlite3ExprNeedsNoAffinityChange(pRight, zAff[j]) ){ zAff[j] = SQLITE_AFF_BLOB; } } } } *pzAff = zAff; return regBase; } #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS /* ** If the most recently coded instruction is a constant range constraint ** (a string literal) that originated from the LIKE optimization, then ** set P3 and P5 on the OP_String opcode so that the string will be cast ** to a BLOB at appropriate times. ** ** The LIKE optimization trys to evaluate "x LIKE 'abc%'" as a range ** expression: "x>='ABC' AND x<'abd'". But this requires that the range ** scan loop run twice, once for strings and a second time for BLOBs. ** The OP_String opcodes on the second pass convert the upper and lower ** bound string constants to blobs. This routine makes the necessary changes ** to the OP_String opcodes for that to happen. ** ** Except, of course, if SQLITE_LIKE_DOESNT_MATCH_BLOBS is defined, then ** only the one pass through the string space is required, so this routine ** becomes a no-op. */ static void whereLikeOptimizationStringFixup( Vdbe *v, /* prepared statement under construction */ WhereLevel *pLevel, /* The loop that contains the LIKE operator */ WhereTerm *pTerm /* The upper or lower bound just coded */ ){ if( pTerm->wtFlags & TERM_LIKEOPT ){ VdbeOp *pOp; assert( pLevel->iLikeRepCntr>0 ); pOp = sqlite3VdbeGetOp(v, -1); assert( pOp!=0 ); assert( pOp->opcode==OP_String8 || pTerm->pWC->pWInfo->pParse->db->mallocFailed ); pOp->p3 = (int)(pLevel->iLikeRepCntr>>1); /* Register holding counter */ pOp->p5 = (u8)(pLevel->iLikeRepCntr&1); /* ASC or DESC */ } } #else # define whereLikeOptimizationStringFixup(A,B,C) #endif #ifdef SQLITE_ENABLE_CURSOR_HINTS /* ** Information is passed from codeCursorHint() down to individual nodes of ** the expression tree (by sqlite3WalkExpr()) using an instance of this ** structure. */ struct CCurHint { int iTabCur; /* Cursor for the main table */ int iIdxCur; /* Cursor for the index, if pIdx!=0. Unused otherwise */ Index *pIdx; /* The index used to access the table */ }; /* ** This function is called for every node of an expression that is a candidate ** for a cursor hint on an index cursor. For TK_COLUMN nodes that reference ** the table CCurHint.iTabCur, verify that the same column can be ** accessed through the index. If it cannot, then set pWalker->eCode to 1. */ static int codeCursorHintCheckExpr(Walker *pWalker, Expr *pExpr){ struct CCurHint *pHint = pWalker->u.pCCurHint; assert( pHint->pIdx!=0 ); if( pExpr->op==TK_COLUMN && pExpr->iTable==pHint->iTabCur && sqlite3TableColumnToIndex(pHint->pIdx, pExpr->iColumn)<0 ){ pWalker->eCode = 1; } return WRC_Continue; } /* ** Test whether or not expression pExpr, which was part of a WHERE clause, ** should be included in the cursor-hint for a table that is on the rhs ** of a LEFT JOIN. Set Walker.eCode to non-zero before returning if the ** expression is not suitable. ** ** An expression is unsuitable if it might evaluate to non NULL even if ** a TK_COLUMN node that does affect the value of the expression is set ** to NULL. For example: ** ** col IS NULL ** col IS NOT NULL ** coalesce(col, 1) ** CASE WHEN col THEN 0 ELSE 1 END */ static int codeCursorHintIsOrFunction(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_IS || pExpr->op==TK_ISNULL || pExpr->op==TK_ISNOT || pExpr->op==TK_NOTNULL || pExpr->op==TK_CASE ){ pWalker->eCode = 1; }else if( pExpr->op==TK_FUNCTION ){ int d1; char d2[4]; if( 0==sqlite3IsLikeFunction(pWalker->pParse->db, pExpr, &d1, d2) ){ pWalker->eCode = 1; } } return WRC_Continue; } /* ** This function is called on every node of an expression tree used as an ** argument to the OP_CursorHint instruction. If the node is a TK_COLUMN ** that accesses any table other than the one identified by ** CCurHint.iTabCur, then do the following: ** ** 1) allocate a register and code an OP_Column instruction to read ** the specified column into the new register, and ** ** 2) transform the expression node to a TK_REGISTER node that reads ** from the newly populated register. ** ** Also, if the node is a TK_COLUMN that does access the table idenified ** by pCCurHint.iTabCur, and an index is being used (which we will ** know because CCurHint.pIdx!=0) then transform the TK_COLUMN into ** an access of the index rather than the original table. */ static int codeCursorHintFixExpr(Walker *pWalker, Expr *pExpr){ int rc = WRC_Continue; struct CCurHint *pHint = pWalker->u.pCCurHint; if( pExpr->op==TK_COLUMN ){ if( pExpr->iTable!=pHint->iTabCur ){ int reg = ++pWalker->pParse->nMem; /* Register for column value */ sqlite3ExprCode(pWalker->pParse, pExpr, reg); pExpr->op = TK_REGISTER; pExpr->iTable = reg; }else if( pHint->pIdx!=0 ){ pExpr->iTable = pHint->iIdxCur; pExpr->iColumn = sqlite3TableColumnToIndex(pHint->pIdx, pExpr->iColumn); assert( pExpr->iColumn>=0 ); } }else if( pExpr->op==TK_AGG_FUNCTION ){ /* An aggregate function in the WHERE clause of a query means this must ** be a correlated sub-query, and expression pExpr is an aggregate from ** the parent context. Do not walk the function arguments in this case. ** ** todo: It should be possible to replace this node with a TK_REGISTER ** expression, as the result of the expression must be stored in a ** register at this point. The same holds for TK_AGG_COLUMN nodes. */ rc = WRC_Prune; } return rc; } /* ** Insert an OP_CursorHint instruction if it is appropriate to do so. */ static void codeCursorHint( struct SrcList_item *pTabItem, /* FROM clause item */ WhereInfo *pWInfo, /* The where clause */ WhereLevel *pLevel, /* Which loop to provide hints for */ WhereTerm *pEndRange /* Hint this end-of-scan boundary term if not NULL */ ){ Parse *pParse = pWInfo->pParse; sqlite3 *db = pParse->db; Vdbe *v = pParse->pVdbe; Expr *pExpr = 0; WhereLoop *pLoop = pLevel->pWLoop; int iCur; WhereClause *pWC; WhereTerm *pTerm; int i, j; struct CCurHint sHint; Walker sWalker; if( OptimizationDisabled(db, SQLITE_CursorHints) ) return; iCur = pLevel->iTabCur; assert( iCur==pWInfo->pTabList->a[pLevel->iFrom].iCursor ); sHint.iTabCur = iCur; sHint.iIdxCur = pLevel->iIdxCur; sHint.pIdx = pLoop->u.btree.pIndex; memset(&sWalker, 0, sizeof(sWalker)); sWalker.pParse = pParse; sWalker.u.pCCurHint = &sHint; pWC = &pWInfo->sWC; for(i=0; inTerm; i++){ pTerm = &pWC->a[i]; if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; if( pTerm->prereqAll & pLevel->notReady ) continue; /* Any terms specified as part of the ON(...) clause for any LEFT ** JOIN for which the current table is not the rhs are omitted ** from the cursor-hint. ** ** If this table is the rhs of a LEFT JOIN, "IS" or "IS NULL" terms ** that were specified as part of the WHERE clause must be excluded. ** This is to address the following: ** ** SELECT ... t1 LEFT JOIN t2 ON (t1.a=t2.b) WHERE t2.c IS NULL; ** ** Say there is a single row in t2 that matches (t1.a=t2.b), but its ** t2.c values is not NULL. If the (t2.c IS NULL) constraint is ** pushed down to the cursor, this row is filtered out, causing ** SQLite to synthesize a row of NULL values. Which does match the ** WHERE clause, and so the query returns a row. Which is incorrect. ** ** For the same reason, WHERE terms such as: ** ** WHERE 1 = (t2.c IS NULL) ** ** are also excluded. See codeCursorHintIsOrFunction() for details. */ if( pTabItem->fg.jointype & JT_LEFT ){ Expr *pExpr = pTerm->pExpr; if( !ExprHasProperty(pExpr, EP_FromJoin) || pExpr->iRightJoinTable!=pTabItem->iCursor ){ sWalker.eCode = 0; sWalker.xExprCallback = codeCursorHintIsOrFunction; sqlite3WalkExpr(&sWalker, pTerm->pExpr); if( sWalker.eCode ) continue; } }else{ if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) continue; } /* All terms in pWLoop->aLTerm[] except pEndRange are used to initialize ** the cursor. These terms are not needed as hints for a pure range ** scan (that has no == terms) so omit them. */ if( pLoop->u.btree.nEq==0 && pTerm!=pEndRange ){ for(j=0; jnLTerm && pLoop->aLTerm[j]!=pTerm; j++){} if( jnLTerm ) continue; } /* No subqueries or non-deterministic functions allowed */ if( sqlite3ExprContainsSubquery(pTerm->pExpr) ) continue; /* For an index scan, make sure referenced columns are actually in ** the index. */ if( sHint.pIdx!=0 ){ sWalker.eCode = 0; sWalker.xExprCallback = codeCursorHintCheckExpr; sqlite3WalkExpr(&sWalker, pTerm->pExpr); if( sWalker.eCode ) continue; } /* If we survive all prior tests, that means this term is worth hinting */ pExpr = sqlite3ExprAnd(pParse, pExpr, sqlite3ExprDup(db, pTerm->pExpr, 0)); } if( pExpr!=0 ){ sWalker.xExprCallback = codeCursorHintFixExpr; sqlite3WalkExpr(&sWalker, pExpr); sqlite3VdbeAddOp4(v, OP_CursorHint, (sHint.pIdx ? sHint.iIdxCur : sHint.iTabCur), 0, 0, (const char*)pExpr, P4_EXPR); } } #else # define codeCursorHint(A,B,C,D) /* No-op */ #endif /* SQLITE_ENABLE_CURSOR_HINTS */ /* ** Cursor iCur is open on an intkey b-tree (a table). Register iRowid contains ** a rowid value just read from cursor iIdxCur, open on index pIdx. This ** function generates code to do a deferred seek of cursor iCur to the ** rowid stored in register iRowid. ** ** Normally, this is just: ** ** OP_DeferredSeek $iCur $iRowid ** ** However, if the scan currently being coded is a branch of an OR-loop and ** the statement currently being coded is a SELECT, then P3 of OP_DeferredSeek ** is set to iIdxCur and P4 is set to point to an array of integers ** containing one entry for each column of the table cursor iCur is open ** on. For each table column, if the column is the i'th column of the ** index, then the corresponding array entry is set to (i+1). If the column ** does not appear in the index at all, the array entry is set to 0. */ static void codeDeferredSeek( WhereInfo *pWInfo, /* Where clause context */ Index *pIdx, /* Index scan is using */ int iCur, /* Cursor for IPK b-tree */ int iIdxCur /* Index cursor */ ){ Parse *pParse = pWInfo->pParse; /* Parse context */ Vdbe *v = pParse->pVdbe; /* Vdbe to generate code within */ assert( iIdxCur>0 ); assert( pIdx->aiColumn[pIdx->nColumn-1]==-1 ); pWInfo->bDeferredSeek = 1; sqlite3VdbeAddOp3(v, OP_DeferredSeek, iIdxCur, 0, iCur); if( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE) && DbMaskAllZero(sqlite3ParseToplevel(pParse)->writeMask) ){ int i; Table *pTab = pIdx->pTable; u32 *ai = (u32*)sqlite3DbMallocZero(pParse->db, sizeof(u32)*(pTab->nCol+1)); if( ai ){ ai[0] = pTab->nCol; for(i=0; inColumn-1; i++){ int x1, x2; assert( pIdx->aiColumn[i]nCol ); x1 = pIdx->aiColumn[i]; x2 = sqlite3TableColumnToStorage(pTab, x1); testcase( x1!=x2 ); if( x1>=0 ) ai[x2+1] = i+1; } sqlite3VdbeChangeP4(v, -1, (char*)ai, P4_INTARRAY); } } } /* ** If the expression passed as the second argument is a vector, generate ** code to write the first nReg elements of the vector into an array ** of registers starting with iReg. ** ** If the expression is not a vector, then nReg must be passed 1. In ** this case, generate code to evaluate the expression and leave the ** result in register iReg. */ static void codeExprOrVector(Parse *pParse, Expr *p, int iReg, int nReg){ assert( nReg>0 ); if( p && sqlite3ExprIsVector(p) ){ #ifndef SQLITE_OMIT_SUBQUERY if( (p->flags & EP_xIsSelect) ){ Vdbe *v = pParse->pVdbe; int iSelect; assert( p->op==TK_SELECT ); iSelect = sqlite3CodeSubselect(pParse, p); sqlite3VdbeAddOp3(v, OP_Copy, iSelect, iReg, nReg-1); }else #endif { int i; ExprList *pList = p->x.pList; assert( nReg<=pList->nExpr ); for(i=0; ia[i].pExpr, iReg+i); } } }else{ assert( nReg==1 ); sqlite3ExprCode(pParse, p, iReg); } } /* An instance of the IdxExprTrans object carries information about a ** mapping from an expression on table columns into a column in an index ** down through the Walker. */ typedef struct IdxExprTrans { Expr *pIdxExpr; /* The index expression */ int iTabCur; /* The cursor of the corresponding table */ int iIdxCur; /* The cursor for the index */ int iIdxCol; /* The column for the index */ int iTabCol; /* The column for the table */ WhereInfo *pWInfo; /* Complete WHERE clause information */ sqlite3 *db; /* Database connection (for malloc()) */ } IdxExprTrans; /* ** Preserve pExpr on the WhereETrans list of the WhereInfo. */ static void preserveExpr(IdxExprTrans *pTrans, Expr *pExpr){ WhereExprMod *pNew; pNew = sqlite3DbMallocRaw(pTrans->db, sizeof(*pNew)); if( pNew==0 ) return; pNew->pNext = pTrans->pWInfo->pExprMods; pTrans->pWInfo->pExprMods = pNew; pNew->pExpr = pExpr; memcpy(&pNew->orig, pExpr, sizeof(*pExpr)); } /* The walker node callback used to transform matching expressions into ** a reference to an index column for an index on an expression. ** ** If pExpr matches, then transform it into a reference to the index column ** that contains the value of pExpr. */ static int whereIndexExprTransNode(Walker *p, Expr *pExpr){ IdxExprTrans *pX = p->u.pIdxTrans; if( sqlite3ExprCompare(0, pExpr, pX->pIdxExpr, pX->iTabCur)==0 ){ preserveExpr(pX, pExpr); pExpr->affExpr = sqlite3ExprAffinity(pExpr); pExpr->op = TK_COLUMN; pExpr->iTable = pX->iIdxCur; pExpr->iColumn = pX->iIdxCol; pExpr->y.pTab = 0; testcase( ExprHasProperty(pExpr, EP_Skip) ); testcase( ExprHasProperty(pExpr, EP_Unlikely) ); ExprClearProperty(pExpr, EP_Skip|EP_Unlikely); return WRC_Prune; }else{ return WRC_Continue; } } #ifndef SQLITE_OMIT_GENERATED_COLUMNS /* A walker node callback that translates a column reference to a table ** into a corresponding column reference of an index. */ static int whereIndexExprTransColumn(Walker *p, Expr *pExpr){ if( pExpr->op==TK_COLUMN ){ IdxExprTrans *pX = p->u.pIdxTrans; if( pExpr->iTable==pX->iTabCur && pExpr->iColumn==pX->iTabCol ){ assert( pExpr->y.pTab!=0 ); preserveExpr(pX, pExpr); pExpr->affExpr = sqlite3TableColumnAffinity(pExpr->y.pTab,pExpr->iColumn); pExpr->iTable = pX->iIdxCur; pExpr->iColumn = pX->iIdxCol; pExpr->y.pTab = 0; } } return WRC_Continue; } #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ /* ** For an indexes on expression X, locate every instance of expression X ** in pExpr and change that subexpression into a reference to the appropriate ** column of the index. ** ** 2019-10-24: Updated to also translate references to a VIRTUAL column in ** the table into references to the corresponding (stored) column of the ** index. */ static void whereIndexExprTrans( Index *pIdx, /* The Index */ int iTabCur, /* Cursor of the table that is being indexed */ int iIdxCur, /* Cursor of the index itself */ WhereInfo *pWInfo /* Transform expressions in this WHERE clause */ ){ int iIdxCol; /* Column number of the index */ ExprList *aColExpr; /* Expressions that are indexed */ Table *pTab; Walker w; IdxExprTrans x; aColExpr = pIdx->aColExpr; if( aColExpr==0 && !pIdx->bHasVCol ){ /* The index does not reference any expressions or virtual columns ** so no translations are needed. */ return; } pTab = pIdx->pTable; memset(&w, 0, sizeof(w)); w.u.pIdxTrans = &x; x.iTabCur = iTabCur; x.iIdxCur = iIdxCur; x.pWInfo = pWInfo; x.db = pWInfo->pParse->db; for(iIdxCol=0; iIdxColnColumn; iIdxCol++){ i16 iRef = pIdx->aiColumn[iIdxCol]; if( iRef==XN_EXPR ){ assert( aColExpr->a[iIdxCol].pExpr!=0 ); x.pIdxExpr = aColExpr->a[iIdxCol].pExpr; if( sqlite3ExprIsConstant(x.pIdxExpr) ) continue; w.xExprCallback = whereIndexExprTransNode; #ifndef SQLITE_OMIT_GENERATED_COLUMNS }else if( iRef>=0 && (pTab->aCol[iRef].colFlags & COLFLAG_VIRTUAL)!=0 && (pTab->aCol[iRef].zColl==0 || sqlite3StrICmp(pTab->aCol[iRef].zColl, sqlite3StrBINARY)==0) ){ /* Check to see if there are direct references to generated columns ** that are contained in the index. Pulling the generated column ** out of the index is an optimization only - the main table is always ** available if the index cannot be used. To avoid unnecessary ** complication, omit this optimization if the collating sequence for ** the column is non-standard */ x.iTabCol = iRef; w.xExprCallback = whereIndexExprTransColumn; #endif /* SQLITE_OMIT_GENERATED_COLUMNS */ }else{ continue; } x.iIdxCol = iIdxCol; sqlite3WalkExpr(&w, pWInfo->pWhere); sqlite3WalkExprList(&w, pWInfo->pOrderBy); sqlite3WalkExprList(&w, pWInfo->pResultSet); } } /* ** The pTruth expression is always true because it is the WHERE clause ** a partial index that is driving a query loop. Look through all of the ** WHERE clause terms on the query, and if any of those terms must be ** true because pTruth is true, then mark those WHERE clause terms as ** coded. */ static void whereApplyPartialIndexConstraints( Expr *pTruth, int iTabCur, WhereClause *pWC ){ int i; WhereTerm *pTerm; while( pTruth->op==TK_AND ){ whereApplyPartialIndexConstraints(pTruth->pLeft, iTabCur, pWC); pTruth = pTruth->pRight; } for(i=0, pTerm=pWC->a; inTerm; i++, pTerm++){ Expr *pExpr; if( pTerm->wtFlags & TERM_CODED ) continue; pExpr = pTerm->pExpr; if( sqlite3ExprCompare(0, pExpr, pTruth, iTabCur)==0 ){ pTerm->wtFlags |= TERM_CODED; } } } /* ** Generate code for the start of the iLevel-th loop in the WHERE clause ** implementation described by pWInfo. */ SQLITE_PRIVATE Bitmask sqlite3WhereCodeOneLoopStart( Parse *pParse, /* Parsing context */ Vdbe *v, /* Prepared statement under construction */ WhereInfo *pWInfo, /* Complete information about the WHERE clause */ int iLevel, /* Which level of pWInfo->a[] should be coded */ WhereLevel *pLevel, /* The current level pointer */ Bitmask notReady /* Which tables are currently available */ ){ int j, k; /* Loop counters */ int iCur; /* The VDBE cursor for the table */ int addrNxt; /* Where to jump to continue with the next IN case */ int bRev; /* True if we need to scan in reverse order */ WhereLoop *pLoop; /* The WhereLoop object being coded */ WhereClause *pWC; /* Decomposition of the entire WHERE clause */ WhereTerm *pTerm; /* A WHERE clause term */ sqlite3 *db; /* Database connection */ struct SrcList_item *pTabItem; /* FROM clause term being coded */ int addrBrk; /* Jump here to break out of the loop */ int addrHalt; /* addrBrk for the outermost loop */ int addrCont; /* Jump here to continue with next cycle */ int iRowidReg = 0; /* Rowid is stored in this register, if not zero */ int iReleaseReg = 0; /* Temp register to free before returning */ Index *pIdx = 0; /* Index used by loop (if any) */ int iLoop; /* Iteration of constraint generator loop */ pWC = &pWInfo->sWC; db = pParse->db; pLoop = pLevel->pWLoop; pTabItem = &pWInfo->pTabList->a[pLevel->iFrom]; iCur = pTabItem->iCursor; pLevel->notReady = notReady & ~sqlite3WhereGetMask(&pWInfo->sMaskSet, iCur); bRev = (pWInfo->revMask>>iLevel)&1; VdbeModuleComment((v, "Begin WHERE-loop%d: %s",iLevel,pTabItem->pTab->zName)); #if WHERETRACE_ENABLED /* 0x20800 */ if( sqlite3WhereTrace & 0x800 ){ sqlite3DebugPrintf("Coding level %d of %d: notReady=%llx iFrom=%d\n", iLevel, pWInfo->nLevel, (u64)notReady, pLevel->iFrom); sqlite3WhereLoopPrint(pLoop, pWC); } if( sqlite3WhereTrace & 0x20000 ){ if( iLevel==0 ){ sqlite3DebugPrintf("WHERE clause being coded:\n"); sqlite3TreeViewExpr(0, pWInfo->pWhere, 0); } sqlite3DebugPrintf("All WHERE-clause terms before coding:\n"); sqlite3WhereClausePrint(pWC); } #endif /* Create labels for the "break" and "continue" instructions ** for the current loop. Jump to addrBrk to break out of a loop. ** Jump to cont to go immediately to the next iteration of the ** loop. ** ** When there is an IN operator, we also have a "addrNxt" label that ** means to continue with the next IN value combination. When ** there are no IN operators in the constraints, the "addrNxt" label ** is the same as "addrBrk". */ addrBrk = pLevel->addrBrk = pLevel->addrNxt = sqlite3VdbeMakeLabel(pParse); addrCont = pLevel->addrCont = sqlite3VdbeMakeLabel(pParse); /* If this is the right table of a LEFT OUTER JOIN, allocate and ** initialize a memory cell that records if this table matches any ** row of the left table of the join. */ assert( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE) || pLevel->iFrom>0 || (pTabItem[0].fg.jointype & JT_LEFT)==0 ); if( pLevel->iFrom>0 && (pTabItem[0].fg.jointype & JT_LEFT)!=0 ){ pLevel->iLeftJoin = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 0, pLevel->iLeftJoin); VdbeComment((v, "init LEFT JOIN no-match flag")); } /* Compute a safe address to jump to if we discover that the table for ** this loop is empty and can never contribute content. */ for(j=iLevel; j>0 && pWInfo->a[j].iLeftJoin==0; j--){} addrHalt = pWInfo->a[j].addrBrk; /* Special case of a FROM clause subquery implemented as a co-routine */ if( pTabItem->fg.viaCoroutine ){ int regYield = pTabItem->regReturn; sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, pTabItem->addrFillSub); pLevel->p2 = sqlite3VdbeAddOp2(v, OP_Yield, regYield, addrBrk); VdbeCoverage(v); VdbeComment((v, "next row of %s", pTabItem->pTab->zName)); pLevel->op = OP_Goto; }else #ifndef SQLITE_OMIT_VIRTUALTABLE if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ){ /* Case 1: The table is a virtual-table. Use the VFilter and VNext ** to access the data. */ int iReg; /* P3 Value for OP_VFilter */ int addrNotFound; int nConstraint = pLoop->nLTerm; int iIn; /* Counter for IN constraints */ iReg = sqlite3GetTempRange(pParse, nConstraint+2); addrNotFound = pLevel->addrBrk; for(j=0; jaLTerm[j]; if( NEVER(pTerm==0) ) continue; if( pTerm->eOperator & WO_IN ){ codeEqualityTerm(pParse, pTerm, pLevel, j, bRev, iTarget); addrNotFound = pLevel->addrNxt; }else{ Expr *pRight = pTerm->pExpr->pRight; codeExprOrVector(pParse, pRight, iTarget, 1); } } sqlite3VdbeAddOp2(v, OP_Integer, pLoop->u.vtab.idxNum, iReg); sqlite3VdbeAddOp2(v, OP_Integer, nConstraint, iReg+1); sqlite3VdbeAddOp4(v, OP_VFilter, iCur, addrNotFound, iReg, pLoop->u.vtab.idxStr, pLoop->u.vtab.needFree ? P4_DYNAMIC : P4_STATIC); VdbeCoverage(v); pLoop->u.vtab.needFree = 0; pLevel->p1 = iCur; pLevel->op = pWInfo->eOnePass ? OP_Noop : OP_VNext; pLevel->p2 = sqlite3VdbeCurrentAddr(v); iIn = pLevel->u.in.nIn; for(j=nConstraint-1; j>=0; j--){ pTerm = pLoop->aLTerm[j]; if( (pTerm->eOperator & WO_IN)!=0 ) iIn--; if( j<16 && (pLoop->u.vtab.omitMask>>j)&1 ){ disableTerm(pLevel, pTerm); }else if( (pTerm->eOperator & WO_IN)!=0 && sqlite3ExprVectorSize(pTerm->pExpr->pLeft)==1 ){ Expr *pCompare; /* The comparison operator */ Expr *pRight; /* RHS of the comparison */ VdbeOp *pOp; /* Opcode to access the value of the IN constraint */ /* Reload the constraint value into reg[iReg+j+2]. The same value ** was loaded into the same register prior to the OP_VFilter, but ** the xFilter implementation might have changed the datatype or ** encoding of the value in the register, so it *must* be reloaded. */ assert( pLevel->u.in.aInLoop!=0 || db->mallocFailed ); if( !db->mallocFailed ){ assert( iIn>=0 && iInu.in.nIn ); pOp = sqlite3VdbeGetOp(v, pLevel->u.in.aInLoop[iIn].addrInTop); assert( pOp->opcode==OP_Column || pOp->opcode==OP_Rowid ); assert( pOp->opcode!=OP_Column || pOp->p3==iReg+j+2 ); assert( pOp->opcode!=OP_Rowid || pOp->p2==iReg+j+2 ); testcase( pOp->opcode==OP_Rowid ); sqlite3VdbeAddOp3(v, pOp->opcode, pOp->p1, pOp->p2, pOp->p3); } /* Generate code that will continue to the next row if ** the IN constraint is not satisfied */ pCompare = sqlite3PExpr(pParse, TK_EQ, 0, 0); assert( pCompare!=0 || db->mallocFailed ); if( pCompare ){ pCompare->pLeft = pTerm->pExpr->pLeft; pCompare->pRight = pRight = sqlite3Expr(db, TK_REGISTER, 0); if( pRight ){ pRight->iTable = iReg+j+2; sqlite3ExprIfFalse( pParse, pCompare, pLevel->addrCont, SQLITE_JUMPIFNULL ); } pCompare->pLeft = 0; sqlite3ExprDelete(db, pCompare); } } } assert( iIn==0 || db->mallocFailed ); /* These registers need to be preserved in case there is an IN operator ** loop. So we could deallocate the registers here (and potentially ** reuse them later) if (pLoop->wsFlags & WHERE_IN_ABLE)==0. But it seems ** simpler and safer to simply not reuse the registers. ** ** sqlite3ReleaseTempRange(pParse, iReg, nConstraint+2); */ }else #endif /* SQLITE_OMIT_VIRTUALTABLE */ if( (pLoop->wsFlags & WHERE_IPK)!=0 && (pLoop->wsFlags & (WHERE_COLUMN_IN|WHERE_COLUMN_EQ))!=0 ){ /* Case 2: We can directly reference a single row using an ** equality comparison against the ROWID field. Or ** we reference multiple rows using a "rowid IN (...)" ** construct. */ assert( pLoop->u.btree.nEq==1 ); pTerm = pLoop->aLTerm[0]; assert( pTerm!=0 ); assert( pTerm->pExpr!=0 ); testcase( pTerm->wtFlags & TERM_VIRTUAL ); iReleaseReg = ++pParse->nMem; iRowidReg = codeEqualityTerm(pParse, pTerm, pLevel, 0, bRev, iReleaseReg); if( iRowidReg!=iReleaseReg ) sqlite3ReleaseTempReg(pParse, iReleaseReg); addrNxt = pLevel->addrNxt; sqlite3VdbeAddOp3(v, OP_SeekRowid, iCur, addrNxt, iRowidReg); VdbeCoverage(v); pLevel->op = OP_Noop; if( (pTerm->prereqAll & pLevel->notReady)==0 ){ pTerm->wtFlags |= TERM_CODED; } }else if( (pLoop->wsFlags & WHERE_IPK)!=0 && (pLoop->wsFlags & WHERE_COLUMN_RANGE)!=0 ){ /* Case 3: We have an inequality comparison against the ROWID field. */ int testOp = OP_Noop; int start; int memEndValue = 0; WhereTerm *pStart, *pEnd; j = 0; pStart = pEnd = 0; if( pLoop->wsFlags & WHERE_BTM_LIMIT ) pStart = pLoop->aLTerm[j++]; if( pLoop->wsFlags & WHERE_TOP_LIMIT ) pEnd = pLoop->aLTerm[j++]; assert( pStart!=0 || pEnd!=0 ); if( bRev ){ pTerm = pStart; pStart = pEnd; pEnd = pTerm; } codeCursorHint(pTabItem, pWInfo, pLevel, pEnd); if( pStart ){ Expr *pX; /* The expression that defines the start bound */ int r1, rTemp; /* Registers for holding the start boundary */ int op; /* Cursor seek operation */ /* The following constant maps TK_xx codes into corresponding ** seek opcodes. It depends on a particular ordering of TK_xx */ const u8 aMoveOp[] = { /* TK_GT */ OP_SeekGT, /* TK_LE */ OP_SeekLE, /* TK_LT */ OP_SeekLT, /* TK_GE */ OP_SeekGE }; assert( TK_LE==TK_GT+1 ); /* Make sure the ordering.. */ assert( TK_LT==TK_GT+2 ); /* ... of the TK_xx values... */ assert( TK_GE==TK_GT+3 ); /* ... is correcct. */ assert( (pStart->wtFlags & TERM_VNULL)==0 ); testcase( pStart->wtFlags & TERM_VIRTUAL ); pX = pStart->pExpr; assert( pX!=0 ); testcase( pStart->leftCursor!=iCur ); /* transitive constraints */ if( sqlite3ExprIsVector(pX->pRight) ){ r1 = rTemp = sqlite3GetTempReg(pParse); codeExprOrVector(pParse, pX->pRight, r1, 1); testcase( pX->op==TK_GT ); testcase( pX->op==TK_GE ); testcase( pX->op==TK_LT ); testcase( pX->op==TK_LE ); op = aMoveOp[((pX->op - TK_GT - 1) & 0x3) | 0x1]; assert( pX->op!=TK_GT || op==OP_SeekGE ); assert( pX->op!=TK_GE || op==OP_SeekGE ); assert( pX->op!=TK_LT || op==OP_SeekLE ); assert( pX->op!=TK_LE || op==OP_SeekLE ); }else{ r1 = sqlite3ExprCodeTemp(pParse, pX->pRight, &rTemp); disableTerm(pLevel, pStart); op = aMoveOp[(pX->op - TK_GT)]; } sqlite3VdbeAddOp3(v, op, iCur, addrBrk, r1); VdbeComment((v, "pk")); VdbeCoverageIf(v, pX->op==TK_GT); VdbeCoverageIf(v, pX->op==TK_LE); VdbeCoverageIf(v, pX->op==TK_LT); VdbeCoverageIf(v, pX->op==TK_GE); sqlite3ReleaseTempReg(pParse, rTemp); }else{ sqlite3VdbeAddOp2(v, bRev ? OP_Last : OP_Rewind, iCur, addrHalt); VdbeCoverageIf(v, bRev==0); VdbeCoverageIf(v, bRev!=0); } if( pEnd ){ Expr *pX; pX = pEnd->pExpr; assert( pX!=0 ); assert( (pEnd->wtFlags & TERM_VNULL)==0 ); testcase( pEnd->leftCursor!=iCur ); /* Transitive constraints */ testcase( pEnd->wtFlags & TERM_VIRTUAL ); memEndValue = ++pParse->nMem; codeExprOrVector(pParse, pX->pRight, memEndValue, 1); if( 0==sqlite3ExprIsVector(pX->pRight) && (pX->op==TK_LT || pX->op==TK_GT) ){ testOp = bRev ? OP_Le : OP_Ge; }else{ testOp = bRev ? OP_Lt : OP_Gt; } if( 0==sqlite3ExprIsVector(pX->pRight) ){ disableTerm(pLevel, pEnd); } } start = sqlite3VdbeCurrentAddr(v); pLevel->op = bRev ? OP_Prev : OP_Next; pLevel->p1 = iCur; pLevel->p2 = start; assert( pLevel->p5==0 ); if( testOp!=OP_Noop ){ iRowidReg = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Rowid, iCur, iRowidReg); sqlite3VdbeAddOp3(v, testOp, memEndValue, addrBrk, iRowidReg); VdbeCoverageIf(v, testOp==OP_Le); VdbeCoverageIf(v, testOp==OP_Lt); VdbeCoverageIf(v, testOp==OP_Ge); VdbeCoverageIf(v, testOp==OP_Gt); sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC | SQLITE_JUMPIFNULL); } }else if( pLoop->wsFlags & WHERE_INDEXED ){ /* Case 4: A scan using an index. ** ** The WHERE clause may contain zero or more equality ** terms ("==" or "IN" operators) that refer to the N ** left-most columns of the index. It may also contain ** inequality constraints (>, <, >= or <=) on the indexed ** column that immediately follows the N equalities. Only ** the right-most column can be an inequality - the rest must ** use the "==" and "IN" operators. For example, if the ** index is on (x,y,z), then the following clauses are all ** optimized: ** ** x=5 ** x=5 AND y=10 ** x=5 AND y<10 ** x=5 AND y>5 AND y<10 ** x=5 AND y=5 AND z<=10 ** ** The z<10 term of the following cannot be used, only ** the x=5 term: ** ** x=5 AND z<10 ** ** N may be zero if there are inequality constraints. ** If there are no inequality constraints, then N is at ** least one. ** ** This case is also used when there are no WHERE clause ** constraints but an index is selected anyway, in order ** to force the output order to conform to an ORDER BY. */ static const u8 aStartOp[] = { 0, 0, OP_Rewind, /* 2: (!start_constraints && startEq && !bRev) */ OP_Last, /* 3: (!start_constraints && startEq && bRev) */ OP_SeekGT, /* 4: (start_constraints && !startEq && !bRev) */ OP_SeekLT, /* 5: (start_constraints && !startEq && bRev) */ OP_SeekGE, /* 6: (start_constraints && startEq && !bRev) */ OP_SeekLE /* 7: (start_constraints && startEq && bRev) */ }; static const u8 aEndOp[] = { OP_IdxGE, /* 0: (end_constraints && !bRev && !endEq) */ OP_IdxGT, /* 1: (end_constraints && !bRev && endEq) */ OP_IdxLE, /* 2: (end_constraints && bRev && !endEq) */ OP_IdxLT, /* 3: (end_constraints && bRev && endEq) */ }; u16 nEq = pLoop->u.btree.nEq; /* Number of == or IN terms */ u16 nBtm = pLoop->u.btree.nBtm; /* Length of BTM vector */ u16 nTop = pLoop->u.btree.nTop; /* Length of TOP vector */ int regBase; /* Base register holding constraint values */ WhereTerm *pRangeStart = 0; /* Inequality constraint at range start */ WhereTerm *pRangeEnd = 0; /* Inequality constraint at range end */ int startEq; /* True if range start uses ==, >= or <= */ int endEq; /* True if range end uses ==, >= or <= */ int start_constraints; /* Start of range is constrained */ int nConstraint; /* Number of constraint terms */ int iIdxCur; /* The VDBE cursor for the index */ int nExtraReg = 0; /* Number of extra registers needed */ int op; /* Instruction opcode */ char *zStartAff; /* Affinity for start of range constraint */ char *zEndAff = 0; /* Affinity for end of range constraint */ u8 bSeekPastNull = 0; /* True to seek past initial nulls */ u8 bStopAtNull = 0; /* Add condition to terminate at NULLs */ int omitTable; /* True if we use the index only */ int regBignull = 0; /* big-null flag register */ pIdx = pLoop->u.btree.pIndex; iIdxCur = pLevel->iIdxCur; assert( nEq>=pLoop->nSkip ); /* Find any inequality constraint terms for the start and end ** of the range. */ j = nEq; if( pLoop->wsFlags & WHERE_BTM_LIMIT ){ pRangeStart = pLoop->aLTerm[j++]; nExtraReg = MAX(nExtraReg, pLoop->u.btree.nBtm); /* Like optimization range constraints always occur in pairs */ assert( (pRangeStart->wtFlags & TERM_LIKEOPT)==0 || (pLoop->wsFlags & WHERE_TOP_LIMIT)!=0 ); } if( pLoop->wsFlags & WHERE_TOP_LIMIT ){ pRangeEnd = pLoop->aLTerm[j++]; nExtraReg = MAX(nExtraReg, pLoop->u.btree.nTop); #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS if( (pRangeEnd->wtFlags & TERM_LIKEOPT)!=0 ){ assert( pRangeStart!=0 ); /* LIKE opt constraints */ assert( pRangeStart->wtFlags & TERM_LIKEOPT ); /* occur in pairs */ pLevel->iLikeRepCntr = (u32)++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 1, (int)pLevel->iLikeRepCntr); VdbeComment((v, "LIKE loop counter")); pLevel->addrLikeRep = sqlite3VdbeCurrentAddr(v); /* iLikeRepCntr actually stores 2x the counter register number. The ** bottom bit indicates whether the search order is ASC or DESC. */ testcase( bRev ); testcase( pIdx->aSortOrder[nEq]==SQLITE_SO_DESC ); assert( (bRev & ~1)==0 ); pLevel->iLikeRepCntr <<=1; pLevel->iLikeRepCntr |= bRev ^ (pIdx->aSortOrder[nEq]==SQLITE_SO_DESC); } #endif if( pRangeStart==0 ){ j = pIdx->aiColumn[nEq]; if( (j>=0 && pIdx->pTable->aCol[j].notNull==0) || j==XN_EXPR ){ bSeekPastNull = 1; } } } assert( pRangeEnd==0 || (pRangeEnd->wtFlags & TERM_VNULL)==0 ); /* If the WHERE_BIGNULL_SORT flag is set, then index column nEq uses ** a non-default "big-null" sort (either ASC NULLS LAST or DESC NULLS ** FIRST). In both cases separate ordered scans are made of those ** index entries for which the column is null and for those for which ** it is not. For an ASC sort, the non-NULL entries are scanned first. ** For DESC, NULL entries are scanned first. */ if( (pLoop->wsFlags & (WHERE_TOP_LIMIT|WHERE_BTM_LIMIT))==0 && (pLoop->wsFlags & WHERE_BIGNULL_SORT)!=0 ){ assert( bSeekPastNull==0 && nExtraReg==0 && nBtm==0 && nTop==0 ); assert( pRangeEnd==0 && pRangeStart==0 ); testcase( pLoop->nSkip>0 ); nExtraReg = 1; bSeekPastNull = 1; pLevel->regBignull = regBignull = ++pParse->nMem; if( pLevel->iLeftJoin ){ sqlite3VdbeAddOp2(v, OP_Integer, 0, regBignull); } pLevel->addrBignull = sqlite3VdbeMakeLabel(pParse); } /* If we are doing a reverse order scan on an ascending index, or ** a forward order scan on a descending index, interchange the ** start and end terms (pRangeStart and pRangeEnd). */ if( (nEqnKeyCol && bRev==(pIdx->aSortOrder[nEq]==SQLITE_SO_ASC)) || (bRev && pIdx->nKeyCol==nEq) ){ SWAP(WhereTerm *, pRangeEnd, pRangeStart); SWAP(u8, bSeekPastNull, bStopAtNull); SWAP(u8, nBtm, nTop); } /* Generate code to evaluate all constraint terms using == or IN ** and store the values of those terms in an array of registers ** starting at regBase. */ codeCursorHint(pTabItem, pWInfo, pLevel, pRangeEnd); regBase = codeAllEqualityTerms(pParse,pLevel,bRev,nExtraReg,&zStartAff); assert( zStartAff==0 || sqlite3Strlen30(zStartAff)>=nEq ); if( zStartAff && nTop ){ zEndAff = sqlite3DbStrDup(db, &zStartAff[nEq]); } addrNxt = (regBignull ? pLevel->addrBignull : pLevel->addrNxt); testcase( pRangeStart && (pRangeStart->eOperator & WO_LE)!=0 ); testcase( pRangeStart && (pRangeStart->eOperator & WO_GE)!=0 ); testcase( pRangeEnd && (pRangeEnd->eOperator & WO_LE)!=0 ); testcase( pRangeEnd && (pRangeEnd->eOperator & WO_GE)!=0 ); startEq = !pRangeStart || pRangeStart->eOperator & (WO_LE|WO_GE); endEq = !pRangeEnd || pRangeEnd->eOperator & (WO_LE|WO_GE); start_constraints = pRangeStart || nEq>0; /* Seek the index cursor to the start of the range. */ nConstraint = nEq; if( pRangeStart ){ Expr *pRight = pRangeStart->pExpr->pRight; codeExprOrVector(pParse, pRight, regBase+nEq, nBtm); whereLikeOptimizationStringFixup(v, pLevel, pRangeStart); if( (pRangeStart->wtFlags & TERM_VNULL)==0 && sqlite3ExprCanBeNull(pRight) ){ sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt); VdbeCoverage(v); } if( zStartAff ){ updateRangeAffinityStr(pRight, nBtm, &zStartAff[nEq]); } nConstraint += nBtm; testcase( pRangeStart->wtFlags & TERM_VIRTUAL ); if( sqlite3ExprIsVector(pRight)==0 ){ disableTerm(pLevel, pRangeStart); }else{ startEq = 1; } bSeekPastNull = 0; }else if( bSeekPastNull ){ startEq = 0; sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); start_constraints = 1; nConstraint++; }else if( regBignull ){ sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); start_constraints = 1; nConstraint++; } codeApplyAffinity(pParse, regBase, nConstraint - bSeekPastNull, zStartAff); if( pLoop->nSkip>0 && nConstraint==pLoop->nSkip ){ /* The skip-scan logic inside the call to codeAllEqualityConstraints() ** above has already left the cursor sitting on the correct row, ** so no further seeking is needed */ }else{ if( pLoop->wsFlags & WHERE_IN_EARLYOUT ){ sqlite3VdbeAddOp1(v, OP_SeekHit, iIdxCur); } if( regBignull ){ sqlite3VdbeAddOp2(v, OP_Integer, 1, regBignull); VdbeComment((v, "NULL-scan pass ctr")); } op = aStartOp[(start_constraints<<2) + (startEq<<1) + bRev]; assert( op!=0 ); sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint); VdbeCoverage(v); VdbeCoverageIf(v, op==OP_Rewind); testcase( op==OP_Rewind ); VdbeCoverageIf(v, op==OP_Last); testcase( op==OP_Last ); VdbeCoverageIf(v, op==OP_SeekGT); testcase( op==OP_SeekGT ); VdbeCoverageIf(v, op==OP_SeekGE); testcase( op==OP_SeekGE ); VdbeCoverageIf(v, op==OP_SeekLE); testcase( op==OP_SeekLE ); VdbeCoverageIf(v, op==OP_SeekLT); testcase( op==OP_SeekLT ); assert( bSeekPastNull==0 || bStopAtNull==0 ); if( regBignull ){ assert( bSeekPastNull==1 || bStopAtNull==1 ); assert( bSeekPastNull==!bStopAtNull ); assert( bStopAtNull==startEq ); sqlite3VdbeAddOp2(v, OP_Goto, 0, sqlite3VdbeCurrentAddr(v)+2); op = aStartOp[(nConstraint>1)*4 + 2 + bRev]; sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint-startEq); VdbeCoverage(v); VdbeCoverageIf(v, op==OP_Rewind); testcase( op==OP_Rewind ); VdbeCoverageIf(v, op==OP_Last); testcase( op==OP_Last ); VdbeCoverageIf(v, op==OP_SeekGE); testcase( op==OP_SeekGE ); VdbeCoverageIf(v, op==OP_SeekLE); testcase( op==OP_SeekLE ); assert( op==OP_Rewind || op==OP_Last || op==OP_SeekGE || op==OP_SeekLE); } } /* Load the value for the inequality constraint at the end of the ** range (if any). */ nConstraint = nEq; if( pRangeEnd ){ Expr *pRight = pRangeEnd->pExpr->pRight; codeExprOrVector(pParse, pRight, regBase+nEq, nTop); whereLikeOptimizationStringFixup(v, pLevel, pRangeEnd); if( (pRangeEnd->wtFlags & TERM_VNULL)==0 && sqlite3ExprCanBeNull(pRight) ){ sqlite3VdbeAddOp2(v, OP_IsNull, regBase+nEq, addrNxt); VdbeCoverage(v); } if( zEndAff ){ updateRangeAffinityStr(pRight, nTop, zEndAff); codeApplyAffinity(pParse, regBase+nEq, nTop, zEndAff); }else{ assert( pParse->db->mallocFailed ); } nConstraint += nTop; testcase( pRangeEnd->wtFlags & TERM_VIRTUAL ); if( sqlite3ExprIsVector(pRight)==0 ){ disableTerm(pLevel, pRangeEnd); }else{ endEq = 1; } }else if( bStopAtNull ){ if( regBignull==0 ){ sqlite3VdbeAddOp2(v, OP_Null, 0, regBase+nEq); endEq = 0; } nConstraint++; } sqlite3DbFree(db, zStartAff); sqlite3DbFree(db, zEndAff); /* Top of the loop body */ pLevel->p2 = sqlite3VdbeCurrentAddr(v); /* Check if the index cursor is past the end of the range. */ if( nConstraint ){ if( regBignull ){ /* Except, skip the end-of-range check while doing the NULL-scan */ sqlite3VdbeAddOp2(v, OP_IfNot, regBignull, sqlite3VdbeCurrentAddr(v)+3); VdbeComment((v, "If NULL-scan 2nd pass")); VdbeCoverage(v); } op = aEndOp[bRev*2 + endEq]; sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint); testcase( op==OP_IdxGT ); VdbeCoverageIf(v, op==OP_IdxGT ); testcase( op==OP_IdxGE ); VdbeCoverageIf(v, op==OP_IdxGE ); testcase( op==OP_IdxLT ); VdbeCoverageIf(v, op==OP_IdxLT ); testcase( op==OP_IdxLE ); VdbeCoverageIf(v, op==OP_IdxLE ); } if( regBignull ){ /* During a NULL-scan, check to see if we have reached the end of ** the NULLs */ assert( bSeekPastNull==!bStopAtNull ); assert( bSeekPastNull+bStopAtNull==1 ); assert( nConstraint+bSeekPastNull>0 ); sqlite3VdbeAddOp2(v, OP_If, regBignull, sqlite3VdbeCurrentAddr(v)+2); VdbeComment((v, "If NULL-scan 1st pass")); VdbeCoverage(v); op = aEndOp[bRev*2 + bSeekPastNull]; sqlite3VdbeAddOp4Int(v, op, iIdxCur, addrNxt, regBase, nConstraint+bSeekPastNull); testcase( op==OP_IdxGT ); VdbeCoverageIf(v, op==OP_IdxGT ); testcase( op==OP_IdxGE ); VdbeCoverageIf(v, op==OP_IdxGE ); testcase( op==OP_IdxLT ); VdbeCoverageIf(v, op==OP_IdxLT ); testcase( op==OP_IdxLE ); VdbeCoverageIf(v, op==OP_IdxLE ); } if( pLoop->wsFlags & WHERE_IN_EARLYOUT ){ sqlite3VdbeAddOp2(v, OP_SeekHit, iIdxCur, 1); } /* Seek the table cursor, if required */ omitTable = (pLoop->wsFlags & WHERE_IDX_ONLY)!=0 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0; if( omitTable ){ /* pIdx is a covering index. No need to access the main table. */ }else if( HasRowid(pIdx->pTable) ){ if( (pWInfo->wctrlFlags & WHERE_SEEK_TABLE) || ( (pWInfo->wctrlFlags & WHERE_SEEK_UNIQ_TABLE)!=0 && (pWInfo->eOnePass==ONEPASS_SINGLE || pLoop->nLTerm==0) ) ){ iRowidReg = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_IdxRowid, iIdxCur, iRowidReg); sqlite3VdbeAddOp3(v, OP_NotExists, iCur, 0, iRowidReg); VdbeCoverage(v); }else{ codeDeferredSeek(pWInfo, pIdx, iCur, iIdxCur); } }else if( iCur!=iIdxCur ){ Index *pPk = sqlite3PrimaryKeyIndex(pIdx->pTable); iRowidReg = sqlite3GetTempRange(pParse, pPk->nKeyCol); for(j=0; jnKeyCol; j++){ k = sqlite3TableColumnToIndex(pIdx, pPk->aiColumn[j]); sqlite3VdbeAddOp3(v, OP_Column, iIdxCur, k, iRowidReg+j); } sqlite3VdbeAddOp4Int(v, OP_NotFound, iCur, addrCont, iRowidReg, pPk->nKeyCol); VdbeCoverage(v); } if( pLevel->iLeftJoin==0 ){ /* If pIdx is an index on one or more expressions, then look through ** all the expressions in pWInfo and try to transform matching expressions ** into reference to index columns. Also attempt to translate references ** to virtual columns in the table into references to (stored) columns ** of the index. ** ** Do not do this for the RHS of a LEFT JOIN. This is because the ** expression may be evaluated after OP_NullRow has been executed on ** the cursor. In this case it is important to do the full evaluation, ** as the result of the expression may not be NULL, even if all table ** column values are. https://www.sqlite.org/src/info/7fa8049685b50b5a ** ** Also, do not do this when processing one index an a multi-index ** OR clause, since the transformation will become invalid once we ** move forward to the next index. ** https://sqlite.org/src/info/4e8e4857d32d401f */ if( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ){ whereIndexExprTrans(pIdx, iCur, iIdxCur, pWInfo); } /* If a partial index is driving the loop, try to eliminate WHERE clause ** terms from the query that must be true due to the WHERE clause of ** the partial index. ** ** 2019-11-02 ticket 623eff57e76d45f6: This optimization does not work ** for a LEFT JOIN. */ if( pIdx->pPartIdxWhere ){ whereApplyPartialIndexConstraints(pIdx->pPartIdxWhere, iCur, pWC); } }else{ testcase( pIdx->pPartIdxWhere ); /* The following assert() is not a requirement, merely an observation: ** The OR-optimization doesn't work for the right hand table of ** a LEFT JOIN: */ assert( (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ); } /* Record the instruction used to terminate the loop. */ if( pLoop->wsFlags & WHERE_ONEROW ){ pLevel->op = OP_Noop; }else if( bRev ){ pLevel->op = OP_Prev; }else{ pLevel->op = OP_Next; } pLevel->p1 = iIdxCur; pLevel->p3 = (pLoop->wsFlags&WHERE_UNQ_WANTED)!=0 ? 1:0; if( (pLoop->wsFlags & WHERE_CONSTRAINT)==0 ){ pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP; }else{ assert( pLevel->p5==0 ); } if( omitTable ) pIdx = 0; }else #ifndef SQLITE_OMIT_OR_OPTIMIZATION if( pLoop->wsFlags & WHERE_MULTI_OR ){ /* Case 5: Two or more separately indexed terms connected by OR ** ** Example: ** ** CREATE TABLE t1(a,b,c,d); ** CREATE INDEX i1 ON t1(a); ** CREATE INDEX i2 ON t1(b); ** CREATE INDEX i3 ON t1(c); ** ** SELECT * FROM t1 WHERE a=5 OR b=7 OR (c=11 AND d=13) ** ** In the example, there are three indexed terms connected by OR. ** The top of the loop looks like this: ** ** Null 1 # Zero the rowset in reg 1 ** ** Then, for each indexed term, the following. The arguments to ** RowSetTest are such that the rowid of the current row is inserted ** into the RowSet. If it is already present, control skips the ** Gosub opcode and jumps straight to the code generated by WhereEnd(). ** ** sqlite3WhereBegin() ** RowSetTest # Insert rowid into rowset ** Gosub 2 A ** sqlite3WhereEnd() ** ** Following the above, code to terminate the loop. Label A, the target ** of the Gosub above, jumps to the instruction right after the Goto. ** ** Null 1 # Zero the rowset in reg 1 ** Goto B # The loop is finished. ** ** A: # Return data, whatever. ** ** Return 2 # Jump back to the Gosub ** ** B: ** ** Added 2014-05-26: If the table is a WITHOUT ROWID table, then ** use an ephemeral index instead of a RowSet to record the primary ** keys of the rows we have already seen. ** */ WhereClause *pOrWc; /* The OR-clause broken out into subterms */ SrcList *pOrTab; /* Shortened table list or OR-clause generation */ Index *pCov = 0; /* Potential covering index (or NULL) */ int iCovCur = pParse->nTab++; /* Cursor used for index scans (if any) */ int regReturn = ++pParse->nMem; /* Register used with OP_Gosub */ int regRowset = 0; /* Register for RowSet object */ int regRowid = 0; /* Register holding rowid */ int iLoopBody = sqlite3VdbeMakeLabel(pParse);/* Start of loop body */ int iRetInit; /* Address of regReturn init */ int untestedTerms = 0; /* Some terms not completely tested */ int ii; /* Loop counter */ u16 wctrlFlags; /* Flags for sub-WHERE clause */ Expr *pAndExpr = 0; /* An ".. AND (...)" expression */ Table *pTab = pTabItem->pTab; pTerm = pLoop->aLTerm[0]; assert( pTerm!=0 ); assert( pTerm->eOperator & WO_OR ); assert( (pTerm->wtFlags & TERM_ORINFO)!=0 ); pOrWc = &pTerm->u.pOrInfo->wc; pLevel->op = OP_Return; pLevel->p1 = regReturn; /* Set up a new SrcList in pOrTab containing the table being scanned ** by this loop in the a[0] slot and all notReady tables in a[1..] slots. ** This becomes the SrcList in the recursive call to sqlite3WhereBegin(). */ if( pWInfo->nLevel>1 ){ int nNotReady; /* The number of notReady tables */ struct SrcList_item *origSrc; /* Original list of tables */ nNotReady = pWInfo->nLevel - iLevel - 1; pOrTab = sqlite3StackAllocRaw(db, sizeof(*pOrTab)+ nNotReady*sizeof(pOrTab->a[0])); if( pOrTab==0 ) return notReady; pOrTab->nAlloc = (u8)(nNotReady + 1); pOrTab->nSrc = pOrTab->nAlloc; memcpy(pOrTab->a, pTabItem, sizeof(*pTabItem)); origSrc = pWInfo->pTabList->a; for(k=1; k<=nNotReady; k++){ memcpy(&pOrTab->a[k], &origSrc[pLevel[k].iFrom], sizeof(pOrTab->a[k])); } }else{ pOrTab = pWInfo->pTabList; } /* Initialize the rowset register to contain NULL. An SQL NULL is ** equivalent to an empty rowset. Or, create an ephemeral index ** capable of holding primary keys in the case of a WITHOUT ROWID. ** ** Also initialize regReturn to contain the address of the instruction ** immediately following the OP_Return at the bottom of the loop. This ** is required in a few obscure LEFT JOIN cases where control jumps ** over the top of the loop into the body of it. In this case the ** correct response for the end-of-loop code (the OP_Return) is to ** fall through to the next instruction, just as an OP_Next does if ** called on an uninitialized cursor. */ if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){ if( HasRowid(pTab) ){ regRowset = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Null, 0, regRowset); }else{ Index *pPk = sqlite3PrimaryKeyIndex(pTab); regRowset = pParse->nTab++; sqlite3VdbeAddOp2(v, OP_OpenEphemeral, regRowset, pPk->nKeyCol); sqlite3VdbeSetP4KeyInfo(pParse, pPk); } regRowid = ++pParse->nMem; } iRetInit = sqlite3VdbeAddOp2(v, OP_Integer, 0, regReturn); /* If the original WHERE clause is z of the form: (x1 OR x2 OR ...) AND y ** Then for every term xN, evaluate as the subexpression: xN AND z ** That way, terms in y that are factored into the disjunction will ** be picked up by the recursive calls to sqlite3WhereBegin() below. ** ** Actually, each subexpression is converted to "xN AND w" where w is ** the "interesting" terms of z - terms that did not originate in the ** ON or USING clause of a LEFT JOIN, and terms that are usable as ** indices. ** ** This optimization also only applies if the (x1 OR x2 OR ...) term ** is not contained in the ON clause of a LEFT JOIN. ** See ticket http://www.sqlite.org/src/info/f2369304e4 */ if( pWC->nTerm>1 ){ int iTerm; for(iTerm=0; iTermnTerm; iTerm++){ Expr *pExpr = pWC->a[iTerm].pExpr; if( &pWC->a[iTerm] == pTerm ) continue; testcase( pWC->a[iTerm].wtFlags & TERM_VIRTUAL ); testcase( pWC->a[iTerm].wtFlags & TERM_CODED ); if( (pWC->a[iTerm].wtFlags & (TERM_VIRTUAL|TERM_CODED))!=0 ) continue; if( (pWC->a[iTerm].eOperator & WO_ALL)==0 ) continue; testcase( pWC->a[iTerm].wtFlags & TERM_ORINFO ); pExpr = sqlite3ExprDup(db, pExpr, 0); pAndExpr = sqlite3ExprAnd(pParse, pAndExpr, pExpr); } if( pAndExpr ){ /* The extra 0x10000 bit on the opcode is masked off and does not ** become part of the new Expr.op. However, it does make the ** op==TK_AND comparison inside of sqlite3PExpr() false, and this ** prevents sqlite3PExpr() from implementing AND short-circuit ** optimization, which we do not want here. */ pAndExpr = sqlite3PExpr(pParse, TK_AND|0x10000, 0, pAndExpr); } } /* Run a separate WHERE clause for each term of the OR clause. After ** eliminating duplicates from other WHERE clauses, the action for each ** sub-WHERE clause is to to invoke the main loop body as a subroutine. */ wctrlFlags = WHERE_OR_SUBCLAUSE | (pWInfo->wctrlFlags & WHERE_SEEK_TABLE); ExplainQueryPlan((pParse, 1, "MULTI-INDEX OR")); for(ii=0; iinTerm; ii++){ WhereTerm *pOrTerm = &pOrWc->a[ii]; if( pOrTerm->leftCursor==iCur || (pOrTerm->eOperator & WO_AND)!=0 ){ WhereInfo *pSubWInfo; /* Info for single OR-term scan */ Expr *pOrExpr = pOrTerm->pExpr; /* Current OR clause term */ int jmp1 = 0; /* Address of jump operation */ testcase( (pTabItem[0].fg.jointype & JT_LEFT)!=0 && !ExprHasProperty(pOrExpr, EP_FromJoin) ); /* See TH3 vtab25.400 and ticket 614b25314c766238 */ if( pAndExpr ){ pAndExpr->pLeft = pOrExpr; pOrExpr = pAndExpr; } /* Loop through table entries that match term pOrTerm. */ ExplainQueryPlan((pParse, 1, "INDEX %d", ii+1)); WHERETRACE(0xffff, ("Subplan for OR-clause:\n")); pSubWInfo = sqlite3WhereBegin(pParse, pOrTab, pOrExpr, 0, 0, wctrlFlags, iCovCur); assert( pSubWInfo || pParse->nErr || db->mallocFailed ); if( pSubWInfo ){ WhereLoop *pSubLoop; int addrExplain = sqlite3WhereExplainOneScan( pParse, pOrTab, &pSubWInfo->a[0], 0 ); sqlite3WhereAddScanStatus(v, pOrTab, &pSubWInfo->a[0], addrExplain); /* This is the sub-WHERE clause body. First skip over ** duplicate rows from prior sub-WHERE clauses, and record the ** rowid (or PRIMARY KEY) for the current row so that the same ** row will be skipped in subsequent sub-WHERE clauses. */ if( (pWInfo->wctrlFlags & WHERE_DUPLICATES_OK)==0 ){ int iSet = ((ii==pOrWc->nTerm-1)?-1:ii); if( HasRowid(pTab) ){ sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, -1, regRowid); jmp1 = sqlite3VdbeAddOp4Int(v, OP_RowSetTest, regRowset, 0, regRowid, iSet); VdbeCoverage(v); }else{ Index *pPk = sqlite3PrimaryKeyIndex(pTab); int nPk = pPk->nKeyCol; int iPk; int r; /* Read the PK into an array of temp registers. */ r = sqlite3GetTempRange(pParse, nPk); for(iPk=0; iPkaiColumn[iPk]; sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, iCol,r+iPk); } /* Check if the temp table already contains this key. If so, ** the row has already been included in the result set and ** can be ignored (by jumping past the Gosub below). Otherwise, ** insert the key into the temp table and proceed with processing ** the row. ** ** Use some of the same optimizations as OP_RowSetTest: If iSet ** is zero, assume that the key cannot already be present in ** the temp table. And if iSet is -1, assume that there is no ** need to insert the key into the temp table, as it will never ** be tested for. */ if( iSet ){ jmp1 = sqlite3VdbeAddOp4Int(v, OP_Found, regRowset, 0, r, nPk); VdbeCoverage(v); } if( iSet>=0 ){ sqlite3VdbeAddOp3(v, OP_MakeRecord, r, nPk, regRowid); sqlite3VdbeAddOp4Int(v, OP_IdxInsert, regRowset, regRowid, r, nPk); if( iSet ) sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); } /* Release the array of temp registers */ sqlite3ReleaseTempRange(pParse, r, nPk); } } /* Invoke the main loop body as a subroutine */ sqlite3VdbeAddOp2(v, OP_Gosub, regReturn, iLoopBody); /* Jump here (skipping the main loop body subroutine) if the ** current sub-WHERE row is a duplicate from prior sub-WHEREs. */ if( jmp1 ) sqlite3VdbeJumpHere(v, jmp1); /* The pSubWInfo->untestedTerms flag means that this OR term ** contained one or more AND term from a notReady table. The ** terms from the notReady table could not be tested and will ** need to be tested later. */ if( pSubWInfo->untestedTerms ) untestedTerms = 1; /* If all of the OR-connected terms are optimized using the same ** index, and the index is opened using the same cursor number ** by each call to sqlite3WhereBegin() made by this loop, it may ** be possible to use that index as a covering index. ** ** If the call to sqlite3WhereBegin() above resulted in a scan that ** uses an index, and this is either the first OR-connected term ** processed or the index is the same as that used by all previous ** terms, set pCov to the candidate covering index. Otherwise, set ** pCov to NULL to indicate that no candidate covering index will ** be available. */ pSubLoop = pSubWInfo->a[0].pWLoop; assert( (pSubLoop->wsFlags & WHERE_AUTO_INDEX)==0 ); if( (pSubLoop->wsFlags & WHERE_INDEXED)!=0 && (ii==0 || pSubLoop->u.btree.pIndex==pCov) && (HasRowid(pTab) || !IsPrimaryKeyIndex(pSubLoop->u.btree.pIndex)) ){ assert( pSubWInfo->a[0].iIdxCur==iCovCur ); pCov = pSubLoop->u.btree.pIndex; }else{ pCov = 0; } /* Finish the loop through table entries that match term pOrTerm. */ sqlite3WhereEnd(pSubWInfo); ExplainQueryPlanPop(pParse); } } } ExplainQueryPlanPop(pParse); pLevel->u.pCovidx = pCov; if( pCov ) pLevel->iIdxCur = iCovCur; if( pAndExpr ){ pAndExpr->pLeft = 0; sqlite3ExprDelete(db, pAndExpr); } sqlite3VdbeChangeP1(v, iRetInit, sqlite3VdbeCurrentAddr(v)); sqlite3VdbeGoto(v, pLevel->addrBrk); sqlite3VdbeResolveLabel(v, iLoopBody); if( pWInfo->nLevel>1 ){ sqlite3StackFree(db, pOrTab); } if( !untestedTerms ) disableTerm(pLevel, pTerm); }else #endif /* SQLITE_OMIT_OR_OPTIMIZATION */ { /* Case 6: There is no usable index. We must do a complete ** scan of the entire table. */ static const u8 aStep[] = { OP_Next, OP_Prev }; static const u8 aStart[] = { OP_Rewind, OP_Last }; assert( bRev==0 || bRev==1 ); if( pTabItem->fg.isRecursive ){ /* Tables marked isRecursive have only a single row that is stored in ** a pseudo-cursor. No need to Rewind or Next such cursors. */ pLevel->op = OP_Noop; }else{ codeCursorHint(pTabItem, pWInfo, pLevel, 0); pLevel->op = aStep[bRev]; pLevel->p1 = iCur; pLevel->p2 = 1 + sqlite3VdbeAddOp2(v, aStart[bRev], iCur, addrHalt); VdbeCoverageIf(v, bRev==0); VdbeCoverageIf(v, bRev!=0); pLevel->p5 = SQLITE_STMTSTATUS_FULLSCAN_STEP; } } #ifdef SQLITE_ENABLE_STMT_SCANSTATUS pLevel->addrVisit = sqlite3VdbeCurrentAddr(v); #endif /* Insert code to test every subexpression that can be completely ** computed using the current set of tables. ** ** This loop may run between one and three times, depending on the ** constraints to be generated. The value of stack variable iLoop ** determines the constraints coded by each iteration, as follows: ** ** iLoop==1: Code only expressions that are entirely covered by pIdx. ** iLoop==2: Code remaining expressions that do not contain correlated ** sub-queries. ** iLoop==3: Code all remaining expressions. ** ** An effort is made to skip unnecessary iterations of the loop. */ iLoop = (pIdx ? 1 : 2); do{ int iNext = 0; /* Next value for iLoop */ for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){ Expr *pE; int skipLikeAddr = 0; testcase( pTerm->wtFlags & TERM_VIRTUAL ); testcase( pTerm->wtFlags & TERM_CODED ); if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; if( (pTerm->prereqAll & pLevel->notReady)!=0 ){ testcase( pWInfo->untestedTerms==0 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)!=0 ); pWInfo->untestedTerms = 1; continue; } pE = pTerm->pExpr; assert( pE!=0 ); if( (pTabItem->fg.jointype&JT_LEFT) && !ExprHasProperty(pE,EP_FromJoin) ){ continue; } if( iLoop==1 && !sqlite3ExprCoveredByIndex(pE, pLevel->iTabCur, pIdx) ){ iNext = 2; continue; } if( iLoop<3 && (pTerm->wtFlags & TERM_VARSELECT) ){ if( iNext==0 ) iNext = 3; continue; } if( (pTerm->wtFlags & TERM_LIKECOND)!=0 ){ /* If the TERM_LIKECOND flag is set, that means that the range search ** is sufficient to guarantee that the LIKE operator is true, so we ** can skip the call to the like(A,B) function. But this only works ** for strings. So do not skip the call to the function on the pass ** that compares BLOBs. */ #ifdef SQLITE_LIKE_DOESNT_MATCH_BLOBS continue; #else u32 x = pLevel->iLikeRepCntr; if( x>0 ){ skipLikeAddr = sqlite3VdbeAddOp1(v, (x&1)?OP_IfNot:OP_If,(int)(x>>1)); VdbeCoverageIf(v, (x&1)==1); VdbeCoverageIf(v, (x&1)==0); } #endif } #ifdef WHERETRACE_ENABLED /* 0xffff */ if( sqlite3WhereTrace ){ VdbeNoopComment((v, "WhereTerm[%d] (%p) priority=%d", pWC->nTerm-j, pTerm, iLoop)); } if( sqlite3WhereTrace & 0x800 ){ sqlite3DebugPrintf("Coding auxiliary constraint:\n"); sqlite3WhereTermPrint(pTerm, pWC->nTerm-j); } #endif sqlite3ExprIfFalse(pParse, pE, addrCont, SQLITE_JUMPIFNULL); if( skipLikeAddr ) sqlite3VdbeJumpHere(v, skipLikeAddr); pTerm->wtFlags |= TERM_CODED; } iLoop = iNext; }while( iLoop>0 ); /* Insert code to test for implied constraints based on transitivity ** of the "==" operator. ** ** Example: If the WHERE clause contains "t1.a=t2.b" and "t2.b=123" ** and we are coding the t1 loop and the t2 loop has not yet coded, ** then we cannot use the "t1.a=t2.b" constraint, but we can code ** the implied "t1.a=123" constraint. */ for(pTerm=pWC->a, j=pWC->nTerm; j>0; j--, pTerm++){ Expr *pE, sEAlt; WhereTerm *pAlt; if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; if( (pTerm->eOperator & (WO_EQ|WO_IS))==0 ) continue; if( (pTerm->eOperator & WO_EQUIV)==0 ) continue; if( pTerm->leftCursor!=iCur ) continue; if( pTabItem->fg.jointype & JT_LEFT ) continue; pE = pTerm->pExpr; #ifdef WHERETRACE_ENABLED /* 0x800 */ if( sqlite3WhereTrace & 0x800 ){ sqlite3DebugPrintf("Coding transitive constraint:\n"); sqlite3WhereTermPrint(pTerm, pWC->nTerm-j); } #endif assert( !ExprHasProperty(pE, EP_FromJoin) ); assert( (pTerm->prereqRight & pLevel->notReady)!=0 ); pAlt = sqlite3WhereFindTerm(pWC, iCur, pTerm->u.leftColumn, notReady, WO_EQ|WO_IN|WO_IS, 0); if( pAlt==0 ) continue; if( pAlt->wtFlags & (TERM_CODED) ) continue; if( (pAlt->eOperator & WO_IN) && (pAlt->pExpr->flags & EP_xIsSelect) && (pAlt->pExpr->x.pSelect->pEList->nExpr>1) ){ continue; } testcase( pAlt->eOperator & WO_EQ ); testcase( pAlt->eOperator & WO_IS ); testcase( pAlt->eOperator & WO_IN ); VdbeModuleComment((v, "begin transitive constraint")); sEAlt = *pAlt->pExpr; sEAlt.pLeft = pE->pLeft; sqlite3ExprIfFalse(pParse, &sEAlt, addrCont, SQLITE_JUMPIFNULL); } /* For a LEFT OUTER JOIN, generate code that will record the fact that ** at least one row of the right table has matched the left table. */ if( pLevel->iLeftJoin ){ pLevel->addrFirst = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp2(v, OP_Integer, 1, pLevel->iLeftJoin); VdbeComment((v, "record LEFT JOIN hit")); for(pTerm=pWC->a, j=0; jnTerm; j++, pTerm++){ testcase( pTerm->wtFlags & TERM_VIRTUAL ); testcase( pTerm->wtFlags & TERM_CODED ); if( pTerm->wtFlags & (TERM_VIRTUAL|TERM_CODED) ) continue; if( (pTerm->prereqAll & pLevel->notReady)!=0 ){ assert( pWInfo->untestedTerms ); continue; } assert( pTerm->pExpr ); sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL); pTerm->wtFlags |= TERM_CODED; } } #if WHERETRACE_ENABLED /* 0x20800 */ if( sqlite3WhereTrace & 0x20000 ){ sqlite3DebugPrintf("All WHERE-clause terms after coding level %d:\n", iLevel); sqlite3WhereClausePrint(pWC); } if( sqlite3WhereTrace & 0x800 ){ sqlite3DebugPrintf("End Coding level %d: notReady=%llx\n", iLevel, (u64)pLevel->notReady); } #endif return pLevel->notReady; } /************** End of wherecode.c *******************************************/ /************** Begin file whereexpr.c ***************************************/ /* ** 2015-06-08 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This module contains C code that generates VDBE code used to process ** the WHERE clause of SQL statements. ** ** This file was originally part of where.c but was split out to improve ** readability and editabiliity. This file contains utility routines for ** analyzing Expr objects in the WHERE clause. */ /* #include "sqliteInt.h" */ /* #include "whereInt.h" */ /* Forward declarations */ static void exprAnalyze(SrcList*, WhereClause*, int); /* ** Deallocate all memory associated with a WhereOrInfo object. */ static void whereOrInfoDelete(sqlite3 *db, WhereOrInfo *p){ sqlite3WhereClauseClear(&p->wc); sqlite3DbFree(db, p); } /* ** Deallocate all memory associated with a WhereAndInfo object. */ static void whereAndInfoDelete(sqlite3 *db, WhereAndInfo *p){ sqlite3WhereClauseClear(&p->wc); sqlite3DbFree(db, p); } /* ** Add a single new WhereTerm entry to the WhereClause object pWC. ** The new WhereTerm object is constructed from Expr p and with wtFlags. ** The index in pWC->a[] of the new WhereTerm is returned on success. ** 0 is returned if the new WhereTerm could not be added due to a memory ** allocation error. The memory allocation failure will be recorded in ** the db->mallocFailed flag so that higher-level functions can detect it. ** ** This routine will increase the size of the pWC->a[] array as necessary. ** ** If the wtFlags argument includes TERM_DYNAMIC, then responsibility ** for freeing the expression p is assumed by the WhereClause object pWC. ** This is true even if this routine fails to allocate a new WhereTerm. ** ** WARNING: This routine might reallocate the space used to store ** WhereTerms. All pointers to WhereTerms should be invalidated after ** calling this routine. Such pointers may be reinitialized by referencing ** the pWC->a[] array. */ static int whereClauseInsert(WhereClause *pWC, Expr *p, u16 wtFlags){ WhereTerm *pTerm; int idx; testcase( wtFlags & TERM_VIRTUAL ); if( pWC->nTerm>=pWC->nSlot ){ WhereTerm *pOld = pWC->a; sqlite3 *db = pWC->pWInfo->pParse->db; pWC->a = sqlite3DbMallocRawNN(db, sizeof(pWC->a[0])*pWC->nSlot*2 ); if( pWC->a==0 ){ if( wtFlags & TERM_DYNAMIC ){ sqlite3ExprDelete(db, p); } pWC->a = pOld; return 0; } memcpy(pWC->a, pOld, sizeof(pWC->a[0])*pWC->nTerm); if( pOld!=pWC->aStatic ){ sqlite3DbFree(db, pOld); } pWC->nSlot = sqlite3DbMallocSize(db, pWC->a)/sizeof(pWC->a[0]); } pTerm = &pWC->a[idx = pWC->nTerm++]; if( p && ExprHasProperty(p, EP_Unlikely) ){ pTerm->truthProb = sqlite3LogEst(p->iTable) - 270; }else{ pTerm->truthProb = 1; } pTerm->pExpr = sqlite3ExprSkipCollateAndLikely(p); pTerm->wtFlags = wtFlags; pTerm->pWC = pWC; pTerm->iParent = -1; memset(&pTerm->eOperator, 0, sizeof(WhereTerm) - offsetof(WhereTerm,eOperator)); return idx; } /* ** Return TRUE if the given operator is one of the operators that is ** allowed for an indexable WHERE clause term. The allowed operators are ** "=", "<", ">", "<=", ">=", "IN", "IS", and "IS NULL" */ static int allowedOp(int op){ assert( TK_GT>TK_EQ && TK_GTTK_EQ && TK_LTTK_EQ && TK_LE=TK_EQ && op<=TK_GE) || op==TK_ISNULL || op==TK_IS; } /* ** Commute a comparison operator. Expressions of the form "X op Y" ** are converted into "Y op X". */ static u16 exprCommute(Parse *pParse, Expr *pExpr){ if( pExpr->pLeft->op==TK_VECTOR || pExpr->pRight->op==TK_VECTOR || sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft, pExpr->pRight) != sqlite3BinaryCompareCollSeq(pParse, pExpr->pRight, pExpr->pLeft) ){ pExpr->flags ^= EP_Commuted; } SWAP(Expr*,pExpr->pRight,pExpr->pLeft); if( pExpr->op>=TK_GT ){ assert( TK_LT==TK_GT+2 ); assert( TK_GE==TK_LE+2 ); assert( TK_GT>TK_EQ ); assert( TK_GTop>=TK_GT && pExpr->op<=TK_GE ); pExpr->op = ((pExpr->op-TK_GT)^2)+TK_GT; } return 0; } /* ** Translate from TK_xx operator to WO_xx bitmask. */ static u16 operatorMask(int op){ u16 c; assert( allowedOp(op) ); if( op==TK_IN ){ c = WO_IN; }else if( op==TK_ISNULL ){ c = WO_ISNULL; }else if( op==TK_IS ){ c = WO_IS; }else{ assert( (WO_EQ<<(op-TK_EQ)) < 0x7fff ); c = (u16)(WO_EQ<<(op-TK_EQ)); } assert( op!=TK_ISNULL || c==WO_ISNULL ); assert( op!=TK_IN || c==WO_IN ); assert( op!=TK_EQ || c==WO_EQ ); assert( op!=TK_LT || c==WO_LT ); assert( op!=TK_LE || c==WO_LE ); assert( op!=TK_GT || c==WO_GT ); assert( op!=TK_GE || c==WO_GE ); assert( op!=TK_IS || c==WO_IS ); return c; } #ifndef SQLITE_OMIT_LIKE_OPTIMIZATION /* ** Check to see if the given expression is a LIKE or GLOB operator that ** can be optimized using inequality constraints. Return TRUE if it is ** so and false if not. ** ** In order for the operator to be optimizible, the RHS must be a string ** literal that does not begin with a wildcard. The LHS must be a column ** that may only be NULL, a string, or a BLOB, never a number. (This means ** that virtual tables cannot participate in the LIKE optimization.) The ** collating sequence for the column on the LHS must be appropriate for ** the operator. */ static int isLikeOrGlob( Parse *pParse, /* Parsing and code generating context */ Expr *pExpr, /* Test this expression */ Expr **ppPrefix, /* Pointer to TK_STRING expression with pattern prefix */ int *pisComplete, /* True if the only wildcard is % in the last character */ int *pnoCase /* True if uppercase is equivalent to lowercase */ ){ const u8 *z = 0; /* String on RHS of LIKE operator */ Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ ExprList *pList; /* List of operands to the LIKE operator */ u8 c; /* One character in z[] */ int cnt; /* Number of non-wildcard prefix characters */ u8 wc[4]; /* Wildcard characters */ sqlite3 *db = pParse->db; /* Database connection */ sqlite3_value *pVal = 0; int op; /* Opcode of pRight */ int rc; /* Result code to return */ if( !sqlite3IsLikeFunction(db, pExpr, pnoCase, (char*)wc) ){ return 0; } #ifdef SQLITE_EBCDIC if( *pnoCase ) return 0; #endif pList = pExpr->x.pList; pLeft = pList->a[1].pExpr; pRight = sqlite3ExprSkipCollate(pList->a[0].pExpr); op = pRight->op; if( op==TK_VARIABLE && (db->flags & SQLITE_EnableQPSG)==0 ){ Vdbe *pReprepare = pParse->pReprepare; int iCol = pRight->iColumn; pVal = sqlite3VdbeGetBoundValue(pReprepare, iCol, SQLITE_AFF_BLOB); if( pVal && sqlite3_value_type(pVal)==SQLITE_TEXT ){ z = sqlite3_value_text(pVal); } sqlite3VdbeSetVarmask(pParse->pVdbe, iCol); assert( pRight->op==TK_VARIABLE || pRight->op==TK_REGISTER ); }else if( op==TK_STRING ){ z = (u8*)pRight->u.zToken; } if( z ){ /* Count the number of prefix characters prior to the first wildcard */ cnt = 0; while( (c=z[cnt])!=0 && c!=wc[0] && c!=wc[1] && c!=wc[2] ){ cnt++; if( c==wc[3] && z[cnt]!=0 ) cnt++; } /* The optimization is possible only if (1) the pattern does not begin ** with a wildcard and if (2) the non-wildcard prefix does not end with ** an (illegal 0xff) character, or (3) the pattern does not consist of ** a single escape character. The second condition is necessary so ** that we can increment the prefix key to find an upper bound for the ** range search. The third is because the caller assumes that the pattern ** consists of at least one character after all escapes have been ** removed. */ if( cnt!=0 && 255!=(u8)z[cnt-1] && (cnt>1 || z[0]!=wc[3]) ){ Expr *pPrefix; /* A "complete" match if the pattern ends with "*" or "%" */ *pisComplete = c==wc[0] && z[cnt+1]==0; /* Get the pattern prefix. Remove all escapes from the prefix. */ pPrefix = sqlite3Expr(db, TK_STRING, (char*)z); if( pPrefix ){ int iFrom, iTo; char *zNew = pPrefix->u.zToken; zNew[cnt] = 0; for(iFrom=iTo=0; iFrom0 ); /* If the LHS is not an ordinary column with TEXT affinity, then the ** pattern prefix boundaries (both the start and end boundaries) must ** not look like a number. Otherwise the pattern might be treated as ** a number, which will invalidate the LIKE optimization. ** ** Getting this right has been a persistent source of bugs in the ** LIKE optimization. See, for example: ** 2018-09-10 https://sqlite.org/src/info/c94369cae9b561b1 ** 2019-05-02 https://sqlite.org/src/info/b043a54c3de54b28 ** 2019-06-10 https://sqlite.org/src/info/fd76310a5e843e07 ** 2019-06-14 https://sqlite.org/src/info/ce8717f0885af975 ** 2019-09-03 https://sqlite.org/src/info/0f0428096f17252a */ if( pLeft->op!=TK_COLUMN || sqlite3ExprAffinity(pLeft)!=SQLITE_AFF_TEXT || IsVirtual(pLeft->y.pTab) /* Value might be numeric */ ){ int isNum; double rDummy; isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); if( isNum<=0 ){ if( iTo==1 && zNew[0]=='-' ){ isNum = +1; }else{ zNew[iTo-1]++; isNum = sqlite3AtoF(zNew, &rDummy, iTo, SQLITE_UTF8); zNew[iTo-1]--; } } if( isNum>0 ){ sqlite3ExprDelete(db, pPrefix); sqlite3ValueFree(pVal); return 0; } } } *ppPrefix = pPrefix; /* If the RHS pattern is a bound parameter, make arrangements to ** reprepare the statement when that parameter is rebound */ if( op==TK_VARIABLE ){ Vdbe *v = pParse->pVdbe; sqlite3VdbeSetVarmask(v, pRight->iColumn); if( *pisComplete && pRight->u.zToken[1] ){ /* If the rhs of the LIKE expression is a variable, and the current ** value of the variable means there is no need to invoke the LIKE ** function, then no OP_Variable will be added to the program. ** This causes problems for the sqlite3_bind_parameter_name() ** API. To work around them, add a dummy OP_Variable here. */ int r1 = sqlite3GetTempReg(pParse); sqlite3ExprCodeTarget(pParse, pRight, r1); sqlite3VdbeChangeP3(v, sqlite3VdbeCurrentAddr(v)-1, 0); sqlite3ReleaseTempReg(pParse, r1); } } }else{ z = 0; } } rc = (z!=0); sqlite3ValueFree(pVal); return rc; } #endif /* SQLITE_OMIT_LIKE_OPTIMIZATION */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Check to see if the pExpr expression is a form that needs to be passed ** to the xBestIndex method of virtual tables. Forms of interest include: ** ** Expression Virtual Table Operator ** ----------------------- --------------------------------- ** 1. column MATCH expr SQLITE_INDEX_CONSTRAINT_MATCH ** 2. column GLOB expr SQLITE_INDEX_CONSTRAINT_GLOB ** 3. column LIKE expr SQLITE_INDEX_CONSTRAINT_LIKE ** 4. column REGEXP expr SQLITE_INDEX_CONSTRAINT_REGEXP ** 5. column != expr SQLITE_INDEX_CONSTRAINT_NE ** 6. expr != column SQLITE_INDEX_CONSTRAINT_NE ** 7. column IS NOT expr SQLITE_INDEX_CONSTRAINT_ISNOT ** 8. expr IS NOT column SQLITE_INDEX_CONSTRAINT_ISNOT ** 9. column IS NOT NULL SQLITE_INDEX_CONSTRAINT_ISNOTNULL ** ** In every case, "column" must be a column of a virtual table. If there ** is a match, set *ppLeft to the "column" expression, set *ppRight to the ** "expr" expression (even though in forms (6) and (8) the column is on the ** right and the expression is on the left). Also set *peOp2 to the ** appropriate virtual table operator. The return value is 1 or 2 if there ** is a match. The usual return is 1, but if the RHS is also a column ** of virtual table in forms (5) or (7) then return 2. ** ** If the expression matches none of the patterns above, return 0. */ static int isAuxiliaryVtabOperator( sqlite3 *db, /* Parsing context */ Expr *pExpr, /* Test this expression */ unsigned char *peOp2, /* OUT: 0 for MATCH, or else an op2 value */ Expr **ppLeft, /* Column expression to left of MATCH/op2 */ Expr **ppRight /* Expression to left of MATCH/op2 */ ){ if( pExpr->op==TK_FUNCTION ){ static const struct Op2 { const char *zOp; unsigned char eOp2; } aOp[] = { { "match", SQLITE_INDEX_CONSTRAINT_MATCH }, { "glob", SQLITE_INDEX_CONSTRAINT_GLOB }, { "like", SQLITE_INDEX_CONSTRAINT_LIKE }, { "regexp", SQLITE_INDEX_CONSTRAINT_REGEXP } }; ExprList *pList; Expr *pCol; /* Column reference */ int i; pList = pExpr->x.pList; if( pList==0 || pList->nExpr!=2 ){ return 0; } /* Built-in operators MATCH, GLOB, LIKE, and REGEXP attach to a ** virtual table on their second argument, which is the same as ** the left-hand side operand in their in-fix form. ** ** vtab_column MATCH expression ** MATCH(expression,vtab_column) */ pCol = pList->a[1].pExpr; testcase( pCol->op==TK_COLUMN && pCol->y.pTab==0 ); if( ExprIsVtab(pCol) ){ for(i=0; iu.zToken, aOp[i].zOp)==0 ){ *peOp2 = aOp[i].eOp2; *ppRight = pList->a[0].pExpr; *ppLeft = pCol; return 1; } } } /* We can also match against the first column of overloaded ** functions where xFindFunction returns a value of at least ** SQLITE_INDEX_CONSTRAINT_FUNCTION. ** ** OVERLOADED(vtab_column,expression) ** ** Historically, xFindFunction expected to see lower-case function ** names. But for this use case, xFindFunction is expected to deal ** with function names in an arbitrary case. */ pCol = pList->a[0].pExpr; testcase( pCol->op==TK_COLUMN && pCol->y.pTab==0 ); if( ExprIsVtab(pCol) ){ sqlite3_vtab *pVtab; sqlite3_module *pMod; void (*xNotUsed)(sqlite3_context*,int,sqlite3_value**); void *pNotUsed; pVtab = sqlite3GetVTable(db, pCol->y.pTab)->pVtab; assert( pVtab!=0 ); assert( pVtab->pModule!=0 ); pMod = (sqlite3_module *)pVtab->pModule; if( pMod->xFindFunction!=0 ){ i = pMod->xFindFunction(pVtab,2, pExpr->u.zToken, &xNotUsed, &pNotUsed); if( i>=SQLITE_INDEX_CONSTRAINT_FUNCTION ){ *peOp2 = i; *ppRight = pList->a[1].pExpr; *ppLeft = pCol; return 1; } } } }else if( pExpr->op==TK_NE || pExpr->op==TK_ISNOT || pExpr->op==TK_NOTNULL ){ int res = 0; Expr *pLeft = pExpr->pLeft; Expr *pRight = pExpr->pRight; testcase( pLeft->op==TK_COLUMN && pLeft->y.pTab==0 ); if( ExprIsVtab(pLeft) ){ res++; } testcase( pRight && pRight->op==TK_COLUMN && pRight->y.pTab==0 ); if( pRight && ExprIsVtab(pRight) ){ res++; SWAP(Expr*, pLeft, pRight); } *ppLeft = pLeft; *ppRight = pRight; if( pExpr->op==TK_NE ) *peOp2 = SQLITE_INDEX_CONSTRAINT_NE; if( pExpr->op==TK_ISNOT ) *peOp2 = SQLITE_INDEX_CONSTRAINT_ISNOT; if( pExpr->op==TK_NOTNULL ) *peOp2 = SQLITE_INDEX_CONSTRAINT_ISNOTNULL; return res; } return 0; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ /* ** If the pBase expression originated in the ON or USING clause of ** a join, then transfer the appropriate markings over to derived. */ static void transferJoinMarkings(Expr *pDerived, Expr *pBase){ if( pDerived ){ pDerived->flags |= pBase->flags & EP_FromJoin; pDerived->iRightJoinTable = pBase->iRightJoinTable; } } /* ** Mark term iChild as being a child of term iParent */ static void markTermAsChild(WhereClause *pWC, int iChild, int iParent){ pWC->a[iChild].iParent = iParent; pWC->a[iChild].truthProb = pWC->a[iParent].truthProb; pWC->a[iParent].nChild++; } /* ** Return the N-th AND-connected subterm of pTerm. Or if pTerm is not ** a conjunction, then return just pTerm when N==0. If N is exceeds ** the number of available subterms, return NULL. */ static WhereTerm *whereNthSubterm(WhereTerm *pTerm, int N){ if( pTerm->eOperator!=WO_AND ){ return N==0 ? pTerm : 0; } if( Nu.pAndInfo->wc.nTerm ){ return &pTerm->u.pAndInfo->wc.a[N]; } return 0; } /* ** Subterms pOne and pTwo are contained within WHERE clause pWC. The ** two subterms are in disjunction - they are OR-ed together. ** ** If these two terms are both of the form: "A op B" with the same ** A and B values but different operators and if the operators are ** compatible (if one is = and the other is <, for example) then ** add a new virtual AND term to pWC that is the combination of the ** two. ** ** Some examples: ** ** x x<=y ** x=y OR x=y --> x=y ** x<=y OR x x<=y ** ** The following is NOT generated: ** ** xy --> x!=y */ static void whereCombineDisjuncts( SrcList *pSrc, /* the FROM clause */ WhereClause *pWC, /* The complete WHERE clause */ WhereTerm *pOne, /* First disjunct */ WhereTerm *pTwo /* Second disjunct */ ){ u16 eOp = pOne->eOperator | pTwo->eOperator; sqlite3 *db; /* Database connection (for malloc) */ Expr *pNew; /* New virtual expression */ int op; /* Operator for the combined expression */ int idxNew; /* Index in pWC of the next virtual term */ if( (pOne->eOperator & (WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE))==0 ) return; if( (pTwo->eOperator & (WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE))==0 ) return; if( (eOp & (WO_EQ|WO_LT|WO_LE))!=eOp && (eOp & (WO_EQ|WO_GT|WO_GE))!=eOp ) return; assert( pOne->pExpr->pLeft!=0 && pOne->pExpr->pRight!=0 ); assert( pTwo->pExpr->pLeft!=0 && pTwo->pExpr->pRight!=0 ); if( sqlite3ExprCompare(0,pOne->pExpr->pLeft, pTwo->pExpr->pLeft, -1) ) return; if( sqlite3ExprCompare(0,pOne->pExpr->pRight, pTwo->pExpr->pRight,-1) )return; /* If we reach this point, it means the two subterms can be combined */ if( (eOp & (eOp-1))!=0 ){ if( eOp & (WO_LT|WO_LE) ){ eOp = WO_LE; }else{ assert( eOp & (WO_GT|WO_GE) ); eOp = WO_GE; } } db = pWC->pWInfo->pParse->db; pNew = sqlite3ExprDup(db, pOne->pExpr, 0); if( pNew==0 ) return; for(op=TK_EQ; eOp!=(WO_EQ<<(op-TK_EQ)); op++){ assert( opop = op; idxNew = whereClauseInsert(pWC, pNew, TERM_VIRTUAL|TERM_DYNAMIC); exprAnalyze(pSrc, pWC, idxNew); } #if !defined(SQLITE_OMIT_OR_OPTIMIZATION) && !defined(SQLITE_OMIT_SUBQUERY) /* ** Analyze a term that consists of two or more OR-connected ** subterms. So in: ** ** ... WHERE (a=5) AND (b=7 OR c=9 OR d=13) AND (d=13) ** ^^^^^^^^^^^^^^^^^^^^ ** ** This routine analyzes terms such as the middle term in the above example. ** A WhereOrTerm object is computed and attached to the term under ** analysis, regardless of the outcome of the analysis. Hence: ** ** WhereTerm.wtFlags |= TERM_ORINFO ** WhereTerm.u.pOrInfo = a dynamically allocated WhereOrTerm object ** ** The term being analyzed must have two or more of OR-connected subterms. ** A single subterm might be a set of AND-connected sub-subterms. ** Examples of terms under analysis: ** ** (A) t1.x=t2.y OR t1.x=t2.z OR t1.y=15 OR t1.z=t3.a+5 ** (B) x=expr1 OR expr2=x OR x=expr3 ** (C) t1.x=t2.y OR (t1.x=t2.z AND t1.y=15) ** (D) x=expr1 OR (y>11 AND y<22 AND z LIKE '*hello*') ** (E) (p.a=1 AND q.b=2 AND r.c=3) OR (p.x=4 AND q.y=5 AND r.z=6) ** (F) x>A OR (x=A AND y>=B) ** ** CASE 1: ** ** If all subterms are of the form T.C=expr for some single column of C and ** a single table T (as shown in example B above) then create a new virtual ** term that is an equivalent IN expression. In other words, if the term ** being analyzed is: ** ** x = expr1 OR expr2 = x OR x = expr3 ** ** then create a new virtual term like this: ** ** x IN (expr1,expr2,expr3) ** ** CASE 2: ** ** If there are exactly two disjuncts and one side has x>A and the other side ** has x=A (for the same x and A) then add a new virtual conjunct term to the ** WHERE clause of the form "x>=A". Example: ** ** x>A OR (x=A AND y>B) adds: x>=A ** ** The added conjunct can sometimes be helpful in query planning. ** ** CASE 3: ** ** If all subterms are indexable by a single table T, then set ** ** WhereTerm.eOperator = WO_OR ** WhereTerm.u.pOrInfo->indexable |= the cursor number for table T ** ** A subterm is "indexable" if it is of the form ** "T.C " where C is any column of table T and ** is one of "=", "<", "<=", ">", ">=", "IS NULL", or "IN". ** A subterm is also indexable if it is an AND of two or more ** subsubterms at least one of which is indexable. Indexable AND ** subterms have their eOperator set to WO_AND and they have ** u.pAndInfo set to a dynamically allocated WhereAndTerm object. ** ** From another point of view, "indexable" means that the subterm could ** potentially be used with an index if an appropriate index exists. ** This analysis does not consider whether or not the index exists; that ** is decided elsewhere. This analysis only looks at whether subterms ** appropriate for indexing exist. ** ** All examples A through E above satisfy case 3. But if a term ** also satisfies case 1 (such as B) we know that the optimizer will ** always prefer case 1, so in that case we pretend that case 3 is not ** satisfied. ** ** It might be the case that multiple tables are indexable. For example, ** (E) above is indexable on tables P, Q, and R. ** ** Terms that satisfy case 3 are candidates for lookup by using ** separate indices to find rowids for each subterm and composing ** the union of all rowids using a RowSet object. This is similar ** to "bitmap indices" in other database engines. ** ** OTHERWISE: ** ** If none of cases 1, 2, or 3 apply, then leave the eOperator set to ** zero. This term is not useful for search. */ static void exprAnalyzeOrTerm( SrcList *pSrc, /* the FROM clause */ WhereClause *pWC, /* the complete WHERE clause */ int idxTerm /* Index of the OR-term to be analyzed */ ){ WhereInfo *pWInfo = pWC->pWInfo; /* WHERE clause processing context */ Parse *pParse = pWInfo->pParse; /* Parser context */ sqlite3 *db = pParse->db; /* Database connection */ WhereTerm *pTerm = &pWC->a[idxTerm]; /* The term to be analyzed */ Expr *pExpr = pTerm->pExpr; /* The expression of the term */ int i; /* Loop counters */ WhereClause *pOrWc; /* Breakup of pTerm into subterms */ WhereTerm *pOrTerm; /* A Sub-term within the pOrWc */ WhereOrInfo *pOrInfo; /* Additional information associated with pTerm */ Bitmask chngToIN; /* Tables that might satisfy case 1 */ Bitmask indexable; /* Tables that are indexable, satisfying case 2 */ /* ** Break the OR clause into its separate subterms. The subterms are ** stored in a WhereClause structure containing within the WhereOrInfo ** object that is attached to the original OR clause term. */ assert( (pTerm->wtFlags & (TERM_DYNAMIC|TERM_ORINFO|TERM_ANDINFO))==0 ); assert( pExpr->op==TK_OR ); pTerm->u.pOrInfo = pOrInfo = sqlite3DbMallocZero(db, sizeof(*pOrInfo)); if( pOrInfo==0 ) return; pTerm->wtFlags |= TERM_ORINFO; pOrWc = &pOrInfo->wc; memset(pOrWc->aStatic, 0, sizeof(pOrWc->aStatic)); sqlite3WhereClauseInit(pOrWc, pWInfo); sqlite3WhereSplit(pOrWc, pExpr, TK_OR); sqlite3WhereExprAnalyze(pSrc, pOrWc); if( db->mallocFailed ) return; assert( pOrWc->nTerm>=2 ); /* ** Compute the set of tables that might satisfy cases 1 or 3. */ indexable = ~(Bitmask)0; chngToIN = ~(Bitmask)0; for(i=pOrWc->nTerm-1, pOrTerm=pOrWc->a; i>=0 && indexable; i--, pOrTerm++){ if( (pOrTerm->eOperator & WO_SINGLE)==0 ){ WhereAndInfo *pAndInfo; assert( (pOrTerm->wtFlags & (TERM_ANDINFO|TERM_ORINFO))==0 ); chngToIN = 0; pAndInfo = sqlite3DbMallocRawNN(db, sizeof(*pAndInfo)); if( pAndInfo ){ WhereClause *pAndWC; WhereTerm *pAndTerm; int j; Bitmask b = 0; pOrTerm->u.pAndInfo = pAndInfo; pOrTerm->wtFlags |= TERM_ANDINFO; pOrTerm->eOperator = WO_AND; pAndWC = &pAndInfo->wc; memset(pAndWC->aStatic, 0, sizeof(pAndWC->aStatic)); sqlite3WhereClauseInit(pAndWC, pWC->pWInfo); sqlite3WhereSplit(pAndWC, pOrTerm->pExpr, TK_AND); sqlite3WhereExprAnalyze(pSrc, pAndWC); pAndWC->pOuter = pWC; if( !db->mallocFailed ){ for(j=0, pAndTerm=pAndWC->a; jnTerm; j++, pAndTerm++){ assert( pAndTerm->pExpr ); if( allowedOp(pAndTerm->pExpr->op) || pAndTerm->eOperator==WO_AUX ){ b |= sqlite3WhereGetMask(&pWInfo->sMaskSet, pAndTerm->leftCursor); } } } indexable &= b; } }else if( pOrTerm->wtFlags & TERM_COPIED ){ /* Skip this term for now. We revisit it when we process the ** corresponding TERM_VIRTUAL term */ }else{ Bitmask b; b = sqlite3WhereGetMask(&pWInfo->sMaskSet, pOrTerm->leftCursor); if( pOrTerm->wtFlags & TERM_VIRTUAL ){ WhereTerm *pOther = &pOrWc->a[pOrTerm->iParent]; b |= sqlite3WhereGetMask(&pWInfo->sMaskSet, pOther->leftCursor); } indexable &= b; if( (pOrTerm->eOperator & WO_EQ)==0 ){ chngToIN = 0; }else{ chngToIN &= b; } } } /* ** Record the set of tables that satisfy case 3. The set might be ** empty. */ pOrInfo->indexable = indexable; if( indexable ){ pTerm->eOperator = WO_OR; pWC->hasOr = 1; }else{ pTerm->eOperator = WO_OR; } /* For a two-way OR, attempt to implementation case 2. */ if( indexable && pOrWc->nTerm==2 ){ int iOne = 0; WhereTerm *pOne; while( (pOne = whereNthSubterm(&pOrWc->a[0],iOne++))!=0 ){ int iTwo = 0; WhereTerm *pTwo; while( (pTwo = whereNthSubterm(&pOrWc->a[1],iTwo++))!=0 ){ whereCombineDisjuncts(pSrc, pWC, pOne, pTwo); } } } /* ** chngToIN holds a set of tables that *might* satisfy case 1. But ** we have to do some additional checking to see if case 1 really ** is satisfied. ** ** chngToIN will hold either 0, 1, or 2 bits. The 0-bit case means ** that there is no possibility of transforming the OR clause into an ** IN operator because one or more terms in the OR clause contain ** something other than == on a column in the single table. The 1-bit ** case means that every term of the OR clause is of the form ** "table.column=expr" for some single table. The one bit that is set ** will correspond to the common table. We still need to check to make ** sure the same column is used on all terms. The 2-bit case is when ** the all terms are of the form "table1.column=table2.column". It ** might be possible to form an IN operator with either table1.column ** or table2.column as the LHS if either is common to every term of ** the OR clause. ** ** Note that terms of the form "table.column1=table.column2" (the ** same table on both sizes of the ==) cannot be optimized. */ if( chngToIN ){ int okToChngToIN = 0; /* True if the conversion to IN is valid */ int iColumn = -1; /* Column index on lhs of IN operator */ int iCursor = -1; /* Table cursor common to all terms */ int j = 0; /* Loop counter */ /* Search for a table and column that appears on one side or the ** other of the == operator in every subterm. That table and column ** will be recorded in iCursor and iColumn. There might not be any ** such table and column. Set okToChngToIN if an appropriate table ** and column is found but leave okToChngToIN false if not found. */ for(j=0; j<2 && !okToChngToIN; j++){ Expr *pLeft = 0; pOrTerm = pOrWc->a; for(i=pOrWc->nTerm-1; i>=0; i--, pOrTerm++){ assert( pOrTerm->eOperator & WO_EQ ); pOrTerm->wtFlags &= ~TERM_OR_OK; if( pOrTerm->leftCursor==iCursor ){ /* This is the 2-bit case and we are on the second iteration and ** current term is from the first iteration. So skip this term. */ assert( j==1 ); continue; } if( (chngToIN & sqlite3WhereGetMask(&pWInfo->sMaskSet, pOrTerm->leftCursor))==0 ){ /* This term must be of the form t1.a==t2.b where t2 is in the ** chngToIN set but t1 is not. This term will be either preceded ** or follwed by an inverted copy (t2.b==t1.a). Skip this term ** and use its inversion. */ testcase( pOrTerm->wtFlags & TERM_COPIED ); testcase( pOrTerm->wtFlags & TERM_VIRTUAL ); assert( pOrTerm->wtFlags & (TERM_COPIED|TERM_VIRTUAL) ); continue; } iColumn = pOrTerm->u.leftColumn; iCursor = pOrTerm->leftCursor; pLeft = pOrTerm->pExpr->pLeft; break; } if( i<0 ){ /* No candidate table+column was found. This can only occur ** on the second iteration */ assert( j==1 ); assert( IsPowerOfTwo(chngToIN) ); assert( chngToIN==sqlite3WhereGetMask(&pWInfo->sMaskSet, iCursor) ); break; } testcase( j==1 ); /* We have found a candidate table and column. Check to see if that ** table and column is common to every term in the OR clause */ okToChngToIN = 1; for(; i>=0 && okToChngToIN; i--, pOrTerm++){ assert( pOrTerm->eOperator & WO_EQ ); if( pOrTerm->leftCursor!=iCursor ){ pOrTerm->wtFlags &= ~TERM_OR_OK; }else if( pOrTerm->u.leftColumn!=iColumn || (iColumn==XN_EXPR && sqlite3ExprCompare(pParse, pOrTerm->pExpr->pLeft, pLeft, -1) )){ okToChngToIN = 0; }else{ int affLeft, affRight; /* If the right-hand side is also a column, then the affinities ** of both right and left sides must be such that no type ** conversions are required on the right. (Ticket #2249) */ affRight = sqlite3ExprAffinity(pOrTerm->pExpr->pRight); affLeft = sqlite3ExprAffinity(pOrTerm->pExpr->pLeft); if( affRight!=0 && affRight!=affLeft ){ okToChngToIN = 0; }else{ pOrTerm->wtFlags |= TERM_OR_OK; } } } } /* At this point, okToChngToIN is true if original pTerm satisfies ** case 1. In that case, construct a new virtual term that is ** pTerm converted into an IN operator. */ if( okToChngToIN ){ Expr *pDup; /* A transient duplicate expression */ ExprList *pList = 0; /* The RHS of the IN operator */ Expr *pLeft = 0; /* The LHS of the IN operator */ Expr *pNew; /* The complete IN operator */ for(i=pOrWc->nTerm-1, pOrTerm=pOrWc->a; i>=0; i--, pOrTerm++){ if( (pOrTerm->wtFlags & TERM_OR_OK)==0 ) continue; assert( pOrTerm->eOperator & WO_EQ ); assert( pOrTerm->leftCursor==iCursor ); assert( pOrTerm->u.leftColumn==iColumn ); pDup = sqlite3ExprDup(db, pOrTerm->pExpr->pRight, 0); pList = sqlite3ExprListAppend(pWInfo->pParse, pList, pDup); pLeft = pOrTerm->pExpr->pLeft; } assert( pLeft!=0 ); pDup = sqlite3ExprDup(db, pLeft, 0); pNew = sqlite3PExpr(pParse, TK_IN, pDup, 0); if( pNew ){ int idxNew; transferJoinMarkings(pNew, pExpr); assert( !ExprHasProperty(pNew, EP_xIsSelect) ); pNew->x.pList = pList; idxNew = whereClauseInsert(pWC, pNew, TERM_VIRTUAL|TERM_DYNAMIC); testcase( idxNew==0 ); exprAnalyze(pSrc, pWC, idxNew); /* pTerm = &pWC->a[idxTerm]; // would be needed if pTerm where used again */ markTermAsChild(pWC, idxNew, idxTerm); }else{ sqlite3ExprListDelete(db, pList); } } } } #endif /* !SQLITE_OMIT_OR_OPTIMIZATION && !SQLITE_OMIT_SUBQUERY */ /* ** We already know that pExpr is a binary operator where both operands are ** column references. This routine checks to see if pExpr is an equivalence ** relation: ** 1. The SQLITE_Transitive optimization must be enabled ** 2. Must be either an == or an IS operator ** 3. Not originating in the ON clause of an OUTER JOIN ** 4. The affinities of A and B must be compatible ** 5a. Both operands use the same collating sequence OR ** 5b. The overall collating sequence is BINARY ** If this routine returns TRUE, that means that the RHS can be substituted ** for the LHS anyplace else in the WHERE clause where the LHS column occurs. ** This is an optimization. No harm comes from returning 0. But if 1 is ** returned when it should not be, then incorrect answers might result. */ static int termIsEquivalence(Parse *pParse, Expr *pExpr){ char aff1, aff2; CollSeq *pColl; if( !OptimizationEnabled(pParse->db, SQLITE_Transitive) ) return 0; if( pExpr->op!=TK_EQ && pExpr->op!=TK_IS ) return 0; if( ExprHasProperty(pExpr, EP_FromJoin) ) return 0; aff1 = sqlite3ExprAffinity(pExpr->pLeft); aff2 = sqlite3ExprAffinity(pExpr->pRight); if( aff1!=aff2 && (!sqlite3IsNumericAffinity(aff1) || !sqlite3IsNumericAffinity(aff2)) ){ return 0; } pColl = sqlite3ExprCompareCollSeq(pParse, pExpr); if( sqlite3IsBinary(pColl) ) return 1; return sqlite3ExprCollSeqMatch(pParse, pExpr->pLeft, pExpr->pRight); } /* ** Recursively walk the expressions of a SELECT statement and generate ** a bitmask indicating which tables are used in that expression ** tree. */ static Bitmask exprSelectUsage(WhereMaskSet *pMaskSet, Select *pS){ Bitmask mask = 0; while( pS ){ SrcList *pSrc = pS->pSrc; mask |= sqlite3WhereExprListUsage(pMaskSet, pS->pEList); mask |= sqlite3WhereExprListUsage(pMaskSet, pS->pGroupBy); mask |= sqlite3WhereExprListUsage(pMaskSet, pS->pOrderBy); mask |= sqlite3WhereExprUsage(pMaskSet, pS->pWhere); mask |= sqlite3WhereExprUsage(pMaskSet, pS->pHaving); if( ALWAYS(pSrc!=0) ){ int i; for(i=0; inSrc; i++){ mask |= exprSelectUsage(pMaskSet, pSrc->a[i].pSelect); mask |= sqlite3WhereExprUsage(pMaskSet, pSrc->a[i].pOn); if( pSrc->a[i].fg.isTabFunc ){ mask |= sqlite3WhereExprListUsage(pMaskSet, pSrc->a[i].u1.pFuncArg); } } } pS = pS->pPrior; } return mask; } /* ** Expression pExpr is one operand of a comparison operator that might ** be useful for indexing. This routine checks to see if pExpr appears ** in any index. Return TRUE (1) if pExpr is an indexed term and return ** FALSE (0) if not. If TRUE is returned, also set aiCurCol[0] to the cursor ** number of the table that is indexed and aiCurCol[1] to the column number ** of the column that is indexed, or XN_EXPR (-2) if an expression is being ** indexed. ** ** If pExpr is a TK_COLUMN column reference, then this routine always returns ** true even if that particular column is not indexed, because the column ** might be added to an automatic index later. */ static SQLITE_NOINLINE int exprMightBeIndexed2( SrcList *pFrom, /* The FROM clause */ Bitmask mPrereq, /* Bitmask of FROM clause terms referenced by pExpr */ int *aiCurCol, /* Write the referenced table cursor and column here */ Expr *pExpr /* An operand of a comparison operator */ ){ Index *pIdx; int i; int iCur; for(i=0; mPrereq>1; i++, mPrereq>>=1){} iCur = pFrom->a[i].iCursor; for(pIdx=pFrom->a[i].pTab->pIndex; pIdx; pIdx=pIdx->pNext){ if( pIdx->aColExpr==0 ) continue; for(i=0; inKeyCol; i++){ if( pIdx->aiColumn[i]!=XN_EXPR ) continue; if( sqlite3ExprCompareSkip(pExpr, pIdx->aColExpr->a[i].pExpr, iCur)==0 ){ aiCurCol[0] = iCur; aiCurCol[1] = XN_EXPR; return 1; } } } return 0; } static int exprMightBeIndexed( SrcList *pFrom, /* The FROM clause */ Bitmask mPrereq, /* Bitmask of FROM clause terms referenced by pExpr */ int *aiCurCol, /* Write the referenced table cursor & column here */ Expr *pExpr, /* An operand of a comparison operator */ int op /* The specific comparison operator */ ){ /* If this expression is a vector to the left or right of a ** inequality constraint (>, <, >= or <=), perform the processing ** on the first element of the vector. */ assert( TK_GT+1==TK_LE && TK_GT+2==TK_LT && TK_GT+3==TK_GE ); assert( TK_ISop==TK_VECTOR && (op>=TK_GT && ALWAYS(op<=TK_GE)) ){ pExpr = pExpr->x.pList->a[0].pExpr; } if( pExpr->op==TK_COLUMN ){ aiCurCol[0] = pExpr->iTable; aiCurCol[1] = pExpr->iColumn; return 1; } if( mPrereq==0 ) return 0; /* No table references */ if( (mPrereq&(mPrereq-1))!=0 ) return 0; /* Refs more than one table */ return exprMightBeIndexed2(pFrom,mPrereq,aiCurCol,pExpr); } /* ** The input to this routine is an WhereTerm structure with only the ** "pExpr" field filled in. The job of this routine is to analyze the ** subexpression and populate all the other fields of the WhereTerm ** structure. ** ** If the expression is of the form " X" it gets commuted ** to the standard form of "X ". ** ** If the expression is of the form "X Y" where both X and Y are ** columns, then the original expression is unchanged and a new virtual ** term of the form "Y X" is added to the WHERE clause and ** analyzed separately. The original term is marked with TERM_COPIED ** and the new term is marked with TERM_DYNAMIC (because it's pExpr ** needs to be freed with the WhereClause) and TERM_VIRTUAL (because it ** is a commuted copy of a prior term.) The original term has nChild=1 ** and the copy has idxParent set to the index of the original term. */ static void exprAnalyze( SrcList *pSrc, /* the FROM clause */ WhereClause *pWC, /* the WHERE clause */ int idxTerm /* Index of the term to be analyzed */ ){ WhereInfo *pWInfo = pWC->pWInfo; /* WHERE clause processing context */ WhereTerm *pTerm; /* The term to be analyzed */ WhereMaskSet *pMaskSet; /* Set of table index masks */ Expr *pExpr; /* The expression to be analyzed */ Bitmask prereqLeft; /* Prerequesites of the pExpr->pLeft */ Bitmask prereqAll; /* Prerequesites of pExpr */ Bitmask extraRight = 0; /* Extra dependencies on LEFT JOIN */ Expr *pStr1 = 0; /* RHS of LIKE/GLOB operator */ int isComplete = 0; /* RHS of LIKE/GLOB ends with wildcard */ int noCase = 0; /* uppercase equivalent to lowercase */ int op; /* Top-level operator. pExpr->op */ Parse *pParse = pWInfo->pParse; /* Parsing context */ sqlite3 *db = pParse->db; /* Database connection */ unsigned char eOp2 = 0; /* op2 value for LIKE/REGEXP/GLOB */ int nLeft; /* Number of elements on left side vector */ if( db->mallocFailed ){ return; } pTerm = &pWC->a[idxTerm]; pMaskSet = &pWInfo->sMaskSet; pExpr = pTerm->pExpr; assert( pExpr->op!=TK_AS && pExpr->op!=TK_COLLATE ); prereqLeft = sqlite3WhereExprUsage(pMaskSet, pExpr->pLeft); op = pExpr->op; if( op==TK_IN ){ assert( pExpr->pRight==0 ); if( sqlite3ExprCheckIN(pParse, pExpr) ) return; if( ExprHasProperty(pExpr, EP_xIsSelect) ){ pTerm->prereqRight = exprSelectUsage(pMaskSet, pExpr->x.pSelect); }else{ pTerm->prereqRight = sqlite3WhereExprListUsage(pMaskSet, pExpr->x.pList); } }else if( op==TK_ISNULL ){ pTerm->prereqRight = 0; }else{ pTerm->prereqRight = sqlite3WhereExprUsage(pMaskSet, pExpr->pRight); } pMaskSet->bVarSelect = 0; prereqAll = sqlite3WhereExprUsageNN(pMaskSet, pExpr); if( pMaskSet->bVarSelect ) pTerm->wtFlags |= TERM_VARSELECT; if( ExprHasProperty(pExpr, EP_FromJoin) ){ Bitmask x = sqlite3WhereGetMask(pMaskSet, pExpr->iRightJoinTable); prereqAll |= x; extraRight = x-1; /* ON clause terms may not be used with an index ** on left table of a LEFT JOIN. Ticket #3015 */ if( (prereqAll>>1)>=x ){ sqlite3ErrorMsg(pParse, "ON clause references tables to its right"); return; } } pTerm->prereqAll = prereqAll; pTerm->leftCursor = -1; pTerm->iParent = -1; pTerm->eOperator = 0; if( allowedOp(op) ){ int aiCurCol[2]; Expr *pLeft = sqlite3ExprSkipCollate(pExpr->pLeft); Expr *pRight = sqlite3ExprSkipCollate(pExpr->pRight); u16 opMask = (pTerm->prereqRight & prereqLeft)==0 ? WO_ALL : WO_EQUIV; if( pTerm->iField>0 ){ assert( op==TK_IN ); assert( pLeft->op==TK_VECTOR ); pLeft = pLeft->x.pList->a[pTerm->iField-1].pExpr; } if( exprMightBeIndexed(pSrc, prereqLeft, aiCurCol, pLeft, op) ){ pTerm->leftCursor = aiCurCol[0]; pTerm->u.leftColumn = aiCurCol[1]; pTerm->eOperator = operatorMask(op) & opMask; } if( op==TK_IS ) pTerm->wtFlags |= TERM_IS; if( pRight && exprMightBeIndexed(pSrc, pTerm->prereqRight, aiCurCol, pRight, op) ){ WhereTerm *pNew; Expr *pDup; u16 eExtraOp = 0; /* Extra bits for pNew->eOperator */ assert( pTerm->iField==0 ); if( pTerm->leftCursor>=0 ){ int idxNew; pDup = sqlite3ExprDup(db, pExpr, 0); if( db->mallocFailed ){ sqlite3ExprDelete(db, pDup); return; } idxNew = whereClauseInsert(pWC, pDup, TERM_VIRTUAL|TERM_DYNAMIC); if( idxNew==0 ) return; pNew = &pWC->a[idxNew]; markTermAsChild(pWC, idxNew, idxTerm); if( op==TK_IS ) pNew->wtFlags |= TERM_IS; pTerm = &pWC->a[idxTerm]; pTerm->wtFlags |= TERM_COPIED; if( termIsEquivalence(pParse, pDup) ){ pTerm->eOperator |= WO_EQUIV; eExtraOp = WO_EQUIV; } }else{ pDup = pExpr; pNew = pTerm; } pNew->wtFlags |= exprCommute(pParse, pDup); pNew->leftCursor = aiCurCol[0]; pNew->u.leftColumn = aiCurCol[1]; testcase( (prereqLeft | extraRight) != prereqLeft ); pNew->prereqRight = prereqLeft | extraRight; pNew->prereqAll = prereqAll; pNew->eOperator = (operatorMask(pDup->op) + eExtraOp) & opMask; } } #ifndef SQLITE_OMIT_BETWEEN_OPTIMIZATION /* If a term is the BETWEEN operator, create two new virtual terms ** that define the range that the BETWEEN implements. For example: ** ** a BETWEEN b AND c ** ** is converted into: ** ** (a BETWEEN b AND c) AND (a>=b) AND (a<=c) ** ** The two new terms are added onto the end of the WhereClause object. ** The new terms are "dynamic" and are children of the original BETWEEN ** term. That means that if the BETWEEN term is coded, the children are ** skipped. Or, if the children are satisfied by an index, the original ** BETWEEN term is skipped. */ else if( pExpr->op==TK_BETWEEN && pWC->op==TK_AND ){ ExprList *pList = pExpr->x.pList; int i; static const u8 ops[] = {TK_GE, TK_LE}; assert( pList!=0 ); assert( pList->nExpr==2 ); for(i=0; i<2; i++){ Expr *pNewExpr; int idxNew; pNewExpr = sqlite3PExpr(pParse, ops[i], sqlite3ExprDup(db, pExpr->pLeft, 0), sqlite3ExprDup(db, pList->a[i].pExpr, 0)); transferJoinMarkings(pNewExpr, pExpr); idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC); testcase( idxNew==0 ); exprAnalyze(pSrc, pWC, idxNew); pTerm = &pWC->a[idxTerm]; markTermAsChild(pWC, idxNew, idxTerm); } } #endif /* SQLITE_OMIT_BETWEEN_OPTIMIZATION */ #if !defined(SQLITE_OMIT_OR_OPTIMIZATION) && !defined(SQLITE_OMIT_SUBQUERY) /* Analyze a term that is composed of two or more subterms connected by ** an OR operator. */ else if( pExpr->op==TK_OR ){ assert( pWC->op==TK_AND ); exprAnalyzeOrTerm(pSrc, pWC, idxTerm); pTerm = &pWC->a[idxTerm]; } #endif /* SQLITE_OMIT_OR_OPTIMIZATION */ #ifndef SQLITE_OMIT_LIKE_OPTIMIZATION /* Add constraints to reduce the search space on a LIKE or GLOB ** operator. ** ** A like pattern of the form "x LIKE 'aBc%'" is changed into constraints ** ** x>='ABC' AND x<'abd' AND x LIKE 'aBc%' ** ** The last character of the prefix "abc" is incremented to form the ** termination condition "abd". If case is not significant (the default ** for LIKE) then the lower-bound is made all uppercase and the upper- ** bound is made all lowercase so that the bounds also work when comparing ** BLOBs. */ if( pWC->op==TK_AND && isLikeOrGlob(pParse, pExpr, &pStr1, &isComplete, &noCase) ){ Expr *pLeft; /* LHS of LIKE/GLOB operator */ Expr *pStr2; /* Copy of pStr1 - RHS of LIKE/GLOB operator */ Expr *pNewExpr1; Expr *pNewExpr2; int idxNew1; int idxNew2; const char *zCollSeqName; /* Name of collating sequence */ const u16 wtFlags = TERM_LIKEOPT | TERM_VIRTUAL | TERM_DYNAMIC; pLeft = pExpr->x.pList->a[1].pExpr; pStr2 = sqlite3ExprDup(db, pStr1, 0); /* Convert the lower bound to upper-case and the upper bound to ** lower-case (upper-case is less than lower-case in ASCII) so that ** the range constraints also work for BLOBs */ if( noCase && !pParse->db->mallocFailed ){ int i; char c; pTerm->wtFlags |= TERM_LIKE; for(i=0; (c = pStr1->u.zToken[i])!=0; i++){ pStr1->u.zToken[i] = sqlite3Toupper(c); pStr2->u.zToken[i] = sqlite3Tolower(c); } } if( !db->mallocFailed ){ u8 c, *pC; /* Last character before the first wildcard */ pC = (u8*)&pStr2->u.zToken[sqlite3Strlen30(pStr2->u.zToken)-1]; c = *pC; if( noCase ){ /* The point is to increment the last character before the first ** wildcard. But if we increment '@', that will push it into the ** alphabetic range where case conversions will mess up the ** inequality. To avoid this, make sure to also run the full ** LIKE on all candidate expressions by clearing the isComplete flag */ if( c=='A'-1 ) isComplete = 0; c = sqlite3UpperToLower[c]; } *pC = c + 1; } zCollSeqName = noCase ? "NOCASE" : sqlite3StrBINARY; pNewExpr1 = sqlite3ExprDup(db, pLeft, 0); pNewExpr1 = sqlite3PExpr(pParse, TK_GE, sqlite3ExprAddCollateString(pParse,pNewExpr1,zCollSeqName), pStr1); transferJoinMarkings(pNewExpr1, pExpr); idxNew1 = whereClauseInsert(pWC, pNewExpr1, wtFlags); testcase( idxNew1==0 ); exprAnalyze(pSrc, pWC, idxNew1); pNewExpr2 = sqlite3ExprDup(db, pLeft, 0); pNewExpr2 = sqlite3PExpr(pParse, TK_LT, sqlite3ExprAddCollateString(pParse,pNewExpr2,zCollSeqName), pStr2); transferJoinMarkings(pNewExpr2, pExpr); idxNew2 = whereClauseInsert(pWC, pNewExpr2, wtFlags); testcase( idxNew2==0 ); exprAnalyze(pSrc, pWC, idxNew2); pTerm = &pWC->a[idxTerm]; if( isComplete ){ markTermAsChild(pWC, idxNew1, idxTerm); markTermAsChild(pWC, idxNew2, idxTerm); } } #endif /* SQLITE_OMIT_LIKE_OPTIMIZATION */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* Add a WO_AUX auxiliary term to the constraint set if the ** current expression is of the form "column OP expr" where OP ** is an operator that gets passed into virtual tables but which is ** not normally optimized for ordinary tables. In other words, OP ** is one of MATCH, LIKE, GLOB, REGEXP, !=, IS, IS NOT, or NOT NULL. ** This information is used by the xBestIndex methods of ** virtual tables. The native query optimizer does not attempt ** to do anything with MATCH functions. */ if( pWC->op==TK_AND ){ Expr *pRight = 0, *pLeft = 0; int res = isAuxiliaryVtabOperator(db, pExpr, &eOp2, &pLeft, &pRight); while( res-- > 0 ){ int idxNew; WhereTerm *pNewTerm; Bitmask prereqColumn, prereqExpr; prereqExpr = sqlite3WhereExprUsage(pMaskSet, pRight); prereqColumn = sqlite3WhereExprUsage(pMaskSet, pLeft); if( (prereqExpr & prereqColumn)==0 ){ Expr *pNewExpr; pNewExpr = sqlite3PExpr(pParse, TK_MATCH, 0, sqlite3ExprDup(db, pRight, 0)); if( ExprHasProperty(pExpr, EP_FromJoin) && pNewExpr ){ ExprSetProperty(pNewExpr, EP_FromJoin); pNewExpr->iRightJoinTable = pExpr->iRightJoinTable; } idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC); testcase( idxNew==0 ); pNewTerm = &pWC->a[idxNew]; pNewTerm->prereqRight = prereqExpr; pNewTerm->leftCursor = pLeft->iTable; pNewTerm->u.leftColumn = pLeft->iColumn; pNewTerm->eOperator = WO_AUX; pNewTerm->eMatchOp = eOp2; markTermAsChild(pWC, idxNew, idxTerm); pTerm = &pWC->a[idxTerm]; pTerm->wtFlags |= TERM_COPIED; pNewTerm->prereqAll = pTerm->prereqAll; } SWAP(Expr*, pLeft, pRight); } } #endif /* SQLITE_OMIT_VIRTUALTABLE */ /* If there is a vector == or IS term - e.g. "(a, b) == (?, ?)" - create ** new terms for each component comparison - "a = ?" and "b = ?". The ** new terms completely replace the original vector comparison, which is ** no longer used. ** ** This is only required if at least one side of the comparison operation ** is not a sub-select. */ if( pWC->op==TK_AND && (pExpr->op==TK_EQ || pExpr->op==TK_IS) && (nLeft = sqlite3ExprVectorSize(pExpr->pLeft))>1 && sqlite3ExprVectorSize(pExpr->pRight)==nLeft && ( (pExpr->pLeft->flags & EP_xIsSelect)==0 || (pExpr->pRight->flags & EP_xIsSelect)==0) ){ int i; for(i=0; ipLeft, i); Expr *pRight = sqlite3ExprForVectorField(pParse, pExpr->pRight, i); pNew = sqlite3PExpr(pParse, pExpr->op, pLeft, pRight); transferJoinMarkings(pNew, pExpr); idxNew = whereClauseInsert(pWC, pNew, TERM_DYNAMIC); exprAnalyze(pSrc, pWC, idxNew); } pTerm = &pWC->a[idxTerm]; pTerm->wtFlags |= TERM_CODED|TERM_VIRTUAL; /* Disable the original */ pTerm->eOperator = 0; } /* If there is a vector IN term - e.g. "(a, b) IN (SELECT ...)" - create ** a virtual term for each vector component. The expression object ** used by each such virtual term is pExpr (the full vector IN(...) ** expression). The WhereTerm.iField variable identifies the index within ** the vector on the LHS that the virtual term represents. ** ** This only works if the RHS is a simple SELECT (not a compound) that does ** not use window functions. */ if( pWC->op==TK_AND && pExpr->op==TK_IN && pTerm->iField==0 && pExpr->pLeft->op==TK_VECTOR && pExpr->x.pSelect->pPrior==0 #ifndef SQLITE_OMIT_WINDOWFUNC && pExpr->x.pSelect->pWin==0 #endif ){ int i; for(i=0; ipLeft); i++){ int idxNew; idxNew = whereClauseInsert(pWC, pExpr, TERM_VIRTUAL); pWC->a[idxNew].iField = i+1; exprAnalyze(pSrc, pWC, idxNew); markTermAsChild(pWC, idxNew, idxTerm); } } #ifdef SQLITE_ENABLE_STAT4 /* When sqlite_stat4 histogram data is available an operator of the ** form "x IS NOT NULL" can sometimes be evaluated more efficiently ** as "x>NULL" if x is not an INTEGER PRIMARY KEY. So construct a ** virtual term of that form. ** ** Note that the virtual term must be tagged with TERM_VNULL. */ if( pExpr->op==TK_NOTNULL && pExpr->pLeft->op==TK_COLUMN && pExpr->pLeft->iColumn>=0 && !ExprHasProperty(pExpr, EP_FromJoin) && OptimizationEnabled(db, SQLITE_Stat4) ){ Expr *pNewExpr; Expr *pLeft = pExpr->pLeft; int idxNew; WhereTerm *pNewTerm; pNewExpr = sqlite3PExpr(pParse, TK_GT, sqlite3ExprDup(db, pLeft, 0), sqlite3ExprAlloc(db, TK_NULL, 0, 0)); idxNew = whereClauseInsert(pWC, pNewExpr, TERM_VIRTUAL|TERM_DYNAMIC|TERM_VNULL); if( idxNew ){ pNewTerm = &pWC->a[idxNew]; pNewTerm->prereqRight = 0; pNewTerm->leftCursor = pLeft->iTable; pNewTerm->u.leftColumn = pLeft->iColumn; pNewTerm->eOperator = WO_GT; markTermAsChild(pWC, idxNew, idxTerm); pTerm = &pWC->a[idxTerm]; pTerm->wtFlags |= TERM_COPIED; pNewTerm->prereqAll = pTerm->prereqAll; } } #endif /* SQLITE_ENABLE_STAT4 */ /* Prevent ON clause terms of a LEFT JOIN from being used to drive ** an index for tables to the left of the join. */ testcase( pTerm!=&pWC->a[idxTerm] ); pTerm = &pWC->a[idxTerm]; pTerm->prereqRight |= extraRight; } /*************************************************************************** ** Routines with file scope above. Interface to the rest of the where.c ** subsystem follows. ***************************************************************************/ /* ** This routine identifies subexpressions in the WHERE clause where ** each subexpression is separated by the AND operator or some other ** operator specified in the op parameter. The WhereClause structure ** is filled with pointers to subexpressions. For example: ** ** WHERE a=='hello' AND coalesce(b,11)<10 AND (c+12!=d OR c==22) ** \________/ \_______________/ \________________/ ** slot[0] slot[1] slot[2] ** ** The original WHERE clause in pExpr is unaltered. All this routine ** does is make slot[] entries point to substructure within pExpr. ** ** In the previous sentence and in the diagram, "slot[]" refers to ** the WhereClause.a[] array. The slot[] array grows as needed to contain ** all terms of the WHERE clause. */ SQLITE_PRIVATE void sqlite3WhereSplit(WhereClause *pWC, Expr *pExpr, u8 op){ Expr *pE2 = sqlite3ExprSkipCollateAndLikely(pExpr); pWC->op = op; if( pE2==0 ) return; if( pE2->op!=op ){ whereClauseInsert(pWC, pExpr, 0); }else{ sqlite3WhereSplit(pWC, pE2->pLeft, op); sqlite3WhereSplit(pWC, pE2->pRight, op); } } /* ** Initialize a preallocated WhereClause structure. */ SQLITE_PRIVATE void sqlite3WhereClauseInit( WhereClause *pWC, /* The WhereClause to be initialized */ WhereInfo *pWInfo /* The WHERE processing context */ ){ pWC->pWInfo = pWInfo; pWC->hasOr = 0; pWC->pOuter = 0; pWC->nTerm = 0; pWC->nSlot = ArraySize(pWC->aStatic); pWC->a = pWC->aStatic; } /* ** Deallocate a WhereClause structure. The WhereClause structure ** itself is not freed. This routine is the inverse of ** sqlite3WhereClauseInit(). */ SQLITE_PRIVATE void sqlite3WhereClauseClear(WhereClause *pWC){ int i; WhereTerm *a; sqlite3 *db = pWC->pWInfo->pParse->db; for(i=pWC->nTerm-1, a=pWC->a; i>=0; i--, a++){ if( a->wtFlags & TERM_DYNAMIC ){ sqlite3ExprDelete(db, a->pExpr); } if( a->wtFlags & TERM_ORINFO ){ whereOrInfoDelete(db, a->u.pOrInfo); }else if( a->wtFlags & TERM_ANDINFO ){ whereAndInfoDelete(db, a->u.pAndInfo); } } if( pWC->a!=pWC->aStatic ){ sqlite3DbFree(db, pWC->a); } } /* ** These routines walk (recursively) an expression tree and generate ** a bitmask indicating which tables are used in that expression ** tree. */ SQLITE_PRIVATE Bitmask sqlite3WhereExprUsageNN(WhereMaskSet *pMaskSet, Expr *p){ Bitmask mask; if( p->op==TK_COLUMN && !ExprHasProperty(p, EP_FixedCol) ){ return sqlite3WhereGetMask(pMaskSet, p->iTable); }else if( ExprHasProperty(p, EP_TokenOnly|EP_Leaf) ){ assert( p->op!=TK_IF_NULL_ROW ); return 0; } mask = (p->op==TK_IF_NULL_ROW) ? sqlite3WhereGetMask(pMaskSet, p->iTable) : 0; if( p->pLeft ) mask |= sqlite3WhereExprUsageNN(pMaskSet, p->pLeft); if( p->pRight ){ mask |= sqlite3WhereExprUsageNN(pMaskSet, p->pRight); assert( p->x.pList==0 ); }else if( ExprHasProperty(p, EP_xIsSelect) ){ if( ExprHasProperty(p, EP_VarSelect) ) pMaskSet->bVarSelect = 1; mask |= exprSelectUsage(pMaskSet, p->x.pSelect); }else if( p->x.pList ){ mask |= sqlite3WhereExprListUsage(pMaskSet, p->x.pList); } #ifndef SQLITE_OMIT_WINDOWFUNC if( (p->op==TK_FUNCTION || p->op==TK_AGG_FUNCTION) && p->y.pWin ){ mask |= sqlite3WhereExprListUsage(pMaskSet, p->y.pWin->pPartition); mask |= sqlite3WhereExprListUsage(pMaskSet, p->y.pWin->pOrderBy); mask |= sqlite3WhereExprUsage(pMaskSet, p->y.pWin->pFilter); } #endif return mask; } SQLITE_PRIVATE Bitmask sqlite3WhereExprUsage(WhereMaskSet *pMaskSet, Expr *p){ return p ? sqlite3WhereExprUsageNN(pMaskSet,p) : 0; } SQLITE_PRIVATE Bitmask sqlite3WhereExprListUsage(WhereMaskSet *pMaskSet, ExprList *pList){ int i; Bitmask mask = 0; if( pList ){ for(i=0; inExpr; i++){ mask |= sqlite3WhereExprUsage(pMaskSet, pList->a[i].pExpr); } } return mask; } /* ** Call exprAnalyze on all terms in a WHERE clause. ** ** Note that exprAnalyze() might add new virtual terms onto the ** end of the WHERE clause. We do not want to analyze these new ** virtual terms, so start analyzing at the end and work forward ** so that the added virtual terms are never processed. */ SQLITE_PRIVATE void sqlite3WhereExprAnalyze( SrcList *pTabList, /* the FROM clause */ WhereClause *pWC /* the WHERE clause to be analyzed */ ){ int i; for(i=pWC->nTerm-1; i>=0; i--){ exprAnalyze(pTabList, pWC, i); } } /* ** For table-valued-functions, transform the function arguments into ** new WHERE clause terms. ** ** Each function argument translates into an equality constraint against ** a HIDDEN column in the table. */ SQLITE_PRIVATE void sqlite3WhereTabFuncArgs( Parse *pParse, /* Parsing context */ struct SrcList_item *pItem, /* The FROM clause term to process */ WhereClause *pWC /* Xfer function arguments to here */ ){ Table *pTab; int j, k; ExprList *pArgs; Expr *pColRef; Expr *pTerm; if( pItem->fg.isTabFunc==0 ) return; pTab = pItem->pTab; assert( pTab!=0 ); pArgs = pItem->u1.pFuncArg; if( pArgs==0 ) return; for(j=k=0; jnExpr; j++){ Expr *pRhs; while( knCol && (pTab->aCol[k].colFlags & COLFLAG_HIDDEN)==0 ){k++;} if( k>=pTab->nCol ){ sqlite3ErrorMsg(pParse, "too many arguments on %s() - max %d", pTab->zName, j); return; } pColRef = sqlite3ExprAlloc(pParse->db, TK_COLUMN, 0, 0); if( pColRef==0 ) return; pColRef->iTable = pItem->iCursor; pColRef->iColumn = k++; pColRef->y.pTab = pTab; pRhs = sqlite3PExpr(pParse, TK_UPLUS, sqlite3ExprDup(pParse->db, pArgs->a[j].pExpr, 0), 0); pTerm = sqlite3PExpr(pParse, TK_EQ, pColRef, pRhs); if( pItem->fg.jointype & JT_LEFT ){ sqlite3SetJoinExpr(pTerm, pItem->iCursor); } whereClauseInsert(pWC, pTerm, TERM_DYNAMIC); } } /************** End of whereexpr.c *******************************************/ /************** Begin file where.c *******************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This module contains C code that generates VDBE code used to process ** the WHERE clause of SQL statements. This module is responsible for ** generating the code that loops through a table looking for applicable ** rows. Indices are selected and used to speed the search when doing ** so is applicable. Because this module is responsible for selecting ** indices, you might also think of this module as the "query optimizer". */ /* #include "sqliteInt.h" */ /* #include "whereInt.h" */ /* ** Extra information appended to the end of sqlite3_index_info but not ** visible to the xBestIndex function, at least not directly. The ** sqlite3_vtab_collation() interface knows how to reach it, however. ** ** This object is not an API and can be changed from one release to the ** next. As long as allocateIndexInfo() and sqlite3_vtab_collation() ** agree on the structure, all will be well. */ typedef struct HiddenIndexInfo HiddenIndexInfo; struct HiddenIndexInfo { WhereClause *pWC; /* The Where clause being analyzed */ Parse *pParse; /* The parsing context */ }; /* Forward declaration of methods */ static int whereLoopResize(sqlite3*, WhereLoop*, int); /* Test variable that can be set to enable WHERE tracing */ #if defined(SQLITE_TEST) || defined(SQLITE_DEBUG) /***/ int sqlite3WhereTrace = 0; #endif /* ** Return the estimated number of output rows from a WHERE clause */ SQLITE_PRIVATE LogEst sqlite3WhereOutputRowCount(WhereInfo *pWInfo){ return pWInfo->nRowOut; } /* ** Return one of the WHERE_DISTINCT_xxxxx values to indicate how this ** WHERE clause returns outputs for DISTINCT processing. */ SQLITE_PRIVATE int sqlite3WhereIsDistinct(WhereInfo *pWInfo){ return pWInfo->eDistinct; } /* ** Return the number of ORDER BY terms that are satisfied by the ** WHERE clause. A return of 0 means that the output must be ** completely sorted. A return equal to the number of ORDER BY ** terms means that no sorting is needed at all. A return that ** is positive but less than the number of ORDER BY terms means that ** block sorting is required. */ SQLITE_PRIVATE int sqlite3WhereIsOrdered(WhereInfo *pWInfo){ return pWInfo->nOBSat; } /* ** In the ORDER BY LIMIT optimization, if the inner-most loop is known ** to emit rows in increasing order, and if the last row emitted by the ** inner-most loop did not fit within the sorter, then we can skip all ** subsequent rows for the current iteration of the inner loop (because they ** will not fit in the sorter either) and continue with the second inner ** loop - the loop immediately outside the inner-most. ** ** When a row does not fit in the sorter (because the sorter already ** holds LIMIT+OFFSET rows that are smaller), then a jump is made to the ** label returned by this function. ** ** If the ORDER BY LIMIT optimization applies, the jump destination should ** be the continuation for the second-inner-most loop. If the ORDER BY ** LIMIT optimization does not apply, then the jump destination should ** be the continuation for the inner-most loop. ** ** It is always safe for this routine to return the continuation of the ** inner-most loop, in the sense that a correct answer will result. ** Returning the continuation the second inner loop is an optimization ** that might make the code run a little faster, but should not change ** the final answer. */ SQLITE_PRIVATE int sqlite3WhereOrderByLimitOptLabel(WhereInfo *pWInfo){ WhereLevel *pInner; if( !pWInfo->bOrderedInnerLoop ){ /* The ORDER BY LIMIT optimization does not apply. Jump to the ** continuation of the inner-most loop. */ return pWInfo->iContinue; } pInner = &pWInfo->a[pWInfo->nLevel-1]; assert( pInner->addrNxt!=0 ); return pInner->addrNxt; } /* ** Return the VDBE address or label to jump to in order to continue ** immediately with the next row of a WHERE clause. */ SQLITE_PRIVATE int sqlite3WhereContinueLabel(WhereInfo *pWInfo){ assert( pWInfo->iContinue!=0 ); return pWInfo->iContinue; } /* ** Return the VDBE address or label to jump to in order to break ** out of a WHERE loop. */ SQLITE_PRIVATE int sqlite3WhereBreakLabel(WhereInfo *pWInfo){ return pWInfo->iBreak; } /* ** Return ONEPASS_OFF (0) if an UPDATE or DELETE statement is unable to ** operate directly on the rowids returned by a WHERE clause. Return ** ONEPASS_SINGLE (1) if the statement can operation directly because only ** a single row is to be changed. Return ONEPASS_MULTI (2) if the one-pass ** optimization can be used on multiple ** ** If the ONEPASS optimization is used (if this routine returns true) ** then also write the indices of open cursors used by ONEPASS ** into aiCur[0] and aiCur[1]. iaCur[0] gets the cursor of the data ** table and iaCur[1] gets the cursor used by an auxiliary index. ** Either value may be -1, indicating that cursor is not used. ** Any cursors returned will have been opened for writing. ** ** aiCur[0] and aiCur[1] both get -1 if the where-clause logic is ** unable to use the ONEPASS optimization. */ SQLITE_PRIVATE int sqlite3WhereOkOnePass(WhereInfo *pWInfo, int *aiCur){ memcpy(aiCur, pWInfo->aiCurOnePass, sizeof(int)*2); #ifdef WHERETRACE_ENABLED if( sqlite3WhereTrace && pWInfo->eOnePass!=ONEPASS_OFF ){ sqlite3DebugPrintf("%s cursors: %d %d\n", pWInfo->eOnePass==ONEPASS_SINGLE ? "ONEPASS_SINGLE" : "ONEPASS_MULTI", aiCur[0], aiCur[1]); } #endif return pWInfo->eOnePass; } /* ** Return TRUE if the WHERE loop uses the OP_DeferredSeek opcode to move ** the data cursor to the row selected by the index cursor. */ SQLITE_PRIVATE int sqlite3WhereUsesDeferredSeek(WhereInfo *pWInfo){ return pWInfo->bDeferredSeek; } /* ** Move the content of pSrc into pDest */ static void whereOrMove(WhereOrSet *pDest, WhereOrSet *pSrc){ pDest->n = pSrc->n; memcpy(pDest->a, pSrc->a, pDest->n*sizeof(pDest->a[0])); } /* ** Try to insert a new prerequisite/cost entry into the WhereOrSet pSet. ** ** The new entry might overwrite an existing entry, or it might be ** appended, or it might be discarded. Do whatever is the right thing ** so that pSet keeps the N_OR_COST best entries seen so far. */ static int whereOrInsert( WhereOrSet *pSet, /* The WhereOrSet to be updated */ Bitmask prereq, /* Prerequisites of the new entry */ LogEst rRun, /* Run-cost of the new entry */ LogEst nOut /* Number of outputs for the new entry */ ){ u16 i; WhereOrCost *p; for(i=pSet->n, p=pSet->a; i>0; i--, p++){ if( rRun<=p->rRun && (prereq & p->prereq)==prereq ){ goto whereOrInsert_done; } if( p->rRun<=rRun && (p->prereq & prereq)==p->prereq ){ return 0; } } if( pSet->na[pSet->n++]; p->nOut = nOut; }else{ p = pSet->a; for(i=1; in; i++){ if( p->rRun>pSet->a[i].rRun ) p = pSet->a + i; } if( p->rRun<=rRun ) return 0; } whereOrInsert_done: p->prereq = prereq; p->rRun = rRun; if( p->nOut>nOut ) p->nOut = nOut; return 1; } /* ** Return the bitmask for the given cursor number. Return 0 if ** iCursor is not in the set. */ SQLITE_PRIVATE Bitmask sqlite3WhereGetMask(WhereMaskSet *pMaskSet, int iCursor){ int i; assert( pMaskSet->n<=(int)sizeof(Bitmask)*8 ); for(i=0; in; i++){ if( pMaskSet->ix[i]==iCursor ){ return MASKBIT(i); } } return 0; } /* ** Create a new mask for cursor iCursor. ** ** There is one cursor per table in the FROM clause. The number of ** tables in the FROM clause is limited by a test early in the ** sqlite3WhereBegin() routine. So we know that the pMaskSet->ix[] ** array will never overflow. */ static void createMask(WhereMaskSet *pMaskSet, int iCursor){ assert( pMaskSet->n < ArraySize(pMaskSet->ix) ); pMaskSet->ix[pMaskSet->n++] = iCursor; } /* ** Advance to the next WhereTerm that matches according to the criteria ** established when the pScan object was initialized by whereScanInit(). ** Return NULL if there are no more matching WhereTerms. */ static WhereTerm *whereScanNext(WhereScan *pScan){ int iCur; /* The cursor on the LHS of the term */ i16 iColumn; /* The column on the LHS of the term. -1 for IPK */ Expr *pX; /* An expression being tested */ WhereClause *pWC; /* Shorthand for pScan->pWC */ WhereTerm *pTerm; /* The term being tested */ int k = pScan->k; /* Where to start scanning */ assert( pScan->iEquiv<=pScan->nEquiv ); pWC = pScan->pWC; while(1){ iColumn = pScan->aiColumn[pScan->iEquiv-1]; iCur = pScan->aiCur[pScan->iEquiv-1]; assert( pWC!=0 ); do{ for(pTerm=pWC->a+k; knTerm; k++, pTerm++){ if( pTerm->leftCursor==iCur && pTerm->u.leftColumn==iColumn && (iColumn!=XN_EXPR || sqlite3ExprCompareSkip(pTerm->pExpr->pLeft, pScan->pIdxExpr,iCur)==0) && (pScan->iEquiv<=1 || !ExprHasProperty(pTerm->pExpr, EP_FromJoin)) ){ if( (pTerm->eOperator & WO_EQUIV)!=0 && pScan->nEquivaiCur) && (pX = sqlite3ExprSkipCollateAndLikely(pTerm->pExpr->pRight))->op ==TK_COLUMN ){ int j; for(j=0; jnEquiv; j++){ if( pScan->aiCur[j]==pX->iTable && pScan->aiColumn[j]==pX->iColumn ){ break; } } if( j==pScan->nEquiv ){ pScan->aiCur[j] = pX->iTable; pScan->aiColumn[j] = pX->iColumn; pScan->nEquiv++; } } if( (pTerm->eOperator & pScan->opMask)!=0 ){ /* Verify the affinity and collating sequence match */ if( pScan->zCollName && (pTerm->eOperator & WO_ISNULL)==0 ){ CollSeq *pColl; Parse *pParse = pWC->pWInfo->pParse; pX = pTerm->pExpr; if( !sqlite3IndexAffinityOk(pX, pScan->idxaff) ){ continue; } assert(pX->pLeft); pColl = sqlite3ExprCompareCollSeq(pParse, pX); if( pColl==0 ) pColl = pParse->db->pDfltColl; if( sqlite3StrICmp(pColl->zName, pScan->zCollName) ){ continue; } } if( (pTerm->eOperator & (WO_EQ|WO_IS))!=0 && (pX = pTerm->pExpr->pRight)->op==TK_COLUMN && pX->iTable==pScan->aiCur[0] && pX->iColumn==pScan->aiColumn[0] ){ testcase( pTerm->eOperator & WO_IS ); continue; } pScan->pWC = pWC; pScan->k = k+1; return pTerm; } } } pWC = pWC->pOuter; k = 0; }while( pWC!=0 ); if( pScan->iEquiv>=pScan->nEquiv ) break; pWC = pScan->pOrigWC; k = 0; pScan->iEquiv++; } return 0; } /* ** This is whereScanInit() for the case of an index on an expression. ** It is factored out into a separate tail-recursion subroutine so that ** the normal whereScanInit() routine, which is a high-runner, does not ** need to push registers onto the stack as part of its prologue. */ static SQLITE_NOINLINE WhereTerm *whereScanInitIndexExpr(WhereScan *pScan){ pScan->idxaff = sqlite3ExprAffinity(pScan->pIdxExpr); return whereScanNext(pScan); } /* ** Initialize a WHERE clause scanner object. Return a pointer to the ** first match. Return NULL if there are no matches. ** ** The scanner will be searching the WHERE clause pWC. It will look ** for terms of the form "X " where X is column iColumn of table ** iCur. Or if pIdx!=0 then X is column iColumn of index pIdx. pIdx ** must be one of the indexes of table iCur. ** ** The must be one of the operators described by opMask. ** ** If the search is for X and the WHERE clause contains terms of the ** form X=Y then this routine might also return terms of the form ** "Y ". The number of levels of transitivity is limited, ** but is enough to handle most commonly occurring SQL statements. ** ** If X is not the INTEGER PRIMARY KEY then X must be compatible with ** index pIdx. */ static WhereTerm *whereScanInit( WhereScan *pScan, /* The WhereScan object being initialized */ WhereClause *pWC, /* The WHERE clause to be scanned */ int iCur, /* Cursor to scan for */ int iColumn, /* Column to scan for */ u32 opMask, /* Operator(s) to scan for */ Index *pIdx /* Must be compatible with this index */ ){ pScan->pOrigWC = pWC; pScan->pWC = pWC; pScan->pIdxExpr = 0; pScan->idxaff = 0; pScan->zCollName = 0; pScan->opMask = opMask; pScan->k = 0; pScan->aiCur[0] = iCur; pScan->nEquiv = 1; pScan->iEquiv = 1; if( pIdx ){ int j = iColumn; iColumn = pIdx->aiColumn[j]; if( iColumn==XN_EXPR ){ pScan->pIdxExpr = pIdx->aColExpr->a[j].pExpr; pScan->zCollName = pIdx->azColl[j]; pScan->aiColumn[0] = XN_EXPR; return whereScanInitIndexExpr(pScan); }else if( iColumn==pIdx->pTable->iPKey ){ iColumn = XN_ROWID; }else if( iColumn>=0 ){ pScan->idxaff = pIdx->pTable->aCol[iColumn].affinity; pScan->zCollName = pIdx->azColl[j]; } }else if( iColumn==XN_EXPR ){ return 0; } pScan->aiColumn[0] = iColumn; return whereScanNext(pScan); } /* ** Search for a term in the WHERE clause that is of the form "X " ** where X is a reference to the iColumn of table iCur or of index pIdx ** if pIdx!=0 and is one of the WO_xx operator codes specified by ** the op parameter. Return a pointer to the term. Return 0 if not found. ** ** If pIdx!=0 then it must be one of the indexes of table iCur. ** Search for terms matching the iColumn-th column of pIdx ** rather than the iColumn-th column of table iCur. ** ** The term returned might by Y= if there is another constraint in ** the WHERE clause that specifies that X=Y. Any such constraints will be ** identified by the WO_EQUIV bit in the pTerm->eOperator field. The ** aiCur[]/iaColumn[] arrays hold X and all its equivalents. There are 11 ** slots in aiCur[]/aiColumn[] so that means we can look for X plus up to 10 ** other equivalent values. Hence a search for X will return if X=A1 ** and A1=A2 and A2=A3 and ... and A9=A10 and A10=. ** ** If there are multiple terms in the WHERE clause of the form "X " ** then try for the one with no dependencies on - in other words where ** is a constant expression of some kind. Only return entries of ** the form "X Y" where Y is a column in another table if no terms of ** the form "X " exist. If no terms with a constant RHS ** exist, try to return a term that does not use WO_EQUIV. */ SQLITE_PRIVATE WhereTerm *sqlite3WhereFindTerm( WhereClause *pWC, /* The WHERE clause to be searched */ int iCur, /* Cursor number of LHS */ int iColumn, /* Column number of LHS */ Bitmask notReady, /* RHS must not overlap with this mask */ u32 op, /* Mask of WO_xx values describing operator */ Index *pIdx /* Must be compatible with this index, if not NULL */ ){ WhereTerm *pResult = 0; WhereTerm *p; WhereScan scan; p = whereScanInit(&scan, pWC, iCur, iColumn, op, pIdx); op &= WO_EQ|WO_IS; while( p ){ if( (p->prereqRight & notReady)==0 ){ if( p->prereqRight==0 && (p->eOperator&op)!=0 ){ testcase( p->eOperator & WO_IS ); return p; } if( pResult==0 ) pResult = p; } p = whereScanNext(&scan); } return pResult; } /* ** This function searches pList for an entry that matches the iCol-th column ** of index pIdx. ** ** If such an expression is found, its index in pList->a[] is returned. If ** no expression is found, -1 is returned. */ static int findIndexCol( Parse *pParse, /* Parse context */ ExprList *pList, /* Expression list to search */ int iBase, /* Cursor for table associated with pIdx */ Index *pIdx, /* Index to match column of */ int iCol /* Column of index to match */ ){ int i; const char *zColl = pIdx->azColl[iCol]; for(i=0; inExpr; i++){ Expr *p = sqlite3ExprSkipCollateAndLikely(pList->a[i].pExpr); if( p->op==TK_COLUMN && p->iColumn==pIdx->aiColumn[iCol] && p->iTable==iBase ){ CollSeq *pColl = sqlite3ExprNNCollSeq(pParse, pList->a[i].pExpr); if( 0==sqlite3StrICmp(pColl->zName, zColl) ){ return i; } } } return -1; } /* ** Return TRUE if the iCol-th column of index pIdx is NOT NULL */ static int indexColumnNotNull(Index *pIdx, int iCol){ int j; assert( pIdx!=0 ); assert( iCol>=0 && iColnColumn ); j = pIdx->aiColumn[iCol]; if( j>=0 ){ return pIdx->pTable->aCol[j].notNull; }else if( j==(-1) ){ return 1; }else{ assert( j==(-2) ); return 0; /* Assume an indexed expression can always yield a NULL */ } } /* ** Return true if the DISTINCT expression-list passed as the third argument ** is redundant. ** ** A DISTINCT list is redundant if any subset of the columns in the ** DISTINCT list are collectively unique and individually non-null. */ static int isDistinctRedundant( Parse *pParse, /* Parsing context */ SrcList *pTabList, /* The FROM clause */ WhereClause *pWC, /* The WHERE clause */ ExprList *pDistinct /* The result set that needs to be DISTINCT */ ){ Table *pTab; Index *pIdx; int i; int iBase; /* If there is more than one table or sub-select in the FROM clause of ** this query, then it will not be possible to show that the DISTINCT ** clause is redundant. */ if( pTabList->nSrc!=1 ) return 0; iBase = pTabList->a[0].iCursor; pTab = pTabList->a[0].pTab; /* If any of the expressions is an IPK column on table iBase, then return ** true. Note: The (p->iTable==iBase) part of this test may be false if the ** current SELECT is a correlated sub-query. */ for(i=0; inExpr; i++){ Expr *p = sqlite3ExprSkipCollateAndLikely(pDistinct->a[i].pExpr); if( p->op==TK_COLUMN && p->iTable==iBase && p->iColumn<0 ) return 1; } /* Loop through all indices on the table, checking each to see if it makes ** the DISTINCT qualifier redundant. It does so if: ** ** 1. The index is itself UNIQUE, and ** ** 2. All of the columns in the index are either part of the pDistinct ** list, or else the WHERE clause contains a term of the form "col=X", ** where X is a constant value. The collation sequences of the ** comparison and select-list expressions must match those of the index. ** ** 3. All of those index columns for which the WHERE clause does not ** contain a "col=X" term are subject to a NOT NULL constraint. */ for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ if( !IsUniqueIndex(pIdx) ) continue; for(i=0; inKeyCol; i++){ if( 0==sqlite3WhereFindTerm(pWC, iBase, i, ~(Bitmask)0, WO_EQ, pIdx) ){ if( findIndexCol(pParse, pDistinct, iBase, pIdx, i)<0 ) break; if( indexColumnNotNull(pIdx, i)==0 ) break; } } if( i==pIdx->nKeyCol ){ /* This index implies that the DISTINCT qualifier is redundant. */ return 1; } } return 0; } /* ** Estimate the logarithm of the input value to base 2. */ static LogEst estLog(LogEst N){ return N<=10 ? 0 : sqlite3LogEst(N) - 33; } /* ** Convert OP_Column opcodes to OP_Copy in previously generated code. ** ** This routine runs over generated VDBE code and translates OP_Column ** opcodes into OP_Copy when the table is being accessed via co-routine ** instead of via table lookup. ** ** If the iAutoidxCur is not zero, then any OP_Rowid instructions on ** cursor iTabCur are transformed into OP_Sequence opcode for the ** iAutoidxCur cursor, in order to generate unique rowids for the ** automatic index being generated. */ static void translateColumnToCopy( Parse *pParse, /* Parsing context */ int iStart, /* Translate from this opcode to the end */ int iTabCur, /* OP_Column/OP_Rowid references to this table */ int iRegister, /* The first column is in this register */ int iAutoidxCur /* If non-zero, cursor of autoindex being generated */ ){ Vdbe *v = pParse->pVdbe; VdbeOp *pOp = sqlite3VdbeGetOp(v, iStart); int iEnd = sqlite3VdbeCurrentAddr(v); if( pParse->db->mallocFailed ) return; for(; iStartp1!=iTabCur ) continue; if( pOp->opcode==OP_Column ){ pOp->opcode = OP_Copy; pOp->p1 = pOp->p2 + iRegister; pOp->p2 = pOp->p3; pOp->p3 = 0; }else if( pOp->opcode==OP_Rowid ){ if( iAutoidxCur ){ pOp->opcode = OP_Sequence; pOp->p1 = iAutoidxCur; }else{ pOp->opcode = OP_Null; pOp->p1 = 0; pOp->p3 = 0; } } } } /* ** Two routines for printing the content of an sqlite3_index_info ** structure. Used for testing and debugging only. If neither ** SQLITE_TEST or SQLITE_DEBUG are defined, then these routines ** are no-ops. */ #if !defined(SQLITE_OMIT_VIRTUALTABLE) && defined(WHERETRACE_ENABLED) static void whereTraceIndexInfoInputs(sqlite3_index_info *p){ int i; if( !sqlite3WhereTrace ) return; for(i=0; inConstraint; i++){ sqlite3DebugPrintf(" constraint[%d]: col=%d termid=%d op=%d usabled=%d\n", i, p->aConstraint[i].iColumn, p->aConstraint[i].iTermOffset, p->aConstraint[i].op, p->aConstraint[i].usable); } for(i=0; inOrderBy; i++){ sqlite3DebugPrintf(" orderby[%d]: col=%d desc=%d\n", i, p->aOrderBy[i].iColumn, p->aOrderBy[i].desc); } } static void whereTraceIndexInfoOutputs(sqlite3_index_info *p){ int i; if( !sqlite3WhereTrace ) return; for(i=0; inConstraint; i++){ sqlite3DebugPrintf(" usage[%d]: argvIdx=%d omit=%d\n", i, p->aConstraintUsage[i].argvIndex, p->aConstraintUsage[i].omit); } sqlite3DebugPrintf(" idxNum=%d\n", p->idxNum); sqlite3DebugPrintf(" idxStr=%s\n", p->idxStr); sqlite3DebugPrintf(" orderByConsumed=%d\n", p->orderByConsumed); sqlite3DebugPrintf(" estimatedCost=%g\n", p->estimatedCost); sqlite3DebugPrintf(" estimatedRows=%lld\n", p->estimatedRows); } #else #define whereTraceIndexInfoInputs(A) #define whereTraceIndexInfoOutputs(A) #endif #ifndef SQLITE_OMIT_AUTOMATIC_INDEX /* ** Return TRUE if the WHERE clause term pTerm is of a form where it ** could be used with an index to access pSrc, assuming an appropriate ** index existed. */ static int termCanDriveIndex( WhereTerm *pTerm, /* WHERE clause term to check */ struct SrcList_item *pSrc, /* Table we are trying to access */ Bitmask notReady /* Tables in outer loops of the join */ ){ char aff; if( pTerm->leftCursor!=pSrc->iCursor ) return 0; if( (pTerm->eOperator & (WO_EQ|WO_IS))==0 ) return 0; if( (pSrc->fg.jointype & JT_LEFT) && !ExprHasProperty(pTerm->pExpr, EP_FromJoin) && (pTerm->eOperator & WO_IS) ){ /* Cannot use an IS term from the WHERE clause as an index driver for ** the RHS of a LEFT JOIN. Such a term can only be used if it is from ** the ON clause. */ return 0; } if( (pTerm->prereqRight & notReady)!=0 ) return 0; if( pTerm->u.leftColumn<0 ) return 0; aff = pSrc->pTab->aCol[pTerm->u.leftColumn].affinity; if( !sqlite3IndexAffinityOk(pTerm->pExpr, aff) ) return 0; testcase( pTerm->pExpr->op==TK_IS ); return 1; } #endif #ifndef SQLITE_OMIT_AUTOMATIC_INDEX /* ** Generate code to construct the Index object for an automatic index ** and to set up the WhereLevel object pLevel so that the code generator ** makes use of the automatic index. */ static void constructAutomaticIndex( Parse *pParse, /* The parsing context */ WhereClause *pWC, /* The WHERE clause */ struct SrcList_item *pSrc, /* The FROM clause term to get the next index */ Bitmask notReady, /* Mask of cursors that are not available */ WhereLevel *pLevel /* Write new index here */ ){ int nKeyCol; /* Number of columns in the constructed index */ WhereTerm *pTerm; /* A single term of the WHERE clause */ WhereTerm *pWCEnd; /* End of pWC->a[] */ Index *pIdx; /* Object describing the transient index */ Vdbe *v; /* Prepared statement under construction */ int addrInit; /* Address of the initialization bypass jump */ Table *pTable; /* The table being indexed */ int addrTop; /* Top of the index fill loop */ int regRecord; /* Register holding an index record */ int n; /* Column counter */ int i; /* Loop counter */ int mxBitCol; /* Maximum column in pSrc->colUsed */ CollSeq *pColl; /* Collating sequence to on a column */ WhereLoop *pLoop; /* The Loop object */ char *zNotUsed; /* Extra space on the end of pIdx */ Bitmask idxCols; /* Bitmap of columns used for indexing */ Bitmask extraCols; /* Bitmap of additional columns */ u8 sentWarning = 0; /* True if a warnning has been issued */ Expr *pPartial = 0; /* Partial Index Expression */ int iContinue = 0; /* Jump here to skip excluded rows */ struct SrcList_item *pTabItem; /* FROM clause term being indexed */ int addrCounter = 0; /* Address where integer counter is initialized */ int regBase; /* Array of registers where record is assembled */ /* Generate code to skip over the creation and initialization of the ** transient index on 2nd and subsequent iterations of the loop. */ v = pParse->pVdbe; assert( v!=0 ); addrInit = sqlite3VdbeAddOp0(v, OP_Once); VdbeCoverage(v); /* Count the number of columns that will be added to the index ** and used to match WHERE clause constraints */ nKeyCol = 0; pTable = pSrc->pTab; pWCEnd = &pWC->a[pWC->nTerm]; pLoop = pLevel->pWLoop; idxCols = 0; for(pTerm=pWC->a; pTermpExpr; assert( !ExprHasProperty(pExpr, EP_FromJoin) /* prereq always non-zero */ || pExpr->iRightJoinTable!=pSrc->iCursor /* for the right-hand */ || pLoop->prereq!=0 ); /* table of a LEFT JOIN */ if( pLoop->prereq==0 && (pTerm->wtFlags & TERM_VIRTUAL)==0 && !ExprHasProperty(pExpr, EP_FromJoin) && sqlite3ExprIsTableConstant(pExpr, pSrc->iCursor) ){ pPartial = sqlite3ExprAnd(pParse, pPartial, sqlite3ExprDup(pParse->db, pExpr, 0)); } if( termCanDriveIndex(pTerm, pSrc, notReady) ){ int iCol = pTerm->u.leftColumn; Bitmask cMask = iCol>=BMS ? MASKBIT(BMS-1) : MASKBIT(iCol); testcase( iCol==BMS ); testcase( iCol==BMS-1 ); if( !sentWarning ){ sqlite3_log(SQLITE_WARNING_AUTOINDEX, "automatic index on %s(%s)", pTable->zName, pTable->aCol[iCol].zName); sentWarning = 1; } if( (idxCols & cMask)==0 ){ if( whereLoopResize(pParse->db, pLoop, nKeyCol+1) ){ goto end_auto_index_create; } pLoop->aLTerm[nKeyCol++] = pTerm; idxCols |= cMask; } } } assert( nKeyCol>0 ); pLoop->u.btree.nEq = pLoop->nLTerm = nKeyCol; pLoop->wsFlags = WHERE_COLUMN_EQ | WHERE_IDX_ONLY | WHERE_INDEXED | WHERE_AUTO_INDEX; /* Count the number of additional columns needed to create a ** covering index. A "covering index" is an index that contains all ** columns that are needed by the query. With a covering index, the ** original table never needs to be accessed. Automatic indices must ** be a covering index because the index will not be updated if the ** original table changes and the index and table cannot both be used ** if they go out of sync. */ extraCols = pSrc->colUsed & (~idxCols | MASKBIT(BMS-1)); mxBitCol = MIN(BMS-1,pTable->nCol); testcase( pTable->nCol==BMS-1 ); testcase( pTable->nCol==BMS-2 ); for(i=0; icolUsed & MASKBIT(BMS-1) ){ nKeyCol += pTable->nCol - BMS + 1; } /* Construct the Index object to describe this index */ pIdx = sqlite3AllocateIndexObject(pParse->db, nKeyCol+1, 0, &zNotUsed); if( pIdx==0 ) goto end_auto_index_create; pLoop->u.btree.pIndex = pIdx; pIdx->zName = "auto-index"; pIdx->pTable = pTable; n = 0; idxCols = 0; for(pTerm=pWC->a; pTermu.leftColumn; Bitmask cMask = iCol>=BMS ? MASKBIT(BMS-1) : MASKBIT(iCol); testcase( iCol==BMS-1 ); testcase( iCol==BMS ); if( (idxCols & cMask)==0 ){ Expr *pX = pTerm->pExpr; idxCols |= cMask; pIdx->aiColumn[n] = pTerm->u.leftColumn; pColl = sqlite3ExprCompareCollSeq(pParse, pX); assert( pColl!=0 || pParse->nErr>0 ); /* TH3 collate01.800 */ pIdx->azColl[n] = pColl ? pColl->zName : sqlite3StrBINARY; n++; } } } assert( (u32)n==pLoop->u.btree.nEq ); /* Add additional columns needed to make the automatic index into ** a covering index */ for(i=0; iaiColumn[n] = i; pIdx->azColl[n] = sqlite3StrBINARY; n++; } } if( pSrc->colUsed & MASKBIT(BMS-1) ){ for(i=BMS-1; inCol; i++){ pIdx->aiColumn[n] = i; pIdx->azColl[n] = sqlite3StrBINARY; n++; } } assert( n==nKeyCol ); pIdx->aiColumn[n] = XN_ROWID; pIdx->azColl[n] = sqlite3StrBINARY; /* Create the automatic index */ assert( pLevel->iIdxCur>=0 ); pLevel->iIdxCur = pParse->nTab++; sqlite3VdbeAddOp2(v, OP_OpenAutoindex, pLevel->iIdxCur, nKeyCol+1); sqlite3VdbeSetP4KeyInfo(pParse, pIdx); VdbeComment((v, "for %s", pTable->zName)); /* Fill the automatic index with content */ pTabItem = &pWC->pWInfo->pTabList->a[pLevel->iFrom]; if( pTabItem->fg.viaCoroutine ){ int regYield = pTabItem->regReturn; addrCounter = sqlite3VdbeAddOp2(v, OP_Integer, 0, 0); sqlite3VdbeAddOp3(v, OP_InitCoroutine, regYield, 0, pTabItem->addrFillSub); addrTop = sqlite3VdbeAddOp1(v, OP_Yield, regYield); VdbeCoverage(v); VdbeComment((v, "next row of %s", pTabItem->pTab->zName)); }else{ addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, pLevel->iTabCur); VdbeCoverage(v); } if( pPartial ){ iContinue = sqlite3VdbeMakeLabel(pParse); sqlite3ExprIfFalse(pParse, pPartial, iContinue, SQLITE_JUMPIFNULL); pLoop->wsFlags |= WHERE_PARTIALIDX; } regRecord = sqlite3GetTempReg(pParse); regBase = sqlite3GenerateIndexKey( pParse, pIdx, pLevel->iTabCur, regRecord, 0, 0, 0, 0 ); sqlite3VdbeAddOp2(v, OP_IdxInsert, pLevel->iIdxCur, regRecord); sqlite3VdbeChangeP5(v, OPFLAG_USESEEKRESULT); if( pPartial ) sqlite3VdbeResolveLabel(v, iContinue); if( pTabItem->fg.viaCoroutine ){ sqlite3VdbeChangeP2(v, addrCounter, regBase+n); testcase( pParse->db->mallocFailed ); assert( pLevel->iIdxCur>0 ); translateColumnToCopy(pParse, addrTop, pLevel->iTabCur, pTabItem->regResult, pLevel->iIdxCur); sqlite3VdbeGoto(v, addrTop); pTabItem->fg.viaCoroutine = 0; }else{ sqlite3VdbeAddOp2(v, OP_Next, pLevel->iTabCur, addrTop+1); VdbeCoverage(v); sqlite3VdbeChangeP5(v, SQLITE_STMTSTATUS_AUTOINDEX); } sqlite3VdbeJumpHere(v, addrTop); sqlite3ReleaseTempReg(pParse, regRecord); /* Jump here when skipping the initialization */ sqlite3VdbeJumpHere(v, addrInit); end_auto_index_create: sqlite3ExprDelete(pParse->db, pPartial); } #endif /* SQLITE_OMIT_AUTOMATIC_INDEX */ #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Allocate and populate an sqlite3_index_info structure. It is the ** responsibility of the caller to eventually release the structure ** by passing the pointer returned by this function to sqlite3_free(). */ static sqlite3_index_info *allocateIndexInfo( Parse *pParse, /* The parsing context */ WhereClause *pWC, /* The WHERE clause being analyzed */ Bitmask mUnusable, /* Ignore terms with these prereqs */ struct SrcList_item *pSrc, /* The FROM clause term that is the vtab */ ExprList *pOrderBy, /* The ORDER BY clause */ u16 *pmNoOmit /* Mask of terms not to omit */ ){ int i, j; int nTerm; struct sqlite3_index_constraint *pIdxCons; struct sqlite3_index_orderby *pIdxOrderBy; struct sqlite3_index_constraint_usage *pUsage; struct HiddenIndexInfo *pHidden; WhereTerm *pTerm; int nOrderBy; sqlite3_index_info *pIdxInfo; u16 mNoOmit = 0; /* Count the number of possible WHERE clause constraints referring ** to this virtual table */ for(i=nTerm=0, pTerm=pWC->a; inTerm; i++, pTerm++){ if( pTerm->leftCursor != pSrc->iCursor ) continue; if( pTerm->prereqRight & mUnusable ) continue; assert( IsPowerOfTwo(pTerm->eOperator & ~WO_EQUIV) ); testcase( pTerm->eOperator & WO_IN ); testcase( pTerm->eOperator & WO_ISNULL ); testcase( pTerm->eOperator & WO_IS ); testcase( pTerm->eOperator & WO_ALL ); if( (pTerm->eOperator & ~(WO_EQUIV))==0 ) continue; if( pTerm->wtFlags & TERM_VNULL ) continue; assert( pTerm->u.leftColumn>=(-1) ); nTerm++; } /* If the ORDER BY clause contains only columns in the current ** virtual table then allocate space for the aOrderBy part of ** the sqlite3_index_info structure. */ nOrderBy = 0; if( pOrderBy ){ int n = pOrderBy->nExpr; for(i=0; ia[i].pExpr; if( pExpr->op!=TK_COLUMN || pExpr->iTable!=pSrc->iCursor ) break; if( pOrderBy->a[i].sortFlags & KEYINFO_ORDER_BIGNULL ) break; } if( i==n){ nOrderBy = n; } } /* Allocate the sqlite3_index_info structure */ pIdxInfo = sqlite3DbMallocZero(pParse->db, sizeof(*pIdxInfo) + (sizeof(*pIdxCons) + sizeof(*pUsage))*nTerm + sizeof(*pIdxOrderBy)*nOrderBy + sizeof(*pHidden) ); if( pIdxInfo==0 ){ sqlite3ErrorMsg(pParse, "out of memory"); return 0; } pHidden = (struct HiddenIndexInfo*)&pIdxInfo[1]; pIdxCons = (struct sqlite3_index_constraint*)&pHidden[1]; pIdxOrderBy = (struct sqlite3_index_orderby*)&pIdxCons[nTerm]; pUsage = (struct sqlite3_index_constraint_usage*)&pIdxOrderBy[nOrderBy]; pIdxInfo->nOrderBy = nOrderBy; pIdxInfo->aConstraint = pIdxCons; pIdxInfo->aOrderBy = pIdxOrderBy; pIdxInfo->aConstraintUsage = pUsage; pHidden->pWC = pWC; pHidden->pParse = pParse; for(i=j=0, pTerm=pWC->a; inTerm; i++, pTerm++){ u16 op; if( pTerm->leftCursor != pSrc->iCursor ) continue; if( pTerm->prereqRight & mUnusable ) continue; assert( IsPowerOfTwo(pTerm->eOperator & ~WO_EQUIV) ); testcase( pTerm->eOperator & WO_IN ); testcase( pTerm->eOperator & WO_IS ); testcase( pTerm->eOperator & WO_ISNULL ); testcase( pTerm->eOperator & WO_ALL ); if( (pTerm->eOperator & ~(WO_EQUIV))==0 ) continue; if( pTerm->wtFlags & TERM_VNULL ) continue; /* tag-20191211-002: WHERE-clause constraints are not useful to the ** right-hand table of a LEFT JOIN. See tag-20191211-001 for the ** equivalent restriction for ordinary tables. */ if( (pSrc->fg.jointype & JT_LEFT)!=0 && !ExprHasProperty(pTerm->pExpr, EP_FromJoin) ){ continue; } assert( pTerm->u.leftColumn>=(-1) ); pIdxCons[j].iColumn = pTerm->u.leftColumn; pIdxCons[j].iTermOffset = i; op = pTerm->eOperator & WO_ALL; if( op==WO_IN ) op = WO_EQ; if( op==WO_AUX ){ pIdxCons[j].op = pTerm->eMatchOp; }else if( op & (WO_ISNULL|WO_IS) ){ if( op==WO_ISNULL ){ pIdxCons[j].op = SQLITE_INDEX_CONSTRAINT_ISNULL; }else{ pIdxCons[j].op = SQLITE_INDEX_CONSTRAINT_IS; } }else{ pIdxCons[j].op = (u8)op; /* The direct assignment in the previous line is possible only because ** the WO_ and SQLITE_INDEX_CONSTRAINT_ codes are identical. The ** following asserts verify this fact. */ assert( WO_EQ==SQLITE_INDEX_CONSTRAINT_EQ ); assert( WO_LT==SQLITE_INDEX_CONSTRAINT_LT ); assert( WO_LE==SQLITE_INDEX_CONSTRAINT_LE ); assert( WO_GT==SQLITE_INDEX_CONSTRAINT_GT ); assert( WO_GE==SQLITE_INDEX_CONSTRAINT_GE ); assert( pTerm->eOperator&(WO_IN|WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE|WO_AUX) ); if( op & (WO_LT|WO_LE|WO_GT|WO_GE) && sqlite3ExprIsVector(pTerm->pExpr->pRight) ){ testcase( j!=i ); if( j<16 ) mNoOmit |= (1 << j); if( op==WO_LT ) pIdxCons[j].op = WO_LE; if( op==WO_GT ) pIdxCons[j].op = WO_GE; } } j++; } pIdxInfo->nConstraint = j; for(i=0; ia[i].pExpr; pIdxOrderBy[i].iColumn = pExpr->iColumn; pIdxOrderBy[i].desc = pOrderBy->a[i].sortFlags & KEYINFO_ORDER_DESC; } *pmNoOmit = mNoOmit; return pIdxInfo; } /* ** The table object reference passed as the second argument to this function ** must represent a virtual table. This function invokes the xBestIndex() ** method of the virtual table with the sqlite3_index_info object that ** comes in as the 3rd argument to this function. ** ** If an error occurs, pParse is populated with an error message and an ** appropriate error code is returned. A return of SQLITE_CONSTRAINT from ** xBestIndex is not considered an error. SQLITE_CONSTRAINT indicates that ** the current configuration of "unusable" flags in sqlite3_index_info can ** not result in a valid plan. ** ** Whether or not an error is returned, it is the responsibility of the ** caller to eventually free p->idxStr if p->needToFreeIdxStr indicates ** that this is required. */ static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){ sqlite3_vtab *pVtab = sqlite3GetVTable(pParse->db, pTab)->pVtab; int rc; whereTraceIndexInfoInputs(p); rc = pVtab->pModule->xBestIndex(pVtab, p); whereTraceIndexInfoOutputs(p); if( rc!=SQLITE_OK && rc!=SQLITE_CONSTRAINT ){ if( rc==SQLITE_NOMEM ){ sqlite3OomFault(pParse->db); }else if( !pVtab->zErrMsg ){ sqlite3ErrorMsg(pParse, "%s", sqlite3ErrStr(rc)); }else{ sqlite3ErrorMsg(pParse, "%s", pVtab->zErrMsg); } } sqlite3_free(pVtab->zErrMsg); pVtab->zErrMsg = 0; return rc; } #endif /* !defined(SQLITE_OMIT_VIRTUALTABLE) */ #ifdef SQLITE_ENABLE_STAT4 /* ** Estimate the location of a particular key among all keys in an ** index. Store the results in aStat as follows: ** ** aStat[0] Est. number of rows less than pRec ** aStat[1] Est. number of rows equal to pRec ** ** Return the index of the sample that is the smallest sample that ** is greater than or equal to pRec. Note that this index is not an index ** into the aSample[] array - it is an index into a virtual set of samples ** based on the contents of aSample[] and the number of fields in record ** pRec. */ static int whereKeyStats( Parse *pParse, /* Database connection */ Index *pIdx, /* Index to consider domain of */ UnpackedRecord *pRec, /* Vector of values to consider */ int roundUp, /* Round up if true. Round down if false */ tRowcnt *aStat /* OUT: stats written here */ ){ IndexSample *aSample = pIdx->aSample; int iCol; /* Index of required stats in anEq[] etc. */ int i; /* Index of first sample >= pRec */ int iSample; /* Smallest sample larger than or equal to pRec */ int iMin = 0; /* Smallest sample not yet tested */ int iTest; /* Next sample to test */ int res; /* Result of comparison operation */ int nField; /* Number of fields in pRec */ tRowcnt iLower = 0; /* anLt[] + anEq[] of largest sample pRec is > */ #ifndef SQLITE_DEBUG UNUSED_PARAMETER( pParse ); #endif assert( pRec!=0 ); assert( pIdx->nSample>0 ); assert( pRec->nField>0 && pRec->nField<=pIdx->nSampleCol ); /* Do a binary search to find the first sample greater than or equal ** to pRec. If pRec contains a single field, the set of samples to search ** is simply the aSample[] array. If the samples in aSample[] contain more ** than one fields, all fields following the first are ignored. ** ** If pRec contains N fields, where N is more than one, then as well as the ** samples in aSample[] (truncated to N fields), the search also has to ** consider prefixes of those samples. For example, if the set of samples ** in aSample is: ** ** aSample[0] = (a, 5) ** aSample[1] = (a, 10) ** aSample[2] = (b, 5) ** aSample[3] = (c, 100) ** aSample[4] = (c, 105) ** ** Then the search space should ideally be the samples above and the ** unique prefixes [a], [b] and [c]. But since that is hard to organize, ** the code actually searches this set: ** ** 0: (a) ** 1: (a, 5) ** 2: (a, 10) ** 3: (a, 10) ** 4: (b) ** 5: (b, 5) ** 6: (c) ** 7: (c, 100) ** 8: (c, 105) ** 9: (c, 105) ** ** For each sample in the aSample[] array, N samples are present in the ** effective sample array. In the above, samples 0 and 1 are based on ** sample aSample[0]. Samples 2 and 3 on aSample[1] etc. ** ** Often, sample i of each block of N effective samples has (i+1) fields. ** Except, each sample may be extended to ensure that it is greater than or ** equal to the previous sample in the array. For example, in the above, ** sample 2 is the first sample of a block of N samples, so at first it ** appears that it should be 1 field in size. However, that would make it ** smaller than sample 1, so the binary search would not work. As a result, ** it is extended to two fields. The duplicates that this creates do not ** cause any problems. */ nField = pRec->nField; iCol = 0; iSample = pIdx->nSample * nField; do{ int iSamp; /* Index in aSample[] of test sample */ int n; /* Number of fields in test sample */ iTest = (iMin+iSample)/2; iSamp = iTest / nField; if( iSamp>0 ){ /* The proposed effective sample is a prefix of sample aSample[iSamp]. ** Specifically, the shortest prefix of at least (1 + iTest%nField) ** fields that is greater than the previous effective sample. */ for(n=(iTest % nField) + 1; nnField = n; res = sqlite3VdbeRecordCompare(aSample[iSamp].n, aSample[iSamp].p, pRec); if( res<0 ){ iLower = aSample[iSamp].anLt[n-1] + aSample[iSamp].anEq[n-1]; iMin = iTest+1; }else if( res==0 && ndb->mallocFailed==0 ){ if( res==0 ){ /* If (res==0) is true, then pRec must be equal to sample i. */ assert( inSample ); assert( iCol==nField-1 ); pRec->nField = nField; assert( 0==sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec) || pParse->db->mallocFailed ); }else{ /* Unless i==pIdx->nSample, indicating that pRec is larger than ** all samples in the aSample[] array, pRec must be smaller than the ** (iCol+1) field prefix of sample i. */ assert( i<=pIdx->nSample && i>=0 ); pRec->nField = iCol+1; assert( i==pIdx->nSample || sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec)>0 || pParse->db->mallocFailed ); /* if i==0 and iCol==0, then record pRec is smaller than all samples ** in the aSample[] array. Otherwise, if (iCol>0) then pRec must ** be greater than or equal to the (iCol) field prefix of sample i. ** If (i>0), then pRec must also be greater than sample (i-1). */ if( iCol>0 ){ pRec->nField = iCol; assert( sqlite3VdbeRecordCompare(aSample[i].n, aSample[i].p, pRec)<=0 || pParse->db->mallocFailed ); } if( i>0 ){ pRec->nField = nField; assert( sqlite3VdbeRecordCompare(aSample[i-1].n, aSample[i-1].p, pRec)<0 || pParse->db->mallocFailed ); } } } #endif /* ifdef SQLITE_DEBUG */ if( res==0 ){ /* Record pRec is equal to sample i */ assert( iCol==nField-1 ); aStat[0] = aSample[i].anLt[iCol]; aStat[1] = aSample[i].anEq[iCol]; }else{ /* At this point, the (iCol+1) field prefix of aSample[i] is the first ** sample that is greater than pRec. Or, if i==pIdx->nSample then pRec ** is larger than all samples in the array. */ tRowcnt iUpper, iGap; if( i>=pIdx->nSample ){ iUpper = sqlite3LogEstToInt(pIdx->aiRowLogEst[0]); }else{ iUpper = aSample[i].anLt[iCol]; } if( iLower>=iUpper ){ iGap = 0; }else{ iGap = iUpper - iLower; } if( roundUp ){ iGap = (iGap*2)/3; }else{ iGap = iGap/3; } aStat[0] = iLower + iGap; aStat[1] = pIdx->aAvgEq[nField-1]; } /* Restore the pRec->nField value before returning. */ pRec->nField = nField; return i; } #endif /* SQLITE_ENABLE_STAT4 */ /* ** If it is not NULL, pTerm is a term that provides an upper or lower ** bound on a range scan. Without considering pTerm, it is estimated ** that the scan will visit nNew rows. This function returns the number ** estimated to be visited after taking pTerm into account. ** ** If the user explicitly specified a likelihood() value for this term, ** then the return value is the likelihood multiplied by the number of ** input rows. Otherwise, this function assumes that an "IS NOT NULL" term ** has a likelihood of 0.50, and any other term a likelihood of 0.25. */ static LogEst whereRangeAdjust(WhereTerm *pTerm, LogEst nNew){ LogEst nRet = nNew; if( pTerm ){ if( pTerm->truthProb<=0 ){ nRet += pTerm->truthProb; }else if( (pTerm->wtFlags & TERM_VNULL)==0 ){ nRet -= 20; assert( 20==sqlite3LogEst(4) ); } } return nRet; } #ifdef SQLITE_ENABLE_STAT4 /* ** Return the affinity for a single column of an index. */ SQLITE_PRIVATE char sqlite3IndexColumnAffinity(sqlite3 *db, Index *pIdx, int iCol){ assert( iCol>=0 && iColnColumn ); if( !pIdx->zColAff ){ if( sqlite3IndexAffinityStr(db, pIdx)==0 ) return SQLITE_AFF_BLOB; } assert( pIdx->zColAff[iCol]!=0 ); return pIdx->zColAff[iCol]; } #endif #ifdef SQLITE_ENABLE_STAT4 /* ** This function is called to estimate the number of rows visited by a ** range-scan on a skip-scan index. For example: ** ** CREATE INDEX i1 ON t1(a, b, c); ** SELECT * FROM t1 WHERE a=? AND c BETWEEN ? AND ?; ** ** Value pLoop->nOut is currently set to the estimated number of rows ** visited for scanning (a=? AND b=?). This function reduces that estimate ** by some factor to account for the (c BETWEEN ? AND ?) expression based ** on the stat4 data for the index. this scan will be peformed multiple ** times (once for each (a,b) combination that matches a=?) is dealt with ** by the caller. ** ** It does this by scanning through all stat4 samples, comparing values ** extracted from pLower and pUpper with the corresponding column in each ** sample. If L and U are the number of samples found to be less than or ** equal to the values extracted from pLower and pUpper respectively, and ** N is the total number of samples, the pLoop->nOut value is adjusted ** as follows: ** ** nOut = nOut * ( min(U - L, 1) / N ) ** ** If pLower is NULL, or a value cannot be extracted from the term, L is ** set to zero. If pUpper is NULL, or a value cannot be extracted from it, ** U is set to N. ** ** Normally, this function sets *pbDone to 1 before returning. However, ** if no value can be extracted from either pLower or pUpper (and so the ** estimate of the number of rows delivered remains unchanged), *pbDone ** is left as is. ** ** If an error occurs, an SQLite error code is returned. Otherwise, ** SQLITE_OK. */ static int whereRangeSkipScanEst( Parse *pParse, /* Parsing & code generating context */ WhereTerm *pLower, /* Lower bound on the range. ex: "x>123" Might be NULL */ WhereTerm *pUpper, /* Upper bound on the range. ex: "x<455" Might be NULL */ WhereLoop *pLoop, /* Update the .nOut value of this loop */ int *pbDone /* Set to true if at least one expr. value extracted */ ){ Index *p = pLoop->u.btree.pIndex; int nEq = pLoop->u.btree.nEq; sqlite3 *db = pParse->db; int nLower = -1; int nUpper = p->nSample+1; int rc = SQLITE_OK; u8 aff = sqlite3IndexColumnAffinity(db, p, nEq); CollSeq *pColl; sqlite3_value *p1 = 0; /* Value extracted from pLower */ sqlite3_value *p2 = 0; /* Value extracted from pUpper */ sqlite3_value *pVal = 0; /* Value extracted from record */ pColl = sqlite3LocateCollSeq(pParse, p->azColl[nEq]); if( pLower ){ rc = sqlite3Stat4ValueFromExpr(pParse, pLower->pExpr->pRight, aff, &p1); nLower = 0; } if( pUpper && rc==SQLITE_OK ){ rc = sqlite3Stat4ValueFromExpr(pParse, pUpper->pExpr->pRight, aff, &p2); nUpper = p2 ? 0 : p->nSample; } if( p1 || p2 ){ int i; int nDiff; for(i=0; rc==SQLITE_OK && inSample; i++){ rc = sqlite3Stat4Column(db, p->aSample[i].p, p->aSample[i].n, nEq, &pVal); if( rc==SQLITE_OK && p1 ){ int res = sqlite3MemCompare(p1, pVal, pColl); if( res>=0 ) nLower++; } if( rc==SQLITE_OK && p2 ){ int res = sqlite3MemCompare(p2, pVal, pColl); if( res>=0 ) nUpper++; } } nDiff = (nUpper - nLower); if( nDiff<=0 ) nDiff = 1; /* If there is both an upper and lower bound specified, and the ** comparisons indicate that they are close together, use the fallback ** method (assume that the scan visits 1/64 of the rows) for estimating ** the number of rows visited. Otherwise, estimate the number of rows ** using the method described in the header comment for this function. */ if( nDiff!=1 || pUpper==0 || pLower==0 ){ int nAdjust = (sqlite3LogEst(p->nSample) - sqlite3LogEst(nDiff)); pLoop->nOut -= nAdjust; *pbDone = 1; WHERETRACE(0x10, ("range skip-scan regions: %u..%u adjust=%d est=%d\n", nLower, nUpper, nAdjust*-1, pLoop->nOut)); } }else{ assert( *pbDone==0 ); } sqlite3ValueFree(p1); sqlite3ValueFree(p2); sqlite3ValueFree(pVal); return rc; } #endif /* SQLITE_ENABLE_STAT4 */ /* ** This function is used to estimate the number of rows that will be visited ** by scanning an index for a range of values. The range may have an upper ** bound, a lower bound, or both. The WHERE clause terms that set the upper ** and lower bounds are represented by pLower and pUpper respectively. For ** example, assuming that index p is on t1(a): ** ** ... FROM t1 WHERE a > ? AND a < ? ... ** |_____| |_____| ** | | ** pLower pUpper ** ** If either of the upper or lower bound is not present, then NULL is passed in ** place of the corresponding WhereTerm. ** ** The value in (pBuilder->pNew->u.btree.nEq) is the number of the index ** column subject to the range constraint. Or, equivalently, the number of ** equality constraints optimized by the proposed index scan. For example, ** assuming index p is on t1(a, b), and the SQL query is: ** ** ... FROM t1 WHERE a = ? AND b > ? AND b < ? ... ** ** then nEq is set to 1 (as the range restricted column, b, is the second ** left-most column of the index). Or, if the query is: ** ** ... FROM t1 WHERE a > ? AND a < ? ... ** ** then nEq is set to 0. ** ** When this function is called, *pnOut is set to the sqlite3LogEst() of the ** number of rows that the index scan is expected to visit without ** considering the range constraints. If nEq is 0, then *pnOut is the number of ** rows in the index. Assuming no error occurs, *pnOut is adjusted (reduced) ** to account for the range constraints pLower and pUpper. ** ** In the absence of sqlite_stat4 ANALYZE data, or if such data cannot be ** used, a single range inequality reduces the search space by a factor of 4. ** and a pair of constraints (x>? AND x123" Might be NULL */ WhereTerm *pUpper, /* Upper bound on the range. ex: "x<455" Might be NULL */ WhereLoop *pLoop /* Modify the .nOut and maybe .rRun fields */ ){ int rc = SQLITE_OK; int nOut = pLoop->nOut; LogEst nNew; #ifdef SQLITE_ENABLE_STAT4 Index *p = pLoop->u.btree.pIndex; int nEq = pLoop->u.btree.nEq; if( p->nSample>0 && ALWAYS(nEqnSampleCol) && OptimizationEnabled(pParse->db, SQLITE_Stat4) ){ if( nEq==pBuilder->nRecValid ){ UnpackedRecord *pRec = pBuilder->pRec; tRowcnt a[2]; int nBtm = pLoop->u.btree.nBtm; int nTop = pLoop->u.btree.nTop; /* Variable iLower will be set to the estimate of the number of rows in ** the index that are less than the lower bound of the range query. The ** lower bound being the concatenation of $P and $L, where $P is the ** key-prefix formed by the nEq values matched against the nEq left-most ** columns of the index, and $L is the value in pLower. ** ** Or, if pLower is NULL or $L cannot be extracted from it (because it ** is not a simple variable or literal value), the lower bound of the ** range is $P. Due to a quirk in the way whereKeyStats() works, even ** if $L is available, whereKeyStats() is called for both ($P) and ** ($P:$L) and the larger of the two returned values is used. ** ** Similarly, iUpper is to be set to the estimate of the number of rows ** less than the upper bound of the range query. Where the upper bound ** is either ($P) or ($P:$U). Again, even if $U is available, both values ** of iUpper are requested of whereKeyStats() and the smaller used. ** ** The number of rows between the two bounds is then just iUpper-iLower. */ tRowcnt iLower; /* Rows less than the lower bound */ tRowcnt iUpper; /* Rows less than the upper bound */ int iLwrIdx = -2; /* aSample[] for the lower bound */ int iUprIdx = -1; /* aSample[] for the upper bound */ if( pRec ){ testcase( pRec->nField!=pBuilder->nRecValid ); pRec->nField = pBuilder->nRecValid; } /* Determine iLower and iUpper using ($P) only. */ if( nEq==0 ){ iLower = 0; iUpper = p->nRowEst0; }else{ /* Note: this call could be optimized away - since the same values must ** have been requested when testing key $P in whereEqualScanEst(). */ whereKeyStats(pParse, p, pRec, 0, a); iLower = a[0]; iUpper = a[0] + a[1]; } assert( pLower==0 || (pLower->eOperator & (WO_GT|WO_GE))!=0 ); assert( pUpper==0 || (pUpper->eOperator & (WO_LT|WO_LE))!=0 ); assert( p->aSortOrder!=0 ); if( p->aSortOrder[nEq] ){ /* The roles of pLower and pUpper are swapped for a DESC index */ SWAP(WhereTerm*, pLower, pUpper); SWAP(int, nBtm, nTop); } /* If possible, improve on the iLower estimate using ($P:$L). */ if( pLower ){ int n; /* Values extracted from pExpr */ Expr *pExpr = pLower->pExpr->pRight; rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, nBtm, nEq, &n); if( rc==SQLITE_OK && n ){ tRowcnt iNew; u16 mask = WO_GT|WO_LE; if( sqlite3ExprVectorSize(pExpr)>n ) mask = (WO_LE|WO_LT); iLwrIdx = whereKeyStats(pParse, p, pRec, 0, a); iNew = a[0] + ((pLower->eOperator & mask) ? a[1] : 0); if( iNew>iLower ) iLower = iNew; nOut--; pLower = 0; } } /* If possible, improve on the iUpper estimate using ($P:$U). */ if( pUpper ){ int n; /* Values extracted from pExpr */ Expr *pExpr = pUpper->pExpr->pRight; rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, nTop, nEq, &n); if( rc==SQLITE_OK && n ){ tRowcnt iNew; u16 mask = WO_GT|WO_LE; if( sqlite3ExprVectorSize(pExpr)>n ) mask = (WO_LE|WO_LT); iUprIdx = whereKeyStats(pParse, p, pRec, 1, a); iNew = a[0] + ((pUpper->eOperator & mask) ? a[1] : 0); if( iNewpRec = pRec; if( rc==SQLITE_OK ){ if( iUpper>iLower ){ nNew = sqlite3LogEst(iUpper - iLower); /* TUNING: If both iUpper and iLower are derived from the same ** sample, then assume they are 4x more selective. This brings ** the estimated selectivity more in line with what it would be ** if estimated without the use of STAT4 tables. */ if( iLwrIdx==iUprIdx ) nNew -= 20; assert( 20==sqlite3LogEst(4) ); }else{ nNew = 10; assert( 10==sqlite3LogEst(2) ); } if( nNewwtFlags & TERM_VNULL)==0 ); nNew = whereRangeAdjust(pLower, nOut); nNew = whereRangeAdjust(pUpper, nNew); /* TUNING: If there is both an upper and lower limit and neither limit ** has an application-defined likelihood(), assume the range is ** reduced by an additional 75%. This means that, by default, an open-ended ** range query (e.g. col > ?) is assumed to match 1/4 of the rows in the ** index. While a closed range (e.g. col BETWEEN ? AND ?) is estimated to ** match 1/64 of the index. */ if( pLower && pLower->truthProb>0 && pUpper && pUpper->truthProb>0 ){ nNew -= 20; } nOut -= (pLower!=0) + (pUpper!=0); if( nNew<10 ) nNew = 10; if( nNewnOut>nOut ){ WHERETRACE(0x10,("Range scan lowers nOut from %d to %d\n", pLoop->nOut, nOut)); } #endif pLoop->nOut = (LogEst)nOut; return rc; } #ifdef SQLITE_ENABLE_STAT4 /* ** Estimate the number of rows that will be returned based on ** an equality constraint x=VALUE and where that VALUE occurs in ** the histogram data. This only works when x is the left-most ** column of an index and sqlite_stat4 histogram data is available ** for that index. When pExpr==NULL that means the constraint is ** "x IS NULL" instead of "x=VALUE". ** ** Write the estimated row count into *pnRow and return SQLITE_OK. ** If unable to make an estimate, leave *pnRow unchanged and return ** non-zero. ** ** This routine can fail if it is unable to load a collating sequence ** required for string comparison, or if unable to allocate memory ** for a UTF conversion required for comparison. The error is stored ** in the pParse structure. */ static int whereEqualScanEst( Parse *pParse, /* Parsing & code generating context */ WhereLoopBuilder *pBuilder, Expr *pExpr, /* Expression for VALUE in the x=VALUE constraint */ tRowcnt *pnRow /* Write the revised row estimate here */ ){ Index *p = pBuilder->pNew->u.btree.pIndex; int nEq = pBuilder->pNew->u.btree.nEq; UnpackedRecord *pRec = pBuilder->pRec; int rc; /* Subfunction return code */ tRowcnt a[2]; /* Statistics */ int bOk; assert( nEq>=1 ); assert( nEq<=p->nColumn ); assert( p->aSample!=0 ); assert( p->nSample>0 ); assert( pBuilder->nRecValidnRecValid<(nEq-1) ){ return SQLITE_NOTFOUND; } /* This is an optimization only. The call to sqlite3Stat4ProbeSetValue() ** below would return the same value. */ if( nEq>=p->nColumn ){ *pnRow = 1; return SQLITE_OK; } rc = sqlite3Stat4ProbeSetValue(pParse, p, &pRec, pExpr, 1, nEq-1, &bOk); pBuilder->pRec = pRec; if( rc!=SQLITE_OK ) return rc; if( bOk==0 ) return SQLITE_NOTFOUND; pBuilder->nRecValid = nEq; whereKeyStats(pParse, p, pRec, 0, a); WHERETRACE(0x10,("equality scan regions %s(%d): %d\n", p->zName, nEq-1, (int)a[1])); *pnRow = a[1]; return rc; } #endif /* SQLITE_ENABLE_STAT4 */ #ifdef SQLITE_ENABLE_STAT4 /* ** Estimate the number of rows that will be returned based on ** an IN constraint where the right-hand side of the IN operator ** is a list of values. Example: ** ** WHERE x IN (1,2,3,4) ** ** Write the estimated row count into *pnRow and return SQLITE_OK. ** If unable to make an estimate, leave *pnRow unchanged and return ** non-zero. ** ** This routine can fail if it is unable to load a collating sequence ** required for string comparison, or if unable to allocate memory ** for a UTF conversion required for comparison. The error is stored ** in the pParse structure. */ static int whereInScanEst( Parse *pParse, /* Parsing & code generating context */ WhereLoopBuilder *pBuilder, ExprList *pList, /* The value list on the RHS of "x IN (v1,v2,v3,...)" */ tRowcnt *pnRow /* Write the revised row estimate here */ ){ Index *p = pBuilder->pNew->u.btree.pIndex; i64 nRow0 = sqlite3LogEstToInt(p->aiRowLogEst[0]); int nRecValid = pBuilder->nRecValid; int rc = SQLITE_OK; /* Subfunction return code */ tRowcnt nEst; /* Number of rows for a single term */ tRowcnt nRowEst = 0; /* New estimate of the number of rows */ int i; /* Loop counter */ assert( p->aSample!=0 ); for(i=0; rc==SQLITE_OK && inExpr; i++){ nEst = nRow0; rc = whereEqualScanEst(pParse, pBuilder, pList->a[i].pExpr, &nEst); nRowEst += nEst; pBuilder->nRecValid = nRecValid; } if( rc==SQLITE_OK ){ if( nRowEst > nRow0 ) nRowEst = nRow0; *pnRow = nRowEst; WHERETRACE(0x10,("IN row estimate: est=%d\n", nRowEst)); } assert( pBuilder->nRecValid==nRecValid ); return rc; } #endif /* SQLITE_ENABLE_STAT4 */ #ifdef WHERETRACE_ENABLED /* ** Print the content of a WhereTerm object */ SQLITE_PRIVATE void sqlite3WhereTermPrint(WhereTerm *pTerm, int iTerm){ if( pTerm==0 ){ sqlite3DebugPrintf("TERM-%-3d NULL\n", iTerm); }else{ char zType[8]; char zLeft[50]; memcpy(zType, "....", 5); if( pTerm->wtFlags & TERM_VIRTUAL ) zType[0] = 'V'; if( pTerm->eOperator & WO_EQUIV ) zType[1] = 'E'; if( ExprHasProperty(pTerm->pExpr, EP_FromJoin) ) zType[2] = 'L'; if( pTerm->wtFlags & TERM_CODED ) zType[3] = 'C'; if( pTerm->eOperator & WO_SINGLE ){ sqlite3_snprintf(sizeof(zLeft),zLeft,"left={%d:%d}", pTerm->leftCursor, pTerm->u.leftColumn); }else if( (pTerm->eOperator & WO_OR)!=0 && pTerm->u.pOrInfo!=0 ){ sqlite3_snprintf(sizeof(zLeft),zLeft,"indexable=0x%lld", pTerm->u.pOrInfo->indexable); }else{ sqlite3_snprintf(sizeof(zLeft),zLeft,"left=%d", pTerm->leftCursor); } sqlite3DebugPrintf( "TERM-%-3d %p %s %-12s op=%03x wtFlags=%04x", iTerm, pTerm, zType, zLeft, pTerm->eOperator, pTerm->wtFlags); /* The 0x10000 .wheretrace flag causes extra information to be ** shown about each Term */ if( sqlite3WhereTrace & 0x10000 ){ sqlite3DebugPrintf(" prob=%-3d prereq=%llx,%llx", pTerm->truthProb, (u64)pTerm->prereqAll, (u64)pTerm->prereqRight); } if( pTerm->iField ){ sqlite3DebugPrintf(" iField=%d", pTerm->iField); } if( pTerm->iParent>=0 ){ sqlite3DebugPrintf(" iParent=%d", pTerm->iParent); } sqlite3DebugPrintf("\n"); sqlite3TreeViewExpr(0, pTerm->pExpr, 0); } } #endif #ifdef WHERETRACE_ENABLED /* ** Show the complete content of a WhereClause */ SQLITE_PRIVATE void sqlite3WhereClausePrint(WhereClause *pWC){ int i; for(i=0; inTerm; i++){ sqlite3WhereTermPrint(&pWC->a[i], i); } } #endif #ifdef WHERETRACE_ENABLED /* ** Print a WhereLoop object for debugging purposes */ SQLITE_PRIVATE void sqlite3WhereLoopPrint(WhereLoop *p, WhereClause *pWC){ WhereInfo *pWInfo = pWC->pWInfo; int nb = 1+(pWInfo->pTabList->nSrc+3)/4; struct SrcList_item *pItem = pWInfo->pTabList->a + p->iTab; Table *pTab = pItem->pTab; Bitmask mAll = (((Bitmask)1)<<(nb*4)) - 1; sqlite3DebugPrintf("%c%2d.%0*llx.%0*llx", p->cId, p->iTab, nb, p->maskSelf, nb, p->prereq & mAll); sqlite3DebugPrintf(" %12s", pItem->zAlias ? pItem->zAlias : pTab->zName); if( (p->wsFlags & WHERE_VIRTUALTABLE)==0 ){ const char *zName; if( p->u.btree.pIndex && (zName = p->u.btree.pIndex->zName)!=0 ){ if( strncmp(zName, "sqlite_autoindex_", 17)==0 ){ int i = sqlite3Strlen30(zName) - 1; while( zName[i]!='_' ) i--; zName += i; } sqlite3DebugPrintf(".%-16s %2d", zName, p->u.btree.nEq); }else{ sqlite3DebugPrintf("%20s",""); } }else{ char *z; if( p->u.vtab.idxStr ){ z = sqlite3_mprintf("(%d,\"%s\",%#x)", p->u.vtab.idxNum, p->u.vtab.idxStr, p->u.vtab.omitMask); }else{ z = sqlite3_mprintf("(%d,%x)", p->u.vtab.idxNum, p->u.vtab.omitMask); } sqlite3DebugPrintf(" %-19s", z); sqlite3_free(z); } if( p->wsFlags & WHERE_SKIPSCAN ){ sqlite3DebugPrintf(" f %05x %d-%d", p->wsFlags, p->nLTerm,p->nSkip); }else{ sqlite3DebugPrintf(" f %05x N %d", p->wsFlags, p->nLTerm); } sqlite3DebugPrintf(" cost %d,%d,%d\n", p->rSetup, p->rRun, p->nOut); if( p->nLTerm && (sqlite3WhereTrace & 0x100)!=0 ){ int i; for(i=0; inLTerm; i++){ sqlite3WhereTermPrint(p->aLTerm[i], i); } } } #endif /* ** Convert bulk memory into a valid WhereLoop that can be passed ** to whereLoopClear harmlessly. */ static void whereLoopInit(WhereLoop *p){ p->aLTerm = p->aLTermSpace; p->nLTerm = 0; p->nLSlot = ArraySize(p->aLTermSpace); p->wsFlags = 0; } /* ** Clear the WhereLoop.u union. Leave WhereLoop.pLTerm intact. */ static void whereLoopClearUnion(sqlite3 *db, WhereLoop *p){ if( p->wsFlags & (WHERE_VIRTUALTABLE|WHERE_AUTO_INDEX) ){ if( (p->wsFlags & WHERE_VIRTUALTABLE)!=0 && p->u.vtab.needFree ){ sqlite3_free(p->u.vtab.idxStr); p->u.vtab.needFree = 0; p->u.vtab.idxStr = 0; }else if( (p->wsFlags & WHERE_AUTO_INDEX)!=0 && p->u.btree.pIndex!=0 ){ sqlite3DbFree(db, p->u.btree.pIndex->zColAff); sqlite3DbFreeNN(db, p->u.btree.pIndex); p->u.btree.pIndex = 0; } } } /* ** Deallocate internal memory used by a WhereLoop object */ static void whereLoopClear(sqlite3 *db, WhereLoop *p){ if( p->aLTerm!=p->aLTermSpace ) sqlite3DbFreeNN(db, p->aLTerm); whereLoopClearUnion(db, p); whereLoopInit(p); } /* ** Increase the memory allocation for pLoop->aLTerm[] to be at least n. */ static int whereLoopResize(sqlite3 *db, WhereLoop *p, int n){ WhereTerm **paNew; if( p->nLSlot>=n ) return SQLITE_OK; n = (n+7)&~7; paNew = sqlite3DbMallocRawNN(db, sizeof(p->aLTerm[0])*n); if( paNew==0 ) return SQLITE_NOMEM_BKPT; memcpy(paNew, p->aLTerm, sizeof(p->aLTerm[0])*p->nLSlot); if( p->aLTerm!=p->aLTermSpace ) sqlite3DbFreeNN(db, p->aLTerm); p->aLTerm = paNew; p->nLSlot = n; return SQLITE_OK; } /* ** Transfer content from the second pLoop into the first. */ static int whereLoopXfer(sqlite3 *db, WhereLoop *pTo, WhereLoop *pFrom){ whereLoopClearUnion(db, pTo); if( whereLoopResize(db, pTo, pFrom->nLTerm) ){ memset(&pTo->u, 0, sizeof(pTo->u)); return SQLITE_NOMEM_BKPT; } memcpy(pTo, pFrom, WHERE_LOOP_XFER_SZ); memcpy(pTo->aLTerm, pFrom->aLTerm, pTo->nLTerm*sizeof(pTo->aLTerm[0])); if( pFrom->wsFlags & WHERE_VIRTUALTABLE ){ pFrom->u.vtab.needFree = 0; }else if( (pFrom->wsFlags & WHERE_AUTO_INDEX)!=0 ){ pFrom->u.btree.pIndex = 0; } return SQLITE_OK; } /* ** Delete a WhereLoop object */ static void whereLoopDelete(sqlite3 *db, WhereLoop *p){ whereLoopClear(db, p); sqlite3DbFreeNN(db, p); } /* ** Free a WhereInfo structure */ static void whereInfoFree(sqlite3 *db, WhereInfo *pWInfo){ int i; assert( pWInfo!=0 ); for(i=0; inLevel; i++){ WhereLevel *pLevel = &pWInfo->a[i]; if( pLevel->pWLoop && (pLevel->pWLoop->wsFlags & WHERE_IN_ABLE) ){ sqlite3DbFree(db, pLevel->u.in.aInLoop); } } sqlite3WhereClauseClear(&pWInfo->sWC); while( pWInfo->pLoops ){ WhereLoop *p = pWInfo->pLoops; pWInfo->pLoops = p->pNextLoop; whereLoopDelete(db, p); } assert( pWInfo->pExprMods==0 ); sqlite3DbFreeNN(db, pWInfo); } /* ** Return TRUE if all of the following are true: ** ** (1) X has the same or lower cost that Y ** (2) X uses fewer WHERE clause terms than Y ** (3) Every WHERE clause term used by X is also used by Y ** (4) X skips at least as many columns as Y ** (5) If X is a covering index, than Y is too ** ** Conditions (2) and (3) mean that X is a "proper subset" of Y. ** If X is a proper subset of Y then Y is a better choice and ought ** to have a lower cost. This routine returns TRUE when that cost ** relationship is inverted and needs to be adjusted. Constraint (4) ** was added because if X uses skip-scan less than Y it still might ** deserve a lower cost even if it is a proper subset of Y. Constraint (5) ** was added because a covering index probably deserves to have a lower cost ** than a non-covering index even if it is a proper subset. */ static int whereLoopCheaperProperSubset( const WhereLoop *pX, /* First WhereLoop to compare */ const WhereLoop *pY /* Compare against this WhereLoop */ ){ int i, j; if( pX->nLTerm-pX->nSkip >= pY->nLTerm-pY->nSkip ){ return 0; /* X is not a subset of Y */ } if( pY->nSkip > pX->nSkip ) return 0; if( pX->rRun >= pY->rRun ){ if( pX->rRun > pY->rRun ) return 0; /* X costs more than Y */ if( pX->nOut > pY->nOut ) return 0; /* X costs more than Y */ } for(i=pX->nLTerm-1; i>=0; i--){ if( pX->aLTerm[i]==0 ) continue; for(j=pY->nLTerm-1; j>=0; j--){ if( pY->aLTerm[j]==pX->aLTerm[i] ) break; } if( j<0 ) return 0; /* X not a subset of Y since term X[i] not used by Y */ } if( (pX->wsFlags&WHERE_IDX_ONLY)!=0 && (pY->wsFlags&WHERE_IDX_ONLY)==0 ){ return 0; /* Constraint (5) */ } return 1; /* All conditions meet */ } /* ** Try to adjust the cost of WhereLoop pTemplate upwards or downwards so ** that: ** ** (1) pTemplate costs less than any other WhereLoops that are a proper ** subset of pTemplate ** ** (2) pTemplate costs more than any other WhereLoops for which pTemplate ** is a proper subset. ** ** To say "WhereLoop X is a proper subset of Y" means that X uses fewer ** WHERE clause terms than Y and that every WHERE clause term used by X is ** also used by Y. */ static void whereLoopAdjustCost(const WhereLoop *p, WhereLoop *pTemplate){ if( (pTemplate->wsFlags & WHERE_INDEXED)==0 ) return; for(; p; p=p->pNextLoop){ if( p->iTab!=pTemplate->iTab ) continue; if( (p->wsFlags & WHERE_INDEXED)==0 ) continue; if( whereLoopCheaperProperSubset(p, pTemplate) ){ /* Adjust pTemplate cost downward so that it is cheaper than its ** subset p. */ WHERETRACE(0x80,("subset cost adjustment %d,%d to %d,%d\n", pTemplate->rRun, pTemplate->nOut, p->rRun, p->nOut-1)); pTemplate->rRun = p->rRun; pTemplate->nOut = p->nOut - 1; }else if( whereLoopCheaperProperSubset(pTemplate, p) ){ /* Adjust pTemplate cost upward so that it is costlier than p since ** pTemplate is a proper subset of p */ WHERETRACE(0x80,("subset cost adjustment %d,%d to %d,%d\n", pTemplate->rRun, pTemplate->nOut, p->rRun, p->nOut+1)); pTemplate->rRun = p->rRun; pTemplate->nOut = p->nOut + 1; } } } /* ** Search the list of WhereLoops in *ppPrev looking for one that can be ** replaced by pTemplate. ** ** Return NULL if pTemplate does not belong on the WhereLoop list. ** In other words if pTemplate ought to be dropped from further consideration. ** ** If pX is a WhereLoop that pTemplate can replace, then return the ** link that points to pX. ** ** If pTemplate cannot replace any existing element of the list but needs ** to be added to the list as a new entry, then return a pointer to the ** tail of the list. */ static WhereLoop **whereLoopFindLesser( WhereLoop **ppPrev, const WhereLoop *pTemplate ){ WhereLoop *p; for(p=(*ppPrev); p; ppPrev=&p->pNextLoop, p=*ppPrev){ if( p->iTab!=pTemplate->iTab || p->iSortIdx!=pTemplate->iSortIdx ){ /* If either the iTab or iSortIdx values for two WhereLoop are different ** then those WhereLoops need to be considered separately. Neither is ** a candidate to replace the other. */ continue; } /* In the current implementation, the rSetup value is either zero ** or the cost of building an automatic index (NlogN) and the NlogN ** is the same for compatible WhereLoops. */ assert( p->rSetup==0 || pTemplate->rSetup==0 || p->rSetup==pTemplate->rSetup ); /* whereLoopAddBtree() always generates and inserts the automatic index ** case first. Hence compatible candidate WhereLoops never have a larger ** rSetup. Call this SETUP-INVARIANT */ assert( p->rSetup>=pTemplate->rSetup ); /* Any loop using an appliation-defined index (or PRIMARY KEY or ** UNIQUE constraint) with one or more == constraints is better ** than an automatic index. Unless it is a skip-scan. */ if( (p->wsFlags & WHERE_AUTO_INDEX)!=0 && (pTemplate->nSkip)==0 && (pTemplate->wsFlags & WHERE_INDEXED)!=0 && (pTemplate->wsFlags & WHERE_COLUMN_EQ)!=0 && (p->prereq & pTemplate->prereq)==pTemplate->prereq ){ break; } /* If existing WhereLoop p is better than pTemplate, pTemplate can be ** discarded. WhereLoop p is better if: ** (1) p has no more dependencies than pTemplate, and ** (2) p has an equal or lower cost than pTemplate */ if( (p->prereq & pTemplate->prereq)==p->prereq /* (1) */ && p->rSetup<=pTemplate->rSetup /* (2a) */ && p->rRun<=pTemplate->rRun /* (2b) */ && p->nOut<=pTemplate->nOut /* (2c) */ ){ return 0; /* Discard pTemplate */ } /* If pTemplate is always better than p, then cause p to be overwritten ** with pTemplate. pTemplate is better than p if: ** (1) pTemplate has no more dependences than p, and ** (2) pTemplate has an equal or lower cost than p. */ if( (p->prereq & pTemplate->prereq)==pTemplate->prereq /* (1) */ && p->rRun>=pTemplate->rRun /* (2a) */ && p->nOut>=pTemplate->nOut /* (2b) */ ){ assert( p->rSetup>=pTemplate->rSetup ); /* SETUP-INVARIANT above */ break; /* Cause p to be overwritten by pTemplate */ } } return ppPrev; } /* ** Insert or replace a WhereLoop entry using the template supplied. ** ** An existing WhereLoop entry might be overwritten if the new template ** is better and has fewer dependencies. Or the template will be ignored ** and no insert will occur if an existing WhereLoop is faster and has ** fewer dependencies than the template. Otherwise a new WhereLoop is ** added based on the template. ** ** If pBuilder->pOrSet is not NULL then we care about only the ** prerequisites and rRun and nOut costs of the N best loops. That ** information is gathered in the pBuilder->pOrSet object. This special ** processing mode is used only for OR clause processing. ** ** When accumulating multiple loops (when pBuilder->pOrSet is NULL) we ** still might overwrite similar loops with the new template if the ** new template is better. Loops may be overwritten if the following ** conditions are met: ** ** (1) They have the same iTab. ** (2) They have the same iSortIdx. ** (3) The template has same or fewer dependencies than the current loop ** (4) The template has the same or lower cost than the current loop */ static int whereLoopInsert(WhereLoopBuilder *pBuilder, WhereLoop *pTemplate){ WhereLoop **ppPrev, *p; WhereInfo *pWInfo = pBuilder->pWInfo; sqlite3 *db = pWInfo->pParse->db; int rc; /* Stop the search once we hit the query planner search limit */ if( pBuilder->iPlanLimit==0 ){ WHERETRACE(0xffffffff,("=== query planner search limit reached ===\n")); if( pBuilder->pOrSet ) pBuilder->pOrSet->n = 0; return SQLITE_DONE; } pBuilder->iPlanLimit--; whereLoopAdjustCost(pWInfo->pLoops, pTemplate); /* If pBuilder->pOrSet is defined, then only keep track of the costs ** and prereqs. */ if( pBuilder->pOrSet!=0 ){ if( pTemplate->nLTerm ){ #if WHERETRACE_ENABLED u16 n = pBuilder->pOrSet->n; int x = #endif whereOrInsert(pBuilder->pOrSet, pTemplate->prereq, pTemplate->rRun, pTemplate->nOut); #if WHERETRACE_ENABLED /* 0x8 */ if( sqlite3WhereTrace & 0x8 ){ sqlite3DebugPrintf(x?" or-%d: ":" or-X: ", n); sqlite3WhereLoopPrint(pTemplate, pBuilder->pWC); } #endif } return SQLITE_OK; } /* Look for an existing WhereLoop to replace with pTemplate */ ppPrev = whereLoopFindLesser(&pWInfo->pLoops, pTemplate); if( ppPrev==0 ){ /* There already exists a WhereLoop on the list that is better ** than pTemplate, so just ignore pTemplate */ #if WHERETRACE_ENABLED /* 0x8 */ if( sqlite3WhereTrace & 0x8 ){ sqlite3DebugPrintf(" skip: "); sqlite3WhereLoopPrint(pTemplate, pBuilder->pWC); } #endif return SQLITE_OK; }else{ p = *ppPrev; } /* If we reach this point it means that either p[] should be overwritten ** with pTemplate[] if p[] exists, or if p==NULL then allocate a new ** WhereLoop and insert it. */ #if WHERETRACE_ENABLED /* 0x8 */ if( sqlite3WhereTrace & 0x8 ){ if( p!=0 ){ sqlite3DebugPrintf("replace: "); sqlite3WhereLoopPrint(p, pBuilder->pWC); sqlite3DebugPrintf(" with: "); }else{ sqlite3DebugPrintf(" add: "); } sqlite3WhereLoopPrint(pTemplate, pBuilder->pWC); } #endif if( p==0 ){ /* Allocate a new WhereLoop to add to the end of the list */ *ppPrev = p = sqlite3DbMallocRawNN(db, sizeof(WhereLoop)); if( p==0 ) return SQLITE_NOMEM_BKPT; whereLoopInit(p); p->pNextLoop = 0; }else{ /* We will be overwriting WhereLoop p[]. But before we do, first ** go through the rest of the list and delete any other entries besides ** p[] that are also supplated by pTemplate */ WhereLoop **ppTail = &p->pNextLoop; WhereLoop *pToDel; while( *ppTail ){ ppTail = whereLoopFindLesser(ppTail, pTemplate); if( ppTail==0 ) break; pToDel = *ppTail; if( pToDel==0 ) break; *ppTail = pToDel->pNextLoop; #if WHERETRACE_ENABLED /* 0x8 */ if( sqlite3WhereTrace & 0x8 ){ sqlite3DebugPrintf(" delete: "); sqlite3WhereLoopPrint(pToDel, pBuilder->pWC); } #endif whereLoopDelete(db, pToDel); } } rc = whereLoopXfer(db, p, pTemplate); if( (p->wsFlags & WHERE_VIRTUALTABLE)==0 ){ Index *pIndex = p->u.btree.pIndex; if( pIndex && pIndex->idxType==SQLITE_IDXTYPE_IPK ){ p->u.btree.pIndex = 0; } } return rc; } /* ** Adjust the WhereLoop.nOut value downward to account for terms of the ** WHERE clause that reference the loop but which are not used by an ** index. * ** For every WHERE clause term that is not used by the index ** and which has a truth probability assigned by one of the likelihood(), ** likely(), or unlikely() SQL functions, reduce the estimated number ** of output rows by the probability specified. ** ** TUNING: For every WHERE clause term that is not used by the index ** and which does not have an assigned truth probability, heuristics ** described below are used to try to estimate the truth probability. ** TODO --> Perhaps this is something that could be improved by better ** table statistics. ** ** Heuristic 1: Estimate the truth probability as 93.75%. The 93.75% ** value corresponds to -1 in LogEst notation, so this means decrement ** the WhereLoop.nOut field for every such WHERE clause term. ** ** Heuristic 2: If there exists one or more WHERE clause terms of the ** form "x==EXPR" and EXPR is not a constant 0 or 1, then make sure the ** final output row estimate is no greater than 1/4 of the total number ** of rows in the table. In other words, assume that x==EXPR will filter ** out at least 3 out of 4 rows. If EXPR is -1 or 0 or 1, then maybe the ** "x" column is boolean or else -1 or 0 or 1 is a common default value ** on the "x" column and so in that case only cap the output row estimate ** at 1/2 instead of 1/4. */ static void whereLoopOutputAdjust( WhereClause *pWC, /* The WHERE clause */ WhereLoop *pLoop, /* The loop to adjust downward */ LogEst nRow /* Number of rows in the entire table */ ){ WhereTerm *pTerm, *pX; Bitmask notAllowed = ~(pLoop->prereq|pLoop->maskSelf); int i, j; LogEst iReduce = 0; /* pLoop->nOut should not exceed nRow-iReduce */ assert( (pLoop->wsFlags & WHERE_AUTO_INDEX)==0 ); for(i=pWC->nTerm, pTerm=pWC->a; i>0; i--, pTerm++){ assert( pTerm!=0 ); if( (pTerm->wtFlags & TERM_VIRTUAL)!=0 ) break; if( (pTerm->prereqAll & pLoop->maskSelf)==0 ) continue; if( (pTerm->prereqAll & notAllowed)!=0 ) continue; for(j=pLoop->nLTerm-1; j>=0; j--){ pX = pLoop->aLTerm[j]; if( pX==0 ) continue; if( pX==pTerm ) break; if( pX->iParent>=0 && (&pWC->a[pX->iParent])==pTerm ) break; } if( j<0 ){ if( pTerm->truthProb<=0 ){ /* If a truth probability is specified using the likelihood() hints, ** then use the probability provided by the application. */ pLoop->nOut += pTerm->truthProb; }else{ /* In the absence of explicit truth probabilities, use heuristics to ** guess a reasonable truth probability. */ pLoop->nOut--; if( (pTerm->eOperator&(WO_EQ|WO_IS))!=0 && (pTerm->wtFlags & TERM_HIGHTRUTH)==0 /* tag-20200224-1 */ ){ Expr *pRight = pTerm->pExpr->pRight; int k = 0; testcase( pTerm->pExpr->op==TK_IS ); if( sqlite3ExprIsInteger(pRight, &k) && k>=(-1) && k<=1 ){ k = 10; }else{ k = 20; } if( iReducewtFlags |= TERM_HEURTRUTH; iReduce = k; } } } } } if( pLoop->nOut > nRow-iReduce ) pLoop->nOut = nRow - iReduce; } /* ** Term pTerm is a vector range comparison operation. The first comparison ** in the vector can be optimized using column nEq of the index. This ** function returns the total number of vector elements that can be used ** as part of the range comparison. ** ** For example, if the query is: ** ** WHERE a = ? AND (b, c, d) > (?, ?, ?) ** ** and the index: ** ** CREATE INDEX ... ON (a, b, c, d, e) ** ** then this function would be invoked with nEq=1. The value returned in ** this case is 3. */ static int whereRangeVectorLen( Parse *pParse, /* Parsing context */ int iCur, /* Cursor open on pIdx */ Index *pIdx, /* The index to be used for a inequality constraint */ int nEq, /* Number of prior equality constraints on same index */ WhereTerm *pTerm /* The vector inequality constraint */ ){ int nCmp = sqlite3ExprVectorSize(pTerm->pExpr->pLeft); int i; nCmp = MIN(nCmp, (pIdx->nColumn - nEq)); for(i=1; ipExpr->pLeft->x.pList->a[i].pExpr; Expr *pRhs = pTerm->pExpr->pRight; if( pRhs->flags & EP_xIsSelect ){ pRhs = pRhs->x.pSelect->pEList->a[i].pExpr; }else{ pRhs = pRhs->x.pList->a[i].pExpr; } /* Check that the LHS of the comparison is a column reference to ** the right column of the right source table. And that the sort ** order of the index column is the same as the sort order of the ** leftmost index column. */ if( pLhs->op!=TK_COLUMN || pLhs->iTable!=iCur || pLhs->iColumn!=pIdx->aiColumn[i+nEq] || pIdx->aSortOrder[i+nEq]!=pIdx->aSortOrder[nEq] ){ break; } testcase( pLhs->iColumn==XN_ROWID ); aff = sqlite3CompareAffinity(pRhs, sqlite3ExprAffinity(pLhs)); idxaff = sqlite3TableColumnAffinity(pIdx->pTable, pLhs->iColumn); if( aff!=idxaff ) break; pColl = sqlite3BinaryCompareCollSeq(pParse, pLhs, pRhs); if( pColl==0 ) break; if( sqlite3StrICmp(pColl->zName, pIdx->azColl[i+nEq]) ) break; } return i; } /* ** Adjust the cost C by the costMult facter T. This only occurs if ** compiled with -DSQLITE_ENABLE_COSTMULT */ #ifdef SQLITE_ENABLE_COSTMULT # define ApplyCostMultiplier(C,T) C += T #else # define ApplyCostMultiplier(C,T) #endif /* ** We have so far matched pBuilder->pNew->u.btree.nEq terms of the ** index pIndex. Try to match one more. ** ** When this function is called, pBuilder->pNew->nOut contains the ** number of rows expected to be visited by filtering using the nEq ** terms only. If it is modified, this value is restored before this ** function returns. ** ** If pProbe->idxType==SQLITE_IDXTYPE_IPK, that means pIndex is ** a fake index used for the INTEGER PRIMARY KEY. */ static int whereLoopAddBtreeIndex( WhereLoopBuilder *pBuilder, /* The WhereLoop factory */ struct SrcList_item *pSrc, /* FROM clause term being analyzed */ Index *pProbe, /* An index on pSrc */ LogEst nInMul /* log(Number of iterations due to IN) */ ){ WhereInfo *pWInfo = pBuilder->pWInfo; /* WHERE analyse context */ Parse *pParse = pWInfo->pParse; /* Parsing context */ sqlite3 *db = pParse->db; /* Database connection malloc context */ WhereLoop *pNew; /* Template WhereLoop under construction */ WhereTerm *pTerm; /* A WhereTerm under consideration */ int opMask; /* Valid operators for constraints */ WhereScan scan; /* Iterator for WHERE terms */ Bitmask saved_prereq; /* Original value of pNew->prereq */ u16 saved_nLTerm; /* Original value of pNew->nLTerm */ u16 saved_nEq; /* Original value of pNew->u.btree.nEq */ u16 saved_nBtm; /* Original value of pNew->u.btree.nBtm */ u16 saved_nTop; /* Original value of pNew->u.btree.nTop */ u16 saved_nSkip; /* Original value of pNew->nSkip */ u32 saved_wsFlags; /* Original value of pNew->wsFlags */ LogEst saved_nOut; /* Original value of pNew->nOut */ int rc = SQLITE_OK; /* Return code */ LogEst rSize; /* Number of rows in the table */ LogEst rLogSize; /* Logarithm of table size */ WhereTerm *pTop = 0, *pBtm = 0; /* Top and bottom range constraints */ pNew = pBuilder->pNew; if( db->mallocFailed ) return SQLITE_NOMEM_BKPT; WHERETRACE(0x800, ("BEGIN %s.addBtreeIdx(%s), nEq=%d, nSkip=%d\n", pProbe->pTable->zName,pProbe->zName, pNew->u.btree.nEq, pNew->nSkip)); assert( (pNew->wsFlags & WHERE_VIRTUALTABLE)==0 ); assert( (pNew->wsFlags & WHERE_TOP_LIMIT)==0 ); if( pNew->wsFlags & WHERE_BTM_LIMIT ){ opMask = WO_LT|WO_LE; }else{ assert( pNew->u.btree.nBtm==0 ); opMask = WO_EQ|WO_IN|WO_GT|WO_GE|WO_LT|WO_LE|WO_ISNULL|WO_IS; } if( pProbe->bUnordered ) opMask &= ~(WO_GT|WO_GE|WO_LT|WO_LE); assert( pNew->u.btree.nEqnColumn ); saved_nEq = pNew->u.btree.nEq; saved_nBtm = pNew->u.btree.nBtm; saved_nTop = pNew->u.btree.nTop; saved_nSkip = pNew->nSkip; saved_nLTerm = pNew->nLTerm; saved_wsFlags = pNew->wsFlags; saved_prereq = pNew->prereq; saved_nOut = pNew->nOut; pTerm = whereScanInit(&scan, pBuilder->pWC, pSrc->iCursor, saved_nEq, opMask, pProbe); pNew->rSetup = 0; rSize = pProbe->aiRowLogEst[0]; rLogSize = estLog(rSize); for(; rc==SQLITE_OK && pTerm!=0; pTerm = whereScanNext(&scan)){ u16 eOp = pTerm->eOperator; /* Shorthand for pTerm->eOperator */ LogEst rCostIdx; LogEst nOutUnadjusted; /* nOut before IN() and WHERE adjustments */ int nIn = 0; #ifdef SQLITE_ENABLE_STAT4 int nRecValid = pBuilder->nRecValid; #endif if( (eOp==WO_ISNULL || (pTerm->wtFlags&TERM_VNULL)!=0) && indexColumnNotNull(pProbe, saved_nEq) ){ continue; /* ignore IS [NOT] NULL constraints on NOT NULL columns */ } if( pTerm->prereqRight & pNew->maskSelf ) continue; /* Do not allow the upper bound of a LIKE optimization range constraint ** to mix with a lower range bound from some other source */ if( pTerm->wtFlags & TERM_LIKEOPT && pTerm->eOperator==WO_LT ) continue; /* tag-20191211-001: Do not allow constraints from the WHERE clause to ** be used by the right table of a LEFT JOIN. Only constraints in the ** ON clause are allowed. See tag-20191211-002 for the vtab equivalent. */ if( (pSrc->fg.jointype & JT_LEFT)!=0 && !ExprHasProperty(pTerm->pExpr, EP_FromJoin) ){ continue; } if( IsUniqueIndex(pProbe) && saved_nEq==pProbe->nKeyCol-1 ){ pBuilder->bldFlags1 |= SQLITE_BLDF1_UNIQUE; }else{ pBuilder->bldFlags1 |= SQLITE_BLDF1_INDEXED; } pNew->wsFlags = saved_wsFlags; pNew->u.btree.nEq = saved_nEq; pNew->u.btree.nBtm = saved_nBtm; pNew->u.btree.nTop = saved_nTop; pNew->nLTerm = saved_nLTerm; if( whereLoopResize(db, pNew, pNew->nLTerm+1) ) break; /* OOM */ pNew->aLTerm[pNew->nLTerm++] = pTerm; pNew->prereq = (saved_prereq | pTerm->prereqRight) & ~pNew->maskSelf; assert( nInMul==0 || (pNew->wsFlags & WHERE_COLUMN_NULL)!=0 || (pNew->wsFlags & WHERE_COLUMN_IN)!=0 || (pNew->wsFlags & WHERE_SKIPSCAN)!=0 ); if( eOp & WO_IN ){ Expr *pExpr = pTerm->pExpr; if( ExprHasProperty(pExpr, EP_xIsSelect) ){ /* "x IN (SELECT ...)": TUNING: the SELECT returns 25 rows */ int i; nIn = 46; assert( 46==sqlite3LogEst(25) ); /* The expression may actually be of the form (x, y) IN (SELECT...). ** In this case there is a separate term for each of (x) and (y). ** However, the nIn multiplier should only be applied once, not once ** for each such term. The following loop checks that pTerm is the ** first such term in use, and sets nIn back to 0 if it is not. */ for(i=0; inLTerm-1; i++){ if( pNew->aLTerm[i] && pNew->aLTerm[i]->pExpr==pExpr ) nIn = 0; } }else if( ALWAYS(pExpr->x.pList && pExpr->x.pList->nExpr) ){ /* "x IN (value, value, ...)" */ nIn = sqlite3LogEst(pExpr->x.pList->nExpr); } if( pProbe->hasStat1 ){ LogEst M, logK, safetyMargin; /* Let: ** N = the total number of rows in the table ** K = the number of entries on the RHS of the IN operator ** M = the number of rows in the table that match terms to the ** to the left in the same index. If the IN operator is on ** the left-most index column, M==N. ** ** Given the definitions above, it is better to omit the IN operator ** from the index lookup and instead do a scan of the M elements, ** testing each scanned row against the IN operator separately, if: ** ** M*log(K) < K*log(N) ** ** Our estimates for M, K, and N might be inaccurate, so we build in ** a safety margin of 2 (LogEst: 10) that favors using the IN operator ** with the index, as using an index has better worst-case behavior. ** If we do not have real sqlite_stat1 data, always prefer to use ** the index. */ M = pProbe->aiRowLogEst[saved_nEq]; logK = estLog(nIn); safetyMargin = 10; /* TUNING: extra weight for indexed IN */ if( M + logK + safetyMargin < nIn + rLogSize ){ WHERETRACE(0x40, ("Scan preferred over IN operator on column %d of \"%s\" (%d<%d)\n", saved_nEq, pProbe->zName, M+logK+10, nIn+rLogSize)); continue; }else{ WHERETRACE(0x40, ("IN operator preferred on column %d of \"%s\" (%d>=%d)\n", saved_nEq, pProbe->zName, M+logK+10, nIn+rLogSize)); } } pNew->wsFlags |= WHERE_COLUMN_IN; }else if( eOp & (WO_EQ|WO_IS) ){ int iCol = pProbe->aiColumn[saved_nEq]; pNew->wsFlags |= WHERE_COLUMN_EQ; assert( saved_nEq==pNew->u.btree.nEq ); if( iCol==XN_ROWID || (iCol>=0 && nInMul==0 && saved_nEq==pProbe->nKeyCol-1) ){ if( iCol==XN_ROWID || pProbe->uniqNotNull || (pProbe->nKeyCol==1 && pProbe->onError && eOp==WO_EQ) ){ pNew->wsFlags |= WHERE_ONEROW; }else{ pNew->wsFlags |= WHERE_UNQ_WANTED; } } }else if( eOp & WO_ISNULL ){ pNew->wsFlags |= WHERE_COLUMN_NULL; }else if( eOp & (WO_GT|WO_GE) ){ testcase( eOp & WO_GT ); testcase( eOp & WO_GE ); pNew->wsFlags |= WHERE_COLUMN_RANGE|WHERE_BTM_LIMIT; pNew->u.btree.nBtm = whereRangeVectorLen( pParse, pSrc->iCursor, pProbe, saved_nEq, pTerm ); pBtm = pTerm; pTop = 0; if( pTerm->wtFlags & TERM_LIKEOPT ){ /* Range contraints that come from the LIKE optimization are ** always used in pairs. */ pTop = &pTerm[1]; assert( (pTop-(pTerm->pWC->a))pWC->nTerm ); assert( pTop->wtFlags & TERM_LIKEOPT ); assert( pTop->eOperator==WO_LT ); if( whereLoopResize(db, pNew, pNew->nLTerm+1) ) break; /* OOM */ pNew->aLTerm[pNew->nLTerm++] = pTop; pNew->wsFlags |= WHERE_TOP_LIMIT; pNew->u.btree.nTop = 1; } }else{ assert( eOp & (WO_LT|WO_LE) ); testcase( eOp & WO_LT ); testcase( eOp & WO_LE ); pNew->wsFlags |= WHERE_COLUMN_RANGE|WHERE_TOP_LIMIT; pNew->u.btree.nTop = whereRangeVectorLen( pParse, pSrc->iCursor, pProbe, saved_nEq, pTerm ); pTop = pTerm; pBtm = (pNew->wsFlags & WHERE_BTM_LIMIT)!=0 ? pNew->aLTerm[pNew->nLTerm-2] : 0; } /* At this point pNew->nOut is set to the number of rows expected to ** be visited by the index scan before considering term pTerm, or the ** values of nIn and nInMul. In other words, assuming that all ** "x IN(...)" terms are replaced with "x = ?". This block updates ** the value of pNew->nOut to account for pTerm (but not nIn/nInMul). */ assert( pNew->nOut==saved_nOut ); if( pNew->wsFlags & WHERE_COLUMN_RANGE ){ /* Adjust nOut using stat4 data. Or, if there is no stat4 ** data, using some other estimate. */ whereRangeScanEst(pParse, pBuilder, pBtm, pTop, pNew); }else{ int nEq = ++pNew->u.btree.nEq; assert( eOp & (WO_ISNULL|WO_EQ|WO_IN|WO_IS) ); assert( pNew->nOut==saved_nOut ); if( pTerm->truthProb<=0 && pProbe->aiColumn[saved_nEq]>=0 ){ assert( (eOp & WO_IN) || nIn==0 ); testcase( eOp & WO_IN ); pNew->nOut += pTerm->truthProb; pNew->nOut -= nIn; }else{ #ifdef SQLITE_ENABLE_STAT4 tRowcnt nOut = 0; if( nInMul==0 && pProbe->nSample && pNew->u.btree.nEq<=pProbe->nSampleCol && ((eOp & WO_IN)==0 || !ExprHasProperty(pTerm->pExpr, EP_xIsSelect)) && OptimizationEnabled(db, SQLITE_Stat4) ){ Expr *pExpr = pTerm->pExpr; if( (eOp & (WO_EQ|WO_ISNULL|WO_IS))!=0 ){ testcase( eOp & WO_EQ ); testcase( eOp & WO_IS ); testcase( eOp & WO_ISNULL ); rc = whereEqualScanEst(pParse, pBuilder, pExpr->pRight, &nOut); }else{ rc = whereInScanEst(pParse, pBuilder, pExpr->x.pList, &nOut); } if( rc==SQLITE_NOTFOUND ) rc = SQLITE_OK; if( rc!=SQLITE_OK ) break; /* Jump out of the pTerm loop */ if( nOut ){ pNew->nOut = sqlite3LogEst(nOut); if( nEq==1 /* TUNING: Mark terms as "low selectivity" if they seem likely ** to be true for half or more of the rows in the table. ** See tag-202002240-1 */ && pNew->nOut+10 > pProbe->aiRowLogEst[0] ){ #if WHERETRACE_ENABLED /* 0x01 */ if( sqlite3WhereTrace & 0x01 ){ sqlite3DebugPrintf( "STAT4 determines term has low selectivity:\n"); sqlite3WhereTermPrint(pTerm, 999); } #endif pTerm->wtFlags |= TERM_HIGHTRUTH; if( pTerm->wtFlags & TERM_HEURTRUTH ){ /* If the term has previously been used with an assumption of ** higher selectivity, then set the flag to rerun the ** loop computations. */ pBuilder->bldFlags2 |= SQLITE_BLDF2_2NDPASS; } } if( pNew->nOut>saved_nOut ) pNew->nOut = saved_nOut; pNew->nOut -= nIn; } } if( nOut==0 ) #endif { pNew->nOut += (pProbe->aiRowLogEst[nEq] - pProbe->aiRowLogEst[nEq-1]); if( eOp & WO_ISNULL ){ /* TUNING: If there is no likelihood() value, assume that a ** "col IS NULL" expression matches twice as many rows ** as (col=?). */ pNew->nOut += 10; } } } } /* Set rCostIdx to the cost of visiting selected rows in index. Add ** it to pNew->rRun, which is currently set to the cost of the index ** seek only. Then, if this is a non-covering index, add the cost of ** visiting the rows in the main table. */ assert( pSrc->pTab->szTabRow>0 ); rCostIdx = pNew->nOut + 1 + (15*pProbe->szIdxRow)/pSrc->pTab->szTabRow; pNew->rRun = sqlite3LogEstAdd(rLogSize, rCostIdx); if( (pNew->wsFlags & (WHERE_IDX_ONLY|WHERE_IPK))==0 ){ pNew->rRun = sqlite3LogEstAdd(pNew->rRun, pNew->nOut + 16); } ApplyCostMultiplier(pNew->rRun, pProbe->pTable->costMult); nOutUnadjusted = pNew->nOut; pNew->rRun += nInMul + nIn; pNew->nOut += nInMul + nIn; whereLoopOutputAdjust(pBuilder->pWC, pNew, rSize); rc = whereLoopInsert(pBuilder, pNew); if( pNew->wsFlags & WHERE_COLUMN_RANGE ){ pNew->nOut = saved_nOut; }else{ pNew->nOut = nOutUnadjusted; } if( (pNew->wsFlags & WHERE_TOP_LIMIT)==0 && pNew->u.btree.nEqnColumn ){ whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, nInMul+nIn); } pNew->nOut = saved_nOut; #ifdef SQLITE_ENABLE_STAT4 pBuilder->nRecValid = nRecValid; #endif } pNew->prereq = saved_prereq; pNew->u.btree.nEq = saved_nEq; pNew->u.btree.nBtm = saved_nBtm; pNew->u.btree.nTop = saved_nTop; pNew->nSkip = saved_nSkip; pNew->wsFlags = saved_wsFlags; pNew->nOut = saved_nOut; pNew->nLTerm = saved_nLTerm; /* Consider using a skip-scan if there are no WHERE clause constraints ** available for the left-most terms of the index, and if the average ** number of repeats in the left-most terms is at least 18. ** ** The magic number 18 is selected on the basis that scanning 17 rows ** is almost always quicker than an index seek (even though if the index ** contains fewer than 2^17 rows we assume otherwise in other parts of ** the code). And, even if it is not, it should not be too much slower. ** On the other hand, the extra seeks could end up being significantly ** more expensive. */ assert( 42==sqlite3LogEst(18) ); if( saved_nEq==saved_nSkip && saved_nEq+1nKeyCol && saved_nEq==pNew->nLTerm && pProbe->noSkipScan==0 && pProbe->hasStat1!=0 && OptimizationEnabled(db, SQLITE_SkipScan) && pProbe->aiRowLogEst[saved_nEq+1]>=42 /* TUNING: Minimum for skip-scan */ && (rc = whereLoopResize(db, pNew, pNew->nLTerm+1))==SQLITE_OK ){ LogEst nIter; pNew->u.btree.nEq++; pNew->nSkip++; pNew->aLTerm[pNew->nLTerm++] = 0; pNew->wsFlags |= WHERE_SKIPSCAN; nIter = pProbe->aiRowLogEst[saved_nEq] - pProbe->aiRowLogEst[saved_nEq+1]; pNew->nOut -= nIter; /* TUNING: Because uncertainties in the estimates for skip-scan queries, ** add a 1.375 fudge factor to make skip-scan slightly less likely. */ nIter += 5; whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, nIter + nInMul); pNew->nOut = saved_nOut; pNew->u.btree.nEq = saved_nEq; pNew->nSkip = saved_nSkip; pNew->wsFlags = saved_wsFlags; } WHERETRACE(0x800, ("END %s.addBtreeIdx(%s), nEq=%d, rc=%d\n", pProbe->pTable->zName, pProbe->zName, saved_nEq, rc)); return rc; } /* ** Return True if it is possible that pIndex might be useful in ** implementing the ORDER BY clause in pBuilder. ** ** Return False if pBuilder does not contain an ORDER BY clause or ** if there is no way for pIndex to be useful in implementing that ** ORDER BY clause. */ static int indexMightHelpWithOrderBy( WhereLoopBuilder *pBuilder, Index *pIndex, int iCursor ){ ExprList *pOB; ExprList *aColExpr; int ii, jj; if( pIndex->bUnordered ) return 0; if( (pOB = pBuilder->pWInfo->pOrderBy)==0 ) return 0; for(ii=0; iinExpr; ii++){ Expr *pExpr = sqlite3ExprSkipCollateAndLikely(pOB->a[ii].pExpr); if( pExpr->op==TK_COLUMN && pExpr->iTable==iCursor ){ if( pExpr->iColumn<0 ) return 1; for(jj=0; jjnKeyCol; jj++){ if( pExpr->iColumn==pIndex->aiColumn[jj] ) return 1; } }else if( (aColExpr = pIndex->aColExpr)!=0 ){ for(jj=0; jjnKeyCol; jj++){ if( pIndex->aiColumn[jj]!=XN_EXPR ) continue; if( sqlite3ExprCompareSkip(pExpr,aColExpr->a[jj].pExpr,iCursor)==0 ){ return 1; } } } } return 0; } /* Check to see if a partial index with pPartIndexWhere can be used ** in the current query. Return true if it can be and false if not. */ static int whereUsablePartialIndex( int iTab, /* The table for which we want an index */ int isLeft, /* True if iTab is the right table of a LEFT JOIN */ WhereClause *pWC, /* The WHERE clause of the query */ Expr *pWhere /* The WHERE clause from the partial index */ ){ int i; WhereTerm *pTerm; Parse *pParse = pWC->pWInfo->pParse; while( pWhere->op==TK_AND ){ if( !whereUsablePartialIndex(iTab,isLeft,pWC,pWhere->pLeft) ) return 0; pWhere = pWhere->pRight; } if( pParse->db->flags & SQLITE_EnableQPSG ) pParse = 0; for(i=0, pTerm=pWC->a; inTerm; i++, pTerm++){ Expr *pExpr; pExpr = pTerm->pExpr; if( (!ExprHasProperty(pExpr, EP_FromJoin) || pExpr->iRightJoinTable==iTab) && (isLeft==0 || ExprHasProperty(pExpr, EP_FromJoin)) && sqlite3ExprImpliesExpr(pParse, pExpr, pWhere, iTab) ){ return 1; } } return 0; } /* ** Add all WhereLoop objects for a single table of the join where the table ** is identified by pBuilder->pNew->iTab. That table is guaranteed to be ** a b-tree table, not a virtual table. ** ** The costs (WhereLoop.rRun) of the b-tree loops added by this function ** are calculated as follows: ** ** For a full scan, assuming the table (or index) contains nRow rows: ** ** cost = nRow * 3.0 // full-table scan ** cost = nRow * K // scan of covering index ** cost = nRow * (K+3.0) // scan of non-covering index ** ** where K is a value between 1.1 and 3.0 set based on the relative ** estimated average size of the index and table records. ** ** For an index scan, where nVisit is the number of index rows visited ** by the scan, and nSeek is the number of seek operations required on ** the index b-tree: ** ** cost = nSeek * (log(nRow) + K * nVisit) // covering index ** cost = nSeek * (log(nRow) + (K+3.0) * nVisit) // non-covering index ** ** Normally, nSeek is 1. nSeek values greater than 1 come about if the ** WHERE clause includes "x IN (....)" terms used in place of "x=?". Or when ** implicit "x IN (SELECT x FROM tbl)" terms are added for skip-scans. ** ** The estimated values (nRow, nVisit, nSeek) often contain a large amount ** of uncertainty. For this reason, scoring is designed to pick plans that ** "do the least harm" if the estimates are inaccurate. For example, a ** log(nRow) factor is omitted from a non-covering index scan in order to ** bias the scoring in favor of using an index, since the worst-case ** performance of using an index is far better than the worst-case performance ** of a full table scan. */ static int whereLoopAddBtree( WhereLoopBuilder *pBuilder, /* WHERE clause information */ Bitmask mPrereq /* Extra prerequesites for using this table */ ){ WhereInfo *pWInfo; /* WHERE analysis context */ Index *pProbe; /* An index we are evaluating */ Index sPk; /* A fake index object for the primary key */ LogEst aiRowEstPk[2]; /* The aiRowLogEst[] value for the sPk index */ i16 aiColumnPk = -1; /* The aColumn[] value for the sPk index */ SrcList *pTabList; /* The FROM clause */ struct SrcList_item *pSrc; /* The FROM clause btree term to add */ WhereLoop *pNew; /* Template WhereLoop object */ int rc = SQLITE_OK; /* Return code */ int iSortIdx = 1; /* Index number */ int b; /* A boolean value */ LogEst rSize; /* number of rows in the table */ LogEst rLogSize; /* Logarithm of the number of rows in the table */ WhereClause *pWC; /* The parsed WHERE clause */ Table *pTab; /* Table being queried */ pNew = pBuilder->pNew; pWInfo = pBuilder->pWInfo; pTabList = pWInfo->pTabList; pSrc = pTabList->a + pNew->iTab; pTab = pSrc->pTab; pWC = pBuilder->pWC; assert( !IsVirtual(pSrc->pTab) ); if( pSrc->pIBIndex ){ /* An INDEXED BY clause specifies a particular index to use */ pProbe = pSrc->pIBIndex; }else if( !HasRowid(pTab) ){ pProbe = pTab->pIndex; }else{ /* There is no INDEXED BY clause. Create a fake Index object in local ** variable sPk to represent the rowid primary key index. Make this ** fake index the first in a chain of Index objects with all of the real ** indices to follow */ Index *pFirst; /* First of real indices on the table */ memset(&sPk, 0, sizeof(Index)); sPk.nKeyCol = 1; sPk.nColumn = 1; sPk.aiColumn = &aiColumnPk; sPk.aiRowLogEst = aiRowEstPk; sPk.onError = OE_Replace; sPk.pTable = pTab; sPk.szIdxRow = pTab->szTabRow; sPk.idxType = SQLITE_IDXTYPE_IPK; aiRowEstPk[0] = pTab->nRowLogEst; aiRowEstPk[1] = 0; pFirst = pSrc->pTab->pIndex; if( pSrc->fg.notIndexed==0 ){ /* The real indices of the table are only considered if the ** NOT INDEXED qualifier is omitted from the FROM clause */ sPk.pNext = pFirst; } pProbe = &sPk; } rSize = pTab->nRowLogEst; rLogSize = estLog(rSize); #ifndef SQLITE_OMIT_AUTOMATIC_INDEX /* Automatic indexes */ if( !pBuilder->pOrSet /* Not part of an OR optimization */ && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 && (pWInfo->pParse->db->flags & SQLITE_AutoIndex)!=0 && pSrc->pIBIndex==0 /* Has no INDEXED BY clause */ && !pSrc->fg.notIndexed /* Has no NOT INDEXED clause */ && HasRowid(pTab) /* Not WITHOUT ROWID table. (FIXME: Why not?) */ && !pSrc->fg.isCorrelated /* Not a correlated subquery */ && !pSrc->fg.isRecursive /* Not a recursive common table expression. */ ){ /* Generate auto-index WhereLoops */ WhereTerm *pTerm; WhereTerm *pWCEnd = pWC->a + pWC->nTerm; for(pTerm=pWC->a; rc==SQLITE_OK && pTermprereqRight & pNew->maskSelf ) continue; if( termCanDriveIndex(pTerm, pSrc, 0) ){ pNew->u.btree.nEq = 1; pNew->nSkip = 0; pNew->u.btree.pIndex = 0; pNew->nLTerm = 1; pNew->aLTerm[0] = pTerm; /* TUNING: One-time cost for computing the automatic index is ** estimated to be X*N*log2(N) where N is the number of rows in ** the table being indexed and where X is 7 (LogEst=28) for normal ** tables or 0.5 (LogEst=-10) for views and subqueries. The value ** of X is smaller for views and subqueries so that the query planner ** will be more aggressive about generating automatic indexes for ** those objects, since there is no opportunity to add schema ** indexes on subqueries and views. */ pNew->rSetup = rLogSize + rSize; if( pTab->pSelect==0 && (pTab->tabFlags & TF_Ephemeral)==0 ){ pNew->rSetup += 28; }else{ pNew->rSetup -= 10; } ApplyCostMultiplier(pNew->rSetup, pTab->costMult); if( pNew->rSetup<0 ) pNew->rSetup = 0; /* TUNING: Each index lookup yields 20 rows in the table. This ** is more than the usual guess of 10 rows, since we have no way ** of knowing how selective the index will ultimately be. It would ** not be unreasonable to make this value much larger. */ pNew->nOut = 43; assert( 43==sqlite3LogEst(20) ); pNew->rRun = sqlite3LogEstAdd(rLogSize,pNew->nOut); pNew->wsFlags = WHERE_AUTO_INDEX; pNew->prereq = mPrereq | pTerm->prereqRight; rc = whereLoopInsert(pBuilder, pNew); } } } #endif /* SQLITE_OMIT_AUTOMATIC_INDEX */ /* Loop over all indices. If there was an INDEXED BY clause, then only ** consider index pProbe. */ for(; rc==SQLITE_OK && pProbe; pProbe=(pSrc->pIBIndex ? 0 : pProbe->pNext), iSortIdx++ ){ int isLeft = (pSrc->fg.jointype & JT_OUTER)!=0; if( pProbe->pPartIdxWhere!=0 && !whereUsablePartialIndex(pSrc->iCursor, isLeft, pWC, pProbe->pPartIdxWhere) ){ testcase( pNew->iTab!=pSrc->iCursor ); /* See ticket [98d973b8f5] */ continue; /* Partial index inappropriate for this query */ } if( pProbe->bNoQuery ) continue; rSize = pProbe->aiRowLogEst[0]; pNew->u.btree.nEq = 0; pNew->u.btree.nBtm = 0; pNew->u.btree.nTop = 0; pNew->nSkip = 0; pNew->nLTerm = 0; pNew->iSortIdx = 0; pNew->rSetup = 0; pNew->prereq = mPrereq; pNew->nOut = rSize; pNew->u.btree.pIndex = pProbe; b = indexMightHelpWithOrderBy(pBuilder, pProbe, pSrc->iCursor); /* The ONEPASS_DESIRED flags never occurs together with ORDER BY */ assert( (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 || b==0 ); if( pProbe->idxType==SQLITE_IDXTYPE_IPK ){ /* Integer primary key index */ pNew->wsFlags = WHERE_IPK; /* Full table scan */ pNew->iSortIdx = b ? iSortIdx : 0; /* TUNING: Cost of full table scan is (N*3.0). */ pNew->rRun = rSize + 16; ApplyCostMultiplier(pNew->rRun, pTab->costMult); whereLoopOutputAdjust(pWC, pNew, rSize); rc = whereLoopInsert(pBuilder, pNew); pNew->nOut = rSize; if( rc ) break; }else{ Bitmask m; if( pProbe->isCovering ){ pNew->wsFlags = WHERE_IDX_ONLY | WHERE_INDEXED; m = 0; }else{ m = pSrc->colUsed & pProbe->colNotIdxed; pNew->wsFlags = (m==0) ? (WHERE_IDX_ONLY|WHERE_INDEXED) : WHERE_INDEXED; } /* Full scan via index */ if( b || !HasRowid(pTab) || pProbe->pPartIdxWhere!=0 || pSrc->fg.isIndexedBy || ( m==0 && pProbe->bUnordered==0 && (pProbe->szIdxRowszTabRow) && (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 && sqlite3GlobalConfig.bUseCis && OptimizationEnabled(pWInfo->pParse->db, SQLITE_CoverIdxScan) ) ){ pNew->iSortIdx = b ? iSortIdx : 0; /* The cost of visiting the index rows is N*K, where K is ** between 1.1 and 3.0, depending on the relative sizes of the ** index and table rows. */ pNew->rRun = rSize + 1 + (15*pProbe->szIdxRow)/pTab->szTabRow; if( m!=0 ){ /* If this is a non-covering index scan, add in the cost of ** doing table lookups. The cost will be 3x the number of ** lookups. Take into account WHERE clause terms that can be ** satisfied using just the index, and that do not require a ** table lookup. */ LogEst nLookup = rSize + 16; /* Base cost: N*3 */ int ii; int iCur = pSrc->iCursor; WhereClause *pWC2 = &pWInfo->sWC; for(ii=0; iinTerm; ii++){ WhereTerm *pTerm = &pWC2->a[ii]; if( !sqlite3ExprCoveredByIndex(pTerm->pExpr, iCur, pProbe) ){ break; } /* pTerm can be evaluated using just the index. So reduce ** the expected number of table lookups accordingly */ if( pTerm->truthProb<=0 ){ nLookup += pTerm->truthProb; }else{ nLookup--; if( pTerm->eOperator & (WO_EQ|WO_IS) ) nLookup -= 19; } } pNew->rRun = sqlite3LogEstAdd(pNew->rRun, nLookup); } ApplyCostMultiplier(pNew->rRun, pTab->costMult); whereLoopOutputAdjust(pWC, pNew, rSize); rc = whereLoopInsert(pBuilder, pNew); pNew->nOut = rSize; if( rc ) break; } } pBuilder->bldFlags1 = 0; rc = whereLoopAddBtreeIndex(pBuilder, pSrc, pProbe, 0); if( pBuilder->bldFlags1==SQLITE_BLDF1_INDEXED ){ /* If a non-unique index is used, or if a prefix of the key for ** unique index is used (making the index functionally non-unique) ** then the sqlite_stat1 data becomes important for scoring the ** plan */ pTab->tabFlags |= TF_StatsUsed; } #ifdef SQLITE_ENABLE_STAT4 sqlite3Stat4ProbeFree(pBuilder->pRec); pBuilder->nRecValid = 0; pBuilder->pRec = 0; #endif } return rc; } #ifndef SQLITE_OMIT_VIRTUALTABLE /* ** Argument pIdxInfo is already populated with all constraints that may ** be used by the virtual table identified by pBuilder->pNew->iTab. This ** function marks a subset of those constraints usable, invokes the ** xBestIndex method and adds the returned plan to pBuilder. ** ** A constraint is marked usable if: ** ** * Argument mUsable indicates that its prerequisites are available, and ** ** * It is not one of the operators specified in the mExclude mask passed ** as the fourth argument (which in practice is either WO_IN or 0). ** ** Argument mPrereq is a mask of tables that must be scanned before the ** virtual table in question. These are added to the plans prerequisites ** before it is added to pBuilder. ** ** Output parameter *pbIn is set to true if the plan added to pBuilder ** uses one or more WO_IN terms, or false otherwise. */ static int whereLoopAddVirtualOne( WhereLoopBuilder *pBuilder, Bitmask mPrereq, /* Mask of tables that must be used. */ Bitmask mUsable, /* Mask of usable tables */ u16 mExclude, /* Exclude terms using these operators */ sqlite3_index_info *pIdxInfo, /* Populated object for xBestIndex */ u16 mNoOmit, /* Do not omit these constraints */ int *pbIn /* OUT: True if plan uses an IN(...) op */ ){ WhereClause *pWC = pBuilder->pWC; struct sqlite3_index_constraint *pIdxCons; struct sqlite3_index_constraint_usage *pUsage = pIdxInfo->aConstraintUsage; int i; int mxTerm; int rc = SQLITE_OK; WhereLoop *pNew = pBuilder->pNew; Parse *pParse = pBuilder->pWInfo->pParse; struct SrcList_item *pSrc = &pBuilder->pWInfo->pTabList->a[pNew->iTab]; int nConstraint = pIdxInfo->nConstraint; assert( (mUsable & mPrereq)==mPrereq ); *pbIn = 0; pNew->prereq = mPrereq; /* Set the usable flag on the subset of constraints identified by ** arguments mUsable and mExclude. */ pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint; for(i=0; ia[pIdxCons->iTermOffset]; pIdxCons->usable = 0; if( (pTerm->prereqRight & mUsable)==pTerm->prereqRight && (pTerm->eOperator & mExclude)==0 ){ pIdxCons->usable = 1; } } /* Initialize the output fields of the sqlite3_index_info structure */ memset(pUsage, 0, sizeof(pUsage[0])*nConstraint); assert( pIdxInfo->needToFreeIdxStr==0 ); pIdxInfo->idxStr = 0; pIdxInfo->idxNum = 0; pIdxInfo->orderByConsumed = 0; pIdxInfo->estimatedCost = SQLITE_BIG_DBL / (double)2; pIdxInfo->estimatedRows = 25; pIdxInfo->idxFlags = 0; pIdxInfo->colUsed = (sqlite3_int64)pSrc->colUsed; /* Invoke the virtual table xBestIndex() method */ rc = vtabBestIndex(pParse, pSrc->pTab, pIdxInfo); if( rc ){ if( rc==SQLITE_CONSTRAINT ){ /* If the xBestIndex method returns SQLITE_CONSTRAINT, that means ** that the particular combination of parameters provided is unusable. ** Make no entries in the loop table. */ WHERETRACE(0xffff, (" ^^^^--- non-viable plan rejected!\n")); return SQLITE_OK; } return rc; } mxTerm = -1; assert( pNew->nLSlot>=nConstraint ); for(i=0; iaLTerm[i] = 0; pNew->u.vtab.omitMask = 0; pIdxCons = *(struct sqlite3_index_constraint**)&pIdxInfo->aConstraint; for(i=0; i=0 ){ WhereTerm *pTerm; int j = pIdxCons->iTermOffset; if( iTerm>=nConstraint || j<0 || j>=pWC->nTerm || pNew->aLTerm[iTerm]!=0 || pIdxCons->usable==0 ){ sqlite3ErrorMsg(pParse,"%s.xBestIndex malfunction",pSrc->pTab->zName); testcase( pIdxInfo->needToFreeIdxStr ); return SQLITE_ERROR; } testcase( iTerm==nConstraint-1 ); testcase( j==0 ); testcase( j==pWC->nTerm-1 ); pTerm = &pWC->a[j]; pNew->prereq |= pTerm->prereqRight; assert( iTermnLSlot ); pNew->aLTerm[iTerm] = pTerm; if( iTerm>mxTerm ) mxTerm = iTerm; testcase( iTerm==15 ); testcase( iTerm==16 ); if( pUsage[i].omit ){ if( i<16 && ((1<u.vtab.omitMask |= 1<eOperator & WO_IN)!=0 ){ /* A virtual table that is constrained by an IN clause may not ** consume the ORDER BY clause because (1) the order of IN terms ** is not necessarily related to the order of output terms and ** (2) Multiple outputs from a single IN value will not merge ** together. */ pIdxInfo->orderByConsumed = 0; pIdxInfo->idxFlags &= ~SQLITE_INDEX_SCAN_UNIQUE; *pbIn = 1; assert( (mExclude & WO_IN)==0 ); } } } pNew->nLTerm = mxTerm+1; for(i=0; i<=mxTerm; i++){ if( pNew->aLTerm[i]==0 ){ /* The non-zero argvIdx values must be contiguous. Raise an ** error if they are not */ sqlite3ErrorMsg(pParse,"%s.xBestIndex malfunction",pSrc->pTab->zName); testcase( pIdxInfo->needToFreeIdxStr ); return SQLITE_ERROR; } } assert( pNew->nLTerm<=pNew->nLSlot ); pNew->u.vtab.idxNum = pIdxInfo->idxNum; pNew->u.vtab.needFree = pIdxInfo->needToFreeIdxStr; pIdxInfo->needToFreeIdxStr = 0; pNew->u.vtab.idxStr = pIdxInfo->idxStr; pNew->u.vtab.isOrdered = (i8)(pIdxInfo->orderByConsumed ? pIdxInfo->nOrderBy : 0); pNew->rSetup = 0; pNew->rRun = sqlite3LogEstFromDouble(pIdxInfo->estimatedCost); pNew->nOut = sqlite3LogEst(pIdxInfo->estimatedRows); /* Set the WHERE_ONEROW flag if the xBestIndex() method indicated ** that the scan will visit at most one row. Clear it otherwise. */ if( pIdxInfo->idxFlags & SQLITE_INDEX_SCAN_UNIQUE ){ pNew->wsFlags |= WHERE_ONEROW; }else{ pNew->wsFlags &= ~WHERE_ONEROW; } rc = whereLoopInsert(pBuilder, pNew); if( pNew->u.vtab.needFree ){ sqlite3_free(pNew->u.vtab.idxStr); pNew->u.vtab.needFree = 0; } WHERETRACE(0xffff, (" bIn=%d prereqIn=%04llx prereqOut=%04llx\n", *pbIn, (sqlite3_uint64)mPrereq, (sqlite3_uint64)(pNew->prereq & ~mPrereq))); return rc; } /* ** If this function is invoked from within an xBestIndex() callback, it ** returns a pointer to a buffer containing the name of the collation ** sequence associated with element iCons of the sqlite3_index_info.aConstraint ** array. Or, if iCons is out of range or there is no active xBestIndex ** call, return NULL. */ SQLITE_API const char *sqlite3_vtab_collation(sqlite3_index_info *pIdxInfo, int iCons){ HiddenIndexInfo *pHidden = (HiddenIndexInfo*)&pIdxInfo[1]; const char *zRet = 0; if( iCons>=0 && iConsnConstraint ){ CollSeq *pC = 0; int iTerm = pIdxInfo->aConstraint[iCons].iTermOffset; Expr *pX = pHidden->pWC->a[iTerm].pExpr; if( pX->pLeft ){ pC = sqlite3ExprCompareCollSeq(pHidden->pParse, pX); } zRet = (pC ? pC->zName : sqlite3StrBINARY); } return zRet; } /* ** Add all WhereLoop objects for a table of the join identified by ** pBuilder->pNew->iTab. That table is guaranteed to be a virtual table. ** ** If there are no LEFT or CROSS JOIN joins in the query, both mPrereq and ** mUnusable are set to 0. Otherwise, mPrereq is a mask of all FROM clause ** entries that occur before the virtual table in the FROM clause and are ** separated from it by at least one LEFT or CROSS JOIN. Similarly, the ** mUnusable mask contains all FROM clause entries that occur after the ** virtual table and are separated from it by at least one LEFT or ** CROSS JOIN. ** ** For example, if the query were: ** ** ... FROM t1, t2 LEFT JOIN t3, t4, vt CROSS JOIN t5, t6; ** ** then mPrereq corresponds to (t1, t2) and mUnusable to (t5, t6). ** ** All the tables in mPrereq must be scanned before the current virtual ** table. So any terms for which all prerequisites are satisfied by ** mPrereq may be specified as "usable" in all calls to xBestIndex. ** Conversely, all tables in mUnusable must be scanned after the current ** virtual table, so any terms for which the prerequisites overlap with ** mUnusable should always be configured as "not-usable" for xBestIndex. */ static int whereLoopAddVirtual( WhereLoopBuilder *pBuilder, /* WHERE clause information */ Bitmask mPrereq, /* Tables that must be scanned before this one */ Bitmask mUnusable /* Tables that must be scanned after this one */ ){ int rc = SQLITE_OK; /* Return code */ WhereInfo *pWInfo; /* WHERE analysis context */ Parse *pParse; /* The parsing context */ WhereClause *pWC; /* The WHERE clause */ struct SrcList_item *pSrc; /* The FROM clause term to search */ sqlite3_index_info *p; /* Object to pass to xBestIndex() */ int nConstraint; /* Number of constraints in p */ int bIn; /* True if plan uses IN(...) operator */ WhereLoop *pNew; Bitmask mBest; /* Tables used by best possible plan */ u16 mNoOmit; assert( (mPrereq & mUnusable)==0 ); pWInfo = pBuilder->pWInfo; pParse = pWInfo->pParse; pWC = pBuilder->pWC; pNew = pBuilder->pNew; pSrc = &pWInfo->pTabList->a[pNew->iTab]; assert( IsVirtual(pSrc->pTab) ); p = allocateIndexInfo(pParse, pWC, mUnusable, pSrc, pBuilder->pOrderBy, &mNoOmit); if( p==0 ) return SQLITE_NOMEM_BKPT; pNew->rSetup = 0; pNew->wsFlags = WHERE_VIRTUALTABLE; pNew->nLTerm = 0; pNew->u.vtab.needFree = 0; nConstraint = p->nConstraint; if( whereLoopResize(pParse->db, pNew, nConstraint) ){ sqlite3DbFree(pParse->db, p); return SQLITE_NOMEM_BKPT; } /* First call xBestIndex() with all constraints usable. */ WHERETRACE(0x800, ("BEGIN %s.addVirtual()\n", pSrc->pTab->zName)); WHERETRACE(0x40, (" VirtualOne: all usable\n")); rc = whereLoopAddVirtualOne(pBuilder, mPrereq, ALLBITS, 0, p, mNoOmit, &bIn); /* If the call to xBestIndex() with all terms enabled produced a plan ** that does not require any source tables (IOW: a plan with mBest==0) ** and does not use an IN(...) operator, then there is no point in making ** any further calls to xBestIndex() since they will all return the same ** result (if the xBestIndex() implementation is sane). */ if( rc==SQLITE_OK && ((mBest = (pNew->prereq & ~mPrereq))!=0 || bIn) ){ int seenZero = 0; /* True if a plan with no prereqs seen */ int seenZeroNoIN = 0; /* Plan with no prereqs and no IN(...) seen */ Bitmask mPrev = 0; Bitmask mBestNoIn = 0; /* If the plan produced by the earlier call uses an IN(...) term, call ** xBestIndex again, this time with IN(...) terms disabled. */ if( bIn ){ WHERETRACE(0x40, (" VirtualOne: all usable w/o IN\n")); rc = whereLoopAddVirtualOne( pBuilder, mPrereq, ALLBITS, WO_IN, p, mNoOmit, &bIn); assert( bIn==0 ); mBestNoIn = pNew->prereq & ~mPrereq; if( mBestNoIn==0 ){ seenZero = 1; seenZeroNoIN = 1; } } /* Call xBestIndex once for each distinct value of (prereqRight & ~mPrereq) ** in the set of terms that apply to the current virtual table. */ while( rc==SQLITE_OK ){ int i; Bitmask mNext = ALLBITS; assert( mNext>0 ); for(i=0; ia[p->aConstraint[i].iTermOffset].prereqRight & ~mPrereq ); if( mThis>mPrev && mThisprereq==mPrereq ){ seenZero = 1; if( bIn==0 ) seenZeroNoIN = 1; } } /* If the calls to xBestIndex() in the above loop did not find a plan ** that requires no source tables at all (i.e. one guaranteed to be ** usable), make a call here with all source tables disabled */ if( rc==SQLITE_OK && seenZero==0 ){ WHERETRACE(0x40, (" VirtualOne: all disabled\n")); rc = whereLoopAddVirtualOne( pBuilder, mPrereq, mPrereq, 0, p, mNoOmit, &bIn); if( bIn==0 ) seenZeroNoIN = 1; } /* If the calls to xBestIndex() have so far failed to find a plan ** that requires no source tables at all and does not use an IN(...) ** operator, make a final call to obtain one here. */ if( rc==SQLITE_OK && seenZeroNoIN==0 ){ WHERETRACE(0x40, (" VirtualOne: all disabled and w/o IN\n")); rc = whereLoopAddVirtualOne( pBuilder, mPrereq, mPrereq, WO_IN, p, mNoOmit, &bIn); } } if( p->needToFreeIdxStr ) sqlite3_free(p->idxStr); sqlite3DbFreeNN(pParse->db, p); WHERETRACE(0x800, ("END %s.addVirtual(), rc=%d\n", pSrc->pTab->zName, rc)); return rc; } #endif /* SQLITE_OMIT_VIRTUALTABLE */ /* ** Add WhereLoop entries to handle OR terms. This works for either ** btrees or virtual tables. */ static int whereLoopAddOr( WhereLoopBuilder *pBuilder, Bitmask mPrereq, Bitmask mUnusable ){ WhereInfo *pWInfo = pBuilder->pWInfo; WhereClause *pWC; WhereLoop *pNew; WhereTerm *pTerm, *pWCEnd; int rc = SQLITE_OK; int iCur; WhereClause tempWC; WhereLoopBuilder sSubBuild; WhereOrSet sSum, sCur; struct SrcList_item *pItem; pWC = pBuilder->pWC; pWCEnd = pWC->a + pWC->nTerm; pNew = pBuilder->pNew; memset(&sSum, 0, sizeof(sSum)); pItem = pWInfo->pTabList->a + pNew->iTab; iCur = pItem->iCursor; for(pTerm=pWC->a; pTermeOperator & WO_OR)!=0 && (pTerm->u.pOrInfo->indexable & pNew->maskSelf)!=0 ){ WhereClause * const pOrWC = &pTerm->u.pOrInfo->wc; WhereTerm * const pOrWCEnd = &pOrWC->a[pOrWC->nTerm]; WhereTerm *pOrTerm; int once = 1; int i, j; sSubBuild = *pBuilder; sSubBuild.pOrderBy = 0; sSubBuild.pOrSet = &sCur; WHERETRACE(0x200, ("Begin processing OR-clause %p\n", pTerm)); for(pOrTerm=pOrWC->a; pOrTermeOperator & WO_AND)!=0 ){ sSubBuild.pWC = &pOrTerm->u.pAndInfo->wc; }else if( pOrTerm->leftCursor==iCur ){ tempWC.pWInfo = pWC->pWInfo; tempWC.pOuter = pWC; tempWC.op = TK_AND; tempWC.nTerm = 1; tempWC.a = pOrTerm; sSubBuild.pWC = &tempWC; }else{ continue; } sCur.n = 0; #ifdef WHERETRACE_ENABLED WHERETRACE(0x200, ("OR-term %d of %p has %d subterms:\n", (int)(pOrTerm-pOrWC->a), pTerm, sSubBuild.pWC->nTerm)); if( sqlite3WhereTrace & 0x400 ){ sqlite3WhereClausePrint(sSubBuild.pWC); } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pItem->pTab) ){ rc = whereLoopAddVirtual(&sSubBuild, mPrereq, mUnusable); }else #endif { rc = whereLoopAddBtree(&sSubBuild, mPrereq); } if( rc==SQLITE_OK ){ rc = whereLoopAddOr(&sSubBuild, mPrereq, mUnusable); } assert( rc==SQLITE_OK || rc==SQLITE_DONE || sCur.n==0 ); testcase( rc==SQLITE_DONE ); if( sCur.n==0 ){ sSum.n = 0; break; }else if( once ){ whereOrMove(&sSum, &sCur); once = 0; }else{ WhereOrSet sPrev; whereOrMove(&sPrev, &sSum); sSum.n = 0; for(i=0; inLTerm = 1; pNew->aLTerm[0] = pTerm; pNew->wsFlags = WHERE_MULTI_OR; pNew->rSetup = 0; pNew->iSortIdx = 0; memset(&pNew->u, 0, sizeof(pNew->u)); for(i=0; rc==SQLITE_OK && irRun = sSum.a[i].rRun + 1; pNew->nOut = sSum.a[i].nOut; pNew->prereq = sSum.a[i].prereq; rc = whereLoopInsert(pBuilder, pNew); } WHERETRACE(0x200, ("End processing OR-clause %p\n", pTerm)); } } return rc; } /* ** Add all WhereLoop objects for all tables */ static int whereLoopAddAll(WhereLoopBuilder *pBuilder){ WhereInfo *pWInfo = pBuilder->pWInfo; Bitmask mPrereq = 0; Bitmask mPrior = 0; int iTab; SrcList *pTabList = pWInfo->pTabList; struct SrcList_item *pItem; struct SrcList_item *pEnd = &pTabList->a[pWInfo->nLevel]; sqlite3 *db = pWInfo->pParse->db; int rc = SQLITE_OK; WhereLoop *pNew; /* Loop over the tables in the join, from left to right */ pNew = pBuilder->pNew; whereLoopInit(pNew); pBuilder->iPlanLimit = SQLITE_QUERY_PLANNER_LIMIT; for(iTab=0, pItem=pTabList->a; pItemiTab = iTab; pBuilder->iPlanLimit += SQLITE_QUERY_PLANNER_LIMIT_INCR; pNew->maskSelf = sqlite3WhereGetMask(&pWInfo->sMaskSet, pItem->iCursor); if( (pItem->fg.jointype & (JT_LEFT|JT_CROSS))!=0 ){ /* This condition is true when pItem is the FROM clause term on the ** right-hand-side of a LEFT or CROSS JOIN. */ mPrereq = mPrior; }else{ mPrereq = 0; } #ifndef SQLITE_OMIT_VIRTUALTABLE if( IsVirtual(pItem->pTab) ){ struct SrcList_item *p; for(p=&pItem[1]; pfg.jointype & (JT_LEFT|JT_CROSS)) ){ mUnusable |= sqlite3WhereGetMask(&pWInfo->sMaskSet, p->iCursor); } } rc = whereLoopAddVirtual(pBuilder, mPrereq, mUnusable); }else #endif /* SQLITE_OMIT_VIRTUALTABLE */ { rc = whereLoopAddBtree(pBuilder, mPrereq); } if( rc==SQLITE_OK && pBuilder->pWC->hasOr ){ rc = whereLoopAddOr(pBuilder, mPrereq, mUnusable); } mPrior |= pNew->maskSelf; if( rc || db->mallocFailed ){ if( rc==SQLITE_DONE ){ /* We hit the query planner search limit set by iPlanLimit */ sqlite3_log(SQLITE_WARNING, "abbreviated query algorithm search"); rc = SQLITE_OK; }else{ break; } } } whereLoopClear(db, pNew); return rc; } /* ** Examine a WherePath (with the addition of the extra WhereLoop of the 6th ** parameters) to see if it outputs rows in the requested ORDER BY ** (or GROUP BY) without requiring a separate sort operation. Return N: ** ** N>0: N terms of the ORDER BY clause are satisfied ** N==0: No terms of the ORDER BY clause are satisfied ** N<0: Unknown yet how many terms of ORDER BY might be satisfied. ** ** Note that processing for WHERE_GROUPBY and WHERE_DISTINCTBY is not as ** strict. With GROUP BY and DISTINCT the only requirement is that ** equivalent rows appear immediately adjacent to one another. GROUP BY ** and DISTINCT do not require rows to appear in any particular order as long ** as equivalent rows are grouped together. Thus for GROUP BY and DISTINCT ** the pOrderBy terms can be matched in any order. With ORDER BY, the ** pOrderBy terms must be matched in strict left-to-right order. */ static i8 wherePathSatisfiesOrderBy( WhereInfo *pWInfo, /* The WHERE clause */ ExprList *pOrderBy, /* ORDER BY or GROUP BY or DISTINCT clause to check */ WherePath *pPath, /* The WherePath to check */ u16 wctrlFlags, /* WHERE_GROUPBY or _DISTINCTBY or _ORDERBY_LIMIT */ u16 nLoop, /* Number of entries in pPath->aLoop[] */ WhereLoop *pLast, /* Add this WhereLoop to the end of pPath->aLoop[] */ Bitmask *pRevMask /* OUT: Mask of WhereLoops to run in reverse order */ ){ u8 revSet; /* True if rev is known */ u8 rev; /* Composite sort order */ u8 revIdx; /* Index sort order */ u8 isOrderDistinct; /* All prior WhereLoops are order-distinct */ u8 distinctColumns; /* True if the loop has UNIQUE NOT NULL columns */ u8 isMatch; /* iColumn matches a term of the ORDER BY clause */ u16 eqOpMask; /* Allowed equality operators */ u16 nKeyCol; /* Number of key columns in pIndex */ u16 nColumn; /* Total number of ordered columns in the index */ u16 nOrderBy; /* Number terms in the ORDER BY clause */ int iLoop; /* Index of WhereLoop in pPath being processed */ int i, j; /* Loop counters */ int iCur; /* Cursor number for current WhereLoop */ int iColumn; /* A column number within table iCur */ WhereLoop *pLoop = 0; /* Current WhereLoop being processed. */ WhereTerm *pTerm; /* A single term of the WHERE clause */ Expr *pOBExpr; /* An expression from the ORDER BY clause */ CollSeq *pColl; /* COLLATE function from an ORDER BY clause term */ Index *pIndex; /* The index associated with pLoop */ sqlite3 *db = pWInfo->pParse->db; /* Database connection */ Bitmask obSat = 0; /* Mask of ORDER BY terms satisfied so far */ Bitmask obDone; /* Mask of all ORDER BY terms */ Bitmask orderDistinctMask; /* Mask of all well-ordered loops */ Bitmask ready; /* Mask of inner loops */ /* ** We say the WhereLoop is "one-row" if it generates no more than one ** row of output. A WhereLoop is one-row if all of the following are true: ** (a) All index columns match with WHERE_COLUMN_EQ. ** (b) The index is unique ** Any WhereLoop with an WHERE_COLUMN_EQ constraint on the rowid is one-row. ** Every one-row WhereLoop will have the WHERE_ONEROW bit set in wsFlags. ** ** We say the WhereLoop is "order-distinct" if the set of columns from ** that WhereLoop that are in the ORDER BY clause are different for every ** row of the WhereLoop. Every one-row WhereLoop is automatically ** order-distinct. A WhereLoop that has no columns in the ORDER BY clause ** is not order-distinct. To be order-distinct is not quite the same as being ** UNIQUE since a UNIQUE column or index can have multiple rows that ** are NULL and NULL values are equivalent for the purpose of order-distinct. ** To be order-distinct, the columns must be UNIQUE and NOT NULL. ** ** The rowid for a table is always UNIQUE and NOT NULL so whenever the ** rowid appears in the ORDER BY clause, the corresponding WhereLoop is ** automatically order-distinct. */ assert( pOrderBy!=0 ); if( nLoop && OptimizationDisabled(db, SQLITE_OrderByIdxJoin) ) return 0; nOrderBy = pOrderBy->nExpr; testcase( nOrderBy==BMS-1 ); if( nOrderBy>BMS-1 ) return 0; /* Cannot optimize overly large ORDER BYs */ isOrderDistinct = 1; obDone = MASKBIT(nOrderBy)-1; orderDistinctMask = 0; ready = 0; eqOpMask = WO_EQ | WO_IS | WO_ISNULL; if( wctrlFlags & (WHERE_ORDERBY_LIMIT|WHERE_ORDERBY_MAX|WHERE_ORDERBY_MIN) ){ eqOpMask |= WO_IN; } for(iLoop=0; isOrderDistinct && obSat0 ) ready |= pLoop->maskSelf; if( iLoopaLoop[iLoop]; if( wctrlFlags & WHERE_ORDERBY_LIMIT ) continue; }else{ pLoop = pLast; } if( pLoop->wsFlags & WHERE_VIRTUALTABLE ){ if( pLoop->u.vtab.isOrdered && (wctrlFlags & WHERE_DISTINCTBY)==0 ){ obSat = obDone; } break; }else if( wctrlFlags & WHERE_DISTINCTBY ){ pLoop->u.btree.nDistinctCol = 0; } iCur = pWInfo->pTabList->a[pLoop->iTab].iCursor; /* Mark off any ORDER BY term X that is a column in the table of ** the current loop for which there is term in the WHERE ** clause of the form X IS NULL or X=? that reference only outer ** loops. */ for(i=0; ia[i].pExpr); if( pOBExpr->op!=TK_COLUMN ) continue; if( pOBExpr->iTable!=iCur ) continue; pTerm = sqlite3WhereFindTerm(&pWInfo->sWC, iCur, pOBExpr->iColumn, ~ready, eqOpMask, 0); if( pTerm==0 ) continue; if( pTerm->eOperator==WO_IN ){ /* IN terms are only valid for sorting in the ORDER BY LIMIT ** optimization, and then only if they are actually used ** by the query plan */ assert( wctrlFlags & (WHERE_ORDERBY_LIMIT|WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX) ); for(j=0; jnLTerm && pTerm!=pLoop->aLTerm[j]; j++){} if( j>=pLoop->nLTerm ) continue; } if( (pTerm->eOperator&(WO_EQ|WO_IS))!=0 && pOBExpr->iColumn>=0 ){ Parse *pParse = pWInfo->pParse; CollSeq *pColl1 = sqlite3ExprNNCollSeq(pParse, pOrderBy->a[i].pExpr); CollSeq *pColl2 = sqlite3ExprCompareCollSeq(pParse, pTerm->pExpr); assert( pColl1 ); if( pColl2==0 || sqlite3StrICmp(pColl1->zName, pColl2->zName) ){ continue; } testcase( pTerm->pExpr->op==TK_IS ); } obSat |= MASKBIT(i); } if( (pLoop->wsFlags & WHERE_ONEROW)==0 ){ if( pLoop->wsFlags & WHERE_IPK ){ pIndex = 0; nKeyCol = 0; nColumn = 1; }else if( (pIndex = pLoop->u.btree.pIndex)==0 || pIndex->bUnordered ){ return 0; }else{ nKeyCol = pIndex->nKeyCol; nColumn = pIndex->nColumn; assert( nColumn==nKeyCol+1 || !HasRowid(pIndex->pTable) ); assert( pIndex->aiColumn[nColumn-1]==XN_ROWID || !HasRowid(pIndex->pTable)); isOrderDistinct = IsUniqueIndex(pIndex) && (pLoop->wsFlags & WHERE_SKIPSCAN)==0; } /* Loop through all columns of the index and deal with the ones ** that are not constrained by == or IN. */ rev = revSet = 0; distinctColumns = 0; for(j=0; j=pLoop->u.btree.nEq || (pLoop->aLTerm[j]==0)==(jnSkip) ); if( ju.btree.nEq && j>=pLoop->nSkip ){ u16 eOp = pLoop->aLTerm[j]->eOperator; /* Skip over == and IS and ISNULL terms. (Also skip IN terms when ** doing WHERE_ORDERBY_LIMIT processing). Except, IS and ISNULL ** terms imply that the index is not UNIQUE NOT NULL in which case ** the loop need to be marked as not order-distinct because it can ** have repeated NULL rows. ** ** If the current term is a column of an ((?,?) IN (SELECT...)) ** expression for which the SELECT returns more than one column, ** check that it is the only column used by this loop. Otherwise, ** if it is one of two or more, none of the columns can be ** considered to match an ORDER BY term. */ if( (eOp & eqOpMask)!=0 ){ if( eOp & (WO_ISNULL|WO_IS) ){ testcase( eOp & WO_ISNULL ); testcase( eOp & WO_IS ); testcase( isOrderDistinct ); isOrderDistinct = 0; } continue; }else if( ALWAYS(eOp & WO_IN) ){ /* ALWAYS() justification: eOp is an equality operator due to the ** ju.btree.nEq constraint above. Any equality other ** than WO_IN is captured by the previous "if". So this one ** always has to be WO_IN. */ Expr *pX = pLoop->aLTerm[j]->pExpr; for(i=j+1; iu.btree.nEq; i++){ if( pLoop->aLTerm[i]->pExpr==pX ){ assert( (pLoop->aLTerm[i]->eOperator & WO_IN) ); bOnce = 0; break; } } } } /* Get the column number in the table (iColumn) and sort order ** (revIdx) for the j-th column of the index. */ if( pIndex ){ iColumn = pIndex->aiColumn[j]; revIdx = pIndex->aSortOrder[j] & KEYINFO_ORDER_DESC; if( iColumn==pIndex->pTable->iPKey ) iColumn = XN_ROWID; }else{ iColumn = XN_ROWID; revIdx = 0; } /* An unconstrained column that might be NULL means that this ** WhereLoop is not well-ordered */ if( isOrderDistinct && iColumn>=0 && j>=pLoop->u.btree.nEq && pIndex->pTable->aCol[iColumn].notNull==0 ){ isOrderDistinct = 0; } /* Find the ORDER BY term that corresponds to the j-th column ** of the index and mark that ORDER BY term off */ isMatch = 0; for(i=0; bOnce && ia[i].pExpr); testcase( wctrlFlags & WHERE_GROUPBY ); testcase( wctrlFlags & WHERE_DISTINCTBY ); if( (wctrlFlags & (WHERE_GROUPBY|WHERE_DISTINCTBY))==0 ) bOnce = 0; if( iColumn>=XN_ROWID ){ if( pOBExpr->op!=TK_COLUMN ) continue; if( pOBExpr->iTable!=iCur ) continue; if( pOBExpr->iColumn!=iColumn ) continue; }else{ Expr *pIdxExpr = pIndex->aColExpr->a[j].pExpr; if( sqlite3ExprCompareSkip(pOBExpr, pIdxExpr, iCur) ){ continue; } } if( iColumn!=XN_ROWID ){ pColl = sqlite3ExprNNCollSeq(pWInfo->pParse, pOrderBy->a[i].pExpr); if( sqlite3StrICmp(pColl->zName, pIndex->azColl[j])!=0 ) continue; } if( wctrlFlags & WHERE_DISTINCTBY ){ pLoop->u.btree.nDistinctCol = j+1; } isMatch = 1; break; } if( isMatch && (wctrlFlags & WHERE_GROUPBY)==0 ){ /* Make sure the sort order is compatible in an ORDER BY clause. ** Sort order is irrelevant for a GROUP BY clause. */ if( revSet ){ if( (rev ^ revIdx)!=(pOrderBy->a[i].sortFlags&KEYINFO_ORDER_DESC) ){ isMatch = 0; } }else{ rev = revIdx ^ (pOrderBy->a[i].sortFlags & KEYINFO_ORDER_DESC); if( rev ) *pRevMask |= MASKBIT(iLoop); revSet = 1; } } if( isMatch && (pOrderBy->a[i].sortFlags & KEYINFO_ORDER_BIGNULL) ){ if( j==pLoop->u.btree.nEq ){ pLoop->wsFlags |= WHERE_BIGNULL_SORT; }else{ isMatch = 0; } } if( isMatch ){ if( iColumn==XN_ROWID ){ testcase( distinctColumns==0 ); distinctColumns = 1; } obSat |= MASKBIT(i); }else{ /* No match found */ if( j==0 || jmaskSelf; for(i=0; ia[i].pExpr; mTerm = sqlite3WhereExprUsage(&pWInfo->sMaskSet,p); if( mTerm==0 && !sqlite3ExprIsConstant(p) ) continue; if( (mTerm&~orderDistinctMask)==0 ){ obSat |= MASKBIT(i); } } } } /* End the loop over all WhereLoops from outer-most down to inner-most */ if( obSat==obDone ) return (i8)nOrderBy; if( !isOrderDistinct ){ for(i=nOrderBy-1; i>0; i--){ Bitmask m = MASKBIT(i) - 1; if( (obSat&m)==m ) return i; } return 0; } return -1; } /* ** If the WHERE_GROUPBY flag is set in the mask passed to sqlite3WhereBegin(), ** the planner assumes that the specified pOrderBy list is actually a GROUP ** BY clause - and so any order that groups rows as required satisfies the ** request. ** ** Normally, in this case it is not possible for the caller to determine ** whether or not the rows are really being delivered in sorted order, or ** just in some other order that provides the required grouping. However, ** if the WHERE_SORTBYGROUP flag is also passed to sqlite3WhereBegin(), then ** this function may be called on the returned WhereInfo object. It returns ** true if the rows really will be sorted in the specified order, or false ** otherwise. ** ** For example, assuming: ** ** CREATE INDEX i1 ON t1(x, Y); ** ** then ** ** SELECT * FROM t1 GROUP BY x,y ORDER BY x,y; -- IsSorted()==1 ** SELECT * FROM t1 GROUP BY y,x ORDER BY y,x; -- IsSorted()==0 */ SQLITE_PRIVATE int sqlite3WhereIsSorted(WhereInfo *pWInfo){ assert( pWInfo->wctrlFlags & WHERE_GROUPBY ); assert( pWInfo->wctrlFlags & WHERE_SORTBYGROUP ); return pWInfo->sorted; } #ifdef WHERETRACE_ENABLED /* For debugging use only: */ static const char *wherePathName(WherePath *pPath, int nLoop, WhereLoop *pLast){ static char zName[65]; int i; for(i=0; iaLoop[i]->cId; } if( pLast ) zName[i++] = pLast->cId; zName[i] = 0; return zName; } #endif /* ** Return the cost of sorting nRow rows, assuming that the keys have ** nOrderby columns and that the first nSorted columns are already in ** order. */ static LogEst whereSortingCost( WhereInfo *pWInfo, LogEst nRow, int nOrderBy, int nSorted ){ /* TUNING: Estimated cost of a full external sort, where N is ** the number of rows to sort is: ** ** cost = (3.0 * N * log(N)). ** ** Or, if the order-by clause has X terms but only the last Y ** terms are out of order, then block-sorting will reduce the ** sorting cost to: ** ** cost = (3.0 * N * log(N)) * (Y/X) ** ** The (Y/X) term is implemented using stack variable rScale ** below. */ LogEst rScale, rSortCost; assert( nOrderBy>0 && 66==sqlite3LogEst(100) ); rScale = sqlite3LogEst((nOrderBy-nSorted)*100/nOrderBy) - 66; rSortCost = nRow + rScale + 16; /* Multiple by log(M) where M is the number of output rows. ** Use the LIMIT for M if it is smaller */ if( (pWInfo->wctrlFlags & WHERE_USE_LIMIT)!=0 && pWInfo->iLimitiLimit; } rSortCost += estLog(nRow); return rSortCost; } /* ** Given the list of WhereLoop objects at pWInfo->pLoops, this routine ** attempts to find the lowest cost path that visits each WhereLoop ** once. This path is then loaded into the pWInfo->a[].pWLoop fields. ** ** Assume that the total number of output rows that will need to be sorted ** will be nRowEst (in the 10*log2 representation). Or, ignore sorting ** costs if nRowEst==0. ** ** Return SQLITE_OK on success or SQLITE_NOMEM of a memory allocation ** error occurs. */ static int wherePathSolver(WhereInfo *pWInfo, LogEst nRowEst){ int mxChoice; /* Maximum number of simultaneous paths tracked */ int nLoop; /* Number of terms in the join */ Parse *pParse; /* Parsing context */ sqlite3 *db; /* The database connection */ int iLoop; /* Loop counter over the terms of the join */ int ii, jj; /* Loop counters */ int mxI = 0; /* Index of next entry to replace */ int nOrderBy; /* Number of ORDER BY clause terms */ LogEst mxCost = 0; /* Maximum cost of a set of paths */ LogEst mxUnsorted = 0; /* Maximum unsorted cost of a set of path */ int nTo, nFrom; /* Number of valid entries in aTo[] and aFrom[] */ WherePath *aFrom; /* All nFrom paths at the previous level */ WherePath *aTo; /* The nTo best paths at the current level */ WherePath *pFrom; /* An element of aFrom[] that we are working on */ WherePath *pTo; /* An element of aTo[] that we are working on */ WhereLoop *pWLoop; /* One of the WhereLoop objects */ WhereLoop **pX; /* Used to divy up the pSpace memory */ LogEst *aSortCost = 0; /* Sorting and partial sorting costs */ char *pSpace; /* Temporary memory used by this routine */ int nSpace; /* Bytes of space allocated at pSpace */ pParse = pWInfo->pParse; db = pParse->db; nLoop = pWInfo->nLevel; /* TUNING: For simple queries, only the best path is tracked. ** For 2-way joins, the 5 best paths are followed. ** For joins of 3 or more tables, track the 10 best paths */ mxChoice = (nLoop<=1) ? 1 : (nLoop==2 ? 5 : 10); assert( nLoop<=pWInfo->pTabList->nSrc ); WHERETRACE(0x002, ("---- begin solver. (nRowEst=%d)\n", nRowEst)); /* If nRowEst is zero and there is an ORDER BY clause, ignore it. In this ** case the purpose of this call is to estimate the number of rows returned ** by the overall query. Once this estimate has been obtained, the caller ** will invoke this function a second time, passing the estimate as the ** nRowEst parameter. */ if( pWInfo->pOrderBy==0 || nRowEst==0 ){ nOrderBy = 0; }else{ nOrderBy = pWInfo->pOrderBy->nExpr; } /* Allocate and initialize space for aTo, aFrom and aSortCost[] */ nSpace = (sizeof(WherePath)+sizeof(WhereLoop*)*nLoop)*mxChoice*2; nSpace += sizeof(LogEst) * nOrderBy; pSpace = sqlite3DbMallocRawNN(db, nSpace); if( pSpace==0 ) return SQLITE_NOMEM_BKPT; aTo = (WherePath*)pSpace; aFrom = aTo+mxChoice; memset(aFrom, 0, sizeof(aFrom[0])); pX = (WhereLoop**)(aFrom+mxChoice); for(ii=mxChoice*2, pFrom=aTo; ii>0; ii--, pFrom++, pX += nLoop){ pFrom->aLoop = pX; } if( nOrderBy ){ /* If there is an ORDER BY clause and it is not being ignored, set up ** space for the aSortCost[] array. Each element of the aSortCost array ** is either zero - meaning it has not yet been initialized - or the ** cost of sorting nRowEst rows of data where the first X terms of ** the ORDER BY clause are already in order, where X is the array ** index. */ aSortCost = (LogEst*)pX; memset(aSortCost, 0, sizeof(LogEst) * nOrderBy); } assert( aSortCost==0 || &pSpace[nSpace]==(char*)&aSortCost[nOrderBy] ); assert( aSortCost!=0 || &pSpace[nSpace]==(char*)pX ); /* Seed the search with a single WherePath containing zero WhereLoops. ** ** TUNING: Do not let the number of iterations go above 28. If the cost ** of computing an automatic index is not paid back within the first 28 ** rows, then do not use the automatic index. */ aFrom[0].nRow = MIN(pParse->nQueryLoop, 48); assert( 48==sqlite3LogEst(28) ); nFrom = 1; assert( aFrom[0].isOrdered==0 ); if( nOrderBy ){ /* If nLoop is zero, then there are no FROM terms in the query. Since ** in this case the query may return a maximum of one row, the results ** are already in the requested order. Set isOrdered to nOrderBy to ** indicate this. Or, if nLoop is greater than zero, set isOrdered to ** -1, indicating that the result set may or may not be ordered, ** depending on the loops added to the current plan. */ aFrom[0].isOrdered = nLoop>0 ? -1 : nOrderBy; } /* Compute successively longer WherePaths using the previous generation ** of WherePaths as the basis for the next. Keep track of the mxChoice ** best paths at each generation */ for(iLoop=0; iLooppLoops; pWLoop; pWLoop=pWLoop->pNextLoop){ LogEst nOut; /* Rows visited by (pFrom+pWLoop) */ LogEst rCost; /* Cost of path (pFrom+pWLoop) */ LogEst rUnsorted; /* Unsorted cost of (pFrom+pWLoop) */ i8 isOrdered = pFrom->isOrdered; /* isOrdered for (pFrom+pWLoop) */ Bitmask maskNew; /* Mask of src visited by (..) */ Bitmask revMask = 0; /* Mask of rev-order loops for (..) */ if( (pWLoop->prereq & ~pFrom->maskLoop)!=0 ) continue; if( (pWLoop->maskSelf & pFrom->maskLoop)!=0 ) continue; if( (pWLoop->wsFlags & WHERE_AUTO_INDEX)!=0 && pFrom->nRow<3 ){ /* Do not use an automatic index if the this loop is expected ** to run less than 1.25 times. It is tempting to also exclude ** automatic index usage on an outer loop, but sometimes an automatic ** index is useful in the outer loop of a correlated subquery. */ assert( 10==sqlite3LogEst(2) ); continue; } /* At this point, pWLoop is a candidate to be the next loop. ** Compute its cost */ rUnsorted = sqlite3LogEstAdd(pWLoop->rSetup,pWLoop->rRun + pFrom->nRow); rUnsorted = sqlite3LogEstAdd(rUnsorted, pFrom->rUnsorted); nOut = pFrom->nRow + pWLoop->nOut; maskNew = pFrom->maskLoop | pWLoop->maskSelf; if( isOrdered<0 ){ isOrdered = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pOrderBy, pFrom, pWInfo->wctrlFlags, iLoop, pWLoop, &revMask); }else{ revMask = pFrom->revLoop; } if( isOrdered>=0 && isOrderedisOrdered^isOrdered)&0x80)==0" is equivalent ** to (pTo->isOrdered==(-1))==(isOrdered==(-1))" for the range ** of legal values for isOrdered, -1..64. */ for(jj=0, pTo=aTo; jjmaskLoop==maskNew && ((pTo->isOrdered^isOrdered)&0x80)==0 ){ testcase( jj==nTo-1 ); break; } } if( jj>=nTo ){ /* None of the existing best-so-far paths match the candidate. */ if( nTo>=mxChoice && (rCost>mxCost || (rCost==mxCost && rUnsorted>=mxUnsorted)) ){ /* The current candidate is no better than any of the mxChoice ** paths currently in the best-so-far buffer. So discard ** this candidate as not viable. */ #ifdef WHERETRACE_ENABLED /* 0x4 */ if( sqlite3WhereTrace&0x4 ){ sqlite3DebugPrintf("Skip %s cost=%-3d,%3d,%3d order=%c\n", wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted, isOrdered>=0 ? isOrdered+'0' : '?'); } #endif continue; } /* If we reach this points it means that the new candidate path ** needs to be added to the set of best-so-far paths. */ if( nTo=0 ? isOrdered+'0' : '?'); } #endif }else{ /* Control reaches here if best-so-far path pTo=aTo[jj] covers the ** same set of loops and has the same isOrdered setting as the ** candidate path. Check to see if the candidate should replace ** pTo or if the candidate should be skipped. ** ** The conditional is an expanded vector comparison equivalent to: ** (pTo->rCost,pTo->nRow,pTo->rUnsorted) <= (rCost,nOut,rUnsorted) */ if( pTo->rCostrCost==rCost && (pTo->nRownRow==nOut && pTo->rUnsorted<=rUnsorted) ) ) ){ #ifdef WHERETRACE_ENABLED /* 0x4 */ if( sqlite3WhereTrace&0x4 ){ sqlite3DebugPrintf( "Skip %s cost=%-3d,%3d,%3d order=%c", wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted, isOrdered>=0 ? isOrdered+'0' : '?'); sqlite3DebugPrintf(" vs %s cost=%-3d,%3d,%3d order=%c\n", wherePathName(pTo, iLoop+1, 0), pTo->rCost, pTo->nRow, pTo->rUnsorted, pTo->isOrdered>=0 ? pTo->isOrdered+'0' : '?'); } #endif /* Discard the candidate path from further consideration */ testcase( pTo->rCost==rCost ); continue; } testcase( pTo->rCost==rCost+1 ); /* Control reaches here if the candidate path is better than the ** pTo path. Replace pTo with the candidate. */ #ifdef WHERETRACE_ENABLED /* 0x4 */ if( sqlite3WhereTrace&0x4 ){ sqlite3DebugPrintf( "Update %s cost=%-3d,%3d,%3d order=%c", wherePathName(pFrom, iLoop, pWLoop), rCost, nOut, rUnsorted, isOrdered>=0 ? isOrdered+'0' : '?'); sqlite3DebugPrintf(" was %s cost=%-3d,%3d,%3d order=%c\n", wherePathName(pTo, iLoop+1, 0), pTo->rCost, pTo->nRow, pTo->rUnsorted, pTo->isOrdered>=0 ? pTo->isOrdered+'0' : '?'); } #endif } /* pWLoop is a winner. Add it to the set of best so far */ pTo->maskLoop = pFrom->maskLoop | pWLoop->maskSelf; pTo->revLoop = revMask; pTo->nRow = nOut; pTo->rCost = rCost; pTo->rUnsorted = rUnsorted; pTo->isOrdered = isOrdered; memcpy(pTo->aLoop, pFrom->aLoop, sizeof(WhereLoop*)*iLoop); pTo->aLoop[iLoop] = pWLoop; if( nTo>=mxChoice ){ mxI = 0; mxCost = aTo[0].rCost; mxUnsorted = aTo[0].nRow; for(jj=1, pTo=&aTo[1]; jjrCost>mxCost || (pTo->rCost==mxCost && pTo->rUnsorted>mxUnsorted) ){ mxCost = pTo->rCost; mxUnsorted = pTo->rUnsorted; mxI = jj; } } } } } #ifdef WHERETRACE_ENABLED /* >=2 */ if( sqlite3WhereTrace & 0x02 ){ sqlite3DebugPrintf("---- after round %d ----\n", iLoop); for(ii=0, pTo=aTo; iirCost, pTo->nRow, pTo->isOrdered>=0 ? (pTo->isOrdered+'0') : '?'); if( pTo->isOrdered>0 ){ sqlite3DebugPrintf(" rev=0x%llx\n", pTo->revLoop); }else{ sqlite3DebugPrintf("\n"); } } } #endif /* Swap the roles of aFrom and aTo for the next generation */ pFrom = aTo; aTo = aFrom; aFrom = pFrom; nFrom = nTo; } if( nFrom==0 ){ sqlite3ErrorMsg(pParse, "no query solution"); sqlite3DbFreeNN(db, pSpace); return SQLITE_ERROR; } /* Find the lowest cost path. pFrom will be left pointing to that path */ pFrom = aFrom; for(ii=1; iirCost>aFrom[ii].rCost ) pFrom = &aFrom[ii]; } assert( pWInfo->nLevel==nLoop ); /* Load the lowest cost path into pWInfo */ for(iLoop=0; iLoopa + iLoop; pLevel->pWLoop = pWLoop = pFrom->aLoop[iLoop]; pLevel->iFrom = pWLoop->iTab; pLevel->iTabCur = pWInfo->pTabList->a[pLevel->iFrom].iCursor; } if( (pWInfo->wctrlFlags & WHERE_WANT_DISTINCT)!=0 && (pWInfo->wctrlFlags & WHERE_DISTINCTBY)==0 && pWInfo->eDistinct==WHERE_DISTINCT_NOOP && nRowEst ){ Bitmask notUsed; int rc = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pResultSet, pFrom, WHERE_DISTINCTBY, nLoop-1, pFrom->aLoop[nLoop-1], ¬Used); if( rc==pWInfo->pResultSet->nExpr ){ pWInfo->eDistinct = WHERE_DISTINCT_ORDERED; } } pWInfo->bOrderedInnerLoop = 0; if( pWInfo->pOrderBy ){ if( pWInfo->wctrlFlags & WHERE_DISTINCTBY ){ if( pFrom->isOrdered==pWInfo->pOrderBy->nExpr ){ pWInfo->eDistinct = WHERE_DISTINCT_ORDERED; } }else{ pWInfo->nOBSat = pFrom->isOrdered; pWInfo->revMask = pFrom->revLoop; if( pWInfo->nOBSat<=0 ){ pWInfo->nOBSat = 0; if( nLoop>0 ){ u32 wsFlags = pFrom->aLoop[nLoop-1]->wsFlags; if( (wsFlags & WHERE_ONEROW)==0 && (wsFlags&(WHERE_IPK|WHERE_COLUMN_IN))!=(WHERE_IPK|WHERE_COLUMN_IN) ){ Bitmask m = 0; int rc = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pOrderBy, pFrom, WHERE_ORDERBY_LIMIT, nLoop-1, pFrom->aLoop[nLoop-1], &m); testcase( wsFlags & WHERE_IPK ); testcase( wsFlags & WHERE_COLUMN_IN ); if( rc==pWInfo->pOrderBy->nExpr ){ pWInfo->bOrderedInnerLoop = 1; pWInfo->revMask = m; } } } }else if( nLoop && pWInfo->nOBSat==1 && (pWInfo->wctrlFlags & (WHERE_ORDERBY_MIN|WHERE_ORDERBY_MAX))!=0 ){ pWInfo->bOrderedInnerLoop = 1; } } if( (pWInfo->wctrlFlags & WHERE_SORTBYGROUP) && pWInfo->nOBSat==pWInfo->pOrderBy->nExpr && nLoop>0 ){ Bitmask revMask = 0; int nOrder = wherePathSatisfiesOrderBy(pWInfo, pWInfo->pOrderBy, pFrom, 0, nLoop-1, pFrom->aLoop[nLoop-1], &revMask ); assert( pWInfo->sorted==0 ); if( nOrder==pWInfo->pOrderBy->nExpr ){ pWInfo->sorted = 1; pWInfo->revMask = revMask; } } } pWInfo->nRowOut = pFrom->nRow; /* Free temporary memory and return success */ sqlite3DbFreeNN(db, pSpace); return SQLITE_OK; } /* ** Most queries use only a single table (they are not joins) and have ** simple == constraints against indexed fields. This routine attempts ** to plan those simple cases using much less ceremony than the ** general-purpose query planner, and thereby yield faster sqlite3_prepare() ** times for the common case. ** ** Return non-zero on success, if this query can be handled by this ** no-frills query planner. Return zero if this query needs the ** general-purpose query planner. */ static int whereShortCut(WhereLoopBuilder *pBuilder){ WhereInfo *pWInfo; struct SrcList_item *pItem; WhereClause *pWC; WhereTerm *pTerm; WhereLoop *pLoop; int iCur; int j; Table *pTab; Index *pIdx; pWInfo = pBuilder->pWInfo; if( pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE ) return 0; assert( pWInfo->pTabList->nSrc>=1 ); pItem = pWInfo->pTabList->a; pTab = pItem->pTab; if( IsVirtual(pTab) ) return 0; if( pItem->fg.isIndexedBy ) return 0; iCur = pItem->iCursor; pWC = &pWInfo->sWC; pLoop = pBuilder->pNew; pLoop->wsFlags = 0; pLoop->nSkip = 0; pTerm = sqlite3WhereFindTerm(pWC, iCur, -1, 0, WO_EQ|WO_IS, 0); if( pTerm ){ testcase( pTerm->eOperator & WO_IS ); pLoop->wsFlags = WHERE_COLUMN_EQ|WHERE_IPK|WHERE_ONEROW; pLoop->aLTerm[0] = pTerm; pLoop->nLTerm = 1; pLoop->u.btree.nEq = 1; /* TUNING: Cost of a rowid lookup is 10 */ pLoop->rRun = 33; /* 33==sqlite3LogEst(10) */ }else{ for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){ int opMask; assert( pLoop->aLTermSpace==pLoop->aLTerm ); if( !IsUniqueIndex(pIdx) || pIdx->pPartIdxWhere!=0 || pIdx->nKeyCol>ArraySize(pLoop->aLTermSpace) ) continue; opMask = pIdx->uniqNotNull ? (WO_EQ|WO_IS) : WO_EQ; for(j=0; jnKeyCol; j++){ pTerm = sqlite3WhereFindTerm(pWC, iCur, j, 0, opMask, pIdx); if( pTerm==0 ) break; testcase( pTerm->eOperator & WO_IS ); pLoop->aLTerm[j] = pTerm; } if( j!=pIdx->nKeyCol ) continue; pLoop->wsFlags = WHERE_COLUMN_EQ|WHERE_ONEROW|WHERE_INDEXED; if( pIdx->isCovering || (pItem->colUsed & pIdx->colNotIdxed)==0 ){ pLoop->wsFlags |= WHERE_IDX_ONLY; } pLoop->nLTerm = j; pLoop->u.btree.nEq = j; pLoop->u.btree.pIndex = pIdx; /* TUNING: Cost of a unique index lookup is 15 */ pLoop->rRun = 39; /* 39==sqlite3LogEst(15) */ break; } } if( pLoop->wsFlags ){ pLoop->nOut = (LogEst)1; pWInfo->a[0].pWLoop = pLoop; assert( pWInfo->sMaskSet.n==1 && iCur==pWInfo->sMaskSet.ix[0] ); pLoop->maskSelf = 1; /* sqlite3WhereGetMask(&pWInfo->sMaskSet, iCur); */ pWInfo->a[0].iTabCur = iCur; pWInfo->nRowOut = 1; if( pWInfo->pOrderBy ) pWInfo->nOBSat = pWInfo->pOrderBy->nExpr; if( pWInfo->wctrlFlags & WHERE_WANT_DISTINCT ){ pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; } #ifdef SQLITE_DEBUG pLoop->cId = '0'; #endif return 1; } return 0; } /* ** Helper function for exprIsDeterministic(). */ static int exprNodeIsDeterministic(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_FUNCTION && ExprHasProperty(pExpr, EP_ConstFunc)==0 ){ pWalker->eCode = 0; return WRC_Abort; } return WRC_Continue; } /* ** Return true if the expression contains no non-deterministic SQL ** functions. Do not consider non-deterministic SQL functions that are ** part of sub-select statements. */ static int exprIsDeterministic(Expr *p){ Walker w; memset(&w, 0, sizeof(w)); w.eCode = 1; w.xExprCallback = exprNodeIsDeterministic; w.xSelectCallback = sqlite3SelectWalkFail; sqlite3WalkExpr(&w, p); return w.eCode; } #ifdef WHERETRACE_ENABLED /* ** Display all WhereLoops in pWInfo */ static void showAllWhereLoops(WhereInfo *pWInfo, WhereClause *pWC){ if( sqlite3WhereTrace ){ /* Display all of the WhereLoop objects */ WhereLoop *p; int i; static const char zLabel[] = "0123456789abcdefghijklmnopqrstuvwyxz" "ABCDEFGHIJKLMNOPQRSTUVWYXZ"; for(p=pWInfo->pLoops, i=0; p; p=p->pNextLoop, i++){ p->cId = zLabel[i%(sizeof(zLabel)-1)]; sqlite3WhereLoopPrint(p, pWC); } } } # define WHERETRACE_ALL_LOOPS(W,C) showAllWhereLoops(W,C) #else # define WHERETRACE_ALL_LOOPS(W,C) #endif /* ** Generate the beginning of the loop used for WHERE clause processing. ** The return value is a pointer to an opaque structure that contains ** information needed to terminate the loop. Later, the calling routine ** should invoke sqlite3WhereEnd() with the return value of this function ** in order to complete the WHERE clause processing. ** ** If an error occurs, this routine returns NULL. ** ** The basic idea is to do a nested loop, one loop for each table in ** the FROM clause of a select. (INSERT and UPDATE statements are the ** same as a SELECT with only a single table in the FROM clause.) For ** example, if the SQL is this: ** ** SELECT * FROM t1, t2, t3 WHERE ...; ** ** Then the code generated is conceptually like the following: ** ** foreach row1 in t1 do \ Code generated ** foreach row2 in t2 do |-- by sqlite3WhereBegin() ** foreach row3 in t3 do / ** ... ** end \ Code generated ** end |-- by sqlite3WhereEnd() ** end / ** ** Note that the loops might not be nested in the order in which they ** appear in the FROM clause if a different order is better able to make ** use of indices. Note also that when the IN operator appears in ** the WHERE clause, it might result in additional nested loops for ** scanning through all values on the right-hand side of the IN. ** ** There are Btree cursors associated with each table. t1 uses cursor ** number pTabList->a[0].iCursor. t2 uses the cursor pTabList->a[1].iCursor. ** And so forth. This routine generates code to open those VDBE cursors ** and sqlite3WhereEnd() generates the code to close them. ** ** The code that sqlite3WhereBegin() generates leaves the cursors named ** in pTabList pointing at their appropriate entries. The [...] code ** can use OP_Column and OP_Rowid opcodes on these cursors to extract ** data from the various tables of the loop. ** ** If the WHERE clause is empty, the foreach loops must each scan their ** entire tables. Thus a three-way join is an O(N^3) operation. But if ** the tables have indices and there are terms in the WHERE clause that ** refer to those indices, a complete table scan can be avoided and the ** code will run much faster. Most of the work of this routine is checking ** to see if there are indices that can be used to speed up the loop. ** ** Terms of the WHERE clause are also used to limit which rows actually ** make it to the "..." in the middle of the loop. After each "foreach", ** terms of the WHERE clause that use only terms in that loop and outer ** loops are evaluated and if false a jump is made around all subsequent ** inner loops (or around the "..." if the test occurs within the inner- ** most loop) ** ** OUTER JOINS ** ** An outer join of tables t1 and t2 is conceptally coded as follows: ** ** foreach row1 in t1 do ** flag = 0 ** foreach row2 in t2 do ** start: ** ... ** flag = 1 ** end ** if flag==0 then ** move the row2 cursor to a null row ** goto start ** fi ** end ** ** ORDER BY CLAUSE PROCESSING ** ** pOrderBy is a pointer to the ORDER BY clause (or the GROUP BY clause ** if the WHERE_GROUPBY flag is set in wctrlFlags) of a SELECT statement ** if there is one. If there is no ORDER BY clause or if this routine ** is called from an UPDATE or DELETE statement, then pOrderBy is NULL. ** ** The iIdxCur parameter is the cursor number of an index. If ** WHERE_OR_SUBCLAUSE is set, iIdxCur is the cursor number of an index ** to use for OR clause processing. The WHERE clause should use this ** specific cursor. If WHERE_ONEPASS_DESIRED is set, then iIdxCur is ** the first cursor in an array of cursors for all indices. iIdxCur should ** be used to compute the appropriate cursor depending on which index is ** used. */ SQLITE_PRIVATE WhereInfo *sqlite3WhereBegin( Parse *pParse, /* The parser context */ SrcList *pTabList, /* FROM clause: A list of all tables to be scanned */ Expr *pWhere, /* The WHERE clause */ ExprList *pOrderBy, /* An ORDER BY (or GROUP BY) clause, or NULL */ ExprList *pResultSet, /* Query result set. Req'd for DISTINCT */ u16 wctrlFlags, /* The WHERE_* flags defined in sqliteInt.h */ int iAuxArg /* If WHERE_OR_SUBCLAUSE is set, index cursor number ** If WHERE_USE_LIMIT, then the limit amount */ ){ int nByteWInfo; /* Num. bytes allocated for WhereInfo struct */ int nTabList; /* Number of elements in pTabList */ WhereInfo *pWInfo; /* Will become the return value of this function */ Vdbe *v = pParse->pVdbe; /* The virtual database engine */ Bitmask notReady; /* Cursors that are not yet positioned */ WhereLoopBuilder sWLB; /* The WhereLoop builder */ WhereMaskSet *pMaskSet; /* The expression mask set */ WhereLevel *pLevel; /* A single level in pWInfo->a[] */ WhereLoop *pLoop; /* Pointer to a single WhereLoop object */ int ii; /* Loop counter */ sqlite3 *db; /* Database connection */ int rc; /* Return code */ u8 bFordelete = 0; /* OPFLAG_FORDELETE or zero, as appropriate */ assert( (wctrlFlags & WHERE_ONEPASS_MULTIROW)==0 || ( (wctrlFlags & WHERE_ONEPASS_DESIRED)!=0 && (wctrlFlags & WHERE_OR_SUBCLAUSE)==0 )); /* Only one of WHERE_OR_SUBCLAUSE or WHERE_USE_LIMIT */ assert( (wctrlFlags & WHERE_OR_SUBCLAUSE)==0 || (wctrlFlags & WHERE_USE_LIMIT)==0 ); /* Variable initialization */ db = pParse->db; memset(&sWLB, 0, sizeof(sWLB)); /* An ORDER/GROUP BY clause of more than 63 terms cannot be optimized */ testcase( pOrderBy && pOrderBy->nExpr==BMS-1 ); if( pOrderBy && pOrderBy->nExpr>=BMS ) pOrderBy = 0; sWLB.pOrderBy = pOrderBy; /* Disable the DISTINCT optimization if SQLITE_DistinctOpt is set via ** sqlite3_test_ctrl(SQLITE_TESTCTRL_OPTIMIZATIONS,...) */ if( OptimizationDisabled(db, SQLITE_DistinctOpt) ){ wctrlFlags &= ~WHERE_WANT_DISTINCT; } /* The number of tables in the FROM clause is limited by the number of ** bits in a Bitmask */ testcase( pTabList->nSrc==BMS ); if( pTabList->nSrc>BMS ){ sqlite3ErrorMsg(pParse, "at most %d tables in a join", BMS); return 0; } /* This function normally generates a nested loop for all tables in ** pTabList. But if the WHERE_OR_SUBCLAUSE flag is set, then we should ** only generate code for the first table in pTabList and assume that ** any cursors associated with subsequent tables are uninitialized. */ nTabList = (wctrlFlags & WHERE_OR_SUBCLAUSE) ? 1 : pTabList->nSrc; /* Allocate and initialize the WhereInfo structure that will become the ** return value. A single allocation is used to store the WhereInfo ** struct, the contents of WhereInfo.a[], the WhereClause structure ** and the WhereMaskSet structure. Since WhereClause contains an 8-byte ** field (type Bitmask) it must be aligned on an 8-byte boundary on ** some architectures. Hence the ROUND8() below. */ nByteWInfo = ROUND8(sizeof(WhereInfo)+(nTabList-1)*sizeof(WhereLevel)); pWInfo = sqlite3DbMallocRawNN(db, nByteWInfo + sizeof(WhereLoop)); if( db->mallocFailed ){ sqlite3DbFree(db, pWInfo); pWInfo = 0; goto whereBeginError; } pWInfo->pParse = pParse; pWInfo->pTabList = pTabList; pWInfo->pOrderBy = pOrderBy; pWInfo->pWhere = pWhere; pWInfo->pResultSet = pResultSet; pWInfo->aiCurOnePass[0] = pWInfo->aiCurOnePass[1] = -1; pWInfo->nLevel = nTabList; pWInfo->iBreak = pWInfo->iContinue = sqlite3VdbeMakeLabel(pParse); pWInfo->wctrlFlags = wctrlFlags; pWInfo->iLimit = iAuxArg; pWInfo->savedNQueryLoop = pParse->nQueryLoop; memset(&pWInfo->nOBSat, 0, offsetof(WhereInfo,sWC) - offsetof(WhereInfo,nOBSat)); memset(&pWInfo->a[0], 0, sizeof(WhereLoop)+nTabList*sizeof(WhereLevel)); assert( pWInfo->eOnePass==ONEPASS_OFF ); /* ONEPASS defaults to OFF */ pMaskSet = &pWInfo->sMaskSet; sWLB.pWInfo = pWInfo; sWLB.pWC = &pWInfo->sWC; sWLB.pNew = (WhereLoop*)(((char*)pWInfo)+nByteWInfo); assert( EIGHT_BYTE_ALIGNMENT(sWLB.pNew) ); whereLoopInit(sWLB.pNew); #ifdef SQLITE_DEBUG sWLB.pNew->cId = '*'; #endif /* Split the WHERE clause into separate subexpressions where each ** subexpression is separated by an AND operator. */ initMaskSet(pMaskSet); sqlite3WhereClauseInit(&pWInfo->sWC, pWInfo); sqlite3WhereSplit(&pWInfo->sWC, pWhere, TK_AND); /* Special case: No FROM clause */ if( nTabList==0 ){ if( pOrderBy ) pWInfo->nOBSat = pOrderBy->nExpr; if( wctrlFlags & WHERE_WANT_DISTINCT ){ pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; } ExplainQueryPlan((pParse, 0, "SCAN CONSTANT ROW")); }else{ /* Assign a bit from the bitmask to every term in the FROM clause. ** ** The N-th term of the FROM clause is assigned a bitmask of 1<nSrc tables in ** pTabList, not just the first nTabList tables. nTabList is normally ** equal to pTabList->nSrc but might be shortened to 1 if the ** WHERE_OR_SUBCLAUSE flag is set. */ ii = 0; do{ createMask(pMaskSet, pTabList->a[ii].iCursor); sqlite3WhereTabFuncArgs(pParse, &pTabList->a[ii], &pWInfo->sWC); }while( (++ii)nSrc ); #ifdef SQLITE_DEBUG { Bitmask mx = 0; for(ii=0; iinSrc; ii++){ Bitmask m = sqlite3WhereGetMask(pMaskSet, pTabList->a[ii].iCursor); assert( m>=mx ); mx = m; } } #endif } /* Analyze all of the subexpressions. */ sqlite3WhereExprAnalyze(pTabList, &pWInfo->sWC); if( db->mallocFailed ) goto whereBeginError; /* Special case: WHERE terms that do not refer to any tables in the join ** (constant expressions). Evaluate each such term, and jump over all the ** generated code if the result is not true. ** ** Do not do this if the expression contains non-deterministic functions ** that are not within a sub-select. This is not strictly required, but ** preserves SQLite's legacy behaviour in the following two cases: ** ** FROM ... WHERE random()>0; -- eval random() once per row ** FROM ... WHERE (SELECT random())>0; -- eval random() once overall */ for(ii=0; iinTerm; ii++){ WhereTerm *pT = &sWLB.pWC->a[ii]; if( pT->wtFlags & TERM_VIRTUAL ) continue; if( pT->prereqAll==0 && (nTabList==0 || exprIsDeterministic(pT->pExpr)) ){ sqlite3ExprIfFalse(pParse, pT->pExpr, pWInfo->iBreak, SQLITE_JUMPIFNULL); pT->wtFlags |= TERM_CODED; } } if( wctrlFlags & WHERE_WANT_DISTINCT ){ if( isDistinctRedundant(pParse, pTabList, &pWInfo->sWC, pResultSet) ){ /* The DISTINCT marking is pointless. Ignore it. */ pWInfo->eDistinct = WHERE_DISTINCT_UNIQUE; }else if( pOrderBy==0 ){ /* Try to ORDER BY the result set to make distinct processing easier */ pWInfo->wctrlFlags |= WHERE_DISTINCTBY; pWInfo->pOrderBy = pResultSet; } } /* Construct the WhereLoop objects */ #if defined(WHERETRACE_ENABLED) if( sqlite3WhereTrace & 0xffff ){ sqlite3DebugPrintf("*** Optimizer Start *** (wctrlFlags: 0x%x",wctrlFlags); if( wctrlFlags & WHERE_USE_LIMIT ){ sqlite3DebugPrintf(", limit: %d", iAuxArg); } sqlite3DebugPrintf(")\n"); if( sqlite3WhereTrace & 0x100 ){ Select sSelect; memset(&sSelect, 0, sizeof(sSelect)); sSelect.selFlags = SF_WhereBegin; sSelect.pSrc = pTabList; sSelect.pWhere = pWhere; sSelect.pOrderBy = pOrderBy; sSelect.pEList = pResultSet; sqlite3TreeViewSelect(0, &sSelect, 0); } } if( sqlite3WhereTrace & 0x100 ){ /* Display all terms of the WHERE clause */ sqlite3DebugPrintf("---- WHERE clause at start of analysis:\n"); sqlite3WhereClausePrint(sWLB.pWC); } #endif if( nTabList!=1 || whereShortCut(&sWLB)==0 ){ rc = whereLoopAddAll(&sWLB); if( rc ) goto whereBeginError; #ifdef SQLITE_ENABLE_STAT4 /* If one or more WhereTerm.truthProb values were used in estimating ** loop parameters, but then those truthProb values were subsequently ** changed based on STAT4 information while computing subsequent loops, ** then we need to rerun the whole loop building process so that all ** loops will be built using the revised truthProb values. */ if( sWLB.bldFlags2 & SQLITE_BLDF2_2NDPASS ){ WHERETRACE_ALL_LOOPS(pWInfo, sWLB.pWC); WHERETRACE(0xffff, ("**** Redo all loop computations due to" " TERM_HIGHTRUTH changes ****\n")); while( pWInfo->pLoops ){ WhereLoop *p = pWInfo->pLoops; pWInfo->pLoops = p->pNextLoop; whereLoopDelete(db, p); } rc = whereLoopAddAll(&sWLB); if( rc ) goto whereBeginError; } #endif WHERETRACE_ALL_LOOPS(pWInfo, sWLB.pWC); wherePathSolver(pWInfo, 0); if( db->mallocFailed ) goto whereBeginError; if( pWInfo->pOrderBy ){ wherePathSolver(pWInfo, pWInfo->nRowOut+1); if( db->mallocFailed ) goto whereBeginError; } } if( pWInfo->pOrderBy==0 && (db->flags & SQLITE_ReverseOrder)!=0 ){ pWInfo->revMask = ALLBITS; } if( pParse->nErr || NEVER(db->mallocFailed) ){ goto whereBeginError; } #ifdef WHERETRACE_ENABLED if( sqlite3WhereTrace ){ sqlite3DebugPrintf("---- Solution nRow=%d", pWInfo->nRowOut); if( pWInfo->nOBSat>0 ){ sqlite3DebugPrintf(" ORDERBY=%d,0x%llx", pWInfo->nOBSat, pWInfo->revMask); } switch( pWInfo->eDistinct ){ case WHERE_DISTINCT_UNIQUE: { sqlite3DebugPrintf(" DISTINCT=unique"); break; } case WHERE_DISTINCT_ORDERED: { sqlite3DebugPrintf(" DISTINCT=ordered"); break; } case WHERE_DISTINCT_UNORDERED: { sqlite3DebugPrintf(" DISTINCT=unordered"); break; } } sqlite3DebugPrintf("\n"); for(ii=0; iinLevel; ii++){ sqlite3WhereLoopPrint(pWInfo->a[ii].pWLoop, sWLB.pWC); } } #endif /* Attempt to omit tables from the join that do not affect the result. ** For a table to not affect the result, the following must be true: ** ** 1) The query must not be an aggregate. ** 2) The table must be the RHS of a LEFT JOIN. ** 3) Either the query must be DISTINCT, or else the ON or USING clause ** must contain a constraint that limits the scan of the table to ** at most a single row. ** 4) The table must not be referenced by any part of the query apart ** from its own USING or ON clause. ** ** For example, given: ** ** CREATE TABLE t1(ipk INTEGER PRIMARY KEY, v1); ** CREATE TABLE t2(ipk INTEGER PRIMARY KEY, v2); ** CREATE TABLE t3(ipk INTEGER PRIMARY KEY, v3); ** ** then table t2 can be omitted from the following: ** ** SELECT v1, v3 FROM t1 ** LEFT JOIN t2 ON (t1.ipk=t2.ipk) ** LEFT JOIN t3 ON (t1.ipk=t3.ipk) ** ** or from: ** ** SELECT DISTINCT v1, v3 FROM t1 ** LEFT JOIN t2 ** LEFT JOIN t3 ON (t1.ipk=t3.ipk) */ notReady = ~(Bitmask)0; if( pWInfo->nLevel>=2 && pResultSet!=0 /* guarantees condition (1) above */ && OptimizationEnabled(db, SQLITE_OmitNoopJoin) ){ int i; Bitmask tabUsed = sqlite3WhereExprListUsage(pMaskSet, pResultSet); if( sWLB.pOrderBy ){ tabUsed |= sqlite3WhereExprListUsage(pMaskSet, sWLB.pOrderBy); } for(i=pWInfo->nLevel-1; i>=1; i--){ WhereTerm *pTerm, *pEnd; struct SrcList_item *pItem; pLoop = pWInfo->a[i].pWLoop; pItem = &pWInfo->pTabList->a[pLoop->iTab]; if( (pItem->fg.jointype & JT_LEFT)==0 ) continue; if( (wctrlFlags & WHERE_WANT_DISTINCT)==0 && (pLoop->wsFlags & WHERE_ONEROW)==0 ){ continue; } if( (tabUsed & pLoop->maskSelf)!=0 ) continue; pEnd = sWLB.pWC->a + sWLB.pWC->nTerm; for(pTerm=sWLB.pWC->a; pTermprereqAll & pLoop->maskSelf)!=0 ){ if( !ExprHasProperty(pTerm->pExpr, EP_FromJoin) || pTerm->pExpr->iRightJoinTable!=pItem->iCursor ){ break; } } } if( pTerm drop loop %c not used\n", pLoop->cId)); notReady &= ~pLoop->maskSelf; for(pTerm=sWLB.pWC->a; pTermprereqAll & pLoop->maskSelf)!=0 ){ pTerm->wtFlags |= TERM_CODED; } } if( i!=pWInfo->nLevel-1 ){ int nByte = (pWInfo->nLevel-1-i) * sizeof(WhereLevel); memmove(&pWInfo->a[i], &pWInfo->a[i+1], nByte); } pWInfo->nLevel--; nTabList--; } } #if defined(WHERETRACE_ENABLED) if( sqlite3WhereTrace & 0x100 ){ /* Display all terms of the WHERE clause */ sqlite3DebugPrintf("---- WHERE clause at end of analysis:\n"); sqlite3WhereClausePrint(sWLB.pWC); } WHERETRACE(0xffff,("*** Optimizer Finished ***\n")); #endif pWInfo->pParse->nQueryLoop += pWInfo->nRowOut; /* If the caller is an UPDATE or DELETE statement that is requesting ** to use a one-pass algorithm, determine if this is appropriate. ** ** A one-pass approach can be used if the caller has requested one ** and either (a) the scan visits at most one row or (b) each ** of the following are true: ** ** * the caller has indicated that a one-pass approach can be used ** with multiple rows (by setting WHERE_ONEPASS_MULTIROW), and ** * the table is not a virtual table, and ** * either the scan does not use the OR optimization or the caller ** is a DELETE operation (WHERE_DUPLICATES_OK is only specified ** for DELETE). ** ** The last qualification is because an UPDATE statement uses ** WhereInfo.aiCurOnePass[1] to determine whether or not it really can ** use a one-pass approach, and this is not set accurately for scans ** that use the OR optimization. */ assert( (wctrlFlags & WHERE_ONEPASS_DESIRED)==0 || pWInfo->nLevel==1 ); if( (wctrlFlags & WHERE_ONEPASS_DESIRED)!=0 ){ int wsFlags = pWInfo->a[0].pWLoop->wsFlags; int bOnerow = (wsFlags & WHERE_ONEROW)!=0; assert( !(wsFlags & WHERE_VIRTUALTABLE) || IsVirtual(pTabList->a[0].pTab) ); if( bOnerow || ( 0!=(wctrlFlags & WHERE_ONEPASS_MULTIROW) && !IsVirtual(pTabList->a[0].pTab) && (0==(wsFlags & WHERE_MULTI_OR) || (wctrlFlags & WHERE_DUPLICATES_OK)) )){ pWInfo->eOnePass = bOnerow ? ONEPASS_SINGLE : ONEPASS_MULTI; if( HasRowid(pTabList->a[0].pTab) && (wsFlags & WHERE_IDX_ONLY) ){ if( wctrlFlags & WHERE_ONEPASS_MULTIROW ){ bFordelete = OPFLAG_FORDELETE; } pWInfo->a[0].pWLoop->wsFlags = (wsFlags & ~WHERE_IDX_ONLY); } } } /* Open all tables in the pTabList and any indices selected for ** searching those tables. */ for(ii=0, pLevel=pWInfo->a; iia[pLevel->iFrom]; pTab = pTabItem->pTab; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); pLoop = pLevel->pWLoop; if( (pTab->tabFlags & TF_Ephemeral)!=0 || pTab->pSelect ){ /* Do nothing */ }else #ifndef SQLITE_OMIT_VIRTUALTABLE if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)!=0 ){ const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); int iCur = pTabItem->iCursor; sqlite3VdbeAddOp4(v, OP_VOpen, iCur, 0, 0, pVTab, P4_VTAB); }else if( IsVirtual(pTab) ){ /* noop */ }else #endif if( (pLoop->wsFlags & WHERE_IDX_ONLY)==0 && (wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ){ int op = OP_OpenRead; if( pWInfo->eOnePass!=ONEPASS_OFF ){ op = OP_OpenWrite; pWInfo->aiCurOnePass[0] = pTabItem->iCursor; }; sqlite3OpenTable(pParse, pTabItem->iCursor, iDb, pTab, op); assert( pTabItem->iCursor==pLevel->iTabCur ); testcase( pWInfo->eOnePass==ONEPASS_OFF && pTab->nCol==BMS-1 ); testcase( pWInfo->eOnePass==ONEPASS_OFF && pTab->nCol==BMS ); if( pWInfo->eOnePass==ONEPASS_OFF && pTab->nColtabFlags & (TF_HasGenerated|TF_WithoutRowid))==0 ){ /* If we know that only a prefix of the record will be used, ** it is advantageous to reduce the "column count" field in ** the P4 operand of the OP_OpenRead/Write opcode. */ Bitmask b = pTabItem->colUsed; int n = 0; for(; b; b=b>>1, n++){} sqlite3VdbeChangeP4(v, -1, SQLITE_INT_TO_PTR(n), P4_INT32); assert( n<=pTab->nCol ); } #ifdef SQLITE_ENABLE_CURSOR_HINTS if( pLoop->u.btree.pIndex!=0 ){ sqlite3VdbeChangeP5(v, OPFLAG_SEEKEQ|bFordelete); }else #endif { sqlite3VdbeChangeP5(v, bFordelete); } #ifdef SQLITE_ENABLE_COLUMN_USED_MASK sqlite3VdbeAddOp4Dup8(v, OP_ColumnsUsed, pTabItem->iCursor, 0, 0, (const u8*)&pTabItem->colUsed, P4_INT64); #endif }else{ sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); } if( pLoop->wsFlags & WHERE_INDEXED ){ Index *pIx = pLoop->u.btree.pIndex; int iIndexCur; int op = OP_OpenRead; /* iAuxArg is always set to a positive value if ONEPASS is possible */ assert( iAuxArg!=0 || (pWInfo->wctrlFlags & WHERE_ONEPASS_DESIRED)==0 ); if( !HasRowid(pTab) && IsPrimaryKeyIndex(pIx) && (wctrlFlags & WHERE_OR_SUBCLAUSE)!=0 ){ /* This is one term of an OR-optimization using the PRIMARY KEY of a ** WITHOUT ROWID table. No need for a separate index */ iIndexCur = pLevel->iTabCur; op = 0; }else if( pWInfo->eOnePass!=ONEPASS_OFF ){ Index *pJ = pTabItem->pTab->pIndex; iIndexCur = iAuxArg; assert( wctrlFlags & WHERE_ONEPASS_DESIRED ); while( ALWAYS(pJ) && pJ!=pIx ){ iIndexCur++; pJ = pJ->pNext; } op = OP_OpenWrite; pWInfo->aiCurOnePass[1] = iIndexCur; }else if( iAuxArg && (wctrlFlags & WHERE_OR_SUBCLAUSE)!=0 ){ iIndexCur = iAuxArg; op = OP_ReopenIdx; }else{ iIndexCur = pParse->nTab++; } pLevel->iIdxCur = iIndexCur; assert( pIx->pSchema==pTab->pSchema ); assert( iIndexCur>=0 ); if( op ){ sqlite3VdbeAddOp3(v, op, iIndexCur, pIx->tnum, iDb); sqlite3VdbeSetP4KeyInfo(pParse, pIx); if( (pLoop->wsFlags & WHERE_CONSTRAINT)!=0 && (pLoop->wsFlags & (WHERE_COLUMN_RANGE|WHERE_SKIPSCAN))==0 && (pLoop->wsFlags & WHERE_BIGNULL_SORT)==0 && (pWInfo->wctrlFlags&WHERE_ORDERBY_MIN)==0 && pWInfo->eDistinct!=WHERE_DISTINCT_ORDERED ){ sqlite3VdbeChangeP5(v, OPFLAG_SEEKEQ); } VdbeComment((v, "%s", pIx->zName)); #ifdef SQLITE_ENABLE_COLUMN_USED_MASK { u64 colUsed = 0; int ii, jj; for(ii=0; iinColumn; ii++){ jj = pIx->aiColumn[ii]; if( jj<0 ) continue; if( jj>63 ) jj = 63; if( (pTabItem->colUsed & MASKBIT(jj))==0 ) continue; colUsed |= ((u64)1)<<(ii<63 ? ii : 63); } sqlite3VdbeAddOp4Dup8(v, OP_ColumnsUsed, iIndexCur, 0, 0, (u8*)&colUsed, P4_INT64); } #endif /* SQLITE_ENABLE_COLUMN_USED_MASK */ } } if( iDb>=0 ) sqlite3CodeVerifySchema(pParse, iDb); } pWInfo->iTop = sqlite3VdbeCurrentAddr(v); if( db->mallocFailed ) goto whereBeginError; /* Generate the code to do the search. Each iteration of the for ** loop below generates code for a single nested loop of the VM ** program. */ for(ii=0; iia[ii]; wsFlags = pLevel->pWLoop->wsFlags; #ifndef SQLITE_OMIT_AUTOMATIC_INDEX if( (pLevel->pWLoop->wsFlags & WHERE_AUTO_INDEX)!=0 ){ constructAutomaticIndex(pParse, &pWInfo->sWC, &pTabList->a[pLevel->iFrom], notReady, pLevel); if( db->mallocFailed ) goto whereBeginError; } #endif addrExplain = sqlite3WhereExplainOneScan( pParse, pTabList, pLevel, wctrlFlags ); pLevel->addrBody = sqlite3VdbeCurrentAddr(v); notReady = sqlite3WhereCodeOneLoopStart(pParse,v,pWInfo,ii,pLevel,notReady); pWInfo->iContinue = pLevel->addrCont; if( (wsFlags&WHERE_MULTI_OR)==0 && (wctrlFlags&WHERE_OR_SUBCLAUSE)==0 ){ sqlite3WhereAddScanStatus(v, pTabList, pLevel, addrExplain); } } /* Done. */ VdbeModuleComment((v, "Begin WHERE-core")); return pWInfo; /* Jump here if malloc fails */ whereBeginError: if( pWInfo ){ pParse->nQueryLoop = pWInfo->savedNQueryLoop; whereInfoFree(db, pWInfo); } return 0; } /* ** Part of sqlite3WhereEnd() will rewrite opcodes to reference the ** index rather than the main table. In SQLITE_DEBUG mode, we want ** to trace those changes if PRAGMA vdbe_addoptrace=on. This routine ** does that. */ #ifndef SQLITE_DEBUG # define OpcodeRewriteTrace(D,K,P) /* no-op */ #else # define OpcodeRewriteTrace(D,K,P) sqlite3WhereOpcodeRewriteTrace(D,K,P) static void sqlite3WhereOpcodeRewriteTrace( sqlite3 *db, int pc, VdbeOp *pOp ){ if( (db->flags & SQLITE_VdbeAddopTrace)==0 ) return; sqlite3VdbePrintOp(0, pc, pOp); } #endif /* ** Generate the end of the WHERE loop. See comments on ** sqlite3WhereBegin() for additional information. */ SQLITE_PRIVATE void sqlite3WhereEnd(WhereInfo *pWInfo){ Parse *pParse = pWInfo->pParse; Vdbe *v = pParse->pVdbe; int i; WhereLevel *pLevel; WhereLoop *pLoop; SrcList *pTabList = pWInfo->pTabList; sqlite3 *db = pParse->db; /* Generate loop termination code. */ VdbeModuleComment((v, "End WHERE-core")); for(i=pWInfo->nLevel-1; i>=0; i--){ int addr; pLevel = &pWInfo->a[i]; pLoop = pLevel->pWLoop; if( pLevel->op!=OP_Noop ){ #ifndef SQLITE_DISABLE_SKIPAHEAD_DISTINCT int addrSeek = 0; Index *pIdx; int n; if( pWInfo->eDistinct==WHERE_DISTINCT_ORDERED && i==pWInfo->nLevel-1 /* Ticket [ef9318757b152e3] 2017-10-21 */ && (pLoop->wsFlags & WHERE_INDEXED)!=0 && (pIdx = pLoop->u.btree.pIndex)->hasStat1 && (n = pLoop->u.btree.nDistinctCol)>0 && pIdx->aiRowLogEst[n]>=36 ){ int r1 = pParse->nMem+1; int j, op; for(j=0; jiIdxCur, j, r1+j); } pParse->nMem += n+1; op = pLevel->op==OP_Prev ? OP_SeekLT : OP_SeekGT; addrSeek = sqlite3VdbeAddOp4Int(v, op, pLevel->iIdxCur, 0, r1, n); VdbeCoverageIf(v, op==OP_SeekLT); VdbeCoverageIf(v, op==OP_SeekGT); sqlite3VdbeAddOp2(v, OP_Goto, 1, pLevel->p2); } #endif /* SQLITE_DISABLE_SKIPAHEAD_DISTINCT */ /* The common case: Advance to the next row */ sqlite3VdbeResolveLabel(v, pLevel->addrCont); sqlite3VdbeAddOp3(v, pLevel->op, pLevel->p1, pLevel->p2, pLevel->p3); sqlite3VdbeChangeP5(v, pLevel->p5); VdbeCoverage(v); VdbeCoverageIf(v, pLevel->op==OP_Next); VdbeCoverageIf(v, pLevel->op==OP_Prev); VdbeCoverageIf(v, pLevel->op==OP_VNext); if( pLevel->regBignull ){ sqlite3VdbeResolveLabel(v, pLevel->addrBignull); sqlite3VdbeAddOp2(v, OP_DecrJumpZero, pLevel->regBignull, pLevel->p2-1); VdbeCoverage(v); } #ifndef SQLITE_DISABLE_SKIPAHEAD_DISTINCT if( addrSeek ) sqlite3VdbeJumpHere(v, addrSeek); #endif }else{ sqlite3VdbeResolveLabel(v, pLevel->addrCont); } if( pLoop->wsFlags & WHERE_IN_ABLE && pLevel->u.in.nIn>0 ){ struct InLoop *pIn; int j; sqlite3VdbeResolveLabel(v, pLevel->addrNxt); for(j=pLevel->u.in.nIn, pIn=&pLevel->u.in.aInLoop[j-1]; j>0; j--, pIn--){ sqlite3VdbeJumpHere(v, pIn->addrInTop+1); if( pIn->eEndLoopOp!=OP_Noop ){ if( pIn->nPrefix ){ assert( pLoop->wsFlags & WHERE_IN_EARLYOUT ); if( pLevel->iLeftJoin ){ /* For LEFT JOIN queries, cursor pIn->iCur may not have been ** opened yet. This occurs for WHERE clauses such as ** "a = ? AND b IN (...)", where the index is on (a, b). If ** the RHS of the (a=?) is NULL, then the "b IN (...)" may ** never have been coded, but the body of the loop run to ** return the null-row. So, if the cursor is not open yet, ** jump over the OP_Next or OP_Prev instruction about to ** be coded. */ sqlite3VdbeAddOp2(v, OP_IfNotOpen, pIn->iCur, sqlite3VdbeCurrentAddr(v) + 2 + ((pLoop->wsFlags & WHERE_VIRTUALTABLE)==0) ); VdbeCoverage(v); } if( (pLoop->wsFlags & WHERE_VIRTUALTABLE)==0 ){ sqlite3VdbeAddOp4Int(v, OP_IfNoHope, pLevel->iIdxCur, sqlite3VdbeCurrentAddr(v)+2, pIn->iBase, pIn->nPrefix); VdbeCoverage(v); } } sqlite3VdbeAddOp2(v, pIn->eEndLoopOp, pIn->iCur, pIn->addrInTop); VdbeCoverage(v); VdbeCoverageIf(v, pIn->eEndLoopOp==OP_Prev); VdbeCoverageIf(v, pIn->eEndLoopOp==OP_Next); } sqlite3VdbeJumpHere(v, pIn->addrInTop-1); } } sqlite3VdbeResolveLabel(v, pLevel->addrBrk); if( pLevel->addrSkip ){ sqlite3VdbeGoto(v, pLevel->addrSkip); VdbeComment((v, "next skip-scan on %s", pLoop->u.btree.pIndex->zName)); sqlite3VdbeJumpHere(v, pLevel->addrSkip); sqlite3VdbeJumpHere(v, pLevel->addrSkip-2); } #ifndef SQLITE_LIKE_DOESNT_MATCH_BLOBS if( pLevel->addrLikeRep ){ sqlite3VdbeAddOp2(v, OP_DecrJumpZero, (int)(pLevel->iLikeRepCntr>>1), pLevel->addrLikeRep); VdbeCoverage(v); } #endif if( pLevel->iLeftJoin ){ int ws = pLoop->wsFlags; addr = sqlite3VdbeAddOp1(v, OP_IfPos, pLevel->iLeftJoin); VdbeCoverage(v); assert( (ws & WHERE_IDX_ONLY)==0 || (ws & WHERE_INDEXED)!=0 ); if( (ws & WHERE_IDX_ONLY)==0 ){ assert( pLevel->iTabCur==pTabList->a[pLevel->iFrom].iCursor ); sqlite3VdbeAddOp1(v, OP_NullRow, pLevel->iTabCur); } if( (ws & WHERE_INDEXED) || ((ws & WHERE_MULTI_OR) && pLevel->u.pCovidx) ){ sqlite3VdbeAddOp1(v, OP_NullRow, pLevel->iIdxCur); } if( pLevel->op==OP_Return ){ sqlite3VdbeAddOp2(v, OP_Gosub, pLevel->p1, pLevel->addrFirst); }else{ sqlite3VdbeGoto(v, pLevel->addrFirst); } sqlite3VdbeJumpHere(v, addr); } VdbeModuleComment((v, "End WHERE-loop%d: %s", i, pWInfo->pTabList->a[pLevel->iFrom].pTab->zName)); } /* The "break" point is here, just past the end of the outer loop. ** Set it. */ sqlite3VdbeResolveLabel(v, pWInfo->iBreak); assert( pWInfo->nLevel<=pTabList->nSrc ); for(i=0, pLevel=pWInfo->a; inLevel; i++, pLevel++){ int k, last; VdbeOp *pOp; Index *pIdx = 0; struct SrcList_item *pTabItem = &pTabList->a[pLevel->iFrom]; Table *pTab = pTabItem->pTab; assert( pTab!=0 ); pLoop = pLevel->pWLoop; /* For a co-routine, change all OP_Column references to the table of ** the co-routine into OP_Copy of result contained in a register. ** OP_Rowid becomes OP_Null. */ if( pTabItem->fg.viaCoroutine ){ testcase( pParse->db->mallocFailed ); translateColumnToCopy(pParse, pLevel->addrBody, pLevel->iTabCur, pTabItem->regResult, 0); continue; } #ifdef SQLITE_ENABLE_EARLY_CURSOR_CLOSE /* Close all of the cursors that were opened by sqlite3WhereBegin. ** Except, do not close cursors that will be reused by the OR optimization ** (WHERE_OR_SUBCLAUSE). And do not close the OP_OpenWrite cursors ** created for the ONEPASS optimization. */ if( (pTab->tabFlags & TF_Ephemeral)==0 && pTab->pSelect==0 && (pWInfo->wctrlFlags & WHERE_OR_SUBCLAUSE)==0 ){ int ws = pLoop->wsFlags; if( pWInfo->eOnePass==ONEPASS_OFF && (ws & WHERE_IDX_ONLY)==0 ){ sqlite3VdbeAddOp1(v, OP_Close, pTabItem->iCursor); } if( (ws & WHERE_INDEXED)!=0 && (ws & (WHERE_IPK|WHERE_AUTO_INDEX))==0 && pLevel->iIdxCur!=pWInfo->aiCurOnePass[1] ){ sqlite3VdbeAddOp1(v, OP_Close, pLevel->iIdxCur); } } #endif /* If this scan uses an index, make VDBE code substitutions to read data ** from the index instead of from the table where possible. In some cases ** this optimization prevents the table from ever being read, which can ** yield a significant performance boost. ** ** Calls to the code generator in between sqlite3WhereBegin and ** sqlite3WhereEnd will have created code that references the table ** directly. This loop scans all that code looking for opcodes ** that reference the table and converts them into opcodes that ** reference the index. */ if( pLoop->wsFlags & (WHERE_INDEXED|WHERE_IDX_ONLY) ){ pIdx = pLoop->u.btree.pIndex; }else if( pLoop->wsFlags & WHERE_MULTI_OR ){ pIdx = pLevel->u.pCovidx; } if( pIdx && (pWInfo->eOnePass==ONEPASS_OFF || !HasRowid(pIdx->pTable)) && !db->mallocFailed ){ last = sqlite3VdbeCurrentAddr(v); k = pLevel->addrBody; #ifdef SQLITE_DEBUG if( db->flags & SQLITE_VdbeAddopTrace ){ printf("TRANSLATE opcodes in range %d..%d\n", k, last-1); } #endif pOp = sqlite3VdbeGetOp(v, k); for(; kp1!=pLevel->iTabCur ) continue; if( pOp->opcode==OP_Column #ifdef SQLITE_ENABLE_OFFSET_SQL_FUNC || pOp->opcode==OP_Offset #endif ){ int x = pOp->p2; assert( pIdx->pTable==pTab ); if( !HasRowid(pTab) ){ Index *pPk = sqlite3PrimaryKeyIndex(pTab); x = pPk->aiColumn[x]; assert( x>=0 ); }else{ testcase( x!=sqlite3StorageColumnToTable(pTab,x) ); x = sqlite3StorageColumnToTable(pTab,x); } x = sqlite3TableColumnToIndex(pIdx, x); if( x>=0 ){ pOp->p2 = x; pOp->p1 = pLevel->iIdxCur; OpcodeRewriteTrace(db, k, pOp); } assert( (pLoop->wsFlags & WHERE_IDX_ONLY)==0 || x>=0 || pWInfo->eOnePass ); }else if( pOp->opcode==OP_Rowid ){ pOp->p1 = pLevel->iIdxCur; pOp->opcode = OP_IdxRowid; OpcodeRewriteTrace(db, k, pOp); }else if( pOp->opcode==OP_IfNullRow ){ pOp->p1 = pLevel->iIdxCur; OpcodeRewriteTrace(db, k, pOp); } } #ifdef SQLITE_DEBUG if( db->flags & SQLITE_VdbeAddopTrace ) printf("TRANSLATE complete\n"); #endif } } /* Undo all Expr node modifications */ while( pWInfo->pExprMods ){ WhereExprMod *p = pWInfo->pExprMods; pWInfo->pExprMods = p->pNext; memcpy(p->pExpr, &p->orig, sizeof(p->orig)); sqlite3DbFree(db, p); } /* Final cleanup */ pParse->nQueryLoop = pWInfo->savedNQueryLoop; whereInfoFree(db, pWInfo); return; } /************** End of where.c ***********************************************/ /************** Begin file window.c ******************************************/ /* ** 2018 May 08 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_WINDOWFUNC /* ** SELECT REWRITING ** ** Any SELECT statement that contains one or more window functions in ** either the select list or ORDER BY clause (the only two places window ** functions may be used) is transformed by function sqlite3WindowRewrite() ** in order to support window function processing. For example, with the ** schema: ** ** CREATE TABLE t1(a, b, c, d, e, f, g); ** ** the statement: ** ** SELECT a+1, max(b) OVER (PARTITION BY c ORDER BY d) FROM t1 ORDER BY e; ** ** is transformed to: ** ** SELECT a+1, max(b) OVER (PARTITION BY c ORDER BY d) FROM ( ** SELECT a, e, c, d, b FROM t1 ORDER BY c, d ** ) ORDER BY e; ** ** The flattening optimization is disabled when processing this transformed ** SELECT statement. This allows the implementation of the window function ** (in this case max()) to process rows sorted in order of (c, d), which ** makes things easier for obvious reasons. More generally: ** ** * FROM, WHERE, GROUP BY and HAVING clauses are all moved to ** the sub-query. ** ** * ORDER BY, LIMIT and OFFSET remain part of the parent query. ** ** * Terminals from each of the expression trees that make up the ** select-list and ORDER BY expressions in the parent query are ** selected by the sub-query. For the purposes of the transformation, ** terminals are column references and aggregate functions. ** ** If there is more than one window function in the SELECT that uses ** the same window declaration (the OVER bit), then a single scan may ** be used to process more than one window function. For example: ** ** SELECT max(b) OVER (PARTITION BY c ORDER BY d), ** min(e) OVER (PARTITION BY c ORDER BY d) ** FROM t1; ** ** is transformed in the same way as the example above. However: ** ** SELECT max(b) OVER (PARTITION BY c ORDER BY d), ** min(e) OVER (PARTITION BY a ORDER BY b) ** FROM t1; ** ** Must be transformed to: ** ** SELECT max(b) OVER (PARTITION BY c ORDER BY d) FROM ( ** SELECT e, min(e) OVER (PARTITION BY a ORDER BY b), c, d, b FROM ** SELECT a, e, c, d, b FROM t1 ORDER BY a, b ** ) ORDER BY c, d ** ) ORDER BY e; ** ** so that both min() and max() may process rows in the order defined by ** their respective window declarations. ** ** INTERFACE WITH SELECT.C ** ** When processing the rewritten SELECT statement, code in select.c calls ** sqlite3WhereBegin() to begin iterating through the results of the ** sub-query, which is always implemented as a co-routine. It then calls ** sqlite3WindowCodeStep() to process rows and finish the scan by calling ** sqlite3WhereEnd(). ** ** sqlite3WindowCodeStep() generates VM code so that, for each row returned ** by the sub-query a sub-routine (OP_Gosub) coded by select.c is invoked. ** When the sub-routine is invoked: ** ** * The results of all window-functions for the row are stored ** in the associated Window.regResult registers. ** ** * The required terminal values are stored in the current row of ** temp table Window.iEphCsr. ** ** In some cases, depending on the window frame and the specific window ** functions invoked, sqlite3WindowCodeStep() caches each entire partition ** in a temp table before returning any rows. In other cases it does not. ** This detail is encapsulated within this file, the code generated by ** select.c is the same in either case. ** ** BUILT-IN WINDOW FUNCTIONS ** ** This implementation features the following built-in window functions: ** ** row_number() ** rank() ** dense_rank() ** percent_rank() ** cume_dist() ** ntile(N) ** lead(expr [, offset [, default]]) ** lag(expr [, offset [, default]]) ** first_value(expr) ** last_value(expr) ** nth_value(expr, N) ** ** These are the same built-in window functions supported by Postgres. ** Although the behaviour of aggregate window functions (functions that ** can be used as either aggregates or window funtions) allows them to ** be implemented using an API, built-in window functions are much more ** esoteric. Additionally, some window functions (e.g. nth_value()) ** may only be implemented by caching the entire partition in memory. ** As such, some built-in window functions use the same API as aggregate ** window functions and some are implemented directly using VDBE ** instructions. Additionally, for those functions that use the API, the ** window frame is sometimes modified before the SELECT statement is ** rewritten. For example, regardless of the specified window frame, the ** row_number() function always uses: ** ** ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW ** ** See sqlite3WindowUpdate() for details. ** ** As well as some of the built-in window functions, aggregate window ** functions min() and max() are implemented using VDBE instructions if ** the start of the window frame is declared as anything other than ** UNBOUNDED PRECEDING. */ /* ** Implementation of built-in window function row_number(). Assumes that the ** window frame has been coerced to: ** ** ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW */ static void row_numberStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ i64 *p = (i64*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ) (*p)++; UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); } static void row_numberValueFunc(sqlite3_context *pCtx){ i64 *p = (i64*)sqlite3_aggregate_context(pCtx, sizeof(*p)); sqlite3_result_int64(pCtx, (p ? *p : 0)); } /* ** Context object type used by rank(), dense_rank(), percent_rank() and ** cume_dist(). */ struct CallCount { i64 nValue; i64 nStep; i64 nTotal; }; /* ** Implementation of built-in window function dense_rank(). Assumes that ** the window frame has been set to: ** ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW */ static void dense_rankStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ) p->nStep = 1; UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); } static void dense_rankValueFunc(sqlite3_context *pCtx){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ if( p->nStep ){ p->nValue++; p->nStep = 0; } sqlite3_result_int64(pCtx, p->nValue); } } /* ** Implementation of built-in window function nth_value(). This ** implementation is used in "slow mode" only - when the EXCLUDE clause ** is not set to the default value "NO OTHERS". */ struct NthValueCtx { i64 nStep; sqlite3_value *pValue; }; static void nth_valueStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct NthValueCtx *p; p = (struct NthValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ i64 iVal; switch( sqlite3_value_numeric_type(apArg[1]) ){ case SQLITE_INTEGER: iVal = sqlite3_value_int64(apArg[1]); break; case SQLITE_FLOAT: { double fVal = sqlite3_value_double(apArg[1]); if( ((i64)fVal)!=fVal ) goto error_out; iVal = (i64)fVal; break; } default: goto error_out; } if( iVal<=0 ) goto error_out; p->nStep++; if( iVal==p->nStep ){ p->pValue = sqlite3_value_dup(apArg[0]); if( !p->pValue ){ sqlite3_result_error_nomem(pCtx); } } } UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); return; error_out: sqlite3_result_error( pCtx, "second argument to nth_value must be a positive integer", -1 ); } static void nth_valueFinalizeFunc(sqlite3_context *pCtx){ struct NthValueCtx *p; p = (struct NthValueCtx*)sqlite3_aggregate_context(pCtx, 0); if( p && p->pValue ){ sqlite3_result_value(pCtx, p->pValue); sqlite3_value_free(p->pValue); p->pValue = 0; } } #define nth_valueInvFunc noopStepFunc #define nth_valueValueFunc noopValueFunc static void first_valueStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct NthValueCtx *p; p = (struct NthValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p && p->pValue==0 ){ p->pValue = sqlite3_value_dup(apArg[0]); if( !p->pValue ){ sqlite3_result_error_nomem(pCtx); } } UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); } static void first_valueFinalizeFunc(sqlite3_context *pCtx){ struct NthValueCtx *p; p = (struct NthValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p && p->pValue ){ sqlite3_result_value(pCtx, p->pValue); sqlite3_value_free(p->pValue); p->pValue = 0; } } #define first_valueInvFunc noopStepFunc #define first_valueValueFunc noopValueFunc /* ** Implementation of built-in window function rank(). Assumes that ** the window frame has been set to: ** ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW */ static void rankStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ p->nStep++; if( p->nValue==0 ){ p->nValue = p->nStep; } } UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); } static void rankValueFunc(sqlite3_context *pCtx){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ sqlite3_result_int64(pCtx, p->nValue); p->nValue = 0; } } /* ** Implementation of built-in window function percent_rank(). Assumes that ** the window frame has been set to: ** ** GROUPS BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING */ static void percent_rankStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; UNUSED_PARAMETER(nArg); assert( nArg==0 ); UNUSED_PARAMETER(apArg); p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ p->nTotal++; } } static void percent_rankInvFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; UNUSED_PARAMETER(nArg); assert( nArg==0 ); UNUSED_PARAMETER(apArg); p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); p->nStep++; } static void percent_rankValueFunc(sqlite3_context *pCtx){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ p->nValue = p->nStep; if( p->nTotal>1 ){ double r = (double)p->nValue / (double)(p->nTotal-1); sqlite3_result_double(pCtx, r); }else{ sqlite3_result_double(pCtx, 0.0); } } } #define percent_rankFinalizeFunc percent_rankValueFunc /* ** Implementation of built-in window function cume_dist(). Assumes that ** the window frame has been set to: ** ** GROUPS BETWEEN 1 FOLLOWING AND UNBOUNDED FOLLOWING */ static void cume_distStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; UNUSED_PARAMETER(nArg); assert( nArg==0 ); UNUSED_PARAMETER(apArg); p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ p->nTotal++; } } static void cume_distInvFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct CallCount *p; UNUSED_PARAMETER(nArg); assert( nArg==0 ); UNUSED_PARAMETER(apArg); p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); p->nStep++; } static void cume_distValueFunc(sqlite3_context *pCtx){ struct CallCount *p; p = (struct CallCount*)sqlite3_aggregate_context(pCtx, 0); if( p ){ double r = (double)(p->nStep) / (double)(p->nTotal); sqlite3_result_double(pCtx, r); } } #define cume_distFinalizeFunc cume_distValueFunc /* ** Context object for ntile() window function. */ struct NtileCtx { i64 nTotal; /* Total rows in partition */ i64 nParam; /* Parameter passed to ntile(N) */ i64 iRow; /* Current row */ }; /* ** Implementation of ntile(). This assumes that the window frame has ** been coerced to: ** ** ROWS CURRENT ROW AND UNBOUNDED FOLLOWING */ static void ntileStepFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct NtileCtx *p; assert( nArg==1 ); UNUSED_PARAMETER(nArg); p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p ){ if( p->nTotal==0 ){ p->nParam = sqlite3_value_int64(apArg[0]); if( p->nParam<=0 ){ sqlite3_result_error( pCtx, "argument of ntile must be a positive integer", -1 ); } } p->nTotal++; } } static void ntileInvFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct NtileCtx *p; assert( nArg==1 ); UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); p->iRow++; } static void ntileValueFunc(sqlite3_context *pCtx){ struct NtileCtx *p; p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p && p->nParam>0 ){ int nSize = (p->nTotal / p->nParam); if( nSize==0 ){ sqlite3_result_int64(pCtx, p->iRow+1); }else{ i64 nLarge = p->nTotal - p->nParam*nSize; i64 iSmall = nLarge*(nSize+1); i64 iRow = p->iRow; assert( (nLarge*(nSize+1) + (p->nParam-nLarge)*nSize)==p->nTotal ); if( iRowpVal); p->pVal = sqlite3_value_dup(apArg[0]); if( p->pVal==0 ){ sqlite3_result_error_nomem(pCtx); }else{ p->nVal++; } } } static void last_valueInvFunc( sqlite3_context *pCtx, int nArg, sqlite3_value **apArg ){ struct LastValueCtx *p; UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(apArg); p = (struct LastValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( ALWAYS(p) ){ p->nVal--; if( p->nVal==0 ){ sqlite3_value_free(p->pVal); p->pVal = 0; } } } static void last_valueValueFunc(sqlite3_context *pCtx){ struct LastValueCtx *p; p = (struct LastValueCtx*)sqlite3_aggregate_context(pCtx, 0); if( p && p->pVal ){ sqlite3_result_value(pCtx, p->pVal); } } static void last_valueFinalizeFunc(sqlite3_context *pCtx){ struct LastValueCtx *p; p = (struct LastValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); if( p && p->pVal ){ sqlite3_result_value(pCtx, p->pVal); sqlite3_value_free(p->pVal); p->pVal = 0; } } /* ** Static names for the built-in window function names. These static ** names are used, rather than string literals, so that FuncDef objects ** can be associated with a particular window function by direct ** comparison of the zName pointer. Example: ** ** if( pFuncDef->zName==row_valueName ){ ... } */ static const char row_numberName[] = "row_number"; static const char dense_rankName[] = "dense_rank"; static const char rankName[] = "rank"; static const char percent_rankName[] = "percent_rank"; static const char cume_distName[] = "cume_dist"; static const char ntileName[] = "ntile"; static const char last_valueName[] = "last_value"; static const char nth_valueName[] = "nth_value"; static const char first_valueName[] = "first_value"; static const char leadName[] = "lead"; static const char lagName[] = "lag"; /* ** No-op implementations of xStep() and xFinalize(). Used as place-holders ** for built-in window functions that never call those interfaces. ** ** The noopValueFunc() is called but is expected to do nothing. The ** noopStepFunc() is never called, and so it is marked with NO_TEST to ** let the test coverage routine know not to expect this function to be ** invoked. */ static void noopStepFunc( /*NO_TEST*/ sqlite3_context *p, /*NO_TEST*/ int n, /*NO_TEST*/ sqlite3_value **a /*NO_TEST*/ ){ /*NO_TEST*/ UNUSED_PARAMETER(p); /*NO_TEST*/ UNUSED_PARAMETER(n); /*NO_TEST*/ UNUSED_PARAMETER(a); /*NO_TEST*/ assert(0); /*NO_TEST*/ } /*NO_TEST*/ static void noopValueFunc(sqlite3_context *p){ UNUSED_PARAMETER(p); /*no-op*/ } /* Window functions that use all window interfaces: xStep, xFinal, ** xValue, and xInverse */ #define WINDOWFUNCALL(name,nArg,extra) { \ nArg, (SQLITE_UTF8|SQLITE_FUNC_WINDOW|extra), 0, 0, \ name ## StepFunc, name ## FinalizeFunc, name ## ValueFunc, \ name ## InvFunc, name ## Name, {0} \ } /* Window functions that are implemented using bytecode and thus have ** no-op routines for their methods */ #define WINDOWFUNCNOOP(name,nArg,extra) { \ nArg, (SQLITE_UTF8|SQLITE_FUNC_WINDOW|extra), 0, 0, \ noopStepFunc, noopValueFunc, noopValueFunc, \ noopStepFunc, name ## Name, {0} \ } /* Window functions that use all window interfaces: xStep, the ** same routine for xFinalize and xValue and which never call ** xInverse. */ #define WINDOWFUNCX(name,nArg,extra) { \ nArg, (SQLITE_UTF8|SQLITE_FUNC_WINDOW|extra), 0, 0, \ name ## StepFunc, name ## ValueFunc, name ## ValueFunc, \ noopStepFunc, name ## Name, {0} \ } /* ** Register those built-in window functions that are not also aggregates. */ SQLITE_PRIVATE void sqlite3WindowFunctions(void){ static FuncDef aWindowFuncs[] = { WINDOWFUNCX(row_number, 0, 0), WINDOWFUNCX(dense_rank, 0, 0), WINDOWFUNCX(rank, 0, 0), WINDOWFUNCALL(percent_rank, 0, 0), WINDOWFUNCALL(cume_dist, 0, 0), WINDOWFUNCALL(ntile, 1, 0), WINDOWFUNCALL(last_value, 1, 0), WINDOWFUNCALL(nth_value, 2, 0), WINDOWFUNCALL(first_value, 1, 0), WINDOWFUNCNOOP(lead, 1, 0), WINDOWFUNCNOOP(lead, 2, 0), WINDOWFUNCNOOP(lead, 3, 0), WINDOWFUNCNOOP(lag, 1, 0), WINDOWFUNCNOOP(lag, 2, 0), WINDOWFUNCNOOP(lag, 3, 0), }; sqlite3InsertBuiltinFuncs(aWindowFuncs, ArraySize(aWindowFuncs)); } static Window *windowFind(Parse *pParse, Window *pList, const char *zName){ Window *p; for(p=pList; p; p=p->pNextWin){ if( sqlite3StrICmp(p->zName, zName)==0 ) break; } if( p==0 ){ sqlite3ErrorMsg(pParse, "no such window: %s", zName); } return p; } /* ** This function is called immediately after resolving the function name ** for a window function within a SELECT statement. Argument pList is a ** linked list of WINDOW definitions for the current SELECT statement. ** Argument pFunc is the function definition just resolved and pWin ** is the Window object representing the associated OVER clause. This ** function updates the contents of pWin as follows: ** ** * If the OVER clause refered to a named window (as in "max(x) OVER win"), ** search list pList for a matching WINDOW definition, and update pWin ** accordingly. If no such WINDOW clause can be found, leave an error ** in pParse. ** ** * If the function is a built-in window function that requires the ** window to be coerced (see "BUILT-IN WINDOW FUNCTIONS" at the top ** of this file), pWin is updated here. */ SQLITE_PRIVATE void sqlite3WindowUpdate( Parse *pParse, Window *pList, /* List of named windows for this SELECT */ Window *pWin, /* Window frame to update */ FuncDef *pFunc /* Window function definition */ ){ if( pWin->zName && pWin->eFrmType==0 ){ Window *p = windowFind(pParse, pList, pWin->zName); if( p==0 ) return; pWin->pPartition = sqlite3ExprListDup(pParse->db, p->pPartition, 0); pWin->pOrderBy = sqlite3ExprListDup(pParse->db, p->pOrderBy, 0); pWin->pStart = sqlite3ExprDup(pParse->db, p->pStart, 0); pWin->pEnd = sqlite3ExprDup(pParse->db, p->pEnd, 0); pWin->eStart = p->eStart; pWin->eEnd = p->eEnd; pWin->eFrmType = p->eFrmType; pWin->eExclude = p->eExclude; }else{ sqlite3WindowChain(pParse, pWin, pList); } if( (pWin->eFrmType==TK_RANGE) && (pWin->pStart || pWin->pEnd) && (pWin->pOrderBy==0 || pWin->pOrderBy->nExpr!=1) ){ sqlite3ErrorMsg(pParse, "RANGE with offset PRECEDING/FOLLOWING requires one ORDER BY expression" ); }else if( pFunc->funcFlags & SQLITE_FUNC_WINDOW ){ sqlite3 *db = pParse->db; if( pWin->pFilter ){ sqlite3ErrorMsg(pParse, "FILTER clause may only be used with aggregate window functions" ); }else{ struct WindowUpdate { const char *zFunc; int eFrmType; int eStart; int eEnd; } aUp[] = { { row_numberName, TK_ROWS, TK_UNBOUNDED, TK_CURRENT }, { dense_rankName, TK_RANGE, TK_UNBOUNDED, TK_CURRENT }, { rankName, TK_RANGE, TK_UNBOUNDED, TK_CURRENT }, { percent_rankName, TK_GROUPS, TK_CURRENT, TK_UNBOUNDED }, { cume_distName, TK_GROUPS, TK_FOLLOWING, TK_UNBOUNDED }, { ntileName, TK_ROWS, TK_CURRENT, TK_UNBOUNDED }, { leadName, TK_ROWS, TK_UNBOUNDED, TK_UNBOUNDED }, { lagName, TK_ROWS, TK_UNBOUNDED, TK_CURRENT }, }; int i; for(i=0; izName==aUp[i].zFunc ){ sqlite3ExprDelete(db, pWin->pStart); sqlite3ExprDelete(db, pWin->pEnd); pWin->pEnd = pWin->pStart = 0; pWin->eFrmType = aUp[i].eFrmType; pWin->eStart = aUp[i].eStart; pWin->eEnd = aUp[i].eEnd; pWin->eExclude = 0; if( pWin->eStart==TK_FOLLOWING ){ pWin->pStart = sqlite3Expr(db, TK_INTEGER, "1"); } break; } } } } pWin->pFunc = pFunc; } /* ** Context object passed through sqlite3WalkExprList() to ** selectWindowRewriteExprCb() by selectWindowRewriteEList(). */ typedef struct WindowRewrite WindowRewrite; struct WindowRewrite { Window *pWin; SrcList *pSrc; ExprList *pSub; Table *pTab; Select *pSubSelect; /* Current sub-select, if any */ }; /* ** Callback function used by selectWindowRewriteEList(). If necessary, ** this function appends to the output expression-list and updates ** expression (*ppExpr) in place. */ static int selectWindowRewriteExprCb(Walker *pWalker, Expr *pExpr){ struct WindowRewrite *p = pWalker->u.pRewrite; Parse *pParse = pWalker->pParse; assert( p!=0 ); assert( p->pWin!=0 ); /* If this function is being called from within a scalar sub-select ** that used by the SELECT statement being processed, only process ** TK_COLUMN expressions that refer to it (the outer SELECT). Do ** not process aggregates or window functions at all, as they belong ** to the scalar sub-select. */ if( p->pSubSelect ){ if( pExpr->op!=TK_COLUMN ){ return WRC_Continue; }else{ int nSrc = p->pSrc->nSrc; int i; for(i=0; iiTable==p->pSrc->a[i].iCursor ) break; } if( i==nSrc ) return WRC_Continue; } } switch( pExpr->op ){ case TK_FUNCTION: if( !ExprHasProperty(pExpr, EP_WinFunc) ){ break; }else{ Window *pWin; for(pWin=p->pWin; pWin; pWin=pWin->pNextWin){ if( pExpr->y.pWin==pWin ){ assert( pWin->pOwner==pExpr ); return WRC_Prune; } } } /* no break */ deliberate_fall_through case TK_AGG_FUNCTION: case TK_COLUMN: { int iCol = -1; if( p->pSub ){ int i; for(i=0; ipSub->nExpr; i++){ if( 0==sqlite3ExprCompare(0, p->pSub->a[i].pExpr, pExpr, -1) ){ iCol = i; break; } } } if( iCol<0 ){ Expr *pDup = sqlite3ExprDup(pParse->db, pExpr, 0); if( pDup && pDup->op==TK_AGG_FUNCTION ) pDup->op = TK_FUNCTION; p->pSub = sqlite3ExprListAppend(pParse, p->pSub, pDup); } if( p->pSub ){ int f = pExpr->flags & EP_Collate; assert( ExprHasProperty(pExpr, EP_Static)==0 ); ExprSetProperty(pExpr, EP_Static); sqlite3ExprDelete(pParse->db, pExpr); ExprClearProperty(pExpr, EP_Static); memset(pExpr, 0, sizeof(Expr)); pExpr->op = TK_COLUMN; pExpr->iColumn = (iCol<0 ? p->pSub->nExpr-1: iCol); pExpr->iTable = p->pWin->iEphCsr; pExpr->y.pTab = p->pTab; pExpr->flags = f; } if( pParse->db->mallocFailed ) return WRC_Abort; break; } default: /* no-op */ break; } return WRC_Continue; } static int selectWindowRewriteSelectCb(Walker *pWalker, Select *pSelect){ struct WindowRewrite *p = pWalker->u.pRewrite; Select *pSave = p->pSubSelect; if( pSave==pSelect ){ return WRC_Continue; }else{ p->pSubSelect = pSelect; sqlite3WalkSelect(pWalker, pSelect); p->pSubSelect = pSave; } return WRC_Prune; } /* ** Iterate through each expression in expression-list pEList. For each: ** ** * TK_COLUMN, ** * aggregate function, or ** * window function with a Window object that is not a member of the ** Window list passed as the second argument (pWin). ** ** Append the node to output expression-list (*ppSub). And replace it ** with a TK_COLUMN that reads the (N-1)th element of table ** pWin->iEphCsr, where N is the number of elements in (*ppSub) after ** appending the new one. */ static void selectWindowRewriteEList( Parse *pParse, Window *pWin, SrcList *pSrc, ExprList *pEList, /* Rewrite expressions in this list */ Table *pTab, ExprList **ppSub /* IN/OUT: Sub-select expression-list */ ){ Walker sWalker; WindowRewrite sRewrite; assert( pWin!=0 ); memset(&sWalker, 0, sizeof(Walker)); memset(&sRewrite, 0, sizeof(WindowRewrite)); sRewrite.pSub = *ppSub; sRewrite.pWin = pWin; sRewrite.pSrc = pSrc; sRewrite.pTab = pTab; sWalker.pParse = pParse; sWalker.xExprCallback = selectWindowRewriteExprCb; sWalker.xSelectCallback = selectWindowRewriteSelectCb; sWalker.u.pRewrite = &sRewrite; (void)sqlite3WalkExprList(&sWalker, pEList); *ppSub = sRewrite.pSub; } /* ** Append a copy of each expression in expression-list pAppend to ** expression list pList. Return a pointer to the result list. */ static ExprList *exprListAppendList( Parse *pParse, /* Parsing context */ ExprList *pList, /* List to which to append. Might be NULL */ ExprList *pAppend, /* List of values to append. Might be NULL */ int bIntToNull ){ if( pAppend ){ int i; int nInit = pList ? pList->nExpr : 0; for(i=0; inExpr; i++){ Expr *pDup = sqlite3ExprDup(pParse->db, pAppend->a[i].pExpr, 0); assert( pDup==0 || !ExprHasProperty(pDup, EP_MemToken) ); if( bIntToNull && pDup ){ int iDummy; Expr *pSub; for(pSub=pDup; ExprHasProperty(pSub, EP_Skip); pSub=pSub->pLeft){ assert( pSub ); } if( sqlite3ExprIsInteger(pSub, &iDummy) ){ pSub->op = TK_NULL; pSub->flags &= ~(EP_IntValue|EP_IsTrue|EP_IsFalse); pSub->u.zToken = 0; } } pList = sqlite3ExprListAppend(pParse, pList, pDup); if( pList ) pList->a[nInit+i].sortFlags = pAppend->a[i].sortFlags; } } return pList; } /* ** When rewriting a query, if the new subquery in the FROM clause ** contains TK_AGG_FUNCTION nodes that refer to an outer query, ** then we have to increase the Expr->op2 values of those nodes ** due to the extra subquery layer that was added. ** ** See also the incrAggDepth() routine in resolve.c */ static int sqlite3WindowExtraAggFuncDepth(Walker *pWalker, Expr *pExpr){ if( pExpr->op==TK_AGG_FUNCTION && pExpr->op2>=pWalker->walkerDepth ){ pExpr->op2++; } return WRC_Continue; } /* ** If the SELECT statement passed as the second argument does not invoke ** any SQL window functions, this function is a no-op. Otherwise, it ** rewrites the SELECT statement so that window function xStep functions ** are invoked in the correct order as described under "SELECT REWRITING" ** at the top of this file. */ SQLITE_PRIVATE int sqlite3WindowRewrite(Parse *pParse, Select *p){ int rc = SQLITE_OK; if( p->pWin && p->pPrior==0 && (p->selFlags & SF_WinRewrite)==0 ){ Vdbe *v = sqlite3GetVdbe(pParse); sqlite3 *db = pParse->db; Select *pSub = 0; /* The subquery */ SrcList *pSrc = p->pSrc; Expr *pWhere = p->pWhere; ExprList *pGroupBy = p->pGroupBy; Expr *pHaving = p->pHaving; ExprList *pSort = 0; ExprList *pSublist = 0; /* Expression list for sub-query */ Window *pMWin = p->pWin; /* Main window object */ Window *pWin; /* Window object iterator */ Table *pTab; Walker w; u32 selFlags = p->selFlags; pTab = sqlite3DbMallocZero(db, sizeof(Table)); if( pTab==0 ){ return sqlite3ErrorToParser(db, SQLITE_NOMEM); } sqlite3AggInfoPersistWalkerInit(&w, pParse); sqlite3WalkSelect(&w, p); p->pSrc = 0; p->pWhere = 0; p->pGroupBy = 0; p->pHaving = 0; p->selFlags &= ~SF_Aggregate; p->selFlags |= SF_WinRewrite; /* Create the ORDER BY clause for the sub-select. This is the concatenation ** of the window PARTITION and ORDER BY clauses. Then, if this makes it ** redundant, remove the ORDER BY from the parent SELECT. */ pSort = exprListAppendList(pParse, 0, pMWin->pPartition, 1); pSort = exprListAppendList(pParse, pSort, pMWin->pOrderBy, 1); if( pSort && p->pOrderBy && p->pOrderBy->nExpr<=pSort->nExpr ){ int nSave = pSort->nExpr; pSort->nExpr = p->pOrderBy->nExpr; if( sqlite3ExprListCompare(pSort, p->pOrderBy, -1)==0 ){ sqlite3ExprListDelete(db, p->pOrderBy); p->pOrderBy = 0; } pSort->nExpr = nSave; } /* Assign a cursor number for the ephemeral table used to buffer rows. ** The OpenEphemeral instruction is coded later, after it is known how ** many columns the table will have. */ pMWin->iEphCsr = pParse->nTab++; pParse->nTab += 3; selectWindowRewriteEList(pParse, pMWin, pSrc, p->pEList, pTab, &pSublist); selectWindowRewriteEList(pParse, pMWin, pSrc, p->pOrderBy, pTab, &pSublist); pMWin->nBufferCol = (pSublist ? pSublist->nExpr : 0); /* Append the PARTITION BY and ORDER BY expressions to the to the ** sub-select expression list. They are required to figure out where ** boundaries for partitions and sets of peer rows lie. */ pSublist = exprListAppendList(pParse, pSublist, pMWin->pPartition, 0); pSublist = exprListAppendList(pParse, pSublist, pMWin->pOrderBy, 0); /* Append the arguments passed to each window function to the ** sub-select expression list. Also allocate two registers for each ** window function - one for the accumulator, another for interim ** results. */ for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ ExprList *pArgs = pWin->pOwner->x.pList; if( pWin->pFunc->funcFlags & SQLITE_FUNC_SUBTYPE ){ selectWindowRewriteEList(pParse, pMWin, pSrc, pArgs, pTab, &pSublist); pWin->iArgCol = (pSublist ? pSublist->nExpr : 0); pWin->bExprArgs = 1; }else{ pWin->iArgCol = (pSublist ? pSublist->nExpr : 0); pSublist = exprListAppendList(pParse, pSublist, pArgs, 0); } if( pWin->pFilter ){ Expr *pFilter = sqlite3ExprDup(db, pWin->pFilter, 0); pSublist = sqlite3ExprListAppend(pParse, pSublist, pFilter); } pWin->regAccum = ++pParse->nMem; pWin->regResult = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); } /* If there is no ORDER BY or PARTITION BY clause, and the window ** function accepts zero arguments, and there are no other columns ** selected (e.g. "SELECT row_number() OVER () FROM t1"), it is possible ** that pSublist is still NULL here. Add a constant expression here to ** keep everything legal in this case. */ if( pSublist==0 ){ pSublist = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db, TK_INTEGER, "0") ); } pSub = sqlite3SelectNew( pParse, pSublist, pSrc, pWhere, pGroupBy, pHaving, pSort, 0, 0 ); SELECTTRACE(1,pParse,pSub, ("New window-function subquery in FROM clause of (%u/%p)\n", p->selId, p)); p->pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0); if( p->pSrc ){ Table *pTab2; p->pSrc->a[0].pSelect = pSub; sqlite3SrcListAssignCursors(pParse, p->pSrc); pSub->selFlags |= SF_Expanded; pTab2 = sqlite3ResultSetOfSelect(pParse, pSub, SQLITE_AFF_NONE); pSub->selFlags |= (selFlags & SF_Aggregate); if( pTab2==0 ){ /* Might actually be some other kind of error, but in that case ** pParse->nErr will be set, so if SQLITE_NOMEM is set, we will get ** the correct error message regardless. */ rc = SQLITE_NOMEM; }else{ memcpy(pTab, pTab2, sizeof(Table)); pTab->tabFlags |= TF_Ephemeral; p->pSrc->a[0].pTab = pTab; pTab = pTab2; memset(&w, 0, sizeof(w)); w.xExprCallback = sqlite3WindowExtraAggFuncDepth; w.xSelectCallback = sqlite3WalkerDepthIncrease; w.xSelectCallback2 = sqlite3WalkerDepthDecrease; sqlite3WalkSelect(&w, pSub); } }else{ sqlite3SelectDelete(db, pSub); } if( db->mallocFailed ) rc = SQLITE_NOMEM; sqlite3DbFree(db, pTab); } if( rc ){ if( pParse->nErr==0 ){ assert( pParse->db->mallocFailed ); sqlite3ErrorToParser(pParse->db, SQLITE_NOMEM); } } return rc; } /* ** Unlink the Window object from the Select to which it is attached, ** if it is attached. */ SQLITE_PRIVATE void sqlite3WindowUnlinkFromSelect(Window *p){ if( p->ppThis ){ *p->ppThis = p->pNextWin; if( p->pNextWin ) p->pNextWin->ppThis = p->ppThis; p->ppThis = 0; } } /* ** Free the Window object passed as the second argument. */ SQLITE_PRIVATE void sqlite3WindowDelete(sqlite3 *db, Window *p){ if( p ){ sqlite3WindowUnlinkFromSelect(p); sqlite3ExprDelete(db, p->pFilter); sqlite3ExprListDelete(db, p->pPartition); sqlite3ExprListDelete(db, p->pOrderBy); sqlite3ExprDelete(db, p->pEnd); sqlite3ExprDelete(db, p->pStart); sqlite3DbFree(db, p->zName); sqlite3DbFree(db, p->zBase); sqlite3DbFree(db, p); } } /* ** Free the linked list of Window objects starting at the second argument. */ SQLITE_PRIVATE void sqlite3WindowListDelete(sqlite3 *db, Window *p){ while( p ){ Window *pNext = p->pNextWin; sqlite3WindowDelete(db, p); p = pNext; } } /* ** The argument expression is an PRECEDING or FOLLOWING offset. The ** value should be a non-negative integer. If the value is not a ** constant, change it to NULL. The fact that it is then a non-negative ** integer will be caught later. But it is important not to leave ** variable values in the expression tree. */ static Expr *sqlite3WindowOffsetExpr(Parse *pParse, Expr *pExpr){ if( 0==sqlite3ExprIsConstant(pExpr) ){ if( IN_RENAME_OBJECT ) sqlite3RenameExprUnmap(pParse, pExpr); sqlite3ExprDelete(pParse->db, pExpr); pExpr = sqlite3ExprAlloc(pParse->db, TK_NULL, 0, 0); } return pExpr; } /* ** Allocate and return a new Window object describing a Window Definition. */ SQLITE_PRIVATE Window *sqlite3WindowAlloc( Parse *pParse, /* Parsing context */ int eType, /* Frame type. TK_RANGE, TK_ROWS, TK_GROUPS, or 0 */ int eStart, /* Start type: CURRENT, PRECEDING, FOLLOWING, UNBOUNDED */ Expr *pStart, /* Start window size if TK_PRECEDING or FOLLOWING */ int eEnd, /* End type: CURRENT, FOLLOWING, TK_UNBOUNDED, PRECEDING */ Expr *pEnd, /* End window size if TK_FOLLOWING or PRECEDING */ u8 eExclude /* EXCLUDE clause */ ){ Window *pWin = 0; int bImplicitFrame = 0; /* Parser assures the following: */ assert( eType==0 || eType==TK_RANGE || eType==TK_ROWS || eType==TK_GROUPS ); assert( eStart==TK_CURRENT || eStart==TK_PRECEDING || eStart==TK_UNBOUNDED || eStart==TK_FOLLOWING ); assert( eEnd==TK_CURRENT || eEnd==TK_FOLLOWING || eEnd==TK_UNBOUNDED || eEnd==TK_PRECEDING ); assert( (eStart==TK_PRECEDING || eStart==TK_FOLLOWING)==(pStart!=0) ); assert( (eEnd==TK_FOLLOWING || eEnd==TK_PRECEDING)==(pEnd!=0) ); if( eType==0 ){ bImplicitFrame = 1; eType = TK_RANGE; } /* Additionally, the ** starting boundary type may not occur earlier in the following list than ** the ending boundary type: ** ** UNBOUNDED PRECEDING ** PRECEDING ** CURRENT ROW ** FOLLOWING ** UNBOUNDED FOLLOWING ** ** The parser ensures that "UNBOUNDED PRECEDING" cannot be used as an ending ** boundary, and than "UNBOUNDED FOLLOWING" cannot be used as a starting ** frame boundary. */ if( (eStart==TK_CURRENT && eEnd==TK_PRECEDING) || (eStart==TK_FOLLOWING && (eEnd==TK_PRECEDING || eEnd==TK_CURRENT)) ){ sqlite3ErrorMsg(pParse, "unsupported frame specification"); goto windowAllocErr; } pWin = (Window*)sqlite3DbMallocZero(pParse->db, sizeof(Window)); if( pWin==0 ) goto windowAllocErr; pWin->eFrmType = eType; pWin->eStart = eStart; pWin->eEnd = eEnd; if( eExclude==0 && OptimizationDisabled(pParse->db, SQLITE_WindowFunc) ){ eExclude = TK_NO; } pWin->eExclude = eExclude; pWin->bImplicitFrame = bImplicitFrame; pWin->pEnd = sqlite3WindowOffsetExpr(pParse, pEnd); pWin->pStart = sqlite3WindowOffsetExpr(pParse, pStart); return pWin; windowAllocErr: sqlite3ExprDelete(pParse->db, pEnd); sqlite3ExprDelete(pParse->db, pStart); return 0; } /* ** Attach PARTITION and ORDER BY clauses pPartition and pOrderBy to window ** pWin. Also, if parameter pBase is not NULL, set pWin->zBase to the ** equivalent nul-terminated string. */ SQLITE_PRIVATE Window *sqlite3WindowAssemble( Parse *pParse, Window *pWin, ExprList *pPartition, ExprList *pOrderBy, Token *pBase ){ if( pWin ){ pWin->pPartition = pPartition; pWin->pOrderBy = pOrderBy; if( pBase ){ pWin->zBase = sqlite3DbStrNDup(pParse->db, pBase->z, pBase->n); } }else{ sqlite3ExprListDelete(pParse->db, pPartition); sqlite3ExprListDelete(pParse->db, pOrderBy); } return pWin; } /* ** Window *pWin has just been created from a WINDOW clause. Tokne pBase ** is the base window. Earlier windows from the same WINDOW clause are ** stored in the linked list starting at pWin->pNextWin. This function ** either updates *pWin according to the base specification, or else ** leaves an error in pParse. */ SQLITE_PRIVATE void sqlite3WindowChain(Parse *pParse, Window *pWin, Window *pList){ if( pWin->zBase ){ sqlite3 *db = pParse->db; Window *pExist = windowFind(pParse, pList, pWin->zBase); if( pExist ){ const char *zErr = 0; /* Check for errors */ if( pWin->pPartition ){ zErr = "PARTITION clause"; }else if( pExist->pOrderBy && pWin->pOrderBy ){ zErr = "ORDER BY clause"; }else if( pExist->bImplicitFrame==0 ){ zErr = "frame specification"; } if( zErr ){ sqlite3ErrorMsg(pParse, "cannot override %s of window: %s", zErr, pWin->zBase ); }else{ pWin->pPartition = sqlite3ExprListDup(db, pExist->pPartition, 0); if( pExist->pOrderBy ){ assert( pWin->pOrderBy==0 ); pWin->pOrderBy = sqlite3ExprListDup(db, pExist->pOrderBy, 0); } sqlite3DbFree(db, pWin->zBase); pWin->zBase = 0; } } } } /* ** Attach window object pWin to expression p. */ SQLITE_PRIVATE void sqlite3WindowAttach(Parse *pParse, Expr *p, Window *pWin){ if( p ){ assert( p->op==TK_FUNCTION ); assert( pWin ); p->y.pWin = pWin; ExprSetProperty(p, EP_WinFunc); pWin->pOwner = p; if( (p->flags & EP_Distinct) && pWin->eFrmType!=TK_FILTER ){ sqlite3ErrorMsg(pParse, "DISTINCT is not supported for window functions" ); } }else{ sqlite3WindowDelete(pParse->db, pWin); } } /* ** Possibly link window pWin into the list at pSel->pWin (window functions ** to be processed as part of SELECT statement pSel). The window is linked ** in if either (a) there are no other windows already linked to this ** SELECT, or (b) the windows already linked use a compatible window frame. */ SQLITE_PRIVATE void sqlite3WindowLink(Select *pSel, Window *pWin){ if( pSel!=0 && (0==pSel->pWin || 0==sqlite3WindowCompare(0, pSel->pWin, pWin, 0)) ){ pWin->pNextWin = pSel->pWin; if( pSel->pWin ){ pSel->pWin->ppThis = &pWin->pNextWin; } pSel->pWin = pWin; pWin->ppThis = &pSel->pWin; } } /* ** Return 0 if the two window objects are identical, 1 if they are ** different, or 2 if it cannot be determined if the objects are identical ** or not. Identical window objects can be processed in a single scan. */ SQLITE_PRIVATE int sqlite3WindowCompare(Parse *pParse, Window *p1, Window *p2, int bFilter){ int res; if( NEVER(p1==0) || NEVER(p2==0) ) return 1; if( p1->eFrmType!=p2->eFrmType ) return 1; if( p1->eStart!=p2->eStart ) return 1; if( p1->eEnd!=p2->eEnd ) return 1; if( p1->eExclude!=p2->eExclude ) return 1; if( sqlite3ExprCompare(pParse, p1->pStart, p2->pStart, -1) ) return 1; if( sqlite3ExprCompare(pParse, p1->pEnd, p2->pEnd, -1) ) return 1; if( (res = sqlite3ExprListCompare(p1->pPartition, p2->pPartition, -1)) ){ return res; } if( (res = sqlite3ExprListCompare(p1->pOrderBy, p2->pOrderBy, -1)) ){ return res; } if( bFilter ){ if( (res = sqlite3ExprCompare(pParse, p1->pFilter, p2->pFilter, -1)) ){ return res; } } return 0; } /* ** This is called by code in select.c before it calls sqlite3WhereBegin() ** to begin iterating through the sub-query results. It is used to allocate ** and initialize registers and cursors used by sqlite3WindowCodeStep(). */ SQLITE_PRIVATE void sqlite3WindowCodeInit(Parse *pParse, Select *pSelect){ int nEphExpr = pSelect->pSrc->a[0].pSelect->pEList->nExpr; Window *pMWin = pSelect->pWin; Window *pWin; Vdbe *v = sqlite3GetVdbe(pParse); sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pMWin->iEphCsr, nEphExpr); sqlite3VdbeAddOp2(v, OP_OpenDup, pMWin->iEphCsr+1, pMWin->iEphCsr); sqlite3VdbeAddOp2(v, OP_OpenDup, pMWin->iEphCsr+2, pMWin->iEphCsr); sqlite3VdbeAddOp2(v, OP_OpenDup, pMWin->iEphCsr+3, pMWin->iEphCsr); /* Allocate registers to use for PARTITION BY values, if any. Initialize ** said registers to NULL. */ if( pMWin->pPartition ){ int nExpr = pMWin->pPartition->nExpr; pMWin->regPart = pParse->nMem+1; pParse->nMem += nExpr; sqlite3VdbeAddOp3(v, OP_Null, 0, pMWin->regPart, pMWin->regPart+nExpr-1); } pMWin->regOne = ++pParse->nMem; sqlite3VdbeAddOp2(v, OP_Integer, 1, pMWin->regOne); if( pMWin->eExclude ){ pMWin->regStartRowid = ++pParse->nMem; pMWin->regEndRowid = ++pParse->nMem; pMWin->csrApp = pParse->nTab++; sqlite3VdbeAddOp2(v, OP_Integer, 1, pMWin->regStartRowid); sqlite3VdbeAddOp2(v, OP_Integer, 0, pMWin->regEndRowid); sqlite3VdbeAddOp2(v, OP_OpenDup, pMWin->csrApp, pMWin->iEphCsr); return; } for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ FuncDef *p = pWin->pFunc; if( (p->funcFlags & SQLITE_FUNC_MINMAX) && pWin->eStart!=TK_UNBOUNDED ){ /* The inline versions of min() and max() require a single ephemeral ** table and 3 registers. The registers are used as follows: ** ** regApp+0: slot to copy min()/max() argument to for MakeRecord ** regApp+1: integer value used to ensure keys are unique ** regApp+2: output of MakeRecord */ ExprList *pList = pWin->pOwner->x.pList; KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pList, 0, 0); pWin->csrApp = pParse->nTab++; pWin->regApp = pParse->nMem+1; pParse->nMem += 3; if( pKeyInfo && pWin->pFunc->zName[1]=='i' ){ assert( pKeyInfo->aSortFlags[0]==0 ); pKeyInfo->aSortFlags[0] = KEYINFO_ORDER_DESC; } sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pWin->csrApp, 2); sqlite3VdbeAppendP4(v, pKeyInfo, P4_KEYINFO); sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp+1); } else if( p->zName==nth_valueName || p->zName==first_valueName ){ /* Allocate two registers at pWin->regApp. These will be used to ** store the start and end index of the current frame. */ pWin->regApp = pParse->nMem+1; pWin->csrApp = pParse->nTab++; pParse->nMem += 2; sqlite3VdbeAddOp2(v, OP_OpenDup, pWin->csrApp, pMWin->iEphCsr); } else if( p->zName==leadName || p->zName==lagName ){ pWin->csrApp = pParse->nTab++; sqlite3VdbeAddOp2(v, OP_OpenDup, pWin->csrApp, pMWin->iEphCsr); } } } #define WINDOW_STARTING_INT 0 #define WINDOW_ENDING_INT 1 #define WINDOW_NTH_VALUE_INT 2 #define WINDOW_STARTING_NUM 3 #define WINDOW_ENDING_NUM 4 /* ** A "PRECEDING " (eCond==0) or "FOLLOWING " (eCond==1) or the ** value of the second argument to nth_value() (eCond==2) has just been ** evaluated and the result left in register reg. This function generates VM ** code to check that the value is a non-negative integer and throws an ** exception if it is not. */ static void windowCheckValue(Parse *pParse, int reg, int eCond){ static const char *azErr[] = { "frame starting offset must be a non-negative integer", "frame ending offset must be a non-negative integer", "second argument to nth_value must be a positive integer", "frame starting offset must be a non-negative number", "frame ending offset must be a non-negative number", }; static int aOp[] = { OP_Ge, OP_Ge, OP_Gt, OP_Ge, OP_Ge }; Vdbe *v = sqlite3GetVdbe(pParse); int regZero = sqlite3GetTempReg(pParse); assert( eCond>=0 && eCond=WINDOW_STARTING_NUM ){ int regString = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp4(v, OP_String8, 0, regString, 0, "", P4_STATIC); sqlite3VdbeAddOp3(v, OP_Ge, regString, sqlite3VdbeCurrentAddr(v)+2, reg); sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC|SQLITE_JUMPIFNULL); VdbeCoverage(v); assert( eCond==3 || eCond==4 ); VdbeCoverageIf(v, eCond==3); VdbeCoverageIf(v, eCond==4); }else{ sqlite3VdbeAddOp2(v, OP_MustBeInt, reg, sqlite3VdbeCurrentAddr(v)+2); VdbeCoverage(v); assert( eCond==0 || eCond==1 || eCond==2 ); VdbeCoverageIf(v, eCond==0); VdbeCoverageIf(v, eCond==1); VdbeCoverageIf(v, eCond==2); } sqlite3VdbeAddOp3(v, aOp[eCond], regZero, sqlite3VdbeCurrentAddr(v)+2, reg); VdbeCoverageNeverNullIf(v, eCond==0); /* NULL case captured by */ VdbeCoverageNeverNullIf(v, eCond==1); /* the OP_MustBeInt */ VdbeCoverageNeverNullIf(v, eCond==2); VdbeCoverageNeverNullIf(v, eCond==3); /* NULL case caught by */ VdbeCoverageNeverNullIf(v, eCond==4); /* the OP_Ge */ sqlite3MayAbort(pParse); sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_ERROR, OE_Abort); sqlite3VdbeAppendP4(v, (void*)azErr[eCond], P4_STATIC); sqlite3ReleaseTempReg(pParse, regZero); } /* ** Return the number of arguments passed to the window-function associated ** with the object passed as the only argument to this function. */ static int windowArgCount(Window *pWin){ ExprList *pList = pWin->pOwner->x.pList; return (pList ? pList->nExpr : 0); } typedef struct WindowCodeArg WindowCodeArg; typedef struct WindowCsrAndReg WindowCsrAndReg; /* ** See comments above struct WindowCodeArg. */ struct WindowCsrAndReg { int csr; /* Cursor number */ int reg; /* First in array of peer values */ }; /* ** A single instance of this structure is allocated on the stack by ** sqlite3WindowCodeStep() and a pointer to it passed to the various helper ** routines. This is to reduce the number of arguments required by each ** helper function. ** ** regArg: ** Each window function requires an accumulator register (just as an ** ordinary aggregate function does). This variable is set to the first ** in an array of accumulator registers - one for each window function ** in the WindowCodeArg.pMWin list. ** ** eDelete: ** The window functions implementation sometimes caches the input rows ** that it processes in a temporary table. If it is not zero, this ** variable indicates when rows may be removed from the temp table (in ** order to reduce memory requirements - it would always be safe just ** to leave them there). Possible values for eDelete are: ** ** WINDOW_RETURN_ROW: ** An input row can be discarded after it is returned to the caller. ** ** WINDOW_AGGINVERSE: ** An input row can be discarded after the window functions xInverse() ** callbacks have been invoked in it. ** ** WINDOW_AGGSTEP: ** An input row can be discarded after the window functions xStep() ** callbacks have been invoked in it. ** ** start,current,end ** Consider a window-frame similar to the following: ** ** (ORDER BY a, b GROUPS BETWEEN 2 PRECEDING AND 2 FOLLOWING) ** ** The windows functions implmentation caches the input rows in a temp ** table, sorted by "a, b" (it actually populates the cache lazily, and ** aggressively removes rows once they are no longer required, but that's ** a mere detail). It keeps three cursors open on the temp table. One ** (current) that points to the next row to return to the query engine ** once its window function values have been calculated. Another (end) ** points to the next row to call the xStep() method of each window function ** on (so that it is 2 groups ahead of current). And a third (start) that ** points to the next row to call the xInverse() method of each window ** function on. ** ** Each cursor (start, current and end) consists of a VDBE cursor ** (WindowCsrAndReg.csr) and an array of registers (starting at ** WindowCodeArg.reg) that always contains a copy of the peer values ** read from the corresponding cursor. ** ** Depending on the window-frame in question, all three cursors may not ** be required. In this case both WindowCodeArg.csr and reg are set to ** 0. */ struct WindowCodeArg { Parse *pParse; /* Parse context */ Window *pMWin; /* First in list of functions being processed */ Vdbe *pVdbe; /* VDBE object */ int addrGosub; /* OP_Gosub to this address to return one row */ int regGosub; /* Register used with OP_Gosub(addrGosub) */ int regArg; /* First in array of accumulator registers */ int eDelete; /* See above */ WindowCsrAndReg start; WindowCsrAndReg current; WindowCsrAndReg end; }; /* ** Generate VM code to read the window frames peer values from cursor csr into ** an array of registers starting at reg. */ static void windowReadPeerValues( WindowCodeArg *p, int csr, int reg ){ Window *pMWin = p->pMWin; ExprList *pOrderBy = pMWin->pOrderBy; if( pOrderBy ){ Vdbe *v = sqlite3GetVdbe(p->pParse); ExprList *pPart = pMWin->pPartition; int iColOff = pMWin->nBufferCol + (pPart ? pPart->nExpr : 0); int i; for(i=0; inExpr; i++){ sqlite3VdbeAddOp3(v, OP_Column, csr, iColOff+i, reg+i); } } } /* ** Generate VM code to invoke either xStep() (if bInverse is 0) or ** xInverse (if bInverse is non-zero) for each window function in the ** linked list starting at pMWin. Or, for built-in window functions ** that do not use the standard function API, generate the required ** inline VM code. ** ** If argument csr is greater than or equal to 0, then argument reg is ** the first register in an array of registers guaranteed to be large ** enough to hold the array of arguments for each function. In this case ** the arguments are extracted from the current row of csr into the ** array of registers before invoking OP_AggStep or OP_AggInverse ** ** Or, if csr is less than zero, then the array of registers at reg is ** already populated with all columns from the current row of the sub-query. ** ** If argument regPartSize is non-zero, then it is a register containing the ** number of rows in the current partition. */ static void windowAggStep( WindowCodeArg *p, Window *pMWin, /* Linked list of window functions */ int csr, /* Read arguments from this cursor */ int bInverse, /* True to invoke xInverse instead of xStep */ int reg /* Array of registers */ ){ Parse *pParse = p->pParse; Vdbe *v = sqlite3GetVdbe(pParse); Window *pWin; for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ FuncDef *pFunc = pWin->pFunc; int regArg; int nArg = pWin->bExprArgs ? 0 : windowArgCount(pWin); int i; assert( bInverse==0 || pWin->eStart!=TK_UNBOUNDED ); /* All OVER clauses in the same window function aggregate step must ** be the same. */ assert( pWin==pMWin || sqlite3WindowCompare(pParse,pWin,pMWin,0)!=1 ); for(i=0; izName!=nth_valueName ){ sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol+i, reg+i); }else{ sqlite3VdbeAddOp3(v, OP_Column, pMWin->iEphCsr, pWin->iArgCol+i, reg+i); } } regArg = reg; if( pMWin->regStartRowid==0 && (pFunc->funcFlags & SQLITE_FUNC_MINMAX) && (pWin->eStart!=TK_UNBOUNDED) ){ int addrIsNull = sqlite3VdbeAddOp1(v, OP_IsNull, regArg); VdbeCoverage(v); if( bInverse==0 ){ sqlite3VdbeAddOp2(v, OP_AddImm, pWin->regApp+1, 1); sqlite3VdbeAddOp2(v, OP_SCopy, regArg, pWin->regApp); sqlite3VdbeAddOp3(v, OP_MakeRecord, pWin->regApp, 2, pWin->regApp+2); sqlite3VdbeAddOp2(v, OP_IdxInsert, pWin->csrApp, pWin->regApp+2); }else{ sqlite3VdbeAddOp4Int(v, OP_SeekGE, pWin->csrApp, 0, regArg, 1); VdbeCoverageNeverTaken(v); sqlite3VdbeAddOp1(v, OP_Delete, pWin->csrApp); sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); } sqlite3VdbeJumpHere(v, addrIsNull); }else if( pWin->regApp ){ assert( pFunc->zName==nth_valueName || pFunc->zName==first_valueName ); assert( bInverse==0 || bInverse==1 ); sqlite3VdbeAddOp2(v, OP_AddImm, pWin->regApp+1-bInverse, 1); }else if( pFunc->xSFunc!=noopStepFunc ){ int addrIf = 0; if( pWin->pFilter ){ int regTmp; assert( pWin->bExprArgs || !nArg ||nArg==pWin->pOwner->x.pList->nExpr ); assert( pWin->bExprArgs || nArg ||pWin->pOwner->x.pList==0 ); regTmp = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol+nArg,regTmp); addrIf = sqlite3VdbeAddOp3(v, OP_IfNot, regTmp, 0, 1); VdbeCoverage(v); sqlite3ReleaseTempReg(pParse, regTmp); } if( pWin->bExprArgs ){ int iStart = sqlite3VdbeCurrentAddr(v); VdbeOp *pOp, *pEnd; nArg = pWin->pOwner->x.pList->nExpr; regArg = sqlite3GetTempRange(pParse, nArg); sqlite3ExprCodeExprList(pParse, pWin->pOwner->x.pList, regArg, 0, 0); pEnd = sqlite3VdbeGetOp(v, -1); for(pOp=sqlite3VdbeGetOp(v, iStart); pOp<=pEnd; pOp++){ if( pOp->opcode==OP_Column && pOp->p1==pWin->iEphCsr ){ pOp->p1 = csr; } } } if( pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL ){ CollSeq *pColl; assert( nArg>0 ); pColl = sqlite3ExprNNCollSeq(pParse, pWin->pOwner->x.pList->a[0].pExpr); sqlite3VdbeAddOp4(v, OP_CollSeq, 0,0,0, (const char*)pColl, P4_COLLSEQ); } sqlite3VdbeAddOp3(v, bInverse? OP_AggInverse : OP_AggStep, bInverse, regArg, pWin->regAccum); sqlite3VdbeAppendP4(v, pFunc, P4_FUNCDEF); sqlite3VdbeChangeP5(v, (u8)nArg); if( pWin->bExprArgs ){ sqlite3ReleaseTempRange(pParse, regArg, nArg); } if( addrIf ) sqlite3VdbeJumpHere(v, addrIf); } } } /* ** Values that may be passed as the second argument to windowCodeOp(). */ #define WINDOW_RETURN_ROW 1 #define WINDOW_AGGINVERSE 2 #define WINDOW_AGGSTEP 3 /* ** Generate VM code to invoke either xValue() (bFin==0) or xFinalize() ** (bFin==1) for each window function in the linked list starting at ** pMWin. Or, for built-in window-functions that do not use the standard ** API, generate the equivalent VM code. */ static void windowAggFinal(WindowCodeArg *p, int bFin){ Parse *pParse = p->pParse; Window *pMWin = p->pMWin; Vdbe *v = sqlite3GetVdbe(pParse); Window *pWin; for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ if( pMWin->regStartRowid==0 && (pWin->pFunc->funcFlags & SQLITE_FUNC_MINMAX) && (pWin->eStart!=TK_UNBOUNDED) ){ sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regResult); sqlite3VdbeAddOp1(v, OP_Last, pWin->csrApp); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_Column, pWin->csrApp, 0, pWin->regResult); sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); }else if( pWin->regApp ){ assert( pMWin->regStartRowid==0 ); }else{ int nArg = windowArgCount(pWin); if( bFin ){ sqlite3VdbeAddOp2(v, OP_AggFinal, pWin->regAccum, nArg); sqlite3VdbeAppendP4(v, pWin->pFunc, P4_FUNCDEF); sqlite3VdbeAddOp2(v, OP_Copy, pWin->regAccum, pWin->regResult); sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); }else{ sqlite3VdbeAddOp3(v, OP_AggValue,pWin->regAccum,nArg,pWin->regResult); sqlite3VdbeAppendP4(v, pWin->pFunc, P4_FUNCDEF); } } } } /* ** Generate code to calculate the current values of all window functions in the ** p->pMWin list by doing a full scan of the current window frame. Store the ** results in the Window.regResult registers, ready to return the upper ** layer. */ static void windowFullScan(WindowCodeArg *p){ Window *pWin; Parse *pParse = p->pParse; Window *pMWin = p->pMWin; Vdbe *v = p->pVdbe; int regCRowid = 0; /* Current rowid value */ int regCPeer = 0; /* Current peer values */ int regRowid = 0; /* AggStep rowid value */ int regPeer = 0; /* AggStep peer values */ int nPeer; int lblNext; int lblBrk; int addrNext; int csr; VdbeModuleComment((v, "windowFullScan begin")); assert( pMWin!=0 ); csr = pMWin->csrApp; nPeer = (pMWin->pOrderBy ? pMWin->pOrderBy->nExpr : 0); lblNext = sqlite3VdbeMakeLabel(pParse); lblBrk = sqlite3VdbeMakeLabel(pParse); regCRowid = sqlite3GetTempReg(pParse); regRowid = sqlite3GetTempReg(pParse); if( nPeer ){ regCPeer = sqlite3GetTempRange(pParse, nPeer); regPeer = sqlite3GetTempRange(pParse, nPeer); } sqlite3VdbeAddOp2(v, OP_Rowid, pMWin->iEphCsr, regCRowid); windowReadPeerValues(p, pMWin->iEphCsr, regCPeer); for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); } sqlite3VdbeAddOp3(v, OP_SeekGE, csr, lblBrk, pMWin->regStartRowid); VdbeCoverage(v); addrNext = sqlite3VdbeCurrentAddr(v); sqlite3VdbeAddOp2(v, OP_Rowid, csr, regRowid); sqlite3VdbeAddOp3(v, OP_Gt, pMWin->regEndRowid, lblBrk, regRowid); VdbeCoverageNeverNull(v); if( pMWin->eExclude==TK_CURRENT ){ sqlite3VdbeAddOp3(v, OP_Eq, regCRowid, lblNext, regRowid); VdbeCoverageNeverNull(v); }else if( pMWin->eExclude!=TK_NO ){ int addr; int addrEq = 0; KeyInfo *pKeyInfo = 0; if( pMWin->pOrderBy ){ pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pMWin->pOrderBy, 0, 0); } if( pMWin->eExclude==TK_TIES ){ addrEq = sqlite3VdbeAddOp3(v, OP_Eq, regCRowid, 0, regRowid); VdbeCoverageNeverNull(v); } if( pKeyInfo ){ windowReadPeerValues(p, csr, regPeer); sqlite3VdbeAddOp3(v, OP_Compare, regPeer, regCPeer, nPeer); sqlite3VdbeAppendP4(v, (void*)pKeyInfo, P4_KEYINFO); addr = sqlite3VdbeCurrentAddr(v)+1; sqlite3VdbeAddOp3(v, OP_Jump, addr, lblNext, addr); VdbeCoverageEqNe(v); }else{ sqlite3VdbeAddOp2(v, OP_Goto, 0, lblNext); } if( addrEq ) sqlite3VdbeJumpHere(v, addrEq); } windowAggStep(p, pMWin, csr, 0, p->regArg); sqlite3VdbeResolveLabel(v, lblNext); sqlite3VdbeAddOp2(v, OP_Next, csr, addrNext); VdbeCoverage(v); sqlite3VdbeJumpHere(v, addrNext-1); sqlite3VdbeJumpHere(v, addrNext+1); sqlite3ReleaseTempReg(pParse, regRowid); sqlite3ReleaseTempReg(pParse, regCRowid); if( nPeer ){ sqlite3ReleaseTempRange(pParse, regPeer, nPeer); sqlite3ReleaseTempRange(pParse, regCPeer, nPeer); } windowAggFinal(p, 1); VdbeModuleComment((v, "windowFullScan end")); } /* ** Invoke the sub-routine at regGosub (generated by code in select.c) to ** return the current row of Window.iEphCsr. If all window functions are ** aggregate window functions that use the standard API, a single ** OP_Gosub instruction is all that this routine generates. Extra VM code ** for per-row processing is only generated for the following built-in window ** functions: ** ** nth_value() ** first_value() ** lag() ** lead() */ static void windowReturnOneRow(WindowCodeArg *p){ Window *pMWin = p->pMWin; Vdbe *v = p->pVdbe; if( pMWin->regStartRowid ){ windowFullScan(p); }else{ Parse *pParse = p->pParse; Window *pWin; for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ FuncDef *pFunc = pWin->pFunc; if( pFunc->zName==nth_valueName || pFunc->zName==first_valueName ){ int csr = pWin->csrApp; int lbl = sqlite3VdbeMakeLabel(pParse); int tmpReg = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regResult); if( pFunc->zName==nth_valueName ){ sqlite3VdbeAddOp3(v, OP_Column,pMWin->iEphCsr,pWin->iArgCol+1,tmpReg); windowCheckValue(pParse, tmpReg, 2); }else{ sqlite3VdbeAddOp2(v, OP_Integer, 1, tmpReg); } sqlite3VdbeAddOp3(v, OP_Add, tmpReg, pWin->regApp, tmpReg); sqlite3VdbeAddOp3(v, OP_Gt, pWin->regApp+1, lbl, tmpReg); VdbeCoverageNeverNull(v); sqlite3VdbeAddOp3(v, OP_SeekRowid, csr, 0, tmpReg); VdbeCoverageNeverTaken(v); sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol, pWin->regResult); sqlite3VdbeResolveLabel(v, lbl); sqlite3ReleaseTempReg(pParse, tmpReg); } else if( pFunc->zName==leadName || pFunc->zName==lagName ){ int nArg = pWin->pOwner->x.pList->nExpr; int csr = pWin->csrApp; int lbl = sqlite3VdbeMakeLabel(pParse); int tmpReg = sqlite3GetTempReg(pParse); int iEph = pMWin->iEphCsr; if( nArg<3 ){ sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regResult); }else{ sqlite3VdbeAddOp3(v, OP_Column, iEph,pWin->iArgCol+2,pWin->regResult); } sqlite3VdbeAddOp2(v, OP_Rowid, iEph, tmpReg); if( nArg<2 ){ int val = (pFunc->zName==leadName ? 1 : -1); sqlite3VdbeAddOp2(v, OP_AddImm, tmpReg, val); }else{ int op = (pFunc->zName==leadName ? OP_Add : OP_Subtract); int tmpReg2 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp3(v, OP_Column, iEph, pWin->iArgCol+1, tmpReg2); sqlite3VdbeAddOp3(v, op, tmpReg2, tmpReg, tmpReg); sqlite3ReleaseTempReg(pParse, tmpReg2); } sqlite3VdbeAddOp3(v, OP_SeekRowid, csr, lbl, tmpReg); VdbeCoverage(v); sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol, pWin->regResult); sqlite3VdbeResolveLabel(v, lbl); sqlite3ReleaseTempReg(pParse, tmpReg); } } } sqlite3VdbeAddOp2(v, OP_Gosub, p->regGosub, p->addrGosub); } /* ** Generate code to set the accumulator register for each window function ** in the linked list passed as the second argument to NULL. And perform ** any equivalent initialization required by any built-in window functions ** in the list. */ static int windowInitAccum(Parse *pParse, Window *pMWin){ Vdbe *v = sqlite3GetVdbe(pParse); int regArg; int nArg = 0; Window *pWin; for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ FuncDef *pFunc = pWin->pFunc; assert( pWin->regAccum ); sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); nArg = MAX(nArg, windowArgCount(pWin)); if( pMWin->regStartRowid==0 ){ if( pFunc->zName==nth_valueName || pFunc->zName==first_valueName ){ sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp); sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp+1); } if( (pFunc->funcFlags & SQLITE_FUNC_MINMAX) && pWin->csrApp ){ assert( pWin->eStart!=TK_UNBOUNDED ); sqlite3VdbeAddOp1(v, OP_ResetSorter, pWin->csrApp); sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp+1); } } } regArg = pParse->nMem+1; pParse->nMem += nArg; return regArg; } /* ** Return true if the current frame should be cached in the ephemeral table, ** even if there are no xInverse() calls required. */ static int windowCacheFrame(Window *pMWin){ Window *pWin; if( pMWin->regStartRowid ) return 1; for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ FuncDef *pFunc = pWin->pFunc; if( (pFunc->zName==nth_valueName) || (pFunc->zName==first_valueName) || (pFunc->zName==leadName) || (pFunc->zName==lagName) ){ return 1; } } return 0; } /* ** regOld and regNew are each the first register in an array of size ** pOrderBy->nExpr. This function generates code to compare the two ** arrays of registers using the collation sequences and other comparison ** parameters specified by pOrderBy. ** ** If the two arrays are not equal, the contents of regNew is copied to ** regOld and control falls through. Otherwise, if the contents of the arrays ** are equal, an OP_Goto is executed. The address of the OP_Goto is returned. */ static void windowIfNewPeer( Parse *pParse, ExprList *pOrderBy, int regNew, /* First in array of new values */ int regOld, /* First in array of old values */ int addr /* Jump here */ ){ Vdbe *v = sqlite3GetVdbe(pParse); if( pOrderBy ){ int nVal = pOrderBy->nExpr; KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pOrderBy, 0, 0); sqlite3VdbeAddOp3(v, OP_Compare, regOld, regNew, nVal); sqlite3VdbeAppendP4(v, (void*)pKeyInfo, P4_KEYINFO); sqlite3VdbeAddOp3(v, OP_Jump, sqlite3VdbeCurrentAddr(v)+1, addr, sqlite3VdbeCurrentAddr(v)+1 ); VdbeCoverageEqNe(v); sqlite3VdbeAddOp3(v, OP_Copy, regNew, regOld, nVal-1); }else{ sqlite3VdbeAddOp2(v, OP_Goto, 0, addr); } } /* ** This function is called as part of generating VM programs for RANGE ** offset PRECEDING/FOLLOWING frame boundaries. Assuming "ASC" order for ** the ORDER BY term in the window, and that argument op is OP_Ge, it generates ** code equivalent to: ** ** if( csr1.peerVal + regVal >= csr2.peerVal ) goto lbl; ** ** The value of parameter op may also be OP_Gt or OP_Le. In these cases the ** operator in the above pseudo-code is replaced with ">" or "<=", respectively. ** ** If the sort-order for the ORDER BY term in the window is DESC, then the ** comparison is reversed. Instead of adding regVal to csr1.peerVal, it is ** subtracted. And the comparison operator is inverted to - ">=" becomes "<=", ** ">" becomes "<", and so on. So, with DESC sort order, if the argument op ** is OP_Ge, the generated code is equivalent to: ** ** if( csr1.peerVal - regVal <= csr2.peerVal ) goto lbl; ** ** A special type of arithmetic is used such that if csr1.peerVal is not ** a numeric type (real or integer), then the result of the addition addition ** or subtraction is a a copy of csr1.peerVal. */ static void windowCodeRangeTest( WindowCodeArg *p, int op, /* OP_Ge, OP_Gt, or OP_Le */ int csr1, /* Cursor number for cursor 1 */ int regVal, /* Register containing non-negative number */ int csr2, /* Cursor number for cursor 2 */ int lbl /* Jump destination if condition is true */ ){ Parse *pParse = p->pParse; Vdbe *v = sqlite3GetVdbe(pParse); ExprList *pOrderBy = p->pMWin->pOrderBy; /* ORDER BY clause for window */ int reg1 = sqlite3GetTempReg(pParse); /* Reg. for csr1.peerVal+regVal */ int reg2 = sqlite3GetTempReg(pParse); /* Reg. for csr2.peerVal */ int regString = ++pParse->nMem; /* Reg. for constant value '' */ int arith = OP_Add; /* OP_Add or OP_Subtract */ int addrGe; /* Jump destination */ assert( op==OP_Ge || op==OP_Gt || op==OP_Le ); assert( pOrderBy && pOrderBy->nExpr==1 ); if( pOrderBy->a[0].sortFlags & KEYINFO_ORDER_DESC ){ switch( op ){ case OP_Ge: op = OP_Le; break; case OP_Gt: op = OP_Lt; break; default: assert( op==OP_Le ); op = OP_Ge; break; } arith = OP_Subtract; } /* Read the peer-value from each cursor into a register */ windowReadPeerValues(p, csr1, reg1); windowReadPeerValues(p, csr2, reg2); VdbeModuleComment((v, "CodeRangeTest: if( R%d %s R%d %s R%d ) goto lbl", reg1, (arith==OP_Add ? "+" : "-"), regVal, ((op==OP_Ge) ? ">=" : (op==OP_Le) ? "<=" : (op==OP_Gt) ? ">" : "<"), reg2 )); /* Register reg1 currently contains csr1.peerVal (the peer-value from csr1). ** This block adds (or subtracts for DESC) the numeric value in regVal ** from it. Or, if reg1 is not numeric (it is a NULL, a text value or a blob), ** then leave reg1 as it is. In pseudo-code, this is implemented as: ** ** if( reg1>='' ) goto addrGe; ** reg1 = reg1 +/- regVal ** addrGe: ** ** Since all strings and blobs are greater-than-or-equal-to an empty string, ** the add/subtract is skipped for these, as required. If reg1 is a NULL, ** then the arithmetic is performed, but since adding or subtracting from ** NULL is always NULL anyway, this case is handled as required too. */ sqlite3VdbeAddOp4(v, OP_String8, 0, regString, 0, "", P4_STATIC); addrGe = sqlite3VdbeAddOp3(v, OP_Ge, regString, 0, reg1); VdbeCoverage(v); sqlite3VdbeAddOp3(v, arith, regVal, reg1, reg1); sqlite3VdbeJumpHere(v, addrGe); /* If the BIGNULL flag is set for the ORDER BY, then it is required to ** consider NULL values to be larger than all other values, instead of ** the usual smaller. The VDBE opcodes OP_Ge and so on do not handle this ** (and adding that capability causes a performance regression), so ** instead if the BIGNULL flag is set then cases where either reg1 or ** reg2 are NULL are handled separately in the following block. The code ** generated is equivalent to: ** ** if( reg1 IS NULL ){ ** if( op==OP_Ge ) goto lbl; ** if( op==OP_Gt && reg2 IS NOT NULL ) goto lbl; ** if( op==OP_Le && reg2 IS NULL ) goto lbl; ** }else if( reg2 IS NULL ){ ** if( op==OP_Le ) goto lbl; ** } ** ** Additionally, if either reg1 or reg2 are NULL but the jump to lbl is ** not taken, control jumps over the comparison operator coded below this ** block. */ if( pOrderBy->a[0].sortFlags & KEYINFO_ORDER_BIGNULL ){ /* This block runs if reg1 contains a NULL. */ int addr = sqlite3VdbeAddOp1(v, OP_NotNull, reg1); VdbeCoverage(v); switch( op ){ case OP_Ge: sqlite3VdbeAddOp2(v, OP_Goto, 0, lbl); break; case OP_Gt: sqlite3VdbeAddOp2(v, OP_NotNull, reg2, lbl); VdbeCoverage(v); break; case OP_Le: sqlite3VdbeAddOp2(v, OP_IsNull, reg2, lbl); VdbeCoverage(v); break; default: assert( op==OP_Lt ); /* no-op */ break; } sqlite3VdbeAddOp2(v, OP_Goto, 0, sqlite3VdbeCurrentAddr(v)+3); /* This block runs if reg1 is not NULL, but reg2 is. */ sqlite3VdbeJumpHere(v, addr); sqlite3VdbeAddOp2(v, OP_IsNull, reg2, lbl); VdbeCoverage(v); if( op==OP_Gt || op==OP_Ge ){ sqlite3VdbeChangeP2(v, -1, sqlite3VdbeCurrentAddr(v)+1); } } /* Compare registers reg2 and reg1, taking the jump if required. Note that ** control skips over this test if the BIGNULL flag is set and either ** reg1 or reg2 contain a NULL value. */ sqlite3VdbeAddOp3(v, op, reg2, lbl, reg1); VdbeCoverage(v); sqlite3VdbeChangeP5(v, SQLITE_NULLEQ); assert( op==OP_Ge || op==OP_Gt || op==OP_Lt || op==OP_Le ); testcase(op==OP_Ge); VdbeCoverageIf(v, op==OP_Ge); testcase(op==OP_Lt); VdbeCoverageIf(v, op==OP_Lt); testcase(op==OP_Le); VdbeCoverageIf(v, op==OP_Le); testcase(op==OP_Gt); VdbeCoverageIf(v, op==OP_Gt); sqlite3ReleaseTempReg(pParse, reg1); sqlite3ReleaseTempReg(pParse, reg2); VdbeModuleComment((v, "CodeRangeTest: end")); } /* ** Helper function for sqlite3WindowCodeStep(). Each call to this function ** generates VM code for a single RETURN_ROW, AGGSTEP or AGGINVERSE ** operation. Refer to the header comment for sqlite3WindowCodeStep() for ** details. */ static int windowCodeOp( WindowCodeArg *p, /* Context object */ int op, /* WINDOW_RETURN_ROW, AGGSTEP or AGGINVERSE */ int regCountdown, /* Register for OP_IfPos countdown */ int jumpOnEof /* Jump here if stepped cursor reaches EOF */ ){ int csr, reg; Parse *pParse = p->pParse; Window *pMWin = p->pMWin; int ret = 0; Vdbe *v = p->pVdbe; int addrContinue = 0; int bPeer = (pMWin->eFrmType!=TK_ROWS); int lblDone = sqlite3VdbeMakeLabel(pParse); int addrNextRange = 0; /* Special case - WINDOW_AGGINVERSE is always a no-op if the frame ** starts with UNBOUNDED PRECEDING. */ if( op==WINDOW_AGGINVERSE && pMWin->eStart==TK_UNBOUNDED ){ assert( regCountdown==0 && jumpOnEof==0 ); return 0; } if( regCountdown>0 ){ if( pMWin->eFrmType==TK_RANGE ){ addrNextRange = sqlite3VdbeCurrentAddr(v); assert( op==WINDOW_AGGINVERSE || op==WINDOW_AGGSTEP ); if( op==WINDOW_AGGINVERSE ){ if( pMWin->eStart==TK_FOLLOWING ){ windowCodeRangeTest( p, OP_Le, p->current.csr, regCountdown, p->start.csr, lblDone ); }else{ windowCodeRangeTest( p, OP_Ge, p->start.csr, regCountdown, p->current.csr, lblDone ); } }else{ windowCodeRangeTest( p, OP_Gt, p->end.csr, regCountdown, p->current.csr, lblDone ); } }else{ sqlite3VdbeAddOp3(v, OP_IfPos, regCountdown, lblDone, 1); VdbeCoverage(v); } } if( op==WINDOW_RETURN_ROW && pMWin->regStartRowid==0 ){ windowAggFinal(p, 0); } addrContinue = sqlite3VdbeCurrentAddr(v); /* If this is a (RANGE BETWEEN a FOLLOWING AND b FOLLOWING) or ** (RANGE BETWEEN b PRECEDING AND a PRECEDING) frame, ensure the ** start cursor does not advance past the end cursor within the ** temporary table. It otherwise might, if (a>b). */ if( pMWin->eStart==pMWin->eEnd && regCountdown && pMWin->eFrmType==TK_RANGE && op==WINDOW_AGGINVERSE ){ int regRowid1 = sqlite3GetTempReg(pParse); int regRowid2 = sqlite3GetTempReg(pParse); sqlite3VdbeAddOp2(v, OP_Rowid, p->start.csr, regRowid1); sqlite3VdbeAddOp2(v, OP_Rowid, p->end.csr, regRowid2); sqlite3VdbeAddOp3(v, OP_Ge, regRowid2, lblDone, regRowid1); VdbeCoverage(v); sqlite3ReleaseTempReg(pParse, regRowid1); sqlite3ReleaseTempReg(pParse, regRowid2); assert( pMWin->eStart==TK_PRECEDING || pMWin->eStart==TK_FOLLOWING ); } switch( op ){ case WINDOW_RETURN_ROW: csr = p->current.csr; reg = p->current.reg; windowReturnOneRow(p); break; case WINDOW_AGGINVERSE: csr = p->start.csr; reg = p->start.reg; if( pMWin->regStartRowid ){ assert( pMWin->regEndRowid ); sqlite3VdbeAddOp2(v, OP_AddImm, pMWin->regStartRowid, 1); }else{ windowAggStep(p, pMWin, csr, 1, p->regArg); } break; default: assert( op==WINDOW_AGGSTEP ); csr = p->end.csr; reg = p->end.reg; if( pMWin->regStartRowid ){ assert( pMWin->regEndRowid ); sqlite3VdbeAddOp2(v, OP_AddImm, pMWin->regEndRowid, 1); }else{ windowAggStep(p, pMWin, csr, 0, p->regArg); } break; } if( op==p->eDelete ){ sqlite3VdbeAddOp1(v, OP_Delete, csr); sqlite3VdbeChangeP5(v, OPFLAG_SAVEPOSITION); } if( jumpOnEof ){ sqlite3VdbeAddOp2(v, OP_Next, csr, sqlite3VdbeCurrentAddr(v)+2); VdbeCoverage(v); ret = sqlite3VdbeAddOp0(v, OP_Goto); }else{ sqlite3VdbeAddOp2(v, OP_Next, csr, sqlite3VdbeCurrentAddr(v)+1+bPeer); VdbeCoverage(v); if( bPeer ){ sqlite3VdbeAddOp2(v, OP_Goto, 0, lblDone); } } if( bPeer ){ int nReg = (pMWin->pOrderBy ? pMWin->pOrderBy->nExpr : 0); int regTmp = (nReg ? sqlite3GetTempRange(pParse, nReg) : 0); windowReadPeerValues(p, csr, regTmp); windowIfNewPeer(pParse, pMWin->pOrderBy, regTmp, reg, addrContinue); sqlite3ReleaseTempRange(pParse, regTmp, nReg); } if( addrNextRange ){ sqlite3VdbeAddOp2(v, OP_Goto, 0, addrNextRange); } sqlite3VdbeResolveLabel(v, lblDone); return ret; } /* ** Allocate and return a duplicate of the Window object indicated by the ** third argument. Set the Window.pOwner field of the new object to ** pOwner. */ SQLITE_PRIVATE Window *sqlite3WindowDup(sqlite3 *db, Expr *pOwner, Window *p){ Window *pNew = 0; if( ALWAYS(p) ){ pNew = sqlite3DbMallocZero(db, sizeof(Window)); if( pNew ){ pNew->zName = sqlite3DbStrDup(db, p->zName); pNew->zBase = sqlite3DbStrDup(db, p->zBase); pNew->pFilter = sqlite3ExprDup(db, p->pFilter, 0); pNew->pFunc = p->pFunc; pNew->pPartition = sqlite3ExprListDup(db, p->pPartition, 0); pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, 0); pNew->eFrmType = p->eFrmType; pNew->eEnd = p->eEnd; pNew->eStart = p->eStart; pNew->eExclude = p->eExclude; pNew->regResult = p->regResult; pNew->regAccum = p->regAccum; pNew->iArgCol = p->iArgCol; pNew->iEphCsr = p->iEphCsr; pNew->bExprArgs = p->bExprArgs; pNew->pStart = sqlite3ExprDup(db, p->pStart, 0); pNew->pEnd = sqlite3ExprDup(db, p->pEnd, 0); pNew->pOwner = pOwner; pNew->bImplicitFrame = p->bImplicitFrame; } } return pNew; } /* ** Return a copy of the linked list of Window objects passed as the ** second argument. */ SQLITE_PRIVATE Window *sqlite3WindowListDup(sqlite3 *db, Window *p){ Window *pWin; Window *pRet = 0; Window **pp = &pRet; for(pWin=p; pWin; pWin=pWin->pNextWin){ *pp = sqlite3WindowDup(db, 0, pWin); if( *pp==0 ) break; pp = &((*pp)->pNextWin); } return pRet; } /* ** Return true if it can be determined at compile time that expression ** pExpr evaluates to a value that, when cast to an integer, is greater ** than zero. False otherwise. ** ** If an OOM error occurs, this function sets the Parse.db.mallocFailed ** flag and returns zero. */ static int windowExprGtZero(Parse *pParse, Expr *pExpr){ int ret = 0; sqlite3 *db = pParse->db; sqlite3_value *pVal = 0; sqlite3ValueFromExpr(db, pExpr, db->enc, SQLITE_AFF_NUMERIC, &pVal); if( pVal && sqlite3_value_int(pVal)>0 ){ ret = 1; } sqlite3ValueFree(pVal); return ret; } /* ** sqlite3WhereBegin() has already been called for the SELECT statement ** passed as the second argument when this function is invoked. It generates ** code to populate the Window.regResult register for each window function ** and invoke the sub-routine at instruction addrGosub once for each row. ** sqlite3WhereEnd() is always called before returning. ** ** This function handles several different types of window frames, which ** require slightly different processing. The following pseudo code is ** used to implement window frames of the form: ** ** ROWS BETWEEN PRECEDING AND FOLLOWING ** ** Other window frame types use variants of the following: ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** ** if( first row of partition ){ ** // Rewind three cursors, all open on the eph table. ** Rewind(csrEnd); ** Rewind(csrStart); ** Rewind(csrCurrent); ** ** regEnd = // FOLLOWING expression ** regStart = // PRECEDING expression ** }else{ ** // First time this branch is taken, the eph table contains two ** // rows. The first row in the partition, which all three cursors ** // currently point to, and the following row. ** AGGSTEP ** if( (regEnd--)<=0 ){ ** RETURN_ROW ** if( (regStart--)<=0 ){ ** AGGINVERSE ** } ** } ** } ** } ** flush: ** AGGSTEP ** while( 1 ){ ** RETURN ROW ** if( csrCurrent is EOF ) break; ** if( (regStart--)<=0 ){ ** AggInverse(csrStart) ** Next(csrStart) ** } ** } ** ** The pseudo-code above uses the following shorthand: ** ** AGGSTEP: invoke the aggregate xStep() function for each window function ** with arguments read from the current row of cursor csrEnd, then ** step cursor csrEnd forward one row (i.e. sqlite3BtreeNext()). ** ** RETURN_ROW: return a row to the caller based on the contents of the ** current row of csrCurrent and the current state of all ** aggregates. Then step cursor csrCurrent forward one row. ** ** AGGINVERSE: invoke the aggregate xInverse() function for each window ** functions with arguments read from the current row of cursor ** csrStart. Then step csrStart forward one row. ** ** There are two other ROWS window frames that are handled significantly ** differently from the above - "BETWEEN PRECEDING AND PRECEDING" ** and "BETWEEN FOLLOWING AND FOLLOWING". These are special ** cases because they change the order in which the three cursors (csrStart, ** csrCurrent and csrEnd) iterate through the ephemeral table. Cases that ** use UNBOUNDED or CURRENT ROW are much simpler variations on one of these ** three. ** ** ROWS BETWEEN PRECEDING AND PRECEDING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** }else{ ** if( (regEnd--)<=0 ){ ** AGGSTEP ** } ** RETURN_ROW ** if( (regStart--)<=0 ){ ** AGGINVERSE ** } ** } ** } ** flush: ** if( (regEnd--)<=0 ){ ** AGGSTEP ** } ** RETURN_ROW ** ** ** ROWS BETWEEN FOLLOWING AND FOLLOWING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = regEnd - ** }else{ ** AGGSTEP ** if( (regEnd--)<=0 ){ ** RETURN_ROW ** } ** if( (regStart--)<=0 ){ ** AGGINVERSE ** } ** } ** } ** flush: ** AGGSTEP ** while( 1 ){ ** if( (regEnd--)<=0 ){ ** RETURN_ROW ** if( eof ) break; ** } ** if( (regStart--)<=0 ){ ** AGGINVERSE ** if( eof ) break ** } ** } ** while( !eof csrCurrent ){ ** RETURN_ROW ** } ** ** For the most part, the patterns above are adapted to support UNBOUNDED by ** assuming that it is equivalent to "infinity PRECEDING/FOLLOWING" and ** CURRENT ROW by assuming that it is equivilent to "0 PRECEDING/FOLLOWING". ** This is optimized of course - branches that will never be taken and ** conditions that are always true are omitted from the VM code. The only ** exceptional case is: ** ** ROWS BETWEEN FOLLOWING AND UNBOUNDED FOLLOWING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regStart = ** }else{ ** AGGSTEP ** } ** } ** flush: ** AGGSTEP ** while( 1 ){ ** if( (regStart--)<=0 ){ ** AGGINVERSE ** if( eof ) break ** } ** RETURN_ROW ** } ** while( !eof csrCurrent ){ ** RETURN_ROW ** } ** ** Also requiring special handling are the cases: ** ** ROWS BETWEEN PRECEDING AND PRECEDING ** ROWS BETWEEN FOLLOWING AND FOLLOWING ** ** when (expr1 < expr2). This is detected at runtime, not by this function. ** To handle this case, the pseudo-code programs depicted above are modified ** slightly to be: ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** if( regEnd < regStart ){ ** RETURN_ROW ** delete eph table contents ** continue ** } ** ... ** ** The new "continue" statement in the above jumps to the next iteration ** of the outer loop - the one started by sqlite3WhereBegin(). ** ** The various GROUPS cases are implemented using the same patterns as ** ROWS. The VM code is modified slightly so that: ** ** 1. The else branch in the main loop is only taken if the row just ** added to the ephemeral table is the start of a new group. In ** other words, it becomes: ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** }else if( new group ){ ** ... ** } ** } ** ** 2. Instead of processing a single row, each RETURN_ROW, AGGSTEP or ** AGGINVERSE step processes the current row of the relevant cursor and ** all subsequent rows belonging to the same group. ** ** RANGE window frames are a little different again. As for GROUPS, the ** main loop runs once per group only. And RETURN_ROW, AGGSTEP and AGGINVERSE ** deal in groups instead of rows. As for ROWS and GROUPS, there are three ** basic cases: ** ** RANGE BETWEEN PRECEDING AND FOLLOWING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** }else{ ** AGGSTEP ** while( (csrCurrent.key + regEnd) < csrEnd.key ){ ** RETURN_ROW ** while( csrStart.key + regStart) < csrCurrent.key ){ ** AGGINVERSE ** } ** } ** } ** } ** flush: ** AGGSTEP ** while( 1 ){ ** RETURN ROW ** if( csrCurrent is EOF ) break; ** while( csrStart.key + regStart) < csrCurrent.key ){ ** AGGINVERSE ** } ** } ** } ** ** In the above notation, "csr.key" means the current value of the ORDER BY ** expression (there is only ever 1 for a RANGE that uses an FOLLOWING ** or PRECEDING AND PRECEDING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** }else{ ** while( (csrEnd.key + regEnd) <= csrCurrent.key ){ ** AGGSTEP ** } ** while( (csrStart.key + regStart) < csrCurrent.key ){ ** AGGINVERSE ** } ** RETURN_ROW ** } ** } ** flush: ** while( (csrEnd.key + regEnd) <= csrCurrent.key ){ ** AGGSTEP ** } ** while( (csrStart.key + regStart) < csrCurrent.key ){ ** AGGINVERSE ** } ** RETURN_ROW ** ** RANGE BETWEEN FOLLOWING AND FOLLOWING ** ** ... loop started by sqlite3WhereBegin() ... ** if( new partition ){ ** Gosub flush ** } ** Insert new row into eph table. ** if( first row of partition ){ ** Rewind(csrEnd) ; Rewind(csrStart) ; Rewind(csrCurrent) ** regEnd = ** regStart = ** }else{ ** AGGSTEP ** while( (csrCurrent.key + regEnd) < csrEnd.key ){ ** while( (csrCurrent.key + regStart) > csrStart.key ){ ** AGGINVERSE ** } ** RETURN_ROW ** } ** } ** } ** flush: ** AGGSTEP ** while( 1 ){ ** while( (csrCurrent.key + regStart) > csrStart.key ){ ** AGGINVERSE ** if( eof ) break "while( 1 )" loop. ** } ** RETURN_ROW ** } ** while( !eof csrCurrent ){ ** RETURN_ROW ** } ** ** The text above leaves out many details. Refer to the code and comments ** below for a more complete picture. */ SQLITE_PRIVATE void sqlite3WindowCodeStep( Parse *pParse, /* Parse context */ Select *p, /* Rewritten SELECT statement */ WhereInfo *pWInfo, /* Context returned by sqlite3WhereBegin() */ int regGosub, /* Register for OP_Gosub */ int addrGosub /* OP_Gosub here to return each row */ ){ Window *pMWin = p->pWin; ExprList *pOrderBy = pMWin->pOrderBy; Vdbe *v = sqlite3GetVdbe(pParse); int csrWrite; /* Cursor used to write to eph. table */ int csrInput = p->pSrc->a[0].iCursor; /* Cursor of sub-select */ int nInput = p->pSrc->a[0].pTab->nCol; /* Number of cols returned by sub */ int iInput; /* To iterate through sub cols */ int addrNe; /* Address of OP_Ne */ int addrGosubFlush = 0; /* Address of OP_Gosub to flush: */ int addrInteger = 0; /* Address of OP_Integer */ int addrEmpty; /* Address of OP_Rewind in flush: */ int regNew; /* Array of registers holding new input row */ int regRecord; /* regNew array in record form */ int regRowid; /* Rowid for regRecord in eph table */ int regNewPeer = 0; /* Peer values for new row (part of regNew) */ int regPeer = 0; /* Peer values for current row */ int regFlushPart = 0; /* Register for "Gosub flush_partition" */ WindowCodeArg s; /* Context object for sub-routines */ int lblWhereEnd; /* Label just before sqlite3WhereEnd() code */ int regStart = 0; /* Value of PRECEDING */ int regEnd = 0; /* Value of FOLLOWING */ assert( pMWin->eStart==TK_PRECEDING || pMWin->eStart==TK_CURRENT || pMWin->eStart==TK_FOLLOWING || pMWin->eStart==TK_UNBOUNDED ); assert( pMWin->eEnd==TK_FOLLOWING || pMWin->eEnd==TK_CURRENT || pMWin->eEnd==TK_UNBOUNDED || pMWin->eEnd==TK_PRECEDING ); assert( pMWin->eExclude==0 || pMWin->eExclude==TK_CURRENT || pMWin->eExclude==TK_GROUP || pMWin->eExclude==TK_TIES || pMWin->eExclude==TK_NO ); lblWhereEnd = sqlite3VdbeMakeLabel(pParse); /* Fill in the context object */ memset(&s, 0, sizeof(WindowCodeArg)); s.pParse = pParse; s.pMWin = pMWin; s.pVdbe = v; s.regGosub = regGosub; s.addrGosub = addrGosub; s.current.csr = pMWin->iEphCsr; csrWrite = s.current.csr+1; s.start.csr = s.current.csr+2; s.end.csr = s.current.csr+3; /* Figure out when rows may be deleted from the ephemeral table. There ** are four options - they may never be deleted (eDelete==0), they may ** be deleted as soon as they are no longer part of the window frame ** (eDelete==WINDOW_AGGINVERSE), they may be deleted as after the row ** has been returned to the caller (WINDOW_RETURN_ROW), or they may ** be deleted after they enter the frame (WINDOW_AGGSTEP). */ switch( pMWin->eStart ){ case TK_FOLLOWING: if( pMWin->eFrmType!=TK_RANGE && windowExprGtZero(pParse, pMWin->pStart) ){ s.eDelete = WINDOW_RETURN_ROW; } break; case TK_UNBOUNDED: if( windowCacheFrame(pMWin)==0 ){ if( pMWin->eEnd==TK_PRECEDING ){ if( pMWin->eFrmType!=TK_RANGE && windowExprGtZero(pParse, pMWin->pEnd) ){ s.eDelete = WINDOW_AGGSTEP; } }else{ s.eDelete = WINDOW_RETURN_ROW; } } break; default: s.eDelete = WINDOW_AGGINVERSE; break; } /* Allocate registers for the array of values from the sub-query, the ** samve values in record form, and the rowid used to insert said record ** into the ephemeral table. */ regNew = pParse->nMem+1; pParse->nMem += nInput; regRecord = ++pParse->nMem; regRowid = ++pParse->nMem; /* If the window frame contains an " PRECEDING" or " FOLLOWING" ** clause, allocate registers to store the results of evaluating each ** . */ if( pMWin->eStart==TK_PRECEDING || pMWin->eStart==TK_FOLLOWING ){ regStart = ++pParse->nMem; } if( pMWin->eEnd==TK_PRECEDING || pMWin->eEnd==TK_FOLLOWING ){ regEnd = ++pParse->nMem; } /* If this is not a "ROWS BETWEEN ..." frame, then allocate arrays of ** registers to store copies of the ORDER BY expressions (peer values) ** for the main loop, and for each cursor (start, current and end). */ if( pMWin->eFrmType!=TK_ROWS ){ int nPeer = (pOrderBy ? pOrderBy->nExpr : 0); regNewPeer = regNew + pMWin->nBufferCol; if( pMWin->pPartition ) regNewPeer += pMWin->pPartition->nExpr; regPeer = pParse->nMem+1; pParse->nMem += nPeer; s.start.reg = pParse->nMem+1; pParse->nMem += nPeer; s.current.reg = pParse->nMem+1; pParse->nMem += nPeer; s.end.reg = pParse->nMem+1; pParse->nMem += nPeer; } /* Load the column values for the row returned by the sub-select ** into an array of registers starting at regNew. Assemble them into ** a record in register regRecord. */ for(iInput=0; iInputpPartition ){ int addr; ExprList *pPart = pMWin->pPartition; int nPart = pPart->nExpr; int regNewPart = regNew + pMWin->nBufferCol; KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pPart, 0, 0); regFlushPart = ++pParse->nMem; addr = sqlite3VdbeAddOp3(v, OP_Compare, regNewPart, pMWin->regPart, nPart); sqlite3VdbeAppendP4(v, (void*)pKeyInfo, P4_KEYINFO); sqlite3VdbeAddOp3(v, OP_Jump, addr+2, addr+4, addr+2); VdbeCoverageEqNe(v); addrGosubFlush = sqlite3VdbeAddOp1(v, OP_Gosub, regFlushPart); VdbeComment((v, "call flush_partition")); sqlite3VdbeAddOp3(v, OP_Copy, regNewPart, pMWin->regPart, nPart-1); } /* Insert the new row into the ephemeral table */ sqlite3VdbeAddOp2(v, OP_NewRowid, csrWrite, regRowid); sqlite3VdbeAddOp3(v, OP_Insert, csrWrite, regRecord, regRowid); addrNe = sqlite3VdbeAddOp3(v, OP_Ne, pMWin->regOne, 0, regRowid); VdbeCoverageNeverNull(v); /* This block is run for the first row of each partition */ s.regArg = windowInitAccum(pParse, pMWin); if( regStart ){ sqlite3ExprCode(pParse, pMWin->pStart, regStart); windowCheckValue(pParse, regStart, 0 + (pMWin->eFrmType==TK_RANGE?3:0)); } if( regEnd ){ sqlite3ExprCode(pParse, pMWin->pEnd, regEnd); windowCheckValue(pParse, regEnd, 1 + (pMWin->eFrmType==TK_RANGE?3:0)); } if( pMWin->eFrmType!=TK_RANGE && pMWin->eStart==pMWin->eEnd && regStart ){ int op = ((pMWin->eStart==TK_FOLLOWING) ? OP_Ge : OP_Le); int addrGe = sqlite3VdbeAddOp3(v, op, regStart, 0, regEnd); VdbeCoverageNeverNullIf(v, op==OP_Ge); /* NeverNull because bound */ VdbeCoverageNeverNullIf(v, op==OP_Le); /* values previously checked */ windowAggFinal(&s, 0); sqlite3VdbeAddOp2(v, OP_Rewind, s.current.csr, 1); VdbeCoverageNeverTaken(v); windowReturnOneRow(&s); sqlite3VdbeAddOp1(v, OP_ResetSorter, s.current.csr); sqlite3VdbeAddOp2(v, OP_Goto, 0, lblWhereEnd); sqlite3VdbeJumpHere(v, addrGe); } if( pMWin->eStart==TK_FOLLOWING && pMWin->eFrmType!=TK_RANGE && regEnd ){ assert( pMWin->eEnd==TK_FOLLOWING ); sqlite3VdbeAddOp3(v, OP_Subtract, regStart, regEnd, regStart); } if( pMWin->eStart!=TK_UNBOUNDED ){ sqlite3VdbeAddOp2(v, OP_Rewind, s.start.csr, 1); VdbeCoverageNeverTaken(v); } sqlite3VdbeAddOp2(v, OP_Rewind, s.current.csr, 1); VdbeCoverageNeverTaken(v); sqlite3VdbeAddOp2(v, OP_Rewind, s.end.csr, 1); VdbeCoverageNeverTaken(v); if( regPeer && pOrderBy ){ sqlite3VdbeAddOp3(v, OP_Copy, regNewPeer, regPeer, pOrderBy->nExpr-1); sqlite3VdbeAddOp3(v, OP_Copy, regPeer, s.start.reg, pOrderBy->nExpr-1); sqlite3VdbeAddOp3(v, OP_Copy, regPeer, s.current.reg, pOrderBy->nExpr-1); sqlite3VdbeAddOp3(v, OP_Copy, regPeer, s.end.reg, pOrderBy->nExpr-1); } sqlite3VdbeAddOp2(v, OP_Goto, 0, lblWhereEnd); sqlite3VdbeJumpHere(v, addrNe); /* Beginning of the block executed for the second and subsequent rows. */ if( regPeer ){ windowIfNewPeer(pParse, pOrderBy, regNewPeer, regPeer, lblWhereEnd); } if( pMWin->eStart==TK_FOLLOWING ){ windowCodeOp(&s, WINDOW_AGGSTEP, 0, 0); if( pMWin->eEnd!=TK_UNBOUNDED ){ if( pMWin->eFrmType==TK_RANGE ){ int lbl = sqlite3VdbeMakeLabel(pParse); int addrNext = sqlite3VdbeCurrentAddr(v); windowCodeRangeTest(&s, OP_Ge, s.current.csr, regEnd, s.end.csr, lbl); windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 0); sqlite3VdbeAddOp2(v, OP_Goto, 0, addrNext); sqlite3VdbeResolveLabel(v, lbl); }else{ windowCodeOp(&s, WINDOW_RETURN_ROW, regEnd, 0); windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); } } }else if( pMWin->eEnd==TK_PRECEDING ){ int bRPS = (pMWin->eStart==TK_PRECEDING && pMWin->eFrmType==TK_RANGE); windowCodeOp(&s, WINDOW_AGGSTEP, regEnd, 0); if( bRPS ) windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 0); if( !bRPS ) windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); }else{ int addr = 0; windowCodeOp(&s, WINDOW_AGGSTEP, 0, 0); if( pMWin->eEnd!=TK_UNBOUNDED ){ if( pMWin->eFrmType==TK_RANGE ){ int lbl = 0; addr = sqlite3VdbeCurrentAddr(v); if( regEnd ){ lbl = sqlite3VdbeMakeLabel(pParse); windowCodeRangeTest(&s, OP_Ge, s.current.csr, regEnd, s.end.csr, lbl); } windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 0); windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); if( regEnd ){ sqlite3VdbeAddOp2(v, OP_Goto, 0, addr); sqlite3VdbeResolveLabel(v, lbl); } }else{ if( regEnd ){ addr = sqlite3VdbeAddOp3(v, OP_IfPos, regEnd, 0, 1); VdbeCoverage(v); } windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 0); windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); if( regEnd ) sqlite3VdbeJumpHere(v, addr); } } } /* End of the main input loop */ sqlite3VdbeResolveLabel(v, lblWhereEnd); sqlite3WhereEnd(pWInfo); /* Fall through */ if( pMWin->pPartition ){ addrInteger = sqlite3VdbeAddOp2(v, OP_Integer, 0, regFlushPart); sqlite3VdbeJumpHere(v, addrGosubFlush); } addrEmpty = sqlite3VdbeAddOp1(v, OP_Rewind, csrWrite); VdbeCoverage(v); if( pMWin->eEnd==TK_PRECEDING ){ int bRPS = (pMWin->eStart==TK_PRECEDING && pMWin->eFrmType==TK_RANGE); windowCodeOp(&s, WINDOW_AGGSTEP, regEnd, 0); if( bRPS ) windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 0); }else if( pMWin->eStart==TK_FOLLOWING ){ int addrStart; int addrBreak1; int addrBreak2; int addrBreak3; windowCodeOp(&s, WINDOW_AGGSTEP, 0, 0); if( pMWin->eFrmType==TK_RANGE ){ addrStart = sqlite3VdbeCurrentAddr(v); addrBreak2 = windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 1); addrBreak1 = windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 1); }else if( pMWin->eEnd==TK_UNBOUNDED ){ addrStart = sqlite3VdbeCurrentAddr(v); addrBreak1 = windowCodeOp(&s, WINDOW_RETURN_ROW, regStart, 1); addrBreak2 = windowCodeOp(&s, WINDOW_AGGINVERSE, 0, 1); }else{ assert( pMWin->eEnd==TK_FOLLOWING ); addrStart = sqlite3VdbeCurrentAddr(v); addrBreak1 = windowCodeOp(&s, WINDOW_RETURN_ROW, regEnd, 1); addrBreak2 = windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 1); } sqlite3VdbeAddOp2(v, OP_Goto, 0, addrStart); sqlite3VdbeJumpHere(v, addrBreak2); addrStart = sqlite3VdbeCurrentAddr(v); addrBreak3 = windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 1); sqlite3VdbeAddOp2(v, OP_Goto, 0, addrStart); sqlite3VdbeJumpHere(v, addrBreak1); sqlite3VdbeJumpHere(v, addrBreak3); }else{ int addrBreak; int addrStart; windowCodeOp(&s, WINDOW_AGGSTEP, 0, 0); addrStart = sqlite3VdbeCurrentAddr(v); addrBreak = windowCodeOp(&s, WINDOW_RETURN_ROW, 0, 1); windowCodeOp(&s, WINDOW_AGGINVERSE, regStart, 0); sqlite3VdbeAddOp2(v, OP_Goto, 0, addrStart); sqlite3VdbeJumpHere(v, addrBreak); } sqlite3VdbeJumpHere(v, addrEmpty); sqlite3VdbeAddOp1(v, OP_ResetSorter, s.current.csr); if( pMWin->pPartition ){ if( pMWin->regStartRowid ){ sqlite3VdbeAddOp2(v, OP_Integer, 1, pMWin->regStartRowid); sqlite3VdbeAddOp2(v, OP_Integer, 0, pMWin->regEndRowid); } sqlite3VdbeChangeP1(v, addrInteger, sqlite3VdbeCurrentAddr(v)); sqlite3VdbeAddOp1(v, OP_Return, regFlushPart); } } #endif /* SQLITE_OMIT_WINDOWFUNC */ /************** End of window.c **********************************************/ /************** Begin file parse.c *******************************************/ /* ** 2000-05-29 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Driver template for the LEMON parser generator. ** ** The "lemon" program processes an LALR(1) input grammar file, then uses ** this template to construct a parser. The "lemon" program inserts text ** at each "%%" line. Also, any "P-a-r-s-e" identifer prefix (without the ** interstitial "-" characters) contained in this template is changed into ** the value of the %name directive from the grammar. Otherwise, the content ** of this template is copied straight through into the generate parser ** source file. ** ** The following is the concatenation of all %include directives from the ** input grammar file: */ /* #include */ /* #include */ /************ Begin %include sections from the grammar ************************/ /* #include "sqliteInt.h" */ /* ** Disable all error recovery processing in the parser push-down ** automaton. */ #define YYNOERRORRECOVERY 1 /* ** Make yytestcase() the same as testcase() */ #define yytestcase(X) testcase(X) /* ** Indicate that sqlite3ParserFree() will never be called with a null ** pointer. */ #define YYPARSEFREENEVERNULL 1 /* ** In the amalgamation, the parse.c file generated by lemon and the ** tokenize.c file are concatenated. In that case, sqlite3RunParser() ** has access to the the size of the yyParser object and so the parser ** engine can be allocated from stack. In that case, only the ** sqlite3ParserInit() and sqlite3ParserFinalize() routines are invoked ** and the sqlite3ParserAlloc() and sqlite3ParserFree() routines can be ** omitted. */ #ifdef SQLITE_AMALGAMATION # define sqlite3Parser_ENGINEALWAYSONSTACK 1 #endif /* ** Alternative datatype for the argument to the malloc() routine passed ** into sqlite3ParserAlloc(). The default is size_t. */ #define YYMALLOCARGTYPE u64 /* ** An instance of the following structure describes the event of a ** TRIGGER. "a" is the event type, one of TK_UPDATE, TK_INSERT, ** TK_DELETE, or TK_INSTEAD. If the event is of the form ** ** UPDATE ON (a,b,c) ** ** Then the "b" IdList records the list "a,b,c". */ struct TrigEvent { int a; IdList * b; }; struct FrameBound { int eType; Expr *pExpr; }; /* ** Disable lookaside memory allocation for objects that might be ** shared across database connections. */ static void disableLookaside(Parse *pParse){ sqlite3 *db = pParse->db; pParse->disableLookaside++; DisableLookaside; } #if !defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) \ && defined(SQLITE_UDL_CAPABLE_PARSER) /* ** Issue an error message if an ORDER BY or LIMIT clause occurs on an ** UPDATE or DELETE statement. */ static void updateDeleteLimitError( Parse *pParse, ExprList *pOrderBy, Expr *pLimit ){ if( pOrderBy ){ sqlite3ErrorMsg(pParse, "syntax error near \"ORDER BY\""); }else{ sqlite3ErrorMsg(pParse, "syntax error near \"LIMIT\""); } sqlite3ExprListDelete(pParse->db, pOrderBy); sqlite3ExprDelete(pParse->db, pLimit); } #endif /* SQLITE_ENABLE_UPDATE_DELETE_LIMIT */ /* ** For a compound SELECT statement, make sure p->pPrior->pNext==p for ** all elements in the list. And make sure list length does not exceed ** SQLITE_LIMIT_COMPOUND_SELECT. */ static void parserDoubleLinkSelect(Parse *pParse, Select *p){ assert( p!=0 ); if( p->pPrior ){ Select *pNext = 0, *pLoop; int mxSelect, cnt = 0; for(pLoop=p; pLoop; pNext=pLoop, pLoop=pLoop->pPrior, cnt++){ pLoop->pNext = pNext; pLoop->selFlags |= SF_Compound; } if( (p->selFlags & SF_MultiValue)==0 && (mxSelect = pParse->db->aLimit[SQLITE_LIMIT_COMPOUND_SELECT])>0 && cnt>mxSelect ){ sqlite3ErrorMsg(pParse, "too many terms in compound SELECT"); } } } /* Construct a new Expr object from a single identifier. Use the ** new Expr to populate pOut. Set the span of pOut to be the identifier ** that created the expression. */ static Expr *tokenExpr(Parse *pParse, int op, Token t){ Expr *p = sqlite3DbMallocRawNN(pParse->db, sizeof(Expr)+t.n+1); if( p ){ /* memset(p, 0, sizeof(Expr)); */ p->op = (u8)op; p->affExpr = 0; p->flags = EP_Leaf; ExprClearVVAProperties(p); p->iAgg = -1; p->pLeft = p->pRight = 0; p->x.pList = 0; p->pAggInfo = 0; p->y.pTab = 0; p->op2 = 0; p->iTable = 0; p->iColumn = 0; p->u.zToken = (char*)&p[1]; memcpy(p->u.zToken, t.z, t.n); p->u.zToken[t.n] = 0; if( sqlite3Isquote(p->u.zToken[0]) ){ sqlite3DequoteExpr(p); } #if SQLITE_MAX_EXPR_DEPTH>0 p->nHeight = 1; #endif if( IN_RENAME_OBJECT ){ return (Expr*)sqlite3RenameTokenMap(pParse, (void*)p, &t); } } return p; } /* A routine to convert a binary TK_IS or TK_ISNOT expression into a ** unary TK_ISNULL or TK_NOTNULL expression. */ static void binaryToUnaryIfNull(Parse *pParse, Expr *pY, Expr *pA, int op){ sqlite3 *db = pParse->db; if( pA && pY && pY->op==TK_NULL && !IN_RENAME_OBJECT ){ pA->op = (u8)op; sqlite3ExprDelete(db, pA->pRight); pA->pRight = 0; } } /* Add a single new term to an ExprList that is used to store a ** list of identifiers. Report an error if the ID list contains ** a COLLATE clause or an ASC or DESC keyword, except ignore the ** error while parsing a legacy schema. */ static ExprList *parserAddExprIdListTerm( Parse *pParse, ExprList *pPrior, Token *pIdToken, int hasCollate, int sortOrder ){ ExprList *p = sqlite3ExprListAppend(pParse, pPrior, 0); if( (hasCollate || sortOrder!=SQLITE_SO_UNDEFINED) && pParse->db->init.busy==0 ){ sqlite3ErrorMsg(pParse, "syntax error after column name \"%.*s\"", pIdToken->n, pIdToken->z); } sqlite3ExprListSetName(pParse, p, pIdToken, 1); return p; } #if TK_SPAN>255 # error too many tokens in the grammar #endif /**************** End of %include directives **********************************/ /* These constants specify the various numeric values for terminal symbols ** in a format understandable to "makeheaders". This section is blank unless ** "lemon" is run with the "-m" command-line option. ***************** Begin makeheaders token definitions *************************/ /**************** End makeheaders token definitions ***************************/ /* The next sections is a series of control #defines. ** various aspects of the generated parser. ** YYCODETYPE is the data type used to store the integer codes ** that represent terminal and non-terminal symbols. ** "unsigned char" is used if there are fewer than ** 256 symbols. Larger types otherwise. ** YYNOCODE is a number of type YYCODETYPE that is not used for ** any terminal or nonterminal symbol. ** YYFALLBACK If defined, this indicates that one or more tokens ** (also known as: "terminal symbols") have fall-back ** values which should be used if the original symbol ** would not parse. This permits keywords to sometimes ** be used as identifiers, for example. ** YYACTIONTYPE is the data type used for "action codes" - numbers ** that indicate what to do in response to the next ** token. ** sqlite3ParserTOKENTYPE is the data type used for minor type for terminal ** symbols. Background: A "minor type" is a semantic ** value associated with a terminal or non-terminal ** symbols. For example, for an "ID" terminal symbol, ** the minor type might be the name of the identifier. ** Each non-terminal can have a different minor type. ** Terminal symbols all have the same minor type, though. ** This macros defines the minor type for terminal ** symbols. ** YYMINORTYPE is the data type used for all minor types. ** This is typically a union of many types, one of ** which is sqlite3ParserTOKENTYPE. The entry in the union ** for terminal symbols is called "yy0". ** YYSTACKDEPTH is the maximum depth of the parser's stack. If ** zero the stack is dynamically sized using realloc() ** sqlite3ParserARG_SDECL A static variable declaration for the %extra_argument ** sqlite3ParserARG_PDECL A parameter declaration for the %extra_argument ** sqlite3ParserARG_PARAM Code to pass %extra_argument as a subroutine parameter ** sqlite3ParserARG_STORE Code to store %extra_argument into yypParser ** sqlite3ParserARG_FETCH Code to extract %extra_argument from yypParser ** sqlite3ParserCTX_* As sqlite3ParserARG_ except for %extra_context ** YYERRORSYMBOL is the code number of the error symbol. If not ** defined, then do no error processing. ** YYNSTATE the combined number of states. ** YYNRULE the number of rules in the grammar ** YYNTOKEN Number of terminal symbols ** YY_MAX_SHIFT Maximum value for shift actions ** YY_MIN_SHIFTREDUCE Minimum value for shift-reduce actions ** YY_MAX_SHIFTREDUCE Maximum value for shift-reduce actions ** YY_ERROR_ACTION The yy_action[] code for syntax error ** YY_ACCEPT_ACTION The yy_action[] code for accept ** YY_NO_ACTION The yy_action[] code for no-op ** YY_MIN_REDUCE Minimum value for reduce actions ** YY_MAX_REDUCE Maximum value for reduce actions */ #ifndef INTERFACE # define INTERFACE 1 #endif /************* Begin control #defines *****************************************/ #define YYCODETYPE unsigned short int #define YYNOCODE 310 #define YYACTIONTYPE unsigned short int #define YYWILDCARD 100 #define sqlite3ParserTOKENTYPE Token typedef union { int yyinit; sqlite3ParserTOKENTYPE yy0; SrcList* yy47; u8 yy58; struct FrameBound yy77; With* yy131; int yy192; Expr* yy202; struct {int value; int mask;} yy207; struct TrigEvent yy230; ExprList* yy242; Window* yy303; Upsert* yy318; const char* yy436; TriggerStep* yy447; Select* yy539; IdList* yy600; } YYMINORTYPE; #ifndef YYSTACKDEPTH #define YYSTACKDEPTH 100 #endif #define sqlite3ParserARG_SDECL #define sqlite3ParserARG_PDECL #define sqlite3ParserARG_PARAM #define sqlite3ParserARG_FETCH #define sqlite3ParserARG_STORE #define sqlite3ParserCTX_SDECL Parse *pParse; #define sqlite3ParserCTX_PDECL ,Parse *pParse #define sqlite3ParserCTX_PARAM ,pParse #define sqlite3ParserCTX_FETCH Parse *pParse=yypParser->pParse; #define sqlite3ParserCTX_STORE yypParser->pParse=pParse; #define YYFALLBACK 1 #define YYNSTATE 553 #define YYNRULE 385 #define YYNRULE_WITH_ACTION 325 #define YYNTOKEN 181 #define YY_MAX_SHIFT 552 #define YY_MIN_SHIFTREDUCE 803 #define YY_MAX_SHIFTREDUCE 1187 #define YY_ERROR_ACTION 1188 #define YY_ACCEPT_ACTION 1189 #define YY_NO_ACTION 1190 #define YY_MIN_REDUCE 1191 #define YY_MAX_REDUCE 1575 /************* End control #defines *******************************************/ #define YY_NLOOKAHEAD ((int)(sizeof(yy_lookahead)/sizeof(yy_lookahead[0]))) /* Define the yytestcase() macro to be a no-op if is not already defined ** otherwise. ** ** Applications can choose to define yytestcase() in the %include section ** to a macro that can assist in verifying code coverage. For production ** code the yytestcase() macro should be turned off. But it is useful ** for testing. */ #ifndef yytestcase # define yytestcase(X) #endif /* Next are the tables used to determine what action to take based on the ** current state and lookahead token. These tables are used to implement ** functions that take a state number and lookahead value and return an ** action integer. ** ** Suppose the action integer is N. Then the action is determined as ** follows ** ** 0 <= N <= YY_MAX_SHIFT Shift N. That is, push the lookahead ** token onto the stack and goto state N. ** ** N between YY_MIN_SHIFTREDUCE Shift to an arbitrary state then ** and YY_MAX_SHIFTREDUCE reduce by rule N-YY_MIN_SHIFTREDUCE. ** ** N == YY_ERROR_ACTION A syntax error has occurred. ** ** N == YY_ACCEPT_ACTION The parser accepts its input. ** ** N == YY_NO_ACTION No such action. Denotes unused ** slots in the yy_action[] table. ** ** N between YY_MIN_REDUCE Reduce by rule N-YY_MIN_REDUCE ** and YY_MAX_REDUCE ** ** The action table is constructed as a single large table named yy_action[]. ** Given state S and lookahead X, the action is computed as either: ** ** (A) N = yy_action[ yy_shift_ofst[S] + X ] ** (B) N = yy_default[S] ** ** The (A) formula is preferred. The B formula is used instead if ** yy_lookahead[yy_shift_ofst[S]+X] is not equal to X. ** ** The formulas above are for computing the action when the lookahead is ** a terminal symbol. If the lookahead is a non-terminal (as occurs after ** a reduce action) then the yy_reduce_ofst[] array is used in place of ** the yy_shift_ofst[] array. ** ** The following are the tables generated in this section: ** ** yy_action[] A single table containing all actions. ** yy_lookahead[] A table containing the lookahead for each entry in ** yy_action. Used to detect hash collisions. ** yy_shift_ofst[] For each state, the offset into yy_action for ** shifting terminals. ** yy_reduce_ofst[] For each state, the offset into yy_action for ** shifting non-terminals after a reduce. ** yy_default[] Default action for each state. ** *********** Begin parsing tables **********************************************/ #define YY_ACTTAB_COUNT (1962) static const YYACTIONTYPE yy_action[] = { /* 0 */ 546, 1222, 546, 451, 1260, 546, 1239, 546, 114, 111, /* 10 */ 211, 546, 1537, 546, 1260, 523, 114, 111, 211, 392, /* 20 */ 1232, 344, 42, 42, 42, 42, 1225, 42, 42, 71, /* 30 */ 71, 937, 1224, 71, 71, 71, 71, 1462, 1493, 938, /* 40 */ 820, 453, 6, 121, 122, 112, 1165, 1165, 1006, 1009, /* 50 */ 999, 999, 119, 119, 120, 120, 120, 120, 1543, 392, /* 60 */ 1358, 1517, 552, 2, 1193, 194, 528, 436, 143, 291, /* 70 */ 528, 136, 528, 371, 261, 504, 272, 385, 1273, 527, /* 80 */ 503, 493, 164, 121, 122, 112, 1165, 1165, 1006, 1009, /* 90 */ 999, 999, 119, 119, 120, 120, 120, 120, 1358, 442, /* 100 */ 1514, 118, 118, 118, 118, 117, 117, 116, 116, 116, /* 110 */ 115, 424, 266, 266, 266, 266, 1498, 358, 1500, 435, /* 120 */ 357, 1498, 517, 524, 1485, 543, 1114, 543, 1114, 392, /* 130 */ 405, 241, 208, 114, 111, 211, 98, 290, 537, 221, /* 140 */ 1029, 118, 118, 118, 118, 117, 117, 116, 116, 116, /* 150 */ 115, 424, 1142, 121, 122, 112, 1165, 1165, 1006, 1009, /* 160 */ 999, 999, 119, 119, 120, 120, 120, 120, 406, 428, /* 170 */ 117, 117, 116, 116, 116, 115, 424, 1418, 468, 123, /* 180 */ 118, 118, 118, 118, 117, 117, 116, 116, 116, 115, /* 190 */ 424, 116, 116, 116, 115, 424, 540, 540, 540, 392, /* 200 */ 505, 120, 120, 120, 120, 113, 1051, 1142, 1143, 1144, /* 210 */ 1051, 118, 118, 118, 118, 117, 117, 116, 116, 116, /* 220 */ 115, 424, 1461, 121, 122, 112, 1165, 1165, 1006, 1009, /* 230 */ 999, 999, 119, 119, 120, 120, 120, 120, 392, 444, /* 240 */ 316, 83, 463, 81, 359, 382, 1142, 80, 118, 118, /* 250 */ 118, 118, 117, 117, 116, 116, 116, 115, 424, 179, /* 260 */ 434, 424, 121, 122, 112, 1165, 1165, 1006, 1009, 999, /* 270 */ 999, 119, 119, 120, 120, 120, 120, 434, 433, 266, /* 280 */ 266, 118, 118, 118, 118, 117, 117, 116, 116, 116, /* 290 */ 115, 424, 543, 1109, 903, 506, 1142, 114, 111, 211, /* 300 */ 1431, 1142, 1143, 1144, 206, 491, 1109, 392, 449, 1109, /* 310 */ 545, 330, 120, 120, 120, 120, 298, 1431, 1433, 17, /* 320 */ 118, 118, 118, 118, 117, 117, 116, 116, 116, 115, /* 330 */ 424, 121, 122, 112, 1165, 1165, 1006, 1009, 999, 999, /* 340 */ 119, 119, 120, 120, 120, 120, 392, 1358, 434, 1142, /* 350 */ 482, 1142, 1143, 1144, 996, 996, 1007, 1010, 445, 118, /* 360 */ 118, 118, 118, 117, 117, 116, 116, 116, 115, 424, /* 370 */ 121, 122, 112, 1165, 1165, 1006, 1009, 999, 999, 119, /* 380 */ 119, 120, 120, 120, 120, 1054, 1054, 465, 1431, 118, /* 390 */ 118, 118, 118, 117, 117, 116, 116, 116, 115, 424, /* 400 */ 1142, 451, 546, 1426, 1142, 1143, 1144, 233, 966, 1142, /* 410 */ 481, 478, 477, 171, 360, 392, 164, 407, 414, 842, /* 420 */ 476, 164, 185, 334, 71, 71, 1243, 1000, 118, 118, /* 430 */ 118, 118, 117, 117, 116, 116, 116, 115, 424, 121, /* 440 */ 122, 112, 1165, 1165, 1006, 1009, 999, 999, 119, 119, /* 450 */ 120, 120, 120, 120, 392, 1142, 1143, 1144, 835, 12, /* 460 */ 314, 509, 163, 356, 1142, 1143, 1144, 114, 111, 211, /* 470 */ 508, 290, 537, 546, 276, 180, 290, 537, 121, 122, /* 480 */ 112, 1165, 1165, 1006, 1009, 999, 999, 119, 119, 120, /* 490 */ 120, 120, 120, 345, 484, 71, 71, 118, 118, 118, /* 500 */ 118, 117, 117, 116, 116, 116, 115, 424, 1142, 209, /* 510 */ 411, 523, 1142, 1109, 1571, 378, 252, 269, 342, 487, /* 520 */ 337, 486, 238, 392, 513, 364, 1109, 1127, 333, 1109, /* 530 */ 191, 409, 286, 32, 457, 443, 118, 118, 118, 118, /* 540 */ 117, 117, 116, 116, 116, 115, 424, 121, 122, 112, /* 550 */ 1165, 1165, 1006, 1009, 999, 999, 119, 119, 120, 120, /* 560 */ 120, 120, 392, 1142, 1143, 1144, 987, 1142, 1143, 1144, /* 570 */ 1142, 233, 492, 1492, 481, 478, 477, 6, 163, 546, /* 580 */ 512, 546, 115, 424, 476, 5, 121, 122, 112, 1165, /* 590 */ 1165, 1006, 1009, 999, 999, 119, 119, 120, 120, 120, /* 600 */ 120, 13, 13, 13, 13, 118, 118, 118, 118, 117, /* 610 */ 117, 116, 116, 116, 115, 424, 403, 502, 408, 546, /* 620 */ 1486, 544, 1142, 892, 892, 1142, 1143, 1144, 1473, 1142, /* 630 */ 275, 392, 808, 809, 810, 971, 422, 422, 422, 16, /* 640 */ 16, 55, 55, 1242, 118, 118, 118, 118, 117, 117, /* 650 */ 116, 116, 116, 115, 424, 121, 122, 112, 1165, 1165, /* 660 */ 1006, 1009, 999, 999, 119, 119, 120, 120, 120, 120, /* 670 */ 392, 1189, 1, 1, 552, 2, 1193, 1142, 1143, 1144, /* 680 */ 194, 291, 898, 136, 1142, 1143, 1144, 897, 521, 1492, /* 690 */ 1273, 3, 380, 6, 121, 122, 112, 1165, 1165, 1006, /* 700 */ 1009, 999, 999, 119, 119, 120, 120, 120, 120, 858, /* 710 */ 546, 924, 546, 118, 118, 118, 118, 117, 117, 116, /* 720 */ 116, 116, 115, 424, 266, 266, 1092, 1569, 1142, 551, /* 730 */ 1569, 1193, 13, 13, 13, 13, 291, 543, 136, 392, /* 740 */ 485, 421, 420, 966, 344, 1273, 468, 410, 859, 279, /* 750 */ 140, 221, 118, 118, 118, 118, 117, 117, 116, 116, /* 760 */ 116, 115, 424, 121, 122, 112, 1165, 1165, 1006, 1009, /* 770 */ 999, 999, 119, 119, 120, 120, 120, 120, 546, 266, /* 780 */ 266, 428, 392, 1142, 1143, 1144, 1172, 830, 1172, 468, /* 790 */ 431, 145, 543, 1146, 401, 314, 439, 302, 838, 1490, /* 800 */ 71, 71, 412, 6, 1090, 473, 221, 100, 112, 1165, /* 810 */ 1165, 1006, 1009, 999, 999, 119, 119, 120, 120, 120, /* 820 */ 120, 118, 118, 118, 118, 117, 117, 116, 116, 116, /* 830 */ 115, 424, 237, 1425, 546, 451, 428, 287, 986, 546, /* 840 */ 236, 235, 234, 830, 97, 529, 429, 1265, 1265, 1146, /* 850 */ 494, 307, 430, 838, 977, 546, 71, 71, 976, 1241, /* 860 */ 546, 51, 51, 300, 118, 118, 118, 118, 117, 117, /* 870 */ 116, 116, 116, 115, 424, 194, 103, 70, 70, 266, /* 880 */ 266, 546, 71, 71, 266, 266, 30, 391, 344, 976, /* 890 */ 976, 978, 543, 528, 1109, 328, 392, 543, 495, 397, /* 900 */ 1470, 195, 530, 13, 13, 1358, 240, 1109, 277, 280, /* 910 */ 1109, 280, 304, 457, 306, 333, 392, 31, 188, 419, /* 920 */ 121, 122, 112, 1165, 1165, 1006, 1009, 999, 999, 119, /* 930 */ 119, 120, 120, 120, 120, 142, 392, 365, 457, 986, /* 940 */ 121, 122, 112, 1165, 1165, 1006, 1009, 999, 999, 119, /* 950 */ 119, 120, 120, 120, 120, 977, 323, 1142, 326, 976, /* 960 */ 121, 110, 112, 1165, 1165, 1006, 1009, 999, 999, 119, /* 970 */ 119, 120, 120, 120, 120, 464, 377, 1185, 118, 118, /* 980 */ 118, 118, 117, 117, 116, 116, 116, 115, 424, 1142, /* 990 */ 976, 976, 978, 305, 9, 366, 244, 362, 118, 118, /* 1000 */ 118, 118, 117, 117, 116, 116, 116, 115, 424, 313, /* 1010 */ 546, 344, 1142, 1143, 1144, 299, 290, 537, 118, 118, /* 1020 */ 118, 118, 117, 117, 116, 116, 116, 115, 424, 1263, /* 1030 */ 1263, 1163, 13, 13, 278, 421, 420, 468, 392, 923, /* 1040 */ 260, 260, 289, 1169, 1142, 1143, 1144, 189, 1171, 266, /* 1050 */ 266, 468, 390, 543, 1186, 546, 1170, 263, 144, 489, /* 1060 */ 922, 546, 543, 122, 112, 1165, 1165, 1006, 1009, 999, /* 1070 */ 999, 119, 119, 120, 120, 120, 120, 71, 71, 1142, /* 1080 */ 1172, 1272, 1172, 13, 13, 898, 1070, 1163, 546, 468, /* 1090 */ 897, 107, 538, 1491, 4, 1268, 1109, 6, 525, 1049, /* 1100 */ 12, 1071, 1092, 1570, 312, 455, 1570, 520, 541, 1109, /* 1110 */ 56, 56, 1109, 1489, 423, 1358, 1072, 6, 345, 285, /* 1120 */ 118, 118, 118, 118, 117, 117, 116, 116, 116, 115, /* 1130 */ 424, 425, 1271, 321, 1142, 1143, 1144, 878, 266, 266, /* 1140 */ 1277, 107, 538, 535, 4, 1488, 293, 879, 1211, 6, /* 1150 */ 210, 543, 543, 164, 294, 496, 416, 204, 541, 267, /* 1160 */ 267, 1214, 398, 511, 499, 204, 266, 266, 396, 531, /* 1170 */ 8, 986, 543, 519, 546, 922, 458, 105, 105, 543, /* 1180 */ 1090, 425, 266, 266, 106, 417, 425, 548, 547, 266, /* 1190 */ 266, 976, 518, 535, 1373, 543, 15, 15, 266, 266, /* 1200 */ 456, 1120, 543, 266, 266, 1070, 1372, 515, 290, 537, /* 1210 */ 546, 543, 514, 97, 444, 316, 543, 546, 922, 125, /* 1220 */ 1071, 986, 976, 976, 978, 979, 27, 105, 105, 401, /* 1230 */ 343, 1511, 44, 44, 106, 1072, 425, 548, 547, 57, /* 1240 */ 57, 976, 343, 1511, 107, 538, 546, 4, 462, 401, /* 1250 */ 214, 1120, 459, 297, 377, 1091, 534, 1309, 546, 539, /* 1260 */ 398, 541, 290, 537, 104, 244, 102, 526, 58, 58, /* 1270 */ 546, 199, 976, 976, 978, 979, 27, 1516, 1131, 427, /* 1280 */ 59, 59, 270, 237, 425, 138, 95, 375, 375, 374, /* 1290 */ 255, 372, 60, 60, 817, 1180, 535, 546, 273, 546, /* 1300 */ 1163, 1308, 389, 388, 546, 438, 546, 215, 210, 296, /* 1310 */ 515, 849, 546, 265, 208, 516, 1476, 295, 274, 61, /* 1320 */ 61, 62, 62, 308, 986, 109, 45, 45, 46, 46, /* 1330 */ 105, 105, 1186, 922, 47, 47, 341, 106, 546, 425, /* 1340 */ 548, 547, 1542, 546, 976, 867, 340, 217, 546, 937, /* 1350 */ 397, 107, 538, 218, 4, 156, 1163, 938, 158, 546, /* 1360 */ 49, 49, 1162, 546, 268, 50, 50, 546, 541, 1450, /* 1370 */ 63, 63, 546, 1449, 216, 976, 976, 978, 979, 27, /* 1380 */ 446, 64, 64, 546, 460, 65, 65, 546, 318, 14, /* 1390 */ 14, 425, 1305, 546, 66, 66, 1087, 546, 141, 379, /* 1400 */ 38, 546, 963, 535, 322, 127, 127, 546, 393, 67, /* 1410 */ 67, 546, 325, 290, 537, 52, 52, 515, 546, 68, /* 1420 */ 68, 845, 514, 69, 69, 399, 165, 857, 856, 53, /* 1430 */ 53, 986, 311, 151, 151, 97, 432, 105, 105, 327, /* 1440 */ 152, 152, 526, 1048, 106, 1048, 425, 548, 547, 1131, /* 1450 */ 427, 976, 1032, 270, 968, 239, 329, 243, 375, 375, /* 1460 */ 374, 255, 372, 940, 941, 817, 1296, 546, 220, 546, /* 1470 */ 107, 538, 546, 4, 546, 1256, 199, 845, 215, 1036, /* 1480 */ 296, 1530, 976, 976, 978, 979, 27, 541, 295, 76, /* 1490 */ 76, 54, 54, 980, 72, 72, 128, 128, 864, 865, /* 1500 */ 107, 538, 546, 4, 1047, 546, 1047, 533, 469, 546, /* 1510 */ 425, 546, 450, 1240, 546, 243, 546, 541, 217, 546, /* 1520 */ 452, 197, 535, 243, 73, 73, 156, 129, 129, 158, /* 1530 */ 336, 130, 130, 126, 126, 1036, 150, 150, 149, 149, /* 1540 */ 425, 134, 134, 317, 474, 216, 97, 239, 331, 980, /* 1550 */ 986, 97, 535, 346, 347, 546, 105, 105, 902, 931, /* 1560 */ 546, 895, 243, 106, 109, 425, 548, 547, 546, 1505, /* 1570 */ 976, 828, 99, 538, 139, 4, 546, 133, 133, 393, /* 1580 */ 986, 1317, 131, 131, 290, 537, 105, 105, 1357, 541, /* 1590 */ 132, 132, 1292, 106, 1303, 425, 548, 547, 75, 75, /* 1600 */ 976, 976, 976, 978, 979, 27, 546, 432, 896, 1289, /* 1610 */ 532, 109, 425, 1363, 546, 1221, 1213, 1202, 258, 546, /* 1620 */ 349, 546, 1201, 11, 535, 1203, 1524, 351, 77, 77, /* 1630 */ 376, 976, 976, 978, 979, 27, 74, 74, 353, 213, /* 1640 */ 301, 43, 43, 48, 48, 437, 310, 201, 303, 1350, /* 1650 */ 315, 355, 986, 454, 479, 1239, 339, 192, 105, 105, /* 1660 */ 1422, 1421, 193, 536, 205, 106, 1527, 425, 548, 547, /* 1670 */ 1180, 167, 976, 270, 247, 1469, 1467, 1177, 375, 375, /* 1680 */ 374, 255, 372, 200, 369, 817, 400, 83, 79, 82, /* 1690 */ 1427, 448, 177, 95, 1342, 161, 169, 1339, 215, 440, /* 1700 */ 296, 172, 173, 976, 976, 978, 979, 27, 295, 174, /* 1710 */ 175, 441, 472, 223, 1347, 383, 35, 381, 36, 461, /* 1720 */ 88, 1353, 181, 447, 384, 1416, 227, 467, 259, 229, /* 1730 */ 186, 488, 470, 324, 1250, 230, 231, 320, 217, 1204, /* 1740 */ 1438, 1259, 386, 1258, 413, 90, 156, 849, 1541, 158, /* 1750 */ 206, 415, 1540, 507, 1300, 1257, 94, 348, 1229, 1301, /* 1760 */ 387, 1510, 1228, 338, 1227, 216, 350, 1539, 498, 283, /* 1770 */ 284, 1249, 501, 1299, 352, 245, 246, 418, 1298, 354, /* 1780 */ 1496, 1495, 124, 10, 526, 363, 101, 1324, 253, 96, /* 1790 */ 510, 1210, 34, 549, 1137, 254, 256, 257, 166, 393, /* 1800 */ 550, 1199, 1282, 361, 290, 537, 1281, 196, 367, 368, /* 1810 */ 1194, 153, 1454, 137, 281, 1323, 1455, 804, 154, 426, /* 1820 */ 198, 155, 1453, 1452, 292, 212, 202, 432, 1402, 203, /* 1830 */ 271, 135, 288, 78, 1046, 1044, 960, 168, 157, 881, /* 1840 */ 170, 219, 309, 222, 1060, 176, 964, 159, 402, 84, /* 1850 */ 178, 404, 85, 86, 87, 160, 1063, 224, 394, 395, /* 1860 */ 225, 1059, 146, 18, 226, 319, 243, 1174, 466, 228, /* 1870 */ 1052, 182, 183, 37, 819, 471, 340, 232, 332, 483, /* 1880 */ 184, 89, 162, 19, 20, 475, 91, 480, 847, 335, /* 1890 */ 147, 860, 282, 92, 490, 93, 1125, 148, 1012, 1095, /* 1900 */ 39, 497, 1096, 40, 500, 262, 207, 264, 930, 187, /* 1910 */ 925, 109, 1111, 1115, 1113, 7, 1099, 242, 33, 1119, /* 1920 */ 21, 522, 22, 23, 24, 1118, 25, 190, 97, 26, /* 1930 */ 1027, 1013, 1011, 1015, 1069, 1016, 1068, 249, 248, 28, /* 1940 */ 41, 891, 981, 829, 108, 29, 250, 542, 251, 370, /* 1950 */ 373, 1133, 1132, 1190, 1190, 1190, 1190, 1190, 1190, 1190, /* 1960 */ 1532, 1531, }; static const YYCODETYPE yy_lookahead[] = { /* 0 */ 189, 211, 189, 189, 218, 189, 220, 189, 267, 268, /* 10 */ 269, 189, 210, 189, 228, 189, 267, 268, 269, 19, /* 20 */ 218, 189, 211, 212, 211, 212, 211, 211, 212, 211, /* 30 */ 212, 31, 211, 211, 212, 211, 212, 288, 300, 39, /* 40 */ 21, 189, 304, 43, 44, 45, 46, 47, 48, 49, /* 50 */ 50, 51, 52, 53, 54, 55, 56, 57, 225, 19, /* 60 */ 189, 183, 184, 185, 186, 189, 248, 263, 236, 191, /* 70 */ 248, 193, 248, 197, 208, 257, 262, 201, 200, 257, /* 80 */ 200, 257, 81, 43, 44, 45, 46, 47, 48, 49, /* 90 */ 50, 51, 52, 53, 54, 55, 56, 57, 189, 80, /* 100 */ 189, 101, 102, 103, 104, 105, 106, 107, 108, 109, /* 110 */ 110, 111, 234, 235, 234, 235, 305, 306, 305, 118, /* 120 */ 307, 305, 306, 297, 298, 247, 86, 247, 88, 19, /* 130 */ 259, 251, 252, 267, 268, 269, 26, 136, 137, 261, /* 140 */ 121, 101, 102, 103, 104, 105, 106, 107, 108, 109, /* 150 */ 110, 111, 59, 43, 44, 45, 46, 47, 48, 49, /* 160 */ 50, 51, 52, 53, 54, 55, 56, 57, 259, 291, /* 170 */ 105, 106, 107, 108, 109, 110, 111, 158, 189, 69, /* 180 */ 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, /* 190 */ 111, 107, 108, 109, 110, 111, 205, 206, 207, 19, /* 200 */ 19, 54, 55, 56, 57, 58, 29, 114, 115, 116, /* 210 */ 33, 101, 102, 103, 104, 105, 106, 107, 108, 109, /* 220 */ 110, 111, 233, 43, 44, 45, 46, 47, 48, 49, /* 230 */ 50, 51, 52, 53, 54, 55, 56, 57, 19, 126, /* 240 */ 127, 148, 65, 24, 214, 200, 59, 67, 101, 102, /* 250 */ 103, 104, 105, 106, 107, 108, 109, 110, 111, 22, /* 260 */ 189, 111, 43, 44, 45, 46, 47, 48, 49, 50, /* 270 */ 51, 52, 53, 54, 55, 56, 57, 206, 207, 234, /* 280 */ 235, 101, 102, 103, 104, 105, 106, 107, 108, 109, /* 290 */ 110, 111, 247, 76, 107, 114, 59, 267, 268, 269, /* 300 */ 189, 114, 115, 116, 162, 163, 89, 19, 263, 92, /* 310 */ 189, 23, 54, 55, 56, 57, 189, 206, 207, 22, /* 320 */ 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, /* 330 */ 111, 43, 44, 45, 46, 47, 48, 49, 50, 51, /* 340 */ 52, 53, 54, 55, 56, 57, 19, 189, 277, 59, /* 350 */ 23, 114, 115, 116, 46, 47, 48, 49, 61, 101, /* 360 */ 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, /* 370 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, /* 380 */ 53, 54, 55, 56, 57, 125, 126, 127, 277, 101, /* 390 */ 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, /* 400 */ 59, 189, 189, 276, 114, 115, 116, 117, 73, 59, /* 410 */ 120, 121, 122, 72, 214, 19, 81, 259, 19, 23, /* 420 */ 130, 81, 72, 24, 211, 212, 221, 119, 101, 102, /* 430 */ 103, 104, 105, 106, 107, 108, 109, 110, 111, 43, /* 440 */ 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, /* 450 */ 54, 55, 56, 57, 19, 114, 115, 116, 23, 208, /* 460 */ 125, 248, 189, 189, 114, 115, 116, 267, 268, 269, /* 470 */ 189, 136, 137, 189, 262, 22, 136, 137, 43, 44, /* 480 */ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, /* 490 */ 55, 56, 57, 189, 95, 211, 212, 101, 102, 103, /* 500 */ 104, 105, 106, 107, 108, 109, 110, 111, 59, 189, /* 510 */ 111, 189, 59, 76, 294, 295, 117, 118, 119, 120, /* 520 */ 121, 122, 123, 19, 87, 189, 89, 23, 129, 92, /* 530 */ 279, 227, 248, 22, 189, 284, 101, 102, 103, 104, /* 540 */ 105, 106, 107, 108, 109, 110, 111, 43, 44, 45, /* 550 */ 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, /* 560 */ 56, 57, 19, 114, 115, 116, 23, 114, 115, 116, /* 570 */ 59, 117, 299, 300, 120, 121, 122, 304, 189, 189, /* 580 */ 143, 189, 110, 111, 130, 22, 43, 44, 45, 46, /* 590 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, /* 600 */ 57, 211, 212, 211, 212, 101, 102, 103, 104, 105, /* 610 */ 106, 107, 108, 109, 110, 111, 226, 189, 226, 189, /* 620 */ 298, 132, 59, 134, 135, 114, 115, 116, 189, 59, /* 630 */ 285, 19, 7, 8, 9, 23, 205, 206, 207, 211, /* 640 */ 212, 211, 212, 221, 101, 102, 103, 104, 105, 106, /* 650 */ 107, 108, 109, 110, 111, 43, 44, 45, 46, 47, /* 660 */ 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, /* 670 */ 19, 181, 182, 183, 184, 185, 186, 114, 115, 116, /* 680 */ 189, 191, 133, 193, 114, 115, 116, 138, 299, 300, /* 690 */ 200, 22, 201, 304, 43, 44, 45, 46, 47, 48, /* 700 */ 49, 50, 51, 52, 53, 54, 55, 56, 57, 35, /* 710 */ 189, 141, 189, 101, 102, 103, 104, 105, 106, 107, /* 720 */ 108, 109, 110, 111, 234, 235, 22, 23, 59, 184, /* 730 */ 26, 186, 211, 212, 211, 212, 191, 247, 193, 19, /* 740 */ 66, 105, 106, 73, 189, 200, 189, 226, 74, 226, /* 750 */ 22, 261, 101, 102, 103, 104, 105, 106, 107, 108, /* 760 */ 109, 110, 111, 43, 44, 45, 46, 47, 48, 49, /* 770 */ 50, 51, 52, 53, 54, 55, 56, 57, 189, 234, /* 780 */ 235, 291, 19, 114, 115, 116, 150, 59, 152, 189, /* 790 */ 233, 236, 247, 59, 189, 125, 126, 127, 59, 300, /* 800 */ 211, 212, 128, 304, 100, 19, 261, 156, 45, 46, /* 810 */ 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, /* 820 */ 57, 101, 102, 103, 104, 105, 106, 107, 108, 109, /* 830 */ 110, 111, 46, 233, 189, 189, 291, 248, 99, 189, /* 840 */ 125, 126, 127, 115, 26, 200, 289, 230, 231, 115, /* 850 */ 200, 16, 189, 114, 115, 189, 211, 212, 119, 221, /* 860 */ 189, 211, 212, 258, 101, 102, 103, 104, 105, 106, /* 870 */ 107, 108, 109, 110, 111, 189, 156, 211, 212, 234, /* 880 */ 235, 189, 211, 212, 234, 235, 22, 201, 189, 150, /* 890 */ 151, 152, 247, 248, 76, 16, 19, 247, 248, 113, /* 900 */ 189, 24, 257, 211, 212, 189, 26, 89, 262, 223, /* 910 */ 92, 225, 77, 189, 79, 129, 19, 53, 226, 248, /* 920 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, /* 930 */ 53, 54, 55, 56, 57, 236, 19, 271, 189, 99, /* 940 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, /* 950 */ 53, 54, 55, 56, 57, 115, 77, 59, 79, 119, /* 960 */ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, /* 970 */ 53, 54, 55, 56, 57, 259, 22, 23, 101, 102, /* 980 */ 103, 104, 105, 106, 107, 108, 109, 110, 111, 59, /* 990 */ 150, 151, 152, 158, 22, 244, 24, 246, 101, 102, /* 1000 */ 103, 104, 105, 106, 107, 108, 109, 110, 111, 285, /* 1010 */ 189, 189, 114, 115, 116, 200, 136, 137, 101, 102, /* 1020 */ 103, 104, 105, 106, 107, 108, 109, 110, 111, 230, /* 1030 */ 231, 59, 211, 212, 285, 105, 106, 189, 19, 141, /* 1040 */ 234, 235, 239, 113, 114, 115, 116, 226, 118, 234, /* 1050 */ 235, 189, 249, 247, 100, 189, 126, 23, 236, 107, /* 1060 */ 26, 189, 247, 44, 45, 46, 47, 48, 49, 50, /* 1070 */ 51, 52, 53, 54, 55, 56, 57, 211, 212, 59, /* 1080 */ 150, 233, 152, 211, 212, 133, 12, 115, 189, 189, /* 1090 */ 138, 19, 20, 300, 22, 233, 76, 304, 226, 11, /* 1100 */ 208, 27, 22, 23, 200, 19, 26, 87, 36, 89, /* 1110 */ 211, 212, 92, 300, 248, 189, 42, 304, 189, 250, /* 1120 */ 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, /* 1130 */ 111, 59, 200, 233, 114, 115, 116, 63, 234, 235, /* 1140 */ 235, 19, 20, 71, 22, 300, 189, 73, 200, 304, /* 1150 */ 116, 247, 247, 81, 189, 200, 227, 26, 36, 234, /* 1160 */ 235, 203, 204, 143, 200, 26, 234, 235, 194, 200, /* 1170 */ 48, 99, 247, 66, 189, 141, 284, 105, 106, 247, /* 1180 */ 100, 59, 234, 235, 112, 259, 114, 115, 116, 234, /* 1190 */ 235, 119, 85, 71, 266, 247, 211, 212, 234, 235, /* 1200 */ 114, 94, 247, 234, 235, 12, 266, 85, 136, 137, /* 1210 */ 189, 247, 90, 26, 126, 127, 247, 189, 26, 22, /* 1220 */ 27, 99, 150, 151, 152, 153, 154, 105, 106, 189, /* 1230 */ 302, 303, 211, 212, 112, 42, 114, 115, 116, 211, /* 1240 */ 212, 119, 302, 303, 19, 20, 189, 22, 274, 189, /* 1250 */ 15, 144, 278, 189, 22, 23, 63, 189, 189, 203, /* 1260 */ 204, 36, 136, 137, 155, 24, 157, 143, 211, 212, /* 1270 */ 189, 140, 150, 151, 152, 153, 154, 0, 1, 2, /* 1280 */ 211, 212, 5, 46, 59, 161, 147, 10, 11, 12, /* 1290 */ 13, 14, 211, 212, 17, 60, 71, 189, 258, 189, /* 1300 */ 59, 189, 105, 106, 189, 189, 189, 30, 116, 32, /* 1310 */ 85, 124, 189, 251, 252, 90, 189, 40, 258, 211, /* 1320 */ 212, 211, 212, 189, 99, 26, 211, 212, 211, 212, /* 1330 */ 105, 106, 100, 141, 211, 212, 119, 112, 189, 114, /* 1340 */ 115, 116, 23, 189, 119, 26, 129, 70, 189, 31, /* 1350 */ 113, 19, 20, 24, 22, 78, 115, 39, 81, 189, /* 1360 */ 211, 212, 26, 189, 22, 211, 212, 189, 36, 189, /* 1370 */ 211, 212, 189, 189, 97, 150, 151, 152, 153, 154, /* 1380 */ 127, 211, 212, 189, 189, 211, 212, 189, 189, 211, /* 1390 */ 212, 59, 189, 189, 211, 212, 23, 189, 22, 26, /* 1400 */ 24, 189, 149, 71, 189, 211, 212, 189, 131, 211, /* 1410 */ 212, 189, 189, 136, 137, 211, 212, 85, 189, 211, /* 1420 */ 212, 59, 90, 211, 212, 292, 293, 118, 119, 211, /* 1430 */ 212, 99, 23, 211, 212, 26, 159, 105, 106, 189, /* 1440 */ 211, 212, 143, 150, 112, 152, 114, 115, 116, 1, /* 1450 */ 2, 119, 23, 5, 23, 26, 189, 26, 10, 11, /* 1460 */ 12, 13, 14, 83, 84, 17, 253, 189, 139, 189, /* 1470 */ 19, 20, 189, 22, 189, 189, 140, 115, 30, 59, /* 1480 */ 32, 139, 150, 151, 152, 153, 154, 36, 40, 211, /* 1490 */ 212, 211, 212, 59, 211, 212, 211, 212, 7, 8, /* 1500 */ 19, 20, 189, 22, 150, 189, 152, 231, 281, 189, /* 1510 */ 59, 189, 23, 189, 189, 26, 189, 36, 70, 189, /* 1520 */ 23, 237, 71, 26, 211, 212, 78, 211, 212, 81, /* 1530 */ 189, 211, 212, 211, 212, 115, 211, 212, 211, 212, /* 1540 */ 59, 211, 212, 23, 23, 97, 26, 26, 23, 115, /* 1550 */ 99, 26, 71, 189, 189, 189, 105, 106, 107, 23, /* 1560 */ 189, 23, 26, 112, 26, 114, 115, 116, 189, 309, /* 1570 */ 119, 23, 19, 20, 26, 22, 189, 211, 212, 131, /* 1580 */ 99, 189, 211, 212, 136, 137, 105, 106, 189, 36, /* 1590 */ 211, 212, 189, 112, 189, 114, 115, 116, 211, 212, /* 1600 */ 119, 150, 151, 152, 153, 154, 189, 159, 23, 250, /* 1610 */ 189, 26, 59, 189, 189, 189, 189, 189, 280, 189, /* 1620 */ 250, 189, 189, 238, 71, 189, 189, 250, 211, 212, /* 1630 */ 187, 150, 151, 152, 153, 154, 211, 212, 250, 290, /* 1640 */ 240, 211, 212, 211, 212, 254, 286, 209, 254, 241, /* 1650 */ 240, 254, 99, 286, 215, 220, 214, 244, 105, 106, /* 1660 */ 214, 214, 244, 273, 224, 112, 192, 114, 115, 116, /* 1670 */ 60, 290, 119, 5, 139, 196, 196, 38, 10, 11, /* 1680 */ 12, 13, 14, 238, 240, 17, 196, 148, 287, 287, /* 1690 */ 276, 113, 22, 147, 241, 43, 229, 241, 30, 18, /* 1700 */ 32, 232, 232, 150, 151, 152, 153, 154, 40, 232, /* 1710 */ 232, 196, 18, 195, 265, 265, 264, 241, 264, 196, /* 1720 */ 155, 229, 229, 241, 241, 241, 195, 62, 196, 195, /* 1730 */ 22, 113, 216, 196, 222, 195, 195, 282, 70, 196, /* 1740 */ 283, 213, 216, 213, 64, 22, 78, 124, 219, 81, /* 1750 */ 162, 111, 219, 142, 256, 213, 113, 255, 213, 256, /* 1760 */ 216, 303, 215, 213, 213, 97, 255, 213, 216, 275, /* 1770 */ 275, 222, 216, 256, 255, 196, 91, 82, 256, 255, /* 1780 */ 308, 308, 146, 22, 143, 196, 155, 260, 25, 145, /* 1790 */ 144, 199, 26, 198, 13, 190, 190, 6, 293, 131, /* 1800 */ 188, 188, 245, 244, 136, 137, 245, 243, 242, 241, /* 1810 */ 188, 202, 208, 217, 217, 260, 208, 4, 202, 3, /* 1820 */ 22, 202, 208, 208, 160, 15, 209, 159, 270, 209, /* 1830 */ 98, 16, 272, 208, 23, 23, 137, 148, 128, 20, /* 1840 */ 140, 24, 16, 142, 1, 140, 149, 128, 61, 53, /* 1850 */ 148, 37, 53, 53, 53, 128, 114, 34, 296, 296, /* 1860 */ 139, 1, 5, 22, 113, 158, 26, 75, 41, 139, /* 1870 */ 68, 68, 113, 24, 20, 19, 129, 123, 23, 96, /* 1880 */ 22, 22, 37, 22, 22, 67, 22, 67, 59, 24, /* 1890 */ 23, 28, 67, 147, 22, 26, 23, 23, 23, 23, /* 1900 */ 22, 24, 23, 22, 24, 23, 139, 23, 114, 22, /* 1910 */ 141, 26, 88, 75, 86, 44, 23, 34, 22, 75, /* 1920 */ 34, 24, 34, 34, 34, 93, 34, 26, 26, 34, /* 1930 */ 23, 23, 23, 23, 23, 11, 23, 22, 26, 22, /* 1940 */ 22, 133, 23, 23, 22, 22, 139, 26, 139, 23, /* 1950 */ 15, 1, 1, 310, 310, 310, 310, 310, 310, 310, /* 1960 */ 139, 139, 310, 310, 310, 310, 310, 310, 310, 310, /* 1970 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 1980 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 1990 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2000 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2010 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2020 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2030 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2040 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2050 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2060 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2070 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2080 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2090 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2100 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2110 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2120 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2130 */ 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, /* 2140 */ 310, 310, 310, }; #define YY_SHIFT_COUNT (552) #define YY_SHIFT_MIN (0) #define YY_SHIFT_MAX (1951) static const unsigned short int yy_shift_ofst[] = { /* 0 */ 1448, 1277, 1668, 1072, 1072, 340, 1122, 1225, 1332, 1481, /* 10 */ 1481, 1481, 335, 0, 0, 180, 897, 1481, 1481, 1481, /* 20 */ 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, /* 30 */ 930, 930, 1020, 1020, 290, 1, 340, 340, 340, 340, /* 40 */ 340, 340, 40, 110, 219, 288, 327, 396, 435, 504, /* 50 */ 543, 612, 651, 720, 877, 897, 897, 897, 897, 897, /* 60 */ 897, 897, 897, 897, 897, 897, 897, 897, 897, 897, /* 70 */ 897, 897, 897, 917, 897, 1019, 763, 763, 1451, 1481, /* 80 */ 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, /* 90 */ 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, /* 100 */ 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, /* 110 */ 1481, 1481, 1553, 1481, 1481, 1481, 1481, 1481, 1481, 1481, /* 120 */ 1481, 1481, 1481, 1481, 1481, 1481, 147, 258, 258, 258, /* 130 */ 258, 258, 79, 65, 84, 449, 19, 786, 449, 636, /* 140 */ 636, 449, 880, 880, 880, 880, 113, 142, 142, 472, /* 150 */ 150, 1962, 1962, 399, 399, 399, 93, 237, 341, 237, /* 160 */ 237, 1074, 1074, 437, 350, 704, 1080, 449, 449, 449, /* 170 */ 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, /* 180 */ 449, 449, 449, 449, 449, 449, 449, 449, 818, 818, /* 190 */ 449, 1088, 217, 217, 734, 734, 1124, 1126, 1962, 1962, /* 200 */ 1962, 739, 840, 840, 453, 454, 511, 187, 563, 570, /* 210 */ 898, 669, 449, 449, 449, 449, 449, 449, 449, 449, /* 220 */ 449, 670, 449, 449, 449, 449, 449, 449, 449, 449, /* 230 */ 449, 449, 449, 449, 674, 674, 674, 449, 449, 449, /* 240 */ 449, 1034, 449, 449, 449, 972, 1107, 449, 449, 1193, /* 250 */ 449, 449, 449, 449, 449, 449, 449, 449, 260, 177, /* 260 */ 489, 1241, 1241, 1241, 1241, 1192, 489, 489, 952, 1197, /* 270 */ 625, 1235, 1131, 181, 181, 1086, 1139, 1131, 1086, 1187, /* 280 */ 1319, 1237, 1318, 1318, 1318, 181, 1299, 1299, 1109, 1336, /* 290 */ 549, 1376, 1610, 1535, 1535, 1639, 1639, 1535, 1539, 1578, /* 300 */ 1670, 1546, 1652, 1546, 1681, 1681, 1681, 1681, 1535, 1694, /* 310 */ 1546, 1546, 1578, 1670, 1652, 1546, 1652, 1546, 1535, 1694, /* 320 */ 1565, 1665, 1535, 1694, 1708, 1535, 1694, 1535, 1694, 1708, /* 330 */ 1618, 1618, 1618, 1680, 1723, 1723, 1708, 1618, 1623, 1618, /* 340 */ 1680, 1618, 1618, 1588, 1708, 1640, 1640, 1708, 1611, 1643, /* 350 */ 1611, 1643, 1611, 1643, 1611, 1643, 1535, 1685, 1685, 1695, /* 360 */ 1695, 1636, 1641, 1761, 1535, 1631, 1636, 1644, 1646, 1546, /* 370 */ 1763, 1766, 1781, 1781, 1791, 1791, 1791, 1962, 1962, 1962, /* 380 */ 1962, 1962, 1962, 1962, 1962, 1962, 1962, 1962, 1962, 1962, /* 390 */ 1962, 1962, 308, 835, 954, 1232, 879, 715, 728, 1373, /* 400 */ 864, 1329, 1253, 1409, 297, 1431, 1489, 1497, 1520, 1521, /* 410 */ 1525, 1362, 1309, 1491, 1217, 1420, 1429, 1536, 1380, 1538, /* 420 */ 1293, 1354, 1548, 1585, 1434, 1342, 1813, 1816, 1798, 1664, /* 430 */ 1810, 1732, 1815, 1811, 1812, 1699, 1689, 1710, 1817, 1700, /* 440 */ 1819, 1701, 1826, 1843, 1705, 1697, 1719, 1787, 1814, 1702, /* 450 */ 1796, 1799, 1800, 1801, 1727, 1742, 1823, 1721, 1860, 1857, /* 460 */ 1841, 1751, 1707, 1802, 1840, 1803, 1792, 1827, 1730, 1759, /* 470 */ 1849, 1854, 1856, 1747, 1754, 1858, 1818, 1859, 1861, 1855, /* 480 */ 1862, 1820, 1829, 1865, 1783, 1863, 1864, 1825, 1845, 1867, /* 490 */ 1746, 1872, 1873, 1874, 1875, 1869, 1876, 1878, 1877, 1879, /* 500 */ 1881, 1880, 1767, 1882, 1884, 1794, 1883, 1887, 1769, 1885, /* 510 */ 1886, 1888, 1889, 1890, 1824, 1838, 1828, 1871, 1844, 1832, /* 520 */ 1892, 1893, 1896, 1897, 1901, 1902, 1895, 1907, 1885, 1908, /* 530 */ 1909, 1910, 1911, 1912, 1913, 1915, 1924, 1917, 1918, 1919, /* 540 */ 1920, 1922, 1923, 1921, 1808, 1807, 1809, 1821, 1822, 1926, /* 550 */ 1935, 1950, 1951, }; #define YY_REDUCE_COUNT (391) #define YY_REDUCE_MIN (-262) #define YY_REDUCE_MAX (1625) static const short yy_reduce_ofst[] = { /* 0 */ 490, -122, 545, 645, 650, -120, -189, -187, -184, -182, /* 10 */ -178, -176, 45, 30, 200, -251, -134, 390, 392, 521, /* 20 */ 523, 213, 692, 821, 284, 589, 872, 666, 671, 866, /* 30 */ 71, 111, 273, 389, 686, 815, 904, 932, 948, 955, /* 40 */ 964, 969, -259, -259, -259, -259, -259, -259, -259, -259, /* 50 */ -259, -259, -259, -259, -259, -259, -259, -259, -259, -259, /* 60 */ -259, -259, -259, -259, -259, -259, -259, -259, -259, -259, /* 70 */ -259, -259, -259, -259, -259, -259, -259, -259, 428, 430, /* 80 */ 899, 985, 1021, 1028, 1057, 1069, 1081, 1108, 1110, 1115, /* 90 */ 1117, 1123, 1149, 1154, 1159, 1170, 1174, 1178, 1183, 1194, /* 100 */ 1198, 1204, 1208, 1212, 1218, 1222, 1229, 1278, 1280, 1283, /* 110 */ 1285, 1313, 1316, 1320, 1322, 1325, 1327, 1330, 1366, 1371, /* 120 */ 1379, 1387, 1417, 1425, 1430, 1432, -259, -259, -259, -259, /* 130 */ -259, -259, -259, -259, -259, 557, 974, -214, -174, -9, /* 140 */ 431, -124, 806, 925, 806, 925, 251, 928, 940, -259, /* 150 */ -259, -259, -259, -198, -198, -198, 127, -186, -168, 212, /* 160 */ 646, 617, 799, -262, 555, 220, 220, 491, 605, 1040, /* 170 */ 1060, 699, -11, 600, 848, 862, 345, -129, 724, -91, /* 180 */ 158, 749, 716, 900, 304, 822, 929, 926, 499, 793, /* 190 */ 322, 892, 813, 845, 958, 1056, 751, 905, 1133, 1062, /* 200 */ 803, -210, -185, -179, -148, -167, -89, 121, 274, 281, /* 210 */ 320, 336, 439, 663, 711, 957, 965, 1064, 1068, 1112, /* 220 */ 1116, -196, 1127, 1134, 1180, 1184, 1195, 1199, 1203, 1215, /* 230 */ 1223, 1250, 1267, 1286, 205, 422, 638, 1324, 1341, 1364, /* 240 */ 1365, 1213, 1392, 1399, 1403, 869, 1260, 1405, 1421, 1276, /* 250 */ 1424, 121, 1426, 1427, 1428, 1433, 1436, 1437, 1227, 1338, /* 260 */ 1284, 1359, 1370, 1377, 1388, 1213, 1284, 1284, 1385, 1438, /* 270 */ 1443, 1349, 1400, 1391, 1394, 1360, 1408, 1410, 1367, 1439, /* 280 */ 1440, 1435, 1442, 1446, 1447, 1397, 1413, 1418, 1390, 1444, /* 290 */ 1445, 1474, 1381, 1479, 1480, 1401, 1402, 1490, 1414, 1449, /* 300 */ 1452, 1453, 1467, 1456, 1469, 1470, 1477, 1478, 1515, 1518, /* 310 */ 1476, 1482, 1450, 1454, 1492, 1483, 1493, 1484, 1523, 1531, /* 320 */ 1457, 1455, 1532, 1534, 1516, 1537, 1540, 1543, 1541, 1526, /* 330 */ 1528, 1530, 1542, 1512, 1529, 1533, 1544, 1545, 1547, 1550, /* 340 */ 1549, 1551, 1554, 1458, 1552, 1494, 1495, 1556, 1498, 1502, /* 350 */ 1503, 1511, 1517, 1519, 1522, 1524, 1579, 1472, 1473, 1527, /* 360 */ 1555, 1557, 1559, 1558, 1589, 1560, 1561, 1564, 1566, 1568, /* 370 */ 1592, 1595, 1605, 1606, 1612, 1613, 1622, 1562, 1563, 1505, /* 380 */ 1609, 1604, 1608, 1614, 1615, 1616, 1596, 1597, 1617, 1620, /* 390 */ 1625, 1619, }; static const YYACTIONTYPE yy_default[] = { /* 0 */ 1575, 1575, 1575, 1411, 1188, 1297, 1188, 1188, 1188, 1411, /* 10 */ 1411, 1411, 1188, 1327, 1327, 1464, 1219, 1188, 1188, 1188, /* 20 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1410, 1188, 1188, /* 30 */ 1188, 1188, 1494, 1494, 1188, 1188, 1188, 1188, 1188, 1188, /* 40 */ 1188, 1188, 1188, 1336, 1188, 1188, 1188, 1188, 1188, 1188, /* 50 */ 1412, 1413, 1188, 1188, 1188, 1463, 1465, 1428, 1346, 1345, /* 60 */ 1344, 1343, 1446, 1314, 1341, 1334, 1338, 1406, 1407, 1405, /* 70 */ 1409, 1413, 1412, 1188, 1337, 1377, 1391, 1376, 1188, 1188, /* 80 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 90 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 100 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 110 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 120 */ 1188, 1188, 1188, 1188, 1188, 1188, 1385, 1390, 1396, 1389, /* 130 */ 1386, 1379, 1378, 1380, 1381, 1188, 1209, 1261, 1188, 1188, /* 140 */ 1188, 1188, 1482, 1481, 1188, 1188, 1219, 1371, 1370, 1382, /* 150 */ 1383, 1393, 1392, 1471, 1529, 1528, 1429, 1188, 1188, 1188, /* 160 */ 1188, 1188, 1188, 1494, 1188, 1188, 1188, 1188, 1188, 1188, /* 170 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 180 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1494, 1494, /* 190 */ 1188, 1219, 1494, 1494, 1215, 1215, 1321, 1188, 1477, 1297, /* 200 */ 1288, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 210 */ 1188, 1188, 1188, 1188, 1188, 1468, 1466, 1188, 1188, 1188, /* 220 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 230 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 240 */ 1188, 1188, 1188, 1188, 1188, 1293, 1188, 1188, 1188, 1188, /* 250 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1523, 1188, 1441, /* 260 */ 1275, 1293, 1293, 1293, 1293, 1295, 1276, 1274, 1287, 1220, /* 270 */ 1195, 1567, 1294, 1316, 1316, 1564, 1340, 1294, 1564, 1236, /* 280 */ 1545, 1231, 1327, 1327, 1327, 1316, 1321, 1321, 1408, 1294, /* 290 */ 1287, 1188, 1567, 1302, 1302, 1566, 1566, 1302, 1429, 1349, /* 300 */ 1355, 1340, 1264, 1340, 1270, 1270, 1270, 1270, 1302, 1206, /* 310 */ 1340, 1340, 1349, 1355, 1264, 1340, 1264, 1340, 1302, 1206, /* 320 */ 1445, 1561, 1302, 1206, 1419, 1302, 1206, 1302, 1206, 1419, /* 330 */ 1262, 1262, 1262, 1251, 1188, 1188, 1419, 1262, 1236, 1262, /* 340 */ 1251, 1262, 1262, 1512, 1419, 1423, 1423, 1419, 1320, 1315, /* 350 */ 1320, 1315, 1320, 1315, 1320, 1315, 1302, 1504, 1504, 1330, /* 360 */ 1330, 1335, 1321, 1414, 1302, 1188, 1335, 1333, 1331, 1340, /* 370 */ 1212, 1254, 1526, 1526, 1522, 1522, 1522, 1572, 1572, 1477, /* 380 */ 1538, 1219, 1219, 1219, 1219, 1538, 1238, 1238, 1220, 1220, /* 390 */ 1219, 1538, 1188, 1188, 1188, 1188, 1188, 1188, 1533, 1188, /* 400 */ 1430, 1306, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 410 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 420 */ 1188, 1188, 1188, 1188, 1188, 1360, 1188, 1191, 1474, 1188, /* 430 */ 1188, 1472, 1188, 1188, 1188, 1188, 1188, 1188, 1307, 1188, /* 440 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 450 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1563, 1188, 1188, /* 460 */ 1188, 1188, 1188, 1188, 1444, 1443, 1188, 1188, 1304, 1188, /* 470 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 480 */ 1188, 1188, 1234, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 490 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 500 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1332, /* 510 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 520 */ 1188, 1188, 1188, 1188, 1509, 1322, 1188, 1188, 1554, 1188, /* 530 */ 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, /* 540 */ 1188, 1188, 1188, 1549, 1278, 1362, 1188, 1361, 1365, 1188, /* 550 */ 1200, 1188, 1188, }; /********** End of lemon-generated parsing tables *****************************/ /* The next table maps tokens (terminal symbols) into fallback tokens. ** If a construct like the following: ** ** %fallback ID X Y Z. ** ** appears in the grammar, then ID becomes a fallback token for X, Y, ** and Z. Whenever one of the tokens X, Y, or Z is input to the parser ** but it does not parse, the type of the token is changed to ID and ** the parse is retried before an error is thrown. ** ** This feature can be used, for example, to cause some keywords in a language ** to revert to identifiers if they keyword does not apply in the context where ** it appears. */ #ifdef YYFALLBACK static const YYCODETYPE yyFallback[] = { 0, /* $ => nothing */ 0, /* SEMI => nothing */ 59, /* EXPLAIN => ID */ 59, /* QUERY => ID */ 59, /* PLAN => ID */ 59, /* BEGIN => ID */ 0, /* TRANSACTION => nothing */ 59, /* DEFERRED => ID */ 59, /* IMMEDIATE => ID */ 59, /* EXCLUSIVE => ID */ 0, /* COMMIT => nothing */ 59, /* END => ID */ 59, /* ROLLBACK => ID */ 59, /* SAVEPOINT => ID */ 59, /* RELEASE => ID */ 0, /* TO => nothing */ 0, /* TABLE => nothing */ 0, /* CREATE => nothing */ 59, /* IF => ID */ 0, /* NOT => nothing */ 0, /* EXISTS => nothing */ 59, /* TEMP => ID */ 0, /* LP => nothing */ 0, /* RP => nothing */ 0, /* AS => nothing */ 59, /* WITHOUT => ID */ 0, /* COMMA => nothing */ 59, /* ABORT => ID */ 59, /* ACTION => ID */ 59, /* AFTER => ID */ 59, /* ANALYZE => ID */ 59, /* ASC => ID */ 59, /* ATTACH => ID */ 59, /* BEFORE => ID */ 59, /* BY => ID */ 59, /* CASCADE => ID */ 59, /* CAST => ID */ 59, /* CONFLICT => ID */ 59, /* DATABASE => ID */ 59, /* DESC => ID */ 59, /* DETACH => ID */ 59, /* EACH => ID */ 59, /* FAIL => ID */ 0, /* OR => nothing */ 0, /* AND => nothing */ 0, /* IS => nothing */ 59, /* MATCH => ID */ 59, /* LIKE_KW => ID */ 0, /* BETWEEN => nothing */ 0, /* IN => nothing */ 0, /* ISNULL => nothing */ 0, /* NOTNULL => nothing */ 0, /* NE => nothing */ 0, /* EQ => nothing */ 0, /* GT => nothing */ 0, /* LE => nothing */ 0, /* LT => nothing */ 0, /* GE => nothing */ 0, /* ESCAPE => nothing */ 0, /* ID => nothing */ 59, /* COLUMNKW => ID */ 59, /* DO => ID */ 59, /* FOR => ID */ 59, /* IGNORE => ID */ 59, /* INITIALLY => ID */ 59, /* INSTEAD => ID */ 59, /* NO => ID */ 59, /* KEY => ID */ 59, /* OF => ID */ 59, /* OFFSET => ID */ 59, /* PRAGMA => ID */ 59, /* RAISE => ID */ 59, /* RECURSIVE => ID */ 59, /* REPLACE => ID */ 59, /* RESTRICT => ID */ 59, /* ROW => ID */ 59, /* ROWS => ID */ 59, /* TRIGGER => ID */ 59, /* VACUUM => ID */ 59, /* VIEW => ID */ 59, /* VIRTUAL => ID */ 59, /* WITH => ID */ 59, /* NULLS => ID */ 59, /* FIRST => ID */ 59, /* LAST => ID */ 59, /* CURRENT => ID */ 59, /* FOLLOWING => ID */ 59, /* PARTITION => ID */ 59, /* PRECEDING => ID */ 59, /* RANGE => ID */ 59, /* UNBOUNDED => ID */ 59, /* EXCLUDE => ID */ 59, /* GROUPS => ID */ 59, /* OTHERS => ID */ 59, /* TIES => ID */ 59, /* GENERATED => ID */ 59, /* ALWAYS => ID */ 59, /* REINDEX => ID */ 59, /* RENAME => ID */ 59, /* CTIME_KW => ID */ 0, /* ANY => nothing */ 0, /* BITAND => nothing */ 0, /* BITOR => nothing */ 0, /* LSHIFT => nothing */ 0, /* RSHIFT => nothing */ 0, /* PLUS => nothing */ 0, /* MINUS => nothing */ 0, /* STAR => nothing */ 0, /* SLASH => nothing */ 0, /* REM => nothing */ 0, /* CONCAT => nothing */ 0, /* COLLATE => nothing */ 0, /* BITNOT => nothing */ 0, /* ON => nothing */ 0, /* INDEXED => nothing */ 0, /* STRING => nothing */ 0, /* JOIN_KW => nothing */ 0, /* CONSTRAINT => nothing */ 0, /* DEFAULT => nothing */ 0, /* NULL => nothing */ 0, /* PRIMARY => nothing */ 0, /* UNIQUE => nothing */ 0, /* CHECK => nothing */ 0, /* REFERENCES => nothing */ 0, /* AUTOINCR => nothing */ 0, /* INSERT => nothing */ 0, /* DELETE => nothing */ 0, /* UPDATE => nothing */ 0, /* SET => nothing */ 0, /* DEFERRABLE => nothing */ 0, /* FOREIGN => nothing */ 0, /* DROP => nothing */ 0, /* UNION => nothing */ 0, /* ALL => nothing */ 0, /* EXCEPT => nothing */ 0, /* INTERSECT => nothing */ 0, /* SELECT => nothing */ 0, /* VALUES => nothing */ 0, /* DISTINCT => nothing */ 0, /* DOT => nothing */ 0, /* FROM => nothing */ 0, /* JOIN => nothing */ 0, /* USING => nothing */ 0, /* ORDER => nothing */ 0, /* GROUP => nothing */ 0, /* HAVING => nothing */ 0, /* LIMIT => nothing */ 0, /* WHERE => nothing */ 0, /* INTO => nothing */ 0, /* NOTHING => nothing */ 0, /* FLOAT => nothing */ 0, /* BLOB => nothing */ 0, /* INTEGER => nothing */ 0, /* VARIABLE => nothing */ 0, /* CASE => nothing */ 0, /* WHEN => nothing */ 0, /* THEN => nothing */ 0, /* ELSE => nothing */ 0, /* INDEX => nothing */ 0, /* ALTER => nothing */ 0, /* ADD => nothing */ 0, /* WINDOW => nothing */ 0, /* OVER => nothing */ 0, /* FILTER => nothing */ 0, /* COLUMN => nothing */ 0, /* AGG_FUNCTION => nothing */ 0, /* AGG_COLUMN => nothing */ 0, /* TRUEFALSE => nothing */ 0, /* ISNOT => nothing */ 0, /* FUNCTION => nothing */ 0, /* UMINUS => nothing */ 0, /* UPLUS => nothing */ 0, /* TRUTH => nothing */ 0, /* REGISTER => nothing */ 0, /* VECTOR => nothing */ 0, /* SELECT_COLUMN => nothing */ 0, /* IF_NULL_ROW => nothing */ 0, /* ASTERISK => nothing */ 0, /* SPAN => nothing */ 0, /* SPACE => nothing */ 0, /* ILLEGAL => nothing */ }; #endif /* YYFALLBACK */ /* The following structure represents a single element of the ** parser's stack. Information stored includes: ** ** + The state number for the parser at this level of the stack. ** ** + The value of the token stored at this level of the stack. ** (In other words, the "major" token.) ** ** + The semantic value stored at this level of the stack. This is ** the information used by the action routines in the grammar. ** It is sometimes called the "minor" token. ** ** After the "shift" half of a SHIFTREDUCE action, the stateno field ** actually contains the reduce action for the second half of the ** SHIFTREDUCE. */ struct yyStackEntry { YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ YYCODETYPE major; /* The major token value. This is the code ** number for the token at this stack level */ YYMINORTYPE minor; /* The user-supplied minor token value. This ** is the value of the token */ }; typedef struct yyStackEntry yyStackEntry; /* The state of the parser is completely contained in an instance of ** the following structure */ struct yyParser { yyStackEntry *yytos; /* Pointer to top element of the stack */ #ifdef YYTRACKMAXSTACKDEPTH int yyhwm; /* High-water mark of the stack */ #endif #ifndef YYNOERRORRECOVERY int yyerrcnt; /* Shifts left before out of the error */ #endif sqlite3ParserARG_SDECL /* A place to hold %extra_argument */ sqlite3ParserCTX_SDECL /* A place to hold %extra_context */ #if YYSTACKDEPTH<=0 int yystksz; /* Current side of the stack */ yyStackEntry *yystack; /* The parser's stack */ yyStackEntry yystk0; /* First stack entry */ #else yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ yyStackEntry *yystackEnd; /* Last entry in the stack */ #endif }; typedef struct yyParser yyParser; #ifndef NDEBUG /* #include */ static FILE *yyTraceFILE = 0; static char *yyTracePrompt = 0; #endif /* NDEBUG */ #ifndef NDEBUG /* ** Turn parser tracing on by giving a stream to which to write the trace ** and a prompt to preface each trace message. Tracing is turned off ** by making either argument NULL ** ** Inputs: **
      **
    • A FILE* to which trace output should be written. ** If NULL, then tracing is turned off. **
    • A prefix string written at the beginning of every ** line of trace output. If NULL, then tracing is ** turned off. **
    ** ** Outputs: ** None. */ SQLITE_PRIVATE void sqlite3ParserTrace(FILE *TraceFILE, char *zTracePrompt){ yyTraceFILE = TraceFILE; yyTracePrompt = zTracePrompt; if( yyTraceFILE==0 ) yyTracePrompt = 0; else if( yyTracePrompt==0 ) yyTraceFILE = 0; } #endif /* NDEBUG */ #if defined(YYCOVERAGE) || !defined(NDEBUG) /* For tracing shifts, the names of all terminals and nonterminals ** are required. The following table supplies these names */ static const char *const yyTokenName[] = { /* 0 */ "$", /* 1 */ "SEMI", /* 2 */ "EXPLAIN", /* 3 */ "QUERY", /* 4 */ "PLAN", /* 5 */ "BEGIN", /* 6 */ "TRANSACTION", /* 7 */ "DEFERRED", /* 8 */ "IMMEDIATE", /* 9 */ "EXCLUSIVE", /* 10 */ "COMMIT", /* 11 */ "END", /* 12 */ "ROLLBACK", /* 13 */ "SAVEPOINT", /* 14 */ "RELEASE", /* 15 */ "TO", /* 16 */ "TABLE", /* 17 */ "CREATE", /* 18 */ "IF", /* 19 */ "NOT", /* 20 */ "EXISTS", /* 21 */ "TEMP", /* 22 */ "LP", /* 23 */ "RP", /* 24 */ "AS", /* 25 */ "WITHOUT", /* 26 */ "COMMA", /* 27 */ "ABORT", /* 28 */ "ACTION", /* 29 */ "AFTER", /* 30 */ "ANALYZE", /* 31 */ "ASC", /* 32 */ "ATTACH", /* 33 */ "BEFORE", /* 34 */ "BY", /* 35 */ "CASCADE", /* 36 */ "CAST", /* 37 */ "CONFLICT", /* 38 */ "DATABASE", /* 39 */ "DESC", /* 40 */ "DETACH", /* 41 */ "EACH", /* 42 */ "FAIL", /* 43 */ "OR", /* 44 */ "AND", /* 45 */ "IS", /* 46 */ "MATCH", /* 47 */ "LIKE_KW", /* 48 */ "BETWEEN", /* 49 */ "IN", /* 50 */ "ISNULL", /* 51 */ "NOTNULL", /* 52 */ "NE", /* 53 */ "EQ", /* 54 */ "GT", /* 55 */ "LE", /* 56 */ "LT", /* 57 */ "GE", /* 58 */ "ESCAPE", /* 59 */ "ID", /* 60 */ "COLUMNKW", /* 61 */ "DO", /* 62 */ "FOR", /* 63 */ "IGNORE", /* 64 */ "INITIALLY", /* 65 */ "INSTEAD", /* 66 */ "NO", /* 67 */ "KEY", /* 68 */ "OF", /* 69 */ "OFFSET", /* 70 */ "PRAGMA", /* 71 */ "RAISE", /* 72 */ "RECURSIVE", /* 73 */ "REPLACE", /* 74 */ "RESTRICT", /* 75 */ "ROW", /* 76 */ "ROWS", /* 77 */ "TRIGGER", /* 78 */ "VACUUM", /* 79 */ "VIEW", /* 80 */ "VIRTUAL", /* 81 */ "WITH", /* 82 */ "NULLS", /* 83 */ "FIRST", /* 84 */ "LAST", /* 85 */ "CURRENT", /* 86 */ "FOLLOWING", /* 87 */ "PARTITION", /* 88 */ "PRECEDING", /* 89 */ "RANGE", /* 90 */ "UNBOUNDED", /* 91 */ "EXCLUDE", /* 92 */ "GROUPS", /* 93 */ "OTHERS", /* 94 */ "TIES", /* 95 */ "GENERATED", /* 96 */ "ALWAYS", /* 97 */ "REINDEX", /* 98 */ "RENAME", /* 99 */ "CTIME_KW", /* 100 */ "ANY", /* 101 */ "BITAND", /* 102 */ "BITOR", /* 103 */ "LSHIFT", /* 104 */ "RSHIFT", /* 105 */ "PLUS", /* 106 */ "MINUS", /* 107 */ "STAR", /* 108 */ "SLASH", /* 109 */ "REM", /* 110 */ "CONCAT", /* 111 */ "COLLATE", /* 112 */ "BITNOT", /* 113 */ "ON", /* 114 */ "INDEXED", /* 115 */ "STRING", /* 116 */ "JOIN_KW", /* 117 */ "CONSTRAINT", /* 118 */ "DEFAULT", /* 119 */ "NULL", /* 120 */ "PRIMARY", /* 121 */ "UNIQUE", /* 122 */ "CHECK", /* 123 */ "REFERENCES", /* 124 */ "AUTOINCR", /* 125 */ "INSERT", /* 126 */ "DELETE", /* 127 */ "UPDATE", /* 128 */ "SET", /* 129 */ "DEFERRABLE", /* 130 */ "FOREIGN", /* 131 */ "DROP", /* 132 */ "UNION", /* 133 */ "ALL", /* 134 */ "EXCEPT", /* 135 */ "INTERSECT", /* 136 */ "SELECT", /* 137 */ "VALUES", /* 138 */ "DISTINCT", /* 139 */ "DOT", /* 140 */ "FROM", /* 141 */ "JOIN", /* 142 */ "USING", /* 143 */ "ORDER", /* 144 */ "GROUP", /* 145 */ "HAVING", /* 146 */ "LIMIT", /* 147 */ "WHERE", /* 148 */ "INTO", /* 149 */ "NOTHING", /* 150 */ "FLOAT", /* 151 */ "BLOB", /* 152 */ "INTEGER", /* 153 */ "VARIABLE", /* 154 */ "CASE", /* 155 */ "WHEN", /* 156 */ "THEN", /* 157 */ "ELSE", /* 158 */ "INDEX", /* 159 */ "ALTER", /* 160 */ "ADD", /* 161 */ "WINDOW", /* 162 */ "OVER", /* 163 */ "FILTER", /* 164 */ "COLUMN", /* 165 */ "AGG_FUNCTION", /* 166 */ "AGG_COLUMN", /* 167 */ "TRUEFALSE", /* 168 */ "ISNOT", /* 169 */ "FUNCTION", /* 170 */ "UMINUS", /* 171 */ "UPLUS", /* 172 */ "TRUTH", /* 173 */ "REGISTER", /* 174 */ "VECTOR", /* 175 */ "SELECT_COLUMN", /* 176 */ "IF_NULL_ROW", /* 177 */ "ASTERISK", /* 178 */ "SPAN", /* 179 */ "SPACE", /* 180 */ "ILLEGAL", /* 181 */ "input", /* 182 */ "cmdlist", /* 183 */ "ecmd", /* 184 */ "cmdx", /* 185 */ "explain", /* 186 */ "cmd", /* 187 */ "transtype", /* 188 */ "trans_opt", /* 189 */ "nm", /* 190 */ "savepoint_opt", /* 191 */ "create_table", /* 192 */ "create_table_args", /* 193 */ "createkw", /* 194 */ "temp", /* 195 */ "ifnotexists", /* 196 */ "dbnm", /* 197 */ "columnlist", /* 198 */ "conslist_opt", /* 199 */ "table_options", /* 200 */ "select", /* 201 */ "columnname", /* 202 */ "carglist", /* 203 */ "typetoken", /* 204 */ "typename", /* 205 */ "signed", /* 206 */ "plus_num", /* 207 */ "minus_num", /* 208 */ "scanpt", /* 209 */ "scantok", /* 210 */ "ccons", /* 211 */ "term", /* 212 */ "expr", /* 213 */ "onconf", /* 214 */ "sortorder", /* 215 */ "autoinc", /* 216 */ "eidlist_opt", /* 217 */ "refargs", /* 218 */ "defer_subclause", /* 219 */ "generated", /* 220 */ "refarg", /* 221 */ "refact", /* 222 */ "init_deferred_pred_opt", /* 223 */ "conslist", /* 224 */ "tconscomma", /* 225 */ "tcons", /* 226 */ "sortlist", /* 227 */ "eidlist", /* 228 */ "defer_subclause_opt", /* 229 */ "orconf", /* 230 */ "resolvetype", /* 231 */ "raisetype", /* 232 */ "ifexists", /* 233 */ "fullname", /* 234 */ "selectnowith", /* 235 */ "oneselect", /* 236 */ "wqlist", /* 237 */ "multiselect_op", /* 238 */ "distinct", /* 239 */ "selcollist", /* 240 */ "from", /* 241 */ "where_opt", /* 242 */ "groupby_opt", /* 243 */ "having_opt", /* 244 */ "orderby_opt", /* 245 */ "limit_opt", /* 246 */ "window_clause", /* 247 */ "values", /* 248 */ "nexprlist", /* 249 */ "sclp", /* 250 */ "as", /* 251 */ "seltablist", /* 252 */ "stl_prefix", /* 253 */ "joinop", /* 254 */ "indexed_opt", /* 255 */ "on_opt", /* 256 */ "using_opt", /* 257 */ "exprlist", /* 258 */ "xfullname", /* 259 */ "idlist", /* 260 */ "nulls", /* 261 */ "with", /* 262 */ "setlist", /* 263 */ "insert_cmd", /* 264 */ "idlist_opt", /* 265 */ "upsert", /* 266 */ "filter_over", /* 267 */ "likeop", /* 268 */ "between_op", /* 269 */ "in_op", /* 270 */ "paren_exprlist", /* 271 */ "case_operand", /* 272 */ "case_exprlist", /* 273 */ "case_else", /* 274 */ "uniqueflag", /* 275 */ "collate", /* 276 */ "vinto", /* 277 */ "nmnum", /* 278 */ "trigger_decl", /* 279 */ "trigger_cmd_list", /* 280 */ "trigger_time", /* 281 */ "trigger_event", /* 282 */ "foreach_clause", /* 283 */ "when_clause", /* 284 */ "trigger_cmd", /* 285 */ "trnm", /* 286 */ "tridxby", /* 287 */ "database_kw_opt", /* 288 */ "key_opt", /* 289 */ "add_column_fullname", /* 290 */ "kwcolumn_opt", /* 291 */ "create_vtab", /* 292 */ "vtabarglist", /* 293 */ "vtabarg", /* 294 */ "vtabargtoken", /* 295 */ "lp", /* 296 */ "anylist", /* 297 */ "windowdefn_list", /* 298 */ "windowdefn", /* 299 */ "window", /* 300 */ "frame_opt", /* 301 */ "part_opt", /* 302 */ "filter_clause", /* 303 */ "over_clause", /* 304 */ "range_or_rows", /* 305 */ "frame_bound", /* 306 */ "frame_bound_s", /* 307 */ "frame_bound_e", /* 308 */ "frame_exclude_opt", /* 309 */ "frame_exclude", }; #endif /* defined(YYCOVERAGE) || !defined(NDEBUG) */ #ifndef NDEBUG /* For tracing reduce actions, the names of all rules are required. */ static const char *const yyRuleName[] = { /* 0 */ "explain ::= EXPLAIN", /* 1 */ "explain ::= EXPLAIN QUERY PLAN", /* 2 */ "cmdx ::= cmd", /* 3 */ "cmd ::= BEGIN transtype trans_opt", /* 4 */ "transtype ::=", /* 5 */ "transtype ::= DEFERRED", /* 6 */ "transtype ::= IMMEDIATE", /* 7 */ "transtype ::= EXCLUSIVE", /* 8 */ "cmd ::= COMMIT|END trans_opt", /* 9 */ "cmd ::= ROLLBACK trans_opt", /* 10 */ "cmd ::= SAVEPOINT nm", /* 11 */ "cmd ::= RELEASE savepoint_opt nm", /* 12 */ "cmd ::= ROLLBACK trans_opt TO savepoint_opt nm", /* 13 */ "create_table ::= createkw temp TABLE ifnotexists nm dbnm", /* 14 */ "createkw ::= CREATE", /* 15 */ "ifnotexists ::=", /* 16 */ "ifnotexists ::= IF NOT EXISTS", /* 17 */ "temp ::= TEMP", /* 18 */ "temp ::=", /* 19 */ "create_table_args ::= LP columnlist conslist_opt RP table_options", /* 20 */ "create_table_args ::= AS select", /* 21 */ "table_options ::=", /* 22 */ "table_options ::= WITHOUT nm", /* 23 */ "columnname ::= nm typetoken", /* 24 */ "typetoken ::=", /* 25 */ "typetoken ::= typename LP signed RP", /* 26 */ "typetoken ::= typename LP signed COMMA signed RP", /* 27 */ "typename ::= typename ID|STRING", /* 28 */ "scanpt ::=", /* 29 */ "scantok ::=", /* 30 */ "ccons ::= CONSTRAINT nm", /* 31 */ "ccons ::= DEFAULT scantok term", /* 32 */ "ccons ::= DEFAULT LP expr RP", /* 33 */ "ccons ::= DEFAULT PLUS scantok term", /* 34 */ "ccons ::= DEFAULT MINUS scantok term", /* 35 */ "ccons ::= DEFAULT scantok ID|INDEXED", /* 36 */ "ccons ::= NOT NULL onconf", /* 37 */ "ccons ::= PRIMARY KEY sortorder onconf autoinc", /* 38 */ "ccons ::= UNIQUE onconf", /* 39 */ "ccons ::= CHECK LP expr RP", /* 40 */ "ccons ::= REFERENCES nm eidlist_opt refargs", /* 41 */ "ccons ::= defer_subclause", /* 42 */ "ccons ::= COLLATE ID|STRING", /* 43 */ "generated ::= LP expr RP", /* 44 */ "generated ::= LP expr RP ID", /* 45 */ "autoinc ::=", /* 46 */ "autoinc ::= AUTOINCR", /* 47 */ "refargs ::=", /* 48 */ "refargs ::= refargs refarg", /* 49 */ "refarg ::= MATCH nm", /* 50 */ "refarg ::= ON INSERT refact", /* 51 */ "refarg ::= ON DELETE refact", /* 52 */ "refarg ::= ON UPDATE refact", /* 53 */ "refact ::= SET NULL", /* 54 */ "refact ::= SET DEFAULT", /* 55 */ "refact ::= CASCADE", /* 56 */ "refact ::= RESTRICT", /* 57 */ "refact ::= NO ACTION", /* 58 */ "defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt", /* 59 */ "defer_subclause ::= DEFERRABLE init_deferred_pred_opt", /* 60 */ "init_deferred_pred_opt ::=", /* 61 */ "init_deferred_pred_opt ::= INITIALLY DEFERRED", /* 62 */ "init_deferred_pred_opt ::= INITIALLY IMMEDIATE", /* 63 */ "conslist_opt ::=", /* 64 */ "tconscomma ::= COMMA", /* 65 */ "tcons ::= CONSTRAINT nm", /* 66 */ "tcons ::= PRIMARY KEY LP sortlist autoinc RP onconf", /* 67 */ "tcons ::= UNIQUE LP sortlist RP onconf", /* 68 */ "tcons ::= CHECK LP expr RP onconf", /* 69 */ "tcons ::= FOREIGN KEY LP eidlist RP REFERENCES nm eidlist_opt refargs defer_subclause_opt", /* 70 */ "defer_subclause_opt ::=", /* 71 */ "onconf ::=", /* 72 */ "onconf ::= ON CONFLICT resolvetype", /* 73 */ "orconf ::=", /* 74 */ "orconf ::= OR resolvetype", /* 75 */ "resolvetype ::= IGNORE", /* 76 */ "resolvetype ::= REPLACE", /* 77 */ "cmd ::= DROP TABLE ifexists fullname", /* 78 */ "ifexists ::= IF EXISTS", /* 79 */ "ifexists ::=", /* 80 */ "cmd ::= createkw temp VIEW ifnotexists nm dbnm eidlist_opt AS select", /* 81 */ "cmd ::= DROP VIEW ifexists fullname", /* 82 */ "cmd ::= select", /* 83 */ "select ::= WITH wqlist selectnowith", /* 84 */ "select ::= WITH RECURSIVE wqlist selectnowith", /* 85 */ "select ::= selectnowith", /* 86 */ "selectnowith ::= selectnowith multiselect_op oneselect", /* 87 */ "multiselect_op ::= UNION", /* 88 */ "multiselect_op ::= UNION ALL", /* 89 */ "multiselect_op ::= EXCEPT|INTERSECT", /* 90 */ "oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt", /* 91 */ "oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt window_clause orderby_opt limit_opt", /* 92 */ "values ::= VALUES LP nexprlist RP", /* 93 */ "values ::= values COMMA LP nexprlist RP", /* 94 */ "distinct ::= DISTINCT", /* 95 */ "distinct ::= ALL", /* 96 */ "distinct ::=", /* 97 */ "sclp ::=", /* 98 */ "selcollist ::= sclp scanpt expr scanpt as", /* 99 */ "selcollist ::= sclp scanpt STAR", /* 100 */ "selcollist ::= sclp scanpt nm DOT STAR", /* 101 */ "as ::= AS nm", /* 102 */ "as ::=", /* 103 */ "from ::=", /* 104 */ "from ::= FROM seltablist", /* 105 */ "stl_prefix ::= seltablist joinop", /* 106 */ "stl_prefix ::=", /* 107 */ "seltablist ::= stl_prefix nm dbnm as indexed_opt on_opt using_opt", /* 108 */ "seltablist ::= stl_prefix nm dbnm LP exprlist RP as on_opt using_opt", /* 109 */ "seltablist ::= stl_prefix LP select RP as on_opt using_opt", /* 110 */ "seltablist ::= stl_prefix LP seltablist RP as on_opt using_opt", /* 111 */ "dbnm ::=", /* 112 */ "dbnm ::= DOT nm", /* 113 */ "fullname ::= nm", /* 114 */ "fullname ::= nm DOT nm", /* 115 */ "xfullname ::= nm", /* 116 */ "xfullname ::= nm DOT nm", /* 117 */ "xfullname ::= nm DOT nm AS nm", /* 118 */ "xfullname ::= nm AS nm", /* 119 */ "joinop ::= COMMA|JOIN", /* 120 */ "joinop ::= JOIN_KW JOIN", /* 121 */ "joinop ::= JOIN_KW nm JOIN", /* 122 */ "joinop ::= JOIN_KW nm nm JOIN", /* 123 */ "on_opt ::= ON expr", /* 124 */ "on_opt ::=", /* 125 */ "indexed_opt ::=", /* 126 */ "indexed_opt ::= INDEXED BY nm", /* 127 */ "indexed_opt ::= NOT INDEXED", /* 128 */ "using_opt ::= USING LP idlist RP", /* 129 */ "using_opt ::=", /* 130 */ "orderby_opt ::=", /* 131 */ "orderby_opt ::= ORDER BY sortlist", /* 132 */ "sortlist ::= sortlist COMMA expr sortorder nulls", /* 133 */ "sortlist ::= expr sortorder nulls", /* 134 */ "sortorder ::= ASC", /* 135 */ "sortorder ::= DESC", /* 136 */ "sortorder ::=", /* 137 */ "nulls ::= NULLS FIRST", /* 138 */ "nulls ::= NULLS LAST", /* 139 */ "nulls ::=", /* 140 */ "groupby_opt ::=", /* 141 */ "groupby_opt ::= GROUP BY nexprlist", /* 142 */ "having_opt ::=", /* 143 */ "having_opt ::= HAVING expr", /* 144 */ "limit_opt ::=", /* 145 */ "limit_opt ::= LIMIT expr", /* 146 */ "limit_opt ::= LIMIT expr OFFSET expr", /* 147 */ "limit_opt ::= LIMIT expr COMMA expr", /* 148 */ "cmd ::= with DELETE FROM xfullname indexed_opt where_opt", /* 149 */ "where_opt ::=", /* 150 */ "where_opt ::= WHERE expr", /* 151 */ "cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist from where_opt", /* 152 */ "setlist ::= setlist COMMA nm EQ expr", /* 153 */ "setlist ::= setlist COMMA LP idlist RP EQ expr", /* 154 */ "setlist ::= nm EQ expr", /* 155 */ "setlist ::= LP idlist RP EQ expr", /* 156 */ "cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert", /* 157 */ "cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES", /* 158 */ "upsert ::=", /* 159 */ "upsert ::= ON CONFLICT LP sortlist RP where_opt DO UPDATE SET setlist where_opt", /* 160 */ "upsert ::= ON CONFLICT LP sortlist RP where_opt DO NOTHING", /* 161 */ "upsert ::= ON CONFLICT DO NOTHING", /* 162 */ "insert_cmd ::= INSERT orconf", /* 163 */ "insert_cmd ::= REPLACE", /* 164 */ "idlist_opt ::=", /* 165 */ "idlist_opt ::= LP idlist RP", /* 166 */ "idlist ::= idlist COMMA nm", /* 167 */ "idlist ::= nm", /* 168 */ "expr ::= LP expr RP", /* 169 */ "expr ::= ID|INDEXED", /* 170 */ "expr ::= JOIN_KW", /* 171 */ "expr ::= nm DOT nm", /* 172 */ "expr ::= nm DOT nm DOT nm", /* 173 */ "term ::= NULL|FLOAT|BLOB", /* 174 */ "term ::= STRING", /* 175 */ "term ::= INTEGER", /* 176 */ "expr ::= VARIABLE", /* 177 */ "expr ::= expr COLLATE ID|STRING", /* 178 */ "expr ::= CAST LP expr AS typetoken RP", /* 179 */ "expr ::= ID|INDEXED LP distinct exprlist RP", /* 180 */ "expr ::= ID|INDEXED LP STAR RP", /* 181 */ "expr ::= ID|INDEXED LP distinct exprlist RP filter_over", /* 182 */ "expr ::= ID|INDEXED LP STAR RP filter_over", /* 183 */ "term ::= CTIME_KW", /* 184 */ "expr ::= LP nexprlist COMMA expr RP", /* 185 */ "expr ::= expr AND expr", /* 186 */ "expr ::= expr OR expr", /* 187 */ "expr ::= expr LT|GT|GE|LE expr", /* 188 */ "expr ::= expr EQ|NE expr", /* 189 */ "expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr", /* 190 */ "expr ::= expr PLUS|MINUS expr", /* 191 */ "expr ::= expr STAR|SLASH|REM expr", /* 192 */ "expr ::= expr CONCAT expr", /* 193 */ "likeop ::= NOT LIKE_KW|MATCH", /* 194 */ "expr ::= expr likeop expr", /* 195 */ "expr ::= expr likeop expr ESCAPE expr", /* 196 */ "expr ::= expr ISNULL|NOTNULL", /* 197 */ "expr ::= expr NOT NULL", /* 198 */ "expr ::= expr IS expr", /* 199 */ "expr ::= expr IS NOT expr", /* 200 */ "expr ::= NOT expr", /* 201 */ "expr ::= BITNOT expr", /* 202 */ "expr ::= PLUS|MINUS expr", /* 203 */ "between_op ::= BETWEEN", /* 204 */ "between_op ::= NOT BETWEEN", /* 205 */ "expr ::= expr between_op expr AND expr", /* 206 */ "in_op ::= IN", /* 207 */ "in_op ::= NOT IN", /* 208 */ "expr ::= expr in_op LP exprlist RP", /* 209 */ "expr ::= LP select RP", /* 210 */ "expr ::= expr in_op LP select RP", /* 211 */ "expr ::= expr in_op nm dbnm paren_exprlist", /* 212 */ "expr ::= EXISTS LP select RP", /* 213 */ "expr ::= CASE case_operand case_exprlist case_else END", /* 214 */ "case_exprlist ::= case_exprlist WHEN expr THEN expr", /* 215 */ "case_exprlist ::= WHEN expr THEN expr", /* 216 */ "case_else ::= ELSE expr", /* 217 */ "case_else ::=", /* 218 */ "case_operand ::= expr", /* 219 */ "case_operand ::=", /* 220 */ "exprlist ::=", /* 221 */ "nexprlist ::= nexprlist COMMA expr", /* 222 */ "nexprlist ::= expr", /* 223 */ "paren_exprlist ::=", /* 224 */ "paren_exprlist ::= LP exprlist RP", /* 225 */ "cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP sortlist RP where_opt", /* 226 */ "uniqueflag ::= UNIQUE", /* 227 */ "uniqueflag ::=", /* 228 */ "eidlist_opt ::=", /* 229 */ "eidlist_opt ::= LP eidlist RP", /* 230 */ "eidlist ::= eidlist COMMA nm collate sortorder", /* 231 */ "eidlist ::= nm collate sortorder", /* 232 */ "collate ::=", /* 233 */ "collate ::= COLLATE ID|STRING", /* 234 */ "cmd ::= DROP INDEX ifexists fullname", /* 235 */ "cmd ::= VACUUM vinto", /* 236 */ "cmd ::= VACUUM nm vinto", /* 237 */ "vinto ::= INTO expr", /* 238 */ "vinto ::=", /* 239 */ "cmd ::= PRAGMA nm dbnm", /* 240 */ "cmd ::= PRAGMA nm dbnm EQ nmnum", /* 241 */ "cmd ::= PRAGMA nm dbnm LP nmnum RP", /* 242 */ "cmd ::= PRAGMA nm dbnm EQ minus_num", /* 243 */ "cmd ::= PRAGMA nm dbnm LP minus_num RP", /* 244 */ "plus_num ::= PLUS INTEGER|FLOAT", /* 245 */ "minus_num ::= MINUS INTEGER|FLOAT", /* 246 */ "cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END", /* 247 */ "trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause", /* 248 */ "trigger_time ::= BEFORE|AFTER", /* 249 */ "trigger_time ::= INSTEAD OF", /* 250 */ "trigger_time ::=", /* 251 */ "trigger_event ::= DELETE|INSERT", /* 252 */ "trigger_event ::= UPDATE", /* 253 */ "trigger_event ::= UPDATE OF idlist", /* 254 */ "when_clause ::=", /* 255 */ "when_clause ::= WHEN expr", /* 256 */ "trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI", /* 257 */ "trigger_cmd_list ::= trigger_cmd SEMI", /* 258 */ "trnm ::= nm DOT nm", /* 259 */ "tridxby ::= INDEXED BY nm", /* 260 */ "tridxby ::= NOT INDEXED", /* 261 */ "trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist from where_opt scanpt", /* 262 */ "trigger_cmd ::= scanpt insert_cmd INTO trnm idlist_opt select upsert scanpt", /* 263 */ "trigger_cmd ::= DELETE FROM trnm tridxby where_opt scanpt", /* 264 */ "trigger_cmd ::= scanpt select scanpt", /* 265 */ "expr ::= RAISE LP IGNORE RP", /* 266 */ "expr ::= RAISE LP raisetype COMMA nm RP", /* 267 */ "raisetype ::= ROLLBACK", /* 268 */ "raisetype ::= ABORT", /* 269 */ "raisetype ::= FAIL", /* 270 */ "cmd ::= DROP TRIGGER ifexists fullname", /* 271 */ "cmd ::= ATTACH database_kw_opt expr AS expr key_opt", /* 272 */ "cmd ::= DETACH database_kw_opt expr", /* 273 */ "key_opt ::=", /* 274 */ "key_opt ::= KEY expr", /* 275 */ "cmd ::= REINDEX", /* 276 */ "cmd ::= REINDEX nm dbnm", /* 277 */ "cmd ::= ANALYZE", /* 278 */ "cmd ::= ANALYZE nm dbnm", /* 279 */ "cmd ::= ALTER TABLE fullname RENAME TO nm", /* 280 */ "cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt columnname carglist", /* 281 */ "add_column_fullname ::= fullname", /* 282 */ "cmd ::= ALTER TABLE fullname RENAME kwcolumn_opt nm TO nm", /* 283 */ "cmd ::= create_vtab", /* 284 */ "cmd ::= create_vtab LP vtabarglist RP", /* 285 */ "create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm", /* 286 */ "vtabarg ::=", /* 287 */ "vtabargtoken ::= ANY", /* 288 */ "vtabargtoken ::= lp anylist RP", /* 289 */ "lp ::= LP", /* 290 */ "with ::= WITH wqlist", /* 291 */ "with ::= WITH RECURSIVE wqlist", /* 292 */ "wqlist ::= nm eidlist_opt AS LP select RP", /* 293 */ "wqlist ::= wqlist COMMA nm eidlist_opt AS LP select RP", /* 294 */ "windowdefn_list ::= windowdefn", /* 295 */ "windowdefn_list ::= windowdefn_list COMMA windowdefn", /* 296 */ "windowdefn ::= nm AS LP window RP", /* 297 */ "window ::= PARTITION BY nexprlist orderby_opt frame_opt", /* 298 */ "window ::= nm PARTITION BY nexprlist orderby_opt frame_opt", /* 299 */ "window ::= ORDER BY sortlist frame_opt", /* 300 */ "window ::= nm ORDER BY sortlist frame_opt", /* 301 */ "window ::= frame_opt", /* 302 */ "window ::= nm frame_opt", /* 303 */ "frame_opt ::=", /* 304 */ "frame_opt ::= range_or_rows frame_bound_s frame_exclude_opt", /* 305 */ "frame_opt ::= range_or_rows BETWEEN frame_bound_s AND frame_bound_e frame_exclude_opt", /* 306 */ "range_or_rows ::= RANGE|ROWS|GROUPS", /* 307 */ "frame_bound_s ::= frame_bound", /* 308 */ "frame_bound_s ::= UNBOUNDED PRECEDING", /* 309 */ "frame_bound_e ::= frame_bound", /* 310 */ "frame_bound_e ::= UNBOUNDED FOLLOWING", /* 311 */ "frame_bound ::= expr PRECEDING|FOLLOWING", /* 312 */ "frame_bound ::= CURRENT ROW", /* 313 */ "frame_exclude_opt ::=", /* 314 */ "frame_exclude_opt ::= EXCLUDE frame_exclude", /* 315 */ "frame_exclude ::= NO OTHERS", /* 316 */ "frame_exclude ::= CURRENT ROW", /* 317 */ "frame_exclude ::= GROUP|TIES", /* 318 */ "window_clause ::= WINDOW windowdefn_list", /* 319 */ "filter_over ::= filter_clause over_clause", /* 320 */ "filter_over ::= over_clause", /* 321 */ "filter_over ::= filter_clause", /* 322 */ "over_clause ::= OVER LP window RP", /* 323 */ "over_clause ::= OVER nm", /* 324 */ "filter_clause ::= FILTER LP WHERE expr RP", /* 325 */ "input ::= cmdlist", /* 326 */ "cmdlist ::= cmdlist ecmd", /* 327 */ "cmdlist ::= ecmd", /* 328 */ "ecmd ::= SEMI", /* 329 */ "ecmd ::= cmdx SEMI", /* 330 */ "ecmd ::= explain cmdx SEMI", /* 331 */ "trans_opt ::=", /* 332 */ "trans_opt ::= TRANSACTION", /* 333 */ "trans_opt ::= TRANSACTION nm", /* 334 */ "savepoint_opt ::= SAVEPOINT", /* 335 */ "savepoint_opt ::=", /* 336 */ "cmd ::= create_table create_table_args", /* 337 */ "columnlist ::= columnlist COMMA columnname carglist", /* 338 */ "columnlist ::= columnname carglist", /* 339 */ "nm ::= ID|INDEXED", /* 340 */ "nm ::= STRING", /* 341 */ "nm ::= JOIN_KW", /* 342 */ "typetoken ::= typename", /* 343 */ "typename ::= ID|STRING", /* 344 */ "signed ::= plus_num", /* 345 */ "signed ::= minus_num", /* 346 */ "carglist ::= carglist ccons", /* 347 */ "carglist ::=", /* 348 */ "ccons ::= NULL onconf", /* 349 */ "ccons ::= GENERATED ALWAYS AS generated", /* 350 */ "ccons ::= AS generated", /* 351 */ "conslist_opt ::= COMMA conslist", /* 352 */ "conslist ::= conslist tconscomma tcons", /* 353 */ "conslist ::= tcons", /* 354 */ "tconscomma ::=", /* 355 */ "defer_subclause_opt ::= defer_subclause", /* 356 */ "resolvetype ::= raisetype", /* 357 */ "selectnowith ::= oneselect", /* 358 */ "oneselect ::= values", /* 359 */ "sclp ::= selcollist COMMA", /* 360 */ "as ::= ID|STRING", /* 361 */ "expr ::= term", /* 362 */ "likeop ::= LIKE_KW|MATCH", /* 363 */ "exprlist ::= nexprlist", /* 364 */ "nmnum ::= plus_num", /* 365 */ "nmnum ::= nm", /* 366 */ "nmnum ::= ON", /* 367 */ "nmnum ::= DELETE", /* 368 */ "nmnum ::= DEFAULT", /* 369 */ "plus_num ::= INTEGER|FLOAT", /* 370 */ "foreach_clause ::=", /* 371 */ "foreach_clause ::= FOR EACH ROW", /* 372 */ "trnm ::= nm", /* 373 */ "tridxby ::=", /* 374 */ "database_kw_opt ::= DATABASE", /* 375 */ "database_kw_opt ::=", /* 376 */ "kwcolumn_opt ::=", /* 377 */ "kwcolumn_opt ::= COLUMNKW", /* 378 */ "vtabarglist ::= vtabarg", /* 379 */ "vtabarglist ::= vtabarglist COMMA vtabarg", /* 380 */ "vtabarg ::= vtabarg vtabargtoken", /* 381 */ "anylist ::=", /* 382 */ "anylist ::= anylist LP anylist RP", /* 383 */ "anylist ::= anylist ANY", /* 384 */ "with ::=", }; #endif /* NDEBUG */ #if YYSTACKDEPTH<=0 /* ** Try to increase the size of the parser stack. Return the number ** of errors. Return 0 on success. */ static int yyGrowStack(yyParser *p){ int newSize; int idx; yyStackEntry *pNew; newSize = p->yystksz*2 + 100; idx = p->yytos ? (int)(p->yytos - p->yystack) : 0; if( p->yystack==&p->yystk0 ){ pNew = malloc(newSize*sizeof(pNew[0])); if( pNew ) pNew[0] = p->yystk0; }else{ pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); } if( pNew ){ p->yystack = pNew; p->yytos = &p->yystack[idx]; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sStack grows from %d to %d entries.\n", yyTracePrompt, p->yystksz, newSize); } #endif p->yystksz = newSize; } return pNew==0; } #endif /* Datatype of the argument to the memory allocated passed as the ** second argument to sqlite3ParserAlloc() below. This can be changed by ** putting an appropriate #define in the %include section of the input ** grammar. */ #ifndef YYMALLOCARGTYPE # define YYMALLOCARGTYPE size_t #endif /* Initialize a new parser that has already been allocated. */ SQLITE_PRIVATE void sqlite3ParserInit(void *yypRawParser sqlite3ParserCTX_PDECL){ yyParser *yypParser = (yyParser*)yypRawParser; sqlite3ParserCTX_STORE #ifdef YYTRACKMAXSTACKDEPTH yypParser->yyhwm = 0; #endif #if YYSTACKDEPTH<=0 yypParser->yytos = NULL; yypParser->yystack = NULL; yypParser->yystksz = 0; if( yyGrowStack(yypParser) ){ yypParser->yystack = &yypParser->yystk0; yypParser->yystksz = 1; } #endif #ifndef YYNOERRORRECOVERY yypParser->yyerrcnt = -1; #endif yypParser->yytos = yypParser->yystack; yypParser->yystack[0].stateno = 0; yypParser->yystack[0].major = 0; #if YYSTACKDEPTH>0 yypParser->yystackEnd = &yypParser->yystack[YYSTACKDEPTH-1]; #endif } #ifndef sqlite3Parser_ENGINEALWAYSONSTACK /* ** This function allocates a new parser. ** The only argument is a pointer to a function which works like ** malloc. ** ** Inputs: ** A pointer to the function used to allocate memory. ** ** Outputs: ** A pointer to a parser. This pointer is used in subsequent calls ** to sqlite3Parser and sqlite3ParserFree. */ SQLITE_PRIVATE void *sqlite3ParserAlloc(void *(*mallocProc)(YYMALLOCARGTYPE) sqlite3ParserCTX_PDECL){ yyParser *yypParser; yypParser = (yyParser*)(*mallocProc)( (YYMALLOCARGTYPE)sizeof(yyParser) ); if( yypParser ){ sqlite3ParserCTX_STORE sqlite3ParserInit(yypParser sqlite3ParserCTX_PARAM); } return (void*)yypParser; } #endif /* sqlite3Parser_ENGINEALWAYSONSTACK */ /* The following function deletes the "minor type" or semantic value ** associated with a symbol. The symbol can be either a terminal ** or nonterminal. "yymajor" is the symbol code, and "yypminor" is ** a pointer to the value to be deleted. The code used to do the ** deletions is derived from the %destructor and/or %token_destructor ** directives of the input grammar. */ static void yy_destructor( yyParser *yypParser, /* The parser */ YYCODETYPE yymajor, /* Type code for object to destroy */ YYMINORTYPE *yypminor /* The object to be destroyed */ ){ sqlite3ParserARG_FETCH sqlite3ParserCTX_FETCH switch( yymajor ){ /* Here is inserted the actions which take place when a ** terminal or non-terminal is destroyed. This can happen ** when the symbol is popped from the stack during a ** reduce or during error processing or when a parser is ** being destroyed before it is finished parsing. ** ** Note: during a reduce, the only symbols destroyed are those ** which appear on the RHS of the rule, but which are *not* used ** inside the C code. */ /********* Begin destructor definitions ***************************************/ case 200: /* select */ case 234: /* selectnowith */ case 235: /* oneselect */ case 247: /* values */ { sqlite3SelectDelete(pParse->db, (yypminor->yy539)); } break; case 211: /* term */ case 212: /* expr */ case 241: /* where_opt */ case 243: /* having_opt */ case 255: /* on_opt */ case 271: /* case_operand */ case 273: /* case_else */ case 276: /* vinto */ case 283: /* when_clause */ case 288: /* key_opt */ case 302: /* filter_clause */ { sqlite3ExprDelete(pParse->db, (yypminor->yy202)); } break; case 216: /* eidlist_opt */ case 226: /* sortlist */ case 227: /* eidlist */ case 239: /* selcollist */ case 242: /* groupby_opt */ case 244: /* orderby_opt */ case 248: /* nexprlist */ case 249: /* sclp */ case 257: /* exprlist */ case 262: /* setlist */ case 270: /* paren_exprlist */ case 272: /* case_exprlist */ case 301: /* part_opt */ { sqlite3ExprListDelete(pParse->db, (yypminor->yy242)); } break; case 233: /* fullname */ case 240: /* from */ case 251: /* seltablist */ case 252: /* stl_prefix */ case 258: /* xfullname */ { sqlite3SrcListDelete(pParse->db, (yypminor->yy47)); } break; case 236: /* wqlist */ { sqlite3WithDelete(pParse->db, (yypminor->yy131)); } break; case 246: /* window_clause */ case 297: /* windowdefn_list */ { sqlite3WindowListDelete(pParse->db, (yypminor->yy303)); } break; case 256: /* using_opt */ case 259: /* idlist */ case 264: /* idlist_opt */ { sqlite3IdListDelete(pParse->db, (yypminor->yy600)); } break; case 266: /* filter_over */ case 298: /* windowdefn */ case 299: /* window */ case 300: /* frame_opt */ case 303: /* over_clause */ { sqlite3WindowDelete(pParse->db, (yypminor->yy303)); } break; case 279: /* trigger_cmd_list */ case 284: /* trigger_cmd */ { sqlite3DeleteTriggerStep(pParse->db, (yypminor->yy447)); } break; case 281: /* trigger_event */ { sqlite3IdListDelete(pParse->db, (yypminor->yy230).b); } break; case 305: /* frame_bound */ case 306: /* frame_bound_s */ case 307: /* frame_bound_e */ { sqlite3ExprDelete(pParse->db, (yypminor->yy77).pExpr); } break; /********* End destructor definitions *****************************************/ default: break; /* If no destructor action specified: do nothing */ } } /* ** Pop the parser's stack once. ** ** If there is a destructor routine associated with the token which ** is popped from the stack, then call it. */ static void yy_pop_parser_stack(yyParser *pParser){ yyStackEntry *yytos; assert( pParser->yytos!=0 ); assert( pParser->yytos > pParser->yystack ); yytos = pParser->yytos--; #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sPopping %s\n", yyTracePrompt, yyTokenName[yytos->major]); } #endif yy_destructor(pParser, yytos->major, &yytos->minor); } /* ** Clear all secondary memory allocations from the parser */ SQLITE_PRIVATE void sqlite3ParserFinalize(void *p){ yyParser *pParser = (yyParser*)p; while( pParser->yytos>pParser->yystack ) yy_pop_parser_stack(pParser); #if YYSTACKDEPTH<=0 if( pParser->yystack!=&pParser->yystk0 ) free(pParser->yystack); #endif } #ifndef sqlite3Parser_ENGINEALWAYSONSTACK /* ** Deallocate and destroy a parser. Destructors are called for ** all stack elements before shutting the parser down. ** ** If the YYPARSEFREENEVERNULL macro exists (for example because it ** is defined in a %include section of the input grammar) then it is ** assumed that the input pointer is never NULL. */ SQLITE_PRIVATE void sqlite3ParserFree( void *p, /* The parser to be deleted */ void (*freeProc)(void*) /* Function used to reclaim memory */ ){ #ifndef YYPARSEFREENEVERNULL if( p==0 ) return; #endif sqlite3ParserFinalize(p); (*freeProc)(p); } #endif /* sqlite3Parser_ENGINEALWAYSONSTACK */ /* ** Return the peak depth of the stack for a parser. */ #ifdef YYTRACKMAXSTACKDEPTH SQLITE_PRIVATE int sqlite3ParserStackPeak(void *p){ yyParser *pParser = (yyParser*)p; return pParser->yyhwm; } #endif /* This array of booleans keeps track of the parser statement ** coverage. The element yycoverage[X][Y] is set when the parser ** is in state X and has a lookahead token Y. In a well-tested ** systems, every element of this matrix should end up being set. */ #if defined(YYCOVERAGE) static unsigned char yycoverage[YYNSTATE][YYNTOKEN]; #endif /* ** Write into out a description of every state/lookahead combination that ** ** (1) has not been used by the parser, and ** (2) is not a syntax error. ** ** Return the number of missed state/lookahead combinations. */ #if defined(YYCOVERAGE) SQLITE_PRIVATE int sqlite3ParserCoverage(FILE *out){ int stateno, iLookAhead, i; int nMissed = 0; for(stateno=0; statenoYY_MAX_SHIFT ) return stateno; assert( stateno <= YY_SHIFT_COUNT ); #if defined(YYCOVERAGE) yycoverage[stateno][iLookAhead] = 1; #endif do{ i = yy_shift_ofst[stateno]; assert( i>=0 ); assert( i<=YY_ACTTAB_COUNT ); assert( i+YYNTOKEN<=(int)YY_NLOOKAHEAD ); assert( iLookAhead!=YYNOCODE ); assert( iLookAhead < YYNTOKEN ); i += iLookAhead; assert( i<(int)YY_NLOOKAHEAD ); if( yy_lookahead[i]!=iLookAhead ){ #ifdef YYFALLBACK YYCODETYPE iFallback; /* Fallback token */ assert( iLookAhead %s\n", yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]); } #endif assert( yyFallback[iFallback]==0 ); /* Fallback loop must terminate */ iLookAhead = iFallback; continue; } #endif #ifdef YYWILDCARD { int j = i - iLookAhead + YYWILDCARD; assert( j<(int)(sizeof(yy_lookahead)/sizeof(yy_lookahead[0])) ); if( yy_lookahead[j]==YYWILDCARD && iLookAhead>0 ){ #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n", yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[YYWILDCARD]); } #endif /* NDEBUG */ return yy_action[j]; } } #endif /* YYWILDCARD */ return yy_default[stateno]; }else{ assert( i>=0 && iYY_REDUCE_COUNT ){ return yy_default[stateno]; } #else assert( stateno<=YY_REDUCE_COUNT ); #endif i = yy_reduce_ofst[stateno]; assert( iLookAhead!=YYNOCODE ); i += iLookAhead; #ifdef YYERRORSYMBOL if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){ return yy_default[stateno]; } #else assert( i>=0 && iyytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will execute if the parser ** stack every overflows */ /******** Begin %stack_overflow code ******************************************/ sqlite3ErrorMsg(pParse, "parser stack overflow"); /******** End %stack_overflow code ********************************************/ sqlite3ParserARG_STORE /* Suppress warning about unused %extra_argument var */ sqlite3ParserCTX_STORE } /* ** Print tracing information for a SHIFT action */ #ifndef NDEBUG static void yyTraceShift(yyParser *yypParser, int yyNewState, const char *zTag){ if( yyTraceFILE ){ if( yyNewStateyytos->major], yyNewState); }else{ fprintf(yyTraceFILE,"%s%s '%s', pending reduce %d\n", yyTracePrompt, zTag, yyTokenName[yypParser->yytos->major], yyNewState - YY_MIN_REDUCE); } } } #else # define yyTraceShift(X,Y,Z) #endif /* ** Perform a shift action. */ static void yy_shift( yyParser *yypParser, /* The parser to be shifted */ YYACTIONTYPE yyNewState, /* The new state to shift in */ YYCODETYPE yyMajor, /* The major token to shift in */ sqlite3ParserTOKENTYPE yyMinor /* The minor token to shift in */ ){ yyStackEntry *yytos; yypParser->yytos++; #ifdef YYTRACKMAXSTACKDEPTH if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ yypParser->yyhwm++; assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack) ); } #endif #if YYSTACKDEPTH>0 if( yypParser->yytos>yypParser->yystackEnd ){ yypParser->yytos--; yyStackOverflow(yypParser); return; } #else if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz] ){ if( yyGrowStack(yypParser) ){ yypParser->yytos--; yyStackOverflow(yypParser); return; } } #endif if( yyNewState > YY_MAX_SHIFT ){ yyNewState += YY_MIN_REDUCE - YY_MIN_SHIFTREDUCE; } yytos = yypParser->yytos; yytos->stateno = yyNewState; yytos->major = yyMajor; yytos->minor.yy0 = yyMinor; yyTraceShift(yypParser, yyNewState, "Shift"); } /* For rule J, yyRuleInfoLhs[J] contains the symbol on the left-hand side ** of that rule */ static const YYCODETYPE yyRuleInfoLhs[] = { 185, /* (0) explain ::= EXPLAIN */ 185, /* (1) explain ::= EXPLAIN QUERY PLAN */ 184, /* (2) cmdx ::= cmd */ 186, /* (3) cmd ::= BEGIN transtype trans_opt */ 187, /* (4) transtype ::= */ 187, /* (5) transtype ::= DEFERRED */ 187, /* (6) transtype ::= IMMEDIATE */ 187, /* (7) transtype ::= EXCLUSIVE */ 186, /* (8) cmd ::= COMMIT|END trans_opt */ 186, /* (9) cmd ::= ROLLBACK trans_opt */ 186, /* (10) cmd ::= SAVEPOINT nm */ 186, /* (11) cmd ::= RELEASE savepoint_opt nm */ 186, /* (12) cmd ::= ROLLBACK trans_opt TO savepoint_opt nm */ 191, /* (13) create_table ::= createkw temp TABLE ifnotexists nm dbnm */ 193, /* (14) createkw ::= CREATE */ 195, /* (15) ifnotexists ::= */ 195, /* (16) ifnotexists ::= IF NOT EXISTS */ 194, /* (17) temp ::= TEMP */ 194, /* (18) temp ::= */ 192, /* (19) create_table_args ::= LP columnlist conslist_opt RP table_options */ 192, /* (20) create_table_args ::= AS select */ 199, /* (21) table_options ::= */ 199, /* (22) table_options ::= WITHOUT nm */ 201, /* (23) columnname ::= nm typetoken */ 203, /* (24) typetoken ::= */ 203, /* (25) typetoken ::= typename LP signed RP */ 203, /* (26) typetoken ::= typename LP signed COMMA signed RP */ 204, /* (27) typename ::= typename ID|STRING */ 208, /* (28) scanpt ::= */ 209, /* (29) scantok ::= */ 210, /* (30) ccons ::= CONSTRAINT nm */ 210, /* (31) ccons ::= DEFAULT scantok term */ 210, /* (32) ccons ::= DEFAULT LP expr RP */ 210, /* (33) ccons ::= DEFAULT PLUS scantok term */ 210, /* (34) ccons ::= DEFAULT MINUS scantok term */ 210, /* (35) ccons ::= DEFAULT scantok ID|INDEXED */ 210, /* (36) ccons ::= NOT NULL onconf */ 210, /* (37) ccons ::= PRIMARY KEY sortorder onconf autoinc */ 210, /* (38) ccons ::= UNIQUE onconf */ 210, /* (39) ccons ::= CHECK LP expr RP */ 210, /* (40) ccons ::= REFERENCES nm eidlist_opt refargs */ 210, /* (41) ccons ::= defer_subclause */ 210, /* (42) ccons ::= COLLATE ID|STRING */ 219, /* (43) generated ::= LP expr RP */ 219, /* (44) generated ::= LP expr RP ID */ 215, /* (45) autoinc ::= */ 215, /* (46) autoinc ::= AUTOINCR */ 217, /* (47) refargs ::= */ 217, /* (48) refargs ::= refargs refarg */ 220, /* (49) refarg ::= MATCH nm */ 220, /* (50) refarg ::= ON INSERT refact */ 220, /* (51) refarg ::= ON DELETE refact */ 220, /* (52) refarg ::= ON UPDATE refact */ 221, /* (53) refact ::= SET NULL */ 221, /* (54) refact ::= SET DEFAULT */ 221, /* (55) refact ::= CASCADE */ 221, /* (56) refact ::= RESTRICT */ 221, /* (57) refact ::= NO ACTION */ 218, /* (58) defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt */ 218, /* (59) defer_subclause ::= DEFERRABLE init_deferred_pred_opt */ 222, /* (60) init_deferred_pred_opt ::= */ 222, /* (61) init_deferred_pred_opt ::= INITIALLY DEFERRED */ 222, /* (62) init_deferred_pred_opt ::= INITIALLY IMMEDIATE */ 198, /* (63) conslist_opt ::= */ 224, /* (64) tconscomma ::= COMMA */ 225, /* (65) tcons ::= CONSTRAINT nm */ 225, /* (66) tcons ::= PRIMARY KEY LP sortlist autoinc RP onconf */ 225, /* (67) tcons ::= UNIQUE LP sortlist RP onconf */ 225, /* (68) tcons ::= CHECK LP expr RP onconf */ 225, /* (69) tcons ::= FOREIGN KEY LP eidlist RP REFERENCES nm eidlist_opt refargs defer_subclause_opt */ 228, /* (70) defer_subclause_opt ::= */ 213, /* (71) onconf ::= */ 213, /* (72) onconf ::= ON CONFLICT resolvetype */ 229, /* (73) orconf ::= */ 229, /* (74) orconf ::= OR resolvetype */ 230, /* (75) resolvetype ::= IGNORE */ 230, /* (76) resolvetype ::= REPLACE */ 186, /* (77) cmd ::= DROP TABLE ifexists fullname */ 232, /* (78) ifexists ::= IF EXISTS */ 232, /* (79) ifexists ::= */ 186, /* (80) cmd ::= createkw temp VIEW ifnotexists nm dbnm eidlist_opt AS select */ 186, /* (81) cmd ::= DROP VIEW ifexists fullname */ 186, /* (82) cmd ::= select */ 200, /* (83) select ::= WITH wqlist selectnowith */ 200, /* (84) select ::= WITH RECURSIVE wqlist selectnowith */ 200, /* (85) select ::= selectnowith */ 234, /* (86) selectnowith ::= selectnowith multiselect_op oneselect */ 237, /* (87) multiselect_op ::= UNION */ 237, /* (88) multiselect_op ::= UNION ALL */ 237, /* (89) multiselect_op ::= EXCEPT|INTERSECT */ 235, /* (90) oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt */ 235, /* (91) oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt window_clause orderby_opt limit_opt */ 247, /* (92) values ::= VALUES LP nexprlist RP */ 247, /* (93) values ::= values COMMA LP nexprlist RP */ 238, /* (94) distinct ::= DISTINCT */ 238, /* (95) distinct ::= ALL */ 238, /* (96) distinct ::= */ 249, /* (97) sclp ::= */ 239, /* (98) selcollist ::= sclp scanpt expr scanpt as */ 239, /* (99) selcollist ::= sclp scanpt STAR */ 239, /* (100) selcollist ::= sclp scanpt nm DOT STAR */ 250, /* (101) as ::= AS nm */ 250, /* (102) as ::= */ 240, /* (103) from ::= */ 240, /* (104) from ::= FROM seltablist */ 252, /* (105) stl_prefix ::= seltablist joinop */ 252, /* (106) stl_prefix ::= */ 251, /* (107) seltablist ::= stl_prefix nm dbnm as indexed_opt on_opt using_opt */ 251, /* (108) seltablist ::= stl_prefix nm dbnm LP exprlist RP as on_opt using_opt */ 251, /* (109) seltablist ::= stl_prefix LP select RP as on_opt using_opt */ 251, /* (110) seltablist ::= stl_prefix LP seltablist RP as on_opt using_opt */ 196, /* (111) dbnm ::= */ 196, /* (112) dbnm ::= DOT nm */ 233, /* (113) fullname ::= nm */ 233, /* (114) fullname ::= nm DOT nm */ 258, /* (115) xfullname ::= nm */ 258, /* (116) xfullname ::= nm DOT nm */ 258, /* (117) xfullname ::= nm DOT nm AS nm */ 258, /* (118) xfullname ::= nm AS nm */ 253, /* (119) joinop ::= COMMA|JOIN */ 253, /* (120) joinop ::= JOIN_KW JOIN */ 253, /* (121) joinop ::= JOIN_KW nm JOIN */ 253, /* (122) joinop ::= JOIN_KW nm nm JOIN */ 255, /* (123) on_opt ::= ON expr */ 255, /* (124) on_opt ::= */ 254, /* (125) indexed_opt ::= */ 254, /* (126) indexed_opt ::= INDEXED BY nm */ 254, /* (127) indexed_opt ::= NOT INDEXED */ 256, /* (128) using_opt ::= USING LP idlist RP */ 256, /* (129) using_opt ::= */ 244, /* (130) orderby_opt ::= */ 244, /* (131) orderby_opt ::= ORDER BY sortlist */ 226, /* (132) sortlist ::= sortlist COMMA expr sortorder nulls */ 226, /* (133) sortlist ::= expr sortorder nulls */ 214, /* (134) sortorder ::= ASC */ 214, /* (135) sortorder ::= DESC */ 214, /* (136) sortorder ::= */ 260, /* (137) nulls ::= NULLS FIRST */ 260, /* (138) nulls ::= NULLS LAST */ 260, /* (139) nulls ::= */ 242, /* (140) groupby_opt ::= */ 242, /* (141) groupby_opt ::= GROUP BY nexprlist */ 243, /* (142) having_opt ::= */ 243, /* (143) having_opt ::= HAVING expr */ 245, /* (144) limit_opt ::= */ 245, /* (145) limit_opt ::= LIMIT expr */ 245, /* (146) limit_opt ::= LIMIT expr OFFSET expr */ 245, /* (147) limit_opt ::= LIMIT expr COMMA expr */ 186, /* (148) cmd ::= with DELETE FROM xfullname indexed_opt where_opt */ 241, /* (149) where_opt ::= */ 241, /* (150) where_opt ::= WHERE expr */ 186, /* (151) cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist from where_opt */ 262, /* (152) setlist ::= setlist COMMA nm EQ expr */ 262, /* (153) setlist ::= setlist COMMA LP idlist RP EQ expr */ 262, /* (154) setlist ::= nm EQ expr */ 262, /* (155) setlist ::= LP idlist RP EQ expr */ 186, /* (156) cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert */ 186, /* (157) cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES */ 265, /* (158) upsert ::= */ 265, /* (159) upsert ::= ON CONFLICT LP sortlist RP where_opt DO UPDATE SET setlist where_opt */ 265, /* (160) upsert ::= ON CONFLICT LP sortlist RP where_opt DO NOTHING */ 265, /* (161) upsert ::= ON CONFLICT DO NOTHING */ 263, /* (162) insert_cmd ::= INSERT orconf */ 263, /* (163) insert_cmd ::= REPLACE */ 264, /* (164) idlist_opt ::= */ 264, /* (165) idlist_opt ::= LP idlist RP */ 259, /* (166) idlist ::= idlist COMMA nm */ 259, /* (167) idlist ::= nm */ 212, /* (168) expr ::= LP expr RP */ 212, /* (169) expr ::= ID|INDEXED */ 212, /* (170) expr ::= JOIN_KW */ 212, /* (171) expr ::= nm DOT nm */ 212, /* (172) expr ::= nm DOT nm DOT nm */ 211, /* (173) term ::= NULL|FLOAT|BLOB */ 211, /* (174) term ::= STRING */ 211, /* (175) term ::= INTEGER */ 212, /* (176) expr ::= VARIABLE */ 212, /* (177) expr ::= expr COLLATE ID|STRING */ 212, /* (178) expr ::= CAST LP expr AS typetoken RP */ 212, /* (179) expr ::= ID|INDEXED LP distinct exprlist RP */ 212, /* (180) expr ::= ID|INDEXED LP STAR RP */ 212, /* (181) expr ::= ID|INDEXED LP distinct exprlist RP filter_over */ 212, /* (182) expr ::= ID|INDEXED LP STAR RP filter_over */ 211, /* (183) term ::= CTIME_KW */ 212, /* (184) expr ::= LP nexprlist COMMA expr RP */ 212, /* (185) expr ::= expr AND expr */ 212, /* (186) expr ::= expr OR expr */ 212, /* (187) expr ::= expr LT|GT|GE|LE expr */ 212, /* (188) expr ::= expr EQ|NE expr */ 212, /* (189) expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr */ 212, /* (190) expr ::= expr PLUS|MINUS expr */ 212, /* (191) expr ::= expr STAR|SLASH|REM expr */ 212, /* (192) expr ::= expr CONCAT expr */ 267, /* (193) likeop ::= NOT LIKE_KW|MATCH */ 212, /* (194) expr ::= expr likeop expr */ 212, /* (195) expr ::= expr likeop expr ESCAPE expr */ 212, /* (196) expr ::= expr ISNULL|NOTNULL */ 212, /* (197) expr ::= expr NOT NULL */ 212, /* (198) expr ::= expr IS expr */ 212, /* (199) expr ::= expr IS NOT expr */ 212, /* (200) expr ::= NOT expr */ 212, /* (201) expr ::= BITNOT expr */ 212, /* (202) expr ::= PLUS|MINUS expr */ 268, /* (203) between_op ::= BETWEEN */ 268, /* (204) between_op ::= NOT BETWEEN */ 212, /* (205) expr ::= expr between_op expr AND expr */ 269, /* (206) in_op ::= IN */ 269, /* (207) in_op ::= NOT IN */ 212, /* (208) expr ::= expr in_op LP exprlist RP */ 212, /* (209) expr ::= LP select RP */ 212, /* (210) expr ::= expr in_op LP select RP */ 212, /* (211) expr ::= expr in_op nm dbnm paren_exprlist */ 212, /* (212) expr ::= EXISTS LP select RP */ 212, /* (213) expr ::= CASE case_operand case_exprlist case_else END */ 272, /* (214) case_exprlist ::= case_exprlist WHEN expr THEN expr */ 272, /* (215) case_exprlist ::= WHEN expr THEN expr */ 273, /* (216) case_else ::= ELSE expr */ 273, /* (217) case_else ::= */ 271, /* (218) case_operand ::= expr */ 271, /* (219) case_operand ::= */ 257, /* (220) exprlist ::= */ 248, /* (221) nexprlist ::= nexprlist COMMA expr */ 248, /* (222) nexprlist ::= expr */ 270, /* (223) paren_exprlist ::= */ 270, /* (224) paren_exprlist ::= LP exprlist RP */ 186, /* (225) cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP sortlist RP where_opt */ 274, /* (226) uniqueflag ::= UNIQUE */ 274, /* (227) uniqueflag ::= */ 216, /* (228) eidlist_opt ::= */ 216, /* (229) eidlist_opt ::= LP eidlist RP */ 227, /* (230) eidlist ::= eidlist COMMA nm collate sortorder */ 227, /* (231) eidlist ::= nm collate sortorder */ 275, /* (232) collate ::= */ 275, /* (233) collate ::= COLLATE ID|STRING */ 186, /* (234) cmd ::= DROP INDEX ifexists fullname */ 186, /* (235) cmd ::= VACUUM vinto */ 186, /* (236) cmd ::= VACUUM nm vinto */ 276, /* (237) vinto ::= INTO expr */ 276, /* (238) vinto ::= */ 186, /* (239) cmd ::= PRAGMA nm dbnm */ 186, /* (240) cmd ::= PRAGMA nm dbnm EQ nmnum */ 186, /* (241) cmd ::= PRAGMA nm dbnm LP nmnum RP */ 186, /* (242) cmd ::= PRAGMA nm dbnm EQ minus_num */ 186, /* (243) cmd ::= PRAGMA nm dbnm LP minus_num RP */ 206, /* (244) plus_num ::= PLUS INTEGER|FLOAT */ 207, /* (245) minus_num ::= MINUS INTEGER|FLOAT */ 186, /* (246) cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END */ 278, /* (247) trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause */ 280, /* (248) trigger_time ::= BEFORE|AFTER */ 280, /* (249) trigger_time ::= INSTEAD OF */ 280, /* (250) trigger_time ::= */ 281, /* (251) trigger_event ::= DELETE|INSERT */ 281, /* (252) trigger_event ::= UPDATE */ 281, /* (253) trigger_event ::= UPDATE OF idlist */ 283, /* (254) when_clause ::= */ 283, /* (255) when_clause ::= WHEN expr */ 279, /* (256) trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI */ 279, /* (257) trigger_cmd_list ::= trigger_cmd SEMI */ 285, /* (258) trnm ::= nm DOT nm */ 286, /* (259) tridxby ::= INDEXED BY nm */ 286, /* (260) tridxby ::= NOT INDEXED */ 284, /* (261) trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist from where_opt scanpt */ 284, /* (262) trigger_cmd ::= scanpt insert_cmd INTO trnm idlist_opt select upsert scanpt */ 284, /* (263) trigger_cmd ::= DELETE FROM trnm tridxby where_opt scanpt */ 284, /* (264) trigger_cmd ::= scanpt select scanpt */ 212, /* (265) expr ::= RAISE LP IGNORE RP */ 212, /* (266) expr ::= RAISE LP raisetype COMMA nm RP */ 231, /* (267) raisetype ::= ROLLBACK */ 231, /* (268) raisetype ::= ABORT */ 231, /* (269) raisetype ::= FAIL */ 186, /* (270) cmd ::= DROP TRIGGER ifexists fullname */ 186, /* (271) cmd ::= ATTACH database_kw_opt expr AS expr key_opt */ 186, /* (272) cmd ::= DETACH database_kw_opt expr */ 288, /* (273) key_opt ::= */ 288, /* (274) key_opt ::= KEY expr */ 186, /* (275) cmd ::= REINDEX */ 186, /* (276) cmd ::= REINDEX nm dbnm */ 186, /* (277) cmd ::= ANALYZE */ 186, /* (278) cmd ::= ANALYZE nm dbnm */ 186, /* (279) cmd ::= ALTER TABLE fullname RENAME TO nm */ 186, /* (280) cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt columnname carglist */ 289, /* (281) add_column_fullname ::= fullname */ 186, /* (282) cmd ::= ALTER TABLE fullname RENAME kwcolumn_opt nm TO nm */ 186, /* (283) cmd ::= create_vtab */ 186, /* (284) cmd ::= create_vtab LP vtabarglist RP */ 291, /* (285) create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm */ 293, /* (286) vtabarg ::= */ 294, /* (287) vtabargtoken ::= ANY */ 294, /* (288) vtabargtoken ::= lp anylist RP */ 295, /* (289) lp ::= LP */ 261, /* (290) with ::= WITH wqlist */ 261, /* (291) with ::= WITH RECURSIVE wqlist */ 236, /* (292) wqlist ::= nm eidlist_opt AS LP select RP */ 236, /* (293) wqlist ::= wqlist COMMA nm eidlist_opt AS LP select RP */ 297, /* (294) windowdefn_list ::= windowdefn */ 297, /* (295) windowdefn_list ::= windowdefn_list COMMA windowdefn */ 298, /* (296) windowdefn ::= nm AS LP window RP */ 299, /* (297) window ::= PARTITION BY nexprlist orderby_opt frame_opt */ 299, /* (298) window ::= nm PARTITION BY nexprlist orderby_opt frame_opt */ 299, /* (299) window ::= ORDER BY sortlist frame_opt */ 299, /* (300) window ::= nm ORDER BY sortlist frame_opt */ 299, /* (301) window ::= frame_opt */ 299, /* (302) window ::= nm frame_opt */ 300, /* (303) frame_opt ::= */ 300, /* (304) frame_opt ::= range_or_rows frame_bound_s frame_exclude_opt */ 300, /* (305) frame_opt ::= range_or_rows BETWEEN frame_bound_s AND frame_bound_e frame_exclude_opt */ 304, /* (306) range_or_rows ::= RANGE|ROWS|GROUPS */ 306, /* (307) frame_bound_s ::= frame_bound */ 306, /* (308) frame_bound_s ::= UNBOUNDED PRECEDING */ 307, /* (309) frame_bound_e ::= frame_bound */ 307, /* (310) frame_bound_e ::= UNBOUNDED FOLLOWING */ 305, /* (311) frame_bound ::= expr PRECEDING|FOLLOWING */ 305, /* (312) frame_bound ::= CURRENT ROW */ 308, /* (313) frame_exclude_opt ::= */ 308, /* (314) frame_exclude_opt ::= EXCLUDE frame_exclude */ 309, /* (315) frame_exclude ::= NO OTHERS */ 309, /* (316) frame_exclude ::= CURRENT ROW */ 309, /* (317) frame_exclude ::= GROUP|TIES */ 246, /* (318) window_clause ::= WINDOW windowdefn_list */ 266, /* (319) filter_over ::= filter_clause over_clause */ 266, /* (320) filter_over ::= over_clause */ 266, /* (321) filter_over ::= filter_clause */ 303, /* (322) over_clause ::= OVER LP window RP */ 303, /* (323) over_clause ::= OVER nm */ 302, /* (324) filter_clause ::= FILTER LP WHERE expr RP */ 181, /* (325) input ::= cmdlist */ 182, /* (326) cmdlist ::= cmdlist ecmd */ 182, /* (327) cmdlist ::= ecmd */ 183, /* (328) ecmd ::= SEMI */ 183, /* (329) ecmd ::= cmdx SEMI */ 183, /* (330) ecmd ::= explain cmdx SEMI */ 188, /* (331) trans_opt ::= */ 188, /* (332) trans_opt ::= TRANSACTION */ 188, /* (333) trans_opt ::= TRANSACTION nm */ 190, /* (334) savepoint_opt ::= SAVEPOINT */ 190, /* (335) savepoint_opt ::= */ 186, /* (336) cmd ::= create_table create_table_args */ 197, /* (337) columnlist ::= columnlist COMMA columnname carglist */ 197, /* (338) columnlist ::= columnname carglist */ 189, /* (339) nm ::= ID|INDEXED */ 189, /* (340) nm ::= STRING */ 189, /* (341) nm ::= JOIN_KW */ 203, /* (342) typetoken ::= typename */ 204, /* (343) typename ::= ID|STRING */ 205, /* (344) signed ::= plus_num */ 205, /* (345) signed ::= minus_num */ 202, /* (346) carglist ::= carglist ccons */ 202, /* (347) carglist ::= */ 210, /* (348) ccons ::= NULL onconf */ 210, /* (349) ccons ::= GENERATED ALWAYS AS generated */ 210, /* (350) ccons ::= AS generated */ 198, /* (351) conslist_opt ::= COMMA conslist */ 223, /* (352) conslist ::= conslist tconscomma tcons */ 223, /* (353) conslist ::= tcons */ 224, /* (354) tconscomma ::= */ 228, /* (355) defer_subclause_opt ::= defer_subclause */ 230, /* (356) resolvetype ::= raisetype */ 234, /* (357) selectnowith ::= oneselect */ 235, /* (358) oneselect ::= values */ 249, /* (359) sclp ::= selcollist COMMA */ 250, /* (360) as ::= ID|STRING */ 212, /* (361) expr ::= term */ 267, /* (362) likeop ::= LIKE_KW|MATCH */ 257, /* (363) exprlist ::= nexprlist */ 277, /* (364) nmnum ::= plus_num */ 277, /* (365) nmnum ::= nm */ 277, /* (366) nmnum ::= ON */ 277, /* (367) nmnum ::= DELETE */ 277, /* (368) nmnum ::= DEFAULT */ 206, /* (369) plus_num ::= INTEGER|FLOAT */ 282, /* (370) foreach_clause ::= */ 282, /* (371) foreach_clause ::= FOR EACH ROW */ 285, /* (372) trnm ::= nm */ 286, /* (373) tridxby ::= */ 287, /* (374) database_kw_opt ::= DATABASE */ 287, /* (375) database_kw_opt ::= */ 290, /* (376) kwcolumn_opt ::= */ 290, /* (377) kwcolumn_opt ::= COLUMNKW */ 292, /* (378) vtabarglist ::= vtabarg */ 292, /* (379) vtabarglist ::= vtabarglist COMMA vtabarg */ 293, /* (380) vtabarg ::= vtabarg vtabargtoken */ 296, /* (381) anylist ::= */ 296, /* (382) anylist ::= anylist LP anylist RP */ 296, /* (383) anylist ::= anylist ANY */ 261, /* (384) with ::= */ }; /* For rule J, yyRuleInfoNRhs[J] contains the negative of the number ** of symbols on the right-hand side of that rule. */ static const signed char yyRuleInfoNRhs[] = { -1, /* (0) explain ::= EXPLAIN */ -3, /* (1) explain ::= EXPLAIN QUERY PLAN */ -1, /* (2) cmdx ::= cmd */ -3, /* (3) cmd ::= BEGIN transtype trans_opt */ 0, /* (4) transtype ::= */ -1, /* (5) transtype ::= DEFERRED */ -1, /* (6) transtype ::= IMMEDIATE */ -1, /* (7) transtype ::= EXCLUSIVE */ -2, /* (8) cmd ::= COMMIT|END trans_opt */ -2, /* (9) cmd ::= ROLLBACK trans_opt */ -2, /* (10) cmd ::= SAVEPOINT nm */ -3, /* (11) cmd ::= RELEASE savepoint_opt nm */ -5, /* (12) cmd ::= ROLLBACK trans_opt TO savepoint_opt nm */ -6, /* (13) create_table ::= createkw temp TABLE ifnotexists nm dbnm */ -1, /* (14) createkw ::= CREATE */ 0, /* (15) ifnotexists ::= */ -3, /* (16) ifnotexists ::= IF NOT EXISTS */ -1, /* (17) temp ::= TEMP */ 0, /* (18) temp ::= */ -5, /* (19) create_table_args ::= LP columnlist conslist_opt RP table_options */ -2, /* (20) create_table_args ::= AS select */ 0, /* (21) table_options ::= */ -2, /* (22) table_options ::= WITHOUT nm */ -2, /* (23) columnname ::= nm typetoken */ 0, /* (24) typetoken ::= */ -4, /* (25) typetoken ::= typename LP signed RP */ -6, /* (26) typetoken ::= typename LP signed COMMA signed RP */ -2, /* (27) typename ::= typename ID|STRING */ 0, /* (28) scanpt ::= */ 0, /* (29) scantok ::= */ -2, /* (30) ccons ::= CONSTRAINT nm */ -3, /* (31) ccons ::= DEFAULT scantok term */ -4, /* (32) ccons ::= DEFAULT LP expr RP */ -4, /* (33) ccons ::= DEFAULT PLUS scantok term */ -4, /* (34) ccons ::= DEFAULT MINUS scantok term */ -3, /* (35) ccons ::= DEFAULT scantok ID|INDEXED */ -3, /* (36) ccons ::= NOT NULL onconf */ -5, /* (37) ccons ::= PRIMARY KEY sortorder onconf autoinc */ -2, /* (38) ccons ::= UNIQUE onconf */ -4, /* (39) ccons ::= CHECK LP expr RP */ -4, /* (40) ccons ::= REFERENCES nm eidlist_opt refargs */ -1, /* (41) ccons ::= defer_subclause */ -2, /* (42) ccons ::= COLLATE ID|STRING */ -3, /* (43) generated ::= LP expr RP */ -4, /* (44) generated ::= LP expr RP ID */ 0, /* (45) autoinc ::= */ -1, /* (46) autoinc ::= AUTOINCR */ 0, /* (47) refargs ::= */ -2, /* (48) refargs ::= refargs refarg */ -2, /* (49) refarg ::= MATCH nm */ -3, /* (50) refarg ::= ON INSERT refact */ -3, /* (51) refarg ::= ON DELETE refact */ -3, /* (52) refarg ::= ON UPDATE refact */ -2, /* (53) refact ::= SET NULL */ -2, /* (54) refact ::= SET DEFAULT */ -1, /* (55) refact ::= CASCADE */ -1, /* (56) refact ::= RESTRICT */ -2, /* (57) refact ::= NO ACTION */ -3, /* (58) defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt */ -2, /* (59) defer_subclause ::= DEFERRABLE init_deferred_pred_opt */ 0, /* (60) init_deferred_pred_opt ::= */ -2, /* (61) init_deferred_pred_opt ::= INITIALLY DEFERRED */ -2, /* (62) init_deferred_pred_opt ::= INITIALLY IMMEDIATE */ 0, /* (63) conslist_opt ::= */ -1, /* (64) tconscomma ::= COMMA */ -2, /* (65) tcons ::= CONSTRAINT nm */ -7, /* (66) tcons ::= PRIMARY KEY LP sortlist autoinc RP onconf */ -5, /* (67) tcons ::= UNIQUE LP sortlist RP onconf */ -5, /* (68) tcons ::= CHECK LP expr RP onconf */ -10, /* (69) tcons ::= FOREIGN KEY LP eidlist RP REFERENCES nm eidlist_opt refargs defer_subclause_opt */ 0, /* (70) defer_subclause_opt ::= */ 0, /* (71) onconf ::= */ -3, /* (72) onconf ::= ON CONFLICT resolvetype */ 0, /* (73) orconf ::= */ -2, /* (74) orconf ::= OR resolvetype */ -1, /* (75) resolvetype ::= IGNORE */ -1, /* (76) resolvetype ::= REPLACE */ -4, /* (77) cmd ::= DROP TABLE ifexists fullname */ -2, /* (78) ifexists ::= IF EXISTS */ 0, /* (79) ifexists ::= */ -9, /* (80) cmd ::= createkw temp VIEW ifnotexists nm dbnm eidlist_opt AS select */ -4, /* (81) cmd ::= DROP VIEW ifexists fullname */ -1, /* (82) cmd ::= select */ -3, /* (83) select ::= WITH wqlist selectnowith */ -4, /* (84) select ::= WITH RECURSIVE wqlist selectnowith */ -1, /* (85) select ::= selectnowith */ -3, /* (86) selectnowith ::= selectnowith multiselect_op oneselect */ -1, /* (87) multiselect_op ::= UNION */ -2, /* (88) multiselect_op ::= UNION ALL */ -1, /* (89) multiselect_op ::= EXCEPT|INTERSECT */ -9, /* (90) oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt */ -10, /* (91) oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt window_clause orderby_opt limit_opt */ -4, /* (92) values ::= VALUES LP nexprlist RP */ -5, /* (93) values ::= values COMMA LP nexprlist RP */ -1, /* (94) distinct ::= DISTINCT */ -1, /* (95) distinct ::= ALL */ 0, /* (96) distinct ::= */ 0, /* (97) sclp ::= */ -5, /* (98) selcollist ::= sclp scanpt expr scanpt as */ -3, /* (99) selcollist ::= sclp scanpt STAR */ -5, /* (100) selcollist ::= sclp scanpt nm DOT STAR */ -2, /* (101) as ::= AS nm */ 0, /* (102) as ::= */ 0, /* (103) from ::= */ -2, /* (104) from ::= FROM seltablist */ -2, /* (105) stl_prefix ::= seltablist joinop */ 0, /* (106) stl_prefix ::= */ -7, /* (107) seltablist ::= stl_prefix nm dbnm as indexed_opt on_opt using_opt */ -9, /* (108) seltablist ::= stl_prefix nm dbnm LP exprlist RP as on_opt using_opt */ -7, /* (109) seltablist ::= stl_prefix LP select RP as on_opt using_opt */ -7, /* (110) seltablist ::= stl_prefix LP seltablist RP as on_opt using_opt */ 0, /* (111) dbnm ::= */ -2, /* (112) dbnm ::= DOT nm */ -1, /* (113) fullname ::= nm */ -3, /* (114) fullname ::= nm DOT nm */ -1, /* (115) xfullname ::= nm */ -3, /* (116) xfullname ::= nm DOT nm */ -5, /* (117) xfullname ::= nm DOT nm AS nm */ -3, /* (118) xfullname ::= nm AS nm */ -1, /* (119) joinop ::= COMMA|JOIN */ -2, /* (120) joinop ::= JOIN_KW JOIN */ -3, /* (121) joinop ::= JOIN_KW nm JOIN */ -4, /* (122) joinop ::= JOIN_KW nm nm JOIN */ -2, /* (123) on_opt ::= ON expr */ 0, /* (124) on_opt ::= */ 0, /* (125) indexed_opt ::= */ -3, /* (126) indexed_opt ::= INDEXED BY nm */ -2, /* (127) indexed_opt ::= NOT INDEXED */ -4, /* (128) using_opt ::= USING LP idlist RP */ 0, /* (129) using_opt ::= */ 0, /* (130) orderby_opt ::= */ -3, /* (131) orderby_opt ::= ORDER BY sortlist */ -5, /* (132) sortlist ::= sortlist COMMA expr sortorder nulls */ -3, /* (133) sortlist ::= expr sortorder nulls */ -1, /* (134) sortorder ::= ASC */ -1, /* (135) sortorder ::= DESC */ 0, /* (136) sortorder ::= */ -2, /* (137) nulls ::= NULLS FIRST */ -2, /* (138) nulls ::= NULLS LAST */ 0, /* (139) nulls ::= */ 0, /* (140) groupby_opt ::= */ -3, /* (141) groupby_opt ::= GROUP BY nexprlist */ 0, /* (142) having_opt ::= */ -2, /* (143) having_opt ::= HAVING expr */ 0, /* (144) limit_opt ::= */ -2, /* (145) limit_opt ::= LIMIT expr */ -4, /* (146) limit_opt ::= LIMIT expr OFFSET expr */ -4, /* (147) limit_opt ::= LIMIT expr COMMA expr */ -6, /* (148) cmd ::= with DELETE FROM xfullname indexed_opt where_opt */ 0, /* (149) where_opt ::= */ -2, /* (150) where_opt ::= WHERE expr */ -9, /* (151) cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist from where_opt */ -5, /* (152) setlist ::= setlist COMMA nm EQ expr */ -7, /* (153) setlist ::= setlist COMMA LP idlist RP EQ expr */ -3, /* (154) setlist ::= nm EQ expr */ -5, /* (155) setlist ::= LP idlist RP EQ expr */ -7, /* (156) cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert */ -7, /* (157) cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES */ 0, /* (158) upsert ::= */ -11, /* (159) upsert ::= ON CONFLICT LP sortlist RP where_opt DO UPDATE SET setlist where_opt */ -8, /* (160) upsert ::= ON CONFLICT LP sortlist RP where_opt DO NOTHING */ -4, /* (161) upsert ::= ON CONFLICT DO NOTHING */ -2, /* (162) insert_cmd ::= INSERT orconf */ -1, /* (163) insert_cmd ::= REPLACE */ 0, /* (164) idlist_opt ::= */ -3, /* (165) idlist_opt ::= LP idlist RP */ -3, /* (166) idlist ::= idlist COMMA nm */ -1, /* (167) idlist ::= nm */ -3, /* (168) expr ::= LP expr RP */ -1, /* (169) expr ::= ID|INDEXED */ -1, /* (170) expr ::= JOIN_KW */ -3, /* (171) expr ::= nm DOT nm */ -5, /* (172) expr ::= nm DOT nm DOT nm */ -1, /* (173) term ::= NULL|FLOAT|BLOB */ -1, /* (174) term ::= STRING */ -1, /* (175) term ::= INTEGER */ -1, /* (176) expr ::= VARIABLE */ -3, /* (177) expr ::= expr COLLATE ID|STRING */ -6, /* (178) expr ::= CAST LP expr AS typetoken RP */ -5, /* (179) expr ::= ID|INDEXED LP distinct exprlist RP */ -4, /* (180) expr ::= ID|INDEXED LP STAR RP */ -6, /* (181) expr ::= ID|INDEXED LP distinct exprlist RP filter_over */ -5, /* (182) expr ::= ID|INDEXED LP STAR RP filter_over */ -1, /* (183) term ::= CTIME_KW */ -5, /* (184) expr ::= LP nexprlist COMMA expr RP */ -3, /* (185) expr ::= expr AND expr */ -3, /* (186) expr ::= expr OR expr */ -3, /* (187) expr ::= expr LT|GT|GE|LE expr */ -3, /* (188) expr ::= expr EQ|NE expr */ -3, /* (189) expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr */ -3, /* (190) expr ::= expr PLUS|MINUS expr */ -3, /* (191) expr ::= expr STAR|SLASH|REM expr */ -3, /* (192) expr ::= expr CONCAT expr */ -2, /* (193) likeop ::= NOT LIKE_KW|MATCH */ -3, /* (194) expr ::= expr likeop expr */ -5, /* (195) expr ::= expr likeop expr ESCAPE expr */ -2, /* (196) expr ::= expr ISNULL|NOTNULL */ -3, /* (197) expr ::= expr NOT NULL */ -3, /* (198) expr ::= expr IS expr */ -4, /* (199) expr ::= expr IS NOT expr */ -2, /* (200) expr ::= NOT expr */ -2, /* (201) expr ::= BITNOT expr */ -2, /* (202) expr ::= PLUS|MINUS expr */ -1, /* (203) between_op ::= BETWEEN */ -2, /* (204) between_op ::= NOT BETWEEN */ -5, /* (205) expr ::= expr between_op expr AND expr */ -1, /* (206) in_op ::= IN */ -2, /* (207) in_op ::= NOT IN */ -5, /* (208) expr ::= expr in_op LP exprlist RP */ -3, /* (209) expr ::= LP select RP */ -5, /* (210) expr ::= expr in_op LP select RP */ -5, /* (211) expr ::= expr in_op nm dbnm paren_exprlist */ -4, /* (212) expr ::= EXISTS LP select RP */ -5, /* (213) expr ::= CASE case_operand case_exprlist case_else END */ -5, /* (214) case_exprlist ::= case_exprlist WHEN expr THEN expr */ -4, /* (215) case_exprlist ::= WHEN expr THEN expr */ -2, /* (216) case_else ::= ELSE expr */ 0, /* (217) case_else ::= */ -1, /* (218) case_operand ::= expr */ 0, /* (219) case_operand ::= */ 0, /* (220) exprlist ::= */ -3, /* (221) nexprlist ::= nexprlist COMMA expr */ -1, /* (222) nexprlist ::= expr */ 0, /* (223) paren_exprlist ::= */ -3, /* (224) paren_exprlist ::= LP exprlist RP */ -12, /* (225) cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP sortlist RP where_opt */ -1, /* (226) uniqueflag ::= UNIQUE */ 0, /* (227) uniqueflag ::= */ 0, /* (228) eidlist_opt ::= */ -3, /* (229) eidlist_opt ::= LP eidlist RP */ -5, /* (230) eidlist ::= eidlist COMMA nm collate sortorder */ -3, /* (231) eidlist ::= nm collate sortorder */ 0, /* (232) collate ::= */ -2, /* (233) collate ::= COLLATE ID|STRING */ -4, /* (234) cmd ::= DROP INDEX ifexists fullname */ -2, /* (235) cmd ::= VACUUM vinto */ -3, /* (236) cmd ::= VACUUM nm vinto */ -2, /* (237) vinto ::= INTO expr */ 0, /* (238) vinto ::= */ -3, /* (239) cmd ::= PRAGMA nm dbnm */ -5, /* (240) cmd ::= PRAGMA nm dbnm EQ nmnum */ -6, /* (241) cmd ::= PRAGMA nm dbnm LP nmnum RP */ -5, /* (242) cmd ::= PRAGMA nm dbnm EQ minus_num */ -6, /* (243) cmd ::= PRAGMA nm dbnm LP minus_num RP */ -2, /* (244) plus_num ::= PLUS INTEGER|FLOAT */ -2, /* (245) minus_num ::= MINUS INTEGER|FLOAT */ -5, /* (246) cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END */ -11, /* (247) trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause */ -1, /* (248) trigger_time ::= BEFORE|AFTER */ -2, /* (249) trigger_time ::= INSTEAD OF */ 0, /* (250) trigger_time ::= */ -1, /* (251) trigger_event ::= DELETE|INSERT */ -1, /* (252) trigger_event ::= UPDATE */ -3, /* (253) trigger_event ::= UPDATE OF idlist */ 0, /* (254) when_clause ::= */ -2, /* (255) when_clause ::= WHEN expr */ -3, /* (256) trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI */ -2, /* (257) trigger_cmd_list ::= trigger_cmd SEMI */ -3, /* (258) trnm ::= nm DOT nm */ -3, /* (259) tridxby ::= INDEXED BY nm */ -2, /* (260) tridxby ::= NOT INDEXED */ -9, /* (261) trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist from where_opt scanpt */ -8, /* (262) trigger_cmd ::= scanpt insert_cmd INTO trnm idlist_opt select upsert scanpt */ -6, /* (263) trigger_cmd ::= DELETE FROM trnm tridxby where_opt scanpt */ -3, /* (264) trigger_cmd ::= scanpt select scanpt */ -4, /* (265) expr ::= RAISE LP IGNORE RP */ -6, /* (266) expr ::= RAISE LP raisetype COMMA nm RP */ -1, /* (267) raisetype ::= ROLLBACK */ -1, /* (268) raisetype ::= ABORT */ -1, /* (269) raisetype ::= FAIL */ -4, /* (270) cmd ::= DROP TRIGGER ifexists fullname */ -6, /* (271) cmd ::= ATTACH database_kw_opt expr AS expr key_opt */ -3, /* (272) cmd ::= DETACH database_kw_opt expr */ 0, /* (273) key_opt ::= */ -2, /* (274) key_opt ::= KEY expr */ -1, /* (275) cmd ::= REINDEX */ -3, /* (276) cmd ::= REINDEX nm dbnm */ -1, /* (277) cmd ::= ANALYZE */ -3, /* (278) cmd ::= ANALYZE nm dbnm */ -6, /* (279) cmd ::= ALTER TABLE fullname RENAME TO nm */ -7, /* (280) cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt columnname carglist */ -1, /* (281) add_column_fullname ::= fullname */ -8, /* (282) cmd ::= ALTER TABLE fullname RENAME kwcolumn_opt nm TO nm */ -1, /* (283) cmd ::= create_vtab */ -4, /* (284) cmd ::= create_vtab LP vtabarglist RP */ -8, /* (285) create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm */ 0, /* (286) vtabarg ::= */ -1, /* (287) vtabargtoken ::= ANY */ -3, /* (288) vtabargtoken ::= lp anylist RP */ -1, /* (289) lp ::= LP */ -2, /* (290) with ::= WITH wqlist */ -3, /* (291) with ::= WITH RECURSIVE wqlist */ -6, /* (292) wqlist ::= nm eidlist_opt AS LP select RP */ -8, /* (293) wqlist ::= wqlist COMMA nm eidlist_opt AS LP select RP */ -1, /* (294) windowdefn_list ::= windowdefn */ -3, /* (295) windowdefn_list ::= windowdefn_list COMMA windowdefn */ -5, /* (296) windowdefn ::= nm AS LP window RP */ -5, /* (297) window ::= PARTITION BY nexprlist orderby_opt frame_opt */ -6, /* (298) window ::= nm PARTITION BY nexprlist orderby_opt frame_opt */ -4, /* (299) window ::= ORDER BY sortlist frame_opt */ -5, /* (300) window ::= nm ORDER BY sortlist frame_opt */ -1, /* (301) window ::= frame_opt */ -2, /* (302) window ::= nm frame_opt */ 0, /* (303) frame_opt ::= */ -3, /* (304) frame_opt ::= range_or_rows frame_bound_s frame_exclude_opt */ -6, /* (305) frame_opt ::= range_or_rows BETWEEN frame_bound_s AND frame_bound_e frame_exclude_opt */ -1, /* (306) range_or_rows ::= RANGE|ROWS|GROUPS */ -1, /* (307) frame_bound_s ::= frame_bound */ -2, /* (308) frame_bound_s ::= UNBOUNDED PRECEDING */ -1, /* (309) frame_bound_e ::= frame_bound */ -2, /* (310) frame_bound_e ::= UNBOUNDED FOLLOWING */ -2, /* (311) frame_bound ::= expr PRECEDING|FOLLOWING */ -2, /* (312) frame_bound ::= CURRENT ROW */ 0, /* (313) frame_exclude_opt ::= */ -2, /* (314) frame_exclude_opt ::= EXCLUDE frame_exclude */ -2, /* (315) frame_exclude ::= NO OTHERS */ -2, /* (316) frame_exclude ::= CURRENT ROW */ -1, /* (317) frame_exclude ::= GROUP|TIES */ -2, /* (318) window_clause ::= WINDOW windowdefn_list */ -2, /* (319) filter_over ::= filter_clause over_clause */ -1, /* (320) filter_over ::= over_clause */ -1, /* (321) filter_over ::= filter_clause */ -4, /* (322) over_clause ::= OVER LP window RP */ -2, /* (323) over_clause ::= OVER nm */ -5, /* (324) filter_clause ::= FILTER LP WHERE expr RP */ -1, /* (325) input ::= cmdlist */ -2, /* (326) cmdlist ::= cmdlist ecmd */ -1, /* (327) cmdlist ::= ecmd */ -1, /* (328) ecmd ::= SEMI */ -2, /* (329) ecmd ::= cmdx SEMI */ -3, /* (330) ecmd ::= explain cmdx SEMI */ 0, /* (331) trans_opt ::= */ -1, /* (332) trans_opt ::= TRANSACTION */ -2, /* (333) trans_opt ::= TRANSACTION nm */ -1, /* (334) savepoint_opt ::= SAVEPOINT */ 0, /* (335) savepoint_opt ::= */ -2, /* (336) cmd ::= create_table create_table_args */ -4, /* (337) columnlist ::= columnlist COMMA columnname carglist */ -2, /* (338) columnlist ::= columnname carglist */ -1, /* (339) nm ::= ID|INDEXED */ -1, /* (340) nm ::= STRING */ -1, /* (341) nm ::= JOIN_KW */ -1, /* (342) typetoken ::= typename */ -1, /* (343) typename ::= ID|STRING */ -1, /* (344) signed ::= plus_num */ -1, /* (345) signed ::= minus_num */ -2, /* (346) carglist ::= carglist ccons */ 0, /* (347) carglist ::= */ -2, /* (348) ccons ::= NULL onconf */ -4, /* (349) ccons ::= GENERATED ALWAYS AS generated */ -2, /* (350) ccons ::= AS generated */ -2, /* (351) conslist_opt ::= COMMA conslist */ -3, /* (352) conslist ::= conslist tconscomma tcons */ -1, /* (353) conslist ::= tcons */ 0, /* (354) tconscomma ::= */ -1, /* (355) defer_subclause_opt ::= defer_subclause */ -1, /* (356) resolvetype ::= raisetype */ -1, /* (357) selectnowith ::= oneselect */ -1, /* (358) oneselect ::= values */ -2, /* (359) sclp ::= selcollist COMMA */ -1, /* (360) as ::= ID|STRING */ -1, /* (361) expr ::= term */ -1, /* (362) likeop ::= LIKE_KW|MATCH */ -1, /* (363) exprlist ::= nexprlist */ -1, /* (364) nmnum ::= plus_num */ -1, /* (365) nmnum ::= nm */ -1, /* (366) nmnum ::= ON */ -1, /* (367) nmnum ::= DELETE */ -1, /* (368) nmnum ::= DEFAULT */ -1, /* (369) plus_num ::= INTEGER|FLOAT */ 0, /* (370) foreach_clause ::= */ -3, /* (371) foreach_clause ::= FOR EACH ROW */ -1, /* (372) trnm ::= nm */ 0, /* (373) tridxby ::= */ -1, /* (374) database_kw_opt ::= DATABASE */ 0, /* (375) database_kw_opt ::= */ 0, /* (376) kwcolumn_opt ::= */ -1, /* (377) kwcolumn_opt ::= COLUMNKW */ -1, /* (378) vtabarglist ::= vtabarg */ -3, /* (379) vtabarglist ::= vtabarglist COMMA vtabarg */ -2, /* (380) vtabarg ::= vtabarg vtabargtoken */ 0, /* (381) anylist ::= */ -4, /* (382) anylist ::= anylist LP anylist RP */ -2, /* (383) anylist ::= anylist ANY */ 0, /* (384) with ::= */ }; static void yy_accept(yyParser*); /* Forward Declaration */ /* ** Perform a reduce action and the shift that must immediately ** follow the reduce. ** ** The yyLookahead and yyLookaheadToken parameters provide reduce actions ** access to the lookahead token (if any). The yyLookahead will be YYNOCODE ** if the lookahead token has already been consumed. As this procedure is ** only called from one place, optimizing compilers will in-line it, which ** means that the extra parameters have no performance impact. */ static YYACTIONTYPE yy_reduce( yyParser *yypParser, /* The parser */ unsigned int yyruleno, /* Number of the rule by which to reduce */ int yyLookahead, /* Lookahead token, or YYNOCODE if none */ sqlite3ParserTOKENTYPE yyLookaheadToken /* Value of the lookahead token */ sqlite3ParserCTX_PDECL /* %extra_context */ ){ int yygoto; /* The next state */ YYACTIONTYPE yyact; /* The next action */ yyStackEntry *yymsp; /* The top of the parser's stack */ int yysize; /* Amount to pop the stack */ sqlite3ParserARG_FETCH (void)yyLookahead; (void)yyLookaheadToken; yymsp = yypParser->yytos; #ifndef NDEBUG if( yyTraceFILE && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){ yysize = yyRuleInfoNRhs[yyruleno]; if( yysize ){ fprintf(yyTraceFILE, "%sReduce %d [%s]%s, pop back to state %d.\n", yyTracePrompt, yyruleno, yyRuleName[yyruleno], yyrulenoyytos - yypParser->yystack)>yypParser->yyhwm ){ yypParser->yyhwm++; assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack)); } #endif #if YYSTACKDEPTH>0 if( yypParser->yytos>=yypParser->yystackEnd ){ yyStackOverflow(yypParser); /* The call to yyStackOverflow() above pops the stack until it is ** empty, causing the main parser loop to exit. So the return value ** is never used and does not matter. */ return 0; } #else if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz-1] ){ if( yyGrowStack(yypParser) ){ yyStackOverflow(yypParser); /* The call to yyStackOverflow() above pops the stack until it is ** empty, causing the main parser loop to exit. So the return value ** is never used and does not matter. */ return 0; } yymsp = yypParser->yytos; } #endif } switch( yyruleno ){ /* Beginning here are the reduction cases. A typical example ** follows: ** case 0: ** #line ** { ... } // User supplied code ** #line ** break; */ /********** Begin reduce actions **********************************************/ YYMINORTYPE yylhsminor; case 0: /* explain ::= EXPLAIN */ { pParse->explain = 1; } break; case 1: /* explain ::= EXPLAIN QUERY PLAN */ { pParse->explain = 2; } break; case 2: /* cmdx ::= cmd */ { sqlite3FinishCoding(pParse); } break; case 3: /* cmd ::= BEGIN transtype trans_opt */ {sqlite3BeginTransaction(pParse, yymsp[-1].minor.yy192);} break; case 4: /* transtype ::= */ {yymsp[1].minor.yy192 = TK_DEFERRED;} break; case 5: /* transtype ::= DEFERRED */ case 6: /* transtype ::= IMMEDIATE */ yytestcase(yyruleno==6); case 7: /* transtype ::= EXCLUSIVE */ yytestcase(yyruleno==7); case 306: /* range_or_rows ::= RANGE|ROWS|GROUPS */ yytestcase(yyruleno==306); {yymsp[0].minor.yy192 = yymsp[0].major; /*A-overwrites-X*/} break; case 8: /* cmd ::= COMMIT|END trans_opt */ case 9: /* cmd ::= ROLLBACK trans_opt */ yytestcase(yyruleno==9); {sqlite3EndTransaction(pParse,yymsp[-1].major);} break; case 10: /* cmd ::= SAVEPOINT nm */ { sqlite3Savepoint(pParse, SAVEPOINT_BEGIN, &yymsp[0].minor.yy0); } break; case 11: /* cmd ::= RELEASE savepoint_opt nm */ { sqlite3Savepoint(pParse, SAVEPOINT_RELEASE, &yymsp[0].minor.yy0); } break; case 12: /* cmd ::= ROLLBACK trans_opt TO savepoint_opt nm */ { sqlite3Savepoint(pParse, SAVEPOINT_ROLLBACK, &yymsp[0].minor.yy0); } break; case 13: /* create_table ::= createkw temp TABLE ifnotexists nm dbnm */ { sqlite3StartTable(pParse,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0,yymsp[-4].minor.yy192,0,0,yymsp[-2].minor.yy192); } break; case 14: /* createkw ::= CREATE */ {disableLookaside(pParse);} break; case 15: /* ifnotexists ::= */ case 18: /* temp ::= */ yytestcase(yyruleno==18); case 21: /* table_options ::= */ yytestcase(yyruleno==21); case 45: /* autoinc ::= */ yytestcase(yyruleno==45); case 60: /* init_deferred_pred_opt ::= */ yytestcase(yyruleno==60); case 70: /* defer_subclause_opt ::= */ yytestcase(yyruleno==70); case 79: /* ifexists ::= */ yytestcase(yyruleno==79); case 96: /* distinct ::= */ yytestcase(yyruleno==96); case 232: /* collate ::= */ yytestcase(yyruleno==232); {yymsp[1].minor.yy192 = 0;} break; case 16: /* ifnotexists ::= IF NOT EXISTS */ {yymsp[-2].minor.yy192 = 1;} break; case 17: /* temp ::= TEMP */ case 46: /* autoinc ::= AUTOINCR */ yytestcase(yyruleno==46); {yymsp[0].minor.yy192 = 1;} break; case 19: /* create_table_args ::= LP columnlist conslist_opt RP table_options */ { sqlite3EndTable(pParse,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0,yymsp[0].minor.yy192,0); } break; case 20: /* create_table_args ::= AS select */ { sqlite3EndTable(pParse,0,0,0,yymsp[0].minor.yy539); sqlite3SelectDelete(pParse->db, yymsp[0].minor.yy539); } break; case 22: /* table_options ::= WITHOUT nm */ { if( yymsp[0].minor.yy0.n==5 && sqlite3_strnicmp(yymsp[0].minor.yy0.z,"rowid",5)==0 ){ yymsp[-1].minor.yy192 = TF_WithoutRowid | TF_NoVisibleRowid; }else{ yymsp[-1].minor.yy192 = 0; sqlite3ErrorMsg(pParse, "unknown table option: %.*s", yymsp[0].minor.yy0.n, yymsp[0].minor.yy0.z); } } break; case 23: /* columnname ::= nm typetoken */ {sqlite3AddColumn(pParse,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0);} break; case 24: /* typetoken ::= */ case 63: /* conslist_opt ::= */ yytestcase(yyruleno==63); case 102: /* as ::= */ yytestcase(yyruleno==102); {yymsp[1].minor.yy0.n = 0; yymsp[1].minor.yy0.z = 0;} break; case 25: /* typetoken ::= typename LP signed RP */ { yymsp[-3].minor.yy0.n = (int)(&yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n] - yymsp[-3].minor.yy0.z); } break; case 26: /* typetoken ::= typename LP signed COMMA signed RP */ { yymsp[-5].minor.yy0.n = (int)(&yymsp[0].minor.yy0.z[yymsp[0].minor.yy0.n] - yymsp[-5].minor.yy0.z); } break; case 27: /* typename ::= typename ID|STRING */ {yymsp[-1].minor.yy0.n=yymsp[0].minor.yy0.n+(int)(yymsp[0].minor.yy0.z-yymsp[-1].minor.yy0.z);} break; case 28: /* scanpt ::= */ { assert( yyLookahead!=YYNOCODE ); yymsp[1].minor.yy436 = yyLookaheadToken.z; } break; case 29: /* scantok ::= */ { assert( yyLookahead!=YYNOCODE ); yymsp[1].minor.yy0 = yyLookaheadToken; } break; case 30: /* ccons ::= CONSTRAINT nm */ case 65: /* tcons ::= CONSTRAINT nm */ yytestcase(yyruleno==65); {pParse->constraintName = yymsp[0].minor.yy0;} break; case 31: /* ccons ::= DEFAULT scantok term */ {sqlite3AddDefaultValue(pParse,yymsp[0].minor.yy202,yymsp[-1].minor.yy0.z,&yymsp[-1].minor.yy0.z[yymsp[-1].minor.yy0.n]);} break; case 32: /* ccons ::= DEFAULT LP expr RP */ {sqlite3AddDefaultValue(pParse,yymsp[-1].minor.yy202,yymsp[-2].minor.yy0.z+1,yymsp[0].minor.yy0.z);} break; case 33: /* ccons ::= DEFAULT PLUS scantok term */ {sqlite3AddDefaultValue(pParse,yymsp[0].minor.yy202,yymsp[-2].minor.yy0.z,&yymsp[-1].minor.yy0.z[yymsp[-1].minor.yy0.n]);} break; case 34: /* ccons ::= DEFAULT MINUS scantok term */ { Expr *p = sqlite3PExpr(pParse, TK_UMINUS, yymsp[0].minor.yy202, 0); sqlite3AddDefaultValue(pParse,p,yymsp[-2].minor.yy0.z,&yymsp[-1].minor.yy0.z[yymsp[-1].minor.yy0.n]); } break; case 35: /* ccons ::= DEFAULT scantok ID|INDEXED */ { Expr *p = tokenExpr(pParse, TK_STRING, yymsp[0].minor.yy0); if( p ){ sqlite3ExprIdToTrueFalse(p); testcase( p->op==TK_TRUEFALSE && sqlite3ExprTruthValue(p) ); } sqlite3AddDefaultValue(pParse,p,yymsp[0].minor.yy0.z,yymsp[0].minor.yy0.z+yymsp[0].minor.yy0.n); } break; case 36: /* ccons ::= NOT NULL onconf */ {sqlite3AddNotNull(pParse, yymsp[0].minor.yy192);} break; case 37: /* ccons ::= PRIMARY KEY sortorder onconf autoinc */ {sqlite3AddPrimaryKey(pParse,0,yymsp[-1].minor.yy192,yymsp[0].minor.yy192,yymsp[-2].minor.yy192);} break; case 38: /* ccons ::= UNIQUE onconf */ {sqlite3CreateIndex(pParse,0,0,0,0,yymsp[0].minor.yy192,0,0,0,0, SQLITE_IDXTYPE_UNIQUE);} break; case 39: /* ccons ::= CHECK LP expr RP */ {sqlite3AddCheckConstraint(pParse,yymsp[-1].minor.yy202);} break; case 40: /* ccons ::= REFERENCES nm eidlist_opt refargs */ {sqlite3CreateForeignKey(pParse,0,&yymsp[-2].minor.yy0,yymsp[-1].minor.yy242,yymsp[0].minor.yy192);} break; case 41: /* ccons ::= defer_subclause */ {sqlite3DeferForeignKey(pParse,yymsp[0].minor.yy192);} break; case 42: /* ccons ::= COLLATE ID|STRING */ {sqlite3AddCollateType(pParse, &yymsp[0].minor.yy0);} break; case 43: /* generated ::= LP expr RP */ {sqlite3AddGenerated(pParse,yymsp[-1].minor.yy202,0);} break; case 44: /* generated ::= LP expr RP ID */ {sqlite3AddGenerated(pParse,yymsp[-2].minor.yy202,&yymsp[0].minor.yy0);} break; case 47: /* refargs ::= */ { yymsp[1].minor.yy192 = OE_None*0x0101; /* EV: R-19803-45884 */} break; case 48: /* refargs ::= refargs refarg */ { yymsp[-1].minor.yy192 = (yymsp[-1].minor.yy192 & ~yymsp[0].minor.yy207.mask) | yymsp[0].minor.yy207.value; } break; case 49: /* refarg ::= MATCH nm */ { yymsp[-1].minor.yy207.value = 0; yymsp[-1].minor.yy207.mask = 0x000000; } break; case 50: /* refarg ::= ON INSERT refact */ { yymsp[-2].minor.yy207.value = 0; yymsp[-2].minor.yy207.mask = 0x000000; } break; case 51: /* refarg ::= ON DELETE refact */ { yymsp[-2].minor.yy207.value = yymsp[0].minor.yy192; yymsp[-2].minor.yy207.mask = 0x0000ff; } break; case 52: /* refarg ::= ON UPDATE refact */ { yymsp[-2].minor.yy207.value = yymsp[0].minor.yy192<<8; yymsp[-2].minor.yy207.mask = 0x00ff00; } break; case 53: /* refact ::= SET NULL */ { yymsp[-1].minor.yy192 = OE_SetNull; /* EV: R-33326-45252 */} break; case 54: /* refact ::= SET DEFAULT */ { yymsp[-1].minor.yy192 = OE_SetDflt; /* EV: R-33326-45252 */} break; case 55: /* refact ::= CASCADE */ { yymsp[0].minor.yy192 = OE_Cascade; /* EV: R-33326-45252 */} break; case 56: /* refact ::= RESTRICT */ { yymsp[0].minor.yy192 = OE_Restrict; /* EV: R-33326-45252 */} break; case 57: /* refact ::= NO ACTION */ { yymsp[-1].minor.yy192 = OE_None; /* EV: R-33326-45252 */} break; case 58: /* defer_subclause ::= NOT DEFERRABLE init_deferred_pred_opt */ {yymsp[-2].minor.yy192 = 0;} break; case 59: /* defer_subclause ::= DEFERRABLE init_deferred_pred_opt */ case 74: /* orconf ::= OR resolvetype */ yytestcase(yyruleno==74); case 162: /* insert_cmd ::= INSERT orconf */ yytestcase(yyruleno==162); {yymsp[-1].minor.yy192 = yymsp[0].minor.yy192;} break; case 61: /* init_deferred_pred_opt ::= INITIALLY DEFERRED */ case 78: /* ifexists ::= IF EXISTS */ yytestcase(yyruleno==78); case 204: /* between_op ::= NOT BETWEEN */ yytestcase(yyruleno==204); case 207: /* in_op ::= NOT IN */ yytestcase(yyruleno==207); case 233: /* collate ::= COLLATE ID|STRING */ yytestcase(yyruleno==233); {yymsp[-1].minor.yy192 = 1;} break; case 62: /* init_deferred_pred_opt ::= INITIALLY IMMEDIATE */ {yymsp[-1].minor.yy192 = 0;} break; case 64: /* tconscomma ::= COMMA */ {pParse->constraintName.n = 0;} break; case 66: /* tcons ::= PRIMARY KEY LP sortlist autoinc RP onconf */ {sqlite3AddPrimaryKey(pParse,yymsp[-3].minor.yy242,yymsp[0].minor.yy192,yymsp[-2].minor.yy192,0);} break; case 67: /* tcons ::= UNIQUE LP sortlist RP onconf */ {sqlite3CreateIndex(pParse,0,0,0,yymsp[-2].minor.yy242,yymsp[0].minor.yy192,0,0,0,0, SQLITE_IDXTYPE_UNIQUE);} break; case 68: /* tcons ::= CHECK LP expr RP onconf */ {sqlite3AddCheckConstraint(pParse,yymsp[-2].minor.yy202);} break; case 69: /* tcons ::= FOREIGN KEY LP eidlist RP REFERENCES nm eidlist_opt refargs defer_subclause_opt */ { sqlite3CreateForeignKey(pParse, yymsp[-6].minor.yy242, &yymsp[-3].minor.yy0, yymsp[-2].minor.yy242, yymsp[-1].minor.yy192); sqlite3DeferForeignKey(pParse, yymsp[0].minor.yy192); } break; case 71: /* onconf ::= */ case 73: /* orconf ::= */ yytestcase(yyruleno==73); {yymsp[1].minor.yy192 = OE_Default;} break; case 72: /* onconf ::= ON CONFLICT resolvetype */ {yymsp[-2].minor.yy192 = yymsp[0].minor.yy192;} break; case 75: /* resolvetype ::= IGNORE */ {yymsp[0].minor.yy192 = OE_Ignore;} break; case 76: /* resolvetype ::= REPLACE */ case 163: /* insert_cmd ::= REPLACE */ yytestcase(yyruleno==163); {yymsp[0].minor.yy192 = OE_Replace;} break; case 77: /* cmd ::= DROP TABLE ifexists fullname */ { sqlite3DropTable(pParse, yymsp[0].minor.yy47, 0, yymsp[-1].minor.yy192); } break; case 80: /* cmd ::= createkw temp VIEW ifnotexists nm dbnm eidlist_opt AS select */ { sqlite3CreateView(pParse, &yymsp[-8].minor.yy0, &yymsp[-4].minor.yy0, &yymsp[-3].minor.yy0, yymsp[-2].minor.yy242, yymsp[0].minor.yy539, yymsp[-7].minor.yy192, yymsp[-5].minor.yy192); } break; case 81: /* cmd ::= DROP VIEW ifexists fullname */ { sqlite3DropTable(pParse, yymsp[0].minor.yy47, 1, yymsp[-1].minor.yy192); } break; case 82: /* cmd ::= select */ { SelectDest dest = {SRT_Output, 0, 0, 0, 0, 0, 0}; sqlite3Select(pParse, yymsp[0].minor.yy539, &dest); sqlite3SelectDelete(pParse->db, yymsp[0].minor.yy539); } break; case 83: /* select ::= WITH wqlist selectnowith */ { Select *p = yymsp[0].minor.yy539; if( p ){ p->pWith = yymsp[-1].minor.yy131; parserDoubleLinkSelect(pParse, p); }else{ sqlite3WithDelete(pParse->db, yymsp[-1].minor.yy131); } yymsp[-2].minor.yy539 = p; } break; case 84: /* select ::= WITH RECURSIVE wqlist selectnowith */ { Select *p = yymsp[0].minor.yy539; if( p ){ p->pWith = yymsp[-1].minor.yy131; parserDoubleLinkSelect(pParse, p); }else{ sqlite3WithDelete(pParse->db, yymsp[-1].minor.yy131); } yymsp[-3].minor.yy539 = p; } break; case 85: /* select ::= selectnowith */ { Select *p = yymsp[0].minor.yy539; if( p ){ parserDoubleLinkSelect(pParse, p); } yymsp[0].minor.yy539 = p; /*A-overwrites-X*/ } break; case 86: /* selectnowith ::= selectnowith multiselect_op oneselect */ { Select *pRhs = yymsp[0].minor.yy539; Select *pLhs = yymsp[-2].minor.yy539; if( pRhs && pRhs->pPrior ){ SrcList *pFrom; Token x; x.n = 0; parserDoubleLinkSelect(pParse, pRhs); pFrom = sqlite3SrcListAppendFromTerm(pParse,0,0,0,&x,pRhs,0,0); pRhs = sqlite3SelectNew(pParse,0,pFrom,0,0,0,0,0,0); } if( pRhs ){ pRhs->op = (u8)yymsp[-1].minor.yy192; pRhs->pPrior = pLhs; if( ALWAYS(pLhs) ) pLhs->selFlags &= ~SF_MultiValue; pRhs->selFlags &= ~SF_MultiValue; if( yymsp[-1].minor.yy192!=TK_ALL ) pParse->hasCompound = 1; }else{ sqlite3SelectDelete(pParse->db, pLhs); } yymsp[-2].minor.yy539 = pRhs; } break; case 87: /* multiselect_op ::= UNION */ case 89: /* multiselect_op ::= EXCEPT|INTERSECT */ yytestcase(yyruleno==89); {yymsp[0].minor.yy192 = yymsp[0].major; /*A-overwrites-OP*/} break; case 88: /* multiselect_op ::= UNION ALL */ {yymsp[-1].minor.yy192 = TK_ALL;} break; case 90: /* oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt orderby_opt limit_opt */ { yymsp[-8].minor.yy539 = sqlite3SelectNew(pParse,yymsp[-6].minor.yy242,yymsp[-5].minor.yy47,yymsp[-4].minor.yy202,yymsp[-3].minor.yy242,yymsp[-2].minor.yy202,yymsp[-1].minor.yy242,yymsp[-7].minor.yy192,yymsp[0].minor.yy202); } break; case 91: /* oneselect ::= SELECT distinct selcollist from where_opt groupby_opt having_opt window_clause orderby_opt limit_opt */ { yymsp[-9].minor.yy539 = sqlite3SelectNew(pParse,yymsp[-7].minor.yy242,yymsp[-6].minor.yy47,yymsp[-5].minor.yy202,yymsp[-4].minor.yy242,yymsp[-3].minor.yy202,yymsp[-1].minor.yy242,yymsp[-8].minor.yy192,yymsp[0].minor.yy202); if( yymsp[-9].minor.yy539 ){ yymsp[-9].minor.yy539->pWinDefn = yymsp[-2].minor.yy303; }else{ sqlite3WindowListDelete(pParse->db, yymsp[-2].minor.yy303); } } break; case 92: /* values ::= VALUES LP nexprlist RP */ { yymsp[-3].minor.yy539 = sqlite3SelectNew(pParse,yymsp[-1].minor.yy242,0,0,0,0,0,SF_Values,0); } break; case 93: /* values ::= values COMMA LP nexprlist RP */ { Select *pRight, *pLeft = yymsp[-4].minor.yy539; pRight = sqlite3SelectNew(pParse,yymsp[-1].minor.yy242,0,0,0,0,0,SF_Values|SF_MultiValue,0); if( ALWAYS(pLeft) ) pLeft->selFlags &= ~SF_MultiValue; if( pRight ){ pRight->op = TK_ALL; pRight->pPrior = pLeft; yymsp[-4].minor.yy539 = pRight; }else{ yymsp[-4].minor.yy539 = pLeft; } } break; case 94: /* distinct ::= DISTINCT */ {yymsp[0].minor.yy192 = SF_Distinct;} break; case 95: /* distinct ::= ALL */ {yymsp[0].minor.yy192 = SF_All;} break; case 97: /* sclp ::= */ case 130: /* orderby_opt ::= */ yytestcase(yyruleno==130); case 140: /* groupby_opt ::= */ yytestcase(yyruleno==140); case 220: /* exprlist ::= */ yytestcase(yyruleno==220); case 223: /* paren_exprlist ::= */ yytestcase(yyruleno==223); case 228: /* eidlist_opt ::= */ yytestcase(yyruleno==228); {yymsp[1].minor.yy242 = 0;} break; case 98: /* selcollist ::= sclp scanpt expr scanpt as */ { yymsp[-4].minor.yy242 = sqlite3ExprListAppend(pParse, yymsp[-4].minor.yy242, yymsp[-2].minor.yy202); if( yymsp[0].minor.yy0.n>0 ) sqlite3ExprListSetName(pParse, yymsp[-4].minor.yy242, &yymsp[0].minor.yy0, 1); sqlite3ExprListSetSpan(pParse,yymsp[-4].minor.yy242,yymsp[-3].minor.yy436,yymsp[-1].minor.yy436); } break; case 99: /* selcollist ::= sclp scanpt STAR */ { Expr *p = sqlite3Expr(pParse->db, TK_ASTERISK, 0); yymsp[-2].minor.yy242 = sqlite3ExprListAppend(pParse, yymsp[-2].minor.yy242, p); } break; case 100: /* selcollist ::= sclp scanpt nm DOT STAR */ { Expr *pRight = sqlite3PExpr(pParse, TK_ASTERISK, 0, 0); Expr *pLeft = sqlite3ExprAlloc(pParse->db, TK_ID, &yymsp[-2].minor.yy0, 1); Expr *pDot = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight); yymsp[-4].minor.yy242 = sqlite3ExprListAppend(pParse,yymsp[-4].minor.yy242, pDot); } break; case 101: /* as ::= AS nm */ case 112: /* dbnm ::= DOT nm */ yytestcase(yyruleno==112); case 244: /* plus_num ::= PLUS INTEGER|FLOAT */ yytestcase(yyruleno==244); case 245: /* minus_num ::= MINUS INTEGER|FLOAT */ yytestcase(yyruleno==245); {yymsp[-1].minor.yy0 = yymsp[0].minor.yy0;} break; case 103: /* from ::= */ case 106: /* stl_prefix ::= */ yytestcase(yyruleno==106); {yymsp[1].minor.yy47 = 0;} break; case 104: /* from ::= FROM seltablist */ { yymsp[-1].minor.yy47 = yymsp[0].minor.yy47; sqlite3SrcListShiftJoinType(yymsp[-1].minor.yy47); } break; case 105: /* stl_prefix ::= seltablist joinop */ { if( ALWAYS(yymsp[-1].minor.yy47 && yymsp[-1].minor.yy47->nSrc>0) ) yymsp[-1].minor.yy47->a[yymsp[-1].minor.yy47->nSrc-1].fg.jointype = (u8)yymsp[0].minor.yy192; } break; case 107: /* seltablist ::= stl_prefix nm dbnm as indexed_opt on_opt using_opt */ { yymsp[-6].minor.yy47 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy47,&yymsp[-5].minor.yy0,&yymsp[-4].minor.yy0,&yymsp[-3].minor.yy0,0,yymsp[-1].minor.yy202,yymsp[0].minor.yy600); sqlite3SrcListIndexedBy(pParse, yymsp[-6].minor.yy47, &yymsp[-2].minor.yy0); } break; case 108: /* seltablist ::= stl_prefix nm dbnm LP exprlist RP as on_opt using_opt */ { yymsp[-8].minor.yy47 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-8].minor.yy47,&yymsp[-7].minor.yy0,&yymsp[-6].minor.yy0,&yymsp[-2].minor.yy0,0,yymsp[-1].minor.yy202,yymsp[0].minor.yy600); sqlite3SrcListFuncArgs(pParse, yymsp[-8].minor.yy47, yymsp[-4].minor.yy242); } break; case 109: /* seltablist ::= stl_prefix LP select RP as on_opt using_opt */ { yymsp[-6].minor.yy47 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy47,0,0,&yymsp[-2].minor.yy0,yymsp[-4].minor.yy539,yymsp[-1].minor.yy202,yymsp[0].minor.yy600); } break; case 110: /* seltablist ::= stl_prefix LP seltablist RP as on_opt using_opt */ { if( yymsp[-6].minor.yy47==0 && yymsp[-2].minor.yy0.n==0 && yymsp[-1].minor.yy202==0 && yymsp[0].minor.yy600==0 ){ yymsp[-6].minor.yy47 = yymsp[-4].minor.yy47; }else if( yymsp[-4].minor.yy47->nSrc==1 ){ yymsp[-6].minor.yy47 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy47,0,0,&yymsp[-2].minor.yy0,0,yymsp[-1].minor.yy202,yymsp[0].minor.yy600); if( yymsp[-6].minor.yy47 ){ struct SrcList_item *pNew = &yymsp[-6].minor.yy47->a[yymsp[-6].minor.yy47->nSrc-1]; struct SrcList_item *pOld = yymsp[-4].minor.yy47->a; pNew->zName = pOld->zName; pNew->zDatabase = pOld->zDatabase; pNew->pSelect = pOld->pSelect; if( pOld->fg.isTabFunc ){ pNew->u1.pFuncArg = pOld->u1.pFuncArg; pOld->u1.pFuncArg = 0; pOld->fg.isTabFunc = 0; pNew->fg.isTabFunc = 1; } pOld->zName = pOld->zDatabase = 0; pOld->pSelect = 0; } sqlite3SrcListDelete(pParse->db, yymsp[-4].minor.yy47); }else{ Select *pSubquery; sqlite3SrcListShiftJoinType(yymsp[-4].minor.yy47); pSubquery = sqlite3SelectNew(pParse,0,yymsp[-4].minor.yy47,0,0,0,0,SF_NestedFrom,0); yymsp[-6].minor.yy47 = sqlite3SrcListAppendFromTerm(pParse,yymsp[-6].minor.yy47,0,0,&yymsp[-2].minor.yy0,pSubquery,yymsp[-1].minor.yy202,yymsp[0].minor.yy600); } } break; case 111: /* dbnm ::= */ case 125: /* indexed_opt ::= */ yytestcase(yyruleno==125); {yymsp[1].minor.yy0.z=0; yymsp[1].minor.yy0.n=0;} break; case 113: /* fullname ::= nm */ { yylhsminor.yy47 = sqlite3SrcListAppend(pParse,0,&yymsp[0].minor.yy0,0); if( IN_RENAME_OBJECT && yylhsminor.yy47 ) sqlite3RenameTokenMap(pParse, yylhsminor.yy47->a[0].zName, &yymsp[0].minor.yy0); } yymsp[0].minor.yy47 = yylhsminor.yy47; break; case 114: /* fullname ::= nm DOT nm */ { yylhsminor.yy47 = sqlite3SrcListAppend(pParse,0,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0); if( IN_RENAME_OBJECT && yylhsminor.yy47 ) sqlite3RenameTokenMap(pParse, yylhsminor.yy47->a[0].zName, &yymsp[0].minor.yy0); } yymsp[-2].minor.yy47 = yylhsminor.yy47; break; case 115: /* xfullname ::= nm */ {yymsp[0].minor.yy47 = sqlite3SrcListAppend(pParse,0,&yymsp[0].minor.yy0,0); /*A-overwrites-X*/} break; case 116: /* xfullname ::= nm DOT nm */ {yymsp[-2].minor.yy47 = sqlite3SrcListAppend(pParse,0,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0); /*A-overwrites-X*/} break; case 117: /* xfullname ::= nm DOT nm AS nm */ { yymsp[-4].minor.yy47 = sqlite3SrcListAppend(pParse,0,&yymsp[-4].minor.yy0,&yymsp[-2].minor.yy0); /*A-overwrites-X*/ if( yymsp[-4].minor.yy47 ) yymsp[-4].minor.yy47->a[0].zAlias = sqlite3NameFromToken(pParse->db, &yymsp[0].minor.yy0); } break; case 118: /* xfullname ::= nm AS nm */ { yymsp[-2].minor.yy47 = sqlite3SrcListAppend(pParse,0,&yymsp[-2].minor.yy0,0); /*A-overwrites-X*/ if( yymsp[-2].minor.yy47 ) yymsp[-2].minor.yy47->a[0].zAlias = sqlite3NameFromToken(pParse->db, &yymsp[0].minor.yy0); } break; case 119: /* joinop ::= COMMA|JOIN */ { yymsp[0].minor.yy192 = JT_INNER; } break; case 120: /* joinop ::= JOIN_KW JOIN */ {yymsp[-1].minor.yy192 = sqlite3JoinType(pParse,&yymsp[-1].minor.yy0,0,0); /*X-overwrites-A*/} break; case 121: /* joinop ::= JOIN_KW nm JOIN */ {yymsp[-2].minor.yy192 = sqlite3JoinType(pParse,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0,0); /*X-overwrites-A*/} break; case 122: /* joinop ::= JOIN_KW nm nm JOIN */ {yymsp[-3].minor.yy192 = sqlite3JoinType(pParse,&yymsp[-3].minor.yy0,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0);/*X-overwrites-A*/} break; case 123: /* on_opt ::= ON expr */ case 143: /* having_opt ::= HAVING expr */ yytestcase(yyruleno==143); case 150: /* where_opt ::= WHERE expr */ yytestcase(yyruleno==150); case 216: /* case_else ::= ELSE expr */ yytestcase(yyruleno==216); case 237: /* vinto ::= INTO expr */ yytestcase(yyruleno==237); {yymsp[-1].minor.yy202 = yymsp[0].minor.yy202;} break; case 124: /* on_opt ::= */ case 142: /* having_opt ::= */ yytestcase(yyruleno==142); case 144: /* limit_opt ::= */ yytestcase(yyruleno==144); case 149: /* where_opt ::= */ yytestcase(yyruleno==149); case 217: /* case_else ::= */ yytestcase(yyruleno==217); case 219: /* case_operand ::= */ yytestcase(yyruleno==219); case 238: /* vinto ::= */ yytestcase(yyruleno==238); {yymsp[1].minor.yy202 = 0;} break; case 126: /* indexed_opt ::= INDEXED BY nm */ {yymsp[-2].minor.yy0 = yymsp[0].minor.yy0;} break; case 127: /* indexed_opt ::= NOT INDEXED */ {yymsp[-1].minor.yy0.z=0; yymsp[-1].minor.yy0.n=1;} break; case 128: /* using_opt ::= USING LP idlist RP */ {yymsp[-3].minor.yy600 = yymsp[-1].minor.yy600;} break; case 129: /* using_opt ::= */ case 164: /* idlist_opt ::= */ yytestcase(yyruleno==164); {yymsp[1].minor.yy600 = 0;} break; case 131: /* orderby_opt ::= ORDER BY sortlist */ case 141: /* groupby_opt ::= GROUP BY nexprlist */ yytestcase(yyruleno==141); {yymsp[-2].minor.yy242 = yymsp[0].minor.yy242;} break; case 132: /* sortlist ::= sortlist COMMA expr sortorder nulls */ { yymsp[-4].minor.yy242 = sqlite3ExprListAppend(pParse,yymsp[-4].minor.yy242,yymsp[-2].minor.yy202); sqlite3ExprListSetSortOrder(yymsp[-4].minor.yy242,yymsp[-1].minor.yy192,yymsp[0].minor.yy192); } break; case 133: /* sortlist ::= expr sortorder nulls */ { yymsp[-2].minor.yy242 = sqlite3ExprListAppend(pParse,0,yymsp[-2].minor.yy202); /*A-overwrites-Y*/ sqlite3ExprListSetSortOrder(yymsp[-2].minor.yy242,yymsp[-1].minor.yy192,yymsp[0].minor.yy192); } break; case 134: /* sortorder ::= ASC */ {yymsp[0].minor.yy192 = SQLITE_SO_ASC;} break; case 135: /* sortorder ::= DESC */ {yymsp[0].minor.yy192 = SQLITE_SO_DESC;} break; case 136: /* sortorder ::= */ case 139: /* nulls ::= */ yytestcase(yyruleno==139); {yymsp[1].minor.yy192 = SQLITE_SO_UNDEFINED;} break; case 137: /* nulls ::= NULLS FIRST */ {yymsp[-1].minor.yy192 = SQLITE_SO_ASC;} break; case 138: /* nulls ::= NULLS LAST */ {yymsp[-1].minor.yy192 = SQLITE_SO_DESC;} break; case 145: /* limit_opt ::= LIMIT expr */ {yymsp[-1].minor.yy202 = sqlite3PExpr(pParse,TK_LIMIT,yymsp[0].minor.yy202,0);} break; case 146: /* limit_opt ::= LIMIT expr OFFSET expr */ {yymsp[-3].minor.yy202 = sqlite3PExpr(pParse,TK_LIMIT,yymsp[-2].minor.yy202,yymsp[0].minor.yy202);} break; case 147: /* limit_opt ::= LIMIT expr COMMA expr */ {yymsp[-3].minor.yy202 = sqlite3PExpr(pParse,TK_LIMIT,yymsp[0].minor.yy202,yymsp[-2].minor.yy202);} break; case 148: /* cmd ::= with DELETE FROM xfullname indexed_opt where_opt */ { sqlite3SrcListIndexedBy(pParse, yymsp[-2].minor.yy47, &yymsp[-1].minor.yy0); sqlite3DeleteFrom(pParse,yymsp[-2].minor.yy47,yymsp[0].minor.yy202,0,0); } break; case 151: /* cmd ::= with UPDATE orconf xfullname indexed_opt SET setlist from where_opt */ { sqlite3SrcListIndexedBy(pParse, yymsp[-5].minor.yy47, &yymsp[-4].minor.yy0); sqlite3ExprListCheckLength(pParse,yymsp[-2].minor.yy242,"set list"); yymsp[-5].minor.yy47 = sqlite3SrcListAppendList(pParse, yymsp[-5].minor.yy47, yymsp[-1].minor.yy47); sqlite3Update(pParse,yymsp[-5].minor.yy47,yymsp[-2].minor.yy242,yymsp[0].minor.yy202,yymsp[-6].minor.yy192,0,0,0); } break; case 152: /* setlist ::= setlist COMMA nm EQ expr */ { yymsp[-4].minor.yy242 = sqlite3ExprListAppend(pParse, yymsp[-4].minor.yy242, yymsp[0].minor.yy202); sqlite3ExprListSetName(pParse, yymsp[-4].minor.yy242, &yymsp[-2].minor.yy0, 1); } break; case 153: /* setlist ::= setlist COMMA LP idlist RP EQ expr */ { yymsp[-6].minor.yy242 = sqlite3ExprListAppendVector(pParse, yymsp[-6].minor.yy242, yymsp[-3].minor.yy600, yymsp[0].minor.yy202); } break; case 154: /* setlist ::= nm EQ expr */ { yylhsminor.yy242 = sqlite3ExprListAppend(pParse, 0, yymsp[0].minor.yy202); sqlite3ExprListSetName(pParse, yylhsminor.yy242, &yymsp[-2].minor.yy0, 1); } yymsp[-2].minor.yy242 = yylhsminor.yy242; break; case 155: /* setlist ::= LP idlist RP EQ expr */ { yymsp[-4].minor.yy242 = sqlite3ExprListAppendVector(pParse, 0, yymsp[-3].minor.yy600, yymsp[0].minor.yy202); } break; case 156: /* cmd ::= with insert_cmd INTO xfullname idlist_opt select upsert */ { sqlite3Insert(pParse, yymsp[-3].minor.yy47, yymsp[-1].minor.yy539, yymsp[-2].minor.yy600, yymsp[-5].minor.yy192, yymsp[0].minor.yy318); } break; case 157: /* cmd ::= with insert_cmd INTO xfullname idlist_opt DEFAULT VALUES */ { sqlite3Insert(pParse, yymsp[-3].minor.yy47, 0, yymsp[-2].minor.yy600, yymsp[-5].minor.yy192, 0); } break; case 158: /* upsert ::= */ { yymsp[1].minor.yy318 = 0; } break; case 159: /* upsert ::= ON CONFLICT LP sortlist RP where_opt DO UPDATE SET setlist where_opt */ { yymsp[-10].minor.yy318 = sqlite3UpsertNew(pParse->db,yymsp[-7].minor.yy242,yymsp[-5].minor.yy202,yymsp[-1].minor.yy242,yymsp[0].minor.yy202);} break; case 160: /* upsert ::= ON CONFLICT LP sortlist RP where_opt DO NOTHING */ { yymsp[-7].minor.yy318 = sqlite3UpsertNew(pParse->db,yymsp[-4].minor.yy242,yymsp[-2].minor.yy202,0,0); } break; case 161: /* upsert ::= ON CONFLICT DO NOTHING */ { yymsp[-3].minor.yy318 = sqlite3UpsertNew(pParse->db,0,0,0,0); } break; case 165: /* idlist_opt ::= LP idlist RP */ {yymsp[-2].minor.yy600 = yymsp[-1].minor.yy600;} break; case 166: /* idlist ::= idlist COMMA nm */ {yymsp[-2].minor.yy600 = sqlite3IdListAppend(pParse,yymsp[-2].minor.yy600,&yymsp[0].minor.yy0);} break; case 167: /* idlist ::= nm */ {yymsp[0].minor.yy600 = sqlite3IdListAppend(pParse,0,&yymsp[0].minor.yy0); /*A-overwrites-Y*/} break; case 168: /* expr ::= LP expr RP */ {yymsp[-2].minor.yy202 = yymsp[-1].minor.yy202;} break; case 169: /* expr ::= ID|INDEXED */ case 170: /* expr ::= JOIN_KW */ yytestcase(yyruleno==170); {yymsp[0].minor.yy202=tokenExpr(pParse,TK_ID,yymsp[0].minor.yy0); /*A-overwrites-X*/} break; case 171: /* expr ::= nm DOT nm */ { Expr *temp1 = sqlite3ExprAlloc(pParse->db, TK_ID, &yymsp[-2].minor.yy0, 1); Expr *temp2 = sqlite3ExprAlloc(pParse->db, TK_ID, &yymsp[0].minor.yy0, 1); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenMap(pParse, (void*)temp2, &yymsp[0].minor.yy0); sqlite3RenameTokenMap(pParse, (void*)temp1, &yymsp[-2].minor.yy0); } yylhsminor.yy202 = sqlite3PExpr(pParse, TK_DOT, temp1, temp2); } yymsp[-2].minor.yy202 = yylhsminor.yy202; break; case 172: /* expr ::= nm DOT nm DOT nm */ { Expr *temp1 = sqlite3ExprAlloc(pParse->db, TK_ID, &yymsp[-4].minor.yy0, 1); Expr *temp2 = sqlite3ExprAlloc(pParse->db, TK_ID, &yymsp[-2].minor.yy0, 1); Expr *temp3 = sqlite3ExprAlloc(pParse->db, TK_ID, &yymsp[0].minor.yy0, 1); Expr *temp4 = sqlite3PExpr(pParse, TK_DOT, temp2, temp3); if( IN_RENAME_OBJECT ){ sqlite3RenameTokenMap(pParse, (void*)temp3, &yymsp[0].minor.yy0); sqlite3RenameTokenMap(pParse, (void*)temp2, &yymsp[-2].minor.yy0); } yylhsminor.yy202 = sqlite3PExpr(pParse, TK_DOT, temp1, temp4); } yymsp[-4].minor.yy202 = yylhsminor.yy202; break; case 173: /* term ::= NULL|FLOAT|BLOB */ case 174: /* term ::= STRING */ yytestcase(yyruleno==174); {yymsp[0].minor.yy202=tokenExpr(pParse,yymsp[0].major,yymsp[0].minor.yy0); /*A-overwrites-X*/} break; case 175: /* term ::= INTEGER */ { yylhsminor.yy202 = sqlite3ExprAlloc(pParse->db, TK_INTEGER, &yymsp[0].minor.yy0, 1); } yymsp[0].minor.yy202 = yylhsminor.yy202; break; case 176: /* expr ::= VARIABLE */ { if( !(yymsp[0].minor.yy0.z[0]=='#' && sqlite3Isdigit(yymsp[0].minor.yy0.z[1])) ){ u32 n = yymsp[0].minor.yy0.n; yymsp[0].minor.yy202 = tokenExpr(pParse, TK_VARIABLE, yymsp[0].minor.yy0); sqlite3ExprAssignVarNumber(pParse, yymsp[0].minor.yy202, n); }else{ /* When doing a nested parse, one can include terms in an expression ** that look like this: #1 #2 ... These terms refer to registers ** in the virtual machine. #N is the N-th register. */ Token t = yymsp[0].minor.yy0; /*A-overwrites-X*/ assert( t.n>=2 ); if( pParse->nested==0 ){ sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &t); yymsp[0].minor.yy202 = 0; }else{ yymsp[0].minor.yy202 = sqlite3PExpr(pParse, TK_REGISTER, 0, 0); if( yymsp[0].minor.yy202 ) sqlite3GetInt32(&t.z[1], &yymsp[0].minor.yy202->iTable); } } } break; case 177: /* expr ::= expr COLLATE ID|STRING */ { yymsp[-2].minor.yy202 = sqlite3ExprAddCollateToken(pParse, yymsp[-2].minor.yy202, &yymsp[0].minor.yy0, 1); } break; case 178: /* expr ::= CAST LP expr AS typetoken RP */ { yymsp[-5].minor.yy202 = sqlite3ExprAlloc(pParse->db, TK_CAST, &yymsp[-1].minor.yy0, 1); sqlite3ExprAttachSubtrees(pParse->db, yymsp[-5].minor.yy202, yymsp[-3].minor.yy202, 0); } break; case 179: /* expr ::= ID|INDEXED LP distinct exprlist RP */ { yylhsminor.yy202 = sqlite3ExprFunction(pParse, yymsp[-1].minor.yy242, &yymsp[-4].minor.yy0, yymsp[-2].minor.yy192); } yymsp[-4].minor.yy202 = yylhsminor.yy202; break; case 180: /* expr ::= ID|INDEXED LP STAR RP */ { yylhsminor.yy202 = sqlite3ExprFunction(pParse, 0, &yymsp[-3].minor.yy0, 0); } yymsp[-3].minor.yy202 = yylhsminor.yy202; break; case 181: /* expr ::= ID|INDEXED LP distinct exprlist RP filter_over */ { yylhsminor.yy202 = sqlite3ExprFunction(pParse, yymsp[-2].minor.yy242, &yymsp[-5].minor.yy0, yymsp[-3].minor.yy192); sqlite3WindowAttach(pParse, yylhsminor.yy202, yymsp[0].minor.yy303); } yymsp[-5].minor.yy202 = yylhsminor.yy202; break; case 182: /* expr ::= ID|INDEXED LP STAR RP filter_over */ { yylhsminor.yy202 = sqlite3ExprFunction(pParse, 0, &yymsp[-4].minor.yy0, 0); sqlite3WindowAttach(pParse, yylhsminor.yy202, yymsp[0].minor.yy303); } yymsp[-4].minor.yy202 = yylhsminor.yy202; break; case 183: /* term ::= CTIME_KW */ { yylhsminor.yy202 = sqlite3ExprFunction(pParse, 0, &yymsp[0].minor.yy0, 0); } yymsp[0].minor.yy202 = yylhsminor.yy202; break; case 184: /* expr ::= LP nexprlist COMMA expr RP */ { ExprList *pList = sqlite3ExprListAppend(pParse, yymsp[-3].minor.yy242, yymsp[-1].minor.yy202); yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_VECTOR, 0, 0); if( yymsp[-4].minor.yy202 ){ yymsp[-4].minor.yy202->x.pList = pList; if( ALWAYS(pList->nExpr) ){ yymsp[-4].minor.yy202->flags |= pList->a[0].pExpr->flags & EP_Propagate; } }else{ sqlite3ExprListDelete(pParse->db, pList); } } break; case 185: /* expr ::= expr AND expr */ {yymsp[-2].minor.yy202=sqlite3ExprAnd(pParse,yymsp[-2].minor.yy202,yymsp[0].minor.yy202);} break; case 186: /* expr ::= expr OR expr */ case 187: /* expr ::= expr LT|GT|GE|LE expr */ yytestcase(yyruleno==187); case 188: /* expr ::= expr EQ|NE expr */ yytestcase(yyruleno==188); case 189: /* expr ::= expr BITAND|BITOR|LSHIFT|RSHIFT expr */ yytestcase(yyruleno==189); case 190: /* expr ::= expr PLUS|MINUS expr */ yytestcase(yyruleno==190); case 191: /* expr ::= expr STAR|SLASH|REM expr */ yytestcase(yyruleno==191); case 192: /* expr ::= expr CONCAT expr */ yytestcase(yyruleno==192); {yymsp[-2].minor.yy202=sqlite3PExpr(pParse,yymsp[-1].major,yymsp[-2].minor.yy202,yymsp[0].minor.yy202);} break; case 193: /* likeop ::= NOT LIKE_KW|MATCH */ {yymsp[-1].minor.yy0=yymsp[0].minor.yy0; yymsp[-1].minor.yy0.n|=0x80000000; /*yymsp[-1].minor.yy0-overwrite-yymsp[0].minor.yy0*/} break; case 194: /* expr ::= expr likeop expr */ { ExprList *pList; int bNot = yymsp[-1].minor.yy0.n & 0x80000000; yymsp[-1].minor.yy0.n &= 0x7fffffff; pList = sqlite3ExprListAppend(pParse,0, yymsp[0].minor.yy202); pList = sqlite3ExprListAppend(pParse,pList, yymsp[-2].minor.yy202); yymsp[-2].minor.yy202 = sqlite3ExprFunction(pParse, pList, &yymsp[-1].minor.yy0, 0); if( bNot ) yymsp[-2].minor.yy202 = sqlite3PExpr(pParse, TK_NOT, yymsp[-2].minor.yy202, 0); if( yymsp[-2].minor.yy202 ) yymsp[-2].minor.yy202->flags |= EP_InfixFunc; } break; case 195: /* expr ::= expr likeop expr ESCAPE expr */ { ExprList *pList; int bNot = yymsp[-3].minor.yy0.n & 0x80000000; yymsp[-3].minor.yy0.n &= 0x7fffffff; pList = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy202); pList = sqlite3ExprListAppend(pParse,pList, yymsp[-4].minor.yy202); pList = sqlite3ExprListAppend(pParse,pList, yymsp[0].minor.yy202); yymsp[-4].minor.yy202 = sqlite3ExprFunction(pParse, pList, &yymsp[-3].minor.yy0, 0); if( bNot ) yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy202, 0); if( yymsp[-4].minor.yy202 ) yymsp[-4].minor.yy202->flags |= EP_InfixFunc; } break; case 196: /* expr ::= expr ISNULL|NOTNULL */ {yymsp[-1].minor.yy202 = sqlite3PExpr(pParse,yymsp[0].major,yymsp[-1].minor.yy202,0);} break; case 197: /* expr ::= expr NOT NULL */ {yymsp[-2].minor.yy202 = sqlite3PExpr(pParse,TK_NOTNULL,yymsp[-2].minor.yy202,0);} break; case 198: /* expr ::= expr IS expr */ { yymsp[-2].minor.yy202 = sqlite3PExpr(pParse,TK_IS,yymsp[-2].minor.yy202,yymsp[0].minor.yy202); binaryToUnaryIfNull(pParse, yymsp[0].minor.yy202, yymsp[-2].minor.yy202, TK_ISNULL); } break; case 199: /* expr ::= expr IS NOT expr */ { yymsp[-3].minor.yy202 = sqlite3PExpr(pParse,TK_ISNOT,yymsp[-3].minor.yy202,yymsp[0].minor.yy202); binaryToUnaryIfNull(pParse, yymsp[0].minor.yy202, yymsp[-3].minor.yy202, TK_NOTNULL); } break; case 200: /* expr ::= NOT expr */ case 201: /* expr ::= BITNOT expr */ yytestcase(yyruleno==201); {yymsp[-1].minor.yy202 = sqlite3PExpr(pParse, yymsp[-1].major, yymsp[0].minor.yy202, 0);/*A-overwrites-B*/} break; case 202: /* expr ::= PLUS|MINUS expr */ { yymsp[-1].minor.yy202 = sqlite3PExpr(pParse, yymsp[-1].major==TK_PLUS ? TK_UPLUS : TK_UMINUS, yymsp[0].minor.yy202, 0); /*A-overwrites-B*/ } break; case 203: /* between_op ::= BETWEEN */ case 206: /* in_op ::= IN */ yytestcase(yyruleno==206); {yymsp[0].minor.yy192 = 0;} break; case 205: /* expr ::= expr between_op expr AND expr */ { ExprList *pList = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy202); pList = sqlite3ExprListAppend(pParse,pList, yymsp[0].minor.yy202); yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_BETWEEN, yymsp[-4].minor.yy202, 0); if( yymsp[-4].minor.yy202 ){ yymsp[-4].minor.yy202->x.pList = pList; }else{ sqlite3ExprListDelete(pParse->db, pList); } if( yymsp[-3].minor.yy192 ) yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy202, 0); } break; case 208: /* expr ::= expr in_op LP exprlist RP */ { if( yymsp[-1].minor.yy242==0 ){ /* Expressions of the form ** ** expr1 IN () ** expr1 NOT IN () ** ** simplify to constants 0 (false) and 1 (true), respectively, ** regardless of the value of expr1. */ sqlite3ExprUnmapAndDelete(pParse, yymsp[-4].minor.yy202); yymsp[-4].minor.yy202 = sqlite3Expr(pParse->db, TK_INTEGER, yymsp[-3].minor.yy192 ? "1" : "0"); }else if( yymsp[-1].minor.yy242->nExpr==1 && sqlite3ExprIsConstant(yymsp[-1].minor.yy242->a[0].pExpr) ){ Expr *pRHS = yymsp[-1].minor.yy242->a[0].pExpr; yymsp[-1].minor.yy242->a[0].pExpr = 0; sqlite3ExprListDelete(pParse->db, yymsp[-1].minor.yy242); pRHS = sqlite3PExpr(pParse, TK_UPLUS, pRHS, 0); yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_EQ, yymsp[-4].minor.yy202, pRHS); if( yymsp[-3].minor.yy192 ) yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy202, 0); }else{ yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_IN, yymsp[-4].minor.yy202, 0); if( yymsp[-4].minor.yy202 ){ yymsp[-4].minor.yy202->x.pList = yymsp[-1].minor.yy242; sqlite3ExprSetHeightAndFlags(pParse, yymsp[-4].minor.yy202); }else{ sqlite3ExprListDelete(pParse->db, yymsp[-1].minor.yy242); } if( yymsp[-3].minor.yy192 ) yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy202, 0); } } break; case 209: /* expr ::= LP select RP */ { yymsp[-2].minor.yy202 = sqlite3PExpr(pParse, TK_SELECT, 0, 0); sqlite3PExprAddSelect(pParse, yymsp[-2].minor.yy202, yymsp[-1].minor.yy539); } break; case 210: /* expr ::= expr in_op LP select RP */ { yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_IN, yymsp[-4].minor.yy202, 0); sqlite3PExprAddSelect(pParse, yymsp[-4].minor.yy202, yymsp[-1].minor.yy539); if( yymsp[-3].minor.yy192 ) yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy202, 0); } break; case 211: /* expr ::= expr in_op nm dbnm paren_exprlist */ { SrcList *pSrc = sqlite3SrcListAppend(pParse, 0,&yymsp[-2].minor.yy0,&yymsp[-1].minor.yy0); Select *pSelect = sqlite3SelectNew(pParse, 0,pSrc,0,0,0,0,0,0); if( yymsp[0].minor.yy242 ) sqlite3SrcListFuncArgs(pParse, pSelect ? pSrc : 0, yymsp[0].minor.yy242); yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_IN, yymsp[-4].minor.yy202, 0); sqlite3PExprAddSelect(pParse, yymsp[-4].minor.yy202, pSelect); if( yymsp[-3].minor.yy192 ) yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_NOT, yymsp[-4].minor.yy202, 0); } break; case 212: /* expr ::= EXISTS LP select RP */ { Expr *p; p = yymsp[-3].minor.yy202 = sqlite3PExpr(pParse, TK_EXISTS, 0, 0); sqlite3PExprAddSelect(pParse, p, yymsp[-1].minor.yy539); } break; case 213: /* expr ::= CASE case_operand case_exprlist case_else END */ { yymsp[-4].minor.yy202 = sqlite3PExpr(pParse, TK_CASE, yymsp[-3].minor.yy202, 0); if( yymsp[-4].minor.yy202 ){ yymsp[-4].minor.yy202->x.pList = yymsp[-1].minor.yy202 ? sqlite3ExprListAppend(pParse,yymsp[-2].minor.yy242,yymsp[-1].minor.yy202) : yymsp[-2].minor.yy242; sqlite3ExprSetHeightAndFlags(pParse, yymsp[-4].minor.yy202); }else{ sqlite3ExprListDelete(pParse->db, yymsp[-2].minor.yy242); sqlite3ExprDelete(pParse->db, yymsp[-1].minor.yy202); } } break; case 214: /* case_exprlist ::= case_exprlist WHEN expr THEN expr */ { yymsp[-4].minor.yy242 = sqlite3ExprListAppend(pParse,yymsp[-4].minor.yy242, yymsp[-2].minor.yy202); yymsp[-4].minor.yy242 = sqlite3ExprListAppend(pParse,yymsp[-4].minor.yy242, yymsp[0].minor.yy202); } break; case 215: /* case_exprlist ::= WHEN expr THEN expr */ { yymsp[-3].minor.yy242 = sqlite3ExprListAppend(pParse,0, yymsp[-2].minor.yy202); yymsp[-3].minor.yy242 = sqlite3ExprListAppend(pParse,yymsp[-3].minor.yy242, yymsp[0].minor.yy202); } break; case 218: /* case_operand ::= expr */ {yymsp[0].minor.yy202 = yymsp[0].minor.yy202; /*A-overwrites-X*/} break; case 221: /* nexprlist ::= nexprlist COMMA expr */ {yymsp[-2].minor.yy242 = sqlite3ExprListAppend(pParse,yymsp[-2].minor.yy242,yymsp[0].minor.yy202);} break; case 222: /* nexprlist ::= expr */ {yymsp[0].minor.yy242 = sqlite3ExprListAppend(pParse,0,yymsp[0].minor.yy202); /*A-overwrites-Y*/} break; case 224: /* paren_exprlist ::= LP exprlist RP */ case 229: /* eidlist_opt ::= LP eidlist RP */ yytestcase(yyruleno==229); {yymsp[-2].minor.yy242 = yymsp[-1].minor.yy242;} break; case 225: /* cmd ::= createkw uniqueflag INDEX ifnotexists nm dbnm ON nm LP sortlist RP where_opt */ { sqlite3CreateIndex(pParse, &yymsp[-7].minor.yy0, &yymsp[-6].minor.yy0, sqlite3SrcListAppend(pParse,0,&yymsp[-4].minor.yy0,0), yymsp[-2].minor.yy242, yymsp[-10].minor.yy192, &yymsp[-11].minor.yy0, yymsp[0].minor.yy202, SQLITE_SO_ASC, yymsp[-8].minor.yy192, SQLITE_IDXTYPE_APPDEF); if( IN_RENAME_OBJECT && pParse->pNewIndex ){ sqlite3RenameTokenMap(pParse, pParse->pNewIndex->zName, &yymsp[-4].minor.yy0); } } break; case 226: /* uniqueflag ::= UNIQUE */ case 268: /* raisetype ::= ABORT */ yytestcase(yyruleno==268); {yymsp[0].minor.yy192 = OE_Abort;} break; case 227: /* uniqueflag ::= */ {yymsp[1].minor.yy192 = OE_None;} break; case 230: /* eidlist ::= eidlist COMMA nm collate sortorder */ { yymsp[-4].minor.yy242 = parserAddExprIdListTerm(pParse, yymsp[-4].minor.yy242, &yymsp[-2].minor.yy0, yymsp[-1].minor.yy192, yymsp[0].minor.yy192); } break; case 231: /* eidlist ::= nm collate sortorder */ { yymsp[-2].minor.yy242 = parserAddExprIdListTerm(pParse, 0, &yymsp[-2].minor.yy0, yymsp[-1].minor.yy192, yymsp[0].minor.yy192); /*A-overwrites-Y*/ } break; case 234: /* cmd ::= DROP INDEX ifexists fullname */ {sqlite3DropIndex(pParse, yymsp[0].minor.yy47, yymsp[-1].minor.yy192);} break; case 235: /* cmd ::= VACUUM vinto */ {sqlite3Vacuum(pParse,0,yymsp[0].minor.yy202);} break; case 236: /* cmd ::= VACUUM nm vinto */ {sqlite3Vacuum(pParse,&yymsp[-1].minor.yy0,yymsp[0].minor.yy202);} break; case 239: /* cmd ::= PRAGMA nm dbnm */ {sqlite3Pragma(pParse,&yymsp[-1].minor.yy0,&yymsp[0].minor.yy0,0,0);} break; case 240: /* cmd ::= PRAGMA nm dbnm EQ nmnum */ {sqlite3Pragma(pParse,&yymsp[-3].minor.yy0,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0,0);} break; case 241: /* cmd ::= PRAGMA nm dbnm LP nmnum RP */ {sqlite3Pragma(pParse,&yymsp[-4].minor.yy0,&yymsp[-3].minor.yy0,&yymsp[-1].minor.yy0,0);} break; case 242: /* cmd ::= PRAGMA nm dbnm EQ minus_num */ {sqlite3Pragma(pParse,&yymsp[-3].minor.yy0,&yymsp[-2].minor.yy0,&yymsp[0].minor.yy0,1);} break; case 243: /* cmd ::= PRAGMA nm dbnm LP minus_num RP */ {sqlite3Pragma(pParse,&yymsp[-4].minor.yy0,&yymsp[-3].minor.yy0,&yymsp[-1].minor.yy0,1);} break; case 246: /* cmd ::= createkw trigger_decl BEGIN trigger_cmd_list END */ { Token all; all.z = yymsp[-3].minor.yy0.z; all.n = (int)(yymsp[0].minor.yy0.z - yymsp[-3].minor.yy0.z) + yymsp[0].minor.yy0.n; sqlite3FinishTrigger(pParse, yymsp[-1].minor.yy447, &all); } break; case 247: /* trigger_decl ::= temp TRIGGER ifnotexists nm dbnm trigger_time trigger_event ON fullname foreach_clause when_clause */ { sqlite3BeginTrigger(pParse, &yymsp[-7].minor.yy0, &yymsp[-6].minor.yy0, yymsp[-5].minor.yy192, yymsp[-4].minor.yy230.a, yymsp[-4].minor.yy230.b, yymsp[-2].minor.yy47, yymsp[0].minor.yy202, yymsp[-10].minor.yy192, yymsp[-8].minor.yy192); yymsp[-10].minor.yy0 = (yymsp[-6].minor.yy0.n==0?yymsp[-7].minor.yy0:yymsp[-6].minor.yy0); /*A-overwrites-T*/ } break; case 248: /* trigger_time ::= BEFORE|AFTER */ { yymsp[0].minor.yy192 = yymsp[0].major; /*A-overwrites-X*/ } break; case 249: /* trigger_time ::= INSTEAD OF */ { yymsp[-1].minor.yy192 = TK_INSTEAD;} break; case 250: /* trigger_time ::= */ { yymsp[1].minor.yy192 = TK_BEFORE; } break; case 251: /* trigger_event ::= DELETE|INSERT */ case 252: /* trigger_event ::= UPDATE */ yytestcase(yyruleno==252); {yymsp[0].minor.yy230.a = yymsp[0].major; /*A-overwrites-X*/ yymsp[0].minor.yy230.b = 0;} break; case 253: /* trigger_event ::= UPDATE OF idlist */ {yymsp[-2].minor.yy230.a = TK_UPDATE; yymsp[-2].minor.yy230.b = yymsp[0].minor.yy600;} break; case 254: /* when_clause ::= */ case 273: /* key_opt ::= */ yytestcase(yyruleno==273); { yymsp[1].minor.yy202 = 0; } break; case 255: /* when_clause ::= WHEN expr */ case 274: /* key_opt ::= KEY expr */ yytestcase(yyruleno==274); { yymsp[-1].minor.yy202 = yymsp[0].minor.yy202; } break; case 256: /* trigger_cmd_list ::= trigger_cmd_list trigger_cmd SEMI */ { assert( yymsp[-2].minor.yy447!=0 ); yymsp[-2].minor.yy447->pLast->pNext = yymsp[-1].minor.yy447; yymsp[-2].minor.yy447->pLast = yymsp[-1].minor.yy447; } break; case 257: /* trigger_cmd_list ::= trigger_cmd SEMI */ { assert( yymsp[-1].minor.yy447!=0 ); yymsp[-1].minor.yy447->pLast = yymsp[-1].minor.yy447; } break; case 258: /* trnm ::= nm DOT nm */ { yymsp[-2].minor.yy0 = yymsp[0].minor.yy0; sqlite3ErrorMsg(pParse, "qualified table names are not allowed on INSERT, UPDATE, and DELETE " "statements within triggers"); } break; case 259: /* tridxby ::= INDEXED BY nm */ { sqlite3ErrorMsg(pParse, "the INDEXED BY clause is not allowed on UPDATE or DELETE statements " "within triggers"); } break; case 260: /* tridxby ::= NOT INDEXED */ { sqlite3ErrorMsg(pParse, "the NOT INDEXED clause is not allowed on UPDATE or DELETE statements " "within triggers"); } break; case 261: /* trigger_cmd ::= UPDATE orconf trnm tridxby SET setlist from where_opt scanpt */ {yylhsminor.yy447 = sqlite3TriggerUpdateStep(pParse, &yymsp[-6].minor.yy0, yymsp[-2].minor.yy47, yymsp[-3].minor.yy242, yymsp[-1].minor.yy202, yymsp[-7].minor.yy192, yymsp[-8].minor.yy0.z, yymsp[0].minor.yy436);} yymsp[-8].minor.yy447 = yylhsminor.yy447; break; case 262: /* trigger_cmd ::= scanpt insert_cmd INTO trnm idlist_opt select upsert scanpt */ { yylhsminor.yy447 = sqlite3TriggerInsertStep(pParse,&yymsp[-4].minor.yy0,yymsp[-3].minor.yy600,yymsp[-2].minor.yy539,yymsp[-6].minor.yy192,yymsp[-1].minor.yy318,yymsp[-7].minor.yy436,yymsp[0].minor.yy436);/*yylhsminor.yy447-overwrites-yymsp[-6].minor.yy192*/ } yymsp[-7].minor.yy447 = yylhsminor.yy447; break; case 263: /* trigger_cmd ::= DELETE FROM trnm tridxby where_opt scanpt */ {yylhsminor.yy447 = sqlite3TriggerDeleteStep(pParse, &yymsp[-3].minor.yy0, yymsp[-1].minor.yy202, yymsp[-5].minor.yy0.z, yymsp[0].minor.yy436);} yymsp[-5].minor.yy447 = yylhsminor.yy447; break; case 264: /* trigger_cmd ::= scanpt select scanpt */ {yylhsminor.yy447 = sqlite3TriggerSelectStep(pParse->db, yymsp[-1].minor.yy539, yymsp[-2].minor.yy436, yymsp[0].minor.yy436); /*yylhsminor.yy447-overwrites-yymsp[-1].minor.yy539*/} yymsp[-2].minor.yy447 = yylhsminor.yy447; break; case 265: /* expr ::= RAISE LP IGNORE RP */ { yymsp[-3].minor.yy202 = sqlite3PExpr(pParse, TK_RAISE, 0, 0); if( yymsp[-3].minor.yy202 ){ yymsp[-3].minor.yy202->affExpr = OE_Ignore; } } break; case 266: /* expr ::= RAISE LP raisetype COMMA nm RP */ { yymsp[-5].minor.yy202 = sqlite3ExprAlloc(pParse->db, TK_RAISE, &yymsp[-1].minor.yy0, 1); if( yymsp[-5].minor.yy202 ) { yymsp[-5].minor.yy202->affExpr = (char)yymsp[-3].minor.yy192; } } break; case 267: /* raisetype ::= ROLLBACK */ {yymsp[0].minor.yy192 = OE_Rollback;} break; case 269: /* raisetype ::= FAIL */ {yymsp[0].minor.yy192 = OE_Fail;} break; case 270: /* cmd ::= DROP TRIGGER ifexists fullname */ { sqlite3DropTrigger(pParse,yymsp[0].minor.yy47,yymsp[-1].minor.yy192); } break; case 271: /* cmd ::= ATTACH database_kw_opt expr AS expr key_opt */ { sqlite3Attach(pParse, yymsp[-3].minor.yy202, yymsp[-1].minor.yy202, yymsp[0].minor.yy202); } break; case 272: /* cmd ::= DETACH database_kw_opt expr */ { sqlite3Detach(pParse, yymsp[0].minor.yy202); } break; case 275: /* cmd ::= REINDEX */ {sqlite3Reindex(pParse, 0, 0);} break; case 276: /* cmd ::= REINDEX nm dbnm */ {sqlite3Reindex(pParse, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0);} break; case 277: /* cmd ::= ANALYZE */ {sqlite3Analyze(pParse, 0, 0);} break; case 278: /* cmd ::= ANALYZE nm dbnm */ {sqlite3Analyze(pParse, &yymsp[-1].minor.yy0, &yymsp[0].minor.yy0);} break; case 279: /* cmd ::= ALTER TABLE fullname RENAME TO nm */ { sqlite3AlterRenameTable(pParse,yymsp[-3].minor.yy47,&yymsp[0].minor.yy0); } break; case 280: /* cmd ::= ALTER TABLE add_column_fullname ADD kwcolumn_opt columnname carglist */ { yymsp[-1].minor.yy0.n = (int)(pParse->sLastToken.z-yymsp[-1].minor.yy0.z) + pParse->sLastToken.n; sqlite3AlterFinishAddColumn(pParse, &yymsp[-1].minor.yy0); } break; case 281: /* add_column_fullname ::= fullname */ { disableLookaside(pParse); sqlite3AlterBeginAddColumn(pParse, yymsp[0].minor.yy47); } break; case 282: /* cmd ::= ALTER TABLE fullname RENAME kwcolumn_opt nm TO nm */ { sqlite3AlterRenameColumn(pParse, yymsp[-5].minor.yy47, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0); } break; case 283: /* cmd ::= create_vtab */ {sqlite3VtabFinishParse(pParse,0);} break; case 284: /* cmd ::= create_vtab LP vtabarglist RP */ {sqlite3VtabFinishParse(pParse,&yymsp[0].minor.yy0);} break; case 285: /* create_vtab ::= createkw VIRTUAL TABLE ifnotexists nm dbnm USING nm */ { sqlite3VtabBeginParse(pParse, &yymsp[-3].minor.yy0, &yymsp[-2].minor.yy0, &yymsp[0].minor.yy0, yymsp[-4].minor.yy192); } break; case 286: /* vtabarg ::= */ {sqlite3VtabArgInit(pParse);} break; case 287: /* vtabargtoken ::= ANY */ case 288: /* vtabargtoken ::= lp anylist RP */ yytestcase(yyruleno==288); case 289: /* lp ::= LP */ yytestcase(yyruleno==289); {sqlite3VtabArgExtend(pParse,&yymsp[0].minor.yy0);} break; case 290: /* with ::= WITH wqlist */ case 291: /* with ::= WITH RECURSIVE wqlist */ yytestcase(yyruleno==291); { sqlite3WithPush(pParse, yymsp[0].minor.yy131, 1); } break; case 292: /* wqlist ::= nm eidlist_opt AS LP select RP */ { yymsp[-5].minor.yy131 = sqlite3WithAdd(pParse, 0, &yymsp[-5].minor.yy0, yymsp[-4].minor.yy242, yymsp[-1].minor.yy539); /*A-overwrites-X*/ } break; case 293: /* wqlist ::= wqlist COMMA nm eidlist_opt AS LP select RP */ { yymsp[-7].minor.yy131 = sqlite3WithAdd(pParse, yymsp[-7].minor.yy131, &yymsp[-5].minor.yy0, yymsp[-4].minor.yy242, yymsp[-1].minor.yy539); } break; case 294: /* windowdefn_list ::= windowdefn */ { yylhsminor.yy303 = yymsp[0].minor.yy303; } yymsp[0].minor.yy303 = yylhsminor.yy303; break; case 295: /* windowdefn_list ::= windowdefn_list COMMA windowdefn */ { assert( yymsp[0].minor.yy303!=0 ); sqlite3WindowChain(pParse, yymsp[0].minor.yy303, yymsp[-2].minor.yy303); yymsp[0].minor.yy303->pNextWin = yymsp[-2].minor.yy303; yylhsminor.yy303 = yymsp[0].minor.yy303; } yymsp[-2].minor.yy303 = yylhsminor.yy303; break; case 296: /* windowdefn ::= nm AS LP window RP */ { if( ALWAYS(yymsp[-1].minor.yy303) ){ yymsp[-1].minor.yy303->zName = sqlite3DbStrNDup(pParse->db, yymsp[-4].minor.yy0.z, yymsp[-4].minor.yy0.n); } yylhsminor.yy303 = yymsp[-1].minor.yy303; } yymsp[-4].minor.yy303 = yylhsminor.yy303; break; case 297: /* window ::= PARTITION BY nexprlist orderby_opt frame_opt */ { yymsp[-4].minor.yy303 = sqlite3WindowAssemble(pParse, yymsp[0].minor.yy303, yymsp[-2].minor.yy242, yymsp[-1].minor.yy242, 0); } break; case 298: /* window ::= nm PARTITION BY nexprlist orderby_opt frame_opt */ { yylhsminor.yy303 = sqlite3WindowAssemble(pParse, yymsp[0].minor.yy303, yymsp[-2].minor.yy242, yymsp[-1].minor.yy242, &yymsp[-5].minor.yy0); } yymsp[-5].minor.yy303 = yylhsminor.yy303; break; case 299: /* window ::= ORDER BY sortlist frame_opt */ { yymsp[-3].minor.yy303 = sqlite3WindowAssemble(pParse, yymsp[0].minor.yy303, 0, yymsp[-1].minor.yy242, 0); } break; case 300: /* window ::= nm ORDER BY sortlist frame_opt */ { yylhsminor.yy303 = sqlite3WindowAssemble(pParse, yymsp[0].minor.yy303, 0, yymsp[-1].minor.yy242, &yymsp[-4].minor.yy0); } yymsp[-4].minor.yy303 = yylhsminor.yy303; break; case 301: /* window ::= frame_opt */ case 320: /* filter_over ::= over_clause */ yytestcase(yyruleno==320); { yylhsminor.yy303 = yymsp[0].minor.yy303; } yymsp[0].minor.yy303 = yylhsminor.yy303; break; case 302: /* window ::= nm frame_opt */ { yylhsminor.yy303 = sqlite3WindowAssemble(pParse, yymsp[0].minor.yy303, 0, 0, &yymsp[-1].minor.yy0); } yymsp[-1].minor.yy303 = yylhsminor.yy303; break; case 303: /* frame_opt ::= */ { yymsp[1].minor.yy303 = sqlite3WindowAlloc(pParse, 0, TK_UNBOUNDED, 0, TK_CURRENT, 0, 0); } break; case 304: /* frame_opt ::= range_or_rows frame_bound_s frame_exclude_opt */ { yylhsminor.yy303 = sqlite3WindowAlloc(pParse, yymsp[-2].minor.yy192, yymsp[-1].minor.yy77.eType, yymsp[-1].minor.yy77.pExpr, TK_CURRENT, 0, yymsp[0].minor.yy58); } yymsp[-2].minor.yy303 = yylhsminor.yy303; break; case 305: /* frame_opt ::= range_or_rows BETWEEN frame_bound_s AND frame_bound_e frame_exclude_opt */ { yylhsminor.yy303 = sqlite3WindowAlloc(pParse, yymsp[-5].minor.yy192, yymsp[-3].minor.yy77.eType, yymsp[-3].minor.yy77.pExpr, yymsp[-1].minor.yy77.eType, yymsp[-1].minor.yy77.pExpr, yymsp[0].minor.yy58); } yymsp[-5].minor.yy303 = yylhsminor.yy303; break; case 307: /* frame_bound_s ::= frame_bound */ case 309: /* frame_bound_e ::= frame_bound */ yytestcase(yyruleno==309); {yylhsminor.yy77 = yymsp[0].minor.yy77;} yymsp[0].minor.yy77 = yylhsminor.yy77; break; case 308: /* frame_bound_s ::= UNBOUNDED PRECEDING */ case 310: /* frame_bound_e ::= UNBOUNDED FOLLOWING */ yytestcase(yyruleno==310); case 312: /* frame_bound ::= CURRENT ROW */ yytestcase(yyruleno==312); {yylhsminor.yy77.eType = yymsp[-1].major; yylhsminor.yy77.pExpr = 0;} yymsp[-1].minor.yy77 = yylhsminor.yy77; break; case 311: /* frame_bound ::= expr PRECEDING|FOLLOWING */ {yylhsminor.yy77.eType = yymsp[0].major; yylhsminor.yy77.pExpr = yymsp[-1].minor.yy202;} yymsp[-1].minor.yy77 = yylhsminor.yy77; break; case 313: /* frame_exclude_opt ::= */ {yymsp[1].minor.yy58 = 0;} break; case 314: /* frame_exclude_opt ::= EXCLUDE frame_exclude */ {yymsp[-1].minor.yy58 = yymsp[0].minor.yy58;} break; case 315: /* frame_exclude ::= NO OTHERS */ case 316: /* frame_exclude ::= CURRENT ROW */ yytestcase(yyruleno==316); {yymsp[-1].minor.yy58 = yymsp[-1].major; /*A-overwrites-X*/} break; case 317: /* frame_exclude ::= GROUP|TIES */ {yymsp[0].minor.yy58 = yymsp[0].major; /*A-overwrites-X*/} break; case 318: /* window_clause ::= WINDOW windowdefn_list */ { yymsp[-1].minor.yy303 = yymsp[0].minor.yy303; } break; case 319: /* filter_over ::= filter_clause over_clause */ { yymsp[0].minor.yy303->pFilter = yymsp[-1].minor.yy202; yylhsminor.yy303 = yymsp[0].minor.yy303; } yymsp[-1].minor.yy303 = yylhsminor.yy303; break; case 321: /* filter_over ::= filter_clause */ { yylhsminor.yy303 = (Window*)sqlite3DbMallocZero(pParse->db, sizeof(Window)); if( yylhsminor.yy303 ){ yylhsminor.yy303->eFrmType = TK_FILTER; yylhsminor.yy303->pFilter = yymsp[0].minor.yy202; }else{ sqlite3ExprDelete(pParse->db, yymsp[0].minor.yy202); } } yymsp[0].minor.yy303 = yylhsminor.yy303; break; case 322: /* over_clause ::= OVER LP window RP */ { yymsp[-3].minor.yy303 = yymsp[-1].minor.yy303; assert( yymsp[-3].minor.yy303!=0 ); } break; case 323: /* over_clause ::= OVER nm */ { yymsp[-1].minor.yy303 = (Window*)sqlite3DbMallocZero(pParse->db, sizeof(Window)); if( yymsp[-1].minor.yy303 ){ yymsp[-1].minor.yy303->zName = sqlite3DbStrNDup(pParse->db, yymsp[0].minor.yy0.z, yymsp[0].minor.yy0.n); } } break; case 324: /* filter_clause ::= FILTER LP WHERE expr RP */ { yymsp[-4].minor.yy202 = yymsp[-1].minor.yy202; } break; default: /* (325) input ::= cmdlist */ yytestcase(yyruleno==325); /* (326) cmdlist ::= cmdlist ecmd */ yytestcase(yyruleno==326); /* (327) cmdlist ::= ecmd (OPTIMIZED OUT) */ assert(yyruleno!=327); /* (328) ecmd ::= SEMI */ yytestcase(yyruleno==328); /* (329) ecmd ::= cmdx SEMI */ yytestcase(yyruleno==329); /* (330) ecmd ::= explain cmdx SEMI (NEVER REDUCES) */ assert(yyruleno!=330); /* (331) trans_opt ::= */ yytestcase(yyruleno==331); /* (332) trans_opt ::= TRANSACTION */ yytestcase(yyruleno==332); /* (333) trans_opt ::= TRANSACTION nm */ yytestcase(yyruleno==333); /* (334) savepoint_opt ::= SAVEPOINT */ yytestcase(yyruleno==334); /* (335) savepoint_opt ::= */ yytestcase(yyruleno==335); /* (336) cmd ::= create_table create_table_args */ yytestcase(yyruleno==336); /* (337) columnlist ::= columnlist COMMA columnname carglist */ yytestcase(yyruleno==337); /* (338) columnlist ::= columnname carglist */ yytestcase(yyruleno==338); /* (339) nm ::= ID|INDEXED */ yytestcase(yyruleno==339); /* (340) nm ::= STRING */ yytestcase(yyruleno==340); /* (341) nm ::= JOIN_KW */ yytestcase(yyruleno==341); /* (342) typetoken ::= typename */ yytestcase(yyruleno==342); /* (343) typename ::= ID|STRING */ yytestcase(yyruleno==343); /* (344) signed ::= plus_num (OPTIMIZED OUT) */ assert(yyruleno!=344); /* (345) signed ::= minus_num (OPTIMIZED OUT) */ assert(yyruleno!=345); /* (346) carglist ::= carglist ccons */ yytestcase(yyruleno==346); /* (347) carglist ::= */ yytestcase(yyruleno==347); /* (348) ccons ::= NULL onconf */ yytestcase(yyruleno==348); /* (349) ccons ::= GENERATED ALWAYS AS generated */ yytestcase(yyruleno==349); /* (350) ccons ::= AS generated */ yytestcase(yyruleno==350); /* (351) conslist_opt ::= COMMA conslist */ yytestcase(yyruleno==351); /* (352) conslist ::= conslist tconscomma tcons */ yytestcase(yyruleno==352); /* (353) conslist ::= tcons (OPTIMIZED OUT) */ assert(yyruleno!=353); /* (354) tconscomma ::= */ yytestcase(yyruleno==354); /* (355) defer_subclause_opt ::= defer_subclause (OPTIMIZED OUT) */ assert(yyruleno!=355); /* (356) resolvetype ::= raisetype (OPTIMIZED OUT) */ assert(yyruleno!=356); /* (357) selectnowith ::= oneselect (OPTIMIZED OUT) */ assert(yyruleno!=357); /* (358) oneselect ::= values */ yytestcase(yyruleno==358); /* (359) sclp ::= selcollist COMMA */ yytestcase(yyruleno==359); /* (360) as ::= ID|STRING */ yytestcase(yyruleno==360); /* (361) expr ::= term (OPTIMIZED OUT) */ assert(yyruleno!=361); /* (362) likeop ::= LIKE_KW|MATCH */ yytestcase(yyruleno==362); /* (363) exprlist ::= nexprlist */ yytestcase(yyruleno==363); /* (364) nmnum ::= plus_num (OPTIMIZED OUT) */ assert(yyruleno!=364); /* (365) nmnum ::= nm (OPTIMIZED OUT) */ assert(yyruleno!=365); /* (366) nmnum ::= ON */ yytestcase(yyruleno==366); /* (367) nmnum ::= DELETE */ yytestcase(yyruleno==367); /* (368) nmnum ::= DEFAULT */ yytestcase(yyruleno==368); /* (369) plus_num ::= INTEGER|FLOAT */ yytestcase(yyruleno==369); /* (370) foreach_clause ::= */ yytestcase(yyruleno==370); /* (371) foreach_clause ::= FOR EACH ROW */ yytestcase(yyruleno==371); /* (372) trnm ::= nm */ yytestcase(yyruleno==372); /* (373) tridxby ::= */ yytestcase(yyruleno==373); /* (374) database_kw_opt ::= DATABASE */ yytestcase(yyruleno==374); /* (375) database_kw_opt ::= */ yytestcase(yyruleno==375); /* (376) kwcolumn_opt ::= */ yytestcase(yyruleno==376); /* (377) kwcolumn_opt ::= COLUMNKW */ yytestcase(yyruleno==377); /* (378) vtabarglist ::= vtabarg */ yytestcase(yyruleno==378); /* (379) vtabarglist ::= vtabarglist COMMA vtabarg */ yytestcase(yyruleno==379); /* (380) vtabarg ::= vtabarg vtabargtoken */ yytestcase(yyruleno==380); /* (381) anylist ::= */ yytestcase(yyruleno==381); /* (382) anylist ::= anylist LP anylist RP */ yytestcase(yyruleno==382); /* (383) anylist ::= anylist ANY */ yytestcase(yyruleno==383); /* (384) with ::= */ yytestcase(yyruleno==384); break; /********** End reduce actions ************************************************/ }; assert( yyrulenoYY_MAX_SHIFT && yyact<=YY_MAX_SHIFTREDUCE) ); /* It is not possible for a REDUCE to be followed by an error */ assert( yyact!=YY_ERROR_ACTION ); yymsp += yysize+1; yypParser->yytos = yymsp; yymsp->stateno = (YYACTIONTYPE)yyact; yymsp->major = (YYCODETYPE)yygoto; yyTraceShift(yypParser, yyact, "... then shift"); return yyact; } /* ** The following code executes when the parse fails */ #ifndef YYNOERRORRECOVERY static void yy_parse_failed( yyParser *yypParser /* The parser */ ){ sqlite3ParserARG_FETCH sqlite3ParserCTX_FETCH #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); } #endif while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); /* Here code is inserted which will be executed whenever the ** parser fails */ /************ Begin %parse_failure code ***************************************/ /************ End %parse_failure code *****************************************/ sqlite3ParserARG_STORE /* Suppress warning about unused %extra_argument variable */ sqlite3ParserCTX_STORE } #endif /* YYNOERRORRECOVERY */ /* ** The following code executes when a syntax error first occurs. */ static void yy_syntax_error( yyParser *yypParser, /* The parser */ int yymajor, /* The major type of the error token */ sqlite3ParserTOKENTYPE yyminor /* The minor type of the error token */ ){ sqlite3ParserARG_FETCH sqlite3ParserCTX_FETCH #define TOKEN yyminor /************ Begin %syntax_error code ****************************************/ UNUSED_PARAMETER(yymajor); /* Silence some compiler warnings */ if( TOKEN.z[0] ){ sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &TOKEN); }else{ sqlite3ErrorMsg(pParse, "incomplete input"); } /************ End %syntax_error code ******************************************/ sqlite3ParserARG_STORE /* Suppress warning about unused %extra_argument variable */ sqlite3ParserCTX_STORE } /* ** The following is executed when the parser accepts */ static void yy_accept( yyParser *yypParser /* The parser */ ){ sqlite3ParserARG_FETCH sqlite3ParserCTX_FETCH #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); } #endif #ifndef YYNOERRORRECOVERY yypParser->yyerrcnt = -1; #endif assert( yypParser->yytos==yypParser->yystack ); /* Here code is inserted which will be executed whenever the ** parser accepts */ /*********** Begin %parse_accept code *****************************************/ /*********** End %parse_accept code *******************************************/ sqlite3ParserARG_STORE /* Suppress warning about unused %extra_argument variable */ sqlite3ParserCTX_STORE } /* The main parser program. ** The first argument is a pointer to a structure obtained from ** "sqlite3ParserAlloc" which describes the current state of the parser. ** The second argument is the major token number. The third is ** the minor token. The fourth optional argument is whatever the ** user wants (and specified in the grammar) and is available for ** use by the action routines. ** ** Inputs: **
      **
    • A pointer to the parser (an opaque structure.) **
    • The major token number. **
    • The minor token number. **
    • An option argument of a grammar-specified type. **
    ** ** Outputs: ** None. */ SQLITE_PRIVATE void sqlite3Parser( void *yyp, /* The parser */ int yymajor, /* The major token code number */ sqlite3ParserTOKENTYPE yyminor /* The value for the token */ sqlite3ParserARG_PDECL /* Optional %extra_argument parameter */ ){ YYMINORTYPE yyminorunion; YYACTIONTYPE yyact; /* The parser action. */ #if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) int yyendofinput; /* True if we are at the end of input */ #endif #ifdef YYERRORSYMBOL int yyerrorhit = 0; /* True if yymajor has invoked an error */ #endif yyParser *yypParser = (yyParser*)yyp; /* The parser */ sqlite3ParserCTX_FETCH sqlite3ParserARG_STORE assert( yypParser->yytos!=0 ); #if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) yyendofinput = (yymajor==0); #endif yyact = yypParser->yytos->stateno; #ifndef NDEBUG if( yyTraceFILE ){ if( yyact < YY_MIN_REDUCE ){ fprintf(yyTraceFILE,"%sInput '%s' in state %d\n", yyTracePrompt,yyTokenName[yymajor],yyact); }else{ fprintf(yyTraceFILE,"%sInput '%s' with pending reduce %d\n", yyTracePrompt,yyTokenName[yymajor],yyact-YY_MIN_REDUCE); } } #endif do{ assert( yyact==yypParser->yytos->stateno ); yyact = yy_find_shift_action((YYCODETYPE)yymajor,yyact); if( yyact >= YY_MIN_REDUCE ){ yyact = yy_reduce(yypParser,yyact-YY_MIN_REDUCE,yymajor, yyminor sqlite3ParserCTX_PARAM); }else if( yyact <= YY_MAX_SHIFTREDUCE ){ yy_shift(yypParser,yyact,(YYCODETYPE)yymajor,yyminor); #ifndef YYNOERRORRECOVERY yypParser->yyerrcnt--; #endif break; }else if( yyact==YY_ACCEPT_ACTION ){ yypParser->yytos--; yy_accept(yypParser); return; }else{ assert( yyact == YY_ERROR_ACTION ); yyminorunion.yy0 = yyminor; #ifdef YYERRORSYMBOL int yymx; #endif #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sSyntax Error!\n",yyTracePrompt); } #endif #ifdef YYERRORSYMBOL /* A syntax error has occurred. ** The response to an error depends upon whether or not the ** grammar defines an error token "ERROR". ** ** This is what we do if the grammar does define ERROR: ** ** * Call the %syntax_error function. ** ** * Begin popping the stack until we enter a state where ** it is legal to shift the error symbol, then shift ** the error symbol. ** ** * Set the error count to three. ** ** * Begin accepting and shifting new tokens. No new error ** processing will occur until three tokens have been ** shifted successfully. ** */ if( yypParser->yyerrcnt<0 ){ yy_syntax_error(yypParser,yymajor,yyminor); } yymx = yypParser->yytos->major; if( yymx==YYERRORSYMBOL || yyerrorhit ){ #ifndef NDEBUG if( yyTraceFILE ){ fprintf(yyTraceFILE,"%sDiscard input token %s\n", yyTracePrompt,yyTokenName[yymajor]); } #endif yy_destructor(yypParser, (YYCODETYPE)yymajor, &yyminorunion); yymajor = YYNOCODE; }else{ while( yypParser->yytos >= yypParser->yystack && (yyact = yy_find_reduce_action( yypParser->yytos->stateno, YYERRORSYMBOL)) > YY_MAX_SHIFTREDUCE ){ yy_pop_parser_stack(yypParser); } if( yypParser->yytos < yypParser->yystack || yymajor==0 ){ yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); yy_parse_failed(yypParser); #ifndef YYNOERRORRECOVERY yypParser->yyerrcnt = -1; #endif yymajor = YYNOCODE; }else if( yymx!=YYERRORSYMBOL ){ yy_shift(yypParser,yyact,YYERRORSYMBOL,yyminor); } } yypParser->yyerrcnt = 3; yyerrorhit = 1; if( yymajor==YYNOCODE ) break; yyact = yypParser->yytos->stateno; #elif defined(YYNOERRORRECOVERY) /* If the YYNOERRORRECOVERY macro is defined, then do not attempt to ** do any kind of error recovery. Instead, simply invoke the syntax ** error routine and continue going as if nothing had happened. ** ** Applications can set this macro (for example inside %include) if ** they intend to abandon the parse upon the first syntax error seen. */ yy_syntax_error(yypParser,yymajor, yyminor); yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); break; #else /* YYERRORSYMBOL is not defined */ /* This is what we do if the grammar does not define ERROR: ** ** * Report an error message, and throw away the input token. ** ** * If the input token is $, then fail the parse. ** ** As before, subsequent error messages are suppressed until ** three input tokens have been successfully shifted. */ if( yypParser->yyerrcnt<=0 ){ yy_syntax_error(yypParser,yymajor, yyminor); } yypParser->yyerrcnt = 3; yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); if( yyendofinput ){ yy_parse_failed(yypParser); #ifndef YYNOERRORRECOVERY yypParser->yyerrcnt = -1; #endif } break; #endif } }while( yypParser->yytos>yypParser->yystack ); #ifndef NDEBUG if( yyTraceFILE ){ yyStackEntry *i; char cDiv = '['; fprintf(yyTraceFILE,"%sReturn. Stack=",yyTracePrompt); for(i=&yypParser->yystack[1]; i<=yypParser->yytos; i++){ fprintf(yyTraceFILE,"%c%s", cDiv, yyTokenName[i->major]); cDiv = ' '; } fprintf(yyTraceFILE,"]\n"); } #endif return; } /* ** Return the fallback token corresponding to canonical token iToken, or ** 0 if iToken has no fallback. */ SQLITE_PRIVATE int sqlite3ParserFallback(int iToken){ #ifdef YYFALLBACK assert( iToken<(int)(sizeof(yyFallback)/sizeof(yyFallback[0])) ); return yyFallback[iToken]; #else (void)iToken; return 0; #endif } /************** End of parse.c ***********************************************/ /************** Begin file tokenize.c ****************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** An tokenizer for SQL ** ** This file contains C code that splits an SQL input string up into ** individual tokens and sends those tokens one-by-one over to the ** parser for analysis. */ /* #include "sqliteInt.h" */ /* #include */ /* Character classes for tokenizing ** ** In the sqlite3GetToken() function, a switch() on aiClass[c] is implemented ** using a lookup table, whereas a switch() directly on c uses a binary search. ** The lookup table is much faster. To maximize speed, and to ensure that ** a lookup table is used, all of the classes need to be small integers and ** all of them need to be used within the switch. */ #define CC_X 0 /* The letter 'x', or start of BLOB literal */ #define CC_KYWD 1 /* Alphabetics or '_'. Usable in a keyword */ #define CC_ID 2 /* unicode characters usable in IDs */ #define CC_DIGIT 3 /* Digits */ #define CC_DOLLAR 4 /* '$' */ #define CC_VARALPHA 5 /* '@', '#', ':'. Alphabetic SQL variables */ #define CC_VARNUM 6 /* '?'. Numeric SQL variables */ #define CC_SPACE 7 /* Space characters */ #define CC_QUOTE 8 /* '"', '\'', or '`'. String literals, quoted ids */ #define CC_QUOTE2 9 /* '['. [...] style quoted ids */ #define CC_PIPE 10 /* '|'. Bitwise OR or concatenate */ #define CC_MINUS 11 /* '-'. Minus or SQL-style comment */ #define CC_LT 12 /* '<'. Part of < or <= or <> */ #define CC_GT 13 /* '>'. Part of > or >= */ #define CC_EQ 14 /* '='. Part of = or == */ #define CC_BANG 15 /* '!'. Part of != */ #define CC_SLASH 16 /* '/'. / or c-style comment */ #define CC_LP 17 /* '(' */ #define CC_RP 18 /* ')' */ #define CC_SEMI 19 /* ';' */ #define CC_PLUS 20 /* '+' */ #define CC_STAR 21 /* '*' */ #define CC_PERCENT 22 /* '%' */ #define CC_COMMA 23 /* ',' */ #define CC_AND 24 /* '&' */ #define CC_TILDA 25 /* '~' */ #define CC_DOT 26 /* '.' */ #define CC_ILLEGAL 27 /* Illegal character */ #define CC_NUL 28 /* 0x00 */ static const unsigned char aiClass[] = { #ifdef SQLITE_ASCII /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xa xb xc xd xe xf */ /* 0x */ 28, 27, 27, 27, 27, 27, 27, 27, 27, 7, 7, 27, 7, 7, 27, 27, /* 1x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, /* 2x */ 7, 15, 8, 5, 4, 22, 24, 8, 17, 18, 21, 20, 23, 11, 26, 16, /* 3x */ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 19, 12, 14, 13, 6, /* 4x */ 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 5x */ 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 9, 27, 27, 27, 1, /* 6x */ 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 7x */ 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 27, 10, 27, 25, 27, /* 8x */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* 9x */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* Ax */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* Bx */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* Cx */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* Dx */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* Ex */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* Fx */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 #endif #ifdef SQLITE_EBCDIC /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xa xb xc xd xe xf */ /* 0x */ 27, 27, 27, 27, 27, 7, 27, 27, 27, 27, 27, 27, 7, 7, 27, 27, /* 1x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, /* 2x */ 27, 27, 27, 27, 27, 7, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, /* 3x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, /* 4x */ 7, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 26, 12, 17, 20, 10, /* 5x */ 24, 27, 27, 27, 27, 27, 27, 27, 27, 27, 15, 4, 21, 18, 19, 27, /* 6x */ 11, 16, 27, 27, 27, 27, 27, 27, 27, 27, 27, 23, 22, 1, 13, 6, /* 7x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 8, 5, 5, 5, 8, 14, 8, /* 8x */ 27, 1, 1, 1, 1, 1, 1, 1, 1, 1, 27, 27, 27, 27, 27, 27, /* 9x */ 27, 1, 1, 1, 1, 1, 1, 1, 1, 1, 27, 27, 27, 27, 27, 27, /* Ax */ 27, 25, 1, 1, 1, 1, 1, 0, 1, 1, 27, 27, 27, 27, 27, 27, /* Bx */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 9, 27, 27, 27, 27, 27, /* Cx */ 27, 1, 1, 1, 1, 1, 1, 1, 1, 1, 27, 27, 27, 27, 27, 27, /* Dx */ 27, 1, 1, 1, 1, 1, 1, 1, 1, 1, 27, 27, 27, 27, 27, 27, /* Ex */ 27, 27, 1, 1, 1, 1, 1, 0, 1, 1, 27, 27, 27, 27, 27, 27, /* Fx */ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 27, 27, 27, 27, 27, 27, #endif }; /* ** The charMap() macro maps alphabetic characters (only) into their ** lower-case ASCII equivalent. On ASCII machines, this is just ** an upper-to-lower case map. On EBCDIC machines we also need ** to adjust the encoding. The mapping is only valid for alphabetics ** which are the only characters for which this feature is used. ** ** Used by keywordhash.h */ #ifdef SQLITE_ASCII # define charMap(X) sqlite3UpperToLower[(unsigned char)X] #endif #ifdef SQLITE_EBCDIC # define charMap(X) ebcdicToAscii[(unsigned char)X] const unsigned char ebcdicToAscii[] = { /* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 1x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 2x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 3x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 4x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 5x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, /* 6x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 7x */ 0, 97, 98, 99,100,101,102,103,104,105, 0, 0, 0, 0, 0, 0, /* 8x */ 0,106,107,108,109,110,111,112,113,114, 0, 0, 0, 0, 0, 0, /* 9x */ 0, 0,115,116,117,118,119,120,121,122, 0, 0, 0, 0, 0, 0, /* Ax */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Bx */ 0, 97, 98, 99,100,101,102,103,104,105, 0, 0, 0, 0, 0, 0, /* Cx */ 0,106,107,108,109,110,111,112,113,114, 0, 0, 0, 0, 0, 0, /* Dx */ 0, 0,115,116,117,118,119,120,121,122, 0, 0, 0, 0, 0, 0, /* Ex */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Fx */ }; #endif /* ** The sqlite3KeywordCode function looks up an identifier to determine if ** it is a keyword. If it is a keyword, the token code of that keyword is ** returned. If the input is not a keyword, TK_ID is returned. ** ** The implementation of this routine was generated by a program, ** mkkeywordhash.c, located in the tool subdirectory of the distribution. ** The output of the mkkeywordhash.c program is written into a file ** named keywordhash.h and then included into this source file by ** the #include below. */ /************** Include keywordhash.h in the middle of tokenize.c ************/ /************** Begin file keywordhash.h *************************************/ /***** This file contains automatically generated code ****** ** ** The code in this file has been automatically generated by ** ** sqlite/tool/mkkeywordhash.c ** ** The code in this file implements a function that determines whether ** or not a given identifier is really an SQL keyword. The same thing ** might be implemented more directly using a hand-written hash table. ** But by using this automatically generated code, the size of the code ** is substantially reduced. This is important for embedded applications ** on platforms with limited memory. */ /* Hash score: 227 */ /* zKWText[] encodes 984 bytes of keyword text in 648 bytes */ /* REINDEXEDESCAPEACHECKEYBEFOREIGNOREGEXPLAINSTEADDATABASELECT */ /* ABLEFTHENDEFERRABLELSEXCLUDELETEMPORARYISNULLSAVEPOINTERSECT */ /* IESNOTNULLIKEXCEPTRANSACTIONATURALTERAISEXCLUSIVEXISTS */ /* CONSTRAINTOFFSETRIGGERANGENERATEDETACHAVINGLOBEGINNEREFERENCES */ /* UNIQUERYWITHOUTERELEASEATTACHBETWEENOTHINGROUPSCASCADEFAULT */ /* CASECOLLATECREATECURRENT_DATEIMMEDIATEJOINSERTMATCHPLANALYZE */ /* PRAGMABORTUPDATEVALUESVIRTUALWAYSWHENWHERECURSIVEAFTERENAMEAND */ /* EFERREDISTINCTAUTOINCREMENTCASTCOLUMNCOMMITCONFLICTCROSS */ /* CURRENT_TIMESTAMPARTITIONDROPRECEDINGFAILASTFILTEREPLACEFIRST */ /* FOLLOWINGFROMFULLIMITIFORDERESTRICTOTHERSOVERIGHTROLLBACKROWS */ /* UNBOUNDEDUNIONUSINGVACUUMVIEWINDOWBYINITIALLYPRIMARY */ static const char zKWText[647] = { 'R','E','I','N','D','E','X','E','D','E','S','C','A','P','E','A','C','H', 'E','C','K','E','Y','B','E','F','O','R','E','I','G','N','O','R','E','G', 'E','X','P','L','A','I','N','S','T','E','A','D','D','A','T','A','B','A', 'S','E','L','E','C','T','A','B','L','E','F','T','H','E','N','D','E','F', 'E','R','R','A','B','L','E','L','S','E','X','C','L','U','D','E','L','E', 'T','E','M','P','O','R','A','R','Y','I','S','N','U','L','L','S','A','V', 'E','P','O','I','N','T','E','R','S','E','C','T','I','E','S','N','O','T', 'N','U','L','L','I','K','E','X','C','E','P','T','R','A','N','S','A','C', 'T','I','O','N','A','T','U','R','A','L','T','E','R','A','I','S','E','X', 'C','L','U','S','I','V','E','X','I','S','T','S','C','O','N','S','T','R', 'A','I','N','T','O','F','F','S','E','T','R','I','G','G','E','R','A','N', 'G','E','N','E','R','A','T','E','D','E','T','A','C','H','A','V','I','N', 'G','L','O','B','E','G','I','N','N','E','R','E','F','E','R','E','N','C', 'E','S','U','N','I','Q','U','E','R','Y','W','I','T','H','O','U','T','E', 'R','E','L','E','A','S','E','A','T','T','A','C','H','B','E','T','W','E', 'E','N','O','T','H','I','N','G','R','O','U','P','S','C','A','S','C','A', 'D','E','F','A','U','L','T','C','A','S','E','C','O','L','L','A','T','E', 'C','R','E','A','T','E','C','U','R','R','E','N','T','_','D','A','T','E', 'I','M','M','E','D','I','A','T','E','J','O','I','N','S','E','R','T','M', 'A','T','C','H','P','L','A','N','A','L','Y','Z','E','P','R','A','G','M', 'A','B','O','R','T','U','P','D','A','T','E','V','A','L','U','E','S','V', 'I','R','T','U','A','L','W','A','Y','S','W','H','E','N','W','H','E','R', 'E','C','U','R','S','I','V','E','A','F','T','E','R','E','N','A','M','E', 'A','N','D','E','F','E','R','R','E','D','I','S','T','I','N','C','T','A', 'U','T','O','I','N','C','R','E','M','E','N','T','C','A','S','T','C','O', 'L','U','M','N','C','O','M','M','I','T','C','O','N','F','L','I','C','T', 'C','R','O','S','S','C','U','R','R','E','N','T','_','T','I','M','E','S', 'T','A','M','P','A','R','T','I','T','I','O','N','D','R','O','P','R','E', 'C','E','D','I','N','G','F','A','I','L','A','S','T','F','I','L','T','E', 'R','E','P','L','A','C','E','F','I','R','S','T','F','O','L','L','O','W', 'I','N','G','F','R','O','M','F','U','L','L','I','M','I','T','I','F','O', 'R','D','E','R','E','S','T','R','I','C','T','O','T','H','E','R','S','O', 'V','E','R','I','G','H','T','R','O','L','L','B','A','C','K','R','O','W', 'S','U','N','B','O','U','N','D','E','D','U','N','I','O','N','U','S','I', 'N','G','V','A','C','U','U','M','V','I','E','W','I','N','D','O','W','B', 'Y','I','N','I','T','I','A','L','L','Y','P','R','I','M','A','R','Y', }; /* aKWHash[i] is the hash value for the i-th keyword */ static const unsigned char aKWHash[127] = { 84, 102, 132, 82, 114, 29, 0, 0, 91, 0, 85, 72, 0, 53, 35, 86, 15, 0, 42, 94, 54, 126, 133, 19, 0, 0, 138, 0, 40, 128, 0, 22, 104, 0, 9, 0, 0, 122, 80, 0, 78, 6, 0, 65, 99, 145, 0, 134, 112, 0, 0, 48, 0, 100, 24, 0, 17, 0, 27, 70, 23, 26, 5, 60, 140, 107, 121, 0, 73, 101, 71, 143, 61, 119, 74, 0, 49, 0, 11, 41, 0, 110, 0, 0, 0, 106, 10, 108, 113, 124, 14, 50, 123, 0, 89, 0, 18, 120, 142, 56, 129, 137, 88, 83, 37, 30, 125, 0, 0, 105, 51, 130, 127, 0, 34, 0, 0, 44, 0, 95, 38, 39, 0, 20, 45, 116, 90, }; /* aKWNext[] forms the hash collision chain. If aKWHash[i]==0 ** then the i-th keyword has no more hash collisions. Otherwise, ** the next keyword with the same hash is aKWHash[i]-1. */ static const unsigned char aKWNext[145] = { 0, 0, 0, 0, 4, 0, 43, 0, 0, 103, 111, 0, 0, 0, 2, 0, 0, 141, 0, 0, 0, 13, 0, 0, 0, 0, 139, 0, 0, 118, 52, 0, 0, 135, 12, 0, 0, 62, 0, 136, 0, 131, 0, 0, 36, 0, 0, 28, 77, 0, 0, 0, 0, 59, 0, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 144, 3, 0, 58, 0, 1, 75, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 64, 66, 63, 0, 0, 0, 0, 46, 0, 16, 0, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 97, 0, 8, 0, 109, 21, 7, 67, 0, 79, 93, 117, 0, 0, 68, 0, 0, 96, 0, 55, 0, 76, 0, 92, 32, 33, 57, 25, 0, 98, 0, 0, 87, }; /* aKWLen[i] is the length (in bytes) of the i-th keyword */ static const unsigned char aKWLen[145] = { 7, 7, 5, 4, 6, 4, 5, 3, 6, 7, 3, 6, 6, 7, 7, 3, 8, 2, 6, 5, 4, 4, 3, 10, 4, 7, 6, 9, 4, 2, 6, 5, 9, 9, 4, 7, 3, 2, 4, 4, 6, 11, 6, 2, 7, 5, 5, 9, 6, 10, 4, 6, 2, 3, 7, 5, 9, 6, 6, 4, 5, 5, 10, 6, 5, 7, 4, 5, 7, 6, 7, 7, 6, 5, 7, 3, 7, 4, 7, 6, 12, 9, 4, 6, 5, 4, 7, 6, 5, 6, 6, 7, 6, 4, 5, 9, 5, 6, 3, 8, 8, 2, 13, 2, 2, 4, 6, 6, 8, 5, 17, 12, 7, 9, 4, 9, 4, 4, 6, 7, 5, 9, 4, 4, 5, 2, 5, 8, 6, 4, 5, 8, 4, 3, 9, 5, 5, 6, 4, 6, 2, 2, 9, 3, 7, }; /* aKWOffset[i] is the index into zKWText[] of the start of ** the text for the i-th keyword. */ static const unsigned short int aKWOffset[145] = { 0, 2, 2, 8, 9, 14, 16, 20, 23, 25, 25, 29, 33, 36, 41, 46, 48, 53, 54, 59, 62, 65, 67, 69, 78, 81, 86, 90, 90, 94, 99, 101, 105, 111, 119, 123, 123, 123, 126, 129, 132, 137, 142, 146, 147, 152, 156, 160, 168, 174, 181, 184, 184, 187, 189, 195, 198, 206, 211, 216, 219, 222, 226, 236, 239, 244, 244, 248, 252, 259, 265, 271, 277, 277, 283, 284, 288, 295, 299, 306, 312, 324, 333, 335, 341, 346, 348, 355, 360, 365, 371, 377, 382, 388, 392, 395, 404, 408, 414, 416, 423, 424, 431, 433, 435, 444, 448, 454, 460, 468, 473, 473, 473, 489, 498, 501, 510, 513, 517, 522, 529, 534, 543, 547, 550, 555, 557, 561, 569, 575, 578, 583, 591, 591, 595, 604, 609, 614, 620, 623, 626, 629, 631, 636, 640, }; /* aKWCode[i] is the parser symbol code for the i-th keyword */ static const unsigned char aKWCode[145] = { TK_REINDEX, TK_INDEXED, TK_INDEX, TK_DESC, TK_ESCAPE, TK_EACH, TK_CHECK, TK_KEY, TK_BEFORE, TK_FOREIGN, TK_FOR, TK_IGNORE, TK_LIKE_KW, TK_EXPLAIN, TK_INSTEAD, TK_ADD, TK_DATABASE, TK_AS, TK_SELECT, TK_TABLE, TK_JOIN_KW, TK_THEN, TK_END, TK_DEFERRABLE, TK_ELSE, TK_EXCLUDE, TK_DELETE, TK_TEMP, TK_TEMP, TK_OR, TK_ISNULL, TK_NULLS, TK_SAVEPOINT, TK_INTERSECT, TK_TIES, TK_NOTNULL, TK_NOT, TK_NO, TK_NULL, TK_LIKE_KW, TK_EXCEPT, TK_TRANSACTION,TK_ACTION, TK_ON, TK_JOIN_KW, TK_ALTER, TK_RAISE, TK_EXCLUSIVE, TK_EXISTS, TK_CONSTRAINT, TK_INTO, TK_OFFSET, TK_OF, TK_SET, TK_TRIGGER, TK_RANGE, TK_GENERATED, TK_DETACH, TK_HAVING, TK_LIKE_KW, TK_BEGIN, TK_JOIN_KW, TK_REFERENCES, TK_UNIQUE, TK_QUERY, TK_WITHOUT, TK_WITH, TK_JOIN_KW, TK_RELEASE, TK_ATTACH, TK_BETWEEN, TK_NOTHING, TK_GROUPS, TK_GROUP, TK_CASCADE, TK_ASC, TK_DEFAULT, TK_CASE, TK_COLLATE, TK_CREATE, TK_CTIME_KW, TK_IMMEDIATE, TK_JOIN, TK_INSERT, TK_MATCH, TK_PLAN, TK_ANALYZE, TK_PRAGMA, TK_ABORT, TK_UPDATE, TK_VALUES, TK_VIRTUAL, TK_ALWAYS, TK_WHEN, TK_WHERE, TK_RECURSIVE, TK_AFTER, TK_RENAME, TK_AND, TK_DEFERRED, TK_DISTINCT, TK_IS, TK_AUTOINCR, TK_TO, TK_IN, TK_CAST, TK_COLUMNKW, TK_COMMIT, TK_CONFLICT, TK_JOIN_KW, TK_CTIME_KW, TK_CTIME_KW, TK_CURRENT, TK_PARTITION, TK_DROP, TK_PRECEDING, TK_FAIL, TK_LAST, TK_FILTER, TK_REPLACE, TK_FIRST, TK_FOLLOWING, TK_FROM, TK_JOIN_KW, TK_LIMIT, TK_IF, TK_ORDER, TK_RESTRICT, TK_OTHERS, TK_OVER, TK_JOIN_KW, TK_ROLLBACK, TK_ROWS, TK_ROW, TK_UNBOUNDED, TK_UNION, TK_USING, TK_VACUUM, TK_VIEW, TK_WINDOW, TK_DO, TK_BY, TK_INITIALLY, TK_ALL, TK_PRIMARY, }; /* Hash table decoded: ** 0: INSERT ** 1: IS ** 2: ROLLBACK TRIGGER ** 3: IMMEDIATE ** 4: PARTITION ** 5: TEMP ** 6: ** 7: ** 8: VALUES WITHOUT ** 9: ** 10: MATCH ** 11: NOTHING ** 12: ** 13: OF ** 14: TIES IGNORE ** 15: PLAN ** 16: INSTEAD INDEXED ** 17: ** 18: TRANSACTION RIGHT ** 19: WHEN ** 20: SET HAVING ** 21: IF ** 22: ROWS ** 23: SELECT ** 24: ** 25: ** 26: VACUUM SAVEPOINT ** 27: ** 28: LIKE UNION VIRTUAL REFERENCES ** 29: RESTRICT ** 30: ** 31: THEN REGEXP ** 32: TO ** 33: ** 34: BEFORE ** 35: ** 36: ** 37: FOLLOWING COLLATE CASCADE ** 38: CREATE ** 39: ** 40: CASE REINDEX ** 41: EACH ** 42: ** 43: QUERY ** 44: AND ADD ** 45: PRIMARY ANALYZE ** 46: ** 47: ROW ASC DETACH ** 48: CURRENT_TIME CURRENT_DATE ** 49: ** 50: ** 51: EXCLUSIVE TEMPORARY ** 52: ** 53: DEFERRED ** 54: DEFERRABLE ** 55: ** 56: DATABASE ** 57: ** 58: DELETE VIEW GENERATED ** 59: ATTACH ** 60: END ** 61: EXCLUDE ** 62: ESCAPE DESC ** 63: GLOB ** 64: WINDOW ELSE ** 65: COLUMN ** 66: FIRST ** 67: ** 68: GROUPS ALL ** 69: DISTINCT DROP KEY ** 70: BETWEEN ** 71: INITIALLY ** 72: BEGIN ** 73: FILTER CHECK ACTION ** 74: GROUP INDEX ** 75: ** 76: EXISTS DEFAULT ** 77: ** 78: FOR CURRENT_TIMESTAMP ** 79: EXCEPT ** 80: ** 81: CROSS ** 82: ** 83: ** 84: ** 85: CAST ** 86: FOREIGN AUTOINCREMENT ** 87: COMMIT ** 88: CURRENT AFTER ALTER ** 89: FULL FAIL CONFLICT ** 90: EXPLAIN ** 91: CONSTRAINT ** 92: FROM ALWAYS ** 93: ** 94: ABORT ** 95: ** 96: AS DO ** 97: REPLACE WITH RELEASE ** 98: BY RENAME ** 99: RANGE RAISE ** 100: OTHERS ** 101: USING NULLS ** 102: PRAGMA ** 103: JOIN ISNULL OFFSET ** 104: NOT ** 105: OR LAST LEFT ** 106: LIMIT ** 107: ** 108: ** 109: IN ** 110: INTO ** 111: OVER RECURSIVE ** 112: ORDER OUTER ** 113: ** 114: INTERSECT UNBOUNDED ** 115: ** 116: ** 117: ON ** 118: ** 119: WHERE ** 120: NO INNER ** 121: NULL ** 122: ** 123: TABLE ** 124: NATURAL NOTNULL ** 125: PRECEDING ** 126: UPDATE UNIQUE */ /* Check to see if z[0..n-1] is a keyword. If it is, write the ** parser symbol code for that keyword into *pType. Always ** return the integer n (the length of the token). */ static int keywordCode(const char *z, int n, int *pType){ int i, j; const char *zKW; if( n>=2 ){ i = ((charMap(z[0])*4) ^ (charMap(z[n-1])*3) ^ n) % 127; for(i=((int)aKWHash[i])-1; i>=0; i=((int)aKWNext[i])-1){ if( aKWLen[i]!=n ) continue; zKW = &zKWText[aKWOffset[i]]; #ifdef SQLITE_ASCII if( (z[0]&~0x20)!=zKW[0] ) continue; if( (z[1]&~0x20)!=zKW[1] ) continue; j = 2; while( j=SQLITE_N_KEYWORD ) return SQLITE_ERROR; *pzName = zKWText + aKWOffset[i]; *pnName = aKWLen[i]; return SQLITE_OK; } SQLITE_API int sqlite3_keyword_count(void){ return SQLITE_N_KEYWORD; } SQLITE_API int sqlite3_keyword_check(const char *zName, int nName){ return TK_ID!=sqlite3KeywordCode((const u8*)zName, nName); } /************** End of keywordhash.h *****************************************/ /************** Continuing where we left off in tokenize.c *******************/ /* ** If X is a character that can be used in an identifier then ** IdChar(X) will be true. Otherwise it is false. ** ** For ASCII, any character with the high-order bit set is ** allowed in an identifier. For 7-bit characters, ** sqlite3IsIdChar[X] must be 1. ** ** For EBCDIC, the rules are more complex but have the same ** end result. ** ** Ticket #1066. the SQL standard does not allow '$' in the ** middle of identifiers. But many SQL implementations do. ** SQLite will allow '$' in identifiers for compatibility. ** But the feature is undocumented. */ #ifdef SQLITE_ASCII #define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0) #endif #ifdef SQLITE_EBCDIC SQLITE_PRIVATE const char sqlite3IsEbcdicIdChar[] = { /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF */ 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 4x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, /* 5x */ 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, /* 6x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, /* 7x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, /* 8x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, /* 9x */ 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, /* Ax */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Bx */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Cx */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Dx */ 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Ex */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, /* Fx */ }; #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40])) #endif /* Make the IdChar function accessible from ctime.c and alter.c */ SQLITE_PRIVATE int sqlite3IsIdChar(u8 c){ return IdChar(c); } #ifndef SQLITE_OMIT_WINDOWFUNC /* ** Return the id of the next token in string (*pz). Before returning, set ** (*pz) to point to the byte following the parsed token. */ static int getToken(const unsigned char **pz){ const unsigned char *z = *pz; int t; /* Token type to return */ do { z += sqlite3GetToken(z, &t); }while( t==TK_SPACE ); if( t==TK_ID || t==TK_STRING || t==TK_JOIN_KW || t==TK_WINDOW || t==TK_OVER || sqlite3ParserFallback(t)==TK_ID ){ t = TK_ID; } *pz = z; return t; } /* ** The following three functions are called immediately after the tokenizer ** reads the keywords WINDOW, OVER and FILTER, respectively, to determine ** whether the token should be treated as a keyword or an SQL identifier. ** This cannot be handled by the usual lemon %fallback method, due to ** the ambiguity in some constructions. e.g. ** ** SELECT sum(x) OVER ... ** ** In the above, "OVER" might be a keyword, or it might be an alias for the ** sum(x) expression. If a "%fallback ID OVER" directive were added to ** grammar, then SQLite would always treat "OVER" as an alias, making it ** impossible to call a window-function without a FILTER clause. ** ** WINDOW is treated as a keyword if: ** ** * the following token is an identifier, or a keyword that can fallback ** to being an identifier, and ** * the token after than one is TK_AS. ** ** OVER is a keyword if: ** ** * the previous token was TK_RP, and ** * the next token is either TK_LP or an identifier. ** ** FILTER is a keyword if: ** ** * the previous token was TK_RP, and ** * the next token is TK_LP. */ static int analyzeWindowKeyword(const unsigned char *z){ int t; t = getToken(&z); if( t!=TK_ID ) return TK_ID; t = getToken(&z); if( t!=TK_AS ) return TK_ID; return TK_WINDOW; } static int analyzeOverKeyword(const unsigned char *z, int lastToken){ if( lastToken==TK_RP ){ int t = getToken(&z); if( t==TK_LP || t==TK_ID ) return TK_OVER; } return TK_ID; } static int analyzeFilterKeyword(const unsigned char *z, int lastToken){ if( lastToken==TK_RP && getToken(&z)==TK_LP ){ return TK_FILTER; } return TK_ID; } #endif /* SQLITE_OMIT_WINDOWFUNC */ /* ** Return the length (in bytes) of the token that begins at z[0]. ** Store the token type in *tokenType before returning. */ SQLITE_PRIVATE int sqlite3GetToken(const unsigned char *z, int *tokenType){ int i, c; switch( aiClass[*z] ){ /* Switch on the character-class of the first byte ** of the token. See the comment on the CC_ defines ** above. */ case CC_SPACE: { testcase( z[0]==' ' ); testcase( z[0]=='\t' ); testcase( z[0]=='\n' ); testcase( z[0]=='\f' ); testcase( z[0]=='\r' ); for(i=1; sqlite3Isspace(z[i]); i++){} *tokenType = TK_SPACE; return i; } case CC_MINUS: { if( z[1]=='-' ){ for(i=2; (c=z[i])!=0 && c!='\n'; i++){} *tokenType = TK_SPACE; /* IMP: R-22934-25134 */ return i; } *tokenType = TK_MINUS; return 1; } case CC_LP: { *tokenType = TK_LP; return 1; } case CC_RP: { *tokenType = TK_RP; return 1; } case CC_SEMI: { *tokenType = TK_SEMI; return 1; } case CC_PLUS: { *tokenType = TK_PLUS; return 1; } case CC_STAR: { *tokenType = TK_STAR; return 1; } case CC_SLASH: { if( z[1]!='*' || z[2]==0 ){ *tokenType = TK_SLASH; return 1; } for(i=3, c=z[2]; (c!='*' || z[i]!='/') && (c=z[i])!=0; i++){} if( c ) i++; *tokenType = TK_SPACE; /* IMP: R-22934-25134 */ return i; } case CC_PERCENT: { *tokenType = TK_REM; return 1; } case CC_EQ: { *tokenType = TK_EQ; return 1 + (z[1]=='='); } case CC_LT: { if( (c=z[1])=='=' ){ *tokenType = TK_LE; return 2; }else if( c=='>' ){ *tokenType = TK_NE; return 2; }else if( c=='<' ){ *tokenType = TK_LSHIFT; return 2; }else{ *tokenType = TK_LT; return 1; } } case CC_GT: { if( (c=z[1])=='=' ){ *tokenType = TK_GE; return 2; }else if( c=='>' ){ *tokenType = TK_RSHIFT; return 2; }else{ *tokenType = TK_GT; return 1; } } case CC_BANG: { if( z[1]!='=' ){ *tokenType = TK_ILLEGAL; return 1; }else{ *tokenType = TK_NE; return 2; } } case CC_PIPE: { if( z[1]!='|' ){ *tokenType = TK_BITOR; return 1; }else{ *tokenType = TK_CONCAT; return 2; } } case CC_COMMA: { *tokenType = TK_COMMA; return 1; } case CC_AND: { *tokenType = TK_BITAND; return 1; } case CC_TILDA: { *tokenType = TK_BITNOT; return 1; } case CC_QUOTE: { int delim = z[0]; testcase( delim=='`' ); testcase( delim=='\'' ); testcase( delim=='"' ); for(i=1; (c=z[i])!=0; i++){ if( c==delim ){ if( z[i+1]==delim ){ i++; }else{ break; } } } if( c=='\'' ){ *tokenType = TK_STRING; return i+1; }else if( c!=0 ){ *tokenType = TK_ID; return i+1; }else{ *tokenType = TK_ILLEGAL; return i; } } case CC_DOT: { #ifndef SQLITE_OMIT_FLOATING_POINT if( !sqlite3Isdigit(z[1]) ) #endif { *tokenType = TK_DOT; return 1; } /* If the next character is a digit, this is a floating point ** number that begins with ".". Fall thru into the next case */ /* no break */ deliberate_fall_through } case CC_DIGIT: { testcase( z[0]=='0' ); testcase( z[0]=='1' ); testcase( z[0]=='2' ); testcase( z[0]=='3' ); testcase( z[0]=='4' ); testcase( z[0]=='5' ); testcase( z[0]=='6' ); testcase( z[0]=='7' ); testcase( z[0]=='8' ); testcase( z[0]=='9' ); *tokenType = TK_INTEGER; #ifndef SQLITE_OMIT_HEX_INTEGER if( z[0]=='0' && (z[1]=='x' || z[1]=='X') && sqlite3Isxdigit(z[2]) ){ for(i=3; sqlite3Isxdigit(z[i]); i++){} return i; } #endif for(i=0; sqlite3Isdigit(z[i]); i++){} #ifndef SQLITE_OMIT_FLOATING_POINT if( z[i]=='.' ){ i++; while( sqlite3Isdigit(z[i]) ){ i++; } *tokenType = TK_FLOAT; } if( (z[i]=='e' || z[i]=='E') && ( sqlite3Isdigit(z[i+1]) || ((z[i+1]=='+' || z[i+1]=='-') && sqlite3Isdigit(z[i+2])) ) ){ i += 2; while( sqlite3Isdigit(z[i]) ){ i++; } *tokenType = TK_FLOAT; } #endif while( IdChar(z[i]) ){ *tokenType = TK_ILLEGAL; i++; } return i; } case CC_QUOTE2: { for(i=1, c=z[0]; c!=']' && (c=z[i])!=0; i++){} *tokenType = c==']' ? TK_ID : TK_ILLEGAL; return i; } case CC_VARNUM: { *tokenType = TK_VARIABLE; for(i=1; sqlite3Isdigit(z[i]); i++){} return i; } case CC_DOLLAR: case CC_VARALPHA: { int n = 0; testcase( z[0]=='$' ); testcase( z[0]=='@' ); testcase( z[0]==':' ); testcase( z[0]=='#' ); *tokenType = TK_VARIABLE; for(i=1; (c=z[i])!=0; i++){ if( IdChar(c) ){ n++; #ifndef SQLITE_OMIT_TCL_VARIABLE }else if( c=='(' && n>0 ){ do{ i++; }while( (c=z[i])!=0 && !sqlite3Isspace(c) && c!=')' ); if( c==')' ){ i++; }else{ *tokenType = TK_ILLEGAL; } break; }else if( c==':' && z[i+1]==':' ){ i++; #endif }else{ break; } } if( n==0 ) *tokenType = TK_ILLEGAL; return i; } case CC_KYWD: { for(i=1; aiClass[z[i]]<=CC_KYWD; i++){} if( IdChar(z[i]) ){ /* This token started out using characters that can appear in keywords, ** but z[i] is a character not allowed within keywords, so this must ** be an identifier instead */ i++; break; } *tokenType = TK_ID; return keywordCode((char*)z, i, tokenType); } case CC_X: { #ifndef SQLITE_OMIT_BLOB_LITERAL testcase( z[0]=='x' ); testcase( z[0]=='X' ); if( z[1]=='\'' ){ *tokenType = TK_BLOB; for(i=2; sqlite3Isxdigit(z[i]); i++){} if( z[i]!='\'' || i%2 ){ *tokenType = TK_ILLEGAL; while( z[i] && z[i]!='\'' ){ i++; } } if( z[i] ) i++; return i; } #endif /* If it is not a BLOB literal, then it must be an ID, since no ** SQL keywords start with the letter 'x'. Fall through */ /* no break */ deliberate_fall_through } case CC_ID: { i = 1; break; } case CC_NUL: { *tokenType = TK_ILLEGAL; return 0; } default: { *tokenType = TK_ILLEGAL; return 1; } } while( IdChar(z[i]) ){ i++; } *tokenType = TK_ID; return i; } /* ** Run the parser on the given SQL string. The parser structure is ** passed in. An SQLITE_ status code is returned. If an error occurs ** then an and attempt is made to write an error message into ** memory obtained from sqlite3_malloc() and to make *pzErrMsg point to that ** error message. */ SQLITE_PRIVATE int sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg){ int nErr = 0; /* Number of errors encountered */ void *pEngine; /* The LEMON-generated LALR(1) parser */ int n = 0; /* Length of the next token token */ int tokenType; /* type of the next token */ int lastTokenParsed = -1; /* type of the previous token */ sqlite3 *db = pParse->db; /* The database connection */ int mxSqlLen; /* Max length of an SQL string */ #ifdef sqlite3Parser_ENGINEALWAYSONSTACK yyParser sEngine; /* Space to hold the Lemon-generated Parser object */ #endif VVA_ONLY( u8 startedWithOom = db->mallocFailed ); assert( zSql!=0 ); mxSqlLen = db->aLimit[SQLITE_LIMIT_SQL_LENGTH]; if( db->nVdbeActive==0 ){ AtomicStore(&db->u1.isInterrupted, 0); } pParse->rc = SQLITE_OK; pParse->zTail = zSql; assert( pzErrMsg!=0 ); #ifdef SQLITE_DEBUG if( db->flags & SQLITE_ParserTrace ){ printf("parser: [[[%s]]]\n", zSql); sqlite3ParserTrace(stdout, "parser: "); }else{ sqlite3ParserTrace(0, 0); } #endif #ifdef sqlite3Parser_ENGINEALWAYSONSTACK pEngine = &sEngine; sqlite3ParserInit(pEngine, pParse); #else pEngine = sqlite3ParserAlloc(sqlite3Malloc, pParse); if( pEngine==0 ){ sqlite3OomFault(db); return SQLITE_NOMEM_BKPT; } #endif assert( pParse->pNewTable==0 ); assert( pParse->pNewTrigger==0 ); assert( pParse->nVar==0 ); assert( pParse->pVList==0 ); pParse->pParentParse = db->pParse; db->pParse = pParse; while( 1 ){ n = sqlite3GetToken((u8*)zSql, &tokenType); mxSqlLen -= n; if( mxSqlLen<0 ){ pParse->rc = SQLITE_TOOBIG; break; } #ifndef SQLITE_OMIT_WINDOWFUNC if( tokenType>=TK_WINDOW ){ assert( tokenType==TK_SPACE || tokenType==TK_OVER || tokenType==TK_FILTER || tokenType==TK_ILLEGAL || tokenType==TK_WINDOW ); #else if( tokenType>=TK_SPACE ){ assert( tokenType==TK_SPACE || tokenType==TK_ILLEGAL ); #endif /* SQLITE_OMIT_WINDOWFUNC */ if( AtomicLoad(&db->u1.isInterrupted) ){ pParse->rc = SQLITE_INTERRUPT; break; } if( tokenType==TK_SPACE ){ zSql += n; continue; } if( zSql[0]==0 ){ /* Upon reaching the end of input, call the parser two more times ** with tokens TK_SEMI and 0, in that order. */ if( lastTokenParsed==TK_SEMI ){ tokenType = 0; }else if( lastTokenParsed==0 ){ break; }else{ tokenType = TK_SEMI; } n = 0; #ifndef SQLITE_OMIT_WINDOWFUNC }else if( tokenType==TK_WINDOW ){ assert( n==6 ); tokenType = analyzeWindowKeyword((const u8*)&zSql[6]); }else if( tokenType==TK_OVER ){ assert( n==4 ); tokenType = analyzeOverKeyword((const u8*)&zSql[4], lastTokenParsed); }else if( tokenType==TK_FILTER ){ assert( n==6 ); tokenType = analyzeFilterKeyword((const u8*)&zSql[6], lastTokenParsed); #endif /* SQLITE_OMIT_WINDOWFUNC */ }else{ sqlite3ErrorMsg(pParse, "unrecognized token: \"%.*s\"", n, zSql); break; } } pParse->sLastToken.z = zSql; pParse->sLastToken.n = n; sqlite3Parser(pEngine, tokenType, pParse->sLastToken); lastTokenParsed = tokenType; zSql += n; assert( db->mallocFailed==0 || pParse->rc!=SQLITE_OK || startedWithOom ); if( pParse->rc!=SQLITE_OK ) break; } assert( nErr==0 ); #ifdef YYTRACKMAXSTACKDEPTH sqlite3_mutex_enter(sqlite3MallocMutex()); sqlite3StatusHighwater(SQLITE_STATUS_PARSER_STACK, sqlite3ParserStackPeak(pEngine) ); sqlite3_mutex_leave(sqlite3MallocMutex()); #endif /* YYDEBUG */ #ifdef sqlite3Parser_ENGINEALWAYSONSTACK sqlite3ParserFinalize(pEngine); #else sqlite3ParserFree(pEngine, sqlite3_free); #endif if( db->mallocFailed ){ pParse->rc = SQLITE_NOMEM_BKPT; } if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){ pParse->zErrMsg = sqlite3MPrintf(db, "%s", sqlite3ErrStr(pParse->rc)); } assert( pzErrMsg!=0 ); if( pParse->zErrMsg ){ *pzErrMsg = pParse->zErrMsg; sqlite3_log(pParse->rc, "%s in \"%s\"", *pzErrMsg, pParse->zTail); pParse->zErrMsg = 0; nErr++; } pParse->zTail = zSql; if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){ sqlite3VdbeDelete(pParse->pVdbe); pParse->pVdbe = 0; } #ifndef SQLITE_OMIT_SHARED_CACHE if( pParse->nested==0 ){ sqlite3DbFree(db, pParse->aTableLock); pParse->aTableLock = 0; pParse->nTableLock = 0; } #endif #ifndef SQLITE_OMIT_VIRTUALTABLE sqlite3_free(pParse->apVtabLock); #endif if( !IN_SPECIAL_PARSE ){ /* If the pParse->declareVtab flag is set, do not delete any table ** structure built up in pParse->pNewTable. The calling code (see vtab.c) ** will take responsibility for freeing the Table structure. */ sqlite3DeleteTable(db, pParse->pNewTable); } if( !IN_RENAME_OBJECT ){ sqlite3DeleteTrigger(db, pParse->pNewTrigger); } if( pParse->pWithToFree ) sqlite3WithDelete(db, pParse->pWithToFree); sqlite3DbFree(db, pParse->pVList); while( pParse->pAinc ){ AutoincInfo *p = pParse->pAinc; pParse->pAinc = p->pNext; sqlite3DbFreeNN(db, p); } while( pParse->pZombieTab ){ Table *p = pParse->pZombieTab; pParse->pZombieTab = p->pNextZombie; sqlite3DeleteTable(db, p); } db->pParse = pParse->pParentParse; pParse->pParentParse = 0; assert( nErr==0 || pParse->rc!=SQLITE_OK ); return nErr; } #ifdef SQLITE_ENABLE_NORMALIZE /* ** Insert a single space character into pStr if the current string ** ends with an identifier */ static void addSpaceSeparator(sqlite3_str *pStr){ if( pStr->nChar && sqlite3IsIdChar(pStr->zText[pStr->nChar-1]) ){ sqlite3_str_append(pStr, " ", 1); } } /* ** Compute a normalization of the SQL given by zSql[0..nSql-1]. Return ** the normalization in space obtained from sqlite3DbMalloc(). Or return ** NULL if anything goes wrong or if zSql is NULL. */ SQLITE_PRIVATE char *sqlite3Normalize( Vdbe *pVdbe, /* VM being reprepared */ const char *zSql /* The original SQL string */ ){ sqlite3 *db; /* The database connection */ int i; /* Next unread byte of zSql[] */ int n; /* length of current token */ int tokenType; /* type of current token */ int prevType = 0; /* Previous non-whitespace token */ int nParen; /* Number of nested levels of parentheses */ int iStartIN; /* Start of RHS of IN operator in z[] */ int nParenAtIN; /* Value of nParent at start of RHS of IN operator */ u32 j; /* Bytes of normalized SQL generated so far */ sqlite3_str *pStr; /* The normalized SQL string under construction */ db = sqlite3VdbeDb(pVdbe); tokenType = -1; nParen = iStartIN = nParenAtIN = 0; pStr = sqlite3_str_new(db); assert( pStr!=0 ); /* sqlite3_str_new() never returns NULL */ for(i=0; zSql[i] && pStr->accError==0; i+=n){ if( tokenType!=TK_SPACE ){ prevType = tokenType; } n = sqlite3GetToken((unsigned char*)zSql+i, &tokenType); if( NEVER(n<=0) ) break; switch( tokenType ){ case TK_SPACE: { break; } case TK_NULL: { if( prevType==TK_IS || prevType==TK_NOT ){ sqlite3_str_append(pStr, " NULL", 5); break; } /* Fall through */ } case TK_STRING: case TK_INTEGER: case TK_FLOAT: case TK_VARIABLE: case TK_BLOB: { sqlite3_str_append(pStr, "?", 1); break; } case TK_LP: { nParen++; if( prevType==TK_IN ){ iStartIN = pStr->nChar; nParenAtIN = nParen; } sqlite3_str_append(pStr, "(", 1); break; } case TK_RP: { if( iStartIN>0 && nParen==nParenAtIN ){ assert( pStr->nChar>=(u32)iStartIN ); pStr->nChar = iStartIN+1; sqlite3_str_append(pStr, "?,?,?", 5); iStartIN = 0; } nParen--; sqlite3_str_append(pStr, ")", 1); break; } case TK_ID: { iStartIN = 0; j = pStr->nChar; if( sqlite3Isquote(zSql[i]) ){ char *zId = sqlite3DbStrNDup(db, zSql+i, n); int nId; int eType = 0; if( zId==0 ) break; sqlite3Dequote(zId); if( zSql[i]=='"' && sqlite3VdbeUsesDoubleQuotedString(pVdbe, zId) ){ sqlite3_str_append(pStr, "?", 1); sqlite3DbFree(db, zId); break; } nId = sqlite3Strlen30(zId); if( sqlite3GetToken((u8*)zId, &eType)==nId && eType==TK_ID ){ addSpaceSeparator(pStr); sqlite3_str_append(pStr, zId, nId); }else{ sqlite3_str_appendf(pStr, "\"%w\"", zId); } sqlite3DbFree(db, zId); }else{ addSpaceSeparator(pStr); sqlite3_str_append(pStr, zSql+i, n); } while( jnChar ){ pStr->zText[j] = sqlite3Tolower(pStr->zText[j]); j++; } break; } case TK_SELECT: { iStartIN = 0; /* fall through */ } default: { if( sqlite3IsIdChar(zSql[i]) ) addSpaceSeparator(pStr); j = pStr->nChar; sqlite3_str_append(pStr, zSql+i, n); while( jnChar ){ pStr->zText[j] = sqlite3Toupper(pStr->zText[j]); j++; } break; } } } if( tokenType!=TK_SEMI ) sqlite3_str_append(pStr, ";", 1); return sqlite3_str_finish(pStr); } #endif /* SQLITE_ENABLE_NORMALIZE */ /************** End of tokenize.c ********************************************/ /************** Begin file complete.c ****************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** An tokenizer for SQL ** ** This file contains C code that implements the sqlite3_complete() API. ** This code used to be part of the tokenizer.c source file. But by ** separating it out, the code will be automatically omitted from ** static links that do not use it. */ /* #include "sqliteInt.h" */ #ifndef SQLITE_OMIT_COMPLETE /* ** This is defined in tokenize.c. We just have to import the definition. */ #ifndef SQLITE_AMALGAMATION #ifdef SQLITE_ASCII #define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0) #endif #ifdef SQLITE_EBCDIC SQLITE_PRIVATE const char sqlite3IsEbcdicIdChar[]; #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40])) #endif #endif /* SQLITE_AMALGAMATION */ /* ** Token types used by the sqlite3_complete() routine. See the header ** comments on that procedure for additional information. */ #define tkSEMI 0 #define tkWS 1 #define tkOTHER 2 #ifndef SQLITE_OMIT_TRIGGER #define tkEXPLAIN 3 #define tkCREATE 4 #define tkTEMP 5 #define tkTRIGGER 6 #define tkEND 7 #endif /* ** Return TRUE if the given SQL string ends in a semicolon. ** ** Special handling is require for CREATE TRIGGER statements. ** Whenever the CREATE TRIGGER keywords are seen, the statement ** must end with ";END;". ** ** This implementation uses a state machine with 8 states: ** ** (0) INVALID We have not yet seen a non-whitespace character. ** ** (1) START At the beginning or end of an SQL statement. This routine ** returns 1 if it ends in the START state and 0 if it ends ** in any other state. ** ** (2) NORMAL We are in the middle of statement which ends with a single ** semicolon. ** ** (3) EXPLAIN The keyword EXPLAIN has been seen at the beginning of ** a statement. ** ** (4) CREATE The keyword CREATE has been seen at the beginning of a ** statement, possibly preceded by EXPLAIN and/or followed by ** TEMP or TEMPORARY ** ** (5) TRIGGER We are in the middle of a trigger definition that must be ** ended by a semicolon, the keyword END, and another semicolon. ** ** (6) SEMI We've seen the first semicolon in the ";END;" that occurs at ** the end of a trigger definition. ** ** (7) END We've seen the ";END" of the ";END;" that occurs at the end ** of a trigger definition. ** ** Transitions between states above are determined by tokens extracted ** from the input. The following tokens are significant: ** ** (0) tkSEMI A semicolon. ** (1) tkWS Whitespace. ** (2) tkOTHER Any other SQL token. ** (3) tkEXPLAIN The "explain" keyword. ** (4) tkCREATE The "create" keyword. ** (5) tkTEMP The "temp" or "temporary" keyword. ** (6) tkTRIGGER The "trigger" keyword. ** (7) tkEND The "end" keyword. ** ** Whitespace never causes a state transition and is always ignored. ** This means that a SQL string of all whitespace is invalid. ** ** If we compile with SQLITE_OMIT_TRIGGER, all of the computation needed ** to recognize the end of a trigger can be omitted. All we have to do ** is look for a semicolon that is not part of an string or comment. */ SQLITE_API int sqlite3_complete(const char *zSql){ u8 state = 0; /* Current state, using numbers defined in header comment */ u8 token; /* Value of the next token */ #ifndef SQLITE_OMIT_TRIGGER /* A complex statement machine used to detect the end of a CREATE TRIGGER ** statement. This is the normal case. */ static const u8 trans[8][8] = { /* Token: */ /* State: ** SEMI WS OTHER EXPLAIN CREATE TEMP TRIGGER END */ /* 0 INVALID: */ { 1, 0, 2, 3, 4, 2, 2, 2, }, /* 1 START: */ { 1, 1, 2, 3, 4, 2, 2, 2, }, /* 2 NORMAL: */ { 1, 2, 2, 2, 2, 2, 2, 2, }, /* 3 EXPLAIN: */ { 1, 3, 3, 2, 4, 2, 2, 2, }, /* 4 CREATE: */ { 1, 4, 2, 2, 2, 4, 5, 2, }, /* 5 TRIGGER: */ { 6, 5, 5, 5, 5, 5, 5, 5, }, /* 6 SEMI: */ { 6, 6, 5, 5, 5, 5, 5, 7, }, /* 7 END: */ { 1, 7, 5, 5, 5, 5, 5, 5, }, }; #else /* If triggers are not supported by this compile then the statement machine ** used to detect the end of a statement is much simpler */ static const u8 trans[3][3] = { /* Token: */ /* State: ** SEMI WS OTHER */ /* 0 INVALID: */ { 1, 0, 2, }, /* 1 START: */ { 1, 1, 2, }, /* 2 NORMAL: */ { 1, 2, 2, }, }; #endif /* SQLITE_OMIT_TRIGGER */ #ifdef SQLITE_ENABLE_API_ARMOR if( zSql==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif while( *zSql ){ switch( *zSql ){ case ';': { /* A semicolon */ token = tkSEMI; break; } case ' ': case '\r': case '\t': case '\n': case '\f': { /* White space is ignored */ token = tkWS; break; } case '/': { /* C-style comments */ if( zSql[1]!='*' ){ token = tkOTHER; break; } zSql += 2; while( zSql[0] && (zSql[0]!='*' || zSql[1]!='/') ){ zSql++; } if( zSql[0]==0 ) return 0; zSql++; token = tkWS; break; } case '-': { /* SQL-style comments from "--" to end of line */ if( zSql[1]!='-' ){ token = tkOTHER; break; } while( *zSql && *zSql!='\n' ){ zSql++; } if( *zSql==0 ) return state==1; token = tkWS; break; } case '[': { /* Microsoft-style identifiers in [...] */ zSql++; while( *zSql && *zSql!=']' ){ zSql++; } if( *zSql==0 ) return 0; token = tkOTHER; break; } case '`': /* Grave-accent quoted symbols used by MySQL */ case '"': /* single- and double-quoted strings */ case '\'': { int c = *zSql; zSql++; while( *zSql && *zSql!=c ){ zSql++; } if( *zSql==0 ) return 0; token = tkOTHER; break; } default: { #ifdef SQLITE_EBCDIC unsigned char c; #endif if( IdChar((u8)*zSql) ){ /* Keywords and unquoted identifiers */ int nId; for(nId=1; IdChar(zSql[nId]); nId++){} #ifdef SQLITE_OMIT_TRIGGER token = tkOTHER; #else switch( *zSql ){ case 'c': case 'C': { if( nId==6 && sqlite3StrNICmp(zSql, "create", 6)==0 ){ token = tkCREATE; }else{ token = tkOTHER; } break; } case 't': case 'T': { if( nId==7 && sqlite3StrNICmp(zSql, "trigger", 7)==0 ){ token = tkTRIGGER; }else if( nId==4 && sqlite3StrNICmp(zSql, "temp", 4)==0 ){ token = tkTEMP; }else if( nId==9 && sqlite3StrNICmp(zSql, "temporary", 9)==0 ){ token = tkTEMP; }else{ token = tkOTHER; } break; } case 'e': case 'E': { if( nId==3 && sqlite3StrNICmp(zSql, "end", 3)==0 ){ token = tkEND; }else #ifndef SQLITE_OMIT_EXPLAIN if( nId==7 && sqlite3StrNICmp(zSql, "explain", 7)==0 ){ token = tkEXPLAIN; }else #endif { token = tkOTHER; } break; } default: { token = tkOTHER; break; } } #endif /* SQLITE_OMIT_TRIGGER */ zSql += nId-1; }else{ /* Operators and special symbols */ token = tkOTHER; } break; } } state = trans[state][token]; zSql++; } return state==1; } #ifndef SQLITE_OMIT_UTF16 /* ** This routine is the same as the sqlite3_complete() routine described ** above, except that the parameter is required to be UTF-16 encoded, not ** UTF-8. */ SQLITE_API int sqlite3_complete16(const void *zSql){ sqlite3_value *pVal; char const *zSql8; int rc; #ifndef SQLITE_OMIT_AUTOINIT rc = sqlite3_initialize(); if( rc ) return rc; #endif pVal = sqlite3ValueNew(0); sqlite3ValueSetStr(pVal, -1, zSql, SQLITE_UTF16NATIVE, SQLITE_STATIC); zSql8 = sqlite3ValueText(pVal, SQLITE_UTF8); if( zSql8 ){ rc = sqlite3_complete(zSql8); }else{ rc = SQLITE_NOMEM_BKPT; } sqlite3ValueFree(pVal); return rc & 0xff; } #endif /* SQLITE_OMIT_UTF16 */ #endif /* SQLITE_OMIT_COMPLETE */ /************** End of complete.c ********************************************/ /************** Begin file main.c ********************************************/ /* ** 2001 September 15 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Main file for the SQLite library. The routines in this file ** implement the programmer interface to the library. Routines in ** other files are for internal use by SQLite and should not be ** accessed by users of the library. */ /* #include "sqliteInt.h" */ #ifdef SQLITE_ENABLE_FTS3 /************** Include fts3.h in the middle of main.c ***********************/ /************** Begin file fts3.h ********************************************/ /* ** 2006 Oct 10 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This header file is used by programs that want to link against the ** FTS3 library. All it does is declare the sqlite3Fts3Init() interface. */ /* #include "sqlite3.h" */ #if 0 extern "C" { #endif /* __cplusplus */ SQLITE_PRIVATE int sqlite3Fts3Init(sqlite3 *db); #if 0 } /* extern "C" */ #endif /* __cplusplus */ /************** End of fts3.h ************************************************/ /************** Continuing where we left off in main.c ***********************/ #endif #ifdef SQLITE_ENABLE_RTREE /************** Include rtree.h in the middle of main.c **********************/ /************** Begin file rtree.h *******************************************/ /* ** 2008 May 26 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This header file is used by programs that want to link against the ** RTREE library. All it does is declare the sqlite3RtreeInit() interface. */ /* #include "sqlite3.h" */ #ifdef SQLITE_OMIT_VIRTUALTABLE # undef SQLITE_ENABLE_RTREE #endif #if 0 extern "C" { #endif /* __cplusplus */ SQLITE_PRIVATE int sqlite3RtreeInit(sqlite3 *db); #if 0 } /* extern "C" */ #endif /* __cplusplus */ /************** End of rtree.h ***********************************************/ /************** Continuing where we left off in main.c ***********************/ #endif #if defined(SQLITE_ENABLE_ICU) || defined(SQLITE_ENABLE_ICU_COLLATIONS) /************** Include sqliteicu.h in the middle of main.c ******************/ /************** Begin file sqliteicu.h ***************************************/ /* ** 2008 May 26 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This header file is used by programs that want to link against the ** ICU extension. All it does is declare the sqlite3IcuInit() interface. */ /* #include "sqlite3.h" */ #if 0 extern "C" { #endif /* __cplusplus */ SQLITE_PRIVATE int sqlite3IcuInit(sqlite3 *db); #if 0 } /* extern "C" */ #endif /* __cplusplus */ /************** End of sqliteicu.h *******************************************/ /************** Continuing where we left off in main.c ***********************/ #endif /* ** This is an extension initializer that is a no-op and always ** succeeds, except that it fails if the fault-simulation is set ** to 500. */ static int sqlite3TestExtInit(sqlite3 *db){ (void)db; return sqlite3FaultSim(500); } /* ** Forward declarations of external module initializer functions ** for modules that need them. */ #ifdef SQLITE_ENABLE_FTS1 SQLITE_PRIVATE int sqlite3Fts1Init(sqlite3*); #endif #ifdef SQLITE_ENABLE_FTS2 SQLITE_PRIVATE int sqlite3Fts2Init(sqlite3*); #endif #ifdef SQLITE_ENABLE_FTS5 SQLITE_PRIVATE int sqlite3Fts5Init(sqlite3*); #endif #ifdef SQLITE_ENABLE_JSON1 SQLITE_PRIVATE int sqlite3Json1Init(sqlite3*); #endif #ifdef SQLITE_ENABLE_STMTVTAB SQLITE_PRIVATE int sqlite3StmtVtabInit(sqlite3*); #endif /* ** An array of pointers to extension initializer functions for ** built-in extensions. */ static int (*const sqlite3BuiltinExtensions[])(sqlite3*) = { #ifdef SQLITE_ENABLE_FTS1 sqlite3Fts1Init, #endif #ifdef SQLITE_ENABLE_FTS2 sqlite3Fts2Init, #endif #ifdef SQLITE_ENABLE_FTS3 sqlite3Fts3Init, #endif #ifdef SQLITE_ENABLE_FTS5 sqlite3Fts5Init, #endif #if defined(SQLITE_ENABLE_ICU) || defined(SQLITE_ENABLE_ICU_COLLATIONS) sqlite3IcuInit, #endif #ifdef SQLITE_ENABLE_RTREE sqlite3RtreeInit, #endif #ifdef SQLITE_ENABLE_DBPAGE_VTAB sqlite3DbpageRegister, #endif #ifdef SQLITE_ENABLE_DBSTAT_VTAB sqlite3DbstatRegister, #endif sqlite3TestExtInit, #ifdef SQLITE_ENABLE_JSON1 sqlite3Json1Init, #endif #ifdef SQLITE_ENABLE_STMTVTAB sqlite3StmtVtabInit, #endif #ifdef SQLITE_ENABLE_BYTECODE_VTAB sqlite3VdbeBytecodeVtabInit, #endif }; #ifndef SQLITE_AMALGAMATION /* IMPLEMENTATION-OF: R-46656-45156 The sqlite3_version[] string constant ** contains the text of SQLITE_VERSION macro. */ SQLITE_API const char sqlite3_version[] = SQLITE_VERSION; #endif /* IMPLEMENTATION-OF: R-53536-42575 The sqlite3_libversion() function returns ** a pointer to the to the sqlite3_version[] string constant. */ SQLITE_API const char *sqlite3_libversion(void){ return sqlite3_version; } /* IMPLEMENTATION-OF: R-25063-23286 The sqlite3_sourceid() function returns a ** pointer to a string constant whose value is the same as the ** SQLITE_SOURCE_ID C preprocessor macro. Except if SQLite is built using ** an edited copy of the amalgamation, then the last four characters of ** the hash might be different from SQLITE_SOURCE_ID. */ /* SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; } */ /* IMPLEMENTATION-OF: R-35210-63508 The sqlite3_libversion_number() function ** returns an integer equal to SQLITE_VERSION_NUMBER. */ SQLITE_API int sqlite3_libversion_number(void){ return SQLITE_VERSION_NUMBER; } /* IMPLEMENTATION-OF: R-20790-14025 The sqlite3_threadsafe() function returns ** zero if and only if SQLite was compiled with mutexing code omitted due to ** the SQLITE_THREADSAFE compile-time option being set to 0. */ SQLITE_API int sqlite3_threadsafe(void){ return SQLITE_THREADSAFE; } /* ** When compiling the test fixture or with debugging enabled (on Win32), ** this variable being set to non-zero will cause OSTRACE macros to emit ** extra diagnostic information. */ #ifdef SQLITE_HAVE_OS_TRACE # ifndef SQLITE_DEBUG_OS_TRACE # define SQLITE_DEBUG_OS_TRACE 0 # endif int sqlite3OSTrace = SQLITE_DEBUG_OS_TRACE; #endif #if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE) /* ** If the following function pointer is not NULL and if ** SQLITE_ENABLE_IOTRACE is enabled, then messages describing ** I/O active are written using this function. These messages ** are intended for debugging activity only. */ SQLITE_API void (SQLITE_CDECL *sqlite3IoTrace)(const char*, ...) = 0; #endif /* ** If the following global variable points to a string which is the ** name of a directory, then that directory will be used to store ** temporary files. ** ** See also the "PRAGMA temp_store_directory" SQL command. */ SQLITE_API char *sqlite3_temp_directory = 0; /* ** If the following global variable points to a string which is the ** name of a directory, then that directory will be used to store ** all database files specified with a relative pathname. ** ** See also the "PRAGMA data_store_directory" SQL command. */ SQLITE_API char *sqlite3_data_directory = 0; /* ** Initialize SQLite. ** ** This routine must be called to initialize the memory allocation, ** VFS, and mutex subsystems prior to doing any serious work with ** SQLite. But as long as you do not compile with SQLITE_OMIT_AUTOINIT ** this routine will be called automatically by key routines such as ** sqlite3_open(). ** ** This routine is a no-op except on its very first call for the process, ** or for the first call after a call to sqlite3_shutdown. ** ** The first thread to call this routine runs the initialization to ** completion. If subsequent threads call this routine before the first ** thread has finished the initialization process, then the subsequent ** threads must block until the first thread finishes with the initialization. ** ** The first thread might call this routine recursively. Recursive ** calls to this routine should not block, of course. Otherwise the ** initialization process would never complete. ** ** Let X be the first thread to enter this routine. Let Y be some other ** thread. Then while the initial invocation of this routine by X is ** incomplete, it is required that: ** ** * Calls to this routine from Y must block until the outer-most ** call by X completes. ** ** * Recursive calls to this routine from thread X return immediately ** without blocking. */ SQLITE_API int sqlite3_initialize(void){ MUTEX_LOGIC( sqlite3_mutex *pMainMtx; ) /* The main static mutex */ int rc; /* Result code */ #ifdef SQLITE_EXTRA_INIT int bRunExtraInit = 0; /* Extra initialization needed */ #endif #ifdef SQLITE_OMIT_WSD rc = sqlite3_wsd_init(4096, 24); if( rc!=SQLITE_OK ){ return rc; } #endif /* If the following assert() fails on some obscure processor/compiler ** combination, the work-around is to set the correct pointer ** size at compile-time using -DSQLITE_PTRSIZE=n compile-time option */ assert( SQLITE_PTRSIZE==sizeof(char*) ); /* If SQLite is already completely initialized, then this call ** to sqlite3_initialize() should be a no-op. But the initialization ** must be complete. So isInit must not be set until the very end ** of this routine. */ if( sqlite3GlobalConfig.isInit ){ sqlite3MemoryBarrier(); return SQLITE_OK; } /* Make sure the mutex subsystem is initialized. If unable to ** initialize the mutex subsystem, return early with the error. ** If the system is so sick that we are unable to allocate a mutex, ** there is not much SQLite is going to be able to do. ** ** The mutex subsystem must take care of serializing its own ** initialization. */ rc = sqlite3MutexInit(); if( rc ) return rc; /* Initialize the malloc() system and the recursive pInitMutex mutex. ** This operation is protected by the STATIC_MAIN mutex. Note that ** MutexAlloc() is called for a static mutex prior to initializing the ** malloc subsystem - this implies that the allocation of a static ** mutex must not require support from the malloc subsystem. */ MUTEX_LOGIC( pMainMtx = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN); ) sqlite3_mutex_enter(pMainMtx); sqlite3GlobalConfig.isMutexInit = 1; if( !sqlite3GlobalConfig.isMallocInit ){ rc = sqlite3MallocInit(); } if( rc==SQLITE_OK ){ sqlite3GlobalConfig.isMallocInit = 1; if( !sqlite3GlobalConfig.pInitMutex ){ sqlite3GlobalConfig.pInitMutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE); if( sqlite3GlobalConfig.bCoreMutex && !sqlite3GlobalConfig.pInitMutex ){ rc = SQLITE_NOMEM_BKPT; } } } if( rc==SQLITE_OK ){ sqlite3GlobalConfig.nRefInitMutex++; } sqlite3_mutex_leave(pMainMtx); /* If rc is not SQLITE_OK at this point, then either the malloc ** subsystem could not be initialized or the system failed to allocate ** the pInitMutex mutex. Return an error in either case. */ if( rc!=SQLITE_OK ){ return rc; } /* Do the rest of the initialization under the recursive mutex so ** that we will be able to handle recursive calls into ** sqlite3_initialize(). The recursive calls normally come through ** sqlite3_os_init() when it invokes sqlite3_vfs_register(), but other ** recursive calls might also be possible. ** ** IMPLEMENTATION-OF: R-00140-37445 SQLite automatically serializes calls ** to the xInit method, so the xInit method need not be threadsafe. ** ** The following mutex is what serializes access to the appdef pcache xInit ** methods. The sqlite3_pcache_methods.xInit() all is embedded in the ** call to sqlite3PcacheInitialize(). */ sqlite3_mutex_enter(sqlite3GlobalConfig.pInitMutex); if( sqlite3GlobalConfig.isInit==0 && sqlite3GlobalConfig.inProgress==0 ){ sqlite3GlobalConfig.inProgress = 1; #ifdef SQLITE_ENABLE_SQLLOG { extern void sqlite3_init_sqllog(void); sqlite3_init_sqllog(); } #endif memset(&sqlite3BuiltinFunctions, 0, sizeof(sqlite3BuiltinFunctions)); sqlite3RegisterBuiltinFunctions(); if( sqlite3GlobalConfig.isPCacheInit==0 ){ rc = sqlite3PcacheInitialize(); } if( rc==SQLITE_OK ){ sqlite3GlobalConfig.isPCacheInit = 1; rc = sqlite3OsInit(); } #ifdef SQLITE_ENABLE_DESERIALIZE if( rc==SQLITE_OK ){ rc = sqlite3MemdbInit(); } #endif if( rc==SQLITE_OK ){ sqlite3PCacheBufferSetup( sqlite3GlobalConfig.pPage, sqlite3GlobalConfig.szPage, sqlite3GlobalConfig.nPage); sqlite3MemoryBarrier(); sqlite3GlobalConfig.isInit = 1; #ifdef SQLITE_EXTRA_INIT bRunExtraInit = 1; #endif } sqlite3GlobalConfig.inProgress = 0; } sqlite3_mutex_leave(sqlite3GlobalConfig.pInitMutex); /* Go back under the static mutex and clean up the recursive ** mutex to prevent a resource leak. */ sqlite3_mutex_enter(pMainMtx); sqlite3GlobalConfig.nRefInitMutex--; if( sqlite3GlobalConfig.nRefInitMutex<=0 ){ assert( sqlite3GlobalConfig.nRefInitMutex==0 ); sqlite3_mutex_free(sqlite3GlobalConfig.pInitMutex); sqlite3GlobalConfig.pInitMutex = 0; } sqlite3_mutex_leave(pMainMtx); /* The following is just a sanity check to make sure SQLite has ** been compiled correctly. It is important to run this code, but ** we don't want to run it too often and soak up CPU cycles for no ** reason. So we run it once during initialization. */ #ifndef NDEBUG #ifndef SQLITE_OMIT_FLOATING_POINT /* This section of code's only "output" is via assert() statements. */ if( rc==SQLITE_OK ){ u64 x = (((u64)1)<<63)-1; double y; assert(sizeof(x)==8); assert(sizeof(x)==sizeof(y)); memcpy(&y, &x, 8); assert( sqlite3IsNaN(y) ); } #endif #endif /* Do extra initialization steps requested by the SQLITE_EXTRA_INIT ** compile-time option. */ #ifdef SQLITE_EXTRA_INIT if( bRunExtraInit ){ int SQLITE_EXTRA_INIT(const char*); rc = SQLITE_EXTRA_INIT(0); } #endif return rc; } /* ** Undo the effects of sqlite3_initialize(). Must not be called while ** there are outstanding database connections or memory allocations or ** while any part of SQLite is otherwise in use in any thread. This ** routine is not threadsafe. But it is safe to invoke this routine ** on when SQLite is already shut down. If SQLite is already shut down ** when this routine is invoked, then this routine is a harmless no-op. */ SQLITE_API int sqlite3_shutdown(void){ #ifdef SQLITE_OMIT_WSD int rc = sqlite3_wsd_init(4096, 24); if( rc!=SQLITE_OK ){ return rc; } #endif if( sqlite3GlobalConfig.isInit ){ #ifdef SQLITE_EXTRA_SHUTDOWN void SQLITE_EXTRA_SHUTDOWN(void); SQLITE_EXTRA_SHUTDOWN(); #endif sqlite3_os_end(); sqlite3_reset_auto_extension(); sqlite3GlobalConfig.isInit = 0; } if( sqlite3GlobalConfig.isPCacheInit ){ sqlite3PcacheShutdown(); sqlite3GlobalConfig.isPCacheInit = 0; } if( sqlite3GlobalConfig.isMallocInit ){ sqlite3MallocEnd(); sqlite3GlobalConfig.isMallocInit = 0; #ifndef SQLITE_OMIT_SHUTDOWN_DIRECTORIES /* The heap subsystem has now been shutdown and these values are supposed ** to be NULL or point to memory that was obtained from sqlite3_malloc(), ** which would rely on that heap subsystem; therefore, make sure these ** values cannot refer to heap memory that was just invalidated when the ** heap subsystem was shutdown. This is only done if the current call to ** this function resulted in the heap subsystem actually being shutdown. */ sqlite3_data_directory = 0; sqlite3_temp_directory = 0; #endif } if( sqlite3GlobalConfig.isMutexInit ){ sqlite3MutexEnd(); sqlite3GlobalConfig.isMutexInit = 0; } return SQLITE_OK; } /* ** This API allows applications to modify the global configuration of ** the SQLite library at run-time. ** ** This routine should only be called when there are no outstanding ** database connections or memory allocations. This routine is not ** threadsafe. Failure to heed these warnings can lead to unpredictable ** behavior. */ SQLITE_API int sqlite3_config(int op, ...){ va_list ap; int rc = SQLITE_OK; /* sqlite3_config() shall return SQLITE_MISUSE if it is invoked while ** the SQLite library is in use. */ if( sqlite3GlobalConfig.isInit ) return SQLITE_MISUSE_BKPT; va_start(ap, op); switch( op ){ /* Mutex configuration options are only available in a threadsafe ** compile. */ #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 /* IMP: R-54466-46756 */ case SQLITE_CONFIG_SINGLETHREAD: { /* EVIDENCE-OF: R-02748-19096 This option sets the threading mode to ** Single-thread. */ sqlite3GlobalConfig.bCoreMutex = 0; /* Disable mutex on core */ sqlite3GlobalConfig.bFullMutex = 0; /* Disable mutex on connections */ break; } #endif #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 /* IMP: R-20520-54086 */ case SQLITE_CONFIG_MULTITHREAD: { /* EVIDENCE-OF: R-14374-42468 This option sets the threading mode to ** Multi-thread. */ sqlite3GlobalConfig.bCoreMutex = 1; /* Enable mutex on core */ sqlite3GlobalConfig.bFullMutex = 0; /* Disable mutex on connections */ break; } #endif #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 /* IMP: R-59593-21810 */ case SQLITE_CONFIG_SERIALIZED: { /* EVIDENCE-OF: R-41220-51800 This option sets the threading mode to ** Serialized. */ sqlite3GlobalConfig.bCoreMutex = 1; /* Enable mutex on core */ sqlite3GlobalConfig.bFullMutex = 1; /* Enable mutex on connections */ break; } #endif #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 /* IMP: R-63666-48755 */ case SQLITE_CONFIG_MUTEX: { /* Specify an alternative mutex implementation */ sqlite3GlobalConfig.mutex = *va_arg(ap, sqlite3_mutex_methods*); break; } #endif #if defined(SQLITE_THREADSAFE) && SQLITE_THREADSAFE>0 /* IMP: R-14450-37597 */ case SQLITE_CONFIG_GETMUTEX: { /* Retrieve the current mutex implementation */ *va_arg(ap, sqlite3_mutex_methods*) = sqlite3GlobalConfig.mutex; break; } #endif case SQLITE_CONFIG_MALLOC: { /* EVIDENCE-OF: R-55594-21030 The SQLITE_CONFIG_MALLOC option takes a ** single argument which is a pointer to an instance of the ** sqlite3_mem_methods structure. The argument specifies alternative ** low-level memory allocation routines to be used in place of the memory ** allocation routines built into SQLite. */ sqlite3GlobalConfig.m = *va_arg(ap, sqlite3_mem_methods*); break; } case SQLITE_CONFIG_GETMALLOC: { /* EVIDENCE-OF: R-51213-46414 The SQLITE_CONFIG_GETMALLOC option takes a ** single argument which is a pointer to an instance of the ** sqlite3_mem_methods structure. The sqlite3_mem_methods structure is ** filled with the currently defined memory allocation routines. */ if( sqlite3GlobalConfig.m.xMalloc==0 ) sqlite3MemSetDefault(); *va_arg(ap, sqlite3_mem_methods*) = sqlite3GlobalConfig.m; break; } case SQLITE_CONFIG_MEMSTATUS: { /* EVIDENCE-OF: R-61275-35157 The SQLITE_CONFIG_MEMSTATUS option takes ** single argument of type int, interpreted as a boolean, which enables ** or disables the collection of memory allocation statistics. */ sqlite3GlobalConfig.bMemstat = va_arg(ap, int); break; } case SQLITE_CONFIG_SMALL_MALLOC: { sqlite3GlobalConfig.bSmallMalloc = va_arg(ap, int); break; } case SQLITE_CONFIG_PAGECACHE: { /* EVIDENCE-OF: R-18761-36601 There are three arguments to ** SQLITE_CONFIG_PAGECACHE: A pointer to 8-byte aligned memory (pMem), ** the size of each page cache line (sz), and the number of cache lines ** (N). */ sqlite3GlobalConfig.pPage = va_arg(ap, void*); sqlite3GlobalConfig.szPage = va_arg(ap, int); sqlite3GlobalConfig.nPage = va_arg(ap, int); break; } case SQLITE_CONFIG_PCACHE_HDRSZ: { /* EVIDENCE-OF: R-39100-27317 The SQLITE_CONFIG_PCACHE_HDRSZ option takes ** a single parameter which is a pointer to an integer and writes into ** that integer the number of extra bytes per page required for each page ** in SQLITE_CONFIG_PAGECACHE. */ *va_arg(ap, int*) = sqlite3HeaderSizeBtree() + sqlite3HeaderSizePcache() + sqlite3HeaderSizePcache1(); break; } case SQLITE_CONFIG_PCACHE: { /* no-op */ break; } case SQLITE_CONFIG_GETPCACHE: { /* now an error */ rc = SQLITE_ERROR; break; } case SQLITE_CONFIG_PCACHE2: { /* EVIDENCE-OF: R-63325-48378 The SQLITE_CONFIG_PCACHE2 option takes a ** single argument which is a pointer to an sqlite3_pcache_methods2 ** object. This object specifies the interface to a custom page cache ** implementation. */ sqlite3GlobalConfig.pcache2 = *va_arg(ap, sqlite3_pcache_methods2*); break; } case SQLITE_CONFIG_GETPCACHE2: { /* EVIDENCE-OF: R-22035-46182 The SQLITE_CONFIG_GETPCACHE2 option takes a ** single argument which is a pointer to an sqlite3_pcache_methods2 ** object. SQLite copies of the current page cache implementation into ** that object. */ if( sqlite3GlobalConfig.pcache2.xInit==0 ){ sqlite3PCacheSetDefault(); } *va_arg(ap, sqlite3_pcache_methods2*) = sqlite3GlobalConfig.pcache2; break; } /* EVIDENCE-OF: R-06626-12911 The SQLITE_CONFIG_HEAP option is only ** available if SQLite is compiled with either SQLITE_ENABLE_MEMSYS3 or ** SQLITE_ENABLE_MEMSYS5 and returns SQLITE_ERROR if invoked otherwise. */ #if defined(SQLITE_ENABLE_MEMSYS3) || defined(SQLITE_ENABLE_MEMSYS5) case SQLITE_CONFIG_HEAP: { /* EVIDENCE-OF: R-19854-42126 There are three arguments to ** SQLITE_CONFIG_HEAP: An 8-byte aligned pointer to the memory, the ** number of bytes in the memory buffer, and the minimum allocation size. */ sqlite3GlobalConfig.pHeap = va_arg(ap, void*); sqlite3GlobalConfig.nHeap = va_arg(ap, int); sqlite3GlobalConfig.mnReq = va_arg(ap, int); if( sqlite3GlobalConfig.mnReq<1 ){ sqlite3GlobalConfig.mnReq = 1; }else if( sqlite3GlobalConfig.mnReq>(1<<12) ){ /* cap min request size at 2^12 */ sqlite3GlobalConfig.mnReq = (1<<12); } if( sqlite3GlobalConfig.pHeap==0 ){ /* EVIDENCE-OF: R-49920-60189 If the first pointer (the memory pointer) ** is NULL, then SQLite reverts to using its default memory allocator ** (the system malloc() implementation), undoing any prior invocation of ** SQLITE_CONFIG_MALLOC. ** ** Setting sqlite3GlobalConfig.m to all zeros will cause malloc to ** revert to its default implementation when sqlite3_initialize() is run */ memset(&sqlite3GlobalConfig.m, 0, sizeof(sqlite3GlobalConfig.m)); }else{ /* EVIDENCE-OF: R-61006-08918 If the memory pointer is not NULL then the ** alternative memory allocator is engaged to handle all of SQLites ** memory allocation needs. */ #ifdef SQLITE_ENABLE_MEMSYS3 sqlite3GlobalConfig.m = *sqlite3MemGetMemsys3(); #endif #ifdef SQLITE_ENABLE_MEMSYS5 sqlite3GlobalConfig.m = *sqlite3MemGetMemsys5(); #endif } break; } #endif case SQLITE_CONFIG_LOOKASIDE: { sqlite3GlobalConfig.szLookaside = va_arg(ap, int); sqlite3GlobalConfig.nLookaside = va_arg(ap, int); break; } /* Record a pointer to the logger function and its first argument. ** The default is NULL. Logging is disabled if the function pointer is ** NULL. */ case SQLITE_CONFIG_LOG: { /* MSVC is picky about pulling func ptrs from va lists. ** http://support.microsoft.com/kb/47961 ** sqlite3GlobalConfig.xLog = va_arg(ap, void(*)(void*,int,const char*)); */ typedef void(*LOGFUNC_t)(void*,int,const char*); sqlite3GlobalConfig.xLog = va_arg(ap, LOGFUNC_t); sqlite3GlobalConfig.pLogArg = va_arg(ap, void*); break; } /* EVIDENCE-OF: R-55548-33817 The compile-time setting for URI filenames ** can be changed at start-time using the ** sqlite3_config(SQLITE_CONFIG_URI,1) or ** sqlite3_config(SQLITE_CONFIG_URI,0) configuration calls. */ case SQLITE_CONFIG_URI: { /* EVIDENCE-OF: R-25451-61125 The SQLITE_CONFIG_URI option takes a single ** argument of type int. If non-zero, then URI handling is globally ** enabled. If the parameter is zero, then URI handling is globally ** disabled. */ sqlite3GlobalConfig.bOpenUri = va_arg(ap, int); break; } case SQLITE_CONFIG_COVERING_INDEX_SCAN: { /* EVIDENCE-OF: R-36592-02772 The SQLITE_CONFIG_COVERING_INDEX_SCAN ** option takes a single integer argument which is interpreted as a ** boolean in order to enable or disable the use of covering indices for ** full table scans in the query optimizer. */ sqlite3GlobalConfig.bUseCis = va_arg(ap, int); break; } #ifdef SQLITE_ENABLE_SQLLOG case SQLITE_CONFIG_SQLLOG: { typedef void(*SQLLOGFUNC_t)(void*, sqlite3*, const char*, int); sqlite3GlobalConfig.xSqllog = va_arg(ap, SQLLOGFUNC_t); sqlite3GlobalConfig.pSqllogArg = va_arg(ap, void *); break; } #endif case SQLITE_CONFIG_MMAP_SIZE: { /* EVIDENCE-OF: R-58063-38258 SQLITE_CONFIG_MMAP_SIZE takes two 64-bit ** integer (sqlite3_int64) values that are the default mmap size limit ** (the default setting for PRAGMA mmap_size) and the maximum allowed ** mmap size limit. */ sqlite3_int64 szMmap = va_arg(ap, sqlite3_int64); sqlite3_int64 mxMmap = va_arg(ap, sqlite3_int64); /* EVIDENCE-OF: R-53367-43190 If either argument to this option is ** negative, then that argument is changed to its compile-time default. ** ** EVIDENCE-OF: R-34993-45031 The maximum allowed mmap size will be ** silently truncated if necessary so that it does not exceed the ** compile-time maximum mmap size set by the SQLITE_MAX_MMAP_SIZE ** compile-time option. */ if( mxMmap<0 || mxMmap>SQLITE_MAX_MMAP_SIZE ){ mxMmap = SQLITE_MAX_MMAP_SIZE; } if( szMmap<0 ) szMmap = SQLITE_DEFAULT_MMAP_SIZE; if( szMmap>mxMmap) szMmap = mxMmap; sqlite3GlobalConfig.mxMmap = mxMmap; sqlite3GlobalConfig.szMmap = szMmap; break; } #if SQLITE_OS_WIN && defined(SQLITE_WIN32_MALLOC) /* IMP: R-04780-55815 */ case SQLITE_CONFIG_WIN32_HEAPSIZE: { /* EVIDENCE-OF: R-34926-03360 SQLITE_CONFIG_WIN32_HEAPSIZE takes a 32-bit ** unsigned integer value that specifies the maximum size of the created ** heap. */ sqlite3GlobalConfig.nHeap = va_arg(ap, int); break; } #endif case SQLITE_CONFIG_PMASZ: { sqlite3GlobalConfig.szPma = va_arg(ap, unsigned int); break; } case SQLITE_CONFIG_STMTJRNL_SPILL: { sqlite3GlobalConfig.nStmtSpill = va_arg(ap, int); break; } #ifdef SQLITE_ENABLE_SORTER_REFERENCES case SQLITE_CONFIG_SORTERREF_SIZE: { int iVal = va_arg(ap, int); if( iVal<0 ){ iVal = SQLITE_DEFAULT_SORTERREF_SIZE; } sqlite3GlobalConfig.szSorterRef = (u32)iVal; break; } #endif /* SQLITE_ENABLE_SORTER_REFERENCES */ #ifdef SQLITE_ENABLE_DESERIALIZE case SQLITE_CONFIG_MEMDB_MAXSIZE: { sqlite3GlobalConfig.mxMemdbSize = va_arg(ap, sqlite3_int64); break; } #endif /* SQLITE_ENABLE_DESERIALIZE */ default: { rc = SQLITE_ERROR; break; } } va_end(ap); return rc; } /* ** Set up the lookaside buffers for a database connection. ** Return SQLITE_OK on success. ** If lookaside is already active, return SQLITE_BUSY. ** ** The sz parameter is the number of bytes in each lookaside slot. ** The cnt parameter is the number of slots. If pStart is NULL the ** space for the lookaside memory is obtained from sqlite3_malloc(). ** If pStart is not NULL then it is sz*cnt bytes of memory to use for ** the lookaside memory. */ static int setupLookaside(sqlite3 *db, void *pBuf, int sz, int cnt){ #ifndef SQLITE_OMIT_LOOKASIDE void *pStart; sqlite3_int64 szAlloc = sz*(sqlite3_int64)cnt; int nBig; /* Number of full-size slots */ int nSm; /* Number smaller LOOKASIDE_SMALL-byte slots */ if( sqlite3LookasideUsed(db,0)>0 ){ return SQLITE_BUSY; } /* Free any existing lookaside buffer for this handle before ** allocating a new one so we don't have to have space for ** both at the same time. */ if( db->lookaside.bMalloced ){ sqlite3_free(db->lookaside.pStart); } /* The size of a lookaside slot after ROUNDDOWN8 needs to be larger ** than a pointer to be useful. */ sz = ROUNDDOWN8(sz); /* IMP: R-33038-09382 */ if( sz<=(int)sizeof(LookasideSlot*) ) sz = 0; if( cnt<0 ) cnt = 0; if( sz==0 || cnt==0 ){ sz = 0; pStart = 0; }else if( pBuf==0 ){ sqlite3BeginBenignMalloc(); pStart = sqlite3Malloc( szAlloc ); /* IMP: R-61949-35727 */ sqlite3EndBenignMalloc(); if( pStart ) szAlloc = sqlite3MallocSize(pStart); }else{ pStart = pBuf; } #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE if( sz>=LOOKASIDE_SMALL*3 ){ nBig = szAlloc/(3*LOOKASIDE_SMALL+sz); nSm = (szAlloc - sz*nBig)/LOOKASIDE_SMALL; }else if( sz>=LOOKASIDE_SMALL*2 ){ nBig = szAlloc/(LOOKASIDE_SMALL+sz); nSm = (szAlloc - sz*nBig)/LOOKASIDE_SMALL; }else #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ if( sz>0 ){ nBig = szAlloc/sz; nSm = 0; }else{ nBig = nSm = 0; } db->lookaside.pStart = pStart; db->lookaside.pInit = 0; db->lookaside.pFree = 0; db->lookaside.sz = (u16)sz; db->lookaside.szTrue = (u16)sz; if( pStart ){ int i; LookasideSlot *p; assert( sz > (int)sizeof(LookasideSlot*) ); p = (LookasideSlot*)pStart; for(i=0; ipNext = db->lookaside.pInit; db->lookaside.pInit = p; p = (LookasideSlot*)&((u8*)p)[sz]; } #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE db->lookaside.pSmallInit = 0; db->lookaside.pSmallFree = 0; db->lookaside.pMiddle = p; for(i=0; ipNext = db->lookaside.pSmallInit; db->lookaside.pSmallInit = p; p = (LookasideSlot*)&((u8*)p)[LOOKASIDE_SMALL]; } #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ assert( ((uptr)p)<=szAlloc + (uptr)pStart ); db->lookaside.pEnd = p; db->lookaside.bDisable = 0; db->lookaside.bMalloced = pBuf==0 ?1:0; db->lookaside.nSlot = nBig+nSm; }else{ db->lookaside.pStart = db; #ifndef SQLITE_OMIT_TWOSIZE_LOOKASIDE db->lookaside.pSmallInit = 0; db->lookaside.pSmallFree = 0; db->lookaside.pMiddle = db; #endif /* SQLITE_OMIT_TWOSIZE_LOOKASIDE */ db->lookaside.pEnd = db; db->lookaside.bDisable = 1; db->lookaside.sz = 0; db->lookaside.bMalloced = 0; db->lookaside.nSlot = 0; } assert( sqlite3LookasideUsed(db,0)==0 ); #endif /* SQLITE_OMIT_LOOKASIDE */ return SQLITE_OK; } /* ** Return the mutex associated with a database connection. */ SQLITE_API sqlite3_mutex *sqlite3_db_mutex(sqlite3 *db){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return db->mutex; } /* ** Free up as much memory as we can from the given database ** connection. */ SQLITE_API int sqlite3_db_release_memory(sqlite3 *db){ int i; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); sqlite3BtreeEnterAll(db); for(i=0; inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt ){ Pager *pPager = sqlite3BtreePager(pBt); sqlite3PagerShrink(pPager); } } sqlite3BtreeLeaveAll(db); sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } /* ** Flush any dirty pages in the pager-cache for any attached database ** to disk. */ SQLITE_API int sqlite3_db_cacheflush(sqlite3 *db){ int i; int rc = SQLITE_OK; int bSeenBusy = 0; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); sqlite3BtreeEnterAll(db); for(i=0; rc==SQLITE_OK && inDb; i++){ Btree *pBt = db->aDb[i].pBt; if( pBt && sqlite3BtreeIsInTrans(pBt) ){ Pager *pPager = sqlite3BtreePager(pBt); rc = sqlite3PagerFlush(pPager); if( rc==SQLITE_BUSY ){ bSeenBusy = 1; rc = SQLITE_OK; } } } sqlite3BtreeLeaveAll(db); sqlite3_mutex_leave(db->mutex); return ((rc==SQLITE_OK && bSeenBusy) ? SQLITE_BUSY : rc); } /* ** Configuration settings for an individual database connection */ SQLITE_API int sqlite3_db_config(sqlite3 *db, int op, ...){ va_list ap; int rc; va_start(ap, op); switch( op ){ case SQLITE_DBCONFIG_MAINDBNAME: { /* IMP: R-06824-28531 */ /* IMP: R-36257-52125 */ db->aDb[0].zDbSName = va_arg(ap,char*); rc = SQLITE_OK; break; } case SQLITE_DBCONFIG_LOOKASIDE: { void *pBuf = va_arg(ap, void*); /* IMP: R-26835-10964 */ int sz = va_arg(ap, int); /* IMP: R-47871-25994 */ int cnt = va_arg(ap, int); /* IMP: R-04460-53386 */ rc = setupLookaside(db, pBuf, sz, cnt); break; } default: { static const struct { int op; /* The opcode */ u32 mask; /* Mask of the bit in sqlite3.flags to set/clear */ } aFlagOp[] = { { SQLITE_DBCONFIG_ENABLE_FKEY, SQLITE_ForeignKeys }, { SQLITE_DBCONFIG_ENABLE_TRIGGER, SQLITE_EnableTrigger }, { SQLITE_DBCONFIG_ENABLE_VIEW, SQLITE_EnableView }, { SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER, SQLITE_Fts3Tokenizer }, { SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION, SQLITE_LoadExtension }, { SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE, SQLITE_NoCkptOnClose }, { SQLITE_DBCONFIG_ENABLE_QPSG, SQLITE_EnableQPSG }, { SQLITE_DBCONFIG_TRIGGER_EQP, SQLITE_TriggerEQP }, { SQLITE_DBCONFIG_RESET_DATABASE, SQLITE_ResetDatabase }, { SQLITE_DBCONFIG_DEFENSIVE, SQLITE_Defensive }, { SQLITE_DBCONFIG_WRITABLE_SCHEMA, SQLITE_WriteSchema| SQLITE_NoSchemaError }, { SQLITE_DBCONFIG_LEGACY_ALTER_TABLE, SQLITE_LegacyAlter }, { SQLITE_DBCONFIG_DQS_DDL, SQLITE_DqsDDL }, { SQLITE_DBCONFIG_DQS_DML, SQLITE_DqsDML }, { SQLITE_DBCONFIG_LEGACY_FILE_FORMAT, SQLITE_LegacyFileFmt }, { SQLITE_DBCONFIG_TRUSTED_SCHEMA, SQLITE_TrustedSchema }, }; unsigned int i; rc = SQLITE_ERROR; /* IMP: R-42790-23372 */ for(i=0; iflags; if( onoff>0 ){ db->flags |= aFlagOp[i].mask; }else if( onoff==0 ){ db->flags &= ~(u64)aFlagOp[i].mask; } if( oldFlags!=db->flags ){ sqlite3ExpirePreparedStatements(db, 0); } if( pRes ){ *pRes = (db->flags & aFlagOp[i].mask)!=0; } rc = SQLITE_OK; break; } } break; } } va_end(ap); return rc; } /* ** This is the default collating function named "BINARY" which is always ** available. */ static int binCollFunc( void *NotUsed, int nKey1, const void *pKey1, int nKey2, const void *pKey2 ){ int rc, n; UNUSED_PARAMETER(NotUsed); n = nKey1xCmp!=binCollFunc || strcmp(p->zName,"BINARY")==0 ); return p==0 || p->xCmp==binCollFunc; } /* ** Another built-in collating sequence: NOCASE. ** ** This collating sequence is intended to be used for "case independent ** comparison". SQLite's knowledge of upper and lower case equivalents ** extends only to the 26 characters used in the English language. ** ** At the moment there is only a UTF-8 implementation. */ static int nocaseCollatingFunc( void *NotUsed, int nKey1, const void *pKey1, int nKey2, const void *pKey2 ){ int r = sqlite3StrNICmp( (const char *)pKey1, (const char *)pKey2, (nKey1lastRowid; } /* ** Set the value returned by the sqlite3_last_insert_rowid() API function. */ SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3 *db, sqlite3_int64 iRowid){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return; } #endif sqlite3_mutex_enter(db->mutex); db->lastRowid = iRowid; sqlite3_mutex_leave(db->mutex); } /* ** Return the number of changes in the most recent call to sqlite3_exec(). */ SQLITE_API int sqlite3_changes(sqlite3 *db){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return db->nChange; } /* ** Return the number of changes since the database handle was opened. */ SQLITE_API int sqlite3_total_changes(sqlite3 *db){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return db->nTotalChange; } /* ** Close all open savepoints. This function only manipulates fields of the ** database handle object, it does not close any savepoints that may be open ** at the b-tree/pager level. */ SQLITE_PRIVATE void sqlite3CloseSavepoints(sqlite3 *db){ while( db->pSavepoint ){ Savepoint *pTmp = db->pSavepoint; db->pSavepoint = pTmp->pNext; sqlite3DbFree(db, pTmp); } db->nSavepoint = 0; db->nStatement = 0; db->isTransactionSavepoint = 0; } /* ** Invoke the destructor function associated with FuncDef p, if any. Except, ** if this is not the last copy of the function, do not invoke it. Multiple ** copies of a single function are created when create_function() is called ** with SQLITE_ANY as the encoding. */ static void functionDestroy(sqlite3 *db, FuncDef *p){ FuncDestructor *pDestructor = p->u.pDestructor; if( pDestructor ){ pDestructor->nRef--; if( pDestructor->nRef==0 ){ pDestructor->xDestroy(pDestructor->pUserData); sqlite3DbFree(db, pDestructor); } } } /* ** Disconnect all sqlite3_vtab objects that belong to database connection ** db. This is called when db is being closed. */ static void disconnectAllVtab(sqlite3 *db){ #ifndef SQLITE_OMIT_VIRTUALTABLE int i; HashElem *p; sqlite3BtreeEnterAll(db); for(i=0; inDb; i++){ Schema *pSchema = db->aDb[i].pSchema; if( pSchema ){ for(p=sqliteHashFirst(&pSchema->tblHash); p; p=sqliteHashNext(p)){ Table *pTab = (Table *)sqliteHashData(p); if( IsVirtual(pTab) ) sqlite3VtabDisconnect(db, pTab); } } } for(p=sqliteHashFirst(&db->aModule); p; p=sqliteHashNext(p)){ Module *pMod = (Module *)sqliteHashData(p); if( pMod->pEpoTab ){ sqlite3VtabDisconnect(db, pMod->pEpoTab); } } sqlite3VtabUnlockList(db); sqlite3BtreeLeaveAll(db); #else UNUSED_PARAMETER(db); #endif } /* ** Return TRUE if database connection db has unfinalized prepared ** statements or unfinished sqlite3_backup objects. */ static int connectionIsBusy(sqlite3 *db){ int j; assert( sqlite3_mutex_held(db->mutex) ); if( db->pVdbe ) return 1; for(j=0; jnDb; j++){ Btree *pBt = db->aDb[j].pBt; if( pBt && sqlite3BtreeIsInBackup(pBt) ) return 1; } return 0; } /* ** Close an existing SQLite database */ static int sqlite3Close(sqlite3 *db, int forceZombie){ if( !db ){ /* EVIDENCE-OF: R-63257-11740 Calling sqlite3_close() or ** sqlite3_close_v2() with a NULL pointer argument is a harmless no-op. */ return SQLITE_OK; } if( !sqlite3SafetyCheckSickOrOk(db) ){ return SQLITE_MISUSE_BKPT; } sqlite3_mutex_enter(db->mutex); if( db->mTrace & SQLITE_TRACE_CLOSE ){ db->trace.xV2(SQLITE_TRACE_CLOSE, db->pTraceArg, db, 0); } /* Force xDisconnect calls on all virtual tables */ disconnectAllVtab(db); /* If a transaction is open, the disconnectAllVtab() call above ** will not have called the xDisconnect() method on any virtual ** tables in the db->aVTrans[] array. The following sqlite3VtabRollback() ** call will do so. We need to do this before the check for active ** SQL statements below, as the v-table implementation may be storing ** some prepared statements internally. */ sqlite3VtabRollback(db); /* Legacy behavior (sqlite3_close() behavior) is to return ** SQLITE_BUSY if the connection can not be closed immediately. */ if( !forceZombie && connectionIsBusy(db) ){ sqlite3ErrorWithMsg(db, SQLITE_BUSY, "unable to close due to unfinalized " "statements or unfinished backups"); sqlite3_mutex_leave(db->mutex); return SQLITE_BUSY; } #ifdef SQLITE_ENABLE_SQLLOG if( sqlite3GlobalConfig.xSqllog ){ /* Closing the handle. Fourth parameter is passed the value 2. */ sqlite3GlobalConfig.xSqllog(sqlite3GlobalConfig.pSqllogArg, db, 0, 2); } #endif /* Convert the connection into a zombie and then close it. */ db->magic = SQLITE_MAGIC_ZOMBIE; sqlite3LeaveMutexAndCloseZombie(db); return SQLITE_OK; } /* ** Two variations on the public interface for closing a database ** connection. The sqlite3_close() version returns SQLITE_BUSY and ** leaves the connection option if there are unfinalized prepared ** statements or unfinished sqlite3_backups. The sqlite3_close_v2() ** version forces the connection to become a zombie if there are ** unclosed resources, and arranges for deallocation when the last ** prepare statement or sqlite3_backup closes. */ SQLITE_API int sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); } SQLITE_API int sqlite3_close_v2(sqlite3 *db){ return sqlite3Close(db,1); } /* ** Close the mutex on database connection db. ** ** Furthermore, if database connection db is a zombie (meaning that there ** has been a prior call to sqlite3_close(db) or sqlite3_close_v2(db)) and ** every sqlite3_stmt has now been finalized and every sqlite3_backup has ** finished, then free all resources. */ SQLITE_PRIVATE void sqlite3LeaveMutexAndCloseZombie(sqlite3 *db){ HashElem *i; /* Hash table iterator */ int j; /* If there are outstanding sqlite3_stmt or sqlite3_backup objects ** or if the connection has not yet been closed by sqlite3_close_v2(), ** then just leave the mutex and return. */ if( db->magic!=SQLITE_MAGIC_ZOMBIE || connectionIsBusy(db) ){ sqlite3_mutex_leave(db->mutex); return; } /* If we reach this point, it means that the database connection has ** closed all sqlite3_stmt and sqlite3_backup objects and has been ** passed to sqlite3_close (meaning that it is a zombie). Therefore, ** go ahead and free all resources. */ /* If a transaction is open, roll it back. This also ensures that if ** any database schemas have been modified by an uncommitted transaction ** they are reset. And that the required b-tree mutex is held to make ** the pager rollback and schema reset an atomic operation. */ sqlite3RollbackAll(db, SQLITE_OK); /* Free any outstanding Savepoint structures. */ sqlite3CloseSavepoints(db); /* Close all database connections */ for(j=0; jnDb; j++){ struct Db *pDb = &db->aDb[j]; if( pDb->pBt ){ sqlite3BtreeClose(pDb->pBt); pDb->pBt = 0; if( j!=1 ){ pDb->pSchema = 0; } } } /* Clear the TEMP schema separately and last */ if( db->aDb[1].pSchema ){ sqlite3SchemaClear(db->aDb[1].pSchema); } sqlite3VtabUnlockList(db); /* Free up the array of auxiliary databases */ sqlite3CollapseDatabaseArray(db); assert( db->nDb<=2 ); assert( db->aDb==db->aDbStatic ); /* Tell the code in notify.c that the connection no longer holds any ** locks and does not require any further unlock-notify callbacks. */ sqlite3ConnectionClosed(db); for(i=sqliteHashFirst(&db->aFunc); i; i=sqliteHashNext(i)){ FuncDef *pNext, *p; p = sqliteHashData(i); do{ functionDestroy(db, p); pNext = p->pNext; sqlite3DbFree(db, p); p = pNext; }while( p ); } sqlite3HashClear(&db->aFunc); for(i=sqliteHashFirst(&db->aCollSeq); i; i=sqliteHashNext(i)){ CollSeq *pColl = (CollSeq *)sqliteHashData(i); /* Invoke any destructors registered for collation sequence user data. */ for(j=0; j<3; j++){ if( pColl[j].xDel ){ pColl[j].xDel(pColl[j].pUser); } } sqlite3DbFree(db, pColl); } sqlite3HashClear(&db->aCollSeq); #ifndef SQLITE_OMIT_VIRTUALTABLE for(i=sqliteHashFirst(&db->aModule); i; i=sqliteHashNext(i)){ Module *pMod = (Module *)sqliteHashData(i); sqlite3VtabEponymousTableClear(db, pMod); sqlite3VtabModuleUnref(db, pMod); } sqlite3HashClear(&db->aModule); #endif sqlite3Error(db, SQLITE_OK); /* Deallocates any cached error strings. */ sqlite3ValueFree(db->pErr); sqlite3CloseExtensions(db); #if SQLITE_USER_AUTHENTICATION sqlite3_free(db->auth.zAuthUser); sqlite3_free(db->auth.zAuthPW); #endif db->magic = SQLITE_MAGIC_ERROR; /* The temp-database schema is allocated differently from the other schema ** objects (using sqliteMalloc() directly, instead of sqlite3BtreeSchema()). ** So it needs to be freed here. Todo: Why not roll the temp schema into ** the same sqliteMalloc() as the one that allocates the database ** structure? */ sqlite3DbFree(db, db->aDb[1].pSchema); sqlite3_mutex_leave(db->mutex); db->magic = SQLITE_MAGIC_CLOSED; sqlite3_mutex_free(db->mutex); assert( sqlite3LookasideUsed(db,0)==0 ); if( db->lookaside.bMalloced ){ sqlite3_free(db->lookaside.pStart); } sqlite3_free(db); } /* ** Rollback all database files. If tripCode is not SQLITE_OK, then ** any write cursors are invalidated ("tripped" - as in "tripping a circuit ** breaker") and made to return tripCode if there are any further ** attempts to use that cursor. Read cursors remain open and valid ** but are "saved" in case the table pages are moved around. */ SQLITE_PRIVATE void sqlite3RollbackAll(sqlite3 *db, int tripCode){ int i; int inTrans = 0; int schemaChange; assert( sqlite3_mutex_held(db->mutex) ); sqlite3BeginBenignMalloc(); /* Obtain all b-tree mutexes before making any calls to BtreeRollback(). ** This is important in case the transaction being rolled back has ** modified the database schema. If the b-tree mutexes are not taken ** here, then another shared-cache connection might sneak in between ** the database rollback and schema reset, which can cause false ** corruption reports in some cases. */ sqlite3BtreeEnterAll(db); schemaChange = (db->mDbFlags & DBFLAG_SchemaChange)!=0 && db->init.busy==0; for(i=0; inDb; i++){ Btree *p = db->aDb[i].pBt; if( p ){ if( sqlite3BtreeIsInTrans(p) ){ inTrans = 1; } sqlite3BtreeRollback(p, tripCode, !schemaChange); } } sqlite3VtabRollback(db); sqlite3EndBenignMalloc(); if( schemaChange ){ sqlite3ExpirePreparedStatements(db, 0); sqlite3ResetAllSchemasOfConnection(db); } sqlite3BtreeLeaveAll(db); /* Any deferred constraint violations have now been resolved. */ db->nDeferredCons = 0; db->nDeferredImmCons = 0; db->flags &= ~(u64)SQLITE_DeferFKs; /* If one has been configured, invoke the rollback-hook callback */ if( db->xRollbackCallback && (inTrans || !db->autoCommit) ){ db->xRollbackCallback(db->pRollbackArg); } } /* ** Return a static string containing the name corresponding to the error code ** specified in the argument. */ #if defined(SQLITE_NEED_ERR_NAME) SQLITE_PRIVATE const char *sqlite3ErrName(int rc){ const char *zName = 0; int i, origRc = rc; for(i=0; i<2 && zName==0; i++, rc &= 0xff){ switch( rc ){ case SQLITE_OK: zName = "SQLITE_OK"; break; case SQLITE_ERROR: zName = "SQLITE_ERROR"; break; case SQLITE_ERROR_SNAPSHOT: zName = "SQLITE_ERROR_SNAPSHOT"; break; case SQLITE_INTERNAL: zName = "SQLITE_INTERNAL"; break; case SQLITE_PERM: zName = "SQLITE_PERM"; break; case SQLITE_ABORT: zName = "SQLITE_ABORT"; break; case SQLITE_ABORT_ROLLBACK: zName = "SQLITE_ABORT_ROLLBACK"; break; case SQLITE_BUSY: zName = "SQLITE_BUSY"; break; case SQLITE_BUSY_RECOVERY: zName = "SQLITE_BUSY_RECOVERY"; break; case SQLITE_BUSY_SNAPSHOT: zName = "SQLITE_BUSY_SNAPSHOT"; break; case SQLITE_LOCKED: zName = "SQLITE_LOCKED"; break; case SQLITE_LOCKED_SHAREDCACHE: zName = "SQLITE_LOCKED_SHAREDCACHE";break; case SQLITE_NOMEM: zName = "SQLITE_NOMEM"; break; case SQLITE_READONLY: zName = "SQLITE_READONLY"; break; case SQLITE_READONLY_RECOVERY: zName = "SQLITE_READONLY_RECOVERY"; break; case SQLITE_READONLY_CANTINIT: zName = "SQLITE_READONLY_CANTINIT"; break; case SQLITE_READONLY_ROLLBACK: zName = "SQLITE_READONLY_ROLLBACK"; break; case SQLITE_READONLY_DBMOVED: zName = "SQLITE_READONLY_DBMOVED"; break; case SQLITE_READONLY_DIRECTORY: zName = "SQLITE_READONLY_DIRECTORY";break; case SQLITE_INTERRUPT: zName = "SQLITE_INTERRUPT"; break; case SQLITE_IOERR: zName = "SQLITE_IOERR"; break; case SQLITE_IOERR_READ: zName = "SQLITE_IOERR_READ"; break; case SQLITE_IOERR_SHORT_READ: zName = "SQLITE_IOERR_SHORT_READ"; break; case SQLITE_IOERR_WRITE: zName = "SQLITE_IOERR_WRITE"; break; case SQLITE_IOERR_FSYNC: zName = "SQLITE_IOERR_FSYNC"; break; case SQLITE_IOERR_DIR_FSYNC: zName = "SQLITE_IOERR_DIR_FSYNC"; break; case SQLITE_IOERR_TRUNCATE: zName = "SQLITE_IOERR_TRUNCATE"; break; case SQLITE_IOERR_FSTAT: zName = "SQLITE_IOERR_FSTAT"; break; case SQLITE_IOERR_UNLOCK: zName = "SQLITE_IOERR_UNLOCK"; break; case SQLITE_IOERR_RDLOCK: zName = "SQLITE_IOERR_RDLOCK"; break; case SQLITE_IOERR_DELETE: zName = "SQLITE_IOERR_DELETE"; break; case SQLITE_IOERR_NOMEM: zName = "SQLITE_IOERR_NOMEM"; break; case SQLITE_IOERR_ACCESS: zName = "SQLITE_IOERR_ACCESS"; break; case SQLITE_IOERR_CHECKRESERVEDLOCK: zName = "SQLITE_IOERR_CHECKRESERVEDLOCK"; break; case SQLITE_IOERR_LOCK: zName = "SQLITE_IOERR_LOCK"; break; case SQLITE_IOERR_CLOSE: zName = "SQLITE_IOERR_CLOSE"; break; case SQLITE_IOERR_DIR_CLOSE: zName = "SQLITE_IOERR_DIR_CLOSE"; break; case SQLITE_IOERR_SHMOPEN: zName = "SQLITE_IOERR_SHMOPEN"; break; case SQLITE_IOERR_SHMSIZE: zName = "SQLITE_IOERR_SHMSIZE"; break; case SQLITE_IOERR_SHMLOCK: zName = "SQLITE_IOERR_SHMLOCK"; break; case SQLITE_IOERR_SHMMAP: zName = "SQLITE_IOERR_SHMMAP"; break; case SQLITE_IOERR_SEEK: zName = "SQLITE_IOERR_SEEK"; break; case SQLITE_IOERR_DELETE_NOENT: zName = "SQLITE_IOERR_DELETE_NOENT";break; case SQLITE_IOERR_MMAP: zName = "SQLITE_IOERR_MMAP"; break; case SQLITE_IOERR_GETTEMPPATH: zName = "SQLITE_IOERR_GETTEMPPATH"; break; case SQLITE_IOERR_CONVPATH: zName = "SQLITE_IOERR_CONVPATH"; break; case SQLITE_CORRUPT: zName = "SQLITE_CORRUPT"; break; case SQLITE_CORRUPT_VTAB: zName = "SQLITE_CORRUPT_VTAB"; break; case SQLITE_NOTFOUND: zName = "SQLITE_NOTFOUND"; break; case SQLITE_FULL: zName = "SQLITE_FULL"; break; case SQLITE_CANTOPEN: zName = "SQLITE_CANTOPEN"; break; case SQLITE_CANTOPEN_NOTEMPDIR: zName = "SQLITE_CANTOPEN_NOTEMPDIR";break; case SQLITE_CANTOPEN_ISDIR: zName = "SQLITE_CANTOPEN_ISDIR"; break; case SQLITE_CANTOPEN_FULLPATH: zName = "SQLITE_CANTOPEN_FULLPATH"; break; case SQLITE_CANTOPEN_CONVPATH: zName = "SQLITE_CANTOPEN_CONVPATH"; break; case SQLITE_CANTOPEN_SYMLINK: zName = "SQLITE_CANTOPEN_SYMLINK"; break; case SQLITE_PROTOCOL: zName = "SQLITE_PROTOCOL"; break; case SQLITE_EMPTY: zName = "SQLITE_EMPTY"; break; case SQLITE_SCHEMA: zName = "SQLITE_SCHEMA"; break; case SQLITE_TOOBIG: zName = "SQLITE_TOOBIG"; break; case SQLITE_CONSTRAINT: zName = "SQLITE_CONSTRAINT"; break; case SQLITE_CONSTRAINT_UNIQUE: zName = "SQLITE_CONSTRAINT_UNIQUE"; break; case SQLITE_CONSTRAINT_TRIGGER: zName = "SQLITE_CONSTRAINT_TRIGGER";break; case SQLITE_CONSTRAINT_FOREIGNKEY: zName = "SQLITE_CONSTRAINT_FOREIGNKEY"; break; case SQLITE_CONSTRAINT_CHECK: zName = "SQLITE_CONSTRAINT_CHECK"; break; case SQLITE_CONSTRAINT_PRIMARYKEY: zName = "SQLITE_CONSTRAINT_PRIMARYKEY"; break; case SQLITE_CONSTRAINT_NOTNULL: zName = "SQLITE_CONSTRAINT_NOTNULL";break; case SQLITE_CONSTRAINT_COMMITHOOK: zName = "SQLITE_CONSTRAINT_COMMITHOOK"; break; case SQLITE_CONSTRAINT_VTAB: zName = "SQLITE_CONSTRAINT_VTAB"; break; case SQLITE_CONSTRAINT_FUNCTION: zName = "SQLITE_CONSTRAINT_FUNCTION"; break; case SQLITE_CONSTRAINT_ROWID: zName = "SQLITE_CONSTRAINT_ROWID"; break; case SQLITE_MISMATCH: zName = "SQLITE_MISMATCH"; break; case SQLITE_MISUSE: zName = "SQLITE_MISUSE"; break; case SQLITE_NOLFS: zName = "SQLITE_NOLFS"; break; case SQLITE_AUTH: zName = "SQLITE_AUTH"; break; case SQLITE_FORMAT: zName = "SQLITE_FORMAT"; break; case SQLITE_RANGE: zName = "SQLITE_RANGE"; break; case SQLITE_NOTADB: zName = "SQLITE_NOTADB"; break; case SQLITE_ROW: zName = "SQLITE_ROW"; break; case SQLITE_NOTICE: zName = "SQLITE_NOTICE"; break; case SQLITE_NOTICE_RECOVER_WAL: zName = "SQLITE_NOTICE_RECOVER_WAL";break; case SQLITE_NOTICE_RECOVER_ROLLBACK: zName = "SQLITE_NOTICE_RECOVER_ROLLBACK"; break; case SQLITE_WARNING: zName = "SQLITE_WARNING"; break; case SQLITE_WARNING_AUTOINDEX: zName = "SQLITE_WARNING_AUTOINDEX"; break; case SQLITE_DONE: zName = "SQLITE_DONE"; break; } } if( zName==0 ){ static char zBuf[50]; sqlite3_snprintf(sizeof(zBuf), zBuf, "SQLITE_UNKNOWN(%d)", origRc); zName = zBuf; } return zName; } #endif /* ** Return a static string that describes the kind of error specified in the ** argument. */ SQLITE_PRIVATE const char *sqlite3ErrStr(int rc){ static const char* const aMsg[] = { /* SQLITE_OK */ "not an error", /* SQLITE_ERROR */ "SQL logic error", /* SQLITE_INTERNAL */ 0, /* SQLITE_PERM */ "access permission denied", /* SQLITE_ABORT */ "query aborted", /* SQLITE_BUSY */ "database is locked", /* SQLITE_LOCKED */ "database table is locked", /* SQLITE_NOMEM */ "out of memory", /* SQLITE_READONLY */ "attempt to write a readonly database", /* SQLITE_INTERRUPT */ "interrupted", /* SQLITE_IOERR */ "disk I/O error", /* SQLITE_CORRUPT */ "database disk image is malformed", /* SQLITE_NOTFOUND */ "unknown operation", /* SQLITE_FULL */ "database or disk is full", /* SQLITE_CANTOPEN */ "unable to open database file", /* SQLITE_PROTOCOL */ "locking protocol", /* SQLITE_EMPTY */ 0, /* SQLITE_SCHEMA */ "database schema has changed", /* SQLITE_TOOBIG */ "string or blob too big", /* SQLITE_CONSTRAINT */ "constraint failed", /* SQLITE_MISMATCH */ "datatype mismatch", /* SQLITE_MISUSE */ "bad parameter or other API misuse", #ifdef SQLITE_DISABLE_LFS /* SQLITE_NOLFS */ "large file support is disabled", #else /* SQLITE_NOLFS */ 0, #endif /* SQLITE_AUTH */ "authorization denied", /* SQLITE_FORMAT */ 0, /* SQLITE_RANGE */ "column index out of range", /* SQLITE_NOTADB */ "file is not a database", /* SQLITE_NOTICE */ "notification message", /* SQLITE_WARNING */ "warning message", }; const char *zErr = "unknown error"; switch( rc ){ case SQLITE_ABORT_ROLLBACK: { zErr = "abort due to ROLLBACK"; break; } case SQLITE_ROW: { zErr = "another row available"; break; } case SQLITE_DONE: { zErr = "no more rows available"; break; } default: { rc &= 0xff; if( ALWAYS(rc>=0) && rcbusyTimeout; int delay, prior; assert( count>=0 ); if( count < NDELAY ){ delay = delays[count]; prior = totals[count]; }else{ delay = delays[NDELAY-1]; prior = totals[NDELAY-1] + delay*(count-(NDELAY-1)); } if( prior + delay > tmout ){ delay = tmout - prior; if( delay<=0 ) return 0; } sqlite3OsSleep(db->pVfs, delay*1000); return 1; #else /* This case for unix systems that lack usleep() support. Sleeping ** must be done in increments of whole seconds */ sqlite3 *db = (sqlite3 *)ptr; int tmout = ((sqlite3 *)ptr)->busyTimeout; if( (count+1)*1000 > tmout ){ return 0; } sqlite3OsSleep(db->pVfs, 1000000); return 1; #endif } /* ** Invoke the given busy handler. ** ** This routine is called when an operation failed to acquire a ** lock on VFS file pFile. ** ** If this routine returns non-zero, the lock is retried. If it ** returns 0, the operation aborts with an SQLITE_BUSY error. */ SQLITE_PRIVATE int sqlite3InvokeBusyHandler(BusyHandler *p){ int rc; if( p->xBusyHandler==0 || p->nBusy<0 ) return 0; rc = p->xBusyHandler(p->pBusyArg, p->nBusy); if( rc==0 ){ p->nBusy = -1; }else{ p->nBusy++; } return rc; } /* ** This routine sets the busy callback for an Sqlite database to the ** given callback function with the given argument. */ SQLITE_API int sqlite3_busy_handler( sqlite3 *db, int (*xBusy)(void*,int), void *pArg ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); db->busyHandler.xBusyHandler = xBusy; db->busyHandler.pBusyArg = pArg; db->busyHandler.nBusy = 0; db->busyTimeout = 0; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #ifndef SQLITE_OMIT_PROGRESS_CALLBACK /* ** This routine sets the progress callback for an Sqlite database to the ** given callback function with the given argument. The progress callback will ** be invoked every nOps opcodes. */ SQLITE_API void sqlite3_progress_handler( sqlite3 *db, int nOps, int (*xProgress)(void*), void *pArg ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return; } #endif sqlite3_mutex_enter(db->mutex); if( nOps>0 ){ db->xProgress = xProgress; db->nProgressOps = (unsigned)nOps; db->pProgressArg = pArg; }else{ db->xProgress = 0; db->nProgressOps = 0; db->pProgressArg = 0; } sqlite3_mutex_leave(db->mutex); } #endif /* ** This routine installs a default busy handler that waits for the ** specified number of milliseconds before returning 0. */ SQLITE_API int sqlite3_busy_timeout(sqlite3 *db, int ms){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif if( ms>0 ){ sqlite3_busy_handler(db, (int(*)(void*,int))sqliteDefaultBusyCallback, (void*)db); db->busyTimeout = ms; }else{ sqlite3_busy_handler(db, 0, 0); } return SQLITE_OK; } /* ** Cause any pending operation to stop at its earliest opportunity. */ SQLITE_API void sqlite3_interrupt(sqlite3 *db){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) && (db==0 || db->magic!=SQLITE_MAGIC_ZOMBIE) ){ (void)SQLITE_MISUSE_BKPT; return; } #endif AtomicStore(&db->u1.isInterrupted, 1); } /* ** This function is exactly the same as sqlite3_create_function(), except ** that it is designed to be called by internal code. The difference is ** that if a malloc() fails in sqlite3_create_function(), an error code ** is returned and the mallocFailed flag cleared. */ SQLITE_PRIVATE int sqlite3CreateFunc( sqlite3 *db, const char *zFunctionName, int nArg, int enc, void *pUserData, void (*xSFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value **), FuncDestructor *pDestructor ){ FuncDef *p; int nName; int extraFlags; assert( sqlite3_mutex_held(db->mutex) ); assert( xValue==0 || xSFunc==0 ); if( zFunctionName==0 /* Must have a valid name */ || (xSFunc!=0 && xFinal!=0) /* Not both xSFunc and xFinal */ || ((xFinal==0)!=(xStep==0)) /* Both or neither of xFinal and xStep */ || ((xValue==0)!=(xInverse==0)) /* Both or neither of xValue, xInverse */ || (nArg<-1 || nArg>SQLITE_MAX_FUNCTION_ARG) || (255<(nName = sqlite3Strlen30( zFunctionName))) ){ return SQLITE_MISUSE_BKPT; } assert( SQLITE_FUNC_CONSTANT==SQLITE_DETERMINISTIC ); assert( SQLITE_FUNC_DIRECT==SQLITE_DIRECTONLY ); extraFlags = enc & (SQLITE_DETERMINISTIC|SQLITE_DIRECTONLY| SQLITE_SUBTYPE|SQLITE_INNOCUOUS); enc &= (SQLITE_FUNC_ENCMASK|SQLITE_ANY); /* The SQLITE_INNOCUOUS flag is the same bit as SQLITE_FUNC_UNSAFE. But ** the meaning is inverted. So flip the bit. */ assert( SQLITE_FUNC_UNSAFE==SQLITE_INNOCUOUS ); extraFlags ^= SQLITE_FUNC_UNSAFE; #ifndef SQLITE_OMIT_UTF16 /* If SQLITE_UTF16 is specified as the encoding type, transform this ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally. ** ** If SQLITE_ANY is specified, add three versions of the function ** to the hash table. */ if( enc==SQLITE_UTF16 ){ enc = SQLITE_UTF16NATIVE; }else if( enc==SQLITE_ANY ){ int rc; rc = sqlite3CreateFunc(db, zFunctionName, nArg, (SQLITE_UTF8|extraFlags)^SQLITE_FUNC_UNSAFE, pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor); if( rc==SQLITE_OK ){ rc = sqlite3CreateFunc(db, zFunctionName, nArg, (SQLITE_UTF16LE|extraFlags)^SQLITE_FUNC_UNSAFE, pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor); } if( rc!=SQLITE_OK ){ return rc; } enc = SQLITE_UTF16BE; } #else enc = SQLITE_UTF8; #endif /* Check if an existing function is being overridden or deleted. If so, ** and there are active VMs, then return SQLITE_BUSY. If a function ** is being overridden/deleted but there are no active VMs, allow the ** operation to continue but invalidate all precompiled statements. */ p = sqlite3FindFunction(db, zFunctionName, nArg, (u8)enc, 0); if( p && (p->funcFlags & SQLITE_FUNC_ENCMASK)==(u32)enc && p->nArg==nArg ){ if( db->nVdbeActive ){ sqlite3ErrorWithMsg(db, SQLITE_BUSY, "unable to delete/modify user-function due to active statements"); assert( !db->mallocFailed ); return SQLITE_BUSY; }else{ sqlite3ExpirePreparedStatements(db, 0); } } p = sqlite3FindFunction(db, zFunctionName, nArg, (u8)enc, 1); assert(p || db->mallocFailed); if( !p ){ return SQLITE_NOMEM_BKPT; } /* If an older version of the function with a configured destructor is ** being replaced invoke the destructor function here. */ functionDestroy(db, p); if( pDestructor ){ pDestructor->nRef++; } p->u.pDestructor = pDestructor; p->funcFlags = (p->funcFlags & SQLITE_FUNC_ENCMASK) | extraFlags; testcase( p->funcFlags & SQLITE_DETERMINISTIC ); testcase( p->funcFlags & SQLITE_DIRECTONLY ); p->xSFunc = xSFunc ? xSFunc : xStep; p->xFinalize = xFinal; p->xValue = xValue; p->xInverse = xInverse; p->pUserData = pUserData; p->nArg = (u16)nArg; return SQLITE_OK; } /* ** Worker function used by utf-8 APIs that create new functions: ** ** sqlite3_create_function() ** sqlite3_create_function_v2() ** sqlite3_create_window_function() */ static int createFunctionApi( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xSFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value**), void(*xDestroy)(void*) ){ int rc = SQLITE_ERROR; FuncDestructor *pArg = 0; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); if( xDestroy ){ pArg = (FuncDestructor *)sqlite3Malloc(sizeof(FuncDestructor)); if( !pArg ){ sqlite3OomFault(db); xDestroy(p); goto out; } pArg->nRef = 0; pArg->xDestroy = xDestroy; pArg->pUserData = p; } rc = sqlite3CreateFunc(db, zFunc, nArg, enc, p, xSFunc, xStep, xFinal, xValue, xInverse, pArg ); if( pArg && pArg->nRef==0 ){ assert( rc!=SQLITE_OK ); xDestroy(p); sqlite3_free(pArg); } out: rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Create new user functions. */ SQLITE_API int sqlite3_create_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xSFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*) ){ return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep, xFinal, 0, 0, 0); } SQLITE_API int sqlite3_create_function_v2( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xSFunc)(sqlite3_context*,int,sqlite3_value **), void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xDestroy)(void *) ){ return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep, xFinal, 0, 0, xDestroy); } SQLITE_API int sqlite3_create_window_function( sqlite3 *db, const char *zFunc, int nArg, int enc, void *p, void (*xStep)(sqlite3_context*,int,sqlite3_value **), void (*xFinal)(sqlite3_context*), void (*xValue)(sqlite3_context*), void (*xInverse)(sqlite3_context*,int,sqlite3_value **), void (*xDestroy)(void *) ){ return createFunctionApi(db, zFunc, nArg, enc, p, 0, xStep, xFinal, xValue, xInverse, xDestroy); } #ifndef SQLITE_OMIT_UTF16 SQLITE_API int sqlite3_create_function16( sqlite3 *db, const void *zFunctionName, int nArg, int eTextRep, void *p, void (*xSFunc)(sqlite3_context*,int,sqlite3_value**), void (*xStep)(sqlite3_context*,int,sqlite3_value**), void (*xFinal)(sqlite3_context*) ){ int rc; char *zFunc8; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zFunctionName==0 ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); assert( !db->mallocFailed ); zFunc8 = sqlite3Utf16to8(db, zFunctionName, -1, SQLITE_UTF16NATIVE); rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xSFunc,xStep,xFinal,0,0,0); sqlite3DbFree(db, zFunc8); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } #endif /* ** The following is the implementation of an SQL function that always ** fails with an error message stating that the function is used in the ** wrong context. The sqlite3_overload_function() API might construct ** SQL function that use this routine so that the functions will exist ** for name resolution but are actually overloaded by the xFindFunction ** method of virtual tables. */ static void sqlite3InvalidFunction( sqlite3_context *context, /* The function calling context */ int NotUsed, /* Number of arguments to the function */ sqlite3_value **NotUsed2 /* Value of each argument */ ){ const char *zName = (const char*)sqlite3_user_data(context); char *zErr; UNUSED_PARAMETER2(NotUsed, NotUsed2); zErr = sqlite3_mprintf( "unable to use function %s in the requested context", zName); sqlite3_result_error(context, zErr, -1); sqlite3_free(zErr); } /* ** Declare that a function has been overloaded by a virtual table. ** ** If the function already exists as a regular global function, then ** this routine is a no-op. If the function does not exist, then create ** a new one that always throws a run-time error. ** ** When virtual tables intend to provide an overloaded function, they ** should call this routine to make sure the global function exists. ** A global function must exist in order for name resolution to work ** properly. */ SQLITE_API int sqlite3_overload_function( sqlite3 *db, const char *zName, int nArg ){ int rc; char *zCopy; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zName==0 || nArg<-2 ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); rc = sqlite3FindFunction(db, zName, nArg, SQLITE_UTF8, 0)!=0; sqlite3_mutex_leave(db->mutex); if( rc ) return SQLITE_OK; zCopy = sqlite3_mprintf(zName); if( zCopy==0 ) return SQLITE_NOMEM; return sqlite3_create_function_v2(db, zName, nArg, SQLITE_UTF8, zCopy, sqlite3InvalidFunction, 0, 0, sqlite3_free); } #ifndef SQLITE_OMIT_TRACE /* ** Register a trace function. The pArg from the previously registered trace ** is returned. ** ** A NULL trace function means that no tracing is executes. A non-NULL ** trace is a pointer to a function that is invoked at the start of each ** SQL statement. */ #ifndef SQLITE_OMIT_DEPRECATED SQLITE_API void *sqlite3_trace(sqlite3 *db, void(*xTrace)(void*,const char*), void *pArg){ void *pOld; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pOld = db->pTraceArg; db->mTrace = xTrace ? SQLITE_TRACE_LEGACY : 0; db->trace.xLegacy = xTrace; db->pTraceArg = pArg; sqlite3_mutex_leave(db->mutex); return pOld; } #endif /* SQLITE_OMIT_DEPRECATED */ /* Register a trace callback using the version-2 interface. */ SQLITE_API int sqlite3_trace_v2( sqlite3 *db, /* Trace this connection */ unsigned mTrace, /* Mask of events to be traced */ int(*xTrace)(unsigned,void*,void*,void*), /* Callback to invoke */ void *pArg /* Context */ ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); if( mTrace==0 ) xTrace = 0; if( xTrace==0 ) mTrace = 0; db->mTrace = mTrace; db->trace.xV2 = xTrace; db->pTraceArg = pArg; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #ifndef SQLITE_OMIT_DEPRECATED /* ** Register a profile function. The pArg from the previously registered ** profile function is returned. ** ** A NULL profile function means that no profiling is executes. A non-NULL ** profile is a pointer to a function that is invoked at the conclusion of ** each SQL statement that is run. */ SQLITE_API void *sqlite3_profile( sqlite3 *db, void (*xProfile)(void*,const char*,sqlite_uint64), void *pArg ){ void *pOld; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pOld = db->pProfileArg; db->xProfile = xProfile; db->pProfileArg = pArg; db->mTrace &= SQLITE_TRACE_NONLEGACY_MASK; if( db->xProfile ) db->mTrace |= SQLITE_TRACE_XPROFILE; sqlite3_mutex_leave(db->mutex); return pOld; } #endif /* SQLITE_OMIT_DEPRECATED */ #endif /* SQLITE_OMIT_TRACE */ /* ** Register a function to be invoked when a transaction commits. ** If the invoked function returns non-zero, then the commit becomes a ** rollback. */ SQLITE_API void *sqlite3_commit_hook( sqlite3 *db, /* Attach the hook to this database */ int (*xCallback)(void*), /* Function to invoke on each commit */ void *pArg /* Argument to the function */ ){ void *pOld; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pOld = db->pCommitArg; db->xCommitCallback = xCallback; db->pCommitArg = pArg; sqlite3_mutex_leave(db->mutex); return pOld; } /* ** Register a callback to be invoked each time a row is updated, ** inserted or deleted using this database connection. */ SQLITE_API void *sqlite3_update_hook( sqlite3 *db, /* Attach the hook to this database */ void (*xCallback)(void*,int,char const *,char const *,sqlite_int64), void *pArg /* Argument to the function */ ){ void *pRet; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pRet = db->pUpdateArg; db->xUpdateCallback = xCallback; db->pUpdateArg = pArg; sqlite3_mutex_leave(db->mutex); return pRet; } /* ** Register a callback to be invoked each time a transaction is rolled ** back by this database connection. */ SQLITE_API void *sqlite3_rollback_hook( sqlite3 *db, /* Attach the hook to this database */ void (*xCallback)(void*), /* Callback function */ void *pArg /* Argument to the function */ ){ void *pRet; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pRet = db->pRollbackArg; db->xRollbackCallback = xCallback; db->pRollbackArg = pArg; sqlite3_mutex_leave(db->mutex); return pRet; } #ifdef SQLITE_ENABLE_PREUPDATE_HOOK /* ** Register a callback to be invoked each time a row is updated, ** inserted or deleted using this database connection. */ SQLITE_API void *sqlite3_preupdate_hook( sqlite3 *db, /* Attach the hook to this database */ void(*xCallback)( /* Callback function */ void*,sqlite3*,int,char const*,char const*,sqlite3_int64,sqlite3_int64), void *pArg /* First callback argument */ ){ void *pRet; sqlite3_mutex_enter(db->mutex); pRet = db->pPreUpdateArg; db->xPreUpdateCallback = xCallback; db->pPreUpdateArg = pArg; sqlite3_mutex_leave(db->mutex); return pRet; } #endif /* SQLITE_ENABLE_PREUPDATE_HOOK */ #ifndef SQLITE_OMIT_WAL /* ** The sqlite3_wal_hook() callback registered by sqlite3_wal_autocheckpoint(). ** Invoke sqlite3_wal_checkpoint if the number of frames in the log file ** is greater than sqlite3.pWalArg cast to an integer (the value configured by ** wal_autocheckpoint()). */ SQLITE_PRIVATE int sqlite3WalDefaultHook( void *pClientData, /* Argument */ sqlite3 *db, /* Connection */ const char *zDb, /* Database */ int nFrame /* Size of WAL */ ){ if( nFrame>=SQLITE_PTR_TO_INT(pClientData) ){ sqlite3BeginBenignMalloc(); sqlite3_wal_checkpoint(db, zDb); sqlite3EndBenignMalloc(); } return SQLITE_OK; } #endif /* SQLITE_OMIT_WAL */ /* ** Configure an sqlite3_wal_hook() callback to automatically checkpoint ** a database after committing a transaction if there are nFrame or ** more frames in the log file. Passing zero or a negative value as the ** nFrame parameter disables automatic checkpoints entirely. ** ** The callback registered by this function replaces any existing callback ** registered using sqlite3_wal_hook(). Likewise, registering a callback ** using sqlite3_wal_hook() disables the automatic checkpoint mechanism ** configured by this function. */ SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int nFrame){ #ifdef SQLITE_OMIT_WAL UNUSED_PARAMETER(db); UNUSED_PARAMETER(nFrame); #else #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif if( nFrame>0 ){ sqlite3_wal_hook(db, sqlite3WalDefaultHook, SQLITE_INT_TO_PTR(nFrame)); }else{ sqlite3_wal_hook(db, 0, 0); } #endif return SQLITE_OK; } /* ** Register a callback to be invoked each time a transaction is written ** into the write-ahead-log by this database connection. */ SQLITE_API void *sqlite3_wal_hook( sqlite3 *db, /* Attach the hook to this db handle */ int(*xCallback)(void *, sqlite3*, const char*, int), void *pArg /* First argument passed to xCallback() */ ){ #ifndef SQLITE_OMIT_WAL void *pRet; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif sqlite3_mutex_enter(db->mutex); pRet = db->pWalArg; db->xWalCallback = xCallback; db->pWalArg = pArg; sqlite3_mutex_leave(db->mutex); return pRet; #else return 0; #endif } /* ** Checkpoint database zDb. */ SQLITE_API int sqlite3_wal_checkpoint_v2( sqlite3 *db, /* Database handle */ const char *zDb, /* Name of attached database (or NULL) */ int eMode, /* SQLITE_CHECKPOINT_* value */ int *pnLog, /* OUT: Size of WAL log in frames */ int *pnCkpt /* OUT: Total number of frames checkpointed */ ){ #ifdef SQLITE_OMIT_WAL return SQLITE_OK; #else int rc; /* Return code */ int iDb = SQLITE_MAX_ATTACHED; /* sqlite3.aDb[] index of db to checkpoint */ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif /* Initialize the output variables to -1 in case an error occurs. */ if( pnLog ) *pnLog = -1; if( pnCkpt ) *pnCkpt = -1; assert( SQLITE_CHECKPOINT_PASSIVE==0 ); assert( SQLITE_CHECKPOINT_FULL==1 ); assert( SQLITE_CHECKPOINT_RESTART==2 ); assert( SQLITE_CHECKPOINT_TRUNCATE==3 ); if( eModeSQLITE_CHECKPOINT_TRUNCATE ){ /* EVIDENCE-OF: R-03996-12088 The M parameter must be a valid checkpoint ** mode: */ return SQLITE_MISUSE; } sqlite3_mutex_enter(db->mutex); if( zDb && zDb[0] ){ iDb = sqlite3FindDbName(db, zDb); } if( iDb<0 ){ rc = SQLITE_ERROR; sqlite3ErrorWithMsg(db, SQLITE_ERROR, "unknown database: %s", zDb); }else{ db->busyHandler.nBusy = 0; rc = sqlite3Checkpoint(db, iDb, eMode, pnLog, pnCkpt); sqlite3Error(db, rc); } rc = sqlite3ApiExit(db, rc); /* If there are no active statements, clear the interrupt flag at this ** point. */ if( db->nVdbeActive==0 ){ AtomicStore(&db->u1.isInterrupted, 0); } sqlite3_mutex_leave(db->mutex); return rc; #endif } /* ** Checkpoint database zDb. If zDb is NULL, or if the buffer zDb points ** to contains a zero-length string, all attached databases are ** checkpointed. */ SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb){ /* EVIDENCE-OF: R-41613-20553 The sqlite3_wal_checkpoint(D,X) is equivalent to ** sqlite3_wal_checkpoint_v2(D,X,SQLITE_CHECKPOINT_PASSIVE,0,0). */ return sqlite3_wal_checkpoint_v2(db,zDb,SQLITE_CHECKPOINT_PASSIVE,0,0); } #ifndef SQLITE_OMIT_WAL /* ** Run a checkpoint on database iDb. This is a no-op if database iDb is ** not currently open in WAL mode. ** ** If a transaction is open on the database being checkpointed, this ** function returns SQLITE_LOCKED and a checkpoint is not attempted. If ** an error occurs while running the checkpoint, an SQLite error code is ** returned (i.e. SQLITE_IOERR). Otherwise, SQLITE_OK. ** ** The mutex on database handle db should be held by the caller. The mutex ** associated with the specific b-tree being checkpointed is taken by ** this function while the checkpoint is running. ** ** If iDb is passed SQLITE_MAX_ATTACHED, then all attached databases are ** checkpointed. If an error is encountered it is returned immediately - ** no attempt is made to checkpoint any remaining databases. ** ** Parameter eMode is one of SQLITE_CHECKPOINT_PASSIVE, FULL, RESTART ** or TRUNCATE. */ SQLITE_PRIVATE int sqlite3Checkpoint(sqlite3 *db, int iDb, int eMode, int *pnLog, int *pnCkpt){ int rc = SQLITE_OK; /* Return code */ int i; /* Used to iterate through attached dbs */ int bBusy = 0; /* True if SQLITE_BUSY has been encountered */ assert( sqlite3_mutex_held(db->mutex) ); assert( !pnLog || *pnLog==-1 ); assert( !pnCkpt || *pnCkpt==-1 ); for(i=0; inDb && rc==SQLITE_OK; i++){ if( i==iDb || iDb==SQLITE_MAX_ATTACHED ){ rc = sqlite3BtreeCheckpoint(db->aDb[i].pBt, eMode, pnLog, pnCkpt); pnLog = 0; pnCkpt = 0; if( rc==SQLITE_BUSY ){ bBusy = 1; rc = SQLITE_OK; } } } return (rc==SQLITE_OK && bBusy) ? SQLITE_BUSY : rc; } #endif /* SQLITE_OMIT_WAL */ /* ** This function returns true if main-memory should be used instead of ** a temporary file for transient pager files and statement journals. ** The value returned depends on the value of db->temp_store (runtime ** parameter) and the compile time value of SQLITE_TEMP_STORE. The ** following table describes the relationship between these two values ** and this functions return value. ** ** SQLITE_TEMP_STORE db->temp_store Location of temporary database ** ----------------- -------------- ------------------------------ ** 0 any file (return 0) ** 1 1 file (return 0) ** 1 2 memory (return 1) ** 1 0 file (return 0) ** 2 1 file (return 0) ** 2 2 memory (return 1) ** 2 0 memory (return 1) ** 3 any memory (return 1) */ SQLITE_PRIVATE int sqlite3TempInMemory(const sqlite3 *db){ #if SQLITE_TEMP_STORE==1 return ( db->temp_store==2 ); #endif #if SQLITE_TEMP_STORE==2 return ( db->temp_store!=1 ); #endif #if SQLITE_TEMP_STORE==3 UNUSED_PARAMETER(db); return 1; #endif #if SQLITE_TEMP_STORE<1 || SQLITE_TEMP_STORE>3 UNUSED_PARAMETER(db); return 0; #endif } /* ** Return UTF-8 encoded English language explanation of the most recent ** error. */ SQLITE_API const char *sqlite3_errmsg(sqlite3 *db){ const char *z; if( !db ){ return sqlite3ErrStr(SQLITE_NOMEM_BKPT); } if( !sqlite3SafetyCheckSickOrOk(db) ){ return sqlite3ErrStr(SQLITE_MISUSE_BKPT); } sqlite3_mutex_enter(db->mutex); if( db->mallocFailed ){ z = sqlite3ErrStr(SQLITE_NOMEM_BKPT); }else{ testcase( db->pErr==0 ); z = db->errCode ? (char*)sqlite3_value_text(db->pErr) : 0; assert( !db->mallocFailed ); if( z==0 ){ z = sqlite3ErrStr(db->errCode); } } sqlite3_mutex_leave(db->mutex); return z; } #ifndef SQLITE_OMIT_UTF16 /* ** Return UTF-16 encoded English language explanation of the most recent ** error. */ SQLITE_API const void *sqlite3_errmsg16(sqlite3 *db){ static const u16 outOfMem[] = { 'o', 'u', 't', ' ', 'o', 'f', ' ', 'm', 'e', 'm', 'o', 'r', 'y', 0 }; static const u16 misuse[] = { 'b', 'a', 'd', ' ', 'p', 'a', 'r', 'a', 'm', 'e', 't', 'e', 'r', ' ', 'o', 'r', ' ', 'o', 't', 'h', 'e', 'r', ' ', 'A', 'P', 'I', ' ', 'm', 'i', 's', 'u', 's', 'e', 0 }; const void *z; if( !db ){ return (void *)outOfMem; } if( !sqlite3SafetyCheckSickOrOk(db) ){ return (void *)misuse; } sqlite3_mutex_enter(db->mutex); if( db->mallocFailed ){ z = (void *)outOfMem; }else{ z = sqlite3_value_text16(db->pErr); if( z==0 ){ sqlite3ErrorWithMsg(db, db->errCode, sqlite3ErrStr(db->errCode)); z = sqlite3_value_text16(db->pErr); } /* A malloc() may have failed within the call to sqlite3_value_text16() ** above. If this is the case, then the db->mallocFailed flag needs to ** be cleared before returning. Do this directly, instead of via ** sqlite3ApiExit(), to avoid setting the database handle error message. */ sqlite3OomClear(db); } sqlite3_mutex_leave(db->mutex); return z; } #endif /* SQLITE_OMIT_UTF16 */ /* ** Return the most recent error code generated by an SQLite routine. If NULL is ** passed to this function, we assume a malloc() failed during sqlite3_open(). */ SQLITE_API int sqlite3_errcode(sqlite3 *db){ if( db && !sqlite3SafetyCheckSickOrOk(db) ){ return SQLITE_MISUSE_BKPT; } if( !db || db->mallocFailed ){ return SQLITE_NOMEM_BKPT; } return db->errCode & db->errMask; } SQLITE_API int sqlite3_extended_errcode(sqlite3 *db){ if( db && !sqlite3SafetyCheckSickOrOk(db) ){ return SQLITE_MISUSE_BKPT; } if( !db || db->mallocFailed ){ return SQLITE_NOMEM_BKPT; } return db->errCode; } SQLITE_API int sqlite3_system_errno(sqlite3 *db){ return db ? db->iSysErrno : 0; } /* ** Return a string that describes the kind of error specified in the ** argument. For now, this simply calls the internal sqlite3ErrStr() ** function. */ SQLITE_API const char *sqlite3_errstr(int rc){ return sqlite3ErrStr(rc); } /* ** Create a new collating function for database "db". The name is zName ** and the encoding is enc. */ static int createCollation( sqlite3* db, const char *zName, u8 enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*), void(*xDel)(void*) ){ CollSeq *pColl; int enc2; assert( sqlite3_mutex_held(db->mutex) ); /* If SQLITE_UTF16 is specified as the encoding type, transform this ** to one of SQLITE_UTF16LE or SQLITE_UTF16BE using the ** SQLITE_UTF16NATIVE macro. SQLITE_UTF16 is not used internally. */ enc2 = enc; testcase( enc2==SQLITE_UTF16 ); testcase( enc2==SQLITE_UTF16_ALIGNED ); if( enc2==SQLITE_UTF16 || enc2==SQLITE_UTF16_ALIGNED ){ enc2 = SQLITE_UTF16NATIVE; } if( enc2SQLITE_UTF16BE ){ return SQLITE_MISUSE_BKPT; } /* Check if this call is removing or replacing an existing collation ** sequence. If so, and there are active VMs, return busy. If there ** are no active VMs, invalidate any pre-compiled statements. */ pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, 0); if( pColl && pColl->xCmp ){ if( db->nVdbeActive ){ sqlite3ErrorWithMsg(db, SQLITE_BUSY, "unable to delete/modify collation sequence due to active statements"); return SQLITE_BUSY; } sqlite3ExpirePreparedStatements(db, 0); /* If collation sequence pColl was created directly by a call to ** sqlite3_create_collation, and not generated by synthCollSeq(), ** then any copies made by synthCollSeq() need to be invalidated. ** Also, collation destructor - CollSeq.xDel() - function may need ** to be called. */ if( (pColl->enc & ~SQLITE_UTF16_ALIGNED)==enc2 ){ CollSeq *aColl = sqlite3HashFind(&db->aCollSeq, zName); int j; for(j=0; j<3; j++){ CollSeq *p = &aColl[j]; if( p->enc==pColl->enc ){ if( p->xDel ){ p->xDel(p->pUser); } p->xCmp = 0; } } } } pColl = sqlite3FindCollSeq(db, (u8)enc2, zName, 1); if( pColl==0 ) return SQLITE_NOMEM_BKPT; pColl->xCmp = xCompare; pColl->pUser = pCtx; pColl->xDel = xDel; pColl->enc = (u8)(enc2 | (enc & SQLITE_UTF16_ALIGNED)); sqlite3Error(db, SQLITE_OK); return SQLITE_OK; } /* ** This array defines hard upper bounds on limit values. The ** initializer must be kept in sync with the SQLITE_LIMIT_* ** #defines in sqlite3.h. */ static const int aHardLimit[] = { SQLITE_MAX_LENGTH, SQLITE_MAX_SQL_LENGTH, SQLITE_MAX_COLUMN, SQLITE_MAX_EXPR_DEPTH, SQLITE_MAX_COMPOUND_SELECT, SQLITE_MAX_VDBE_OP, SQLITE_MAX_FUNCTION_ARG, SQLITE_MAX_ATTACHED, SQLITE_MAX_LIKE_PATTERN_LENGTH, SQLITE_MAX_VARIABLE_NUMBER, /* IMP: R-38091-32352 */ SQLITE_MAX_TRIGGER_DEPTH, SQLITE_MAX_WORKER_THREADS, }; /* ** Make sure the hard limits are set to reasonable values */ #if SQLITE_MAX_LENGTH<100 # error SQLITE_MAX_LENGTH must be at least 100 #endif #if SQLITE_MAX_SQL_LENGTH<100 # error SQLITE_MAX_SQL_LENGTH must be at least 100 #endif #if SQLITE_MAX_SQL_LENGTH>SQLITE_MAX_LENGTH # error SQLITE_MAX_SQL_LENGTH must not be greater than SQLITE_MAX_LENGTH #endif #if SQLITE_MAX_COMPOUND_SELECT<2 # error SQLITE_MAX_COMPOUND_SELECT must be at least 2 #endif #if SQLITE_MAX_VDBE_OP<40 # error SQLITE_MAX_VDBE_OP must be at least 40 #endif #if SQLITE_MAX_FUNCTION_ARG<0 || SQLITE_MAX_FUNCTION_ARG>127 # error SQLITE_MAX_FUNCTION_ARG must be between 0 and 127 #endif #if SQLITE_MAX_ATTACHED<0 || SQLITE_MAX_ATTACHED>125 # error SQLITE_MAX_ATTACHED must be between 0 and 125 #endif #if SQLITE_MAX_LIKE_PATTERN_LENGTH<1 # error SQLITE_MAX_LIKE_PATTERN_LENGTH must be at least 1 #endif #if SQLITE_MAX_COLUMN>32767 # error SQLITE_MAX_COLUMN must not exceed 32767 #endif #if SQLITE_MAX_TRIGGER_DEPTH<1 # error SQLITE_MAX_TRIGGER_DEPTH must be at least 1 #endif #if SQLITE_MAX_WORKER_THREADS<0 || SQLITE_MAX_WORKER_THREADS>50 # error SQLITE_MAX_WORKER_THREADS must be between 0 and 50 #endif /* ** Change the value of a limit. Report the old value. ** If an invalid limit index is supplied, report -1. ** Make no changes but still report the old value if the ** new limit is negative. ** ** A new lower limit does not shrink existing constructs. ** It merely prevents new constructs that exceed the limit ** from forming. */ SQLITE_API int sqlite3_limit(sqlite3 *db, int limitId, int newLimit){ int oldLimit; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return -1; } #endif /* EVIDENCE-OF: R-30189-54097 For each limit category SQLITE_LIMIT_NAME ** there is a hard upper bound set at compile-time by a C preprocessor ** macro called SQLITE_MAX_NAME. (The "_LIMIT_" in the name is changed to ** "_MAX_".) */ assert( aHardLimit[SQLITE_LIMIT_LENGTH]==SQLITE_MAX_LENGTH ); assert( aHardLimit[SQLITE_LIMIT_SQL_LENGTH]==SQLITE_MAX_SQL_LENGTH ); assert( aHardLimit[SQLITE_LIMIT_COLUMN]==SQLITE_MAX_COLUMN ); assert( aHardLimit[SQLITE_LIMIT_EXPR_DEPTH]==SQLITE_MAX_EXPR_DEPTH ); assert( aHardLimit[SQLITE_LIMIT_COMPOUND_SELECT]==SQLITE_MAX_COMPOUND_SELECT); assert( aHardLimit[SQLITE_LIMIT_VDBE_OP]==SQLITE_MAX_VDBE_OP ); assert( aHardLimit[SQLITE_LIMIT_FUNCTION_ARG]==SQLITE_MAX_FUNCTION_ARG ); assert( aHardLimit[SQLITE_LIMIT_ATTACHED]==SQLITE_MAX_ATTACHED ); assert( aHardLimit[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]== SQLITE_MAX_LIKE_PATTERN_LENGTH ); assert( aHardLimit[SQLITE_LIMIT_VARIABLE_NUMBER]==SQLITE_MAX_VARIABLE_NUMBER); assert( aHardLimit[SQLITE_LIMIT_TRIGGER_DEPTH]==SQLITE_MAX_TRIGGER_DEPTH ); assert( aHardLimit[SQLITE_LIMIT_WORKER_THREADS]==SQLITE_MAX_WORKER_THREADS ); assert( SQLITE_LIMIT_WORKER_THREADS==(SQLITE_N_LIMIT-1) ); if( limitId<0 || limitId>=SQLITE_N_LIMIT ){ return -1; } oldLimit = db->aLimit[limitId]; if( newLimit>=0 ){ /* IMP: R-52476-28732 */ if( newLimit>aHardLimit[limitId] ){ newLimit = aHardLimit[limitId]; /* IMP: R-51463-25634 */ } db->aLimit[limitId] = newLimit; } return oldLimit; /* IMP: R-53341-35419 */ } /* ** This function is used to parse both URIs and non-URI filenames passed by the ** user to API functions sqlite3_open() or sqlite3_open_v2(), and for database ** URIs specified as part of ATTACH statements. ** ** The first argument to this function is the name of the VFS to use (or ** a NULL to signify the default VFS) if the URI does not contain a "vfs=xxx" ** query parameter. The second argument contains the URI (or non-URI filename) ** itself. When this function is called the *pFlags variable should contain ** the default flags to open the database handle with. The value stored in ** *pFlags may be updated before returning if the URI filename contains ** "cache=xxx" or "mode=xxx" query parameters. ** ** If successful, SQLITE_OK is returned. In this case *ppVfs is set to point to ** the VFS that should be used to open the database file. *pzFile is set to ** point to a buffer containing the name of the file to open. The value ** stored in *pzFile is a database name acceptable to sqlite3_uri_parameter() ** and is in the same format as names created using sqlite3_create_filename(). ** The caller must invoke sqlite3_free_filename() (not sqlite3_free()!) on ** the value returned in *pzFile to avoid a memory leak. ** ** If an error occurs, then an SQLite error code is returned and *pzErrMsg ** may be set to point to a buffer containing an English language error ** message. It is the responsibility of the caller to eventually release ** this buffer by calling sqlite3_free(). */ SQLITE_PRIVATE int sqlite3ParseUri( const char *zDefaultVfs, /* VFS to use if no "vfs=xxx" query option */ const char *zUri, /* Nul-terminated URI to parse */ unsigned int *pFlags, /* IN/OUT: SQLITE_OPEN_XXX flags */ sqlite3_vfs **ppVfs, /* OUT: VFS to use */ char **pzFile, /* OUT: Filename component of URI */ char **pzErrMsg /* OUT: Error message (if rc!=SQLITE_OK) */ ){ int rc = SQLITE_OK; unsigned int flags = *pFlags; const char *zVfs = zDefaultVfs; char *zFile; char c; int nUri = sqlite3Strlen30(zUri); assert( *pzErrMsg==0 ); if( ((flags & SQLITE_OPEN_URI) /* IMP: R-48725-32206 */ || sqlite3GlobalConfig.bOpenUri) /* IMP: R-51689-46548 */ && nUri>=5 && memcmp(zUri, "file:", 5)==0 /* IMP: R-57884-37496 */ ){ char *zOpt; int eState; /* Parser state when parsing URI */ int iIn; /* Input character index */ int iOut = 0; /* Output character index */ u64 nByte = nUri+8; /* Bytes of space to allocate */ /* Make sure the SQLITE_OPEN_URI flag is set to indicate to the VFS xOpen ** method that there may be extra parameters following the file-name. */ flags |= SQLITE_OPEN_URI; for(iIn=0; iIn=0 && octet<256 ); if( octet==0 ){ #ifndef SQLITE_ENABLE_URI_00_ERROR /* This branch is taken when "%00" appears within the URI. In this ** case we ignore all text in the remainder of the path, name or ** value currently being parsed. So ignore the current character ** and skip to the next "?", "=" or "&", as appropriate. */ while( (c = zUri[iIn])!=0 && c!='#' && (eState!=0 || c!='?') && (eState!=1 || (c!='=' && c!='&')) && (eState!=2 || c!='&') ){ iIn++; } continue; #else /* If ENABLE_URI_00_ERROR is defined, "%00" in a URI is an error. */ *pzErrMsg = sqlite3_mprintf("unexpected %%00 in uri"); rc = SQLITE_ERROR; goto parse_uri_out; #endif } c = octet; }else if( eState==1 && (c=='&' || c=='=') ){ if( zFile[iOut-1]==0 ){ /* An empty option name. Ignore this option altogether. */ while( zUri[iIn] && zUri[iIn]!='#' && zUri[iIn-1]!='&' ) iIn++; continue; } if( c=='&' ){ zFile[iOut++] = '\0'; }else{ eState = 2; } c = 0; }else if( (eState==0 && c=='?') || (eState==2 && c=='&') ){ c = 0; eState = 1; } zFile[iOut++] = c; } if( eState==1 ) zFile[iOut++] = '\0'; memset(zFile+iOut, 0, 4); /* end-of-options + empty journal filenames */ /* Check if there were any options specified that should be interpreted ** here. Options that are interpreted here include "vfs" and those that ** correspond to flags that may be passed to the sqlite3_open_v2() ** method. */ zOpt = &zFile[sqlite3Strlen30(zFile)+1]; while( zOpt[0] ){ int nOpt = sqlite3Strlen30(zOpt); char *zVal = &zOpt[nOpt+1]; int nVal = sqlite3Strlen30(zVal); if( nOpt==3 && memcmp("vfs", zOpt, 3)==0 ){ zVfs = zVal; }else{ struct OpenMode { const char *z; int mode; } *aMode = 0; char *zModeType = 0; int mask = 0; int limit = 0; if( nOpt==5 && memcmp("cache", zOpt, 5)==0 ){ static struct OpenMode aCacheMode[] = { { "shared", SQLITE_OPEN_SHAREDCACHE }, { "private", SQLITE_OPEN_PRIVATECACHE }, { 0, 0 } }; mask = SQLITE_OPEN_SHAREDCACHE|SQLITE_OPEN_PRIVATECACHE; aMode = aCacheMode; limit = mask; zModeType = "cache"; } if( nOpt==4 && memcmp("mode", zOpt, 4)==0 ){ static struct OpenMode aOpenMode[] = { { "ro", SQLITE_OPEN_READONLY }, { "rw", SQLITE_OPEN_READWRITE }, { "rwc", SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE }, { "memory", SQLITE_OPEN_MEMORY }, { 0, 0 } }; mask = SQLITE_OPEN_READONLY | SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_MEMORY; aMode = aOpenMode; limit = mask & flags; zModeType = "access"; } if( aMode ){ int i; int mode = 0; for(i=0; aMode[i].z; i++){ const char *z = aMode[i].z; if( nVal==sqlite3Strlen30(z) && 0==memcmp(zVal, z, nVal) ){ mode = aMode[i].mode; break; } } if( mode==0 ){ *pzErrMsg = sqlite3_mprintf("no such %s mode: %s", zModeType, zVal); rc = SQLITE_ERROR; goto parse_uri_out; } if( (mode & ~SQLITE_OPEN_MEMORY)>limit ){ *pzErrMsg = sqlite3_mprintf("%s mode not allowed: %s", zModeType, zVal); rc = SQLITE_PERM; goto parse_uri_out; } flags = (flags & ~mask) | mode; } } zOpt = &zVal[nVal+1]; } }else{ zFile = sqlite3_malloc64(nUri+8); if( !zFile ) return SQLITE_NOMEM_BKPT; memset(zFile, 0, 4); zFile += 4; if( nUri ){ memcpy(zFile, zUri, nUri); } memset(zFile+nUri, 0, 4); flags &= ~SQLITE_OPEN_URI; } *ppVfs = sqlite3_vfs_find(zVfs); if( *ppVfs==0 ){ *pzErrMsg = sqlite3_mprintf("no such vfs: %s", zVfs); rc = SQLITE_ERROR; } parse_uri_out: if( rc!=SQLITE_OK ){ sqlite3_free_filename(zFile); zFile = 0; } *pFlags = flags; *pzFile = zFile; return rc; } /* ** This routine does the core work of extracting URI parameters from a ** database filename for the sqlite3_uri_parameter() interface. */ static const char *uriParameter(const char *zFilename, const char *zParam){ zFilename += sqlite3Strlen30(zFilename) + 1; while( zFilename[0] ){ int x = strcmp(zFilename, zParam); zFilename += sqlite3Strlen30(zFilename) + 1; if( x==0 ) return zFilename; zFilename += sqlite3Strlen30(zFilename) + 1; } return 0; } /* ** This routine does the work of opening a database on behalf of ** sqlite3_open() and sqlite3_open16(). The database filename "zFilename" ** is UTF-8 encoded. */ static int openDatabase( const char *zFilename, /* Database filename UTF-8 encoded */ sqlite3 **ppDb, /* OUT: Returned database handle */ unsigned int flags, /* Operational flags */ const char *zVfs /* Name of the VFS to use */ ){ sqlite3 *db; /* Store allocated handle here */ int rc; /* Return code */ int isThreadsafe; /* True for threadsafe connections */ char *zOpen = 0; /* Filename argument to pass to BtreeOpen() */ char *zErrMsg = 0; /* Error message from sqlite3ParseUri() */ int i; /* Loop counter */ #ifdef SQLITE_ENABLE_API_ARMOR if( ppDb==0 ) return SQLITE_MISUSE_BKPT; #endif *ppDb = 0; #ifndef SQLITE_OMIT_AUTOINIT rc = sqlite3_initialize(); if( rc ) return rc; #endif if( sqlite3GlobalConfig.bCoreMutex==0 ){ isThreadsafe = 0; }else if( flags & SQLITE_OPEN_NOMUTEX ){ isThreadsafe = 0; }else if( flags & SQLITE_OPEN_FULLMUTEX ){ isThreadsafe = 1; }else{ isThreadsafe = sqlite3GlobalConfig.bFullMutex; } if( flags & SQLITE_OPEN_PRIVATECACHE ){ flags &= ~SQLITE_OPEN_SHAREDCACHE; }else if( sqlite3GlobalConfig.sharedCacheEnabled ){ flags |= SQLITE_OPEN_SHAREDCACHE; } /* Remove harmful bits from the flags parameter ** ** The SQLITE_OPEN_NOMUTEX and SQLITE_OPEN_FULLMUTEX flags were ** dealt with in the previous code block. Besides these, the only ** valid input flags for sqlite3_open_v2() are SQLITE_OPEN_READONLY, ** SQLITE_OPEN_READWRITE, SQLITE_OPEN_CREATE, SQLITE_OPEN_SHAREDCACHE, ** SQLITE_OPEN_PRIVATECACHE, and some reserved bits. Silently mask ** off all other flags. */ flags &= ~( SQLITE_OPEN_DELETEONCLOSE | SQLITE_OPEN_EXCLUSIVE | SQLITE_OPEN_MAIN_DB | SQLITE_OPEN_TEMP_DB | SQLITE_OPEN_TRANSIENT_DB | SQLITE_OPEN_MAIN_JOURNAL | SQLITE_OPEN_TEMP_JOURNAL | SQLITE_OPEN_SUBJOURNAL | SQLITE_OPEN_SUPER_JOURNAL | SQLITE_OPEN_NOMUTEX | SQLITE_OPEN_FULLMUTEX | SQLITE_OPEN_WAL ); /* Allocate the sqlite data structure */ db = sqlite3MallocZero( sizeof(sqlite3) ); if( db==0 ) goto opendb_out; if( isThreadsafe #ifdef SQLITE_ENABLE_MULTITHREADED_CHECKS || sqlite3GlobalConfig.bCoreMutex #endif ){ db->mutex = sqlite3MutexAlloc(SQLITE_MUTEX_RECURSIVE); if( db->mutex==0 ){ sqlite3_free(db); db = 0; goto opendb_out; } if( isThreadsafe==0 ){ sqlite3MutexWarnOnContention(db->mutex); } } sqlite3_mutex_enter(db->mutex); db->errMask = 0xff; db->nDb = 2; db->magic = SQLITE_MAGIC_BUSY; db->aDb = db->aDbStatic; db->lookaside.bDisable = 1; db->lookaside.sz = 0; assert( sizeof(db->aLimit)==sizeof(aHardLimit) ); memcpy(db->aLimit, aHardLimit, sizeof(db->aLimit)); db->aLimit[SQLITE_LIMIT_WORKER_THREADS] = SQLITE_DEFAULT_WORKER_THREADS; db->autoCommit = 1; db->nextAutovac = -1; db->szMmap = sqlite3GlobalConfig.szMmap; db->nextPagesize = 0; db->nMaxSorterMmap = 0x7FFFFFFF; db->flags |= SQLITE_ShortColNames | SQLITE_EnableTrigger | SQLITE_EnableView | SQLITE_CacheSpill #if !defined(SQLITE_TRUSTED_SCHEMA) || SQLITE_TRUSTED_SCHEMA+0!=0 | SQLITE_TrustedSchema #endif /* The SQLITE_DQS compile-time option determines the default settings ** for SQLITE_DBCONFIG_DQS_DDL and SQLITE_DBCONFIG_DQS_DML. ** ** SQLITE_DQS SQLITE_DBCONFIG_DQS_DDL SQLITE_DBCONFIG_DQS_DML ** ---------- ----------------------- ----------------------- ** undefined on on ** 3 on on ** 2 on off ** 1 off on ** 0 off off ** ** Legacy behavior is 3 (double-quoted string literals are allowed anywhere) ** and so that is the default. But developers are encouranged to use ** -DSQLITE_DQS=0 (best) or -DSQLITE_DQS=1 (second choice) if possible. */ #if !defined(SQLITE_DQS) # define SQLITE_DQS 3 #endif #if (SQLITE_DQS&1)==1 | SQLITE_DqsDML #endif #if (SQLITE_DQS&2)==2 | SQLITE_DqsDDL #endif #if !defined(SQLITE_DEFAULT_AUTOMATIC_INDEX) || SQLITE_DEFAULT_AUTOMATIC_INDEX | SQLITE_AutoIndex #endif #if SQLITE_DEFAULT_CKPTFULLFSYNC | SQLITE_CkptFullFSync #endif #if SQLITE_DEFAULT_FILE_FORMAT<4 | SQLITE_LegacyFileFmt #endif #ifdef SQLITE_ENABLE_LOAD_EXTENSION | SQLITE_LoadExtension #endif #if SQLITE_DEFAULT_RECURSIVE_TRIGGERS | SQLITE_RecTriggers #endif #if defined(SQLITE_DEFAULT_FOREIGN_KEYS) && SQLITE_DEFAULT_FOREIGN_KEYS | SQLITE_ForeignKeys #endif #if defined(SQLITE_REVERSE_UNORDERED_SELECTS) | SQLITE_ReverseOrder #endif #if defined(SQLITE_ENABLE_OVERSIZE_CELL_CHECK) | SQLITE_CellSizeCk #endif #if defined(SQLITE_ENABLE_FTS3_TOKENIZER) | SQLITE_Fts3Tokenizer #endif #if defined(SQLITE_ENABLE_QPSG) | SQLITE_EnableQPSG #endif #if defined(SQLITE_DEFAULT_DEFENSIVE) | SQLITE_Defensive #endif #if defined(SQLITE_DEFAULT_LEGACY_ALTER_TABLE) | SQLITE_LegacyAlter #endif ; sqlite3HashInit(&db->aCollSeq); #ifndef SQLITE_OMIT_VIRTUALTABLE sqlite3HashInit(&db->aModule); #endif /* Add the default collation sequence BINARY. BINARY works for both UTF-8 ** and UTF-16, so add a version for each to avoid any unnecessary ** conversions. The only error that can occur here is a malloc() failure. ** ** EVIDENCE-OF: R-52786-44878 SQLite defines three built-in collating ** functions: */ createCollation(db, sqlite3StrBINARY, SQLITE_UTF8, 0, binCollFunc, 0); createCollation(db, sqlite3StrBINARY, SQLITE_UTF16BE, 0, binCollFunc, 0); createCollation(db, sqlite3StrBINARY, SQLITE_UTF16LE, 0, binCollFunc, 0); createCollation(db, "NOCASE", SQLITE_UTF8, 0, nocaseCollatingFunc, 0); createCollation(db, "RTRIM", SQLITE_UTF8, 0, rtrimCollFunc, 0); if( db->mallocFailed ){ goto opendb_out; } /* Parse the filename/URI argument ** ** Only allow sensible combinations of bits in the flags argument. ** Throw an error if any non-sense combination is used. If we ** do not block illegal combinations here, it could trigger ** assert() statements in deeper layers. Sensible combinations ** are: ** ** 1: SQLITE_OPEN_READONLY ** 2: SQLITE_OPEN_READWRITE ** 6: SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE */ db->openFlags = flags; assert( SQLITE_OPEN_READONLY == 0x01 ); assert( SQLITE_OPEN_READWRITE == 0x02 ); assert( SQLITE_OPEN_CREATE == 0x04 ); testcase( (1<<(flags&7))==0x02 ); /* READONLY */ testcase( (1<<(flags&7))==0x04 ); /* READWRITE */ testcase( (1<<(flags&7))==0x40 ); /* READWRITE | CREATE */ if( ((1<<(flags&7)) & 0x46)==0 ){ rc = SQLITE_MISUSE_BKPT; /* IMP: R-18321-05872 */ }else{ rc = sqlite3ParseUri(zVfs, zFilename, &flags, &db->pVfs, &zOpen, &zErrMsg); } if( rc!=SQLITE_OK ){ if( rc==SQLITE_NOMEM ) sqlite3OomFault(db); sqlite3ErrorWithMsg(db, rc, zErrMsg ? "%s" : 0, zErrMsg); sqlite3_free(zErrMsg); goto opendb_out; } /* Open the backend database driver */ rc = sqlite3BtreeOpen(db->pVfs, zOpen, db, &db->aDb[0].pBt, 0, flags | SQLITE_OPEN_MAIN_DB); if( rc!=SQLITE_OK ){ if( rc==SQLITE_IOERR_NOMEM ){ rc = SQLITE_NOMEM_BKPT; } sqlite3Error(db, rc); goto opendb_out; } sqlite3BtreeEnter(db->aDb[0].pBt); db->aDb[0].pSchema = sqlite3SchemaGet(db, db->aDb[0].pBt); if( !db->mallocFailed ){ sqlite3SetTextEncoding(db, SCHEMA_ENC(db)); } sqlite3BtreeLeave(db->aDb[0].pBt); db->aDb[1].pSchema = sqlite3SchemaGet(db, 0); /* The default safety_level for the main database is FULL; for the temp ** database it is OFF. This matches the pager layer defaults. */ db->aDb[0].zDbSName = "main"; db->aDb[0].safety_level = SQLITE_DEFAULT_SYNCHRONOUS+1; db->aDb[1].zDbSName = "temp"; db->aDb[1].safety_level = PAGER_SYNCHRONOUS_OFF; db->magic = SQLITE_MAGIC_OPEN; if( db->mallocFailed ){ goto opendb_out; } /* Register all built-in functions, but do not attempt to read the ** database schema yet. This is delayed until the first time the database ** is accessed. */ sqlite3Error(db, SQLITE_OK); sqlite3RegisterPerConnectionBuiltinFunctions(db); rc = sqlite3_errcode(db); /* Load compiled-in extensions */ for(i=0; rc==SQLITE_OK && imDbFlags |= DBFLAG_InternalFunc; #endif /* -DSQLITE_DEFAULT_LOCKING_MODE=1 makes EXCLUSIVE the default locking ** mode. -DSQLITE_DEFAULT_LOCKING_MODE=0 make NORMAL the default locking ** mode. Doing nothing at all also makes NORMAL the default. */ #ifdef SQLITE_DEFAULT_LOCKING_MODE db->dfltLockMode = SQLITE_DEFAULT_LOCKING_MODE; sqlite3PagerLockingMode(sqlite3BtreePager(db->aDb[0].pBt), SQLITE_DEFAULT_LOCKING_MODE); #endif if( rc ) sqlite3Error(db, rc); /* Enable the lookaside-malloc subsystem */ setupLookaside(db, 0, sqlite3GlobalConfig.szLookaside, sqlite3GlobalConfig.nLookaside); sqlite3_wal_autocheckpoint(db, SQLITE_DEFAULT_WAL_AUTOCHECKPOINT); opendb_out: if( db ){ assert( db->mutex!=0 || isThreadsafe==0 || sqlite3GlobalConfig.bFullMutex==0 ); sqlite3_mutex_leave(db->mutex); } rc = sqlite3_errcode(db); assert( db!=0 || rc==SQLITE_NOMEM ); if( rc==SQLITE_NOMEM ){ sqlite3_close(db); db = 0; }else if( rc!=SQLITE_OK ){ db->magic = SQLITE_MAGIC_SICK; } *ppDb = db; #ifdef SQLITE_ENABLE_SQLLOG if( sqlite3GlobalConfig.xSqllog ){ /* Opening a db handle. Fourth parameter is passed 0. */ void *pArg = sqlite3GlobalConfig.pSqllogArg; sqlite3GlobalConfig.xSqllog(pArg, db, zFilename, 0); } #endif sqlite3_free_filename(zOpen); return rc & 0xff; } /* ** Open a new database handle. */ SQLITE_API int sqlite3_open( const char *zFilename, sqlite3 **ppDb ){ return openDatabase(zFilename, ppDb, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0); } SQLITE_API int sqlite3_open_v2( const char *filename, /* Database filename (UTF-8) */ sqlite3 **ppDb, /* OUT: SQLite db handle */ int flags, /* Flags */ const char *zVfs /* Name of VFS module to use */ ){ return openDatabase(filename, ppDb, (unsigned int)flags, zVfs); } #ifndef SQLITE_OMIT_UTF16 /* ** Open a new database handle. */ SQLITE_API int sqlite3_open16( const void *zFilename, sqlite3 **ppDb ){ char const *zFilename8; /* zFilename encoded in UTF-8 instead of UTF-16 */ sqlite3_value *pVal; int rc; #ifdef SQLITE_ENABLE_API_ARMOR if( ppDb==0 ) return SQLITE_MISUSE_BKPT; #endif *ppDb = 0; #ifndef SQLITE_OMIT_AUTOINIT rc = sqlite3_initialize(); if( rc ) return rc; #endif if( zFilename==0 ) zFilename = "\000\000"; pVal = sqlite3ValueNew(0); sqlite3ValueSetStr(pVal, -1, zFilename, SQLITE_UTF16NATIVE, SQLITE_STATIC); zFilename8 = sqlite3ValueText(pVal, SQLITE_UTF8); if( zFilename8 ){ rc = openDatabase(zFilename8, ppDb, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, 0); assert( *ppDb || rc==SQLITE_NOMEM ); if( rc==SQLITE_OK && !DbHasProperty(*ppDb, 0, DB_SchemaLoaded) ){ SCHEMA_ENC(*ppDb) = ENC(*ppDb) = SQLITE_UTF16NATIVE; } }else{ rc = SQLITE_NOMEM_BKPT; } sqlite3ValueFree(pVal); return rc & 0xff; } #endif /* SQLITE_OMIT_UTF16 */ /* ** Register a new collation sequence with the database handle db. */ SQLITE_API int sqlite3_create_collation( sqlite3* db, const char *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*) ){ return sqlite3_create_collation_v2(db, zName, enc, pCtx, xCompare, 0); } /* ** Register a new collation sequence with the database handle db. */ SQLITE_API int sqlite3_create_collation_v2( sqlite3* db, const char *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*), void(*xDel)(void*) ){ int rc; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zName==0 ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); assert( !db->mallocFailed ); rc = createCollation(db, zName, (u8)enc, pCtx, xCompare, xDel); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } #ifndef SQLITE_OMIT_UTF16 /* ** Register a new collation sequence with the database handle db. */ SQLITE_API int sqlite3_create_collation16( sqlite3* db, const void *zName, int enc, void* pCtx, int(*xCompare)(void*,int,const void*,int,const void*) ){ int rc = SQLITE_OK; char *zName8; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zName==0 ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); assert( !db->mallocFailed ); zName8 = sqlite3Utf16to8(db, zName, -1, SQLITE_UTF16NATIVE); if( zName8 ){ rc = createCollation(db, zName8, (u8)enc, pCtx, xCompare, 0); sqlite3DbFree(db, zName8); } rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } #endif /* SQLITE_OMIT_UTF16 */ /* ** Register a collation sequence factory callback with the database handle ** db. Replace any previously installed collation sequence factory. */ SQLITE_API int sqlite3_collation_needed( sqlite3 *db, void *pCollNeededArg, void(*xCollNeeded)(void*,sqlite3*,int eTextRep,const char*) ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); db->xCollNeeded = xCollNeeded; db->xCollNeeded16 = 0; db->pCollNeededArg = pCollNeededArg; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #ifndef SQLITE_OMIT_UTF16 /* ** Register a collation sequence factory callback with the database handle ** db. Replace any previously installed collation sequence factory. */ SQLITE_API int sqlite3_collation_needed16( sqlite3 *db, void *pCollNeededArg, void(*xCollNeeded16)(void*,sqlite3*,int eTextRep,const void*) ){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); db->xCollNeeded = 0; db->xCollNeeded16 = xCollNeeded16; db->pCollNeededArg = pCollNeededArg; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } #endif /* SQLITE_OMIT_UTF16 */ #ifndef SQLITE_OMIT_DEPRECATED /* ** This function is now an anachronism. It used to be used to recover from a ** malloc() failure, but SQLite now does this automatically. */ SQLITE_API int sqlite3_global_recover(void){ return SQLITE_OK; } #endif /* ** Test to see whether or not the database connection is in autocommit ** mode. Return TRUE if it is and FALSE if not. Autocommit mode is on ** by default. Autocommit is disabled by a BEGIN statement and reenabled ** by the next COMMIT or ROLLBACK. */ SQLITE_API int sqlite3_get_autocommit(sqlite3 *db){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif return db->autoCommit; } /* ** The following routines are substitutes for constants SQLITE_CORRUPT, ** SQLITE_MISUSE, SQLITE_CANTOPEN, SQLITE_NOMEM and possibly other error ** constants. They serve two purposes: ** ** 1. Serve as a convenient place to set a breakpoint in a debugger ** to detect when version error conditions occurs. ** ** 2. Invoke sqlite3_log() to provide the source code location where ** a low-level error is first detected. */ SQLITE_PRIVATE int sqlite3ReportError(int iErr, int lineno, const char *zType){ sqlite3_log(iErr, "%s at line %d of [%.10s]", zType, lineno, 20+sqlite3_sourceid()); return iErr; } SQLITE_PRIVATE int sqlite3CorruptError(int lineno){ testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_CORRUPT, lineno, "database corruption"); } SQLITE_PRIVATE int sqlite3MisuseError(int lineno){ testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_MISUSE, lineno, "misuse"); } SQLITE_PRIVATE int sqlite3CantopenError(int lineno){ testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_CANTOPEN, lineno, "cannot open file"); } #if defined(SQLITE_DEBUG) || defined(SQLITE_ENABLE_CORRUPT_PGNO) SQLITE_PRIVATE int sqlite3CorruptPgnoError(int lineno, Pgno pgno){ char zMsg[100]; sqlite3_snprintf(sizeof(zMsg), zMsg, "database corruption page %d", pgno); testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_CORRUPT, lineno, zMsg); } #endif #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3NomemError(int lineno){ testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_NOMEM, lineno, "OOM"); } SQLITE_PRIVATE int sqlite3IoerrnomemError(int lineno){ testcase( sqlite3GlobalConfig.xLog!=0 ); return sqlite3ReportError(SQLITE_IOERR_NOMEM, lineno, "I/O OOM error"); } #endif #ifndef SQLITE_OMIT_DEPRECATED /* ** This is a convenience routine that makes sure that all thread-specific ** data for this thread has been deallocated. ** ** SQLite no longer uses thread-specific data so this routine is now a ** no-op. It is retained for historical compatibility. */ SQLITE_API void sqlite3_thread_cleanup(void){ } #endif /* ** Return meta information about a specific column of a database table. ** See comment in sqlite3.h (sqlite.h.in) for details. */ SQLITE_API int sqlite3_table_column_metadata( sqlite3 *db, /* Connection handle */ const char *zDbName, /* Database name or NULL */ const char *zTableName, /* Table name */ const char *zColumnName, /* Column name */ char const **pzDataType, /* OUTPUT: Declared data type */ char const **pzCollSeq, /* OUTPUT: Collation sequence name */ int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */ int *pPrimaryKey, /* OUTPUT: True if column part of PK */ int *pAutoinc /* OUTPUT: True if column is auto-increment */ ){ int rc; char *zErrMsg = 0; Table *pTab = 0; Column *pCol = 0; int iCol = 0; char const *zDataType = 0; char const *zCollSeq = 0; int notnull = 0; int primarykey = 0; int autoinc = 0; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) || zTableName==0 ){ return SQLITE_MISUSE_BKPT; } #endif /* Ensure the database schema has been loaded */ sqlite3_mutex_enter(db->mutex); sqlite3BtreeEnterAll(db); rc = sqlite3Init(db, &zErrMsg); if( SQLITE_OK!=rc ){ goto error_out; } /* Locate the table in question */ pTab = sqlite3FindTable(db, zTableName, zDbName); if( !pTab || pTab->pSelect ){ pTab = 0; goto error_out; } /* Find the column for which info is requested */ if( zColumnName==0 ){ /* Query for existance of table only */ }else{ for(iCol=0; iColnCol; iCol++){ pCol = &pTab->aCol[iCol]; if( 0==sqlite3StrICmp(pCol->zName, zColumnName) ){ break; } } if( iCol==pTab->nCol ){ if( HasRowid(pTab) && sqlite3IsRowid(zColumnName) ){ iCol = pTab->iPKey; pCol = iCol>=0 ? &pTab->aCol[iCol] : 0; }else{ pTab = 0; goto error_out; } } } /* The following block stores the meta information that will be returned ** to the caller in local variables zDataType, zCollSeq, notnull, primarykey ** and autoinc. At this point there are two possibilities: ** ** 1. The specified column name was rowid", "oid" or "_rowid_" ** and there is no explicitly declared IPK column. ** ** 2. The table is not a view and the column name identified an ** explicitly declared column. Copy meta information from *pCol. */ if( pCol ){ zDataType = sqlite3ColumnType(pCol,0); zCollSeq = pCol->zColl; notnull = pCol->notNull!=0; primarykey = (pCol->colFlags & COLFLAG_PRIMKEY)!=0; autoinc = pTab->iPKey==iCol && (pTab->tabFlags & TF_Autoincrement)!=0; }else{ zDataType = "INTEGER"; primarykey = 1; } if( !zCollSeq ){ zCollSeq = sqlite3StrBINARY; } error_out: sqlite3BtreeLeaveAll(db); /* Whether the function call succeeded or failed, set the output parameters ** to whatever their local counterparts contain. If an error did occur, ** this has the effect of zeroing all output parameters. */ if( pzDataType ) *pzDataType = zDataType; if( pzCollSeq ) *pzCollSeq = zCollSeq; if( pNotNull ) *pNotNull = notnull; if( pPrimaryKey ) *pPrimaryKey = primarykey; if( pAutoinc ) *pAutoinc = autoinc; if( SQLITE_OK==rc && !pTab ){ sqlite3DbFree(db, zErrMsg); zErrMsg = sqlite3MPrintf(db, "no such table column: %s.%s", zTableName, zColumnName); rc = SQLITE_ERROR; } sqlite3ErrorWithMsg(db, rc, (zErrMsg?"%s":0), zErrMsg); sqlite3DbFree(db, zErrMsg); rc = sqlite3ApiExit(db, rc); sqlite3_mutex_leave(db->mutex); return rc; } /* ** Sleep for a little while. Return the amount of time slept. */ SQLITE_API int sqlite3_sleep(int ms){ sqlite3_vfs *pVfs; int rc; pVfs = sqlite3_vfs_find(0); if( pVfs==0 ) return 0; /* This function works in milliseconds, but the underlying OsSleep() ** API uses microseconds. Hence the 1000's. */ rc = (sqlite3OsSleep(pVfs, 1000*ms)/1000); return rc; } /* ** Enable or disable the extended result codes. */ SQLITE_API int sqlite3_extended_result_codes(sqlite3 *db, int onoff){ #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); db->errMask = onoff ? 0xffffffff : 0xff; sqlite3_mutex_leave(db->mutex); return SQLITE_OK; } /* ** Invoke the xFileControl method on a particular database. */ SQLITE_API int sqlite3_file_control(sqlite3 *db, const char *zDbName, int op, void *pArg){ int rc = SQLITE_ERROR; Btree *pBtree; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; #endif sqlite3_mutex_enter(db->mutex); pBtree = sqlite3DbNameToBtree(db, zDbName); if( pBtree ){ Pager *pPager; sqlite3_file *fd; sqlite3BtreeEnter(pBtree); pPager = sqlite3BtreePager(pBtree); assert( pPager!=0 ); fd = sqlite3PagerFile(pPager); assert( fd!=0 ); if( op==SQLITE_FCNTL_FILE_POINTER ){ *(sqlite3_file**)pArg = fd; rc = SQLITE_OK; }else if( op==SQLITE_FCNTL_VFS_POINTER ){ *(sqlite3_vfs**)pArg = sqlite3PagerVfs(pPager); rc = SQLITE_OK; }else if( op==SQLITE_FCNTL_JOURNAL_POINTER ){ *(sqlite3_file**)pArg = sqlite3PagerJrnlFile(pPager); rc = SQLITE_OK; }else if( op==SQLITE_FCNTL_DATA_VERSION ){ *(unsigned int*)pArg = sqlite3PagerDataVersion(pPager); rc = SQLITE_OK; }else if( op==SQLITE_FCNTL_RESERVE_BYTES ){ int iNew = *(int*)pArg; *(int*)pArg = sqlite3BtreeGetRequestedReserve(pBtree); if( iNew>=0 && iNew<=255 ){ sqlite3BtreeSetPageSize(pBtree, 0, iNew, 0); } rc = SQLITE_OK; }else{ rc = sqlite3OsFileControl(fd, op, pArg); } sqlite3BtreeLeave(pBtree); } sqlite3_mutex_leave(db->mutex); return rc; } /* ** Interface to the testing logic. */ SQLITE_API int sqlite3_test_control(int op, ...){ int rc = 0; #ifdef SQLITE_UNTESTABLE UNUSED_PARAMETER(op); #else va_list ap; va_start(ap, op); switch( op ){ /* ** Save the current state of the PRNG. */ case SQLITE_TESTCTRL_PRNG_SAVE: { sqlite3PrngSaveState(); break; } /* ** Restore the state of the PRNG to the last state saved using ** PRNG_SAVE. If PRNG_SAVE has never before been called, then ** this verb acts like PRNG_RESET. */ case SQLITE_TESTCTRL_PRNG_RESTORE: { sqlite3PrngRestoreState(); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_PRNG_SEED, int x, sqlite3 *db); ** ** Control the seed for the pseudo-random number generator (PRNG) that ** is built into SQLite. Cases: ** ** x!=0 && db!=0 Seed the PRNG to the current value of the ** schema cookie in the main database for db, or ** x if the schema cookie is zero. This case ** is convenient to use with database fuzzers ** as it allows the fuzzer some control over the ** the PRNG seed. ** ** x!=0 && db==0 Seed the PRNG to the value of x. ** ** x==0 && db==0 Revert to default behavior of using the ** xRandomness method on the primary VFS. ** ** This test-control also resets the PRNG so that the new seed will ** be used for the next call to sqlite3_randomness(). */ #ifndef SQLITE_OMIT_WSD case SQLITE_TESTCTRL_PRNG_SEED: { int x = va_arg(ap, int); int y; sqlite3 *db = va_arg(ap, sqlite3*); assert( db==0 || db->aDb[0].pSchema!=0 ); if( db && (y = db->aDb[0].pSchema->schema_cookie)!=0 ){ x = y; } sqlite3Config.iPrngSeed = x; sqlite3_randomness(0,0); break; } #endif /* ** sqlite3_test_control(BITVEC_TEST, size, program) ** ** Run a test against a Bitvec object of size. The program argument ** is an array of integers that defines the test. Return -1 on a ** memory allocation error, 0 on success, or non-zero for an error. ** See the sqlite3BitvecBuiltinTest() for additional information. */ case SQLITE_TESTCTRL_BITVEC_TEST: { int sz = va_arg(ap, int); int *aProg = va_arg(ap, int*); rc = sqlite3BitvecBuiltinTest(sz, aProg); break; } /* ** sqlite3_test_control(FAULT_INSTALL, xCallback) ** ** Arrange to invoke xCallback() whenever sqlite3FaultSim() is called, ** if xCallback is not NULL. ** ** As a test of the fault simulator mechanism itself, sqlite3FaultSim(0) ** is called immediately after installing the new callback and the return ** value from sqlite3FaultSim(0) becomes the return from ** sqlite3_test_control(). */ case SQLITE_TESTCTRL_FAULT_INSTALL: { /* MSVC is picky about pulling func ptrs from va lists. ** http://support.microsoft.com/kb/47961 ** sqlite3GlobalConfig.xTestCallback = va_arg(ap, int(*)(int)); */ typedef int(*TESTCALLBACKFUNC_t)(int); sqlite3GlobalConfig.xTestCallback = va_arg(ap, TESTCALLBACKFUNC_t); rc = sqlite3FaultSim(0); break; } /* ** sqlite3_test_control(BENIGN_MALLOC_HOOKS, xBegin, xEnd) ** ** Register hooks to call to indicate which malloc() failures ** are benign. */ case SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS: { typedef void (*void_function)(void); void_function xBenignBegin; void_function xBenignEnd; xBenignBegin = va_arg(ap, void_function); xBenignEnd = va_arg(ap, void_function); sqlite3BenignMallocHooks(xBenignBegin, xBenignEnd); break; } /* ** sqlite3_test_control(SQLITE_TESTCTRL_PENDING_BYTE, unsigned int X) ** ** Set the PENDING byte to the value in the argument, if X>0. ** Make no changes if X==0. Return the value of the pending byte ** as it existing before this routine was called. ** ** IMPORTANT: Changing the PENDING byte from 0x40000000 results in ** an incompatible database file format. Changing the PENDING byte ** while any database connection is open results in undefined and ** deleterious behavior. */ case SQLITE_TESTCTRL_PENDING_BYTE: { rc = PENDING_BYTE; #ifndef SQLITE_OMIT_WSD { unsigned int newVal = va_arg(ap, unsigned int); if( newVal ) sqlite3PendingByte = newVal; } #endif break; } /* ** sqlite3_test_control(SQLITE_TESTCTRL_ASSERT, int X) ** ** This action provides a run-time test to see whether or not ** assert() was enabled at compile-time. If X is true and assert() ** is enabled, then the return value is true. If X is true and ** assert() is disabled, then the return value is zero. If X is ** false and assert() is enabled, then the assertion fires and the ** process aborts. If X is false and assert() is disabled, then the ** return value is zero. */ case SQLITE_TESTCTRL_ASSERT: { volatile int x = 0; assert( /*side-effects-ok*/ (x = va_arg(ap,int))!=0 ); rc = x; break; } /* ** sqlite3_test_control(SQLITE_TESTCTRL_ALWAYS, int X) ** ** This action provides a run-time test to see how the ALWAYS and ** NEVER macros were defined at compile-time. ** ** The return value is ALWAYS(X) if X is true, or 0 if X is false. ** ** The recommended test is X==2. If the return value is 2, that means ** ALWAYS() and NEVER() are both no-op pass-through macros, which is the ** default setting. If the return value is 1, then ALWAYS() is either ** hard-coded to true or else it asserts if its argument is false. ** The first behavior (hard-coded to true) is the case if ** SQLITE_TESTCTRL_ASSERT shows that assert() is disabled and the second ** behavior (assert if the argument to ALWAYS() is false) is the case if ** SQLITE_TESTCTRL_ASSERT shows that assert() is enabled. ** ** The run-time test procedure might look something like this: ** ** if( sqlite3_test_control(SQLITE_TESTCTRL_ALWAYS, 2)==2 ){ ** // ALWAYS() and NEVER() are no-op pass-through macros ** }else if( sqlite3_test_control(SQLITE_TESTCTRL_ASSERT, 1) ){ ** // ALWAYS(x) asserts that x is true. NEVER(x) asserts x is false. ** }else{ ** // ALWAYS(x) is a constant 1. NEVER(x) is a constant 0. ** } */ case SQLITE_TESTCTRL_ALWAYS: { int x = va_arg(ap,int); rc = x ? ALWAYS(x) : 0; break; } /* ** sqlite3_test_control(SQLITE_TESTCTRL_BYTEORDER); ** ** The integer returned reveals the byte-order of the computer on which ** SQLite is running: ** ** 1 big-endian, determined at run-time ** 10 little-endian, determined at run-time ** 432101 big-endian, determined at compile-time ** 123410 little-endian, determined at compile-time */ case SQLITE_TESTCTRL_BYTEORDER: { rc = SQLITE_BYTEORDER*100 + SQLITE_LITTLEENDIAN*10 + SQLITE_BIGENDIAN; break; } /* sqlite3_test_control(SQLITE_TESTCTRL_OPTIMIZATIONS, sqlite3 *db, int N) ** ** Enable or disable various optimizations for testing purposes. The ** argument N is a bitmask of optimizations to be disabled. For normal ** operation N should be 0. The idea is that a test program (like the ** SQL Logic Test or SLT test module) can run the same SQL multiple times ** with various optimizations disabled to verify that the same answer ** is obtained in every case. */ case SQLITE_TESTCTRL_OPTIMIZATIONS: { sqlite3 *db = va_arg(ap, sqlite3*); db->dbOptFlags = (u16)(va_arg(ap, int) & 0xffff); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_LOCALTIME_FAULT, int onoff); ** ** If parameter onoff is non-zero, subsequent calls to localtime() ** and its variants fail. If onoff is zero, undo this setting. */ case SQLITE_TESTCTRL_LOCALTIME_FAULT: { sqlite3GlobalConfig.bLocaltimeFault = va_arg(ap, int); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_INTERNAL_FUNCTIONS, sqlite3*); ** ** Toggle the ability to use internal functions on or off for ** the database connection given in the argument. */ case SQLITE_TESTCTRL_INTERNAL_FUNCTIONS: { sqlite3 *db = va_arg(ap, sqlite3*); db->mDbFlags ^= DBFLAG_InternalFunc; break; } /* sqlite3_test_control(SQLITE_TESTCTRL_NEVER_CORRUPT, int); ** ** Set or clear a flag that indicates that the database file is always well- ** formed and never corrupt. This flag is clear by default, indicating that ** database files might have arbitrary corruption. Setting the flag during ** testing causes certain assert() statements in the code to be activated ** that demonstrat invariants on well-formed database files. */ case SQLITE_TESTCTRL_NEVER_CORRUPT: { sqlite3GlobalConfig.neverCorrupt = va_arg(ap, int); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS, int); ** ** Set or clear a flag that causes SQLite to verify that type, name, ** and tbl_name fields of the sqlite_schema table. This is normally ** on, but it is sometimes useful to turn it off for testing. ** ** 2020-07-22: Disabling EXTRA_SCHEMA_CHECKS also disables the ** verification of rootpage numbers when parsing the schema. This ** is useful to make it easier to reach strange internal error states ** during testing. The EXTRA_SCHEMA_CHECKS setting is always enabled ** in production. */ case SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS: { sqlite3GlobalConfig.bExtraSchemaChecks = va_arg(ap, int); break; } /* Set the threshold at which OP_Once counters reset back to zero. ** By default this is 0x7ffffffe (over 2 billion), but that value is ** too big to test in a reasonable amount of time, so this control is ** provided to set a small and easily reachable reset value. */ case SQLITE_TESTCTRL_ONCE_RESET_THRESHOLD: { sqlite3GlobalConfig.iOnceResetThreshold = va_arg(ap, int); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_VDBE_COVERAGE, xCallback, ptr); ** ** Set the VDBE coverage callback function to xCallback with context ** pointer ptr. */ case SQLITE_TESTCTRL_VDBE_COVERAGE: { #ifdef SQLITE_VDBE_COVERAGE typedef void (*branch_callback)(void*,unsigned int, unsigned char,unsigned char); sqlite3GlobalConfig.xVdbeBranch = va_arg(ap,branch_callback); sqlite3GlobalConfig.pVdbeBranchArg = va_arg(ap,void*); #endif break; } /* sqlite3_test_control(SQLITE_TESTCTRL_SORTER_MMAP, db, nMax); */ case SQLITE_TESTCTRL_SORTER_MMAP: { sqlite3 *db = va_arg(ap, sqlite3*); db->nMaxSorterMmap = va_arg(ap, int); break; } /* sqlite3_test_control(SQLITE_TESTCTRL_ISINIT); ** ** Return SQLITE_OK if SQLite has been initialized and SQLITE_ERROR if ** not. */ case SQLITE_TESTCTRL_ISINIT: { if( sqlite3GlobalConfig.isInit==0 ) rc = SQLITE_ERROR; break; } /* sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, db, dbName, onOff, tnum); ** ** This test control is used to create imposter tables. "db" is a pointer ** to the database connection. dbName is the database name (ex: "main" or ** "temp") which will receive the imposter. "onOff" turns imposter mode on ** or off. "tnum" is the root page of the b-tree to which the imposter ** table should connect. ** ** Enable imposter mode only when the schema has already been parsed. Then ** run a single CREATE TABLE statement to construct the imposter table in ** the parsed schema. Then turn imposter mode back off again. ** ** If onOff==0 and tnum>0 then reset the schema for all databases, causing ** the schema to be reparsed the next time it is needed. This has the ** effect of erasing all imposter tables. */ case SQLITE_TESTCTRL_IMPOSTER: { sqlite3 *db = va_arg(ap, sqlite3*); sqlite3_mutex_enter(db->mutex); db->init.iDb = sqlite3FindDbName(db, va_arg(ap,const char*)); db->init.busy = db->init.imposterTable = va_arg(ap,int); db->init.newTnum = va_arg(ap,int); if( db->init.busy==0 && db->init.newTnum>0 ){ sqlite3ResetAllSchemasOfConnection(db); } sqlite3_mutex_leave(db->mutex); break; } #if defined(YYCOVERAGE) /* sqlite3_test_control(SQLITE_TESTCTRL_PARSER_COVERAGE, FILE *out) ** ** This test control (only available when SQLite is compiled with ** -DYYCOVERAGE) writes a report onto "out" that shows all ** state/lookahead combinations in the parser state machine ** which are never exercised. If any state is missed, make the ** return code SQLITE_ERROR. */ case SQLITE_TESTCTRL_PARSER_COVERAGE: { FILE *out = va_arg(ap, FILE*); if( sqlite3ParserCoverage(out) ) rc = SQLITE_ERROR; break; } #endif /* defined(YYCOVERAGE) */ /* sqlite3_test_control(SQLITE_TESTCTRL_RESULT_INTREAL, sqlite3_context*); ** ** This test-control causes the most recent sqlite3_result_int64() value ** to be interpreted as a MEM_IntReal instead of as an MEM_Int. Normally, ** MEM_IntReal values only arise during an INSERT operation of integer ** values into a REAL column, so they can be challenging to test. This ** test-control enables us to write an intreal() SQL function that can ** inject an intreal() value at arbitrary places in an SQL statement, ** for testing purposes. */ case SQLITE_TESTCTRL_RESULT_INTREAL: { sqlite3_context *pCtx = va_arg(ap, sqlite3_context*); sqlite3ResultIntReal(pCtx); break; } } va_end(ap); #endif /* SQLITE_UNTESTABLE */ return rc; } /* ** The Pager stores the Database filename, Journal filename, and WAL filename ** consecutively in memory, in that order. The database filename is prefixed ** by four zero bytes. Locate the start of the database filename by searching ** backwards for the first byte following four consecutive zero bytes. ** ** This only works if the filename passed in was obtained from the Pager. */ static const char *databaseName(const char *zName){ while( zName[-1]!=0 || zName[-2]!=0 || zName[-3]!=0 || zName[-4]!=0 ){ zName--; } return zName; } /* ** Append text z[] to the end of p[]. Return a pointer to the first ** character after then zero terminator on the new text in p[]. */ static char *appendText(char *p, const char *z){ size_t n = strlen(z); memcpy(p, z, n+1); return p+n+1; } /* ** Allocate memory to hold names for a database, journal file, WAL file, ** and query parameters. The pointer returned is valid for use by ** sqlite3_filename_database() and sqlite3_uri_parameter() and related ** functions. ** ** Memory layout must be compatible with that generated by the pager ** and expected by sqlite3_uri_parameter() and databaseName(). */ SQLITE_API char *sqlite3_create_filename( const char *zDatabase, const char *zJournal, const char *zWal, int nParam, const char **azParam ){ sqlite3_int64 nByte; int i; char *pResult, *p; nByte = strlen(zDatabase) + strlen(zJournal) + strlen(zWal) + 10; for(i=0; i0 ){ zFilename += sqlite3Strlen30(zFilename) + 1; zFilename += sqlite3Strlen30(zFilename) + 1; } return zFilename[0] ? zFilename : 0; } /* ** Return a boolean value for a query parameter. */ SQLITE_API int sqlite3_uri_boolean(const char *zFilename, const char *zParam, int bDflt){ const char *z = sqlite3_uri_parameter(zFilename, zParam); bDflt = bDflt!=0; return z ? sqlite3GetBoolean(z, bDflt) : bDflt; } /* ** Return a 64-bit integer value for a query parameter. */ SQLITE_API sqlite3_int64 sqlite3_uri_int64( const char *zFilename, /* Filename as passed to xOpen */ const char *zParam, /* URI parameter sought */ sqlite3_int64 bDflt /* return if parameter is missing */ ){ const char *z = sqlite3_uri_parameter(zFilename, zParam); sqlite3_int64 v; if( z && sqlite3DecOrHexToI64(z, &v)==0 ){ bDflt = v; } return bDflt; } /* ** Translate a filename that was handed to a VFS routine into the corresponding ** database, journal, or WAL file. ** ** It is an error to pass this routine a filename string that was not ** passed into the VFS from the SQLite core. Doing so is similar to ** passing free() a pointer that was not obtained from malloc() - it is ** an error that we cannot easily detect but that will likely cause memory ** corruption. */ SQLITE_API const char *sqlite3_filename_database(const char *zFilename){ return databaseName(zFilename); } SQLITE_API const char *sqlite3_filename_journal(const char *zFilename){ zFilename = databaseName(zFilename); zFilename += sqlite3Strlen30(zFilename) + 1; while( zFilename[0] ){ zFilename += sqlite3Strlen30(zFilename) + 1; zFilename += sqlite3Strlen30(zFilename) + 1; } return zFilename + 1; } SQLITE_API const char *sqlite3_filename_wal(const char *zFilename){ #ifdef SQLITE_OMIT_WAL return 0; #else zFilename = sqlite3_filename_journal(zFilename); zFilename += sqlite3Strlen30(zFilename) + 1; return zFilename; #endif } /* ** Return the Btree pointer identified by zDbName. Return NULL if not found. */ SQLITE_PRIVATE Btree *sqlite3DbNameToBtree(sqlite3 *db, const char *zDbName){ int iDb = zDbName ? sqlite3FindDbName(db, zDbName) : 0; return iDb<0 ? 0 : db->aDb[iDb].pBt; } /* ** Return the filename of the database associated with a database ** connection. */ SQLITE_API const char *sqlite3_db_filename(sqlite3 *db, const char *zDbName){ Btree *pBt; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif pBt = sqlite3DbNameToBtree(db, zDbName); return pBt ? sqlite3BtreeGetFilename(pBt) : 0; } /* ** Return 1 if database is read-only or 0 if read/write. Return -1 if ** no such database exists. */ SQLITE_API int sqlite3_db_readonly(sqlite3 *db, const char *zDbName){ Btree *pBt; #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ (void)SQLITE_MISUSE_BKPT; return -1; } #endif pBt = sqlite3DbNameToBtree(db, zDbName); return pBt ? sqlite3BtreeIsReadonly(pBt) : -1; } #ifdef SQLITE_ENABLE_SNAPSHOT /* ** Obtain a snapshot handle for the snapshot of database zDb currently ** being read by handle db. */ SQLITE_API int sqlite3_snapshot_get( sqlite3 *db, const char *zDb, sqlite3_snapshot **ppSnapshot ){ int rc = SQLITE_ERROR; #ifndef SQLITE_OMIT_WAL #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); if( db->autoCommit==0 ){ int iDb = sqlite3FindDbName(db, zDb); if( iDb==0 || iDb>1 ){ Btree *pBt = db->aDb[iDb].pBt; if( 0==sqlite3BtreeIsInTrans(pBt) ){ rc = sqlite3BtreeBeginTrans(pBt, 0, 0); if( rc==SQLITE_OK ){ rc = sqlite3PagerSnapshotGet(sqlite3BtreePager(pBt), ppSnapshot); } } } } sqlite3_mutex_leave(db->mutex); #endif /* SQLITE_OMIT_WAL */ return rc; } /* ** Open a read-transaction on the snapshot idendified by pSnapshot. */ SQLITE_API int sqlite3_snapshot_open( sqlite3 *db, const char *zDb, sqlite3_snapshot *pSnapshot ){ int rc = SQLITE_ERROR; #ifndef SQLITE_OMIT_WAL #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); if( db->autoCommit==0 ){ int iDb; iDb = sqlite3FindDbName(db, zDb); if( iDb==0 || iDb>1 ){ Btree *pBt = db->aDb[iDb].pBt; if( sqlite3BtreeIsInTrans(pBt)==0 ){ Pager *pPager = sqlite3BtreePager(pBt); int bUnlock = 0; if( sqlite3BtreeIsInReadTrans(pBt) ){ if( db->nVdbeActive==0 ){ rc = sqlite3PagerSnapshotCheck(pPager, pSnapshot); if( rc==SQLITE_OK ){ bUnlock = 1; rc = sqlite3BtreeCommit(pBt); } } }else{ rc = SQLITE_OK; } if( rc==SQLITE_OK ){ rc = sqlite3PagerSnapshotOpen(pPager, pSnapshot); } if( rc==SQLITE_OK ){ rc = sqlite3BtreeBeginTrans(pBt, 0, 0); sqlite3PagerSnapshotOpen(pPager, 0); } if( bUnlock ){ sqlite3PagerSnapshotUnlock(pPager); } } } } sqlite3_mutex_leave(db->mutex); #endif /* SQLITE_OMIT_WAL */ return rc; } /* ** Recover as many snapshots as possible from the wal file associated with ** schema zDb of database db. */ SQLITE_API int sqlite3_snapshot_recover(sqlite3 *db, const char *zDb){ int rc = SQLITE_ERROR; int iDb; #ifndef SQLITE_OMIT_WAL #ifdef SQLITE_ENABLE_API_ARMOR if( !sqlite3SafetyCheckOk(db) ){ return SQLITE_MISUSE_BKPT; } #endif sqlite3_mutex_enter(db->mutex); iDb = sqlite3FindDbName(db, zDb); if( iDb==0 || iDb>1 ){ Btree *pBt = db->aDb[iDb].pBt; if( 0==sqlite3BtreeIsInReadTrans(pBt) ){ rc = sqlite3BtreeBeginTrans(pBt, 0, 0); if( rc==SQLITE_OK ){ rc = sqlite3PagerSnapshotRecover(sqlite3BtreePager(pBt)); sqlite3BtreeCommit(pBt); } } } sqlite3_mutex_leave(db->mutex); #endif /* SQLITE_OMIT_WAL */ return rc; } /* ** Free a snapshot handle obtained from sqlite3_snapshot_get(). */ SQLITE_API void sqlite3_snapshot_free(sqlite3_snapshot *pSnapshot){ sqlite3_free(pSnapshot); } #endif /* SQLITE_ENABLE_SNAPSHOT */ #ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS /* ** Given the name of a compile-time option, return true if that option ** was used and false if not. ** ** The name can optionally begin with "SQLITE_" but the "SQLITE_" prefix ** is not required for a match. */ SQLITE_API int sqlite3_compileoption_used(const char *zOptName){ int i, n; int nOpt; const char **azCompileOpt; #if SQLITE_ENABLE_API_ARMOR if( zOptName==0 ){ (void)SQLITE_MISUSE_BKPT; return 0; } #endif azCompileOpt = sqlite3CompileOptions(&nOpt); if( sqlite3StrNICmp(zOptName, "SQLITE_", 7)==0 ) zOptName += 7; n = sqlite3Strlen30(zOptName); /* Since nOpt is normally in single digits, a linear search is ** adequate. No need for a binary search. */ for(i=0; i=0 && NpNextBlocked){ int seen = 0; sqlite3 *p2; /* Verify property (1) */ assert( p->pUnlockConnection || p->pBlockingConnection ); /* Verify property (2) */ for(p2=sqlite3BlockedList; p2!=p; p2=p2->pNextBlocked){ if( p2->xUnlockNotify==p->xUnlockNotify ) seen = 1; assert( p2->xUnlockNotify==p->xUnlockNotify || !seen ); assert( db==0 || p->pUnlockConnection!=db ); assert( db==0 || p->pBlockingConnection!=db ); } } } #else # define checkListProperties(x) #endif /* ** Remove connection db from the blocked connections list. If connection ** db is not currently a part of the list, this function is a no-op. */ static void removeFromBlockedList(sqlite3 *db){ sqlite3 **pp; assertMutexHeld(); for(pp=&sqlite3BlockedList; *pp; pp = &(*pp)->pNextBlocked){ if( *pp==db ){ *pp = (*pp)->pNextBlocked; break; } } } /* ** Add connection db to the blocked connections list. It is assumed ** that it is not already a part of the list. */ static void addToBlockedList(sqlite3 *db){ sqlite3 **pp; assertMutexHeld(); for( pp=&sqlite3BlockedList; *pp && (*pp)->xUnlockNotify!=db->xUnlockNotify; pp=&(*pp)->pNextBlocked ); db->pNextBlocked = *pp; *pp = db; } /* ** Obtain the STATIC_MAIN mutex. */ static void enterMutex(void){ sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN)); checkListProperties(0); } /* ** Release the STATIC_MAIN mutex. */ static void leaveMutex(void){ assertMutexHeld(); checkListProperties(0); sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MAIN)); } /* ** Register an unlock-notify callback. ** ** This is called after connection "db" has attempted some operation ** but has received an SQLITE_LOCKED error because another connection ** (call it pOther) in the same process was busy using the same shared ** cache. pOther is found by looking at db->pBlockingConnection. ** ** If there is no blocking connection, the callback is invoked immediately, ** before this routine returns. ** ** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate ** a deadlock. ** ** Otherwise, make arrangements to invoke xNotify when pOther drops ** its locks. ** ** Each call to this routine overrides any prior callbacks registered ** on the same "db". If xNotify==0 then any prior callbacks are immediately ** cancelled. */ SQLITE_API int sqlite3_unlock_notify( sqlite3 *db, void (*xNotify)(void **, int), void *pArg ){ int rc = SQLITE_OK; sqlite3_mutex_enter(db->mutex); enterMutex(); if( xNotify==0 ){ removeFromBlockedList(db); db->pBlockingConnection = 0; db->pUnlockConnection = 0; db->xUnlockNotify = 0; db->pUnlockArg = 0; }else if( 0==db->pBlockingConnection ){ /* The blocking transaction has been concluded. Or there never was a ** blocking transaction. In either case, invoke the notify callback ** immediately. */ xNotify(&pArg, 1); }else{ sqlite3 *p; for(p=db->pBlockingConnection; p && p!=db; p=p->pUnlockConnection){} if( p ){ rc = SQLITE_LOCKED; /* Deadlock detected. */ }else{ db->pUnlockConnection = db->pBlockingConnection; db->xUnlockNotify = xNotify; db->pUnlockArg = pArg; removeFromBlockedList(db); addToBlockedList(db); } } leaveMutex(); assert( !db->mallocFailed ); sqlite3ErrorWithMsg(db, rc, (rc?"database is deadlocked":0)); sqlite3_mutex_leave(db->mutex); return rc; } /* ** This function is called while stepping or preparing a statement ** associated with connection db. The operation will return SQLITE_LOCKED ** to the user because it requires a lock that will not be available ** until connection pBlocker concludes its current transaction. */ SQLITE_PRIVATE void sqlite3ConnectionBlocked(sqlite3 *db, sqlite3 *pBlocker){ enterMutex(); if( db->pBlockingConnection==0 && db->pUnlockConnection==0 ){ addToBlockedList(db); } db->pBlockingConnection = pBlocker; leaveMutex(); } /* ** This function is called when ** the transaction opened by database db has just finished. Locks held ** by database connection db have been released. ** ** This function loops through each entry in the blocked connections ** list and does the following: ** ** 1) If the sqlite3.pBlockingConnection member of a list entry is ** set to db, then set pBlockingConnection=0. ** ** 2) If the sqlite3.pUnlockConnection member of a list entry is ** set to db, then invoke the configured unlock-notify callback and ** set pUnlockConnection=0. ** ** 3) If the two steps above mean that pBlockingConnection==0 and ** pUnlockConnection==0, remove the entry from the blocked connections ** list. */ SQLITE_PRIVATE void sqlite3ConnectionUnlocked(sqlite3 *db){ void (*xUnlockNotify)(void **, int) = 0; /* Unlock-notify cb to invoke */ int nArg = 0; /* Number of entries in aArg[] */ sqlite3 **pp; /* Iterator variable */ void **aArg; /* Arguments to the unlock callback */ void **aDyn = 0; /* Dynamically allocated space for aArg[] */ void *aStatic[16]; /* Starter space for aArg[]. No malloc required */ aArg = aStatic; enterMutex(); /* Enter STATIC_MAIN mutex */ /* This loop runs once for each entry in the blocked-connections list. */ for(pp=&sqlite3BlockedList; *pp; /* no-op */ ){ sqlite3 *p = *pp; /* Step 1. */ if( p->pBlockingConnection==db ){ p->pBlockingConnection = 0; } /* Step 2. */ if( p->pUnlockConnection==db ){ assert( p->xUnlockNotify ); if( p->xUnlockNotify!=xUnlockNotify && nArg!=0 ){ xUnlockNotify(aArg, nArg); nArg = 0; } sqlite3BeginBenignMalloc(); assert( aArg==aDyn || (aDyn==0 && aArg==aStatic) ); assert( nArg<=(int)ArraySize(aStatic) || aArg==aDyn ); if( (!aDyn && nArg==(int)ArraySize(aStatic)) || (aDyn && nArg==(int)(sqlite3MallocSize(aDyn)/sizeof(void*))) ){ /* The aArg[] array needs to grow. */ void **pNew = (void **)sqlite3Malloc(nArg*sizeof(void *)*2); if( pNew ){ memcpy(pNew, aArg, nArg*sizeof(void *)); sqlite3_free(aDyn); aDyn = aArg = pNew; }else{ /* This occurs when the array of context pointers that need to ** be passed to the unlock-notify callback is larger than the ** aStatic[] array allocated on the stack and the attempt to ** allocate a larger array from the heap has failed. ** ** This is a difficult situation to handle. Returning an error ** code to the caller is insufficient, as even if an error code ** is returned the transaction on connection db will still be ** closed and the unlock-notify callbacks on blocked connections ** will go unissued. This might cause the application to wait ** indefinitely for an unlock-notify callback that will never ** arrive. ** ** Instead, invoke the unlock-notify callback with the context ** array already accumulated. We can then clear the array and ** begin accumulating any further context pointers without ** requiring any dynamic allocation. This is sub-optimal because ** it means that instead of one callback with a large array of ** context pointers the application will receive two or more ** callbacks with smaller arrays of context pointers, which will ** reduce the applications ability to prioritize multiple ** connections. But it is the best that can be done under the ** circumstances. */ xUnlockNotify(aArg, nArg); nArg = 0; } } sqlite3EndBenignMalloc(); aArg[nArg++] = p->pUnlockArg; xUnlockNotify = p->xUnlockNotify; p->pUnlockConnection = 0; p->xUnlockNotify = 0; p->pUnlockArg = 0; } /* Step 3. */ if( p->pBlockingConnection==0 && p->pUnlockConnection==0 ){ /* Remove connection p from the blocked connections list. */ *pp = p->pNextBlocked; p->pNextBlocked = 0; }else{ pp = &p->pNextBlocked; } } if( nArg!=0 ){ xUnlockNotify(aArg, nArg); } sqlite3_free(aDyn); leaveMutex(); /* Leave STATIC_MAIN mutex */ } /* ** This is called when the database connection passed as an argument is ** being closed. The connection is removed from the blocked list. */ SQLITE_PRIVATE void sqlite3ConnectionClosed(sqlite3 *db){ sqlite3ConnectionUnlocked(db); enterMutex(); removeFromBlockedList(db); checkListProperties(db); leaveMutex(); } #endif /************** End of notify.c **********************************************/ /************** Begin file fts3.c ********************************************/ /* ** 2006 Oct 10 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This is an SQLite module implementing full-text search. */ /* ** The code in this file is only compiled if: ** ** * The FTS3 module is being built as an extension ** (in which case SQLITE_CORE is not defined), or ** ** * The FTS3 module is being built into the core of ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). */ /* The full-text index is stored in a series of b+tree (-like) ** structures called segments which map terms to doclists. The ** structures are like b+trees in layout, but are constructed from the ** bottom up in optimal fashion and are not updatable. Since trees ** are built from the bottom up, things will be described from the ** bottom up. ** ** **** Varints **** ** The basic unit of encoding is a variable-length integer called a ** varint. We encode variable-length integers in little-endian order ** using seven bits * per byte as follows: ** ** KEY: ** A = 0xxxxxxx 7 bits of data and one flag bit ** B = 1xxxxxxx 7 bits of data and one flag bit ** ** 7 bits - A ** 14 bits - BA ** 21 bits - BBA ** and so on. ** ** This is similar in concept to how sqlite encodes "varints" but ** the encoding is not the same. SQLite varints are big-endian ** are are limited to 9 bytes in length whereas FTS3 varints are ** little-endian and can be up to 10 bytes in length (in theory). ** ** Example encodings: ** ** 1: 0x01 ** 127: 0x7f ** 128: 0x81 0x00 ** ** **** Document lists **** ** A doclist (document list) holds a docid-sorted list of hits for a ** given term. Doclists hold docids and associated token positions. ** A docid is the unique integer identifier for a single document. ** A position is the index of a word within the document. The first ** word of the document has a position of 0. ** ** FTS3 used to optionally store character offsets using a compile-time ** option. But that functionality is no longer supported. ** ** A doclist is stored like this: ** ** array { ** varint docid; (delta from previous doclist) ** array { (position list for column 0) ** varint position; (2 more than the delta from previous position) ** } ** array { ** varint POS_COLUMN; (marks start of position list for new column) ** varint column; (index of new column) ** array { ** varint position; (2 more than the delta from previous position) ** } ** } ** varint POS_END; (marks end of positions for this document. ** } ** ** Here, array { X } means zero or more occurrences of X, adjacent in ** memory. A "position" is an index of a token in the token stream ** generated by the tokenizer. Note that POS_END and POS_COLUMN occur ** in the same logical place as the position element, and act as sentinals ** ending a position list array. POS_END is 0. POS_COLUMN is 1. ** The positions numbers are not stored literally but rather as two more ** than the difference from the prior position, or the just the position plus ** 2 for the first position. Example: ** ** label: A B C D E F G H I J K ** value: 123 5 9 1 1 14 35 0 234 72 0 ** ** The 123 value is the first docid. For column zero in this document ** there are two matches at positions 3 and 10 (5-2 and 9-2+3). The 1 ** at D signals the start of a new column; the 1 at E indicates that the ** new column is column number 1. There are two positions at 12 and 45 ** (14-2 and 35-2+12). The 0 at H indicate the end-of-document. The ** 234 at I is the delta to next docid (357). It has one position 70 ** (72-2) and then terminates with the 0 at K. ** ** A "position-list" is the list of positions for multiple columns for ** a single docid. A "column-list" is the set of positions for a single ** column. Hence, a position-list consists of one or more column-lists, ** a document record consists of a docid followed by a position-list and ** a doclist consists of one or more document records. ** ** A bare doclist omits the position information, becoming an ** array of varint-encoded docids. ** **** Segment leaf nodes **** ** Segment leaf nodes store terms and doclists, ordered by term. Leaf ** nodes are written using LeafWriter, and read using LeafReader (to ** iterate through a single leaf node's data) and LeavesReader (to ** iterate through a segment's entire leaf layer). Leaf nodes have ** the format: ** ** varint iHeight; (height from leaf level, always 0) ** varint nTerm; (length of first term) ** char pTerm[nTerm]; (content of first term) ** varint nDoclist; (length of term's associated doclist) ** char pDoclist[nDoclist]; (content of doclist) ** array { ** (further terms are delta-encoded) ** varint nPrefix; (length of prefix shared with previous term) ** varint nSuffix; (length of unshared suffix) ** char pTermSuffix[nSuffix];(unshared suffix of next term) ** varint nDoclist; (length of term's associated doclist) ** char pDoclist[nDoclist]; (content of doclist) ** } ** ** Here, array { X } means zero or more occurrences of X, adjacent in ** memory. ** ** Leaf nodes are broken into blocks which are stored contiguously in ** the %_segments table in sorted order. This means that when the end ** of a node is reached, the next term is in the node with the next ** greater node id. ** ** New data is spilled to a new leaf node when the current node ** exceeds LEAF_MAX bytes (default 2048). New data which itself is ** larger than STANDALONE_MIN (default 1024) is placed in a standalone ** node (a leaf node with a single term and doclist). The goal of ** these settings is to pack together groups of small doclists while ** making it efficient to directly access large doclists. The ** assumption is that large doclists represent terms which are more ** likely to be query targets. ** ** TODO(shess) It may be useful for blocking decisions to be more ** dynamic. For instance, it may make more sense to have a 2.5k leaf ** node rather than splitting into 2k and .5k nodes. My intuition is ** that this might extend through 2x or 4x the pagesize. ** ** **** Segment interior nodes **** ** Segment interior nodes store blockids for subtree nodes and terms ** to describe what data is stored by the each subtree. Interior ** nodes are written using InteriorWriter, and read using ** InteriorReader. InteriorWriters are created as needed when ** SegmentWriter creates new leaf nodes, or when an interior node ** itself grows too big and must be split. The format of interior ** nodes: ** ** varint iHeight; (height from leaf level, always >0) ** varint iBlockid; (block id of node's leftmost subtree) ** optional { ** varint nTerm; (length of first term) ** char pTerm[nTerm]; (content of first term) ** array { ** (further terms are delta-encoded) ** varint nPrefix; (length of shared prefix with previous term) ** varint nSuffix; (length of unshared suffix) ** char pTermSuffix[nSuffix]; (unshared suffix of next term) ** } ** } ** ** Here, optional { X } means an optional element, while array { X } ** means zero or more occurrences of X, adjacent in memory. ** ** An interior node encodes n terms separating n+1 subtrees. The ** subtree blocks are contiguous, so only the first subtree's blockid ** is encoded. The subtree at iBlockid will contain all terms less ** than the first term encoded (or all terms if no term is encoded). ** Otherwise, for terms greater than or equal to pTerm[i] but less ** than pTerm[i+1], the subtree for that term will be rooted at ** iBlockid+i. Interior nodes only store enough term data to ** distinguish adjacent children (if the rightmost term of the left ** child is "something", and the leftmost term of the right child is ** "wicked", only "w" is stored). ** ** New data is spilled to a new interior node at the same height when ** the current node exceeds INTERIOR_MAX bytes (default 2048). ** INTERIOR_MIN_TERMS (default 7) keeps large terms from monopolizing ** interior nodes and making the tree too skinny. The interior nodes ** at a given height are naturally tracked by interior nodes at ** height+1, and so on. ** ** **** Segment directory **** ** The segment directory in table %_segdir stores meta-information for ** merging and deleting segments, and also the root node of the ** segment's tree. ** ** The root node is the top node of the segment's tree after encoding ** the entire segment, restricted to ROOT_MAX bytes (default 1024). ** This could be either a leaf node or an interior node. If the top ** node requires more than ROOT_MAX bytes, it is flushed to %_segments ** and a new root interior node is generated (which should always fit ** within ROOT_MAX because it only needs space for 2 varints, the ** height and the blockid of the previous root). ** ** The meta-information in the segment directory is: ** level - segment level (see below) ** idx - index within level ** - (level,idx uniquely identify a segment) ** start_block - first leaf node ** leaves_end_block - last leaf node ** end_block - last block (including interior nodes) ** root - contents of root node ** ** If the root node is a leaf node, then start_block, ** leaves_end_block, and end_block are all 0. ** ** **** Segment merging **** ** To amortize update costs, segments are grouped into levels and ** merged in batches. Each increase in level represents exponentially ** more documents. ** ** New documents (actually, document updates) are tokenized and ** written individually (using LeafWriter) to a level 0 segment, with ** incrementing idx. When idx reaches MERGE_COUNT (default 16), all ** level 0 segments are merged into a single level 1 segment. Level 1 ** is populated like level 0, and eventually MERGE_COUNT level 1 ** segments are merged to a single level 2 segment (representing ** MERGE_COUNT^2 updates), and so on. ** ** A segment merge traverses all segments at a given level in ** parallel, performing a straightforward sorted merge. Since segment ** leaf nodes are written in to the %_segments table in order, this ** merge traverses the underlying sqlite disk structures efficiently. ** After the merge, all segment blocks from the merged level are ** deleted. ** ** MERGE_COUNT controls how often we merge segments. 16 seems to be ** somewhat of a sweet spot for insertion performance. 32 and 64 show ** very similar performance numbers to 16 on insertion, though they're ** a tiny bit slower (perhaps due to more overhead in merge-time ** sorting). 8 is about 20% slower than 16, 4 about 50% slower than ** 16, 2 about 66% slower than 16. ** ** At query time, high MERGE_COUNT increases the number of segments ** which need to be scanned and merged. For instance, with 100k docs ** inserted: ** ** MERGE_COUNT segments ** 16 25 ** 8 12 ** 4 10 ** 2 6 ** ** This appears to have only a moderate impact on queries for very ** frequent terms (which are somewhat dominated by segment merge ** costs), and infrequent and non-existent terms still seem to be fast ** even with many segments. ** ** TODO(shess) That said, it would be nice to have a better query-side ** argument for MERGE_COUNT of 16. Also, it is possible/likely that ** optimizations to things like doclist merging will swing the sweet ** spot around. ** ** ** **** Handling of deletions and updates **** ** Since we're using a segmented structure, with no docid-oriented ** index into the term index, we clearly cannot simply update the term ** index when a document is deleted or updated. For deletions, we ** write an empty doclist (varint(docid) varint(POS_END)), for updates ** we simply write the new doclist. Segment merges overwrite older ** data for a particular docid with newer data, so deletes or updates ** will eventually overtake the earlier data and knock it out. The ** query logic likewise merges doclists so that newer data knocks out ** older data. */ /************** Include fts3Int.h in the middle of fts3.c ********************/ /************** Begin file fts3Int.h *****************************************/ /* ** 2009 Nov 12 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** */ #ifndef _FTSINT_H #define _FTSINT_H #if !defined(NDEBUG) && !defined(SQLITE_DEBUG) # define NDEBUG 1 #endif /* FTS3/FTS4 require virtual tables */ #ifdef SQLITE_OMIT_VIRTUALTABLE # undef SQLITE_ENABLE_FTS3 # undef SQLITE_ENABLE_FTS4 #endif /* ** FTS4 is really an extension for FTS3. It is enabled using the ** SQLITE_ENABLE_FTS3 macro. But to avoid confusion we also all ** the SQLITE_ENABLE_FTS4 macro to serve as an alisse for SQLITE_ENABLE_FTS3. */ #if defined(SQLITE_ENABLE_FTS4) && !defined(SQLITE_ENABLE_FTS3) # define SQLITE_ENABLE_FTS3 #endif #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* If not building as part of the core, include sqlite3ext.h. */ #ifndef SQLITE_CORE /* # include "sqlite3ext.h" */ SQLITE_EXTENSION_INIT3 #endif /* #include "sqlite3.h" */ /************** Include fts3_tokenizer.h in the middle of fts3Int.h **********/ /************** Begin file fts3_tokenizer.h **********************************/ /* ** 2006 July 10 ** ** The author disclaims copyright to this source code. ** ************************************************************************* ** Defines the interface to tokenizers used by fulltext-search. There ** are three basic components: ** ** sqlite3_tokenizer_module is a singleton defining the tokenizer ** interface functions. This is essentially the class structure for ** tokenizers. ** ** sqlite3_tokenizer is used to define a particular tokenizer, perhaps ** including customization information defined at creation time. ** ** sqlite3_tokenizer_cursor is generated by a tokenizer to generate ** tokens from a particular input. */ #ifndef _FTS3_TOKENIZER_H_ #define _FTS3_TOKENIZER_H_ /* TODO(shess) Only used for SQLITE_OK and SQLITE_DONE at this time. ** If tokenizers are to be allowed to call sqlite3_*() functions, then ** we will need a way to register the API consistently. */ /* #include "sqlite3.h" */ /* ** Structures used by the tokenizer interface. When a new tokenizer ** implementation is registered, the caller provides a pointer to ** an sqlite3_tokenizer_module containing pointers to the callback ** functions that make up an implementation. ** ** When an fts3 table is created, it passes any arguments passed to ** the tokenizer clause of the CREATE VIRTUAL TABLE statement to the ** sqlite3_tokenizer_module.xCreate() function of the requested tokenizer ** implementation. The xCreate() function in turn returns an ** sqlite3_tokenizer structure representing the specific tokenizer to ** be used for the fts3 table (customized by the tokenizer clause arguments). ** ** To tokenize an input buffer, the sqlite3_tokenizer_module.xOpen() ** method is called. It returns an sqlite3_tokenizer_cursor object ** that may be used to tokenize a specific input buffer based on ** the tokenization rules supplied by a specific sqlite3_tokenizer ** object. */ typedef struct sqlite3_tokenizer_module sqlite3_tokenizer_module; typedef struct sqlite3_tokenizer sqlite3_tokenizer; typedef struct sqlite3_tokenizer_cursor sqlite3_tokenizer_cursor; struct sqlite3_tokenizer_module { /* ** Structure version. Should always be set to 0 or 1. */ int iVersion; /* ** Create a new tokenizer. The values in the argv[] array are the ** arguments passed to the "tokenizer" clause of the CREATE VIRTUAL ** TABLE statement that created the fts3 table. For example, if ** the following SQL is executed: ** ** CREATE .. USING fts3( ... , tokenizer arg1 arg2) ** ** then argc is set to 2, and the argv[] array contains pointers ** to the strings "arg1" and "arg2". ** ** This method should return either SQLITE_OK (0), or an SQLite error ** code. If SQLITE_OK is returned, then *ppTokenizer should be set ** to point at the newly created tokenizer structure. The generic ** sqlite3_tokenizer.pModule variable should not be initialized by ** this callback. The caller will do so. */ int (*xCreate)( int argc, /* Size of argv array */ const char *const*argv, /* Tokenizer argument strings */ sqlite3_tokenizer **ppTokenizer /* OUT: Created tokenizer */ ); /* ** Destroy an existing tokenizer. The fts3 module calls this method ** exactly once for each successful call to xCreate(). */ int (*xDestroy)(sqlite3_tokenizer *pTokenizer); /* ** Create a tokenizer cursor to tokenize an input buffer. The caller ** is responsible for ensuring that the input buffer remains valid ** until the cursor is closed (using the xClose() method). */ int (*xOpen)( sqlite3_tokenizer *pTokenizer, /* Tokenizer object */ const char *pInput, int nBytes, /* Input buffer */ sqlite3_tokenizer_cursor **ppCursor /* OUT: Created tokenizer cursor */ ); /* ** Destroy an existing tokenizer cursor. The fts3 module calls this ** method exactly once for each successful call to xOpen(). */ int (*xClose)(sqlite3_tokenizer_cursor *pCursor); /* ** Retrieve the next token from the tokenizer cursor pCursor. This ** method should either return SQLITE_OK and set the values of the ** "OUT" variables identified below, or SQLITE_DONE to indicate that ** the end of the buffer has been reached, or an SQLite error code. ** ** *ppToken should be set to point at a buffer containing the ** normalized version of the token (i.e. after any case-folding and/or ** stemming has been performed). *pnBytes should be set to the length ** of this buffer in bytes. The input text that generated the token is ** identified by the byte offsets returned in *piStartOffset and ** *piEndOffset. *piStartOffset should be set to the index of the first ** byte of the token in the input buffer. *piEndOffset should be set ** to the index of the first byte just past the end of the token in ** the input buffer. ** ** The buffer *ppToken is set to point at is managed by the tokenizer ** implementation. It is only required to be valid until the next call ** to xNext() or xClose(). */ /* TODO(shess) current implementation requires pInput to be ** nul-terminated. This should either be fixed, or pInput/nBytes ** should be converted to zInput. */ int (*xNext)( sqlite3_tokenizer_cursor *pCursor, /* Tokenizer cursor */ const char **ppToken, int *pnBytes, /* OUT: Normalized text for token */ int *piStartOffset, /* OUT: Byte offset of token in input buffer */ int *piEndOffset, /* OUT: Byte offset of end of token in input buffer */ int *piPosition /* OUT: Number of tokens returned before this one */ ); /*********************************************************************** ** Methods below this point are only available if iVersion>=1. */ /* ** Configure the language id of a tokenizer cursor. */ int (*xLanguageid)(sqlite3_tokenizer_cursor *pCsr, int iLangid); }; struct sqlite3_tokenizer { const sqlite3_tokenizer_module *pModule; /* The module for this tokenizer */ /* Tokenizer implementations will typically add additional fields */ }; struct sqlite3_tokenizer_cursor { sqlite3_tokenizer *pTokenizer; /* Tokenizer for this cursor. */ /* Tokenizer implementations will typically add additional fields */ }; int fts3_global_term_cnt(int iTerm, int iCol); int fts3_term_cnt(int iTerm, int iCol); #endif /* _FTS3_TOKENIZER_H_ */ /************** End of fts3_tokenizer.h **************************************/ /************** Continuing where we left off in fts3Int.h ********************/ /************** Include fts3_hash.h in the middle of fts3Int.h ***************/ /************** Begin file fts3_hash.h ***************************************/ /* ** 2001 September 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This is the header file for the generic hash-table implementation ** used in SQLite. We've modified it slightly to serve as a standalone ** hash table implementation for the full-text indexing module. ** */ #ifndef _FTS3_HASH_H_ #define _FTS3_HASH_H_ /* Forward declarations of structures. */ typedef struct Fts3Hash Fts3Hash; typedef struct Fts3HashElem Fts3HashElem; /* A complete hash table is an instance of the following structure. ** The internals of this structure are intended to be opaque -- client ** code should not attempt to access or modify the fields of this structure ** directly. Change this structure only by using the routines below. ** However, many of the "procedures" and "functions" for modifying and ** accessing this structure are really macros, so we can't really make ** this structure opaque. */ struct Fts3Hash { char keyClass; /* HASH_INT, _POINTER, _STRING, _BINARY */ char copyKey; /* True if copy of key made on insert */ int count; /* Number of entries in this table */ Fts3HashElem *first; /* The first element of the array */ int htsize; /* Number of buckets in the hash table */ struct _fts3ht { /* the hash table */ int count; /* Number of entries with this hash */ Fts3HashElem *chain; /* Pointer to first entry with this hash */ } *ht; }; /* Each element in the hash table is an instance of the following ** structure. All elements are stored on a single doubly-linked list. ** ** Again, this structure is intended to be opaque, but it can't really ** be opaque because it is used by macros. */ struct Fts3HashElem { Fts3HashElem *next, *prev; /* Next and previous elements in the table */ void *data; /* Data associated with this element */ void *pKey; int nKey; /* Key associated with this element */ }; /* ** There are 2 different modes of operation for a hash table: ** ** FTS3_HASH_STRING pKey points to a string that is nKey bytes long ** (including the null-terminator, if any). Case ** is respected in comparisons. ** ** FTS3_HASH_BINARY pKey points to binary data nKey bytes long. ** memcmp() is used to compare keys. ** ** A copy of the key is made if the copyKey parameter to fts3HashInit is 1. */ #define FTS3_HASH_STRING 1 #define FTS3_HASH_BINARY 2 /* ** Access routines. To delete, insert a NULL pointer. */ SQLITE_PRIVATE void sqlite3Fts3HashInit(Fts3Hash *pNew, char keyClass, char copyKey); SQLITE_PRIVATE void *sqlite3Fts3HashInsert(Fts3Hash*, const void *pKey, int nKey, void *pData); SQLITE_PRIVATE void *sqlite3Fts3HashFind(const Fts3Hash*, const void *pKey, int nKey); SQLITE_PRIVATE void sqlite3Fts3HashClear(Fts3Hash*); SQLITE_PRIVATE Fts3HashElem *sqlite3Fts3HashFindElem(const Fts3Hash *, const void *, int); /* ** Shorthand for the functions above */ #define fts3HashInit sqlite3Fts3HashInit #define fts3HashInsert sqlite3Fts3HashInsert #define fts3HashFind sqlite3Fts3HashFind #define fts3HashClear sqlite3Fts3HashClear #define fts3HashFindElem sqlite3Fts3HashFindElem /* ** Macros for looping over all elements of a hash table. The idiom is ** like this: ** ** Fts3Hash h; ** Fts3HashElem *p; ** ... ** for(p=fts3HashFirst(&h); p; p=fts3HashNext(p)){ ** SomeStructure *pData = fts3HashData(p); ** // do something with pData ** } */ #define fts3HashFirst(H) ((H)->first) #define fts3HashNext(E) ((E)->next) #define fts3HashData(E) ((E)->data) #define fts3HashKey(E) ((E)->pKey) #define fts3HashKeysize(E) ((E)->nKey) /* ** Number of entries in a hash table */ #define fts3HashCount(H) ((H)->count) #endif /* _FTS3_HASH_H_ */ /************** End of fts3_hash.h *******************************************/ /************** Continuing where we left off in fts3Int.h ********************/ /* ** This constant determines the maximum depth of an FTS expression tree ** that the library will create and use. FTS uses recursion to perform ** various operations on the query tree, so the disadvantage of a large ** limit is that it may allow very large queries to use large amounts ** of stack space (perhaps causing a stack overflow). */ #ifndef SQLITE_FTS3_MAX_EXPR_DEPTH # define SQLITE_FTS3_MAX_EXPR_DEPTH 12 #endif /* ** This constant controls how often segments are merged. Once there are ** FTS3_MERGE_COUNT segments of level N, they are merged into a single ** segment of level N+1. */ #define FTS3_MERGE_COUNT 16 /* ** This is the maximum amount of data (in bytes) to store in the ** Fts3Table.pendingTerms hash table. Normally, the hash table is ** populated as documents are inserted/updated/deleted in a transaction ** and used to create a new segment when the transaction is committed. ** However if this limit is reached midway through a transaction, a new ** segment is created and the hash table cleared immediately. */ #define FTS3_MAX_PENDING_DATA (1*1024*1024) /* ** Macro to return the number of elements in an array. SQLite has a ** similar macro called ArraySize(). Use a different name to avoid ** a collision when building an amalgamation with built-in FTS3. */ #define SizeofArray(X) ((int)(sizeof(X)/sizeof(X[0]))) #ifndef MIN # define MIN(x,y) ((x)<(y)?(x):(y)) #endif #ifndef MAX # define MAX(x,y) ((x)>(y)?(x):(y)) #endif /* ** Maximum length of a varint encoded integer. The varint format is different ** from that used by SQLite, so the maximum length is 10, not 9. */ #define FTS3_VARINT_MAX 10 #define FTS3_BUFFER_PADDING 8 /* ** FTS4 virtual tables may maintain multiple indexes - one index of all terms ** in the document set and zero or more prefix indexes. All indexes are stored ** as one or more b+-trees in the %_segments and %_segdir tables. ** ** It is possible to determine which index a b+-tree belongs to based on the ** value stored in the "%_segdir.level" column. Given this value L, the index ** that the b+-tree belongs to is (L<<10). In other words, all b+-trees with ** level values between 0 and 1023 (inclusive) belong to index 0, all levels ** between 1024 and 2047 to index 1, and so on. ** ** It is considered impossible for an index to use more than 1024 levels. In ** theory though this may happen, but only after at least ** (FTS3_MERGE_COUNT^1024) separate flushes of the pending-terms tables. */ #define FTS3_SEGDIR_MAXLEVEL 1024 #define FTS3_SEGDIR_MAXLEVEL_STR "1024" /* ** The testcase() macro is only used by the amalgamation. If undefined, ** make it a no-op. */ #ifndef testcase # define testcase(X) #endif /* ** Terminator values for position-lists and column-lists. */ #define POS_COLUMN (1) /* Column-list terminator */ #define POS_END (0) /* Position-list terminator */ /* ** The assert_fts3_nc() macro is similar to the assert() macro, except that it ** is used for assert() conditions that are true only if it can be ** guranteed that the database is not corrupt. */ #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) SQLITE_API extern int sqlite3_fts3_may_be_corrupt; # define assert_fts3_nc(x) assert(sqlite3_fts3_may_be_corrupt || (x)) #else # define assert_fts3_nc(x) assert(x) #endif /* ** This section provides definitions to allow the ** FTS3 extension to be compiled outside of the ** amalgamation. */ #ifndef SQLITE_AMALGAMATION /* ** Macros indicating that conditional expressions are always true or ** false. */ #ifdef SQLITE_COVERAGE_TEST # define ALWAYS(x) (1) # define NEVER(X) (0) #elif defined(SQLITE_DEBUG) # define ALWAYS(x) sqlite3Fts3Always((x)!=0) # define NEVER(x) sqlite3Fts3Never((x)!=0) SQLITE_PRIVATE int sqlite3Fts3Always(int b); SQLITE_PRIVATE int sqlite3Fts3Never(int b); #else # define ALWAYS(x) (x) # define NEVER(x) (x) #endif /* ** Internal types used by SQLite. */ typedef unsigned char u8; /* 1-byte (or larger) unsigned integer */ typedef short int i16; /* 2-byte (or larger) signed integer */ typedef unsigned int u32; /* 4-byte unsigned integer */ typedef sqlite3_uint64 u64; /* 8-byte unsigned integer */ typedef sqlite3_int64 i64; /* 8-byte signed integer */ /* ** Macro used to suppress compiler warnings for unused parameters. */ #define UNUSED_PARAMETER(x) (void)(x) /* ** Activate assert() only if SQLITE_TEST is enabled. */ #if !defined(NDEBUG) && !defined(SQLITE_DEBUG) # define NDEBUG 1 #endif /* ** The TESTONLY macro is used to enclose variable declarations or ** other bits of code that are needed to support the arguments ** within testcase() and assert() macros. */ #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) # define TESTONLY(X) X #else # define TESTONLY(X) #endif #define LARGEST_INT64 (0xffffffff|(((i64)0x7fffffff)<<32)) #define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64) #define deliberate_fall_through #endif /* SQLITE_AMALGAMATION */ #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3Fts3Corrupt(void); # define FTS_CORRUPT_VTAB sqlite3Fts3Corrupt() #else # define FTS_CORRUPT_VTAB SQLITE_CORRUPT_VTAB #endif typedef struct Fts3Table Fts3Table; typedef struct Fts3Cursor Fts3Cursor; typedef struct Fts3Expr Fts3Expr; typedef struct Fts3Phrase Fts3Phrase; typedef struct Fts3PhraseToken Fts3PhraseToken; typedef struct Fts3Doclist Fts3Doclist; typedef struct Fts3SegFilter Fts3SegFilter; typedef struct Fts3DeferredToken Fts3DeferredToken; typedef struct Fts3SegReader Fts3SegReader; typedef struct Fts3MultiSegReader Fts3MultiSegReader; typedef struct MatchinfoBuffer MatchinfoBuffer; /* ** A connection to a fulltext index is an instance of the following ** structure. The xCreate and xConnect methods create an instance ** of this structure and xDestroy and xDisconnect free that instance. ** All other methods receive a pointer to the structure as one of their ** arguments. */ struct Fts3Table { sqlite3_vtab base; /* Base class used by SQLite core */ sqlite3 *db; /* The database connection */ const char *zDb; /* logical database name */ const char *zName; /* virtual table name */ int nColumn; /* number of named columns in virtual table */ char **azColumn; /* column names. malloced */ u8 *abNotindexed; /* True for 'notindexed' columns */ sqlite3_tokenizer *pTokenizer; /* tokenizer for inserts and queries */ char *zContentTbl; /* content=xxx option, or NULL */ char *zLanguageid; /* languageid=xxx option, or NULL */ int nAutoincrmerge; /* Value configured by 'automerge' */ u32 nLeafAdd; /* Number of leaf blocks added this trans */ int bLock; /* Used to prevent recursive content= tbls */ /* Precompiled statements used by the implementation. Each of these ** statements is run and reset within a single virtual table API call. */ sqlite3_stmt *aStmt[40]; sqlite3_stmt *pSeekStmt; /* Cache for fts3CursorSeekStmt() */ char *zReadExprlist; char *zWriteExprlist; int nNodeSize; /* Soft limit for node size */ u8 bFts4; /* True for FTS4, false for FTS3 */ u8 bHasStat; /* True if %_stat table exists (2==unknown) */ u8 bHasDocsize; /* True if %_docsize table exists */ u8 bDescIdx; /* True if doclists are in reverse order */ u8 bIgnoreSavepoint; /* True to ignore xSavepoint invocations */ int nPgsz; /* Page size for host database */ char *zSegmentsTbl; /* Name of %_segments table */ sqlite3_blob *pSegments; /* Blob handle open on %_segments table */ /* ** The following array of hash tables is used to buffer pending index ** updates during transactions. All pending updates buffered at any one ** time must share a common language-id (see the FTS4 langid= feature). ** The current language id is stored in variable iPrevLangid. ** ** A single FTS4 table may have multiple full-text indexes. For each index ** there is an entry in the aIndex[] array. Index 0 is an index of all the ** terms that appear in the document set. Each subsequent index in aIndex[] ** is an index of prefixes of a specific length. ** ** Variable nPendingData contains an estimate the memory consumed by the ** pending data structures, including hash table overhead, but not including ** malloc overhead. When nPendingData exceeds nMaxPendingData, all hash ** tables are flushed to disk. Variable iPrevDocid is the docid of the most ** recently inserted record. */ int nIndex; /* Size of aIndex[] */ struct Fts3Index { int nPrefix; /* Prefix length (0 for main terms index) */ Fts3Hash hPending; /* Pending terms table for this index */ } *aIndex; int nMaxPendingData; /* Max pending data before flush to disk */ int nPendingData; /* Current bytes of pending data */ sqlite_int64 iPrevDocid; /* Docid of most recently inserted document */ int iPrevLangid; /* Langid of recently inserted document */ int bPrevDelete; /* True if last operation was a delete */ #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) /* State variables used for validating that the transaction control ** methods of the virtual table are called at appropriate times. These ** values do not contribute to FTS functionality; they are used for ** verifying the operation of the SQLite core. */ int inTransaction; /* True after xBegin but before xCommit/xRollback */ int mxSavepoint; /* Largest valid xSavepoint integer */ #endif #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) /* True to disable the incremental doclist optimization. This is controled ** by special insert command 'test-no-incr-doclist'. */ int bNoIncrDoclist; /* Number of segments in a level */ int nMergeCount; #endif }; /* Macro to find the number of segments to merge */ #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) # define MergeCount(P) ((P)->nMergeCount) #else # define MergeCount(P) FTS3_MERGE_COUNT #endif /* ** When the core wants to read from the virtual table, it creates a ** virtual table cursor (an instance of the following structure) using ** the xOpen method. Cursors are destroyed using the xClose method. */ struct Fts3Cursor { sqlite3_vtab_cursor base; /* Base class used by SQLite core */ i16 eSearch; /* Search strategy (see below) */ u8 isEof; /* True if at End Of Results */ u8 isRequireSeek; /* True if must seek pStmt to %_content row */ u8 bSeekStmt; /* True if pStmt is a seek */ sqlite3_stmt *pStmt; /* Prepared statement in use by the cursor */ Fts3Expr *pExpr; /* Parsed MATCH query string */ int iLangid; /* Language being queried for */ int nPhrase; /* Number of matchable phrases in query */ Fts3DeferredToken *pDeferred; /* Deferred search tokens, if any */ sqlite3_int64 iPrevId; /* Previous id read from aDoclist */ char *pNextId; /* Pointer into the body of aDoclist */ char *aDoclist; /* List of docids for full-text queries */ int nDoclist; /* Size of buffer at aDoclist */ u8 bDesc; /* True to sort in descending order */ int eEvalmode; /* An FTS3_EVAL_XX constant */ int nRowAvg; /* Average size of database rows, in pages */ sqlite3_int64 nDoc; /* Documents in table */ i64 iMinDocid; /* Minimum docid to return */ i64 iMaxDocid; /* Maximum docid to return */ int isMatchinfoNeeded; /* True when aMatchinfo[] needs filling in */ MatchinfoBuffer *pMIBuffer; /* Buffer for matchinfo data */ }; #define FTS3_EVAL_FILTER 0 #define FTS3_EVAL_NEXT 1 #define FTS3_EVAL_MATCHINFO 2 /* ** The Fts3Cursor.eSearch member is always set to one of the following. ** Actualy, Fts3Cursor.eSearch can be greater than or equal to ** FTS3_FULLTEXT_SEARCH. If so, then Fts3Cursor.eSearch - 2 is the index ** of the column to be searched. For example, in ** ** CREATE VIRTUAL TABLE ex1 USING fts3(a,b,c,d); ** SELECT docid FROM ex1 WHERE b MATCH 'one two three'; ** ** Because the LHS of the MATCH operator is 2nd column "b", ** Fts3Cursor.eSearch will be set to FTS3_FULLTEXT_SEARCH+1. (+0 for a, ** +1 for b, +2 for c, +3 for d.) If the LHS of MATCH were "ex1" ** indicating that all columns should be searched, ** then eSearch would be set to FTS3_FULLTEXT_SEARCH+4. */ #define FTS3_FULLSCAN_SEARCH 0 /* Linear scan of %_content table */ #define FTS3_DOCID_SEARCH 1 /* Lookup by rowid on %_content table */ #define FTS3_FULLTEXT_SEARCH 2 /* Full-text index search */ /* ** The lower 16-bits of the sqlite3_index_info.idxNum value set by ** the xBestIndex() method contains the Fts3Cursor.eSearch value described ** above. The upper 16-bits contain a combination of the following ** bits, used to describe extra constraints on full-text searches. */ #define FTS3_HAVE_LANGID 0x00010000 /* languageid=? */ #define FTS3_HAVE_DOCID_GE 0x00020000 /* docid>=? */ #define FTS3_HAVE_DOCID_LE 0x00040000 /* docid<=? */ struct Fts3Doclist { char *aAll; /* Array containing doclist (or NULL) */ int nAll; /* Size of a[] in bytes */ char *pNextDocid; /* Pointer to next docid */ sqlite3_int64 iDocid; /* Current docid (if pList!=0) */ int bFreeList; /* True if pList should be sqlite3_free()d */ char *pList; /* Pointer to position list following iDocid */ int nList; /* Length of position list */ }; /* ** A "phrase" is a sequence of one or more tokens that must match in ** sequence. A single token is the base case and the most common case. ** For a sequence of tokens contained in double-quotes (i.e. "one two three") ** nToken will be the number of tokens in the string. */ struct Fts3PhraseToken { char *z; /* Text of the token */ int n; /* Number of bytes in buffer z */ int isPrefix; /* True if token ends with a "*" character */ int bFirst; /* True if token must appear at position 0 */ /* Variables above this point are populated when the expression is ** parsed (by code in fts3_expr.c). Below this point the variables are ** used when evaluating the expression. */ Fts3DeferredToken *pDeferred; /* Deferred token object for this token */ Fts3MultiSegReader *pSegcsr; /* Segment-reader for this token */ }; struct Fts3Phrase { /* Cache of doclist for this phrase. */ Fts3Doclist doclist; int bIncr; /* True if doclist is loaded incrementally */ int iDoclistToken; /* Used by sqlite3Fts3EvalPhrasePoslist() if this is a descendent of an ** OR condition. */ char *pOrPoslist; i64 iOrDocid; /* Variables below this point are populated by fts3_expr.c when parsing ** a MATCH expression. Everything above is part of the evaluation phase. */ int nToken; /* Number of tokens in the phrase */ int iColumn; /* Index of column this phrase must match */ Fts3PhraseToken aToken[1]; /* One entry for each token in the phrase */ }; /* ** A tree of these objects forms the RHS of a MATCH operator. ** ** If Fts3Expr.eType is FTSQUERY_PHRASE and isLoaded is true, then aDoclist ** points to a malloced buffer, size nDoclist bytes, containing the results ** of this phrase query in FTS3 doclist format. As usual, the initial ** "Length" field found in doclists stored on disk is omitted from this ** buffer. ** ** Variable aMI is used only for FTSQUERY_NEAR nodes to store the global ** matchinfo data. If it is not NULL, it points to an array of size nCol*3, ** where nCol is the number of columns in the queried FTS table. The array ** is populated as follows: ** ** aMI[iCol*3 + 0] = Undefined ** aMI[iCol*3 + 1] = Number of occurrences ** aMI[iCol*3 + 2] = Number of rows containing at least one instance ** ** The aMI array is allocated using sqlite3_malloc(). It should be freed ** when the expression node is. */ struct Fts3Expr { int eType; /* One of the FTSQUERY_XXX values defined below */ int nNear; /* Valid if eType==FTSQUERY_NEAR */ Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */ Fts3Expr *pLeft; /* Left operand */ Fts3Expr *pRight; /* Right operand */ Fts3Phrase *pPhrase; /* Valid if eType==FTSQUERY_PHRASE */ /* The following are used by the fts3_eval.c module. */ sqlite3_int64 iDocid; /* Current docid */ u8 bEof; /* True this expression is at EOF already */ u8 bStart; /* True if iDocid is valid */ u8 bDeferred; /* True if this expression is entirely deferred */ /* The following are used by the fts3_snippet.c module. */ int iPhrase; /* Index of this phrase in matchinfo() results */ u32 *aMI; /* See above */ }; /* ** Candidate values for Fts3Query.eType. Note that the order of the first ** four values is in order of precedence when parsing expressions. For ** example, the following: ** ** "a OR b AND c NOT d NEAR e" ** ** is equivalent to: ** ** "a OR (b AND (c NOT (d NEAR e)))" */ #define FTSQUERY_NEAR 1 #define FTSQUERY_NOT 2 #define FTSQUERY_AND 3 #define FTSQUERY_OR 4 #define FTSQUERY_PHRASE 5 /* fts3_write.c */ SQLITE_PRIVATE int sqlite3Fts3UpdateMethod(sqlite3_vtab*,int,sqlite3_value**,sqlite3_int64*); SQLITE_PRIVATE int sqlite3Fts3PendingTermsFlush(Fts3Table *); SQLITE_PRIVATE void sqlite3Fts3PendingTermsClear(Fts3Table *); SQLITE_PRIVATE int sqlite3Fts3Optimize(Fts3Table *); SQLITE_PRIVATE int sqlite3Fts3SegReaderNew(int, int, sqlite3_int64, sqlite3_int64, sqlite3_int64, const char *, int, Fts3SegReader**); SQLITE_PRIVATE int sqlite3Fts3SegReaderPending( Fts3Table*,int,const char*,int,int,Fts3SegReader**); SQLITE_PRIVATE void sqlite3Fts3SegReaderFree(Fts3SegReader *); SQLITE_PRIVATE int sqlite3Fts3AllSegdirs(Fts3Table*, int, int, int, sqlite3_stmt **); SQLITE_PRIVATE int sqlite3Fts3ReadBlock(Fts3Table*, sqlite3_int64, char **, int*, int*); SQLITE_PRIVATE int sqlite3Fts3SelectDoctotal(Fts3Table *, sqlite3_stmt **); SQLITE_PRIVATE int sqlite3Fts3SelectDocsize(Fts3Table *, sqlite3_int64, sqlite3_stmt **); #ifndef SQLITE_DISABLE_FTS4_DEFERRED SQLITE_PRIVATE void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *); SQLITE_PRIVATE int sqlite3Fts3DeferToken(Fts3Cursor *, Fts3PhraseToken *, int); SQLITE_PRIVATE int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *); SQLITE_PRIVATE void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *); SQLITE_PRIVATE int sqlite3Fts3DeferredTokenList(Fts3DeferredToken *, char **, int *); #else # define sqlite3Fts3FreeDeferredTokens(x) # define sqlite3Fts3DeferToken(x,y,z) SQLITE_OK # define sqlite3Fts3CacheDeferredDoclists(x) SQLITE_OK # define sqlite3Fts3FreeDeferredDoclists(x) # define sqlite3Fts3DeferredTokenList(x,y,z) SQLITE_OK #endif SQLITE_PRIVATE void sqlite3Fts3SegmentsClose(Fts3Table *); SQLITE_PRIVATE int sqlite3Fts3MaxLevel(Fts3Table *, int *); /* Special values interpreted by sqlite3SegReaderCursor() */ #define FTS3_SEGCURSOR_PENDING -1 #define FTS3_SEGCURSOR_ALL -2 SQLITE_PRIVATE int sqlite3Fts3SegReaderStart(Fts3Table*, Fts3MultiSegReader*, Fts3SegFilter*); SQLITE_PRIVATE int sqlite3Fts3SegReaderStep(Fts3Table *, Fts3MultiSegReader *); SQLITE_PRIVATE void sqlite3Fts3SegReaderFinish(Fts3MultiSegReader *); SQLITE_PRIVATE int sqlite3Fts3SegReaderCursor(Fts3Table *, int, int, int, const char *, int, int, int, Fts3MultiSegReader *); /* Flags allowed as part of the 4th argument to SegmentReaderIterate() */ #define FTS3_SEGMENT_REQUIRE_POS 0x00000001 #define FTS3_SEGMENT_IGNORE_EMPTY 0x00000002 #define FTS3_SEGMENT_COLUMN_FILTER 0x00000004 #define FTS3_SEGMENT_PREFIX 0x00000008 #define FTS3_SEGMENT_SCAN 0x00000010 #define FTS3_SEGMENT_FIRST 0x00000020 /* Type passed as 4th argument to SegmentReaderIterate() */ struct Fts3SegFilter { const char *zTerm; int nTerm; int iCol; int flags; }; struct Fts3MultiSegReader { /* Used internally by sqlite3Fts3SegReaderXXX() calls */ Fts3SegReader **apSegment; /* Array of Fts3SegReader objects */ int nSegment; /* Size of apSegment array */ int nAdvance; /* How many seg-readers to advance */ Fts3SegFilter *pFilter; /* Pointer to filter object */ char *aBuffer; /* Buffer to merge doclists in */ int nBuffer; /* Allocated size of aBuffer[] in bytes */ int iColFilter; /* If >=0, filter for this column */ int bRestart; /* Used by fts3.c only. */ int nCost; /* Cost of running iterator */ int bLookup; /* True if a lookup of a single entry. */ /* Output values. Valid only after Fts3SegReaderStep() returns SQLITE_ROW. */ char *zTerm; /* Pointer to term buffer */ int nTerm; /* Size of zTerm in bytes */ char *aDoclist; /* Pointer to doclist buffer */ int nDoclist; /* Size of aDoclist[] in bytes */ }; SQLITE_PRIVATE int sqlite3Fts3Incrmerge(Fts3Table*,int,int); #define fts3GetVarint32(p, piVal) ( \ (*(u8*)(p)&0x80) ? sqlite3Fts3GetVarint32(p, piVal) : (*piVal=*(u8*)(p), 1) \ ) /* fts3.c */ SQLITE_PRIVATE void sqlite3Fts3ErrMsg(char**,const char*,...); SQLITE_PRIVATE int sqlite3Fts3PutVarint(char *, sqlite3_int64); SQLITE_PRIVATE int sqlite3Fts3GetVarint(const char *, sqlite_int64 *); SQLITE_PRIVATE int sqlite3Fts3GetVarintU(const char *, sqlite_uint64 *); SQLITE_PRIVATE int sqlite3Fts3GetVarintBounded(const char*,const char*,sqlite3_int64*); SQLITE_PRIVATE int sqlite3Fts3GetVarint32(const char *, int *); SQLITE_PRIVATE int sqlite3Fts3VarintLen(sqlite3_uint64); SQLITE_PRIVATE void sqlite3Fts3Dequote(char *); SQLITE_PRIVATE void sqlite3Fts3DoclistPrev(int,char*,int,char**,sqlite3_int64*,int*,u8*); SQLITE_PRIVATE int sqlite3Fts3EvalPhraseStats(Fts3Cursor *, Fts3Expr *, u32 *); SQLITE_PRIVATE int sqlite3Fts3FirstFilter(sqlite3_int64, char *, int, char *); SQLITE_PRIVATE void sqlite3Fts3CreateStatTable(int*, Fts3Table*); SQLITE_PRIVATE int sqlite3Fts3EvalTestDeferred(Fts3Cursor *pCsr, int *pRc); SQLITE_PRIVATE int sqlite3Fts3ReadInt(const char *z, int *pnOut); /* fts3_tokenizer.c */ SQLITE_PRIVATE const char *sqlite3Fts3NextToken(const char *, int *); SQLITE_PRIVATE int sqlite3Fts3InitHashTable(sqlite3 *, Fts3Hash *, const char *); SQLITE_PRIVATE int sqlite3Fts3InitTokenizer(Fts3Hash *pHash, const char *, sqlite3_tokenizer **, char ** ); SQLITE_PRIVATE int sqlite3Fts3IsIdChar(char); /* fts3_snippet.c */ SQLITE_PRIVATE void sqlite3Fts3Offsets(sqlite3_context*, Fts3Cursor*); SQLITE_PRIVATE void sqlite3Fts3Snippet(sqlite3_context *, Fts3Cursor *, const char *, const char *, const char *, int, int ); SQLITE_PRIVATE void sqlite3Fts3Matchinfo(sqlite3_context *, Fts3Cursor *, const char *); SQLITE_PRIVATE void sqlite3Fts3MIBufferFree(MatchinfoBuffer *p); /* fts3_expr.c */ SQLITE_PRIVATE int sqlite3Fts3ExprParse(sqlite3_tokenizer *, int, char **, int, int, int, const char *, int, Fts3Expr **, char ** ); SQLITE_PRIVATE void sqlite3Fts3ExprFree(Fts3Expr *); #ifdef SQLITE_TEST SQLITE_PRIVATE int sqlite3Fts3ExprInitTestInterface(sqlite3 *db, Fts3Hash*); SQLITE_PRIVATE int sqlite3Fts3InitTerm(sqlite3 *db); #endif SQLITE_PRIVATE int sqlite3Fts3OpenTokenizer(sqlite3_tokenizer *, int, const char *, int, sqlite3_tokenizer_cursor ** ); /* fts3_aux.c */ SQLITE_PRIVATE int sqlite3Fts3InitAux(sqlite3 *db); SQLITE_PRIVATE void sqlite3Fts3EvalPhraseCleanup(Fts3Phrase *); SQLITE_PRIVATE int sqlite3Fts3MsrIncrStart( Fts3Table*, Fts3MultiSegReader*, int, const char*, int); SQLITE_PRIVATE int sqlite3Fts3MsrIncrNext( Fts3Table *, Fts3MultiSegReader *, sqlite3_int64 *, char **, int *); SQLITE_PRIVATE int sqlite3Fts3EvalPhrasePoslist(Fts3Cursor *, Fts3Expr *, int iCol, char **); SQLITE_PRIVATE int sqlite3Fts3MsrOvfl(Fts3Cursor *, Fts3MultiSegReader *, int *); SQLITE_PRIVATE int sqlite3Fts3MsrIncrRestart(Fts3MultiSegReader *pCsr); /* fts3_tokenize_vtab.c */ SQLITE_PRIVATE int sqlite3Fts3InitTok(sqlite3*, Fts3Hash *); /* fts3_unicode2.c (functions generated by parsing unicode text files) */ #ifndef SQLITE_DISABLE_FTS3_UNICODE SQLITE_PRIVATE int sqlite3FtsUnicodeFold(int, int); SQLITE_PRIVATE int sqlite3FtsUnicodeIsalnum(int); SQLITE_PRIVATE int sqlite3FtsUnicodeIsdiacritic(int); #endif #endif /* !SQLITE_CORE || SQLITE_ENABLE_FTS3 */ #endif /* _FTSINT_H */ /************** End of fts3Int.h *********************************************/ /************** Continuing where we left off in fts3.c ***********************/ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) #if defined(SQLITE_ENABLE_FTS3) && !defined(SQLITE_CORE) # define SQLITE_CORE 1 #endif /* #include */ /* #include */ /* #include */ /* #include */ /* #include */ /* #include */ /* #include "fts3.h" */ #ifndef SQLITE_CORE /* # include "sqlite3ext.h" */ SQLITE_EXTENSION_INIT1 #endif static int fts3EvalNext(Fts3Cursor *pCsr); static int fts3EvalStart(Fts3Cursor *pCsr); static int fts3TermSegReaderCursor( Fts3Cursor *, const char *, int, int, Fts3MultiSegReader **); #ifndef SQLITE_AMALGAMATION # if defined(SQLITE_DEBUG) SQLITE_PRIVATE int sqlite3Fts3Always(int b) { assert( b ); return b; } SQLITE_PRIVATE int sqlite3Fts3Never(int b) { assert( !b ); return b; } # endif #endif /* ** This variable is set to false when running tests for which the on disk ** structures should not be corrupt. Otherwise, true. If it is false, extra ** assert() conditions in the fts3 code are activated - conditions that are ** only true if it is guaranteed that the fts3 database is not corrupt. */ SQLITE_API int sqlite3_fts3_may_be_corrupt = 1; /* ** Write a 64-bit variable-length integer to memory starting at p[0]. ** The length of data written will be between 1 and FTS3_VARINT_MAX bytes. ** The number of bytes written is returned. */ SQLITE_PRIVATE int sqlite3Fts3PutVarint(char *p, sqlite_int64 v){ unsigned char *q = (unsigned char *) p; sqlite_uint64 vu = v; do{ *q++ = (unsigned char) ((vu & 0x7f) | 0x80); vu >>= 7; }while( vu!=0 ); q[-1] &= 0x7f; /* turn off high bit in final byte */ assert( q - (unsigned char *)p <= FTS3_VARINT_MAX ); return (int) (q - (unsigned char *)p); } #define GETVARINT_STEP(v, ptr, shift, mask1, mask2, var, ret) \ v = (v & mask1) | ( (*(const unsigned char*)(ptr++)) << shift ); \ if( (v & mask2)==0 ){ var = v; return ret; } #define GETVARINT_INIT(v, ptr, shift, mask1, mask2, var, ret) \ v = (*ptr++); \ if( (v & mask2)==0 ){ var = v; return ret; } SQLITE_PRIVATE int sqlite3Fts3GetVarintU(const char *pBuf, sqlite_uint64 *v){ const unsigned char *p = (const unsigned char*)pBuf; const unsigned char *pStart = p; u32 a; u64 b; int shift; GETVARINT_INIT(a, p, 0, 0x00, 0x80, *v, 1); GETVARINT_STEP(a, p, 7, 0x7F, 0x4000, *v, 2); GETVARINT_STEP(a, p, 14, 0x3FFF, 0x200000, *v, 3); GETVARINT_STEP(a, p, 21, 0x1FFFFF, 0x10000000, *v, 4); b = (a & 0x0FFFFFFF ); for(shift=28; shift<=63; shift+=7){ u64 c = *p++; b += (c&0x7F) << shift; if( (c & 0x80)==0 ) break; } *v = b; return (int)(p - pStart); } /* ** Read a 64-bit variable-length integer from memory starting at p[0]. ** Return the number of bytes read, or 0 on error. ** The value is stored in *v. */ SQLITE_PRIVATE int sqlite3Fts3GetVarint(const char *pBuf, sqlite_int64 *v){ return sqlite3Fts3GetVarintU(pBuf, (sqlite3_uint64*)v); } /* ** Read a 64-bit variable-length integer from memory starting at p[0] and ** not extending past pEnd[-1]. ** Return the number of bytes read, or 0 on error. ** The value is stored in *v. */ SQLITE_PRIVATE int sqlite3Fts3GetVarintBounded( const char *pBuf, const char *pEnd, sqlite_int64 *v ){ const unsigned char *p = (const unsigned char*)pBuf; const unsigned char *pStart = p; const unsigned char *pX = (const unsigned char*)pEnd; u64 b = 0; int shift; for(shift=0; shift<=63; shift+=7){ u64 c = p=0 ); return 5; } /* ** Return the number of bytes required to encode v as a varint */ SQLITE_PRIVATE int sqlite3Fts3VarintLen(sqlite3_uint64 v){ int i = 0; do{ i++; v >>= 7; }while( v!=0 ); return i; } /* ** Convert an SQL-style quoted string into a normal string by removing ** the quote characters. The conversion is done in-place. If the ** input does not begin with a quote character, then this routine ** is a no-op. ** ** Examples: ** ** "abc" becomes abc ** 'xyz' becomes xyz ** [pqr] becomes pqr ** `mno` becomes mno ** */ SQLITE_PRIVATE void sqlite3Fts3Dequote(char *z){ char quote; /* Quote character (if any ) */ quote = z[0]; if( quote=='[' || quote=='\'' || quote=='"' || quote=='`' ){ int iIn = 1; /* Index of next byte to read from input */ int iOut = 0; /* Index of next byte to write to output */ /* If the first byte was a '[', then the close-quote character is a ']' */ if( quote=='[' ) quote = ']'; while( z[iIn] ){ if( z[iIn]==quote ){ if( z[iIn+1]!=quote ) break; z[iOut++] = quote; iIn += 2; }else{ z[iOut++] = z[iIn++]; } } z[iOut] = '\0'; } } /* ** Read a single varint from the doclist at *pp and advance *pp to point ** to the first byte past the end of the varint. Add the value of the varint ** to *pVal. */ static void fts3GetDeltaVarint(char **pp, sqlite3_int64 *pVal){ sqlite3_int64 iVal; *pp += sqlite3Fts3GetVarint(*pp, &iVal); *pVal += iVal; } /* ** When this function is called, *pp points to the first byte following a ** varint that is part of a doclist (or position-list, or any other list ** of varints). This function moves *pp to point to the start of that varint, ** and sets *pVal by the varint value. ** ** Argument pStart points to the first byte of the doclist that the ** varint is part of. */ static void fts3GetReverseVarint( char **pp, char *pStart, sqlite3_int64 *pVal ){ sqlite3_int64 iVal; char *p; /* Pointer p now points at the first byte past the varint we are ** interested in. So, unless the doclist is corrupt, the 0x80 bit is ** clear on character p[-1]. */ for(p = (*pp)-2; p>=pStart && *p&0x80; p--); p++; *pp = p; sqlite3Fts3GetVarint(p, &iVal); *pVal = iVal; } /* ** The xDisconnect() virtual table method. */ static int fts3DisconnectMethod(sqlite3_vtab *pVtab){ Fts3Table *p = (Fts3Table *)pVtab; int i; assert( p->nPendingData==0 ); assert( p->pSegments==0 ); /* Free any prepared statements held */ sqlite3_finalize(p->pSeekStmt); for(i=0; iaStmt); i++){ sqlite3_finalize(p->aStmt[i]); } sqlite3_free(p->zSegmentsTbl); sqlite3_free(p->zReadExprlist); sqlite3_free(p->zWriteExprlist); sqlite3_free(p->zContentTbl); sqlite3_free(p->zLanguageid); /* Invoke the tokenizer destructor to free the tokenizer. */ p->pTokenizer->pModule->xDestroy(p->pTokenizer); sqlite3_free(p); return SQLITE_OK; } /* ** Write an error message into *pzErr */ SQLITE_PRIVATE void sqlite3Fts3ErrMsg(char **pzErr, const char *zFormat, ...){ va_list ap; sqlite3_free(*pzErr); va_start(ap, zFormat); *pzErr = sqlite3_vmprintf(zFormat, ap); va_end(ap); } /* ** Construct one or more SQL statements from the format string given ** and then evaluate those statements. The success code is written ** into *pRc. ** ** If *pRc is initially non-zero then this routine is a no-op. */ static void fts3DbExec( int *pRc, /* Success code */ sqlite3 *db, /* Database in which to run SQL */ const char *zFormat, /* Format string for SQL */ ... /* Arguments to the format string */ ){ va_list ap; char *zSql; if( *pRc ) return; va_start(ap, zFormat); zSql = sqlite3_vmprintf(zFormat, ap); va_end(ap); if( zSql==0 ){ *pRc = SQLITE_NOMEM; }else{ *pRc = sqlite3_exec(db, zSql, 0, 0, 0); sqlite3_free(zSql); } } /* ** The xDestroy() virtual table method. */ static int fts3DestroyMethod(sqlite3_vtab *pVtab){ Fts3Table *p = (Fts3Table *)pVtab; int rc = SQLITE_OK; /* Return code */ const char *zDb = p->zDb; /* Name of database (e.g. "main", "temp") */ sqlite3 *db = p->db; /* Database handle */ /* Drop the shadow tables */ fts3DbExec(&rc, db, "DROP TABLE IF EXISTS %Q.'%q_segments';" "DROP TABLE IF EXISTS %Q.'%q_segdir';" "DROP TABLE IF EXISTS %Q.'%q_docsize';" "DROP TABLE IF EXISTS %Q.'%q_stat';" "%s DROP TABLE IF EXISTS %Q.'%q_content';", zDb, p->zName, zDb, p->zName, zDb, p->zName, zDb, p->zName, (p->zContentTbl ? "--" : ""), zDb,p->zName ); /* If everything has worked, invoke fts3DisconnectMethod() to free the ** memory associated with the Fts3Table structure and return SQLITE_OK. ** Otherwise, return an SQLite error code. */ return (rc==SQLITE_OK ? fts3DisconnectMethod(pVtab) : rc); } /* ** Invoke sqlite3_declare_vtab() to declare the schema for the FTS3 table ** passed as the first argument. This is done as part of the xConnect() ** and xCreate() methods. ** ** If *pRc is non-zero when this function is called, it is a no-op. ** Otherwise, if an error occurs, an SQLite error code is stored in *pRc ** before returning. */ static void fts3DeclareVtab(int *pRc, Fts3Table *p){ if( *pRc==SQLITE_OK ){ int i; /* Iterator variable */ int rc; /* Return code */ char *zSql; /* SQL statement passed to declare_vtab() */ char *zCols; /* List of user defined columns */ const char *zLanguageid; zLanguageid = (p->zLanguageid ? p->zLanguageid : "__langid"); sqlite3_vtab_config(p->db, SQLITE_VTAB_CONSTRAINT_SUPPORT, 1); /* Create a list of user columns for the virtual table */ zCols = sqlite3_mprintf("%Q, ", p->azColumn[0]); for(i=1; zCols && inColumn; i++){ zCols = sqlite3_mprintf("%z%Q, ", zCols, p->azColumn[i]); } /* Create the whole "CREATE TABLE" statement to pass to SQLite */ zSql = sqlite3_mprintf( "CREATE TABLE x(%s %Q HIDDEN, docid HIDDEN, %Q HIDDEN)", zCols, p->zName, zLanguageid ); if( !zCols || !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_declare_vtab(p->db, zSql); } sqlite3_free(zSql); sqlite3_free(zCols); *pRc = rc; } } /* ** Create the %_stat table if it does not already exist. */ SQLITE_PRIVATE void sqlite3Fts3CreateStatTable(int *pRc, Fts3Table *p){ fts3DbExec(pRc, p->db, "CREATE TABLE IF NOT EXISTS %Q.'%q_stat'" "(id INTEGER PRIMARY KEY, value BLOB);", p->zDb, p->zName ); if( (*pRc)==SQLITE_OK ) p->bHasStat = 1; } /* ** Create the backing store tables (%_content, %_segments and %_segdir) ** required by the FTS3 table passed as the only argument. This is done ** as part of the vtab xCreate() method. ** ** If the p->bHasDocsize boolean is true (indicating that this is an ** FTS4 table, not an FTS3 table) then also create the %_docsize and ** %_stat tables required by FTS4. */ static int fts3CreateTables(Fts3Table *p){ int rc = SQLITE_OK; /* Return code */ int i; /* Iterator variable */ sqlite3 *db = p->db; /* The database connection */ if( p->zContentTbl==0 ){ const char *zLanguageid = p->zLanguageid; char *zContentCols; /* Columns of %_content table */ /* Create a list of user columns for the content table */ zContentCols = sqlite3_mprintf("docid INTEGER PRIMARY KEY"); for(i=0; zContentCols && inColumn; i++){ char *z = p->azColumn[i]; zContentCols = sqlite3_mprintf("%z, 'c%d%q'", zContentCols, i, z); } if( zLanguageid && zContentCols ){ zContentCols = sqlite3_mprintf("%z, langid", zContentCols, zLanguageid); } if( zContentCols==0 ) rc = SQLITE_NOMEM; /* Create the content table */ fts3DbExec(&rc, db, "CREATE TABLE %Q.'%q_content'(%s)", p->zDb, p->zName, zContentCols ); sqlite3_free(zContentCols); } /* Create other tables */ fts3DbExec(&rc, db, "CREATE TABLE %Q.'%q_segments'(blockid INTEGER PRIMARY KEY, block BLOB);", p->zDb, p->zName ); fts3DbExec(&rc, db, "CREATE TABLE %Q.'%q_segdir'(" "level INTEGER," "idx INTEGER," "start_block INTEGER," "leaves_end_block INTEGER," "end_block INTEGER," "root BLOB," "PRIMARY KEY(level, idx)" ");", p->zDb, p->zName ); if( p->bHasDocsize ){ fts3DbExec(&rc, db, "CREATE TABLE %Q.'%q_docsize'(docid INTEGER PRIMARY KEY, size BLOB);", p->zDb, p->zName ); } assert( p->bHasStat==p->bFts4 ); if( p->bHasStat ){ sqlite3Fts3CreateStatTable(&rc, p); } return rc; } /* ** Store the current database page-size in bytes in p->nPgsz. ** ** If *pRc is non-zero when this function is called, it is a no-op. ** Otherwise, if an error occurs, an SQLite error code is stored in *pRc ** before returning. */ static void fts3DatabasePageSize(int *pRc, Fts3Table *p){ if( *pRc==SQLITE_OK ){ int rc; /* Return code */ char *zSql; /* SQL text "PRAGMA %Q.page_size" */ sqlite3_stmt *pStmt; /* Compiled "PRAGMA %Q.page_size" statement */ zSql = sqlite3_mprintf("PRAGMA %Q.page_size", p->zDb); if( !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_step(pStmt); p->nPgsz = sqlite3_column_int(pStmt, 0); rc = sqlite3_finalize(pStmt); }else if( rc==SQLITE_AUTH ){ p->nPgsz = 1024; rc = SQLITE_OK; } } assert( p->nPgsz>0 || rc!=SQLITE_OK ); sqlite3_free(zSql); *pRc = rc; } } /* ** "Special" FTS4 arguments are column specifications of the following form: ** ** = ** ** There may not be whitespace surrounding the "=" character. The ** term may be quoted, but the may not. */ static int fts3IsSpecialColumn( const char *z, int *pnKey, char **pzValue ){ char *zValue; const char *zCsr = z; while( *zCsr!='=' ){ if( *zCsr=='\0' ) return 0; zCsr++; } *pnKey = (int)(zCsr-z); zValue = sqlite3_mprintf("%s", &zCsr[1]); if( zValue ){ sqlite3Fts3Dequote(zValue); } *pzValue = zValue; return 1; } /* ** Append the output of a printf() style formatting to an existing string. */ static void fts3Appendf( int *pRc, /* IN/OUT: Error code */ char **pz, /* IN/OUT: Pointer to string buffer */ const char *zFormat, /* Printf format string to append */ ... /* Arguments for printf format string */ ){ if( *pRc==SQLITE_OK ){ va_list ap; char *z; va_start(ap, zFormat); z = sqlite3_vmprintf(zFormat, ap); va_end(ap); if( z && *pz ){ char *z2 = sqlite3_mprintf("%s%s", *pz, z); sqlite3_free(z); z = z2; } if( z==0 ) *pRc = SQLITE_NOMEM; sqlite3_free(*pz); *pz = z; } } /* ** Return a copy of input string zInput enclosed in double-quotes (") and ** with all double quote characters escaped. For example: ** ** fts3QuoteId("un \"zip\"") -> "un \"\"zip\"\"" ** ** The pointer returned points to memory obtained from sqlite3_malloc(). It ** is the callers responsibility to call sqlite3_free() to release this ** memory. */ static char *fts3QuoteId(char const *zInput){ sqlite3_int64 nRet; char *zRet; nRet = 2 + (int)strlen(zInput)*2 + 1; zRet = sqlite3_malloc64(nRet); if( zRet ){ int i; char *z = zRet; *(z++) = '"'; for(i=0; zInput[i]; i++){ if( zInput[i]=='"' ) *(z++) = '"'; *(z++) = zInput[i]; } *(z++) = '"'; *(z++) = '\0'; } return zRet; } /* ** Return a list of comma separated SQL expressions and a FROM clause that ** could be used in a SELECT statement such as the following: ** ** SELECT FROM %_content AS x ... ** ** to return the docid, followed by each column of text data in order ** from left to write. If parameter zFunc is not NULL, then instead of ** being returned directly each column of text data is passed to an SQL ** function named zFunc first. For example, if zFunc is "unzip" and the ** table has the three user-defined columns "a", "b", and "c", the following ** string is returned: ** ** "docid, unzip(x.'a'), unzip(x.'b'), unzip(x.'c') FROM %_content AS x" ** ** The pointer returned points to a buffer allocated by sqlite3_malloc(). It ** is the responsibility of the caller to eventually free it. ** ** If *pRc is not SQLITE_OK when this function is called, it is a no-op (and ** a NULL pointer is returned). Otherwise, if an OOM error is encountered ** by this function, NULL is returned and *pRc is set to SQLITE_NOMEM. If ** no error occurs, *pRc is left unmodified. */ static char *fts3ReadExprList(Fts3Table *p, const char *zFunc, int *pRc){ char *zRet = 0; char *zFree = 0; char *zFunction; int i; if( p->zContentTbl==0 ){ if( !zFunc ){ zFunction = ""; }else{ zFree = zFunction = fts3QuoteId(zFunc); } fts3Appendf(pRc, &zRet, "docid"); for(i=0; inColumn; i++){ fts3Appendf(pRc, &zRet, ",%s(x.'c%d%q')", zFunction, i, p->azColumn[i]); } if( p->zLanguageid ){ fts3Appendf(pRc, &zRet, ", x.%Q", "langid"); } sqlite3_free(zFree); }else{ fts3Appendf(pRc, &zRet, "rowid"); for(i=0; inColumn; i++){ fts3Appendf(pRc, &zRet, ", x.'%q'", p->azColumn[i]); } if( p->zLanguageid ){ fts3Appendf(pRc, &zRet, ", x.%Q", p->zLanguageid); } } fts3Appendf(pRc, &zRet, " FROM '%q'.'%q%s' AS x", p->zDb, (p->zContentTbl ? p->zContentTbl : p->zName), (p->zContentTbl ? "" : "_content") ); return zRet; } /* ** Return a list of N comma separated question marks, where N is the number ** of columns in the %_content table (one for the docid plus one for each ** user-defined text column). ** ** If argument zFunc is not NULL, then all but the first question mark ** is preceded by zFunc and an open bracket, and followed by a closed ** bracket. For example, if zFunc is "zip" and the FTS3 table has three ** user-defined text columns, the following string is returned: ** ** "?, zip(?), zip(?), zip(?)" ** ** The pointer returned points to a buffer allocated by sqlite3_malloc(). It ** is the responsibility of the caller to eventually free it. ** ** If *pRc is not SQLITE_OK when this function is called, it is a no-op (and ** a NULL pointer is returned). Otherwise, if an OOM error is encountered ** by this function, NULL is returned and *pRc is set to SQLITE_NOMEM. If ** no error occurs, *pRc is left unmodified. */ static char *fts3WriteExprList(Fts3Table *p, const char *zFunc, int *pRc){ char *zRet = 0; char *zFree = 0; char *zFunction; int i; if( !zFunc ){ zFunction = ""; }else{ zFree = zFunction = fts3QuoteId(zFunc); } fts3Appendf(pRc, &zRet, "?"); for(i=0; inColumn; i++){ fts3Appendf(pRc, &zRet, ",%s(?)", zFunction); } if( p->zLanguageid ){ fts3Appendf(pRc, &zRet, ", ?"); } sqlite3_free(zFree); return zRet; } /* ** Buffer z contains a positive integer value encoded as utf-8 text. ** Decode this value and store it in *pnOut, returning the number of bytes ** consumed. If an overflow error occurs return a negative value. */ SQLITE_PRIVATE int sqlite3Fts3ReadInt(const char *z, int *pnOut){ u64 iVal = 0; int i; for(i=0; z[i]>='0' && z[i]<='9'; i++){ iVal = iVal*10 + (z[i] - '0'); if( iVal>0x7FFFFFFF ) return -1; } *pnOut = (int)iVal; return i; } /* ** This function interprets the string at (*pp) as a non-negative integer ** value. It reads the integer and sets *pnOut to the value read, then ** sets *pp to point to the byte immediately following the last byte of ** the integer value. ** ** Only decimal digits ('0'..'9') may be part of an integer value. ** ** If *pp does not being with a decimal digit SQLITE_ERROR is returned and ** the output value undefined. Otherwise SQLITE_OK is returned. ** ** This function is used when parsing the "prefix=" FTS4 parameter. */ static int fts3GobbleInt(const char **pp, int *pnOut){ const int MAX_NPREFIX = 10000000; int nInt = 0; /* Output value */ int nByte; nByte = sqlite3Fts3ReadInt(*pp, &nInt); if( nInt>MAX_NPREFIX ){ nInt = 0; } if( nByte==0 ){ return SQLITE_ERROR; } *pnOut = nInt; *pp += nByte; return SQLITE_OK; } /* ** This function is called to allocate an array of Fts3Index structures ** representing the indexes maintained by the current FTS table. FTS tables ** always maintain the main "terms" index, but may also maintain one or ** more "prefix" indexes, depending on the value of the "prefix=" parameter ** (if any) specified as part of the CREATE VIRTUAL TABLE statement. ** ** Argument zParam is passed the value of the "prefix=" option if one was ** specified, or NULL otherwise. ** ** If no error occurs, SQLITE_OK is returned and *apIndex set to point to ** the allocated array. *pnIndex is set to the number of elements in the ** array. If an error does occur, an SQLite error code is returned. ** ** Regardless of whether or not an error is returned, it is the responsibility ** of the caller to call sqlite3_free() on the output array to free it. */ static int fts3PrefixParameter( const char *zParam, /* ABC in prefix=ABC parameter to parse */ int *pnIndex, /* OUT: size of *apIndex[] array */ struct Fts3Index **apIndex /* OUT: Array of indexes for this table */ ){ struct Fts3Index *aIndex; /* Allocated array */ int nIndex = 1; /* Number of entries in array */ if( zParam && zParam[0] ){ const char *p; nIndex++; for(p=zParam; *p; p++){ if( *p==',' ) nIndex++; } } aIndex = sqlite3_malloc64(sizeof(struct Fts3Index) * nIndex); *apIndex = aIndex; if( !aIndex ){ return SQLITE_NOMEM; } memset(aIndex, 0, sizeof(struct Fts3Index) * nIndex); if( zParam ){ const char *p = zParam; int i; for(i=1; i=0 ); if( nPrefix==0 ){ nIndex--; i--; }else{ aIndex[i].nPrefix = nPrefix; } p++; } } *pnIndex = nIndex; return SQLITE_OK; } /* ** This function is called when initializing an FTS4 table that uses the ** content=xxx option. It determines the number of and names of the columns ** of the new FTS4 table. ** ** The third argument passed to this function is the value passed to the ** config=xxx option (i.e. "xxx"). This function queries the database for ** a table of that name. If found, the output variables are populated ** as follows: ** ** *pnCol: Set to the number of columns table xxx has, ** ** *pnStr: Set to the total amount of space required to store a copy ** of each columns name, including the nul-terminator. ** ** *pazCol: Set to point to an array of *pnCol strings. Each string is ** the name of the corresponding column in table xxx. The array ** and its contents are allocated using a single allocation. It ** is the responsibility of the caller to free this allocation ** by eventually passing the *pazCol value to sqlite3_free(). ** ** If the table cannot be found, an error code is returned and the output ** variables are undefined. Or, if an OOM is encountered, SQLITE_NOMEM is ** returned (and the output variables are undefined). */ static int fts3ContentColumns( sqlite3 *db, /* Database handle */ const char *zDb, /* Name of db (i.e. "main", "temp" etc.) */ const char *zTbl, /* Name of content table */ const char ***pazCol, /* OUT: Malloc'd array of column names */ int *pnCol, /* OUT: Size of array *pazCol */ int *pnStr, /* OUT: Bytes of string content */ char **pzErr /* OUT: error message */ ){ int rc = SQLITE_OK; /* Return code */ char *zSql; /* "SELECT *" statement on zTbl */ sqlite3_stmt *pStmt = 0; /* Compiled version of zSql */ zSql = sqlite3_mprintf("SELECT * FROM %Q.%Q", zDb, zTbl); if( !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare(db, zSql, -1, &pStmt, 0); if( rc!=SQLITE_OK ){ sqlite3Fts3ErrMsg(pzErr, "%s", sqlite3_errmsg(db)); } } sqlite3_free(zSql); if( rc==SQLITE_OK ){ const char **azCol; /* Output array */ sqlite3_int64 nStr = 0; /* Size of all column names (incl. 0x00) */ int nCol; /* Number of table columns */ int i; /* Used to iterate through columns */ /* Loop through the returned columns. Set nStr to the number of bytes of ** space required to store a copy of each column name, including the ** nul-terminator byte. */ nCol = sqlite3_column_count(pStmt); for(i=0; i module name ("fts3" or "fts4") ** argv[1] -> database name ** argv[2] -> table name ** argv[...] -> "column name" and other module argument fields. */ static int fts3InitVtab( int isCreate, /* True for xCreate, false for xConnect */ sqlite3 *db, /* The SQLite database connection */ void *pAux, /* Hash table containing tokenizers */ int argc, /* Number of elements in argv array */ const char * const *argv, /* xCreate/xConnect argument array */ sqlite3_vtab **ppVTab, /* Write the resulting vtab structure here */ char **pzErr /* Write any error message here */ ){ Fts3Hash *pHash = (Fts3Hash *)pAux; Fts3Table *p = 0; /* Pointer to allocated vtab */ int rc = SQLITE_OK; /* Return code */ int i; /* Iterator variable */ sqlite3_int64 nByte; /* Size of allocation used for *p */ int iCol; /* Column index */ int nString = 0; /* Bytes required to hold all column names */ int nCol = 0; /* Number of columns in the FTS table */ char *zCsr; /* Space for holding column names */ int nDb; /* Bytes required to hold database name */ int nName; /* Bytes required to hold table name */ int isFts4 = (argv[0][3]=='4'); /* True for FTS4, false for FTS3 */ const char **aCol; /* Array of column names */ sqlite3_tokenizer *pTokenizer = 0; /* Tokenizer for this table */ int nIndex = 0; /* Size of aIndex[] array */ struct Fts3Index *aIndex = 0; /* Array of indexes for this table */ /* The results of parsing supported FTS4 key=value options: */ int bNoDocsize = 0; /* True to omit %_docsize table */ int bDescIdx = 0; /* True to store descending indexes */ char *zPrefix = 0; /* Prefix parameter value (or NULL) */ char *zCompress = 0; /* compress=? parameter (or NULL) */ char *zUncompress = 0; /* uncompress=? parameter (or NULL) */ char *zContent = 0; /* content=? parameter (or NULL) */ char *zLanguageid = 0; /* languageid=? parameter (or NULL) */ char **azNotindexed = 0; /* The set of notindexed= columns */ int nNotindexed = 0; /* Size of azNotindexed[] array */ assert( strlen(argv[0])==4 ); assert( (sqlite3_strnicmp(argv[0], "fts4", 4)==0 && isFts4) || (sqlite3_strnicmp(argv[0], "fts3", 4)==0 && !isFts4) ); nDb = (int)strlen(argv[1]) + 1; nName = (int)strlen(argv[2]) + 1; nByte = sizeof(const char *) * (argc-2); aCol = (const char **)sqlite3_malloc64(nByte); if( aCol ){ memset((void*)aCol, 0, nByte); azNotindexed = (char **)sqlite3_malloc64(nByte); } if( azNotindexed ){ memset(azNotindexed, 0, nByte); } if( !aCol || !azNotindexed ){ rc = SQLITE_NOMEM; goto fts3_init_out; } /* Loop through all of the arguments passed by the user to the FTS3/4 ** module (i.e. all the column names and special arguments). This loop ** does the following: ** ** + Figures out the number of columns the FTSX table will have, and ** the number of bytes of space that must be allocated to store copies ** of the column names. ** ** + If there is a tokenizer specification included in the arguments, ** initializes the tokenizer pTokenizer. */ for(i=3; rc==SQLITE_OK && i8 && 0==sqlite3_strnicmp(z, "tokenize", 8) && 0==sqlite3Fts3IsIdChar(z[8]) ){ rc = sqlite3Fts3InitTokenizer(pHash, &z[9], &pTokenizer, pzErr); } /* Check if it is an FTS4 special argument. */ else if( isFts4 && fts3IsSpecialColumn(z, &nKey, &zVal) ){ struct Fts4Option { const char *zOpt; int nOpt; } aFts4Opt[] = { { "matchinfo", 9 }, /* 0 -> MATCHINFO */ { "prefix", 6 }, /* 1 -> PREFIX */ { "compress", 8 }, /* 2 -> COMPRESS */ { "uncompress", 10 }, /* 3 -> UNCOMPRESS */ { "order", 5 }, /* 4 -> ORDER */ { "content", 7 }, /* 5 -> CONTENT */ { "languageid", 10 }, /* 6 -> LANGUAGEID */ { "notindexed", 10 } /* 7 -> NOTINDEXED */ }; int iOpt; if( !zVal ){ rc = SQLITE_NOMEM; }else{ for(iOpt=0; iOptnOpt && !sqlite3_strnicmp(z, pOp->zOpt, pOp->nOpt) ){ break; } } switch( iOpt ){ case 0: /* MATCHINFO */ if( strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "fts3", 4) ){ sqlite3Fts3ErrMsg(pzErr, "unrecognized matchinfo: %s", zVal); rc = SQLITE_ERROR; } bNoDocsize = 1; break; case 1: /* PREFIX */ sqlite3_free(zPrefix); zPrefix = zVal; zVal = 0; break; case 2: /* COMPRESS */ sqlite3_free(zCompress); zCompress = zVal; zVal = 0; break; case 3: /* UNCOMPRESS */ sqlite3_free(zUncompress); zUncompress = zVal; zVal = 0; break; case 4: /* ORDER */ if( (strlen(zVal)!=3 || sqlite3_strnicmp(zVal, "asc", 3)) && (strlen(zVal)!=4 || sqlite3_strnicmp(zVal, "desc", 4)) ){ sqlite3Fts3ErrMsg(pzErr, "unrecognized order: %s", zVal); rc = SQLITE_ERROR; } bDescIdx = (zVal[0]=='d' || zVal[0]=='D'); break; case 5: /* CONTENT */ sqlite3_free(zContent); zContent = zVal; zVal = 0; break; case 6: /* LANGUAGEID */ assert( iOpt==6 ); sqlite3_free(zLanguageid); zLanguageid = zVal; zVal = 0; break; case 7: /* NOTINDEXED */ azNotindexed[nNotindexed++] = zVal; zVal = 0; break; default: assert( iOpt==SizeofArray(aFts4Opt) ); sqlite3Fts3ErrMsg(pzErr, "unrecognized parameter: %s", z); rc = SQLITE_ERROR; break; } sqlite3_free(zVal); } } /* Otherwise, the argument is a column name. */ else { nString += (int)(strlen(z) + 1); aCol[nCol++] = z; } } /* If a content=xxx option was specified, the following: ** ** 1. Ignore any compress= and uncompress= options. ** ** 2. If no column names were specified as part of the CREATE VIRTUAL ** TABLE statement, use all columns from the content table. */ if( rc==SQLITE_OK && zContent ){ sqlite3_free(zCompress); sqlite3_free(zUncompress); zCompress = 0; zUncompress = 0; if( nCol==0 ){ sqlite3_free((void*)aCol); aCol = 0; rc = fts3ContentColumns(db, argv[1], zContent,&aCol,&nCol,&nString,pzErr); /* If a languageid= option was specified, remove the language id ** column from the aCol[] array. */ if( rc==SQLITE_OK && zLanguageid ){ int j; for(j=0; jdb = db; p->nColumn = nCol; p->nPendingData = 0; p->azColumn = (char **)&p[1]; p->pTokenizer = pTokenizer; p->nMaxPendingData = FTS3_MAX_PENDING_DATA; p->bHasDocsize = (isFts4 && bNoDocsize==0); p->bHasStat = (u8)isFts4; p->bFts4 = (u8)isFts4; p->bDescIdx = (u8)bDescIdx; p->nAutoincrmerge = 0xff; /* 0xff means setting unknown */ p->zContentTbl = zContent; p->zLanguageid = zLanguageid; zContent = 0; zLanguageid = 0; TESTONLY( p->inTransaction = -1 ); TESTONLY( p->mxSavepoint = -1 ); p->aIndex = (struct Fts3Index *)&p->azColumn[nCol]; memcpy(p->aIndex, aIndex, sizeof(struct Fts3Index) * nIndex); p->nIndex = nIndex; for(i=0; iaIndex[i].hPending, FTS3_HASH_STRING, 1); } p->abNotindexed = (u8 *)&p->aIndex[nIndex]; /* Fill in the zName and zDb fields of the vtab structure. */ zCsr = (char *)&p->abNotindexed[nCol]; p->zName = zCsr; memcpy(zCsr, argv[2], nName); zCsr += nName; p->zDb = zCsr; memcpy(zCsr, argv[1], nDb); zCsr += nDb; /* Fill in the azColumn array */ for(iCol=0; iCol0 ){ memcpy(zCsr, z, n); } zCsr[n] = '\0'; sqlite3Fts3Dequote(zCsr); p->azColumn[iCol] = zCsr; zCsr += n+1; assert( zCsr <= &((char *)p)[nByte] ); } /* Fill in the abNotindexed array */ for(iCol=0; iColazColumn[iCol]); for(i=0; iazColumn[iCol], zNot, n) ){ p->abNotindexed[iCol] = 1; sqlite3_free(zNot); azNotindexed[i] = 0; } } } for(i=0; izReadExprlist = fts3ReadExprList(p, zUncompress, &rc); p->zWriteExprlist = fts3WriteExprList(p, zCompress, &rc); if( rc!=SQLITE_OK ) goto fts3_init_out; /* If this is an xCreate call, create the underlying tables in the ** database. TODO: For xConnect(), it could verify that said tables exist. */ if( isCreate ){ rc = fts3CreateTables(p); } /* Check to see if a legacy fts3 table has been "upgraded" by the ** addition of a %_stat table so that it can use incremental merge. */ if( !isFts4 && !isCreate ){ p->bHasStat = 2; } /* Figure out the page-size for the database. This is required in order to ** estimate the cost of loading large doclists from the database. */ fts3DatabasePageSize(&rc, p); p->nNodeSize = p->nPgsz-35; #if defined(SQLITE_DEBUG)||defined(SQLITE_TEST) p->nMergeCount = FTS3_MERGE_COUNT; #endif /* Declare the table schema to SQLite. */ fts3DeclareVtab(&rc, p); fts3_init_out: sqlite3_free(zPrefix); sqlite3_free(aIndex); sqlite3_free(zCompress); sqlite3_free(zUncompress); sqlite3_free(zContent); sqlite3_free(zLanguageid); for(i=0; ipModule->xDestroy(pTokenizer); } }else{ assert( p->pSegments==0 ); *ppVTab = &p->base; } return rc; } /* ** The xConnect() and xCreate() methods for the virtual table. All the ** work is done in function fts3InitVtab(). */ static int fts3ConnectMethod( sqlite3 *db, /* Database connection */ void *pAux, /* Pointer to tokenizer hash table */ int argc, /* Number of elements in argv array */ const char * const *argv, /* xCreate/xConnect argument array */ sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */ char **pzErr /* OUT: sqlite3_malloc'd error message */ ){ return fts3InitVtab(0, db, pAux, argc, argv, ppVtab, pzErr); } static int fts3CreateMethod( sqlite3 *db, /* Database connection */ void *pAux, /* Pointer to tokenizer hash table */ int argc, /* Number of elements in argv array */ const char * const *argv, /* xCreate/xConnect argument array */ sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */ char **pzErr /* OUT: sqlite3_malloc'd error message */ ){ return fts3InitVtab(1, db, pAux, argc, argv, ppVtab, pzErr); } /* ** Set the pIdxInfo->estimatedRows variable to nRow. Unless this ** extension is currently being used by a version of SQLite too old to ** support estimatedRows. In that case this function is a no-op. */ static void fts3SetEstimatedRows(sqlite3_index_info *pIdxInfo, i64 nRow){ #if SQLITE_VERSION_NUMBER>=3008002 if( sqlite3_libversion_number()>=3008002 ){ pIdxInfo->estimatedRows = nRow; } #endif } /* ** Set the SQLITE_INDEX_SCAN_UNIQUE flag in pIdxInfo->flags. Unless this ** extension is currently being used by a version of SQLite too old to ** support index-info flags. In that case this function is a no-op. */ static void fts3SetUniqueFlag(sqlite3_index_info *pIdxInfo){ #if SQLITE_VERSION_NUMBER>=3008012 if( sqlite3_libversion_number()>=3008012 ){ pIdxInfo->idxFlags |= SQLITE_INDEX_SCAN_UNIQUE; } #endif } /* ** Implementation of the xBestIndex method for FTS3 tables. There ** are three possible strategies, in order of preference: ** ** 1. Direct lookup by rowid or docid. ** 2. Full-text search using a MATCH operator on a non-docid column. ** 3. Linear scan of %_content table. */ static int fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){ Fts3Table *p = (Fts3Table *)pVTab; int i; /* Iterator variable */ int iCons = -1; /* Index of constraint to use */ int iLangidCons = -1; /* Index of langid=x constraint, if present */ int iDocidGe = -1; /* Index of docid>=x constraint, if present */ int iDocidLe = -1; /* Index of docid<=x constraint, if present */ int iIdx; if( p->bLock ){ return SQLITE_ERROR; } /* By default use a full table scan. This is an expensive option, ** so search through the constraints to see if a more efficient ** strategy is possible. */ pInfo->idxNum = FTS3_FULLSCAN_SEARCH; pInfo->estimatedCost = 5000000; for(i=0; inConstraint; i++){ int bDocid; /* True if this constraint is on docid */ struct sqlite3_index_constraint *pCons = &pInfo->aConstraint[i]; if( pCons->usable==0 ){ if( pCons->op==SQLITE_INDEX_CONSTRAINT_MATCH ){ /* There exists an unusable MATCH constraint. This means that if ** the planner does elect to use the results of this call as part ** of the overall query plan the user will see an "unable to use ** function MATCH in the requested context" error. To discourage ** this, return a very high cost here. */ pInfo->idxNum = FTS3_FULLSCAN_SEARCH; pInfo->estimatedCost = 1e50; fts3SetEstimatedRows(pInfo, ((sqlite3_int64)1) << 50); return SQLITE_OK; } continue; } bDocid = (pCons->iColumn<0 || pCons->iColumn==p->nColumn+1); /* A direct lookup on the rowid or docid column. Assign a cost of 1.0. */ if( iCons<0 && pCons->op==SQLITE_INDEX_CONSTRAINT_EQ && bDocid ){ pInfo->idxNum = FTS3_DOCID_SEARCH; pInfo->estimatedCost = 1.0; iCons = i; } /* A MATCH constraint. Use a full-text search. ** ** If there is more than one MATCH constraint available, use the first ** one encountered. If there is both a MATCH constraint and a direct ** rowid/docid lookup, prefer the MATCH strategy. This is done even ** though the rowid/docid lookup is faster than a MATCH query, selecting ** it would lead to an "unable to use function MATCH in the requested ** context" error. */ if( pCons->op==SQLITE_INDEX_CONSTRAINT_MATCH && pCons->iColumn>=0 && pCons->iColumn<=p->nColumn ){ pInfo->idxNum = FTS3_FULLTEXT_SEARCH + pCons->iColumn; pInfo->estimatedCost = 2.0; iCons = i; } /* Equality constraint on the langid column */ if( pCons->op==SQLITE_INDEX_CONSTRAINT_EQ && pCons->iColumn==p->nColumn + 2 ){ iLangidCons = i; } if( bDocid ){ switch( pCons->op ){ case SQLITE_INDEX_CONSTRAINT_GE: case SQLITE_INDEX_CONSTRAINT_GT: iDocidGe = i; break; case SQLITE_INDEX_CONSTRAINT_LE: case SQLITE_INDEX_CONSTRAINT_LT: iDocidLe = i; break; } } } /* If using a docid=? or rowid=? strategy, set the UNIQUE flag. */ if( pInfo->idxNum==FTS3_DOCID_SEARCH ) fts3SetUniqueFlag(pInfo); iIdx = 1; if( iCons>=0 ){ pInfo->aConstraintUsage[iCons].argvIndex = iIdx++; pInfo->aConstraintUsage[iCons].omit = 1; } if( iLangidCons>=0 ){ pInfo->idxNum |= FTS3_HAVE_LANGID; pInfo->aConstraintUsage[iLangidCons].argvIndex = iIdx++; } if( iDocidGe>=0 ){ pInfo->idxNum |= FTS3_HAVE_DOCID_GE; pInfo->aConstraintUsage[iDocidGe].argvIndex = iIdx++; } if( iDocidLe>=0 ){ pInfo->idxNum |= FTS3_HAVE_DOCID_LE; pInfo->aConstraintUsage[iDocidLe].argvIndex = iIdx++; } /* Regardless of the strategy selected, FTS can deliver rows in rowid (or ** docid) order. Both ascending and descending are possible. */ if( pInfo->nOrderBy==1 ){ struct sqlite3_index_orderby *pOrder = &pInfo->aOrderBy[0]; if( pOrder->iColumn<0 || pOrder->iColumn==p->nColumn+1 ){ if( pOrder->desc ){ pInfo->idxStr = "DESC"; }else{ pInfo->idxStr = "ASC"; } pInfo->orderByConsumed = 1; } } assert( p->pSegments==0 ); return SQLITE_OK; } /* ** Implementation of xOpen method. */ static int fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ sqlite3_vtab_cursor *pCsr; /* Allocated cursor */ UNUSED_PARAMETER(pVTab); /* Allocate a buffer large enough for an Fts3Cursor structure. If the ** allocation succeeds, zero it and return SQLITE_OK. Otherwise, ** if the allocation fails, return SQLITE_NOMEM. */ *ppCsr = pCsr = (sqlite3_vtab_cursor *)sqlite3_malloc(sizeof(Fts3Cursor)); if( !pCsr ){ return SQLITE_NOMEM; } memset(pCsr, 0, sizeof(Fts3Cursor)); return SQLITE_OK; } /* ** Finalize the statement handle at pCsr->pStmt. ** ** Or, if that statement handle is one created by fts3CursorSeekStmt(), ** and the Fts3Table.pSeekStmt slot is currently NULL, save the statement ** pointer there instead of finalizing it. */ static void fts3CursorFinalizeStmt(Fts3Cursor *pCsr){ if( pCsr->bSeekStmt ){ Fts3Table *p = (Fts3Table *)pCsr->base.pVtab; if( p->pSeekStmt==0 ){ p->pSeekStmt = pCsr->pStmt; sqlite3_reset(pCsr->pStmt); pCsr->pStmt = 0; } pCsr->bSeekStmt = 0; } sqlite3_finalize(pCsr->pStmt); } /* ** Free all resources currently held by the cursor passed as the only ** argument. */ static void fts3ClearCursor(Fts3Cursor *pCsr){ fts3CursorFinalizeStmt(pCsr); sqlite3Fts3FreeDeferredTokens(pCsr); sqlite3_free(pCsr->aDoclist); sqlite3Fts3MIBufferFree(pCsr->pMIBuffer); sqlite3Fts3ExprFree(pCsr->pExpr); memset(&(&pCsr->base)[1], 0, sizeof(Fts3Cursor)-sizeof(sqlite3_vtab_cursor)); } /* ** Close the cursor. For additional information see the documentation ** on the xClose method of the virtual table interface. */ static int fts3CloseMethod(sqlite3_vtab_cursor *pCursor){ Fts3Cursor *pCsr = (Fts3Cursor *)pCursor; assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); fts3ClearCursor(pCsr); assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); sqlite3_free(pCsr); return SQLITE_OK; } /* ** If pCsr->pStmt has not been prepared (i.e. if pCsr->pStmt==0), then ** compose and prepare an SQL statement of the form: ** ** "SELECT FROM %_content WHERE rowid = ?" ** ** (or the equivalent for a content=xxx table) and set pCsr->pStmt to ** it. If an error occurs, return an SQLite error code. */ static int fts3CursorSeekStmt(Fts3Cursor *pCsr){ int rc = SQLITE_OK; if( pCsr->pStmt==0 ){ Fts3Table *p = (Fts3Table *)pCsr->base.pVtab; char *zSql; if( p->pSeekStmt ){ pCsr->pStmt = p->pSeekStmt; p->pSeekStmt = 0; }else{ zSql = sqlite3_mprintf("SELECT %s WHERE rowid = ?", p->zReadExprlist); if( !zSql ) return SQLITE_NOMEM; p->bLock++; rc = sqlite3_prepare_v3( p->db, zSql,-1,SQLITE_PREPARE_PERSISTENT,&pCsr->pStmt,0 ); p->bLock--; sqlite3_free(zSql); } if( rc==SQLITE_OK ) pCsr->bSeekStmt = 1; } return rc; } /* ** Position the pCsr->pStmt statement so that it is on the row ** of the %_content table that contains the last match. Return ** SQLITE_OK on success. */ static int fts3CursorSeek(sqlite3_context *pContext, Fts3Cursor *pCsr){ int rc = SQLITE_OK; if( pCsr->isRequireSeek ){ rc = fts3CursorSeekStmt(pCsr); if( rc==SQLITE_OK ){ Fts3Table *pTab = (Fts3Table*)pCsr->base.pVtab; pTab->bLock++; sqlite3_bind_int64(pCsr->pStmt, 1, pCsr->iPrevId); pCsr->isRequireSeek = 0; if( SQLITE_ROW==sqlite3_step(pCsr->pStmt) ){ pTab->bLock--; return SQLITE_OK; }else{ pTab->bLock--; rc = sqlite3_reset(pCsr->pStmt); if( rc==SQLITE_OK && ((Fts3Table *)pCsr->base.pVtab)->zContentTbl==0 ){ /* If no row was found and no error has occurred, then the %_content ** table is missing a row that is present in the full-text index. ** The data structures are corrupt. */ rc = FTS_CORRUPT_VTAB; pCsr->isEof = 1; } } } } if( rc!=SQLITE_OK && pContext ){ sqlite3_result_error_code(pContext, rc); } return rc; } /* ** This function is used to process a single interior node when searching ** a b-tree for a term or term prefix. The node data is passed to this ** function via the zNode/nNode parameters. The term to search for is ** passed in zTerm/nTerm. ** ** If piFirst is not NULL, then this function sets *piFirst to the blockid ** of the child node that heads the sub-tree that may contain the term. ** ** If piLast is not NULL, then *piLast is set to the right-most child node ** that heads a sub-tree that may contain a term for which zTerm/nTerm is ** a prefix. ** ** If an OOM error occurs, SQLITE_NOMEM is returned. Otherwise, SQLITE_OK. */ static int fts3ScanInteriorNode( const char *zTerm, /* Term to select leaves for */ int nTerm, /* Size of term zTerm in bytes */ const char *zNode, /* Buffer containing segment interior node */ int nNode, /* Size of buffer at zNode */ sqlite3_int64 *piFirst, /* OUT: Selected child node */ sqlite3_int64 *piLast /* OUT: Selected child node */ ){ int rc = SQLITE_OK; /* Return code */ const char *zCsr = zNode; /* Cursor to iterate through node */ const char *zEnd = &zCsr[nNode];/* End of interior node buffer */ char *zBuffer = 0; /* Buffer to load terms into */ i64 nAlloc = 0; /* Size of allocated buffer */ int isFirstTerm = 1; /* True when processing first term on page */ sqlite3_int64 iChild; /* Block id of child node to descend to */ int nBuffer = 0; /* Total term size */ /* Skip over the 'height' varint that occurs at the start of every ** interior node. Then load the blockid of the left-child of the b-tree ** node into variable iChild. ** ** Even if the data structure on disk is corrupted, this (reading two ** varints from the buffer) does not risk an overread. If zNode is a ** root node, then the buffer comes from a SELECT statement. SQLite does ** not make this guarantee explicitly, but in practice there are always ** either more than 20 bytes of allocated space following the nNode bytes of ** contents, or two zero bytes. Or, if the node is read from the %_segments ** table, then there are always 20 bytes of zeroed padding following the ** nNode bytes of content (see sqlite3Fts3ReadBlock() for details). */ zCsr += sqlite3Fts3GetVarint(zCsr, &iChild); zCsr += sqlite3Fts3GetVarint(zCsr, &iChild); if( zCsr>zEnd ){ return FTS_CORRUPT_VTAB; } while( zCsrnBuffer ){ rc = FTS_CORRUPT_VTAB; goto finish_scan; } } isFirstTerm = 0; zCsr += fts3GetVarint32(zCsr, &nSuffix); assert( nPrefix>=0 && nSuffix>=0 ); if( nPrefix>zCsr-zNode || nSuffix>zEnd-zCsr || nSuffix==0 ){ rc = FTS_CORRUPT_VTAB; goto finish_scan; } if( (i64)nPrefix+nSuffix>nAlloc ){ char *zNew; nAlloc = ((i64)nPrefix+nSuffix) * 2; zNew = (char *)sqlite3_realloc64(zBuffer, nAlloc); if( !zNew ){ rc = SQLITE_NOMEM; goto finish_scan; } zBuffer = zNew; } assert( zBuffer ); memcpy(&zBuffer[nPrefix], zCsr, nSuffix); nBuffer = nPrefix + nSuffix; zCsr += nSuffix; /* Compare the term we are searching for with the term just loaded from ** the interior node. If the specified term is greater than or equal ** to the term from the interior node, then all terms on the sub-tree ** headed by node iChild are smaller than zTerm. No need to search ** iChild. ** ** If the interior node term is larger than the specified term, then ** the tree headed by iChild may contain the specified term. */ cmp = memcmp(zTerm, zBuffer, (nBuffer>nTerm ? nTerm : nBuffer)); if( piFirst && (cmp<0 || (cmp==0 && nBuffer>nTerm)) ){ *piFirst = iChild; piFirst = 0; } if( piLast && cmp<0 ){ *piLast = iChild; piLast = 0; } iChild++; }; if( piFirst ) *piFirst = iChild; if( piLast ) *piLast = iChild; finish_scan: sqlite3_free(zBuffer); return rc; } /* ** The buffer pointed to by argument zNode (size nNode bytes) contains an ** interior node of a b-tree segment. The zTerm buffer (size nTerm bytes) ** contains a term. This function searches the sub-tree headed by the zNode ** node for the range of leaf nodes that may contain the specified term ** or terms for which the specified term is a prefix. ** ** If piLeaf is not NULL, then *piLeaf is set to the blockid of the ** left-most leaf node in the tree that may contain the specified term. ** If piLeaf2 is not NULL, then *piLeaf2 is set to the blockid of the ** right-most leaf node that may contain a term for which the specified ** term is a prefix. ** ** It is possible that the range of returned leaf nodes does not contain ** the specified term or any terms for which it is a prefix. However, if the ** segment does contain any such terms, they are stored within the identified ** range. Because this function only inspects interior segment nodes (and ** never loads leaf nodes into memory), it is not possible to be sure. ** ** If an error occurs, an error code other than SQLITE_OK is returned. */ static int fts3SelectLeaf( Fts3Table *p, /* Virtual table handle */ const char *zTerm, /* Term to select leaves for */ int nTerm, /* Size of term zTerm in bytes */ const char *zNode, /* Buffer containing segment interior node */ int nNode, /* Size of buffer at zNode */ sqlite3_int64 *piLeaf, /* Selected leaf node */ sqlite3_int64 *piLeaf2 /* Selected leaf node */ ){ int rc = SQLITE_OK; /* Return code */ int iHeight; /* Height of this node in tree */ assert( piLeaf || piLeaf2 ); fts3GetVarint32(zNode, &iHeight); rc = fts3ScanInteriorNode(zTerm, nTerm, zNode, nNode, piLeaf, piLeaf2); assert_fts3_nc( !piLeaf2 || !piLeaf || rc!=SQLITE_OK || (*piLeaf<=*piLeaf2) ); if( rc==SQLITE_OK && iHeight>1 ){ char *zBlob = 0; /* Blob read from %_segments table */ int nBlob = 0; /* Size of zBlob in bytes */ if( piLeaf && piLeaf2 && (*piLeaf!=*piLeaf2) ){ rc = sqlite3Fts3ReadBlock(p, *piLeaf, &zBlob, &nBlob, 0); if( rc==SQLITE_OK ){ rc = fts3SelectLeaf(p, zTerm, nTerm, zBlob, nBlob, piLeaf, 0); } sqlite3_free(zBlob); piLeaf = 0; zBlob = 0; } if( rc==SQLITE_OK ){ rc = sqlite3Fts3ReadBlock(p, piLeaf?*piLeaf:*piLeaf2, &zBlob, &nBlob, 0); } if( rc==SQLITE_OK ){ int iNewHeight = 0; fts3GetVarint32(zBlob, &iNewHeight); if( iNewHeight>=iHeight ){ rc = FTS_CORRUPT_VTAB; }else{ rc = fts3SelectLeaf(p, zTerm, nTerm, zBlob, nBlob, piLeaf, piLeaf2); } } sqlite3_free(zBlob); } return rc; } /* ** This function is used to create delta-encoded serialized lists of FTS3 ** varints. Each call to this function appends a single varint to a list. */ static void fts3PutDeltaVarint( char **pp, /* IN/OUT: Output pointer */ sqlite3_int64 *piPrev, /* IN/OUT: Previous value written to list */ sqlite3_int64 iVal /* Write this value to the list */ ){ assert_fts3_nc( iVal-*piPrev > 0 || (*piPrev==0 && iVal==0) ); *pp += sqlite3Fts3PutVarint(*pp, iVal-*piPrev); *piPrev = iVal; } /* ** When this function is called, *ppPoslist is assumed to point to the ** start of a position-list. After it returns, *ppPoslist points to the ** first byte after the position-list. ** ** A position list is list of positions (delta encoded) and columns for ** a single document record of a doclist. So, in other words, this ** routine advances *ppPoslist so that it points to the next docid in ** the doclist, or to the first byte past the end of the doclist. ** ** If pp is not NULL, then the contents of the position list are copied ** to *pp. *pp is set to point to the first byte past the last byte copied ** before this function returns. */ static void fts3PoslistCopy(char **pp, char **ppPoslist){ char *pEnd = *ppPoslist; char c = 0; /* The end of a position list is marked by a zero encoded as an FTS3 ** varint. A single POS_END (0) byte. Except, if the 0 byte is preceded by ** a byte with the 0x80 bit set, then it is not a varint 0, but the tail ** of some other, multi-byte, value. ** ** The following while-loop moves pEnd to point to the first byte that is not ** immediately preceded by a byte with the 0x80 bit set. Then increments ** pEnd once more so that it points to the byte immediately following the ** last byte in the position-list. */ while( *pEnd | c ){ c = *pEnd++ & 0x80; testcase( c!=0 && (*pEnd)==0 ); } pEnd++; /* Advance past the POS_END terminator byte */ if( pp ){ int n = (int)(pEnd - *ppPoslist); char *p = *pp; memcpy(p, *ppPoslist, n); p += n; *pp = p; } *ppPoslist = pEnd; } /* ** When this function is called, *ppPoslist is assumed to point to the ** start of a column-list. After it returns, *ppPoslist points to the ** to the terminator (POS_COLUMN or POS_END) byte of the column-list. ** ** A column-list is list of delta-encoded positions for a single column ** within a single document within a doclist. ** ** The column-list is terminated either by a POS_COLUMN varint (1) or ** a POS_END varint (0). This routine leaves *ppPoslist pointing to ** the POS_COLUMN or POS_END that terminates the column-list. ** ** If pp is not NULL, then the contents of the column-list are copied ** to *pp. *pp is set to point to the first byte past the last byte copied ** before this function returns. The POS_COLUMN or POS_END terminator ** is not copied into *pp. */ static void fts3ColumnlistCopy(char **pp, char **ppPoslist){ char *pEnd = *ppPoslist; char c = 0; /* A column-list is terminated by either a 0x01 or 0x00 byte that is ** not part of a multi-byte varint. */ while( 0xFE & (*pEnd | c) ){ c = *pEnd++ & 0x80; testcase( c!=0 && ((*pEnd)&0xfe)==0 ); } if( pp ){ int n = (int)(pEnd - *ppPoslist); char *p = *pp; memcpy(p, *ppPoslist, n); p += n; *pp = p; } *ppPoslist = pEnd; } /* ** Value used to signify the end of an position-list. This must be ** as large or larger than any value that might appear on the ** position-list, even a position list that has been corrupted. */ #define POSITION_LIST_END LARGEST_INT64 /* ** This function is used to help parse position-lists. When this function is ** called, *pp may point to the start of the next varint in the position-list ** being parsed, or it may point to 1 byte past the end of the position-list ** (in which case **pp will be a terminator bytes POS_END (0) or ** (1)). ** ** If *pp points past the end of the current position-list, set *pi to ** POSITION_LIST_END and return. Otherwise, read the next varint from *pp, ** increment the current value of *pi by the value read, and set *pp to ** point to the next value before returning. ** ** Before calling this routine *pi must be initialized to the value of ** the previous position, or zero if we are reading the first position ** in the position-list. Because positions are delta-encoded, the value ** of the previous position is needed in order to compute the value of ** the next position. */ static void fts3ReadNextPos( char **pp, /* IN/OUT: Pointer into position-list buffer */ sqlite3_int64 *pi /* IN/OUT: Value read from position-list */ ){ if( (**pp)&0xFE ){ int iVal; *pp += fts3GetVarint32((*pp), &iVal); *pi += iVal; *pi -= 2; }else{ *pi = POSITION_LIST_END; } } /* ** If parameter iCol is not 0, write an POS_COLUMN (1) byte followed by ** the value of iCol encoded as a varint to *pp. This will start a new ** column list. ** ** Set *pp to point to the byte just after the last byte written before ** returning (do not modify it if iCol==0). Return the total number of bytes ** written (0 if iCol==0). */ static int fts3PutColNumber(char **pp, int iCol){ int n = 0; /* Number of bytes written */ if( iCol ){ char *p = *pp; /* Output pointer */ n = 1 + sqlite3Fts3PutVarint(&p[1], iCol); *p = 0x01; *pp = &p[n]; } return n; } /* ** Compute the union of two position lists. The output written ** into *pp contains all positions of both *pp1 and *pp2 in sorted ** order and with any duplicates removed. All pointers are ** updated appropriately. The caller is responsible for insuring ** that there is enough space in *pp to hold the complete output. */ static int fts3PoslistMerge( char **pp, /* Output buffer */ char **pp1, /* Left input list */ char **pp2 /* Right input list */ ){ char *p = *pp; char *p1 = *pp1; char *p2 = *pp2; while( *p1 || *p2 ){ int iCol1; /* The current column index in pp1 */ int iCol2; /* The current column index in pp2 */ if( *p1==POS_COLUMN ){ fts3GetVarint32(&p1[1], &iCol1); if( iCol1==0 ) return FTS_CORRUPT_VTAB; } else if( *p1==POS_END ) iCol1 = 0x7fffffff; else iCol1 = 0; if( *p2==POS_COLUMN ){ fts3GetVarint32(&p2[1], &iCol2); if( iCol2==0 ) return FTS_CORRUPT_VTAB; } else if( *p2==POS_END ) iCol2 = 0x7fffffff; else iCol2 = 0; if( iCol1==iCol2 ){ sqlite3_int64 i1 = 0; /* Last position from pp1 */ sqlite3_int64 i2 = 0; /* Last position from pp2 */ sqlite3_int64 iPrev = 0; int n = fts3PutColNumber(&p, iCol1); p1 += n; p2 += n; /* At this point, both p1 and p2 point to the start of column-lists ** for the same column (the column with index iCol1 and iCol2). ** A column-list is a list of non-negative delta-encoded varints, each ** incremented by 2 before being stored. Each list is terminated by a ** POS_END (0) or POS_COLUMN (1). The following block merges the two lists ** and writes the results to buffer p. p is left pointing to the byte ** after the list written. No terminator (POS_END or POS_COLUMN) is ** written to the output. */ fts3GetDeltaVarint(&p1, &i1); fts3GetDeltaVarint(&p2, &i2); if( i1<2 || i2<2 ){ break; } do { fts3PutDeltaVarint(&p, &iPrev, (i1pos(*pp1) && pos(*pp2)-pos(*pp1)<=nToken). i.e. ** when the *pp1 token appears before the *pp2 token, but not more than nToken ** slots before it. ** ** e.g. nToken==1 searches for adjacent positions. */ static int fts3PoslistPhraseMerge( char **pp, /* IN/OUT: Preallocated output buffer */ int nToken, /* Maximum difference in token positions */ int isSaveLeft, /* Save the left position */ int isExact, /* If *pp1 is exactly nTokens before *pp2 */ char **pp1, /* IN/OUT: Left input list */ char **pp2 /* IN/OUT: Right input list */ ){ char *p = *pp; char *p1 = *pp1; char *p2 = *pp2; int iCol1 = 0; int iCol2 = 0; /* Never set both isSaveLeft and isExact for the same invocation. */ assert( isSaveLeft==0 || isExact==0 ); assert_fts3_nc( p!=0 && *p1!=0 && *p2!=0 ); if( *p1==POS_COLUMN ){ p1++; p1 += fts3GetVarint32(p1, &iCol1); } if( *p2==POS_COLUMN ){ p2++; p2 += fts3GetVarint32(p2, &iCol2); } while( 1 ){ if( iCol1==iCol2 ){ char *pSave = p; sqlite3_int64 iPrev = 0; sqlite3_int64 iPos1 = 0; sqlite3_int64 iPos2 = 0; if( iCol1 ){ *p++ = POS_COLUMN; p += sqlite3Fts3PutVarint(p, iCol1); } fts3GetDeltaVarint(&p1, &iPos1); iPos1 -= 2; fts3GetDeltaVarint(&p2, &iPos2); iPos2 -= 2; if( iPos1<0 || iPos2<0 ) break; while( 1 ){ if( iPos2==iPos1+nToken || (isExact==0 && iPos2>iPos1 && iPos2<=iPos1+nToken) ){ sqlite3_int64 iSave; iSave = isSaveLeft ? iPos1 : iPos2; fts3PutDeltaVarint(&p, &iPrev, iSave+2); iPrev -= 2; pSave = 0; assert( p ); } if( (!isSaveLeft && iPos2<=(iPos1+nToken)) || iPos2<=iPos1 ){ if( (*p2&0xFE)==0 ) break; fts3GetDeltaVarint(&p2, &iPos2); iPos2 -= 2; }else{ if( (*p1&0xFE)==0 ) break; fts3GetDeltaVarint(&p1, &iPos1); iPos1 -= 2; } } if( pSave ){ assert( pp && p ); p = pSave; } fts3ColumnlistCopy(0, &p1); fts3ColumnlistCopy(0, &p2); assert( (*p1&0xFE)==0 && (*p2&0xFE)==0 ); if( 0==*p1 || 0==*p2 ) break; p1++; p1 += fts3GetVarint32(p1, &iCol1); p2++; p2 += fts3GetVarint32(p2, &iCol2); } /* Advance pointer p1 or p2 (whichever corresponds to the smaller of ** iCol1 and iCol2) so that it points to either the 0x00 that marks the ** end of the position list, or the 0x01 that precedes the next ** column-number in the position list. */ else if( iCol1=pEnd ){ *pp = 0; }else{ u64 iVal; *pp += sqlite3Fts3GetVarintU(*pp, &iVal); if( bDescIdx ){ *pVal = (i64)((u64)*pVal - iVal); }else{ *pVal = (i64)((u64)*pVal + iVal); } } } /* ** This function is used to write a single varint to a buffer. The varint ** is written to *pp. Before returning, *pp is set to point 1 byte past the ** end of the value written. ** ** If *pbFirst is zero when this function is called, the value written to ** the buffer is that of parameter iVal. ** ** If *pbFirst is non-zero when this function is called, then the value ** written is either (iVal-*piPrev) (if bDescIdx is zero) or (*piPrev-iVal) ** (if bDescIdx is non-zero). ** ** Before returning, this function always sets *pbFirst to 1 and *piPrev ** to the value of parameter iVal. */ static void fts3PutDeltaVarint3( char **pp, /* IN/OUT: Output pointer */ int bDescIdx, /* True for descending docids */ sqlite3_int64 *piPrev, /* IN/OUT: Previous value written to list */ int *pbFirst, /* IN/OUT: True after first int written */ sqlite3_int64 iVal /* Write this value to the list */ ){ sqlite3_uint64 iWrite; if( bDescIdx==0 || *pbFirst==0 ){ assert_fts3_nc( *pbFirst==0 || iVal>=*piPrev ); iWrite = (u64)iVal - (u64)*piPrev; }else{ assert_fts3_nc( *piPrev>=iVal ); iWrite = (u64)*piPrev - (u64)iVal; } assert( *pbFirst || *piPrev==0 ); assert_fts3_nc( *pbFirst==0 || iWrite>0 ); *pp += sqlite3Fts3PutVarint(*pp, iWrite); *piPrev = iVal; *pbFirst = 1; } /* ** This macro is used by various functions that merge doclists. The two ** arguments are 64-bit docid values. If the value of the stack variable ** bDescDoclist is 0 when this macro is invoked, then it returns (i1-i2). ** Otherwise, (i2-i1). ** ** Using this makes it easier to write code that can merge doclists that are ** sorted in either ascending or descending order. */ /* #define DOCID_CMP(i1, i2) ((bDescDoclist?-1:1) * (i64)((u64)i1-i2)) */ #define DOCID_CMP(i1, i2) ((bDescDoclist?-1:1) * (i1>i2?1:((i1==i2)?0:-1))) /* ** This function does an "OR" merge of two doclists (output contains all ** positions contained in either argument doclist). If the docids in the ** input doclists are sorted in ascending order, parameter bDescDoclist ** should be false. If they are sorted in ascending order, it should be ** passed a non-zero value. ** ** If no error occurs, *paOut is set to point at an sqlite3_malloc'd buffer ** containing the output doclist and SQLITE_OK is returned. In this case ** *pnOut is set to the number of bytes in the output doclist. ** ** If an error occurs, an SQLite error code is returned. The output values ** are undefined in this case. */ static int fts3DoclistOrMerge( int bDescDoclist, /* True if arguments are desc */ char *a1, int n1, /* First doclist */ char *a2, int n2, /* Second doclist */ char **paOut, int *pnOut /* OUT: Malloc'd doclist */ ){ int rc = SQLITE_OK; sqlite3_int64 i1 = 0; sqlite3_int64 i2 = 0; sqlite3_int64 iPrev = 0; char *pEnd1 = &a1[n1]; char *pEnd2 = &a2[n2]; char *p1 = a1; char *p2 = a2; char *p; char *aOut; int bFirstOut = 0; *paOut = 0; *pnOut = 0; /* Allocate space for the output. Both the input and output doclists ** are delta encoded. If they are in ascending order (bDescDoclist==0), ** then the first docid in each list is simply encoded as a varint. For ** each subsequent docid, the varint stored is the difference between the ** current and previous docid (a positive number - since the list is in ** ascending order). ** ** The first docid written to the output is therefore encoded using the ** same number of bytes as it is in whichever of the input lists it is ** read from. And each subsequent docid read from the same input list ** consumes either the same or less bytes as it did in the input (since ** the difference between it and the previous value in the output must ** be a positive value less than or equal to the delta value read from ** the input list). The same argument applies to all but the first docid ** read from the 'other' list. And to the contents of all position lists ** that will be copied and merged from the input to the output. ** ** However, if the first docid copied to the output is a negative number, ** then the encoding of the first docid from the 'other' input list may ** be larger in the output than it was in the input (since the delta value ** may be a larger positive integer than the actual docid). ** ** The space required to store the output is therefore the sum of the ** sizes of the two inputs, plus enough space for exactly one of the input ** docids to grow. ** ** A symetric argument may be made if the doclists are in descending ** order. */ aOut = sqlite3_malloc64((i64)n1+n2+FTS3_VARINT_MAX-1+FTS3_BUFFER_PADDING); if( !aOut ) return SQLITE_NOMEM; p = aOut; fts3GetDeltaVarint3(&p1, pEnd1, 0, &i1); fts3GetDeltaVarint3(&p2, pEnd2, 0, &i2); while( p1 || p2 ){ sqlite3_int64 iDiff = DOCID_CMP(i1, i2); if( p2 && p1 && iDiff==0 ){ fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i1); rc = fts3PoslistMerge(&p, &p1, &p2); if( rc ) break; fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); }else if( !p2 || (p1 && iDiff<0) ){ fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i1); fts3PoslistCopy(&p, &p1); fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); }else{ fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i2); fts3PoslistCopy(&p, &p2); fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); } assert( (p-aOut)<=((p1?(p1-a1):n1)+(p2?(p2-a2):n2)+FTS3_VARINT_MAX-1) ); } if( rc!=SQLITE_OK ){ sqlite3_free(aOut); p = aOut = 0; }else{ assert( (p-aOut)<=n1+n2+FTS3_VARINT_MAX-1 ); memset(&aOut[(p-aOut)], 0, FTS3_BUFFER_PADDING); } *paOut = aOut; *pnOut = (int)(p-aOut); return rc; } /* ** This function does a "phrase" merge of two doclists. In a phrase merge, ** the output contains a copy of each position from the right-hand input ** doclist for which there is a position in the left-hand input doclist ** exactly nDist tokens before it. ** ** If the docids in the input doclists are sorted in ascending order, ** parameter bDescDoclist should be false. If they are sorted in ascending ** order, it should be passed a non-zero value. ** ** The right-hand input doclist is overwritten by this function. */ static int fts3DoclistPhraseMerge( int bDescDoclist, /* True if arguments are desc */ int nDist, /* Distance from left to right (1=adjacent) */ char *aLeft, int nLeft, /* Left doclist */ char **paRight, int *pnRight /* IN/OUT: Right/output doclist */ ){ sqlite3_int64 i1 = 0; sqlite3_int64 i2 = 0; sqlite3_int64 iPrev = 0; char *aRight = *paRight; char *pEnd1 = &aLeft[nLeft]; char *pEnd2 = &aRight[*pnRight]; char *p1 = aLeft; char *p2 = aRight; char *p; int bFirstOut = 0; char *aOut; assert( nDist>0 ); if( bDescDoclist ){ aOut = sqlite3_malloc64((sqlite3_int64)*pnRight + FTS3_VARINT_MAX); if( aOut==0 ) return SQLITE_NOMEM; }else{ aOut = aRight; } p = aOut; fts3GetDeltaVarint3(&p1, pEnd1, 0, &i1); fts3GetDeltaVarint3(&p2, pEnd2, 0, &i2); while( p1 && p2 ){ sqlite3_int64 iDiff = DOCID_CMP(i1, i2); if( iDiff==0 ){ char *pSave = p; sqlite3_int64 iPrevSave = iPrev; int bFirstOutSave = bFirstOut; fts3PutDeltaVarint3(&p, bDescDoclist, &iPrev, &bFirstOut, i1); if( 0==fts3PoslistPhraseMerge(&p, nDist, 0, 1, &p1, &p2) ){ p = pSave; iPrev = iPrevSave; bFirstOut = bFirstOutSave; } fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); }else if( iDiff<0 ){ fts3PoslistCopy(0, &p1); fts3GetDeltaVarint3(&p1, pEnd1, bDescDoclist, &i1); }else{ fts3PoslistCopy(0, &p2); fts3GetDeltaVarint3(&p2, pEnd2, bDescDoclist, &i2); } } *pnRight = (int)(p - aOut); if( bDescDoclist ){ sqlite3_free(aRight); *paRight = aOut; } return SQLITE_OK; } /* ** Argument pList points to a position list nList bytes in size. This ** function checks to see if the position list contains any entries for ** a token in position 0 (of any column). If so, it writes argument iDelta ** to the output buffer pOut, followed by a position list consisting only ** of the entries from pList at position 0, and terminated by an 0x00 byte. ** The value returned is the number of bytes written to pOut (if any). */ SQLITE_PRIVATE int sqlite3Fts3FirstFilter( sqlite3_int64 iDelta, /* Varint that may be written to pOut */ char *pList, /* Position list (no 0x00 term) */ int nList, /* Size of pList in bytes */ char *pOut /* Write output here */ ){ int nOut = 0; int bWritten = 0; /* True once iDelta has been written */ char *p = pList; char *pEnd = &pList[nList]; if( *p!=0x01 ){ if( *p==0x02 ){ nOut += sqlite3Fts3PutVarint(&pOut[nOut], iDelta); pOut[nOut++] = 0x02; bWritten = 1; } fts3ColumnlistCopy(0, &p); } while( paaOutput); i++){ if( pTS->aaOutput[i] ){ if( !aOut ){ aOut = pTS->aaOutput[i]; nOut = pTS->anOutput[i]; pTS->aaOutput[i] = 0; }else{ int nNew; char *aNew; int rc = fts3DoclistOrMerge(p->bDescIdx, pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, &aNew, &nNew ); if( rc!=SQLITE_OK ){ sqlite3_free(aOut); return rc; } sqlite3_free(pTS->aaOutput[i]); sqlite3_free(aOut); pTS->aaOutput[i] = 0; aOut = aNew; nOut = nNew; } } } pTS->aaOutput[0] = aOut; pTS->anOutput[0] = nOut; return SQLITE_OK; } /* ** Merge the doclist aDoclist/nDoclist into the TermSelect object passed ** as the first argument. The merge is an "OR" merge (see function ** fts3DoclistOrMerge() for details). ** ** This function is called with the doclist for each term that matches ** a queried prefix. It merges all these doclists into one, the doclist ** for the specified prefix. Since there can be a very large number of ** doclists to merge, the merging is done pair-wise using the TermSelect ** object. ** ** This function returns SQLITE_OK if the merge is successful, or an ** SQLite error code (SQLITE_NOMEM) if an error occurs. */ static int fts3TermSelectMerge( Fts3Table *p, /* FTS table handle */ TermSelect *pTS, /* TermSelect object to merge into */ char *aDoclist, /* Pointer to doclist */ int nDoclist /* Size of aDoclist in bytes */ ){ if( pTS->aaOutput[0]==0 ){ /* If this is the first term selected, copy the doclist to the output ** buffer using memcpy(). ** ** Add FTS3_VARINT_MAX bytes of unused space to the end of the ** allocation. This is so as to ensure that the buffer is big enough ** to hold the current doclist AND'd with any other doclist. If the ** doclists are stored in order=ASC order, this padding would not be ** required (since the size of [doclistA AND doclistB] is always less ** than or equal to the size of [doclistA] in that case). But this is ** not true for order=DESC. For example, a doclist containing (1, -1) ** may be smaller than (-1), as in the first example the -1 may be stored ** as a single-byte delta, whereas in the second it must be stored as a ** FTS3_VARINT_MAX byte varint. ** ** Similar padding is added in the fts3DoclistOrMerge() function. */ pTS->aaOutput[0] = sqlite3_malloc(nDoclist + FTS3_VARINT_MAX + 1); pTS->anOutput[0] = nDoclist; if( pTS->aaOutput[0] ){ memcpy(pTS->aaOutput[0], aDoclist, nDoclist); memset(&pTS->aaOutput[0][nDoclist], 0, FTS3_VARINT_MAX); }else{ return SQLITE_NOMEM; } }else{ char *aMerge = aDoclist; int nMerge = nDoclist; int iOut; for(iOut=0; iOutaaOutput); iOut++){ if( pTS->aaOutput[iOut]==0 ){ assert( iOut>0 ); pTS->aaOutput[iOut] = aMerge; pTS->anOutput[iOut] = nMerge; break; }else{ char *aNew; int nNew; int rc = fts3DoclistOrMerge(p->bDescIdx, aMerge, nMerge, pTS->aaOutput[iOut], pTS->anOutput[iOut], &aNew, &nNew ); if( rc!=SQLITE_OK ){ if( aMerge!=aDoclist ) sqlite3_free(aMerge); return rc; } if( aMerge!=aDoclist ) sqlite3_free(aMerge); sqlite3_free(pTS->aaOutput[iOut]); pTS->aaOutput[iOut] = 0; aMerge = aNew; nMerge = nNew; if( (iOut+1)==SizeofArray(pTS->aaOutput) ){ pTS->aaOutput[iOut] = aMerge; pTS->anOutput[iOut] = nMerge; } } } } return SQLITE_OK; } /* ** Append SegReader object pNew to the end of the pCsr->apSegment[] array. */ static int fts3SegReaderCursorAppend( Fts3MultiSegReader *pCsr, Fts3SegReader *pNew ){ if( (pCsr->nSegment%16)==0 ){ Fts3SegReader **apNew; sqlite3_int64 nByte = (pCsr->nSegment + 16)*sizeof(Fts3SegReader*); apNew = (Fts3SegReader **)sqlite3_realloc64(pCsr->apSegment, nByte); if( !apNew ){ sqlite3Fts3SegReaderFree(pNew); return SQLITE_NOMEM; } pCsr->apSegment = apNew; } pCsr->apSegment[pCsr->nSegment++] = pNew; return SQLITE_OK; } /* ** Add seg-reader objects to the Fts3MultiSegReader object passed as the ** 8th argument. ** ** This function returns SQLITE_OK if successful, or an SQLite error code ** otherwise. */ static int fts3SegReaderCursor( Fts3Table *p, /* FTS3 table handle */ int iLangid, /* Language id */ int iIndex, /* Index to search (from 0 to p->nIndex-1) */ int iLevel, /* Level of segments to scan */ const char *zTerm, /* Term to query for */ int nTerm, /* Size of zTerm in bytes */ int isPrefix, /* True for a prefix search */ int isScan, /* True to scan from zTerm to EOF */ Fts3MultiSegReader *pCsr /* Cursor object to populate */ ){ int rc = SQLITE_OK; /* Error code */ sqlite3_stmt *pStmt = 0; /* Statement to iterate through segments */ int rc2; /* Result of sqlite3_reset() */ /* If iLevel is less than 0 and this is not a scan, include a seg-reader ** for the pending-terms. If this is a scan, then this call must be being ** made by an fts4aux module, not an FTS table. In this case calling ** Fts3SegReaderPending might segfault, as the data structures used by ** fts4aux are not completely populated. So it's easiest to filter these ** calls out here. */ if( iLevel<0 && p->aIndex && p->iPrevLangid==iLangid ){ Fts3SegReader *pSeg = 0; rc = sqlite3Fts3SegReaderPending(p, iIndex, zTerm, nTerm, isPrefix||isScan, &pSeg); if( rc==SQLITE_OK && pSeg ){ rc = fts3SegReaderCursorAppend(pCsr, pSeg); } } if( iLevel!=FTS3_SEGCURSOR_PENDING ){ if( rc==SQLITE_OK ){ rc = sqlite3Fts3AllSegdirs(p, iLangid, iIndex, iLevel, &pStmt); } while( rc==SQLITE_OK && SQLITE_ROW==(rc = sqlite3_step(pStmt)) ){ Fts3SegReader *pSeg = 0; /* Read the values returned by the SELECT into local variables. */ sqlite3_int64 iStartBlock = sqlite3_column_int64(pStmt, 1); sqlite3_int64 iLeavesEndBlock = sqlite3_column_int64(pStmt, 2); sqlite3_int64 iEndBlock = sqlite3_column_int64(pStmt, 3); int nRoot = sqlite3_column_bytes(pStmt, 4); char const *zRoot = sqlite3_column_blob(pStmt, 4); /* If zTerm is not NULL, and this segment is not stored entirely on its ** root node, the range of leaves scanned can be reduced. Do this. */ if( iStartBlock && zTerm && zRoot ){ sqlite3_int64 *pi = (isPrefix ? &iLeavesEndBlock : 0); rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &iStartBlock, pi); if( rc!=SQLITE_OK ) goto finished; if( isPrefix==0 && isScan==0 ) iLeavesEndBlock = iStartBlock; } rc = sqlite3Fts3SegReaderNew(pCsr->nSegment+1, (isPrefix==0 && isScan==0), iStartBlock, iLeavesEndBlock, iEndBlock, zRoot, nRoot, &pSeg ); if( rc!=SQLITE_OK ) goto finished; rc = fts3SegReaderCursorAppend(pCsr, pSeg); } } finished: rc2 = sqlite3_reset(pStmt); if( rc==SQLITE_DONE ) rc = rc2; return rc; } /* ** Set up a cursor object for iterating through a full-text index or a ** single level therein. */ SQLITE_PRIVATE int sqlite3Fts3SegReaderCursor( Fts3Table *p, /* FTS3 table handle */ int iLangid, /* Language-id to search */ int iIndex, /* Index to search (from 0 to p->nIndex-1) */ int iLevel, /* Level of segments to scan */ const char *zTerm, /* Term to query for */ int nTerm, /* Size of zTerm in bytes */ int isPrefix, /* True for a prefix search */ int isScan, /* True to scan from zTerm to EOF */ Fts3MultiSegReader *pCsr /* Cursor object to populate */ ){ assert( iIndex>=0 && iIndexnIndex ); assert( iLevel==FTS3_SEGCURSOR_ALL || iLevel==FTS3_SEGCURSOR_PENDING || iLevel>=0 ); assert( iLevelbase.pVtab; if( isPrefix ){ for(i=1; bFound==0 && inIndex; i++){ if( p->aIndex[i].nPrefix==nTerm ){ bFound = 1; rc = sqlite3Fts3SegReaderCursor(p, pCsr->iLangid, i, FTS3_SEGCURSOR_ALL, zTerm, nTerm, 0, 0, pSegcsr ); pSegcsr->bLookup = 1; } } for(i=1; bFound==0 && inIndex; i++){ if( p->aIndex[i].nPrefix==nTerm+1 ){ bFound = 1; rc = sqlite3Fts3SegReaderCursor(p, pCsr->iLangid, i, FTS3_SEGCURSOR_ALL, zTerm, nTerm, 1, 0, pSegcsr ); if( rc==SQLITE_OK ){ rc = fts3SegReaderCursorAddZero( p, pCsr->iLangid, zTerm, nTerm, pSegcsr ); } } } } if( bFound==0 ){ rc = sqlite3Fts3SegReaderCursor(p, pCsr->iLangid, 0, FTS3_SEGCURSOR_ALL, zTerm, nTerm, isPrefix, 0, pSegcsr ); pSegcsr->bLookup = !isPrefix; } } *ppSegcsr = pSegcsr; return rc; } /* ** Free an Fts3MultiSegReader allocated by fts3TermSegReaderCursor(). */ static void fts3SegReaderCursorFree(Fts3MultiSegReader *pSegcsr){ sqlite3Fts3SegReaderFinish(pSegcsr); sqlite3_free(pSegcsr); } /* ** This function retrieves the doclist for the specified term (or term ** prefix) from the database. */ static int fts3TermSelect( Fts3Table *p, /* Virtual table handle */ Fts3PhraseToken *pTok, /* Token to query for */ int iColumn, /* Column to query (or -ve for all columns) */ int *pnOut, /* OUT: Size of buffer at *ppOut */ char **ppOut /* OUT: Malloced result buffer */ ){ int rc; /* Return code */ Fts3MultiSegReader *pSegcsr; /* Seg-reader cursor for this term */ TermSelect tsc; /* Object for pair-wise doclist merging */ Fts3SegFilter filter; /* Segment term filter configuration */ pSegcsr = pTok->pSegcsr; memset(&tsc, 0, sizeof(TermSelect)); filter.flags = FTS3_SEGMENT_IGNORE_EMPTY | FTS3_SEGMENT_REQUIRE_POS | (pTok->isPrefix ? FTS3_SEGMENT_PREFIX : 0) | (pTok->bFirst ? FTS3_SEGMENT_FIRST : 0) | (iColumnnColumn ? FTS3_SEGMENT_COLUMN_FILTER : 0); filter.iCol = iColumn; filter.zTerm = pTok->z; filter.nTerm = pTok->n; rc = sqlite3Fts3SegReaderStart(p, pSegcsr, &filter); while( SQLITE_OK==rc && SQLITE_ROW==(rc = sqlite3Fts3SegReaderStep(p, pSegcsr)) ){ rc = fts3TermSelectMerge(p, &tsc, pSegcsr->aDoclist, pSegcsr->nDoclist); } if( rc==SQLITE_OK ){ rc = fts3TermSelectFinishMerge(p, &tsc); } if( rc==SQLITE_OK ){ *ppOut = tsc.aaOutput[0]; *pnOut = tsc.anOutput[0]; }else{ int i; for(i=0; ipSegcsr = 0; return rc; } /* ** This function counts the total number of docids in the doclist stored ** in buffer aList[], size nList bytes. ** ** If the isPoslist argument is true, then it is assumed that the doclist ** contains a position-list following each docid. Otherwise, it is assumed ** that the doclist is simply a list of docids stored as delta encoded ** varints. */ static int fts3DoclistCountDocids(char *aList, int nList){ int nDoc = 0; /* Return value */ if( aList ){ char *aEnd = &aList[nList]; /* Pointer to one byte after EOF */ char *p = aList; /* Cursor */ while( peSearch==FTS3_DOCID_SEARCH || pCsr->eSearch==FTS3_FULLSCAN_SEARCH ){ Fts3Table *pTab = (Fts3Table*)pCursor->pVtab; pTab->bLock++; if( SQLITE_ROW!=sqlite3_step(pCsr->pStmt) ){ pCsr->isEof = 1; rc = sqlite3_reset(pCsr->pStmt); }else{ pCsr->iPrevId = sqlite3_column_int64(pCsr->pStmt, 0); rc = SQLITE_OK; } pTab->bLock--; }else{ rc = fts3EvalNext((Fts3Cursor *)pCursor); } assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); return rc; } /* ** If the numeric type of argument pVal is "integer", then return it ** converted to a 64-bit signed integer. Otherwise, return a copy of ** the second parameter, iDefault. */ static sqlite3_int64 fts3DocidRange(sqlite3_value *pVal, i64 iDefault){ if( pVal ){ int eType = sqlite3_value_numeric_type(pVal); if( eType==SQLITE_INTEGER ){ return sqlite3_value_int64(pVal); } } return iDefault; } /* ** This is the xFilter interface for the virtual table. See ** the virtual table xFilter method documentation for additional ** information. ** ** If idxNum==FTS3_FULLSCAN_SEARCH then do a full table scan against ** the %_content table. ** ** If idxNum==FTS3_DOCID_SEARCH then do a docid lookup for a single entry ** in the %_content table. ** ** If idxNum>=FTS3_FULLTEXT_SEARCH then use the full text index. The ** column on the left-hand side of the MATCH operator is column ** number idxNum-FTS3_FULLTEXT_SEARCH, 0 indexed. argv[0] is the right-hand ** side of the MATCH operator. */ static int fts3FilterMethod( sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */ int idxNum, /* Strategy index */ const char *idxStr, /* Unused */ int nVal, /* Number of elements in apVal */ sqlite3_value **apVal /* Arguments for the indexing scheme */ ){ int rc = SQLITE_OK; char *zSql; /* SQL statement used to access %_content */ int eSearch; Fts3Table *p = (Fts3Table *)pCursor->pVtab; Fts3Cursor *pCsr = (Fts3Cursor *)pCursor; sqlite3_value *pCons = 0; /* The MATCH or rowid constraint, if any */ sqlite3_value *pLangid = 0; /* The "langid = ?" constraint, if any */ sqlite3_value *pDocidGe = 0; /* The "docid >= ?" constraint, if any */ sqlite3_value *pDocidLe = 0; /* The "docid <= ?" constraint, if any */ int iIdx; UNUSED_PARAMETER(idxStr); UNUSED_PARAMETER(nVal); if( p->bLock ){ return SQLITE_ERROR; } eSearch = (idxNum & 0x0000FFFF); assert( eSearch>=0 && eSearch<=(FTS3_FULLTEXT_SEARCH+p->nColumn) ); assert( p->pSegments==0 ); /* Collect arguments into local variables */ iIdx = 0; if( eSearch!=FTS3_FULLSCAN_SEARCH ) pCons = apVal[iIdx++]; if( idxNum & FTS3_HAVE_LANGID ) pLangid = apVal[iIdx++]; if( idxNum & FTS3_HAVE_DOCID_GE ) pDocidGe = apVal[iIdx++]; if( idxNum & FTS3_HAVE_DOCID_LE ) pDocidLe = apVal[iIdx++]; assert( iIdx==nVal ); /* In case the cursor has been used before, clear it now. */ fts3ClearCursor(pCsr); /* Set the lower and upper bounds on docids to return */ pCsr->iMinDocid = fts3DocidRange(pDocidGe, SMALLEST_INT64); pCsr->iMaxDocid = fts3DocidRange(pDocidLe, LARGEST_INT64); if( idxStr ){ pCsr->bDesc = (idxStr[0]=='D'); }else{ pCsr->bDesc = p->bDescIdx; } pCsr->eSearch = (i16)eSearch; if( eSearch!=FTS3_DOCID_SEARCH && eSearch!=FTS3_FULLSCAN_SEARCH ){ int iCol = eSearch-FTS3_FULLTEXT_SEARCH; const char *zQuery = (const char *)sqlite3_value_text(pCons); if( zQuery==0 && sqlite3_value_type(pCons)!=SQLITE_NULL ){ return SQLITE_NOMEM; } pCsr->iLangid = 0; if( pLangid ) pCsr->iLangid = sqlite3_value_int(pLangid); assert( p->base.zErrMsg==0 ); rc = sqlite3Fts3ExprParse(p->pTokenizer, pCsr->iLangid, p->azColumn, p->bFts4, p->nColumn, iCol, zQuery, -1, &pCsr->pExpr, &p->base.zErrMsg ); if( rc!=SQLITE_OK ){ return rc; } rc = fts3EvalStart(pCsr); sqlite3Fts3SegmentsClose(p); if( rc!=SQLITE_OK ) return rc; pCsr->pNextId = pCsr->aDoclist; pCsr->iPrevId = 0; } /* Compile a SELECT statement for this cursor. For a full-table-scan, the ** statement loops through all rows of the %_content table. For a ** full-text query or docid lookup, the statement retrieves a single ** row by docid. */ if( eSearch==FTS3_FULLSCAN_SEARCH ){ if( pDocidGe || pDocidLe ){ zSql = sqlite3_mprintf( "SELECT %s WHERE rowid BETWEEN %lld AND %lld ORDER BY rowid %s", p->zReadExprlist, pCsr->iMinDocid, pCsr->iMaxDocid, (pCsr->bDesc ? "DESC" : "ASC") ); }else{ zSql = sqlite3_mprintf("SELECT %s ORDER BY rowid %s", p->zReadExprlist, (pCsr->bDesc ? "DESC" : "ASC") ); } if( zSql ){ p->bLock++; rc = sqlite3_prepare_v3( p->db,zSql,-1,SQLITE_PREPARE_PERSISTENT,&pCsr->pStmt,0 ); p->bLock--; sqlite3_free(zSql); }else{ rc = SQLITE_NOMEM; } }else if( eSearch==FTS3_DOCID_SEARCH ){ rc = fts3CursorSeekStmt(pCsr); if( rc==SQLITE_OK ){ rc = sqlite3_bind_value(pCsr->pStmt, 1, pCons); } } if( rc!=SQLITE_OK ) return rc; return fts3NextMethod(pCursor); } /* ** This is the xEof method of the virtual table. SQLite calls this ** routine to find out if it has reached the end of a result set. */ static int fts3EofMethod(sqlite3_vtab_cursor *pCursor){ Fts3Cursor *pCsr = (Fts3Cursor*)pCursor; if( pCsr->isEof ){ fts3ClearCursor(pCsr); pCsr->isEof = 1; } return pCsr->isEof; } /* ** This is the xRowid method. The SQLite core calls this routine to ** retrieve the rowid for the current row of the result set. fts3 ** exposes %_content.docid as the rowid for the virtual table. The ** rowid should be written to *pRowid. */ static int fts3RowidMethod(sqlite3_vtab_cursor *pCursor, sqlite_int64 *pRowid){ Fts3Cursor *pCsr = (Fts3Cursor *) pCursor; *pRowid = pCsr->iPrevId; return SQLITE_OK; } /* ** This is the xColumn method, called by SQLite to request a value from ** the row that the supplied cursor currently points to. ** ** If: ** ** (iCol < p->nColumn) -> The value of the iCol'th user column. ** (iCol == p->nColumn) -> Magic column with the same name as the table. ** (iCol == p->nColumn+1) -> Docid column ** (iCol == p->nColumn+2) -> Langid column */ static int fts3ColumnMethod( sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ sqlite3_context *pCtx, /* Context for sqlite3_result_xxx() calls */ int iCol /* Index of column to read value from */ ){ int rc = SQLITE_OK; /* Return Code */ Fts3Cursor *pCsr = (Fts3Cursor *) pCursor; Fts3Table *p = (Fts3Table *)pCursor->pVtab; /* The column value supplied by SQLite must be in range. */ assert( iCol>=0 && iCol<=p->nColumn+2 ); switch( iCol-p->nColumn ){ case 0: /* The special 'table-name' column */ sqlite3_result_pointer(pCtx, pCsr, "fts3cursor", 0); break; case 1: /* The docid column */ sqlite3_result_int64(pCtx, pCsr->iPrevId); break; case 2: if( pCsr->pExpr ){ sqlite3_result_int64(pCtx, pCsr->iLangid); break; }else if( p->zLanguageid==0 ){ sqlite3_result_int(pCtx, 0); break; }else{ iCol = p->nColumn; /* no break */ deliberate_fall_through } default: /* A user column. Or, if this is a full-table scan, possibly the ** language-id column. Seek the cursor. */ rc = fts3CursorSeek(0, pCsr); if( rc==SQLITE_OK && sqlite3_data_count(pCsr->pStmt)-1>iCol ){ sqlite3_result_value(pCtx, sqlite3_column_value(pCsr->pStmt, iCol+1)); } break; } assert( ((Fts3Table *)pCsr->base.pVtab)->pSegments==0 ); return rc; } /* ** This function is the implementation of the xUpdate callback used by ** FTS3 virtual tables. It is invoked by SQLite each time a row is to be ** inserted, updated or deleted. */ static int fts3UpdateMethod( sqlite3_vtab *pVtab, /* Virtual table handle */ int nArg, /* Size of argument array */ sqlite3_value **apVal, /* Array of arguments */ sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */ ){ return sqlite3Fts3UpdateMethod(pVtab, nArg, apVal, pRowid); } /* ** Implementation of xSync() method. Flush the contents of the pending-terms ** hash-table to the database. */ static int fts3SyncMethod(sqlite3_vtab *pVtab){ /* Following an incremental-merge operation, assuming that the input ** segments are not completely consumed (the usual case), they are updated ** in place to remove the entries that have already been merged. This ** involves updating the leaf block that contains the smallest unmerged ** entry and each block (if any) between the leaf and the root node. So ** if the height of the input segment b-trees is N, and input segments ** are merged eight at a time, updating the input segments at the end ** of an incremental-merge requires writing (8*(1+N)) blocks. N is usually ** small - often between 0 and 2. So the overhead of the incremental ** merge is somewhere between 8 and 24 blocks. To avoid this overhead ** dwarfing the actual productive work accomplished, the incremental merge ** is only attempted if it will write at least 64 leaf blocks. Hence ** nMinMerge. ** ** Of course, updating the input segments also involves deleting a bunch ** of blocks from the segments table. But this is not considered overhead ** as it would also be required by a crisis-merge that used the same input ** segments. */ const u32 nMinMerge = 64; /* Minimum amount of incr-merge work to do */ Fts3Table *p = (Fts3Table*)pVtab; int rc; i64 iLastRowid = sqlite3_last_insert_rowid(p->db); rc = sqlite3Fts3PendingTermsFlush(p); if( rc==SQLITE_OK && p->nLeafAdd>(nMinMerge/16) && p->nAutoincrmerge && p->nAutoincrmerge!=0xff ){ int mxLevel = 0; /* Maximum relative level value in db */ int A; /* Incr-merge parameter A */ rc = sqlite3Fts3MaxLevel(p, &mxLevel); assert( rc==SQLITE_OK || mxLevel==0 ); A = p->nLeafAdd * mxLevel; A += (A/2); if( A>(int)nMinMerge ) rc = sqlite3Fts3Incrmerge(p, A, p->nAutoincrmerge); } sqlite3Fts3SegmentsClose(p); sqlite3_set_last_insert_rowid(p->db, iLastRowid); return rc; } /* ** If it is currently unknown whether or not the FTS table has an %_stat ** table (if p->bHasStat==2), attempt to determine this (set p->bHasStat ** to 0 or 1). Return SQLITE_OK if successful, or an SQLite error code ** if an error occurs. */ static int fts3SetHasStat(Fts3Table *p){ int rc = SQLITE_OK; if( p->bHasStat==2 ){ char *zTbl = sqlite3_mprintf("%s_stat", p->zName); if( zTbl ){ int res = sqlite3_table_column_metadata(p->db, p->zDb, zTbl, 0,0,0,0,0,0); sqlite3_free(zTbl); p->bHasStat = (res==SQLITE_OK); }else{ rc = SQLITE_NOMEM; } } return rc; } /* ** Implementation of xBegin() method. */ static int fts3BeginMethod(sqlite3_vtab *pVtab){ Fts3Table *p = (Fts3Table*)pVtab; UNUSED_PARAMETER(pVtab); assert( p->pSegments==0 ); assert( p->nPendingData==0 ); assert( p->inTransaction!=1 ); TESTONLY( p->inTransaction = 1 ); TESTONLY( p->mxSavepoint = -1; ); p->nLeafAdd = 0; return fts3SetHasStat(p); } /* ** Implementation of xCommit() method. This is a no-op. The contents of ** the pending-terms hash-table have already been flushed into the database ** by fts3SyncMethod(). */ static int fts3CommitMethod(sqlite3_vtab *pVtab){ TESTONLY( Fts3Table *p = (Fts3Table*)pVtab ); UNUSED_PARAMETER(pVtab); assert( p->nPendingData==0 ); assert( p->inTransaction!=0 ); assert( p->pSegments==0 ); TESTONLY( p->inTransaction = 0 ); TESTONLY( p->mxSavepoint = -1; ); return SQLITE_OK; } /* ** Implementation of xRollback(). Discard the contents of the pending-terms ** hash-table. Any changes made to the database are reverted by SQLite. */ static int fts3RollbackMethod(sqlite3_vtab *pVtab){ Fts3Table *p = (Fts3Table*)pVtab; sqlite3Fts3PendingTermsClear(p); assert( p->inTransaction!=0 ); TESTONLY( p->inTransaction = 0 ); TESTONLY( p->mxSavepoint = -1; ); return SQLITE_OK; } /* ** When called, *ppPoslist must point to the byte immediately following the ** end of a position-list. i.e. ( (*ppPoslist)[-1]==POS_END ). This function ** moves *ppPoslist so that it instead points to the first byte of the ** same position list. */ static void fts3ReversePoslist(char *pStart, char **ppPoslist){ char *p = &(*ppPoslist)[-2]; char c = 0; /* Skip backwards passed any trailing 0x00 bytes added by NearTrim() */ while( p>pStart && (c=*p--)==0 ); /* Search backwards for a varint with value zero (the end of the previous ** poslist). This is an 0x00 byte preceded by some byte that does not ** have the 0x80 bit set. */ while( p>pStart && (*p & 0x80) | c ){ c = *p--; } assert( p==pStart || c==0 ); /* At this point p points to that preceding byte without the 0x80 bit ** set. So to find the start of the poslist, skip forward 2 bytes then ** over a varint. ** ** Normally. The other case is that p==pStart and the poslist to return ** is the first in the doclist. In this case do not skip forward 2 bytes. ** The second part of the if condition (c==0 && *ppPoslist>&p[2]) ** is required for cases where the first byte of a doclist and the ** doclist is empty. For example, if the first docid is 10, a doclist ** that begins with: ** ** 0x0A 0x00 */ if( p>pStart || (c==0 && *ppPoslist>&p[2]) ){ p = &p[2]; } while( *p++&0x80 ); *ppPoslist = p; } /* ** Helper function used by the implementation of the overloaded snippet(), ** offsets() and optimize() SQL functions. ** ** If the value passed as the third argument is a blob of size ** sizeof(Fts3Cursor*), then the blob contents are copied to the ** output variable *ppCsr and SQLITE_OK is returned. Otherwise, an error ** message is written to context pContext and SQLITE_ERROR returned. The ** string passed via zFunc is used as part of the error message. */ static int fts3FunctionArg( sqlite3_context *pContext, /* SQL function call context */ const char *zFunc, /* Function name */ sqlite3_value *pVal, /* argv[0] passed to function */ Fts3Cursor **ppCsr /* OUT: Store cursor handle here */ ){ int rc; *ppCsr = (Fts3Cursor*)sqlite3_value_pointer(pVal, "fts3cursor"); if( (*ppCsr)!=0 ){ rc = SQLITE_OK; }else{ char *zErr = sqlite3_mprintf("illegal first argument to %s", zFunc); sqlite3_result_error(pContext, zErr, -1); sqlite3_free(zErr); rc = SQLITE_ERROR; } return rc; } /* ** Implementation of the snippet() function for FTS3 */ static void fts3SnippetFunc( sqlite3_context *pContext, /* SQLite function call context */ int nVal, /* Size of apVal[] array */ sqlite3_value **apVal /* Array of arguments */ ){ Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */ const char *zStart = ""; const char *zEnd = ""; const char *zEllipsis = "..."; int iCol = -1; int nToken = 15; /* Default number of tokens in snippet */ /* There must be at least one argument passed to this function (otherwise ** the non-overloaded version would have been called instead of this one). */ assert( nVal>=1 ); if( nVal>6 ){ sqlite3_result_error(pContext, "wrong number of arguments to function snippet()", -1); return; } if( fts3FunctionArg(pContext, "snippet", apVal[0], &pCsr) ) return; switch( nVal ){ case 6: nToken = sqlite3_value_int(apVal[5]); /* no break */ deliberate_fall_through case 5: iCol = sqlite3_value_int(apVal[4]); /* no break */ deliberate_fall_through case 4: zEllipsis = (const char*)sqlite3_value_text(apVal[3]); /* no break */ deliberate_fall_through case 3: zEnd = (const char*)sqlite3_value_text(apVal[2]); /* no break */ deliberate_fall_through case 2: zStart = (const char*)sqlite3_value_text(apVal[1]); } if( !zEllipsis || !zEnd || !zStart ){ sqlite3_result_error_nomem(pContext); }else if( nToken==0 ){ sqlite3_result_text(pContext, "", -1, SQLITE_STATIC); }else if( SQLITE_OK==fts3CursorSeek(pContext, pCsr) ){ sqlite3Fts3Snippet(pContext, pCsr, zStart, zEnd, zEllipsis, iCol, nToken); } } /* ** Implementation of the offsets() function for FTS3 */ static void fts3OffsetsFunc( sqlite3_context *pContext, /* SQLite function call context */ int nVal, /* Size of argument array */ sqlite3_value **apVal /* Array of arguments */ ){ Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */ UNUSED_PARAMETER(nVal); assert( nVal==1 ); if( fts3FunctionArg(pContext, "offsets", apVal[0], &pCsr) ) return; assert( pCsr ); if( SQLITE_OK==fts3CursorSeek(pContext, pCsr) ){ sqlite3Fts3Offsets(pContext, pCsr); } } /* ** Implementation of the special optimize() function for FTS3. This ** function merges all segments in the database to a single segment. ** Example usage is: ** ** SELECT optimize(t) FROM t LIMIT 1; ** ** where 't' is the name of an FTS3 table. */ static void fts3OptimizeFunc( sqlite3_context *pContext, /* SQLite function call context */ int nVal, /* Size of argument array */ sqlite3_value **apVal /* Array of arguments */ ){ int rc; /* Return code */ Fts3Table *p; /* Virtual table handle */ Fts3Cursor *pCursor; /* Cursor handle passed through apVal[0] */ UNUSED_PARAMETER(nVal); assert( nVal==1 ); if( fts3FunctionArg(pContext, "optimize", apVal[0], &pCursor) ) return; p = (Fts3Table *)pCursor->base.pVtab; assert( p ); rc = sqlite3Fts3Optimize(p); switch( rc ){ case SQLITE_OK: sqlite3_result_text(pContext, "Index optimized", -1, SQLITE_STATIC); break; case SQLITE_DONE: sqlite3_result_text(pContext, "Index already optimal", -1, SQLITE_STATIC); break; default: sqlite3_result_error_code(pContext, rc); break; } } /* ** Implementation of the matchinfo() function for FTS3 */ static void fts3MatchinfoFunc( sqlite3_context *pContext, /* SQLite function call context */ int nVal, /* Size of argument array */ sqlite3_value **apVal /* Array of arguments */ ){ Fts3Cursor *pCsr; /* Cursor handle passed through apVal[0] */ assert( nVal==1 || nVal==2 ); if( SQLITE_OK==fts3FunctionArg(pContext, "matchinfo", apVal[0], &pCsr) ){ const char *zArg = 0; if( nVal>1 ){ zArg = (const char *)sqlite3_value_text(apVal[1]); } sqlite3Fts3Matchinfo(pContext, pCsr, zArg); } } /* ** This routine implements the xFindFunction method for the FTS3 ** virtual table. */ static int fts3FindFunctionMethod( sqlite3_vtab *pVtab, /* Virtual table handle */ int nArg, /* Number of SQL function arguments */ const char *zName, /* Name of SQL function */ void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ void **ppArg /* Unused */ ){ struct Overloaded { const char *zName; void (*xFunc)(sqlite3_context*,int,sqlite3_value**); } aOverload[] = { { "snippet", fts3SnippetFunc }, { "offsets", fts3OffsetsFunc }, { "optimize", fts3OptimizeFunc }, { "matchinfo", fts3MatchinfoFunc }, }; int i; /* Iterator variable */ UNUSED_PARAMETER(pVtab); UNUSED_PARAMETER(nArg); UNUSED_PARAMETER(ppArg); for(i=0; idb; /* Database connection */ int rc; /* Return Code */ /* At this point it must be known if the %_stat table exists or not. ** So bHasStat may not be 2. */ rc = fts3SetHasStat(p); /* As it happens, the pending terms table is always empty here. This is ** because an "ALTER TABLE RENAME TABLE" statement inside a transaction ** always opens a savepoint transaction. And the xSavepoint() method ** flushes the pending terms table. But leave the (no-op) call to ** PendingTermsFlush() in in case that changes. */ assert( p->nPendingData==0 ); if( rc==SQLITE_OK ){ rc = sqlite3Fts3PendingTermsFlush(p); } if( p->zContentTbl==0 ){ fts3DbExec(&rc, db, "ALTER TABLE %Q.'%q_content' RENAME TO '%q_content';", p->zDb, p->zName, zName ); } if( p->bHasDocsize ){ fts3DbExec(&rc, db, "ALTER TABLE %Q.'%q_docsize' RENAME TO '%q_docsize';", p->zDb, p->zName, zName ); } if( p->bHasStat ){ fts3DbExec(&rc, db, "ALTER TABLE %Q.'%q_stat' RENAME TO '%q_stat';", p->zDb, p->zName, zName ); } fts3DbExec(&rc, db, "ALTER TABLE %Q.'%q_segments' RENAME TO '%q_segments';", p->zDb, p->zName, zName ); fts3DbExec(&rc, db, "ALTER TABLE %Q.'%q_segdir' RENAME TO '%q_segdir';", p->zDb, p->zName, zName ); return rc; } /* ** The xSavepoint() method. ** ** Flush the contents of the pending-terms table to disk. */ static int fts3SavepointMethod(sqlite3_vtab *pVtab, int iSavepoint){ int rc = SQLITE_OK; UNUSED_PARAMETER(iSavepoint); assert( ((Fts3Table *)pVtab)->inTransaction ); assert( ((Fts3Table *)pVtab)->mxSavepoint <= iSavepoint ); TESTONLY( ((Fts3Table *)pVtab)->mxSavepoint = iSavepoint ); if( ((Fts3Table *)pVtab)->bIgnoreSavepoint==0 ){ rc = fts3SyncMethod(pVtab); } return rc; } /* ** The xRelease() method. ** ** This is a no-op. */ static int fts3ReleaseMethod(sqlite3_vtab *pVtab, int iSavepoint){ TESTONLY( Fts3Table *p = (Fts3Table*)pVtab ); UNUSED_PARAMETER(iSavepoint); UNUSED_PARAMETER(pVtab); assert( p->inTransaction ); assert( p->mxSavepoint >= iSavepoint ); TESTONLY( p->mxSavepoint = iSavepoint-1 ); return SQLITE_OK; } /* ** The xRollbackTo() method. ** ** Discard the contents of the pending terms table. */ static int fts3RollbackToMethod(sqlite3_vtab *pVtab, int iSavepoint){ Fts3Table *p = (Fts3Table*)pVtab; UNUSED_PARAMETER(iSavepoint); assert( p->inTransaction ); TESTONLY( p->mxSavepoint = iSavepoint ); sqlite3Fts3PendingTermsClear(p); return SQLITE_OK; } /* ** Return true if zName is the extension on one of the shadow tables used ** by this module. */ static int fts3ShadowName(const char *zName){ static const char *azName[] = { "content", "docsize", "segdir", "segments", "stat", }; unsigned int i; for(i=0; ieType==FTSQUERY_PHRASE ){ int i; int nToken = pExpr->pPhrase->nToken; *pnToken += nToken; for(i=0; ipPhrase->aToken[i]; int rc = fts3TermSegReaderCursor(pCsr, pToken->z, pToken->n, pToken->isPrefix, &pToken->pSegcsr ); if( rc!=SQLITE_OK ){ *pRc = rc; return; } } assert( pExpr->pPhrase->iDoclistToken==0 ); pExpr->pPhrase->iDoclistToken = -1; }else{ *pnOr += (pExpr->eType==FTSQUERY_OR); fts3EvalAllocateReaders(pCsr, pExpr->pLeft, pnToken, pnOr, pRc); fts3EvalAllocateReaders(pCsr, pExpr->pRight, pnToken, pnOr, pRc); } } } /* ** Arguments pList/nList contain the doclist for token iToken of phrase p. ** It is merged into the main doclist stored in p->doclist.aAll/nAll. ** ** This function assumes that pList points to a buffer allocated using ** sqlite3_malloc(). This function takes responsibility for eventually ** freeing the buffer. ** ** SQLITE_OK is returned if successful, or SQLITE_NOMEM if an error occurs. */ static int fts3EvalPhraseMergeToken( Fts3Table *pTab, /* FTS Table pointer */ Fts3Phrase *p, /* Phrase to merge pList/nList into */ int iToken, /* Token pList/nList corresponds to */ char *pList, /* Pointer to doclist */ int nList /* Number of bytes in pList */ ){ int rc = SQLITE_OK; assert( iToken!=p->iDoclistToken ); if( pList==0 ){ sqlite3_free(p->doclist.aAll); p->doclist.aAll = 0; p->doclist.nAll = 0; } else if( p->iDoclistToken<0 ){ p->doclist.aAll = pList; p->doclist.nAll = nList; } else if( p->doclist.aAll==0 ){ sqlite3_free(pList); } else { char *pLeft; char *pRight; int nLeft; int nRight; int nDiff; if( p->iDoclistTokendoclist.aAll; nLeft = p->doclist.nAll; pRight = pList; nRight = nList; nDiff = iToken - p->iDoclistToken; }else{ pRight = p->doclist.aAll; nRight = p->doclist.nAll; pLeft = pList; nLeft = nList; nDiff = p->iDoclistToken - iToken; } rc = fts3DoclistPhraseMerge( pTab->bDescIdx, nDiff, pLeft, nLeft, &pRight, &nRight ); sqlite3_free(pLeft); p->doclist.aAll = pRight; p->doclist.nAll = nRight; } if( iToken>p->iDoclistToken ) p->iDoclistToken = iToken; return rc; } /* ** Load the doclist for phrase p into p->doclist.aAll/nAll. The loaded doclist ** does not take deferred tokens into account. ** ** SQLITE_OK is returned if no error occurs, otherwise an SQLite error code. */ static int fts3EvalPhraseLoad( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Phrase *p /* Phrase object */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int iToken; int rc = SQLITE_OK; for(iToken=0; rc==SQLITE_OK && iTokennToken; iToken++){ Fts3PhraseToken *pToken = &p->aToken[iToken]; assert( pToken->pDeferred==0 || pToken->pSegcsr==0 ); if( pToken->pSegcsr ){ int nThis = 0; char *pThis = 0; rc = fts3TermSelect(pTab, pToken, p->iColumn, &nThis, &pThis); if( rc==SQLITE_OK ){ rc = fts3EvalPhraseMergeToken(pTab, p, iToken, pThis, nThis); } } assert( pToken->pSegcsr==0 ); } return rc; } #ifndef SQLITE_DISABLE_FTS4_DEFERRED /* ** This function is called on each phrase after the position lists for ** any deferred tokens have been loaded into memory. It updates the phrases ** current position list to include only those positions that are really ** instances of the phrase (after considering deferred tokens). If this ** means that the phrase does not appear in the current row, doclist.pList ** and doclist.nList are both zeroed. ** ** SQLITE_OK is returned if no error occurs, otherwise an SQLite error code. */ static int fts3EvalDeferredPhrase(Fts3Cursor *pCsr, Fts3Phrase *pPhrase){ int iToken; /* Used to iterate through phrase tokens */ char *aPoslist = 0; /* Position list for deferred tokens */ int nPoslist = 0; /* Number of bytes in aPoslist */ int iPrev = -1; /* Token number of previous deferred token */ assert( pPhrase->doclist.bFreeList==0 ); for(iToken=0; iTokennToken; iToken++){ Fts3PhraseToken *pToken = &pPhrase->aToken[iToken]; Fts3DeferredToken *pDeferred = pToken->pDeferred; if( pDeferred ){ char *pList; int nList; int rc = sqlite3Fts3DeferredTokenList(pDeferred, &pList, &nList); if( rc!=SQLITE_OK ) return rc; if( pList==0 ){ sqlite3_free(aPoslist); pPhrase->doclist.pList = 0; pPhrase->doclist.nList = 0; return SQLITE_OK; }else if( aPoslist==0 ){ aPoslist = pList; nPoslist = nList; }else{ char *aOut = pList; char *p1 = aPoslist; char *p2 = aOut; assert( iPrev>=0 ); fts3PoslistPhraseMerge(&aOut, iToken-iPrev, 0, 1, &p1, &p2); sqlite3_free(aPoslist); aPoslist = pList; nPoslist = (int)(aOut - aPoslist); if( nPoslist==0 ){ sqlite3_free(aPoslist); pPhrase->doclist.pList = 0; pPhrase->doclist.nList = 0; return SQLITE_OK; } } iPrev = iToken; } } if( iPrev>=0 ){ int nMaxUndeferred = pPhrase->iDoclistToken; if( nMaxUndeferred<0 ){ pPhrase->doclist.pList = aPoslist; pPhrase->doclist.nList = nPoslist; pPhrase->doclist.iDocid = pCsr->iPrevId; pPhrase->doclist.bFreeList = 1; }else{ int nDistance; char *p1; char *p2; char *aOut; if( nMaxUndeferred>iPrev ){ p1 = aPoslist; p2 = pPhrase->doclist.pList; nDistance = nMaxUndeferred - iPrev; }else{ p1 = pPhrase->doclist.pList; p2 = aPoslist; nDistance = iPrev - nMaxUndeferred; } aOut = (char *)sqlite3_malloc(nPoslist+8); if( !aOut ){ sqlite3_free(aPoslist); return SQLITE_NOMEM; } pPhrase->doclist.pList = aOut; if( fts3PoslistPhraseMerge(&aOut, nDistance, 0, 1, &p1, &p2) ){ pPhrase->doclist.bFreeList = 1; pPhrase->doclist.nList = (int)(aOut - pPhrase->doclist.pList); }else{ sqlite3_free(aOut); pPhrase->doclist.pList = 0; pPhrase->doclist.nList = 0; } sqlite3_free(aPoslist); } } return SQLITE_OK; } #endif /* SQLITE_DISABLE_FTS4_DEFERRED */ /* ** Maximum number of tokens a phrase may have to be considered for the ** incremental doclists strategy. */ #define MAX_INCR_PHRASE_TOKENS 4 /* ** This function is called for each Fts3Phrase in a full-text query ** expression to initialize the mechanism for returning rows. Once this ** function has been called successfully on an Fts3Phrase, it may be ** used with fts3EvalPhraseNext() to iterate through the matching docids. ** ** If parameter bOptOk is true, then the phrase may (or may not) use the ** incremental loading strategy. Otherwise, the entire doclist is loaded into ** memory within this call. ** ** SQLITE_OK is returned if no error occurs, otherwise an SQLite error code. */ static int fts3EvalPhraseStart(Fts3Cursor *pCsr, int bOptOk, Fts3Phrase *p){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc = SQLITE_OK; /* Error code */ int i; /* Determine if doclists may be loaded from disk incrementally. This is ** possible if the bOptOk argument is true, the FTS doclists will be ** scanned in forward order, and the phrase consists of ** MAX_INCR_PHRASE_TOKENS or fewer tokens, none of which are are "^first" ** tokens or prefix tokens that cannot use a prefix-index. */ int bHaveIncr = 0; int bIncrOk = (bOptOk && pCsr->bDesc==pTab->bDescIdx && p->nToken<=MAX_INCR_PHRASE_TOKENS && p->nToken>0 #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) && pTab->bNoIncrDoclist==0 #endif ); for(i=0; bIncrOk==1 && inToken; i++){ Fts3PhraseToken *pToken = &p->aToken[i]; if( pToken->bFirst || (pToken->pSegcsr!=0 && !pToken->pSegcsr->bLookup) ){ bIncrOk = 0; } if( pToken->pSegcsr ) bHaveIncr = 1; } if( bIncrOk && bHaveIncr ){ /* Use the incremental approach. */ int iCol = (p->iColumn >= pTab->nColumn ? -1 : p->iColumn); for(i=0; rc==SQLITE_OK && inToken; i++){ Fts3PhraseToken *pToken = &p->aToken[i]; Fts3MultiSegReader *pSegcsr = pToken->pSegcsr; if( pSegcsr ){ rc = sqlite3Fts3MsrIncrStart(pTab, pSegcsr, iCol, pToken->z, pToken->n); } } p->bIncr = 1; }else{ /* Load the full doclist for the phrase into memory. */ rc = fts3EvalPhraseLoad(pCsr, p); p->bIncr = 0; } assert( rc!=SQLITE_OK || p->nToken<1 || p->aToken[0].pSegcsr==0 || p->bIncr ); return rc; } /* ** This function is used to iterate backwards (from the end to start) ** through doclists. It is used by this module to iterate through phrase ** doclists in reverse and by the fts3_write.c module to iterate through ** pending-terms lists when writing to databases with "order=desc". ** ** The doclist may be sorted in ascending (parameter bDescIdx==0) or ** descending (parameter bDescIdx==1) order of docid. Regardless, this ** function iterates from the end of the doclist to the beginning. */ SQLITE_PRIVATE void sqlite3Fts3DoclistPrev( int bDescIdx, /* True if the doclist is desc */ char *aDoclist, /* Pointer to entire doclist */ int nDoclist, /* Length of aDoclist in bytes */ char **ppIter, /* IN/OUT: Iterator pointer */ sqlite3_int64 *piDocid, /* IN/OUT: Docid pointer */ int *pnList, /* OUT: List length pointer */ u8 *pbEof /* OUT: End-of-file flag */ ){ char *p = *ppIter; assert( nDoclist>0 ); assert( *pbEof==0 ); assert( p || *piDocid==0 ); assert( !p || (p>aDoclist && p<&aDoclist[nDoclist]) ); if( p==0 ){ sqlite3_int64 iDocid = 0; char *pNext = 0; char *pDocid = aDoclist; char *pEnd = &aDoclist[nDoclist]; int iMul = 1; while( pDocid0 ); assert( *pbEof==0 ); assert_fts3_nc( p || *piDocid==0 ); assert( !p || (p>=aDoclist && p<=&aDoclist[nDoclist]) ); if( p==0 ){ p = aDoclist; p += sqlite3Fts3GetVarint(p, piDocid); }else{ fts3PoslistCopy(0, &p); while( p<&aDoclist[nDoclist] && *p==0 ) p++; if( p>=&aDoclist[nDoclist] ){ *pbEof = 1; }else{ sqlite3_int64 iVar; p += sqlite3Fts3GetVarint(p, &iVar); *piDocid += ((bDescIdx ? -1 : 1) * iVar); } } *ppIter = p; } /* ** Advance the iterator pDL to the next entry in pDL->aAll/nAll. Set *pbEof ** to true if EOF is reached. */ static void fts3EvalDlPhraseNext( Fts3Table *pTab, Fts3Doclist *pDL, u8 *pbEof ){ char *pIter; /* Used to iterate through aAll */ char *pEnd; /* 1 byte past end of aAll */ if( pDL->pNextDocid ){ pIter = pDL->pNextDocid; assert( pDL->aAll!=0 || pIter==0 ); }else{ pIter = pDL->aAll; } if( pIter==0 || pIter>=(pEnd = pDL->aAll + pDL->nAll) ){ /* We have already reached the end of this doclist. EOF. */ *pbEof = 1; }else{ sqlite3_int64 iDelta; pIter += sqlite3Fts3GetVarint(pIter, &iDelta); if( pTab->bDescIdx==0 || pDL->pNextDocid==0 ){ pDL->iDocid += iDelta; }else{ pDL->iDocid -= iDelta; } pDL->pList = pIter; fts3PoslistCopy(0, &pIter); pDL->nList = (int)(pIter - pDL->pList); /* pIter now points just past the 0x00 that terminates the position- ** list for document pDL->iDocid. However, if this position-list was ** edited in place by fts3EvalNearTrim(), then pIter may not actually ** point to the start of the next docid value. The following line deals ** with this case by advancing pIter past the zero-padding added by ** fts3EvalNearTrim(). */ while( pIterpNextDocid = pIter; assert( pIter>=&pDL->aAll[pDL->nAll] || *pIter ); *pbEof = 0; } } /* ** Helper type used by fts3EvalIncrPhraseNext() and incrPhraseTokenNext(). */ typedef struct TokenDoclist TokenDoclist; struct TokenDoclist { int bIgnore; sqlite3_int64 iDocid; char *pList; int nList; }; /* ** Token pToken is an incrementally loaded token that is part of a ** multi-token phrase. Advance it to the next matching document in the ** database and populate output variable *p with the details of the new ** entry. Or, if the iterator has reached EOF, set *pbEof to true. ** ** If an error occurs, return an SQLite error code. Otherwise, return ** SQLITE_OK. */ static int incrPhraseTokenNext( Fts3Table *pTab, /* Virtual table handle */ Fts3Phrase *pPhrase, /* Phrase to advance token of */ int iToken, /* Specific token to advance */ TokenDoclist *p, /* OUT: Docid and doclist for new entry */ u8 *pbEof /* OUT: True if iterator is at EOF */ ){ int rc = SQLITE_OK; if( pPhrase->iDoclistToken==iToken ){ assert( p->bIgnore==0 ); assert( pPhrase->aToken[iToken].pSegcsr==0 ); fts3EvalDlPhraseNext(pTab, &pPhrase->doclist, pbEof); p->pList = pPhrase->doclist.pList; p->nList = pPhrase->doclist.nList; p->iDocid = pPhrase->doclist.iDocid; }else{ Fts3PhraseToken *pToken = &pPhrase->aToken[iToken]; assert( pToken->pDeferred==0 ); assert( pToken->pSegcsr || pPhrase->iDoclistToken>=0 ); if( pToken->pSegcsr ){ assert( p->bIgnore==0 ); rc = sqlite3Fts3MsrIncrNext( pTab, pToken->pSegcsr, &p->iDocid, &p->pList, &p->nList ); if( p->pList==0 ) *pbEof = 1; }else{ p->bIgnore = 1; } } return rc; } /* ** The phrase iterator passed as the second argument: ** ** * features at least one token that uses an incremental doclist, and ** ** * does not contain any deferred tokens. ** ** Advance it to the next matching documnent in the database and populate ** the Fts3Doclist.pList and nList fields. ** ** If there is no "next" entry and no error occurs, then *pbEof is set to ** 1 before returning. Otherwise, if no error occurs and the iterator is ** successfully advanced, *pbEof is set to 0. ** ** If an error occurs, return an SQLite error code. Otherwise, return ** SQLITE_OK. */ static int fts3EvalIncrPhraseNext( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Phrase *p, /* Phrase object to advance to next docid */ u8 *pbEof /* OUT: Set to 1 if EOF */ ){ int rc = SQLITE_OK; Fts3Doclist *pDL = &p->doclist; Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; u8 bEof = 0; /* This is only called if it is guaranteed that the phrase has at least ** one incremental token. In which case the bIncr flag is set. */ assert( p->bIncr==1 ); if( p->nToken==1 ){ rc = sqlite3Fts3MsrIncrNext(pTab, p->aToken[0].pSegcsr, &pDL->iDocid, &pDL->pList, &pDL->nList ); if( pDL->pList==0 ) bEof = 1; }else{ int bDescDoclist = pCsr->bDesc; struct TokenDoclist a[MAX_INCR_PHRASE_TOKENS]; memset(a, 0, sizeof(a)); assert( p->nToken<=MAX_INCR_PHRASE_TOKENS ); assert( p->iDoclistTokennToken && bEof==0; i++){ rc = incrPhraseTokenNext(pTab, p, i, &a[i], &bEof); if( a[i].bIgnore==0 && (bMaxSet==0 || DOCID_CMP(iMax, a[i].iDocid)<0) ){ iMax = a[i].iDocid; bMaxSet = 1; } } assert( rc!=SQLITE_OK || (p->nToken>=1 && a[p->nToken-1].bIgnore==0) ); assert( rc!=SQLITE_OK || bMaxSet ); /* Keep advancing iterators until they all point to the same document */ for(i=0; inToken; i++){ while( rc==SQLITE_OK && bEof==0 && a[i].bIgnore==0 && DOCID_CMP(a[i].iDocid, iMax)<0 ){ rc = incrPhraseTokenNext(pTab, p, i, &a[i], &bEof); if( DOCID_CMP(a[i].iDocid, iMax)>0 ){ iMax = a[i].iDocid; i = 0; } } } /* Check if the current entries really are a phrase match */ if( bEof==0 ){ int nList = 0; int nByte = a[p->nToken-1].nList; char *aDoclist = sqlite3_malloc(nByte+FTS3_BUFFER_PADDING); if( !aDoclist ) return SQLITE_NOMEM; memcpy(aDoclist, a[p->nToken-1].pList, nByte+1); memset(&aDoclist[nByte], 0, FTS3_BUFFER_PADDING); for(i=0; i<(p->nToken-1); i++){ if( a[i].bIgnore==0 ){ char *pL = a[i].pList; char *pR = aDoclist; char *pOut = aDoclist; int nDist = p->nToken-1-i; int res = fts3PoslistPhraseMerge(&pOut, nDist, 0, 1, &pL, &pR); if( res==0 ) break; nList = (int)(pOut - aDoclist); } } if( i==(p->nToken-1) ){ pDL->iDocid = iMax; pDL->pList = aDoclist; pDL->nList = nList; pDL->bFreeList = 1; break; } sqlite3_free(aDoclist); } } } *pbEof = bEof; return rc; } /* ** Attempt to move the phrase iterator to point to the next matching docid. ** If an error occurs, return an SQLite error code. Otherwise, return ** SQLITE_OK. ** ** If there is no "next" entry and no error occurs, then *pbEof is set to ** 1 before returning. Otherwise, if no error occurs and the iterator is ** successfully advanced, *pbEof is set to 0. */ static int fts3EvalPhraseNext( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Phrase *p, /* Phrase object to advance to next docid */ u8 *pbEof /* OUT: Set to 1 if EOF */ ){ int rc = SQLITE_OK; Fts3Doclist *pDL = &p->doclist; Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; if( p->bIncr ){ rc = fts3EvalIncrPhraseNext(pCsr, p, pbEof); }else if( pCsr->bDesc!=pTab->bDescIdx && pDL->nAll ){ sqlite3Fts3DoclistPrev(pTab->bDescIdx, pDL->aAll, pDL->nAll, &pDL->pNextDocid, &pDL->iDocid, &pDL->nList, pbEof ); pDL->pList = pDL->pNextDocid; }else{ fts3EvalDlPhraseNext(pTab, pDL, pbEof); } return rc; } /* ** ** If *pRc is not SQLITE_OK when this function is called, it is a no-op. ** Otherwise, fts3EvalPhraseStart() is called on all phrases within the ** expression. Also the Fts3Expr.bDeferred variable is set to true for any ** expressions for which all descendent tokens are deferred. ** ** If parameter bOptOk is zero, then it is guaranteed that the ** Fts3Phrase.doclist.aAll/nAll variables contain the entire doclist for ** each phrase in the expression (subject to deferred token processing). ** Or, if bOptOk is non-zero, then one or more tokens within the expression ** may be loaded incrementally, meaning doclist.aAll/nAll is not available. ** ** If an error occurs within this function, *pRc is set to an SQLite error ** code before returning. */ static void fts3EvalStartReaders( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Expr *pExpr, /* Expression to initialize phrases in */ int *pRc /* IN/OUT: Error code */ ){ if( pExpr && SQLITE_OK==*pRc ){ if( pExpr->eType==FTSQUERY_PHRASE ){ int nToken = pExpr->pPhrase->nToken; if( nToken ){ int i; for(i=0; ipPhrase->aToken[i].pDeferred==0 ) break; } pExpr->bDeferred = (i==nToken); } *pRc = fts3EvalPhraseStart(pCsr, 1, pExpr->pPhrase); }else{ fts3EvalStartReaders(pCsr, pExpr->pLeft, pRc); fts3EvalStartReaders(pCsr, pExpr->pRight, pRc); pExpr->bDeferred = (pExpr->pLeft->bDeferred && pExpr->pRight->bDeferred); } } } /* ** An array of the following structures is assembled as part of the process ** of selecting tokens to defer before the query starts executing (as part ** of the xFilter() method). There is one element in the array for each ** token in the FTS expression. ** ** Tokens are divided into AND/NEAR clusters. All tokens in a cluster belong ** to phrases that are connected only by AND and NEAR operators (not OR or ** NOT). When determining tokens to defer, each AND/NEAR cluster is considered ** separately. The root of a tokens AND/NEAR cluster is stored in ** Fts3TokenAndCost.pRoot. */ typedef struct Fts3TokenAndCost Fts3TokenAndCost; struct Fts3TokenAndCost { Fts3Phrase *pPhrase; /* The phrase the token belongs to */ int iToken; /* Position of token in phrase */ Fts3PhraseToken *pToken; /* The token itself */ Fts3Expr *pRoot; /* Root of NEAR/AND cluster */ int nOvfl; /* Number of overflow pages to load doclist */ int iCol; /* The column the token must match */ }; /* ** This function is used to populate an allocated Fts3TokenAndCost array. ** ** If *pRc is not SQLITE_OK when this function is called, it is a no-op. ** Otherwise, if an error occurs during execution, *pRc is set to an ** SQLite error code. */ static void fts3EvalTokenCosts( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Expr *pRoot, /* Root of current AND/NEAR cluster */ Fts3Expr *pExpr, /* Expression to consider */ Fts3TokenAndCost **ppTC, /* Write new entries to *(*ppTC)++ */ Fts3Expr ***ppOr, /* Write new OR root to *(*ppOr)++ */ int *pRc /* IN/OUT: Error code */ ){ if( *pRc==SQLITE_OK ){ if( pExpr->eType==FTSQUERY_PHRASE ){ Fts3Phrase *pPhrase = pExpr->pPhrase; int i; for(i=0; *pRc==SQLITE_OK && inToken; i++){ Fts3TokenAndCost *pTC = (*ppTC)++; pTC->pPhrase = pPhrase; pTC->iToken = i; pTC->pRoot = pRoot; pTC->pToken = &pPhrase->aToken[i]; pTC->iCol = pPhrase->iColumn; *pRc = sqlite3Fts3MsrOvfl(pCsr, pTC->pToken->pSegcsr, &pTC->nOvfl); } }else if( pExpr->eType!=FTSQUERY_NOT ){ assert( pExpr->eType==FTSQUERY_OR || pExpr->eType==FTSQUERY_AND || pExpr->eType==FTSQUERY_NEAR ); assert( pExpr->pLeft && pExpr->pRight ); if( pExpr->eType==FTSQUERY_OR ){ pRoot = pExpr->pLeft; **ppOr = pRoot; (*ppOr)++; } fts3EvalTokenCosts(pCsr, pRoot, pExpr->pLeft, ppTC, ppOr, pRc); if( pExpr->eType==FTSQUERY_OR ){ pRoot = pExpr->pRight; **ppOr = pRoot; (*ppOr)++; } fts3EvalTokenCosts(pCsr, pRoot, pExpr->pRight, ppTC, ppOr, pRc); } } } /* ** Determine the average document (row) size in pages. If successful, ** write this value to *pnPage and return SQLITE_OK. Otherwise, return ** an SQLite error code. ** ** The average document size in pages is calculated by first calculating ** determining the average size in bytes, B. If B is less than the amount ** of data that will fit on a single leaf page of an intkey table in ** this database, then the average docsize is 1. Otherwise, it is 1 plus ** the number of overflow pages consumed by a record B bytes in size. */ static int fts3EvalAverageDocsize(Fts3Cursor *pCsr, int *pnPage){ int rc = SQLITE_OK; if( pCsr->nRowAvg==0 ){ /* The average document size, which is required to calculate the cost ** of each doclist, has not yet been determined. Read the required ** data from the %_stat table to calculate it. ** ** Entry 0 of the %_stat table is a blob containing (nCol+1) FTS3 ** varints, where nCol is the number of columns in the FTS3 table. ** The first varint is the number of documents currently stored in ** the table. The following nCol varints contain the total amount of ** data stored in all rows of each column of the table, from left ** to right. */ Fts3Table *p = (Fts3Table*)pCsr->base.pVtab; sqlite3_stmt *pStmt; sqlite3_int64 nDoc = 0; sqlite3_int64 nByte = 0; const char *pEnd; const char *a; rc = sqlite3Fts3SelectDoctotal(p, &pStmt); if( rc!=SQLITE_OK ) return rc; a = sqlite3_column_blob(pStmt, 0); testcase( a==0 ); /* If %_stat.value set to X'' */ if( a ){ pEnd = &a[sqlite3_column_bytes(pStmt, 0)]; a += sqlite3Fts3GetVarintBounded(a, pEnd, &nDoc); while( anDoc = nDoc; pCsr->nRowAvg = (int)(((nByte / nDoc) + p->nPgsz) / p->nPgsz); assert( pCsr->nRowAvg>0 ); rc = sqlite3_reset(pStmt); } *pnPage = pCsr->nRowAvg; return rc; } /* ** This function is called to select the tokens (if any) that will be ** deferred. The array aTC[] has already been populated when this is ** called. ** ** This function is called once for each AND/NEAR cluster in the ** expression. Each invocation determines which tokens to defer within ** the cluster with root node pRoot. See comments above the definition ** of struct Fts3TokenAndCost for more details. ** ** If no error occurs, SQLITE_OK is returned and sqlite3Fts3DeferToken() ** called on each token to defer. Otherwise, an SQLite error code is ** returned. */ static int fts3EvalSelectDeferred( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Expr *pRoot, /* Consider tokens with this root node */ Fts3TokenAndCost *aTC, /* Array of expression tokens and costs */ int nTC /* Number of entries in aTC[] */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int nDocSize = 0; /* Number of pages per doc loaded */ int rc = SQLITE_OK; /* Return code */ int ii; /* Iterator variable for various purposes */ int nOvfl = 0; /* Total overflow pages used by doclists */ int nToken = 0; /* Total number of tokens in cluster */ int nMinEst = 0; /* The minimum count for any phrase so far. */ int nLoad4 = 1; /* (Phrases that will be loaded)^4. */ /* Tokens are never deferred for FTS tables created using the content=xxx ** option. The reason being that it is not guaranteed that the content ** table actually contains the same data as the index. To prevent this from ** causing any problems, the deferred token optimization is completely ** disabled for content=xxx tables. */ if( pTab->zContentTbl ){ return SQLITE_OK; } /* Count the tokens in this AND/NEAR cluster. If none of the doclists ** associated with the tokens spill onto overflow pages, or if there is ** only 1 token, exit early. No tokens to defer in this case. */ for(ii=0; ii0 ); /* Iterate through all tokens in this AND/NEAR cluster, in ascending order ** of the number of overflow pages that will be loaded by the pager layer ** to retrieve the entire doclist for the token from the full-text index. ** Load the doclists for tokens that are either: ** ** a. The cheapest token in the entire query (i.e. the one visited by the ** first iteration of this loop), or ** ** b. Part of a multi-token phrase. ** ** After each token doclist is loaded, merge it with the others from the ** same phrase and count the number of documents that the merged doclist ** contains. Set variable "nMinEst" to the smallest number of documents in ** any phrase doclist for which 1 or more token doclists have been loaded. ** Let nOther be the number of other phrases for which it is certain that ** one or more tokens will not be deferred. ** ** Then, for each token, defer it if loading the doclist would result in ** loading N or more overflow pages into memory, where N is computed as: ** ** (nMinEst + 4^nOther - 1) / (4^nOther) */ for(ii=0; iinOvfl) ){ pTC = &aTC[iTC]; } } assert( pTC ); if( ii && pTC->nOvfl>=((nMinEst+(nLoad4/4)-1)/(nLoad4/4))*nDocSize ){ /* The number of overflow pages to load for this (and therefore all ** subsequent) tokens is greater than the estimated number of pages ** that will be loaded if all subsequent tokens are deferred. */ Fts3PhraseToken *pToken = pTC->pToken; rc = sqlite3Fts3DeferToken(pCsr, pToken, pTC->iCol); fts3SegReaderCursorFree(pToken->pSegcsr); pToken->pSegcsr = 0; }else{ /* Set nLoad4 to the value of (4^nOther) for the next iteration of the ** for-loop. Except, limit the value to 2^24 to prevent it from ** overflowing the 32-bit integer it is stored in. */ if( ii<12 ) nLoad4 = nLoad4*4; if( ii==0 || (pTC->pPhrase->nToken>1 && ii!=nToken-1) ){ /* Either this is the cheapest token in the entire query, or it is ** part of a multi-token phrase. Either way, the entire doclist will ** (eventually) be loaded into memory. It may as well be now. */ Fts3PhraseToken *pToken = pTC->pToken; int nList = 0; char *pList = 0; rc = fts3TermSelect(pTab, pToken, pTC->iCol, &nList, &pList); assert( rc==SQLITE_OK || pList==0 ); if( rc==SQLITE_OK ){ rc = fts3EvalPhraseMergeToken( pTab, pTC->pPhrase, pTC->iToken,pList,nList ); } if( rc==SQLITE_OK ){ int nCount; nCount = fts3DoclistCountDocids( pTC->pPhrase->doclist.aAll, pTC->pPhrase->doclist.nAll ); if( ii==0 || nCountpToken = 0; } return rc; } /* ** This function is called from within the xFilter method. It initializes ** the full-text query currently stored in pCsr->pExpr. To iterate through ** the results of a query, the caller does: ** ** fts3EvalStart(pCsr); ** while( 1 ){ ** fts3EvalNext(pCsr); ** if( pCsr->bEof ) break; ** ... return row pCsr->iPrevId to the caller ... ** } */ static int fts3EvalStart(Fts3Cursor *pCsr){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc = SQLITE_OK; int nToken = 0; int nOr = 0; /* Allocate a MultiSegReader for each token in the expression. */ fts3EvalAllocateReaders(pCsr, pCsr->pExpr, &nToken, &nOr, &rc); /* Determine which, if any, tokens in the expression should be deferred. */ #ifndef SQLITE_DISABLE_FTS4_DEFERRED if( rc==SQLITE_OK && nToken>1 && pTab->bFts4 ){ Fts3TokenAndCost *aTC; Fts3Expr **apOr; aTC = (Fts3TokenAndCost *)sqlite3_malloc64( sizeof(Fts3TokenAndCost) * nToken + sizeof(Fts3Expr *) * nOr * 2 ); apOr = (Fts3Expr **)&aTC[nToken]; if( !aTC ){ rc = SQLITE_NOMEM; }else{ int ii; Fts3TokenAndCost *pTC = aTC; Fts3Expr **ppOr = apOr; fts3EvalTokenCosts(pCsr, 0, pCsr->pExpr, &pTC, &ppOr, &rc); nToken = (int)(pTC-aTC); nOr = (int)(ppOr-apOr); if( rc==SQLITE_OK ){ rc = fts3EvalSelectDeferred(pCsr, 0, aTC, nToken); for(ii=0; rc==SQLITE_OK && iipExpr, &rc); return rc; } /* ** Invalidate the current position list for phrase pPhrase. */ static void fts3EvalInvalidatePoslist(Fts3Phrase *pPhrase){ if( pPhrase->doclist.bFreeList ){ sqlite3_free(pPhrase->doclist.pList); } pPhrase->doclist.pList = 0; pPhrase->doclist.nList = 0; pPhrase->doclist.bFreeList = 0; } /* ** This function is called to edit the position list associated with ** the phrase object passed as the fifth argument according to a NEAR ** condition. For example: ** ** abc NEAR/5 "def ghi" ** ** Parameter nNear is passed the NEAR distance of the expression (5 in ** the example above). When this function is called, *paPoslist points to ** the position list, and *pnToken is the number of phrase tokens in the ** phrase on the other side of the NEAR operator to pPhrase. For example, ** if pPhrase refers to the "def ghi" phrase, then *paPoslist points to ** the position list associated with phrase "abc". ** ** All positions in the pPhrase position list that are not sufficiently ** close to a position in the *paPoslist position list are removed. If this ** leaves 0 positions, zero is returned. Otherwise, non-zero. ** ** Before returning, *paPoslist is set to point to the position lsit ** associated with pPhrase. And *pnToken is set to the number of tokens in ** pPhrase. */ static int fts3EvalNearTrim( int nNear, /* NEAR distance. As in "NEAR/nNear". */ char *aTmp, /* Temporary space to use */ char **paPoslist, /* IN/OUT: Position list */ int *pnToken, /* IN/OUT: Tokens in phrase of *paPoslist */ Fts3Phrase *pPhrase /* The phrase object to trim the doclist of */ ){ int nParam1 = nNear + pPhrase->nToken; int nParam2 = nNear + *pnToken; int nNew; char *p2; char *pOut; int res; assert( pPhrase->doclist.pList ); p2 = pOut = pPhrase->doclist.pList; res = fts3PoslistNearMerge( &pOut, aTmp, nParam1, nParam2, paPoslist, &p2 ); if( res ){ nNew = (int)(pOut - pPhrase->doclist.pList) - 1; if( nNew>=0 ){ assert( pPhrase->doclist.pList[nNew]=='\0' ); assert( nNew<=pPhrase->doclist.nList && nNew>0 ); memset(&pPhrase->doclist.pList[nNew], 0, pPhrase->doclist.nList - nNew); pPhrase->doclist.nList = nNew; } *paPoslist = pPhrase->doclist.pList; *pnToken = pPhrase->nToken; } return res; } /* ** This function is a no-op if *pRc is other than SQLITE_OK when it is called. ** Otherwise, it advances the expression passed as the second argument to ** point to the next matching row in the database. Expressions iterate through ** matching rows in docid order. Ascending order if Fts3Cursor.bDesc is zero, ** or descending if it is non-zero. ** ** If an error occurs, *pRc is set to an SQLite error code. Otherwise, if ** successful, the following variables in pExpr are set: ** ** Fts3Expr.bEof (non-zero if EOF - there is no next row) ** Fts3Expr.iDocid (valid if bEof==0. The docid of the next row) ** ** If the expression is of type FTSQUERY_PHRASE, and the expression is not ** at EOF, then the following variables are populated with the position list ** for the phrase for the visited row: ** ** FTs3Expr.pPhrase->doclist.nList (length of pList in bytes) ** FTs3Expr.pPhrase->doclist.pList (pointer to position list) ** ** It says above that this function advances the expression to the next ** matching row. This is usually true, but there are the following exceptions: ** ** 1. Deferred tokens are not taken into account. If a phrase consists ** entirely of deferred tokens, it is assumed to match every row in ** the db. In this case the position-list is not populated at all. ** ** Or, if a phrase contains one or more deferred tokens and one or ** more non-deferred tokens, then the expression is advanced to the ** next possible match, considering only non-deferred tokens. In other ** words, if the phrase is "A B C", and "B" is deferred, the expression ** is advanced to the next row that contains an instance of "A * C", ** where "*" may match any single token. The position list in this case ** is populated as for "A * C" before returning. ** ** 2. NEAR is treated as AND. If the expression is "x NEAR y", it is ** advanced to point to the next row that matches "x AND y". ** ** See sqlite3Fts3EvalTestDeferred() for details on testing if a row is ** really a match, taking into account deferred tokens and NEAR operators. */ static void fts3EvalNextRow( Fts3Cursor *pCsr, /* FTS Cursor handle */ Fts3Expr *pExpr, /* Expr. to advance to next matching row */ int *pRc /* IN/OUT: Error code */ ){ if( *pRc==SQLITE_OK ){ int bDescDoclist = pCsr->bDesc; /* Used by DOCID_CMP() macro */ assert( pExpr->bEof==0 ); pExpr->bStart = 1; switch( pExpr->eType ){ case FTSQUERY_NEAR: case FTSQUERY_AND: { Fts3Expr *pLeft = pExpr->pLeft; Fts3Expr *pRight = pExpr->pRight; assert( !pLeft->bDeferred || !pRight->bDeferred ); if( pLeft->bDeferred ){ /* LHS is entirely deferred. So we assume it matches every row. ** Advance the RHS iterator to find the next row visited. */ fts3EvalNextRow(pCsr, pRight, pRc); pExpr->iDocid = pRight->iDocid; pExpr->bEof = pRight->bEof; }else if( pRight->bDeferred ){ /* RHS is entirely deferred. So we assume it matches every row. ** Advance the LHS iterator to find the next row visited. */ fts3EvalNextRow(pCsr, pLeft, pRc); pExpr->iDocid = pLeft->iDocid; pExpr->bEof = pLeft->bEof; }else{ /* Neither the RHS or LHS are deferred. */ fts3EvalNextRow(pCsr, pLeft, pRc); fts3EvalNextRow(pCsr, pRight, pRc); while( !pLeft->bEof && !pRight->bEof && *pRc==SQLITE_OK ){ sqlite3_int64 iDiff = DOCID_CMP(pLeft->iDocid, pRight->iDocid); if( iDiff==0 ) break; if( iDiff<0 ){ fts3EvalNextRow(pCsr, pLeft, pRc); }else{ fts3EvalNextRow(pCsr, pRight, pRc); } } pExpr->iDocid = pLeft->iDocid; pExpr->bEof = (pLeft->bEof || pRight->bEof); if( pExpr->eType==FTSQUERY_NEAR && pExpr->bEof ){ assert( pRight->eType==FTSQUERY_PHRASE ); if( pRight->pPhrase->doclist.aAll ){ Fts3Doclist *pDl = &pRight->pPhrase->doclist; while( *pRc==SQLITE_OK && pRight->bEof==0 ){ memset(pDl->pList, 0, pDl->nList); fts3EvalNextRow(pCsr, pRight, pRc); } } if( pLeft->pPhrase && pLeft->pPhrase->doclist.aAll ){ Fts3Doclist *pDl = &pLeft->pPhrase->doclist; while( *pRc==SQLITE_OK && pLeft->bEof==0 ){ memset(pDl->pList, 0, pDl->nList); fts3EvalNextRow(pCsr, pLeft, pRc); } } pRight->bEof = pLeft->bEof = 1; } } break; } case FTSQUERY_OR: { Fts3Expr *pLeft = pExpr->pLeft; Fts3Expr *pRight = pExpr->pRight; sqlite3_int64 iCmp = DOCID_CMP(pLeft->iDocid, pRight->iDocid); assert( pLeft->bStart || pLeft->iDocid==pRight->iDocid ); assert( pRight->bStart || pLeft->iDocid==pRight->iDocid ); if( pRight->bEof || (pLeft->bEof==0 && iCmp<0) ){ fts3EvalNextRow(pCsr, pLeft, pRc); }else if( pLeft->bEof || iCmp>0 ){ fts3EvalNextRow(pCsr, pRight, pRc); }else{ fts3EvalNextRow(pCsr, pLeft, pRc); fts3EvalNextRow(pCsr, pRight, pRc); } pExpr->bEof = (pLeft->bEof && pRight->bEof); iCmp = DOCID_CMP(pLeft->iDocid, pRight->iDocid); if( pRight->bEof || (pLeft->bEof==0 && iCmp<0) ){ pExpr->iDocid = pLeft->iDocid; }else{ pExpr->iDocid = pRight->iDocid; } break; } case FTSQUERY_NOT: { Fts3Expr *pLeft = pExpr->pLeft; Fts3Expr *pRight = pExpr->pRight; if( pRight->bStart==0 ){ fts3EvalNextRow(pCsr, pRight, pRc); assert( *pRc!=SQLITE_OK || pRight->bStart ); } fts3EvalNextRow(pCsr, pLeft, pRc); if( pLeft->bEof==0 ){ while( !*pRc && !pRight->bEof && DOCID_CMP(pLeft->iDocid, pRight->iDocid)>0 ){ fts3EvalNextRow(pCsr, pRight, pRc); } } pExpr->iDocid = pLeft->iDocid; pExpr->bEof = pLeft->bEof; break; } default: { Fts3Phrase *pPhrase = pExpr->pPhrase; fts3EvalInvalidatePoslist(pPhrase); *pRc = fts3EvalPhraseNext(pCsr, pPhrase, &pExpr->bEof); pExpr->iDocid = pPhrase->doclist.iDocid; break; } } } } /* ** If *pRc is not SQLITE_OK, or if pExpr is not the root node of a NEAR ** cluster, then this function returns 1 immediately. ** ** Otherwise, it checks if the current row really does match the NEAR ** expression, using the data currently stored in the position lists ** (Fts3Expr->pPhrase.doclist.pList/nList) for each phrase in the expression. ** ** If the current row is a match, the position list associated with each ** phrase in the NEAR expression is edited in place to contain only those ** phrase instances sufficiently close to their peers to satisfy all NEAR ** constraints. In this case it returns 1. If the NEAR expression does not ** match the current row, 0 is returned. The position lists may or may not ** be edited if 0 is returned. */ static int fts3EvalNearTest(Fts3Expr *pExpr, int *pRc){ int res = 1; /* The following block runs if pExpr is the root of a NEAR query. ** For example, the query: ** ** "w" NEAR "x" NEAR "y" NEAR "z" ** ** which is represented in tree form as: ** ** | ** +--NEAR--+ <-- root of NEAR query ** | | ** +--NEAR--+ "z" ** | | ** +--NEAR--+ "y" ** | | ** "w" "x" ** ** The right-hand child of a NEAR node is always a phrase. The ** left-hand child may be either a phrase or a NEAR node. There are ** no exceptions to this - it's the way the parser in fts3_expr.c works. */ if( *pRc==SQLITE_OK && pExpr->eType==FTSQUERY_NEAR && (pExpr->pParent==0 || pExpr->pParent->eType!=FTSQUERY_NEAR) ){ Fts3Expr *p; sqlite3_int64 nTmp = 0; /* Bytes of temp space */ char *aTmp; /* Temp space for PoslistNearMerge() */ /* Allocate temporary working space. */ for(p=pExpr; p->pLeft; p=p->pLeft){ assert( p->pRight->pPhrase->doclist.nList>0 ); nTmp += p->pRight->pPhrase->doclist.nList; } nTmp += p->pPhrase->doclist.nList; aTmp = sqlite3_malloc64(nTmp*2); if( !aTmp ){ *pRc = SQLITE_NOMEM; res = 0; }else{ char *aPoslist = p->pPhrase->doclist.pList; int nToken = p->pPhrase->nToken; for(p=p->pParent;res && p && p->eType==FTSQUERY_NEAR; p=p->pParent){ Fts3Phrase *pPhrase = p->pRight->pPhrase; int nNear = p->nNear; res = fts3EvalNearTrim(nNear, aTmp, &aPoslist, &nToken, pPhrase); } aPoslist = pExpr->pRight->pPhrase->doclist.pList; nToken = pExpr->pRight->pPhrase->nToken; for(p=pExpr->pLeft; p && res; p=p->pLeft){ int nNear; Fts3Phrase *pPhrase; assert( p->pParent && p->pParent->pLeft==p ); nNear = p->pParent->nNear; pPhrase = ( p->eType==FTSQUERY_NEAR ? p->pRight->pPhrase : p->pPhrase ); res = fts3EvalNearTrim(nNear, aTmp, &aPoslist, &nToken, pPhrase); } } sqlite3_free(aTmp); } return res; } /* ** This function is a helper function for sqlite3Fts3EvalTestDeferred(). ** Assuming no error occurs or has occurred, It returns non-zero if the ** expression passed as the second argument matches the row that pCsr ** currently points to, or zero if it does not. ** ** If *pRc is not SQLITE_OK when this function is called, it is a no-op. ** If an error occurs during execution of this function, *pRc is set to ** the appropriate SQLite error code. In this case the returned value is ** undefined. */ static int fts3EvalTestExpr( Fts3Cursor *pCsr, /* FTS cursor handle */ Fts3Expr *pExpr, /* Expr to test. May or may not be root. */ int *pRc /* IN/OUT: Error code */ ){ int bHit = 1; /* Return value */ if( *pRc==SQLITE_OK ){ switch( pExpr->eType ){ case FTSQUERY_NEAR: case FTSQUERY_AND: bHit = ( fts3EvalTestExpr(pCsr, pExpr->pLeft, pRc) && fts3EvalTestExpr(pCsr, pExpr->pRight, pRc) && fts3EvalNearTest(pExpr, pRc) ); /* If the NEAR expression does not match any rows, zero the doclist for ** all phrases involved in the NEAR. This is because the snippet(), ** offsets() and matchinfo() functions are not supposed to recognize ** any instances of phrases that are part of unmatched NEAR queries. ** For example if this expression: ** ** ... MATCH 'a OR (b NEAR c)' ** ** is matched against a row containing: ** ** 'a b d e' ** ** then any snippet() should ony highlight the "a" term, not the "b" ** (as "b" is part of a non-matching NEAR clause). */ if( bHit==0 && pExpr->eType==FTSQUERY_NEAR && (pExpr->pParent==0 || pExpr->pParent->eType!=FTSQUERY_NEAR) ){ Fts3Expr *p; for(p=pExpr; p->pPhrase==0; p=p->pLeft){ if( p->pRight->iDocid==pCsr->iPrevId ){ fts3EvalInvalidatePoslist(p->pRight->pPhrase); } } if( p->iDocid==pCsr->iPrevId ){ fts3EvalInvalidatePoslist(p->pPhrase); } } break; case FTSQUERY_OR: { int bHit1 = fts3EvalTestExpr(pCsr, pExpr->pLeft, pRc); int bHit2 = fts3EvalTestExpr(pCsr, pExpr->pRight, pRc); bHit = bHit1 || bHit2; break; } case FTSQUERY_NOT: bHit = ( fts3EvalTestExpr(pCsr, pExpr->pLeft, pRc) && !fts3EvalTestExpr(pCsr, pExpr->pRight, pRc) ); break; default: { #ifndef SQLITE_DISABLE_FTS4_DEFERRED if( pCsr->pDeferred && (pExpr->iDocid==pCsr->iPrevId || pExpr->bDeferred) ){ Fts3Phrase *pPhrase = pExpr->pPhrase; assert( pExpr->bDeferred || pPhrase->doclist.bFreeList==0 ); if( pExpr->bDeferred ){ fts3EvalInvalidatePoslist(pPhrase); } *pRc = fts3EvalDeferredPhrase(pCsr, pPhrase); bHit = (pPhrase->doclist.pList!=0); pExpr->iDocid = pCsr->iPrevId; }else #endif { bHit = ( pExpr->bEof==0 && pExpr->iDocid==pCsr->iPrevId && pExpr->pPhrase->doclist.nList>0 ); } break; } } } return bHit; } /* ** This function is called as the second part of each xNext operation when ** iterating through the results of a full-text query. At this point the ** cursor points to a row that matches the query expression, with the ** following caveats: ** ** * Up until this point, "NEAR" operators in the expression have been ** treated as "AND". ** ** * Deferred tokens have not yet been considered. ** ** If *pRc is not SQLITE_OK when this function is called, it immediately ** returns 0. Otherwise, it tests whether or not after considering NEAR ** operators and deferred tokens the current row is still a match for the ** expression. It returns 1 if both of the following are true: ** ** 1. *pRc is SQLITE_OK when this function returns, and ** ** 2. After scanning the current FTS table row for the deferred tokens, ** it is determined that the row does *not* match the query. ** ** Or, if no error occurs and it seems the current row does match the FTS ** query, return 0. */ SQLITE_PRIVATE int sqlite3Fts3EvalTestDeferred(Fts3Cursor *pCsr, int *pRc){ int rc = *pRc; int bMiss = 0; if( rc==SQLITE_OK ){ /* If there are one or more deferred tokens, load the current row into ** memory and scan it to determine the position list for each deferred ** token. Then, see if this row is really a match, considering deferred ** tokens and NEAR operators (neither of which were taken into account ** earlier, by fts3EvalNextRow()). */ if( pCsr->pDeferred ){ rc = fts3CursorSeek(0, pCsr); if( rc==SQLITE_OK ){ rc = sqlite3Fts3CacheDeferredDoclists(pCsr); } } bMiss = (0==fts3EvalTestExpr(pCsr, pCsr->pExpr, &rc)); /* Free the position-lists accumulated for each deferred token above. */ sqlite3Fts3FreeDeferredDoclists(pCsr); *pRc = rc; } return (rc==SQLITE_OK && bMiss); } /* ** Advance to the next document that matches the FTS expression in ** Fts3Cursor.pExpr. */ static int fts3EvalNext(Fts3Cursor *pCsr){ int rc = SQLITE_OK; /* Return Code */ Fts3Expr *pExpr = pCsr->pExpr; assert( pCsr->isEof==0 ); if( pExpr==0 ){ pCsr->isEof = 1; }else{ do { if( pCsr->isRequireSeek==0 ){ sqlite3_reset(pCsr->pStmt); } assert( sqlite3_data_count(pCsr->pStmt)==0 ); fts3EvalNextRow(pCsr, pExpr, &rc); pCsr->isEof = pExpr->bEof; pCsr->isRequireSeek = 1; pCsr->isMatchinfoNeeded = 1; pCsr->iPrevId = pExpr->iDocid; }while( pCsr->isEof==0 && sqlite3Fts3EvalTestDeferred(pCsr, &rc) ); } /* Check if the cursor is past the end of the docid range specified ** by Fts3Cursor.iMinDocid/iMaxDocid. If so, set the EOF flag. */ if( rc==SQLITE_OK && ( (pCsr->bDesc==0 && pCsr->iPrevId>pCsr->iMaxDocid) || (pCsr->bDesc!=0 && pCsr->iPrevIdiMinDocid) )){ pCsr->isEof = 1; } return rc; } /* ** Restart interation for expression pExpr so that the next call to ** fts3EvalNext() visits the first row. Do not allow incremental ** loading or merging of phrase doclists for this iteration. ** ** If *pRc is other than SQLITE_OK when this function is called, it is ** a no-op. If an error occurs within this function, *pRc is set to an ** SQLite error code before returning. */ static void fts3EvalRestart( Fts3Cursor *pCsr, Fts3Expr *pExpr, int *pRc ){ if( pExpr && *pRc==SQLITE_OK ){ Fts3Phrase *pPhrase = pExpr->pPhrase; if( pPhrase ){ fts3EvalInvalidatePoslist(pPhrase); if( pPhrase->bIncr ){ int i; for(i=0; inToken; i++){ Fts3PhraseToken *pToken = &pPhrase->aToken[i]; assert( pToken->pDeferred==0 ); if( pToken->pSegcsr ){ sqlite3Fts3MsrIncrRestart(pToken->pSegcsr); } } *pRc = fts3EvalPhraseStart(pCsr, 0, pPhrase); } pPhrase->doclist.pNextDocid = 0; pPhrase->doclist.iDocid = 0; pPhrase->pOrPoslist = 0; } pExpr->iDocid = 0; pExpr->bEof = 0; pExpr->bStart = 0; fts3EvalRestart(pCsr, pExpr->pLeft, pRc); fts3EvalRestart(pCsr, pExpr->pRight, pRc); } } /* ** After allocating the Fts3Expr.aMI[] array for each phrase in the ** expression rooted at pExpr, the cursor iterates through all rows matched ** by pExpr, calling this function for each row. This function increments ** the values in Fts3Expr.aMI[] according to the position-list currently ** found in Fts3Expr.pPhrase->doclist.pList for each of the phrase ** expression nodes. */ static void fts3EvalUpdateCounts(Fts3Expr *pExpr, int nCol){ if( pExpr ){ Fts3Phrase *pPhrase = pExpr->pPhrase; if( pPhrase && pPhrase->doclist.pList ){ int iCol = 0; char *p = pPhrase->doclist.pList; do{ u8 c = 0; int iCnt = 0; while( 0xFE & (*p | c) ){ if( (c&0x80)==0 ) iCnt++; c = *p++ & 0x80; } /* aMI[iCol*3 + 1] = Number of occurrences ** aMI[iCol*3 + 2] = Number of rows containing at least one instance */ pExpr->aMI[iCol*3 + 1] += iCnt; pExpr->aMI[iCol*3 + 2] += (iCnt>0); if( *p==0x00 ) break; p++; p += fts3GetVarint32(p, &iCol); }while( iColpLeft, nCol); fts3EvalUpdateCounts(pExpr->pRight, nCol); } } /* ** Expression pExpr must be of type FTSQUERY_PHRASE. ** ** If it is not already allocated and populated, this function allocates and ** populates the Fts3Expr.aMI[] array for expression pExpr. If pExpr is part ** of a NEAR expression, then it also allocates and populates the same array ** for all other phrases that are part of the NEAR expression. ** ** SQLITE_OK is returned if the aMI[] array is successfully allocated and ** populated. Otherwise, if an error occurs, an SQLite error code is returned. */ static int fts3EvalGatherStats( Fts3Cursor *pCsr, /* Cursor object */ Fts3Expr *pExpr /* FTSQUERY_PHRASE expression */ ){ int rc = SQLITE_OK; /* Return code */ assert( pExpr->eType==FTSQUERY_PHRASE ); if( pExpr->aMI==0 ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; Fts3Expr *pRoot; /* Root of NEAR expression */ Fts3Expr *p; /* Iterator used for several purposes */ sqlite3_int64 iPrevId = pCsr->iPrevId; sqlite3_int64 iDocid; u8 bEof; /* Find the root of the NEAR expression */ pRoot = pExpr; while( pRoot->pParent && pRoot->pParent->eType==FTSQUERY_NEAR ){ pRoot = pRoot->pParent; } iDocid = pRoot->iDocid; bEof = pRoot->bEof; assert( pRoot->bStart ); /* Allocate space for the aMSI[] array of each FTSQUERY_PHRASE node */ for(p=pRoot; p; p=p->pLeft){ Fts3Expr *pE = (p->eType==FTSQUERY_PHRASE?p:p->pRight); assert( pE->aMI==0 ); pE->aMI = (u32 *)sqlite3_malloc64(pTab->nColumn * 3 * sizeof(u32)); if( !pE->aMI ) return SQLITE_NOMEM; memset(pE->aMI, 0, pTab->nColumn * 3 * sizeof(u32)); } fts3EvalRestart(pCsr, pRoot, &rc); while( pCsr->isEof==0 && rc==SQLITE_OK ){ do { /* Ensure the %_content statement is reset. */ if( pCsr->isRequireSeek==0 ) sqlite3_reset(pCsr->pStmt); assert( sqlite3_data_count(pCsr->pStmt)==0 ); /* Advance to the next document */ fts3EvalNextRow(pCsr, pRoot, &rc); pCsr->isEof = pRoot->bEof; pCsr->isRequireSeek = 1; pCsr->isMatchinfoNeeded = 1; pCsr->iPrevId = pRoot->iDocid; }while( pCsr->isEof==0 && pRoot->eType==FTSQUERY_NEAR && sqlite3Fts3EvalTestDeferred(pCsr, &rc) ); if( rc==SQLITE_OK && pCsr->isEof==0 ){ fts3EvalUpdateCounts(pRoot, pTab->nColumn); } } pCsr->isEof = 0; pCsr->iPrevId = iPrevId; if( bEof ){ pRoot->bEof = bEof; }else{ /* Caution: pRoot may iterate through docids in ascending or descending ** order. For this reason, even though it seems more defensive, the ** do loop can not be written: ** ** do {...} while( pRoot->iDocidbEof==0 ); if( pRoot->bEof ) rc = FTS_CORRUPT_VTAB; }while( pRoot->iDocid!=iDocid && rc==SQLITE_OK ); } } return rc; } /* ** This function is used by the matchinfo() module to query a phrase ** expression node for the following information: ** ** 1. The total number of occurrences of the phrase in each column of ** the FTS table (considering all rows), and ** ** 2. For each column, the number of rows in the table for which the ** column contains at least one instance of the phrase. ** ** If no error occurs, SQLITE_OK is returned and the values for each column ** written into the array aiOut as follows: ** ** aiOut[iCol*3 + 1] = Number of occurrences ** aiOut[iCol*3 + 2] = Number of rows containing at least one instance ** ** Caveats: ** ** * If a phrase consists entirely of deferred tokens, then all output ** values are set to the number of documents in the table. In other ** words we assume that very common tokens occur exactly once in each ** column of each row of the table. ** ** * If a phrase contains some deferred tokens (and some non-deferred ** tokens), count the potential occurrence identified by considering ** the non-deferred tokens instead of actual phrase occurrences. ** ** * If the phrase is part of a NEAR expression, then only phrase instances ** that meet the NEAR constraint are included in the counts. */ SQLITE_PRIVATE int sqlite3Fts3EvalPhraseStats( Fts3Cursor *pCsr, /* FTS cursor handle */ Fts3Expr *pExpr, /* Phrase expression */ u32 *aiOut /* Array to write results into (see above) */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc = SQLITE_OK; int iCol; if( pExpr->bDeferred && pExpr->pParent->eType!=FTSQUERY_NEAR ){ assert( pCsr->nDoc>0 ); for(iCol=0; iColnColumn; iCol++){ aiOut[iCol*3 + 1] = (u32)pCsr->nDoc; aiOut[iCol*3 + 2] = (u32)pCsr->nDoc; } }else{ rc = fts3EvalGatherStats(pCsr, pExpr); if( rc==SQLITE_OK ){ assert( pExpr->aMI ); for(iCol=0; iColnColumn; iCol++){ aiOut[iCol*3 + 1] = pExpr->aMI[iCol*3 + 1]; aiOut[iCol*3 + 2] = pExpr->aMI[iCol*3 + 2]; } } } return rc; } /* ** The expression pExpr passed as the second argument to this function ** must be of type FTSQUERY_PHRASE. ** ** The returned value is either NULL or a pointer to a buffer containing ** a position-list indicating the occurrences of the phrase in column iCol ** of the current row. ** ** More specifically, the returned buffer contains 1 varint for each ** occurrence of the phrase in the column, stored using the normal (delta+2) ** compression and is terminated by either an 0x01 or 0x00 byte. For example, ** if the requested column contains "a b X c d X X" and the position-list ** for 'X' is requested, the buffer returned may contain: ** ** 0x04 0x05 0x03 0x01 or 0x04 0x05 0x03 0x00 ** ** This function works regardless of whether or not the phrase is deferred, ** incremental, or neither. */ SQLITE_PRIVATE int sqlite3Fts3EvalPhrasePoslist( Fts3Cursor *pCsr, /* FTS3 cursor object */ Fts3Expr *pExpr, /* Phrase to return doclist for */ int iCol, /* Column to return position list for */ char **ppOut /* OUT: Pointer to position list */ ){ Fts3Phrase *pPhrase = pExpr->pPhrase; Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; char *pIter; int iThis; sqlite3_int64 iDocid; /* If this phrase is applies specifically to some column other than ** column iCol, return a NULL pointer. */ *ppOut = 0; assert( iCol>=0 && iColnColumn ); if( (pPhrase->iColumnnColumn && pPhrase->iColumn!=iCol) ){ return SQLITE_OK; } iDocid = pExpr->iDocid; pIter = pPhrase->doclist.pList; if( iDocid!=pCsr->iPrevId || pExpr->bEof ){ int rc = SQLITE_OK; int bDescDoclist = pTab->bDescIdx; /* For DOCID_CMP macro */ int bOr = 0; u8 bTreeEof = 0; Fts3Expr *p; /* Used to iterate from pExpr to root */ Fts3Expr *pNear; /* Most senior NEAR ancestor (or pExpr) */ int bMatch; /* Check if this phrase descends from an OR expression node. If not, ** return NULL. Otherwise, the entry that corresponds to docid ** pCsr->iPrevId may lie earlier in the doclist buffer. Or, if the ** tree that the node is part of has been marked as EOF, but the node ** itself is not EOF, then it may point to an earlier entry. */ pNear = pExpr; for(p=pExpr->pParent; p; p=p->pParent){ if( p->eType==FTSQUERY_OR ) bOr = 1; if( p->eType==FTSQUERY_NEAR ) pNear = p; if( p->bEof ) bTreeEof = 1; } if( bOr==0 ) return SQLITE_OK; /* This is the descendent of an OR node. In this case we cannot use ** an incremental phrase. Load the entire doclist for the phrase ** into memory in this case. */ if( pPhrase->bIncr ){ int bEofSave = pNear->bEof; fts3EvalRestart(pCsr, pNear, &rc); while( rc==SQLITE_OK && !pNear->bEof ){ fts3EvalNextRow(pCsr, pNear, &rc); if( bEofSave==0 && pNear->iDocid==iDocid ) break; } assert( rc!=SQLITE_OK || pPhrase->bIncr==0 ); } if( bTreeEof ){ while( rc==SQLITE_OK && !pNear->bEof ){ fts3EvalNextRow(pCsr, pNear, &rc); } } if( rc!=SQLITE_OK ) return rc; bMatch = 1; for(p=pNear; p; p=p->pLeft){ u8 bEof = 0; Fts3Expr *pTest = p; Fts3Phrase *pPh; assert( pTest->eType==FTSQUERY_NEAR || pTest->eType==FTSQUERY_PHRASE ); if( pTest->eType==FTSQUERY_NEAR ) pTest = pTest->pRight; assert( pTest->eType==FTSQUERY_PHRASE ); pPh = pTest->pPhrase; pIter = pPh->pOrPoslist; iDocid = pPh->iOrDocid; if( pCsr->bDesc==bDescDoclist ){ bEof = !pPh->doclist.nAll || (pIter >= (pPh->doclist.aAll + pPh->doclist.nAll)); while( (pIter==0 || DOCID_CMP(iDocid, pCsr->iPrevId)<0 ) && bEof==0 ){ sqlite3Fts3DoclistNext( bDescDoclist, pPh->doclist.aAll, pPh->doclist.nAll, &pIter, &iDocid, &bEof ); } }else{ bEof = !pPh->doclist.nAll || (pIter && pIter<=pPh->doclist.aAll); while( (pIter==0 || DOCID_CMP(iDocid, pCsr->iPrevId)>0 ) && bEof==0 ){ int dummy; sqlite3Fts3DoclistPrev( bDescDoclist, pPh->doclist.aAll, pPh->doclist.nAll, &pIter, &iDocid, &dummy, &bEof ); } } pPh->pOrPoslist = pIter; pPh->iOrDocid = iDocid; if( bEof || iDocid!=pCsr->iPrevId ) bMatch = 0; } if( bMatch ){ pIter = pPhrase->pOrPoslist; }else{ pIter = 0; } } if( pIter==0 ) return SQLITE_OK; if( *pIter==0x01 ){ pIter++; pIter += fts3GetVarint32(pIter, &iThis); }else{ iThis = 0; } while( iThisdoclist, and ** * any Fts3MultiSegReader objects held by phrase tokens. */ SQLITE_PRIVATE void sqlite3Fts3EvalPhraseCleanup(Fts3Phrase *pPhrase){ if( pPhrase ){ int i; sqlite3_free(pPhrase->doclist.aAll); fts3EvalInvalidatePoslist(pPhrase); memset(&pPhrase->doclist, 0, sizeof(Fts3Doclist)); for(i=0; inToken; i++){ fts3SegReaderCursorFree(pPhrase->aToken[i].pSegcsr); pPhrase->aToken[i].pSegcsr = 0; } } } /* ** Return SQLITE_CORRUPT_VTAB. */ #ifdef SQLITE_DEBUG SQLITE_PRIVATE int sqlite3Fts3Corrupt(){ return SQLITE_CORRUPT_VTAB; } #endif #if !SQLITE_CORE /* ** Initialize API pointer table, if required. */ #ifdef _WIN32 __declspec(dllexport) #endif SQLITE_API int sqlite3_fts3_init( sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi ){ SQLITE_EXTENSION_INIT2(pApi) return sqlite3Fts3Init(db); } #endif #endif /************** End of fts3.c ************************************************/ /************** Begin file fts3_aux.c ****************************************/ /* ** 2011 Jan 27 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ typedef struct Fts3auxTable Fts3auxTable; typedef struct Fts3auxCursor Fts3auxCursor; struct Fts3auxTable { sqlite3_vtab base; /* Base class used by SQLite core */ Fts3Table *pFts3Tab; }; struct Fts3auxCursor { sqlite3_vtab_cursor base; /* Base class used by SQLite core */ Fts3MultiSegReader csr; /* Must be right after "base" */ Fts3SegFilter filter; char *zStop; int nStop; /* Byte-length of string zStop */ int iLangid; /* Language id to query */ int isEof; /* True if cursor is at EOF */ sqlite3_int64 iRowid; /* Current rowid */ int iCol; /* Current value of 'col' column */ int nStat; /* Size of aStat[] array */ struct Fts3auxColstats { sqlite3_int64 nDoc; /* 'documents' values for current csr row */ sqlite3_int64 nOcc; /* 'occurrences' values for current csr row */ } *aStat; }; /* ** Schema of the terms table. */ #define FTS3_AUX_SCHEMA \ "CREATE TABLE x(term, col, documents, occurrences, languageid HIDDEN)" /* ** This function does all the work for both the xConnect and xCreate methods. ** These tables have no persistent representation of their own, so xConnect ** and xCreate are identical operations. */ static int fts3auxConnectMethod( sqlite3 *db, /* Database connection */ void *pUnused, /* Unused */ int argc, /* Number of elements in argv array */ const char * const *argv, /* xCreate/xConnect argument array */ sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */ char **pzErr /* OUT: sqlite3_malloc'd error message */ ){ char const *zDb; /* Name of database (e.g. "main") */ char const *zFts3; /* Name of fts3 table */ int nDb; /* Result of strlen(zDb) */ int nFts3; /* Result of strlen(zFts3) */ sqlite3_int64 nByte; /* Bytes of space to allocate here */ int rc; /* value returned by declare_vtab() */ Fts3auxTable *p; /* Virtual table object to return */ UNUSED_PARAMETER(pUnused); /* The user should invoke this in one of two forms: ** ** CREATE VIRTUAL TABLE xxx USING fts4aux(fts4-table); ** CREATE VIRTUAL TABLE xxx USING fts4aux(fts4-table-db, fts4-table); */ if( argc!=4 && argc!=5 ) goto bad_args; zDb = argv[1]; nDb = (int)strlen(zDb); if( argc==5 ){ if( nDb==4 && 0==sqlite3_strnicmp("temp", zDb, 4) ){ zDb = argv[3]; nDb = (int)strlen(zDb); zFts3 = argv[4]; }else{ goto bad_args; } }else{ zFts3 = argv[3]; } nFts3 = (int)strlen(zFts3); rc = sqlite3_declare_vtab(db, FTS3_AUX_SCHEMA); if( rc!=SQLITE_OK ) return rc; nByte = sizeof(Fts3auxTable) + sizeof(Fts3Table) + nDb + nFts3 + 2; p = (Fts3auxTable *)sqlite3_malloc64(nByte); if( !p ) return SQLITE_NOMEM; memset(p, 0, nByte); p->pFts3Tab = (Fts3Table *)&p[1]; p->pFts3Tab->zDb = (char *)&p->pFts3Tab[1]; p->pFts3Tab->zName = &p->pFts3Tab->zDb[nDb+1]; p->pFts3Tab->db = db; p->pFts3Tab->nIndex = 1; memcpy((char *)p->pFts3Tab->zDb, zDb, nDb); memcpy((char *)p->pFts3Tab->zName, zFts3, nFts3); sqlite3Fts3Dequote((char *)p->pFts3Tab->zName); *ppVtab = (sqlite3_vtab *)p; return SQLITE_OK; bad_args: sqlite3Fts3ErrMsg(pzErr, "invalid arguments to fts4aux constructor"); return SQLITE_ERROR; } /* ** This function does the work for both the xDisconnect and xDestroy methods. ** These tables have no persistent representation of their own, so xDisconnect ** and xDestroy are identical operations. */ static int fts3auxDisconnectMethod(sqlite3_vtab *pVtab){ Fts3auxTable *p = (Fts3auxTable *)pVtab; Fts3Table *pFts3 = p->pFts3Tab; int i; /* Free any prepared statements held */ for(i=0; iaStmt); i++){ sqlite3_finalize(pFts3->aStmt[i]); } sqlite3_free(pFts3->zSegmentsTbl); sqlite3_free(p); return SQLITE_OK; } #define FTS4AUX_EQ_CONSTRAINT 1 #define FTS4AUX_GE_CONSTRAINT 2 #define FTS4AUX_LE_CONSTRAINT 4 /* ** xBestIndex - Analyze a WHERE and ORDER BY clause. */ static int fts3auxBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ){ int i; int iEq = -1; int iGe = -1; int iLe = -1; int iLangid = -1; int iNext = 1; /* Next free argvIndex value */ UNUSED_PARAMETER(pVTab); /* This vtab delivers always results in "ORDER BY term ASC" order. */ if( pInfo->nOrderBy==1 && pInfo->aOrderBy[0].iColumn==0 && pInfo->aOrderBy[0].desc==0 ){ pInfo->orderByConsumed = 1; } /* Search for equality and range constraints on the "term" column. ** And equality constraints on the hidden "languageid" column. */ for(i=0; inConstraint; i++){ if( pInfo->aConstraint[i].usable ){ int op = pInfo->aConstraint[i].op; int iCol = pInfo->aConstraint[i].iColumn; if( iCol==0 ){ if( op==SQLITE_INDEX_CONSTRAINT_EQ ) iEq = i; if( op==SQLITE_INDEX_CONSTRAINT_LT ) iLe = i; if( op==SQLITE_INDEX_CONSTRAINT_LE ) iLe = i; if( op==SQLITE_INDEX_CONSTRAINT_GT ) iGe = i; if( op==SQLITE_INDEX_CONSTRAINT_GE ) iGe = i; } if( iCol==4 ){ if( op==SQLITE_INDEX_CONSTRAINT_EQ ) iLangid = i; } } } if( iEq>=0 ){ pInfo->idxNum = FTS4AUX_EQ_CONSTRAINT; pInfo->aConstraintUsage[iEq].argvIndex = iNext++; pInfo->estimatedCost = 5; }else{ pInfo->idxNum = 0; pInfo->estimatedCost = 20000; if( iGe>=0 ){ pInfo->idxNum += FTS4AUX_GE_CONSTRAINT; pInfo->aConstraintUsage[iGe].argvIndex = iNext++; pInfo->estimatedCost /= 2; } if( iLe>=0 ){ pInfo->idxNum += FTS4AUX_LE_CONSTRAINT; pInfo->aConstraintUsage[iLe].argvIndex = iNext++; pInfo->estimatedCost /= 2; } } if( iLangid>=0 ){ pInfo->aConstraintUsage[iLangid].argvIndex = iNext++; pInfo->estimatedCost--; } return SQLITE_OK; } /* ** xOpen - Open a cursor. */ static int fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ Fts3auxCursor *pCsr; /* Pointer to cursor object to return */ UNUSED_PARAMETER(pVTab); pCsr = (Fts3auxCursor *)sqlite3_malloc(sizeof(Fts3auxCursor)); if( !pCsr ) return SQLITE_NOMEM; memset(pCsr, 0, sizeof(Fts3auxCursor)); *ppCsr = (sqlite3_vtab_cursor *)pCsr; return SQLITE_OK; } /* ** xClose - Close a cursor. */ static int fts3auxCloseMethod(sqlite3_vtab_cursor *pCursor){ Fts3Table *pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab; Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; sqlite3Fts3SegmentsClose(pFts3); sqlite3Fts3SegReaderFinish(&pCsr->csr); sqlite3_free((void *)pCsr->filter.zTerm); sqlite3_free(pCsr->zStop); sqlite3_free(pCsr->aStat); sqlite3_free(pCsr); return SQLITE_OK; } static int fts3auxGrowStatArray(Fts3auxCursor *pCsr, int nSize){ if( nSize>pCsr->nStat ){ struct Fts3auxColstats *aNew; aNew = (struct Fts3auxColstats *)sqlite3_realloc64(pCsr->aStat, sizeof(struct Fts3auxColstats) * nSize ); if( aNew==0 ) return SQLITE_NOMEM; memset(&aNew[pCsr->nStat], 0, sizeof(struct Fts3auxColstats) * (nSize - pCsr->nStat) ); pCsr->aStat = aNew; pCsr->nStat = nSize; } return SQLITE_OK; } /* ** xNext - Advance the cursor to the next row, if any. */ static int fts3auxNextMethod(sqlite3_vtab_cursor *pCursor){ Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; Fts3Table *pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab; int rc; /* Increment our pretend rowid value. */ pCsr->iRowid++; for(pCsr->iCol++; pCsr->iColnStat; pCsr->iCol++){ if( pCsr->aStat[pCsr->iCol].nDoc>0 ) return SQLITE_OK; } rc = sqlite3Fts3SegReaderStep(pFts3, &pCsr->csr); if( rc==SQLITE_ROW ){ int i = 0; int nDoclist = pCsr->csr.nDoclist; char *aDoclist = pCsr->csr.aDoclist; int iCol; int eState = 0; if( pCsr->zStop ){ int n = (pCsr->nStopcsr.nTerm) ? pCsr->nStop : pCsr->csr.nTerm; int mc = memcmp(pCsr->zStop, pCsr->csr.zTerm, n); if( mc<0 || (mc==0 && pCsr->csr.nTerm>pCsr->nStop) ){ pCsr->isEof = 1; return SQLITE_OK; } } if( fts3auxGrowStatArray(pCsr, 2) ) return SQLITE_NOMEM; memset(pCsr->aStat, 0, sizeof(struct Fts3auxColstats) * pCsr->nStat); iCol = 0; while( iaStat[0].nDoc++; eState = 1; iCol = 0; break; /* State 1. In this state we are expecting either a 1, indicating ** that the following integer will be a column number, or the ** start of a position list for column 0. ** ** The only difference between state 1 and state 2 is that if the ** integer encountered in state 1 is not 0 or 1, then we need to ** increment the column 0 "nDoc" count for this term. */ case 1: assert( iCol==0 ); if( v>1 ){ pCsr->aStat[1].nDoc++; } eState = 2; /* fall through */ case 2: if( v==0 ){ /* 0x00. Next integer will be a docid. */ eState = 0; }else if( v==1 ){ /* 0x01. Next integer will be a column number. */ eState = 3; }else{ /* 2 or greater. A position. */ pCsr->aStat[iCol+1].nOcc++; pCsr->aStat[0].nOcc++; } break; /* State 3. The integer just read is a column number. */ default: assert( eState==3 ); iCol = (int)v; if( fts3auxGrowStatArray(pCsr, iCol+2) ) return SQLITE_NOMEM; pCsr->aStat[iCol+1].nDoc++; eState = 2; break; } } pCsr->iCol = 0; rc = SQLITE_OK; }else{ pCsr->isEof = 1; } return rc; } /* ** xFilter - Initialize a cursor to point at the start of its data. */ static int fts3auxFilterMethod( sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */ int idxNum, /* Strategy index */ const char *idxStr, /* Unused */ int nVal, /* Number of elements in apVal */ sqlite3_value **apVal /* Arguments for the indexing scheme */ ){ Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; Fts3Table *pFts3 = ((Fts3auxTable *)pCursor->pVtab)->pFts3Tab; int rc; int isScan = 0; int iLangVal = 0; /* Language id to query */ int iEq = -1; /* Index of term=? value in apVal */ int iGe = -1; /* Index of term>=? value in apVal */ int iLe = -1; /* Index of term<=? value in apVal */ int iLangid = -1; /* Index of languageid=? value in apVal */ int iNext = 0; UNUSED_PARAMETER(nVal); UNUSED_PARAMETER(idxStr); assert( idxStr==0 ); assert( idxNum==FTS4AUX_EQ_CONSTRAINT || idxNum==0 || idxNum==FTS4AUX_LE_CONSTRAINT || idxNum==FTS4AUX_GE_CONSTRAINT || idxNum==(FTS4AUX_LE_CONSTRAINT|FTS4AUX_GE_CONSTRAINT) ); if( idxNum==FTS4AUX_EQ_CONSTRAINT ){ iEq = iNext++; }else{ isScan = 1; if( idxNum & FTS4AUX_GE_CONSTRAINT ){ iGe = iNext++; } if( idxNum & FTS4AUX_LE_CONSTRAINT ){ iLe = iNext++; } } if( iNextfilter.zTerm); sqlite3Fts3SegReaderFinish(&pCsr->csr); sqlite3_free((void *)pCsr->filter.zTerm); sqlite3_free(pCsr->aStat); memset(&pCsr->csr, 0, ((u8*)&pCsr[1]) - (u8*)&pCsr->csr); pCsr->filter.flags = FTS3_SEGMENT_REQUIRE_POS|FTS3_SEGMENT_IGNORE_EMPTY; if( isScan ) pCsr->filter.flags |= FTS3_SEGMENT_SCAN; if( iEq>=0 || iGe>=0 ){ const unsigned char *zStr = sqlite3_value_text(apVal[0]); assert( (iEq==0 && iGe==-1) || (iEq==-1 && iGe==0) ); if( zStr ){ pCsr->filter.zTerm = sqlite3_mprintf("%s", zStr); if( pCsr->filter.zTerm==0 ) return SQLITE_NOMEM; pCsr->filter.nTerm = (int)strlen(pCsr->filter.zTerm); } } if( iLe>=0 ){ pCsr->zStop = sqlite3_mprintf("%s", sqlite3_value_text(apVal[iLe])); if( pCsr->zStop==0 ) return SQLITE_NOMEM; pCsr->nStop = (int)strlen(pCsr->zStop); } if( iLangid>=0 ){ iLangVal = sqlite3_value_int(apVal[iLangid]); /* If the user specified a negative value for the languageid, use zero ** instead. This works, as the "languageid=?" constraint will also ** be tested by the VDBE layer. The test will always be false (since ** this module will not return a row with a negative languageid), and ** so the overall query will return zero rows. */ if( iLangVal<0 ) iLangVal = 0; } pCsr->iLangid = iLangVal; rc = sqlite3Fts3SegReaderCursor(pFts3, iLangVal, 0, FTS3_SEGCURSOR_ALL, pCsr->filter.zTerm, pCsr->filter.nTerm, 0, isScan, &pCsr->csr ); if( rc==SQLITE_OK ){ rc = sqlite3Fts3SegReaderStart(pFts3, &pCsr->csr, &pCsr->filter); } if( rc==SQLITE_OK ) rc = fts3auxNextMethod(pCursor); return rc; } /* ** xEof - Return true if the cursor is at EOF, or false otherwise. */ static int fts3auxEofMethod(sqlite3_vtab_cursor *pCursor){ Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; return pCsr->isEof; } /* ** xColumn - Return a column value. */ static int fts3auxColumnMethod( sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ sqlite3_context *pCtx, /* Context for sqlite3_result_xxx() calls */ int iCol /* Index of column to read value from */ ){ Fts3auxCursor *p = (Fts3auxCursor *)pCursor; assert( p->isEof==0 ); switch( iCol ){ case 0: /* term */ sqlite3_result_text(pCtx, p->csr.zTerm, p->csr.nTerm, SQLITE_TRANSIENT); break; case 1: /* col */ if( p->iCol ){ sqlite3_result_int(pCtx, p->iCol-1); }else{ sqlite3_result_text(pCtx, "*", -1, SQLITE_STATIC); } break; case 2: /* documents */ sqlite3_result_int64(pCtx, p->aStat[p->iCol].nDoc); break; case 3: /* occurrences */ sqlite3_result_int64(pCtx, p->aStat[p->iCol].nOcc); break; default: /* languageid */ assert( iCol==4 ); sqlite3_result_int(pCtx, p->iLangid); break; } return SQLITE_OK; } /* ** xRowid - Return the current rowid for the cursor. */ static int fts3auxRowidMethod( sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ sqlite_int64 *pRowid /* OUT: Rowid value */ ){ Fts3auxCursor *pCsr = (Fts3auxCursor *)pCursor; *pRowid = pCsr->iRowid; return SQLITE_OK; } /* ** Register the fts3aux module with database connection db. Return SQLITE_OK ** if successful or an error code if sqlite3_create_module() fails. */ SQLITE_PRIVATE int sqlite3Fts3InitAux(sqlite3 *db){ static const sqlite3_module fts3aux_module = { 0, /* iVersion */ fts3auxConnectMethod, /* xCreate */ fts3auxConnectMethod, /* xConnect */ fts3auxBestIndexMethod, /* xBestIndex */ fts3auxDisconnectMethod, /* xDisconnect */ fts3auxDisconnectMethod, /* xDestroy */ fts3auxOpenMethod, /* xOpen */ fts3auxCloseMethod, /* xClose */ fts3auxFilterMethod, /* xFilter */ fts3auxNextMethod, /* xNext */ fts3auxEofMethod, /* xEof */ fts3auxColumnMethod, /* xColumn */ fts3auxRowidMethod, /* xRowid */ 0, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindFunction */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0 /* xShadowName */ }; int rc; /* Return code */ rc = sqlite3_create_module(db, "fts4aux", &fts3aux_module, 0); return rc; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_aux.c ********************************************/ /************** Begin file fts3_expr.c ***************************************/ /* ** 2008 Nov 28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This module contains code that implements a parser for fts3 query strings ** (the right-hand argument to the MATCH operator). Because the supported ** syntax is relatively simple, the whole tokenizer/parser system is ** hand-coded. */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* ** By default, this module parses the legacy syntax that has been ** traditionally used by fts3. Or, if SQLITE_ENABLE_FTS3_PARENTHESIS ** is defined, then it uses the new syntax. The differences between ** the new and the old syntaxes are: ** ** a) The new syntax supports parenthesis. The old does not. ** ** b) The new syntax supports the AND and NOT operators. The old does not. ** ** c) The old syntax supports the "-" token qualifier. This is not ** supported by the new syntax (it is replaced by the NOT operator). ** ** d) When using the old syntax, the OR operator has a greater precedence ** than an implicit AND. When using the new, both implicity and explicit ** AND operators have a higher precedence than OR. ** ** If compiled with SQLITE_TEST defined, then this module exports the ** symbol "int sqlite3_fts3_enable_parentheses". Setting this variable ** to zero causes the module to use the old syntax. If it is set to ** non-zero the new syntax is activated. This is so both syntaxes can ** be tested using a single build of testfixture. ** ** The following describes the syntax supported by the fts3 MATCH ** operator in a similar format to that used by the lemon parser ** generator. This module does not use actually lemon, it uses a ** custom parser. ** ** query ::= andexpr (OR andexpr)*. ** ** andexpr ::= notexpr (AND? notexpr)*. ** ** notexpr ::= nearexpr (NOT nearexpr|-TOKEN)*. ** notexpr ::= LP query RP. ** ** nearexpr ::= phrase (NEAR distance_opt nearexpr)*. ** ** distance_opt ::= . ** distance_opt ::= / INTEGER. ** ** phrase ::= TOKEN. ** phrase ::= COLUMN:TOKEN. ** phrase ::= "TOKEN TOKEN TOKEN...". */ #ifdef SQLITE_TEST SQLITE_API int sqlite3_fts3_enable_parentheses = 0; #else # ifdef SQLITE_ENABLE_FTS3_PARENTHESIS # define sqlite3_fts3_enable_parentheses 1 # else # define sqlite3_fts3_enable_parentheses 0 # endif #endif /* ** Default span for NEAR operators. */ #define SQLITE_FTS3_DEFAULT_NEAR_PARAM 10 /* #include */ /* #include */ /* ** isNot: ** This variable is used by function getNextNode(). When getNextNode() is ** called, it sets ParseContext.isNot to true if the 'next node' is a ** FTSQUERY_PHRASE with a unary "-" attached to it. i.e. "mysql" in the ** FTS3 query "sqlite -mysql". Otherwise, ParseContext.isNot is set to ** zero. */ typedef struct ParseContext ParseContext; struct ParseContext { sqlite3_tokenizer *pTokenizer; /* Tokenizer module */ int iLangid; /* Language id used with tokenizer */ const char **azCol; /* Array of column names for fts3 table */ int bFts4; /* True to allow FTS4-only syntax */ int nCol; /* Number of entries in azCol[] */ int iDefaultCol; /* Default column to query */ int isNot; /* True if getNextNode() sees a unary - */ sqlite3_context *pCtx; /* Write error message here */ int nNest; /* Number of nested brackets */ }; /* ** This function is equivalent to the standard isspace() function. ** ** The standard isspace() can be awkward to use safely, because although it ** is defined to accept an argument of type int, its behavior when passed ** an integer that falls outside of the range of the unsigned char type ** is undefined (and sometimes, "undefined" means segfault). This wrapper ** is defined to accept an argument of type char, and always returns 0 for ** any values that fall outside of the range of the unsigned char type (i.e. ** negative values). */ static int fts3isspace(char c){ return c==' ' || c=='\t' || c=='\n' || c=='\r' || c=='\v' || c=='\f'; } /* ** Allocate nByte bytes of memory using sqlite3_malloc(). If successful, ** zero the memory before returning a pointer to it. If unsuccessful, ** return NULL. */ static void *fts3MallocZero(sqlite3_int64 nByte){ void *pRet = sqlite3_malloc64(nByte); if( pRet ) memset(pRet, 0, nByte); return pRet; } SQLITE_PRIVATE int sqlite3Fts3OpenTokenizer( sqlite3_tokenizer *pTokenizer, int iLangid, const char *z, int n, sqlite3_tokenizer_cursor **ppCsr ){ sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; sqlite3_tokenizer_cursor *pCsr = 0; int rc; rc = pModule->xOpen(pTokenizer, z, n, &pCsr); assert( rc==SQLITE_OK || pCsr==0 ); if( rc==SQLITE_OK ){ pCsr->pTokenizer = pTokenizer; if( pModule->iVersion>=1 ){ rc = pModule->xLanguageid(pCsr, iLangid); if( rc!=SQLITE_OK ){ pModule->xClose(pCsr); pCsr = 0; } } } *ppCsr = pCsr; return rc; } /* ** Function getNextNode(), which is called by fts3ExprParse(), may itself ** call fts3ExprParse(). So this forward declaration is required. */ static int fts3ExprParse(ParseContext *, const char *, int, Fts3Expr **, int *); /* ** Extract the next token from buffer z (length n) using the tokenizer ** and other information (column names etc.) in pParse. Create an Fts3Expr ** structure of type FTSQUERY_PHRASE containing a phrase consisting of this ** single token and set *ppExpr to point to it. If the end of the buffer is ** reached before a token is found, set *ppExpr to zero. It is the ** responsibility of the caller to eventually deallocate the allocated ** Fts3Expr structure (if any) by passing it to sqlite3_free(). ** ** Return SQLITE_OK if successful, or SQLITE_NOMEM if a memory allocation ** fails. */ static int getNextToken( ParseContext *pParse, /* fts3 query parse context */ int iCol, /* Value for Fts3Phrase.iColumn */ const char *z, int n, /* Input string */ Fts3Expr **ppExpr, /* OUT: expression */ int *pnConsumed /* OUT: Number of bytes consumed */ ){ sqlite3_tokenizer *pTokenizer = pParse->pTokenizer; sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; int rc; sqlite3_tokenizer_cursor *pCursor; Fts3Expr *pRet = 0; int i = 0; /* Set variable i to the maximum number of bytes of input to tokenize. */ for(i=0; iiLangid, z, i, &pCursor); if( rc==SQLITE_OK ){ const char *zToken; int nToken = 0, iStart = 0, iEnd = 0, iPosition = 0; sqlite3_int64 nByte; /* total space to allocate */ rc = pModule->xNext(pCursor, &zToken, &nToken, &iStart, &iEnd, &iPosition); if( rc==SQLITE_OK ){ nByte = sizeof(Fts3Expr) + sizeof(Fts3Phrase) + nToken; pRet = (Fts3Expr *)fts3MallocZero(nByte); if( !pRet ){ rc = SQLITE_NOMEM; }else{ pRet->eType = FTSQUERY_PHRASE; pRet->pPhrase = (Fts3Phrase *)&pRet[1]; pRet->pPhrase->nToken = 1; pRet->pPhrase->iColumn = iCol; pRet->pPhrase->aToken[0].n = nToken; pRet->pPhrase->aToken[0].z = (char *)&pRet->pPhrase[1]; memcpy(pRet->pPhrase->aToken[0].z, zToken, nToken); if( iEndpPhrase->aToken[0].isPrefix = 1; iEnd++; } while( 1 ){ if( !sqlite3_fts3_enable_parentheses && iStart>0 && z[iStart-1]=='-' ){ pParse->isNot = 1; iStart--; }else if( pParse->bFts4 && iStart>0 && z[iStart-1]=='^' ){ pRet->pPhrase->aToken[0].bFirst = 1; iStart--; }else{ break; } } } *pnConsumed = iEnd; }else if( i && rc==SQLITE_DONE ){ rc = SQLITE_OK; } pModule->xClose(pCursor); } *ppExpr = pRet; return rc; } /* ** Enlarge a memory allocation. If an out-of-memory allocation occurs, ** then free the old allocation. */ static void *fts3ReallocOrFree(void *pOrig, sqlite3_int64 nNew){ void *pRet = sqlite3_realloc64(pOrig, nNew); if( !pRet ){ sqlite3_free(pOrig); } return pRet; } /* ** Buffer zInput, length nInput, contains the contents of a quoted string ** that appeared as part of an fts3 query expression. Neither quote character ** is included in the buffer. This function attempts to tokenize the entire ** input buffer and create an Fts3Expr structure of type FTSQUERY_PHRASE ** containing the results. ** ** If successful, SQLITE_OK is returned and *ppExpr set to point at the ** allocated Fts3Expr structure. Otherwise, either SQLITE_NOMEM (out of memory ** error) or SQLITE_ERROR (tokenization error) is returned and *ppExpr set ** to 0. */ static int getNextString( ParseContext *pParse, /* fts3 query parse context */ const char *zInput, int nInput, /* Input string */ Fts3Expr **ppExpr /* OUT: expression */ ){ sqlite3_tokenizer *pTokenizer = pParse->pTokenizer; sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; int rc; Fts3Expr *p = 0; sqlite3_tokenizer_cursor *pCursor = 0; char *zTemp = 0; int nTemp = 0; const int nSpace = sizeof(Fts3Expr) + sizeof(Fts3Phrase); int nToken = 0; /* The final Fts3Expr data structure, including the Fts3Phrase, ** Fts3PhraseToken structures token buffers are all stored as a single ** allocation so that the expression can be freed with a single call to ** sqlite3_free(). Setting this up requires a two pass approach. ** ** The first pass, in the block below, uses a tokenizer cursor to iterate ** through the tokens in the expression. This pass uses fts3ReallocOrFree() ** to assemble data in two dynamic buffers: ** ** Buffer p: Points to the Fts3Expr structure, followed by the Fts3Phrase ** structure, followed by the array of Fts3PhraseToken ** structures. This pass only populates the Fts3PhraseToken array. ** ** Buffer zTemp: Contains copies of all tokens. ** ** The second pass, in the block that begins "if( rc==SQLITE_DONE )" below, ** appends buffer zTemp to buffer p, and fills in the Fts3Expr and Fts3Phrase ** structures. */ rc = sqlite3Fts3OpenTokenizer( pTokenizer, pParse->iLangid, zInput, nInput, &pCursor); if( rc==SQLITE_OK ){ int ii; for(ii=0; rc==SQLITE_OK; ii++){ const char *zByte; int nByte = 0, iBegin = 0, iEnd = 0, iPos = 0; rc = pModule->xNext(pCursor, &zByte, &nByte, &iBegin, &iEnd, &iPos); if( rc==SQLITE_OK ){ Fts3PhraseToken *pToken; p = fts3ReallocOrFree(p, nSpace + ii*sizeof(Fts3PhraseToken)); if( !p ) goto no_mem; zTemp = fts3ReallocOrFree(zTemp, nTemp + nByte); if( !zTemp ) goto no_mem; assert( nToken==ii ); pToken = &((Fts3Phrase *)(&p[1]))->aToken[ii]; memset(pToken, 0, sizeof(Fts3PhraseToken)); memcpy(&zTemp[nTemp], zByte, nByte); nTemp += nByte; pToken->n = nByte; pToken->isPrefix = (iEndbFirst = (iBegin>0 && zInput[iBegin-1]=='^'); nToken = ii+1; } } pModule->xClose(pCursor); pCursor = 0; } if( rc==SQLITE_DONE ){ int jj; char *zBuf = 0; p = fts3ReallocOrFree(p, nSpace + nToken*sizeof(Fts3PhraseToken) + nTemp); if( !p ) goto no_mem; memset(p, 0, (char *)&(((Fts3Phrase *)&p[1])->aToken[0])-(char *)p); p->eType = FTSQUERY_PHRASE; p->pPhrase = (Fts3Phrase *)&p[1]; p->pPhrase->iColumn = pParse->iDefaultCol; p->pPhrase->nToken = nToken; zBuf = (char *)&p->pPhrase->aToken[nToken]; if( zTemp ){ memcpy(zBuf, zTemp, nTemp); sqlite3_free(zTemp); }else{ assert( nTemp==0 ); } for(jj=0; jjpPhrase->nToken; jj++){ p->pPhrase->aToken[jj].z = zBuf; zBuf += p->pPhrase->aToken[jj].n; } rc = SQLITE_OK; } *ppExpr = p; return rc; no_mem: if( pCursor ){ pModule->xClose(pCursor); } sqlite3_free(zTemp); sqlite3_free(p); *ppExpr = 0; return SQLITE_NOMEM; } /* ** The output variable *ppExpr is populated with an allocated Fts3Expr ** structure, or set to 0 if the end of the input buffer is reached. ** ** Returns an SQLite error code. SQLITE_OK if everything works, SQLITE_NOMEM ** if a malloc failure occurs, or SQLITE_ERROR if a parse error is encountered. ** If SQLITE_ERROR is returned, pContext is populated with an error message. */ static int getNextNode( ParseContext *pParse, /* fts3 query parse context */ const char *z, int n, /* Input string */ Fts3Expr **ppExpr, /* OUT: expression */ int *pnConsumed /* OUT: Number of bytes consumed */ ){ static const struct Fts3Keyword { char *z; /* Keyword text */ unsigned char n; /* Length of the keyword */ unsigned char parenOnly; /* Only valid in paren mode */ unsigned char eType; /* Keyword code */ } aKeyword[] = { { "OR" , 2, 0, FTSQUERY_OR }, { "AND", 3, 1, FTSQUERY_AND }, { "NOT", 3, 1, FTSQUERY_NOT }, { "NEAR", 4, 0, FTSQUERY_NEAR } }; int ii; int iCol; int iColLen; int rc; Fts3Expr *pRet = 0; const char *zInput = z; int nInput = n; pParse->isNot = 0; /* Skip over any whitespace before checking for a keyword, an open or ** close bracket, or a quoted string. */ while( nInput>0 && fts3isspace(*zInput) ){ nInput--; zInput++; } if( nInput==0 ){ return SQLITE_DONE; } /* See if we are dealing with a keyword. */ for(ii=0; ii<(int)(sizeof(aKeyword)/sizeof(struct Fts3Keyword)); ii++){ const struct Fts3Keyword *pKey = &aKeyword[ii]; if( (pKey->parenOnly & ~sqlite3_fts3_enable_parentheses)!=0 ){ continue; } if( nInput>=pKey->n && 0==memcmp(zInput, pKey->z, pKey->n) ){ int nNear = SQLITE_FTS3_DEFAULT_NEAR_PARAM; int nKey = pKey->n; char cNext; /* If this is a "NEAR" keyword, check for an explicit nearness. */ if( pKey->eType==FTSQUERY_NEAR ){ assert( nKey==4 ); if( zInput[4]=='/' && zInput[5]>='0' && zInput[5]<='9' ){ nKey += 1+sqlite3Fts3ReadInt(&zInput[nKey+1], &nNear); } } /* At this point this is probably a keyword. But for that to be true, ** the next byte must contain either whitespace, an open or close ** parenthesis, a quote character, or EOF. */ cNext = zInput[nKey]; if( fts3isspace(cNext) || cNext=='"' || cNext=='(' || cNext==')' || cNext==0 ){ pRet = (Fts3Expr *)fts3MallocZero(sizeof(Fts3Expr)); if( !pRet ){ return SQLITE_NOMEM; } pRet->eType = pKey->eType; pRet->nNear = nNear; *ppExpr = pRet; *pnConsumed = (int)((zInput - z) + nKey); return SQLITE_OK; } /* Turns out that wasn't a keyword after all. This happens if the ** user has supplied a token such as "ORacle". Continue. */ } } /* See if we are dealing with a quoted phrase. If this is the case, then ** search for the closing quote and pass the whole string to getNextString() ** for processing. This is easy to do, as fts3 has no syntax for escaping ** a quote character embedded in a string. */ if( *zInput=='"' ){ for(ii=1; iinNest++; rc = fts3ExprParse(pParse, zInput+1, nInput-1, ppExpr, &nConsumed); *pnConsumed = (int)(zInput - z) + 1 + nConsumed; return rc; }else if( *zInput==')' ){ pParse->nNest--; *pnConsumed = (int)((zInput - z) + 1); *ppExpr = 0; return SQLITE_DONE; } } /* If control flows to this point, this must be a regular token, or ** the end of the input. Read a regular token using the sqlite3_tokenizer ** interface. Before doing so, figure out if there is an explicit ** column specifier for the token. ** ** TODO: Strangely, it is not possible to associate a column specifier ** with a quoted phrase, only with a single token. Not sure if this was ** an implementation artifact or an intentional decision when fts3 was ** first implemented. Whichever it was, this module duplicates the ** limitation. */ iCol = pParse->iDefaultCol; iColLen = 0; for(ii=0; iinCol; ii++){ const char *zStr = pParse->azCol[ii]; int nStr = (int)strlen(zStr); if( nInput>nStr && zInput[nStr]==':' && sqlite3_strnicmp(zStr, zInput, nStr)==0 ){ iCol = ii; iColLen = (int)((zInput - z) + nStr + 1); break; } } rc = getNextToken(pParse, iCol, &z[iColLen], n-iColLen, ppExpr, pnConsumed); *pnConsumed += iColLen; return rc; } /* ** The argument is an Fts3Expr structure for a binary operator (any type ** except an FTSQUERY_PHRASE). Return an integer value representing the ** precedence of the operator. Lower values have a higher precedence (i.e. ** group more tightly). For example, in the C language, the == operator ** groups more tightly than ||, and would therefore have a higher precedence. ** ** When using the new fts3 query syntax (when SQLITE_ENABLE_FTS3_PARENTHESIS ** is defined), the order of the operators in precedence from highest to ** lowest is: ** ** NEAR ** NOT ** AND (including implicit ANDs) ** OR ** ** Note that when using the old query syntax, the OR operator has a higher ** precedence than the AND operator. */ static int opPrecedence(Fts3Expr *p){ assert( p->eType!=FTSQUERY_PHRASE ); if( sqlite3_fts3_enable_parentheses ){ return p->eType; }else if( p->eType==FTSQUERY_NEAR ){ return 1; }else if( p->eType==FTSQUERY_OR ){ return 2; } assert( p->eType==FTSQUERY_AND ); return 3; } /* ** Argument ppHead contains a pointer to the current head of a query ** expression tree being parsed. pPrev is the expression node most recently ** inserted into the tree. This function adds pNew, which is always a binary ** operator node, into the expression tree based on the relative precedence ** of pNew and the existing nodes of the tree. This may result in the head ** of the tree changing, in which case *ppHead is set to the new root node. */ static void insertBinaryOperator( Fts3Expr **ppHead, /* Pointer to the root node of a tree */ Fts3Expr *pPrev, /* Node most recently inserted into the tree */ Fts3Expr *pNew /* New binary node to insert into expression tree */ ){ Fts3Expr *pSplit = pPrev; while( pSplit->pParent && opPrecedence(pSplit->pParent)<=opPrecedence(pNew) ){ pSplit = pSplit->pParent; } if( pSplit->pParent ){ assert( pSplit->pParent->pRight==pSplit ); pSplit->pParent->pRight = pNew; pNew->pParent = pSplit->pParent; }else{ *ppHead = pNew; } pNew->pLeft = pSplit; pSplit->pParent = pNew; } /* ** Parse the fts3 query expression found in buffer z, length n. This function ** returns either when the end of the buffer is reached or an unmatched ** closing bracket - ')' - is encountered. ** ** If successful, SQLITE_OK is returned, *ppExpr is set to point to the ** parsed form of the expression and *pnConsumed is set to the number of ** bytes read from buffer z. Otherwise, *ppExpr is set to 0 and SQLITE_NOMEM ** (out of memory error) or SQLITE_ERROR (parse error) is returned. */ static int fts3ExprParse( ParseContext *pParse, /* fts3 query parse context */ const char *z, int n, /* Text of MATCH query */ Fts3Expr **ppExpr, /* OUT: Parsed query structure */ int *pnConsumed /* OUT: Number of bytes consumed */ ){ Fts3Expr *pRet = 0; Fts3Expr *pPrev = 0; Fts3Expr *pNotBranch = 0; /* Only used in legacy parse mode */ int nIn = n; const char *zIn = z; int rc = SQLITE_OK; int isRequirePhrase = 1; while( rc==SQLITE_OK ){ Fts3Expr *p = 0; int nByte = 0; rc = getNextNode(pParse, zIn, nIn, &p, &nByte); assert( nByte>0 || (rc!=SQLITE_OK && p==0) ); if( rc==SQLITE_OK ){ if( p ){ int isPhrase; if( !sqlite3_fts3_enable_parentheses && p->eType==FTSQUERY_PHRASE && pParse->isNot ){ /* Create an implicit NOT operator. */ Fts3Expr *pNot = fts3MallocZero(sizeof(Fts3Expr)); if( !pNot ){ sqlite3Fts3ExprFree(p); rc = SQLITE_NOMEM; goto exprparse_out; } pNot->eType = FTSQUERY_NOT; pNot->pRight = p; p->pParent = pNot; if( pNotBranch ){ pNot->pLeft = pNotBranch; pNotBranch->pParent = pNot; } pNotBranch = pNot; p = pPrev; }else{ int eType = p->eType; isPhrase = (eType==FTSQUERY_PHRASE || p->pLeft); /* The isRequirePhrase variable is set to true if a phrase or ** an expression contained in parenthesis is required. If a ** binary operator (AND, OR, NOT or NEAR) is encounted when ** isRequirePhrase is set, this is a syntax error. */ if( !isPhrase && isRequirePhrase ){ sqlite3Fts3ExprFree(p); rc = SQLITE_ERROR; goto exprparse_out; } if( isPhrase && !isRequirePhrase ){ /* Insert an implicit AND operator. */ Fts3Expr *pAnd; assert( pRet && pPrev ); pAnd = fts3MallocZero(sizeof(Fts3Expr)); if( !pAnd ){ sqlite3Fts3ExprFree(p); rc = SQLITE_NOMEM; goto exprparse_out; } pAnd->eType = FTSQUERY_AND; insertBinaryOperator(&pRet, pPrev, pAnd); pPrev = pAnd; } /* This test catches attempts to make either operand of a NEAR ** operator something other than a phrase. For example, either of ** the following: ** ** (bracketed expression) NEAR phrase ** phrase NEAR (bracketed expression) ** ** Return an error in either case. */ if( pPrev && ( (eType==FTSQUERY_NEAR && !isPhrase && pPrev->eType!=FTSQUERY_PHRASE) || (eType!=FTSQUERY_PHRASE && isPhrase && pPrev->eType==FTSQUERY_NEAR) )){ sqlite3Fts3ExprFree(p); rc = SQLITE_ERROR; goto exprparse_out; } if( isPhrase ){ if( pRet ){ assert( pPrev && pPrev->pLeft && pPrev->pRight==0 ); pPrev->pRight = p; p->pParent = pPrev; }else{ pRet = p; } }else{ insertBinaryOperator(&pRet, pPrev, p); } isRequirePhrase = !isPhrase; } pPrev = p; } assert( nByte>0 ); } assert( rc!=SQLITE_OK || (nByte>0 && nByte<=nIn) ); nIn -= nByte; zIn += nByte; } if( rc==SQLITE_DONE && pRet && isRequirePhrase ){ rc = SQLITE_ERROR; } if( rc==SQLITE_DONE ){ rc = SQLITE_OK; if( !sqlite3_fts3_enable_parentheses && pNotBranch ){ if( !pRet ){ rc = SQLITE_ERROR; }else{ Fts3Expr *pIter = pNotBranch; while( pIter->pLeft ){ pIter = pIter->pLeft; } pIter->pLeft = pRet; pRet->pParent = pIter; pRet = pNotBranch; } } } *pnConsumed = n - nIn; exprparse_out: if( rc!=SQLITE_OK ){ sqlite3Fts3ExprFree(pRet); sqlite3Fts3ExprFree(pNotBranch); pRet = 0; } *ppExpr = pRet; return rc; } /* ** Return SQLITE_ERROR if the maximum depth of the expression tree passed ** as the only argument is more than nMaxDepth. */ static int fts3ExprCheckDepth(Fts3Expr *p, int nMaxDepth){ int rc = SQLITE_OK; if( p ){ if( nMaxDepth<0 ){ rc = SQLITE_TOOBIG; }else{ rc = fts3ExprCheckDepth(p->pLeft, nMaxDepth-1); if( rc==SQLITE_OK ){ rc = fts3ExprCheckDepth(p->pRight, nMaxDepth-1); } } } return rc; } /* ** This function attempts to transform the expression tree at (*pp) to ** an equivalent but more balanced form. The tree is modified in place. ** If successful, SQLITE_OK is returned and (*pp) set to point to the ** new root expression node. ** ** nMaxDepth is the maximum allowable depth of the balanced sub-tree. ** ** Otherwise, if an error occurs, an SQLite error code is returned and ** expression (*pp) freed. */ static int fts3ExprBalance(Fts3Expr **pp, int nMaxDepth){ int rc = SQLITE_OK; /* Return code */ Fts3Expr *pRoot = *pp; /* Initial root node */ Fts3Expr *pFree = 0; /* List of free nodes. Linked by pParent. */ int eType = pRoot->eType; /* Type of node in this tree */ if( nMaxDepth==0 ){ rc = SQLITE_ERROR; } if( rc==SQLITE_OK ){ if( (eType==FTSQUERY_AND || eType==FTSQUERY_OR) ){ Fts3Expr **apLeaf; apLeaf = (Fts3Expr **)sqlite3_malloc64(sizeof(Fts3Expr *) * nMaxDepth); if( 0==apLeaf ){ rc = SQLITE_NOMEM; }else{ memset(apLeaf, 0, sizeof(Fts3Expr *) * nMaxDepth); } if( rc==SQLITE_OK ){ int i; Fts3Expr *p; /* Set $p to point to the left-most leaf in the tree of eType nodes. */ for(p=pRoot; p->eType==eType; p=p->pLeft){ assert( p->pParent==0 || p->pParent->pLeft==p ); assert( p->pLeft && p->pRight ); } /* This loop runs once for each leaf in the tree of eType nodes. */ while( 1 ){ int iLvl; Fts3Expr *pParent = p->pParent; /* Current parent of p */ assert( pParent==0 || pParent->pLeft==p ); p->pParent = 0; if( pParent ){ pParent->pLeft = 0; }else{ pRoot = 0; } rc = fts3ExprBalance(&p, nMaxDepth-1); if( rc!=SQLITE_OK ) break; for(iLvl=0; p && iLvlpLeft = apLeaf[iLvl]; pFree->pRight = p; pFree->pLeft->pParent = pFree; pFree->pRight->pParent = pFree; p = pFree; pFree = pFree->pParent; p->pParent = 0; apLeaf[iLvl] = 0; } } if( p ){ sqlite3Fts3ExprFree(p); rc = SQLITE_TOOBIG; break; } /* If that was the last leaf node, break out of the loop */ if( pParent==0 ) break; /* Set $p to point to the next leaf in the tree of eType nodes */ for(p=pParent->pRight; p->eType==eType; p=p->pLeft); /* Remove pParent from the original tree. */ assert( pParent->pParent==0 || pParent->pParent->pLeft==pParent ); pParent->pRight->pParent = pParent->pParent; if( pParent->pParent ){ pParent->pParent->pLeft = pParent->pRight; }else{ assert( pParent==pRoot ); pRoot = pParent->pRight; } /* Link pParent into the free node list. It will be used as an ** internal node of the new tree. */ pParent->pParent = pFree; pFree = pParent; } if( rc==SQLITE_OK ){ p = 0; for(i=0; ipParent = 0; }else{ assert( pFree!=0 ); pFree->pRight = p; pFree->pLeft = apLeaf[i]; pFree->pLeft->pParent = pFree; pFree->pRight->pParent = pFree; p = pFree; pFree = pFree->pParent; p->pParent = 0; } } } pRoot = p; }else{ /* An error occurred. Delete the contents of the apLeaf[] array ** and pFree list. Everything else is cleaned up by the call to ** sqlite3Fts3ExprFree(pRoot) below. */ Fts3Expr *pDel; for(i=0; ipParent; sqlite3_free(pDel); } } assert( pFree==0 ); sqlite3_free( apLeaf ); } }else if( eType==FTSQUERY_NOT ){ Fts3Expr *pLeft = pRoot->pLeft; Fts3Expr *pRight = pRoot->pRight; pRoot->pLeft = 0; pRoot->pRight = 0; pLeft->pParent = 0; pRight->pParent = 0; rc = fts3ExprBalance(&pLeft, nMaxDepth-1); if( rc==SQLITE_OK ){ rc = fts3ExprBalance(&pRight, nMaxDepth-1); } if( rc!=SQLITE_OK ){ sqlite3Fts3ExprFree(pRight); sqlite3Fts3ExprFree(pLeft); }else{ assert( pLeft && pRight ); pRoot->pLeft = pLeft; pLeft->pParent = pRoot; pRoot->pRight = pRight; pRight->pParent = pRoot; } } } if( rc!=SQLITE_OK ){ sqlite3Fts3ExprFree(pRoot); pRoot = 0; } *pp = pRoot; return rc; } /* ** This function is similar to sqlite3Fts3ExprParse(), with the following ** differences: ** ** 1. It does not do expression rebalancing. ** 2. It does not check that the expression does not exceed the ** maximum allowable depth. ** 3. Even if it fails, *ppExpr may still be set to point to an ** expression tree. It should be deleted using sqlite3Fts3ExprFree() ** in this case. */ static int fts3ExprParseUnbalanced( sqlite3_tokenizer *pTokenizer, /* Tokenizer module */ int iLangid, /* Language id for tokenizer */ char **azCol, /* Array of column names for fts3 table */ int bFts4, /* True to allow FTS4-only syntax */ int nCol, /* Number of entries in azCol[] */ int iDefaultCol, /* Default column to query */ const char *z, int n, /* Text of MATCH query */ Fts3Expr **ppExpr /* OUT: Parsed query structure */ ){ int nParsed; int rc; ParseContext sParse; memset(&sParse, 0, sizeof(ParseContext)); sParse.pTokenizer = pTokenizer; sParse.iLangid = iLangid; sParse.azCol = (const char **)azCol; sParse.nCol = nCol; sParse.iDefaultCol = iDefaultCol; sParse.bFts4 = bFts4; if( z==0 ){ *ppExpr = 0; return SQLITE_OK; } if( n<0 ){ n = (int)strlen(z); } rc = fts3ExprParse(&sParse, z, n, ppExpr, &nParsed); assert( rc==SQLITE_OK || *ppExpr==0 ); /* Check for mismatched parenthesis */ if( rc==SQLITE_OK && sParse.nNest ){ rc = SQLITE_ERROR; } return rc; } /* ** Parameters z and n contain a pointer to and length of a buffer containing ** an fts3 query expression, respectively. This function attempts to parse the ** query expression and create a tree of Fts3Expr structures representing the ** parsed expression. If successful, *ppExpr is set to point to the head ** of the parsed expression tree and SQLITE_OK is returned. If an error ** occurs, either SQLITE_NOMEM (out-of-memory error) or SQLITE_ERROR (parse ** error) is returned and *ppExpr is set to 0. ** ** If parameter n is a negative number, then z is assumed to point to a ** nul-terminated string and the length is determined using strlen(). ** ** The first parameter, pTokenizer, is passed the fts3 tokenizer module to ** use to normalize query tokens while parsing the expression. The azCol[] ** array, which is assumed to contain nCol entries, should contain the names ** of each column in the target fts3 table, in order from left to right. ** Column names must be nul-terminated strings. ** ** The iDefaultCol parameter should be passed the index of the table column ** that appears on the left-hand-side of the MATCH operator (the default ** column to match against for tokens for which a column name is not explicitly ** specified as part of the query string), or -1 if tokens may by default ** match any table column. */ SQLITE_PRIVATE int sqlite3Fts3ExprParse( sqlite3_tokenizer *pTokenizer, /* Tokenizer module */ int iLangid, /* Language id for tokenizer */ char **azCol, /* Array of column names for fts3 table */ int bFts4, /* True to allow FTS4-only syntax */ int nCol, /* Number of entries in azCol[] */ int iDefaultCol, /* Default column to query */ const char *z, int n, /* Text of MATCH query */ Fts3Expr **ppExpr, /* OUT: Parsed query structure */ char **pzErr /* OUT: Error message (sqlite3_malloc) */ ){ int rc = fts3ExprParseUnbalanced( pTokenizer, iLangid, azCol, bFts4, nCol, iDefaultCol, z, n, ppExpr ); /* Rebalance the expression. And check that its depth does not exceed ** SQLITE_FTS3_MAX_EXPR_DEPTH. */ if( rc==SQLITE_OK && *ppExpr ){ rc = fts3ExprBalance(ppExpr, SQLITE_FTS3_MAX_EXPR_DEPTH); if( rc==SQLITE_OK ){ rc = fts3ExprCheckDepth(*ppExpr, SQLITE_FTS3_MAX_EXPR_DEPTH); } } if( rc!=SQLITE_OK ){ sqlite3Fts3ExprFree(*ppExpr); *ppExpr = 0; if( rc==SQLITE_TOOBIG ){ sqlite3Fts3ErrMsg(pzErr, "FTS expression tree is too large (maximum depth %d)", SQLITE_FTS3_MAX_EXPR_DEPTH ); rc = SQLITE_ERROR; }else if( rc==SQLITE_ERROR ){ sqlite3Fts3ErrMsg(pzErr, "malformed MATCH expression: [%s]", z); } } return rc; } /* ** Free a single node of an expression tree. */ static void fts3FreeExprNode(Fts3Expr *p){ assert( p->eType==FTSQUERY_PHRASE || p->pPhrase==0 ); sqlite3Fts3EvalPhraseCleanup(p->pPhrase); sqlite3_free(p->aMI); sqlite3_free(p); } /* ** Free a parsed fts3 query expression allocated by sqlite3Fts3ExprParse(). ** ** This function would be simpler if it recursively called itself. But ** that would mean passing a sufficiently large expression to ExprParse() ** could cause a stack overflow. */ SQLITE_PRIVATE void sqlite3Fts3ExprFree(Fts3Expr *pDel){ Fts3Expr *p; assert( pDel==0 || pDel->pParent==0 ); for(p=pDel; p && (p->pLeft||p->pRight); p=(p->pLeft ? p->pLeft : p->pRight)){ assert( p->pParent==0 || p==p->pParent->pRight || p==p->pParent->pLeft ); } while( p ){ Fts3Expr *pParent = p->pParent; fts3FreeExprNode(p); if( pParent && p==pParent->pLeft && pParent->pRight ){ p = pParent->pRight; while( p && (p->pLeft || p->pRight) ){ assert( p==p->pParent->pRight || p==p->pParent->pLeft ); p = (p->pLeft ? p->pLeft : p->pRight); } }else{ p = pParent; } } } /**************************************************************************** ***************************************************************************** ** Everything after this point is just test code. */ #ifdef SQLITE_TEST /* #include */ /* ** Return a pointer to a buffer containing a text representation of the ** expression passed as the first argument. The buffer is obtained from ** sqlite3_malloc(). It is the responsibility of the caller to use ** sqlite3_free() to release the memory. If an OOM condition is encountered, ** NULL is returned. ** ** If the second argument is not NULL, then its contents are prepended to ** the returned expression text and then freed using sqlite3_free(). */ static char *exprToString(Fts3Expr *pExpr, char *zBuf){ if( pExpr==0 ){ return sqlite3_mprintf(""); } switch( pExpr->eType ){ case FTSQUERY_PHRASE: { Fts3Phrase *pPhrase = pExpr->pPhrase; int i; zBuf = sqlite3_mprintf( "%zPHRASE %d 0", zBuf, pPhrase->iColumn); for(i=0; zBuf && inToken; i++){ zBuf = sqlite3_mprintf("%z %.*s%s", zBuf, pPhrase->aToken[i].n, pPhrase->aToken[i].z, (pPhrase->aToken[i].isPrefix?"+":"") ); } return zBuf; } case FTSQUERY_NEAR: zBuf = sqlite3_mprintf("%zNEAR/%d ", zBuf, pExpr->nNear); break; case FTSQUERY_NOT: zBuf = sqlite3_mprintf("%zNOT ", zBuf); break; case FTSQUERY_AND: zBuf = sqlite3_mprintf("%zAND ", zBuf); break; case FTSQUERY_OR: zBuf = sqlite3_mprintf("%zOR ", zBuf); break; } if( zBuf ) zBuf = sqlite3_mprintf("%z{", zBuf); if( zBuf ) zBuf = exprToString(pExpr->pLeft, zBuf); if( zBuf ) zBuf = sqlite3_mprintf("%z} {", zBuf); if( zBuf ) zBuf = exprToString(pExpr->pRight, zBuf); if( zBuf ) zBuf = sqlite3_mprintf("%z}", zBuf); return zBuf; } /* ** This is the implementation of a scalar SQL function used to test the ** expression parser. It should be called as follows: ** ** fts3_exprtest(, , , ...); ** ** The first argument, , is the name of the fts3 tokenizer used ** to parse the query expression (see README.tokenizers). The second argument ** is the query expression to parse. Each subsequent argument is the name ** of a column of the fts3 table that the query expression may refer to. ** For example: ** ** SELECT fts3_exprtest('simple', 'Bill col2:Bloggs', 'col1', 'col2'); */ static void fts3ExprTestCommon( int bRebalance, sqlite3_context *context, int argc, sqlite3_value **argv ){ sqlite3_tokenizer *pTokenizer = 0; int rc; char **azCol = 0; const char *zExpr; int nExpr; int nCol; int ii; Fts3Expr *pExpr; char *zBuf = 0; Fts3Hash *pHash = (Fts3Hash*)sqlite3_user_data(context); const char *zTokenizer = 0; char *zErr = 0; if( argc<3 ){ sqlite3_result_error(context, "Usage: fts3_exprtest(tokenizer, expr, col1, ...", -1 ); return; } zTokenizer = (const char*)sqlite3_value_text(argv[0]); rc = sqlite3Fts3InitTokenizer(pHash, zTokenizer, &pTokenizer, &zErr); if( rc!=SQLITE_OK ){ if( rc==SQLITE_NOMEM ){ sqlite3_result_error_nomem(context); }else{ sqlite3_result_error(context, zErr, -1); } sqlite3_free(zErr); return; } zExpr = (const char *)sqlite3_value_text(argv[1]); nExpr = sqlite3_value_bytes(argv[1]); nCol = argc-2; azCol = (char **)sqlite3_malloc64(nCol*sizeof(char *)); if( !azCol ){ sqlite3_result_error_nomem(context); goto exprtest_out; } for(ii=0; iipModule->xDestroy(pTokenizer); } sqlite3_free(azCol); } static void fts3ExprTest( sqlite3_context *context, int argc, sqlite3_value **argv ){ fts3ExprTestCommon(0, context, argc, argv); } static void fts3ExprTestRebalance( sqlite3_context *context, int argc, sqlite3_value **argv ){ fts3ExprTestCommon(1, context, argc, argv); } /* ** Register the query expression parser test function fts3_exprtest() ** with database connection db. */ SQLITE_PRIVATE int sqlite3Fts3ExprInitTestInterface(sqlite3 *db, Fts3Hash *pHash){ int rc = sqlite3_create_function( db, "fts3_exprtest", -1, SQLITE_UTF8, (void*)pHash, fts3ExprTest, 0, 0 ); if( rc==SQLITE_OK ){ rc = sqlite3_create_function(db, "fts3_exprtest_rebalance", -1, SQLITE_UTF8, (void*)pHash, fts3ExprTestRebalance, 0, 0 ); } return rc; } #endif #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_expr.c *******************************************/ /************** Begin file fts3_hash.c ***************************************/ /* ** 2001 September 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This is the implementation of generic hash-tables used in SQLite. ** We've modified it slightly to serve as a standalone hash table ** implementation for the full-text indexing module. */ /* ** The code in this file is only compiled if: ** ** * The FTS3 module is being built as an extension ** (in which case SQLITE_CORE is not defined), or ** ** * The FTS3 module is being built into the core of ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* #include */ /* #include "fts3_hash.h" */ /* ** Malloc and Free functions */ static void *fts3HashMalloc(sqlite3_int64 n){ void *p = sqlite3_malloc64(n); if( p ){ memset(p, 0, n); } return p; } static void fts3HashFree(void *p){ sqlite3_free(p); } /* Turn bulk memory into a hash table object by initializing the ** fields of the Hash structure. ** ** "pNew" is a pointer to the hash table that is to be initialized. ** keyClass is one of the constants ** FTS3_HASH_BINARY or FTS3_HASH_STRING. The value of keyClass ** determines what kind of key the hash table will use. "copyKey" is ** true if the hash table should make its own private copy of keys and ** false if it should just use the supplied pointer. */ SQLITE_PRIVATE void sqlite3Fts3HashInit(Fts3Hash *pNew, char keyClass, char copyKey){ assert( pNew!=0 ); assert( keyClass>=FTS3_HASH_STRING && keyClass<=FTS3_HASH_BINARY ); pNew->keyClass = keyClass; pNew->copyKey = copyKey; pNew->first = 0; pNew->count = 0; pNew->htsize = 0; pNew->ht = 0; } /* Remove all entries from a hash table. Reclaim all memory. ** Call this routine to delete a hash table or to reset a hash table ** to the empty state. */ SQLITE_PRIVATE void sqlite3Fts3HashClear(Fts3Hash *pH){ Fts3HashElem *elem; /* For looping over all elements of the table */ assert( pH!=0 ); elem = pH->first; pH->first = 0; fts3HashFree(pH->ht); pH->ht = 0; pH->htsize = 0; while( elem ){ Fts3HashElem *next_elem = elem->next; if( pH->copyKey && elem->pKey ){ fts3HashFree(elem->pKey); } fts3HashFree(elem); elem = next_elem; } pH->count = 0; } /* ** Hash and comparison functions when the mode is FTS3_HASH_STRING */ static int fts3StrHash(const void *pKey, int nKey){ const char *z = (const char *)pKey; unsigned h = 0; if( nKey<=0 ) nKey = (int) strlen(z); while( nKey > 0 ){ h = (h<<3) ^ h ^ *z++; nKey--; } return (int)(h & 0x7fffffff); } static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){ if( n1!=n2 ) return 1; return strncmp((const char*)pKey1,(const char*)pKey2,n1); } /* ** Hash and comparison functions when the mode is FTS3_HASH_BINARY */ static int fts3BinHash(const void *pKey, int nKey){ int h = 0; const char *z = (const char *)pKey; while( nKey-- > 0 ){ h = (h<<3) ^ h ^ *(z++); } return h & 0x7fffffff; } static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){ if( n1!=n2 ) return 1; return memcmp(pKey1,pKey2,n1); } /* ** Return a pointer to the appropriate hash function given the key class. ** ** The C syntax in this function definition may be unfamilar to some ** programmers, so we provide the following additional explanation: ** ** The name of the function is "ftsHashFunction". The function takes a ** single parameter "keyClass". The return value of ftsHashFunction() ** is a pointer to another function. Specifically, the return value ** of ftsHashFunction() is a pointer to a function that takes two parameters ** with types "const void*" and "int" and returns an "int". */ static int (*ftsHashFunction(int keyClass))(const void*,int){ if( keyClass==FTS3_HASH_STRING ){ return &fts3StrHash; }else{ assert( keyClass==FTS3_HASH_BINARY ); return &fts3BinHash; } } /* ** Return a pointer to the appropriate hash function given the key class. ** ** For help in interpreted the obscure C code in the function definition, ** see the header comment on the previous function. */ static int (*ftsCompareFunction(int keyClass))(const void*,int,const void*,int){ if( keyClass==FTS3_HASH_STRING ){ return &fts3StrCompare; }else{ assert( keyClass==FTS3_HASH_BINARY ); return &fts3BinCompare; } } /* Link an element into the hash table */ static void fts3HashInsertElement( Fts3Hash *pH, /* The complete hash table */ struct _fts3ht *pEntry, /* The entry into which pNew is inserted */ Fts3HashElem *pNew /* The element to be inserted */ ){ Fts3HashElem *pHead; /* First element already in pEntry */ pHead = pEntry->chain; if( pHead ){ pNew->next = pHead; pNew->prev = pHead->prev; if( pHead->prev ){ pHead->prev->next = pNew; } else { pH->first = pNew; } pHead->prev = pNew; }else{ pNew->next = pH->first; if( pH->first ){ pH->first->prev = pNew; } pNew->prev = 0; pH->first = pNew; } pEntry->count++; pEntry->chain = pNew; } /* Resize the hash table so that it cantains "new_size" buckets. ** "new_size" must be a power of 2. The hash table might fail ** to resize if sqliteMalloc() fails. ** ** Return non-zero if a memory allocation error occurs. */ static int fts3Rehash(Fts3Hash *pH, int new_size){ struct _fts3ht *new_ht; /* The new hash table */ Fts3HashElem *elem, *next_elem; /* For looping over existing elements */ int (*xHash)(const void*,int); /* The hash function */ assert( (new_size & (new_size-1))==0 ); new_ht = (struct _fts3ht *)fts3HashMalloc( new_size*sizeof(struct _fts3ht) ); if( new_ht==0 ) return 1; fts3HashFree(pH->ht); pH->ht = new_ht; pH->htsize = new_size; xHash = ftsHashFunction(pH->keyClass); for(elem=pH->first, pH->first=0; elem; elem = next_elem){ int h = (*xHash)(elem->pKey, elem->nKey) & (new_size-1); next_elem = elem->next; fts3HashInsertElement(pH, &new_ht[h], elem); } return 0; } /* This function (for internal use only) locates an element in an ** hash table that matches the given key. The hash for this key has ** already been computed and is passed as the 4th parameter. */ static Fts3HashElem *fts3FindElementByHash( const Fts3Hash *pH, /* The pH to be searched */ const void *pKey, /* The key we are searching for */ int nKey, int h /* The hash for this key. */ ){ Fts3HashElem *elem; /* Used to loop thru the element list */ int count; /* Number of elements left to test */ int (*xCompare)(const void*,int,const void*,int); /* comparison function */ if( pH->ht ){ struct _fts3ht *pEntry = &pH->ht[h]; elem = pEntry->chain; count = pEntry->count; xCompare = ftsCompareFunction(pH->keyClass); while( count-- && elem ){ if( (*xCompare)(elem->pKey,elem->nKey,pKey,nKey)==0 ){ return elem; } elem = elem->next; } } return 0; } /* Remove a single entry from the hash table given a pointer to that ** element and a hash on the element's key. */ static void fts3RemoveElementByHash( Fts3Hash *pH, /* The pH containing "elem" */ Fts3HashElem* elem, /* The element to be removed from the pH */ int h /* Hash value for the element */ ){ struct _fts3ht *pEntry; if( elem->prev ){ elem->prev->next = elem->next; }else{ pH->first = elem->next; } if( elem->next ){ elem->next->prev = elem->prev; } pEntry = &pH->ht[h]; if( pEntry->chain==elem ){ pEntry->chain = elem->next; } pEntry->count--; if( pEntry->count<=0 ){ pEntry->chain = 0; } if( pH->copyKey && elem->pKey ){ fts3HashFree(elem->pKey); } fts3HashFree( elem ); pH->count--; if( pH->count<=0 ){ assert( pH->first==0 ); assert( pH->count==0 ); fts3HashClear(pH); } } SQLITE_PRIVATE Fts3HashElem *sqlite3Fts3HashFindElem( const Fts3Hash *pH, const void *pKey, int nKey ){ int h; /* A hash on key */ int (*xHash)(const void*,int); /* The hash function */ if( pH==0 || pH->ht==0 ) return 0; xHash = ftsHashFunction(pH->keyClass); assert( xHash!=0 ); h = (*xHash)(pKey,nKey); assert( (pH->htsize & (pH->htsize-1))==0 ); return fts3FindElementByHash(pH,pKey,nKey, h & (pH->htsize-1)); } /* ** Attempt to locate an element of the hash table pH with a key ** that matches pKey,nKey. Return the data for this element if it is ** found, or NULL if there is no match. */ SQLITE_PRIVATE void *sqlite3Fts3HashFind(const Fts3Hash *pH, const void *pKey, int nKey){ Fts3HashElem *pElem; /* The element that matches key (if any) */ pElem = sqlite3Fts3HashFindElem(pH, pKey, nKey); return pElem ? pElem->data : 0; } /* Insert an element into the hash table pH. The key is pKey,nKey ** and the data is "data". ** ** If no element exists with a matching key, then a new ** element is created. A copy of the key is made if the copyKey ** flag is set. NULL is returned. ** ** If another element already exists with the same key, then the ** new data replaces the old data and the old data is returned. ** The key is not copied in this instance. If a malloc fails, then ** the new data is returned and the hash table is unchanged. ** ** If the "data" parameter to this function is NULL, then the ** element corresponding to "key" is removed from the hash table. */ SQLITE_PRIVATE void *sqlite3Fts3HashInsert( Fts3Hash *pH, /* The hash table to insert into */ const void *pKey, /* The key */ int nKey, /* Number of bytes in the key */ void *data /* The data */ ){ int hraw; /* Raw hash value of the key */ int h; /* the hash of the key modulo hash table size */ Fts3HashElem *elem; /* Used to loop thru the element list */ Fts3HashElem *new_elem; /* New element added to the pH */ int (*xHash)(const void*,int); /* The hash function */ assert( pH!=0 ); xHash = ftsHashFunction(pH->keyClass); assert( xHash!=0 ); hraw = (*xHash)(pKey, nKey); assert( (pH->htsize & (pH->htsize-1))==0 ); h = hraw & (pH->htsize-1); elem = fts3FindElementByHash(pH,pKey,nKey,h); if( elem ){ void *old_data = elem->data; if( data==0 ){ fts3RemoveElementByHash(pH,elem,h); }else{ elem->data = data; } return old_data; } if( data==0 ) return 0; if( (pH->htsize==0 && fts3Rehash(pH,8)) || (pH->count>=pH->htsize && fts3Rehash(pH, pH->htsize*2)) ){ pH->count = 0; return data; } assert( pH->htsize>0 ); new_elem = (Fts3HashElem*)fts3HashMalloc( sizeof(Fts3HashElem) ); if( new_elem==0 ) return data; if( pH->copyKey && pKey!=0 ){ new_elem->pKey = fts3HashMalloc( nKey ); if( new_elem->pKey==0 ){ fts3HashFree(new_elem); return data; } memcpy((void*)new_elem->pKey, pKey, nKey); }else{ new_elem->pKey = (void*)pKey; } new_elem->nKey = nKey; pH->count++; assert( pH->htsize>0 ); assert( (pH->htsize & (pH->htsize-1))==0 ); h = hraw & (pH->htsize-1); fts3HashInsertElement(pH, &pH->ht[h], new_elem); new_elem->data = data; return 0; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_hash.c *******************************************/ /************** Begin file fts3_porter.c *************************************/ /* ** 2006 September 30 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** Implementation of the full-text-search tokenizer that implements ** a Porter stemmer. */ /* ** The code in this file is only compiled if: ** ** * The FTS3 module is being built as an extension ** (in which case SQLITE_CORE is not defined), or ** ** * The FTS3 module is being built into the core of ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* #include */ /* #include */ /* #include "fts3_tokenizer.h" */ /* ** Class derived from sqlite3_tokenizer */ typedef struct porter_tokenizer { sqlite3_tokenizer base; /* Base class */ } porter_tokenizer; /* ** Class derived from sqlite3_tokenizer_cursor */ typedef struct porter_tokenizer_cursor { sqlite3_tokenizer_cursor base; const char *zInput; /* input we are tokenizing */ int nInput; /* size of the input */ int iOffset; /* current position in zInput */ int iToken; /* index of next token to be returned */ char *zToken; /* storage for current token */ int nAllocated; /* space allocated to zToken buffer */ } porter_tokenizer_cursor; /* ** Create a new tokenizer instance. */ static int porterCreate( int argc, const char * const *argv, sqlite3_tokenizer **ppTokenizer ){ porter_tokenizer *t; UNUSED_PARAMETER(argc); UNUSED_PARAMETER(argv); t = (porter_tokenizer *) sqlite3_malloc(sizeof(*t)); if( t==NULL ) return SQLITE_NOMEM; memset(t, 0, sizeof(*t)); *ppTokenizer = &t->base; return SQLITE_OK; } /* ** Destroy a tokenizer */ static int porterDestroy(sqlite3_tokenizer *pTokenizer){ sqlite3_free(pTokenizer); return SQLITE_OK; } /* ** Prepare to begin tokenizing a particular string. The input ** string to be tokenized is zInput[0..nInput-1]. A cursor ** used to incrementally tokenize this string is returned in ** *ppCursor. */ static int porterOpen( sqlite3_tokenizer *pTokenizer, /* The tokenizer */ const char *zInput, int nInput, /* String to be tokenized */ sqlite3_tokenizer_cursor **ppCursor /* OUT: Tokenization cursor */ ){ porter_tokenizer_cursor *c; UNUSED_PARAMETER(pTokenizer); c = (porter_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); if( c==NULL ) return SQLITE_NOMEM; c->zInput = zInput; if( zInput==0 ){ c->nInput = 0; }else if( nInput<0 ){ c->nInput = (int)strlen(zInput); }else{ c->nInput = nInput; } c->iOffset = 0; /* start tokenizing at the beginning */ c->iToken = 0; c->zToken = NULL; /* no space allocated, yet. */ c->nAllocated = 0; *ppCursor = &c->base; return SQLITE_OK; } /* ** Close a tokenization cursor previously opened by a call to ** porterOpen() above. */ static int porterClose(sqlite3_tokenizer_cursor *pCursor){ porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; sqlite3_free(c->zToken); sqlite3_free(c); return SQLITE_OK; } /* ** Vowel or consonant */ static const char cType[] = { 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1 }; /* ** isConsonant() and isVowel() determine if their first character in ** the string they point to is a consonant or a vowel, according ** to Porter ruls. ** ** A consonate is any letter other than 'a', 'e', 'i', 'o', or 'u'. ** 'Y' is a consonant unless it follows another consonant, ** in which case it is a vowel. ** ** In these routine, the letters are in reverse order. So the 'y' rule ** is that 'y' is a consonant unless it is followed by another ** consonent. */ static int isVowel(const char*); static int isConsonant(const char *z){ int j; char x = *z; if( x==0 ) return 0; assert( x>='a' && x<='z' ); j = cType[x-'a']; if( j<2 ) return j; return z[1]==0 || isVowel(z + 1); } static int isVowel(const char *z){ int j; char x = *z; if( x==0 ) return 0; assert( x>='a' && x<='z' ); j = cType[x-'a']; if( j<2 ) return 1-j; return isConsonant(z + 1); } /* ** Let any sequence of one or more vowels be represented by V and let ** C be sequence of one or more consonants. Then every word can be ** represented as: ** ** [C] (VC){m} [V] ** ** In prose: A word is an optional consonant followed by zero or ** vowel-consonant pairs followed by an optional vowel. "m" is the ** number of vowel consonant pairs. This routine computes the value ** of m for the first i bytes of a word. ** ** Return true if the m-value for z is 1 or more. In other words, ** return true if z contains at least one vowel that is followed ** by a consonant. ** ** In this routine z[] is in reverse order. So we are really looking ** for an instance of a consonant followed by a vowel. */ static int m_gt_0(const char *z){ while( isVowel(z) ){ z++; } if( *z==0 ) return 0; while( isConsonant(z) ){ z++; } return *z!=0; } /* Like mgt0 above except we are looking for a value of m which is ** exactly 1 */ static int m_eq_1(const char *z){ while( isVowel(z) ){ z++; } if( *z==0 ) return 0; while( isConsonant(z) ){ z++; } if( *z==0 ) return 0; while( isVowel(z) ){ z++; } if( *z==0 ) return 1; while( isConsonant(z) ){ z++; } return *z==0; } /* Like mgt0 above except we are looking for a value of m>1 instead ** or m>0 */ static int m_gt_1(const char *z){ while( isVowel(z) ){ z++; } if( *z==0 ) return 0; while( isConsonant(z) ){ z++; } if( *z==0 ) return 0; while( isVowel(z) ){ z++; } if( *z==0 ) return 0; while( isConsonant(z) ){ z++; } return *z!=0; } /* ** Return TRUE if there is a vowel anywhere within z[0..n-1] */ static int hasVowel(const char *z){ while( isConsonant(z) ){ z++; } return *z!=0; } /* ** Return TRUE if the word ends in a double consonant. ** ** The text is reversed here. So we are really looking at ** the first two characters of z[]. */ static int doubleConsonant(const char *z){ return isConsonant(z) && z[0]==z[1]; } /* ** Return TRUE if the word ends with three letters which ** are consonant-vowel-consonent and where the final consonant ** is not 'w', 'x', or 'y'. ** ** The word is reversed here. So we are really checking the ** first three letters and the first one cannot be in [wxy]. */ static int star_oh(const char *z){ return isConsonant(z) && z[0]!='w' && z[0]!='x' && z[0]!='y' && isVowel(z+1) && isConsonant(z+2); } /* ** If the word ends with zFrom and xCond() is true for the stem ** of the word that preceeds the zFrom ending, then change the ** ending to zTo. ** ** The input word *pz and zFrom are both in reverse order. zTo ** is in normal order. ** ** Return TRUE if zFrom matches. Return FALSE if zFrom does not ** match. Not that TRUE is returned even if xCond() fails and ** no substitution occurs. */ static int stem( char **pz, /* The word being stemmed (Reversed) */ const char *zFrom, /* If the ending matches this... (Reversed) */ const char *zTo, /* ... change the ending to this (not reversed) */ int (*xCond)(const char*) /* Condition that must be true */ ){ char *z = *pz; while( *zFrom && *zFrom==*z ){ z++; zFrom++; } if( *zFrom!=0 ) return 0; if( xCond && !xCond(z) ) return 1; while( *zTo ){ *(--z) = *(zTo++); } *pz = z; return 1; } /* ** This is the fallback stemmer used when the porter stemmer is ** inappropriate. The input word is copied into the output with ** US-ASCII case folding. If the input word is too long (more ** than 20 bytes if it contains no digits or more than 6 bytes if ** it contains digits) then word is truncated to 20 or 6 bytes ** by taking 10 or 3 bytes from the beginning and end. */ static void copy_stemmer(const char *zIn, int nIn, char *zOut, int *pnOut){ int i, mx, j; int hasDigit = 0; for(i=0; i='A' && c<='Z' ){ zOut[i] = c - 'A' + 'a'; }else{ if( c>='0' && c<='9' ) hasDigit = 1; zOut[i] = c; } } mx = hasDigit ? 3 : 10; if( nIn>mx*2 ){ for(j=mx, i=nIn-mx; i=(int)sizeof(zReverse)-7 ){ /* The word is too big or too small for the porter stemmer. ** Fallback to the copy stemmer */ copy_stemmer(zIn, nIn, zOut, pnOut); return; } for(i=0, j=sizeof(zReverse)-6; i='A' && c<='Z' ){ zReverse[j] = c + 'a' - 'A'; }else if( c>='a' && c<='z' ){ zReverse[j] = c; }else{ /* The use of a character not in [a-zA-Z] means that we fallback ** to the copy stemmer */ copy_stemmer(zIn, nIn, zOut, pnOut); return; } } memset(&zReverse[sizeof(zReverse)-5], 0, 5); z = &zReverse[j+1]; /* Step 1a */ if( z[0]=='s' ){ if( !stem(&z, "sess", "ss", 0) && !stem(&z, "sei", "i", 0) && !stem(&z, "ss", "ss", 0) ){ z++; } } /* Step 1b */ z2 = z; if( stem(&z, "dee", "ee", m_gt_0) ){ /* Do nothing. The work was all in the test */ }else if( (stem(&z, "gni", "", hasVowel) || stem(&z, "de", "", hasVowel)) && z!=z2 ){ if( stem(&z, "ta", "ate", 0) || stem(&z, "lb", "ble", 0) || stem(&z, "zi", "ize", 0) ){ /* Do nothing. The work was all in the test */ }else if( doubleConsonant(z) && (*z!='l' && *z!='s' && *z!='z') ){ z++; }else if( m_eq_1(z) && star_oh(z) ){ *(--z) = 'e'; } } /* Step 1c */ if( z[0]=='y' && hasVowel(z+1) ){ z[0] = 'i'; } /* Step 2 */ switch( z[1] ){ case 'a': if( !stem(&z, "lanoita", "ate", m_gt_0) ){ stem(&z, "lanoit", "tion", m_gt_0); } break; case 'c': if( !stem(&z, "icne", "ence", m_gt_0) ){ stem(&z, "icna", "ance", m_gt_0); } break; case 'e': stem(&z, "rezi", "ize", m_gt_0); break; case 'g': stem(&z, "igol", "log", m_gt_0); break; case 'l': if( !stem(&z, "ilb", "ble", m_gt_0) && !stem(&z, "illa", "al", m_gt_0) && !stem(&z, "iltne", "ent", m_gt_0) && !stem(&z, "ile", "e", m_gt_0) ){ stem(&z, "ilsuo", "ous", m_gt_0); } break; case 'o': if( !stem(&z, "noitazi", "ize", m_gt_0) && !stem(&z, "noita", "ate", m_gt_0) ){ stem(&z, "rota", "ate", m_gt_0); } break; case 's': if( !stem(&z, "msila", "al", m_gt_0) && !stem(&z, "ssenevi", "ive", m_gt_0) && !stem(&z, "ssenluf", "ful", m_gt_0) ){ stem(&z, "ssensuo", "ous", m_gt_0); } break; case 't': if( !stem(&z, "itila", "al", m_gt_0) && !stem(&z, "itivi", "ive", m_gt_0) ){ stem(&z, "itilib", "ble", m_gt_0); } break; } /* Step 3 */ switch( z[0] ){ case 'e': if( !stem(&z, "etaci", "ic", m_gt_0) && !stem(&z, "evita", "", m_gt_0) ){ stem(&z, "ezila", "al", m_gt_0); } break; case 'i': stem(&z, "itici", "ic", m_gt_0); break; case 'l': if( !stem(&z, "laci", "ic", m_gt_0) ){ stem(&z, "luf", "", m_gt_0); } break; case 's': stem(&z, "ssen", "", m_gt_0); break; } /* Step 4 */ switch( z[1] ){ case 'a': if( z[0]=='l' && m_gt_1(z+2) ){ z += 2; } break; case 'c': if( z[0]=='e' && z[2]=='n' && (z[3]=='a' || z[3]=='e') && m_gt_1(z+4) ){ z += 4; } break; case 'e': if( z[0]=='r' && m_gt_1(z+2) ){ z += 2; } break; case 'i': if( z[0]=='c' && m_gt_1(z+2) ){ z += 2; } break; case 'l': if( z[0]=='e' && z[2]=='b' && (z[3]=='a' || z[3]=='i') && m_gt_1(z+4) ){ z += 4; } break; case 'n': if( z[0]=='t' ){ if( z[2]=='a' ){ if( m_gt_1(z+3) ){ z += 3; } }else if( z[2]=='e' ){ if( !stem(&z, "tneme", "", m_gt_1) && !stem(&z, "tnem", "", m_gt_1) ){ stem(&z, "tne", "", m_gt_1); } } } break; case 'o': if( z[0]=='u' ){ if( m_gt_1(z+2) ){ z += 2; } }else if( z[3]=='s' || z[3]=='t' ){ stem(&z, "noi", "", m_gt_1); } break; case 's': if( z[0]=='m' && z[2]=='i' && m_gt_1(z+3) ){ z += 3; } break; case 't': if( !stem(&z, "eta", "", m_gt_1) ){ stem(&z, "iti", "", m_gt_1); } break; case 'u': if( z[0]=='s' && z[2]=='o' && m_gt_1(z+3) ){ z += 3; } break; case 'v': case 'z': if( z[0]=='e' && z[2]=='i' && m_gt_1(z+3) ){ z += 3; } break; } /* Step 5a */ if( z[0]=='e' ){ if( m_gt_1(z+1) ){ z++; }else if( m_eq_1(z+1) && !star_oh(z+1) ){ z++; } } /* Step 5b */ if( m_gt_1(z) && z[0]=='l' && z[1]=='l' ){ z++; } /* z[] is now the stemmed word in reverse order. Flip it back ** around into forward order and return. */ *pnOut = i = (int)strlen(z); zOut[i] = 0; while( *z ){ zOut[--i] = *(z++); } } /* ** Characters that can be part of a token. We assume any character ** whose value is greater than 0x80 (any UTF character) can be ** part of a token. In other words, delimiters all must have ** values of 0x7f or lower. */ static const char porterIdChar[] = { /* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 3x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 4x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, /* 5x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 6x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, /* 7x */ }; #define isDelim(C) (((ch=C)&0x80)==0 && (ch<0x30 || !porterIdChar[ch-0x30])) /* ** Extract the next token from a tokenization cursor. The cursor must ** have been opened by a prior call to porterOpen(). */ static int porterNext( sqlite3_tokenizer_cursor *pCursor, /* Cursor returned by porterOpen */ const char **pzToken, /* OUT: *pzToken is the token text */ int *pnBytes, /* OUT: Number of bytes in token */ int *piStartOffset, /* OUT: Starting offset of token */ int *piEndOffset, /* OUT: Ending offset of token */ int *piPosition /* OUT: Position integer of token */ ){ porter_tokenizer_cursor *c = (porter_tokenizer_cursor *) pCursor; const char *z = c->zInput; while( c->iOffsetnInput ){ int iStartOffset, ch; /* Scan past delimiter characters */ while( c->iOffsetnInput && isDelim(z[c->iOffset]) ){ c->iOffset++; } /* Count non-delimiter characters. */ iStartOffset = c->iOffset; while( c->iOffsetnInput && !isDelim(z[c->iOffset]) ){ c->iOffset++; } if( c->iOffset>iStartOffset ){ int n = c->iOffset-iStartOffset; if( n>c->nAllocated ){ char *pNew; c->nAllocated = n+20; pNew = sqlite3_realloc(c->zToken, c->nAllocated); if( !pNew ) return SQLITE_NOMEM; c->zToken = pNew; } porter_stemmer(&z[iStartOffset], n, c->zToken, pnBytes); *pzToken = c->zToken; *piStartOffset = iStartOffset; *piEndOffset = c->iOffset; *piPosition = c->iToken++; return SQLITE_OK; } } return SQLITE_DONE; } /* ** The set of routines that implement the porter-stemmer tokenizer */ static const sqlite3_tokenizer_module porterTokenizerModule = { 0, porterCreate, porterDestroy, porterOpen, porterClose, porterNext, 0 }; /* ** Allocate a new porter tokenizer. Return a pointer to the new ** tokenizer in *ppModule */ SQLITE_PRIVATE void sqlite3Fts3PorterTokenizerModule( sqlite3_tokenizer_module const**ppModule ){ *ppModule = &porterTokenizerModule; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_porter.c *****************************************/ /************** Begin file fts3_tokenizer.c **********************************/ /* ** 2007 June 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This is part of an SQLite module implementing full-text search. ** This particular file implements the generic tokenizer interface. */ /* ** The code in this file is only compiled if: ** ** * The FTS3 module is being built as an extension ** (in which case SQLITE_CORE is not defined), or ** ** * The FTS3 module is being built into the core of ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* ** Return true if the two-argument version of fts3_tokenizer() ** has been activated via a prior call to sqlite3_db_config(db, ** SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER, 1, 0); */ static int fts3TokenizerEnabled(sqlite3_context *context){ sqlite3 *db = sqlite3_context_db_handle(context); int isEnabled = 0; sqlite3_db_config(db,SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER,-1,&isEnabled); return isEnabled; } /* ** Implementation of the SQL scalar function for accessing the underlying ** hash table. This function may be called as follows: ** ** SELECT (); ** SELECT (, ); ** ** where is the name passed as the second argument ** to the sqlite3Fts3InitHashTable() function (e.g. 'fts3_tokenizer'). ** ** If the argument is specified, it must be a blob value ** containing a pointer to be stored as the hash data corresponding ** to the string . If is not specified, then ** the string must already exist in the has table. Otherwise, ** an error is returned. ** ** Whether or not the argument is specified, the value returned ** is a blob containing the pointer stored as the hash data corresponding ** to string (after the hash-table is updated, if applicable). */ static void fts3TokenizerFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ Fts3Hash *pHash; void *pPtr = 0; const unsigned char *zName; int nName; assert( argc==1 || argc==2 ); pHash = (Fts3Hash *)sqlite3_user_data(context); zName = sqlite3_value_text(argv[0]); nName = sqlite3_value_bytes(argv[0])+1; if( argc==2 ){ if( fts3TokenizerEnabled(context) || sqlite3_value_frombind(argv[1]) ){ void *pOld; int n = sqlite3_value_bytes(argv[1]); if( zName==0 || n!=sizeof(pPtr) ){ sqlite3_result_error(context, "argument type mismatch", -1); return; } pPtr = *(void **)sqlite3_value_blob(argv[1]); pOld = sqlite3Fts3HashInsert(pHash, (void *)zName, nName, pPtr); if( pOld==pPtr ){ sqlite3_result_error(context, "out of memory", -1); } }else{ sqlite3_result_error(context, "fts3tokenize disabled", -1); return; } }else{ if( zName ){ pPtr = sqlite3Fts3HashFind(pHash, zName, nName); } if( !pPtr ){ char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName); sqlite3_result_error(context, zErr, -1); sqlite3_free(zErr); return; } } if( fts3TokenizerEnabled(context) || sqlite3_value_frombind(argv[0]) ){ sqlite3_result_blob(context, (void *)&pPtr, sizeof(pPtr), SQLITE_TRANSIENT); } } SQLITE_PRIVATE int sqlite3Fts3IsIdChar(char c){ static const char isFtsIdChar[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 1x */ 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 2x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 3x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 4x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, /* 5x */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 6x */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, /* 7x */ }; return (c&0x80 || isFtsIdChar[(int)(c)]); } SQLITE_PRIVATE const char *sqlite3Fts3NextToken(const char *zStr, int *pn){ const char *z1; const char *z2 = 0; /* Find the start of the next token. */ z1 = zStr; while( z2==0 ){ char c = *z1; switch( c ){ case '\0': return 0; /* No more tokens here */ case '\'': case '"': case '`': { z2 = z1; while( *++z2 && (*z2!=c || *++z2==c) ); break; } case '[': z2 = &z1[1]; while( *z2 && z2[0]!=']' ) z2++; if( *z2 ) z2++; break; default: if( sqlite3Fts3IsIdChar(*z1) ){ z2 = &z1[1]; while( sqlite3Fts3IsIdChar(*z2) ) z2++; }else{ z1++; } } } *pn = (int)(z2-z1); return z1; } SQLITE_PRIVATE int sqlite3Fts3InitTokenizer( Fts3Hash *pHash, /* Tokenizer hash table */ const char *zArg, /* Tokenizer name */ sqlite3_tokenizer **ppTok, /* OUT: Tokenizer (if applicable) */ char **pzErr /* OUT: Set to malloced error message */ ){ int rc; char *z = (char *)zArg; int n = 0; char *zCopy; char *zEnd; /* Pointer to nul-term of zCopy */ sqlite3_tokenizer_module *m; zCopy = sqlite3_mprintf("%s", zArg); if( !zCopy ) return SQLITE_NOMEM; zEnd = &zCopy[strlen(zCopy)]; z = (char *)sqlite3Fts3NextToken(zCopy, &n); if( z==0 ){ assert( n==0 ); z = zCopy; } z[n] = '\0'; sqlite3Fts3Dequote(z); m = (sqlite3_tokenizer_module *)sqlite3Fts3HashFind(pHash,z,(int)strlen(z)+1); if( !m ){ sqlite3Fts3ErrMsg(pzErr, "unknown tokenizer: %s", z); rc = SQLITE_ERROR; }else{ char const **aArg = 0; int iArg = 0; z = &z[n+1]; while( zxCreate(iArg, aArg, ppTok); assert( rc!=SQLITE_OK || *ppTok ); if( rc!=SQLITE_OK ){ sqlite3Fts3ErrMsg(pzErr, "unknown tokenizer"); }else{ (*ppTok)->pModule = m; } sqlite3_free((void *)aArg); } sqlite3_free(zCopy); return rc; } #ifdef SQLITE_TEST #if defined(INCLUDE_SQLITE_TCL_H) # include "sqlite_tcl.h" #else # include "tcl.h" #endif /* #include */ /* ** Implementation of a special SQL scalar function for testing tokenizers ** designed to be used in concert with the Tcl testing framework. This ** function must be called with two or more arguments: ** ** SELECT (, ..., ); ** ** where is the name passed as the second argument ** to the sqlite3Fts3InitHashTable() function (e.g. 'fts3_tokenizer') ** concatenated with the string '_test' (e.g. 'fts3_tokenizer_test'). ** ** The return value is a string that may be interpreted as a Tcl ** list. For each token in the , three elements are ** added to the returned list. The first is the token position, the ** second is the token text (folded, stemmed, etc.) and the third is the ** substring of associated with the token. For example, ** using the built-in "simple" tokenizer: ** ** SELECT fts_tokenizer_test('simple', 'I don't see how'); ** ** will return the string: ** ** "{0 i I 1 dont don't 2 see see 3 how how}" ** */ static void testFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ Fts3Hash *pHash; sqlite3_tokenizer_module *p; sqlite3_tokenizer *pTokenizer = 0; sqlite3_tokenizer_cursor *pCsr = 0; const char *zErr = 0; const char *zName; int nName; const char *zInput; int nInput; const char *azArg[64]; const char *zToken; int nToken = 0; int iStart = 0; int iEnd = 0; int iPos = 0; int i; Tcl_Obj *pRet; if( argc<2 ){ sqlite3_result_error(context, "insufficient arguments", -1); return; } nName = sqlite3_value_bytes(argv[0]); zName = (const char *)sqlite3_value_text(argv[0]); nInput = sqlite3_value_bytes(argv[argc-1]); zInput = (const char *)sqlite3_value_text(argv[argc-1]); pHash = (Fts3Hash *)sqlite3_user_data(context); p = (sqlite3_tokenizer_module *)sqlite3Fts3HashFind(pHash, zName, nName+1); if( !p ){ char *zErr2 = sqlite3_mprintf("unknown tokenizer: %s", zName); sqlite3_result_error(context, zErr2, -1); sqlite3_free(zErr2); return; } pRet = Tcl_NewObj(); Tcl_IncrRefCount(pRet); for(i=1; ixCreate(argc-2, azArg, &pTokenizer) ){ zErr = "error in xCreate()"; goto finish; } pTokenizer->pModule = p; if( sqlite3Fts3OpenTokenizer(pTokenizer, 0, zInput, nInput, &pCsr) ){ zErr = "error in xOpen()"; goto finish; } while( SQLITE_OK==p->xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos) ){ Tcl_ListObjAppendElement(0, pRet, Tcl_NewIntObj(iPos)); Tcl_ListObjAppendElement(0, pRet, Tcl_NewStringObj(zToken, nToken)); zToken = &zInput[iStart]; nToken = iEnd-iStart; Tcl_ListObjAppendElement(0, pRet, Tcl_NewStringObj(zToken, nToken)); } if( SQLITE_OK!=p->xClose(pCsr) ){ zErr = "error in xClose()"; goto finish; } if( SQLITE_OK!=p->xDestroy(pTokenizer) ){ zErr = "error in xDestroy()"; goto finish; } finish: if( zErr ){ sqlite3_result_error(context, zErr, -1); }else{ sqlite3_result_text(context, Tcl_GetString(pRet), -1, SQLITE_TRANSIENT); } Tcl_DecrRefCount(pRet); } static int registerTokenizer( sqlite3 *db, char *zName, const sqlite3_tokenizer_module *p ){ int rc; sqlite3_stmt *pStmt; const char zSql[] = "SELECT fts3_tokenizer(?, ?)"; rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc!=SQLITE_OK ){ return rc; } sqlite3_bind_text(pStmt, 1, zName, -1, SQLITE_STATIC); sqlite3_bind_blob(pStmt, 2, &p, sizeof(p), SQLITE_STATIC); sqlite3_step(pStmt); return sqlite3_finalize(pStmt); } static int queryTokenizer( sqlite3 *db, char *zName, const sqlite3_tokenizer_module **pp ){ int rc; sqlite3_stmt *pStmt; const char zSql[] = "SELECT fts3_tokenizer(?)"; *pp = 0; rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc!=SQLITE_OK ){ return rc; } sqlite3_bind_text(pStmt, 1, zName, -1, SQLITE_STATIC); if( SQLITE_ROW==sqlite3_step(pStmt) ){ if( sqlite3_column_type(pStmt, 0)==SQLITE_BLOB && sqlite3_column_bytes(pStmt, 0)==sizeof(*pp) ){ memcpy((void *)pp, sqlite3_column_blob(pStmt, 0), sizeof(*pp)); } } return sqlite3_finalize(pStmt); } SQLITE_PRIVATE void sqlite3Fts3SimpleTokenizerModule(sqlite3_tokenizer_module const**ppModule); /* ** Implementation of the scalar function fts3_tokenizer_internal_test(). ** This function is used for testing only, it is not included in the ** build unless SQLITE_TEST is defined. ** ** The purpose of this is to test that the fts3_tokenizer() function ** can be used as designed by the C-code in the queryTokenizer and ** registerTokenizer() functions above. These two functions are repeated ** in the README.tokenizer file as an example, so it is important to ** test them. ** ** To run the tests, evaluate the fts3_tokenizer_internal_test() scalar ** function with no arguments. An assert() will fail if a problem is ** detected. i.e.: ** ** SELECT fts3_tokenizer_internal_test(); ** */ static void intTestFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ int rc; const sqlite3_tokenizer_module *p1; const sqlite3_tokenizer_module *p2; sqlite3 *db = (sqlite3 *)sqlite3_user_data(context); UNUSED_PARAMETER(argc); UNUSED_PARAMETER(argv); /* Test the query function */ sqlite3Fts3SimpleTokenizerModule(&p1); rc = queryTokenizer(db, "simple", &p2); assert( rc==SQLITE_OK ); assert( p1==p2 ); rc = queryTokenizer(db, "nosuchtokenizer", &p2); assert( rc==SQLITE_ERROR ); assert( p2==0 ); assert( 0==strcmp(sqlite3_errmsg(db), "unknown tokenizer: nosuchtokenizer") ); /* Test the storage function */ if( fts3TokenizerEnabled(context) ){ rc = registerTokenizer(db, "nosuchtokenizer", p1); assert( rc==SQLITE_OK ); rc = queryTokenizer(db, "nosuchtokenizer", &p2); assert( rc==SQLITE_OK ); assert( p2==p1 ); } sqlite3_result_text(context, "ok", -1, SQLITE_STATIC); } #endif /* ** Set up SQL objects in database db used to access the contents of ** the hash table pointed to by argument pHash. The hash table must ** been initialized to use string keys, and to take a private copy ** of the key when a value is inserted. i.e. by a call similar to: ** ** sqlite3Fts3HashInit(pHash, FTS3_HASH_STRING, 1); ** ** This function adds a scalar function (see header comment above ** fts3TokenizerFunc() in this file for details) and, if ENABLE_TABLE is ** defined at compilation time, a temporary virtual table (see header ** comment above struct HashTableVtab) to the database schema. Both ** provide read/write access to the contents of *pHash. ** ** The third argument to this function, zName, is used as the name ** of both the scalar and, if created, the virtual table. */ SQLITE_PRIVATE int sqlite3Fts3InitHashTable( sqlite3 *db, Fts3Hash *pHash, const char *zName ){ int rc = SQLITE_OK; void *p = (void *)pHash; const int any = SQLITE_UTF8|SQLITE_DIRECTONLY; #ifdef SQLITE_TEST char *zTest = 0; char *zTest2 = 0; void *pdb = (void *)db; zTest = sqlite3_mprintf("%s_test", zName); zTest2 = sqlite3_mprintf("%s_internal_test", zName); if( !zTest || !zTest2 ){ rc = SQLITE_NOMEM; } #endif if( SQLITE_OK==rc ){ rc = sqlite3_create_function(db, zName, 1, any, p, fts3TokenizerFunc, 0, 0); } if( SQLITE_OK==rc ){ rc = sqlite3_create_function(db, zName, 2, any, p, fts3TokenizerFunc, 0, 0); } #ifdef SQLITE_TEST if( SQLITE_OK==rc ){ rc = sqlite3_create_function(db, zTest, -1, any, p, testFunc, 0, 0); } if( SQLITE_OK==rc ){ rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0); } #endif #ifdef SQLITE_TEST sqlite3_free(zTest); sqlite3_free(zTest2); #endif return rc; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_tokenizer.c **************************************/ /************** Begin file fts3_tokenizer1.c *********************************/ /* ** 2006 Oct 10 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** Implementation of the "simple" full-text-search tokenizer. */ /* ** The code in this file is only compiled if: ** ** * The FTS3 module is being built as an extension ** (in which case SQLITE_CORE is not defined), or ** ** * The FTS3 module is being built into the core of ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined). */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* #include */ /* #include */ /* #include "fts3_tokenizer.h" */ typedef struct simple_tokenizer { sqlite3_tokenizer base; char delim[128]; /* flag ASCII delimiters */ } simple_tokenizer; typedef struct simple_tokenizer_cursor { sqlite3_tokenizer_cursor base; const char *pInput; /* input we are tokenizing */ int nBytes; /* size of the input */ int iOffset; /* current position in pInput */ int iToken; /* index of next token to be returned */ char *pToken; /* storage for current token */ int nTokenAllocated; /* space allocated to zToken buffer */ } simple_tokenizer_cursor; static int simpleDelim(simple_tokenizer *t, unsigned char c){ return c<0x80 && t->delim[c]; } static int fts3_isalnum(int x){ return (x>='0' && x<='9') || (x>='A' && x<='Z') || (x>='a' && x<='z'); } /* ** Create a new tokenizer instance. */ static int simpleCreate( int argc, const char * const *argv, sqlite3_tokenizer **ppTokenizer ){ simple_tokenizer *t; t = (simple_tokenizer *) sqlite3_malloc(sizeof(*t)); if( t==NULL ) return SQLITE_NOMEM; memset(t, 0, sizeof(*t)); /* TODO(shess) Delimiters need to remain the same from run to run, ** else we need to reindex. One solution would be a meta-table to ** track such information in the database, then we'd only want this ** information on the initial create. */ if( argc>1 ){ int i, n = (int)strlen(argv[1]); for(i=0; i=0x80 ){ sqlite3_free(t); return SQLITE_ERROR; } t->delim[ch] = 1; } } else { /* Mark non-alphanumeric ASCII characters as delimiters */ int i; for(i=1; i<0x80; i++){ t->delim[i] = !fts3_isalnum(i) ? -1 : 0; } } *ppTokenizer = &t->base; return SQLITE_OK; } /* ** Destroy a tokenizer */ static int simpleDestroy(sqlite3_tokenizer *pTokenizer){ sqlite3_free(pTokenizer); return SQLITE_OK; } /* ** Prepare to begin tokenizing a particular string. The input ** string to be tokenized is pInput[0..nBytes-1]. A cursor ** used to incrementally tokenize this string is returned in ** *ppCursor. */ static int simpleOpen( sqlite3_tokenizer *pTokenizer, /* The tokenizer */ const char *pInput, int nBytes, /* String to be tokenized */ sqlite3_tokenizer_cursor **ppCursor /* OUT: Tokenization cursor */ ){ simple_tokenizer_cursor *c; UNUSED_PARAMETER(pTokenizer); c = (simple_tokenizer_cursor *) sqlite3_malloc(sizeof(*c)); if( c==NULL ) return SQLITE_NOMEM; c->pInput = pInput; if( pInput==0 ){ c->nBytes = 0; }else if( nBytes<0 ){ c->nBytes = (int)strlen(pInput); }else{ c->nBytes = nBytes; } c->iOffset = 0; /* start tokenizing at the beginning */ c->iToken = 0; c->pToken = NULL; /* no space allocated, yet. */ c->nTokenAllocated = 0; *ppCursor = &c->base; return SQLITE_OK; } /* ** Close a tokenization cursor previously opened by a call to ** simpleOpen() above. */ static int simpleClose(sqlite3_tokenizer_cursor *pCursor){ simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; sqlite3_free(c->pToken); sqlite3_free(c); return SQLITE_OK; } /* ** Extract the next token from a tokenization cursor. The cursor must ** have been opened by a prior call to simpleOpen(). */ static int simpleNext( sqlite3_tokenizer_cursor *pCursor, /* Cursor returned by simpleOpen */ const char **ppToken, /* OUT: *ppToken is the token text */ int *pnBytes, /* OUT: Number of bytes in token */ int *piStartOffset, /* OUT: Starting offset of token */ int *piEndOffset, /* OUT: Ending offset of token */ int *piPosition /* OUT: Position integer of token */ ){ simple_tokenizer_cursor *c = (simple_tokenizer_cursor *) pCursor; simple_tokenizer *t = (simple_tokenizer *) pCursor->pTokenizer; unsigned char *p = (unsigned char *)c->pInput; while( c->iOffsetnBytes ){ int iStartOffset; /* Scan past delimiter characters */ while( c->iOffsetnBytes && simpleDelim(t, p[c->iOffset]) ){ c->iOffset++; } /* Count non-delimiter characters. */ iStartOffset = c->iOffset; while( c->iOffsetnBytes && !simpleDelim(t, p[c->iOffset]) ){ c->iOffset++; } if( c->iOffset>iStartOffset ){ int i, n = c->iOffset-iStartOffset; if( n>c->nTokenAllocated ){ char *pNew; c->nTokenAllocated = n+20; pNew = sqlite3_realloc(c->pToken, c->nTokenAllocated); if( !pNew ) return SQLITE_NOMEM; c->pToken = pNew; } for(i=0; ipToken[i] = (char)((ch>='A' && ch<='Z') ? ch-'A'+'a' : ch); } *ppToken = c->pToken; *pnBytes = n; *piStartOffset = iStartOffset; *piEndOffset = c->iOffset; *piPosition = c->iToken++; return SQLITE_OK; } } return SQLITE_DONE; } /* ** The set of routines that implement the simple tokenizer */ static const sqlite3_tokenizer_module simpleTokenizerModule = { 0, simpleCreate, simpleDestroy, simpleOpen, simpleClose, simpleNext, 0, }; /* ** Allocate a new simple tokenizer. Return a pointer to the new ** tokenizer in *ppModule */ SQLITE_PRIVATE void sqlite3Fts3SimpleTokenizerModule( sqlite3_tokenizer_module const**ppModule ){ *ppModule = &simpleTokenizerModule; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_tokenizer1.c *************************************/ /************** Begin file fts3_tokenize_vtab.c ******************************/ /* ** 2013 Apr 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file contains code for the "fts3tokenize" virtual table module. ** An fts3tokenize virtual table is created as follows: ** ** CREATE VIRTUAL TABLE USING fts3tokenize( ** , , ... ** ); ** ** The table created has the following schema: ** ** CREATE TABLE (input, token, start, end, position) ** ** When queried, the query must include a WHERE clause of type: ** ** input = ** ** The virtual table module tokenizes this , using the FTS3 ** tokenizer specified by the arguments to the CREATE VIRTUAL TABLE ** statement and returns one row for each token in the result. With ** fields set as follows: ** ** input: Always set to a copy of ** token: A token from the input. ** start: Byte offset of the token within the input . ** end: Byte offset of the byte immediately following the end of the ** token within the input string. ** pos: Token offset of token within input. ** */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ typedef struct Fts3tokTable Fts3tokTable; typedef struct Fts3tokCursor Fts3tokCursor; /* ** Virtual table structure. */ struct Fts3tokTable { sqlite3_vtab base; /* Base class used by SQLite core */ const sqlite3_tokenizer_module *pMod; sqlite3_tokenizer *pTok; }; /* ** Virtual table cursor structure. */ struct Fts3tokCursor { sqlite3_vtab_cursor base; /* Base class used by SQLite core */ char *zInput; /* Input string */ sqlite3_tokenizer_cursor *pCsr; /* Cursor to iterate through zInput */ int iRowid; /* Current 'rowid' value */ const char *zToken; /* Current 'token' value */ int nToken; /* Size of zToken in bytes */ int iStart; /* Current 'start' value */ int iEnd; /* Current 'end' value */ int iPos; /* Current 'pos' value */ }; /* ** Query FTS for the tokenizer implementation named zName. */ static int fts3tokQueryTokenizer( Fts3Hash *pHash, const char *zName, const sqlite3_tokenizer_module **pp, char **pzErr ){ sqlite3_tokenizer_module *p; int nName = (int)strlen(zName); p = (sqlite3_tokenizer_module *)sqlite3Fts3HashFind(pHash, zName, nName+1); if( !p ){ sqlite3Fts3ErrMsg(pzErr, "unknown tokenizer: %s", zName); return SQLITE_ERROR; } *pp = p; return SQLITE_OK; } /* ** The second argument, argv[], is an array of pointers to nul-terminated ** strings. This function makes a copy of the array and strings into a ** single block of memory. It then dequotes any of the strings that appear ** to be quoted. ** ** If successful, output parameter *pazDequote is set to point at the ** array of dequoted strings and SQLITE_OK is returned. The caller is ** responsible for eventually calling sqlite3_free() to free the array ** in this case. Or, if an error occurs, an SQLite error code is returned. ** The final value of *pazDequote is undefined in this case. */ static int fts3tokDequoteArray( int argc, /* Number of elements in argv[] */ const char * const *argv, /* Input array */ char ***pazDequote /* Output array */ ){ int rc = SQLITE_OK; /* Return code */ if( argc==0 ){ *pazDequote = 0; }else{ int i; int nByte = 0; char **azDequote; for(i=0; i1 ) azArg = (const char * const *)&azDequote[1]; rc = pMod->xCreate((nDequote>1 ? nDequote-1 : 0), azArg, &pTok); } if( rc==SQLITE_OK ){ pTab = (Fts3tokTable *)sqlite3_malloc(sizeof(Fts3tokTable)); if( pTab==0 ){ rc = SQLITE_NOMEM; } } if( rc==SQLITE_OK ){ memset(pTab, 0, sizeof(Fts3tokTable)); pTab->pMod = pMod; pTab->pTok = pTok; *ppVtab = &pTab->base; }else{ if( pTok ){ pMod->xDestroy(pTok); } } sqlite3_free(azDequote); return rc; } /* ** This function does the work for both the xDisconnect and xDestroy methods. ** These tables have no persistent representation of their own, so xDisconnect ** and xDestroy are identical operations. */ static int fts3tokDisconnectMethod(sqlite3_vtab *pVtab){ Fts3tokTable *pTab = (Fts3tokTable *)pVtab; pTab->pMod->xDestroy(pTab->pTok); sqlite3_free(pTab); return SQLITE_OK; } /* ** xBestIndex - Analyze a WHERE and ORDER BY clause. */ static int fts3tokBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ){ int i; UNUSED_PARAMETER(pVTab); for(i=0; inConstraint; i++){ if( pInfo->aConstraint[i].usable && pInfo->aConstraint[i].iColumn==0 && pInfo->aConstraint[i].op==SQLITE_INDEX_CONSTRAINT_EQ ){ pInfo->idxNum = 1; pInfo->aConstraintUsage[i].argvIndex = 1; pInfo->aConstraintUsage[i].omit = 1; pInfo->estimatedCost = 1; return SQLITE_OK; } } pInfo->idxNum = 0; assert( pInfo->estimatedCost>1000000.0 ); return SQLITE_OK; } /* ** xOpen - Open a cursor. */ static int fts3tokOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ Fts3tokCursor *pCsr; UNUSED_PARAMETER(pVTab); pCsr = (Fts3tokCursor *)sqlite3_malloc(sizeof(Fts3tokCursor)); if( pCsr==0 ){ return SQLITE_NOMEM; } memset(pCsr, 0, sizeof(Fts3tokCursor)); *ppCsr = (sqlite3_vtab_cursor *)pCsr; return SQLITE_OK; } /* ** Reset the tokenizer cursor passed as the only argument. As if it had ** just been returned by fts3tokOpenMethod(). */ static void fts3tokResetCursor(Fts3tokCursor *pCsr){ if( pCsr->pCsr ){ Fts3tokTable *pTab = (Fts3tokTable *)(pCsr->base.pVtab); pTab->pMod->xClose(pCsr->pCsr); pCsr->pCsr = 0; } sqlite3_free(pCsr->zInput); pCsr->zInput = 0; pCsr->zToken = 0; pCsr->nToken = 0; pCsr->iStart = 0; pCsr->iEnd = 0; pCsr->iPos = 0; pCsr->iRowid = 0; } /* ** xClose - Close a cursor. */ static int fts3tokCloseMethod(sqlite3_vtab_cursor *pCursor){ Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; fts3tokResetCursor(pCsr); sqlite3_free(pCsr); return SQLITE_OK; } /* ** xNext - Advance the cursor to the next row, if any. */ static int fts3tokNextMethod(sqlite3_vtab_cursor *pCursor){ Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; Fts3tokTable *pTab = (Fts3tokTable *)(pCursor->pVtab); int rc; /* Return code */ pCsr->iRowid++; rc = pTab->pMod->xNext(pCsr->pCsr, &pCsr->zToken, &pCsr->nToken, &pCsr->iStart, &pCsr->iEnd, &pCsr->iPos ); if( rc!=SQLITE_OK ){ fts3tokResetCursor(pCsr); if( rc==SQLITE_DONE ) rc = SQLITE_OK; } return rc; } /* ** xFilter - Initialize a cursor to point at the start of its data. */ static int fts3tokFilterMethod( sqlite3_vtab_cursor *pCursor, /* The cursor used for this query */ int idxNum, /* Strategy index */ const char *idxStr, /* Unused */ int nVal, /* Number of elements in apVal */ sqlite3_value **apVal /* Arguments for the indexing scheme */ ){ int rc = SQLITE_ERROR; Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; Fts3tokTable *pTab = (Fts3tokTable *)(pCursor->pVtab); UNUSED_PARAMETER(idxStr); UNUSED_PARAMETER(nVal); fts3tokResetCursor(pCsr); if( idxNum==1 ){ const char *zByte = (const char *)sqlite3_value_text(apVal[0]); int nByte = sqlite3_value_bytes(apVal[0]); pCsr->zInput = sqlite3_malloc64(nByte+1); if( pCsr->zInput==0 ){ rc = SQLITE_NOMEM; }else{ if( nByte>0 ) memcpy(pCsr->zInput, zByte, nByte); pCsr->zInput[nByte] = 0; rc = pTab->pMod->xOpen(pTab->pTok, pCsr->zInput, nByte, &pCsr->pCsr); if( rc==SQLITE_OK ){ pCsr->pCsr->pTokenizer = pTab->pTok; } } } if( rc!=SQLITE_OK ) return rc; return fts3tokNextMethod(pCursor); } /* ** xEof - Return true if the cursor is at EOF, or false otherwise. */ static int fts3tokEofMethod(sqlite3_vtab_cursor *pCursor){ Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; return (pCsr->zToken==0); } /* ** xColumn - Return a column value. */ static int fts3tokColumnMethod( sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ sqlite3_context *pCtx, /* Context for sqlite3_result_xxx() calls */ int iCol /* Index of column to read value from */ ){ Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; /* CREATE TABLE x(input, token, start, end, position) */ switch( iCol ){ case 0: sqlite3_result_text(pCtx, pCsr->zInput, -1, SQLITE_TRANSIENT); break; case 1: sqlite3_result_text(pCtx, pCsr->zToken, pCsr->nToken, SQLITE_TRANSIENT); break; case 2: sqlite3_result_int(pCtx, pCsr->iStart); break; case 3: sqlite3_result_int(pCtx, pCsr->iEnd); break; default: assert( iCol==4 ); sqlite3_result_int(pCtx, pCsr->iPos); break; } return SQLITE_OK; } /* ** xRowid - Return the current rowid for the cursor. */ static int fts3tokRowidMethod( sqlite3_vtab_cursor *pCursor, /* Cursor to retrieve value from */ sqlite_int64 *pRowid /* OUT: Rowid value */ ){ Fts3tokCursor *pCsr = (Fts3tokCursor *)pCursor; *pRowid = (sqlite3_int64)pCsr->iRowid; return SQLITE_OK; } /* ** Register the fts3tok module with database connection db. Return SQLITE_OK ** if successful or an error code if sqlite3_create_module() fails. */ SQLITE_PRIVATE int sqlite3Fts3InitTok(sqlite3 *db, Fts3Hash *pHash){ static const sqlite3_module fts3tok_module = { 0, /* iVersion */ fts3tokConnectMethod, /* xCreate */ fts3tokConnectMethod, /* xConnect */ fts3tokBestIndexMethod, /* xBestIndex */ fts3tokDisconnectMethod, /* xDisconnect */ fts3tokDisconnectMethod, /* xDestroy */ fts3tokOpenMethod, /* xOpen */ fts3tokCloseMethod, /* xClose */ fts3tokFilterMethod, /* xFilter */ fts3tokNextMethod, /* xNext */ fts3tokEofMethod, /* xEof */ fts3tokColumnMethod, /* xColumn */ fts3tokRowidMethod, /* xRowid */ 0, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindFunction */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0 /* xShadowName */ }; int rc; /* Return code */ rc = sqlite3_create_module(db, "fts3tokenize", &fts3tok_module, (void*)pHash); return rc; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_tokenize_vtab.c **********************************/ /************** Begin file fts3_write.c **************************************/ /* ** 2009 Oct 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file is part of the SQLite FTS3 extension module. Specifically, ** this file contains code to insert, update and delete rows from FTS3 ** tables. It also contains code to merge FTS3 b-tree segments. Some ** of the sub-routines used to merge segments are also used by the query ** code in fts3.c. */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* #include */ /* #include */ #define FTS_MAX_APPENDABLE_HEIGHT 16 /* ** When full-text index nodes are loaded from disk, the buffer that they ** are loaded into has the following number of bytes of padding at the end ** of it. i.e. if a full-text index node is 900 bytes in size, then a buffer ** of 920 bytes is allocated for it. ** ** This means that if we have a pointer into a buffer containing node data, ** it is always safe to read up to two varints from it without risking an ** overread, even if the node data is corrupted. */ #define FTS3_NODE_PADDING (FTS3_VARINT_MAX*2) /* ** Under certain circumstances, b-tree nodes (doclists) can be loaded into ** memory incrementally instead of all at once. This can be a big performance ** win (reduced IO and CPU) if SQLite stops calling the virtual table xNext() ** method before retrieving all query results (as may happen, for example, ** if a query has a LIMIT clause). ** ** Incremental loading is used for b-tree nodes FTS3_NODE_CHUNK_THRESHOLD ** bytes and larger. Nodes are loaded in chunks of FTS3_NODE_CHUNKSIZE bytes. ** The code is written so that the hard lower-limit for each of these values ** is 1. Clearly such small values would be inefficient, but can be useful ** for testing purposes. ** ** If this module is built with SQLITE_TEST defined, these constants may ** be overridden at runtime for testing purposes. File fts3_test.c contains ** a Tcl interface to read and write the values. */ #ifdef SQLITE_TEST int test_fts3_node_chunksize = (4*1024); int test_fts3_node_chunk_threshold = (4*1024)*4; # define FTS3_NODE_CHUNKSIZE test_fts3_node_chunksize # define FTS3_NODE_CHUNK_THRESHOLD test_fts3_node_chunk_threshold #else # define FTS3_NODE_CHUNKSIZE (4*1024) # define FTS3_NODE_CHUNK_THRESHOLD (FTS3_NODE_CHUNKSIZE*4) #endif /* ** The values that may be meaningfully bound to the :1 parameter in ** statements SQL_REPLACE_STAT and SQL_SELECT_STAT. */ #define FTS_STAT_DOCTOTAL 0 #define FTS_STAT_INCRMERGEHINT 1 #define FTS_STAT_AUTOINCRMERGE 2 /* ** If FTS_LOG_MERGES is defined, call sqlite3_log() to report each automatic ** and incremental merge operation that takes place. This is used for ** debugging FTS only, it should not usually be turned on in production ** systems. */ #ifdef FTS3_LOG_MERGES static void fts3LogMerge(int nMerge, sqlite3_int64 iAbsLevel){ sqlite3_log(SQLITE_OK, "%d-way merge from level %d", nMerge, (int)iAbsLevel); } #else #define fts3LogMerge(x, y) #endif typedef struct PendingList PendingList; typedef struct SegmentNode SegmentNode; typedef struct SegmentWriter SegmentWriter; /* ** An instance of the following data structure is used to build doclists ** incrementally. See function fts3PendingListAppend() for details. */ struct PendingList { int nData; char *aData; int nSpace; sqlite3_int64 iLastDocid; sqlite3_int64 iLastCol; sqlite3_int64 iLastPos; }; /* ** Each cursor has a (possibly empty) linked list of the following objects. */ struct Fts3DeferredToken { Fts3PhraseToken *pToken; /* Pointer to corresponding expr token */ int iCol; /* Column token must occur in */ Fts3DeferredToken *pNext; /* Next in list of deferred tokens */ PendingList *pList; /* Doclist is assembled here */ }; /* ** An instance of this structure is used to iterate through the terms on ** a contiguous set of segment b-tree leaf nodes. Although the details of ** this structure are only manipulated by code in this file, opaque handles ** of type Fts3SegReader* are also used by code in fts3.c to iterate through ** terms when querying the full-text index. See functions: ** ** sqlite3Fts3SegReaderNew() ** sqlite3Fts3SegReaderFree() ** sqlite3Fts3SegReaderIterate() ** ** Methods used to manipulate Fts3SegReader structures: ** ** fts3SegReaderNext() ** fts3SegReaderFirstDocid() ** fts3SegReaderNextDocid() */ struct Fts3SegReader { int iIdx; /* Index within level, or 0x7FFFFFFF for PT */ u8 bLookup; /* True for a lookup only */ u8 rootOnly; /* True for a root-only reader */ sqlite3_int64 iStartBlock; /* Rowid of first leaf block to traverse */ sqlite3_int64 iLeafEndBlock; /* Rowid of final leaf block to traverse */ sqlite3_int64 iEndBlock; /* Rowid of final block in segment (or 0) */ sqlite3_int64 iCurrentBlock; /* Current leaf block (or 0) */ char *aNode; /* Pointer to node data (or NULL) */ int nNode; /* Size of buffer at aNode (or 0) */ int nPopulate; /* If >0, bytes of buffer aNode[] loaded */ sqlite3_blob *pBlob; /* If not NULL, blob handle to read node */ Fts3HashElem **ppNextElem; /* Variables set by fts3SegReaderNext(). These may be read directly ** by the caller. They are valid from the time SegmentReaderNew() returns ** until SegmentReaderNext() returns something other than SQLITE_OK ** (i.e. SQLITE_DONE). */ int nTerm; /* Number of bytes in current term */ char *zTerm; /* Pointer to current term */ int nTermAlloc; /* Allocated size of zTerm buffer */ char *aDoclist; /* Pointer to doclist of current entry */ int nDoclist; /* Size of doclist in current entry */ /* The following variables are used by fts3SegReaderNextDocid() to iterate ** through the current doclist (aDoclist/nDoclist). */ char *pOffsetList; int nOffsetList; /* For descending pending seg-readers only */ sqlite3_int64 iDocid; }; #define fts3SegReaderIsPending(p) ((p)->ppNextElem!=0) #define fts3SegReaderIsRootOnly(p) ((p)->rootOnly!=0) /* ** An instance of this structure is used to create a segment b-tree in the ** database. The internal details of this type are only accessed by the ** following functions: ** ** fts3SegWriterAdd() ** fts3SegWriterFlush() ** fts3SegWriterFree() */ struct SegmentWriter { SegmentNode *pTree; /* Pointer to interior tree structure */ sqlite3_int64 iFirst; /* First slot in %_segments written */ sqlite3_int64 iFree; /* Next free slot in %_segments */ char *zTerm; /* Pointer to previous term buffer */ int nTerm; /* Number of bytes in zTerm */ int nMalloc; /* Size of malloc'd buffer at zMalloc */ char *zMalloc; /* Malloc'd space (possibly) used for zTerm */ int nSize; /* Size of allocation at aData */ int nData; /* Bytes of data in aData */ char *aData; /* Pointer to block from malloc() */ i64 nLeafData; /* Number of bytes of leaf data written */ }; /* ** Type SegmentNode is used by the following three functions to create ** the interior part of the segment b+-tree structures (everything except ** the leaf nodes). These functions and type are only ever used by code ** within the fts3SegWriterXXX() family of functions described above. ** ** fts3NodeAddTerm() ** fts3NodeWrite() ** fts3NodeFree() ** ** When a b+tree is written to the database (either as a result of a merge ** or the pending-terms table being flushed), leaves are written into the ** database file as soon as they are completely populated. The interior of ** the tree is assembled in memory and written out only once all leaves have ** been populated and stored. This is Ok, as the b+-tree fanout is usually ** very large, meaning that the interior of the tree consumes relatively ** little memory. */ struct SegmentNode { SegmentNode *pParent; /* Parent node (or NULL for root node) */ SegmentNode *pRight; /* Pointer to right-sibling */ SegmentNode *pLeftmost; /* Pointer to left-most node of this depth */ int nEntry; /* Number of terms written to node so far */ char *zTerm; /* Pointer to previous term buffer */ int nTerm; /* Number of bytes in zTerm */ int nMalloc; /* Size of malloc'd buffer at zMalloc */ char *zMalloc; /* Malloc'd space (possibly) used for zTerm */ int nData; /* Bytes of valid data so far */ char *aData; /* Node data */ }; /* ** Valid values for the second argument to fts3SqlStmt(). */ #define SQL_DELETE_CONTENT 0 #define SQL_IS_EMPTY 1 #define SQL_DELETE_ALL_CONTENT 2 #define SQL_DELETE_ALL_SEGMENTS 3 #define SQL_DELETE_ALL_SEGDIR 4 #define SQL_DELETE_ALL_DOCSIZE 5 #define SQL_DELETE_ALL_STAT 6 #define SQL_SELECT_CONTENT_BY_ROWID 7 #define SQL_NEXT_SEGMENT_INDEX 8 #define SQL_INSERT_SEGMENTS 9 #define SQL_NEXT_SEGMENTS_ID 10 #define SQL_INSERT_SEGDIR 11 #define SQL_SELECT_LEVEL 12 #define SQL_SELECT_LEVEL_RANGE 13 #define SQL_SELECT_LEVEL_COUNT 14 #define SQL_SELECT_SEGDIR_MAX_LEVEL 15 #define SQL_DELETE_SEGDIR_LEVEL 16 #define SQL_DELETE_SEGMENTS_RANGE 17 #define SQL_CONTENT_INSERT 18 #define SQL_DELETE_DOCSIZE 19 #define SQL_REPLACE_DOCSIZE 20 #define SQL_SELECT_DOCSIZE 21 #define SQL_SELECT_STAT 22 #define SQL_REPLACE_STAT 23 #define SQL_SELECT_ALL_PREFIX_LEVEL 24 #define SQL_DELETE_ALL_TERMS_SEGDIR 25 #define SQL_DELETE_SEGDIR_RANGE 26 #define SQL_SELECT_ALL_LANGID 27 #define SQL_FIND_MERGE_LEVEL 28 #define SQL_MAX_LEAF_NODE_ESTIMATE 29 #define SQL_DELETE_SEGDIR_ENTRY 30 #define SQL_SHIFT_SEGDIR_ENTRY 31 #define SQL_SELECT_SEGDIR 32 #define SQL_CHOMP_SEGDIR 33 #define SQL_SEGMENT_IS_APPENDABLE 34 #define SQL_SELECT_INDEXES 35 #define SQL_SELECT_MXLEVEL 36 #define SQL_SELECT_LEVEL_RANGE2 37 #define SQL_UPDATE_LEVEL_IDX 38 #define SQL_UPDATE_LEVEL 39 /* ** This function is used to obtain an SQLite prepared statement handle ** for the statement identified by the second argument. If successful, ** *pp is set to the requested statement handle and SQLITE_OK returned. ** Otherwise, an SQLite error code is returned and *pp is set to 0. ** ** If argument apVal is not NULL, then it must point to an array with ** at least as many entries as the requested statement has bound ** parameters. The values are bound to the statements parameters before ** returning. */ static int fts3SqlStmt( Fts3Table *p, /* Virtual table handle */ int eStmt, /* One of the SQL_XXX constants above */ sqlite3_stmt **pp, /* OUT: Statement handle */ sqlite3_value **apVal /* Values to bind to statement */ ){ const char *azSql[] = { /* 0 */ "DELETE FROM %Q.'%q_content' WHERE rowid = ?", /* 1 */ "SELECT NOT EXISTS(SELECT docid FROM %Q.'%q_content' WHERE rowid!=?)", /* 2 */ "DELETE FROM %Q.'%q_content'", /* 3 */ "DELETE FROM %Q.'%q_segments'", /* 4 */ "DELETE FROM %Q.'%q_segdir'", /* 5 */ "DELETE FROM %Q.'%q_docsize'", /* 6 */ "DELETE FROM %Q.'%q_stat'", /* 7 */ "SELECT %s WHERE rowid=?", /* 8 */ "SELECT (SELECT max(idx) FROM %Q.'%q_segdir' WHERE level = ?) + 1", /* 9 */ "REPLACE INTO %Q.'%q_segments'(blockid, block) VALUES(?, ?)", /* 10 */ "SELECT coalesce((SELECT max(blockid) FROM %Q.'%q_segments') + 1, 1)", /* 11 */ "REPLACE INTO %Q.'%q_segdir' VALUES(?,?,?,?,?,?)", /* Return segments in order from oldest to newest.*/ /* 12 */ "SELECT idx, start_block, leaves_end_block, end_block, root " "FROM %Q.'%q_segdir' WHERE level = ? ORDER BY idx ASC", /* 13 */ "SELECT idx, start_block, leaves_end_block, end_block, root " "FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ?" "ORDER BY level DESC, idx ASC", /* 14 */ "SELECT count(*) FROM %Q.'%q_segdir' WHERE level = ?", /* 15 */ "SELECT max(level) FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ?", /* 16 */ "DELETE FROM %Q.'%q_segdir' WHERE level = ?", /* 17 */ "DELETE FROM %Q.'%q_segments' WHERE blockid BETWEEN ? AND ?", /* 18 */ "INSERT INTO %Q.'%q_content' VALUES(%s)", /* 19 */ "DELETE FROM %Q.'%q_docsize' WHERE docid = ?", /* 20 */ "REPLACE INTO %Q.'%q_docsize' VALUES(?,?)", /* 21 */ "SELECT size FROM %Q.'%q_docsize' WHERE docid=?", /* 22 */ "SELECT value FROM %Q.'%q_stat' WHERE id=?", /* 23 */ "REPLACE INTO %Q.'%q_stat' VALUES(?,?)", /* 24 */ "", /* 25 */ "", /* 26 */ "DELETE FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ?", /* 27 */ "SELECT ? UNION SELECT level / (1024 * ?) FROM %Q.'%q_segdir'", /* This statement is used to determine which level to read the input from ** when performing an incremental merge. It returns the absolute level number ** of the oldest level in the db that contains at least ? segments. Or, ** if no level in the FTS index contains more than ? segments, the statement ** returns zero rows. */ /* 28 */ "SELECT level, count(*) AS cnt FROM %Q.'%q_segdir' " " GROUP BY level HAVING cnt>=?" " ORDER BY (level %% 1024) ASC, 2 DESC LIMIT 1", /* Estimate the upper limit on the number of leaf nodes in a new segment ** created by merging the oldest :2 segments from absolute level :1. See ** function sqlite3Fts3Incrmerge() for details. */ /* 29 */ "SELECT 2 * total(1 + leaves_end_block - start_block) " " FROM (SELECT * FROM %Q.'%q_segdir' " " WHERE level = ? ORDER BY idx ASC LIMIT ?" " )", /* SQL_DELETE_SEGDIR_ENTRY ** Delete the %_segdir entry on absolute level :1 with index :2. */ /* 30 */ "DELETE FROM %Q.'%q_segdir' WHERE level = ? AND idx = ?", /* SQL_SHIFT_SEGDIR_ENTRY ** Modify the idx value for the segment with idx=:3 on absolute level :2 ** to :1. */ /* 31 */ "UPDATE %Q.'%q_segdir' SET idx = ? WHERE level=? AND idx=?", /* SQL_SELECT_SEGDIR ** Read a single entry from the %_segdir table. The entry from absolute ** level :1 with index value :2. */ /* 32 */ "SELECT idx, start_block, leaves_end_block, end_block, root " "FROM %Q.'%q_segdir' WHERE level = ? AND idx = ?", /* SQL_CHOMP_SEGDIR ** Update the start_block (:1) and root (:2) fields of the %_segdir ** entry located on absolute level :3 with index :4. */ /* 33 */ "UPDATE %Q.'%q_segdir' SET start_block = ?, root = ?" "WHERE level = ? AND idx = ?", /* SQL_SEGMENT_IS_APPENDABLE ** Return a single row if the segment with end_block=? is appendable. Or ** no rows otherwise. */ /* 34 */ "SELECT 1 FROM %Q.'%q_segments' WHERE blockid=? AND block IS NULL", /* SQL_SELECT_INDEXES ** Return the list of valid segment indexes for absolute level ? */ /* 35 */ "SELECT idx FROM %Q.'%q_segdir' WHERE level=? ORDER BY 1 ASC", /* SQL_SELECT_MXLEVEL ** Return the largest relative level in the FTS index or indexes. */ /* 36 */ "SELECT max( level %% 1024 ) FROM %Q.'%q_segdir'", /* Return segments in order from oldest to newest.*/ /* 37 */ "SELECT level, idx, end_block " "FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ? " "ORDER BY level DESC, idx ASC", /* Update statements used while promoting segments */ /* 38 */ "UPDATE OR FAIL %Q.'%q_segdir' SET level=-1,idx=? " "WHERE level=? AND idx=?", /* 39 */ "UPDATE OR FAIL %Q.'%q_segdir' SET level=? WHERE level=-1" }; int rc = SQLITE_OK; sqlite3_stmt *pStmt; assert( SizeofArray(azSql)==SizeofArray(p->aStmt) ); assert( eStmt=0 ); pStmt = p->aStmt[eStmt]; if( !pStmt ){ int f = SQLITE_PREPARE_PERSISTENT|SQLITE_PREPARE_NO_VTAB; char *zSql; if( eStmt==SQL_CONTENT_INSERT ){ zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName, p->zWriteExprlist); }else if( eStmt==SQL_SELECT_CONTENT_BY_ROWID ){ f &= ~SQLITE_PREPARE_NO_VTAB; zSql = sqlite3_mprintf(azSql[eStmt], p->zReadExprlist); }else{ zSql = sqlite3_mprintf(azSql[eStmt], p->zDb, p->zName); } if( !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v3(p->db, zSql, -1, f, &pStmt, NULL); sqlite3_free(zSql); assert( rc==SQLITE_OK || pStmt==0 ); p->aStmt[eStmt] = pStmt; } } if( apVal ){ int i; int nParam = sqlite3_bind_parameter_count(pStmt); for(i=0; rc==SQLITE_OK && inPendingData==0 ){ sqlite3_stmt *pStmt; rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_LEVEL, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_null(pStmt, 1); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); } } return rc; } /* ** FTS maintains a separate indexes for each language-id (a 32-bit integer). ** Within each language id, a separate index is maintained to store the ** document terms, and each configured prefix size (configured the FTS ** "prefix=" option). And each index consists of multiple levels ("relative ** levels"). ** ** All three of these values (the language id, the specific index and the ** level within the index) are encoded in 64-bit integer values stored ** in the %_segdir table on disk. This function is used to convert three ** separate component values into the single 64-bit integer value that ** can be used to query the %_segdir table. ** ** Specifically, each language-id/index combination is allocated 1024 ** 64-bit integer level values ("absolute levels"). The main terms index ** for language-id 0 is allocate values 0-1023. The first prefix index ** (if any) for language-id 0 is allocated values 1024-2047. And so on. ** Language 1 indexes are allocated immediately following language 0. ** ** So, for a system with nPrefix prefix indexes configured, the block of ** absolute levels that corresponds to language-id iLangid and index ** iIndex starts at absolute level ((iLangid * (nPrefix+1) + iIndex) * 1024). */ static sqlite3_int64 getAbsoluteLevel( Fts3Table *p, /* FTS3 table handle */ int iLangid, /* Language id */ int iIndex, /* Index in p->aIndex[] */ int iLevel /* Level of segments */ ){ sqlite3_int64 iBase; /* First absolute level for iLangid/iIndex */ assert_fts3_nc( iLangid>=0 ); assert( p->nIndex>0 ); assert( iIndex>=0 && iIndexnIndex ); iBase = ((sqlite3_int64)iLangid * p->nIndex + iIndex) * FTS3_SEGDIR_MAXLEVEL; return iBase + iLevel; } /* ** Set *ppStmt to a statement handle that may be used to iterate through ** all rows in the %_segdir table, from oldest to newest. If successful, ** return SQLITE_OK. If an error occurs while preparing the statement, ** return an SQLite error code. ** ** There is only ever one instance of this SQL statement compiled for ** each FTS3 table. ** ** The statement returns the following columns from the %_segdir table: ** ** 0: idx ** 1: start_block ** 2: leaves_end_block ** 3: end_block ** 4: root */ SQLITE_PRIVATE int sqlite3Fts3AllSegdirs( Fts3Table *p, /* FTS3 table */ int iLangid, /* Language being queried */ int iIndex, /* Index for p->aIndex[] */ int iLevel, /* Level to select (relative level) */ sqlite3_stmt **ppStmt /* OUT: Compiled statement */ ){ int rc; sqlite3_stmt *pStmt = 0; assert( iLevel==FTS3_SEGCURSOR_ALL || iLevel>=0 ); assert( iLevel=0 && iIndexnIndex ); if( iLevel<0 ){ /* "SELECT * FROM %_segdir WHERE level BETWEEN ? AND ? ORDER BY ..." */ rc = fts3SqlStmt(p, SQL_SELECT_LEVEL_RANGE, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex, 0)); sqlite3_bind_int64(pStmt, 2, getAbsoluteLevel(p, iLangid, iIndex, FTS3_SEGDIR_MAXLEVEL-1) ); } }else{ /* "SELECT * FROM %_segdir WHERE level = ? ORDER BY ..." */ rc = fts3SqlStmt(p, SQL_SELECT_LEVEL, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex,iLevel)); } } *ppStmt = pStmt; return rc; } /* ** Append a single varint to a PendingList buffer. SQLITE_OK is returned ** if successful, or an SQLite error code otherwise. ** ** This function also serves to allocate the PendingList structure itself. ** For example, to create a new PendingList structure containing two ** varints: ** ** PendingList *p = 0; ** fts3PendingListAppendVarint(&p, 1); ** fts3PendingListAppendVarint(&p, 2); */ static int fts3PendingListAppendVarint( PendingList **pp, /* IN/OUT: Pointer to PendingList struct */ sqlite3_int64 i /* Value to append to data */ ){ PendingList *p = *pp; /* Allocate or grow the PendingList as required. */ if( !p ){ p = sqlite3_malloc(sizeof(*p) + 100); if( !p ){ return SQLITE_NOMEM; } p->nSpace = 100; p->aData = (char *)&p[1]; p->nData = 0; } else if( p->nData+FTS3_VARINT_MAX+1>p->nSpace ){ int nNew = p->nSpace * 2; p = sqlite3_realloc(p, sizeof(*p) + nNew); if( !p ){ sqlite3_free(*pp); *pp = 0; return SQLITE_NOMEM; } p->nSpace = nNew; p->aData = (char *)&p[1]; } /* Append the new serialized varint to the end of the list. */ p->nData += sqlite3Fts3PutVarint(&p->aData[p->nData], i); p->aData[p->nData] = '\0'; *pp = p; return SQLITE_OK; } /* ** Add a docid/column/position entry to a PendingList structure. Non-zero ** is returned if the structure is sqlite3_realloced as part of adding ** the entry. Otherwise, zero. ** ** If an OOM error occurs, *pRc is set to SQLITE_NOMEM before returning. ** Zero is always returned in this case. Otherwise, if no OOM error occurs, ** it is set to SQLITE_OK. */ static int fts3PendingListAppend( PendingList **pp, /* IN/OUT: PendingList structure */ sqlite3_int64 iDocid, /* Docid for entry to add */ sqlite3_int64 iCol, /* Column for entry to add */ sqlite3_int64 iPos, /* Position of term for entry to add */ int *pRc /* OUT: Return code */ ){ PendingList *p = *pp; int rc = SQLITE_OK; assert( !p || p->iLastDocid<=iDocid ); if( !p || p->iLastDocid!=iDocid ){ u64 iDelta = (u64)iDocid - (u64)(p ? p->iLastDocid : 0); if( p ){ assert( p->nDatanSpace ); assert( p->aData[p->nData]==0 ); p->nData++; } if( SQLITE_OK!=(rc = fts3PendingListAppendVarint(&p, iDelta)) ){ goto pendinglistappend_out; } p->iLastCol = -1; p->iLastPos = 0; p->iLastDocid = iDocid; } if( iCol>0 && p->iLastCol!=iCol ){ if( SQLITE_OK!=(rc = fts3PendingListAppendVarint(&p, 1)) || SQLITE_OK!=(rc = fts3PendingListAppendVarint(&p, iCol)) ){ goto pendinglistappend_out; } p->iLastCol = iCol; p->iLastPos = 0; } if( iCol>=0 ){ assert( iPos>p->iLastPos || (iPos==0 && p->iLastPos==0) ); rc = fts3PendingListAppendVarint(&p, 2+iPos-p->iLastPos); if( rc==SQLITE_OK ){ p->iLastPos = iPos; } } pendinglistappend_out: *pRc = rc; if( p!=*pp ){ *pp = p; return 1; } return 0; } /* ** Free a PendingList object allocated by fts3PendingListAppend(). */ static void fts3PendingListDelete(PendingList *pList){ sqlite3_free(pList); } /* ** Add an entry to one of the pending-terms hash tables. */ static int fts3PendingTermsAddOne( Fts3Table *p, int iCol, int iPos, Fts3Hash *pHash, /* Pending terms hash table to add entry to */ const char *zToken, int nToken ){ PendingList *pList; int rc = SQLITE_OK; pList = (PendingList *)fts3HashFind(pHash, zToken, nToken); if( pList ){ p->nPendingData -= (pList->nData + nToken + sizeof(Fts3HashElem)); } if( fts3PendingListAppend(&pList, p->iPrevDocid, iCol, iPos, &rc) ){ if( pList==fts3HashInsert(pHash, zToken, nToken, pList) ){ /* Malloc failed while inserting the new entry. This can only ** happen if there was no previous entry for this token. */ assert( 0==fts3HashFind(pHash, zToken, nToken) ); sqlite3_free(pList); rc = SQLITE_NOMEM; } } if( rc==SQLITE_OK ){ p->nPendingData += (pList->nData + nToken + sizeof(Fts3HashElem)); } return rc; } /* ** Tokenize the nul-terminated string zText and add all tokens to the ** pending-terms hash-table. The docid used is that currently stored in ** p->iPrevDocid, and the column is specified by argument iCol. ** ** If successful, SQLITE_OK is returned. Otherwise, an SQLite error code. */ static int fts3PendingTermsAdd( Fts3Table *p, /* Table into which text will be inserted */ int iLangid, /* Language id to use */ const char *zText, /* Text of document to be inserted */ int iCol, /* Column into which text is being inserted */ u32 *pnWord /* IN/OUT: Incr. by number tokens inserted */ ){ int rc; int iStart = 0; int iEnd = 0; int iPos = 0; int nWord = 0; char const *zToken; int nToken = 0; sqlite3_tokenizer *pTokenizer = p->pTokenizer; sqlite3_tokenizer_module const *pModule = pTokenizer->pModule; sqlite3_tokenizer_cursor *pCsr; int (*xNext)(sqlite3_tokenizer_cursor *pCursor, const char**,int*,int*,int*,int*); assert( pTokenizer && pModule ); /* If the user has inserted a NULL value, this function may be called with ** zText==0. In this case, add zero token entries to the hash table and ** return early. */ if( zText==0 ){ *pnWord = 0; return SQLITE_OK; } rc = sqlite3Fts3OpenTokenizer(pTokenizer, iLangid, zText, -1, &pCsr); if( rc!=SQLITE_OK ){ return rc; } xNext = pModule->xNext; while( SQLITE_OK==rc && SQLITE_OK==(rc = xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos)) ){ int i; if( iPos>=nWord ) nWord = iPos+1; /* Positions cannot be negative; we use -1 as a terminator internally. ** Tokens must have a non-zero length. */ if( iPos<0 || !zToken || nToken<=0 ){ rc = SQLITE_ERROR; break; } /* Add the term to the terms index */ rc = fts3PendingTermsAddOne( p, iCol, iPos, &p->aIndex[0].hPending, zToken, nToken ); /* Add the term to each of the prefix indexes that it is not too ** short for. */ for(i=1; rc==SQLITE_OK && inIndex; i++){ struct Fts3Index *pIndex = &p->aIndex[i]; if( nTokennPrefix ) continue; rc = fts3PendingTermsAddOne( p, iCol, iPos, &pIndex->hPending, zToken, pIndex->nPrefix ); } } pModule->xClose(pCsr); *pnWord += nWord; return (rc==SQLITE_DONE ? SQLITE_OK : rc); } /* ** Calling this function indicates that subsequent calls to ** fts3PendingTermsAdd() are to add term/position-list pairs for the ** contents of the document with docid iDocid. */ static int fts3PendingTermsDocid( Fts3Table *p, /* Full-text table handle */ int bDelete, /* True if this op is a delete */ int iLangid, /* Language id of row being written */ sqlite_int64 iDocid /* Docid of row being written */ ){ assert( iLangid>=0 ); assert( bDelete==1 || bDelete==0 ); /* TODO(shess) Explore whether partially flushing the buffer on ** forced-flush would provide better performance. I suspect that if ** we ordered the doclists by size and flushed the largest until the ** buffer was half empty, that would let the less frequent terms ** generate longer doclists. */ if( iDocidiPrevDocid || (iDocid==p->iPrevDocid && p->bPrevDelete==0) || p->iPrevLangid!=iLangid || p->nPendingData>p->nMaxPendingData ){ int rc = sqlite3Fts3PendingTermsFlush(p); if( rc!=SQLITE_OK ) return rc; } p->iPrevDocid = iDocid; p->iPrevLangid = iLangid; p->bPrevDelete = bDelete; return SQLITE_OK; } /* ** Discard the contents of the pending-terms hash tables. */ SQLITE_PRIVATE void sqlite3Fts3PendingTermsClear(Fts3Table *p){ int i; for(i=0; inIndex; i++){ Fts3HashElem *pElem; Fts3Hash *pHash = &p->aIndex[i].hPending; for(pElem=fts3HashFirst(pHash); pElem; pElem=fts3HashNext(pElem)){ PendingList *pList = (PendingList *)fts3HashData(pElem); fts3PendingListDelete(pList); } fts3HashClear(pHash); } p->nPendingData = 0; } /* ** This function is called by the xUpdate() method as part of an INSERT ** operation. It adds entries for each term in the new record to the ** pendingTerms hash table. ** ** Argument apVal is the same as the similarly named argument passed to ** fts3InsertData(). Parameter iDocid is the docid of the new row. */ static int fts3InsertTerms( Fts3Table *p, int iLangid, sqlite3_value **apVal, u32 *aSz ){ int i; /* Iterator variable */ for(i=2; inColumn+2; i++){ int iCol = i-2; if( p->abNotindexed[iCol]==0 ){ const char *zText = (const char *)sqlite3_value_text(apVal[i]); int rc = fts3PendingTermsAdd(p, iLangid, zText, iCol, &aSz[iCol]); if( rc!=SQLITE_OK ){ return rc; } aSz[p->nColumn] += sqlite3_value_bytes(apVal[i]); } } return SQLITE_OK; } /* ** This function is called by the xUpdate() method for an INSERT operation. ** The apVal parameter is passed a copy of the apVal argument passed by ** SQLite to the xUpdate() method. i.e: ** ** apVal[0] Not used for INSERT. ** apVal[1] rowid ** apVal[2] Left-most user-defined column ** ... ** apVal[p->nColumn+1] Right-most user-defined column ** apVal[p->nColumn+2] Hidden column with same name as table ** apVal[p->nColumn+3] Hidden "docid" column (alias for rowid) ** apVal[p->nColumn+4] Hidden languageid column */ static int fts3InsertData( Fts3Table *p, /* Full-text table */ sqlite3_value **apVal, /* Array of values to insert */ sqlite3_int64 *piDocid /* OUT: Docid for row just inserted */ ){ int rc; /* Return code */ sqlite3_stmt *pContentInsert; /* INSERT INTO %_content VALUES(...) */ if( p->zContentTbl ){ sqlite3_value *pRowid = apVal[p->nColumn+3]; if( sqlite3_value_type(pRowid)==SQLITE_NULL ){ pRowid = apVal[1]; } if( sqlite3_value_type(pRowid)!=SQLITE_INTEGER ){ return SQLITE_CONSTRAINT; } *piDocid = sqlite3_value_int64(pRowid); return SQLITE_OK; } /* Locate the statement handle used to insert data into the %_content ** table. The SQL for this statement is: ** ** INSERT INTO %_content VALUES(?, ?, ?, ...) ** ** The statement features N '?' variables, where N is the number of user ** defined columns in the FTS3 table, plus one for the docid field. */ rc = fts3SqlStmt(p, SQL_CONTENT_INSERT, &pContentInsert, &apVal[1]); if( rc==SQLITE_OK && p->zLanguageid ){ rc = sqlite3_bind_int( pContentInsert, p->nColumn+2, sqlite3_value_int(apVal[p->nColumn+4]) ); } if( rc!=SQLITE_OK ) return rc; /* There is a quirk here. The users INSERT statement may have specified ** a value for the "rowid" field, for the "docid" field, or for both. ** Which is a problem, since "rowid" and "docid" are aliases for the ** same value. For example: ** ** INSERT INTO fts3tbl(rowid, docid) VALUES(1, 2); ** ** In FTS3, this is an error. It is an error to specify non-NULL values ** for both docid and some other rowid alias. */ if( SQLITE_NULL!=sqlite3_value_type(apVal[3+p->nColumn]) ){ if( SQLITE_NULL==sqlite3_value_type(apVal[0]) && SQLITE_NULL!=sqlite3_value_type(apVal[1]) ){ /* A rowid/docid conflict. */ return SQLITE_ERROR; } rc = sqlite3_bind_value(pContentInsert, 1, apVal[3+p->nColumn]); if( rc!=SQLITE_OK ) return rc; } /* Execute the statement to insert the record. Set *piDocid to the ** new docid value. */ sqlite3_step(pContentInsert); rc = sqlite3_reset(pContentInsert); *piDocid = sqlite3_last_insert_rowid(p->db); return rc; } /* ** Remove all data from the FTS3 table. Clear the hash table containing ** pending terms. */ static int fts3DeleteAll(Fts3Table *p, int bContent){ int rc = SQLITE_OK; /* Return code */ /* Discard the contents of the pending-terms hash table. */ sqlite3Fts3PendingTermsClear(p); /* Delete everything from the shadow tables. Except, leave %_content as ** is if bContent is false. */ assert( p->zContentTbl==0 || bContent==0 ); if( bContent ) fts3SqlExec(&rc, p, SQL_DELETE_ALL_CONTENT, 0); fts3SqlExec(&rc, p, SQL_DELETE_ALL_SEGMENTS, 0); fts3SqlExec(&rc, p, SQL_DELETE_ALL_SEGDIR, 0); if( p->bHasDocsize ){ fts3SqlExec(&rc, p, SQL_DELETE_ALL_DOCSIZE, 0); } if( p->bHasStat ){ fts3SqlExec(&rc, p, SQL_DELETE_ALL_STAT, 0); } return rc; } /* ** */ static int langidFromSelect(Fts3Table *p, sqlite3_stmt *pSelect){ int iLangid = 0; if( p->zLanguageid ) iLangid = sqlite3_column_int(pSelect, p->nColumn+1); return iLangid; } /* ** The first element in the apVal[] array is assumed to contain the docid ** (an integer) of a row about to be deleted. Remove all terms from the ** full-text index. */ static void fts3DeleteTerms( int *pRC, /* Result code */ Fts3Table *p, /* The FTS table to delete from */ sqlite3_value *pRowid, /* The docid to be deleted */ u32 *aSz, /* Sizes of deleted document written here */ int *pbFound /* OUT: Set to true if row really does exist */ ){ int rc; sqlite3_stmt *pSelect; assert( *pbFound==0 ); if( *pRC ) return; rc = fts3SqlStmt(p, SQL_SELECT_CONTENT_BY_ROWID, &pSelect, &pRowid); if( rc==SQLITE_OK ){ if( SQLITE_ROW==sqlite3_step(pSelect) ){ int i; int iLangid = langidFromSelect(p, pSelect); i64 iDocid = sqlite3_column_int64(pSelect, 0); rc = fts3PendingTermsDocid(p, 1, iLangid, iDocid); for(i=1; rc==SQLITE_OK && i<=p->nColumn; i++){ int iCol = i-1; if( p->abNotindexed[iCol]==0 ){ const char *zText = (const char *)sqlite3_column_text(pSelect, i); rc = fts3PendingTermsAdd(p, iLangid, zText, -1, &aSz[iCol]); aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i); } } if( rc!=SQLITE_OK ){ sqlite3_reset(pSelect); *pRC = rc; return; } *pbFound = 1; } rc = sqlite3_reset(pSelect); }else{ sqlite3_reset(pSelect); } *pRC = rc; } /* ** Forward declaration to account for the circular dependency between ** functions fts3SegmentMerge() and fts3AllocateSegdirIdx(). */ static int fts3SegmentMerge(Fts3Table *, int, int, int); /* ** This function allocates a new level iLevel index in the segdir table. ** Usually, indexes are allocated within a level sequentially starting ** with 0, so the allocated index is one greater than the value returned ** by: ** ** SELECT max(idx) FROM %_segdir WHERE level = :iLevel ** ** However, if there are already FTS3_MERGE_COUNT indexes at the requested ** level, they are merged into a single level (iLevel+1) segment and the ** allocated index is 0. ** ** If successful, *piIdx is set to the allocated index slot and SQLITE_OK ** returned. Otherwise, an SQLite error code is returned. */ static int fts3AllocateSegdirIdx( Fts3Table *p, int iLangid, /* Language id */ int iIndex, /* Index for p->aIndex */ int iLevel, int *piIdx ){ int rc; /* Return Code */ sqlite3_stmt *pNextIdx; /* Query for next idx at level iLevel */ int iNext = 0; /* Result of query pNextIdx */ assert( iLangid>=0 ); assert( p->nIndex>=1 ); /* Set variable iNext to the next available segdir index at level iLevel. */ rc = fts3SqlStmt(p, SQL_NEXT_SEGMENT_INDEX, &pNextIdx, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64( pNextIdx, 1, getAbsoluteLevel(p, iLangid, iIndex, iLevel) ); if( SQLITE_ROW==sqlite3_step(pNextIdx) ){ iNext = sqlite3_column_int(pNextIdx, 0); } rc = sqlite3_reset(pNextIdx); } if( rc==SQLITE_OK ){ /* If iNext is FTS3_MERGE_COUNT, indicating that level iLevel is already ** full, merge all segments in level iLevel into a single iLevel+1 ** segment and allocate (newly freed) index 0 at level iLevel. Otherwise, ** if iNext is less than FTS3_MERGE_COUNT, allocate index iNext. */ if( iNext>=MergeCount(p) ){ fts3LogMerge(16, getAbsoluteLevel(p, iLangid, iIndex, iLevel)); rc = fts3SegmentMerge(p, iLangid, iIndex, iLevel); *piIdx = 0; }else{ *piIdx = iNext; } } return rc; } /* ** The %_segments table is declared as follows: ** ** CREATE TABLE %_segments(blockid INTEGER PRIMARY KEY, block BLOB) ** ** This function reads data from a single row of the %_segments table. The ** specific row is identified by the iBlockid parameter. If paBlob is not ** NULL, then a buffer is allocated using sqlite3_malloc() and populated ** with the contents of the blob stored in the "block" column of the ** identified table row is. Whether or not paBlob is NULL, *pnBlob is set ** to the size of the blob in bytes before returning. ** ** If an error occurs, or the table does not contain the specified row, ** an SQLite error code is returned. Otherwise, SQLITE_OK is returned. If ** paBlob is non-NULL, then it is the responsibility of the caller to ** eventually free the returned buffer. ** ** This function may leave an open sqlite3_blob* handle in the ** Fts3Table.pSegments variable. This handle is reused by subsequent calls ** to this function. The handle may be closed by calling the ** sqlite3Fts3SegmentsClose() function. Reusing a blob handle is a handy ** performance improvement, but the blob handle should always be closed ** before control is returned to the user (to prevent a lock being held ** on the database file for longer than necessary). Thus, any virtual table ** method (xFilter etc.) that may directly or indirectly call this function ** must call sqlite3Fts3SegmentsClose() before returning. */ SQLITE_PRIVATE int sqlite3Fts3ReadBlock( Fts3Table *p, /* FTS3 table handle */ sqlite3_int64 iBlockid, /* Access the row with blockid=$iBlockid */ char **paBlob, /* OUT: Blob data in malloc'd buffer */ int *pnBlob, /* OUT: Size of blob data */ int *pnLoad /* OUT: Bytes actually loaded */ ){ int rc; /* Return code */ /* pnBlob must be non-NULL. paBlob may be NULL or non-NULL. */ assert( pnBlob ); if( p->pSegments ){ rc = sqlite3_blob_reopen(p->pSegments, iBlockid); }else{ if( 0==p->zSegmentsTbl ){ p->zSegmentsTbl = sqlite3_mprintf("%s_segments", p->zName); if( 0==p->zSegmentsTbl ) return SQLITE_NOMEM; } rc = sqlite3_blob_open( p->db, p->zDb, p->zSegmentsTbl, "block", iBlockid, 0, &p->pSegments ); } if( rc==SQLITE_OK ){ int nByte = sqlite3_blob_bytes(p->pSegments); *pnBlob = nByte; if( paBlob ){ char *aByte = sqlite3_malloc(nByte + FTS3_NODE_PADDING); if( !aByte ){ rc = SQLITE_NOMEM; }else{ if( pnLoad && nByte>(FTS3_NODE_CHUNK_THRESHOLD) ){ nByte = FTS3_NODE_CHUNKSIZE; *pnLoad = nByte; } rc = sqlite3_blob_read(p->pSegments, aByte, nByte, 0); memset(&aByte[nByte], 0, FTS3_NODE_PADDING); if( rc!=SQLITE_OK ){ sqlite3_free(aByte); aByte = 0; } } *paBlob = aByte; } }else if( rc==SQLITE_ERROR ){ rc = FTS_CORRUPT_VTAB; } return rc; } /* ** Close the blob handle at p->pSegments, if it is open. See comments above ** the sqlite3Fts3ReadBlock() function for details. */ SQLITE_PRIVATE void sqlite3Fts3SegmentsClose(Fts3Table *p){ sqlite3_blob_close(p->pSegments); p->pSegments = 0; } static int fts3SegReaderIncrRead(Fts3SegReader *pReader){ int nRead; /* Number of bytes to read */ int rc; /* Return code */ nRead = MIN(pReader->nNode - pReader->nPopulate, FTS3_NODE_CHUNKSIZE); rc = sqlite3_blob_read( pReader->pBlob, &pReader->aNode[pReader->nPopulate], nRead, pReader->nPopulate ); if( rc==SQLITE_OK ){ pReader->nPopulate += nRead; memset(&pReader->aNode[pReader->nPopulate], 0, FTS3_NODE_PADDING); if( pReader->nPopulate==pReader->nNode ){ sqlite3_blob_close(pReader->pBlob); pReader->pBlob = 0; pReader->nPopulate = 0; } } return rc; } static int fts3SegReaderRequire(Fts3SegReader *pReader, char *pFrom, int nByte){ int rc = SQLITE_OK; assert( !pReader->pBlob || (pFrom>=pReader->aNode && pFrom<&pReader->aNode[pReader->nNode]) ); while( pReader->pBlob && rc==SQLITE_OK && (pFrom - pReader->aNode + nByte)>pReader->nPopulate ){ rc = fts3SegReaderIncrRead(pReader); } return rc; } /* ** Set an Fts3SegReader cursor to point at EOF. */ static void fts3SegReaderSetEof(Fts3SegReader *pSeg){ if( !fts3SegReaderIsRootOnly(pSeg) ){ sqlite3_free(pSeg->aNode); sqlite3_blob_close(pSeg->pBlob); pSeg->pBlob = 0; } pSeg->aNode = 0; } /* ** Move the iterator passed as the first argument to the next term in the ** segment. If successful, SQLITE_OK is returned. If there is no next term, ** SQLITE_DONE. Otherwise, an SQLite error code. */ static int fts3SegReaderNext( Fts3Table *p, Fts3SegReader *pReader, int bIncr ){ int rc; /* Return code of various sub-routines */ char *pNext; /* Cursor variable */ int nPrefix; /* Number of bytes in term prefix */ int nSuffix; /* Number of bytes in term suffix */ if( !pReader->aDoclist ){ pNext = pReader->aNode; }else{ pNext = &pReader->aDoclist[pReader->nDoclist]; } if( !pNext || pNext>=&pReader->aNode[pReader->nNode] ){ if( fts3SegReaderIsPending(pReader) ){ Fts3HashElem *pElem = *(pReader->ppNextElem); sqlite3_free(pReader->aNode); pReader->aNode = 0; if( pElem ){ char *aCopy; PendingList *pList = (PendingList *)fts3HashData(pElem); int nCopy = pList->nData+1; pReader->zTerm = (char *)fts3HashKey(pElem); pReader->nTerm = fts3HashKeysize(pElem); aCopy = (char*)sqlite3_malloc(nCopy); if( !aCopy ) return SQLITE_NOMEM; memcpy(aCopy, pList->aData, nCopy); pReader->nNode = pReader->nDoclist = nCopy; pReader->aNode = pReader->aDoclist = aCopy; pReader->ppNextElem++; assert( pReader->aNode ); } return SQLITE_OK; } fts3SegReaderSetEof(pReader); /* If iCurrentBlock>=iLeafEndBlock, this is an EOF condition. All leaf ** blocks have already been traversed. */ #ifdef CORRUPT_DB assert( pReader->iCurrentBlock<=pReader->iLeafEndBlock || CORRUPT_DB ); #endif if( pReader->iCurrentBlock>=pReader->iLeafEndBlock ){ return SQLITE_OK; } rc = sqlite3Fts3ReadBlock( p, ++pReader->iCurrentBlock, &pReader->aNode, &pReader->nNode, (bIncr ? &pReader->nPopulate : 0) ); if( rc!=SQLITE_OK ) return rc; assert( pReader->pBlob==0 ); if( bIncr && pReader->nPopulatenNode ){ pReader->pBlob = p->pSegments; p->pSegments = 0; } pNext = pReader->aNode; } assert( !fts3SegReaderIsPending(pReader) ); rc = fts3SegReaderRequire(pReader, pNext, FTS3_VARINT_MAX*2); if( rc!=SQLITE_OK ) return rc; /* Because of the FTS3_NODE_PADDING bytes of padding, the following is ** safe (no risk of overread) even if the node data is corrupted. */ pNext += fts3GetVarint32(pNext, &nPrefix); pNext += fts3GetVarint32(pNext, &nSuffix); if( nSuffix<=0 || (&pReader->aNode[pReader->nNode] - pNext)pReader->nTerm ){ return FTS_CORRUPT_VTAB; } /* Both nPrefix and nSuffix were read by fts3GetVarint32() and so are ** between 0 and 0x7FFFFFFF. But the sum of the two may cause integer ** overflow - hence the (i64) casts. */ if( (i64)nPrefix+nSuffix>(i64)pReader->nTermAlloc ){ i64 nNew = ((i64)nPrefix+nSuffix)*2; char *zNew = sqlite3_realloc64(pReader->zTerm, nNew); if( !zNew ){ return SQLITE_NOMEM; } pReader->zTerm = zNew; pReader->nTermAlloc = nNew; } rc = fts3SegReaderRequire(pReader, pNext, nSuffix+FTS3_VARINT_MAX); if( rc!=SQLITE_OK ) return rc; memcpy(&pReader->zTerm[nPrefix], pNext, nSuffix); pReader->nTerm = nPrefix+nSuffix; pNext += nSuffix; pNext += fts3GetVarint32(pNext, &pReader->nDoclist); pReader->aDoclist = pNext; pReader->pOffsetList = 0; /* Check that the doclist does not appear to extend past the end of the ** b-tree node. And that the final byte of the doclist is 0x00. If either ** of these statements is untrue, then the data structure is corrupt. */ if( pReader->nDoclist > pReader->nNode-(pReader->aDoclist-pReader->aNode) || (pReader->nPopulate==0 && pReader->aDoclist[pReader->nDoclist-1]) || pReader->nDoclist==0 ){ return FTS_CORRUPT_VTAB; } return SQLITE_OK; } /* ** Set the SegReader to point to the first docid in the doclist associated ** with the current term. */ static int fts3SegReaderFirstDocid(Fts3Table *pTab, Fts3SegReader *pReader){ int rc = SQLITE_OK; assert( pReader->aDoclist ); assert( !pReader->pOffsetList ); if( pTab->bDescIdx && fts3SegReaderIsPending(pReader) ){ u8 bEof = 0; pReader->iDocid = 0; pReader->nOffsetList = 0; sqlite3Fts3DoclistPrev(0, pReader->aDoclist, pReader->nDoclist, &pReader->pOffsetList, &pReader->iDocid, &pReader->nOffsetList, &bEof ); }else{ rc = fts3SegReaderRequire(pReader, pReader->aDoclist, FTS3_VARINT_MAX); if( rc==SQLITE_OK ){ int n = sqlite3Fts3GetVarint(pReader->aDoclist, &pReader->iDocid); pReader->pOffsetList = &pReader->aDoclist[n]; } } return rc; } /* ** Advance the SegReader to point to the next docid in the doclist ** associated with the current term. ** ** If arguments ppOffsetList and pnOffsetList are not NULL, then ** *ppOffsetList is set to point to the first column-offset list ** in the doclist entry (i.e. immediately past the docid varint). ** *pnOffsetList is set to the length of the set of column-offset ** lists, not including the nul-terminator byte. For example: */ static int fts3SegReaderNextDocid( Fts3Table *pTab, Fts3SegReader *pReader, /* Reader to advance to next docid */ char **ppOffsetList, /* OUT: Pointer to current position-list */ int *pnOffsetList /* OUT: Length of *ppOffsetList in bytes */ ){ int rc = SQLITE_OK; char *p = pReader->pOffsetList; char c = 0; assert( p ); if( pTab->bDescIdx && fts3SegReaderIsPending(pReader) ){ /* A pending-terms seg-reader for an FTS4 table that uses order=desc. ** Pending-terms doclists are always built up in ascending order, so ** we have to iterate through them backwards here. */ u8 bEof = 0; if( ppOffsetList ){ *ppOffsetList = pReader->pOffsetList; *pnOffsetList = pReader->nOffsetList - 1; } sqlite3Fts3DoclistPrev(0, pReader->aDoclist, pReader->nDoclist, &p, &pReader->iDocid, &pReader->nOffsetList, &bEof ); if( bEof ){ pReader->pOffsetList = 0; }else{ pReader->pOffsetList = p; } }else{ char *pEnd = &pReader->aDoclist[pReader->nDoclist]; /* Pointer p currently points at the first byte of an offset list. The ** following block advances it to point one byte past the end of ** the same offset list. */ while( 1 ){ /* The following line of code (and the "p++" below the while() loop) is ** normally all that is required to move pointer p to the desired ** position. The exception is if this node is being loaded from disk ** incrementally and pointer "p" now points to the first byte past ** the populated part of pReader->aNode[]. */ while( *p | c ) c = *p++ & 0x80; assert( *p==0 ); if( pReader->pBlob==0 || p<&pReader->aNode[pReader->nPopulate] ) break; rc = fts3SegReaderIncrRead(pReader); if( rc!=SQLITE_OK ) return rc; } p++; /* If required, populate the output variables with a pointer to and the ** size of the previous offset-list. */ if( ppOffsetList ){ *ppOffsetList = pReader->pOffsetList; *pnOffsetList = (int)(p - pReader->pOffsetList - 1); } /* List may have been edited in place by fts3EvalNearTrim() */ while( p=pEnd ){ pReader->pOffsetList = 0; }else{ rc = fts3SegReaderRequire(pReader, p, FTS3_VARINT_MAX); if( rc==SQLITE_OK ){ u64 iDelta; pReader->pOffsetList = p + sqlite3Fts3GetVarintU(p, &iDelta); if( pTab->bDescIdx ){ pReader->iDocid = (i64)((u64)pReader->iDocid - iDelta); }else{ pReader->iDocid = (i64)((u64)pReader->iDocid + iDelta); } } } } return rc; } SQLITE_PRIVATE int sqlite3Fts3MsrOvfl( Fts3Cursor *pCsr, Fts3MultiSegReader *pMsr, int *pnOvfl ){ Fts3Table *p = (Fts3Table*)pCsr->base.pVtab; int nOvfl = 0; int ii; int rc = SQLITE_OK; int pgsz = p->nPgsz; assert( p->bFts4 ); assert( pgsz>0 ); for(ii=0; rc==SQLITE_OK && iinSegment; ii++){ Fts3SegReader *pReader = pMsr->apSegment[ii]; if( !fts3SegReaderIsPending(pReader) && !fts3SegReaderIsRootOnly(pReader) ){ sqlite3_int64 jj; for(jj=pReader->iStartBlock; jj<=pReader->iLeafEndBlock; jj++){ int nBlob; rc = sqlite3Fts3ReadBlock(p, jj, 0, &nBlob, 0); if( rc!=SQLITE_OK ) break; if( (nBlob+35)>pgsz ){ nOvfl += (nBlob + 34)/pgsz; } } } } *pnOvfl = nOvfl; return rc; } /* ** Free all allocations associated with the iterator passed as the ** second argument. */ SQLITE_PRIVATE void sqlite3Fts3SegReaderFree(Fts3SegReader *pReader){ if( pReader ){ if( !fts3SegReaderIsPending(pReader) ){ sqlite3_free(pReader->zTerm); } if( !fts3SegReaderIsRootOnly(pReader) ){ sqlite3_free(pReader->aNode); } sqlite3_blob_close(pReader->pBlob); } sqlite3_free(pReader); } /* ** Allocate a new SegReader object. */ SQLITE_PRIVATE int sqlite3Fts3SegReaderNew( int iAge, /* Segment "age". */ int bLookup, /* True for a lookup only */ sqlite3_int64 iStartLeaf, /* First leaf to traverse */ sqlite3_int64 iEndLeaf, /* Final leaf to traverse */ sqlite3_int64 iEndBlock, /* Final block of segment */ const char *zRoot, /* Buffer containing root node */ int nRoot, /* Size of buffer containing root node */ Fts3SegReader **ppReader /* OUT: Allocated Fts3SegReader */ ){ Fts3SegReader *pReader; /* Newly allocated SegReader object */ int nExtra = 0; /* Bytes to allocate segment root node */ assert( zRoot!=0 || nRoot==0 ); #ifdef CORRUPT_DB assert( zRoot!=0 || CORRUPT_DB ); #endif if( iStartLeaf==0 ){ if( iEndLeaf!=0 ) return FTS_CORRUPT_VTAB; nExtra = nRoot + FTS3_NODE_PADDING; } pReader = (Fts3SegReader *)sqlite3_malloc(sizeof(Fts3SegReader) + nExtra); if( !pReader ){ return SQLITE_NOMEM; } memset(pReader, 0, sizeof(Fts3SegReader)); pReader->iIdx = iAge; pReader->bLookup = bLookup!=0; pReader->iStartBlock = iStartLeaf; pReader->iLeafEndBlock = iEndLeaf; pReader->iEndBlock = iEndBlock; if( nExtra ){ /* The entire segment is stored in the root node. */ pReader->aNode = (char *)&pReader[1]; pReader->rootOnly = 1; pReader->nNode = nRoot; if( nRoot ) memcpy(pReader->aNode, zRoot, nRoot); memset(&pReader->aNode[nRoot], 0, FTS3_NODE_PADDING); }else{ pReader->iCurrentBlock = iStartLeaf-1; } *ppReader = pReader; return SQLITE_OK; } /* ** This is a comparison function used as a qsort() callback when sorting ** an array of pending terms by term. This occurs as part of flushing ** the contents of the pending-terms hash table to the database. */ static int SQLITE_CDECL fts3CompareElemByTerm( const void *lhs, const void *rhs ){ char *z1 = fts3HashKey(*(Fts3HashElem **)lhs); char *z2 = fts3HashKey(*(Fts3HashElem **)rhs); int n1 = fts3HashKeysize(*(Fts3HashElem **)lhs); int n2 = fts3HashKeysize(*(Fts3HashElem **)rhs); int n = (n1aIndex */ const char *zTerm, /* Term to search for */ int nTerm, /* Size of buffer zTerm */ int bPrefix, /* True for a prefix iterator */ Fts3SegReader **ppReader /* OUT: SegReader for pending-terms */ ){ Fts3SegReader *pReader = 0; /* Fts3SegReader object to return */ Fts3HashElem *pE; /* Iterator variable */ Fts3HashElem **aElem = 0; /* Array of term hash entries to scan */ int nElem = 0; /* Size of array at aElem */ int rc = SQLITE_OK; /* Return Code */ Fts3Hash *pHash; pHash = &p->aIndex[iIndex].hPending; if( bPrefix ){ int nAlloc = 0; /* Size of allocated array at aElem */ for(pE=fts3HashFirst(pHash); pE; pE=fts3HashNext(pE)){ char *zKey = (char *)fts3HashKey(pE); int nKey = fts3HashKeysize(pE); if( nTerm==0 || (nKey>=nTerm && 0==memcmp(zKey, zTerm, nTerm)) ){ if( nElem==nAlloc ){ Fts3HashElem **aElem2; nAlloc += 16; aElem2 = (Fts3HashElem **)sqlite3_realloc( aElem, nAlloc*sizeof(Fts3HashElem *) ); if( !aElem2 ){ rc = SQLITE_NOMEM; nElem = 0; break; } aElem = aElem2; } aElem[nElem++] = pE; } } /* If more than one term matches the prefix, sort the Fts3HashElem ** objects in term order using qsort(). This uses the same comparison ** callback as is used when flushing terms to disk. */ if( nElem>1 ){ qsort(aElem, nElem, sizeof(Fts3HashElem *), fts3CompareElemByTerm); } }else{ /* The query is a simple term lookup that matches at most one term in ** the index. All that is required is a straight hash-lookup. ** ** Because the stack address of pE may be accessed via the aElem pointer ** below, the "Fts3HashElem *pE" must be declared so that it is valid ** within this entire function, not just this "else{...}" block. */ pE = fts3HashFindElem(pHash, zTerm, nTerm); if( pE ){ aElem = &pE; nElem = 1; } } if( nElem>0 ){ sqlite3_int64 nByte; nByte = sizeof(Fts3SegReader) + (nElem+1)*sizeof(Fts3HashElem *); pReader = (Fts3SegReader *)sqlite3_malloc64(nByte); if( !pReader ){ rc = SQLITE_NOMEM; }else{ memset(pReader, 0, nByte); pReader->iIdx = 0x7FFFFFFF; pReader->ppNextElem = (Fts3HashElem **)&pReader[1]; memcpy(pReader->ppNextElem, aElem, nElem*sizeof(Fts3HashElem *)); } } if( bPrefix ){ sqlite3_free(aElem); } *ppReader = pReader; return rc; } /* ** Compare the entries pointed to by two Fts3SegReader structures. ** Comparison is as follows: ** ** 1) EOF is greater than not EOF. ** ** 2) The current terms (if any) are compared using memcmp(). If one ** term is a prefix of another, the longer term is considered the ** larger. ** ** 3) By segment age. An older segment is considered larger. */ static int fts3SegReaderCmp(Fts3SegReader *pLhs, Fts3SegReader *pRhs){ int rc; if( pLhs->aNode && pRhs->aNode ){ int rc2 = pLhs->nTerm - pRhs->nTerm; if( rc2<0 ){ rc = memcmp(pLhs->zTerm, pRhs->zTerm, pLhs->nTerm); }else{ rc = memcmp(pLhs->zTerm, pRhs->zTerm, pRhs->nTerm); } if( rc==0 ){ rc = rc2; } }else{ rc = (pLhs->aNode==0) - (pRhs->aNode==0); } if( rc==0 ){ rc = pRhs->iIdx - pLhs->iIdx; } assert( rc!=0 ); return rc; } /* ** A different comparison function for SegReader structures. In this ** version, it is assumed that each SegReader points to an entry in ** a doclist for identical terms. Comparison is made as follows: ** ** 1) EOF (end of doclist in this case) is greater than not EOF. ** ** 2) By current docid. ** ** 3) By segment age. An older segment is considered larger. */ static int fts3SegReaderDoclistCmp(Fts3SegReader *pLhs, Fts3SegReader *pRhs){ int rc = (pLhs->pOffsetList==0)-(pRhs->pOffsetList==0); if( rc==0 ){ if( pLhs->iDocid==pRhs->iDocid ){ rc = pRhs->iIdx - pLhs->iIdx; }else{ rc = (pLhs->iDocid > pRhs->iDocid) ? 1 : -1; } } assert( pLhs->aNode && pRhs->aNode ); return rc; } static int fts3SegReaderDoclistCmpRev(Fts3SegReader *pLhs, Fts3SegReader *pRhs){ int rc = (pLhs->pOffsetList==0)-(pRhs->pOffsetList==0); if( rc==0 ){ if( pLhs->iDocid==pRhs->iDocid ){ rc = pRhs->iIdx - pLhs->iIdx; }else{ rc = (pLhs->iDocid < pRhs->iDocid) ? 1 : -1; } } assert( pLhs->aNode && pRhs->aNode ); return rc; } /* ** Compare the term that the Fts3SegReader object passed as the first argument ** points to with the term specified by arguments zTerm and nTerm. ** ** If the pSeg iterator is already at EOF, return 0. Otherwise, return ** -ve if the pSeg term is less than zTerm/nTerm, 0 if the two terms are ** equal, or +ve if the pSeg term is greater than zTerm/nTerm. */ static int fts3SegReaderTermCmp( Fts3SegReader *pSeg, /* Segment reader object */ const char *zTerm, /* Term to compare to */ int nTerm /* Size of term zTerm in bytes */ ){ int res = 0; if( pSeg->aNode ){ if( pSeg->nTerm>nTerm ){ res = memcmp(pSeg->zTerm, zTerm, nTerm); }else{ res = memcmp(pSeg->zTerm, zTerm, pSeg->nTerm); } if( res==0 ){ res = pSeg->nTerm-nTerm; } } return res; } /* ** Argument apSegment is an array of nSegment elements. It is known that ** the final (nSegment-nSuspect) members are already in sorted order ** (according to the comparison function provided). This function shuffles ** the array around until all entries are in sorted order. */ static void fts3SegReaderSort( Fts3SegReader **apSegment, /* Array to sort entries of */ int nSegment, /* Size of apSegment array */ int nSuspect, /* Unsorted entry count */ int (*xCmp)(Fts3SegReader *, Fts3SegReader *) /* Comparison function */ ){ int i; /* Iterator variable */ assert( nSuspect<=nSegment ); if( nSuspect==nSegment ) nSuspect--; for(i=nSuspect-1; i>=0; i--){ int j; for(j=i; j<(nSegment-1); j++){ Fts3SegReader *pTmp; if( xCmp(apSegment[j], apSegment[j+1])<0 ) break; pTmp = apSegment[j+1]; apSegment[j+1] = apSegment[j]; apSegment[j] = pTmp; } } #ifndef NDEBUG /* Check that the list really is sorted now. */ for(i=0; i<(nSuspect-1); i++){ assert( xCmp(apSegment[i], apSegment[i+1])<0 ); } #endif } /* ** Insert a record into the %_segments table. */ static int fts3WriteSegment( Fts3Table *p, /* Virtual table handle */ sqlite3_int64 iBlock, /* Block id for new block */ char *z, /* Pointer to buffer containing block data */ int n /* Size of buffer z in bytes */ ){ sqlite3_stmt *pStmt; int rc = fts3SqlStmt(p, SQL_INSERT_SEGMENTS, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pStmt, 1, iBlock); sqlite3_bind_blob(pStmt, 2, z, n, SQLITE_STATIC); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); sqlite3_bind_null(pStmt, 2); } return rc; } /* ** Find the largest relative level number in the table. If successful, set ** *pnMax to this value and return SQLITE_OK. Otherwise, if an error occurs, ** set *pnMax to zero and return an SQLite error code. */ SQLITE_PRIVATE int sqlite3Fts3MaxLevel(Fts3Table *p, int *pnMax){ int rc; int mxLevel = 0; sqlite3_stmt *pStmt = 0; rc = fts3SqlStmt(p, SQL_SELECT_MXLEVEL, &pStmt, 0); if( rc==SQLITE_OK ){ if( SQLITE_ROW==sqlite3_step(pStmt) ){ mxLevel = sqlite3_column_int(pStmt, 0); } rc = sqlite3_reset(pStmt); } *pnMax = mxLevel; return rc; } /* ** Insert a record into the %_segdir table. */ static int fts3WriteSegdir( Fts3Table *p, /* Virtual table handle */ sqlite3_int64 iLevel, /* Value for "level" field (absolute level) */ int iIdx, /* Value for "idx" field */ sqlite3_int64 iStartBlock, /* Value for "start_block" field */ sqlite3_int64 iLeafEndBlock, /* Value for "leaves_end_block" field */ sqlite3_int64 iEndBlock, /* Value for "end_block" field */ sqlite3_int64 nLeafData, /* Bytes of leaf data in segment */ char *zRoot, /* Blob value for "root" field */ int nRoot /* Number of bytes in buffer zRoot */ ){ sqlite3_stmt *pStmt; int rc = fts3SqlStmt(p, SQL_INSERT_SEGDIR, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pStmt, 1, iLevel); sqlite3_bind_int(pStmt, 2, iIdx); sqlite3_bind_int64(pStmt, 3, iStartBlock); sqlite3_bind_int64(pStmt, 4, iLeafEndBlock); if( nLeafData==0 ){ sqlite3_bind_int64(pStmt, 5, iEndBlock); }else{ char *zEnd = sqlite3_mprintf("%lld %lld", iEndBlock, nLeafData); if( !zEnd ) return SQLITE_NOMEM; sqlite3_bind_text(pStmt, 5, zEnd, -1, sqlite3_free); } sqlite3_bind_blob(pStmt, 6, zRoot, nRoot, SQLITE_STATIC); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); sqlite3_bind_null(pStmt, 6); } return rc; } /* ** Return the size of the common prefix (if any) shared by zPrev and ** zNext, in bytes. For example, ** ** fts3PrefixCompress("abc", 3, "abcdef", 6) // returns 3 ** fts3PrefixCompress("abX", 3, "abcdef", 6) // returns 2 ** fts3PrefixCompress("abX", 3, "Xbcdef", 6) // returns 0 */ static int fts3PrefixCompress( const char *zPrev, /* Buffer containing previous term */ int nPrev, /* Size of buffer zPrev in bytes */ const char *zNext, /* Buffer containing next term */ int nNext /* Size of buffer zNext in bytes */ ){ int n; UNUSED_PARAMETER(nNext); for(n=0; nnData; /* Current size of node in bytes */ int nReq = nData; /* Required space after adding zTerm */ int nPrefix; /* Number of bytes of prefix compression */ int nSuffix; /* Suffix length */ nPrefix = fts3PrefixCompress(pTree->zTerm, pTree->nTerm, zTerm, nTerm); nSuffix = nTerm-nPrefix; /* If nSuffix is zero or less, then zTerm/nTerm must be a prefix of ** pWriter->zTerm/pWriter->nTerm. i.e. must be equal to or less than when ** compared with BINARY collation. This indicates corruption. */ if( nSuffix<=0 ) return FTS_CORRUPT_VTAB; nReq += sqlite3Fts3VarintLen(nPrefix)+sqlite3Fts3VarintLen(nSuffix)+nSuffix; if( nReq<=p->nNodeSize || !pTree->zTerm ){ if( nReq>p->nNodeSize ){ /* An unusual case: this is the first term to be added to the node ** and the static node buffer (p->nNodeSize bytes) is not large ** enough. Use a separately malloced buffer instead This wastes ** p->nNodeSize bytes, but since this scenario only comes about when ** the database contain two terms that share a prefix of almost 2KB, ** this is not expected to be a serious problem. */ assert( pTree->aData==(char *)&pTree[1] ); pTree->aData = (char *)sqlite3_malloc(nReq); if( !pTree->aData ){ return SQLITE_NOMEM; } } if( pTree->zTerm ){ /* There is no prefix-length field for first term in a node */ nData += sqlite3Fts3PutVarint(&pTree->aData[nData], nPrefix); } nData += sqlite3Fts3PutVarint(&pTree->aData[nData], nSuffix); memcpy(&pTree->aData[nData], &zTerm[nPrefix], nSuffix); pTree->nData = nData + nSuffix; pTree->nEntry++; if( isCopyTerm ){ if( pTree->nMalloczMalloc, nTerm*2); if( !zNew ){ return SQLITE_NOMEM; } pTree->nMalloc = nTerm*2; pTree->zMalloc = zNew; } pTree->zTerm = pTree->zMalloc; memcpy(pTree->zTerm, zTerm, nTerm); pTree->nTerm = nTerm; }else{ pTree->zTerm = (char *)zTerm; pTree->nTerm = nTerm; } return SQLITE_OK; } } /* If control flows to here, it was not possible to append zTerm to the ** current node. Create a new node (a right-sibling of the current node). ** If this is the first node in the tree, the term is added to it. ** ** Otherwise, the term is not added to the new node, it is left empty for ** now. Instead, the term is inserted into the parent of pTree. If pTree ** has no parent, one is created here. */ pNew = (SegmentNode *)sqlite3_malloc(sizeof(SegmentNode) + p->nNodeSize); if( !pNew ){ return SQLITE_NOMEM; } memset(pNew, 0, sizeof(SegmentNode)); pNew->nData = 1 + FTS3_VARINT_MAX; pNew->aData = (char *)&pNew[1]; if( pTree ){ SegmentNode *pParent = pTree->pParent; rc = fts3NodeAddTerm(p, &pParent, isCopyTerm, zTerm, nTerm); if( pTree->pParent==0 ){ pTree->pParent = pParent; } pTree->pRight = pNew; pNew->pLeftmost = pTree->pLeftmost; pNew->pParent = pParent; pNew->zMalloc = pTree->zMalloc; pNew->nMalloc = pTree->nMalloc; pTree->zMalloc = 0; }else{ pNew->pLeftmost = pNew; rc = fts3NodeAddTerm(p, &pNew, isCopyTerm, zTerm, nTerm); } *ppTree = pNew; return rc; } /* ** Helper function for fts3NodeWrite(). */ static int fts3TreeFinishNode( SegmentNode *pTree, int iHeight, sqlite3_int64 iLeftChild ){ int nStart; assert( iHeight>=1 && iHeight<128 ); nStart = FTS3_VARINT_MAX - sqlite3Fts3VarintLen(iLeftChild); pTree->aData[nStart] = (char)iHeight; sqlite3Fts3PutVarint(&pTree->aData[nStart+1], iLeftChild); return nStart; } /* ** Write the buffer for the segment node pTree and all of its peers to the ** database. Then call this function recursively to write the parent of ** pTree and its peers to the database. ** ** Except, if pTree is a root node, do not write it to the database. Instead, ** set output variables *paRoot and *pnRoot to contain the root node. ** ** If successful, SQLITE_OK is returned and output variable *piLast is ** set to the largest blockid written to the database (or zero if no ** blocks were written to the db). Otherwise, an SQLite error code is ** returned. */ static int fts3NodeWrite( Fts3Table *p, /* Virtual table handle */ SegmentNode *pTree, /* SegmentNode handle */ int iHeight, /* Height of this node in tree */ sqlite3_int64 iLeaf, /* Block id of first leaf node */ sqlite3_int64 iFree, /* Block id of next free slot in %_segments */ sqlite3_int64 *piLast, /* OUT: Block id of last entry written */ char **paRoot, /* OUT: Data for root node */ int *pnRoot /* OUT: Size of root node in bytes */ ){ int rc = SQLITE_OK; if( !pTree->pParent ){ /* Root node of the tree. */ int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf); *piLast = iFree-1; *pnRoot = pTree->nData - nStart; *paRoot = &pTree->aData[nStart]; }else{ SegmentNode *pIter; sqlite3_int64 iNextFree = iFree; sqlite3_int64 iNextLeaf = iLeaf; for(pIter=pTree->pLeftmost; pIter && rc==SQLITE_OK; pIter=pIter->pRight){ int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf); int nWrite = pIter->nData - nStart; rc = fts3WriteSegment(p, iNextFree, &pIter->aData[nStart], nWrite); iNextFree++; iNextLeaf += (pIter->nEntry+1); } if( rc==SQLITE_OK ){ assert( iNextLeaf==iFree ); rc = fts3NodeWrite( p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot ); } } return rc; } /* ** Free all memory allocations associated with the tree pTree. */ static void fts3NodeFree(SegmentNode *pTree){ if( pTree ){ SegmentNode *p = pTree->pLeftmost; fts3NodeFree(p->pParent); while( p ){ SegmentNode *pRight = p->pRight; if( p->aData!=(char *)&p[1] ){ sqlite3_free(p->aData); } assert( pRight==0 || p->zMalloc==0 ); sqlite3_free(p->zMalloc); sqlite3_free(p); p = pRight; } } } /* ** Add a term to the segment being constructed by the SegmentWriter object ** *ppWriter. When adding the first term to a segment, *ppWriter should ** be passed NULL. This function will allocate a new SegmentWriter object ** and return it via the input/output variable *ppWriter in this case. ** ** If successful, SQLITE_OK is returned. Otherwise, an SQLite error code. */ static int fts3SegWriterAdd( Fts3Table *p, /* Virtual table handle */ SegmentWriter **ppWriter, /* IN/OUT: SegmentWriter handle */ int isCopyTerm, /* True if buffer zTerm must be copied */ const char *zTerm, /* Pointer to buffer containing term */ int nTerm, /* Size of term in bytes */ const char *aDoclist, /* Pointer to buffer containing doclist */ int nDoclist /* Size of doclist in bytes */ ){ int nPrefix; /* Size of term prefix in bytes */ int nSuffix; /* Size of term suffix in bytes */ int nReq; /* Number of bytes required on leaf page */ int nData; SegmentWriter *pWriter = *ppWriter; if( !pWriter ){ int rc; sqlite3_stmt *pStmt; /* Allocate the SegmentWriter structure */ pWriter = (SegmentWriter *)sqlite3_malloc(sizeof(SegmentWriter)); if( !pWriter ) return SQLITE_NOMEM; memset(pWriter, 0, sizeof(SegmentWriter)); *ppWriter = pWriter; /* Allocate a buffer in which to accumulate data */ pWriter->aData = (char *)sqlite3_malloc(p->nNodeSize); if( !pWriter->aData ) return SQLITE_NOMEM; pWriter->nSize = p->nNodeSize; /* Find the next free blockid in the %_segments table */ rc = fts3SqlStmt(p, SQL_NEXT_SEGMENTS_ID, &pStmt, 0); if( rc!=SQLITE_OK ) return rc; if( SQLITE_ROW==sqlite3_step(pStmt) ){ pWriter->iFree = sqlite3_column_int64(pStmt, 0); pWriter->iFirst = pWriter->iFree; } rc = sqlite3_reset(pStmt); if( rc!=SQLITE_OK ) return rc; } nData = pWriter->nData; nPrefix = fts3PrefixCompress(pWriter->zTerm, pWriter->nTerm, zTerm, nTerm); nSuffix = nTerm-nPrefix; /* If nSuffix is zero or less, then zTerm/nTerm must be a prefix of ** pWriter->zTerm/pWriter->nTerm. i.e. must be equal to or less than when ** compared with BINARY collation. This indicates corruption. */ if( nSuffix<=0 ) return FTS_CORRUPT_VTAB; /* Figure out how many bytes are required by this new entry */ nReq = sqlite3Fts3VarintLen(nPrefix) + /* varint containing prefix size */ sqlite3Fts3VarintLen(nSuffix) + /* varint containing suffix size */ nSuffix + /* Term suffix */ sqlite3Fts3VarintLen(nDoclist) + /* Size of doclist */ nDoclist; /* Doclist data */ if( nData>0 && nData+nReq>p->nNodeSize ){ int rc; /* The current leaf node is full. Write it out to the database. */ if( pWriter->iFree==LARGEST_INT64 ) return FTS_CORRUPT_VTAB; rc = fts3WriteSegment(p, pWriter->iFree++, pWriter->aData, nData); if( rc!=SQLITE_OK ) return rc; p->nLeafAdd++; /* Add the current term to the interior node tree. The term added to ** the interior tree must: ** ** a) be greater than the largest term on the leaf node just written ** to the database (still available in pWriter->zTerm), and ** ** b) be less than or equal to the term about to be added to the new ** leaf node (zTerm/nTerm). ** ** In other words, it must be the prefix of zTerm 1 byte longer than ** the common prefix (if any) of zTerm and pWriter->zTerm. */ assert( nPrefixpTree, isCopyTerm, zTerm, nPrefix+1); if( rc!=SQLITE_OK ) return rc; nData = 0; pWriter->nTerm = 0; nPrefix = 0; nSuffix = nTerm; nReq = 1 + /* varint containing prefix size */ sqlite3Fts3VarintLen(nTerm) + /* varint containing suffix size */ nTerm + /* Term suffix */ sqlite3Fts3VarintLen(nDoclist) + /* Size of doclist */ nDoclist; /* Doclist data */ } /* Increase the total number of bytes written to account for the new entry. */ pWriter->nLeafData += nReq; /* If the buffer currently allocated is too small for this entry, realloc ** the buffer to make it large enough. */ if( nReq>pWriter->nSize ){ char *aNew = sqlite3_realloc(pWriter->aData, nReq); if( !aNew ) return SQLITE_NOMEM; pWriter->aData = aNew; pWriter->nSize = nReq; } assert( nData+nReq<=pWriter->nSize ); /* Append the prefix-compressed term and doclist to the buffer. */ nData += sqlite3Fts3PutVarint(&pWriter->aData[nData], nPrefix); nData += sqlite3Fts3PutVarint(&pWriter->aData[nData], nSuffix); assert( nSuffix>0 ); memcpy(&pWriter->aData[nData], &zTerm[nPrefix], nSuffix); nData += nSuffix; nData += sqlite3Fts3PutVarint(&pWriter->aData[nData], nDoclist); assert( nDoclist>0 ); memcpy(&pWriter->aData[nData], aDoclist, nDoclist); pWriter->nData = nData + nDoclist; /* Save the current term so that it can be used to prefix-compress the next. ** If the isCopyTerm parameter is true, then the buffer pointed to by ** zTerm is transient, so take a copy of the term data. Otherwise, just ** store a copy of the pointer. */ if( isCopyTerm ){ if( nTerm>pWriter->nMalloc ){ char *zNew = sqlite3_realloc(pWriter->zMalloc, nTerm*2); if( !zNew ){ return SQLITE_NOMEM; } pWriter->nMalloc = nTerm*2; pWriter->zMalloc = zNew; pWriter->zTerm = zNew; } assert( pWriter->zTerm==pWriter->zMalloc ); assert( nTerm>0 ); memcpy(pWriter->zTerm, zTerm, nTerm); }else{ pWriter->zTerm = (char *)zTerm; } pWriter->nTerm = nTerm; return SQLITE_OK; } /* ** Flush all data associated with the SegmentWriter object pWriter to the ** database. This function must be called after all terms have been added ** to the segment using fts3SegWriterAdd(). If successful, SQLITE_OK is ** returned. Otherwise, an SQLite error code. */ static int fts3SegWriterFlush( Fts3Table *p, /* Virtual table handle */ SegmentWriter *pWriter, /* SegmentWriter to flush to the db */ sqlite3_int64 iLevel, /* Value for 'level' column of %_segdir */ int iIdx /* Value for 'idx' column of %_segdir */ ){ int rc; /* Return code */ if( pWriter->pTree ){ sqlite3_int64 iLast = 0; /* Largest block id written to database */ sqlite3_int64 iLastLeaf; /* Largest leaf block id written to db */ char *zRoot = NULL; /* Pointer to buffer containing root node */ int nRoot = 0; /* Size of buffer zRoot */ iLastLeaf = pWriter->iFree; rc = fts3WriteSegment(p, pWriter->iFree++, pWriter->aData, pWriter->nData); if( rc==SQLITE_OK ){ rc = fts3NodeWrite(p, pWriter->pTree, 1, pWriter->iFirst, pWriter->iFree, &iLast, &zRoot, &nRoot); } if( rc==SQLITE_OK ){ rc = fts3WriteSegdir(p, iLevel, iIdx, pWriter->iFirst, iLastLeaf, iLast, pWriter->nLeafData, zRoot, nRoot); } }else{ /* The entire tree fits on the root node. Write it to the segdir table. */ rc = fts3WriteSegdir(p, iLevel, iIdx, 0, 0, 0, pWriter->nLeafData, pWriter->aData, pWriter->nData); } p->nLeafAdd++; return rc; } /* ** Release all memory held by the SegmentWriter object passed as the ** first argument. */ static void fts3SegWriterFree(SegmentWriter *pWriter){ if( pWriter ){ sqlite3_free(pWriter->aData); sqlite3_free(pWriter->zMalloc); fts3NodeFree(pWriter->pTree); sqlite3_free(pWriter); } } /* ** The first value in the apVal[] array is assumed to contain an integer. ** This function tests if there exist any documents with docid values that ** are different from that integer. i.e. if deleting the document with docid ** pRowid would mean the FTS3 table were empty. ** ** If successful, *pisEmpty is set to true if the table is empty except for ** document pRowid, or false otherwise, and SQLITE_OK is returned. If an ** error occurs, an SQLite error code is returned. */ static int fts3IsEmpty(Fts3Table *p, sqlite3_value *pRowid, int *pisEmpty){ sqlite3_stmt *pStmt; int rc; if( p->zContentTbl ){ /* If using the content=xxx option, assume the table is never empty */ *pisEmpty = 0; rc = SQLITE_OK; }else{ rc = fts3SqlStmt(p, SQL_IS_EMPTY, &pStmt, &pRowid); if( rc==SQLITE_OK ){ if( SQLITE_ROW==sqlite3_step(pStmt) ){ *pisEmpty = sqlite3_column_int(pStmt, 0); } rc = sqlite3_reset(pStmt); } } return rc; } /* ** Set *pnMax to the largest segment level in the database for the index ** iIndex. ** ** Segment levels are stored in the 'level' column of the %_segdir table. ** ** Return SQLITE_OK if successful, or an SQLite error code if not. */ static int fts3SegmentMaxLevel( Fts3Table *p, int iLangid, int iIndex, sqlite3_int64 *pnMax ){ sqlite3_stmt *pStmt; int rc; assert( iIndex>=0 && iIndexnIndex ); /* Set pStmt to the compiled version of: ** ** SELECT max(level) FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ? ** ** (1024 is actually the value of macro FTS3_SEGDIR_PREFIXLEVEL_STR). */ rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR_MAX_LEVEL, &pStmt, 0); if( rc!=SQLITE_OK ) return rc; sqlite3_bind_int64(pStmt, 1, getAbsoluteLevel(p, iLangid, iIndex, 0)); sqlite3_bind_int64(pStmt, 2, getAbsoluteLevel(p, iLangid, iIndex, FTS3_SEGDIR_MAXLEVEL-1) ); if( SQLITE_ROW==sqlite3_step(pStmt) ){ *pnMax = sqlite3_column_int64(pStmt, 0); } return sqlite3_reset(pStmt); } /* ** iAbsLevel is an absolute level that may be assumed to exist within ** the database. This function checks if it is the largest level number ** within its index. Assuming no error occurs, *pbMax is set to 1 if ** iAbsLevel is indeed the largest level, or 0 otherwise, and SQLITE_OK ** is returned. If an error occurs, an error code is returned and the ** final value of *pbMax is undefined. */ static int fts3SegmentIsMaxLevel(Fts3Table *p, i64 iAbsLevel, int *pbMax){ /* Set pStmt to the compiled version of: ** ** SELECT max(level) FROM %Q.'%q_segdir' WHERE level BETWEEN ? AND ? ** ** (1024 is actually the value of macro FTS3_SEGDIR_PREFIXLEVEL_STR). */ sqlite3_stmt *pStmt; int rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR_MAX_LEVEL, &pStmt, 0); if( rc!=SQLITE_OK ) return rc; sqlite3_bind_int64(pStmt, 1, iAbsLevel+1); sqlite3_bind_int64(pStmt, 2, (((u64)iAbsLevel/FTS3_SEGDIR_MAXLEVEL)+1) * FTS3_SEGDIR_MAXLEVEL ); *pbMax = 0; if( SQLITE_ROW==sqlite3_step(pStmt) ){ *pbMax = sqlite3_column_type(pStmt, 0)==SQLITE_NULL; } return sqlite3_reset(pStmt); } /* ** Delete all entries in the %_segments table associated with the segment ** opened with seg-reader pSeg. This function does not affect the contents ** of the %_segdir table. */ static int fts3DeleteSegment( Fts3Table *p, /* FTS table handle */ Fts3SegReader *pSeg /* Segment to delete */ ){ int rc = SQLITE_OK; /* Return code */ if( pSeg->iStartBlock ){ sqlite3_stmt *pDelete; /* SQL statement to delete rows */ rc = fts3SqlStmt(p, SQL_DELETE_SEGMENTS_RANGE, &pDelete, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pDelete, 1, pSeg->iStartBlock); sqlite3_bind_int64(pDelete, 2, pSeg->iEndBlock); sqlite3_step(pDelete); rc = sqlite3_reset(pDelete); } } return rc; } /* ** This function is used after merging multiple segments into a single large ** segment to delete the old, now redundant, segment b-trees. Specifically, ** it: ** ** 1) Deletes all %_segments entries for the segments associated with ** each of the SegReader objects in the array passed as the third ** argument, and ** ** 2) deletes all %_segdir entries with level iLevel, or all %_segdir ** entries regardless of level if (iLevel<0). ** ** SQLITE_OK is returned if successful, otherwise an SQLite error code. */ static int fts3DeleteSegdir( Fts3Table *p, /* Virtual table handle */ int iLangid, /* Language id */ int iIndex, /* Index for p->aIndex */ int iLevel, /* Level of %_segdir entries to delete */ Fts3SegReader **apSegment, /* Array of SegReader objects */ int nReader /* Size of array apSegment */ ){ int rc = SQLITE_OK; /* Return Code */ int i; /* Iterator variable */ sqlite3_stmt *pDelete = 0; /* SQL statement to delete rows */ for(i=0; rc==SQLITE_OK && i=0 || iLevel==FTS3_SEGCURSOR_ALL ); if( iLevel==FTS3_SEGCURSOR_ALL ){ rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_RANGE, &pDelete, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pDelete, 1, getAbsoluteLevel(p, iLangid, iIndex, 0)); sqlite3_bind_int64(pDelete, 2, getAbsoluteLevel(p, iLangid, iIndex, FTS3_SEGDIR_MAXLEVEL-1) ); } }else{ rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_LEVEL, &pDelete, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64( pDelete, 1, getAbsoluteLevel(p, iLangid, iIndex, iLevel) ); } } if( rc==SQLITE_OK ){ sqlite3_step(pDelete); rc = sqlite3_reset(pDelete); } return rc; } /* ** When this function is called, buffer *ppList (size *pnList bytes) contains ** a position list that may (or may not) feature multiple columns. This ** function adjusts the pointer *ppList and the length *pnList so that they ** identify the subset of the position list that corresponds to column iCol. ** ** If there are no entries in the input position list for column iCol, then ** *pnList is set to zero before returning. ** ** If parameter bZero is non-zero, then any part of the input list following ** the end of the output list is zeroed before returning. */ static void fts3ColumnFilter( int iCol, /* Column to filter on */ int bZero, /* Zero out anything following *ppList */ char **ppList, /* IN/OUT: Pointer to position list */ int *pnList /* IN/OUT: Size of buffer *ppList in bytes */ ){ char *pList = *ppList; int nList = *pnList; char *pEnd = &pList[nList]; int iCurrent = 0; char *p = pList; assert( iCol>=0 ); while( 1 ){ char c = 0; while( p0){ memset(&pList[nList], 0, pEnd - &pList[nList]); } *ppList = pList; *pnList = nList; } /* ** Cache data in the Fts3MultiSegReader.aBuffer[] buffer (overwriting any ** existing data). Grow the buffer if required. ** ** If successful, return SQLITE_OK. Otherwise, if an OOM error is encountered ** trying to resize the buffer, return SQLITE_NOMEM. */ static int fts3MsrBufferData( Fts3MultiSegReader *pMsr, /* Multi-segment-reader handle */ char *pList, int nList ){ if( nList>pMsr->nBuffer ){ char *pNew; pMsr->nBuffer = nList*2; pNew = (char *)sqlite3_realloc(pMsr->aBuffer, pMsr->nBuffer); if( !pNew ) return SQLITE_NOMEM; pMsr->aBuffer = pNew; } assert( nList>0 ); memcpy(pMsr->aBuffer, pList, nList); return SQLITE_OK; } SQLITE_PRIVATE int sqlite3Fts3MsrIncrNext( Fts3Table *p, /* Virtual table handle */ Fts3MultiSegReader *pMsr, /* Multi-segment-reader handle */ sqlite3_int64 *piDocid, /* OUT: Docid value */ char **paPoslist, /* OUT: Pointer to position list */ int *pnPoslist /* OUT: Size of position list in bytes */ ){ int nMerge = pMsr->nAdvance; Fts3SegReader **apSegment = pMsr->apSegment; int (*xCmp)(Fts3SegReader *, Fts3SegReader *) = ( p->bDescIdx ? fts3SegReaderDoclistCmpRev : fts3SegReaderDoclistCmp ); if( nMerge==0 ){ *paPoslist = 0; return SQLITE_OK; } while( 1 ){ Fts3SegReader *pSeg; pSeg = pMsr->apSegment[0]; if( pSeg->pOffsetList==0 ){ *paPoslist = 0; break; }else{ int rc; char *pList; int nList; int j; sqlite3_int64 iDocid = apSegment[0]->iDocid; rc = fts3SegReaderNextDocid(p, apSegment[0], &pList, &nList); j = 1; while( rc==SQLITE_OK && jpOffsetList && apSegment[j]->iDocid==iDocid ){ rc = fts3SegReaderNextDocid(p, apSegment[j], 0, 0); j++; } if( rc!=SQLITE_OK ) return rc; fts3SegReaderSort(pMsr->apSegment, nMerge, j, xCmp); if( nList>0 && fts3SegReaderIsPending(apSegment[0]) ){ rc = fts3MsrBufferData(pMsr, pList, nList+1); if( rc!=SQLITE_OK ) return rc; assert( (pMsr->aBuffer[nList] & 0xFE)==0x00 ); pList = pMsr->aBuffer; } if( pMsr->iColFilter>=0 ){ fts3ColumnFilter(pMsr->iColFilter, 1, &pList, &nList); } if( nList>0 ){ *paPoslist = pList; *piDocid = iDocid; *pnPoslist = nList; break; } } } return SQLITE_OK; } static int fts3SegReaderStart( Fts3Table *p, /* Virtual table handle */ Fts3MultiSegReader *pCsr, /* Cursor object */ const char *zTerm, /* Term searched for (or NULL) */ int nTerm /* Length of zTerm in bytes */ ){ int i; int nSeg = pCsr->nSegment; /* If the Fts3SegFilter defines a specific term (or term prefix) to search ** for, then advance each segment iterator until it points to a term of ** equal or greater value than the specified term. This prevents many ** unnecessary merge/sort operations for the case where single segment ** b-tree leaf nodes contain more than one term. */ for(i=0; pCsr->bRestart==0 && inSegment; i++){ int res = 0; Fts3SegReader *pSeg = pCsr->apSegment[i]; do { int rc = fts3SegReaderNext(p, pSeg, 0); if( rc!=SQLITE_OK ) return rc; }while( zTerm && (res = fts3SegReaderTermCmp(pSeg, zTerm, nTerm))<0 ); if( pSeg->bLookup && res!=0 ){ fts3SegReaderSetEof(pSeg); } } fts3SegReaderSort(pCsr->apSegment, nSeg, nSeg, fts3SegReaderCmp); return SQLITE_OK; } SQLITE_PRIVATE int sqlite3Fts3SegReaderStart( Fts3Table *p, /* Virtual table handle */ Fts3MultiSegReader *pCsr, /* Cursor object */ Fts3SegFilter *pFilter /* Restrictions on range of iteration */ ){ pCsr->pFilter = pFilter; return fts3SegReaderStart(p, pCsr, pFilter->zTerm, pFilter->nTerm); } SQLITE_PRIVATE int sqlite3Fts3MsrIncrStart( Fts3Table *p, /* Virtual table handle */ Fts3MultiSegReader *pCsr, /* Cursor object */ int iCol, /* Column to match on. */ const char *zTerm, /* Term to iterate through a doclist for */ int nTerm /* Number of bytes in zTerm */ ){ int i; int rc; int nSegment = pCsr->nSegment; int (*xCmp)(Fts3SegReader *, Fts3SegReader *) = ( p->bDescIdx ? fts3SegReaderDoclistCmpRev : fts3SegReaderDoclistCmp ); assert( pCsr->pFilter==0 ); assert( zTerm && nTerm>0 ); /* Advance each segment iterator until it points to the term zTerm/nTerm. */ rc = fts3SegReaderStart(p, pCsr, zTerm, nTerm); if( rc!=SQLITE_OK ) return rc; /* Determine how many of the segments actually point to zTerm/nTerm. */ for(i=0; iapSegment[i]; if( !pSeg->aNode || fts3SegReaderTermCmp(pSeg, zTerm, nTerm) ){ break; } } pCsr->nAdvance = i; /* Advance each of the segments to point to the first docid. */ for(i=0; inAdvance; i++){ rc = fts3SegReaderFirstDocid(p, pCsr->apSegment[i]); if( rc!=SQLITE_OK ) return rc; } fts3SegReaderSort(pCsr->apSegment, i, i, xCmp); assert( iCol<0 || iColnColumn ); pCsr->iColFilter = iCol; return SQLITE_OK; } /* ** This function is called on a MultiSegReader that has been started using ** sqlite3Fts3MsrIncrStart(). One or more calls to MsrIncrNext() may also ** have been made. Calling this function puts the MultiSegReader in such ** a state that if the next two calls are: ** ** sqlite3Fts3SegReaderStart() ** sqlite3Fts3SegReaderStep() ** ** then the entire doclist for the term is available in ** MultiSegReader.aDoclist/nDoclist. */ SQLITE_PRIVATE int sqlite3Fts3MsrIncrRestart(Fts3MultiSegReader *pCsr){ int i; /* Used to iterate through segment-readers */ assert( pCsr->zTerm==0 ); assert( pCsr->nTerm==0 ); assert( pCsr->aDoclist==0 ); assert( pCsr->nDoclist==0 ); pCsr->nAdvance = 0; pCsr->bRestart = 1; for(i=0; inSegment; i++){ pCsr->apSegment[i]->pOffsetList = 0; pCsr->apSegment[i]->nOffsetList = 0; pCsr->apSegment[i]->iDocid = 0; } return SQLITE_OK; } static int fts3GrowSegReaderBuffer(Fts3MultiSegReader *pCsr, int nReq){ if( nReq>pCsr->nBuffer ){ char *aNew; pCsr->nBuffer = nReq*2; aNew = sqlite3_realloc(pCsr->aBuffer, pCsr->nBuffer); if( !aNew ){ return SQLITE_NOMEM; } pCsr->aBuffer = aNew; } return SQLITE_OK; } SQLITE_PRIVATE int sqlite3Fts3SegReaderStep( Fts3Table *p, /* Virtual table handle */ Fts3MultiSegReader *pCsr /* Cursor object */ ){ int rc = SQLITE_OK; int isIgnoreEmpty = (pCsr->pFilter->flags & FTS3_SEGMENT_IGNORE_EMPTY); int isRequirePos = (pCsr->pFilter->flags & FTS3_SEGMENT_REQUIRE_POS); int isColFilter = (pCsr->pFilter->flags & FTS3_SEGMENT_COLUMN_FILTER); int isPrefix = (pCsr->pFilter->flags & FTS3_SEGMENT_PREFIX); int isScan = (pCsr->pFilter->flags & FTS3_SEGMENT_SCAN); int isFirst = (pCsr->pFilter->flags & FTS3_SEGMENT_FIRST); Fts3SegReader **apSegment = pCsr->apSegment; int nSegment = pCsr->nSegment; Fts3SegFilter *pFilter = pCsr->pFilter; int (*xCmp)(Fts3SegReader *, Fts3SegReader *) = ( p->bDescIdx ? fts3SegReaderDoclistCmpRev : fts3SegReaderDoclistCmp ); if( pCsr->nSegment==0 ) return SQLITE_OK; do { int nMerge; int i; /* Advance the first pCsr->nAdvance entries in the apSegment[] array ** forward. Then sort the list in order of current term again. */ for(i=0; inAdvance; i++){ Fts3SegReader *pSeg = apSegment[i]; if( pSeg->bLookup ){ fts3SegReaderSetEof(pSeg); }else{ rc = fts3SegReaderNext(p, pSeg, 0); } if( rc!=SQLITE_OK ) return rc; } fts3SegReaderSort(apSegment, nSegment, pCsr->nAdvance, fts3SegReaderCmp); pCsr->nAdvance = 0; /* If all the seg-readers are at EOF, we're finished. return SQLITE_OK. */ assert( rc==SQLITE_OK ); if( apSegment[0]->aNode==0 ) break; pCsr->nTerm = apSegment[0]->nTerm; pCsr->zTerm = apSegment[0]->zTerm; /* If this is a prefix-search, and if the term that apSegment[0] points ** to does not share a suffix with pFilter->zTerm/nTerm, then all ** required callbacks have been made. In this case exit early. ** ** Similarly, if this is a search for an exact match, and the first term ** of segment apSegment[0] is not a match, exit early. */ if( pFilter->zTerm && !isScan ){ if( pCsr->nTermnTerm || (!isPrefix && pCsr->nTerm>pFilter->nTerm) || memcmp(pCsr->zTerm, pFilter->zTerm, pFilter->nTerm) ){ break; } } nMerge = 1; while( nMergeaNode && apSegment[nMerge]->nTerm==pCsr->nTerm && 0==memcmp(pCsr->zTerm, apSegment[nMerge]->zTerm, pCsr->nTerm) ){ nMerge++; } assert( isIgnoreEmpty || (isRequirePos && !isColFilter) ); if( nMerge==1 && !isIgnoreEmpty && !isFirst && (p->bDescIdx==0 || fts3SegReaderIsPending(apSegment[0])==0) ){ pCsr->nDoclist = apSegment[0]->nDoclist; if( fts3SegReaderIsPending(apSegment[0]) ){ rc = fts3MsrBufferData(pCsr, apSegment[0]->aDoclist, pCsr->nDoclist); pCsr->aDoclist = pCsr->aBuffer; }else{ pCsr->aDoclist = apSegment[0]->aDoclist; } if( rc==SQLITE_OK ) rc = SQLITE_ROW; }else{ int nDoclist = 0; /* Size of doclist */ sqlite3_int64 iPrev = 0; /* Previous docid stored in doclist */ /* The current term of the first nMerge entries in the array ** of Fts3SegReader objects is the same. The doclists must be merged ** and a single term returned with the merged doclist. */ for(i=0; ipOffsetList ){ int j; /* Number of segments that share a docid */ char *pList = 0; int nList = 0; int nByte; sqlite3_int64 iDocid = apSegment[0]->iDocid; fts3SegReaderNextDocid(p, apSegment[0], &pList, &nList); j = 1; while( jpOffsetList && apSegment[j]->iDocid==iDocid ){ fts3SegReaderNextDocid(p, apSegment[j], 0, 0); j++; } if( isColFilter ){ fts3ColumnFilter(pFilter->iCol, 0, &pList, &nList); } if( !isIgnoreEmpty || nList>0 ){ /* Calculate the 'docid' delta value to write into the merged ** doclist. */ sqlite3_int64 iDelta; if( p->bDescIdx && nDoclist>0 ){ if( iPrev<=iDocid ) return FTS_CORRUPT_VTAB; iDelta = (i64)((u64)iPrev - (u64)iDocid); }else{ if( nDoclist>0 && iPrev>=iDocid ) return FTS_CORRUPT_VTAB; iDelta = (i64)((u64)iDocid - (u64)iPrev); } nByte = sqlite3Fts3VarintLen(iDelta) + (isRequirePos?nList+1:0); rc = fts3GrowSegReaderBuffer(pCsr, nByte+nDoclist); if( rc ) return rc; if( isFirst ){ char *a = &pCsr->aBuffer[nDoclist]; int nWrite; nWrite = sqlite3Fts3FirstFilter(iDelta, pList, nList, a); if( nWrite ){ iPrev = iDocid; nDoclist += nWrite; } }else{ nDoclist += sqlite3Fts3PutVarint(&pCsr->aBuffer[nDoclist], iDelta); iPrev = iDocid; if( isRequirePos ){ memcpy(&pCsr->aBuffer[nDoclist], pList, nList); nDoclist += nList; pCsr->aBuffer[nDoclist++] = '\0'; } } } fts3SegReaderSort(apSegment, nMerge, j, xCmp); } if( nDoclist>0 ){ rc = fts3GrowSegReaderBuffer(pCsr, nDoclist+FTS3_NODE_PADDING); if( rc ) return rc; memset(&pCsr->aBuffer[nDoclist], 0, FTS3_NODE_PADDING); pCsr->aDoclist = pCsr->aBuffer; pCsr->nDoclist = nDoclist; rc = SQLITE_ROW; } } pCsr->nAdvance = nMerge; }while( rc==SQLITE_OK ); return rc; } SQLITE_PRIVATE void sqlite3Fts3SegReaderFinish( Fts3MultiSegReader *pCsr /* Cursor object */ ){ if( pCsr ){ int i; for(i=0; inSegment; i++){ sqlite3Fts3SegReaderFree(pCsr->apSegment[i]); } sqlite3_free(pCsr->apSegment); sqlite3_free(pCsr->aBuffer); pCsr->nSegment = 0; pCsr->apSegment = 0; pCsr->aBuffer = 0; } } /* ** Decode the "end_block" field, selected by column iCol of the SELECT ** statement passed as the first argument. ** ** The "end_block" field may contain either an integer, or a text field ** containing the text representation of two non-negative integers separated ** by one or more space (0x20) characters. In the first case, set *piEndBlock ** to the integer value and *pnByte to zero before returning. In the second, ** set *piEndBlock to the first value and *pnByte to the second. */ static void fts3ReadEndBlockField( sqlite3_stmt *pStmt, int iCol, i64 *piEndBlock, i64 *pnByte ){ const unsigned char *zText = sqlite3_column_text(pStmt, iCol); if( zText ){ int i; int iMul = 1; u64 iVal = 0; for(i=0; zText[i]>='0' && zText[i]<='9'; i++){ iVal = iVal*10 + (zText[i] - '0'); } *piEndBlock = (i64)iVal; while( zText[i]==' ' ) i++; iVal = 0; if( zText[i]=='-' ){ i++; iMul = -1; } for(/* no-op */; zText[i]>='0' && zText[i]<='9'; i++){ iVal = iVal*10 + (zText[i] - '0'); } *pnByte = ((i64)iVal * (i64)iMul); } } /* ** A segment of size nByte bytes has just been written to absolute level ** iAbsLevel. Promote any segments that should be promoted as a result. */ static int fts3PromoteSegments( Fts3Table *p, /* FTS table handle */ sqlite3_int64 iAbsLevel, /* Absolute level just updated */ sqlite3_int64 nByte /* Size of new segment at iAbsLevel */ ){ int rc = SQLITE_OK; sqlite3_stmt *pRange; rc = fts3SqlStmt(p, SQL_SELECT_LEVEL_RANGE2, &pRange, 0); if( rc==SQLITE_OK ){ int bOk = 0; i64 iLast = (iAbsLevel/FTS3_SEGDIR_MAXLEVEL + 1) * FTS3_SEGDIR_MAXLEVEL - 1; i64 nLimit = (nByte*3)/2; /* Loop through all entries in the %_segdir table corresponding to ** segments in this index on levels greater than iAbsLevel. If there is ** at least one such segment, and it is possible to determine that all ** such segments are smaller than nLimit bytes in size, they will be ** promoted to level iAbsLevel. */ sqlite3_bind_int64(pRange, 1, iAbsLevel+1); sqlite3_bind_int64(pRange, 2, iLast); while( SQLITE_ROW==sqlite3_step(pRange) ){ i64 nSize = 0, dummy; fts3ReadEndBlockField(pRange, 2, &dummy, &nSize); if( nSize<=0 || nSize>nLimit ){ /* If nSize==0, then the %_segdir.end_block field does not not ** contain a size value. This happens if it was written by an ** old version of FTS. In this case it is not possible to determine ** the size of the segment, and so segment promotion does not ** take place. */ bOk = 0; break; } bOk = 1; } rc = sqlite3_reset(pRange); if( bOk ){ int iIdx = 0; sqlite3_stmt *pUpdate1 = 0; sqlite3_stmt *pUpdate2 = 0; if( rc==SQLITE_OK ){ rc = fts3SqlStmt(p, SQL_UPDATE_LEVEL_IDX, &pUpdate1, 0); } if( rc==SQLITE_OK ){ rc = fts3SqlStmt(p, SQL_UPDATE_LEVEL, &pUpdate2, 0); } if( rc==SQLITE_OK ){ /* Loop through all %_segdir entries for segments in this index with ** levels equal to or greater than iAbsLevel. As each entry is visited, ** updated it to set (level = -1) and (idx = N), where N is 0 for the ** oldest segment in the range, 1 for the next oldest, and so on. ** ** In other words, move all segments being promoted to level -1, ** setting the "idx" fields as appropriate to keep them in the same ** order. The contents of level -1 (which is never used, except ** transiently here), will be moved back to level iAbsLevel below. */ sqlite3_bind_int64(pRange, 1, iAbsLevel); while( SQLITE_ROW==sqlite3_step(pRange) ){ sqlite3_bind_int(pUpdate1, 1, iIdx++); sqlite3_bind_int(pUpdate1, 2, sqlite3_column_int(pRange, 0)); sqlite3_bind_int(pUpdate1, 3, sqlite3_column_int(pRange, 1)); sqlite3_step(pUpdate1); rc = sqlite3_reset(pUpdate1); if( rc!=SQLITE_OK ){ sqlite3_reset(pRange); break; } } } if( rc==SQLITE_OK ){ rc = sqlite3_reset(pRange); } /* Move level -1 to level iAbsLevel */ if( rc==SQLITE_OK ){ sqlite3_bind_int64(pUpdate2, 1, iAbsLevel); sqlite3_step(pUpdate2); rc = sqlite3_reset(pUpdate2); } } } return rc; } /* ** Merge all level iLevel segments in the database into a single ** iLevel+1 segment. Or, if iLevel<0, merge all segments into a ** single segment with a level equal to the numerically largest level ** currently present in the database. ** ** If this function is called with iLevel<0, but there is only one ** segment in the database, SQLITE_DONE is returned immediately. ** Otherwise, if successful, SQLITE_OK is returned. If an error occurs, ** an SQLite error code is returned. */ static int fts3SegmentMerge( Fts3Table *p, int iLangid, /* Language id to merge */ int iIndex, /* Index in p->aIndex[] to merge */ int iLevel /* Level to merge */ ){ int rc; /* Return code */ int iIdx = 0; /* Index of new segment */ sqlite3_int64 iNewLevel = 0; /* Level/index to create new segment at */ SegmentWriter *pWriter = 0; /* Used to write the new, merged, segment */ Fts3SegFilter filter; /* Segment term filter condition */ Fts3MultiSegReader csr; /* Cursor to iterate through level(s) */ int bIgnoreEmpty = 0; /* True to ignore empty segments */ i64 iMaxLevel = 0; /* Max level number for this index/langid */ assert( iLevel==FTS3_SEGCURSOR_ALL || iLevel==FTS3_SEGCURSOR_PENDING || iLevel>=0 ); assert( iLevel=0 && iIndexnIndex ); rc = sqlite3Fts3SegReaderCursor(p, iLangid, iIndex, iLevel, 0, 0, 1, 0, &csr); if( rc!=SQLITE_OK || csr.nSegment==0 ) goto finished; if( iLevel!=FTS3_SEGCURSOR_PENDING ){ rc = fts3SegmentMaxLevel(p, iLangid, iIndex, &iMaxLevel); if( rc!=SQLITE_OK ) goto finished; } if( iLevel==FTS3_SEGCURSOR_ALL ){ /* This call is to merge all segments in the database to a single ** segment. The level of the new segment is equal to the numerically ** greatest segment level currently present in the database for this ** index. The idx of the new segment is always 0. */ if( csr.nSegment==1 && 0==fts3SegReaderIsPending(csr.apSegment[0]) ){ rc = SQLITE_DONE; goto finished; } iNewLevel = iMaxLevel; bIgnoreEmpty = 1; }else{ /* This call is to merge all segments at level iLevel. find the next ** available segment index at level iLevel+1. The call to ** fts3AllocateSegdirIdx() will merge the segments at level iLevel+1 to ** a single iLevel+2 segment if necessary. */ assert( FTS3_SEGCURSOR_PENDING==-1 ); iNewLevel = getAbsoluteLevel(p, iLangid, iIndex, iLevel+1); rc = fts3AllocateSegdirIdx(p, iLangid, iIndex, iLevel+1, &iIdx); bIgnoreEmpty = (iLevel!=FTS3_SEGCURSOR_PENDING) && (iNewLevel>iMaxLevel); } if( rc!=SQLITE_OK ) goto finished; assert( csr.nSegment>0 ); assert_fts3_nc( iNewLevel>=getAbsoluteLevel(p, iLangid, iIndex, 0) ); assert_fts3_nc( iNewLevelnLeafData); } } } finished: fts3SegWriterFree(pWriter); sqlite3Fts3SegReaderFinish(&csr); return rc; } /* ** Flush the contents of pendingTerms to level 0 segments. */ SQLITE_PRIVATE int sqlite3Fts3PendingTermsFlush(Fts3Table *p){ int rc = SQLITE_OK; int i; for(i=0; rc==SQLITE_OK && inIndex; i++){ rc = fts3SegmentMerge(p, p->iPrevLangid, i, FTS3_SEGCURSOR_PENDING); if( rc==SQLITE_DONE ) rc = SQLITE_OK; } sqlite3Fts3PendingTermsClear(p); /* Determine the auto-incr-merge setting if unknown. If enabled, ** estimate the number of leaf blocks of content to be written */ if( rc==SQLITE_OK && p->bHasStat && p->nAutoincrmerge==0xff && p->nLeafAdd>0 ){ sqlite3_stmt *pStmt = 0; rc = fts3SqlStmt(p, SQL_SELECT_STAT, &pStmt, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int(pStmt, 1, FTS_STAT_AUTOINCRMERGE); rc = sqlite3_step(pStmt); if( rc==SQLITE_ROW ){ p->nAutoincrmerge = sqlite3_column_int(pStmt, 0); if( p->nAutoincrmerge==1 ) p->nAutoincrmerge = 8; }else if( rc==SQLITE_DONE ){ p->nAutoincrmerge = 0; } rc = sqlite3_reset(pStmt); } } return rc; } /* ** Encode N integers as varints into a blob. */ static void fts3EncodeIntArray( int N, /* The number of integers to encode */ u32 *a, /* The integer values */ char *zBuf, /* Write the BLOB here */ int *pNBuf /* Write number of bytes if zBuf[] used here */ ){ int i, j; for(i=j=0; iiPrevDocid. The sizes are encoded as ** a blob of varints. */ static void fts3InsertDocsize( int *pRC, /* Result code */ Fts3Table *p, /* Table into which to insert */ u32 *aSz /* Sizes of each column, in tokens */ ){ char *pBlob; /* The BLOB encoding of the document size */ int nBlob; /* Number of bytes in the BLOB */ sqlite3_stmt *pStmt; /* Statement used to insert the encoding */ int rc; /* Result code from subfunctions */ if( *pRC ) return; pBlob = sqlite3_malloc64( 10*(sqlite3_int64)p->nColumn ); if( pBlob==0 ){ *pRC = SQLITE_NOMEM; return; } fts3EncodeIntArray(p->nColumn, aSz, pBlob, &nBlob); rc = fts3SqlStmt(p, SQL_REPLACE_DOCSIZE, &pStmt, 0); if( rc ){ sqlite3_free(pBlob); *pRC = rc; return; } sqlite3_bind_int64(pStmt, 1, p->iPrevDocid); sqlite3_bind_blob(pStmt, 2, pBlob, nBlob, sqlite3_free); sqlite3_step(pStmt); *pRC = sqlite3_reset(pStmt); } /* ** Record 0 of the %_stat table contains a blob consisting of N varints, ** where N is the number of user defined columns in the fts3 table plus ** two. If nCol is the number of user defined columns, then values of the ** varints are set as follows: ** ** Varint 0: Total number of rows in the table. ** ** Varint 1..nCol: For each column, the total number of tokens stored in ** the column for all rows of the table. ** ** Varint 1+nCol: The total size, in bytes, of all text values in all ** columns of all rows of the table. ** */ static void fts3UpdateDocTotals( int *pRC, /* The result code */ Fts3Table *p, /* Table being updated */ u32 *aSzIns, /* Size increases */ u32 *aSzDel, /* Size decreases */ int nChng /* Change in the number of documents */ ){ char *pBlob; /* Storage for BLOB written into %_stat */ int nBlob; /* Size of BLOB written into %_stat */ u32 *a; /* Array of integers that becomes the BLOB */ sqlite3_stmt *pStmt; /* Statement for reading and writing */ int i; /* Loop counter */ int rc; /* Result code from subfunctions */ const int nStat = p->nColumn+2; if( *pRC ) return; a = sqlite3_malloc64( (sizeof(u32)+10)*(sqlite3_int64)nStat ); if( a==0 ){ *pRC = SQLITE_NOMEM; return; } pBlob = (char*)&a[nStat]; rc = fts3SqlStmt(p, SQL_SELECT_STAT, &pStmt, 0); if( rc ){ sqlite3_free(a); *pRC = rc; return; } sqlite3_bind_int(pStmt, 1, FTS_STAT_DOCTOTAL); if( sqlite3_step(pStmt)==SQLITE_ROW ){ fts3DecodeIntArray(nStat, a, sqlite3_column_blob(pStmt, 0), sqlite3_column_bytes(pStmt, 0)); }else{ memset(a, 0, sizeof(u32)*(nStat) ); } rc = sqlite3_reset(pStmt); if( rc!=SQLITE_OK ){ sqlite3_free(a); *pRC = rc; return; } if( nChng<0 && a[0]<(u32)(-nChng) ){ a[0] = 0; }else{ a[0] += nChng; } for(i=0; inColumn+1; i++){ u32 x = a[i+1]; if( x+aSzIns[i] < aSzDel[i] ){ x = 0; }else{ x = x + aSzIns[i] - aSzDel[i]; } a[i+1] = x; } fts3EncodeIntArray(nStat, a, pBlob, &nBlob); rc = fts3SqlStmt(p, SQL_REPLACE_STAT, &pStmt, 0); if( rc ){ sqlite3_free(a); *pRC = rc; return; } sqlite3_bind_int(pStmt, 1, FTS_STAT_DOCTOTAL); sqlite3_bind_blob(pStmt, 2, pBlob, nBlob, SQLITE_STATIC); sqlite3_step(pStmt); *pRC = sqlite3_reset(pStmt); sqlite3_bind_null(pStmt, 2); sqlite3_free(a); } /* ** Merge the entire database so that there is one segment for each ** iIndex/iLangid combination. */ static int fts3DoOptimize(Fts3Table *p, int bReturnDone){ int bSeenDone = 0; int rc; sqlite3_stmt *pAllLangid = 0; rc = sqlite3Fts3PendingTermsFlush(p); if( rc==SQLITE_OK ){ rc = fts3SqlStmt(p, SQL_SELECT_ALL_LANGID, &pAllLangid, 0); } if( rc==SQLITE_OK ){ int rc2; sqlite3_bind_int(pAllLangid, 1, p->iPrevLangid); sqlite3_bind_int(pAllLangid, 2, p->nIndex); while( sqlite3_step(pAllLangid)==SQLITE_ROW ){ int i; int iLangid = sqlite3_column_int(pAllLangid, 0); for(i=0; rc==SQLITE_OK && inIndex; i++){ rc = fts3SegmentMerge(p, iLangid, i, FTS3_SEGCURSOR_ALL); if( rc==SQLITE_DONE ){ bSeenDone = 1; rc = SQLITE_OK; } } } rc2 = sqlite3_reset(pAllLangid); if( rc==SQLITE_OK ) rc = rc2; } sqlite3Fts3SegmentsClose(p); return (rc==SQLITE_OK && bReturnDone && bSeenDone) ? SQLITE_DONE : rc; } /* ** This function is called when the user executes the following statement: ** ** INSERT INTO () VALUES('rebuild'); ** ** The entire FTS index is discarded and rebuilt. If the table is one ** created using the content=xxx option, then the new index is based on ** the current contents of the xxx table. Otherwise, it is rebuilt based ** on the contents of the %_content table. */ static int fts3DoRebuild(Fts3Table *p){ int rc; /* Return Code */ rc = fts3DeleteAll(p, 0); if( rc==SQLITE_OK ){ u32 *aSz = 0; u32 *aSzIns = 0; u32 *aSzDel = 0; sqlite3_stmt *pStmt = 0; int nEntry = 0; /* Compose and prepare an SQL statement to loop through the content table */ char *zSql = sqlite3_mprintf("SELECT %s" , p->zReadExprlist); if( !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, 0); sqlite3_free(zSql); } if( rc==SQLITE_OK ){ sqlite3_int64 nByte = sizeof(u32) * ((sqlite3_int64)p->nColumn+1)*3; aSz = (u32 *)sqlite3_malloc64(nByte); if( aSz==0 ){ rc = SQLITE_NOMEM; }else{ memset(aSz, 0, nByte); aSzIns = &aSz[p->nColumn+1]; aSzDel = &aSzIns[p->nColumn+1]; } } while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ int iCol; int iLangid = langidFromSelect(p, pStmt); rc = fts3PendingTermsDocid(p, 0, iLangid, sqlite3_column_int64(pStmt, 0)); memset(aSz, 0, sizeof(aSz[0]) * (p->nColumn+1)); for(iCol=0; rc==SQLITE_OK && iColnColumn; iCol++){ if( p->abNotindexed[iCol]==0 ){ const char *z = (const char *) sqlite3_column_text(pStmt, iCol+1); rc = fts3PendingTermsAdd(p, iLangid, z, iCol, &aSz[iCol]); aSz[p->nColumn] += sqlite3_column_bytes(pStmt, iCol+1); } } if( p->bHasDocsize ){ fts3InsertDocsize(&rc, p, aSz); } if( rc!=SQLITE_OK ){ sqlite3_finalize(pStmt); pStmt = 0; }else{ nEntry++; for(iCol=0; iCol<=p->nColumn; iCol++){ aSzIns[iCol] += aSz[iCol]; } } } if( p->bFts4 ){ fts3UpdateDocTotals(&rc, p, aSzIns, aSzDel, nEntry); } sqlite3_free(aSz); if( pStmt ){ int rc2 = sqlite3_finalize(pStmt); if( rc==SQLITE_OK ){ rc = rc2; } } } return rc; } /* ** This function opens a cursor used to read the input data for an ** incremental merge operation. Specifically, it opens a cursor to scan ** the oldest nSeg segments (idx=0 through idx=(nSeg-1)) in absolute ** level iAbsLevel. */ static int fts3IncrmergeCsr( Fts3Table *p, /* FTS3 table handle */ sqlite3_int64 iAbsLevel, /* Absolute level to open */ int nSeg, /* Number of segments to merge */ Fts3MultiSegReader *pCsr /* Cursor object to populate */ ){ int rc; /* Return Code */ sqlite3_stmt *pStmt = 0; /* Statement used to read %_segdir entry */ sqlite3_int64 nByte; /* Bytes allocated at pCsr->apSegment[] */ /* Allocate space for the Fts3MultiSegReader.aCsr[] array */ memset(pCsr, 0, sizeof(*pCsr)); nByte = sizeof(Fts3SegReader *) * nSeg; pCsr->apSegment = (Fts3SegReader **)sqlite3_malloc64(nByte); if( pCsr->apSegment==0 ){ rc = SQLITE_NOMEM; }else{ memset(pCsr->apSegment, 0, nByte); rc = fts3SqlStmt(p, SQL_SELECT_LEVEL, &pStmt, 0); } if( rc==SQLITE_OK ){ int i; int rc2; sqlite3_bind_int64(pStmt, 1, iAbsLevel); assert( pCsr->nSegment==0 ); for(i=0; rc==SQLITE_OK && sqlite3_step(pStmt)==SQLITE_ROW && iapSegment[i] ); pCsr->nSegment++; } rc2 = sqlite3_reset(pStmt); if( rc==SQLITE_OK ) rc = rc2; } return rc; } typedef struct IncrmergeWriter IncrmergeWriter; typedef struct NodeWriter NodeWriter; typedef struct Blob Blob; typedef struct NodeReader NodeReader; /* ** An instance of the following structure is used as a dynamic buffer ** to build up nodes or other blobs of data in. ** ** The function blobGrowBuffer() is used to extend the allocation. */ struct Blob { char *a; /* Pointer to allocation */ int n; /* Number of valid bytes of data in a[] */ int nAlloc; /* Allocated size of a[] (nAlloc>=n) */ }; /* ** This structure is used to build up buffers containing segment b-tree ** nodes (blocks). */ struct NodeWriter { sqlite3_int64 iBlock; /* Current block id */ Blob key; /* Last key written to the current block */ Blob block; /* Current block image */ }; /* ** An object of this type contains the state required to create or append ** to an appendable b-tree segment. */ struct IncrmergeWriter { int nLeafEst; /* Space allocated for leaf blocks */ int nWork; /* Number of leaf pages flushed */ sqlite3_int64 iAbsLevel; /* Absolute level of input segments */ int iIdx; /* Index of *output* segment in iAbsLevel+1 */ sqlite3_int64 iStart; /* Block number of first allocated block */ sqlite3_int64 iEnd; /* Block number of last allocated block */ sqlite3_int64 nLeafData; /* Bytes of leaf page data so far */ u8 bNoLeafData; /* If true, store 0 for segment size */ NodeWriter aNodeWriter[FTS_MAX_APPENDABLE_HEIGHT]; }; /* ** An object of the following type is used to read data from a single ** FTS segment node. See the following functions: ** ** nodeReaderInit() ** nodeReaderNext() ** nodeReaderRelease() */ struct NodeReader { const char *aNode; int nNode; int iOff; /* Current offset within aNode[] */ /* Output variables. Containing the current node entry. */ sqlite3_int64 iChild; /* Pointer to child node */ Blob term; /* Current term */ const char *aDoclist; /* Pointer to doclist */ int nDoclist; /* Size of doclist in bytes */ }; /* ** If *pRc is not SQLITE_OK when this function is called, it is a no-op. ** Otherwise, if the allocation at pBlob->a is not already at least nMin ** bytes in size, extend (realloc) it to be so. ** ** If an OOM error occurs, set *pRc to SQLITE_NOMEM and leave pBlob->a ** unmodified. Otherwise, if the allocation succeeds, update pBlob->nAlloc ** to reflect the new size of the pBlob->a[] buffer. */ static void blobGrowBuffer(Blob *pBlob, int nMin, int *pRc){ if( *pRc==SQLITE_OK && nMin>pBlob->nAlloc ){ int nAlloc = nMin; char *a = (char *)sqlite3_realloc(pBlob->a, nAlloc); if( a ){ pBlob->nAlloc = nAlloc; pBlob->a = a; }else{ *pRc = SQLITE_NOMEM; } } } /* ** Attempt to advance the node-reader object passed as the first argument to ** the next entry on the node. ** ** Return an error code if an error occurs (SQLITE_NOMEM is possible). ** Otherwise return SQLITE_OK. If there is no next entry on the node ** (e.g. because the current entry is the last) set NodeReader->aNode to ** NULL to indicate EOF. Otherwise, populate the NodeReader structure output ** variables for the new entry. */ static int nodeReaderNext(NodeReader *p){ int bFirst = (p->term.n==0); /* True for first term on the node */ int nPrefix = 0; /* Bytes to copy from previous term */ int nSuffix = 0; /* Bytes to append to the prefix */ int rc = SQLITE_OK; /* Return code */ assert( p->aNode ); if( p->iChild && bFirst==0 ) p->iChild++; if( p->iOff>=p->nNode ){ /* EOF */ p->aNode = 0; }else{ if( bFirst==0 ){ p->iOff += fts3GetVarint32(&p->aNode[p->iOff], &nPrefix); } p->iOff += fts3GetVarint32(&p->aNode[p->iOff], &nSuffix); if( nPrefix>p->term.n || nSuffix>p->nNode-p->iOff || nSuffix==0 ){ return FTS_CORRUPT_VTAB; } blobGrowBuffer(&p->term, nPrefix+nSuffix, &rc); if( rc==SQLITE_OK ){ memcpy(&p->term.a[nPrefix], &p->aNode[p->iOff], nSuffix); p->term.n = nPrefix+nSuffix; p->iOff += nSuffix; if( p->iChild==0 ){ p->iOff += fts3GetVarint32(&p->aNode[p->iOff], &p->nDoclist); if( (p->nNode-p->iOff)nDoclist ){ return FTS_CORRUPT_VTAB; } p->aDoclist = &p->aNode[p->iOff]; p->iOff += p->nDoclist; } } } assert_fts3_nc( p->iOff<=p->nNode ); return rc; } /* ** Release all dynamic resources held by node-reader object *p. */ static void nodeReaderRelease(NodeReader *p){ sqlite3_free(p->term.a); } /* ** Initialize a node-reader object to read the node in buffer aNode/nNode. ** ** If successful, SQLITE_OK is returned and the NodeReader object set to ** point to the first entry on the node (if any). Otherwise, an SQLite ** error code is returned. */ static int nodeReaderInit(NodeReader *p, const char *aNode, int nNode){ memset(p, 0, sizeof(NodeReader)); p->aNode = aNode; p->nNode = nNode; /* Figure out if this is a leaf or an internal node. */ if( aNode && aNode[0] ){ /* An internal node. */ p->iOff = 1 + sqlite3Fts3GetVarint(&p->aNode[1], &p->iChild); }else{ p->iOff = 1; } return aNode ? nodeReaderNext(p) : SQLITE_OK; } /* ** This function is called while writing an FTS segment each time a leaf o ** node is finished and written to disk. The key (zTerm/nTerm) is guaranteed ** to be greater than the largest key on the node just written, but smaller ** than or equal to the first key that will be written to the next leaf ** node. ** ** The block id of the leaf node just written to disk may be found in ** (pWriter->aNodeWriter[0].iBlock) when this function is called. */ static int fts3IncrmergePush( Fts3Table *p, /* Fts3 table handle */ IncrmergeWriter *pWriter, /* Writer object */ const char *zTerm, /* Term to write to internal node */ int nTerm /* Bytes at zTerm */ ){ sqlite3_int64 iPtr = pWriter->aNodeWriter[0].iBlock; int iLayer; assert( nTerm>0 ); for(iLayer=1; ALWAYS(iLayeraNodeWriter[iLayer]; int rc = SQLITE_OK; int nPrefix; int nSuffix; int nSpace; /* Figure out how much space the key will consume if it is written to ** the current node of layer iLayer. Due to the prefix compression, ** the space required changes depending on which node the key is to ** be added to. */ nPrefix = fts3PrefixCompress(pNode->key.a, pNode->key.n, zTerm, nTerm); nSuffix = nTerm - nPrefix; if(nSuffix<=0 ) return FTS_CORRUPT_VTAB; nSpace = sqlite3Fts3VarintLen(nPrefix); nSpace += sqlite3Fts3VarintLen(nSuffix) + nSuffix; if( pNode->key.n==0 || (pNode->block.n + nSpace)<=p->nNodeSize ){ /* If the current node of layer iLayer contains zero keys, or if adding ** the key to it will not cause it to grow to larger than nNodeSize ** bytes in size, write the key here. */ Blob *pBlk = &pNode->block; if( pBlk->n==0 ){ blobGrowBuffer(pBlk, p->nNodeSize, &rc); if( rc==SQLITE_OK ){ pBlk->a[0] = (char)iLayer; pBlk->n = 1 + sqlite3Fts3PutVarint(&pBlk->a[1], iPtr); } } blobGrowBuffer(pBlk, pBlk->n + nSpace, &rc); blobGrowBuffer(&pNode->key, nTerm, &rc); if( rc==SQLITE_OK ){ if( pNode->key.n ){ pBlk->n += sqlite3Fts3PutVarint(&pBlk->a[pBlk->n], nPrefix); } pBlk->n += sqlite3Fts3PutVarint(&pBlk->a[pBlk->n], nSuffix); memcpy(&pBlk->a[pBlk->n], &zTerm[nPrefix], nSuffix); pBlk->n += nSuffix; memcpy(pNode->key.a, zTerm, nTerm); pNode->key.n = nTerm; } }else{ /* Otherwise, flush the current node of layer iLayer to disk. ** Then allocate a new, empty sibling node. The key will be written ** into the parent of this node. */ rc = fts3WriteSegment(p, pNode->iBlock, pNode->block.a, pNode->block.n); assert( pNode->block.nAlloc>=p->nNodeSize ); pNode->block.a[0] = (char)iLayer; pNode->block.n = 1 + sqlite3Fts3PutVarint(&pNode->block.a[1], iPtr+1); iNextPtr = pNode->iBlock; pNode->iBlock++; pNode->key.n = 0; } if( rc!=SQLITE_OK || iNextPtr==0 ) return rc; iPtr = iNextPtr; } assert( 0 ); return 0; } /* ** Append a term and (optionally) doclist to the FTS segment node currently ** stored in blob *pNode. The node need not contain any terms, but the ** header must be written before this function is called. ** ** A node header is a single 0x00 byte for a leaf node, or a height varint ** followed by the left-hand-child varint for an internal node. ** ** The term to be appended is passed via arguments zTerm/nTerm. For a ** leaf node, the doclist is passed as aDoclist/nDoclist. For an internal ** node, both aDoclist and nDoclist must be passed 0. ** ** If the size of the value in blob pPrev is zero, then this is the first ** term written to the node. Otherwise, pPrev contains a copy of the ** previous term. Before this function returns, it is updated to contain a ** copy of zTerm/nTerm. ** ** It is assumed that the buffer associated with pNode is already large ** enough to accommodate the new entry. The buffer associated with pPrev ** is extended by this function if requrired. ** ** If an error (i.e. OOM condition) occurs, an SQLite error code is ** returned. Otherwise, SQLITE_OK. */ static int fts3AppendToNode( Blob *pNode, /* Current node image to append to */ Blob *pPrev, /* Buffer containing previous term written */ const char *zTerm, /* New term to write */ int nTerm, /* Size of zTerm in bytes */ const char *aDoclist, /* Doclist (or NULL) to write */ int nDoclist /* Size of aDoclist in bytes */ ){ int rc = SQLITE_OK; /* Return code */ int bFirst = (pPrev->n==0); /* True if this is the first term written */ int nPrefix; /* Size of term prefix in bytes */ int nSuffix; /* Size of term suffix in bytes */ /* Node must have already been started. There must be a doclist for a ** leaf node, and there must not be a doclist for an internal node. */ assert( pNode->n>0 ); assert_fts3_nc( (pNode->a[0]=='\0')==(aDoclist!=0) ); blobGrowBuffer(pPrev, nTerm, &rc); if( rc!=SQLITE_OK ) return rc; nPrefix = fts3PrefixCompress(pPrev->a, pPrev->n, zTerm, nTerm); nSuffix = nTerm - nPrefix; if( nSuffix<=0 ) return FTS_CORRUPT_VTAB; memcpy(pPrev->a, zTerm, nTerm); pPrev->n = nTerm; if( bFirst==0 ){ pNode->n += sqlite3Fts3PutVarint(&pNode->a[pNode->n], nPrefix); } pNode->n += sqlite3Fts3PutVarint(&pNode->a[pNode->n], nSuffix); memcpy(&pNode->a[pNode->n], &zTerm[nPrefix], nSuffix); pNode->n += nSuffix; if( aDoclist ){ pNode->n += sqlite3Fts3PutVarint(&pNode->a[pNode->n], nDoclist); memcpy(&pNode->a[pNode->n], aDoclist, nDoclist); pNode->n += nDoclist; } assert( pNode->n<=pNode->nAlloc ); return SQLITE_OK; } /* ** Append the current term and doclist pointed to by cursor pCsr to the ** appendable b-tree segment opened for writing by pWriter. ** ** Return SQLITE_OK if successful, or an SQLite error code otherwise. */ static int fts3IncrmergeAppend( Fts3Table *p, /* Fts3 table handle */ IncrmergeWriter *pWriter, /* Writer object */ Fts3MultiSegReader *pCsr /* Cursor containing term and doclist */ ){ const char *zTerm = pCsr->zTerm; int nTerm = pCsr->nTerm; const char *aDoclist = pCsr->aDoclist; int nDoclist = pCsr->nDoclist; int rc = SQLITE_OK; /* Return code */ int nSpace; /* Total space in bytes required on leaf */ int nPrefix; /* Size of prefix shared with previous term */ int nSuffix; /* Size of suffix (nTerm - nPrefix) */ NodeWriter *pLeaf; /* Object used to write leaf nodes */ pLeaf = &pWriter->aNodeWriter[0]; nPrefix = fts3PrefixCompress(pLeaf->key.a, pLeaf->key.n, zTerm, nTerm); nSuffix = nTerm - nPrefix; nSpace = sqlite3Fts3VarintLen(nPrefix); nSpace += sqlite3Fts3VarintLen(nSuffix) + nSuffix; nSpace += sqlite3Fts3VarintLen(nDoclist) + nDoclist; /* If the current block is not empty, and if adding this term/doclist ** to the current block would make it larger than Fts3Table.nNodeSize ** bytes, write this block out to the database. */ if( pLeaf->block.n>0 && (pLeaf->block.n + nSpace)>p->nNodeSize ){ rc = fts3WriteSegment(p, pLeaf->iBlock, pLeaf->block.a, pLeaf->block.n); pWriter->nWork++; /* Add the current term to the parent node. The term added to the ** parent must: ** ** a) be greater than the largest term on the leaf node just written ** to the database (still available in pLeaf->key), and ** ** b) be less than or equal to the term about to be added to the new ** leaf node (zTerm/nTerm). ** ** In other words, it must be the prefix of zTerm 1 byte longer than ** the common prefix (if any) of zTerm and pWriter->zTerm. */ if( rc==SQLITE_OK ){ rc = fts3IncrmergePush(p, pWriter, zTerm, nPrefix+1); } /* Advance to the next output block */ pLeaf->iBlock++; pLeaf->key.n = 0; pLeaf->block.n = 0; nSuffix = nTerm; nSpace = 1; nSpace += sqlite3Fts3VarintLen(nSuffix) + nSuffix; nSpace += sqlite3Fts3VarintLen(nDoclist) + nDoclist; } pWriter->nLeafData += nSpace; blobGrowBuffer(&pLeaf->block, pLeaf->block.n + nSpace, &rc); if( rc==SQLITE_OK ){ if( pLeaf->block.n==0 ){ pLeaf->block.n = 1; pLeaf->block.a[0] = '\0'; } rc = fts3AppendToNode( &pLeaf->block, &pLeaf->key, zTerm, nTerm, aDoclist, nDoclist ); } return rc; } /* ** This function is called to release all dynamic resources held by the ** merge-writer object pWriter, and if no error has occurred, to flush ** all outstanding node buffers held by pWriter to disk. ** ** If *pRc is not SQLITE_OK when this function is called, then no attempt ** is made to write any data to disk. Instead, this function serves only ** to release outstanding resources. ** ** Otherwise, if *pRc is initially SQLITE_OK and an error occurs while ** flushing buffers to disk, *pRc is set to an SQLite error code before ** returning. */ static void fts3IncrmergeRelease( Fts3Table *p, /* FTS3 table handle */ IncrmergeWriter *pWriter, /* Merge-writer object */ int *pRc /* IN/OUT: Error code */ ){ int i; /* Used to iterate through non-root layers */ int iRoot; /* Index of root in pWriter->aNodeWriter */ NodeWriter *pRoot; /* NodeWriter for root node */ int rc = *pRc; /* Error code */ /* Set iRoot to the index in pWriter->aNodeWriter[] of the output segment ** root node. If the segment fits entirely on a single leaf node, iRoot ** will be set to 0. If the root node is the parent of the leaves, iRoot ** will be 1. And so on. */ for(iRoot=FTS_MAX_APPENDABLE_HEIGHT-1; iRoot>=0; iRoot--){ NodeWriter *pNode = &pWriter->aNodeWriter[iRoot]; if( pNode->block.n>0 ) break; assert( *pRc || pNode->block.nAlloc==0 ); assert( *pRc || pNode->key.nAlloc==0 ); sqlite3_free(pNode->block.a); sqlite3_free(pNode->key.a); } /* Empty output segment. This is a no-op. */ if( iRoot<0 ) return; /* The entire output segment fits on a single node. Normally, this means ** the node would be stored as a blob in the "root" column of the %_segdir ** table. However, this is not permitted in this case. The problem is that ** space has already been reserved in the %_segments table, and so the ** start_block and end_block fields of the %_segdir table must be populated. ** And, by design or by accident, released versions of FTS cannot handle ** segments that fit entirely on the root node with start_block!=0. ** ** Instead, create a synthetic root node that contains nothing but a ** pointer to the single content node. So that the segment consists of a ** single leaf and a single interior (root) node. ** ** Todo: Better might be to defer allocating space in the %_segments ** table until we are sure it is needed. */ if( iRoot==0 ){ Blob *pBlock = &pWriter->aNodeWriter[1].block; blobGrowBuffer(pBlock, 1 + FTS3_VARINT_MAX, &rc); if( rc==SQLITE_OK ){ pBlock->a[0] = 0x01; pBlock->n = 1 + sqlite3Fts3PutVarint( &pBlock->a[1], pWriter->aNodeWriter[0].iBlock ); } iRoot = 1; } pRoot = &pWriter->aNodeWriter[iRoot]; /* Flush all currently outstanding nodes to disk. */ for(i=0; iaNodeWriter[i]; if( pNode->block.n>0 && rc==SQLITE_OK ){ rc = fts3WriteSegment(p, pNode->iBlock, pNode->block.a, pNode->block.n); } sqlite3_free(pNode->block.a); sqlite3_free(pNode->key.a); } /* Write the %_segdir record. */ if( rc==SQLITE_OK ){ rc = fts3WriteSegdir(p, pWriter->iAbsLevel+1, /* level */ pWriter->iIdx, /* idx */ pWriter->iStart, /* start_block */ pWriter->aNodeWriter[0].iBlock, /* leaves_end_block */ pWriter->iEnd, /* end_block */ (pWriter->bNoLeafData==0 ? pWriter->nLeafData : 0), /* end_block */ pRoot->block.a, pRoot->block.n /* root */ ); } sqlite3_free(pRoot->block.a); sqlite3_free(pRoot->key.a); *pRc = rc; } /* ** Compare the term in buffer zLhs (size in bytes nLhs) with that in ** zRhs (size in bytes nRhs) using memcmp. If one term is a prefix of ** the other, it is considered to be smaller than the other. ** ** Return -ve if zLhs is smaller than zRhs, 0 if it is equal, or +ve ** if it is greater. */ static int fts3TermCmp( const char *zLhs, int nLhs, /* LHS of comparison */ const char *zRhs, int nRhs /* RHS of comparison */ ){ int nCmp = MIN(nLhs, nRhs); int res; res = (nCmp ? memcmp(zLhs, zRhs, nCmp) : 0); if( res==0 ) res = nLhs - nRhs; return res; } /* ** Query to see if the entry in the %_segments table with blockid iEnd is ** NULL. If no error occurs and the entry is NULL, set *pbRes 1 before ** returning. Otherwise, set *pbRes to 0. ** ** Or, if an error occurs while querying the database, return an SQLite ** error code. The final value of *pbRes is undefined in this case. ** ** This is used to test if a segment is an "appendable" segment. If it ** is, then a NULL entry has been inserted into the %_segments table ** with blockid %_segdir.end_block. */ static int fts3IsAppendable(Fts3Table *p, sqlite3_int64 iEnd, int *pbRes){ int bRes = 0; /* Result to set *pbRes to */ sqlite3_stmt *pCheck = 0; /* Statement to query database with */ int rc; /* Return code */ rc = fts3SqlStmt(p, SQL_SEGMENT_IS_APPENDABLE, &pCheck, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pCheck, 1, iEnd); if( SQLITE_ROW==sqlite3_step(pCheck) ) bRes = 1; rc = sqlite3_reset(pCheck); } *pbRes = bRes; return rc; } /* ** This function is called when initializing an incremental-merge operation. ** It checks if the existing segment with index value iIdx at absolute level ** (iAbsLevel+1) can be appended to by the incremental merge. If it can, the ** merge-writer object *pWriter is initialized to write to it. ** ** An existing segment can be appended to by an incremental merge if: ** ** * It was initially created as an appendable segment (with all required ** space pre-allocated), and ** ** * The first key read from the input (arguments zKey and nKey) is ** greater than the largest key currently stored in the potential ** output segment. */ static int fts3IncrmergeLoad( Fts3Table *p, /* Fts3 table handle */ sqlite3_int64 iAbsLevel, /* Absolute level of input segments */ int iIdx, /* Index of candidate output segment */ const char *zKey, /* First key to write */ int nKey, /* Number of bytes in nKey */ IncrmergeWriter *pWriter /* Populate this object */ ){ int rc; /* Return code */ sqlite3_stmt *pSelect = 0; /* SELECT to read %_segdir entry */ rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR, &pSelect, 0); if( rc==SQLITE_OK ){ sqlite3_int64 iStart = 0; /* Value of %_segdir.start_block */ sqlite3_int64 iLeafEnd = 0; /* Value of %_segdir.leaves_end_block */ sqlite3_int64 iEnd = 0; /* Value of %_segdir.end_block */ const char *aRoot = 0; /* Pointer to %_segdir.root buffer */ int nRoot = 0; /* Size of aRoot[] in bytes */ int rc2; /* Return code from sqlite3_reset() */ int bAppendable = 0; /* Set to true if segment is appendable */ /* Read the %_segdir entry for index iIdx absolute level (iAbsLevel+1) */ sqlite3_bind_int64(pSelect, 1, iAbsLevel+1); sqlite3_bind_int(pSelect, 2, iIdx); if( sqlite3_step(pSelect)==SQLITE_ROW ){ iStart = sqlite3_column_int64(pSelect, 1); iLeafEnd = sqlite3_column_int64(pSelect, 2); fts3ReadEndBlockField(pSelect, 3, &iEnd, &pWriter->nLeafData); if( pWriter->nLeafData<0 ){ pWriter->nLeafData = pWriter->nLeafData * -1; } pWriter->bNoLeafData = (pWriter->nLeafData==0); nRoot = sqlite3_column_bytes(pSelect, 4); aRoot = sqlite3_column_blob(pSelect, 4); if( aRoot==0 ){ sqlite3_reset(pSelect); return nRoot ? SQLITE_NOMEM : FTS_CORRUPT_VTAB; } }else{ return sqlite3_reset(pSelect); } /* Check for the zero-length marker in the %_segments table */ rc = fts3IsAppendable(p, iEnd, &bAppendable); /* Check that zKey/nKey is larger than the largest key the candidate */ if( rc==SQLITE_OK && bAppendable ){ char *aLeaf = 0; int nLeaf = 0; rc = sqlite3Fts3ReadBlock(p, iLeafEnd, &aLeaf, &nLeaf, 0); if( rc==SQLITE_OK ){ NodeReader reader; for(rc = nodeReaderInit(&reader, aLeaf, nLeaf); rc==SQLITE_OK && reader.aNode; rc = nodeReaderNext(&reader) ){ assert( reader.aNode ); } if( fts3TermCmp(zKey, nKey, reader.term.a, reader.term.n)<=0 ){ bAppendable = 0; } nodeReaderRelease(&reader); } sqlite3_free(aLeaf); } if( rc==SQLITE_OK && bAppendable ){ /* It is possible to append to this segment. Set up the IncrmergeWriter ** object to do so. */ int i; int nHeight = (int)aRoot[0]; NodeWriter *pNode; if( nHeight<1 || nHeight>=FTS_MAX_APPENDABLE_HEIGHT ){ sqlite3_reset(pSelect); return FTS_CORRUPT_VTAB; } pWriter->nLeafEst = (int)((iEnd - iStart) + 1)/FTS_MAX_APPENDABLE_HEIGHT; pWriter->iStart = iStart; pWriter->iEnd = iEnd; pWriter->iAbsLevel = iAbsLevel; pWriter->iIdx = iIdx; for(i=nHeight+1; iaNodeWriter[i].iBlock = pWriter->iStart + i*pWriter->nLeafEst; } pNode = &pWriter->aNodeWriter[nHeight]; pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight; blobGrowBuffer(&pNode->block, MAX(nRoot, p->nNodeSize)+FTS3_NODE_PADDING, &rc ); if( rc==SQLITE_OK ){ memcpy(pNode->block.a, aRoot, nRoot); pNode->block.n = nRoot; memset(&pNode->block.a[nRoot], 0, FTS3_NODE_PADDING); } for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){ NodeReader reader; pNode = &pWriter->aNodeWriter[i]; if( pNode->block.a){ rc = nodeReaderInit(&reader, pNode->block.a, pNode->block.n); while( reader.aNode && rc==SQLITE_OK ) rc = nodeReaderNext(&reader); blobGrowBuffer(&pNode->key, reader.term.n, &rc); if( rc==SQLITE_OK ){ memcpy(pNode->key.a, reader.term.a, reader.term.n); pNode->key.n = reader.term.n; if( i>0 ){ char *aBlock = 0; int nBlock = 0; pNode = &pWriter->aNodeWriter[i-1]; pNode->iBlock = reader.iChild; rc = sqlite3Fts3ReadBlock(p, reader.iChild, &aBlock, &nBlock, 0); blobGrowBuffer(&pNode->block, MAX(nBlock, p->nNodeSize)+FTS3_NODE_PADDING, &rc ); if( rc==SQLITE_OK ){ memcpy(pNode->block.a, aBlock, nBlock); pNode->block.n = nBlock; memset(&pNode->block.a[nBlock], 0, FTS3_NODE_PADDING); } sqlite3_free(aBlock); } } } nodeReaderRelease(&reader); } } rc2 = sqlite3_reset(pSelect); if( rc==SQLITE_OK ) rc = rc2; } return rc; } /* ** Determine the largest segment index value that exists within absolute ** level iAbsLevel+1. If no error occurs, set *piIdx to this value plus ** one before returning SQLITE_OK. Or, if there are no segments at all ** within level iAbsLevel, set *piIdx to zero. ** ** If an error occurs, return an SQLite error code. The final value of ** *piIdx is undefined in this case. */ static int fts3IncrmergeOutputIdx( Fts3Table *p, /* FTS Table handle */ sqlite3_int64 iAbsLevel, /* Absolute index of input segments */ int *piIdx /* OUT: Next free index at iAbsLevel+1 */ ){ int rc; sqlite3_stmt *pOutputIdx = 0; /* SQL used to find output index */ rc = fts3SqlStmt(p, SQL_NEXT_SEGMENT_INDEX, &pOutputIdx, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pOutputIdx, 1, iAbsLevel+1); sqlite3_step(pOutputIdx); *piIdx = sqlite3_column_int(pOutputIdx, 0); rc = sqlite3_reset(pOutputIdx); } return rc; } /* ** Allocate an appendable output segment on absolute level iAbsLevel+1 ** with idx value iIdx. ** ** In the %_segdir table, a segment is defined by the values in three ** columns: ** ** start_block ** leaves_end_block ** end_block ** ** When an appendable segment is allocated, it is estimated that the ** maximum number of leaf blocks that may be required is the sum of the ** number of leaf blocks consumed by the input segments, plus the number ** of input segments, multiplied by two. This value is stored in stack ** variable nLeafEst. ** ** A total of 16*nLeafEst blocks are allocated when an appendable segment ** is created ((1 + end_block - start_block)==16*nLeafEst). The contiguous ** array of leaf nodes starts at the first block allocated. The array ** of interior nodes that are parents of the leaf nodes start at block ** (start_block + (1 + end_block - start_block) / 16). And so on. ** ** In the actual code below, the value "16" is replaced with the ** pre-processor macro FTS_MAX_APPENDABLE_HEIGHT. */ static int fts3IncrmergeWriter( Fts3Table *p, /* Fts3 table handle */ sqlite3_int64 iAbsLevel, /* Absolute level of input segments */ int iIdx, /* Index of new output segment */ Fts3MultiSegReader *pCsr, /* Cursor that data will be read from */ IncrmergeWriter *pWriter /* Populate this object */ ){ int rc; /* Return Code */ int i; /* Iterator variable */ int nLeafEst = 0; /* Blocks allocated for leaf nodes */ sqlite3_stmt *pLeafEst = 0; /* SQL used to determine nLeafEst */ sqlite3_stmt *pFirstBlock = 0; /* SQL used to determine first block */ /* Calculate nLeafEst. */ rc = fts3SqlStmt(p, SQL_MAX_LEAF_NODE_ESTIMATE, &pLeafEst, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pLeafEst, 1, iAbsLevel); sqlite3_bind_int64(pLeafEst, 2, pCsr->nSegment); if( SQLITE_ROW==sqlite3_step(pLeafEst) ){ nLeafEst = sqlite3_column_int(pLeafEst, 0); } rc = sqlite3_reset(pLeafEst); } if( rc!=SQLITE_OK ) return rc; /* Calculate the first block to use in the output segment */ rc = fts3SqlStmt(p, SQL_NEXT_SEGMENTS_ID, &pFirstBlock, 0); if( rc==SQLITE_OK ){ if( SQLITE_ROW==sqlite3_step(pFirstBlock) ){ pWriter->iStart = sqlite3_column_int64(pFirstBlock, 0); pWriter->iEnd = pWriter->iStart - 1; pWriter->iEnd += nLeafEst * FTS_MAX_APPENDABLE_HEIGHT; } rc = sqlite3_reset(pFirstBlock); } if( rc!=SQLITE_OK ) return rc; /* Insert the marker in the %_segments table to make sure nobody tries ** to steal the space just allocated. This is also used to identify ** appendable segments. */ rc = fts3WriteSegment(p, pWriter->iEnd, 0, 0); if( rc!=SQLITE_OK ) return rc; pWriter->iAbsLevel = iAbsLevel; pWriter->nLeafEst = nLeafEst; pWriter->iIdx = iIdx; /* Set up the array of NodeWriter objects */ for(i=0; iaNodeWriter[i].iBlock = pWriter->iStart + i*pWriter->nLeafEst; } return SQLITE_OK; } /* ** Remove an entry from the %_segdir table. This involves running the ** following two statements: ** ** DELETE FROM %_segdir WHERE level = :iAbsLevel AND idx = :iIdx ** UPDATE %_segdir SET idx = idx - 1 WHERE level = :iAbsLevel AND idx > :iIdx ** ** The DELETE statement removes the specific %_segdir level. The UPDATE ** statement ensures that the remaining segments have contiguously allocated ** idx values. */ static int fts3RemoveSegdirEntry( Fts3Table *p, /* FTS3 table handle */ sqlite3_int64 iAbsLevel, /* Absolute level to delete from */ int iIdx /* Index of %_segdir entry to delete */ ){ int rc; /* Return code */ sqlite3_stmt *pDelete = 0; /* DELETE statement */ rc = fts3SqlStmt(p, SQL_DELETE_SEGDIR_ENTRY, &pDelete, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pDelete, 1, iAbsLevel); sqlite3_bind_int(pDelete, 2, iIdx); sqlite3_step(pDelete); rc = sqlite3_reset(pDelete); } return rc; } /* ** One or more segments have just been removed from absolute level iAbsLevel. ** Update the 'idx' values of the remaining segments in the level so that ** the idx values are a contiguous sequence starting from 0. */ static int fts3RepackSegdirLevel( Fts3Table *p, /* FTS3 table handle */ sqlite3_int64 iAbsLevel /* Absolute level to repack */ ){ int rc; /* Return code */ int *aIdx = 0; /* Array of remaining idx values */ int nIdx = 0; /* Valid entries in aIdx[] */ int nAlloc = 0; /* Allocated size of aIdx[] */ int i; /* Iterator variable */ sqlite3_stmt *pSelect = 0; /* Select statement to read idx values */ sqlite3_stmt *pUpdate = 0; /* Update statement to modify idx values */ rc = fts3SqlStmt(p, SQL_SELECT_INDEXES, &pSelect, 0); if( rc==SQLITE_OK ){ int rc2; sqlite3_bind_int64(pSelect, 1, iAbsLevel); while( SQLITE_ROW==sqlite3_step(pSelect) ){ if( nIdx>=nAlloc ){ int *aNew; nAlloc += 16; aNew = sqlite3_realloc(aIdx, nAlloc*sizeof(int)); if( !aNew ){ rc = SQLITE_NOMEM; break; } aIdx = aNew; } aIdx[nIdx++] = sqlite3_column_int(pSelect, 0); } rc2 = sqlite3_reset(pSelect); if( rc==SQLITE_OK ) rc = rc2; } if( rc==SQLITE_OK ){ rc = fts3SqlStmt(p, SQL_SHIFT_SEGDIR_ENTRY, &pUpdate, 0); } if( rc==SQLITE_OK ){ sqlite3_bind_int64(pUpdate, 2, iAbsLevel); } assert( p->bIgnoreSavepoint==0 ); p->bIgnoreSavepoint = 1; for(i=0; rc==SQLITE_OK && ibIgnoreSavepoint = 0; sqlite3_free(aIdx); return rc; } static void fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild){ pNode->a[0] = (char)iHeight; if( iChild ){ assert( pNode->nAlloc>=1+sqlite3Fts3VarintLen(iChild) ); pNode->n = 1 + sqlite3Fts3PutVarint(&pNode->a[1], iChild); }else{ assert( pNode->nAlloc>=1 ); pNode->n = 1; } } /* ** The first two arguments are a pointer to and the size of a segment b-tree ** node. The node may be a leaf or an internal node. ** ** This function creates a new node image in blob object *pNew by copying ** all terms that are greater than or equal to zTerm/nTerm (for leaf nodes) ** or greater than zTerm/nTerm (for internal nodes) from aNode/nNode. */ static int fts3TruncateNode( const char *aNode, /* Current node image */ int nNode, /* Size of aNode in bytes */ Blob *pNew, /* OUT: Write new node image here */ const char *zTerm, /* Omit all terms smaller than this */ int nTerm, /* Size of zTerm in bytes */ sqlite3_int64 *piBlock /* OUT: Block number in next layer down */ ){ NodeReader reader; /* Reader object */ Blob prev = {0, 0, 0}; /* Previous term written to new node */ int rc = SQLITE_OK; /* Return code */ int bLeaf; /* True for a leaf node */ if( nNode<1 ) return FTS_CORRUPT_VTAB; bLeaf = aNode[0]=='\0'; /* Allocate required output space */ blobGrowBuffer(pNew, nNode, &rc); if( rc!=SQLITE_OK ) return rc; pNew->n = 0; /* Populate new node buffer */ for(rc = nodeReaderInit(&reader, aNode, nNode); rc==SQLITE_OK && reader.aNode; rc = nodeReaderNext(&reader) ){ if( pNew->n==0 ){ int res = fts3TermCmp(reader.term.a, reader.term.n, zTerm, nTerm); if( res<0 || (bLeaf==0 && res==0) ) continue; fts3StartNode(pNew, (int)aNode[0], reader.iChild); *piBlock = reader.iChild; } rc = fts3AppendToNode( pNew, &prev, reader.term.a, reader.term.n, reader.aDoclist, reader.nDoclist ); if( rc!=SQLITE_OK ) break; } if( pNew->n==0 ){ fts3StartNode(pNew, (int)aNode[0], reader.iChild); *piBlock = reader.iChild; } assert( pNew->n<=pNew->nAlloc ); nodeReaderRelease(&reader); sqlite3_free(prev.a); return rc; } /* ** Remove all terms smaller than zTerm/nTerm from segment iIdx in absolute ** level iAbsLevel. This may involve deleting entries from the %_segments ** table, and modifying existing entries in both the %_segments and %_segdir ** tables. ** ** SQLITE_OK is returned if the segment is updated successfully. Or an ** SQLite error code otherwise. */ static int fts3TruncateSegment( Fts3Table *p, /* FTS3 table handle */ sqlite3_int64 iAbsLevel, /* Absolute level of segment to modify */ int iIdx, /* Index within level of segment to modify */ const char *zTerm, /* Remove terms smaller than this */ int nTerm /* Number of bytes in buffer zTerm */ ){ int rc = SQLITE_OK; /* Return code */ Blob root = {0,0,0}; /* New root page image */ Blob block = {0,0,0}; /* Buffer used for any other block */ sqlite3_int64 iBlock = 0; /* Block id */ sqlite3_int64 iNewStart = 0; /* New value for iStartBlock */ sqlite3_int64 iOldStart = 0; /* Old value for iStartBlock */ sqlite3_stmt *pFetch = 0; /* Statement used to fetch segdir */ rc = fts3SqlStmt(p, SQL_SELECT_SEGDIR, &pFetch, 0); if( rc==SQLITE_OK ){ int rc2; /* sqlite3_reset() return code */ sqlite3_bind_int64(pFetch, 1, iAbsLevel); sqlite3_bind_int(pFetch, 2, iIdx); if( SQLITE_ROW==sqlite3_step(pFetch) ){ const char *aRoot = sqlite3_column_blob(pFetch, 4); int nRoot = sqlite3_column_bytes(pFetch, 4); iOldStart = sqlite3_column_int64(pFetch, 1); rc = fts3TruncateNode(aRoot, nRoot, &root, zTerm, nTerm, &iBlock); } rc2 = sqlite3_reset(pFetch); if( rc==SQLITE_OK ) rc = rc2; } while( rc==SQLITE_OK && iBlock ){ char *aBlock = 0; int nBlock = 0; iNewStart = iBlock; rc = sqlite3Fts3ReadBlock(p, iBlock, &aBlock, &nBlock, 0); if( rc==SQLITE_OK ){ rc = fts3TruncateNode(aBlock, nBlock, &block, zTerm, nTerm, &iBlock); } if( rc==SQLITE_OK ){ rc = fts3WriteSegment(p, iNewStart, block.a, block.n); } sqlite3_free(aBlock); } /* Variable iNewStart now contains the first valid leaf node. */ if( rc==SQLITE_OK && iNewStart ){ sqlite3_stmt *pDel = 0; rc = fts3SqlStmt(p, SQL_DELETE_SEGMENTS_RANGE, &pDel, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pDel, 1, iOldStart); sqlite3_bind_int64(pDel, 2, iNewStart-1); sqlite3_step(pDel); rc = sqlite3_reset(pDel); } } if( rc==SQLITE_OK ){ sqlite3_stmt *pChomp = 0; rc = fts3SqlStmt(p, SQL_CHOMP_SEGDIR, &pChomp, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int64(pChomp, 1, iNewStart); sqlite3_bind_blob(pChomp, 2, root.a, root.n, SQLITE_STATIC); sqlite3_bind_int64(pChomp, 3, iAbsLevel); sqlite3_bind_int(pChomp, 4, iIdx); sqlite3_step(pChomp); rc = sqlite3_reset(pChomp); sqlite3_bind_null(pChomp, 2); } } sqlite3_free(root.a); sqlite3_free(block.a); return rc; } /* ** This function is called after an incrmental-merge operation has run to ** merge (or partially merge) two or more segments from absolute level ** iAbsLevel. ** ** Each input segment is either removed from the db completely (if all of ** its data was copied to the output segment by the incrmerge operation) ** or modified in place so that it no longer contains those entries that ** have been duplicated in the output segment. */ static int fts3IncrmergeChomp( Fts3Table *p, /* FTS table handle */ sqlite3_int64 iAbsLevel, /* Absolute level containing segments */ Fts3MultiSegReader *pCsr, /* Chomp all segments opened by this cursor */ int *pnRem /* Number of segments not deleted */ ){ int i; int nRem = 0; int rc = SQLITE_OK; for(i=pCsr->nSegment-1; i>=0 && rc==SQLITE_OK; i--){ Fts3SegReader *pSeg = 0; int j; /* Find the Fts3SegReader object with Fts3SegReader.iIdx==i. It is hiding ** somewhere in the pCsr->apSegment[] array. */ for(j=0; ALWAYS(jnSegment); j++){ pSeg = pCsr->apSegment[j]; if( pSeg->iIdx==i ) break; } assert( jnSegment && pSeg->iIdx==i ); if( pSeg->aNode==0 ){ /* Seg-reader is at EOF. Remove the entire input segment. */ rc = fts3DeleteSegment(p, pSeg); if( rc==SQLITE_OK ){ rc = fts3RemoveSegdirEntry(p, iAbsLevel, pSeg->iIdx); } *pnRem = 0; }else{ /* The incremental merge did not copy all the data from this ** segment to the upper level. The segment is modified in place ** so that it contains no keys smaller than zTerm/nTerm. */ const char *zTerm = pSeg->zTerm; int nTerm = pSeg->nTerm; rc = fts3TruncateSegment(p, iAbsLevel, pSeg->iIdx, zTerm, nTerm); nRem++; } } if( rc==SQLITE_OK && nRem!=pCsr->nSegment ){ rc = fts3RepackSegdirLevel(p, iAbsLevel); } *pnRem = nRem; return rc; } /* ** Store an incr-merge hint in the database. */ static int fts3IncrmergeHintStore(Fts3Table *p, Blob *pHint){ sqlite3_stmt *pReplace = 0; int rc; /* Return code */ rc = fts3SqlStmt(p, SQL_REPLACE_STAT, &pReplace, 0); if( rc==SQLITE_OK ){ sqlite3_bind_int(pReplace, 1, FTS_STAT_INCRMERGEHINT); sqlite3_bind_blob(pReplace, 2, pHint->a, pHint->n, SQLITE_STATIC); sqlite3_step(pReplace); rc = sqlite3_reset(pReplace); sqlite3_bind_null(pReplace, 2); } return rc; } /* ** Load an incr-merge hint from the database. The incr-merge hint, if one ** exists, is stored in the rowid==1 row of the %_stat table. ** ** If successful, populate blob *pHint with the value read from the %_stat ** table and return SQLITE_OK. Otherwise, if an error occurs, return an ** SQLite error code. */ static int fts3IncrmergeHintLoad(Fts3Table *p, Blob *pHint){ sqlite3_stmt *pSelect = 0; int rc; pHint->n = 0; rc = fts3SqlStmt(p, SQL_SELECT_STAT, &pSelect, 0); if( rc==SQLITE_OK ){ int rc2; sqlite3_bind_int(pSelect, 1, FTS_STAT_INCRMERGEHINT); if( SQLITE_ROW==sqlite3_step(pSelect) ){ const char *aHint = sqlite3_column_blob(pSelect, 0); int nHint = sqlite3_column_bytes(pSelect, 0); if( aHint ){ blobGrowBuffer(pHint, nHint, &rc); if( rc==SQLITE_OK ){ memcpy(pHint->a, aHint, nHint); pHint->n = nHint; } } } rc2 = sqlite3_reset(pSelect); if( rc==SQLITE_OK ) rc = rc2; } return rc; } /* ** If *pRc is not SQLITE_OK when this function is called, it is a no-op. ** Otherwise, append an entry to the hint stored in blob *pHint. Each entry ** consists of two varints, the absolute level number of the input segments ** and the number of input segments. ** ** If successful, leave *pRc set to SQLITE_OK and return. If an error occurs, ** set *pRc to an SQLite error code before returning. */ static void fts3IncrmergeHintPush( Blob *pHint, /* Hint blob to append to */ i64 iAbsLevel, /* First varint to store in hint */ int nInput, /* Second varint to store in hint */ int *pRc /* IN/OUT: Error code */ ){ blobGrowBuffer(pHint, pHint->n + 2*FTS3_VARINT_MAX, pRc); if( *pRc==SQLITE_OK ){ pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], iAbsLevel); pHint->n += sqlite3Fts3PutVarint(&pHint->a[pHint->n], (i64)nInput); } } /* ** Read the last entry (most recently pushed) from the hint blob *pHint ** and then remove the entry. Write the two values read to *piAbsLevel and ** *pnInput before returning. ** ** If no error occurs, return SQLITE_OK. If the hint blob in *pHint does ** not contain at least two valid varints, return SQLITE_CORRUPT_VTAB. */ static int fts3IncrmergeHintPop(Blob *pHint, i64 *piAbsLevel, int *pnInput){ const int nHint = pHint->n; int i; i = pHint->n-1; if( (pHint->a[i] & 0x80) ) return FTS_CORRUPT_VTAB; while( i>0 && (pHint->a[i-1] & 0x80) ) i--; if( i==0 ) return FTS_CORRUPT_VTAB; i--; while( i>0 && (pHint->a[i-1] & 0x80) ) i--; pHint->n = i; i += sqlite3Fts3GetVarint(&pHint->a[i], piAbsLevel); i += fts3GetVarint32(&pHint->a[i], pnInput); assert( i<=nHint ); if( i!=nHint ) return FTS_CORRUPT_VTAB; return SQLITE_OK; } /* ** Attempt an incremental merge that writes nMerge leaf blocks. ** ** Incremental merges happen nMin segments at a time. The segments ** to be merged are the nMin oldest segments (the ones with the smallest ** values for the _segdir.idx field) in the highest level that contains ** at least nMin segments. Multiple merges might occur in an attempt to ** write the quota of nMerge leaf blocks. */ SQLITE_PRIVATE int sqlite3Fts3Incrmerge(Fts3Table *p, int nMerge, int nMin){ int rc; /* Return code */ int nRem = nMerge; /* Number of leaf pages yet to be written */ Fts3MultiSegReader *pCsr; /* Cursor used to read input data */ Fts3SegFilter *pFilter; /* Filter used with cursor pCsr */ IncrmergeWriter *pWriter; /* Writer object */ int nSeg = 0; /* Number of input segments */ sqlite3_int64 iAbsLevel = 0; /* Absolute level number to work on */ Blob hint = {0, 0, 0}; /* Hint read from %_stat table */ int bDirtyHint = 0; /* True if blob 'hint' has been modified */ /* Allocate space for the cursor, filter and writer objects */ const int nAlloc = sizeof(*pCsr) + sizeof(*pFilter) + sizeof(*pWriter); pWriter = (IncrmergeWriter *)sqlite3_malloc(nAlloc); if( !pWriter ) return SQLITE_NOMEM; pFilter = (Fts3SegFilter *)&pWriter[1]; pCsr = (Fts3MultiSegReader *)&pFilter[1]; rc = fts3IncrmergeHintLoad(p, &hint); while( rc==SQLITE_OK && nRem>0 ){ const i64 nMod = FTS3_SEGDIR_MAXLEVEL * p->nIndex; sqlite3_stmt *pFindLevel = 0; /* SQL used to determine iAbsLevel */ int bUseHint = 0; /* True if attempting to append */ int iIdx = 0; /* Largest idx in level (iAbsLevel+1) */ /* Search the %_segdir table for the absolute level with the smallest ** relative level number that contains at least nMin segments, if any. ** If one is found, set iAbsLevel to the absolute level number and ** nSeg to nMin. If no level with at least nMin segments can be found, ** set nSeg to -1. */ rc = fts3SqlStmt(p, SQL_FIND_MERGE_LEVEL, &pFindLevel, 0); sqlite3_bind_int(pFindLevel, 1, MAX(2, nMin)); if( sqlite3_step(pFindLevel)==SQLITE_ROW ){ iAbsLevel = sqlite3_column_int64(pFindLevel, 0); nSeg = sqlite3_column_int(pFindLevel, 1); assert( nSeg>=2 ); }else{ nSeg = -1; } rc = sqlite3_reset(pFindLevel); /* If the hint read from the %_stat table is not empty, check if the ** last entry in it specifies a relative level smaller than or equal ** to the level identified by the block above (if any). If so, this ** iteration of the loop will work on merging at the hinted level. */ if( rc==SQLITE_OK && hint.n ){ int nHint = hint.n; sqlite3_int64 iHintAbsLevel = 0; /* Hint level */ int nHintSeg = 0; /* Hint number of segments */ rc = fts3IncrmergeHintPop(&hint, &iHintAbsLevel, &nHintSeg); if( nSeg<0 || (iAbsLevel % nMod) >= (iHintAbsLevel % nMod) ){ /* Based on the scan in the block above, it is known that there ** are no levels with a relative level smaller than that of ** iAbsLevel with more than nSeg segments, or if nSeg is -1, ** no levels with more than nMin segments. Use this to limit the ** value of nHintSeg to avoid a large memory allocation in case the ** merge-hint is corrupt*/ iAbsLevel = iHintAbsLevel; nSeg = MIN(MAX(nMin,nSeg), nHintSeg); bUseHint = 1; bDirtyHint = 1; }else{ /* This undoes the effect of the HintPop() above - so that no entry ** is removed from the hint blob. */ hint.n = nHint; } } /* If nSeg is less that zero, then there is no level with at least ** nMin segments and no hint in the %_stat table. No work to do. ** Exit early in this case. */ if( nSeg<=0 ) break; assert( nMod<=0x7FFFFFFF ); if( iAbsLevel<0 || iAbsLevel>(nMod<<32) ){ rc = FTS_CORRUPT_VTAB; break; } /* Open a cursor to iterate through the contents of the oldest nSeg ** indexes of absolute level iAbsLevel. If this cursor is opened using ** the 'hint' parameters, it is possible that there are less than nSeg ** segments available in level iAbsLevel. In this case, no work is ** done on iAbsLevel - fall through to the next iteration of the loop ** to start work on some other level. */ memset(pWriter, 0, nAlloc); pFilter->flags = FTS3_SEGMENT_REQUIRE_POS; if( rc==SQLITE_OK ){ rc = fts3IncrmergeOutputIdx(p, iAbsLevel, &iIdx); assert( bUseHint==1 || bUseHint==0 ); if( iIdx==0 || (bUseHint && iIdx==1) ){ int bIgnore = 0; rc = fts3SegmentIsMaxLevel(p, iAbsLevel+1, &bIgnore); if( bIgnore ){ pFilter->flags |= FTS3_SEGMENT_IGNORE_EMPTY; } } } if( rc==SQLITE_OK ){ rc = fts3IncrmergeCsr(p, iAbsLevel, nSeg, pCsr); } if( SQLITE_OK==rc && pCsr->nSegment==nSeg && SQLITE_OK==(rc = sqlite3Fts3SegReaderStart(p, pCsr, pFilter)) ){ int bEmpty = 0; rc = sqlite3Fts3SegReaderStep(p, pCsr); if( rc==SQLITE_OK ){ bEmpty = 1; }else if( rc!=SQLITE_ROW ){ sqlite3Fts3SegReaderFinish(pCsr); break; } if( bUseHint && iIdx>0 ){ const char *zKey = pCsr->zTerm; int nKey = pCsr->nTerm; rc = fts3IncrmergeLoad(p, iAbsLevel, iIdx-1, zKey, nKey, pWriter); }else{ rc = fts3IncrmergeWriter(p, iAbsLevel, iIdx, pCsr, pWriter); } if( rc==SQLITE_OK && pWriter->nLeafEst ){ fts3LogMerge(nSeg, iAbsLevel); if( bEmpty==0 ){ do { rc = fts3IncrmergeAppend(p, pWriter, pCsr); if( rc==SQLITE_OK ) rc = sqlite3Fts3SegReaderStep(p, pCsr); if( pWriter->nWork>=nRem && rc==SQLITE_ROW ) rc = SQLITE_OK; }while( rc==SQLITE_ROW ); } /* Update or delete the input segments */ if( rc==SQLITE_OK ){ nRem -= (1 + pWriter->nWork); rc = fts3IncrmergeChomp(p, iAbsLevel, pCsr, &nSeg); if( nSeg!=0 ){ bDirtyHint = 1; fts3IncrmergeHintPush(&hint, iAbsLevel, nSeg, &rc); } } } if( nSeg!=0 ){ pWriter->nLeafData = pWriter->nLeafData * -1; } fts3IncrmergeRelease(p, pWriter, &rc); if( nSeg==0 && pWriter->bNoLeafData==0 ){ fts3PromoteSegments(p, iAbsLevel+1, pWriter->nLeafData); } } sqlite3Fts3SegReaderFinish(pCsr); } /* Write the hint values into the %_stat table for the next incr-merger */ if( bDirtyHint && rc==SQLITE_OK ){ rc = fts3IncrmergeHintStore(p, &hint); } sqlite3_free(pWriter); sqlite3_free(hint.a); return rc; } /* ** Convert the text beginning at *pz into an integer and return ** its value. Advance *pz to point to the first character past ** the integer. ** ** This function used for parameters to merge= and incrmerge= ** commands. */ static int fts3Getint(const char **pz){ const char *z = *pz; int i = 0; while( (*z)>='0' && (*z)<='9' && i<214748363 ) i = 10*i + *(z++) - '0'; *pz = z; return i; } /* ** Process statements of the form: ** ** INSERT INTO table(table) VALUES('merge=A,B'); ** ** A and B are integers that decode to be the number of leaf pages ** written for the merge, and the minimum number of segments on a level ** before it will be selected for a merge, respectively. */ static int fts3DoIncrmerge( Fts3Table *p, /* FTS3 table handle */ const char *zParam /* Nul-terminated string containing "A,B" */ ){ int rc; int nMin = (MergeCount(p) / 2); int nMerge = 0; const char *z = zParam; /* Read the first integer value */ nMerge = fts3Getint(&z); /* If the first integer value is followed by a ',', read the second ** integer value. */ if( z[0]==',' && z[1]!='\0' ){ z++; nMin = fts3Getint(&z); } if( z[0]!='\0' || nMin<2 ){ rc = SQLITE_ERROR; }else{ rc = SQLITE_OK; if( !p->bHasStat ){ assert( p->bFts4==0 ); sqlite3Fts3CreateStatTable(&rc, p); } if( rc==SQLITE_OK ){ rc = sqlite3Fts3Incrmerge(p, nMerge, nMin); } sqlite3Fts3SegmentsClose(p); } return rc; } /* ** Process statements of the form: ** ** INSERT INTO table(table) VALUES('automerge=X'); ** ** where X is an integer. X==0 means to turn automerge off. X!=0 means ** turn it on. The setting is persistent. */ static int fts3DoAutoincrmerge( Fts3Table *p, /* FTS3 table handle */ const char *zParam /* Nul-terminated string containing boolean */ ){ int rc = SQLITE_OK; sqlite3_stmt *pStmt = 0; p->nAutoincrmerge = fts3Getint(&zParam); if( p->nAutoincrmerge==1 || p->nAutoincrmerge>MergeCount(p) ){ p->nAutoincrmerge = 8; } if( !p->bHasStat ){ assert( p->bFts4==0 ); sqlite3Fts3CreateStatTable(&rc, p); if( rc ) return rc; } rc = fts3SqlStmt(p, SQL_REPLACE_STAT, &pStmt, 0); if( rc ) return rc; sqlite3_bind_int(pStmt, 1, FTS_STAT_AUTOINCRMERGE); sqlite3_bind_int(pStmt, 2, p->nAutoincrmerge); sqlite3_step(pStmt); rc = sqlite3_reset(pStmt); return rc; } /* ** Return a 64-bit checksum for the FTS index entry specified by the ** arguments to this function. */ static u64 fts3ChecksumEntry( const char *zTerm, /* Pointer to buffer containing term */ int nTerm, /* Size of zTerm in bytes */ int iLangid, /* Language id for current row */ int iIndex, /* Index (0..Fts3Table.nIndex-1) */ i64 iDocid, /* Docid for current row. */ int iCol, /* Column number */ int iPos /* Position */ ){ int i; u64 ret = (u64)iDocid; ret += (ret<<3) + iLangid; ret += (ret<<3) + iIndex; ret += (ret<<3) + iCol; ret += (ret<<3) + iPos; for(i=0; inIndex-1) */ int *pRc /* OUT: Return code */ ){ Fts3SegFilter filter; Fts3MultiSegReader csr; int rc; u64 cksum = 0; assert( *pRc==SQLITE_OK ); memset(&filter, 0, sizeof(filter)); memset(&csr, 0, sizeof(csr)); filter.flags = FTS3_SEGMENT_REQUIRE_POS|FTS3_SEGMENT_IGNORE_EMPTY; filter.flags |= FTS3_SEGMENT_SCAN; rc = sqlite3Fts3SegReaderCursor( p, iLangid, iIndex, FTS3_SEGCURSOR_ALL, 0, 0, 0, 1,&csr ); if( rc==SQLITE_OK ){ rc = sqlite3Fts3SegReaderStart(p, &csr, &filter); } if( rc==SQLITE_OK ){ while( SQLITE_ROW==(rc = sqlite3Fts3SegReaderStep(p, &csr)) ){ char *pCsr = csr.aDoclist; char *pEnd = &pCsr[csr.nDoclist]; i64 iDocid = 0; i64 iCol = 0; u64 iPos = 0; pCsr += sqlite3Fts3GetVarint(pCsr, &iDocid); while( pCsrbDescIdx ){ iDocid = (i64)((u64)iDocid - iVal); }else{ iDocid = (i64)((u64)iDocid + iVal); } } }else{ iPos += (iVal - 2); cksum = cksum ^ fts3ChecksumEntry( csr.zTerm, csr.nTerm, iLangid, iIndex, iDocid, (int)iCol, (int)iPos ); } } } } } sqlite3Fts3SegReaderFinish(&csr); *pRc = rc; return cksum; } /* ** Check if the contents of the FTS index match the current contents of the ** content table. If no error occurs and the contents do match, set *pbOk ** to true and return SQLITE_OK. Or if the contents do not match, set *pbOk ** to false before returning. ** ** If an error occurs (e.g. an OOM or IO error), return an SQLite error ** code. The final value of *pbOk is undefined in this case. */ static int fts3IntegrityCheck(Fts3Table *p, int *pbOk){ int rc = SQLITE_OK; /* Return code */ u64 cksum1 = 0; /* Checksum based on FTS index contents */ u64 cksum2 = 0; /* Checksum based on %_content contents */ sqlite3_stmt *pAllLangid = 0; /* Statement to return all language-ids */ /* This block calculates the checksum according to the FTS index. */ rc = fts3SqlStmt(p, SQL_SELECT_ALL_LANGID, &pAllLangid, 0); if( rc==SQLITE_OK ){ int rc2; sqlite3_bind_int(pAllLangid, 1, p->iPrevLangid); sqlite3_bind_int(pAllLangid, 2, p->nIndex); while( rc==SQLITE_OK && sqlite3_step(pAllLangid)==SQLITE_ROW ){ int iLangid = sqlite3_column_int(pAllLangid, 0); int i; for(i=0; inIndex; i++){ cksum1 = cksum1 ^ fts3ChecksumIndex(p, iLangid, i, &rc); } } rc2 = sqlite3_reset(pAllLangid); if( rc==SQLITE_OK ) rc = rc2; } /* This block calculates the checksum according to the %_content table */ if( rc==SQLITE_OK ){ sqlite3_tokenizer_module const *pModule = p->pTokenizer->pModule; sqlite3_stmt *pStmt = 0; char *zSql; zSql = sqlite3_mprintf("SELECT %s" , p->zReadExprlist); if( !zSql ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v2(p->db, zSql, -1, &pStmt, 0); sqlite3_free(zSql); } while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ i64 iDocid = sqlite3_column_int64(pStmt, 0); int iLang = langidFromSelect(p, pStmt); int iCol; for(iCol=0; rc==SQLITE_OK && iColnColumn; iCol++){ if( p->abNotindexed[iCol]==0 ){ const char *zText = (const char *)sqlite3_column_text(pStmt, iCol+1); sqlite3_tokenizer_cursor *pT = 0; rc = sqlite3Fts3OpenTokenizer(p->pTokenizer, iLang, zText, -1, &pT); while( rc==SQLITE_OK ){ char const *zToken; /* Buffer containing token */ int nToken = 0; /* Number of bytes in token */ int iDum1 = 0, iDum2 = 0; /* Dummy variables */ int iPos = 0; /* Position of token in zText */ rc = pModule->xNext(pT, &zToken, &nToken, &iDum1, &iDum2, &iPos); if( rc==SQLITE_OK ){ int i; cksum2 = cksum2 ^ fts3ChecksumEntry( zToken, nToken, iLang, 0, iDocid, iCol, iPos ); for(i=1; inIndex; i++){ if( p->aIndex[i].nPrefix<=nToken ){ cksum2 = cksum2 ^ fts3ChecksumEntry( zToken, p->aIndex[i].nPrefix, iLang, i, iDocid, iCol, iPos ); } } } } if( pT ) pModule->xClose(pT); if( rc==SQLITE_DONE ) rc = SQLITE_OK; } } } sqlite3_finalize(pStmt); } *pbOk = (cksum1==cksum2); return rc; } /* ** Run the integrity-check. If no error occurs and the current contents of ** the FTS index are correct, return SQLITE_OK. Or, if the contents of the ** FTS index are incorrect, return SQLITE_CORRUPT_VTAB. ** ** Or, if an error (e.g. an OOM or IO error) occurs, return an SQLite ** error code. ** ** The integrity-check works as follows. For each token and indexed token ** prefix in the document set, a 64-bit checksum is calculated (by code ** in fts3ChecksumEntry()) based on the following: ** ** + The index number (0 for the main index, 1 for the first prefix ** index etc.), ** + The token (or token prefix) text itself, ** + The language-id of the row it appears in, ** + The docid of the row it appears in, ** + The column it appears in, and ** + The tokens position within that column. ** ** The checksums for all entries in the index are XORed together to create ** a single checksum for the entire index. ** ** The integrity-check code calculates the same checksum in two ways: ** ** 1. By scanning the contents of the FTS index, and ** 2. By scanning and tokenizing the content table. ** ** If the two checksums are identical, the integrity-check is deemed to have ** passed. */ static int fts3DoIntegrityCheck( Fts3Table *p /* FTS3 table handle */ ){ int rc; int bOk = 0; rc = fts3IntegrityCheck(p, &bOk); if( rc==SQLITE_OK && bOk==0 ) rc = FTS_CORRUPT_VTAB; return rc; } /* ** Handle a 'special' INSERT of the form: ** ** "INSERT INTO tbl(tbl) VALUES()" ** ** Argument pVal contains the result of . Currently the only ** meaningful value to insert is the text 'optimize'. */ static int fts3SpecialInsert(Fts3Table *p, sqlite3_value *pVal){ int rc = SQLITE_ERROR; /* Return Code */ const char *zVal = (const char *)sqlite3_value_text(pVal); int nVal = sqlite3_value_bytes(pVal); if( !zVal ){ return SQLITE_NOMEM; }else if( nVal==8 && 0==sqlite3_strnicmp(zVal, "optimize", 8) ){ rc = fts3DoOptimize(p, 0); }else if( nVal==7 && 0==sqlite3_strnicmp(zVal, "rebuild", 7) ){ rc = fts3DoRebuild(p); }else if( nVal==15 && 0==sqlite3_strnicmp(zVal, "integrity-check", 15) ){ rc = fts3DoIntegrityCheck(p); }else if( nVal>6 && 0==sqlite3_strnicmp(zVal, "merge=", 6) ){ rc = fts3DoIncrmerge(p, &zVal[6]); }else if( nVal>10 && 0==sqlite3_strnicmp(zVal, "automerge=", 10) ){ rc = fts3DoAutoincrmerge(p, &zVal[10]); #if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) }else{ int v; if( nVal>9 && 0==sqlite3_strnicmp(zVal, "nodesize=", 9) ){ v = atoi(&zVal[9]); if( v>=24 && v<=p->nPgsz-35 ) p->nNodeSize = v; rc = SQLITE_OK; }else if( nVal>11 && 0==sqlite3_strnicmp(zVal, "maxpending=", 9) ){ v = atoi(&zVal[11]); if( v>=64 && v<=FTS3_MAX_PENDING_DATA ) p->nMaxPendingData = v; rc = SQLITE_OK; }else if( nVal>21 && 0==sqlite3_strnicmp(zVal,"test-no-incr-doclist=",21) ){ p->bNoIncrDoclist = atoi(&zVal[21]); rc = SQLITE_OK; }else if( nVal>11 && 0==sqlite3_strnicmp(zVal,"mergecount=",11) ){ v = atoi(&zVal[11]); if( v>=4 && v<=FTS3_MERGE_COUNT && (v&1)==0 ) p->nMergeCount = v; rc = SQLITE_OK; } #endif } return rc; } #ifndef SQLITE_DISABLE_FTS4_DEFERRED /* ** Delete all cached deferred doclists. Deferred doclists are cached ** (allocated) by the sqlite3Fts3CacheDeferredDoclists() function. */ SQLITE_PRIVATE void sqlite3Fts3FreeDeferredDoclists(Fts3Cursor *pCsr){ Fts3DeferredToken *pDef; for(pDef=pCsr->pDeferred; pDef; pDef=pDef->pNext){ fts3PendingListDelete(pDef->pList); pDef->pList = 0; } } /* ** Free all entries in the pCsr->pDeffered list. Entries are added to ** this list using sqlite3Fts3DeferToken(). */ SQLITE_PRIVATE void sqlite3Fts3FreeDeferredTokens(Fts3Cursor *pCsr){ Fts3DeferredToken *pDef; Fts3DeferredToken *pNext; for(pDef=pCsr->pDeferred; pDef; pDef=pNext){ pNext = pDef->pNext; fts3PendingListDelete(pDef->pList); sqlite3_free(pDef); } pCsr->pDeferred = 0; } /* ** Generate deferred-doclists for all tokens in the pCsr->pDeferred list ** based on the row that pCsr currently points to. ** ** A deferred-doclist is like any other doclist with position information ** included, except that it only contains entries for a single row of the ** table, not for all rows. */ SQLITE_PRIVATE int sqlite3Fts3CacheDeferredDoclists(Fts3Cursor *pCsr){ int rc = SQLITE_OK; /* Return code */ if( pCsr->pDeferred ){ int i; /* Used to iterate through table columns */ sqlite3_int64 iDocid; /* Docid of the row pCsr points to */ Fts3DeferredToken *pDef; /* Used to iterate through deferred tokens */ Fts3Table *p = (Fts3Table *)pCsr->base.pVtab; sqlite3_tokenizer *pT = p->pTokenizer; sqlite3_tokenizer_module const *pModule = pT->pModule; assert( pCsr->isRequireSeek==0 ); iDocid = sqlite3_column_int64(pCsr->pStmt, 0); for(i=0; inColumn && rc==SQLITE_OK; i++){ if( p->abNotindexed[i]==0 ){ const char *zText = (const char *)sqlite3_column_text(pCsr->pStmt, i+1); sqlite3_tokenizer_cursor *pTC = 0; rc = sqlite3Fts3OpenTokenizer(pT, pCsr->iLangid, zText, -1, &pTC); while( rc==SQLITE_OK ){ char const *zToken; /* Buffer containing token */ int nToken = 0; /* Number of bytes in token */ int iDum1 = 0, iDum2 = 0; /* Dummy variables */ int iPos = 0; /* Position of token in zText */ rc = pModule->xNext(pTC, &zToken, &nToken, &iDum1, &iDum2, &iPos); for(pDef=pCsr->pDeferred; pDef && rc==SQLITE_OK; pDef=pDef->pNext){ Fts3PhraseToken *pPT = pDef->pToken; if( (pDef->iCol>=p->nColumn || pDef->iCol==i) && (pPT->bFirst==0 || iPos==0) && (pPT->n==nToken || (pPT->isPrefix && pPT->nz, pPT->n)) ){ fts3PendingListAppend(&pDef->pList, iDocid, i, iPos, &rc); } } } if( pTC ) pModule->xClose(pTC); if( rc==SQLITE_DONE ) rc = SQLITE_OK; } } for(pDef=pCsr->pDeferred; pDef && rc==SQLITE_OK; pDef=pDef->pNext){ if( pDef->pList ){ rc = fts3PendingListAppendVarint(&pDef->pList, 0); } } } return rc; } SQLITE_PRIVATE int sqlite3Fts3DeferredTokenList( Fts3DeferredToken *p, char **ppData, int *pnData ){ char *pRet; int nSkip; sqlite3_int64 dummy; *ppData = 0; *pnData = 0; if( p->pList==0 ){ return SQLITE_OK; } pRet = (char *)sqlite3_malloc(p->pList->nData); if( !pRet ) return SQLITE_NOMEM; nSkip = sqlite3Fts3GetVarint(p->pList->aData, &dummy); *pnData = p->pList->nData - nSkip; *ppData = pRet; memcpy(pRet, &p->pList->aData[nSkip], *pnData); return SQLITE_OK; } /* ** Add an entry for token pToken to the pCsr->pDeferred list. */ SQLITE_PRIVATE int sqlite3Fts3DeferToken( Fts3Cursor *pCsr, /* Fts3 table cursor */ Fts3PhraseToken *pToken, /* Token to defer */ int iCol /* Column that token must appear in (or -1) */ ){ Fts3DeferredToken *pDeferred; pDeferred = sqlite3_malloc(sizeof(*pDeferred)); if( !pDeferred ){ return SQLITE_NOMEM; } memset(pDeferred, 0, sizeof(*pDeferred)); pDeferred->pToken = pToken; pDeferred->pNext = pCsr->pDeferred; pDeferred->iCol = iCol; pCsr->pDeferred = pDeferred; assert( pToken->pDeferred==0 ); pToken->pDeferred = pDeferred; return SQLITE_OK; } #endif /* ** SQLite value pRowid contains the rowid of a row that may or may not be ** present in the FTS3 table. If it is, delete it and adjust the contents ** of subsiduary data structures accordingly. */ static int fts3DeleteByRowid( Fts3Table *p, sqlite3_value *pRowid, int *pnChng, /* IN/OUT: Decrement if row is deleted */ u32 *aSzDel ){ int rc = SQLITE_OK; /* Return code */ int bFound = 0; /* True if *pRowid really is in the table */ fts3DeleteTerms(&rc, p, pRowid, aSzDel, &bFound); if( bFound && rc==SQLITE_OK ){ int isEmpty = 0; /* Deleting *pRowid leaves the table empty */ rc = fts3IsEmpty(p, pRowid, &isEmpty); if( rc==SQLITE_OK ){ if( isEmpty ){ /* Deleting this row means the whole table is empty. In this case ** delete the contents of all three tables and throw away any ** data in the pendingTerms hash table. */ rc = fts3DeleteAll(p, 1); *pnChng = 0; memset(aSzDel, 0, sizeof(u32) * (p->nColumn+1) * 2); }else{ *pnChng = *pnChng - 1; if( p->zContentTbl==0 ){ fts3SqlExec(&rc, p, SQL_DELETE_CONTENT, &pRowid); } if( p->bHasDocsize ){ fts3SqlExec(&rc, p, SQL_DELETE_DOCSIZE, &pRowid); } } } } return rc; } /* ** This function does the work for the xUpdate method of FTS3 virtual ** tables. The schema of the virtual table being: ** ** CREATE TABLE
    ( ** , **
    HIDDEN, ** docid HIDDEN, ** HIDDEN ** ); ** ** */ SQLITE_PRIVATE int sqlite3Fts3UpdateMethod( sqlite3_vtab *pVtab, /* FTS3 vtab object */ int nArg, /* Size of argument array */ sqlite3_value **apVal, /* Array of arguments */ sqlite_int64 *pRowid /* OUT: The affected (or effected) rowid */ ){ Fts3Table *p = (Fts3Table *)pVtab; int rc = SQLITE_OK; /* Return Code */ u32 *aSzIns = 0; /* Sizes of inserted documents */ u32 *aSzDel = 0; /* Sizes of deleted documents */ int nChng = 0; /* Net change in number of documents */ int bInsertDone = 0; /* At this point it must be known if the %_stat table exists or not. ** So bHasStat may not be 2. */ assert( p->bHasStat==0 || p->bHasStat==1 ); assert( p->pSegments==0 ); assert( nArg==1 /* DELETE operations */ || nArg==(2 + p->nColumn + 3) /* INSERT or UPDATE operations */ ); /* Check for a "special" INSERT operation. One of the form: ** ** INSERT INTO xyz(xyz) VALUES('command'); */ if( nArg>1 && sqlite3_value_type(apVal[0])==SQLITE_NULL && sqlite3_value_type(apVal[p->nColumn+2])!=SQLITE_NULL ){ rc = fts3SpecialInsert(p, apVal[p->nColumn+2]); goto update_out; } if( nArg>1 && sqlite3_value_int(apVal[2 + p->nColumn + 2])<0 ){ rc = SQLITE_CONSTRAINT; goto update_out; } /* Allocate space to hold the change in document sizes */ aSzDel = sqlite3_malloc64(sizeof(aSzDel[0])*((sqlite3_int64)p->nColumn+1)*2); if( aSzDel==0 ){ rc = SQLITE_NOMEM; goto update_out; } aSzIns = &aSzDel[p->nColumn+1]; memset(aSzDel, 0, sizeof(aSzDel[0])*(p->nColumn+1)*2); rc = fts3Writelock(p); if( rc!=SQLITE_OK ) goto update_out; /* If this is an INSERT operation, or an UPDATE that modifies the rowid ** value, then this operation requires constraint handling. ** ** If the on-conflict mode is REPLACE, this means that the existing row ** should be deleted from the database before inserting the new row. Or, ** if the on-conflict mode is other than REPLACE, then this method must ** detect the conflict and return SQLITE_CONSTRAINT before beginning to ** modify the database file. */ if( nArg>1 && p->zContentTbl==0 ){ /* Find the value object that holds the new rowid value. */ sqlite3_value *pNewRowid = apVal[3+p->nColumn]; if( sqlite3_value_type(pNewRowid)==SQLITE_NULL ){ pNewRowid = apVal[1]; } if( sqlite3_value_type(pNewRowid)!=SQLITE_NULL && ( sqlite3_value_type(apVal[0])==SQLITE_NULL || sqlite3_value_int64(apVal[0])!=sqlite3_value_int64(pNewRowid) )){ /* The new rowid is not NULL (in this case the rowid will be ** automatically assigned and there is no chance of a conflict), and ** the statement is either an INSERT or an UPDATE that modifies the ** rowid column. So if the conflict mode is REPLACE, then delete any ** existing row with rowid=pNewRowid. ** ** Or, if the conflict mode is not REPLACE, insert the new record into ** the %_content table. If we hit the duplicate rowid constraint (or any ** other error) while doing so, return immediately. ** ** This branch may also run if pNewRowid contains a value that cannot ** be losslessly converted to an integer. In this case, the eventual ** call to fts3InsertData() (either just below or further on in this ** function) will return SQLITE_MISMATCH. If fts3DeleteByRowid is ** invoked, it will delete zero rows (since no row will have ** docid=$pNewRowid if $pNewRowid is not an integer value). */ if( sqlite3_vtab_on_conflict(p->db)==SQLITE_REPLACE ){ rc = fts3DeleteByRowid(p, pNewRowid, &nChng, aSzDel); }else{ rc = fts3InsertData(p, apVal, pRowid); bInsertDone = 1; } } } if( rc!=SQLITE_OK ){ goto update_out; } /* If this is a DELETE or UPDATE operation, remove the old record. */ if( sqlite3_value_type(apVal[0])!=SQLITE_NULL ){ assert( sqlite3_value_type(apVal[0])==SQLITE_INTEGER ); rc = fts3DeleteByRowid(p, apVal[0], &nChng, aSzDel); } /* If this is an INSERT or UPDATE operation, insert the new record. */ if( nArg>1 && rc==SQLITE_OK ){ int iLangid = sqlite3_value_int(apVal[2 + p->nColumn + 2]); if( bInsertDone==0 ){ rc = fts3InsertData(p, apVal, pRowid); if( rc==SQLITE_CONSTRAINT && p->zContentTbl==0 ){ rc = FTS_CORRUPT_VTAB; } } if( rc==SQLITE_OK ){ rc = fts3PendingTermsDocid(p, 0, iLangid, *pRowid); } if( rc==SQLITE_OK ){ assert( p->iPrevDocid==*pRowid ); rc = fts3InsertTerms(p, iLangid, apVal, aSzIns); } if( p->bHasDocsize ){ fts3InsertDocsize(&rc, p, aSzIns); } nChng++; } if( p->bFts4 ){ fts3UpdateDocTotals(&rc, p, aSzIns, aSzDel, nChng); } update_out: sqlite3_free(aSzDel); sqlite3Fts3SegmentsClose(p); return rc; } /* ** Flush any data in the pending-terms hash table to disk. If successful, ** merge all segments in the database (including the new segment, if ** there was any data to flush) into a single segment. */ SQLITE_PRIVATE int sqlite3Fts3Optimize(Fts3Table *p){ int rc; rc = sqlite3_exec(p->db, "SAVEPOINT fts3", 0, 0, 0); if( rc==SQLITE_OK ){ rc = fts3DoOptimize(p, 1); if( rc==SQLITE_OK || rc==SQLITE_DONE ){ int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0); if( rc2!=SQLITE_OK ) rc = rc2; }else{ sqlite3_exec(p->db, "ROLLBACK TO fts3", 0, 0, 0); sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0); } } sqlite3Fts3SegmentsClose(p); return rc; } #endif /************** End of fts3_write.c ******************************************/ /************** Begin file fts3_snippet.c ************************************/ /* ** 2009 Oct 23 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* ** Characters that may appear in the second argument to matchinfo(). */ #define FTS3_MATCHINFO_NPHRASE 'p' /* 1 value */ #define FTS3_MATCHINFO_NCOL 'c' /* 1 value */ #define FTS3_MATCHINFO_NDOC 'n' /* 1 value */ #define FTS3_MATCHINFO_AVGLENGTH 'a' /* nCol values */ #define FTS3_MATCHINFO_LENGTH 'l' /* nCol values */ #define FTS3_MATCHINFO_LCS 's' /* nCol values */ #define FTS3_MATCHINFO_HITS 'x' /* 3*nCol*nPhrase values */ #define FTS3_MATCHINFO_LHITS 'y' /* nCol*nPhrase values */ #define FTS3_MATCHINFO_LHITS_BM 'b' /* nCol*nPhrase values */ /* ** The default value for the second argument to matchinfo(). */ #define FTS3_MATCHINFO_DEFAULT "pcx" /* ** Used as an fts3ExprIterate() context when loading phrase doclists to ** Fts3Expr.aDoclist[]/nDoclist. */ typedef struct LoadDoclistCtx LoadDoclistCtx; struct LoadDoclistCtx { Fts3Cursor *pCsr; /* FTS3 Cursor */ int nPhrase; /* Number of phrases seen so far */ int nToken; /* Number of tokens seen so far */ }; /* ** The following types are used as part of the implementation of the ** fts3BestSnippet() routine. */ typedef struct SnippetIter SnippetIter; typedef struct SnippetPhrase SnippetPhrase; typedef struct SnippetFragment SnippetFragment; struct SnippetIter { Fts3Cursor *pCsr; /* Cursor snippet is being generated from */ int iCol; /* Extract snippet from this column */ int nSnippet; /* Requested snippet length (in tokens) */ int nPhrase; /* Number of phrases in query */ SnippetPhrase *aPhrase; /* Array of size nPhrase */ int iCurrent; /* First token of current snippet */ }; struct SnippetPhrase { int nToken; /* Number of tokens in phrase */ char *pList; /* Pointer to start of phrase position list */ int iHead; /* Next value in position list */ char *pHead; /* Position list data following iHead */ int iTail; /* Next value in trailing position list */ char *pTail; /* Position list data following iTail */ }; struct SnippetFragment { int iCol; /* Column snippet is extracted from */ int iPos; /* Index of first token in snippet */ u64 covered; /* Mask of query phrases covered */ u64 hlmask; /* Mask of snippet terms to highlight */ }; /* ** This type is used as an fts3ExprIterate() context object while ** accumulating the data returned by the matchinfo() function. */ typedef struct MatchInfo MatchInfo; struct MatchInfo { Fts3Cursor *pCursor; /* FTS3 Cursor */ int nCol; /* Number of columns in table */ int nPhrase; /* Number of matchable phrases in query */ sqlite3_int64 nDoc; /* Number of docs in database */ char flag; u32 *aMatchinfo; /* Pre-allocated buffer */ }; /* ** An instance of this structure is used to manage a pair of buffers, each ** (nElem * sizeof(u32)) bytes in size. See the MatchinfoBuffer code below ** for details. */ struct MatchinfoBuffer { u8 aRef[3]; int nElem; int bGlobal; /* Set if global data is loaded */ char *zMatchinfo; u32 aMatchinfo[1]; }; /* ** The snippet() and offsets() functions both return text values. An instance ** of the following structure is used to accumulate those values while the ** functions are running. See fts3StringAppend() for details. */ typedef struct StrBuffer StrBuffer; struct StrBuffer { char *z; /* Pointer to buffer containing string */ int n; /* Length of z in bytes (excl. nul-term) */ int nAlloc; /* Allocated size of buffer z in bytes */ }; /************************************************************************* ** Start of MatchinfoBuffer code. */ /* ** Allocate a two-slot MatchinfoBuffer object. */ static MatchinfoBuffer *fts3MIBufferNew(size_t nElem, const char *zMatchinfo){ MatchinfoBuffer *pRet; sqlite3_int64 nByte = sizeof(u32) * (2*(sqlite3_int64)nElem + 1) + sizeof(MatchinfoBuffer); sqlite3_int64 nStr = strlen(zMatchinfo); pRet = sqlite3_malloc64(nByte + nStr+1); if( pRet ){ memset(pRet, 0, nByte); pRet->aMatchinfo[0] = (u8*)(&pRet->aMatchinfo[1]) - (u8*)pRet; pRet->aMatchinfo[1+nElem] = pRet->aMatchinfo[0] + sizeof(u32)*((int)nElem+1); pRet->nElem = (int)nElem; pRet->zMatchinfo = ((char*)pRet) + nByte; memcpy(pRet->zMatchinfo, zMatchinfo, nStr+1); pRet->aRef[0] = 1; } return pRet; } static void fts3MIBufferFree(void *p){ MatchinfoBuffer *pBuf = (MatchinfoBuffer*)((u8*)p - ((u32*)p)[-1]); assert( (u32*)p==&pBuf->aMatchinfo[1] || (u32*)p==&pBuf->aMatchinfo[pBuf->nElem+2] ); if( (u32*)p==&pBuf->aMatchinfo[1] ){ pBuf->aRef[1] = 0; }else{ pBuf->aRef[2] = 0; } if( pBuf->aRef[0]==0 && pBuf->aRef[1]==0 && pBuf->aRef[2]==0 ){ sqlite3_free(pBuf); } } static void (*fts3MIBufferAlloc(MatchinfoBuffer *p, u32 **paOut))(void*){ void (*xRet)(void*) = 0; u32 *aOut = 0; if( p->aRef[1]==0 ){ p->aRef[1] = 1; aOut = &p->aMatchinfo[1]; xRet = fts3MIBufferFree; } else if( p->aRef[2]==0 ){ p->aRef[2] = 1; aOut = &p->aMatchinfo[p->nElem+2]; xRet = fts3MIBufferFree; }else{ aOut = (u32*)sqlite3_malloc64(p->nElem * sizeof(u32)); if( aOut ){ xRet = sqlite3_free; if( p->bGlobal ) memcpy(aOut, &p->aMatchinfo[1], p->nElem*sizeof(u32)); } } *paOut = aOut; return xRet; } static void fts3MIBufferSetGlobal(MatchinfoBuffer *p){ p->bGlobal = 1; memcpy(&p->aMatchinfo[2+p->nElem], &p->aMatchinfo[1], p->nElem*sizeof(u32)); } /* ** Free a MatchinfoBuffer object allocated using fts3MIBufferNew() */ SQLITE_PRIVATE void sqlite3Fts3MIBufferFree(MatchinfoBuffer *p){ if( p ){ assert( p->aRef[0]==1 ); p->aRef[0] = 0; if( p->aRef[0]==0 && p->aRef[1]==0 && p->aRef[2]==0 ){ sqlite3_free(p); } } } /* ** End of MatchinfoBuffer code. *************************************************************************/ /* ** This function is used to help iterate through a position-list. A position ** list is a list of unique integers, sorted from smallest to largest. Each ** element of the list is represented by an FTS3 varint that takes the value ** of the difference between the current element and the previous one plus ** two. For example, to store the position-list: ** ** 4 9 113 ** ** the three varints: ** ** 6 7 106 ** ** are encoded. ** ** When this function is called, *pp points to the start of an element of ** the list. *piPos contains the value of the previous entry in the list. ** After it returns, *piPos contains the value of the next element of the ** list and *pp is advanced to the following varint. */ static void fts3GetDeltaPosition(char **pp, int *piPos){ int iVal; *pp += fts3GetVarint32(*pp, &iVal); *piPos += (iVal-2); } /* ** Helper function for fts3ExprIterate() (see below). */ static int fts3ExprIterate2( Fts3Expr *pExpr, /* Expression to iterate phrases of */ int *piPhrase, /* Pointer to phrase counter */ int (*x)(Fts3Expr*,int,void*), /* Callback function to invoke for phrases */ void *pCtx /* Second argument to pass to callback */ ){ int rc; /* Return code */ int eType = pExpr->eType; /* Type of expression node pExpr */ if( eType!=FTSQUERY_PHRASE ){ assert( pExpr->pLeft && pExpr->pRight ); rc = fts3ExprIterate2(pExpr->pLeft, piPhrase, x, pCtx); if( rc==SQLITE_OK && eType!=FTSQUERY_NOT ){ rc = fts3ExprIterate2(pExpr->pRight, piPhrase, x, pCtx); } }else{ rc = x(pExpr, *piPhrase, pCtx); (*piPhrase)++; } return rc; } /* ** Iterate through all phrase nodes in an FTS3 query, except those that ** are part of a sub-tree that is the right-hand-side of a NOT operator. ** For each phrase node found, the supplied callback function is invoked. ** ** If the callback function returns anything other than SQLITE_OK, ** the iteration is abandoned and the error code returned immediately. ** Otherwise, SQLITE_OK is returned after a callback has been made for ** all eligible phrase nodes. */ static int fts3ExprIterate( Fts3Expr *pExpr, /* Expression to iterate phrases of */ int (*x)(Fts3Expr*,int,void*), /* Callback function to invoke for phrases */ void *pCtx /* Second argument to pass to callback */ ){ int iPhrase = 0; /* Variable used as the phrase counter */ return fts3ExprIterate2(pExpr, &iPhrase, x, pCtx); } /* ** This is an fts3ExprIterate() callback used while loading the doclists ** for each phrase into Fts3Expr.aDoclist[]/nDoclist. See also ** fts3ExprLoadDoclists(). */ static int fts3ExprLoadDoclistsCb(Fts3Expr *pExpr, int iPhrase, void *ctx){ int rc = SQLITE_OK; Fts3Phrase *pPhrase = pExpr->pPhrase; LoadDoclistCtx *p = (LoadDoclistCtx *)ctx; UNUSED_PARAMETER(iPhrase); p->nPhrase++; p->nToken += pPhrase->nToken; return rc; } /* ** Load the doclists for each phrase in the query associated with FTS3 cursor ** pCsr. ** ** If pnPhrase is not NULL, then *pnPhrase is set to the number of matchable ** phrases in the expression (all phrases except those directly or ** indirectly descended from the right-hand-side of a NOT operator). If ** pnToken is not NULL, then it is set to the number of tokens in all ** matchable phrases of the expression. */ static int fts3ExprLoadDoclists( Fts3Cursor *pCsr, /* Fts3 cursor for current query */ int *pnPhrase, /* OUT: Number of phrases in query */ int *pnToken /* OUT: Number of tokens in query */ ){ int rc; /* Return Code */ LoadDoclistCtx sCtx = {0,0,0}; /* Context for fts3ExprIterate() */ sCtx.pCsr = pCsr; rc = fts3ExprIterate(pCsr->pExpr, fts3ExprLoadDoclistsCb, (void *)&sCtx); if( pnPhrase ) *pnPhrase = sCtx.nPhrase; if( pnToken ) *pnToken = sCtx.nToken; return rc; } static int fts3ExprPhraseCountCb(Fts3Expr *pExpr, int iPhrase, void *ctx){ (*(int *)ctx)++; pExpr->iPhrase = iPhrase; return SQLITE_OK; } static int fts3ExprPhraseCount(Fts3Expr *pExpr){ int nPhrase = 0; (void)fts3ExprIterate(pExpr, fts3ExprPhraseCountCb, (void *)&nPhrase); return nPhrase; } /* ** Advance the position list iterator specified by the first two ** arguments so that it points to the first element with a value greater ** than or equal to parameter iNext. */ static void fts3SnippetAdvance(char **ppIter, int *piIter, int iNext){ char *pIter = *ppIter; if( pIter ){ int iIter = *piIter; while( iIteriCurrent<0 ){ /* The SnippetIter object has just been initialized. The first snippet ** candidate always starts at offset 0 (even if this candidate has a ** score of 0.0). */ pIter->iCurrent = 0; /* Advance the 'head' iterator of each phrase to the first offset that ** is greater than or equal to (iNext+nSnippet). */ for(i=0; inPhrase; i++){ SnippetPhrase *pPhrase = &pIter->aPhrase[i]; fts3SnippetAdvance(&pPhrase->pHead, &pPhrase->iHead, pIter->nSnippet); } }else{ int iStart; int iEnd = 0x7FFFFFFF; for(i=0; inPhrase; i++){ SnippetPhrase *pPhrase = &pIter->aPhrase[i]; if( pPhrase->pHead && pPhrase->iHeadiHead; } } if( iEnd==0x7FFFFFFF ){ return 1; } pIter->iCurrent = iStart = iEnd - pIter->nSnippet + 1; for(i=0; inPhrase; i++){ SnippetPhrase *pPhrase = &pIter->aPhrase[i]; fts3SnippetAdvance(&pPhrase->pHead, &pPhrase->iHead, iEnd+1); fts3SnippetAdvance(&pPhrase->pTail, &pPhrase->iTail, iStart); } } return 0; } /* ** Retrieve information about the current candidate snippet of snippet ** iterator pIter. */ static void fts3SnippetDetails( SnippetIter *pIter, /* Snippet iterator */ u64 mCovered, /* Bitmask of phrases already covered */ int *piToken, /* OUT: First token of proposed snippet */ int *piScore, /* OUT: "Score" for this snippet */ u64 *pmCover, /* OUT: Bitmask of phrases covered */ u64 *pmHighlight /* OUT: Bitmask of terms to highlight */ ){ int iStart = pIter->iCurrent; /* First token of snippet */ int iScore = 0; /* Score of this snippet */ int i; /* Loop counter */ u64 mCover = 0; /* Mask of phrases covered by this snippet */ u64 mHighlight = 0; /* Mask of tokens to highlight in snippet */ for(i=0; inPhrase; i++){ SnippetPhrase *pPhrase = &pIter->aPhrase[i]; if( pPhrase->pTail ){ char *pCsr = pPhrase->pTail; int iCsr = pPhrase->iTail; while( iCsr<(iStart+pIter->nSnippet) && iCsr>=iStart ){ int j; u64 mPhrase = (u64)1 << (i%64); u64 mPos = (u64)1 << (iCsr - iStart); assert( iCsr>=iStart && (iCsr - iStart)<=64 ); assert( i>=0 ); if( (mCover|mCovered)&mPhrase ){ iScore++; }else{ iScore += 1000; } mCover |= mPhrase; for(j=0; jnToken; j++){ mHighlight |= (mPos>>j); } if( 0==(*pCsr & 0x0FE) ) break; fts3GetDeltaPosition(&pCsr, &iCsr); } } } /* Set the output variables before returning. */ *piToken = iStart; *piScore = iScore; *pmCover = mCover; *pmHighlight = mHighlight; } /* ** This function is an fts3ExprIterate() callback used by fts3BestSnippet(). ** Each invocation populates an element of the SnippetIter.aPhrase[] array. */ static int fts3SnippetFindPositions(Fts3Expr *pExpr, int iPhrase, void *ctx){ SnippetIter *p = (SnippetIter *)ctx; SnippetPhrase *pPhrase = &p->aPhrase[iPhrase]; char *pCsr; int rc; pPhrase->nToken = pExpr->pPhrase->nToken; rc = sqlite3Fts3EvalPhrasePoslist(p->pCsr, pExpr, p->iCol, &pCsr); assert( rc==SQLITE_OK || pCsr==0 ); if( pCsr ){ int iFirst = 0; pPhrase->pList = pCsr; fts3GetDeltaPosition(&pCsr, &iFirst); if( iFirst<0 ){ rc = FTS_CORRUPT_VTAB; }else{ pPhrase->pHead = pCsr; pPhrase->pTail = pCsr; pPhrase->iHead = iFirst; pPhrase->iTail = iFirst; } }else{ assert( rc!=SQLITE_OK || ( pPhrase->pList==0 && pPhrase->pHead==0 && pPhrase->pTail==0 )); } return rc; } /* ** Select the fragment of text consisting of nFragment contiguous tokens ** from column iCol that represent the "best" snippet. The best snippet ** is the snippet with the highest score, where scores are calculated ** by adding: ** ** (a) +1 point for each occurrence of a matchable phrase in the snippet. ** ** (b) +1000 points for the first occurrence of each matchable phrase in ** the snippet for which the corresponding mCovered bit is not set. ** ** The selected snippet parameters are stored in structure *pFragment before ** returning. The score of the selected snippet is stored in *piScore ** before returning. */ static int fts3BestSnippet( int nSnippet, /* Desired snippet length */ Fts3Cursor *pCsr, /* Cursor to create snippet for */ int iCol, /* Index of column to create snippet from */ u64 mCovered, /* Mask of phrases already covered */ u64 *pmSeen, /* IN/OUT: Mask of phrases seen */ SnippetFragment *pFragment, /* OUT: Best snippet found */ int *piScore /* OUT: Score of snippet pFragment */ ){ int rc; /* Return Code */ int nList; /* Number of phrases in expression */ SnippetIter sIter; /* Iterates through snippet candidates */ sqlite3_int64 nByte; /* Number of bytes of space to allocate */ int iBestScore = -1; /* Best snippet score found so far */ int i; /* Loop counter */ memset(&sIter, 0, sizeof(sIter)); /* Iterate through the phrases in the expression to count them. The same ** callback makes sure the doclists are loaded for each phrase. */ rc = fts3ExprLoadDoclists(pCsr, &nList, 0); if( rc!=SQLITE_OK ){ return rc; } /* Now that it is known how many phrases there are, allocate and zero ** the required space using malloc(). */ nByte = sizeof(SnippetPhrase) * nList; sIter.aPhrase = (SnippetPhrase *)sqlite3_malloc64(nByte); if( !sIter.aPhrase ){ return SQLITE_NOMEM; } memset(sIter.aPhrase, 0, nByte); /* Initialize the contents of the SnippetIter object. Then iterate through ** the set of phrases in the expression to populate the aPhrase[] array. */ sIter.pCsr = pCsr; sIter.iCol = iCol; sIter.nSnippet = nSnippet; sIter.nPhrase = nList; sIter.iCurrent = -1; rc = fts3ExprIterate(pCsr->pExpr, fts3SnippetFindPositions, (void*)&sIter); if( rc==SQLITE_OK ){ /* Set the *pmSeen output variable. */ for(i=0; iiCol = iCol; while( !fts3SnippetNextCandidate(&sIter) ){ int iPos; int iScore; u64 mCover; u64 mHighlite; fts3SnippetDetails(&sIter, mCovered, &iPos, &iScore, &mCover,&mHighlite); assert( iScore>=0 ); if( iScore>iBestScore ){ pFragment->iPos = iPos; pFragment->hlmask = mHighlite; pFragment->covered = mCover; iBestScore = iScore; } } *piScore = iBestScore; } sqlite3_free(sIter.aPhrase); return rc; } /* ** Append a string to the string-buffer passed as the first argument. ** ** If nAppend is negative, then the length of the string zAppend is ** determined using strlen(). */ static int fts3StringAppend( StrBuffer *pStr, /* Buffer to append to */ const char *zAppend, /* Pointer to data to append to buffer */ int nAppend /* Size of zAppend in bytes (or -1) */ ){ if( nAppend<0 ){ nAppend = (int)strlen(zAppend); } /* If there is insufficient space allocated at StrBuffer.z, use realloc() ** to grow the buffer until so that it is big enough to accomadate the ** appended data. */ if( pStr->n+nAppend+1>=pStr->nAlloc ){ sqlite3_int64 nAlloc = pStr->nAlloc+(sqlite3_int64)nAppend+100; char *zNew = sqlite3_realloc64(pStr->z, nAlloc); if( !zNew ){ return SQLITE_NOMEM; } pStr->z = zNew; pStr->nAlloc = nAlloc; } assert( pStr->z!=0 && (pStr->nAlloc >= pStr->n+nAppend+1) ); /* Append the data to the string buffer. */ memcpy(&pStr->z[pStr->n], zAppend, nAppend); pStr->n += nAppend; pStr->z[pStr->n] = '\0'; return SQLITE_OK; } /* ** The fts3BestSnippet() function often selects snippets that end with a ** query term. That is, the final term of the snippet is always a term ** that requires highlighting. For example, if 'X' is a highlighted term ** and '.' is a non-highlighted term, BestSnippet() may select: ** ** ........X.....X ** ** This function "shifts" the beginning of the snippet forward in the ** document so that there are approximately the same number of ** non-highlighted terms to the right of the final highlighted term as there ** are to the left of the first highlighted term. For example, to this: ** ** ....X.....X.... ** ** This is done as part of extracting the snippet text, not when selecting ** the snippet. Snippet selection is done based on doclists only, so there ** is no way for fts3BestSnippet() to know whether or not the document ** actually contains terms that follow the final highlighted term. */ static int fts3SnippetShift( Fts3Table *pTab, /* FTS3 table snippet comes from */ int iLangid, /* Language id to use in tokenizing */ int nSnippet, /* Number of tokens desired for snippet */ const char *zDoc, /* Document text to extract snippet from */ int nDoc, /* Size of buffer zDoc in bytes */ int *piPos, /* IN/OUT: First token of snippet */ u64 *pHlmask /* IN/OUT: Mask of tokens to highlight */ ){ u64 hlmask = *pHlmask; /* Local copy of initial highlight-mask */ if( hlmask ){ int nLeft; /* Tokens to the left of first highlight */ int nRight; /* Tokens to the right of last highlight */ int nDesired; /* Ideal number of tokens to shift forward */ for(nLeft=0; !(hlmask & ((u64)1 << nLeft)); nLeft++); for(nRight=0; !(hlmask & ((u64)1 << (nSnippet-1-nRight))); nRight++); assert( (nSnippet-1-nRight)<=63 && (nSnippet-1-nRight)>=0 ); nDesired = (nLeft-nRight)/2; /* Ideally, the start of the snippet should be pushed forward in the ** document nDesired tokens. This block checks if there are actually ** nDesired tokens to the right of the snippet. If so, *piPos and ** *pHlMask are updated to shift the snippet nDesired tokens to the ** right. Otherwise, the snippet is shifted by the number of tokens ** available. */ if( nDesired>0 ){ int nShift; /* Number of tokens to shift snippet by */ int iCurrent = 0; /* Token counter */ int rc; /* Return Code */ sqlite3_tokenizer_module *pMod; sqlite3_tokenizer_cursor *pC; pMod = (sqlite3_tokenizer_module *)pTab->pTokenizer->pModule; /* Open a cursor on zDoc/nDoc. Check if there are (nSnippet+nDesired) ** or more tokens in zDoc/nDoc. */ rc = sqlite3Fts3OpenTokenizer(pTab->pTokenizer, iLangid, zDoc, nDoc, &pC); if( rc!=SQLITE_OK ){ return rc; } while( rc==SQLITE_OK && iCurrent<(nSnippet+nDesired) ){ const char *ZDUMMY; int DUMMY1 = 0, DUMMY2 = 0, DUMMY3 = 0; rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &DUMMY2, &DUMMY3, &iCurrent); } pMod->xClose(pC); if( rc!=SQLITE_OK && rc!=SQLITE_DONE ){ return rc; } nShift = (rc==SQLITE_DONE)+iCurrent-nSnippet; assert( nShift<=nDesired ); if( nShift>0 ){ *piPos += nShift; *pHlmask = hlmask >> nShift; } } } return SQLITE_OK; } /* ** Extract the snippet text for fragment pFragment from cursor pCsr and ** append it to string buffer pOut. */ static int fts3SnippetText( Fts3Cursor *pCsr, /* FTS3 Cursor */ SnippetFragment *pFragment, /* Snippet to extract */ int iFragment, /* Fragment number */ int isLast, /* True for final fragment in snippet */ int nSnippet, /* Number of tokens in extracted snippet */ const char *zOpen, /* String inserted before highlighted term */ const char *zClose, /* String inserted after highlighted term */ const char *zEllipsis, /* String inserted between snippets */ StrBuffer *pOut /* Write output here */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc; /* Return code */ const char *zDoc; /* Document text to extract snippet from */ int nDoc; /* Size of zDoc in bytes */ int iCurrent = 0; /* Current token number of document */ int iEnd = 0; /* Byte offset of end of current token */ int isShiftDone = 0; /* True after snippet is shifted */ int iPos = pFragment->iPos; /* First token of snippet */ u64 hlmask = pFragment->hlmask; /* Highlight-mask for snippet */ int iCol = pFragment->iCol+1; /* Query column to extract text from */ sqlite3_tokenizer_module *pMod; /* Tokenizer module methods object */ sqlite3_tokenizer_cursor *pC; /* Tokenizer cursor open on zDoc/nDoc */ zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol); if( zDoc==0 ){ if( sqlite3_column_type(pCsr->pStmt, iCol)!=SQLITE_NULL ){ return SQLITE_NOMEM; } return SQLITE_OK; } nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol); /* Open a token cursor on the document. */ pMod = (sqlite3_tokenizer_module *)pTab->pTokenizer->pModule; rc = sqlite3Fts3OpenTokenizer(pTab->pTokenizer, pCsr->iLangid, zDoc,nDoc,&pC); if( rc!=SQLITE_OK ){ return rc; } while( rc==SQLITE_OK ){ const char *ZDUMMY; /* Dummy argument used with tokenizer */ int DUMMY1 = -1; /* Dummy argument used with tokenizer */ int iBegin = 0; /* Offset in zDoc of start of token */ int iFin = 0; /* Offset in zDoc of end of token */ int isHighlight = 0; /* True for highlighted terms */ /* Variable DUMMY1 is initialized to a negative value above. Elsewhere ** in the FTS code the variable that the third argument to xNext points to ** is initialized to zero before the first (*but not necessarily ** subsequent*) call to xNext(). This is done for a particular application ** that needs to know whether or not the tokenizer is being used for ** snippet generation or for some other purpose. ** ** Extreme care is required when writing code to depend on this ** initialization. It is not a documented part of the tokenizer interface. ** If a tokenizer is used directly by any code outside of FTS, this ** convention might not be respected. */ rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &iBegin, &iFin, &iCurrent); if( rc!=SQLITE_OK ){ if( rc==SQLITE_DONE ){ /* Special case - the last token of the snippet is also the last token ** of the column. Append any punctuation that occurred between the end ** of the previous token and the end of the document to the output. ** Then break out of the loop. */ rc = fts3StringAppend(pOut, &zDoc[iEnd], -1); } break; } if( iCurrentiLangid, nSnippet, &zDoc[iBegin], n, &iPos, &hlmask ); isShiftDone = 1; /* Now that the shift has been done, check if the initial "..." are ** required. They are required if (a) this is not the first fragment, ** or (b) this fragment does not begin at position 0 of its column. */ if( rc==SQLITE_OK ){ if( iPos>0 || iFragment>0 ){ rc = fts3StringAppend(pOut, zEllipsis, -1); }else if( iBegin ){ rc = fts3StringAppend(pOut, zDoc, iBegin); } } if( rc!=SQLITE_OK || iCurrent=(iPos+nSnippet) ){ if( isLast ){ rc = fts3StringAppend(pOut, zEllipsis, -1); } break; } /* Set isHighlight to true if this term should be highlighted. */ isHighlight = (hlmask & ((u64)1 << (iCurrent-iPos)))!=0; if( iCurrent>iPos ) rc = fts3StringAppend(pOut, &zDoc[iEnd], iBegin-iEnd); if( rc==SQLITE_OK && isHighlight ) rc = fts3StringAppend(pOut, zOpen, -1); if( rc==SQLITE_OK ) rc = fts3StringAppend(pOut, &zDoc[iBegin], iFin-iBegin); if( rc==SQLITE_OK && isHighlight ) rc = fts3StringAppend(pOut, zClose, -1); iEnd = iFin; } pMod->xClose(pC); return rc; } /* ** This function is used to count the entries in a column-list (a ** delta-encoded list of term offsets within a single column of a single ** row). When this function is called, *ppCollist should point to the ** beginning of the first varint in the column-list (the varint that ** contains the position of the first matching term in the column data). ** Before returning, *ppCollist is set to point to the first byte after ** the last varint in the column-list (either the 0x00 signifying the end ** of the position-list, or the 0x01 that precedes the column number of ** the next column in the position-list). ** ** The number of elements in the column-list is returned. */ static int fts3ColumnlistCount(char **ppCollist){ char *pEnd = *ppCollist; char c = 0; int nEntry = 0; /* A column-list is terminated by either a 0x01 or 0x00. */ while( 0xFE & (*pEnd | c) ){ c = *pEnd++ & 0x80; if( !c ) nEntry++; } *ppCollist = pEnd; return nEntry; } /* ** This function gathers 'y' or 'b' data for a single phrase. */ static int fts3ExprLHits( Fts3Expr *pExpr, /* Phrase expression node */ MatchInfo *p /* Matchinfo context */ ){ Fts3Table *pTab = (Fts3Table *)p->pCursor->base.pVtab; int iStart; Fts3Phrase *pPhrase = pExpr->pPhrase; char *pIter = pPhrase->doclist.pList; int iCol = 0; assert( p->flag==FTS3_MATCHINFO_LHITS_BM || p->flag==FTS3_MATCHINFO_LHITS ); if( p->flag==FTS3_MATCHINFO_LHITS ){ iStart = pExpr->iPhrase * p->nCol; }else{ iStart = pExpr->iPhrase * ((p->nCol + 31) / 32); } if( pIter ) while( 1 ){ int nHit = fts3ColumnlistCount(&pIter); if( (pPhrase->iColumn>=pTab->nColumn || pPhrase->iColumn==iCol) ){ if( p->flag==FTS3_MATCHINFO_LHITS ){ p->aMatchinfo[iStart + iCol] = (u32)nHit; }else if( nHit ){ p->aMatchinfo[iStart + (iCol+1)/32] |= (1 << (iCol&0x1F)); } } assert( *pIter==0x00 || *pIter==0x01 ); if( *pIter!=0x01 ) break; pIter++; pIter += fts3GetVarint32(pIter, &iCol); if( iCol>=p->nCol ) return FTS_CORRUPT_VTAB; } return SQLITE_OK; } /* ** Gather the results for matchinfo directives 'y' and 'b'. */ static int fts3ExprLHitGather( Fts3Expr *pExpr, MatchInfo *p ){ int rc = SQLITE_OK; assert( (pExpr->pLeft==0)==(pExpr->pRight==0) ); if( pExpr->bEof==0 && pExpr->iDocid==p->pCursor->iPrevId ){ if( pExpr->pLeft ){ rc = fts3ExprLHitGather(pExpr->pLeft, p); if( rc==SQLITE_OK ) rc = fts3ExprLHitGather(pExpr->pRight, p); }else{ rc = fts3ExprLHits(pExpr, p); } } return rc; } /* ** fts3ExprIterate() callback used to collect the "global" matchinfo stats ** for a single query. ** ** fts3ExprIterate() callback to load the 'global' elements of a ** FTS3_MATCHINFO_HITS matchinfo array. The global stats are those elements ** of the matchinfo array that are constant for all rows returned by the ** current query. ** ** Argument pCtx is actually a pointer to a struct of type MatchInfo. This ** function populates Matchinfo.aMatchinfo[] as follows: ** ** for(iCol=0; iColpCursor, pExpr, &p->aMatchinfo[3*iPhrase*p->nCol] ); } /* ** fts3ExprIterate() callback used to collect the "local" part of the ** FTS3_MATCHINFO_HITS array. The local stats are those elements of the ** array that are different for each row returned by the query. */ static int fts3ExprLocalHitsCb( Fts3Expr *pExpr, /* Phrase expression node */ int iPhrase, /* Phrase number */ void *pCtx /* Pointer to MatchInfo structure */ ){ int rc = SQLITE_OK; MatchInfo *p = (MatchInfo *)pCtx; int iStart = iPhrase * p->nCol * 3; int i; for(i=0; inCol && rc==SQLITE_OK; i++){ char *pCsr; rc = sqlite3Fts3EvalPhrasePoslist(p->pCursor, pExpr, i, &pCsr); if( pCsr ){ p->aMatchinfo[iStart+i*3] = fts3ColumnlistCount(&pCsr); }else{ p->aMatchinfo[iStart+i*3] = 0; } } return rc; } static int fts3MatchinfoCheck( Fts3Table *pTab, char cArg, char **pzErr ){ if( (cArg==FTS3_MATCHINFO_NPHRASE) || (cArg==FTS3_MATCHINFO_NCOL) || (cArg==FTS3_MATCHINFO_NDOC && pTab->bFts4) || (cArg==FTS3_MATCHINFO_AVGLENGTH && pTab->bFts4) || (cArg==FTS3_MATCHINFO_LENGTH && pTab->bHasDocsize) || (cArg==FTS3_MATCHINFO_LCS) || (cArg==FTS3_MATCHINFO_HITS) || (cArg==FTS3_MATCHINFO_LHITS) || (cArg==FTS3_MATCHINFO_LHITS_BM) ){ return SQLITE_OK; } sqlite3Fts3ErrMsg(pzErr, "unrecognized matchinfo request: %c", cArg); return SQLITE_ERROR; } static size_t fts3MatchinfoSize(MatchInfo *pInfo, char cArg){ size_t nVal; /* Number of integers output by cArg */ switch( cArg ){ case FTS3_MATCHINFO_NDOC: case FTS3_MATCHINFO_NPHRASE: case FTS3_MATCHINFO_NCOL: nVal = 1; break; case FTS3_MATCHINFO_AVGLENGTH: case FTS3_MATCHINFO_LENGTH: case FTS3_MATCHINFO_LCS: nVal = pInfo->nCol; break; case FTS3_MATCHINFO_LHITS: nVal = pInfo->nCol * pInfo->nPhrase; break; case FTS3_MATCHINFO_LHITS_BM: nVal = pInfo->nPhrase * ((pInfo->nCol + 31) / 32); break; default: assert( cArg==FTS3_MATCHINFO_HITS ); nVal = pInfo->nCol * pInfo->nPhrase * 3; break; } return nVal; } static int fts3MatchinfoSelectDoctotal( Fts3Table *pTab, sqlite3_stmt **ppStmt, sqlite3_int64 *pnDoc, const char **paLen, const char **ppEnd ){ sqlite3_stmt *pStmt; const char *a; const char *pEnd; sqlite3_int64 nDoc; int n; if( !*ppStmt ){ int rc = sqlite3Fts3SelectDoctotal(pTab, ppStmt); if( rc!=SQLITE_OK ) return rc; } pStmt = *ppStmt; assert( sqlite3_data_count(pStmt)==1 ); n = sqlite3_column_bytes(pStmt, 0); a = sqlite3_column_blob(pStmt, 0); if( a==0 ){ return FTS_CORRUPT_VTAB; } pEnd = a + n; a += sqlite3Fts3GetVarintBounded(a, pEnd, &nDoc); if( nDoc<=0 || a>pEnd ){ return FTS_CORRUPT_VTAB; } *pnDoc = nDoc; if( paLen ) *paLen = a; if( ppEnd ) *ppEnd = pEnd; return SQLITE_OK; } /* ** An instance of the following structure is used to store state while ** iterating through a multi-column position-list corresponding to the ** hits for a single phrase on a single row in order to calculate the ** values for a matchinfo() FTS3_MATCHINFO_LCS request. */ typedef struct LcsIterator LcsIterator; struct LcsIterator { Fts3Expr *pExpr; /* Pointer to phrase expression */ int iPosOffset; /* Tokens count up to end of this phrase */ char *pRead; /* Cursor used to iterate through aDoclist */ int iPos; /* Current position */ }; /* ** If LcsIterator.iCol is set to the following value, the iterator has ** finished iterating through all offsets for all columns. */ #define LCS_ITERATOR_FINISHED 0x7FFFFFFF; static int fts3MatchinfoLcsCb( Fts3Expr *pExpr, /* Phrase expression node */ int iPhrase, /* Phrase number (numbered from zero) */ void *pCtx /* Pointer to MatchInfo structure */ ){ LcsIterator *aIter = (LcsIterator *)pCtx; aIter[iPhrase].pExpr = pExpr; return SQLITE_OK; } /* ** Advance the iterator passed as an argument to the next position. Return ** 1 if the iterator is at EOF or if it now points to the start of the ** position list for the next column. */ static int fts3LcsIteratorAdvance(LcsIterator *pIter){ char *pRead = pIter->pRead; sqlite3_int64 iRead; int rc = 0; pRead += sqlite3Fts3GetVarint(pRead, &iRead); if( iRead==0 || iRead==1 ){ pRead = 0; rc = 1; }else{ pIter->iPos += (int)(iRead-2); } pIter->pRead = pRead; return rc; } /* ** This function implements the FTS3_MATCHINFO_LCS matchinfo() flag. ** ** If the call is successful, the longest-common-substring lengths for each ** column are written into the first nCol elements of the pInfo->aMatchinfo[] ** array before returning. SQLITE_OK is returned in this case. ** ** Otherwise, if an error occurs, an SQLite error code is returned and the ** data written to the first nCol elements of pInfo->aMatchinfo[] is ** undefined. */ static int fts3MatchinfoLcs(Fts3Cursor *pCsr, MatchInfo *pInfo){ LcsIterator *aIter; int i; int iCol; int nToken = 0; int rc = SQLITE_OK; /* Allocate and populate the array of LcsIterator objects. The array ** contains one element for each matchable phrase in the query. **/ aIter = sqlite3_malloc64(sizeof(LcsIterator) * pCsr->nPhrase); if( !aIter ) return SQLITE_NOMEM; memset(aIter, 0, sizeof(LcsIterator) * pCsr->nPhrase); (void)fts3ExprIterate(pCsr->pExpr, fts3MatchinfoLcsCb, (void*)aIter); for(i=0; inPhrase; i++){ LcsIterator *pIter = &aIter[i]; nToken -= pIter->pExpr->pPhrase->nToken; pIter->iPosOffset = nToken; } for(iCol=0; iColnCol; iCol++){ int nLcs = 0; /* LCS value for this column */ int nLive = 0; /* Number of iterators in aIter not at EOF */ for(i=0; inPhrase; i++){ LcsIterator *pIt = &aIter[i]; rc = sqlite3Fts3EvalPhrasePoslist(pCsr, pIt->pExpr, iCol, &pIt->pRead); if( rc!=SQLITE_OK ) goto matchinfo_lcs_out; if( pIt->pRead ){ pIt->iPos = pIt->iPosOffset; fts3LcsIteratorAdvance(pIt); if( pIt->pRead==0 ){ rc = FTS_CORRUPT_VTAB; goto matchinfo_lcs_out; } nLive++; } } while( nLive>0 ){ LcsIterator *pAdv = 0; /* The iterator to advance by one position */ int nThisLcs = 0; /* LCS for the current iterator positions */ for(i=0; inPhrase; i++){ LcsIterator *pIter = &aIter[i]; if( pIter->pRead==0 ){ /* This iterator is already at EOF for this column. */ nThisLcs = 0; }else{ if( pAdv==0 || pIter->iPosiPos ){ pAdv = pIter; } if( nThisLcs==0 || pIter->iPos==pIter[-1].iPos ){ nThisLcs++; }else{ nThisLcs = 1; } if( nThisLcs>nLcs ) nLcs = nThisLcs; } } if( fts3LcsIteratorAdvance(pAdv) ) nLive--; } pInfo->aMatchinfo[iCol] = nLcs; } matchinfo_lcs_out: sqlite3_free(aIter); return rc; } /* ** Populate the buffer pInfo->aMatchinfo[] with an array of integers to ** be returned by the matchinfo() function. Argument zArg contains the ** format string passed as the second argument to matchinfo (or the ** default value "pcx" if no second argument was specified). The format ** string has already been validated and the pInfo->aMatchinfo[] array ** is guaranteed to be large enough for the output. ** ** If bGlobal is true, then populate all fields of the matchinfo() output. ** If it is false, then assume that those fields that do not change between ** rows (i.e. FTS3_MATCHINFO_NPHRASE, NCOL, NDOC, AVGLENGTH and part of HITS) ** have already been populated. ** ** Return SQLITE_OK if successful, or an SQLite error code if an error ** occurs. If a value other than SQLITE_OK is returned, the state the ** pInfo->aMatchinfo[] buffer is left in is undefined. */ static int fts3MatchinfoValues( Fts3Cursor *pCsr, /* FTS3 cursor object */ int bGlobal, /* True to grab the global stats */ MatchInfo *pInfo, /* Matchinfo context object */ const char *zArg /* Matchinfo format string */ ){ int rc = SQLITE_OK; int i; Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; sqlite3_stmt *pSelect = 0; for(i=0; rc==SQLITE_OK && zArg[i]; i++){ pInfo->flag = zArg[i]; switch( zArg[i] ){ case FTS3_MATCHINFO_NPHRASE: if( bGlobal ) pInfo->aMatchinfo[0] = pInfo->nPhrase; break; case FTS3_MATCHINFO_NCOL: if( bGlobal ) pInfo->aMatchinfo[0] = pInfo->nCol; break; case FTS3_MATCHINFO_NDOC: if( bGlobal ){ sqlite3_int64 nDoc = 0; rc = fts3MatchinfoSelectDoctotal(pTab, &pSelect, &nDoc, 0, 0); pInfo->aMatchinfo[0] = (u32)nDoc; } break; case FTS3_MATCHINFO_AVGLENGTH: if( bGlobal ){ sqlite3_int64 nDoc; /* Number of rows in table */ const char *a; /* Aggregate column length array */ const char *pEnd; /* First byte past end of length array */ rc = fts3MatchinfoSelectDoctotal(pTab, &pSelect, &nDoc, &a, &pEnd); if( rc==SQLITE_OK ){ int iCol; for(iCol=0; iColnCol; iCol++){ u32 iVal; sqlite3_int64 nToken; a += sqlite3Fts3GetVarint(a, &nToken); if( a>pEnd ){ rc = SQLITE_CORRUPT_VTAB; break; } iVal = (u32)(((u32)(nToken&0xffffffff)+nDoc/2)/nDoc); pInfo->aMatchinfo[iCol] = iVal; } } } break; case FTS3_MATCHINFO_LENGTH: { sqlite3_stmt *pSelectDocsize = 0; rc = sqlite3Fts3SelectDocsize(pTab, pCsr->iPrevId, &pSelectDocsize); if( rc==SQLITE_OK ){ int iCol; const char *a = sqlite3_column_blob(pSelectDocsize, 0); const char *pEnd = a + sqlite3_column_bytes(pSelectDocsize, 0); for(iCol=0; iColnCol; iCol++){ sqlite3_int64 nToken; a += sqlite3Fts3GetVarintBounded(a, pEnd, &nToken); if( a>pEnd ){ rc = SQLITE_CORRUPT_VTAB; break; } pInfo->aMatchinfo[iCol] = (u32)nToken; } } sqlite3_reset(pSelectDocsize); break; } case FTS3_MATCHINFO_LCS: rc = fts3ExprLoadDoclists(pCsr, 0, 0); if( rc==SQLITE_OK ){ rc = fts3MatchinfoLcs(pCsr, pInfo); } break; case FTS3_MATCHINFO_LHITS_BM: case FTS3_MATCHINFO_LHITS: { size_t nZero = fts3MatchinfoSize(pInfo, zArg[i]) * sizeof(u32); memset(pInfo->aMatchinfo, 0, nZero); rc = fts3ExprLHitGather(pCsr->pExpr, pInfo); break; } default: { Fts3Expr *pExpr; assert( zArg[i]==FTS3_MATCHINFO_HITS ); pExpr = pCsr->pExpr; rc = fts3ExprLoadDoclists(pCsr, 0, 0); if( rc!=SQLITE_OK ) break; if( bGlobal ){ if( pCsr->pDeferred ){ rc = fts3MatchinfoSelectDoctotal(pTab, &pSelect, &pInfo->nDoc,0,0); if( rc!=SQLITE_OK ) break; } rc = fts3ExprIterate(pExpr, fts3ExprGlobalHitsCb,(void*)pInfo); sqlite3Fts3EvalTestDeferred(pCsr, &rc); if( rc!=SQLITE_OK ) break; } (void)fts3ExprIterate(pExpr, fts3ExprLocalHitsCb,(void*)pInfo); break; } } pInfo->aMatchinfo += fts3MatchinfoSize(pInfo, zArg[i]); } sqlite3_reset(pSelect); return rc; } /* ** Populate pCsr->aMatchinfo[] with data for the current row. The ** 'matchinfo' data is an array of 32-bit unsigned integers (C type u32). */ static void fts3GetMatchinfo( sqlite3_context *pCtx, /* Return results here */ Fts3Cursor *pCsr, /* FTS3 Cursor object */ const char *zArg /* Second argument to matchinfo() function */ ){ MatchInfo sInfo; Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc = SQLITE_OK; int bGlobal = 0; /* Collect 'global' stats as well as local */ u32 *aOut = 0; void (*xDestroyOut)(void*) = 0; memset(&sInfo, 0, sizeof(MatchInfo)); sInfo.pCursor = pCsr; sInfo.nCol = pTab->nColumn; /* If there is cached matchinfo() data, but the format string for the ** cache does not match the format string for this request, discard ** the cached data. */ if( pCsr->pMIBuffer && strcmp(pCsr->pMIBuffer->zMatchinfo, zArg) ){ sqlite3Fts3MIBufferFree(pCsr->pMIBuffer); pCsr->pMIBuffer = 0; } /* If Fts3Cursor.pMIBuffer is NULL, then this is the first time the ** matchinfo function has been called for this query. In this case ** allocate the array used to accumulate the matchinfo data and ** initialize those elements that are constant for every row. */ if( pCsr->pMIBuffer==0 ){ size_t nMatchinfo = 0; /* Number of u32 elements in match-info */ int i; /* Used to iterate through zArg */ /* Determine the number of phrases in the query */ pCsr->nPhrase = fts3ExprPhraseCount(pCsr->pExpr); sInfo.nPhrase = pCsr->nPhrase; /* Determine the number of integers in the buffer returned by this call. */ for(i=0; zArg[i]; i++){ char *zErr = 0; if( fts3MatchinfoCheck(pTab, zArg[i], &zErr) ){ sqlite3_result_error(pCtx, zErr, -1); sqlite3_free(zErr); return; } nMatchinfo += fts3MatchinfoSize(&sInfo, zArg[i]); } /* Allocate space for Fts3Cursor.aMatchinfo[] and Fts3Cursor.zMatchinfo. */ pCsr->pMIBuffer = fts3MIBufferNew(nMatchinfo, zArg); if( !pCsr->pMIBuffer ) rc = SQLITE_NOMEM; pCsr->isMatchinfoNeeded = 1; bGlobal = 1; } if( rc==SQLITE_OK ){ xDestroyOut = fts3MIBufferAlloc(pCsr->pMIBuffer, &aOut); if( xDestroyOut==0 ){ rc = SQLITE_NOMEM; } } if( rc==SQLITE_OK ){ sInfo.aMatchinfo = aOut; sInfo.nPhrase = pCsr->nPhrase; rc = fts3MatchinfoValues(pCsr, bGlobal, &sInfo, zArg); if( bGlobal ){ fts3MIBufferSetGlobal(pCsr->pMIBuffer); } } if( rc!=SQLITE_OK ){ sqlite3_result_error_code(pCtx, rc); if( xDestroyOut ) xDestroyOut(aOut); }else{ int n = pCsr->pMIBuffer->nElem * sizeof(u32); sqlite3_result_blob(pCtx, aOut, n, xDestroyOut); } } /* ** Implementation of snippet() function. */ SQLITE_PRIVATE void sqlite3Fts3Snippet( sqlite3_context *pCtx, /* SQLite function call context */ Fts3Cursor *pCsr, /* Cursor object */ const char *zStart, /* Snippet start text - "" */ const char *zEnd, /* Snippet end text - "" */ const char *zEllipsis, /* Snippet ellipsis text - "..." */ int iCol, /* Extract snippet from this column */ int nToken /* Approximate number of tokens in snippet */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; int rc = SQLITE_OK; int i; StrBuffer res = {0, 0, 0}; /* The returned text includes up to four fragments of text extracted from ** the data in the current row. The first iteration of the for(...) loop ** below attempts to locate a single fragment of text nToken tokens in ** size that contains at least one instance of all phrases in the query ** expression that appear in the current row. If such a fragment of text ** cannot be found, the second iteration of the loop attempts to locate ** a pair of fragments, and so on. */ int nSnippet = 0; /* Number of fragments in this snippet */ SnippetFragment aSnippet[4]; /* Maximum of 4 fragments per snippet */ int nFToken = -1; /* Number of tokens in each fragment */ if( !pCsr->pExpr ){ sqlite3_result_text(pCtx, "", 0, SQLITE_STATIC); return; } /* Limit the snippet length to 64 tokens. */ if( nToken<-64 ) nToken = -64; if( nToken>+64 ) nToken = +64; for(nSnippet=1; 1; nSnippet++){ int iSnip; /* Loop counter 0..nSnippet-1 */ u64 mCovered = 0; /* Bitmask of phrases covered by snippet */ u64 mSeen = 0; /* Bitmask of phrases seen by BestSnippet() */ if( nToken>=0 ){ nFToken = (nToken+nSnippet-1) / nSnippet; }else{ nFToken = -1 * nToken; } for(iSnip=0; iSnipnColumn; iRead++){ SnippetFragment sF = {0, 0, 0, 0}; int iS = 0; if( iCol>=0 && iRead!=iCol ) continue; /* Find the best snippet of nFToken tokens in column iRead. */ rc = fts3BestSnippet(nFToken, pCsr, iRead, mCovered, &mSeen, &sF, &iS); if( rc!=SQLITE_OK ){ goto snippet_out; } if( iS>iBestScore ){ *pFragment = sF; iBestScore = iS; } } mCovered |= pFragment->covered; } /* If all query phrases seen by fts3BestSnippet() are present in at least ** one of the nSnippet snippet fragments, break out of the loop. */ assert( (mCovered&mSeen)==mCovered ); if( mSeen==mCovered || nSnippet==SizeofArray(aSnippet) ) break; } assert( nFToken>0 ); for(i=0; ipCsr, pExpr, p->iCol, &pList); nTerm = pExpr->pPhrase->nToken; if( pList ){ fts3GetDeltaPosition(&pList, &iPos); assert_fts3_nc( iPos>=0 ); } for(iTerm=0; iTermaTerm[p->iTerm++]; pT->iOff = nTerm-iTerm-1; pT->pList = pList; pT->iPos = iPos; } return rc; } /* ** Implementation of offsets() function. */ SQLITE_PRIVATE void sqlite3Fts3Offsets( sqlite3_context *pCtx, /* SQLite function call context */ Fts3Cursor *pCsr /* Cursor object */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; sqlite3_tokenizer_module const *pMod = pTab->pTokenizer->pModule; int rc; /* Return Code */ int nToken; /* Number of tokens in query */ int iCol; /* Column currently being processed */ StrBuffer res = {0, 0, 0}; /* Result string */ TermOffsetCtx sCtx; /* Context for fts3ExprTermOffsetInit() */ if( !pCsr->pExpr ){ sqlite3_result_text(pCtx, "", 0, SQLITE_STATIC); return; } memset(&sCtx, 0, sizeof(sCtx)); assert( pCsr->isRequireSeek==0 ); /* Count the number of terms in the query */ rc = fts3ExprLoadDoclists(pCsr, 0, &nToken); if( rc!=SQLITE_OK ) goto offsets_out; /* Allocate the array of TermOffset iterators. */ sCtx.aTerm = (TermOffset *)sqlite3_malloc64(sizeof(TermOffset)*nToken); if( 0==sCtx.aTerm ){ rc = SQLITE_NOMEM; goto offsets_out; } sCtx.iDocid = pCsr->iPrevId; sCtx.pCsr = pCsr; /* Loop through the table columns, appending offset information to ** string-buffer res for each column. */ for(iCol=0; iColnColumn; iCol++){ sqlite3_tokenizer_cursor *pC; /* Tokenizer cursor */ const char *ZDUMMY; /* Dummy argument used with xNext() */ int NDUMMY = 0; /* Dummy argument used with xNext() */ int iStart = 0; int iEnd = 0; int iCurrent = 0; const char *zDoc; int nDoc; /* Initialize the contents of sCtx.aTerm[] for column iCol. There is ** no way that this operation can fail, so the return code from ** fts3ExprIterate() can be discarded. */ sCtx.iCol = iCol; sCtx.iTerm = 0; (void)fts3ExprIterate(pCsr->pExpr, fts3ExprTermOffsetInit, (void*)&sCtx); /* Retreive the text stored in column iCol. If an SQL NULL is stored ** in column iCol, jump immediately to the next iteration of the loop. ** If an OOM occurs while retrieving the data (this can happen if SQLite ** needs to transform the data from utf-16 to utf-8), return SQLITE_NOMEM ** to the caller. */ zDoc = (const char *)sqlite3_column_text(pCsr->pStmt, iCol+1); nDoc = sqlite3_column_bytes(pCsr->pStmt, iCol+1); if( zDoc==0 ){ if( sqlite3_column_type(pCsr->pStmt, iCol+1)==SQLITE_NULL ){ continue; } rc = SQLITE_NOMEM; goto offsets_out; } /* Initialize a tokenizer iterator to iterate through column iCol. */ rc = sqlite3Fts3OpenTokenizer(pTab->pTokenizer, pCsr->iLangid, zDoc, nDoc, &pC ); if( rc!=SQLITE_OK ) goto offsets_out; rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent); while( rc==SQLITE_OK ){ int i; /* Used to loop through terms */ int iMinPos = 0x7FFFFFFF; /* Position of next token */ TermOffset *pTerm = 0; /* TermOffset associated with next token */ for(i=0; ipList && (pT->iPos-pT->iOff)iPos-pT->iOff; pTerm = pT; } } if( !pTerm ){ /* All offsets for this column have been gathered. */ rc = SQLITE_DONE; }else{ assert_fts3_nc( iCurrent<=iMinPos ); if( 0==(0xFE&*pTerm->pList) ){ pTerm->pList = 0; }else{ fts3GetDeltaPosition(&pTerm->pList, &pTerm->iPos); } while( rc==SQLITE_OK && iCurrentxNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent); } if( rc==SQLITE_OK ){ char aBuffer[64]; sqlite3_snprintf(sizeof(aBuffer), aBuffer, "%d %d %d %d ", iCol, pTerm-sCtx.aTerm, iStart, iEnd-iStart ); rc = fts3StringAppend(&res, aBuffer, -1); }else if( rc==SQLITE_DONE && pTab->zContentTbl==0 ){ rc = FTS_CORRUPT_VTAB; } } } if( rc==SQLITE_DONE ){ rc = SQLITE_OK; } pMod->xClose(pC); if( rc!=SQLITE_OK ) goto offsets_out; } offsets_out: sqlite3_free(sCtx.aTerm); assert( rc!=SQLITE_DONE ); sqlite3Fts3SegmentsClose(pTab); if( rc!=SQLITE_OK ){ sqlite3_result_error_code(pCtx, rc); sqlite3_free(res.z); }else{ sqlite3_result_text(pCtx, res.z, res.n-1, sqlite3_free); } return; } /* ** Implementation of matchinfo() function. */ SQLITE_PRIVATE void sqlite3Fts3Matchinfo( sqlite3_context *pContext, /* Function call context */ Fts3Cursor *pCsr, /* FTS3 table cursor */ const char *zArg /* Second arg to matchinfo() function */ ){ Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; const char *zFormat; if( zArg ){ zFormat = zArg; }else{ zFormat = FTS3_MATCHINFO_DEFAULT; } if( !pCsr->pExpr ){ sqlite3_result_blob(pContext, "", 0, SQLITE_STATIC); return; }else{ /* Retrieve matchinfo() data. */ fts3GetMatchinfo(pContext, pCsr, zFormat); sqlite3Fts3SegmentsClose(pTab); } } #endif /************** End of fts3_snippet.c ****************************************/ /************** Begin file fts3_unicode.c ************************************/ /* ** 2012 May 24 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** Implementation of the "unicode" full-text-search tokenizer. */ #ifndef SQLITE_DISABLE_FTS3_UNICODE /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) /* #include */ /* #include */ /* #include */ /* #include */ /* #include "fts3_tokenizer.h" */ /* ** The following two macros - READ_UTF8 and WRITE_UTF8 - have been copied ** from the sqlite3 source file utf.c. If this file is compiled as part ** of the amalgamation, they are not required. */ #ifndef SQLITE_AMALGAMATION static const unsigned char sqlite3Utf8Trans1[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, }; #define READ_UTF8(zIn, zTerm, c) \ c = *(zIn++); \ if( c>=0xc0 ){ \ c = sqlite3Utf8Trans1[c-0xc0]; \ while( zIn!=zTerm && (*zIn & 0xc0)==0x80 ){ \ c = (c<<6) + (0x3f & *(zIn++)); \ } \ if( c<0x80 \ || (c&0xFFFFF800)==0xD800 \ || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \ } #define WRITE_UTF8(zOut, c) { \ if( c<0x00080 ){ \ *zOut++ = (u8)(c&0xFF); \ } \ else if( c<0x00800 ){ \ *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ } \ else if( c<0x10000 ){ \ *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \ *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ }else{ \ *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \ *zOut++ = 0x80 + (u8)((c>>12) & 0x3F); \ *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \ *zOut++ = 0x80 + (u8)(c & 0x3F); \ } \ } #endif /* ifndef SQLITE_AMALGAMATION */ typedef struct unicode_tokenizer unicode_tokenizer; typedef struct unicode_cursor unicode_cursor; struct unicode_tokenizer { sqlite3_tokenizer base; int eRemoveDiacritic; int nException; int *aiException; }; struct unicode_cursor { sqlite3_tokenizer_cursor base; const unsigned char *aInput; /* Input text being tokenized */ int nInput; /* Size of aInput[] in bytes */ int iOff; /* Current offset within aInput[] */ int iToken; /* Index of next token to be returned */ char *zToken; /* storage for current token */ int nAlloc; /* space allocated at zToken */ }; /* ** Destroy a tokenizer allocated by unicodeCreate(). */ static int unicodeDestroy(sqlite3_tokenizer *pTokenizer){ if( pTokenizer ){ unicode_tokenizer *p = (unicode_tokenizer *)pTokenizer; sqlite3_free(p->aiException); sqlite3_free(p); } return SQLITE_OK; } /* ** As part of a tokenchars= or separators= option, the CREATE VIRTUAL TABLE ** statement has specified that the tokenizer for this table shall consider ** all characters in string zIn/nIn to be separators (if bAlnum==0) or ** token characters (if bAlnum==1). ** ** For each codepoint in the zIn/nIn string, this function checks if the ** sqlite3FtsUnicodeIsalnum() function already returns the desired result. ** If so, no action is taken. Otherwise, the codepoint is added to the ** unicode_tokenizer.aiException[] array. For the purposes of tokenization, ** the return value of sqlite3FtsUnicodeIsalnum() is inverted for all ** codepoints in the aiException[] array. ** ** If a standalone diacritic mark (one that sqlite3FtsUnicodeIsdiacritic() ** identifies as a diacritic) occurs in the zIn/nIn string it is ignored. ** It is not possible to change the behavior of the tokenizer with respect ** to these codepoints. */ static int unicodeAddExceptions( unicode_tokenizer *p, /* Tokenizer to add exceptions to */ int bAlnum, /* Replace Isalnum() return value with this */ const char *zIn, /* Array of characters to make exceptions */ int nIn /* Length of z in bytes */ ){ const unsigned char *z = (const unsigned char *)zIn; const unsigned char *zTerm = &z[nIn]; unsigned int iCode; int nEntry = 0; assert( bAlnum==0 || bAlnum==1 ); while( zaiException,(p->nException+nEntry)*sizeof(int)); if( aNew==0 ) return SQLITE_NOMEM; nNew = p->nException; z = (const unsigned char *)zIn; while( zi; j--) aNew[j] = aNew[j-1]; aNew[i] = (int)iCode; nNew++; } } p->aiException = aNew; p->nException = nNew; } return SQLITE_OK; } /* ** Return true if the p->aiException[] array contains the value iCode. */ static int unicodeIsException(unicode_tokenizer *p, int iCode){ if( p->nException>0 ){ int *a = p->aiException; int iLo = 0; int iHi = p->nException-1; while( iHi>=iLo ){ int iTest = (iHi + iLo) / 2; if( iCode==a[iTest] ){ return 1; }else if( iCode>a[iTest] ){ iLo = iTest+1; }else{ iHi = iTest-1; } } } return 0; } /* ** Return true if, for the purposes of tokenization, codepoint iCode is ** considered a token character (not a separator). */ static int unicodeIsAlnum(unicode_tokenizer *p, int iCode){ assert( (sqlite3FtsUnicodeIsalnum(iCode) & 0xFFFFFFFE)==0 ); return sqlite3FtsUnicodeIsalnum(iCode) ^ unicodeIsException(p, iCode); } /* ** Create a new tokenizer instance. */ static int unicodeCreate( int nArg, /* Size of array argv[] */ const char * const *azArg, /* Tokenizer creation arguments */ sqlite3_tokenizer **pp /* OUT: New tokenizer handle */ ){ unicode_tokenizer *pNew; /* New tokenizer object */ int i; int rc = SQLITE_OK; pNew = (unicode_tokenizer *) sqlite3_malloc(sizeof(unicode_tokenizer)); if( pNew==NULL ) return SQLITE_NOMEM; memset(pNew, 0, sizeof(unicode_tokenizer)); pNew->eRemoveDiacritic = 1; for(i=0; rc==SQLITE_OK && ieRemoveDiacritic = 1; } else if( n==19 && memcmp("remove_diacritics=0", z, 19)==0 ){ pNew->eRemoveDiacritic = 0; } else if( n==19 && memcmp("remove_diacritics=2", z, 19)==0 ){ pNew->eRemoveDiacritic = 2; } else if( n>=11 && memcmp("tokenchars=", z, 11)==0 ){ rc = unicodeAddExceptions(pNew, 1, &z[11], n-11); } else if( n>=11 && memcmp("separators=", z, 11)==0 ){ rc = unicodeAddExceptions(pNew, 0, &z[11], n-11); } else{ /* Unrecognized argument */ rc = SQLITE_ERROR; } } if( rc!=SQLITE_OK ){ unicodeDestroy((sqlite3_tokenizer *)pNew); pNew = 0; } *pp = (sqlite3_tokenizer *)pNew; return rc; } /* ** Prepare to begin tokenizing a particular string. The input ** string to be tokenized is pInput[0..nBytes-1]. A cursor ** used to incrementally tokenize this string is returned in ** *ppCursor. */ static int unicodeOpen( sqlite3_tokenizer *p, /* The tokenizer */ const char *aInput, /* Input string */ int nInput, /* Size of string aInput in bytes */ sqlite3_tokenizer_cursor **pp /* OUT: New cursor object */ ){ unicode_cursor *pCsr; pCsr = (unicode_cursor *)sqlite3_malloc(sizeof(unicode_cursor)); if( pCsr==0 ){ return SQLITE_NOMEM; } memset(pCsr, 0, sizeof(unicode_cursor)); pCsr->aInput = (const unsigned char *)aInput; if( aInput==0 ){ pCsr->nInput = 0; }else if( nInput<0 ){ pCsr->nInput = (int)strlen(aInput); }else{ pCsr->nInput = nInput; } *pp = &pCsr->base; UNUSED_PARAMETER(p); return SQLITE_OK; } /* ** Close a tokenization cursor previously opened by a call to ** simpleOpen() above. */ static int unicodeClose(sqlite3_tokenizer_cursor *pCursor){ unicode_cursor *pCsr = (unicode_cursor *) pCursor; sqlite3_free(pCsr->zToken); sqlite3_free(pCsr); return SQLITE_OK; } /* ** Extract the next token from a tokenization cursor. The cursor must ** have been opened by a prior call to simpleOpen(). */ static int unicodeNext( sqlite3_tokenizer_cursor *pC, /* Cursor returned by simpleOpen */ const char **paToken, /* OUT: Token text */ int *pnToken, /* OUT: Number of bytes at *paToken */ int *piStart, /* OUT: Starting offset of token */ int *piEnd, /* OUT: Ending offset of token */ int *piPos /* OUT: Position integer of token */ ){ unicode_cursor *pCsr = (unicode_cursor *)pC; unicode_tokenizer *p = ((unicode_tokenizer *)pCsr->base.pTokenizer); unsigned int iCode = 0; char *zOut; const unsigned char *z = &pCsr->aInput[pCsr->iOff]; const unsigned char *zStart = z; const unsigned char *zEnd; const unsigned char *zTerm = &pCsr->aInput[pCsr->nInput]; /* Scan past any delimiter characters before the start of the next token. ** Return SQLITE_DONE early if this takes us all the way to the end of ** the input. */ while( z=zTerm ) return SQLITE_DONE; zOut = pCsr->zToken; do { int iOut; /* Grow the output buffer if required. */ if( (zOut-pCsr->zToken)>=(pCsr->nAlloc-4) ){ char *zNew = sqlite3_realloc64(pCsr->zToken, pCsr->nAlloc+64); if( !zNew ) return SQLITE_NOMEM; zOut = &zNew[zOut - pCsr->zToken]; pCsr->zToken = zNew; pCsr->nAlloc += 64; } /* Write the folded case of the last character read to the output */ zEnd = z; iOut = sqlite3FtsUnicodeFold((int)iCode, p->eRemoveDiacritic); if( iOut ){ WRITE_UTF8(zOut, iOut); } /* If the cursor is not at EOF, read the next character */ if( z>=zTerm ) break; READ_UTF8(z, zTerm, iCode); }while( unicodeIsAlnum(p, (int)iCode) || sqlite3FtsUnicodeIsdiacritic((int)iCode) ); /* Set the output variables and return. */ pCsr->iOff = (int)(z - pCsr->aInput); *paToken = pCsr->zToken; *pnToken = (int)(zOut - pCsr->zToken); *piStart = (int)(zStart - pCsr->aInput); *piEnd = (int)(zEnd - pCsr->aInput); *piPos = pCsr->iToken++; return SQLITE_OK; } /* ** Set *ppModule to a pointer to the sqlite3_tokenizer_module ** structure for the unicode tokenizer. */ SQLITE_PRIVATE void sqlite3Fts3UnicodeTokenizer(sqlite3_tokenizer_module const **ppModule){ static const sqlite3_tokenizer_module module = { 0, unicodeCreate, unicodeDestroy, unicodeOpen, unicodeClose, unicodeNext, 0, }; *ppModule = &module; } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ #endif /* ifndef SQLITE_DISABLE_FTS3_UNICODE */ /************** End of fts3_unicode.c ****************************************/ /************** Begin file fts3_unicode2.c ***********************************/ /* ** 2012-05-25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** */ /* ** DO NOT EDIT THIS MACHINE GENERATED FILE. */ #ifndef SQLITE_DISABLE_FTS3_UNICODE #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) /* #include */ /* ** Return true if the argument corresponds to a unicode codepoint ** classified as either a letter or a number. Otherwise false. ** ** The results are undefined if the value passed to this function ** is less than zero. */ SQLITE_PRIVATE int sqlite3FtsUnicodeIsalnum(int c){ /* Each unsigned integer in the following array corresponds to a contiguous ** range of unicode codepoints that are not either letters or numbers (i.e. ** codepoints for which this function should return 0). ** ** The most significant 22 bits in each 32-bit value contain the first ** codepoint in the range. The least significant 10 bits are used to store ** the size of the range (always at least 1). In other words, the value ** ((C<<22) + N) represents a range of N codepoints starting with codepoint ** C. It is not possible to represent a range larger than 1023 codepoints ** using this format. */ static const unsigned int aEntry[] = { 0x00000030, 0x0000E807, 0x00016C06, 0x0001EC2F, 0x0002AC07, 0x0002D001, 0x0002D803, 0x0002EC01, 0x0002FC01, 0x00035C01, 0x0003DC01, 0x000B0804, 0x000B480E, 0x000B9407, 0x000BB401, 0x000BBC81, 0x000DD401, 0x000DF801, 0x000E1002, 0x000E1C01, 0x000FD801, 0x00120808, 0x00156806, 0x00162402, 0x00163C01, 0x00164437, 0x0017CC02, 0x00180005, 0x00181816, 0x00187802, 0x00192C15, 0x0019A804, 0x0019C001, 0x001B5001, 0x001B580F, 0x001B9C07, 0x001BF402, 0x001C000E, 0x001C3C01, 0x001C4401, 0x001CC01B, 0x001E980B, 0x001FAC09, 0x001FD804, 0x00205804, 0x00206C09, 0x00209403, 0x0020A405, 0x0020C00F, 0x00216403, 0x00217801, 0x0023901B, 0x00240004, 0x0024E803, 0x0024F812, 0x00254407, 0x00258804, 0x0025C001, 0x00260403, 0x0026F001, 0x0026F807, 0x00271C02, 0x00272C03, 0x00275C01, 0x00278802, 0x0027C802, 0x0027E802, 0x00280403, 0x0028F001, 0x0028F805, 0x00291C02, 0x00292C03, 0x00294401, 0x0029C002, 0x0029D401, 0x002A0403, 0x002AF001, 0x002AF808, 0x002B1C03, 0x002B2C03, 0x002B8802, 0x002BC002, 0x002C0403, 0x002CF001, 0x002CF807, 0x002D1C02, 0x002D2C03, 0x002D5802, 0x002D8802, 0x002DC001, 0x002E0801, 0x002EF805, 0x002F1803, 0x002F2804, 0x002F5C01, 0x002FCC08, 0x00300403, 0x0030F807, 0x00311803, 0x00312804, 0x00315402, 0x00318802, 0x0031FC01, 0x00320802, 0x0032F001, 0x0032F807, 0x00331803, 0x00332804, 0x00335402, 0x00338802, 0x00340802, 0x0034F807, 0x00351803, 0x00352804, 0x00355C01, 0x00358802, 0x0035E401, 0x00360802, 0x00372801, 0x00373C06, 0x00375801, 0x00376008, 0x0037C803, 0x0038C401, 0x0038D007, 0x0038FC01, 0x00391C09, 0x00396802, 0x003AC401, 0x003AD006, 0x003AEC02, 0x003B2006, 0x003C041F, 0x003CD00C, 0x003DC417, 0x003E340B, 0x003E6424, 0x003EF80F, 0x003F380D, 0x0040AC14, 0x00412806, 0x00415804, 0x00417803, 0x00418803, 0x00419C07, 0x0041C404, 0x0042080C, 0x00423C01, 0x00426806, 0x0043EC01, 0x004D740C, 0x004E400A, 0x00500001, 0x0059B402, 0x005A0001, 0x005A6C02, 0x005BAC03, 0x005C4803, 0x005CC805, 0x005D4802, 0x005DC802, 0x005ED023, 0x005F6004, 0x005F7401, 0x0060000F, 0x0062A401, 0x0064800C, 0x0064C00C, 0x00650001, 0x00651002, 0x0066C011, 0x00672002, 0x00677822, 0x00685C05, 0x00687802, 0x0069540A, 0x0069801D, 0x0069FC01, 0x006A8007, 0x006AA006, 0x006C0005, 0x006CD011, 0x006D6823, 0x006E0003, 0x006E840D, 0x006F980E, 0x006FF004, 0x00709014, 0x0070EC05, 0x0071F802, 0x00730008, 0x00734019, 0x0073B401, 0x0073C803, 0x00770027, 0x0077F004, 0x007EF401, 0x007EFC03, 0x007F3403, 0x007F7403, 0x007FB403, 0x007FF402, 0x00800065, 0x0081A806, 0x0081E805, 0x00822805, 0x0082801A, 0x00834021, 0x00840002, 0x00840C04, 0x00842002, 0x00845001, 0x00845803, 0x00847806, 0x00849401, 0x00849C01, 0x0084A401, 0x0084B801, 0x0084E802, 0x00850005, 0x00852804, 0x00853C01, 0x00864264, 0x00900027, 0x0091000B, 0x0092704E, 0x00940200, 0x009C0475, 0x009E53B9, 0x00AD400A, 0x00B39406, 0x00B3BC03, 0x00B3E404, 0x00B3F802, 0x00B5C001, 0x00B5FC01, 0x00B7804F, 0x00B8C00C, 0x00BA001A, 0x00BA6C59, 0x00BC00D6, 0x00BFC00C, 0x00C00005, 0x00C02019, 0x00C0A807, 0x00C0D802, 0x00C0F403, 0x00C26404, 0x00C28001, 0x00C3EC01, 0x00C64002, 0x00C6580A, 0x00C70024, 0x00C8001F, 0x00C8A81E, 0x00C94001, 0x00C98020, 0x00CA2827, 0x00CB003F, 0x00CC0100, 0x01370040, 0x02924037, 0x0293F802, 0x02983403, 0x0299BC10, 0x029A7C01, 0x029BC008, 0x029C0017, 0x029C8002, 0x029E2402, 0x02A00801, 0x02A01801, 0x02A02C01, 0x02A08C09, 0x02A0D804, 0x02A1D004, 0x02A20002, 0x02A2D011, 0x02A33802, 0x02A38012, 0x02A3E003, 0x02A4980A, 0x02A51C0D, 0x02A57C01, 0x02A60004, 0x02A6CC1B, 0x02A77802, 0x02A8A40E, 0x02A90C01, 0x02A93002, 0x02A97004, 0x02A9DC03, 0x02A9EC01, 0x02AAC001, 0x02AAC803, 0x02AADC02, 0x02AAF802, 0x02AB0401, 0x02AB7802, 0x02ABAC07, 0x02ABD402, 0x02AF8C0B, 0x03600001, 0x036DFC02, 0x036FFC02, 0x037FFC01, 0x03EC7801, 0x03ECA401, 0x03EEC810, 0x03F4F802, 0x03F7F002, 0x03F8001A, 0x03F88007, 0x03F8C023, 0x03F95013, 0x03F9A004, 0x03FBFC01, 0x03FC040F, 0x03FC6807, 0x03FCEC06, 0x03FD6C0B, 0x03FF8007, 0x03FFA007, 0x03FFE405, 0x04040003, 0x0404DC09, 0x0405E411, 0x0406400C, 0x0407402E, 0x040E7C01, 0x040F4001, 0x04215C01, 0x04247C01, 0x0424FC01, 0x04280403, 0x04281402, 0x04283004, 0x0428E003, 0x0428FC01, 0x04294009, 0x0429FC01, 0x042CE407, 0x04400003, 0x0440E016, 0x04420003, 0x0442C012, 0x04440003, 0x04449C0E, 0x04450004, 0x04460003, 0x0446CC0E, 0x04471404, 0x045AAC0D, 0x0491C004, 0x05BD442E, 0x05BE3C04, 0x074000F6, 0x07440027, 0x0744A4B5, 0x07480046, 0x074C0057, 0x075B0401, 0x075B6C01, 0x075BEC01, 0x075C5401, 0x075CD401, 0x075D3C01, 0x075DBC01, 0x075E2401, 0x075EA401, 0x075F0C01, 0x07BBC002, 0x07C0002C, 0x07C0C064, 0x07C2800F, 0x07C2C40E, 0x07C3040F, 0x07C3440F, 0x07C4401F, 0x07C4C03C, 0x07C5C02B, 0x07C7981D, 0x07C8402B, 0x07C90009, 0x07C94002, 0x07CC0021, 0x07CCC006, 0x07CCDC46, 0x07CE0014, 0x07CE8025, 0x07CF1805, 0x07CF8011, 0x07D0003F, 0x07D10001, 0x07D108B6, 0x07D3E404, 0x07D4003E, 0x07D50004, 0x07D54018, 0x07D7EC46, 0x07D9140B, 0x07DA0046, 0x07DC0074, 0x38000401, 0x38008060, 0x380400F0, }; static const unsigned int aAscii[4] = { 0xFFFFFFFF, 0xFC00FFFF, 0xF8000001, 0xF8000001, }; if( (unsigned int)c<128 ){ return ( (aAscii[c >> 5] & ((unsigned int)1 << (c & 0x001F)))==0 ); }else if( (unsigned int)c<(1<<22) ){ unsigned int key = (((unsigned int)c)<<10) | 0x000003FF; int iRes = 0; int iHi = sizeof(aEntry)/sizeof(aEntry[0]) - 1; int iLo = 0; while( iHi>=iLo ){ int iTest = (iHi + iLo) / 2; if( key >= aEntry[iTest] ){ iRes = iTest; iLo = iTest+1; }else{ iHi = iTest-1; } } assert( aEntry[0]=aEntry[iRes] ); return (((unsigned int)c) >= ((aEntry[iRes]>>10) + (aEntry[iRes]&0x3FF))); } return 1; } /* ** If the argument is a codepoint corresponding to a lowercase letter ** in the ASCII range with a diacritic added, return the codepoint ** of the ASCII letter only. For example, if passed 235 - "LATIN ** SMALL LETTER E WITH DIAERESIS" - return 65 ("LATIN SMALL LETTER ** E"). The resuls of passing a codepoint that corresponds to an ** uppercase letter are undefined. */ static int remove_diacritic(int c, int bComplex){ unsigned short aDia[] = { 0, 1797, 1848, 1859, 1891, 1928, 1940, 1995, 2024, 2040, 2060, 2110, 2168, 2206, 2264, 2286, 2344, 2383, 2472, 2488, 2516, 2596, 2668, 2732, 2782, 2842, 2894, 2954, 2984, 3000, 3028, 3336, 3456, 3696, 3712, 3728, 3744, 3766, 3832, 3896, 3912, 3928, 3944, 3968, 4008, 4040, 4056, 4106, 4138, 4170, 4202, 4234, 4266, 4296, 4312, 4344, 4408, 4424, 4442, 4472, 4488, 4504, 6148, 6198, 6264, 6280, 6360, 6429, 6505, 6529, 61448, 61468, 61512, 61534, 61592, 61610, 61642, 61672, 61688, 61704, 61726, 61784, 61800, 61816, 61836, 61880, 61896, 61914, 61948, 61998, 62062, 62122, 62154, 62184, 62200, 62218, 62252, 62302, 62364, 62410, 62442, 62478, 62536, 62554, 62584, 62604, 62640, 62648, 62656, 62664, 62730, 62766, 62830, 62890, 62924, 62974, 63032, 63050, 63082, 63118, 63182, 63242, 63274, 63310, 63368, 63390, }; #define HIBIT ((unsigned char)0x80) unsigned char aChar[] = { '\0', 'a', 'c', 'e', 'i', 'n', 'o', 'u', 'y', 'y', 'a', 'c', 'd', 'e', 'e', 'g', 'h', 'i', 'j', 'k', 'l', 'n', 'o', 'r', 's', 't', 'u', 'u', 'w', 'y', 'z', 'o', 'u', 'a', 'i', 'o', 'u', 'u'|HIBIT, 'a'|HIBIT, 'g', 'k', 'o', 'o'|HIBIT, 'j', 'g', 'n', 'a'|HIBIT, 'a', 'e', 'i', 'o', 'r', 'u', 's', 't', 'h', 'a', 'e', 'o'|HIBIT, 'o', 'o'|HIBIT, 'y', '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0', 'a', 'b', 'c'|HIBIT, 'd', 'd', 'e'|HIBIT, 'e', 'e'|HIBIT, 'f', 'g', 'h', 'h', 'i', 'i'|HIBIT, 'k', 'l', 'l'|HIBIT, 'l', 'm', 'n', 'o'|HIBIT, 'p', 'r', 'r'|HIBIT, 'r', 's', 's'|HIBIT, 't', 'u', 'u'|HIBIT, 'v', 'w', 'w', 'x', 'y', 'z', 'h', 't', 'w', 'y', 'a', 'a'|HIBIT, 'a'|HIBIT, 'a'|HIBIT, 'e', 'e'|HIBIT, 'e'|HIBIT, 'i', 'o', 'o'|HIBIT, 'o'|HIBIT, 'o'|HIBIT, 'u', 'u'|HIBIT, 'u'|HIBIT, 'y', }; unsigned int key = (((unsigned int)c)<<3) | 0x00000007; int iRes = 0; int iHi = sizeof(aDia)/sizeof(aDia[0]) - 1; int iLo = 0; while( iHi>=iLo ){ int iTest = (iHi + iLo) / 2; if( key >= aDia[iTest] ){ iRes = iTest; iLo = iTest+1; }else{ iHi = iTest-1; } } assert( key>=aDia[iRes] ); if( bComplex==0 && (aChar[iRes] & 0x80) ) return c; return (c > (aDia[iRes]>>3) + (aDia[iRes]&0x07)) ? c : ((int)aChar[iRes] & 0x7F); } /* ** Return true if the argument interpreted as a unicode codepoint ** is a diacritical modifier character. */ SQLITE_PRIVATE int sqlite3FtsUnicodeIsdiacritic(int c){ unsigned int mask0 = 0x08029FDF; unsigned int mask1 = 0x000361F8; if( c<768 || c>817 ) return 0; return (c < 768+32) ? (mask0 & ((unsigned int)1 << (c-768))) : (mask1 & ((unsigned int)1 << (c-768-32))); } /* ** Interpret the argument as a unicode codepoint. If the codepoint ** is an upper case character that has a lower case equivalent, ** return the codepoint corresponding to the lower case version. ** Otherwise, return a copy of the argument. ** ** The results are undefined if the value passed to this function ** is less than zero. */ SQLITE_PRIVATE int sqlite3FtsUnicodeFold(int c, int eRemoveDiacritic){ /* Each entry in the following array defines a rule for folding a range ** of codepoints to lower case. The rule applies to a range of nRange ** codepoints starting at codepoint iCode. ** ** If the least significant bit in flags is clear, then the rule applies ** to all nRange codepoints (i.e. all nRange codepoints are upper case and ** need to be folded). Or, if it is set, then the rule only applies to ** every second codepoint in the range, starting with codepoint C. ** ** The 7 most significant bits in flags are an index into the aiOff[] ** array. If a specific codepoint C does require folding, then its lower ** case equivalent is ((C + aiOff[flags>>1]) & 0xFFFF). ** ** The contents of this array are generated by parsing the CaseFolding.txt ** file distributed as part of the "Unicode Character Database". See ** http://www.unicode.org for details. */ static const struct TableEntry { unsigned short iCode; unsigned char flags; unsigned char nRange; } aEntry[] = { {65, 14, 26}, {181, 64, 1}, {192, 14, 23}, {216, 14, 7}, {256, 1, 48}, {306, 1, 6}, {313, 1, 16}, {330, 1, 46}, {376, 116, 1}, {377, 1, 6}, {383, 104, 1}, {385, 50, 1}, {386, 1, 4}, {390, 44, 1}, {391, 0, 1}, {393, 42, 2}, {395, 0, 1}, {398, 32, 1}, {399, 38, 1}, {400, 40, 1}, {401, 0, 1}, {403, 42, 1}, {404, 46, 1}, {406, 52, 1}, {407, 48, 1}, {408, 0, 1}, {412, 52, 1}, {413, 54, 1}, {415, 56, 1}, {416, 1, 6}, {422, 60, 1}, {423, 0, 1}, {425, 60, 1}, {428, 0, 1}, {430, 60, 1}, {431, 0, 1}, {433, 58, 2}, {435, 1, 4}, {439, 62, 1}, {440, 0, 1}, {444, 0, 1}, {452, 2, 1}, {453, 0, 1}, {455, 2, 1}, {456, 0, 1}, {458, 2, 1}, {459, 1, 18}, {478, 1, 18}, {497, 2, 1}, {498, 1, 4}, {502, 122, 1}, {503, 134, 1}, {504, 1, 40}, {544, 110, 1}, {546, 1, 18}, {570, 70, 1}, {571, 0, 1}, {573, 108, 1}, {574, 68, 1}, {577, 0, 1}, {579, 106, 1}, {580, 28, 1}, {581, 30, 1}, {582, 1, 10}, {837, 36, 1}, {880, 1, 4}, {886, 0, 1}, {902, 18, 1}, {904, 16, 3}, {908, 26, 1}, {910, 24, 2}, {913, 14, 17}, {931, 14, 9}, {962, 0, 1}, {975, 4, 1}, {976, 140, 1}, {977, 142, 1}, {981, 146, 1}, {982, 144, 1}, {984, 1, 24}, {1008, 136, 1}, {1009, 138, 1}, {1012, 130, 1}, {1013, 128, 1}, {1015, 0, 1}, {1017, 152, 1}, {1018, 0, 1}, {1021, 110, 3}, {1024, 34, 16}, {1040, 14, 32}, {1120, 1, 34}, {1162, 1, 54}, {1216, 6, 1}, {1217, 1, 14}, {1232, 1, 88}, {1329, 22, 38}, {4256, 66, 38}, {4295, 66, 1}, {4301, 66, 1}, {7680, 1, 150}, {7835, 132, 1}, {7838, 96, 1}, {7840, 1, 96}, {7944, 150, 8}, {7960, 150, 6}, {7976, 150, 8}, {7992, 150, 8}, {8008, 150, 6}, {8025, 151, 8}, {8040, 150, 8}, {8072, 150, 8}, {8088, 150, 8}, {8104, 150, 8}, {8120, 150, 2}, {8122, 126, 2}, {8124, 148, 1}, {8126, 100, 1}, {8136, 124, 4}, {8140, 148, 1}, {8152, 150, 2}, {8154, 120, 2}, {8168, 150, 2}, {8170, 118, 2}, {8172, 152, 1}, {8184, 112, 2}, {8186, 114, 2}, {8188, 148, 1}, {8486, 98, 1}, {8490, 92, 1}, {8491, 94, 1}, {8498, 12, 1}, {8544, 8, 16}, {8579, 0, 1}, {9398, 10, 26}, {11264, 22, 47}, {11360, 0, 1}, {11362, 88, 1}, {11363, 102, 1}, {11364, 90, 1}, {11367, 1, 6}, {11373, 84, 1}, {11374, 86, 1}, {11375, 80, 1}, {11376, 82, 1}, {11378, 0, 1}, {11381, 0, 1}, {11390, 78, 2}, {11392, 1, 100}, {11499, 1, 4}, {11506, 0, 1}, {42560, 1, 46}, {42624, 1, 24}, {42786, 1, 14}, {42802, 1, 62}, {42873, 1, 4}, {42877, 76, 1}, {42878, 1, 10}, {42891, 0, 1}, {42893, 74, 1}, {42896, 1, 4}, {42912, 1, 10}, {42922, 72, 1}, {65313, 14, 26}, }; static const unsigned short aiOff[] = { 1, 2, 8, 15, 16, 26, 28, 32, 37, 38, 40, 48, 63, 64, 69, 71, 79, 80, 116, 202, 203, 205, 206, 207, 209, 210, 211, 213, 214, 217, 218, 219, 775, 7264, 10792, 10795, 23228, 23256, 30204, 54721, 54753, 54754, 54756, 54787, 54793, 54809, 57153, 57274, 57921, 58019, 58363, 61722, 65268, 65341, 65373, 65406, 65408, 65410, 65415, 65424, 65436, 65439, 65450, 65462, 65472, 65476, 65478, 65480, 65482, 65488, 65506, 65511, 65514, 65521, 65527, 65528, 65529, }; int ret = c; assert( sizeof(unsigned short)==2 && sizeof(unsigned char)==1 ); if( c<128 ){ if( c>='A' && c<='Z' ) ret = c + ('a' - 'A'); }else if( c<65536 ){ const struct TableEntry *p; int iHi = sizeof(aEntry)/sizeof(aEntry[0]) - 1; int iLo = 0; int iRes = -1; assert( c>aEntry[0].iCode ); while( iHi>=iLo ){ int iTest = (iHi + iLo) / 2; int cmp = (c - aEntry[iTest].iCode); if( cmp>=0 ){ iRes = iTest; iLo = iTest+1; }else{ iHi = iTest-1; } } assert( iRes>=0 && c>=aEntry[iRes].iCode ); p = &aEntry[iRes]; if( c<(p->iCode + p->nRange) && 0==(0x01 & p->flags & (p->iCode ^ c)) ){ ret = (c + (aiOff[p->flags>>1])) & 0x0000FFFF; assert( ret>0 ); } if( eRemoveDiacritic ){ ret = remove_diacritic(ret, eRemoveDiacritic==2); } } else if( c>=66560 && c<66600 ){ ret = c + 40; } return ret; } #endif /* defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) */ #endif /* !defined(SQLITE_DISABLE_FTS3_UNICODE) */ /************** End of fts3_unicode2.c ***************************************/ /************** Begin file json1.c *******************************************/ /* ** 2015-08-12 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This SQLite extension implements JSON functions. The interface is ** modeled after MySQL JSON functions: ** ** https://dev.mysql.com/doc/refman/5.7/en/json.html ** ** For the time being, all JSON is stored as pure text. (We might add ** a JSONB type in the future which stores a binary encoding of JSON in ** a BLOB, but there is no support for JSONB in the current implementation. ** This implementation parses JSON text at 250 MB/s, so it is hard to see ** how JSONB might improve on that.) */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_JSON1) #if !defined(SQLITEINT_H) /* #include "sqlite3ext.h" */ #endif SQLITE_EXTENSION_INIT1 /* #include */ /* #include */ /* #include */ /* #include */ /* Mark a function parameter as unused, to suppress nuisance compiler ** warnings. */ #ifndef UNUSED_PARAM # define UNUSED_PARAM(X) (void)(X) #endif #ifndef LARGEST_INT64 # define LARGEST_INT64 (0xffffffff|(((sqlite3_int64)0x7fffffff)<<32)) # define SMALLEST_INT64 (((sqlite3_int64)-1) - LARGEST_INT64) #endif #ifndef deliberate_fall_through # define deliberate_fall_through #endif /* ** Versions of isspace(), isalnum() and isdigit() to which it is safe ** to pass signed char values. */ #ifdef sqlite3Isdigit /* Use the SQLite core versions if this routine is part of the ** SQLite amalgamation */ # define safe_isdigit(x) sqlite3Isdigit(x) # define safe_isalnum(x) sqlite3Isalnum(x) # define safe_isxdigit(x) sqlite3Isxdigit(x) #else /* Use the standard library for separate compilation */ #include /* amalgamator: keep */ # define safe_isdigit(x) isdigit((unsigned char)(x)) # define safe_isalnum(x) isalnum((unsigned char)(x)) # define safe_isxdigit(x) isxdigit((unsigned char)(x)) #endif /* ** Growing our own isspace() routine this way is twice as fast as ** the library isspace() function, resulting in a 7% overall performance ** increase for the parser. (Ubuntu14.10 gcc 4.8.4 x64 with -Os). */ static const char jsonIsSpace[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }; #define safe_isspace(x) (jsonIsSpace[(unsigned char)x]) #ifndef SQLITE_AMALGAMATION /* Unsigned integer types. These are already defined in the sqliteInt.h, ** but the definitions need to be repeated for separate compilation. */ typedef sqlite3_uint64 u64; typedef unsigned int u32; typedef unsigned short int u16; typedef unsigned char u8; #endif /* Objects */ typedef struct JsonString JsonString; typedef struct JsonNode JsonNode; typedef struct JsonParse JsonParse; /* An instance of this object represents a JSON string ** under construction. Really, this is a generic string accumulator ** that can be and is used to create strings other than JSON. */ struct JsonString { sqlite3_context *pCtx; /* Function context - put error messages here */ char *zBuf; /* Append JSON content here */ u64 nAlloc; /* Bytes of storage available in zBuf[] */ u64 nUsed; /* Bytes of zBuf[] currently used */ u8 bStatic; /* True if zBuf is static space */ u8 bErr; /* True if an error has been encountered */ char zSpace[100]; /* Initial static space */ }; /* JSON type values */ #define JSON_NULL 0 #define JSON_TRUE 1 #define JSON_FALSE 2 #define JSON_INT 3 #define JSON_REAL 4 #define JSON_STRING 5 #define JSON_ARRAY 6 #define JSON_OBJECT 7 /* The "subtype" set for JSON values */ #define JSON_SUBTYPE 74 /* Ascii for "J" */ /* ** Names of the various JSON types: */ static const char * const jsonType[] = { "null", "true", "false", "integer", "real", "text", "array", "object" }; /* Bit values for the JsonNode.jnFlag field */ #define JNODE_RAW 0x01 /* Content is raw, not JSON encoded */ #define JNODE_ESCAPE 0x02 /* Content is text with \ escapes */ #define JNODE_REMOVE 0x04 /* Do not output */ #define JNODE_REPLACE 0x08 /* Replace with JsonNode.u.iReplace */ #define JNODE_PATCH 0x10 /* Patch with JsonNode.u.pPatch */ #define JNODE_APPEND 0x20 /* More ARRAY/OBJECT entries at u.iAppend */ #define JNODE_LABEL 0x40 /* Is a label of an object */ /* A single node of parsed JSON */ struct JsonNode { u8 eType; /* One of the JSON_ type values */ u8 jnFlags; /* JNODE flags */ u32 n; /* Bytes of content, or number of sub-nodes */ union { const char *zJContent; /* Content for INT, REAL, and STRING */ u32 iAppend; /* More terms for ARRAY and OBJECT */ u32 iKey; /* Key for ARRAY objects in json_tree() */ u32 iReplace; /* Replacement content for JNODE_REPLACE */ JsonNode *pPatch; /* Node chain of patch for JNODE_PATCH */ } u; }; /* A completely parsed JSON string */ struct JsonParse { u32 nNode; /* Number of slots of aNode[] used */ u32 nAlloc; /* Number of slots of aNode[] allocated */ JsonNode *aNode; /* Array of nodes containing the parse */ const char *zJson; /* Original JSON string */ u32 *aUp; /* Index of parent of each node */ u8 oom; /* Set to true if out of memory */ u8 nErr; /* Number of errors seen */ u16 iDepth; /* Nesting depth */ int nJson; /* Length of the zJson string in bytes */ u32 iHold; /* Replace cache line with the lowest iHold value */ }; /* ** Maximum nesting depth of JSON for this implementation. ** ** This limit is needed to avoid a stack overflow in the recursive ** descent parser. A depth of 2000 is far deeper than any sane JSON ** should go. */ #define JSON_MAX_DEPTH 2000 /************************************************************************** ** Utility routines for dealing with JsonString objects **************************************************************************/ /* Set the JsonString object to an empty string */ static void jsonZero(JsonString *p){ p->zBuf = p->zSpace; p->nAlloc = sizeof(p->zSpace); p->nUsed = 0; p->bStatic = 1; } /* Initialize the JsonString object */ static void jsonInit(JsonString *p, sqlite3_context *pCtx){ p->pCtx = pCtx; p->bErr = 0; jsonZero(p); } /* Free all allocated memory and reset the JsonString object back to its ** initial state. */ static void jsonReset(JsonString *p){ if( !p->bStatic ) sqlite3_free(p->zBuf); jsonZero(p); } /* Report an out-of-memory (OOM) condition */ static void jsonOom(JsonString *p){ p->bErr = 1; sqlite3_result_error_nomem(p->pCtx); jsonReset(p); } /* Enlarge pJson->zBuf so that it can hold at least N more bytes. ** Return zero on success. Return non-zero on an OOM error */ static int jsonGrow(JsonString *p, u32 N){ u64 nTotal = NnAlloc ? p->nAlloc*2 : p->nAlloc+N+10; char *zNew; if( p->bStatic ){ if( p->bErr ) return 1; zNew = sqlite3_malloc64(nTotal); if( zNew==0 ){ jsonOom(p); return SQLITE_NOMEM; } memcpy(zNew, p->zBuf, (size_t)p->nUsed); p->zBuf = zNew; p->bStatic = 0; }else{ zNew = sqlite3_realloc64(p->zBuf, nTotal); if( zNew==0 ){ jsonOom(p); return SQLITE_NOMEM; } p->zBuf = zNew; } p->nAlloc = nTotal; return SQLITE_OK; } /* Append N bytes from zIn onto the end of the JsonString string. */ static void jsonAppendRaw(JsonString *p, const char *zIn, u32 N){ if( N==0 ) return; if( (N+p->nUsed >= p->nAlloc) && jsonGrow(p,N)!=0 ) return; memcpy(p->zBuf+p->nUsed, zIn, N); p->nUsed += N; } /* Append formatted text (not to exceed N bytes) to the JsonString. */ static void jsonPrintf(int N, JsonString *p, const char *zFormat, ...){ va_list ap; if( (p->nUsed + N >= p->nAlloc) && jsonGrow(p, N) ) return; va_start(ap, zFormat); sqlite3_vsnprintf(N, p->zBuf+p->nUsed, zFormat, ap); va_end(ap); p->nUsed += (int)strlen(p->zBuf+p->nUsed); } /* Append a single character */ static void jsonAppendChar(JsonString *p, char c){ if( p->nUsed>=p->nAlloc && jsonGrow(p,1)!=0 ) return; p->zBuf[p->nUsed++] = c; } /* Append a comma separator to the output buffer, if the previous ** character is not '[' or '{'. */ static void jsonAppendSeparator(JsonString *p){ char c; if( p->nUsed==0 ) return; c = p->zBuf[p->nUsed-1]; if( c!='[' && c!='{' ) jsonAppendChar(p, ','); } /* Append the N-byte string in zIn to the end of the JsonString string ** under construction. Enclose the string in "..." and escape ** any double-quotes or backslash characters contained within the ** string. */ static void jsonAppendString(JsonString *p, const char *zIn, u32 N){ u32 i; if( (N+p->nUsed+2 >= p->nAlloc) && jsonGrow(p,N+2)!=0 ) return; p->zBuf[p->nUsed++] = '"'; for(i=0; inUsed+N+3-i > p->nAlloc) && jsonGrow(p,N+3-i)!=0 ) return; p->zBuf[p->nUsed++] = '\\'; }else if( c<=0x1f ){ static const char aSpecial[] = { 0, 0, 0, 0, 0, 0, 0, 0, 'b', 't', 'n', 0, 'f', 'r', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; assert( sizeof(aSpecial)==32 ); assert( aSpecial['\b']=='b' ); assert( aSpecial['\f']=='f' ); assert( aSpecial['\n']=='n' ); assert( aSpecial['\r']=='r' ); assert( aSpecial['\t']=='t' ); if( aSpecial[c] ){ c = aSpecial[c]; goto json_simple_escape; } if( (p->nUsed+N+7+i > p->nAlloc) && jsonGrow(p,N+7-i)!=0 ) return; p->zBuf[p->nUsed++] = '\\'; p->zBuf[p->nUsed++] = 'u'; p->zBuf[p->nUsed++] = '0'; p->zBuf[p->nUsed++] = '0'; p->zBuf[p->nUsed++] = '0' + (c>>4); c = "0123456789abcdef"[c&0xf]; } p->zBuf[p->nUsed++] = c; } p->zBuf[p->nUsed++] = '"'; assert( p->nUsednAlloc ); } /* ** Append a function parameter value to the JSON string under ** construction. */ static void jsonAppendValue( JsonString *p, /* Append to this JSON string */ sqlite3_value *pValue /* Value to append */ ){ switch( sqlite3_value_type(pValue) ){ case SQLITE_NULL: { jsonAppendRaw(p, "null", 4); break; } case SQLITE_INTEGER: case SQLITE_FLOAT: { const char *z = (const char*)sqlite3_value_text(pValue); u32 n = (u32)sqlite3_value_bytes(pValue); jsonAppendRaw(p, z, n); break; } case SQLITE_TEXT: { const char *z = (const char*)sqlite3_value_text(pValue); u32 n = (u32)sqlite3_value_bytes(pValue); if( sqlite3_value_subtype(pValue)==JSON_SUBTYPE ){ jsonAppendRaw(p, z, n); }else{ jsonAppendString(p, z, n); } break; } default: { if( p->bErr==0 ){ sqlite3_result_error(p->pCtx, "JSON cannot hold BLOB values", -1); p->bErr = 2; jsonReset(p); } break; } } } /* Make the JSON in p the result of the SQL function. */ static void jsonResult(JsonString *p){ if( p->bErr==0 ){ sqlite3_result_text64(p->pCtx, p->zBuf, p->nUsed, p->bStatic ? SQLITE_TRANSIENT : sqlite3_free, SQLITE_UTF8); jsonZero(p); } assert( p->bStatic ); } /************************************************************************** ** Utility routines for dealing with JsonNode and JsonParse objects **************************************************************************/ /* ** Return the number of consecutive JsonNode slots need to represent ** the parsed JSON at pNode. The minimum answer is 1. For ARRAY and ** OBJECT types, the number might be larger. ** ** Appended elements are not counted. The value returned is the number ** by which the JsonNode counter should increment in order to go to the ** next peer value. */ static u32 jsonNodeSize(JsonNode *pNode){ return pNode->eType>=JSON_ARRAY ? pNode->n+1 : 1; } /* ** Reclaim all memory allocated by a JsonParse object. But do not ** delete the JsonParse object itself. */ static void jsonParseReset(JsonParse *pParse){ sqlite3_free(pParse->aNode); pParse->aNode = 0; pParse->nNode = 0; pParse->nAlloc = 0; sqlite3_free(pParse->aUp); pParse->aUp = 0; } /* ** Free a JsonParse object that was obtained from sqlite3_malloc(). */ static void jsonParseFree(JsonParse *pParse){ jsonParseReset(pParse); sqlite3_free(pParse); } /* ** Convert the JsonNode pNode into a pure JSON string and ** append to pOut. Subsubstructure is also included. Return ** the number of JsonNode objects that are encoded. */ static void jsonRenderNode( JsonNode *pNode, /* The node to render */ JsonString *pOut, /* Write JSON here */ sqlite3_value **aReplace /* Replacement values */ ){ if( pNode->jnFlags & (JNODE_REPLACE|JNODE_PATCH) ){ if( pNode->jnFlags & JNODE_REPLACE ){ jsonAppendValue(pOut, aReplace[pNode->u.iReplace]); return; } pNode = pNode->u.pPatch; } switch( pNode->eType ){ default: { assert( pNode->eType==JSON_NULL ); jsonAppendRaw(pOut, "null", 4); break; } case JSON_TRUE: { jsonAppendRaw(pOut, "true", 4); break; } case JSON_FALSE: { jsonAppendRaw(pOut, "false", 5); break; } case JSON_STRING: { if( pNode->jnFlags & JNODE_RAW ){ jsonAppendString(pOut, pNode->u.zJContent, pNode->n); break; } /* no break */ deliberate_fall_through } case JSON_REAL: case JSON_INT: { jsonAppendRaw(pOut, pNode->u.zJContent, pNode->n); break; } case JSON_ARRAY: { u32 j = 1; jsonAppendChar(pOut, '['); for(;;){ while( j<=pNode->n ){ if( (pNode[j].jnFlags & JNODE_REMOVE)==0 ){ jsonAppendSeparator(pOut); jsonRenderNode(&pNode[j], pOut, aReplace); } j += jsonNodeSize(&pNode[j]); } if( (pNode->jnFlags & JNODE_APPEND)==0 ) break; pNode = &pNode[pNode->u.iAppend]; j = 1; } jsonAppendChar(pOut, ']'); break; } case JSON_OBJECT: { u32 j = 1; jsonAppendChar(pOut, '{'); for(;;){ while( j<=pNode->n ){ if( (pNode[j+1].jnFlags & JNODE_REMOVE)==0 ){ jsonAppendSeparator(pOut); jsonRenderNode(&pNode[j], pOut, aReplace); jsonAppendChar(pOut, ':'); jsonRenderNode(&pNode[j+1], pOut, aReplace); } j += 1 + jsonNodeSize(&pNode[j+1]); } if( (pNode->jnFlags & JNODE_APPEND)==0 ) break; pNode = &pNode[pNode->u.iAppend]; j = 1; } jsonAppendChar(pOut, '}'); break; } } } /* ** Return a JsonNode and all its descendents as a JSON string. */ static void jsonReturnJson( JsonNode *pNode, /* Node to return */ sqlite3_context *pCtx, /* Return value for this function */ sqlite3_value **aReplace /* Array of replacement values */ ){ JsonString s; jsonInit(&s, pCtx); jsonRenderNode(pNode, &s, aReplace); jsonResult(&s); sqlite3_result_subtype(pCtx, JSON_SUBTYPE); } /* ** Translate a single byte of Hex into an integer. ** This routine only works if h really is a valid hexadecimal ** character: 0..9a..fA..F */ static u8 jsonHexToInt(int h){ assert( (h>='0' && h<='9') || (h>='a' && h<='f') || (h>='A' && h<='F') ); #ifdef SQLITE_EBCDIC h += 9*(1&~(h>>4)); #else h += 9*(1&(h>>6)); #endif return (u8)(h & 0xf); } /* ** Convert a 4-byte hex string into an integer */ static u32 jsonHexToInt4(const char *z){ u32 v; assert( safe_isxdigit(z[0]) ); assert( safe_isxdigit(z[1]) ); assert( safe_isxdigit(z[2]) ); assert( safe_isxdigit(z[3]) ); v = (jsonHexToInt(z[0])<<12) + (jsonHexToInt(z[1])<<8) + (jsonHexToInt(z[2])<<4) + jsonHexToInt(z[3]); return v; } /* ** Make the JsonNode the return value of the function. */ static void jsonReturn( JsonNode *pNode, /* Node to return */ sqlite3_context *pCtx, /* Return value for this function */ sqlite3_value **aReplace /* Array of replacement values */ ){ switch( pNode->eType ){ default: { assert( pNode->eType==JSON_NULL ); sqlite3_result_null(pCtx); break; } case JSON_TRUE: { sqlite3_result_int(pCtx, 1); break; } case JSON_FALSE: { sqlite3_result_int(pCtx, 0); break; } case JSON_INT: { sqlite3_int64 i = 0; const char *z = pNode->u.zJContent; if( z[0]=='-' ){ z++; } while( z[0]>='0' && z[0]<='9' ){ unsigned v = *(z++) - '0'; if( i>=LARGEST_INT64/10 ){ if( i>LARGEST_INT64/10 ) goto int_as_real; if( z[0]>='0' && z[0]<='9' ) goto int_as_real; if( v==9 ) goto int_as_real; if( v==8 ){ if( pNode->u.zJContent[0]=='-' ){ sqlite3_result_int64(pCtx, SMALLEST_INT64); goto int_done; }else{ goto int_as_real; } } } i = i*10 + v; } if( pNode->u.zJContent[0]=='-' ){ i = -i; } sqlite3_result_int64(pCtx, i); int_done: break; int_as_real: i=0; /* no break */ deliberate_fall_through } case JSON_REAL: { double r; #ifdef SQLITE_AMALGAMATION const char *z = pNode->u.zJContent; sqlite3AtoF(z, &r, sqlite3Strlen30(z), SQLITE_UTF8); #else r = strtod(pNode->u.zJContent, 0); #endif sqlite3_result_double(pCtx, r); break; } case JSON_STRING: { #if 0 /* Never happens because JNODE_RAW is only set by json_set(), ** json_insert() and json_replace() and those routines do not ** call jsonReturn() */ if( pNode->jnFlags & JNODE_RAW ){ sqlite3_result_text(pCtx, pNode->u.zJContent, pNode->n, SQLITE_TRANSIENT); }else #endif assert( (pNode->jnFlags & JNODE_RAW)==0 ); if( (pNode->jnFlags & JNODE_ESCAPE)==0 ){ /* JSON formatted without any backslash-escapes */ sqlite3_result_text(pCtx, pNode->u.zJContent+1, pNode->n-2, SQLITE_TRANSIENT); }else{ /* Translate JSON formatted string into raw text */ u32 i; u32 n = pNode->n; const char *z = pNode->u.zJContent; char *zOut; u32 j; zOut = sqlite3_malloc( n+1 ); if( zOut==0 ){ sqlite3_result_error_nomem(pCtx); break; } for(i=1, j=0; i>6)); zOut[j++] = 0x80 | (v&0x3f); }else{ u32 vlo; if( (v&0xfc00)==0xd800 && i>18); zOut[j++] = 0x80 | ((v>>12)&0x3f); zOut[j++] = 0x80 | ((v>>6)&0x3f); zOut[j++] = 0x80 | (v&0x3f); }else{ zOut[j++] = 0xe0 | (v>>12); zOut[j++] = 0x80 | ((v>>6)&0x3f); zOut[j++] = 0x80 | (v&0x3f); } } }else{ if( c=='b' ){ c = '\b'; }else if( c=='f' ){ c = '\f'; }else if( c=='n' ){ c = '\n'; }else if( c=='r' ){ c = '\r'; }else if( c=='t' ){ c = '\t'; } zOut[j++] = c; } } } zOut[j] = 0; sqlite3_result_text(pCtx, zOut, j, sqlite3_free); } break; } case JSON_ARRAY: case JSON_OBJECT: { jsonReturnJson(pNode, pCtx, aReplace); break; } } } /* Forward reference */ static int jsonParseAddNode(JsonParse*,u32,u32,const char*); /* ** A macro to hint to the compiler that a function should not be ** inlined. */ #if defined(__GNUC__) # define JSON_NOINLINE __attribute__((noinline)) #elif defined(_MSC_VER) && _MSC_VER>=1310 # define JSON_NOINLINE __declspec(noinline) #else # define JSON_NOINLINE #endif static JSON_NOINLINE int jsonParseAddNodeExpand( JsonParse *pParse, /* Append the node to this object */ u32 eType, /* Node type */ u32 n, /* Content size or sub-node count */ const char *zContent /* Content */ ){ u32 nNew; JsonNode *pNew; assert( pParse->nNode>=pParse->nAlloc ); if( pParse->oom ) return -1; nNew = pParse->nAlloc*2 + 10; pNew = sqlite3_realloc64(pParse->aNode, sizeof(JsonNode)*nNew); if( pNew==0 ){ pParse->oom = 1; return -1; } pParse->nAlloc = nNew; pParse->aNode = pNew; assert( pParse->nNodenAlloc ); return jsonParseAddNode(pParse, eType, n, zContent); } /* ** Create a new JsonNode instance based on the arguments and append that ** instance to the JsonParse. Return the index in pParse->aNode[] of the ** new node, or -1 if a memory allocation fails. */ static int jsonParseAddNode( JsonParse *pParse, /* Append the node to this object */ u32 eType, /* Node type */ u32 n, /* Content size or sub-node count */ const char *zContent /* Content */ ){ JsonNode *p; if( pParse->nNode>=pParse->nAlloc ){ return jsonParseAddNodeExpand(pParse, eType, n, zContent); } p = &pParse->aNode[pParse->nNode]; p->eType = (u8)eType; p->jnFlags = 0; p->n = n; p->u.zJContent = zContent; return pParse->nNode++; } /* ** Return true if z[] begins with 4 (or more) hexadecimal digits */ static int jsonIs4Hex(const char *z){ int i; for(i=0; i<4; i++) if( !safe_isxdigit(z[i]) ) return 0; return 1; } /* ** Parse a single JSON value which begins at pParse->zJson[i]. Return the ** index of the first character past the end of the value parsed. ** ** Return negative for a syntax error. Special cases: return -2 if the ** first non-whitespace character is '}' and return -3 if the first ** non-whitespace character is ']'. */ static int jsonParseValue(JsonParse *pParse, u32 i){ char c; u32 j; int iThis; int x; JsonNode *pNode; const char *z = pParse->zJson; while( safe_isspace(z[i]) ){ i++; } if( (c = z[i])=='{' ){ /* Parse object */ iThis = jsonParseAddNode(pParse, JSON_OBJECT, 0, 0); if( iThis<0 ) return -1; for(j=i+1;;j++){ while( safe_isspace(z[j]) ){ j++; } if( ++pParse->iDepth > JSON_MAX_DEPTH ) return -1; x = jsonParseValue(pParse, j); if( x<0 ){ pParse->iDepth--; if( x==(-2) && pParse->nNode==(u32)iThis+1 ) return j+1; return -1; } if( pParse->oom ) return -1; pNode = &pParse->aNode[pParse->nNode-1]; if( pNode->eType!=JSON_STRING ) return -1; pNode->jnFlags |= JNODE_LABEL; j = x; while( safe_isspace(z[j]) ){ j++; } if( z[j]!=':' ) return -1; j++; x = jsonParseValue(pParse, j); pParse->iDepth--; if( x<0 ) return -1; j = x; while( safe_isspace(z[j]) ){ j++; } c = z[j]; if( c==',' ) continue; if( c!='}' ) return -1; break; } pParse->aNode[iThis].n = pParse->nNode - (u32)iThis - 1; return j+1; }else if( c=='[' ){ /* Parse array */ iThis = jsonParseAddNode(pParse, JSON_ARRAY, 0, 0); if( iThis<0 ) return -1; for(j=i+1;;j++){ while( safe_isspace(z[j]) ){ j++; } if( ++pParse->iDepth > JSON_MAX_DEPTH ) return -1; x = jsonParseValue(pParse, j); pParse->iDepth--; if( x<0 ){ if( x==(-3) && pParse->nNode==(u32)iThis+1 ) return j+1; return -1; } j = x; while( safe_isspace(z[j]) ){ j++; } c = z[j]; if( c==',' ) continue; if( c!=']' ) return -1; break; } pParse->aNode[iThis].n = pParse->nNode - (u32)iThis - 1; return j+1; }else if( c=='"' ){ /* Parse string */ u8 jnFlags = 0; j = i+1; for(;;){ c = z[j]; if( (c & ~0x1f)==0 ){ /* Control characters are not allowed in strings */ return -1; } if( c=='\\' ){ c = z[++j]; if( c=='"' || c=='\\' || c=='/' || c=='b' || c=='f' || c=='n' || c=='r' || c=='t' || (c=='u' && jsonIs4Hex(z+j+1)) ){ jnFlags = JNODE_ESCAPE; }else{ return -1; } }else if( c=='"' ){ break; } j++; } jsonParseAddNode(pParse, JSON_STRING, j+1-i, &z[i]); if( !pParse->oom ) pParse->aNode[pParse->nNode-1].jnFlags = jnFlags; return j+1; }else if( c=='n' && strncmp(z+i,"null",4)==0 && !safe_isalnum(z[i+4]) ){ jsonParseAddNode(pParse, JSON_NULL, 0, 0); return i+4; }else if( c=='t' && strncmp(z+i,"true",4)==0 && !safe_isalnum(z[i+4]) ){ jsonParseAddNode(pParse, JSON_TRUE, 0, 0); return i+4; }else if( c=='f' && strncmp(z+i,"false",5)==0 && !safe_isalnum(z[i+5]) ){ jsonParseAddNode(pParse, JSON_FALSE, 0, 0); return i+5; }else if( c=='-' || (c>='0' && c<='9') ){ /* Parse number */ u8 seenDP = 0; u8 seenE = 0; assert( '-' < '0' ); if( c<='0' ){ j = c=='-' ? i+1 : i; if( z[j]=='0' && z[j+1]>='0' && z[j+1]<='9' ) return -1; } j = i+1; for(;; j++){ c = z[j]; if( c>='0' && c<='9' ) continue; if( c=='.' ){ if( z[j-1]=='-' ) return -1; if( seenDP ) return -1; seenDP = 1; continue; } if( c=='e' || c=='E' ){ if( z[j-1]<'0' ) return -1; if( seenE ) return -1; seenDP = seenE = 1; c = z[j+1]; if( c=='+' || c=='-' ){ j++; c = z[j+1]; } if( c<'0' || c>'9' ) return -1; continue; } break; } if( z[j-1]<'0' ) return -1; jsonParseAddNode(pParse, seenDP ? JSON_REAL : JSON_INT, j - i, &z[i]); return j; }else if( c=='}' ){ return -2; /* End of {...} */ }else if( c==']' ){ return -3; /* End of [...] */ }else if( c==0 ){ return 0; /* End of file */ }else{ return -1; /* Syntax error */ } } /* ** Parse a complete JSON string. Return 0 on success or non-zero if there ** are any errors. If an error occurs, free all memory associated with ** pParse. ** ** pParse is uninitialized when this routine is called. */ static int jsonParse( JsonParse *pParse, /* Initialize and fill this JsonParse object */ sqlite3_context *pCtx, /* Report errors here */ const char *zJson /* Input JSON text to be parsed */ ){ int i; memset(pParse, 0, sizeof(*pParse)); if( zJson==0 ) return 1; pParse->zJson = zJson; i = jsonParseValue(pParse, 0); if( pParse->oom ) i = -1; if( i>0 ){ assert( pParse->iDepth==0 ); while( safe_isspace(zJson[i]) ) i++; if( zJson[i] ) i = -1; } if( i<=0 ){ if( pCtx!=0 ){ if( pParse->oom ){ sqlite3_result_error_nomem(pCtx); }else{ sqlite3_result_error(pCtx, "malformed JSON", -1); } } jsonParseReset(pParse); return 1; } return 0; } /* Mark node i of pParse as being a child of iParent. Call recursively ** to fill in all the descendants of node i. */ static void jsonParseFillInParentage(JsonParse *pParse, u32 i, u32 iParent){ JsonNode *pNode = &pParse->aNode[i]; u32 j; pParse->aUp[i] = iParent; switch( pNode->eType ){ case JSON_ARRAY: { for(j=1; j<=pNode->n; j += jsonNodeSize(pNode+j)){ jsonParseFillInParentage(pParse, i+j, i); } break; } case JSON_OBJECT: { for(j=1; j<=pNode->n; j += jsonNodeSize(pNode+j+1)+1){ pParse->aUp[i+j] = i; jsonParseFillInParentage(pParse, i+j+1, i); } break; } default: { break; } } } /* ** Compute the parentage of all nodes in a completed parse. */ static int jsonParseFindParents(JsonParse *pParse){ u32 *aUp; assert( pParse->aUp==0 ); aUp = pParse->aUp = sqlite3_malloc64( sizeof(u32)*pParse->nNode ); if( aUp==0 ){ pParse->oom = 1; return SQLITE_NOMEM; } jsonParseFillInParentage(pParse, 0, 0); return SQLITE_OK; } /* ** Magic number used for the JSON parse cache in sqlite3_get_auxdata() */ #define JSON_CACHE_ID (-429938) /* First cache entry */ #define JSON_CACHE_SZ 4 /* Max number of cache entries */ /* ** Obtain a complete parse of the JSON found in the first argument ** of the argv array. Use the sqlite3_get_auxdata() cache for this ** parse if it is available. If the cache is not available or if it ** is no longer valid, parse the JSON again and return the new parse, ** and also register the new parse so that it will be available for ** future sqlite3_get_auxdata() calls. */ static JsonParse *jsonParseCached( sqlite3_context *pCtx, sqlite3_value **argv, sqlite3_context *pErrCtx ){ const char *zJson = (const char*)sqlite3_value_text(argv[0]); int nJson = sqlite3_value_bytes(argv[0]); JsonParse *p; JsonParse *pMatch = 0; int iKey; int iMinKey = 0; u32 iMinHold = 0xffffffff; u32 iMaxHold = 0; if( zJson==0 ) return 0; for(iKey=0; iKeynJson==nJson && memcmp(p->zJson,zJson,nJson)==0 ){ p->nErr = 0; pMatch = p; }else if( p->iHoldiHold; iMinKey = iKey; } if( p->iHold>iMaxHold ){ iMaxHold = p->iHold; } } if( pMatch ){ pMatch->nErr = 0; pMatch->iHold = iMaxHold+1; return pMatch; } p = sqlite3_malloc64( sizeof(*p) + nJson + 1 ); if( p==0 ){ sqlite3_result_error_nomem(pCtx); return 0; } memset(p, 0, sizeof(*p)); p->zJson = (char*)&p[1]; memcpy((char*)p->zJson, zJson, nJson+1); if( jsonParse(p, pErrCtx, p->zJson) ){ sqlite3_free(p); return 0; } p->nJson = nJson; p->iHold = iMaxHold+1; sqlite3_set_auxdata(pCtx, JSON_CACHE_ID+iMinKey, p, (void(*)(void*))jsonParseFree); return (JsonParse*)sqlite3_get_auxdata(pCtx, JSON_CACHE_ID+iMinKey); } /* ** Compare the OBJECT label at pNode against zKey,nKey. Return true on ** a match. */ static int jsonLabelCompare(JsonNode *pNode, const char *zKey, u32 nKey){ if( pNode->jnFlags & JNODE_RAW ){ if( pNode->n!=nKey ) return 0; return strncmp(pNode->u.zJContent, zKey, nKey)==0; }else{ if( pNode->n!=nKey+2 ) return 0; return strncmp(pNode->u.zJContent+1, zKey, nKey)==0; } } /* forward declaration */ static JsonNode *jsonLookupAppend(JsonParse*,const char*,int*,const char**); /* ** Search along zPath to find the node specified. Return a pointer ** to that node, or NULL if zPath is malformed or if there is no such ** node. ** ** If pApnd!=0, then try to append new nodes to complete zPath if it is ** possible to do so and if no existing node corresponds to zPath. If ** new nodes are appended *pApnd is set to 1. */ static JsonNode *jsonLookupStep( JsonParse *pParse, /* The JSON to search */ u32 iRoot, /* Begin the search at this node */ const char *zPath, /* The path to search */ int *pApnd, /* Append nodes to complete path if not NULL */ const char **pzErr /* Make *pzErr point to any syntax error in zPath */ ){ u32 i, j, nKey; const char *zKey; JsonNode *pRoot = &pParse->aNode[iRoot]; if( zPath[0]==0 ) return pRoot; if( pRoot->jnFlags & JNODE_REPLACE ) return 0; if( zPath[0]=='.' ){ if( pRoot->eType!=JSON_OBJECT ) return 0; zPath++; if( zPath[0]=='"' ){ zKey = zPath + 1; for(i=1; zPath[i] && zPath[i]!='"'; i++){} nKey = i-1; if( zPath[i] ){ i++; }else{ *pzErr = zPath; return 0; } }else{ zKey = zPath; for(i=0; zPath[i] && zPath[i]!='.' && zPath[i]!='['; i++){} nKey = i; } if( nKey==0 ){ *pzErr = zPath; return 0; } j = 1; for(;;){ while( j<=pRoot->n ){ if( jsonLabelCompare(pRoot+j, zKey, nKey) ){ return jsonLookupStep(pParse, iRoot+j+1, &zPath[i], pApnd, pzErr); } j++; j += jsonNodeSize(&pRoot[j]); } if( (pRoot->jnFlags & JNODE_APPEND)==0 ) break; iRoot += pRoot->u.iAppend; pRoot = &pParse->aNode[iRoot]; j = 1; } if( pApnd ){ u32 iStart, iLabel; JsonNode *pNode; iStart = jsonParseAddNode(pParse, JSON_OBJECT, 2, 0); iLabel = jsonParseAddNode(pParse, JSON_STRING, nKey, zKey); zPath += i; pNode = jsonLookupAppend(pParse, zPath, pApnd, pzErr); if( pParse->oom ) return 0; if( pNode ){ pRoot = &pParse->aNode[iRoot]; pRoot->u.iAppend = iStart - iRoot; pRoot->jnFlags |= JNODE_APPEND; pParse->aNode[iLabel].jnFlags |= JNODE_RAW; } return pNode; } }else if( zPath[0]=='[' ){ i = 0; j = 1; while( safe_isdigit(zPath[j]) ){ i = i*10 + zPath[j] - '0'; j++; } if( j<2 || zPath[j]!=']' ){ if( zPath[1]=='#' ){ JsonNode *pBase = pRoot; int iBase = iRoot; if( pRoot->eType!=JSON_ARRAY ) return 0; for(;;){ while( j<=pBase->n ){ if( (pBase[j].jnFlags & JNODE_REMOVE)==0 ) i++; j += jsonNodeSize(&pBase[j]); } if( (pBase->jnFlags & JNODE_APPEND)==0 ) break; iBase += pBase->u.iAppend; pBase = &pParse->aNode[iBase]; j = 1; } j = 2; if( zPath[2]=='-' && safe_isdigit(zPath[3]) ){ unsigned int x = 0; j = 3; do{ x = x*10 + zPath[j] - '0'; j++; }while( safe_isdigit(zPath[j]) ); if( x>i ) return 0; i -= x; } if( zPath[j]!=']' ){ *pzErr = zPath; return 0; } }else{ *pzErr = zPath; return 0; } } if( pRoot->eType!=JSON_ARRAY ) return 0; zPath += j + 1; j = 1; for(;;){ while( j<=pRoot->n && (i>0 || (pRoot[j].jnFlags & JNODE_REMOVE)!=0) ){ if( (pRoot[j].jnFlags & JNODE_REMOVE)==0 ) i--; j += jsonNodeSize(&pRoot[j]); } if( (pRoot->jnFlags & JNODE_APPEND)==0 ) break; iRoot += pRoot->u.iAppend; pRoot = &pParse->aNode[iRoot]; j = 1; } if( j<=pRoot->n ){ return jsonLookupStep(pParse, iRoot+j, zPath, pApnd, pzErr); } if( i==0 && pApnd ){ u32 iStart; JsonNode *pNode; iStart = jsonParseAddNode(pParse, JSON_ARRAY, 1, 0); pNode = jsonLookupAppend(pParse, zPath, pApnd, pzErr); if( pParse->oom ) return 0; if( pNode ){ pRoot = &pParse->aNode[iRoot]; pRoot->u.iAppend = iStart - iRoot; pRoot->jnFlags |= JNODE_APPEND; } return pNode; } }else{ *pzErr = zPath; } return 0; } /* ** Append content to pParse that will complete zPath. Return a pointer ** to the inserted node, or return NULL if the append fails. */ static JsonNode *jsonLookupAppend( JsonParse *pParse, /* Append content to the JSON parse */ const char *zPath, /* Description of content to append */ int *pApnd, /* Set this flag to 1 */ const char **pzErr /* Make this point to any syntax error */ ){ *pApnd = 1; if( zPath[0]==0 ){ jsonParseAddNode(pParse, JSON_NULL, 0, 0); return pParse->oom ? 0 : &pParse->aNode[pParse->nNode-1]; } if( zPath[0]=='.' ){ jsonParseAddNode(pParse, JSON_OBJECT, 0, 0); }else if( strncmp(zPath,"[0]",3)==0 ){ jsonParseAddNode(pParse, JSON_ARRAY, 0, 0); }else{ return 0; } if( pParse->oom ) return 0; return jsonLookupStep(pParse, pParse->nNode-1, zPath, pApnd, pzErr); } /* ** Return the text of a syntax error message on a JSON path. Space is ** obtained from sqlite3_malloc(). */ static char *jsonPathSyntaxError(const char *zErr){ return sqlite3_mprintf("JSON path error near '%q'", zErr); } /* ** Do a node lookup using zPath. Return a pointer to the node on success. ** Return NULL if not found or if there is an error. ** ** On an error, write an error message into pCtx and increment the ** pParse->nErr counter. ** ** If pApnd!=NULL then try to append missing nodes and set *pApnd = 1 if ** nodes are appended. */ static JsonNode *jsonLookup( JsonParse *pParse, /* The JSON to search */ const char *zPath, /* The path to search */ int *pApnd, /* Append nodes to complete path if not NULL */ sqlite3_context *pCtx /* Report errors here, if not NULL */ ){ const char *zErr = 0; JsonNode *pNode = 0; char *zMsg; if( zPath==0 ) return 0; if( zPath[0]!='$' ){ zErr = zPath; goto lookup_err; } zPath++; pNode = jsonLookupStep(pParse, 0, zPath, pApnd, &zErr); if( zErr==0 ) return pNode; lookup_err: pParse->nErr++; assert( zErr!=0 && pCtx!=0 ); zMsg = jsonPathSyntaxError(zErr); if( zMsg ){ sqlite3_result_error(pCtx, zMsg, -1); sqlite3_free(zMsg); }else{ sqlite3_result_error_nomem(pCtx); } return 0; } /* ** Report the wrong number of arguments for json_insert(), json_replace() ** or json_set(). */ static void jsonWrongNumArgs( sqlite3_context *pCtx, const char *zFuncName ){ char *zMsg = sqlite3_mprintf("json_%s() needs an odd number of arguments", zFuncName); sqlite3_result_error(pCtx, zMsg, -1); sqlite3_free(zMsg); } /* ** Mark all NULL entries in the Object passed in as JNODE_REMOVE. */ static void jsonRemoveAllNulls(JsonNode *pNode){ int i, n; assert( pNode->eType==JSON_OBJECT ); n = pNode->n; for(i=2; i<=n; i += jsonNodeSize(&pNode[i])+1){ switch( pNode[i].eType ){ case JSON_NULL: pNode[i].jnFlags |= JNODE_REMOVE; break; case JSON_OBJECT: jsonRemoveAllNulls(&pNode[i]); break; } } } /**************************************************************************** ** SQL functions used for testing and debugging ****************************************************************************/ #ifdef SQLITE_DEBUG /* ** The json_parse(JSON) function returns a string which describes ** a parse of the JSON provided. Or it returns NULL if JSON is not ** well-formed. */ static void jsonParseFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonString s; /* Output string - not real JSON */ JsonParse x; /* The parse */ u32 i; assert( argc==1 ); if( jsonParse(&x, ctx, (const char*)sqlite3_value_text(argv[0])) ) return; jsonParseFindParents(&x); jsonInit(&s, ctx); for(i=0; inNode ); if( argc==2 ){ const char *zPath = (const char*)sqlite3_value_text(argv[1]); pNode = jsonLookup(p, zPath, 0, ctx); }else{ pNode = p->aNode; } if( pNode==0 ){ return; } if( pNode->eType==JSON_ARRAY ){ assert( (pNode->jnFlags & JNODE_APPEND)==0 ); for(i=1; i<=pNode->n; n++){ i += jsonNodeSize(&pNode[i]); } } sqlite3_result_int64(ctx, n); } /* ** json_extract(JSON, PATH, ...) ** ** Return the element described by PATH. Return NULL if there is no ** PATH element. If there are multiple PATHs, then return a JSON array ** with the result from each path. Throw an error if the JSON or any PATH ** is malformed. */ static void jsonExtractFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse *p; /* The parse */ JsonNode *pNode; const char *zPath; JsonString jx; int i; if( argc<2 ) return; p = jsonParseCached(ctx, argv, ctx); if( p==0 ) return; jsonInit(&jx, ctx); jsonAppendChar(&jx, '['); for(i=1; inErr ) break; if( argc>2 ){ jsonAppendSeparator(&jx); if( pNode ){ jsonRenderNode(pNode, &jx, 0); }else{ jsonAppendRaw(&jx, "null", 4); } }else if( pNode ){ jsonReturn(pNode, ctx, 0); } } if( argc>2 && i==argc ){ jsonAppendChar(&jx, ']'); jsonResult(&jx); sqlite3_result_subtype(ctx, JSON_SUBTYPE); } jsonReset(&jx); } /* This is the RFC 7396 MergePatch algorithm. */ static JsonNode *jsonMergePatch( JsonParse *pParse, /* The JSON parser that contains the TARGET */ u32 iTarget, /* Node of the TARGET in pParse */ JsonNode *pPatch /* The PATCH */ ){ u32 i, j; u32 iRoot; JsonNode *pTarget; if( pPatch->eType!=JSON_OBJECT ){ return pPatch; } assert( iTarget>=0 && iTargetnNode ); pTarget = &pParse->aNode[iTarget]; assert( (pPatch->jnFlags & JNODE_APPEND)==0 ); if( pTarget->eType!=JSON_OBJECT ){ jsonRemoveAllNulls(pPatch); return pPatch; } iRoot = iTarget; for(i=1; in; i += jsonNodeSize(&pPatch[i+1])+1){ u32 nKey; const char *zKey; assert( pPatch[i].eType==JSON_STRING ); assert( pPatch[i].jnFlags & JNODE_LABEL ); nKey = pPatch[i].n; zKey = pPatch[i].u.zJContent; assert( (pPatch[i].jnFlags & JNODE_RAW)==0 ); for(j=1; jn; j += jsonNodeSize(&pTarget[j+1])+1 ){ assert( pTarget[j].eType==JSON_STRING ); assert( pTarget[j].jnFlags & JNODE_LABEL ); assert( (pPatch[i].jnFlags & JNODE_RAW)==0 ); if( pTarget[j].n==nKey && strncmp(pTarget[j].u.zJContent,zKey,nKey)==0 ){ if( pTarget[j+1].jnFlags & (JNODE_REMOVE|JNODE_PATCH) ) break; if( pPatch[i+1].eType==JSON_NULL ){ pTarget[j+1].jnFlags |= JNODE_REMOVE; }else{ JsonNode *pNew = jsonMergePatch(pParse, iTarget+j+1, &pPatch[i+1]); if( pNew==0 ) return 0; pTarget = &pParse->aNode[iTarget]; if( pNew!=&pTarget[j+1] ){ pTarget[j+1].u.pPatch = pNew; pTarget[j+1].jnFlags |= JNODE_PATCH; } } break; } } if( j>=pTarget->n && pPatch[i+1].eType!=JSON_NULL ){ int iStart, iPatch; iStart = jsonParseAddNode(pParse, JSON_OBJECT, 2, 0); jsonParseAddNode(pParse, JSON_STRING, nKey, zKey); iPatch = jsonParseAddNode(pParse, JSON_TRUE, 0, 0); if( pParse->oom ) return 0; jsonRemoveAllNulls(pPatch); pTarget = &pParse->aNode[iTarget]; pParse->aNode[iRoot].jnFlags |= JNODE_APPEND; pParse->aNode[iRoot].u.iAppend = iStart - iRoot; iRoot = iStart; pParse->aNode[iPatch].jnFlags |= JNODE_PATCH; pParse->aNode[iPatch].u.pPatch = &pPatch[i+1]; } } return pTarget; } /* ** Implementation of the json_mergepatch(JSON1,JSON2) function. Return a JSON ** object that is the result of running the RFC 7396 MergePatch() algorithm ** on the two arguments. */ static void jsonPatchFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse x; /* The JSON that is being patched */ JsonParse y; /* The patch */ JsonNode *pResult; /* The result of the merge */ UNUSED_PARAM(argc); if( jsonParse(&x, ctx, (const char*)sqlite3_value_text(argv[0])) ) return; if( jsonParse(&y, ctx, (const char*)sqlite3_value_text(argv[1])) ){ jsonParseReset(&x); return; } pResult = jsonMergePatch(&x, 0, y.aNode); assert( pResult!=0 || x.oom ); if( pResult ){ jsonReturnJson(pResult, ctx, 0); }else{ sqlite3_result_error_nomem(ctx); } jsonParseReset(&x); jsonParseReset(&y); } /* ** Implementation of the json_object(NAME,VALUE,...) function. Return a JSON ** object that contains all name/value given in arguments. Or if any name ** is not a string or if any value is a BLOB, throw an error. */ static void jsonObjectFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ int i; JsonString jx; const char *z; u32 n; if( argc&1 ){ sqlite3_result_error(ctx, "json_object() requires an even number " "of arguments", -1); return; } jsonInit(&jx, ctx); jsonAppendChar(&jx, '{'); for(i=0; ijnFlags |= JNODE_REMOVE; } if( (x.aNode[0].jnFlags & JNODE_REMOVE)==0 ){ jsonReturnJson(x.aNode, ctx, 0); } remove_done: jsonParseReset(&x); } /* ** json_replace(JSON, PATH, VALUE, ...) ** ** Replace the value at PATH with VALUE. If PATH does not already exist, ** this routine is a no-op. If JSON or PATH is malformed, throw an error. */ static void jsonReplaceFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse x; /* The parse */ JsonNode *pNode; const char *zPath; u32 i; if( argc<1 ) return; if( (argc&1)==0 ) { jsonWrongNumArgs(ctx, "replace"); return; } if( jsonParse(&x, ctx, (const char*)sqlite3_value_text(argv[0])) ) return; assert( x.nNode ); for(i=1; i<(u32)argc; i+=2){ zPath = (const char*)sqlite3_value_text(argv[i]); pNode = jsonLookup(&x, zPath, 0, ctx); if( x.nErr ) goto replace_err; if( pNode ){ pNode->jnFlags |= (u8)JNODE_REPLACE; pNode->u.iReplace = i + 1; } } if( x.aNode[0].jnFlags & JNODE_REPLACE ){ sqlite3_result_value(ctx, argv[x.aNode[0].u.iReplace]); }else{ jsonReturnJson(x.aNode, ctx, argv); } replace_err: jsonParseReset(&x); } /* ** json_set(JSON, PATH, VALUE, ...) ** ** Set the value at PATH to VALUE. Create the PATH if it does not already ** exist. Overwrite existing values that do exist. ** If JSON or PATH is malformed, throw an error. ** ** json_insert(JSON, PATH, VALUE, ...) ** ** Create PATH and initialize it to VALUE. If PATH already exists, this ** routine is a no-op. If JSON or PATH is malformed, throw an error. */ static void jsonSetFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse x; /* The parse */ JsonNode *pNode; const char *zPath; u32 i; int bApnd; int bIsSet = *(int*)sqlite3_user_data(ctx); if( argc<1 ) return; if( (argc&1)==0 ) { jsonWrongNumArgs(ctx, bIsSet ? "set" : "insert"); return; } if( jsonParse(&x, ctx, (const char*)sqlite3_value_text(argv[0])) ) return; assert( x.nNode ); for(i=1; i<(u32)argc; i+=2){ zPath = (const char*)sqlite3_value_text(argv[i]); bApnd = 0; pNode = jsonLookup(&x, zPath, &bApnd, ctx); if( x.oom ){ sqlite3_result_error_nomem(ctx); goto jsonSetDone; }else if( x.nErr ){ goto jsonSetDone; }else if( pNode && (bApnd || bIsSet) ){ pNode->jnFlags |= (u8)JNODE_REPLACE; pNode->u.iReplace = i + 1; } } if( x.aNode[0].jnFlags & JNODE_REPLACE ){ sqlite3_result_value(ctx, argv[x.aNode[0].u.iReplace]); }else{ jsonReturnJson(x.aNode, ctx, argv); } jsonSetDone: jsonParseReset(&x); } /* ** json_type(JSON) ** json_type(JSON, PATH) ** ** Return the top-level "type" of a JSON string. Throw an error if ** either the JSON or PATH inputs are not well-formed. */ static void jsonTypeFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse *p; /* The parse */ const char *zPath; JsonNode *pNode; p = jsonParseCached(ctx, argv, ctx); if( p==0 ) return; if( argc==2 ){ zPath = (const char*)sqlite3_value_text(argv[1]); pNode = jsonLookup(p, zPath, 0, ctx); }else{ pNode = p->aNode; } if( pNode ){ sqlite3_result_text(ctx, jsonType[pNode->eType], -1, SQLITE_STATIC); } } /* ** json_valid(JSON) ** ** Return 1 if JSON is a well-formed JSON string according to RFC-7159. ** Return 0 otherwise. */ static void jsonValidFunc( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonParse *p; /* The parse */ UNUSED_PARAM(argc); p = jsonParseCached(ctx, argv, 0); sqlite3_result_int(ctx, p!=0); } /**************************************************************************** ** Aggregate SQL function implementations ****************************************************************************/ /* ** json_group_array(VALUE) ** ** Return a JSON array composed of all values in the aggregate. */ static void jsonArrayStep( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonString *pStr; UNUSED_PARAM(argc); pStr = (JsonString*)sqlite3_aggregate_context(ctx, sizeof(*pStr)); if( pStr ){ if( pStr->zBuf==0 ){ jsonInit(pStr, ctx); jsonAppendChar(pStr, '['); }else if( pStr->nUsed>1 ){ jsonAppendChar(pStr, ','); pStr->pCtx = ctx; } jsonAppendValue(pStr, argv[0]); } } static void jsonArrayCompute(sqlite3_context *ctx, int isFinal){ JsonString *pStr; pStr = (JsonString*)sqlite3_aggregate_context(ctx, 0); if( pStr ){ pStr->pCtx = ctx; jsonAppendChar(pStr, ']'); if( pStr->bErr ){ if( pStr->bErr==1 ) sqlite3_result_error_nomem(ctx); assert( pStr->bStatic ); }else if( isFinal ){ sqlite3_result_text(ctx, pStr->zBuf, (int)pStr->nUsed, pStr->bStatic ? SQLITE_TRANSIENT : sqlite3_free); pStr->bStatic = 1; }else{ sqlite3_result_text(ctx, pStr->zBuf, (int)pStr->nUsed, SQLITE_TRANSIENT); pStr->nUsed--; } }else{ sqlite3_result_text(ctx, "[]", 2, SQLITE_STATIC); } sqlite3_result_subtype(ctx, JSON_SUBTYPE); } static void jsonArrayValue(sqlite3_context *ctx){ jsonArrayCompute(ctx, 0); } static void jsonArrayFinal(sqlite3_context *ctx){ jsonArrayCompute(ctx, 1); } #ifndef SQLITE_OMIT_WINDOWFUNC /* ** This method works for both json_group_array() and json_group_object(). ** It works by removing the first element of the group by searching forward ** to the first comma (",") that is not within a string and deleting all ** text through that comma. */ static void jsonGroupInverse( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ unsigned int i; int inStr = 0; int nNest = 0; char *z; char c; JsonString *pStr; UNUSED_PARAM(argc); UNUSED_PARAM(argv); pStr = (JsonString*)sqlite3_aggregate_context(ctx, 0); #ifdef NEVER /* pStr is always non-NULL since jsonArrayStep() or jsonObjectStep() will ** always have been called to initalize it */ if( NEVER(!pStr) ) return; #endif z = pStr->zBuf; for(i=1; (c = z[i])!=',' || inStr || nNest; i++){ if( i>=pStr->nUsed ){ pStr->nUsed = 1; return; } if( c=='"' ){ inStr = !inStr; }else if( c=='\\' ){ i++; }else if( !inStr ){ if( c=='{' || c=='[' ) nNest++; if( c=='}' || c==']' ) nNest--; } } pStr->nUsed -= i; memmove(&z[1], &z[i+1], (size_t)pStr->nUsed-1); } #else # define jsonGroupInverse 0 #endif /* ** json_group_obj(NAME,VALUE) ** ** Return a JSON object composed of all names and values in the aggregate. */ static void jsonObjectStep( sqlite3_context *ctx, int argc, sqlite3_value **argv ){ JsonString *pStr; const char *z; u32 n; UNUSED_PARAM(argc); pStr = (JsonString*)sqlite3_aggregate_context(ctx, sizeof(*pStr)); if( pStr ){ if( pStr->zBuf==0 ){ jsonInit(pStr, ctx); jsonAppendChar(pStr, '{'); }else if( pStr->nUsed>1 ){ jsonAppendChar(pStr, ','); pStr->pCtx = ctx; } z = (const char*)sqlite3_value_text(argv[0]); n = (u32)sqlite3_value_bytes(argv[0]); jsonAppendString(pStr, z, n); jsonAppendChar(pStr, ':'); jsonAppendValue(pStr, argv[1]); } } static void jsonObjectCompute(sqlite3_context *ctx, int isFinal){ JsonString *pStr; pStr = (JsonString*)sqlite3_aggregate_context(ctx, 0); if( pStr ){ jsonAppendChar(pStr, '}'); if( pStr->bErr ){ if( pStr->bErr==1 ) sqlite3_result_error_nomem(ctx); assert( pStr->bStatic ); }else if( isFinal ){ sqlite3_result_text(ctx, pStr->zBuf, (int)pStr->nUsed, pStr->bStatic ? SQLITE_TRANSIENT : sqlite3_free); pStr->bStatic = 1; }else{ sqlite3_result_text(ctx, pStr->zBuf, (int)pStr->nUsed, SQLITE_TRANSIENT); pStr->nUsed--; } }else{ sqlite3_result_text(ctx, "{}", 2, SQLITE_STATIC); } sqlite3_result_subtype(ctx, JSON_SUBTYPE); } static void jsonObjectValue(sqlite3_context *ctx){ jsonObjectCompute(ctx, 0); } static void jsonObjectFinal(sqlite3_context *ctx){ jsonObjectCompute(ctx, 1); } #ifndef SQLITE_OMIT_VIRTUALTABLE /**************************************************************************** ** The json_each virtual table ****************************************************************************/ typedef struct JsonEachCursor JsonEachCursor; struct JsonEachCursor { sqlite3_vtab_cursor base; /* Base class - must be first */ u32 iRowid; /* The rowid */ u32 iBegin; /* The first node of the scan */ u32 i; /* Index in sParse.aNode[] of current row */ u32 iEnd; /* EOF when i equals or exceeds this value */ u8 eType; /* Type of top-level element */ u8 bRecursive; /* True for json_tree(). False for json_each() */ char *zJson; /* Input JSON */ char *zRoot; /* Path by which to filter zJson */ JsonParse sParse; /* Parse of the input JSON */ }; /* Constructor for the json_each virtual table */ static int jsonEachConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ sqlite3_vtab *pNew; int rc; /* Column numbers */ #define JEACH_KEY 0 #define JEACH_VALUE 1 #define JEACH_TYPE 2 #define JEACH_ATOM 3 #define JEACH_ID 4 #define JEACH_PARENT 5 #define JEACH_FULLKEY 6 #define JEACH_PATH 7 /* The xBestIndex method assumes that the JSON and ROOT columns are ** the last two columns in the table. Should this ever changes, be ** sure to update the xBestIndex method. */ #define JEACH_JSON 8 #define JEACH_ROOT 9 UNUSED_PARAM(pzErr); UNUSED_PARAM(argv); UNUSED_PARAM(argc); UNUSED_PARAM(pAux); rc = sqlite3_declare_vtab(db, "CREATE TABLE x(key,value,type,atom,id,parent,fullkey,path," "json HIDDEN,root HIDDEN)"); if( rc==SQLITE_OK ){ pNew = *ppVtab = sqlite3_malloc( sizeof(*pNew) ); if( pNew==0 ) return SQLITE_NOMEM; memset(pNew, 0, sizeof(*pNew)); sqlite3_vtab_config(db, SQLITE_VTAB_INNOCUOUS); } return rc; } /* destructor for json_each virtual table */ static int jsonEachDisconnect(sqlite3_vtab *pVtab){ sqlite3_free(pVtab); return SQLITE_OK; } /* constructor for a JsonEachCursor object for json_each(). */ static int jsonEachOpenEach(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ JsonEachCursor *pCur; UNUSED_PARAM(p); pCur = sqlite3_malloc( sizeof(*pCur) ); if( pCur==0 ) return SQLITE_NOMEM; memset(pCur, 0, sizeof(*pCur)); *ppCursor = &pCur->base; return SQLITE_OK; } /* constructor for a JsonEachCursor object for json_tree(). */ static int jsonEachOpenTree(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){ int rc = jsonEachOpenEach(p, ppCursor); if( rc==SQLITE_OK ){ JsonEachCursor *pCur = (JsonEachCursor*)*ppCursor; pCur->bRecursive = 1; } return rc; } /* Reset a JsonEachCursor back to its original state. Free any memory ** held. */ static void jsonEachCursorReset(JsonEachCursor *p){ sqlite3_free(p->zJson); sqlite3_free(p->zRoot); jsonParseReset(&p->sParse); p->iRowid = 0; p->i = 0; p->iEnd = 0; p->eType = 0; p->zJson = 0; p->zRoot = 0; } /* Destructor for a jsonEachCursor object */ static int jsonEachClose(sqlite3_vtab_cursor *cur){ JsonEachCursor *p = (JsonEachCursor*)cur; jsonEachCursorReset(p); sqlite3_free(cur); return SQLITE_OK; } /* Return TRUE if the jsonEachCursor object has been advanced off the end ** of the JSON object */ static int jsonEachEof(sqlite3_vtab_cursor *cur){ JsonEachCursor *p = (JsonEachCursor*)cur; return p->i >= p->iEnd; } /* Advance the cursor to the next element for json_tree() */ static int jsonEachNext(sqlite3_vtab_cursor *cur){ JsonEachCursor *p = (JsonEachCursor*)cur; if( p->bRecursive ){ if( p->sParse.aNode[p->i].jnFlags & JNODE_LABEL ) p->i++; p->i++; p->iRowid++; if( p->iiEnd ){ u32 iUp = p->sParse.aUp[p->i]; JsonNode *pUp = &p->sParse.aNode[iUp]; p->eType = pUp->eType; if( pUp->eType==JSON_ARRAY ){ if( iUp==p->i-1 ){ pUp->u.iKey = 0; }else{ pUp->u.iKey++; } } } }else{ switch( p->eType ){ case JSON_ARRAY: { p->i += jsonNodeSize(&p->sParse.aNode[p->i]); p->iRowid++; break; } case JSON_OBJECT: { p->i += 1 + jsonNodeSize(&p->sParse.aNode[p->i+1]); p->iRowid++; break; } default: { p->i = p->iEnd; break; } } } return SQLITE_OK; } /* Append the name of the path for element i to pStr */ static void jsonEachComputePath( JsonEachCursor *p, /* The cursor */ JsonString *pStr, /* Write the path here */ u32 i /* Path to this element */ ){ JsonNode *pNode, *pUp; u32 iUp; if( i==0 ){ jsonAppendChar(pStr, '$'); return; } iUp = p->sParse.aUp[i]; jsonEachComputePath(p, pStr, iUp); pNode = &p->sParse.aNode[i]; pUp = &p->sParse.aNode[iUp]; if( pUp->eType==JSON_ARRAY ){ jsonPrintf(30, pStr, "[%d]", pUp->u.iKey); }else{ assert( pUp->eType==JSON_OBJECT ); if( (pNode->jnFlags & JNODE_LABEL)==0 ) pNode--; assert( pNode->eType==JSON_STRING ); assert( pNode->jnFlags & JNODE_LABEL ); jsonPrintf(pNode->n+1, pStr, ".%.*s", pNode->n-2, pNode->u.zJContent+1); } } /* Return the value of a column */ static int jsonEachColumn( sqlite3_vtab_cursor *cur, /* The cursor */ sqlite3_context *ctx, /* First argument to sqlite3_result_...() */ int i /* Which column to return */ ){ JsonEachCursor *p = (JsonEachCursor*)cur; JsonNode *pThis = &p->sParse.aNode[p->i]; switch( i ){ case JEACH_KEY: { if( p->i==0 ) break; if( p->eType==JSON_OBJECT ){ jsonReturn(pThis, ctx, 0); }else if( p->eType==JSON_ARRAY ){ u32 iKey; if( p->bRecursive ){ if( p->iRowid==0 ) break; iKey = p->sParse.aNode[p->sParse.aUp[p->i]].u.iKey; }else{ iKey = p->iRowid; } sqlite3_result_int64(ctx, (sqlite3_int64)iKey); } break; } case JEACH_VALUE: { if( pThis->jnFlags & JNODE_LABEL ) pThis++; jsonReturn(pThis, ctx, 0); break; } case JEACH_TYPE: { if( pThis->jnFlags & JNODE_LABEL ) pThis++; sqlite3_result_text(ctx, jsonType[pThis->eType], -1, SQLITE_STATIC); break; } case JEACH_ATOM: { if( pThis->jnFlags & JNODE_LABEL ) pThis++; if( pThis->eType>=JSON_ARRAY ) break; jsonReturn(pThis, ctx, 0); break; } case JEACH_ID: { sqlite3_result_int64(ctx, (sqlite3_int64)p->i + ((pThis->jnFlags & JNODE_LABEL)!=0)); break; } case JEACH_PARENT: { if( p->i>p->iBegin && p->bRecursive ){ sqlite3_result_int64(ctx, (sqlite3_int64)p->sParse.aUp[p->i]); } break; } case JEACH_FULLKEY: { JsonString x; jsonInit(&x, ctx); if( p->bRecursive ){ jsonEachComputePath(p, &x, p->i); }else{ if( p->zRoot ){ jsonAppendRaw(&x, p->zRoot, (int)strlen(p->zRoot)); }else{ jsonAppendChar(&x, '$'); } if( p->eType==JSON_ARRAY ){ jsonPrintf(30, &x, "[%d]", p->iRowid); }else if( p->eType==JSON_OBJECT ){ jsonPrintf(pThis->n, &x, ".%.*s", pThis->n-2, pThis->u.zJContent+1); } } jsonResult(&x); break; } case JEACH_PATH: { if( p->bRecursive ){ JsonString x; jsonInit(&x, ctx); jsonEachComputePath(p, &x, p->sParse.aUp[p->i]); jsonResult(&x); break; } /* For json_each() path and root are the same so fall through ** into the root case */ /* no break */ deliberate_fall_through } default: { const char *zRoot = p->zRoot; if( zRoot==0 ) zRoot = "$"; sqlite3_result_text(ctx, zRoot, -1, SQLITE_STATIC); break; } case JEACH_JSON: { assert( i==JEACH_JSON ); sqlite3_result_text(ctx, p->sParse.zJson, -1, SQLITE_STATIC); break; } } return SQLITE_OK; } /* Return the current rowid value */ static int jsonEachRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid){ JsonEachCursor *p = (JsonEachCursor*)cur; *pRowid = p->iRowid; return SQLITE_OK; } /* The query strategy is to look for an equality constraint on the json ** column. Without such a constraint, the table cannot operate. idxNum is ** 1 if the constraint is found, 3 if the constraint and zRoot are found, ** and 0 otherwise. */ static int jsonEachBestIndex( sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo ){ int i; /* Loop counter or computed array index */ int aIdx[2]; /* Index of constraints for JSON and ROOT */ int unusableMask = 0; /* Mask of unusable JSON and ROOT constraints */ int idxMask = 0; /* Mask of usable == constraints JSON and ROOT */ const struct sqlite3_index_constraint *pConstraint; /* This implementation assumes that JSON and ROOT are the last two ** columns in the table */ assert( JEACH_ROOT == JEACH_JSON+1 ); UNUSED_PARAM(tab); aIdx[0] = aIdx[1] = -1; pConstraint = pIdxInfo->aConstraint; for(i=0; inConstraint; i++, pConstraint++){ int iCol; int iMask; if( pConstraint->iColumn < JEACH_JSON ) continue; iCol = pConstraint->iColumn - JEACH_JSON; assert( iCol==0 || iCol==1 ); iMask = 1 << iCol; if( pConstraint->usable==0 ){ unusableMask |= iMask; }else if( pConstraint->op==SQLITE_INDEX_CONSTRAINT_EQ ){ aIdx[iCol] = i; idxMask |= iMask; } } if( (unusableMask & ~idxMask)!=0 ){ /* If there are any unusable constraints on JSON or ROOT, then reject ** this entire plan */ return SQLITE_CONSTRAINT; } if( aIdx[0]<0 ){ /* No JSON input. Leave estimatedCost at the huge value that it was ** initialized to to discourage the query planner from selecting this ** plan. */ pIdxInfo->idxNum = 0; }else{ pIdxInfo->estimatedCost = 1.0; i = aIdx[0]; pIdxInfo->aConstraintUsage[i].argvIndex = 1; pIdxInfo->aConstraintUsage[i].omit = 1; if( aIdx[1]<0 ){ pIdxInfo->idxNum = 1; /* Only JSON supplied. Plan 1 */ }else{ i = aIdx[1]; pIdxInfo->aConstraintUsage[i].argvIndex = 2; pIdxInfo->aConstraintUsage[i].omit = 1; pIdxInfo->idxNum = 3; /* Both JSON and ROOT are supplied. Plan 3 */ } } return SQLITE_OK; } /* Start a search on a new JSON string */ static int jsonEachFilter( sqlite3_vtab_cursor *cur, int idxNum, const char *idxStr, int argc, sqlite3_value **argv ){ JsonEachCursor *p = (JsonEachCursor*)cur; const char *z; const char *zRoot = 0; sqlite3_int64 n; UNUSED_PARAM(idxStr); UNUSED_PARAM(argc); jsonEachCursorReset(p); if( idxNum==0 ) return SQLITE_OK; z = (const char*)sqlite3_value_text(argv[0]); if( z==0 ) return SQLITE_OK; n = sqlite3_value_bytes(argv[0]); p->zJson = sqlite3_malloc64( n+1 ); if( p->zJson==0 ) return SQLITE_NOMEM; memcpy(p->zJson, z, (size_t)n+1); if( jsonParse(&p->sParse, 0, p->zJson) ){ int rc = SQLITE_NOMEM; if( p->sParse.oom==0 ){ sqlite3_free(cur->pVtab->zErrMsg); cur->pVtab->zErrMsg = sqlite3_mprintf("malformed JSON"); if( cur->pVtab->zErrMsg ) rc = SQLITE_ERROR; } jsonEachCursorReset(p); return rc; }else if( p->bRecursive && jsonParseFindParents(&p->sParse) ){ jsonEachCursorReset(p); return SQLITE_NOMEM; }else{ JsonNode *pNode = 0; if( idxNum==3 ){ const char *zErr = 0; zRoot = (const char*)sqlite3_value_text(argv[1]); if( zRoot==0 ) return SQLITE_OK; n = sqlite3_value_bytes(argv[1]); p->zRoot = sqlite3_malloc64( n+1 ); if( p->zRoot==0 ) return SQLITE_NOMEM; memcpy(p->zRoot, zRoot, (size_t)n+1); if( zRoot[0]!='$' ){ zErr = zRoot; }else{ pNode = jsonLookupStep(&p->sParse, 0, p->zRoot+1, 0, &zErr); } if( zErr ){ sqlite3_free(cur->pVtab->zErrMsg); cur->pVtab->zErrMsg = jsonPathSyntaxError(zErr); jsonEachCursorReset(p); return cur->pVtab->zErrMsg ? SQLITE_ERROR : SQLITE_NOMEM; }else if( pNode==0 ){ return SQLITE_OK; } }else{ pNode = p->sParse.aNode; } p->iBegin = p->i = (int)(pNode - p->sParse.aNode); p->eType = pNode->eType; if( p->eType>=JSON_ARRAY ){ pNode->u.iKey = 0; p->iEnd = p->i + pNode->n + 1; if( p->bRecursive ){ p->eType = p->sParse.aNode[p->sParse.aUp[p->i]].eType; if( p->i>0 && (p->sParse.aNode[p->i-1].jnFlags & JNODE_LABEL)!=0 ){ p->i--; } }else{ p->i++; } }else{ p->iEnd = p->i+1; } } return SQLITE_OK; } /* The methods of the json_each virtual table */ static sqlite3_module jsonEachModule = { 0, /* iVersion */ 0, /* xCreate */ jsonEachConnect, /* xConnect */ jsonEachBestIndex, /* xBestIndex */ jsonEachDisconnect, /* xDisconnect */ 0, /* xDestroy */ jsonEachOpenEach, /* xOpen - open a cursor */ jsonEachClose, /* xClose - close a cursor */ jsonEachFilter, /* xFilter - configure scan constraints */ jsonEachNext, /* xNext - advance a cursor */ jsonEachEof, /* xEof - check for end of scan */ jsonEachColumn, /* xColumn - read data */ jsonEachRowid, /* xRowid - read data */ 0, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindMethod */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0 /* xShadowName */ }; /* The methods of the json_tree virtual table. */ static sqlite3_module jsonTreeModule = { 0, /* iVersion */ 0, /* xCreate */ jsonEachConnect, /* xConnect */ jsonEachBestIndex, /* xBestIndex */ jsonEachDisconnect, /* xDisconnect */ 0, /* xDestroy */ jsonEachOpenTree, /* xOpen - open a cursor */ jsonEachClose, /* xClose - close a cursor */ jsonEachFilter, /* xFilter - configure scan constraints */ jsonEachNext, /* xNext - advance a cursor */ jsonEachEof, /* xEof - check for end of scan */ jsonEachColumn, /* xColumn - read data */ jsonEachRowid, /* xRowid - read data */ 0, /* xUpdate */ 0, /* xBegin */ 0, /* xSync */ 0, /* xCommit */ 0, /* xRollback */ 0, /* xFindMethod */ 0, /* xRename */ 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ 0 /* xShadowName */ }; #endif /* SQLITE_OMIT_VIRTUALTABLE */ /**************************************************************************** ** The following routines are the only publically visible identifiers in this ** file. Call the following routines in order to register the various SQL ** functions and the virtual table implemented by this file. ****************************************************************************/ SQLITE_PRIVATE int sqlite3Json1Init(sqlite3 *db){ int rc = SQLITE_OK; unsigned int i; static const struct { const char *zName; int nArg; int flag; void (*xFunc)(sqlite3_context*,int,sqlite3_value**); } aFunc[] = { { "json", 1, 0, jsonRemoveFunc }, { "json_array", -1, 0, jsonArrayFunc }, { "json_array_length", 1, 0, jsonArrayLengthFunc }, { "json_array_length", 2, 0, jsonArrayLengthFunc }, { "json_extract", -1, 0, jsonExtractFunc }, { "json_insert", -1, 0, jsonSetFunc }, { "json_object", -1, 0, jsonObjectFunc }, { "json_patch", 2, 0, jsonPatchFunc }, { "json_quote", 1, 0, jsonQuoteFunc }, { "json_remove", -1, 0, jsonRemoveFunc }, { "json_replace", -1, 0, jsonReplaceFunc }, { "json_set", -1, 1, jsonSetFunc }, { "json_type", 1, 0, jsonTypeFunc }, { "json_type", 2, 0, jsonTypeFunc }, { "json_valid", 1, 0, jsonValidFunc }, #if SQLITE_DEBUG /* DEBUG and TESTING functions */ { "json_parse", 1, 0, jsonParseFunc }, { "json_test1", 1, 0, jsonTest1Func }, #endif }; static const struct { const char *zName; int nArg; void (*xStep)(sqlite3_context*,int,sqlite3_value**); void (*xFinal)(sqlite3_context*); void (*xValue)(sqlite3_context*); } aAgg[] = { { "json_group_array", 1, jsonArrayStep, jsonArrayFinal, jsonArrayValue }, { "json_group_object", 2, jsonObjectStep, jsonObjectFinal, jsonObjectValue }, }; #ifndef SQLITE_OMIT_VIRTUALTABLE static const struct { const char *zName; sqlite3_module *pModule; } aMod[] = { { "json_each", &jsonEachModule }, { "json_tree", &jsonTreeModule }, }; #endif static const int enc = SQLITE_UTF8 | SQLITE_DETERMINISTIC | SQLITE_INNOCUOUS; for(i=0; i */ /* #include */ /* #include */ /* #include */ /* The following macro is used to suppress compiler warnings. */ #ifndef UNUSED_PARAMETER # define UNUSED_PARAMETER(x) (void)(x) #endif typedef struct Rtree Rtree; typedef struct RtreeCursor RtreeCursor; typedef struct RtreeNode RtreeNode; typedef struct RtreeCell RtreeCell; typedef struct RtreeConstraint RtreeConstraint; typedef struct RtreeMatchArg RtreeMatchArg; typedef struct RtreeGeomCallback RtreeGeomCallback; typedef union RtreeCoord RtreeCoord; typedef struct RtreeSearchPoint RtreeSearchPoint; /* The rtree may have between 1 and RTREE_MAX_DIMENSIONS dimensions. */ #define RTREE_MAX_DIMENSIONS 5 /* Maximum number of auxiliary columns */ #define RTREE_MAX_AUX_COLUMN 100 /* Size of hash table Rtree.aHash. This hash table is not expected to ** ever contain very many entries, so a fixed number of buckets is ** used. */ #define HASHSIZE 97 /* The xBestIndex method of this virtual table requires an estimate of ** the number of rows in the virtual table to calculate the costs of ** various strategies. If possible, this estimate is loaded from the ** sqlite_stat1 table (with RTREE_MIN_ROWEST as a hard-coded minimum). ** Otherwise, if no sqlite_stat1 entry is available, use ** RTREE_DEFAULT_ROWEST. */ #define RTREE_DEFAULT_ROWEST 1048576 #define RTREE_MIN_ROWEST 100 /* ** An rtree virtual-table object. */ struct Rtree { sqlite3_vtab base; /* Base class. Must be first */ sqlite3 *db; /* Host database connection */ int iNodeSize; /* Size in bytes of each node in the node table */ u8 nDim; /* Number of dimensions */ u8 nDim2; /* Twice the number of dimensions */ u8 eCoordType; /* RTREE_COORD_REAL32 or RTREE_COORD_INT32 */ u8 nBytesPerCell; /* Bytes consumed per cell */ u8 inWrTrans; /* True if inside write transaction */ u8 nAux; /* # of auxiliary columns in %_rowid */ u8 nAuxNotNull; /* Number of initial not-null aux columns */ #ifdef SQLITE_DEBUG u8 bCorrupt; /* Shadow table corruption detected */ #endif int iDepth; /* Current depth of the r-tree structure */ char *zDb; /* Name of database containing r-tree table */ char *zName; /* Name of r-tree table */ u32 nBusy; /* Current number of users of this structure */ i64 nRowEst; /* Estimated number of rows in this table */ u32 nCursor; /* Number of open cursors */ u32 nNodeRef; /* Number RtreeNodes with positive nRef */ char *zReadAuxSql; /* SQL for statement to read aux data */ /* List of nodes removed during a CondenseTree operation. List is ** linked together via the pointer normally used for hash chains - ** RtreeNode.pNext. RtreeNode.iNode stores the depth of the sub-tree ** headed by the node (leaf nodes have RtreeNode.iNode==0). */ RtreeNode *pDeleted; int iReinsertHeight; /* Height of sub-trees Reinsert() has run on */ /* Blob I/O on xxx_node */ sqlite3_blob *pNodeBlob; /* Statements to read/write/delete a record from xxx_node */ sqlite3_stmt *pWriteNode; sqlite3_stmt *pDeleteNode; /* Statements to read/write/delete a record from xxx_rowid */ sqlite3_stmt *pReadRowid; sqlite3_stmt *pWriteRowid; sqlite3_stmt *pDeleteRowid; /* Statements to read/write/delete a record from xxx_parent */ sqlite3_stmt *pReadParent; sqlite3_stmt *pWriteParent; sqlite3_stmt *pDeleteParent; /* Statement for writing to the "aux:" fields, if there are any */ sqlite3_stmt *pWriteAux; RtreeNode *aHash[HASHSIZE]; /* Hash table of in-memory nodes. */ }; /* Possible values for Rtree.eCoordType: */ #define RTREE_COORD_REAL32 0 #define RTREE_COORD_INT32 1 /* ** If SQLITE_RTREE_INT_ONLY is defined, then this virtual table will ** only deal with integer coordinates. No floating point operations ** will be done. */ #ifdef SQLITE_RTREE_INT_ONLY typedef sqlite3_int64 RtreeDValue; /* High accuracy coordinate */ typedef int RtreeValue; /* Low accuracy coordinate */ # define RTREE_ZERO 0 #else typedef double RtreeDValue; /* High accuracy coordinate */ typedef float RtreeValue; /* Low accuracy coordinate */ # define RTREE_ZERO 0.0 #endif /* ** Set the Rtree.bCorrupt flag */ #ifdef SQLITE_DEBUG # define RTREE_IS_CORRUPT(X) ((X)->bCorrupt = 1) #else # define RTREE_IS_CORRUPT(X) #endif /* ** When doing a search of an r-tree, instances of the following structure ** record intermediate results from the tree walk. ** ** The id is always a node-id. For iLevel>=1 the id is the node-id of ** the node that the RtreeSearchPoint represents. When iLevel==0, however, ** the id is of the parent node and the cell that RtreeSearchPoint ** represents is the iCell-th entry in the parent node. */ struct RtreeSearchPoint { RtreeDValue rScore; /* The score for this node. Smallest goes first. */ sqlite3_int64 id; /* Node ID */ u8 iLevel; /* 0=entries. 1=leaf node. 2+ for higher */ u8 eWithin; /* PARTLY_WITHIN or FULLY_WITHIN */ u8 iCell; /* Cell index within the node */ }; /* ** The minimum number of cells allowed for a node is a third of the ** maximum. In Gutman's notation: ** ** m = M/3 ** ** If an R*-tree "Reinsert" operation is required, the same number of ** cells are removed from the overfull node and reinserted into the tree. */ #define RTREE_MINCELLS(p) ((((p)->iNodeSize-4)/(p)->nBytesPerCell)/3) #define RTREE_REINSERT(p) RTREE_MINCELLS(p) #define RTREE_MAXCELLS 51 /* ** The smallest possible node-size is (512-64)==448 bytes. And the largest ** supported cell size is 48 bytes (8 byte rowid + ten 4 byte coordinates). ** Therefore all non-root nodes must contain at least 3 entries. Since ** 3^40 is greater than 2^64, an r-tree structure always has a depth of ** 40 or less. */ #define RTREE_MAX_DEPTH 40 /* ** Number of entries in the cursor RtreeNode cache. The first entry is ** used to cache the RtreeNode for RtreeCursor.sPoint. The remaining ** entries cache the RtreeNode for the first elements of the priority queue. */ #define RTREE_CACHE_SZ 5 /* ** An rtree cursor object. */ struct RtreeCursor { sqlite3_vtab_cursor base; /* Base class. Must be first */ u8 atEOF; /* True if at end of search */ u8 bPoint; /* True if sPoint is valid */ u8 bAuxValid; /* True if pReadAux is valid */ int iStrategy; /* Copy of idxNum search parameter */ int nConstraint; /* Number of entries in aConstraint */ RtreeConstraint *aConstraint; /* Search constraints. */ int nPointAlloc; /* Number of slots allocated for aPoint[] */ int nPoint; /* Number of slots used in aPoint[] */ int mxLevel; /* iLevel value for root of the tree */ RtreeSearchPoint *aPoint; /* Priority queue for search points */ sqlite3_stmt *pReadAux; /* Statement to read aux-data */ RtreeSearchPoint sPoint; /* Cached next search point */ RtreeNode *aNode[RTREE_CACHE_SZ]; /* Rtree node cache */ u32 anQueue[RTREE_MAX_DEPTH+1]; /* Number of queued entries by iLevel */ }; /* Return the Rtree of a RtreeCursor */ #define RTREE_OF_CURSOR(X) ((Rtree*)((X)->base.pVtab)) /* ** A coordinate can be either a floating point number or a integer. All ** coordinates within a single R-Tree are always of the same time. */ union RtreeCoord { RtreeValue f; /* Floating point value */ int i; /* Integer value */ u32 u; /* Unsigned for byte-order conversions */ }; /* ** The argument is an RtreeCoord. Return the value stored within the RtreeCoord ** formatted as a RtreeDValue (double or int64). This macro assumes that local ** variable pRtree points to the Rtree structure associated with the ** RtreeCoord. */ #ifdef SQLITE_RTREE_INT_ONLY # define DCOORD(coord) ((RtreeDValue)coord.i) #else # define DCOORD(coord) ( \ (pRtree->eCoordType==RTREE_COORD_REAL32) ? \ ((double)coord.f) : \ ((double)coord.i) \ ) #endif /* ** A search constraint. */ struct RtreeConstraint { int iCoord; /* Index of constrained coordinate */ int op; /* Constraining operation */ union { RtreeDValue rValue; /* Constraint value. */ int (*xGeom)(sqlite3_rtree_geometry*,int,RtreeDValue*,int*); int (*xQueryFunc)(sqlite3_rtree_query_info*); } u; sqlite3_rtree_query_info *pInfo; /* xGeom and xQueryFunc argument */ }; /* Possible values for RtreeConstraint.op */ #define RTREE_EQ 0x41 /* A */ #define RTREE_LE 0x42 /* B */ #define RTREE_LT 0x43 /* C */ #define RTREE_GE 0x44 /* D */ #define RTREE_GT 0x45 /* E */ #define RTREE_MATCH 0x46 /* F: Old-style sqlite3_rtree_geometry_callback() */ #define RTREE_QUERY 0x47 /* G: New-style sqlite3_rtree_query_callback() */ /* Special operators available only on cursors. Needs to be consecutive ** with the normal values above, but must be less than RTREE_MATCH. These ** are used in the cursor for contraints such as x=NULL (RTREE_FALSE) or ** x<'xyz' (RTREE_TRUE) */ #define RTREE_TRUE 0x3f /* ? */ #define RTREE_FALSE 0x40 /* @ */ /* ** An rtree structure node. */ struct RtreeNode { RtreeNode *pParent; /* Parent node */ i64 iNode; /* The node number */ int nRef; /* Number of references to this node */ int isDirty; /* True if the node needs to be written to disk */ u8 *zData; /* Content of the node, as should be on disk */ RtreeNode *pNext; /* Next node in this hash collision chain */ }; /* Return the number of cells in a node */ #define NCELL(pNode) readInt16(&(pNode)->zData[2]) /* ** A single cell from a node, deserialized */ struct RtreeCell { i64 iRowid; /* Node or entry ID */ RtreeCoord aCoord[RTREE_MAX_DIMENSIONS*2]; /* Bounding box coordinates */ }; /* ** This object becomes the sqlite3_user_data() for the SQL functions ** that are created by sqlite3_rtree_geometry_callback() and ** sqlite3_rtree_query_callback() and which appear on the right of MATCH ** operators in order to constrain a search. ** ** xGeom and xQueryFunc are the callback functions. Exactly one of ** xGeom and xQueryFunc fields is non-NULL, depending on whether the ** SQL function was created using sqlite3_rtree_geometry_callback() or ** sqlite3_rtree_query_callback(). ** ** This object is deleted automatically by the destructor mechanism in ** sqlite3_create_function_v2(). */ struct RtreeGeomCallback { int (*xGeom)(sqlite3_rtree_geometry*, int, RtreeDValue*, int*); int (*xQueryFunc)(sqlite3_rtree_query_info*); void (*xDestructor)(void*); void *pContext; }; /* ** An instance of this structure (in the form of a BLOB) is returned by ** the SQL functions that sqlite3_rtree_geometry_callback() and ** sqlite3_rtree_query_callback() create, and is read as the right-hand ** operand to the MATCH operator of an R-Tree. */ struct RtreeMatchArg { u32 iSize; /* Size of this object */ RtreeGeomCallback cb; /* Info about the callback functions */ int nParam; /* Number of parameters to the SQL function */ sqlite3_value **apSqlParam; /* Original SQL parameter values */ RtreeDValue aParam[1]; /* Values for parameters to the SQL function */ }; #ifndef MAX # define MAX(x,y) ((x) < (y) ? (y) : (x)) #endif #ifndef MIN # define MIN(x,y) ((x) > (y) ? (y) : (x)) #endif /* What version of GCC is being used. 0 means GCC is not being used . ** Note that the GCC_VERSION macro will also be set correctly when using ** clang, since clang works hard to be gcc compatible. So the gcc ** optimizations will also work when compiling with clang. */ #ifndef GCC_VERSION #if defined(__GNUC__) && !defined(SQLITE_DISABLE_INTRINSIC) # define GCC_VERSION (__GNUC__*1000000+__GNUC_MINOR__*1000+__GNUC_PATCHLEVEL__) #else # define GCC_VERSION 0 #endif #endif /* The testcase() macro should already be defined in the amalgamation. If ** it is not, make it a no-op. */ #ifndef SQLITE_AMALGAMATION # define testcase(X) #endif /* ** Make sure that the compiler intrinsics we desire are enabled when ** compiling with an appropriate version of MSVC unless prevented by ** the SQLITE_DISABLE_INTRINSIC define. */ #if !defined(SQLITE_DISABLE_INTRINSIC) # if defined(_MSC_VER) && _MSC_VER>=1400 # if !defined(_WIN32_WCE) /* # include */ # pragma intrinsic(_byteswap_ulong) # pragma intrinsic(_byteswap_uint64) # else /* # include */ # endif # endif #endif /* ** Macros to determine whether the machine is big or little endian, ** and whether or not that determination is run-time or compile-time. ** ** For best performance, an attempt is made to guess at the byte-order ** using C-preprocessor macros. If that is unsuccessful, or if ** -DSQLITE_RUNTIME_BYTEORDER=1 is set, then byte-order is determined ** at run-time. */ #ifndef SQLITE_BYTEORDER #if defined(i386) || defined(__i386__) || defined(_M_IX86) || \ defined(__x86_64) || defined(__x86_64__) || defined(_M_X64) || \ defined(_M_AMD64) || defined(_M_ARM) || defined(__x86) || \ defined(__arm__) # define SQLITE_BYTEORDER 1234 #elif defined(sparc) || defined(__ppc__) # define SQLITE_BYTEORDER 4321 #else # define SQLITE_BYTEORDER 0 /* 0 means "unknown at compile-time" */ #endif #endif /* What version of MSVC is being used. 0 means MSVC is not being used */ #ifndef MSVC_VERSION #if defined(_MSC_VER) && !defined(SQLITE_DISABLE_INTRINSIC) # define MSVC_VERSION _MSC_VER #else # define MSVC_VERSION 0 #endif #endif /* ** Functions to deserialize a 16 bit integer, 32 bit real number and ** 64 bit integer. The deserialized value is returned. */ static int readInt16(u8 *p){ return (p[0]<<8) + p[1]; } static void readCoord(u8 *p, RtreeCoord *pCoord){ assert( ((((char*)p) - (char*)0)&3)==0 ); /* p is always 4-byte aligned */ #if SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 pCoord->u = _byteswap_ulong(*(u32*)p); #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 pCoord->u = __builtin_bswap32(*(u32*)p); #elif SQLITE_BYTEORDER==4321 pCoord->u = *(u32*)p; #else pCoord->u = ( (((u32)p[0]) << 24) + (((u32)p[1]) << 16) + (((u32)p[2]) << 8) + (((u32)p[3]) << 0) ); #endif } static i64 readInt64(u8 *p){ #if SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 u64 x; memcpy(&x, p, 8); return (i64)_byteswap_uint64(x); #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 u64 x; memcpy(&x, p, 8); return (i64)__builtin_bswap64(x); #elif SQLITE_BYTEORDER==4321 i64 x; memcpy(&x, p, 8); return x; #else return (i64)( (((u64)p[0]) << 56) + (((u64)p[1]) << 48) + (((u64)p[2]) << 40) + (((u64)p[3]) << 32) + (((u64)p[4]) << 24) + (((u64)p[5]) << 16) + (((u64)p[6]) << 8) + (((u64)p[7]) << 0) ); #endif } /* ** Functions to serialize a 16 bit integer, 32 bit real number and ** 64 bit integer. The value returned is the number of bytes written ** to the argument buffer (always 2, 4 and 8 respectively). */ static void writeInt16(u8 *p, int i){ p[0] = (i>> 8)&0xFF; p[1] = (i>> 0)&0xFF; } static int writeCoord(u8 *p, RtreeCoord *pCoord){ u32 i; assert( ((((char*)p) - (char*)0)&3)==0 ); /* p is always 4-byte aligned */ assert( sizeof(RtreeCoord)==4 ); assert( sizeof(u32)==4 ); #if SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 i = __builtin_bswap32(pCoord->u); memcpy(p, &i, 4); #elif SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 i = _byteswap_ulong(pCoord->u); memcpy(p, &i, 4); #elif SQLITE_BYTEORDER==4321 i = pCoord->u; memcpy(p, &i, 4); #else i = pCoord->u; p[0] = (i>>24)&0xFF; p[1] = (i>>16)&0xFF; p[2] = (i>> 8)&0xFF; p[3] = (i>> 0)&0xFF; #endif return 4; } static int writeInt64(u8 *p, i64 i){ #if SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 i = (i64)__builtin_bswap64((u64)i); memcpy(p, &i, 8); #elif SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 i = (i64)_byteswap_uint64((u64)i); memcpy(p, &i, 8); #elif SQLITE_BYTEORDER==4321 memcpy(p, &i, 8); #else p[0] = (i>>56)&0xFF; p[1] = (i>>48)&0xFF; p[2] = (i>>40)&0xFF; p[3] = (i>>32)&0xFF; p[4] = (i>>24)&0xFF; p[5] = (i>>16)&0xFF; p[6] = (i>> 8)&0xFF; p[7] = (i>> 0)&0xFF; #endif return 8; } /* ** Increment the reference count of node p. */ static void nodeReference(RtreeNode *p){ if( p ){ assert( p->nRef>0 ); p->nRef++; } } /* ** Clear the content of node p (set all bytes to 0x00). */ static void nodeZero(Rtree *pRtree, RtreeNode *p){ memset(&p->zData[2], 0, pRtree->iNodeSize-2); p->isDirty = 1; } /* ** Given a node number iNode, return the corresponding key to use ** in the Rtree.aHash table. */ static unsigned int nodeHash(i64 iNode){ return ((unsigned)iNode) % HASHSIZE; } /* ** Search the node hash table for node iNode. If found, return a pointer ** to it. Otherwise, return 0. */ static RtreeNode *nodeHashLookup(Rtree *pRtree, i64 iNode){ RtreeNode *p; for(p=pRtree->aHash[nodeHash(iNode)]; p && p->iNode!=iNode; p=p->pNext); return p; } /* ** Add node pNode to the node hash table. */ static void nodeHashInsert(Rtree *pRtree, RtreeNode *pNode){ int iHash; assert( pNode->pNext==0 ); iHash = nodeHash(pNode->iNode); pNode->pNext = pRtree->aHash[iHash]; pRtree->aHash[iHash] = pNode; } /* ** Remove node pNode from the node hash table. */ static void nodeHashDelete(Rtree *pRtree, RtreeNode *pNode){ RtreeNode **pp; if( pNode->iNode!=0 ){ pp = &pRtree->aHash[nodeHash(pNode->iNode)]; for( ; (*pp)!=pNode; pp = &(*pp)->pNext){ assert(*pp); } *pp = pNode->pNext; pNode->pNext = 0; } } /* ** Allocate and return new r-tree node. Initially, (RtreeNode.iNode==0), ** indicating that node has not yet been assigned a node number. It is ** assigned a node number when nodeWrite() is called to write the ** node contents out to the database. */ static RtreeNode *nodeNew(Rtree *pRtree, RtreeNode *pParent){ RtreeNode *pNode; pNode = (RtreeNode *)sqlite3_malloc64(sizeof(RtreeNode) + pRtree->iNodeSize); if( pNode ){ memset(pNode, 0, sizeof(RtreeNode) + pRtree->iNodeSize); pNode->zData = (u8 *)&pNode[1]; pNode->nRef = 1; pRtree->nNodeRef++; pNode->pParent = pParent; pNode->isDirty = 1; nodeReference(pParent); } return pNode; } /* ** Clear the Rtree.pNodeBlob object */ static void nodeBlobReset(Rtree *pRtree){ if( pRtree->pNodeBlob && pRtree->inWrTrans==0 && pRtree->nCursor==0 ){ sqlite3_blob *pBlob = pRtree->pNodeBlob; pRtree->pNodeBlob = 0; sqlite3_blob_close(pBlob); } } /* ** Check to see if pNode is the same as pParent or any of the parents ** of pParent. */ static int nodeInParentChain(const RtreeNode *pNode, const RtreeNode *pParent){ do{ if( pNode==pParent ) return 1; pParent = pParent->pParent; }while( pParent ); return 0; } /* ** Obtain a reference to an r-tree node. */ static int nodeAcquire( Rtree *pRtree, /* R-tree structure */ i64 iNode, /* Node number to load */ RtreeNode *pParent, /* Either the parent node or NULL */ RtreeNode **ppNode /* OUT: Acquired node */ ){ int rc = SQLITE_OK; RtreeNode *pNode = 0; /* Check if the requested node is already in the hash table. If so, ** increase its reference count and return it. */ if( (pNode = nodeHashLookup(pRtree, iNode))!=0 ){ if( pParent && !pNode->pParent ){ if( nodeInParentChain(pNode, pParent) ){ RTREE_IS_CORRUPT(pRtree); return SQLITE_CORRUPT_VTAB; } pParent->nRef++; pNode->pParent = pParent; }else if( pParent && pNode->pParent && pParent!=pNode->pParent ){ RTREE_IS_CORRUPT(pRtree); return SQLITE_CORRUPT_VTAB; } pNode->nRef++; *ppNode = pNode; return SQLITE_OK; } if( pRtree->pNodeBlob ){ sqlite3_blob *pBlob = pRtree->pNodeBlob; pRtree->pNodeBlob = 0; rc = sqlite3_blob_reopen(pBlob, iNode); pRtree->pNodeBlob = pBlob; if( rc ){ nodeBlobReset(pRtree); if( rc==SQLITE_NOMEM ) return SQLITE_NOMEM; } } if( pRtree->pNodeBlob==0 ){ char *zTab = sqlite3_mprintf("%s_node", pRtree->zName); if( zTab==0 ) return SQLITE_NOMEM; rc = sqlite3_blob_open(pRtree->db, pRtree->zDb, zTab, "data", iNode, 0, &pRtree->pNodeBlob); sqlite3_free(zTab); } if( rc ){ nodeBlobReset(pRtree); *ppNode = 0; /* If unable to open an sqlite3_blob on the desired row, that can only ** be because the shadow tables hold erroneous data. */ if( rc==SQLITE_ERROR ){ rc = SQLITE_CORRUPT_VTAB; RTREE_IS_CORRUPT(pRtree); } }else if( pRtree->iNodeSize==sqlite3_blob_bytes(pRtree->pNodeBlob) ){ pNode = (RtreeNode *)sqlite3_malloc64(sizeof(RtreeNode)+pRtree->iNodeSize); if( !pNode ){ rc = SQLITE_NOMEM; }else{ pNode->pParent = pParent; pNode->zData = (u8 *)&pNode[1]; pNode->nRef = 1; pRtree->nNodeRef++; pNode->iNode = iNode; pNode->isDirty = 0; pNode->pNext = 0; rc = sqlite3_blob_read(pRtree->pNodeBlob, pNode->zData, pRtree->iNodeSize, 0); } } /* If the root node was just loaded, set pRtree->iDepth to the height ** of the r-tree structure. A height of zero means all data is stored on ** the root node. A height of one means the children of the root node ** are the leaves, and so on. If the depth as specified on the root node ** is greater than RTREE_MAX_DEPTH, the r-tree structure must be corrupt. */ if( pNode && iNode==1 ){ pRtree->iDepth = readInt16(pNode->zData); if( pRtree->iDepth>RTREE_MAX_DEPTH ){ rc = SQLITE_CORRUPT_VTAB; RTREE_IS_CORRUPT(pRtree); } } /* If no error has occurred so far, check if the "number of entries" ** field on the node is too large. If so, set the return code to ** SQLITE_CORRUPT_VTAB. */ if( pNode && rc==SQLITE_OK ){ if( NCELL(pNode)>((pRtree->iNodeSize-4)/pRtree->nBytesPerCell) ){ rc = SQLITE_CORRUPT_VTAB; RTREE_IS_CORRUPT(pRtree); } } if( rc==SQLITE_OK ){ if( pNode!=0 ){ nodeReference(pParent); nodeHashInsert(pRtree, pNode); }else{ rc = SQLITE_CORRUPT_VTAB; RTREE_IS_CORRUPT(pRtree); } *ppNode = pNode; }else{ if( pNode ){ pRtree->nNodeRef--; sqlite3_free(pNode); } *ppNode = 0; } return rc; } /* ** Overwrite cell iCell of node pNode with the contents of pCell. */ static void nodeOverwriteCell( Rtree *pRtree, /* The overall R-Tree */ RtreeNode *pNode, /* The node into which the cell is to be written */ RtreeCell *pCell, /* The cell to write */ int iCell /* Index into pNode into which pCell is written */ ){ int ii; u8 *p = &pNode->zData[4 + pRtree->nBytesPerCell*iCell]; p += writeInt64(p, pCell->iRowid); for(ii=0; iinDim2; ii++){ p += writeCoord(p, &pCell->aCoord[ii]); } pNode->isDirty = 1; } /* ** Remove the cell with index iCell from node pNode. */ static void nodeDeleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell){ u8 *pDst = &pNode->zData[4 + pRtree->nBytesPerCell*iCell]; u8 *pSrc = &pDst[pRtree->nBytesPerCell]; int nByte = (NCELL(pNode) - iCell - 1) * pRtree->nBytesPerCell; memmove(pDst, pSrc, nByte); writeInt16(&pNode->zData[2], NCELL(pNode)-1); pNode->isDirty = 1; } /* ** Insert the contents of cell pCell into node pNode. If the insert ** is successful, return SQLITE_OK. ** ** If there is not enough free space in pNode, return SQLITE_FULL. */ static int nodeInsertCell( Rtree *pRtree, /* The overall R-Tree */ RtreeNode *pNode, /* Write new cell into this node */ RtreeCell *pCell /* The cell to be inserted */ ){ int nCell; /* Current number of cells in pNode */ int nMaxCell; /* Maximum number of cells for pNode */ nMaxCell = (pRtree->iNodeSize-4)/pRtree->nBytesPerCell; nCell = NCELL(pNode); assert( nCell<=nMaxCell ); if( nCellzData[2], nCell+1); pNode->isDirty = 1; } return (nCell==nMaxCell); } /* ** If the node is dirty, write it out to the database. */ static int nodeWrite(Rtree *pRtree, RtreeNode *pNode){ int rc = SQLITE_OK; if( pNode->isDirty ){ sqlite3_stmt *p = pRtree->pWriteNode; if( pNode->iNode ){ sqlite3_bind_int64(p, 1, pNode->iNode); }else{ sqlite3_bind_null(p, 1); } sqlite3_bind_blob(p, 2, pNode->zData, pRtree->iNodeSize, SQLITE_STATIC); sqlite3_step(p); pNode->isDirty = 0; rc = sqlite3_reset(p); sqlite3_bind_null(p, 2); if( pNode->iNode==0 && rc==SQLITE_OK ){ pNode->iNode = sqlite3_last_insert_rowid(pRtree->db); nodeHashInsert(pRtree, pNode); } } return rc; } /* ** Release a reference to a node. If the node is dirty and the reference ** count drops to zero, the node data is written to the database. */ static int nodeRelease(Rtree *pRtree, RtreeNode *pNode){ int rc = SQLITE_OK; if( pNode ){ assert( pNode->nRef>0 ); assert( pRtree->nNodeRef>0 ); pNode->nRef--; if( pNode->nRef==0 ){ pRtree->nNodeRef--; if( pNode->iNode==1 ){ pRtree->iDepth = -1; } if( pNode->pParent ){ rc = nodeRelease(pRtree, pNode->pParent); } if( rc==SQLITE_OK ){ rc = nodeWrite(pRtree, pNode); } nodeHashDelete(pRtree, pNode); sqlite3_free(pNode); } } return rc; } /* ** Return the 64-bit integer value associated with cell iCell of ** node pNode. If pNode is a leaf node, this is a rowid. If it is ** an internal node, then the 64-bit integer is a child page number. */ static i64 nodeGetRowid( Rtree *pRtree, /* The overall R-Tree */ RtreeNode *pNode, /* The node from which to extract the ID */ int iCell /* The cell index from which to extract the ID */ ){ assert( iCellzData[4 + pRtree->nBytesPerCell*iCell]); } /* ** Return coordinate iCoord from cell iCell in node pNode. */ static void nodeGetCoord( Rtree *pRtree, /* The overall R-Tree */ RtreeNode *pNode, /* The node from which to extract a coordinate */ int iCell, /* The index of the cell within the node */ int iCoord, /* Which coordinate to extract */ RtreeCoord *pCoord /* OUT: Space to write result to */ ){ readCoord(&pNode->zData[12 + pRtree->nBytesPerCell*iCell + 4*iCoord], pCoord); } /* ** Deserialize cell iCell of node pNode. Populate the structure pointed ** to by pCell with the results. */ static void nodeGetCell( Rtree *pRtree, /* The overall R-Tree */ RtreeNode *pNode, /* The node containing the cell to be read */ int iCell, /* Index of the cell within the node */ RtreeCell *pCell /* OUT: Write the cell contents here */ ){ u8 *pData; RtreeCoord *pCoord; int ii = 0; pCell->iRowid = nodeGetRowid(pRtree, pNode, iCell); pData = pNode->zData + (12 + pRtree->nBytesPerCell*iCell); pCoord = pCell->aCoord; do{ readCoord(pData, &pCoord[ii]); readCoord(pData+4, &pCoord[ii+1]); pData += 8; ii += 2; }while( iinDim2 ); } /* Forward declaration for the function that does the work of ** the virtual table module xCreate() and xConnect() methods. */ static int rtreeInit( sqlite3 *, void *, int, const char *const*, sqlite3_vtab **, char **, int ); /* ** Rtree virtual table module xCreate method. */ static int rtreeCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 1); } /* ** Rtree virtual table module xConnect method. */ static int rtreeConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ return rtreeInit(db, pAux, argc, argv, ppVtab, pzErr, 0); } /* ** Increment the r-tree reference count. */ static void rtreeReference(Rtree *pRtree){ pRtree->nBusy++; } /* ** Decrement the r-tree reference count. When the reference count reaches ** zero the structure is deleted. */ static void rtreeRelease(Rtree *pRtree){ pRtree->nBusy--; if( pRtree->nBusy==0 ){ pRtree->inWrTrans = 0; assert( pRtree->nCursor==0 ); nodeBlobReset(pRtree); assert( pRtree->nNodeRef==0 || pRtree->bCorrupt ); sqlite3_finalize(pRtree->pWriteNode); sqlite3_finalize(pRtree->pDeleteNode); sqlite3_finalize(pRtree->pReadRowid); sqlite3_finalize(pRtree->pWriteRowid); sqlite3_finalize(pRtree->pDeleteRowid); sqlite3_finalize(pRtree->pReadParent); sqlite3_finalize(pRtree->pWriteParent); sqlite3_finalize(pRtree->pDeleteParent); sqlite3_finalize(pRtree->pWriteAux); sqlite3_free(pRtree->zReadAuxSql); sqlite3_free(pRtree); } } /* ** Rtree virtual table module xDisconnect method. */ static int rtreeDisconnect(sqlite3_vtab *pVtab){ rtreeRelease((Rtree *)pVtab); return SQLITE_OK; } /* ** Rtree virtual table module xDestroy method. */ static int rtreeDestroy(sqlite3_vtab *pVtab){ Rtree *pRtree = (Rtree *)pVtab; int rc; char *zCreate = sqlite3_mprintf( "DROP TABLE '%q'.'%q_node';" "DROP TABLE '%q'.'%q_rowid';" "DROP TABLE '%q'.'%q_parent';", pRtree->zDb, pRtree->zName, pRtree->zDb, pRtree->zName, pRtree->zDb, pRtree->zName ); if( !zCreate ){ rc = SQLITE_NOMEM; }else{ nodeBlobReset(pRtree); rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0); sqlite3_free(zCreate); } if( rc==SQLITE_OK ){ rtreeRelease(pRtree); } return rc; } /* ** Rtree virtual table module xOpen method. */ static int rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ int rc = SQLITE_NOMEM; Rtree *pRtree = (Rtree *)pVTab; RtreeCursor *pCsr; pCsr = (RtreeCursor *)sqlite3_malloc64(sizeof(RtreeCursor)); if( pCsr ){ memset(pCsr, 0, sizeof(RtreeCursor)); pCsr->base.pVtab = pVTab; rc = SQLITE_OK; pRtree->nCursor++; } *ppCursor = (sqlite3_vtab_cursor *)pCsr; return rc; } /* ** Reset a cursor back to its initial state. */ static void resetCursor(RtreeCursor *pCsr){ Rtree *pRtree = (Rtree *)(pCsr->base.pVtab); int ii; sqlite3_stmt *pStmt; if( pCsr->aConstraint ){ int i; /* Used to iterate through constraint array */ for(i=0; inConstraint; i++){ sqlite3_rtree_query_info *pInfo = pCsr->aConstraint[i].pInfo; if( pInfo ){ if( pInfo->xDelUser ) pInfo->xDelUser(pInfo->pUser); sqlite3_free(pInfo); } } sqlite3_free(pCsr->aConstraint); pCsr->aConstraint = 0; } for(ii=0; iiaNode[ii]); sqlite3_free(pCsr->aPoint); pStmt = pCsr->pReadAux; memset(pCsr, 0, sizeof(RtreeCursor)); pCsr->base.pVtab = (sqlite3_vtab*)pRtree; pCsr->pReadAux = pStmt; } /* ** Rtree virtual table module xClose method. */ static int rtreeClose(sqlite3_vtab_cursor *cur){ Rtree *pRtree = (Rtree *)(cur->pVtab); RtreeCursor *pCsr = (RtreeCursor *)cur; assert( pRtree->nCursor>0 ); resetCursor(pCsr); sqlite3_finalize(pCsr->pReadAux); sqlite3_free(pCsr); pRtree->nCursor--; nodeBlobReset(pRtree); return SQLITE_OK; } /* ** Rtree virtual table module xEof method. ** ** Return non-zero if the cursor does not currently point to a valid ** record (i.e if the scan has finished), or zero otherwise. */ static int rtreeEof(sqlite3_vtab_cursor *cur){ RtreeCursor *pCsr = (RtreeCursor *)cur; return pCsr->atEOF; } /* ** Convert raw bits from the on-disk RTree record into a coordinate value. ** The on-disk format is big-endian and needs to be converted for little- ** endian platforms. The on-disk record stores integer coordinates if ** eInt is true and it stores 32-bit floating point records if eInt is ** false. a[] is the four bytes of the on-disk record to be decoded. ** Store the results in "r". ** ** There are five versions of this macro. The last one is generic. The ** other four are various architectures-specific optimizations. */ #if SQLITE_BYTEORDER==1234 && MSVC_VERSION>=1300 #define RTREE_DECODE_COORD(eInt, a, r) { \ RtreeCoord c; /* Coordinate decoded */ \ c.u = _byteswap_ulong(*(u32*)a); \ r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ } #elif SQLITE_BYTEORDER==1234 && GCC_VERSION>=4003000 #define RTREE_DECODE_COORD(eInt, a, r) { \ RtreeCoord c; /* Coordinate decoded */ \ c.u = __builtin_bswap32(*(u32*)a); \ r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ } #elif SQLITE_BYTEORDER==1234 #define RTREE_DECODE_COORD(eInt, a, r) { \ RtreeCoord c; /* Coordinate decoded */ \ memcpy(&c.u,a,4); \ c.u = ((c.u>>24)&0xff)|((c.u>>8)&0xff00)| \ ((c.u&0xff)<<24)|((c.u&0xff00)<<8); \ r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ } #elif SQLITE_BYTEORDER==4321 #define RTREE_DECODE_COORD(eInt, a, r) { \ RtreeCoord c; /* Coordinate decoded */ \ memcpy(&c.u,a,4); \ r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ } #else #define RTREE_DECODE_COORD(eInt, a, r) { \ RtreeCoord c; /* Coordinate decoded */ \ c.u = ((u32)a[0]<<24) + ((u32)a[1]<<16) \ +((u32)a[2]<<8) + a[3]; \ r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \ } #endif /* ** Check the RTree node or entry given by pCellData and p against the MATCH ** constraint pConstraint. */ static int rtreeCallbackConstraint( RtreeConstraint *pConstraint, /* The constraint to test */ int eInt, /* True if RTree holding integer coordinates */ u8 *pCellData, /* Raw cell content */ RtreeSearchPoint *pSearch, /* Container of this cell */ sqlite3_rtree_dbl *prScore, /* OUT: score for the cell */ int *peWithin /* OUT: visibility of the cell */ ){ sqlite3_rtree_query_info *pInfo = pConstraint->pInfo; /* Callback info */ int nCoord = pInfo->nCoord; /* No. of coordinates */ int rc; /* Callback return code */ RtreeCoord c; /* Translator union */ sqlite3_rtree_dbl aCoord[RTREE_MAX_DIMENSIONS*2]; /* Decoded coordinates */ assert( pConstraint->op==RTREE_MATCH || pConstraint->op==RTREE_QUERY ); assert( nCoord==2 || nCoord==4 || nCoord==6 || nCoord==8 || nCoord==10 ); if( pConstraint->op==RTREE_QUERY && pSearch->iLevel==1 ){ pInfo->iRowid = readInt64(pCellData); } pCellData += 8; #ifndef SQLITE_RTREE_INT_ONLY if( eInt==0 ){ switch( nCoord ){ case 10: readCoord(pCellData+36, &c); aCoord[9] = c.f; readCoord(pCellData+32, &c); aCoord[8] = c.f; case 8: readCoord(pCellData+28, &c); aCoord[7] = c.f; readCoord(pCellData+24, &c); aCoord[6] = c.f; case 6: readCoord(pCellData+20, &c); aCoord[5] = c.f; readCoord(pCellData+16, &c); aCoord[4] = c.f; case 4: readCoord(pCellData+12, &c); aCoord[3] = c.f; readCoord(pCellData+8, &c); aCoord[2] = c.f; default: readCoord(pCellData+4, &c); aCoord[1] = c.f; readCoord(pCellData, &c); aCoord[0] = c.f; } }else #endif { switch( nCoord ){ case 10: readCoord(pCellData+36, &c); aCoord[9] = c.i; readCoord(pCellData+32, &c); aCoord[8] = c.i; case 8: readCoord(pCellData+28, &c); aCoord[7] = c.i; readCoord(pCellData+24, &c); aCoord[6] = c.i; case 6: readCoord(pCellData+20, &c); aCoord[5] = c.i; readCoord(pCellData+16, &c); aCoord[4] = c.i; case 4: readCoord(pCellData+12, &c); aCoord[3] = c.i; readCoord(pCellData+8, &c); aCoord[2] = c.i; default: readCoord(pCellData+4, &c); aCoord[1] = c.i; readCoord(pCellData, &c); aCoord[0] = c.i; } } if( pConstraint->op==RTREE_MATCH ){ int eWithin = 0; rc = pConstraint->u.xGeom((sqlite3_rtree_geometry*)pInfo, nCoord, aCoord, &eWithin); if( eWithin==0 ) *peWithin = NOT_WITHIN; *prScore = RTREE_ZERO; }else{ pInfo->aCoord = aCoord; pInfo->iLevel = pSearch->iLevel - 1; pInfo->rScore = pInfo->rParentScore = pSearch->rScore; pInfo->eWithin = pInfo->eParentWithin = pSearch->eWithin; rc = pConstraint->u.xQueryFunc(pInfo); if( pInfo->eWithin<*peWithin ) *peWithin = pInfo->eWithin; if( pInfo->rScore<*prScore || *prScorerScore; } } return rc; } /* ** Check the internal RTree node given by pCellData against constraint p. ** If this constraint cannot be satisfied by any child within the node, ** set *peWithin to NOT_WITHIN. */ static void rtreeNonleafConstraint( RtreeConstraint *p, /* The constraint to test */ int eInt, /* True if RTree holds integer coordinates */ u8 *pCellData, /* Raw cell content as appears on disk */ int *peWithin /* Adjust downward, as appropriate */ ){ sqlite3_rtree_dbl val; /* Coordinate value convert to a double */ /* p->iCoord might point to either a lower or upper bound coordinate ** in a coordinate pair. But make pCellData point to the lower bound. */ pCellData += 8 + 4*(p->iCoord&0xfe); assert(p->op==RTREE_LE || p->op==RTREE_LT || p->op==RTREE_GE || p->op==RTREE_GT || p->op==RTREE_EQ || p->op==RTREE_TRUE || p->op==RTREE_FALSE ); assert( ((((char*)pCellData) - (char*)0)&3)==0 ); /* 4-byte aligned */ switch( p->op ){ case RTREE_TRUE: return; /* Always satisfied */ case RTREE_FALSE: break; /* Never satisfied */ case RTREE_LE: case RTREE_LT: case RTREE_EQ: RTREE_DECODE_COORD(eInt, pCellData, val); /* val now holds the lower bound of the coordinate pair */ if( p->u.rValue>=val ) return; if( p->op!=RTREE_EQ ) break; /* RTREE_LE and RTREE_LT end here */ /* Fall through for the RTREE_EQ case */ default: /* RTREE_GT or RTREE_GE, or fallthrough of RTREE_EQ */ pCellData += 4; RTREE_DECODE_COORD(eInt, pCellData, val); /* val now holds the upper bound of the coordinate pair */ if( p->u.rValue<=val ) return; } *peWithin = NOT_WITHIN; } /* ** Check the leaf RTree cell given by pCellData against constraint p. ** If this constraint is not satisfied, set *peWithin to NOT_WITHIN. ** If the constraint is satisfied, leave *peWithin unchanged. ** ** The constraint is of the form: xN op $val ** ** The op is given by p->op. The xN is p->iCoord-th coordinate in ** pCellData. $val is given by p->u.rValue. */ static void rtreeLeafConstraint( RtreeConstraint *p, /* The constraint to test */ int eInt, /* True if RTree holds integer coordinates */ u8 *pCellData, /* Raw cell content as appears on disk */ int *peWithin /* Adjust downward, as appropriate */ ){ RtreeDValue xN; /* Coordinate value converted to a double */ assert(p->op==RTREE_LE || p->op==RTREE_LT || p->op==RTREE_GE || p->op==RTREE_GT || p->op==RTREE_EQ || p->op==RTREE_TRUE || p->op==RTREE_FALSE ); pCellData += 8 + p->iCoord*4; assert( ((((char*)pCellData) - (char*)0)&3)==0 ); /* 4-byte aligned */ RTREE_DECODE_COORD(eInt, pCellData, xN); switch( p->op ){ case RTREE_TRUE: return; /* Always satisfied */ case RTREE_FALSE: break; /* Never satisfied */ case RTREE_LE: if( xN <= p->u.rValue ) return; break; case RTREE_LT: if( xN < p->u.rValue ) return; break; case RTREE_GE: if( xN >= p->u.rValue ) return; break; case RTREE_GT: if( xN > p->u.rValue ) return; break; default: if( xN == p->u.rValue ) return; break; } *peWithin = NOT_WITHIN; } /* ** One of the cells in node pNode is guaranteed to have a 64-bit ** integer value equal to iRowid. Return the index of this cell. */ static int nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ){ int ii; int nCell = NCELL(pNode); assert( nCell<200 ); for(ii=0; iipParent; if( pParent ){ return nodeRowidIndex(pRtree, pParent, pNode->iNode, piIndex); } *piIndex = -1; return SQLITE_OK; } /* ** Compare two search points. Return negative, zero, or positive if the first ** is less than, equal to, or greater than the second. ** ** The rScore is the primary key. Smaller rScore values come first. ** If the rScore is a tie, then use iLevel as the tie breaker with smaller ** iLevel values coming first. In this way, if rScore is the same for all ** SearchPoints, then iLevel becomes the deciding factor and the result ** is a depth-first search, which is the desired default behavior. */ static int rtreeSearchPointCompare( const RtreeSearchPoint *pA, const RtreeSearchPoint *pB ){ if( pA->rScorerScore ) return -1; if( pA->rScore>pB->rScore ) return +1; if( pA->iLeveliLevel ) return -1; if( pA->iLevel>pB->iLevel ) return +1; return 0; } /* ** Interchange two search points in a cursor. */ static void rtreeSearchPointSwap(RtreeCursor *p, int i, int j){ RtreeSearchPoint t = p->aPoint[i]; assert( iaPoint[i] = p->aPoint[j]; p->aPoint[j] = t; i++; j++; if( i=RTREE_CACHE_SZ ){ nodeRelease(RTREE_OF_CURSOR(p), p->aNode[i]); p->aNode[i] = 0; }else{ RtreeNode *pTemp = p->aNode[i]; p->aNode[i] = p->aNode[j]; p->aNode[j] = pTemp; } } } /* ** Return the search point with the lowest current score. */ static RtreeSearchPoint *rtreeSearchPointFirst(RtreeCursor *pCur){ return pCur->bPoint ? &pCur->sPoint : pCur->nPoint ? pCur->aPoint : 0; } /* ** Get the RtreeNode for the search point with the lowest score. */ static RtreeNode *rtreeNodeOfFirstSearchPoint(RtreeCursor *pCur, int *pRC){ sqlite3_int64 id; int ii = 1 - pCur->bPoint; assert( ii==0 || ii==1 ); assert( pCur->bPoint || pCur->nPoint ); if( pCur->aNode[ii]==0 ){ assert( pRC!=0 ); id = ii ? pCur->aPoint[0].id : pCur->sPoint.id; *pRC = nodeAcquire(RTREE_OF_CURSOR(pCur), id, 0, &pCur->aNode[ii]); } return pCur->aNode[ii]; } /* ** Push a new element onto the priority queue */ static RtreeSearchPoint *rtreeEnqueue( RtreeCursor *pCur, /* The cursor */ RtreeDValue rScore, /* Score for the new search point */ u8 iLevel /* Level for the new search point */ ){ int i, j; RtreeSearchPoint *pNew; if( pCur->nPoint>=pCur->nPointAlloc ){ int nNew = pCur->nPointAlloc*2 + 8; pNew = sqlite3_realloc64(pCur->aPoint, nNew*sizeof(pCur->aPoint[0])); if( pNew==0 ) return 0; pCur->aPoint = pNew; pCur->nPointAlloc = nNew; } i = pCur->nPoint++; pNew = pCur->aPoint + i; pNew->rScore = rScore; pNew->iLevel = iLevel; assert( iLevel<=RTREE_MAX_DEPTH ); while( i>0 ){ RtreeSearchPoint *pParent; j = (i-1)/2; pParent = pCur->aPoint + j; if( rtreeSearchPointCompare(pNew, pParent)>=0 ) break; rtreeSearchPointSwap(pCur, j, i); i = j; pNew = pParent; } return pNew; } /* ** Allocate a new RtreeSearchPoint and return a pointer to it. Return ** NULL if malloc fails. */ static RtreeSearchPoint *rtreeSearchPointNew( RtreeCursor *pCur, /* The cursor */ RtreeDValue rScore, /* Score for the new search point */ u8 iLevel /* Level for the new search point */ ){ RtreeSearchPoint *pNew, *pFirst; pFirst = rtreeSearchPointFirst(pCur); pCur->anQueue[iLevel]++; if( pFirst==0 || pFirst->rScore>rScore || (pFirst->rScore==rScore && pFirst->iLevel>iLevel) ){ if( pCur->bPoint ){ int ii; pNew = rtreeEnqueue(pCur, rScore, iLevel); if( pNew==0 ) return 0; ii = (int)(pNew - pCur->aPoint) + 1; if( iiaNode[ii]==0 ); pCur->aNode[ii] = pCur->aNode[0]; }else{ nodeRelease(RTREE_OF_CURSOR(pCur), pCur->aNode[0]); } pCur->aNode[0] = 0; *pNew = pCur->sPoint; } pCur->sPoint.rScore = rScore; pCur->sPoint.iLevel = iLevel; pCur->bPoint = 1; return &pCur->sPoint; }else{ return rtreeEnqueue(pCur, rScore, iLevel); } } #if 0 /* Tracing routines for the RtreeSearchPoint queue */ static void tracePoint(RtreeSearchPoint *p, int idx, RtreeCursor *pCur){ if( idx<0 ){ printf(" s"); }else{ printf("%2d", idx); } printf(" %d.%05lld.%02d %g %d", p->iLevel, p->id, p->iCell, p->rScore, p->eWithin ); idx++; if( idxaNode[idx]); }else{ printf("\n"); } } static void traceQueue(RtreeCursor *pCur, const char *zPrefix){ int ii; printf("=== %9s ", zPrefix); if( pCur->bPoint ){ tracePoint(&pCur->sPoint, -1, pCur); } for(ii=0; iinPoint; ii++){ if( ii>0 || pCur->bPoint ) printf(" "); tracePoint(&pCur->aPoint[ii], ii, pCur); } } # define RTREE_QUEUE_TRACE(A,B) traceQueue(A,B) #else # define RTREE_QUEUE_TRACE(A,B) /* no-op */ #endif /* Remove the search point with the lowest current score. */ static void rtreeSearchPointPop(RtreeCursor *p){ int i, j, k, n; i = 1 - p->bPoint; assert( i==0 || i==1 ); if( p->aNode[i] ){ nodeRelease(RTREE_OF_CURSOR(p), p->aNode[i]); p->aNode[i] = 0; } if( p->bPoint ){ p->anQueue[p->sPoint.iLevel]--; p->bPoint = 0; }else if( p->nPoint ){ p->anQueue[p->aPoint[0].iLevel]--; n = --p->nPoint; p->aPoint[0] = p->aPoint[n]; if( naNode[1] = p->aNode[n+1]; p->aNode[n+1] = 0; } i = 0; while( (j = i*2+1)aPoint[k], &p->aPoint[j])<0 ){ if( rtreeSearchPointCompare(&p->aPoint[k], &p->aPoint[i])<0 ){ rtreeSearchPointSwap(p, i, k); i = k; }else{ break; } }else{ if( rtreeSearchPointCompare(&p->aPoint[j], &p->aPoint[i])<0 ){ rtreeSearchPointSwap(p, i, j); i = j; }else{ break; } } } } } /* ** Continue the search on cursor pCur until the front of the queue ** contains an entry suitable for returning as a result-set row, ** or until the RtreeSearchPoint queue is empty, indicating that the ** query has completed. */ static int rtreeStepToLeaf(RtreeCursor *pCur){ RtreeSearchPoint *p; Rtree *pRtree = RTREE_OF_CURSOR(pCur); RtreeNode *pNode; int eWithin; int rc = SQLITE_OK; int nCell; int nConstraint = pCur->nConstraint; int ii; int eInt; RtreeSearchPoint x; eInt = pRtree->eCoordType==RTREE_COORD_INT32; while( (p = rtreeSearchPointFirst(pCur))!=0 && p->iLevel>0 ){ u8 *pCellData; pNode = rtreeNodeOfFirstSearchPoint(pCur, &rc); if( rc ) return rc; nCell = NCELL(pNode); assert( nCell<200 ); pCellData = pNode->zData + (4+pRtree->nBytesPerCell*p->iCell); while( p->iCellaConstraint + ii; if( pConstraint->op>=RTREE_MATCH ){ rc = rtreeCallbackConstraint(pConstraint, eInt, pCellData, p, &rScore, &eWithin); if( rc ) return rc; }else if( p->iLevel==1 ){ rtreeLeafConstraint(pConstraint, eInt, pCellData, &eWithin); }else{ rtreeNonleafConstraint(pConstraint, eInt, pCellData, &eWithin); } if( eWithin==NOT_WITHIN ){ p->iCell++; pCellData += pRtree->nBytesPerCell; break; } } if( eWithin==NOT_WITHIN ) continue; p->iCell++; x.iLevel = p->iLevel - 1; if( x.iLevel ){ x.id = readInt64(pCellData); for(ii=0; iinPoint; ii++){ if( pCur->aPoint[ii].id==x.id ){ RTREE_IS_CORRUPT(pRtree); return SQLITE_CORRUPT_VTAB; } } x.iCell = 0; }else{ x.id = p->id; x.iCell = p->iCell - 1; } if( p->iCell>=nCell ){ RTREE_QUEUE_TRACE(pCur, "POP-S:"); rtreeSearchPointPop(pCur); } if( rScoreeWithin = (u8)eWithin; p->id = x.id; p->iCell = x.iCell; RTREE_QUEUE_TRACE(pCur, "PUSH-S:"); break; } if( p->iCell>=nCell ){ RTREE_QUEUE_TRACE(pCur, "POP-Se:"); rtreeSearchPointPop(pCur); } } pCur->atEOF = p==0; return SQLITE_OK; } /* ** Rtree virtual table module xNext method. */ static int rtreeNext(sqlite3_vtab_cursor *pVtabCursor){ RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; int rc = SQLITE_OK; /* Move to the next entry that matches the configured constraints. */ RTREE_QUEUE_TRACE(pCsr, "POP-Nx:"); if( pCsr->bAuxValid ){ pCsr->bAuxValid = 0; sqlite3_reset(pCsr->pReadAux); } rtreeSearchPointPop(pCsr); rc = rtreeStepToLeaf(pCsr); return rc; } /* ** Rtree virtual table module xRowid method. */ static int rtreeRowid(sqlite3_vtab_cursor *pVtabCursor, sqlite_int64 *pRowid){ RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; RtreeSearchPoint *p = rtreeSearchPointFirst(pCsr); int rc = SQLITE_OK; RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); if( rc==SQLITE_OK && p ){ *pRowid = nodeGetRowid(RTREE_OF_CURSOR(pCsr), pNode, p->iCell); } return rc; } /* ** Rtree virtual table module xColumn method. */ static int rtreeColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){ Rtree *pRtree = (Rtree *)cur->pVtab; RtreeCursor *pCsr = (RtreeCursor *)cur; RtreeSearchPoint *p = rtreeSearchPointFirst(pCsr); RtreeCoord c; int rc = SQLITE_OK; RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); if( rc ) return rc; if( p==0 ) return SQLITE_OK; if( i==0 ){ sqlite3_result_int64(ctx, nodeGetRowid(pRtree, pNode, p->iCell)); }else if( i<=pRtree->nDim2 ){ nodeGetCoord(pRtree, pNode, p->iCell, i-1, &c); #ifndef SQLITE_RTREE_INT_ONLY if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ sqlite3_result_double(ctx, c.f); }else #endif { assert( pRtree->eCoordType==RTREE_COORD_INT32 ); sqlite3_result_int(ctx, c.i); } }else{ if( !pCsr->bAuxValid ){ if( pCsr->pReadAux==0 ){ rc = sqlite3_prepare_v3(pRtree->db, pRtree->zReadAuxSql, -1, 0, &pCsr->pReadAux, 0); if( rc ) return rc; } sqlite3_bind_int64(pCsr->pReadAux, 1, nodeGetRowid(pRtree, pNode, p->iCell)); rc = sqlite3_step(pCsr->pReadAux); if( rc==SQLITE_ROW ){ pCsr->bAuxValid = 1; }else{ sqlite3_reset(pCsr->pReadAux); if( rc==SQLITE_DONE ) rc = SQLITE_OK; return rc; } } sqlite3_result_value(ctx, sqlite3_column_value(pCsr->pReadAux, i - pRtree->nDim2 + 1)); } return SQLITE_OK; } /* ** Use nodeAcquire() to obtain the leaf node containing the record with ** rowid iRowid. If successful, set *ppLeaf to point to the node and ** return SQLITE_OK. If there is no such record in the table, set ** *ppLeaf to 0 and return SQLITE_OK. If an error occurs, set *ppLeaf ** to zero and return an SQLite error code. */ static int findLeafNode( Rtree *pRtree, /* RTree to search */ i64 iRowid, /* The rowid searching for */ RtreeNode **ppLeaf, /* Write the node here */ sqlite3_int64 *piNode /* Write the node-id here */ ){ int rc; *ppLeaf = 0; sqlite3_bind_int64(pRtree->pReadRowid, 1, iRowid); if( sqlite3_step(pRtree->pReadRowid)==SQLITE_ROW ){ i64 iNode = sqlite3_column_int64(pRtree->pReadRowid, 0); if( piNode ) *piNode = iNode; rc = nodeAcquire(pRtree, iNode, 0, ppLeaf); sqlite3_reset(pRtree->pReadRowid); }else{ rc = sqlite3_reset(pRtree->pReadRowid); } return rc; } /* ** This function is called to configure the RtreeConstraint object passed ** as the second argument for a MATCH constraint. The value passed as the ** first argument to this function is the right-hand operand to the MATCH ** operator. */ static int deserializeGeometry(sqlite3_value *pValue, RtreeConstraint *pCons){ RtreeMatchArg *pBlob, *pSrc; /* BLOB returned by geometry function */ sqlite3_rtree_query_info *pInfo; /* Callback information */ pSrc = sqlite3_value_pointer(pValue, "RtreeMatchArg"); if( pSrc==0 ) return SQLITE_ERROR; pInfo = (sqlite3_rtree_query_info*) sqlite3_malloc64( sizeof(*pInfo)+pSrc->iSize ); if( !pInfo ) return SQLITE_NOMEM; memset(pInfo, 0, sizeof(*pInfo)); pBlob = (RtreeMatchArg*)&pInfo[1]; memcpy(pBlob, pSrc, pSrc->iSize); pInfo->pContext = pBlob->cb.pContext; pInfo->nParam = pBlob->nParam; pInfo->aParam = pBlob->aParam; pInfo->apSqlParam = pBlob->apSqlParam; if( pBlob->cb.xGeom ){ pCons->u.xGeom = pBlob->cb.xGeom; }else{ pCons->op = RTREE_QUERY; pCons->u.xQueryFunc = pBlob->cb.xQueryFunc; } pCons->pInfo = pInfo; return SQLITE_OK; } /* ** Rtree virtual table module xFilter method. */ static int rtreeFilter( sqlite3_vtab_cursor *pVtabCursor, int idxNum, const char *idxStr, int argc, sqlite3_value **argv ){ Rtree *pRtree = (Rtree *)pVtabCursor->pVtab; RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; RtreeNode *pRoot = 0; int ii; int rc = SQLITE_OK; int iCell = 0; rtreeReference(pRtree); /* Reset the cursor to the same state as rtreeOpen() leaves it in. */ resetCursor(pCsr); pCsr->iStrategy = idxNum; if( idxNum==1 ){ /* Special case - lookup by rowid. */ RtreeNode *pLeaf; /* Leaf on which the required cell resides */ RtreeSearchPoint *p; /* Search point for the leaf */ i64 iRowid = sqlite3_value_int64(argv[0]); i64 iNode = 0; int eType = sqlite3_value_numeric_type(argv[0]); if( eType==SQLITE_INTEGER || (eType==SQLITE_FLOAT && sqlite3_value_double(argv[0])==iRowid) ){ rc = findLeafNode(pRtree, iRowid, &pLeaf, &iNode); }else{ rc = SQLITE_OK; pLeaf = 0; } if( rc==SQLITE_OK && pLeaf!=0 ){ p = rtreeSearchPointNew(pCsr, RTREE_ZERO, 0); assert( p!=0 ); /* Always returns pCsr->sPoint */ pCsr->aNode[0] = pLeaf; p->id = iNode; p->eWithin = PARTLY_WITHIN; rc = nodeRowidIndex(pRtree, pLeaf, iRowid, &iCell); p->iCell = (u8)iCell; RTREE_QUEUE_TRACE(pCsr, "PUSH-F1:"); }else{ pCsr->atEOF = 1; } }else{ /* Normal case - r-tree scan. Set up the RtreeCursor.aConstraint array ** with the configured constraints. */ rc = nodeAcquire(pRtree, 1, 0, &pRoot); if( rc==SQLITE_OK && argc>0 ){ pCsr->aConstraint = sqlite3_malloc64(sizeof(RtreeConstraint)*argc); pCsr->nConstraint = argc; if( !pCsr->aConstraint ){ rc = SQLITE_NOMEM; }else{ memset(pCsr->aConstraint, 0, sizeof(RtreeConstraint)*argc); memset(pCsr->anQueue, 0, sizeof(u32)*(pRtree->iDepth + 1)); assert( (idxStr==0 && argc==0) || (idxStr && (int)strlen(idxStr)==argc*2) ); for(ii=0; iiaConstraint[ii]; int eType = sqlite3_value_numeric_type(argv[ii]); p->op = idxStr[ii*2]; p->iCoord = idxStr[ii*2+1]-'0'; if( p->op>=RTREE_MATCH ){ /* A MATCH operator. The right-hand-side must be a blob that ** can be cast into an RtreeMatchArg object. One created using ** an sqlite3_rtree_geometry_callback() SQL user function. */ rc = deserializeGeometry(argv[ii], p); if( rc!=SQLITE_OK ){ break; } p->pInfo->nCoord = pRtree->nDim2; p->pInfo->anQueue = pCsr->anQueue; p->pInfo->mxLevel = pRtree->iDepth + 1; }else if( eType==SQLITE_INTEGER || eType==SQLITE_FLOAT ){ #ifdef SQLITE_RTREE_INT_ONLY p->u.rValue = sqlite3_value_int64(argv[ii]); #else p->u.rValue = sqlite3_value_double(argv[ii]); #endif }else{ p->u.rValue = RTREE_ZERO; if( eType==SQLITE_NULL ){ p->op = RTREE_FALSE; }else if( p->op==RTREE_LT || p->op==RTREE_LE ){ p->op = RTREE_TRUE; }else{ p->op = RTREE_FALSE; } } } } } if( rc==SQLITE_OK ){ RtreeSearchPoint *pNew; pNew = rtreeSearchPointNew(pCsr, RTREE_ZERO, (u8)(pRtree->iDepth+1)); if( pNew==0 ) return SQLITE_NOMEM; pNew->id = 1; pNew->iCell = 0; pNew->eWithin = PARTLY_WITHIN; assert( pCsr->bPoint==1 ); pCsr->aNode[0] = pRoot; pRoot = 0; RTREE_QUEUE_TRACE(pCsr, "PUSH-Fm:"); rc = rtreeStepToLeaf(pCsr); } } nodeRelease(pRtree, pRoot); rtreeRelease(pRtree); return rc; } /* ** Rtree virtual table module xBestIndex method. There are three ** table scan strategies to choose from (in order from most to ** least desirable): ** ** idxNum idxStr Strategy ** ------------------------------------------------ ** 1 Unused Direct lookup by rowid. ** 2 See below R-tree query or full-table scan. ** ------------------------------------------------ ** ** If strategy 1 is used, then idxStr is not meaningful. If strategy ** 2 is used, idxStr is formatted to contain 2 bytes for each ** constraint used. The first two bytes of idxStr correspond to ** the constraint in sqlite3_index_info.aConstraintUsage[] with ** (argvIndex==1) etc. ** ** The first of each pair of bytes in idxStr identifies the constraint ** operator as follows: ** ** Operator Byte Value ** ---------------------- ** = 0x41 ('A') ** <= 0x42 ('B') ** < 0x43 ('C') ** >= 0x44 ('D') ** > 0x45 ('E') ** MATCH 0x46 ('F') ** ---------------------- ** ** The second of each pair of bytes identifies the coordinate column ** to which the constraint applies. The leftmost coordinate column ** is 'a', the second from the left 'b' etc. */ static int rtreeBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){ Rtree *pRtree = (Rtree*)tab; int rc = SQLITE_OK; int ii; int bMatch = 0; /* True if there exists a MATCH constraint */ i64 nRow; /* Estimated rows returned by this scan */ int iIdx = 0; char zIdxStr[RTREE_MAX_DIMENSIONS*8+1]; memset(zIdxStr, 0, sizeof(zIdxStr)); /* Check if there exists a MATCH constraint - even an unusable one. If there ** is, do not consider the lookup-by-rowid plan as using such a plan would ** require the VDBE to evaluate the MATCH constraint, which is not currently ** possible. */ for(ii=0; iinConstraint; ii++){ if( pIdxInfo->aConstraint[ii].op==SQLITE_INDEX_CONSTRAINT_MATCH ){ bMatch = 1; } } assert( pIdxInfo->idxStr==0 ); for(ii=0; iinConstraint && iIdx<(int)(sizeof(zIdxStr)-1); ii++){ struct sqlite3_index_constraint *p = &pIdxInfo->aConstraint[ii]; if( bMatch==0 && p->usable && p->iColumn==0 && p->op==SQLITE_INDEX_CONSTRAINT_EQ ){ /* We have an equality constraint on the rowid. Use strategy 1. */ int jj; for(jj=0; jjaConstraintUsage[jj].argvIndex = 0; pIdxInfo->aConstraintUsage[jj].omit = 0; } pIdxInfo->idxNum = 1; pIdxInfo->aConstraintUsage[ii].argvIndex = 1; pIdxInfo->aConstraintUsage[jj].omit = 1; /* This strategy involves a two rowid lookups on an B-Tree structures ** and then a linear search of an R-Tree node. This should be ** considered almost as quick as a direct rowid lookup (for which ** sqlite uses an internal cost of 0.0). It is expected to return ** a single row. */ pIdxInfo->estimatedCost = 30.0; pIdxInfo->estimatedRows = 1; pIdxInfo->idxFlags = SQLITE_INDEX_SCAN_UNIQUE; return SQLITE_OK; } if( p->usable && ((p->iColumn>0 && p->iColumn<=pRtree->nDim2) || p->op==SQLITE_INDEX_CONSTRAINT_MATCH) ){ u8 op; switch( p->op ){ case SQLITE_INDEX_CONSTRAINT_EQ: op = RTREE_EQ; break; case SQLITE_INDEX_CONSTRAINT_GT: op = RTREE_GT; break; case SQLITE_INDEX_CONSTRAINT_LE: op = RTREE_LE; break; case SQLITE_INDEX_CONSTRAINT_LT: op = RTREE_LT; break; case SQLITE_INDEX_CONSTRAINT_GE: op = RTREE_GE; break; case SQLITE_INDEX_CONSTRAINT_MATCH: op = RTREE_MATCH; break; default: op = 0; break; } if( op ){ zIdxStr[iIdx++] = op; zIdxStr[iIdx++] = (char)(p->iColumn - 1 + '0'); pIdxInfo->aConstraintUsage[ii].argvIndex = (iIdx/2); pIdxInfo->aConstraintUsage[ii].omit = 1; } } } pIdxInfo->idxNum = 2; pIdxInfo->needToFreeIdxStr = 1; if( iIdx>0 && 0==(pIdxInfo->idxStr = sqlite3_mprintf("%s", zIdxStr)) ){ return SQLITE_NOMEM; } nRow = pRtree->nRowEst >> (iIdx/2); pIdxInfo->estimatedCost = (double)6.0 * (double)nRow; pIdxInfo->estimatedRows = nRow; return rc; } /* ** Return the N-dimensional volumn of the cell stored in *p. */ static RtreeDValue cellArea(Rtree *pRtree, RtreeCell *p){ RtreeDValue area = (RtreeDValue)1; assert( pRtree->nDim>=1 && pRtree->nDim<=5 ); #ifndef SQLITE_RTREE_INT_ONLY if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ switch( pRtree->nDim ){ case 5: area = p->aCoord[9].f - p->aCoord[8].f; case 4: area *= p->aCoord[7].f - p->aCoord[6].f; case 3: area *= p->aCoord[5].f - p->aCoord[4].f; case 2: area *= p->aCoord[3].f - p->aCoord[2].f; default: area *= p->aCoord[1].f - p->aCoord[0].f; } }else #endif { switch( pRtree->nDim ){ case 5: area = (i64)p->aCoord[9].i - (i64)p->aCoord[8].i; case 4: area *= (i64)p->aCoord[7].i - (i64)p->aCoord[6].i; case 3: area *= (i64)p->aCoord[5].i - (i64)p->aCoord[4].i; case 2: area *= (i64)p->aCoord[3].i - (i64)p->aCoord[2].i; default: area *= (i64)p->aCoord[1].i - (i64)p->aCoord[0].i; } } return area; } /* ** Return the margin length of cell p. The margin length is the sum ** of the objects size in each dimension. */ static RtreeDValue cellMargin(Rtree *pRtree, RtreeCell *p){ RtreeDValue margin = 0; int ii = pRtree->nDim2 - 2; do{ margin += (DCOORD(p->aCoord[ii+1]) - DCOORD(p->aCoord[ii])); ii -= 2; }while( ii>=0 ); return margin; } /* ** Store the union of cells p1 and p2 in p1. */ static void cellUnion(Rtree *pRtree, RtreeCell *p1, RtreeCell *p2){ int ii = 0; if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ do{ p1->aCoord[ii].f = MIN(p1->aCoord[ii].f, p2->aCoord[ii].f); p1->aCoord[ii+1].f = MAX(p1->aCoord[ii+1].f, p2->aCoord[ii+1].f); ii += 2; }while( iinDim2 ); }else{ do{ p1->aCoord[ii].i = MIN(p1->aCoord[ii].i, p2->aCoord[ii].i); p1->aCoord[ii+1].i = MAX(p1->aCoord[ii+1].i, p2->aCoord[ii+1].i); ii += 2; }while( iinDim2 ); } } /* ** Return true if the area covered by p2 is a subset of the area covered ** by p1. False otherwise. */ static int cellContains(Rtree *pRtree, RtreeCell *p1, RtreeCell *p2){ int ii; int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); for(ii=0; iinDim2; ii+=2){ RtreeCoord *a1 = &p1->aCoord[ii]; RtreeCoord *a2 = &p2->aCoord[ii]; if( (!isInt && (a2[0].fa1[1].f)) || ( isInt && (a2[0].ia1[1].i)) ){ return 0; } } return 1; } /* ** Return the amount cell p would grow by if it were unioned with pCell. */ static RtreeDValue cellGrowth(Rtree *pRtree, RtreeCell *p, RtreeCell *pCell){ RtreeDValue area; RtreeCell cell; memcpy(&cell, p, sizeof(RtreeCell)); area = cellArea(pRtree, &cell); cellUnion(pRtree, &cell, pCell); return (cellArea(pRtree, &cell)-area); } static RtreeDValue cellOverlap( Rtree *pRtree, RtreeCell *p, RtreeCell *aCell, int nCell ){ int ii; RtreeDValue overlap = RTREE_ZERO; for(ii=0; iinDim2; jj+=2){ RtreeDValue x1, x2; x1 = MAX(DCOORD(p->aCoord[jj]), DCOORD(aCell[ii].aCoord[jj])); x2 = MIN(DCOORD(p->aCoord[jj+1]), DCOORD(aCell[ii].aCoord[jj+1])); if( x2iDepth-iHeight); ii++){ int iCell; sqlite3_int64 iBest = 0; RtreeDValue fMinGrowth = RTREE_ZERO; RtreeDValue fMinArea = RTREE_ZERO; int nCell = NCELL(pNode); RtreeCell cell; RtreeNode *pChild; RtreeCell *aCell = 0; /* Select the child node which will be enlarged the least if pCell ** is inserted into it. Resolve ties by choosing the entry with ** the smallest area. */ for(iCell=0; iCellpParent ){ RtreeNode *pParent = p->pParent; RtreeCell cell; int iCell; if( (++cnt)>1000 || nodeParentIndex(pRtree, p, &iCell) ){ RTREE_IS_CORRUPT(pRtree); return SQLITE_CORRUPT_VTAB; } nodeGetCell(pRtree, pParent, iCell, &cell); if( !cellContains(pRtree, &cell, pCell) ){ cellUnion(pRtree, &cell, pCell); nodeOverwriteCell(pRtree, pParent, &cell, iCell); } p = pParent; } return SQLITE_OK; } /* ** Write mapping (iRowid->iNode) to the _rowid table. */ static int rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode){ sqlite3_bind_int64(pRtree->pWriteRowid, 1, iRowid); sqlite3_bind_int64(pRtree->pWriteRowid, 2, iNode); sqlite3_step(pRtree->pWriteRowid); return sqlite3_reset(pRtree->pWriteRowid); } /* ** Write mapping (iNode->iPar) to the _parent table. */ static int parentWrite(Rtree *pRtree, sqlite3_int64 iNode, sqlite3_int64 iPar){ sqlite3_bind_int64(pRtree->pWriteParent, 1, iNode); sqlite3_bind_int64(pRtree->pWriteParent, 2, iPar); sqlite3_step(pRtree->pWriteParent); return sqlite3_reset(pRtree->pWriteParent); } static int rtreeInsertCell(Rtree *, RtreeNode *, RtreeCell *, int); /* ** Arguments aIdx, aDistance and aSpare all point to arrays of size ** nIdx. The aIdx array contains the set of integers from 0 to ** (nIdx-1) in no particular order. This function sorts the values ** in aIdx according to the indexed values in aDistance. For ** example, assuming the inputs: ** ** aIdx = { 0, 1, 2, 3 } ** aDistance = { 5.0, 2.0, 7.0, 6.0 } ** ** this function sets the aIdx array to contain: ** ** aIdx = { 0, 1, 2, 3 } ** ** The aSpare array is used as temporary working space by the ** sorting algorithm. */ static void SortByDistance( int *aIdx, int nIdx, RtreeDValue *aDistance, int *aSpare ){ if( nIdx>1 ){ int iLeft = 0; int iRight = 0; int nLeft = nIdx/2; int nRight = nIdx-nLeft; int *aLeft = aIdx; int *aRight = &aIdx[nLeft]; SortByDistance(aLeft, nLeft, aDistance, aSpare); SortByDistance(aRight, nRight, aDistance, aSpare); memcpy(aSpare, aLeft, sizeof(int)*nLeft); aLeft = aSpare; while( iLeft1 ){ int iLeft = 0; int iRight = 0; int nLeft = nIdx/2; int nRight = nIdx-nLeft; int *aLeft = aIdx; int *aRight = &aIdx[nLeft]; SortByDimension(pRtree, aLeft, nLeft, iDim, aCell, aSpare); SortByDimension(pRtree, aRight, nRight, iDim, aCell, aSpare); memcpy(aSpare, aLeft, sizeof(int)*nLeft); aLeft = aSpare; while( iLeftnDim+1)*(sizeof(int*)+nCell*sizeof(int)); aaSorted = (int **)sqlite3_malloc64(nByte); if( !aaSorted ){ return SQLITE_NOMEM; } aSpare = &((int *)&aaSorted[pRtree->nDim])[pRtree->nDim*nCell]; memset(aaSorted, 0, nByte); for(ii=0; iinDim; ii++){ int jj; aaSorted[ii] = &((int *)&aaSorted[pRtree->nDim])[ii*nCell]; for(jj=0; jjnDim; ii++){ RtreeDValue margin = RTREE_ZERO; RtreeDValue fBestOverlap = RTREE_ZERO; RtreeDValue fBestArea = RTREE_ZERO; int iBestLeft = 0; int nLeft; for( nLeft=RTREE_MINCELLS(pRtree); nLeft<=(nCell-RTREE_MINCELLS(pRtree)); nLeft++ ){ RtreeCell left; RtreeCell right; int kk; RtreeDValue overlap; RtreeDValue area; memcpy(&left, &aCell[aaSorted[ii][0]], sizeof(RtreeCell)); memcpy(&right, &aCell[aaSorted[ii][nCell-1]], sizeof(RtreeCell)); for(kk=1; kk<(nCell-1); kk++){ if( kk0 ){ RtreeNode *pChild = nodeHashLookup(pRtree, iRowid); if( pChild ){ nodeRelease(pRtree, pChild->pParent); nodeReference(pNode); pChild->pParent = pNode; } } return xSetMapping(pRtree, iRowid, pNode->iNode); } static int SplitNode( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ){ int i; int newCellIsRight = 0; int rc = SQLITE_OK; int nCell = NCELL(pNode); RtreeCell *aCell; int *aiUsed; RtreeNode *pLeft = 0; RtreeNode *pRight = 0; RtreeCell leftbbox; RtreeCell rightbbox; /* Allocate an array and populate it with a copy of pCell and ** all cells from node pLeft. Then zero the original node. */ aCell = sqlite3_malloc64((sizeof(RtreeCell)+sizeof(int))*(nCell+1)); if( !aCell ){ rc = SQLITE_NOMEM; goto splitnode_out; } aiUsed = (int *)&aCell[nCell+1]; memset(aiUsed, 0, sizeof(int)*(nCell+1)); for(i=0; iiNode==1 ){ pRight = nodeNew(pRtree, pNode); pLeft = nodeNew(pRtree, pNode); pRtree->iDepth++; pNode->isDirty = 1; writeInt16(pNode->zData, pRtree->iDepth); }else{ pLeft = pNode; pRight = nodeNew(pRtree, pLeft->pParent); pLeft->nRef++; } if( !pLeft || !pRight ){ rc = SQLITE_NOMEM; goto splitnode_out; } memset(pLeft->zData, 0, pRtree->iNodeSize); memset(pRight->zData, 0, pRtree->iNodeSize); rc = splitNodeStartree(pRtree, aCell, nCell, pLeft, pRight, &leftbbox, &rightbbox); if( rc!=SQLITE_OK ){ goto splitnode_out; } /* Ensure both child nodes have node numbers assigned to them by calling ** nodeWrite(). Node pRight always needs a node number, as it was created ** by nodeNew() above. But node pLeft sometimes already has a node number. ** In this case avoid the all to nodeWrite(). */ if( SQLITE_OK!=(rc = nodeWrite(pRtree, pRight)) || (0==pLeft->iNode && SQLITE_OK!=(rc = nodeWrite(pRtree, pLeft))) ){ goto splitnode_out; } rightbbox.iRowid = pRight->iNode; leftbbox.iRowid = pLeft->iNode; if( pNode->iNode==1 ){ rc = rtreeInsertCell(pRtree, pLeft->pParent, &leftbbox, iHeight+1); if( rc!=SQLITE_OK ){ goto splitnode_out; } }else{ RtreeNode *pParent = pLeft->pParent; int iCell; rc = nodeParentIndex(pRtree, pLeft, &iCell); if( rc==SQLITE_OK ){ nodeOverwriteCell(pRtree, pParent, &leftbbox, iCell); rc = AdjustTree(pRtree, pParent, &leftbbox); } if( rc!=SQLITE_OK ){ goto splitnode_out; } } if( (rc = rtreeInsertCell(pRtree, pRight->pParent, &rightbbox, iHeight+1)) ){ goto splitnode_out; } for(i=0; iiRowid ){ newCellIsRight = 1; } if( rc!=SQLITE_OK ){ goto splitnode_out; } } if( pNode->iNode==1 ){ for(i=0; iiRowid, pLeft, iHeight); } if( rc==SQLITE_OK ){ rc = nodeRelease(pRtree, pRight); pRight = 0; } if( rc==SQLITE_OK ){ rc = nodeRelease(pRtree, pLeft); pLeft = 0; } splitnode_out: nodeRelease(pRtree, pRight); nodeRelease(pRtree, pLeft); sqlite3_free(aCell); return rc; } /* ** If node pLeaf is not the root of the r-tree and its pParent pointer is ** still NULL, load all ancestor nodes of pLeaf into memory and populate ** the pLeaf->pParent chain all the way up to the root node. ** ** This operation is required when a row is deleted (or updated - an update ** is implemented as a delete followed by an insert). SQLite provides the ** rowid of the row to delete, which can be used to find the leaf on which ** the entry resides (argument pLeaf). Once the leaf is located, this ** function is called to determine its ancestry. */ static int fixLeafParent(Rtree *pRtree, RtreeNode *pLeaf){ int rc = SQLITE_OK; RtreeNode *pChild = pLeaf; while( rc==SQLITE_OK && pChild->iNode!=1 && pChild->pParent==0 ){ int rc2 = SQLITE_OK; /* sqlite3_reset() return code */ sqlite3_bind_int64(pRtree->pReadParent, 1, pChild->iNode); rc = sqlite3_step(pRtree->pReadParent); if( rc==SQLITE_ROW ){ RtreeNode *pTest; /* Used to test for reference loops */ i64 iNode; /* Node number of parent node */ /* Before setting pChild->pParent, test that we are not creating a ** loop of references (as we would if, say, pChild==pParent). We don't ** want to do this as it leads to a memory leak when trying to delete ** the referenced counted node structures. */ iNode = sqlite3_column_int64(pRtree->pReadParent, 0); for(pTest=pLeaf; pTest && pTest->iNode!=iNode; pTest=pTest->pParent); if( !pTest ){ rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent); } } rc = sqlite3_reset(pRtree->pReadParent); if( rc==SQLITE_OK ) rc = rc2; if( rc==SQLITE_OK && !pChild->pParent ){ RTREE_IS_CORRUPT(pRtree); rc = SQLITE_CORRUPT_VTAB; } pChild = pChild->pParent; } return rc; } static int deleteCell(Rtree *, RtreeNode *, int, int); static int removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight){ int rc; int rc2; RtreeNode *pParent = 0; int iCell; assert( pNode->nRef==1 ); /* Remove the entry in the parent cell. */ rc = nodeParentIndex(pRtree, pNode, &iCell); if( rc==SQLITE_OK ){ pParent = pNode->pParent; pNode->pParent = 0; rc = deleteCell(pRtree, pParent, iCell, iHeight+1); } rc2 = nodeRelease(pRtree, pParent); if( rc==SQLITE_OK ){ rc = rc2; } if( rc!=SQLITE_OK ){ return rc; } /* Remove the xxx_node entry. */ sqlite3_bind_int64(pRtree->pDeleteNode, 1, pNode->iNode); sqlite3_step(pRtree->pDeleteNode); if( SQLITE_OK!=(rc = sqlite3_reset(pRtree->pDeleteNode)) ){ return rc; } /* Remove the xxx_parent entry. */ sqlite3_bind_int64(pRtree->pDeleteParent, 1, pNode->iNode); sqlite3_step(pRtree->pDeleteParent); if( SQLITE_OK!=(rc = sqlite3_reset(pRtree->pDeleteParent)) ){ return rc; } /* Remove the node from the in-memory hash table and link it into ** the Rtree.pDeleted list. Its contents will be re-inserted later on. */ nodeHashDelete(pRtree, pNode); pNode->iNode = iHeight; pNode->pNext = pRtree->pDeleted; pNode->nRef++; pRtree->pDeleted = pNode; return SQLITE_OK; } static int fixBoundingBox(Rtree *pRtree, RtreeNode *pNode){ RtreeNode *pParent = pNode->pParent; int rc = SQLITE_OK; if( pParent ){ int ii; int nCell = NCELL(pNode); RtreeCell box; /* Bounding box for pNode */ nodeGetCell(pRtree, pNode, 0, &box); for(ii=1; iiiNode; rc = nodeParentIndex(pRtree, pNode, &ii); if( rc==SQLITE_OK ){ nodeOverwriteCell(pRtree, pParent, &box, ii); rc = fixBoundingBox(pRtree, pParent); } } return rc; } /* ** Delete the cell at index iCell of node pNode. After removing the ** cell, adjust the r-tree data structure if required. */ static int deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight){ RtreeNode *pParent; int rc; if( SQLITE_OK!=(rc = fixLeafParent(pRtree, pNode)) ){ return rc; } /* Remove the cell from the node. This call just moves bytes around ** the in-memory node image, so it cannot fail. */ nodeDeleteCell(pRtree, pNode, iCell); /* If the node is not the tree root and now has less than the minimum ** number of cells, remove it from the tree. Otherwise, update the ** cell in the parent node so that it tightly contains the updated ** node. */ pParent = pNode->pParent; assert( pParent || pNode->iNode==1 ); if( pParent ){ if( NCELL(pNode)nDim; iDim++){ aCenterCoord[iDim] += DCOORD(aCell[ii].aCoord[iDim*2]); aCenterCoord[iDim] += DCOORD(aCell[ii].aCoord[iDim*2+1]); } } for(iDim=0; iDimnDim; iDim++){ aCenterCoord[iDim] = (aCenterCoord[iDim]/(nCell*(RtreeDValue)2)); } for(ii=0; iinDim; iDim++){ RtreeDValue coord = (DCOORD(aCell[ii].aCoord[iDim*2+1]) - DCOORD(aCell[ii].aCoord[iDim*2])); aDistance[ii] += (coord-aCenterCoord[iDim])*(coord-aCenterCoord[iDim]); } } SortByDistance(aOrder, nCell, aDistance, aSpare); nodeZero(pRtree, pNode); for(ii=0; rc==SQLITE_OK && ii<(nCell-(RTREE_MINCELLS(pRtree)+1)); ii++){ RtreeCell *p = &aCell[aOrder[ii]]; nodeInsertCell(pRtree, pNode, p); if( p->iRowid==pCell->iRowid ){ if( iHeight==0 ){ rc = rowidWrite(pRtree, p->iRowid, pNode->iNode); }else{ rc = parentWrite(pRtree, p->iRowid, pNode->iNode); } } } if( rc==SQLITE_OK ){ rc = fixBoundingBox(pRtree, pNode); } for(; rc==SQLITE_OK && iiiNode currently contains ** the height of the sub-tree headed by the cell. */ RtreeNode *pInsert; RtreeCell *p = &aCell[aOrder[ii]]; rc = ChooseLeaf(pRtree, p, iHeight, &pInsert); if( rc==SQLITE_OK ){ int rc2; rc = rtreeInsertCell(pRtree, pInsert, p, iHeight); rc2 = nodeRelease(pRtree, pInsert); if( rc==SQLITE_OK ){ rc = rc2; } } } sqlite3_free(aCell); return rc; } /* ** Insert cell pCell into node pNode. Node pNode is the head of a ** subtree iHeight high (leaf nodes have iHeight==0). */ static int rtreeInsertCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ){ int rc = SQLITE_OK; if( iHeight>0 ){ RtreeNode *pChild = nodeHashLookup(pRtree, pCell->iRowid); if( pChild ){ nodeRelease(pRtree, pChild->pParent); nodeReference(pNode); pChild->pParent = pNode; } } if( nodeInsertCell(pRtree, pNode, pCell) ){ if( iHeight<=pRtree->iReinsertHeight || pNode->iNode==1){ rc = SplitNode(pRtree, pNode, pCell, iHeight); }else{ pRtree->iReinsertHeight = iHeight; rc = Reinsert(pRtree, pNode, pCell, iHeight); } }else{ rc = AdjustTree(pRtree, pNode, pCell); if( rc==SQLITE_OK ){ if( iHeight==0 ){ rc = rowidWrite(pRtree, pCell->iRowid, pNode->iNode); }else{ rc = parentWrite(pRtree, pCell->iRowid, pNode->iNode); } } } return rc; } static int reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode){ int ii; int rc = SQLITE_OK; int nCell = NCELL(pNode); for(ii=0; rc==SQLITE_OK && iiiNode currently contains ** the height of the sub-tree headed by the cell. */ rc = ChooseLeaf(pRtree, &cell, (int)pNode->iNode, &pInsert); if( rc==SQLITE_OK ){ int rc2; rc = rtreeInsertCell(pRtree, pInsert, &cell, (int)pNode->iNode); rc2 = nodeRelease(pRtree, pInsert); if( rc==SQLITE_OK ){ rc = rc2; } } } return rc; } /* ** Select a currently unused rowid for a new r-tree record. */ static int rtreeNewRowid(Rtree *pRtree, i64 *piRowid){ int rc; sqlite3_bind_null(pRtree->pWriteRowid, 1); sqlite3_bind_null(pRtree->pWriteRowid, 2); sqlite3_step(pRtree->pWriteRowid); rc = sqlite3_reset(pRtree->pWriteRowid); *piRowid = sqlite3_last_insert_rowid(pRtree->db); return rc; } /* ** Remove the entry with rowid=iDelete from the r-tree structure. */ static int rtreeDeleteRowid(Rtree *pRtree, sqlite3_int64 iDelete){ int rc; /* Return code */ RtreeNode *pLeaf = 0; /* Leaf node containing record iDelete */ int iCell; /* Index of iDelete cell in pLeaf */ RtreeNode *pRoot = 0; /* Root node of rtree structure */ /* Obtain a reference to the root node to initialize Rtree.iDepth */ rc = nodeAcquire(pRtree, 1, 0, &pRoot); /* Obtain a reference to the leaf node that contains the entry ** about to be deleted. */ if( rc==SQLITE_OK ){ rc = findLeafNode(pRtree, iDelete, &pLeaf, 0); } #ifdef CORRUPT_DB assert( pLeaf!=0 || rc!=SQLITE_OK || CORRUPT_DB ); #endif /* Delete the cell in question from the leaf node. */ if( rc==SQLITE_OK && pLeaf ){ int rc2; rc = nodeRowidIndex(pRtree, pLeaf, iDelete, &iCell); if( rc==SQLITE_OK ){ rc = deleteCell(pRtree, pLeaf, iCell, 0); } rc2 = nodeRelease(pRtree, pLeaf); if( rc==SQLITE_OK ){ rc = rc2; } } /* Delete the corresponding entry in the _rowid table. */ if( rc==SQLITE_OK ){ sqlite3_bind_int64(pRtree->pDeleteRowid, 1, iDelete); sqlite3_step(pRtree->pDeleteRowid); rc = sqlite3_reset(pRtree->pDeleteRowid); } /* Check if the root node now has exactly one child. If so, remove ** it, schedule the contents of the child for reinsertion and ** reduce the tree height by one. ** ** This is equivalent to copying the contents of the child into ** the root node (the operation that Gutman's paper says to perform ** in this scenario). */ if( rc==SQLITE_OK && pRtree->iDepth>0 && NCELL(pRoot)==1 ){ int rc2; RtreeNode *pChild = 0; i64 iChild = nodeGetRowid(pRtree, pRoot, 0); rc = nodeAcquire(pRtree, iChild, pRoot, &pChild); if( rc==SQLITE_OK ){ rc = removeNode(pRtree, pChild, pRtree->iDepth-1); } rc2 = nodeRelease(pRtree, pChild); if( rc==SQLITE_OK ) rc = rc2; if( rc==SQLITE_OK ){ pRtree->iDepth--; writeInt16(pRoot->zData, pRtree->iDepth); pRoot->isDirty = 1; } } /* Re-insert the contents of any underfull nodes removed from the tree. */ for(pLeaf=pRtree->pDeleted; pLeaf; pLeaf=pRtree->pDeleted){ if( rc==SQLITE_OK ){ rc = reinsertNodeContent(pRtree, pLeaf); } pRtree->pDeleted = pLeaf->pNext; pRtree->nNodeRef--; sqlite3_free(pLeaf); } /* Release the reference to the root node. */ if( rc==SQLITE_OK ){ rc = nodeRelease(pRtree, pRoot); }else{ nodeRelease(pRtree, pRoot); } return rc; } /* ** Rounding constants for float->double conversion. */ #define RNDTOWARDS (1.0 - 1.0/8388608.0) /* Round towards zero */ #define RNDAWAY (1.0 + 1.0/8388608.0) /* Round away from zero */ #if !defined(SQLITE_RTREE_INT_ONLY) /* ** Convert an sqlite3_value into an RtreeValue (presumably a float) ** while taking care to round toward negative or positive, respectively. */ static RtreeValue rtreeValueDown(sqlite3_value *v){ double d = sqlite3_value_double(v); float f = (float)d; if( f>d ){ f = (float)(d*(d<0 ? RNDAWAY : RNDTOWARDS)); } return f; } static RtreeValue rtreeValueUp(sqlite3_value *v){ double d = sqlite3_value_double(v); float f = (float)d; if( fbase.zErrMsg) to an appropriate value and returns ** SQLITE_CONSTRAINT. ** ** Parameter iCol is the index of the leftmost column involved in the ** constraint failure. If it is 0, then the constraint that failed is ** the unique constraint on the id column. Otherwise, it is the rtree ** (c1<=c2) constraint on columns iCol and iCol+1 that has failed. ** ** If an OOM occurs, SQLITE_NOMEM is returned instead of SQLITE_CONSTRAINT. */ static int rtreeConstraintError(Rtree *pRtree, int iCol){ sqlite3_stmt *pStmt = 0; char *zSql; int rc; assert( iCol==0 || iCol%2 ); zSql = sqlite3_mprintf("SELECT * FROM %Q.%Q", pRtree->zDb, pRtree->zName); if( zSql ){ rc = sqlite3_prepare_v2(pRtree->db, zSql, -1, &pStmt, 0); }else{ rc = SQLITE_NOMEM; } sqlite3_free(zSql); if( rc==SQLITE_OK ){ if( iCol==0 ){ const char *zCol = sqlite3_column_name(pStmt, 0); pRtree->base.zErrMsg = sqlite3_mprintf( "UNIQUE constraint failed: %s.%s", pRtree->zName, zCol ); }else{ const char *zCol1 = sqlite3_column_name(pStmt, iCol); const char *zCol2 = sqlite3_column_name(pStmt, iCol+1); pRtree->base.zErrMsg = sqlite3_mprintf( "rtree constraint failed: %s.(%s<=%s)", pRtree->zName, zCol1, zCol2 ); } } sqlite3_finalize(pStmt); return (rc==SQLITE_OK ? SQLITE_CONSTRAINT : rc); } /* ** The xUpdate method for rtree module virtual tables. */ static int rtreeUpdate( sqlite3_vtab *pVtab, int nData, sqlite3_value **aData, sqlite_int64 *pRowid ){ Rtree *pRtree = (Rtree *)pVtab; int rc = SQLITE_OK; RtreeCell cell; /* New cell to insert if nData>1 */ int bHaveRowid = 0; /* Set to 1 after new rowid is determined */ if( pRtree->nNodeRef ){ /* Unable to write to the btree while another cursor is reading from it, ** since the write might do a rebalance which would disrupt the read ** cursor. */ return SQLITE_LOCKED_VTAB; } rtreeReference(pRtree); assert(nData>=1); cell.iRowid = 0; /* Used only to suppress a compiler warning */ /* Constraint handling. A write operation on an r-tree table may return ** SQLITE_CONSTRAINT for two reasons: ** ** 1. A duplicate rowid value, or ** 2. The supplied data violates the "x2>=x1" constraint. ** ** In the first case, if the conflict-handling mode is REPLACE, then ** the conflicting row can be removed before proceeding. In the second ** case, SQLITE_CONSTRAINT must be returned regardless of the ** conflict-handling mode specified by the user. */ if( nData>1 ){ int ii; int nn = nData - 4; if( nn > pRtree->nDim2 ) nn = pRtree->nDim2; /* Populate the cell.aCoord[] array. The first coordinate is aData[3]. ** ** NB: nData can only be less than nDim*2+3 if the rtree is mis-declared ** with "column" that are interpreted as table constraints. ** Example: CREATE VIRTUAL TABLE bad USING rtree(x,y,CHECK(y>5)); ** This problem was discovered after years of use, so we silently ignore ** these kinds of misdeclared tables to avoid breaking any legacy. */ #ifndef SQLITE_RTREE_INT_ONLY if( pRtree->eCoordType==RTREE_COORD_REAL32 ){ for(ii=0; iicell.aCoord[ii+1].f ){ rc = rtreeConstraintError(pRtree, ii+1); goto constraint; } } }else #endif { for(ii=0; iicell.aCoord[ii+1].i ){ rc = rtreeConstraintError(pRtree, ii+1); goto constraint; } } } /* If a rowid value was supplied, check if it is already present in ** the table. If so, the constraint has failed. */ if( sqlite3_value_type(aData[2])!=SQLITE_NULL ){ cell.iRowid = sqlite3_value_int64(aData[2]); if( sqlite3_value_type(aData[0])==SQLITE_NULL || sqlite3_value_int64(aData[0])!=cell.iRowid ){ int steprc; sqlite3_bind_int64(pRtree->pReadRowid, 1, cell.iRowid); steprc = sqlite3_step(pRtree->pReadRowid); rc = sqlite3_reset(pRtree->pReadRowid); if( SQLITE_ROW==steprc ){ if( sqlite3_vtab_on_conflict(pRtree->db)==SQLITE_REPLACE ){ rc = rtreeDeleteRowid(pRtree, cell.iRowid); }else{ rc = rtreeConstraintError(pRtree, 0); goto constraint; } } } bHaveRowid = 1; } } /* If aData[0] is not an SQL NULL value, it is the rowid of a ** record to delete from the r-tree table. The following block does ** just that. */ if( sqlite3_value_type(aData[0])!=SQLITE_NULL ){ rc = rtreeDeleteRowid(pRtree, sqlite3_value_int64(aData[0])); } /* If the aData[] array contains more than one element, elements ** (aData[2]..aData[argc-1]) contain a new record to insert into ** the r-tree structure. */ if( rc==SQLITE_OK && nData>1 ){ /* Insert the new record into the r-tree */ RtreeNode *pLeaf = 0; /* Figure out the rowid of the new row. */ if( bHaveRowid==0 ){ rc = rtreeNewRowid(pRtree, &cell.iRowid); } *pRowid = cell.iRowid; if( rc==SQLITE_OK ){ rc = ChooseLeaf(pRtree, &cell, 0, &pLeaf); } if( rc==SQLITE_OK ){ int rc2; pRtree->iReinsertHeight = -1; rc = rtreeInsertCell(pRtree, pLeaf, &cell, 0); rc2 = nodeRelease(pRtree, pLeaf); if( rc==SQLITE_OK ){ rc = rc2; } } if( rc==SQLITE_OK && pRtree->nAux ){ sqlite3_stmt *pUp = pRtree->pWriteAux; int jj; sqlite3_bind_int64(pUp, 1, *pRowid); for(jj=0; jjnAux; jj++){ sqlite3_bind_value(pUp, jj+2, aData[pRtree->nDim2+3+jj]); } sqlite3_step(pUp); rc = sqlite3_reset(pUp); } } constraint: rtreeRelease(pRtree); return rc; } /* ** Called when a transaction starts. */ static int rtreeBeginTransaction(sqlite3_vtab *pVtab){ Rtree *pRtree = (Rtree *)pVtab; assert( pRtree->inWrTrans==0 ); pRtree->inWrTrans++; return SQLITE_OK; } /* ** Called when a transaction completes (either by COMMIT or ROLLBACK). ** The sqlite3_blob object should be released at this point. */ static int rtreeEndTransaction(sqlite3_vtab *pVtab){ Rtree *pRtree = (Rtree *)pVtab; pRtree->inWrTrans = 0; nodeBlobReset(pRtree); return SQLITE_OK; } /* ** The xRename method for rtree module virtual tables. */ static int rtreeRename(sqlite3_vtab *pVtab, const char *zNewName){ Rtree *pRtree = (Rtree *)pVtab; int rc = SQLITE_NOMEM; char *zSql = sqlite3_mprintf( "ALTER TABLE %Q.'%q_node' RENAME TO \"%w_node\";" "ALTER TABLE %Q.'%q_parent' RENAME TO \"%w_parent\";" "ALTER TABLE %Q.'%q_rowid' RENAME TO \"%w_rowid\";" , pRtree->zDb, pRtree->zName, zNewName , pRtree->zDb, pRtree->zName, zNewName , pRtree->zDb, pRtree->zName, zNewName ); if( zSql ){ nodeBlobReset(pRtree); rc = sqlite3_exec(pRtree->db, zSql, 0, 0, 0); sqlite3_free(zSql); } return rc; } /* ** The xSavepoint method. ** ** This module does not need to do anything to support savepoints. However, ** it uses this hook to close any open blob handle. This is done because a ** DROP TABLE command - which fortunately always opens a savepoint - cannot ** succeed if there are any open blob handles. i.e. if the blob handle were ** not closed here, the following would fail: ** ** BEGIN; ** INSERT INTO rtree... ** DROP TABLE ; -- Would fail with SQLITE_LOCKED ** COMMIT; */ static int rtreeSavepoint(sqlite3_vtab *pVtab, int iSavepoint){ Rtree *pRtree = (Rtree *)pVtab; u8 iwt = pRtree->inWrTrans; UNUSED_PARAMETER(iSavepoint); pRtree->inWrTrans = 0; nodeBlobReset(pRtree); pRtree->inWrTrans = iwt; return SQLITE_OK; } /* ** This function populates the pRtree->nRowEst variable with an estimate ** of the number of rows in the virtual table. If possible, this is based ** on sqlite_stat1 data. Otherwise, use RTREE_DEFAULT_ROWEST. */ static int rtreeQueryStat1(sqlite3 *db, Rtree *pRtree){ const char *zFmt = "SELECT stat FROM %Q.sqlite_stat1 WHERE tbl = '%q_rowid'"; char *zSql; sqlite3_stmt *p; int rc; i64 nRow = 0; rc = sqlite3_table_column_metadata( db, pRtree->zDb, "sqlite_stat1",0,0,0,0,0,0 ); if( rc!=SQLITE_OK ){ pRtree->nRowEst = RTREE_DEFAULT_ROWEST; return rc==SQLITE_ERROR ? SQLITE_OK : rc; } zSql = sqlite3_mprintf(zFmt, pRtree->zDb, pRtree->zName); if( zSql==0 ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v2(db, zSql, -1, &p, 0); if( rc==SQLITE_OK ){ if( sqlite3_step(p)==SQLITE_ROW ) nRow = sqlite3_column_int64(p, 0); rc = sqlite3_finalize(p); }else if( rc!=SQLITE_NOMEM ){ rc = SQLITE_OK; } if( rc==SQLITE_OK ){ if( nRow==0 ){ pRtree->nRowEst = RTREE_DEFAULT_ROWEST; }else{ pRtree->nRowEst = MAX(nRow, RTREE_MIN_ROWEST); } } sqlite3_free(zSql); } return rc; } /* ** Return true if zName is the extension on one of the shadow tables used ** by this module. */ static int rtreeShadowName(const char *zName){ static const char *azName[] = { "node", "parent", "rowid" }; unsigned int i; for(i=0; idb = db; if( isCreate ){ char *zCreate; sqlite3_str *p = sqlite3_str_new(db); int ii; sqlite3_str_appendf(p, "CREATE TABLE \"%w\".\"%w_rowid\"(rowid INTEGER PRIMARY KEY,nodeno", zDb, zPrefix); for(ii=0; iinAux; ii++){ sqlite3_str_appendf(p,",a%d",ii); } sqlite3_str_appendf(p, ");CREATE TABLE \"%w\".\"%w_node\"(nodeno INTEGER PRIMARY KEY,data);", zDb, zPrefix); sqlite3_str_appendf(p, "CREATE TABLE \"%w\".\"%w_parent\"(nodeno INTEGER PRIMARY KEY,parentnode);", zDb, zPrefix); sqlite3_str_appendf(p, "INSERT INTO \"%w\".\"%w_node\"VALUES(1,zeroblob(%d))", zDb, zPrefix, pRtree->iNodeSize); zCreate = sqlite3_str_finish(p); if( !zCreate ){ return SQLITE_NOMEM; } rc = sqlite3_exec(db, zCreate, 0, 0, 0); sqlite3_free(zCreate); if( rc!=SQLITE_OK ){ return rc; } } appStmt[0] = &pRtree->pWriteNode; appStmt[1] = &pRtree->pDeleteNode; appStmt[2] = &pRtree->pReadRowid; appStmt[3] = &pRtree->pWriteRowid; appStmt[4] = &pRtree->pDeleteRowid; appStmt[5] = &pRtree->pReadParent; appStmt[6] = &pRtree->pWriteParent; appStmt[7] = &pRtree->pDeleteParent; rc = rtreeQueryStat1(db, pRtree); for(i=0; inAux==0 ){ zFormat = azSql[i]; }else { /* An UPSERT is very slightly slower than REPLACE, but it is needed ** if there are auxiliary columns */ zFormat = "INSERT INTO\"%w\".\"%w_rowid\"(rowid,nodeno)VALUES(?1,?2)" "ON CONFLICT(rowid)DO UPDATE SET nodeno=excluded.nodeno"; } zSql = sqlite3_mprintf(zFormat, zDb, zPrefix); if( zSql ){ rc = sqlite3_prepare_v3(db, zSql, -1, f, appStmt[i], 0); }else{ rc = SQLITE_NOMEM; } sqlite3_free(zSql); } if( pRtree->nAux ){ pRtree->zReadAuxSql = sqlite3_mprintf( "SELECT * FROM \"%w\".\"%w_rowid\" WHERE rowid=?1", zDb, zPrefix); if( pRtree->zReadAuxSql==0 ){ rc = SQLITE_NOMEM; }else{ sqlite3_str *p = sqlite3_str_new(db); int ii; char *zSql; sqlite3_str_appendf(p, "UPDATE \"%w\".\"%w_rowid\"SET ", zDb, zPrefix); for(ii=0; iinAux; ii++){ if( ii ) sqlite3_str_append(p, ",", 1); if( iinAuxNotNull ){ sqlite3_str_appendf(p,"a%d=coalesce(?%d,a%d)",ii,ii+2,ii); }else{ sqlite3_str_appendf(p,"a%d=?%d",ii,ii+2); } } sqlite3_str_appendf(p, " WHERE rowid=?1"); zSql = sqlite3_str_finish(p); if( zSql==0 ){ rc = SQLITE_NOMEM; }else{ rc = sqlite3_prepare_v3(db, zSql, -1, f, &pRtree->pWriteAux, 0); sqlite3_free(zSql); } } } return rc; } /* ** The second argument to this function contains the text of an SQL statement ** that returns a single integer value. The statement is compiled and executed ** using database connection db. If successful, the integer value returned ** is written to *piVal and SQLITE_OK returned. Otherwise, an SQLite error ** code is returned and the value of *piVal after returning is not defined. */ static int getIntFromStmt(sqlite3 *db, const char *zSql, int *piVal){ int rc = SQLITE_NOMEM; if( zSql ){ sqlite3_stmt *pStmt = 0; rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); if( rc==SQLITE_OK ){ if( SQLITE_ROW==sqlite3_step(pStmt) ){ *piVal = sqlite3_column_int(pStmt, 0); } rc = sqlite3_finalize(pStmt); } } return rc; } /* ** This function is called from within the xConnect() or xCreate() method to ** determine the node-size used by the rtree table being created or connected ** to. If successful, pRtree->iNodeSize is populated and SQLITE_OK returned. ** Otherwise, an SQLite error code is returned. ** ** If this function is being called as part of an xConnect(), then the rtree ** table already exists. In this case the node-size is determined by inspecting ** the root node of the tree. ** ** Otherwise, for an xCreate(), use 64 bytes less than the database page-size. ** This ensures that each node is stored on a single database page. If the ** database page-size is so large that more than RTREE_MAXCELLS entries ** would fit in a single node, use a smaller node-size. */ static int getNodeSize( sqlite3 *db, /* Database handle */ Rtree *pRtree, /* Rtree handle */ int isCreate, /* True for xCreate, false for xConnect */ char **pzErr /* OUT: Error message, if any */ ){ int rc; char *zSql; if( isCreate ){ int iPageSize = 0; zSql = sqlite3_mprintf("PRAGMA %Q.page_size", pRtree->zDb); rc = getIntFromStmt(db, zSql, &iPageSize); if( rc==SQLITE_OK ){ pRtree->iNodeSize = iPageSize-64; if( (4+pRtree->nBytesPerCell*RTREE_MAXCELLS)iNodeSize ){ pRtree->iNodeSize = 4+pRtree->nBytesPerCell*RTREE_MAXCELLS; } }else{ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); } }else{ zSql = sqlite3_mprintf( "SELECT length(data) FROM '%q'.'%q_node' WHERE nodeno = 1", pRtree->zDb, pRtree->zName ); rc = getIntFromStmt(db, zSql, &pRtree->iNodeSize); if( rc!=SQLITE_OK ){ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); }else if( pRtree->iNodeSize<(512-64) ){ rc = SQLITE_CORRUPT_VTAB; RTREE_IS_CORRUPT(pRtree); *pzErr = sqlite3_mprintf("undersize RTree blobs in \"%q_node\"", pRtree->zName); } } sqlite3_free(zSql); return rc; } /* ** Return the length of a token */ static int rtreeTokenLength(const char *z){ int dummy = 0; return sqlite3GetToken((const unsigned char*)z,&dummy); } /* ** This function is the implementation of both the xConnect and xCreate ** methods of the r-tree virtual table. ** ** argv[0] -> module name ** argv[1] -> database name ** argv[2] -> table name ** argv[...] -> column names... */ static int rtreeInit( sqlite3 *db, /* Database connection */ void *pAux, /* One of the RTREE_COORD_* constants */ int argc, const char *const*argv, /* Parameters to CREATE TABLE statement */ sqlite3_vtab **ppVtab, /* OUT: New virtual table */ char **pzErr, /* OUT: Error message, if any */ int isCreate /* True for xCreate, false for xConnect */ ){ int rc = SQLITE_OK; Rtree *pRtree; int nDb; /* Length of string argv[1] */ int nName; /* Length of string argv[2] */ int eCoordType = (pAux ? RTREE_COORD_INT32 : RTREE_COORD_REAL32); sqlite3_str *pSql; char *zSql; int ii = 4; int iErr; const char *aErrMsg[] = { 0, /* 0 */ "Wrong number of columns for an rtree table", /* 1 */ "Too few columns for an rtree table", /* 2 */ "Too many columns for an rtree table", /* 3 */ "Auxiliary rtree columns must be last" /* 4 */ }; assert( RTREE_MAX_AUX_COLUMN<256 ); /* Aux columns counted by a u8 */ if( argc<6 || argc>RTREE_MAX_AUX_COLUMN+3 ){ *pzErr = sqlite3_mprintf("%s", aErrMsg[2 + (argc>=6)]); return SQLITE_ERROR; } sqlite3_vtab_config(db, SQLITE_VTAB_CONSTRAINT_SUPPORT, 1); /* Allocate the sqlite3_vtab structure */ nDb = (int)strlen(argv[1]); nName = (int)strlen(argv[2]); pRtree = (Rtree *)sqlite3_malloc64(sizeof(Rtree)+nDb+nName+2); if( !pRtree ){ return SQLITE_NOMEM; } memset(pRtree, 0, sizeof(Rtree)+nDb+nName+2); pRtree->nBusy = 1; pRtree->base.pModule = &rtreeModule; pRtree->zDb = (char *)&pRtree[1]; pRtree->zName = &pRtree->zDb[nDb+1]; pRtree->eCoordType = (u8)eCoordType; memcpy(pRtree->zDb, argv[1], nDb); memcpy(pRtree->zName, argv[2], nName); /* Create/Connect to the underlying relational database schema. If ** that is successful, call sqlite3_declare_vtab() to configure ** the r-tree table schema. */ pSql = sqlite3_str_new(db); sqlite3_str_appendf(pSql, "CREATE TABLE x(%.*s INT", rtreeTokenLength(argv[3]), argv[3]); for(ii=4; iinAux++; sqlite3_str_appendf(pSql, ",%.*s", rtreeTokenLength(zArg+1), zArg+1); }else if( pRtree->nAux>0 ){ break; }else{ static const char *azFormat[] = {",%.*s REAL", ",%.*s INT"}; pRtree->nDim2++; sqlite3_str_appendf(pSql, azFormat[eCoordType], rtreeTokenLength(zArg), zArg); } } sqlite3_str_appendf(pSql, ");"); zSql = sqlite3_str_finish(pSql); if( !zSql ){ rc = SQLITE_NOMEM; }else if( iinDim = pRtree->nDim2/2; if( pRtree->nDim<1 ){ iErr = 2; }else if( pRtree->nDim2>RTREE_MAX_DIMENSIONS*2 ){ iErr = 3; }else if( pRtree->nDim2 % 2 ){ iErr = 1; }else{ iErr = 0; } if( iErr ){ *pzErr = sqlite3_mprintf("%s", aErrMsg[iErr]); goto rtreeInit_fail; } pRtree->nBytesPerCell = 8 + pRtree->nDim2*4; /* Figure out the node size to use. */ rc = getNodeSize(db, pRtree, isCreate, pzErr); if( rc ) goto rtreeInit_fail; rc = rtreeSqlInit(pRtree, db, argv[1], argv[2], isCreate); if( rc ){ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); goto rtreeInit_fail; } *ppVtab = (sqlite3_vtab *)pRtree; return SQLITE_OK; rtreeInit_fail: if( rc==SQLITE_OK ) rc = SQLITE_ERROR; assert( *ppVtab==0 ); assert( pRtree->nBusy==1 ); rtreeRelease(pRtree); return rc; } /* ** Implementation of a scalar function that decodes r-tree nodes to ** human readable strings. This can be used for debugging and analysis. ** ** The scalar function takes two arguments: (1) the number of dimensions ** to the rtree (between 1 and 5, inclusive) and (2) a blob of data containing ** an r-tree node. For a two-dimensional r-tree structure called "rt", to ** deserialize all nodes, a statement like: ** ** SELECT rtreenode(2, data) FROM rt_node; ** ** The human readable string takes the form of a Tcl list with one ** entry for each cell in the r-tree node. Each entry is itself a ** list, containing the 8-byte rowid/pageno followed by the ** *2 coordinates. */ static void rtreenode(sqlite3_context *ctx, int nArg, sqlite3_value **apArg){ RtreeNode node; Rtree tree; int ii; int nData; int errCode; sqlite3_str *pOut; UNUSED_PARAMETER(nArg); memset(&node, 0, sizeof(RtreeNode)); memset(&tree, 0, sizeof(Rtree)); tree.nDim = (u8)sqlite3_value_int(apArg[0]); if( tree.nDim<1 || tree.nDim>5 ) return; tree.nDim2 = tree.nDim*2; tree.nBytesPerCell = 8 + 8 * tree.nDim; node.zData = (u8 *)sqlite3_value_blob(apArg[1]); nData = sqlite3_value_bytes(apArg[1]); if( nData<4 ) return; if( nData0 ) sqlite3_str_append(pOut, " ", 1); sqlite3_str_appendf(pOut, "{%lld", cell.iRowid); for(jj=0; jjrc==SQLITE_OK ) pCheck->rc = rc; } /* ** The second and subsequent arguments to this function are a format string ** and printf style arguments. This function formats the string and attempts ** to compile it as an SQL statement. ** ** If successful, a pointer to the new SQL statement is returned. Otherwise, ** NULL is returned and an error code left in RtreeCheck.rc. */ static sqlite3_stmt *rtreeCheckPrepare( RtreeCheck *pCheck, /* RtreeCheck object */ const char *zFmt, ... /* Format string and trailing args */ ){ va_list ap; char *z; sqlite3_stmt *pRet = 0; va_start(ap, zFmt); z = sqlite3_vmprintf(zFmt, ap); if( pCheck->rc==SQLITE_OK ){ if( z==0 ){ pCheck->rc = SQLITE_NOMEM; }else{ pCheck->rc = sqlite3_prepare_v2(pCheck->db, z, -1, &pRet, 0); } } sqlite3_free(z); va_end(ap); return pRet; } /* ** The second and subsequent arguments to this function are a printf() ** style format string and arguments. This function formats the string and ** appends it to the report being accumuated in pCheck. */ static void rtreeCheckAppendMsg(RtreeCheck *pCheck, const char *zFmt, ...){ va_list ap; va_start(ap, zFmt); if( pCheck->rc==SQLITE_OK && pCheck->nErrrc = SQLITE_NOMEM; }else{ pCheck->zReport = sqlite3_mprintf("%z%s%z", pCheck->zReport, (pCheck->zReport ? "\n" : ""), z ); if( pCheck->zReport==0 ){ pCheck->rc = SQLITE_NOMEM; } } pCheck->nErr++; } va_end(ap); } /* ** This function is a no-op if there is already an error code stored ** in the RtreeCheck object indicated by the first argument. NULL is ** returned in this case. ** ** Otherwise, the contents of rtree table node iNode are loaded from ** the database and copied into a buffer obtained from sqlite3_malloc(). ** If no error occurs, a pointer to the buffer is returned and (*pnNode) ** is set to the size of the buffer in bytes. ** ** Or, if an error does occur, NULL is returned and an error code left ** in the RtreeCheck object. The final value of *pnNode is undefined in ** this case. */ static u8 *rtreeCheckGetNode(RtreeCheck *pCheck, i64 iNode, int *pnNode){ u8 *pRet = 0; /* Return value */ if( pCheck->rc==SQLITE_OK && pCheck->pGetNode==0 ){ pCheck->pGetNode = rtreeCheckPrepare(pCheck, "SELECT data FROM %Q.'%q_node' WHERE nodeno=?", pCheck->zDb, pCheck->zTab ); } if( pCheck->rc==SQLITE_OK ){ sqlite3_bind_int64(pCheck->pGetNode, 1, iNode); if( sqlite3_step(pCheck->pGetNode)==SQLITE_ROW ){ int nNode = sqlite3_column_bytes(pCheck->pGetNode, 0); const u8 *pNode = (const u8*)sqlite3_column_blob(pCheck->pGetNode, 0); pRet = sqlite3_malloc64(nNode); if( pRet==0 ){ pCheck->rc = SQLITE_NOMEM; }else{ memcpy(pRet, pNode, nNode); *pnNode = nNode; } } rtreeCheckReset(pCheck, pCheck->pGetNode); if( pCheck->rc==SQLITE_OK && pRet==0 ){ rtreeCheckAppendMsg(pCheck, "Node %lld missing from database", iNode); } } return pRet; } /* ** This function is used to check that the %_parent (if bLeaf==0) or %_rowid ** (if bLeaf==1) table contains a specified entry. The schemas of the ** two tables are: ** ** CREATE TABLE %_parent(nodeno INTEGER PRIMARY KEY, parentnode INTEGER) ** CREATE TABLE %_rowid(rowid INTEGER PRIMARY KEY, nodeno INTEGER, ...) ** ** In both cases, this function checks that there exists an entry with ** IPK value iKey and the second column set to iVal. ** */ static void rtreeCheckMapping( RtreeCheck *pCheck, /* RtreeCheck object */ int bLeaf, /* True for a leaf cell, false for interior */ i64 iKey, /* Key for mapping */ i64 iVal /* Expected value for mapping */ ){ int rc; sqlite3_stmt *pStmt; const char *azSql[2] = { "SELECT parentnode FROM %Q.'%q_parent' WHERE nodeno=?1", "SELECT nodeno FROM %Q.'%q_rowid' WHERE rowid=?1" }; assert( bLeaf==0 || bLeaf==1 ); if( pCheck->aCheckMapping[bLeaf]==0 ){ pCheck->aCheckMapping[bLeaf] = rtreeCheckPrepare(pCheck, azSql[bLeaf], pCheck->zDb, pCheck->zTab ); } if( pCheck->rc!=SQLITE_OK ) return; pStmt = pCheck->aCheckMapping[bLeaf]; sqlite3_bind_int64(pStmt, 1, iKey); rc = sqlite3_step(pStmt); if( rc==SQLITE_DONE ){ rtreeCheckAppendMsg(pCheck, "Mapping (%lld -> %lld) missing from %s table", iKey, iVal, (bLeaf ? "%_rowid" : "%_parent") ); }else if( rc==SQLITE_ROW ){ i64 ii = sqlite3_column_int64(pStmt, 0); if( ii!=iVal ){ rtreeCheckAppendMsg(pCheck, "Found (%lld -> %lld) in %s table, expected (%lld -> %lld)", iKey, ii, (bLeaf ? "%_rowid" : "%_parent"), iKey, iVal ); } } rtreeCheckReset(pCheck, pStmt); } /* ** Argument pCell points to an array of coordinates stored on an rtree page. ** This function checks that the coordinates are internally consistent (no ** x1>x2 conditions) and adds an error message to the RtreeCheck object ** if they are not. ** ** Additionally, if pParent is not NULL, then it is assumed to point to ** the array of coordinates on the parent page that bound the page ** containing pCell. In this case it is also verified that the two ** sets of coordinates are mutually consistent and an error message added ** to the RtreeCheck object if they are not. */ static void rtreeCheckCellCoord( RtreeCheck *pCheck, i64 iNode, /* Node id to use in error messages */ int iCell, /* Cell number to use in error messages */ u8 *pCell, /* Pointer to cell coordinates */ u8 *pParent /* Pointer to parent coordinates */ ){ RtreeCoord c1, c2; RtreeCoord p1, p2; int i; for(i=0; inDim; i++){ readCoord(&pCell[4*2*i], &c1); readCoord(&pCell[4*(2*i + 1)], &c2); /* printf("%e, %e\n", c1.u.f, c2.u.f); */ if( pCheck->bInt ? c1.i>c2.i : c1.f>c2.f ){ rtreeCheckAppendMsg(pCheck, "Dimension %d of cell %d on node %lld is corrupt", i, iCell, iNode ); } if( pParent ){ readCoord(&pParent[4*2*i], &p1); readCoord(&pParent[4*(2*i + 1)], &p2); if( (pCheck->bInt ? c1.ibInt ? c2.i>p2.i : c2.f>p2.f) ){ rtreeCheckAppendMsg(pCheck, "Dimension %d of cell %d on node %lld is corrupt relative to parent" , i, iCell, iNode ); } } } } /* ** Run rtreecheck() checks on node iNode, which is at depth iDepth within ** the r-tree structure. Argument aParent points to the array of coordinates ** that bound node iNode on the parent node. ** ** If any problems are discovered, an error message is appended to the ** report accumulated in the RtreeCheck object. */ static void rtreeCheckNode( RtreeCheck *pCheck, int iDepth, /* Depth of iNode (0==leaf) */ u8 *aParent, /* Buffer containing parent coords */ i64 iNode /* Node to check */ ){ u8 *aNode = 0; int nNode = 0; assert( iNode==1 || aParent!=0 ); assert( pCheck->nDim>0 ); aNode = rtreeCheckGetNode(pCheck, iNode, &nNode); if( aNode ){ if( nNode<4 ){ rtreeCheckAppendMsg(pCheck, "Node %lld is too small (%d bytes)", iNode, nNode ); }else{ int nCell; /* Number of cells on page */ int i; /* Used to iterate through cells */ if( aParent==0 ){ iDepth = readInt16(aNode); if( iDepth>RTREE_MAX_DEPTH ){ rtreeCheckAppendMsg(pCheck, "Rtree depth out of range (%d)", iDepth); sqlite3_free(aNode); return; } } nCell = readInt16(&aNode[2]); if( (4 + nCell*(8 + pCheck->nDim*2*4))>nNode ){ rtreeCheckAppendMsg(pCheck, "Node %lld is too small for cell count of %d (%d bytes)", iNode, nCell, nNode ); }else{ for(i=0; inDim*2*4)]; i64 iVal = readInt64(pCell); rtreeCheckCellCoord(pCheck, iNode, i, &pCell[8], aParent); if( iDepth>0 ){ rtreeCheckMapping(pCheck, 0, iVal, iNode); rtreeCheckNode(pCheck, iDepth-1, &pCell[8], iVal); pCheck->nNonLeaf++; }else{ rtreeCheckMapping(pCheck, 1, iVal, iNode); pCheck->nLeaf++; } } } } sqlite3_free(aNode); } } /* ** The second argument to this function must be either "_rowid" or ** "_parent". This function checks that the number of entries in the ** %_rowid or %_parent table is exactly nExpect. If not, it adds ** an error message to the report in the RtreeCheck object indicated ** by the first argument. */ static void rtreeCheckCount(RtreeCheck *pCheck, const char *zTbl, i64 nExpect){ if( pCheck->rc==SQLITE_OK ){ sqlite3_stmt *pCount; pCount = rtreeCheckPrepare(pCheck, "SELECT count(*) FROM %Q.'%q%s'", pCheck->zDb, pCheck->zTab, zTbl ); if( pCount ){ if( sqlite3_step(pCount)==SQLITE_ROW ){ i64 nActual = sqlite3_column_int64(pCount, 0); if( nActual!=nExpect ){ rtreeCheckAppendMsg(pCheck, "Wrong number of entries in %%%s table" " - expected %lld, actual %lld" , zTbl, nExpect, nActual ); } } pCheck->rc = sqlite3_finalize(pCount); } } } /* ** This function does the bulk of the work for the rtree integrity-check. ** It is called by rtreecheck(), which is the SQL function implementation. */ static int rtreeCheckTable( sqlite3 *db, /* Database handle to access db through */ const char *zDb, /* Name of db ("main", "temp" etc.) */ const char *zTab, /* Name of rtree table to check */ char **pzReport /* OUT: sqlite3_malloc'd report text */ ){ RtreeCheck check; /* Common context for various routines */ sqlite3_stmt *pStmt = 0; /* Used to find column count of rtree table */ int bEnd = 0; /* True if transaction should be closed */ int nAux = 0; /* Number of extra columns. */ /* Initialize the context object */ memset(&check, 0, sizeof(check)); check.db = db; check.zDb = zDb; check.zTab = zTab; /* If there is not already an open transaction, open one now. This is ** to ensure that the queries run as part of this integrity-check operate ** on a consistent snapshot. */ if( sqlite3_get_autocommit(db) ){ check.rc = sqlite3_exec(db, "BEGIN", 0, 0, 0); bEnd = 1; } /* Find the number of auxiliary columns */ if( check.rc==SQLITE_OK ){ pStmt = rtreeCheckPrepare(&check, "SELECT * FROM %Q.'%q_rowid'", zDb, zTab); if( pStmt ){ nAux = sqlite3_column_count(pStmt) - 2; sqlite3_finalize(pStmt); } check.rc = SQLITE_OK; } /* Find number of dimensions in the rtree table. */ pStmt = rtreeCheckPrepare(&check, "SELECT * FROM %Q.%Q", zDb, zTab); if( pStmt ){ int rc; check.nDim = (sqlite3_column_count(pStmt) - 1 - nAux) / 2; if( check.nDim<1 ){ rtreeCheckAppendMsg(&check, "Schema corrupt or not an rtree"); }else if( SQLITE_ROW==sqlite3_step(pStmt) ){ check.bInt = (sqlite3_column_type(pStmt, 1)==SQLITE_INTEGER); } rc = sqlite3_finalize(pStmt); if( rc!=SQLITE_CORRUPT ) check.rc = rc; } /* Do the actual integrity-check */ if( check.nDim>=1 ){ if( check.rc==SQLITE_OK ){ rtreeCheckNode(&check, 0, 0, 1); } rtreeCheckCount(&check, "_rowid", check.nLeaf); rtreeCheckCount(&check, "_parent", check.nNonLeaf); } /* Finalize SQL statements used by the integrity-check */ sqlite3_finalize(check.pGetNode); sqlite3_finalize(check.aCheckMapping[0]); sqlite3_finalize(check.aCheckMapping[1]); /* If one was opened, close the transaction */ if( bEnd ){ int rc = sqlite3_exec(db, "END", 0, 0, 0); if( check.rc==SQLITE_OK ) check.rc = rc; } *pzReport = check.zReport; return check.rc; } /* ** Usage: ** ** rtreecheck(); ** rtreecheck(, ); ** ** Invoking this SQL function runs an integrity-check on the named rtree ** table. The integrity-check verifies the following: ** ** 1. For each cell in the r-tree structure (%_node table), that: ** ** a) for each dimension, (coord1 <= coord2). ** ** b) unless the cell is on the root node, that the cell is bounded ** by the parent cell on the parent node. ** ** c) for leaf nodes, that there is an entry in the %_rowid ** table corresponding to the cell's rowid value that ** points to the correct node. ** ** d) for cells on non-leaf nodes, that there is an entry in the ** %_parent table mapping from the cell's child node to the ** node that it resides on. ** ** 2. That there are the same number of entries in the %_rowid table ** as there are leaf cells in the r-tree structure, and that there ** is a leaf cell that corresponds to each entry in the %_rowid table. ** ** 3. That there are the same number of entries in the %_parent table ** as there are non-leaf cells in the r-tree structure, and that ** there is a non-leaf cell that corresponds to each entry in the ** %_parent table. */ static void rtreecheck( sqlite3_context *ctx, int nArg, sqlite3_value **apArg ){ if( nArg!=1 && nArg!=2 ){ sqlite3_result_error(ctx, "wrong number of arguments to function rtreecheck()", -1 ); }else{ int rc; char *zReport = 0; const char *zDb = (const char*)sqlite3_value_text(apArg[0]); const char *zTab; if( nArg==1 ){ zTab = zDb; zDb = "main"; }else{ zTab = (const char*)sqlite3_value_text(apArg[1]); } rc = rtreeCheckTable(sqlite3_context_db_handle(ctx), zDb, zTab, &zReport); if( rc==SQLITE_OK ){ sqlite3_result_text(ctx, zReport ? zReport : "ok", -1, SQLITE_TRANSIENT); }else{ sqlite3_result_error_code(ctx, rc); } sqlite3_free(zReport); } } /* Conditionally include the geopoly code */ #ifdef SQLITE_ENABLE_GEOPOLY /************** Include geopoly.c in the middle of rtree.c *******************/ /************** Begin file geopoly.c *****************************************/ /* ** 2018-05-25 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ****************************************************************************** ** ** This file implements an alternative R-Tree virtual table that ** uses polygons to express the boundaries of 2-dimensional objects. ** ** This file is #include-ed onto the end of "rtree.c" so that it has ** access to all of the R-Tree internals. */ /* #include */ /* Enable -DGEOPOLY_ENABLE_DEBUG for debugging facilities */ #ifdef GEOPOLY_ENABLE_DEBUG static int geo_debug = 0; # define GEODEBUG(X) if(geo_debug)printf X #else # define GEODEBUG(X) #endif #ifndef JSON_NULL /* The following stuff repeats things found in json1 */ /* ** Versions of isspace(), isalnum() and isdigit() to which it is safe ** to pass signed char values. */ #ifdef sqlite3Isdigit /* Use the SQLite core versions if this routine is part of the ** SQLite amalgamation */ # define safe_isdigit(x) sqlite3Isdigit(x) # define safe_isalnum(x) sqlite3Isalnum(x) # define safe_isxdigit(x) sqlite3Isxdigit(x) #else /* Use the standard library for separate compilation */ #include /* amalgamator: keep */ # define safe_isdigit(x) isdigit((unsigned char)(x)) # define safe_isalnum(x) isalnum((unsigned char)(x)) # define safe_isxdigit(x) isxdigit((unsigned char)(x)) #endif /* ** Growing our own isspace() routine this way is twice as fast as ** the library isspace() function. */ static const char geopolyIsSpace[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, }; #define safe_isspace(x) (geopolyIsSpace[(unsigned char)x]) #endif /* JSON NULL - back to original code */ /* Compiler and version */ #ifndef GCC_VERSION #if defined(__GNUC__) && !defined(SQLITE_DISABLE_INTRINSIC) # define GCC_VERSION (__GNUC__*1000000+__GNUC_MINOR__*1000+__GNUC_PATCHLEVEL__) #else # define GCC_VERSION 0 #endif #endif #ifndef MSVC_VERSION #if defined(_MSC_VER) && !defined(SQLITE_DISABLE_INTRINSIC) # define MSVC_VERSION _MSC_VER #else # define MSVC_VERSION 0 #endif #endif /* Datatype for coordinates */ typedef float GeoCoord; /* ** Internal representation of a polygon. ** ** The polygon consists of a sequence of vertexes. There is a line ** segment between each pair of vertexes, and one final segment from ** the last vertex back to the first. (This differs from the GeoJSON ** standard in which the final vertex is a repeat of the first.) ** ** The polygon follows the right-hand rule. The area to the right of ** each segment is "outside" and the area to the left is "inside". ** ** The on-disk representation consists of a 4-byte header followed by ** the values. The 4-byte header is: ** ** encoding (1 byte) 0=big-endian, 1=little-endian ** nvertex (3 bytes) Number of vertexes as a big-endian integer ** ** Enough space is allocated for 4 coordinates, to work around over-zealous ** warnings coming from some compiler (notably, clang). In reality, the size ** of each GeoPoly memory allocate is adjusted as necessary so that the ** GeoPoly.a[] array at the end is the appropriate size. */ typedef struct GeoPoly GeoPoly; struct GeoPoly { int nVertex; /* Number of vertexes */ unsigned char hdr[4]; /* Header for on-disk representation */ GeoCoord a[8]; /* 2*nVertex values. X (longitude) first, then Y */ }; /* The size of a memory allocation needed for a GeoPoly object sufficient ** to hold N coordinate pairs. */ #define GEOPOLY_SZ(N) (sizeof(GeoPoly) + sizeof(GeoCoord)*2*((N)-4)) /* Macros to access coordinates of a GeoPoly. ** We have to use these macros, rather than just say p->a[i] in order ** to silence (incorrect) UBSAN warnings if the array index is too large. */ #define GeoX(P,I) (((GeoCoord*)(P)->a)[(I)*2]) #define GeoY(P,I) (((GeoCoord*)(P)->a)[(I)*2+1]) /* ** State of a parse of a GeoJSON input. */ typedef struct GeoParse GeoParse; struct GeoParse { const unsigned char *z; /* Unparsed input */ int nVertex; /* Number of vertexes in a[] */ int nAlloc; /* Space allocated to a[] */ int nErr; /* Number of errors encountered */ GeoCoord *a; /* Array of vertexes. From sqlite3_malloc64() */ }; /* Do a 4-byte byte swap */ static void geopolySwab32(unsigned char *a){ unsigned char t = a[0]; a[0] = a[3]; a[3] = t; t = a[1]; a[1] = a[2]; a[2] = t; } /* Skip whitespace. Return the next non-whitespace character. */ static char geopolySkipSpace(GeoParse *p){ while( safe_isspace(p->z[0]) ) p->z++; return p->z[0]; } /* Parse out a number. Write the value into *pVal if pVal!=0. ** return non-zero on success and zero if the next token is not a number. */ static int geopolyParseNumber(GeoParse *p, GeoCoord *pVal){ char c = geopolySkipSpace(p); const unsigned char *z = p->z; int j = 0; int seenDP = 0; int seenE = 0; if( c=='-' ){ j = 1; c = z[j]; } if( c=='0' && z[j+1]>='0' && z[j+1]<='9' ) return 0; for(;; j++){ c = z[j]; if( safe_isdigit(c) ) continue; if( c=='.' ){ if( z[j-1]=='-' ) return 0; if( seenDP ) return 0; seenDP = 1; continue; } if( c=='e' || c=='E' ){ if( z[j-1]<'0' ) return 0; if( seenE ) return -1; seenDP = seenE = 1; c = z[j+1]; if( c=='+' || c=='-' ){ j++; c = z[j+1]; } if( c<'0' || c>'9' ) return 0; continue; } break; } if( z[j-1]<'0' ) return 0; if( pVal ){ #ifdef SQLITE_AMALGAMATION /* The sqlite3AtoF() routine is much much faster than atof(), if it ** is available */ double r; (void)sqlite3AtoF((const char*)p->z, &r, j, SQLITE_UTF8); *pVal = r; #else *pVal = (GeoCoord)atof((const char*)p->z); #endif } p->z += j; return 1; } /* ** If the input is a well-formed JSON array of coordinates with at least ** four coordinates and where each coordinate is itself a two-value array, ** then convert the JSON into a GeoPoly object and return a pointer to ** that object. ** ** If any error occurs, return NULL. */ static GeoPoly *geopolyParseJson(const unsigned char *z, int *pRc){ GeoParse s; int rc = SQLITE_OK; memset(&s, 0, sizeof(s)); s.z = z; if( geopolySkipSpace(&s)=='[' ){ s.z++; while( geopolySkipSpace(&s)=='[' ){ int ii = 0; char c; s.z++; if( s.nVertex>=s.nAlloc ){ GeoCoord *aNew; s.nAlloc = s.nAlloc*2 + 16; aNew = sqlite3_realloc64(s.a, s.nAlloc*sizeof(GeoCoord)*2 ); if( aNew==0 ){ rc = SQLITE_NOMEM; s.nErr++; break; } s.a = aNew; } while( geopolyParseNumber(&s, ii<=1 ? &s.a[s.nVertex*2+ii] : 0) ){ ii++; if( ii==2 ) s.nVertex++; c = geopolySkipSpace(&s); s.z++; if( c==',' ) continue; if( c==']' && ii>=2 ) break; s.nErr++; rc = SQLITE_ERROR; goto parse_json_err; } if( geopolySkipSpace(&s)==',' ){ s.z++; continue; } break; } if( geopolySkipSpace(&s)==']' && s.nVertex>=4 && s.a[0]==s.a[s.nVertex*2-2] && s.a[1]==s.a[s.nVertex*2-1] && (s.z++, geopolySkipSpace(&s)==0) ){ GeoPoly *pOut; int x = 1; s.nVertex--; /* Remove the redundant vertex at the end */ pOut = sqlite3_malloc64( GEOPOLY_SZ((sqlite3_int64)s.nVertex) ); x = 1; if( pOut==0 ) goto parse_json_err; pOut->nVertex = s.nVertex; memcpy(pOut->a, s.a, s.nVertex*2*sizeof(GeoCoord)); pOut->hdr[0] = *(unsigned char*)&x; pOut->hdr[1] = (s.nVertex>>16)&0xff; pOut->hdr[2] = (s.nVertex>>8)&0xff; pOut->hdr[3] = s.nVertex&0xff; sqlite3_free(s.a); if( pRc ) *pRc = SQLITE_OK; return pOut; }else{ s.nErr++; rc = SQLITE_ERROR; } } parse_json_err: if( pRc ) *pRc = rc; sqlite3_free(s.a); return 0; } /* ** Given a function parameter, try to interpret it as a polygon, either ** in the binary format or JSON text. Compute a GeoPoly object and ** return a pointer to that object. Or if the input is not a well-formed ** polygon, put an error message in sqlite3_context and return NULL. */ static GeoPoly *geopolyFuncParam( sqlite3_context *pCtx, /* Context for error messages */ sqlite3_value *pVal, /* The value to decode */ int *pRc /* Write error here */ ){ GeoPoly *p = 0; int nByte; if( sqlite3_value_type(pVal)==SQLITE_BLOB && (nByte = sqlite3_value_bytes(pVal))>=(4+6*sizeof(GeoCoord)) ){ const unsigned char *a = sqlite3_value_blob(pVal); int nVertex; nVertex = (a[1]<<16) + (a[2]<<8) + a[3]; if( (a[0]==0 || a[0]==1) && (nVertex*2*sizeof(GeoCoord) + 4)==(unsigned int)nByte ){ p = sqlite3_malloc64( sizeof(*p) + (nVertex-1)*2*sizeof(GeoCoord) ); if( p==0 ){ if( pRc ) *pRc = SQLITE_NOMEM; if( pCtx ) sqlite3_result_error_nomem(pCtx); }else{ int x = 1; p->nVertex = nVertex; memcpy(p->hdr, a, nByte); if( a[0] != *(unsigned char*)&x ){ int ii; for(ii=0; iihdr[0] ^= 1; } } } if( pRc ) *pRc = SQLITE_OK; return p; }else if( sqlite3_value_type(pVal)==SQLITE_TEXT ){ const unsigned char *zJson = sqlite3_value_text(pVal); if( zJson==0 ){ if( pRc ) *pRc = SQLITE_NOMEM; return 0; } return geopolyParseJson(zJson, pRc); }else{ if( pRc ) *pRc = SQLITE_ERROR; return 0; } } /* ** Implementation of the geopoly_blob(X) function. ** ** If the input is a well-formed Geopoly BLOB or JSON string ** then return the BLOB representation of the polygon. Otherwise ** return NULL. */ static void geopolyBlobFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyFuncParam(context, argv[0], 0); if( p ){ sqlite3_result_blob(context, p->hdr, 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } /* ** SQL function: geopoly_json(X) ** ** Interpret X as a polygon and render it as a JSON array ** of coordinates. Or, if X is not a valid polygon, return NULL. */ static void geopolyJsonFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyFuncParam(context, argv[0], 0); if( p ){ sqlite3 *db = sqlite3_context_db_handle(context); sqlite3_str *x = sqlite3_str_new(db); int i; sqlite3_str_append(x, "[", 1); for(i=0; inVertex; i++){ sqlite3_str_appendf(x, "[%!g,%!g],", GeoX(p,i), GeoY(p,i)); } sqlite3_str_appendf(x, "[%!g,%!g]]", GeoX(p,0), GeoY(p,0)); sqlite3_result_text(context, sqlite3_str_finish(x), -1, sqlite3_free); sqlite3_free(p); } } /* ** SQL function: geopoly_svg(X, ....) ** ** Interpret X as a polygon and render it as a SVG . ** Additional arguments are added as attributes to the . */ static void geopolySvgFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p; if( argc<1 ) return; p = geopolyFuncParam(context, argv[0], 0); if( p ){ sqlite3 *db = sqlite3_context_db_handle(context); sqlite3_str *x = sqlite3_str_new(db); int i; char cSep = '\''; sqlite3_str_appendf(x, ""); sqlite3_result_text(context, sqlite3_str_finish(x), -1, sqlite3_free); sqlite3_free(p); } } /* ** SQL Function: geopoly_xform(poly, A, B, C, D, E, F) ** ** Transform and/or translate a polygon as follows: ** ** x1 = A*x0 + B*y0 + E ** y1 = C*x0 + D*y0 + F ** ** For a translation: ** ** geopoly_xform(poly, 1, 0, 0, 1, x-offset, y-offset) ** ** Rotate by R around the point (0,0): ** ** geopoly_xform(poly, cos(R), sin(R), -sin(R), cos(R), 0, 0) */ static void geopolyXformFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyFuncParam(context, argv[0], 0); double A = sqlite3_value_double(argv[1]); double B = sqlite3_value_double(argv[2]); double C = sqlite3_value_double(argv[3]); double D = sqlite3_value_double(argv[4]); double E = sqlite3_value_double(argv[5]); double F = sqlite3_value_double(argv[6]); GeoCoord x1, y1, x0, y0; int ii; if( p ){ for(ii=0; iinVertex; ii++){ x0 = GeoX(p,ii); y0 = GeoY(p,ii); x1 = (GeoCoord)(A*x0 + B*y0 + E); y1 = (GeoCoord)(C*x0 + D*y0 + F); GeoX(p,ii) = x1; GeoY(p,ii) = y1; } sqlite3_result_blob(context, p->hdr, 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } /* ** Compute the area enclosed by the polygon. ** ** This routine can also be used to detect polygons that rotate in ** the wrong direction. Polygons are suppose to be counter-clockwise (CCW). ** This routine returns a negative value for clockwise (CW) polygons. */ static double geopolyArea(GeoPoly *p){ double rArea = 0.0; int ii; for(ii=0; iinVertex-1; ii++){ rArea += (GeoX(p,ii) - GeoX(p,ii+1)) /* (x0 - x1) */ * (GeoY(p,ii) + GeoY(p,ii+1)) /* (y0 + y1) */ * 0.5; } rArea += (GeoX(p,ii) - GeoX(p,0)) /* (xN - x0) */ * (GeoY(p,ii) + GeoY(p,0)) /* (yN + y0) */ * 0.5; return rArea; } /* ** Implementation of the geopoly_area(X) function. ** ** If the input is a well-formed Geopoly BLOB then return the area ** enclosed by the polygon. If the polygon circulates clockwise instead ** of counterclockwise (as it should) then return the negative of the ** enclosed area. Otherwise return NULL. */ static void geopolyAreaFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyFuncParam(context, argv[0], 0); if( p ){ sqlite3_result_double(context, geopolyArea(p)); sqlite3_free(p); } } /* ** Implementation of the geopoly_ccw(X) function. ** ** If the rotation of polygon X is clockwise (incorrect) instead of ** counter-clockwise (the correct winding order according to RFC7946) ** then reverse the order of the vertexes in polygon X. ** ** In other words, this routine returns a CCW polygon regardless of the ** winding order of its input. ** ** Use this routine to sanitize historical inputs that that sometimes ** contain polygons that wind in the wrong direction. */ static void geopolyCcwFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyFuncParam(context, argv[0], 0); if( p ){ if( geopolyArea(p)<0.0 ){ int ii, jj; for(ii=1, jj=p->nVertex-1; iihdr, 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } #define GEOPOLY_PI 3.1415926535897932385 /* Fast approximation for sine(X) for X between -0.5*pi and 2*pi */ static double geopolySine(double r){ assert( r>=-0.5*GEOPOLY_PI && r<=2.0*GEOPOLY_PI ); if( r>=1.5*GEOPOLY_PI ){ r -= 2.0*GEOPOLY_PI; } if( r>=0.5*GEOPOLY_PI ){ return -geopolySine(r-GEOPOLY_PI); }else{ double r2 = r*r; double r3 = r2*r; double r5 = r3*r2; return 0.9996949*r - 0.1656700*r3 + 0.0075134*r5; } } /* ** Function: geopoly_regular(X,Y,R,N) ** ** Construct a simple, convex, regular polygon centered at X, Y ** with circumradius R and with N sides. */ static void geopolyRegularFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ double x = sqlite3_value_double(argv[0]); double y = sqlite3_value_double(argv[1]); double r = sqlite3_value_double(argv[2]); int n = sqlite3_value_int(argv[3]); int i; GeoPoly *p; if( n<3 || r<=0.0 ) return; if( n>1000 ) n = 1000; p = sqlite3_malloc64( sizeof(*p) + (n-1)*2*sizeof(GeoCoord) ); if( p==0 ){ sqlite3_result_error_nomem(context); return; } i = 1; p->hdr[0] = *(unsigned char*)&i; p->hdr[1] = 0; p->hdr[2] = (n>>8)&0xff; p->hdr[3] = n&0xff; for(i=0; ihdr, 4+8*n, SQLITE_TRANSIENT); sqlite3_free(p); } /* ** If pPoly is a polygon, compute its bounding box. Then: ** ** (1) if aCoord!=0 store the bounding box in aCoord, returning NULL ** (2) otherwise, compute a GeoPoly for the bounding box and return the ** new GeoPoly ** ** If pPoly is NULL but aCoord is not NULL, then compute a new GeoPoly from ** the bounding box in aCoord and return a pointer to that GeoPoly. */ static GeoPoly *geopolyBBox( sqlite3_context *context, /* For recording the error */ sqlite3_value *pPoly, /* The polygon */ RtreeCoord *aCoord, /* Results here */ int *pRc /* Error code here */ ){ GeoPoly *pOut = 0; GeoPoly *p; float mnX, mxX, mnY, mxY; if( pPoly==0 && aCoord!=0 ){ p = 0; mnX = aCoord[0].f; mxX = aCoord[1].f; mnY = aCoord[2].f; mxY = aCoord[3].f; goto geopolyBboxFill; }else{ p = geopolyFuncParam(context, pPoly, pRc); } if( p ){ int ii; mnX = mxX = GeoX(p,0); mnY = mxY = GeoY(p,0); for(ii=1; iinVertex; ii++){ double r = GeoX(p,ii); if( rmxX ) mxX = (float)r; r = GeoY(p,ii); if( rmxY ) mxY = (float)r; } if( pRc ) *pRc = SQLITE_OK; if( aCoord==0 ){ geopolyBboxFill: pOut = sqlite3_realloc64(p, GEOPOLY_SZ(4)); if( pOut==0 ){ sqlite3_free(p); if( context ) sqlite3_result_error_nomem(context); if( pRc ) *pRc = SQLITE_NOMEM; return 0; } pOut->nVertex = 4; ii = 1; pOut->hdr[0] = *(unsigned char*)ⅈ pOut->hdr[1] = 0; pOut->hdr[2] = 0; pOut->hdr[3] = 4; GeoX(pOut,0) = mnX; GeoY(pOut,0) = mnY; GeoX(pOut,1) = mxX; GeoY(pOut,1) = mnY; GeoX(pOut,2) = mxX; GeoY(pOut,2) = mxY; GeoX(pOut,3) = mnX; GeoY(pOut,3) = mxY; }else{ sqlite3_free(p); aCoord[0].f = mnX; aCoord[1].f = mxX; aCoord[2].f = mnY; aCoord[3].f = mxY; } }else{ memset(aCoord, 0, sizeof(RtreeCoord)*4); } return pOut; } /* ** Implementation of the geopoly_bbox(X) SQL function. */ static void geopolyBBoxFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p = geopolyBBox(context, argv[0], 0, 0); if( p ){ sqlite3_result_blob(context, p->hdr, 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } /* ** State vector for the geopoly_group_bbox() aggregate function. */ typedef struct GeoBBox GeoBBox; struct GeoBBox { int isInit; RtreeCoord a[4]; }; /* ** Implementation of the geopoly_group_bbox(X) aggregate SQL function. */ static void geopolyBBoxStep( sqlite3_context *context, int argc, sqlite3_value **argv ){ RtreeCoord a[4]; int rc = SQLITE_OK; (void)geopolyBBox(context, argv[0], a, &rc); if( rc==SQLITE_OK ){ GeoBBox *pBBox; pBBox = (GeoBBox*)sqlite3_aggregate_context(context, sizeof(*pBBox)); if( pBBox==0 ) return; if( pBBox->isInit==0 ){ pBBox->isInit = 1; memcpy(pBBox->a, a, sizeof(RtreeCoord)*4); }else{ if( a[0].f < pBBox->a[0].f ) pBBox->a[0] = a[0]; if( a[1].f > pBBox->a[1].f ) pBBox->a[1] = a[1]; if( a[2].f < pBBox->a[2].f ) pBBox->a[2] = a[2]; if( a[3].f > pBBox->a[3].f ) pBBox->a[3] = a[3]; } } } static void geopolyBBoxFinal( sqlite3_context *context ){ GeoPoly *p; GeoBBox *pBBox; pBBox = (GeoBBox*)sqlite3_aggregate_context(context, 0); if( pBBox==0 ) return; p = geopolyBBox(context, 0, pBBox->a, 0); if( p ){ sqlite3_result_blob(context, p->hdr, 4+8*p->nVertex, SQLITE_TRANSIENT); sqlite3_free(p); } } /* ** Determine if point (x0,y0) is beneath line segment (x1,y1)->(x2,y2). ** Returns: ** ** +2 x0,y0 is on the line segement ** ** +1 x0,y0 is beneath line segment ** ** 0 x0,y0 is not on or beneath the line segment or the line segment ** is vertical and x0,y0 is not on the line segment ** ** The left-most coordinate min(x1,x2) is not considered to be part of ** the line segment for the purposes of this analysis. */ static int pointBeneathLine( double x0, double y0, double x1, double y1, double x2, double y2 ){ double y; if( x0==x1 && y0==y1 ) return 2; if( x1x2 ) return 0; }else if( x1>x2 ){ if( x0<=x2 || x0>x1 ) return 0; }else{ /* Vertical line segment */ if( x0!=x1 ) return 0; if( y0y1 && y0>y2 ) return 0; return 2; } y = y1 + (y2-y1)*(x0-x1)/(x2-x1); if( y0==y ) return 2; if( y0nVertex-1; ii++){ v = pointBeneathLine(x0,y0,GeoX(p1,ii), GeoY(p1,ii), GeoX(p1,ii+1),GeoY(p1,ii+1)); if( v==2 ) break; cnt += v; } if( v!=2 ){ v = pointBeneathLine(x0,y0,GeoX(p1,ii), GeoY(p1,ii), GeoX(p1,0), GeoY(p1,0)); } if( v==2 ){ sqlite3_result_int(context, 1); }else if( ((v+cnt)&1)==0 ){ sqlite3_result_int(context, 0); }else{ sqlite3_result_int(context, 2); } sqlite3_free(p1); } /* Forward declaration */ static int geopolyOverlap(GeoPoly *p1, GeoPoly *p2); /* ** SQL function: geopoly_within(P1,P2) ** ** Return +2 if P1 and P2 are the same polygon ** Return +1 if P2 is contained within P1 ** Return 0 if any part of P2 is on the outside of P1 ** */ static void geopolyWithinFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p1 = geopolyFuncParam(context, argv[0], 0); GeoPoly *p2 = geopolyFuncParam(context, argv[1], 0); if( p1 && p2 ){ int x = geopolyOverlap(p1, p2); if( x<0 ){ sqlite3_result_error_nomem(context); }else{ sqlite3_result_int(context, x==2 ? 1 : x==4 ? 2 : 0); } } sqlite3_free(p1); sqlite3_free(p2); } /* Objects used by the overlap algorihm. */ typedef struct GeoEvent GeoEvent; typedef struct GeoSegment GeoSegment; typedef struct GeoOverlap GeoOverlap; struct GeoEvent { double x; /* X coordinate at which event occurs */ int eType; /* 0 for ADD, 1 for REMOVE */ GeoSegment *pSeg; /* The segment to be added or removed */ GeoEvent *pNext; /* Next event in the sorted list */ }; struct GeoSegment { double C, B; /* y = C*x + B */ double y; /* Current y value */ float y0; /* Initial y value */ unsigned char side; /* 1 for p1, 2 for p2 */ unsigned int idx; /* Which segment within the side */ GeoSegment *pNext; /* Next segment in a list sorted by y */ }; struct GeoOverlap { GeoEvent *aEvent; /* Array of all events */ GeoSegment *aSegment; /* Array of all segments */ int nEvent; /* Number of events */ int nSegment; /* Number of segments */ }; /* ** Add a single segment and its associated events. */ static void geopolyAddOneSegment( GeoOverlap *p, GeoCoord x0, GeoCoord y0, GeoCoord x1, GeoCoord y1, unsigned char side, unsigned int idx ){ GeoSegment *pSeg; GeoEvent *pEvent; if( x0==x1 ) return; /* Ignore vertical segments */ if( x0>x1 ){ GeoCoord t = x0; x0 = x1; x1 = t; t = y0; y0 = y1; y1 = t; } pSeg = p->aSegment + p->nSegment; p->nSegment++; pSeg->C = (y1-y0)/(x1-x0); pSeg->B = y1 - x1*pSeg->C; pSeg->y0 = y0; pSeg->side = side; pSeg->idx = idx; pEvent = p->aEvent + p->nEvent; p->nEvent++; pEvent->x = x0; pEvent->eType = 0; pEvent->pSeg = pSeg; pEvent = p->aEvent + p->nEvent; p->nEvent++; pEvent->x = x1; pEvent->eType = 1; pEvent->pSeg = pSeg; } /* ** Insert all segments and events for polygon pPoly. */ static void geopolyAddSegments( GeoOverlap *p, /* Add segments to this Overlap object */ GeoPoly *pPoly, /* Take all segments from this polygon */ unsigned char side /* The side of pPoly */ ){ unsigned int i; GeoCoord *x; for(i=0; i<(unsigned)pPoly->nVertex-1; i++){ x = &GeoX(pPoly,i); geopolyAddOneSegment(p, x[0], x[1], x[2], x[3], side, i); } x = &GeoX(pPoly,i); geopolyAddOneSegment(p, x[0], x[1], pPoly->a[0], pPoly->a[1], side, i); } /* ** Merge two lists of sorted events by X coordinate */ static GeoEvent *geopolyEventMerge(GeoEvent *pLeft, GeoEvent *pRight){ GeoEvent head, *pLast; head.pNext = 0; pLast = &head; while( pRight && pLeft ){ if( pRight->x <= pLeft->x ){ pLast->pNext = pRight; pLast = pRight; pRight = pRight->pNext; }else{ pLast->pNext = pLeft; pLast = pLeft; pLeft = pLeft->pNext; } } pLast->pNext = pRight ? pRight : pLeft; return head.pNext; } /* ** Sort an array of nEvent event objects into a list. */ static GeoEvent *geopolySortEventsByX(GeoEvent *aEvent, int nEvent){ int mx = 0; int i, j; GeoEvent *p; GeoEvent *a[50]; for(i=0; ipNext = 0; for(j=0; j=mx ) mx = j+1; } p = 0; for(i=0; iy - pLeft->y; if( r==0.0 ) r = pRight->C - pLeft->C; if( r<0.0 ){ pLast->pNext = pRight; pLast = pRight; pRight = pRight->pNext; }else{ pLast->pNext = pLeft; pLast = pLeft; pLeft = pLeft->pNext; } } pLast->pNext = pRight ? pRight : pLeft; return head.pNext; } /* ** Sort a list of GeoSegments in order of increasing Y and in the event of ** a tie, increasing C (slope). */ static GeoSegment *geopolySortSegmentsByYAndC(GeoSegment *pList){ int mx = 0; int i; GeoSegment *p; GeoSegment *a[50]; while( pList ){ p = pList; pList = pList->pNext; p->pNext = 0; for(i=0; i=mx ) mx = i+1; } p = 0; for(i=0; inVertex + p2->nVertex + 2; GeoOverlap *p; sqlite3_int64 nByte; GeoEvent *pThisEvent; double rX; int rc = 0; int needSort = 0; GeoSegment *pActive = 0; GeoSegment *pSeg; unsigned char aOverlap[4]; nByte = sizeof(GeoEvent)*nVertex*2 + sizeof(GeoSegment)*nVertex + sizeof(GeoOverlap); p = sqlite3_malloc64( nByte ); if( p==0 ) return -1; p->aEvent = (GeoEvent*)&p[1]; p->aSegment = (GeoSegment*)&p->aEvent[nVertex*2]; p->nEvent = p->nSegment = 0; geopolyAddSegments(p, p1, 1); geopolyAddSegments(p, p2, 2); pThisEvent = geopolySortEventsByX(p->aEvent, p->nEvent); rX = pThisEvent->x==0.0 ? -1.0 : 0.0; memset(aOverlap, 0, sizeof(aOverlap)); while( pThisEvent ){ if( pThisEvent->x!=rX ){ GeoSegment *pPrev = 0; int iMask = 0; GEODEBUG(("Distinct X: %g\n", pThisEvent->x)); rX = pThisEvent->x; if( needSort ){ GEODEBUG(("SORT\n")); pActive = geopolySortSegmentsByYAndC(pActive); needSort = 0; } for(pSeg=pActive; pSeg; pSeg=pSeg->pNext){ if( pPrev ){ if( pPrev->y!=pSeg->y ){ GEODEBUG(("MASK: %d\n", iMask)); aOverlap[iMask] = 1; } } iMask ^= pSeg->side; pPrev = pSeg; } pPrev = 0; for(pSeg=pActive; pSeg; pSeg=pSeg->pNext){ double y = pSeg->C*rX + pSeg->B; GEODEBUG(("Segment %d.%d %g->%g\n", pSeg->side, pSeg->idx, pSeg->y, y)); pSeg->y = y; if( pPrev ){ if( pPrev->y>pSeg->y && pPrev->side!=pSeg->side ){ rc = 1; GEODEBUG(("Crossing: %d.%d and %d.%d\n", pPrev->side, pPrev->idx, pSeg->side, pSeg->idx)); goto geopolyOverlapDone; }else if( pPrev->y!=pSeg->y ){ GEODEBUG(("MASK: %d\n", iMask)); aOverlap[iMask] = 1; } } iMask ^= pSeg->side; pPrev = pSeg; } } GEODEBUG(("%s %d.%d C=%g B=%g\n", pThisEvent->eType ? "RM " : "ADD", pThisEvent->pSeg->side, pThisEvent->pSeg->idx, pThisEvent->pSeg->C, pThisEvent->pSeg->B)); if( pThisEvent->eType==0 ){ /* Add a segment */ pSeg = pThisEvent->pSeg; pSeg->y = pSeg->y0; pSeg->pNext = pActive; pActive = pSeg; needSort = 1; }else{ /* Remove a segment */ if( pActive==pThisEvent->pSeg ){ pActive = pActive->pNext; }else{ for(pSeg=pActive; pSeg; pSeg=pSeg->pNext){ if( pSeg->pNext==pThisEvent->pSeg ){ pSeg->pNext = pSeg->pNext->pNext; break; } } } } pThisEvent = pThisEvent->pNext; } if( aOverlap[3]==0 ){ rc = 0; }else if( aOverlap[1]!=0 && aOverlap[2]==0 ){ rc = 3; }else if( aOverlap[1]==0 && aOverlap[2]!=0 ){ rc = 2; }else if( aOverlap[1]==0 && aOverlap[2]==0 ){ rc = 4; }else{ rc = 1; } geopolyOverlapDone: sqlite3_free(p); return rc; } /* ** SQL function: geopoly_overlap(P1,P2) ** ** Determine whether or not P1 and P2 overlap. Return value: ** ** 0 The two polygons are disjoint ** 1 They overlap ** 2 P1 is completely contained within P2 ** 3 P2 is completely contained within P1 ** 4 P1 and P2 are the same polygon ** NULL Either P1 or P2 or both are not valid polygons */ static void geopolyOverlapFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ GeoPoly *p1 = geopolyFuncParam(context, argv[0], 0); GeoPoly *p2 = geopolyFuncParam(context, argv[1], 0); if( p1 && p2 ){ int x = geopolyOverlap(p1, p2); if( x<0 ){ sqlite3_result_error_nomem(context); }else{ sqlite3_result_int(context, x); } } sqlite3_free(p1); sqlite3_free(p2); } /* ** Enable or disable debugging output */ static void geopolyDebugFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ #ifdef GEOPOLY_ENABLE_DEBUG geo_debug = sqlite3_value_int(argv[0]); #endif } /* ** This function is the implementation of both the xConnect and xCreate ** methods of the geopoly virtual table. ** ** argv[0] -> module name ** argv[1] -> database name ** argv[2] -> table name ** argv[...] -> column names... */ static int geopolyInit( sqlite3 *db, /* Database connection */ void *pAux, /* One of the RTREE_COORD_* constants */ int argc, const char *const*argv, /* Parameters to CREATE TABLE statement */ sqlite3_vtab **ppVtab, /* OUT: New virtual table */ char **pzErr, /* OUT: Error message, if any */ int isCreate /* True for xCreate, false for xConnect */ ){ int rc = SQLITE_OK; Rtree *pRtree; sqlite3_int64 nDb; /* Length of string argv[1] */ sqlite3_int64 nName; /* Length of string argv[2] */ sqlite3_str *pSql; char *zSql; int ii; sqlite3_vtab_config(db, SQLITE_VTAB_CONSTRAINT_SUPPORT, 1); /* Allocate the sqlite3_vtab structure */ nDb = strlen(argv[1]); nName = strlen(argv[2]); pRtree = (Rtree *)sqlite3_malloc64(sizeof(Rtree)+nDb+nName+2); if( !pRtree ){ return SQLITE_NOMEM; } memset(pRtree, 0, sizeof(Rtree)+nDb+nName+2); pRtree->nBusy = 1; pRtree->base.pModule = &rtreeModule; pRtree->zDb = (char *)&pRtree[1]; pRtree->zName = &pRtree->zDb[nDb+1]; pRtree->eCoordType = RTREE_COORD_REAL32; pRtree->nDim = 2; pRtree->nDim2 = 4; memcpy(pRtree->zDb, argv[1], nDb); memcpy(pRtree->zName, argv[2], nName); /* Create/Connect to the underlying relational database schema. If ** that is successful, call sqlite3_declare_vtab() to configure ** the r-tree table schema. */ pSql = sqlite3_str_new(db); sqlite3_str_appendf(pSql, "CREATE TABLE x(_shape"); pRtree->nAux = 1; /* Add one for _shape */ pRtree->nAuxNotNull = 1; /* The _shape column is always not-null */ for(ii=3; iinAux++; sqlite3_str_appendf(pSql, ",%s", argv[ii]); } sqlite3_str_appendf(pSql, ");"); zSql = sqlite3_str_finish(pSql); if( !zSql ){ rc = SQLITE_NOMEM; }else if( SQLITE_OK!=(rc = sqlite3_declare_vtab(db, zSql)) ){ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); } sqlite3_free(zSql); if( rc ) goto geopolyInit_fail; pRtree->nBytesPerCell = 8 + pRtree->nDim2*4; /* Figure out the node size to use. */ rc = getNodeSize(db, pRtree, isCreate, pzErr); if( rc ) goto geopolyInit_fail; rc = rtreeSqlInit(pRtree, db, argv[1], argv[2], isCreate); if( rc ){ *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db)); goto geopolyInit_fail; } *ppVtab = (sqlite3_vtab *)pRtree; return SQLITE_OK; geopolyInit_fail: if( rc==SQLITE_OK ) rc = SQLITE_ERROR; assert( *ppVtab==0 ); assert( pRtree->nBusy==1 ); rtreeRelease(pRtree); return rc; } /* ** GEOPOLY virtual table module xCreate method. */ static int geopolyCreate( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ return geopolyInit(db, pAux, argc, argv, ppVtab, pzErr, 1); } /* ** GEOPOLY virtual table module xConnect method. */ static int geopolyConnect( sqlite3 *db, void *pAux, int argc, const char *const*argv, sqlite3_vtab **ppVtab, char **pzErr ){ return geopolyInit(db, pAux, argc, argv, ppVtab, pzErr, 0); } /* ** GEOPOLY virtual table module xFilter method. ** ** Query plans: ** ** 1 rowid lookup ** 2 search for objects overlapping the same bounding box ** that contains polygon argv[0] ** 3 search for objects overlapping the same bounding box ** that contains polygon argv[0] ** 4 full table scan */ static int geopolyFilter( sqlite3_vtab_cursor *pVtabCursor, /* The cursor to initialize */ int idxNum, /* Query plan */ const char *idxStr, /* Not Used */ int argc, sqlite3_value **argv /* Parameters to the query plan */ ){ Rtree *pRtree = (Rtree *)pVtabCursor->pVtab; RtreeCursor *pCsr = (RtreeCursor *)pVtabCursor; RtreeNode *pRoot = 0; int rc = SQLITE_OK; int iCell = 0; rtreeReference(pRtree); /* Reset the cursor to the same state as rtreeOpen() leaves it in. */ resetCursor(pCsr); pCsr->iStrategy = idxNum; if( idxNum==1 ){ /* Special case - lookup by rowid. */ RtreeNode *pLeaf; /* Leaf on which the required cell resides */ RtreeSearchPoint *p; /* Search point for the leaf */ i64 iRowid = sqlite3_value_int64(argv[0]); i64 iNode = 0; rc = findLeafNode(pRtree, iRowid, &pLeaf, &iNode); if( rc==SQLITE_OK && pLeaf!=0 ){ p = rtreeSearchPointNew(pCsr, RTREE_ZERO, 0); assert( p!=0 ); /* Always returns pCsr->sPoint */ pCsr->aNode[0] = pLeaf; p->id = iNode; p->eWithin = PARTLY_WITHIN; rc = nodeRowidIndex(pRtree, pLeaf, iRowid, &iCell); p->iCell = (u8)iCell; RTREE_QUEUE_TRACE(pCsr, "PUSH-F1:"); }else{ pCsr->atEOF = 1; } }else{ /* Normal case - r-tree scan. Set up the RtreeCursor.aConstraint array ** with the configured constraints. */ rc = nodeAcquire(pRtree, 1, 0, &pRoot); if( rc==SQLITE_OK && idxNum<=3 ){ RtreeCoord bbox[4]; RtreeConstraint *p; assert( argc==1 ); geopolyBBox(0, argv[0], bbox, &rc); if( rc ){ goto geopoly_filter_end; } pCsr->aConstraint = p = sqlite3_malloc(sizeof(RtreeConstraint)*4); pCsr->nConstraint = 4; if( p==0 ){ rc = SQLITE_NOMEM; }else{ memset(pCsr->aConstraint, 0, sizeof(RtreeConstraint)*4); memset(pCsr->anQueue, 0, sizeof(u32)*(pRtree->iDepth + 1)); if( idxNum==2 ){ /* Overlap query */ p->op = 'B'; p->iCoord = 0; p->u.rValue = bbox[1].f; p++; p->op = 'D'; p->iCoord = 1; p->u.rValue = bbox[0].f; p++; p->op = 'B'; p->iCoord = 2; p->u.rValue = bbox[3].f; p++; p->op = 'D'; p->iCoord = 3; p->u.rValue = bbox[2].f; }else{ /* Within query */ p->op = 'D'; p->iCoord = 0; p->u.rValue = bbox[0].f; p++; p->op = 'B'; p->iCoord = 1; p->u.rValue = bbox[1].f; p++; p->op = 'D'; p->iCoord = 2; p->u.rValue = bbox[2].f; p++; p->op = 'B'; p->iCoord = 3; p->u.rValue = bbox[3].f; } } } if( rc==SQLITE_OK ){ RtreeSearchPoint *pNew; pNew = rtreeSearchPointNew(pCsr, RTREE_ZERO, (u8)(pRtree->iDepth+1)); if( pNew==0 ){ rc = SQLITE_NOMEM; goto geopoly_filter_end; } pNew->id = 1; pNew->iCell = 0; pNew->eWithin = PARTLY_WITHIN; assert( pCsr->bPoint==1 ); pCsr->aNode[0] = pRoot; pRoot = 0; RTREE_QUEUE_TRACE(pCsr, "PUSH-Fm:"); rc = rtreeStepToLeaf(pCsr); } } geopoly_filter_end: nodeRelease(pRtree, pRoot); rtreeRelease(pRtree); return rc; } /* ** Rtree virtual table module xBestIndex method. There are three ** table scan strategies to choose from (in order from most to ** least desirable): ** ** idxNum idxStr Strategy ** ------------------------------------------------ ** 1 "rowid" Direct lookup by rowid. ** 2 "rtree" R-tree overlap query using geopoly_overlap() ** 3 "rtree" R-tree within query using geopoly_within() ** 4 "fullscan" full-table scan. ** ------------------------------------------------ */ static int geopolyBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){ int ii; int iRowidTerm = -1; int iFuncTerm = -1; int idxNum = 0; for(ii=0; iinConstraint; ii++){ struct sqlite3_index_constraint *p = &pIdxInfo->aConstraint[ii]; if( !p->usable ) continue; if( p->iColumn<0 && p->op==SQLITE_INDEX_CONSTRAINT_EQ ){ iRowidTerm = ii; break; } if( p->iColumn==0 && p->op>=SQLITE_INDEX_CONSTRAINT_FUNCTION ){ /* p->op==SQLITE_INDEX_CONSTRAINT_FUNCTION for geopoly_overlap() ** p->op==(SQLITE_INDEX_CONTRAINT_FUNCTION+1) for geopoly_within(). ** See geopolyFindFunction() */ iFuncTerm = ii; idxNum = p->op - SQLITE_INDEX_CONSTRAINT_FUNCTION + 2; } } if( iRowidTerm>=0 ){ pIdxInfo->idxNum = 1; pIdxInfo->idxStr = "rowid"; pIdxInfo->aConstraintUsage[iRowidTerm].argvIndex = 1; pIdxInfo->aConstraintUsage[iRowidTerm].omit = 1; pIdxInfo->estimatedCost = 30.0; pIdxInfo->estimatedRows = 1; pIdxInfo->idxFlags = SQLITE_INDEX_SCAN_UNIQUE; return SQLITE_OK; } if( iFuncTerm>=0 ){ pIdxInfo->idxNum = idxNum; pIdxInfo->idxStr = "rtree"; pIdxInfo->aConstraintUsage[iFuncTerm].argvIndex = 1; pIdxInfo->aConstraintUsage[iFuncTerm].omit = 0; pIdxInfo->estimatedCost = 300.0; pIdxInfo->estimatedRows = 10; return SQLITE_OK; } pIdxInfo->idxNum = 4; pIdxInfo->idxStr = "fullscan"; pIdxInfo->estimatedCost = 3000000.0; pIdxInfo->estimatedRows = 100000; return SQLITE_OK; } /* ** GEOPOLY virtual table module xColumn method. */ static int geopolyColumn(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i){ Rtree *pRtree = (Rtree *)cur->pVtab; RtreeCursor *pCsr = (RtreeCursor *)cur; RtreeSearchPoint *p = rtreeSearchPointFirst(pCsr); int rc = SQLITE_OK; RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); if( rc ) return rc; if( p==0 ) return SQLITE_OK; if( i==0 && sqlite3_vtab_nochange(ctx) ) return SQLITE_OK; if( i<=pRtree->nAux ){ if( !pCsr->bAuxValid ){ if( pCsr->pReadAux==0 ){ rc = sqlite3_prepare_v3(pRtree->db, pRtree->zReadAuxSql, -1, 0, &pCsr->pReadAux, 0); if( rc ) return rc; } sqlite3_bind_int64(pCsr->pReadAux, 1, nodeGetRowid(pRtree, pNode, p->iCell)); rc = sqlite3_step(pCsr->pReadAux); if( rc==SQLITE_ROW ){ pCsr->bAuxValid = 1; }else{ sqlite3_reset(pCsr->pReadAux); if( rc==SQLITE_DONE ) rc = SQLITE_OK; return rc; } } sqlite3_result_value(ctx, sqlite3_column_value(pCsr->pReadAux, i+2)); } return SQLITE_OK; } /* ** The xUpdate method for GEOPOLY module virtual tables. ** ** For DELETE: ** ** argv[0] = the rowid to be deleted ** ** For INSERT: ** ** argv[0] = SQL NULL ** argv[1] = rowid to insert, or an SQL NULL to select automatically ** argv[2] = _shape column ** argv[3] = first application-defined column.... ** ** For UPDATE: ** ** argv[0] = rowid to modify. Never NULL ** argv[1] = rowid after the change. Never NULL ** argv[2] = new value for _shape ** argv[3] = new value for first application-defined column.... */ static int geopolyUpdate( sqlite3_vtab *pVtab, int nData, sqlite3_value **aData, sqlite_int64 *pRowid ){ Rtree *pRtree = (Rtree *)pVtab; int rc = SQLITE_OK; RtreeCell cell; /* New cell to insert if nData>1 */ i64 oldRowid; /* The old rowid */ int oldRowidValid; /* True if oldRowid is valid */ i64 newRowid; /* The new rowid */ int newRowidValid; /* True if newRowid is valid */ int coordChange = 0; /* Change in coordinates */ if( pRtree->nNodeRef ){ /* Unable to write to the btree while another cursor is reading from it, ** since the write might do a rebalance which would disrupt the read ** cursor. */ return SQLITE_LOCKED_VTAB; } rtreeReference(pRtree); assert(nData>=1); oldRowidValid = sqlite3_value_type(aData[0])!=SQLITE_NULL;; oldRowid = oldRowidValid ? sqlite3_value_int64(aData[0]) : 0; newRowidValid = nData>1 && sqlite3_value_type(aData[1])!=SQLITE_NULL; newRowid = newRowidValid ? sqlite3_value_int64(aData[1]) : 0; cell.iRowid = newRowid; if( nData>1 /* not a DELETE */ && (!oldRowidValid /* INSERT */ || !sqlite3_value_nochange(aData[2]) /* UPDATE _shape */ || oldRowid!=newRowid) /* Rowid change */ ){ geopolyBBox(0, aData[2], cell.aCoord, &rc); if( rc ){ if( rc==SQLITE_ERROR ){ pVtab->zErrMsg = sqlite3_mprintf("_shape does not contain a valid polygon"); } goto geopoly_update_end; } coordChange = 1; /* If a rowid value was supplied, check if it is already present in ** the table. If so, the constraint has failed. */ if( newRowidValid && (!oldRowidValid || oldRowid!=newRowid) ){ int steprc; sqlite3_bind_int64(pRtree->pReadRowid, 1, cell.iRowid); steprc = sqlite3_step(pRtree->pReadRowid); rc = sqlite3_reset(pRtree->pReadRowid); if( SQLITE_ROW==steprc ){ if( sqlite3_vtab_on_conflict(pRtree->db)==SQLITE_REPLACE ){ rc = rtreeDeleteRowid(pRtree, cell.iRowid); }else{ rc = rtreeConstraintError(pRtree, 0); } } } } /* If aData[0] is not an SQL NULL value, it is the rowid of a ** record to delete from the r-tree table. The following block does ** just that. */ if( rc==SQLITE_OK && (nData==1 || (coordChange && oldRowidValid)) ){ rc = rtreeDeleteRowid(pRtree, oldRowid); } /* If the aData[] array contains more than one element, elements ** (aData[2]..aData[argc-1]) contain a new record to insert into ** the r-tree structure. */ if( rc==SQLITE_OK && nData>1 && coordChange ){ /* Insert the new record into the r-tree */ RtreeNode *pLeaf = 0; if( !newRowidValid ){ rc = rtreeNewRowid(pRtree, &cell.iRowid); } *pRowid = cell.iRowid; if( rc==SQLITE_OK ){ rc = ChooseLeaf(pRtree, &cell, 0, &pLeaf); } if( rc==SQLITE_OK ){ int rc2; pRtree->iReinsertHeight = -1; rc = rtreeInsertCell(pRtree, pLeaf, &cell, 0); rc2 = nodeRelease(pRtree, pLeaf); if( rc==SQLITE_OK ){ rc = rc2; } } } /* Change the data */ if( rc==SQLITE_OK && nData>1 ){ sqlite3_stmt *pUp = pRtree->pWriteAux; int jj; int nChange = 0; sqlite3_bind_int64(pUp, 1, cell.iRowid); assert( pRtree->nAux>=1 ); if( sqlite3_value_nochange(aData[2]) ){ sqlite3_bind_null(pUp, 2); }else{ GeoPoly *p = 0; if( sqlite3_value_type(aData[2])==SQLITE_TEXT && (p = geopolyFuncParam(0, aData[2], &rc))!=0 && rc==SQLITE_OK ){ sqlite3_bind_blob(pUp, 2, p->hdr, 4+8*p->nVertex, SQLITE_TRANSIENT); }else{ sqlite3_bind_value(pUp, 2, aData[2]); } sqlite3_free(p); nChange = 1; } for(jj=1; jjnAux; jj++){ nChange++; sqlite3_bind_value(pUp, jj+2, aData[jj+2]); } if( nChange ){ sqlite3_step(pUp); rc = sqlite3_reset(pUp); } } geopoly_update_end: rtreeRelease(pRtree); return rc; } /* ** Report that geopoly_overlap() is an overloaded function suitable ** for use in xBestIndex. */ static int geopolyFindFunction( sqlite3_vtab *pVtab, int nArg, const char *zName, void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), void **ppArg ){ if( sqlite3_stricmp(zName, "geopoly_overlap")==0 ){ *pxFunc = geopolyOverlapFunc; *ppArg = 0; return SQLITE_INDEX_CONSTRAINT_FUNCTION; } if( sqlite3_stricmp(zName, "geopoly_within")==0 ){ *pxFunc = geopolyWithinFunc; *ppArg = 0; return SQLITE_INDEX_CONSTRAINT_FUNCTION+1; } return 0; } static sqlite3_module geopolyModule = { 3, /* iVersion */ geopolyCreate, /* xCreate - create a table */ geopolyConnect, /* xConnect - connect to an existing table */ geopolyBestIndex, /* xBestIndex - Determine search strategy */ rtreeDisconnect, /* xDisconnect - Disconnect from a table */ rtreeDestroy, /* xDestroy - Drop a table */ rtreeOpen, /* xOpen - open a cursor */ rtreeClose, /* xClose - close a cursor */ geopolyFilter, /* xFilter - configure scan constraints */ rtreeNext, /* xNext - advance a cursor */ rtreeEof, /* xEof */ geopolyColumn, /* xColumn - read data */ rtreeRowid, /* xRowid - read data */ geopolyUpdate, /* xUpdate - write data */ rtreeBeginTransaction, /* xBegin - begin transaction */ rtreeEndTransaction, /* xSync - sync transaction */ rtreeEndTransaction, /* xCommit - commit transaction */ rtreeEndTransaction, /* xRollback - rollback transaction */ geopolyFindFunction, /* xFindFunction - function overloading */ rtreeRename, /* xRename - rename the table */ rtreeSavepoint, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ rtreeShadowName /* xShadowName */ }; static int sqlite3_geopoly_init(sqlite3 *db){ int rc = SQLITE_OK; static const struct { void (*xFunc)(sqlite3_context*,int,sqlite3_value**); signed char nArg; unsigned char bPure; const char *zName; } aFunc[] = { { geopolyAreaFunc, 1, 1, "geopoly_area" }, { geopolyBlobFunc, 1, 1, "geopoly_blob" }, { geopolyJsonFunc, 1, 1, "geopoly_json" }, { geopolySvgFunc, -1, 1, "geopoly_svg" }, { geopolyWithinFunc, 2, 1, "geopoly_within" }, { geopolyContainsPointFunc, 3, 1, "geopoly_contains_point" }, { geopolyOverlapFunc, 2, 1, "geopoly_overlap" }, { geopolyDebugFunc, 1, 0, "geopoly_debug" }, { geopolyBBoxFunc, 1, 1, "geopoly_bbox" }, { geopolyXformFunc, 7, 1, "geopoly_xform" }, { geopolyRegularFunc, 4, 1, "geopoly_regular" }, { geopolyCcwFunc, 1, 1, "geopoly_ccw" }, }; static const struct { void (*xStep)(sqlite3_context*,int,sqlite3_value**); void (*xFinal)(sqlite3_context*); const char *zName; } aAgg[] = { { geopolyBBoxStep, geopolyBBoxFinal, "geopoly_group_bbox" }, }; int i; for(i=0; ixDestructor ) pInfo->xDestructor(pInfo->pContext); sqlite3_free(p); } /* ** This routine frees the BLOB that is returned by geomCallback(). */ static void rtreeMatchArgFree(void *pArg){ int i; RtreeMatchArg *p = (RtreeMatchArg*)pArg; for(i=0; inParam; i++){ sqlite3_value_free(p->apSqlParam[i]); } sqlite3_free(p); } /* ** Each call to sqlite3_rtree_geometry_callback() or ** sqlite3_rtree_query_callback() creates an ordinary SQLite ** scalar function that is implemented by this routine. ** ** All this function does is construct an RtreeMatchArg object that ** contains the geometry-checking callback routines and a list of ** parameters to this function, then return that RtreeMatchArg object ** as a BLOB. ** ** The R-Tree MATCH operator will read the returned BLOB, deserialize ** the RtreeMatchArg object, and use the RtreeMatchArg object to figure ** out which elements of the R-Tree should be returned by the query. */ static void geomCallback(sqlite3_context *ctx, int nArg, sqlite3_value **aArg){ RtreeGeomCallback *pGeomCtx = (RtreeGeomCallback *)sqlite3_user_data(ctx); RtreeMatchArg *pBlob; sqlite3_int64 nBlob; int memErr = 0; nBlob = sizeof(RtreeMatchArg) + (nArg-1)*sizeof(RtreeDValue) + nArg*sizeof(sqlite3_value*); pBlob = (RtreeMatchArg *)sqlite3_malloc64(nBlob); if( !pBlob ){ sqlite3_result_error_nomem(ctx); }else{ int i; pBlob->iSize = nBlob; pBlob->cb = pGeomCtx[0]; pBlob->apSqlParam = (sqlite3_value**)&pBlob->aParam[nArg]; pBlob->nParam = nArg; for(i=0; iapSqlParam[i] = sqlite3_value_dup(aArg[i]); if( pBlob->apSqlParam[i]==0 ) memErr = 1; #ifdef SQLITE_RTREE_INT_ONLY pBlob->aParam[i] = sqlite3_value_int64(aArg[i]); #else pBlob->aParam[i] = sqlite3_value_double(aArg[i]); #endif } if( memErr ){ sqlite3_result_error_nomem(ctx); rtreeMatchArgFree(pBlob); }else{ sqlite3_result_pointer(ctx, pBlob, "RtreeMatchArg", rtreeMatchArgFree); } } } /* ** Register a new geometry function for use with the r-tree MATCH operator. */ SQLITE_API int sqlite3_rtree_geometry_callback( sqlite3 *db, /* Register SQL function on this connection */ const char *zGeom, /* Name of the new SQL function */ int (*xGeom)(sqlite3_rtree_geometry*,int,RtreeDValue*,int*), /* Callback */ void *pContext /* Extra data associated with the callback */ ){ RtreeGeomCallback *pGeomCtx; /* Context object for new user-function */ /* Allocate and populate the context object. */ pGeomCtx = (RtreeGeomCallback *)sqlite3_malloc(sizeof(RtreeGeomCallback)); if( !pGeomCtx ) return SQLITE_NOMEM; pGeomCtx->xGeom = xGeom; pGeomCtx->xQueryFunc = 0; pGeomCtx->xDestructor = 0; pGeomCtx->pContext = pContext; return sqlite3_create_function_v2(db, zGeom, -1, SQLITE_ANY, (void *)pGeomCtx, geomCallback, 0, 0, rtreeFreeCallback ); } /* ** Register a new 2nd-generation geometry function for use with the ** r-tree MATCH operator. */ SQLITE_API int sqlite3_rtree_query_callback( sqlite3 *db, /* Register SQL function on this connection */ const char *zQueryFunc, /* Name of new SQL function */ int (*xQueryFunc)(sqlite3_rtree_query_info*), /* Callback */ void *pContext, /* Extra data passed into the callback */ void (*xDestructor)(void*) /* Destructor for the extra data */ ){ RtreeGeomCallback *pGeomCtx; /* Context object for new user-function */ /* Allocate and populate the context object. */ pGeomCtx = (RtreeGeomCallback *)sqlite3_malloc(sizeof(RtreeGeomCallback)); if( !pGeomCtx ) return SQLITE_NOMEM; pGeomCtx->xGeom = 0; pGeomCtx->xQueryFunc = xQueryFunc; pGeomCtx->xDestructor = xDestructor; pGeomCtx->pContext = pContext; return sqlite3_create_function_v2(db, zQueryFunc, -1, SQLITE_ANY, (void *)pGeomCtx, geomCallback, 0, 0, rtreeFreeCallback ); } #if !SQLITE_CORE #ifdef _WIN32 __declspec(dllexport) #endif SQLITE_API int sqlite3_rtree_init( sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi ){ SQLITE_EXTENSION_INIT2(pApi) return sqlite3RtreeInit(db); } #endif #endif /************** End of rtree.c ***********************************************/ /************** Begin file icu.c *********************************************/ /* ** 2007 May 6 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** $Id: icu.c,v 1.7 2007/12/13 21:54:11 drh Exp $ ** ** This file implements an integration between the ICU library ** ("International Components for Unicode", an open-source library ** for handling unicode data) and SQLite. The integration uses ** ICU to provide the following to SQLite: ** ** * An implementation of the SQL regexp() function (and hence REGEXP ** operator) using the ICU uregex_XX() APIs. ** ** * Implementations of the SQL scalar upper() and lower() functions ** for case mapping. ** ** * Integration of ICU and SQLite collation sequences. ** ** * An implementation of the LIKE operator that uses ICU to ** provide case-independent matching. */ #if !defined(SQLITE_CORE) \ || defined(SQLITE_ENABLE_ICU) \ || defined(SQLITE_ENABLE_ICU_COLLATIONS) /* Include ICU headers */ #include #include #include #include /* #include */ #ifndef SQLITE_CORE /* #include "sqlite3ext.h" */ SQLITE_EXTENSION_INIT1 #else /* #include "sqlite3.h" */ #endif /* ** This function is called when an ICU function called from within ** the implementation of an SQL scalar function returns an error. ** ** The scalar function context passed as the first argument is ** loaded with an error message based on the following two args. */ static void icuFunctionError( sqlite3_context *pCtx, /* SQLite scalar function context */ const char *zName, /* Name of ICU function that failed */ UErrorCode e /* Error code returned by ICU function */ ){ char zBuf[128]; sqlite3_snprintf(128, zBuf, "ICU error: %s(): %s", zName, u_errorName(e)); zBuf[127] = '\0'; sqlite3_result_error(pCtx, zBuf, -1); } #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU) /* ** Maximum length (in bytes) of the pattern in a LIKE or GLOB ** operator. */ #ifndef SQLITE_MAX_LIKE_PATTERN_LENGTH # define SQLITE_MAX_LIKE_PATTERN_LENGTH 50000 #endif /* ** Version of sqlite3_free() that is always a function, never a macro. */ static void xFree(void *p){ sqlite3_free(p); } /* ** This lookup table is used to help decode the first byte of ** a multi-byte UTF8 character. It is copied here from SQLite source ** code file utf8.c. */ static const unsigned char icuUtf8Trans1[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x00, 0x00, }; #define SQLITE_ICU_READ_UTF8(zIn, c) \ c = *(zIn++); \ if( c>=0xc0 ){ \ c = icuUtf8Trans1[c-0xc0]; \ while( (*zIn & 0xc0)==0x80 ){ \ c = (c<<6) + (0x3f & *(zIn++)); \ } \ } #define SQLITE_ICU_SKIP_UTF8(zIn) \ assert( *zIn ); \ if( *(zIn++)>=0xc0 ){ \ while( (*zIn & 0xc0)==0x80 ){zIn++;} \ } /* ** Compare two UTF-8 strings for equality where the first string is ** a "LIKE" expression. Return true (1) if they are the same and ** false (0) if they are different. */ static int icuLikeCompare( const uint8_t *zPattern, /* LIKE pattern */ const uint8_t *zString, /* The UTF-8 string to compare against */ const UChar32 uEsc /* The escape character */ ){ static const uint32_t MATCH_ONE = (uint32_t)'_'; static const uint32_t MATCH_ALL = (uint32_t)'%'; int prevEscape = 0; /* True if the previous character was uEsc */ while( 1 ){ /* Read (and consume) the next character from the input pattern. */ uint32_t uPattern; SQLITE_ICU_READ_UTF8(zPattern, uPattern); if( uPattern==0 ) break; /* There are now 4 possibilities: ** ** 1. uPattern is an unescaped match-all character "%", ** 2. uPattern is an unescaped match-one character "_", ** 3. uPattern is an unescaped escape character, or ** 4. uPattern is to be handled as an ordinary character */ if( uPattern==MATCH_ALL && !prevEscape && uPattern!=(uint32_t)uEsc ){ /* Case 1. */ uint8_t c; /* Skip any MATCH_ALL or MATCH_ONE characters that follow a ** MATCH_ALL. For each MATCH_ONE, skip one character in the ** test string. */ while( (c=*zPattern) == MATCH_ALL || c == MATCH_ONE ){ if( c==MATCH_ONE ){ if( *zString==0 ) return 0; SQLITE_ICU_SKIP_UTF8(zString); } zPattern++; } if( *zPattern==0 ) return 1; while( *zString ){ if( icuLikeCompare(zPattern, zString, uEsc) ){ return 1; } SQLITE_ICU_SKIP_UTF8(zString); } return 0; }else if( uPattern==MATCH_ONE && !prevEscape && uPattern!=(uint32_t)uEsc ){ /* Case 2. */ if( *zString==0 ) return 0; SQLITE_ICU_SKIP_UTF8(zString); }else if( uPattern==(uint32_t)uEsc && !prevEscape ){ /* Case 3. */ prevEscape = 1; }else{ /* Case 4. */ uint32_t uString; SQLITE_ICU_READ_UTF8(zString, uString); uString = (uint32_t)u_foldCase((UChar32)uString, U_FOLD_CASE_DEFAULT); uPattern = (uint32_t)u_foldCase((UChar32)uPattern, U_FOLD_CASE_DEFAULT); if( uString!=uPattern ){ return 0; } prevEscape = 0; } } return *zString==0; } /* ** Implementation of the like() SQL function. This function implements ** the build-in LIKE operator. The first argument to the function is the ** pattern and the second argument is the string. So, the SQL statements: ** ** A LIKE B ** ** is implemented as like(B, A). If there is an escape character E, ** ** A LIKE B ESCAPE E ** ** is mapped to like(B, A, E). */ static void icuLikeFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const unsigned char *zA = sqlite3_value_text(argv[0]); const unsigned char *zB = sqlite3_value_text(argv[1]); UChar32 uEsc = 0; /* Limit the length of the LIKE or GLOB pattern to avoid problems ** of deep recursion and N*N behavior in patternCompare(). */ if( sqlite3_value_bytes(argv[0])>SQLITE_MAX_LIKE_PATTERN_LENGTH ){ sqlite3_result_error(context, "LIKE or GLOB pattern too complex", -1); return; } if( argc==3 ){ /* The escape character string must consist of a single UTF-8 character. ** Otherwise, return an error. */ int nE= sqlite3_value_bytes(argv[2]); const unsigned char *zE = sqlite3_value_text(argv[2]); int i = 0; if( zE==0 ) return; U8_NEXT(zE, i, nE, uEsc); if( i!=nE){ sqlite3_result_error(context, "ESCAPE expression must be a single character", -1); return; } } if( zA && zB ){ sqlite3_result_int(context, icuLikeCompare(zA, zB, uEsc)); } } /* ** Function to delete compiled regexp objects. Registered as ** a destructor function with sqlite3_set_auxdata(). */ static void icuRegexpDelete(void *p){ URegularExpression *pExpr = (URegularExpression *)p; uregex_close(pExpr); } /* ** Implementation of SQLite REGEXP operator. This scalar function takes ** two arguments. The first is a regular expression pattern to compile ** the second is a string to match against that pattern. If either ** argument is an SQL NULL, then NULL Is returned. Otherwise, the result ** is 1 if the string matches the pattern, or 0 otherwise. ** ** SQLite maps the regexp() function to the regexp() operator such ** that the following two are equivalent: ** ** zString REGEXP zPattern ** regexp(zPattern, zString) ** ** Uses the following ICU regexp APIs: ** ** uregex_open() ** uregex_matches() ** uregex_close() */ static void icuRegexpFunc(sqlite3_context *p, int nArg, sqlite3_value **apArg){ UErrorCode status = U_ZERO_ERROR; URegularExpression *pExpr; UBool res; const UChar *zString = sqlite3_value_text16(apArg[1]); (void)nArg; /* Unused parameter */ /* If the left hand side of the regexp operator is NULL, ** then the result is also NULL. */ if( !zString ){ return; } pExpr = sqlite3_get_auxdata(p, 0); if( !pExpr ){ const UChar *zPattern = sqlite3_value_text16(apArg[0]); if( !zPattern ){ return; } pExpr = uregex_open(zPattern, -1, 0, 0, &status); if( U_SUCCESS(status) ){ sqlite3_set_auxdata(p, 0, pExpr, icuRegexpDelete); }else{ assert(!pExpr); icuFunctionError(p, "uregex_open", status); return; } } /* Configure the text that the regular expression operates on. */ uregex_setText(pExpr, zString, -1, &status); if( !U_SUCCESS(status) ){ icuFunctionError(p, "uregex_setText", status); return; } /* Attempt the match */ res = uregex_matches(pExpr, 0, &status); if( !U_SUCCESS(status) ){ icuFunctionError(p, "uregex_matches", status); return; } /* Set the text that the regular expression operates on to a NULL ** pointer. This is not really necessary, but it is tidier than ** leaving the regular expression object configured with an invalid ** pointer after this function returns. */ uregex_setText(pExpr, 0, 0, &status); /* Return 1 or 0. */ sqlite3_result_int(p, res ? 1 : 0); } /* ** Implementations of scalar functions for case mapping - upper() and ** lower(). Function upper() converts its input to upper-case (ABC). ** Function lower() converts to lower-case (abc). ** ** ICU provides two types of case mapping, "general" case mapping and ** "language specific". Refer to ICU documentation for the differences ** between the two. ** ** To utilise "general" case mapping, the upper() or lower() scalar ** functions are invoked with one argument: ** ** upper('ABC') -> 'abc' ** lower('abc') -> 'ABC' ** ** To access ICU "language specific" case mapping, upper() or lower() ** should be invoked with two arguments. The second argument is the name ** of the locale to use. Passing an empty string ("") or SQL NULL value ** as the second argument is the same as invoking the 1 argument version ** of upper() or lower(). ** ** lower('I', 'en_us') -> 'i' ** lower('I', 'tr_tr') -> '\u131' (small dotless i) ** ** http://www.icu-project.org/userguide/posix.html#case_mappings */ static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){ const UChar *zInput; /* Pointer to input string */ UChar *zOutput = 0; /* Pointer to output buffer */ int nInput; /* Size of utf-16 input string in bytes */ int nOut; /* Size of output buffer in bytes */ int cnt; int bToUpper; /* True for toupper(), false for tolower() */ UErrorCode status; const char *zLocale = 0; assert(nArg==1 || nArg==2); bToUpper = (sqlite3_user_data(p)!=0); if( nArg==2 ){ zLocale = (const char *)sqlite3_value_text(apArg[1]); } zInput = sqlite3_value_text16(apArg[0]); if( !zInput ){ return; } nOut = nInput = sqlite3_value_bytes16(apArg[0]); if( nOut==0 ){ sqlite3_result_text16(p, "", 0, SQLITE_STATIC); return; } for(cnt=0; cnt<2; cnt++){ UChar *zNew = sqlite3_realloc(zOutput, nOut); if( zNew==0 ){ sqlite3_free(zOutput); sqlite3_result_error_nomem(p); return; } zOutput = zNew; status = U_ZERO_ERROR; if( bToUpper ){ nOut = 2*u_strToUpper(zOutput,nOut/2,zInput,nInput/2,zLocale,&status); }else{ nOut = 2*u_strToLower(zOutput,nOut/2,zInput,nInput/2,zLocale,&status); } if( U_SUCCESS(status) ){ sqlite3_result_text16(p, zOutput, nOut, xFree); }else if( status==U_BUFFER_OVERFLOW_ERROR ){ assert( cnt==0 ); continue; }else{ icuFunctionError(p, bToUpper ? "u_strToUpper" : "u_strToLower", status); } return; } assert( 0 ); /* Unreachable */ } #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU) */ /* ** Collation sequence destructor function. The pCtx argument points to ** a UCollator structure previously allocated using ucol_open(). */ static void icuCollationDel(void *pCtx){ UCollator *p = (UCollator *)pCtx; ucol_close(p); } /* ** Collation sequence comparison function. The pCtx argument points to ** a UCollator structure previously allocated using ucol_open(). */ static int icuCollationColl( void *pCtx, int nLeft, const void *zLeft, int nRight, const void *zRight ){ UCollationResult res; UCollator *p = (UCollator *)pCtx; res = ucol_strcoll(p, (UChar *)zLeft, nLeft/2, (UChar *)zRight, nRight/2); switch( res ){ case UCOL_LESS: return -1; case UCOL_GREATER: return +1; case UCOL_EQUAL: return 0; } assert(!"Unexpected return value from ucol_strcoll()"); return 0; } /* ** Implementation of the scalar function icu_load_collation(). ** ** This scalar function is used to add ICU collation based collation ** types to an SQLite database connection. It is intended to be called ** as follows: ** ** SELECT icu_load_collation(, ); ** ** Where is a string containing an ICU locale identifier (i.e. ** "en_AU", "tr_TR" etc.) and is the name of the ** collation sequence to create. */ static void icuLoadCollation( sqlite3_context *p, int nArg, sqlite3_value **apArg ){ sqlite3 *db = (sqlite3 *)sqlite3_user_data(p); UErrorCode status = U_ZERO_ERROR; const char *zLocale; /* Locale identifier - (eg. "jp_JP") */ const char *zName; /* SQL Collation sequence name (eg. "japanese") */ UCollator *pUCollator; /* ICU library collation object */ int rc; /* Return code from sqlite3_create_collation_x() */ assert(nArg==2); (void)nArg; /* Unused parameter */ zLocale = (const char *)sqlite3_value_text(apArg[0]); zName = (const char *)sqlite3_value_text(apArg[1]); if( !zLocale || !zName ){ return; } pUCollator = ucol_open(zLocale, &status); if( !U_SUCCESS(status) ){ icuFunctionError(p, "ucol_open", status); return; } assert(p); rc = sqlite3_create_collation_v2(db, zName, SQLITE_UTF16, (void *)pUCollator, icuCollationColl, icuCollationDel ); if( rc!=SQLITE_OK ){ ucol_close(pUCollator); sqlite3_result_error(p, "Error registering collation function", -1); } } /* ** Register the ICU extension functions with database db. */ SQLITE_PRIVATE int sqlite3IcuInit(sqlite3 *db){ # define SQLITEICU_EXTRAFLAGS (SQLITE_DETERMINISTIC|SQLITE_INNOCUOUS) static const struct IcuScalar { const char *zName; /* Function name */ unsigned char nArg; /* Number of arguments */ unsigned int enc; /* Optimal text encoding */ unsigned char iContext; /* sqlite3_user_data() context */ void (*xFunc)(sqlite3_context*,int,sqlite3_value**); } scalars[] = { {"icu_load_collation",2,SQLITE_UTF8|SQLITE_DIRECTONLY,1, icuLoadCollation}, #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU) {"regexp", 2, SQLITE_ANY|SQLITEICU_EXTRAFLAGS, 0, icuRegexpFunc}, {"lower", 1, SQLITE_UTF16|SQLITEICU_EXTRAFLAGS, 0, icuCaseFunc16}, {"lower", 2, SQLITE_UTF16|SQLITEICU_EXTRAFLAGS, 0, icuCaseFunc16}, {"upper", 1, SQLITE_UTF16|SQLITEICU_EXTRAFLAGS, 1, icuCaseFunc16}, {"upper", 2, SQLITE_UTF16|SQLITEICU_EXTRAFLAGS, 1, icuCaseFunc16}, {"lower", 1, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 0, icuCaseFunc16}, {"lower", 2, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 0, icuCaseFunc16}, {"upper", 1, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 1, icuCaseFunc16}, {"upper", 2, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 1, icuCaseFunc16}, {"like", 2, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 0, icuLikeFunc}, {"like", 3, SQLITE_UTF8|SQLITEICU_EXTRAFLAGS, 0, icuLikeFunc}, #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_ICU) */ }; int rc = SQLITE_OK; int i; for(i=0; rc==SQLITE_OK && i<(int)(sizeof(scalars)/sizeof(scalars[0])); i++){ const struct IcuScalar *p = &scalars[i]; rc = sqlite3_create_function( db, p->zName, p->nArg, p->enc, p->iContext ? (void*)db : (void*)0, p->xFunc, 0, 0 ); } return rc; } #if !SQLITE_CORE #ifdef _WIN32 __declspec(dllexport) #endif SQLITE_API int sqlite3_icu_init( sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi ){ SQLITE_EXTENSION_INIT2(pApi) return sqlite3IcuInit(db); } #endif #endif /************** End of icu.c *************************************************/ /************** Begin file fts3_icu.c ****************************************/ /* ** 2007 June 22 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** This file implements a tokenizer for fts3 based on the ICU library. */ /* #include "fts3Int.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) #ifdef SQLITE_ENABLE_ICU /* #include */ /* #include */ /* #include "fts3_tokenizer.h" */ #include /* #include */ /* #include */ #include typedef struct IcuTokenizer IcuTokenizer; typedef struct IcuCursor IcuCursor; struct IcuTokenizer { sqlite3_tokenizer base; char *zLocale; }; struct IcuCursor { sqlite3_tokenizer_cursor base; UBreakIterator *pIter; /* ICU break-iterator object */ int nChar; /* Number of UChar elements in pInput */ UChar *aChar; /* Copy of input using utf-16 encoding */ int *aOffset; /* Offsets of each character in utf-8 input */ int nBuffer; char *zBuffer; int iToken; }; /* ** Create a new tokenizer instance. */ static int icuCreate( int argc, /* Number of entries in argv[] */ const char * const *argv, /* Tokenizer creation arguments */ sqlite3_tokenizer **ppTokenizer /* OUT: Created tokenizer */ ){ IcuTokenizer *p; int n = 0; if( argc>0 ){ n = strlen(argv[0])+1; } p = (IcuTokenizer *)sqlite3_malloc64(sizeof(IcuTokenizer)+n); if( !p ){ return SQLITE_NOMEM; } memset(p, 0, sizeof(IcuTokenizer)); if( n ){ p->zLocale = (char *)&p[1]; memcpy(p->zLocale, argv[0], n); } *ppTokenizer = (sqlite3_tokenizer *)p; return SQLITE_OK; } /* ** Destroy a tokenizer */ static int icuDestroy(sqlite3_tokenizer *pTokenizer){ IcuTokenizer *p = (IcuTokenizer *)pTokenizer; sqlite3_free(p); return SQLITE_OK; } /* ** Prepare to begin tokenizing a particular string. The input ** string to be tokenized is pInput[0..nBytes-1]. A cursor ** used to incrementally tokenize this string is returned in ** *ppCursor. */ static int icuOpen( sqlite3_tokenizer *pTokenizer, /* The tokenizer */ const char *zInput, /* Input string */ int nInput, /* Length of zInput in bytes */ sqlite3_tokenizer_cursor **ppCursor /* OUT: Tokenization cursor */ ){ IcuTokenizer *p = (IcuTokenizer *)pTokenizer; IcuCursor *pCsr; const int32_t opt = U_FOLD_CASE_DEFAULT; UErrorCode status = U_ZERO_ERROR; int nChar; UChar32 c; int iInput = 0; int iOut = 0; *ppCursor = 0; if( zInput==0 ){ nInput = 0; zInput = ""; }else if( nInput<0 ){ nInput = strlen(zInput); } nChar = nInput+1; pCsr = (IcuCursor *)sqlite3_malloc64( sizeof(IcuCursor) + /* IcuCursor */ ((nChar+3)&~3) * sizeof(UChar) + /* IcuCursor.aChar[] */ (nChar+1) * sizeof(int) /* IcuCursor.aOffset[] */ ); if( !pCsr ){ return SQLITE_NOMEM; } memset(pCsr, 0, sizeof(IcuCursor)); pCsr->aChar = (UChar *)&pCsr[1]; pCsr->aOffset = (int *)&pCsr->aChar[(nChar+3)&~3]; pCsr->aOffset[iOut] = iInput; U8_NEXT(zInput, iInput, nInput, c); while( c>0 ){ int isError = 0; c = u_foldCase(c, opt); U16_APPEND(pCsr->aChar, iOut, nChar, c, isError); if( isError ){ sqlite3_free(pCsr); return SQLITE_ERROR; } pCsr->aOffset[iOut] = iInput; if( iInputpIter = ubrk_open(UBRK_WORD, p->zLocale, pCsr->aChar, iOut, &status); if( !U_SUCCESS(status) ){ sqlite3_free(pCsr); return SQLITE_ERROR; } pCsr->nChar = iOut; ubrk_first(pCsr->pIter); *ppCursor = (sqlite3_tokenizer_cursor *)pCsr; return SQLITE_OK; } /* ** Close a tokenization cursor previously opened by a call to icuOpen(). */ static int icuClose(sqlite3_tokenizer_cursor *pCursor){ IcuCursor *pCsr = (IcuCursor *)pCursor; ubrk_close(pCsr->pIter); sqlite3_free(pCsr->zBuffer); sqlite3_free(pCsr); return SQLITE_OK; } /* ** Extract the next token from a tokenization cursor. */ static int icuNext( sqlite3_tokenizer_cursor *pCursor, /* Cursor returned by simpleOpen */ const char **ppToken, /* OUT: *ppToken is the token text */ int *pnBytes, /* OUT: Number of bytes in token */ int *piStartOffset, /* OUT: Starting offset of token */ int *piEndOffset, /* OUT: Ending offset of token */ int *piPosition /* OUT: Position integer of token */ ){ IcuCursor *pCsr = (IcuCursor *)pCursor; int iStart = 0; int iEnd = 0; int nByte = 0; while( iStart==iEnd ){ UChar32 c; iStart = ubrk_current(pCsr->pIter); iEnd = ubrk_next(pCsr->pIter); if( iEnd==UBRK_DONE ){ return SQLITE_DONE; } while( iStartaChar, iWhite, pCsr->nChar, c); if( u_isspace(c) ){ iStart = iWhite; }else{ break; } } assert(iStart<=iEnd); } do { UErrorCode status = U_ZERO_ERROR; if( nByte ){ char *zNew = sqlite3_realloc(pCsr->zBuffer, nByte); if( !zNew ){ return SQLITE_NOMEM; } pCsr->zBuffer = zNew; pCsr->nBuffer = nByte; } u_strToUTF8( pCsr->zBuffer, pCsr->nBuffer, &nByte, /* Output vars */ &pCsr->aChar[iStart], iEnd-iStart, /* Input vars */ &status /* Output success/failure */ ); } while( nByte>pCsr->nBuffer ); *ppToken = pCsr->zBuffer; *pnBytes = nByte; *piStartOffset = pCsr->aOffset[iStart]; *piEndOffset = pCsr->aOffset[iEnd]; *piPosition = pCsr->iToken++; return SQLITE_OK; } /* ** The set of routines that implement the simple tokenizer */ static const sqlite3_tokenizer_module icuTokenizerModule = { 0, /* iVersion */ icuCreate, /* xCreate */ icuDestroy, /* xCreate */ icuOpen, /* xOpen */ icuClose, /* xClose */ icuNext, /* xNext */ 0, /* xLanguageid */ }; /* ** Set *ppModule to point at the implementation of the ICU tokenizer. */ SQLITE_PRIVATE void sqlite3Fts3IcuTokenizerModule( sqlite3_tokenizer_module const**ppModule ){ *ppModule = &icuTokenizerModule; } #endif /* defined(SQLITE_ENABLE_ICU) */ #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */ /************** End of fts3_icu.c ********************************************/ /************** Begin file sqlite3rbu.c **************************************/ /* ** 2014 August 30 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** ** OVERVIEW ** ** The RBU extension requires that the RBU update be packaged as an ** SQLite database. The tables it expects to find are described in ** sqlite3rbu.h. Essentially, for each table xyz in the target database ** that the user wishes to write to, a corresponding data_xyz table is ** created in the RBU database and populated with one row for each row to ** update, insert or delete from the target table. ** ** The update proceeds in three stages: ** ** 1) The database is updated. The modified database pages are written ** to a *-oal file. A *-oal file is just like a *-wal file, except ** that it is named "-oal" instead of "-wal". ** Because regular SQLite clients do not look for file named ** "-oal", they go on using the original database in ** rollback mode while the *-oal file is being generated. ** ** During this stage RBU does not update the database by writing ** directly to the target tables. Instead it creates "imposter" ** tables using the SQLITE_TESTCTRL_IMPOSTER interface that it uses ** to update each b-tree individually. All updates required by each ** b-tree are completed before moving on to the next, and all ** updates are done in sorted key order. ** ** 2) The "-oal" file is moved to the equivalent "-wal" ** location using a call to rename(2). Before doing this the RBU ** module takes an EXCLUSIVE lock on the database file, ensuring ** that there are no other active readers. ** ** Once the EXCLUSIVE lock is released, any other database readers ** detect the new *-wal file and read the database in wal mode. At ** this point they see the new version of the database - including ** the updates made as part of the RBU update. ** ** 3) The new *-wal file is checkpointed. This proceeds in the same way ** as a regular database checkpoint, except that a single frame is ** checkpointed each time sqlite3rbu_step() is called. If the RBU ** handle is closed before the entire *-wal file is checkpointed, ** the checkpoint progress is saved in the RBU database and the ** checkpoint can be resumed by another RBU client at some point in ** the future. ** ** POTENTIAL PROBLEMS ** ** The rename() call might not be portable. And RBU is not currently ** syncing the directory after renaming the file. ** ** When state is saved, any commit to the *-oal file and the commit to ** the RBU update database are not atomic. So if the power fails at the ** wrong moment they might get out of sync. As the main database will be ** committed before the RBU update database this will likely either just ** pass unnoticed, or result in SQLITE_CONSTRAINT errors (due to UNIQUE ** constraint violations). ** ** If some client does modify the target database mid RBU update, or some ** other error occurs, the RBU extension will keep throwing errors. It's ** not really clear how to get out of this state. The system could just ** by delete the RBU update database and *-oal file and have the device ** download the update again and start over. ** ** At present, for an UPDATE, both the new.* and old.* records are ** collected in the rbu_xyz table. And for both UPDATEs and DELETEs all ** fields are collected. This means we're probably writing a lot more ** data to disk when saving the state of an ongoing update to the RBU ** update database than is strictly necessary. ** */ /* #include */ /* #include */ /* #include */ /* #include "sqlite3.h" */ #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_RBU) /************** Include sqlite3rbu.h in the middle of sqlite3rbu.c ***********/ /************** Begin file sqlite3rbu.h **************************************/ /* ** 2014 August 30 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** ************************************************************************* ** ** This file contains the public interface for the RBU extension. */ /* ** SUMMARY ** ** Writing a transaction containing a large number of operations on ** b-tree indexes that are collectively larger than the available cache ** memory can be very inefficient. ** ** The problem is that in order to update a b-tree, the leaf page (at least) ** containing the entry being inserted or deleted must be modified. If the ** working set of leaves is larger than the available cache memory, then a ** single leaf that is modified more than once as part of the transaction ** may be loaded from or written to the persistent media multiple times. ** Additionally, because the index updates are likely to be applied in ** random order, access to pages within the database is also likely to be in ** random order, which is itself quite inefficient. ** ** One way to improve the situation is to sort the operations on each index ** by index key before applying them to the b-tree. This leads to an IO ** pattern that resembles a single linear scan through the index b-tree, ** and all but guarantees each modified leaf page is loaded and stored ** exactly once. SQLite uses this trick to improve the performance of ** CREATE INDEX commands. This extension allows it to be used to improve ** the performance of large transactions on existing databases. ** ** Additionally, this extension allows the work involved in writing the ** large transaction to be broken down into sub-transactions performed ** sequentially by separate processes. This is useful if the system cannot ** guarantee that a single update process will run for long enough to apply ** the entire update, for example because the update is being applied on a ** mobile device that is frequently rebooted. Even after the writer process ** has committed one or more sub-transactions, other database clients continue ** to read from the original database snapshot. In other words, partially ** applied transactions are not visible to other clients. ** ** "RBU" stands for "Resumable Bulk Update". As in a large database update ** transmitted via a wireless network to a mobile device. A transaction ** applied using this extension is hence refered to as an "RBU update". ** ** ** LIMITATIONS ** ** An "RBU update" transaction is subject to the following limitations: ** ** * The transaction must consist of INSERT, UPDATE and DELETE operations ** only. ** ** * INSERT statements may not use any default values. ** ** * UPDATE and DELETE statements must identify their target rows by ** non-NULL PRIMARY KEY values. Rows with NULL values stored in PRIMARY ** KEY fields may not be updated or deleted. If the table being written ** has no PRIMARY KEY, affected rows must be identified by rowid. ** ** * UPDATE statements may not modify PRIMARY KEY columns. ** ** * No triggers will be fired. ** ** * No foreign key violations are detected or reported. ** ** * CHECK constraints are not enforced. ** ** * No constraint handling mode except for "OR ROLLBACK" is supported. ** ** ** PREPARATION ** ** An "RBU update" is stored as a separate SQLite database. A database ** containing an RBU update is an "RBU database". For each table in the ** target database to be updated, the RBU database should contain a table ** named "data_" containing the same set of columns as the ** target table, and one more - "rbu_control". The data_% table should ** have no PRIMARY KEY or UNIQUE constraints, but each column should have ** the same type as the corresponding column in the target database. ** The "rbu_control" column should have no type at all. For example, if ** the target database contains: ** ** CREATE TABLE t1(a INTEGER PRIMARY KEY, b TEXT, c UNIQUE); ** ** Then the RBU database should contain: ** ** CREATE TABLE data_t1(a INTEGER, b TEXT, c, rbu_control); ** ** The order of the columns in the data_% table does not matter. ** ** Instead of a regular table, the RBU database may also contain virtual ** tables or view named using the data_ naming scheme. ** ** Instead of the plain data_ naming scheme, RBU database tables ** may also be named data_, where is any sequence ** of zero or more numeric characters (0-9). This can be significant because ** tables within the RBU database are always processed in order sorted by ** name. By judicious selection of the portion of the names ** of the RBU tables the user can therefore control the order in which they ** are processed. This can be useful, for example, to ensure that "external ** content" FTS4 tables are updated before their underlying content tables. ** ** If the target database table is a virtual table or a table that has no ** PRIMARY KEY declaration, the data_% table must also contain a column ** named "rbu_rowid". This column is mapped to the tables implicit primary ** key column - "rowid". Virtual tables for which the "rowid" column does ** not function like a primary key value cannot be updated using RBU. For ** example, if the target db contains either of the following: ** ** CREATE VIRTUAL TABLE x1 USING fts3(a, b); ** CREATE TABLE x1(a, b) ** ** then the RBU database should contain: ** ** CREATE TABLE data_x1(a, b, rbu_rowid, rbu_control); ** ** All non-hidden columns (i.e. all columns matched by "SELECT *") of the ** target table must be present in the input table. For virtual tables, ** hidden columns are optional - they are updated by RBU if present in ** the input table, or not otherwise. For example, to write to an fts4 ** table with a hidden languageid column such as: ** ** CREATE VIRTUAL TABLE ft1 USING fts4(a, b, languageid='langid'); ** ** Either of the following input table schemas may be used: ** ** CREATE TABLE data_ft1(a, b, langid, rbu_rowid, rbu_control); ** CREATE TABLE data_ft1(a, b, rbu_rowid, rbu_control); ** ** For each row to INSERT into the target database as part of the RBU ** update, the corresponding data_% table should contain a single record ** with the "rbu_control" column set to contain integer value 0. The ** other columns should be set to the values that make up the new record ** to insert. ** ** If the target database table has an INTEGER PRIMARY KEY, it is not ** possible to insert a NULL value into the IPK column. Attempting to ** do so results in an SQLITE_MISMATCH error. ** ** For each row to DELETE from the target database as part of the RBU ** update, the corresponding data_% table should contain a single record ** with the "rbu_control" column set to contain integer value 1. The ** real primary key values of the row to delete should be stored in the ** corresponding columns of the data_% table. The values stored in the ** other columns are not used. ** ** For each row to UPDATE from the target database as part of the RBU ** update, the corresponding data_% table should contain a single record ** with the "rbu_control" column set to contain a value of type text. ** The real primary key values identifying the row to update should be ** stored in the corresponding columns of the data_% table row, as should ** the new values of all columns being update. The text value in the ** "rbu_control" column must contain the same number of characters as ** there are columns in the target database table, and must consist entirely ** of 'x' and '.' characters (or in some special cases 'd' - see below). For ** each column that is being updated, the corresponding character is set to ** 'x'. For those that remain as they are, the corresponding character of the ** rbu_control value should be set to '.'. For example, given the tables ** above, the update statement: ** ** UPDATE t1 SET c = 'usa' WHERE a = 4; ** ** is represented by the data_t1 row created by: ** ** INSERT INTO data_t1(a, b, c, rbu_control) VALUES(4, NULL, 'usa', '..x'); ** ** Instead of an 'x' character, characters of the rbu_control value specified ** for UPDATEs may also be set to 'd'. In this case, instead of updating the ** target table with the value stored in the corresponding data_% column, the ** user-defined SQL function "rbu_delta()" is invoked and the result stored in ** the target table column. rbu_delta() is invoked with two arguments - the ** original value currently stored in the target table column and the ** value specified in the data_xxx table. ** ** For example, this row: ** ** INSERT INTO data_t1(a, b, c, rbu_control) VALUES(4, NULL, 'usa', '..d'); ** ** is similar to an UPDATE statement such as: ** ** UPDATE t1 SET c = rbu_delta(c, 'usa') WHERE a = 4; ** ** Finally, if an 'f' character appears in place of a 'd' or 's' in an ** ota_control string, the contents of the data_xxx table column is assumed ** to be a "fossil delta" - a patch to be applied to a blob value in the ** format used by the fossil source-code management system. In this case ** the existing value within the target database table must be of type BLOB. ** It is replaced by the result of applying the specified fossil delta to ** itself. ** ** If the target database table is a virtual table or a table with no PRIMARY ** KEY, the rbu_control value should not include a character corresponding ** to the rbu_rowid value. For example, this: ** ** INSERT INTO data_ft1(a, b, rbu_rowid, rbu_control) ** VALUES(NULL, 'usa', 12, '.x'); ** ** causes a result similar to: ** ** UPDATE ft1 SET b = 'usa' WHERE rowid = 12; ** ** The data_xxx tables themselves should have no PRIMARY KEY declarations. ** However, RBU is more efficient if reading the rows in from each data_xxx ** table in "rowid" order is roughly the same as reading them sorted by ** the PRIMARY KEY of the corresponding target database table. In other ** words, rows should be sorted using the destination table PRIMARY KEY ** fields before they are inserted into the data_xxx tables. ** ** USAGE ** ** The API declared below allows an application to apply an RBU update ** stored on disk to an existing target database. Essentially, the ** application: ** ** 1) Opens an RBU handle using the sqlite3rbu_open() function. ** ** 2) Registers any required virtual table modules with the database ** handle returned by sqlite3rbu_db(). Also, if required, register ** the rbu_delta() implementation. ** ** 3) Calls the sqlite3rbu_step() function one or more times on ** the new handle. Each call to sqlite3rbu_step() performs a single ** b-tree operation, so thousands of calls may be required to apply ** a complete update. ** ** 4) Calls sqlite3rbu_close() to close the RBU update handle. If ** sqlite3rbu_step() has been called enough times to completely ** apply the update to the target database, then the RBU database ** is marked as fully applied. Otherwise, the state of the RBU ** update application is saved in the RBU database for later ** resumption. ** ** See comments below for more detail on APIs. ** ** If an update is only partially applied to the target database by the ** time sqlite3rbu_close() is called, various state information is saved ** within the RBU database. This allows subsequent processes to automatically ** resume the RBU update from where it left off. ** ** To remove all RBU extension state information, returning an RBU database ** to its original contents, it is sufficient to drop all tables that begin ** with the prefix "rbu_" ** ** DATABASE LOCKING ** ** An RBU update may not be applied to a database in WAL mode. Attempting ** to do so is an error (SQLITE_ERROR). ** ** While an RBU handle is open, a SHARED lock may be held on the target ** database file. This means it is possible for other clients to read the ** database, but not to write it. ** ** If an RBU update is started and then suspended before it is completed, ** then an external client writes to the database, then attempting to resume ** the suspended RBU update is also an error (SQLITE_BUSY). */ #ifndef _SQLITE3RBU_H #define _SQLITE3RBU_H /* #include "sqlite3.h" ** Required for error code definitions ** */ #if 0 extern "C" { #endif typedef struct sqlite3rbu sqlite3rbu; /* ** Open an RBU handle. ** ** Argument zTarget is the path to the target database. Argument zRbu is ** the path to the RBU database. Each call to this function must be matched ** by a call to sqlite3rbu_close(). When opening the databases, RBU passes ** the SQLITE_CONFIG_URI flag to sqlite3_open_v2(). So if either zTarget ** or zRbu begin with "file:", it will be interpreted as an SQLite ** database URI, not a regular file name. ** ** If the zState argument is passed a NULL value, the RBU extension stores ** the current state of the update (how many rows have been updated, which ** indexes are yet to be updated etc.) within the RBU database itself. This ** can be convenient, as it means that the RBU application does not need to ** organize removing a separate state file after the update is concluded. ** Or, if zState is non-NULL, it must be a path to a database file in which ** the RBU extension can store the state of the update. ** ** When resuming an RBU update, the zState argument must be passed the same ** value as when the RBU update was started. ** ** Once the RBU update is finished, the RBU extension does not ** automatically remove any zState database file, even if it created it. ** ** By default, RBU uses the default VFS to access the files on disk. To ** use a VFS other than the default, an SQLite "file:" URI containing a ** "vfs=..." option may be passed as the zTarget option. ** ** IMPORTANT NOTE FOR ZIPVFS USERS: The RBU extension works with all of ** SQLite's built-in VFSs, including the multiplexor VFS. However it does ** not work out of the box with zipvfs. Refer to the comment describing ** the zipvfs_create_vfs() API below for details on using RBU with zipvfs. */ SQLITE_API sqlite3rbu *sqlite3rbu_open( const char *zTarget, const char *zRbu, const char *zState ); /* ** Open an RBU handle to perform an RBU vacuum on database file zTarget. ** An RBU vacuum is similar to SQLite's built-in VACUUM command, except ** that it can be suspended and resumed like an RBU update. ** ** The second argument to this function identifies a database in which ** to store the state of the RBU vacuum operation if it is suspended. The ** first time sqlite3rbu_vacuum() is called, to start an RBU vacuum ** operation, the state database should either not exist or be empty ** (contain no tables). If an RBU vacuum is suspended by calling ** sqlite3rbu_close() on the RBU handle before sqlite3rbu_step() has ** returned SQLITE_DONE, the vacuum state is stored in the state database. ** The vacuum can be resumed by calling this function to open a new RBU ** handle specifying the same target and state databases. ** ** If the second argument passed to this function is NULL, then the ** name of the state database is "-vacuum", where ** is the name of the target database file. In this case, on UNIX, if the ** state database is not already present in the file-system, it is created ** with the same permissions as the target db is made. ** ** With an RBU vacuum, it is an SQLITE_MISUSE error if the name of the ** state database ends with "-vactmp". This name is reserved for internal ** use. ** ** This function does not delete the state database after an RBU vacuum ** is completed, even if it created it. However, if the call to ** sqlite3rbu_close() returns any value other than SQLITE_OK, the contents ** of the state tables within the state database are zeroed. This way, ** the next call to sqlite3rbu_vacuum() opens a handle that starts a ** new RBU vacuum operation. ** ** As with sqlite3rbu_open(), Zipvfs users should rever to the comment ** describing the sqlite3rbu_create_vfs() API function below for ** a description of the complications associated with using RBU with ** zipvfs databases. */ SQLITE_API sqlite3rbu *sqlite3rbu_vacuum( const char *zTarget, const char *zState ); /* ** Configure a limit for the amount of temp space that may be used by ** the RBU handle passed as the first argument. The new limit is specified ** in bytes by the second parameter. If it is positive, the limit is updated. ** If the second parameter to this function is passed zero, then the limit ** is removed entirely. If the second parameter is negative, the limit is ** not modified (this is useful for querying the current limit). ** ** In all cases the returned value is the current limit in bytes (zero ** indicates unlimited). ** ** If the temp space limit is exceeded during operation, an SQLITE_FULL ** error is returned. */ SQLITE_API sqlite3_int64 sqlite3rbu_temp_size_limit(sqlite3rbu*, sqlite3_int64); /* ** Return the current amount of temp file space, in bytes, currently used by ** the RBU handle passed as the only argument. */ SQLITE_API sqlite3_int64 sqlite3rbu_temp_size(sqlite3rbu*); /* ** Internally, each RBU connection uses a separate SQLite database ** connection to access the target and rbu update databases. This ** API allows the application direct access to these database handles. ** ** The first argument passed to this function must be a valid, open, RBU ** handle. The second argument should be passed zero to access the target ** database handle, or non-zero to access the rbu update database handle. ** Accessing the underlying database handles may be useful in the ** following scenarios: ** ** * If any target tables are virtual tables, it may be necessary to ** call sqlite3_create_module() on the target database handle to ** register the required virtual table implementations. ** ** * If the data_xxx tables in the RBU source database are virtual ** tables, the application may need to call sqlite3_create_module() on ** the rbu update db handle to any required virtual table ** implementations. ** ** * If the application uses the "rbu_delta()" feature described above, ** it must use sqlite3_create_function() or similar to register the ** rbu_delta() implementation with the target database handle. ** ** If an error has occurred, either while opening or stepping the RBU object, ** this function may return NULL. The error code and message may be collected ** when sqlite3rbu_close() is called. ** ** Database handles returned by this function remain valid until the next ** call to any sqlite3rbu_xxx() function other than sqlite3rbu_db(). */ SQLITE_API sqlite3 *sqlite3rbu_db(sqlite3rbu*, int bRbu); /* ** Do some work towards applying the RBU update to the target db. ** ** Return SQLITE_DONE if the update has been completely applied, or ** SQLITE_OK if no error occurs but there remains work to do to apply ** the RBU update. If an error does occur, some other error code is ** returned. ** ** Once a call to sqlite3rbu_step() has returned a value other than ** SQLITE_OK, all subsequent calls on the same RBU handle are no-ops ** that immediately return the same value. */ SQLITE_API int sqlite3rbu_step(sqlite3rbu *pRbu); /* ** Force RBU to save its state to disk. ** ** If a power failure or application crash occurs during an update, following ** system recovery RBU may resume the update from the point at which the state ** was last saved. In other words, from the most recent successful call to ** sqlite3rbu_close() or this function. ** ** SQLITE_OK is returned if successful, or an SQLite error code otherwise. */ SQLITE_API int sqlite3rbu_savestate(sqlite3rbu *pRbu); /* ** Close an RBU handle. ** ** If the RBU update has been completely applied, mark the RBU database ** as fully applied. Otherwise, assuming no error has occurred, save the ** current state of the RBU update appliation to the RBU database. ** ** If an error has already occurred as part of an sqlite3rbu_step() ** or sqlite3rbu_open() call, or if one occurs within this function, an ** SQLite error code is returned. Additionally, if pzErrmsg is not NULL, ** *pzErrmsg may be set to point to a buffer containing a utf-8 formatted ** English language error message. It is the responsibility of the caller to ** eventually free any such buffer using sqlite3_free(). ** ** Otherwise, if no error occurs, this function returns SQLITE_OK if the ** update has been partially applied, or SQLITE_DONE if it has been ** completely applied. */ SQLITE_API int sqlite3rbu_close(sqlite3rbu *pRbu, char **pzErrmsg); /* ** Return the total number of key-value operations (inserts, deletes or ** updates) that have been performed on the target database since the ** current RBU update was started. */ SQLITE_API sqlite3_int64 sqlite3rbu_progress(sqlite3rbu *pRbu); /* ** Obtain permyriadage (permyriadage is to 10000 as percentage is to 100) ** progress indications for the two stages of an RBU update. This API may ** be useful for driving GUI progress indicators and similar. ** ** An RBU update is divided into two stages: ** ** * Stage 1, in which changes are accumulated in an oal/wal file, and ** * Stage 2, in which the contents of the wal file are copied into the ** main database. ** ** The update is visible to non-RBU clients during stage 2. During stage 1 ** non-RBU reader clients may see the original database. ** ** If this API is called during stage 2 of the update, output variable ** (*pnOne) is set to 10000 to indicate that stage 1 has finished and (*pnTwo) ** to a value between 0 and 10000 to indicate the permyriadage progress of ** stage 2. A value of 5000 indicates that stage 2 is half finished, ** 9000 indicates that it is 90% finished, and so on. ** ** If this API is called during stage 1 of the update, output variable ** (*pnTwo) is set to 0 to indicate that stage 2 has not yet started. The ** value to which (*pnOne) is set depends on whether or not the RBU ** database contains an "rbu_count" table. The rbu_count table, if it ** exists, must contain the same columns as the following: ** ** CREATE TABLE rbu_count(tbl TEXT PRIMARY KEY, cnt INTEGER) WITHOUT ROWID; ** ** There must be one row in the table for each source (data_xxx) table within ** the RBU database. The 'tbl' column should contain the name of the source ** table. The 'cnt' column should contain the number of rows within the ** source table. ** ** If the rbu_count table is present and populated correctly and this ** API is called during stage 1, the *pnOne output variable is set to the ** permyriadage progress of the same stage. If the rbu_count table does ** not exist, then (*pnOne) is set to -1 during stage 1. If the rbu_count ** table exists but is not correctly populated, the value of the *pnOne ** output variable during stage 1 is undefined. */ SQLITE_API void sqlite3rbu_bp_progress(sqlite3rbu *pRbu, int *pnOne, int*pnTwo); /* ** Obtain an indication as to the current stage of an RBU update or vacuum. ** This function always returns one of the SQLITE_RBU_STATE_XXX constants ** defined in this file. Return values should be interpreted as follows: ** ** SQLITE_RBU_STATE_OAL: ** RBU is currently building a *-oal file. The next call to sqlite3rbu_step() ** may either add further data to the *-oal file, or compute data that will ** be added by a subsequent call. ** ** SQLITE_RBU_STATE_MOVE: ** RBU has finished building the *-oal file. The next call to sqlite3rbu_step() ** will move the *-oal file to the equivalent *-wal path. If the current ** operation is an RBU update, then the updated version of the database ** file will become visible to ordinary SQLite clients following the next ** call to sqlite3rbu_step(). ** ** SQLITE_RBU_STATE_CHECKPOINT: ** RBU is currently performing an incremental checkpoint. The next call to ** sqlite3rbu_step() will copy a page of data from the *-wal file into ** the target database file. ** ** SQLITE_RBU_STATE_DONE: ** The RBU operation has finished. Any subsequent calls to sqlite3rbu_step() ** will immediately return SQLITE_DONE. ** ** SQLITE_RBU_STATE_ERROR: ** An error has occurred. Any subsequent calls to sqlite3rbu_step() will ** immediately return the SQLite error code associated with the error. */ #define SQLITE_RBU_STATE_OAL 1 #define SQLITE_RBU_STATE_MOVE 2 #define SQLITE_RBU_STATE_CHECKPOINT 3 #define SQLITE_RBU_STATE_DONE 4 #define SQLITE_RBU_STATE_ERROR 5 SQLITE_API int sqlite3rbu_state(sqlite3rbu *pRbu); /* ** Create an RBU VFS named zName that accesses the underlying file-system ** via existing VFS zParent. Or, if the zParent parameter is passed NULL, ** then the new RBU VFS uses the default system VFS to access the file-system. ** The new object is registered as a non-default VFS with SQLite before ** returning. ** ** Part of the RBU implementation uses a custom VFS object. Usually, this ** object is created and deleted automatically by RBU. ** ** The exception is for applications that also use zipvfs. In this case, ** the custom VFS must be explicitly created by the user before the RBU ** handle is opened. The RBU VFS should be installed so that the zipvfs ** VFS uses the RBU VFS, which in turn uses any other VFS layers in use ** (for example multiplexor) to access the file-system. For example, ** to assemble an RBU enabled VFS stack that uses both zipvfs and ** multiplexor (error checking omitted): ** ** // Create a VFS named "multiplex" (not the default). ** sqlite3_multiplex_initialize(0, 0); ** ** // Create an rbu VFS named "rbu" that uses multiplexor. If the ** // second argument were replaced with NULL, the "rbu" VFS would ** // access the file-system via the system default VFS, bypassing the ** // multiplexor. ** sqlite3rbu_create_vfs("rbu", "multiplex"); ** ** // Create a zipvfs VFS named "zipvfs" that uses rbu. ** zipvfs_create_vfs_v3("zipvfs", "rbu", 0, xCompressorAlgorithmDetector); ** ** // Make zipvfs the default VFS. ** sqlite3_vfs_register(sqlite3_vfs_find("zipvfs"), 1); ** ** Because the default VFS created above includes a RBU functionality, it ** may be used by RBU clients. Attempting to use RBU with a zipvfs VFS stack ** that does not include the RBU layer results in an error. ** ** The overhead of adding the "rbu" VFS to the system is negligible for ** non-RBU users. There is no harm in an application accessing the ** file-system via "rbu" all the time, even if it only uses RBU functionality ** occasionally. */ SQLITE_API int sqlite3rbu_create_vfs(const char *zName, const char *zParent); /* ** Deregister and destroy an RBU vfs created by an earlier call to ** sqlite3rbu_create_vfs(). ** ** VFS objects are not reference counted. If a VFS object is destroyed ** before all database handles that use it have been closed, the results ** are undefined. */ SQLITE_API void sqlite3rbu_destroy_vfs(const char *zName); #if 0 } /* end of the 'extern "C"' block */ #endif #endif /* _SQLITE3RBU_H */ /************** End of sqlite3rbu.h ******************************************/ /************** Continuing where we left off in sqlite3rbu.c *****************/ #if defined(_WIN32_WCE) /* #include "windows.h" */ #endif /* Maximum number of prepared UPDATE statements held by this module */ #define SQLITE_RBU_UPDATE_CACHESIZE 16 /* Delta checksums disabled by default. Compile with -DRBU_ENABLE_DELTA_CKSUM ** to enable checksum verification. */ #ifndef RBU_ENABLE_DELTA_CKSUM # define RBU_ENABLE_DELTA_CKSUM 0 #endif /* ** Swap two objects of type TYPE. */ #if !defined(SQLITE_AMALGAMATION) # define SWAP(TYPE,A,B) {TYPE t=A; A=B; B=t;} #endif /* ** The rbu_state table is used to save the state of a partially applied ** update so that it can be resumed later. The table consists of integer ** keys mapped to values as follows: ** ** RBU_STATE_STAGE: ** May be set to integer values 1, 2, 4 or 5. As follows: ** 1: the *-rbu file is currently under construction. ** 2: the *-rbu file has been constructed, but not yet moved ** to the *-wal path. ** 4: the checkpoint is underway. ** 5: the rbu update has been checkpointed. ** ** RBU_STATE_TBL: ** Only valid if STAGE==1. The target database name of the table ** currently being written. ** ** RBU_STATE_IDX: ** Only valid if STAGE==1. The target database name of the index ** currently being written, or NULL if the main table is currently being ** updated. ** ** RBU_STATE_ROW: ** Only valid if STAGE==1. Number of rows already processed for the current ** table/index. ** ** RBU_STATE_PROGRESS: ** Trbul number of sqlite3rbu_step() calls made so far as part of this ** rbu update. ** ** RBU_STATE_CKPT: ** Valid if STAGE==4. The 64-bit checksum associated with the wal-index ** header created by recovering the *-wal file. This is used to detect ** cases when another client appends frames to the *-wal file in the ** middle of an incremental checkpoint (an incremental checkpoint cannot ** be continued if this happens). ** ** RBU_STATE_COOKIE: ** Valid if STAGE==1. The current change-counter cookie value in the ** target db file. ** ** RBU_STATE_OALSZ: ** Valid if STAGE==1. The size in bytes of the *-oal file. ** ** RBU_STATE_DATATBL: ** Only valid if STAGE==1. The RBU database name of the table ** currently being read. */ #define RBU_STATE_STAGE 1 #define RBU_STATE_TBL 2 #define RBU_STATE_IDX 3 #define RBU_STATE_ROW 4 #define RBU_STATE_PROGRESS 5 #define RBU_STATE_CKPT 6 #define RBU_STATE_COOKIE 7 #define RBU_STATE_OALSZ 8 #define RBU_STATE_PHASEONESTEP 9 #define RBU_STATE_DATATBL 10 #define RBU_STAGE_OAL 1 #define RBU_STAGE_MOVE 2 #define RBU_STAGE_CAPTURE 3 #define RBU_STAGE_CKPT 4 #define RBU_STAGE_DONE 5 #define RBU_CREATE_STATE \ "CREATE TABLE IF NOT EXISTS %s.rbu_state(k INTEGER PRIMARY KEY, v)" typedef struct RbuFrame RbuFrame; typedef struct RbuObjIter RbuObjIter; typedef struct RbuState RbuState; typedef struct RbuSpan RbuSpan; typedef struct rbu_vfs rbu_vfs; typedef struct rbu_file rbu_file; typedef struct RbuUpdateStmt RbuUpdateStmt; #if !defined(SQLITE_AMALGAMATION) typedef unsigned int u32; typedef unsigned short u16; typedef unsigned char u8; typedef sqlite3_int64 i64; #endif /* ** These values must match the values defined in wal.c for the equivalent ** locks. These are not magic numbers as they are part of the SQLite file ** format. */ #define WAL_LOCK_WRITE 0 #define WAL_LOCK_CKPT 1 #define WAL_LOCK_READ0 3 #define SQLITE_FCNTL_RBUCNT 5149216 /* ** A structure to store values read from the rbu_state table in memory. */ struct RbuState { int eStage; char *zTbl; char *zDataTbl; char *zIdx; i64 iWalCksum; int nRow; i64 nProgress; u32 iCookie; i64 iOalSz; i64 nPhaseOneStep; }; struct RbuUpdateStmt { char *zMask; /* Copy of update mask used with pUpdate */ sqlite3_stmt *pUpdate; /* Last update statement (or NULL) */ RbuUpdateStmt *pNext; }; struct RbuSpan { const char *zSpan; int nSpan; }; /* ** An iterator of this type is used to iterate through all objects in ** the target database that require updating. For each such table, the ** iterator visits, in order: ** ** * the table itself, ** * each index of the table (zero or more points to visit), and ** * a special "cleanup table" state. ** ** abIndexed: ** If the table has no indexes on it, abIndexed is set to NULL. Otherwise, ** it points to an array of flags nTblCol elements in size. The flag is ** set for each column that is either a part of the PK or a part of an ** index. Or clear otherwise. ** ** If there are one or more partial indexes on the table, all fields of ** this array set set to 1. This is because in that case, the module has ** no way to tell which fields will be required to add and remove entries ** from the partial indexes. ** */ struct RbuObjIter { sqlite3_stmt *pTblIter; /* Iterate through tables */ sqlite3_stmt *pIdxIter; /* Index iterator */ int nTblCol; /* Size of azTblCol[] array */ char **azTblCol; /* Array of unquoted target column names */ char **azTblType; /* Array of target column types */ int *aiSrcOrder; /* src table col -> target table col */ u8 *abTblPk; /* Array of flags, set on target PK columns */ u8 *abNotNull; /* Array of flags, set on NOT NULL columns */ u8 *abIndexed; /* Array of flags, set on indexed & PK cols */ int eType; /* Table type - an RBU_PK_XXX value */ /* Output variables. zTbl==0 implies EOF. */ int bCleanup; /* True in "cleanup" state */ const char *zTbl; /* Name of target db table */ const char *zDataTbl; /* Name of rbu db table (or null) */ const char *zIdx; /* Name of target db index (or null) */ int iTnum; /* Root page of current object */ int iPkTnum; /* If eType==EXTERNAL, root of PK index */ int bUnique; /* Current index is unique */ int nIndex; /* Number of aux. indexes on table zTbl */ /* Statements created by rbuObjIterPrepareAll() */ int nCol; /* Number of columns in current object */ sqlite3_stmt *pSelect; /* Source data */ sqlite3_stmt *pInsert; /* Statement for INSERT operations */ sqlite3_stmt *pDelete; /* Statement for DELETE ops */ sqlite3_stmt *pTmpInsert; /* Insert into rbu_tmp_$zDataTbl */ int nIdxCol; RbuSpan *aIdxCol; char *zIdxSql; /* Last UPDATE used (for PK b-tree updates only), or NULL. */ RbuUpdateStmt *pRbuUpdate; }; /* ** Values for RbuObjIter.eType ** ** 0: Table does not exist (error) ** 1: Table has an implicit rowid. ** 2: Table has an explicit IPK column. ** 3: Table has an external PK index. ** 4: Table is WITHOUT ROWID. ** 5: Table is a virtual table. */ #define RBU_PK_NOTABLE 0 #define RBU_PK_NONE 1 #define RBU_PK_IPK 2 #define RBU_PK_EXTERNAL 3 #define RBU_PK_WITHOUT_ROWID 4 #define RBU_PK_VTAB 5 /* ** Within the RBU_STAGE_OAL stage, each call to sqlite3rbu_step() performs ** one of the following operations. */ #define RBU_INSERT 1 /* Insert on a main table b-tree */ #define RBU_DELETE 2 /* Delete a row from a main table b-tree */ #define RBU_REPLACE 3 /* Delete and then insert a row */ #define RBU_IDX_DELETE 4 /* Delete a row from an aux. index b-tree */ #define RBU_IDX_INSERT 5 /* Insert on an aux. index b-tree */ #define RBU_UPDATE 6 /* Update a row in a main table b-tree */ /* ** A single step of an incremental checkpoint - frame iWalFrame of the wal ** file should be copied to page iDbPage of the database file. */ struct RbuFrame { u32 iDbPage; u32 iWalFrame; }; /* ** RBU handle. ** ** nPhaseOneStep: ** If the RBU database contains an rbu_count table, this value is set to ** a running estimate of the number of b-tree operations required to ** finish populating the *-oal file. This allows the sqlite3_bp_progress() ** API to calculate the permyriadage progress of populating the *-oal file ** using the formula: ** ** permyriadage = (10000 * nProgress) / nPhaseOneStep ** ** nPhaseOneStep is initialized to the sum of: ** ** nRow * (nIndex + 1) ** ** for all source tables in the RBU database, where nRow is the number ** of rows in the source table and nIndex the number of indexes on the ** corresponding target database table. ** ** This estimate is accurate if the RBU update consists entirely of ** INSERT operations. However, it is inaccurate if: ** ** * the RBU update contains any UPDATE operations. If the PK specified ** for an UPDATE operation does not exist in the target table, then ** no b-tree operations are required on index b-trees. Or if the ** specified PK does exist, then (nIndex*2) such operations are ** required (one delete and one insert on each index b-tree). ** ** * the RBU update contains any DELETE operations for which the specified ** PK does not exist. In this case no operations are required on index ** b-trees. ** ** * the RBU update contains REPLACE operations. These are similar to ** UPDATE operations. ** ** nPhaseOneStep is updated to account for the conditions above during the ** first pass of each source table. The updated nPhaseOneStep value is ** stored in the rbu_state table if the RBU update is suspended. */ struct sqlite3rbu { int eStage; /* Value of RBU_STATE_STAGE field */ sqlite3 *dbMain; /* target database handle */ sqlite3 *dbRbu; /* rbu database handle */ char *zTarget; /* Path to target db */ char *zRbu; /* Path to rbu db */ char *zState; /* Path to state db (or NULL if zRbu) */ char zStateDb[5]; /* Db name for state ("stat" or "main") */ int rc; /* Value returned by last rbu_step() call */ char *zErrmsg; /* Error message if rc!=SQLITE_OK */ int nStep; /* Rows processed for current object */ int nProgress; /* Rows processed for all objects */ RbuObjIter objiter; /* Iterator for skipping through tbl/idx */ const char *zVfsName; /* Name of automatically created rbu vfs */ rbu_file *pTargetFd; /* File handle open on target db */ int nPagePerSector; /* Pages per sector for pTargetFd */ i64 iOalSz; i64 nPhaseOneStep; /* The following state variables are used as part of the incremental ** checkpoint stage (eStage==RBU_STAGE_CKPT). See comments surrounding ** function rbuSetupCheckpoint() for details. */ u32 iMaxFrame; /* Largest iWalFrame value in aFrame[] */ u32 mLock; int nFrame; /* Entries in aFrame[] array */ int nFrameAlloc; /* Allocated size of aFrame[] array */ RbuFrame *aFrame; int pgsz; u8 *aBuf; i64 iWalCksum; i64 szTemp; /* Current size of all temp files in use */ i64 szTempLimit; /* Total size limit for temp files */ /* Used in RBU vacuum mode only */ int nRbu; /* Number of RBU VFS in the stack */ rbu_file *pRbuFd; /* Fd for main db of dbRbu */ }; /* ** An rbu VFS is implemented using an instance of this structure. ** ** Variable pRbu is only non-NULL for automatically created RBU VFS objects. ** It is NULL for RBU VFS objects created explicitly using ** sqlite3rbu_create_vfs(). It is used to track the total amount of temp ** space used by the RBU handle. */ struct rbu_vfs { sqlite3_vfs base; /* rbu VFS shim methods */ sqlite3_vfs *pRealVfs; /* Underlying VFS */ sqlite3_mutex *mutex; /* Mutex to protect pMain */ sqlite3rbu *pRbu; /* Owner RBU object */ rbu_file *pMain; /* List of main db files */ rbu_file *pMainRbu; /* List of main db files with pRbu!=0 */ }; /* ** Each file opened by an rbu VFS is represented by an instance of ** the following structure. ** ** If this is a temporary file (pRbu!=0 && flags&DELETE_ON_CLOSE), variable ** "sz" is set to the current size of the database file. */ struct rbu_file { sqlite3_file base; /* sqlite3_file methods */ sqlite3_file *pReal; /* Underlying file handle */ rbu_vfs *pRbuVfs; /* Pointer to the rbu_vfs object */ sqlite3rbu *pRbu; /* Pointer to rbu object (rbu target only) */ i64 sz; /* Size of file in bytes (temp only) */ int openFlags; /* Flags this file was opened with */ u32 iCookie; /* Cookie value for main db files */ u8 iWriteVer; /* "write-version" value for main db files */ u8 bNolock; /* True to fail EXCLUSIVE locks */ int nShm; /* Number of entries in apShm[] array */ char **apShm; /* Array of mmap'd *-shm regions */ char *zDel; /* Delete this when closing file */ const char *zWal; /* Wal filename for this main db file */ rbu_file *pWalFd; /* Wal file descriptor for this main db */ rbu_file *pMainNext; /* Next MAIN_DB file */ rbu_file *pMainRbuNext; /* Next MAIN_DB file with pRbu!=0 */ }; /* ** True for an RBU vacuum handle, or false otherwise. */ #define rbuIsVacuum(p) ((p)->zTarget==0) /************************************************************************* ** The following three functions, found below: ** ** rbuDeltaGetInt() ** rbuDeltaChecksum() ** rbuDeltaApply() ** ** are lifted from the fossil source code (http://fossil-scm.org). They ** are used to implement the scalar SQL function rbu_fossil_delta(). */ /* ** Read bytes from *pz and convert them into a positive integer. When ** finished, leave *pz pointing to the first character past the end of ** the integer. The *pLen parameter holds the length of the string ** in *pz and is decremented once for each character in the integer. */ static unsigned int rbuDeltaGetInt(const char **pz, int *pLen){ static const signed char zValue[] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, 36, -1, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, -1, -1, -1, 63, -1, }; unsigned int v = 0; int c; unsigned char *z = (unsigned char*)*pz; unsigned char *zStart = z; while( (c = zValue[0x7f&*(z++)])>=0 ){ v = (v<<6) + c; } z--; *pLen -= z - zStart; *pz = (char*)z; return v; } #if RBU_ENABLE_DELTA_CKSUM /* ** Compute a 32-bit checksum on the N-byte buffer. Return the result. */ static unsigned int rbuDeltaChecksum(const char *zIn, size_t N){ const unsigned char *z = (const unsigned char *)zIn; unsigned sum0 = 0; unsigned sum1 = 0; unsigned sum2 = 0; unsigned sum3 = 0; while(N >= 16){ sum0 += ((unsigned)z[0] + z[4] + z[8] + z[12]); sum1 += ((unsigned)z[1] + z[5] + z[9] + z[13]); sum2 += ((unsigned)z[2] + z[6] + z[10]+ z[14]); sum3 += ((unsigned)z[3] + z[7] + z[11]+ z[15]); z += 16; N -= 16; } while(N >= 4){ sum0 += z[0]; sum1 += z[1]; sum2 += z[2]; sum3 += z[3]; z += 4; N -= 4; } sum3 += (sum2 << 8) + (sum1 << 16) + (sum0 << 24); switch(N){ case 3: sum3 += (z[2] << 8); case 2: sum3 += (z[1] << 16); case 1: sum3 += (z[0] << 24); default: ; } return sum3; } #endif /* ** Apply a delta. ** ** The output buffer should be big enough to hold the whole output ** file and a NUL terminator at the end. The delta_output_size() ** routine will determine this size for you. ** ** The delta string should be null-terminated. But the delta string ** may contain embedded NUL characters (if the input and output are ** binary files) so we also have to pass in the length of the delta in ** the lenDelta parameter. ** ** This function returns the size of the output file in bytes (excluding ** the final NUL terminator character). Except, if the delta string is ** malformed or intended for use with a source file other than zSrc, ** then this routine returns -1. ** ** Refer to the delta_create() documentation above for a description ** of the delta file format. */ static int rbuDeltaApply( const char *zSrc, /* The source or pattern file */ int lenSrc, /* Length of the source file */ const char *zDelta, /* Delta to apply to the pattern */ int lenDelta, /* Length of the delta */ char *zOut /* Write the output into this preallocated buffer */ ){ unsigned int limit; unsigned int total = 0; #if RBU_ENABLE_DELTA_CKSUM char *zOrigOut = zOut; #endif limit = rbuDeltaGetInt(&zDelta, &lenDelta); if( *zDelta!='\n' ){ /* ERROR: size integer not terminated by "\n" */ return -1; } zDelta++; lenDelta--; while( *zDelta && lenDelta>0 ){ unsigned int cnt, ofst; cnt = rbuDeltaGetInt(&zDelta, &lenDelta); switch( zDelta[0] ){ case '@': { zDelta++; lenDelta--; ofst = rbuDeltaGetInt(&zDelta, &lenDelta); if( lenDelta>0 && zDelta[0]!=',' ){ /* ERROR: copy command not terminated by ',' */ return -1; } zDelta++; lenDelta--; total += cnt; if( total>limit ){ /* ERROR: copy exceeds output file size */ return -1; } if( (int)(ofst+cnt) > lenSrc ){ /* ERROR: copy extends past end of input */ return -1; } memcpy(zOut, &zSrc[ofst], cnt); zOut += cnt; break; } case ':': { zDelta++; lenDelta--; total += cnt; if( total>limit ){ /* ERROR: insert command gives an output larger than predicted */ return -1; } if( (int)cnt>lenDelta ){ /* ERROR: insert count exceeds size of delta */ return -1; } memcpy(zOut, zDelta, cnt); zOut += cnt; zDelta += cnt; lenDelta -= cnt; break; } case ';': { zDelta++; lenDelta--; zOut[0] = 0; #if RBU_ENABLE_DELTA_CKSUM if( cnt!=rbuDeltaChecksum(zOrigOut, total) ){ /* ERROR: bad checksum */ return -1; } #endif if( total!=limit ){ /* ERROR: generated size does not match predicted size */ return -1; } return total; } default: { /* ERROR: unknown delta operator */ return -1; } } } /* ERROR: unterminated delta */ return -1; } static int rbuDeltaOutputSize(const char *zDelta, int lenDelta){ int size; size = rbuDeltaGetInt(&zDelta, &lenDelta); if( *zDelta!='\n' ){ /* ERROR: size integer not terminated by "\n" */ return -1; } return size; } /* ** End of code taken from fossil. *************************************************************************/ /* ** Implementation of SQL scalar function rbu_fossil_delta(). ** ** This function applies a fossil delta patch to a blob. Exactly two ** arguments must be passed to this function. The first is the blob to ** patch and the second the patch to apply. If no error occurs, this ** function returns the patched blob. */ static void rbuFossilDeltaFunc( sqlite3_context *context, int argc, sqlite3_value **argv ){ const char *aDelta; int nDelta; const char *aOrig; int nOrig; int nOut; int nOut2; char *aOut; assert( argc==2 ); nOrig = sqlite3_value_bytes(argv[0]); aOrig = (const char*)sqlite3_value_blob(argv[0]); nDelta = sqlite3_value_bytes(argv[1]); aDelta = (const char*)sqlite3_value_blob(argv[1]); /* Figure out the size of the output */ nOut = rbuDeltaOutputSize(aDelta, nDelta); if( nOut<0 ){ sqlite3_result_error(context, "corrupt fossil delta", -1); return; } aOut = sqlite3_malloc(nOut+1); if( aOut==0 ){ sqlite3_result_error_nomem(context); }else{ nOut2 = rbuDeltaApply(aOrig, nOrig, aDelta, nDelta, aOut); if( nOut2!=nOut ){ sqlite3_free(aOut); sqlite3_result_error(context, "corrupt fossil delta", -1); }else{ sqlite3_result_blob(context, aOut, nOut, sqlite3_free); } } } /* ** Prepare the SQL statement in buffer zSql against database handle db. ** If successful, set *ppStmt to point to the new statement and return ** SQLITE_OK. ** ** Otherwise, if an error does occur, set *ppStmt to NULL and return ** an SQLite error code. Additionally, set output variable *pzErrmsg to ** point to a buffer containing an error message. It is the responsibility ** of the caller to (eventually) free this buffer using sqlite3_free(). */ static int prepareAndCollectError( sqlite3 *db, sqlite3_stmt **ppStmt, char **pzErrmsg, const char *zSql ){ int rc = sqlite3_prepare_v2(db, zSql, -1, ppStmt, 0); if( rc!=SQLITE_OK ){ *pzErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(db)); *ppStmt = 0; } return rc; } /* ** Reset the SQL statement passed as the first argument. Return a copy ** of the value returned by sqlite3_reset(). ** ** If an error has occurred, then set *pzErrmsg to point to a buffer ** containing an error message. It is the responsibility of the caller ** to eventually free this buffer using sqlite3_free(). */ static int resetAndCollectError(sqlite3_stmt *pStmt, char **pzErrmsg){ int rc = sqlite3_reset(pStmt); if( rc!=SQLITE_OK ){ *pzErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(sqlite3_db_handle(pStmt))); } return rc; } /* ** Unless it is NULL, argument zSql points to a buffer allocated using ** sqlite3_malloc containing an SQL statement. This function prepares the SQL ** statement against database db and frees the buffer. If statement ** compilation is successful, *ppStmt is set to point to the new statement ** handle and SQLITE_OK is returned. ** ** Otherwise, if an error occurs, *ppStmt is set to NULL and an error code ** returned. In this case, *pzErrmsg may also be set to point to an error ** message. It is the responsibility of the caller to free this error message ** buffer using sqlite3_free(). ** ** If argument zSql is NULL, this function assumes that an OOM has occurred. ** In this case SQLITE_NOMEM is returned and *ppStmt set to NULL. */ static int prepareFreeAndCollectError( sqlite3 *db, sqlite3_stmt **ppStmt, char **pzErrmsg, char *zSql ){ int rc; assert( *pzErrmsg==0 ); if( zSql==0 ){ rc = SQLITE_NOMEM; *ppStmt = 0; }else{ rc = prepareAndCollectError(db, ppStmt, pzErrmsg, zSql); sqlite3_free(zSql); } return rc; } /* ** Free the RbuObjIter.azTblCol[] and RbuObjIter.abTblPk[] arrays allocated ** by an earlier call to rbuObjIterCacheTableInfo(). */ static void rbuObjIterFreeCols(RbuObjIter *pIter){ int i; for(i=0; inTblCol; i++){ sqlite3_free(pIter->azTblCol[i]); sqlite3_free(pIter->azTblType[i]); } sqlite3_free(pIter->azTblCol); pIter->azTblCol = 0; pIter->azTblType = 0; pIter->aiSrcOrder = 0; pIter->abTblPk = 0; pIter->abNotNull = 0; pIter->nTblCol = 0; pIter->eType = 0; /* Invalid value */ } /* ** Finalize all statements and free all allocations that are specific to ** the current object (table/index pair). */ static void rbuObjIterClearStatements(RbuObjIter *pIter){ RbuUpdateStmt *pUp; sqlite3_finalize(pIter->pSelect); sqlite3_finalize(pIter->pInsert); sqlite3_finalize(pIter->pDelete); sqlite3_finalize(pIter->pTmpInsert); pUp = pIter->pRbuUpdate; while( pUp ){ RbuUpdateStmt *pTmp = pUp->pNext; sqlite3_finalize(pUp->pUpdate); sqlite3_free(pUp); pUp = pTmp; } sqlite3_free(pIter->aIdxCol); sqlite3_free(pIter->zIdxSql); pIter->pSelect = 0; pIter->pInsert = 0; pIter->pDelete = 0; pIter->pRbuUpdate = 0; pIter->pTmpInsert = 0; pIter->nCol = 0; pIter->nIdxCol = 0; pIter->aIdxCol = 0; pIter->zIdxSql = 0; } /* ** Clean up any resources allocated as part of the iterator object passed ** as the only argument. */ static void rbuObjIterFinalize(RbuObjIter *pIter){ rbuObjIterClearStatements(pIter); sqlite3_finalize(pIter->pTblIter); sqlite3_finalize(pIter->pIdxIter); rbuObjIterFreeCols(pIter); memset(pIter, 0, sizeof(RbuObjIter)); } /* ** Advance the iterator to the next position. ** ** If no error occurs, SQLITE_OK is returned and the iterator is left ** pointing to the next entry. Otherwise, an error code and message is ** left in the RBU handle passed as the first argument. A copy of the ** error code is returned. */ static int rbuObjIterNext(sqlite3rbu *p, RbuObjIter *pIter){ int rc = p->rc; if( rc==SQLITE_OK ){ /* Free any SQLite statements used while processing the previous object */ rbuObjIterClearStatements(pIter); if( pIter->zIdx==0 ){ rc = sqlite3_exec(p->dbMain, "DROP TRIGGER IF EXISTS temp.rbu_insert_tr;" "DROP TRIGGER IF EXISTS temp.rbu_update1_tr;" "DROP TRIGGER IF EXISTS temp.rbu_update2_tr;" "DROP TRIGGER IF EXISTS temp.rbu_delete_tr;" , 0, 0, &p->zErrmsg ); } if( rc==SQLITE_OK ){ if( pIter->bCleanup ){ rbuObjIterFreeCols(pIter); pIter->bCleanup = 0; rc = sqlite3_step(pIter->pTblIter); if( rc!=SQLITE_ROW ){ rc = resetAndCollectError(pIter->pTblIter, &p->zErrmsg); pIter->zTbl = 0; }else{ pIter->zTbl = (const char*)sqlite3_column_text(pIter->pTblIter, 0); pIter->zDataTbl = (const char*)sqlite3_column_text(pIter->pTblIter,1); rc = (pIter->zDataTbl && pIter->zTbl) ? SQLITE_OK : SQLITE_NOMEM; } }else{ if( pIter->zIdx==0 ){ sqlite3_stmt *pIdx = pIter->pIdxIter; rc = sqlite3_bind_text(pIdx, 1, pIter->zTbl, -1, SQLITE_STATIC); } if( rc==SQLITE_OK ){ rc = sqlite3_step(pIter->pIdxIter); if( rc!=SQLITE_ROW ){ rc = resetAndCollectError(pIter->pIdxIter, &p->zErrmsg); pIter->bCleanup = 1; pIter->zIdx = 0; }else{ pIter->zIdx = (const char*)sqlite3_column_text(pIter->pIdxIter, 0); pIter->iTnum = sqlite3_column_int(pIter->pIdxIter, 1); pIter->bUnique = sqlite3_column_int(pIter->pIdxIter, 2); rc = pIter->zIdx ? SQLITE_OK : SQLITE_NOMEM; } } } } } if( rc!=SQLITE_OK ){ rbuObjIterFinalize(pIter); p->rc = rc; } return rc; } /* ** The implementation of the rbu_target_name() SQL function. This function ** accepts one or two arguments. The first argument is the name of a table - ** the name of a table in the RBU database. The second, if it is present, is 1 ** for a view or 0 for a table. ** ** For a non-vacuum RBU handle, if the table name matches the pattern: ** ** data[0-9]_ ** ** where is any sequence of 1 or more characters, is returned. ** Otherwise, if the only argument does not match the above pattern, an SQL ** NULL is returned. ** ** "data_t1" -> "t1" ** "data0123_t2" -> "t2" ** "dataAB_t3" -> NULL ** ** For an rbu vacuum handle, a copy of the first argument is returned if ** the second argument is either missing or 0 (not a view). */ static void rbuTargetNameFunc( sqlite3_context *pCtx, int argc, sqlite3_value **argv ){ sqlite3rbu *p = sqlite3_user_data(pCtx); const char *zIn; assert( argc==1 || argc==2 ); zIn = (const char*)sqlite3_value_text(argv[0]); if( zIn ){ if( rbuIsVacuum(p) ){ assert( argc==2 || argc==1 ); if( argc==1 || 0==sqlite3_value_int(argv[1]) ){ sqlite3_result_text(pCtx, zIn, -1, SQLITE_STATIC); } }else{ if( strlen(zIn)>4 && memcmp("data", zIn, 4)==0 ){ int i; for(i=4; zIn[i]>='0' && zIn[i]<='9'; i++); if( zIn[i]=='_' && zIn[i+1] ){ sqlite3_result_text(pCtx, &zIn[i+1], -1, SQLITE_STATIC); } } } } } /* ** Initialize the iterator structure passed as the second argument. ** ** If no error occurs, SQLITE_OK is returned and the iterator is left ** pointing to the first entry. Otherwise, an error code and message is ** left in the RBU handle passed as the first argument. A copy of the ** error code is returned. */ static int rbuObjIterFirst(sqlite3rbu *p, RbuObjIter *pIter){ int rc; memset(pIter, 0, sizeof(RbuObjIter)); rc = prepareFreeAndCollectError(p->dbRbu, &pIter->pTblIter, &p->zErrmsg, sqlite3_mprintf( "SELECT rbu_target_name(name, type='view') AS target, name " "FROM sqlite_schema " "WHERE type IN ('table', 'view') AND target IS NOT NULL " " %s " "ORDER BY name" , rbuIsVacuum(p) ? "AND rootpage!=0 AND rootpage IS NOT NULL" : "")); if( rc==SQLITE_OK ){ rc = prepareAndCollectError(p->dbMain, &pIter->pIdxIter, &p->zErrmsg, "SELECT name, rootpage, sql IS NULL OR substr(8, 6)=='UNIQUE' " " FROM main.sqlite_schema " " WHERE type='index' AND tbl_name = ?" ); } pIter->bCleanup = 1; p->rc = rc; return rbuObjIterNext(p, pIter); } /* ** This is a wrapper around "sqlite3_mprintf(zFmt, ...)". If an OOM occurs, ** an error code is stored in the RBU handle passed as the first argument. ** ** If an error has already occurred (p->rc is already set to something other ** than SQLITE_OK), then this function returns NULL without modifying the ** stored error code. In this case it still calls sqlite3_free() on any ** printf() parameters associated with %z conversions. */ static char *rbuMPrintf(sqlite3rbu *p, const char *zFmt, ...){ char *zSql = 0; va_list ap; va_start(ap, zFmt); zSql = sqlite3_vmprintf(zFmt, ap); if( p->rc==SQLITE_OK ){ if( zSql==0 ) p->rc = SQLITE_NOMEM; }else{ sqlite3_free(zSql); zSql = 0; } va_end(ap); return zSql; } /* ** Argument zFmt is a sqlite3_mprintf() style format string. The trailing ** arguments are the usual subsitution values. This function performs ** the printf() style substitutions and executes the result as an SQL ** statement on the RBU handles database. ** ** If an error occurs, an error code and error message is stored in the ** RBU handle. If an error has already occurred when this function is ** called, it is a no-op. */ static int rbuMPrintfExec(sqlite3rbu *p, sqlite3 *db, const char *zFmt, ...){ va_list ap; char *zSql; va_start(ap, zFmt); zSql = sqlite3_vmprintf(zFmt, ap); if( p->rc==SQLITE_OK ){ if( zSql==0 ){ p->rc = SQLITE_NOMEM; }else{ p->rc = sqlite3_exec(db, zSql, 0, 0, &p->zErrmsg); } } sqlite3_free(zSql); va_end(ap); return p->rc; } /* ** Attempt to allocate and return a pointer to a zeroed block of nByte ** bytes. ** ** If an error (i.e. an OOM condition) occurs, return NULL and leave an ** error code in the rbu handle passed as the first argument. Or, if an ** error has already occurred when this function is called, return NULL ** immediately without attempting the allocation or modifying the stored ** error code. */ static void *rbuMalloc(sqlite3rbu *p, sqlite3_int64 nByte){ void *pRet = 0; if( p->rc==SQLITE_OK ){ assert( nByte>0 ); pRet = sqlite3_malloc64(nByte); if( pRet==0 ){ p->rc = SQLITE_NOMEM; }else{ memset(pRet, 0, nByte); } } return pRet; } /* ** Allocate and zero the pIter->azTblCol[] and abTblPk[] arrays so that ** there is room for at least nCol elements. If an OOM occurs, store an ** error code in the RBU handle passed as the first argument. */ static void rbuAllocateIterArrays(sqlite3rbu *p, RbuObjIter *pIter, int nCol){ sqlite3_int64 nByte = (2*sizeof(char*) + sizeof(int) + 3*sizeof(u8)) * nCol; char **azNew; azNew = (char**)rbuMalloc(p, nByte); if( azNew ){ pIter->azTblCol = azNew; pIter->azTblType = &azNew[nCol]; pIter->aiSrcOrder = (int*)&pIter->azTblType[nCol]; pIter->abTblPk = (u8*)&pIter->aiSrcOrder[nCol]; pIter->abNotNull = (u8*)&pIter->abTblPk[nCol]; pIter->abIndexed = (u8*)&pIter->abNotNull[nCol]; } } /* ** The first argument must be a nul-terminated string. This function ** returns a copy of the string in memory obtained from sqlite3_malloc(). ** It is the responsibility of the caller to eventually free this memory ** using sqlite3_free(). ** ** If an OOM condition is encountered when attempting to allocate memory, ** output variable (*pRc) is set to SQLITE_NOMEM before returning. Otherwise, ** if the allocation succeeds, (*pRc) is left unchanged. */ static char *rbuStrndup(const char *zStr, int *pRc){ char *zRet = 0; if( *pRc==SQLITE_OK ){ if( zStr ){ size_t nCopy = strlen(zStr) + 1; zRet = (char*)sqlite3_malloc64(nCopy); if( zRet ){ memcpy(zRet, zStr, nCopy); }else{ *pRc = SQLITE_NOMEM; } } } return zRet; } /* ** Finalize the statement passed as the second argument. ** ** If the sqlite3_finalize() call indicates that an error occurs, and the ** rbu handle error code is not already set, set the error code and error ** message accordingly. */ static void rbuFinalize(sqlite3rbu *p, sqlite3_stmt *pStmt){ sqlite3 *db = sqlite3_db_handle(pStmt); int rc = sqlite3_finalize(pStmt); if( p->rc==SQLITE_OK && rc!=SQLITE_OK ){ p->rc = rc; p->zErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(db)); } } /* Determine the type of a table. ** ** peType is of type (int*), a pointer to an output parameter of type ** (int). This call sets the output parameter as follows, depending ** on the type of the table specified by parameters dbName and zTbl. ** ** RBU_PK_NOTABLE: No such table. ** RBU_PK_NONE: Table has an implicit rowid. ** RBU_PK_IPK: Table has an explicit IPK column. ** RBU_PK_EXTERNAL: Table has an external PK index. ** RBU_PK_WITHOUT_ROWID: Table is WITHOUT ROWID. ** RBU_PK_VTAB: Table is a virtual table. ** ** Argument *piPk is also of type (int*), and also points to an output ** parameter. Unless the table has an external primary key index ** (i.e. unless *peType is set to 3), then *piPk is set to zero. Or, ** if the table does have an external primary key index, then *piPk ** is set to the root page number of the primary key index before ** returning. ** ** ALGORITHM: ** ** if( no entry exists in sqlite_schema ){ ** return RBU_PK_NOTABLE ** }else if( sql for the entry starts with "CREATE VIRTUAL" ){ ** return RBU_PK_VTAB ** }else if( "PRAGMA index_list()" for the table contains a "pk" index ){ ** if( the index that is the pk exists in sqlite_schema ){ ** *piPK = rootpage of that index. ** return RBU_PK_EXTERNAL ** }else{ ** return RBU_PK_WITHOUT_ROWID ** } ** }else if( "PRAGMA table_info()" lists one or more "pk" columns ){ ** return RBU_PK_IPK ** }else{ ** return RBU_PK_NONE ** } */ static void rbuTableType( sqlite3rbu *p, const char *zTab, int *peType, int *piTnum, int *piPk ){ /* ** 0) SELECT count(*) FROM sqlite_schema where name=%Q AND IsVirtual(%Q) ** 1) PRAGMA index_list = ? ** 2) SELECT count(*) FROM sqlite_schema where name=%Q ** 3) PRAGMA table_info = ? */ sqlite3_stmt *aStmt[4] = {0, 0, 0, 0}; *peType = RBU_PK_NOTABLE; *piPk = 0; assert( p->rc==SQLITE_OK ); p->rc = prepareFreeAndCollectError(p->dbMain, &aStmt[0], &p->zErrmsg, sqlite3_mprintf( "SELECT (sql LIKE 'create virtual%%'), rootpage" " FROM sqlite_schema" " WHERE name=%Q", zTab )); if( p->rc!=SQLITE_OK || sqlite3_step(aStmt[0])!=SQLITE_ROW ){ /* Either an error, or no such table. */ goto rbuTableType_end; } if( sqlite3_column_int(aStmt[0], 0) ){ *peType = RBU_PK_VTAB; /* virtual table */ goto rbuTableType_end; } *piTnum = sqlite3_column_int(aStmt[0], 1); p->rc = prepareFreeAndCollectError(p->dbMain, &aStmt[1], &p->zErrmsg, sqlite3_mprintf("PRAGMA index_list=%Q",zTab) ); if( p->rc ) goto rbuTableType_end; while( sqlite3_step(aStmt[1])==SQLITE_ROW ){ const u8 *zOrig = sqlite3_column_text(aStmt[1], 3); const u8 *zIdx = sqlite3_column_text(aStmt[1], 1); if( zOrig && zIdx && zOrig[0]=='p' ){ p->rc = prepareFreeAndCollectError(p->dbMain, &aStmt[2], &p->zErrmsg, sqlite3_mprintf( "SELECT rootpage FROM sqlite_schema WHERE name = %Q", zIdx )); if( p->rc==SQLITE_OK ){ if( sqlite3_step(aStmt[2])==SQLITE_ROW ){ *piPk = sqlite3_column_int(aStmt[2], 0); *peType = RBU_PK_EXTERNAL; }else{ *peType = RBU_PK_WITHOUT_ROWID; } } goto rbuTableType_end; } } p->rc = prepareFreeAndCollectError(p->dbMain, &aStmt[3], &p->zErrmsg, sqlite3_mprintf("PRAGMA table_info=%Q",zTab) ); if( p->rc==SQLITE_OK ){ while( sqlite3_step(aStmt[3])==SQLITE_ROW ){ if( sqlite3_column_int(aStmt[3],5)>0 ){ *peType = RBU_PK_IPK; /* explicit IPK column */ goto rbuTableType_end; } } *peType = RBU_PK_NONE; } rbuTableType_end: { unsigned int i; for(i=0; iabIndexed[] array. */ static void rbuObjIterCacheIndexedCols(sqlite3rbu *p, RbuObjIter *pIter){ sqlite3_stmt *pList = 0; int bIndex = 0; if( p->rc==SQLITE_OK ){ memcpy(pIter->abIndexed, pIter->abTblPk, sizeof(u8)*pIter->nTblCol); p->rc = prepareFreeAndCollectError(p->dbMain, &pList, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_list = %Q", pIter->zTbl) ); } pIter->nIndex = 0; while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pList) ){ const char *zIdx = (const char*)sqlite3_column_text(pList, 1); int bPartial = sqlite3_column_int(pList, 4); sqlite3_stmt *pXInfo = 0; if( zIdx==0 ) break; if( bPartial ){ memset(pIter->abIndexed, 0x01, sizeof(u8)*pIter->nTblCol); } p->rc = prepareFreeAndCollectError(p->dbMain, &pXInfo, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", zIdx) ); while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXInfo) ){ int iCid = sqlite3_column_int(pXInfo, 1); if( iCid>=0 ) pIter->abIndexed[iCid] = 1; if( iCid==-2 ){ memset(pIter->abIndexed, 0x01, sizeof(u8)*pIter->nTblCol); } } rbuFinalize(p, pXInfo); bIndex = 1; pIter->nIndex++; } if( pIter->eType==RBU_PK_WITHOUT_ROWID ){ /* "PRAGMA index_list" includes the main PK b-tree */ pIter->nIndex--; } rbuFinalize(p, pList); if( bIndex==0 ) pIter->abIndexed = 0; } /* ** If they are not already populated, populate the pIter->azTblCol[], ** pIter->abTblPk[], pIter->nTblCol and pIter->bRowid variables according to ** the table (not index) that the iterator currently points to. ** ** Return SQLITE_OK if successful, or an SQLite error code otherwise. If ** an error does occur, an error code and error message are also left in ** the RBU handle. */ static int rbuObjIterCacheTableInfo(sqlite3rbu *p, RbuObjIter *pIter){ if( pIter->azTblCol==0 ){ sqlite3_stmt *pStmt = 0; int nCol = 0; int i; /* for() loop iterator variable */ int bRbuRowid = 0; /* If input table has column "rbu_rowid" */ int iOrder = 0; int iTnum = 0; /* Figure out the type of table this step will deal with. */ assert( pIter->eType==0 ); rbuTableType(p, pIter->zTbl, &pIter->eType, &iTnum, &pIter->iPkTnum); if( p->rc==SQLITE_OK && pIter->eType==RBU_PK_NOTABLE ){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("no such table: %s", pIter->zTbl); } if( p->rc ) return p->rc; if( pIter->zIdx==0 ) pIter->iTnum = iTnum; assert( pIter->eType==RBU_PK_NONE || pIter->eType==RBU_PK_IPK || pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_WITHOUT_ROWID || pIter->eType==RBU_PK_VTAB ); /* Populate the azTblCol[] and nTblCol variables based on the columns ** of the input table. Ignore any input table columns that begin with ** "rbu_". */ p->rc = prepareFreeAndCollectError(p->dbRbu, &pStmt, &p->zErrmsg, sqlite3_mprintf("SELECT * FROM '%q'", pIter->zDataTbl) ); if( p->rc==SQLITE_OK ){ nCol = sqlite3_column_count(pStmt); rbuAllocateIterArrays(p, pIter, nCol); } for(i=0; p->rc==SQLITE_OK && irc); pIter->aiSrcOrder[pIter->nTblCol] = pIter->nTblCol; pIter->azTblCol[pIter->nTblCol++] = zCopy; } else if( 0==sqlite3_stricmp("rbu_rowid", zName) ){ bRbuRowid = 1; } } sqlite3_finalize(pStmt); pStmt = 0; if( p->rc==SQLITE_OK && rbuIsVacuum(p)==0 && bRbuRowid!=(pIter->eType==RBU_PK_VTAB || pIter->eType==RBU_PK_NONE) ){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf( "table %q %s rbu_rowid column", pIter->zDataTbl, (bRbuRowid ? "may not have" : "requires") ); } /* Check that all non-HIDDEN columns in the destination table are also ** present in the input table. Populate the abTblPk[], azTblType[] and ** aiTblOrder[] arrays at the same time. */ if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pStmt, &p->zErrmsg, sqlite3_mprintf("PRAGMA table_info(%Q)", pIter->zTbl) ); } while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ const char *zName = (const char*)sqlite3_column_text(pStmt, 1); if( zName==0 ) break; /* An OOM - finalize() below returns S_NOMEM */ for(i=iOrder; inTblCol; i++){ if( 0==strcmp(zName, pIter->azTblCol[i]) ) break; } if( i==pIter->nTblCol ){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("column missing from %q: %s", pIter->zDataTbl, zName ); }else{ int iPk = sqlite3_column_int(pStmt, 5); int bNotNull = sqlite3_column_int(pStmt, 3); const char *zType = (const char*)sqlite3_column_text(pStmt, 2); if( i!=iOrder ){ SWAP(int, pIter->aiSrcOrder[i], pIter->aiSrcOrder[iOrder]); SWAP(char*, pIter->azTblCol[i], pIter->azTblCol[iOrder]); } pIter->azTblType[iOrder] = rbuStrndup(zType, &p->rc); assert( iPk>=0 ); pIter->abTblPk[iOrder] = (u8)iPk; pIter->abNotNull[iOrder] = (u8)bNotNull || (iPk!=0); iOrder++; } } rbuFinalize(p, pStmt); rbuObjIterCacheIndexedCols(p, pIter); assert( pIter->eType!=RBU_PK_VTAB || pIter->abIndexed==0 ); assert( pIter->eType!=RBU_PK_VTAB || pIter->nIndex==0 ); } return p->rc; } /* ** This function constructs and returns a pointer to a nul-terminated ** string containing some SQL clause or list based on one or more of the ** column names currently stored in the pIter->azTblCol[] array. */ static char *rbuObjIterGetCollist( sqlite3rbu *p, /* RBU object */ RbuObjIter *pIter /* Object iterator for column names */ ){ char *zList = 0; const char *zSep = ""; int i; for(i=0; inTblCol; i++){ const char *z = pIter->azTblCol[i]; zList = rbuMPrintf(p, "%z%s\"%w\"", zList, zSep, z); zSep = ", "; } return zList; } /* ** Return a comma separated list of the quoted PRIMARY KEY column names, ** in order, for the current table. Before each column name, add the text ** zPre. After each column name, add the zPost text. Use zSeparator as ** the separator text (usually ", "). */ static char *rbuObjIterGetPkList( sqlite3rbu *p, /* RBU object */ RbuObjIter *pIter, /* Object iterator for column names */ const char *zPre, /* Before each quoted column name */ const char *zSeparator, /* Separator to use between columns */ const char *zPost /* After each quoted column name */ ){ int iPk = 1; char *zRet = 0; const char *zSep = ""; while( 1 ){ int i; for(i=0; inTblCol; i++){ if( (int)pIter->abTblPk[i]==iPk ){ const char *zCol = pIter->azTblCol[i]; zRet = rbuMPrintf(p, "%z%s%s\"%w\"%s", zRet, zSep, zPre, zCol, zPost); zSep = zSeparator; break; } } if( i==pIter->nTblCol ) break; iPk++; } return zRet; } /* ** This function is called as part of restarting an RBU vacuum within ** stage 1 of the process (while the *-oal file is being built) while ** updating a table (not an index). The table may be a rowid table or ** a WITHOUT ROWID table. It queries the target database to find the ** largest key that has already been written to the target table and ** constructs a WHERE clause that can be used to extract the remaining ** rows from the source table. For a rowid table, the WHERE clause ** is of the form: ** ** "WHERE _rowid_ > ?" ** ** and for WITHOUT ROWID tables: ** ** "WHERE (key1, key2) > (?, ?)" ** ** Instead of "?" placeholders, the actual WHERE clauses created by ** this function contain literal SQL values. */ static char *rbuVacuumTableStart( sqlite3rbu *p, /* RBU handle */ RbuObjIter *pIter, /* RBU iterator object */ int bRowid, /* True for a rowid table */ const char *zWrite /* Target table name prefix */ ){ sqlite3_stmt *pMax = 0; char *zRet = 0; if( bRowid ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pMax, &p->zErrmsg, sqlite3_mprintf( "SELECT max(_rowid_) FROM \"%s%w\"", zWrite, pIter->zTbl ) ); if( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pMax) ){ sqlite3_int64 iMax = sqlite3_column_int64(pMax, 0); zRet = rbuMPrintf(p, " WHERE _rowid_ > %lld ", iMax); } rbuFinalize(p, pMax); }else{ char *zOrder = rbuObjIterGetPkList(p, pIter, "", ", ", " DESC"); char *zSelect = rbuObjIterGetPkList(p, pIter, "quote(", "||','||", ")"); char *zList = rbuObjIterGetPkList(p, pIter, "", ", ", ""); if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pMax, &p->zErrmsg, sqlite3_mprintf( "SELECT %s FROM \"%s%w\" ORDER BY %s LIMIT 1", zSelect, zWrite, pIter->zTbl, zOrder ) ); if( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pMax) ){ const char *zVal = (const char*)sqlite3_column_text(pMax, 0); zRet = rbuMPrintf(p, " WHERE (%s) > (%s) ", zList, zVal); } rbuFinalize(p, pMax); } sqlite3_free(zOrder); sqlite3_free(zSelect); sqlite3_free(zList); } return zRet; } /* ** This function is called as part of restating an RBU vacuum when the ** current operation is writing content to an index. If possible, it ** queries the target index b-tree for the largest key already written to ** it, then composes and returns an expression that can be used in a WHERE ** clause to select the remaining required rows from the source table. ** It is only possible to return such an expression if: ** ** * The index contains no DESC columns, and ** * The last key written to the index before the operation was ** suspended does not contain any NULL values. ** ** The expression is of the form: ** ** (index-field1, index-field2, ...) > (?, ?, ...) ** ** except that the "?" placeholders are replaced with literal values. ** ** If the expression cannot be created, NULL is returned. In this case, ** the caller has to use an OFFSET clause to extract only the required ** rows from the sourct table, just as it does for an RBU update operation. */ char *rbuVacuumIndexStart( sqlite3rbu *p, /* RBU handle */ RbuObjIter *pIter /* RBU iterator object */ ){ char *zOrder = 0; char *zLhs = 0; char *zSelect = 0; char *zVector = 0; char *zRet = 0; int bFailed = 0; const char *zSep = ""; int iCol = 0; sqlite3_stmt *pXInfo = 0; p->rc = prepareFreeAndCollectError(p->dbMain, &pXInfo, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", pIter->zIdx) ); while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXInfo) ){ int iCid = sqlite3_column_int(pXInfo, 1); const char *zCollate = (const char*)sqlite3_column_text(pXInfo, 4); const char *zCol; if( sqlite3_column_int(pXInfo, 3) ){ bFailed = 1; break; } if( iCid<0 ){ if( pIter->eType==RBU_PK_IPK ){ int i; for(i=0; pIter->abTblPk[i]==0; i++); assert( inTblCol ); zCol = pIter->azTblCol[i]; }else{ zCol = "_rowid_"; } }else{ zCol = pIter->azTblCol[iCid]; } zLhs = rbuMPrintf(p, "%z%s \"%w\" COLLATE %Q", zLhs, zSep, zCol, zCollate ); zOrder = rbuMPrintf(p, "%z%s \"rbu_imp_%d%w\" COLLATE %Q DESC", zOrder, zSep, iCol, zCol, zCollate ); zSelect = rbuMPrintf(p, "%z%s quote(\"rbu_imp_%d%w\")", zSelect, zSep, iCol, zCol ); zSep = ", "; iCol++; } rbuFinalize(p, pXInfo); if( bFailed ) goto index_start_out; if( p->rc==SQLITE_OK ){ sqlite3_stmt *pSel = 0; p->rc = prepareFreeAndCollectError(p->dbMain, &pSel, &p->zErrmsg, sqlite3_mprintf("SELECT %s FROM \"rbu_imp_%w\" ORDER BY %s LIMIT 1", zSelect, pIter->zTbl, zOrder ) ); if( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSel) ){ zSep = ""; for(iCol=0; iColnCol; iCol++){ const char *zQuoted = (const char*)sqlite3_column_text(pSel, iCol); if( zQuoted[0]=='N' ){ bFailed = 1; break; } zVector = rbuMPrintf(p, "%z%s%s", zVector, zSep, zQuoted); zSep = ", "; } if( !bFailed ){ zRet = rbuMPrintf(p, "(%s) > (%s)", zLhs, zVector); } } rbuFinalize(p, pSel); } index_start_out: sqlite3_free(zOrder); sqlite3_free(zSelect); sqlite3_free(zVector); sqlite3_free(zLhs); return zRet; } /* ** This function is used to create a SELECT list (the list of SQL ** expressions that follows a SELECT keyword) for a SELECT statement ** used to read from an data_xxx or rbu_tmp_xxx table while updating the ** index object currently indicated by the iterator object passed as the ** second argument. A "PRAGMA index_xinfo = " statement is used ** to obtain the required information. ** ** If the index is of the following form: ** ** CREATE INDEX i1 ON t1(c, b COLLATE nocase); ** ** and "t1" is a table with an explicit INTEGER PRIMARY KEY column ** "ipk", the returned string is: ** ** "`c` COLLATE 'BINARY', `b` COLLATE 'NOCASE', `ipk` COLLATE 'BINARY'" ** ** As well as the returned string, three other malloc'd strings are ** returned via output parameters. As follows: ** ** pzImposterCols: ... ** pzImposterPk: ... ** pzWhere: ... */ static char *rbuObjIterGetIndexCols( sqlite3rbu *p, /* RBU object */ RbuObjIter *pIter, /* Object iterator for column names */ char **pzImposterCols, /* OUT: Columns for imposter table */ char **pzImposterPk, /* OUT: Imposter PK clause */ char **pzWhere, /* OUT: WHERE clause */ int *pnBind /* OUT: Trbul number of columns */ ){ int rc = p->rc; /* Error code */ int rc2; /* sqlite3_finalize() return code */ char *zRet = 0; /* String to return */ char *zImpCols = 0; /* String to return via *pzImposterCols */ char *zImpPK = 0; /* String to return via *pzImposterPK */ char *zWhere = 0; /* String to return via *pzWhere */ int nBind = 0; /* Value to return via *pnBind */ const char *zCom = ""; /* Set to ", " later on */ const char *zAnd = ""; /* Set to " AND " later on */ sqlite3_stmt *pXInfo = 0; /* PRAGMA index_xinfo = ? */ if( rc==SQLITE_OK ){ assert( p->zErrmsg==0 ); rc = prepareFreeAndCollectError(p->dbMain, &pXInfo, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", pIter->zIdx) ); } while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXInfo) ){ int iCid = sqlite3_column_int(pXInfo, 1); int bDesc = sqlite3_column_int(pXInfo, 3); const char *zCollate = (const char*)sqlite3_column_text(pXInfo, 4); const char *zCol = 0; const char *zType; if( iCid==-2 ){ int iSeq = sqlite3_column_int(pXInfo, 0); zRet = sqlite3_mprintf("%z%s(%.*s) COLLATE %Q", zRet, zCom, pIter->aIdxCol[iSeq].nSpan, pIter->aIdxCol[iSeq].zSpan, zCollate ); zType = ""; }else { if( iCid<0 ){ /* An integer primary key. If the table has an explicit IPK, use ** its name. Otherwise, use "rbu_rowid". */ if( pIter->eType==RBU_PK_IPK ){ int i; for(i=0; pIter->abTblPk[i]==0; i++); assert( inTblCol ); zCol = pIter->azTblCol[i]; }else if( rbuIsVacuum(p) ){ zCol = "_rowid_"; }else{ zCol = "rbu_rowid"; } zType = "INTEGER"; }else{ zCol = pIter->azTblCol[iCid]; zType = pIter->azTblType[iCid]; } zRet = sqlite3_mprintf("%z%s\"%w\" COLLATE %Q", zRet, zCom,zCol,zCollate); } if( pIter->bUnique==0 || sqlite3_column_int(pXInfo, 5) ){ const char *zOrder = (bDesc ? " DESC" : ""); zImpPK = sqlite3_mprintf("%z%s\"rbu_imp_%d%w\"%s", zImpPK, zCom, nBind, zCol, zOrder ); } zImpCols = sqlite3_mprintf("%z%s\"rbu_imp_%d%w\" %s COLLATE %Q", zImpCols, zCom, nBind, zCol, zType, zCollate ); zWhere = sqlite3_mprintf( "%z%s\"rbu_imp_%d%w\" IS ?", zWhere, zAnd, nBind, zCol ); if( zRet==0 || zImpPK==0 || zImpCols==0 || zWhere==0 ) rc = SQLITE_NOMEM; zCom = ", "; zAnd = " AND "; nBind++; } rc2 = sqlite3_finalize(pXInfo); if( rc==SQLITE_OK ) rc = rc2; if( rc!=SQLITE_OK ){ sqlite3_free(zRet); sqlite3_free(zImpCols); sqlite3_free(zImpPK); sqlite3_free(zWhere); zRet = 0; zImpCols = 0; zImpPK = 0; zWhere = 0; p->rc = rc; } *pzImposterCols = zImpCols; *pzImposterPk = zImpPK; *pzWhere = zWhere; *pnBind = nBind; return zRet; } /* ** Assuming the current table columns are "a", "b" and "c", and the zObj ** paramter is passed "old", return a string of the form: ** ** "old.a, old.b, old.b" ** ** With the column names escaped. ** ** For tables with implicit rowids - RBU_PK_EXTERNAL and RBU_PK_NONE, append ** the text ", old._rowid_" to the returned value. */ static char *rbuObjIterGetOldlist( sqlite3rbu *p, RbuObjIter *pIter, const char *zObj ){ char *zList = 0; if( p->rc==SQLITE_OK && pIter->abIndexed ){ const char *zS = ""; int i; for(i=0; inTblCol; i++){ if( pIter->abIndexed[i] ){ const char *zCol = pIter->azTblCol[i]; zList = sqlite3_mprintf("%z%s%s.\"%w\"", zList, zS, zObj, zCol); }else{ zList = sqlite3_mprintf("%z%sNULL", zList, zS); } zS = ", "; if( zList==0 ){ p->rc = SQLITE_NOMEM; break; } } /* For a table with implicit rowids, append "old._rowid_" to the list. */ if( pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_NONE ){ zList = rbuMPrintf(p, "%z, %s._rowid_", zList, zObj); } } return zList; } /* ** Return an expression that can be used in a WHERE clause to match the ** primary key of the current table. For example, if the table is: ** ** CREATE TABLE t1(a, b, c, PRIMARY KEY(b, c)); ** ** Return the string: ** ** "b = ?1 AND c = ?2" */ static char *rbuObjIterGetWhere( sqlite3rbu *p, RbuObjIter *pIter ){ char *zList = 0; if( pIter->eType==RBU_PK_VTAB || pIter->eType==RBU_PK_NONE ){ zList = rbuMPrintf(p, "_rowid_ = ?%d", pIter->nTblCol+1); }else if( pIter->eType==RBU_PK_EXTERNAL ){ const char *zSep = ""; int i; for(i=0; inTblCol; i++){ if( pIter->abTblPk[i] ){ zList = rbuMPrintf(p, "%z%sc%d=?%d", zList, zSep, i, i+1); zSep = " AND "; } } zList = rbuMPrintf(p, "_rowid_ = (SELECT id FROM rbu_imposter2 WHERE %z)", zList ); }else{ const char *zSep = ""; int i; for(i=0; inTblCol; i++){ if( pIter->abTblPk[i] ){ const char *zCol = pIter->azTblCol[i]; zList = rbuMPrintf(p, "%z%s\"%w\"=?%d", zList, zSep, zCol, i+1); zSep = " AND "; } } } return zList; } /* ** The SELECT statement iterating through the keys for the current object ** (p->objiter.pSelect) currently points to a valid row. However, there ** is something wrong with the rbu_control value in the rbu_control value ** stored in the (p->nCol+1)'th column. Set the error code and error message ** of the RBU handle to something reflecting this. */ static void rbuBadControlError(sqlite3rbu *p){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("invalid rbu_control value"); } /* ** Return a nul-terminated string containing the comma separated list of ** assignments that should be included following the "SET" keyword of ** an UPDATE statement used to update the table object that the iterator ** passed as the second argument currently points to if the rbu_control ** column of the data_xxx table entry is set to zMask. ** ** The memory for the returned string is obtained from sqlite3_malloc(). ** It is the responsibility of the caller to eventually free it using ** sqlite3_free(). ** ** If an OOM error is encountered when allocating space for the new ** string, an error code is left in the rbu handle passed as the first ** argument and NULL is returned. Or, if an error has already occurred ** when this function is called, NULL is returned immediately, without ** attempting the allocation or modifying the stored error code. */ static char *rbuObjIterGetSetlist( sqlite3rbu *p, RbuObjIter *pIter, const char *zMask ){ char *zList = 0; if( p->rc==SQLITE_OK ){ int i; if( (int)strlen(zMask)!=pIter->nTblCol ){ rbuBadControlError(p); }else{ const char *zSep = ""; for(i=0; inTblCol; i++){ char c = zMask[pIter->aiSrcOrder[i]]; if( c=='x' ){ zList = rbuMPrintf(p, "%z%s\"%w\"=?%d", zList, zSep, pIter->azTblCol[i], i+1 ); zSep = ", "; } else if( c=='d' ){ zList = rbuMPrintf(p, "%z%s\"%w\"=rbu_delta(\"%w\", ?%d)", zList, zSep, pIter->azTblCol[i], pIter->azTblCol[i], i+1 ); zSep = ", "; } else if( c=='f' ){ zList = rbuMPrintf(p, "%z%s\"%w\"=rbu_fossil_delta(\"%w\", ?%d)", zList, zSep, pIter->azTblCol[i], pIter->azTblCol[i], i+1 ); zSep = ", "; } } } } return zList; } /* ** Return a nul-terminated string consisting of nByte comma separated ** "?" expressions. For example, if nByte is 3, return a pointer to ** a buffer containing the string "?,?,?". ** ** The memory for the returned string is obtained from sqlite3_malloc(). ** It is the responsibility of the caller to eventually free it using ** sqlite3_free(). ** ** If an OOM error is encountered when allocating space for the new ** string, an error code is left in the rbu handle passed as the first ** argument and NULL is returned. Or, if an error has already occurred ** when this function is called, NULL is returned immediately, without ** attempting the allocation or modifying the stored error code. */ static char *rbuObjIterGetBindlist(sqlite3rbu *p, int nBind){ char *zRet = 0; sqlite3_int64 nByte = 2*(sqlite3_int64)nBind + 1; zRet = (char*)rbuMalloc(p, nByte); if( zRet ){ int i; for(i=0; izIdx==0 ); if( p->rc==SQLITE_OK ){ const char *zSep = "PRIMARY KEY("; sqlite3_stmt *pXList = 0; /* PRAGMA index_list = (pIter->zTbl) */ sqlite3_stmt *pXInfo = 0; /* PRAGMA index_xinfo = */ p->rc = prepareFreeAndCollectError(p->dbMain, &pXList, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_list = %Q", pIter->zTbl) ); while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXList) ){ const char *zOrig = (const char*)sqlite3_column_text(pXList,3); if( zOrig && strcmp(zOrig, "pk")==0 ){ const char *zIdx = (const char*)sqlite3_column_text(pXList,1); if( zIdx ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pXInfo, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", zIdx) ); } break; } } rbuFinalize(p, pXList); while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXInfo) ){ if( sqlite3_column_int(pXInfo, 5) ){ /* int iCid = sqlite3_column_int(pXInfo, 0); */ const char *zCol = (const char*)sqlite3_column_text(pXInfo, 2); const char *zDesc = sqlite3_column_int(pXInfo, 3) ? " DESC" : ""; z = rbuMPrintf(p, "%z%s\"%w\"%s", z, zSep, zCol, zDesc); zSep = ", "; } } z = rbuMPrintf(p, "%z)", z); rbuFinalize(p, pXInfo); } return z; } /* ** This function creates the second imposter table used when writing to ** a table b-tree where the table has an external primary key. If the ** iterator passed as the second argument does not currently point to ** a table (not index) with an external primary key, this function is a ** no-op. ** ** Assuming the iterator does point to a table with an external PK, this ** function creates a WITHOUT ROWID imposter table named "rbu_imposter2" ** used to access that PK index. For example, if the target table is ** declared as follows: ** ** CREATE TABLE t1(a, b TEXT, c REAL, PRIMARY KEY(b, c)); ** ** then the imposter table schema is: ** ** CREATE TABLE rbu_imposter2(c1 TEXT, c2 REAL, id INTEGER) WITHOUT ROWID; ** */ static void rbuCreateImposterTable2(sqlite3rbu *p, RbuObjIter *pIter){ if( p->rc==SQLITE_OK && pIter->eType==RBU_PK_EXTERNAL ){ int tnum = pIter->iPkTnum; /* Root page of PK index */ sqlite3_stmt *pQuery = 0; /* SELECT name ... WHERE rootpage = $tnum */ const char *zIdx = 0; /* Name of PK index */ sqlite3_stmt *pXInfo = 0; /* PRAGMA main.index_xinfo = $zIdx */ const char *zComma = ""; char *zCols = 0; /* Used to build up list of table cols */ char *zPk = 0; /* Used to build up table PK declaration */ /* Figure out the name of the primary key index for the current table. ** This is needed for the argument to "PRAGMA index_xinfo". Set ** zIdx to point to a nul-terminated string containing this name. */ p->rc = prepareAndCollectError(p->dbMain, &pQuery, &p->zErrmsg, "SELECT name FROM sqlite_schema WHERE rootpage = ?" ); if( p->rc==SQLITE_OK ){ sqlite3_bind_int(pQuery, 1, tnum); if( SQLITE_ROW==sqlite3_step(pQuery) ){ zIdx = (const char*)sqlite3_column_text(pQuery, 0); } } if( zIdx ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pXInfo, &p->zErrmsg, sqlite3_mprintf("PRAGMA main.index_xinfo = %Q", zIdx) ); } rbuFinalize(p, pQuery); while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pXInfo) ){ int bKey = sqlite3_column_int(pXInfo, 5); if( bKey ){ int iCid = sqlite3_column_int(pXInfo, 1); int bDesc = sqlite3_column_int(pXInfo, 3); const char *zCollate = (const char*)sqlite3_column_text(pXInfo, 4); zCols = rbuMPrintf(p, "%z%sc%d %s COLLATE %Q", zCols, zComma, iCid, pIter->azTblType[iCid], zCollate ); zPk = rbuMPrintf(p, "%z%sc%d%s", zPk, zComma, iCid, bDesc?" DESC":""); zComma = ", "; } } zCols = rbuMPrintf(p, "%z, id INTEGER", zCols); rbuFinalize(p, pXInfo); sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 1, tnum); rbuMPrintfExec(p, p->dbMain, "CREATE TABLE rbu_imposter2(%z, PRIMARY KEY(%z)) WITHOUT ROWID", zCols, zPk ); sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 0, 0); } } /* ** If an error has already occurred when this function is called, it ** immediately returns zero (without doing any work). Or, if an error ** occurs during the execution of this function, it sets the error code ** in the sqlite3rbu object indicated by the first argument and returns ** zero. ** ** The iterator passed as the second argument is guaranteed to point to ** a table (not an index) when this function is called. This function ** attempts to create any imposter table required to write to the main ** table b-tree of the table before returning. Non-zero is returned if ** an imposter table are created, or zero otherwise. ** ** An imposter table is required in all cases except RBU_PK_VTAB. Only ** virtual tables are written to directly. The imposter table has the ** same schema as the actual target table (less any UNIQUE constraints). ** More precisely, the "same schema" means the same columns, types, ** collation sequences. For tables that do not have an external PRIMARY ** KEY, it also means the same PRIMARY KEY declaration. */ static void rbuCreateImposterTable(sqlite3rbu *p, RbuObjIter *pIter){ if( p->rc==SQLITE_OK && pIter->eType!=RBU_PK_VTAB ){ int tnum = pIter->iTnum; const char *zComma = ""; char *zSql = 0; int iCol; sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 0, 1); for(iCol=0; p->rc==SQLITE_OK && iColnTblCol; iCol++){ const char *zPk = ""; const char *zCol = pIter->azTblCol[iCol]; const char *zColl = 0; p->rc = sqlite3_table_column_metadata( p->dbMain, "main", pIter->zTbl, zCol, 0, &zColl, 0, 0, 0 ); if( pIter->eType==RBU_PK_IPK && pIter->abTblPk[iCol] ){ /* If the target table column is an "INTEGER PRIMARY KEY", add ** "PRIMARY KEY" to the imposter table column declaration. */ zPk = "PRIMARY KEY "; } zSql = rbuMPrintf(p, "%z%s\"%w\" %s %sCOLLATE %Q%s", zSql, zComma, zCol, pIter->azTblType[iCol], zPk, zColl, (pIter->abNotNull[iCol] ? " NOT NULL" : "") ); zComma = ", "; } if( pIter->eType==RBU_PK_WITHOUT_ROWID ){ char *zPk = rbuWithoutRowidPK(p, pIter); if( zPk ){ zSql = rbuMPrintf(p, "%z, %z", zSql, zPk); } } sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 1, tnum); rbuMPrintfExec(p, p->dbMain, "CREATE TABLE \"rbu_imp_%w\"(%z)%s", pIter->zTbl, zSql, (pIter->eType==RBU_PK_WITHOUT_ROWID ? " WITHOUT ROWID" : "") ); sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 0, 0); } } /* ** Prepare a statement used to insert rows into the "rbu_tmp_xxx" table. ** Specifically a statement of the form: ** ** INSERT INTO rbu_tmp_xxx VALUES(?, ?, ? ...); ** ** The number of bound variables is equal to the number of columns in ** the target table, plus one (for the rbu_control column), plus one more ** (for the rbu_rowid column) if the target table is an implicit IPK or ** virtual table. */ static void rbuObjIterPrepareTmpInsert( sqlite3rbu *p, RbuObjIter *pIter, const char *zCollist, const char *zRbuRowid ){ int bRbuRowid = (pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_NONE); char *zBind = rbuObjIterGetBindlist(p, pIter->nTblCol + 1 + bRbuRowid); if( zBind ){ assert( pIter->pTmpInsert==0 ); p->rc = prepareFreeAndCollectError( p->dbRbu, &pIter->pTmpInsert, &p->zErrmsg, sqlite3_mprintf( "INSERT INTO %s.'rbu_tmp_%q'(rbu_control,%s%s) VALUES(%z)", p->zStateDb, pIter->zDataTbl, zCollist, zRbuRowid, zBind )); } } static void rbuTmpInsertFunc( sqlite3_context *pCtx, int nVal, sqlite3_value **apVal ){ sqlite3rbu *p = sqlite3_user_data(pCtx); int rc = SQLITE_OK; int i; assert( sqlite3_value_int(apVal[0])!=0 || p->objiter.eType==RBU_PK_EXTERNAL || p->objiter.eType==RBU_PK_NONE ); if( sqlite3_value_int(apVal[0])!=0 ){ p->nPhaseOneStep += p->objiter.nIndex; } for(i=0; rc==SQLITE_OK && iobjiter.pTmpInsert, i+1, apVal[i]); } if( rc==SQLITE_OK ){ sqlite3_step(p->objiter.pTmpInsert); rc = sqlite3_reset(p->objiter.pTmpInsert); } if( rc!=SQLITE_OK ){ sqlite3_result_error_code(pCtx, rc); } } static char *rbuObjIterGetIndexWhere(sqlite3rbu *p, RbuObjIter *pIter){ sqlite3_stmt *pStmt = 0; int rc = p->rc; char *zRet = 0; assert( pIter->zIdxSql==0 && pIter->nIdxCol==0 && pIter->aIdxCol==0 ); if( rc==SQLITE_OK ){ rc = prepareAndCollectError(p->dbMain, &pStmt, &p->zErrmsg, "SELECT trim(sql) FROM sqlite_schema WHERE type='index' AND name=?" ); } if( rc==SQLITE_OK ){ int rc2; rc = sqlite3_bind_text(pStmt, 1, pIter->zIdx, -1, SQLITE_STATIC); if( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ char *zSql = (char*)sqlite3_column_text(pStmt, 0); if( zSql ){ pIter->zIdxSql = zSql = rbuStrndup(zSql, &rc); } if( zSql ){ int nParen = 0; /* Number of open parenthesis */ int i; int iIdxCol = 0; int nIdxAlloc = 0; for(i=0; zSql[i]; i++){ char c = zSql[i]; /* If necessary, grow the pIter->aIdxCol[] array */ if( iIdxCol==nIdxAlloc ){ RbuSpan *aIdxCol = (RbuSpan*)sqlite3_realloc( pIter->aIdxCol, (nIdxAlloc+16)*sizeof(RbuSpan) ); if( aIdxCol==0 ){ rc = SQLITE_NOMEM; break; } pIter->aIdxCol = aIdxCol; nIdxAlloc += 16; } if( c=='(' ){ if( nParen==0 ){ assert( iIdxCol==0 ); pIter->aIdxCol[0].zSpan = &zSql[i+1]; } nParen++; } else if( c==')' ){ nParen--; if( nParen==0 ){ int nSpan = &zSql[i] - pIter->aIdxCol[iIdxCol].zSpan; pIter->aIdxCol[iIdxCol++].nSpan = nSpan; i++; break; } }else if( c==',' && nParen==1 ){ int nSpan = &zSql[i] - pIter->aIdxCol[iIdxCol].zSpan; pIter->aIdxCol[iIdxCol++].nSpan = nSpan; pIter->aIdxCol[iIdxCol].zSpan = &zSql[i+1]; }else if( c=='"' || c=='\'' || c=='`' ){ for(i++; 1; i++){ if( zSql[i]==c ){ if( zSql[i+1]!=c ) break; i++; } } }else if( c=='[' ){ for(i++; 1; i++){ if( zSql[i]==']' ) break; } }else if( c=='-' && zSql[i+1]=='-' ){ for(i=i+2; zSql[i] && zSql[i]!='\n'; i++); if( zSql[i]=='\0' ) break; }else if( c=='/' && zSql[i+1]=='*' ){ for(i=i+2; zSql[i] && (zSql[i]!='*' || zSql[i+1]!='/'); i++); if( zSql[i]=='\0' ) break; i++; } } if( zSql[i] ){ zRet = rbuStrndup(&zSql[i], &rc); } pIter->nIdxCol = iIdxCol; } } rc2 = sqlite3_finalize(pStmt); if( rc==SQLITE_OK ) rc = rc2; } p->rc = rc; return zRet; } /* ** Ensure that the SQLite statement handles required to update the ** target database object currently indicated by the iterator passed ** as the second argument are available. */ static int rbuObjIterPrepareAll( sqlite3rbu *p, RbuObjIter *pIter, int nOffset /* Add "LIMIT -1 OFFSET $nOffset" to SELECT */ ){ assert( pIter->bCleanup==0 ); if( pIter->pSelect==0 && rbuObjIterCacheTableInfo(p, pIter)==SQLITE_OK ){ const int tnum = pIter->iTnum; char *zCollist = 0; /* List of indexed columns */ char **pz = &p->zErrmsg; const char *zIdx = pIter->zIdx; char *zLimit = 0; if( nOffset ){ zLimit = sqlite3_mprintf(" LIMIT -1 OFFSET %d", nOffset); if( !zLimit ) p->rc = SQLITE_NOMEM; } if( zIdx ){ const char *zTbl = pIter->zTbl; char *zImposterCols = 0; /* Columns for imposter table */ char *zImposterPK = 0; /* Primary key declaration for imposter */ char *zWhere = 0; /* WHERE clause on PK columns */ char *zBind = 0; char *zPart = 0; int nBind = 0; assert( pIter->eType!=RBU_PK_VTAB ); zPart = rbuObjIterGetIndexWhere(p, pIter); zCollist = rbuObjIterGetIndexCols( p, pIter, &zImposterCols, &zImposterPK, &zWhere, &nBind ); zBind = rbuObjIterGetBindlist(p, nBind); /* Create the imposter table used to write to this index. */ sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 0, 1); sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 1,tnum); rbuMPrintfExec(p, p->dbMain, "CREATE TABLE \"rbu_imp_%w\"( %s, PRIMARY KEY( %s ) ) WITHOUT ROWID", zTbl, zImposterCols, zImposterPK ); sqlite3_test_control(SQLITE_TESTCTRL_IMPOSTER, p->dbMain, "main", 0, 0); /* Create the statement to insert index entries */ pIter->nCol = nBind; if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError( p->dbMain, &pIter->pInsert, &p->zErrmsg, sqlite3_mprintf("INSERT INTO \"rbu_imp_%w\" VALUES(%s)", zTbl, zBind) ); } /* And to delete index entries */ if( rbuIsVacuum(p)==0 && p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError( p->dbMain, &pIter->pDelete, &p->zErrmsg, sqlite3_mprintf("DELETE FROM \"rbu_imp_%w\" WHERE %s", zTbl, zWhere) ); } /* Create the SELECT statement to read keys in sorted order */ if( p->rc==SQLITE_OK ){ char *zSql; if( rbuIsVacuum(p) ){ char *zStart = 0; if( nOffset ){ zStart = rbuVacuumIndexStart(p, pIter); if( zStart ){ sqlite3_free(zLimit); zLimit = 0; } } zSql = sqlite3_mprintf( "SELECT %s, 0 AS rbu_control FROM '%q' %s %s %s ORDER BY %s%s", zCollist, pIter->zDataTbl, zPart, (zStart ? (zPart ? "AND" : "WHERE") : ""), zStart, zCollist, zLimit ); sqlite3_free(zStart); }else if( pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_NONE ){ zSql = sqlite3_mprintf( "SELECT %s, rbu_control FROM %s.'rbu_tmp_%q' %s ORDER BY %s%s", zCollist, p->zStateDb, pIter->zDataTbl, zPart, zCollist, zLimit ); }else{ zSql = sqlite3_mprintf( "SELECT %s, rbu_control FROM %s.'rbu_tmp_%q' %s " "UNION ALL " "SELECT %s, rbu_control FROM '%q' " "%s %s typeof(rbu_control)='integer' AND rbu_control!=1 " "ORDER BY %s%s", zCollist, p->zStateDb, pIter->zDataTbl, zPart, zCollist, pIter->zDataTbl, zPart, (zPart ? "AND" : "WHERE"), zCollist, zLimit ); } if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbRbu,&pIter->pSelect,pz,zSql); }else{ sqlite3_free(zSql); } } sqlite3_free(zImposterCols); sqlite3_free(zImposterPK); sqlite3_free(zWhere); sqlite3_free(zBind); sqlite3_free(zPart); }else{ int bRbuRowid = (pIter->eType==RBU_PK_VTAB) ||(pIter->eType==RBU_PK_NONE) ||(pIter->eType==RBU_PK_EXTERNAL && rbuIsVacuum(p)); const char *zTbl = pIter->zTbl; /* Table this step applies to */ const char *zWrite; /* Imposter table name */ char *zBindings = rbuObjIterGetBindlist(p, pIter->nTblCol + bRbuRowid); char *zWhere = rbuObjIterGetWhere(p, pIter); char *zOldlist = rbuObjIterGetOldlist(p, pIter, "old"); char *zNewlist = rbuObjIterGetOldlist(p, pIter, "new"); zCollist = rbuObjIterGetCollist(p, pIter); pIter->nCol = pIter->nTblCol; /* Create the imposter table or tables (if required). */ rbuCreateImposterTable(p, pIter); rbuCreateImposterTable2(p, pIter); zWrite = (pIter->eType==RBU_PK_VTAB ? "" : "rbu_imp_"); /* Create the INSERT statement to write to the target PK b-tree */ if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pInsert, pz, sqlite3_mprintf( "INSERT INTO \"%s%w\"(%s%s) VALUES(%s)", zWrite, zTbl, zCollist, (bRbuRowid ? ", _rowid_" : ""), zBindings ) ); } /* Create the DELETE statement to write to the target PK b-tree. ** Because it only performs INSERT operations, this is not required for ** an rbu vacuum handle. */ if( rbuIsVacuum(p)==0 && p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbMain, &pIter->pDelete, pz, sqlite3_mprintf( "DELETE FROM \"%s%w\" WHERE %s", zWrite, zTbl, zWhere ) ); } if( rbuIsVacuum(p)==0 && pIter->abIndexed ){ const char *zRbuRowid = ""; if( pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_NONE ){ zRbuRowid = ", rbu_rowid"; } /* Create the rbu_tmp_xxx table and the triggers to populate it. */ rbuMPrintfExec(p, p->dbRbu, "CREATE TABLE IF NOT EXISTS %s.'rbu_tmp_%q' AS " "SELECT *%s FROM '%q' WHERE 0;" , p->zStateDb, pIter->zDataTbl , (pIter->eType==RBU_PK_EXTERNAL ? ", 0 AS rbu_rowid" : "") , pIter->zDataTbl ); rbuMPrintfExec(p, p->dbMain, "CREATE TEMP TRIGGER rbu_delete_tr BEFORE DELETE ON \"%s%w\" " "BEGIN " " SELECT rbu_tmp_insert(3, %s);" "END;" "CREATE TEMP TRIGGER rbu_update1_tr BEFORE UPDATE ON \"%s%w\" " "BEGIN " " SELECT rbu_tmp_insert(3, %s);" "END;" "CREATE TEMP TRIGGER rbu_update2_tr AFTER UPDATE ON \"%s%w\" " "BEGIN " " SELECT rbu_tmp_insert(4, %s);" "END;", zWrite, zTbl, zOldlist, zWrite, zTbl, zOldlist, zWrite, zTbl, zNewlist ); if( pIter->eType==RBU_PK_EXTERNAL || pIter->eType==RBU_PK_NONE ){ rbuMPrintfExec(p, p->dbMain, "CREATE TEMP TRIGGER rbu_insert_tr AFTER INSERT ON \"%s%w\" " "BEGIN " " SELECT rbu_tmp_insert(0, %s);" "END;", zWrite, zTbl, zNewlist ); } rbuObjIterPrepareTmpInsert(p, pIter, zCollist, zRbuRowid); } /* Create the SELECT statement to read keys from data_xxx */ if( p->rc==SQLITE_OK ){ const char *zRbuRowid = ""; char *zStart = 0; char *zOrder = 0; if( bRbuRowid ){ zRbuRowid = rbuIsVacuum(p) ? ",_rowid_ " : ",rbu_rowid"; } if( rbuIsVacuum(p) ){ if( nOffset ){ zStart = rbuVacuumTableStart(p, pIter, bRbuRowid, zWrite); if( zStart ){ sqlite3_free(zLimit); zLimit = 0; } } if( bRbuRowid ){ zOrder = rbuMPrintf(p, "_rowid_"); }else{ zOrder = rbuObjIterGetPkList(p, pIter, "", ", ", ""); } } if( p->rc==SQLITE_OK ){ p->rc = prepareFreeAndCollectError(p->dbRbu, &pIter->pSelect, pz, sqlite3_mprintf( "SELECT %s,%s rbu_control%s FROM '%q'%s %s %s %s", zCollist, (rbuIsVacuum(p) ? "0 AS " : ""), zRbuRowid, pIter->zDataTbl, (zStart ? zStart : ""), (zOrder ? "ORDER BY" : ""), zOrder, zLimit ) ); } sqlite3_free(zStart); sqlite3_free(zOrder); } sqlite3_free(zWhere); sqlite3_free(zOldlist); sqlite3_free(zNewlist); sqlite3_free(zBindings); } sqlite3_free(zCollist); sqlite3_free(zLimit); } return p->rc; } /* ** Set output variable *ppStmt to point to an UPDATE statement that may ** be used to update the imposter table for the main table b-tree of the ** table object that pIter currently points to, assuming that the ** rbu_control column of the data_xyz table contains zMask. ** ** If the zMask string does not specify any columns to update, then this ** is not an error. Output variable *ppStmt is set to NULL in this case. */ static int rbuGetUpdateStmt( sqlite3rbu *p, /* RBU handle */ RbuObjIter *pIter, /* Object iterator */ const char *zMask, /* rbu_control value ('x.x.') */ sqlite3_stmt **ppStmt /* OUT: UPDATE statement handle */ ){ RbuUpdateStmt **pp; RbuUpdateStmt *pUp = 0; int nUp = 0; /* In case an error occurs */ *ppStmt = 0; /* Search for an existing statement. If one is found, shift it to the front ** of the LRU queue and return immediately. Otherwise, leave nUp pointing ** to the number of statements currently in the cache and pUp to the ** last object in the list. */ for(pp=&pIter->pRbuUpdate; *pp; pp=&((*pp)->pNext)){ pUp = *pp; if( strcmp(pUp->zMask, zMask)==0 ){ *pp = pUp->pNext; pUp->pNext = pIter->pRbuUpdate; pIter->pRbuUpdate = pUp; *ppStmt = pUp->pUpdate; return SQLITE_OK; } nUp++; } assert( pUp==0 || pUp->pNext==0 ); if( nUp>=SQLITE_RBU_UPDATE_CACHESIZE ){ for(pp=&pIter->pRbuUpdate; *pp!=pUp; pp=&((*pp)->pNext)); *pp = 0; sqlite3_finalize(pUp->pUpdate); pUp->pUpdate = 0; }else{ pUp = (RbuUpdateStmt*)rbuMalloc(p, sizeof(RbuUpdateStmt)+pIter->nTblCol+1); } if( pUp ){ char *zWhere = rbuObjIterGetWhere(p, pIter); char *zSet = rbuObjIterGetSetlist(p, pIter, zMask); char *zUpdate = 0; pUp->zMask = (char*)&pUp[1]; memcpy(pUp->zMask, zMask, pIter->nTblCol); pUp->pNext = pIter->pRbuUpdate; pIter->pRbuUpdate = pUp; if( zSet ){ const char *zPrefix = ""; if( pIter->eType!=RBU_PK_VTAB ) zPrefix = "rbu_imp_"; zUpdate = sqlite3_mprintf("UPDATE \"%s%w\" SET %s WHERE %s", zPrefix, pIter->zTbl, zSet, zWhere ); p->rc = prepareFreeAndCollectError( p->dbMain, &pUp->pUpdate, &p->zErrmsg, zUpdate ); *ppStmt = pUp->pUpdate; } sqlite3_free(zWhere); sqlite3_free(zSet); } return p->rc; } static sqlite3 *rbuOpenDbhandle( sqlite3rbu *p, const char *zName, int bUseVfs ){ sqlite3 *db = 0; if( p->rc==SQLITE_OK ){ const int flags = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|SQLITE_OPEN_URI; p->rc = sqlite3_open_v2(zName, &db, flags, bUseVfs ? p->zVfsName : 0); if( p->rc ){ p->zErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(db)); sqlite3_close(db); db = 0; } } return db; } /* ** Free an RbuState object allocated by rbuLoadState(). */ static void rbuFreeState(RbuState *p){ if( p ){ sqlite3_free(p->zTbl); sqlite3_free(p->zDataTbl); sqlite3_free(p->zIdx); sqlite3_free(p); } } /* ** Allocate an RbuState object and load the contents of the rbu_state ** table into it. Return a pointer to the new object. It is the ** responsibility of the caller to eventually free the object using ** sqlite3_free(). ** ** If an error occurs, leave an error code and message in the rbu handle ** and return NULL. */ static RbuState *rbuLoadState(sqlite3rbu *p){ RbuState *pRet = 0; sqlite3_stmt *pStmt = 0; int rc; int rc2; pRet = (RbuState*)rbuMalloc(p, sizeof(RbuState)); if( pRet==0 ) return 0; rc = prepareFreeAndCollectError(p->dbRbu, &pStmt, &p->zErrmsg, sqlite3_mprintf("SELECT k, v FROM %s.rbu_state", p->zStateDb) ); while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){ switch( sqlite3_column_int(pStmt, 0) ){ case RBU_STATE_STAGE: pRet->eStage = sqlite3_column_int(pStmt, 1); if( pRet->eStage!=RBU_STAGE_OAL && pRet->eStage!=RBU_STAGE_MOVE && pRet->eStage!=RBU_STAGE_CKPT ){ p->rc = SQLITE_CORRUPT; } break; case RBU_STATE_TBL: pRet->zTbl = rbuStrndup((char*)sqlite3_column_text(pStmt, 1), &rc); break; case RBU_STATE_IDX: pRet->zIdx = rbuStrndup((char*)sqlite3_column_text(pStmt, 1), &rc); break; case RBU_STATE_ROW: pRet->nRow = sqlite3_column_int(pStmt, 1); break; case RBU_STATE_PROGRESS: pRet->nProgress = sqlite3_column_int64(pStmt, 1); break; case RBU_STATE_CKPT: pRet->iWalCksum = sqlite3_column_int64(pStmt, 1); break; case RBU_STATE_COOKIE: pRet->iCookie = (u32)sqlite3_column_int64(pStmt, 1); break; case RBU_STATE_OALSZ: pRet->iOalSz = (u32)sqlite3_column_int64(pStmt, 1); break; case RBU_STATE_PHASEONESTEP: pRet->nPhaseOneStep = sqlite3_column_int64(pStmt, 1); break; case RBU_STATE_DATATBL: pRet->zDataTbl = rbuStrndup((char*)sqlite3_column_text(pStmt, 1), &rc); break; default: rc = SQLITE_CORRUPT; break; } } rc2 = sqlite3_finalize(pStmt); if( rc==SQLITE_OK ) rc = rc2; p->rc = rc; return pRet; } /* ** Open the database handle and attach the RBU database as "rbu". If an ** error occurs, leave an error code and message in the RBU handle. */ static void rbuOpenDatabase(sqlite3rbu *p, int *pbRetry){ assert( p->rc || (p->dbMain==0 && p->dbRbu==0) ); assert( p->rc || rbuIsVacuum(p) || p->zTarget!=0 ); /* Open the RBU database */ p->dbRbu = rbuOpenDbhandle(p, p->zRbu, 1); if( p->rc==SQLITE_OK && rbuIsVacuum(p) ){ sqlite3_file_control(p->dbRbu, "main", SQLITE_FCNTL_RBUCNT, (void*)p); if( p->zState==0 ){ const char *zFile = sqlite3_db_filename(p->dbRbu, "main"); p->zState = rbuMPrintf(p, "file://%s-vacuum?modeof=%s", zFile, zFile); } } /* If using separate RBU and state databases, attach the state database to ** the RBU db handle now. */ if( p->zState ){ rbuMPrintfExec(p, p->dbRbu, "ATTACH %Q AS stat", p->zState); memcpy(p->zStateDb, "stat", 4); }else{ memcpy(p->zStateDb, "main", 4); } #if 0 if( p->rc==SQLITE_OK && rbuIsVacuum(p) ){ p->rc = sqlite3_exec(p->dbRbu, "BEGIN", 0, 0, 0); } #endif /* If it has not already been created, create the rbu_state table */ rbuMPrintfExec(p, p->dbRbu, RBU_CREATE_STATE, p->zStateDb); #if 0 if( rbuIsVacuum(p) ){ if( p->rc==SQLITE_OK ){ int rc2; int bOk = 0; sqlite3_stmt *pCnt = 0; p->rc = prepareAndCollectError(p->dbRbu, &pCnt, &p->zErrmsg, "SELECT count(*) FROM stat.sqlite_schema" ); if( p->rc==SQLITE_OK && sqlite3_step(pCnt)==SQLITE_ROW && 1==sqlite3_column_int(pCnt, 0) ){ bOk = 1; } rc2 = sqlite3_finalize(pCnt); if( p->rc==SQLITE_OK ) p->rc = rc2; if( p->rc==SQLITE_OK && bOk==0 ){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("invalid state database"); } if( p->rc==SQLITE_OK ){ p->rc = sqlite3_exec(p->dbRbu, "COMMIT", 0, 0, 0); } } } #endif if( p->rc==SQLITE_OK && rbuIsVacuum(p) ){ int bOpen = 0; int rc; p->nRbu = 0; p->pRbuFd = 0; rc = sqlite3_file_control(p->dbRbu, "main", SQLITE_FCNTL_RBUCNT, (void*)p); if( rc!=SQLITE_NOTFOUND ) p->rc = rc; if( p->eStage>=RBU_STAGE_MOVE ){ bOpen = 1; }else{ RbuState *pState = rbuLoadState(p); if( pState ){ bOpen = (pState->eStage>=RBU_STAGE_MOVE); rbuFreeState(pState); } } if( bOpen ) p->dbMain = rbuOpenDbhandle(p, p->zRbu, p->nRbu<=1); } p->eStage = 0; if( p->rc==SQLITE_OK && p->dbMain==0 ){ if( !rbuIsVacuum(p) ){ p->dbMain = rbuOpenDbhandle(p, p->zTarget, 1); }else if( p->pRbuFd->pWalFd ){ if( pbRetry ){ p->pRbuFd->bNolock = 0; sqlite3_close(p->dbRbu); sqlite3_close(p->dbMain); p->dbMain = 0; p->dbRbu = 0; *pbRetry = 1; return; } p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("cannot vacuum wal mode database"); }else{ char *zTarget; char *zExtra = 0; if( strlen(p->zRbu)>=5 && 0==memcmp("file:", p->zRbu, 5) ){ zExtra = &p->zRbu[5]; while( *zExtra ){ if( *zExtra++=='?' ) break; } if( *zExtra=='\0' ) zExtra = 0; } zTarget = sqlite3_mprintf("file:%s-vactmp?rbu_memory=1%s%s", sqlite3_db_filename(p->dbRbu, "main"), (zExtra==0 ? "" : "&"), (zExtra==0 ? "" : zExtra) ); if( zTarget==0 ){ p->rc = SQLITE_NOMEM; return; } p->dbMain = rbuOpenDbhandle(p, zTarget, p->nRbu<=1); sqlite3_free(zTarget); } } if( p->rc==SQLITE_OK ){ p->rc = sqlite3_create_function(p->dbMain, "rbu_tmp_insert", -1, SQLITE_UTF8, (void*)p, rbuTmpInsertFunc, 0, 0 ); } if( p->rc==SQLITE_OK ){ p->rc = sqlite3_create_function(p->dbMain, "rbu_fossil_delta", 2, SQLITE_UTF8, 0, rbuFossilDeltaFunc, 0, 0 ); } if( p->rc==SQLITE_OK ){ p->rc = sqlite3_create_function(p->dbRbu, "rbu_target_name", -1, SQLITE_UTF8, (void*)p, rbuTargetNameFunc, 0, 0 ); } if( p->rc==SQLITE_OK ){ p->rc = sqlite3_file_control(p->dbMain, "main", SQLITE_FCNTL_RBU, (void*)p); } rbuMPrintfExec(p, p->dbMain, "SELECT * FROM sqlite_schema"); /* Mark the database file just opened as an RBU target database. If ** this call returns SQLITE_NOTFOUND, then the RBU vfs is not in use. ** This is an error. */ if( p->rc==SQLITE_OK ){ p->rc = sqlite3_file_control(p->dbMain, "main", SQLITE_FCNTL_RBU, (void*)p); } if( p->rc==SQLITE_NOTFOUND ){ p->rc = SQLITE_ERROR; p->zErrmsg = sqlite3_mprintf("rbu vfs not found"); } } /* ** This routine is a copy of the sqlite3FileSuffix3() routine from the core. ** It is a no-op unless SQLITE_ENABLE_8_3_NAMES is defined. ** ** If SQLITE_ENABLE_8_3_NAMES is set at compile-time and if the database ** filename in zBaseFilename is a URI with the "8_3_names=1" parameter and ** if filename in z[] has a suffix (a.k.a. "extension") that is longer than ** three characters, then shorten the suffix on z[] to be the last three ** characters of the original suffix. ** ** If SQLITE_ENABLE_8_3_NAMES is set to 2 at compile-time, then always ** do the suffix shortening regardless of URI parameter. ** ** Examples: ** ** test.db-journal => test.nal ** test.db-wal => test.wal ** test.db-shm => test.shm ** test.db-mj7f3319fa => test.9fa */ static void rbuFileSuffix3(const char *zBase, char *z){ #ifdef SQLITE_ENABLE_8_3_NAMES #if SQLITE_ENABLE_8_3_NAMES<2 if( sqlite3_uri_boolean(zBase, "8_3_names", 0) ) #endif { int i, sz; sz = (int)strlen(z)&0xffffff; for(i=sz-1; i>0 && z[i]!='/' && z[i]!='.'; i--){} if( z[i]=='.' && sz>i+4 ) memmove(&z[i+1], &z[sz-3], 4); } #endif } /* ** Return the current wal-index header checksum for the target database ** as a 64-bit integer. ** ** The checksum is store in the first page of xShmMap memory as an 8-byte ** blob starting at byte offset 40. */ static i64 rbuShmChecksum(sqlite3rbu *p){ i64 iRet = 0; if( p->rc==SQLITE_OK ){ sqlite3_file *pDb = p->pTargetFd->pReal; u32 volatile *ptr; p->rc = pDb->pMethods->xShmMap(pDb, 0, 32*1024, 0, (void volatile**)&ptr); if( p->rc==SQLITE_OK ){ iRet = ((i64)ptr[10] << 32) + ptr[11]; } } return iRet; } /* ** This function is called as part of initializing or reinitializing an ** incremental checkpoint. ** ** It populates the sqlite3rbu.aFrame[] array with the set of ** (wal frame -> db page) copy operations required to checkpoint the ** current wal file, and obtains the set of shm locks required to safely ** perform the copy operations directly on the file-system. ** ** If argument pState is not NULL, then the incremental checkpoint is ** being resumed. In this case, if the checksum of the wal-index-header ** following recovery is not the same as the checksum saved in the RbuState ** object, then the rbu handle is set to DONE state. This occurs if some ** other client appends a transaction to the wal file in the middle of ** an incremental checkpoint. */ static void rbuSetupCheckpoint(sqlite3rbu *p, RbuState *pState){ /* If pState is NULL, then the wal file may not have been opened and ** recovered. Running a read-statement here to ensure that doing so ** does not interfere with the "capture" process below. */ if( pState==0 ){ p->eStage = 0; if( p->rc==SQLITE_OK ){ p->rc = sqlite3_exec(p->dbMain, "SELECT * FROM sqlite_schema", 0, 0, 0); } } /* Assuming no error has occurred, run a "restart" checkpoint with the ** sqlite3rbu.eStage variable set to CAPTURE. This turns on the following ** special behaviour in the rbu VFS: ** ** * If the exclusive shm WRITER or READ0 lock cannot be obtained, ** the checkpoint fails with SQLITE_BUSY (normally SQLite would ** proceed with running a passive checkpoint instead of failing). ** ** * Attempts to read from the *-wal file or write to the database file ** do not perform any IO. Instead, the frame/page combinations that ** would be read/written are recorded in the sqlite3rbu.aFrame[] ** array. ** ** * Calls to xShmLock(UNLOCK) to release the exclusive shm WRITER, ** READ0 and CHECKPOINT locks taken as part of the checkpoint are ** no-ops. These locks will not be released until the connection ** is closed. ** ** * Attempting to xSync() the database file causes an SQLITE_INTERNAL ** error. ** ** As a result, unless an error (i.e. OOM or SQLITE_BUSY) occurs, the ** checkpoint below fails with SQLITE_INTERNAL, and leaves the aFrame[] ** array populated with a set of (frame -> page) mappings. Because the ** WRITER, CHECKPOINT and READ0 locks are still held, it is safe to copy ** data from the wal file into the database file according to the ** contents of aFrame[]. */ if( p->rc==SQLITE_OK ){ int rc2; p->eStage = RBU_STAGE_CAPTURE; rc2 = sqlite3_exec(p->dbMain, "PRAGMA main.wal_checkpoint=restart", 0, 0,0); if( rc2!=SQLITE_INTERNAL ) p->rc = rc2; } if( p->rc==SQLITE_OK && p->nFrame>0 ){ p->eStage = RBU_STAGE_CKPT; p->nStep = (pState ? pState->nRow : 0); p->aBuf = rbuMalloc(p, p->pgsz); p->iWalCksum = rbuShmChecksum(p); } if( p->rc==SQLITE_OK ){ if( p->nFrame==0 || (pState && pState->iWalCksum!=p->iWalCksum) ){ p->rc = SQLITE_DONE; p->eStage = RBU_STAGE_DONE; }else{ int nSectorSize; sqlite3_file *pDb = p->pTargetFd->pReal; sqlite3_file *pWal = p->pTargetFd->pWalFd->pReal; assert( p->nPagePerSector==0 ); nSectorSize = pDb->pMethods->xSectorSize(pDb); if( nSectorSize>p->pgsz ){ p->nPagePerSector = nSectorSize / p->pgsz; }else{ p->nPagePerSector = 1; } /* Call xSync() on the wal file. This causes SQLite to sync the ** directory in which the target database and the wal file reside, in ** case it has not been synced since the rename() call in ** rbuMoveOalFile(). */ p->rc = pWal->pMethods->xSync(pWal, SQLITE_SYNC_NORMAL); } } } /* ** Called when iAmt bytes are read from offset iOff of the wal file while ** the rbu object is in capture mode. Record the frame number of the frame ** being read in the aFrame[] array. */ static int rbuCaptureWalRead(sqlite3rbu *pRbu, i64 iOff, int iAmt){ const u32 mReq = (1<mLock!=mReq ){ pRbu->rc = SQLITE_BUSY; return SQLITE_INTERNAL; } pRbu->pgsz = iAmt; if( pRbu->nFrame==pRbu->nFrameAlloc ){ int nNew = (pRbu->nFrameAlloc ? pRbu->nFrameAlloc : 64) * 2; RbuFrame *aNew; aNew = (RbuFrame*)sqlite3_realloc64(pRbu->aFrame, nNew * sizeof(RbuFrame)); if( aNew==0 ) return SQLITE_NOMEM; pRbu->aFrame = aNew; pRbu->nFrameAlloc = nNew; } iFrame = (u32)((iOff-32) / (i64)(iAmt+24)) + 1; if( pRbu->iMaxFrame